diff --git a/api/package.json b/api/package.json index 4e155f334..7d84b835b 100644 --- a/api/package.json +++ b/api/package.json @@ -44,7 +44,7 @@ "fast-xml-parser": "~4.1.3", "fastq": "^1.15.0", "json-schema-traverse": "^1.0.0", - "jsonpath-plus": "~7.2.0", + "jsonpath-plus": "^8.0.0", "jsonwebtoken": "~8.5.1", "jwks-rsa": "~2.0.5", "knex": "~2.4.2", diff --git a/api/src/app.ts b/api/src/app.ts index 6b5473535..b69fad3bb 100644 --- a/api/src/app.ts +++ b/api/src/app.ts @@ -5,9 +5,10 @@ import { OpenAPIV3 } from 'openapi-types'; import swaggerUIExperss from 'swagger-ui-express'; import { defaultPoolConfig, initDBPool } from './database/db'; import { initDBConstants } from './database/db-constants'; -import { ensureHTTPError, HTTPErrorType } from './errors/http-error'; +import { ensureHTTPError, HTTP400, HTTPErrorType } from './errors/http-error'; import { rootAPIDoc } from './openapi/root-api-doc'; import { authenticateRequest, authenticateRequestOptional } from './request-handlers/security/authentication'; +import { scanFileForVirus } from './utils/file-utils'; import { getLogger } from './utils/logger'; const defaultLog = getLogger('app'); @@ -53,22 +54,29 @@ const openAPIFramework = initialize({ docsPath: '/raw-api-docs', // path to view raw openapi spec consumesMiddleware: { 'application/json': express.json({ limit: MAX_REQ_BODY_SIZE }), - 'multipart/form-data': function (req, res, next) { + 'multipart/form-data': async function (req, res, next) { const multerRequestHandler = multer({ - storage: multer.memoryStorage(), + storage: multer.memoryStorage(), // TOOD change to local/PVC storage and stream file uploads to S3? limits: { fileSize: MAX_UPLOAD_FILE_SIZE } }).array('media', MAX_UPLOAD_NUM_FILES); - multerRequestHandler(req, res, (error?: any) => { + return multerRequestHandler(req, res, async function (error?: any) { if (error) { return next(error); } - if (req.files && req.files.length) { + const promises = (req.files as Express.Multer.File[]).map(async function (file) { // Set original request file field to empty string to satisfy OpenAPI validation // See: https://www.npmjs.com/package/express-openapi#argsconsumesmiddleware - (req.files as Express.Multer.File[]).forEach((file) => (req.body[file.fieldname] = '')); - } + req.body[file.fieldname] = ''; + + // Scan file for malicious content, if enabled + if (!(await scanFileForVirus(file))) { + throw new HTTP400('Malicious file content detected.', [{ file_name: file.originalname }]); + } + }); + + await Promise.all(promises); return next(); }); diff --git a/api/src/database/db-utils.ts b/api/src/database/db-utils.ts index a64fa91ac..6ba4b39bd 100644 --- a/api/src/database/db-utils.ts +++ b/api/src/database/db-utils.ts @@ -41,7 +41,7 @@ export const syncErrorWrapper = */ const parseError = (error: any) => { if (error instanceof z.ZodError) { - throw new ApiExecuteSQLError('SQL response failed schema check', [error]); + throw new ApiExecuteSQLError('SQL response failed schema check', [error as Record]); } if (error.message === 'CONCURRENCY_EXCEPTION') { diff --git a/api/src/database/db.ts b/api/src/database/db.ts index 9aa592dfd..444560568 100644 --- a/api/src/database/db.ts +++ b/api/src/database/db.ts @@ -392,7 +392,7 @@ export const getDBConnection = function (keycloakToken: object): IDBConnection { _systemUserId = response?.rows?.[0].api_set_context; } catch (error) { - throw new ApiExecuteSQLError('Failed to set user context', [error as object]); + throw new ApiExecuteSQLError('Failed to set user context', [error as Record]); } }; diff --git a/api/src/errors/api-error.ts b/api/src/errors/api-error.ts index 8d1ffd8ea..701581391 100644 --- a/api/src/errors/api-error.ts +++ b/api/src/errors/api-error.ts @@ -6,9 +6,9 @@ export enum ApiErrorType { } export class ApiError extends Error { - errors?: (string | object)[]; + errors?: (string | Record)[]; - constructor(name: ApiErrorType, message: string, errors?: (string | object)[], stack?: string) { + constructor(name: ApiErrorType, message: string, errors?: (string | Record)[], stack?: string) { super(message); this.name = name; @@ -33,7 +33,7 @@ export class ApiError extends Error { * @extends {ApiError} */ export class ApiGeneralError extends ApiError { - constructor(message: string, errors?: (string | object)[]) { + constructor(message: string, errors?: (string | Record)[]) { super(ApiErrorType.GENERAL, message, errors); } } @@ -46,7 +46,7 @@ export class ApiGeneralError extends ApiError { * @extends {ApiError} */ export class ApiUnknownError extends ApiError { - constructor(message: string, errors?: (string | object)[]) { + constructor(message: string, errors?: (string | Record)[]) { super(ApiErrorType.UNKNOWN, message, errors); } } @@ -63,7 +63,7 @@ export class ApiUnknownError extends ApiError { * @extends {ApiError} */ export class ApiExecuteSQLError extends ApiError { - constructor(message: string, errors?: (string | object)[]) { + constructor(message: string, errors?: (string | Record)[]) { super(ApiErrorType.EXECUTE_SQL, message, errors); } } diff --git a/api/src/errors/http-error.ts b/api/src/errors/http-error.ts index 125f42557..6cf16f26d 100644 --- a/api/src/errors/http-error.ts +++ b/api/src/errors/http-error.ts @@ -11,9 +11,15 @@ export enum HTTPErrorType { export class HTTPError extends Error { status: number; - errors?: (string | object)[]; - - constructor(name: HTTPErrorType, status: number, message: string, errors?: (string | object)[], stack?: string) { + errors?: (string | Record)[]; + + constructor( + name: HTTPErrorType, + status: number, + message: string, + errors?: (string | Record)[], + stack?: string + ) { super(message); this.name = name; @@ -38,7 +44,7 @@ export class HTTPError extends Error { * @extends {HTTPError} */ export class HTTP400 extends HTTPError { - constructor(message: string, errors?: (string | object)[]) { + constructor(message: string, errors?: (string | Record)[]) { super(HTTPErrorType.BAD_REQUEST, 400, message, errors); } } @@ -51,7 +57,7 @@ export class HTTP400 extends HTTPError { * @extends {HTTPError} */ export class HTTP401 extends HTTPError { - constructor(message: string, errors?: (string | object)[]) { + constructor(message: string, errors?: (string | Record)[]) { super(HTTPErrorType.UNAUTHORIZE, 401, message, errors); } } @@ -64,7 +70,7 @@ export class HTTP401 extends HTTPError { * @extends {HTTPError} */ export class HTTP403 extends HTTPError { - constructor(message: string, errors?: (string | object)[]) { + constructor(message: string, errors?: (string | Record)[]) { super(HTTPErrorType.FORBIDDEN, 403, message, errors); } } @@ -77,7 +83,7 @@ export class HTTP403 extends HTTPError { * @extends {HTTPError} */ export class HTTP409 extends HTTPError { - constructor(message: string, errors?: (string | object)[]) { + constructor(message: string, errors?: (string | Record)[]) { super(HTTPErrorType.CONFLICT, 409, message, errors); } } @@ -90,7 +96,7 @@ export class HTTP409 extends HTTPError { * @extends {HTTPError} */ export class HTTP500 extends HTTPError { - constructor(message: string, errors?: (string | object)[]) { + constructor(message: string, errors?: (string | Record)[]) { super(HTTPErrorType.INTERNAL_SERVER_ERROR, 500, message, errors); } } diff --git a/api/src/openapi/root-api-doc.ts b/api/src/openapi/root-api-doc.ts index 398c84bf7..4c0fcbfbd 100644 --- a/api/src/openapi/root-api-doc.ts +++ b/api/src/openapi/root-api-doc.ts @@ -143,24 +143,32 @@ export const rootAPIDoc = { }, SubmissionFeature: { title: 'BioHub Data Submission Feature', + description: + 'The submission feature object is a self-referencing recursive structure designed to support different classes of biotic data, in a hierarchical structure.', type: 'object', - required: ['id', 'type', 'properties', 'features'], + required: ['type', 'properties', 'child_features'], properties: { id: { - title: 'Unique id of the feature', - type: 'string' + title: 'Unique identifer.', + description: + 'The unique identifier for the submission feature as supplied by the source system. May not be unique globally or within BioHub.', + type: 'string', + maxLength: 200 }, type: { - title: 'Feature type', + title: 'Feature type.', + description: 'The type of the feature. Must match a supported feature type.', type: 'string' }, properties: { - title: 'Feature properties', + title: 'Feature properties.', + description: 'The properties of the feature, which are specific to the feature type.', type: 'object', properties: {} }, - features: { - title: 'Feature child features', + child_features: { + title: 'Child features.', + description: 'Child features of the current feature.', type: 'array', items: { $ref: '#/components/schemas/SubmissionFeature' @@ -168,35 +176,6 @@ export const rootAPIDoc = { } }, additionalProperties: false - }, - feature: { - type: 'object', - required: ['submission_feature_id', 'submission_id', 'feature_type', 'data', 'parent_submission_feature_id'], - properties: { - submission_feature_id: { - type: 'number' - }, - submission_id: { - type: 'number' - }, - feature_type: { - type: 'string' - }, - data: { - type: 'object' - }, - submission_feature_security_ids: { - nullable: true, - type: 'array', - items: { - type: 'number' - } - }, - parent_submission_feature_id: { - type: 'number', - nullable: true - } - } } } } diff --git a/api/src/openapi/schemas/biohub-data-submission.ts b/api/src/openapi/schemas/biohub-data-submission.ts deleted file mode 100644 index 788b9ea5b..000000000 --- a/api/src/openapi/schemas/biohub-data-submission.ts +++ /dev/null @@ -1,27 +0,0 @@ -export const BioHubDataSubmission = { - title: 'BioHub Data Submission', - type: 'object', - required: ['id', 'type', 'properties', 'features'], - properties: { - id: { - title: 'Unique id of the submission', - type: 'string' - }, - type: { - type: 'string', - enum: ['dataset'] - }, - properties: { - title: 'Feature properties', - type: 'object', - properties: {} - }, - features: { - type: 'array', - items: { - $ref: '#/components/schemas/SubmissionFeature' - } - } - }, - additionalProperties: false -}; diff --git a/api/src/paths/administrative/security/categories.ts b/api/src/paths/administrative/security/categories.ts index 9f05d19ba..d984b50fe 100644 --- a/api/src/paths/administrative/security/categories.ts +++ b/api/src/paths/administrative/security/categories.ts @@ -80,13 +80,15 @@ GET.apiDoc = { nullable: true }, update_user: { - type: 'string', + type: 'integer', + minimum: 1, nullable: true }, revision_count: { type: 'integer' } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/administrative/security/rules.ts b/api/src/paths/administrative/security/rules.ts index 1b99aab7e..65614f07e 100644 --- a/api/src/paths/administrative/security/rules.ts +++ b/api/src/paths/administrative/security/rules.ts @@ -46,6 +46,7 @@ GET.apiDoc = { 'description', 'record_effective_date', 'record_end_date', + 'security_category_id', 'category_name', 'category_description', 'category_record_effective_date', @@ -68,6 +69,10 @@ GET.apiDoc = { type: 'string', nullable: true }, + security_category_id: { + type: 'integer', + minimum: 1 + }, category_name: { type: 'string' }, @@ -81,7 +86,8 @@ GET.apiDoc = { type: 'string', nullable: true } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/administrative/security/submission/{submissionId}.ts b/api/src/paths/administrative/security/submission/{submissionId}.ts index d19a2a57e..92a3b7f66 100644 --- a/api/src/paths/administrative/security/submission/{submissionId}.ts +++ b/api/src/paths/administrative/security/submission/{submissionId}.ts @@ -51,18 +51,60 @@ GET.apiDoc = { type: 'array', items: { type: 'object', - required: ['submission_feature_security_id', 'submission_feature_id', 'security_rule_id'], + required: [ + 'submission_feature_security_id', + 'submission_feature_id', + 'security_rule_id', + 'record_effective_date', + 'record_end_date', + 'create_date', + 'create_user', + 'update_date', + 'update_user', + 'revision_count' + ], properties: { submission_feature_security_id: { - type: 'integer' + type: 'integer', + minimum: 1 }, submission_feature_id: { - type: 'integer' + type: 'integer', + minimum: 1 }, security_rule_id: { - type: 'integer' + type: 'integer', + minimum: 1 + }, + record_effective_date: { + type: 'string' + }, + record_end_date: { + type: 'string', + nullable: true + }, + create_date: { + type: 'string' + }, + create_user: { + type: 'integer', + minimum: 1 + }, + update_date: { + type: 'string', + nullable: true + }, + update_user: { + type: 'integer', + minimum: 1, + nullable: true + }, + revision_count: { + type: 'integer', + minimum: 0 } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/administrative/submission/published.test.ts b/api/src/paths/administrative/submission/published.test.ts index 37eb34776..3577cee18 100644 --- a/api/src/paths/administrative/submission/published.test.ts +++ b/api/src/paths/administrative/submission/published.test.ts @@ -51,12 +51,14 @@ describe('getPublishedSubmissionsForAdmins', () => { { submission_id: 1, uuid: '123-456-789', + system_user_id: 3, security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', publish_timestamp: '2023-12-12', source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', create_user: 1, update_date: null, @@ -70,12 +72,14 @@ describe('getPublishedSubmissionsForAdmins', () => { { submission_id: 2, uuid: '789-456-123', + system_user_id: 3, security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', source_system: 'SIMS', publish_timestamp: '2023-12-12', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', create_user: 1, update_date: '2023-12-12', diff --git a/api/src/paths/administrative/submission/published.ts b/api/src/paths/administrative/submission/published.ts index c1b1ccbd2..62b89b97c 100644 --- a/api/src/paths/administrative/submission/published.ts +++ b/api/src/paths/administrative/submission/published.ts @@ -45,7 +45,9 @@ GET.apiDoc = { 'submission_id', 'uuid', 'security_review_timestamp', + 'publish_timestamp', 'submitted_timestamp', + 'system_user_id', 'source_system', 'name', 'description', @@ -56,7 +58,8 @@ GET.apiDoc = { 'revision_count', 'security', 'root_feature_type_id', - 'root_feature_type_name' + 'root_feature_type_name', + 'regions' ], properties: { submission_id: { @@ -71,6 +74,17 @@ GET.apiDoc = { type: 'string', nullable: true }, + publish_timestamp: { + type: 'string', + nullable: true + }, + submitted_timestamp: { + type: 'string' + }, + system_user_id: { + type: 'integer', + minimum: 1 + }, source_system: { type: 'string' }, @@ -82,6 +96,10 @@ GET.apiDoc = { type: 'string', maxLength: 3000 }, + comment: { + type: 'string', + maxLength: 3000 + }, create_date: { type: 'string' }, @@ -105,7 +123,6 @@ GET.apiDoc = { security: { type: 'string', enum: [ - SECURITY_APPLIED_STATUS.PENDING, SECURITY_APPLIED_STATUS.UNSECURED, SECURITY_APPLIED_STATUS.SECURED, SECURITY_APPLIED_STATUS.PARTIALLY_SECURED @@ -117,8 +134,15 @@ GET.apiDoc = { }, root_feature_type_name: { type: 'string' + }, + regions: { + type: 'array', + items: { + type: 'string' + } } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/administrative/submission/reviewed.test.ts b/api/src/paths/administrative/submission/reviewed.test.ts index 58afa1dde..9583f7edf 100644 --- a/api/src/paths/administrative/submission/reviewed.test.ts +++ b/api/src/paths/administrative/submission/reviewed.test.ts @@ -54,9 +54,11 @@ describe('getReviewedSubmissionsForAdmins', () => { security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', publish_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', create_user: 1, update_date: null, @@ -72,10 +74,12 @@ describe('getReviewedSubmissionsForAdmins', () => { uuid: '789-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', publish_timestamp: '2023-12-12', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', create_user: 1, update_date: '2023-12-12', diff --git a/api/src/paths/administrative/submission/reviewed.ts b/api/src/paths/administrative/submission/reviewed.ts index 2159048ae..c2d693f58 100644 --- a/api/src/paths/administrative/submission/reviewed.ts +++ b/api/src/paths/administrative/submission/reviewed.ts @@ -45,10 +45,13 @@ GET.apiDoc = { 'submission_id', 'uuid', 'security_review_timestamp', + 'publish_timestamp', 'submitted_timestamp', + 'system_user_id', 'source_system', 'name', 'description', + 'comment', 'create_date', 'create_user', 'update_date', @@ -56,7 +59,8 @@ GET.apiDoc = { 'revision_count', 'security', 'root_feature_type_id', - 'root_feature_type_name' + 'root_feature_type_name', + 'regions' ], properties: { submission_id: { @@ -71,6 +75,17 @@ GET.apiDoc = { type: 'string', nullable: true }, + publish_timestamp: { + type: 'string', + nullable: true + }, + submitted_timestamp: { + type: 'string' + }, + system_user_id: { + type: 'integer', + minimum: 1 + }, source_system: { type: 'string' }, @@ -82,6 +97,10 @@ GET.apiDoc = { type: 'string', maxLength: 3000 }, + comment: { + type: 'string', + maxLength: 3000 + }, create_date: { type: 'string' }, @@ -105,7 +124,6 @@ GET.apiDoc = { security: { type: 'string', enum: [ - SECURITY_APPLIED_STATUS.PENDING, SECURITY_APPLIED_STATUS.UNSECURED, SECURITY_APPLIED_STATUS.SECURED, SECURITY_APPLIED_STATUS.PARTIALLY_SECURED @@ -117,8 +135,15 @@ GET.apiDoc = { }, root_feature_type_name: { type: 'string' + }, + regions: { + type: 'array', + items: { + type: 'string' + } } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/administrative/submission/unreviewed.test.ts b/api/src/paths/administrative/submission/unreviewed.test.ts index e409c8ae3..6d89faabc 100644 --- a/api/src/paths/administrative/submission/unreviewed.test.ts +++ b/api/src/paths/administrative/submission/unreviewed.test.ts @@ -54,9 +54,11 @@ describe('getUnreviewedSubmissionsForAdmins', () => { security_review_timestamp: null, submitted_timestamp: '2023-12-12', publish_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', create_user: 1, update_date: null, @@ -73,9 +75,11 @@ describe('getUnreviewedSubmissionsForAdmins', () => { security_review_timestamp: null, submitted_timestamp: '2023-12-12', publish_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', create_user: 1, update_date: '2023-12-12', diff --git a/api/src/paths/administrative/submission/unreviewed.ts b/api/src/paths/administrative/submission/unreviewed.ts index e6ed99d18..bfeea2265 100644 --- a/api/src/paths/administrative/submission/unreviewed.ts +++ b/api/src/paths/administrative/submission/unreviewed.ts @@ -45,10 +45,13 @@ GET.apiDoc = { 'submission_id', 'uuid', 'security_review_timestamp', + 'publish_timestamp', 'submitted_timestamp', + 'system_user_id', 'source_system', 'name', 'description', + 'comment', 'create_date', 'create_user', 'update_date', @@ -72,9 +75,17 @@ GET.apiDoc = { type: 'string', nullable: true }, + publish_timestamp: { + type: 'string', + nullable: true + }, submitted_timestamp: { type: 'string' }, + system_user_id: { + type: 'integer', + minimum: 1 + }, source_system: { type: 'string' }, @@ -86,6 +97,10 @@ GET.apiDoc = { type: 'string', maxLength: 3000 }, + comment: { + type: 'string', + maxLength: 3000 + }, create_date: { type: 'string' }, @@ -123,7 +138,8 @@ GET.apiDoc = { type: 'string' } } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/administrative/submission/{submissionId}/index.test.ts b/api/src/paths/administrative/submission/{submissionId}/index.test.ts index 966b72ade..d40e3f952 100644 --- a/api/src/paths/administrative/submission/{submissionId}/index.test.ts +++ b/api/src/paths/administrative/submission/{submissionId}/index.test.ts @@ -5,6 +5,7 @@ import sinonChai from 'sinon-chai'; import { patchSubmissionRecord } from '.'; import * as db from '../../../../database/db'; import { HTTPError } from '../../../../errors/http-error'; +import { SubmissionRecord } from '../../../../repositories/submission-repository'; import { SubmissionService } from '../../../../services/submission-service'; import { getMockDBConnection, getRequestHandlerMocks } from '../../../../__mocks__/db'; @@ -47,15 +48,17 @@ describe('patchSubmissionRecord', () => { const submissionId = 1; - const mockSubmissionRecord = { + const mockSubmissionRecord: SubmissionRecord = { submission_id: 3, uuid: '999-456-123', security_review_timestamp: '2023-12-12', publish_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', create_user: 1, update_date: '2023-12-12', diff --git a/api/src/paths/administrative/submission/{submissionId}/index.ts b/api/src/paths/administrative/submission/{submissionId}/index.ts index c28899cf8..77aa3f94c 100644 --- a/api/src/paths/administrative/submission/{submissionId}/index.ts +++ b/api/src/paths/administrative/submission/{submissionId}/index.ts @@ -78,10 +78,13 @@ PATCH.apiDoc = { 'submission_id', 'uuid', 'security_review_timestamp', + 'publish_timestamp', 'submitted_timestamp', + 'system_user_id', 'source_system', 'name', 'description', + 'comment', 'create_date', 'create_user', 'update_date', @@ -101,9 +104,17 @@ PATCH.apiDoc = { type: 'string', nullable: true }, + publish_timestamp: { + type: 'string', + nullable: true + }, submitted_timestamp: { type: 'string' }, + system_user_id: { + type: 'integer', + minimum: 1 + }, source_system: { type: 'string' }, @@ -115,6 +126,10 @@ PATCH.apiDoc = { type: 'string', maxLength: 3000 }, + comment: { + type: 'string', + maxLength: 3000 + }, create_date: { type: 'string' }, @@ -135,7 +150,8 @@ PATCH.apiDoc = { type: 'integer', minimum: 0 } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/artifact/intake.test.ts b/api/src/paths/artifact/intake.test.ts index 847e8dc63..30a621722 100644 --- a/api/src/paths/artifact/intake.test.ts +++ b/api/src/paths/artifact/intake.test.ts @@ -1,858 +1,193 @@ import chai, { expect } from 'chai'; import { describe } from 'mocha'; -import OpenAPIRequestValidator, { OpenAPIRequestValidatorArgs } from 'openapi-request-validator'; -import OpenAPIResponseValidator, { OpenAPIResponseValidatorArgs } from 'openapi-response-validator'; import sinon from 'sinon'; import sinonChai from 'sinon-chai'; import * as db from '../../database/db'; import { HTTPError } from '../../errors/http-error'; +import { SubmissionFeatureRecord } from '../../repositories/submission-repository'; import { SystemUser } from '../../repositories/user-repository'; import { ArtifactService } from '../../services/artifact-service'; -import * as fileUtils from '../../utils/file-utils'; import * as keycloakUtils from '../../utils/keycloak-utils'; import { getMockDBConnection, getRequestHandlerMocks } from '../../__mocks__/db'; -import * as intake from './intake'; -import { POST } from './intake'; +import { intakeArtifact } from './intake'; chai.use(sinonChai); -describe('intake', () => { - describe('openApiSchema', () => { - describe('request validation', () => { - const requestValidator = new OpenAPIRequestValidator(POST.apiDoc as unknown as OpenAPIRequestValidatorArgs); - - describe('should throw an error when', () => { - describe('media', () => { - it('is undefined', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: undefined, - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal("must have required property 'media'"); - }); - - it('is null', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: null, - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be string'); - }); - }); - - describe('data_package_id', () => { - it('is invalid type', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: 123, - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be string'); - }); - - it('is invalid format', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: 'abcdefg', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must match format "uuid"'); - }); - }); - - describe('metadata', () => { - it('is undefined', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: undefined - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal("must have required property 'metadata'"); - }); - - it('is null', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: null - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be object'); - }); - - describe('file_name', () => { - it('is invalid type', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 0, - file_type: 'Other', - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be string'); - }); - - it('is undefined', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: undefined, - file_type: 'Other', - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal("must have required property 'file_name'"); - expect(response.errors[0].path).to.equal('metadata.file_name'); - }); - }); - - describe('file_type', () => { - it('is invalid type', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 0, - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be string'); - }); - - it('is undefined', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: undefined, - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal("must have required property 'file_type'"); - expect(response.errors[0].path).to.equal('metadata.file_type'); - }); - }); - - describe('file_size', () => { - it('is invalid type', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: 1000 - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be string'); - }); - - it('is undefined', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: undefined - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response.status).to.equal(400); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal("must have required property 'file_size'"); - expect(response.errors[0].path).to.equal('metadata.file_size'); - }); - }); - }); - }); - - describe('should succeed when', () => { - it('required values are valid', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response).to.be.undefined; - }); - - it('required and optional values are valid', async () => { - const request = { - headers: { 'content-type': 'multipart/form-data' }, - body: { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - } - }; - - const response = requestValidator.validateRequest(request); - - expect(response).to.be.undefined; - }); - }); - }); - - describe('response validation', () => { - const responseValidator = new OpenAPIResponseValidator(POST.apiDoc as unknown as OpenAPIResponseValidatorArgs); - - describe('should throw an error when', () => { - it('returns a null response', async () => { - const apiResponse = null; - const response = responseValidator.validateResponse(200, apiResponse); - - expect(response.message).to.equal('The response was not valid.'); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be object'); - }); - - it('returns an empty response', async () => { - const apiResponse = {}; - const response = responseValidator.validateResponse(200, apiResponse); - - expect(response.message).to.equal('The response was not valid.'); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal("must have required property 'artifact_id'"); - }); - - describe('artifact_id', () => { - it('is undefined', async () => { - const apiResponse = { artifact_id: undefined }; - const response = responseValidator.validateResponse(200, apiResponse); - - expect(response.message).to.equal('The response was not valid.'); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal("must have required property 'artifact_id'"); - }); - - it('is null', async () => { - const apiResponse = { artifact_id: null }; - const response = responseValidator.validateResponse(200, apiResponse); - - expect(response.message).to.equal('The response was not valid.'); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be integer'); - }); - - it('is wrong type', async () => { - const apiResponse = { artifact_id: '1' }; - const response = responseValidator.validateResponse(200, apiResponse); - - expect(response.message).to.equal('The response was not valid.'); - expect(response.errors.length).to.equal(1); - expect(response.errors[0].message).to.equal('must be integer'); - }); - }); - }); - - describe('should succeed when', () => { - it('required values are valid', async () => { - const apiResponse = { artifact_id: 1 }; - const response = responseValidator.validateResponse(200, apiResponse); - - expect(response).to.equal(undefined); - }); - }); - }); +describe('intakeArtifact', () => { + afterEach(() => { + sinon.restore(); }); - describe('intakeArtifacts', () => { - afterEach(() => { - sinon.restore(); - }); - - it('throws an error when req.files is empty', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = []; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('Missing required `media`'); - } - }); - - it('throws an error when two or more files are submitted', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File, - { - originalname: 'bbb47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('Too many files uploaded, expected 1'); - } - }); - - it('throws an error when media file is detected to be malicious', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; - - sinon.stub(fileUtils, 'scanFileForVirus').resolves(false); - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('Malicious content detected, upload cancelled'); - } - }); - - it('throws an error when data_package_id is absent', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: undefined, - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: 'string' - } - }; - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('Data package ID is required'); - } - }); - - it('throws an error when metadata is absent', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: undefined - }; - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('Metadata is required'); - } - }); - - it('throws an error when metadata file size is not a number', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: 'string' - } - }; - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('Metadata file_size must be a non-negative integer'); - } - }); - - it('throws an error when metadata file size is a negative number', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '-1' - } - }; - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('Metadata file_size must be a non-negative integer'); - } - }); - - it('throws an error when zip file has no extension', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; - - sinon.stub(fileUtils, 'scanFileForVirus').resolves(true); - sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('File must be a .zip archive'); - } - }); - - it('throws an error when file is not a zip', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'test.txt' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; - - sinon.stub(fileUtils, 'scanFileForVirus').resolves(true); - sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('File must be a .zip archive'); - } - }); - - it('throws an error when file name does not reflect a valid uuid', async () => { - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'test.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; - - sinon.stub(fileUtils, 'scanFileForVirus').resolves(true); - sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as HTTPError).status).to.equal(400); - expect((actualError as HTTPError).message).to.equal('File name must reflect a valid UUID'); - } - }); - - it('throws error if getServiceClientSystemUser returns null', async () => { - const dbConnectionObj = getMockDBConnection(); - sinon.stub(db, 'getServiceAccountDBConnection').returns(dbConnectionObj); - - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; - - sinon.stub(fileUtils, 'scanFileForVirus').resolves(true); - sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns(null); - const uploadStub = sinon.stub(ArtifactService.prototype, 'uploadAndPersistArtifact').resolves(); - - const requestHandler = intake.intakeArtifacts(); - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as Error).message).to.equal('Failed to identify known submission source system'); - expect(uploadStub).to.not.be.called; - } - }); - - it('catches and re-throws an error', async () => { - const dbConnectionObj = getMockDBConnection({ rollback: sinon.stub(), release: sinon.stub() }); - sinon.stub(db, 'getServiceAccountDBConnection').returns(dbConnectionObj); - - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - - mockReq.files = [ - { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File - ]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; - - sinon.stub(fileUtils, 'scanFileForVirus').resolves(true); - sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); - - sinon.stub(ArtifactService.prototype, 'uploadAndPersistArtifact').throws(new Error('test error')); - - const requestHandler = intake.intakeArtifacts(); - - try { - await requestHandler(mockReq, mockRes, mockNext); - expect.fail(); - } catch (actualError) { - expect((actualError as Error).message).to.equal('test error'); - expect(dbConnectionObj.release).to.have.been.calledOnce; - expect(dbConnectionObj.rollback).to.have.been.calledOnce; + it('should throw a 400 error when no file included in request', async () => { + const dbConnectionObj = getMockDBConnection(); + + sinon.stub(db, 'getDBConnection').returns(dbConnectionObj); + sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); + + const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); + + mockReq.body = { + submission_uuid: '123-456-789', + artifact_upload_key: '456-234-345', + media: '' + }; + + // Too few files + mockReq.files = []; + + try { + const requestHandler = intakeArtifact(); + + await requestHandler(mockReq, mockRes, mockNext); + expect.fail(); + } catch (actualError) { + expect((actualError as HTTPError).status).to.equal(400); + expect((actualError as HTTPError).message).to.equal('Missing required `media`'); + } + }); + + it('should throw a 400 error when more than 1 file uploaded', async () => { + const dbConnectionObj = getMockDBConnection(); + + sinon.stub(db, 'getDBConnection').returns(dbConnectionObj); + sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); + + const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); + + mockReq.body = { + submission_uuid: '123-456-789', + artifact_upload_key: '456-234-345', + media: '' + }; + + // Too many files + mockReq.files = [ + { + fieldname: 'media', + originalname: 'test.txt', + encoding: '7bit', + mimetype: 'text/plain', + size: 340 + }, + { + fieldname: 'media', + originalname: 'test2.txt', + encoding: '7bit', + mimetype: 'text/plain', + size: 50 } - }); + ] as Express.Multer.File[]; - it('returns 200', async () => { - const dbConnectionObj = getMockDBConnection(); - sinon.stub(db, 'getServiceAccountDBConnection').returns(dbConnectionObj); + try { + const requestHandler = intakeArtifact(); - const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); + await requestHandler(mockReq, mockRes, mockNext); + expect.fail(); + } catch (actualError) { + expect((actualError as HTTPError).status).to.equal(400); + expect((actualError as HTTPError).message).to.equal('Too many files uploaded, expected 1'); + } + }); + + it('catches and re-throws an error if artifact processing fails', async () => { + const dbConnectionObj = getMockDBConnection(); + + sinon.stub(db, 'getDBConnection').returns(dbConnectionObj); + sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); - const mockFile = { - originalname: 'aaa47e65-f306-410e-82fa-115f9916910b.zip' - } as unknown as Express.Multer.File; + const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); - mockReq.files = [mockFile]; - mockReq.body = { - media: 'file-binary', - data_package_id: '64f47e65-f306-410e-82fa-115f9916910b', - metadata: { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: '1' - } - }; + const submissionUuid = '123-456-789'; + const artifactUploadKey = '456-234-345'; + const artifactFile = { + fieldname: 'media', + originalname: 'test.txt', + encoding: '7bit', + mimetype: 'text/plain', + size: 340 + } as Express.Multer.File; - const scanFileForVirusStub = sinon.stub(fileUtils, 'scanFileForVirus').resolves(true); - sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); + mockReq.body = { + submission_uuid: submissionUuid, + artifact_upload_key: artifactUploadKey, + media: '' + }; - const uploadStub = sinon - .stub(ArtifactService.prototype, 'uploadAndPersistArtifact') - .resolves({ artifact_id: 12 }); + mockReq.files = [artifactFile] as Express.Multer.File[]; - const requestHandler = intake.intakeArtifacts(); + // Fail to process artifact + const uploadSubmissionFeatureArtifactStub = sinon + .stub(ArtifactService.prototype, 'uploadSubmissionFeatureArtifact') + .throws(new Error('test error')); + const requestHandler = intakeArtifact(); + + try { await requestHandler(mockReq, mockRes, mockNext); - expect(scanFileForVirusStub).to.have.been.calledOnceWith(mockFile); - expect(uploadStub).to.have.been.calledOnceWith( - '64f47e65-f306-410e-82fa-115f9916910b', - { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: 1 - }, - 'aaa47e65-f306-410e-82fa-115f9916910b', - mockFile - ); - expect(mockRes.statusValue).to.equal(200); - expect(mockRes.jsonValue).to.eql({ artifact_id: 12 }); - }); + expect.fail(); + } catch (actualError) { + expect(uploadSubmissionFeatureArtifactStub).to.have.been.calledOnceWith(artifactUploadKey, artifactFile); + expect((actualError as Error).message).to.equal('test error'); + } + }); + + it('should return 200 on success', async () => { + const dbConnectionObj = getMockDBConnection(); + + sinon.stub(db, 'getDBConnection').returns(dbConnectionObj); + sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); + + const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); + + const submissionUuid = '123-456-789'; + const artifactUploadKey = '456-234-345'; + const artifactFile = { + fieldname: 'media', + originalname: 'test.txt', + encoding: '7bit', + mimetype: 'text/plain', + size: 340 + } as Express.Multer.File; + + mockReq.body = { + submission_uuid: submissionUuid, + artifact_upload_key: artifactUploadKey, + media: '' + }; + + mockReq.files = [artifactFile] as Express.Multer.File[]; + + const uploadArtifactResponse: SubmissionFeatureRecord = { + submission_feature_id: 1, + uuid: '456-234-345', + submission_id: 2, + feature_type_id: 3, + source_id: 'source-id', + data: { + filename: 'test.txt' + }, + parent_submission_feature_id: 4, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0 + }; + + const uploadSubmissionFeatureArtifactStub = sinon + .stub(ArtifactService.prototype, 'uploadSubmissionFeatureArtifact') + .resolves(uploadArtifactResponse); + + const requestHandler = intakeArtifact(); + + await requestHandler(mockReq, mockRes, mockNext); + + expect(uploadSubmissionFeatureArtifactStub).to.have.been.calledOnceWith(artifactUploadKey, artifactFile); + + expect(mockRes.status).to.have.been.calledWith(200); + expect(mockRes.json).to.have.been.calledWith({ artifact_uuid: uploadArtifactResponse.uuid }); }); }); diff --git a/api/src/paths/artifact/intake.ts b/api/src/paths/artifact/intake.ts index 6eb236434..e4b8260b5 100644 --- a/api/src/paths/artifact/intake.ts +++ b/api/src/paths/artifact/intake.ts @@ -1,12 +1,10 @@ import { RequestHandler } from 'express'; import { Operation } from 'express-openapi'; -import { validate as validateUuid } from 'uuid'; import { getServiceAccountDBConnection } from '../../database/db'; import { HTTP400 } from '../../errors/http-error'; import { defaultErrorResponses } from '../../openapi/schemas/http-responses'; import { authorizeRequestHandler } from '../../request-handlers/security/authorization'; import { ArtifactService } from '../../services/artifact-service'; -import { scanFileForVirus } from '../../utils/file-utils'; import { getServiceClientSystemUser } from '../../utils/keycloak-utils'; import { getLogger } from '../../utils/logger'; @@ -22,12 +20,12 @@ export const POST: Operation = [ ] }; }), - intakeArtifacts() + intakeArtifact() ]; POST.apiDoc = { description: 'Submit an artifact to BioHub.', - tags: ['artifact'], + tags: ['submission', 'artifact'], security: [ { Bearer: [] @@ -37,68 +35,50 @@ POST.apiDoc = { content: { 'multipart/form-data': { schema: { + title: 'BioHub Artifact Submission', + description: + 'Allows source systems to upload artifacts to BioHub. The submission intake endpoint must be called first to generate a submission record against which artifacts may be submitted. Additionally, the original submission must include one artifact feature element for each artifact being uploaded to this endpoint.', type: 'object', - required: ['media', 'metadata', 'data_package_id'], + required: ['submission_uuid', 'artifact_upload_key', 'media'], properties: { - media: { + submission_uuid: { + description: + 'Globally unique id of the submission as assigned by BioHub. A submission uuid is returned by the submission intake endpoint.', type: 'string', - format: 'binary', - description: 'An artifact to be uploaded to BioHub' + format: 'uuid' }, - data_package_id: { - type: 'string', - format: 'uuid', - description: 'The unique identifier for this artifact collection.' + artifact_upload_key: { + description: + 'The artifact upload key. An upload key is returned by the submission intake endpoint for each artifact feature element included, if any.', + type: 'string' }, - metadata: { - type: 'object', - required: ['file_name', 'file_size', 'file_type'], - properties: { - title: { - description: 'The title of the artifact.', - type: 'string', - maxLength: 300 - }, - description: { - description: 'The description of the record.', - type: 'string', - maxLength: 3000 - }, - file_name: { - description: 'The original name of the artifact.', - type: 'string', - maxLength: 300 - }, - file_type: { - description: 'The artifact type. Artifact type examples include video, audio and field data.', - type: 'string', - maxLength: 300 - }, - file_size: { - description: 'The size of the artifact, in bytes.', - type: 'string' - } - } + media: { + type: 'string', + format: 'binary', + description: 'The artifact.' } - } + }, + additionalProperties: false } } } }, responses: { 200: { - description: 'Submission OK.', + description: 'Artifact OK.', content: { 'application/json': { schema: { type: 'object', - required: ['artifact_id'], + required: ['artifact_uuid'], properties: { - artifact_id: { - type: 'integer', - minimum: 1 + artifact_uuid: { + description: 'Globally unique id of the artifact feature element as assigned by BioHub.', + type: 'string', + format: 'uuid' } - } + }, + additionalProperties: false } } } @@ -107,51 +87,22 @@ POST.apiDoc = { } }; -export function intakeArtifacts(): RequestHandler { +export function intakeArtifact(): RequestHandler { return async (req, res) => { - defaultLog.debug({ label: 'intakeArtifacts', body: req.body }); if (!req.files?.length) { throw new HTTP400('Missing required `media`'); } if (req.files?.length !== 1) { - // no media objects included throw new HTTP400('Too many files uploaded, expected 1'); } - const dataPackageId = req.body?.data_package_id; - if (!dataPackageId) { - throw new HTTP400('Data package ID is required'); - } - const file: Express.Multer.File = Object.values(req.files)[0]; - const metadata = req.body.metadata; - if (!metadata) { - throw new HTTP400('Metadata is required'); - } - - const file_size = Number(metadata.file_size); - if (isNaN(file_size) || file_size < 0) { - throw new HTTP400('Metadata file_size must be a non-negative integer'); - } - - const fileParts = file.originalname.split('.'); - if (fileParts.length < 2 || fileParts[fileParts.length - 1].toLocaleLowerCase() !== 'zip') { - throw new HTTP400('File must be a .zip archive'); - } - const fileUuid = fileParts[0]; - if (!validateUuid(fileUuid)) { - throw new HTTP400('File name must reflect a valid UUID'); - } - - // Scan all files for viruses - const passesVirusCheck = await scanFileForVirus(file); - if (!passesVirusCheck) { - throw new HTTP400('Malicious content detected, upload cancelled'); - } + const artifactUploadKey = req.body.artifact_upload_key; const serviceClientSystemUser = getServiceClientSystemUser(req['keycloak_token']); + if (!serviceClientSystemUser) { throw new HTTP400('Failed to identify known submission source system', [ 'token sub did not match any known system user guid for a service client user' @@ -165,18 +116,13 @@ export function intakeArtifacts(): RequestHandler { const artifactService = new ArtifactService(connection); - const response = await artifactService.uploadAndPersistArtifact( - dataPackageId, - { ...metadata, file_size }, - fileUuid, - file - ); + const artifactSubmissionFeature = await artifactService.uploadSubmissionFeatureArtifact(artifactUploadKey, file); - res.status(200).json(response); + res.status(200).json({ artifact_uuid: artifactSubmissionFeature.uuid }); await connection.commit(); } catch (error) { - defaultLog.error({ label: 'intakeArtifacts', message: 'error', error }); + defaultLog.error({ label: 'intakeArtifact', message: 'error', error }); await connection.rollback(); throw error; } finally { diff --git a/api/src/paths/codes.ts b/api/src/paths/codes.ts index b115add8a..510a2a4e8 100644 --- a/api/src/paths/codes.ts +++ b/api/src/paths/codes.ts @@ -29,47 +29,73 @@ GET.apiDoc = { properties: { feature_type: { type: 'object', - required: ['id', 'name'], + required: ['feature_type_id', 'feature_type_name', 'feature_type_display_name'], properties: { - id: { - type: 'number', - description: 'The code id.' + feature_type_id: { + type: 'integer', + description: 'The feature type id.', + minimum: 1 }, - name: { + feature_type_name: { type: 'string', - description: 'The code name.' + description: 'The feature type name.', + example: 'dataset' + }, + feature_type_display_name: { + type: 'string', + description: 'The feature type display name.', + example: 'Dataset' } - } + }, + additionalProperties: false }, feature_type_properties: { type: 'array', items: { type: 'object', - required: ['id', 'name', 'display_name', 'type'], + required: [ + 'feature_property_id', + 'feature_property_name', + 'feature_property_display_name', + 'feature_property_type_id', + 'feature_property_type_name' + ], properties: { - id: { - type: 'number', - description: 'The code id.' + feature_property_id: { + type: 'integer', + description: 'The feature property id.', + minimum: 1 }, - name: { + feature_property_name: { type: 'string', - description: 'The code name.' + description: 'The feature property name.', + example: 'description' }, - display_name: { + feature_property_display_name: { type: 'string', - description: 'The code display name.' + description: 'The feature property display name.', + example: 'Description' + }, + feature_property_type_id: { + type: 'integer', + description: 'The feature property type id.', + minimum: 1 }, - type: { + feature_property_type_name: { type: 'string', - description: 'The code type.' + description: 'The feature property type name.', + example: 'string' } - } + }, + additionalProperties: false } } - } + }, + additionalProperties: false } } - } + }, + additionalProperties: false } } } @@ -81,7 +107,7 @@ GET.apiDoc = { $ref: '#/components/responses/401' }, 403: { - $ref: '#/components/responses/401' + $ref: '#/components/responses/403' }, 500: { $ref: '#/components/responses/500' diff --git a/api/src/paths/security/persecution-harm/list.ts b/api/src/paths/security/persecution-harm/list.ts index 8de17113d..53679d1e8 100644 --- a/api/src/paths/security/persecution-harm/list.ts +++ b/api/src/paths/security/persecution-harm/list.ts @@ -48,7 +48,8 @@ GET.apiDoc = { description: { type: 'string' } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/submission/intake.test.ts b/api/src/paths/submission/intake.test.ts index dcf6ed8a0..60d00e89e 100644 --- a/api/src/paths/submission/intake.test.ts +++ b/api/src/paths/submission/intake.test.ts @@ -31,11 +31,21 @@ describe('intake', () => { const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); + const feature1 = { + id: '2', + type: 'dataset', + properties: { + name: 'dataset two' + }, + child_features: [] + }; + mockReq.body = { - id: '123-456-789', - type: 'submission', - properties: {}, - features: [] + id: '564-987-789', + name: 'test submission', + description: 'a test submission', + comment: 'a comment', + content: feature1 }; try { @@ -66,7 +76,7 @@ describe('intake', () => { id: '123-456-789', type: 'submission', properties: {}, - features: [] + child_features: [] }; try { @@ -84,15 +94,48 @@ describe('intake', () => { const dbConnectionObj = getMockDBConnection(); sinon.stub(db, 'getDBConnection').returns(dbConnectionObj); - sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns({} as unknown as SystemUser); + + const serviceClientSystemUser: SystemUser = { + system_user_id: 3, + user_identifier: 'sims', + user_guid: 'service-account-sims', + user_identity_source_id: 5, + record_effective_date: '2024-01-01', + record_end_date: null, + create_user: 1, + create_date: '2024-01-01', + update_user: null, + update_date: null, + revision_count: 0 + }; + + sinon.stub(keycloakUtils, 'getServiceClientSystemUser').returns(serviceClientSystemUser); const validateSubmissionFeaturesStub = sinon .stub(ValidationService.prototype, 'validateSubmissionFeatures') .resolves(true); + const submissionId = 1; + const insertSubmissionRecordWithPotentialConflictStub = sinon .stub(SubmissionService.prototype, 'insertSubmissionRecordWithPotentialConflict') - .resolves({ submission_id: 1 }); + .resolves({ + submission_id: submissionId, + uuid: '123-456-789', + security_review_timestamp: '2023-12-12', + submitted_timestamp: '2023-12-12', + system_user_id: 3, + source_system: 'SIMS', + name: 'name', + description: 'description', + comment: 'comment', + publish_timestamp: '2023-12-12', + create_date: '2023-12-12', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0 + }); const insertSubmissionFeatureRecordsStub = sinon .stub(SubmissionService.prototype, 'insertSubmissionFeatureRecords') @@ -102,6 +145,27 @@ describe('intake', () => { .stub(SearchIndexService.prototype, 'indexFeaturesBySubmissionId') .resolves(); + const findSubmissionFeaturesStub = sinon.stub(SubmissionService.prototype, 'findSubmissionFeatures').resolves([ + { + submission_feature_id: 2, + submission_id: submissionId, + feature_type_id: 3, + uuid: '321-645-978', + source_id: '4', + data: { + filename: 'test-file.txt' + }, + parent_submission_feature_id: null, + record_effective_date: '', + record_end_date: null, + create_date: '', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 1 + } + ]); + const calculateAndAddRegionsForSubmissionStub = sinon .stub(RegionService.prototype, 'calculateAndAddRegionsForSubmission') .resolves(); @@ -110,22 +174,52 @@ describe('intake', () => { const { mockReq, mockRes, mockNext } = getRequestHandlerMocks(); + const feature1 = { + id: '2', + type: 'dataset', + properties: { + name: 'dataset two' + }, + child_features: [] + }; + mockReq.body = { - id: '123-456-789', - type: 'submission', - properties: { additionalInformation: 'test' }, - features: [] + id: '564-987-789', + name: 'test submission', + description: 'a test submission', + comment: 'a comment', + content: feature1 }; await requestHandler(mockReq, mockRes, mockNext); - expect(validateSubmissionFeaturesStub).to.have.been.calledOnce; - expect(insertSubmissionRecordWithPotentialConflictStub).to.have.been.calledOnce; - expect(insertSubmissionFeatureRecordsStub).to.have.been.calledOnce; - expect(indexFeaturesBySubmissionIdStub).to.have.been.calledOnce; + expect(validateSubmissionFeaturesStub).to.have.been.calledOnceWith([feature1]); + expect(insertSubmissionRecordWithPotentialConflictStub).to.have.been.calledOnceWith( + '564-987-789', + 'test submission', + 'a test submission', + 'a comment', + serviceClientSystemUser.system_user_id, + serviceClientSystemUser.user_identifier + ); + expect(insertSubmissionFeatureRecordsStub).to.have.been.calledOnceWith(submissionId, [feature1]); + expect(indexFeaturesBySubmissionIdStub).to.have.been.calledOnceWith(submissionId); + expect(findSubmissionFeaturesStub).to.have.been.calledOnceWith({ + submissionId: submissionId, + featureTypeNames: ['artifact'] + }); + expect(calculateAndAddRegionsForSubmissionStub).to.have.been.calledOnce; expect(mockRes.statusValue).to.eql(200); - expect(mockRes.jsonValue).to.eql({ submission_id: 1 }); + expect(mockRes.jsonValue).to.eql({ + submission_uuid: '123-456-789', + artifact_upload_keys: [ + { + artifact_filename: 'test-file.txt', + artifact_upload_key: '321-645-978' + } + ] + }); }); }); }); diff --git a/api/src/paths/submission/intake.ts b/api/src/paths/submission/intake.ts index 57fc2031b..60a106b7b 100644 --- a/api/src/paths/submission/intake.ts +++ b/api/src/paths/submission/intake.ts @@ -28,7 +28,7 @@ export const POST: Operation = [ ]; POST.apiDoc = { - description: 'Submit submission to BioHub', + description: 'Submit data to BioHub', tags: ['submission'], security: [ { @@ -41,30 +41,32 @@ POST.apiDoc = { schema: { title: 'BioHub Data Submission', type: 'object', - required: ['id', 'name', 'description', 'features'], + required: ['id', 'name', 'description', 'comment', 'content'], properties: { id: { - title: 'Unique id of the submission', + description: 'The Unique identifier of the submission as supplied by the source system.', + format: 'uuid', type: 'string' }, name: { - title: 'The name of the submission. Should not include sensitive information.', + description: 'The name of the submission. Should not include sensitive information.', type: 'string', maxLength: 200 }, description: { - title: 'A description of the submission. Should not include sensitive information.', + description: + 'A description of the submission. Should not include sensitive information. May be shared with the general public.', type: 'string', maxLength: 3000 }, - features: { - type: 'array', - items: { - $ref: '#/components/schemas/SubmissionFeature' - }, - minItems: 1, - maxItems: 1, - additionalProperties: false + comment: { + description: + 'An internal comment/description of the submission for administrative purposes. May include sensitive information. Will never be shared with the general public.', + type: 'string', + maxLength: 3000 + }, + content: { + $ref: '#/components/schemas/SubmissionFeature' } }, additionalProperties: false @@ -79,12 +81,36 @@ POST.apiDoc = { 'application/json': { schema: { type: 'object', - required: ['submission_id'], + required: ['submission_uuid'], properties: { - submission_id: { - type: 'integer' + submission_uuid: { + description: 'Globally unique id of the submission as assigned by BioHub.', + type: 'string', + format: 'uuid' + }, + artifact_upload_keys: { + description: + 'Contains information required by the artifact intake endpoint, which is used to upload artifact files to BioHub.', + type: 'array', + items: { + type: 'object', + required: ['artifact_filename', 'artifact_upload_key'], + properties: { + artifact_filename: { + description: 'The original file name of the artifact, including the extension.', + type: 'string' + }, + artifact_upload_key: { + description: + 'The artifact upload key. Use this key in the subsequent requests to upload the actual artifact file.', + type: 'string' + } + }, + additionalProperties: false + } } - } + }, + additionalProperties: false } } } @@ -95,6 +121,7 @@ POST.apiDoc = { export function submissionIntake(): RequestHandler { return async (req, res) => { + // TODO Allow system admins const serviceClientSystemUser = getServiceClientSystemUser(req['keycloak_token']); if (!serviceClientSystemUser) { @@ -103,13 +130,12 @@ export function submissionIntake(): RequestHandler { ]); } - const submission = { - id: req.body.id, - name: req.body.name, - description: req.body.description - }; + const submissionUuid = req.body.id; + const submissionName = req.body.name; + const submissionDescription = req.body.description; + const submissionComment = req.body.comment; - const submissionFeatures: ISubmissionFeature[] = req.body.features; + const submissionFeature: ISubmissionFeature = req.body.content; const connection = getServiceAccountDBConnection(serviceClientSystemUser); @@ -121,30 +147,51 @@ export function submissionIntake(): RequestHandler { const searchIndexService = new SearchIndexService(connection); const regionService = new RegionService(connection); - // validate the submission - if (!(await validationService.validateSubmissionFeatures(submissionFeatures))) { - throw new HTTP400('Invalid submission'); + // validate theubmission + if (!(await validationService.validateSubmissionFeatures([submissionFeature]))) { + throw new HTTP400('Invalid submission'); // TODO return details on why the submission is invalid } // insert the submission record - const response = await submissionService.insertSubmissionRecordWithPotentialConflict( - submission.id, - submission.name, - submission.description, + const submissionRecord = await submissionService.insertSubmissionRecordWithPotentialConflict( + submissionUuid, + submissionName, + submissionDescription, + submissionComment, + serviceClientSystemUser.system_user_id, serviceClientSystemUser.user_identifier ); // insert each submission feature record - await submissionService.insertSubmissionFeatureRecords(response.submission_id, submissionFeatures); + await submissionService.insertSubmissionFeatureRecords(submissionRecord.submission_id, [submissionFeature]); // Index the submission feature record properties - await searchIndexService.indexFeaturesBySubmissionId(response.submission_id); + await searchIndexService.indexFeaturesBySubmissionId(submissionRecord.submission_id); + + // Fetch all artifact submission features, if any + const submissionArtifactFeatures = await submissionService.findSubmissionFeatures({ + submissionId: submissionRecord.submission_id, + featureTypeNames: ['artifact'] + }); // Calculate and add submission regions - await regionService.calculateAndAddRegionsForSubmission(response.submission_id, 0.3); + await regionService.calculateAndAddRegionsForSubmission(submissionRecord.submission_id, 0.3); await connection.commit(); + const response = { + submission_uuid: submissionRecord.uuid, + // Include artifact upload keys in response, if any + ...(submissionArtifactFeatures.length && { + artifact_upload_keys: submissionArtifactFeatures.map((item) => { + return { + artifact_filename: item.data['filename'], + artifact_upload_key: item.uuid + }; + }) + }) + }; + res.status(200).json(response); } catch (error) { defaultLog.error({ label: 'submissionIntake', message: 'error', error }); diff --git a/api/src/paths/submission/published/index.ts b/api/src/paths/submission/published/index.ts index d0e892c38..fcee7eee3 100644 --- a/api/src/paths/submission/published/index.ts +++ b/api/src/paths/submission/published/index.ts @@ -26,7 +26,9 @@ GET.apiDoc = { 'submission_id', 'uuid', 'security_review_timestamp', + 'publish_timestamp', 'submitted_timestamp', + 'system_user_id', 'source_system', 'name', 'description', @@ -50,11 +52,20 @@ GET.apiDoc = { format: 'uuid' }, security_review_timestamp: { - type: 'string' + type: 'string', + nullable: true + }, + publish_timestamp: { + type: 'string', + nullable: true }, submitted_timestamp: { type: 'string' }, + system_user_id: { + type: 'integer', + minimum: 1 + }, source_system: { type: 'string' }, @@ -105,7 +116,8 @@ GET.apiDoc = { root_feature_type_display_name: { type: 'string' } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/submission/{submissionId}/features/index.test.ts b/api/src/paths/submission/{submissionId}/features/index.test.ts index c06b4d76a..5d238462b 100644 --- a/api/src/paths/submission/{submissionId}/features/index.test.ts +++ b/api/src/paths/submission/{submissionId}/features/index.test.ts @@ -21,8 +21,8 @@ describe('index', () => { sinon.stub(db, 'getDBConnection').returns(dbConnectionObj); - const getSubmissionAndFeaturesBySubmissionIdStub = sinon - .stub(SubmissionService.prototype, 'getSubmissionFeaturesBySubmissionId') + const getSubmissionFeaturesWithSearchKeyValuesBySubmissionIdStub = sinon + .stub(SubmissionService.prototype, 'getSubmissionFeaturesWithSearchKeyValuesBySubmissionId') .throws(new HTTP400('Error', ['Error'])); const requestHandler = index.getSubmissionFeatures(); @@ -38,7 +38,7 @@ describe('index', () => { expect.fail(); } catch (error) { - expect(getSubmissionAndFeaturesBySubmissionIdStub).to.have.been.calledOnce; + expect(getSubmissionFeaturesWithSearchKeyValuesBySubmissionIdStub).to.have.been.calledOnceWith(1); expect((error as HTTPError).status).to.equal(400); expect((error as HTTPError).message).to.equal('Error'); } @@ -51,8 +51,8 @@ describe('index', () => { const mockResponse = [] as unknown as any; - const getSubmissionAndFeaturesBySubmissionIdStub = sinon - .stub(SubmissionService.prototype, 'getSubmissionFeaturesBySubmissionId') + const getSubmissionFeaturesWithSearchKeyValuesBySubmissionIdStub = sinon + .stub(SubmissionService.prototype, 'getSubmissionFeaturesWithSearchKeyValuesBySubmissionId') .resolves(mockResponse); const requestHandler = index.getSubmissionFeatures(); @@ -65,7 +65,7 @@ describe('index', () => { await requestHandler(mockReq, mockRes, mockNext); - expect(getSubmissionAndFeaturesBySubmissionIdStub).to.have.been.calledOnce; + expect(getSubmissionFeaturesWithSearchKeyValuesBySubmissionIdStub).to.have.been.calledOnceWith(1); expect(mockRes.statusValue).to.eql(200); expect(mockRes.jsonValue).to.eql(mockResponse); }); diff --git a/api/src/paths/submission/{submissionId}/features/index.ts b/api/src/paths/submission/{submissionId}/features/index.ts index 99faa9ace..6a7de1b49 100644 --- a/api/src/paths/submission/{submissionId}/features/index.ts +++ b/api/src/paths/submission/{submissionId}/features/index.ts @@ -52,8 +52,10 @@ GET.apiDoc = { type: 'object', required: [ 'submission_feature_id', + 'uuid', 'submission_id', 'feature_type_id', + 'source_id', 'data', 'parent_submission_feature_id', 'record_effective_date', @@ -72,6 +74,10 @@ GET.apiDoc = { type: 'integer', minimum: 1 }, + uuid: { + type: 'string', + format: 'uuid' + }, submission_id: { type: 'integer', minimum: 1 @@ -80,6 +86,10 @@ GET.apiDoc = { type: 'integer', minimum: 1 }, + source_id: { + type: 'string', + maxLength: 200 + }, data: { type: 'object', properties: {} @@ -129,7 +139,8 @@ GET.apiDoc = { minimum: 1 } } - } + }, + additionalProperties: false } } } @@ -158,7 +169,7 @@ export function getSubmissionFeatures(): RequestHandler { const submissionService = new SubmissionService(connection); - const result = await submissionService.getSubmissionFeaturesBySubmissionId(submissionId); + const result = await submissionService.getSubmissionFeaturesWithSearchKeyValuesBySubmissionId(submissionId); await connection.commit(); diff --git a/api/src/paths/submission/{submissionId}/index.ts b/api/src/paths/submission/{submissionId}/index.ts index c994b4963..ae8fd0bff 100644 --- a/api/src/paths/submission/{submissionId}/index.ts +++ b/api/src/paths/submission/{submissionId}/index.ts @@ -42,16 +42,18 @@ GET.apiDoc = { 'uuid', 'security_review_timestamp', 'submitted_timestamp', + 'publish_timestamp', + 'system_user_id', 'source_system', 'name', 'description', + 'comment', 'create_date', 'create_user', 'update_date', 'update_user', 'revision_count', - 'security', - 'publish_timestamp' + 'security' ], properties: { submission_id: { @@ -66,6 +68,17 @@ GET.apiDoc = { type: 'string', nullable: true }, + submitted_timestamp: { + type: 'string' + }, + publish_timestamp: { + type: 'string', + nullable: true + }, + system_user_id: { + type: 'integer', + minimum: 1 + }, source_system: { type: 'string' }, @@ -77,9 +90,9 @@ GET.apiDoc = { type: 'string', maxLength: 3000 }, - publish_timestamp: { + comment: { type: 'string', - nullable: true + maxLength: 3000 }, create_date: { type: 'string' @@ -110,7 +123,8 @@ GET.apiDoc = { SECURITY_APPLIED_STATUS.PARTIALLY_SECURED ] } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/submission/{submissionId}/published/download/index.ts b/api/src/paths/submission/{submissionId}/published/download/index.ts index 005075aa2..92e75f569 100644 --- a/api/src/paths/submission/{submissionId}/published/download/index.ts +++ b/api/src/paths/submission/{submissionId}/published/download/index.ts @@ -59,7 +59,8 @@ GET.apiDoc = { type: 'integer', minimum: 1 } - } + }, + additionalProperties: false } } } diff --git a/api/src/paths/user/self.ts b/api/src/paths/user/self.ts index 1221d0f2a..ceedc9ca4 100644 --- a/api/src/paths/user/self.ts +++ b/api/src/paths/user/self.ts @@ -44,6 +44,7 @@ GET.apiDoc = { 'user_guid', 'record_effective_date', 'record_end_date', + 'create_date', 'create_user', 'update_date', 'update_user', @@ -77,6 +78,9 @@ GET.apiDoc = { type: 'string', nullable: true }, + create_date: { + type: 'string' + }, create_user: { type: 'integer', minimum: 1 @@ -112,7 +116,8 @@ GET.apiDoc = { type: 'string' } } - } + }, + additionalProperties: false } } } diff --git a/api/src/repositories/code-repository.test.ts b/api/src/repositories/code-repository.test.ts index 2a26e60cd..b29bee22f 100644 --- a/api/src/repositories/code-repository.test.ts +++ b/api/src/repositories/code-repository.test.ts @@ -4,7 +4,7 @@ import { QueryResult } from 'pg'; import sinon from 'sinon'; import sinonChai from 'sinon-chai'; import { getMockDBConnection } from '../__mocks__/db'; -import { CodeRepository, IAllCodeSets, ICode } from './code-repository'; +import { CodeRepository, FeaturePropertyCode, FeatureTypeCode } from './code-repository'; chai.use(sinonChai); @@ -13,10 +13,17 @@ describe('CodeRepository', () => { afterEach(() => { sinon.restore(); }); + it('should return rows if succeeds', async () => { + const mockRow: FeatureTypeCode = { + feature_type_id: 1, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset' + }; + const mockQueryResponse = { rowCount: 1, - rows: [{ id: 1, name: 'name' } as unknown as ICode] + rows: [mockRow] } as any as Promise>; const mockDBConnection = getMockDBConnection({ @@ -27,26 +34,87 @@ describe('CodeRepository', () => { const result = await codeRepository.getFeatureTypes(); - expect(result).to.be.eql([{ id: 1, name: 'name' }]); + expect(result).to.be.eql([mockRow]); }); }); - describe('getFeatureTypeProperties', async () => { + describe('getFeatureTypePropertyCodes', async () => { afterEach(() => { sinon.restore(); }); it('should return rows if succeeds', async () => { + const mockRow: FeatureTypeCode & FeaturePropertyCode = { + feature_type_id: 1, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', + feature_property_id: 2, + feature_property_name: 'name', + feature_property_display_name: 'Name', + feature_property_type_id: 3, + feature_property_type_name: 'string' + }; + + const mockQueryResponse = { + rowCount: 1, + rows: [mockRow] + } as any as Promise>; + + const mockDBConnection = getMockDBConnection({ + sql: () => mockQueryResponse + }); + + const codeRepository = new CodeRepository(mockDBConnection); + + const result = await codeRepository.getFeatureTypePropertyCodes(); + + expect(result).to.be.eql([mockRow]); + }); + }); + + describe('getFeaturePropertyByName', () => { + afterEach(() => { + sinon.restore(); + }); + + it('throws an error if no matching record found', async () => { + const mockQueryResponse = { + rowCount: 0, + rows: [] + } as any as Promise>; + + const mockDBConnection = getMockDBConnection({ + sql: () => mockQueryResponse + }); + + const codeRepository = new CodeRepository(mockDBConnection); + + const featurePropertyName = 'name'; + + try { + await codeRepository.getFeaturePropertyByName(featurePropertyName); + + expect.fail(); + } catch (error) { + expect((error as Error).message).to.equal('Failed to get feature property record'); + } + }); + + it('should return row if succeeds', async () => { + const mockRow: FeatureTypeCode & FeaturePropertyCode = { + feature_type_id: 1, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', + feature_property_id: 2, + feature_property_name: 'name', + feature_property_display_name: 'Name', + feature_property_type_id: 3, + feature_property_type_name: 'string' + }; + const mockQueryResponse = { rowCount: 1, - rows: [ - { - id: 1, - name: 'name', - display_name: 'display', - type: 'string' - } as unknown as IAllCodeSets['feature_type_with_properties'] - ] + rows: [mockRow] } as any as Promise>; const mockDBConnection = getMockDBConnection({ @@ -55,9 +123,11 @@ describe('CodeRepository', () => { const codeRepository = new CodeRepository(mockDBConnection); - const result = await codeRepository.getFeatureTypeProperties(1); + const featurePropertyName = 'name'; + + const result = await codeRepository.getFeaturePropertyByName(featurePropertyName); - expect(result).to.be.eql([{ id: 1, name: 'name', display_name: 'display', type: 'string' }]); + expect(result).to.be.eql(mockRow); }); }); }); diff --git a/api/src/repositories/code-repository.ts b/api/src/repositories/code-repository.ts index 3e6afa601..599096e3b 100644 --- a/api/src/repositories/code-repository.ts +++ b/api/src/repositories/code-repository.ts @@ -1,27 +1,36 @@ import SQL from 'sql-template-strings'; import { z } from 'zod'; +import { ApiExecuteSQLError } from '../errors/api-error'; import { BaseRepository } from './base-repository'; +import { FeaturePropertyRecord } from './search-index-respository'; -export const ICode = z.object({ - id: z.number(), - name: z.string() +const FeatureTypeCode = z.object({ + feature_type_id: z.number(), + feature_type_name: z.string(), + feature_type_display_name: z.string() }); -export type ICode = z.infer; +export type FeatureTypeCode = z.infer; -export const CodeSet = (zodSchema?: T) => { - return (zodSchema && z.array(ICode.extend(zodSchema))) || z.array(ICode); -}; +const FeaturePropertyCode = z.object({ + feature_property_id: z.number(), + feature_property_name: z.string(), + feature_property_display_name: z.string(), + feature_property_type_id: z.number(), + feature_property_type_name: z.string() +}); + +export type FeaturePropertyCode = z.infer; + +const FeatureTypeWithFeaturePropertiesCode = z.object({ + feature_type: FeatureTypeCode, + feature_type_properties: z.array(FeaturePropertyCode) +}); + +export type FeatureTypeWithFeaturePropertiesCode = z.infer; export const IAllCodeSets = z.object({ - feature_type_with_properties: z.array( - z.object({ - feature_type: CodeSet(), - feature_type_properties: z.array( - CodeSet(z.object({ id: z.number(), name: z.string(), display_name: z.string(), type: z.string() }).shape) - ) - }) - ) + feature_type_with_properties: z.array(FeatureTypeWithFeaturePropertiesCode) }); export type IAllCodeSets = z.infer; @@ -37,44 +46,86 @@ export class CodeRepository extends BaseRepository { /** * Get all feature types. * - * @return {*} + * @return {*} {Promise} * @memberof CodeRepository */ - async getFeatureTypes() { + async getFeatureTypes(): Promise { const sql = SQL` - SELECT feature_type_id as id, name FROM feature_type; + SELECT + feature_type_id, + name as feature_type_name, + display_name as feature_type_display_name + FROM + feature_type; `; - const response = await this.connection.sql(sql); + + const response = await this.connection.sql(sql, FeatureTypeCode); + return response.rows; } /** - * Get all feature type properties. + * Get all feature type property codes for all feature types. * - * @param {number} featureTypeId - * @return {*} + * @return {*} {(Promise<(FeatureTypeCode & FeaturePropertyCode)[]>)} * @memberof CodeRepository */ - async getFeatureTypeProperties(featureTypeId: number) { + async getFeatureTypePropertyCodes(): Promise<(FeatureTypeCode & FeaturePropertyCode)[]> { const sql = SQL` - SELECT - ftp.feature_type_property_id as id, - fp.name as name, - fp.display_name as display_name, - fpt.name as type - FROM - feature_type_property ftp - INNER JOIN - feature_property fp ON fp.feature_property_id = ftp.feature_property_id - INNER JOIN - feature_property_type fpt ON fpt.feature_property_type_id = fp.feature_property_type_id - WHERE - ftp.feature_type_id = ${featureTypeId} - ORDER BY - ftp.sort - ASC; + SELECT + ft.feature_type_id, + ft.name as feature_type_name, + ft.display_name as feature_type_display_name, + fp.feature_property_id, + fp.name as feature_property_name, + fp.display_name as feature_property_display_name, + fpt.feature_property_type_id, + fpt.name as feature_property_type_name + FROM + feature_type ft + INNER JOIN + feature_type_property ftp on ft.feature_type_id = ftp.feature_type_id + INNER JOIN + feature_property fp ON fp.feature_property_id = ftp.feature_property_id + INNER JOIN + feature_property_type fpt ON fpt.feature_property_type_id = fp.feature_property_type_id + ORDER BY + ft.sort, + ftp.sort + ASC; `; - const response = await this.connection.sql(sql); + + const response = await this.connection.sql(sql, FeatureTypeCode.merge(FeaturePropertyCode)); + return response.rows; } + + /** + * Get a feature property record by name. + * + * @param {string} featurePropertyName + * @return {*} {Promise} + * @memberof CodeRepository + */ + async getFeaturePropertyByName(featurePropertyName: string): Promise { + const sqlStatement = SQL` + SELECT + * + FROM + feature_property + WHERE + name = ${featurePropertyName}; + `; + + const response = await this.connection.sql(sqlStatement, FeaturePropertyRecord); + + if (response.rowCount !== 1) { + throw new ApiExecuteSQLError('Failed to get feature property record', [ + 'CodeRepository->getFeaturePropertyByName', + 'rowCount !== 1, expected rowCount === 1' + ]); + } + + return response.rows[0]; + } } diff --git a/api/src/repositories/search-index-repository.test.ts b/api/src/repositories/search-index-repository.test.ts index 1abfb3214..0bef523ae 100644 --- a/api/src/repositories/search-index-repository.test.ts +++ b/api/src/repositories/search-index-repository.test.ts @@ -1,6 +1,7 @@ import { expect } from 'chai'; import { QueryResult } from 'pg'; import Sinon from 'sinon'; +import { ApiExecuteSQLError } from '../errors/api-error'; import { getMockDBConnection } from '../__mocks__/db'; import { FeaturePropertyRecordWithPropertyTypeName, SearchIndexRepository } from './search-index-respository'; @@ -20,6 +21,7 @@ describe('SearchIndexRepository', () => { display_name: 'Count', description: 'The count of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -36,6 +38,7 @@ describe('SearchIndexRepository', () => { display_name: 'Date Range', description: 'A date range', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -52,6 +55,7 @@ describe('SearchIndexRepository', () => { display_name: 'Description', description: 'The description of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -68,6 +72,7 @@ describe('SearchIndexRepository', () => { display_name: 'End Date', description: 'The end date of the record', parent_feature_property_id: 4, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -84,6 +89,7 @@ describe('SearchIndexRepository', () => { display_name: 'Geometry', description: 'The location of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -100,6 +106,7 @@ describe('SearchIndexRepository', () => { display_name: 'Latitude', description: 'The latitude of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -116,6 +123,7 @@ describe('SearchIndexRepository', () => { display_name: 'Longitude', description: 'The longitude of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -132,6 +140,7 @@ describe('SearchIndexRepository', () => { display_name: 'Name', description: 'The name of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -144,10 +153,11 @@ describe('SearchIndexRepository', () => { feature_property_type_name: 'string', feature_property_id: 21, feature_property_type_id: 1, - name: 's3_key', + name: 'artifact_key', display_name: 'Key', description: 'The S3 storage key for an artifact', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 15:40:29.486362-08', @@ -164,6 +174,7 @@ describe('SearchIndexRepository', () => { display_name: 'Start Date', description: 'The start date of the record', parent_feature_property_id: 4, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -180,6 +191,7 @@ describe('SearchIndexRepository', () => { display_name: 'Taxonomy Id', description: 'The taxonomy Id associated to the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -214,6 +226,7 @@ describe('SearchIndexRepository', () => { display_name: 'Count', description: 'The count of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -230,6 +243,7 @@ describe('SearchIndexRepository', () => { display_name: 'Date Range', description: 'A date range', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -246,6 +260,7 @@ describe('SearchIndexRepository', () => { display_name: 'Description', description: 'The description of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -262,6 +277,7 @@ describe('SearchIndexRepository', () => { display_name: 'End Date', description: 'The end date of the record', parent_feature_property_id: 4, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -278,6 +294,7 @@ describe('SearchIndexRepository', () => { display_name: 'Geometry', description: 'The location of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -294,6 +311,7 @@ describe('SearchIndexRepository', () => { display_name: 'Latitude', description: 'The latitude of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -310,6 +328,7 @@ describe('SearchIndexRepository', () => { display_name: 'Longitude', description: 'The longitude of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -326,6 +345,7 @@ describe('SearchIndexRepository', () => { display_name: 'Name', description: 'The name of the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -338,10 +358,11 @@ describe('SearchIndexRepository', () => { feature_property_type_name: 'string', feature_property_id: 21, feature_property_type_id: 1, - name: 's3_key', + name: 'artifact_key', display_name: 'Key', description: 'The S3 storage key for an artifact', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 15:40:29.486362-08', @@ -358,6 +379,7 @@ describe('SearchIndexRepository', () => { display_name: 'Start Date', description: 'The start date of the record', parent_feature_property_id: 4, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -374,6 +396,7 @@ describe('SearchIndexRepository', () => { display_name: 'Taxonomy Id', description: 'The taxonomy Id associated to the record', parent_feature_property_id: null, + calculated_value: false, record_effective_date: '2023-12-08', record_end_date: null, create_date: '2023-12-08 14:37:41.315999-08', @@ -385,4 +408,200 @@ describe('SearchIndexRepository', () => { ]); }); }); + + describe('insertSearchableDatetimeRecords', () => { + it('should succeed on insert', async () => { + const mockQueryResponse = { rowCount: 1, rows: [{ search_datetime_id: 1 }] } as any as Promise>; + + const mockDBConnection = getMockDBConnection({ + knex: () => mockQueryResponse + }); + + const searchIndexRepository = new SearchIndexRepository(mockDBConnection); + + const response = await searchIndexRepository.insertSearchableDatetimeRecords([ + { + feature_property_id: 1, + submission_feature_id: 1, + value: new Date('2024-01-15').toDateString() + } + ]); + + expect(response[0].search_datetime_id).to.equal(1); + }); + + it('should throw an exception if no rows are retured', async () => { + const mockQueryResponse = { + rowCount: 0, + rows: [] + } as unknown as Promise>; + + const mockDBConnection = getMockDBConnection({ knex: () => mockQueryResponse }); + + const searchIndexRepository = new SearchIndexRepository(mockDBConnection); + + try { + await searchIndexRepository.insertSearchableDatetimeRecords([ + { + feature_property_id: 1, + submission_feature_id: 1, + value: new Date('2024-01-15').toDateString() + } + ]); + } catch (error) { + expect((error as ApiExecuteSQLError).message).to.equal('Failed to insert searchable datetime records'); + } + }); + }); + + describe('insertSearchableNumberRecords', () => { + it('should succeed on insert', async () => { + const mockQueryResponse = { rowCount: 1, rows: [{ search_number_id: 1 }] } as any as Promise>; + + const mockDBConnection = getMockDBConnection({ + knex: () => mockQueryResponse + }); + + const searchIndexRepository = new SearchIndexRepository(mockDBConnection); + + const response = await searchIndexRepository.insertSearchableNumberRecords([ + { + feature_property_id: 1, + submission_feature_id: 1, + value: 100 + } + ]); + + expect(response[0].search_number_id).to.equal(1); + }); + + it('should throw an exception if no rows are retured', async () => { + const mockQueryResponse = { + rowCount: 0, + rows: [] + } as unknown as Promise>; + + const mockDBConnection = getMockDBConnection({ knex: () => mockQueryResponse }); + + const searchIndexRepository = new SearchIndexRepository(mockDBConnection); + + try { + await searchIndexRepository.insertSearchableNumberRecords([ + { + feature_property_id: 1, + submission_feature_id: 1, + value: 100 + } + ]); + } catch (error) { + expect((error as ApiExecuteSQLError).message).to.equal('Failed to insert searchable number records'); + } + }); + }); + + describe('insertSearchableSpatialRecords', () => { + it('should succeed on insert', async () => { + const mockQueryResponse = { rowCount: 1, rows: [{ search_spatial_id: 1 }] } as any as Promise>; + + const mockDBConnection = getMockDBConnection({ + sql: () => mockQueryResponse + }); + + const searchIndexRepository = new SearchIndexRepository(mockDBConnection); + + const response = await searchIndexRepository.insertSearchableSpatialRecords([ + { + feature_property_id: 1, + submission_feature_id: 1, + value: { + type: 'FeatureCollection', + features: [ + { + type: 'Feature', + geometry: { type: 'Point', coordinates: [-127, 49] } + } + ] + } + } + ]); + + expect(response[0].search_spatial_id).to.equal(1); + }); + + it('should throw an exception if no rows are retured', async () => { + const mockQueryResponse = { + rowCount: 0, + rows: [] + } as unknown as Promise>; + + const mockDBConnection = getMockDBConnection({ sql: () => mockQueryResponse }); + + const searchIndexRepository = new SearchIndexRepository(mockDBConnection); + + try { + await searchIndexRepository.insertSearchableSpatialRecords([ + { + feature_property_id: 1, + submission_feature_id: 1, + value: { + type: 'FeatureCollection', + features: [ + { + type: 'Feature', + geometry: { type: 'Point', coordinates: [-127, 49] } + } + ] + } + } + ]); + } catch (error) { + expect((error as ApiExecuteSQLError).message).to.equal('Failed to insert searchable spatial records'); + } + }); + }); + + describe('insertSearchableStringRecords', () => { + it('should succeed on insert', async () => { + const mockQueryResponse = { rowCount: 1, rows: [{ search_string_id: 1 }] } as any as Promise>; + + const mockDBConnection = getMockDBConnection({ + knex: () => mockQueryResponse + }); + + const searchIndexRepository = new SearchIndexRepository(mockDBConnection); + + const response = await searchIndexRepository.insertSearchableStringRecords([ + { + feature_property_id: 1, + submission_feature_id: 1, + value: 'Test' + } + ]); + + expect(response[0].search_string_id).to.equal(1); + }); + + it('should throw an exception if no rows are retured', async () => { + const mockQueryResponse = { + rowCount: 0, + rows: [] + } as unknown as Promise>; + + const mockDBConnection = getMockDBConnection({ knex: () => mockQueryResponse }); + + const searchIndexRepository = new SearchIndexRepository(mockDBConnection); + + try { + await searchIndexRepository.insertSearchableStringRecords([ + { + feature_property_id: 1, + submission_feature_id: 1, + value: 'Test' + } + ]); + } catch (error) { + expect((error as ApiExecuteSQLError).message).to.equal('Failed to insert searchable string records'); + } + }); + }); }); diff --git a/api/src/repositories/search-index-respository.ts b/api/src/repositories/search-index-respository.ts index e4eed3a6e..3822f1e6b 100644 --- a/api/src/repositories/search-index-respository.ts +++ b/api/src/repositories/search-index-respository.ts @@ -6,17 +6,19 @@ import { ApiExecuteSQLError } from '../errors/api-error'; import { getLogger } from '../utils/logger'; import { generateGeometryCollectionSQL } from '../utils/spatial-utils'; import { GeoJSONFeatureCollectionZodSchema } from '../zod-schema/geoJsonZodSchema'; +import { shallowJsonSchema } from '../zod-schema/json'; import { BaseRepository } from './base-repository'; const defaultLog = getLogger('repositories/search-index-repository'); -const FeaturePropertyRecord = z.object({ +export const FeaturePropertyRecord = z.object({ feature_property_id: z.number(), feature_property_type_id: z.number(), name: z.string(), display_name: z.string(), description: z.string(), parent_feature_property_id: z.number().nullable(), + calculated_value: z.boolean(), record_effective_date: z.string(), record_end_date: z.string().nullable(), create_date: z.string(), @@ -108,6 +110,28 @@ export type InsertNumberSearchableRecord = z.infer; export type InsertSpatialSearchableRecord = z.infer; +export const SubmissionFeatureSearchKeyValues = z.object({ + search_id: z.number(), + submission_feature_id: z.number(), + feature_property_id: z.number(), + feature_property_name: z.string(), + value: z.union([z.string(), z.number(), shallowJsonSchema]) +}); + +export type SubmissionFeatureSearchKeyValues = z.infer; + +export const SubmissionFeatureCombinedSearchValues = z.object({ + search_string_id: z.number(), + submission_feature_id: z.number(), + feature_property_id: z.number(), + string_value: z.string(), + number_value: z.number(), + datetime_value: z.string(), + spatial_value: z.string() +}); + +export type SubmissionFeatureCombinedSearchValues = z.infer; + /** * A class for creating searchable records */ @@ -267,4 +291,153 @@ export class SearchIndexRepository extends BaseRepository { return response.rows; } + + /** + * Retrieves all search values, for all search types (string, number, datetime, spatial), for the given submission + * feature in one unified result set. + * + * @param {number} submissionFeatureId + * @return {*} {Promise} + * @memberof SearchIndexRepository + */ + async getCombinedSearchKeyValuesBySubmissionFeatureId( + submissionFeatureId: number + ): Promise { + const sqlStatement = SQL` + SELECT + search_string_id as search_id, + submission_feature_id, + feature_property_id, + value AS string_value, + null::numeric AS number_value, + null::timestamptz(6) AS datetime_value, + null::public.geometry AS spatial_value + FROM + search_string + WHERE + submission_feature_id = ${submissionFeatureId} + UNION ALL + SELECT + search_number_id as search_id, + submission_feature_id, + feature_property_id, + null AS string_value, + value AS number_value, + null::timestamptz(6) AS datetime_value, + null::public.geometry AS spatial_value + FROM + search_number + WHERE + submission_feature_id = ${submissionFeatureId} + UNION ALL + SELECT + search_datetime_id as search_id, + submission_feature_id, + feature_property_id, + null AS string_value, + null::numeric AS number_value, + value AS datetime_value, + null::public.geometry AS spatial_value + FROM + search_datetime + WHERE + submission_feature_id = ${submissionFeatureId} + UNION ALL + SELECT + search_spatial_id as search_id, + submission_feature_id, + feature_property_id, + null AS string_value, + null::numeric AS number_value, + null::timestamptz(6) AS datetime_value, + value AS spatial_value + FROM + search_spatial + WHERE + submission_feature_id = ${submissionFeatureId}; + `; + + const response = await this.connection.sql(sqlStatement, SubmissionFeatureCombinedSearchValues); + + return response.rows; + } + + /** + * Retrieves all search values, for all search types (string, number, datetime, spatial), for the given submission + * feature in one unified result set. + * + * @param {number} submissionFeatureId + * @return {*} {Promise} + * @memberof SearchIndexRepository + */ + async getSearchKeyValuesBySubmissionId(submissionId: number): Promise { + const sqlStatement = SQL` + with w_submission_features as ( + select submission_feature_id from submission_feature where submission_id = ${submissionId} + ) + SELECT + search_string.search_string_id as search_id, + search_string.submission_feature_id, + search_string.feature_property_id, + feature_property.name as feature_property_name, + search_string.value + FROM + w_submission_features + inner join + search_string + on w_submission_features.submission_feature_id = search_string.submission_feature_id + inner join + feature_property + on search_string.feature_property_id = feature_property.feature_property_id + UNION ALL + SELECT + search_number.search_number_id as search_id, + search_number.submission_feature_id, + search_number.feature_property_id, + feature_property.name as feature_property_name, + search_number.value::text + from + w_submission_features + inner join + search_number + on w_submission_features.submission_feature_id = search_number.submission_feature_id + inner join + feature_property + on search_number.feature_property_id = feature_property.feature_property_id + UNION ALL + SELECT + search_datetime.search_datetime_id as search_id, + search_datetime.submission_feature_id, + search_datetime.feature_property_id, + feature_property.name as feature_property_name, + search_datetime.value::text + from + w_submission_features + inner join + search_datetime + on w_submission_features.submission_feature_id = search_datetime.submission_feature_id + inner join + feature_property + on search_datetime.feature_property_id = feature_property.feature_property_id + UNION ALL + SELECT + search_spatial.search_spatial_id as search_id, + search_spatial.submission_feature_id, + search_spatial.feature_property_id, + feature_property.name as feature_property_name, + search_spatial.value::json::text + from + w_submission_features + inner join + search_spatial + on w_submission_features.submission_feature_id = search_spatial.submission_feature_id + inner join + feature_property + on search_spatial.feature_property_id = feature_property.feature_property_id; + `; + + const response = await this.connection.sql(sqlStatement, SubmissionFeatureSearchKeyValues); + + return response.rows; + } } diff --git a/api/src/repositories/submission-repository.test.ts b/api/src/repositories/submission-repository.test.ts index 7af17da37..9c9e0a777 100644 --- a/api/src/repositories/submission-repository.test.ts +++ b/api/src/repositories/submission-repository.test.ts @@ -12,8 +12,9 @@ import { ISourceTransformModel, ISpatialComponentCount, PatchSubmissionRecord, + SubmissionFeatureRecord, SubmissionRecord, - SubmissionRecordPublished, + SubmissionRecordPublishedForPublic, SubmissionRecordWithSecurity, SubmissionRepository, SUBMISSION_MESSAGE_TYPE, @@ -493,6 +494,8 @@ describe('SubmissionRepository', () => { '123-456-789', 'submission name', 'submission desc', + 'submission comment', + 3, 'source system' ); @@ -511,6 +514,8 @@ describe('SubmissionRepository', () => { '123-456-789', 'submission name', 'submission desc', + 'submission comment', + 3, 'source system' ); expect.fail(); @@ -894,9 +899,11 @@ describe('SubmissionRepository', () => { uuid: '123-456-789', security_review_timestamp: null, submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -909,9 +916,11 @@ describe('SubmissionRepository', () => { uuid: '789-456-123', security_review_timestamp: null, submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -945,9 +954,11 @@ describe('SubmissionRepository', () => { uuid: '123-456-789', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: null, create_date: '2023-12-12', create_user: 1, @@ -960,9 +971,11 @@ describe('SubmissionRepository', () => { uuid: '789-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: null, create_date: '2023-12-12', create_user: 1, @@ -996,9 +1009,11 @@ describe('SubmissionRepository', () => { uuid: '123-456-789', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -1011,9 +1026,11 @@ describe('SubmissionRepository', () => { uuid: '789-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -1044,30 +1061,34 @@ describe('SubmissionRepository', () => { { submission_id: 1, uuid: '123-456-789', - security: SECURITY_APPLIED_STATUS.SECURED, security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, update_date: null, update_user: null, - revision_count: 0 + revision_count: 0, + security: SECURITY_APPLIED_STATUS.SECURED }, { submission_id: 2, uuid: '789-456-123', - security: SECURITY_APPLIED_STATUS.PARTIALLY_SECURED, security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', publish_timestamp: '2023-12-12', + security: SECURITY_APPLIED_STATUS.PARTIALLY_SECURED, create_user: 1, update_date: '2023-12-12', @@ -1076,19 +1097,21 @@ describe('SubmissionRepository', () => { }, { submission_id: 3, - security: SECURITY_APPLIED_STATUS.UNSECURED, uuid: '999-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', create_date: '2023-12-12', publish_timestamp: '2023-12-12', create_user: 1, update_date: '2023-12-12', update_user: 1, - revision_count: 1 + revision_count: 1, + security: SECURITY_APPLIED_STATUS.UNSECURED } ]; @@ -1341,9 +1364,11 @@ describe('SubmissionRepository', () => { uuid: '123-456-789', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -1376,9 +1401,11 @@ describe('SubmissionRepository', () => { uuid: '123-456-789', security_review_timestamp: null, submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -1419,7 +1446,7 @@ describe('SubmissionRepository', () => { properties: {} }; try { - await submissionRepository.insertSubmissionFeatureRecord(1, 1, feature); + await submissionRepository.insertSubmissionFeatureRecord(1, 2, '321', 'type', feature); expect.fail(); } catch (actualError) { expect((actualError as ApiGeneralError).message).to.equal('Failed to insert submission feature record'); @@ -1443,7 +1470,7 @@ describe('SubmissionRepository', () => { properties: {} }; - const response = await submissionRepository.insertSubmissionFeatureRecord(1, 1, feature); + const response = await submissionRepository.insertSubmissionFeatureRecord(1, 2, '321', 'type', feature); expect(response).to.eql(mockResponse); }); @@ -1566,18 +1593,99 @@ describe('SubmissionRepository', () => { }); }); + describe('getSubmissionFeatureByUuid', () => { + afterEach(() => { + sinon.restore(); + }); + + it('should succeed with valid data', async () => { + const submissionFeatureRecord: SubmissionFeatureRecord = { + submission_feature_id: 2, + uuid: '234-456-234', + submission_id: 3, + feature_type_id: 1, + source_id: 'source-id', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2024-01-01', + record_end_date: null, + create_date: '2024-01-01', + create_user: 3, + update_date: null, + update_user: null, + revision_count: 0 + }; + + const mockQueryResponse = { rowCount: 1, rows: [submissionFeatureRecord] } as any as Promise>; + + const mockDBConnection = getMockDBConnection({ sql: () => mockQueryResponse }); + + const submissionUuid = '123-456-789'; + + const submissionRepository = new SubmissionRepository(mockDBConnection); + + const response = await submissionRepository.getSubmissionFeatureByUuid(submissionUuid); + + expect(response).to.eql(submissionFeatureRecord); + }); + }); + + describe('findSubmissionFeatures', () => { + afterEach(() => { + sinon.restore(); + }); + + it('should succeed with valid data', async () => { + const submissionFeatureRecords: SubmissionFeatureRecord[] = [ + { + submission_feature_id: 2, + uuid: '234-456-234', + submission_id: 3, + feature_type_id: 1, + source_id: 'source-id', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2024-01-01', + record_end_date: null, + create_date: '2024-01-01', + create_user: 3, + update_date: null, + update_user: null, + revision_count: 0 + } + ]; + + const mockQueryResponse = { rowCount: 1, rows: submissionFeatureRecords } as any as Promise>; + + const mockDBConnection = getMockDBConnection({ knex: () => mockQueryResponse }); + + const criteria = { + submissionId: 1, + systemUserId: 2, + featureTypeNames: ['dataset', 'artifact'] + }; + + const submissionRepository = new SubmissionRepository(mockDBConnection); + + const response = await submissionRepository.findSubmissionFeatures(criteria); + + expect(response).to.eql(submissionFeatureRecords); + }); + }); + describe('getPublishedSubmissions', () => { afterEach(() => { sinon.restore(); }); it('should succeed with valid data', async () => { - const mockResponse: SubmissionRecordPublished = { + const mockResponse: SubmissionRecordPublishedForPublic = { submission_id: 1, uuid: 'string', security_review_timestamp: null, publish_timestamp: 'string', submitted_timestamp: 'string', + system_user_id: 3, source_system: 'string', name: 'string', description: null, diff --git a/api/src/repositories/submission-repository.ts b/api/src/repositories/submission-repository.ts index 93fb4cd2f..0c1c4fd25 100644 --- a/api/src/repositories/submission-repository.ts +++ b/api/src/repositories/submission-repository.ts @@ -21,10 +21,10 @@ export interface IDatasetsForReview { } export interface ISubmissionFeature { - id: string; + id: string | null; type: string; - properties: object; - features: ISubmissionFeature[]; + properties: Record; + child_features: ISubmissionFeature[]; } export const DatasetMetadata = z.object({ @@ -73,8 +73,10 @@ export interface ISubmissionRecord { export const SubmissionFeatureRecord = z.object({ submission_feature_id: z.number(), + uuid: z.string(), submission_id: z.number(), feature_type_id: z.number(), + source_id: z.string().nullable(), data: z.record(z.any()), parent_submission_feature_id: z.number().nullable(), record_effective_date: z.string(), @@ -101,6 +103,7 @@ export const FeatureTypeRecord = z.object({ name: z.string(), display_name: z.string(), description: z.string(), + sort: z.number().nullable(), record_effective_date: z.string(), record_end_date: z.string().nullable(), create_date: z.string(), @@ -255,9 +258,11 @@ export const SubmissionRecord = z.object({ uuid: z.string(), security_review_timestamp: z.string().nullable(), submitted_timestamp: z.string(), + system_user_id: z.number(), source_system: z.string(), name: z.string(), description: z.string().nullable(), + comment: z.string().nullable(), publish_timestamp: z.string().nullable(), create_date: z.string(), create_user: z.number(), @@ -285,14 +290,16 @@ export type SubmissionRecordWithSecurityAndRootFeatureType = z.infer< typeof SubmissionRecordWithSecurityAndRootFeatureType >; -export const SubmissionRecordPublished = SubmissionRecord.extend({ +export const SubmissionRecordPublishedForPublic = SubmissionRecord.extend({ security: z.nativeEnum(SECURITY_APPLIED_STATUS), root_feature_type_id: z.number(), root_feature_type_name: z.string(), root_feature_type_display_name: z.string() +}).omit({ + comment: true // Should not be included in public (non-admin) response }); -export type SubmissionRecordPublished = z.infer; +export type SubmissionRecordPublishedForPublic = z.infer; export const SubmissionMessageRecord = z.object({ submission_message_id: z.number(), @@ -368,36 +375,44 @@ export class SubmissionRepository extends BaseRepository { * * @param {string} uuid * @param {string} name - * @param {string} description + * @param {string} description A description of the submission. Should not contain any sensitive information. + * @param {string} comment An internal comment/description of the submission for administrative purposes. May contain + * sensitive information. Should never be shared with the general public. * @param {string} userIdentifier - * @return {*} {Promise<{ submission_id: number }>} + * @return {*} {Promise} * @memberof SubmissionRepository */ async insertSubmissionRecordWithPotentialConflict( uuid: string, name: string, description: string, - userIdentifier: string - ): Promise<{ submission_id: number }> { + comment: string, + systemUserId: number, + systemUserIdentifier: string + ): Promise { const sqlStatement = SQL` INSERT INTO submission ( uuid, submitted_timestamp, name, description, + comment, + system_user_id, source_system ) VALUES ( ${uuid}, now(), ${name}, ${description}, - ${userIdentifier} + ${comment}, + ${systemUserId}, + ${systemUserIdentifier} ) RETURNING - submission_id; + *; `; - const response = await this.connection.sql<{ submission_id: number }>(sqlStatement); + const response = await this.connection.sql(sqlStatement, SubmissionRecord); if (response.rowCount !== 1) { throw new ApiExecuteSQLError('Failed to get or insert submission record', [ @@ -412,34 +427,42 @@ export class SubmissionRepository extends BaseRepository { /** * Insert a new submission feature record. * - * @param {number} submissionId - * @param {ISubmissionFeature} feature - * @param {number} featureTypeId - * @return {*} {Promise<{ submission_feature_id: number }>} + * @param {number} submissionId The ID of the submission. + * @param {(number | null)} parentSubmissionFeatureId The ID of the parent submission feature, or null. + * @param {(string | null)} featureSourceId The source ID of the feature, or null. + * @param {string} featureTypeName The name of the feature type. + * @param {ISubmissionFeature['properties']} featureProperties The properties of the submission feature. + * @return {*} {Promise<{ submission_feature_id: number }>} Returns a promise that resolves to an object with the submission feature ID. * @memberof SubmissionRepository */ async insertSubmissionFeatureRecord( submissionId: number, - featureTypeId: number, - feature: ISubmissionFeature['properties'] + parentSubmissionFeatureId: number | null, + featureSourceId: string | null, + featureTypeName: string, + featureProperties: ISubmissionFeature['properties'] ): Promise<{ submission_feature_id: number }> { const sqlStatement = SQL` INSERT INTO submission_feature ( submission_id, + parent_submission_feature_id, + source_id, feature_type_id, data, record_effective_date ) VALUES ( ${submissionId}, - ${featureTypeId}, - ${feature}, + ${parentSubmissionFeatureId}, + ${featureSourceId}, + (SELECT feature_type_id FROM feature_type WHERE name = ${featureTypeName}), + ${featureProperties}, now() ) RETURNING submission_feature_id; `; - const response = await this.connection.sql<{ submission_feature_id: number }>(sqlStatement); + const response = await this.connection.sql(sqlStatement, z.object({ submission_feature_id: z.number() })); if (response.rowCount !== 1) { throw new ApiExecuteSQLError('Failed to insert submission feature record', [ @@ -1186,118 +1209,206 @@ export class SubmissionRepository extends BaseRepository { } /** - * Get all submissions that are pending security review (are unreviewed). + * Get all submissions that have not completed security review. + * + * Note: Will only return the most recent unreviewed submission for each uuid, unless the most recent submission is + * already reviewed. * * @return {*} {Promise} * @memberof SubmissionRepository */ async getUnreviewedSubmissionsForAdmins(): Promise { const sqlStatement = SQL` - WITH w_unique_submissions as ( + WITH RankedRows AS ( SELECT - submission.*, - submission_feature.feature_type_id as root_feature_type_id, - feature_type.name as root_feature_type_name, - ${SECURITY_APPLIED_STATUS.PENDING} as security, - array_remove(array_agg(rl.region_name), NULL) as regions - FROM - submission - INNER JOIN - submission_feature - ON - submission.submission_id = submission_feature.submission_id - INNER JOIN - feature_type - ON - feature_type.feature_type_id = submission_feature.feature_type_id - LEFT JOIN - submission_regions sr - ON - sr.submission_id = submission.submission_id - LEFT JOIN - region_lookup rl - ON - rl.region_id = sr.region_id + t1.*, + ROW_NUMBER() OVER (PARTITION BY t1.uuid ORDER BY t1.submitted_timestamp DESC) AS rank + FROM submission t1 + ), + FilteredRows AS ( + SELECT + t2.* + FROM + RankedRows t2 WHERE - submission.security_review_timestamp IS NULL - AND - submission_feature.parent_submission_feature_id IS null - GROUP BY submission.submission_id, submission_feature.feature_type_id, feature_type.name - ORDER BY - submission.uuid, submission.submission_id desc + t2.security_review_timestamp IS NULL + AND + t2.rank = 1 ) SELECT - * + FilteredRows.submission_id, + FilteredRows.uuid, + FilteredRows.system_user_id, + FilteredRows.source_system, + FilteredRows.security_review_timestamp, + FilteredRows.publish_timestamp, + FilteredRows.submitted_timestamp, + FilteredRows.name, + FilteredRows.description, + FilteredRows.comment, + FilteredRows.record_end_date, + FilteredRows.create_date, + FilteredRows.create_user, + FilteredRows.update_date, + FilteredRows.update_user, + FilteredRows.revision_count, + submission_feature.feature_type_id AS root_feature_type_id, + feature_type.name AS root_feature_type_name, + ${SECURITY_APPLIED_STATUS.PENDING} AS security, + ARRAY_REMOVE(ARRAY_AGG(region_lookup.region_name), NULL) AS regions FROM - w_unique_submissions - ORDER BY submitted_timestamp DESC; + FilteredRows + INNER JOIN + submission_feature + ON + FilteredRows.submission_id = submission_feature.submission_id + INNER JOIN + feature_type + ON + feature_type.feature_type_id = submission_feature.feature_type_id + LEFT JOIN + submission_feature_security + ON + submission_feature.submission_feature_id = submission_feature_security.submission_feature_id + LEFT JOIN + submission_regions + ON + submission_regions.submission_id = FilteredRows.submission_id + LEFT JOIN + region_lookup + ON + region_lookup.region_id = submission_regions.region_id + WHERE + submission_feature.parent_submission_feature_id IS NULL + group by + FilteredRows.submission_id, + FilteredRows.uuid, + FilteredRows.system_user_id, + FilteredRows.source_system, + FilteredRows.security_review_timestamp, + FilteredRows.publish_timestamp, + FilteredRows.submitted_timestamp, + FilteredRows.name, + FilteredRows.description, + FilteredRows.comment, + FilteredRows.record_end_date, + FilteredRows.create_date, + FilteredRows.create_user, + FilteredRows.update_date, + FilteredRows.update_user, + FilteredRows.revision_count, + submission_feature.feature_type_id, + feature_type.name; `; const response = await this.connection.sql(sqlStatement, SubmissionRecordWithSecurityAndRootFeatureType); + return response.rows; } /** - * Get all submissions that have completed security review (are reviewed). + * Get all submissions that have completed security review but are not published. + * + * Note: Will only return the most recent reviewed submission for each uuid, unless the most recent submission is + * already published. * * @return {*} {Promise} * @memberof SubmissionRepository */ async getReviewedSubmissionsForAdmins(): Promise { const sqlStatement = SQL` - WITH w_unique_submissions as ( + WITH RankedRows AS ( SELECT - DISTINCT ON (submission.uuid) submission.*, - submission_feature.feature_type_id as root_feature_type_id, - feature_type.name as root_feature_type_name, - CASE - WHEN submission.security_review_timestamp is null THEN ${SECURITY_APPLIED_STATUS.PENDING} - WHEN COUNT(submission_feature_security.submission_feature_security_id) = 0 THEN ${SECURITY_APPLIED_STATUS.UNSECURED} - WHEN COUNT(submission_feature_security.submission_feature_security_id) = COUNT(submission_feature.submission_feature_id) THEN ${SECURITY_APPLIED_STATUS.SECURED} - ELSE ${SECURITY_APPLIED_STATUS.PARTIALLY_SECURED} - END as security, - array_remove(array_agg(rl.region_name), NULL) as regions - FROM - submission - INNER JOIN - submission_feature - ON - submission.submission_id = submission_feature.submission_id - INNER JOIN - feature_type - ON - feature_type.feature_type_id = submission_feature.feature_type_id - LEFT JOIN - submission_feature_security - ON - submission_feature.submission_feature_id = submission_feature_security.submission_feature_id - LEFT JOIN - submission_regions sr - ON - sr.submission_id = submission.submission_id - LEFT JOIN - region_lookup rl - ON - rl.region_id = sr.region_id + t1.*, + ROW_NUMBER() OVER (PARTITION BY t1.uuid ORDER BY t1.submitted_timestamp DESC) AS rank + FROM + submission t1 WHERE - submission.security_review_timestamp IS NOT NULL - AND - submission_feature.parent_submission_feature_id IS NULL + t1.security_review_timestamp IS NOT NULL + OR + t1.publish_timestamp IS NOT NULL + ), + FilteredRows AS ( + SELECT + t2.* + FROM + RankedRows t2 + WHERE + t2.security_review_timestamp IS NOT NULL AND - submission.publish_timestamp IS NULL - GROUP BY - submission.submission_id, - submission_feature.feature_type_id, - feature_type.name - ORDER BY - submission.uuid, submission.submission_id DESC + t2.publish_timestamp IS NULL + AND + t2.rank = 1 ) SELECT - * + FilteredRows.submission_id, + FilteredRows.uuid, + FilteredRows.system_user_id, + FilteredRows.source_system, + FilteredRows.security_review_timestamp, + FilteredRows.publish_timestamp, + FilteredRows.submitted_timestamp, + FilteredRows.name, + FilteredRows.description, + FilteredRows.comment, + FilteredRows.record_end_date, + FilteredRows.create_date, + FilteredRows.create_user, + FilteredRows.update_date, + FilteredRows.update_user, + FilteredRows.revision_count, + submission_feature.feature_type_id AS root_feature_type_id, + feature_type.name AS root_feature_type_name, + CASE + WHEN FilteredRows.security_review_timestamp is null THEN ${SECURITY_APPLIED_STATUS.PENDING} + WHEN COUNT(submission_feature_security.submission_feature_security_id) = 0 THEN ${SECURITY_APPLIED_STATUS.UNSECURED} + WHEN COUNT(submission_feature_security.submission_feature_security_id) = COUNT(submission_feature.submission_feature_id) THEN ${SECURITY_APPLIED_STATUS.SECURED} + ELSE ${SECURITY_APPLIED_STATUS.PARTIALLY_SECURED} + END AS security, + ARRAY_REMOVE(ARRAY_AGG(region_lookup.region_name), NULL) AS regions FROM - w_unique_submissions - ORDER BY - security_review_timestamp DESC; + FilteredRows + INNER JOIN + submission_feature + ON + FilteredRows.submission_id = submission_feature.submission_id + INNER JOIN + feature_type + ON + feature_type.feature_type_id = submission_feature.feature_type_id + LEFT JOIN + submission_feature_security + ON + submission_feature.submission_feature_id = submission_feature_security.submission_feature_id + LEFT JOIN + submission_regions + ON + submission_regions.submission_id = FilteredRows.submission_id + LEFT JOIN + region_lookup + ON + region_lookup.region_id = submission_regions.region_id + WHERE + submission_feature.parent_submission_feature_id IS NULL + group by + FilteredRows.submission_id, + FilteredRows.uuid, + FilteredRows.system_user_id, + FilteredRows.source_system, + FilteredRows.security_review_timestamp, + FilteredRows.publish_timestamp, + FilteredRows.submitted_timestamp, + FilteredRows.name, + FilteredRows.description, + FilteredRows.comment, + FilteredRows.record_end_date, + FilteredRows.create_date, + FilteredRows.create_user, + FilteredRows.update_date, + FilteredRows.update_user, + FilteredRows.revision_count, + submission_feature.feature_type_id, + feature_type.name; `; const response = await this.connection.sql(sqlStatement, SubmissionRecordWithSecurityAndRootFeatureType); @@ -1313,18 +1424,17 @@ export class SubmissionRepository extends BaseRepository { */ async getPublishedSubmissionsForAdmins(): Promise { const sqlStatement = SQL` - WITH w_unique_submissions as ( SELECT - DISTINCT ON (submission.uuid) submission.*, - submission_feature.feature_type_id as root_feature_type_id, - feature_type.name as root_feature_type_name, + submission.*, + submission_feature.feature_type_id AS root_feature_type_id, + feature_type.name AS root_feature_type_name, CASE - WHEN submission.security_review_timestamp is null THEN ${SECURITY_APPLIED_STATUS.PENDING} + WHEN submission.security_review_timestamp IS NULL THEN ${SECURITY_APPLIED_STATUS.PENDING} WHEN COUNT(submission_feature_security.submission_feature_security_id) = 0 THEN ${SECURITY_APPLIED_STATUS.UNSECURED} WHEN COUNT(submission_feature_security.submission_feature_security_id) = COUNT(submission_feature.submission_feature_id) THEN ${SECURITY_APPLIED_STATUS.SECURED} ELSE ${SECURITY_APPLIED_STATUS.PARTIALLY_SECURED} - END as security, - array_remove(array_agg(rl.region_name), NULL) as regions + END AS security, + ARRAY_REMOVE(ARRAY_AGG(region_lookup.region_name), NULL) AS regions FROM submission INNER JOIN @@ -1340,33 +1450,22 @@ export class SubmissionRepository extends BaseRepository { ON submission_feature.submission_feature_id = submission_feature_security.submission_feature_id LEFT JOIN - submission_regions sr + submission_regions ON - sr.submission_id = submission.submission_id + submission_regions.submission_id = submission.submission_id LEFT JOIN - region_lookup rl + region_lookup ON - rl.region_id = sr.region_id + region_lookup.region_id = submission_regions.region_id WHERE - submission.security_review_timestamp IS NOT NULL + submission.publish_timestamp IS NOT NULL AND submission_feature.parent_submission_feature_id IS NULL - AND - submission.publish_timestamp IS NOT NULL - GROUP BY + group by submission.submission_id, submission_feature.feature_type_id, - feature_type.name - ORDER BY - submission.uuid, submission.submission_id DESC - ) - SELECT - * - FROM - w_unique_submissions - ORDER BY - security_review_timestamp DESC; - `; + feature_type.name; + `; const response = await this.connection.sql(sqlStatement, SubmissionRecordWithSecurityAndRootFeatureType); @@ -1467,16 +1566,131 @@ export class SubmissionRepository extends BaseRepository { return response.rows[0]; } + /** + * Get a submission feature record by uuid. + * + * @param {string} submissionUuid + * @return {*} {Promise} + * @memberof SubmissionRepository + */ + async getSubmissionFeatureByUuid(submissionUuid: string): Promise { + const sqlStatement = SQL` + SELECT + * + FROM + submission_feature + WHERE + uuid = ${submissionUuid}; + `; + + const response = await this.connection.sql(sqlStatement, SubmissionFeatureRecord); + + if (response.rowCount !== 1) { + throw new ApiExecuteSQLError('Failed to get submission feature record', [ + 'SubmissionRepository->getSubmissionFeatureByUuid', + `rowCount was ${response.rowCount}, expected rowCount === 1` + ]); + } + + return response.rows[0]; + } + + /** + * Find and return all submission feature records that match the provided criteria. + * + * @param {{ + * submissionId?: number; + * systemUserId?: number; + * featureTypeNames?: string[]; + * }} [criteria] + * @return {*} {Promise} + * @memberof SubmissionRepository + */ + async findSubmissionFeatures(criteria?: { + submissionId?: number; + systemUserId?: number; + featureTypeNames?: string[]; + }): Promise { + const knex = getKnex(); + + const queryBuilder = knex.queryBuilder(); + + queryBuilder.select().from('submission_feature').where('record_end_date', null); + + if (criteria?.submissionId) { + // Filter by submitter system user id + queryBuilder.where('submission_id', criteria.submissionId); + } + + if (criteria?.systemUserId) { + // Filter by submitter system user id + queryBuilder.where('systemUserId', criteria.systemUserId); + } + + if (criteria?.featureTypeNames?.length) { + const featureTypeNames = criteria?.featureTypeNames; + // Filter by feature type names + queryBuilder.whereIn('feature_type_id', (qb) => { + qb.select('feature_type_id') + .from('feature_type') + .where( + knex.raw('LOWER(name)'), + 'IN', + featureTypeNames.map((featureTypeName) => featureTypeName.toLowerCase()) + ); + }); + } + + const response = await this.connection.knex(queryBuilder, SubmissionFeatureRecord); + + return response.rows; + } + /** * Get all published submissions. * - * @return {*} {Promise} + * Note: Will only return the most recent published submission for each uuid. + * + * @return {*} {Promise} * @memberof SubmissionRepository */ - async getPublishedSubmissions(): Promise { + async getPublishedSubmissions(): Promise { const sqlStatement = SQL` + WITH RankedRows AS ( + SELECT + t1.*, + ROW_NUMBER() OVER (PARTITION BY t1.uuid ORDER BY t1.publish_timestamp DESC) AS rank + FROM + submission t1 + WHERE + t1.security_review_timestamp IS NOT NULL + AND + t1.publish_timestamp IS NOT NULL + ), + FilteredRows as ( + SELECT + t2.* + FROM + RankedRows t2 + WHERE + t2.rank = 1 + ) SELECT - submission.*, + FilteredRows.submission_id, + FilteredRows.uuid, + FilteredRows.system_user_id, + FilteredRows.source_system, + FilteredRows.security_review_timestamp, + FilteredRows.publish_timestamp, + FilteredRows.submitted_timestamp, + FilteredRows.name, + FilteredRows.description, + FilteredRows.record_end_date, + FilteredRows.create_date, + FilteredRows.create_user, + FilteredRows.update_date, + FilteredRows.update_user, + FilteredRows.revision_count, feature_type.feature_type_id as root_feature_type_id, feature_type.name as root_feature_type_name, feature_type.display_name as root_feature_type_display_name, @@ -1486,11 +1700,11 @@ export class SubmissionRepository extends BaseRepository { ELSE ${SECURITY_APPLIED_STATUS.PARTIALLY_SECURED} END as security FROM - submission + FilteredRows INNER JOIN submission_feature ON - submission_feature.submission_id = submission.submission_id + submission_feature.submission_id = FilteredRows.submission_id LEFT JOIN submission_feature_security ON @@ -1502,19 +1716,33 @@ export class SubmissionRepository extends BaseRepository { WHERE submission_feature.parent_submission_feature_id IS NULL AND - submission.security_review_timestamp IS NOT NULL + FilteredRows.security_review_timestamp IS NOT NULL AND - submission.publish_timestamp IS NOT NULL + FilteredRows.publish_timestamp IS NOT NULL GROUP BY - submission.submission_id, + FilteredRows.submission_id, + FilteredRows.uuid, + FilteredRows.system_user_id, + FilteredRows.source_system, + FilteredRows.security_review_timestamp, + FilteredRows.publish_timestamp, + FilteredRows.submitted_timestamp, + FilteredRows.name, + FilteredRows.description, + FilteredRows.record_end_date, + FilteredRows.create_date, + FilteredRows.create_user, + FilteredRows.update_date, + FilteredRows.update_user, + FilteredRows.revision_count, feature_type.feature_type_id, feature_type.name, feature_type.display_name ORDER BY - submission.publish_timestamp ASC; + FilteredRows.publish_timestamp ASC; `; - const response = await this.connection.sql(sqlStatement, SubmissionRecordPublished); + const response = await this.connection.sql(sqlStatement, SubmissionRecordPublishedForPublic); return response.rows; } @@ -1606,6 +1834,10 @@ export class SubmissionRepository extends BaseRepository { ...updateOperations, publish_timestamp: knex.raw('CASE WHEN publish_timestamp IS NULL THEN NOW() ELSE publish_timestamp END') }; + + // Publishing this submission, first unpublish all submissions with the same uuid as the target submission. + // Why? Because we only want one published submission per uuid. + await this.unpublishAllSubmissionsBySubmissionId(submissionId); } else if (patch.published === false) { updateOperations = { ...updateOperations, @@ -1621,6 +1853,28 @@ export class SubmissionRepository extends BaseRepository { return response.rows[0]; } + /** + * Unpublish all submissions with the same uuid as the submission with the provided id. + * + * @param {number} submissionId + * @return {*} {Promise} + * @memberof SubmissionRepository + */ + async unpublishAllSubmissionsBySubmissionId(submissionId: number): Promise { + const sqlStatement = SQL` + UPDATE + submission + SET + publish_timestamp = null + WHERE + uuid = (SELECT uuid FROM submission WHERE submission_id = ${submissionId}); + `; + + await this.connection.sql(sqlStatement); + + return; + } + /** * Get the root submission feature record for a submission. * diff --git a/api/src/repositories/validation-repository.test.ts b/api/src/repositories/validation-repository.test.ts index 4a0f8aaf8..5b874dd53 100644 --- a/api/src/repositories/validation-repository.test.ts +++ b/api/src/repositories/validation-repository.test.ts @@ -26,11 +26,15 @@ describe('ValidationRepository', () => { const validationRepository = new ValidationRepository(mockDBConnection); + const featureType = 'type'; + try { - await validationRepository.getFeatureValidationProperties('type'); + await validationRepository.getFeatureValidationProperties(featureType); expect.fail(); } catch (actualError) { - expect((actualError as ApiGeneralError).message).to.equal('Failed to get dataset validation properties'); + expect((actualError as ApiGeneralError).message).to.equal( + `Failed to get validation properties for feature type: ${featureType}` + ); } }); diff --git a/api/src/repositories/validation-repository.ts b/api/src/repositories/validation-repository.ts index b5a3b632c..8461f8aaa 100644 --- a/api/src/repositories/validation-repository.ts +++ b/api/src/repositories/validation-repository.ts @@ -1,4 +1,5 @@ import SQL from 'sql-template-strings'; +import { z } from 'zod'; import { ApiExecuteSQLError } from '../errors/api-error'; import { BaseRepository } from './base-repository'; @@ -10,15 +11,18 @@ export interface IStyleModel { something: any; //TODO } -export interface IFeatureProperties { - name: string; - display_name: string; - description: string; - type: string; -} +export const FeatureProperties = z.object({ + name: z.string(), + display_name: z.string(), + description: z.string(), + type_name: z.string(), + required_value: z.boolean() +}); + +export type FeatureProperties = z.infer; /** - *THIS REPO IS ALL HARD CODED DO NOT USE + * A repository class for accessing validation data. * * @export * @class ValidationRepository @@ -26,37 +30,40 @@ export interface IFeatureProperties { */ export class ValidationRepository extends BaseRepository { /** - * Get Feature properties for given feature type + * Get feature properties for given feature type. * * @param {string} featureType - * @return {*} {Promise} + * @return {*} {Promise} * @memberof ValidationRepository */ - async getFeatureValidationProperties(featureType: string): Promise { + async getFeatureValidationProperties(featureType: string): Promise { const sqlStatement = SQL` SELECT - fp.name, - fp.display_name, - fp.description, - fpt.name as type + feature_property.name, + feature_property.display_name, + feature_property.description, + feature_property_type.name as type_name, + feature_type_property.required_value FROM - feature_type_property ftp - LEFT JOIN - feature_property fp + feature_type_property + INNER JOIN + feature_property ON - ftp.feature_property_id = fp.feature_property_id - LEFT JOIN - feature_property_type fpt + feature_type_property.feature_property_id = feature_property.feature_property_id + INNER JOIN + feature_property_type ON - fp.feature_property_type_id = fpt.feature_property_type_id + feature_property.feature_property_type_id = feature_property_type.feature_property_type_id WHERE - feature_type_id = (select feature_type_id from feature_type ft where ft.name = ${featureType}); + feature_type_id = (select feature_type_id from feature_type where name = ${featureType}) + AND + feature_property.calculated_value = false; `; - const response = await this.connection.sql(sqlStatement); + const response = await this.connection.sql(sqlStatement, FeatureProperties); if (response.rowCount === 0) { - throw new ApiExecuteSQLError('Failed to get dataset validation properties', [ + throw new ApiExecuteSQLError(`Failed to get validation properties for feature type: ${featureType}`, [ 'ValidationRepository->getFeatureValidationProperties', 'rowCount was null or undefined, expected rowCount != 0' ]); diff --git a/api/src/services/artifact-service.test.ts b/api/src/services/artifact-service.test.ts index 9cb2410b6..02408ce91 100644 --- a/api/src/services/artifact-service.test.ts +++ b/api/src/services/artifact-service.test.ts @@ -3,12 +3,14 @@ import chai, { expect } from 'chai'; import { describe } from 'mocha'; import sinon from 'sinon'; import sinonChai from 'sinon-chai'; -import { HTTPError } from '../errors/http-error'; -import { Artifact, ArtifactMetadata, ArtifactRepository } from '../repositories/artifact-repository'; +import { Artifact, ArtifactRepository } from '../repositories/artifact-repository'; +import { FeaturePropertyRecord, SearchIndexRepository } from '../repositories/search-index-respository'; import { SecurityRepository } from '../repositories/security-repository'; -import * as file_utils from '../utils/file-utils'; +import { SubmissionFeatureRecord } from '../repositories/submission-repository'; +import * as fileUtils from '../utils/file-utils'; import { getMockDBConnection } from '../__mocks__/db'; import { ArtifactService } from './artifact-service'; +import { CodeService } from './code-service'; import { SubmissionService } from './submission-service'; chai.use(sinonChai); @@ -60,6 +62,89 @@ describe('ArtifactService', () => { }); }); + describe('uploadSubmissionFeatureArtifact', () => { + it('should upload a file to S3 and return a submission feature record', async () => { + const mockDBConnection = getMockDBConnection(); + + const artifactService = new ArtifactService(mockDBConnection); + + const artifactSubmissionFeature: SubmissionFeatureRecord = { + submission_feature_id: 2, + uuid: '234-456-234', + submission_id: 3, + feature_type_id: 4, + source_id: 'source-id', + data: { + filename: 'test.txt' + }, + parent_submission_feature_id: 1, + record_effective_date: '2024-01-01', + record_end_date: null, + create_date: '2024-01-01', + create_user: 3, + update_date: null, + update_user: null, + revision_count: 0 + }; + + const getSubmissionFeatureByUuidStub = sinon + .stub(SubmissionService.prototype, 'getSubmissionFeatureByUuid') + .resolves(artifactSubmissionFeature); + + const insertSearchableStringRecordsStub = sinon + .stub(SearchIndexRepository.prototype, 'insertSearchableStringRecords') + .resolves(); + + const uploadFileToS3Stub = sinon.stub(fileUtils, 'uploadFileToS3').resolves(); + + const s3FeaturePropertyRecord: FeaturePropertyRecord = { + feature_property_id: 1, + feature_property_type_id: 1, + name: 'artifact_key', + display_name: 'S3 Key', + description: 'An S3 Key', + parent_feature_property_id: null, + calculated_value: false, + record_effective_date: '2024-01-01', + record_end_date: null, + create_date: '2024-01-01', + create_user: 3, + update_date: null, + update_user: null, + revision_count: 0 + }; + + const getFeaturePropertyByNameStub = sinon + .stub(CodeService.prototype, 'getFeaturePropertyByName') + .resolves(s3FeaturePropertyRecord); + + const artifactUploadKey = '234-456-234'; + const artifactFile = { + fieldname: 'media', + originalname: 'test.txt', + encoding: '7bit', + mimetype: 'text/plain', + size: 340 + } as Express.Multer.File; + + const response = await artifactService.uploadSubmissionFeatureArtifact(artifactUploadKey, artifactFile); + + expect(getSubmissionFeatureByUuidStub).to.have.been.calledOnceWith(artifactUploadKey); + expect(getFeaturePropertyByNameStub).to.have.been.calledOnceWith('artifact_key'); + expect(insertSearchableStringRecordsStub).to.have.been.calledOnceWith([ + { + submission_feature_id: artifactSubmissionFeature.submission_feature_id, + feature_property_id: s3FeaturePropertyRecord.feature_property_id, + value: sinon.match.string + } + ]); + expect(uploadFileToS3Stub).to.have.been.calledWithMatch(artifactFile, sinon.match.string, { + filename: artifactFile.originalname + }); + expect(response).to.eql(artifactSubmissionFeature); + }); + }); + describe('getArtifactsByDatasetId', () => { it('should return an array of artifacts', async () => { const mockDBConnection = getMockDBConnection(); @@ -76,98 +161,6 @@ describe('ArtifactService', () => { }); }); - describe('uploadAndPersistArtifact', () => { - const mockDataPackageId = '64f47e65-f306-410e-82fa-115f9916910b'; - const mockArtifactMetadata: ArtifactMetadata = { - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: 1 - }; - const mockFileUuid = 'aaa47e65-f306-410e-82fa-115f9916910b'; - const mockFile = { - originalname: `${mockFileUuid}.zip` - } as unknown as Express.Multer.File; - - it('should not insert a record if upload to S3 fails', async () => { - const mockDBConnection = getMockDBConnection({ systemUserId: () => 20 }); - const artifactService = new ArtifactService(mockDBConnection); - - // const transformRecordStub = sinon - // .stub(SubmissionService.prototype, 'getSourceTransformRecordBySystemUserId') - // .resolves({ source_transform_id: 60 } as unknown as ISourceTransformModel); - - // const getOrInsertSubmissionRecordStub = - sinon - .stub(SubmissionService.prototype, 'insertSubmissionRecordWithPotentialConflict') - .resolves({ submission_id: 100 }); - - // const getNextArtifactIdsStub = - sinon.stub(ArtifactService.prototype, 'getNextArtifactIds').resolves([14]); - - const insertRecordStub = sinon.stub(ArtifactService.prototype, 'insertArtifactRecord'); - - sinon.stub(file_utils, 'uploadFileToS3').rejects(new Error('Test upload failed')); - - try { - await artifactService.uploadAndPersistArtifact(mockDataPackageId, mockArtifactMetadata, mockFileUuid, mockFile); - expect.fail(); - } catch (actualError) { - // expect(transformRecordStub).to.be.calledWith(20); - expect((actualError as HTTPError).message).to.equal('Test upload failed'); - expect(insertRecordStub).to.not.be.called; - } - }); - - it('should return the artifact ID on success', async () => { - const mockDBConnection = getMockDBConnection({ systemUserId: () => 20 }); - const artifactService = new ArtifactService(mockDBConnection); - - // const transformRecordStub = sinon - // .stub(SubmissionService.prototype, 'getSourceTransformRecordBySystemUserId') - // .resolves({ source_transform_id: 60 } as unknown as ISourceTransformModel); - - const insertSubmissionRecordWithPotentialConflictStub = sinon - .stub(SubmissionService.prototype, 'insertSubmissionRecordWithPotentialConflict') - .resolves({ submission_id: 100 }); - - const getNextArtifactIdsStub = sinon.stub(ArtifactService.prototype, 'getNextArtifactIds').resolves([14]); - - const uploadStub = sinon.stub(file_utils, 'uploadFileToS3').resolves(); - - const insertRecordStub = sinon - .stub(ArtifactService.prototype, 'insertArtifactRecord') - .resolves({ artifact_id: 14 }); - - try { - await artifactService.uploadAndPersistArtifact(mockDataPackageId, mockArtifactMetadata, mockFileUuid, mockFile); - expect.fail(); - } catch (actualError) { - // expect(transformRecordStub).to.be.calledWith(20); - - expect(insertSubmissionRecordWithPotentialConflictStub).to.be.calledWith(mockDataPackageId); - expect(getNextArtifactIdsStub).to.be.calledWith(); - expect(uploadStub).to.be.calledWith( - mockFile, - `biohub/datasets/${mockDataPackageId}/artifacts/${14}/${mockFile.originalname}`, - { filename: mockFile.originalname } - ); - expect(insertRecordStub).to.be.calledWith({ - title: 'Title', - description: 'Description', - file_name: 'Filename.txt', - file_type: 'Other', - file_size: 1, - artifact_id: 14, - submission_id: 100, - key: `biohub/datasets/${mockDataPackageId}/artifacts/${14}/${mockFile.originalname}`, - uuid: mockFileUuid - }); - } - }); - }); - describe('getArtifactById', () => { it('should return a single artifact successfully', async () => { const mockDBConnection = getMockDBConnection(); diff --git a/api/src/services/artifact-service.ts b/api/src/services/artifact-service.ts index 2bb6e857e..2c9c17247 100644 --- a/api/src/services/artifact-service.ts +++ b/api/src/services/artifact-service.ts @@ -1,9 +1,12 @@ import { IDBConnection } from '../database/db'; import { ApiGeneralError } from '../errors/api-error'; -import { Artifact, ArtifactMetadata, ArtifactRepository } from '../repositories/artifact-repository'; +import { Artifact, ArtifactRepository } from '../repositories/artifact-repository'; +import { SearchIndexRepository } from '../repositories/search-index-respository'; import { SecurityRepository } from '../repositories/security-repository'; -import { deleteFileFromS3, generateArtifactS3FileKey, uploadFileToS3 } from '../utils/file-utils'; +import { SubmissionFeatureRecord } from '../repositories/submission-repository'; +import { deleteFileFromS3, generateSubmissionFeatureS3FileKey, uploadFileToS3 } from '../utils/file-utils'; import { getLogger } from '../utils/logger'; +import { CodeService } from './code-service'; import { DBService } from './db-service'; import { SubmissionService } from './submission-service'; @@ -49,59 +52,46 @@ export class ArtifactService extends DBService { } /** - * Generates an S3 key by the given data package UUID and artifact file, uploads the file to S3, and persists - * the artifact in the database. + * Generates an S3 key for the artifact, uploads the file to S3, and persists the artifact key in the database. * - * @param {string} dataPackageId The submission UUID - * @param {IArtifactMetadata} metadata Metadata object pertaining to the artifact - * @param {string} fileUuid The UUID of the artifact - * @param {Express.Multer.File} file The artifact file - * @returns {*} {Promise<{ artifact_id: number }>} The primary key of the artifact upon insertion + * @param {string} artifactUploadKey + * @param {Express.Multer.File} file + * @return {*} {Promise} * @memberof ArtifactService */ - async uploadAndPersistArtifact( - dataPackageId: string, - metadata: ArtifactMetadata, - fileUuid: string, + async uploadSubmissionFeatureArtifact( + artifactUploadKey: string, file: Express.Multer.File - ): Promise<{ artifact_id: number }> { - defaultLog.debug({ label: 'uploadAndPersistArtifact' }); - - // NOTE: Disabled for now, as we are not using the source transform record - // Fetch the source transform record for this submission based on the source system user id - // const sourceTransformRecord = await this.submissionService.getSourceTransformRecordBySystemUserId( - // this.connection.systemUserId() - // ); - - // Retrieve the next artifact primary key assigned to this artifact once it is inserted - const artifact_id = (await this.getNextArtifactIds())[0]; - - // Generate the S3 key for the artifact, using the preemptive artifact ID + the package UUID - const s3Key = generateArtifactS3FileKey({ - datasetUUID: dataPackageId, - artifactId: artifact_id, - fileName: file.originalname - }); + ): Promise { + const artifactFeatureSubmission = await this.submissionService.getSubmissionFeatureByUuid(artifactUploadKey); - // Create a new submission for the artifact collection - const { submission_id } = await this.submissionService.insertSubmissionRecordWithPotentialConflict( - dataPackageId, - 'TODO_Temp', - 'TODO_Temp', - 'TODO_Temp' - ); - - // Upload the artifact to S3 - await uploadFileToS3(file, s3Key, { filename: file.originalname }); - - // If the file was successfully uploaded, we persist the artifact in the database - return this.insertArtifactRecord({ - ...metadata, - artifact_id, - submission_id, - key: s3Key, - uuid: fileUuid + // Generate S3 key + const artifactS3Key = generateSubmissionFeatureS3FileKey({ + submissionId: artifactFeatureSubmission.submission_id, + submissionFeatureId: artifactFeatureSubmission.submission_feature_id }); + + defaultLog.debug({ label: 'uploadSubmissionFeatureArtifact', message: 'S3 key', artifactS3Key }); + + // TODO add api codes cache: so lookups like this are fast (especially since codes dont change often) + const codeService = new CodeService(this.connection); + const artifactFeatureProperties = await codeService.getFeaturePropertyByName('artifact_key'); + + const searchIndexRepository = new SearchIndexRepository(this.connection); + + // Insert S3 key in search string table + await searchIndexRepository.insertSearchableStringRecords([ + { + submission_feature_id: artifactFeatureSubmission.submission_feature_id, + feature_property_id: artifactFeatureProperties.feature_property_id, + value: artifactS3Key + } + ]); + + // Upload artifact to S3 + await uploadFileToS3(file, artifactS3Key, { filename: file.originalname }); + + return artifactFeatureSubmission; } /** diff --git a/api/src/services/code-service.test.ts b/api/src/services/code-service.test.ts index 57d1ad610..023e48d4f 100644 --- a/api/src/services/code-service.test.ts +++ b/api/src/services/code-service.test.ts @@ -2,7 +2,7 @@ import chai, { expect } from 'chai'; import { describe } from 'mocha'; import sinon from 'sinon'; import sinonChai from 'sinon-chai'; -import { CodeRepository, IAllCodeSets } from '../repositories/code-repository'; +import { CodeRepository, FeatureTypeWithFeaturePropertiesCode } from '../repositories/code-repository'; import { getMockDBConnection } from '../__mocks__/db'; import { CodeService } from './code-service'; @@ -16,49 +16,157 @@ describe('codeService', () => { it('should return id value', async () => { const dbConnectionObj = getMockDBConnection(); - const codeService = new CodeService(dbConnectionObj); - const data = { - feature_type: { id: 1, name: 'test' }, - feature_type_properties: [{ id: 1, name: 'test', display_name: 'display', type: 'type' }] - } as unknown as IAllCodeSets['feature_type_with_properties']; + const mockFeatureTypePropertyCodes: FeatureTypeWithFeaturePropertiesCode[] = [ + { + feature_type: { + feature_type_id: 1, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset' + }, + feature_type_properties: [ + { + feature_property_id: 1, + feature_property_name: 'name', + feature_property_display_name: 'Name', + feature_property_type_id: 1, + feature_property_type_name: 'string' + } + ] + } + ]; + + const getFeatureTypePropertiesStub = sinon + .stub(CodeService.prototype, 'getFeatureTypePropertyCodes') + .resolves(mockFeatureTypePropertyCodes); - const getFeatureTypePropertiesStub = sinon.stub(CodeService.prototype, 'getFeatureTypeProperties').resolves(data); + const codeService = new CodeService(dbConnectionObj); const result = await codeService.getAllCodeSets(); - expect(result).to.eql({ feature_type_with_properties: data }); expect(getFeatureTypePropertiesStub).to.have.been.calledOnce; + expect(result).to.eql({ feature_type_with_properties: mockFeatureTypePropertyCodes }); }); }); - describe('getFeatureTypeProperties', () => { + describe('getFeatureTypes', () => { afterEach(() => { sinon.restore(); }); - it('should return id value', async () => { + it('should return an array of feature types', async () => { const dbConnectionObj = getMockDBConnection(); - const codeService = new CodeService(dbConnectionObj); - const returnData = { - feature_type: { id: 1, name: 'test' }, - feature_type_properties: [{ id: 1, name: 'test', display_name: 'display', type: 'type' }] - } as unknown as IAllCodeSets['feature_type_with_properties']; + const mockFeatureTypeCode = { + feature_type_id: 1, + feature_type_name: 'test', + feature_type_display_name: 'Test' + }; const getFeatureTypesStub = sinon .stub(CodeRepository.prototype, 'getFeatureTypes') - .resolves([{ id: 1, name: 'test' }]); + .resolves([mockFeatureTypeCode]); + + const codeService = new CodeService(dbConnectionObj); + + const result = await codeService.getFeatureTypes(); + + expect(getFeatureTypesStub).to.have.been.called.calledOnce; + expect(result).to.eql([mockFeatureTypeCode]); + }); + }); + + describe('getFeatureTypePropertyCodes', () => { + afterEach(() => { + sinon.restore(); + }); + + it('should return id value', async () => { + const dbConnectionObj = getMockDBConnection(); + + const expectedResult: FeatureTypeWithFeaturePropertiesCode[] = [ + { + feature_type: { + feature_type_id: 1, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset' + }, + feature_type_properties: [ + { + feature_property_id: 1, + feature_property_name: 'name', + feature_property_display_name: 'Name', + feature_property_type_id: 1, + feature_property_type_name: 'string' + }, + { + feature_property_id: 2, + feature_property_name: 'age', + feature_property_display_name: 'Age', + feature_property_type_id: 2, + feature_property_type_name: 'number' + } + ] + }, + { + feature_type: { + feature_type_id: 2, + feature_type_name: 'artifact', + feature_type_display_name: 'Artifact' + }, + feature_type_properties: [ + { + feature_property_id: 3, + feature_property_name: 'filename', + feature_property_display_name: 'Filename', + feature_property_type_id: 1, + feature_property_type_name: 'string' + } + ] + } + ]; const getFeatureTypePropertiesStub = sinon - .stub(CodeRepository.prototype, 'getFeatureTypeProperties') - .resolves([{ id: 1, name: 'test', display_name: 'display', type: 'type' }]); + .stub(CodeRepository.prototype, 'getFeatureTypePropertyCodes') + .resolves([ + { + feature_type_id: 1, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', + feature_property_id: 1, + feature_property_name: 'name', + feature_property_display_name: 'Name', + feature_property_type_id: 1, + feature_property_type_name: 'string' + }, + { + feature_type_id: 1, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', + feature_property_id: 2, + feature_property_name: 'age', + feature_property_display_name: 'Age', + feature_property_type_id: 2, + feature_property_type_name: 'number' + }, + { + feature_type_id: 2, + feature_type_name: 'artifact', + feature_type_display_name: 'Artifact', + feature_property_id: 3, + feature_property_name: 'filename', + feature_property_display_name: 'Filename', + feature_property_type_id: 1, + feature_property_type_name: 'string' + } + ]); + + const codeService = new CodeService(dbConnectionObj); - const result = await codeService.getFeatureTypeProperties(); + const result = await codeService.getFeatureTypePropertyCodes(); - expect(result).to.eql([returnData]); expect(getFeatureTypePropertiesStub).to.have.been.calledOnce; - expect(getFeatureTypesStub).to.have.been.calledOnce; + expect(result).to.eql(expectedResult); }); }); }); diff --git a/api/src/services/code-service.ts b/api/src/services/code-service.ts index 28cd27850..b228e9b1c 100644 --- a/api/src/services/code-service.ts +++ b/api/src/services/code-service.ts @@ -1,5 +1,11 @@ import { IDBConnection } from '../database/db'; -import { CodeRepository, IAllCodeSets } from '../repositories/code-repository'; +import { + CodeRepository, + FeatureTypeCode, + FeatureTypeWithFeaturePropertiesCode, + IAllCodeSets +} from '../repositories/code-repository'; +import { FeaturePropertyRecord } from '../repositories/search-index-respository'; import { getLogger } from '../utils/logger'; import { DBService } from './db-service'; @@ -13,6 +19,7 @@ export class CodeService extends DBService { this.codeRepository = new CodeRepository(connection); } + /** * Function that fetches all code sets. * @@ -22,7 +29,7 @@ export class CodeService extends DBService { async getAllCodeSets(): Promise { defaultLog.debug({ message: 'getAllCodeSets' }); - const [feature_type_with_properties] = await Promise.all([await this.getFeatureTypeProperties()]); + const [feature_type_with_properties] = await Promise.all([await this.getFeatureTypePropertyCodes()]); return { feature_type_with_properties @@ -30,27 +37,69 @@ export class CodeService extends DBService { } /** - * Function that fetches all feature type properties. + * Get all feature types. + * + * @return {*} {Promise} + * @memberof CodeService + */ + async getFeatureTypes(): Promise { + return this.codeRepository.getFeatureTypes(); + } + + /** + * Get all feature properties grouped by feature type. * - * @return {*} {Promise} + * @return {*} {Promise} * @memberof CodeService */ - async getFeatureTypeProperties(): Promise { - defaultLog.debug({ message: 'getFeatureTypes' }); + async getFeatureTypePropertyCodes(): Promise { + defaultLog.debug({ message: 'getFeatureTypePropertyCodes' }); + + const featureTypePropertyCodes = await this.codeRepository.getFeatureTypePropertyCodes(); - const feature_types = await this.codeRepository.getFeatureTypes(); + const groupedFeatureTypePropertyCodes: FeatureTypeWithFeaturePropertiesCode[] = []; - const feature_type_with_properties = await Promise.all( - feature_types.map(async (feature_type) => { - const feature_type_properties = await this.codeRepository.getFeatureTypeProperties(feature_type.id); + // Iterate over the raw array of feature type property codes and group them by feature type + for (const featureTypePropertyCode of featureTypePropertyCodes) { + const index = groupedFeatureTypePropertyCodes.findIndex( + (item) => item.feature_type.feature_type_id === featureTypePropertyCode.feature_type_id + ); - return { - feature_type, - feature_type_properties - }; - }) - ); + const feature_type_properties = { + feature_property_id: featureTypePropertyCode.feature_property_id, + feature_property_name: featureTypePropertyCode.feature_property_name, + feature_property_display_name: featureTypePropertyCode.feature_property_display_name, + feature_property_type_id: featureTypePropertyCode.feature_property_type_id, + feature_property_type_name: featureTypePropertyCode.feature_property_type_name + }; + + if (index >= 0) { + groupedFeatureTypePropertyCodes[index].feature_type_properties.push(feature_type_properties); + } else { + groupedFeatureTypePropertyCodes.push({ + feature_type: { + feature_type_id: featureTypePropertyCode.feature_type_id, + feature_type_name: featureTypePropertyCode.feature_type_name, + feature_type_display_name: featureTypePropertyCode.feature_type_display_name + }, + feature_type_properties: [feature_type_properties] + }); + } + } + + return groupedFeatureTypePropertyCodes; + } + + /** + * Get a feature property record by name. + * + * @param {string} featurePropertyName + * @return {*} {Promise} + * @memberof CodeService + */ + async getFeaturePropertyByName(featurePropertyName: string): Promise { + defaultLog.debug({ message: 'getFeaturePropertyByName' }); - return feature_type_with_properties; + return this.codeRepository.getFeaturePropertyByName(featurePropertyName); } } diff --git a/api/src/services/search-index-service.test.ts b/api/src/services/search-index-service.test.ts index 7287209c7..e75fda040 100644 --- a/api/src/services/search-index-service.test.ts +++ b/api/src/services/search-index-service.test.ts @@ -5,6 +5,7 @@ import sinonChai from 'sinon-chai'; import { SearchIndexRepository } from '../repositories/search-index-respository'; import { SubmissionRepository } from '../repositories/submission-repository'; import { getMockDBConnection } from '../__mocks__/db'; +import { CodeService } from './code-service'; import { SearchIndexService } from './search-index-service'; chai.use(sinonChai); @@ -25,60 +26,183 @@ describe('SearchIndexService', () => { .resolves([ { submission_feature_id: 11111, - submission_id: 1, // Mock submission - feature_type_id: 1, // dataset, observation, etc. + submission_id: 777, + feature_type_id: 1, data: { - name: 'Ardvark', - description: 'Desc1', - taxonomy: 1001, - start_date: new Date('2000-01-01'), - end_date: new Date('2000-01-02'), - geometry: { type: 'Point', coordinates: [11, 11] }, - count: 60, - latitude: 11, - longitude: 11 + name: 'Dataset1', + description: 'Desc1' }, + source_id: '123', + uuid: '123-456-789', parent_submission_feature_id: null, - record_effective_date: '', + record_effective_date: '2024-01-01', record_end_date: null, - create_date: '', + create_date: '2024-01-01', create_user: 1, update_date: null, update_user: null, - revision_count: 1, - feature_type_name: '', - feature_type_display_name: '', + revision_count: 0, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', submission_feature_security_ids: [] }, { submission_feature_id: 22222, - submission_id: 1, // Mock submission - feature_type_id: 1, // dataset, observation, etc. + submission_id: 777, + feature_type_id: 2, data: { - name: 'Buffalo', - description: 'Desc2', - taxonomy: 1002, + count: 70, start_date: new Date('2001-01-01'), end_date: null, - geometry: { type: 'Point', coordinates: [22, 22] }, - count: 70, - latitude: 22, - longitude: 22 + latitude: 49, + longitude: -127, + geometry: { type: 'Point', coordinates: [-127, 49] } }, - parent_submission_feature_id: null, - record_effective_date: '', + source_id: '456', + uuid: '234-456-678', + parent_submission_feature_id: 11111, + record_effective_date: '2024-01-01', record_end_date: null, - create_date: '', + create_date: '2024-01-01', create_user: 1, update_date: null, update_user: null, - revision_count: 1, - feature_type_name: '', - feature_type_display_name: '', + revision_count: 0, + feature_type_name: 'observation', + feature_type_display_name: 'Observation', + submission_feature_security_ids: [] + }, + { + submission_feature_id: 33333, + submission_id: 777, + feature_type_id: 3, + data: { + filename: 'myText.txt', + description: 'Desc2' + }, + source_id: '789', + uuid: '456-567-567', + parent_submission_feature_id: 11111, + record_effective_date: '2024-01-01', + record_end_date: null, + create_date: '2024-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'artifact', + feature_type_display_name: 'Artifact', submission_feature_security_ids: [] } ]); + sinon.stub(CodeService.prototype, 'getFeatureTypePropertyCodes').resolves([ + { + feature_type: { + feature_type_id: 1, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset' + }, + feature_type_properties: [ + { + feature_property_id: 1, + feature_property_name: 'name', + feature_property_display_name: 'Name', + feature_property_type_id: 1, + feature_property_type_name: 'string' + }, + { + feature_property_id: 2, + feature_property_name: 'description', + feature_property_display_name: 'Description', + feature_property_type_id: 1, + feature_property_type_name: 'string' + } + ] + }, + { + feature_type: { + feature_type_id: 2, + feature_type_name: 'observation', + feature_type_display_name: 'Observation' + }, + feature_type_properties: [ + { + feature_property_id: 3, + feature_property_name: 'count', + feature_property_display_name: 'Count', + feature_property_type_id: 2, + feature_property_type_name: 'number' + }, + { + feature_property_id: 4, + feature_property_name: 'date_range', + feature_property_display_name: 'Date Range', + feature_property_type_id: 3, + feature_property_type_name: 'object' + }, + { + feature_property_id: 5, + feature_property_name: 'start_date', + feature_property_display_name: 'Start Date', + feature_property_type_id: 4, + feature_property_type_name: 'datetime' + }, + { + feature_property_id: 6, + feature_property_name: 'end_date', + feature_property_display_name: 'End Date', + feature_property_type_id: 4, + feature_property_type_name: 'datetime' + }, + { + feature_property_id: 7, + feature_property_name: 'latitude', + feature_property_display_name: 'Latitude', + feature_property_type_id: 2, + feature_property_type_name: 'number' + }, + { + feature_property_id: 8, + feature_property_name: 'longitude', + feature_property_display_name: 'Longitude', + feature_property_type_id: 2, + feature_property_type_name: 'number' + }, + { + feature_property_id: 9, + feature_property_name: 'geometry', + feature_property_display_name: 'Geometry', + feature_property_type_id: 5, + feature_property_type_name: 'spatial' + } + ] + }, + { + feature_type: { + feature_type_id: 3, + feature_type_name: 'artifact', + feature_type_display_name: 'Artifact' + }, + feature_type_properties: [ + { + feature_property_id: 10, + feature_property_name: 'filename', + feature_property_display_name: 'Filename', + feature_property_type_id: 1, + feature_property_type_name: 'string' + }, + { + feature_property_id: 2, + feature_property_name: 'description', + feature_property_display_name: 'Description', + feature_property_type_id: 1, + feature_property_type_name: 'string' + } + ] + } + ]); + const insertSearchableStringStub = sinon.stub(SearchIndexRepository.prototype, 'insertSearchableStringRecords'); const insertSearchableDatetimeStub = sinon.stub( @@ -90,285 +214,66 @@ describe('SearchIndexService', () => { const insertSearchableNumberStub = sinon.stub(SearchIndexRepository.prototype, 'insertSearchableNumberRecords'); - sinon.stub(SearchIndexRepository.prototype, 'getFeaturePropertiesWithTypeNames').resolves([ - { - feature_property_type_name: 'number', - feature_property_id: 8, - feature_property_type_id: 2, - name: 'count', - display_name: 'Count', - description: 'The count of the record', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'object', - feature_property_id: 4, - feature_property_type_id: 6, - name: 'date_range', - display_name: 'Date Range', - description: 'A date range', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'string', - feature_property_id: 2, - feature_property_type_id: 1, - name: 'description', - display_name: 'Description', - description: 'The description of the record', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'datetime', - feature_property_id: 6, - feature_property_type_id: 3, - name: 'end_date', - display_name: 'End Date', - description: 'The end date of the record', - parent_feature_property_id: 4, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'spatial', - feature_property_id: 7, - feature_property_type_id: 4, - name: 'geometry', - display_name: 'Geometry', - description: 'The location of the record', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'number', - feature_property_id: 9, - feature_property_type_id: 2, - name: 'latitude', - display_name: 'Latitude', - description: 'The latitude of the record', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'number', - feature_property_id: 10, - feature_property_type_id: 2, - name: 'longitude', - display_name: 'Longitude', - description: 'The longitude of the record', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'string', - feature_property_id: 1, - feature_property_type_id: 1, - name: 'name', - display_name: 'Name', - description: 'The name of the record', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'string', - feature_property_id: 21, - feature_property_type_id: 1, - name: 's3_key', - display_name: 'Key', - description: 'The S3 storage key for an artifact', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 15:40:29.486362-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'datetime', - feature_property_id: 5, - feature_property_type_id: 3, - name: 'start_date', - display_name: 'Start Date', - description: 'The start date of the record', - parent_feature_property_id: 4, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - }, - { - feature_property_type_name: 'number', - feature_property_id: 3, - feature_property_type_id: 2, - name: 'taxonomy', - display_name: 'Taxonomy Id', - description: 'The taxonomy Id associated to the record', - parent_feature_property_id: null, - record_effective_date: '2023-12-08', - record_end_date: null, - create_date: '2023-12-08 14:37:41.315999-08', - create_user: 1, - update_date: null, - update_user: null, - revision_count: 0 - } - ]); - // Act await searchIndexService.indexFeaturesBySubmissionId(777); // Assert - expect(getSubmissionFeaturesStub).to.be.calledWith(777); + expect(getSubmissionFeaturesStub).to.be.calledOnceWith(777); - expect(insertSearchableStringStub).to.be.calledWith([ + expect(insertSearchableStringStub).to.be.calledOnceWith([ { submission_feature_id: 11111, - feature_property_id: 1, // Name - value: 'Ardvark' + feature_property_id: 1, + value: 'Dataset1' }, { submission_feature_id: 11111, - feature_property_id: 2, // Description + feature_property_id: 2, value: 'Desc1' }, { - submission_feature_id: 22222, - feature_property_id: 1, // Name - value: 'Buffalo' + submission_feature_id: 33333, + feature_property_id: 10, + value: 'myText.txt' }, { - submission_feature_id: 22222, - feature_property_id: 2, // Description + submission_feature_id: 33333, + feature_property_id: 2, value: 'Desc2' } ]); - expect(insertSearchableDatetimeStub).to.be.calledWith([ - { - submission_feature_id: 11111, - feature_property_id: 5, // Start Date - value: new Date('2000-01-01') - }, - { - submission_feature_id: 11111, - feature_property_id: 6, // End Date - value: new Date('2000-01-02') - }, + expect(insertSearchableDatetimeStub).to.be.calledOnceWith([ { submission_feature_id: 22222, - feature_property_id: 5, // Start Date + feature_property_id: 5, value: new Date('2001-01-01') } ]); - expect(insertSearchableSpatialStub).to.be.calledWith([ - { - submission_feature_id: 11111, - feature_property_id: 7, // Spatial - value: { type: 'Point', coordinates: [11, 11] } - }, + expect(insertSearchableSpatialStub).to.be.calledOnceWith([ { submission_feature_id: 22222, - feature_property_id: 7, // Spatial - value: { type: 'Point', coordinates: [22, 22] } + feature_property_id: 9, + value: { type: 'Point', coordinates: [-127, 49] } } ]); - expect(insertSearchableNumberStub).to.be.calledWith([ - { - submission_feature_id: 11111, - feature_property_id: 3, // Taxonomy - value: 1001 - }, - { - submission_feature_id: 11111, - feature_property_id: 8, // Count - value: 60 - }, - { - submission_feature_id: 11111, - feature_property_id: 9, // Lat - value: 11 - }, - { - submission_feature_id: 11111, - feature_property_id: 10, // Long - value: 11 - }, + expect(insertSearchableNumberStub).to.be.calledOnceWith([ { submission_feature_id: 22222, - feature_property_id: 3, // Taxonomy - value: 1002 - }, - { - submission_feature_id: 22222, - feature_property_id: 8, // Count + feature_property_id: 3, value: 70 }, { submission_feature_id: 22222, - feature_property_id: 9, // Lat - value: 22 + feature_property_id: 7, + value: 49 }, { submission_feature_id: 22222, - feature_property_id: 10, // Long - value: 22 + feature_property_id: 8, + value: -127 } ]); }); diff --git a/api/src/services/search-index-service.ts b/api/src/services/search-index-service.ts index 3e4e02a4c..d9b3fd506 100644 --- a/api/src/services/search-index-service.ts +++ b/api/src/services/search-index-service.ts @@ -1,15 +1,17 @@ import { FeatureCollection } from 'geojson'; import { IDBConnection } from '../database/db'; import { - FeaturePropertyRecordWithPropertyTypeName, InsertDatetimeSearchableRecord, InsertNumberSearchableRecord, InsertSpatialSearchableRecord, InsertStringSearchableRecord, - SearchIndexRepository + SearchIndexRepository, + SubmissionFeatureCombinedSearchValues, + SubmissionFeatureSearchKeyValues } from '../repositories/search-index-respository'; import { SubmissionRepository } from '../repositories/submission-repository'; import { getLogger } from '../utils/logger'; +import { CodeService } from './code-service'; import { DBService } from './db-service'; const defaultLog = getLogger('services/search-index-service'); @@ -32,7 +34,7 @@ export class SearchIndexService extends DBService { * @memberof SearchIndexService */ async indexFeaturesBySubmissionId(submissionId: number): Promise { - defaultLog.debug({ label: 'indexFeaturesBySubmissionId' }); + defaultLog.debug({ label: 'indexFeaturesBySubmissionId', message: 'start', submissionId }); const datetimeRecords: InsertDatetimeSearchableRecord[] = []; const numberRecords: InsertNumberSearchableRecord[] = []; @@ -40,54 +42,81 @@ export class SearchIndexService extends DBService { const stringRecords: InsertStringSearchableRecord[] = []; const submissionRepository = new SubmissionRepository(this.connection); - const features = await submissionRepository.getSubmissionFeaturesBySubmissionId(submissionId); - - const featurePropertyTypeNames: FeaturePropertyRecordWithPropertyTypeName[] = - await this.searchIndexRepository.getFeaturePropertiesWithTypeNames(); - const featurePropertyTypeMap: Record = Object.fromEntries( - featurePropertyTypeNames.map((propertyType) => { - const { name } = propertyType; - return [name, propertyType]; - }) - ); - - features.forEach((feature) => { - const { submission_feature_id } = feature; - Object.entries(feature.data).forEach(([feature_property_name, value]) => { - const featureProperty = featurePropertyTypeMap[feature_property_name]; - if (!featureProperty) { - return; + const allFeatures = await submissionRepository.getSubmissionFeaturesBySubmissionId(submissionId); + + const codeService = new CodeService(this.connection); + const allFeatureTypePropertyCodes = await codeService.getFeatureTypePropertyCodes(); + + for (const currentFeature of allFeatures) { + // All properties of the current feature + const currentFeatureProperties = Object.entries(currentFeature.data); + + // The property codes for the current feature's type + const applicableFeatureTypePropertyCodes = allFeatureTypePropertyCodes.find( + (item) => item.feature_type.feature_type_id === currentFeature.feature_type_id + ); + + if (!applicableFeatureTypePropertyCodes) { + // No matching property codes found, nothing to index for the current feature + continue; + } + + // For each property of the current feature + for (const [currentFeaturePropertyName, currentFeaturePropertyValue] of currentFeatureProperties) { + const matchingFeatureProperty = applicableFeatureTypePropertyCodes.feature_type_properties.find( + (item) => item.feature_property_name === currentFeaturePropertyName + ); + + if (!matchingFeatureProperty) { + // No matching property code found + continue; } - const { feature_property_type_name, feature_property_id } = featureProperty; - - switch (feature_property_type_name) { + // Matching property code found, add query data to matching array + switch (matchingFeatureProperty.feature_property_type_name) { case 'datetime': - if (!value) { + if (!currentFeaturePropertyValue) { // Datetime value is null or undefined, since the submission system accepts null dates (e.g. `{ end_date: null }`) - return; + break; } - datetimeRecords.push({ submission_feature_id, feature_property_id, value: value as string }); + datetimeRecords.push({ + submission_feature_id: currentFeature.submission_feature_id, + feature_property_id: matchingFeatureProperty.feature_property_id, + value: currentFeaturePropertyValue as string + }); break; case 'number': - numberRecords.push({ submission_feature_id, feature_property_id, value: value as number }); + numberRecords.push({ + submission_feature_id: currentFeature.submission_feature_id, + feature_property_id: matchingFeatureProperty.feature_property_id, + value: currentFeaturePropertyValue as number + }); break; case 'spatial': - spatialRecords.push({ submission_feature_id, feature_property_id, value: value as FeatureCollection }); + spatialRecords.push({ + submission_feature_id: currentFeature.submission_feature_id, + feature_property_id: matchingFeatureProperty.feature_property_id, + value: currentFeaturePropertyValue as FeatureCollection + }); break; case 'string': - stringRecords.push({ submission_feature_id, feature_property_id, value: value as string }); + stringRecords.push({ + submission_feature_id: currentFeature.submission_feature_id, + feature_property_id: matchingFeatureProperty.feature_property_id, + value: currentFeaturePropertyValue as string + }); break; } - }); - }); + } + } const promises: Promise[] = []; + // Execute insert queries for all non-empty search index arrays if (datetimeRecords.length) { promises.push(this.searchIndexRepository.insertSearchableDatetimeRecords(datetimeRecords)); } @@ -103,4 +132,30 @@ export class SearchIndexService extends DBService { await Promise.all(promises); } + + /** + * Retrieves all search values, for all search types (string, number, datetime, spatial), for the given submission + * feature in one unified result set. + * + * @param {number} submissionFeatureId + * @return {*} {Promise} + * @memberof SearchIndexService + */ + async getCombinedSearchKeyValuesBySubmissionFeatureId( + submissionFeatureId: number + ): Promise { + return this.searchIndexRepository.getCombinedSearchKeyValuesBySubmissionFeatureId(submissionFeatureId); + } + + /** + * Retrieves all search values, for all search types (string, number, datetime, spatial), for all submission feature + * belonging to the given submission. + * + * @param {number} submissionId + * @return {*} {Promise} + * @memberof SearchIndexService + */ + async getSearchKeyValuesBySubmissionId(submissionId: number): Promise { + return this.searchIndexRepository.getSearchKeyValuesBySubmissionId(submissionId); + } } diff --git a/api/src/services/submission-service.test.ts b/api/src/services/submission-service.test.ts index 8e4d28682..f6f78d4b9 100644 --- a/api/src/services/submission-service.test.ts +++ b/api/src/services/submission-service.test.ts @@ -5,18 +5,23 @@ import { QueryResult } from 'pg'; import sinon from 'sinon'; import sinonChai from 'sinon-chai'; import { ApiExecuteSQLError, ApiGeneralError } from '../errors/api-error'; +import { SubmissionFeatureSearchKeyValues } from '../repositories/search-index-respository'; import { SECURITY_APPLIED_STATUS } from '../repositories/security-repository'; import { ISourceTransformModel, + ISubmissionFeature, ISubmissionJobQueueRecord, ISubmissionMetadataRecord, ISubmissionModel, ISubmissionObservationRecord, PatchSubmissionRecord, SubmissionFeatureDownloadRecord, + SubmissionFeatureRecord, + SubmissionFeatureRecordWithTypeAndSecurity, SubmissionFeatureSignedUrlPayload, SubmissionRecord, - SubmissionRecordPublished, + SubmissionRecordPublishedForPublic, + SubmissionRecordWithSecurity, SubmissionRecordWithSecurityAndRootFeatureType, SubmissionRepository, SUBMISSION_MESSAGE_TYPE, @@ -26,6 +31,7 @@ import { SystemUserExtended } from '../repositories/user-repository'; import * as fileUtils from '../utils/file-utils'; import { EMLFile } from '../utils/media/eml/eml-file'; import { getMockDBConnection } from '../__mocks__/db'; +import { SearchIndexService } from './search-index-service'; import { SubmissionService } from './submission-service'; import { UserService } from './user-service'; @@ -55,47 +61,237 @@ describe('SubmissionService', () => { const mockDBConnection = getMockDBConnection(); const submissionService = new SubmissionService(mockDBConnection); + const mockSubmissionRecord: SubmissionRecord = { + submission_id: 1, + uuid: '123-456-789', + security_review_timestamp: '2023-12-12', + submitted_timestamp: '2023-12-12', + system_user_id: 3, + source_system: 'SIMS', + name: 'name', + description: 'description', + comment: 'comment', + publish_timestamp: '2023-12-12', + create_date: '2023-12-12', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0 + }; + const repo = sinon .stub(SubmissionRepository.prototype, 'insertSubmissionRecordWithPotentialConflict') - .resolves({ submission_id: 1 }); + .resolves(mockSubmissionRecord); const response = await submissionService.insertSubmissionRecordWithPotentialConflict( '123-456-789', 'submission name', 'submission desc', + 'submission comment', + 3, 'source system' ); expect(repo).to.be.calledOnce; - expect(response).to.be.eql({ submission_id: 1 }); + expect(response).to.be.eql(mockSubmissionRecord); }); }); describe('insertSubmissionFeatureRecords', () => { - it('should return submission_id on insert', async () => { + it('inserts submission feature records', async () => { const mockDBConnection = getMockDBConnection(); - const submissionService = new SubmissionService(mockDBConnection); - const getFeatureTypeIdByNameStub = sinon - .stub(SubmissionRepository.prototype, 'getFeatureTypeIdByName') - .resolves({ feature_type_id: 1 }); + const submissionId = 1; + const parentSubmissionFeatureId = 2; - const repo = sinon + const insertSubmissionFeatureRecordStub = sinon .stub(SubmissionRepository.prototype, 'insertSubmissionFeatureRecord') - .resolves({ submission_feature_id: 1 }); + .resolves({ submission_feature_id: parentSubmissionFeatureId }); - const response = await submissionService.insertSubmissionFeatureRecords(1, [ + const submissionFeatures: ISubmissionFeature[] = [ { - id: '1', - type: 'string', - properties: {}, - features: [] + id: '1-1', + type: 'dataset', + properties: { + name: 'Dataset1' + }, + child_features: [ + { + id: '2-1', + type: 'sample_site', + properties: { + name: 'SampleSite1' + }, + child_features: [ + { + id: '3-1', + type: 'observation', + properties: { + count: 11, + geometry: { + type: 'Feature', + properties: {}, + geometry: { + coordinates: [-125.81103991280563, 49.82351418845636], + type: 'Point' + } + } + }, + child_features: [] + }, + { + id: '3-2', + type: 'observation', + properties: { + count: 12 + }, + child_features: [] + } + ] + }, + { + id: '2-2', + type: 'sample_site', + properties: { + name: 'SampleSite2', + dateRange: { + start_date: '2024-01-01', + end_date: '2024-02-01' + } + }, + child_features: [ + { + id: '3-3', + type: 'observation', + properties: { + count: 13 + }, + child_features: [] + }, + { + id: '3-4', + type: 'observation', + properties: { + count: 14 + }, + child_features: [] + } + ] + }, + { + id: '2-3', + type: 'artifact', + properties: { + filename: 'Artifact1.txt' + }, + child_features: [] + }, + { + id: '2-4', + type: 'artifact', + properties: { + filename: 'Artifact2.txt' + }, + child_features: [] + } + ] } - ]); + ]; - expect(repo).to.be.calledOnce; - expect(getFeatureTypeIdByNameStub).to.be.calledOnce; - expect(response).to.be.eql([{ submission_feature_id: 1 }]); + const submissionService = new SubmissionService(mockDBConnection); + + const response = await submissionService.insertSubmissionFeatureRecords(submissionId, submissionFeatures); + + expect(response).to.be.undefined; + + expect(insertSubmissionFeatureRecordStub.callCount).to.equal(9); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith(submissionId, null, '1-1', 'dataset', { + name: 'Dataset1' + }); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith( + submissionId, + parentSubmissionFeatureId, + '2-1', + 'sample_site', + { + name: 'SampleSite1' + } + ); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith( + submissionId, + parentSubmissionFeatureId, + '3-1', + 'observation', + { + count: 11, + geometry: { + type: 'Feature', + properties: {}, + geometry: { + coordinates: [-125.81103991280563, 49.82351418845636], + type: 'Point' + } + } + } + ); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith( + submissionId, + parentSubmissionFeatureId, + '3-2', + 'observation', + { + count: 12 + } + ); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith( + submissionId, + parentSubmissionFeatureId, + '2-2', + 'sample_site', + { + name: 'SampleSite2', + dateRange: { + start_date: '2024-01-01', + end_date: '2024-02-01' + } + } + ); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith( + submissionId, + parentSubmissionFeatureId, + '3-3', + 'observation', + { + count: 13 + } + ); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith( + submissionId, + parentSubmissionFeatureId, + '3-4', + 'observation', + { + count: 14 + } + ); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith( + submissionId, + parentSubmissionFeatureId, + '2-3', + 'artifact', + { + filename: 'Artifact1.txt' + } + ); + expect(insertSubmissionFeatureRecordStub).to.have.been.calledWith( + submissionId, + parentSubmissionFeatureId, + '2-4', + 'artifact', + { + filename: 'Artifact2.txt' + } + ); }); }); @@ -641,7 +837,7 @@ describe('SubmissionService', () => { expect(emlStub).to.be.calledWith('test-dataset-id'); }); - it('should return an empty array if JSON Path fails to return any results', async () => { + it.skip('should return an empty array if JSON Path fails to return any results', async () => { const mockDBConnection = getMockDBConnection(); const submissionService = new SubmissionService(mockDBConnection); @@ -754,9 +950,11 @@ describe('SubmissionService', () => { uuid: '123-456-789', security_review_timestamp: null, submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -773,9 +971,11 @@ describe('SubmissionService', () => { uuid: '789-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -812,9 +1012,11 @@ describe('SubmissionService', () => { uuid: '123-456-789', security_review_timestamp: null, submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: null, create_date: '2023-12-12', create_user: 1, @@ -831,9 +1033,11 @@ describe('SubmissionService', () => { uuid: '789-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: null, create_date: '2023-12-12', create_user: 1, @@ -871,8 +1075,10 @@ describe('SubmissionService', () => { security_review_timestamp: null, submitted_timestamp: '2023-12-12', source_system: 'SIMS', + system_user_id: 3, name: 'name', description: 'description', + comment: 'comment', publish_timestamp: null, create_date: '2023-12-12', create_user: 1, @@ -889,9 +1095,11 @@ describe('SubmissionService', () => { uuid: '789-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: null, create_date: '2023-12-12', create_user: 1, @@ -925,14 +1133,16 @@ describe('SubmissionService', () => { const mockDBConnection = getMockDBConnection(); const submissionService = new SubmissionService(mockDBConnection); - const mockResponse = { + const mockResponse: SubmissionRecordWithSecurity = { submission_id: 1, uuid: 'string', security_review_timestamp: null, submitted_timestamp: 'string', + system_user_id: 3, source_system: 'string', name: 'string', description: null, + comment: 'comment', publish_timestamp: '2023-12-12', create_date: 'string', create_user: 1, @@ -955,12 +1165,13 @@ describe('SubmissionService', () => { describe('getPublishedSubmissions', () => { it('should return an array of submission records with security property', async () => { - const mockSubmissionRecords: SubmissionRecordPublished[] = [ + const mockSubmissionRecords: SubmissionRecordPublishedForPublic[] = [ { submission_id: 1, uuid: '123-456-789', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', @@ -980,6 +1191,7 @@ describe('SubmissionService', () => { uuid: '789-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', @@ -999,6 +1211,7 @@ describe('SubmissionService', () => { uuid: '999-456-123', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', @@ -1030,6 +1243,313 @@ describe('SubmissionService', () => { }); }); + describe('getSubmissionFeaturesBySubmissionId', () => { + it('should return an array of submission features', async () => { + const mockDBConnection = getMockDBConnection(); + + const submissionId = 1; + + const mockSubmissionRecords: SubmissionFeatureRecordWithTypeAndSecurity[] = [ + { + submission_feature_id: 1, + uuid: '111-234-345', + submission_id: submissionId, + feature_type_id: 2, + source_id: 'source-id-1', + data: {}, + parent_submission_feature_id: 4, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', + submission_feature_security_ids: [] + }, + { + submission_feature_id: 2, + uuid: '222-234-345', + submission_id: submissionId, + feature_type_id: 2, + source_id: 'source-id-2', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'observation', + feature_type_display_name: 'Observation', + submission_feature_security_ids: [] + }, + { + submission_feature_id: 3, + uuid: '333-234-345', + submission_id: submissionId, + feature_type_id: 2, + source_id: 'source-id-3', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'observation', + feature_type_display_name: 'Observation', + submission_feature_security_ids: [] + }, + { + submission_feature_id: 4, + uuid: '444-234-345', + submission_id: submissionId, + feature_type_id: 3, + source_id: 'source-id-4', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'artifact', + feature_type_display_name: 'Artifact', + submission_feature_security_ids: [] + } + ]; + + const getReviewedSubmissionsForAdminsStub = sinon + .stub(SubmissionRepository.prototype, 'getSubmissionFeaturesBySubmissionId') + .resolves(mockSubmissionRecords); + + const submissionService = new SubmissionService(mockDBConnection); + + const response = await submissionService.getSubmissionFeaturesBySubmissionId(submissionId); + + expect(getReviewedSubmissionsForAdminsStub).to.be.calledOnceWith(submissionId); + expect(response).to.be.eql([ + { + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', + features: [{ ...mockSubmissionRecords[0] }] + }, + { + feature_type_name: 'observation', + feature_type_display_name: 'Observation', + features: [{ ...mockSubmissionRecords[1] }, { ...mockSubmissionRecords[2] }] + }, + { + feature_type_name: 'artifact', + feature_type_display_name: 'Artifact', + features: [{ ...mockSubmissionRecords[3] }] + } + ]); + }); + }); + + describe('getSubmissionFeaturesWithSearchKeyValuesBySubmissionId', () => { + it('should return an array of submission features', async () => { + const mockDBConnection = getMockDBConnection(); + + const submissionId = 1; + + const mockSubmissionRecords: SubmissionFeatureRecordWithTypeAndSecurity[] = [ + { + submission_feature_id: 1, + uuid: '111-234-345', + submission_id: submissionId, + feature_type_id: 2, + source_id: 'source-id-1', + data: {}, + parent_submission_feature_id: 4, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', + submission_feature_security_ids: [] + }, + { + submission_feature_id: 2, + uuid: '222-234-345', + submission_id: submissionId, + feature_type_id: 2, + source_id: 'source-id-2', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'observation', + feature_type_display_name: 'Observation', + submission_feature_security_ids: [] + }, + { + submission_feature_id: 3, + uuid: '333-234-345', + submission_id: submissionId, + feature_type_id: 2, + source_id: 'source-id-3', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'observation', + feature_type_display_name: 'Observation', + submission_feature_security_ids: [] + }, + { + submission_feature_id: 4, + uuid: '444-234-345', + submission_id: submissionId, + feature_type_id: 3, + source_id: 'source-id-4', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2020-01-01', + record_end_date: null, + create_date: '2020-01-01', + create_user: 1, + update_date: null, + update_user: null, + revision_count: 0, + feature_type_name: 'artifact', + feature_type_display_name: 'Artifact', + submission_feature_security_ids: [] + } + ]; + + const mockSubmissionFeatureSearchKeyValues: SubmissionFeatureSearchKeyValues[] = [ + { + search_id: 1, + submission_feature_id: 1, + feature_property_id: 1, + feature_property_name: 'name', + value: 'name1' + }, + { + search_id: 2, + submission_feature_id: 1, + feature_property_id: 2, + feature_property_name: 'description', + value: 'description1' + }, + { + search_id: 3, + submission_feature_id: 2, + feature_property_id: 3, + feature_property_name: 'geometry', + value: { type: 'Point', coordinates: [100.0, 0.0] } + }, + { + search_id: 4, + submission_feature_id: 3, + feature_property_id: 1, + feature_property_name: 'name', + value: 'name3' + }, + { + search_id: 5, + submission_feature_id: 4, + feature_property_id: 4, + feature_property_name: 'start_date', + value: '2024-02-02' + }, + { + search_id: 6, + submission_feature_id: 4, + feature_property_id: 5, + feature_property_name: 'count', + value: 15 + } + ]; + + const getReviewedSubmissionsForAdminsStub = sinon + .stub(SubmissionRepository.prototype, 'getSubmissionFeaturesBySubmissionId') + .resolves(mockSubmissionRecords); + + const getSearchKeyValuesBySubmissionIdStub = sinon + .stub(SearchIndexService.prototype, 'getSearchKeyValuesBySubmissionId') + .resolves(mockSubmissionFeatureSearchKeyValues); + + const submissionService = new SubmissionService(mockDBConnection); + + const response = await submissionService.getSubmissionFeaturesWithSearchKeyValuesBySubmissionId(submissionId); + + expect(getReviewedSubmissionsForAdminsStub).to.be.calledOnceWith(submissionId); + expect(getSearchKeyValuesBySubmissionIdStub).to.be.calledOnceWith(submissionId); + expect(response).to.be.eql([ + { + feature_type_name: 'dataset', + feature_type_display_name: 'Dataset', + features: [ + { + ...mockSubmissionRecords[0], + data: { + name: 'name1', + description: 'description1' + } + } + ] + }, + { + feature_type_name: 'observation', + feature_type_display_name: 'Observation', + features: [ + { + ...mockSubmissionRecords[1], + data: { + geometry: { type: 'Point', coordinates: [100.0, 0.0] } + } + }, + { + ...mockSubmissionRecords[2], + data: { + name: 'name3' + } + } + ] + }, + { + feature_type_name: 'artifact', + feature_type_display_name: 'Artifact', + features: [ + { + ...mockSubmissionRecords[3], + data: { + start_date: '2024-02-02', + count: 15 + } + } + ] + } + ]); + }); + }); + describe('createMessages', () => { beforeEach(() => { sinon.restore(); @@ -1096,9 +1616,11 @@ describe('SubmissionService', () => { uuid: '123-456-789', security_review_timestamp: '2023-12-12', submitted_timestamp: '2023-12-12', + system_user_id: 3, source_system: 'SIMS', name: 'name', description: 'description', + comment: 'comment', publish_timestamp: '2023-12-12', create_date: '2023-12-12', create_user: 1, @@ -1121,6 +1643,99 @@ describe('SubmissionService', () => { }); }); + describe('getSubmissionFeatureByUuid', () => { + it('finds and returns submission features', async () => { + const mockDBConnection = getMockDBConnection(); + const submissionService = new SubmissionService(mockDBConnection); + + const submissionFeature: SubmissionFeatureRecord = { + submission_feature_id: 2, + uuid: '234-456-234', + submission_id: 3, + feature_type_id: 1, + source_id: 'source-id', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2024-01-01', + record_end_date: null, + create_date: '2024-01-01', + create_user: 3, + update_date: null, + update_user: null, + revision_count: 0 + }; + + const getSubmissionFeatureByUuidStub = sinon + .stub(SubmissionRepository.prototype, 'getSubmissionFeatureByUuid') + .resolves(submissionFeature); + + const submissionFeatureUuid = '123-456-789'; + + const response = await submissionService.getSubmissionFeatureByUuid(submissionFeatureUuid); + + expect(getSubmissionFeatureByUuidStub).to.be.calledOnceWith(submissionFeatureUuid); + expect(response).to.be.eql(submissionFeature); + }); + }); + + describe('getSubmissionRootFeature', () => { + it('finds and returns submission features', async () => { + const mockDBConnection = getMockDBConnection(); + const submissionService = new SubmissionService(mockDBConnection); + + const submissionFeature: SubmissionFeatureRecord = { + submission_feature_id: 2, + uuid: '234-456-234', + submission_id: 3, + feature_type_id: 1, + source_id: 'source-id', + data: {}, + parent_submission_feature_id: 1, + record_effective_date: '2024-01-01', + record_end_date: null, + create_date: '2024-01-01', + create_user: 3, + update_date: null, + update_user: null, + revision_count: 0 + }; + + const getSubmissionRootFeatureStub = sinon + .stub(SubmissionRepository.prototype, 'getSubmissionRootFeature') + .resolves(submissionFeature); + + const submissionId = 1; + + const response = await submissionService.getSubmissionRootFeature(submissionId); + + expect(getSubmissionRootFeatureStub).to.be.calledOnceWith(submissionId); + expect(response).to.be.eql(submissionFeature); + }); + }); + + describe('findSubmissionFeatures', () => { + it('finds and returns submission features', async () => { + const mockDBConnection = getMockDBConnection(); + const submissionService = new SubmissionService(mockDBConnection); + + const submissionFeaturesResponse: SubmissionFeatureRecord[] = []; + + const findSubmissionFeaturesStub = sinon + .stub(SubmissionRepository.prototype, 'findSubmissionFeatures') + .resolves(submissionFeaturesResponse); + + const criteria = { + submissionId: 1, + featureTypeNames: ['dataset', 'artifact'] + }; + + const response = await submissionService.findSubmissionFeatures(criteria); + + expect(findSubmissionFeaturesStub).to.be.calledOnceWith(criteria); + expect(response).to.be.eql(submissionFeaturesResponse); + }); + }); + describe('downloadSubmission', () => { it('should get submission with associated features ready for download', async () => { const submissionId = 1; diff --git a/api/src/services/submission-service.ts b/api/src/services/submission-service.ts index 7159a8f1e..58f9eaf54 100644 --- a/api/src/services/submission-service.ts +++ b/api/src/services/submission-service.ts @@ -3,6 +3,7 @@ import { JSONPath } from 'jsonpath-plus'; import { z } from 'zod'; import { IDBConnection } from '../database/db'; import { ApiExecuteSQLError, ApiGeneralError } from '../errors/api-error'; +import { SubmissionFeatureSearchKeyValues } from '../repositories/search-index-respository'; import { IDatasetsForReview, ISourceTransformModel, @@ -21,7 +22,7 @@ import { SubmissionFeatureSignedUrlPayload, SubmissionMessageRecord, SubmissionRecord, - SubmissionRecordPublished, + SubmissionRecordPublishedForPublic, SubmissionRecordWithSecurity, SubmissionRecordWithSecurityAndRootFeatureType, SubmissionRepository, @@ -29,8 +30,12 @@ import { SUBMISSION_STATUS_TYPE } from '../repositories/submission-repository'; import { getS3SignedURL } from '../utils/file-utils'; +import { getLogger } from '../utils/logger'; import { EMLFile } from '../utils/media/eml/eml-file'; import { DBService } from './db-service'; +import { SearchIndexService } from './search-index-service'; + +const defaultLog = getLogger('submission-service'); export const RelatedDataset = z.object({ datasetId: z.string(), @@ -66,48 +71,91 @@ export class SubmissionService extends DBService { * * @param {string} uuid * @param {string} name - * @param {string} description - * @param {string} userIdentifier - * @return {*} {Promise<{ submission_id: number }>} + * @param {string} description A description of the submission. Should not contain any sensitive information. + * @param {string} comment An internal comment/description of the submission for administrative purposes. May contain + * sensitive information. Should never be shared with the general public. + * @param {number} systemUserId + * @param {string} systemUserIdentifier + * @return {*} {Promise} * @memberof SubmissionService */ async insertSubmissionRecordWithPotentialConflict( uuid: string, name: string, description: string, - userIdentifier: string - ): Promise<{ submission_id: number }> { + comment: string, + systemUserId: number, + systemUserIdentifier: string + ): Promise { return this.submissionRepository.insertSubmissionRecordWithPotentialConflict( uuid, name, description, - userIdentifier + comment, + systemUserId, + systemUserIdentifier ); } /** - * insert submission feature record + * Insert submission features. * * @param {number} submissionId - * @param {ISubmissionFeature[]} submissionFeature - * @return {*} {Promise<{ submission_feature_id: number }[]>} + * @param {ISubmissionFeature[]} submissionFeatures + * @return {*} {Promise} * @memberof SubmissionService */ - async insertSubmissionFeatureRecords( - submissionId: number, - submissionFeature: ISubmissionFeature[] - ): Promise<{ submission_feature_id: number }[]> { - const promise = submissionFeature.map(async (feature) => { - const featureTypeId = await this.submissionRepository.getFeatureTypeIdByName(feature.type); - - return this.submissionRepository.insertSubmissionFeatureRecord( - submissionId, - featureTypeId.feature_type_id, - feature.properties - ); - }); + async insertSubmissionFeatureRecords(submissionId: number, submissionFeatures: ISubmissionFeature[]): Promise { + try { + // Generate paths to all non-null nodes which contain a 'child_features' property + const submissionFeatureJsonPaths: string[] = JSONPath({ + path: '$..[?(@ && @.child_features)]', + flatten: true, + resultType: 'path', + json: submissionFeatures + }); + + // Store a mapping of jsonPath to submission_feature_id + const parentSubmissionFeatureIdMap: Map = new Map(); + + // Match the last path segment of a jsonPath that ends with 'child_features[]' + const matchLastJsonPathSegment = /\['child_features'\]\[\d+\]$/; + + for (const jsonPath of submissionFeatureJsonPaths) { + // Fetch a submissionFeature object + const node: ISubmissionFeature[] = JSONPath({ path: jsonPath, resultType: 'value', json: submissionFeatures }); - return Promise.all(promise); + if (!node?.length) { + continue; + } + + // We expect the 'path' to resolve an array of 1 item + const featureNode = node[0]; + + // Get the parent jsonPath by stripping the last path segment from the current jsonPath + const parentJsonPath = jsonPath.replace(matchLastJsonPathSegment, ''); + + // Get the submission_feature_id of the parent submissionFeature object, or null if the current node is the root + const parentSubmissionFeatureId = parentSubmissionFeatureIdMap.get(parentJsonPath) || null; + + // Validate the submissionFeature object + const response = await this.submissionRepository.insertSubmissionFeatureRecord( + submissionId, + parentSubmissionFeatureId, + featureNode.id, + featureNode.type, + featureNode.properties + ); + + // Cache the submission_feature_id for the current jsonPath + parentSubmissionFeatureIdMap.set(jsonPath, response.submission_feature_id); + } + + defaultLog.debug({ label: 'insertSubmissionFeatureRecords', message: 'success' }); + } catch (error) { + defaultLog.error({ label: 'validateSubmissionFeatures', message: 'error', error }); + throw error; + } } /** @@ -591,15 +639,17 @@ export class SubmissionService extends DBService { /** * Get all published submissions. * - * @return {*} {Promise} + * Note: This method is used by the public API. Sensitive data should not be included in the response. + * + * @return {*} {Promise} * @memberof SubmissionService */ - async getPublishedSubmissions(): Promise { + async getPublishedSubmissions(): Promise { return this.submissionRepository.getPublishedSubmissions(); } /** - * Retrieves submission features with type and name. + * Retrieves submission feature records with type, name, and security data included. * * @param {number} submissionId * @return {*} {Promise< @@ -643,6 +693,70 @@ export class SubmissionService extends DBService { return submissionFeatures; } + /** + * Retrieves submission features with type and name. + * + * Note: This method replaces the original feature data object with one built from only the search key values (from + * the `search_` tables). + * + * @param {number} submissionId + * @return {*} {Promise< + * { + * feature_type_name: string; + * feature_type_display_name: string; + * features: SubmissionFeatureRecordWithTypeAndSecurity[]; + * }[] + * >} + * @memberof SubmissionService + */ + async getSubmissionFeaturesWithSearchKeyValuesBySubmissionId(submissionId: number): Promise< + { + feature_type_name: string; + feature_type_display_name: string; + features: SubmissionFeatureRecordWithTypeAndSecurity[]; + }[] + > { + const uncategorizedFeatures = await this.submissionRepository.getSubmissionFeaturesBySubmissionId(submissionId); + + const searchIndexService = new SearchIndexService(this.connection); + const submissionFeatureSearchKeyValues = await searchIndexService.getSearchKeyValuesBySubmissionId(submissionId); + + const categorizedFeatures: Record = {}; + + for (const feature of uncategorizedFeatures) { + const featureCategoryArray = categorizedFeatures[feature.feature_type_name]; + + const featureSearchKeyValueData = submissionFeatureSearchKeyValues + .filter((item) => item.submission_feature_id === feature.submission_feature_id) + .reduce((acc, obj) => { + acc[obj.feature_property_name] = obj.value; + return acc; + }, {} as Record); + + const featureWithSearchkeyValues = { + ...feature, + data: featureSearchKeyValueData // overwrite original data with search key values + }; + + if (featureCategoryArray) { + // Append to existing array of matching feature type + categorizedFeatures[featureWithSearchkeyValues.feature_type_name] = + featureCategoryArray.concat(featureWithSearchkeyValues); + } else { + // Create new array for feature type + categorizedFeatures[featureWithSearchkeyValues.feature_type_name] = [featureWithSearchkeyValues]; + } + } + + const submissionFeatures = Object.entries(categorizedFeatures).map(([featureType, submissionFeatures]) => ({ + feature_type_name: featureType, + feature_type_display_name: submissionFeatures[0].feature_type_display_name, + features: submissionFeatures + })); + + return submissionFeatures; + } + /** * Get all messages for a submission. * @@ -684,6 +798,17 @@ export class SubmissionService extends DBService { return this.submissionRepository.patchSubmissionRecord(submissionId, patch); } + /** + * Get a submission feature record by uuid. + * + * @param {string} submissionFeatureUuid + * @return {*} {Promise} + * @memberof SubmissionService + */ + async getSubmissionFeatureByUuid(submissionFeatureUuid: string): Promise { + return this.submissionRepository.getSubmissionFeatureByUuid(submissionFeatureUuid); + } + /** * Get the root submission feature record for a submission. * @@ -695,6 +820,25 @@ export class SubmissionService extends DBService { return this.submissionRepository.getSubmissionRootFeature(submissionId); } + /** + * Find and return all submission feature records that match the provided criteria. + * + * @param {{ + * submissionId?: number; + * systemUserId?: number; + * featureTypeNames?: string[]; + * }} [criteria] + * @return {*} {Promise} + * @memberof SubmissionService + */ + async findSubmissionFeatures(criteria?: { + submissionId?: number; + systemUserId?: number; + featureTypeNames?: string[]; + }): Promise { + return this.submissionRepository.findSubmissionFeatures(criteria); + } + /** * Download Submission with all associated Features * @@ -719,7 +863,7 @@ export class SubmissionService extends DBService { /** * Generates a signed URL for a submission_feature's (artifact) key value pair - * ie: "s3_key": "artifact/test-file.txt" + * ie: "artifact_key": "artifact/test-file.txt" * * Note: admin's can generate signed urls for secure submission_features * diff --git a/api/src/services/validation-service.test.ts b/api/src/services/validation-service.test.ts index 5b54f8251..41313830f 100644 --- a/api/src/services/validation-service.test.ts +++ b/api/src/services/validation-service.test.ts @@ -4,7 +4,7 @@ import sinon from 'sinon'; import sinonChai from 'sinon-chai'; import { ISubmissionFeature } from '../repositories/submission-repository'; import { - IFeatureProperties, + FeatureProperties, IInsertStyleSchema, IStyleModel, ValidationRepository @@ -147,7 +147,7 @@ describe('ValidationService', () => { id: '1', type: 'observation', properties: mockObservationProperties1, - features: [] + child_features: [] }; const mockObservationProperties2 = { @@ -171,14 +171,14 @@ describe('ValidationService', () => { id: '2', type: 'observation', properties: mockObservationProperties2, - features: [] + child_features: [] }; const mockDatasetSubmissionFeature = { id: '123', type: 'dataset', properties: mockDatasetProperties, - features: [mockObservationSubmissionFeature1, mockObservationSubmissionFeature2] + child_features: [mockObservationSubmissionFeature1, mockObservationSubmissionFeature2] }; const mockSubmissionFeatures: ISubmissionFeature[] = [mockDatasetSubmissionFeature]; @@ -187,7 +187,7 @@ describe('ValidationService', () => { const response = await validationService.validateSubmissionFeatures(mockSubmissionFeatures); - expect(validateSubmissionFeatureStub).to.have.been.calledWith({ ...mockDatasetSubmissionFeature, features: [] }); + expect(validateSubmissionFeatureStub).to.have.been.calledWith(mockDatasetSubmissionFeature); expect(response).to.be.false; }); @@ -224,7 +224,7 @@ describe('ValidationService', () => { id: '1', type: 'observation', properties: mockObservationProperties1, - features: [] + child_features: [] }; const mockObservationProperties2 = { @@ -248,14 +248,14 @@ describe('ValidationService', () => { id: '2', type: 'observation', properties: mockObservationProperties2, - features: [] + child_features: [] }; const mockDatasetSubmissionFeature = { id: '123', type: 'dataset', properties: mockDatasetProperties, - features: [mockObservationSubmissionFeature1, mockObservationSubmissionFeature2] + child_features: [mockObservationSubmissionFeature1, mockObservationSubmissionFeature2] }; const mockSubmissionFeatures: ISubmissionFeature[] = [mockDatasetSubmissionFeature]; @@ -264,15 +264,9 @@ describe('ValidationService', () => { const response = await validationService.validateSubmissionFeatures(mockSubmissionFeatures); - expect(validateSubmissionFeatureStub).to.have.been.calledWith({ ...mockDatasetSubmissionFeature, features: [] }); - expect(validateSubmissionFeatureStub).to.have.been.calledWith({ - ...mockObservationSubmissionFeature1, - features: [] - }); - expect(validateSubmissionFeatureStub).to.have.been.calledWith({ - ...mockObservationSubmissionFeature2, - features: [] - }); + expect(validateSubmissionFeatureStub).to.have.been.calledWith(mockDatasetSubmissionFeature); + expect(validateSubmissionFeatureStub).to.have.been.calledWith(mockObservationSubmissionFeature1); + expect(validateSubmissionFeatureStub).to.have.been.calledWith(mockObservationSubmissionFeature2); expect(response).to.be.true; }); }); @@ -281,12 +275,13 @@ describe('ValidationService', () => { it('fetches validation properties and calls validate', async () => { const mockDBConnection = getMockDBConnection(); - const mockFeatureProperties: IFeatureProperties[] = [ + const mockFeatureProperties: FeatureProperties[] = [ { name: 'field1', display_name: 'Field 1', description: 'A Field 1', - type: 'string' + type_name: 'string', + required_value: true } ]; @@ -301,9 +296,9 @@ describe('ValidationService', () => { id: '1', type: 'feature type', properties: mockSubmissionProperties, - features: [ - { id: '2', type: 'child feature type', properties: {}, features: [] }, - { id: '3', type: 'child feature type', properties: {}, features: [] } + child_features: [ + { id: '2', type: 'child feature type', properties: {}, child_features: [] }, + { id: '3', type: 'child feature type', properties: {}, child_features: [] } ] }; @@ -322,12 +317,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -355,7 +350,7 @@ describe('ValidationService', () => { try { validationService.validateProperties(properties, dataProperties); } catch (error) { - expect((error as Error).message).to.equal('Property [start_date] not found in data'); + expect((error as Error).message).to.equal('Property start_date is required but is null or undefined'); } }); @@ -363,12 +358,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -405,12 +400,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -447,12 +442,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -489,12 +484,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -531,12 +526,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -561,12 +556,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -603,12 +598,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -645,12 +640,12 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const properties = [ - { name: 'name', display_name: '', description: '', type: 'string' }, - { name: 'count', display_name: '', description: '', type: 'number' }, - { name: 'published', display_name: '', description: '', type: 'boolean' }, - { name: 'permit', display_name: '', description: '', type: 'object' }, - { name: 'geometry', display_name: '', description: '', type: 'spatial' }, - { name: 'start_date', display_name: '', description: '', type: 'datetime' } + { name: 'name', display_name: '', description: '', type_name: 'string', required_value: true }, + { name: 'count', display_name: '', description: '', type_name: 'number', required_value: true }, + { name: 'published', display_name: '', description: '', type_name: 'boolean', required_value: true }, + { name: 'permit', display_name: '', description: '', type_name: 'object', required_value: true }, + { name: 'geometry', display_name: '', description: '', type_name: 'spatial', required_value: true }, + { name: 'start_date', display_name: '', description: '', type_name: 'datetime', required_value: true } ]; const dataProperties = { @@ -687,8 +682,8 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const mockValidationProperties = [ - { name: 'name', display_name: 'Name', description: '', type: 'string' }, - { name: 'description', display_name: 'Description', description: '', type: 'string' } + { name: 'name', display_name: 'Name', description: '', type_name: 'string', required_value: true }, + { name: 'description', display_name: 'Description', description: '', type_name: 'string', required_value: true } ]; const getFeatureValidationPropertiesStub = sinon @@ -709,8 +704,8 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const mockValidationProperties = [ - { name: 'name', display_name: 'Name', description: '', type: 'string' }, - { name: 'description', display_name: 'Description', description: '', type: 'string' } + { name: 'name', display_name: 'Name', description: '', type_name: 'string', required_value: true }, + { name: 'description', display_name: 'Description', description: '', type_name: 'string', required_value: true } ]; const getFeatureValidationPropertiesStub = sinon @@ -723,7 +718,7 @@ describe('ValidationService', () => { // Set cache for non-matching type validationService.validationPropertiesCache.set('observation', [ - { name: 'count', display_name: 'Count', description: '', type: 'number' } + { name: 'count', display_name: 'Count', description: '', type_name: 'number', required_value: true } ]); const properties = await validationService.getFeatureValidationProperties(featureType); @@ -736,8 +731,8 @@ describe('ValidationService', () => { const mockDBConnection = getMockDBConnection(); const mockValidationProperties = [ - { name: 'name', display_name: 'Name', description: '', type: 'string' }, - { name: 'description', display_name: 'Description', description: '', type: 'string' } + { name: 'name', display_name: 'Name', description: '', type_name: 'string', required_value: true }, + { name: 'description', display_name: 'Description', description: '', type_name: 'string', required_value: true } ]; const getFeatureValidationPropertiesStub = sinon diff --git a/api/src/services/validation-service.ts b/api/src/services/validation-service.ts index b012206b2..cffdf31b7 100644 --- a/api/src/services/validation-service.ts +++ b/api/src/services/validation-service.ts @@ -2,7 +2,7 @@ import { JSONPath } from 'jsonpath-plus'; import { IDBConnection } from '../database/db'; import { ISubmissionFeature } from '../repositories/submission-repository'; import { - IFeatureProperties, + FeatureProperties, IInsertStyleSchema, IStyleModel, ValidationRepository @@ -19,50 +19,48 @@ const defaultLog = getLogger('services/validation-service'); export class ValidationService extends DBService { validationRepository: ValidationRepository; - validationPropertiesCache: Map; + validationPropertiesCache: Map; constructor(connection: IDBConnection) { super(connection); this.validationRepository = new ValidationRepository(connection); - this.validationPropertiesCache = new Map(); + this.validationPropertiesCache = new Map(); } /** * Validate submission features. * * @param {ISubmissionFeature[]} submissionFeatures - * @return {*} {Promise} + * @return {*} {Promise} `true` if all submission features are valid, `false` otherwise. * @memberof ValidationService */ async validateSubmissionFeatures(submissionFeatures: ISubmissionFeature[]): Promise { - // Generate paths to all non-null nodes which contain a 'features' property, ignoring the 'properties' field - const allFeaturesPaths: string[] = JSONPath({ - path: "$..[?(@ && @parentProperty != 'properties' && @.features)]", - flatten: true, - resultType: 'path', - json: submissionFeatures - }); - try { - for (const path of allFeaturesPaths) { + // Generate paths to all non-null nodes which contain a 'child_features' property + const submissionFeatureJsonPaths: string[] = JSONPath({ + path: '$..[?(@ && @.child_features)]', + flatten: true, + resultType: 'path', + json: submissionFeatures + }); + + for (const jsonPath of submissionFeatureJsonPaths) { // Fetch a submissionFeature object - const node: ISubmissionFeature[] = JSONPath({ path: path, resultType: 'value', json: submissionFeatures }); + const node: ISubmissionFeature[] = JSONPath({ path: jsonPath, resultType: 'value', json: submissionFeatures }); if (!node?.length) { continue; } // We expect the 'path' to resolve an array of 1 item - const nodeWithoutFeatures = { ...node[0], features: [] }; + const featureNode = node[0]; // Validate the submissioNFeature object - await this.validateSubmissionFeature(nodeWithoutFeatures).catch((error) => { - defaultLog.error({ label: 'validateSubmissionFeature', message: 'error', error }); - // Submission feature is invalid - return false; - }); + await this.validateSubmissionFeature(featureNode); } + + defaultLog.debug({ label: 'validateSubmissionFeatures', message: 'success' }); } catch (error) { defaultLog.error({ label: 'validateSubmissionFeatures', message: 'error', error }); // Not all submission features are valid @@ -88,26 +86,31 @@ export class ValidationService extends DBService { /** * Validate the properties of a submission feature. * - * @param {IFeatureProperties[]} properties - * @param {*} dataProperties + * @param {FeatureProperties[]} properties The known/recognized properties of a feature type. + * @param {ISubmissionFeature['properties']} dataProperties The raw/original properties of a submission feature. * @return {*} {boolean} `true` if the submission feature is valid, `false` otherwise. * @memberof ValidationService */ - validateProperties(properties: IFeatureProperties[], dataProperties: any): boolean { + validateProperties(properties: FeatureProperties[], dataProperties: ISubmissionFeature['properties']): boolean { defaultLog.debug({ label: 'validateProperties', message: 'params', properties, dataProperties }); - const throwPropertyError = (property: IFeatureProperties) => { - throw new Error(`Property ${property.name} is not of type ${property.type}`); + const throwPropertyError = (property: FeatureProperties) => { + throw new Error(`Property ${property.name} is not of type ${property.type_name}`); }; for (const property of properties) { const dataProperty = dataProperties[property.name]; - if (!dataProperty) { - throw new Error(`Property [${property.name}] not found in data`); + if (dataProperty === undefined || dataProperty === null) { + if (property.required_value) { + // Property is required and is null or undefined. Fail validation. + throw new Error(`Property ${property.name} is required but is null or undefined`); + } + // Property is optional is null or undefined. Skip further validation. + continue; } - switch (property.type) { + switch (property.type_name) { case 'string': if (typeof dataProperty !== 'string') { throwPropertyError(property); @@ -138,6 +141,7 @@ export class ValidationService extends DBService { case 'datetime': { if (typeof dataProperty !== 'string') { throwPropertyError(property); + break; } const date = new Date(dataProperty); @@ -155,7 +159,7 @@ export class ValidationService extends DBService { return true; } - async getFeatureValidationProperties(featureType: string): Promise { + async getFeatureValidationProperties(featureType: string): Promise { let properties = this.validationPropertiesCache.get(featureType); if (!properties) { diff --git a/api/src/utils/file-utils.test.ts b/api/src/utils/file-utils.test.ts index f401e65e3..d88d7cd92 100644 --- a/api/src/utils/file-utils.test.ts +++ b/api/src/utils/file-utils.test.ts @@ -682,18 +682,6 @@ describe('file-utils', () => { }); }); - describe('generateArtifactS3FileKey', () => { - it('returns an s3 key with a prefix', async () => { - const result = fileUtils.generateArtifactS3FileKey({ - artifactId: 1, - datasetUUID: '123-456-789', - fileName: 'testFileName' - }); - - expect(result).to.equal('biohub/datasets/123-456-789/artifacts/1/testFileName'); - }); - }); - describe('generateQueueS3FileKey', () => { it('returns an s3 key with a prefix', async () => { const result = fileUtils.generateQueueS3FileKey({ diff --git a/api/src/utils/file-utils.ts b/api/src/utils/file-utils.ts index b9591c1cc..198beeee0 100644 --- a/api/src/utils/file-utils.ts +++ b/api/src/utils/file-utils.ts @@ -16,9 +16,8 @@ export interface IDatasetS3FileKey { } export interface IArtifactS3FileKey { - datasetUUID: string; - artifactId: number; - fileName: string; + submissionId: number; + submissionFeatureId: number; } export interface IQueueS3FileKey { @@ -216,7 +215,7 @@ export async function getFileFromS3(key: string, versionId?: string): Promise} the response from S3 or null if required parameters are null @@ -272,17 +271,10 @@ export async function getObjectMeta(key: string): Promise { * @param {IArtifactS3FileKey} options * @return {*} */ -export function generateArtifactS3FileKey(options: IArtifactS3FileKey) { - const keyParts: (string | number)[] = []; - - keyParts.push(_getS3KeyPrefix()); - keyParts.push('datasets'); - keyParts.push(options.datasetUUID); - keyParts.push('artifacts'); - keyParts.push(options.artifactId); - keyParts.push(options.fileName); - - return keyParts.filter(Boolean).join('/'); +export function generateSubmissionFeatureS3FileKey(options: IArtifactS3FileKey) { + return [_getS3KeyPrefix(), 'submissions', options.submissionId, 'features', options.submissionFeatureId] + .filter(Boolean) + .join('/'); } /** @@ -334,6 +326,8 @@ export function generateDatasetS3FileKey(options: IDatasetS3FileKey) { /** * Scan a file for viruses. * + * TODO: Turn into middleware that is called in app.ts as one of the first steps before the endpoint even receives it? + * * @export * @param {Express.Multer.File} file * @return {*} {Promise} `true` if the file is safe, `false` if the file is a virus or contains malicious diff --git a/api/src/zod-schema/json.ts b/api/src/zod-schema/json.ts new file mode 100644 index 000000000..07456b564 --- /dev/null +++ b/api/src/zod-schema/json.ts @@ -0,0 +1,18 @@ +import * as z from 'zod'; + +const literalSchema = z.union([z.string(), z.number(), z.boolean(), z.null()]); + +type Literal = z.infer; + +type Json = Literal | { [key: string]: Json } | Json[]; + +// Defines a Zod Schema for a valid JSON value +// Not safe for massive JSON objects as it may cause a heap out of memory error +export const jsonSchema: z.ZodType = z.lazy(() => + z.union([literalSchema, z.array(jsonSchema), z.record(jsonSchema)]) +); + +// Defines a Zod Schema for a valid JSON value using shallow validation for use with massive JSON objects. +export const shallowJsonSchema: z.ZodType = z.lazy(() => + z.union([literalSchema, z.array(z.any()), z.record(z.string()), z.record(z.any())]) +); diff --git a/app/src/features/admin/dashboard/components/PublishedSubmissionsTable.tsx b/app/src/features/admin/dashboard/components/PublishedSubmissionsTable.tsx index 24b73ed26..1cac4d7c7 100644 --- a/app/src/features/admin/dashboard/components/PublishedSubmissionsTable.tsx +++ b/app/src/features/admin/dashboard/components/PublishedSubmissionsTable.tsx @@ -95,7 +95,10 @@ const PublishedSubmissionsTable = () => { 'record' )} found`} - sortMenuItems={{ name: 'Name', security_review_timestamp: 'Review Complete', diff --git a/app/src/features/submissions/components/SubmissionDataGrid.tsx b/app/src/features/submissions/components/SubmissionDataGrid.tsx index 035ce4539..d7a3618cd 100644 --- a/app/src/features/submissions/components/SubmissionDataGrid.tsx +++ b/app/src/features/submissions/components/SubmissionDataGrid.tsx @@ -12,7 +12,7 @@ import { GridValueGetterParams } from '@mui/x-data-grid'; import { useCodesContext } from 'hooks/useContext'; -import { IFeatureTypeProperties } from 'interfaces/useCodesApi.interface'; +import { FeaturePropertyCode } from 'interfaces/useCodesApi.interface'; import { SubmissionFeatureRecordWithTypeAndSecurity } from 'interfaces/useSubmissionsApi.interface'; export interface ISubmissionDataGridProps { @@ -39,13 +39,13 @@ export const SubmissionDataGrid = (props: ISubmissionDataGridProps) => { featureTypesWithProperties?.find((item) => item.feature_type['name'] === feature_type_name) ?.feature_type_properties || []; - const fieldColumns = featureTypeWithProperties.map((featureType: IFeatureTypeProperties) => { + const fieldColumns = featureTypeWithProperties.map((featureType: FeaturePropertyCode) => { return { - field: featureType.name, - headerName: featureType.display_name, + field: featureType.feature_property_type_name, + headerName: featureType.feature_property_display_name, flex: 1, disableColumnMenu: true, - valueGetter: (params: GridValueGetterParams) => params.row.data[featureType.name] ?? null, + valueGetter: (params: GridValueGetterParams) => params.row.data[featureType.feature_property_type_name] ?? null, renderCell: (params: GridRenderCellParams) => { return ( const featureTypesWithProperties = codesContext.codesDataLoader.data?.feature_type_with_properties; const featureTypeWithProperties = - featureTypesWithProperties?.find((item) => item.feature_type['name'] === featureTypeName) + featureTypesWithProperties?.find((item) => item.feature_type.feature_type_name === featureTypeName) ?.feature_type_properties ?? []; - const fieldColumns = featureTypeWithProperties.map((featureType: IFeatureTypeProperties) => { - if (featureType.type === 's3_key') { + const fieldColumns = featureTypeWithProperties.map((featureType: FeaturePropertyCode) => { + if (featureType.feature_property_type_name === 'artifact_key') { return { - field: featureType.name, + field: featureType.feature_property_name, headerName: '', flex: 1, disableColumnMenu: true, disableReorder: true, hideSortIcons: true, - valueGetter: (params: GridValueGetterParams) => params.row.data[featureType.name] ?? null, + valueGetter: (params: GridValueGetterParams) => params.row.data[featureType.feature_property_name] ?? null, renderCell: (params: GridRenderCellParams) => { const download = async () => { const signedUrlPromise = api.submissions.getSubmissionFeatureSignedUrl({ submissionId: params.row.submission_id, submissionFeatureId: params.row.submission_feature_id, - submissionFeatureKey: featureType.type, + submissionFeatureKey: featureType.feature_property_name, submissionFeatureValue: params.value }); await downloadSignedUrl(signedUrlPromise); @@ -54,11 +54,11 @@ const useSubmissionDataGridColumns = (featureTypeName: string): GridColDef[] => }; } return { - field: featureType.name, - headerName: featureType.display_name, + field: featureType.feature_property_name, + headerName: featureType.feature_property_display_name, flex: 1, disableColumnMenu: true, - valueGetter: (params: GridValueGetterParams) => params.row.data[featureType.name] ?? null, + valueGetter: (params: GridValueGetterParams) => params.row.data[featureType.feature_property_name] ?? null, renderCell: (params: GridRenderCellParams) => ( []; - onDownload: (submission: FuseResult) => void; + submissions: FuseResult[]; + onDownload: (submission: FuseResult) => void; onAccessRequest: () => void; } diff --git a/app/src/features/submissions/list/SubmissionsListPage.tsx b/app/src/features/submissions/list/SubmissionsListPage.tsx index 24df5fdf0..911f12cf1 100644 --- a/app/src/features/submissions/list/SubmissionsListPage.tsx +++ b/app/src/features/submissions/list/SubmissionsListPage.tsx @@ -13,12 +13,12 @@ import { useApi } from 'hooks/useApi'; import useDataLoader from 'hooks/useDataLoader'; import useDownload from 'hooks/useDownload'; import useFuzzySearch from 'hooks/useFuzzySearch'; -import { SubmissionRecordPublished } from 'interfaces/useSubmissionsApi.interface'; +import { SubmissionRecordPublishedForPublic } from 'interfaces/useSubmissionsApi.interface'; import { useState } from 'react'; import { pluralize as p } from 'utils/Utils'; /** - * Renders reviewed Submissions as cards with download and request access actions + * Renders reviewed + published Submissions as cards with download and request access actions. * * @returns {*} */ @@ -31,12 +31,12 @@ const SubmissionsListPage = () => { const [openRequestAccess, setOpenRequestAccess] = useState(false); - const { fuzzyData, handleFuzzyData, handleSearch, searchValue } = useFuzzySearch( + const { fuzzyData, handleFuzzyData, handleSearch, searchValue } = useFuzzySearch( reviewedSubmissionsDataLoader.data, { keys: ['name', 'description'] } ); - const onDownload = async (submission: FuseResult) => { + const onDownload = async (submission: FuseResult) => { // make request here for JSON data of submission and children const data = await biohubApi.submissions.getSubmissionPublishedDownloadPackage(submission.item.submission_id); const fileName = `${submission.item.name.toLowerCase().replace(/ /g, '-')}-${submission.item.submission_id}`; diff --git a/app/src/features/submissions/list/SubmissionsListSortMenu.tsx b/app/src/features/submissions/list/SubmissionsListSortMenu.tsx index a47635868..01ab8dadb 100644 --- a/app/src/features/submissions/list/SubmissionsListSortMenu.tsx +++ b/app/src/features/submissions/list/SubmissionsListSortMenu.tsx @@ -4,42 +4,44 @@ import { MenuItem, useTheme } from '@mui/material'; import Button from '@mui/material/Button'; import Menu from '@mui/material/Menu'; import { FuseResult } from 'fuse.js'; -import { SubmissionRecord } from 'interfaces/useSubmissionsApi.interface'; import sortBy from 'lodash-es/sortBy'; import React, { useState } from 'react'; import { objectKeys } from 'utils/Utils'; -export type SortSubmission = FuseResult | SubmissionRecord; +export type Sortable = FuseResult | RecordType; -type SortProp = { key: keyof SubmissionRecord; sort: 'asc' | 'desc' }; +type SortProp = { key: keyof SortableRecordType; sort: 'asc' | 'desc' }; -export interface ISubmissionsListSortMenuProps { +export interface ISubmissionsListSortMenuProps< + RecordType extends object, + SortableRecordType extends Sortable +> { /** * Submissions to sort * - * @type {TSubmission[]} + * @type {SortableRecordType[]} * @memberof ISubmissionsListSortMenuProps */ - submissions: TSubmission[]; + submissions: SortableRecordType[]; /** * Callback fired after submissions are sorted * - * @param {TSubmission[]} - data + * @param {SortableRecordType[]} - data * @returns {void} * @memberof ISubmissionsListSortMenuProps */ - handleSubmissions: (data: TSubmission[]) => void; + handleSubmissions: (data: SortableRecordType[]) => void; /** * Sort menu items * The object values will be the labels for the menu items * - * @type {Partial>} + * @type {Partial>} * @example: { name: 'Name', publish_timestamp: 'Publish Date' } * @memberof ISubmissionsListSortMenuProps */ - sortMenuItems: Partial>; + sortMenuItems: Partial>; /** * Manually syncs the default sort with what api responds with @@ -51,25 +53,28 @@ export interface ISubmissionsListSortMenuProps { * @example: { key: 'publish_timetamp', sort: 'desc' } * @memberof ISubmissionsListSortMenuProps */ - apiSortSync?: SortProp; + apiSortSync?: SortProp; } /** * Renders 'Sort By' button for Submission pages * * Note: supports both submission and fuzzy submission types - * @param {ISubmissionsListSortMenuProps} props - * @returns {*} + * + * @template RecordType + * @template SortableRecordType + * @param {ISubmissionsListSortMenuProps} props + * @return {*} */ -const SubmissionsListSortMenu = ( - props: ISubmissionsListSortMenuProps +const SubmissionsListSortMenu = >( + props: ISubmissionsListSortMenuProps ) => { const { submissions, sortMenuItems, handleSubmissions, apiSortSync } = props; const theme = useTheme(); const [anchorEl, setAnchorEl] = useState(null); - const [sortProp, setSortProp] = useState(apiSortSync); + const [sortProp, setSortProp] = useState | undefined>(apiSortSync); const open = Boolean(anchorEl); @@ -84,24 +89,22 @@ const SubmissionsListSortMenu = ( /** * sorts submissions by property * - * @param {SortProp} _sortProp - property and direction of sort + * @param {SortProp} _sortProp _sortProp - property and direction of sort */ - const sortSubmissions = (_sortProp: SortProp) => { - const getSortKey = (submission: SortSubmission) => + const sortSubmissions = (_sortProp: SortProp) => { + const getSortKey = (submission: Sortable) => // uncertain why this needs to be cast to FuseResult when checking for item property? - 'item' in submission - ? (submission as FuseResult).item[_sortProp.key] - : submission[_sortProp.key]; + 'item' in submission ? submission.item[_sortProp.key] : submission[_sortProp.key]; - const sortedData: TSubmission[] = + const sortedData: SortableRecordType[] = _sortProp.sort === 'asc' ? sortBy(submissions, getSortKey) : sortBy(submissions, getSortKey).reverse(); return sortedData; }; - const handleMenuItemClick = (sortKey: keyof SubmissionRecord) => { + const handleMenuItemClick = (sortKey: keyof RecordType) => { const sortDirection = !sortProp || sortProp.sort === 'desc' ? 'asc' : 'desc'; - const newSortProp: SortProp = { + const newSortProp: SortProp = { key: sortKey, sort: sortDirection }; @@ -113,7 +116,7 @@ const SubmissionsListSortMenu = ( handleClose(); }; - const getSortIcon = (sortKey: keyof SubmissionRecord) => { + const getSortIcon = (sortKey: keyof RecordType) => { if (!sortProp || sortKey !== sortProp.key) { return mdiSortReverseVariant; } @@ -153,7 +156,7 @@ const SubmissionsListSortMenu = ( marginTop: 1 }}> {objectKeys(sortMenuItems).map((key) => ( - handleMenuItemClick(key)} dense> + handleMenuItemClick(key)} dense> {sortMenuItems[key]} diff --git a/app/src/hooks/api/useSubmissionsApi.ts b/app/src/hooks/api/useSubmissionsApi.ts index 096b1bfbd..69211fb9b 100644 --- a/app/src/hooks/api/useSubmissionsApi.ts +++ b/app/src/hooks/api/useSubmissionsApi.ts @@ -4,7 +4,7 @@ import { IGetSubmissionGroupedFeatureResponse, IListSubmissionsResponse, SubmissionFeatureSignedUrlPayload, - SubmissionRecordPublished, + SubmissionRecordPublishedForPublic, SubmissionRecordWithSecurity, SubmissionRecordWithSecurityAndRootFeature } from 'interfaces/useSubmissionsApi.interface'; @@ -141,11 +141,11 @@ const useSubmissionsApi = (axios: AxiosInstance) => { }; /** - * Fetch all published submission records. + * Fetch all published submission records for public users. * - * @return {*} {Promise} + * @return {*} {Promise} */ - const getPublishedSubmissions = async (): Promise => { + const getPublishedSubmissions = async (): Promise => { const { data } = await axios.get(`api/submission/published`); return data; diff --git a/app/src/interfaces/useCodesApi.interface.ts b/app/src/interfaces/useCodesApi.interface.ts index cb0c08d7d..ff7143ab2 100644 --- a/app/src/interfaces/useCodesApi.interface.ts +++ b/app/src/interfaces/useCodesApi.interface.ts @@ -1,25 +1,21 @@ -/** - * A single code value. - * - * @export - * @interface ICode - */ -export interface ICode { - id: number; - name: string; -} +export type FeatureTypeCode = { + feature_type_id: number; + feature_type_name: string; + feature_type_display_name: string; +}; -/** - * A code set (an array of ICode values). - */ -export type CodeSet = T[]; +export type FeatureTypeWithFeaturePropertiesCode = { + feature_type: FeatureTypeCode; + feature_type_properties: FeaturePropertyCode[]; +}; -export interface IFeatureTypeProperties extends CodeSet { - id: number; - name: string; - display_name: string; - type: string; -} +export type FeaturePropertyCode = { + feature_property_id: number; + feature_property_name: string; + feature_property_display_name: string; + feature_property_type_id: number; + feature_property_type_name: string; +}; /** * Get all codes response object. @@ -28,11 +24,5 @@ export interface IFeatureTypeProperties extends CodeSet { * @interface IGetAllCodeSetsResponse */ export interface IGetAllCodeSetsResponse { - feature_type_with_properties: { - feature_type: CodeSet<{ - id: number; - name: string; - }>; - feature_type_properties: IFeatureTypeProperties[]; - }[]; + feature_type_with_properties: FeatureTypeWithFeaturePropertiesCode[]; } diff --git a/app/src/interfaces/useSubmissionsApi.interface.ts b/app/src/interfaces/useSubmissionsApi.interface.ts index 8332d7c00..0912f52e5 100644 --- a/app/src/interfaces/useSubmissionsApi.interface.ts +++ b/app/src/interfaces/useSubmissionsApi.interface.ts @@ -29,6 +29,7 @@ export type SubmissionRecord = { source_system: string; name: string; description: string; + comment: string; create_date: string; create_user: number; update_date: string | null; @@ -47,7 +48,7 @@ export type SubmissionRecordWithSecurityAndRootFeature = SubmissionRecord & { regions: string[]; }; -export type SubmissionRecordPublished = SubmissionRecord & { +export type SubmissionRecordPublishedForPublic = Omit & { security: SECURITY_APPLIED_STATUS; root_feature_type_id: number; root_feature_type_name: string; @@ -63,8 +64,10 @@ export interface ISubmissionFeature { } export type SubmissionFeatureRecordWithTypeAndSecurity = { submission_feature_id: number; + uuid: string; submission_id: number; feature_type_id: number; + source_id: string; data: Record; parent_submission_feature_id: number; record_effective_date: string; diff --git a/app/src/utils/Utils.ts b/app/src/utils/Utils.ts index a887189af..8473603d5 100644 --- a/app/src/utils/Utils.ts +++ b/app/src/utils/Utils.ts @@ -388,6 +388,6 @@ export const getFormattedIdentitySource = (identitySource: SYSTEM_IDENTITY_SOURC * @param {Obj} obj - object to iterate through * @returns {(keyof Obj)[]} array of object keys with correct typings ie: not string[] */ -export const objectKeys = (obj: Obj): (keyof Obj)[] => { +export const objectKeys = >(obj: Obj): (keyof Obj)[] => { return Object.keys(obj) as (keyof Obj)[]; }; diff --git a/database/package-lock.json b/database/package-lock.json index a79e85a22..2148757cf 100644 --- a/database/package-lock.json +++ b/database/package-lock.json @@ -503,7 +503,7 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "colorette": { @@ -519,7 +519,7 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, "core-util-is": { @@ -927,7 +927,7 @@ "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, "fastq": { @@ -995,7 +995,7 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, "function-bind": { @@ -1018,7 +1018,7 @@ "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "dev": true }, "functions-have-names": { @@ -1172,7 +1172,7 @@ "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, "has-property-descriptors": { @@ -1238,13 +1238,13 @@ "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dev": true, "requires": { "once": "^1.3.0", @@ -1287,7 +1287,7 @@ "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, "is-bigint": { @@ -1335,7 +1335,7 @@ "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true }, "is-fullwidth-code-point": { @@ -1442,7 +1442,7 @@ "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "js-tokens": { @@ -1476,7 +1476,7 @@ "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true }, "jsonparse": { @@ -1519,7 +1519,7 @@ "load-json-file": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "requires": { "graceful-fs": "^4.1.2", @@ -1542,7 +1542,7 @@ "lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", "dev": true }, "lru-cache": { @@ -1563,7 +1563,7 @@ "memorystream": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=", "dev": true }, "merge2": { @@ -1599,7 +1599,7 @@ "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true }, "nice-try": { @@ -1670,7 +1670,7 @@ "path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "dev": true }, "semver": { @@ -1682,7 +1682,7 @@ "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, "requires": { "shebang-regex": "^1.0.0" @@ -1691,7 +1691,7 @@ "shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true }, "which": { @@ -1732,7 +1732,7 @@ "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, "requires": { "wrappy": "1" @@ -1769,7 +1769,7 @@ "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", "dev": true, "requires": { "error-ex": "^1.3.1", @@ -1779,7 +1779,7 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true }, "path-key": { @@ -1869,7 +1869,7 @@ "pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true }, "postgres-array": { @@ -1880,7 +1880,7 @@ "postgres-bytea": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==" + "integrity": "sha1-AntTPAqokOJtFy1Hz5zOzFIazTU=" }, "postgres-date": { "version": "1.0.7", @@ -1949,7 +1949,7 @@ "read-pkg": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", "dev": true, "requires": { "load-json-file": "^4.0.0", @@ -2073,7 +2073,7 @@ "semver": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.2.tgz", - "integrity": "sha512-VyFUffiBx8hABJ9HYSTXLRwyZtdDHMzMtFmID1aiNAD2BZppBmJm0Hqw3p2jkgxP9BNt1pQ9RnC49P0EcXf6cA==" + "integrity": "sha1-x6BxWKgL7dBSNVt3DYLWZA+AO+c=" }, "shebang-command": { "version": "2.0.0", @@ -2190,7 +2190,7 @@ "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, "string-width": { @@ -2269,7 +2269,7 @@ "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true }, "strip-json-comments": { @@ -2333,7 +2333,7 @@ "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true }, "through": { @@ -2454,7 +2454,7 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, "v8-compile-cache": { @@ -2518,7 +2518,7 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, "xtend": { diff --git a/database/src/migrations/20220225205948_release_0.8.0.ts b/database/src/migrations/20220225205948_release_0.8.0.ts index cd22e4daf..50ad983da 100644 --- a/database/src/migrations/20220225205948_release_0.8.0.ts +++ b/database/src/migrations/20220225205948_release_0.8.0.ts @@ -21,6 +21,7 @@ export async function up(knex: Knex): Promise { const populate_user_identity_source = fs.readFileSync( path.join(__dirname, DB_RELEASE, 'populate_user_identity_source.sql') ); + const populate_system_user = fs.readFileSync(path.join(__dirname, DB_RELEASE, 'populate_system_user.sql')); const api_set_context = fs.readFileSync(path.join(__dirname, DB_RELEASE, 'api_set_context.sql')); const tr_audit_trigger = fs.readFileSync(path.join(__dirname, DB_RELEASE, 'tr_audit_trigger.sql')); @@ -83,6 +84,7 @@ export async function up(knex: Knex): Promise { -- create tables/triggers/functions/etc ${biohub_ddl} ${populate_user_identity_source} + ${populate_system_user} ${api_set_context} ${tr_audit_trigger} ${tr_generated_audit_triggers} diff --git a/database/src/migrations/20231109000001_feature_tables.ts b/database/src/migrations/20231109000001_feature_tables.ts index 15686be81..b597040f3 100644 --- a/database/src/migrations/20231109000001_feature_tables.ts +++ b/database/src/migrations/20231109000001_feature_tables.ts @@ -21,8 +21,10 @@ export async function up(knex: Knex): Promise { CREATE TABLE submission_feature( submission_feature_id integer GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1), + uuid uuid DEFAULT public.gen_random_uuid(), submission_id integer NOT NULL, feature_type_id integer NOT NULL, + source_id varchar(200), data jsonb NOT NULL, parent_submission_feature_id integer, record_effective_date date DEFAULT now() NOT NULL, @@ -36,8 +38,10 @@ export async function up(knex: Knex): Promise { ); COMMENT ON COLUMN submission_feature.submission_feature_id IS 'System generated surrogate primary key identifier.'; + COMMENT ON COLUMN submission_feature.uuid IS 'The globally unique identifier for this submission feature as supplied by BioHub.'; COMMENT ON COLUMN submission_feature.submission_id IS 'Foreign key to the submission table.'; COMMENT ON COLUMN submission_feature.feature_type_id IS 'Foreign key to the feature_type table.'; + COMMENT ON COLUMN submission_feature.source_id IS 'The unique identifier for the submission feature as supplied by the source system. May not be unique globally or within BioHub.'; COMMENT ON COLUMN submission_feature.data IS 'The json data of the submission_feature record.'; COMMENT ON COLUMN submission_feature.parent_submission_feature_id IS 'Foreign key to the submission_feature table.'; COMMENT ON COLUMN submission_feature.record_effective_date IS 'Record level effective date.'; @@ -87,6 +91,7 @@ export async function up(knex: Knex): Promise { feature_type_property_id integer GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1), feature_type_id integer NOT NULL, feature_property_id integer NOT NULL, + required_value boolean DEFAULT false, sort integer, record_effective_date date DEFAULT now() NOT NULL, record_end_date date, @@ -101,6 +106,7 @@ export async function up(knex: Knex): Promise { COMMENT ON COLUMN feature_type_property.feature_type_property_id IS 'System generated surrogate primary key identifier.'; COMMENT ON COLUMN feature_type_property.feature_type_id IS 'Foreign key to the feature_type table.'; COMMENT ON COLUMN feature_type_property.feature_property_id IS 'Foreign key to the feature_property table.'; + COMMENT ON COLUMN feature_type_property.required_value IS 'A boolean indicating if the feature property is required by the associated feature type and can be assumed to be non-null.'; COMMENT ON COLUMN feature_type_property.sort IS 'Used to provide a custom sort order to the records.'; COMMENT ON COLUMN feature_type_property.record_effective_date IS 'Record level effective date.'; COMMENT ON COLUMN feature_type_property.record_end_date IS 'Record level end date.'; diff --git a/database/src/migrations/20240104164200_submission_regions.ts b/database/src/migrations/20240104164200_submission_regions.ts index cd71aace8..753b7a0a9 100644 --- a/database/src/migrations/20240104164200_submission_regions.ts +++ b/database/src/migrations/20240104164200_submission_regions.ts @@ -2,11 +2,8 @@ import { Knex } from 'knex'; /** * Add tables: - * - submission_message - * - submission_message_type - * - * Populate tables: - * - submission_message_type + * - region_lookup + * - submission_regions * * @export * @param {Knex} knex diff --git a/database/src/seeds/08_nrm_region_look_up.ts b/database/src/migrations/20240118143600_insert_regions.ts similarity index 75% rename from database/src/seeds/08_nrm_region_look_up.ts rename to database/src/migrations/20240118143600_insert_regions.ts index 52d3fc5f4..923afc9ed 100644 --- a/database/src/seeds/08_nrm_region_look_up.ts +++ b/database/src/migrations/20240118143600_insert_regions.ts @@ -1,19 +1,25 @@ import { Knex } from 'knex'; /** - * Inserts mock submission data + * Populate tables: + * - region_lookup * * @export * @param {Knex} knex * @return {*} {Promise} */ -export async function seed(knex: Knex): Promise { +export async function up(knex: Knex): Promise { await knex.raw(` SET SCHEMA 'biohub'; SET SEARCH_PATH = 'biohub','public'; `); await insertNRMRegions(knex); + await insertENVRegions(knex); +} + +export async function down(knex: Knex): Promise { + await knex.raw(``); } const insertNRMRegions = async (knex: Knex) => { @@ -67,3 +73,61 @@ const insertNRMRegions = async (knex: Knex) => { )), 4326)))); `); }; + +const insertENVRegions = async (knex: Knex) => { + await knex.raw(` + INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Peace','9','9- Peace','AR10100000','WHSE Admin Boundary',1 + , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-124.40409603696953,57.58059686606645],[-124.4023160178972,57.57839539458228],[-124.40204884699108,57.5748037751803],[-124.4026521662937,57.57081003746923],[-124.4038934196274,57.56636651176807],[-124.40525153061618,57.561126003135065],[-124.40414600573287,57.556779737806956],[-124.40064809022765,57.555625020175846],[-124.38896422125839,57.55540218812428],[-124.37838352038011,57.5532452033308],[-124.37289838011904,57.55047746839854],[-124.37155797240332,57.54819131425279],[-124.36844783149013,57.543891760010716],[-124.36460888480087,57.53828234659238],[-124.36063966736478,57.53455507210331],[-124.35863197798777,57.53381244682536],[-124.35114603245299,57.53063314892255],[-124.34282189502429,57.526770085157594],[-124.33439410793133,57.5230217985976],[-124.32500382241732,57.52029237713099],[-124.31619955603247,57.51945361911208],[-124.30962993125755,57.51873264203019],[-124.30794489041966,57.518666176536016],[-124.30053321511633,57.51697406033768],[-124.29838182482557,57.513142703919044],[-124.29856609981195,57.50902750942174],[-124.30057636819838,57.50367998802205],[-124.29786579060148,57.50041556945511],[-124.2892302031252,57.49705637745799],[-124.28648895660768,57.496356934994395],[-124.28004960108898,57.49507098087021],[-124.2654290788327,57.49373109859831],[-124.25182669625889,57.494968729231786],[-124.24362228904975,57.497209985251814],[-124.23932599596267,57.49980802326926],[-124.23820304548755,57.50277134128228],[-124.23464875274736,57.505199750146296],[-124.22276292685713,57.50570388050508],[-124.22222861901946,57.50569667552179],[-124.21496868438858,57.50495041062003],[-124.21497464824985,57.504912364808206],[-124.21497889347094,57.504866446135125],[-124.21498313868179,57.50482052746377],[-124.21498738388237,57.504774608794136],[-124.21498954199164,57.50472866186303],[-124.21499373453769,57.50468386385369],[-124.21499589263411,57.50463791692609],[-124.21499799808902,57.50459309065701],[-124.21500010353894,57.50454826438969],[-124.2150001219152,57.50450340986105],[-124.21500008765535,57.50445967599075],[-124.2149979663317,57.50441591385898],[-124.2149958450129,57.5043721517289],[-124.214993723699,57.50432838960043],[-124.21498951533329,57.504284599210436],[-124.21498525434107,57.5042419294782],[-124.21498094072213,57.50420038040394],[-124.21497250564957,57.50415765414764],[-124.21496610500672,57.50411607681247],[-124.21495547765078,57.50407556360704],[-124.21494490295458,57.504033929746086],[-124.2149342756442,57.50399341654187],[-124.21492150868036,57.503953995730015],[-124.21490028832127,57.5039167031719],[-124.21485996885833,57.50388588016098],[-124.21482512095398,57.503871951774855],[-124.21480258470973,57.503862675601354],[-124.21473038083411,57.503843755770006],[-124.21464544426067,57.503829148911215],[-124.21455408871587,57.50381781915473],[-124.21445641948422,57.503807525176065],[-124.2143586976514,57.5037983517808],[-124.2142630628947,57.50378920658785],[-124.2141717602194,57.503776755911346],[-124.21408891103766,57.50376217697099],[-124.21400804361731,57.50374986756845],[-124.21392931594183,57.50373646574114],[-124.21384844862783,57.503724156241034],[-124.21376758136623,57.503711846691495],[-124.2136888011806,57.50369956537626],[-124.213607934023,57.503687255729034],[-124.2135271195962,57.50367382537718],[-124.21344833956704,57.503661543918724],[-124.21336747256821,57.50364923412432],[-124.21328869264161,57.50363695257073],[-124.21320787843452,57.50362352202378],[-124.21312701159445,57.50361121208234],[-124.21304823182432,57.503598930385465],[-124.21296736508828,57.50358662034638],[-124.21288655110173,57.50357318960303],[-124.2128077714881,57.503560907762854],[-124.21272690491081,57.50354859757669],[-124.21264603838587,57.503536287341106],[-124.21256725892644,57.50352400535767],[-124.21248644521437,57.50351057436976],[-124.2124055788482,57.503498263987034],[-124.21232679954527,57.50348598186031],[-124.21224593328311,57.50347367137994],[-124.21216720680094,57.50346026850364],[-124.21208634064516,57.50344795792563],[-124.21200547454175,57.50343564729824],[-124.2119266954979,57.503423364933084],[-124.2118458822261,57.503409933553705],[-124.21176501628148,57.50339762277912],[-124.21168623739409,57.503385340270725],[-124.21160537155349,57.50337302939855],[-124.21152450576527,57.50336071847696],[-124.21144577977137,57.50334731517111],[-124.21136491408954,57.503335004151886],[-124.21128613546121,57.503322721404984],[-124.2112052698834,57.50331041028814],[-124.21112445710665,57.50329697846788],[-124.21104567863482,57.5032846955778],[-124.21096481321578,57.503272384313824],[-124.2108839478491,57.503260073000334],[-124.21080522228951,57.50324666931326],[-124.21072435702925,57.50323435790217],[-124.21064349182134,57.50322204644161],[-124.21056471366022,57.50320976326495],[-124.21048384855635,57.50319745170676],[-124.21040303627468,57.503184019445584],[-124.21032425827003,57.503171736125594],[-124.21024339332496,57.5031594244204],[-124.21016461542287,57.50314714100526],[-124.21008380336097,57.50313370854908],[-124.21000293857466,57.503121396696756],[-124.20992416082909,57.50310911313845],[-124.20984329614679,57.50309680118842],[-124.20976243151688,57.50308448918884],[-124.20968370671638,57.503071084834126],[-124.20960284219288,57.50305877273707],[-124.20952197772175,57.50304646059055],[-124.20944320028687,57.503034176745544],[-124.20936238872005,57.50302074384847],[-124.20928361139006,57.50300845990847],[-124.20920274712935,57.50299614756664],[-124.20912188292104,57.502983835175364],[-124.20904315855486,57.50297043043927],[-124.20896229445293,57.502958117950314],[-124.20888143040338,57.50294580541202],[-124.20880265338413,57.502933521185405],[-124.20872178943863,57.50292120854944],[-124.20864097836686,57.50290777521148],[-124.20856220150412,57.50289549084155],[-124.20848133771739,57.50288317805847],[-124.20840047398305,57.50287086522596],[-124.20832175010523,57.50285746006041],[-124.2082408864773,57.50284514713029],[-124.20816210987363,57.502832862522006],[-124.2080812463497,57.50282054949418],[-124.20800043571832,57.5028071157649],[-124.20792165927118,57.50279483101324],[-124.20784079590604,57.50278251783838],[-124.20775993259332,57.5027702046141],[-124.2076811563004,57.50275791971916],[-124.20760034594352,57.50274448574531],[-124.20751948278956,57.502732172373875],[-124.20744070665316,57.50271988733566],[-124.20735984360324,57.50270757386666],[-124.20727903346696,57.502694139696416],[-124.20720025748707,57.50268185451496],[-124.20711939459596,57.50266954089885],[-124.20704061871864,57.50265725562233],[-124.20695980880215,57.50264382125692],[-124.2068789460698,57.50263150749378],[-124.20680017034901,57.50261922207396],[-124.20671930772073,57.502606908213124],[-124.20663844514483,57.5025945943028],[-124.20655972246054,57.50258118808832],[-124.20647885999105,57.50256887408035],[-124.20639799757394,57.502556560023066],[-124.20631922216391,57.502544274316655],[-124.20623841274254,57.50253083951051],[-124.20615963743737,57.50251855370898],[-124.20607877523071,57.50250623945643],[-124.20599791307644,57.502493925154184],[-124.20591913792552,57.5024816392095],[-124.20583832877868,57.5024682041588],[-124.20575746678321,57.50245588970957],[-124.20567869178883,57.5024436036216],[-124.2055978298974,57.50243128907476],[-124.20551702097117,57.50241785382773],[-124.2054382461333,57.50240556759646],[-124.20535738440067,57.502393252902515],[-124.20527652272042,57.502380938159114],[-124.20519780095893,57.50236753113403],[-124.2051169393851,57.502355216292955],[-124.20503816480635,57.50234292982333],[-124.20495730333658,57.50233061488474],[-124.2048764419192,57.502318299896615],[-124.20479772042853,57.50230489263328],[-124.20471685911754,57.50229257754759],[-124.20463599785897,57.50228026241246],[-124.204557223591,57.502267975656245],[-124.2044764153797,57.502254539773226],[-124.20439555427993,57.50224222449105],[-124.20431678016848,57.50222993759154],[-124.20423591917276,57.50221762221168],[-124.20415511118209,57.50220418613237],[-124.20407633722718,57.50219189908951],[-124.20399547639028,57.50217958356265],[-124.20391670253794,57.50216729642477],[-124.20383584180507,57.502154980800206],[-124.20375503408899,57.50214154447637],[-124.2036762603932,57.502129257195215],[-124.20359539981916,57.502116941423594],[-124.20349918919257,57.502120115582855],[-124.20341555310065,57.50212233970136],[-124.20333191699895,57.50212456376684],[-124.20324828088746,57.50212678777928],[-124.20316667871404,57.502130160838526],[-124.20308304258056,57.50213238474613],[-124.20299935345068,57.50213572925016],[-124.20291571729517,57.502137953051594],[-124.2028320281383,57.50214129744947],[-124.20274839196075,57.5021435211448],[-124.20266678970704,57.50214689389465],[-124.2025831005086,57.50215023813449],[-124.20249946429684,57.50215246167192],[-124.2024157750714,57.5021558058056],[-124.20233208583126,57.50215914988608],[-124.2022505365158,57.502161401729126],[-124.2021668472488,57.50216474570477],[-124.20208315796708,57.502168089627226],[-124.20199946867064,57.50217143349665],[-124.20191583237808,57.5021736566638],[-124.20183214305466,57.502177000427025],[-124.2017505406478,57.502180372609935],[-124.20166685129506,57.502183716268135],[-124.20158316192757,57.502187059873314],[-124.20149952557631,57.50218928277643],[-124.20141583618185,57.50219262627538],[-124.20133423370453,57.5021959982006],[-124.20125054428075,57.50219934159459],[-124.20116685484227,57.50220268493558],[-124.20108321843229,57.502204907574594],[-124.20099952896685,57.50220825080928],[-124.20091583948665,57.50221159399094],[-124.20083423692428,57.502214965606704],[-124.20075060046781,57.50221718803475],[-124.20066691094607,57.5022205310584],[-124.2005832214096,57.502223874028786],[-124.20049958491886,57.50222609629769],[-124.20041589535545,57.50222943916193],[-124.2003342927104,57.50223281046829],[-124.20025065618546,57.50223503257919],[-124.20016696658047,57.50223837528551],[-124.2000833300335,57.502240597290246],[-124.19999964040153,57.502243939890334],[-124.19991809076608,57.50224619029069],[-124.19983445418734,57.50224841213759],[-124.19975076451631,57.502251754579746],[-124.19966712791556,57.50225397632042],[-124.19958349130505,57.50225619800814],[-124.19949985468477,57.50225841964272],[-124.19941621805472,57.502260641224396],[-124.19933466834888,57.5022628912639],[-124.19925103169935,57.50226511274064],[-124.19916739504,57.50226733416439],[-124.19908375837089,57.50226955553506],[-124.19900012169202,57.5022717768527],[-124.19891648500337,57.50227399811713],[-124.1988349352393,57.502276247847675],[-124.19875135164322,57.502277348359584],[-124.19866771492778,57.50227956946627],[-124.19858413131956,57.50228066987212],[-124.19850054770649,57.50228177022496],[-124.19841691096667,57.502283991172675],[-124.19833332734144,57.502285091419445],[-124.19825183064586,57.50228622014155],[-124.19816824701098,57.502287320283706],[-124.19808466337126,57.50228842037289],[-124.19800107972671,57.50228952040904],[-124.1979174960773,57.50229062039221],[-124.19783396556217,57.50229059967489],[-124.19775038190555,57.50229169955216],[-124.19766685138818,57.50229167872896],[-124.19758326772435,57.5022927785003],[-124.19750182413894,57.50229278611123],[-124.1974182936193,57.502292765130484],[-124.19733476309972,57.50229274409686],[-124.19725123258026,57.50229272301031],[-124.19716770206088,57.50229270187078],[-124.19708417154162,57.5022926806784],[-124.19700064102243,57.502292659433046],[-124.19691711050334,57.50229263813484],[-124.19683363315295,57.502291496136465],[-124.19675010263651,57.502291474732324],[-124.19666662529367,57.50229033262822],[-124.1965830947799,57.502290311118365],[-124.19649961744464,57.50228916890854],[-124.19641822704763,57.50228805520302],[-124.19633474972227,57.50228691288886],[-124.19625127240197,57.502285770521645],[-124.19616779508665,57.50228462810179],[-124.1960843177764,57.502283485628915],[-124.19600084047111,57.5022823431033],[-124.19591736317086,57.502281200524706],[-124.19583388587564,57.502280057893394],[-124.19575040858543,57.50227891520914],[-124.19566698450322,57.502276651825376],[-124.19558350722549,57.502275509035435],[-124.19550008316072,57.50227324554608],[-124.19541660589549,57.502272102650544],[-124.19533318184811,57.50226983905558],[-124.19524970459541,57.50226869605426],[-124.19516628056543,57.50226643235375],[-124.19508280332522,57.50226528924673],[-124.19499937931265,57.50226302544057],[-124.19491595531004,57.50226076158161],[-124.19483253131736,57.50225849766987],[-124.1947490541046,57.50225735435159],[-124.19466563012934,57.50225509033424],[-124.19458220616403,57.50225282626405],[-124.19449878220863,57.50225056214115],[-124.19441535826316,57.50224829796535],[-124.19433193432766,57.50224603373687],[-124.19425059733122,57.5022437980471],[-124.1941671734154,57.50224153371433],[-124.19408374950952,57.502239269328804],[-124.19400032561356,57.502237004890425],[-124.19391695498207,57.50223361975342],[-124.19383353110847,57.5022313552095],[-124.1937501072448,57.50222909061285],[-124.19366668339106,57.50222682596337],[-124.19358325954727,57.50222456126119],[-124.1934998889802,57.50222117586046],[-124.19341646515875,57.50221891105263],[-124.19333304134722,57.50221664619205],[-124.19324961754566,57.5022143812787],[-124.19316624703063,57.502210995666964],[-124.1930828232514,57.50220873064816],[-124.1929993994821,57.502206465576435],[-124.19291597572274,57.502204200452],[-124.19283260525977,57.5022008146293],[-124.19274918152274,57.502198549399324],[-124.1926657577957,57.502196284116536],[-124.19258238737237,57.50219289813563],[-124.19249896366763,57.50219063274734],[-124.19241553997284,57.50218836730627],[-124.19233216958915,57.50218498116715],[-124.19224874591673,57.50218271562053],[-124.19216532225423,57.502180450021065],[-124.19208189860167,57.502178184368915],[-124.19199852827003,57.50217479801885],[-124.19191510463985,57.50217253226101],[-124.19183168101955,57.50217026645056],[-124.19174825740924,57.50216800058722],[-124.19166483380887,57.50216573467113],[-124.1915814635417,57.50216234805732],[-124.19149803996368,57.50216008203578],[-124.19141461639559,57.502157815961255],[-124.19133327975955,57.502155578471786],[-124.19124985621119,57.50215331229313],[-124.19116643267274,57.50215104606168],[-124.19108306248219,57.502147659132696],[-124.19099963896612,57.5021453927957],[-124.19091626880282,57.502142005761314],[-124.19083284530909,57.5021397393188],[-124.19074947517306,57.5021363521789],[-124.19066610505189,57.50213296498643],[-124.19058273494558,57.50212957774109],[-124.19049936485412,57.502126190443136],[-124.19041604813508,57.50212168244803],[-124.19033267807579,57.502118295044625],[-124.19024930803135,57.50211490758856],[-124.19016599136671,57.50211039943544],[-124.19008262135443,57.50210701187399],[-124.18999930472687,57.50210250361555],[-124.18991598811905,57.502097995304545],[-124.18983261815627,57.502094607585036],[-124.18974930158552,57.50209009916862],[-124.18966598503454,57.50208559069965],[-124.18958266850332,57.50208108217804],[-124.18949935199187,57.50207657360384],[-124.18941598211319,57.50207318562087],[-124.18933266563882,57.50206867694125],[-124.18924934918418,57.50206416820908],[-124.18916603274936,57.5020596594242],[-124.18908271633427,57.50205515058674],[-124.18899939993892,57.50205064169664],[-124.1889160301617,57.50204725339759],[-124.18883271380346,57.502042744402125],[-124.18874939746496,57.50203823535411],[-124.18866608114625,57.50203372625336],[-124.18858271143584,57.502030337743534],[-124.18849939515421,57.50202582853756],[-124.18841602547595,57.50202243992239],[-124.1883327092314,57.502017930611025],[-124.18824933958534,57.5020145418905],[-124.18816596995413,57.50201115311721],[-124.18808265376397,57.50200664364786],[-124.18799928416496,57.50200325476926],[-124.1879159145808,57.5019998658379],[-124.18783254501152,57.50199647685375],[-124.18774917545707,57.50199308781698],[-124.18766575247908,57.50199081937065],[-124.1875823829519,57.50198743022833],[-124.18750104690614,57.501985190374796],[-124.18741767740602,57.50198180112839],[-124.18733425447255,57.50197953247228],[-124.18725083154902,57.5019772637633],[-124.18716740863547,57.50197499500164],[-124.18708393227632,57.501973846830026],[-124.18700050938024,57.50197157796272],[-124.18691703303361,57.50197042968547],[-124.1868356970634,57.501968189421476],[-124.18675222072919,57.5019670410399],[-124.18666869093221,57.50196701324812],[-124.18658521460566,57.50196586476071],[-124.18650168481138,57.50196583686314],[-124.18641820849243,57.50196468826995],[-124.18633676560873,57.5019646889834],[-124.18625318233715,57.501965781570966],[-124.18616965254334,57.50196575346297],[-124.18608606926462,57.50196684594457],[-124.1860045728889,57.50196796709521],[-124.18592098960059,57.50196905947213],[-124.18583740630747,57.50197015179608],[-124.18575376951476,57.50197236470938],[-124.1856722196202,57.50197460629697],[-124.1855885828081,57.50197681910541],[-124.18550494598621,57.501979031860834],[-124.18542334255817,57.50198239393674],[-124.18533965220739,57.501985727229574],[-124.18525804875033,57.5019890892031],[-124.18517435837033,57.50199242239107],[-124.18509066797566,57.50199575552581],[-124.18500901095825,57.5020002379874],[-124.18492526701262,57.50200469165928],[-124.18484360995652,57.50200917401848],[-124.18475986597184,57.5020136275853],[-124.18467820887703,57.502018109842034],[-124.18459446485326,57.50202256330386],[-124.18451066727837,57.502028137354344],[-124.18442895658912,57.50203374009861],[-124.1843452125017,57.50203819340219],[-124.18426350176644,57.50204379604402],[-124.18417970409621,57.50204936988423],[-124.1840979397688,57.50205609306528],[-124.18401414204719,57.502061666800444],[-124.18393243121264,57.50206726923711],[-124.183850666803,57.50207399226482],[-124.1837668690057,57.50207956584288],[-124.1836851045403,57.50208628876799],[-124.1836012531332,57.502092982882424],[-124.18351948860966,57.502099705704985],[-124.18343569070713,57.50210527907261],[-124.18335392612786,57.50211200179245],[-124.1832700746057,57.50211869569644],[-124.1831883099683,57.50212541831364],[-124.18310440481427,57.50213323275373],[-124.18302264011632,57.50213995526836],[-124.18294087538945,57.502146677732334],[-124.18285702371807,57.50215337137378],[-124.18277525893305,57.502160093735036],[-124.18269140720292,57.5021667872712],[-124.182609588772,57.50217463017109],[-124.18252573698062,57.50218132360193],[-124.18244397207687,57.502188045757926],[-124.18236012022678,57.50219473908345],[-124.18227835526488,57.50220146113684],[-124.18219450335602,57.502208154357234],[-124.18211273833602,57.502214876307875],[-124.18203097328708,57.50222159820799],[-124.18194712129022,57.50222829127108],[-124.18186535618318,57.50223501306846],[-124.18178150412757,57.50224170602626],[-124.18169973896235,57.50224842772105],[-124.18161588684802,57.50225512057364],[-124.18153412162467,57.50226184216579],[-124.18145032307363,57.502267414272175],[-124.18136855779458,57.50227413576168],[-124.1812847591922,57.50227970776287],[-124.1812030474868,57.50228530850906],[-124.18111924883551,57.50229088040516],[-124.18103539652533,57.50229757288879],[-124.18095368474481,57.5023031734803],[-124.18086993965683,57.50230762457734],[-124.1807882278303,57.5023132250664],[-124.18070442905669,57.50231879669889],[-124.18062068390513,57.50232324763764],[-124.18053902565734,57.50232772733184],[-124.1804552804667,57.50233217816546],[-124.18037362218024,57.502336657757205],[-124.18028987695058,57.502341108485815],[-124.18020613170131,57.50234555916128],[-124.18012447335676,57.50235003859868],[-124.18004072806845,57.50235448916913],[-124.17995698276052,57.502358939686324],[-124.17987329110171,57.50236226951008],[-124.17979163268201,57.50236674874134],[-124.17970788731793,57.50237119910037],[-124.17962414193424,57.502375649406304],[-124.17954248345646,57.502380128483345],[-124.17945873803373,57.502384578684214],[-124.17937504627481,57.50238790819167],[-124.17929130081534,57.50239235828618],[-124.17920964226245,57.502396837157136],[-124.17912595045473,57.50240016650643],[-124.17904220493911,57.5024046164428],[-124.17895845940386,57.50240906632591],[-124.17887476754721,57.50241239551596],[-124.17879310890221,57.50241687412896],[-124.17870941701389,57.50242020321402],[-124.17862572511092,57.50242353224589],[-124.17854197948526,57.50242798186452],[-124.17845828755051,57.502431310790186],[-124.17837668252872,57.50243466850542],[-124.17829293684936,57.502439117965956],[-124.17820924486828,57.502442446733546],[-124.17812555287254,57.50244577544797],[-124.17804186086214,57.502449104109225],[-124.17796025576536,57.50245246156687],[-124.17787661745345,57.50245466948366],[-124.17779292540168,57.50245799798697],[-124.17770923333525,57.50246132643722],[-124.17762559498928,57.502463534194696],[-124.177541902896,57.502466862538725],[-124.17745826452811,57.50246907019009],[-124.17737665933694,57.50247242728654],[-124.1772930209472,57.502474634833085],[-124.17720938254777,57.50247684232666],[-124.17712574413862,57.50247904976702],[-124.17704210571975,57.50248125715445],[-124.17695846729116,57.50248346448883],[-124.17687696953935,57.50248457999738],[-124.17679333109389,57.502486787227],[-124.17670969263868,57.50248899440348],[-124.17662610793839,57.502490080887775],[-124.17654252323331,57.50249116731917],[-124.17645893852344,57.50249225369743],[-124.17637535380882,57.50249334002278],[-124.17629385601872,57.502494455170876],[-124.17621027129454,57.502495541391646],[-124.17612668656557,57.502496627559296],[-124.17604315561364,57.50249659303501],[-124.17595962466184,57.50249655845789],[-124.17587603992345,57.502497644466686],[-124.17579459589865,57.50249763866735],[-124.17571106494476,57.50249760393268],[-124.1756275877851,57.502496448506356],[-124.17554411063053,57.502495293027216],[-124.175460633481,57.50249413749511],[-124.175377210138,57.5024918612716],[-124.17529587373326,57.50248961388688],[-124.17521245041004,57.502487337559074],[-124.17512902709682,57.5024850611786],[-124.17504565760476,57.50248166410666],[-124.1749622881276,57.502478266982074],[-124.17487891866534,57.50247486980482],[-124.17479560303654,57.50247035193647],[-124.17471437435408,57.50246586291633],[-124.17463100494119,57.50246246558233],[-124.17454768936902,57.502457947557396],[-124.17446442764495,57.502452308841576],[-124.17438111211484,57.50244779071128],[-124.17429785043771,57.502442151890314],[-124.17421453494966,57.502437633654836],[-124.1741312733195,57.502431994728695],[-124.17405009863792,57.502426384661284],[-124.17396683705677,57.50242074563136],[-124.17388357550035,57.50241510654885],[-124.17380031396861,57.50240946741373],[-124.17371705246157,57.50240382822614],[-124.17363379097927,57.50239818898598],[-124.17355052952165,57.502392549693184],[-124.1734672680887,57.50238691034788],[-124.1733860936014,57.50238129987189],[-124.17330283221752,57.50237566042283],[-124.17321957085834,57.50237002092116],[-124.17313630952387,57.502364381366945],[-124.17305299434433,57.502359862397824],[-124.1729697330568,57.502354222738425],[-124.17288647179402,57.502348583026546],[-124.17280315667881,57.502344063899386],[-124.17272192850152,57.50233957365205],[-124.17263861342565,57.50233505442105],[-124.17255529836955,57.502330535137546],[-124.172507691097,57.50227829137432],[-124.17246992575944,57.502238519287346],[-124.17243007359076,57.50219871825399],[-124.17239027539453,57.50215779657295],[-124.17235042339388,57.50211799551838],[-124.17231057147666,57.50207819445312],[-124.17226863274166,57.502038364437745],[-124.17222669409455,57.50199853441051],[-124.17218684243213,57.50195873331199],[-124.172142817064,57.50191887431999],[-124.17210087868054,57.50187904425688],[-124.17205894038497,57.501839214181736],[-124.17201486138978,57.5018004757879],[-124.17197292327103,57.501760645688236],[-124.1719288983566,57.50172078663176],[-124.1718869604158,57.501680956507485],[-124.17184293568381,57.50164109742512],[-124.171800997921,57.50160126727628],[-124.17175697337142,57.501561408168],[-124.1717149818786,57.501522698630815],[-124.17167304438046,57.501482868445436],[-124.17162902010216,57.50144300929852],[-124.17158916964785,57.50140320803891],[-124.17154723241337,57.50136337781769],[-124.17150529526678,57.50132354758458],[-124.17146544506723,57.50128374629162],[-124.17142559495112,57.501243944988076],[-124.17138579883574,57.501203023038144],[-124.17134594888766,57.50116322171331],[-124.17130818587329,57.501123449332546],[-124.17127047685842,57.50108255630679],[-124.17123480084892,57.50104281286305],[-124.1711991788365,57.50100194877554],[-124.17116355690065,57.50096108467991],[-124.17112996795596,57.50092137016904],[-124.1710964330068,57.50088053501561],[-124.17106498496416,57.50083972881362],[-124.17103353698907,57.50079892260563],[-124.17100422983934,57.500757024715924],[-124.17097486882552,57.50071624745636],[-124.17094759470011,57.50067549915201],[-124.17092246138643,57.500633659169395],[-124.17089732812802,57.50059181918347],[-124.17087428174344,57.50055000815587],[-124.17085332222571,57.5005082260875],[-124.17083236275401,57.50046644401743],[-124.17081349013996,57.500424690907955],[-124.17079675831002,57.50038184612547],[-124.17078211332462,57.50033903030548],[-124.17076955517663,57.50029624344864],[-124.17075699705694,57.500253456592205],[-124.1707486664996,57.50020960702868],[-124.17074242275876,57.500165786429996],[-124.1707361790323,57.50012196583273],[-124.17073410890515,57.50007820316424],[-124.17073203878275,57.5000344404975],[-124.1707300226,57.49998955719807],[-124.17073217999226,57.49994473182806],[-124.17073433737941,57.49989990645967],[-124.1707385815417,57.49985511005672],[-124.17074282569398,57.499810313655374],[-124.17074915661158,57.49976554621916],[-124.17075762822077,57.49971968711367],[-124.17076604587615,57.49967494864358],[-124.17077451744478,57.499629089540754],[-124.1707850757583,57.499583259402115],[-124.17079766687696,57.49953857886107],[-124.17080822513745,57.49949274872417],[-124.17082087013031,57.49944694755071],[-124.17083351509274,57.49940114637777],[-124.17084824677754,57.49935537416749],[-124.17086083774647,57.49931069362931],[-124.17087556936335,57.499264921419645],[-124.17089030094472,57.499219149210035],[-124.17090503249064,57.49917337700067],[-124.17091976400107,57.499127604791525],[-124.17093444154851,57.49908295321596],[-124.17094917298849,57.499037181007196],[-124.17096390439302,57.49899140879862],[-124.170978581836,57.4989467572235],[-124.17099325924451,57.4989021056486],[-124.1710079905436,57.49885633344045],[-124.17102058115952,57.498811652906646],[-124.17103317174583,57.49876697237338],[-124.17104570837878,57.49872341247379],[-124.17105829890633,57.49867873194161],[-124.1710708894043,57.498634051409944],[-124.17108139316169,57.49858934192063],[-124.17109189689435,57.49854463243236],[-124.17110448730843,57.498499951902744],[-124.17111499098922,57.49845524241606],[-124.17112554856631,57.49840941229734],[-124.17113605219733,57.498364702812616],[-124.17114660972389,57.49831887269589],[-124.17115502661139,57.498274134256],[-124.17116558408989,57.49822830414136],[-124.17117608762383,57.498183594660524],[-124.17118455836552,57.49813773559134],[-124.17119511577057,57.49809190547985],[-124.17120353255073,57.49804716704576],[-124.17121408990775,57.49800133693638],[-124.171222560563,57.497955477872225],[-124.17123311787164,57.497909647765034],[-124.1712436751548,57.49786381765894],[-124.17125214574372,57.49781795859822],[-124.17126264906247,57.49777324912659],[-124.17127111960835,57.49772739006845],[-124.1712816767951,57.49768155996655],[-124.1712922339564,57.49763572986577],[-124.17130279109223,57.49758989976582],[-124.17131329428841,57.4975451902991],[-124.17132385137373,57.497499360201196],[-124.1713344084336,57.497453530104245],[-124.171344965468,57.4974077000083],[-124.17135755520815,57.49736301949917],[-124.17136811218951,57.49731718940503],[-124.1713807018725,57.49727250889723],[-124.17139125880084,57.49722667880483],[-124.17140384842664,57.49718199829834],[-124.17141857856492,57.497136226113476],[-124.17143116812865,57.49709154560796],[-124.1714437576628,57.497046865102945],[-124.17145843379153,57.49700221355066],[-124.17147310988578,57.496957561998556],[-124.17148778594556,57.49691291044651],[-124.17150246197086,57.49686825889459],[-124.17151917066899,57.4968247569255],[-124.17153593323545,57.49678013432453],[-124.17155264185656,57.49673663235452],[-124.17156940434487,57.49669200975271],[-124.17158819949381,57.49664853673199],[-124.17160699459976,57.49660506371026],[-124.17162578966273,57.49656159068748],[-124.17164667128044,57.49651814661291],[-124.17166749894821,57.49647582316785],[-124.17168838047118,57.49643237908993],[-124.17170920804553,57.4963900556415],[-124.17173212216197,57.4963477611392],[-124.17175503622741,57.49630546663446],[-124.17178003682574,57.49626320107442],[-124.17180498347064,57.49622205614221],[-124.17182998395857,57.49617979057571],[-124.17185701707179,57.49613867458288],[-124.17188405012651,57.496097558586044],[-124.17191311580096,57.49605759216093],[-124.17194014873736,57.496016476155496],[-124.17197130085914,57.49597653866494],[-124.17200245291545,57.49593660116842],[-124.17203360490632,57.49589666366593],[-124.17206684339352,57.49585675510003],[-124.17210002792237,57.4958179671579],[-124.17213738549862,57.4957792370915],[-124.17217474299878,57.49574050701591],[-124.17221413309113,57.49570292650184],[-124.17225560965706,57.495665374916875],[-124.17229911880798,57.49562897288954],[-124.1723426278756,57.49559257084894],[-124.17238822340543,57.495556197732654],[-124.17243590539158,57.495519853538426],[-124.17248353340976,57.49548462995859],[-124.17253324787946,57.49544943529791],[-124.1725849949213,57.49541539018429],[-124.17263679574259,57.49538022442088],[-124.17269062913174,57.49534620820134],[-124.17274446242456,57.49531219196085],[-124.17280038215162,57.49527820463035],[-124.17285624791323,57.49524533790761],[-124.17291420010531,57.49521250009113],[-124.1729721521973,57.4951796622502],[-124.17303010418921,57.495146824384705],[-124.17309014260276,57.49511401542094],[-124.17315012705613,57.49508232706134],[-124.1732122517826,57.49504954696919],[-124.17327432254913,57.49501788747912],[-124.1733363932123,57.49498622796078],[-124.17339846377212,57.49495456841398],[-124.17346053422854,57.49492290883893],[-124.17352463724622,57.494892398785304],[-124.17358879400436,57.49486076807089],[-124.17365295065574,57.49482913732614],[-124.1737170533609,57.49479862718143],[-124.17378115596321,57.49476811700638],[-124.17384531229823,57.494736486170716],[-124.17390941469283,57.4947059759349],[-124.17397351698457,57.49467546566865],[-124.17403767300323,57.49464383474191],[-124.17410177508728,57.494613324415056],[-124.17416587706843,57.494582814057765],[-124.17422997894671,57.49455230367026],[-124.1742941345442,57.49452067262201],[-124.17435614972628,57.49449013326743],[-124.17441816480874,57.494459593884706],[-124.17448023360804,57.49442793384305],[-124.17454224848939,57.49439739440352],[-124.17460431708382,57.494365734305276],[-124.17466429909472,57.494334045277306],[-124.17472422719652,57.49430347685332],[-124.17478420900926,57.49427178777246],[-124.17484622339177,57.494241248194],[-124.17490823767464,57.49421070858723],[-124.17497233832988,57.49418019784863],[-124.1750385253526,57.494149715975105],[-124.17510465847157,57.49412035469943],[-124.17517079148843,57.49409099339133],[-124.17523901086878,57.49406166094305],[-124.17530931660802,57.494032357351365],[-124.17537962223889,57.49400305372298],[-124.17544987397415,57.49397487068811],[-124.17552221206485,57.49394671650427],[-124.1755946038313,57.493917441651114],[-124.17566897438145,57.49389043690503],[-124.17573922569416,57.493862253718724],[-124.17618045637329,57.49376070930196],[-124.17653709806338,57.49368154181543],[-124.17689577096597,57.493603522865946],[-124.17725444239657,57.49352550294566],[-124.17761514506637,57.493448631540026],[-124.17797381355975,57.493370609672795],[-124.17833044785672,57.493291437360796],[-124.17868296151599,57.493211085783145],[-124.17903146189185,57.4931273137112],[-124.17937386250406,57.49304009235089],[-124.17970807689335,57.49294939292887],[-124.18003421232767,57.49285297424643],[-124.18034001854254,57.492745060341065],[-124.18054284970881,57.49256395617059],[-124.1806386890028,57.492349976146784],[-124.18062517817178,57.49215242826722],[-124.18049691800806,57.49195329597705],[-124.18037288551267,57.49175310058859],[-124.18035750449927,57.491551041454294],[-124.18040476690909,57.49134872605141],[-124.18047508549273,57.491144486312685],[-124.18054123072412,57.490940188956436],[-124.18057190836184,57.49073540187652],[-124.18055668759816,57.490529981058536],[-124.180535208205,57.49032447385072],[-124.18054710909782,57.490119427610765],[-124.18057569979955,57.489914611868954],[-124.18061263511719,57.48970991138621],[-124.1806537424767,57.48950526854269],[-124.18069062335044,57.489301688739175],[-124.18410018474952,57.45502531446185],[-124.12101685115753,57.44933276477622],[-124.12132324939336,57.44920930400977],[-124.12162147573012,57.449082361891094],[-124.12187923764687,57.44893017198667],[-124.12217948859524,57.44880437893438],[-124.12249179892699,57.44868772808246],[-124.12280821993573,57.44857225650791],[-124.1231104383891,57.44844873222064],[-124.12338853193859,57.44830692168296],[-124.1236482549547,57.44815699925662],[-124.12391620105409,57.44800943628009],[-124.12421035201395,57.44788018789259],[-124.12455258159116,57.44779087126404],[-124.12490478731426,57.44771066670747],[-124.12524109329097,57.44761453585251],[-124.1255595257244,57.447500208018646],[-124.12586786798362,57.44737900767625],[-124.12617609793601,57.447260047753275],[-124.12651053351021,57.4471594017673],[-124.12683882606295,57.447056424839836],[-124.12712495521392,57.446920328030295],[-124.12742720167904,57.44679567344441],[-124.12773147487142,57.44667216838574],[-124.12803377249612,57.446546391869404],[-124.12834807507556,57.446430877554384],[-124.12867246423168,57.44632223402939],[-124.12900880351458,57.44622497309977],[-124.12935895663286,57.44614360654735],[-124.12973328787554,57.44607940288069],[-124.13011984537289,57.44602097860991],[-124.1304921453744,57.44595562262195],[-124.13082375886125,57.445869503536834],[-124.1310946180668,57.44574663785832],[-124.13129671780538,57.44558018423671],[-124.13144804196298,57.44538609717507],[-124.1315646008843,57.4451780602991],[-124.13166432357762,57.44497314840556],[-124.13173876540714,57.44477348434218],[-124.13176977835258,57.444566475731314],[-124.13176536791858,57.44435896430896],[-124.13171900857365,57.44415646415142],[-124.13160569673308,57.443958620234156],[-124.13150494313233,57.44375983318959],[-124.13148364488319,57.44355656748681],[-124.13151668686857,57.44335070929806],[-124.13156014670527,57.443144999049636],[-124.13156812934741,57.44293990649229],[-124.13152807864537,57.44273637469797],[-124.13146297006446,57.442533608484645],[-124.13139161138594,57.442330753519414],[-124.13133280999564,57.44212695550522],[-124.13130115071861,57.44192242156556],[-124.1313031038604,57.44171275823438],[-124.13135681570847,57.44151055795663],[-124.13157534014341,57.4413488234388],[-124.13178580357162,57.44118136746073],[-124.1318954922688,57.44098556847364],[-124.13198670317571,57.440783900445695],[-124.13205510457378,57.440579665950835],[-124.13209844836362,57.44037619713346],[-124.13208975969043,57.44017086843944],[-124.13204981908922,57.439965096166304],[-124.13202237966057,57.439759501367746],[-124.13204911011363,57.43955467554906],[-124.13209903298774,57.43934457227713],[-124.132182015159,57.43914054498326],[-124.13231823051275,57.43895633601509],[-124.13259199865428,57.43881556860974],[-124.13294690229968,57.438720805454196],[-124.13331051773199,57.438660926458105],[-124.13369205850402,57.43861812078855],[-124.13406559440521,57.438568472487646],[-124.13440508460998,57.438490307011755],[-124.13470334809604,57.438359974749915],[-124.13494903389241,57.43819637786826],[-124.135136987205,57.438019627692526],[-124.1352859588269,57.43782999018697],[-124.13541025815897,57.43763327493531],[-124.1355241395445,57.43743641200236],[-124.13559048751402,57.437231026176924],[-124.13566297494266,57.43702797002338],[-124.13583216946805,57.43685095337464],[-124.13608359677025,57.43669752815527],[-124.13635974717496,57.43655005934536],[-124.13660716835878,57.43639321247773],[-124.1368157183706,57.43622123743174],[-124.13701204113534,57.43604348231424],[-124.13719191540893,57.43586100875483],[-124.13735112006009,57.435674878400334],[-124.13747934885417,57.435482702769306],[-124.13757868541533,57.4352845114425],[-124.13765735333602,57.43508266354627],[-124.13773190884777,57.43487963611147],[-124.13781676985873,57.43467899720028],[-124.13791199102984,57.43447962623435],[-124.13797815655187,57.43427760139478],[-124.1379839648136,57.43407360108027],[-124.13795024817473,57.43386792011145],[-124.13793741798415,57.43366141342727],[-124.13794766662984,57.433451869403015],[-124.13788643191795,57.43325476971863],[-124.1377181378446,57.4330729747011],[-124.13750999267046,57.432896222009056],[-124.13732498255223,57.43271531119506],[-124.1371674378321,57.432526939680486],[-124.13700775678456,57.432339659066365],[-124.13682258724654,57.43216210929564],[-124.13659077001856,57.432000718558506],[-124.13632710599552,57.4318512109331],[-124.13605067163508,57.43170712850181],[-124.13577188202214,57.43156861875945],[-124.13548032203938,57.43143553408927],[-124.13520159137211,57.43129590261774],[-124.13494002067043,57.43114642182752],[-124.13468486565397,57.430993667476926],[-124.13443190546515,57.430838701083815],[-124.13418311325896,57.430683793306],[-124.1339493430999,57.430520127475],[-124.13370263788194,57.43036524837507],[-124.1334195908915,57.43022891581397],[-124.1331237736427,57.430098008071646],[-124.13282357277988,57.429971522757675],[-124.1325147674521,57.429850521257364],[-124.13219072409706,57.42974275864426],[-124.13187106829582,57.429630572197325],[-124.1315796467557,57.429495238005146],[-124.13128806230067,57.42936326483165],[-124.13095481495708,57.429273309664545],[-124.13057771100566,57.429227583678255],[-124.13021612354974,57.42916301450621],[-124.12985908832285,57.429090659721524],[-124.12950874343201,57.42900942842895],[-124.12916273093157,57.42892489380464],[-124.1288167750345,57.42883923772853],[-124.12847082069358,57.42875358074917],[-124.12812486790885,57.428667922866474],[-124.12777897177777,57.42858114353321],[-124.12743307722297,57.428494363297155],[-124.12708926707644,57.42840761181103],[-124.12674337566924,57.428320829774734],[-124.12639754097593,57.42823292628923],[-124.12605373554828,57.42814617211676],[-124.12570784887504,57.42805938737777],[-124.12527345132231,57.42795003509373],[-124.12525914753702,57.427944224594235],[-124.1251937667416,57.42791750221362],[-124.12512844121241,57.427889659255605],[-124.12506311577872,57.427861816265725],[-124.12499992841767,57.42783288238457],[-124.12493674115264,57.42780394847377],[-124.12487355398362,57.427775014533374],[-124.12481042209419,57.42774496001804],[-124.12474723511897,57.4277160260184],[-124.12468410342701,57.42768597144401],[-124.12462310981262,57.42765482598687],[-124.12455997832005,57.427624771354466],[-124.12449898490516,57.42759362584141],[-124.12443793639575,57.427563600845694],[-124.12437694317862,57.42753245527764],[-124.12431595006127,57.42750130968211],[-124.12425495704365,57.42747016405926],[-124.12419396412582,57.42743901840886],[-124.1241329713077,57.42740787273094],[-124.12407203379416,57.42737560648104],[-124.12401312394877,57.427344490449926],[-124.12395213142995,57.42731334469071],[-124.12389119422083,57.427281078359734],[-124.12383020190326,57.42724993254566],[-124.12377129244983,57.42721881640953],[-124.12371030033,57.42718767054156],[-124.12364930830996,57.427156524646264],[-124.12358831638964,57.427125378723424],[-124.12352732456911,57.42709423277313],[-124.12346633284831,57.42706308679539],[-124.12340534122725,57.42703194079021],[-124.12334221172813,57.42700188558951],[-124.12328116507912,57.426971860072236],[-124.12322011852638,57.42694183452752],[-124.12315698932275,57.426911779240264],[-124.12309386021877,57.426881723923465],[-124.12303067597976,57.426852789120744],[-124.12296749183675,57.42682385428845],[-124.12290430778972,57.42679491942653],[-124.12283898585966,57.4267670753584],[-124.12277574676249,57.42673926097966],[-124.12271042502184,57.426711416849],[-124.1226451033767,57.42668357268666],[-124.12257764384671,57.42665681931171],[-124.12251221189311,57.42663121617113],[-124.1224447525492,57.42660446272925],[-124.12237718279307,57.42657995033956],[-124.12230758565245,57.42655428764425],[-124.12223996081617,57.42653089572823],[-124.1221703085982,57.426506353504315],[-124.12209851848564,57.4264829020552],[-124.12202875591942,57.42646060084319],[-124.12195691071462,57.426438269860654],[-124.12188506559404,57.42641593883936],[-124.12181108257012,57.426394698585625],[-124.1217391823453,57.42637348802809],[-124.12166514421106,57.42635336823561],[-124.12159110615505,57.42633324840196],[-124.12151498546417,57.42631309878606],[-124.12144089228514,57.42629409941095],[-124.12136471646915,57.42627507025118],[-124.12128854072925,57.42625604104757],[-124.12121236506546,57.426237011800225],[-124.12113613418832,57.426219103051295],[-124.12105990338287,57.42620119425847],[-124.12098158994353,57.42618325567245],[-124.1209032212817,57.42616643758207],[-124.12082699069119,57.42614852865513],[-124.12074862216906,57.42613171047319],[-124.12067025371614,57.42611489224487],[-124.12059188533244,57.426098073970024],[-124.12051143431833,57.42608122589207],[-124.12043306607403,57.42606440752312],[-124.12035464258672,57.426048709649585],[-124.12027627447857,57.426031891187705],[-124.120195768427,57.42601616345922],[-124.12011740045595,57.42599934490329],[-124.12003897723271,57.425983646842504],[-124.11996060939782,57.42596682819361],[-124.11988010361412,57.425951100272925],[-124.11980173591635,57.425934281529855],[-124.11972331295718,57.42591858328173],[-124.11964494539554,57.42590176444576],[-124.11956657790313,57.4258849455633],[-124.1194882104799,57.42586812663453],[-124.11940984312591,57.42585130765916],[-124.11933147584112,57.42583448863751],[-124.11925310862554,57.425817669569305],[-124.11917474147918,57.425800850454785],[-124.1190985124331,57.42578294053192],[-124.11902228345873,57.42576503056526],[-124.1189439718759,57.42574709077304],[-124.11886774304591,57.42572918071741],[-124.11879359696572,57.425711300401844],[-124.11871742363796,57.42569226971888],[-124.11864333306218,57.42567326877857],[-124.11856715988559,57.42565423800921],[-124.11849312482515,57.42563411644427],[-124.1184211725154,57.42561402462791],[-124.11834713761027,57.42559390298152],[-124.11827524082622,57.42557269054553],[-124.11820334412224,57.42555147807081],[-124.11813144749834,57.42553026555716],[-124.11806168899986,57.42550796225981],[-124.11799193058309,57.42548565892599],[-124.11792222763094,57.42546223501542],[-124.11785252476452,57.4254388110684],[-124.11778496003184,57.42541429634486],[-124.11771739538615,57.42538978158703],[-124.1176478589509,57.42536299591306],[-124.11757832261347,57.42533621020297],[-124.11750884176868,57.42530830391672],[-124.11743733376922,57.425279247249335],[-124.11736588127786,57.42524907000408],[-124.1172944843008,57.42521777218109],[-124.11722522549222,57.425185383589366],[-124.11715388415517,57.4251529651522],[-124.1170825429396,57.425120546677114],[-124.11701339530629,57.42508591689776],[-124.11694424779874,57.42505128708299],[-124.11687718305548,57.425016687047204],[-124.11681225648563,57.42498099625443],[-124.1167473854542,57.42494418489153],[-124.1166845971806,57.424907403315174],[-124.11662180902829,57.42487062171002],[-124.1165631862539,57.42483389971468],[-124.11650670164246,57.42479608697565],[-124.1164522997673,57.424758304034704],[-124.1163999806221,57.424720550894314],[-124.11635188224842,57.42468173684086],[-124.1163058111612,57.42464407313321],[-124.11626396082688,57.42460534852019],[-124.11622413775956,57.424567774258385],[-124.11618853542629,57.424529139097665],[-124.11615704295028,57.424491684118614],[-124.11612971575067,57.42445428878558],[-124.11610660924997,57.42441583256272],[-124.11608761256657,57.424378556529135],[-124.11607272568673,57.42434246068637],[-124.11606414206832,57.42430533378665],[-124.1160596682247,57.42426938708021],[-124.11606144217487,57.42423352985661],[-124.11607154649441,57.424197791942525],[-124.1160879540037,57.42416102297124],[-124.11611263640387,57.4241254938431],[-124.11614148393264,57.42409002436331],[-124.11617449657852,57.42405461452915],[-124.1162158949282,57.42401820344922],[-124.11625932035054,57.423982942719434],[-124.1163069662801,57.423946621085115],[-124.11635872184749,57.42391147961782],[-124.11641469789609,57.42387527723643],[-124.1164727564122,57.42383910465306],[-124.11653289738996,57.42380296186495],[-124.1165951208236,57.42376684886931],[-124.1166573995569,57.42372961530735],[-124.11672170531881,57.423693532071724],[-124.11678814893679,57.42365635808367],[-124.11685250986288,57.42361915424843],[-124.11691687066326,57.423581950382975],[-124.11698123133792,57.42354474648719],[-124.11704564729271,57.4235064220231],[-124.11710589800971,57.42346803790758],[-124.11716614860526,57.42342965376561],[-124.11722223397943,57.42339120997968],[-124.11727629209133,57.423351615825275],[-124.11732618499941,57.423311962035676],[-124.1173719127164,57.42327224861569],[-124.11741555779656,57.42323250537534],[-124.11745301056119,57.42319155216868],[-124.11748421563416,57.423150509539],[-124.11751131096192,57.42310828675704],[-124.11753210324132,57.4230670950972],[-124.11755086833583,57.423024753094055],[-124.11756963338858,57.42298241109004],[-124.11758637126319,57.422938918743945],[-124.11760305371097,57.42289654693502],[-124.1176197915097,57.42285305458796],[-124.11763444675168,57.42280953243809],[-124.11764904657312,57.42276713082565],[-124.11766370174864,57.42272360867578],[-124.11767627437919,57.42268005672405],[-124.11768890236668,57.422635384235534],[-124.11769939243267,57.422591802483545],[-124.11770993785959,57.422547100195004],[-124.11772042787717,57.42250351844469],[-124.11773097325496,57.42245881615778],[-124.11773943611105,57.422414084071214],[-124.11774784356368,57.42237047252283],[-124.11775630638031,57.422325740438495],[-124.11776274207034,57.422279858018015],[-124.11776912236218,57.42223509613608],[-124.11777550263898,57.422190334255404],[-124.11777980041848,57.42214554257624],[-124.11778618066774,57.42210078069861],[-124.11779053380644,57.42205486848562],[-124.11779483155298,57.4220100768111],[-124.11779918467089,57.42196416460141],[-124.11780139992706,57.42191934313045],[-124.11780575302669,57.421873430923945],[-124.11780802365085,57.42182748891966],[-124.11781023888867,57.421782667453726],[-124.11781250950203,57.421736725452966],[-124.11781269765244,57.42169075365446],[-124.11781491287682,57.421645932193755],[-124.11781510102385,57.421599960398765],[-124.11781737162048,57.42155401840495],[-124.11781755976409,57.421508046613546],[-124.1178177479073,57.42146207482396],[-124.11781788066988,57.421417223572455],[-124.11781806881223,57.42137125178642],[-124.11781825695412,57.4213252800021],[-124.11781844509557,57.42127930821975],[-124.1178185778567,57.421234456975164],[-124.11781668356728,57.421188455396965],[-124.11781687170995,57.42114248361988],[-124.11781700447246,57.421097632380466],[-124.11781511019174,57.4210516308075],[-124.11781524295603,57.4210067795716],[-124.11781543109953,57.42096080780161],[-124.11781348144798,57.42091592676974],[-124.11781366959316,57.420869955003305],[-124.1178138023585,57.420825103774284],[-124.11781185271583,57.42078022274766],[-124.117811985483,57.42073537152205],[-124.11781211824986,57.42069052029822],[-124.11781225101642,57.42064566907607],[-124.11781238378263,57.42060081785565],[-124.11781043415313,57.42055593683748],[-124.1178084845282,57.42051105582091],[-124.11780445251735,57.42046614500661],[-124.11780042051599,57.42042123419386],[-124.11779430613853,57.42037629358303],[-124.1177881917755,57.42033135297362],[-124.11778207742694,57.420286412365606],[-124.11777388071457,57.42024144195909],[-124.11776568402152,57.42019647155366],[-124.11775540497457,57.42015147134928],[-124.11774720832271,57.42010650094613],[-124.11773692932186,57.42006150074367],[-124.11772659496451,57.42001762107711],[-124.117716316012,57.41997262087641],[-124.11770395472274,57.41992759087548],[-124.11769367582126,57.4198825906765],[-124.11768131458801,57.41983756067681],[-124.11767103573757,57.41979256047956],[-124.11765867456027,57.41974753048139],[-124.11764839576087,57.4197025302856],[-124.11763597925663,57.41965862082322],[-124.11762570050801,57.41961362062914],[-124.11761542178371,57.419568620435996],[-124.11760514308368,57.41952362024372],[-124.1175948644079,57.419478620052416],[-124.11758458575645,57.41943361986203],[-124.1175763340764,57.41938977000988],[-124.11756605547082,57.41934476982141],[-124.11755994154264,57.41929982924071],[-124.11755174530477,57.41925485885792],[-124.11754563140789,57.41920991827993],[-124.1175394621404,57.419166098237426],[-124.11753543058907,57.419121187466054],[-124.11753139904725,57.41907627669626],[-124.11752736751491,57.419031365928056],[-124.1175253629163,57.41898760549917],[-124.11752549601452,57.41894275434207],[-124.11752562911245,57.41889790318671],[-124.11752784451215,57.41885308183685],[-124.11753000452188,57.41880938102237],[-124.11753430220861,57.41876458947959],[-124.11754068218006,57.41871982774208],[-124.11754700675243,57.41867618653964],[-124.11755338669418,57.418631424804865],[-124.11755976662093,57.41858666307153],[-124.11756817343455,57.41854305167634],[-124.11757871789466,57.418498349551705],[-124.11758718004968,57.41845361762509],[-124.11759766908054,57.41841003603576],[-124.11760821346924,57.41836533391388],[-124.11761875783318,57.41832063179287],[-124.11763132906201,57.41827708000819],[-124.11764395564269,57.41823240769068],[-124.11765658219377,57.41818773537368],[-124.1176691533355,57.418144183590236],[-124.11768177982779,57.41809951127409],[-124.1176964331703,57.418055989292725],[-124.11771114185763,57.41801134677829],[-124.11772585051048,57.41796670426403],[-124.11774050375152,57.41792318228268],[-124.11775521233594,57.417878539768445],[-124.11777194775621,57.41783504758702],[-124.11778873851401,57.417790434872224],[-124.11780339161541,57.41774691289031],[-124.11782018229754,57.417702300174874],[-124.11783697294031,57.41765768745905],[-124.11785370817024,57.417614195275355],[-124.11787258096716,57.41756961235696],[-124.11788931611775,57.41752612017194],[-124.11790610660192,57.41748150745393],[-124.11792492390063,57.417438045065545],[-124.11794171430428,57.41739343234622],[-124.11796053151885,57.41734996995601],[-124.11797732184199,57.41730535723552],[-124.11799619434126,57.41726077431097],[-124.11801501142814,57.41721731191782],[-124.11803180162903,57.41717269919545],[-124.1180506186318,57.41712923680043],[-124.11806949095804,57.41708465387206],[-124.1180862256708,57.417041161679904],[-124.11810509791172,57.41699657874972],[-124.11812183254514,57.41695308655637],[-124.11814070470078,57.4169085036244],[-124.11815749461837,57.416863890897616],[-124.11817631132521,57.41682042849592],[-124.11819310116229,57.41677581576791],[-124.11820983559826,57.41673232357142],[-124.11822870754155,57.41668774063519],[-124.11824544189817,57.416644248437414],[-124.11826223157665,57.41659963570711],[-124.11827693903868,57.41655499318451],[-124.11829367328195,57.416511500985514],[-124.11831046284543,57.41646688825416],[-124.11832511484177,57.41642336626294],[-124.11833982216207,57.416378723739996],[-124.11840658357626,57.41633482597505],[-124.11845832686622,57.41629968390854],[-124.1185100700607,57.416264541822706],[-124.11856181315972,57.416229399717636],[-124.1186135561633,57.41619425759324],[-124.1186652990714,57.41615911544954],[-124.11871704188407,57.41612397328653],[-124.11876878460124,57.41608883110417],[-124.11882052722298,57.41605368890253],[-124.11887226974926,57.416018546681634],[-124.11892401218009,57.415983404441306],[-124.11897580985355,57.41594714165027],[-124.1190275520919,57.415911999371325],[-124.1190772120941,57.41587682729392],[-124.1191289541434,57.4158416849773],[-124.11918069609725,57.415806542641405],[-124.11923243795562,57.41577140028611],[-124.1192842350473,57.415735137380025],[-124.11933597671319,57.41569999498612],[-124.11938563615429,57.415664822798604],[-124.11943737763117,57.41562968036694],[-124.1194891190126,57.41559453791598],[-124.11954091561948,57.415558274914176],[-124.11959265680841,57.41552313242472],[-124.11964231578203,57.415487960145526],[-124.11969405678194,57.41545281761814],[-124.11974585300108,57.41541655454014],[-124.11979551169432,57.41538138220626],[-124.11984725240818,57.415346239621776],[-124.11989904833662,57.41530997648661],[-124.11995078885796,57.415274833863634],[-124.12000044717733,57.41523966145668],[-124.12005224281504,57.415203398264445],[-124.12010398305033,57.41516825558428],[-124.12015364108936,57.41513308312265],[-124.12020538113562,57.41509794040472],[-124.1202571763856,57.41506167713614],[-124.12030683414426,57.415026504619775],[-124.12035857390451,57.41499136184483],[-124.12041036886377,57.41495509851925],[-124.12046002634209,57.41491992594828],[-124.12051176581627,57.414884783116136],[-124.12056356048485,57.41484851973354],[-124.1206132176828,57.414813347107916],[-124.12066495687097,57.41477820421866],[-124.12071675124882,57.41474194077907],[-124.12076640816645,57.41470676809865],[-124.12081814706856,57.41467162515244],[-124.12086994115572,57.41463536165569],[-124.12091959779302,57.4146001889207],[-124.12097133640908,57.41456504591735],[-124.12102313020553,57.41452878236356],[-124.12107486862914,57.41449363932159],[-124.12112452489252,57.414458466513494],[-124.1211762631271,57.41442332343368],[-124.12122805653584,57.41438705980357],[-124.12127979457793,57.41435191668524],[-124.12132945046743,57.414316743803916],[-124.12138118832053,57.41428160064784],[-124.12143298134156,57.41424533694139],[-124.12148471900217,57.41421019374663],[-124.12153437451776,57.41417502079212],[-124.12158611198937,57.41413987755963],[-124.1216379046227,57.414103613776874],[-124.12168964190184,57.41406847050565],[-124.12174137908553,57.41403332721527],[-124.12179311617379,57.4139981839055],[-124.12184277112836,57.413963010840895],[-124.12189450802761,57.41392786749335],[-124.12194630007914,57.413891603595665],[-124.12199803678594,57.413856460209516],[-124.1220497733973,57.41382131680403],[-124.12210150991316,57.41378617337927],[-124.12215324633361,57.41375102993514],[-124.1222049826586,57.413715886471856],[-124.12225671888818,57.4136807429892],[-124.12230845502229,57.41364559948715],[-124.12236019106096,57.41361045596589],[-124.1224119270042,57.413575312425344],[-124.12246366285196,57.413540168865346],[-124.12251539860429,57.41350502528622],[-124.12256921627305,57.413469911411674],[-124.12262095183263,57.41343476779299],[-124.12267268729677,57.413399624155],[-124.12272436744134,57.41336560102853],[-124.12277610271616,57.413330457352],[-124.12282991989807,57.413295343375935],[-124.1228816549801,57.41326019965994],[-124.12293338996672,57.413225055924606],[-124.12298715163867,57.41319106241798],[-124.12303888643407,57.4131559186433],[-124.12309062113405,57.41312077484925],[-124.12314443772992,57.41308566075076],[-124.12319611702735,57.41305163744782],[-124.12324993342831,57.41301652330824],[-124.12330161253777,57.41298249996595],[-124.12335542874386,57.41294738578526],[-124.1234071628687,57.41291224187288],[-124.12346092367652,57.41287824818158],[-124.12351473958854,57.41284313393886],[-124.12356641822635,57.4128091104974],[-124.12362017874653,57.412775116744015],[-124.1236739943661,57.41274000243919],[-124.12372775469282,57.412706008643745],[-124.1237794881465,57.412670864592215],[-124.12383324828153,57.41263687075559],[-124.12388700832065,57.41260287689812],[-124.12394076826382,57.41256888301962],[-124.12399458329664,57.41253376858968],[-124.12404834304633,57.41249977466914],[-124.12410210270009,57.41246578072767],[-124.1241558622579,57.41243178676516],[-124.12420962171981,57.41239779278172],[-124.12426546303851,57.41236382847433],[-124.12431922230675,57.412329834448066],[-124.12437298147904,57.41229584040071],[-124.12442674055539,57.412261846332406],[-124.12448258148132,57.41222788193672],[-124.12453634036402,57.4121938878256],[-124.12459009915078,57.41215989369341],[-124.12464593978166,57.41212592923134],[-124.12469964321056,57.412093055586666],[-124.12475548364584,57.41205909108006],[-124.12481132398156,57.41202512655055],[-124.1248671090586,57.41199228252878],[-124.12492294919689,57.411958317953804],[-124.12497873407989,57.4119254738865],[-124.12503451886673,57.411892629796434],[-124.12509238548323,57.41185981536762],[-124.12515025200005,57.411827000914116],[-124.1252080632684,57.41179530696655],[-124.12526592958763,57.41176249246401],[-124.12532379580719,57.411729677936954],[-124.12538160678352,57.41169798391566],[-124.1254414995792,57.411666319548196],[-124.12549936550148,57.411633504946515],[-124.12555925809795,57.41160184052722],[-124.12561915059489,57.41157017608139],[-124.12567904299225,57.41153851160916],[-124.1257388801573,57.411507967640745],[-124.12579877235738,57.41147630311572],[-124.1258607463617,57.411444668235966],[-124.125920638361,57.411413003657074],[-124.12598047513528,57.41138245958206],[-124.12604244883607,57.411350824619284],[-124.12610436731221,57.41132031015823],[-124.12616628568917,57.41128979566897],[-124.12622617719111,57.41125813095515],[-124.12628809536946,57.41122761641008],[-124.12635001344864,57.411197101836684],[-124.12641193142866,57.41116658723487],[-124.12647384930948,57.41113607260474],[-124.1265378489769,57.411105587607274],[-124.12659976665778,57.41107507291941],[-124.12666168423944,57.41104455820321],[-124.12672360172195,57.41101404345861],[-124.12678760098457,57.4109835583428],[-124.12684951826711,57.41095304354049],[-124.1269114354505,57.41092252870994],[-124.1269754344091,57.41089204350502],[-124.12703735139249,57.41086152861665],[-124.12710129505619,57.41083216388226],[-124.12716321184149,57.410801648936186],[-124.12722721039562,57.41077116361189],[-124.12728912698095,57.410740648608204],[-124.12735104346712,57.41071013357603],[-124.12741498663497,57.41068076869285],[-124.12747690292302,57.410650253603094],[-124.12754090097191,57.41061976813015],[-124.12760281706,57.41058925298252],[-124.12766473304892,57.41055873780664],[-124.12772867572095,57.41052937277476],[-124.12779059151175,57.41049885754119],[-124.1278525072034,57.41046834227915],[-124.12791442279588,57.41043782698886],[-124.12797633828916,57.410407311670134],[-124.1280382536833,57.41037679632316],[-124.12810016897825,57.41034628094774],[-124.12816208417404,57.41031576554397],[-124.12822399927065,57.41028525011185],[-124.12828596932414,57.4102536141213],[-124.12834580238159,57.410223069000004],[-124.12840771718045,57.410192553483775],[-124.12846755004442,57.41016200830874],[-124.12852951969528,57.41013037220669],[-124.12858935236396,57.41009982697779],[-124.12864923998183,57.41006816119248],[-124.12870907245686,57.41003761591076],[-124.12876895987743,57.410005950072446],[-124.1288288471985,57.40997428420789],[-124.12888873442002,57.40994261831678],[-124.12894653971964,57.4099109227764],[-124.12900642674376,57.409879256833435],[-124.12906423184936,57.40984756124302],[-124.12912203685876,57.40981586562807],[-124.12917984177204,57.40978416998848],[-124.12923770161647,57.40975135379434],[-124.12929550633565,57.40971965810571],[-124.12935128417207,57.40968681224604],[-124.12940914372102,57.40965399597919],[-124.12946492136336,57.40962115007318],[-124.12952069890956,57.409588304144364],[-124.12957647635957,57.40955545819279],[-124.12963017191178,57.409522582606435],[-124.12968594917122,57.40948973661031],[-124.1297396995485,57.40945574045105],[-124.12979339481933,57.40942286480083],[-124.12984714500642,57.40938886859971],[-124.1299008950976,57.40935487237748],[-124.12995256330196,57.40932084652737],[-124.13000423141403,57.40928682065796],[-124.13005589943384,57.409252794769216],[-124.13010762236237,57.409217648331214],[-124.13015726341196,57.409182472270246],[-124.13020893115362,57.40914844632438],[-124.13025857201954,57.40911327022722],[-124.1303082127938,57.40907809411241],[-124.13035582669383,57.40904176784947],[-124.13040338551109,57.40900656210026],[-124.13045099923099,57.40897023580506],[-124.13049861286011,57.40893390949377],[-124.13054622639845,57.40889758316635],[-124.13059175807972,57.408861227225955],[-124.13063728967413,57.40882487127091],[-124.13068079440275,57.408787365176124],[-124.13072632582391,57.40875100919256],[-124.13076983038059,57.408713503070615],[-124.1308133348516,57.40867599693547],[-124.13085481246084,57.408637340664846],[-124.13089831676123,57.408599834504074],[-124.13093973922581,57.40856229873868],[-124.13098121658302,57.40852364243189],[-124.13102269385612,57.40848498611331],[-124.13106208930105,57.40844630019355],[-124.13110148466602,57.40840761426321],[-124.13114087995098,57.40836892832231],[-124.1311803301241,57.4083291218414],[-124.13121972524786,57.40829043587946],[-124.1312570935239,57.408250599791224],[-124.13129446172182,57.40821076369385],[-124.13133182984164,57.408170927587115],[-124.13136919788327,57.40813109147106],[-124.13140656584682,57.408091255345745],[-124.13144185200952,57.40805138962767],[-124.13147921981893,57.40801155348451],[-124.13151456078963,57.407970567220445],[-124.13154990168428,57.40792958094835],[-124.1315851875473,57.40788971519736],[-124.13161844657924,57.407848699328476],[-124.13165378724915,57.40780771303263],[-124.1316870461357,57.40776669714928],[-124.1317203049506,57.40772568125895],[-124.13175356369395,57.407684665361614],[-124.1317868223657,57.4076436494572],[-124.13182013591414,57.40760151301675],[-124.13185339444163,57.40756049709843],[-124.13188462614985,57.40751833106779],[-124.13191788453534,57.40747731513605],[-124.131949116104,57.40743514909305],[-124.13198237434749,57.40739413314786],[-124.13201360577662,57.407351967092524],[-124.13204483713663,57.40730980103126],[-124.1320760684275,57.40726763496405],[-124.13210729964929,57.40722546889083],[-124.13213853080195,57.40718330281183],[-124.13216768021195,57.40714110715505],[-124.13219891122864,57.40709894106466],[-124.13223014217621,57.40705677496839],[-124.13225929138801,57.40701457929579],[-124.13229052219964,57.40697241318813],[-124.13231967128,57.406930217505085],[-124.13235095688735,57.40688693085754],[-124.13238010583541,57.40684473516418],[-124.13240925471892,57.40680253946583],[-124.13244054011967,57.40675925280163],[-124.13246968887087,57.40671705709299],[-124.13249883755752,57.40667486137938],[-124.13253012275169,57.40663157469846],[-124.13255927130602,57.40658937897453],[-124.13258841979584,57.406547183245586],[-124.13261762314433,57.40650386698326],[-124.13264885314089,57.406461700808755],[-124.13267800143383,57.406419505064534],[-124.13270720458267,57.40637618878703],[-124.13273635274557,57.406333993032895],[-124.13276758247156,57.406291826836096],[-124.13279678542071,57.40624851054341],[-124.13282593338675,57.40620631477394],[-124.13285716290896,57.40616414856044],[-124.13288631074366,57.40612195278058],[-124.13291759504374,57.406078666027646],[-124.13294674274611,57.40603647023747],[-124.13297797199546,57.405994304001354],[-124.13300711956646,57.40595210820078],[-124.13303834867985,57.40590994195325],[-124.13306957772413,57.4058677756999],[-124.1331008066993,57.40582560944055],[-124.13313203560537,57.40578344317532],[-124.13316326444233,57.40574127690412],[-124.13319449321018,57.40569911062709],[-124.13322566700475,57.40565806487195],[-124.13325689563536,57.405615898583],[-124.1332901508835,57.40557488236995],[-124.13332137937456,57.40553271606863],[-124.13335463448071,57.4054916998422],[-124.13338794441437,57.40544956308111],[-124.1334211993763,57.405408546840654],[-124.13345445426665,57.40536753059324],[-124.13348770908539,57.40532651433884],[-124.13353186575036,57.40527556108072],[-124.12892657609808,57.40001060593253],[-124.10257612355926,57.36984556351445],[-124.10267787946748,57.36976630066454],[-124.10268426867715,57.36972154148588],[-124.10269065787182,57.3696767823086],[-124.10269699130235,57.36963314361388],[-124.10270338046728,57.36958838443934],[-124.10270976961723,57.36954362526604],[-124.10271823834834,57.36949889613111],[-124.1027245717178,57.36945525744155],[-124.10273304041196,57.36941052830899],[-124.1027394294973,57.369365769140884],[-124.10274789815415,57.36932104001076],[-124.10275423146012,57.3692774013261],[-124.10276270008,57.36923267219826],[-124.10277116868004,57.369187943071466],[-124.1027796372602,57.369143213945875],[-124.1027880500748,57.36909960530215],[-124.10279651861555,57.36905487617864],[-124.10280498713642,57.36901014705633],[-124.10281345563746,57.36896541793507],[-124.10282192411862,57.36892068881497],[-124.10283033683581,57.36887708017656],[-124.10283880527756,57.36883235105863],[-124.10284727369945,57.36878762194176],[-124.10285782165654,57.36874292286086],[-124.10286629003629,57.36869819374622],[-124.10287678220395,57.3686546151475],[-124.10288525054186,57.368609886034726],[-124.10289579840531,57.368565186957426],[-124.10290426670106,57.36852045784677],[-124.10291481451749,57.36847575877118],[-124.10292536230922,57.36843105969646],[-124.10293377480015,57.368387451069154],[-124.10294432254524,57.368342751996074],[-124.1029548702656,57.368298052923876],[-124.10296541796123,57.368253353852545],[-124.10297596563215,57.36820865478193],[-124.10298651327837,57.3681639557121],[-124.10299700516171,57.36812037712308],[-124.10300755275885,57.3680756780549],[-124.10301810033127,57.36803097898752],[-124.10302864787897,57.36798627992086],[-124.10304127491347,57.36794161088703],[-124.1030518224093,57.367896911821816],[-124.10306236988038,57.36785221275753],[-124.10307286159134,57.36780863417366],[-124.10308548851526,57.36776396514213],[-124.10309603591016,57.367719266079945],[-124.10310866277736,57.36767459704949],[-124.10311921012038,57.367629897988806],[-124.10313183693086,57.367585228959456],[-124.10314238422202,57.36754052990018],[-124.10315501097575,57.36749586087189],[-124.10316550248287,57.367452282293485],[-124.10317812918035,57.36740761326622],[-124.10319075584825,57.36736294423929],[-124.10320338248657,57.36731827521286],[-124.10321392962008,57.36727357615777],[-124.10322655620169,57.36722890713253],[-124.1032391827537,57.36718423810756],[-124.10325180927617,57.36713956908313],[-124.1032643800403,57.36709602053821],[-124.10327700650406,57.36705135151456],[-124.10328755347749,57.36700665246342],[-124.10330017988453,57.36696198344088],[-124.10331280626197,57.36691731441872],[-124.10332543260986,57.36687264539708],[-124.10333805892819,57.36682797637583],[-124.10335276466559,57.36678333738202],[-124.10336539092232,57.36673866836145],[-124.10337796142467,57.366695119820136],[-124.10339058762273,57.366650450800414],[-124.1034032137912,57.3666057817811],[-124.1034158399301,57.36656111276221],[-124.10342846603943,57.36651644374381],[-124.10344317155092,57.366471804751384],[-124.10345579759868,57.36642713573358],[-124.10346842361687,57.36638246671636],[-124.10348099388422,57.366338918178016],[-124.1034956992658,57.36629427918617],[-124.10350832519329,57.36624961016999],[-124.10352095109121,57.366204941154116],[-124.10353565637438,57.3661603021628],[-124.10354828221074,57.36611563314774],[-124.10356090801754,57.366070964133016],[-124.1035756132023,57.366026325142144],[-124.1035881832299,57.365982776606415],[-124.103600808946,57.36593810759283],[-124.10361551403287,57.365893468602366],[-124.10362813968737,57.36584879958948],[-124.10364284470784,57.36580416059929],[-124.1036554703008,57.365759491587035],[-124.10367011954,57.36571597307512],[-124.10368274507185,57.3656713040635],[-124.10369744995997,57.36562666507373],[-124.10371007543024,57.365581996062794],[-124.10372270087095,57.36553732705221],[-124.10373740566068,57.36549268806295],[-124.1037499753277,57.365449139530895],[-124.10376468005154,57.36540450054186],[-124.10377730536955,57.365359831532665],[-124.10379201002694,57.36531519254387],[-124.1038046352834,57.36527052353527],[-124.1038193398744,57.36522588454674],[-124.10383190936,57.3651823360164],[-124.10384661388507,57.365137697028025],[-124.10385923901887,57.365093028020794],[-124.10387394347754,57.36504838903266],[-124.10388656854975,57.36500372002609],[-124.10390121723509,57.36496020151562],[-124.10391384224616,57.364915532509634],[-124.10392854657255,57.364870893521946],[-124.10394117152207,57.36482622451675],[-124.10395582007695,57.36478270600655],[-124.10396844496536,57.36473803700188],[-124.1039810698242,57.364693367997674],[-124.10399577398626,57.36464872901064],[-124.10400834308027,57.364605180484276],[-124.10402304717643,57.36456054149743],[-124.1040356719126,57.36451587249454],[-124.10404829661918,57.364471203492045],[-124.10406294491554,57.364427684982694],[-124.104075569561,57.3643830159809],[-124.10409027349284,57.364338376994695],[-124.10410284237673,57.36429482847045],[-124.10411546693153,57.364250159469734],[-124.10412809145674,57.364205490469345],[-124.10414279525872,57.36416085148391],[-124.10415536402414,57.36411730296096],[-124.10417006776021,57.36407266397569],[-124.10418471576462,57.36402914546706],[-124.10419941943235,57.363984506481756],[-124.10421412306567,57.36393986749641],[-124.10423085026076,57.363896379000664],[-124.10424555382335,57.363851740015086],[-124.10426228094398,57.36380825151847],[-124.10427906372057,57.36376364254479],[-124.1042957907644,57.36372015404709],[-124.10431251777007,57.36367666554883],[-124.10432930043001,57.363632056573614],[-124.10434602735887,57.363588568074235],[-124.10436488921374,57.363543989108905],[-124.1043816160634,57.36350050060806],[-124.10440042214307,57.36345704211705],[-124.10441928386935,57.3634124631487],[-124.10443601059931,57.363368974645724],[-124.10445481655219,57.36332551615171],[-124.10447362246221,57.36328205765649],[-124.10449248401642,57.363237478684084],[-124.10451336909404,57.363194050195084],[-124.10453217487255,57.363150591696225],[-124.10455098060821,57.36310713319622],[-124.10456984198554,57.36306255421918],[-124.10459072687931,57.36301912572418],[-124.10460953248348,57.36297566722053],[-124.10462833804476,57.36293220871567],[-124.10464927848255,57.36288765974023],[-124.10466808395519,57.362844201232896],[-124.10468896861758,57.36280077273013],[-124.10470777400218,57.36275731422026],[-124.10472657934393,57.362713855709224],[-124.10474751954713,57.362669306726204],[-124.10476632480021,57.3626258482126],[-124.10478720923125,57.36258241970205],[-124.1048060143963,57.36253896118595],[-124.10482689873457,57.362495532672185],[-124.1048457594871,57.362450953677936],[-124.10486456452065,57.36240749515819],[-124.10488336951136,57.362364036637295],[-124.10490425366582,57.36232060811749],[-124.10492305856847,57.36227714959402],[-124.1049419191007,57.36223257059402],[-124.10496072391706,57.36218911206823],[-124.10498160788771,57.36214568354247],[-124.1050024918108,57.362102255014875],[-124.10502551054846,57.36205773601075],[-124.10504847356344,57.36201433747932],[-124.10507351571388,57.361970968945016],[-124.10510069266,57.36192650993167],[-124.10512573469344,57.36188314139064],[-124.10515285585053,57.36183980284465],[-124.105179976946,57.361796464294656],[-124.10520923281958,57.36175203526304],[-124.10523635378863,57.36170869670454],[-124.10526555386721,57.36166538813856],[-124.1052947538795,57.361622079567624],[-124.10532400948571,57.36157765051692],[-124.10535320936448,57.36153434193614],[-124.10538033001518,57.36149100335569],[-124.10540958542121,57.361446574290696],[-124.1054387851025,57.36140326569551],[-124.10546590556284,57.361359927102086],[-124.10549302596152,57.36131658850467],[-124.10552014629863,57.36127324990313],[-124.10554524307962,57.36122876083082],[-124.10557028414969,57.36118539223002],[-124.10559532516281,57.361142023625916],[-124.10561828697847,57.36109862502779],[-124.10563916960363,57.361055196436446],[-124.10566010783076,57.36101064736897],[-124.10567891122673,57.36096718878423],[-124.10569771457982,57.36092373019835],[-124.10571443876138,57.360880241622056],[-124.10572908377837,57.3608367230559],[-124.10574164963796,57.3607931745008],[-124.10575421546886,57.36074962594604],[-124.10576262303249,57.36070601741432],[-124.1057710305769,57.36066240888368],[-124.10577735898754,57.36061877036573],[-124.10577952915938,57.36057507187228],[-124.10578169932624,57.360531373380475],[-124.10577971127331,57.36048761491347],[-124.10577564411996,57.36044382645958],[-124.10576949787333,57.36040000801867],[-124.10576127254056,57.36035615959035],[-124.10575304722673,57.36031231116316],[-124.10574274283638,57.360268432748114],[-124.10573446191655,57.36022570479676],[-124.10572415757096,57.360181826383304],[-124.10571385324907,57.36013794797075],[-124.10570354895088,57.360094069558905],[-124.10569324467642,57.36005019114781],[-124.10568086134454,57.36000628274759],[-124.10567050147218,57.35996352481152],[-124.1056581181946,57.35991961641233],[-124.10564573494555,57.359875708013504],[-124.10563335172498,57.359831799615215],[-124.10561888946378,57.359787861226444],[-124.10560650630262,57.35974395282872],[-124.10559198845606,57.359701134913465],[-124.105579605354,57.359657226516354],[-124.10556514322087,57.35961328812795],[-124.10555068112106,57.359569349739516],[-124.10553413999979,57.359525381358935],[-124.105519677969,57.359481442970214],[-124.10550516031975,57.35943862505468],[-124.10548861930762,57.359394656673075],[-124.10547207833362,57.359350688290995],[-124.10545553739772,57.359306719908346],[-124.10543894084651,57.35926387199807],[-124.10542239998647,57.3592199036145],[-124.10540585916452,57.35917593523036],[-124.10538931838073,57.359131966845766],[-124.10537069860423,57.35908796846595],[-124.10535410224345,57.359045120552636],[-124.10533548254996,57.3590011221708],[-124.10531686289941,57.35895712378814],[-124.1052982432918,57.35891312540434],[-124.10527956806958,57.358870247491815],[-124.10526094854738,57.35882624910586],[-124.10524232906813,57.35878225071897],[-124.1052216306202,57.35873822233374],[-124.10520301122925,57.35869422394439],[-124.1051843362212,57.358651346026086],[-124.1051636379112,57.358607317636505],[-124.105142939649,57.35856328924533],[-124.10512432043416,57.35851929085112],[-124.1051035666029,57.35847638292877],[-124.10508286848102,57.35843235453292],[-124.10506217040692,57.358388326135305],[-124.1050414723806,57.35834429773598],[-124.10502071873772,57.358301389806776],[-124.10500002080639,57.35825736140412],[-124.10497724394,57.35821330299881],[-124.10495654610662,57.35816927459257],[-124.10493579265444,57.35812636665604],[-124.10491301594041,57.35808230824442],[-124.10489231825223,57.358038279832655],[-124.10486948597266,57.35799534188803],[-124.10484878838187,57.35795131347267],[-124.10482601187282,57.35790725505223],[-124.10480531437997,57.35786322663319],[-124.1047824823031,57.357820288679626],[-124.10475970594882,57.357776230252405],[-124.10473900860357,57.35773220182765],[-124.1047162323521,57.357688143396224],[-124.10469340048023,57.35764520543332],[-124.10467062433335,57.357601146997034],[-124.10464784823907,57.35755708855844],[-124.10462709546704,57.35751418059483],[-124.10460431947494,57.35747012215189],[-124.10458154353543,57.35742606370649],[-124.10455876764856,57.35738200525879],[-124.10453593613707,57.3573390672794],[-124.10451316035476,57.35729500882695],[-124.10449246355508,57.35725098038074],[-124.10446968787556,57.35720692192399],[-124.10444685656911,57.35716398393529],[-124.10442408099418,57.35711992547373],[-124.10440130547185,57.357075867009875],[-124.10437853000214,57.357031808543525],[-124.10435777781869,57.35698890055595],[-124.10433500245112,57.356944842085255],[-124.10431222713618,57.3569007836123],[-124.10428939619013,57.35685784560706],[-124.1042686998858,57.35681381714147],[-124.10424592472559,57.3567697586618],[-124.10422314961802,57.356725700179645],[-124.10420239777578,57.35668279217839],[-124.10417962277039,57.3566387336919],[-124.10415892671158,57.356594705216985],[-124.10413615180893,57.35655064672617],[-124.10411540015976,57.3565077387173],[-124.1040926253593,57.35646368022208],[-124.10407192949582,57.35641965173982],[-124.10405123368011,57.35637562325581],[-124.10403048222163,57.356332715239745],[-124.10400978650088,57.35628868675245],[-124.10398701195314,57.356244628246905],[-124.1039662606381,57.35620172022526],[-124.10394764393256,57.35615772174988],[-124.10392694840235,57.35611369325591],[-124.10390625291986,57.356069664760184],[-124.10388550179083,57.35602675673198],[-124.10386688526377,57.35598275825151],[-124.10384618992161,57.35593872975114],[-124.10382757348285,57.35589473126819],[-124.10380687823381,57.3558507027648],[-124.10378820618644,57.355807824748446],[-124.10376958987838,57.35576382626211],[-124.10366804257677,57.35571414505869],[-124.10360712546317,57.35568411220608],[-124.10354412960318,57.35565404930237],[-124.10348321268303,57.35562401639396],[-124.10342229585879,57.355593983457936],[-124.1033614348395,57.355562830025875],[-124.1033005182088,57.35553279703487],[-124.103239601674,57.355502764016364],[-124.10317666211735,57.35547158047265],[-124.10311574577776,57.355441547398186],[-124.10305488525191,57.35541039382796],[-124.10299396910584,57.355380360698646],[-124.10293305305571,57.355350327541615],[-124.1028721928245,57.35531917388918],[-124.1028112769679,57.3552891406773],[-124.10274828238704,57.35525907740169],[-124.10268736672391,57.35522904413384],[-124.10262645115667,57.35519901083847],[-124.10256345687024,57.355168947476486],[-124.10250254149645,57.35513891412511],[-124.10243954740689,57.35510885070518],[-124.10237863222656,57.35507881729782],[-124.10231563833385,57.355048753819865],[-124.10225258879954,57.35501981078015],[-124.10218953936091,57.35499086771069],[-124.10212654576235,57.35496080414422],[-124.10206349651683,57.35493186101577],[-124.10200044736693,57.35490291785765],[-124.10193526376428,57.354875065088265],[-124.1018722148055,57.35484612186995],[-124.10180703139346,57.35481826903823],[-124.10174184807657,57.35479041617473],[-124.10167666485486,57.354762563279564],[-124.10161148172831,57.35473471035256],[-124.10154416414666,57.35470794780569],[-124.10147898121014,57.354680094814256],[-124.10141166381776,57.35465333220063],[-124.10134434651981,57.354626569553076],[-124.10127702931632,57.35459980687166],[-124.10120965643645,57.35457416462298],[-124.10114233941987,57.35454740187368],[-124.10107496672302,57.354521759556974],[-124.10100764989338,57.35449499673971],[-124.10093819860391,57.35446932429025],[-124.10087082618213,57.354443681870514],[-124.10080143086068,57.354416888883435],[-124.10073405862339,57.35439124639465],[-124.10066460770688,57.354365573802674],[-124.10059723565212,57.35433993124476],[-124.10052778492104,57.35431425858148],[-124.10046041304884,57.35428861595456],[-124.10039101829761,57.35426182275395],[-124.10032156784744,57.35423614998333],[-124.10025419625175,57.354210507252226],[-124.10018682474661,57.3541848644871],[-124.10011743037617,57.35415807114425],[-124.10005005905553,57.35413242831011],[-124.09998274363157,57.35410566497605],[-124.09991537249398,57.35408002207392],[-124.09984805725695,57.35405325867209],[-124.09978074211436,57.35402649523634],[-124.09971342706618,57.353999731766635],[-124.09964819086005,57.35397299834838],[-124.09958087599924,57.35394623481196],[-124.09951569579702,57.35391838086364],[-124.09945051568998,57.353890526883625],[-124.09938527985474,57.35386379333707],[-124.09932015576135,57.35383481882833],[-124.09925705467803,57.35380699484461],[-124.09919193077894,57.35377802027365],[-124.09912882988306,57.35375019622964],[-124.09906786364513,57.35372128178542],[-124.09900487460207,57.35369121675322],[-124.09894396438834,57.35366118178793],[-124.09888299843273,57.353632267260004],[-124.0988221442485,57.35360111177491],[-124.09876123432241,57.35357107672711],[-124.09870245905846,57.353539951287374],[-124.09864160516888,57.353508795720956],[-124.09858283009845,57.353477670229196],[-124.09852411097192,57.35344542424754],[-124.09846539194464,57.35341317824042],[-124.09840667301658,57.35338093220789],[-124.0983479541878,57.353348686150035],[-124.09828923545824,57.35331644006665],[-124.09823265139325,57.353283103601456],[-124.0981760674271,57.35324976711275],[-124.09811948355984,57.35321643060053],[-124.09806289979143,57.353183094064875],[-124.09800637198467,57.353148637041706],[-124.0979497884156,57.35311530045917],[-124.09789533950907,57.35308087350219],[-124.09784089070075,57.35304644652366],[-124.09778649785974,57.35301089905983],[-124.09773412794128,57.35297650215362],[-124.09767973529944,57.352940954647536],[-124.09762742144677,57.35290543723725],[-124.09757718637738,57.35286994992507],[-124.09752487271751,57.35283443247598],[-124.09747469371486,57.3527978246632],[-124.09742445892917,57.35276233729583],[-124.09737428011762,57.35272572944684],[-124.09732618007823,57.35268915170182],[-124.09727808013102,57.352652573940276],[-124.09723211483256,57.35261490582257],[-124.09718401506912,57.352578328028784],[-124.09713804995295,57.35254065988039],[-124.09709416359303,57.35250302184266],[-124.0970502773197,57.352465383791554],[-124.09700639113292,57.35242774572687],[-124.09696256092505,57.35238898718586],[-124.09692075356979,57.35235137922267],[-124.09688108084657,57.35231268091354],[-124.0968414082038,57.35227398259372],[-124.09680173564152,57.352235284263145],[-124.09676627635463,57.352195525720866],[-124.09672873849532,57.352155737038856],[-124.09669541390227,57.35211488814905],[-124.09666203347989,57.352075159714474],[-124.09662870902864,57.35203431081037],[-124.09659751918855,57.35199237157032],[-124.0965662735137,57.35195155278654],[-124.09653716244262,57.35190964366894],[-124.09650805143549,57.35186773454637],[-124.09648107502608,57.35182473509203],[-124.0964540427711,57.35178285609569],[-124.09642706648253,57.35173985663323],[-124.09640009025479,57.35169685716669],[-124.0963751927065,57.35165388783318],[-124.09635029521431,57.351610918496455],[-124.09632539777817,57.351567949156475],[-124.09630055630862,57.35152385935164],[-124.0962756589853,57.35148089000525],[-124.09625076171804,57.351437920655826],[-124.09622799902375,57.3513938609808],[-124.09620310186698,57.351350891625394],[-124.09617826068,57.35130680180518],[-124.09615544223328,57.3512638625838],[-124.09613060115802,57.3512197727578],[-124.09610570422448,57.35117680339005],[-124.0960808632634,57.35113271355772],[-124.09605596644265,57.351089744183575],[-124.09603106967796,57.35104677480627],[-124.09600617296935,57.35100380542575],[-124.0959791977362,57.350960805898765],[-124.09595216664398,57.350918926828776],[-124.09592519153169,57.35087592729381],[-124.0958960819852,57.35083401807112],[-124.09586702842483,57.350790988382485],[-124.09583999757602,57.3507491092953],[-124.09581307863374,57.35070498928237],[-124.09578610382938,57.350661989726326],[-124.09575918501089,57.35061786970547],[-124.09573226625463,57.35057374968071],[-124.09570748204399,57.35052853933893],[-124.09568269789209,57.350483328994216],[-124.0956579137989,57.35043811864643],[-124.09563526424222,57.3503918179839],[-124.09561261474053,57.350345517319255],[-124.09558788674951,57.35029918650303],[-124.09556523736025,57.350252885833726],[-124.09554472249593,57.350205494852034],[-124.095522129146,57.35015807371869],[-124.09550161438618,57.35011068273403],[-124.09547907707845,57.35006214113673],[-124.09545856242366,57.35001475014918],[-124.09543810375338,57.349966238700134],[-124.0954176451351,57.34991772724979],[-124.09539932102406,57.34986812549085],[-124.09537886250769,57.34981961403855],[-124.0953584599789,57.34976998212512],[-124.09534013601575,57.34972038036381],[-124.09532175616371,57.34967189906172],[-124.09530348823233,57.34962117683979],[-124.09528308590768,57.34957154492268],[-124.09526476213779,57.349521943159],[-124.09524643841551,57.34947234139478],[-124.09523024917596,57.34942164932573],[-124.09521192554672,57.349372047560784],[-124.09519365790486,57.34932132533606],[-124.09517539031155,57.34927060311082],[-124.09515706682615,57.349221001344375],[-124.09513879932952,57.3491702791183],[-124.0951226103611,57.34911958704851],[-124.0951043429588,57.349068864821824],[-124.0950860196626,57.34901926305365],[-124.09506775235695,57.34896854082601],[-124.0950515635685,57.348917848755924],[-124.09503324041339,57.34886824698654],[-124.09501497325019,57.34881752475791],[-124.09499670613553,57.34876680252873],[-124.09497838312426,57.34871720075782],[-124.09496006016062,57.34866759898646],[-124.09494179319071,57.348616876755905],[-124.09492347032278,57.34856727498351],[-124.0949051475025,57.34851767321054],[-124.09488474628583,57.348468041276504],[-124.09486642356349,57.34841843950211],[-124.09484596650168,57.34836992802444],[-124.09482764387685,57.3483203262487],[-124.09480718691691,57.348271814768815],[-124.09478673000899,57.34822330328775],[-124.09476627315307,57.348174791805285],[-124.09474581634916,57.348126280321765],[-124.09472322522288,57.34807885913171],[-124.09470271257283,57.348031468103095],[-124.09468012155624,57.34798404690939],[-124.09465753059578,57.347936625713665],[-124.09463488373741,57.347890324973605],[-124.09461223693401,57.347844024231435],[-124.09458751177829,57.347797693321915],[-124.0945648650873,57.347751392575056],[-124.09454008409251,57.347706182117705],[-124.09451530315646,57.34766097165732],[-124.09448838792386,57.34761685148461],[-124.09446360710706,57.347571641017765],[-124.09443663603786,57.34752864129508],[-124.09440972098956,57.34748452111101],[-124.09438275004264,57.34744152138024],[-124.09435370077118,57.347398491476625],[-124.09432459560284,57.347356582025206],[-124.09429549049842,57.34731467256878],[-124.09426425111549,57.34727385339409],[-124.09423301179936,57.347233034213275],[-124.09420177255005,57.347192215026446],[-124.09417047740097,57.347152516290464],[-124.09413704797983,57.34711390783278],[-124.09410361862633,57.34707529936783],[-124.09407018934048,57.347036690895564],[-124.0940346257886,57.3469991726988],[-124.09399900633527,57.34696277495013],[-124.09396130859058,57.346926347017906],[-124.09392361091784,57.346889919075785],[-124.09388585734254,57.34685461158051],[-124.09384596950802,57.34682039435494],[-124.09380608174507,57.346786177118176],[-124.09376613807571,57.34675308032661],[-124.09372411612776,57.346719953344994],[-124.09367995992638,57.3466879166275],[-124.0936378261619,57.34665703053238],[-124.0935915357803,57.3466260840628],[-124.09354726783062,57.346596288215345],[-124.0935008656253,57.34656758262742],[-124.09345238515196,57.34653884684066],[-124.09340384876344,57.346511231492684],[-124.09335525645561,57.34648473658327],[-124.0933045298909,57.34645933192681],[-124.0932517250618,57.346433897064955],[-124.09319886430903,57.346409582638316],[-124.09314600362363,57.34638526819073],[-124.09309095268343,57.34636316444491],[-124.09303382348031,57.34634103048677],[-124.09297663834298,57.346320016959694],[-124.09291945326864,57.346299003408134],[-124.0928579996033,57.34628017035799],[-124.09279862432074,57.346261367472934],[-124.09273503644708,57.34624362462778],[-124.09267347094347,57.34622703240297],[-124.09260982717413,57.34621040995296],[-124.09254618346026,57.34619378747254],[-124.09248040546966,57.34617825521815],[-124.09241670584908,57.34616275313055],[-124.09235092796469,57.34614722081168],[-124.09228509411332,57.34613280891522],[-124.09221931633408,57.34611727653088],[-124.09215348258407,57.34610286456877],[-124.09208551454535,57.34608954282406],[-124.09201968089369,57.34607513079521],[-124.09195171295104,57.346061808981645],[-124.09188374505585,57.34604848713296],[-124.09181572117397,57.346036285704066],[-124.09174567506336,57.346022933575206],[-124.09167765127117,57.34601073207506],[-124.09160749317539,57.34599962078219],[-124.09153739116269,57.34598738899738],[-124.09146723315065,57.345976277629816],[-124.09139707517947,57.34596516622479],[-124.0913248389449,57.34595402456574],[-124.09125468105606,57.34594291308494],[-124.09118238885259,57.34593289180217],[-124.0911100966871,57.345922870479654],[-124.09103780455958,57.3459128491175],[-124.09096551246999,57.34590282771559],[-124.09089108605673,57.34589389650468],[-124.09081873797842,57.345884995476396],[-124.0907443116343,57.345876064182306],[-124.090669885325,57.34586713284625],[-124.09059540298087,57.3458593219221],[-124.09052092066722,57.34585151095583],[-124.09044436008647,57.34584366971662],[-124.09036987783426,57.34583585866479],[-124.09029331731598,57.34582801733753],[-124.09021670074839,57.34582129641973],[-124.09014216250351,57.34581460569283],[-124.09006346769416,57.34580785445017],[-124.08998685120754,57.345801133398375],[-124.0899102347479,57.34579441230195],[-124.08983148392919,57.345788781374125],[-124.08975481142744,57.34578318064081],[-124.08967606065487,57.34577754961984],[-124.08959730990551,57.34577191855171],[-124.08951850307825,57.34576740788998],[-124.08943975237307,57.34576177672736],[-124.08936094558536,57.34575726597115],[-124.08928006052457,57.34575272491846],[-124.08920125377443,57.34574821406638],[-124.08912036875185,57.34574367291537],[-124.08903942763332,57.34574025216794],[-124.08895848652932,57.34573683137065],[-124.08887760155973,57.345732290070046],[-124.0887966604871,57.34572886917308],[-124.08871566330433,57.34572656867936],[-124.08863472225836,57.345723147682584],[-124.0885516468081,57.345720816828354],[-124.08846862749989,57.34571736546836],[-124.08838763036131,57.345715064772385],[-124.08830455494372,57.3457127337618],[-124.0882214795363,57.345710402698685],[-124.08813840413902,57.34570807158298],[-124.08805527260787,57.34570686086776],[-124.08797219722845,57.34570452964695],[-124.08788906571027,57.34570331882644],[-124.08780385590964,57.34570207768072],[-124.08772072440215,57.34570086675366],[-124.08763551461246,57.345699625498796],[-124.08755030482828,57.34569838418861],[-124.0874671171756,57.3456982935537],[-124.08738190739987,57.345697052134305],[-124.08729664146344,57.34569693111213],[-124.08721137552752,57.34569681003467],[-124.08712610959215,57.34569668890177],[-124.0870408436573,57.34569656771349],[-124.08695349943625,57.34569641618393],[-124.08686823350256,57.34569629488359],[-124.08678296756943,57.34569617352792],[-124.08669556716636,57.34569714227914],[-124.08661030123189,57.345697020811365],[-124.08652290082247,57.34569798944763],[-124.08643550040864,57.345698958025814],[-124.08635023447094,57.345698836389126],[-124.08626283405079,57.3456998048523],[-124.0861754336262,57.345700773257285],[-124.08608803319717,57.34570174160415],[-124.08600057655936,57.34570383034493],[-124.08591317611891,57.34570479857542],[-124.085825775674,57.34570576674774],[-124.08573831901262,57.345707855313776],[-124.08564884026985,57.3457087930631],[-124.08556138359187,57.34571088151136],[-124.0854739269043,57.34571296990129],[-124.08538444814306,57.345713907470454],[-124.08529699143888,57.345715995742616],[-124.08520953472511,57.34571808395649],[-124.08511999971516,57.34572014179716],[-124.08503046469559,57.34572219957678],[-124.08494300795302,57.345724287613294],[-124.08485347291415,57.34572634527214],[-124.08476601615241,57.34572843319072],[-124.08467642485103,57.34573161118046],[-124.08458688978058,57.34573366865766],[-124.08449735470053,57.34573572607382],[-124.08440984164669,57.345738934206565],[-124.08432030654474,57.34574099150201],[-124.08423077143311,57.345743048736374],[-124.08414118005284,57.34574622636095],[-124.08405158865764,57.345749403924486],[-124.08396205351183,57.345751460975656],[-124.08387246208942,57.34575463841695],[-124.08378292692166,57.34575669534601],[-124.08369333547205,57.34575987266508],[-124.08360374400755,57.34576304992303],[-124.08351420880557,57.34576510666888],[-124.08342461731385,57.3457682838047],[-124.08333502580722,57.34577146087936],[-124.08324549057102,57.345773517441934],[-124.08315589903721,57.34577669439441],[-124.08306630748848,57.34577987128575],[-124.08297671592483,57.345783048115976],[-124.08288718064213,57.34578510443425],[-124.08279758905128,57.34578828114231],[-124.08270799744552,57.34579145778921],[-124.08261840582485,57.34579463437495],[-124.08252887049566,57.34579669044897],[-124.08243927884781,57.345799866912515],[-124.08234968718504,57.34580304331497],[-124.08226015182166,57.34580509920575],[-124.08217056013169,57.34580827548593],[-124.08208096842681,57.34581145170511],[-124.08199143302924,57.34581350741269],[-124.08190184129715,57.34581668350965],[-124.08181224955017,57.34581985954549],[-124.0817227141184,57.34582191506983],[-124.08163312234421,57.34582509098347],[-124.08154358689055,57.345827146385645],[-124.08145399508919,57.34583032217706],[-124.08136445961358,57.345832377457086],[-124.08127492412832,57.34583443267619],[-124.08118741057737,57.34583763866155],[-124.08109787507024,57.34583969375989],[-124.08100833955345,57.34584174879718],[-124.08092088231706,57.345843834154884],[-124.08083129042471,57.34584700952147],[-124.0807417548764,57.34584906437695],[-124.08065429760866,57.34585114955718],[-124.08056476204113,57.34585320429195],[-124.08047736112096,57.34585416890444],[-124.0803878255368,57.34585622351858],[-124.08030036823332,57.345858308463086],[-124.0802129109203,57.345860393349334],[-124.08012343168441,57.345861327333544],[-124.08003597435481,57.345863412101934],[-124.0799485733979,57.34586437636243],[-124.07986111605173,57.34586646101431],[-124.0797737150834,57.34586742515843],[-124.07968631411069,57.345868389244444],[-124.07959891313354,57.34586935327216],[-124.07951151215197,57.34587031724185],[-124.07942411116599,57.3458712811532],[-124.07933671017561,57.345872245006504],[-124.07925138747106,57.34587323920949],[-124.07916398647183,57.34587420294776],[-124.07907664187606,57.34587404617866],[-124.07899131916072,57.345875040212654],[-124.07890605285384,57.345874913742016],[-124.07881870825749,57.34587475680135],[-124.07873344195181,57.34587463021867],[-124.07864817564668,57.34587450358058],[-124.07856290934211,57.345874376887195],[-124.07847764303813,57.34587425013843],[-124.07839237673471,57.34587412333423],[-124.07830716686232,57.34587287602582],[-124.0782219569955,57.34587162866207],[-124.0781366906988,57.34587150169187],[-124.07805355912976,57.34587028464447],[-124.07796834927701,57.34586903711609],[-124.07788521771874,57.345867819961974],[-124.07780214261103,57.345865482306586],[-124.0777190110658,57.345864265047354],[-124.07763385768763,57.34586189685332],[-124.07755072615556,57.34586067948756],[-124.07751137259271,57.345774886262305],[-124.07749065673703,57.34573197442977],[-124.07746999738269,57.345687942146874],[-124.07744928162074,57.34564503031076],[-124.07742862236123,57.34560099802463],[-124.07740582842133,57.345558055748015],[-124.077385169259,57.34551402345811],[-124.07736445368681,57.345471111614835],[-124.07734373816122,57.34542819976969],[-124.07732100087873,57.34538413703632],[-124.07730028544918,57.345341225187404],[-124.077279626526,57.345297192888786],[-124.07725683293519,57.34525425059695],[-124.07723617410925,57.34521021829458],[-124.07721545886946,57.345167306438434],[-124.0771927218905,57.34512324369228],[-124.0771720067468,57.34508033183223],[-124.07714921340659,57.345037389529324],[-124.07712855482218,57.34499335721789],[-124.07710783982111,57.34495044535231],[-124.07708510309558,57.344906382595404],[-124.07706438819058,57.344863470726025],[-124.07704165156703,57.34481940796474],[-124.07702093675807,57.34477649609157],[-124.07700022199573,57.344733584216605],[-124.07697748552363,57.34468952144885],[-124.07695677085734,57.34464660957009],[-124.07693611270645,57.344602577242455],[-124.07691331991695,57.3445596349155],[-124.0768926618633,57.34451560258414],[-124.07687194738675,57.34447269069809],[-124.07684921121817,57.34442862791753],[-124.07682849683768,57.34438571602782],[-124.076807838976,57.34434168368935],[-124.0767871246892,57.344298771796126],[-124.07676646692232,57.34425473945428],[-124.07674575272922,57.34421182755759],[-124.07672509505713,57.34416779521236],[-124.07670438095774,57.34412488331219],[-124.07668372338043,57.34408085096365],[-124.07666300937476,57.34403793905998],[-124.07664235189222,57.34399390670811],[-124.07662163798025,57.34395099480092],[-124.07660305877359,57.34390699289543],[-124.0765824014311,57.34386296053877],[-124.0765616876576,57.3438200486267],[-124.07654310858379,57.34377604671743],[-124.07652239490164,57.343733134802314],[-124.07650381591546,57.34368913289054],[-124.07648315880536,57.34364510052621],[-124.07646452342605,57.34360221905815],[-124.07644594457032,57.343558217142935],[-124.07642736575741,57.3435142152267],[-124.07640878698736,57.34347021330941],[-124.07639015177698,57.343427331836935],[-124.0763715730921,57.34338332991753],[-124.07635299445009,57.34333932799707],[-124.07633441585088,57.34329532607558],[-124.0763158372945,57.343251324153],[-124.07629933692373,57.343207352684004],[-124.07628075845064,57.34316335075961],[-124.07626218002035,57.343119348834215],[-124.07624360163292,57.34307534690776],[-124.07622294515522,57.3430313145246],[-124.07620234521316,57.34298616169432],[-124.07618376695956,57.34294215976421],[-124.07616316711196,57.342897006931196],[-124.07614043270021,57.342852944084655],[-124.07611983295202,57.34280779124803],[-124.07609923325258,57.34276263840991],[-124.07607863360187,57.34271748557009],[-124.07605595588646,57.34267230227049],[-124.07603529984334,57.34262826987232],[-124.07601470034079,57.34258311702754],[-124.07599410088697,57.34253796418112],[-124.0759735014819,57.342492811333244],[-124.07595290212555,57.34244765848372],[-124.07593230281795,57.342402505632656],[-124.07591170355909,57.34235735278012],[-124.07589110434894,57.342312199925914],[-124.07587258327877,57.34226707753147],[-124.07585406225239,57.34222195513604],[-124.07583554126981,57.342176832739746],[-124.07581909841481,57.34213174080453],[-124.07580057751733,57.34208661840666],[-124.07578413474253,57.34204152647038],[-124.07576971358372,57.341997585440964],[-124.07575327088374,57.341952493504245],[-124.07573890629413,57.34190743203032],[-124.07572656330721,57.341863521464425],[-124.07571427684928,57.341818490454756],[-124.07570193391946,57.341774579889645],[-124.07569166907993,57.341730699789096],[-124.075681404264,57.341686819689315],[-124.07567321752875,57.341642970054735],[-124.07566710886701,57.341599150885685],[-124.07566100021928,57.341555331717984],[-124.07565489158559,57.341511512551634],[-124.07565288255911,57.341468874759684],[-124.07565093003899,57.341425116525606],[-124.0756489210215,57.341382478736676],[-124.07564899004905,57.34133987141398],[-124.0756511371147,57.34129729455756],[-124.07565530570999,57.341255868610865],[-124.07566160883125,57.34121335268645],[-124.07566785543747,57.341171957206804],[-124.07568241414694,57.34113068358547],[-124.07570309390618,57.34109174224262],[-124.07573208572323,57.34105292275197],[-124.07576725505227,57.34101531508829],[-124.07580865837492,57.34097779880334],[-124.075854161159,57.34094146387292],[-124.07590584141413,57.34090634075336],[-124.07595965608142,57.340870127631156],[-124.07601757018301,57.340835095849094],[-124.07607750570143,57.34080121494388],[-124.07613957560976,57.34076624402589],[-124.0762036669276,57.34073242397897],[-124.07626781461457,57.34069748345835],[-124.07632982769906,57.340663632896714],[-124.07639397515494,57.340628692316415],[-124.07645396649221,57.34059369080178],[-124.07651401419469,57.34055756881741],[-124.07656984931646,57.34052250634967],[-124.07662371928457,57.340485172523394],[-124.07667343316164,57.34044777777899],[-124.07671899095969,57.340410322121464],[-124.07675842763749,57.34037053422133],[-124.07679163027345,57.34033065497067],[-124.07681865535277,57.340289563931215],[-124.07684360239179,57.34024844244172],[-124.07686652786158,57.340206170060334],[-124.07688737530303,57.340163867231254],[-124.0769082226983,57.34012156440027],[-124.07692704853679,57.34007811068006],[-124.07694379636187,57.34003462651433],[-124.07696054414882,57.339991142347934],[-124.07697521393176,57.33994762773737],[-124.07698994014156,57.33990299268371],[-124.07700253189606,57.33985944762961],[-124.07701518008128,57.339814782133026],[-124.07702575028067,57.33977008619391],[-124.0770363204553,57.33972539025557],[-124.07704481265384,57.33968066387543],[-124.07705336129052,57.33963481705364],[-124.07706185344892,57.33959009067564],[-124.07707040204487,57.3395442438562],[-124.07707681622163,57.339499487038324],[-124.07708328684026,57.339453609779234],[-124.07708975744336,57.339407732521515],[-124.0770961715745,57.339362975707694],[-124.07710056421513,57.339317068011],[-124.0771070347743,57.33927119075756],[-124.0771114273913,57.339225283063946],[-124.07711784146639,57.33918052625572],[-124.07712431198165,57.33913464900665],[-124.07712870456216,57.33908874131752],[-124.07713511859404,57.33904398451345],[-124.0771415890654,57.338998107268495],[-124.07714800306694,57.33895335046711],[-124.07715441705345,57.338908593666986],[-124.0771608310249,57.33886383686823],[-124.07716932288588,57.33881911051141],[-124.07717781472697,57.33877438415576],[-124.07718422864842,57.338729627360706],[-124.07719277690468,57.33868378056551],[-124.07720126868816,57.33863905421324],[-124.07720976045177,57.3385943278621],[-124.07722033008537,57.33854963195187],[-124.07722882180673,57.33850490560269],[-124.07723736995911,57.33845905881302],[-124.07724793952292,57.33841436290546],[-124.07725643118185,57.338369636559406],[-124.07726705714843,57.338323820212096],[-124.07727554876482,57.33827909386819],[-124.07728611823411,57.33823439796419],[-124.07729466625707,57.33818855118087],[-124.07730523567892,57.33814385527857],[-124.07731586152408,57.33809803893572],[-124.07732643089605,57.33805334303501],[-124.07733497883007,57.338007496255905],[-124.07734554815458,57.33796280035703],[-124.07735617390094,57.33791698401765],[-124.07736679962181,57.33787116767913],[-124.07737736887132,57.337826471782684],[-124.07738799454155,57.337780655445755],[-124.07739856374118,57.33773595955096],[-124.0774091893608,57.33769014321577],[-124.07741975851053,57.337645447322465],[-124.07742830624113,57.33759960055243],[-124.07743893178707,57.33755378421998],[-124.07744950086425,57.33750908832928],[-124.07746012635957,57.337463271998494],[-124.07747075182938,57.33741745566858],[-124.07748132083157,57.33737275978029],[-124.07748986842714,57.33732691301645],[-124.07750043738187,57.33728221712994],[-124.0775110627529,57.33723640080347],[-124.07752168809844,57.337190584477895],[-124.07753017916438,57.337145858158806],[-124.07754080446178,57.33710004183507],[-124.07754929548518,57.33705531551818],[-124.07755992073443,57.33700949919626],[-124.07756841171532,57.33696477288138],[-124.07757695911496,57.336918926127126],[-124.07758545005572,57.33687419981437],[-124.07759607521116,57.33682838349625],[-124.0776045661094,57.336783657185684],[-124.07761305698774,57.336738930876116],[-124.07761952649403,57.336693053694034],[-124.07762801733469,57.33664832738673],[-124.07763650815545,57.336603601080675],[-124.07764297761058,57.33655772390242],[-124.07765146839368,57.336512997598575],[-124.07765788137988,57.33646824086306],[-124.07766429435104,57.3364234841288],[-124.07767278507932,57.3363787578285],[-124.07767712024827,57.33633397066421],[-124.07768353317434,57.33628921393398],[-124.07768994608534,57.33624445720497],[-124.07769635898134,57.336199700477266],[-124.0777006941023,57.336154913318865],[-124.07770502921312,57.336110126161834],[-124.07770936431375,57.33606533900639],[-124.07771369940421,57.3360205518523],[-124.07771803448452,57.33597576469979],[-124.07772231312171,57.33593209798823],[-124.07772457043643,57.33588728040694],[-124.07772884905621,57.33584361369822],[-124.07773110635806,57.33579879612006],[-124.07773330722223,57.33575509898279],[-124.07773556451356,57.33571028140782],[-124.07773568763413,57.33566655384192],[-124.07773788848543,57.33562285670927],[-124.07773801160305,57.33557912914662],[-124.07773813472039,57.33553540158548],[-124.07773831426924,57.33549055358683],[-124.0777363596645,57.33544679559727],[-124.07773642635155,57.33540418847996],[-124.07773447175337,57.33536043049342],[-124.0777325171597,57.33531667250852],[-124.0777284848585,57.33527288409338],[-124.0777264738444,57.33523024655038],[-124.07772244155927,57.335186458138054],[-124.07771835285152,57.33514379016613],[-124.07771432058483,57.33510000175666],[-124.0777081541952,57.335057303355406],[-124.07769991012142,57.3350145745233],[-124.07768324241859,57.33497396483984],[-124.07766034167086,57.3349332638575],[-124.07763322915552,57.33489362244467],[-124.07759774950523,57.33485497973107],[-124.07755805811665,57.334817396578885],[-124.07751421143628,57.334779752545664],[-124.07746615303793,57.334743168065685],[-124.07741601705078,57.33470655313257],[-124.0773595916815,57.3346709673072],[-124.07730310997405,57.33463650189665],[-124.07724247301846,57.33460197558413],[-124.07718183617254,57.33456744924447],[-124.07711704409385,57.33453286199514],[-124.07705427335145,57.33449942559513],[-124.07698948150376,57.33446483828475],[-124.07692671098494,57.334431401825626],[-124.07686394057603,57.33439796533741],[-124.0768011702771,57.33436452882006],[-124.07674053420742,57.334330002283366],[-124.07668191944431,57.334296626605415],[-124.07662543890252,57.33426216091391],[-124.07657109258108,57.334226605211505],[-124.07651876754733,57.334192200375995],[-124.07646644260788,57.334157795520625],[-124.07641417423139,57.33412227020799],[-124.07636184948204,57.33408786531284],[-124.07630958129863,57.33405233996065],[-124.07625725673938,57.33401793502574],[-124.07620498874905,57.33398240963397],[-124.07615266437993,57.333948004659206],[-124.07610039658265,57.33391247922778],[-124.07604807240361,57.33387807421351],[-124.07599580479939,57.33384254874238],[-124.0759434808105,57.33380814368829],[-124.07588913577047,57.33377258771677],[-124.07583681197356,57.33373818262219],[-124.07578454475745,57.33370265707095],[-124.0757301435276,57.33366822147335],[-124.07567782001702,57.3336338163183],[-124.07562341898151,57.33359938067834],[-124.07557109566143,57.3335649754826],[-124.07551669482028,57.33353053980039],[-124.07546229407728,57.33349610409663],[-124.07540789343241,57.33346166837123],[-124.07535343638692,57.33342835306044],[-124.07529903593678,57.33339391729192],[-124.07524457908292,57.33336060193788],[-124.07518804472005,57.33332725609029],[-124.07513151045592,57.3332939102192],[-124.0750749197839,57.33326168476076],[-124.07501838571568,57.333228338842645],[-124.07496179523635,57.33319611333722],[-124.0749052048525,57.333163887808055],[-124.07484653697108,57.33313163177813],[-124.0747878691888,57.33309937572275],[-124.07472914498909,57.33306824007782],[-124.07467042088516,57.333037104407246],[-124.07460961929088,57.333005938230244],[-124.07455083885864,57.332975922943376],[-124.07449003745944,57.33294475671255],[-124.0744291796344,57.33291471088966],[-124.074368378432,57.33288354460407],[-124.07430752080029,57.332853498726294],[-124.07424671979467,57.33282233238581],[-124.07418591888836,57.332791166018076],[-124.07412517461509,57.33275887918775],[-124.07406437390904,57.33272771276527],[-124.07400357330225,57.33269654631541],[-124.07394282933376,57.33266425940319],[-124.07388208546801,57.33263197246376],[-124.07381920759909,57.33260077543837],[-124.07375846393887,57.332568488443314],[-124.07369772038142,57.332536201421156],[-124.07363697692671,57.332503914371564],[-124.07357617702523,57.33247274772945],[-124.0735133562198,57.33244043012698],[-124.07345261307337,57.33240814299475],[-124.07339181347491,57.33237697626954],[-124.07332899298311,57.332344658581434],[-124.07326819358669,57.33231349180067],[-124.07320537330399,57.332281174055026],[-124.07314249656575,57.33224997671437],[-124.07307961993028,57.33221877934443],[-124.07301674339757,57.33218758194514],[-124.07295386696762,57.3321563845165],[-124.07289099064042,57.33212518705852],[-124.07282805784509,57.33209511000524],[-124.0727651251489,57.332065032922436],[-124.07270011502014,57.33203492529908],[-124.07263718252395,57.3320048481564],[-124.07257217259856,57.331974740471146],[-124.07250918372235,57.33194578370227],[-124.07244411741658,57.33191679638873],[-124.07237905120958,57.331887809043444],[-124.07231185099386,57.33185991158285],[-124.07224672839668,57.3318320446069],[-124.07218160589458,57.331804177599224],[-124.07211434937895,57.33177740047276],[-124.07204709295769,57.33175062331257],[-124.07197983663075,57.331723846118344],[-124.07191252380096,57.331698189323454],[-124.07184515446255,57.331673652927634],[-124.07177784181178,57.33164799606475],[-124.07170833853687,57.331624549506955],[-124.07163889195239,57.33159998247999],[-124.07156938885021,57.33157653584958],[-124.07149982922434,57.33155420961575],[-124.0714302696798,57.33153188334547],[-124.07135857610137,57.33151064693902],[-124.07128688260272,57.331489410493795],[-124.0712151325665,57.331469294442435],[-124.07114332598653,57.33145029878484],[-124.07106944198041,57.331431272551306],[-124.0709976355444,57.33141227681456],[-124.07092363843297,57.33139549136456],[-124.0708496980145,57.33137758544057],[-124.07077356691173,57.33136188979839],[-124.0706995133642,57.331346224655036],[-124.0706233823857,57.33133052892609],[-124.07054719483311,57.331315953585396],[-124.07047100733871,57.33130137820071],[-124.07039481990245,57.33128680277199],[-124.07031857588106,57.33127334773128],[-124.07024025442577,57.331259862096296],[-124.07016395386484,57.331247527398155],[-124.07008563251716,57.33123404167117],[-124.0700072545724,57.33122167632955],[-124.06992882002378,57.331210431373236],[-124.0698504421783,57.33119806593814],[-124.06977200772435,57.331186820888355],[-124.06969357331661,57.331175575791754],[-124.06961300480931,57.33116542051996],[-124.06959649828237,57.331162935174916],[-124.07022266841864,57.3259739713104],[-124.07494677958768,57.318365012943374],[-124.07841866057638,57.31479203996684],[-124.08311909174952,57.3131419459289],[-124.08329866303657,57.31333181762855],[-124.0837716191312,57.313182875046515],[-124.08386349177668,57.31317412598469],[-124.08963684815633,57.3126225938222],[-124.098937727037,57.31229353322379],[-124.10183818894953,57.31133988331436],[-124.11071865165064,57.30790707739201],[-124.11168665629951,57.30786944177124],[-124.11451691776914,57.30790343364039],[-124.11854536200902,57.30748700839549],[-124.12152955047354,57.307178842366675],[-124.12554087567335,57.30685389951724],[-124.13131648405012,57.30605280179035],[-124.13409473363669,57.30536244823455],[-124.13497164617176,57.30506098197699],[-124.13740480095964,57.30428716775538],[-124.13827478095786,57.30408424854857],[-124.14142591293896,57.304050460758226],[-124.14584328223027,57.30506489735481],[-124.14585130859942,57.305541524878684],[-124.14762184092962,57.30561812050725],[-124.14918467522592,57.30522197487647],[-124.15004655275712,57.30492804587222],[-124.15057402680311,57.30454642668255],[-124.15194680720803,57.30395472173966],[-124.1524742488357,57.30357309520734],[-124.15298501754,57.30319235319494],[-124.15331348559857,57.3027148612459],[-124.15486072032392,57.301562741077895],[-124.15554000676474,57.30126172446327],[-124.15812719462741,57.299347201657],[-124.15900466136308,57.29915658724794],[-124.16194214471166,57.29798466172336],[-124.16333808666317,57.29768019713809],[-124.16597073442296,57.297660987781875],[-124.1672066827415,57.29783299444233],[-124.17262338413455,57.29740854525432],[-124.17470476550928,57.29662355232742],[-124.17538406688281,57.29614304747684],[-124.1774529401334,57.295269265593475],[-124.1785125117881,57.2946964881577],[-124.17931279076802,57.29259080598374],[-124.17982522073129,57.29220999165414],[-124.17661183979953,57.290523924977975],[-124.17607121843342,57.290146413894234],[-124.17536168220624,57.28987081966732],[-124.17179171854137,57.28752938248898],[-124.17104377388354,57.28658276146723],[-124.17121815446234,57.28610644967959],[-124.17067760051914,57.284038176099926],[-124.17541480167387,57.278625017704044],[-124.1753635223,57.278611970869946],[-124.17586804017311,57.27843736398086],[-124.17649874891951,57.27844614110204],[-124.17687152892803,57.27833472542815],[-124.17886921301363,57.27601476849197],[-124.18089977766039,57.27382754288936],[-124.18231861070267,57.27227759930804],[-124.18357660175566,57.26816916493005],[-124.18053391352824,57.262673626829546],[-124.17492318706518,57.25813785905931],[-124.17211471579867,57.25646629524506],[-124.16690295789375,57.254034548017785],[-124.15882437533463,57.252557904555765],[-124.1537720643013,57.252352242396896],[-124.14759932189804,57.25026493079151],[-124.14727299695627,57.245694959331864],[-124.14811013470417,57.24142847826278],[-124.14735840180634,57.23673592059905],[-124.14405511340307,57.23369342524564],[-124.1370679770985,57.230347332245906],[-124.13560664212206,57.23003951231532],[-124.13240120886641,57.227401723710095],[-124.13027503653267,57.22372988749992],[-124.1275217284986,57.22000420353295],[-124.12092155863584,57.21831308656928],[-124.1132696426012,57.21677688359947],[-124.10848100200674,57.214689684949505],[-124.1021415798644,57.211117847108966],[-124.09715928473486,57.20828297450184],[-124.09496195492149,57.207129849973086],[-124.09196814046975,57.204996403813844],[-124.09164798338946,57.200776238420204],[-124.09261763394959,57.19461964172822],[-124.09399358152035,57.18994888555365],[-124.09429987760788,57.18612357491547],[-124.0943260568215,57.18493107804288],[-124.09423649949179,57.17973672775041],[-124.09193924952739,57.1743039029295],[-124.08988708667958,57.17194200468897],[-124.08844845114612,57.17056666281292],[-124.08454463818315,57.16649142710894],[-124.08115893554564,57.163329543688285],[-124.07561874025743,57.161866857576854],[-124.06421523728716,57.16372539992367],[-124.05310110032853,57.16736314452157],[-124.04614628081664,57.16799481042834],[-124.04300953293031,57.16682674268263],[-124.03790738008551,57.16491157699387],[-124.03095306978844,57.16166779447398],[-124.02628159137264,57.159130817686496],[-124.02430374486582,57.15831164639741],[-124.02079706534897,57.15599836537052],[-124.01559650610504,57.15379380452479],[-124.01153010432462,57.152395578931944],[-124.00768509057644,57.15088400245071],[-124.00684543843721,57.150476553917116],[-124.00669142343027,57.14802564704904],[-124.00774426834651,57.14432852388662],[-124.007951419813,57.140340468905855],[-124.00738280931003,57.13758727972523],[-124.00586854924545,57.13551923448319],[-124.00337564322315,57.13413579148958],[-123.99987394464169,57.13115830927956],[-123.99578897845008,57.13017186058539],[-123.99333687763084,57.12865431219821],[-123.99422711552323,57.12618358720539],[-123.99343041562292,57.1240187935375],[-123.99098078474857,57.122779275784886],[-123.98738050066093,57.12171929119412],[-123.98484638818779,57.12146493846859],[-123.98030192161892,57.120121105551256],[-123.974584363332,57.11844499761099],[-123.97067750718492,57.117568133401534],[-123.96705774054462,57.115646249675464],[-123.96145247773003,57.113747076961],[-123.95795300358611,57.11268783676993],[-123.95508086936776,57.11134235539891],[-123.95476060776272,57.1108350719194],[-123.95073449732084,57.10942655558935],[-123.94629871831071,57.10826259724504],[-123.94355153689982,57.107376241738166],[-123.941204188832,57.106128406401616],[-123.9371741053634,57.10450414159158],[-123.93631025906107,57.10365636110821],[-123.9330023425042,57.101218233946824],[-123.93075559814332,57.09934396733448],[-123.92942954738552,57.09695510663529],[-123.92767166724195,57.09399432717529],[-123.92520057656027,57.09138991092539],[-123.92459576248766,57.08790032433403],[-123.92418973379758,57.08470988171029],[-123.9224206065427,57.08105825532656],[-123.91941364633031,57.07799674881875],[-123.9175583566002,57.075034292842666],[-123.91764343286837,57.07011172814874],[-123.91966774391086,57.06689732111111],[-123.92422314395225,57.06452145547864],[-123.92434643305955,57.06132155420745],[-123.92433608357905,57.06028997792632],[-123.92323507981764,57.05835311681957],[-123.9225729743945,57.05715868455591],[-123.92364949228279,57.05435068029197],[-123.9277236273807,57.05351866162359],[-123.93614684483238,57.054719623893604],[-123.94421943640332,57.05476651164356],[-123.95215468548845,57.053671722163664],[-123.95589184337966,57.05233129482079],[-123.96170184951168,57.04988419775931],[-123.96977756753239,57.04609999719283],[-123.9742218270481,57.043846333797575],[-123.97773670798229,57.04199065604421],[-123.98152490741937,57.038695206225675],[-123.98181600925956,57.037551756429174],[-123.98761931995183,57.03515729638669],[-123.99151534660642,57.03197985027801],[-123.99341125591751,57.02853832390834],[-123.99654182464133,57.0238781601827],[-123.9972009668762,57.02135924316283],[-123.9967016010988,57.01827544322341],[-123.99444745308024,57.01594486238433],[-123.99242433491804,57.01488232899778],[-123.9887503752629,57.01416196641525],[-123.9853941188522,57.01430737019356],[-123.98151603712623,57.01433697810373],[-123.97752257874338,57.013736896707094],[-123.97185937682184,57.01320933796688],[-123.96736777741124,57.01330070927204],[-123.9614127922856,57.013925055013885],[-123.95637371674043,57.01345143432589],[-123.95307759631197,57.011534221386405],[-123.95079396714316,57.00857459883757],[-123.94898475724725,57.00693179493328],[-123.94842901132809,57.00590961067948],[-123.95109748349005,57.00411313669076],[-123.95285306311982,57.00273273630527],[-123.9541801215501,57.00134557943446],[-123.95449680106418,57.000041184784635],[-123.95479489043407,56.99908626218126],[-123.90787943370009,56.99882470883451],[-123.9047964344876,56.99790516129944],[-123.89995604128111,56.99716346207984],[-123.89635629934813,56.99635195961919],[-123.89515099217799,56.99517553087942],[-123.89664802660967,56.99372890920858],[-123.89837736073702,56.99255508023374],[-123.89702437174299,56.99046150229],[-123.89581971824468,56.98927612395387],[-123.89747371735676,56.98645987100976],[-123.89963522391109,56.983400687086764],[-123.90016323761958,56.98127473407975],[-123.90159239052952,56.978338235567065],[-123.9003778601906,56.97703615729569],[-123.89564564151283,56.976475378559854],[-123.89322264449419,56.975880108891744],[-123.89203236733633,56.97504469774871],[-123.89082890044894,56.97174275862974],[-123.89080088921692,56.9689441766087],[-123.89227611812589,56.966977127871395],[-123.89642864607775,56.96395031256678],[-123.89834324538256,56.96237595422416],[-123.89828668466876,56.96129884645344],[-123.89854230925809,56.95751837213117],[-123.89800359380844,56.952899986762745],[-123.8955255585551,56.948815218092186],[-123.89049146978415,56.946312180937774],[-123.88908828318543,56.94547328722648],[-123.88654756570014,56.9422572418688],[-123.88378752414341,56.93914519304888],[-123.87788602598383,56.93808036853829],[-123.87101955181782,56.938694458756494],[-123.86636570779494,56.93978398968187],[-123.86489217178554,56.939634227386634],[-123.86067363858233,56.93643490576348],[-123.85672441634021,56.93254932983796],[-123.85350495195263,56.93064870868847],[-123.85000665575124,56.92932632713584],[-123.8454585676851,56.928237550902836],[-123.84307047640611,56.9285566476089],[-123.84136267933684,56.92995423652808],[-123.83426283688189,56.93239203004733],[-123.82992171084166,56.93347650069318],[-123.82750957511337,56.93333753104212],[-123.82356685074383,56.93144198280654],[-123.82018270492894,56.92840773325555],[-123.81896241292472,56.9267011933303],[-123.81890789466269,56.925337085865806],[-123.81896007740485,56.921795462575545],[-123.81837006475276,56.91826099667244],[-123.81922791967783,56.91618578890097],[-123.82245233190422,56.91357632055779],[-123.82547984120131,56.91124150208346],[-123.82894753847164,56.90926374569873],[-123.83232061934636,56.9074995623291],[-123.83273240555181,56.905147801355604],[-123.83123667890449,56.90219919145624],[-123.83120585660173,56.89894323053483],[-123.83297386125332,56.89674866081975],[-123.83815075150163,56.89564223677738],[-123.84316717115095,56.89563602055563],[-123.84942439471052,56.895497720294564],[-123.84936522289318,56.89183777120348],[-123.83803581604191,56.87890590947005],[-123.83458796273526,56.87677678917889],[-123.82908403277281,56.87497189990427],[-123.82568431755544,56.873462134268664],[-123.82440761676146,56.870741348761],[-123.8237828057708,56.86812117296778],[-123.82011949039008,56.86576383745596],[-123.81438403087837,56.86344323003999],[-123.81268968100004,56.862894515804555],[-123.8109485089138,56.861143272985146],[-123.81252149091905,56.85890091225832],[-123.81466293657796,56.855609900112185],[-123.81489555524065,56.85149752570379],[-123.81216226167376,56.8460975608505],[-123.8077089403563,56.8394757268875],[-123.80557670536466,56.8362470633816],[-123.8039256962769,56.83438067419722],[-123.8019155035488,56.83103743658402],[-123.79978896871346,56.83003281069683],[-123.79294635194624,56.82852640510064],[-123.78712628757728,56.82666044772529],[-123.78383034742717,56.825160271768],[-123.78354746645864,56.8249402020139],[-123.78291490342244,56.82444847276373],[-123.78309090924877,56.82427773132615],[-123.78335789850514,56.8239874796062],[-123.78359842658071,56.82369341175741],[-123.7837875734111,56.82340070653802],[-123.7840577813245,56.82287510108509],[-123.78376746895769,56.82278493946548],[-123.78355577064806,56.82261204811233],[-123.7833215989206,56.822365907548864],[-123.78307557528117,56.822147588439584],[-123.78260356372022,56.82186262524637],[-123.78225338346051,56.82167166725119],[-123.78179597739711,56.82145421039975],[-123.78144317009277,56.82130916570243],[-123.78090082943885,56.82110594472811],[-123.78035773050287,56.820880288629205],[-123.77988087516137,56.820644555671265],[-123.77951535828096,56.820399519641605],[-123.77920390390992,56.820177829231504],[-123.77886409567829,56.81987830357027],[-123.77867661838165,56.819570179521364],[-123.77854154582664,56.819242776170995],[-123.77845138577614,56.81888363433473],[-123.77838913240652,56.81861016628981],[-123.77833354377553,56.818327844652686],[-123.77821921360317,56.81806805618745],[-123.77812904009332,56.817780657315296],[-123.77784999809919,56.81742387993031],[-123.777523789376,56.81717390747493],[-123.77713777017283,56.816893762005975],[-123.77671972472169,56.81663548536198],[-123.77625600293597,56.81642238361916],[-123.77576018979472,56.81623226981072],[-123.77505216793689,56.81609343720457],[-123.7743593098859,56.81601203167047],[-123.77357948420858,56.81590894962503],[-123.77296585578924,56.8158412293678],[-123.77243666315506,56.815732360794],[-123.77192577186186,56.815519552788686],[-123.77158798325553,56.81536464968355],[-123.77101140396815,56.8151170780222],[-123.77068777541083,56.81496577915419],[-123.77037665688634,56.814775460156746],[-123.77011000140631,56.81456124414731],[-123.77004728023424,56.81433260324012],[-123.77001874162708,56.81400926675823],[-123.77008124885675,56.81374354747266],[-123.77022502210227,56.81349155828613],[-123.7703942258673,56.813225433964156],[-123.77056239429774,56.81297722750344],[-123.77077187116075,56.81272412701228],[-123.77099853109792,56.81242199853478],[-123.77114900637521,56.8121959067928],[-123.77120579065003,56.81195811364595],[-123.77118310187004,56.811711105867],[-123.77110116051635,56.811495586962195],[-123.7707896651891,56.8112054945453],[-123.77058276788118,56.81102257490957],[-123.77036999970784,56.81079919830385],[-123.77021495349197,56.81053533869918],[-123.77015278876807,56.81022599681686],[-123.77010964934422,56.80990689367181],[-123.77006231346776,56.80966058243934],[-123.76992781342268,56.80943182695424],[-123.76967409630231,56.8090295071429],[-123.76984276772798,56.80877234326739],[-123.7699464234189,56.808682207523155],[-123.77025068677321,56.80863476063462],[-123.77069624604276,56.808520244496194],[-123.77118985294256,56.808354988549326],[-123.77174268743771,56.8081941129461],[-123.77226728087003,56.80802490234039],[-123.77280773234472,56.80790080182613],[-123.7731888859742,56.80787148544004],[-123.77377630614328,56.807822173599206],[-123.77440805847151,56.80771532994488],[-123.77482728990037,56.807380634899786],[-123.77498704172673,56.80724213618018],[-123.77608182231123,56.80671614591377],[-123.77728977109516,56.805790778659926],[-123.77912165214978,56.804035370879184],[-123.78046494088308,56.80242850374014],[-123.77982928897931,56.80010391066559],[-123.77981829812106,56.80000956026207],[-123.77969700029158,56.799050167454986],[-123.77807656085982,56.797129040131566],[-123.77755013841778,56.79622658746569],[-123.7810582720733,56.79544603843134],[-123.78581082057403,56.79473825310972],[-123.79002654642493,56.79333846467504],[-123.79520862410337,56.79184963870989],[-123.79562457969686,56.791278306939546],[-123.79587395856872,56.79028377747476],[-123.79622558413772,56.78918561908505],[-123.7962884064006,56.7880825438018],[-123.79694470665962,56.78667346274342],[-123.79815752084426,56.785642644339816],[-123.7985060452408,56.78459711682562],[-123.79957101610573,56.782775742558954],[-123.80000565360277,56.78208926212256],[-123.80009801592905,56.781942866503385],[-123.80109724159819,56.78127606843581],[-123.80239107490618,56.78051001862835],[-123.80311936341162,56.77952361833328],[-123.8033595760916,56.77868586335918],[-123.80353328414692,56.777322375880935],[-123.80380028841574,56.77601203668139],[-123.8048081886384,56.77518843084508],[-123.80593315686716,56.77399801276247],[-123.806556061385,56.77316786649332],[-123.80697667797322,56.77254390568062],[-123.80711457996796,56.77180978371614],[-123.80699350859204,56.77054667157465],[-123.80751030610158,56.76992434100048],[-123.80745277852873,56.76923959210444],[-123.8057676458836,56.7684218783354],[-123.80370774457343,56.76749353199466],[-123.8026148887699,56.7664235297183],[-123.80096777363035,56.76497642789434],[-123.80000693269874,56.764470238392896],[-123.79900830920279,56.76394434258315],[-123.79680986045348,56.76261334835788],[-123.79698776982889,56.76247514005481],[-123.79731563115105,56.76218591635886],[-123.7972894760337,56.76192541267701],[-123.79723537617275,56.76168797286308],[-123.79722256893652,56.761336900383746],[-123.79724176865584,56.76110743461785],[-123.79722763995932,56.760851619651575],[-123.7971878847132,56.76068616439634],[-123.79685095973133,56.76041476287293],[-123.79658503435279,56.760155779424544],[-123.79639472462455,56.75997206578873],[-123.79615669304408,56.75972700795268],[-123.79588591207593,56.759445521480735],[-123.79565325507073,56.75917813548629],[-123.79544913214554,56.758949347392075],[-123.79521059651535,56.75867737661511],[-123.79495389445775,56.75836474183413],[-123.79476072570137,56.75819554917694],[-123.79437192210338,56.75800844773216],[-123.79393644549575,56.757885563443764],[-123.7934679085584,56.75776771829783],[-123.79311365490209,56.75762155624455],[-123.79287464139074,56.75743028047098],[-123.79278221049066,56.757254957319326],[-123.79282804254566,56.757061816956586],[-123.79298482113202,56.75679098332257],[-123.79299118649872,56.75653551779279],[-123.7930445003661,56.75635483548079],[-123.7931553687247,56.75617065157321],[-123.79328010531567,56.755922810748],[-123.79332465712153,56.755752067356774],[-123.79309364820038,56.755564291424186],[-123.79267021055202,56.75530261157906],[-123.79207187386324,56.75498301829224],[-123.7914507873962,56.754739257437095],[-123.79079792355392,56.75444226650842],[-123.79016400081588,56.754208368429346],[-123.78962459898986,56.75396935717335],[-123.7889443301865,56.75375820045828],[-123.7883060813233,56.753564572840695],[-123.78778485915377,56.75340208848326],[-123.78709898217942,56.75321772840944],[-123.78646790865935,56.753113889473155],[-123.78609804717046,56.75313446036683],[-123.78576200620198,56.75324416362827],[-123.78540652241237,56.75337146813898],[-123.785052249972,56.753513364705306],[-123.78460449389455,56.75357070918582],[-123.78386610975924,56.75355245249338],[-123.78253604475421,56.753457911272946],[-123.78212757297997,56.75336571457026],[-123.78149474010033,56.753149726733945],[-123.78088678993826,56.75292855800614],[-123.78040658122804,56.75283736652917],[-123.77997068565058,56.75275926438748],[-123.77920107363667,56.752642922565364],[-123.77840302129741,56.752486854452876],[-123.77792876977787,56.75239911878508],[-123.77747491815065,56.752312852915985],[-123.77697939460262,56.75216757993126],[-123.77674824000819,56.75194838454577],[-123.776569259829,56.751748020976535],[-123.77663593825446,56.751585509649715],[-123.77675338509187,56.751216496615136],[-123.77623808990919,56.75055973033053],[-123.77599290675369,56.75026406814923],[-123.77578327055569,56.74999143582934],[-123.77550367330517,56.74976019542374],[-123.77511628191583,56.74951589018506],[-123.77452870545491,56.74926253365659],[-123.77400173168839,56.74905953922504],[-123.7736586473017,56.74886419279503],[-123.77337455619838,56.74856897641886],[-123.77332834657284,56.748197148338406],[-123.7732993423923,56.74781104435753],[-123.77330648565429,56.74736615301095],[-123.7732925199895,56.74711033754464],[-123.77341617324097,56.7467761843115],[-123.77344782381198,56.7464393257519],[-123.77345902904207,56.74606624502626],[-123.7734665790363,56.74572112497908],[-123.77347213354327,56.745410719823845],[-123.77339907370882,56.74504291377457],[-123.77335238947575,56.74475066505417],[-123.77324549116557,56.74443720232453],[-123.77316664944996,56.74431254085393],[-123.77280263859622,56.74412579898706],[-123.77244808729965,56.74395267033689],[-123.77211140536099,56.74386055637492],[-123.77152459584129,56.74370247845829],[-123.77114850150106,56.743548030778754],[-123.77042404280768,56.74329117357287],[-123.76991047743213,56.743070457596964],[-123.7689072493624,56.74267651138638],[-123.76792650593605,56.74235468564905],[-123.76739864761765,56.74213371258003],[-123.76663507048828,56.74184589244685],[-123.76597430452922,56.74165736641431],[-123.76531619341074,56.74142292414971],[-123.76486157299937,56.74128167238394],[-123.76458485840577,56.74114461641682],[-123.76436658553902,56.74098839355908],[-123.76432658574178,56.74065253985205],[-123.76436582633953,56.740256404769916],[-123.76431770978824,56.739919289875495],[-123.76417948742208,56.73944049880718],[-123.7639015520188,56.738934630207844],[-123.76349730910877,56.73824049942787],[-123.76329308564473,56.73784127342363],[-123.76304907505033,56.737492921885206],[-123.76275069077792,56.73702256712998],[-123.76258047652577,56.73663737997456],[-123.76245991174314,56.73627883374351],[-123.76238083766094,56.735910917244276],[-123.76233892805458,56.73550216935033],[-123.76226065704287,56.735084945432256],[-123.76217329289993,56.73478974656628],[-123.76215888784428,56.73454289036755],[-123.76221849949505,56.73429059006891],[-123.76242130770596,56.733898409592236],[-123.762611728118,56.733578875552574],[-123.76282836856272,56.73323065079143],[-123.76312974403895,56.73279758009803],[-123.76331940082454,56.73245561344322],[-123.76353598708081,56.73207263794263],[-123.76373216385423,56.731617569117766],[-123.76382412097888,56.73123019507277],[-123.7638627300463,56.730915879869215],[-123.76386149432706,56.73054707037215],[-123.7638558454976,56.730183789277454],[-123.76393970879795,56.72965279572664],[-123.76373358333682,56.729393655784236],[-123.76334569407355,56.72916275604806],[-123.76289714825278,56.728954344767324],[-123.76254125224517,56.728772196577594],[-123.7622314474168,56.728571789575795],[-123.76175831068043,56.72836406931211],[-123.76116421692772,56.72805336756095],[-123.76050566694155,56.72772473194368],[-123.75997099735167,56.727448682362464],[-123.75936485704909,56.727134400393155],[-123.75873218092045,56.72685440427404],[-123.7581656415139,56.72666971099796],[-123.75761345747988,56.726520013311166],[-123.75725751495904,56.72637484013],[-123.75700591841155,56.726159737181035],[-123.75696694719086,56.72591357555868],[-123.75694056917412,56.72566202786312],[-123.75679462308243,56.72542521867306],[-123.75649119215252,56.72508030716238],[-123.75635956411735,56.72484374606486],[-123.75623912336555,56.724449327082006],[-123.75614725591775,56.72419776309032],[-123.75595405851394,56.72385812727149],[-123.75586248384363,56.7235662145028],[-123.75580200831395,56.72337348416845],[-123.75584182040437,56.72321612368941],[-123.75629604004918,56.72300655018674],[-123.75684014716435,56.7227290377317],[-123.75732033818474,56.72238876242977],[-123.75764331831095,56.722077143526874],[-123.75795716325916,56.72167569076676],[-123.75830608279857,56.721269241316044],[-123.7586675211784,56.72085852457941],[-123.75892279461391,56.72040785397647],[-123.75927068389096,56.71998344981839],[-123.75974830237114,56.71933262444796],[-123.76009086871849,56.7188229356504],[-123.76043039838748,56.71825938897104],[-123.76066686004323,56.71788573431181],[-123.76100787463,56.717367049615284],[-123.76164452917422,56.7164062363721],[-123.76188077387411,56.71603593931908],[-123.76220195166144,56.71561218776362],[-123.76246367893904,56.71533200556361],[-123.76259663326174,56.715120211191426],[-123.76257401083735,56.71427127792653],[-123.76257278790442,56.71390247201175],[-123.76252652926303,56.713534007084405],[-123.76252519417271,56.713238059546605],[-123.76257102684328,56.712904817549926],[-123.76260835923736,56.71257703301751],[-123.76258956512217,56.71240632687383],[-123.76254977073225,56.71192588172205],[-123.76255468021432,56.711557182523705],[-123.76254848143466,56.71127460217835],[-123.76256614789068,56.71093302626535],[-123.76259198997953,56.710591592032806],[-123.76260450993149,56.71030373145869],[-123.76258430967525,56.70994468600022],[-123.7624507405985,56.709671108855055],[-123.76227973649924,56.709408092302105],[-123.76210217494106,56.70911693883161],[-123.76204758852695,56.70889292937507],[-123.76214629406394,56.70867157582091],[-123.76231734998596,56.70847277318822],[-123.7625596975963,56.70835030713654],[-123.7627000206092,56.70825858027435],[-123.76284897067043,56.70815915624108],[-123.76313058803504,56.70785241722826],[-123.76319071591274,56.707519423820074],[-123.76315334484231,56.70713878423096],[-123.7631496036576,56.70709724534849],[-123.76305062042776,56.70668527390418],[-123.76302344079475,56.70644716789791],[-123.76302330006595,56.70627230178691],[-123.76314154419408,56.706137597317365],[-123.7631400818368,56.70612748370444],[-123.76395399400745,56.70535244921172],[-123.76497303834783,56.704318665506904],[-123.76597086813436,56.70365216934065],[-123.76732596729428,56.703352778327826],[-123.76747306209465,56.70332057271067],[-123.76839925019351,56.70311575922733],[-123.76994300859695,56.70298549673116],[-123.77155421215625,56.7016457925697],[-123.77074012523425,56.70079105727219],[-123.77078492662271,56.70001167501191],[-123.7708065542349,56.69963542162694],[-123.77026557598008,56.69904769108399],[-123.76966278942034,56.697827817040434],[-123.76953415233427,56.69672149702828],[-123.76855231074501,56.6954435082557],[-123.76767268334633,56.69406079251585],[-123.76703654323278,56.691788916829374],[-123.76622276262384,56.690934157918974],[-123.76570919366816,56.68987385850598],[-123.76444270996717,56.688537108288344],[-123.76302566120431,56.686515103085355],[-123.76188568167929,56.68465481323114],[-123.761000397131,56.68337844034717],[-123.75992020338576,56.68215024071047],[-123.75844294267237,56.68117854997619],[-123.75541677074273,56.68044220807499],[-123.75169344124274,56.68016667559039],[-123.75009706832296,56.67956159010648],[-123.74932360299921,56.678022546598115],[-123.74835816939823,56.67648127067433],[-123.74675961178923,56.674297863609944],[-123.74624475253282,56.67323746125219],[-123.74592696333266,56.672127816689425],[-123.74514457300883,56.67074776207575],[-123.74314122485309,56.6689248932791],[-123.74054290751477,56.66746035337155],[-123.73801729618,56.66636469132451],[-123.7365289733323,56.6656021543734],[-123.73455787257367,56.664883806402415],[-123.7334146246385,56.664758362358945],[-123.73252849692913,56.665164254584425],[-123.73077778967543,56.66560650031159],[-123.7292076752233,56.66620995015913],[-123.72812654131461,56.666663943784584],[-123.72705462822547,56.66696004248615],[-123.7259918836383,56.66709936617312],[-123.72415739949916,56.6673293168206],[-123.7224126103282,56.66766731215354],[-123.72095264666217,56.6680618777411],[-123.71854232257549,56.668281578079565],[-123.71743624466987,56.66915651080465],[-123.71662427056424,56.66993015239669],[-123.71563265618516,56.67049099742719],[-123.71427877523729,56.67067775657374],[-123.7134964341177,56.6705305067405],[-123.71309826971681,56.67059294823687],[-123.7126868091584,56.67056884174245],[-123.71246681924765,56.670555974757164],[-123.71187483443357,56.67043899145227],[-123.71122892341575,56.67023137498701],[-123.71061568226287,56.67005908346494],[-123.71000987410146,56.66996874834273],[-123.70939117105603,56.6698198933479],[-123.70866539743365,56.6695805810402],[-123.70814635565378,56.669440215117],[-123.70767816324962,56.66930411316646],[-123.70717099130752,56.669135930945004],[-123.70682044252592,56.66898061853851],[-123.70657627479271,56.66878908449178],[-123.7062511316754,56.668480655228734],[-123.7058856993274,56.66812779271278],[-123.70548878785631,56.667788941371946],[-123.70512517960516,56.667543717876626],[-123.70459609211585,56.667228294073915],[-123.70401465941123,56.66689960638894],[-123.70345443546158,56.66659259105034],[-123.7029005311947,56.66631707160849],[-123.70234621051412,56.66611776523998],[-123.701904500144,56.66594960625223],[-123.70119153526453,56.665599506777035],[-123.70056444579532,56.665283440549615],[-123.70006229775073,56.66496287283491],[-123.69962510382706,56.66461543802282],[-123.69915019144052,56.66424939420025],[-123.69879376010725,56.66402221486704],[-123.69844292617728,56.66380410176769],[-123.69813275832452,56.663658452515875],[-123.69764550069746,56.66353542372032],[-123.69721787724747,56.66347510841691],[-123.69665875743661,56.663392267460175],[-123.69596125917704,56.66323072983786],[-123.69542741290978,56.66306650707606],[-123.69484008892714,56.662804926765574],[-123.69437139363669,56.66250735220836],[-123.6940732084894,56.6622980141079],[-123.69380340615015,56.66209254543356],[-123.69349794795562,56.66183375510611],[-123.6932926526584,56.6615745131016],[-123.6930665007866,56.661184870202206],[-123.69279422507721,56.660849327485764],[-123.69253491188155,56.660536434574325],[-123.69236830307716,56.66034850143154],[-123.69197345096343,56.66018450801788],[-123.69129446773078,56.66002215440669],[-123.69074111508658,56.65987773902875],[-123.69031982366293,56.65978052279851],[-123.68992657863132,56.65969277481133],[-123.68966029902498,56.6594974484964],[-123.6894752616518,56.65913880026972],[-123.68926824114907,56.65877191152536],[-123.68904107947269,56.658400177930275],[-123.68873490148293,56.657948563291356],[-123.6884683682684,56.657586211605654],[-123.688163058971,56.65722316443032],[-123.68793158235023,56.656924211813255],[-123.6875737891483,56.65658488288501],[-123.68727658002614,56.65632622499225],[-123.68705672170013,56.65600393956582],[-123.6868773935694,56.655721613019885],[-123.68667138931755,56.65537267310735],[-123.68639894269918,56.655041596918025],[-123.68598867673212,56.654657606057775],[-123.68553894499685,56.65431886370401],[-123.68507739470154,56.65410993515933],[-123.68432059035207,56.65395287187189],[-123.68368348551432,56.65394703706237],[-123.68293373426286,56.65401427780837],[-123.68237582855397,56.654084961454984],[-123.68183227425868,56.65415477972548],[-123.68118212078765,56.65423052594805],[-123.68017894778914,56.654298799489155],[-123.67930528812239,56.654353702489665],[-123.67816897805011,56.6544274116257],[-123.67741302231249,56.65442725307794],[-123.6764217177193,56.65446768803124],[-123.67561510244651,56.65449462968685],[-123.67478601524363,56.65441915634052],[-123.6738844172992,56.6541899230828],[-123.67281262804973,56.65397106405761],[-123.6715304093736,56.65371813217345],[-123.67051574973917,56.65353503393215],[-123.66964802570298,56.65342295935248],[-123.66846553985552,56.65331303609119],[-123.66718438109076,56.653247275677806],[-123.66628991807217,56.65310442934958],[-123.6657046842724,56.653017615592574],[-123.66500173053907,56.65298583586692],[-123.66478199075878,56.65297064831201],[-123.66439392579358,56.65211955623426],[-123.66443501242075,56.65143652893664],[-123.66429059906389,56.650644774708475],[-123.66435377797035,56.6495944812936],[-123.66507249815211,56.648819478120686],[-123.66627930210828,56.64784256942717],[-123.66748499203767,56.64691719379492],[-123.66821308047274,56.64598429448347],[-123.66764270183698,56.644291462912356],[-123.66710721688152,56.64365069290817],[-123.66620391101466,56.642740966498145],[-123.6659509493134,56.64215798816501],[-123.66514043299416,56.6413026172068],[-123.66382214903537,56.640909953641376],[-123.66259225251557,56.6406780506237],[-123.66219819761812,56.639250688038466],[-123.66275026763307,56.63805233484493],[-123.6638977041031,56.63649598448584],[-123.66535594126735,56.63452378752957],[-123.66773797727868,56.633147812150256],[-123.66990292184452,56.63218821867178],[-123.67247126038643,56.63086709276266],[-123.673292752829,56.62993586712866],[-123.67325664145925,56.62893647736451],[-123.67338395285338,56.62841306497597],[-123.67400000837257,56.627740423642905],[-123.67434211608833,56.62680054325714],[-123.67469884532538,56.62565019450363],[-123.67456685069422,56.62464907819603],[-123.67348360696943,56.62357811197105],[-123.67277657530252,56.622566612871665],[-123.672454993098,56.62156207146064],[-123.6708969598131,56.62037714117077],[-123.67162446927179,56.6194442363006],[-123.67225098360272,56.618561066178316],[-123.67260139549113,56.61751598020361],[-123.67364255097995,56.61611570749933],[-123.67351061592052,56.615114595345794],[-123.672310958768,56.61435649312925],[-123.66986340838847,56.61368118462776],[-123.66954624731638,56.61257135260443],[-123.6696407086447,56.61099594197107],[-123.67079653168942,56.60928167662078],[-123.67172287578057,56.60819432732449],[-123.67359575871745,56.60728211593472],[-123.67604024407817,56.60643287403319],[-123.6790699784044,56.60538340373681],[-123.6791076159085,56.60475301506938],[-123.67850490366703,56.60363806908414],[-123.67731172480497,56.60277588660012],[-123.67553020048545,56.602165367947514],[-123.67375503002833,56.601449573938574],[-123.6736043143622,56.600763102814504],[-123.67358221593759,56.6000072170616],[-123.67357137114021,56.599711103659864],[-123.67343949356133,56.598710000363944],[-123.67314951918453,56.59718034000748],[-123.6732374988287,56.59571019046387],[-123.67395937182076,56.59482875369236],[-123.6732203154493,56.59439506782063],[-123.67257816310142,56.593910446583614],[-123.67223798805888,56.59322055177941],[-123.67209986590622,56.59232470095018],[-123.67224765980423,56.58985579854795],[-123.67345134364807,56.588931516226694],[-123.67395467057574,56.58853036195368],[-123.67435509968467,56.58821253549719],[-123.67597896810328,56.58824185242209],[-123.67808164703045,56.58827978319677],[-123.68105670135868,56.58812266511742],[-123.68284707620583,56.58857522677959],[-123.68552191303195,56.58904142055022],[-123.68587725329222,56.589102730016535],[-123.68867012831406,56.588785237610566],[-123.68909064145488,56.58816172637199],[-123.68951223017721,56.587485551960484],[-123.69044627833958,56.58686900873626],[-123.69063210615823,56.586830868868255],[-123.6911898332769,56.58664359469529],[-123.6916534378793,56.586358235101066],[-123.69216340855469,56.586013177398776],[-123.69256104974822,56.58567058856293],[-123.69300540994801,56.58533107749637],[-123.69358247829271,56.58505783243328],[-123.69429588030064,56.584720894407724],[-123.69504178051623,56.584420402606696],[-123.69579422629297,56.58414692496614],[-123.69670618348489,56.5838314615266],[-123.69766064302834,56.5835212354525],[-123.69826325760872,56.583297746130654],[-123.69878714207456,56.58306051741613],[-123.69932456806966,56.582801111158965],[-123.69971646914621,56.582588421560104],[-123.7003126810847,56.58236929234475],[-123.70093412669647,56.58213716059729],[-123.70142568724052,56.5819632345253],[-123.70200825425616,56.58180213973481],[-123.70253258559208,56.58166017899025],[-123.70316731596927,56.581513460425064],[-123.70385506149279,56.58140131049521],[-123.70451678278123,56.58128084688452],[-123.70512014975887,56.581147010257716],[-123.70573079229744,56.58106261889365],[-123.70592963855964,56.581079612532534],[-123.70800456859311,56.580509054878334],[-123.71099426406609,56.58171897972607],[-123.71259010118503,56.58222034766602],[-123.7147573848618,56.58278451966187],[-123.71695246722798,56.582876141155765],[-123.7185668841888,56.5830627990953],[-123.71971385443616,56.583083116911084],[-123.7217978674308,56.58343497066572],[-123.72298683604538,56.5833999589875],[-123.72515026448744,56.58333620093181],[-123.72708883504693,56.582897432207325],[-123.72693621207085,56.58226369267902],[-123.7269822123664,56.58147653917717],[-123.72735030648364,56.58006290665393],[-123.72792712955832,56.57839179830248],[-123.72932778908803,56.57731246470816],[-123.73159611733907,56.57614304917138],[-123.73329809081665,56.574858265460065],[-123.73528809732768,56.57352697060777],[-123.73734627717587,56.57266872476163],[-123.7396089346301,56.57155288103771],[-123.74175958143645,56.570748872633075],[-123.74181443148296,56.56980384004524],[-123.74128791565639,56.569005525681035],[-123.74035105550487,56.5686741238782],[-123.73777385595682,56.56857617324678],[-123.73608253948387,56.568073437493446],[-123.73374776689012,56.56713903222647],[-123.7326533252114,56.56622531888504],[-123.7312534027466,56.56562229065736],[-123.72964879440585,56.5652790357772],[-123.72740193104504,56.56445030103877],[-123.72517251605782,56.56335955495111],[-123.7226325330453,56.56263203343287],[-123.71977379755099,56.562476052363124],[-123.71964702539529,56.5613697655781],[-123.72076498927801,56.55860313406185],[-123.72220406480912,56.55689354070309],[-123.72325105014355,56.555335037169485],[-123.72397097676125,56.554454459039626],[-123.72450770286905,56.553465278447376],[-123.7244673369977,56.55251745002525],[-123.72405036803166,56.55145872181838],[-123.72487713869384,56.55042199309935],[-123.72362007009045,56.55066315507639],[-123.72218703967621,56.550637791123],[-123.72028077436255,56.55055134658074],[-123.71778099904499,56.55082198449933],[-123.7161442740463,56.55100365926687],[-123.71394684471366,56.55101731177503],[-123.71127211499316,56.550969756582646],[-123.70921984239327,56.55014415080426],[-123.70818494240959,56.5498634396143],[-123.70535815684718,56.54918201072243],[-123.70373385977041,56.54915302842582],[-123.70267735242041,56.54923952648402],[-123.70153138790761,56.549219057331705],[-123.69979797961061,56.54945035617603],[-123.69825893138548,56.5496335502141],[-123.69692162284352,56.54960961656421],[-123.6952410048758,56.54894847573986],[-123.69358220267704,56.547920061701205],[-123.69288537867348,56.546750840656614],[-123.69264708584447,56.545958603533705],[-123.69310550882196,56.544652059999414],[-123.69315838459255,56.543759685646755],[-123.69235867574139,56.54274665818575],[-123.6917316514327,56.542051685156316],[-123.69129078776149,56.54141273078971],[-123.69096315656986,56.54051352751649],[-123.69003059857491,56.54012802077613],[-123.68880794061302,56.53979109544638],[-123.68713726152174,56.53897197991179],[-123.68595525446135,56.53795203497516],[-123.6847701804412,56.53698470365261],[-123.68363914225766,56.536753616214774],[-123.68145920409432,56.53645205354551],[-123.6793043891219,56.535729463808984],[-123.67875272750068,56.53504026722184],[-123.67823707376849,56.534396552606296],[-123.67926019213101,56.53325829516284],[-123.67988321362202,56.53268108742047],[-123.6803726055762,56.53222700260752],[-123.68004223553886,56.53137927983708],[-123.67944173269375,56.53021172119687],[-123.67936342599224,56.529953632092784],[-123.67896393812039,56.52862605429743],[-123.68119654749874,56.52803529587776],[-123.68419814513324,56.527354113550075],[-123.68643481957527,56.52665798067276],[-123.68687958457393,56.526266960625804],[-123.68696274064845,56.52582684207619],[-123.68759358380848,56.524839513656154],[-123.68970316890359,56.52308968876446],[-123.6905833255708,56.522737865038955],[-123.69194777026951,56.52228825078404],[-123.69378184749628,56.52195352844138],[-123.69599206271815,56.52173088137898],[-123.69887879979791,56.52136114866945],[-123.70119697158692,56.52092962796866],[-123.702750322747,56.52048440155578],[-123.7045997259369,56.51988640570023],[-123.70582272252166,56.51986340390445],[-123.70581537805107,56.519849822802975],[-123.70557211470992,56.51955518473297],[-123.7053337036843,56.519281928676655],[-123.70528724083384,56.51910288640878],[-123.70520040734401,56.518779656506624],[-123.70500188934471,56.51852056198881],[-123.70467839698621,56.51824018148838],[-123.70428478089285,56.51794061444014],[-123.70390259370295,56.517619954394185],[-123.70366572411022,56.51732094341207],[-123.70326279790584,56.516868773123704],[-123.70287566340784,56.51649422136426],[-123.70252019158085,56.51620429696559],[-123.70200703290328,56.51586111495559],[-123.70177047755112,56.51566073944305],[-123.70143986017005,56.51543290224352],[-123.70098102137872,56.51513552070961],[-123.700659259856,56.5149302565122],[-123.70048035662103,56.51478807242512],[-123.69977898066657,56.514392196951796],[-123.69941029151153,56.51411996035005],[-123.69906025676487,56.513807706488905],[-123.69869979514326,56.5134997482801],[-123.69828550781114,56.51313814582686],[-123.69786373827012,56.51279994550558],[-123.69748772387692,56.51241100496124],[-123.69730411974655,56.51214207755646],[-123.69710523024287,56.51175294657954],[-123.69714273978775,56.51139383043615],[-123.69724439305817,56.51105155532907],[-123.69718888133039,56.51095753139197],[-123.697067905346,56.50997351230525],[-123.69505566346992,56.51009547740412],[-123.69325629058807,56.50985359762792],[-123.69262666335001,56.50921126410759],[-123.69202504164159,56.50809643733547],[-123.69160014353322,56.50719437863208],[-123.69049895043388,56.50643932496858],[-123.68947470562425,56.50600059993214],[-123.68807346978248,56.50550128442097],[-123.68667635121936,56.504898910211764],[-123.685383181922,56.504191913076674],[-123.68418045312785,56.50353921167119],[-123.68294341665872,56.50346423235352],[-123.68127748166133,56.502593552653394],[-123.68002488492175,56.502780540265086],[-123.67905259818565,56.50307905905034],[-123.67770959109822,56.50321171206302],[-123.67633316631957,56.50387054257758],[-123.67428355705233,56.50462253670383],[-123.67185484851191,56.50531383163653],[-123.67031111983195,56.50560193280822],[-123.66846501696098,56.50614680842824],[-123.66555434252442,56.50645375878677],[-123.66539608884976,56.506445279640566],[-123.66460414412849,56.50651607448244],[-123.66392424345389,56.506619164283244],[-123.66330343640178,56.50672108338263],[-123.66257075089965,56.506855711031925],[-123.6619875240726,56.50690786915171],[-123.66126146553034,56.50689802020886],[-123.66069811459727,56.50685638268777],[-123.6600366168062,56.50678829685131],[-123.65921076831245,56.50671160975465],[-123.65846431485883,56.50670249429187],[-123.65838935559398,56.50669664503388],[-123.65766714423523,56.506318085099174],[-123.65702234154658,56.505938690591904],[-123.65602064275323,56.505131342364265],[-123.65567000568555,56.504599265832205],[-123.6551618982143,56.503538634866885],[-123.65384830551362,56.50314701770833],[-123.65154335168774,56.50336719204494],[-123.6498045591174,56.50354724324451],[-123.64895050585329,56.50363585957895],[-123.64576218986764,56.50426008781364],[-123.64393482826164,56.50448999774953],[-123.64174114782736,56.504449757742144],[-123.64010493060034,56.50468200074503],[-123.63719022536988,56.50552288848905],[-123.63593093873604,56.50581469050827],[-123.63494872590584,56.50626962219082],[-123.63337599267318,56.50702975735372],[-123.63207832551831,56.507951864768955],[-123.63066605531537,56.50761087085181],[-123.62973168027729,56.5072775555221],[-123.62823553692675,56.506776944643406],[-123.62645596345469,56.50621840016232],[-123.62484634529241,56.50597793619808],[-123.62313352673473,56.50589470662933],[-123.61979717646072,56.50583295277322],[-123.61712566412238,56.50578344210531],[-123.61548602447834,56.50606799332207],[-123.61383991659831,56.50645776638126],[-123.61169340709576,56.507206988845496],[-123.61001942938765,56.50801652654347],[-123.60955118898322,56.50874759820783],[-123.60952141834827,56.5087683411653],[-123.60932615684055,56.5089317200862],[-123.60916279379236,56.50920553846733],[-123.6090400943844,56.50948011325381],[-123.60885774017558,56.50976478689317],[-123.60866237147486,56.51012880076818],[-123.6084597872626,56.51044448230604],[-123.60823104095371,56.51075519323057],[-123.60797771287018,56.51103518253418],[-123.60780102016383,56.5112605537864],[-123.60752074123334,56.511581513395],[-123.60729841444497,56.51182060609572],[-123.6070762518422,56.512023833287635],[-123.60684809455527,56.5122583332725],[-123.60654841983569,56.51249710553889],[-123.60622837668166,56.51276912436773],[-123.60609745627734,56.512878774344095],[-123.60589859686957,56.5129344771417],[-123.60479773704455,56.512992428290836],[-123.6043264260699,56.51264513684184],[-123.60429578126734,56.51258067518438],[-123.60407231548199,56.512208859322286],[-123.60378947620733,56.51190879361576],[-123.60351970444962,56.51162802595749],[-123.60325737794341,56.51129247318962],[-123.60296845148241,56.510992292057146],[-123.60270486093012,56.510710516993534],[-123.60244820089753,56.510415420033624],[-123.60219885127671,56.51013390954334],[-123.60161566106154,56.509620870963474],[-123.60161531507164,56.50949420453813],[-123.60108548906368,56.50910657749661],[-123.60106401938823,56.50902547303124],[-123.60086479752057,56.508591334335485],[-123.60066065237889,56.508138048390165],[-123.60070022216868,56.50749539964909],[-123.6006068704984,56.5073255241074],[-123.60051634735316,56.507043612924825],[-123.60043247519963,56.50681899095759],[-123.60031035434501,56.50655442377115],[-123.60013571693345,56.506349403436545],[-123.60002138525155,56.50615671798813],[-123.60000009078384,56.506105880523535],[-123.59991119204378,56.505896856719374],[-123.59970848200844,56.505519816285464],[-123.59960166377965,56.50540349087351],[-123.59951445130855,56.50533236695252],[-123.59919917150883,56.504965552473216],[-123.59902864211554,56.50485924504515],[-123.59890101834107,56.50468424433627],[-123.59880640299498,56.504568146244196],[-123.59887467753269,56.504351970686535],[-123.59896903174587,56.50420801895663],[-123.59938525677016,56.504026366413626],[-123.59966526473632,56.50390830019926],[-123.59979537893398,56.50384459861625],[-123.60000116457516,56.50367582647868],[-123.60029288651441,56.50343355989366],[-123.60042778852424,56.50332511187786],[-123.6009375494078,56.50291317896068],[-123.60102062513546,56.50278694955736],[-123.60113753654079,56.50270618704943],[-123.60127935940112,56.50258441690678],[-123.60140271297367,56.5024981700469],[-123.60161620352781,56.502402396769426],[-123.6016172704121,56.50228584510374],[-123.6019391923995,56.50218088643111],[-123.60212246030167,56.50201393288038],[-123.60228501794728,56.50181969152816],[-123.60246049337115,56.5015808558702],[-123.60265657078197,56.501337920917514],[-123.6028198446394,56.50109885725118],[-123.60296365031856,56.500878485193354],[-123.60309994274128,56.50064788496142],[-123.60324374517396,56.50042751264047],[-123.60344107600011,56.499998534412086],[-123.6034785574288,56.49991853029772],[-123.60338491127486,56.499919025306745],[-123.60336557555217,56.49917440161021],[-123.6033387038616,56.49795662738024],[-123.60331294608964,56.49691933576486],[-123.60335191006423,56.49628564659159],[-123.60328497614523,56.49571947637493],[-123.60327726331055,56.49514992759258],[-123.60328349586496,56.494452859360074],[-123.60314876650739,56.4937979964203],[-123.60306080359018,56.49347466411426],[-123.6029573399174,56.493138712916654],[-123.60283121850871,56.492972711788916],[-123.60260761081089,56.49280377036647],[-123.60220132816352,56.49259443005179],[-123.60188602685739,56.492460764622535],[-123.60161922966832,56.49233248748421],[-123.6014786494733,56.49226933548248],[-123.60111636735155,56.492105648128586],[-123.60000094636065,56.49168241921417],[-123.59918980898357,56.49137359253663],[-123.59771995854469,56.49079240017195],[-123.5969748501909,56.49053523323384],[-123.59681520336652,56.49045154346198],[-123.59645811867387,56.49033613737209],[-123.59628486908834,56.4902421044954],[-123.5959186621428,56.49010971299819],[-123.59578557692421,56.49002427725566],[-123.595031173984,56.48968734240007],[-123.59432291531137,56.489295223295],[-123.59346601518892,56.488872293384745],[-123.59247923931343,56.488477186957454],[-123.59234591770071,56.48842873201012],[-123.59203040724856,56.48829952100686],[-123.59151798601032,56.48816325444692],[-123.58969626829179,56.487781610076986],[-123.58907562911077,56.48768477525619],[-123.5879766793672,56.487591285835045],[-123.58744700834995,56.48750399742721],[-123.58736549238357,56.48747332341031],[-123.58699213665287,56.487358705400496],[-123.58646155064116,56.48715482410973],[-123.58581269689589,56.4868568054483],[-123.58554735105949,56.48677223520928],[-123.58535763081662,56.48671486641403],[-123.58486905615655,56.48665411993347],[-123.58335839728392,56.486540518378185],[-123.58324326296342,56.48652714322255],[-123.58222486024074,56.4864149434785],[-123.58125688198194,56.48624427838042],[-123.57956099307984,56.485870461074796],[-123.5791795475057,56.48575566728001],[-123.57723382937334,56.48521233947477],[-123.57628915945874,56.48502750426264],[-123.57542971536803,56.48487901829609],[-123.57408294087907,56.48468321237157],[-123.57369447480514,56.484648972997356],[-123.57326374506948,56.48457470287061],[-123.57283257719764,56.48444213691738],[-123.57250903584955,56.48431272464116],[-123.57204250267176,56.48399678304731],[-123.57177533378842,56.48374625792777],[-123.57172458578272,56.48367916614357],[-123.57143662585996,56.48323993829721],[-123.57108781339426,56.482406127941225],[-123.57107713794122,56.482316255171824],[-123.57078561694856,56.48160794593512],[-123.57063027993566,56.48106474074123],[-123.5704129044711,56.480374646667634],[-123.57028701586111,56.47962015112153],[-123.57020212279609,56.4788933325703],[-123.57000379153254,56.478354917883365],[-123.56974553116028,56.47766853295557],[-123.56962015929722,56.47749354402968],[-123.56945262177918,56.477342416314066],[-123.56931116285416,56.477262397703015],[-123.5692204318787,56.47721696573308],[-123.56892126392961,56.47705662015963],[-123.56861461499919,56.476951055527],[-123.56819087770782,56.47670092045564],[-123.56773639779732,56.4761285078186],[-123.56744013319052,56.47569359698742],[-123.5673364647237,56.47536657662589],[-123.56735070504106,56.4751056804735],[-123.56773602848014,56.473949503204985],[-123.56778228571554,56.47372956552639],[-123.56777900147061,56.473423502333304],[-123.56769942670752,56.47306891691774],[-123.5676598388154,56.47266016578216],[-123.56762002937039,56.47218976199167],[-123.56775715655635,56.471393171086476],[-123.56780614375272,56.47083590019216],[-123.56776449947829,56.47029708837396],[-123.5677469101404,56.47025304079559],[-123.56763830294815,56.47003801584973],[-123.56745244192408,56.46982264797157],[-123.56709576051699,56.46963991104826],[-123.56680501093402,56.46957387341481],[-123.56673048029971,56.46952986738059],[-123.56651657290539,56.4695033953968],[-123.56628479905936,56.46943735352453],[-123.56506159543868,56.46925835745464],[-123.56413537009811,56.4690782592827],[-123.56369635303183,56.46897689563378],[-123.56320781604177,56.468821909049005],[-123.56214621084084,56.4684004784384],[-123.56186457970477,56.46825389890324],[-123.56171476495685,56.46817819620823],[-123.56118183748957,56.4678878525487],[-123.56089019661704,56.4676738276258],[-123.56069093955904,56.467575887512965],[-123.56012518013443,56.467160497352296],[-123.55976540607035,56.46686559208084],[-123.55949766372568,56.466529841801666],[-123.558877800246,56.46593968032279],[-123.55865320951577,56.46569441940101],[-123.55811733539082,56.46522466491888],[-123.55774400516549,56.46498441905483],[-123.55748573475884,56.464855087075506],[-123.55670996789576,56.46428772830105],[-123.55606117318013,56.46386849692532],[-123.5559948591634,56.46382351989871],[-123.55529503954793,56.46331027958999],[-123.55502811979845,56.463059722221494],[-123.55483438288456,56.462809437455526],[-123.55472154240117,56.462468781012774],[-123.55431828274072,56.461279686998104],[-123.55429855546275,56.461140321599004],[-123.55418462041911,56.46068755562359],[-123.55411167169312,56.46009994381739],[-123.55402453706354,56.459803491215915],[-123.55386249569538,56.459404731590936],[-123.55367540063135,56.45849773461634],[-123.55351010582442,56.457924055042845],[-123.5532384672489,56.45729566659445],[-123.55326854233948,56.45707542627165],[-123.55341183910038,56.456832684963416],[-123.55419713872418,56.45598009101018],[-123.55426499523445,56.455902922520536],[-123.5546782242706,56.4554075215192],[-123.55521841478824,56.45460517549646],[-123.55529054189988,56.45449221982693],[-123.55549346149247,56.45430329399399],[-123.55589312698321,56.453991455776965],[-123.55651430892934,56.45361546084383],[-123.55662164170423,56.45355697703994],[-123.55686529414466,56.453399088560495],[-123.5582882352808,56.45261913891823],[-123.55954960850127,56.45201656329925],[-123.56011352738344,56.45167757331236],[-123.56041427948092,56.45145127014423],[-123.56128928985436,56.45098032168724],[-123.56158183761441,56.45072247571583],[-123.56180080388181,56.45043857190797],[-123.56191329099471,56.45019972145686],[-123.56202863181841,56.44968743222488],[-123.56212456457864,56.4489326659358],[-123.56207197536185,56.44863575654469],[-123.56187566856168,56.44826438066222],[-123.56115740681227,56.44704131003437],[-123.561099724217,56.44695614825958],[-123.56107906539177,56.44666881244318],[-123.56128659643532,56.44620983715904],[-123.56160927056312,56.4457945222134],[-123.56169872145259,56.44566395938399],[-123.56232375846723,56.44502797285622],[-123.56252371486713,56.44468990639205],[-123.56285984827952,56.443961001418664],[-123.56300098399007,56.44342566519562],[-123.56306919405381,56.44301672288737],[-123.56325693249947,56.4424183824507],[-123.56336185401996,56.44168172329995],[-123.56355097923566,56.44106099202247],[-123.5635488612851,56.440867041789716],[-123.56349727162022,56.440781996986956],[-123.56334594298207,56.44063453102607],[-123.56321239595873,56.44052775383906],[-123.5630716423586,56.44043877348654],[-123.56287993087724,56.44025467210088],[-123.5626945104283,56.439937306751744],[-123.56272403185822,56.43975740803346],[-123.56270442054442,56.43955079594582],[-123.56259515979146,56.43938059006768],[-123.56252670599228,56.439272807110335],[-123.5622770517264,56.43904052742376],[-123.56124726343205,56.43844819187299],[-123.56085660447035,56.438228920737714],[-123.56060549698549,56.43798764303267],[-123.5603797975775,56.43782755044275],[-123.559979981328,56.437397379312664],[-123.55992056602074,56.43734020580607],[-123.55970194185169,56.43706703895113],[-123.55938905866978,56.43654660849359],[-123.55937856511753,56.43625946691301],[-123.55941782546451,56.43615148980344],[-123.55965506192182,56.435606778652925],[-123.55957493957332,56.43506835942789],[-123.55937089432035,56.43413976285278],[-123.55937432717485,56.43382486493433],[-123.55922894084344,56.432348160785786],[-123.55924489733754,56.43219042249397],[-123.55931481283177,56.43133204988037],[-123.55939101623903,56.43099051552714],[-123.55959016197451,56.4298846498929],[-123.5595891827606,56.42983531327689],[-123.55959492155426,56.42964599659104],[-123.55953132243638,56.42936344979196],[-123.55939824505182,56.429184941986954],[-123.5593638221346,56.42908565098998],[-123.55899636050185,56.42869196000642],[-123.55849457425963,56.42820492094769],[-123.55809445273832,56.42787897811139],[-123.55756778025899,56.42740042826157],[-123.55750922603976,56.427297314570964],[-123.55735797224995,56.42714984250784],[-123.55716398276725,56.426841272825826],[-123.55712047582065,56.42669249018896],[-123.55709550742807,56.426572082248896],[-123.55738626265078,56.425658513189425],[-123.5575646403386,56.424885153284684],[-123.55761890947447,56.42401751925346],[-123.55764593625581,56.423617886588204],[-123.55761413416934,56.42311961866556],[-123.55748174088298,56.422540974629484],[-123.55720132710059,56.42195838997403],[-123.55718412159574,56.421908744353125],[-123.55697905246609,56.42138812099192],[-123.5568511670201,56.420607807602266],[-123.55682679910466,56.4200233754245],[-123.55671829089236,56.41932301248514],[-123.55677611211695,56.41878834364817],[-123.55696453566368,56.418113814444396],[-123.55705780429733,56.41772665370823],[-123.55753818820264,56.41679988950488],[-123.55788242657924,56.41610142766533],[-123.55797238666723,56.41586439866645],[-123.55904949405114,56.41399963061758],[-123.55949159289854,56.41361911055576],[-123.55987570343204,56.41328904480079],[-123.56946513799019,56.410601832148934],[-123.57923052676527,56.410033402488025],[-123.58749485546986,56.41061959875738],[-123.59561465744987,56.41012654724974],[-123.60143060941638,56.40879186915207],[-123.60363040602999,56.406824487473315],[-123.60594578554692,56.40296728135046],[-123.60587546191839,56.40119955004305],[-123.604345253123,56.398875510901114],[-123.60700107676327,56.39581373110601],[-123.61284905240487,56.39231825753341],[-123.61559321862904,56.388854483613166],[-123.61530530309611,56.386921330394024],[-123.61891118408543,56.38395773129669],[-123.61966174380096,56.38229495307748],[-123.61525309135642,56.38006100931145],[-123.61227430230105,56.37780873636299],[-123.6108075691276,56.374454830842225],[-123.61231277733884,56.37106668716699],[-123.61745278530105,56.36820349964933],[-123.61790915737458,56.363908124156175],[-123.616391254519,56.359531185240776],[-123.61477192511296,56.354695056933885],[-123.60547794485083,56.353893904652985],[-123.58800385627511,56.354498366058706],[-123.57670095126086,56.354975324117326],[-123.56856423132481,56.35461480909885],[-123.5666427548484,56.350301254074736],[-123.56582297457541,56.3447084820898],[-123.56388463133764,56.342501701145345],[-123.55682492307807,56.33817974216379],[-123.55064817329017,56.33505786286057],[-123.54732286889819,56.33172136949731],[-123.54770059238486,56.32543409999659],[-123.55278820398345,56.321317278020906],[-123.56078331062052,56.320716814039756],[-123.56451959035874,56.31849260602467],[-123.56295984627194,56.31543224349159],[-123.56242067531433,56.314982613290155],[-123.56278370742,56.31097258025444],[-123.56498524890135,56.30683618594394],[-123.56579892119063,56.30391071043849],[-123.5625168554061,56.30120310067977],[-123.56055628751699,56.29809024062005],[-123.55833155682845,56.29662211381921],[-123.55501527651124,56.29551862586594],[-123.55435588028978,56.291811866058715],[-123.55637757673823,56.288479186894484],[-123.55922765657468,56.28483952422122],[-123.55925668365039,56.28307371488653],[-123.55328351006577,56.27708654220096],[-123.55209891783936,56.27583546634526],[-123.55564733707845,56.27448672990994],[-123.55865752373592,56.272679302275186],[-123.56000891721061,56.27021249946564],[-123.56033167038237,56.268147459587865],[-123.5619670595789,56.26527362326276],[-123.56350353409195,56.26216476557971],[-123.56436561216783,56.26079144681977],[-123.56058964341922,56.26140081181533],[-123.5510511493528,56.261514152700265],[-123.54764642455818,56.26109913653198],[-123.54283046107717,56.25841531089332],[-123.54145180617215,56.25459603727561],[-123.54496440491691,56.25250275031259],[-123.54983381066619,56.25095546133008],[-123.55249493291385,56.24538468746959],[-123.55246053202653,56.244639833684516],[-123.55105376249965,56.239968367676646],[-123.54925680571876,56.23559424700891],[-123.54608952008718,56.233229081221516],[-123.54255226583487,56.232129906970684],[-123.54152162728063,56.22922294348794],[-123.5420314219899,56.22624702657147],[-123.53831070273179,56.22292954268992],[-123.52683368561729,56.223164870484744],[-123.52622382397603,56.223350304875034],[-123.51621866601691,56.218717627802626],[-123.50891214485091,56.21515004728427],[-123.50081595343805,56.21232869368814],[-123.49464259670884,56.20902454436653],[-123.49022549339028,56.205817418465394],[-123.48862247596645,56.2043512489763],[-123.4886790058847,56.200183022017974],[-123.4934386155894,56.198519276154244],[-123.49904726436343,56.19772381248562],[-123.4976310910192,56.19281838368217],[-123.49806754867134,56.19053159127455],[-123.50056186969312,56.18890383419777],[-123.5057268951506,56.18718485898443],[-123.51158632955998,56.184950238964916],[-123.51254736816146,56.18048592314467],[-123.5077067767721,56.1771097476621],[-123.50263404105807,56.175620687665486],[-123.50168121806682,56.17460676728238],[-123.50019627220873,56.17028285344702],[-123.49896550117329,56.167550921735284],[-123.49439872263282,56.165999710558964],[-123.48837914720325,56.163442382688906],[-123.48681108176216,56.15969049123553],[-123.48768809309135,56.15556541977528],[-123.48980045785298,56.15205647173044],[-123.49103143044326,56.14895154732528],[-123.48659820695848,56.14534940487226],[-123.4839060375871,56.141781512990676],[-123.48215234574509,56.13842937702152],[-123.4820898351993,56.13688596686859],[-123.48036080187694,56.13416192133461],[-123.47672724152525,56.13271813459628],[-123.47421121793276,56.13120675719628],[-123.47320553138151,56.128532820632756],[-123.47082635298825,56.12489911233793],[-123.47055952518107,56.12353095731428],[-123.47098299629681,56.12095712858279],[-123.4745869015394,56.11857198383144],[-123.47449477919591,56.11623897118043],[-123.4762134806093,56.1130721812711],[-123.47456752837908,56.10982966842189],[-123.47318749752237,56.10847528895431],[-123.4734760808143,56.104984255557426],[-123.47486375184343,56.10069017475632],[-123.4764831932769,56.09478680799388],[-123.47399366184806,56.09063991706757],[-123.47274133189788,56.09031915643729],[-123.4712058020843,56.08713259310946],[-123.47255343201412,56.08471166894017],[-123.47190532106211,56.08100479504479],[-123.47302862182293,56.078310435715046],[-123.47689068259822,56.07786711965309],[-123.47927461801166,56.078873768120765],[-123.48546648276623,56.080287482296555],[-123.50104471165673,56.081536056391926],[-123.50584147442616,56.08159438444323],[-123.50823737309197,56.0801351052019],[-123.51034928520708,56.07628532033242],[-123.51020468273722,56.07526038726224],[-123.51249030712971,56.07094776476708],[-123.51635797631747,56.07039579495824],[-123.52084242248674,56.07027713103474],[-123.52031333786415,56.066913626957955],[-123.5158572605884,56.06531139656433],[-123.51554972945819,56.065081241456745],[-123.51095683152352,56.0623375068172],[-123.50949640480393,56.058695694955674],[-123.5093975962836,56.05618334999235],[-123.51705357332013,56.05603732326322],[-123.5261393651187,56.055936614819274],[-123.53343021855665,56.05441971854067],[-123.53711192337889,56.051918010758946],[-123.53896748220052,56.049784295333446],[-123.54210610529802,56.04642917639804],[-123.54679711225175,56.04346260741886],[-123.5508523598695,56.04009810731203],[-123.55519406563866,56.03599487531039],[-123.55940244221316,56.03143171797115],[-123.56139604467465,56.03015210090539],[-123.56275285205365,56.02824162005109],[-123.56373151496459,56.024638376764436],[-123.56905606662963,56.019934998783334],[-123.57336466324307,56.015256837259095],[-123.57798508479705,56.0104589933211],[-123.58019077568177,56.00700460591155],[-123.58158591727376,56.0033913020438],[-123.58589701045116,55.99993212283362],[-123.58662051980997,55.9973011447235],[-123.59215712550841,55.995075388951484],[-123.59311776284363,55.99329161519988],[-123.59815625981695,55.9886714363834],[-123.59976810835546,55.98489176396863],[-123.59903134573075,55.98141728023997],[-123.59840947691353,55.97816909746555],[-123.59869584413,55.97451675580988],[-123.60513139906799,55.9717068855522],[-123.60746109203808,55.97116813822531],[-123.61262450514553,55.970252416171135],[-123.62235619933139,55.96895606056144],[-123.62944276394481,55.967564715383936],[-123.62944015642998,55.96734054282145],[-123.63027581795265,55.962246148785475],[-123.63478054955989,55.957014088937264],[-123.63967530874673,55.954102100489315],[-123.6470262398172,55.951450721910376],[-123.64912741201435,55.95040497249721],[-123.65730642672294,55.948655898276755],[-123.664588325807,55.946862885805615],[-123.67039714619067,55.94445072302776],[-123.67436886337632,55.941332250404095],[-123.67732359496956,55.938849448025856],[-123.67886038894248,55.93591031028071],[-123.68104151823127,55.93155758052802],[-123.6801244104564,55.9285914227305],[-123.67940527787738,55.92580817857803],[-123.68072572305059,55.9229905820859],[-123.68205542804736,55.92001178438037],[-123.6808994511364,55.916198594238],[-123.67461865918973,55.91444287912127],[-123.66809004273452,55.9141793739124],[-123.66461837869738,55.91375680105784],[-123.66210180196524,55.91155883864057],[-123.66068109393625,55.9090045611766],[-123.6588887864821,55.90731296674595],[-123.65555537351992,55.90483978013262],[-123.65260193057358,55.90218528890904],[-123.64924252042296,55.899083914722176],[-123.64779674502415,55.898590889893065],[-123.6449395162069,55.89810745053285],[-123.64081876677524,55.89649773952445],[-123.63767900013723,55.894305568368075],[-123.63539350010632,55.89284645778828],[-123.63305824921406,55.89275797661456],[-123.630038357704,55.893929625948644],[-123.62550704220573,55.89249996920433],[-123.62157698451517,55.890140145880615],[-123.61569404955642,55.88774340855127],[-123.60956335910541,55.887071914639705],[-123.60574421091535,55.88528741988962],[-123.60456914041222,55.88404596039857],[-123.60099090671135,55.88305478153755],[-123.59724445466051,55.88378155663214],[-123.59553815010102,55.88443046950963],[-123.5931211517263,55.884904474618786],[-123.58787779686243,55.8833612677147],[-123.5846009279184,55.8824291516429],[-123.58192322678059,55.88166080563927],[-123.57966853694985,55.881052898805784],[-123.57859349540557,55.87923933989477],[-123.57767584169333,55.87616473005742],[-123.57553922515912,55.87311157830509],[-123.56985908217945,55.87036687544282],[-123.56147038874082,55.86869032799143],[-123.55116258829288,55.86748706977303],[-123.54126744613714,55.86661372618286],[-123.53443276146517,55.865996540296],[-123.52741995938605,55.86618235930199],[-123.52261696963727,55.86817723531224],[-123.51850583177409,55.86986277036535],[-123.51693359660864,55.87193872827416],[-123.51874690014702,55.87419767950059],[-123.52156795898142,55.87674530729535],[-123.5207967142066,55.87805703981353],[-123.51755136439708,55.87844165133483],[-123.51482712871304,55.8792039934667],[-123.51233157808196,55.880661098826195],[-123.51064726282785,55.88170379363562],[-123.5078279712263,55.882697218857096],[-123.50526569680066,55.88215362767091],[-123.50300820307385,55.88160703425256],[-123.4993259443814,55.880781215190694],[-123.49859680162922,55.88039922278275],[-123.49763470581792,55.87863196371962],[-123.49728801577712,55.8772713468402],[-123.49493275062365,55.87700955729906],[-123.49078296191183,55.8775010848422],[-123.48740544519264,55.87668095223833],[-123.48486162888236,55.87636143569689],[-123.4810050631477,55.877028815569744],[-123.47831807729727,55.87870559311092],[-123.47603160845551,55.88038134543429],[-123.47441950977915,55.88103054008264],[-123.46936116246759,55.88193357716261],[-123.46541352693589,55.88225799046752],[-123.46045143965456,55.883153642077886],[-123.45836592759888,55.884429684863484],[-123.45263921317704,55.88374967827678],[-123.44694091790092,55.88362584495862],[-123.44026129693442,55.884548803841724],[-123.43571515934781,55.88544295304884],[-123.4322230777366,55.88417073448772],[-123.42840189142751,55.87883927213502],[-123.42720462613056,55.876053520590915],[-123.42194345148732,55.87341808953761],[-123.41452475440568,55.870460402800184],[-123.4058344985668,55.86882999941683],[-123.39901343895227,55.86826850192336],[-123.39636170849356,55.86765805879866],[-123.39173752016455,55.86610135008689],[-123.38755291461,55.86225831620283],[-123.38579638498793,55.8609578397191],[-123.37726571664041,55.86131911619345],[-123.36740709039924,55.861410099828504],[-123.3649617237693,55.86132329617121],[-123.36471531081895,55.85948912700087],[-123.36393186486389,55.85681890341301],[-123.36387637897879,55.854764568510554],[-123.36462600274992,55.852646329802944],[-123.36850640431204,55.849929837017434],[-123.37275794395326,55.849094801890544],[-123.37450630058498,55.84639656997338],[-123.3749726370716,55.84467586385176],[-123.37580914077003,55.84244283090659],[-123.37844001678009,55.838256640558306],[-123.3801958014994,55.835675064400135],[-123.3796083641266,55.832937305865904],[-123.37498772331357,55.831155832624646],[-123.36846496301332,55.83030287774661],[-123.36527298940577,55.82895424507151],[-123.357279715802,55.82999767265637],[-123.35405793405441,55.83053991372841],[-123.35010166307866,55.83057354966624],[-123.34564848703427,55.827987556688],[-123.34193788861337,55.8257935906603],[-123.33834183737126,55.824283329357215],[-123.3376746347018,55.82206366075343],[-123.33941866386547,55.81897131959582],[-123.34141431190295,55.81427040697544],[-123.34167241475589,55.81233025226167],[-123.33947067491566,55.80961206103339],[-123.33615004261392,55.80712126978842],[-123.33022226550027,55.805579458848044],[-123.32563042441801,55.80487259731184],[-123.32120666985199,55.80262699414764],[-123.31881035030302,55.7999760069685],[-123.31621149385322,55.79394051015507],[-123.31508586863731,55.790249509641775],[-123.31481992796748,55.78756304331836],[-123.31217091073921,55.78370510192393],[-123.31039735822885,55.78132720696451],[-123.30817891584326,55.77820458764452],[-123.30832241242666,55.77632480595311],[-123.3126322134043,55.773825536891906],[-123.31551020151345,55.77169017093103],[-123.31510551735948,55.76822073266875],[-123.3124737213727,55.76436315622666],[-123.31214041998909,55.76362085235097],[-123.31277231489744,55.760424537933275],[-123.31524068728643,55.75771562889232],[-123.32102870612991,55.7545841310439],[-123.32380041095581,55.75233877781489],[-123.32531709038591,55.74856050385054],[-123.32768394421245,55.7459119995243],[-123.33390929690253,55.74026988055694],[-123.338066847356,55.73686112709229],[-123.34142395499917,55.733471234620644],[-123.34235755008548,55.73049639560327],[-123.3394507076151,55.72812191901599],[-123.33546378894827,55.72662110251065],[-123.331709132169,55.71928841072023],[-123.3308226941693,55.71656199765307],[-123.32811635882798,55.713841817953394],[-123.31825826386952,55.712332304063175],[-123.29840262720066,55.707873394691575],[-123.2887259740731,55.70584538895303],[-123.2797605968773,55.70346438367885],[-123.27017736210502,55.7010334624816],[-123.2647875635443,55.69958954447233],[-123.25305736137187,55.69985422788448],[-123.24245582172598,55.70546839526348],[-123.23482347882269,55.707820527857365],[-123.22299572770163,55.71241099923671],[-123.2093154412117,55.716062772928886],[-123.20104173418274,55.71703586403216],[-123.19396152482231,55.71760462637245],[-123.19097365967131,55.71944787392395],[-123.19359511509222,55.72324527075048],[-123.19672360369553,55.727331843597426],[-123.1955946111678,55.73088430234233],[-123.1910261999472,55.73428841447507],[-123.18804876271273,55.736867109963114],[-123.18338995360827,55.73724726969653],[-123.17894668239724,55.737739681490226],[-123.17319312748971,55.73868674993941],[-123.1670494845633,55.74039591723626],[-123.1624839964521,55.73990765988713],[-123.15352227108583,55.73768810693829],[-123.15117092879447,55.73662175382606],[-123.14686326943323,55.73477581747269],[-123.14450562802675,55.73313532556574],[-123.14252872664633,55.73086678830544],[-123.1389226481656,55.728606068282616],[-123.13667544488911,55.727658357318965],[-123.13452916678253,55.72664116594805],[-123.13337197115244,55.724310408224824],[-123.13640843847027,55.71984233145519],[-123.13934842569405,55.71559617632755],[-123.14021877343932,55.71370604897851],[-123.14056299413708,55.71114044605684],[-123.13949025169212,55.70852473661515],[-123.13680492437443,55.706141362480636],[-123.13371191372131,55.70388314583208],[-123.13234485978276,55.70115306599935],[-123.13035840967339,55.698606119661015],[-123.12759992691196,55.69725202394335],[-123.12373484037576,55.69641955499397],[-123.12168550731859,55.69541328764146],[-123.12113720129467,55.69306941598925],[-123.12277392890769,55.68941256896609],[-123.12718426552867,55.68732543758685],[-123.13019846275999,55.68645269841967],[-123.13227311601308,55.68467079492908],[-123.12999976228018,55.682574592944675],[-123.12743372796317,55.68100069580096],[-123.12690258207992,55.679742212030675],[-123.12684227927024,55.676602520885886],[-123.12778604899118,55.67369198594566],[-123.12841239968739,55.67031690909279],[-123.12774468650865,55.66763859127001],[-123.12768004970764,55.66433741250013],[-123.12971782619314,55.66084212738718],[-123.13431625811765,55.65875016515121],[-123.14072971831625,55.65579370291212],[-123.1460062762292,55.65245248500399],[-123.14915818107015,55.648946358172225],[-123.150089214979,55.64529122277839],[-123.14860808146501,55.64216422554665],[-123.14583711390182,55.64058602698916],[-123.13966813457078,55.640401003861555],[-123.13906621720335,55.64035144304454],[-123.13814264555118,55.63990003305231],[-123.13676608299102,55.637107014315454],[-123.13496408262608,55.63358696351438],[-123.13159354577871,55.63150160381208],[-123.12547470460575,55.62931745956678],[-123.11667804648765,55.6289276816165],[-123.11073006664034,55.629015262805424],[-123.10455494933167,55.62872073256082],[-123.0991904413427,55.62801420789993],[-123.09440881578246,55.62696225898986],[-123.08662984575099,55.62638764876163],[-123.07894825655282,55.626442488907415],[-123.0728863986586,55.62613108780618],[-123.07000936434301,55.624100318532356],[-123.07122889542634,55.61964534696923],[-123.07475457600206,55.61414117308287],[-123.07570014025475,55.61145522381504],[-123.07555646857686,55.609290892440015],[-123.07479850102112,55.606385952043844],[-123.07257931336324,55.60235301639518],[-123.07080610832296,55.59962164945654],[-123.06793009102775,55.59673897686703],[-123.06546319202431,55.59457416650442],[-123.06440398394007,55.592531885532736],[-123.06668907275782,55.5904601594596],[-123.07129560465562,55.58906127056402],[-123.07531099819523,55.588123688690516],[-123.07648801720391,55.586178423351534],[-123.07371018562701,55.583916867112514],[-123.06931442499005,55.58137538266616],[-123.06603479470554,55.57837561915467],[-123.06324407436917,55.57565620239879],[-123.05956581413324,55.573113195957156],[-123.0562130284086,55.57198549190772],[-123.054679290373,55.57142943585719],[-123.05089148533956,55.56865941427465],[-123.04823733942274,55.566911254874974],[-123.04448195910683,55.56521780487409],[-123.04233349334079,55.56437810370363],[-123.04151478443441,55.56340831829414],[-123.03965536586159,55.561033082660266],[-123.03688536020196,55.558717015844834],[-123.03170573482123,55.55737508834592],[-123.02758609385606,55.558030778019514],[-123.02631055055753,55.55956976476309],[-123.02543006829234,55.560714595319446],[-123.02404656691657,55.562206169859174],[-123.02080865763901,55.56212036912072],[-123.01535933665429,55.561408016362535],[-123.00697132788277,55.56128891886497],[-122.99823180360522,55.56288253027874],[-122.99143834031607,55.5662887460861],[-122.98746597297752,55.56939472011826],[-122.98276607406223,55.57159534676726],[-122.97759379614442,55.575613748056305],[-122.97332778086191,55.57962691662653],[-122.97133605009964,55.58050250593973],[-122.96783448542381,55.58177203649841],[-122.96179237413783,55.58254958690793],[-122.95864788813313,55.582051983355804],[-122.95578173693136,55.579785515595454],[-122.9534247817832,55.577522367757396],[-122.94774900520898,55.576012474878084],[-122.94206954004564,55.574556030052726],[-122.93994709673564,55.57422631278706],[-122.93455503792613,55.57152108053841],[-122.93107233905232,55.56840496668585],[-122.92909077177768,55.565217880307685],[-122.92996222078978,55.56298837260658],[-122.9352699206976,55.560562406993526],[-122.94168474622961,55.55841431281577],[-122.94486198162394,55.555550426204405],[-122.94692196498029,55.552112277537994],[-122.95040381000497,55.55003584573558],[-122.9543055601703,55.548077131119626],[-122.95415304459719,55.54528459929813],[-122.9497720209528,55.54290940161837],[-122.94742454931436,55.5407629008903],[-122.94647153749807,55.53888346383701],[-122.94540542031899,55.535575458117236],[-122.94205151497445,55.52852609058526],[-122.94128281927686,55.52424785575454],[-122.9407968998519,55.5198061379668],[-122.94293066135457,55.515177261330926],[-122.94598266675752,55.51161991783008],[-122.94854609895786,55.50800578241337],[-122.9534248679934,55.505470191375466],[-122.95894700664603,55.50407094418946],[-122.9637412347879,55.50221443419486],[-122.96296296124021,55.49845625891343],[-122.96080136990965,55.49556124134818],[-122.95821764458422,55.491750243788005],[-122.959009701765,55.48593184097312],[-122.95958662515024,55.483982037416375],[-122.95955242490317,55.48192772522166],[-122.95385517514586,55.47900047042953],[-122.94598188360442,55.47756224391674],[-122.94030601732965,55.47582750338037],[-122.93562749328451,55.47288839023706],[-122.93285913458311,55.46987932603675],[-122.9313625963861,55.464982373435014],[-122.93634081561297,55.4613021939444],[-122.94515151884177,55.45976894058196],[-122.95884175606645,55.45997680204384],[-122.96106029397488,55.46042524308743],[-122.97095725936293,55.462754482498134],[-122.9770161818151,55.46403080853991],[-122.9830615093581,55.46423046263731],[-122.99188385752439,55.46252385715433],[-122.99625427788914,55.45946348288535],[-122.99775912541426,55.4542091019752],[-122.99666958820106,55.44970846194327],[-122.99619275574945,55.44634338629312],[-122.99753553811516,55.443030957673386],[-122.99822123195686,55.44171134268918],[-123.00055418523908,55.43787566788734],[-123.00218907727701,55.434041167563976],[-123.00071404975263,55.430454922047105],[-122.99916306853585,55.42767385148371],[-122.99389121906401,55.4261125356259],[-122.98755405192108,55.42523371763382],[-122.98259495699855,55.42394845081194],[-122.98168729477985,55.41790970940558],[-122.98559783948512,55.412695622930976],[-122.98666033755985,55.41057814157719],[-122.98900436030146,55.40679678367412],[-122.99042947601973,55.402168315830394],[-122.98793071307972,55.39790263871768],[-122.97940135785711,55.39801060822429],[-122.9719165850451,55.400851345716696],[-122.96182273630643,55.40319784763949],[-122.95442099454027,55.40512496778402],[-122.94462933747926,55.408257639662885],[-122.93853341198705,55.409659808502134],[-122.93199811862414,55.40975962761196],[-122.92405396302988,55.40922363854749],[-122.91424952560713,55.411448002103086],[-122.9067532302044,55.413316258668786],[-122.90134983634434,55.41454548586308],[-122.89472618535542,55.415771086844366],[-122.88680195468082,55.41598651216825],[-122.87955539065989,55.415231926325404],[-122.87220565093246,55.41417840297707],[-122.86897067296069,55.41339795057226],[-122.86793801049006,55.41181172198511],[-122.87482900368026,55.40858549049214],[-122.87981777596904,55.40678210679162],[-122.88106235475348,55.4034144860589],[-122.87650056478623,55.4003592116713],[-122.8714483658318,55.39912982503197],[-122.86358944365217,55.39733659428982],[-122.85704786817415,55.396526563059524],[-122.85091788722963,55.39592384528392],[-122.84879657135211,55.39530540258063],[-122.84626240739449,55.393896313989636],[-122.84639795721922,55.389559376938024],[-122.84845785359067,55.38612293377263],[-122.84919503406185,55.38178324718918],[-122.85124514865933,55.378463110061084],[-122.85262628957793,55.37680303884493],[-122.84558268645131,55.37597966725805],[-122.83916618241211,55.37664246814806],[-122.83477902030211,55.37786755177824],[-122.83060306960016,55.38062236710484],[-122.82730852520305,55.382637186978506],[-122.82173765497998,55.38499758503947],[-122.8120839125084,55.38452739720534],[-122.80512145002321,55.381883343566244],[-122.79995024501203,55.378827421474995],[-122.79761227654375,55.37598743517092],[-122.7936612898141,55.37411937315061],[-122.78795299117073,55.37443005150171],[-122.7839264719178,55.37410222291444],[-122.78141169680104,55.373086823683956],[-122.77845068853327,55.37014069737317],[-122.7762293974518,55.36843324731353],[-122.77050054989242,55.36782783504698],[-122.76717473618413,55.36784938773468],[-122.76417153956172,55.36740390235817],[-122.76063616834871,55.36610153172678],[-122.75700784162677,55.36458140489391],[-122.75499715064548,55.36419733901284],[-122.75257316238752,55.3626635302409],[-122.75392687940104,55.35923701794519],[-122.75419033386478,55.35637405243451],[-122.7521401625747,55.3529666252887],[-122.75100420377518,55.350973028093435],[-122.75187751225707,55.34937251808561],[-122.75204390160597,55.345951004898126],[-122.74832521208752,55.34596178300831],[-122.74563574396768,55.34654635563302],[-122.74008377530991,55.34497549891532],[-122.73343287053882,55.341752362956356],[-122.72890093272218,55.34068300012921],[-122.7232834276955,55.34070600489808],[-122.72058579351366,55.34100283622475],[-122.71579103064074,55.34198880622724],[-122.70987892920826,55.34367158467361],[-122.70657160686078,55.34368299133624],[-122.70305417376606,55.342208963515105],[-122.6997094456599,55.339600401711614],[-122.69899673574804,55.33903447075501],[-122.69356667688137,55.33716873632243],[-122.68763509505318,55.335827550673194],[-122.6823058196613,55.335049174938526],[-122.67889146654592,55.334832768552246],[-122.66919511290196,55.336744678458984],[-122.65952072029329,55.34236949654849],[-122.6566480476412,55.34494730359009],[-122.64912263734186,55.35472770906412],[-122.64556364365119,55.368704190271515],[-122.64294580309615,55.37784483930885],[-122.64083376445944,55.386227755242274],[-122.63868046502597,55.39188301350071],[-122.64032029393648,55.395182829055514],[-122.6408246540399,55.39559102136814],[-122.6394302327854,55.39672844842455],[-122.63461314275584,55.396177253581286],[-122.63019205685073,55.39619262584839],[-122.6279889891824,55.39676998435903],[-122.62425351574389,55.39832949904323],[-122.62254680050762,55.39698735686934],[-122.62220053964863,55.396725743319934],[-122.62195032739102,55.39652278182138],[-122.62163464780228,55.396274325700475],[-122.62110956082165,55.395973118434966],[-122.62108312798517,55.3959578289564],[-122.62072718329046,55.395740794006265],[-122.62042909664945,55.395542139879566],[-122.62012676508657,55.3953938208167],[-122.61973261854574,55.395230684529295],[-122.61922701100052,55.3950039900414],[-122.61858151729604,55.39476902293961],[-122.61800574444351,55.39452921287387],[-122.61728800179279,55.39432928015971],[-122.61727059924768,55.39432432446336],[-122.61695463125295,55.39422047311225],[-122.61647196791955,55.39409753188778],[-122.61613586086457,55.39402116118175],[-122.61594339652497,55.39397895088889],[-122.61591611637063,55.39397372744552],[-122.61558161826476,55.39387833957318],[-122.6153679909959,55.39382882828853],[-122.61531173905578,55.39381497191694],[-122.61528643467197,55.39380980185792],[-122.61522058849934,55.39379232212846],[-122.6151587880657,55.39377383084391],[-122.61513771847461,55.39376541209682],[-122.61477031091613,55.39363773869129],[-122.61434571907587,55.39348384961784],[-122.61429060264189,55.393456569971235],[-122.6142755546282,55.393447193124324],[-122.61424103472419,55.39343392518789],[-122.61421996550455,55.393425506286576],[-122.61399912262806,55.39332086160503],[-122.61363831141598,55.39318551553305],[-122.61324984513078,55.39304941866634],[-122.61322294429816,55.393039720367454],[-122.612791135788,55.39285423837453],[-122.61237324325913,55.392691554768156],[-122.6123367491187,55.3926782327392],[-122.61198613363635,55.392492707129485],[-122.6117473445719,55.392366269984336],[-122.61170934856123,55.392347301365284],[-122.61166730696281,55.39232934414221],[-122.61163673988102,55.392316182646994],[-122.61161021844185,55.392302009738835],[-122.61158557788966,55.39228900897131],[-122.61154391492599,55.39226657744386],[-122.61140745189539,55.3921944870167],[-122.61137181023565,55.39217109761636],[-122.6111089765921,55.391977860128456],[-122.61085620000374,55.39180619638289],[-122.61058808286354,55.39165205399579],[-122.61027417858647,55.39145406555766],[-122.61025198776007,55.39143552530665],[-122.61000901343779,55.3912417029736],[-122.60960198122945,55.39088086342465],[-122.60958571730235,55.390862483892086],[-122.60920093496847,55.39042600959771],[-122.60897181282458,55.39020901714471],[-122.60885259831844,55.39009703101366],[-122.60882524035041,55.39006938113441],[-122.60879938429804,55.3900473776905],[-122.60878866841728,55.39003363318283],[-122.60877240520685,55.390015253546416],[-122.60874890340673,55.38998882946386],[-122.60870923318821,55.38994290716919],[-122.60870039803946,55.3899303348434],[-122.60854606121255,55.38971873508159],[-122.60837075479934,55.38949759668902],[-122.60806041218056,55.38904744341359],[-122.6080484792444,55.389024696706976],[-122.60786257446499,55.38860146544644],[-122.60774250430731,55.38835940320468],[-122.60707135095083,55.3871438032457],[-122.60667029806389,55.386199003436545],[-122.60628576405948,55.38533985704143],[-122.60580505015041,55.3844478248739],[-122.60512730291816,55.383007805308786],[-122.60429045509274,55.38146031088537],[-122.60343719664775,55.379803612819806],[-122.60262045937851,55.378067178994115],[-122.60207371318126,55.377045522606714],[-122.60162751389319,55.37602884173037],[-122.60104177377342,55.37479085995952],[-122.60051715379505,55.37371934590025],[-122.60050870436305,55.37370229880125],[-122.60043387150742,55.37344127860481],[-122.60042984574962,55.373418746240496],[-122.60040036996676,55.37311299417214],[-122.60040029333267,55.373090569321924],[-122.60043622540891,55.372830322385816],[-122.60043736413026,55.372816899730005],[-122.60051791000755,55.37249732595269],[-122.60056804180184,55.37223298106438],[-122.60057859664445,55.37220187655119],[-122.60072841855187,55.37190549033451],[-122.6007469659727,55.371873482260916],[-122.60078187845286,55.37183519286569],[-122.60072849082326,55.37181131672866],[-122.60061833612811,55.371756745551195],[-122.60054053232089,55.37169408592288],[-122.60035281956777,55.371503987525536],[-122.60032355723675,55.37128905344438],[-122.60030851748381,55.37116307649823],[-122.60029302496005,55.37113574736654],[-122.60029522254598,55.37096987877686],[-122.60024257402961,55.370843998959785],[-122.5999998701613,55.37076563754496],[-122.5999170579317,55.37073871750139],[-122.59947734989292,55.37057987403457],[-122.59931932054776,55.370436548922434],[-122.59279021725779,55.3704188767168],[-122.59099318676465,55.36660502222968],[-122.59222101038449,55.36466196604719],[-122.59224101578636,55.36247179839962],[-122.59539159385274,55.36248713055361],[-122.59604632044618,55.362489288923065],[-122.59602631621087,55.36246856293807],[-122.59599625197978,55.36244980491697],[-122.59594756678267,55.36244062939235],[-122.59585414446477,55.36242238594398],[-122.5958074333377,55.36241326419357],[-122.59571249113907,55.36241291743556],[-122.59552336679333,55.362403275306605],[-122.59541329765729,55.362394667800686],[-122.59520868779995,55.362357695484754],[-122.59508161299946,55.3623396547395],[-122.5950191101515,55.3623301019648],[-122.5949086827127,55.36230242483664],[-122.5946672547041,55.362233055379164],[-122.59460974544689,55.3622113060574],[-122.59455299651093,55.36218060831896],[-122.5945002906746,55.36214889970671],[-122.59440672316933,55.36208580552693],[-122.59429569706776,55.36199532757825],[-122.5942021302425,55.36193223324631],[-122.59412459676543,55.36191330079604],[-122.59402950966219,55.36186810311],[-122.59398234638076,55.36184103004675],[-122.59392121937638,55.361768730301925],[-122.59381071475335,55.3616255724399],[-122.59377943864865,55.361597811640976],[-122.59371724460753,55.36156135919941],[-122.59368511312256,55.36154366530951],[-122.59359124088664,55.36150746953919],[-122.5934344147374,55.36144376949977],[-122.59337181861412,55.36143533444984],[-122.59323016935991,55.36142586312789],[-122.5930885201726,55.361416391645484],[-122.59299358035692,55.36141604282117],[-122.59296123653606,55.361424129211905],[-122.59293077157847,55.3614333880167],[-122.59286710704714,55.36146080010722],[-122.59280308482546,55.36146914298331],[-122.59273982322699,55.36146853744811],[-122.5926779878744,55.36145115367203],[-122.59264519134973,55.361441289345656],[-122.5925983375942,55.36138731674826],[-122.59252101898153,55.361342602838405],[-122.59239404369598,55.361323440814374],[-122.59222071684714,55.36131422475436],[-122.59204860322185,55.361314010717095],[-122.59200037262781,55.36132278429264],[-122.59187344623845,55.36134958993478],[-122.59177850659144,55.36134924018714],[-122.59171645826821,55.36135763639952],[-122.59152733985854,55.36134798822257],[-122.59147865702094,55.3613388109576],[-122.5913702086979,55.36131118460295],[-122.59133807844859,55.36129349011005],[-122.59132304786603,55.36128411053755],[-122.59126040455365,55.36122970623466],[-122.59121355290844,55.361175733119225],[-122.5911964533389,55.36116741817549],[-122.59108679275049,55.36113078930428],[-122.5910403933438,55.3610947667647],[-122.59100947631713,55.3610860744603],[-122.59089950689564,55.361076344432895],[-122.59081914649667,55.36106742293859],[-122.59077243809239,55.36105829930713],[-122.59069369509137,55.36103036245437],[-122.59066308757393,55.36099477105727],[-122.5903352313975,55.36061583878403],[-122.59030648223558,55.360418853274226],[-122.59018151094227,55.3602831446253],[-122.5900395832384,55.36018397039708],[-122.59002455337517,55.36017459066961],[-122.58972688308022,55.359975864220054],[-122.58966424397543,55.35992145912492],[-122.58963349703704,55.359841017836445],[-122.5896488367394,55.359823498609884],[-122.58971433346821,55.35975129244731],[-122.58976166006843,55.35970661847157],[-122.58980929650971,55.359635045477596],[-122.58980977502509,55.35953639783469],[-122.58977912324899,55.35945483804081],[-122.58970167024833,55.359365272755],[-122.58962617315412,55.35911319488514],[-122.589547913922,55.35898660968042],[-122.5895327894576,55.35897834843957],[-122.58950151837713,55.35895058657817],[-122.58940765598376,55.35891438767521],[-122.58935897658432,55.35890520958677],[-122.5892655654961,55.35888696121913],[-122.58918673263237,55.35886014196778],[-122.5891245470088,55.358823687251395],[-122.5891090668694,55.35879635677275],[-122.58909335100203,55.3587252951977],[-122.58909366142112,55.358698396201795],[-122.58906270130217,55.35864373523564],[-122.58906377315672,55.35860788788691],[-122.58903150558702,55.35854534316856],[-122.58901664655666,55.3584642146891],[-122.58898523578357,55.358391603063104],[-122.58894067482697,55.35831078405578],[-122.58890885859192,55.35826618994986],[-122.58886232414164,55.358185316977234],[-122.58884715500719,55.358131087474455],[-122.58884822704064,55.35809524012973],[-122.58886428273537,55.35802280447251],[-122.58891160824312,55.35797813082766],[-122.58905341421936,55.35791585841427],[-122.58915017885829,55.357871414533335],[-122.58921329402673,55.35782717225223],[-122.58922796694941,55.35781748289042],[-122.58924527982357,55.357800017650945],[-122.58929367626962,55.35771949651584],[-122.58938827977505,55.35758418070948],[-122.58959534051542,55.35740597058969],[-122.58969115475695,55.3572796568415],[-122.58972304463848,55.35725362066407],[-122.58980249456924,55.35722664158572],[-122.58988163451417,55.357226561450105],[-122.59016490185468,55.357245511517554],[-122.59021236681524,55.35724568701347],[-122.59026028327342,55.357263813126536],[-122.59030698714346,55.35727293694555],[-122.59043287801717,55.35732794843693],[-122.59054217112184,55.35734550868668],[-122.59062242887347,55.35735554890046],[-122.59085899335014,55.3573653736931],[-122.59104809282505,55.35737502287742],[-122.59111023024546,55.357365508455324],[-122.59122049852884,55.35734833929597],[-122.59126948541468,55.3573306176603],[-122.59131604653965,55.357294891473245],[-122.5914115462453,55.357195475403906],[-122.59142809703951,55.357186958229086],[-122.59157065714113,55.35711573459791],[-122.59163376845143,55.357071491097614],[-122.59166651281262,55.35703538751154],[-122.59172926683796,55.35697207478786],[-122.59177810947206,55.3569095033271],[-122.59182573899476,55.356837929587115],[-122.59184392745085,55.35669379882818],[-122.59184333161203,55.35663099857505],[-122.59181317861575,55.35661335810588],[-122.59170186485436,55.356549776905],[-122.59163968052651,55.356513323450315],[-122.5916241044647,55.356487111836266],[-122.59153055468731,55.35642401554325],[-122.59150004504542,55.35638730582434],[-122.59145167705353,55.35635122955947],[-122.59140590054723,55.35626140918666],[-122.59137377432633,55.356243714713024],[-122.59132692835122,55.356189741671045],[-122.59131220859528,55.35615346310908],[-122.5912807954767,55.356080852079415],[-122.59126583770136,55.356000842435826],[-122.59128433671756,55.35582981277957],[-122.59129998308266,55.355785394365924],[-122.59136349657894,55.355713133471106],[-122.59144325117617,55.355659254361704],[-122.59158566247493,55.355543181106015],[-122.59179263300882,55.35543559745033],[-122.59190351271519,55.35536462970714],[-122.59203148926493,55.355301976692125],[-122.5921423681795,55.35523100873789],[-122.59217434992406,55.35520385339469],[-122.59222242906631,55.3551502301414],[-122.59225642449181,55.35488993221531],[-122.59225668374455,55.35481706506216],[-122.5921947148271,55.354754831445376],[-122.59214634817863,55.35471875545612],[-122.5921162915688,55.35469999651796],[-122.59202167607965,55.35467274796436],[-122.5919593992837,55.354637413222456],[-122.5919273692067,55.35461860034873],[-122.59184916002988,55.354537984810065],[-122.59181819936734,55.354483324552724],[-122.59180338470256,55.354448164601436],[-122.59178700012959,55.35438493322035],[-122.59180380975661,55.3543035488506],[-122.5918379295096,55.35420469888783],[-122.59185236174423,55.354151278155285],[-122.59187130958868,55.353998199070844],[-122.59185483000438,55.35393608624757],[-122.59179295816057,55.353872733892004],[-122.59160567892832,55.353655723761364],[-122.59152716352702,55.353602007016384],[-122.59148077243161,55.35356598467131],[-122.59141707134083,55.35354742784351],[-122.59137113235955,55.3535293560814],[-122.5912930694364,55.353493589813645],[-122.59121419799443,55.35342080370393],[-122.59115102014826,55.35334956731611],[-122.59116904333509,55.35327718530485],[-122.5912002633438,55.353258978577564],[-122.59126382089686,55.35323268590725],[-122.59129580164314,55.35320553079511],[-122.59134357069739,55.35317880687661],[-122.59142134674237,55.35312487389647],[-122.59150176178785,55.353063164948814],[-122.59159725096104,55.352963748785086],[-122.59162837543958,55.35294666049676],[-122.59166142509198,55.3528836579445],[-122.59167752197243,55.35285719011959],[-122.59169556569636,55.352668209842335],[-122.59169587432402,55.352641310858466],[-122.59161714719863,55.35261337461446],[-122.59156999642352,55.352586300669124],[-122.59150758001438,55.35250611610613],[-122.5914928614465,55.35246983758068],[-122.59149317020857,55.352442938597946],[-122.5915092188665,55.35237050264723],[-122.5915248636337,55.35232608422269],[-122.59163673442454,55.3522898994371],[-122.59173150913547,55.35224539968953],[-122.59179385192282,55.352210104495654],[-122.59189045608984,55.35212080891885],[-122.59192122268902,55.35208465139479],[-122.59195457962085,55.35199474978861],[-122.59200281982696,55.35186937805639],[-122.59202592628674,55.351690626330814],[-122.59203636166906,55.351591129668975],[-122.59208669024154,55.35134809507688],[-122.5920882114478,55.35133019834857],[-122.5921978664129,55.35125022812444],[-122.5922786798024,55.35116050116335],[-122.59235858809758,55.35103487292068],[-122.59239027789019,55.35091801834437],[-122.59240922215568,55.35076493923397],[-122.5923777162047,55.350693447069986],[-122.59231584853538,55.35063009499653],[-122.59203186627951,55.35062009818401],[-122.59185706446709,55.35062877835685],[-122.59158963038205,55.35061026331135],[-122.59152638592205,55.35060965716254],[-122.59149471614765,55.35060991334848],[-122.59146466292029,55.35059115426228],[-122.59143254121336,55.35057345981507],[-122.59141630194704,55.35055507800718],[-122.59140103715292,55.35050196740634],[-122.59140251060079,55.350438102549155],[-122.59143577223479,55.350349319642945],[-122.5915135426714,55.35029538662262],[-122.59154552090762,55.350268231455416],[-122.59161130729173,55.350169125400384],[-122.59169168947642,55.34994485005578],[-122.59170702449696,55.349927330595996],[-122.59180286272326,55.349846983470165],[-122.5918195054827,55.34983734770553],[-122.5918830572103,55.349811054730125],[-122.59194584824937,55.34979371008426],[-122.59203985613807,55.349758158476874],[-122.59205695102037,55.34976647329437],[-122.59208821671149,55.34979423448728],[-122.59210379047845,55.34982044602357],[-122.59210272157448,55.349856293362784],[-122.59211834422646,55.34992847303317],[-122.59214915782607,55.34993828359766],[-122.59218006651028,55.349946975608965],[-122.592290005741,55.34995670449684],[-122.59243237478593,55.349957228507584],[-122.59252773991419,55.349975528370166],[-122.59257488826769,55.35000260194615],[-122.59260579709364,55.35001129385219],[-122.5927474059056,55.35002076586978],[-122.59279410191071,55.350029888751386],[-122.59288901478439,55.3500302377268],[-122.59298347502548,55.35001263601932],[-122.59309412501509,55.34996744769527],[-122.5931899605597,55.349887099504784],[-122.59320560249807,55.349842680882006],[-122.59327047856543,55.349707672738994],[-122.59330321544483,55.3496715687539],[-122.59339783677166,55.34958221816754],[-122.5935245794273,55.34951056142552],[-122.59369837508528,55.34946709625223],[-122.59376247299562,55.349457634382155],[-122.59390408012669,55.34946710508764],[-122.59396656267316,55.34947665840619],[-122.59401523168812,55.34948583468932],[-122.59410831606486,55.349530978466404],[-122.59417201202405,55.34954953391334],[-122.59425113681876,55.349549451009544],[-122.59440883813429,55.34953245299404],[-122.59456694099694,55.349487437250794],[-122.59470794820777,55.349434106855604],[-122.5948359014642,55.3493714510092],[-122.59496188096259,55.34930874118923],[-122.59507333891698,55.34930057086707],[-122.59516749020773,55.34930986649124],[-122.59527697476486,55.34930164214769],[-122.59538852761386,55.349292352996535],[-122.59551465371653,55.34927449220271],[-122.59556210927158,55.349274665665746],[-122.59567204748018,55.349284391575715],[-122.59579938705303,55.349275532709996],[-122.59589308452576,55.34926687718812],[-122.59594129977788,55.34925810212176],[-122.59598754165202,55.34924927321005],[-122.5960198750495,55.34924118604708],[-122.59614706598535,55.34918747724466],[-122.59622634711435,55.349115644523415],[-122.59624153130993,55.34905327492723],[-122.59624406218276,55.348953562652405],[-122.59626000591571,55.34888224466815],[-122.59627649863825,55.34882775873044],[-122.59643511252271,55.34873006120736],[-122.59649784603548,55.34866674614739],[-122.59651545716325,55.34862238093487],[-122.59653140028227,55.34855106291859],[-122.59651759471377,55.348434088051775],[-122.59650196473044,55.34836190894377],[-122.59650318621857,55.348254313013335],[-122.59653638848629,55.34800296251196],[-122.59656988057615,55.347957909289555],[-122.59669646340485,55.34784139976684],[-122.59674498197444,55.34780572541002],[-122.59682304549848,55.34772489011733],[-122.59699875498755,55.347518907923735],[-122.59703179173795,55.34745590398879],[-122.59703179793802,55.3473393058635],[-122.59701783569827,55.34729407961982],[-122.59692369522257,55.347168187269666],[-122.59689410958626,55.34693418384632],[-122.59686335810615,55.3468537444555],[-122.5967867749297,55.34663751863655],[-122.59674175703725,55.34653875192922],[-122.5966944609175,55.3464668303689],[-122.59664801939633,55.34638484185578],[-122.59663350875898,55.34632278353222],[-122.59663376000847,55.346249916439895],[-122.59665091569371,55.34618760063013],[-122.59669882902344,55.34608912614197],[-122.59671501478991,55.34606153913945],[-122.59682571072067,55.345945717536246],[-122.59690543857216,55.34589183499831],[-122.59697004516977,55.345829692081686],[-122.59698501686253,55.345793102845526],[-122.59701866222672,55.34567630097401],[-122.59706611963331,55.34555987576317],[-122.59711387574376,55.34553314966066],[-122.59722441381271,55.34548907624859],[-122.59735159124435,55.345435366241745],[-122.5974466481468,55.34536396321564],[-122.59751165263917,55.34527380249771],[-122.59755925812586,55.34520222666496],[-122.5975583488735,55.34516632549589],[-122.59759260127674,55.34499572552703],[-122.5975620947781,55.344959017335704],[-122.59749937358161,55.34490573481035],[-122.59746795807273,55.34483312542817],[-122.59742066266166,55.34476120415641],[-122.59737382195794,55.344707233451444],[-122.5972963804706,55.34461767302318],[-122.59725115366365,55.34454468694616],[-122.59723512410824,55.34450052548271],[-122.59722070816031,55.34443734869148],[-122.59717417299554,55.34435647894103],[-122.59715747917801,55.34432014730813],[-122.59711231348945,55.34417653120346],[-122.59711231945508,55.34405993312042],[-122.59711423799149,55.34401401882556],[-122.59717717303145,55.343924923034585],[-122.59732149919668,55.34380889719965],[-122.5974635467489,55.343719716367374],[-122.59759056823773,55.34362115657459],[-122.5976225370437,55.34359399987168],[-122.59765511493333,55.34351304521806],[-122.59767120410231,55.34348657664829],[-122.59773499117122,55.343387413642326],[-122.59778350343298,55.3433517388995],[-122.59786125177851,55.34329780196843],[-122.59827250633002,55.343182326064934],[-122.59855825947602,55.343147512916296],[-122.59862058212639,55.343112214350626],[-122.59862012704899,55.3430942637741],[-122.5987942880668,55.343022774018756],[-122.59892191079271,55.34298701300299],[-122.59898423287399,55.34295171425648],[-122.59909637440003,55.34288862385469],[-122.59915975859005,55.3428174776498],[-122.59938197209692,55.34269236120949],[-122.59947595676371,55.34265680403301],[-122.59952370781487,55.34263007701746],[-122.5997152617859,55.342540000794735],[-122.59974591914948,55.342504959931986],[-122.59977788560788,55.342477802680655],[-122.59981091384569,55.34241479804551],[-122.59984166586817,55.342378638609496],[-122.59989017503788,55.3423429630522],[-122.59990550357475,55.342325442600675],[-122.59996943594632,55.34227112800909],[-122.59999999804931,55.34223720563551],[-122.60006523934787,55.34219077461149],[-122.60012967944657,55.3419671824868],[-122.59999961144712,55.34189188566618],[-122.59997322227248,55.34187659182303],[-122.59991150880775,55.3418580931152],[-122.59986315076524,55.34182202016587],[-122.5997861072495,55.34170444378837],[-122.59975474769723,55.341677803097625],[-122.5997083630007,55.34164178385616],[-122.59965970219636,55.34163260979953],[-122.59953511947197,55.34163257796447],[-122.5994542842474,55.341676341434855],[-122.5994071982247,55.341695238571816],[-122.59926425145585,55.34174852045199],[-122.59918720989849,55.34174754175813],[-122.59913976322808,55.341747369672746],[-122.59898184808313,55.3417206426551],[-122.59890237840773,55.341701659433554],[-122.59885644961528,55.341683590448326],[-122.59874552635445,55.341639084752394],[-122.59868259978387,55.341611583259485],[-122.59855750587661,55.34154763178495],[-122.59840126305815,55.34143125873764],[-122.59830692276383,55.341331147928635],[-122.59826084390754,55.341268229184635],[-122.59826190708249,55.341232381826835],[-122.59827738926049,55.34114311307156],[-122.59827769338831,55.34111621410582],[-122.59826479769366,55.34091854263212],[-122.59826540596235,55.34086474470211],[-122.59829691720905,55.34081963726128],[-122.59831309975196,55.340792050067684],[-122.59834497093964,55.34076601173705],[-122.59836069849341,55.340720473964545],[-122.59807033595574,55.340669954183696],[-122.59761340442763,55.340834634257504],[-122.59694692980088,55.34113822437536],[-122.59644337600308,55.34131620362671],[-122.5961624879155,55.34138702074093],[-122.59600631760682,55.34140966751829],[-122.59572854047524,55.34146711491587],[-122.59548287878451,55.341542255091966],[-122.59532556794441,55.34157832358104],[-122.59500762142912,55.34168960909441],[-122.59452516342165,55.3418984274821],[-122.59442318917638,55.341934884070376],[-122.5942082789663,55.34197386363517],[-122.59414692607722,55.34197443121458],[-122.59364164907053,55.34196288021777],[-122.59338057095897,55.34194005643353],[-122.5932619287016,55.341916636623004],[-122.59312020334937,55.341862315647845],[-122.59291258246309,55.341745653592945],[-122.59268389856281,55.34155105730306],[-122.59249945457196,55.34137112242191],[-122.59223397413342,55.34105107370076],[-122.59215643031969,55.34089311725796],[-122.59189371027128,55.34044757532654],[-122.5917207987074,55.34001569746109],[-122.59165882696864,55.33979089756678],[-122.59162573386197,55.33943571309607],[-122.5917119362612,55.33891001080303],[-122.59171680747045,55.33882942176221],[-122.59170263905258,55.33871692066274],[-122.59164119299894,55.338532496151366],[-122.5915376060886,55.338401856210695],[-122.59149912381538,55.33836604952029],[-122.5913985572676,55.33831621408403],[-122.59134079885393,55.33829781894575],[-122.59111687270044,55.338256945396054],[-122.59107178329187,55.33825234997605],[-122.59069383575067,55.33825547620124],[-122.59046375374503,55.33826376345554],[-122.58971914606286,55.338346557276424],[-122.58955183748536,55.338337499314086],[-122.58943753420547,55.33830970956762],[-122.58934531246379,55.338278038798556],[-122.58905933442955,55.33810653376645],[-122.58863717716088,55.337722771951874],[-122.58842505496152,55.33754319446671],[-122.5882792220332,55.33739794252305],[-122.58810260605992,55.337312390250624],[-122.58798588368919,55.337266594623664],[-122.58778647057538,55.337239838980814],[-122.58739427303661,55.33722462691922],[-122.58694913994013,55.33725056891657],[-122.58647358456273,55.337262223225316],[-122.58596592026966,55.33725617989558],[-122.58552856737185,55.33721393992621],[-122.58536759069169,55.337177020872076],[-122.58531180942958,55.33715867694155],[-122.58511775905713,55.33704573556828],[-122.58502859124951,55.33697826838471],[-122.58498534080702,55.33692887523244],[-122.5847428603474,55.33661840704945],[-122.58466282320316,55.33653661462914],[-122.58454248981361,55.336370754178134],[-122.58448083458357,55.33623564987376],[-122.58423336543605,55.33609994267053],[-122.58395163962915,55.33601823306644],[-122.58382557800232,55.336012538853765],[-122.58359786122898,55.33601639332309],[-122.58313307909172,55.33606420625248],[-122.58302245621533,55.3361093856824],[-122.58286551783887,55.336234018982],[-122.58281029187154,55.336302017393116],[-122.58262686773102,55.33657503752063],[-122.58249684850915,55.33673179994834],[-122.58239333157557,55.33687919795715],[-122.58218707836247,55.337071990748825],[-122.58201490280722,55.33728253410318],[-122.58185270574143,55.33739917425008],[-122.58156404599823,55.33767715790858],[-122.58144142621589,55.337770216767396],[-122.58108501214633,55.33798467975492],[-122.58085404801592,55.33809607081471],[-122.58068184921902,55.33816758957659],[-122.58058232149827,55.338198496238675],[-122.58049774759196,55.33821635890111],[-122.58010755114998,55.338247146100834],[-122.57997076065918,55.33825124441944],[-122.57974420583679,55.338218126137114],[-122.5796516103918,55.33819092234667],[-122.57920998473661,55.33803642820572],[-122.57892755107157,55.33784705752056],[-122.57875992463136,55.33772586123494],[-122.57864187347543,55.33762620495797],[-122.57856827544394,55.337584946334154],[-122.57827792929112,55.33755792385276],[-122.57771855748601,55.337578457649464],[-122.57753633179244,55.337558883868404],[-122.57741691639482,55.337567940581934],[-122.57722371340938,55.33760748621397],[-122.57713563914056,55.33764318899473],[-122.57698962240309,55.33773223838757],[-122.57690912029675,55.337795056418905],[-122.57688045075076,55.337876113863494],[-122.57689012303851,55.337948132956626],[-122.57692553695668,55.33801973718148],[-122.57698659717708,55.33809204504829],[-122.57700848828308,55.33815991476488],[-122.57702223346082,55.33827689165226],[-122.57693689295643,55.33844272294182],[-122.57687818564412,55.33850501782765],[-122.57673814696965,55.338616654095816],[-122.57670457708565,55.33863927717614],[-122.57644110948429,55.338737435989366],[-122.57629254316501,55.33876363024135],[-122.57612211718182,55.33876792252824],[-122.5759275725053,55.33875361421206],[-122.57579071704288,55.338735283174984],[-122.57526267546154,55.33864342988612],[-122.5751570365669,55.33860689543309],[-122.5744833740242,55.3383215662517],[-122.5740518892326,55.33811800102275],[-122.57364633523832,55.337981294442045],[-122.57343057921479,55.33789128222345],[-122.57305488075752,55.337706062798034],[-122.57274492109005,55.337538344261205],[-122.57241381113352,55.33731734951862],[-122.5721287726791,55.33713573897187],[-122.57161893655325,55.336761838491775],[-122.57135363264901,55.33658076830115],[-122.57101823197847,55.33622511281199],[-122.57095833288821,55.336139379710744],[-122.57092876463243,55.335999543631395],[-122.5709299941948,55.335869523331226],[-122.57090757383874,55.33559982962181],[-122.57087567550371,55.33551038149419],[-122.57069242037791,55.33524859935978],[-122.57037282963668,55.335008855427546],[-122.57030703974127,55.33496892739781],[-122.57005688851171,55.3348420860989],[-122.56984519828447,55.334751057660945],[-122.56972051810938,55.334706146540086],[-122.56951015525222,55.33466896952731],[-122.56912381190531,55.334654981339575],[-122.56888070333171,55.334653900852345],[-122.56868311916008,55.334675374078955],[-122.56838355518408,55.33473328228525],[-122.56826709725252,55.33477716732008],[-122.56811915718238,55.334888576817306],[-122.56808240597303,55.33490214083461],[-122.56784718638512,55.33490127540461],[-122.56763678678048,55.334887638530574],[-122.5674121380087,55.33485567068347],[-122.56731768179615,55.334827284953604],[-122.56707784478594,55.334718659757876],[-122.56690396644706,55.33460175884439],[-122.56667102545157,55.33441259912601],[-122.56653685040175,55.334316971217184],[-122.56622357338212,55.33391145798552],[-122.56615334640931,55.33383104373365],[-122.56602306228977,55.33371309910539],[-122.56589327743296,55.33352005037296],[-122.56573718185065,55.33321864580476],[-122.56573105681221,55.33294379306232],[-122.56573981008621,55.33281846416674],[-122.56585864137423,55.33258517095859],[-122.56601866356458,55.3323787982879],[-122.56633560088382,55.33202538838484],[-122.5665974019605,55.33190029781648],[-122.56665184539536,55.33186479808833],[-122.56685305276793,55.33168534478422],[-122.56687660656269,55.33164114669733],[-122.56688238832372,55.331550491978184],[-122.56684632604383,55.33137123523379],[-122.56680741197077,55.331271502244654],[-122.56674343091817,55.331164352352204],[-122.56667119454768,55.330876468647425],[-122.56666602216015,55.33070591016156],[-122.56668084267822,55.33060205033693],[-122.56677227790934,55.330342215924354],[-122.56680381627918,55.33029711648638],[-122.56693628907855,55.330158375462936],[-122.56707747416529,55.33003332800401],[-122.56726524676662,55.329849019990704],[-122.56739015179757,55.32968316251561],[-122.56752585776793,55.32957590238299],[-122.5678159592518,55.32942019620511],[-122.56805562302377,55.32932252300193],[-122.56836960161424,55.32921119774455],[-122.5687259761665,55.32913579389857],[-122.56917818306752,55.32898005945661],[-122.56945967861554,55.328855505426105],[-122.56956393789144,55.32879222466339],[-122.56965226331477,55.32870720364366],[-122.56969156761038,55.32861747094342],[-122.5696647399875,55.328168270697525],[-122.56961289011149,55.327988580875356],[-122.56956045348716,55.327885113499526],[-122.56942148797748,55.32779944699767],[-122.56910773452441,55.32765403586804],[-122.56899052458768,55.327591390403796],[-122.56853469187583,55.327373678747605],[-122.56837053257468,55.327305256347856],[-122.5680549527891,55.327250605851674],[-122.56754144297517,55.32722190005695],[-122.56689500853719,55.327152535199886],[-122.56664947492408,55.3271110206694],[-122.56644939877091,55.32706963588674],[-122.56631488512602,55.32702444993429],[-122.5661581795394,55.3269382911474],[-122.5660346193196,55.326857529356566],[-122.5659320264124,55.32676276966697],[-122.56558733494003,55.326424779112145],[-122.56531708998358,55.32627943469725],[-122.56513339241661,55.32616225986553],[-122.56484787384436,55.325941376018434],[-122.56472479821504,55.325855020331254],[-122.5644604766884,55.32570983703184],[-122.5639971449199,55.325510960736004],[-122.56369778532381,55.32542871653419],[-122.56355900872443,55.325410317779614],[-122.56327811073191,55.325297188705996],[-122.56285098925765,55.32518339273855],[-122.56261730463078,55.32514219638536],[-122.5624101759904,55.32511406431304],[-122.56193880962535,55.325009136039725],[-122.56169844372054,55.32497672302741],[-122.56154691928434,55.32494563774747],[-122.561422374708,55.324899599867045],[-122.56138590434797,55.324863838322464],[-122.56127100200571,55.324728373156674],[-122.5611833263213,55.32459814323511],[-122.56110276060878,55.3242696635764],[-122.56083381314022,55.323671394825915],[-122.5602499302709,55.32289626493453],[-122.56013094174124,55.32237052114786],[-122.56013394419112,55.322266335831884],[-122.56001709359785,55.32217678316191],[-122.55988012826786,55.32204519247758],[-122.5597614751794,55.321861412126935],[-122.55974378321753,55.321514484723885],[-122.55978732903961,55.321214093184395],[-122.55977960953453,55.32111970255116],[-122.55971439319895,55.32093515389018],[-122.55961533677322,55.32082254719284],[-122.55948348357647,55.32072361068973],[-122.55932764663953,55.320489472733314],[-122.5592501560805,55.320448093986194],[-122.55901552162965,55.3203261400794],[-122.55870783313888,55.32020329089534],[-122.5585749393438,55.32016262511491],[-122.55819897255401,55.32009843316669],[-122.5576202882564,55.320024159617695],[-122.5570534896128,55.31997263477761],[-122.5567016254545,55.31992704229881],[-122.55648106481509,55.319917588468066],[-122.55581717526181,55.31991495045919],[-122.55571088679513,55.31990977247989],[-122.55540288570407,55.31985978194628],[-122.55532002300994,55.31988103752756],[-122.5552460013331,55.319845357803054],[-122.55482825589085,55.31983045387095],[-122.55455950729196,55.319829755809764],[-122.55396001293711,55.319790767376006],[-122.55365961891417,55.31979031403657],[-122.55345728678803,55.31977575275673],[-122.55321585623962,55.31977917031488],[-122.55298894726803,55.31975159611142],[-122.55292844255959,55.31971965208883],[-122.55256996872072,55.31931397006462],[-122.55233314091974,55.31907982539223],[-122.55211444353992,55.31879572891885],[-122.55208606045869,55.31866600975354],[-122.55204616704191,55.318279224726844],[-122.55200359481417,55.31810762995842],[-122.55191115229077,55.31794138317985],[-122.55158401573159,55.31760831901535],[-122.551496867636,55.31747248983326],[-122.55134792149589,55.31729683170805],[-122.55130304825673,55.31719804894779],[-122.55128308554032,55.317085379936415],[-122.55129476851754,55.3170184329229],[-122.551461536827,55.31682571950083],[-122.55166596047466,55.31667777283518],[-122.55188456889432,55.31652573345871],[-122.55207634394083,55.31640995031483],[-122.55224084915733,55.316266504854646],[-122.55242410218507,55.316042853480766],[-122.55243606785629,55.31592658285609],[-122.55238195150734,55.315705337658876],[-122.55235817911466,55.31547596209788],[-122.55237378983242,55.31522525212371],[-122.55244349537755,55.314919979485516],[-122.55243141701723,55.31480752874162],[-122.55236191712588,55.314627341371036],[-122.55190510785962,55.314216694795974],[-122.55170717116398,55.314036318541284],[-122.55157305296427,55.31396421799337],[-122.5514152765323,55.31389146293519],[-122.55126615588232,55.313809977732255],[-122.55069550440349,55.31357444311083],[-122.55052628643101,55.31349688564087],[-122.55026685926687,55.313411226181046],[-122.55008821820712,55.31335134606633],[-122.54979638302524,55.313274879377744],[-122.54931768719278,55.31316521130887],[-122.54875171785511,55.313082276006675],[-122.54867430012305,55.31306331545297],[-122.54854341162682,55.31302269359427],[-122.54839665634312,55.31293678551481],[-122.54828274382758,55.31285963468351],[-122.54804410215925,55.31267027689984],[-122.5477885833968,55.3125163287719],[-122.54769520492077,55.31245319995795],[-122.54767178869854,55.31242676463316],[-122.54761514812306,55.312350077782796],[-122.54756557686207,55.31226013260068],[-122.54753855799964,55.31216072135269],[-122.54753846399333,55.312115871898484],[-122.54763585038668,55.31178782309284],[-122.54755123224002,55.311576942099954],[-122.54758673978871,55.31111824517324],[-122.5475835840313,55.31074144429375],[-122.54760075575601,55.31061074279079],[-122.54741122044878,55.31047095357056],[-122.5472546200018,55.310384771199296],[-122.54672837010473,55.310185202518674],[-122.54649979414502,55.31008581374607],[-122.54641709652881,55.31003643370946],[-122.54626954405427,55.3098910785254],[-122.54616853497423,55.309755981947774],[-122.54612570045367,55.30967967673612],[-122.54609614187393,55.309540953669966],[-122.54580666073691,55.30934569765395],[-122.5456732929798,55.30924221803643],[-122.54535761131726,55.30905296193279],[-122.54514314311571,55.30885866166347],[-122.54489506870212,55.308664550764796],[-122.54473877499542,55.30852904179371],[-122.54455057357765,55.30825922859134],[-122.54442159144484,55.308127839685774],[-122.54381778098059,55.30761330018558],[-122.54361995795207,55.30745533593966],[-122.54350044544196,55.307374661313105],[-122.54277164190955,55.3069351325944],[-122.54269761094167,55.306877020756545],[-122.5424878804181,55.30667387728192],[-122.54226550176338,55.306502896643],[-122.54213623526604,55.30642082883834],[-122.54200365758278,55.30630839731248],[-122.54194189386317,55.30622259588022],[-122.54189744158982,55.30611933584005],[-122.54182770612893,55.30598846619702],[-122.54170713332314,55.3057137969385],[-122.54167738233195,55.305669245745214],[-122.54155081819864,55.30555585929834],[-122.54128469000403,55.30543411575387],[-122.54094814773711,55.30523529895472],[-122.54081421786908,55.305184493119675],[-122.54063947331683,55.30512582742373],[-122.54037622207574,55.30506246278398],[-122.53996254623112,55.30497922588161],[-122.53978193317027,55.30494281956461],[-122.53936589138733,55.30490996789795],[-122.53885106024705,55.304854190707154],[-122.53835037218487,55.304771895842975],[-122.53793635927354,55.30471555093367],[-122.53756536694365,55.30468730785469],[-122.53726865623575,55.3046454306282],[-122.53688446085064,55.30456412333018],[-122.5366445826308,55.30450476343387],[-122.53634976381076,55.30441808935865],[-122.53619719349473,55.3043544274126],[-122.53610068225649,55.30428223245371],[-122.53586915509847,55.30398877655033],[-122.53584473656353,55.303836738724385],[-122.53584219268144,55.30368306644842],[-122.53586622814987,55.303404560747765],[-122.53594914453751,55.30315347851711],[-122.53598276947086,55.30294699480311],[-122.53600109500981,55.30234543085758],[-122.5360225882763,55.30218794190859],[-122.53600684165413,55.30198120734726],[-122.53576834478699,55.30158552992854],[-122.53556375275714,55.301300669897365],[-122.53537985416583,55.300959204508715],[-122.53523900354648,55.30082859599547],[-122.53514893795722,55.30077339690996],[-122.53490382483363,55.30063764723829],[-122.53459467966559,55.300511328572306],[-122.53445190198053,55.30040308908546],[-122.53421069565631,55.300245022948225],[-122.53401812613548,55.300118580665455],[-122.53389996739162,55.29999981326502],[-122.53385633675278,55.29995599507373],[-122.5334108184524,55.29948728408989],[-122.53334792451687,55.299414900393444],[-122.53332995275116,55.29927985882225],[-122.5333349753207,55.2992216971146],[-122.5334408724389,55.29897910390603],[-122.53350032284115,55.29888545704654],[-122.53357057454117,55.29882686717812],[-122.53378088485078,55.29867911451329],[-122.53402790538452,55.298563775464494],[-122.53441383935714,55.29832672650439],[-122.53462422350526,55.2982238218274],[-122.53466601276676,55.29817453065648],[-122.53469626698913,55.29812155521758],[-122.53474011111172,55.29784247933317],[-122.53472711589198,55.297626851527724],[-122.53446782488977,55.29754115935484],[-122.5343398806781,55.29751293570181],[-122.5341284900204,55.297490239650415],[-122.5339949631429,55.297480920447796],[-122.5334057149707,55.29746453209447],[-122.53274014979372,55.297416867115274],[-122.53262629206928,55.29738567000295],[-122.53249079516445,55.29737629436271],[-122.53220511828951,55.297298832647954],[-122.53209487453094,55.29724867549913],[-122.53184256870918,55.29703647846926],[-122.53180730947075,55.296987286467925],[-122.53169046332805,55.29676204081884],[-122.53165692874342,55.29650996283626],[-122.53161236126394,55.296317000435266],[-122.53158106474656,55.29622195017141],[-122.53143599778592,55.29591183015425],[-122.53133923258576,55.29561426610716],[-122.53132254989289,55.2953043555418],[-122.53135143979974,55.295084286777644],[-122.53137300261884,55.2950176160129],[-122.53138114040893,55.29487769476737],[-122.5312679407483,55.29447316090449],[-122.53081513694747,55.29436413509034],[-122.53049972692934,55.294402444085584],[-122.53034760605468,55.29440269365488],[-122.53024571615951,55.294393129761836],[-122.5297382154024,55.294391331801656],[-122.52965286369027,55.294373258479496],[-122.5291137804473,55.29409700968556],[-122.5289122138458,55.29398376194842],[-122.52880032649986,55.29388422366748],[-122.52866184297974,55.293726764048614],[-122.52852789426316,55.29363109569299],[-122.5282270196127,55.29345565755224],[-122.52811679136406,55.29340549690537],[-122.52780901659949,55.293287045835896],[-122.5276150245752,55.293223338968545],[-122.52745569267127,55.29314714339069],[-122.52735458056479,55.29312862922341],[-122.52687586989707,55.2930681986203],[-122.52675941663861,55.29306719536085],[-122.52639336038904,55.293097355099846],[-122.52626027208964,55.29310597836056],[-122.52623100482235,55.293101798971286],[-122.52576854409362,55.29303621110411],[-122.52550578267468,55.29296834120831],[-122.52541448976531,55.2929276754752],[-122.52523907434544,55.292831968305066],[-122.52507651305183,55.29270186251762],[-122.52501797292435,55.29262511061219],[-122.52499418956735,55.292534752468235],[-122.52497520835794,55.29197811459166],[-122.5249596944683,55.29188350229127],[-122.5249240546871,55.29177038975723],[-122.52482225126246,55.29155452527379],[-122.52451360117921,55.29110416969561],[-122.5244578434748,55.29104094929007],[-122.52421898844429,55.29081117091617],[-122.52415134143455,55.29070277123543],[-122.52411585981761,55.29049660427052],[-122.52404853317647,55.29033888121609],[-122.52401012323386,55.290280629225634],[-122.52396709489307,55.290230096698416],[-122.52383736646065,55.290108753118886],[-122.5237216291478,55.29005394975983],[-122.52366791180916,55.29003563335012],[-122.52357142783883,55.29000939665758],[-122.5234549499891,55.28998596562558],[-122.52335307293336,55.28997639610564],[-122.52321879874647,55.289976013258894],[-122.52317299650878,55.28998034122771],[-122.52281375114116,55.29006898156033],[-122.5227746678453,55.29008695113587],[-122.52269501758452,55.29018563538897],[-122.52250522903212,55.29055257357917],[-122.52244134022482,55.290651697572635],[-122.52231788810222,55.29077718895193],[-122.52206978478299,55.29095077592161],[-122.52198334665778,55.29099096855366],[-122.52188466576438,55.291012880392024],[-122.52167690210555,55.291017171874984],[-122.52161649807121,55.29100763745419],[-122.5215651383946,55.29098490120077],[-122.52141025211829,55.290903215498254],[-122.52132129369392,55.29083570315472],[-122.52104204935556,55.29052518617311],[-122.52089743809351,55.29039333309186],[-122.5207839330321,55.29031280187776],[-122.52057969509792,55.290230858258134],[-122.52043111248857,55.290144862464395],[-122.52007083290847,55.28999465270812],[-122.51954701811431,55.28983987418782],[-122.5191574493902,55.289663056145876],[-122.51887463009453,55.28959909582578],[-122.51874620636046,55.289554023922214],[-122.5186738554566,55.28952285159053],[-122.51856711022278,55.28940999248352],[-122.51850064453868,55.289288167969545],[-122.5184713548109,55.28919316953056],[-122.51849039302951,55.2889963717862],[-122.51853293749313,55.28891571352321],[-122.51856175140125,55.28887951927193],[-122.51867619552065,55.288789657910755],[-122.51882580914874,55.28877253525559],[-122.51909196017708,55.28875530446593],[-122.51951673727284,55.288685323297315],[-122.51976383174221,55.288637286662876],[-122.51988702370463,55.288605970509394],[-122.52012497795465,55.28850386078244],[-122.52023870558261,55.288467795224555],[-122.52038237471736,55.288428080947675],[-122.52047236178466,55.28839247340685],[-122.52059942908798,55.28831641721971],[-122.52085698613408,55.28814758221885],[-122.52110246105482,55.28800419676706],[-122.52121285961462,55.28791534154972],[-122.52126692822131,55.287838367859756],[-122.52129124928267,55.28776280601971],[-122.5212943175059,55.28763619732025],[-122.5212795567975,55.28751021204658],[-122.52122571480415,55.28740219585824],[-122.521126461294,55.287294032929125],[-122.52105055979266,55.28725827802983],[-122.5208984985895,55.28721254822575],[-122.52052997388098,55.28713498624859],[-122.52030960174717,55.28712546852323],[-122.52010434452144,55.287146644674074],[-122.51998584145659,55.28714669854798],[-122.51986662832317,55.2871321570055],[-122.51956283495129,55.28699137103159],[-122.51943471268227,55.28687455187189],[-122.51940826208663,55.28683793489709],[-122.5193757727732,55.286779846606784],[-122.51929216237195,55.28658242379129],[-122.51929055209135,55.28648707761687],[-122.5193062510215,55.28644266855868],[-122.51938658395042,55.28626776460359],[-122.51941736535021,55.28623162519997],[-122.51952973292113,55.286142826523225],[-122.51962126663304,55.286089323887175],[-122.51975230003116,55.28603580332525],[-122.51993820642188,55.28598717886755],[-122.52036543932593,55.28593408212054],[-122.5205915865321,55.28592245860246],[-122.52066977892183,55.28590894550087],[-122.52076880353138,55.28586013602152],[-122.52096691678238,55.2857389736647],[-122.52119839196979,55.28552904741953],[-122.52139840764158,55.28536309003176],[-122.52147756710768,55.285269999068916],[-122.52151774351313,55.28512536622872],[-122.52151922872848,55.285062621133],[-122.52150088359873,55.284978019813046],[-122.52143318892696,55.284824769361094],[-122.52115488975981,55.284526611126566],[-122.52073042248412,55.28422885515725],[-122.52042383900725,55.284052114814756],[-122.52031364628785,55.28400194731493],[-122.52011693389282,55.28392469700302],[-122.51993917886438,55.28387936919662],[-122.519672190772,55.28383827561684],[-122.51953557934593,55.28384230770116],[-122.51938046200183,55.28385479216235],[-122.51892931458309,55.2839789729558],[-122.51858270950436,55.28405898346089],[-122.51843314405012,55.284098530493715],[-122.51799071352653,55.2841904370922],[-122.51785884711794,55.28420805428655],[-122.51774626288682,55.2842082712143],[-122.51741649391172,55.28413963066694],[-122.51715670786375,55.28410658133401],[-122.51686879678341,55.284033503439574],[-122.5168055314146,55.28401155326157],[-122.5164140612068,55.28383467166614],[-122.51632996965981,55.28377962433271],[-122.51602283564314,55.28354119154611],[-122.51592327619285,55.28348234778268],[-122.51585730434915,55.28342332203613],[-122.51574580842815,55.28327444887403],[-122.51564762764993,55.28306316117492],[-122.51551676356628,55.282864413588825],[-122.51549729663124,55.28281565782347],[-122.51560254015568,55.282626877313426],[-122.51582638733026,55.28230014342963],[-122.51594317691179,55.28220586580693],[-122.51601187258916,55.28216518158544],[-122.51624230684024,55.28205838505018],[-122.51648181347059,55.28196081133925],[-122.5165540303377,55.28190228623023],[-122.51674436933651,55.281643006827515],[-122.51670594852413,55.28156232796168],[-122.51660788572373,55.28144073973757],[-122.51649648146778,55.28135914128769],[-122.51603196670779,55.28111406493487],[-122.51574451635221,55.28114975238265],[-122.5157135988834,55.28100537501428],[-122.51528239564429,55.28092267909143],[-122.51514218431613,55.28087727290251],[-122.51484713949067,55.28075017277805],[-122.51469982622403,55.280695597833784],[-122.51450000611715,55.28063170530878],[-122.51430798086176,55.28050075892027],[-122.514223025504,55.28045577648136],[-122.5140283685763,55.28042342104733],[-122.51382192092778,55.28041315923331],[-122.51362797221272,55.28039539850357],[-122.51334603160389,55.280344902552216],[-122.51288212963617,55.28025231326875],[-122.51237078646112,55.28018306035238],[-122.51205529150872,55.280155167118096],[-122.51164903290446,55.28008100494625],[-122.51122411939224,55.27997156189922],[-122.51107005655659,55.27994930812018],[-122.51075152563644,55.27993365964533],[-122.51055563708782,55.27993826363411],[-122.51041354345908,55.279960070965565],[-122.51010615856472,55.28004339838942],[-122.50953141086437,55.28015847615916],[-122.5090254357583,55.28030014492868],[-122.50885483627233,55.280286394596345],[-122.5087778894405,55.280262935457515],[-122.50870792175148,55.28022733868139],[-122.50865064833508,55.28018200684492],[-122.50863486429228,55.28015914052307],[-122.50862050967218,55.28000625527438],[-122.50870979575546,55.27970603409826],[-122.50880876467784,55.27952156765273],[-122.50889747378243,55.279409691495005],[-122.50901013250615,55.27922672978326],[-122.50905107922227,55.279119121063935],[-122.5090561551289,55.278992567965794],[-122.50897732890174,55.27878630098628],[-122.50892000639486,55.27869611994341],[-122.50880898887705,55.27858761608408],[-122.50843494223867,55.27832486310687],[-122.50833382599512,55.278261484210056],[-122.50814698847432,55.27816206644352],[-122.5078685712578,55.27807129310094],[-122.5074480177851,55.27795747375157],[-122.50728810379567,55.27788908182189],[-122.50711980068728,55.27780363645861],[-122.50693457325022,55.27773117066311],[-122.50656035053372,55.27765228329698],[-122.50640272485616,55.277603014724804],[-122.50625896092832,55.27753058952521],[-122.50618987584322,55.27748492510459],[-122.50616531591021,55.277449479068295],[-122.50631282851818,55.27725180039998],[-122.5063644791822,55.2772027950246],[-122.50641574058542,55.27715826351289],[-122.50651356949699,55.27710046238203],[-122.50675990315929,55.27703785619848],[-122.5069398988975,55.277011510116225],[-122.5070922458905,55.27700793368213],[-122.507365060279,55.27702679518759],[-122.50750558914437,55.27702288688863],[-122.5077013418488,55.2769969815005],[-122.50796540021516,55.27693486992524],[-122.50887094925018,55.27651177319167],[-122.50898372724289,55.27644093486753],[-122.50904609679955,55.27638213813091],[-122.50906848974356,55.2763289482166],[-122.50906017128021,55.27628835198413],[-122.5088810883863,55.275986215695504],[-122.50883563865756,55.27594121517586],[-122.50869223986757,55.27584189423862],[-122.5083242538332,55.275691429918965],[-122.50826061734374,55.275673949312036],[-122.5078568440837,55.27566263012133],[-122.50736134946465,55.275616223098865],[-122.50723103816686,55.27559350882948],[-122.50716749956675,55.275574909193],[-122.50705851377208,55.2755113083583],[-122.50692219692588,55.27539872942432],[-122.50622003213664,55.27464128744021],[-122.50591784264104,55.27439287421042],[-122.50575356983806,55.27428399439717],[-122.5054739467664,55.27413936340331],[-122.50530456943345,55.27404379412976],[-122.50499368258421,55.27385007318421],[-122.50482703256307,55.273723186111205],[-122.50463195742398,55.27362801592813],[-122.50446184586248,55.273677059691714],[-122.5043995253391,55.27368988633355],[-122.50353784033354,55.2737453060327],[-122.50340559007756,55.27374495714045],[-122.50334521633037,55.27373541388505],[-122.50319716546541,55.273689773132084],[-122.50313599072774,55.27366675286296],[-122.50254164686534,55.273304735231434],[-122.50229644351424,55.27319582037084],[-122.50199276270014,55.27310095955494],[-122.501610468052,55.27286598197845],[-122.50125476339987,55.27273377952412],[-122.50111065753704,55.27268824694314],[-122.50082946161386,55.27251665170251],[-122.50054676506991,55.272316983508176],[-122.50048738310271,55.27220543711474],[-122.50046823435694,55.27183602306377],[-122.50054029668775,55.271711351781704],[-122.50065183772489,55.27147342690723],[-122.50081394161487,55.2712896191019],[-122.50099577993738,55.27115121367083],[-122.5012253693908,55.27100854341673],[-122.50132277998108,55.270932795602135],[-122.50132502462905,55.270703012051115],[-122.50133985203144,55.270555429782966],[-122.50144859403807,55.27028154732404],[-122.5008390411676,55.2701175455917],[-122.50063416706185,55.27004451718652],[-122.50043479129603,55.26995370366389],[-122.50012127220513,55.26983613698271],[-122.49997127003195,55.26979043707292],[-122.49979564666116,55.269721592834095],[-122.49951765623953,55.26958147774425],[-122.49934626556815,55.26950938817917],[-122.49914765513884,55.26938720023098],[-122.49882786476296,55.26918312102211],[-122.49869120250274,55.26907500700798],[-122.49860667785936,55.26891229839778],[-122.49851527067817,55.26864736655963],[-122.49849349113386,55.26851220962734],[-122.49849048724992,55.268229581526946],[-122.49851292827212,55.2681080011345],[-122.49853807962818,55.268045920803466],[-122.49879530703325,55.267880487070286],[-122.49922537416427,55.26765712408986],[-122.49926280671774,55.26756735877344],[-122.49927731080284,55.26749152459253],[-122.49911487388734,55.2671808696222],[-122.49903670863921,55.26708112748352],[-122.49887394637555,55.26695546170659],[-122.49875714007594,55.26691405686619],[-122.49857515606483,55.2668730618049],[-122.49832928132977,55.26684036085359],[-122.49766112552813,55.26680587502608],[-122.49704543716491,55.26675828573814],[-122.49674222609025,55.26668136297908],[-122.49650183441248,55.2666084491631],[-122.49635142143677,55.266522369466145],[-122.49604307452978,55.266300664767705],[-122.49593251618076,55.26618767571211],[-122.4957444502703,55.265922263841546],[-122.4954688138794,55.26559720570771],[-122.4949669401979,55.26515029500259],[-122.49463007886267,55.264825753849],[-122.49441807811162,55.264653847289026],[-122.49425141921589,55.26455048928259],[-122.49399761760222,55.264427859485565],[-122.49385942285987,55.26433763558141],[-122.4936888923918,55.26418819820042],[-122.49358228454166,55.264075317965194],[-122.49348754189668,55.264030044241345],[-122.49327080035098,55.263957789556365],[-122.49296926073428,55.263839419180705],[-122.49281927262795,55.26377128604552],[-122.49274030010302,55.263748880045874],[-122.49261211849532,55.26374751215896],[-122.49253041228425,55.26375642288155],[-122.49239113241171,55.26379174207227],[-122.49223168992974,55.26385452338971],[-122.49189049236892,55.26403215372983],[-122.49170821681864,55.264107745699185],[-122.49135427463791,55.26422783392866],[-122.49118018649217,55.264187049996835],[-122.49089674799058,55.2640422754681],[-122.48998058179546,55.26345809166841],[-122.48973623951403,55.26331777989668],[-122.48946582804508,55.263204762954025],[-122.48929928561002,55.263100279881606],[-122.48916145371483,55.262938303030005],[-122.48901176619816,55.26270871900894],[-122.48887396338415,55.2624335001887],[-122.48880866315223,55.26207399228075],[-122.48881050432591,55.26187222604918],[-122.48883181244737,55.261786493575826],[-122.48893786729845,55.26167960529046],[-122.48906687873377,55.26160363693574],[-122.48913794059578,55.26158097392495],[-122.48918252703851,55.26156765530404],[-122.48949812427513,55.26154740172561],[-122.49015442510026,55.26151320593742],[-122.4902613172916,55.261487067423936],[-122.49034653633252,55.261437893734055],[-122.49039618707974,55.261343990270944],[-122.49038235956621,55.261276327895445],[-122.49026466924417,55.26120013195541],[-122.4899260434251,55.261077344431314],[-122.48980492006844,55.2610178694077],[-122.48962925470332,55.26095012935274],[-122.48912400020639,55.26056588436302],[-122.48909914376175,55.26048894111246],[-122.48909591607979,55.260367759253164],[-122.48912582248703,55.26018360260904],[-122.48932649583193,55.25980692768191],[-122.48955794306436,55.259529786759614],[-122.48957607779224,55.25941257087525],[-122.48950571420445,55.2592917386769],[-122.48939598972053,55.25919222087308],[-122.48925468189697,55.25911535786594],[-122.48905419900923,55.25901552306304],[-122.48901511650327,55.25901105737439],[-122.48890387311282,55.258996708333484],[-122.48873571643819,55.25895608755897],[-122.48868047872959,55.25893322678712],[-122.48854872385162,55.25885999595568],[-122.48829480826237,55.258626349894],[-122.48821629549728,55.258531074862574],[-122.48802129209913,55.25836860491271],[-122.48789575345599,55.25831460925762],[-122.48779985771472,55.2582827526907],[-122.48767952799085,55.258214327976354],[-122.4875579985388,55.2581144753376],[-122.48742535507479,55.258028884783094],[-122.4866513834773,55.2575585619506],[-122.4865495585352,55.25748168850013],[-122.48653260957592,55.25744981623993],[-122.48649540725374,55.25728843290158],[-122.48650368063102,55.25712609044391],[-122.48652525868081,55.25699215377702],[-122.48672867834021,55.25658416642866],[-122.4870852171883,55.25611771144022],[-122.48725396922273,55.25585786663187],[-122.48740141123024,55.25568375378926],[-122.48747356943383,55.25553554714983],[-122.48754095390835,55.25530647851814],[-122.48731403602683,55.25523840964447],[-122.4872146152526,55.25522439235869],[-122.4870690369469,55.255219163504954],[-122.48691825044236,55.25522836328249],[-122.4866102236483,55.25532058023018],[-122.48649657250947,55.255379039639664],[-122.4862745416411,55.255593652511266],[-122.48622801775157,55.25565176378012],[-122.48610972163765,55.255853607112044],[-122.48603840008744,55.255924473001464],[-122.48599697371581,55.25594684924514],[-122.48585130769258,55.25596516204976],[-122.48527018296511,55.25597566706658],[-122.48508749171154,55.25596602459906],[-122.48485980359797,55.255929323500496],[-122.48461558419243,55.25590112491723],[-122.48440925820007,55.25586838979455],[-122.48399809807538,55.255830991006555],[-122.4834259565968,55.25569374061596],[-122.48328862080805,55.255639406702834],[-122.48319272403357,55.2555851219695],[-122.48303016665179,55.25548074180178],[-122.48280162415935,55.255296012157935],[-122.48237033273867,55.25492503780043],[-122.4822689037055,55.2548212624409],[-122.48214770212971,55.25474047382931],[-122.48210072938161,55.25469093422125],[-122.48199022133367,55.25453308365618],[-122.48196097636625,55.25450646926693],[-122.48172664684665,55.254342876958304],[-122.48165281110712,55.25430715381676],[-122.4815600734417,55.254261926695264],[-122.48145002091715,55.25423414961096],[-122.48138140576512,55.254206422362785],[-122.48128276303046,55.254161028124265],[-122.48107985655116,55.254044292515566],[-122.48097450584379,55.25396282945135],[-122.48093108075007,55.253917874488465],[-122.48090506884634,55.2538543510342],[-122.48086356365528,55.25369732856888],[-122.48086950853794,55.253561829308005],[-122.48090461847815,55.25349891238751],[-122.4810189579596,55.253432628944054],[-122.48123751948742,55.25334798814331],[-122.48135509948074,55.25326722019135],[-122.48150376290113,55.25314696684346],[-122.48169542804229,55.2530088679556],[-122.4818220446404,55.252892476074905],[-122.4818820469531,55.2528156865942],[-122.4819150882847,55.2527538322133],[-122.48191940649292,55.25272704504857],[-122.48191390784564,55.25254188893336],[-122.48184199216547,55.25239409842604],[-122.4817599718581,55.25231665893933],[-122.48155400750343,55.252167322190395],[-122.48140958582361,55.252081391467776],[-122.4809960283648,55.251869003973574],[-122.48075178782483,55.25172867472047],[-122.48067451061142,55.2516872474694],[-122.48051071183338,55.25161982850056],[-122.48015290421586,55.25149198421411],[-122.47994647876415,55.25139308629968],[-122.47958346304289,55.25103187961538],[-122.47948757325915,55.250955167430774],[-122.47922515667494,55.250616986407984],[-122.47913950225161,55.250536078522906],[-122.47906851720708,55.25046791888815],[-122.4789675172678,55.25040451632697],[-122.4784680774911,55.25020426622572],[-122.4783663035428,55.250172235371146],[-122.4782557744059,55.250150047708004],[-122.47797606670987,55.25012195221247],[-122.47778709064445,55.25007175652219],[-122.47764110828166,55.24998129196712],[-122.47757248715686,55.24990871339456],[-122.47751093959975,55.249800455909295],[-122.47754291486349,55.24977333022651],[-122.47764504734992,55.24971118949702],[-122.47775151622339,55.24966711090565],[-122.47808520602432,55.24957452141328],[-122.47828839833544,55.249484966513215],[-122.47844297865907,55.249409733145164],[-122.47857874887492,55.24930145213697],[-122.4788208867071,55.249150209925226],[-122.47894001826981,55.249029124511544],[-122.47897148465121,55.24896274146619],[-122.47897782711982,55.24882276855841],[-122.47892771248316,55.24876416885121],[-122.47872889171074,55.24869127160006],[-122.47852920666728,55.24867328928398],[-122.4783186108782,55.24868975574942],[-122.47819668481198,55.24870760936981],[-122.47762791232178,55.24884848677176],[-122.47752576619904,55.248865778250426],[-122.47690479578263,55.24890426557511],[-122.47679240819508,55.24890332707919],[-122.47666141636401,55.24888952847065],[-122.4765288485377,55.24887120023026],[-122.47645591719525,55.2488478326349],[-122.47600690653984,55.2486803934417],[-122.47577699856731,55.248624550763935],[-122.47549609924353,55.24852017257493],[-122.47515839675438,55.248343548265595],[-122.47502504021205,55.24831174136238],[-122.47496038253895,55.248306546681526],[-122.47472085216882,55.2483154603226],[-122.47453035019677,55.24839527787562],[-122.47436672233796,55.24850612932885],[-122.4742424586675,55.248618095568574],[-122.47399516003857,55.249030427910675],[-122.47386775384427,55.24917818396256],[-122.47373089198769,55.24929876270815],[-122.47346698475562,55.24945050009129],[-122.4733020627929,55.24953104067621],[-122.47303341445803,55.24962433930223],[-122.4726231449935,55.24971250316633],[-122.47237859435126,55.24975602823588],[-122.47218059542188,55.249808720701886],[-122.47188626588289,55.24994725936241],[-122.47169497903984,55.25010329397874],[-122.47160700739795,55.2501613466069],[-122.47144247156093,55.250237410969085],[-122.47139789180454,55.25025072323025],[-122.4710428153577,55.25029447645332],[-122.4709051303266,55.25028945191738],[-122.47042308171861,55.25025111788492],[-122.4702661026681,55.250218636159815],[-122.47005350467104,55.25010048512949],[-122.46993115206448,55.24996583209186],[-122.46982421235852,55.24958831001317],[-122.46967281836503,55.249379953378835],[-122.46957183250123,55.249294118589255],[-122.46936504800857,55.24917725230281],[-122.46922736046285,55.249127376678835],[-122.46906998737356,55.2490545179731],[-122.46874964494077,55.24899497560728],[-122.4686116639822,55.24894845462064],[-122.46858676151884,55.24891747502625],[-122.468605354417,55.24886306239312],[-122.46873070943052,55.24869394971278],[-122.46893112650879,55.248344206364486],[-122.46894421012193,55.248307577041494],[-122.4689311967846,55.248141266385375],[-122.46887085734821,55.24804200799364],[-122.46874654374307,55.2478848733651],[-122.46850197132093,55.247704144670614],[-122.46840257009735,55.24764526315433],[-122.46804365435575,55.24750838078232],[-122.46791739525312,55.24750816178427],[-122.46770512789524,55.24752119914225],[-122.46749610872499,55.247542176916575],[-122.46662745540812,55.24761506878592],[-122.46630319988995,55.247667531468615],[-122.46620971133277,55.2476760896717],[-122.46531546401144,55.24770339676558],[-122.46498254454006,55.24771973070808],[-122.46473238826286,55.247759717765526],[-122.46434583533981,55.24780255748967],[-122.46407442164882,55.2478598791309],[-122.46387169702119,55.24787654481451],[-122.4637213265469,55.24790366738909],[-122.46356436230323,55.247916026455904],[-122.46341133440654,55.247950921781786],[-122.46332611103328,55.24797765238042],[-122.46320929754258,55.24807188042075],[-122.46330633027463,55.24820245774534],[-122.46343456001932,55.24833728503123],[-122.4636968272569,55.24847367769853],[-122.46376542158539,55.248613537752824],[-122.46375794290451,55.248676114200435],[-122.4637437718168,55.248702621148745],[-122.4636470329757,55.24874808578587],[-122.46360048404351,55.24876133933822],[-122.463466052881,55.24878667207847],[-122.46333860883762,55.2487998696577],[-122.46321628220355,55.24879975773895],[-122.46275984530781,55.248806970301885],[-122.46248891621013,55.248791422471946],[-122.46240369150291,55.24877330320809],[-122.46235478179621,55.24872370024462],[-122.46233667894997,55.24852584899468],[-122.46237496243026,55.24847199666989],[-122.46247593478965,55.248378440359005],[-122.46246058521328,55.24826139605839],[-122.46242387859725,55.24823007961823],[-122.46222312216184,55.24815710009381],[-122.4621193974286,55.24814742464894],[-122.46190397599848,55.248151392770716],[-122.46133987514065,55.24835063406834],[-122.46107159957651,55.2484618577737],[-122.46093509706832,55.24855552410563],[-122.46077842056806,55.24863179821318],[-122.46061071888256,55.248743638106454],[-122.46053858023544,55.248778587582734],[-122.46030110549889,55.248853684882604],[-122.46018980018493,55.248862853270175],[-122.46007583887426,55.24885736999321],[-122.46000517901167,55.24885311806169],[-122.45988059232434,55.24881145295592],[-122.45954609367426,55.24875596881722],[-122.4594095910138,55.24880478424653],[-122.45930851643821,55.24885460727334],[-122.45916452960998,55.248943573999085],[-122.45895066791464,55.24904176519564],[-122.458738475236,55.24916579193112],[-122.45852461670381,55.2492191331633],[-122.45842876042221,55.24923210325402],[-122.45837158225599,55.24923159768464],[-122.45831588239452,55.24921431562716],[-122.45824729460145,55.24916415103456],[-122.45825005414758,55.2491328349739],[-122.4583483963837,55.248912507315225],[-122.45834803008309,55.24869273487285],[-122.45830189339459,55.248544540408574],[-122.45822386842653,55.24842234822686],[-122.45814022913804,55.24834148192496],[-122.45797304413105,55.24822347995485],[-122.45788939662137,55.24820988733213],[-122.45774856935729,55.248218213413544],[-122.45750597992452,55.248261765293336],[-122.45719625630853,55.248417772010576],[-122.45703367210544,55.24847144873454],[-122.45683644814717,55.24851516937004],[-122.45659936245357,55.24858578589378],[-122.45624938854739,55.24870588631721],[-122.45611130423757,55.24877259299832],[-122.45600127201394,55.248812067299376],[-122.45576527642507,55.24882553028604],[-122.45570495139363,55.24881596397963],[-122.45560831477682,55.24879303009639],[-122.45553303733675,55.24875164330756],[-122.45545727129492,55.24869342399958],[-122.45539105515724,55.24861641555297],[-122.45538712314193,55.248593878841696],[-122.45571930305242,55.24838469642711],[-122.45577057955646,55.248362610473436],[-122.45581359286241,55.24832234943486],[-122.45582511468179,55.24828119173453],[-122.45583223630722,55.24808854178833],[-122.45581102680902,55.2478367808603],[-122.45581536607396,55.24778756999776],[-122.45585131165168,55.247648438896675],[-122.45591884224964,55.24753151060353],[-122.45607269235536,55.24733070475329],[-122.45607397835953,55.24729374056428],[-122.45605813849902,55.24727198608432],[-122.45597302675044,55.24720789476723],[-122.45588269695013,55.2471582308859],[-122.4554989369689,55.24699033024553],[-122.45497241243068,55.246718572251076],[-122.45473418872746,55.2466232094483],[-122.45460322652723,55.24654211381201],[-122.4542858270657,55.24627070296962],[-122.45411356240807,55.2460763063904],[-122.45400188434499,55.24602266912138],[-122.45392465090032,55.245958800688754],[-122.45381585081053,55.245805455035935],[-122.45367705854493,55.245567161865175],[-122.45360849361907,55.24547214551198],[-122.45351817611778,55.24540005531242],[-122.45327604439562,55.245237303746016],[-122.45292823200673,55.24506481253126],[-122.45283555380938,55.244997139457254],[-122.45272635975489,55.24487069117807],[-122.45277174699815,55.24478116436759],[-122.45292492307632,55.24454334221203],[-122.4531284762279,55.24431592545786],[-122.45334431733879,55.24412810193903],[-122.45347729771125,55.24396258427157],[-122.4534794194249,55.243737275845405],[-122.45353467646613,55.24351348150937],[-122.4535161972321,55.24343222580003],[-122.45345786534183,55.24335544066583],[-122.45335534479436,55.2433099122035],[-122.45312697921148,55.24323725135712],[-122.45298500146174,55.24319171934458],[-122.45282255493161,55.243154573698384],[-122.45265646887827,55.243113960381656],[-122.45246007425483,55.243081452844976],[-122.45227469800739,55.24305822898357],[-122.4521551464925,55.243049214896764],[-122.45176194473986,55.24305594545231],[-122.45148583264111,55.243077225623296],[-122.45123972646243,55.243116179365494],[-122.45095337893062,55.24314165148899],[-122.45056674983202,55.24320799147277],[-122.45031710835813,55.24321993284188],[-122.44997910619804,55.24322711090869],[-122.44951604373423,55.24322062932963],[-122.44942059398572,55.24322911878984],[-122.44908642870566,55.24323752514124],[-122.4487713744082,55.24318592883576],[-122.44846607015685,55.24311330633493],[-122.44816007526273,55.2430485120417],[-122.44801416791383,55.24300286204056],[-122.4478623484385,55.24297946797531],[-122.4476363491697,55.24292480414929],[-122.44739066225726,55.242892002781616],[-122.44708415839088,55.24287764716576],[-122.44701675431132,55.242881329176456],[-122.4469248361371,55.242916827374565],[-122.44672354733811,55.24307366106914],[-122.44659961898311,55.24318112599612],[-122.4464614905588,55.24335994498426],[-122.4463943538668,55.243427545215255],[-122.44617024541064,55.24355233177024],[-122.44602348948357,55.24365017444199],[-122.4459319642133,55.243681198227215],[-122.44575010973475,55.243707399944775],[-122.44560929572101,55.24371571230069],[-122.4454531334391,55.24371910118159],[-122.44532138809022,55.243691792381306],[-122.44526147893656,55.24365532273484],[-122.4451731484391,55.243583282703],[-122.44510894870072,55.243461475818584],[-122.44495502196416,55.24288188052757],[-122.44482068135213,55.2427277962924],[-122.44474061065226,55.242673931743774],[-122.44466574109262,55.24265048933587],[-122.44457265527322,55.24265455762024],[-122.44441441962103,55.242681432004694],[-122.444294542336,55.242743039447085],[-122.44425034697112,55.24277429291432],[-122.44416141858846,55.24293209031903],[-122.44407182920939,55.24303044277776],[-122.44396098776033,55.2431237029899],[-122.4438374367594,55.24324911609963],[-122.44375180364283,55.24330273157819],[-122.4436732724862,55.24332067006583],[-122.4434990041957,55.24332802407642],[-122.44338418138427,55.24331016669389],[-122.44322921920786,55.2432777071592],[-122.44310538246722,55.24318334715661],[-122.4430545467228,55.24311125579209],[-122.44303807942514,55.242985205563016],[-122.44304541690236,55.24267931498637],[-122.44307431080406,55.242553439918794],[-122.44306334024472,55.24245445670181],[-122.44304989571225,55.24238343393696],[-122.4429258677259,55.24209060757903],[-122.44282141731973,55.2420001649996],[-122.44276308496394,55.24196822407391],[-122.44264158247961,55.24193672000644],[-122.44241882741271,55.24191241274422],[-122.44219599721673,55.24184437429395],[-122.44201225209896,55.241735966674106],[-122.44195237271408,55.24165464623539],[-122.44180256575477,55.241564027237466],[-122.44177297285277,55.24151945251218],[-122.44174071918934,55.2414826504357],[-122.44172538434542,55.24145530205866],[-122.44171033444722,55.241447023031746],[-122.44158462591585,55.24137391145254],[-122.44155344939263,55.24134723134522],[-122.44150811411716,55.24130220642767],[-122.4414458603276,55.241247727750746],[-122.44144547652658,55.24122977681523],[-122.44141470845013,55.241176198404276],[-122.4413844232325,55.241139452504825],[-122.44135324702371,55.24111277234796],[-122.44132296190996,55.24107602643376],[-122.44129020168249,55.24106724092702],[-122.44122874061881,55.24100381480975],[-122.44116638865925,55.24095045441084],[-122.44107305905477,55.24086817692156],[-122.44105800951041,55.240859897816115],[-122.4409637892009,55.24078768599295],[-122.44084005190757,55.24071462994145],[-122.44080925990075,55.240705900585795],[-122.4407146569292,55.24061573763846],[-122.4407001152896,55.24057944180818],[-122.44066973215101,55.240543814152744],[-122.4406066884748,55.24049828238785],[-122.44057551327855,55.2404716020376],[-122.44053027911042,55.24042545835119],[-122.4404521865404,55.24037164733778],[-122.44035796846156,55.24029943505905],[-122.44032717687708,55.24029070558461],[-122.44021841815062,55.24018219732635],[-122.4401104523082,55.240064741649405],[-122.44004820232574,55.240010262279036],[-122.43995398581818,55.23993804969664],[-122.43992319459791,55.2399293201225],[-122.43986094507852,55.23987484065908],[-122.43979907878057,55.23983831210332],[-122.43967287030705,55.23979321527997],[-122.43954796306053,55.23971115433298],[-122.43943987472842,55.239639665692984],[-122.43934534962807,55.239593232496645],[-122.43926726025799,55.23953942074371],[-122.43920460252713,55.2395118392125],[-122.43911115418534,55.2394755278752],[-122.43900186489397,55.23943988443204],[-122.43897117332878,55.2394300362083],[-122.43886160072464,55.239375323287106],[-122.43873618734251,55.2393212782],[-122.4385634492802,55.2392669998896],[-122.43851770953512,55.23924887214655],[-122.43843772550503,55.23923873434394],[-122.43818801999917,55.23922934521652],[-122.43812416034677,55.23923760870858],[-122.43807683536735,55.23923737542637],[-122.43793562486421,55.239272577358946],[-122.43787166599392,55.239281959135326],[-122.43777780873474,55.23927254505177],[-122.43769899977232,55.23927141040976],[-122.43766820955149,55.239262680278635],[-122.43761970963462,55.2392534431867],[-122.43744904022125,55.2391981012458],[-122.43740054043256,55.239188864068616],[-122.43700768599251,55.23916976820955],[-122.4369138291972,55.23916035347512],[-122.43685234840497,55.239141774404295],[-122.4367730589008,55.23912380664249],[-122.43674157509457,55.23912290517222],[-122.43666346036903,55.23911394098519],[-122.43644457587403,55.23906842954548],[-122.43639607647223,55.23905919197736],[-122.43638112770518,55.23904979389545],[-122.43633421457406,55.23902266170284],[-122.43623997682214,55.23899529551256],[-122.436131583684,55.238949583840686],[-122.43609882632144,55.23894079697004],[-122.43605229488043,55.23893161562035],[-122.43598922845351,55.238930930719626],[-122.4358787382716,55.2389311300817],[-122.43584725463616,55.23893022838536],[-122.4358011045254,55.238938997891374],[-122.43576872848995,55.23894816188358],[-122.43575336790623,55.23896566197238],[-122.43575216265594,55.2390015075144],[-122.43576828574709,55.239019909325485],[-122.43579856424032,55.23905665658441],[-122.43581478652891,55.23907393997748],[-122.43589277122607,55.239128872305145],[-122.43590702584642,55.239146099330746],[-122.43593809776904,55.239173899258944],[-122.43595339726767,55.23924609754037],[-122.43593518400947,55.23940703618635],[-122.43591642896754,55.239640840689475],[-122.43591557457651,55.23973948638371],[-122.43588316730217,55.23979349960479],[-122.43575525378567,55.239945690202234],[-122.43570672266705,55.239981301564114],[-122.43567631355016,55.23999052189154],[-122.4356440358013,55.23999856744006],[-122.43555055855074,55.24000710262927],[-122.43532967144087,55.240006382065516],[-122.43529808780559,55.240006598642005],[-122.43526729754308,55.23999786791686],[-122.4351885186262,55.23995188248707],[-122.43517436320207,55.23993353696659],[-122.43515814084199,55.23991625348892],[-122.43514360446767,55.23987995701209],[-122.43512754424401,55.23977185672192],[-122.4351283691056,55.239718060231],[-122.43511462623036,55.23967281645871],[-122.43508386777485,55.239619236490405],[-122.43506853816586,55.23959188729783],[-122.43500629574189,55.23953740540963],[-122.43491247026002,55.23948313996932],[-122.4348493355791,55.239438723705504],[-122.43480331567507,55.239401525233724],[-122.43474173630419,55.239384063532036],[-122.43466295918972,55.23933807777194],[-122.43464791153669,55.239329797893014],[-122.43463140809128,55.23929344498268],[-122.43458532143325,55.23921251564543],[-122.43456999231809,55.23918516639228],[-122.43452428660036,55.239122187986695],[-122.43450975108469,55.23908589143803],[-122.43449445423741,55.239013692980144],[-122.43446490350847,55.238924267331946],[-122.4344351036866,55.23877092311791],[-122.43440396618996,55.238699392031904],[-122.43438901802188,55.238689993711134],[-122.43437410216289,55.23863574619422],[-122.43429643427442,55.23855503308821],[-122.43426660294634,55.2384465380317],[-122.43421972441838,55.23837455585044],[-122.43418896814694,55.238320975666504],[-122.43414326400722,55.23825799712526],[-122.43409714690657,55.23822191680649],[-122.43406687059533,55.2381851691363],[-122.43394108693975,55.238113168272],[-122.43386348726368,55.23807618568108],[-122.43375461975329,55.23801363939978],[-122.43361230208671,55.2379501343713],[-122.43356539210473,55.23792300113817],[-122.43328638055674,55.237777090312036],[-122.43320671524194,55.23774116932599],[-122.4330813145489,55.23768711855177],[-122.43303557906965,55.237668988797736],[-122.43300489031556,55.23765913910517],[-122.43297213468641,55.237650351412974],[-122.43289322980509,55.237650332139886],[-122.43283016544021,55.23764964563976],[-122.43279975742634,55.237658865263164],[-122.43278322226152,55.23766736130312],[-122.43275281422348,55.237676580915135],[-122.43272012372702,55.23771152393792],[-122.43270386915404,55.23773908933444],[-122.43270424902191,55.237757040291974],[-122.43268723139138,55.23788213293508],[-122.43270055689074,55.23795427520284],[-122.43271626414183,55.23799957564131],[-122.43274781210137,55.23804420891129],[-122.43276155175903,55.238089452939214],[-122.43276027566881,55.23821499683461],[-122.43275852043563,55.23832370818252],[-122.43274146861246,55.238493650031764],[-122.43273988080188,55.23851154458489],[-122.43272321189326,55.238566008220616],[-122.43267464555895,55.238646467591224],[-122.4326272870574,55.238691081432414],[-122.43256297866186,55.2387710895021],[-122.43251590043866,55.238834772670224],[-122.4324362295783,55.23893228036285],[-122.43241959456525,55.23894189476478],[-122.43238797723379,55.23898695979835],[-122.43233940972102,55.23906741904078],[-122.43232321900226,55.23913871517652],[-122.43232121667911,55.23918350796007],[-122.43230364907731,55.23938146640501],[-122.43228707847085,55.239434811576736],[-122.43227037391915,55.23953412435242],[-122.43223509606219,55.23973157507674],[-122.4322346470096,55.239803322510184],[-122.43215445987165,55.23992884667529],[-122.43212087369469,55.23997385522976],[-122.43209042891307,55.24002792388001],[-122.43207306367279,55.240090216299286],[-122.432071440632,55.24015296004487],[-122.43207182024051,55.240170911007546],[-122.43202363025432,55.24026932109699],[-122.43199201143626,55.24031438603443],[-122.43195959843175,55.24036839823706],[-122.43194264740927,55.240403792403335],[-122.43190940508686,55.24051160106594],[-122.43184578723134,55.24058377991284],[-122.43181309358506,55.24061872270522],[-122.43179763137346,55.24063734071729],[-122.43178226841766,55.24065484031855],[-122.43178068009519,55.24067273486231],[-122.43176601201303,55.240682405598726],[-122.43171747647501,55.24071801540823],[-122.43170290763368,55.2407265677282],[-122.43166973503894,55.24074467792766],[-122.43162358193649,55.2407534458869],[-122.43145091103887,55.2407428884984],[-122.43140358432781,55.24074265268057],[-122.43135705187446,55.24073346957557],[-122.43132508836625,55.24071573417893],[-122.43129429842325,55.24070700247119],[-122.43123047081791,55.240670413229175],[-122.4311847327815,55.240652282791366],[-122.43104278899139,55.240606725780246],[-122.43099705111193,55.240588595273614],[-122.43093360306922,55.240569956846386],[-122.43080819661337,55.24051590377198],[-122.43077740693548,55.240507171936585],[-122.43069901115206,55.24047913463265],[-122.43062168955531,55.240461219390724],[-122.43044746794781,55.24042370594074],[-122.43036935209943,55.240414737805445],[-122.43030707792894,55.24040510276484],[-122.43010193105829,55.24040482447942],[-122.4300388624237,55.24040413656559],[-122.43000686258668,55.24043125003035],[-122.42999187761403,55.24046670037993],[-122.42997482549917,55.24050321268632],[-122.42997399373088,55.24055700914612],[-122.42998969892821,55.24060230993746],[-122.43002124590387,55.24064694390678],[-122.43006736212898,55.24068302574134],[-122.43009932505676,55.24070076146063],[-122.4302242530329,55.24073798268815],[-122.430364644175,55.24075658595788],[-122.43044313957367,55.240783505064925],[-122.43052242952149,55.240801476858515],[-122.43063002685471,55.240856140682794],[-122.43067773268791,55.24087432776263],[-122.43072384976236,55.240910409354754],[-122.43083379454404,55.240983080408604],[-122.43092602930486,55.24105524346098],[-122.4309413566555,55.241082593166446],[-122.43102019618173,55.2411723120799],[-122.43103510845904,55.24122656000893],[-122.43105002077655,55.24128080793632],[-122.43106534829741,55.24130815762702],[-122.43109572350815,55.24134378762697],[-122.43112689309359,55.24137047035152],[-122.43115796343112,55.241398271476825],[-122.43128136951118,55.24149711697751],[-122.43131361361868,55.24153392176193],[-122.43134277996297,55.24160539720842],[-122.4313581078065,55.241632746863736],[-122.4313584871107,55.241650697830686],[-122.43135762150172,55.24174934350849],[-122.43132520648953,55.24180335555188],[-122.43130984288302,55.24182085509629],[-122.43129320640651,55.24183046934992],[-122.43124625767302,55.24184818443966],[-122.43121397754801,55.241856228841286],[-122.43113544362593,55.24187415942229],[-122.43107157832743,55.241882419299905],[-122.4309299732966,55.24189966232858],[-122.43088371940986,55.24190954842283],[-122.43063133609084,55.2419079165677],[-122.43055359626739,55.24191689951641],[-122.43041081751788,55.24192513825006],[-122.43022150513858,55.24192419328982],[-122.4298606905193,55.241921692157774],[-122.42957751667358,55.24191132609678],[-122.42951514104006,55.241902809066445],[-122.42948365522196,55.241901905761345],[-122.42923242184675,55.241820694785886],[-122.42920252561439,55.24180189689687],[-122.42903141761363,55.24168486164118],[-122.42895184771145,55.24164781951615],[-122.42890493656128,55.2416206845201],[-122.42885919849257,55.241602553227075],[-122.42879565048581,55.241585032116],[-122.42876495978277,55.241575181375794],[-122.42871763210846,55.2415749445374],[-122.42865366742923,55.241584321581804],[-122.42857523225848,55.24160113214155],[-122.42852907749928,55.24160989895479],[-122.42848085550736,55.24161972768467],[-122.42844857501278,55.241627771369444],[-122.42841736805974,55.24164593717697],[-122.42838695601438,55.24165515572588],[-122.42830814265052,55.241654015141584],[-122.4282919225464,55.241636730767546],[-122.42826248304722,55.24154618522406],[-122.42827746994571,55.24151073507967],[-122.42827868193055,55.24147488960331],[-122.42831030581978,55.24142982560453],[-122.42834314156181,55.24134891612122],[-122.42836051312015,55.24128662421607],[-122.42839293169594,55.24123261294648],[-122.42839217574198,55.241196710995744],[-122.42840885160324,55.241142247928934],[-122.42839459948624,55.24112502004262],[-122.4283162432162,55.24105213203675],[-122.4283001227191,55.241033729258305],[-122.42827012813844,55.24101604955284],[-122.42825321272446,55.241006594018145],[-122.42819163374001,55.24098912907593],[-122.42811361666959,55.24097904111939],[-122.42808165439605,55.24096130489016],[-122.42803553963279,55.24092522231972],[-122.42798825214949,55.240880136003945],[-122.427926812342,55.240816703325024],[-122.42784873587009,55.24076288440884],[-122.42777113668376,55.24072589801477],[-122.42775453949692,55.24069066259534],[-122.42773921446187,55.24066331249855],[-122.42774130135399,55.24052882138565],[-122.42775756045387,55.24050125663112],[-122.42779035690735,55.24046519649788],[-122.42783810058249,55.24043853546598],[-122.42786920748227,55.240421488211055],[-122.42790120875206,55.240394375295594],[-122.42794777949122,55.240358710493],[-122.42794978674168,55.24031391777583],[-122.42796608505815,55.24024150379651],[-122.4279498656704,55.24022421937975],[-122.42795145567892,55.24020632488543],[-122.42792038847746,55.2401785229628],[-122.42788763190784,55.24016973393182],[-122.42784189594694,55.240151602267225],[-122.42777882774794,55.240150913209135],[-122.42769991796551,55.240150890645914],[-122.42751140909874,55.2401409943214],[-122.42744754580741,55.24014925233991],[-122.42726020962834,55.24014835936817],[-122.42718209502505,55.24013938923406],[-122.42713476904895,55.24013915179426],[-122.4269616252346,55.24011175561039],[-122.42689935234914,55.24010211886613],[-122.42685085389327,55.240092877580466],[-122.42682086065084,55.240075197527325],[-122.4266947653927,55.24002896914834],[-122.42660053184105,55.24000159566282],[-122.42646135863173,55.23994714269704],[-122.42641286046324,55.23993790124088],[-122.42611395936957,55.23992707526379],[-122.42606850198455,55.23992801233329],[-122.42578417086638,55.23990863390437],[-122.4257526866926,55.23990772965628],[-122.42570615649473,55.239898544440706],[-122.4256119239211,55.23987117020758],[-122.42558113586433,55.239862437088156],[-122.42553460575797,55.239853251808476],[-122.42543878229688,55.239843771907346],[-122.42532918458456,55.23983389627612],[-122.42526770811328,55.239815311486154],[-122.4252349524188,55.239806521757814],[-122.42514310724115,55.239752305481545],[-122.42509540524016,55.239734116283664],[-122.42504849892207,55.23970697983925],[-122.42501653901016,55.239689242825214],[-122.4250020118667,55.23965294516571],[-122.4249410406978,55.23951776361409],[-122.42490950024305,55.239473128361915],[-122.42487843570964,55.2394453256821],[-122.42481737936053,55.23939984245994],[-122.42478621548595,55.239373158160674],[-122.4247396861269,55.239363972584464],[-122.42466077788956,55.239363948095786],[-122.42462929416725,55.23936304356382],[-122.42448769524279,55.23938027926516],[-122.424456112041,55.23938049309255],[-122.42443947493588,55.23939010642876],[-122.42440757160423,55.23941610004978],[-122.42436099881814,55.2394517635261],[-122.42434314623164,55.23949722228228],[-122.42430988429616,55.23960502890863],[-122.42429451847799,55.23962252758483],[-122.42429405526718,55.23969427498866],[-122.42427653506587,55.23980253391708],[-122.4242760718209,55.2398742813218],[-122.42427565213382,55.23990117953131],[-122.42429017871164,55.239937477276214],[-122.4243358258436,55.240045308636546],[-122.42435072869083,55.240099557360836],[-122.42436610722388,55.24017063866672],[-122.42436367635915,55.24024232953609],[-122.42434741503881,55.24026989384704],[-122.42428430316407,55.24031405221645],[-122.42425309534991,55.2403322169788],[-122.42422151139962,55.24033243074667],[-122.42417418521396,55.24033219218187],[-122.42412765488558,55.24032300637636],[-122.42408112457844,55.240313820553446],[-122.42401847605326,55.2402862313816],[-122.42386281126832,55.24019542119036],[-122.42383164741061,55.24016873665061],[-122.42379899123294,55.240158828141716],[-122.42376820334958,55.24015009457405],[-122.42372087738107,55.24014985583705],[-122.42350078569496,55.24014016707546],[-122.42345425574239,55.24013098101847],[-122.42342356745628,55.24012112896327],[-122.42339160793175,55.24010339153182],[-122.42337549006723,55.24008498811735],[-122.42331316321061,55.24003161878665],[-122.42328289538715,55.23999486849041],[-122.42326709847309,55.23995068525787],[-122.42323725113428,55.239887036744655],[-122.42322272552454,55.239850738877095],[-122.4231754446972,55.23980565073792],[-122.42300515881114,55.239679660005805],[-122.42295825396629,55.23965252277434],[-122.42287986529713,55.239624480551],[-122.42286285221947,55.23961614268702],[-122.42278483914755,55.23960605139382],[-122.42261324753437,55.23960560393295],[-122.42256592221318,55.239605364757146],[-122.42251780069225,55.23961407277546],[-122.4224700544702,55.23964073176618],[-122.42235872034188,55.23969471554051],[-122.42224786066944,55.239765531806086],[-122.42220011408882,55.23979219069373],[-122.4221689057385,55.23981035493313],[-122.42205846658278,55.23985427282855],[-122.42199567451921,55.239872650235995],[-122.42194675622243,55.23989030524268],[-122.4218683215522,55.23990711157694],[-122.42179016228958,55.239942987256285],[-122.42167882641267,55.23999697042403],[-122.42156758978957,55.24004983509176],[-122.42153558452598,55.24007694637909],[-122.42142509721009,55.24016571290909],[-122.4213922952961,55.2402017713655],[-122.42137561032698,55.24025623348883],[-122.42134365750107,55.24032707552256],[-122.42124754659584,55.24049810758214],[-122.42119900197133,55.24053371329199],[-122.42116672089243,55.24054175508891],[-122.42113710454664,55.240542024662766],[-122.42102660986933,55.24054221084947],[-122.42096354117508,55.24054151834042],[-122.42090009785515,55.24052287480237],[-122.42085356805379,55.24051368777364],[-122.42080666368783,55.24048654973012],[-122.42077470502672,55.24046881162661],[-122.42074443919299,55.24043206071228],[-122.42071407383743,55.240396428190884],[-122.42065152269197,55.240279138933964],[-122.42060663415576,55.24020720821667],[-122.42055977801542,55.24013522088579],[-122.42052988708751,55.240116420917744],[-122.42048223452855,55.240053380757765],[-122.42046798619131,55.24003615196619],[-122.42045149526814,55.23999979717575],[-122.42043659771514,55.23994554798535],[-122.42042212246577,55.23986440059701],[-122.42042334139927,55.2398285552017],[-122.4204238115138,55.23975680781168],[-122.42042512614519,55.23963126403],[-122.420427141734,55.239586471436745],[-122.42047620371075,55.23943426944883],[-122.42047555443585,55.23939724905538],[-122.42046055749195,55.239344118270104],[-122.42046257302688,55.23929932567727],[-122.42046351706738,55.239244410886734],[-122.42046276822603,55.2392085088935],[-122.42049589278967,55.239146670889305],[-122.42052874238193,55.239065763480546],[-122.42056079521889,55.23899380326268],[-122.42061018280612,55.23890440141543],[-122.42062649376068,55.23883198840465],[-122.42064476798973,55.23867105200802],[-122.4206607042845,55.23858068799889],[-122.42072508355713,55.23845583688748],[-122.42072630217808,55.238419991493124],[-122.42072762036861,55.23838302769883],[-122.42072729335086,55.23832022751524],[-122.4207127185281,55.23824019857051],[-122.42073062216741,55.2381498911507],[-122.42073146624413,55.238096094762724],[-122.4207481511894,55.23804163273465],[-122.42078005579522,55.23801564005368],[-122.42082663009289,55.23797997792034],[-122.42107829144729,55.237989458442925],[-122.42112678604197,55.23799870197484],[-122.42117172006141,55.2380257833045],[-122.4212504791866,55.238071777592154],[-122.42131242548223,55.23810719695449],[-122.4213293380462,55.238116653429714],[-122.42136012384431,55.238125387598956],[-122.42148625367444,55.23812677218321],[-122.42151666463383,55.23811755532175],[-122.42156558096411,55.238099900486304],[-122.42158174376588,55.23807345494376],[-122.42164537606365,55.23800128135377],[-122.42164500112715,55.23798333036236],[-122.42166116382991,55.237956884809705],[-122.42166121030138,55.23791203562178],[-122.42166205312893,55.23785823922857],[-122.4216479046087,55.237839892174094],[-122.42163141351956,55.237803537545894],[-122.42161726503254,55.23778519048797],[-122.42160104936217,55.23776790524779],[-122.42156919205696,55.237749048951144],[-122.4215234616949,55.23773091496984],[-122.42147656012098,55.23770377718434],[-122.42141302148664,55.23768625231205],[-122.42133580894497,55.23766721290915],[-122.42125573283491,55.23765818247456],[-122.42116188325338,55.23764875587133],[-122.42108297838195,55.23764872911609],[-122.42073874037472,55.23763770707456],[-122.42065983552526,55.237637680051186],[-122.42051749211178,55.23761900924901],[-122.4204071050371,55.23761807648627],[-122.42036174970791,55.23761789307317],[-122.42032857457201,55.23763600024762],[-122.42028200023105,55.23767166219385],[-122.42024919932585,55.23770772034234],[-122.42023223912369,55.237743112907395],[-122.42021644986471,55.237787509269566],[-122.42019924571255,55.2379585677917],[-122.42019765234528,55.23797646218393],[-122.42014943594683,55.23807486766156],[-122.42008617509188,55.238164991483856],[-122.42005374783751,55.23821900057861],[-122.42002067165846,55.23823598927242],[-122.4199902602669,55.23824520576869],[-122.41991093163875,55.23827207646253],[-122.41987865211688,55.23828011792427],[-122.4198174550641,55.238280599842845],[-122.41969132480924,55.23827921356851],[-122.4196112478503,55.238270182076334],[-122.41954977640937,55.23825159446643],[-122.41944050777465,55.23821593386371],[-122.41940865112721,55.23819707701381],[-122.41934590949202,55.238170603895156],[-122.41929980576118,55.238134518098356],[-122.41925210831971,55.23811632666485],[-122.41922104874298,55.238088522576966],[-122.41919068650505,55.23805288969043],[-122.41914383540662,55.23798090183858],[-122.41912931417764,55.237944603498896],[-122.41911441916815,55.237890354158836],[-122.41911404536178,55.237872403159976],[-122.41906916225898,55.237800471901636],[-122.41903762966406,55.23775583516844],[-122.41900577356971,55.237736978216226],[-122.4189438298745,55.23770155770764],[-122.41891277083096,55.23767375354375],[-122.41883630647392,55.23760203461621],[-122.41880445059567,55.23758317761264],[-122.41874171031522,55.23755670419088],[-122.4186633286677,55.237528659318315],[-122.41858484750028,55.237501732794684],[-122.41847605490696,55.23748290394948],[-122.41836636569926,55.23747414059147],[-122.41834945410166,55.237464683714286],[-122.4182556056524,55.23745525492134],[-122.41822402392857,55.23745546716835],[-122.41809949059548,55.23743618491583],[-122.41790982636299,55.23741727024281],[-122.41778519364755,55.23739910607375],[-122.4176274845441,55.237397929837186],[-122.41742315038549,55.23738868349018],[-122.41712427064937,55.237377835942],[-122.41701468169497,55.23736795299658],[-122.41688845472159,55.23736768228089],[-122.41679460684094,55.23735825238702],[-122.41666917735577,55.237349034275184],[-122.41654384761357,55.23733869764049],[-122.41624486879205,55.23732896637854],[-122.41619754618652,55.23732872478305],[-122.4160887551781,55.23730989385284],[-122.41591446106489,55.23727347848063],[-122.4158064679844,55.23724570013577],[-122.41571145069263,55.23722726558541],[-122.41561802886208,55.23719093663015],[-122.41557033420371,55.23717274378791],[-122.41552460720024,55.23715460760481],[-122.41550929182485,55.23712725601103],[-122.41546202284103,55.237082164953456],[-122.41544670753576,55.23705481335202],[-122.41543129253569,55.23702858014446],[-122.41543177151861,55.23695683278851],[-122.4154343712241,55.236839174534346],[-122.41545266531415,55.23667823892405],[-122.41545229315258,55.236660287915896],[-122.41550168922561,55.23657088811014],[-122.41551678522498,55.23653432111934],[-122.41558112393729,55.236454321866745],[-122.41561355577267,55.2364003139438],[-122.41570984719776,55.23633805404764],[-122.4157410557706,55.23631989143141],[-122.41577226431525,55.23630172880727],[-122.41581958571044,55.23630197056439],[-122.41592996906809,55.236302907392975],[-122.41599223344625,55.23631254961854],[-122.41610191897041,55.23632131506684],[-122.41619613676053,55.236348696487376],[-122.41629115219975,55.23636713066671],[-122.41638420015065,55.2363855081099],[-122.41647804566644,55.23639493831224],[-122.41663495336039,55.23640506317644],[-122.41668227488229,55.23640530460573],[-122.41673039382859,55.23639659884421],[-122.4167938806054,55.236370395319405],[-122.41684172638212,55.236342620114485],[-122.41687246198192,55.236307624607825],[-122.41695221331128,55.236253857675955],[-122.41698342125802,55.23623569474846],[-122.41704770496561,55.236200543920226],[-122.41709465335965,55.23618283419003],[-122.41718934734044,55.23613846750107],[-122.41729988127328,55.236093435538436],[-122.41734879699297,55.23607578236187],[-122.41741228286094,55.23604957852246],[-122.41745843366384,55.236040815832375],[-122.41760161829227,55.23600569377034],[-122.41766440632827,55.23598731858345],[-122.41771215139902,55.235960661442256],[-122.41774335877537,55.235942498324704],[-122.41777446647579,55.235925453596835],[-122.41780647097141,55.23589834328436],[-122.4178234325296,55.2358629510545],[-122.41787095445304,55.235772375276],[-122.41787254876769,55.2357544809165],[-122.41788998479147,55.23564734131975],[-122.41789003546343,55.23560249214097],[-122.4179055021748,55.23558387586263],[-122.41795329720847,55.23551236945141],[-122.41798520161426,55.235486377491355],[-122.41800183864721,55.23547676501993],[-122.4180338426328,55.23544965465001],[-122.41808121349816,55.23540504636958],[-122.41811232063996,55.23538800155798],[-122.41814549491981,55.23536989497687],[-122.41817670164241,55.2353517317516],[-122.41828633562115,55.23531676449514],[-122.41835029275282,55.23530739277923],[-122.41842909340332,55.23530853966367],[-122.41847561663242,55.23531772759456],[-122.41852213988275,55.23532691550805],[-122.41856983368787,55.23534510721731],[-122.41871015086774,55.23540857279362],[-122.41877241452818,55.2354182136286],[-122.41881973490236,55.2354184542458],[-122.41894515886239,55.23542767019044],[-122.41903979963563,55.23542815127548],[-122.41913406661868,55.23541068129304],[-122.41919802370218,55.23540130914168],[-122.41929308738744,55.235374891851],[-122.41930765692848,55.23536634098605],[-122.41937273403198,55.235322241771385],[-122.41940473697106,55.23529513104942],[-122.41942099966674,55.23526756739413],[-122.4194517322023,55.235232571253775],[-122.41945215506522,55.23520567307003],[-122.41950154046627,55.235116271687666],[-122.4195008921577,55.23507925130107],[-122.41950211176689,55.235043405927726],[-122.4195182746971,55.235016960658974],[-122.41950216064133,55.23499855675035],[-122.41942527743954,55.23495373638216],[-122.41937838051751,55.23492659781213],[-122.41933068684294,55.234908406413076],[-122.41922152708536,55.23487162722857],[-122.41911157066409,55.234843795135546],[-122.41908078786462,55.23483506041268],[-122.41900151478399,55.23481708134381],[-122.41890767235661,55.23480765304406],[-122.41882966959871,55.23479755927723],[-122.4187819763251,55.23477936766814],[-122.41859434167901,55.234715661490945],[-122.4184850834924,55.23468000005952],[-122.41835981174363,55.23462481607852],[-122.4183298263076,55.23460713398805],[-122.4182510773017,55.23456113786548],[-122.41821912447297,55.234543399114145],[-122.41812650368517,55.234498124866576],[-122.41804882587971,55.2344622508307],[-122.4179853934947,55.23444360581664],[-122.41784385975755,55.23441598478359],[-122.41773390553416,55.234388151475144],[-122.41768658637803,55.234387910445385],[-122.41757690577862,55.23437914639414],[-122.41751464401231,55.23436950496208],[-122.41749970139757,55.234360104617664],[-122.41746695184052,55.23435131285005],[-122.41745280646599,55.23433296532377],[-122.4174358964032,55.234323508324884],[-122.417436320604,55.234296610149805],[-122.41743754202851,55.2342607647988],[-122.41747024299141,55.2342258257971],[-122.41748491215535,55.234216156749085],[-122.41750224634023,55.23419871556624],[-122.41754919219875,55.234181005667324],[-122.41762771715936,55.23416308366298],[-122.41772315210137,55.23415461857143],[-122.41777009781123,55.23413690858935],[-122.41788089917706,55.23411094551283],[-122.41791130792737,55.234101729534466],[-122.41792784476655,55.23409323547132],[-122.41795984770165,55.23406612512307],[-122.41800641992751,55.234030464054825],[-122.41803884655442,55.23397645551003],[-122.41807286724658,55.2339045525974],[-122.41808706320343,55.23387805087968],[-122.41810534411259,55.233805694863065],[-122.41810576786045,55.233778796686664],[-122.41810661535449,55.23372500033416],[-122.41809129952942,55.23369764906488],[-122.41806014453093,55.23367096309411],[-122.4179820951194,55.23361713802261],[-122.41785720057455,55.23357990453675],[-122.41769945767426,55.23353499761713],[-122.41760524544897,55.23350761733952],[-122.41751060920961,55.23350713516452],[-122.41744951903776,55.23350649752245],[-122.41730639448873,55.23349677023157],[-122.41716603471284,55.23347815225386],[-122.41708793530809,55.23346917579396],[-122.41704061723642,55.233468934518754],[-122.41699409647235,55.23345974605314],[-122.41694677841234,55.23345950474238],[-122.41691412937456,55.233449594433466],[-122.41688334811856,55.2334408591683],[-122.41675755810935,55.23341369014855],[-122.41669529803309,55.23340404830762],[-122.41664877742288,55.23339485971295],[-122.41653919943187,55.23338497635201],[-122.41635072500623,55.23337506314138],[-122.41627145602142,55.23335708233664],[-122.41613109721158,55.233338463192794],[-122.41598877110665,55.23331978722064],[-122.4159265113599,55.23331014499551],[-122.41569071957075,55.23329998906959],[-122.41561182323007,55.23329995884814],[-122.41556530298756,55.23329076984882],[-122.41551878276631,55.233281580832106],[-122.41545498128345,55.23324498352733],[-122.41537810593964,55.23320016066635],[-122.41536279216882,55.23317280906262],[-122.41533046964099,55.23313711856824],[-122.41533211850043,55.23307437507551],[-122.41533386706311,55.2330105131878],[-122.4153339740977,55.23292081485009],[-122.4153355694275,55.23290292052688],[-122.41535173423601,55.23287647580309],[-122.41538336584351,55.23283141511603],[-122.41544610362705,55.23276931027878],[-122.41549427183143,55.23271575582902],[-122.41554253960938,55.23266108296548],[-122.41558990995375,55.23261647564197],[-122.41565381688362,55.23256337454029],[-122.41570155922395,55.232536718176604],[-122.41574850393604,55.232519008958725],[-122.4158598270792,55.23246503112225],[-122.41593824975361,55.232448228581084],[-122.41601794192854,55.23243931143007],[-122.41609566668654,55.23243033755981],[-122.41614298353136,55.23243057919398],[-122.41642608719927,55.23244097578953],[-122.41647340405855,55.23244121729806],[-122.4164899405189,55.232432723426925],[-122.41652034831961,55.23242350778942],[-122.41655235087505,55.232396397806134],[-122.41660168716702,55.23235184675961],[-122.41660131453295,55.23233389576065],[-122.41666489905082,55.2322179939754],[-122.41669732601768,55.23216398578709],[-122.41673134757453,55.232092083250585],[-122.41674596841386,55.23203868352094],[-122.41673102684413,55.23202928308591],[-122.41666999095507,55.23198379589521],[-122.41662309935211,55.231956656293605],[-122.41660619048282,55.23194719918367],[-122.41657541044279,55.23193846384337],[-122.416355790284,55.231901864294905],[-122.41627742131307,55.231873817932524],[-122.41621426660448,55.23187424141508],[-122.41618278893169,55.23187333474847],[-122.41604243533777,55.23185471550672],[-122.41585279837716,55.23183579770898],[-122.4157597611884,55.231817419875],[-122.41571207283438,55.23179922709427],[-122.41563519996596,55.23175440439688],[-122.41554179090899,55.231718075399115],[-122.41547836401092,55.23169942911179],[-122.4154148374688,55.23168190118735],[-122.41532100319263,55.231672470187064],[-122.41511600065692,55.23167104882433],[-122.41500759736574,55.2316701679602],[-122.4149594836981,55.23167887305308],[-122.4148809623966,55.23169679337161],[-122.41486442589905,55.231705287028646],[-122.41481668399061,55.231731943069725],[-122.41469036624407,55.23182136845578],[-122.41453044877862,55.231955797497214],[-122.41449844521155,55.231982906959864],[-122.41446813701066,55.23199100370911],[-122.41443655955509,55.231991214995524],[-122.41424809217494,55.231981298603664],[-122.41421651472582,55.231981509834334],[-122.41415425747412,55.231971866724066],[-122.41410656966286,55.23195367332832],[-122.41406047775243,55.231917585608876],[-122.41404356950177,55.231908128150934],[-122.41402815738776,55.2318818947797],[-122.41399870211391,55.23183619509736],[-122.41399912858586,55.23180929693895],[-122.41399838564983,55.23177339492686],[-122.41401572029356,55.2317559542323],[-122.41403081583701,55.23171938743476],[-122.4140469810275,55.231692942882624],[-122.41409514980545,55.231639388978266],[-122.4141599547933,55.231576223100134],[-122.41427080613805,55.23150541407688],[-122.41430280947878,55.23147830467361],[-122.41431860278617,55.231433909082014],[-122.41431982690074,55.231398063769205],[-122.4142725659789,55.23135297227914],[-122.4142407171857,55.231334114117075],[-122.41419340164153,55.231333871760164],[-122.41394295291182,55.231333381184726],[-122.41383258323111,55.23133244259535],[-122.41375289276384,55.23134135834712],[-122.41369020994046,55.23135861316201],[-122.4136756406568,55.23136716336718],[-122.4136120599903,55.231394483686394],[-122.41359552334919,55.231402977174746],[-122.41354895025549,55.231438636586496],[-122.4135157771483,55.23145674193788],[-122.41350040974802,55.23147423927167],[-122.41348334648161,55.23151074929474],[-122.41346718099393,55.231537193773384],[-122.41346712539811,55.2315820429368],[-122.41348158364433,55.23166319108312],[-122.41347987637567,55.2317707837088],[-122.41346361102391,55.23179834658118],[-122.41343250468792,55.23181539022699],[-122.41336892314821,55.231842710422995],[-122.4133219781779,55.231860418743004],[-122.41325812511678,55.23186866948076],[-122.41311697475548,55.23185899408943],[-122.413022342447,55.231858508503684],[-122.4129758244621,55.231849318537975],[-122.41289772915313,55.231840339451246],[-122.41277284482692,55.231803100871396],[-122.41272595606273,55.23177595980272],[-122.41264871569949,55.231713184252094],[-122.41261596935628,55.2317043912105],[-122.41258529014965,55.231694536491275],[-122.41253760337634,55.231676342495085],[-122.41242756052263,55.2316496229002],[-122.41241262010612,55.23164022194721],[-122.41239767969655,55.23163082099259],[-122.41238273929397,55.231621420036056],[-122.41238316684374,55.23159452188361],[-122.4123985347757,55.23157702468763],[-122.41241353193553,55.231541576479145],[-122.41244596406275,55.231487569400734],[-122.41252693746544,55.23139796002737],[-122.41262205261012,55.23132669867437],[-122.41265405691937,55.2312995896952],[-122.41273337664839,55.23127272363751],[-122.41278032119214,55.23125501554024],[-122.41281259649745,55.23124697592243],[-122.41290648541387,55.23121155965037],[-122.41293769127638,55.23119339774353],[-122.41295512589988,55.231174838804264],[-122.41300169921446,55.231139179615305],[-122.413050239759,55.231103577125396],[-122.4131453532813,55.23103231537418],[-122.41320926092104,55.23097921553336],[-122.41320968791152,55.230952317379256],[-122.41322595309526,55.23092475454185],[-122.4132105418908,55.23089852107134],[-122.41319523046896,55.230871169205685],[-122.41314834250569,55.23084402829791],[-122.41308534516611,55.2307984826394],[-122.41300730797911,55.23074465446141],[-122.41296158943446,55.23072651734593],[-122.41288162878499,55.23071636313888],[-122.41263118391417,55.23071586992523],[-122.41245893184269,55.23072323722531],[-122.41242655710326,55.23073239514391],[-122.41223809611358,55.2307224757109],[-122.41211189001609,55.23072220015431],[-122.41208121168161,55.23071234531147],[-122.41204926462834,55.23069460498226],[-122.41200317600472,55.23065851650461],[-122.41197165684291,55.23061387800624],[-122.41195671691737,55.23060447699935],[-122.41194103592058,55.230559173969525],[-122.41192615333426,55.23050492379957],[-122.41191191204051,55.23048769404147],[-122.41192743686166,55.2304242293537],[-122.41195976894515,55.23037134079853],[-122.41197768872479,55.23028103469013],[-122.41199385468663,55.23025459040729],[-122.41205791956753,55.23015552360966],[-122.41209035105499,55.23010151662931],[-122.41210651687067,55.230075072332184],[-122.41218674690104,55.22994956117068],[-122.41220174364095,55.22991411299201],[-122.41220296959472,55.229878267703924],[-122.41222009031368,55.22979690870341],[-122.41222051795273,55.22977001055509],[-122.41218936988759,55.229743323123394],[-122.41211223405206,55.22967942885684],[-122.4120496102867,55.22965183368712],[-122.41201883299125,55.229643097222],[-122.41187689236483,55.229642367564814],[-122.41176562917705,55.22965149267307],[-122.4117194844616,55.22966025324953],[-122.41165563456269,55.22966850316433],[-122.4116390982179,55.229676996391795],[-122.41154601020993,55.22970346456905],[-122.41146589431916,55.22973927700209],[-122.4114343186146,55.22973948752723],[-122.4114040114868,55.22974758352933],[-122.41132512211347,55.22974755059205],[-122.41127663971285,55.229738303249455],[-122.41118403779376,55.22969302385483],[-122.41115326065473,55.22968428717575],[-122.41112178480884,55.22968337923004],[-122.41090095481098,55.22968261534432],[-122.41085364122856,55.22968237171848],[-122.41080749627918,55.22969113195699],[-122.41079085991969,55.229700743463155],[-122.41074391631356,55.229718450808406],[-122.41064806173428,55.22975380869185],[-122.41056884343962,55.22977955502706],[-122.41050526317231,55.22980687375685],[-122.4104268433768,55.22982367287333],[-122.4103328556766,55.2298602056631],[-122.41025363697088,55.229885951798046],[-122.41017511707223,55.22990386914694],[-122.4101278032341,55.229903625245306],[-122.410079690623,55.2299123284517],[-122.41001663877597,55.22991163040024],[-122.40995551383763,55.22986725831648],[-122.40992409741754,55.22982150091189],[-122.40989215202227,55.22980376003035],[-122.40984649557858,55.22974077261658],[-122.4098303880583,55.22972236746387],[-122.40978510137248,55.2296773310435],[-122.40969053403602,55.22963199377044],[-122.40964364988,55.229604851545524],[-122.40956635855142,55.22958692324808],[-122.40953488281748,55.22958601490131],[-122.4093464279089,55.22957609109277],[-122.40920448756735,55.229575358389376],[-122.40917211301078,55.229584515461],[-122.40910980022703,55.22961971898547],[-122.4090615273582,55.22967438934327],[-122.40898181781067,55.229771881961575],[-122.4089498122428,55.22979898999389],[-122.40891700760129,55.22983504513652],[-122.4088850019395,55.22986215315226],[-122.40880652057271,55.229923800404194],[-122.4087753138304,55.22994196127417],[-122.40874293888125,55.22995111823449],[-122.40866414899736,55.229949965221806],[-122.40861843331287,55.22993182651274],[-122.4085856892997,55.22992303241252],[-122.4085557116614,55.22990534797494],[-122.4084777821558,55.229850398572516],[-122.40843016063121,55.22978735385061],[-122.40841592108809,55.22977012369359],[-122.4083994452586,55.229733767335745],[-122.40841614342494,55.22967930699407],[-122.40841657360511,55.229652408859046],[-122.4084027643045,55.229608280565756],[-122.40838745664102,55.2295809281116],[-122.40834057342329,55.22955378539615],[-122.40829209194187,55.22954453689164],[-122.40824557771178,55.22953534516052],[-122.40807296108635,55.22952475537294],[-122.40804255354172,55.22953396894585],[-122.40797817271363,55.22957023349745],[-122.40791505965878,55.22961438353633],[-122.40789889127407,55.229640827288364],[-122.40788342221812,55.22965944231555],[-122.40786565527166,55.22970378028671],[-122.40786559343611,55.229748629441616],[-122.40784754095475,55.229928633265196],[-122.40783057312487,55.22996402412058],[-122.40781590319146,55.22997369202826],[-122.40779856662873,55.22999113185737],[-122.40778399658848,55.229999681372455],[-122.40773588335573,55.23000838367325],[-122.40768777010217,55.230017085955495],[-122.4076561941599,55.2300172955226],[-122.40756236558356,55.23000785867721],[-122.40750011297965,55.22999821224166],[-122.40746816851266,55.22998047073808],[-122.40742128544952,55.22995332767576],[-122.40737600119974,55.22990829037863],[-122.40735989474223,55.22988988490611],[-122.40733034857546,55.22984530204186],[-122.40732998009993,55.22982735101857],[-122.40729973454668,55.22979059686697],[-122.40725285181834,55.22976345374152],[-122.40715748771267,55.22972706165226],[-122.40709593514416,55.22970958629616],[-122.40706525880992,55.22969973021835],[-122.40698636953411,55.229699694532385],[-122.40673486328038,55.22968906715359],[-122.40660866046161,55.229688786019615],[-122.40651280232012,55.22972414071949],[-122.40648239426767,55.229733353911584],[-122.40641971083197,55.229750605064524],[-122.40637239719685,55.22975035973602],[-122.4062785695439,55.22974092192355],[-122.40623008831092,55.229731672616104],[-122.40616816818196,55.22969624577493],[-122.40609067407541,55.22961439675229],[-122.40607536798099,55.22958704401387],[-122.40607659938128,55.22955119878714],[-122.40607746286554,55.22949740253382],[-122.40607789460681,55.22947050440729],[-122.40610953392037,55.22942544608742],[-122.40612607132869,55.22941695359448],[-122.40626813828598,55.22932799150136],[-122.40631551498626,55.22928338771683],[-122.40642690526803,55.22918456917367],[-122.40646007969126,55.22916646571384],[-122.40645971161011,55.229148514688795],[-122.40647428162353,55.22913996532927],[-122.40647471309578,55.22911306720207],[-122.4064943070915,55.2289600185351],[-122.40647853293989,55.22891583321068],[-122.40646402640472,55.22887953341915],[-122.40644872033602,55.22885218072805],[-122.40643251477984,55.22883489352468],[-122.40641720874952,55.228807540829806],[-122.40637032776152,55.2287803973741],[-122.40626242767934,55.22870776162036],[-122.40623048478223,55.22869001980096],[-122.4061533604258,55.22862612184821],[-122.40605843175376,55.228562830795056],[-122.4059815758189,55.22851800214932],[-122.40587207778185,55.22846326025617],[-122.4058255653541,55.22845406762184],[-122.40576134839763,55.22844436348763],[-122.40568442875579,55.22844438380827],[-122.40563631692837,55.228453085296856],[-122.40558857276628,55.2284797377936],[-122.40549381954145,55.228568944786296],[-122.4054763826063,55.228587502677314],[-122.40546058066228,55.22863189713793],[-122.40542844452965,55.22874870256339],[-122.40541110746007,55.228766142058504],[-122.40537866808593,55.22882014729386],[-122.40534666084802,55.22884725439821],[-122.40530008340339,55.228882910718085],[-122.40525153868161,55.22891851018093],[-122.40518879117013,55.22898060986425],[-122.40515641617836,55.22898976589143],[-122.40512600837023,55.22899897875179],[-122.40509373333244,55.22900701637601],[-122.40504632059523,55.22900788893022],[-122.4048886447484,55.22900669656356],[-122.40477828166034,55.229005749949515],[-122.40474830637832,55.228988064596585],[-122.40471636392618,55.228970322388335],[-122.4046541790224,55.22891582538019],[-122.40460729909732,55.228888681260464],[-122.40459199428702,55.228861328341125],[-122.4045624519415,55.228816744823476],[-122.40456288468799,55.22878984670355],[-122.40457928591188,55.22867258670046],[-122.40458051861668,55.228636741490845],[-122.40459562156252,55.22860017584553],[-122.40464416648052,55.22856457663916],[-122.40470888135725,55.228502534080356],[-122.40474088875057,55.22847542714065],[-122.40477092892978,55.22844826334562],[-122.40483441095421,55.22842206593299],[-122.40486678556255,55.22841290998983],[-122.40499214954463,55.22837840921923],[-122.405024524082,55.22836925323507],[-122.40505573129731,55.228351093307246],[-122.40510267581102,55.2283333881081],[-122.40511921298308,55.22832489574945],[-122.40513548264555,55.22829733397432],[-122.40516788678505,55.22819959804252],[-122.40520192558785,55.22812769867746],[-122.40521739529532,55.228109083985444],[-122.40520199038916,55.22808284952929],[-122.40517174809018,55.228046094865455],[-122.40507768711683,55.227929006826514],[-122.40504697762604,55.227875419491966],[-122.40497108904012,55.22777567559867],[-122.40495498453586,55.227757269817936],[-122.40493957993537,55.227731035329995],[-122.40490853826115,55.22770322769472],[-122.40486165957695,55.22767608367315],[-122.40484545517596,55.22765879626475],[-122.40481478095593,55.22764893963405],[-122.40475243267012,55.22764041021278],[-122.40459556213698,55.22763027038491],[-122.404532881168,55.227647520585386],[-122.40443782604848,55.227673926593845],[-122.40439088201147,55.22769163154154],[-122.40437344494785,55.22771018927689],[-122.40434143791562,55.22773729612066],[-122.40429362793225,55.22780879726608],[-122.40427745789356,55.22783524054446],[-122.4042466178091,55.227871351306476],[-122.40423008063928,55.2278798435489],[-122.40419850635584,55.22788005223914],[-122.40396274934183,55.22786987411156],[-122.40391543793264,55.227869627849515],[-122.40388466376592,55.227860889375144],[-122.40385282260371,55.227842028561184],[-122.4038284499668,55.22782786873004],[-122.39999950948803,55.22959975902007],[-122.37927491644787,55.2391864524701],[-122.3791348566317,55.23916443652294],[-122.37891129580618,55.239127656418006],[-122.3787468657621,55.23909147531048],[-122.37859312747175,55.239024208777494],[-122.37839271725912,55.23892755131569],[-122.37826405577279,55.23886662063613],[-122.3781938193361,55.238814118045156],[-122.3781154577667,55.23874231685601],[-122.37807509175335,55.2387086243399],[-122.37803492732588,55.238672695079586],[-122.37780576423131,55.23858865528604],[-122.37737847675264,55.238492119760956],[-122.37701914631688,55.23836392227123],[-122.37685788944098,55.23822691398243],[-122.37678972004888,55.23812961872743],[-122.37671373309635,55.238053400490884],[-122.37664208895576,55.238016554131605],[-122.37661474416595,55.2380135153172],[-122.37648175387307,55.23800067247199],[-122.37614958094163,55.237965209645786],[-122.37584293526349,55.23790918467443],[-122.3757608429263,55.23779129987539],[-122.3757272316932,55.23763894543331],[-122.37555882354488,55.23758133929246],[-122.37533775197059,55.2376264798616],[-122.37517136879309,55.23767769831899],[-122.37502940051169,55.23767692665954],[-122.37485902562653,55.23761926225517],[-122.37465676664786,55.23756515390604],[-122.3744141995154,55.23754238854228],[-122.37416235027888,55.23753505045749],[-122.37381257598307,55.23749794705893],[-122.37339333155906,55.237421815069936],[-122.37317079457542,55.23737384104818],[-122.37313805225752,55.237365037623114],[-122.37302771734142,55.237341638289145],[-122.37272446096556,55.23727000593024],[-122.37242988317074,55.23718965537831],[-122.37232373680867,55.23714170883707],[-122.37231500911606,55.23712912006767],[-122.37229725100322,55.2371072976097],[-122.37221925681874,55.23700971305992],[-122.37198189333462,55.236863751186824],[-122.37166174208743,55.23678265307001],[-122.37146080230893,55.236757731643415],[-122.37136600838349,55.23673702654538],[-122.37132529592465,55.23672911150417],[-122.37126283973276,55.23672168366923],[-122.37112632414875,55.23670424691368],[-122.37099011153293,55.23668345492918],[-122.37081036223074,55.23664233086364],[-122.37056750240932,55.23657918229532],[-122.37034245196647,55.23651543141579],[-122.37016194823184,55.23646082871288],[-122.370023417533,55.23642202713795],[-122.36984720148116,55.236385489911335],[-122.36964157412554,55.236346973047425],[-122.36949053235472,55.23631565497698],[-122.36927385622114,55.23629027078529],[-122.36896501076916,55.236258832771114],[-122.36881159831809,55.23623192989705],[-122.36880650389281,55.23622281078717],[-122.36879581000052,55.23621016435663],[-122.36863195883325,55.236145953539186],[-122.36832483726808,55.23605177106325],[-122.36811473012507,55.23595369161315],[-122.36799871210457,55.23584041725082],[-122.36794060230677,55.23578489838676],[-122.36790579391584,55.23577715451538],[-122.36783183808032,55.235766025310575],[-122.367745316887,55.235784804542945],[-122.36754851008082,55.235845216537406],[-122.36727880478705,55.235904621337156],[-122.36710581484449,55.23591975439998],[-122.36702318057374,55.235917341798164],[-122.36698983443091,55.235915246896816],[-122.36691900506925,55.235913178889824],[-122.36677174711822,55.23590551534348],[-122.36670101885213,55.23590232885618],[-122.36666762555161,55.23587892765121],[-122.36660694363975,55.235830060852805],[-122.36657572007131,55.23580448036108],[-122.36653618207654,55.23571810647386],[-122.36636201487458,55.235528004826506],[-122.36599164887348,55.23539160233579],[-122.36557122802856,55.23532886429611],[-122.36523373638241,55.235308914405195],[-122.36495606889517,55.23532547185092],[-122.36479266939352,55.23532181957338],[-122.36472572993138,55.23529855905946],[-122.36468739216922,55.235286225910784],[-122.3645615305419,55.23526012252662],[-122.36422157620778,55.2352019733942],[-122.36381927164449,55.235135273413356],[-122.36351761111231,55.23506814955871],[-122.36334842193905,55.235019473747876],[-122.36330221513411,55.23500691016637],[-122.36322619339404,55.23499683907829],[-122.36301139457731,55.23497261985075],[-122.3626729064561,55.234920115765],[-122.3622465037506,55.234814581532675],[-122.36186732126752,55.23471042645014],[-122.36158784702539,55.23470337593888],[-122.36137131770322,55.23474189665362],[-122.36128716797417,55.23475625552348],[-122.36120273979974,55.23468650781815],[-122.36106510339862,55.234572594115605],[-122.3609970667485,55.23451790268006],[-122.36089806320305,55.234609197384515],[-122.36069601869632,55.23479278982347],[-122.36059701379159,55.234884084290435],[-122.36048161402383,55.23480782361467],[-122.3601824188885,55.23462638968396],[-122.35985728881171,55.2344699864217],[-122.35964945259317,55.234303558205],[-122.35956497018375,55.2341037353882],[-122.35952368405299,55.23401506502404],[-122.3593948497196,55.23400008236142],[-122.35902418757189,55.233954475784486],[-122.35856777219169,55.23389738794485],[-122.35831610849084,55.233866474903],[-122.35809375309384,55.2338386618234],[-122.35770362287812,55.23379023877072],[-122.3573486021581,55.23374620628139],[-122.35721200137435,55.233729872626576],[-122.35713795093216,55.23371985542155],[-122.3568943615447,55.233686933209015],[-122.35650382886362,55.23364297979066],[-122.35612483869347,55.23362403210244],[-122.35585182333809,55.23363285604672],[-122.35568605871201,55.233633607590335],[-122.35548924074308,55.23358523273506],[-122.35519186373149,55.23347111815035],[-122.3549500808655,55.23335302489615],[-122.3548732727356,55.2333081647011],[-122.35487055473395,55.2332946292731],[-122.35486481456758,55.23327091345623],[-122.3548600278466,55.2332584387388],[-122.35481362293234,55.23324810870228],[-122.35471158487037,55.233220450309936],[-122.35462467722532,55.23319996302753],[-122.35453987916054,55.23319972119636],[-122.35441027877184,55.23321498636444],[-122.3543184632298,55.233226873260385],[-122.35429455102067,55.23322953656501],[-122.35426670414239,55.23323208457494],[-122.35420677148574,55.23324042032179],[-122.35414249849883,55.233253114129134],[-122.35408952242243,55.2332717455198],[-122.3540543537289,55.2332897773793],[-122.3540316989114,55.23330032670216],[-122.35398851893487,55.233297940075815],[-122.3538534827009,55.233286133769916],[-122.35368137146327,55.23326987685489],[-122.3535004379739,55.233242147963495],[-122.35318836358937,55.23318142088459],[-122.35282968300919,55.23311259893779],[-122.3526432546466,55.23308022241892],[-122.35254196838147,55.233066040054936],[-122.35242413196097,55.2330603429714],[-122.35237081135358,55.233061022446165],[-122.35231966098573,55.23305952288527],[-122.35221155975975,55.23305523232374],[-122.35216040940519,55.23305373269739],[-122.35212299081941,55.23303133058544],[-122.35205032402475,55.23298434731987],[-122.35201300703275,55.232960826830904],[-122.35198173290716,55.232957667248144],[-122.35184473108829,55.232945801083225],[-122.35160800518031,55.232924282704836],[-122.35134353417469,55.232904192889144],[-122.3511220398079,55.232888726833615],[-122.35102190990918,55.23288354767477],[-122.35093697218039,55.232863115515684],[-122.35078459974973,55.2328250070117],[-122.3507113646032,55.23280603924164],[-122.35066282966855,55.232819192861484],[-122.35054361176502,55.23285045701796],[-122.35044674466978,55.23287452742255],[-122.35042252787787,55.23288054501186],[-122.35035709907207,55.23288423241732],[-122.35022810721763,55.23289278317654],[-122.35016454416561,55.23289764653219],[-122.35014174859555,55.2328880072713],[-122.35010656474383,55.2328410010182],[-122.35010438067329,55.232778142995414],[-122.35011282059637,55.23275035756535],[-122.35006018627206,55.232786938432],[-122.3499102151815,55.23287448719384],[-122.34974697990006,55.23295604005007],[-122.34957600149298,55.23299251269504],[-122.34939151814979,55.233003919806954],[-122.3493103505296,55.233007144884816],[-122.34925133108537,55.233005413169906],[-122.3490351296017,55.23299682662607],[-122.34878341501465,55.23298831888298],[-122.34855096740168,55.23298486135116],[-122.34815926913322,55.232975608080935],[-122.34769695103981,55.232962037959034],[-122.34737512498957,55.23294362000738],[-122.34710400599184,55.23290987008888],[-122.34684126472617,55.2328707589309],[-122.34673261989036,55.23285074909338],[-122.34671450769882,55.23285470257421],[-122.34664952164734,55.23287522089198],[-122.34658412905478,55.232900212534474],[-122.34656137087907,55.232911878837506],[-122.34652823153382,55.23290754177884],[-122.3464598839371,55.23289992820621],[-122.34637837497716,55.23288520017223],[-122.34627447795758,55.232856358758596],[-122.34612604457023,55.2328183600972],[-122.34590129335515,55.23277363461469],[-122.34565625981477,55.23273504095063],[-122.3455116963815,55.232719581677635],[-122.34539138641948,55.23271941185002],[-122.34511505021506,55.232721386653004],[-122.3447395359044,55.23272941780869],[-122.34449800084282,55.23273914158641],[-122.34442656816113,55.23274377081554],[-122.34438878283972,55.232747145951436],[-122.34426691223601,55.23274244388511],[-122.34409066923548,55.23272829478532],[-122.3440084496616,55.23272139356341],[-122.34392768894848,55.23272014178279],[-122.34372583633014,55.23268393443514],[-122.34356492213664,55.23260968343555],[-122.34349233288613,55.232540270621286],[-122.34341031430831,55.2324660953345],[-122.34329844695364,55.23237310151402],[-122.34316928152933,55.232275113864226],[-122.3430714242406,55.232201594128504],[-122.34300643513647,55.23215707354974],[-122.34303580541757,55.232072716013896],[-122.34318608852669,55.23185174653975],[-122.34329152760652,55.23155993673281],[-122.34319031032744,55.2313932482277],[-122.34296051701428,55.23136070350628],[-122.34283027328085,55.2313613604222],[-122.34266855394425,55.23136109195339],[-122.3423390101387,55.23136261755749],[-122.34213194290561,55.231362136549336],[-122.34210233280433,55.23136238733034],[-122.34182519109835,55.23124322753916],[-122.34126697819907,55.23100479040885],[-122.34098984142912,55.23088562876167],[-122.34097325610117,55.23087280638357],[-122.34096236883808,55.23086239423885],[-122.34084725486974,55.23080518494286],[-122.34062574429508,55.23070335701582],[-122.34051799109965,55.23065197053096],[-122.34036153424469,55.23057223945524],[-122.33976260661781,55.23030456420401],[-122.33901757584385,55.23001688805178],[-122.33840314343678,55.23002796066839],[-122.33807177139767,55.23011464195283],[-122.33697968380324,55.22958798584919],[-122.32885550801842,55.22628053988178],[-122.32726597325698,55.22537243307339],[-122.32034731545484,55.222701014049335],[-122.31345165746761,55.22064885062042],[-122.30785019863218,55.221003010784315],[-122.30455289444537,55.221003769650686],[-122.29985045951125,55.21964392842617],[-122.2947442518907,55.21821804642786],[-122.28905493387357,55.2176447295311],[-122.2864417677421,55.217414224487875],[-122.28164096314723,55.21559320635183],[-122.27963728401258,55.214402933877416],[-122.27754017169603,55.21251905951137],[-122.27314517977358,55.21058423759465],[-122.26755070504659,55.21036261197629],[-122.26545297493381,55.210362425779984],[-122.26265096882085,55.20979379973975],[-122.2605450565275,55.207676094358554],[-122.25914345546184,55.20443123287404],[-122.25753166092996,55.201583724149664],[-122.2533287591398,55.1989631405145],[-122.25024572803035,55.1968516600456],[-122.24763648660303,55.194566001951685],[-122.24812716522199,55.192346980785786],[-122.25702052691035,55.19114384919376],[-122.26781453240288,55.19085841167136],[-122.2740104087208,55.19017411967144],[-122.27561312412016,55.190060678991195],[-122.28229322645977,55.186178879073275],[-122.28348109686944,55.18492258846954],[-122.28349676552212,55.184582159981794],[-122.28577744358074,55.18360971569348],[-122.28777964560868,55.181041056651296],[-122.28757980129068,55.17910633265735],[-122.28917150385635,55.17688423295897],[-122.29225565201253,55.17385443074538],[-122.29324764912909,55.170439204756846],[-122.28994384194274,55.16542451224556],[-122.2847352768405,55.16159970559494],[-122.27674982990442,55.1566418206245],[-122.2733481006092,55.15408172076991],[-122.26984301936426,55.149580663338305],[-122.26903709105488,55.14569889445259],[-122.2692389419817,55.14079779495481],[-122.2685275240783,55.136577957899824],[-122.26482938357252,55.13248356539676],[-122.25485127005123,55.13042451447615],[-122.2442765646871,55.131737695935314],[-122.23230654333257,55.13887487481714],[-122.22702842829386,55.141603319933],[-122.2213434588732,55.14160982456676],[-122.212763823676,55.14091773023267],[-122.20867629984947,55.14001243453844],[-122.19629949632353,55.13835084845726],[-122.1892200206718,55.13612405861157],[-122.18312341863195,55.133334945882666],[-122.17714050480683,55.12968773028849],[-122.17455339674865,55.126261564647],[-122.17575438696525,55.12272785732666],[-122.17975049902591,55.1194237939692],[-122.17954253685124,55.1169681296341],[-122.17555325616748,55.114063989332806],[-122.172167926402,55.111268060187165],[-122.17037625748564,55.1071037123344],[-122.17038048854245,55.10208865802475],[-122.16689688588806,55.09769254102423],[-122.15942954436599,55.09616056538006],[-122.15484590668757,55.09523795446199],[-122.15433784785549,55.0934726930362],[-122.15424904912307,55.090114479516245],[-122.15135050882624,55.091648430687506],[-122.14687514819754,55.0942099495762],[-122.14049002031805,55.09403826351683],[-122.13571022777333,55.09369199480499],[-122.13221356165157,55.097844644528976],[-122.13201281988056,55.102234648622904],[-122.13229918331245,55.1054824619406],[-122.12662062192403,55.106453651186094],[-122.12472642314162,55.1053716660036],[-122.12452508810884,55.10468350055899],[-122.12214400979009,55.10228530914192],[-122.11546692252733,55.10153800035427],[-122.10927502261372,55.101307988472726],[-122.10628926067467,55.10062210823206],[-122.10350152781444,55.09902721469888],[-122.10280439661297,55.09777611767254],[-122.10451528850253,55.095371509025064],[-122.1016316952294,55.09200602841743],[-122.09585706883821,55.08926722542395],[-122.08948975549963,55.08583651290075],[-122.08520360025273,55.08333253205615],[-122.081928062993,55.08030405598737],[-122.07685395954876,55.07750566902031],[-122.07078267258409,55.07510611243205],[-122.06939818963134,55.07447002700989],[-122.06611666915222,55.07184464315896],[-122.06322913471139,55.069052229170346],[-122.05687664632902,55.067620992055325],[-122.0511877585134,55.06664124969721],[-122.04642036854615,55.06395894341528],[-122.0443295688442,55.06235788966575],[-122.04005923763354,55.06086659216898],[-122.03637593204486,55.059322141877374],[-122.03460290441375,55.056412093150705],[-122.03281457996671,55.05430008765689],[-122.02904465616616,55.05236679162121],[-122.02655527399426,55.05115638777875],[-122.02398388619115,55.049503632998935],[-122.02399262344197,55.04574434365227],[-122.02221570054095,55.04368635519572],[-122.02132257519841,55.041907975693526],[-122.0219281487011,55.039747059385576],[-122.02164268414046,55.03770107566211],[-122.01646739726199,55.03506714664061],[-122.01448887532254,55.033469117407996],[-122.01270344757727,55.03198494526494],[-122.01042350777658,55.03089755482051],[-122.00824570614036,55.03020821702252],[-122.00545608381427,55.02871845702739],[-122.00247793044244,55.027231511362764],[-122.00012430408123,55.02483149208482],[-121.99764547136654,55.024966702402914],[-121.99407559075841,55.02533574117672],[-121.99139441746695,55.02529379247761],[-121.98549065023204,55.02338858744892],[-121.97971203717455,55.02291386171061],[-121.97723044223436,55.022761434510016],[-121.97458603955545,55.020145039435256],[-121.97197001205122,55.018507567466],[-121.96995838261168,55.01726659059726],[-121.96627718130982,55.01277672417604],[-121.96397406269963,55.01147229213303],[-121.95977376506603,55.01030327879195],[-121.95339212795064,55.008973049222526],[-121.94909803164143,55.007962105605216],[-121.94597649101686,55.006217737062364],[-121.94406614770561,55.0044501888972],[-121.94125348619265,55.002760680066196],[-121.93892330925357,55.00111386261534],[-121.93589730856633,55.000458121020365],[-121.93584229283,54.9989757099938],[-121.9383975364868,54.99791106443989],[-121.94105330029659,54.9966253368456],[-121.94005348735932,54.99298524267973],[-121.93291599524797,54.9903099416838],[-121.92806317330452,54.987547939363075],[-121.92137332520701,54.98247279724573],[-121.9196032048022,54.97980310487155],[-121.92004373538013,54.974191279967],[-121.91057397002331,54.96639439413542],[-121.90225397459834,54.96338183599793],[-121.9009280523478,54.962539206854636],[-121.89713515847251,54.957881636132406],[-121.88994911895232,54.95623391992058],[-121.87948186376615,54.95479044968843],[-121.87499275807316,54.95438039737645],[-121.87269364691694,54.9537113344802],[-121.86953286653412,54.94704581199407],[-121.86643614914972,54.94267962778643],[-121.86260895273358,54.93687996915209],[-121.85229410460522,54.93354559521079],[-121.84746465438553,54.93113079119905],[-121.8459470652679,54.92988619497586],[-121.84798334185186,54.92454336533713],[-121.85007363661022,54.92080868069984],[-121.85773892226744,54.91478439833875],[-121.86573141227952,54.91305121979415],[-121.87092439089443,54.91065855671425],[-121.8703730644603,54.90500453226971],[-121.87028664581877,54.90231845912393],[-121.86525671850234,54.8994398804018],[-121.8539528446681,54.89943741414065],[-121.84061416748173,54.90110629529552],[-121.83661428482142,54.89965218503898],[-121.84166221736606,54.89577513524764],[-121.85718345803645,54.89019508879806],[-121.85777063098097,54.88996353917712],[-121.86863727342985,54.885168029439356],[-121.8732991198984,54.88180636833463],[-121.87261137232211,54.87872327221034],[-121.87056270734466,54.87594457666683],[-121.87183280681542,54.87192195501492],[-121.86995833704228,54.86851192426245],[-121.86418426325606,54.867142760007155],[-121.85587987956931,54.86436012364985],[-121.84965797711227,54.864931521419145],[-121.84689405792903,54.86518841470705],[-121.83928266997732,54.86222155257306],[-121.83144538639418,54.86161571892986],[-121.82655375853284,54.860507889249604],[-121.81911858342869,54.859950767893665],[-121.80815314014039,54.85753214817295],[-121.80295098494274,54.85535380573774],[-121.8016355694716,54.85416027715263],[-121.79892801293974,54.84904233608228],[-121.79570106885184,54.842605294846244],[-121.79222577615211,54.83857377736343],[-121.78508880611336,54.838347720465826],[-121.78011604646771,54.84091469799349],[-121.77771289572584,54.84808379847303],[-121.77432425361347,54.85074077050117],[-121.76997864696266,54.85147117244962],[-121.76242721669244,54.85399384875509],[-121.75944703885364,54.85796583888108],[-121.75491677905869,54.858806063316266],[-121.74991379941643,54.86102091543892],[-121.74498174970944,54.86598432204006],[-121.73939545115823,54.86837610569539],[-121.73756941623574,54.870565665837304],[-121.73818022101545,54.871304772592616],[-121.74014951317744,54.87460378015734],[-121.74411687391168,54.87914742950481],[-121.7436006204241,54.882127195001516],[-121.73954817028591,54.882561633345134],[-121.73516526238808,54.88197035223367],[-121.72961488306196,54.88161670617527],[-121.72845237848814,54.88299447804662],[-121.72892450738286,54.88579305707134],[-121.72807912255675,54.88757670940906],[-121.72445979391368,54.88582681603909],[-121.7192789538707,54.884785482826516],[-121.71618199960972,54.88372658450288],[-121.71207633362746,54.881699124606754],[-121.70523275115126,54.88158659863891],[-121.6973774560664,54.88038829854456],[-121.69367033283324,54.878598469127475],[-121.6880961376177,54.873323666234334],[-121.68451663560765,54.86843254638076],[-121.67428358295555,54.86256299004557],[-121.67228275702064,54.861667013332664],[-121.66677289396398,54.85861922541909],[-121.66009212796669,54.85701985437377],[-121.64758270885727,54.855223334421055],[-121.64470790477196,54.85096606054478],[-121.64392933535899,54.846854642217345],[-121.64023978101736,54.84538675816523],[-121.62709206383103,54.84171640937676],[-121.61792650125426,54.83927239057166],[-121.61221707479545,54.83581987281073],[-121.61162413283152,54.83566410869363],[-121.6074062023638,54.83259657923633],[-121.60043816255829,54.831109155897806],[-121.59934207382057,54.83083661596226],[-121.593984671899,54.83007058030975],[-121.589185836769,54.82776248475538],[-121.58329854157728,54.82540616618994],[-121.57794218129047,54.82435219820211],[-121.57316420121276,54.823013595795004],[-121.56741317647885,54.82242967269378],[-121.56533947578777,54.82238192238016],[-121.55917888121866,54.82197135551893],[-121.55529332363035,54.82034106989202],[-121.551104872828,54.81819702923392],[-121.5489907441215,54.81666643562093],[-121.54881977213465,54.81266577380216],[-121.54673173766699,54.80719544114422],[-121.54549430168247,54.805086087444124],[-121.53980731361732,54.801810156642865],[-121.53036454795651,54.799878675265205],[-121.52303576397922,54.79946860598798],[-121.5227879714278,54.796614014918575],[-121.52091036665733,54.79182398526183],[-121.51964655277438,54.78713705751945],[-121.52075950803562,54.78341639598239],[-121.52306998660187,54.780304855435865],[-121.52402134658654,54.77847235580581],[-121.52468481601221,54.77670118743832],[-121.52589819961516,54.772912346512726],[-121.52563521136832,54.76976995412321],[-121.52264907993091,54.768817448179384],[-121.51786469337318,54.7663361282091],[-121.5144878721081,54.76567437010491],[-121.51071779855816,54.76489941180353],[-121.50634610174063,54.76321364632667],[-121.50214206632155,54.760438681610665],[-121.4995404648251,54.75827879640522],[-121.49525299532108,54.75682907463329],[-121.49335252793433,54.755529578976436],[-121.49459782456611,54.752882185108646],[-121.49639088236414,54.74880959124083],[-121.49641816162175,54.74504032571313],[-121.49445547571786,54.740363254121334],[-121.49033715655509,54.73628028426734],[-121.48555328210581,54.73356410862824],[-121.48015644503126,54.73005314978585],[-121.47804766655665,54.728117296413224],[-121.47523333131099,54.725796326718324],[-121.4764807698495,54.7235531437866],[-121.48017237276535,54.72050223984713],[-121.47981527253255,54.71655717913536],[-121.47843304578328,54.71159587176232],[-121.4805324255019,54.70757069217826],[-121.48323183531343,54.70361245618492],[-121.48650239621102,54.69913656714204],[-121.48829455413849,54.69477683429717],[-121.49275423047403,54.691089619230375],[-121.49959794348128,54.687956531466014],[-121.50698291539928,54.68739232950594],[-121.5149488949968,54.686076932065866],[-121.51786966245103,54.68388562714479],[-121.51699565968698,54.679087062085216],[-121.51687192122773,54.678229752426944],[-121.51805779022426,54.67325510545219],[-121.52138287274468,54.671626105212695],[-121.5213176067331,54.66853574218635],[-121.5232576708849,54.66703565544397],[-121.52243637673254,54.665156476785825],[-121.52280517095498,54.66350027909894],[-121.5245215733218,54.66091481577892],[-121.52269519121624,54.65840648425422],[-121.5223055633546,54.65841020960503],[-121.51910434947092,54.65580671352806],[-121.51994902944168,54.6535036361802],[-121.52574995144299,54.65284474002112],[-121.52254678401616,54.65040283340931],[-121.51866985192058,54.648429919186306],[-121.51330782629968,54.64651921669597],[-121.50744788495578,54.643764144661105],[-121.50734259465275,54.64358972572807],[-121.50594866626746,54.642398566155094],[-121.50552073250245,54.6411979315075],[-121.50609830982364,54.640052121847326],[-121.50292824516123,54.639163831486954],[-121.50004941680035,54.63803479538611],[-121.49990986116197,54.63563284109226],[-121.49867371559897,54.633298330386154],[-121.49490575304053,54.6314901477751],[-121.49073591893337,54.629801702082354],[-121.48962314016507,54.628046140204056],[-121.49096604837085,54.62603086579769],[-121.49467934355945,54.62452469280353],[-121.49574859762878,54.623998462967016],[-121.494234627266,54.62235386928851],[-121.49158459911251,54.617336987529974],[-121.48865876533446,54.61341403431356],[-121.4832863907362,54.610244622918884],[-121.47874364336323,54.60969995777985],[-121.470689489021,54.610389826985624],[-121.46625468138951,54.61041424881777],[-121.46045256765846,54.610567379437384],[-121.45722047048355,54.6111028695314],[-121.45395227505747,54.610146707178814],[-121.45253695228217,54.60861290462058],[-121.45484517721961,54.60534109174046],[-121.45676827716976,54.60287189028534],[-121.453863152934,54.59991825541268],[-121.45026657813297,54.59633735839167],[-121.4487418429759,54.59411714120314],[-121.44804049392187,54.59315741841988],[-121.44516234971535,54.59150624892358],[-121.441469478567,54.58907953749869],[-121.44122114805612,54.585874326340466],[-121.44342413469509,54.58242824198346],[-121.44417420076513,54.58002329012981],[-121.44214565827073,54.576895427518586],[-121.44104493298329,54.576037475196756],[-121.4378737756991,54.574518796805094],[-121.43301986650424,54.57248835126195],[-121.43034527083687,54.57153562042735],[-121.42965061352578,54.57107875101829],[-121.42932469825303,54.57107555308402],[-121.43021974478421,54.569810612281806],[-121.43048688854135,54.56978355827803],[-121.43086757645884,54.56974840026767],[-121.43123317373006,54.56967452306116],[-121.43158373868852,54.569578761861216],[-121.43192057998357,54.569466776626996],[-121.43222317373954,54.56933106804632],[-121.43245328127793,54.56914888713448],[-121.43267022414,54.56896284781005],[-121.43287038449425,54.56877057069855],[-121.43216961658136,54.5680385500428],[-121.39999633553415,54.5343782157326],[-121.39873808823025,54.53305824845819],[-121.39899275592931,54.53288154503205],[-121.39915609535791,54.53265426978045],[-121.39925489615108,54.53251771011328],[-121.399429196761,54.53229645833522],[-121.39958424142243,54.53200490339084],[-121.39963653021631,54.531816092522206],[-121.39975686542235,54.53164330953948],[-121.39987795397117,54.53146382145195],[-121.39998574807038,54.53136800009228],[-121.400032985215,54.531310299786476],[-121.4000714881251,54.53126124857862],[-121.4001806641273,54.53115313457466],[-121.40021750581104,54.53101536474483],[-121.40023163227343,54.53090704020602],[-121.40022505516454,54.5308102810082],[-121.40023315364208,54.53061756245029],[-121.40029236521696,54.530418911923306],[-121.4003581535304,54.53031702056128],[-121.40048865791125,54.53019175341099],[-121.40058765323508,54.53003612244586],[-121.40067540013017,54.529911490520306],[-121.40084605091836,54.52977426711486],[-121.40108074057531,54.529602419717044],[-121.40132848164077,54.52940076287476],[-121.40149102311256,54.52926660027368],[-121.4015846234888,54.5292106439741],[-121.40170332428856,54.52910400953544],[-121.40188417784209,54.528979513295724],[-121.40201621272271,54.52880604663983],[-121.40203041224349,54.528679769178794],[-121.40210071708479,54.52853764686477],[-121.40221983870696,54.52844449459528],[-121.40237838391452,54.52831130293356],[-121.40267233715456,54.52819891602377],[-121.40293666479225,54.52803940281738],[-121.40311730616607,54.527933974918305],[-121.40332007717394,54.527821523550564],[-121.40341530478797,54.527751038323906],[-121.40338663784117,54.52767813765023],[-121.40341408759397,54.527502980603856],[-121.40345834384536,54.527350900194605],[-121.40351624867708,54.527198210892564],[-121.4035638655551,54.527050745766275],[-121.40360417910539,54.52691647265835],[-121.40365616153314,54.526764682802735],[-121.40378006524269,54.5266806869799],[-121.40388494877291,54.526610564659926],[-121.40404762617453,54.5264404932351],[-121.40418867502287,54.526272974943694],[-121.40419683157387,54.52606230330617],[-121.40424607735208,54.525900310358686],[-121.4043119261419,54.52578046411477],[-121.40437852806079,54.525653912817596],[-121.40453033280495,54.525511487701834],[-121.40467192694828,54.52535633400595],[-121.40482255119447,54.525207130860814],[-121.40501449556251,54.52505274789967],[-121.40512567983994,54.524891961452155],[-121.40529838086317,54.52471889898838],[-121.40541705897303,54.524612260876545],[-121.40555269727366,54.52449279363264],[-121.40576902358669,54.52431127078692],[-121.40590064259301,54.52422756328812],[-121.40603028058233,54.52412694783591],[-121.40612434440145,54.52401489492992],[-121.40621218707528,54.52388914141864],[-121.40633030945192,54.52377013723675],[-121.40644910764837,54.523662380603916],[-121.40662964411996,54.5235749001475],[-121.40682753797138,54.52352286079104],[-121.40700002413193,54.52336886609241],[-121.40710563512721,54.52306759092593],[-121.4071947056725,54.522879038550926],[-121.40725135742775,54.5227891455225],[-121.40732677463691,54.522687613309465],[-121.40735038539316,54.522615556217126],[-121.40739398967959,54.522555472781995],[-121.40749349158489,54.522412201222586],[-121.40754071211013,54.52226808696251],[-121.40755835665422,54.522093683363025],[-121.4075221881203,54.521966635104796],[-121.40743373967716,54.52183874417093],[-121.40724301783983,54.52165426469491],[-121.40713382491509,54.521521104886546],[-121.40701592942766,54.521361806704846],[-121.40677138322914,54.521086647496965],[-121.40656255798218,54.520873430585],[-121.40631149083663,54.520656380732405],[-121.40610121264886,54.52047340828334],[-121.405944664449,54.520347444535375],[-121.40590759557259,54.52026300620595],[-121.40586508830552,54.52012337437323],[-121.40581264417523,54.52002040231394],[-121.40579609815168,54.51990867994322],[-121.40578879277085,54.51969742699596],[-121.4057741175969,54.51943090791533],[-121.40580975155378,54.51928635850482],[-121.40590771657229,54.51919128613534],[-121.40610546464201,54.519140365417414],[-121.40639590419103,54.51904130685477],[-121.40672620616056,54.5188809016423],[-121.40706064675537,54.51868361781961],[-121.40739315263315,54.518486260476884],[-121.40810064418206,54.51817955105798],[-121.40865784499367,54.517950234900475],[-121.40946459948258,54.51777854822166],[-121.41030774675889,54.517766456646264],[-121.41081100345195,54.51767201580136],[-121.41118392160854,54.517563700139625],[-121.41155916873775,54.51741731541994],[-121.41178418290626,54.517192343872],[-121.41183268697246,54.517053887930786],[-121.41177922891299,54.51695985847472],[-121.4116656971882,54.516882650729556],[-121.41153011708322,54.51679451486157],[-121.41137228902012,54.51671452102568],[-121.41120851481338,54.51658380374677],[-121.4110967404481,54.51649095031332],[-121.41095943148024,54.51638367103699],[-121.41085638685936,54.51628216746813],[-121.41070443101952,54.51618443768176],[-121.41050459167481,54.51604675348499],[-121.41037501126851,54.515939763748634],[-121.41027512856814,54.515775533995196],[-121.41020960915998,54.51556433955208],[-121.41005645083533,54.515235386049575],[-121.40999805738366,54.51508169240144],[-121.40989446651378,54.5149678228317],[-121.40982674336244,54.5147935785507],[-121.4098561379429,54.51454891641179],[-121.41012907790324,54.51438073750655],[-121.4102251389183,54.51421601318002],[-121.41024382070972,54.51396309302022],[-121.41013385684069,54.51352578436305],[-121.40985615442563,54.513304373212165],[-121.40949962508009,54.513111421624686],[-121.40922135184717,54.51291243178548],[-121.4090373839434,54.51282359632331],[-121.40889146413791,54.51275863488068],[-121.4087686954225,54.512642921042875],[-121.40864532612395,54.512498006680275],[-121.40851044391614,54.51242111507945],[-121.40835798270115,54.51227622919223],[-121.40815596194498,54.51217549145728],[-121.40777050920555,54.511946658026176],[-121.40747022971165,54.511788358631435],[-121.40731716945494,54.51170068214411],[-121.40707537954299,54.51155692498586],[-121.40684751327223,54.51137553513419],[-121.406615682592,54.51124674030997],[-121.40647102708644,54.51117060089123],[-121.40631742050199,54.51107055795083],[-121.40607531005676,54.51094698654644],[-121.40582417292057,54.510817464003864],[-121.40567884432032,54.51073007595253],[-121.40556524433396,54.510619192025],[-121.40546054748211,54.51051537618067],[-121.40526885439718,54.51037462131569],[-121.4050486209597,54.51024625930286],[-121.40482525075453,54.510145834533006],[-121.40462126997562,54.5100281830615],[-121.40439838559665,54.509871664301826],[-121.40419589560929,54.50968897886594],[-121.40407475168945,54.50959352065655],[-121.4038846220939,54.50945618877001],[-121.40371685302529,54.50939600943449],[-121.40355380797713,54.50927652946812],[-121.40331284654836,54.50914289502143],[-121.40316610047405,54.50905096128076],[-121.4030448827439,54.50897345477569],[-121.40289477810815,54.50887690535349],[-121.40276057737032,54.50875963188681],[-121.40258109955094,54.508562098095766],[-121.40223508564331,54.50832799558874],[-121.40201490420954,54.50816484010659],[-121.40176321589675,54.50805773192005],[-121.40156181333691,54.50793456048347],[-121.40133127488703,54.50779458054946],[-121.40120028384538,54.50771782622491],[-121.40108959359576,54.5075812355345],[-121.400985967456,54.50748531102781],[-121.40081483725837,54.50736888907713],[-121.40068245273758,54.50725280350913],[-121.40056109194929,54.507073165607935],[-121.40042226100957,54.50685920271957],[-121.4002918297526,54.50665677824405],[-121.40010267220914,54.50644204195395],[-121.40001404218347,54.50636800357063],[-121.39995030917758,54.50631398069352],[-121.3997521875986,54.506161751208815],[-121.39970497458097,54.50602979400133],[-121.39959054525873,54.505840315756764],[-121.39941137137696,54.505743788662095],[-121.39916337103016,54.50551785635881],[-121.39899036917016,54.50541819433047],[-121.39885664788376,54.5052796112752],[-121.39876694858185,54.50509443028977],[-121.39869199979258,54.50498499460244],[-121.39852936399613,54.50486215535676],[-121.39839506321886,54.50474599452807],[-121.39826085421045,54.50466350403497],[-121.39808977836833,54.50451229023515],[-121.39789867646886,54.504332265705024],[-121.39771473649827,54.504278201086684],[-121.39748558905802,54.50421233255116],[-121.3972765046484,54.50414048619149],[-121.39707253975484,54.50405761001204],[-121.39682088959272,54.50395049158812],[-121.39663412431186,54.50380092859565],[-121.39635290597369,54.503560270681405],[-121.39620319770064,54.50335711399687],[-121.39606503082653,54.50313755854952],[-121.39588556538773,54.50292317951488],[-121.39573452296014,54.50274914996068],[-121.39548635385998,54.502542280341345],[-121.39533393829538,54.502432165999906],[-121.39520296169245,54.50225215869529],[-121.39509066440307,54.50207846667545],[-121.39493065462001,54.50196694314893],[-121.39473693718556,54.50181038104365],[-121.39456467244382,54.50168717246571],[-121.39435488342201,54.50153561480952],[-121.39416385563148,54.5013724196132],[-121.39394369998675,54.50119241417397],[-121.3937424368349,54.50105127698231],[-121.39346524621327,54.50086126371922],[-121.3932424977506,54.500721559666836],[-121.39300053122551,54.50061479744417],[-121.39286689318203,54.50054466625398],[-121.39267206168967,54.50044978156152],[-121.39251844629496,54.50036767388043],[-121.39239588677792,54.50025082589767],[-121.39227387107015,54.50009471980376],[-121.39221405903443,54.500006050512035],[-121.3920967438527,54.4998254321957],[-121.39179211798854,54.49956928927456],[-121.39160681086905,54.499269391512925],[-121.39152693376587,54.499031828523556],[-121.39134277006418,54.49887674271695],[-121.39116901749827,54.4987669392253],[-121.3909851930936,54.498643288408694],[-121.39075188763105,54.498442579389724],[-121.39059488257539,54.49828739502625],[-121.34071713552498,54.49097497761964],[-121.1997453659312,54.45472236688214],[-121.17455705119326,54.44822047863594],[-121.1615493918998,54.40024351381978],[-121.00000592726954,54.408470969820414],[-120.89956806335617,54.41347569733991],[-120.90019360695696,54.43170796873094],[-120.90019704293914,54.431820391586676],[-120.9355516753243,54.44937899451148],[-120.93592640657451,54.44940353929933],[-120.9362080419435,54.44950730021862],[-120.93651978474274,54.449727953443094],[-120.93672293573005,54.44987111836213],[-120.93692936747449,54.45008178382292],[-120.93710827670118,54.45026436026727],[-120.93721808798585,54.45041038528353],[-120.93731772189885,54.45052904176051],[-120.93745797043375,54.45064826151488],[-120.93765603728279,54.45078559974377],[-120.93783884028561,54.450874025964126],[-120.93799837670032,54.45096260881758],[-120.93815350669209,54.45105549950166],[-120.93834483436292,54.45118469748487],[-120.93859067917155,54.4513273853035],[-120.93877265329839,54.45143823039271],[-120.93892034800795,54.451544284272195],[-120.93904863067401,54.45165065506323],[-120.9392071967126,54.451778491807865],[-120.93936012414147,54.45188925317631],[-120.93951744989046,54.45202714264343],[-120.93960193613471,54.4521900778844],[-120.93972263172799,54.452357883765096],[-120.93975177815479,54.45249831316238],[-120.93990772279993,54.45266309044956],[-120.94008116366376,54.45279603392683],[-120.94032193603348,54.45291717502952],[-120.94049813925476,54.45302777760103],[-120.9406803977201,54.45315210397212],[-120.94083251059948,54.45325384737838],[-120.94093902298629,54.45345811372924],[-120.94108423431372,54.45363142580206],[-120.94117066597705,54.45376300350181],[-120.94125349836307,54.45397077811678],[-120.94132296407149,54.45422403051165],[-120.94136794803305,54.454377466264226],[-120.94136843467737,54.454624489140954],[-120.94138215102531,54.45482715118024],[-120.941395571206,54.45511063815501],[-120.94158612013145,54.45516794215859],[-120.94159100733066,54.45544209320282],[-120.94163076252576,54.45559082090456],[-120.9417062725437,54.45592066973383],[-120.94169769048115,54.4560999520084],[-120.94165618358876,54.4563418648441],[-120.94158700630155,54.45655680705146],[-120.94147156293965,54.45676983032292],[-120.94133891904531,54.456933862325805],[-120.94133130108139,54.457105325433346],[-120.94135589870692,54.45729833402893],[-120.94143115396113,54.45755182608568],[-120.94149321187525,54.45772393350261],[-120.94156946266756,54.457859579122385],[-120.94167516675464,54.45805482859124],[-120.94179162248238,54.45821010523128],[-120.94200432338795,54.458401932439216],[-120.94219900871447,54.45850431583286],[-120.94234013020629,54.45860110954716],[-120.94267978877285,54.45883188194009],[-120.94286921811708,54.459055301760436],[-120.94307641738811,54.459260371415255],[-120.94335097225063,54.45939076424711],[-120.94370525426308,54.45955028440619],[-120.94394856273085,54.459635593727754],[-120.94449411348674,54.459846826476486],[-120.94494327836547,54.46003834368845],[-120.94527692208698,54.4601610759647],[-120.94570117166872,54.46033471656825],[-120.9459710613344,54.4604559276662],[-120.94625445238752,54.460546260980436],[-120.94665117192152,54.46069181171899],[-120.94699639361112,54.4608150185194],[-120.9471999209859,54.46087734086387],[-120.94751044653601,54.46096767232455],[-120.94778117429018,54.46106645911279],[-120.94810878288588,54.46111258728455],[-120.94846214178807,54.4611856037655],[-120.94876648143058,54.46120045273706],[-120.94928743191923,54.46134440238584],[-120.94952484194187,54.46141485994287],[-120.94991814046786,54.46152545299551],[-120.95021118744144,54.461616176219316],[-120.95054692661209,54.4617064205332],[-120.95078475413254,54.46177352456205],[-120.95104516723114,54.46184605386781],[-120.95140514777749,54.46192831724638],[-120.9516643235827,54.461995180302445],[-120.95186125368306,54.46204823948499],[-120.95214659660488,54.4621072025711],[-120.95247008754849,54.462202548014105],[-120.9527869695252,54.46228863727606],[-120.95314089848658,54.462388608426515],[-120.95347678754115,54.46246200948726],[-120.95371820689188,54.462578655871155],[-120.9539223068107,54.46269937153301],[-120.95427844802676,54.462844339566665],[-120.95465359586716,54.46297661991804],[-120.95491967105377,54.463066215379946],[-120.95537607642949,54.46319960857596],[-120.95563540574832,54.463281064324434],[-120.95600325947811,54.46337823418754],[-120.95574407786486,54.463421407473085],[-120.95302057201812,54.46386787193745],[-120.94516960176455,54.46291406276704],[-120.94093307463572,54.460187567859094],[-120.93866053187156,54.45624902037635],[-120.93609087894552,54.452711243289194],[-120.92932209545648,54.45129824897199],[-120.926190593993,54.453305725736776],[-120.92119924629105,54.454059041637166],[-120.91629978678006,54.454070473548796],[-120.91228905881559,54.45653499541063],[-120.9102410725026,54.45779687309463],[-120.90189693894575,54.45832863193626],[-120.88778151654341,54.45864500691473],[-120.88063092353109,54.4605367942465],[-120.87652171964201,54.463517106998026],[-120.87684181866607,54.467402004616275],[-120.87772537787775,54.47112192282083],[-120.87540424065163,54.47665646731354],[-120.87442950453362,54.47923841333327],[-120.87444036868105,54.48398162292349],[-120.87544570262982,54.48809290170471],[-120.87221457954334,54.491469349777695],[-120.85945553860012,54.49040269645005],[-120.85454729691445,54.48995334992271],[-120.84855648377993,54.48997012977275],[-120.83993382013554,54.49129465947738],[-120.83629630385018,54.492209783085734],[-120.82845989068521,54.49393509712378],[-120.82647424918837,54.494222622957246],[-120.82632627484043,54.49402771005644],[-120.82535997024647,54.493371419542605],[-120.82484247984524,54.49283183907356],[-120.82422613143734,54.49239922772578],[-120.82387944036037,54.49207349203066],[-120.82344708746,54.49164306403991],[-120.822470601562,54.49114463886773],[-120.82176249729162,54.49076314119072],[-120.82132489064222,54.49043578528824],[-120.82089244046375,54.4900064650245],[-120.82044469912782,54.48983587730236],[-120.81992145925496,54.4894038228318],[-120.81965977274936,54.48918835318101],[-120.8191513427457,54.488486310738345],[-120.8182653619442,54.48799393396733],[-120.81682744346209,54.48764878780993],[-120.81601426292266,54.48753115693826],[-120.81539191831955,54.487254318726016],[-120.81422186547185,54.48696880273259],[-120.81342059852528,54.48663494398085],[-120.81235872657352,54.486031739184355],[-120.81229912743218,54.485446429949775],[-120.81232752720318,54.48491651393554],[-120.81235592623993,54.48438659786911],[-120.81238432454245,54.483856681750666],[-120.81213992355065,54.48332190587008],[-120.8118056081921,54.482731653819975],[-120.81146441114596,54.48230280303687],[-120.81113204246259,54.481712631051785],[-120.81006946018887,54.48116214444988],[-120.80899600683895,54.48077400347394],[-120.80756963270842,54.48021812200096],[-120.8064997410336,54.47977171827254],[-120.80533736256672,54.479382002930855],[-120.80481203396884,54.4789991889455],[-120.80328169362718,54.47865217537705],[-120.80256260366512,54.478482308179395],[-120.80181881194855,54.47791163327585],[-120.80013427464203,54.47774104035984],[-120.8000007873102,54.47773872015822],[-120.79962360845833,54.477731628132915],[-120.79880725764636,54.477717043753515],[-120.7982504145703,54.47756754063834],[-120.797627986446,54.477201887281375],[-120.79699468272106,54.47698286658546],[-120.79640153799514,54.476783521482204],[-120.795770601706,54.476561226133526],[-120.79514210348265,54.476243584410184],[-120.7947960039189,54.47593124982738],[-120.79454175152642,54.47541509537043],[-120.79455225948671,54.47522577280445],[-120.79442470925017,54.4746128391885],[-120.7942023608222,54.474257497183984],[-120.79392039602473,54.47350210202407],[-120.79343687600748,54.47279200352736],[-120.79295714847925,54.47196079021662],[-120.79258459834386,54.471414876029925],[-120.79268594484796,54.470679205882846],[-120.7929111277783,54.47018912390076],[-120.7935074213669,54.469616065401176],[-120.7947128206718,54.46888708638088],[-120.79605619156905,54.46862774267105],[-120.79698573579876,54.468528153497],[-120.79792383720824,54.468056118877534],[-120.79887463478181,54.46768231167257],[-120.79952299566102,54.46744607305894],[-120.80000052299758,54.4672575710521],[-120.80047433194562,54.46706778596358],[-120.80053165445422,54.466799610616384],[-120.80051411728729,54.466327245361015],[-120.80076610754081,54.465594627119806],[-120.80115722380175,54.464590582519264],[-120.80129700219368,54.4635814394974],[-120.80232145564806,54.46261112280468],[-120.80313941229738,54.46236637570942],[-120.8046762109905,54.46135948123234],[-120.80574055758014,54.460440247981936],[-120.80588610041893,54.459323552049376],[-120.80522862372385,54.45815131870662],[-120.80488494504634,54.45745395832516],[-120.8048373204558,54.45721836717035],[-120.80471726942903,54.45663720717707],[-120.80494247456544,54.45558004963248],[-120.80477718546453,54.45471399224457],[-120.80511513278176,54.45392888710465],[-120.80563796259678,54.452877670511356],[-120.80656844552303,54.452095344207116],[-120.80680937011435,54.45155538667942],[-120.80687814996755,54.450249020470196],[-120.80674587022551,54.449580878365886],[-120.80569901090608,54.448577332259525],[-120.80462564540356,54.447263848345486],[-120.80522064767993,54.4456430329813],[-120.80468463415272,54.44459947813391],[-120.80387781349455,54.443843068921616],[-120.80379856371897,54.44295596885949],[-120.80365952793063,54.442387469588944],[-120.80373530066987,54.441759629396415],[-120.80405205226566,54.44137000938874],[-120.80390587762054,54.440949428725276],[-120.80392608102791,54.44057636406567],[-120.80419168037626,54.44036085902647],[-120.80451793466614,54.43977401302223],[-120.80501726378674,54.43916647006771],[-120.80545995026745,54.43880691834485],[-120.80614841725746,54.43857125064265],[-120.80679998285753,54.43825989603651],[-120.80711520708623,54.437897154696216],[-120.80780633888573,54.43764025715652],[-120.80783148373126,54.43718206356599],[-120.80776275338131,54.43688381409777],[-120.80731741300767,54.436485303904],[-120.80675189598695,54.43598061067683],[-120.80668895001983,54.435606249499344],[-120.80654321918387,54.4351362832219],[-120.80653663492585,54.434470123872586],[-120.80635461745503,54.43395032619857],[-120.80632160317799,54.43375241209209],[-120.80618508226512,54.43313349163534],[-120.80609479329524,54.432440183810826],[-120.8056666444457,54.43175381184493],[-120.80561175342301,54.431209111593326],[-120.80521255435899,54.430783360964604],[-120.80467660475938,54.43050449377278],[-120.80431144315301,54.43022279898706],[-120.80412607358969,54.42972980233971],[-120.80393889548122,54.429281644172775],[-120.8035716820274,54.4290009818523],[-120.80296493109427,54.42848664549716],[-120.80296078659421,54.42777117891068],[-120.8027859865034,54.427103456514665],[-120.80243515529715,54.42652591837647],[-120.80216003446748,54.426130150109024],[-120.80188948335989,54.42565260377894],[-120.80160870176555,54.42537786612184],[-120.80147452030118,54.42471075007779],[-120.80162647114695,54.42424561177979],[-120.8015903855429,54.423354730417174],[-120.80165478547377,54.42293863368853],[-120.80166219244929,54.422681804075374],[-120.80127158147728,54.42231142346287],[-120.80095559545116,54.4220396725828],[-120.80060592175032,54.4216519465686],[-120.8002898035009,54.42138131079404],[-120.80000181676407,54.4210568520556],[-120.79993892449752,54.42098791633411],[-120.79941244167783,54.420834065550416],[-120.79872307608875,54.42060588461638],[-120.79843710859016,54.4205554978226],[-120.79803280863392,54.42040011917413],[-120.79779264727786,54.420278697171064],[-120.79763646300577,54.42010583761776],[-120.79753088076075,54.419793651551466],[-120.7974654325691,54.419455106230714],[-120.79715710355235,54.41906239575825],[-120.79683864052323,54.41884105714047],[-120.7966462353007,54.41857232429802],[-120.7966637401264,54.41823619789051],[-120.79655725980531,54.41794643027016],[-120.79641396213128,54.41753493822185],[-120.79615044562438,54.417048690298294],[-120.79604397200517,54.416758922167354],[-120.79573314638074,54.41641663098349],[-120.79517504629403,54.41602447282573],[-120.79477947256026,54.41572459747523],[-120.794257289888,54.41547657932362],[-120.79402103815372,54.41527895678512],[-120.7937484263273,54.414986577691074],[-120.7933436314599,54.41483565077326],[-120.79309794267068,54.41480381464866],[-120.79293553548457,54.414756448064296],[-120.79256619270514,54.41472269428164],[-120.79223969734889,54.414671681376106],[-120.79179102883272,54.414591863191006],[-120.79137918677026,54.41455741170194],[-120.7910489423387,54.41455115202447],[-120.79076119968799,54.414545585925055],[-120.79064129784857,54.41449891074233],[-120.79056223797379,54.41442029428484],[-120.7904050691421,54.414301281169045],[-120.79024236503655,54.41422582503938],[-120.78987678235694,54.41414730673134],[-120.78946869990996,54.41406809241997],[-120.78913994188089,54.414034940819],[-120.78877288059638,54.41398330595517],[-120.78812003735025,54.413849822450274],[-120.78799638541761,54.4138479009837],[-120.78742138394529,54.41378736524994],[-120.78713442043458,54.41376048810425],[-120.78668499827192,54.41370195362785],[-120.78631418610463,54.41369506764368],[-120.78618813478016,54.41374245039991],[-120.78573573060343,54.41370736620272],[-120.7854870853574,54.4137292881776],[-120.78578770577205,54.41354227473807],[-120.786001980573,54.41337963821073],[-120.78613614681706,54.41316191814186],[-120.78619729307005,54.412802952790045],[-120.78625589641014,54.41249441029575],[-120.78630698522886,54.41227538031198],[-120.78632275574064,54.412014413358705],[-120.78657710450587,54.41187145817822],[-120.78704721190519,54.41156929698431],[-120.78826368802056,54.411182285267984],[-120.78868930644644,54.410925377938064],[-120.78907540334136,54.41064432020729],[-120.78872127043796,54.41032373509258],[-120.7885833144011,54.40984059013618],[-120.7884410394312,54.40940666874749],[-120.78837281380811,54.40916681255471],[-120.78826928465368,54.408778342572624],[-120.78865776091209,54.40844797991041],[-120.78916732764785,54.408169959408866],[-120.78950413958573,54.40803277308512],[-120.78957095368949,54.40755277397298],[-120.78917733061589,54.40720804122618],[-120.78898263382945,54.40698860190204],[-120.78859080419667,54.40664506643886],[-120.78835899842213,54.40635217083772],[-120.7879400027419,54.40572000126311],[-120.78775582475551,54.405280915887715],[-120.78757824534279,54.40477473682191],[-120.78739705739515,54.40431219697758],[-120.78709499714127,54.40378047629415],[-120.78667181770741,54.403242446995826],[-120.78652041620197,54.403002396930674],[-120.78612686233814,54.402657654051424],[-120.78560354132745,54.402405048474975],[-120.78503726219385,54.40220113274886],[-120.78455001298745,54.402075834970795],[-120.78382196642043,54.40182006813172],[-120.78333967286063,54.401595036432006],[-120.78239444466101,54.40155566675346],[-120.78161536256448,54.40144255776124],[-120.7809226165909,54.401335389466226],[-120.7800328916829,54.40098171168007],[-120.77943226792355,54.40068309194985],[-120.77883406088911,54.40033516321601],[-120.77855803441166,54.400086388695],[-120.77850311780894,54.40000093663459],[-120.77840669195521,54.399846328421155],[-120.77826378147626,54.3994336968562],[-120.77807399751183,54.399115627750106],[-120.77780011741424,54.39885009885619],[-120.77770288842105,54.39836755700631],[-120.77767679276074,54.39810142411551],[-120.7775293613677,54.39778516993781],[-120.7775328332277,54.39771232773477],[-120.7774168102725,54.39754452547751],[-120.77726045533534,54.39741991086386],[-120.77714018364011,54.397346253031046],[-120.77689886325217,54.39722023949976],[-120.77653678872464,54.39706995562906],[-120.7763761029336,54.39699456332977],[-120.77577030686842,54.39676756813328],[-120.77528087358357,54.39666010261627],[-120.77471231217773,54.396505444745785],[-120.77446796041896,54.39647923777872],[-120.77335691929468,54.39643604571228],[-120.77273828722157,54.39644654794257],[-120.77252923233537,54.39649259784538],[-120.77220013747076,54.396508789065926],[-120.77136818361852,54.39665947785317],[-120.77090965219239,54.39674983704141],[-120.77029087233305,54.396761443691965],[-120.76942069162058,54.39681727312783],[-120.7687280554669,54.396710035499915],[-120.76798481949456,54.39669607054946],[-120.76749248922152,54.39668726817608],[-120.76699823460194,54.39667838110811],[-120.76642108174788,54.3966670520697],[-120.76583801333938,54.396777867990856],[-120.76504231078606,54.39702327834675],[-120.76470814645886,54.397094256529286],[-120.764039811859,54.397296849660016],[-120.76353934422207,54.39738201005855],[-120.76320331832211,54.39749782257443],[-120.76294426810871,54.39770790431741],[-120.76219515662353,54.39786097284103],[-120.76190318204576,54.39790456162602],[-120.76182206331312,54.397903318142966],[-120.76120083450502,54.397964184398504],[-120.76070413627491,54.3980045775342],[-120.759871115222,54.39813268585677],[-120.75908342817728,54.39823915763406],[-120.758590658308,54.39820335003978],[-120.75813887158472,54.39819513274236],[-120.75772964947305,54.39814158171259],[-120.75719196402022,54.39815436812219],[-120.75682902184857,54.39802644497038],[-120.75592782795219,54.39791576883419],[-120.75522612599126,54.397924851914496],[-120.7553429917029,54.398070256091074],[-120.75564983118964,54.39848549281508],[-120.75563185634353,54.398822731328664],[-120.75561739204,54.39908712826112],[-120.75551988149165,54.39935019461801],[-120.7554310310808,54.39946989430934],[-120.75525970503725,54.39958379594221],[-120.75496326624307,54.39972262879998],[-120.75495989705414,54.39979435351662],[-120.7549497299101,54.39996460645432],[-120.75493553481749,54.39999992997492],[-120.75485657446592,54.40017844957814],[-120.7546035491474,54.40029556935643],[-120.75429937044561,54.40055534792342],[-120.75416808581934,54.400719260696825],[-120.75395576024229,54.40083588660064],[-120.75374329055946,54.400953628943526],[-120.75360763938711,54.40116676370922],[-120.75342612738295,54.40145091550823],[-120.7531712229526,54.40161287055915],[-120.7531161786708,54.401876642418934],[-120.75302295194217,54.402045562876744],[-120.75284486231381,54.402302910322575],[-120.75245952997615,54.4025614346994],[-120.7522833028021,54.40277394305446],[-120.7516846840859,54.40317150665305],[-120.75125102954173,54.403550349125226],[-120.75085985701182,54.40392989839759],[-120.75079762317472,54.404310148886864],[-120.75061119360076,54.404692907197045],[-120.7502273321012,54.40492453808176],[-120.74997088600696,54.40511337266218],[-120.74966871028026,54.405372105619605],[-120.74927464501081,54.40577398578916],[-120.74880826629663,54.40603012978352],[-120.74830075492032,54.40625979325029],[-120.74787056177094,54.406565782244726],[-120.74739439438495,54.406988822510634],[-120.74704861507439,54.40727037518178],[-120.74666240547518,54.4075501832696],[-120.74623735360349,54.407785641883414],[-120.74552193553797,54.40808156659126],[-120.74431817784489,54.40823064350484],[-120.74386450182237,54.40822117349695],[-120.74352076050675,54.408229921942954],[-120.74332860515078,54.408233981853414],[-120.74270719269033,54.40829475381555],[-120.74204342719392,54.40835369439318],[-120.74117676818975,54.40836456729881],[-120.74076695619043,54.40833002810157],[-120.74010944910981,54.40829489806161],[-120.73952954151166,54.40833386380131],[-120.73874312107625,54.40841331786908],[-120.73803372028271,54.40857133430248],[-120.73724483399906,54.4087000838507],[-120.73645360911794,54.40880177578505],[-120.73603381384754,54.40896555790937],[-120.73545214946043,54.40904822541991],[-120.73503194002085,54.40918503476731],[-120.73453276212973,54.40927350954704],[-120.7341671303053,54.40936214098005],[-120.73344606182671,54.409716150916466],[-120.7325208453405,54.40953464638395],[-120.72399692992065,54.40633576220813],[-120.71704048516555,54.4035995294073],[-120.70872473867807,54.40132488472791],[-120.70676387192492,54.401042016522716],[-120.70108928202946,54.39966321299436],[-120.69403861060812,54.396238641558725],[-120.68972405701936,54.3920165737511],[-120.68345660582709,54.38722387874688],[-120.68062429898298,54.38447668650554],[-120.67484685496991,54.37974079855265],[-120.6692716351752,54.37488764841021],[-120.66546983735584,54.37127994342441],[-120.66351124673801,54.368256084105106],[-120.66184329816505,54.36442732592424],[-120.65901509465112,54.360601502457506],[-120.65658200485811,54.358140655284444],[-120.66284138605138,54.35425553913997],[-120.66958996510354,54.35111934637753],[-120.67809404971837,54.35065619057324],[-120.68572286451146,54.351456956490736],[-120.6940454538343,54.35048163615369],[-120.6994255882103,54.346421711134774],[-120.69687933638473,54.34087515551454],[-120.69482874953614,54.33819819802538],[-120.69326239112237,54.33488646626226],[-120.69483205438834,54.330992841883436],[-120.69150382232874,54.32780182122067],[-120.6855342259306,54.32579797906418],[-120.6833907598694,54.322775281587745],[-120.69228484902467,54.318887404854685],[-120.70293922005708,54.31499483293488],[-120.70244137850085,54.3145418806943],[-120.70469574415696,54.310597175134944],[-120.7103548483098,54.30768118902722],[-120.71807947542372,54.305393846075795],[-120.72403990961115,54.303847007429],[-120.72940873983816,54.30040552739261],[-120.72480810102314,54.29629770469045],[-120.72061276218356,54.29481271495622],[-120.71367254293115,54.29522061411745],[-120.7038103556464,54.29505152977011],[-120.69551597301333,54.293863000725665],[-120.68896988466281,54.28906668228849],[-120.6833957322223,54.28500431528638],[-120.67978907876588,54.28364240455313],[-120.66973463996065,54.284737841364816],[-120.6612319151022,54.28707771563535],[-120.65429312327184,54.288901872812005],[-120.64697171714053,54.28867819529397],[-120.63954684878298,54.286050502195465],[-120.636628311913,54.28439416613517],[-120.63409574348019,54.28250322436856],[-120.6297915413393,54.28164802699891],[-120.62510037318008,54.28576231519095],[-120.62401216733683,54.29113220627252],[-120.62557795784383,54.29415762794693],[-120.62234996774639,54.29250522844448],[-120.61678543567736,54.2912433678968],[-120.61093055607334,54.290902824633726],[-120.60528021540921,54.2894748677904],[-120.60410585494745,54.289009364276005],[-120.60040116739846,54.28358822158245],[-120.59739366737834,54.276158244383],[-120.5953566071063,54.27227569262969],[-120.59252837019729,54.26913059482358],[-120.58892862785845,54.26598695652233],[-120.58814689723259,54.265359052082715],[-120.58571273125068,54.262276246579006],[-120.58191207042042,54.25855728460103],[-120.58181771109005,54.25575853236557],[-120.58340076507328,54.251821615382966],[-120.58086731127077,54.24832986269971],[-120.57892774946714,54.24501733554483],[-120.5789274070709,54.24045257752786],[-120.58177437558277,54.23605100175289],[-120.58452207771995,54.232516559855],[-120.58354202435702,54.229884908314254],[-120.57965654408632,54.22741991989964],[-120.57712201865942,54.22617438223177],[-120.57059954207598,54.2234832582815],[-120.56836250478827,54.22022003123686],[-120.56661972375208,54.214966060290976],[-120.56478419450542,54.20955680692266],[-120.56185341554968,54.21281247066207],[-120.54441475913116,54.215241304430556],[-120.52289469681654,54.20741925348729],[-120.50346257654948,54.206298459534096],[-120.4874854672082,54.21604891710258],[-120.44969886548388,54.22998152005668],[-120.43170027370334,54.23477772368251],[-120.42547159122005,54.2429962639008],[-120.43494601403872,54.25462482978379],[-120.418511934513,54.26434786573474],[-120.39999578795754,54.26605728975774],[-120.39525071868107,54.2664948704429],[-120.3295511795959,54.282701171262225],[-120.31393568437599,54.27429865821234],[-120.27719231084677,54.26992270380022],[-120.21288534401491,54.272515788839215],[-120.20000570647636,54.2786429714598],[-120.16726134647067,54.29420821535649],[-120.13394111801905,54.29550607636635],[-120.10712693431121,54.28509180263426],[-120.10716026101362,54.28507488239837],[-120.10735207498841,54.28496282413326],[-120.10743159758758,54.28492004251444],[-120.10751119938746,54.284876707290195],[-120.10777039091286,54.28468532447785],[-120.10796291997897,54.28458172414296],[-120.10823176583224,54.28447115651266],[-120.10832606728273,54.28444651520731],[-120.10862439725689,54.284345810993194],[-120.10882834579286,54.284270301368046],[-120.10900480485601,54.28418446680907],[-120.10908304450443,54.284150612395344],[-120.10942061987653,54.28395122658457],[-120.10959891973818,54.2838121046177],[-120.1096792390332,54.28375025580589],[-120.10993825061465,54.283586955417505],[-120.11019566342395,54.28342132039883],[-120.11024377262811,54.283395559997906],[-120.11029244219544,54.283352412380374],[-120.11053563119168,54.28315124877622],[-120.11076211052183,54.283012773114926],[-120.11077697469892,54.283003380175934],[-120.11085648867945,54.28296060522801],[-120.11111501322631,54.28278715596606],[-120.11146775032798,54.28258962488131],[-120.11179954465587,54.28244389537595],[-120.11207284357927,54.282288584536566],[-120.11213765252386,54.282227114741154],[-120.112219084034,54.28215745194281],[-120.11237299852466,54.28194577811643],[-120.11237747671706,54.28187407236008],[-120.11237939575976,54.2818471943303],[-120.11232818118691,54.28169243987793],[-120.11232243422906,54.281557305450164],[-120.11241617682603,54.28133427964441],[-120.11256353182573,54.28119533431656],[-120.11267708223447,54.28111712423423],[-120.1128042176647,54.281038440263416],[-120.11299727627716,54.28091744465864],[-120.11311138557447,54.28082183801806],[-120.11312880592847,54.28079458810336],[-120.11320448193622,54.28058979913201],[-120.11335718737607,54.280386489844226],[-120.11337580551024,54.280350874031974],[-120.11339306565534,54.28032474011974],[-120.11344700461858,54.28021778178197],[-120.11341751972684,54.28018095657458],[-120.11335272077076,54.28002665848891],[-120.1133290716632,54.27990863660259],[-120.11333354735007,54.27986390185388],[-120.11334761521468,54.27965780573934],[-120.11343231632911,54.27952481104798],[-120.1135002359401,54.27945505871533],[-120.11361186208968,54.27937675471393],[-120.1136445436951,54.279350802387405],[-120.11375169620206,54.27915540654591],[-120.1138005181842,54.27911113251169],[-120.10873618240919,54.270200869303686],[-120.10696388884246,54.26990465112234],[-120.1049248207282,54.26954374913211],[-120.10354071035644,54.26935456224979],[-120.10295665465405,54.26914636646492],[-120.10213756808875,54.26846373150078],[-120.10179487193592,54.267676692839636],[-120.10151945788697,54.266851351436515],[-120.10136950537745,54.26614729539104],[-120.10103406984514,54.26524260485507],[-120.10076390494989,54.264340529055254],[-120.10036132476462,54.26343313615007],[-120.10007497184473,54.26276514784243],[-120.09913061303214,54.26200166082042],[-120.09730653225867,54.261450459136206],[-120.09627322729733,54.26099784551778],[-120.09456741645097,54.260645095318175],[-120.09345274108313,54.260423373662746],[-120.09254331292038,54.26008970613475],[-120.09157388557846,54.259676679125995],[-120.09023687500749,54.258826554612874],[-120.08942012080954,54.258143925769154],[-120.08851979415292,54.25769377964885],[-120.0877450300069,54.257363820162816],[-120.08689771522177,54.257108986784615],[-120.08650420929371,54.25704035342148],[-120.08477331899854,54.25703799254916],[-120.08364073215651,54.257049058895035],[-120.08224253319796,54.257055022756965],[-120.08090632080555,54.257139859597906],[-120.07990474701288,54.25719268145669],[-120.07883560715818,54.257245577316766],[-120.0779704621351,54.257262337310266],[-120.077437642564,54.25724980744914],[-120.07718674144084,54.257048749073036],[-120.07689554735639,54.256457436569065],[-120.07661520613776,54.2557104286337],[-120.07646045780393,54.25508307144919],[-120.07609846675702,54.25456808228225],[-120.07581272932764,54.25389891950761],[-120.07489777961293,54.25270789264811],[-120.07416127911549,54.25183238824595],[-120.07335390729254,54.25103377440364],[-120.07208123080666,54.2502236389322],[-120.07066140582947,54.24960465870398],[-120.06916532659613,54.24909993589525],[-120.06805101892579,54.24887854323762],[-120.06706578395,54.248698852058816],[-120.0664822862489,54.248489917673915],[-120.0661005171304,54.24824702992222],[-120.06567693141224,54.24765200506772],[-120.06514787711592,54.246664638889285],[-120.06486056868012,54.24603469629617],[-120.06455866327475,54.2455995913112],[-120.06328366930296,54.24480778096792],[-120.06265829160589,54.24424781594085],[-120.06190774562349,54.243565957834036],[-120.06087891934168,54.243074450742114],[-120.0597667084166,54.242813172253825],[-120.0585418411749,54.24227663151839],[-120.05737692896798,54.241819439327344],[-120.0564737427599,54.24140709141652],[-120.05544503510934,54.24091553807555],[-120.05457102914502,54.24011461686754],[-120.05381498768458,54.23951222425981],[-120.05280299400026,54.23878544792093],[-120.05165456262633,54.23809523213722],[-120.05036812186043,54.237479150574316],[-120.04906530683223,54.23709657675473],[-120.048424064418,54.23676838945236],[-120.04765001428332,54.23643817288512],[-120.04715215517093,54.23595911519585],[-120.04691977705217,54.23548521619497],[-120.04685175281915,54.23456871447087],[-120.04652324487475,54.2335860296925],[-120.04579308417208,54.23263306558434],[-120.0450483455536,54.23187437108671],[-120.04430006962478,54.23119361232351],[-120.04375155859256,54.23047883218789],[-120.0433577170013,54.22949516983671],[-120.04328903233618,54.22859716787425],[-120.0434110315016,54.227820927447176],[-120.04351466947878,54.22727812280945],[-120.04375284607616,54.22673854943362],[-120.04346060363534,54.226185837252025],[-120.04303574764694,54.22562997742509],[-120.04234915050317,54.22499044288919],[-120.04178438697711,54.22450862053453],[-120.04160747718697,54.224145334923925],[-120.02404881241767,54.21946107661351],[-120.02379209532091,54.219515851643905],[-120.02342732449645,54.2193983973868],[-120.02320107022427,54.21924337444627],[-120.02287623601475,54.2190368406434],[-120.02220276615915,54.21896035125233],[-120.0213664925109,54.21900900711385],[-120.02055953304772,54.21914789479782],[-120.01996342257404,54.219401709331365],[-120.019357764991,54.21981408269608],[-120.01847769881644,54.22070800767727],[-120.01797089316749,54.22114324711894],[-120.0174555367813,54.221478023198856],[-120.0170322862495,54.22169652598541],[-120.01663211850075,54.221835810005466],[-120.01594661131682,54.221908168495084],[-120.01542546599181,54.22208361804782],[-120.01512078671298,54.22229560723494],[-120.0147825281335,54.22276501056594],[-120.01454662682282,54.223206865568415],[-120.01418727431886,54.22371512146277],[-120.01413154663824,54.22379329275042],[-120.013848725193,54.223934426874116],[-120.01369056673553,54.22400079459521],[-120.01331576707796,54.22403173334198],[-120.01294536743919,54.22399264629261],[-120.01251210749672,54.22388188267585],[-120.01200328599477,54.22364094435107],[-120.01157342733984,54.22348033400519],[-120.01100649434677,54.22334723262762],[-120.01045156918059,54.22326416664167],[-120.0100787908137,54.22325473294528],[-120.00951521596829,54.2233106137109],[-120.00928602017031,54.22341448399366],[-120.00915438933562,54.22359005665412],[-120.00919374796575,54.22377015290755],[-120.00934978723261,54.22394364469509],[-120.00947683494431,54.2240645678938],[-120.009478167424,54.22429391941314],[-120.0093176921782,54.22438939001217],[-120.0090286869735,54.2245066052803],[-120.00857851505657,54.2246445173147],[-120.00813120747038,54.22472299105469],[-120.00780772747491,54.22474577766766],[-120.00743695600718,54.22469597346411],[-120.00712376195266,54.224568648287274],[-120.00681048793057,54.22444188472105],[-120.00652807328309,54.22435486086099],[-120.0063271264925,54.224330877630095],[-120.0061234990118,54.22432530220936],[-120.00596788181001,54.22436087301867],[-120.00592798953814,54.22444938268422],[-120.00605247494852,54.224601087366764],[-120.00612878786494,54.22471276134678],[-120.00615137783876,54.22486224050613],[-120.00614696433277,54.224932273811774],[-120.00606912100821,54.225069475417115],[-120.00589169020904,54.22517534293732],[-120.00564925761125,54.225237532742206],[-120.00530707499952,54.225269503467224],[-120.00498359045949,54.225292273629634],[-120.00452491279735,54.22528981397433],[-120.00420685464894,54.22522237658347],[-120.00397768668559,54.225127308075],[-120.00383645248257,54.224944982941345],[-120.00376980173723,54.22471407942011],[-120.00362175905857,54.22463144920264],[-120.00338687811384,54.2246153311549],[-120.00313941236341,54.22473852712031],[-120.00301014595973,54.22488442219378],[-120.00291497618555,54.225021331366385],[-120.00290576866959,54.22515069735673],[-120.00283038977464,54.22525767252246],[-120.00268380438507,54.22540327679183],[-120.00243207585011,54.22559537962351],[-120.00213493899543,54.225728479313375],[-120.00173670846227,54.22582734289846],[-120.00142630374957,54.225879416745336],[-120.00129796570492,54.22588655184309],[-120.00122214435392,54.225890666527114],[-120.00122203272993,54.2257855752424],[-119.99987094536799,54.2278558986973],[-119.99992844478982,54.250123232789804],[-119.99931526596804,54.34311052560325],[-119.99966694523232,54.49997260878071],[-119.99951683725754,54.74998859298948],[-119.99928681244211,54.99999578653533],[-119.99941180254012,55.05132163149518],[-119.99980685136008,55.2495177856808],[-119.99929263461331,55.48024813288398],[-120.00063939640023,55.7496587899139],[-119.99925034722276,56.00000990073668],[-119.99949364693383,56.250414413031066],[-119.99968051049284,56.49996084338844],[-119.99956060056219,56.7501540440749],[-119.99950814267358,56.804592761763516],[-119.99924365618268,56.99983570330618],[-119.99955928928506,57.24995844568433],[-119.99972290280074,57.32231605321823],[-120.00004047110602,57.4999575106876],[-119.99994744942182,57.583920911867494],[-119.99968832957931,57.74977540023442],[-119.99887952328696,57.94006017909471],[-119.99860105725239,57.9995493553739],[-119.99969047112869,58.2499030141121],[-119.99992919459753,58.500148069477255],[-119.99942683014221,58.75004424864679],[-119.99922793866786,59.00005016675553],[-119.99919810921595,59.250067449920515],[-119.99921938799707,59.48309749189664],[-119.99922124514032,59.49997161582289],[-119.99919916152649,59.74993694679287],[-119.99920330699027,60.00007332274973],[-120.66830177315488,60.00004752340259],[-121.17493753616544,60.00008972672921],[-121.62033779612963,60.000107243884386],[-121.99963791698053,60.00008299214441],[-122.01531958865687,60.00008709974107],[-122.24976138746257,60.000233353740526],[-122.500494708644,60.00027833842734],[-122.75045247185479,60.000308753270645],[-123.00051482170832,60.00032043545869],[-123.25060350553646,60.0002031589888],[-123.50058714865527,60.00030563815777],[-123.75104376880026,60.000376421992414],[-123.80447834961902,60.000347886311964],[-123.99986584789852,60.00009486749453],[-124.41682898051569,60.00008003567211],[-124.87122148508816,60.00009736628174],[-125.46239518559247,60.000090833536774],[-126,60.000083716676635],[-126.56390405060563,60.00007780784625],[-127.1180194087016,60.0000933348387],[-127.72921450744029,60.00008774269539],[-127.73015237781816,59.99480088072238],[-127.72785486102738,59.98084891782212],[-127.7232004876454,59.97124709027911],[-127.72161969666331,59.95466748820463],[-127.72119212629603,59.948857812220176],[-127.72545239505156,59.94362074203644],[-127.72780524158581,59.94246663755033],[-127.73445019499954,59.940521414165865],[-127.7425382878244,59.93748681496175],[-127.74525599269201,59.933753544662565],[-127.74410994009436,59.923605564133986],[-127.7427978629373,59.91529601532871],[-127.73890582305498,59.907801673534586],[-127.71834967799971,59.898172451895846],[-127.7022557111261,59.89597468012933],[-127.68851194889334,59.89603288903639],[-127.67742365388689,59.900918195547035],[-127.67654087520629,59.89830064440764],[-127.67520348865654,59.89204342504615],[-127.67209139631822,59.88722047985109],[-127.67179429327199,59.881463961021694],[-127.67467480345593,59.8792155578433],[-127.6778966139526,59.87696301419065],[-127.67994215431366,59.87357251667778],[-127.67878006716373,59.86931149458199],[-127.6744854920875,59.866257954441686],[-127.66658595842095,59.864273217899395],[-127.66204253748612,59.86054733114407],[-127.66133472066458,59.85616391397257],[-127.66218068125498,59.85068215626707],[-127.67186579948626,59.851916780458296],[-127.68260554950638,59.85421802985628],[-127.68881063568581,59.856618238696164],[-127.69591582170438,59.85866530720397],[-127.70465545791721,59.85876619778226],[-127.71426818713815,59.85434698422047],[-127.7177081897127,59.84867103420253],[-127.719870630428,59.84208379727895],[-127.72858006048665,59.83807073627243],[-127.73776608040762,59.83468118431382],[-127.74643131424013,59.83266544307303],[-127.75654026262008,59.82994709062469],[-127.76063816951142,59.827114775043185],[-127.76392029189363,59.82371667448951],[-127.77119622948757,59.817838199307],[-127.78505724373612,59.81234345893785],[-127.79389601816949,59.80917964804138],[-127.79856648713894,59.806743882001406],[-127.80494741750123,59.801433175296985],[-127.81077941184722,59.79664226117126],[-127.8145960577135,59.79256122181431],[-127.81545587075264,59.79135319576014],[-127.81517631320237,59.78370776178548],[-127.8104221457231,59.77747928268749],[-127.80609188843701,59.77359389559072],[-127.8037624669143,59.771788266709095],[-127.79949948816763,59.76651609605509],[-127.80301509642126,59.763573259267076],[-127.80913072502233,59.76060569231501],[-127.81012185091058,59.75677753148329],[-127.80576127273493,59.75197488472555],[-127.80062189024207,59.74746114775587],[-127.79593303127899,59.742878495300594],[-127.79229758804689,59.73613170176348],[-127.79090608250523,59.73192053432963],[-127.79089956842363,59.72547816568702],[-127.79188712344433,59.72147048651272],[-127.79246393802303,59.71861080775633],[-127.79461777398096,59.715631891546984],[-127.79530868697442,59.71288772863819],[-127.79089761723468,59.709615326934944],[-127.7875193759672,59.706680485489485],[-127.78740840276338,59.70360478364319],[-127.79047017684142,59.700776321287464],[-127.79169403130265,59.69705369690985],[-127.79191411794176,59.69380284646865],[-127.79076427383195,59.69325079003012],[-127.78283605571045,59.689321634484784],[-127.78008519032981,59.684957189711994],[-127.77794338156163,59.681898531442194],[-127.77512060291717,59.67867759307699],[-127.7700763804654,59.676501501910764],[-127.76505326767439,59.67494576106605],[-127.76140554540503,59.673903287363906],[-127.75216866294427,59.67106876646764],[-127.7472447328789,59.66906133541563],[-127.74520833608784,59.665542158411924],[-127.74405019945819,59.661454200046194],[-127.74088708676588,59.658057075944704],[-127.73864826476152,59.655224149321484],[-127.73515795361182,59.65206493665335],[-127.73442112873659,59.65030182430793],[-127.73816655956638,59.647754147529014],[-127.74472767714568,59.6450091966643],[-127.74815829550988,59.64315791800615],[-127.75036771709027,59.64177172546984],[-127.75140956594767,59.639311641332014],[-127.75113748030842,59.634744987607505],[-127.74970441562152,59.629113437151084],[-127.74965329339614,59.62762972856931],[-127.74991011832421,59.62522455864278],[-127.75101574246608,59.62465290232361],[-127.75703416261562,59.622651917939386],[-127.76598625281585,59.620919344014226],[-127.77476773855872,59.61747013135564],[-127.77838129495335,59.614527304449275],[-127.78132554290387,59.61176388344852],[-127.78552057421773,59.60933520202138],[-127.78866642416608,59.60906990074309],[-127.79283818452018,59.60914215247832],[-127.79440500838433,59.60884308226432],[-127.7954618231223,59.60689533428758],[-127.7976135050132,59.60407883692075],[-127.80063324187572,59.60039648315273],[-127.803010963044,59.597585994152375],[-127.80318183640972,59.59609948347737],[-127.80601323829339,59.593444998123424],[-127.80819968876624,59.59304776647183],[-127.81328263725923,59.59211800377617],[-127.82433674560721,59.5988012378242],[-127.83067493265008,59.60575276752255],[-127.83555510793258,59.60981763691261],[-127.84859259803997,59.61202900356474],[-127.86157381764315,59.61269258702114],[-127.88305221820521,59.61168389019142],[-127.8997082804711,59.608254820354325],[-127.90899492033482,59.60376454098096],[-127.91761611431099,59.5996246751556],[-127.92438588891258,59.59710222126872],[-127.93023175610553,59.594016509919044],[-127.9327680744472,59.58988806686134],[-127.93420679263018,59.58359784519917],[-127.94076951805935,59.57605777456817],[-127.94964583363941,59.5700862720284],[-127.9606874297383,59.56488431425666],[-127.97239154825134,59.562244859605],[-127.99295915083493,59.561798482897686],[-127.99937820800666,59.561949162506785],[-128.00263682734197,59.56321563652372],[-128.01167969206656,59.56655745835637],[-128.02377321926122,59.56551826647551],[-128.03541262727958,59.56460161438421],[-128.0465067294648,59.56641782006556],[-128.05736782477874,59.57177211263944],[-128.0674015341083,59.5784334360298],[-128.07473804302967,59.584846553720965],[-128.07498137227722,59.59096956306662],[-128.08202937333638,59.609622463576585],[-128.09424069158484,59.61572809716023],[-128.1099139168369,59.62312993173052],[-128.12663602331364,59.6296774191301],[-128.14783889466347,59.6340305893384],[-128.16116142990816,59.6376214132097],[-128.1698459040089,59.63803519982485],[-128.17992728510816,59.63703193526954],[-128.19706370829843,59.63418920824639],[-128.21513334634574,59.63026776146352],[-128.23309826708984,59.625949713433194],[-128.24648098157508,59.62381782675202],[-128.2575487302636,59.61960773189267],[-128.26763818021877,59.61802204030142],[-128.2794567526169,59.61913363015349],[-128.30221096105038,59.62501263894195],[-128.31482440003987,59.63048123594191],[-128.32957532709042,59.64065518813711],[-128.3376731788782,59.6506517800204],[-128.3480849806605,59.65878242167896],[-128.35132127069576,59.660410605334285],[-128.3671336720687,59.66074573466424],[-128.38773598503343,59.650009428361365],[-128.39868026843547,59.645789894331415],[-128.42235022274846,59.64313043709419],[-128.41530947046078,59.635135890708796],[-128.4059107688569,59.62678600322761],[-128.399482315876,59.621767876628304],[-128.39321236733267,59.619671249781966],[-128.38356380097255,59.61732633598521],[-128.38951975978713,59.613759862899535],[-128.39149573372222,59.611197419653934],[-128.3893059890434,59.6086075838814],[-128.38048360172223,59.60478168496089],[-128.3722076976714,59.60187275312531],[-128.36860114933958,59.597273306587276],[-128.36863675817477,59.59126216409573],[-128.37172632371636,59.584884103721244],[-128.37773094920055,59.57914001426769],[-128.38239221661348,59.57751261705575],[-128.39760841064154,59.577610899035726],[-128.4100243300929,59.5721415452937],[-128.41258680684768,59.563747335532774],[-128.42732698658946,59.56469630040782],[-128.43435614710017,59.56279180889092],[-128.43165338957795,59.55785449707632],[-128.42966682140377,59.551150170897934],[-128.43268110154926,59.547399495665296],[-128.45609970454566,59.54267759100409],[-128.46941408998973,59.54137978285236],[-128.47435882827818,59.5419215865267],[-128.48740469152202,59.54267825157035],[-128.50115563954836,59.54207137010233],[-128.51641588716225,59.539123395060074],[-128.53304895987586,59.53503297304395],[-128.5435635357502,59.532798287821365],[-128.55347208058637,59.53257141384763],[-128.5605710748092,59.53232369581557],[-128.5868962481493,59.527129840782706],[-128.59390797917257,59.52516345654868],[-128.6220108554261,59.52065840551799],[-128.63126952098753,59.518872572034816],[-128.6388425239995,59.51673126763908],[-128.6656310614963,59.501994873072064],[-128.6682413295445,59.50055791957668],[-128.67437219434393,59.496930755754015],[-128.67545038878504,59.49275305731087],[-128.67553452697516,59.48743387843511],[-128.6770592622239,59.48326560530083],[-128.681936145414,59.480652067991834],[-128.68894455402557,59.47788006323549],[-128.70272347802705,59.47336531306726],[-128.7154660420941,59.470318057099455],[-128.72515582937714,59.4684723419438],[-128.73382027728556,59.46752791925204],[-128.7395404228603,59.46824273864886],[-128.749069805515,59.46970960128819],[-128.75447450198445,59.4688644899285],[-128.75968524155786,59.465800617291315],[-128.7662554242265,59.46153073490577],[-128.7730549774529,59.45686905743189],[-128.7825480458682,59.452377910935084],[-128.7917982249753,59.4488627250657],[-128.80565651758266,59.44490273741104],[-128.8126369830607,59.44315060508986],[-128.82039015438875,59.442606042571754],[-128.82804154345004,59.441199354516456],[-128.83670037104238,59.43978959800649],[-128.84669788751157,59.439188555448],[-128.8564803904567,59.437736443534234],[-128.8661562576749,59.43547604540775],[-128.861085247189,59.42635841033885],[-128.86268937254496,59.42323011508765],[-128.85604121160674,59.41497290381507],[-128.85406502109376,59.41073997571223],[-128.85378978227064,59.39414601208485],[-128.85135679017463,59.39082233767747],[-128.84880031752706,59.3888147324257],[-128.84640574393745,59.3819994778782],[-128.83981250011192,59.380434662778086],[-128.8352393235778,59.378306336605334],[-128.83494613151763,59.37453377432491],[-128.83217200013337,59.37206260278374],[-128.82591626381793,59.37032834955485],[-128.82156119384678,59.36894189373106],[-128.82091536948826,59.36671496986311],[-128.82353873347634,59.362604044173565],[-128.82322583610556,59.36037934852015],[-128.81776504595214,59.35818775195705],[-128.813861232086,59.34702211879722],[-128.8125507082576,59.34409810728538],[-128.80876374949426,59.34260085997626],[-128.8043111432763,59.34046932823647],[-128.80277723307296,59.33766675778898],[-128.80338298451127,59.33377725955641],[-128.80051636761888,59.330111171089676],[-128.80055589778527,59.326674007479106],[-128.7937811360567,59.32253832417768],[-128.79338881924446,59.31812944394599],[-128.7774232468393,59.306694632967044],[-128.77810447472373,59.305781394838455],[-128.7877290046476,59.30523650072596],[-128.7932296603424,59.30348812976937],[-128.79306162262023,59.298912937696166],[-128.79042516307624,59.29512533050043],[-128.7819393852845,59.29424426321864],[-128.7765130888828,59.29016187410412],[-128.77153439412413,59.28631319422959],[-128.76662223621005,59.28578215922362],[-128.7603646284447,59.28570064345354],[-128.75020809051037,59.27651298383211],[-128.7446977877918,59.270830223721696],[-128.73999922764685,59.263035489968516],[-128.73353281203322,59.26238134733501],[-128.72625402999637,59.26378469830372],[-128.71930023634638,59.26581984865346],[-128.70622210628989,59.266571865258854],[-128.69279861285472,59.26788702343306],[-128.68774991189704,59.26946958913795],[-128.67641043155137,59.27302703135331],[-128.66418718010638,59.276006972716985],[-128.651333573466,59.2763536217703],[-128.64306919175078,59.27608053674673],[-128.62070882812327,59.27695696547015],[-128.60648682739796,59.27883641516109],[-128.59499053468218,59.27815379830297],[-128.58779084939812,59.274799434278926],[-128.57841916154393,59.26800477702049],[-128.55836674669328,59.247477379334825],[-128.55518333615447,59.24472153006718],[-128.54876908522093,59.24160274599379],[-128.5398813742517,59.23943762628123],[-128.52089085832026,59.24037093319513],[-128.51196761017133,59.240147197739866],[-128.50985538453583,59.23973603760091],[-128.5045011940082,59.23415890522941],[-128.50291403407687,59.22992512370329],[-128.50519132096107,59.22764450880336],[-128.51012891218681,59.22618770658043],[-128.52075984340485,59.22458167797051],[-128.52860849520866,59.22268419738371],[-128.53815181062808,59.21953200774221],[-128.5493916555306,59.21495385082158],[-128.55314401246596,59.21119726356229],[-128.55566510649345,59.20760732907105],[-128.55737464115717,59.20566911738955],[-128.56993227386556,59.20190109678681],[-128.5675141141929,59.19411359397748],[-128.56470441931273,59.18940890756565],[-128.56274281529124,59.187053443168395],[-128.555889376724,59.18415945343041],[-128.5434469147918,59.18220488479527],[-128.53525947785255,59.1793076157101],[-128.52543216611346,59.174848398082034],[-128.517071117806,59.17514552262041],[-128.5090751409373,59.16858353776182],[-128.51262602803482,59.163627074331075],[-128.5109254143082,59.159665729122764],[-128.50673154338045,59.157755051388044],[-128.5041460656975,59.15356702925864],[-128.49723813916214,59.14844152967424],[-128.48998210606945,59.14416727335827],[-128.4776286153223,59.13889672032137],[-128.4955272087138,59.12361116362205],[-128.503933672755,59.12050904133955],[-128.51413099541324,59.11668129490004],[-128.52132341750107,59.11288100157042],[-128.52598449555146,59.107760246910935],[-128.52765043431324,59.10221799297453],[-128.52332366347503,59.09619263264331],[-128.51925376864943,59.093992657069926],[-128.51592349074792,59.093927863249924],[-128.50932462113929,59.09594574678492],[-128.501808727147,59.09927472250628],[-128.48631797079136,59.106569099484766],[-128.45587473999842,59.110911120729],[-128.42969414632063,59.09834022052622],[-128.42683593609388,59.09203441856338],[-128.42039731718586,59.082042822060004],[-128.41861426879032,59.0775161498133],[-128.4190281645868,59.074029607484945],[-128.4230821799115,59.07153968567791],[-128.42933953714294,59.069855727203766],[-128.43282721241522,59.06782505372159],[-128.4325609310829,59.064907951466296],[-128.41633790819526,59.045983041074265],[-128.41264792842122,59.04236219170555],[-128.41281750525232,59.03978812562087],[-128.4242504538643,59.029904439784055],[-128.43252620564144,59.031843414890254],[-128.43858407320823,59.033767452451094],[-128.44448263292895,59.032943189177686],[-128.46494337193545,59.02557362208503],[-128.47057592448695,59.021372831161806],[-128.46805306845422,59.01500862517847],[-128.46613928205198,59.01127642851499],[-128.46910777046585,59.007177627606964],[-128.48136054154025,59.00050166436066],[-128.48169610159036,58.9999831795406],[-128.48304135679433,58.9978102950049],[-128.48395421943698,58.99439570842457],[-128.4839716803295,58.99221994253877],[-128.4846797310928,58.986849405154004],[-128.48281497068183,58.98507637939355],[-128.48270618578715,58.98489856569048],[-128.48459650431388,58.983479908725094],[-128.48869860400123,58.982227782352574],[-128.4919117829441,58.98137825876218],[-128.49600437859905,58.98126772822291],[-128.49977209222467,58.98036295587201],[-128.50365829561395,58.978143464779436],[-128.50534956331362,58.97397742606761],[-128.50558818972064,58.97179765099459],[-128.5054943697955,58.969237432947935],[-128.50506741134066,58.96734852570932],[-128.50308965341645,58.96562284266411],[-128.4994496953349,58.964700583076564],[-128.49823588045388,58.964533981563086],[-128.49293856535436,58.96343506031],[-128.4863183304717,58.96217122134964],[-128.4816829028086,58.961356487159456],[-128.47793364051066,58.96026487081933],[-128.47727328065304,58.959863337868725],[-128.47574592956184,58.957401047779655],[-128.47532607458524,58.95506253736352],[-128.4753398933253,58.95351619695924],[-128.4767954245195,58.951404426554866],[-128.47681562997212,58.94842875278204],[-128.476283732458,58.9462630934498],[-128.47498520803228,58.94311356670237],[-128.4752074038629,58.94294774720334],[-128.47346644122467,58.939914098724365],[-128.47194765994726,58.93659778164869],[-128.4704174392602,58.93454008025498],[-128.46954780802085,58.933054696680976],[-128.47000031811908,58.93173418808561],[-128.4716762032599,58.92974438775083],[-128.47467768706272,58.927397999230564],[-128.48055441031434,58.92404660744954],[-128.48476266207146,58.922567951260255],[-128.48851994189303,58.9218344341902],[-128.49360665169877,58.92122037653698],[-128.49692168401978,58.92030593408775],[-128.5041209964769,58.91728887297381],[-128.51209060488614,58.91433816073544],[-128.51828160279817,58.91262423193777],[-128.51840763556598,58.910401743602726],[-128.51842705310878,58.907543045871044],[-128.5185498865617,58.90565320488577],[-128.51878424063818,58.90388715032851],[-128.52276141285796,58.90326545912658],[-128.52729278503557,58.902237905583156],[-128.5320432814636,58.90121512505584],[-128.53481191199936,58.89950989635969],[-128.53735973630413,58.89797050528279],[-128.54101629353042,58.89558350640124],[-128.541474142049,58.89272566378371],[-128.5404970357693,58.8900922795422],[-128.54149798617215,58.889237736883665],[-128.54657098245647,58.889017380183525],[-128.54944152771955,58.88890988233297],[-128.55032458634165,58.88862374017341],[-128.5532073686007,58.885765495170496],[-128.55344880199516,58.88257012490033],[-128.55302878182727,58.87943208204355],[-128.55172211839874,58.876679148615956],[-128.5497539799381,58.873884647050104],[-128.54976289851973,58.87256322024729],[-128.55087483171386,58.87085267048604],[-128.55309490250625,58.8686270406278],[-128.55509508448498,58.86600102977518],[-128.55554212085897,58.864860159341575],[-128.55511221520223,58.862917799236186],[-128.55379997198366,58.86102791385095],[-128.55248948961915,58.85925483452255],[-128.55106767319322,58.85742091560843],[-128.55019779258703,58.85582833529319],[-128.5514167219104,58.85434051050059],[-128.5555038152234,58.85286189088307],[-128.5608004005446,58.85132449353367],[-128.56565573291962,58.84989405343606],[-128.56709203236215,58.84887835698918],[-128.56920054642669,58.846762446855145],[-128.57086635689762,58.84407962698222],[-128.57164797877903,58.84179095896611],[-128.5716654383623,58.83899541146429],[-128.572007986696,58.83682288884272],[-128.5720181816588,58.83505210302985],[-128.57235808323523,58.83316724858513],[-128.57600125417017,58.831453705582504],[-128.58107449519562,58.829919714006664],[-128.58780005520472,58.828219357563476],[-128.58802179132758,58.82775677269394],[-128.5916723910994,58.82421814878963],[-128.59597885843235,58.82119721583173],[-128.59862980775424,58.81948397399497],[-128.6013944786933,58.81633946860741],[-128.60394127985268,58.81337882837917],[-128.61012639262006,58.80829932340361],[-128.61498314214379,58.80424266593993],[-128.62204329784004,58.79973900500373],[-128.6297590709269,58.79562675639813],[-128.63053039108772,58.79540514901165],[-128.63483216267846,58.792544852293574],[-128.6382531689513,58.78861399657052],[-128.63969447176092,58.785575262154566],[-128.64113972712488,58.780954658987625],[-128.6412519482017,58.779748170632665],[-128.6410474262808,58.77684022950713],[-128.64138320639563,58.77444308277075],[-128.64226794411277,58.77215212284859],[-128.64304058615434,58.7713552282736],[-128.6460209484,58.768322534576946],[-128.64822742730524,58.76563736728802],[-128.65098267461576,58.76330096872261],[-128.65340530227542,58.76164504230961],[-128.65780236636405,58.761020004280084],[-128.66351496712386,58.76130375457718],[-128.66922465268632,58.76217149865532],[-128.67098580703356,58.76239757640994],[-128.67460708865755,58.76342290980343],[-128.67779205870926,58.76474433371726],[-128.68284770496297,58.76423134703678],[-128.68977066948347,58.76434634659923],[-128.69537012529716,58.76561064657966],[-128.6983324188915,58.76777186044991],[-128.70239946702105,58.768580936529624],[-128.70899534548334,58.768584632048345],[-128.71547798128591,58.768356589678284],[-128.72327947457933,58.76949494089482],[-128.73239988758965,58.77166693814222],[-128.73547591093765,58.77253089475822],[-128.73954288545312,58.77263784837509],[-128.74657954625033,58.772469085859825],[-128.74756627915025,58.77229637976518],[-128.7522926796887,58.77155377261825],[-128.75712959622595,58.771725520044654],[-128.76273343575727,58.77337352275452],[-128.7686710465244,58.77372025726306],[-128.77284908407836,58.77366217890815],[-128.7762553967785,58.773889352814344],[-128.779994851863,58.774577015232566],[-128.78504767278594,58.77468045700759],[-128.78977511456605,58.774511751007275],[-128.79285202932203,58.773316162828486],[-128.79251790754194,58.76982667573035],[-128.78977136389815,58.76668328032206],[-128.78812102211745,58.764739754564644],[-128.78713125378883,58.76331297582943],[-128.78657673751283,58.760627968959035],[-128.78690751016703,58.75914718762034],[-128.7871250669672,58.75691375031007],[-128.78635442767128,58.75451181681044],[-128.78525483307874,58.7527996929209],[-128.78690435373568,58.75280186464634],[-128.79525076397002,58.75142627310732],[-128.8045872982846,58.751018411279055],[-128.81216962130836,58.752560595283214],[-128.8145869729308,58.75323862626007],[-128.81953147823276,58.75472711067972],[-128.8241456122524,58.75569199332139],[-128.82722528116133,58.75569095032067],[-128.83315723231476,58.756088863847495],[-128.8367825825938,58.755626838976106],[-128.83556859830654,58.75351299394301],[-128.8336998924562,58.752320572800514],[-128.83325539618272,58.75065806640834],[-128.83644013632752,58.74905475842578],[-128.84115992772286,58.74807544261758],[-128.84192247036157,58.745740618910624],[-128.84422201858652,58.74247487193082],[-128.84805976843157,58.74012960666202],[-128.85310839370868,58.73870256328036],[-128.85859475401745,58.73766159564712],[-128.8640830241705,58.73674619287633],[-128.86836594226375,58.736853658473514],[-128.87166321415484,58.737709834738034],[-128.8772695477733,58.73970352462311],[-128.88078956871763,58.74181311331037],[-128.88506575154764,58.73992484926964],[-128.8894518979646,58.7379711934644],[-128.89658204186694,58.73585111334077],[-128.90283246980687,58.73412693213128],[-128.90425845496227,58.733781898873964],[-128.91061823123124,58.73194715650284],[-128.91061425386275,58.73125515572765],[-128.90873876743947,58.72846403963183],[-128.90520758393924,58.72423427151708],[-128.9034448166239,58.72241141773063],[-128.90223229432397,58.7212688747641],[-128.90069174181568,58.72001648167384],[-128.89760964394594,58.71767345947272],[-128.8970544106288,58.71641800421708],[-128.89803617001013,58.71430290297254],[-128.8981368678568,58.71259306647098],[-128.89439274085277,58.70928446165195],[-128.891649750404,58.70860586172366],[-128.88615648241193,58.706835224923346],[-128.88538854144966,58.706438099997605],[-128.88142802996754,58.70387078434478],[-128.87900908110058,58.701863897972046],[-128.8777975139757,58.70021787564872],[-128.87855644215477,58.6980447837188],[-128.88107317040436,58.69587037365473],[-128.88632639848413,58.69260423349465],[-128.89080953961633,58.689911502947375],[-128.89398559527726,58.68796547827299],[-128.89551967904922,58.68761821884464],[-128.90143727326435,58.68646735227288],[-128.9077879462484,58.6846328846589],[-128.90975729999673,58.68326054859637],[-128.91117021065014,58.680686799653245],[-128.9115983784283,58.67868239639198],[-128.91652354948695,58.67719262316519],[-128.92441812308007,58.67718459391945],[-128.93143735154004,58.67813870228387],[-128.9395528240564,58.679329370671255],[-128.9428470439394,58.679662460082326],[-128.95106825246071,58.679996334411875],[-128.9540296751779,58.680048781670536],[-128.95928306146175,58.67883788889265],[-128.95972207457032,58.67861261459755],[-128.96124573703614,58.677006540906596],[-128.96757898790216,58.67265302195315],[-128.97566668020488,58.669384215299424],[-128.98277368324287,58.66622634107466],[-128.98418148066062,58.66393948585293],[-128.984279276186,58.661645479688644],[-128.98688898034916,58.65900861486643],[-128.99541586988926,58.65579183500652],[-128.99836369958564,58.65436061010931],[-129.0063441968904,58.652170796469],[-129.0143318646915,58.65089708348935],[-129.02243255730465,58.650312427181674],[-129.02670276348937,58.650298125346815],[-129.03558030225403,58.65079185640969],[-129.03579720262746,58.65050838169424],[-129.03490093124785,58.64816464634743],[-129.03333196002256,58.6433104101723],[-129.03222228872212,58.641537682254956],[-129.03089222051764,58.63954518574232],[-129.02956357286035,58.63748973976091],[-129.02702987503042,58.635667904406034],[-129.02493773592116,58.63396200945007],[-129.02437644378224,58.632132084600734],[-129.02327469996175,58.63088042492732],[-129.0193231671643,58.629458567112934],[-129.01405512615662,58.62787713676055],[-129.0095548879853,58.62588303218506],[-129.00505288377366,58.62405959252394],[-128.99978301556996,58.62172276069307],[-128.99517269813288,58.61928130455265],[-128.9997541356529,58.61772408132334],[-129.00761515180218,58.61479981554209],[-129.00946952681804,58.613994745749665],[-129.01439222250883,58.61393030192545],[-129.02227344399583,58.61419518866375],[-129.0305785681338,58.612922298044644],[-129.03570939026133,58.611306601520816],[-129.04292317789262,58.61020117146953],[-129.0483812779326,58.60893712710355],[-129.05645840919564,58.606688116400235],[-129.0625751251406,58.605696225830584],[-129.06421053770268,58.60534469878296],[-129.0749062052491,58.602298354659425],[-129.08187725539253,58.59912919498142],[-129.0862225906998,58.59609139853375],[-129.09166408093915,58.593217183892705],[-129.09491979342718,58.59058143271057],[-129.0968524935582,58.586807496248234],[-129.09615789256546,58.58268919785567],[-129.09580602406334,58.580234720795346],[-129.10091343635352,58.57708016874292],[-129.1096477854852,58.5760260873901],[-129.11019258930628,58.57602256288759],[-129.12718582664834,58.570598266029066],[-129.1309834221951,58.567724422269436],[-129.13216916668614,58.566241047265656],[-129.13498935496776,58.56451311394208],[-129.14065376610955,58.56266523713852],[-129.14697946258664,58.561673515042536],[-129.15025006893057,58.56109414666593],[-129.1504488859229,58.559327997854496],[-129.15030534428954,58.556293622526894],[-129.15026318863917,58.55217842775594],[-129.15164511453273,58.54902767647778],[-129.15442134832563,58.54353471132046],[-129.15462063206513,58.54165174614077],[-129.1523060343829,58.53982738375905],[-129.1478180062937,58.538700651838305],[-129.1443182761445,58.53796421630048],[-129.13578774301274,58.53679619526766],[-129.13261550563854,58.53629452506075],[-129.13185077594184,58.53629425794455],[-129.12922296810302,58.53544738814923],[-129.12832051925668,58.53270028856334],[-129.12893965675528,58.529100198899485],[-129.13043152006816,58.52595622430386],[-129.13051281671483,58.52309653227857],[-129.1295991204028,58.519325259212486],[-129.12926846529857,58.51898242835724],[-129.1292604513054,58.518074952302605],[-129.12879409592728,58.515389727164695],[-129.127573478396,58.513279136218436],[-129.12689835967086,58.51139856660551],[-129.12556429241886,58.50911086572461],[-129.12424678713865,58.508314553787216],[-129.12084622729907,58.50661376279005],[-129.1196311336773,58.50506916534512],[-129.11907363483584,58.50387783634299],[-129.11720408135008,58.50244717916616],[-129.11687219929894,58.50193361665852],[-129.11935839473563,58.49975544863145],[-129.1212951030075,58.49700580682615],[-129.12257124093065,58.49374120715912],[-129.12395231788005,58.49037532743591],[-129.12568058093515,58.48876273968574],[-129.12770311731688,58.48413288746642],[-129.12951363968926,58.479957247871155],[-129.13067529135853,58.47674918286045],[-129.13579286216753,58.47610926388954],[-129.14178825221373,58.476086760124616],[-129.1512765503575,58.47673739722922],[-129.15858256440748,58.47723173833346],[-129.16050902042463,58.4739066285101],[-129.1637290782135,58.469436886773465],[-129.1654283893239,58.46572164212097],[-129.16779327839203,58.46279953997412],[-129.17103620078976,58.46089919086699],[-129.1780972987569,58.45910663208572],[-129.18515946473536,58.45742150337721],[-129.18580946635677,58.45719049301412],[-129.19034205051435,58.453803428511264],[-129.19195195580332,58.451914181906496],[-129.19380375267062,58.451852405853366],[-129.19904670099913,58.452914450613875],[-129.20502575338344,58.452260390378235],[-129.21023936679438,58.45098623109693],[-129.2150033937206,58.448967713016685],[-129.21832847456335,58.444844572897374],[-129.21918979945622,58.44397930718627],[-129.2211485866273,58.44403141747144],[-129.2270672160984,58.446864534986695],[-129.23014129475155,58.4487949865859],[-129.23265416953288,58.449471719065286],[-129.2388563956991,58.44905342865906],[-129.2397276157285,58.449041505426855],[-129.24548730055034,58.44804939986343],[-129.25144998520983,58.44619842299753],[-129.25511977785544,58.44389026207513],[-129.2562970511182,58.442459948494836],[-129.25376069842775,58.44018461957053],[-129.25001890885952,58.43729126912908],[-129.24672050975082,58.434953317068064],[-129.24396264955118,58.432287780327975],[-129.24206731510395,58.4289724333293],[-129.24135614876002,58.42469405367919],[-129.24129500649698,58.42029224145391],[-129.24286778182912,58.415941034139344],[-129.24669954690043,58.40981010066116],[-129.24915183152422,58.406201489989556],[-129.25184973132866,58.40464474053592],[-129.25973849132987,58.4011293371954],[-129.27945354431347,58.395672763604864],[-129.29389224711295,58.394071572412415],[-129.31276192937307,58.39084126586005],[-129.32514436529584,58.390158874438505],[-129.33742099125865,58.38957680737347],[-129.34926413097128,58.38906729441165],[-129.3570699162302,58.387713785519445],[-129.36096500654298,58.38661018836681],[-129.37191913419153,58.38512331023449],[-129.37474889442288,58.38527713005534],[-129.38290224228302,58.38524341547796],[-129.3894074568293,58.38440592320549],[-129.3923441727741,58.384394921712016],[-129.40104487472786,58.38457997953342],[-129.40661932705797,58.38637132485232],[-129.41045977367745,58.38812547437456],[-129.41235405230069,58.39057588515998],[-129.42168890403713,58.389844890875366],[-129.42821690067927,58.39002946365867],[-129.43355062763692,58.39039693845297],[-129.43377664854106,58.39080458502663],[-129.43555651348288,58.39284422816907],[-129.4387807253883,58.39659950979173],[-129.43970352511454,58.39939794298514],[-129.44094714246708,58.4017298437742],[-129.44463806007968,58.40702795415963],[-129.44631011539073,58.40907927355375],[-129.44820927994272,58.41163705602522],[-129.44881664483177,58.41494687048373],[-129.4485264648862,58.41677874634835],[-129.44996107071358,58.41768573508714],[-129.45693575678007,58.41833396325953],[-129.46260572407488,58.41887154475805],[-129.46891615138549,58.4188351863285],[-129.469052651016,58.42026070756503],[-129.47177952233773,58.425906698874996],[-129.47427241700353,58.430749821789966],[-129.47528357567992,58.43239550518889],[-129.48114049088807,58.43116594595931],[-129.48839190360292,58.42928889292954],[-129.49373484652307,58.42966291604943],[-129.49791770462645,58.43203517778227],[-129.50216141879005,58.43183518662118],[-129.5116061994023,58.430753755409995],[-129.5171360717723,58.429692897913064],[-129.51810134464625,58.42894868097109],[-129.5209025382933,58.427662201135256],[-129.52499724293125,58.425640791171595],[-129.52789633085496,58.42390219763325],[-129.5314364547352,58.4215984826743],[-129.5345417960162,58.41924315084105],[-129.52774099835182,58.41676079742225],[-129.52498642488038,58.41517905607546],[-129.52275807215239,58.4128555003835],[-129.5213778616898,58.409323375486466],[-129.52126613313052,58.40423020490898],[-129.52125944042362,58.40388884407705],[-129.52134379327686,58.39765813356249],[-129.52240885435558,58.39159057870917],[-129.52299095774433,58.38833082526858],[-129.52317319166667,58.386789179270025],[-129.52235099042647,58.38381781292082],[-129.5215483331198,58.381942423652255],[-129.52267163345698,58.37861463420792],[-129.5265298492788,58.37608705399925],[-129.53299475759272,58.37346404409832],[-129.53857406055295,58.3702887791329],[-129.54069770101265,58.367995073132626],[-129.54423372605615,58.36093675596494],[-129.54513825967075,58.35750670536836],[-129.54641368084307,58.356295763205445],[-129.54981990216342,58.3532401450683],[-129.55408086816843,58.34955971685122],[-129.5540183225036,58.346703385099154],[-129.55392885952736,58.34276030922581],[-129.55985556759208,58.34077923947581],[-129.5686734863371,58.3369507454304],[-129.57767738895654,58.33197530504398],[-129.580985791371,58.329550577199406],[-129.58865867220106,58.32355826569655],[-129.59635649782012,58.318589381007136],[-129.60343254200603,58.314939854609875],[-129.6067049163151,58.31114036637089],[-129.60791559215912,58.30736018784854],[-129.60766652133722,58.30599182013129],[-129.60720692731732,58.30051295930269],[-129.60701612134295,58.296914223514],[-129.61107423843808,58.29442366723318],[-129.61776997885323,58.29323704593863],[-129.62241359318514,58.292518818065005],[-129.6258596600605,58.29157210934744],[-129.63004478025678,58.28977852372376],[-129.63431992744864,58.28722743899185],[-129.63438947272493,58.28574266733713],[-129.63138359951407,58.28250766358159],[-129.6290619725728,58.280584231568355],[-129.624439981899,58.27786907509811],[-129.62116840979374,58.277031628480984],[-129.61778960627277,58.276143072731095],[-129.61495189061003,58.27541961811957],[-129.60881604726305,58.27266383328872],[-129.6066008928366,58.27062039417441],[-129.60580695676214,58.26914090382895],[-129.60367151004246,58.2659000503644],[-129.6032760667138,58.26298096979928],[-129.60218139636493,58.262480116484454],[-129.59969767899034,58.262834286896414],[-129.59331094180783,58.26310417230594],[-129.59047696457986,58.26232623161981],[-129.58372755049098,58.26094283197365],[-129.5764198974575,58.25888201267054],[-129.56900532556423,58.25669785367784],[-129.5651856245119,58.25546932649239],[-129.5608252513802,58.2542370655797],[-129.55364161430822,58.25257618860506],[-129.55144435963518,58.25126840463213],[-129.54967503981797,58.24957185375857],[-129.54550616419726,58.24724673892775],[-129.54115683209682,58.24647189837279],[-129.53500510193444,58.24737088901003],[-129.53159399745044,58.2499138829388],[-129.52657260117434,58.252975355778496],[-129.5217157130561,58.25380374940422],[-129.51470890492118,58.25544308690156],[-129.50725820210417,58.25651853084745],[-129.4988289008841,58.25743034528424],[-129.49820854008112,58.25892021797839],[-129.49444711601615,58.26031213456119],[-129.48907628918616,58.26245565700198],[-129.48618819533198,58.264309886178744],[-129.48104067977877,58.26695947791313],[-129.47677676016627,58.27042169698132],[-129.475646607897,58.273398365807836],[-129.4742676029758,58.27489876313982],[-129.46999429154081,58.27800155970977],[-129.4594289435309,58.28080806027197],[-129.45480873984255,58.28289486766376],[-129.44785135472702,58.287332928609764],[-129.44689959045866,58.288705248612175],[-129.44439981459865,58.29398125225589],[-129.44135148143837,58.29896573956282],[-129.43921133840587,58.30046727222865],[-129.4313037746794,58.30662711995664],[-129.42778154778335,58.30967339649109],[-129.41992054328043,58.31280302301405],[-129.40480698909946,58.31694268376506],[-129.39153084159705,58.32078265966092],[-129.38407516981553,58.32254298705511],[-129.37736299216868,58.32354737149655],[-129.37399646217688,58.323335311559816],[-129.3677824868908,58.321765720771204],[-129.35819925049321,58.319812752162804],[-129.35645876532604,58.319424873168565],[-129.3493759459901,58.31757063695408],[-129.34447673285527,58.31684788532914],[-129.33967999532655,58.315277761590444],[-129.33356622477493,58.312958380964105],[-129.32756240585118,58.31065399859388],[-129.3232981061184,58.30854900447916],[-129.3202248921562,58.30638753185669],[-129.31758419032704,58.303828959287515],[-129.31714589038853,58.303606151858254],[-129.312012057199,58.30140549246956],[-129.31036806273465,58.30032281033013],[-129.30805824815198,58.29816028764769],[-129.30478941746543,58.29715346088805],[-129.30044085757797,58.29642465932066],[-129.29815687287373,58.295977539452885],[-129.28978241072517,58.29435874348362],[-129.27795948899103,58.29411743427537],[-129.27080614877892,58.294381522804855],[-129.26202023105105,58.293966053533275],[-129.25343296748576,58.292511940431005],[-129.2464658568953,58.2904790863597],[-129.23678179867312,58.287891398975376],[-129.22786451471964,58.285751846287475],[-129.2154177587437,58.27906017372795],[-129.20458272995202,58.27075680445551],[-129.19943683274036,58.266369297186635],[-129.1917789326797,58.26046013244447],[-129.17969891267808,58.25587724092442],[-129.17037841862046,58.255055433861564],[-129.1612614620255,58.25359932105755],[-129.1574536134239,58.25207179019928],[-129.14831953641718,58.2487825273573],[-129.1399529617963,58.246184466454835],[-129.11816767386168,58.24390721108919],[-129.0941146909035,58.242720855416806],[-129.08708295470603,58.243143238839366],[-129.07455514830883,58.246772525722726],[-129.06723530523777,58.25165621827536],[-129.06368025632625,58.25383948884966],[-129.06324635796096,58.25366971742411],[-129.05845160577795,58.25007783672402],[-129.0490893315654,58.24421803170778],[-129.03758399957692,58.24075977186878],[-129.02848217337598,58.239977247912435],[-129.02317530061345,58.23970159677366],[-129.0223080922733,58.23947857905232],[-129.0174175278443,58.236920626908905],[-129.0117731509881,58.23487349651854],[-129.00906224094,58.23401803074175],[-129.00212102484133,58.23209839852736],[-128.99106439631777,58.2299468179737],[-128.98435080864252,58.229332721605225],[-128.97872133131995,58.22928709925881],[-128.97719931593605,58.22768601592048],[-128.97251970882044,58.223639753460304],[-128.96546485531195,58.219879427342214],[-128.95993354045396,58.21754932383584],[-128.95267158557817,58.21539184615071],[-128.9447684640791,58.21432595858511],[-128.9389238653582,58.213924146884246],[-128.938923211154,58.213699602589124],[-128.9367459176212,58.21135797969336],[-128.93457235569582,58.20924979132398],[-128.93110814500727,58.20833747596811],[-128.92754151711375,58.20914291636472],[-128.92257157510826,58.21006865921472],[-128.9177020955489,58.20996805827447],[-128.91488686731455,58.20940050194224],[-128.914451241351,58.20853869612005],[-128.91303155347296,58.20551560362781],[-128.91161575577416,58.203453510756226],[-128.90501933363504,58.20294982333733],[-128.9008064184885,58.204505069789064],[-128.90080740423736,58.20484636636796],[-128.89962903734855,58.207871851625086],[-128.90028791812549,58.20976181191154],[-128.9002980056147,58.21295922752486],[-128.89900693915152,58.21444223548008],[-128.895547054081,58.21501994428099],[-128.88689090168995,58.21469448426649],[-128.88039781452756,58.21372923717493],[-128.8742270746287,58.212936419331925],[-128.87206449879397,58.213566557893984],[-128.87304026823074,58.213851055536416],[-128.87489278271585,58.21779041574324],[-128.87641751399073,58.22047032735132],[-128.88281375369695,58.22435707585962],[-128.88283444619444,58.22955731950848],[-128.88371319356898,58.233787045281204],[-128.88307401736003,58.23669306783429],[-128.88080949675887,58.23852915519647],[-128.87756581038553,58.2409880070486],[-128.87487020048044,58.24362367412989],[-128.87379652072926,58.2467096337556],[-128.87370098774542,58.25070883404917],[-128.8751213306132,58.25391210553355],[-128.87643191384691,58.25733330927443],[-128.87763586339705,58.26099933160489],[-128.8780833052555,58.264708520128885],[-128.87732415228402,58.26470681565242],[-128.86713753505572,58.264089218374686],[-128.85998453779624,58.26289431103113],[-128.85532295140226,58.26193354166126],[-128.84871127248516,58.26022353493028],[-128.84469503064773,58.257766642179014],[-128.8366749170002,58.2543523236822],[-128.82735397813119,58.25218653689298],[-128.82172231155837,58.25161334610784],[-128.81479049095284,58.25082466169424],[-128.81121492298303,58.24985763089476],[-128.80179228056383,58.24842879010754],[-128.79345368348467,58.24791986593546],[-128.78977054630218,58.248095228318626],[-128.78804197633087,58.250897564461425],[-128.78707091725002,58.25421410336457],[-128.78317174359927,58.25610033192668],[-128.7767806197005,58.25495716391367],[-128.77006401908199,58.25387430579274],[-128.7610735921982,58.25342170339223],[-128.75620146433099,58.25571333778357],[-128.7539270179843,58.258508436108926],[-128.7512195503926,58.25913875233757],[-128.74179678833747,58.25919667158714],[-128.73388558864698,58.26050757245914],[-128.72630369815133,58.26188317034287],[-128.7231613836517,58.262800167563746],[-128.71709134000022,58.26691096525282],[-128.7134003489039,58.27113513759672],[-128.71144883943532,58.27366249030083],[-128.6985542752935,58.27142510503246],[-128.6914035617369,58.27124516799176],[-128.68273323859898,58.27176882220143],[-128.6806773382928,58.27188170204242],[-128.67765075314998,58.2674781762937],[-128.67484261226812,58.26410314818945],[-128.66531655698176,58.26164291821805],[-128.65578437939078,58.26043956372929],[-128.64701501528083,58.25946301601276],[-128.64625677649678,58.258660650221984],[-128.64335321537612,58.25271829987698],[-128.6406577786638,58.24882855199991],[-128.63753130034175,58.244650866900415],[-128.63450833046306,58.242078731802415],[-128.6352704324206,58.24116566600926],[-128.63831086268388,58.23842959062792],[-128.63735151526066,58.233796242304656],[-128.63292166192974,58.23155710749269],[-128.6220999297787,58.23092470111363],[-128.61625196533063,58.23182911725364],[-128.61302148250246,58.228173944097726],[-128.60761996141062,58.225423074288656],[-128.60525173287982,58.22217311000394],[-128.60213271294086,58.21770732506588],[-128.59738801110117,58.214449448042295],[-128.59307031149788,58.212269833997944],[-128.58984288247333,58.20826396279743],[-128.58651940885244,58.20203273683213],[-128.58243690517762,58.19694764146023],[-128.57887715503966,58.19482491819116],[-128.5779090308425,58.19379282768997],[-128.57900713418695,58.190484912909625],[-128.580231400173,58.18351061895554],[-128.57939395466755,58.17808471653368],[-128.57790781361354,58.17265336396841],[-128.57543619672606,58.169791319130276],[-128.57350465780118,58.16744869961036],[-128.57038684917327,58.16389855787779],[-128.5678172689098,58.15954762947709],[-128.56534694354858,58.157376901628794],[-128.55585640897675,58.15456796724753],[-128.55570393671064,58.15454505858273],[-128.55568089410426,58.15454998802358],[-128.55559526879284,58.15460325532039],[-128.55550715918875,58.15479126760561],[-128.5557601279364,58.15496267206446],[-128.55503658369605,58.15557138625817],[-128.55419930438137,58.154314457161156],[-128.54845832952907,58.14569319935894],[-128.54466407546352,58.13999364410144],[-128.53869057828965,58.136564548325694],[-128.52775903234541,58.130288118867576],[-128.52504245892186,58.13149996825234],[-128.4945618499224,58.14509250318451],[-128.49457945844082,58.14532451908808],[-128.49454969823148,58.149383804025405],[-128.49311230131113,58.15378359154964],[-128.48844595701155,58.156860526646064],[-128.48832902301484,58.15776963442167],[-128.4813951619942,58.16056514097647],[-128.47069065607334,58.16208291225444],[-128.4660400498799,58.162590606090035],[-128.45080539869426,58.16295986199929],[-128.44433301009238,58.16202747183714],[-128.43830876504114,58.15904830517608],[-128.43036457801085,58.153885847801504],[-128.4266121815524,58.150559703573926],[-128.42445273902732,58.15055390164838],[-128.41966295809874,58.15470807610742],[-128.41790418830246,58.15790949878367],[-128.4137339879908,58.164638325302455],[-128.41207915379533,58.16829576515321],[-128.40890534327633,58.172456405076346],[-128.40681335123872,58.17645389009485],[-128.404846912511,58.17862627676635],[-128.40256637436232,58.17987040392795],[-128.3992055099401,58.18072077287396],[-128.3917476129862,58.18064748596491],[-128.38937555164333,58.18018693224253],[-128.38246298746338,58.179708321494346],[-128.3759842725234,58.179176773985404],[-128.36613861898383,58.18006024607843],[-128.35735938274075,58.182262151808516],[-128.3513947135557,58.18413579014287],[-128.3449630696522,58.18869314146834],[-128.3350962670274,58.19122683905505],[-128.33172864945476,58.192587418495485],[-128.316961974282,58.19751250921422],[-128.3033928920468,58.20175091661075],[-128.30273823969378,58.20221111634966],[-128.29423178771714,58.207555823358646],[-128.29044827586367,58.215486311461994],[-128.2892062203343,58.21947637081014],[-128.286549200426,58.22438848207557],[-128.28992272043808,58.231029645349636],[-128.2916252740788,58.233317307904436],[-128.30162860654116,58.23832742204154],[-128.3017312916332,58.23855913187545],[-128.30156914244816,58.24278233878076],[-128.3005415319868,58.24689467642552],[-128.30026627293282,58.25151496599962],[-128.29772087802522,58.25579697328036],[-128.29636930674906,58.25962751451475],[-128.29723712631775,58.25973839702287],[-128.30403433687613,58.26182207312761],[-128.30812462794984,58.26377234934809],[-128.30678371629972,58.267091005331714],[-128.30231343872117,58.269242029132045],[-128.29827008293208,58.27203215753635],[-128.299321810898,58.27437590097292],[-128.30456319186314,58.279647214502845],[-128.30752267830252,58.28572087764634],[-128.31234161634802,58.290361660425795],[-128.31630293677142,58.29443337379587],[-128.31658278236347,58.29826313710116],[-128.31404583246731,58.30144992249956],[-128.30923993359866,58.30423559864116],[-128.30736540977233,58.30657571622916],[-128.30143683002032,58.312155299961084],[-128.2962610267422,58.31808100325486],[-128.29009636296385,58.32485853746366],[-128.2862512852528,58.328156887533154],[-128.2781677259367,58.332128624858896],[-128.26512954822172,58.340718492777015],[-128.2620249751594,58.34533281822901],[-128.2614288828169,58.34915959263473],[-128.2608116876255,58.354468547630425],[-128.26240011377251,58.35750430010439],[-128.26572231187012,58.36060070744883],[-128.26761950052568,58.36478078530803],[-128.26889684794472,58.36690570296624],[-128.27062711744807,58.367415406092704],[-128.27536096723648,58.37064051986601],[-128.27761302357723,58.372928538204505],[-128.27834792255675,58.37487396822209],[-128.27844826782894,58.37544705526716],[-128.28036698392972,58.3782526033924],[-128.28065070649257,58.38151690652528],[-128.28420899519486,58.38357618839187],[-128.2913541562413,58.38578102999365],[-128.293294639269,58.38687067744251],[-128.29499806586801,58.38985039149274],[-128.30158988523146,58.392845529232616],[-128.30678067952286,58.3950829750876],[-128.30410808962446,58.39999656545219],[-128.28998389457746,58.40708994469108],[-128.28647325373657,58.409529577353155],[-128.28308297992297,58.41061088723344],[-128.273131232627,58.41451522713407],[-128.2619710417875,58.41887019161267],[-128.25881516278986,58.418869179017825],[-128.24555166202524,58.4180667235622],[-128.2315942806327,58.42002272943642],[-128.22609995885958,58.42348148563558],[-128.22422729477927,58.425129006965165],[-128.2104794701346,58.427357750370845],[-128.20163586349472,58.42904710663512],[-128.20088261239812,58.4286372732596],[-128.18795756505727,58.42681769502138],[-128.1782613070689,58.427342790819324],[-128.17184229158602,58.42732051769504],[-128.1626812527741,58.4283657603084],[-128.16193096826146,58.42766827376583],[-128.15739529412127,58.425594382449994],[-128.14392581567327,58.42416553327978],[-128.13935336396747,58.42413931520565],[-128.1271575506639,58.424538687513035],[-128.11963984080776,58.424962340030916],[-128.11866676050425,58.4245644997111],[-128.11108896251682,58.422464991100824],[-128.09801366305896,58.423315550616245],[-128.09603996918224,58.423992843427506],[-128.08901261555476,58.42738880021584],[-128.0822996481761,58.431183673724],[-128.07975640527835,58.43334237152479],[-128.07704185748423,58.43280939855688],[-128.06868298841584,58.43168046257004],[-128.05987014192198,58.431465005844636],[-128.0471039698546,58.43288960655137],[-128.0379343268389,58.43415096359805],[-128.03215453276349,58.434633259245714],[-128.02767042855018,58.435634689283596],[-128.02152281125402,58.43811576498816],[-128.0181076303827,58.440043834372325],[-128.01207746305607,58.442010816435165],[-128.00649922405876,58.443000891465225],[-128.00455110863805,58.442535892725225],[-128.00242431021587,58.4401875758114],[-128.0001981525995,58.43523633060743],[-127.99877728572766,58.43346126173857],[-127.9951035652679,58.431908096510895],[-127.98811126348228,58.42937998919813],[-127.9844501275344,58.428005978382416],[-127.978358212494,58.426038902497915],[-127.97365129520368,58.42553307973064],[-127.96539391004212,58.42594096791566],[-127.961833903685,58.42655853248318],[-127.95720415785057,58.42753277425085],[-127.95557692163607,58.42772699086697],[-127.95372327710847,58.42764607470162],[-127.95180524398182,58.426299837356346],[-127.95027885498234,58.42409478870546],[-127.94856684242791,58.42034780796262],[-127.94417832078926,58.41750152305333],[-127.93512506947854,58.41716470813018],[-127.92789095061579,58.41829201019529],[-127.9234502273454,58.41875949687201],[-127.92107178376455,58.419071766987706],[-127.91816436664172,58.419687860342584],[-127.91686164438194,58.41976025480833],[-127.91583994862475,58.41897553476592],[-127.91374818783912,58.41625731038582],[-127.90381427814933,58.40680721972543],[-127.89602018131957,58.403145448777636],[-127.89116214575121,58.40166912183041],[-127.8838027558846,58.400227591572104],[-127.86842449432493,58.39946273346596],[-127.85900831077694,58.398156110718354],[-127.85661460407914,58.39818908752016],[-127.85437351062572,58.39907299332025],[-127.8527665789342,58.39961590191575],[-127.85326162981151,58.40085727782749],[-127.85144776971357,58.40162750666314],[-127.84853637813022,58.40217928587176],[-127.84758812448611,58.40287473713381],[-127.84735375544184,58.404763688530494],[-127.84383970348605,58.40641016459359],[-127.83898758338988,58.407329479245284],[-127.83770360236832,58.407795964870196],[-127.8339245234561,58.40842210000127],[-127.82886956278385,58.40968503312442],[-127.82635021102587,58.41165878726274],[-127.82215375577071,58.412685345912976],[-127.81845805130827,58.41273521271195],[-127.81486664873847,58.412774595333296],[-127.8152606525559,58.41186234370605],[-127.81382239553469,58.40902615002496],[-127.81147072978438,58.40756712870275],[-127.80833839632437,58.40577731459444],[-127.80643025679828,58.40450084117374],[-127.80419171275749,58.403156928189155],[-127.80384209893786,58.4002522293348],[-127.80355403088774,58.39636795241623],[-127.80284688180204,58.39523701391134],[-127.8023531719185,58.39398648809757],[-127.80294458205631,58.39266758108102],[-127.79873832668292,58.39100868803886],[-127.79315215204633,58.39016719721726],[-127.78852588748077,58.38891765702129],[-127.78676062965039,58.38831250801421],[-127.78624920003111,58.38665810736476],[-127.7850242947044,58.383702180076696],[-127.78407716899675,58.382008654904396],[-127.7840308399582,58.38097665267898],[-127.7847327175931,58.379656390552135],[-127.78567014960863,58.37879094692466],[-127.78733343249078,58.37710774318318],[-127.7868037572361,58.37500465103916],[-127.7872793650767,58.37351677772998],[-127.78759441550315,58.370890680885374],[-127.78846114168952,58.36847276959992],[-127.79039458016423,58.36560071252781],[-127.79277201035276,58.362947203989016],[-127.79272392684459,58.361861374994156],[-127.78938695800808,58.3601817567203],[-127.78599273411398,58.35966111625167],[-127.78120838290727,58.35955385494839],[-127.77957718217237,58.35957541160575],[-127.77815579487792,58.35936072536357],[-127.77724070890261,58.35834021605963],[-127.77577566429476,58.35716533152575],[-127.77401449226271,58.356676734538475],[-127.77063105796303,58.35637106895964],[-127.76726644596009,58.356415250677486],[-127.76585867531305,58.356550437660744],[-127.76455339442091,58.35650468885372],[-127.76293868925018,58.354415785815696],[-127.76220594313004,58.352656532954406],[-127.76106523840075,58.35141441012207],[-127.7592695231302,58.35011798565121],[-127.75589420362897,58.3499914323816],[-127.75244071779335,58.350494329186766],[-127.75081203237451,58.350515509622845],[-127.74928444590589,58.350301908300764],[-127.7478268740798,58.349351119904924],[-127.7439240154418,58.34705825080909],[-127.74094229008199,58.345956526540014],[-127.73020921748748,58.34642705457678],[-127.7176579850802,58.35000859424597],[-127.70699006844518,58.35453479879869],[-127.70409021321514,58.36033587051405],[-127.70422627323038,58.3634677500166],[-127.70433324320055,58.365917617331306],[-127.70236197461955,58.36806154448691],[-127.69726978530771,58.36845799531825],[-127.69395990521535,58.36735933107266],[-127.68892352414896,58.36644385865702],[-127.68424292268365,58.366277973283374],[-127.67769796478814,58.36573110678632],[-127.67354630240024,58.36520809411072],[-127.67079901851984,58.36443410176471],[-127.67257956181744,58.36293052238554],[-127.67595258471225,58.360500271981365],[-127.67433916194416,58.358284640982454],[-127.67048306158335,58.35702162698847],[-127.66415114969169,58.356300895865814],[-127.6593878785822,58.35669186105437],[-127.65518330470549,58.357542680862],[-127.65442841513905,58.35766867521278],[-127.64965119597257,58.35772725690765],[-127.64611217010885,58.356271124499884],[-127.64282269209761,58.352890457667456],[-127.64066181850637,58.35058238495429],[-127.63595409491144,58.34972384142754],[-127.63193229869765,58.34964693083627],[-127.62924054280607,58.34967951700162],[-127.62855045152436,58.34791798990205],[-127.62857603802884,58.344624852221926],[-127.62908898673163,58.34088028241719],[-127.62968088129337,58.3389158439218],[-127.63264409445821,58.33701021357847],[-127.63684323571611,58.336247701151926],[-127.63932659346919,58.33497174793486],[-127.64061379098236,58.33344322548135],[-127.64037461522757,58.3318435157239],[-127.6388081528375,58.33088396152636],[-127.63660847433118,58.33091071987445],[-127.63370512782717,58.330323117337315],[-127.63196642313953,58.32927579605475],[-127.6301927820654,58.32742869553004],[-127.62793491148057,58.32612051406499],[-127.6263428817146,58.32453827769708],[-127.62288594154501,58.32288874399265],[-127.6180643548798,58.320989564698685],[-127.6158073010359,58.31968119007549],[-127.61927451991757,58.31768117815447],[-127.61871277278621,58.3164422309456],[-127.6151182715777,58.31550681210599],[-127.61218561954074,58.31420649745304],[-127.60992923194144,58.31289915667042],[-127.60920706406428,58.31183941560894],[-127.6086457400233,58.31060043514038],[-127.60692018284631,58.30981977143445],[-127.60536427346082,58.30903818547919],[-127.60295036168147,58.30799859235702],[-127.59956846275838,58.30684365764032],[-127.59917337353879,58.306709196897685],[-127.59628010238495,58.30629802732781],[-127.59409706833935,58.306679657820176],[-127.59253391457088,58.305719582191074],[-127.59250729029789,58.305097058896635],[-127.59194278725272,58.30376828594889],[-127.5880008897868,58.30256920022572],[-127.58641533806306,58.301075148046486],[-127.58645861097068,58.300088203951454],[-127.59079460286515,58.29903597610342],[-127.5947202845272,58.299564073348876],[-127.60181479640234,58.30061996546753],[-127.60723370517371,58.30050146514369],[-127.60983665371631,58.30047034112162],[-127.61568465718675,58.30023862989503],[-127.62491460423571,58.300477594777746],[-127.6308812860613,58.30052210347916],[-127.64405407304184,58.301627650692005],[-127.65045309347948,58.30160316389074],[-127.65370669442548,58.301572185438964],[-127.65773293111782,58.30186379552274],[-127.66245127359349,58.30317920794734],[-127.66477283445627,58.30417399661147],[-127.66935318521101,58.30475468281773],[-127.67494915422715,58.303652651760906],[-127.68078222287097,58.30050940175725],[-127.68125690485572,58.2989053771231],[-127.68452433748205,58.29418694804702],[-127.69081756602009,58.28913417480474],[-127.70288361247594,58.284825125805995],[-127.7075888594688,58.28328409295603],[-127.7130636053454,58.27956940767958],[-127.71512340716677,58.274578363126246],[-127.7135689540231,58.26877156335797],[-127.70677654978202,58.26457558759009],[-127.69763842206771,58.26126184235545],[-127.69532885768666,58.260491984892255],[-127.68810655602341,58.2588143086618],[-127.68503923718256,58.25798197730957],[-127.6828418487795,58.257327216162345],[-127.68029578463228,58.25604835035671],[-127.67882070619514,58.254468781330395],[-127.6789010988233,58.25126279445145],[-127.68139192487301,58.248726917693865],[-127.68370422032802,58.244532402694745],[-127.67973892969876,58.23784898011994],[-127.67392320057765,58.23352269091963],[-127.67004599781473,58.2288848201495],[-127.66960820367646,58.22369244650726],[-127.66639482962653,58.219396394034945],[-127.66078543132976,58.217239581022675],[-127.65641643915933,58.21626119783767],[-127.65300884890026,58.21492971186918],[-127.65017915147654,58.21205596813336],[-127.65172485346991,58.21015178091858],[-127.65796464575635,58.20933872752468],[-127.66422938388155,58.20909062527664],[-127.66981117897957,58.20806074853808],[-127.6744608564532,58.2053725417244],[-127.67458218477374,58.20314472747222],[-127.67200433692392,58.20106728083939],[-127.67102745182824,58.19839533926718],[-127.67291408143336,58.196944494987505],[-127.67877092938903,58.19481561818453],[-127.68197085562214,58.193752167518895],[-127.68520799146853,58.19109028029118],[-127.68575664356436,58.18868655403044],[-127.6837378570676,58.18699732679721],[-127.6792380012801,58.18545585929393],[-127.67649162441208,58.18445788077098],[-127.67562116639014,58.18429819892862],[-127.67447628372487,58.18283132500599],[-127.6774017595702,58.177830610312355],[-127.68245532891295,58.174742137113704],[-127.68464202626416,58.17272184793588],[-127.68354818797796,58.169934855438974],[-127.68067709676296,58.16848074928609],[-127.67491231730715,58.16763727503151],[-127.66708411357644,58.1665319804749],[-127.66358473147258,58.16555211924189],[-127.66218260530427,58.16305607285278],[-127.6620109761023,58.1615142351327],[-127.66195936908031,58.16025816070673],[-127.6598053921561,58.157834264490326],[-127.65637741313331,58.15604547091222],[-127.6540618217045,58.154925082621745],[-127.649251578927,58.15350325278277],[-127.64091320608652,58.153031118334376],[-127.6355786957527,58.15206404644267],[-127.63264039838596,58.15152538862613],[-127.6301079501018,58.15035338832684],[-127.62706324519351,58.14987874044852],[-127.6219465686919,58.1515385511565],[-127.61802972388085,58.153515807617595],[-127.61395668891821,58.1542471204439],[-127.60984571761965,58.15412601415441],[-127.6042080629686,58.153628108318046],[-127.60009787754983,58.15349771867104],[-127.59310290332307,58.154146555760406],[-127.58612392488531,58.15525262485593],[-127.57957669842561,58.156353239468494],[-127.57551642642002,58.15748715454064],[-127.57173243748495,58.16014366892163],[-127.569432294732,58.16211846943604],[-127.5671830990323,58.16260257374287],[-127.564467815268,58.16228421615418],[-127.55803095977467,58.16069858075214],[-127.55431194756538,58.15953894353016],[-127.55179817580579,58.158769187752],[-127.55069100887252,58.15809981108091],[-127.54952076334598,58.155779541442676],[-127.5486741127269,58.15344655436171],[-127.54812759044715,58.15053563215832],[-127.54903214779459,58.14875688951039],[-127.54978470777982,58.148694331596666],[-127.54467890502613,58.1478915818675],[-127.54176718926934,58.14803282727025],[-127.53707429164041,58.14683009465878],[-127.53663887630022,58.146727376236434],[-127.53259876426098,58.14550802870772],[-127.52800408720091,58.14401663418843],[-127.523106791237,58.14298630272135],[-127.51686430384254,58.14077723575743],[-127.51323240841181,58.138933368603745],[-127.50811502282474,58.13784216216261],[-127.49956842886935,58.14027182154531],[-127.49359240139367,58.14221453019335],[-127.48773473565625,58.144451859228646],[-127.4865772268501,58.145200727828104],[-127.48468267691544,58.143624029828835],[-127.4813747756945,58.1418295722284],[-127.47717487610343,58.13919217761197],[-127.47579290901811,58.13686473098716],[-127.47315707517228,58.13563713723004],[-127.46738305031396,58.134273369624964],[-127.4652129449327,58.133947071238936],[-127.4624963850062,58.13351899715589],[-127.4595274476976,58.13195370826961],[-127.45942704208868,58.12921722750976],[-127.45685581894323,58.12673204522053],[-127.45321497102667,58.124599507125566],[-127.4489308972311,58.12253666955893],[-127.44599310785911,58.1218773069596],[-127.44328184253258,58.12150265690659],[-127.4382850555833,58.12058706330463],[-127.43437276102848,58.11988406149598],[-127.42461885695664,58.11865981957629],[-127.42179026404827,58.11806160300832],[-127.41749884761708,58.1157106670416],[-127.41278403499733,58.11359743328804],[-127.41060811029533,58.11309980551487],[-127.40678595187977,58.11176679454136],[-127.40538589073692,58.10875681899975],[-127.40459099607367,58.10756247299732],[-127.4024426539276,58.10473086390384],[-127.40429199231818,58.10208173029171],[-127.41166034693133,58.10001171883078],[-127.41870336565172,58.09777421793209],[-127.42219980343104,58.09603181638299],[-127.42761274152387,58.093577801064356],[-127.43328405936035,58.092323474791804],[-127.43657722033136,58.09092393020712],[-127.43714064869651,58.08858433178933],[-127.43848447892596,58.086909484835],[-127.44068902446362,58.08534203743881],[-127.4410455514833,58.0832828904286],[-127.44095979133324,58.08083360682327],[-127.44125647632765,58.08008547714808],[-127.44206423510002,58.078542030831265],[-127.4476222682151,58.07722548381988],[-127.4528723782014,58.076369778228724],[-127.45707049060545,58.07621641152348],[-127.46099088645215,58.074351701893896],[-127.46311022930001,58.073359224918036],[-127.46577993990738,58.072701736920266],[-127.46678684607612,58.07075208007856],[-127.46662368009372,58.06921015831114],[-127.46644612762826,58.06727349513578],[-127.46746865495415,58.065781397769825],[-127.47096864451206,58.06426206341624],[-127.47360583429014,58.06268932334669],[-127.4766402803146,58.060259519928245],[-127.47752162739003,58.05786243708128],[-127.47716572728932,58.05700477284728],[-127.47614582494943,58.05558902012384],[-127.47631543817158,58.05147663025523],[-127.4774214356734,58.04930145993871],[-127.48182334460404,58.045994849497774],[-127.48374586674834,58.04409777407366],[-127.48462961003747,58.04322637402463],[-127.4851513623096,58.04078390853306],[-127.48507880227916,58.04077013081225],[-127.48421875186789,58.03640671356574],[-127.49170674176801,58.02869926905401],[-127.50049202820507,58.02351894741575],[-127.50088316093455,58.0233732016744],[-127.50100456802865,58.017546155357486],[-127.5032757354545,58.01500771329021],[-127.5074011109397,58.01313936355165],[-127.51461259156618,58.01032050663936],[-127.52340711616827,58.00680113467821],[-127.52372593461068,58.006626979335095],[-127.53020344583356,58.00449771577148],[-127.53405989279246,58.00400473015056],[-127.537367448695,58.003338461943045],[-127.54249020836664,58.00225626791023],[-127.54765647434701,58.00231314688995],[-127.55089581835841,58.002616590796116],[-127.55459327958211,58.00365951892685],[-127.5599737613166,58.00372240399025],[-127.56519680388901,58.00252148883255],[-127.56742380245981,58.00163379217908],[-127.56877172397526,58.00037048078202],[-127.5688531080769,57.99712967757246],[-127.56974862179499,57.995297301092194],[-127.57168250494144,57.99247446696552],[-127.57298500277848,57.99006290882967],[-127.57503348447453,57.98746304897031],[-127.57828682734447,57.985432261656825],[-127.5824407583243,57.98453048486605],[-127.58790856017693,57.98407065102431],[-127.5925040742837,57.983441513618615],[-127.59393392899784,57.98160260580732],[-127.59343141056084,57.979777801575466],[-127.58969015496417,57.977596750584894],[-127.5783553056645,57.97629541144761],[-127.57480406067027,57.9762207096552],[-127.57394230795494,57.976168057885616],[-127.56662510515373,57.975913154029264],[-127.56133879803436,57.97540076325674],[-127.55667624234897,57.971569347520536],[-127.55580234205746,57.968438526406864],[-127.55665772873682,57.96551189736805],[-127.55853652271112,57.964125864451375],[-127.55920656407099,57.96206292386613],[-127.5547896772622,57.95896453184502],[-127.54915999612551,57.957827506469584],[-127.54604042338039,57.95774704607869],[-127.53924214138954,57.95691032558574],[-127.53359085361559,57.955198559483286],[-127.52985658384488,57.95301587653849],[-127.52556771641314,57.950381768789214],[-127.52213607486067,57.947665960580466],[-127.52091955946192,57.946764494559076],[-127.51617686524727,57.943399428740136],[-127.511537742554,57.940015093493926],[-127.50691560708476,57.9369804076978],[-127.50394097387363,57.93495899111624],[-127.50150821387588,57.93303909792381],[-127.50128934170438,57.930017387293894],[-127.50278370196887,57.926985348969566],[-127.49963902285951,57.92324282814501],[-127.49266947195473,57.92051232311042],[-127.48592643559017,57.91801226110876],[-127.4787464261455,57.91535520100712],[-127.47257697874929,57.913871115392155],[-127.46318672822902,57.915230892347395],[-127.45522695338117,57.917705051592485],[-127.44737277461257,57.92006990028436],[-127.43775687797036,57.92125084700399],[-127.43346742139936,57.921297067954086],[-127.42552996648186,57.92143607451101],[-127.41481946036126,57.921945077316565],[-127.40449727467208,57.92135435953884],[-127.39566574127659,57.92041522133802],[-127.3926286410698,57.91941505867668],[-127.38727912357136,57.916787825567255],[-127.38226539109277,57.91448892258044],[-127.37694469152346,57.91255194906259],[-127.36514830097428,57.91271823591097],[-127.35850180454212,57.916088359041886],[-127.35713891802575,57.91701752804254],[-127.3526792549004,57.92162133394027],[-127.3532033050993,57.927735853663584],[-127.35387352989875,57.93177605988091],[-127.34526767826321,57.93442961179097],[-127.3362504755382,57.93445751048814],[-127.32795200045297,57.93333801781163],[-127.32172581168406,57.93339093747036],[-127.31603825678616,57.93670455993381],[-127.31520966440146,57.93768186613458],[-127.30931787310558,57.941383076996644],[-127.302381358555,57.942707307142506],[-127.2943918534,57.941349380283086],[-127.28909473326108,57.940198279244946],[-127.28229079961197,57.938828169501704],[-127.2759852809201,57.93625949891643],[-127.27066820615013,57.934416932996214],[-127.26397048618155,57.933107712934834],[-127.2618391099706,57.930103932790495],[-127.26021852943256,57.92623387664462],[-127.258143130174,57.92150669507971],[-127.25768406886051,57.91712318297631],[-127.26153095542831,57.913084821073404],[-127.26563268083399,57.910309132964805],[-127.27054582380454,57.9062693608114],[-127.27117911602849,57.90586850544525],[-127.27382404815192,57.90127598207408],[-127.27144213275231,57.8970724889848],[-127.26885244663322,57.89304144170914],[-127.26574747344154,57.88976001224263],[-127.26717353754417,57.887287888985206],[-127.27312808205734,57.88569671952979],[-127.27526261576247,57.88196154376022],[-127.27559582941302,57.878880687446184],[-127.27822866950282,57.87741978461722],[-127.28311877939066,57.876179349417676],[-127.28437184806226,57.87508155840851],[-127.28557059907916,57.872333297621324],[-127.28426701707703,57.868299194831536],[-127.28415447633019,57.8681208273325],[-127.28332886315037,57.86567028092228],[-127.28341940444618,57.861739389780254],[-127.28642367877177,57.85845331203762],[-127.29150548106779,57.85658263032875],[-127.29499098034653,57.85500545505634],[-127.29174910199629,57.85081090160455],[-127.28560981628013,57.84961423640572],[-127.27654190745226,57.85071547946742],[-127.26829493055786,57.85067774007464],[-127.26057734519011,57.85040118849238],[-127.25697673033088,57.84821010030071],[-127.2562774771824,57.846323524800766],[-127.25424736019372,57.84303187142046],[-127.25214908464858,57.84094313939048],[-127.2500556733743,57.8389620032229],[-127.25006349682424,57.83570497501306],[-127.25318832826032,57.83288516829995],[-127.25760343701553,57.83021459162816],[-127.26086176993012,57.82829954611814],[-127.26246917983272,57.824856886204536],[-127.26033759001267,57.821629172452724],[-127.25419208572504,57.82019792919389],[-127.24768002303577,57.82059119923353],[-127.24277275716577,57.82109476155342],[-127.24170134261374,57.82110477669638],[-127.2351565557748,57.82047491193393],[-127.22941040370189,57.81795319728697],[-127.22470692116757,57.81445265814572],[-127.21962855801016,57.81283954096741],[-127.20550757091426,57.81284280380245],[-127.19962705049393,57.812779392013226],[-127.18794343291795,57.81206791828921],[-127.1806412657888,57.81110123287755],[-127.17760740346723,57.80970162167756],[-127.1734911995487,57.80790777461671],[-127.1687365862537,57.80594335190999],[-127.1662663547529,57.80593141707703],[-127.1667869919519,57.80497022081174],[-127.1637288575698,57.80302324153417],[-127.15660995709425,57.80085143782835],[-127.15039922402988,57.80055547386898],[-127.14954506480215,57.80056286894255],[-127.13564677782779,57.800673452562584],[-127.1229793453221,57.80293436952466],[-127.11061674191893,57.804518642286624],[-127.10411849864228,57.80547895658299],[-127.09948314294563,57.80819097903614],[-127.09778093801103,57.808608784016066],[-127.09226336294745,57.81025123175831],[-127.08288353535187,57.81152125480229],[-127.07518142774335,57.81152100366722],[-127.06972811793446,57.81161885183635],[-127.06067081921144,57.81305516522392],[-127.05588567480487,57.81416988307605],[-127.04883118112805,57.814387245029586],[-127.03941443202416,57.81429077902626],[-127.03174632628895,57.815705265061226],[-127.02783908667232,57.817790061864265],[-127.02678417224257,57.81848006616666],[-127.02382260030194,57.81993838846323],[-127.01860293031426,57.820821838588],[-127.01368449828345,57.82097607736394],[-127.00897698470104,57.82094909886407],[-127.00416804949198,57.82126364402915],[-127.00030410972577,57.8251775276319],[-127.00141747555352,57.83173646121718],[-127.00040715880603,57.83413953458597],[-126.99259590750222,57.83904285928638],[-126.9936547467613,57.84309022468669],[-127.00101726365945,57.8465250700232],[-126.99927142564937,57.84973220358621],[-126.99247561301627,57.852232428678086],[-126.98663881331771,57.85449192519099],[-126.98202358034024,57.858689071991776],[-126.9806382446919,57.863723615311024],[-126.97784619597344,57.86814046780559],[-126.97501070714023,57.87061962326584],[-126.97305901628853,57.8743932181642],[-126.96856472068754,57.879387591680874],[-126.9622423221096,57.884278419364655],[-126.95512868135913,57.88735327958257],[-126.94482122524667,57.89130282579111],[-126.93926631813822,57.892364963473746],[-126.93488372461466,57.892907225380064],[-126.93318801001529,57.892919121244326],[-126.93239592660714,57.89483575454411],[-126.93108768713387,57.89750966585122],[-126.92912468933376,57.901614733691325],[-126.92727093807459,57.905889500788696],[-126.92725295102895,57.90845571546314],[-126.92766735645118,57.909942241732686],[-126.92914990582054,57.91246212001094],[-126.93384716182103,57.9153183909134],[-126.94068510779681,57.91853625591488],[-126.94773138180622,57.922936679677086],[-126.94901091698027,57.92403119380604],[-126.95369515959392,57.9290044419444],[-126.95569734040166,57.93425702541164],[-126.95554740021356,57.94019800840604],[-126.95574210359685,57.94332808971446],[-126.95711939565652,57.945902358724574],[-126.9635194986303,57.951275825359474],[-126.96490837450132,57.952252792865245],[-126.97132314664836,57.95643243704645],[-126.97256774270426,57.96304537634954],[-126.96621123828736,57.96635772781892],[-126.96395058854277,57.96680478557509],[-126.95975778284438,57.96782204417191],[-126.9507293602328,57.96849685624794],[-126.94384102919705,57.970483929431595],[-126.94468171146225,57.973107062418784],[-126.94510398092916,57.974135966665926],[-126.9463553993201,57.979501942125786],[-126.9480324430932,57.98504437861248],[-126.94907428139929,57.989326132646966],[-126.94724287961621,57.989832666162414],[-126.93992117490757,57.99182262806876],[-126.93916845021523,57.99204328232298],[-126.93065636676657,57.99459744123216],[-126.92527229615325,57.99584624735599],[-126.91870976375884,57.99679786256547],[-126.91548926096104,57.996452086680556],[-126.90764397019633,57.99620057003158],[-126.9013002190891,57.99659350338409],[-126.90000906840415,57.996647080005815],[-126.89387595012896,57.99754073550025],[-126.8895671682493,57.9983950451947],[-126.88805876127452,57.99879093281755],[-126.88341550837578,58.00005105945351],[-126.87280534510221,58.00068615168433],[-126.86249297396442,58.00007121097294],[-126.86106732960955,57.99980224662611],[-126.85408685176549,57.999218967664504],[-126.84646272677338,57.99845994635489],[-126.83958509400411,57.99838672572402],[-126.83591990611436,57.9992262742384],[-126.8342983766373,58.00007988602245],[-126.82925971232565,58.00335056116091],[-126.82067726955476,58.006041680065664],[-126.8148694908863,58.00828463504929],[-126.81307589317124,58.009049310609676],[-126.8020563692145,58.00817377225594],[-126.79861800107405,58.00822129877998],[-126.78498380548947,58.00885847243895],[-126.7748487066344,58.010712281337895],[-126.77024556727717,58.01345775942961],[-126.77100363062247,58.01584921042869],[-126.77113845163365,58.018701894822144],[-126.76774327328927,58.01977131294894],[-126.75867143893727,58.021375503452845],[-126.73616066213503,58.025611163773924],[-126.71900325835567,58.02708647177474],[-126.69657645938202,58.02389419405995],[-126.66685806653199,58.023695894067124],[-126.66648682271136,58.0153707650976],[-126.67054579211653,58.00743629302699],[-126.67240746608532,58.00004223998401],[-126.67222595497053,57.997880697711466],[-126.67183756799106,57.99491264853101],[-126.66847037646278,57.99016500524892],[-126.65786220435537,57.988225762610945],[-126.65281762459924,57.987927513265134],[-126.64070316245466,57.986048113962575],[-126.63378065190953,57.982142168637985],[-126.6232474842667,57.975812258775996],[-126.62091034074666,57.974208094614994],[-126.61432844223584,57.9696087412338],[-126.60966727026616,57.96553867549068],[-126.60766439517502,57.96335853845145],[-126.60266826633823,57.9603126404463],[-126.59539983366535,57.9582278032641],[-126.59379597912982,57.957822224793354],[-126.58180985391473,57.95576655127334],[-126.5746558605783,57.953500657214505],[-126.56943147576209,57.95136971891668],[-126.56227491154705,57.94939030098281],[-126.55529570761023,57.94935674270258],[-126.547980005232,57.950293204531974],[-126.54550440650354,57.95068018937553],[-126.53851248164807,57.94579183443329],[-126.53364858283221,57.941827747218085],[-126.52962471005273,57.93895476643163],[-126.52442961282391,57.9355659074531],[-126.50435133780826,57.936199658970565],[-126.49865149347711,57.93674148349465],[-126.48480024684795,57.93723221051848],[-126.48007798400748,57.93721341307213],[-126.46979547670922,57.93636181611225],[-126.46146337276717,57.93437221557837],[-126.45464450548275,57.93216162041223],[-126.44654651387032,57.92938077070195],[-126.43791027686314,57.92687036863437],[-126.43642106216556,57.92634591038692],[-126.43155576870667,57.92312289806187],[-126.42819443976113,57.91973340355095],[-126.42484614250867,57.915949036718764],[-126.42183716509246,57.91131121035035],[-126.4192168113834,57.90843954940444],[-126.4133578738022,57.906807061858146],[-126.41182379791157,57.90834597906621],[-126.41172704442053,57.912616832931036],[-126.41347571397519,57.91599378203077],[-126.41338180997076,57.920219803618636],[-126.4111557327807,57.92396795785787],[-126.40533973446652,57.924847076459876],[-126.40022640821081,57.923337313433514],[-126.39595705579626,57.92245288216344],[-126.38877088167578,57.922411239333904],[-126.38221787553934,57.922771127387385],[-126.38146629512924,57.92276430924778],[-126.37784585170667,57.921599313532184],[-126.37308404247321,57.918768665205455],[-126.37099701791041,57.916361080891846],[-126.36820163698553,57.91206239173188],[-126.36560182439362,57.90849880767149],[-126.36030726361821,57.905732011480715],[-126.35284758648041,57.90374233020586],[-126.34987505738256,57.902530028594335],[-126.34470378981905,57.89907149704965],[-126.34187713510676,57.89631553471437],[-126.3359506071958,57.89313674444536],[-126.32967264686323,57.891259443592894],[-126.32529677148582,57.89048968482098],[-126.32285759592293,57.889392126937985],[-126.32161816561883,57.88750214246917],[-126.32118930937838,57.88321481960383],[-126.31816197764097,57.87994751983457],[-126.31434454970278,57.878323795157485],[-126.3117126711175,57.87648188019571],[-126.3103846454196,57.87395506008002],[-126.31069034135388,57.87024918651915],[-126.30853674016336,57.866360654591],[-126.30770127538791,57.86549237565202],[-126.30267344722428,57.86106314052443],[-126.29762135995888,57.85754885352344],[-126.29294439391396,57.85608796088376],[-126.2806563967353,57.85514556770923],[-126.2661739579712,57.85607245083126],[-126.26411525746894,57.85713515181062],[-126.25663414599205,57.86050501684915],[-126.25490020095108,57.865406636475456],[-126.25541814610803,57.870142470907574],[-126.25445334682182,57.874298033443495],[-126.24510532990017,57.87931261598352],[-126.23241464222563,57.88504118259883],[-126.23174506697822,57.886065091567126],[-126.22656974588313,57.89499163347716],[-126.22929793747494,57.9011683499856],[-126.2341233250747,57.90902804841136],[-126.24059763968123,57.91945955767919],[-126.24064813333639,57.921576798969596],[-126.23623209818074,57.926276941071364],[-126.22627258600049,57.93345374383211],[-126.22011003317867,57.93905354887176],[-126.21822540506149,57.941093273801705],[-126.21495000940382,57.94318008543188],[-126.20898163093622,57.94554022790114],[-126.20786793654447,57.94563168856505],[-126.1956353625483,57.946744779160454],[-126.18289263321701,57.94561445518917],[-126.17011797637453,57.94192595485137],[-126.15319747689291,57.93339627203989],[-126.14534910541508,57.93019314971692],[-126.13776836654353,57.925338496113746],[-126.1297821084823,57.919846842338785],[-126.12363933856652,57.9171701484123],[-126.1108388178951,57.91484877940408],[-126.10093339539533,57.91613062753203],[-126.09886239871105,57.917137007242985],[-126.08857637181677,57.916767432530335],[-126.08208482872782,57.91516566311105],[-126.07224783803893,57.91416653645946],[-126.06748179289443,57.91560449941811],[-126.05878566501202,57.92261550695885],[-126.05810565897485,57.92380007281273],[-126.05295118097105,57.92723839920539],[-126.04853224616035,57.93119663661426],[-126.04804775615658,57.93621206068033],[-126.04996192855522,57.94011411793937],[-126.05955645850186,57.942137824760344],[-126.06365938321986,57.94479161584103],[-126.06382253004752,57.946334710787426],[-126.06318510091528,57.95290249942366],[-126.06328891454285,57.96311264747128],[-126.06219759311648,57.967042949843396],[-126.05633367538893,57.969046344122646],[-126.04868354455402,57.96977610016713],[-126.03715785143515,57.967393215597646],[-126.03138835223594,57.96642570715231],[-126.02304388722624,57.968688389292744],[-126.02028063152832,57.97100365617328],[-126.01583610516295,57.972224474276196],[-126.0118497515366,57.96938070920235],[-126.00907059217471,57.96576515406249],[-126.00567373552343,57.9613420949453],[-126.00293921807175,57.95960160093064],[-125.99966192847839,57.95821096377341],[-125.99494583317427,57.958192924334284],[-125.99173407435902,57.95856061816082],[-125.9897053559767,57.95954740363465],[-125.98884215588942,57.96320794385906],[-125.98681208700978,57.96711063017866],[-125.97972546733254,57.97145226593887],[-125.97189301654194,57.97591002949529],[-125.97052259728575,57.97665442851161],[-125.96730524038172,57.98136411123625],[-125.96662304247494,57.98770736203044],[-125.96215137654536,57.99327800614815],[-125.95763379525857,57.993375345155044],[-125.95091947741258,57.99131837006445],[-125.9407767419334,57.986020570725955],[-125.92823769479996,57.97937492251408],[-125.92446704961412,57.978888339634295],[-125.91289419282248,57.98080135212639],[-125.9041843090342,57.980526214529064],[-125.89123366205128,57.978730806450415],[-125.88141336651918,57.976811351235554],[-125.87904639077203,57.9765938928821],[-125.86430028961831,57.97630157190169],[-125.84952747799365,57.978510850040166],[-125.83541032015276,57.98123073094513],[-125.83368426875244,57.98141700925473],[-125.825443221706,57.97861610283516],[-125.80956462023576,57.974781176307516],[-125.80324157303818,57.971227971954676],[-125.80015230354229,57.96707822742941],[-125.79738896860438,57.959043998197714],[-125.79428631143011,57.954553210576165],[-125.79409348805206,57.94655884551831],[-125.78790349437452,57.93849233734449],[-125.78595859512515,57.932908719481446],[-125.78676646643979,57.93045172976732],[-125.78720537773441,57.92154344581638],[-125.78474466804654,57.91185005567516],[-125.78151731600977,57.906506680343455],[-125.78140121337685,57.90143081622896],[-125.78225721923411,57.900614685452496],[-125.78137155182961,57.89999980473236],[-125.78133372115934,57.89997507086784],[-125.72355248267212,57.85991359252498],[-125.70960060491849,57.86572638706602],[-125.70955297341456,57.86575207548269],[-125.70924289902128,57.86591960947385],[-125.70881789351755,57.866228188773995],[-125.70846328817731,57.866429265850634],[-125.70810854665788,57.86651035097908],[-125.7075589988201,57.86656857899082],[-125.70654419173385,57.86668969978179],[-125.7055308809463,57.86688819342315],[-125.70515070338321,57.86698603557845],[-125.70477280746925,57.867061453529715],[-125.70409512392176,57.86719676022092],[-125.70374367707899,57.86725989857966],[-125.70363805633994,57.86728882004107],[-125.70321030258181,57.867403371894284],[-125.70250374350859,57.8675913124367],[-125.70178571782168,57.86776128101052],[-125.7008588646623,57.86794871903416],[-125.69992996588127,57.86812717475564],[-125.69955419172604,57.86819809716288],[-125.69951611571119,57.86821483235751],[-125.6991487266434,57.86829137962165],[-125.69843506784295,57.86843891194],[-125.69800423968964,57.86853998334807],[-125.6978446801608,57.868590084668746],[-125.6974675636744,57.86869688337402],[-125.69659153605588,57.868849643715116],[-125.69555548051258,57.868979604052406],[-125.6949507260377,57.8690802676292],[-125.69467696697252,57.86917720269038],[-125.69447166965287,57.8692787800585],[-125.69426003829079,57.86938146398323],[-125.69404230057776,57.86945721962858],[-125.69381584273707,57.869437634737686],[-125.69357105094983,57.86934175115184],[-125.69341539193371,57.869301021745464],[-125.69331844499841,57.869298555525056],[-125.69315826904804,57.86929482203854],[-125.69291494914268,57.86927519673185],[-125.69261161665112,57.8692487038877],[-125.69239461830952,57.86923362408079],[-125.69226508035943,57.86922211044675],[-125.69207765756391,57.86919924862402],[-125.69188601913203,57.86917637677651],[-125.69174707002055,57.869154748129894],[-125.69162494777514,57.86913764398581],[-125.69157444011621,57.86912743421329],[-125.69153337299123,57.86912173195771],[-125.69147756724242,57.869115995518854],[-125.69132992952696,57.86912574585509],[-125.69107252301801,57.86915430526096],[-125.69090903031746,57.86916850397448],[-125.69085514841946,57.86918520000419],[-125.69079595138055,57.86920636931475],[-125.69058224853163,57.86930343552543],[-125.69023531979565,57.86945177636225],[-125.69001746281641,57.869540982131944],[-125.68988536571025,57.86958216665513],[-125.68965175209067,57.86966572805246],[-125.68934304652878,57.869779391941705],[-125.6889037547909,57.87000601273592],[-125.68836893461042,57.87044099158264],[-125.68796405147947,57.87084038795649],[-125.68763344163963,57.871051559827755],[-125.687303275048,57.87120890402072],[-125.68701522017433,57.87137195355503],[-125.68677352154424,57.871537354448186],[-125.68653927462303,57.87169267974164],[-125.68634753115624,57.87180885525939],[-125.68626917723351,57.87185128438933],[-125.6861919715367,57.87188138060126],[-125.68597523756179,57.871960489929734],[-125.68575011895209,57.872031729197815],[-125.68566239823258,57.872060678863065],[-125.68560530184827,57.872081850906184],[-125.68551215238776,57.87212873031837],[-125.68544522372757,57.87219025006734],[-125.68537625045632,57.87224615786836],[-125.6853040970174,57.87230317953427],[-125.68526988932747,57.87236029091044],[-125.68524391714672,57.87244097152121],[-125.68517060058463,57.87263704613043],[-125.68506273714056,57.87293060233353],[-125.6850161373577,57.87308188346239],[-125.68501598727532,57.873099825794974],[-125.68504004247256,57.873123432505196],[-125.6850994318021,57.87320543656369],[-125.68514566421341,57.87335020889663],[-125.68513817702375,57.8734892470588],[-125.6851298523014,57.87360136921314],[-125.68515308278471,57.87372365880375],[-125.68522240493634,57.873878578577376],[-125.68536201419857,57.87407515703267],[-125.68556143659153,57.87430551928848],[-125.68574538753299,57.87449435223903],[-125.6858331285149,57.87459100147453],[-125.68582409676445,57.874662751014405],[-125.68573437150415,57.87480383807163],[-125.68561494275913,57.87496728332953],[-125.68556472546285,57.875046785527104],[-125.68554636417551,57.87510057031685],[-125.68546954873625,57.87521028799381],[-125.68534299253386,57.87534231646135],[-125.6852565096996,57.87547443960299],[-125.68523573530022,57.87568970327335],[-125.68527292132049,57.875906225482694],[-125.68534549386005,57.876052181844145],[-125.68541114598032,57.87614429359699],[-125.68547363686629,57.87623527643329],[-125.68558114418266,57.876490093179264],[-125.68572532103042,57.87689863133925],[-125.68584318452669,57.87730150028717],[-125.68591622398164,57.87764482809466],[-125.68597164511974,57.877825508011156],[-125.68599678711854,57.877844631525164],[-125.68598824122411,57.87785806844454],[-125.68589699926781,57.87792738140676],[-125.68568273813051,57.878083874901016],[-125.68549288056504,57.878222482964055],[-125.6854027200804,57.878287312477205],[-125.6853602982347,57.87831749064913],[-125.6853090676335,57.87839250494415],[-125.68523743997928,57.87851232795928],[-125.68519667614886,57.87859633837356],[-125.68521937229234,57.878655827541486],[-125.68533075136884,57.87882542599704],[-125.68552809961318,57.879054663040556],[-125.68576526328773,57.87918642986654],[-125.6859957512334,57.87923295223238],[-125.6860998776981,57.87926347631047],[-125.68605109241496,57.87929812542728],[-125.68596195558631,57.879367443509956],[-125.68592970130867,57.879442502895564],[-125.68592947680006,57.87946941657201],[-125.685923039021,57.87948285848472],[-125.68585602310527,57.879553350131644],[-125.68573180369849,57.8796584708925],[-125.68564688247264,57.8797277987464],[-125.68562666517197,57.8797490580845],[-125.6854748796166,57.87974533522909],[-125.68513446477971,57.879732194720845],[-125.68479392065129,57.87973251014314],[-125.6843107870355,57.87976500793407],[-125.68374853479467,57.879804044571586],[-125.68350376668327,57.87982476988328],[-125.68336037741533,57.879825550284274],[-125.68307889950333,57.87982263754007],[-125.68274688111063,57.879813996619276],[-125.68239587872984,57.87980418814775],[-125.68211975654484,57.87979231474657],[-125.68187631561986,57.87978164031067],[-125.6816729104351,57.87977218260818],[-125.6815917596693,57.87976974565676],[-125.68157282089354,57.87976521464744],[-125.68146014877219,57.87974812366683],[-125.68107132480698,57.8797247640723],[-125.68054940984248,57.879729119640416],[-125.6802288288951,57.879738442700905],[-125.6801433850368,57.87974496596033],[-125.6800716666981,57.87974815787782],[-125.6797415505282,57.879761942550836],[-125.67918159323409,57.87977853690768],[-125.6787428767531,57.87979430015976],[-125.67849930499384,57.87979707634355],[-125.6782499324095,57.87974040247322],[-125.67791359544924,57.87961959644556],[-125.67760244751241,57.87951230770213],[-125.67738807146807,57.8794310456188],[-125.67716233155814,57.87932171998928],[-125.67686751081492,57.879156155019025],[-125.67657473611096,57.8789962015162],[-125.6762607128507,57.878857502789],[-125.6759087676516,57.87859198997392],[-125.67573767024807,57.87825963151716],[-125.67572231908477,57.87808353047044],[-125.67571680510136,57.87798931739122],[-125.6755805982228,57.87789142155849],[-125.67531342874018,57.87782124178683],[-125.67509147369749,57.87776575037536],[-125.674763636484,57.87776158541398],[-125.67434868276895,57.87783682764276],[-125.6740612977049,57.877910138195084],[-125.673723357968,57.87797771709426],[-125.67331773333039,57.87806980037353],[-125.67304172792109,57.87816668659929],[-125.67273823079177,57.878274718921695],[-125.67217693801847,57.87844491567861],[-125.67135886412728,57.878684004714295],[-125.67061153010248,57.87891092820157],[-125.67032400191398,57.878998808985415],[-125.67027388945378,57.878942613563844],[-125.67003658498123,57.87883324719782],[-125.6694684227491,57.87882286609545],[-125.6687685957088,57.878920933282544],[-125.66810472576584,57.879124500527105],[-125.66747402996234,57.87939094728501],[-125.66683524840926,57.87961699954481],[-125.66614177673405,57.87982721166775],[-125.66577915087238,57.87993956577812],[-125.66567237974984,57.87997294045929],[-125.66549056767903,57.880026312185386],[-125.66512693201675,57.88013417630374],[-125.66443165256635,57.880308489438534],[-125.66363962333213,57.88045451883915],[-125.66311733501821,57.880499176557514],[-125.66279148023514,57.88050844430788],[-125.66230604819505,57.88055879935534],[-125.66173167213087,57.88065154091334],[-125.66120029867963,57.88076793946936],[-125.66069801429403,57.8809337529453],[-125.66049242974955,57.88104985734724],[-125.66050489928443,57.8810700748726],[-125.66039326521103,57.88105633295708],[-125.66018588428241,57.88101991797272],[-125.65989850568722,57.88097096257386],[-125.65965197323891,57.880951268152124],[-125.65937151090469,57.88095279360043],[-125.65903298288123,57.88096201973502],[-125.65887272008446,57.88096273054648],[-125.65879488528905,57.880942345330894],[-125.6586096957766,57.880901499056165],[-125.65834773504884,57.880840269777714],[-125.65809831811184,57.88078916506515],[-125.6579352785826,57.88074837474703],[-125.6578691595316,57.880599054797216],[-125.65776778673892,57.88038460135118],[-125.6575003369325,57.880346906307295],[-125.65724671849043,57.880411296327914],[-125.65711770846957,57.880453578346895],[-125.65694253461834,57.88047106984555],[-125.65667914874868,57.880450205049826],[-125.65648847949467,57.88043177026943],[-125.65637897780643,57.880415787633666],[-125.65625153120783,57.880403122852286],[-125.65611770119098,57.8803949271715],[-125.65601022635424,57.8803879208969],[-125.65593543233594,57.880382120443315],[-125.65587336504663,57.88036625999425],[-125.65574604183105,57.88034013790545],[-125.65549335421402,57.88030247700318],[-125.65515714506452,57.88028927069353],[-125.65483129014085,57.88029851895504],[-125.65458861146772,57.88031919657179],[-125.65436073357088,57.88033542646675],[-125.65408870981712,57.880336962684076],[-125.65384003476763,57.88032173763875],[-125.65366944847302,57.88029886532937],[-125.65357892530473,57.88028292976693],[-125.6535158442926,57.8802637012931],[-125.65342012405756,57.88023878066598],[-125.65327585200055,57.88022158350876],[-125.65316622832061,57.88021905505322],[-125.65312820219091,57.880226805963986],[-125.65311125117073,57.8802357332179],[-125.65310164062289,57.88024804388616],[-125.65306562999527,57.88026589288969],[-125.65299469201797,57.88029935083547],[-125.65289102158141,57.88033720910635],[-125.65276003282462,57.8803649031767],[-125.65265032599414,57.880371345510135],[-125.65257030445166,57.88035992237894],[-125.65251135812791,57.88034967564863],[-125.65247767305002,57.880343980562806],[-125.65241551410361,57.880338211117525],[-125.65228915636916,57.880321059667494],[-125.65214593035401,57.88030386401611],[-125.65200595864782,57.88027770528889],[-125.65185327750999,57.880255998888096],[-125.6517237244289,57.88024332425852],[-125.65163416504643,57.88023636132319],[-125.65157830739965,57.88023509369311],[-125.65151299438719,57.88022931556999],[-125.6514350820362,57.88021789727846],[-125.65139611744426,57.88021218809341],[-125.65137390309229,57.88022110134228],[-125.65130628425752,57.88023662422396],[-125.65119311539718,57.88027445629118],[-125.65111365840758,57.88031686234559],[-125.65104536369786,57.88040527620378],[-125.65098351909522,57.880480249800044],[-125.65095463964764,57.880523909806705],[-125.65091167818132,57.88060902575756],[-125.65083483378034,57.880709752836765],[-125.65076127469504,57.88079815277929],[-125.65068977576402,57.880889922384945],[-125.65061275327965,57.88100971320507],[-125.65056883829727,57.88108473372059],[-125.65053767235463,57.881147451971124],[-125.65048607702607,57.881253852345516],[-125.65042723466061,57.88134677651949],[-125.65036433495445,57.881420625707044],[-125.65025249532556,57.88154368922416],[-125.65005683464402,57.88172260385623],[-125.64987410552028,57.88187127362295],[-125.64979661026814,57.88192714130304],[-125.6497679016876,57.88195398011074],[-125.64973505281026,57.88197071514098],[-125.64966075985652,57.88202322688228],[-125.64949617894983,57.88214839389402],[-125.64933457393354,57.88229263289204],[-125.64926222129014,57.88236309244409],[-125.64920682131553,57.88242462518739],[-125.64908734571179,57.882573460673925],[-125.64895186782958,57.8827413182193],[-125.64883289231149,57.88283632611665],[-125.64870893541784,57.882901042108145],[-125.64863687348924,57.882940102039775],[-125.64863708210396,57.883029817159134],[-125.64864241963862,57.883249631975744],[-125.64860974142434,57.883473832228205],[-125.64858137538788,57.88357580772672],[-125.64852041595427,57.88366872571329],[-125.64839695709054,57.883791757310796],[-125.64824816097176,57.883918086163106],[-125.64807401682039,57.88404883359222],[-125.64796781337635,57.88413041742361],[-125.64796847132301,57.88417191220339],[-125.64800508956337,57.884203409173125],[-125.64802608287314,57.88421355758377],[-125.64801211580212,57.88424043506001],[-125.64805145902116,57.88431791800441],[-125.64812863462579,57.88440895815388],[-125.64827208856973,57.88451699490872],[-125.64851101372066,57.88467574816255],[-125.64876069416209,57.88481210070164],[-125.64899062706529,57.88491700055811],[-125.64926679439648,57.88504108623011],[-125.64954496154084,57.88517526951596],[-125.6497797620387,57.88532503823914],[-125.6499975268719,57.8854927047368],[-125.65016840530566,57.88560081164338],[-125.65022719250048,57.885629001989074],[-125.65028842200194,57.88562131280372],[-125.65043507215881,57.88561160504774],[-125.65053493849166,57.88564551029297],[-125.65052571188268,57.885730715138685],[-125.6505007436538,57.88580690718344],[-125.65055915666717,57.8858754680748],[-125.65067837317079,57.88598231730907],[-125.65078798402027,57.88610259847642],[-125.65094347495263,57.88627682878457],[-125.65115269019458,57.886457928343376],[-125.65129410366606,57.8865603494997],[-125.65139464544117,57.886634627593004],[-125.65155177519804,57.886747182569806],[-125.65173066757764,57.88690016601435],[-125.6518834260373,57.887029530737465],[-125.65199007930184,57.88712737456035],[-125.65212306181692,57.88722977285524],[-125.65240341603757,57.88735834893294],[-125.6527543270504,57.88749832285316],[-125.65302230696263,57.887598829448095],[-125.65322818940446,57.88768571653255],[-125.65346844938762,57.88781755028159],[-125.65374849936192,57.88798200878842],[-125.65411029587679,57.88808612150354],[-125.65443455463881,57.88814415686949],[-125.6544588639652,57.888252999420594],[-125.6543463252016,57.888335693684134],[-125.65428379228898,57.88836917445341],[-125.65430648666303,57.888424183841295],[-125.65439004373329,57.888511872940576],[-125.65447669079997,57.888608541519055],[-125.6546261701874,57.888751352030305],[-125.65483582823016,57.888887589791274],[-125.65498516853997,57.888931712981005],[-125.65503051091264,57.88893295191345],[-125.65502705115571,57.88896434322715],[-125.65502530619807,57.88904059652875],[-125.6550458930182,57.889095600363994],[-125.65506997414883,57.88911360577412],[-125.65512109931052,57.88917429590995],[-125.65523389906718,57.88929346057368],[-125.65533505019681,57.88941708075561],[-125.65544663075272,57.889555306574884],[-125.65557187163962,57.889698053415486],[-125.65569418760346,57.88981387804521],[-125.65583140786352,57.88991628382824],[-125.65592246820297,57.88999053420315],[-125.65600928658644,57.89006925931964],[-125.65617981742307,57.89021772985949],[-125.65642603866813,57.89039443154359],[-125.65662301671776,57.89053511972045],[-125.65671522493767,57.89060040103069],[-125.65680219311483,57.8906611830122],[-125.65692579365019,57.89075345966935],[-125.65701800293012,57.89081874078463],[-125.65708709369152,57.8908749907748],[-125.65716032123436,57.89094022290928],[-125.65718855801445,57.890967210190894],[-125.65722647160808,57.890972915006934],[-125.65740749087169,57.891013752776374],[-125.65766384844557,57.8911198275952],[-125.65772592999858,57.891251195787795],[-125.65764047202428,57.891370970266216],[-125.65762789408394,57.891477474835746],[-125.6576842526199,57.89165929324265],[-125.65773391031824,57.89188034489223],[-125.65775304860044,57.891980202404056],[-125.65780044628461,57.891985931437574],[-125.65794883772703,57.8920210774303],[-125.65809831636166,57.89205174028244],[-125.65818752154858,57.892099069877034],[-125.65826181642441,57.8921643042172],[-125.65829522788715,57.89220139755341],[-125.65828970205892,57.892228297981184],[-125.65827246591483,57.89238525564701],[-125.65823174023481,57.89268906201491],[-125.65820470547435,57.8929940250556],[-125.6581606054167,57.8932047431437],[-125.65806886749108,57.893318894807635],[-125.6580270215349,57.89339840982231],[-125.65803488807934,57.89346123086029],[-125.65805847419912,57.89353418526374],[-125.65810466831029,57.893674484343414],[-125.65815687843066,57.893847320745614],[-125.65825368671803,57.89398887119226],[-125.65840818838811,57.894164212933774],[-125.65852108294841,57.894391034276644],[-125.65858113985703,57.89463117744349],[-125.65861763325849,57.894793880522805],[-125.65862351377852,57.89484323918086],[-125.65862310689872,57.89488809594161],[-125.65860200151582,57.8950046721317],[-125.65855974785372,57.89512904422456],[-125.65852172633862,57.89525006283726],[-125.65849005981393,57.895369976307855],[-125.6584682738499,57.89544617874223],[-125.65844900429529,57.895477529799905],[-125.65840840657872,57.89553461939988],[-125.65834978889986,57.89560063432589],[-125.6583273329483,57.895635341534124],[-125.65838494645446,57.89567810430081],[-125.65857483929274,57.89579073593775],[-125.65878281761803,57.89588547051808],[-125.65888168607681,57.89591600287659],[-125.65894475541526,57.895939714799255],[-125.65904033980937,57.895982574539715],[-125.65915463164082,57.89605800404495],[-125.65924794467931,57.89611880097021],[-125.65932346818639,57.89616497351682],[-125.65944003295112,57.89622246545747],[-125.65963640543974,57.896317169053034],[-125.65983067620273,57.896412988443586],[-125.65997034859691,57.89647951053327],[-125.66009528226458,57.896544873412246],[-125.66017927589728,57.89658770276823],[-125.66022229882996,57.8966113629391],[-125.6603168805774,57.89664973343849],[-125.66044926094636,57.89670726485955],[-125.66047586455254,57.89679816991214],[-125.6604896596537,57.89690586402165],[-125.66069934911744,57.896929948867836],[-125.66095689791452,57.89690929735211],[-125.66114958389046,57.896945674116026],[-125.66136511809071,57.89702360225917],[-125.66162671238945,57.897138654871966],[-125.66185267525859,57.89723006610619],[-125.6619851405965,57.89727862465845],[-125.66208836522294,57.897294586901914],[-125.66220115479442,57.89730160174778],[-125.66225705500577,57.89730286498509],[-125.66229160179007,57.897330988792326],[-125.66245859167157,57.89741215641097],[-125.662681264872,57.89751701529164],[-125.66281998046232,57.89757456043819],[-125.66294076714642,57.89763093861576],[-125.66314096092611,57.897654995586166],[-125.66335171261674,57.89767795749862],[-125.66349717984875,57.897807291691954],[-125.66361922579522,57.89795899554722],[-125.66370302616521,57.89802425120439],[-125.66379210913325,57.898089520149526],[-125.66390417027311,57.89817839745323],[-125.66402676657152,57.89827066559515],[-125.66418048967385,57.89841908456803],[-125.66429759498538,57.89853488906027],[-125.66434250912252,57.89858546747835],[-125.66437590227508,57.89862592380672],[-125.6644639246054,57.898691189663566],[-125.6645981882004,57.89877563657283],[-125.66466949443316,57.89882291701209],[-125.66469471957116,57.89883307357117],[-125.6647335387191,57.89885560029205],[-125.66481089437025,57.898934296469854],[-125.66492748399145,57.89910841453801],[-125.66501577303667,57.89926339670234],[-125.66504684828149,57.899327397502525],[-125.6652442885779,57.89930546496046],[-125.66546343941789,57.89933405190536],[-125.66535712699978,57.89954686028153],[-125.66524537122126,57.8997775981449],[-125.66527227786491,57.89983598119423],[-125.66527628767997,57.89985954173074],[-125.66529471593037,57.899922389271886],[-125.66531301458005,57.89999981534595],[-125.66531605093675,57.90001328038359],[-125.66534532296627,57.90016250688217],[-125.66537735241046,57.900356598363125],[-125.66539701324798,57.900518136715164],[-125.66539576678609,57.90065831498815],[-125.66535132286913,57.900791656032716],[-125.66529168867098,57.90097430277893],[-125.66531070112788,57.90120873399287],[-125.66538905567559,57.90141303516007],[-125.66546293583963,57.90152648744056],[-125.66563931701808,57.90162113237857],[-125.66580491129179,57.90174266488337],[-125.66576470394249,57.90187601684646],[-125.66571810031452,57.9020149600265],[-125.66574281982606,57.902082309244264],[-125.66575593413802,57.90215075079015],[-125.66579972214168,57.90232692881817],[-125.66584899265739,57.90248069155022],[-125.66586542289093,57.90253119817665],[-125.66587882636,57.90256711831457],[-125.66593880584921,57.902702964656875],[-125.66604113274805,57.902939848031046],[-125.66614960831494,57.903199175878655],[-125.66622558318005,57.90343487171429],[-125.66630136008617,57.903692996161396],[-125.66637834362392,57.90393318037331],[-125.66641649990981,57.90403308545058],[-125.6664506583346,57.9041060655883],[-125.66652809786397,57.90429690691226],[-125.6665845514167,57.904473116770355],[-125.66660567051754,57.90459092248911],[-125.66662240398917,57.904725539080694],[-125.66663528236114,57.90482089507642],[-125.66683223419759,57.904857274478196],[-125.66708340657635,57.904967805233845],[-125.66703111083501,57.90515495771476],[-125.6669464294176,57.90530502116609],[-125.66701289587894,57.905424061759895],[-125.6671212049046,57.90558357936296],[-125.66722958427759,57.905735246878095],[-125.66726504727238,57.9057813152156],[-125.66721206965045,57.905806976375494],[-125.66705930753004,57.90590191847524],[-125.66688815150374,57.90604952291087],[-125.6667871833838,57.9061322582163],[-125.66671404917038,57.906171326254096],[-125.6666514479422,57.90621042061514],[-125.66659090390641,57.90625737030224],[-125.6665184579786,57.90633681244347],[-125.66644350404871,57.90646110659109],[-125.6663439278263,57.906624590073775],[-125.66620736390877,57.906795831034955],[-125.66611261986758,57.906892039001654],[-125.66611636225923,57.906945878393486],[-125.66608160625013,57.9070579371331],[-125.6660470192528,57.90715093150049],[-125.66604364664565,57.907173352221626],[-125.66594535819269,57.90719329201629],[-125.66557333998419,57.90726525333063],[-125.66509537623969,57.90750404470096],[-125.66458883242187,57.90787285179348],[-125.66398956189074,57.908107969488235],[-125.6636703138091,57.90817669431286],[-125.66365068114217,57.90824841819605],[-125.66366310521423,57.90839199649605],[-125.66368337527918,57.90860400372695],[-125.66367313019668,57.9088058408084],[-125.66338605277802,57.90893296221775],[-125.66286187999016,57.90902696078329],[-125.6626057333717,57.90923602552052],[-125.66265338089899,57.90957034178994],[-125.66271502772778,57.90975553912931],[-125.66276947077009,57.90980277837959],[-125.66286531412166,57.90993983937797],[-125.66286893309064,57.9101237683768],[-125.66281170392254,57.91027053513155],[-125.66279011912287,57.91032431070512],[-125.66277729688365,57.91034222165072],[-125.66275154178412,57.910390379350645],[-125.66272475321952,57.910435170042845],[-125.66276439540191,57.91048573623987],[-125.66285135580249,57.910555487067704],[-125.66289314872715,57.91060157282297],[-125.66288840567506,57.91065987690297],[-125.66287141463296,57.910788802176576],[-125.66283895668711,57.91087843709873],[-125.6628101649577,57.91091312959003],[-125.66272914034856,57.911006005946156],[-125.66266504783519,57.91109331782299],[-125.66265894915965,57.91118414094251],[-125.66266732761306,57.91130976611318],[-125.66264554087968,57.91138597049268],[-125.66261795620812,57.911402722594055],[-125.66259243151627,57.911425087228004],[-125.66257332821237,57.911437374946146],[-125.66248431344775,57.91147976508082],[-125.66221315810387,57.911594588610704],[-125.66184041382965,57.91174167623568],[-125.6615263722118,57.91193152767284],[-125.66132321249066,57.91211044570892],[-125.66125715596652,57.912180930052436],[-125.66123489477665,57.91219320956044],[-125.66111588744214,57.91228486701639],[-125.66087788114291,57.91246706019613],[-125.66067419471952,57.91258765980412],[-125.66061276156977,57.91261329701876],[-125.66056722856919,57.91263000299475],[-125.66047720246709,57.91266790341433],[-125.66025270367665,57.912755926855304],[-125.6598915287276,57.912904160224976],[-125.6595894890729,57.91304917936694],[-125.65934602362651,57.913249299499945],[-125.65920770682872,57.91349230399579],[-125.65917461824486,57.913765857276466],[-125.65913666799275,57.913994539494034],[-125.65910392398428,57.91411445272538],[-125.65908132555018,57.91416373946856],[-125.65907487223977,57.914177180565076],[-125.65903206351867,57.914243237597134],[-125.65894628294313,57.914393294702364],[-125.65889891724069,57.91449634848366],[-125.65888908627672,57.91453221028776],[-125.65875880237898,57.91458682857484],[-125.65840624956215,57.91471265098004],[-125.658014040247,57.9147912690106],[-125.65769943534029,57.91480616161038],[-125.65745255974161,57.91479991973052],[-125.65730494846868,57.9147860824895],[-125.6571910437012,57.91477906063207],[-125.65685030484116,57.91476584726636],[-125.65633875708015,57.91473873490453],[-125.65601807688233,57.91472557115028],[-125.65579238897736,57.91471040914927],[-125.65550870602479,57.914689489472586],[-125.65522499915687,57.914673055003384],[-125.65494631339658,57.91468354817773],[-125.65467796367419,57.91471761840039],[-125.65446883054247,57.914738384059234],[-125.65428694791541,57.91477940654313],[-125.65411634445057,57.91485522359574],[-125.65389445445226,57.9148860484575],[-125.65360289350146,57.91480566640863],[-125.65336114896803,57.914700741042644],[-125.65323179068265,57.914652181250176],[-125.65308316577463,57.91463497228401],[-125.65284907910171,57.91461529754889],[-125.6526528465462,57.9146103001937],[-125.652473373493,57.91461880389217],[-125.65218190009331,57.91464271554952],[-125.65188729368036,57.91466213250954],[-125.65176374587668,57.91467190284221],[-125.65163209666646,57.9147579117536],[-125.65129637443414,57.91500151369344],[-125.65096381557935,57.91524400167887],[-125.65082133076606,57.91547465104592],[-125.65069987167138,57.9158264742166],[-125.65040415101168,57.9160791508545],[-125.65008089188468,57.916115310750385],[-125.64986714109351,57.91617755152709],[-125.64968003314655,57.91632509380319],[-125.64956637795036,57.91640329786586],[-125.64951552566713,57.916424472047666],[-125.64922948965774,57.916542595204184],[-125.64859010930441,57.91686725846508],[-125.64797957795957,57.91726376923134],[-125.64765513249459,57.917538793774575],[-125.64744334983236,57.91772664091822],[-125.64718983713092,57.917976058281766],[-125.64693163653448,57.91827480763877],[-125.64676835616224,57.9184683897607],[-125.6467000240995,57.91855231910506],[-125.64666157862045,57.91860044052384],[-125.6466156528647,57.918657513884845],[-125.64655927465039,57.918705587716055],[-125.64648681514072,57.91877941275981],[-125.64637556125331,57.91893836684367],[-125.64621398923015,57.91917232604807],[-125.64602789682124,57.919433135372834],[-125.64591327022404,57.91961450972835],[-125.64589671318402,57.91969072602777],[-125.64590394034809,57.91970868883548],[-125.64602174170979,57.91975161790019],[-125.64634149112493,57.91986797892541],[-125.64669884666681,57.92002593350096],[-125.6470139158451,57.920191625447075],[-125.64734455794891,57.920384273304954],[-125.64773703953102,57.92062418586486],[-125.64812628439313,57.920873060578145],[-125.64845006059677,57.92112400444559],[-125.64872949870151,57.92137819513288],[-125.64897633931825,57.92161884169719],[-125.64918818823946,57.92187621789657],[-125.64937701484658,57.922114468123816],[-125.64948570475549,57.92223026627921],[-125.64950664653293,57.9222482650091],[-125.64955907421205,57.92228541166853],[-125.64971179136198,57.92243384829971],[-125.64985996421342,57.92261703865766],[-125.64988585062676,57.92278420693824],[-125.64981225157807,57.922980272274835],[-125.6497344716351,57.92317184070792],[-125.64965423686454,57.92328602062955],[-125.64945325443483,57.923446985049985],[-125.64914281494941,57.92379831256135],[-125.64892263640951,57.924205951329895],[-125.64884054358373,57.92440647998563],[-125.64869576840911,57.92453731160771],[-125.64837218667914,57.92482580018877],[-125.648072115515,57.925082948701466],[-125.647932688278,57.92520482187355],[-125.64781462931755,57.92530095731756],[-125.6476229094985,57.92548437347958],[-125.64744795038526,57.92568129153195],[-125.64732721380713,57.92583573658581],[-125.64717677975354,57.92600692517026],[-125.64705967925417,57.92611203443559],[-125.64701826191317,57.9261377188355],[-125.64688271856438,57.926183340530734],[-125.64654088497095,57.92627776033998],[-125.64613950952419,57.926415759029204],[-125.64579800079125,57.92658643868061],[-125.64556760776775,57.92672825449783],[-125.64548270708585,57.92677625245402],[-125.64544670115323,57.926788492982496],[-125.64532579415136,57.92684873136134],[-125.64505440150377,57.92697137199411],[-125.644745968374,57.92710288523026],[-125.64449385887296,57.92719529609869],[-125.64412672895293,57.927284034952066],[-125.64374712577413,57.92735030977917],[-125.64358962763106,57.9273734398282],[-125.6435357945346,57.927372174361864],[-125.6434597279878,57.92737869978262],[-125.64342064755525,57.927381959674996],[-125.64332671251869,57.92737946533446],[-125.64313367499011,57.92736549074294],[-125.64303762882682,57.92736299054519],[-125.6429698685422,57.92738411723109],[-125.64280372262316,57.92742853138871],[-125.64267359889388,57.92745734115034],[-125.64263865543593,57.92746958378173],[-125.64264223837691,57.92753688245861],[-125.64266492083665,57.92770404448828],[-125.64255456052024,57.92787645719561],[-125.6420846538099,57.928003045310284],[-125.64140349263313,57.92814252135134],[-125.64070290735658,57.928325679516824],[-125.64007081511639,57.928520233910355],[-125.63980821427924,57.92860363588588],[-125.63979028779062,57.92860246594882],[-125.6397408904596,57.9285787812215],[-125.6396988480404,57.92855960230436],[-125.63958076832812,57.928543582218445],[-125.63934357278107,57.9285104174429],[-125.63916740403681,57.92849648275043],[-125.63912836512054,57.92849525556071],[-125.63909033033217,57.928498517022575],[-125.63890875206185,57.92849914665566],[-125.6386342680063,57.928500645645244],[-125.63847385612921,57.92849572464701],[-125.63831114966786,57.92850986249047],[-125.63795381925333,57.928563845059706],[-125.63751896446324,57.92866471826525],[-125.63717910950237,57.92876809170379],[-125.63697380795031,57.92882024249512],[-125.63681641257334,57.92882990704476],[-125.63662204584423,57.92884283506827],[-125.63636840075662,57.92887242338086],[-125.63615998245004,57.928920078478164],[-125.63609643804459,57.92894121323123],[-125.63599313758357,57.92892523031359],[-125.63577599142909,57.9288921139326],[-125.63556960851177,57.92883771838407],[-125.6353476986402,57.92875075692392],[-125.63516164367907,57.928669500691164],[-125.63510385855753,57.928640183841274],[-125.63506994783653,57.92865354882719],[-125.63501260642325,57.928688157880956],[-125.63488835481422,57.9287652001112],[-125.63472042105711,57.92888249603629],[-125.63458221850888,57.928981929499486],[-125.63449924648584,57.929046748216],[-125.63443433157288,57.92909928006018],[-125.63436732208275,57.92915180612976],[-125.63428763868862,57.929203175904384],[-125.63421327447918,57.92925119577226],[-125.63417397308977,57.929276882105455],[-125.63413145261285,57.929307045539886],[-125.6340358986226,57.92936285755421],[-125.63387890915523,57.92943980900906],[-125.63361734629879,57.92952208028552],[-125.63333691767797,57.92959196279231],[-125.63320239249236,57.929637573618734],[-125.633158561035,57.929694648857],[-125.6331166925677,57.92976518734339],[-125.6330899155636,57.92980548719452],[-125.63306437176277,57.929826725141226],[-125.63305161626771,57.92983566192614],[-125.6329774681558,57.92986125197796],[-125.63281863688904,57.92991015996058],[-125.63269571974679,57.92995692376407],[-125.632606539806,57.93000826641553],[-125.63250425318131,57.93010443240472],[-125.63242699520863,57.930232069035334],[-125.63222316519183,57.93034814153968],[-125.6318619303851,57.930473872461604],[-125.63162578609447,57.93054835973611],[-125.6315039126203,57.930595125366224],[-125.63134265709867,57.930675426633954],[-125.63118434539551,57.930779287136],[-125.63101018900207,57.93088310359792],[-125.6307854243955,57.930980050722425],[-125.63069166416251,57.93106726714136],[-125.63077143457213,57.93111459072131],[-125.63078242212124,57.93117742458513],[-125.63055108955288,57.93129790444437],[-125.63023128571687,57.93139683018876],[-125.63006311697944,57.93142888673639],[-125.62995722625138,57.931461115997216],[-125.62976024626624,57.931523372408265],[-125.62946154161976,57.93162347643978],[-125.62904247283245,57.93172436635817],[-125.62856446994519,57.931806025407646],[-125.62818896111882,57.93187787529943],[-125.62799739621802,57.931926686361884],[-125.62790296252818,57.93197352537559],[-125.62778928714089,57.93204610488539],[-125.62764571202696,57.93215112402115],[-125.627563874095,57.932206969926504],[-125.62752556791827,57.93223714314613],[-125.6274101516101,57.93227046529406],[-125.62722500703535,57.93231032129126],[-125.62711918924481,57.93233469810473],[-125.62709372933368,57.932346963280686],[-125.62699033433846,57.93233994501056],[-125.62680574649322,57.932429147616766],[-125.6266811656739,57.93264188216019],[-125.62664806806333,57.93278534041957],[-125.62663258604624,57.93285595105081],[-125.62658546493336,57.93292310857289],[-125.62647727726004,57.93297327258029],[-125.62634496575349,57.93300654649223],[-125.62626568143037,57.933017539126304],[-125.62605252670353,57.93289918458404],[-125.62566959898051,57.93265586740223],[-125.62532085560449,57.932583112020644],[-125.62501672624381,57.9326966489137],[-125.62486837413167,57.932751184571785],[-125.6247970536158,57.932703881153465],[-125.62464815705552,57.93260140614755],[-125.62449508316249,57.9324944332479],[-125.62429905281672,57.93235369435203],[-125.6240380005907,57.93217127660236],[-125.62373994729829,57.931993239885124],[-125.62347320896409,57.93185117871307],[-125.62328526072224,57.93174747043756],[-125.62315217123745,57.931649524481934],[-125.62307115227644,57.93151695945465],[-125.62289303154182,57.93138187670776],[-125.6225353528702,57.93125525725644],[-125.62224508351548,57.9311445287963],[-125.62216637102514,57.93109720308082],[-125.62209083426447,57.931049886325454],[-125.62190286562392,57.93095066206887],[-125.62176004728333,57.93087511699019],[-125.62172434560843,57.93085595033296],[-125.62164018382455,57.93082655269302],[-125.62135932279821,57.93072482096557],[-125.62102593338284,57.93059938801139],[-125.62087360856874,57.930523814970016],[-125.6208579288112,57.930509190998286],[-125.62077100017841,57.930439411313415],[-125.6205085913858,57.93018520774286],[-125.62010061228683,57.92991825246796],[-125.61972007066073,57.92986333572041],[-125.61957617161956,57.92989544823738],[-125.61952321826989,57.92991211941462],[-125.61927125506506,57.92998205369599],[-125.61889021537893,57.93007965570798],[-125.61858922785343,57.93009000957657],[-125.61825847674409,57.930017287294426],[-125.6178445658608,57.92992189597923],[-125.61743598398456,57.929820911232476],[-125.6170820586698,57.92974363355813],[-125.61685023666803,57.92970147219919],[-125.61677860057138,57.929686686875286],[-125.61673536735798,57.92968095510884],[-125.6165088328529,57.92963880836188],[-125.61617165278959,57.92957615581527],[-125.61600306890551,57.92954426849566],[-125.61598838139302,57.92953525426375],[-125.6159654433824,57.9295071509424],[-125.6159165180745,57.92943859912343],[-125.61588840202468,57.929401508957035],[-125.61584356209498,57.92934642675909],[-125.61576538253416,57.92924975334779],[-125.61561064898014,57.92910239213417],[-125.61538993077481,57.92890325188436],[-125.61528114300822,57.92880536840391],[-125.61528041708836,57.928773964636896],[-125.61522337026526,57.92867398749651],[-125.61483134103935,57.92850575334593],[-125.61419949737225,57.92835476785197],[-125.61389504836008,57.92829220433389],[-125.61383916667435,57.92828643498517],[-125.61369025861735,57.92829161086889],[-125.61347928503389,57.92827641981265],[-125.61322508593638,57.92825661702951],[-125.61298114935977,57.92826375927208],[-125.6128447870069,57.92828242849787],[-125.61273089588101,57.9282708827124],[-125.61252043126373,57.92820634615079],[-125.61232055818347,57.92813847560654],[-125.61219129921784,57.928080903657374],[-125.6120569561605,57.92800537298339],[-125.61185549467692,57.92788703018766],[-125.61157957007715,57.927722489109414],[-125.61124807542892,57.927520776315184],[-125.61092180742732,57.92732356393569],[-125.61071513011906,57.927200718304505],[-125.6106227262348,57.92715334590709],[-125.61049036141381,57.92709127732865],[-125.61030012917325,57.92700997414426],[-125.61000561326313,57.92690817879598],[-125.60961742896833,57.92678031425968],[-125.60942494927032,57.926712461094525],[-125.60950011298544,57.926692494610634],[-125.60966208432575,57.9266469881923],[-125.60974125564891,57.92654516482321],[-125.60973232937161,57.92638813064],[-125.60961862022144,57.92625882671631],[-125.60937701802561,57.92614484868901],[-125.60925155147275,57.92602896784179],[-125.60928005618325,57.92592699624015],[-125.60930594864782,57.92587324085459],[-125.60930604185648,57.925864269245004],[-125.60933312114665,57.9257970595141],[-125.60936761057606,57.92562781635794],[-125.60936218207485,57.92543826948777],[-125.60928294157397,57.9252428988359],[-125.60912078482625,57.925001304129054],[-125.60896230416616,57.9248124298205],[-125.60891230400875,57.92474835849487],[-125.60890188878858,57.92473487011899],[-125.60888009938117,57.924697797194426],[-125.60885740291496,57.92464726379766],[-125.60884079463253,57.92462029943288],[-125.60882409305341,57.924602306664006],[-125.6087668182755,57.924528120587155],[-125.60863893094256,57.924340457276564],[-125.60850486886358,57.92413931793487],[-125.60844775367433,57.92404830997228],[-125.60844468903491,57.92403932910099],[-125.60842299389587,57.92399328453741],[-125.60835690199458,57.92385290491345],[-125.60828972850015,57.92371588654516],[-125.60826492244597,57.92366534689412],[-125.60825973002034,57.92365635976674],[-125.6082150651967,57.923587818002666],[-125.6082289459931,57.92347122461232],[-125.60826415821346,57.92333338577936],[-125.60812271666688,57.923131103072244],[-125.60796700278914,57.92288055453878],[-125.60786190618917,57.92263464077843],[-125.60770514390767,57.92238296749133],[-125.60755045298751,57.92213690758612],[-125.60742603555684,57.92192233821754],[-125.60735147241984,57.92178529786164],[-125.60734258561304,57.92172583319733],[-125.60736530839756,57.92167319056564],[-125.60736647915938,57.9215610459623],[-125.60735444780637,57.92139839585568],[-125.60734795810166,57.92131314423465],[-125.60734506439128,57.9212862201835],[-125.60734021723238,57.92124583261532],[-125.60732427893763,57.92115494576248],[-125.60723767810642,57.92105824324672],[-125.60716227399872,57.92100194696702],[-125.60723348692946,57.92095505474837],[-125.60728213125203,57.92084417163801],[-125.60724882194457,57.92069940259796],[-125.60723264987668,57.92063094468322],[-125.60722534731376,57.920621951322005],[-125.60720778871753,57.920586012222515],[-125.6071726196003,57.92051749830512],[-125.60713740375496,57.920453470161824],[-125.60711269511921,57.920393958911994],[-125.60708719218238,57.92030865130122],[-125.60705580741399,57.92018183162746],[-125.60703702372936,57.92005953504165],[-125.60702947114885,57.91997428038699],[-125.60702706334362,57.919902498655716],[-125.60701745864684,57.919811630569676],[-125.60701733222106,57.91972191192541],[-125.60702436751063,57.91965464397722],[-125.60703861135673,57.91960534094455],[-125.60705661036312,57.91949885360394],[-125.60709564856951,57.919297102695495],[-125.60715679876478,57.91910102440426],[-125.60719984465128,57.919021526408166],[-125.6072328502047,57.9189947082479],[-125.6072923950694,57.91895226762101],[-125.60736053481698,57.9188952730928],[-125.60747234494762,57.91879915549298],[-125.60761619449734,57.918668366381105],[-125.6077368670937,57.918531901517056],[-125.60784254710578,57.918417821973286],[-125.60792672878712,57.91833956635175],[-125.60801169340046,57.918288228425325],[-125.6081444366808,57.91821011554101],[-125.60828478019228,57.91811071682677],[-125.60840037494319,57.91805610428855],[-125.60855305433425,57.91798814290032],[-125.60869986788704,57.91787530507401],[-125.60875102506374,57.9178272318409],[-125.60872373831981,57.917812572522024],[-125.6085913628236,57.91775498843074],[-125.60841151847481,57.91769614322723],[-125.60833046063463,57.91767571840059],[-125.60833597922075,57.91765330510723],[-125.60833747393013,57.917509760609676],[-125.60825659514099,57.91726952707185],[-125.60792075543415,57.917090224612025],[-125.60747171798369,57.91693862474911],[-125.60720628839252,57.91678756482748],[-125.60705289081388,57.91662225569482],[-125.60691440403559,57.91644241123545],[-125.60683031765727,57.91630982913474],[-125.60677634578953,57.91622331632685],[-125.60674333898713,57.91615032307937],[-125.60671051991977,57.9160593867978],[-125.60667424532097,57.9159953556903],[-125.60665237451171,57.915968375744264],[-125.60661495944696,57.91591331305034],[-125.60654932534563,57.9158312516427],[-125.606499352968,57.91576605857438],[-125.60643153186534,57.91569296244958],[-125.6063355039489,57.91559174611225],[-125.60626081646973,57.91546816331741],[-125.6061635362096,57.915285075627054],[-125.60601537014989,57.9151242668848],[-125.60579739481685,57.914978952079196],[-125.60555739382258,57.914820114050926],[-125.60542464565735,57.91469972337685],[-125.60539558140665,57.91465365691737],[-125.60534897463508,57.91467034095008],[-125.60526429699458,57.914694762478504],[-125.60515040224885,57.91468769613008],[-125.60496568061973,57.91469163441417],[-125.60475631992578,57.914731386471914],[-125.60459942827619,57.914699519684916],[-125.60444878339217,57.91457458903541],[-125.60432116578643,57.91446767018155],[-125.60424490436048,57.91439342648248],[-125.6042126727582,57.91434847183788],[-125.60418643708931,57.91433381475288],[-125.60405692438061,57.91430763603702],[-125.6037536577793,57.9142461748702],[-125.60336086735573,57.914167624424714],[-125.60303885761154,57.91408255491397],[-125.60276082492841,57.91403013845464],[-125.60248169884383,57.913982204041176],[-125.60231313717267,57.913955907108964],[-125.60216774298769,57.913934165037375],[-125.60195387036671,57.91390100350124],[-125.60168221930144,57.91384411797187],[-125.60137805615389,57.91376919106115],[-125.60120235097885,57.91371932044064],[-125.60106454352652,57.913679656327716],[-125.60081855352186,57.913591444674],[-125.60057878871089,57.913513344480215],[-125.60043050907912,57.91346467654462],[-125.60037790395101,57.913449939623696],[-125.60028411878784,57.91343844354548],[-125.6000659344709,57.91341423781775],[-125.599998461384,57.91340842788414],[-125.59991411707284,57.91340144577827],[-125.59988569480245,57.91339575305941],[-125.59983688131261,57.91342140028949],[-125.59972121182415,57.913481612261975],[-125.59962253757051,57.913532903443055],[-125.59950126551168,57.913624499607295],[-125.59928439108928,57.91377524616039],[-125.5990919556615,57.91390924385295],[-125.59890685951065,57.913950181181676],[-125.59869260683227,57.91395290037049],[-125.59850176524917,57.913938867687435],[-125.5983826474763,57.914025983487086],[-125.59834356310114,57.91422660924337],[-125.59829044057281,57.91435990433012],[-125.59817793984497,57.91442012459241],[-125.59805019821856,57.91452403622996],[-125.5979085735864,57.9146424850093],[-125.59780638393852,57.91472516556603],[-125.59776375482039,57.91476428843174],[-125.59775412223131,57.914777717028656],[-125.59773177392906,57.91479447165098],[-125.59765283473263,57.91487385788712],[-125.59746567253009,57.91500786934395],[-125.59723846965207,57.915136152148335],[-125.5970233019085,57.91522521940154],[-125.59660447316917,57.915312548334676],[-125.59610266634796,57.91536261577969],[-125.5957967788072,57.91544804159984],[-125.59551425999118,57.91561652679415],[-125.59527462494431,57.91572233912256],[-125.59520382940654,57.91572997436041],[-125.59518188249592,57.9157108426054],[-125.59510871424307,57.91564557472937],[-125.59498116785294,57.91553416105882],[-125.5948443580657,57.91540028961862],[-125.59478068463204,57.915336171928665],[-125.59467844966295,57.91532352471527],[-125.59447647001465,57.9152645934055],[-125.59428486755995,57.91512494725541],[-125.59403878854899,57.914947004743176],[-125.59371344436516,57.91478115630632],[-125.59338657137253,57.914660161372886],[-125.59314157910367,57.914577545831875],[-125.59290279052547,57.91450840648313],[-125.59266193620671,57.91443365302533],[-125.59256196535277,57.914408674905104],[-125.59242395319016,57.91438694475396],[-125.59214637077831,57.91429413442549],[-125.5919897294922,57.914142255897254],[-125.59194359126535,57.9140187525455],[-125.59185330516004,57.91397585999581],[-125.59173303514643,57.91397324852795],[-125.59164653198143,57.91397074045867],[-125.59161804495,57.91396953166348],[-125.59162087814262,57.914000941592526],[-125.59161998939233,57.914082806402064],[-125.59161906411398,57.91416803552638],[-125.59154789327668,57.91421043332271],[-125.59131153613701,57.91420858698195],[-125.59092508166802,57.914229830354756],[-125.59052567113056,57.91427794814913],[-125.59020765459607,57.91431397893535],[-125.58993392775143,57.91435126677251],[-125.58964534622777,57.914397480084865],[-125.58935242826597,57.91445265119998],[-125.58918430047046,57.91448465559581],[-125.5891387825009,57.91449685143795],[-125.58906474502444,57.91451232371917],[-125.58898125562934,57.91452440237756],[-125.58893053111706,57.91453097471664],[-125.58887652214811,57.914547630165934],[-125.58866045381922,57.914524533732006],[-125.58816239036447,57.91442542675478],[-125.58761254598315,57.91433400795756],[-125.58723638114367,57.91428349817126],[-125.58698343571936,57.914254677385706],[-125.58681029297912,57.91435731608687],[-125.58664732343304,57.914591198610445],[-125.58651855089062,57.91478593553274],[-125.58642765596797,57.91489555789485],[-125.5862803155987,57.91495453857443],[-125.58606777641933,57.91499425146834],[-125.58580856695475,57.915054005484315],[-125.58541718756186,57.91513802021719],[-125.58499718706851,57.915234280886175],[-125.58469737949012,57.91533876530299],[-125.58443149154785,57.915431018641314],[-125.58418859721985,57.91544708289872],[-125.58400950164553,57.91541960839585],[-125.58384738963063,57.915383214901134],[-125.58359086395424,57.915296059756486],[-125.5833132966299,57.9152032309364],[-125.58317126473993,57.9151635349993],[-125.58307832849482,57.915169973043994],[-125.58296737443722,57.91518420495086],[-125.5829208565381,57.915191909655384],[-125.58289106091664,57.91521424587787],[-125.58283776375013,57.91526230243899],[-125.5828014499563,57.91530144036341],[-125.58275026305458,57.915349503502966],[-125.5826381840434,57.91546354293699],[-125.58251106135288,57.91560332909295],[-125.58242128674195,57.91570510203728],[-125.58234533370347,57.915796824979424],[-125.58227701222462,57.91586726377091],[-125.58219382954573,57.91594550626222],[-125.58206040932419,57.91608190789054],[-125.5819811477109,57.91618707800482],[-125.58197240640033,57.91621396601344],[-125.58179733040124,57.91620444475715],[-125.58141522091626,57.91621221658899],[-125.58108968401231,57.91625717394619],[-125.58083603020064,57.91629114192223],[-125.58062462458399,57.916321877982],[-125.58043099982034,57.91636612742719],[-125.58019283187973,57.91643154430756],[-125.57998545824304,57.916479114221204],[-125.57968622832396,57.91652975849141],[-125.57934265486242,57.91658362652453],[-125.57917776681612,57.916606656831256],[-125.57914189962761,57.91660542205893],[-125.57909125843352,57.91660414060276],[-125.57902911360998,57.91659272948464],[-125.57896280222474,57.916577940738634],[-125.57884484881731,57.91655625986044],[-125.57864248536524,57.91653319046976],[-125.57849778988236,57.91654282606775],[-125.57847020167493,57.91655619651035],[-125.57843946860287,57.91656843551949],[-125.57837690921563,57.91659403153463],[-125.57829965547806,57.916613973625104],[-125.57815043659949,57.91665050998703],[-125.57795540806532,57.916726152788364],[-125.57783765004065,57.91678185358194],[-125.57778565539566,57.91680636132562],[-125.57773562448875,57.91684545448288],[-125.57764583399258,57.91694722434102],[-125.57748726939272,57.91715868090897],[-125.57733186049045,57.91737014735172],[-125.57724409003943,57.91747977375964],[-125.57720672141527,57.917518906927945],[-125.57717455780272,57.917563663998706],[-125.57714129253436,57.91761178200339],[-125.57711004122126,57.9176699997028],[-125.57708829183674,57.91772712608139],[-125.57708069442135,57.91774504562529],[-125.5770553163463,57.91774945098155],[-125.57697076476208,57.91776039733805],[-125.57683025182294,57.91777453034889],[-125.57658914677847,57.9178175020249],[-125.57627910839187,57.91788941251364],[-125.57599960581074,57.917968148344],[-125.57568424626224,57.91804452645037],[-125.57541319657103,57.9181221665113],[-125.57532321086498,57.9181476737456],[-125.57524699920457,57.918167617435216],[-125.57508284453698,57.91821756058785],[-125.57497805838773,57.91824526334959],[-125.57488489765143,57.91827076016468],[-125.5746417399473,57.91830811440848],[-125.57429517165151,57.91834401636342],[-125.5738873551129,57.918383085991515],[-125.57349547378449,57.91841211206786],[-125.57305290162849,57.918445460488854],[-125.57244864952452,57.91849623239786],[-125.57206720447074,57.91853538109477],[-125.57192025264506,57.91855846011486],[-125.57171294620856,57.91859816718326],[-125.57157401100964,57.91865715896396],[-125.57154521859289,57.91868398190726],[-125.57152170719131,57.91870970034824],[-125.57145456038552,57.918766679897125],[-125.5713938134661,57.91881919408166],[-125.57133860308006,57.91884817496164],[-125.57127814576761,57.91887377449511],[-125.57120835208391,57.91888588618777],[-125.57117123150206,57.918902588929754],[-125.57117262619185,57.918965396338514],[-125.57117430064359,57.919095493503455],[-125.57117443107043,57.9191773620325],[-125.57117422649534,57.919195305070225],[-125.57123138064468,57.91927287119981],[-125.5713426894759,57.91941565745826],[-125.5713888305735,57.919533561433774],[-125.57135938554555,57.91961757781946],[-125.5713249490581,57.91967578407101],[-125.5713055561182,57.91971048760606],[-125.57132763676042,57.91981037051565],[-125.57144350042448,57.92001597440517],[-125.57165702258126,57.92026450854213],[-125.57176435691068,57.920477935197425],[-125.57151596712539,57.92069582576794],[-125.57111245963081,57.92090985228416],[-125.57097278577464,57.921032765773354],[-125.5710128167672,57.92113270666923],[-125.57091606401781,57.921287159846685],[-125.57076564193147,57.92142686081659],[-125.57070809877958,57.92147489923685],[-125.57069112241656,57.921482694927946],[-125.57065729769089,57.9214870718785],[-125.57062137491525,57.921490320576105],[-125.57051956770704,57.92153260885511],[-125.57034967499534,57.92162177986166],[-125.5702413295273,57.92168199059782],[-125.57022413511687,57.92170885075714],[-125.57022901062425,57.92174475397299],[-125.570224225039,57.921794083839366],[-125.57020682551412,57.921838887085464],[-125.57018641781558,57.92186910133289],[-125.57017456016037,57.92189149276894],[-125.57016912074567,57.92190493303398],[-125.5701338512339,57.921944071208486],[-125.57002746151267,57.92201774591762],[-125.56987996492131,57.922085680441775],[-125.56972193027259,57.92215358078098],[-125.56956619441111,57.92220354460978],[-125.56943807063021,57.92224013966761],[-125.56934073867411,57.922260011854426],[-125.56909959631805,57.92230297017859],[-125.56867444560429,57.92237673414686],[-125.56840580859937,57.922424088163886],[-125.5682619972367,57.92244717347133],[-125.56810230686953,57.922473571613246],[-125.56803351785378,57.92249017091058],[-125.567868609874,57.922512065919506],[-125.56749209550216,57.922578133468264],[-125.56717471108284,57.92264214907003],[-125.56685692519078,57.92274092867155],[-125.56639906697997,57.92290429798432],[-125.56599233308599,57.923027458791154],[-125.56567483871191,57.92310044240224],[-125.56544187136383,57.92316585054585],[-125.56517375302924,57.92325805926271],[-125.56489198553133,57.923344615453225],[-125.56468033252466,57.923392148101435],[-125.5644846104864,57.92343188207977],[-125.56438093996624,57.92345172997052],[-125.56435761554486,57.923460625612066],[-125.56414137537564,57.923539544047436],[-125.56368761349658,57.92371188954539],[-125.56338647586406,57.923829780832776],[-125.56329852336702,57.923858651292804],[-125.56323922065366,57.92387527924241],[-125.56296841602432,57.92392597978666],[-125.562410125469,57.92400938066121],[-125.56185905949535,57.92410738230635],[-125.56144859883486,57.924185657723385],[-125.56125402097501,57.924216418877016],[-125.56118210315128,57.92422851843479],[-125.56101285683854,57.9242593626544],[-125.56064053493613,57.92432542487255],[-125.56017106609451,57.92439452991484],[-125.5597756909249,57.92444593429561],[-125.55937586927767,57.924516388110014],[-125.55899921471509,57.9245914033599],[-125.55854646973253,57.924674015927586],[-125.55798393621433,57.92475738433668],[-125.55741189211905,57.92484071879977],[-125.55681752946835,57.92493743446889],[-125.55646082309958,57.92502148086331],[-125.5562884394518,57.925138663374014],[-125.55606488636953,57.92529829183195],[-125.55578881969672,57.92543531511173],[-125.55540713114232,57.92557759295562],[-125.5550932463397,57.92569878780996],[-125.5548880469561,57.92573399025991],[-125.55461184074584,57.92570390865702],[-125.55430929123425,57.925669252417414],[-125.55414278209038,57.92564626561916],[-125.55399309518285,57.9257186615911],[-125.55368884171172,57.92591726825858],[-125.5533024385589,57.92609989806982],[-125.55300563142642,57.926204322988404],[-125.5528971383216,57.926273491479975],[-125.55289083874794,57.92635870367342],[-125.5528929471804,57.92644843004906],[-125.55286150501564,57.92669505267904],[-125.55278023605678,57.92713776926969],[-125.55271277279616,57.927396607578885],[-125.55269767442779,57.92742347272237],[-125.55254486917235,57.92749024930605],[-125.55214377282927,57.92766385485493],[-125.55167368940002,57.927867507493616],[-125.55124832793116,57.92803990731816],[-125.55083715927913,57.92817197989566],[-125.55048534331975,57.92828406455312],[-125.55030801509481,57.92836982133526],[-125.55007410222647,57.92842174205364],[-125.54961345102745,57.928453830900715],[-125.54927553289927,57.92846278192681],[-125.5489455752695,57.92851213282761],[-125.54842506664467,57.928605697161636],[-125.54804084364562,57.92868962828184],[-125.54770756210952,57.92875242280397],[-125.5471470007852,57.92884023878272],[-125.54644879925571,57.92896122892206],[-125.5457611089255,57.92908561574602],[-125.54528944204766,57.929154661507475],[-125.54488955677296,57.92922395075509],[-125.54441851254613,57.92932776194398],[-125.54413896702265,57.92939746027789],[-125.54404055597861,57.92941731055018],[-125.54398552655877,57.92942833722794],[-125.54394118955543,57.929428185515405],[-125.54387870772878,57.9294436726302],[-125.54382745183166,57.929491721519234],[-125.54375565711464,57.92958007393408],[-125.54365390667894,57.9296133704467],[-125.54356547727106,57.929592880697705],[-125.54347277090922,57.92957686222343],[-125.5433432311258,57.92955062401853],[-125.54314092855253,57.92951852879953],[-125.54288726265091,57.929457098220354],[-125.54275599423809,57.9293994516327],[-125.54272615278465,57.92933654548324],[-125.54266020130544,57.92920398269093],[-125.54226753654186,57.92902655984392],[-125.54160254570344,57.92893231160435],[-125.54125540278568,57.92891878068278],[-125.54117514766203,57.928920747397754],[-125.54109799622542,57.928927210733264],[-125.5410282289204,57.92893482094987],[-125.54095208674129,57.928945773658974],[-125.54081545341506,57.92898343381059],[-125.54062133302452,57.92905902653469],[-125.54049475308604,57.9290507396949],[-125.54045135666244,57.9288879732078],[-125.54031241670374,57.92876749403436],[-125.5400806536796,57.928814918723695],[-125.53993107485024,57.92887384170352],[-125.53984154713405,57.928857831677014],[-125.53973202278856,57.92883614505399],[-125.53960781592988,57.92880655715235],[-125.53947084563308,57.92878477549887],[-125.53935803649318,57.92877204918129],[-125.53928210026234,57.92876617921506],[-125.53919773280823,57.928759158558435],[-125.53905437419475,57.92874184036966],[-125.53882664842196,57.92871750113575],[-125.53858509821704,57.92870208561312],[-125.5383845851031,57.92869690525896],[-125.53817674311395,57.92868609172921],[-125.53797107071487,57.92867192091029],[-125.53786353518728,57.92866033310429],[-125.53777505603512,57.92864432532448],[-125.53762014720085,57.92862135805386],[-125.53750528620868,57.928605258561184],[-125.5374455213207,57.92857140628114],[-125.53740224767151,57.92848490093875],[-125.53734425230502,57.928308624871086],[-125.53695966561958,57.92807738272176],[-125.53625939834447,57.92793700395241],[-125.53585559330942,57.92789522439],[-125.53576606965842,57.92787921164218],[-125.53558061670762,57.92785164962265],[-125.53516733528092,57.92780871345393],[-125.53457899253162,57.927751706801544],[-125.53395214984715,57.92773493672819],[-125.53347027010444,57.92777586749108],[-125.5332756507955,57.927806587904975],[-125.53322910711177,57.927814275358635],[-125.533161186945,57.92784319632039],[-125.53305342677287,57.92776431414647],[-125.53271957309491,57.92761622814105],[-125.53209223114251,57.9276398213743],[-125.53159491574505,57.92773340142333],[-125.53141501755555,57.92776865684393],[-125.53136320400645,57.92777632511735],[-125.5313337032452,57.92777173539425],[-125.53127998525284,57.92776145301644],[-125.53119474217131,57.92774096626719],[-125.53108317081674,57.92771477935203],[-125.53096325279111,57.92768071250255],[-125.53086966036598,57.92765122419993],[-125.53083707139177,57.927641016020814],[-125.53078658491337,57.927626258840945],[-125.53063394969888,57.92759095500525],[-125.53042869224716,57.92754425064018],[-125.53023579126197,57.92752114090923],[-125.5299827444947,57.92749669729022],[-125.52978864263275,57.92748591911999],[-125.52973793238216,57.92748910467215],[-125.52972931938822,57.9275025322181],[-125.52963524027157,57.92751341514957],[-125.52945579035121,57.927512781662145],[-125.52933981606385,57.92750115717565],[-125.52922589686325,57.927494025827734],[-125.52902729197078,57.927505660540604],[-125.5288159496416,57.92752285739904],[-125.52869019972832,57.927532506189486],[-125.5286172741803,57.92754009872819],[-125.52851996319363,57.92755545542319],[-125.52831285677689,57.92757154497727],[-125.52798316100858,57.927598415022366],[-125.52773377417097,57.92761883990132],[-125.52760808001135,57.927624001890116],[-125.52747188907483,57.927625762056316],[-125.52729466261553,57.92761616158168],[-125.52716797766348,57.927616833659776],[-125.52704239627236,57.927613023552425],[-125.52685567811714,57.9276033888077],[-125.52671221667784,57.92759502892617],[-125.526610908295,57.927592426108696],[-125.52650442650113,57.9275808328702],[-125.52635586522979,57.927558996540476],[-125.52619029891964,57.9275449500551],[-125.52599097080936,57.927530783282734],[-125.52574625828616,57.92751533321615],[-125.52562701090208,57.92751154431431],[-125.52559418295488,57.9275203994202],[-125.52557390611588,57.92753714966803],[-125.52553978770533,57.92756394409395],[-125.52552485381035,57.92757622737537],[-125.52549735188884,57.92758061543856],[-125.52542016078519,57.92759155552961],[-125.52534499314918,57.92760811026076],[-125.52531961651994,57.92761138436172],[-125.52529917235898,57.927642713416425],[-125.52519121817208,57.927747749429145],[-125.52502279117078,57.92787724276145],[-125.52489501428015,57.92796426397832],[-125.52481314632307,57.92801107492569],[-125.52476426268518,57.92803669502569],[-125.52471754688383,57.92805783685541],[-125.52461555687358,57.92810906190875],[-125.5244706895912,57.9281276105093],[-125.5243156234802,57.928119206640346],[-125.52416344617717,57.928132121334244],[-125.52400635076177,57.92819997160954],[-125.5238694164924,57.92825892176588],[-125.52374520861133,57.9283145527768],[-125.52365493350759,57.92835684700728],[-125.52362088402226,57.92837803373572],[-125.52347506571304,57.92847283964086],[-125.52324112438122,57.92860658257026],[-125.52284788792994,57.928730782906285],[-125.5222284913537,57.92887547997678],[-125.52179081250489,57.929007368403234],[-125.5217004363114,57.92905863297252],[-125.52166678453183,57.92904841871717],[-125.52147525035788,57.92908361906087],[-125.52118905901852,57.92917455397778],[-125.5210500224032,57.92923349377291],[-125.52099168258788,57.929254592561584],[-125.52090335883055,57.92931034997856],[-125.52085833614181,57.92936402002726],[-125.52084060277772,57.92943012466016],[-125.52079888774719,57.9295555824773],[-125.52071885464494,57.929705575471246],[-125.52061476120792,57.929837537922545],[-125.52055263252792,57.929907968851786],[-125.52046980524726,57.9299458018196],[-125.52029175413502,57.93000011450878],[-125.52006623496422,57.93005201304029],[-125.5198375397471,57.93010389975263],[-125.51967027279538,57.93014030649297],[-125.51964490967008,57.93022432751879],[-125.51966289844023,57.930387009752764],[-125.51956830889664,57.93051900575346],[-125.51947052788636,57.9305702422232],[-125.51943750693397,57.93059255315572],[-125.5193642438773,57.930625933959895],[-125.51922700671214,57.93070730845828],[-125.51915578289305,57.93074630400885],[-125.51910605720607,57.93075397509705],[-125.51905728086798,57.93077062159198],[-125.51898612848498,57.93080400981338],[-125.51882467503066,57.93088081051672],[-125.5186894897133,57.93096667789949],[-125.5185704777691,57.931026809070616],[-125.51845054746512,57.93107684331951],[-125.51837186642142,57.931120297529475],[-125.51834302399106,57.931145987809025],[-125.51832379173509,57.931163862311635],[-125.5181994934491,57.931142104526714],[-125.51798406335153,57.931065063550435],[-125.51787793387297,57.931025427168244],[-125.51777363084186,57.93100934881763],[-125.51752583867969,57.93098490052436],[-125.51724001593585,57.93096367852254],[-125.51680521850784,57.93095088789347],[-125.51623185879728,57.93095777997839],[-125.51582080217588,57.930987689326585],[-125.5156569893745,57.9310005521285],[-125.51561384478839,57.93099030182657],[-125.51549862228514,57.931001098019806],[-125.51529196272821,57.931063150636874],[-125.51517313302874,57.9311086999544],[-125.51515401497153,57.9311176024137],[-125.5150837321539,57.931164449751975],[-125.51495586322402,57.931255947531895],[-125.51488769128628,57.93130280245759],[-125.51487907211573,57.931316229097284],[-125.51484494265523,57.9313430208912],[-125.51480114426373,57.93138211399041],[-125.51476702916037,57.931407784317685],[-125.5147256483714,57.9314244561736],[-125.51459841469782,57.9314666098998],[-125.51433564575203,57.93153967173301],[-125.51409484866306,57.93162739268153],[-125.5140005807577,57.93165172200657],[-125.51385270992624,57.93165679023226],[-125.51350514810451,57.93175533567971],[-125.51316175099551,57.93193912959381],[-125.51302832866831,57.93205191388004],[-125.51301959246335,57.932074312002435],[-125.51291182245245,57.932080647207336],[-125.512689846291,57.9321011443396],[-125.51250597742428,57.9321139299745],[-125.51242434442763,57.93213942592033],[-125.51236713457291,57.93223678732419],[-125.51210927681652,57.93233677889092],[-125.51170155087316,57.932433977995714],[-125.51141736355909,57.93252938578131],[-125.51132923422749,57.93256719379128],[-125.51126367706125,57.93257480393766],[-125.51110923454941,57.932597789088184],[-125.51090590736365,57.93264526775106],[-125.51056800079428,57.93264963487205],[-125.51022757816914,57.93260464575596],[-125.51013927213302,57.932655910375125],[-125.51014432076099,57.932754621209206],[-125.51002406682974,57.932828198407655],[-125.50978625162877,57.932929380761315],[-125.50957147127728,57.93304522701255],[-125.50948961481102,57.9330875429337],[-125.50937616128557,57.933125256487614],[-125.50913334810978,57.93320398924605],[-125.50899433627882,57.93325843091275],[-125.50896666716436,57.93327515154079],[-125.50892415896456,57.9332963035077],[-125.50887717869139,57.93333650455227],[-125.50881227141852,57.933374396510835],[-125.50870239457133,57.93346146887333],[-125.5085505280914,57.933610069080636],[-125.50844209944735,57.93374649279502],[-125.50836154739001,57.93385161713755],[-125.5082619595252,57.93395779272268],[-125.50821059328739,57.93401031393885],[-125.50814007067272,57.93399435264773],[-125.50798198438181,57.93397246059418],[-125.50776081658108,57.9339301483182],[-125.50738373408707,57.93386146491568],[-125.507004364988,57.933806230046436],[-125.50679780338574,57.933777428253144],[-125.50668809249446,57.93377029321935],[-125.50664177144698,57.93376002822953],[-125.50655000012055,57.93375295948303],[-125.50626603842176,57.93374966490773],[-125.50584755931769,57.93377839472697],[-125.50539987230455,57.933780098736],[-125.50507156640435,57.933775515553336],[-125.50495770769002,57.933843504529825],[-125.50483004132504,57.93391704964641],[-125.5044857711822,57.934002126137486],[-125.50412017911249,57.93410394501209],[-125.50389542357006,57.934173763508035],[-125.50362445002759,57.934225465432775],[-125.50320635892825,57.93430353470102],[-125.50280504195742,57.934391758795776],[-125.50244700166186,57.93448014324955],[-125.50218441077985,57.93453635959475],[-125.50209551715605,57.93455172865159],[-125.50208255072438,57.934574110340165],[-125.5020556872598,57.93460877668198],[-125.50204378501583,57.9346311623439],[-125.50199428837601,57.93462088386541],[-125.50190904570746,57.934600378238244],[-125.50187004754787,57.93459462496995],[-125.5017486705866,57.93459192829667],[-125.50147859815345,57.93457521738362],[-125.50119609462386,57.93454051530215],[-125.50096413514387,57.93451609542296],[-125.50082499533536,57.93449875182059],[-125.50067494039483,57.934508283335575],[-125.50045833289907,57.93451980828827],[-125.50033999594667,57.93452609377557],[-125.50030511888248,57.93452932754836],[-125.50027239610759,57.934528083363155],[-125.50019100500225,57.934535628735375],[-125.50001024568817,57.93447214644871],[-125.49978322670555,57.934393910739836],[-125.4995438595913,57.93445020904349],[-125.49929195680522,57.934496366275106],[-125.49889950532632,57.93447246131748],[-125.4984100124202,57.934441461019226],[-125.49794298272589,57.93438811340363],[-125.49756679795988,57.934332863605185],[-125.49729250614502,57.934316128296125],[-125.49704868858343,57.934309600974586],[-125.49690725972044,57.93430570271759],[-125.49689044235244,57.934300031708005],[-125.49673227473714,57.93420634956424],[-125.49645153568211,57.9340404278336],[-125.49630063196732,57.933955744686195],[-125.49626692260614,57.93395000976306],[-125.49620769457324,57.93395763645496],[-125.4961070577658,57.9339819291762],[-125.49599171712181,57.93400168019839],[-125.49594087494526,57.93401382450713],[-125.49594482226271,57.93411253199344],[-125.4959703747567,57.93433356540946],[-125.49597366068038,57.93448161672626],[-125.49588012048952,57.93452836626837],[-125.49570953142704,57.93457370275768],[-125.49555780879533,57.934628082490626],[-125.49545577629104,57.934678164127305],[-125.4953826495563,57.93469919593802],[-125.49524918389842,57.934731214302275],[-125.49502054648573,57.93477408708009],[-125.49478642525207,57.93483151828043],[-125.49454903883753,57.93489678724641],[-125.49436959293577,57.93497236916966],[-125.49428475882681,57.935077469054114],[-125.49421820627049,57.93523759215594],[-125.49413635083637,57.93535728288649],[-125.49408818228895,57.935405324921774],[-125.4940762146841,57.935432195694354],[-125.49406159034729,57.93549830917081],[-125.49404131804734,57.93559243892078],[-125.49401495225433,57.9356686014111],[-125.49395507197613,57.935724449517664],[-125.49386854790309,57.935799262081815],[-125.49376613245477,57.935877378771345],[-125.49363808988913,57.93597670670871],[-125.49349637291708,57.936071496540244],[-125.49328966874722,57.93620977806477],[-125.4931009811314,57.936343641771565],[-125.49299874409009,57.936408300492694],[-125.49287432570362,57.936472874754905],[-125.49271808220878,57.93654966440196],[-125.4926253380575,57.9366143589815],[-125.4925984813083,57.93664902355577],[-125.49258520577614,57.936693833413734],[-125.49257168802667,57.936756586508956],[-125.49255643990817,57.93686867946052],[-125.49253779039282,57.93699870363794],[-125.49252620250164,57.937074922219594],[-125.49248325685399,57.93712746970285],[-125.4924003854269,57.937165285510424],[-125.4922911258798,57.93720300076484],[-125.49214051259557,57.93725289500056],[-125.49200964870951,57.93732529454692],[-125.491933933346,57.93738108151784],[-125.49184392223022,57.93747830985402],[-125.49174212089294,57.937587829807896],[-125.49169818679424,57.937635887259944],[-125.49169066596468,57.93764483066995],[-125.49164202298387,57.93772875850721],[-125.49152522833442,57.93793242810426],[-125.49138149587623,57.938175247778254],[-125.49124608898425,57.938428192749335],[-125.49111856406888,57.93864415783965],[-125.49102148361031,57.93879519138054],[-125.49096425204583,57.93888805839169],[-125.49094155501284,57.9389272246618],[-125.49092858043144,57.93894960536821],[-125.49089741918158,57.93898873930995],[-125.4908747675826,57.939024541208596],[-125.49086831063384,57.93903348865012],[-125.49084678238617,57.939063687272075],[-125.49080902726905,57.93912186173279],[-125.49071480061897,57.939217951896666],[-125.4903114268916,57.93929603766662],[-125.48971396195255,57.93928029380751],[-125.48944410488593,57.93924561514995],[-125.48945423755956,57.93927705632723],[-125.4894711896919,57.93935001961361],[-125.48948126149688,57.93938594661247],[-125.48961248304926,57.939443646262156],[-125.48988534794391,57.9395680571683],[-125.49003855414482,57.939639298692384],[-125.49004899168249,57.939648310729],[-125.49000608527535,57.939697493189996],[-125.48987517742894,57.939850639702584],[-125.48973185321314,57.94006205732303],[-125.48968625423277,57.94023235294096],[-125.48970832795001,57.94031767253133],[-125.48971019334246,57.940413008403894],[-125.48964622619414,57.940536130143265],[-125.48952689384228,57.94061417928429],[-125.48944518111126,57.94064302575216],[-125.48942170644598,57.940660880085],[-125.48941313696417,57.94066981938303],[-125.48932572612232,57.94073004637489],[-125.48916637042156,57.940878597344586],[-125.48907909166257,57.9410061156148],[-125.4890561932248,57.94105986059177],[-125.48900702433895,57.94110341123622],[-125.48894809925001,57.94116486871361],[-125.48887094122176,57.94124756506177],[-125.48875465934519,57.94133459740648],[-125.488697164,57.941369143894214],[-125.48856850317705,57.94135631370152],[-125.48832582800978,57.941340802801136],[-125.48819585868748,57.941345911479324],[-125.48814228129073,57.94140290308927],[-125.4879328574867,57.94150527831504],[-125.48756464390232,57.94155769625346],[-125.48724361136125,57.94155758339595],[-125.4871199617086,57.94156383685273],[-125.4870576980648,57.94156135426863],[-125.48694895451146,57.941558692789044],[-125.4868476112651,57.941556059706116],[-125.4867885530704,57.94155022478592],[-125.48670410549704,57.941547656634896],[-125.48654390329695,57.94152460939305],[-125.4863692700697,57.94147571148717],[-125.48622949288617,57.941426947687184],[-125.48603377173667,57.94137572503998],[-125.48578941508839,57.94132880058521],[-125.48568403278578,57.94131269284341],[-125.48563758541947,57.941311392128085],[-125.48552449601794,57.94131768484551],[-125.48538943922044,57.94130931296189],[-125.48518982315349,57.941311906813226],[-125.48496081156894,57.94137831322684],[-125.48474590269291,57.941416735853984],[-125.4843991572957,57.941367170042355],[-125.48399864222579,57.94131066612136],[-125.48374210996656,57.94130406536415],[-125.4836354500131,57.941304773796446],[-125.48348331324748,57.941309792019],[-125.48324250575125,57.941312223354686],[-125.48307987088377,57.941312714357956],[-125.48291308926328,57.941307581496815],[-125.48263881482437,57.941286330084296],[-125.48238277712674,57.9412438401044],[-125.48220283288619,57.94119828065712],[-125.48212074555391,57.941177774505185],[-125.48206175049506,57.94116745166831],[-125.48199214944714,57.94116045214334],[-125.48196157980385,57.941155847291675],[-125.4819102941589,57.94112312401912],[-125.48180759802527,57.94106552754555],[-125.48175729830851,57.941037294113436],[-125.48174232929586,57.94105069411629],[-125.48169961143543,57.94108529504605],[-125.48164863134824,57.94110640564288],[-125.48151326680797,57.94112045895798],[-125.4813058025152,57.94115554044142],[-125.4811449242087,57.941181830793894],[-125.48103369865684,57.94120607122003],[-125.48086970695027,57.94122898457385],[-125.48061997171573,57.941266143419696],[-125.4804274133688,57.94129230948624],[-125.48035443450028,57.94129987565718],[-125.48023118911028,57.94127808638272],[-125.47999466753843,57.941276042495176],[-125.4797446051829,57.94133675028411],[-125.47951566146833,57.941397540064074],[-125.47940146113288,57.941408309323236],[-125.47926609466542,57.94142236036108],[-125.47891251354035,57.9414849052498],[-125.47850802655157,57.94156295132945],[-125.47823795010929,57.941619091966956],[-125.47808446797599,57.94164540760191],[-125.47794163755712,57.9416639141523],[-125.47779142358372,57.94168239162864],[-125.47766237582788,57.9416975873167],[-125.4775978136027,57.94170854951631],[-125.47756608741518,57.941711789744204],[-125.47754670567193,57.94173863020988],[-125.47751166722186,57.94182821429843],[-125.47748919132614,57.941925698248774],[-125.47747271950666,57.9419704944002],[-125.47745881303163,57.94198389810733],[-125.47743210864954,57.94200510227389],[-125.4774034182922,57.94201844802559],[-125.47732821627113,57.94203385446418],[-125.47709355247393,57.94204975701651],[-125.47681275266508,57.942041926230424],[-125.4765508827096,57.9420397767697],[-125.47629114038864,57.94203651363445],[-125.47614857455595,57.94203707503128],[-125.47609361618372,57.94204022362101],[-125.47603554391208,57.94203887387754],[-125.47601339220134,57.942037665296006],[-125.47600145520137,57.942060048739606],[-125.47595873090971,57.942094647866554],[-125.47595395970437,57.942058740532225],[-125.47595420985644,57.942040797226255],[-125.47587497087702,57.94204272876219],[-125.47570271215419,57.942052145087864],[-125.47548046906685,57.942086037941756],[-125.47514159666845,57.94215311686487],[-125.47475614958755,57.94222786207708],[-125.47450197387644,57.94227957179732],[-125.47434487087766,57.94233727141432],[-125.47418775170921,57.942396092306446],[-125.47406882070452,57.942442726968615],[-125.47399572847127,57.942458139866055],[-125.4739374214079,57.94247473258483],[-125.47377360704246,57.94248305823376],[-125.47336772509387,57.94250837198684],[-125.47294707427227,57.94253250460215],[-125.4727238412283,57.94256190290904],[-125.47252487176965,57.94259251836505],[-125.47231005344783,57.942623070795534],[-125.47220338953768,57.94262377008256],[-125.47208975038389,57.94259416064567],[-125.47186571095934,57.94252934671711],[-125.47168993427462,57.94248827557837],[-125.47161347648307,57.94251825358643],[-125.47154415799947,57.942641345948864],[-125.4714656813904,57.94281487036308],[-125.47143083245231,57.94288987401263],[-125.47132245661271,57.94293654811635],[-125.47107378689765,57.94304659224044],[-125.47087790098503,57.9431579669389],[-125.47080944728077,57.943219378842905],[-125.4707944103408,57.94323726347688],[-125.47072995289906,57.943239250641795],[-125.47053869477914,57.943247463386435],[-125.47031567575793,57.94326003575471],[-125.47013161145654,57.94328173473988],[-125.46999399622636,57.94330473965581],[-125.46994530837843,57.94331239673361],[-125.46991786753925,57.94331116611126],[-125.46994176920539,57.943339299149656],[-125.4699251770675,57.943391944637675],[-125.46984820987866,57.94345780830373],[-125.46968561741842,57.94353006048811],[-125.46951936890733,57.94356080167096],[-125.46932237695329,57.9436003924451],[-125.46909327587977,57.943670136133214],[-125.46894367038291,57.943720008735916],[-125.46876983056755,57.94376529852994],[-125.46840477722117,57.9438894538104],[-125.46792698699046,57.94406923431625],[-125.46734695309524,57.9443091668921],[-125.4667603208802,57.94456701499891],[-125.46630483996228,57.944810805890924],[-125.46584455509546,57.94509495088981],[-125.46552714979757,57.945283216259405],[-125.46538362521855,57.94542395275836],[-125.46522964492395,57.94563081708066],[-125.46498068914185,57.94590683467757],[-125.46464973118901,57.94623074821926],[-125.46448366140893,57.946396066933],[-125.46442208122578,57.94649339222955],[-125.46423900897896,57.946740513718225],[-125.46402701843712,57.94694153624882],[-125.46385825401502,57.94699917705744],[-125.46373060657514,57.94706259066535],[-125.46369514617416,57.9471790866938],[-125.46373940026699,57.947261136061435],[-125.46370882034657,57.947331669189104],[-125.46349554379194,57.94747436649981],[-125.4631417738177,57.9476176194166],[-125.46279717253613,57.9477115612074],[-125.4625952857313,57.947795983668],[-125.46247642465478,57.94790877873087],[-125.46239258489945,57.94801049964592],[-125.462365713116,57.948116936344384],[-125.46239031283024,57.94824376807733],[-125.46242274657126,57.948339228646695],[-125.46244316411077,57.94838865815766],[-125.46244718025638,57.94840325420249],[-125.46213206169736,57.94850179935442],[-125.46166055642215,57.94875336176002],[-125.46169878784269,57.949033898078994],[-125.46193581998116,57.94922439303626],[-125.4619824418977,57.949288508271714],[-125.46186353817096,57.94933064653012],[-125.46160015629846,57.94943052087602],[-125.4614310394876,57.94951170950256],[-125.4613660572833,57.949550700525805],[-125.46124347660974,57.94962759078828],[-125.46104707695564,57.949770352807676],[-125.46079045002409,57.949988013491954],[-125.46054506062063,57.95023263591772],[-125.46041820482485,57.950386893750796],[-125.46038014969322,57.95046188225429],[-125.46034586920776,57.95056941040012],[-125.4602968988596,57.95074304937706],[-125.46023928487132,57.9509301117477],[-125.46021680705269,57.951024229324226],[-125.46014449938056,57.951057582523525],[-125.45991570650492,57.951101517283945],[-125.45966686825483,57.951143127370365],[-125.45950507721818,57.95122882955764],[-125.45938843833771,57.95133378064851],[-125.45926844409924,57.95145105488875],[-125.45912175987041,57.95158728681659],[-125.45903612932071,57.95166544666159],[-125.4590081661257,57.951700100695575],[-125.45893606503328,57.95179289528688],[-125.45880471389398,57.951965078157684],[-125.45866178108413,57.95220787044442],[-125.45852729667276,57.952450696952866],[-125.45838236079182,57.95268563021681],[-125.45822495775795,57.952905932809344],[-125.45810293339483,57.9531633896454],[-125.45806513704815,57.953440254837396],[-125.45810088057138,57.95367143606165],[-125.4581939115778,57.95381312735818],[-125.45839917012285,57.95401135116109],[-125.45869761188203,57.95426715121134],[-125.45893801690063,57.95444532928789],[-125.45901855527428,57.95450061123105],[-125.45900997540465,57.95450954870457],[-125.45899944348473,57.95458128421426],[-125.4589816523764,57.95471579624392],[-125.45886924091621,57.954892542727016],[-125.45857845600408,57.95513137109931],[-125.45822251246204,57.95534638196788],[-125.45793459667395,57.95545960868301],[-125.45761650545309,57.95554018752476],[-125.45692071885858,57.95580428162974],[-125.45582686414802,57.95627311139785],[-125.45460345281721,57.956639342825376],[-125.45354560343965,57.956734829464125],[-125.45287053934351,57.956734304820046],[-125.4525367004783,57.95673405637703],[-125.45246331014962,57.95676740124165],[-125.4526043013796,57.95695191231406],[-125.45291431351852,57.95735581679407],[-125.45323995816382,57.95777436479984],[-125.45336849186468,57.957944244143825],[-125.45338097330074,57.95795775377544],[-125.45339859795602,57.95798025680252],[-125.45341365356022,57.95803527395103],[-125.4534274896168,57.95824618014907],[-125.4534819852056,57.95856716395885],[-125.45366485949533,57.95885054140553],[-125.45397400251342,57.95909742482047],[-125.45425476356341,57.959335219106705],[-125.45437869042011,57.95953199586079],[-125.45438723581124,57.95967110196318],[-125.45435524387852,57.95983695925486],[-125.4543011608055,57.96006889716636],[-125.45417795617054,57.96033083391188],[-125.45399781301852,57.96058580829527],[-125.45390843540702,57.960700961295096],[-125.45389004303091,57.96073116764817],[-125.45386488709786,57.96078938487967],[-125.45385571769746,57.960838695226265],[-125.45384667869075,57.96087903376429],[-125.45384641785516,57.96089697738562],[-125.45389909702901,57.96090728696925],[-125.45417489459248,57.96097795156034],[-125.45458126234384,57.961079431238865],[-125.45478128560715,57.96112959692349],[-125.4549101564135,57.96120526704448],[-125.4551130406725,57.961349653573556],[-125.45523324860369,57.9614387465275],[-125.4553586832053,57.96153234689607],[-125.45566019506632,57.961652461354625],[-125.45598510570234,57.961688554787834],[-125.45630975729767,57.961742591073204],[-125.45672616938033,57.96188111613264],[-125.45699433199282,57.96196856697848],[-125.45707322501187,57.961993562096644],[-125.4571488752184,57.96202303014685],[-125.4572141058588,57.96204236185768],[-125.45723825224738,57.96205255401201],[-125.45724955873197,57.96207503090091],[-125.45728153774431,57.96220189551206],[-125.45733136870561,57.962409583961154],[-125.4573689749606,57.96258581945263],[-125.45741899662337,57.96285295060828],[-125.45749843752755,57.96320543891927],[-125.45759976087864,57.96343352471441],[-125.45765794231978,57.96350217557304],[-125.4576882113289,57.96367389515238],[-125.45771840916403,57.96399814475328],[-125.45771205801158,57.96421794203838],[-125.45766621981146,57.964392716964866],[-125.45761524727142,57.96462915612107],[-125.45760511035624,57.96474575580773],[-125.45775815156071,57.96475871502536],[-125.45798565480501,57.96481010925392],[-125.45804811413903,57.96487541277153],[-125.45789887512602,57.964965651699266],[-125.45766560231812,57.965093681465056],[-125.45729675473326,57.96524471184866],[-125.45675519238246,57.96542756288602],[-125.45636017283535,57.9655605394022],[-125.45624021112815,57.9655981831037],[-125.45624183118638,57.965705858361055],[-125.45624976419536,57.96610628361118],[-125.45604672474485,57.966773899302126],[-125.45557860755943,57.96735519580844],[-125.45523556104699,57.96761960291259],[-125.45497487708485,57.9678148095707],[-125.45459367238769,57.96815868945234],[-125.45423344869627,57.96851274820361],[-125.4539804899557,57.968757333061546],[-125.4537613274699,57.969003177452976],[-125.4535502898412,57.96927148590293],[-125.45334062392594,57.96951736865967],[-125.45304884149587,57.969814506004404],[-125.45274873094854,57.970102636228674],[-125.4525805210065,57.97026008528949],[-125.45221093112951,57.97045596187462],[-125.45158846247581,57.97074500886968],[-125.45125741534746,57.9709062731665],[-125.45108985111334,57.97101886095729],[-125.4507302236806,57.97125515065922],[-125.45039824992494,57.97148033782921],[-125.45018709631952,57.971609568350146],[-125.45001113636486,57.97171651251533],[-125.44990761481692,57.97178562223033],[-125.44984779207914,57.971829116269554],[-125.44972393530985,57.97191496534957],[-125.44944621782007,57.97211457831173],[-125.44912553302918,57.97236111875746],[-125.44891906571401,57.97260252254155],[-125.44874315372951,57.97284966011877],[-125.44845983537891,57.973070557743036],[-125.44803353172958,57.97331105143498],[-125.44764995933106,57.973520317105624],[-125.44738753563648,57.97375587942702],[-125.44714679226968,57.974099200864465],[-125.4469045578959,57.97439877498692],[-125.44661156427273,57.97462860152071],[-125.44631950016422,57.974867403825094],[-125.44613901203459,57.97506517100772],[-125.44608287808798,57.975144568816624],[-125.44604920560008,57.975134334974435],[-125.44587223919147,57.97509322395346],[-125.44551830753647,57.97501100121322],[-125.44509919689106,57.97490495370443],[-125.44478131963632,57.97481502802421],[-125.44467196499592,57.974776439864556],[-125.44458050318487,57.97474241234284],[-125.44428579745447,57.974658189745064],[-125.44386682707515,57.97454316647362],[-125.44353094717852,57.974456527468064],[-125.44330525311506,57.97442306073824],[-125.44295025222284,57.974413728169125],[-125.44249092662164,57.97438264913213],[-125.44217973385709,57.97434209385513],[-125.44209123792952,57.97432265731612],[-125.44205545347894,57.974312413636426],[-125.44197318240577,57.974300853973425],[-125.44180855707401,57.97428334194999],[-125.44165233701715,57.97426922957861],[-125.44151775303963,57.97429221908824],[-125.441282605631,57.97432600300092],[-125.44098392726683,57.97436737126625],[-125.4407891914226,57.97438450021006],[-125.44068644720436,57.97439977140385],[-125.44062721092688,57.97440288775843],[-125.44037352248203,57.974404067080435],[-125.43990395965811,57.97442228487219],[-125.43962470475236,57.97443681417794],[-125.43952743677652,57.97443864874968],[-125.43940460239412,57.97445383456743],[-125.4393198162285,57.97446918016338],[-125.43926447244863,57.97449474349374],[-125.43919203400493,57.97453257212531],[-125.43910048746406,57.974575928200565],[-125.43895810890628,57.974625799851616],[-125.43875502553183,57.97470569818016],[-125.43856746805632,57.974808092772214],[-125.43846405107253,57.97486822190599],[-125.43833535977228,57.974850856815415],[-125.4381435811584,57.97488145311181],[-125.43803908935294,57.97501335735871],[-125.43797837505666,57.97511516377449],[-125.43779524254604,57.975204117235705],[-125.43750233087455,57.97535317207329],[-125.43726696151818,57.97547218680579],[-125.437195550843,57.97551114030665],[-125.43717747389961,57.97551891499546],[-125.43713064976703,57.97554002716804],[-125.43708387600918,57.97555777484919],[-125.43703255509033,57.97559681302109],[-125.43695548104046,57.97566153845042],[-125.43688275216245,57.97571843123834],[-125.43676314794885,57.97579980051543],[-125.4365659240866,57.97591112416113],[-125.4363582812039,57.97601343101506],[-125.43617493843804,57.976115840245896],[-125.43604347763853,57.97621173914985],[-125.43595293824353,57.976258462123724],[-125.43587546939243,57.97627832277024],[-125.43579686772676,57.97630378640129],[-125.43563837964392,57.97637040998769],[-125.43535431062463,57.97649258023331],[-125.43503060091454,57.976650472117264],[-125.43478253205299,57.976769428928556],[-125.43460804222526,57.976844956073485],[-125.43445501189385,57.97689926422614],[-125.4343403528736,57.97693242514912],[-125.43423969608541,57.97694770031007],[-125.43404467337866,57.9769827633473],[-125.43394616408663,57.97699692583233],[-125.43390804561423,57.97700125038093],[-125.43374527250096,57.97700055972312],[-125.43354542938899,57.977004197762554],[-125.43337024338085,57.97698550891379],[-125.43317418902656,57.976948786150324],[-125.43302237523474,57.97692234517255],[-125.4328865600709,57.97688699950029],[-125.4327023958996,57.97683238154116],[-125.43259276176143,57.97674331177113],[-125.43245847069088,57.97667656833671],[-125.43225644744504,57.976684681423436],[-125.4321544028326,57.97672238039684],[-125.43202432037829,57.976727434573796],[-125.43175586942472,57.97672517004852],[-125.4315909836272,57.97672446776057],[-125.4315697765256,57.9767288636788],[-125.43146074835798,57.97673849325609],[-125.43123944443359,57.97676446769064],[-125.43112091187952,57.97677405647871],[-125.43099481915306,57.97679370700743],[-125.43066632785046,57.97684726249798],[-125.43033051335706,57.97689629966165],[-125.4300565808037,57.97690634553643],[-125.42972417316261,57.97687015677583],[-125.42955055849949,57.97688735970678],[-125.42963344650936,57.97699762743707],[-125.4296236281644,57.977087310701414],[-125.42945269785207,57.977135928822804],[-125.42922450293838,57.97719776057788],[-125.428982643402,57.977253925646316],[-125.42883938049881,57.97729032416883],[-125.42875776299813,57.9773056767087],[-125.42863893804683,57.977334328675724],[-125.42851603859503,57.97735286899481],[-125.4283216913053,57.97734306396876],[-125.42807148667437,57.977321803597455],[-125.4279627973637,57.97731012203302],[-125.42798428506235,57.97735619835365],[-125.42799646274722,57.97745943463432],[-125.42790232091238,57.97753305440967],[-125.42771349443237,57.97757710734999],[-125.42756283862896,57.97761347281807],[-125.4275055050114,57.977630050343244],[-125.42748111750839,57.977634431975],[-125.42742070681437,57.977645388429906],[-125.42734011939127,57.97766186610076],[-125.42724040351558,57.97768499101765],[-125.42714692680035,57.977714872045475],[-125.42699233283626,57.97773215334078],[-125.42674394931993,57.97772996493184],[-125.42655833043312,57.97770224977166],[-125.4264561879422,57.97767713631348],[-125.426384621199,57.977656640485165],[-125.42635614264752,57.97765203179306],[-125.42623690019518,57.97763918188564],[-125.42599824435383,57.97762357511442],[-125.42582383340103,57.97762282474157],[-125.42568269691272,57.97765922905851],[-125.42551696651014,57.97771347241525],[-125.42542469130952,57.97773326331555],[-125.42537046734662,57.97775433958753],[-125.42520380794669,57.97779960602889],[-125.4249692772289,57.97786028173902],[-125.42483016738845,57.9779011801726],[-125.42469676299159,57.9779151854522],[-125.42447962387092,57.97794453141572],[-125.42426217521647,57.977992942335774],[-125.42397388129753,57.97804329023515],[-125.42363811621975,57.978087824646416],[-125.42338454011188,57.97807999972682],[-125.42307036224328,57.978094343673185],[-125.42271123515843,57.978213919785574],[-125.42243767985575,57.97833723006626],[-125.42212756770641,57.97843122073297],[-125.42183448702123,57.97851743351247],[-125.4216815004873,57.978567241138435],[-125.42154865742233,57.97861264964172],[-125.42135849302281,57.97867463299072],[-125.42114400818097,57.97873651057749],[-125.42092565771836,57.978774818110516],[-125.42076878681459,57.97880217648342],[-125.42061607454536,57.978834039005015],[-125.42040425548892,57.97886003679537],[-125.42022363530535,57.978850279606135],[-125.4200741711671,57.97887766934922],[-125.41991704853179,57.97898914330565],[-125.41978732058003,57.979107465625866],[-125.41965505352319,57.97918427873202],[-125.41944648904266,57.9792730970619],[-125.41926215750519,57.97936650681969],[-125.41919171686125,57.97940994145937],[-125.41916517803836,57.97941767693413],[-125.41912672581242,57.97944330565979],[-125.41906585913537,57.979482295633744],[-125.41898986369587,57.97954365110821],[-125.41895782286271,57.979564821425335],[-125.41894379526192,57.97958270546255],[-125.41889258882098,57.97961276486956],[-125.41882744094997,57.97965622238051],[-125.41877532503686,57.97967618365509],[-125.41874447097896,57.979689508104144],[-125.4187242572077,57.97969727104525],[-125.41868685253354,57.97972402578743],[-125.41862692890997,57.97977087067594],[-125.41859698440524,57.979793171616386],[-125.41855091525665,57.979832225845506],[-125.41843435098627,57.97991920037597],[-125.41827721912573,57.98003067252583],[-125.41807071405034,57.98019127831888],[-125.41780247549663,57.980310116388964],[-125.41756064841302,57.980361774960656],[-125.41745476835035,57.98037252850399],[-125.41742885953605,57.980407184100336],[-125.41740172856237,57.980451928497146],[-125.41738448495505,57.98047316306507],[-125.41730002424836,57.98046606486368],[-125.41711537729027,57.980443948615424],[-125.41695948914081,57.98040737734024],[-125.41683767107159,57.98035525277963],[-125.41669065812407,57.98029180227172],[-125.41651860738725,57.98020693228293],[-125.41637313218868,57.980112084170976],[-125.41628627680048,57.98005562573875],[-125.41625477443515,57.980042029088764],[-125.41620026105021,57.980012629773924],[-125.41612486830473,57.97996631552315],[-125.41603708763938,57.979900880321196],[-125.41594633699339,57.979821973219416],[-125.41587639562017,57.97976558855987],[-125.41579855819867,57.979740573270185],[-125.41567618549475,57.97972433549498],[-125.41551593392677,57.97969671599926],[-125.41532467073027,57.97969139184741],[-125.41515638249665,57.97970523481357],[-125.41506748614906,57.97971157460128],[-125.41491750866705,57.97977036035113],[-125.41469296012978,57.97986695228299],[-125.41456628895305,57.9799224751634],[-125.41450545116284,57.97996034165727],[-125.41440316997173,57.980011485116975],[-125.41430447099593,57.98003572652074],[-125.4141998663627,57.98003302422366],[-125.41405734848011,57.98002006123768],[-125.4138665208639,57.979987819209015],[-125.41367244393109,57.97996004891425],[-125.4135955160664,57.979944008893725],[-125.41353691396198,57.979974033778696],[-125.41341773611794,57.98002398066028],[-125.41335806823848,57.98005400078574],[-125.41334101524963,57.98006289838652],[-125.41324774935657,57.9800781903293],[-125.41307432265751,57.98008191395176],[-125.4129009485241,57.98008227286672],[-125.41276555812577,57.98008728499689],[-125.41266362502859,57.980115997247566],[-125.41254105542227,57.98017938728926],[-125.41233141998964,57.98026818997668],[-125.41209318181409,57.98036023105412],[-125.41193355148678,57.98042794357049],[-125.41184613466848,57.980474664332405],[-125.4117861134799,57.98052711365878],[-125.41170038871334,57.980600759518204],[-125.41158457363768,57.980705676674],[-125.41149060240255,57.98076582718756],[-125.41142389297438,57.980772262412664],[-125.41135625796664,57.98077084251601],[-125.41117268962226,57.98081489555233],[-125.41081108535369,57.98095349606914],[-125.41047921752106,57.98108325442319],[-125.41030112684582,57.98118116598178],[-125.41011549406129,57.9813564325213],[-125.40993057334822,57.98155301188575],[-125.4098195338854,57.981689352826656],[-125.40965679227332,57.98181985712679],[-125.40942755894024,57.98187604314128],[-125.40927426989323,57.98187648626465],[-125.40922143241242,57.98187513079361],[-125.40917261159872,57.98188725197119],[-125.40908758452606,57.98191603642622],[-125.40896866657602,57.98201532990022],[-125.40876196951294,57.98218489359696],[-125.40846332838044,57.982351806348184],[-125.40812248816144,57.98251292344888],[-125.40785617430886,57.98264072316955],[-125.4077989532654,57.98271561478962],[-125.40786441113266,57.982788807623656],[-125.40788122435762,57.98286178460965],[-125.40780360246153,57.98289060114646],[-125.40761374353085,57.982862840717765],[-125.40738964966246,57.98286072423267],[-125.40718871050903,57.98293161262579],[-125.40704711097766,57.9829949133613],[-125.40688188278435,57.98308054045371],[-125.40665278168646,57.98319504435747],[-125.4065034172958,57.98328074153739],[-125.40636700390274,57.98334967252922],[-125.40609005345443,57.983480786308256],[-125.4057119887894,57.98365406921835],[-125.40543593959967,57.98379527990619],[-125.40531856898284,57.98386317314015],[-125.40525663210312,57.98390215232641],[-125.4050632877142,57.98402690718093],[-125.40484437366072,57.98416500667932],[-125.40476418881235,57.98422072793562],[-125.40472707193626,57.984228413428035],[-125.40453507578349,57.98426793370639],[-125.40425390237623,57.98433173036995],[-125.4041094686007,57.984372583926266],[-125.40403061485414,57.984411487040276],[-125.40381164411964,57.984485654743295],[-125.40356962838842,57.984546260177275],[-125.4033481709734,57.98457667448645],[-125.40311230399816,57.98458347084954],[-125.4028294440623,57.98455304446135],[-125.40242909111444,57.98446489097277],[-125.40205832300279,57.98437799041389],[-125.40186986680962,57.984327796513156],[-125.40176553700269,57.98430714049347],[-125.40160753343085,57.984270541656954],[-125.40142035854235,57.98420689393449],[-125.40131418417207,57.98416828404605],[-125.40114047569907,57.984122641584335],[-125.40080775389293,57.98403702984948],[-125.40048771952172,57.983951474280516],[-125.40004807589361,57.98400669907576],[-125.40000024328477,57.98402330770421],[-125.39948010807485,57.98421948755819],[-125.39916986085268,57.984381841597134],[-125.3990795148837,57.98447789056508],[-125.399010222244,57.98457964218386],[-125.39894701452383,57.984630950147704],[-125.39879772734305,57.98464485825556],[-125.39856269227357,57.98466510927529],[-125.39841022481708,57.98467900261966],[-125.39824486816038,57.98463900189869],[-125.39799135516817,57.984559348098024],[-125.39786512343444,57.98451952338542],[-125.39786039116272,57.98455090623475],[-125.39778017713975,57.98460774481534],[-125.39758381599184,57.98465620808508],[-125.3973952061164,57.98468227449303],[-125.39729973589134,57.984702031808446],[-125.39719680282711,57.98472512008599],[-125.39699055699761,57.98479596942847],[-125.39673519337765,57.984896879087465],[-125.39651394682707,57.984979997280526],[-125.396398180909,57.985013121140646],[-125.39634089436046,57.98502519941386],[-125.39628360777512,57.98503727766273],[-125.39615121612104,57.9850512592541],[-125.39586114902711,57.985074621277754],[-125.39556799066888,57.98509348235518],[-125.39539228020604,57.985106145424886],[-125.39517422774895,57.98512198112351],[-125.3947972889348,57.98515616292477],[-125.39435198352373,57.98523377505242],[-125.39400612414852,57.98537240260929],[-125.39383562997003,57.98552079853362],[-125.3937776356472,57.98557661413979],[-125.39378695832465,57.98565404553456],[-125.39375959202114,57.98584234676905],[-125.39361213614752,57.986004306112925],[-125.3934683707904,57.98606758296487],[-125.39327768736023,57.986156442757434],[-125.39277698470673,57.98638969775465],[-125.39208286054958,57.9866837571079],[-125.3915658091284,57.986881042660755],[-125.39131304031558,57.986950549823426],[-125.39124300770403,57.986965932572325],[-125.39123214432833,57.98698382834191],[-125.39120606127364,57.9870274510865],[-125.39110018514629,57.987100992556044],[-125.39084323175294,57.987233288398784],[-125.39056287260212,57.987373327983555],[-125.39040084061762,57.98745446359251],[-125.39028615630508,57.98755039589719],[-125.3901603171649,57.98768104623368],[-125.39006829017691,57.987814094158885],[-125.39003724732294,57.98790255740405],[-125.39002580005246,57.98795634110842],[-125.39000286005883,57.98800109962056],[-125.38997925385132,57.98802230182544],[-125.3899535148473,57.98804461586245],[-125.38984930057875,57.98808115176959],[-125.38964452574811,57.988125078870134],[-125.38949619710291,57.988143467424344],[-125.38946456999551,57.988137714837606],[-125.38941656461756,57.98816329167421],[-125.38929385520302,57.988232268487934],[-125.38916769134539,57.98831805315139],[-125.38907366514893,57.988378188367314],[-125.3889969019803,57.98841709244383],[-125.38895302264366,57.98851446942216],[-125.38885799982756,57.98870021743039],[-125.38867740853644,57.988817156845094],[-125.38854810800804,57.988835631522775],[-125.38836326156198,57.9888886206908],[-125.38802322635263,57.988991369501434],[-125.38781898123533,57.98906670069594],[-125.3877996571979,57.98908455743202],[-125.38777218561528,57.98908330984233],[-125.38769602324152,57.98908520364863],[-125.38762512062303,57.98908824312836],[-125.38759976364902,57.98908700520484],[-125.38756480793872,57.98909133116147],[-125.38745573260576,57.98910092490843],[-125.38731495503202,57.98911037304939],[-125.38719635400012,57.989121044444985],[-125.38705443728482,57.98913497342441],[-125.3869210521541,57.98914445509867],[-125.38682048988866,57.98915072267337],[-125.38672205911575,57.98915699996603],[-125.38665637797864,57.98916454926608],[-125.38658225669859,57.989170938159916],[-125.38646418675833,57.989149085363046],[-125.38624860426675,57.98907631275813],[-125.3858950034874,57.989038795610554],[-125.38563281115228,57.98903646745024],[-125.38551838401486,57.989050521324074],[-125.38539503939788,57.98909257368249],[-125.3852547225535,57.989137912520135],[-125.38500462934404,57.98917152960103],[-125.38468846837807,57.98917119408781],[-125.38450287831016,57.98907612518819],[-125.38432709067433,57.988963155879226],[-125.38411483982195,57.9890104048628],[-125.38402405779993,57.989129995636404],[-125.38402028862265,57.989165868994405],[-125.38390411395257,57.9891574817051],[-125.38359240179209,57.989144826682896],[-125.38328824830685,57.9891221115816],[-125.3831192272158,57.98911235783948],[-125.38289522647739,57.98910234970401],[-125.38251068192285,57.98908150429988],[-125.38218085909185,57.98907661329499],[-125.38198631557006,57.9890757126677],[-125.38177719144103,57.989061285189536],[-125.38152888345891,57.9890500405854],[-125.38128370053984,57.98904217476369],[-125.38110401488895,57.9890379769627],[-125.38101108338259,57.989030816509405],[-125.38097734222764,57.989025052099805],[-125.38093588237662,57.98897438843191],[-125.38083016488682,57.98884491565788],[-125.38062879236324,57.98874528179472],[-125.38031710323999,57.988731497629296],[-125.38006282449291,57.98869779084827],[-125.37993432351529,57.988604102311555],[-125.37993903731623,57.98870282377629],[-125.379904314902,57.98875649859885],[-125.37975267864346,57.98884664252138],[-125.379547464913,57.98904308795397],[-125.3794267300816,57.98918272499612],[-125.37926814327969,57.98924591802407],[-125.37889968126062,57.989275608410225],[-125.37848100629621,57.98927253795914],[-125.37825264660478,57.98927035284114],[-125.37820092298836,57.98926450396165],[-125.37815118231255,57.989267636995976],[-125.37793534310978,57.989275603948855],[-125.37760831079471,57.989293146395916],[-125.3773679571272,57.989313335579496],[-125.37726731840733,57.98932408195944],[-125.37713370686158,57.98934701185972],[-125.37682828981468,57.98940054406071],[-125.37652919714266,57.98945522669889],[-125.37639369359371,57.98946468797895],[-125.3763115399846,57.98944523714338],[-125.37602173842858,57.98938668173053],[-125.37554982139176,57.98934185444643],[-125.3752782733667,57.98939329838282],[-125.37520885116297,57.98949840267591],[-125.37503182506853,57.98958842252443],[-125.37476996695031,57.98962981653083],[-125.37456870318623,57.989651305384136],[-125.37438873504841,57.98966392104634],[-125.3742414417144,57.98968229759426],[-125.37416828960309,57.98969429209655],[-125.37411643516438,57.98969629213421],[-125.37406231471883,57.98970837581814],[-125.37393094540002,57.9897234619356],[-125.37372644411255,57.9897482991047],[-125.37355484022018,57.98976656083304],[-125.37338544439329,57.98977922476642],[-125.37313125680944,57.989803827765705],[-125.37279577599438,57.98982131878585],[-125.37249948229994,57.989834506841284],[-125.37229202221225,57.989846990439695],[-125.37203760835034,57.98988504936226],[-125.3717182758368,57.989947477198555],[-125.37152078734819,57.98999589737999],[-125.3714443969893,57.990011239919696],[-125.37141729365015,57.99011429846239],[-125.37123197990357,57.990256989046365],[-125.37081284353675,57.99028081055586],[-125.37054368495332,57.99025150181047],[-125.3704927260999,57.99026359897273],[-125.37047567712341,57.99027136969103],[-125.3704574852346,57.99028474296317],[-125.37045272932647,57.99031612503247],[-125.37038915318954,57.9903864852948],[-125.37015837888093,57.99052783842529],[-125.36993078332837,57.99066920619119],[-125.36982350517037,57.9907606701332],[-125.36975569770325,57.99083101015986],[-125.3696888051584,57.990910327199984],[-125.36962103291754,57.99097954574807],[-125.36958552915074,57.99101526896203],[-125.3695597194752,57.99104094364122],[-125.36947652217971,57.991147101758294],[-125.36936178587212,57.991304704004364],[-125.36930523921038,57.99139752886826],[-125.36926861047208,57.99143773306513],[-125.36921689585317,57.99149468982932],[-125.36915636405533,57.99157291513691],[-125.36908999010583,57.991683638955024],[-125.36905170878434,57.99175972621552],[-125.36902876031151,57.99180335980161],[-125.36898490062858,57.99189624455657],[-125.3688828297202,57.992055028001644],[-125.36876309252621,57.992195782390354],[-125.36871145153265,57.99224825299429],[-125.36869634632912,57.99226612702761],[-125.36865120038084,57.992309655594454],[-125.36860687691353,57.99236664714335],[-125.36857245558605,57.99240125367978],[-125.36854112051653,57.99244148276907],[-125.36851832195352,57.99247614427576],[-125.36848380611377,57.99251635830823],[-125.36836264933108,57.9926156067868],[-125.36817742683611,57.99275044291074],[-125.36805211437974,57.9928451850994],[-125.36798037229707,57.99289756030389],[-125.36787746373498,57.99298007089886],[-125.36772782890162,57.99313750684677],[-125.36760784029475,57.99329171832867],[-125.36755581829522,57.99336661862484],[-125.36753318633848,57.99339230804646],[-125.36745993999234,57.99347159412782],[-125.36735226979872,57.993585486441596],[-125.36730379613033,57.99370078086119],[-125.36729426861646,57.993826354222314],[-125.36729216111323,57.99388915349907],[-125.36721183383676,57.993886529561266],[-125.36703334574196,57.99387222422918],[-125.36691548044902,57.993838017482496],[-125.36687064344453,57.99380079223183],[-125.36679945686078,57.993757834013714],[-125.3666698194981,57.99373142236924],[-125.36651148876109,57.99371384718773],[-125.36630159868604,57.993681446348006],[-125.36602753830019,57.99362855174571],[-125.36579139445807,57.99358480947665],[-125.36562679600202,57.99356271709027],[-125.36550546789526,57.993545316551746],[-125.36537348777318,57.9935334732319],[-125.36515317922307,57.993490926707445],[-125.3649085589115,57.99344826415583],[-125.36474527417147,57.99341159621035],[-125.36456920785199,57.99337935359896],[-125.3643499669966,57.993336810829696],[-125.3640663275815,57.99328835295707],[-125.36376990695194,57.99324431993955],[-125.36364111123648,57.99323136848673],[-125.3635304332411,57.99321065213834],[-125.3632391572008,57.99317561521917],[-125.36298760669114,57.99316768549095],[-125.36289760380477,57.99317398552855],[-125.36281287738561,57.99318143228583],[-125.36268484345602,57.993186429046645],[-125.36251973437228,57.99319461341877],[-125.36232387551033,57.99320713707527],[-125.36220639653007,57.993213305392494],[-125.3621866211006,57.99319414380939],[-125.36213536884598,57.99316137269134],[-125.3620122147229,57.99312713633744],[-125.36171356639039,57.993090939254145],[-125.36127543794771,57.993047344618574],[-125.36103785348546,57.99302714050307],[-125.36083930859756,57.993011609271676],[-125.36040940792245,57.99304431957432],[-125.35991923973471,57.993138427206745],[-125.35944599350577,57.99316980497878],[-125.35899286926755,57.99313846841869],[-125.35873518616064,57.99311816368565],[-125.3586518337166,57.99310654730111],[-125.35856200046993,57.99310387247789],[-125.3584139436173,57.993104282550746],[-125.35818956135638,57.99311554145549],[-125.35792907347852,57.99313559907959],[-125.35777345265399,57.99314494481665],[-125.35763907369902,57.993149906214],[-125.35741573988727,57.99316116886618],[-125.35720682338483,57.993196054058004],[-125.35701964274556,57.993257961897505],[-125.35683781697661,57.99331540890228],[-125.35670878244788,57.993378718053286],[-125.35661046190648,57.99343881033835],[-125.3565334240734,57.9934911539818],[-125.35645557007862,57.99352891291265],[-125.35632024730822,57.99358882660841],[-125.35615844149983,57.9936508556355],[-125.35603912469581,57.99370187349253],[-125.35589437151971,57.993756133303634],[-125.35568988203669,57.9938403877351],[-125.35554179303347,57.99390360384241],[-125.35545669764633,57.99393235449041],[-125.35528969996776,57.993927061681326],[-125.35495695243208,57.99396695328047],[-125.35467597711747,57.994071025316394],[-125.35458170773111,57.994141230125976],[-125.35448165260705,57.99417888060682],[-125.35419056299644,57.994255984436215],[-125.353824131712,57.994348425323004],[-125.35360447869108,57.99439110417547],[-125.35355245977276,57.99440318984476],[-125.35349029724878,57.99445111746296],[-125.35332745909591,57.994572582790354],[-125.35300689583521,57.99470225637993],[-125.35262872223913,57.99486193299242],[-125.35248493757736,57.995042934434224],[-125.3524824957051,57.995123677619205],[-125.35244299333976,57.99514479636444],[-125.35241385037283,57.99517942452524],[-125.35236338622742,57.99522292202889],[-125.3522982116788,57.99526186175289],[-125.35227145679079,57.99527967750611],[-125.35222033039848,57.9953007397897],[-125.35212362490387,57.9953283104485],[-125.35202511768365,57.99539849301921],[-125.35192593241777,57.99550792816971],[-125.35183249028533,57.99559047278635],[-125.35178650416054,57.99562053265853],[-125.35177251603189,57.99563392391733],[-125.3517470008808,57.9956416512091],[-125.3516210362781,57.99570945698235],[-125.35138313281595,57.99582943395862],[-125.35118677168302,57.99593166685752],[-125.35094993385044,57.996050526684144],[-125.3506259529059,57.99619363743844],[-125.35047248942848,57.99626130842325],[-125.3504536096832,57.996252243769945],[-125.3503213546689,57.99619439864844],[-125.35010248391187,57.99600826945992],[-125.34992779900074,57.99577412635956],[-125.34975346084948,57.99564317184274],[-125.34945564259331,57.995557600980206],[-125.34906185652596,57.9954569807633],[-125.348808956988,57.9954041538368],[-125.34874236394762,57.99540270738368],[-125.34861921027041,57.995430146491834],[-125.34827464584377,57.99547893672892],[-125.3478654299942,57.99547581673157],[-125.34764714739751,57.99543885907808],[-125.347608360583,57.99541960235582],[-125.34755467426419,57.995404759199104],[-125.34738014725221,57.99534558297637],[-125.34716237042117,57.99528058703547],[-125.34704133794568,57.995246347135556],[-125.3469983217597,57.9952270695507],[-125.34686454143491,57.995196131929234],[-125.34659884514113,57.995089401468505],[-125.34636485144621,57.99486169309466],[-125.3462260678539,57.994633329070666],[-125.346181122108,57.99454225951208],[-125.34615589955976,57.994533163192855],[-125.34611670682149,57.99453633601698],[-125.34601841144296,57.99453361131129],[-125.34583872301656,57.994528244510306],[-125.34570244028603,57.99451972542657],[-125.34556828943637,57.994511216654644],[-125.34528970946569,57.994476202729864],[-125.34496543603089,57.9944533015959],[-125.34474249911135,57.994442113105706],[-125.34438172466372,57.99445043612448],[-125.34386853761355,57.9944669819203],[-125.34362224172347,57.994460163137084],[-125.3435849453325,57.99447680372089],[-125.34341105296689,57.99450286690039],[-125.34314289256137,57.994476872520096],[-125.34293762387689,57.994422025617524],[-125.34278686900966,57.99439548674796],[-125.34262214306888,57.99438121648938],[-125.34248254057486,57.994381650551546],[-125.34243927506112,57.99437582944998],[-125.34244527796471,57.99433548148322],[-125.34245546624179,57.99423683103244],[-125.34242938721624,57.99415594751454],[-125.34239403831008,57.994060437560975],[-125.34227438687306,57.99394880989882],[-125.34190765827469,57.99387522023277],[-125.34156067940584,57.99382079413511],[-125.34146082224403,57.9937866536259],[-125.34133997688383,57.99374231510708],[-125.3409857585518,57.993619434339436],[-125.34059068867032,57.99347391889712],[-125.34033071934581,57.9934030954164],[-125.34017370475893,57.993372036272234],[-125.3401029676413,57.99336495702267],[-125.34003539154338,57.99335901496076],[-125.33991717779318,57.99334609289552],[-125.33982953903372,57.99333892992391],[-125.33968798336488,57.993330378605776],[-125.33946908983154,57.99332929565915],[-125.33926104399966,57.99331368528074],[-125.33892767100099,57.99326829245185],[-125.3384982634196,57.99321120695218],[-125.33814344744198,57.9931825298601],[-125.33774912058274,57.99317608776135],[-125.33739252701317,57.993187777362245],[-125.33721179731094,57.99318239375051],[-125.33705607284165,57.99313787816432],[-125.33688449896103,57.993092162067114],[-125.33681911792989,57.993081742887924],[-125.33678366137639,57.99305352679515],[-125.33665689272229,57.99298672265512],[-125.33650026243278,57.99293322914229],[-125.33632680370212,57.99299517631343],[-125.33601953342075,57.993148428753564],[-125.33571497659754,57.99320747980512],[-125.33561263444294,57.993194632901705],[-125.33556612818901,57.99319327982972],[-125.33536235702691,57.993174319849125],[-125.33493801302575,57.99313070725616],[-125.33452319514421,57.99308714080198],[-125.33436715609015,57.993060566062994],[-125.33430391051455,57.993049034699155],[-125.33416892044502,57.99302817268508],[-125.33398442295594,57.9929958475569],[-125.33376205526619,57.992953238788594],[-125.33365562719214,57.992931397206284],[-125.33362497094232,57.992931244173235],[-125.3335339943997,57.99293303318119],[-125.33343886788585,57.99293031501332],[-125.33340398501876,57.99292901922634],[-125.33333413662878,57.992932035201434],[-125.33309073454123,57.99294203536017],[-125.33275520708087,57.992959425801516],[-125.33245308055153,57.99300053599594],[-125.3320846528265,57.99308393451832],[-125.33157186150697,57.99307800296668],[-125.33113167036325,57.99303429889753],[-125.3309210342072,57.99316334871519],[-125.3308102502153,57.99326822365794],[-125.33075318990893,57.99326569440147],[-125.3306539930752,57.993253981055695],[-125.330493406399,57.993245324549065],[-125.33029965143368,57.993257811826275],[-125.33008762857898,57.993287031128524],[-125.32987812544384,57.99335327550785],[-125.32952868510147,57.99343788396858],[-125.32900640454775,57.993490218075685],[-125.3284765490358,57.99349204007633],[-125.3280193626991,57.99351104979647],[-125.32767430256777,57.99352837952803],[-125.32746366349379,57.99353965606716],[-125.32723512008405,57.993546355643375],[-125.3268583567579,57.99356240188859],[-125.32651972062567,57.99357527463691],[-125.32626660615381,57.993595307786244],[-125.32591254132785,57.99364287072064],[-125.3255456051723,57.99370046209123],[-125.32525933462595,57.99374163621734],[-125.3249942926457,57.99377843067954],[-125.3246547661794,57.99384064462055],[-125.3242385787404,57.9939316312662],[-125.32394344159599,57.993995189722604],[-125.32380409815516,57.99404046958136],[-125.32367172364569,57.99410933822107],[-125.32350416378142,57.99413540760312],[-125.32327805206293,57.994182490384475],[-125.32303341969707,57.99431920694875],[-125.32284234895836,57.99441693875806],[-125.32271835318376,57.99443201213598],[-125.32266965003076,57.994435129833775],[-125.32264624459562,57.994442862283854],[-125.32254819058257,57.99448498556464],[-125.3223478521031,57.99456921044432],[-125.32216344702849,57.99464902953452],[-125.32209197845876,57.99468343627264],[-125.32203334430702,57.99470893534264],[-125.32192471437766,57.994751004473095],[-125.32182244919319,57.99479198425077],[-125.32172326329106,57.994838587608164],[-125.32163145061567,57.99488634996559],[-125.32155031363833,57.99492855850998],[-125.32147234039729,57.99497078308852],[-125.32138679074686,57.99502306352992],[-125.32128103586703,57.99508197080784],[-125.32119548569679,57.995134251132896],[-125.32114522882344,57.99516427883836],[-125.32111646262389,57.995176470178954],[-125.32101645232936,57.99520960961823],[-125.32075121318533,57.99525648920811],[-125.32050323799339,57.99528438890695],[-125.32042385851152,57.995287349648116],[-125.32037344521692,57.99526802575939],[-125.32022101447323,57.99521789913367],[-125.32003156440811,57.99516758377918],[-125.31992942885763,57.995142388249825],[-125.3199042325878,57.995132165466366],[-125.31986000198853,57.99512184570234],[-125.31965761943496,57.995084923157606],[-125.31927188980761,57.99501117421456],[-125.31883057258754,57.99491246527212],[-125.31839361313315,57.99480592590318],[-125.31798928260463,57.99470852462482],[-125.31770487143078,57.99464650476116],[-125.31761316717476,57.99463033359135],[-125.31746623443405,57.99462621761953],[-125.31715858639075,57.994621279498084],[-125.31686481966821,57.99460856048709],[-125.31673392058657,57.99459555293861],[-125.31669156141444,57.994598700930176],[-125.31663236472556,57.9945972763068],[-125.31653512032464,57.99459453526215],[-125.31641251760678,57.99459054269297],[-125.31626558515349,57.99458642539981],[-125.31611663648228,57.99457781120607],[-125.31605735811486,57.99458087231888],[-125.31596857337946,57.994578174203255],[-125.31578262613344,57.99456824844505],[-125.3156567609992,57.994568724869524],[-125.31562821838124,57.9945685785451],[-125.31557179715382,57.994588478127675],[-125.31544640476069,57.99462148325248],[-125.31519005206245,57.99464484369104],[-125.31493595721331,57.994660364007366],[-125.31476319191955,57.994681909352586],[-125.31456170296748,57.99471227981688],[-125.31431142749727,57.99475025061842],[-125.31414369434874,57.99478528025111],[-125.31405010563984,57.994813961063734],[-125.31395146701091,57.99482915662321],[-125.31386592415905,57.994823108962066],[-125.31378169684788,57.994802487168386],[-125.31359704414609,57.994779105784],[-125.31336076959924,57.99474536420402],[-125.3131971192346,57.99473106311549],[-125.3130331852668,57.99473134120653],[-125.31263658782102,57.99473266451585],[-125.311952446414,57.99478522026758],[-125.31126632773831,57.994945436266576],[-125.31074777517152,57.99513679737241],[-125.31034769674764,57.99526932360936],[-125.30996381586121,57.995383986736336],[-125.30948755271018,57.995518359851665],[-125.30900763428856,57.995621307450484],[-125.30867254243317,57.99567004478302],[-125.30845642450547,57.99569023591481],[-125.3082060536665,57.99573268130201],[-125.3078844504232,57.995794945833026],[-125.30768261898541,57.99584324991916],[-125.30754438085104,57.99588403234271],[-125.30739891402781,57.99591580428021],[-125.3073475132708,57.99595030736597],[-125.30733935741274,57.99599064284613],[-125.30727421762575,57.99602507462111],[-125.307152411847,57.996034536962625],[-125.30701150533196,57.99604838646555],[-125.30689789011421,57.996072471966144],[-125.30675624880656,57.996068371695564],[-125.30652648296943,57.99602567893695],[-125.30630185952192,57.99593366185662],[-125.30614384625831,57.99584311223143],[-125.30606830880778,57.99581019304376],[-125.30593069097333,57.99593173263034],[-125.3055640739775,57.9960834860413],[-125.30520902043115,57.99600985586525],[-125.3050812626512,57.995884692646456],[-125.30507744796114,57.99586224067511],[-125.30503402044059,57.995865379423115],[-125.30481680530933,57.996002205977476],[-125.30450184171423,57.99627648055709],[-125.30421216617424,57.996384888529306],[-125.3037701533345,57.9963814624582],[-125.30334860808651,57.99647235669023],[-125.303079390617,57.996617882036084],[-125.3028099419268,57.996775743343655],[-125.3026549072354,57.99686578379095],[-125.30264178293672,57.99694647096304],[-125.30267911410797,57.99710032618375],[-125.30270850278907,57.99716889774973],[-125.30257808221727,57.997187283820224],[-125.30216363897229,57.997179510066886],[-125.30172041990085,57.9971267202074],[-125.30156465857438,57.99708552753133],[-125.30151823220888,57.99707967659804],[-125.30143788186591,57.99707813457307],[-125.3013275453393,57.997096624511975],[-125.3012426308654,57.99711300420803],[-125.30104731685267,57.99715123805434],[-125.30050555830867,57.997221305087564],[-125.29989041567704,57.997257336873865],[-125.29956882474461,57.997261258049676],[-125.29944690835761,57.99727632086562],[-125.29939934929541,57.99727494968316],[-125.29935681817723,57.99728706417077],[-125.29916701082468,57.99731298649593],[-125.29884809759157,57.99734383859799],[-125.2986351917213,57.99736066598933],[-125.29847078099912,57.9973867207515],[-125.29824170580012,57.99742028668036],[-125.29807522548809,57.99744296525505],[-125.29798724956719,57.99745371875831],[-125.29782690422935,57.99743156493587],[-125.29753787687908,57.99739078814719],[-125.29731156671438,57.99738959716193],[-125.29723504703023,57.997409383338685],[-125.29712070836642,57.99741551105892],[-125.29690790635038,57.99742672820568],[-125.29671949878887,57.9974347086972],[-125.29655848172261,57.9974484412942],[-125.29638544078264,57.99748342089867],[-125.2962174053379,57.99753300758725],[-125.29605598804837,57.997568048046965],[-125.2959115540466,57.99759981305634],[-125.295809484148,57.99762843654833],[-125.2956291988618,57.9976544041009],[-125.29528358038908,57.99769856614301],[-125.29494836791432,57.99775175512897],[-125.29473172488989,57.99779884004772],[-125.29461044929482,57.99783633405448],[-125.29447650408953,57.99787263939017],[-125.29424813404387,57.99792414800319],[-125.2940608260654,57.99798596785353],[-125.29392809347085,57.9980144277922],[-125.2937337591212,57.99799994054764],[-125.29336988066497,57.998002501505695],[-125.29295847747393,57.99805752546976],[-125.29273766341042,57.99810122027011],[-125.29263544178289,57.998137691839794],[-125.29249186152555,57.99817955221372],[-125.29216036340502,57.99825967260913],[-125.29169474487092,57.99838506674154],[-125.29129490337559,57.99849959235951],[-125.29093851250856,57.998609861137545],[-125.2906617036584,57.99870597089158],[-125.29047015562446,57.99876776328058],[-125.29026196162461,57.998814885961096],[-125.2900120585097,57.99883038139507],[-125.28982618195268,57.998815933442216],[-125.2897660833825,57.998805519238374],[-125.28969087753975,57.998811848806994],[-125.28958798829568,57.998827003922756],[-125.28941632331568,57.99884403614805],[-125.2890972828571,57.99888047250246],[-125.2888006334523,57.9989069328713],[-125.28868391867658,57.99892650009352],[-125.28864366740018,57.99892965046897],[-125.28854598867319,57.998949318998285],[-125.28841448895281,57.99896768558657],[-125.28834118939659,57.998984119068055],[-125.28826271672695,57.99899491687137],[-125.2881376471988,57.999008831020376],[-125.28806761369607,57.9990207953192],[-125.28803379277157,57.99901949335274],[-125.28792025841415,57.99903907687409],[-125.28768603765556,57.9990636245119],[-125.28748785477649,57.999084999236885],[-125.28740620047786,57.9990957795606],[-125.28731610248558,57.99910651476157],[-125.28710399187166,57.99913678747128],[-125.2867837314737,57.999181063107926],[-125.28646744477756,57.999238818572245],[-125.2862201043724,57.99928572579318],[-125.2860468533366,57.99933078555589],[-125.28591069401342,57.9993715570404],[-125.28572988129837,57.99942442724678],[-125.28546899377962,57.99951612514672],[-125.28526345801521,57.99959017307238],[-125.28517387337689,57.999628949925274],[-125.28515231583934,57.999650145157126],[-125.28505228561147,57.9997370953843],[-125.2849037530117,57.99987201516175],[-125.28482918491717,57.99995573678174],[-125.28466462765859,57.999932422931835],[-125.28427188711859,57.99989442646094],[-125.28389369688952,57.99986996624204],[-125.28361462105262,57.999861739403094],[-125.28342547497218,57.999851751449555],[-125.28331569961406,57.99983994608373],[-125.28315308762942,57.99982561371971],[-125.28288264442655,57.99980845878693],[-125.2826153612649,57.999792441899],[-125.28246843361232,57.99978716588584],[-125.28240085509859,57.99978119460929],[-125.28226537644838,57.99978607443479],[-125.28202744876303,57.99978367354437],[-125.28181990376441,57.999796016650954],[-125.28167269718368,57.99980531924516],[-125.28157432832627,57.999805911570036],[-125.28148130336199,57.999803167739415],[-125.28131708933317,57.999816864868606],[-125.28113353328284,57.99984728186867],[-125.28089993936244,57.999894253336464],[-125.28058158690534,57.999948619012926],[-125.28036288400443,57.99999118333358],[-125.28030876617123,57.99999986454021],[-125.28029178013507,58.00000313782005],[-125.28025462222246,58.000010788813626],[-125.28005378170901,58.00005905700111],[-125.27970551256396,58.00012896189499],[-125.27928684358226,58.000174931970506],[-125.27884743559548,58.00019835642101],[-125.2784918015937,58.00021101602323],[-125.27832444191101,58.00022357087876],[-125.2782489509394,58.000244473494355],[-125.27815523492679,58.000277615302494],[-125.27804091965722,58.00033644281313],[-125.27792422525276,58.00040983836578],[-125.27786097648841,58.000453239288994],[-125.27770859468316,58.00045690146889],[-125.27733551787726,58.00049638242147],[-125.27702398360483,58.000581060237685],[-125.27690964403172,58.00064100829787],[-125.27684983430497,58.00067096799475],[-125.27678149873765,58.00070424633195],[-125.27668821254159,58.00071495714684],[-125.27655484500832,58.00071984264194],[-125.27644872267452,58.000793294241674],[-125.27640039293652,58.00088612646969],[-125.27635230081452,58.00096662219799],[-125.27630264503293,58.00107290662178],[-125.27626437182471,58.0011927121422],[-125.27623091282717,58.00128226011099],[-125.27618698548056,58.00136614324612],[-125.27613196246337,58.00147688502921],[-125.27594126938392,58.00154763453594],[-125.27558979738654,58.00161751155389],[-125.27537407545502,58.00172401623102],[-125.27530362638566,58.001812241657916],[-125.27523520074125,58.001850005245124],[-125.275201972079,58.001872257221954],[-125.27526877359314,58.00191860616185],[-125.27543522599468,58.00206307663518],[-125.27552325149148,58.00216113505465],[-125.27057805770538,58.002766803911584],[-125.26220465089587,58.00341171624479],[-125.25682571336631,58.004961131875035],[-125.2496349456916,58.0073705503253],[-125.2418072756247,58.01109501970823],[-125.22570620223684,58.016942847874546],[-125.22076563882138,58.019229194598],[-125.20840129239795,58.021821537598235],[-125.19700838658457,58.02246242593713],[-125.19999915016314,58.02028529259823],[-125.19966301608734,58.02026645429437],[-125.19932459848411,58.02025545302652],[-125.19898777054863,58.020269136799435],[-125.19865269931786,58.02029965506043],[-125.19832678296856,58.02034705222694],[-125.19800906026336,58.020407957639684],[-125.19769954500937,58.02048012813765],[-125.19739929653774,58.02056469180036],[-125.19711675592387,58.02066282108409],[-125.19685609071668,58.02077678447158],[-125.19663201910812,58.020911157231424],[-125.19648145852925,58.02107289155261],[-125.19634250414256,58.02123581722027],[-125.19613623328199,58.02137926957322],[-125.19589645942357,58.021505695146665],[-125.19563162403358,58.021616266238745],[-125.19533759068082,58.021706471155646],[-125.19502801144102,58.02178087858685],[-125.19471233947893,58.02184403202798],[-125.19439353156278,58.02190492251038],[-125.1940757241565,58.021968061590385],[-125.19377238588103,58.02204811209347],[-125.19347012016352,58.02212704674192],[-125.1931390918108,58.02216542736576],[-125.19280039352486,58.02216674616484],[-125.19246662819411,58.02213556588639],[-125.19216783694849,58.02205300007635],[-125.19188636479004,58.02195259186688],[-125.19158762461765,58.02186778175528],[-125.19127587313562,58.021797473737266],[-125.19095534283001,58.02174169335355],[-125.19061689027637,58.02173179151826],[-125.1902980282514,58.021794915239035],[-125.19004047637758,58.02191000616777],[-125.18982371680053,58.02204777716667],[-125.18963422670551,58.022196929841],[-125.18946996252285,58.022354086940474],[-125.18932780675898,58.022516986327275],[-125.18918351638942,58.022679872643074],[-125.18901401404244,58.02283475417948],[-125.18881191502541,58.022979342679555],[-125.18857629066261,58.02310802405908],[-125.18831033141592,58.023219695860895],[-125.18801735887152,58.02330876979286],[-125.18769037745821,58.023355013271605],[-125.18735186261674,58.02334734616924],[-125.18701923831051,58.02331167258281],[-125.18668874804102,58.023276011157904],[-125.1863550752287,58.02324032952942],[-125.18602792281065,58.02319683518169],[-125.18571831151395,58.023125405478005],[-125.18543040178311,58.02302943088876],[-125.18515108114795,58.022927899777024],[-125.18486743164847,58.02283082830432],[-125.18456220474724,58.02275269271858],[-125.1842417494328,58.022693531639504],[-125.18391799001483,58.022639957898235],[-125.1835875086117,58.022604288827466],[-125.18325255051667,58.022628039479805],[-125.18293371734043,58.02268890266505],[-125.18262726408545,58.02276442241587],[-125.18230842873558,58.022825284117886],[-125.18197337002773,58.022853517606855],[-125.18163743986558,58.02287277164597],[-125.18129863688286,58.02287854732333],[-125.18096129228924,58.022866384531774],[-125.18062743258822,58.022839660688106],[-125.18029812484843,58.02279838236525],[-125.17997003920894,58.022749259113276],[-125.17964398968968,58.022704634194646],[-125.17931359299725,58.02266446840942],[-125.17898212271488,58.022625416865765],[-125.17865274499675,58.02258749902249],[-125.17832236732878,58.02254733089501],[-125.17799306469185,58.0225060469034],[-125.17766488628378,58.02246140403907],[-125.17733894039164,58.022412287476065],[-125.17702283063282,58.0223486491376],[-125.17672193066268,58.022267157233465],[-125.17642324689888,58.02218119167614],[-125.17611366227588,58.02210973979293],[-125.17578663016292,58.022061734390135],[-125.17545278131031,58.02203499763821],[-125.1751166439036,58.02201609753479],[-125.17478053150752,58.02199607507878],[-125.17444451819807,58.02197156574947],[-125.17410850532768,58.02194705557545],[-125.1737746092879,58.02192255764695],[-125.17343859729421,58.02189804578938],[-125.17310261046163,58.02187241158069],[-125.17276871574317,58.02184791114002],[-125.17243270507538,58.02182339675437],[-125.17209671959878,58.02179776001786],[-125.17176287572575,58.02177101405246],[-125.17142913141655,58.02173978122872],[-125.17109752882344,58.02170743919854],[-125.1707638104256,58.021675083208756],[-125.17042999339643,58.02164721241008],[-125.17009393643123,58.02162493515899],[-125.1697569118131,58.02164639578807],[-125.16943198910467,58.021694850658925],[-125.1690969308081,58.02172305181822],[-125.1687601035521,58.02173553788843],[-125.16842123427772,58.02174464541798],[-125.16808258868683,58.02174365853755],[-125.16774404264224,58.02173818477643],[-125.1674110990703,58.021766394894314],[-125.16709839746349,58.021836231845334],[-125.16679811900576,58.02191848383428],[-125.16651235495563,58.02201428565884],[-125.16625365395447,58.022130445705606],[-125.16603259787374,58.02226703020321],[-125.1658388291341,58.02241387971536],[-125.16564294245272,58.02256071575126],[-125.16543448039957,58.02270186466015],[-125.1651715883604,58.02281575324137],[-125.164867139857,58.022894610005615],[-125.16455036606436,58.022956564070384],[-125.16422540029514,58.02300612785296],[-125.16389234283137,58.0230388152658],[-125.16355540199683,58.02305577425671],[-125.16321656957014,58.0230626255842],[-125.16287796227599,58.02305938249621],[-125.16254164676157,58.023048301274784],[-125.16220313984964,58.023040570451876],[-125.16186433237216,58.023046296843596],[-125.16152938166134,58.02306887153363],[-125.16119833743029,58.023106051540516],[-125.16087331576063,58.02315785018921],[-125.16055854921792,58.02322429412498],[-125.16024995520165,58.02329862777888],[-125.15994135996237,58.02337296072596],[-125.159634854847,58.02344842778621],[-125.15933661332826,58.023532919473624],[-125.15905704165752,58.023634353005335],[-125.15880039773725,58.02375163365242],[-125.15860029383833,58.02389618990717],[-125.15843798355603,58.02405444396211],[-125.1581418258635,58.024140067877504],[-125.15780320928322,58.024136811923334],[-125.15746479428992,58.0241245830588],[-125.1571286472329,58.02410563765226],[-125.15679489434432,58.024074368189694],[-125.1564699863431,58.02402632875762],[-125.15614518009558,58.02397380251368],[-125.1558136971406,58.02393581493731],[-125.1554776536103,58.02391237935678],[-125.15514150945863,58.02389342895475],[-125.15480536564655,58.02387447770742],[-125.15447159147126,58.02384432395425],[-125.15414008606513,58.02380745373622],[-125.15380396882973,58.0237873784655],[-125.15346507739622,58.02379644807684],[-125.15314419609373,58.023851619299734],[-125.1528979880621,58.0239745632465],[-125.15273986106952,58.024133958738716],[-125.15260912078303,58.0242991361316],[-125.15248256171948,58.02446658329297],[-125.15235391033329,58.024632895429434],[-125.15223369864326,58.02480038270365],[-125.15212401795561,58.02497018007846],[-125.15203330930103,58.02514346282584],[-125.1519700645753,58.02531916322121],[-125.15193637538039,58.02549841624818],[-125.15192173522449,58.02567779022855],[-125.15190921153436,58.025857177678745],[-125.15189245449261,58.026036538289624],[-125.15187993054269,58.02621592580713],[-125.15186317320068,58.0263952864844],[-125.15181892465868,58.02657335099729],[-125.15175353449813,58.02675015963448],[-125.15165861186217,58.02692229407655],[-125.15147947803233,58.027073703619855],[-125.15121235576332,58.02718417385722],[-125.15091401479202,58.02727089010313],[-125.15060536837248,58.02734520180551],[-125.15029057391183,58.02741050034156],[-125.14997164663154,58.02747128516967],[-125.1496548095902,58.0275332042218],[-125.14933590567271,58.027592866031235],[-125.14901284366688,58.027649135591226],[-125.14868988251496,58.0277009183366],[-125.14836281437638,58.02774706577312],[-125.1480337051458,58.027789834385786],[-125.14770054013145,58.027824724619435],[-125.14736556372621,58.027846142405465],[-125.14702673608805,58.02785070968835],[-125.14668821455643,58.02784181800366],[-125.14635214173585,58.027818359369974],[-125.1460227514377,58.02778036086602],[-125.14569343844317,58.02773899702542],[-125.1453619328018,58.02770098336089],[-125.14502586207269,58.02767752139468],[-125.14468713797494,58.02767759670968],[-125.14435012121295,58.027695628856016],[-125.14401310412693,58.02771366015266],[-125.14367634277414,58.02772047551666],[-125.14333761828586,58.02772054741039],[-125.1429989706742,58.027717253920976],[-125.1426603743942,58.02771171655706],[-125.14232182950661,58.027703935319025],[-125.1419833873848,58.02769166719162],[-125.14164719052113,58.027673804266904],[-125.14131101965407,58.02765481898872],[-125.14097268105212,58.0276380622709],[-125.1406364337572,58.027622439819126],[-125.14029791580212,58.02761353194614],[-125.13995911512319,58.02761695979735],[-125.13962227672198,58.02762712946479],[-125.1392831670143,58.02764401369089],[-125.13895012389311,58.027673274562325],[-125.13863117600455,58.0277340323373],[-125.1383266833341,58.02781058601977],[-125.1379915212751,58.027839830855456],[-125.13765537655668,58.02781971486884],[-125.13732609824223,58.02777720889651],[-125.13700998540325,58.02771459702389],[-125.13670698685407,58.02763412236212],[-125.13640182126292,58.027555876351684],[-125.13607923259141,58.02749882877873],[-125.13574541538775,58.02746974962937],[-125.13540922348531,58.027451871012765],[-125.13507310949164,58.02743062703177],[-125.13473924192957,58.02740378838321],[-125.13440325816006,58.02737693518748],[-125.1340693656625,58.0273512163726],[-125.13373555133087,58.02732213220645],[-125.13340186708011,58.027287439678304],[-125.1330725723368,58.027246044753866],[-125.13275869147607,58.02717895057182],[-125.13247300288981,58.027082875196825],[-125.13216999322917,58.027003511807074],[-125.13183613154644,58.02697666591662],[-125.13149725794115,58.02698343682372],[-125.13115828029547,58.02699469289124],[-125.13082139311976,58.02700708337435],[-125.13048489571642,58.02700265043505],[-125.13019490295818,58.02690990716999],[-125.13001429163468,58.02675618352811],[-125.1298762487468,58.02659264184534],[-125.12973609043264,58.02642908626132],[-125.12958741480585,58.026267718407176],[-125.12944725896521,58.0261041625781],[-125.12928366551269,58.02594718390997],[-125.12906671588578,58.02580892567574],[-125.12879183853212,58.02570393953986],[-125.12848236775432,58.02563013401243],[-125.12816409298908,58.025570852058635],[-125.12784150784182,58.02551490622271],[-125.12751670273308,58.0254634317982],[-125.12718957316748,58.02542091477727],[-125.12685583356418,58.02538957047928],[-125.12651736515627,58.02537950621136],[-125.12618030806398,58.025399735485195],[-125.12584727465371,58.025428963623916],[-125.12550836165614,58.0254379623339],[-125.12517211437462,58.0254234225042],[-125.12483837643501,58.025392073166536],[-125.1245157454319,58.02533836231507],[-125.12420625989829,58.02526566841379],[-125.12390547755268,58.02518293580946],[-125.1236111772114,58.02509463668368],[-125.12332121620022,58.02500187869265],[-125.12303125662311,58.024909120081574],[-125.12274777923666,58.02481079504242],[-125.12246861511049,58.02470913271639],[-125.12218947874348,58.024606348317946],[-125.12189560704108,58.02450010146543],[-125.12160779764423,58.024406232227484],[-125.12131570412899,58.024314577536686],[-125.1210235857606,58.02422404371599],[-125.1207336378778,58.0241312801969],[-125.12044800330546,58.02403517942971],[-125.12017102028177,58.023931283325005],[-125.11990477907295,58.023820727381704],[-125.11965356531314,58.023701296563665],[-125.1194109769853,58.02357519210268],[-125.1191791042543,58.02344354950192],[-125.11895149239292,58.02331081293625],[-125.11872816772436,58.023175860930344],[-125.11851981783317,58.02303427734273],[-125.1183221307273,58.022889398802334],[-125.11812232873059,58.02274450602053],[-125.1179075815473,58.02260512262378],[-125.11767783649061,58.02247349153106],[-125.11744166470258,58.02234518260505],[-125.11719906618644,58.02222019581013],[-125.11694578177905,58.02209962462586],[-125.11668387505087,58.021985725976165],[-125.11642839826588,58.021868504334996],[-125.1161943773438,58.02173908579108],[-125.11603726029662,58.02157989066681],[-125.11591847662588,58.02141085405102],[-125.11568647089989,58.02128593466825],[-125.11536335987647,58.02134436546397],[-125.11504440115637,58.02140618800768],[-125.11472956820676,58.02147252382464],[-125.11439859765954,58.02150510181051],[-125.11406260183362,58.02148156212344],[-125.11373785055909,58.0214300544277],[-125.11342402644668,58.021364036745666],[-125.11311459519743,58.021291317466115],[-125.11280296924532,58.02122194790271],[-125.1124826138043,58.02116373631617],[-125.11214903054442,58.021127869449934],[-125.11181277397124,58.02111553905451],[-125.11147429504081,58.02110767971166],[-125.11113825146181,58.021086375667345],[-125.11081131155412,58.02103821127862],[-125.11049746927704,58.02097330824335],[-125.110185930613,58.02090056811872],[-125.10987433993407,58.02083007025978],[-125.10955396576306,58.02077297316799],[-125.10922245181754,58.02073935610275],[-125.10888651938072,58.02071356043063],[-125.1085551398126,58.02067433424694],[-125.10826522354087,58.02058266551989],[-125.10806547267394,58.02043775806194],[-125.10785717823315,58.020296158268245],[-125.10764462615147,58.02015565138861],[-125.10743630818162,58.0200151724739],[-125.10723656353808,58.01987026386576],[-125.10703470419422,58.019725340834626],[-125.10680930080143,58.019591476776355],[-125.10655606753546,58.01947088623932],[-125.10625314748242,58.01939258622638],[-125.10592389855806,58.0193533677314],[-125.1055902574518,58.0193208490299],[-125.10526770622867,58.01926709205396],[-125.1049386467414,58.01922002070313],[-125.10460586579818,58.01924022377296],[-125.10430956978054,58.019327970863124],[-125.1040465427087,58.019440617209945],[-125.1037939344651,58.01956006298865],[-125.1035350830955,58.01967497973505],[-125.10326784558268,58.01978647469485],[-125.10301108047508,58.01990252615182],[-125.10277933335558,58.02003444857981],[-125.10257064890297,58.02017549895193],[-125.10237034747439,58.02031997037775],[-125.1021700445031,58.0204644415259],[-125.10195506019072,58.0206032053463],[-125.10171497411298,58.02072946165937],[-125.10145399200191,58.02084436028759],[-125.10118261483862,58.0209513367792],[-125.1009049946983,58.02105378403212],[-125.10062528360827,58.02115509497895],[-125.1003476335414,58.02125866258815],[-125.10008246470278,58.021371287112395],[-125.09977794505802,58.02144775240367],[-125.09947339724894,58.02152533849906],[-125.09915237526424,58.02158374436599],[-125.09882136327384,58.02161740525419],[-125.09848627970729,58.02164430780635],[-125.09815917573684,58.02169145352557],[-125.0978361148467,58.02174647747609],[-125.09749961460112,58.021744204472434],[-125.09716463692276,58.02176661774551],[-125.09682955083541,58.02179351614639],[-125.09649272608186,58.02180469850838],[-125.09615980957508,58.02182936656102],[-125.09582274100916,58.021850640660034],[-125.09550787035135,58.02191693120645],[-125.09521158601501,58.02200241538742],[-125.09491527326873,58.02208902041091],[-125.09460039900651,58.02215530883563],[-125.09428552363148,58.02222159652296],[-125.09396456887681,58.02227662549186],[-125.09363137553798,58.02231250217488],[-125.09330227879387,58.0223540142169],[-125.09297521635648,58.02239890429544],[-125.09264807175336,58.022447158050866],[-125.09232505054722,58.02249992573534],[-125.09200403624146,58.02255719299423],[-125.09168505588634,58.022617838351174],[-125.09137017147765,58.02268411920041],[-125.09105941007054,58.022754914080124],[-125.09075070953322,58.02282796563145],[-125.09044404262809,58.02290439536104],[-125.09013737447336,58.02298082439286],[-125.08983282149374,58.023057267146996],[-125.08952615084395,58.023133694788534],[-125.08921738974216,58.02320898581093],[-125.08891074383817,58.02328429056036],[-125.08860822058932,58.02336410945868],[-125.08830566879482,58.023445049171045],[-125.08800108104633,58.023522609280135],[-125.0876902517815,58.02359563937171],[-125.08737537939308,58.02366078938307],[-125.08705030574716,58.02371016544761],[-125.08671340625979,58.0237235661603],[-125.08637499102515,58.02371227872383],[-125.08603646668924,58.02370547639812],[-125.08570341709589,58.02373460441148],[-125.08540500694178,58.02381893103376],[-125.08513977514704,58.023931526208386],[-125.08489752205803,58.02405661676348],[-125.08466362382762,58.02418625087241],[-125.08442972398059,58.024315884590074],[-125.0841790821858,58.024437551395316],[-125.08390554065382,58.024543357202035],[-125.08361333256035,58.02463333090073],[-125.08331078716014,58.02471313792016],[-125.08300200058346,58.024788414706805],[-125.08269532929138,58.024863705318865],[-125.08239066355168,58.02494349574183],[-125.08209223633344,58.02502781507528],[-125.08179586940305,58.02511439128267],[-125.08150159018417,58.02520210288554],[-125.08120728211726,58.02529093534141],[-125.08091294517577,58.02538088865048],[-125.08062075086939,58.02546973439271],[-125.08032641111832,58.02555968642719],[-125.0800321249699,58.02564739483573],[-125.07973572087333,58.025735088024724],[-125.07943725386423,58.0258205229936],[-125.07913884056369,58.02590371431722],[-125.07883624785423,58.0259846328074],[-125.07852950331618,58.02606215694168],[-125.07822284019512,58.02613631589832],[-125.07790993635146,58.026205944357685],[-125.07759296362629,58.026268813901886],[-125.07726988833703,58.02632154540182],[-125.07694271692598,58.02636863940884],[-125.07661353852406,58.02641123201447],[-125.07628232562307,58.02645044469669],[-125.07595325627238,58.02648854970596],[-125.07562206963809,58.02652663926136],[-125.07529291599955,58.026568107127346],[-125.074963678655,58.02661293866389],[-125.07464065204387,58.02666342083916],[-125.07431949207943,58.02672401034088],[-125.07400866502915,58.026794765866825],[-125.07370404821995,58.02687117216768],[-125.0734014359821,58.02695207843383],[-125.0730988501543,58.027031862528375],[-125.07279208519485,58.02710937357835],[-125.07247919088753,58.02717786789895],[-125.07215810625823,58.027235087758626],[-125.07182899808085,58.027274304135936],[-125.07149000002153,58.02728540881864],[-125.07115843490631,58.02725281855165],[-125.07084466485962,58.02718557894322],[-125.07054612934112,58.027101619287436],[-125.07025199524399,58.02701095947599],[-125.06995783475936,58.026921420518505],[-125.06965278652744,58.026844143641426],[-125.06933245009519,58.026785828231596],[-125.06900537506041,58.02674316869842],[-125.06867392828768,58.02670608631666],[-125.06834022626255,58.026674595813596],[-125.06800646906282,58.026645347461724],[-125.06767059576664,58.02661608350627],[-125.06733901199966,58.02658460527643],[-125.0670075403783,58.026548640258845],[-125.06667835344581,58.02650596025859],[-125.06635145137112,58.026456565293465],[-125.06602886714572,58.02640383465187],[-125.06570633969935,58.0263488602524],[-125.06538598568733,58.02629165690299],[-125.06506563265246,58.02623445278907],[-125.06474319196836,58.026176111602645],[-125.06442281292638,58.02612002744517],[-125.06410023430661,58.026067292166246],[-125.06377336744383,58.02601676942666],[-125.06344638944836,58.025970731850364],[-125.06311712760066,58.0259314075727],[-125.0627834091105,58.0259010247073],[-125.06244503751773,58.02588743364796],[-125.06210635769385,58.02588617811811],[-125.06176959809237,58.02589278702138],[-125.06143066567115,58.02590162318509],[-125.06109181731122,58.02590709402069],[-125.06075310927142,58.025906956549875],[-125.06041426076453,58.0259124256671],[-125.06007724769336,58.02592912370903],[-125.05974020620805,58.02594694239043],[-125.05940333314764,58.025958031286784],[-125.05906479346002,58.02595116060072],[-125.05874228011412,58.02589616941718],[-125.05853834658853,58.02575564322958],[-125.05846230886578,58.0255801241866],[-125.05844988081172,58.02540056670488],[-125.05846920089535,58.02522123301083],[-125.05850754136438,58.0250431550828],[-125.05855434752752,58.02486513683981],[-125.05860115324637,58.02468711861474],[-125.05864160903755,58.02450905566632],[-125.05867783147576,58.02433096291339],[-125.05872251946765,58.02415292983596],[-125.05877778935735,58.02397497133728],[-125.0588372634919,58.02379816415835],[-125.0588988253728,58.02362249338305],[-125.05896464768188,58.02344573094444],[-125.05902623652129,58.023268938691935],[-125.05908359195077,58.02309211663126],[-125.0591367421599,58.02291414328251],[-125.05917930989136,58.02273609542058],[-125.05922399360338,58.02255806248434],[-125.05927079326591,58.0223800444715],[-125.05931335975507,58.02220199667021],[-125.05935169313109,58.02202391908468],[-125.05937735619797,58.021844630625694],[-125.05938820467915,58.021665237883326],[-125.05938000613875,58.02148571105666],[-125.05934215115751,58.0213070971127],[-125.0592724676033,58.02113162408804],[-125.05917518849402,58.02095932174217],[-125.05905451862424,58.02079134131045],[-125.05891680709325,58.020627727455945],[-125.05876631474818,58.02046738846484],[-125.05860733051621,58.02030811115699],[-125.0584397981947,58.020152138465214],[-125.05826586223961,58.019998363793874],[-125.05808129023669,58.01984675727145],[-125.05789025839886,58.01969959166688],[-125.05769070686073,58.019554609059334],[-125.0574804913031,58.01941291595823],[-125.05726381600553,58.0192756636635],[-125.05703430419885,58.01914392880456],[-125.05677906143131,58.01902547201458],[-125.05650011923694,58.01892367252878],[-125.05620819937697,58.018832997556245],[-125.05590979130784,58.0187478844819],[-125.05561138459272,58.01866277074875],[-125.05531077835009,58.01858100582818],[-125.05500365545514,58.01850592419934],[-125.05468784311348,58.01843975379706],[-125.0543631998002,58.01838810195226],[-125.05402721312109,58.018366654314285],[-125.05369037814869,58.018378850193336],[-125.05335737906242,58.01840677592003],[-125.0530203170374,58.01842794193975],[-125.05268184646867,58.01842105513636],[-125.0523458037968,58.018401846225544],[-125.05200978980854,58.01838151499135],[-125.0516739462817,58.0183544540426],[-125.0513448486987,58.01831173664444],[-125.0510333050901,58.01824446619663],[-125.05075870168861,58.01813932044321],[-125.05052710355139,58.01800755952837],[-125.0503275610788,58.01786368766596],[-125.0501494367691,58.01770987271858],[-125.049990472406,58.01755170711051],[-125.04984429113104,58.017390267230056],[-125.04970666065744,58.01722552300989],[-125.04957540801584,58.017059702373736],[-125.04944627259567,58.016893896697795],[-125.04931502226508,58.0167280758653],[-125.04920078670028,58.01655901101487],[-125.04911417428785,58.01638565604066],[-125.04904454770978,58.01621017862026],[-125.04897492178299,58.01603470119705],[-125.04889468806353,58.015860269905005],[-125.04879109386798,58.01568903725497],[-125.04867686382755,58.01551997214708],[-125.0485583744285,58.015351998299366],[-125.04843565416161,58.0151839942264],[-125.04830653023383,58.0150181877859],[-125.048171031159,58.01485345748499],[-125.04802489668086,58.014690894612755],[-125.0478723303067,58.01453165077478],[-125.04770701278746,58.01437455921398],[-125.04753100322402,58.01422187791631],[-125.04734009835806,58.014072455179864],[-125.04713847314014,58.01392856407494],[-125.04692401171926,58.0137901894509],[-125.04669459826522,58.01365731614067],[-125.04644800295739,58.01353441484308],[-125.04618634163202,58.013421500569926],[-125.04591178711026,58.01331634540268],[-125.04562645518263,58.013218964379135],[-125.04533457745022,58.01312938767676],[-125.04502977770608,58.01304869133293],[-125.0447205191708,58.01297693579413],[-125.04440688733679,58.01291075661709],[-125.0440889392315,58.012847910829684],[-125.04376873345609,58.01279065648939],[-125.04344635565127,58.012735629170095],[-125.04312174856757,58.01268507179452],[-125.04279499792968,58.01263561993754],[-125.04247033534827,58.01258730392292],[-125.04214132745744,58.01254344264835],[-125.0418121771365,58.01250518791059],[-125.04148088302865,58.012468038646674],[-125.04114967555559,58.01242752415603],[-125.04082287242096,58.0123803104255],[-125.04050044510423,58.01232751895727],[-125.0401780760718,58.01227248377676],[-125.03985790987278,58.01221409862792],[-125.03954209107992,58.0121512572753],[-125.03922856143157,58.012081701593445],[-125.03892369715295,58.01200435581033],[-125.03863401811573,58.01191253687386],[-125.03836166905587,58.011805138654324],[-125.03810439065089,58.01168775336072],[-125.0378492008543,58.011571504296555],[-125.03758117431298,58.01146077061043],[-125.037298022635,58.01136226577147],[-125.03700403470664,58.01127377725945],[-125.03670573032215,58.011188621985525],[-125.0364052539614,58.01110569371966],[-125.03610475011945,58.01102388625127],[-125.03580207423114,58.0109443057702],[-125.03549728391106,58.01086470932968],[-125.03519463943132,58.01078400602007],[-125.03489411195962,58.010703317321635],[-125.03459367234282,58.01061926355825],[-125.03429752319092,58.01053299679531],[-125.03400140427237,58.01044560791895],[-125.03370308440508,58.01036156747951],[-125.03340262130288,58.01027863253253],[-125.03310218842724,58.01019457545263],[-125.03280821954195,58.01010607781655],[-125.03252288820313,58.0100109120677],[-125.03225054151248,58.00990462307179],[-125.03199761335536,58.00978389252844],[-125.03177465312625,58.009649918714125],[-125.03157099572334,58.00950598946215],[-125.0313822940328,58.00935656002637],[-125.03120640338453,58.009202736587426],[-125.03104541033498,58.00904565601154],[-125.03089296793266,58.00888527229451],[-125.03075119170099,58.00872160082294],[-125.03061790801158,58.00855686919872],[-125.03049314573887,58.00838995598619],[-125.03037264468355,58.0082219519488],[-125.03025852035387,58.0080528724621],[-125.03014865712812,58.00788270217803],[-125.0300387659107,58.00771365329547],[-125.02993104919172,58.00754237680099],[-125.0298275354945,58.007372252451866],[-125.02972405173288,58.00720100659375],[-125.02962479990963,58.00702979143389],[-125.0295255779947,58.0068574547722],[-125.02942847246858,58.006685133445544],[-125.02933348330194,58.00651282745827],[-125.02924061046552,58.0063405368148],[-125.02914988294349,58.00616714006112],[-125.02906127169818,58.00599375866052],[-125.02897477670018,58.005820392617174],[-125.02889042694079,58.00564592047728],[-125.02880604894254,58.005472569774696],[-125.02872593154733,58.00529812836886],[-125.02864581489688,58.00512368694785],[-125.02856784340035,58.004948139444615],[-125.02849195897053,58.004773728777224],[-125.02841821963958,58.004598212035376],[-125.02834659634783,58.0044227106797],[-125.02827920440511,58.00424724010794],[-125.02822667847904,58.004069634392394],[-125.02818687400772,58.00389099961136],[-125.02815764646226,58.003712441835994],[-125.0281326788353,58.00353279342714],[-125.0281161726039,58.00335320663725],[-125.02809963748798,58.00317474133514],[-125.02808101630322,58.00299513921297],[-125.02806028003783,58.002815521725054],[-125.02803528442962,58.0026369949261],[-125.0280018571494,58.00245728510739],[-125.02793444130073,58.00228293618761],[-125.02778418393025,58.00212144404038],[-125.02767220502068,58.00195237886004],[-125.0276069649226,58.001775802368044],[-125.02754595581843,58.00159925669017],[-125.02755057598644,58.00142094571754],[-125.02748748161358,58.001243263222094],[-125.02742009939593,58.001067792818915],[-125.02732513366522,58.000895486448044],[-125.02717271119293,58.00073622134805],[-125.02692200536166,58.00061437634859],[-125.02662806791226,58.00052810892776],[-125.02629924243553,58.00048196629855],[-125.02596801160301,58.000447021940765],[-125.02563452069494,58.00041766858098],[-125.02530108855636,58.0003860714874],[-125.02498947823167,58.000328834664586],[-125.02466526560158,58.00026814005642],[-125.02434041266514,58.000232116573656],[-125.02385339693282,58.0001679868182],[-125.02323158617453,57.999999676122115],[-125.02295287638539,57.99989780869126],[-125.02266929548986,57.99982058161295],[-125.02233188648638,57.99986073441293],[-125.02200490611115,57.99990657107941],[-125.02138052508614,57.99999958052285],[-125.02115868313629,58.000069740713066],[-125.02085003327976,58.000142628916414],[-125.0205413529585,58.000216637861534],[-125.02023270069525,58.000289524649276],[-125.01996741049717,58.000403108973316],[-125.01974389398879,58.00053718948119],[-125.01953709188453,58.00067924404862],[-125.0193302882149,58.000821298317526],[-125.01911719614596,58.0009610627687],[-125.01889367327772,58.00109514193389],[-125.0186701194898,58.00123034219468],[-125.01845702264028,58.0013701056539],[-125.01825858379584,58.001515584920995],[-125.01808108992488,58.00166906963406],[-125.01787847633993,58.00181227436903],[-125.01763611260678,58.00193836135941],[-125.01739586245729,58.00206446349403],[-125.01717018228086,58.00219964581776],[-125.01697384929038,58.0023451388762],[-125.01682366804135,58.002505553219024],[-125.01669237580514,58.002671714883384],[-125.01654427791382,58.00283326599841],[-125.01638348716303,58.002994723479944],[-125.01618929163428,58.00313910964037],[-125.01593862897711,58.00325840267186],[-125.01566293427298,58.00336405068941],[-125.015378923969,58.003464028492616],[-125.01508865455966,58.00356059453476],[-125.01477799611264,58.00362784610957],[-125.01443537658342,58.00362307419554],[-125.01411490591629,58.003661088399845],[-125.01382457279168,58.003759894619456],[-125.01356761148845,58.00387689350388],[-125.01333359276592,58.00400639983345],[-125.01309328543049,58.00413361596031],[-125.01285089063092,58.00425969458046],[-125.01259600870402,58.004377828750094],[-125.01232658337685,58.00448575984163],[-125.01204464152552,58.004586867774165],[-125.01174621827894,58.0046710280761],[-125.01143342929085,58.00473825629366],[-125.01110827206456,58.004793053801016],[-125.010781264574,58.00483774177105],[-125.0104087532438,58.004842833187595],[-125.01011141880338,58.00488549609791],[-125.01002266232784,58.00504187219359],[-125.00999630162131,58.005239091116806],[-125.00986708499171,58.00540526224386],[-125.00967279273003,58.00555188220952],[-125.00942203403982,58.00567340622554],[-125.00914627364013,58.00578016251707],[-125.00882351567375,58.00582375568187],[-125.00848633419707,58.00585265921374],[-125.00814924112323,58.00587819753394],[-125.007805534458,58.00591378093013],[-125.00753463180419,58.00583661551981],[-125.00725788835975,58.00574033767701],[-125.00692112190964,58.00575353690719],[-125.00669949393058,58.00589321934999],[-125.00648841176726,58.006034101598914],[-125.00634657330924,58.00619681066123],[-125.00618581337507,58.006354892085845],[-125.00597466727426,58.00649801650111],[-125.00574227577141,58.006644347452],[-125.00546402040538,58.006684898952265],[-125.0051384122738,58.00659610440829],[-125.00486831313947,58.00648865428023],[-125.0046283672867,58.00636123822879],[-125.00441839627642,58.00622058514433],[-125.00418488924413,58.00608985129121],[-125.00394706368765,58.005962449846805],[-125.00371570509525,58.005830609537114],[-125.00346712703461,58.005709857069476],[-125.00318410831942,58.00561128052951],[-125.00290985066259,58.005501552065965],[-125.00267837933998,58.00537419583228],[-125.00256867882695,58.00520288191259],[-125.00251627323915,58.00502526591194],[-125.00248293622099,58.00484667070418],[-125.0024538600352,58.004666985679094],[-125.00240991710902,58.00448943295395],[-125.00233418498539,58.00431388606937],[-125.00222231418691,58.00414479915619],[-125.00209346224891,58.00397782860622],[-125.00194968503169,58.00381523308021],[-125.00179309797427,58.00365702834198],[-125.0016322816643,58.00349879181376],[-125.00147146671037,58.00334055511887],[-125.00130853784412,58.00318230243554],[-125.00115198597749,58.00302297560483],[-125.00101247684854,58.00285928943741],[-125.00086656350261,58.00269779856325],[-125.00069508946721,58.00254284626967],[-125.0004937647886,58.00239664368113],[-124.99999971165329,58.00220001677978],[-124.99968026185336,58.00212022846342],[-124.99937118012762,58.00204836878215],[-124.99904901956452,58.0019909920562],[-124.99872009552487,58.00194926722368],[-124.99838437769029,58.001924315679055],[-124.99804615589443,58.00191392622368],[-124.99770948043964,58.00192485927503],[-124.99737456047049,58.00194926471988],[-124.99703570936602,58.00196242308165],[-124.99669936295926,58.00196101767541],[-124.99635890614272,58.0019550938364],[-124.99602267982688,58.001949200940324],[-124.99568442845066,58.00193992694853],[-124.99534620726176,58.00192953065377],[-124.99500804632075,58.00191689061059],[-124.99467200080103,58.00190426563803],[-124.99433390041548,58.00188938099616],[-124.99401100841017,58.00193854540411],[-124.99369618544664,58.00200235159834],[-124.99338538126489,58.002074039069804],[-124.99307862578029,58.002152486402586],[-124.99279054475241,58.002244533999274],[-124.99251899268279,58.00235128746982],[-124.99224532384473,58.002458024434986],[-124.99195720830609,58.002551191710204],[-124.99165250090759,58.00263189466916],[-124.99138514313755,58.00273979927395],[-124.99113642913001,58.00286242600477],[-124.99086695298207,58.00297031361589],[-124.99059539019,58.00307706325793],[-124.99032585060337,58.00318719269509],[-124.99005425452363,58.00329506270804],[-124.98975585262879,58.003376930850365],[-124.9894313385092,58.003328486404236],[-124.98920409644876,58.00320338202763],[-124.9891136521148,58.00302659434988],[-124.98904221562327,58.00285107223691],[-124.98899199256681,58.002673467398964],[-124.98894811565894,58.00249591062901],[-124.9889021239518,58.002318337860586],[-124.98884978706677,58.0021407170529],[-124.98879533548278,58.00196308023861],[-124.98874722996707,58.001785491498815],[-124.9886991249066,58.001607902775525],[-124.9886552808495,58.00142922466964],[-124.98861140698904,58.001251668027486],[-124.98857179405381,58.00107302200863],[-124.98853218149564,58.000894376012496],[-124.9884989146863,58.00071577811326],[-124.98846776330741,58.00053719626526],[-124.98840687986753,58.00036287585186],[-124.98824465386224,58.000181057449325],[-124.98822202493416,58.000000296877396],[-124.98815485875222,57.99982368547884],[-124.98808977803073,57.999648211552945],[-124.98801623770308,57.99947267349948],[-124.98793209260506,57.99929817671195],[-124.98783731263528,57.99912584261096],[-124.98773618846299,57.99895346036439],[-124.98763291995688,57.99878218347537],[-124.98753176739812,57.998610922578195],[-124.98743699100166,57.99843858832052],[-124.98735070567312,57.99826519675934],[-124.9873089263999,57.99808877777722],[-124.98732017293909,57.997907152712514],[-124.98726781943195,57.99773065356853],[-124.98716041731971,57.997555980134536],[-124.98707199009836,57.997383693951015],[-124.98707033617549,57.99720982283041],[-124.98717234341238,57.9970356165814],[-124.98728486371968,57.99686373338305],[-124.98740363692694,57.99669526256165],[-124.98752660859354,57.99652794518304],[-124.98763695038704,57.9963582886169],[-124.9877367773264,57.9961863089328],[-124.98783657311132,57.99601545064306],[-124.98796600611263,57.99584369533927],[-124.98809936529216,57.99568318637223],[-124.98789314085558,57.99556496972355],[-124.98762114637121,57.995454105648605],[-124.98732582995676,57.99534530743218],[-124.98704752455879,57.995233272649],[-124.98678408501874,57.99511910679056],[-124.98652919712029,57.99500164034272],[-124.98629364681614,57.994873103605656],[-124.98608380876455,57.99473242343959],[-124.98588469765907,57.99458621612034],[-124.98568341272983,57.9944422353275],[-124.98548430472293,57.99429602745674],[-124.98530009247733,57.99414656753656],[-124.9851351266258,57.99398940204928],[-124.98499360617363,57.993825684664756],[-124.98487124078603,57.993657626164044],[-124.98477648910806,57.99348529093664],[-124.98470723608679,57.9933086629592],[-124.98466127569442,57.99313109048758],[-124.9846895723607,57.99294510956433],[-124.98443304939028,57.99304522951647],[-124.98410644633758,57.99307751583258],[-124.98376196413055,57.99306704201127],[-124.9834215292805,57.993063328106906],[-124.98308308767052,57.99306411517497],[-124.98274851075453,57.993078390806446],[-124.98241347759281,57.993109487086144],[-124.98208046734224,57.99314396294964],[-124.9817457068169,57.993164964663606],[-124.98140294357565,57.99316907950609],[-124.98107163648552,57.99314075264596],[-124.98076695459534,57.993066640017275],[-124.98046686876863,57.99297910182026],[-124.98014910523294,57.99291946949601],[-124.9798115486847,57.9928877267504],[-124.97947828303556,57.992853772624365],[-124.97917348463628,57.992784142107254],[-124.9789014445394,57.99267662489288],[-124.97864239908134,57.99255798991205],[-124.97839405060273,57.9924349496442],[-124.97819921092061,57.99228876359345],[-124.97801295342187,57.99213815632294],[-124.97783310237101,57.991985354537526],[-124.97766174179965,57.991831495890246],[-124.97751385715523,57.99166996522751],[-124.97737449328231,57.991506256373476],[-124.97722664170789,57.99134360401968],[-124.97707873030012,57.99118319438849],[-124.97692873614501,57.99102164698453],[-124.97677871271482,57.99086122086847],[-124.9766266065825,57.99069965697074],[-124.97646806639837,57.990541408566465],[-124.9763308258111,57.99037771503647],[-124.97622551839913,57.99020641468925],[-124.97613507473532,57.99003298497941],[-124.97604040289315,57.98985952279679],[-124.97591177760815,57.98969028670864],[-124.9756477682544,57.98959964951759],[-124.97530270814049,57.98961158243974],[-124.9749616624593,57.98963139693407],[-124.9746268680144,57.98965462356987],[-124.97429005057715,57.98967446883759],[-124.97395335538131,57.98968982755011],[-124.97361684386654,57.989698456855606],[-124.97327849372567,57.98969697621078],[-124.97294020497075,57.98969325185591],[-124.9726017628343,57.989695133774205],[-124.97226699706106,57.989717233066514],[-124.97193014710514,57.98973819380684],[-124.97159366541189,57.989745696586134],[-124.97125874494492,57.989773400480814],[-124.97091414294307,57.98976850067196],[-124.97056328978566,57.98976018677059],[-124.97022555442449,57.9897362698731],[-124.96992039848944,57.989681196994276],[-124.96967819487148,57.98956716125158],[-124.96947513078935,57.989414169077286],[-124.96925695917705,57.98927227656296],[-124.96898500372379,57.98916361812208],[-124.96871513349785,57.98905609690219],[-124.96842365808527,57.98896523308934],[-124.96812136526017,57.98888325830549],[-124.96781465987563,57.9888079786836],[-124.96749698258353,57.98874719508661],[-124.96717495404197,57.988690863707504],[-124.9668529264667,57.988634531554986],[-124.9665374283695,57.98857151920604],[-124.96623511195384,57.98849066160821],[-124.96593932542912,57.988403123940465],[-124.96564354028368,57.98831558562548],[-124.96534558029653,57.98823027311721],[-124.96503667866229,57.98815833504132],[-124.96471705158123,57.98809192136213],[-124.9643904637626,57.98804788614758],[-124.964056605211,57.988037443564615],[-124.96371363922087,57.988050484341656],[-124.96337076588482,57.98806015997167],[-124.9630412911762,57.98804414058402],[-124.96271703702023,57.98799226775195],[-124.96240406856126,57.98791468362757],[-124.96211700106313,57.98781823192289],[-124.96187075944886,57.98769854225081],[-124.96165896965752,57.9875566869185],[-124.96144721248753,57.98741370985092],[-124.96120324515842,57.987288428349196],[-124.96094025032053,57.98716299827045],[-124.96066637509266,57.98704869956539],[-124.96038755865898,57.98696016003231],[-124.96008897126084,57.986974658758854],[-124.95976936605766,57.98706077937785],[-124.9594381611349,57.987107550632196],[-124.95913170575459,57.98717694734446],[-124.95885811483373,57.987281371286294],[-124.95858856447283,57.98739255619623],[-124.95829625232678,57.98748561632258],[-124.95798528289068,57.987565070206706],[-124.95767639537885,57.987645661306104],[-124.9573945886138,57.98774104488696],[-124.95716069483088,57.9878626005392],[-124.95697266192221,57.98800806916034],[-124.95681170970782,57.988168330853526],[-124.9566611723572,57.988334282128655],[-124.9565044150884,57.98849569798607],[-124.95633929227299,57.9886536832885],[-124.95617416806796,57.98881166841351],[-124.9560153234485,57.988971945821234],[-124.95586916421605,57.98913232231644],[-124.95586022571395,57.989301623902215],[-124.95592296101128,57.98947933787014],[-124.95599409247826,57.98965936084467],[-124.95607153693511,57.989840554853394],[-124.95615106546555,57.990022886812135],[-124.95623059476843,57.99020521875912],[-124.95631223937187,57.990387567228844],[-124.95638968686632,57.99056876119481],[-124.95646290601117,57.99074992208698],[-124.95652984452785,57.990928790533786],[-124.9565883877457,57.991105350013264],[-124.956636420957,57.99127958400602],[-124.95667182941828,57.99145147599332],[-124.95669256068489,57.99161876660601],[-124.95669858338643,57.99178257727336],[-124.95661010297385,57.991922094238944],[-124.95630316656674,57.9920071847678],[-124.95592265358923,57.99207599574631],[-124.95561754820163,57.99217119408043],[-124.95538756947968,57.992302873122384],[-124.95512425428336,57.99241634413339],[-124.95484849938553,57.99252074389048],[-124.95457069076214,57.99262288367681],[-124.95429493280783,57.9927272823136],[-124.9540274757431,57.99283735380308],[-124.95376825700978,57.992955341048635],[-124.95352567271122,57.99308355326738],[-124.95335240237486,57.993229133653344],[-124.95327770834038,57.993404650330135],[-124.95303306731415,57.993530602280515],[-124.95275114200348,57.99362821951293],[-124.9524587981282,57.993720146051665],[-124.95216234859758,57.99380755305362],[-124.95185974139217,57.99388818103273],[-124.95155514344691,57.99396430601748],[-124.95123816919144,57.994029116361276],[-124.9509151630497,57.99408266183361],[-124.95058419865713,57.99411819720568],[-124.95026734686837,57.994178519549486],[-124.94996883661113,57.99426366224041],[-124.9496662523967,57.994343163860194],[-124.94936565610205,57.994427167151194],[-124.94906303789547,57.99450778884423],[-124.94875839784572,57.9945850289249],[-124.94844756932291,57.99465661120725],[-124.94812657429486,57.99471353090716],[-124.94779954832777,57.994759185566394],[-124.94747258445447,57.99480259657389],[-124.94714120154741,57.99485270198159],[-124.94680962896882,57.99490953512756],[-124.94659059844497,57.99480012609489],[-124.94640274974638,57.994634879100374],[-124.94616307817982,57.99450735966952],[-124.9459019143551,57.99439200851461],[-124.94564501311899,57.99427556884476],[-124.9453945837082,57.994154693116975],[-124.94332369423165,57.99325668027769],[-124.94335891833782,57.993132453368524],[-124.94336617825087,57.99294967810761],[-124.94325249228638,57.992780527179974],[-124.94310910756202,57.99261450604756],[-124.94294855437772,57.99245732220281],[-124.94276881295443,57.992305594563526],[-124.94258698995084,57.992152728533064],[-124.94241151226618,57.991999912544074],[-124.94223606760859,57.991845974927955],[-124.9420606243898,57.991692037106695],[-124.94188515100099,57.99153922050148],[-124.94170971065456,57.991385282269796],[-124.94153641793487,57.99123023918075],[-124.94136524120664,57.99107521266383],[-124.94119829499489,57.99092021950084],[-124.94106341625982,57.990753142178114],[-124.94093276779013,57.99058609830512],[-124.94072728947705,57.99044762391858],[-124.94048974678634,57.99032123307731],[-124.94024147486081,57.990200364981746],[-124.93998468319121,57.990081672106136],[-124.93972574697655,57.98996408337318],[-124.93946895855348,57.98984538953559],[-124.93921857857768,57.98972450279807],[-124.93897678489526,57.98959919717034],[-124.9387844815007,57.98944399952396],[-124.93861995299417,57.98927892746077],[-124.93836029721301,57.98918712878366],[-124.93805096361531,57.98913194944746],[-124.93772222014033,57.989090074945786],[-124.93738265124821,57.98905708680224],[-124.9370386953103,57.98902967120167],[-124.9366967907929,57.98900451439444],[-124.9363612935966,57.988977164430004],[-124.93602563798112,57.988955420706304],[-124.93568774115067,57.98893814494421],[-124.9353498128294,57.98892198974348],[-124.93501188479897,57.98890583368753],[-124.93467619878088,57.98888520798843],[-124.9343449329871,57.98885788671351],[-124.9340382955677,57.98878252949098],[-124.93374043556935,57.988696024980065],[-124.93344257694352,57.98860951981252],[-124.93314680223577,57.98852415230513],[-124.93284459002082,57.988442097677684],[-124.93253795900858,57.988366737042156],[-124.93222915103904,57.988293601622246],[-124.93192034427257,57.98822046549363],[-124.93161371692548,57.98814510275269],[-124.93131580372722,57.98806083571942],[-124.93101805151788,57.987970960957455],[-124.93071572065081,57.987893387215415],[-124.93038693803898,57.98792776780248],[-124.93004992102055,57.9879542298815],[-124.92971517775406,57.98797510099611],[-124.92938421517005,57.98801170498859],[-124.92905113755653,57.988048291195554],[-124.92871620090123,57.98807588829053],[-124.92838494658616,57.988048552248],[-124.92805631943703,57.98800328974839],[-124.92772304794968,57.987972570842494],[-124.92739201953952,57.987937382444734],[-124.92707230073215,57.9878764857112],[-124.92674124172106,57.987842417116134],[-124.92640563389226,57.987819527814956],[-124.92606989816075,57.98780112332177],[-124.92573204839064,57.98778270096588],[-124.92539628122057,57.98776541619191],[-124.92505833577786,57.987750356369425],[-124.92472039060627,57.98773529569133],[-124.9243845600694,57.98772025119812],[-124.92404879407819,57.9877029630356],[-124.92372225739359,57.98765882833963],[-124.92347197485917,57.98753679093994],[-124.92323454083868,57.98740924837875],[-124.92301213398129,57.987273974965895],[-124.92281756893837,57.987126587524926],[-124.92261019077412,57.98698358305923],[-124.92248806258468,57.98681771149848],[-124.92237448924645,57.98664854391173],[-124.92223115587561,57.98648474427527],[-124.92209842736952,57.98631990848548],[-124.92196358575443,57.9861550555144],[-124.9217903665108,57.98600110907724],[-124.92160222005056,57.9858515284902],[-124.92141833580166,57.985700860426924],[-124.92127497800026,57.985538181339194],[-124.92117627804986,57.98536688977195],[-124.92111794252102,57.9851891944626],[-124.92109346712182,57.98501065123279],[-124.92109019839847,57.98483003614079],[-124.921074212347,57.98465043993712],[-124.92105608004445,57.984471948081],[-124.92105069737882,57.98429131599952],[-124.9210347117456,57.98411171989476],[-124.92094873376355,57.983939409572145],[-124.92083306192622,57.98377022410136],[-124.92073228674259,57.98359779402739],[-124.9206569786331,57.98342220488192],[-124.920607072785,57.98324569952176],[-124.9205826333194,57.98306603516434],[-124.92057087862582,57.98288647344021],[-124.92055912404462,57.982706911749666],[-124.92054948364535,57.982527367193384],[-124.92053984333823,57.98234782267091],[-124.92053020312332,57.98216827818229],[-124.92052267703973,57.98198875082866],[-124.92051303699904,57.98180920640787],[-124.92050339705057,57.9816296620208],[-124.92048952917668,57.981450083464274],[-124.92046089568458,57.98126926382279],[-124.92042592050299,57.98108839290221],[-124.92040993922119,57.98090879733872],[-124.92042771710238,57.980731718260856],[-124.92051294805837,57.98056191489067],[-124.92065301199214,57.980397041695355],[-124.92079944874608,57.980231098270146],[-124.92091635362198,57.980062672583344],[-124.92102281672972,57.97988967575004],[-124.92111659538755,57.97971657631408],[-124.92117450128481,57.979540943501526],[-124.92118602988818,57.97936044910457],[-124.92113625582293,57.979179459104294],[-124.92102046891681,57.97901476026249],[-124.92083662047733,57.97886409250078],[-124.92063150603444,57.97871773912035],[-124.92045409886231,57.97856375797611],[-124.92028953738313,57.97840427224989],[-124.92013983859289,57.978242663299135],[-124.92002835108242,57.97807575517628],[-124.92002716964356,57.9778962799075],[-124.92004507690056,57.97771471585402],[-124.92006513002107,57.97753204754261],[-124.92001728406,57.97735780298047],[-124.91986550909756,57.97719505539495],[-124.91965393723089,57.977053135032214],[-124.9193571069308,57.97693520036069],[-124.91909537223013,57.97699364990298],[-124.91885472503651,57.97712742102479],[-124.91860965483386,57.97726788585946],[-124.9183380403531,57.97737560694652],[-124.91804368962701,57.9774651965742],[-124.9177348964778,57.97754233016087],[-124.91740765983702,57.97759912351261],[-124.91708245947993,57.97758526796066],[-124.91676102285871,57.9775142374631],[-124.91646329203263,57.97742769544451],[-124.91618725052443,57.97732226070483],[-124.91596057176864,57.97719142825517],[-124.91577463879575,57.977040736640106],[-124.91559088582792,57.976887819175055],[-124.91538355932872,57.97674592644657],[-124.91516550375809,57.976609554472354],[-124.91494318991822,57.976474269179306],[-124.91472087767994,57.97633898353537],[-124.9144964533325,57.97620368034401],[-124.9142655598113,57.97607281077819],[-124.91402393728254,57.97594746179018],[-124.91376514737392,57.9758309458816],[-124.91351276500446,57.97571223833157],[-124.91329690080079,57.9755736378761],[-124.91302728772821,57.97546600566473],[-124.91277916993089,57.97534620981818],[-124.91257615481159,57.975202104619925],[-124.91238598550032,57.97505249554391],[-124.91221285671888,57.97489853850727],[-124.91206532028184,57.974736938337365],[-124.91195394403657,57.97456778130762],[-124.9119062369494,57.97439017020995],[-124.91196635627558,57.97421231684544],[-124.9117225423146,57.97409031088152],[-124.91153869027877,57.97394187388953],[-124.91135061254879,57.973793402175126],[-124.91116468238187,57.97364382607609],[-124.91099163013146,57.97348762490222],[-124.9108674835874,57.97332172785398],[-124.91079224219779,57.973146135072994],[-124.9106957361437,57.972974855282715],[-124.91056099248355,57.97280999314729],[-124.91040927687207,57.972647235598025],[-124.91021308147104,57.97248747953287],[-124.91011635196287,57.972324049177175],[-124.91016564873952,57.97215508180844],[-124.91025945811964,57.971981991434376],[-124.91038285509707,57.97180914269229],[-124.91052306096917,57.971639796113536],[-124.91067152420518,57.97147724678383],[-124.91083042325063,57.97131926914784],[-124.9110060983088,57.971165914921386],[-124.91119016058535,57.9710148722626],[-124.91137633479049,57.97086384661999],[-124.91156247500203,57.97071394213073],[-124.91174653282664,57.97056289877716],[-124.91193686435193,57.97041414968229],[-124.91212511347359,57.970264261717],[-124.9122986649452,57.97011088872706],[-124.91244916287397,57.96995059769174],[-124.91258080170378,57.96978454453448],[-124.91269774337903,57.96961500653945],[-124.91279992314924,57.969444226522654],[-124.9128957944856,57.969272273405956],[-124.91298327660816,57.9690980085961],[-124.91306653131812,57.96892370932313],[-124.91314555867406,57.96874937559497],[-124.91322247201558,57.96857502463588],[-124.9132973038147,57.968399535062936],[-124.91337002165338,57.96822402826649],[-124.9134406255612,57.9680485042502],[-124.91351126124506,57.96787185884339],[-124.91358186383104,57.967696334818065],[-124.91365457897908,57.96752082799807],[-124.91372729344764,57.967345321171145],[-124.91380420121456,57.96717097013733],[-124.91388533465248,57.96699665350385],[-124.91398119477428,57.96682470005541],[-124.91409600774251,57.96665514416481],[-124.91421501358836,57.966486743992164],[-124.91431929110675,57.966315980581385],[-124.9143878386652,57.966138196452945],[-124.9143485509042,57.96596177800052],[-124.91422873789438,57.96579255565669],[-124.91410047350278,57.96562326442558],[-124.91403362000601,57.96544998648968],[-124.91403662895766,57.965272790758476],[-124.91408199684207,57.96509257497713],[-124.91414423647929,57.96491361821393],[-124.91422955718397,57.964740457575815],[-124.91434228201366,57.96456976326648],[-124.91441706819829,57.96439539519555],[-124.91443493132202,57.96421607727273],[-124.91445702032767,57.964036793775676],[-124.91451707860854,57.963860062605306],[-124.9145940079756,57.963684590381504],[-124.91466882362741,57.96350910095258],[-124.91479310450863,57.96323082270625],[-124.91481983082247,57.96296408885237],[-124.91485888568565,57.962782700295435],[-124.91507348453482,57.962670038404035],[-124.91541292483339,57.9626985968481],[-124.915746091518,57.96272486013913],[-124.91607677992165,57.96269053371294],[-124.9163915021416,57.962623549106915],[-124.9167081421682,57.96256330920664],[-124.9170349579725,57.96251661090441],[-124.91736378895513,57.96247329309604],[-124.91769057085503,57.96242771457231],[-124.91801533591735,57.962378753968295],[-124.91834208391761,57.9623342952335],[-124.9186728633425,57.962296598244095],[-124.9190075130236,57.9622712698722],[-124.9193432107024,57.962282963343384],[-124.91967605397764,57.96232043061429],[-124.920009413711,57.962339954961095],[-124.92034972490737,57.9623382235466],[-124.92068526251725,57.96235552054627],[-124.92100052792011,57.9624163967325],[-124.92129815023966,57.962502927242845],[-124.9215782265353,57.96261174805779],[-124.92182741470002,57.96269227755308],[-124.9218517735711,57.96250628191365],[-124.92179558327582,57.96232860831615],[-124.92174150643548,57.96215095180997],[-124.9217001075873,57.961973397809096],[-124.92165662841445,57.961794705365456],[-124.92162160122851,57.96161608127538],[-124.92163308999609,57.96143671166898],[-124.92173940047223,57.96126708183929],[-124.9219233711049,57.96111602596594],[-124.92211777585094,57.96096954076055],[-124.92231013056634,57.96082079546266],[-124.92243737165828,57.96065806418777],[-124.92245945254967,57.96047765866534],[-124.92245403441243,57.96029815264308],[-124.92244439070795,57.96011861251419],[-124.92244956885374,57.959938070532814],[-124.92253269503435,57.95976600980898],[-124.92275212226942,57.95963094249711],[-124.92302983771722,57.95952662977993],[-124.9233157456184,57.959431355748706],[-124.92359755504746,57.959331561497194],[-124.92386899189383,57.9592249531535],[-124.92413421738287,57.959113807626466],[-124.92440152194726,57.95900380000266],[-124.92466264719805,57.958888133860704],[-124.92484227269554,57.95874040440603],[-124.92489174213571,57.95856246302114],[-124.92490324644669,57.958381972337314],[-124.9249821646275,57.95820875493124],[-124.92517446179131,57.958061127315744],[-124.92540017556432,57.95792722834981],[-124.92557780915739,57.95777499552442],[-124.9257177338667,57.95761124239324],[-124.9258869781484,57.95745669838003],[-124.92607299405286,57.957306775786705],[-124.92626112111762,57.9571568699675],[-124.92644502140863,57.957006929893126],[-124.92662059786052,57.9568524360686],[-124.92678356121411,57.95669559727792],[-124.92694236203728,57.95653648156478],[-124.92709485573243,57.956376193324076],[-124.92724523553436,57.95621588794201],[-124.92739145290952,57.95605330568349],[-124.92753133129713,57.95589067232383],[-124.92766704734983,57.95572576212048],[-124.92780903588124,57.955563145513516],[-124.92795732882992,57.95540170110687],[-124.92811400667715,57.95524256723402],[-124.92827068319737,57.9550834332039],[-124.9284294709108,57.95492431599199],[-124.92858195172043,57.9547640263248],[-124.92886338977092,57.954601407534476],[-124.92898558933896,57.954465550118236],[-124.92915134802041,57.954284055580274],[-124.9293252035254,57.954114963823706],[-124.92942857932798,57.95397222517965],[-124.92959977664354,57.95382217950322],[-124.92975794656304,57.95368436700792],[-124.93007291507763,57.95353098809931],[-124.93043689359843,57.95351147544128],[-124.9303517724571,57.953310021104],[-124.93031463135176,57.95313026258825],[-124.93029861470231,57.95295067355616],[-124.9302847106059,57.9527711015023],[-124.9302686942525,57.95259151253482],[-124.93025267805217,57.9524119235997],[-124.93023666200493,57.95223233469672],[-124.93022061418714,57.9520538671971],[-124.9302024860962,57.95187426141111],[-124.93018647051794,57.95169467260429],[-124.93017045509275,57.95151508382972],[-124.93015655213983,57.951335512035406],[-124.93014264931979,57.951155940273736],[-124.9301308589316,57.9509763854932],[-124.93011692444153,57.95079793516679],[-124.9301030220097,57.95061836350308],[-124.93009545651708,57.950438842719215],[-124.93009637205733,57.950258268396155],[-124.93011415365166,57.9500789510669],[-124.93016144256838,57.94990211378067],[-124.93022985332753,57.94972544598085],[-124.93028981456813,57.94954871039563],[-124.93034135832676,57.94937078566853],[-124.93040551095943,57.949195205355345],[-124.93048441640394,57.94902086501201],[-124.93056965765494,57.94884657547861],[-124.93065067377584,57.948672252042485],[-124.93072957698521,57.94849791165042],[-124.93081270376305,57.94832360511906],[-124.93089371762935,57.9481492816317],[-124.93096420198859,57.947973752085254],[-124.93101362827413,57.94779581045934],[-124.93103140432724,57.947616493474555],[-124.93101749870307,57.94743692251039],[-124.93100359321178,57.9472573515788],[-124.93101503281713,57.94707798389444],[-124.93106023354335,57.94690000855085],[-124.9311075459019,57.946722050158264],[-124.93112532099914,57.94654273336446],[-124.93110507920292,57.94636311181514],[-124.93107424555657,57.94618452699463],[-124.93103918816304,57.94600590833289],[-124.93099776317744,57.945828360255845],[-124.9309542584794,57.94564967390023],[-124.9309086103075,57.94547209199166],[-124.93086510644564,57.94529340567406],[-124.9308237149673,57.945114736313535],[-124.93078865976207,57.944936117787606],[-124.93077050048866,57.94475763479272],[-124.93076715686725,57.944578149035074],[-124.93074691784054,57.94439852780396],[-124.9306885687468,57.944221965784685],[-124.93061329301814,57.94404638961026],[-124.93052102707043,57.943874041974524],[-124.93038844458343,57.94370810054001],[-124.93023880863741,57.94354763023648],[-124.9300764069722,57.94339042218034],[-124.92989909591604,57.94323758073203],[-124.9296983323718,57.94309240209092],[-124.92947830824635,57.94295604142505],[-124.9292432792209,57.94282741119995],[-124.92900185239984,57.94270097239915],[-124.9287625390292,57.942574550148095],[-124.92853180240787,57.94244370994151],[-124.92832247325424,57.94230294689226],[-124.92813451951615,57.94215338246441],[-124.92794227971993,57.942006026546835],[-124.92772866766067,57.94186747138132],[-124.9274915396497,57.94173882122947],[-124.9272350552773,57.94162235266639],[-124.9269721411633,57.94150919670302],[-124.9267134841696,57.941394952881815],[-124.92646132413877,57.941275152804394],[-124.92620705396976,57.94115533525477],[-124.92595272133855,57.94103775994956],[-124.92570056612821,57.940917958478316],[-124.92546124315514,57.94079265189583],[-124.9252370244264,57.94065625051687],[-124.92507033655173,57.94050236685972],[-124.9250479511058,57.940324971219816],[-124.92509742740515,57.940145911868],[-124.9250983346363,57.93996646089754],[-124.92505486476345,57.939787773722486],[-124.9250050282613,57.93961015683389],[-124.92496325893897,57.93937203788522],[-124.92495398848503,57.93925307209509],[-124.92501395782504,57.93907634083617],[-124.92507181498308,57.93889959255486],[-124.9251317832053,57.93872286130869],[-124.92519175086373,57.93854613006845],[-124.92525382954678,57.938369415859675],[-124.92531379606766,57.93819268463037],[-124.92537587359338,57.93801597043046],[-124.92544425315782,57.93784042865521],[-124.92552107827974,57.937664954962315],[-124.92559998217465,57.93749061963038],[-124.92568099686724,57.93731630130254],[-124.92576201080854,57.937141982957336],[-124.9258409124886,57.93696764757883],[-124.92591562247546,57.93679215680368],[-124.92599033176484,57.93661666601917],[-124.92606923128365,57.936442330601864],[-124.92615235301243,57.93626802919231],[-124.92623125104828,57.936093693743],[-124.9262954322471,57.93591699651529],[-124.92633641901404,57.93573899084955],[-124.92634998881196,57.935559642752146],[-124.92633822142751,57.93538009059088],[-124.92631167427872,57.935200419402776],[-124.92627453835253,57.935021784547565],[-124.92623103657864,57.934844220035956],[-124.92618331245382,57.9346666215219],[-124.92613347740891,57.934489006012555],[-124.9260857541958,57.93431140752994],[-124.92604439751933,57.93413273875323],[-124.92600937525839,57.93395412103753],[-124.92598916468009,57.93377450109465],[-124.92600273542544,57.93359515340312],[-124.9260542455685,57.93341835467403],[-124.92610789855829,57.93324045162183],[-124.92614047016124,57.933061257121985],[-124.92616456430262,57.93288311595208],[-124.92617816591732,57.93270264706331],[-124.92617273402922,57.93252314645869],[-124.92615674594062,57.93234356083282],[-124.92612383605292,57.932164960494084],[-124.92605916193038,57.93198946903505],[-124.92594788138838,57.93181921000049],[-124.92581532955272,57.93165438747051],[-124.92570613026771,57.93148526665623],[-124.92562031529887,57.93131072627175],[-124.92553446908111,57.93113730720914],[-124.92542741578262,57.93096708193415],[-124.92528213814549,57.930804399575116],[-124.9251198122422,57.930647187590274],[-124.92496388525795,57.930487783834685],[-124.92481221393564,57.930327292643845],[-124.92467967233729,57.930162469242795],[-124.92456414913941,57.92999329665435],[-124.92445284919748,57.9298241580719],[-124.92433307378192,57.92965607261061],[-124.92422177587756,57.929486933895],[-124.92416984588341,57.92930930157632],[-124.92417286834888,57.92912986969937],[-124.92416533549024,57.92895035264388],[-124.92415780270355,57.92877083562177],[-124.92421564802956,57.9285940896266],[-124.92432399711555,57.92842335931819],[-124.92444913715119,57.92825612928219],[-124.92459103587622,57.9280935208113],[-124.92475180412794,57.92793555088282],[-124.92493348860047,57.92778447913891],[-124.92513608914176,57.92764030549064],[-124.92534492491886,57.92749954665077],[-124.92555587010288,57.927358804524964],[-124.9257772083454,57.92722375387493],[-124.92601312951842,57.92709555001374],[-124.92625739681603,57.92697077781165],[-124.92650370940855,57.926848264864525],[-124.92675209932595,57.926726889819946],[-124.92700048763993,57.92660551432773],[-124.92725514313582,57.926486432049344],[-124.92752009573806,57.92637640496762],[-124.92776016352109,57.92625047478631],[-124.92791879968055,57.9260924843572],[-124.92804602686482,57.925925268335796],[-124.92821722986154,57.92577074350953],[-124.9283988899538,57.92561966738434],[-124.92858684923351,57.92546976329214],[-124.92878523352655,57.925324429162224],[-124.92899612169687,57.92518480325112],[-124.92922786128007,57.92505431736312],[-124.92948457813236,57.924936369319276],[-124.92975987595598,57.92483315078694],[-124.93005986406175,57.92475256186564],[-124.93038834983831,57.92470921367639],[-124.93071680297204,57.92466698601835],[-124.93103716272664,57.92461235508995],[-124.9313576808823,57.924552116699765],[-124.93167404010057,57.92448960101761],[-124.93199439695348,57.92443496779817],[-124.93232284588855,57.92439273619369],[-124.93265513376518,57.92436399366599],[-124.93299148365449,57.92434089081139],[-124.93332578594237,57.924315527532755],[-124.9336619124041,57.92430027236104],[-124.93399960900959,57.924304095996206],[-124.93433890805046,57.924325877087114],[-124.93462445251714,57.924381996930954],[-124.93466391184182,57.9241815471981],[-124.93457750010786,57.92402719802298],[-124.93426550336618,57.92393609712288],[-124.93408599731158,57.92378885417946],[-124.93394288429164,57.92362395669463],[-124.93371013515782,57.923493111168206],[-124.93342136321756,57.92340219414429],[-124.93311749931925,57.92332237157889],[-124.93282661938075,57.9232314363817],[-124.93254223220829,57.92313494459977],[-124.93226436971601,57.92303177493883],[-124.93199725344657,57.92292196127875],[-124.93173442388019,57.92280993826702],[-124.93146951702964,57.922696776486454],[-124.93120451616544,57.92258697820254],[-124.9309244550596,57.92248715288538],[-124.93064225286105,57.9223884313864],[-124.93037732037203,57.92227638882057],[-124.93011670652722,57.92216101563002],[-124.92984957080398,57.922052319100644],[-124.92956088309475,57.921959151176914],[-124.92926132423142,57.92187711118193],[-124.9289531324223,57.921801730665486],[-124.92864056081251,57.92173192217417],[-124.92831692583069,57.92167996942936],[-124.92798206723901,57.92165147902137],[-124.9276404295607,57.92163863549571],[-124.92729882410062,57.92162466975979],[-124.92697455200474,57.92159514045044],[-124.92673729837507,57.92147546237037],[-124.92652818866341,57.921331335601835],[-124.926321159165,57.92118834686893],[-124.9261012754228,57.92105198376746],[-124.92585347494943,57.92093221912273],[-124.92558210703287,57.92082460147985],[-124.92529996337608,57.920724747505844],[-124.92501356798095,57.920625980219896],[-124.9247206179046,57.920535010556506],[-124.92441436435729,57.920466364677246],[-124.9240863003863,57.92042221697605],[-124.9237471066818,57.92039816720512],[-124.9234095745914,57.92038983227569],[-124.9230736073614,57.9204005761964],[-124.92273728662094,57.920423653922505],[-124.92240102972765,57.92044448813625],[-124.92206528670091,57.92044738019119],[-124.9217277223917,57.920440162332845],[-124.92139022253212,57.92043070095591],[-124.92105486559133,57.92042013448425],[-124.920717462621,57.92040730740864],[-124.92038005988083,57.920394479478816],[-124.92004480014717,57.92038054647107],[-124.91970746229683,57.920365474175824],[-124.91937009249665,57.92035152235791],[-124.91903275517704,57.92033644835496],[-124.91869749645983,57.92032251195805],[-124.91836012741973,57.920308557583624],[-124.91802272636967,57.92029572368591],[-124.91768740384916,57.920284027409615],[-124.91734993868796,57.92027343446986],[-124.91701215081265,57.92027405398024],[-124.91667403992105,57.92028588593832],[-124.9163378455232,57.92030446218714],[-124.91599931397747,57.92033086972838],[-124.91566561738443,57.92033600548978],[-124.91533711205687,57.92030753487609],[-124.91500906012887,57.920263364833524],[-124.91468334605477,57.920211361868986],[-124.91435763288139,57.92015935811107],[-124.91403182347126,57.92011071754847],[-124.91370809307051,57.92006321472903],[-124.91338231773167,57.92001345125384],[-124.91305862139649,57.91996482553218],[-124.91273275051608,57.919918424461144],[-124.91240489960536,57.919867520051284],[-124.91207717933078,57.919812129522334],[-124.91174712235538,57.91976457025179],[-124.91142268377455,57.91974173112533],[-124.9111024993594,57.91979070797719],[-124.91078559339837,57.919872237096676],[-124.91046469336598,57.91987297804162],[-124.91014096951714,57.91982546656739],[-124.90981770154917,57.919762255715185],[-124.90948998600216,57.91970685882897],[-124.90915964050613,57.919669385105685],[-124.90882491194044,57.91963748263277],[-124.90849232701385,57.919604475283144],[-124.90816633467543,57.91956254837187],[-124.90786028208123,57.91948825787907],[-124.90758053401721,57.919380534537595],[-124.90726509719542,57.91933869195622],[-124.90692510926948,57.91934263256527],[-124.90658469746566,57.91936114955608],[-124.90624639584034,57.91937968300371],[-124.90590783291576,57.919407186206776],[-124.90558968942548,57.91945840977913],[-124.90529589214286,57.91954348049437],[-124.90501631221308,57.919647734545656],[-124.90476422093425,57.91982287451611],[-124.9044980519697,57.91990144108509],[-124.90423109778364,57.920006918977606],[-124.90396417477959,57.920111275019835],[-124.90365098143118,57.920209641830006],[-124.90324922040108,57.92008744602927],[-124.90302856095767,57.92005310313041],[-124.90249873092404,57.920268572616344],[-124.90222858022388,57.92012166105517],[-124.90195521021118,57.91986817077908],[-124.90175662608793,57.919728577662106],[-124.90159246680238,57.91956683615458],[-124.9014218463721,57.91940952756704],[-124.9012384005446,57.91925772098173],[-124.90105917718975,57.919105948984665],[-124.90089700302873,57.918948709433955],[-124.90073908395422,57.918790383213974],[-124.9005535006529,57.91863967969498],[-124.90036148909986,57.918492287656136],[-124.90017162229535,57.918343791461695],[-124.89997964654566,57.91819527759427],[-124.89978978274792,57.9180467809017],[-124.89959777721427,57.917899387853716],[-124.89940577318539,57.91775199455165],[-124.89921591389083,57.91760349711011],[-124.89902394569302,57.917454981980505],[-124.89882983578727,57.91730757047631],[-124.89863783778861,57.91716017615871],[-124.89845441416723,57.91700836609728],[-124.89829222709308,57.9168522450428],[-124.8982365119013,57.9166644781812],[-124.89820222921577,57.91646567265616],[-124.89787168598038,57.916364238304354],[-124.89757688875382,57.916267585311076],[-124.89693409167384,57.91623310305875],[-124.89673851615942,57.916136148127045],[-124.89633537335592,57.91606327010465],[-124.89606705813452,57.91592757738334],[-124.89595417970716,57.91574606549787],[-124.89576239846618,57.91559193935798],[-124.8955598368785,57.91544557472719],[-124.8953335698046,57.915315837114505],[-124.8950643082592,57.915212660737176],[-124.8947606578535,57.91513050876333],[-124.89444840292047,57.91505389264694],[-124.89415336102107,57.91496620276055],[-124.89391440718883,57.914837479014565],[-124.89361053144007,57.91476317368011],[-124.8932848286023,57.91471336134491],[-124.89295230085601,57.91468031537661],[-124.89261977369397,57.91464726857936],[-124.89228704898052,57.91462094886012],[-124.89195171900525,57.91461143052344],[-124.8916137502781,57.9146198348669],[-124.89127594666378,57.91462263176536],[-124.8909399226113,57.91463665855056],[-124.89060353450714,57.91466301898014],[-124.8902676421746,57.91467255880055],[-124.88992993726559,57.914671988334135],[-124.88959249719068,57.91466244647427],[-124.88925123416344,57.914639412764316],[-124.88888903478986,57.91461059558724],[-124.88875681860866,57.9145848176836],[-124.88859512320795,57.914342326236294],[-124.88853708485321,57.9141635087372],[-124.88828556038914,57.91403242673085],[-124.88815541274948,57.91386534481904],[-124.88799331512095,57.91370809042555],[-124.88781420480278,57.913555180179145],[-124.88761593860973,57.91340771770307],[-124.88740474766577,57.91326911972815],[-124.8871721581718,57.913140436991036],[-124.88692466651275,57.913016115699534],[-124.88667282345457,57.912896243949675],[-124.88642098200141,57.912776371738815],[-124.88615839229597,57.91266313872977],[-124.8858936940503,57.91254988756811],[-124.88564825417836,57.912427824257506],[-124.88543925254062,57.91228699833388],[-124.88524954242257,57.912136239213766],[-124.88504694063828,57.91199322306723],[-124.88478439377911,57.91187886612955],[-124.88447462876537,57.91179103143707],[-124.88430560817586,57.91172568517305],[-124.88432990513583,57.911475773920955],[-124.8843183458354,57.91129622260905],[-124.88427506953,57.911118648846],[-124.88419371331092,57.91094412088538],[-124.88408904783203,57.91077276239574],[-124.88395678682858,57.91060678058414],[-124.8838011173414,57.91044733203974],[-124.88363486593147,57.91028891622995],[-124.88347705585853,57.910130570985814],[-124.88334262326775,57.90996681360916],[-124.88329295662915,57.90979142932633],[-124.88327510621686,57.90961070386041],[-124.8831810649372,57.90943719072519],[-124.88306582529265,57.909266864552606],[-124.88296116961719,57.909095505476074],[-124.88291358252616,57.90892126021454],[-124.88297795409459,57.908743467592124],[-124.88298961094321,57.90856411131408],[-124.8829569600732,57.908384383483224],[-124.88290103428632,57.908206703642435],[-124.8828133944385,57.908031000972954],[-124.88270887655912,57.90785515668845],[-124.88260221650528,57.907680415960954],[-124.88251662250025,57.9075069735071],[-124.88246893955075,57.90733609229532],[-124.8825727975329,57.90717882002508],[-124.88279460418835,57.90702926664768],[-124.88285468688807,57.906853681652635],[-124.88290224346632,57.906673505264045],[-124.8830461836535,57.90651656894582],[-124.88324467716495,57.906370184209685],[-124.88338878116554,57.906207641042066],[-124.88352451145295,57.90604278439172],[-124.88366650324473,57.90588022329314],[-124.883846169677,57.90572807207743],[-124.88404890863528,57.90558060031897],[-124.88412780435561,57.905410780635755],[-124.88410998526966,57.90522893480069],[-124.88399468778628,57.90506085278656],[-124.88381583448093,57.904901210715224],[-124.88373848031723,57.90473456809728],[-124.88378583038222,57.90456111961376],[-124.88386067215089,57.90438565838659],[-124.88395031405061,57.904209199600075],[-124.88401919128131,57.90402135097369],[-124.88408324992423,57.903853650451666],[-124.88405274079875,57.90367282014376],[-124.88392670070286,57.90351137777168],[-124.88366428296993,57.903394777030485],[-124.88347248192258,57.90324512039353],[-124.88323986799182,57.903119796040386],[-124.8829558266272,57.90302095787794],[-124.88266311534227,57.90292989743451],[-124.88235979098378,57.90284099043882],[-124.88203724870696,57.902759772487386],[-124.88172749852296,57.902674174843014],[-124.88145605518291,57.90257768241498],[-124.88127612423006,57.90245504027414],[-124.88131119224572,57.90226915244514],[-124.88135690758683,57.90207998934255],[-124.88137278914131,57.90190066988874],[-124.88135495169435,57.901719945648374],[-124.88132860973748,57.90154139315717],[-124.8814432372952,57.90137636221979],[-124.88160417249082,57.90121508487461],[-124.88174826383603,57.90105254435253],[-124.88188612550188,57.900886586669394],[-124.88199247738197,57.90071587802946],[-124.88203989706928,57.90054018829296],[-124.88205158916286,57.90035971232758],[-124.88205695286754,57.900179183268136],[-124.88203466091302,57.900006273110904],[-124.88201273563702,57.899821028703315],[-124.88198642520473,57.89964135539632],[-124.88193051699373,57.8994636767622],[-124.88186613848933,57.89928704858697],[-124.88191559969555,57.89911361946141],[-124.88198411128236,57.89893810714726],[-124.88202319132759,57.898758983009735],[-124.88205805232889,57.89857982347631],[-124.88208233305637,57.89840169672083],[-124.88208977233828,57.89822230703145],[-124.8820423362845,57.89804357824323],[-124.88203501061565,57.89786406465827],[-124.88203401287389,57.897684604234506],[-124.88203512441731,57.897505161553354],[-124.8820299081533,57.89732566577758],[-124.88196128101355,57.89715012391593],[-124.88179717201712,57.896992847006395],[-124.88163942543049,57.89683450177255],[-124.88154324773565,57.89666321465674],[-124.88158865517163,57.89648414422018],[-124.88156221579248,57.8963089566261],[-124.88149781108532,57.89613345014388],[-124.88146517812395,57.895953724267336],[-124.8814388396801,57.895775172865534],[-124.88140195564408,57.89559653289558],[-124.8813248979522,57.89542092014306],[-124.88130488799227,57.89524242197456],[-124.88132287604776,57.8950631215189],[-124.8813514095741,57.89488390969479],[-124.88136728811818,57.894704591579426],[-124.88136636030478,57.894522889154665],[-124.8813864568217,57.89434360654371],[-124.88148017127384,57.89417167186171],[-124.88163283911689,57.89400359706742],[-124.88173261225529,57.89384068574226],[-124.88148740786374,57.89371525326581],[-124.88119042104942,57.89362864019093],[-124.88087368720926,57.893567656593795],[-124.88054584212492,57.893525645518466],[-124.88021093661952,57.89350824880728],[-124.87987342176544,57.89350765286214],[-124.87953303003813,57.89353282798339],[-124.87921810819743,57.89348194981283],[-124.87897295272678,57.89342605047428],[-124.87884502672004,57.893258980803125],[-124.87855150316206,57.89326884606072],[-124.87833186618641,57.89334774899412],[-124.8781697741556,57.89340694817373],[-124.87801996817929,57.893478587982614],[-124.87791659421099,57.89354949738473],[-124.87776970126613,57.89366490277256],[-124.87765795927956,57.89380415733959],[-124.87756312465712,57.89401309183887],[-124.87733353968245,57.89414238012607],[-124.87716528407967,57.89426657740188],[-124.87684915538863,57.89432671911706],[-124.87652298231347,57.89436995174895],[-124.8761946324207,57.894415408362484],[-124.87586839083693,57.89446088197545],[-124.87554218196864,57.8945052335011],[-124.87520813915339,57.894529329738035],[-124.87487412943423,57.89455230384753],[-124.87454199367923,57.894583143977734],[-124.87420972320535,57.894618468440356],[-124.87387383785007,57.89463357317964],[-124.87354183481263,57.894659925658],[-124.87321759629901,57.89470877450135],[-124.87289526456351,57.89476436815043],[-124.87257299906094,57.894817718442944],[-124.8722429009955,57.89485081328561],[-124.87190878577617,57.89487714383385],[-124.87157487182374,57.894896745806584],[-124.8712371764947,57.89490173441766],[-124.87089958200373,57.894903358303985],[-124.87056202113621,57.894903860045034],[-124.87022432560914,57.894908846087475],[-124.86988676468343,57.8949093461167],[-124.86955164969994,57.89489865030593],[-124.86921412254948,57.89489802734085],[-124.8688766628158,57.89489516094237],[-124.86853933798484,57.89488780853322],[-124.86820459452683,57.894864775155455],[-124.8678744745091,57.89482832134043],[-124.86754438887327,57.89479074541998],[-124.86721430389655,57.89475316868246],[-124.86688642997692,57.89471224521296],[-124.8665586243136,57.89466907836163],[-124.86623085318364,57.89462478941721],[-124.86590743619719,57.89457605044614],[-124.86558194474804,57.89452617143458],[-124.86525859706983,57.89447518831731],[-124.8649373931823,57.89442310111031],[-124.86461408109207,57.89437099514605],[-124.86429073605818,57.89432000968673],[-124.86396739190037,57.89426902344492],[-124.86364187181962,57.89422026099377],[-124.86331846166236,57.89417151575501],[-124.86299294326577,57.894122751722264],[-124.86266739182567,57.89407510818283],[-124.86234187510648,57.89402634256335],[-124.86201629141814,57.89397981872295],[-124.86169070853477,57.893933294088555],[-124.86136505860497,57.89388901123216],[-124.86103730038094,57.893844709539536],[-124.86070947503828,57.89380264961338],[-124.86038161647348,57.893761710167375],[-124.86005158163948,57.89372299442915],[-124.85972151351002,57.89368539915968],[-124.85939144604,57.893647803073485],[-124.85906134523536,57.893611327455446],[-124.85873121106668,57.89357597230541],[-124.85839883242107,57.89354508339338],[-124.85806393699626,57.89352763097887],[-124.85772686477435,57.893512402197224],[-124.85738979282523,57.89349717256252],[-124.85705472802609,57.89348532403247],[-124.85671724782634,57.893483548107234],[-124.85638129744213,57.893500851272414],[-124.85604544900049,57.89351478973803],[-124.85570786630255,57.893516375106586],[-124.85537038588801,57.893514595767584],[-124.8550330078473,57.89350945172167],[-124.8546955957748,57.89350542810484],[-124.85435780829953,57.89351373775296],[-124.85401889391653,57.89355904890255],[-124.8537449660543,57.89347930201559],[-124.8534935985415,57.89335152100626],[-124.85326152143223,57.893213811478255],[-124.85304631813042,57.89307624691335],[-124.85285254824447,57.89292765091055],[-124.85268429295026,57.89277254504597],[-124.85254583836878,57.892608723208056],[-124.8524307547031,57.89243949480565],[-124.85234325962321,57.89226489626117],[-124.85219412681141,57.89210546837159],[-124.85198539741457,57.89196347167007],[-124.85176401593625,57.8918213655307],[-124.85153413195793,57.89168142883697],[-124.85128465331826,57.89156151105198],[-124.85100656217243,57.89148060102336],[-124.8506782550054,57.89145533570948],[-124.8503280027717,57.89145791947974],[-124.84998220817133,57.891452689801476],[-124.84964726672374,57.891437458816306],[-124.84931246267722,57.89141774186922],[-124.84897800190592,57.89138681128253],[-124.84864544478559,57.891362625772814],[-124.84830625253909,57.8913484762192],[-124.84797249490755,57.89136353381456],[-124.84764427411714,57.89140443476281],[-124.84731598392939,57.89144757746252],[-124.84697960082215,57.89147943350333],[-124.84664380130093,57.891492226946895],[-124.8463202991207,57.89144792567891],[-124.84603426514995,57.89135123426787],[-124.84580845122396,57.89121693070985],[-124.84559549865703,57.891076008834744],[-124.8453889431525,57.890932898951974],[-124.84518456691019,57.89078756450648],[-124.84498012342446,57.89064447232483],[-124.84476714278048,57.8905046704861],[-124.84454548732332,57.890372644057535],[-124.84426582707245,57.89027488258632],[-124.84394724467832,57.89020818667848],[-124.84376175416064,57.890066378799396],[-124.84362559500123,57.889898081354026],[-124.84352767147341,57.889721143335755],[-124.84346552974523,57.88954675927616],[-124.84343097529111,57.88936700700935],[-124.84340274754028,57.889187309730346],[-124.84335550657224,57.88900856885944],[-124.8432786054193,57.888834056587584],[-124.84318476596307,57.88866164025829],[-124.84308456664566,57.8884902901904],[-124.84298651145085,57.88831783713035],[-124.84291172215212,57.888143343098655],[-124.84282213801626,57.88796984201998],[-124.84269224782791,57.88780384152321],[-124.84257507996792,57.88763570838591],[-124.84246856007434,57.88746430303336],[-124.84242336542066,57.8872878230324],[-124.84241204791614,57.88710715134706],[-124.84220936423397,57.88697640779456],[-124.84194487538495,57.88686643616875],[-124.84176611436723,57.88671234703263],[-124.84161497421532,57.88655176859112],[-124.84148295109901,57.88638687008034],[-124.84135314130785,57.88621862600469],[-124.84124237924178,57.88604830448638],[-124.84120344881146,57.88587412193751],[-124.84128062951581,57.885696463876656],[-124.84140388773893,57.885529301008795],[-124.84159413620085,57.885378423053105],[-124.8416920891802,57.885211039775655],[-124.84171033011643,57.88502950401678],[-124.84169476511505,57.88484991726627],[-124.84170450270899,57.88467055072378],[-124.84176283983952,57.88448824239217],[-124.8417618619259,57.88431439052606],[-124.8415745072094,57.884165834498184],[-124.84140426355474,57.88400957616616],[-124.84129350775677,57.88383925507859],[-124.84121030127979,57.88366468747992],[-124.84120739005166,57.88348521105847],[-124.84121747477678,57.88329463211972],[-124.84098616305955,57.8832040142526],[-124.84064172330433,57.883157273436574],[-124.84038372936621,57.883042869164406],[-124.84015369946282,57.882910762966155],[-124.8399407804935,57.88277095452326],[-124.83972357714129,57.88263335153608],[-124.8395106613382,57.88249354244506],[-124.83931907318288,57.88234606802345],[-124.83914456117054,57.882192012856784],[-124.83898283924367,57.882033582766354],[-124.83884234081336,57.88187085137368],[-124.83874010555233,57.88169835957753],[-124.83862933401463,57.881529157944975],[-124.83845901071685,57.88137626006762],[-124.83824185542966,57.88123753359511],[-124.8380247017428,57.88109880678828],[-124.8378117663113,57.880960116465964],[-124.83759243824585,57.88082361311337],[-124.83735818044282,57.88069258682516],[-124.83708949865971,57.88058369069684],[-124.83680367487139,57.88048361674861],[-124.83650675666823,57.88040139026838],[-124.83617167634668,57.880393974405244],[-124.83586473211716,57.88036325088841],[-124.83563065659017,57.8802266153046],[-124.83535984016218,57.88011881855668],[-124.83506524444239,57.880029879761224],[-124.83478572033941,57.87993097815845],[-124.83452354978041,57.879816525994556],[-124.83427634692062,57.87969547501163],[-124.83404214240382,57.87956332177758],[-124.8337581995596,57.879471108699],[-124.83344187018153,57.8794032856097],[-124.83311634442184,57.87936005559709],[-124.8327841123097,57.87932910320129],[-124.83245430193729,57.87928807711794],[-124.8321443011279,57.87922030644027],[-124.83184318661857,57.87913803266594],[-124.83154425124384,57.879053534204076],[-124.8312518507035,57.87896236305331],[-124.83095067057144,57.87888232980321],[-124.83062041335042,57.878855875582595],[-124.83028590534673,57.878830504746524],[-124.82998255042956,57.878752693308776],[-124.82971608172598,57.87864155852848],[-124.82951512441426,57.87859380710402],[-124.82934121149911,57.878354505402676],[-124.82927082616708,57.87817667881224],[-124.8292320987309,57.87799800914073],[-124.82922717175812,57.87781739370287],[-124.82926222970646,57.87763937317289],[-124.82931626047042,57.877461519563184],[-124.82939133703661,57.877284972651466],[-124.82949157075336,57.87711313325845],[-124.82962525428648,57.87695056051367],[-124.82979249185287,57.87679389053778],[-124.82997019874571,57.8766395555608],[-124.83014997741547,57.87648636015942],[-124.83036186325765,57.87631774484777],[-124.83046128888162,57.876171693814605],[-124.83056569601771,57.87600101211818],[-124.83066381292046,57.875829153545155],[-124.830759855721,57.87565615515224],[-124.83086007885652,57.875484315016415],[-124.83095193867457,57.87531015825079],[-124.8310500520143,57.87513829951502],[-124.83117957544415,57.87497344599386],[-124.8313322507164,57.87480991726409],[-124.83149954126857,57.874651002976165],[-124.83168759690557,57.87450236487086],[-124.83191911805565,57.874379903966286],[-124.83223971464358,57.874308694605546],[-124.83251884638626,57.8742146895074],[-124.8326757286424,57.87405119635011],[-124.83272970337511,57.87387446326605],[-124.83276056001664,57.873695284301505],[-124.83278298473131,57.87351603140717],[-124.83280122819363,57.873335620310066],[-124.83282790303362,57.87315528319717],[-124.83286715537565,57.87297729954715],[-124.83293163225899,57.87280178026779],[-124.83302762216955,57.87262990203043],[-124.83313836614857,57.872458153138034],[-124.8332385351753,57.8722874330292],[-124.83331354829627,57.872112006097254],[-124.83336969455516,57.871933049079445],[-124.83340483165718,57.87175166477564],[-124.8334082472115,57.87157336707358],[-124.83335457871037,57.8714001767234],[-124.83320785567385,57.871236264471],[-124.8331083505672,57.87097743381753],[-124.8329652429846,57.87090103447356],[-124.83276738142106,57.870754618174296],[-124.83254595380619,57.870620331952615],[-124.83232031229353,57.8704860083887],[-124.83210749265345,57.870346189203204],[-124.83190535233256,57.87020197720818],[-124.83172449942211,57.87005122248151],[-124.8315734689537,57.86989063539397],[-124.8314394753136,57.869724589992785],[-124.8313351992471,57.86955207615332],[-124.83123520908926,57.869377356790025],[-124.83109458252507,57.869221346834955],[-124.83080022137638,57.869127914598124],[-124.83053174552612,57.86901564277953],[-124.83035294180507,57.86886714739477],[-124.83021045697653,57.86870326931806],[-124.8300594732046,57.86854155948567],[-124.82989781327412,57.86838424182958],[-124.82973404708339,57.86822690546536],[-124.82957024741202,57.8680706901728],[-124.82940223391323,57.86791443761888],[-124.82923207936551,57.867759287580114],[-124.82905764134087,57.86760634274731],[-124.82887898959892,57.86745336060841],[-124.82869823174991,57.86730035970019],[-124.82850890565155,57.867151769330576],[-124.82831104622426,57.867006468214726],[-124.82809822623867,57.86686776436233],[-124.82787687302195,57.86673234966098],[-124.8276490941269,57.866600242637006],[-124.82741281696147,57.86647030343661],[-124.82717432916623,57.86634370899203],[-124.82693159305457,57.86621819821842],[-124.82668664627178,57.86609603216726],[-124.82641381462396,57.86598932144218],[-124.82611060608359,57.86591038096093],[-124.82578973494799,57.8658570796185],[-124.8254623674554,57.86580932791195],[-124.82514813531544,57.86574598964508],[-124.82484489639938,57.86566816754308],[-124.8245460836355,57.86558365453292],[-124.82424720220239,57.86550138334596],[-124.82394403714537,57.865421316723655],[-124.82364305086944,57.86533902556439],[-124.82333774593013,57.86526006018362],[-124.82303012458779,57.86518780292214],[-124.82271361903791,57.865130046516676],[-124.8223859812839,57.8650912572177],[-124.82205167121634,57.86506362356156],[-124.82171739671934,57.86503486782396],[-124.82138758321392,57.86499829989074],[-124.82105777034894,57.86496173114139],[-124.8207280985617,57.86492067660831],[-124.82040731371333,57.86486511985676],[-124.8200883562,57.8648185509577],[-124.81975064270843,57.86483237877739],[-124.81941858487936,57.86480027224198],[-124.81908642214228,57.86477152860273],[-124.81874877904075,57.86478311139629],[-124.81841461181826,57.86481827683032],[-124.81811704035877,57.86489638557482],[-124.81784176943445,57.865002730672],[-124.81752779356192,57.865066112171846],[-124.81719776711878,57.86510355450325],[-124.81686384217713,57.865130867365565],[-124.81653181277693,57.86516492558327],[-124.81621179299154,57.86521927782032],[-124.81589173702892,57.86527475053171],[-124.81556177765829,57.865309946331095],[-124.81524997337766,57.865371098755276],[-124.81491228843902,57.865383793061376],[-124.8145730958088,57.865377406639745],[-124.81424107289197,57.865344165924576],[-124.8139202586946,57.8652897147501],[-124.81359098036133,57.865236308874636],[-124.81326384572587,57.86518179974511],[-124.81293892549051,57.86512394489713],[-124.8126183978585,57.86506052067598],[-124.81231072799417,57.86499048112714],[-124.81201387930874,57.86491156504431],[-124.81173853050848,57.864819381655366],[-124.81151278566252,57.86469175105],[-124.81132796760375,57.86453644685335],[-124.8111496501979,57.86437559272538],[-124.81094551479381,57.864231330949224],[-124.81068770530385,57.86411799259629],[-124.8103782935276,57.86403671742546],[-124.81005089055044,57.86399117036814],[-124.80972070771826,57.863966907172994],[-124.80938602702129,57.86395157534264],[-124.8090469191392,57.86394293236742],[-124.8087098833067,57.863935428635685],[-124.8083707402489,57.863927905174805],[-124.8080317037856,57.86391701713738],[-124.8076971307084,57.86389831734752],[-124.80736494936902,57.863870665710756],[-124.8070330171293,57.86383516458633],[-124.80670333496998,57.86379519658939],[-124.80637376011693,57.863751864066884],[-124.80604636445885,57.863706307169004],[-124.80571686224944,57.863660730550265],[-124.80538946817806,57.86361517204013],[-124.80505986083737,57.86357295750739],[-124.80473221923432,57.86353524603717],[-124.8044022929839,57.86350312100309],[-124.80407001073749,57.863478824859094],[-124.80373958695488,57.86346239548461],[-124.80340459256392,57.8634571397379],[-124.80306720586675,57.86346083407263],[-124.80272953395345,57.863473497435386],[-124.80239168354399,57.863491766118244],[-124.8020557261568,57.863516780331025],[-124.80171758964083,57.86354401718578],[-124.80138363162422,57.86357241238945],[-124.80105385208554,57.86360196597353],[-124.80072982279205,57.86364951549235],[-124.80041572227553,57.863716220228554],[-124.79999968202051,57.86380667905458],[-124.79968347154814,57.86387336306487],[-124.79961128552108,57.863889535129275],[-124.79936933156766,57.86394118658132],[-124.79904936893087,57.86399325500058],[-124.79871783415305,57.86401157143339],[-124.79837879973032,57.86400065879828],[-124.79803976550404,57.86398974529925],[-124.79770498198222,57.863977747790685],[-124.7973680913175,57.86396573039011],[-124.79702884281507,57.86396154172309],[-124.79668527220497,57.8639606777733],[-124.79635266839578,57.86394645345414],[-124.79603371257784,57.86390094817277],[-124.79573930075517,57.863813045069776],[-124.79545153507775,57.86371510745945],[-124.79514840976536,57.863636096614734],[-124.79483649760869,57.863568221061314],[-124.79451797748435,57.863509257363404],[-124.79419731513381,57.8634513950397],[-124.79387672558289,57.8633912894807],[-124.79357992813314,57.863312332403595],[-124.7933352162167,57.86318674163565],[-124.79309797760463,57.863025328350034],[-124.79286464215447,57.863005266407406],[-124.79263274048641,57.86313774901838],[-124.79241051094314,57.86329723646349],[-124.79220774884094,57.86344119849124],[-124.79201541396121,57.86358861960198],[-124.79181682749207,57.86373374057865],[-124.79161613214426,57.86387884213958],[-124.79141547123123,57.864022822186335],[-124.7912106300428,57.864165642424176],[-124.79099539441572,57.86430388168172],[-124.790759407423,57.86443183796856],[-124.79050059766983,57.86454837077831],[-124.79021714592771,57.86464449094333],[-124.78992137260045,57.86473040440752],[-124.78961531317266,57.86480837272552],[-124.78932164458972,57.864894304043396],[-124.78905668524028,57.865005170400046],[-124.78880822306319,57.86512740206095],[-124.78855143778182,57.865246192815],[-124.78831961536845,57.86537530451028],[-124.7882254391507,57.86555053208489],[-124.78804997358203,57.86569698010227],[-124.78780778984893,57.865820388807556],[-124.78754474649894,57.865936877630936],[-124.78728177373398,57.86605112347962],[-124.78701269363683,57.86615858377509],[-124.78673325521983,57.866260341276096],[-124.78645385142387,57.86636097696643],[-124.78618887331479,57.86647183777869],[-124.78594453485708,57.86659634519823],[-124.7857147665479,57.866726592998916],[-124.78549742476118,57.866863683255495],[-124.78528008139224,57.86700077317638],[-124.78505648620553,57.86713556255755],[-124.78483081806387,57.86726921109837],[-124.7846030769657,57.867401718787754],[-124.7843691201999,57.86753080463306],[-124.7841248050576,57.86765418761078],[-124.78387423804503,57.86777526989459],[-124.78362163428582,57.86789408998333],[-124.7833669575817,57.86801176910016],[-124.78311017170411,57.86812942846802],[-124.78284927776578,57.8682436850885],[-124.78258227695034,57.86835115594547],[-124.78229870386566,57.86844950208658],[-124.78200491766631,57.868537660047274],[-124.78170295357816,57.86861789152604],[-124.78134945901,57.868661760208],[-124.7810749278207,57.86874111997875],[-124.7808713307872,57.86890861148331],[-124.78088470931968,57.86908145560867],[-124.78081556315666,57.86926363774802],[-124.78069397910451,57.8694374883941],[-124.7805850399111,57.869611454854486],[-124.78058577133994,57.869784183240014],[-124.78065394862884,57.869957529738436],[-124.78073059362116,57.87012983224914],[-124.78081984922622,57.8703033718556],[-124.78091542879038,57.87047696936445],[-124.78101733240148,57.87065062476206],[-124.7811277041731,57.870823236102964],[-124.7812423650205,57.870993643516854],[-124.78135913465644,57.871164070165136],[-124.78148019343793,57.87133229286618],[-124.78160132586181,57.87149827300839],[-124.78180124522073,57.87164029979623],[-124.7820437207464,57.87177037852889],[-124.78223074262478,57.87192013763214],[-124.78239647042615,57.87207643106652],[-124.78254086771848,57.872240380154835],[-124.7826577558466,57.87240744216078],[-124.78276399711879,57.87257777140895],[-124.78286387958723,57.87274916400421],[-124.78295736693211,57.87292274120233],[-124.78304663941913,57.873096279812415],[-124.78313380485936,57.87326979911828],[-124.7832125033511,57.87344436254352],[-124.78328062689388,57.8736199508308],[-124.78334660694215,57.873796641084915],[-124.78341047970046,57.87397331206751],[-124.78347649720433,57.874148881078995],[-124.78353822701516,57.87432665403692],[-124.78359788569374,57.87450328648777],[-124.78365754493205,57.87467991894399],[-124.78372352860627,57.8748566092036],[-124.78379165708701,57.875032197484025],[-124.78387036231193,57.875206760836214],[-124.78396604081382,57.87537811453943],[-124.78408498058215,57.87554743758089],[-124.78420817364132,57.87571567781773],[-124.78432289953152,57.87588496218851],[-124.78440378943095,57.87605730214484],[-124.78439974320453,57.87624793306454],[-124.78440231069432,57.8764296518243],[-124.78454109700363,57.87657223804328],[-124.78482900493925,57.87666795804934],[-124.78514010306729,57.87676388912396],[-124.78546290059857,57.87682403579645],[-124.7857705087105,57.87689750201095],[-124.78602404221367,57.877013094157356],[-124.78626885574968,57.8771375789056],[-124.78655655557003,57.87724002271144],[-124.78676110163421,57.87737086885695],[-124.78682485195438,57.87755202383901],[-124.78693748708373,57.87772128705853],[-124.78706284425547,57.877888422996335],[-124.78720306787727,57.87805232957814],[-124.78734122068721,57.87821509558294],[-124.78745386012147,57.8783843584809],[-124.7875579956781,57.87855578698929],[-124.78765580765062,57.878727157835186],[-124.7877535844092,57.87889964988851],[-124.78785557845744,57.87907218030209],[-124.78795546523384,57.87924469146899],[-124.78804899218066,57.87941826624884],[-124.78813201495302,57.879590623762965],[-124.78800890066198,57.87974652373546],[-124.78778313130802,57.87988130026431],[-124.78755321606131,57.88001379551708],[-124.78732119093964,57.88014627118165],[-124.78709752499093,57.88028106581204],[-124.78688843468417,57.880421600851484],[-124.78669813664706,57.88056791480927],[-124.7865396542028,57.880773962366284],[-124.78642674563699,57.88094004843316],[-124.78638406095591,57.88108658631932],[-124.78630367928336,57.88122492940413],[-124.78660686752099,57.88137125614572],[-124.78679431659823,57.881509797794685],[-124.78699230875854,57.88164843527176],[-124.78720088024342,57.8817860472776],[-124.78741581443933,57.881922595346786],[-124.78763707528644,57.88205920070071],[-124.78786680733056,57.8821947612555],[-124.78809868550587,57.88232921937638],[-124.78833478211158,57.882463715498375],[-124.7885729887989,57.88259823040959],[-124.78881119718844,57.88273274491321],[-124.78905151569026,57.88286727819102],[-124.78928761907432,57.883001772697476],[-124.78952372414535,57.88313626680388],[-124.78975346955554,57.88327182425312],[-124.78998114422181,57.88340624090266],[-124.79020242309728,57.8835428422013],[-124.79042588409347,57.883677219800525],[-124.79065359963502,57.8838105141007],[-124.7908791723018,57.88394491013253],[-124.79110263810027,57.88407928665147],[-124.79132181651457,57.88421586703479],[-124.79153249054743,57.88435461301972],[-124.7916813357015,57.88451410751794],[-124.79183007415143,57.88467696564685],[-124.7920086930291,57.88482887895833],[-124.79219367491622,57.884979728192796],[-124.7923808027968,57.88512947506532],[-124.79256789619906,57.885280342955724],[-124.79275077398998,57.88543117236022],[-124.79292725564098,57.885584186692384],[-124.79309312395895,57.885739347743026],[-124.79324619836433,57.885898878955004],[-124.79337804438306,57.886062703921404],[-124.79349495164467,57.88623200130154],[-124.7936033895795,57.88640234342922],[-124.79370968394153,57.886573787650114],[-124.7938202324622,57.886744148769225],[-124.79394354160151,57.88691126067322],[-124.79407746692544,57.88707622548286],[-124.7942177912356,57.88723900496506],[-124.79436022542608,57.8874018034245],[-124.79450691411182,57.887563518688935],[-124.7946557127429,57.88772525291189],[-124.7948109105404,57.88788480174465],[-124.7949830869708,57.88804113934233],[-124.79514679409172,57.88819852166343],[-124.79520861092767,57.88831011823042],[-124.7953235595603,57.88854108382325],[-124.79535788351764,57.88872084838073],[-124.79539856994255,57.88889954894415],[-124.79544136551493,57.88907826860899],[-124.79548205272252,57.88925696921293],[-124.7955206674183,57.88943452949459],[-124.79555502901391,57.8896131729036],[-124.79558513745181,57.889792899443655],[-124.79560895562417,57.88997144751225],[-124.79562852049936,57.89015107871828],[-124.79564386789846,57.89033067179991],[-124.79565714248257,57.89050912457113],[-124.79566612772979,57.89068978174932],[-124.79567725780475,57.89086933677279],[-124.79568627911422,57.89104887275164],[-124.7956974093915,57.89122842784002],[-124.79571275755858,57.8914080211137],[-124.79573025065291,57.891586512229246],[-124.79575192585841,57.891766162793175],[-124.79577785499261,57.891944730271575],[-124.79580796635965,57.89212445719452],[-124.79584022283262,57.89230308195162],[-124.79587247961177,57.892481706733896],[-124.79590259186027,57.892661433735285],[-124.7959306312982,57.89284002042273],[-124.79595230818205,57.89301967118706],[-124.79596769416925,57.89319814349618],[-124.79597671742236,57.89337767988792],[-124.79597730471204,57.89355714002342],[-124.79597367396246,57.89373656204752],[-124.79596578923928,57.89391706722879],[-124.79595583127232,57.89409643210166],[-124.79594165510524,57.89427575886141],[-124.79592533386457,57.89445618784922],[-124.7959090483439,57.894635495599154],[-124.79589058183086,57.89481702684623],[-124.79585527827342,57.89499728426191],[-124.79577182381787,57.89516589027044],[-124.79546956776132,57.89524951900017],[-124.79513507238593,57.89528574833785],[-124.79480686778864,57.8953231553793],[-124.79447265848046,57.89535041289486],[-124.79413662701457,57.895368680311094],[-124.79380070304244,57.89538358307017],[-124.7934647428543,57.895399606251786],[-124.79312688902559,57.89540888185015],[-124.79279150384635,57.89540696301786],[-124.79245418948778,57.895399417865065],[-124.79211694724485,57.89538962931896],[-124.79177977717774,57.895377597380154],[-124.7914427153569,57.895362200780156],[-124.79110565381185,57.89534680332723],[-124.79077066562157,57.89533254544508],[-124.79043338837555,57.89532387390494],[-124.79009775173967,57.89532979717051],[-124.78976339472167,57.895361527941965],[-124.78944100648363,57.895414677036335],[-124.78913684171921,57.8954915446239],[-124.78884693433386,57.895584243583166],[-124.788581757517,57.895695112497265],[-124.78833516421278,57.89581848759558],[-124.78809897056016,57.895946443315076],[-124.78786481221579,57.89607666037166],[-124.78763479831527,57.8962091579814],[-124.78745693381856,57.8963600757134],[-124.7872873239136,57.896516676418834],[-124.78712818622958,57.896675615535884],[-124.78698370310815,57.89683805280249],[-124.78685598389968,57.89700400748509],[-124.78674921105906,57.897174639340896],[-124.78666553020601,57.897348846372466],[-124.78659865010383,57.897525449692246],[-124.78656759029404,57.89770350105021],[-124.78656809662358,57.897884083300426],[-124.78657074837616,57.898063563534876],[-124.78657761869445,57.89824308224524],[-124.78659081691909,57.898422658652045],[-124.78662296272594,57.898603529348996],[-124.78667834730376,57.898783490218904],[-124.78663488406818,57.89895357760138],[-124.78646096809112,57.899112381778984],[-124.78634374933307,57.89927955374926],[-124.78628948415002,57.89945739388924],[-124.78623521845405,57.89963523403991],[-124.78615785782317,57.89980949887689],[-124.78602282003084,57.900005669963036],[-124.78591625197238,57.90016957404193],[-124.78581357611515,57.90034360799175],[-124.78570882609694,57.90051650138506],[-124.78558741700039,57.90068251318916],[-124.78543043632342,57.90083922765271],[-124.78523148306667,57.900988829465966],[-124.7849887732836,57.901121207723406],[-124.78471547049614,57.90122077984535],[-124.78441164762702,57.90128530308506],[-124.7840831626337,57.901329411573],[-124.78374441961212,57.90136445272923],[-124.78340978608459,57.9014028953904],[-124.78308122636,57.901449243960656],[-124.78274644630005,57.90149217005477],[-124.78241373864373,57.90153623587049],[-124.78209132341921,57.901588246236855],[-124.78178534732078,57.90165386549124],[-124.7815370189572,57.90176375417643],[-124.78134622900498,57.90192127645245],[-124.78110786379987,57.90204920127646],[-124.78084432845084,57.902172408850355],[-124.78056853416012,57.90228316600236],[-124.78027484324122,57.9023601104763],[-124.77995743690497,57.902387486327534],[-124.7796181712667,57.902373161632674],[-124.77927323222723,57.902338595130196],[-124.77893680457626,57.9023018625577],[-124.77860910674246,57.90225623633713],[-124.77828591995069,57.902201677829176],[-124.77796058819305,57.90214822045575],[-124.77763496593485,57.90210373247685],[-124.77730646977196,57.902082771072365],[-124.77696785945143,57.902113309926726],[-124.7766337592128,57.90213491649455],[-124.77630555507744,57.90210498243634],[-124.77598022696938,57.90205152023078],[-124.77565933765726,57.90199136838621],[-124.77534274130595,57.901929012026024],[-124.77503062047725,57.901858844819806],[-124.77471395325308,57.90179872951789],[-124.77438615534808,57.90175645674709],[-124.77405835817956,57.901714183171194],[-124.77373289046724,57.90166520058493],[-124.7734050217202,57.90162516794841],[-124.7730727519517,57.90159070199328],[-124.77274266538748,57.90155401210818],[-124.7724126526333,57.90151507886402],[-124.7720847865989,57.9014750429836],[-124.77175699446744,57.90143276375583],[-124.77142687395921,57.90139719188652],[-124.77108987642747,57.90137837986015],[-124.7707547688749,57.90136631407679],[-124.77041736888864,57.901359834325255],[-124.77007982240848,57.90135783880048],[-124.76974212931377,57.90136032750124],[-124.76940476622822,57.90135272391418],[-124.76906987954024,57.901333926270745],[-124.76873281036836,57.90131735082138],[-124.76839122900665,57.901309705659244],[-124.7680434296268,57.90129863726729],[-124.76770551658952,57.90130784842225],[-124.76739784904488,57.90135995984483],[-124.76711017279409,57.901445903946566],[-124.76683245445967,57.90154988542016],[-124.76656076888226,57.90166289509903],[-124.76628915520472,57.90177366169731],[-124.7660072868047,57.901875359860306],[-124.76570505786339,57.90195443652237],[-124.76538450468183,57.90201315363604],[-124.76506206184261,57.90206512280069],[-124.76473151152213,57.90210692149045],[-124.76440310676743,57.902147617664525],[-124.76408473305342,57.902204108694555],[-124.76377424369849,57.90227749634229],[-124.76346989734577,57.902356548382535],[-124.76316551285467,57.902436721003426],[-124.7628592756507,57.902509024450396],[-124.76253682507486,57.90256098752809],[-124.76219501235202,57.902560054082066],[-124.76187144087831,57.90251778969105],[-124.76154609280816,57.902465413474424],[-124.76122733253774,57.90240524645059],[-124.7609108304805,57.90234061321965],[-124.76060302599265,57.902268208890725],[-124.76030621341543,57.90218244682006],[-124.76000943914448,57.90209556282708],[-124.75970615303044,57.90201422558128],[-124.75938939807344,57.90195743763823],[-124.75904977433927,57.901954273236356],[-124.7587176267332,57.9019803395851],[-124.75838721811776,57.90201763745305],[-124.75805677183584,57.90205605577045],[-124.75772639892187,57.90209223073395],[-124.75739006726813,57.90211713315108],[-124.75706172856867,57.902155568687235],[-124.7567452679914,57.90221766820004],[-124.75643280297086,57.90228653396851],[-124.75611837559978,57.902350894234466],[-124.75582222805669,57.90243673522538],[-124.75553832816982,57.90253502778872],[-124.75524628556573,57.902624270744916],[-124.75493596103381,57.90269203148035],[-124.7546113513292,57.90274507692452],[-124.75428677783391,57.902797000312844],[-124.75397237966075,57.90286023427879],[-124.75369265363909,57.90295968369424],[-124.75341081661581,57.9030591127858],[-124.75312076294726,57.90315173467984],[-124.75283485258042,57.90324663799832],[-124.75255508350305,57.90334720633244],[-124.75228563754227,57.90345460051953],[-124.75202440508892,57.90356880085601],[-124.75176727856258,57.90368640404311],[-124.75151225999274,57.90380402652508],[-124.7512223075594,57.90389328055179],[-124.75090978129045,57.90396325475034],[-124.75059725385907,57.904033228220605],[-124.75029501245129,57.904111148819965],[-124.75002551731635,57.90421965978813],[-124.74975394829596,57.904327029150416],[-124.7494356086955,57.90438124275178],[-124.74910733206755,57.90435348413701],[-124.74877746839563,57.90431000714338],[-124.74844768008604,57.90426428679922],[-124.74811778064853,57.904221929443494],[-124.74779010349519,57.90417622730585],[-124.74746020557005,57.90413386832521],[-124.74712997233584,57.90410159993384],[-124.746796995159,57.904088372413376],[-124.74645893980497,57.90410089348744],[-124.74612250800543,57.90412801003569],[-124.74576363424137,57.904195292666216],[-124.74541764105315,57.904255965973725],[-124.74515461600059,57.904233298744785],[-124.74498593144014,57.904102723013075],[-124.74487404198486,57.903914358176884],[-124.74478554580706,57.903720605671886],[-124.74471965696597,57.90354501213043],[-124.74469399956395,57.903365311342625],[-124.74466412335603,57.903185570812965],[-124.74463421002113,57.9030069515754],[-124.74461066289943,57.9028272707577],[-124.74460399196491,57.90264774905972],[-124.74460368696252,57.902467165789204],[-124.74453565427498,57.90229267376349],[-124.74442739270293,57.90212228890689],[-124.74431276632204,57.90195296558412],[-124.744227822919,57.9017794356308],[-124.744164086941,57.90160274079717],[-124.74410246098813,57.90142606585962],[-124.7440238854235,57.90125147429029],[-124.74393898236737,57.90107682301626],[-124.74387099270878,57.90090120964046],[-124.74381784426362,57.90072349302829],[-124.74377524320556,57.90054587592431],[-124.74374748299144,57.900366155614485],[-124.7437239043195,57.900187596394204],[-124.74365602958694,57.900008619286204],[-124.74365421974895,57.8999996292936],[-124.74356766118845,57.89981150297401],[-124.7434848728245,57.89963687157406],[-124.74340845062258,57.899461178608824],[-124.74334890358348,57.89928564488083],[-124.74331056240683,57.899106946444704],[-124.7432870240455,57.89892726612023],[-124.74326137663296,57.89874756591781],[-124.74321878043817,57.89856994899995],[-124.74315716388972,57.89839327418088],[-124.74308496423554,57.89821762107448],[-124.74299792568904,57.898044071099115],[-124.74293416435407,57.897868497620365],[-124.74292964897033,57.89768787541633],[-124.74291029426958,57.89750935637307],[-124.74283384161006,57.89733478472383],[-124.74273833205334,57.897162276338754],[-124.74263224002061,57.89699078958764],[-124.7425197465138,57.896821485540286],[-124.74239452412522,57.89665430441623],[-124.74226930284918,57.89648712320339],[-124.74215892161982,57.896317838862494],[-124.74207189173742,57.89614428862355],[-124.7420039197022,57.89596867519281],[-124.74194656882025,57.89579091888823],[-124.74189554577877,57.895613222378536],[-124.7418445232191,57.8954355258821],[-124.74179982838004,57.89525788919021],[-124.74176360773146,57.895079210985195],[-124.74173797021513,57.89489951120593],[-124.74171862260086,57.894720992505206],[-124.74169931266152,57.89454135257995],[-124.74168422096517,57.89436175255015],[-124.74166912941286,57.89418215255184],[-124.74165403800458,57.89400255258534],[-124.74164105573942,57.893822972583415],[-124.74163654704677,57.893642351092346],[-124.74161934703149,57.8934627312892],[-124.74153646918738,57.89329146358587],[-124.74139431623425,57.89312636516044],[-124.741353806662,57.892949889869605],[-124.74134082619244,57.89277031003408],[-124.74134475478603,57.892589768480285],[-124.74135922794063,57.89240932664726],[-124.74140740601334,57.8922303250879],[-124.74148932602391,57.892051642513216],[-124.74145288495826,57.89187969232486],[-124.74134614761859,57.89179119801359],[-124.74122165100763,57.89153990289449],[-124.74107099559014,57.891376967166025],[-124.74090960965619,57.89121953782505],[-124.74073971466343,57.89106427102612],[-124.74056131068791,57.89091116673588],[-124.74037228897588,57.89076020496585],[-124.74017890101238,57.89061368803734],[-124.7399769666977,57.89047045476156],[-124.73975364553608,57.89033599156778],[-124.73950242345126,57.89021584468907],[-124.73924905662129,57.89009679862927],[-124.73901075340545,57.88996892193657],[-124.73878743867107,57.88983445719185],[-124.73857481968322,57.889695607006495],[-124.73838151935661,57.88954684513289],[-124.73819462198735,57.88939590046872],[-124.73798407880805,57.889258190637754],[-124.7377242090002,57.88914468805779],[-124.73744061816824,57.88904666245031],[-124.73715925040017,57.88894529251232],[-124.73689509254818,57.8888339908363],[-124.73663526658909,57.88871936493415],[-124.73637547985653,57.888603617292354],[-124.7361091803704,57.888493415325996],[-124.73583640573013,57.88838763774847],[-124.73556141093344,57.888285203331115],[-124.73528220027399,57.88818272828969],[-124.7350050998086,57.88808027271146],[-124.73473443993251,57.887974512959204],[-124.73448324962894,57.887854356903375],[-124.7342428304396,57.88772757317177],[-124.73400241286978,57.887600789022564],[-124.73375548239689,57.887479550503336],[-124.73348916080442,57.88737046466847],[-124.73320126390077,57.88727575381836],[-124.73290900021748,57.88718548718685],[-124.73262543668532,57.887087451521424],[-124.73234835151378,57.88698499052944],[-124.73207559837229,57.88687920541152],[-124.73181576280386,57.88676569157821],[-124.73159034639865,57.886632316361585],[-124.73137140850486,57.88649451609899],[-124.73112020101345,57.886375475123906],[-124.73087121709737,57.88625309006713],[-124.73058450756385,57.88612361517365],[-124.73033546085487,57.885940662000046],[-124.73040626259454,57.88584263632559],[-124.73061819390995,57.885687633241965],[-124.73082180278375,57.885529185706496],[-124.73096855550969,57.88536795266755],[-124.73110905704125,57.885204416713734],[-124.73124119893265,57.88503855776849],[-124.73137958955803,57.88487500148714],[-124.73154094559204,57.8847183935531],[-124.73172323391918,57.88456647130921],[-124.73191173285713,57.88441797282025],[-124.73210026807502,57.884268352847215],[-124.73228462265475,57.88411757122871],[-124.73246686731562,57.883966769300244],[-124.7326407900331,57.88381252312632],[-124.7328021740122,57.88365479259576],[-124.73295726913166,57.88349588044531],[-124.73310611319268,57.8833346654584],[-124.73324870624828,57.883171147657144],[-124.73338497289862,57.88300756954043],[-124.73352775211977,57.8828384453023],[-124.73361371722861,57.882665415621375],[-124.73359430126278,57.88249026171217],[-124.73354751464764,57.88231372580493],[-124.73348597009021,57.8821370494813],[-124.73341599278953,57.881960292909824],[-124.7333439455532,57.88178239503225],[-124.73327611561818,57.881604537278626],[-124.73322300669481,57.881427941222825],[-124.73321428556079,57.88124840286403],[-124.7332815380553,57.881067344428686],[-124.73324518283735,57.88089427270806],[-124.73315182945076,57.88072290168067],[-124.73304368142094,57.880552511372976],[-124.73292280944318,57.88038424305483],[-124.73279135964243,57.88021699552785],[-124.73264929440244,57.88005188999541],[-124.73250079251537,57.879890087812264],[-124.73234589178027,57.87973046772045],[-124.73218459225163,57.87957302969654],[-124.7320127153723,57.87941661231179],[-124.73183443984665,57.87926237693469],[-124.73164758200181,57.879112545915305],[-124.73145214187474,57.878967119215446],[-124.73124811949624,57.878826096795244],[-124.73101623922904,57.87869826757225],[-124.73075872265686,57.878580287801505],[-124.73049473206389,57.878466732150635],[-124.73023288900661,57.87835207487013],[-124.7299839610319,57.8782296891657],[-124.72973932656285,57.87810510078911],[-124.72948603426002,57.877987158870276],[-124.7292133164945,57.877882490100816],[-124.7289341623998,57.877781124077046],[-124.7286485340912,57.87768418198872],[-124.72835643151805,57.877591663792806],[-124.72805984906104,57.87750695328608],[-124.72775882445544,57.87742892920576],[-124.72744688176569,57.87736201597047],[-124.72712838853894,57.87730176890431],[-124.72680545270035,57.87724820812657],[-124.72648033386619,57.87719686885579],[-124.72615502623377,57.87715113494367],[-124.72582083181177,57.87711877426477],[-124.72548878397406,57.87708531170647],[-124.72516784647544,57.877035130844796],[-124.72486250161819,57.87696042355338],[-124.72457033799523,57.87687013957609],[-124.72427825175838,57.87677761250772],[-124.72398612895593,57.87668620603604],[-124.7236983376497,57.87659147567936],[-124.72340173553275,57.87650787610893],[-124.7230592312018,57.876472063945975],[-124.72280731810292,57.87637655430729],[-124.72263111085077,57.8761628820057],[-124.72258512197185,57.87602672782757],[-124.72249386106334,57.87585761287493],[-124.72225314027528,57.87574314256131],[-124.7219762048694,57.875639539953056],[-124.7216821027254,57.8755447446065],[-124.72138585602563,57.8754510495926],[-124.72109593466193,57.87535741470231],[-124.72080375441394,57.87526824383223],[-124.72050509930604,57.87518349643161],[-124.72019981682776,57.87510765735955],[-124.7198901291022,57.87503738316815],[-124.71957611227803,57.874970431373995],[-124.71926205843062,57.87490460006902],[-124.71895022805256,57.87483542464355],[-124.71864709760516,57.87475848110376],[-124.7183527817231,57.87467040583605],[-124.71807145824697,57.87457236073856],[-124.71779021260254,57.874472072607226],[-124.71750245380676,57.87437732906924],[-124.71720369859332,57.87429593801069],[-124.71689628386247,57.87422119233477],[-124.71658879391445,57.87414868840206],[-124.71628138160634,57.8740739413171],[-124.71598266967598,57.87399142631942],[-124.71568836602138,57.87390334522906],[-124.71539839423433,57.87381194052304],[-124.71510842385501,57.87372053519376],[-124.71481630875861,57.87363023010665],[-124.71452197237554,57.87354326769234],[-124.71422549121966,57.87345740549045],[-124.71392682698247,57.8733737647084],[-124.71362816407202,57.87329012326344],[-124.71332946417344,57.873207602377185],[-124.71303080390771,57.87312395960588],[-124.71272996048393,57.87304253822399],[-124.712431302859,57.87295889412145],[-124.71214567691958,57.87286415954385],[-124.71186442145763,57.872764980287144],[-124.71158535200787,57.87266357841338],[-124.71129976881126,57.87256772082838],[-124.71100763340817,57.87247852870886],[-124.7107111686486,57.87239265877192],[-124.71041688981984,57.87230456616922],[-124.71012042777689,57.87221869493151],[-124.70982185931871,57.872132802604575],[-124.70952976921691,57.87204248606127],[-124.70925707311176,57.87194001948424],[-124.70901247120163,57.871817636261284],[-124.70878944813481,57.871680881290025],[-124.70855994966595,57.871548549469146],[-124.70829603685526,57.87143607183473],[-124.7079934941494,57.87134340724438],[-124.70760711492508,57.87117478107386],[-124.70739377246126,57.87094053933745],[-124.70730504621594,57.870761344376426],[-124.70723314375425,57.87058343442657],[-124.70718676497195,57.87039904290969],[-124.70724956146758,57.87022804965054],[-124.70741298575514,57.87007373623898],[-124.70761204621259,57.86992537675151],[-124.70780692830876,57.86977585483594],[-124.70798717088604,57.869622825752295],[-124.70817158876864,57.86947095858958],[-124.70834972079594,57.86931790860011],[-124.7085132135344,57.869161351549955],[-124.7086558212462,57.868998983699186],[-124.70878616669167,57.86882528085201],[-124.70888926626886,57.86864682718491],[-124.70892894581125,57.868473366045755],[-124.70885224829478,57.868312234710245],[-124.70864649142149,57.868164431456485],[-124.7084366364566,57.868013223347184],[-124.70834335097314,57.86784407962746],[-124.70831160736589,57.8676631958799],[-124.70821418521997,57.8674917687821],[-124.70810197301707,57.86732131961241],[-124.70798761587457,57.86715197112562],[-124.70788172814336,57.866981583225545],[-124.70779703147342,57.866808036318005],[-124.70773774050973,57.86663137138398],[-124.70767423520552,57.86645466551494],[-124.70757041981199,57.86628541917125],[-124.70739655988919,57.86613007288338],[-124.7072247703326,57.8659758680823],[-124.7070487673575,57.865821622123434],[-124.7068748347285,57.8656685176503],[-124.70670308791752,57.865513191037444],[-124.70653770319137,57.86535680448197],[-124.70637017394724,57.86520151846551],[-124.70619413957144,57.86504839270872],[-124.70600534689233,57.86489850739378],[-124.70585062010687,57.86473885893594],[-124.70571080016134,57.86457486899622],[-124.70557948783816,57.864408718532445],[-124.70546304355712,57.86423934787759],[-124.70537196517262,57.86406798081566],[-124.70534234632093,57.86388711756592],[-124.70534663716136,57.86370097641884],[-124.70532326348192,57.863522417170756],[-124.70521080636084,57.86335981471271],[-124.70504739034567,57.863207931990466],[-124.7048543198274,57.8630602467161],[-124.70464420002004,57.86291800307626],[-124.70442561426724,57.86277679824592],[-124.7042091373861,57.86263561360206],[-124.70400327541505,57.86249228885519],[-124.70378040292591,57.862353284382664],[-124.7035553862782,57.8622153802275],[-124.70338136870205,57.86206563537124],[-124.70328390626678,57.86189644805809],[-124.70323533452125,57.86171539988155],[-124.70319733770053,57.86153333322158],[-124.70313171652396,57.86135772677052],[-124.70297896917089,57.86120258091396],[-124.70271760022345,57.86108002310923],[-124.70241878928965,57.86100420599602],[-124.70208522217898,57.86095833180263],[-124.70177786901114,57.860885794637355],[-124.70147063299278,57.8608098931549],[-124.70114530393887,57.86076970490816],[-124.70081108298416,57.860742887998356],[-124.70048368677453,57.860701556353746],[-124.70015414546899,57.86066132451947],[-124.69981111066294,57.86064563477848],[-124.69949003774565,57.86060436247687],[-124.69921756792311,57.86049851291933],[-124.69896276978669,57.860369282420876],[-124.69870551766995,57.86025012166325],[-124.69842556898709,57.86017784476262],[-124.69809297280847,57.86022618284373],[-124.69775498485184,57.86024754935596],[-124.6974332328876,57.8602870193077],[-124.69711105361935,57.8603388217084],[-124.69680273093066,57.860416555482175],[-124.69648694861601,57.8604661759006],[-124.69614965623461,57.860467356698294],[-124.69580830491186,57.86046401051635],[-124.6954824125079,57.860501192038264],[-124.69514676077199,57.86051584538124],[-124.69480919593128,57.86052487119426],[-124.69447346599605,57.86054176524268],[-124.69413968737797,57.86056316393565],[-124.6937934990076,57.86057771044206],[-124.69343447322302,57.86059773788171],[-124.69312612817144,57.86055433199491],[-124.69287915639886,57.86044311186083],[-124.69263885763627,57.860321862597104],[-124.69240726125201,57.86019284735712],[-124.69218007527401,57.86005826715952],[-124.69195511480648,57.85992034371056],[-124.69173234094076,57.85978019822317],[-124.69150956873266,57.85964005238277],[-124.6912825061672,57.85950210712922],[-124.69100545780297,57.85928628040511],[-124.69081941229707,57.859241829358474],[-124.69056812494752,57.859133927206365],[-124.69014952950137,57.859170182973166],[-124.68988189643918,57.85910810345042],[-124.68955690651482,57.85905891734687],[-124.68924089177008,57.858994116721874],[-124.68896182914722,57.858897153636036],[-124.68870239461367,57.85878131654434],[-124.6884559160116,57.85865663402539],[-124.68821365303013,57.858531992622446],[-124.68797143070638,57.85840622959687],[-124.68773350208333,57.858278265323946],[-124.68750201319979,57.85814699942028],[-124.68728121705392,57.858011352310434],[-124.6870732205641,57.85787134484596],[-124.68687388793548,57.857724693096856],[-124.68668520883631,57.857574781496126],[-124.6865114361483,57.85742053050529],[-124.68635678359325,57.85726198180042],[-124.6862551962209,57.85709274123199],[-124.6861939928797,57.85691380526109],[-124.68611792454612,57.856738087199666],[-124.68603549716245,57.85656342788256],[-124.6859424579505,57.85639090686344],[-124.68584520586307,57.85621834417802],[-124.68573094335876,57.85605009968791],[-124.68555499651742,57.85589806925774],[-124.68535778707708,57.855751436352655],[-124.68518832016085,57.85559498318039],[-124.6851311814132,57.85542057341908],[-124.68511856013747,57.85523875269499],[-124.68507418045802,57.85506110435759],[-124.68501080096,57.85488438977012],[-124.6849411017201,57.85470761269405],[-124.68485443155338,57.8545340325385],[-124.68469343839236,57.85437654106389],[-124.68454305863821,57.854216911219034],[-124.68444156593435,57.85404542740836],[-124.68433796742255,57.85387392271053],[-124.68418969790358,57.85371431338763],[-124.68401170064305,57.85356113924542],[-124.68385711362167,57.85340146706794],[-124.68371957735866,57.85323635558218],[-124.68358621649472,57.85307240687522],[-124.68337404764503,57.852932352629004],[-124.6832087757959,57.85277706028389],[-124.68309672054889,57.85260659260002],[-124.68296344301928,57.85244040099545],[-124.68292110504161,57.85226501568563],[-124.68300723277453,57.85209202414787],[-124.68311438674283,57.8519203623652],[-124.68321100667276,57.851748596239176],[-124.68325511740275,57.85157182391105],[-124.68323825409674,57.8513910831959],[-124.68328447086289,57.85121433177945],[-124.68335807264079,57.851037851498255],[-124.68342535404048,57.850861308646046],[-124.68349048907668,57.85068586612569],[-124.68365817816304,57.85053050549413],[-124.68386748739708,57.85039013705508],[-124.68410585570624,57.85026239317241],[-124.68431925736321,57.85012542930779],[-124.68449322092977,57.84997125141822],[-124.68472168539482,57.849764898402334],[-124.6847052927829,57.849510139072244],[-124.68445245116193,57.849388751371144],[-124.68419087201254,57.84927624932417],[-124.68392933359041,57.849162625589784],[-124.68368285535755,57.84904017782097],[-124.68345354379403,57.848908926958245],[-124.68323070990958,57.848773253548984],[-124.68300994487613,57.84863872183048],[-124.6827806772985,57.8485063486766],[-124.6825449352391,57.84837839727909],[-124.6823091947807,57.84825044548036],[-124.68206916466622,57.84812469389753],[-124.68182269926763,57.84800224281075],[-124.68156550732367,57.84788529278326],[-124.68126930317491,57.84779935942466],[-124.68094652841779,57.84775017374238],[-124.68068071908834,57.8476387443759],[-124.68043422211278,57.847517411959444],[-124.6801942421996,57.84739053590392],[-124.67995851590365,57.847262580067174],[-124.67972068485608,57.84713460291665],[-124.67947637920628,57.84701104733576],[-124.67921916200679,57.84689521407059],[-124.67894029339799,57.84679598879586],[-124.67864410379886,57.846710049685896],[-124.67834136060779,57.846630774207284],[-124.67802535136525,57.84656931130532],[-124.67771160685997,57.84650338387734],[-124.67741319798301,57.84642078464931],[-124.67712360928871,57.84632705676936],[-124.67691786070327,57.84618593486764],[-124.67672713332259,57.846037111128915],[-124.6765363680666,57.84588940831902],[-124.67632212020132,57.84575044406507],[-124.6760324605792,57.84565895623188],[-124.6757097503982,57.84560863676812],[-124.67542442411583,57.84551382603883],[-124.67515646179291,57.845404607262196],[-124.67489497748454,57.84529096621065],[-124.67462916395924,57.845180646206785],[-124.67434821389062,57.845081390482974],[-124.67402773550327,57.845027724430444],[-124.6736921737979,57.84504344459257],[-124.67335799345592,57.84501992268287],[-124.67302615667235,57.844989693886355],[-124.67269439941154,57.84495722190761],[-124.672364946472,57.84491916424435],[-124.67203775847865,57.84487664209157],[-124.6717083859555,57.84483634045041],[-124.67137873739793,57.84480388623417],[-124.67104217759956,57.84478818570502],[-124.67070518298598,57.84478481726915],[-124.67036814886846,57.844782569155775],[-124.67003135223644,57.844773593128906],[-124.6696969786524,57.8447556679089],[-124.66936741172077,57.8447209663569],[-124.66903804341439,57.84468065810842],[-124.66871535095244,57.84463032172269],[-124.66840163888101,57.844564372462095],[-124.668096749017,57.8444872950962],[-124.66779837718224,57.84440467446447],[-124.6675000859539,57.844319810819464],[-124.66720390225247,57.84423496762368],[-124.66691209090723,57.8441456813067],[-124.66662465199026,57.8440519518987],[-124.66635020865401,57.84394825805412],[-124.66609090685974,57.84383349981084],[-124.66584022974902,57.84371321973468],[-124.66559603149815,57.84358851791397],[-124.66536033884432,57.843461657873654],[-124.66512472721463,57.84333255508494],[-124.6648912233238,57.84320347304322],[-124.66466201273121,57.84307219056445],[-124.66444786440984,57.842932086407664],[-124.6642164714205,57.84280302438796],[-124.66394212331217,57.84269708336032],[-124.66368061208819,57.84258566291736],[-124.66343638852193,57.842462078445536],[-124.66316637656865,57.842352814679494],[-124.66285925009355,57.84228018899122],[-124.66252033174925,57.84227229395716],[-124.66231672625126,57.84213229240666],[-124.66218143154641,57.841967181738084],[-124.66210335949438,57.841792552606655],[-124.66204642812579,57.84161589304542],[-124.66194296570058,57.84144437308133],[-124.6618161389787,57.841278225762125],[-124.6616659083957,57.841118572188414],[-124.66149231399558,57.84096429110784],[-124.6613047010118,57.84073023716357],[-124.66132314700019,57.840626116845755],[-124.66146795597597,57.840463825525866],[-124.66162321386784,57.8403038824089],[-124.66178053657893,57.840145081502214],[-124.66194203004059,57.839987443991745],[-124.66209935008746,57.839828642758725],[-124.66225666880857,57.83966984136515],[-124.66241605232554,57.83951218216584],[-124.66257547429933,57.83935340163251],[-124.6627348949299,57.83919462093357],[-124.66289010243621,57.83903579771104],[-124.66304324252864,57.83887583198843],[-124.66319220934683,57.83871470259945],[-124.66333489706678,57.838552388386425],[-124.66347341161085,57.83838891054019],[-124.66360985886605,57.83822429024186],[-124.66374209325645,57.83805962749994],[-124.66387019433732,57.8378926799932],[-124.66399408264755,57.8377256900683],[-124.66411169217676,57.83755751541073],[-124.66422091719875,57.83738813487981],[-124.66431762570907,57.83721526385165],[-124.66439963260616,57.83704112353251],[-124.66447325539588,57.83686577741204],[-124.66453428266757,57.836689183199034],[-124.66458271459217,57.83651134091159],[-124.6646164058764,57.83633335057779],[-124.66464592510667,57.83615419680004],[-124.66467754977681,57.835975064199005],[-124.66470285701489,57.83579586817216],[-124.66472816401233,57.83561667217291],[-124.66475974811945,57.835438660814106],[-124.6647955830095,57.83525957061321],[-124.66483348351099,57.835081622747246],[-124.66487142337193,57.834902553738715],[-124.6649072572217,57.8347234636048],[-124.66493883973462,57.83454545236417],[-124.66496625040148,57.834366277692766],[-124.66499366080772,57.83418710304824],[-124.665025282175,57.83400797072071],[-124.66509051343563,57.833831419053155],[-124.66522256712531,57.833671240220696],[-124.665218511193,57.83348838503518],[-124.66523753717905,57.8333080047688],[-124.66523967878454,57.833128576561926],[-124.66522072514717,57.832950058130834],[-124.6651786107293,57.83277130716203],[-124.66510690014229,57.83259562368611],[-124.66500130331623,57.832425207684864],[-124.66486178095163,57.8322611802356],[-124.66464332340907,57.832125520274126],[-124.66445716498339,57.83196999640037],[-124.66463907129425,57.83182938586052],[-124.66492672758557,57.8317358211811],[-124.66519177804362,57.831626327080265],[-124.66543839377448,57.8315020671358],[-124.66569108613692,57.831384597113576],[-124.66598282830076,57.83129443593996],[-124.66629280408257,57.83122464514171],[-124.66659673999405,57.831146942144564],[-124.66688843849924,57.83105790016528],[-124.66715149198765,57.83094501763687],[-124.66738776782194,57.830815042805156],[-124.66771144473091,57.83077454664242],[-124.66800301886234,57.830688865730615],[-124.66827429006396,57.83058167121329],[-124.66853316485292,57.83046762265834],[-124.66883299800541,57.83038650894944],[-124.66911038295379,57.830284981811715],[-124.6693009624308,57.8301366013358],[-124.66946238156966,57.82997895628842],[-124.66959877223253,57.82981433124457],[-124.66972050324934,57.8296473162757],[-124.66991937986353,57.82950238276854],[-124.67008083325727,57.82934361591228],[-124.6702918643536,57.829212262188456],[-124.67059998648111,57.829134592320095],[-124.67089165995972,57.82904554173784],[-124.67119151625029,57.828963301667216],[-124.67149745013326,57.82888785100857],[-124.67180338279165,57.828812399651596],[-124.67210724840072,57.82873580540445],[-124.67241516546186,57.82866373716064],[-124.67272912094462,57.82859957939116],[-124.67304716757566,57.8285388263974],[-124.673363147333,57.828476930474395],[-124.67367515213826,57.8284082648337],[-124.67398906390991,57.82834522526408],[-124.67431497553694,57.82830024949122],[-124.67464871627271,57.828272174280166],[-124.67498381302407,57.828265421246044],[-124.67532073915386,57.82826653646516],[-124.67565754713493,57.82827101430878],[-124.67599646049274,57.82827551227033],[-124.67633724301253,57.828286757292176],[-124.67667210343454,57.82828672696052],[-124.67698955082312,57.82824278195042],[-124.67727126597639,57.82813679527659],[-124.67753438599158,57.8280205290582],[-124.67773934317333,57.82788125272965],[-124.67788192725752,57.82771892468669],[-124.67799741699804,57.82754847619037],[-124.67810658995083,57.82737796480975],[-124.6781866030854,57.82719819098811],[-124.67832481496703,57.827040305344234],[-124.67858149050882,57.826927337855075],[-124.67886938913111,57.826824774201924],[-124.67909507269195,57.826694674475824],[-124.67926064654242,57.82653705992403],[-124.67942621900852,57.82637944519103],[-124.67961463295721,57.82623102959877],[-124.6798031239505,57.826080371444995],[-124.67995816630524,57.82592265156704],[-124.68007149674303,57.825753301826936],[-124.68019316825412,57.82558627795385],[-124.68036079853985,57.82542980427014],[-124.68053883536857,57.82527679836902],[-124.68071683151639,57.825124913410455],[-124.68091147100137,57.8249788011713],[-124.68111651684359,57.824836156591154],[-124.68132366623402,57.824693532601955],[-124.68153077484617,57.82455202946756],[-124.68173994778324,57.82441166806774],[-124.6819491191629,57.824271306358646],[-124.68216039405391,57.82413096521374],[-124.6823716673721,57.82399062375277],[-124.68258289993847,57.82385140313249],[-124.68279623599064,57.823712203059394],[-124.68300746542951,57.823572981803395],[-124.68322079833885,57.82343378108795],[-124.68343412967305,57.82329458004964],[-124.68364745943198,57.82315537868838],[-124.68385868260832,57.823016156157685],[-124.68406990422481,57.82287693331081],[-124.68428116340883,57.822736588991944],[-124.68449242102012,57.82259624435716],[-124.68470363794427,57.82245702056202],[-124.6849148924167,57.82231667529513],[-124.6851219744957,57.82217516690381],[-124.68532698916248,57.82203251623139],[-124.68552783147643,57.82188870246769],[-124.68572247469616,57.82174146250483],[-124.68590253820322,57.821589591960084],[-124.68606591718708,57.82143307008311],[-124.68622305821583,57.8212742432932],[-124.68639060524559,57.82111888383962],[-124.68660176782895,57.82098077838946],[-124.6869316933995,57.82093917708807],[-124.68726719121865,57.82091893928527],[-124.68759298378762,57.820875052450425],[-124.68790688760579,57.82080973818508],[-124.6882086291404,57.820730844660446],[-124.68849610326455,57.82063835118964],[-124.68879990807717,57.82056059826398],[-124.68902150506923,57.820424835197144],[-124.68917862944694,57.820266005074004],[-124.68934409394514,57.82010950013808],[-124.68954908140807,57.819966843249695],[-124.6897644356374,57.81982877444757],[-124.69001288118636,57.81970785461628],[-124.69020122012951,57.8195594250163],[-124.69043726728036,57.81943165302423],[-124.69070219609428,57.81932098827424],[-124.69101405463549,57.81925340372656],[-124.69133401993804,57.81919487059566],[-124.69163979534876,57.81912049548084],[-124.6919536386558,57.81905629292673],[-124.69227149603954,57.81899773683212],[-124.69254464116048,57.81889275707971],[-124.69277034667651,57.81875927171546],[-124.69297527497285,57.81861773088992],[-124.69309273451103,57.81844841269981],[-124.69318922322852,57.81827664514192],[-124.69325846603377,57.81810124501763],[-124.6933004632869,57.81792221237097],[-124.69331720352142,57.81774293138524],[-124.69331921063866,57.81756350555385],[-124.69332121773684,57.81738407975469],[-124.69333795763379,57.81720479886326],[-124.69337991466028,57.81702688750479],[-124.69344708846391,57.81685034565464],[-124.69353519168838,57.81667737419097],[-124.6936275034033,57.81650444408239],[-124.6936845475489,57.816377150097516],[-124.69362921569181,57.81615117795273],[-124.69344921391844,57.815999122717564],[-124.69324360856336,57.81585690924647],[-124.6930444351525,57.81571139412924],[-124.69284732901001,57.815567020589135],[-124.69269500377891,57.815406264371404],[-124.69256812915472,57.815240150760516],[-124.69239452747334,57.81508591406191],[-124.69220385742324,57.814938238343366],[-124.6919597194482,57.81481470971121],[-124.69166811605461,57.8147243592218],[-124.69141532961042,57.814607473617635],[-124.69128211080071,57.814442417880294],[-124.69114885424268,57.81427848318497],[-124.6908896810012,57.81416377673644],[-124.69069687806935,57.81401719940519],[-124.6905976089964,57.81384462685111],[-124.69041759151938,57.813693689009035],[-124.69018398987028,57.81357026098112],[-124.6901439611415,57.81338929987064],[-124.6901059593717,57.81321060182216],[-124.6900024083235,57.81304022976115],[-124.68991581061556,57.81286666021445],[-124.68986724933097,57.81268897958464],[-124.68981658407952,57.81251127821674],[-124.68976171047653,57.81233353535541],[-124.68968988528785,57.812158989908305],[-124.68957153032267,57.81199071470281],[-124.6894341200531,57.81182561603397],[-124.68931362393248,57.81165844104172],[-124.68924394543804,57.81148279508702],[-124.6892459715997,57.811303370444115],[-124.6892900457102,57.81112548219124],[-124.68935512380989,57.810948922694216],[-124.68942647531982,57.81077354661519],[-124.68949993048375,57.81059819128562],[-124.6895922458212,57.810425265034496],[-124.68969921249371,57.81025472631375],[-124.68982079137328,57.810087696229786],[-124.68996119086003,57.809924216240404],[-124.69009114565654,57.8097583901058],[-124.6902001735058,57.80958899298596],[-124.69030923931008,57.809418474662706],[-124.69041409564288,57.80924791479412],[-124.69051267725565,57.80907617150691],[-124.69060077577775,57.80890320333676],[-124.69067422183984,57.80872784768642],[-124.69072459881671,57.80855002163139],[-124.69075186810456,57.808370846340914],[-124.69075809529392,57.80819146370833],[-124.69073907233708,57.80801183226179],[-124.69068626617529,57.80783523246141],[-124.69061238004319,57.8076595464203],[-124.6905405987437,57.807483881109384],[-124.69048993731151,57.807306180924364],[-124.69048354082443,57.80712667404741],[-124.69048135262695,57.806947208685244],[-124.6904791644503,57.80676774335525],[-124.69047697629446,57.80658827805738],[-124.69047268407512,57.80640879205026],[-124.69046207967368,57.806229243850346],[-124.69044516318033,57.806049633456034],[-124.690400855215,57.80587087457884],[-124.69031427213248,57.80569730653748],[-124.6902128837366,57.805525835527675],[-124.69012415935008,57.805353367814675],[-124.69006083971172,57.80517666449961],[-124.69000172867753,57.80500000268358],[-124.68991725342612,57.804826455283504],[-124.68979892045265,57.80465818151516],[-124.68973770748111,57.80448149892098],[-124.6896849498968,57.80430377820924],[-124.68964906341053,57.80412510240879],[-124.68964508626786,57.80387608561584],[-124.68966994256243,57.80376642181843],[-124.68957058831123,57.80359721367522],[-124.68925947974398,57.80352573141973],[-124.68893037193084,57.803487716380786],[-124.68859896596764,57.80345528543387],[-124.68827437917636,57.80340834123168],[-124.68797414515839,57.803326869643904],[-124.68769343268033,57.803228767431314],[-124.68742144937109,57.80312177871698],[-124.68715803926297,57.803010388095274],[-124.6868967736261,57.80289789662752],[-124.68663336663053,57.80278650499042],[-124.68636138951634,57.802679514153],[-124.68608501094482,57.802578086816915],[-124.68580434801243,57.80247885955235],[-124.68552368655654,57.802379631704746],[-124.68524084457063,57.80228262471592],[-124.6849580431253,57.80218449600131],[-124.68467738608544,57.802085266394805],[-124.68440319843377,57.80198161418791],[-124.68413333727541,57.801874639712445],[-124.68386129558951,57.80176988611845],[-124.68358068364527,57.801669533104004],[-124.68328701984692,57.80158138682542],[-124.68297134075432,57.80152105959459],[-124.68264237422925,57.80147966565971],[-124.68232221527137,57.801427143081185],[-124.68202423118979,57.80134231568489],[-124.68174136679927,57.80124642247674],[-124.68146937547395,57.80114054291934],[-124.68121464706705,57.80102249748571],[-124.6810305076751,57.800932069016724],[-124.68092026284432,57.80071452094176],[-124.68088862878582,57.800535885201775],[-124.6808548912854,57.8003572285923],[-124.68082750450571,57.800177513559234],[-124.68078098845511,57.80000321614654],[-124.6806222056094,57.799789671951004],[-124.68054421391466,57.79961281880071],[-124.68048317011876,57.79943276944802],[-124.68048928779402,57.79925787341326],[-124.68061083279736,57.79909197472137],[-124.68076178878778,57.79892748960913],[-124.68082053559537,57.798751994887695],[-124.68082474397913,57.79857147242358],[-124.6808289523226,57.79839094999183],[-124.68081414961982,57.7982124817994],[-124.68074032830272,57.79803679195806],[-124.6806771041016,57.79785896433556],[-124.68055236656639,57.79769510531943],[-124.68032361326436,57.797557129085284],[-124.68015843963789,57.79740632611768],[-124.68010145148558,57.79723080329862],[-124.68008470602402,57.797047829822795],[-124.68007415368734,57.79686828247281],[-124.68008046896861,57.7966877812771],[-124.68008253791166,57.79650835942703],[-124.68004245805402,57.79633076173559],[-124.67996864401188,57.796155071794765],[-124.67994967849036,57.79597544096362],[-124.6799517480163,57.795796019242815],[-124.67991591571345,57.79561734233085],[-124.67986532025257,57.79543964020077],[-124.67980837566601,57.79526299647614],[-124.67975147084587,57.79508523163466],[-124.67968821701591,57.794908525187374],[-124.67964183043217,57.79473086492156],[-124.67966517093699,57.79454492581691],[-124.67956989645853,57.79438135918967],[-124.67938350953861,57.794235952206506],[-124.67917382975448,57.794094799351186],[-124.67895565949388,57.79395580473434],[-124.6787375301027,57.793815688656565],[-124.67853217960987,57.793671213336765],[-124.67835440999954,57.79352028312647],[-124.67819798953703,57.79336059309042],[-124.67806069687505,57.793195485732994],[-124.677929754694,57.793029319960006],[-124.67784738651082,57.792858030139406],[-124.67777358948226,57.792682339585774],[-124.67767864224362,57.79250980294495],[-124.67757944999315,57.79233834549484],[-124.67748660779073,57.792165829721135],[-124.67743178255296,57.791989206499814],[-124.67736854477556,57.79181249949215],[-124.67731165665258,57.79163473421553],[-124.67724417424098,57.791459106430224],[-124.67714708996036,57.791287669787025],[-124.67707119603932,57.79111195816508],[-124.6770079221101,57.79093637225775],[-124.6769362359523,57.79076070252896],[-124.67683284528327,57.79058920290814],[-124.67684961231173,57.790411050013994],[-124.67691260971748,57.790234479304985],[-124.67706338916344,57.79007448431389],[-124.67722670766909,57.789916857117205],[-124.67737335681373,57.789754577689074],[-124.67747611383315,57.789584010428975],[-124.67753700379762,57.78940741862188],[-124.67757904370072,57.789228396078414],[-124.67761894080525,57.78905047372478],[-124.67766514683213,57.788872614222825],[-124.67772186787167,57.78869485945192],[-124.67778906449105,57.788518330514286],[-124.67787927640681,57.78834539526815],[-124.67799484205884,57.7881693479122],[-124.67817021691965,57.78802754109613],[-124.6785101433718,57.7879927934391],[-124.59999871000687,57.74981840667995],[-124.59379971094002,57.74679883702753],[-124.59417371867971,57.74663121426211],[-124.59445266471084,57.74653323678239],[-124.59475199061615,57.746452296945094],[-124.59505946780892,57.746378171707015],[-124.59536690210844,57.74630516680552],[-124.59567429354227,57.746233282240446],[-124.59598370114506,57.74616366129255],[-124.59629718397423,57.7460974472227],[-124.59661054075609,57.74603459554815],[-124.59692801454577,57.74597402966851],[-124.59724742145791,57.745917969425264],[-124.59757271319323,57.74587318549096],[-124.59788614921561,57.7458080887289],[-124.59819554925983,57.74573846265085],[-124.59850498975648,57.74566771481184],[-124.59881447067775,57.745595845211575],[-124.5991218497799,57.74552395270769],[-124.59942931084262,57.745449817407966],[-124.59973471162094,57.74537453817984],[-124.59999352339595,57.7453088598518],[-124.6003372731758,57.745219404783455],[-124.60056895834188,57.7450917575673],[-124.6008090443882,57.744964198603384],[-124.6011163730411,57.744893422565966],[-124.60141567167668,57.744812467822534],[-124.6017310683885,57.74475074732557],[-124.60206712295708,57.74475541123477],[-124.60240207243685,57.744733147093754],[-124.60265017916721,57.744615762779425],[-124.60284264654753,57.74446863342235],[-124.60303099418888,57.744319217469204],[-124.60325657027468,57.74418589407641],[-124.60351916748756,57.74407426826764],[-124.60395890195632,57.744002636938],[-124.60411168708244,57.743905554811256],[-124.60441702463197,57.743831385960306],[-124.60473047332708,57.74376515211233],[-124.60502897944433,57.743648293803005],[-124.60537898344214,57.74367328276083],[-124.60571194496524,57.74364762506557],[-124.6060465929077,57.74363319905487],[-124.60638280349549,57.7436333678486],[-124.60671633468776,57.743649208346085],[-124.60704722823338,57.74367959952382],[-124.60737564981835,57.743720057223776],[-124.607699581784,57.74376831732446],[-124.60801918954789,57.74381989567984],[-124.6083408161415,57.74387373739898],[-124.60866244365182,57.743927578341136],[-124.60898423719904,57.74397693432406],[-124.60930825596279,57.74402294841727],[-124.60963441734351,57.744067862695445],[-124.60996066200218,57.744110534081685],[-124.61028690739782,57.74415320466733],[-124.61061311229841,57.74419699549864],[-124.6109393179552,57.744240785529556],[-124.6112633825756,57.74428567381218],[-124.61158950734547,57.74433170434131],[-124.61189355600843,57.74440666144566],[-124.61221754081612,57.74445378949845],[-124.61255120522063,57.74446625219582],[-124.61288738208464,57.744467525549894],[-124.6132236412809,57.7444665559572],[-124.61355977702543,57.74446894865461],[-124.61389587167767,57.74447246154789],[-124.61423204864218,57.74447373149415],[-124.6145682256293,57.74447500058836],[-124.61490242536135,57.74447288374986],[-124.61523909550334,57.74446069856887],[-124.61557201618132,57.744436137151716],[-124.61590106384959,57.74440256267199],[-124.61622821567332,57.744363360220106],[-124.61655557209696,57.74431855172138],[-124.61687679018144,57.7442691925065],[-124.6171961120302,57.74421420537379],[-124.61751357853598,57.744152469289354],[-124.61782688387636,57.744089567619184],[-124.61814228874293,57.74402668709843],[-124.61845962913026,57.743968311906286],[-124.61878294231306,57.74391896997294],[-124.61910815031499,57.74387525436725],[-124.61943541715388,57.743832680879926],[-124.61975860502122,57.743786699720864],[-124.62007594089528,57.74372832067547],[-124.62038330527335,57.74365525799022],[-124.6206907093949,57.74358107354909],[-124.62100408655277,57.74351592231221],[-124.62132137731456,57.74345866135142],[-124.62164468239835,57.74340931246743],[-124.62196790484931,57.74336220489572],[-124.6222912491477,57.74331173339157],[-124.62261455170733,57.7432623821507],[-124.62293970875855,57.74321977822816],[-124.62326305053976,57.74316930436215],[-124.62358824690442,57.74312557780464],[-124.62391344251635,57.74308185045165],[-124.62424267510646,57.74304265007844],[-124.6245756590659,57.743015823999606],[-124.62487279203238,57.742934794698286],[-124.62516798641057,57.74284925876618],[-124.62547125514976,57.742772777657365],[-124.62578066103973,57.74270084535247],[-124.62598675344988,57.742580740229606],[-124.6262952792402,57.742475153500806],[-124.62645440279046,57.742317552648956],[-124.62656772222496,57.74214826259983],[-124.62666015829899,57.7419753918297],[-124.62673377097238,57.74180008318218],[-124.62680738296268,57.74162477452372],[-124.62689351536537,57.7414518384337],[-124.6269901490886,57.74127901104481],[-124.6270930016853,57.74110849094238],[-124.62718753321509,57.74093564172356],[-124.62726114141587,57.740760332960896],[-124.62732634739997,57.74058493722688],[-124.6274125157864,57.74041087992768],[-124.62752372484542,57.740241567637455],[-124.62764955394947,57.74007464952188],[-124.62778576151861,57.739911203119625],[-124.62805021961435,57.73957189154599],[-124.62811319744436,57.739399837038775],[-124.62848440881152,57.73947657206736],[-124.6287777931809,57.7393820382955],[-124.62861717384104,57.73917627035783],[-124.62853736898016,57.73900161765396],[-124.628472348254,57.738824874894526],[-124.6284767593455,57.738645485837154],[-124.62846020842849,57.73846475854549],[-124.62829138100606,57.73831161436163],[-124.62806507478567,57.73817918318813],[-124.62787290330526,57.738032525769356],[-124.62774661417737,57.737865241997056],[-124.62772578521508,57.737686713372966],[-124.62767127161098,57.73751007911519],[-124.62762099964215,57.73733236729224],[-124.62755174496677,57.737156701941444],[-124.62748463184202,57.736979937278356],[-124.6274069370276,57.73680530600498],[-124.62724030291355,57.736649940382684],[-124.62702895584783,57.73651093358604],[-124.62684321954389,57.73636097701885],[-124.62669149441557,57.73620015779422],[-124.62661376412134,57.73602664723084],[-124.62660768311089,57.735847149966624],[-124.62659740193882,57.735667609230276],[-124.6265639790187,57.73548895029497],[-124.62652215605551,57.73531020437129],[-124.62644871003415,57.73513449528403],[-124.62627994639885,57.73498022799443],[-124.62608141639915,57.73483574524772],[-124.6258999329663,57.734684710082234],[-124.62572487344197,57.73453037686565],[-124.6255709788307,57.734371776960174],[-124.62542350794082,57.73420987909128],[-124.62523140768386,57.734062097371044],[-124.62500723764701,57.73392968329995],[-124.62476170192616,57.733807140416566],[-124.62450114134174,57.73369341291352],[-124.62422979664902,57.73358742323903],[-124.62393894122394,57.7334980524598],[-124.62364158305866,57.733414220848374],[-124.62336806112123,57.73331044971777],[-124.6231375613155,57.73317908821295],[-124.62293481201509,57.7330356784337],[-124.62274482741178,57.73288791508945],[-124.62256122585825,57.73273797486581],[-124.62236914427604,57.73259018921063],[-124.62216211944154,57.73244897676921],[-124.62192306586454,57.73232201012342],[-124.62166676478213,57.73220719982986],[-124.62140836534897,57.73209236721996],[-124.62116499404154,57.731968718692976],[-124.62094731399796,57.73183187939637],[-124.62076590642549,57.73167971660998],[-124.62060570368409,57.7315221668855],[-124.62043702095721,57.73136677166637],[-124.62021078384646,57.73123432798489],[-124.61992650124742,57.73113828795701],[-124.61966811441037,57.73102345207503],[-124.61942903727301,57.730897602143536],[-124.6191985249119,57.73076735513405],[-124.61897871811347,57.730631611930846],[-124.61877809807781,57.73048821802313],[-124.6185839019336,57.73034152636611],[-124.61835767745407,57.730209079654685],[-124.61814215849688,57.73007113683554],[-124.61796072967118,57.72992009150455],[-124.6177878244132,57.72976577041325],[-124.61757235107342,57.72962670569457],[-124.61746717423236,57.729458511410755],[-124.61751354943192,57.729281804330085],[-124.61761019493007,57.729108985819785],[-124.61772141464462,57.728939683608395],[-124.61784099124755,57.72877158992395],[-124.61797720049822,57.72860815539011],[-124.61814049975833,57.72845061041197],[-124.61833076580832,57.72830231798098],[-124.61854375811518,57.72816435525039],[-124.61876506564434,57.72802872176069],[-124.61896566161734,57.72788502198037],[-124.61914138777396,57.7277320912368],[-124.61930673709625,57.72757568785645],[-124.61946376836339,57.72741695477479],[-124.61958749072855,57.72725002452255],[-124.61965694921527,57.727073557555094],[-124.61968865486647,57.72689557606173],[-124.6196973464134,57.72671511206602],[-124.61969129974614,57.72653561610643],[-124.61967895437137,57.72635605459515],[-124.61967458653456,57.726130596489746],[-124.61961227260697,57.72599649442932],[-124.61971902942659,57.72583387350309],[-124.62002003218302,57.72575850529012],[-124.62034125171068,57.72570465445932],[-124.62063628086742,57.72562025107255],[-124.62090693231106,57.72551316435738],[-124.62117346494485,57.72540379136822],[-124.62146037799548,57.72531145161982],[-124.62176964858757,57.72523952989042],[-124.62208674390466,57.725183389144],[-124.62239395359813,57.7251103231154],[-124.62268102485211,57.7250134966355],[-124.62285869959113,57.72486394629083],[-124.62307573247278,57.72472938344754],[-124.62335452360661,57.72462910522972],[-124.6236476014457,57.72454018931187],[-124.62393857842098,57.72445125096032],[-124.62421942388718,57.72435211377302],[-124.62446951015295,57.72423247070866],[-124.6246742224311,57.72408992741911],[-124.62482285963958,57.723929980370215],[-124.62495906204069,57.72376541840242],[-124.62511189564526,57.723605514634244],[-124.62527098547183,57.723446797059964],[-124.62543834933894,57.72329152948258],[-124.62560991065692,57.723136305251145],[-124.62582087015592,57.72299494667086],[-124.62612377454562,57.72292407068282],[-124.62642894015566,57.72284873164994],[-124.62666044082503,57.722719920616946],[-124.6268568612999,57.72257392408101],[-124.62705949693976,57.72243023456223],[-124.6272827582825,57.722296851408245],[-124.62752260939716,57.722169246927564],[-124.62765657224324,57.7220080238141],[-124.62775525211595,57.721835220861905],[-124.62795779899507,57.72169377212694],[-124.62813136066656,57.72154080865606],[-124.62826544074014,57.72137622194461],[-124.62839951964621,57.721211635123666],[-124.62854191322894,57.7210493771288],[-124.62868850416886,57.72088716244286],[-124.62884546825792,57.720728419278224],[-124.62903561278735,57.72058123362179],[-124.62925683827838,57.720445583616645],[-124.62948423801737,57.72031336145544],[-124.62974453333084,57.72020054359146],[-124.63003340394121,57.72011044950929],[-124.63033458428477,57.72002833214134],[-124.6306315648426,57.71994617072079],[-124.63092862531553,57.7198617665893],[-124.6312276619095,57.71978074655532],[-124.63152871527713,57.719701989578446],[-124.63181358226672,57.719606243184174],[-124.63208819514634,57.71950366170906],[-124.63245090198917,57.71934591640373],[-124.63263543888615,57.71929511234885],[-124.6329080291647,57.71919026549884],[-124.63318061793123,57.71908541809892],[-124.6334552638453,57.718981712817516],[-124.63373196691487,57.718879149641715],[-124.63400858746203,57.71877882795029],[-124.63430155438515,57.71869101001045],[-124.63460666952689,57.7186156524622],[-124.6348995933124,57.71852895424049],[-124.63515990065484,57.7184150049122],[-124.63545282161695,57.7183283054847],[-124.63574170477587,57.718237078101104],[-124.63602449136553,57.718140180161335],[-124.6363031995582,57.718039875355124],[-124.63657577061397,57.717935021090014],[-124.6368030892273,57.717803907721006],[-124.63697042117178,57.71764750540811],[-124.63716879375308,57.717503757948414],[-124.63738585467178,57.71736580956315],[-124.6375801068186,57.71721977631576],[-124.63773701834637,57.717061023186325],[-124.63787104071477,57.716896427472925],[-124.6379946473746,57.71672948174722],[-124.63811619427409,57.71656139333963],[-124.63823769971029,57.716394425872394],[-124.63835298772143,57.71622515157692],[-124.63847449103129,57.71605818394675],[-124.63862933533454,57.71589828735158],[-124.63880908388994,57.715746496464455],[-124.63897841671248,57.715592355532706],[-124.63918302750423,57.71544979103249],[-124.63942477296361,57.71532555048621],[-124.6396891618976,57.71521387775948],[-124.6399820476724,57.715127168591344],[-124.64029115939502,57.71505632539128],[-124.64056979322334,57.71495713293644],[-124.6408156885924,57.71483405399577],[-124.64107591236868,57.714721214480186],[-124.64135660032957,57.714623162948754],[-124.64165759152849,57.71454438336178],[-124.64196867347856,57.714476920872755],[-124.64228572904894,57.71441849035559],[-124.64260879868992,57.714367970742245],[-124.64293957910448,57.71433659371794],[-124.64327367175329,57.71432992136812],[-124.64360946100742,57.714334479897836],[-124.64394755033267,57.71433345393302],[-124.64427029541503,57.71429189846637],[-124.64458342936258,57.71422557235237],[-124.6448985004063,57.714163751060966],[-124.64520157948924,57.71408498492247],[-124.64545770768717,57.71396873090054],[-124.64561243357865,57.71381106851853],[-124.64571516762832,57.71363941749346],[-124.64587824649942,57.71348296166807],[-124.64610344735165,57.71335069044446],[-124.64637591728558,57.71324693752643],[-124.64666275678043,57.71315230228225],[-124.64693118650491,57.71304402128166],[-124.64728339550132,57.71288276616255],[-124.6474331228569,57.71280579408164],[-124.64770974281014,57.71270320234172],[-124.64801474281681,57.71262893539183],[-124.64832971478698,57.71256934808604],[-124.6486488433668,57.712510923862624],[-124.64896785077974,57.71245586194493],[-124.64928483853474,57.712398535823226],[-124.64960194545246,57.712337845875595],[-124.64991699256021,57.71227601276735],[-124.6502260223346,57.71220626761738],[-124.6505209194479,57.71212067781468],[-124.6508016036146,57.712021485504906],[-124.65106791465412,57.711913174876635],[-124.65131989248717,57.71179462499582],[-124.65154510423065,57.71166122371826],[-124.65176619677099,57.711525537323276],[-124.65202434625627,57.71141041327476],[-124.65231103780218,57.71131912904421],[-124.6526100009591,57.71123694042398],[-124.65290896281637,57.71115475113589],[-124.65321196116,57.71107708793275],[-124.65348443512931,57.71097219960595],[-124.65366817836441,57.710823795012246],[-124.65382087815905,57.71066273913467],[-124.65401918994294,57.71051784640628],[-124.65426699168171,57.71039812742515],[-124.65452722457206,57.71028301993942],[-124.65484453499118,57.710097841425856],[-124.65488170369738,57.70999729023251],[-124.65489655935683,57.70981576978044],[-124.65490084171113,57.70963638488919],[-124.65490936124593,57.7094559216121],[-124.65498080062379,57.70927721844995],[-124.65524042556576,57.70917892501567],[-124.6555696493643,57.709130680003206],[-124.65588260119505,57.7090676905914],[-124.65618957478567,57.70899566842089],[-124.65651249984947,57.70894735722725],[-124.65684124213243,57.70891256133094],[-124.65716626429246,57.70886426982014],[-124.65744266978399,57.70876614224529],[-124.65764717402216,57.70862355018428],[-124.65782059538962,57.708469428762385],[-124.65797738563047,57.7083106530173],[-124.65811960371119,57.70814836528364],[-124.65825350577009,57.70798375038096],[-124.65838119047217,57.70781682958325],[-124.65850257833144,57.70764984495205],[-124.65862400488737,57.70748173921525],[-124.65874748915222,57.707314775657395],[-124.65887303110992,57.70714895427184],[-124.65900486757208,57.706983196507366],[-124.65915123355127,57.70682207136969],[-124.65931636569829,57.7066645002538],[-124.6594876330279,57.706511476727925],[-124.65957828167792,57.70638230878133],[-124.65956828912361,57.70619044450922],[-124.65964699863902,57.70622039770389],[-124.65964152063997,57.70601960776341],[-124.65949791690352,57.705688457048794],[-124.65936792369025,57.705447157669965],[-124.65924461798637,57.704958091845704],[-124.65922958912657,57.704553106933375],[-124.65908659083888,57.704205140972064],[-124.65893380159586,57.70395576078556],[-124.6587029379148,57.7037179257202],[-124.65859033975171,57.70345998072102],[-124.65829711839271,57.70326412759171],[-124.65796363420489,57.703079080188104],[-124.65754930331748,57.702924612538226],[-124.65733542881085,57.70274077542379],[-124.65716257826347,57.702524832628086],[-124.65684534300428,57.702119027644585],[-124.65689384973311,57.701876171612525],[-124.6569361009401,57.70163213079368],[-124.656969879085,57.70139024696724],[-124.65699518433608,57.70115052013794],[-124.6570056824574,57.7009140075152],[-124.65700129411012,57.70068295112682],[-124.65697568523916,57.7004584081715],[-124.65692877658664,57.70024262065844],[-124.65685641200082,57.70003442500361],[-124.65684465919605,57.700010756108824],[-124.65675847241064,57.69983718419793],[-124.65662652580347,57.6996519340895],[-124.65646263084646,57.69947981686008],[-124.65624770567605,57.699326245912566],[-124.65597319883892,57.69919561989358],[-124.655651858416,57.69908358212466],[-124.65528594187408,57.69898566951147],[-124.65488811739702,57.698899767476746],[-124.65446689679177,57.69882259793675],[-124.65402663564441,57.69874971925786],[-124.653580002162,57.69867901717097],[-124.65313131220428,57.6986071712426],[-124.65269121587833,57.6985298041018],[-124.65226612734025,57.69844361684016],[-124.65186661696397,57.69834647433934],[-124.65150123696289,57.6982339782238],[-124.65117430349272,57.69810280847762],[-124.65087948256075,57.697954022302405],[-124.65059983005273,57.69779193298841],[-124.65033534606869,57.697616540638],[-124.6500880086434,57.697431229750705],[-124.64985567971236,57.69723710005295],[-124.64963827915899,57.69703639364299],[-124.64944000279195,57.6968291533762],[-124.64925657442089,57.69661757857172],[-124.64909210966573,57.69640395409585],[-124.64894447025766,57.69618937962962],[-124.64881567374557,57.695976118640395],[-124.64870575984764,57.695763050176815],[-124.6486127505066,57.6955467898677],[-124.6485366054012,57.69532845875571],[-124.64847526643794,57.6951069144621],[-124.64842445754114,57.694884356208384],[-124.64838425864637,57.69465854199886],[-124.64835249162255,57.69443169244698],[-124.64832496068017,57.69420376474632],[-124.64830162568465,57.69397587990361],[-124.64828042882597,57.693746895510564],[-124.6482591921627,57.693519032167195],[-124.6482337602162,57.6932911260539],[-124.64820199524311,57.693064276762215],[-124.6481659950991,57.692838505695995],[-124.64811946666119,57.69261374862176],[-124.64806023226204,57.692392226120155],[-124.64798833217745,57.69217281717083],[-124.64790162885039,57.6919566213397],[-124.64779592714555,57.691743595765764],[-124.64767122735734,57.69153374040158],[-124.64752539202966,57.691328154772876],[-124.6473605591921,57.69112573922889],[-124.64717886683633,57.6909253941219],[-124.64698233263499,57.690729382808364],[-124.64677317467334,57.69053436365288],[-124.64655341051844,57.690342600027876],[-124.64632521809916,57.69015187131948],[-124.646090695108,57.68996219892549],[-124.64585197932219,57.689772483259205],[-124.64560899053454,57.689584966294035],[-124.6453681418501,57.68939634937214],[-124.64512939310848,57.689207753503624],[-124.64489274427793,57.68901917869954],[-124.64466243052975,57.68882954690353],[-124.64444268697596,57.688637780088634],[-124.64422931849603,57.68844383536565],[-124.64402240539097,57.688245470774746],[-124.64381976978191,57.68804490686227],[-124.64361927397877,57.687843243163705],[-124.64342305561657,57.68763938017823],[-124.6432247419268,57.687435495454366],[-124.643028527805,57.68723163196361],[-124.64282808074402,57.68702884622917],[-124.64262545798181,57.68682828072218],[-124.64241856212037,57.68662991393111],[-124.64220315818586,57.686434823821784],[-124.64198130338976,57.686244152850925],[-124.641750900387,57.686057879473346],[-124.64151190897053,57.68587712463459],[-124.64125799686404,57.68570294472313],[-124.64099335881218,57.68553538269489],[-124.64071375988975,57.685375516420486],[-124.64041915983115,57.68522446679359],[-124.64011609230039,57.6850755723706],[-124.63980451704313,57.68492995408362],[-124.6394844340766,57.68478761187148],[-124.63915802134179,57.684646325241026],[-124.63882515788889,57.684509457116626],[-124.63848596469437,57.68437364447725],[-124.63814032074467,57.684242250243784],[-124.63774244803447,57.684163023878774],[-124.63717929781292,57.68407088147878],[-124.63685817890948,57.684015991796464],[-124.63616472107603,57.68393035349832],[-124.63568304706685,57.683848015005154],[-124.6349908082889,57.6837287409116],[-124.63450708263183,57.68364525555132],[-124.63381662466263,57.683534964874156],[-124.63313838081208,57.68349320238621],[-124.6325914217517,57.6834180285262],[-124.63213903165857,57.68339653533485],[-124.6316222772513,57.68335643302161],[-124.6310074705331,57.68335904990796],[-124.63037746868476,57.68331777193473],[-124.62976363686782,57.68329347936704],[-124.6291976759751,57.68327977215461],[-124.62843419676707,57.68333242272924],[-124.62775315709995,57.68336798071179],[-124.62715577839758,57.683352817799964],[-124.6263611216341,57.68339728339856],[-124.62570901245516,57.68350265829011],[-124.62462933900865,57.68330753824631],[-124.62373400244752,57.683178245509126],[-124.62192621762202,57.68298674817571],[-124.62109957357534,57.68287273064474],[-124.62021677287954,57.68280297915789],[-124.61958917553139,57.6827538248596],[-124.61898444405415,57.682710513085645],[-124.61840870584467,57.68267759371842],[-124.61799481862879,57.68263626838546],[-124.61760684378199,57.68263221877622],[-124.61734107785851,57.682613744369256],[-124.61697448467157,57.68259870205735],[-124.61661628040751,57.68258374636543],[-124.61638402882133,57.68256674155282],[-124.61312019837705,57.68255054163684],[-124.6127037288506,57.68257982154726],[-124.61228734091017,57.68260685818815],[-124.61187095237473,57.682633893520645],[-124.6114546043843,57.68265980656459],[-124.61103825582366,57.68268571830024],[-124.6106219066928,57.68271162872773],[-124.61020551581473,57.682738658826835],[-124.60978908315234,57.682766808597094],[-124.60937470583399,57.68279610006175],[-124.60896024544601,57.68282763218965],[-124.60854570191458,57.6828614049804],[-124.60813107516579,57.68289741843341],[-124.6077185035489,57.682934573618404],[-124.60731896082606,57.683016721078694],[-124.60690741113622,57.683083041258435],[-124.60662876694364,57.68312945182832],[-124.60644149839447,57.683144302446934],[-124.60575652668443,57.68322904832385],[-124.6053063236849,57.6832624356145],[-124.60485591321014,57.68330142626973],[-124.60446632039609,57.68334105633595],[-124.60395426221686,57.68340182256076],[-124.60367623262401,57.68343141225326],[-124.60319357414433,57.68349136414888],[-124.60278489582424,57.68353639507724],[-124.60242424520128,57.68358753871245],[-124.60197382788733,57.6836265195782],[-124.60148088535392,57.683680749649454],[-124.60112274327736,57.68372070211415],[-124.60070189132882,57.683754383919904],[-124.60033363489161,57.68378413464839],[-124.59999745833035,57.68379740226665],[-124.59989239014294,57.68380189852793],[-124.5991142818093,57.68379479089507],[-124.59793114215425,57.68373404865734],[-124.59693287013424,57.68372347558313],[-124.5961380278955,57.68371505172552],[-124.59499270259117,57.68370963350681],[-124.59386036338917,57.683637058185845],[-124.5937603226292,57.6836191746061],[-124.59097560177018,57.68301652905516],[-124.54133585705551,57.67226170269077],[-124.5402247116972,57.67230328338504],[-124.53917918619591,57.6722749292034],[-124.53827322112285,57.67227165767394],[-124.5372781448383,57.672240481207325],[-124.53636006280283,57.67217089865787],[-124.53553949444199,57.672020524470106],[-124.53450761414508,57.672019198421445],[-124.53324696345938,57.672075886827066],[-124.53226803496258,57.671682631130984],[-124.5315565981625,57.67153119908192],[-124.53071871753767,57.67134135282018],[-124.5299926550123,57.67113480010478],[-124.52917225971733,57.67092719529984],[-124.52843699965861,57.670741838844194],[-124.52774021729134,57.67043018512549],[-124.5273451935682,57.670017592472036],[-124.52661226423285,57.66950367418474],[-124.52625735637484,57.669138624730124],[-124.52595717763259,57.66871474834326],[-124.52541702150165,57.668152506033536],[-124.52490133564099,57.667769962068654],[-124.52409549836631,57.66751426636614],[-124.52335451885543,57.66737031016512],[-124.52265253855921,57.667301920430184],[-124.52207392379829,57.667350411076264],[-124.52179010239999,57.667314720537554],[-124.521549131547,57.66720212974591],[-124.52090809997546,57.66659388517133],[-124.51986397137316,57.665354255269605],[-124.51943657542232,57.66507584811544],[-124.51805258890512,57.664699261742406],[-124.51199508687674,57.66457186532541],[-124.51107682016973,57.664566024484294],[-124.5101586419855,57.66455793541689],[-124.50924042004702,57.66455096090904],[-124.5083946741398,57.66467376075229],[-124.50754532393042,57.66483464311325],[-124.50671881154007,57.66489484940468],[-124.50609438092063,57.66498873150743],[-124.50536178987637,57.6650600822689],[-124.50471943285054,57.665182912652135],[-124.50340087601369,57.665329495929875],[-124.50246075571854,57.66539848411048],[-124.50180147044969,57.66547176615464],[-124.50116189128434,57.66552396094877],[-124.50008966044265,57.6655925577748],[-124.49822982941511,57.664633954230155],[-124.49731245793281,57.66465830665148],[-124.49639499621574,57.6646848945637],[-124.49547954019579,57.66471374179139],[-124.49456189752173,57.66474480069485],[-124.49364403029766,57.6647814578533],[-124.4927101495068,57.6648515692413],[-124.49176056523838,57.66494728806886],[-124.49069560997916,57.664938512881285],[-124.48943830581683,57.66491519830771],[-124.48855099108212,57.66486918293252],[-124.4874813720659,57.6647672496737],[-124.4864452961918,57.664665691296015],[-124.48576136737223,57.66456815395486],[-124.48498257321226,57.664325983764634],[-124.4841203060287,57.664073881476554],[-124.48329769525076,57.663669713039525],[-124.48264781501497,57.663141919337974],[-124.48232341642068,57.66244627609018],[-124.48188255688312,57.662145161923064],[-124.4806772417834,57.6616648151348],[-124.47987004685261,57.661296688076895],[-124.4790464609129,57.66091939622234],[-124.47835342144901,57.660633314745766],[-124.47796003043037,57.660404504800574],[-124.47756339843882,57.660256399452884],[-124.4773147836295,57.66018176761932],[-124.47703227579014,57.66011571673536],[-124.47675482051052,57.65992412308382],[-124.47622530945118,57.65969149826893],[-124.4751683501499,57.65933168050848],[-124.47457560456785,57.659055706020375],[-124.47350786218132,57.65849613581866],[-124.47256306069822,57.658216090827786],[-124.4718136691978,57.658081838874985],[-124.47068985673351,57.658029606443186],[-124.46961399940335,57.65808781932967],[-124.46905467719019,57.65766081300041],[-124.46889268239237,57.657259709249814],[-124.4687302680662,57.6570245723291],[-124.46849501699386,57.65682784237783],[-124.46772413159754,57.65650043209487],[-124.46680090094975,57.65605238059444],[-124.4655478242631,57.655621805322404],[-124.46463369125483,57.655519244651224],[-124.46368576459632,57.655474599691885],[-124.46292702994842,57.65536598121829],[-124.4619434802766,57.65506298070865],[-124.4614224191965,57.65483263697537],[-124.46084569817002,57.65447604347783],[-124.46037047794844,57.65430454317324],[-124.4598016947152,57.65411400922563],[-124.45939557852742,57.65415077445459],[-124.45899352191854,57.65408777834128],[-124.45863957502404,57.653975998438234],[-124.45828608255401,57.65390459439574],[-124.45800798263616,57.65383518943171],[-124.4578525983701,57.653841228602865],[-124.45768378351498,57.65376524655697],[-124.45743953801224,57.65363679912238],[-124.45727109027597,57.653551849374125],[-124.45707298728055,57.65347440363353],[-124.4569059115771,57.65335582647834],[-124.45658446013518,57.65321862704296],[-124.45634118157204,57.65306663878875],[-124.45600812920995,57.6528541667214],[-124.45571775062122,57.65272629918645],[-124.4553570235156,57.65242154515081],[-124.45497848725803,57.652142375100766],[-124.45453850495048,57.65187930774274],[-124.45402233816904,57.651531241510334],[-124.45355602127457,57.65114338443432],[-124.45311775475986,57.65083883949743],[-124.45262965477586,57.650574081787376],[-124.45229627863212,57.65037056802609],[-124.45201615034199,57.64999273343257],[-124.45171280346808,57.64977274811228],[-124.45131626154811,57.64957634270037],[-124.45106770473443,57.6494007329567],[-124.45064120956492,57.64916808910507],[-124.45030868219442,57.648944394555414],[-124.44996852757231,57.64865108123551],[-124.44983559995066,57.648416266685516],[-124.44969505920147,57.64806024858257],[-124.4495289483763,57.64791924491247],[-124.44932468377571,57.64773742244339],[-124.4491901637777,57.64723456751306],[-124.44922105925833,57.64704316559978],[-124.44923204298694,57.64687732313735],[-124.44946811690988,57.64669169043669],[-124.44971243108762,57.64650951821568],[-124.44994640531564,57.64632386017505],[-124.4501783280853,57.64613705632132],[-124.45043711700268,57.64595953821146],[-124.45069171345732,57.645781970554886],[-124.45095250085171,57.645606717807304],[-124.45121333167454,57.64543034368629],[-124.45148650083917,57.645259720655595],[-124.45176786416606,57.645093678712215],[-124.45206142832973,57.6449367503798],[-124.45336104217317,57.64385632053439],[-124.4537039983171,57.64372127340948],[-124.45405105030261,57.64358851615057],[-124.45440228963977,57.64345580695035],[-124.4547535265157,57.643323096834266],[-124.45509647286696,57.64318804616716],[-124.45543326930311,57.64304955858744],[-124.45575562775771,57.64290529455046],[-124.4560594499295,57.64275296349004],[-124.45634259531572,57.64259366197895],[-124.45659896222595,57.64242283328146],[-124.45684517238702,57.64224403572018],[-124.4570937490231,57.64205853684441],[-124.45733840754897,57.64186626335541],[-124.45757696179982,57.64166943262528],[-124.45780522221581,57.64146799584513],[-124.45802318887786,57.64126195307087],[-124.45822662672217,57.641052376410826],[-124.45841334993641,57.640841483292924],[-124.45857712018272,57.640628079673334],[-124.4587178922028,57.640413286524094],[-124.45883143133263,57.64019817599273],[-124.45891559772295,57.639983844630024],[-124.45896624810047,57.63976912279907],[-124.4589811515396,57.63955734878879],[-124.45897305907074,57.639344185495055],[-124.45895039531175,57.63912860964697],[-124.45891311490962,57.63891174212241],[-124.4588612181192,57.63869358290971],[-124.45879679981785,57.63847415639903],[-124.45871986022964,57.638253462572926],[-124.45863035396772,57.63803262229327],[-124.45853037583562,57.637811659945235],[-124.45842206620702,57.63758947903531],[-124.4583032394365,57.637368296893804],[-124.45819745863258,57.636878127492636],[-124.45813700387565,57.63671593923107],[-124.45803743390076,57.636588058756715],[-124.45796851552896,57.63637642960365],[-124.45789036682014,57.63603124471153],[-124.4578327896958,57.63579844097418],[-124.4577761668447,57.63559368368714],[-124.45765311557105,57.635373573407826],[-124.45757323744445,57.63507098207169],[-124.45756496114792,57.63496547285003],[-124.45755155794748,57.634677113777954],[-124.45750828574481,57.634401863354746],[-124.45754952464914,57.63405807117142],[-124.45749231258347,57.63386788551171],[-124.45767823357728,57.63362446495647],[-124.45761305490133,57.633424093828694],[-124.45767390663775,57.63316463640465],[-124.45734236696224,57.63271332711124],[-124.45724629593519,57.63234550561897],[-124.45708892255632,57.63219676509786],[-124.45660043395772,57.631638210561135],[-124.45632621364874,57.63137484318216],[-124.45615042506,57.6311126244038],[-124.45607955272182,57.63069239044108],[-124.45594283463305,57.63039698541267],[-124.45593401375551,57.62999654003414],[-124.4560307458575,57.629730774626466],[-124.45561896401736,57.62919329808854],[-124.45521982492211,57.62880847930443],[-124.4550738671694,57.62858585717763],[-124.45458345229989,57.628281832738296],[-124.45448633985646,57.62809454442096],[-124.45433518722243,57.62769131457763],[-124.45386467252585,57.6272080953437],[-124.45325613812355,57.62656514208147],[-124.4524217072443,57.626119152401785],[-124.45216175543949,57.625867157970504],[-124.45182830432353,57.62556832493894],[-124.45148951967748,57.62514383142464],[-124.4512097966164,57.62465835177824],[-124.45095757537635,57.62416646546073],[-124.45080183007636,57.623774392643355],[-124.45072291357084,57.623245287585114],[-124.45073789966361,57.62287876485779],[-124.45072195483118,57.622602713305504],[-124.4506080468711,57.62221225236547],[-124.45051871743088,57.62198916816592],[-124.45024939176021,57.6215576365522],[-124.45005243321663,57.6211493808901],[-124.44988608914319,57.620658500428334],[-124.44964130553751,57.62039546553269],[-124.44953186383997,57.61989628094684],[-124.44963581464422,57.619454547602736],[-124.44961774347497,57.61887233014419],[-124.44974390811436,57.61855308998341],[-124.45006601874499,57.61830791665222],[-124.45060572704362,57.618170704347264],[-124.45104237859005,57.618095080646455],[-124.45210195045094,57.61794713149879],[-124.45234128467197,57.61777948144766],[-124.45263986400421,57.61744319380231],[-124.45273380728756,57.61719422228373],[-124.452926872467,57.61692846850052],[-124.45315771889554,57.61660932970479],[-124.4533208410456,57.616307340586374],[-124.45340205527917,57.61595953739155],[-124.45350440569176,57.61550432783136],[-124.45342180950662,57.61506489701234],[-124.45322560440137,57.61453554701691],[-124.45302725451825,57.61405887722276],[-124.45288192693965,57.613566007009226],[-124.45283173551798,57.61315386911952],[-124.45284084069301,57.612930818984495],[-124.45273854980731,57.612512464512825],[-124.45267304516398,57.61221901497774],[-124.45236343335536,57.61185206002051],[-124.451871868592,57.61127439503394],[-124.45135537675706,57.61089716486848],[-124.45131269909581,57.61071163569221],[-124.45138214525142,57.61049826416793],[-124.45153497314683,57.610191672933865],[-124.45151004125168,57.60982805119351],[-124.45144366171878,57.60945385147412],[-124.4514558421597,57.609155705213034],[-124.45146199916888,57.608748713964076],[-124.45155864331272,57.60838203153621],[-124.45150724272551,57.608153787970366],[-124.45140474248416,57.607946252027645],[-124.45138841390124,57.60757712486373],[-124.45125858448364,57.60732104910346],[-124.45110399479904,57.60710729570601],[-124.45102977820254,57.60697634525066],[-124.45092383089032,57.6067508265372],[-124.451181775101,57.60633108775355],[-124.45128209771713,57.60597678471482],[-124.45143294719934,57.60551317823636],[-124.45136973538575,57.6050616415748],[-124.45122157423435,57.60448575747504],[-124.45103156741108,57.604063012294475],[-124.45063576509527,57.60375784217601],[-124.45055861472788,57.60293047964519],[-124.45056381836494,57.60254702847924],[-124.45005242272029,57.60184353286302],[-124.44938857560423,57.60138719293011],[-124.44877818742665,57.60095502619898],[-124.44823024975776,57.600583023141695],[-124.44759882375732,57.60040964249917],[-124.44711914603774,57.600262712539674],[-124.44650996139843,57.60000660593148],[-124.4464255932246,57.59997085127883],[-124.44564366196482,57.599690281927984],[-124.4445745704695,57.599418663131075],[-124.44315355063391,57.59915298200124],[-124.44190776143144,57.59890280834633],[-124.44089344366488,57.598878508831966],[-124.43972924037588,57.598782906154455],[-124.43902506579606,57.59875104029516],[-124.43827501273651,57.598765726427004],[-124.43770169169846,57.59875894901427],[-124.43782674198987,57.598162731589966],[-124.43803049803338,57.59753604622209],[-124.43799874885427,57.59723962671036],[-124.43829914470156,57.5964010220668],[-124.4384255305398,57.59597527078173],[-124.43850956110123,57.59556135416499],[-124.43856960623128,57.595170703132744],[-124.43861020508977,57.5947439383659],[-124.4390136439713,57.59302851541859],[-124.43854693998705,57.59216290619816],[-124.43780143897337,57.591867021201125],[-124.43705344181986,57.59158119477457],[-124.43630317907277,57.59129982273411],[-124.43553177642289,57.59102380290095],[-124.43474318663012,57.590758788601704],[-124.43393708536647,57.59051262529685],[-124.43311528585288,57.590292062413035],[-124.43227541676094,57.590103799761245],[-124.43141924361824,57.58995570758527],[-124.43053630431585,57.58984766128767],[-124.42963315049391,57.58977300998413],[-124.428716380686,57.58972398214068],[-124.4277904556983,57.58969390233031],[-124.42669940914973,57.58986033308327],[-124.42570137472417,57.590004314522275],[-124.42489257802615,57.59022791995674],[-124.42389080473619,57.590411091590944],[-124.42309640467512,57.590590002991675],[-124.42244503693091,57.59080201641095],[-124.42167194696603,57.59107200563582],[-124.42078932401347,57.591308161246644],[-124.42029851061454,57.591483956741676],[-124.41916266716864,57.59071456016077],[-124.4183204271397,57.590383764474225],[-124.41698649396443,57.59009977714363],[-124.4159915801723,57.589917401673226],[-124.41503709390541,57.58966934227335],[-124.41420638637585,57.58936445006622],[-124.41292013615669,57.588792798965784],[-124.41240857240186,57.588164286416706],[-124.41211056746032,57.58743405113783],[-124.41189136219943,57.58682138622663],[-124.41179556651312,57.58646027223737],[-124.4117160573281,57.586060105906235],[-124.41159713662452,57.58565161609307],[-124.41128930790026,57.58515675109029],[-124.41115671804458,57.58477500974287],[-124.41117391598576,57.584664200389994],[-124.41116521631685,57.58457214292315],[-124.41111468454831,57.58447958226531],[-124.41105447189065,57.58441830365512],[-124.41081640116556,57.58430666609473],[-124.4104594399615,57.584185747772786],[-124.41010248103309,57.58406482849959],[-124.40974561836572,57.583941666655484],[-124.40939294115448,57.58381855423621],[-124.4090403132456,57.583694320079736],[-124.40868977920165,57.583570110194756],[-124.40834352461665,57.58344370818422],[-124.40799731938266,57.58331618447202],[-124.40765320800989,57.58318868508236],[-124.40736460812255,57.58303494113648],[-124.40716801674748,57.582832965642226],[-124.40695218028196,57.58264085012746],[-124.40671724009101,57.58245523207054],[-124.40646519364178,57.58227837821416],[-124.40614267094242,57.582135436049924],[-124.40581364074208,57.58199802141731],[-124.40548038289134,57.58186167629],[-124.40514712743607,57.581725330338806],[-124.40493738145489,57.58163757294442],[-124.40409603696953,57.58059686606645]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":37,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"9","REGION_NUMBER":9,"REGION_NAME":"Peace","REGION_NUMBER_NAME":"9- Peace","FEATURE_AREA_SQM":190409488022.833,"FEATURE_LENGTH_M":2895937.7442,"OBJECTID":1,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-124.40409603696953,57.58059686606645],[-124.4023160178972,57.57839539458228],[-124.40204884699108,57.5748037751803],[-124.4026521662937,57.57081003746923],[-124.4038934196274,57.56636651176807],[-124.40525153061618,57.561126003135065],[-124.40414600573287,57.556779737806956],[-124.40064809022765,57.555625020175846],[-124.38896422125839,57.55540218812428],[-124.37838352038011,57.5532452033308],[-124.37289838011904,57.55047746839854],[-124.37155797240332,57.54819131425279],[-124.36844783149013,57.543891760010716],[-124.36460888480087,57.53828234659238],[-124.36063966736478,57.53455507210331],[-124.35863197798777,57.53381244682536],[-124.35114603245299,57.53063314892255],[-124.34282189502429,57.526770085157594],[-124.33439410793133,57.5230217985976],[-124.32500382241732,57.52029237713099],[-124.31619955603247,57.51945361911208],[-124.30962993125755,57.51873264203019],[-124.30794489041966,57.518666176536016],[-124.30053321511633,57.51697406033768],[-124.29838182482557,57.513142703919044],[-124.29856609981195,57.50902750942174],[-124.30057636819838,57.50367998802205],[-124.29786579060148,57.50041556945511],[-124.2892302031252,57.49705637745799],[-124.28648895660768,57.496356934994395],[-124.28004960108898,57.49507098087021],[-124.2654290788327,57.49373109859831],[-124.25182669625889,57.494968729231786],[-124.24362228904975,57.497209985251814],[-124.23932599596267,57.49980802326926],[-124.23820304548755,57.50277134128228],[-124.23464875274736,57.505199750146296],[-124.22276292685713,57.50570388050508],[-124.22222861901946,57.50569667552179],[-124.21496868438858,57.50495041062003],[-124.21497464824985,57.504912364808206],[-124.21497889347094,57.504866446135125],[-124.21498313868179,57.50482052746377],[-124.21498738388237,57.504774608794136],[-124.21498954199164,57.50472866186303],[-124.21499373453769,57.50468386385369],[-124.21499589263411,57.50463791692609],[-124.21499799808902,57.50459309065701],[-124.21500010353894,57.50454826438969],[-124.2150001219152,57.50450340986105],[-124.21500008765535,57.50445967599075],[-124.2149979663317,57.50441591385898],[-124.2149958450129,57.5043721517289],[-124.214993723699,57.50432838960043],[-124.21498951533329,57.504284599210436],[-124.21498525434107,57.5042419294782],[-124.21498094072213,57.50420038040394],[-124.21497250564957,57.50415765414764],[-124.21496610500672,57.50411607681247],[-124.21495547765078,57.50407556360704],[-124.21494490295458,57.504033929746086],[-124.2149342756442,57.50399341654187],[-124.21492150868036,57.503953995730015],[-124.21490028832127,57.5039167031719],[-124.21485996885833,57.50388588016098],[-124.21482512095398,57.503871951774855],[-124.21480258470973,57.503862675601354],[-124.21473038083411,57.503843755770006],[-124.21464544426067,57.503829148911215],[-124.21455408871587,57.50381781915473],[-124.21445641948422,57.503807525176065],[-124.2143586976514,57.5037983517808],[-124.2142630628947,57.50378920658785],[-124.2141717602194,57.503776755911346],[-124.21408891103766,57.50376217697099],[-124.21400804361731,57.50374986756845],[-124.21392931594183,57.50373646574114],[-124.21384844862783,57.503724156241034],[-124.21376758136623,57.503711846691495],[-124.2136888011806,57.50369956537626],[-124.213607934023,57.503687255729034],[-124.2135271195962,57.50367382537718],[-124.21344833956704,57.503661543918724],[-124.21336747256821,57.50364923412432],[-124.21328869264161,57.50363695257073],[-124.21320787843452,57.50362352202378],[-124.21312701159445,57.50361121208234],[-124.21304823182432,57.503598930385465],[-124.21296736508828,57.50358662034638],[-124.21288655110173,57.50357318960303],[-124.2128077714881,57.503560907762854],[-124.21272690491081,57.50354859757669],[-124.21264603838587,57.503536287341106],[-124.21256725892644,57.50352400535767],[-124.21248644521437,57.50351057436976],[-124.2124055788482,57.503498263987034],[-124.21232679954527,57.50348598186031],[-124.21224593328311,57.50347367137994],[-124.21216720680094,57.50346026850364],[-124.21208634064516,57.50344795792563],[-124.21200547454175,57.50343564729824],[-124.2119266954979,57.503423364933084],[-124.2118458822261,57.503409933553705],[-124.21176501628148,57.50339762277912],[-124.21168623739409,57.503385340270725],[-124.21160537155349,57.50337302939855],[-124.21152450576527,57.50336071847696],[-124.21144577977137,57.50334731517111],[-124.21136491408954,57.503335004151886],[-124.21128613546121,57.503322721404984],[-124.2112052698834,57.50331041028814],[-124.21112445710665,57.50329697846788],[-124.21104567863482,57.5032846955778],[-124.21096481321578,57.503272384313824],[-124.2108839478491,57.503260073000334],[-124.21080522228951,57.50324666931326],[-124.21072435702925,57.50323435790217],[-124.21064349182134,57.50322204644161],[-124.21056471366022,57.50320976326495],[-124.21048384855635,57.50319745170676],[-124.21040303627468,57.503184019445584],[-124.21032425827003,57.503171736125594],[-124.21024339332496,57.5031594244204],[-124.21016461542287,57.50314714100526],[-124.21008380336097,57.50313370854908],[-124.21000293857466,57.503121396696756],[-124.20992416082909,57.50310911313845],[-124.20984329614679,57.50309680118842],[-124.20976243151688,57.50308448918884],[-124.20968370671638,57.503071084834126],[-124.20960284219288,57.50305877273707],[-124.20952197772175,57.50304646059055],[-124.20944320028687,57.503034176745544],[-124.20936238872005,57.50302074384847],[-124.20928361139006,57.50300845990847],[-124.20920274712935,57.50299614756664],[-124.20912188292104,57.502983835175364],[-124.20904315855486,57.50297043043927],[-124.20896229445293,57.502958117950314],[-124.20888143040338,57.50294580541202],[-124.20880265338413,57.502933521185405],[-124.20872178943863,57.50292120854944],[-124.20864097836686,57.50290777521148],[-124.20856220150412,57.50289549084155],[-124.20848133771739,57.50288317805847],[-124.20840047398305,57.50287086522596],[-124.20832175010523,57.50285746006041],[-124.2082408864773,57.50284514713029],[-124.20816210987363,57.502832862522006],[-124.2080812463497,57.50282054949418],[-124.20800043571832,57.5028071157649],[-124.20792165927118,57.50279483101324],[-124.20784079590604,57.50278251783838],[-124.20775993259332,57.5027702046141],[-124.2076811563004,57.50275791971916],[-124.20760034594352,57.50274448574531],[-124.20751948278956,57.502732172373875],[-124.20744070665316,57.50271988733566],[-124.20735984360324,57.50270757386666],[-124.20727903346696,57.502694139696416],[-124.20720025748707,57.50268185451496],[-124.20711939459596,57.50266954089885],[-124.20704061871864,57.50265725562233],[-124.20695980880215,57.50264382125692],[-124.2068789460698,57.50263150749378],[-124.20680017034901,57.50261922207396],[-124.20671930772073,57.502606908213124],[-124.20663844514483,57.5025945943028],[-124.20655972246054,57.50258118808832],[-124.20647885999105,57.50256887408035],[-124.20639799757394,57.502556560023066],[-124.20631922216391,57.502544274316655],[-124.20623841274254,57.50253083951051],[-124.20615963743737,57.50251855370898],[-124.20607877523071,57.50250623945643],[-124.20599791307644,57.502493925154184],[-124.20591913792552,57.5024816392095],[-124.20583832877868,57.5024682041588],[-124.20575746678321,57.50245588970957],[-124.20567869178883,57.5024436036216],[-124.2055978298974,57.50243128907476],[-124.20551702097117,57.50241785382773],[-124.2054382461333,57.50240556759646],[-124.20535738440067,57.502393252902515],[-124.20527652272042,57.502380938159114],[-124.20519780095893,57.50236753113403],[-124.2051169393851,57.502355216292955],[-124.20503816480635,57.50234292982333],[-124.20495730333658,57.50233061488474],[-124.2048764419192,57.502318299896615],[-124.20479772042853,57.50230489263328],[-124.20471685911754,57.50229257754759],[-124.20463599785897,57.50228026241246],[-124.204557223591,57.502267975656245],[-124.2044764153797,57.502254539773226],[-124.20439555427993,57.50224222449105],[-124.20431678016848,57.50222993759154],[-124.20423591917276,57.50221762221168],[-124.20415511118209,57.50220418613237],[-124.20407633722718,57.50219189908951],[-124.20399547639028,57.50217958356265],[-124.20391670253794,57.50216729642477],[-124.20383584180507,57.502154980800206],[-124.20375503408899,57.50214154447637],[-124.2036762603932,57.502129257195215],[-124.20359539981916,57.502116941423594],[-124.20349918919257,57.502120115582855],[-124.20341555310065,57.50212233970136],[-124.20333191699895,57.50212456376684],[-124.20324828088746,57.50212678777928],[-124.20316667871404,57.502130160838526],[-124.20308304258056,57.50213238474613],[-124.20299935345068,57.50213572925016],[-124.20291571729517,57.502137953051594],[-124.2028320281383,57.50214129744947],[-124.20274839196075,57.5021435211448],[-124.20266678970704,57.50214689389465],[-124.2025831005086,57.50215023813449],[-124.20249946429684,57.50215246167192],[-124.2024157750714,57.5021558058056],[-124.20233208583126,57.50215914988608],[-124.2022505365158,57.502161401729126],[-124.2021668472488,57.50216474570477],[-124.20208315796708,57.502168089627226],[-124.20199946867064,57.50217143349665],[-124.20191583237808,57.5021736566638],[-124.20183214305466,57.502177000427025],[-124.2017505406478,57.502180372609935],[-124.20166685129506,57.502183716268135],[-124.20158316192757,57.502187059873314],[-124.20149952557631,57.50218928277643],[-124.20141583618185,57.50219262627538],[-124.20133423370453,57.5021959982006],[-124.20125054428075,57.50219934159459],[-124.20116685484227,57.50220268493558],[-124.20108321843229,57.502204907574594],[-124.20099952896685,57.50220825080928],[-124.20091583948665,57.50221159399094],[-124.20083423692428,57.502214965606704],[-124.20075060046781,57.50221718803475],[-124.20066691094607,57.5022205310584],[-124.2005832214096,57.502223874028786],[-124.20049958491886,57.50222609629769],[-124.20041589535545,57.50222943916193],[-124.2003342927104,57.50223281046829],[-124.20025065618546,57.50223503257919],[-124.20016696658047,57.50223837528551],[-124.2000833300335,57.502240597290246],[-124.19999964040153,57.502243939890334],[-124.19991809076608,57.50224619029069],[-124.19983445418734,57.50224841213759],[-124.19975076451631,57.502251754579746],[-124.19966712791556,57.50225397632042],[-124.19958349130505,57.50225619800814],[-124.19949985468477,57.50225841964272],[-124.19941621805472,57.502260641224396],[-124.19933466834888,57.5022628912639],[-124.19925103169935,57.50226511274064],[-124.19916739504,57.50226733416439],[-124.19908375837089,57.50226955553506],[-124.19900012169202,57.5022717768527],[-124.19891648500337,57.50227399811713],[-124.1988349352393,57.502276247847675],[-124.19875135164322,57.502277348359584],[-124.19866771492778,57.50227956946627],[-124.19858413131956,57.50228066987212],[-124.19850054770649,57.50228177022496],[-124.19841691096667,57.502283991172675],[-124.19833332734144,57.502285091419445],[-124.19825183064586,57.50228622014155],[-124.19816824701098,57.502287320283706],[-124.19808466337126,57.50228842037289],[-124.19800107972671,57.50228952040904],[-124.1979174960773,57.50229062039221],[-124.19783396556217,57.50229059967489],[-124.19775038190555,57.50229169955216],[-124.19766685138818,57.50229167872896],[-124.19758326772435,57.5022927785003],[-124.19750182413894,57.50229278611123],[-124.1974182936193,57.502292765130484],[-124.19733476309972,57.50229274409686],[-124.19725123258026,57.50229272301031],[-124.19716770206088,57.50229270187078],[-124.19708417154162,57.5022926806784],[-124.19700064102243,57.502292659433046],[-124.19691711050334,57.50229263813484],[-124.19683363315295,57.502291496136465],[-124.19675010263651,57.502291474732324],[-124.19666662529367,57.50229033262822],[-124.1965830947799,57.502290311118365],[-124.19649961744464,57.50228916890854],[-124.19641822704763,57.50228805520302],[-124.19633474972227,57.50228691288886],[-124.19625127240197,57.502285770521645],[-124.19616779508665,57.50228462810179],[-124.1960843177764,57.502283485628915],[-124.19600084047111,57.5022823431033],[-124.19591736317086,57.502281200524706],[-124.19583388587564,57.502280057893394],[-124.19575040858543,57.50227891520914],[-124.19566698450322,57.502276651825376],[-124.19558350722549,57.502275509035435],[-124.19550008316072,57.50227324554608],[-124.19541660589549,57.502272102650544],[-124.19533318184811,57.50226983905558],[-124.19524970459541,57.50226869605426],[-124.19516628056543,57.50226643235375],[-124.19508280332522,57.50226528924673],[-124.19499937931265,57.50226302544057],[-124.19491595531004,57.50226076158161],[-124.19483253131736,57.50225849766987],[-124.1947490541046,57.50225735435159],[-124.19466563012934,57.50225509033424],[-124.19458220616403,57.50225282626405],[-124.19449878220863,57.50225056214115],[-124.19441535826316,57.50224829796535],[-124.19433193432766,57.50224603373687],[-124.19425059733122,57.5022437980471],[-124.1941671734154,57.50224153371433],[-124.19408374950952,57.502239269328804],[-124.19400032561356,57.502237004890425],[-124.19391695498207,57.50223361975342],[-124.19383353110847,57.5022313552095],[-124.1937501072448,57.50222909061285],[-124.19366668339106,57.50222682596337],[-124.19358325954727,57.50222456126119],[-124.1934998889802,57.50222117586046],[-124.19341646515875,57.50221891105263],[-124.19333304134722,57.50221664619205],[-124.19324961754566,57.5022143812787],[-124.19316624703063,57.502210995666964],[-124.1930828232514,57.50220873064816],[-124.1929993994821,57.502206465576435],[-124.19291597572274,57.502204200452],[-124.19283260525977,57.5022008146293],[-124.19274918152274,57.502198549399324],[-124.1926657577957,57.502196284116536],[-124.19258238737237,57.50219289813563],[-124.19249896366763,57.50219063274734],[-124.19241553997284,57.50218836730627],[-124.19233216958915,57.50218498116715],[-124.19224874591673,57.50218271562053],[-124.19216532225423,57.502180450021065],[-124.19208189860167,57.502178184368915],[-124.19199852827003,57.50217479801885],[-124.19191510463985,57.50217253226101],[-124.19183168101955,57.50217026645056],[-124.19174825740924,57.50216800058722],[-124.19166483380887,57.50216573467113],[-124.1915814635417,57.50216234805732],[-124.19149803996368,57.50216008203578],[-124.19141461639559,57.502157815961255],[-124.19133327975955,57.502155578471786],[-124.19124985621119,57.50215331229313],[-124.19116643267274,57.50215104606168],[-124.19108306248219,57.502147659132696],[-124.19099963896612,57.5021453927957],[-124.19091626880282,57.502142005761314],[-124.19083284530909,57.5021397393188],[-124.19074947517306,57.5021363521789],[-124.19066610505189,57.50213296498643],[-124.19058273494558,57.50212957774109],[-124.19049936485412,57.502126190443136],[-124.19041604813508,57.50212168244803],[-124.19033267807579,57.502118295044625],[-124.19024930803135,57.50211490758856],[-124.19016599136671,57.50211039943544],[-124.19008262135443,57.50210701187399],[-124.18999930472687,57.50210250361555],[-124.18991598811905,57.502097995304545],[-124.18983261815627,57.502094607585036],[-124.18974930158552,57.50209009916862],[-124.18966598503454,57.50208559069965],[-124.18958266850332,57.50208108217804],[-124.18949935199187,57.50207657360384],[-124.18941598211319,57.50207318562087],[-124.18933266563882,57.50206867694125],[-124.18924934918418,57.50206416820908],[-124.18916603274936,57.5020596594242],[-124.18908271633427,57.50205515058674],[-124.18899939993892,57.50205064169664],[-124.1889160301617,57.50204725339759],[-124.18883271380346,57.502042744402125],[-124.18874939746496,57.50203823535411],[-124.18866608114625,57.50203372625336],[-124.18858271143584,57.502030337743534],[-124.18849939515421,57.50202582853756],[-124.18841602547595,57.50202243992239],[-124.1883327092314,57.502017930611025],[-124.18824933958534,57.5020145418905],[-124.18816596995413,57.50201115311721],[-124.18808265376397,57.50200664364786],[-124.18799928416496,57.50200325476926],[-124.1879159145808,57.5019998658379],[-124.18783254501152,57.50199647685375],[-124.18774917545707,57.50199308781698],[-124.18766575247908,57.50199081937065],[-124.1875823829519,57.50198743022833],[-124.18750104690614,57.501985190374796],[-124.18741767740602,57.50198180112839],[-124.18733425447255,57.50197953247228],[-124.18725083154902,57.5019772637633],[-124.18716740863547,57.50197499500164],[-124.18708393227632,57.501973846830026],[-124.18700050938024,57.50197157796272],[-124.18691703303361,57.50197042968547],[-124.1868356970634,57.501968189421476],[-124.18675222072919,57.5019670410399],[-124.18666869093221,57.50196701324812],[-124.18658521460566,57.50196586476071],[-124.18650168481138,57.50196583686314],[-124.18641820849243,57.50196468826995],[-124.18633676560873,57.5019646889834],[-124.18625318233715,57.501965781570966],[-124.18616965254334,57.50196575346297],[-124.18608606926462,57.50196684594457],[-124.1860045728889,57.50196796709521],[-124.18592098960059,57.50196905947213],[-124.18583740630747,57.50197015179608],[-124.18575376951476,57.50197236470938],[-124.1856722196202,57.50197460629697],[-124.1855885828081,57.50197681910541],[-124.18550494598621,57.501979031860834],[-124.18542334255817,57.50198239393674],[-124.18533965220739,57.501985727229574],[-124.18525804875033,57.5019890892031],[-124.18517435837033,57.50199242239107],[-124.18509066797566,57.50199575552581],[-124.18500901095825,57.5020002379874],[-124.18492526701262,57.50200469165928],[-124.18484360995652,57.50200917401848],[-124.18475986597184,57.5020136275853],[-124.18467820887703,57.502018109842034],[-124.18459446485326,57.50202256330386],[-124.18451066727837,57.502028137354344],[-124.18442895658912,57.50203374009861],[-124.1843452125017,57.50203819340219],[-124.18426350176644,57.50204379604402],[-124.18417970409621,57.50204936988423],[-124.1840979397688,57.50205609306528],[-124.18401414204719,57.502061666800444],[-124.18393243121264,57.50206726923711],[-124.183850666803,57.50207399226482],[-124.1837668690057,57.50207956584288],[-124.1836851045403,57.50208628876799],[-124.1836012531332,57.502092982882424],[-124.18351948860966,57.502099705704985],[-124.18343569070713,57.50210527907261],[-124.18335392612786,57.50211200179245],[-124.1832700746057,57.50211869569644],[-124.1831883099683,57.50212541831364],[-124.18310440481427,57.50213323275373],[-124.18302264011632,57.50213995526836],[-124.18294087538945,57.502146677732334],[-124.18285702371807,57.50215337137378],[-124.18277525893305,57.502160093735036],[-124.18269140720292,57.5021667872712],[-124.182609588772,57.50217463017109],[-124.18252573698062,57.50218132360193],[-124.18244397207687,57.502188045757926],[-124.18236012022678,57.50219473908345],[-124.18227835526488,57.50220146113684],[-124.18219450335602,57.502208154357234],[-124.18211273833602,57.502214876307875],[-124.18203097328708,57.50222159820799],[-124.18194712129022,57.50222829127108],[-124.18186535618318,57.50223501306846],[-124.18178150412757,57.50224170602626],[-124.18169973896235,57.50224842772105],[-124.18161588684802,57.50225512057364],[-124.18153412162467,57.50226184216579],[-124.18145032307363,57.502267414272175],[-124.18136855779458,57.50227413576168],[-124.1812847591922,57.50227970776287],[-124.1812030474868,57.50228530850906],[-124.18111924883551,57.50229088040516],[-124.18103539652533,57.50229757288879],[-124.18095368474481,57.5023031734803],[-124.18086993965683,57.50230762457734],[-124.1807882278303,57.5023132250664],[-124.18070442905669,57.50231879669889],[-124.18062068390513,57.50232324763764],[-124.18053902565734,57.50232772733184],[-124.1804552804667,57.50233217816546],[-124.18037362218024,57.502336657757205],[-124.18028987695058,57.502341108485815],[-124.18020613170131,57.50234555916128],[-124.18012447335676,57.50235003859868],[-124.18004072806845,57.50235448916913],[-124.17995698276052,57.502358939686324],[-124.17987329110171,57.50236226951008],[-124.17979163268201,57.50236674874134],[-124.17970788731793,57.50237119910037],[-124.17962414193424,57.502375649406304],[-124.17954248345646,57.502380128483345],[-124.17945873803373,57.502384578684214],[-124.17937504627481,57.50238790819167],[-124.17929130081534,57.50239235828618],[-124.17920964226245,57.502396837157136],[-124.17912595045473,57.50240016650643],[-124.17904220493911,57.5024046164428],[-124.17895845940386,57.50240906632591],[-124.17887476754721,57.50241239551596],[-124.17879310890221,57.50241687412896],[-124.17870941701389,57.50242020321402],[-124.17862572511092,57.50242353224589],[-124.17854197948526,57.50242798186452],[-124.17845828755051,57.502431310790186],[-124.17837668252872,57.50243466850542],[-124.17829293684936,57.502439117965956],[-124.17820924486828,57.502442446733546],[-124.17812555287254,57.50244577544797],[-124.17804186086214,57.502449104109225],[-124.17796025576536,57.50245246156687],[-124.17787661745345,57.50245466948366],[-124.17779292540168,57.50245799798697],[-124.17770923333525,57.50246132643722],[-124.17762559498928,57.502463534194696],[-124.177541902896,57.502466862538725],[-124.17745826452811,57.50246907019009],[-124.17737665933694,57.50247242728654],[-124.1772930209472,57.502474634833085],[-124.17720938254777,57.50247684232666],[-124.17712574413862,57.50247904976702],[-124.17704210571975,57.50248125715445],[-124.17695846729116,57.50248346448883],[-124.17687696953935,57.50248457999738],[-124.17679333109389,57.502486787227],[-124.17670969263868,57.50248899440348],[-124.17662610793839,57.502490080887775],[-124.17654252323331,57.50249116731917],[-124.17645893852344,57.50249225369743],[-124.17637535380882,57.50249334002278],[-124.17629385601872,57.502494455170876],[-124.17621027129454,57.502495541391646],[-124.17612668656557,57.502496627559296],[-124.17604315561364,57.50249659303501],[-124.17595962466184,57.50249655845789],[-124.17587603992345,57.502497644466686],[-124.17579459589865,57.50249763866735],[-124.17571106494476,57.50249760393268],[-124.1756275877851,57.502496448506356],[-124.17554411063053,57.502495293027216],[-124.175460633481,57.50249413749511],[-124.175377210138,57.5024918612716],[-124.17529587373326,57.50248961388688],[-124.17521245041004,57.502487337559074],[-124.17512902709682,57.5024850611786],[-124.17504565760476,57.50248166410666],[-124.1749622881276,57.502478266982074],[-124.17487891866534,57.50247486980482],[-124.17479560303654,57.50247035193647],[-124.17471437435408,57.50246586291633],[-124.17463100494119,57.50246246558233],[-124.17454768936902,57.502457947557396],[-124.17446442764495,57.502452308841576],[-124.17438111211484,57.50244779071128],[-124.17429785043771,57.502442151890314],[-124.17421453494966,57.502437633654836],[-124.1741312733195,57.502431994728695],[-124.17405009863792,57.502426384661284],[-124.17396683705677,57.50242074563136],[-124.17388357550035,57.50241510654885],[-124.17380031396861,57.50240946741373],[-124.17371705246157,57.50240382822614],[-124.17363379097927,57.50239818898598],[-124.17355052952165,57.502392549693184],[-124.1734672680887,57.50238691034788],[-124.1733860936014,57.50238129987189],[-124.17330283221752,57.50237566042283],[-124.17321957085834,57.50237002092116],[-124.17313630952387,57.502364381366945],[-124.17305299434433,57.502359862397824],[-124.1729697330568,57.502354222738425],[-124.17288647179402,57.502348583026546],[-124.17280315667881,57.502344063899386],[-124.17272192850152,57.50233957365205],[-124.17263861342565,57.50233505442105],[-124.17255529836955,57.502330535137546],[-124.172507691097,57.50227829137432],[-124.17246992575944,57.502238519287346],[-124.17243007359076,57.50219871825399],[-124.17239027539453,57.50215779657295],[-124.17235042339388,57.50211799551838],[-124.17231057147666,57.50207819445312],[-124.17226863274166,57.502038364437745],[-124.17222669409455,57.50199853441051],[-124.17218684243213,57.50195873331199],[-124.172142817064,57.50191887431999],[-124.17210087868054,57.50187904425688],[-124.17205894038497,57.501839214181736],[-124.17201486138978,57.5018004757879],[-124.17197292327103,57.501760645688236],[-124.1719288983566,57.50172078663176],[-124.1718869604158,57.501680956507485],[-124.17184293568381,57.50164109742512],[-124.171800997921,57.50160126727628],[-124.17175697337142,57.501561408168],[-124.1717149818786,57.501522698630815],[-124.17167304438046,57.501482868445436],[-124.17162902010216,57.50144300929852],[-124.17158916964785,57.50140320803891],[-124.17154723241337,57.50136337781769],[-124.17150529526678,57.50132354758458],[-124.17146544506723,57.50128374629162],[-124.17142559495112,57.501243944988076],[-124.17138579883574,57.501203023038144],[-124.17134594888766,57.50116322171331],[-124.17130818587329,57.501123449332546],[-124.17127047685842,57.50108255630679],[-124.17123480084892,57.50104281286305],[-124.1711991788365,57.50100194877554],[-124.17116355690065,57.50096108467991],[-124.17112996795596,57.50092137016904],[-124.1710964330068,57.50088053501561],[-124.17106498496416,57.50083972881362],[-124.17103353698907,57.50079892260563],[-124.17100422983934,57.500757024715924],[-124.17097486882552,57.50071624745636],[-124.17094759470011,57.50067549915201],[-124.17092246138643,57.500633659169395],[-124.17089732812802,57.50059181918347],[-124.17087428174344,57.50055000815587],[-124.17085332222571,57.5005082260875],[-124.17083236275401,57.50046644401743],[-124.17081349013996,57.500424690907955],[-124.17079675831002,57.50038184612547],[-124.17078211332462,57.50033903030548],[-124.17076955517663,57.50029624344864],[-124.17075699705694,57.500253456592205],[-124.1707486664996,57.50020960702868],[-124.17074242275876,57.500165786429996],[-124.1707361790323,57.50012196583273],[-124.17073410890515,57.50007820316424],[-124.17073203878275,57.5000344404975],[-124.1707300226,57.49998955719807],[-124.17073217999226,57.49994473182806],[-124.17073433737941,57.49989990645967],[-124.1707385815417,57.49985511005672],[-124.17074282569398,57.499810313655374],[-124.17074915661158,57.49976554621916],[-124.17075762822077,57.49971968711367],[-124.17076604587615,57.49967494864358],[-124.17077451744478,57.499629089540754],[-124.1707850757583,57.499583259402115],[-124.17079766687696,57.49953857886107],[-124.17080822513745,57.49949274872417],[-124.17082087013031,57.49944694755071],[-124.17083351509274,57.49940114637777],[-124.17084824677754,57.49935537416749],[-124.17086083774647,57.49931069362931],[-124.17087556936335,57.499264921419645],[-124.17089030094472,57.499219149210035],[-124.17090503249064,57.49917337700067],[-124.17091976400107,57.499127604791525],[-124.17093444154851,57.49908295321596],[-124.17094917298849,57.499037181007196],[-124.17096390439302,57.49899140879862],[-124.170978581836,57.4989467572235],[-124.17099325924451,57.4989021056486],[-124.1710079905436,57.49885633344045],[-124.17102058115952,57.498811652906646],[-124.17103317174583,57.49876697237338],[-124.17104570837878,57.49872341247379],[-124.17105829890633,57.49867873194161],[-124.1710708894043,57.498634051409944],[-124.17108139316169,57.49858934192063],[-124.17109189689435,57.49854463243236],[-124.17110448730843,57.498499951902744],[-124.17111499098922,57.49845524241606],[-124.17112554856631,57.49840941229734],[-124.17113605219733,57.498364702812616],[-124.17114660972389,57.49831887269589],[-124.17115502661139,57.498274134256],[-124.17116558408989,57.49822830414136],[-124.17117608762383,57.498183594660524],[-124.17118455836552,57.49813773559134],[-124.17119511577057,57.49809190547985],[-124.17120353255073,57.49804716704576],[-124.17121408990775,57.49800133693638],[-124.171222560563,57.497955477872225],[-124.17123311787164,57.497909647765034],[-124.1712436751548,57.49786381765894],[-124.17125214574372,57.49781795859822],[-124.17126264906247,57.49777324912659],[-124.17127111960835,57.49772739006845],[-124.1712816767951,57.49768155996655],[-124.1712922339564,57.49763572986577],[-124.17130279109223,57.49758989976582],[-124.17131329428841,57.4975451902991],[-124.17132385137373,57.497499360201196],[-124.1713344084336,57.497453530104245],[-124.171344965468,57.4974077000083],[-124.17135755520815,57.49736301949917],[-124.17136811218951,57.49731718940503],[-124.1713807018725,57.49727250889723],[-124.17139125880084,57.49722667880483],[-124.17140384842664,57.49718199829834],[-124.17141857856492,57.497136226113476],[-124.17143116812865,57.49709154560796],[-124.1714437576628,57.497046865102945],[-124.17145843379153,57.49700221355066],[-124.17147310988578,57.496957561998556],[-124.17148778594556,57.49691291044651],[-124.17150246197086,57.49686825889459],[-124.17151917066899,57.4968247569255],[-124.17153593323545,57.49678013432453],[-124.17155264185656,57.49673663235452],[-124.17156940434487,57.49669200975271],[-124.17158819949381,57.49664853673199],[-124.17160699459976,57.49660506371026],[-124.17162578966273,57.49656159068748],[-124.17164667128044,57.49651814661291],[-124.17166749894821,57.49647582316785],[-124.17168838047118,57.49643237908993],[-124.17170920804553,57.4963900556415],[-124.17173212216197,57.4963477611392],[-124.17175503622741,57.49630546663446],[-124.17178003682574,57.49626320107442],[-124.17180498347064,57.49622205614221],[-124.17182998395857,57.49617979057571],[-124.17185701707179,57.49613867458288],[-124.17188405012651,57.496097558586044],[-124.17191311580096,57.49605759216093],[-124.17194014873736,57.496016476155496],[-124.17197130085914,57.49597653866494],[-124.17200245291545,57.49593660116842],[-124.17203360490632,57.49589666366593],[-124.17206684339352,57.49585675510003],[-124.17210002792237,57.4958179671579],[-124.17213738549862,57.4957792370915],[-124.17217474299878,57.49574050701591],[-124.17221413309113,57.49570292650184],[-124.17225560965706,57.495665374916875],[-124.17229911880798,57.49562897288954],[-124.1723426278756,57.49559257084894],[-124.17238822340543,57.495556197732654],[-124.17243590539158,57.495519853538426],[-124.17248353340976,57.49548462995859],[-124.17253324787946,57.49544943529791],[-124.1725849949213,57.49541539018429],[-124.17263679574259,57.49538022442088],[-124.17269062913174,57.49534620820134],[-124.17274446242456,57.49531219196085],[-124.17280038215162,57.49527820463035],[-124.17285624791323,57.49524533790761],[-124.17291420010531,57.49521250009113],[-124.1729721521973,57.4951796622502],[-124.17303010418921,57.495146824384705],[-124.17309014260276,57.49511401542094],[-124.17315012705613,57.49508232706134],[-124.1732122517826,57.49504954696919],[-124.17327432254913,57.49501788747912],[-124.1733363932123,57.49498622796078],[-124.17339846377212,57.49495456841398],[-124.17346053422854,57.49492290883893],[-124.17352463724622,57.494892398785304],[-124.17358879400436,57.49486076807089],[-124.17365295065574,57.49482913732614],[-124.1737170533609,57.49479862718143],[-124.17378115596321,57.49476811700638],[-124.17384531229823,57.494736486170716],[-124.17390941469283,57.4947059759349],[-124.17397351698457,57.49467546566865],[-124.17403767300323,57.49464383474191],[-124.17410177508728,57.494613324415056],[-124.17416587706843,57.494582814057765],[-124.17422997894671,57.49455230367026],[-124.1742941345442,57.49452067262201],[-124.17435614972628,57.49449013326743],[-124.17441816480874,57.494459593884706],[-124.17448023360804,57.49442793384305],[-124.17454224848939,57.49439739440352],[-124.17460431708382,57.494365734305276],[-124.17466429909472,57.494334045277306],[-124.17472422719652,57.49430347685332],[-124.17478420900926,57.49427178777246],[-124.17484622339177,57.494241248194],[-124.17490823767464,57.49421070858723],[-124.17497233832988,57.49418019784863],[-124.1750385253526,57.494149715975105],[-124.17510465847157,57.49412035469943],[-124.17517079148843,57.49409099339133],[-124.17523901086878,57.49406166094305],[-124.17530931660802,57.494032357351365],[-124.17537962223889,57.49400305372298],[-124.17544987397415,57.49397487068811],[-124.17552221206485,57.49394671650427],[-124.1755946038313,57.493917441651114],[-124.17566897438145,57.49389043690503],[-124.17573922569416,57.493862253718724],[-124.17618045637329,57.49376070930196],[-124.17653709806338,57.49368154181543],[-124.17689577096597,57.493603522865946],[-124.17725444239657,57.49352550294566],[-124.17761514506637,57.493448631540026],[-124.17797381355975,57.493370609672795],[-124.17833044785672,57.493291437360796],[-124.17868296151599,57.493211085783145],[-124.17903146189185,57.4931273137112],[-124.17937386250406,57.49304009235089],[-124.17970807689335,57.49294939292887],[-124.18003421232767,57.49285297424643],[-124.18034001854254,57.492745060341065],[-124.18054284970881,57.49256395617059],[-124.1806386890028,57.492349976146784],[-124.18062517817178,57.49215242826722],[-124.18049691800806,57.49195329597705],[-124.18037288551267,57.49175310058859],[-124.18035750449927,57.491551041454294],[-124.18040476690909,57.49134872605141],[-124.18047508549273,57.491144486312685],[-124.18054123072412,57.490940188956436],[-124.18057190836184,57.49073540187652],[-124.18055668759816,57.490529981058536],[-124.180535208205,57.49032447385072],[-124.18054710909782,57.490119427610765],[-124.18057569979955,57.489914611868954],[-124.18061263511719,57.48970991138621],[-124.1806537424767,57.48950526854269],[-124.18069062335044,57.489301688739175],[-124.18410018474952,57.45502531446185],[-124.12101685115753,57.44933276477622],[-124.12132324939336,57.44920930400977],[-124.12162147573012,57.449082361891094],[-124.12187923764687,57.44893017198667],[-124.12217948859524,57.44880437893438],[-124.12249179892699,57.44868772808246],[-124.12280821993573,57.44857225650791],[-124.1231104383891,57.44844873222064],[-124.12338853193859,57.44830692168296],[-124.1236482549547,57.44815699925662],[-124.12391620105409,57.44800943628009],[-124.12421035201395,57.44788018789259],[-124.12455258159116,57.44779087126404],[-124.12490478731426,57.44771066670747],[-124.12524109329097,57.44761453585251],[-124.1255595257244,57.447500208018646],[-124.12586786798362,57.44737900767625],[-124.12617609793601,57.447260047753275],[-124.12651053351021,57.4471594017673],[-124.12683882606295,57.447056424839836],[-124.12712495521392,57.446920328030295],[-124.12742720167904,57.44679567344441],[-124.12773147487142,57.44667216838574],[-124.12803377249612,57.446546391869404],[-124.12834807507556,57.446430877554384],[-124.12867246423168,57.44632223402939],[-124.12900880351458,57.44622497309977],[-124.12935895663286,57.44614360654735],[-124.12973328787554,57.44607940288069],[-124.13011984537289,57.44602097860991],[-124.1304921453744,57.44595562262195],[-124.13082375886125,57.445869503536834],[-124.1310946180668,57.44574663785832],[-124.13129671780538,57.44558018423671],[-124.13144804196298,57.44538609717507],[-124.1315646008843,57.4451780602991],[-124.13166432357762,57.44497314840556],[-124.13173876540714,57.44477348434218],[-124.13176977835258,57.444566475731314],[-124.13176536791858,57.44435896430896],[-124.13171900857365,57.44415646415142],[-124.13160569673308,57.443958620234156],[-124.13150494313233,57.44375983318959],[-124.13148364488319,57.44355656748681],[-124.13151668686857,57.44335070929806],[-124.13156014670527,57.443144999049636],[-124.13156812934741,57.44293990649229],[-124.13152807864537,57.44273637469797],[-124.13146297006446,57.442533608484645],[-124.13139161138594,57.442330753519414],[-124.13133280999564,57.44212695550522],[-124.13130115071861,57.44192242156556],[-124.1313031038604,57.44171275823438],[-124.13135681570847,57.44151055795663],[-124.13157534014341,57.4413488234388],[-124.13178580357162,57.44118136746073],[-124.1318954922688,57.44098556847364],[-124.13198670317571,57.440783900445695],[-124.13205510457378,57.440579665950835],[-124.13209844836362,57.44037619713346],[-124.13208975969043,57.44017086843944],[-124.13204981908922,57.439965096166304],[-124.13202237966057,57.439759501367746],[-124.13204911011363,57.43955467554906],[-124.13209903298774,57.43934457227713],[-124.132182015159,57.43914054498326],[-124.13231823051275,57.43895633601509],[-124.13259199865428,57.43881556860974],[-124.13294690229968,57.438720805454196],[-124.13331051773199,57.438660926458105],[-124.13369205850402,57.43861812078855],[-124.13406559440521,57.438568472487646],[-124.13440508460998,57.438490307011755],[-124.13470334809604,57.438359974749915],[-124.13494903389241,57.43819637786826],[-124.135136987205,57.438019627692526],[-124.1352859588269,57.43782999018697],[-124.13541025815897,57.43763327493531],[-124.1355241395445,57.43743641200236],[-124.13559048751402,57.437231026176924],[-124.13566297494266,57.43702797002338],[-124.13583216946805,57.43685095337464],[-124.13608359677025,57.43669752815527],[-124.13635974717496,57.43655005934536],[-124.13660716835878,57.43639321247773],[-124.1368157183706,57.43622123743174],[-124.13701204113534,57.43604348231424],[-124.13719191540893,57.43586100875483],[-124.13735112006009,57.435674878400334],[-124.13747934885417,57.435482702769306],[-124.13757868541533,57.4352845114425],[-124.13765735333602,57.43508266354627],[-124.13773190884777,57.43487963611147],[-124.13781676985873,57.43467899720028],[-124.13791199102984,57.43447962623435],[-124.13797815655187,57.43427760139478],[-124.1379839648136,57.43407360108027],[-124.13795024817473,57.43386792011145],[-124.13793741798415,57.43366141342727],[-124.13794766662984,57.433451869403015],[-124.13788643191795,57.43325476971863],[-124.1377181378446,57.4330729747011],[-124.13750999267046,57.432896222009056],[-124.13732498255223,57.43271531119506],[-124.1371674378321,57.432526939680486],[-124.13700775678456,57.432339659066365],[-124.13682258724654,57.43216210929564],[-124.13659077001856,57.432000718558506],[-124.13632710599552,57.4318512109331],[-124.13605067163508,57.43170712850181],[-124.13577188202214,57.43156861875945],[-124.13548032203938,57.43143553408927],[-124.13520159137211,57.43129590261774],[-124.13494002067043,57.43114642182752],[-124.13468486565397,57.430993667476926],[-124.13443190546515,57.430838701083815],[-124.13418311325896,57.430683793306],[-124.1339493430999,57.430520127475],[-124.13370263788194,57.43036524837507],[-124.1334195908915,57.43022891581397],[-124.1331237736427,57.430098008071646],[-124.13282357277988,57.429971522757675],[-124.1325147674521,57.429850521257364],[-124.13219072409706,57.42974275864426],[-124.13187106829582,57.429630572197325],[-124.1315796467557,57.429495238005146],[-124.13128806230067,57.42936326483165],[-124.13095481495708,57.429273309664545],[-124.13057771100566,57.429227583678255],[-124.13021612354974,57.42916301450621],[-124.12985908832285,57.429090659721524],[-124.12950874343201,57.42900942842895],[-124.12916273093157,57.42892489380464],[-124.1288167750345,57.42883923772853],[-124.12847082069358,57.42875358074917],[-124.12812486790885,57.428667922866474],[-124.12777897177777,57.42858114353321],[-124.12743307722297,57.428494363297155],[-124.12708926707644,57.42840761181103],[-124.12674337566924,57.428320829774734],[-124.12639754097593,57.42823292628923],[-124.12605373554828,57.42814617211676],[-124.12570784887504,57.42805938737777],[-124.12527345132231,57.42795003509373],[-124.12525914753702,57.427944224594235],[-124.1251937667416,57.42791750221362],[-124.12512844121241,57.427889659255605],[-124.12506311577872,57.427861816265725],[-124.12499992841767,57.42783288238457],[-124.12493674115264,57.42780394847377],[-124.12487355398362,57.427775014533374],[-124.12481042209419,57.42774496001804],[-124.12474723511897,57.4277160260184],[-124.12468410342701,57.42768597144401],[-124.12462310981262,57.42765482598687],[-124.12455997832005,57.427624771354466],[-124.12449898490516,57.42759362584141],[-124.12443793639575,57.427563600845694],[-124.12437694317862,57.42753245527764],[-124.12431595006127,57.42750130968211],[-124.12425495704365,57.42747016405926],[-124.12419396412582,57.42743901840886],[-124.1241329713077,57.42740787273094],[-124.12407203379416,57.42737560648104],[-124.12401312394877,57.427344490449926],[-124.12395213142995,57.42731334469071],[-124.12389119422083,57.427281078359734],[-124.12383020190326,57.42724993254566],[-124.12377129244983,57.42721881640953],[-124.12371030033,57.42718767054156],[-124.12364930830996,57.427156524646264],[-124.12358831638964,57.427125378723424],[-124.12352732456911,57.42709423277313],[-124.12346633284831,57.42706308679539],[-124.12340534122725,57.42703194079021],[-124.12334221172813,57.42700188558951],[-124.12328116507912,57.426971860072236],[-124.12322011852638,57.42694183452752],[-124.12315698932275,57.426911779240264],[-124.12309386021877,57.426881723923465],[-124.12303067597976,57.426852789120744],[-124.12296749183675,57.42682385428845],[-124.12290430778972,57.42679491942653],[-124.12283898585966,57.4267670753584],[-124.12277574676249,57.42673926097966],[-124.12271042502184,57.426711416849],[-124.1226451033767,57.42668357268666],[-124.12257764384671,57.42665681931171],[-124.12251221189311,57.42663121617113],[-124.1224447525492,57.42660446272925],[-124.12237718279307,57.42657995033956],[-124.12230758565245,57.42655428764425],[-124.12223996081617,57.42653089572823],[-124.1221703085982,57.426506353504315],[-124.12209851848564,57.4264829020552],[-124.12202875591942,57.42646060084319],[-124.12195691071462,57.426438269860654],[-124.12188506559404,57.42641593883936],[-124.12181108257012,57.426394698585625],[-124.1217391823453,57.42637348802809],[-124.12166514421106,57.42635336823561],[-124.12159110615505,57.42633324840196],[-124.12151498546417,57.42631309878606],[-124.12144089228514,57.42629409941095],[-124.12136471646915,57.42627507025118],[-124.12128854072925,57.42625604104757],[-124.12121236506546,57.426237011800225],[-124.12113613418832,57.426219103051295],[-124.12105990338287,57.42620119425847],[-124.12098158994353,57.42618325567245],[-124.1209032212817,57.42616643758207],[-124.12082699069119,57.42614852865513],[-124.12074862216906,57.42613171047319],[-124.12067025371614,57.42611489224487],[-124.12059188533244,57.426098073970024],[-124.12051143431833,57.42608122589207],[-124.12043306607403,57.42606440752312],[-124.12035464258672,57.426048709649585],[-124.12027627447857,57.426031891187705],[-124.120195768427,57.42601616345922],[-124.12011740045595,57.42599934490329],[-124.12003897723271,57.425983646842504],[-124.11996060939782,57.42596682819361],[-124.11988010361412,57.425951100272925],[-124.11980173591635,57.425934281529855],[-124.11972331295718,57.42591858328173],[-124.11964494539554,57.42590176444576],[-124.11956657790313,57.4258849455633],[-124.1194882104799,57.42586812663453],[-124.11940984312591,57.42585130765916],[-124.11933147584112,57.42583448863751],[-124.11925310862554,57.425817669569305],[-124.11917474147918,57.425800850454785],[-124.1190985124331,57.42578294053192],[-124.11902228345873,57.42576503056526],[-124.1189439718759,57.42574709077304],[-124.11886774304591,57.42572918071741],[-124.11879359696572,57.425711300401844],[-124.11871742363796,57.42569226971888],[-124.11864333306218,57.42567326877857],[-124.11856715988559,57.42565423800921],[-124.11849312482515,57.42563411644427],[-124.1184211725154,57.42561402462791],[-124.11834713761027,57.42559390298152],[-124.11827524082622,57.42557269054553],[-124.11820334412224,57.42555147807081],[-124.11813144749834,57.42553026555716],[-124.11806168899986,57.42550796225981],[-124.11799193058309,57.42548565892599],[-124.11792222763094,57.42546223501542],[-124.11785252476452,57.4254388110684],[-124.11778496003184,57.42541429634486],[-124.11771739538615,57.42538978158703],[-124.1176478589509,57.42536299591306],[-124.11757832261347,57.42533621020297],[-124.11750884176868,57.42530830391672],[-124.11743733376922,57.425279247249335],[-124.11736588127786,57.42524907000408],[-124.1172944843008,57.42521777218109],[-124.11722522549222,57.425185383589366],[-124.11715388415517,57.4251529651522],[-124.1170825429396,57.425120546677114],[-124.11701339530629,57.42508591689776],[-124.11694424779874,57.42505128708299],[-124.11687718305548,57.425016687047204],[-124.11681225648563,57.42498099625443],[-124.1167473854542,57.42494418489153],[-124.1166845971806,57.424907403315174],[-124.11662180902829,57.42487062171002],[-124.1165631862539,57.42483389971468],[-124.11650670164246,57.42479608697565],[-124.1164522997673,57.424758304034704],[-124.1163999806221,57.424720550894314],[-124.11635188224842,57.42468173684086],[-124.1163058111612,57.42464407313321],[-124.11626396082688,57.42460534852019],[-124.11622413775956,57.424567774258385],[-124.11618853542629,57.424529139097665],[-124.11615704295028,57.424491684118614],[-124.11612971575067,57.42445428878558],[-124.11610660924997,57.42441583256272],[-124.11608761256657,57.424378556529135],[-124.11607272568673,57.42434246068637],[-124.11606414206832,57.42430533378665],[-124.1160596682247,57.42426938708021],[-124.11606144217487,57.42423352985661],[-124.11607154649441,57.424197791942525],[-124.1160879540037,57.42416102297124],[-124.11611263640387,57.4241254938431],[-124.11614148393264,57.42409002436331],[-124.11617449657852,57.42405461452915],[-124.1162158949282,57.42401820344922],[-124.11625932035054,57.423982942719434],[-124.1163069662801,57.423946621085115],[-124.11635872184749,57.42391147961782],[-124.11641469789609,57.42387527723643],[-124.1164727564122,57.42383910465306],[-124.11653289738996,57.42380296186495],[-124.1165951208236,57.42376684886931],[-124.1166573995569,57.42372961530735],[-124.11672170531881,57.423693532071724],[-124.11678814893679,57.42365635808367],[-124.11685250986288,57.42361915424843],[-124.11691687066326,57.423581950382975],[-124.11698123133792,57.42354474648719],[-124.11704564729271,57.4235064220231],[-124.11710589800971,57.42346803790758],[-124.11716614860526,57.42342965376561],[-124.11722223397943,57.42339120997968],[-124.11727629209133,57.423351615825275],[-124.11732618499941,57.423311962035676],[-124.1173719127164,57.42327224861569],[-124.11741555779656,57.42323250537534],[-124.11745301056119,57.42319155216868],[-124.11748421563416,57.423150509539],[-124.11751131096192,57.42310828675704],[-124.11753210324132,57.4230670950972],[-124.11755086833583,57.423024753094055],[-124.11756963338858,57.42298241109004],[-124.11758637126319,57.422938918743945],[-124.11760305371097,57.42289654693502],[-124.1176197915097,57.42285305458796],[-124.11763444675168,57.42280953243809],[-124.11764904657312,57.42276713082565],[-124.11766370174864,57.42272360867578],[-124.11767627437919,57.42268005672405],[-124.11768890236668,57.422635384235534],[-124.11769939243267,57.422591802483545],[-124.11770993785959,57.422547100195004],[-124.11772042787717,57.42250351844469],[-124.11773097325496,57.42245881615778],[-124.11773943611105,57.422414084071214],[-124.11774784356368,57.42237047252283],[-124.11775630638031,57.422325740438495],[-124.11776274207034,57.422279858018015],[-124.11776912236218,57.42223509613608],[-124.11777550263898,57.422190334255404],[-124.11777980041848,57.42214554257624],[-124.11778618066774,57.42210078069861],[-124.11779053380644,57.42205486848562],[-124.11779483155298,57.4220100768111],[-124.11779918467089,57.42196416460141],[-124.11780139992706,57.42191934313045],[-124.11780575302669,57.421873430923945],[-124.11780802365085,57.42182748891966],[-124.11781023888867,57.421782667453726],[-124.11781250950203,57.421736725452966],[-124.11781269765244,57.42169075365446],[-124.11781491287682,57.421645932193755],[-124.11781510102385,57.421599960398765],[-124.11781737162048,57.42155401840495],[-124.11781755976409,57.421508046613546],[-124.1178177479073,57.42146207482396],[-124.11781788066988,57.421417223572455],[-124.11781806881223,57.42137125178642],[-124.11781825695412,57.4213252800021],[-124.11781844509557,57.42127930821975],[-124.1178185778567,57.421234456975164],[-124.11781668356728,57.421188455396965],[-124.11781687170995,57.42114248361988],[-124.11781700447246,57.421097632380466],[-124.11781511019174,57.4210516308075],[-124.11781524295603,57.4210067795716],[-124.11781543109953,57.42096080780161],[-124.11781348144798,57.42091592676974],[-124.11781366959316,57.420869955003305],[-124.1178138023585,57.420825103774284],[-124.11781185271583,57.42078022274766],[-124.117811985483,57.42073537152205],[-124.11781211824986,57.42069052029822],[-124.11781225101642,57.42064566907607],[-124.11781238378263,57.42060081785565],[-124.11781043415313,57.42055593683748],[-124.1178084845282,57.42051105582091],[-124.11780445251735,57.42046614500661],[-124.11780042051599,57.42042123419386],[-124.11779430613853,57.42037629358303],[-124.1177881917755,57.42033135297362],[-124.11778207742694,57.420286412365606],[-124.11777388071457,57.42024144195909],[-124.11776568402152,57.42019647155366],[-124.11775540497457,57.42015147134928],[-124.11774720832271,57.42010650094613],[-124.11773692932186,57.42006150074367],[-124.11772659496451,57.42001762107711],[-124.117716316012,57.41997262087641],[-124.11770395472274,57.41992759087548],[-124.11769367582126,57.4198825906765],[-124.11768131458801,57.41983756067681],[-124.11767103573757,57.41979256047956],[-124.11765867456027,57.41974753048139],[-124.11764839576087,57.4197025302856],[-124.11763597925663,57.41965862082322],[-124.11762570050801,57.41961362062914],[-124.11761542178371,57.419568620435996],[-124.11760514308368,57.41952362024372],[-124.1175948644079,57.419478620052416],[-124.11758458575645,57.41943361986203],[-124.1175763340764,57.41938977000988],[-124.11756605547082,57.41934476982141],[-124.11755994154264,57.41929982924071],[-124.11755174530477,57.41925485885792],[-124.11754563140789,57.41920991827993],[-124.1175394621404,57.419166098237426],[-124.11753543058907,57.419121187466054],[-124.11753139904725,57.41907627669626],[-124.11752736751491,57.419031365928056],[-124.1175253629163,57.41898760549917],[-124.11752549601452,57.41894275434207],[-124.11752562911245,57.41889790318671],[-124.11752784451215,57.41885308183685],[-124.11753000452188,57.41880938102237],[-124.11753430220861,57.41876458947959],[-124.11754068218006,57.41871982774208],[-124.11754700675243,57.41867618653964],[-124.11755338669418,57.418631424804865],[-124.11755976662093,57.41858666307153],[-124.11756817343455,57.41854305167634],[-124.11757871789466,57.418498349551705],[-124.11758718004968,57.41845361762509],[-124.11759766908054,57.41841003603576],[-124.11760821346924,57.41836533391388],[-124.11761875783318,57.41832063179287],[-124.11763132906201,57.41827708000819],[-124.11764395564269,57.41823240769068],[-124.11765658219377,57.41818773537368],[-124.1176691533355,57.418144183590236],[-124.11768177982779,57.41809951127409],[-124.1176964331703,57.418055989292725],[-124.11771114185763,57.41801134677829],[-124.11772585051048,57.41796670426403],[-124.11774050375152,57.41792318228268],[-124.11775521233594,57.417878539768445],[-124.11777194775621,57.41783504758702],[-124.11778873851401,57.417790434872224],[-124.11780339161541,57.41774691289031],[-124.11782018229754,57.417702300174874],[-124.11783697294031,57.41765768745905],[-124.11785370817024,57.417614195275355],[-124.11787258096716,57.41756961235696],[-124.11788931611775,57.41752612017194],[-124.11790610660192,57.41748150745393],[-124.11792492390063,57.417438045065545],[-124.11794171430428,57.41739343234622],[-124.11796053151885,57.41734996995601],[-124.11797732184199,57.41730535723552],[-124.11799619434126,57.41726077431097],[-124.11801501142814,57.41721731191782],[-124.11803180162903,57.41717269919545],[-124.1180506186318,57.41712923680043],[-124.11806949095804,57.41708465387206],[-124.1180862256708,57.417041161679904],[-124.11810509791172,57.41699657874972],[-124.11812183254514,57.41695308655637],[-124.11814070470078,57.4169085036244],[-124.11815749461837,57.416863890897616],[-124.11817631132521,57.41682042849592],[-124.11819310116229,57.41677581576791],[-124.11820983559826,57.41673232357142],[-124.11822870754155,57.41668774063519],[-124.11824544189817,57.416644248437414],[-124.11826223157665,57.41659963570711],[-124.11827693903868,57.41655499318451],[-124.11829367328195,57.416511500985514],[-124.11831046284543,57.41646688825416],[-124.11832511484177,57.41642336626294],[-124.11833982216207,57.416378723739996],[-124.11840658357626,57.41633482597505],[-124.11845832686622,57.41629968390854],[-124.1185100700607,57.416264541822706],[-124.11856181315972,57.416229399717636],[-124.1186135561633,57.41619425759324],[-124.1186652990714,57.41615911544954],[-124.11871704188407,57.41612397328653],[-124.11876878460124,57.41608883110417],[-124.11882052722298,57.41605368890253],[-124.11887226974926,57.416018546681634],[-124.11892401218009,57.415983404441306],[-124.11897580985355,57.41594714165027],[-124.1190275520919,57.415911999371325],[-124.1190772120941,57.41587682729392],[-124.1191289541434,57.4158416849773],[-124.11918069609725,57.415806542641405],[-124.11923243795562,57.41577140028611],[-124.1192842350473,57.415735137380025],[-124.11933597671319,57.41569999498612],[-124.11938563615429,57.415664822798604],[-124.11943737763117,57.41562968036694],[-124.1194891190126,57.41559453791598],[-124.11954091561948,57.415558274914176],[-124.11959265680841,57.41552313242472],[-124.11964231578203,57.415487960145526],[-124.11969405678194,57.41545281761814],[-124.11974585300108,57.41541655454014],[-124.11979551169432,57.41538138220626],[-124.11984725240818,57.415346239621776],[-124.11989904833662,57.41530997648661],[-124.11995078885796,57.415274833863634],[-124.12000044717733,57.41523966145668],[-124.12005224281504,57.415203398264445],[-124.12010398305033,57.41516825558428],[-124.12015364108936,57.41513308312265],[-124.12020538113562,57.41509794040472],[-124.1202571763856,57.41506167713614],[-124.12030683414426,57.415026504619775],[-124.12035857390451,57.41499136184483],[-124.12041036886377,57.41495509851925],[-124.12046002634209,57.41491992594828],[-124.12051176581627,57.414884783116136],[-124.12056356048485,57.41484851973354],[-124.1206132176828,57.414813347107916],[-124.12066495687097,57.41477820421866],[-124.12071675124882,57.41474194077907],[-124.12076640816645,57.41470676809865],[-124.12081814706856,57.41467162515244],[-124.12086994115572,57.41463536165569],[-124.12091959779302,57.4146001889207],[-124.12097133640908,57.41456504591735],[-124.12102313020553,57.41452878236356],[-124.12107486862914,57.41449363932159],[-124.12112452489252,57.414458466513494],[-124.1211762631271,57.41442332343368],[-124.12122805653584,57.41438705980357],[-124.12127979457793,57.41435191668524],[-124.12132945046743,57.414316743803916],[-124.12138118832053,57.41428160064784],[-124.12143298134156,57.41424533694139],[-124.12148471900217,57.41421019374663],[-124.12153437451776,57.41417502079212],[-124.12158611198937,57.41413987755963],[-124.1216379046227,57.414103613776874],[-124.12168964190184,57.41406847050565],[-124.12174137908553,57.41403332721527],[-124.12179311617379,57.4139981839055],[-124.12184277112836,57.413963010840895],[-124.12189450802761,57.41392786749335],[-124.12194630007914,57.413891603595665],[-124.12199803678594,57.413856460209516],[-124.1220497733973,57.41382131680403],[-124.12210150991316,57.41378617337927],[-124.12215324633361,57.41375102993514],[-124.1222049826586,57.413715886471856],[-124.12225671888818,57.4136807429892],[-124.12230845502229,57.41364559948715],[-124.12236019106096,57.41361045596589],[-124.1224119270042,57.413575312425344],[-124.12246366285196,57.413540168865346],[-124.12251539860429,57.41350502528622],[-124.12256921627305,57.413469911411674],[-124.12262095183263,57.41343476779299],[-124.12267268729677,57.413399624155],[-124.12272436744134,57.41336560102853],[-124.12277610271616,57.413330457352],[-124.12282991989807,57.413295343375935],[-124.1228816549801,57.41326019965994],[-124.12293338996672,57.413225055924606],[-124.12298715163867,57.41319106241798],[-124.12303888643407,57.4131559186433],[-124.12309062113405,57.41312077484925],[-124.12314443772992,57.41308566075076],[-124.12319611702735,57.41305163744782],[-124.12324993342831,57.41301652330824],[-124.12330161253777,57.41298249996595],[-124.12335542874386,57.41294738578526],[-124.1234071628687,57.41291224187288],[-124.12346092367652,57.41287824818158],[-124.12351473958854,57.41284313393886],[-124.12356641822635,57.4128091104974],[-124.12362017874653,57.412775116744015],[-124.1236739943661,57.41274000243919],[-124.12372775469282,57.412706008643745],[-124.1237794881465,57.412670864592215],[-124.12383324828153,57.41263687075559],[-124.12388700832065,57.41260287689812],[-124.12394076826382,57.41256888301962],[-124.12399458329664,57.41253376858968],[-124.12404834304633,57.41249977466914],[-124.12410210270009,57.41246578072767],[-124.1241558622579,57.41243178676516],[-124.12420962171981,57.41239779278172],[-124.12426546303851,57.41236382847433],[-124.12431922230675,57.412329834448066],[-124.12437298147904,57.41229584040071],[-124.12442674055539,57.412261846332406],[-124.12448258148132,57.41222788193672],[-124.12453634036402,57.4121938878256],[-124.12459009915078,57.41215989369341],[-124.12464593978166,57.41212592923134],[-124.12469964321056,57.412093055586666],[-124.12475548364584,57.41205909108006],[-124.12481132398156,57.41202512655055],[-124.1248671090586,57.41199228252878],[-124.12492294919689,57.411958317953804],[-124.12497873407989,57.4119254738865],[-124.12503451886673,57.411892629796434],[-124.12509238548323,57.41185981536762],[-124.12515025200005,57.411827000914116],[-124.1252080632684,57.41179530696655],[-124.12526592958763,57.41176249246401],[-124.12532379580719,57.411729677936954],[-124.12538160678352,57.41169798391566],[-124.1254414995792,57.411666319548196],[-124.12549936550148,57.411633504946515],[-124.12555925809795,57.41160184052722],[-124.12561915059489,57.41157017608139],[-124.12567904299225,57.41153851160916],[-124.1257388801573,57.411507967640745],[-124.12579877235738,57.41147630311572],[-124.1258607463617,57.411444668235966],[-124.125920638361,57.411413003657074],[-124.12598047513528,57.41138245958206],[-124.12604244883607,57.411350824619284],[-124.12610436731221,57.41132031015823],[-124.12616628568917,57.41128979566897],[-124.12622617719111,57.41125813095515],[-124.12628809536946,57.41122761641008],[-124.12635001344864,57.411197101836684],[-124.12641193142866,57.41116658723487],[-124.12647384930948,57.41113607260474],[-124.1265378489769,57.411105587607274],[-124.12659976665778,57.41107507291941],[-124.12666168423944,57.41104455820321],[-124.12672360172195,57.41101404345861],[-124.12678760098457,57.4109835583428],[-124.12684951826711,57.41095304354049],[-124.1269114354505,57.41092252870994],[-124.1269754344091,57.41089204350502],[-124.12703735139249,57.41086152861665],[-124.12710129505619,57.41083216388226],[-124.12716321184149,57.410801648936186],[-124.12722721039562,57.41077116361189],[-124.12728912698095,57.410740648608204],[-124.12735104346712,57.41071013357603],[-124.12741498663497,57.41068076869285],[-124.12747690292302,57.410650253603094],[-124.12754090097191,57.41061976813015],[-124.12760281706,57.41058925298252],[-124.12766473304892,57.41055873780664],[-124.12772867572095,57.41052937277476],[-124.12779059151175,57.41049885754119],[-124.1278525072034,57.41046834227915],[-124.12791442279588,57.41043782698886],[-124.12797633828916,57.410407311670134],[-124.1280382536833,57.41037679632316],[-124.12810016897825,57.41034628094774],[-124.12816208417404,57.41031576554397],[-124.12822399927065,57.41028525011185],[-124.12828596932414,57.4102536141213],[-124.12834580238159,57.410223069000004],[-124.12840771718045,57.410192553483775],[-124.12846755004442,57.41016200830874],[-124.12852951969528,57.41013037220669],[-124.12858935236396,57.41009982697779],[-124.12864923998183,57.41006816119248],[-124.12870907245686,57.41003761591076],[-124.12876895987743,57.410005950072446],[-124.1288288471985,57.40997428420789],[-124.12888873442002,57.40994261831678],[-124.12894653971964,57.4099109227764],[-124.12900642674376,57.409879256833435],[-124.12906423184936,57.40984756124302],[-124.12912203685876,57.40981586562807],[-124.12917984177204,57.40978416998848],[-124.12923770161647,57.40975135379434],[-124.12929550633565,57.40971965810571],[-124.12935128417207,57.40968681224604],[-124.12940914372102,57.40965399597919],[-124.12946492136336,57.40962115007318],[-124.12952069890956,57.409588304144364],[-124.12957647635957,57.40955545819279],[-124.12963017191178,57.409522582606435],[-124.12968594917122,57.40948973661031],[-124.1297396995485,57.40945574045105],[-124.12979339481933,57.40942286480083],[-124.12984714500642,57.40938886859971],[-124.1299008950976,57.40935487237748],[-124.12995256330196,57.40932084652737],[-124.13000423141403,57.40928682065796],[-124.13005589943384,57.409252794769216],[-124.13010762236237,57.409217648331214],[-124.13015726341196,57.409182472270246],[-124.13020893115362,57.40914844632438],[-124.13025857201954,57.40911327022722],[-124.1303082127938,57.40907809411241],[-124.13035582669383,57.40904176784947],[-124.13040338551109,57.40900656210026],[-124.13045099923099,57.40897023580506],[-124.13049861286011,57.40893390949377],[-124.13054622639845,57.40889758316635],[-124.13059175807972,57.408861227225955],[-124.13063728967413,57.40882487127091],[-124.13068079440275,57.408787365176124],[-124.13072632582391,57.40875100919256],[-124.13076983038059,57.408713503070615],[-124.1308133348516,57.40867599693547],[-124.13085481246084,57.408637340664846],[-124.13089831676123,57.408599834504074],[-124.13093973922581,57.40856229873868],[-124.13098121658302,57.40852364243189],[-124.13102269385612,57.40848498611331],[-124.13106208930105,57.40844630019355],[-124.13110148466602,57.40840761426321],[-124.13114087995098,57.40836892832231],[-124.1311803301241,57.4083291218414],[-124.13121972524786,57.40829043587946],[-124.1312570935239,57.408250599791224],[-124.13129446172182,57.40821076369385],[-124.13133182984164,57.408170927587115],[-124.13136919788327,57.40813109147106],[-124.13140656584682,57.408091255345745],[-124.13144185200952,57.40805138962767],[-124.13147921981893,57.40801155348451],[-124.13151456078963,57.407970567220445],[-124.13154990168428,57.40792958094835],[-124.1315851875473,57.40788971519736],[-124.13161844657924,57.407848699328476],[-124.13165378724915,57.40780771303263],[-124.1316870461357,57.40776669714928],[-124.1317203049506,57.40772568125895],[-124.13175356369395,57.407684665361614],[-124.1317868223657,57.4076436494572],[-124.13182013591414,57.40760151301675],[-124.13185339444163,57.40756049709843],[-124.13188462614985,57.40751833106779],[-124.13191788453534,57.40747731513605],[-124.131949116104,57.40743514909305],[-124.13198237434749,57.40739413314786],[-124.13201360577662,57.407351967092524],[-124.13204483713663,57.40730980103126],[-124.1320760684275,57.40726763496405],[-124.13210729964929,57.40722546889083],[-124.13213853080195,57.40718330281183],[-124.13216768021195,57.40714110715505],[-124.13219891122864,57.40709894106466],[-124.13223014217621,57.40705677496839],[-124.13225929138801,57.40701457929579],[-124.13229052219964,57.40697241318813],[-124.13231967128,57.406930217505085],[-124.13235095688735,57.40688693085754],[-124.13238010583541,57.40684473516418],[-124.13240925471892,57.40680253946583],[-124.13244054011967,57.40675925280163],[-124.13246968887087,57.40671705709299],[-124.13249883755752,57.40667486137938],[-124.13253012275169,57.40663157469846],[-124.13255927130602,57.40658937897453],[-124.13258841979584,57.406547183245586],[-124.13261762314433,57.40650386698326],[-124.13264885314089,57.406461700808755],[-124.13267800143383,57.406419505064534],[-124.13270720458267,57.40637618878703],[-124.13273635274557,57.406333993032895],[-124.13276758247156,57.406291826836096],[-124.13279678542071,57.40624851054341],[-124.13282593338675,57.40620631477394],[-124.13285716290896,57.40616414856044],[-124.13288631074366,57.40612195278058],[-124.13291759504374,57.406078666027646],[-124.13294674274611,57.40603647023747],[-124.13297797199546,57.405994304001354],[-124.13300711956646,57.40595210820078],[-124.13303834867985,57.40590994195325],[-124.13306957772413,57.4058677756999],[-124.1331008066993,57.40582560944055],[-124.13313203560537,57.40578344317532],[-124.13316326444233,57.40574127690412],[-124.13319449321018,57.40569911062709],[-124.13322566700475,57.40565806487195],[-124.13325689563536,57.405615898583],[-124.1332901508835,57.40557488236995],[-124.13332137937456,57.40553271606863],[-124.13335463448071,57.4054916998422],[-124.13338794441437,57.40544956308111],[-124.1334211993763,57.405408546840654],[-124.13345445426665,57.40536753059324],[-124.13348770908539,57.40532651433884],[-124.13353186575036,57.40527556108072],[-124.12892657609808,57.40001060593253],[-124.10257612355926,57.36984556351445],[-124.10267787946748,57.36976630066454],[-124.10268426867715,57.36972154148588],[-124.10269065787182,57.3696767823086],[-124.10269699130235,57.36963314361388],[-124.10270338046728,57.36958838443934],[-124.10270976961723,57.36954362526604],[-124.10271823834834,57.36949889613111],[-124.1027245717178,57.36945525744155],[-124.10273304041196,57.36941052830899],[-124.1027394294973,57.369365769140884],[-124.10274789815415,57.36932104001076],[-124.10275423146012,57.3692774013261],[-124.10276270008,57.36923267219826],[-124.10277116868004,57.369187943071466],[-124.1027796372602,57.369143213945875],[-124.1027880500748,57.36909960530215],[-124.10279651861555,57.36905487617864],[-124.10280498713642,57.36901014705633],[-124.10281345563746,57.36896541793507],[-124.10282192411862,57.36892068881497],[-124.10283033683581,57.36887708017656],[-124.10283880527756,57.36883235105863],[-124.10284727369945,57.36878762194176],[-124.10285782165654,57.36874292286086],[-124.10286629003629,57.36869819374622],[-124.10287678220395,57.3686546151475],[-124.10288525054186,57.368609886034726],[-124.10289579840531,57.368565186957426],[-124.10290426670106,57.36852045784677],[-124.10291481451749,57.36847575877118],[-124.10292536230922,57.36843105969646],[-124.10293377480015,57.368387451069154],[-124.10294432254524,57.368342751996074],[-124.1029548702656,57.368298052923876],[-124.10296541796123,57.368253353852545],[-124.10297596563215,57.36820865478193],[-124.10298651327837,57.3681639557121],[-124.10299700516171,57.36812037712308],[-124.10300755275885,57.3680756780549],[-124.10301810033127,57.36803097898752],[-124.10302864787897,57.36798627992086],[-124.10304127491347,57.36794161088703],[-124.1030518224093,57.367896911821816],[-124.10306236988038,57.36785221275753],[-124.10307286159134,57.36780863417366],[-124.10308548851526,57.36776396514213],[-124.10309603591016,57.367719266079945],[-124.10310866277736,57.36767459704949],[-124.10311921012038,57.367629897988806],[-124.10313183693086,57.367585228959456],[-124.10314238422202,57.36754052990018],[-124.10315501097575,57.36749586087189],[-124.10316550248287,57.367452282293485],[-124.10317812918035,57.36740761326622],[-124.10319075584825,57.36736294423929],[-124.10320338248657,57.36731827521286],[-124.10321392962008,57.36727357615777],[-124.10322655620169,57.36722890713253],[-124.1032391827537,57.36718423810756],[-124.10325180927617,57.36713956908313],[-124.1032643800403,57.36709602053821],[-124.10327700650406,57.36705135151456],[-124.10328755347749,57.36700665246342],[-124.10330017988453,57.36696198344088],[-124.10331280626197,57.36691731441872],[-124.10332543260986,57.36687264539708],[-124.10333805892819,57.36682797637583],[-124.10335276466559,57.36678333738202],[-124.10336539092232,57.36673866836145],[-124.10337796142467,57.366695119820136],[-124.10339058762273,57.366650450800414],[-124.1034032137912,57.3666057817811],[-124.1034158399301,57.36656111276221],[-124.10342846603943,57.36651644374381],[-124.10344317155092,57.366471804751384],[-124.10345579759868,57.36642713573358],[-124.10346842361687,57.36638246671636],[-124.10348099388422,57.366338918178016],[-124.1034956992658,57.36629427918617],[-124.10350832519329,57.36624961016999],[-124.10352095109121,57.366204941154116],[-124.10353565637438,57.3661603021628],[-124.10354828221074,57.36611563314774],[-124.10356090801754,57.366070964133016],[-124.1035756132023,57.366026325142144],[-124.1035881832299,57.365982776606415],[-124.103600808946,57.36593810759283],[-124.10361551403287,57.365893468602366],[-124.10362813968737,57.36584879958948],[-124.10364284470784,57.36580416059929],[-124.1036554703008,57.365759491587035],[-124.10367011954,57.36571597307512],[-124.10368274507185,57.3656713040635],[-124.10369744995997,57.36562666507373],[-124.10371007543024,57.365581996062794],[-124.10372270087095,57.36553732705221],[-124.10373740566068,57.36549268806295],[-124.1037499753277,57.365449139530895],[-124.10376468005154,57.36540450054186],[-124.10377730536955,57.365359831532665],[-124.10379201002694,57.36531519254387],[-124.1038046352834,57.36527052353527],[-124.1038193398744,57.36522588454674],[-124.10383190936,57.3651823360164],[-124.10384661388507,57.365137697028025],[-124.10385923901887,57.365093028020794],[-124.10387394347754,57.36504838903266],[-124.10388656854975,57.36500372002609],[-124.10390121723509,57.36496020151562],[-124.10391384224616,57.364915532509634],[-124.10392854657255,57.364870893521946],[-124.10394117152207,57.36482622451675],[-124.10395582007695,57.36478270600655],[-124.10396844496536,57.36473803700188],[-124.1039810698242,57.364693367997674],[-124.10399577398626,57.36464872901064],[-124.10400834308027,57.364605180484276],[-124.10402304717643,57.36456054149743],[-124.1040356719126,57.36451587249454],[-124.10404829661918,57.364471203492045],[-124.10406294491554,57.364427684982694],[-124.104075569561,57.3643830159809],[-124.10409027349284,57.364338376994695],[-124.10410284237673,57.36429482847045],[-124.10411546693153,57.364250159469734],[-124.10412809145674,57.364205490469345],[-124.10414279525872,57.36416085148391],[-124.10415536402414,57.36411730296096],[-124.10417006776021,57.36407266397569],[-124.10418471576462,57.36402914546706],[-124.10419941943235,57.363984506481756],[-124.10421412306567,57.36393986749641],[-124.10423085026076,57.363896379000664],[-124.10424555382335,57.363851740015086],[-124.10426228094398,57.36380825151847],[-124.10427906372057,57.36376364254479],[-124.1042957907644,57.36372015404709],[-124.10431251777007,57.36367666554883],[-124.10432930043001,57.363632056573614],[-124.10434602735887,57.363588568074235],[-124.10436488921374,57.363543989108905],[-124.1043816160634,57.36350050060806],[-124.10440042214307,57.36345704211705],[-124.10441928386935,57.3634124631487],[-124.10443601059931,57.363368974645724],[-124.10445481655219,57.36332551615171],[-124.10447362246221,57.36328205765649],[-124.10449248401642,57.363237478684084],[-124.10451336909404,57.363194050195084],[-124.10453217487255,57.363150591696225],[-124.10455098060821,57.36310713319622],[-124.10456984198554,57.36306255421918],[-124.10459072687931,57.36301912572418],[-124.10460953248348,57.36297566722053],[-124.10462833804476,57.36293220871567],[-124.10464927848255,57.36288765974023],[-124.10466808395519,57.362844201232896],[-124.10468896861758,57.36280077273013],[-124.10470777400218,57.36275731422026],[-124.10472657934393,57.362713855709224],[-124.10474751954713,57.362669306726204],[-124.10476632480021,57.3626258482126],[-124.10478720923125,57.36258241970205],[-124.1048060143963,57.36253896118595],[-124.10482689873457,57.362495532672185],[-124.1048457594871,57.362450953677936],[-124.10486456452065,57.36240749515819],[-124.10488336951136,57.362364036637295],[-124.10490425366582,57.36232060811749],[-124.10492305856847,57.36227714959402],[-124.1049419191007,57.36223257059402],[-124.10496072391706,57.36218911206823],[-124.10498160788771,57.36214568354247],[-124.1050024918108,57.362102255014875],[-124.10502551054846,57.36205773601075],[-124.10504847356344,57.36201433747932],[-124.10507351571388,57.361970968945016],[-124.10510069266,57.36192650993167],[-124.10512573469344,57.36188314139064],[-124.10515285585053,57.36183980284465],[-124.105179976946,57.361796464294656],[-124.10520923281958,57.36175203526304],[-124.10523635378863,57.36170869670454],[-124.10526555386721,57.36166538813856],[-124.1052947538795,57.361622079567624],[-124.10532400948571,57.36157765051692],[-124.10535320936448,57.36153434193614],[-124.10538033001518,57.36149100335569],[-124.10540958542121,57.361446574290696],[-124.1054387851025,57.36140326569551],[-124.10546590556284,57.361359927102086],[-124.10549302596152,57.36131658850467],[-124.10552014629863,57.36127324990313],[-124.10554524307962,57.36122876083082],[-124.10557028414969,57.36118539223002],[-124.10559532516281,57.361142023625916],[-124.10561828697847,57.36109862502779],[-124.10563916960363,57.361055196436446],[-124.10566010783076,57.36101064736897],[-124.10567891122673,57.36096718878423],[-124.10569771457982,57.36092373019835],[-124.10571443876138,57.360880241622056],[-124.10572908377837,57.3608367230559],[-124.10574164963796,57.3607931745008],[-124.10575421546886,57.36074962594604],[-124.10576262303249,57.36070601741432],[-124.1057710305769,57.36066240888368],[-124.10577735898754,57.36061877036573],[-124.10577952915938,57.36057507187228],[-124.10578169932624,57.360531373380475],[-124.10577971127331,57.36048761491347],[-124.10577564411996,57.36044382645958],[-124.10576949787333,57.36040000801867],[-124.10576127254056,57.36035615959035],[-124.10575304722673,57.36031231116316],[-124.10574274283638,57.360268432748114],[-124.10573446191655,57.36022570479676],[-124.10572415757096,57.360181826383304],[-124.10571385324907,57.36013794797075],[-124.10570354895088,57.360094069558905],[-124.10569324467642,57.36005019114781],[-124.10568086134454,57.36000628274759],[-124.10567050147218,57.35996352481152],[-124.1056581181946,57.35991961641233],[-124.10564573494555,57.359875708013504],[-124.10563335172498,57.359831799615215],[-124.10561888946378,57.359787861226444],[-124.10560650630262,57.35974395282872],[-124.10559198845606,57.359701134913465],[-124.105579605354,57.359657226516354],[-124.10556514322087,57.35961328812795],[-124.10555068112106,57.359569349739516],[-124.10553413999979,57.359525381358935],[-124.105519677969,57.359481442970214],[-124.10550516031975,57.35943862505468],[-124.10548861930762,57.359394656673075],[-124.10547207833362,57.359350688290995],[-124.10545553739772,57.359306719908346],[-124.10543894084651,57.35926387199807],[-124.10542239998647,57.3592199036145],[-124.10540585916452,57.35917593523036],[-124.10538931838073,57.359131966845766],[-124.10537069860423,57.35908796846595],[-124.10535410224345,57.359045120552636],[-124.10533548254996,57.3590011221708],[-124.10531686289941,57.35895712378814],[-124.1052982432918,57.35891312540434],[-124.10527956806958,57.358870247491815],[-124.10526094854738,57.35882624910586],[-124.10524232906813,57.35878225071897],[-124.1052216306202,57.35873822233374],[-124.10520301122925,57.35869422394439],[-124.1051843362212,57.358651346026086],[-124.1051636379112,57.358607317636505],[-124.105142939649,57.35856328924533],[-124.10512432043416,57.35851929085112],[-124.1051035666029,57.35847638292877],[-124.10508286848102,57.35843235453292],[-124.10506217040692,57.358388326135305],[-124.1050414723806,57.35834429773598],[-124.10502071873772,57.358301389806776],[-124.10500002080639,57.35825736140412],[-124.10497724394,57.35821330299881],[-124.10495654610662,57.35816927459257],[-124.10493579265444,57.35812636665604],[-124.10491301594041,57.35808230824442],[-124.10489231825223,57.358038279832655],[-124.10486948597266,57.35799534188803],[-124.10484878838187,57.35795131347267],[-124.10482601187282,57.35790725505223],[-124.10480531437997,57.35786322663319],[-124.1047824823031,57.357820288679626],[-124.10475970594882,57.357776230252405],[-124.10473900860357,57.35773220182765],[-124.1047162323521,57.357688143396224],[-124.10469340048023,57.35764520543332],[-124.10467062433335,57.357601146997034],[-124.10464784823907,57.35755708855844],[-124.10462709546704,57.35751418059483],[-124.10460431947494,57.35747012215189],[-124.10458154353543,57.35742606370649],[-124.10455876764856,57.35738200525879],[-124.10453593613707,57.3573390672794],[-124.10451316035476,57.35729500882695],[-124.10449246355508,57.35725098038074],[-124.10446968787556,57.35720692192399],[-124.10444685656911,57.35716398393529],[-124.10442408099418,57.35711992547373],[-124.10440130547185,57.357075867009875],[-124.10437853000214,57.357031808543525],[-124.10435777781869,57.35698890055595],[-124.10433500245112,57.356944842085255],[-124.10431222713618,57.3569007836123],[-124.10428939619013,57.35685784560706],[-124.1042686998858,57.35681381714147],[-124.10424592472559,57.3567697586618],[-124.10422314961802,57.356725700179645],[-124.10420239777578,57.35668279217839],[-124.10417962277039,57.3566387336919],[-124.10415892671158,57.356594705216985],[-124.10413615180893,57.35655064672617],[-124.10411540015976,57.3565077387173],[-124.1040926253593,57.35646368022208],[-124.10407192949582,57.35641965173982],[-124.10405123368011,57.35637562325581],[-124.10403048222163,57.356332715239745],[-124.10400978650088,57.35628868675245],[-124.10398701195314,57.356244628246905],[-124.1039662606381,57.35620172022526],[-124.10394764393256,57.35615772174988],[-124.10392694840235,57.35611369325591],[-124.10390625291986,57.356069664760184],[-124.10388550179083,57.35602675673198],[-124.10386688526377,57.35598275825151],[-124.10384618992161,57.35593872975114],[-124.10382757348285,57.35589473126819],[-124.10380687823381,57.3558507027648],[-124.10378820618644,57.355807824748446],[-124.10376958987838,57.35576382626211],[-124.10366804257677,57.35571414505869],[-124.10360712546317,57.35568411220608],[-124.10354412960318,57.35565404930237],[-124.10348321268303,57.35562401639396],[-124.10342229585879,57.355593983457936],[-124.1033614348395,57.355562830025875],[-124.1033005182088,57.35553279703487],[-124.103239601674,57.355502764016364],[-124.10317666211735,57.35547158047265],[-124.10311574577776,57.355441547398186],[-124.10305488525191,57.35541039382796],[-124.10299396910584,57.355380360698646],[-124.10293305305571,57.355350327541615],[-124.1028721928245,57.35531917388918],[-124.1028112769679,57.3552891406773],[-124.10274828238704,57.35525907740169],[-124.10268736672391,57.35522904413384],[-124.10262645115667,57.35519901083847],[-124.10256345687024,57.355168947476486],[-124.10250254149645,57.35513891412511],[-124.10243954740689,57.35510885070518],[-124.10237863222656,57.35507881729782],[-124.10231563833385,57.355048753819865],[-124.10225258879954,57.35501981078015],[-124.10218953936091,57.35499086771069],[-124.10212654576235,57.35496080414422],[-124.10206349651683,57.35493186101577],[-124.10200044736693,57.35490291785765],[-124.10193526376428,57.354875065088265],[-124.1018722148055,57.35484612186995],[-124.10180703139346,57.35481826903823],[-124.10174184807657,57.35479041617473],[-124.10167666485486,57.354762563279564],[-124.10161148172831,57.35473471035256],[-124.10154416414666,57.35470794780569],[-124.10147898121014,57.354680094814256],[-124.10141166381776,57.35465333220063],[-124.10134434651981,57.354626569553076],[-124.10127702931632,57.35459980687166],[-124.10120965643645,57.35457416462298],[-124.10114233941987,57.35454740187368],[-124.10107496672302,57.354521759556974],[-124.10100764989338,57.35449499673971],[-124.10093819860391,57.35446932429025],[-124.10087082618213,57.354443681870514],[-124.10080143086068,57.354416888883435],[-124.10073405862339,57.35439124639465],[-124.10066460770688,57.354365573802674],[-124.10059723565212,57.35433993124476],[-124.10052778492104,57.35431425858148],[-124.10046041304884,57.35428861595456],[-124.10039101829761,57.35426182275395],[-124.10032156784744,57.35423614998333],[-124.10025419625175,57.354210507252226],[-124.10018682474661,57.3541848644871],[-124.10011743037617,57.35415807114425],[-124.10005005905553,57.35413242831011],[-124.09998274363157,57.35410566497605],[-124.09991537249398,57.35408002207392],[-124.09984805725695,57.35405325867209],[-124.09978074211436,57.35402649523634],[-124.09971342706618,57.353999731766635],[-124.09964819086005,57.35397299834838],[-124.09958087599924,57.35394623481196],[-124.09951569579702,57.35391838086364],[-124.09945051568998,57.353890526883625],[-124.09938527985474,57.35386379333707],[-124.09932015576135,57.35383481882833],[-124.09925705467803,57.35380699484461],[-124.09919193077894,57.35377802027365],[-124.09912882988306,57.35375019622964],[-124.09906786364513,57.35372128178542],[-124.09900487460207,57.35369121675322],[-124.09894396438834,57.35366118178793],[-124.09888299843273,57.353632267260004],[-124.0988221442485,57.35360111177491],[-124.09876123432241,57.35357107672711],[-124.09870245905846,57.353539951287374],[-124.09864160516888,57.353508795720956],[-124.09858283009845,57.353477670229196],[-124.09852411097192,57.35344542424754],[-124.09846539194464,57.35341317824042],[-124.09840667301658,57.35338093220789],[-124.0983479541878,57.353348686150035],[-124.09828923545824,57.35331644006665],[-124.09823265139325,57.353283103601456],[-124.0981760674271,57.35324976711275],[-124.09811948355984,57.35321643060053],[-124.09806289979143,57.353183094064875],[-124.09800637198467,57.353148637041706],[-124.0979497884156,57.35311530045917],[-124.09789533950907,57.35308087350219],[-124.09784089070075,57.35304644652366],[-124.09778649785974,57.35301089905983],[-124.09773412794128,57.35297650215362],[-124.09767973529944,57.352940954647536],[-124.09762742144677,57.35290543723725],[-124.09757718637738,57.35286994992507],[-124.09752487271751,57.35283443247598],[-124.09747469371486,57.3527978246632],[-124.09742445892917,57.35276233729583],[-124.09737428011762,57.35272572944684],[-124.09732618007823,57.35268915170182],[-124.09727808013102,57.352652573940276],[-124.09723211483256,57.35261490582257],[-124.09718401506912,57.352578328028784],[-124.09713804995295,57.35254065988039],[-124.09709416359303,57.35250302184266],[-124.0970502773197,57.352465383791554],[-124.09700639113292,57.35242774572687],[-124.09696256092505,57.35238898718586],[-124.09692075356979,57.35235137922267],[-124.09688108084657,57.35231268091354],[-124.0968414082038,57.35227398259372],[-124.09680173564152,57.352235284263145],[-124.09676627635463,57.352195525720866],[-124.09672873849532,57.352155737038856],[-124.09669541390227,57.35211488814905],[-124.09666203347989,57.352075159714474],[-124.09662870902864,57.35203431081037],[-124.09659751918855,57.35199237157032],[-124.0965662735137,57.35195155278654],[-124.09653716244262,57.35190964366894],[-124.09650805143549,57.35186773454637],[-124.09648107502608,57.35182473509203],[-124.0964540427711,57.35178285609569],[-124.09642706648253,57.35173985663323],[-124.09640009025479,57.35169685716669],[-124.0963751927065,57.35165388783318],[-124.09635029521431,57.351610918496455],[-124.09632539777817,57.351567949156475],[-124.09630055630862,57.35152385935164],[-124.0962756589853,57.35148089000525],[-124.09625076171804,57.351437920655826],[-124.09622799902375,57.3513938609808],[-124.09620310186698,57.351350891625394],[-124.09617826068,57.35130680180518],[-124.09615544223328,57.3512638625838],[-124.09613060115802,57.3512197727578],[-124.09610570422448,57.35117680339005],[-124.0960808632634,57.35113271355772],[-124.09605596644265,57.351089744183575],[-124.09603106967796,57.35104677480627],[-124.09600617296935,57.35100380542575],[-124.0959791977362,57.350960805898765],[-124.09595216664398,57.350918926828776],[-124.09592519153169,57.35087592729381],[-124.0958960819852,57.35083401807112],[-124.09586702842483,57.350790988382485],[-124.09583999757602,57.3507491092953],[-124.09581307863374,57.35070498928237],[-124.09578610382938,57.350661989726326],[-124.09575918501089,57.35061786970547],[-124.09573226625463,57.35057374968071],[-124.09570748204399,57.35052853933893],[-124.09568269789209,57.350483328994216],[-124.0956579137989,57.35043811864643],[-124.09563526424222,57.3503918179839],[-124.09561261474053,57.350345517319255],[-124.09558788674951,57.35029918650303],[-124.09556523736025,57.350252885833726],[-124.09554472249593,57.350205494852034],[-124.095522129146,57.35015807371869],[-124.09550161438618,57.35011068273403],[-124.09547907707845,57.35006214113673],[-124.09545856242366,57.35001475014918],[-124.09543810375338,57.349966238700134],[-124.0954176451351,57.34991772724979],[-124.09539932102406,57.34986812549085],[-124.09537886250769,57.34981961403855],[-124.0953584599789,57.34976998212512],[-124.09534013601575,57.34972038036381],[-124.09532175616371,57.34967189906172],[-124.09530348823233,57.34962117683979],[-124.09528308590768,57.34957154492268],[-124.09526476213779,57.349521943159],[-124.09524643841551,57.34947234139478],[-124.09523024917596,57.34942164932573],[-124.09521192554672,57.349372047560784],[-124.09519365790486,57.34932132533606],[-124.09517539031155,57.34927060311082],[-124.09515706682615,57.349221001344375],[-124.09513879932952,57.3491702791183],[-124.0951226103611,57.34911958704851],[-124.0951043429588,57.349068864821824],[-124.0950860196626,57.34901926305365],[-124.09506775235695,57.34896854082601],[-124.0950515635685,57.348917848755924],[-124.09503324041339,57.34886824698654],[-124.09501497325019,57.34881752475791],[-124.09499670613553,57.34876680252873],[-124.09497838312426,57.34871720075782],[-124.09496006016062,57.34866759898646],[-124.09494179319071,57.348616876755905],[-124.09492347032278,57.34856727498351],[-124.0949051475025,57.34851767321054],[-124.09488474628583,57.348468041276504],[-124.09486642356349,57.34841843950211],[-124.09484596650168,57.34836992802444],[-124.09482764387685,57.3483203262487],[-124.09480718691691,57.348271814768815],[-124.09478673000899,57.34822330328775],[-124.09476627315307,57.348174791805285],[-124.09474581634916,57.348126280321765],[-124.09472322522288,57.34807885913171],[-124.09470271257283,57.348031468103095],[-124.09468012155624,57.34798404690939],[-124.09465753059578,57.347936625713665],[-124.09463488373741,57.347890324973605],[-124.09461223693401,57.347844024231435],[-124.09458751177829,57.347797693321915],[-124.0945648650873,57.347751392575056],[-124.09454008409251,57.347706182117705],[-124.09451530315646,57.34766097165732],[-124.09448838792386,57.34761685148461],[-124.09446360710706,57.347571641017765],[-124.09443663603786,57.34752864129508],[-124.09440972098956,57.34748452111101],[-124.09438275004264,57.34744152138024],[-124.09435370077118,57.347398491476625],[-124.09432459560284,57.347356582025206],[-124.09429549049842,57.34731467256878],[-124.09426425111549,57.34727385339409],[-124.09423301179936,57.347233034213275],[-124.09420177255005,57.347192215026446],[-124.09417047740097,57.347152516290464],[-124.09413704797983,57.34711390783278],[-124.09410361862633,57.34707529936783],[-124.09407018934048,57.347036690895564],[-124.0940346257886,57.3469991726988],[-124.09399900633527,57.34696277495013],[-124.09396130859058,57.346926347017906],[-124.09392361091784,57.346889919075785],[-124.09388585734254,57.34685461158051],[-124.09384596950802,57.34682039435494],[-124.09380608174507,57.346786177118176],[-124.09376613807571,57.34675308032661],[-124.09372411612776,57.346719953344994],[-124.09367995992638,57.3466879166275],[-124.0936378261619,57.34665703053238],[-124.0935915357803,57.3466260840628],[-124.09354726783062,57.346596288215345],[-124.0935008656253,57.34656758262742],[-124.09345238515196,57.34653884684066],[-124.09340384876344,57.346511231492684],[-124.09335525645561,57.34648473658327],[-124.0933045298909,57.34645933192681],[-124.0932517250618,57.346433897064955],[-124.09319886430903,57.346409582638316],[-124.09314600362363,57.34638526819073],[-124.09309095268343,57.34636316444491],[-124.09303382348031,57.34634103048677],[-124.09297663834298,57.346320016959694],[-124.09291945326864,57.346299003408134],[-124.0928579996033,57.34628017035799],[-124.09279862432074,57.346261367472934],[-124.09273503644708,57.34624362462778],[-124.09267347094347,57.34622703240297],[-124.09260982717413,57.34621040995296],[-124.09254618346026,57.34619378747254],[-124.09248040546966,57.34617825521815],[-124.09241670584908,57.34616275313055],[-124.09235092796469,57.34614722081168],[-124.09228509411332,57.34613280891522],[-124.09221931633408,57.34611727653088],[-124.09215348258407,57.34610286456877],[-124.09208551454535,57.34608954282406],[-124.09201968089369,57.34607513079521],[-124.09195171295104,57.346061808981645],[-124.09188374505585,57.34604848713296],[-124.09181572117397,57.346036285704066],[-124.09174567506336,57.346022933575206],[-124.09167765127117,57.34601073207506],[-124.09160749317539,57.34599962078219],[-124.09153739116269,57.34598738899738],[-124.09146723315065,57.345976277629816],[-124.09139707517947,57.34596516622479],[-124.0913248389449,57.34595402456574],[-124.09125468105606,57.34594291308494],[-124.09118238885259,57.34593289180217],[-124.0911100966871,57.345922870479654],[-124.09103780455958,57.3459128491175],[-124.09096551246999,57.34590282771559],[-124.09089108605673,57.34589389650468],[-124.09081873797842,57.345884995476396],[-124.0907443116343,57.345876064182306],[-124.090669885325,57.34586713284625],[-124.09059540298087,57.3458593219221],[-124.09052092066722,57.34585151095583],[-124.09044436008647,57.34584366971662],[-124.09036987783426,57.34583585866479],[-124.09029331731598,57.34582801733753],[-124.09021670074839,57.34582129641973],[-124.09014216250351,57.34581460569283],[-124.09006346769416,57.34580785445017],[-124.08998685120754,57.345801133398375],[-124.0899102347479,57.34579441230195],[-124.08983148392919,57.345788781374125],[-124.08975481142744,57.34578318064081],[-124.08967606065487,57.34577754961984],[-124.08959730990551,57.34577191855171],[-124.08951850307825,57.34576740788998],[-124.08943975237307,57.34576177672736],[-124.08936094558536,57.34575726597115],[-124.08928006052457,57.34575272491846],[-124.08920125377443,57.34574821406638],[-124.08912036875185,57.34574367291537],[-124.08903942763332,57.34574025216794],[-124.08895848652932,57.34573683137065],[-124.08887760155973,57.345732290070046],[-124.0887966604871,57.34572886917308],[-124.08871566330433,57.34572656867936],[-124.08863472225836,57.345723147682584],[-124.0885516468081,57.345720816828354],[-124.08846862749989,57.34571736546836],[-124.08838763036131,57.345715064772385],[-124.08830455494372,57.3457127337618],[-124.0882214795363,57.345710402698685],[-124.08813840413902,57.34570807158298],[-124.08805527260787,57.34570686086776],[-124.08797219722845,57.34570452964695],[-124.08788906571027,57.34570331882644],[-124.08780385590964,57.34570207768072],[-124.08772072440215,57.34570086675366],[-124.08763551461246,57.345699625498796],[-124.08755030482828,57.34569838418861],[-124.0874671171756,57.3456982935537],[-124.08738190739987,57.345697052134305],[-124.08729664146344,57.34569693111213],[-124.08721137552752,57.34569681003467],[-124.08712610959215,57.34569668890177],[-124.0870408436573,57.34569656771349],[-124.08695349943625,57.34569641618393],[-124.08686823350256,57.34569629488359],[-124.08678296756943,57.34569617352792],[-124.08669556716636,57.34569714227914],[-124.08661030123189,57.345697020811365],[-124.08652290082247,57.34569798944763],[-124.08643550040864,57.345698958025814],[-124.08635023447094,57.345698836389126],[-124.08626283405079,57.3456998048523],[-124.0861754336262,57.345700773257285],[-124.08608803319717,57.34570174160415],[-124.08600057655936,57.34570383034493],[-124.08591317611891,57.34570479857542],[-124.085825775674,57.34570576674774],[-124.08573831901262,57.345707855313776],[-124.08564884026985,57.3457087930631],[-124.08556138359187,57.34571088151136],[-124.0854739269043,57.34571296990129],[-124.08538444814306,57.345713907470454],[-124.08529699143888,57.345715995742616],[-124.08520953472511,57.34571808395649],[-124.08511999971516,57.34572014179716],[-124.08503046469559,57.34572219957678],[-124.08494300795302,57.345724287613294],[-124.08485347291415,57.34572634527214],[-124.08476601615241,57.34572843319072],[-124.08467642485103,57.34573161118046],[-124.08458688978058,57.34573366865766],[-124.08449735470053,57.34573572607382],[-124.08440984164669,57.345738934206565],[-124.08432030654474,57.34574099150201],[-124.08423077143311,57.345743048736374],[-124.08414118005284,57.34574622636095],[-124.08405158865764,57.345749403924486],[-124.08396205351183,57.345751460975656],[-124.08387246208942,57.34575463841695],[-124.08378292692166,57.34575669534601],[-124.08369333547205,57.34575987266508],[-124.08360374400755,57.34576304992303],[-124.08351420880557,57.34576510666888],[-124.08342461731385,57.3457682838047],[-124.08333502580722,57.34577146087936],[-124.08324549057102,57.345773517441934],[-124.08315589903721,57.34577669439441],[-124.08306630748848,57.34577987128575],[-124.08297671592483,57.345783048115976],[-124.08288718064213,57.34578510443425],[-124.08279758905128,57.34578828114231],[-124.08270799744552,57.34579145778921],[-124.08261840582485,57.34579463437495],[-124.08252887049566,57.34579669044897],[-124.08243927884781,57.345799866912515],[-124.08234968718504,57.34580304331497],[-124.08226015182166,57.34580509920575],[-124.08217056013169,57.34580827548593],[-124.08208096842681,57.34581145170511],[-124.08199143302924,57.34581350741269],[-124.08190184129715,57.34581668350965],[-124.08181224955017,57.34581985954549],[-124.0817227141184,57.34582191506983],[-124.08163312234421,57.34582509098347],[-124.08154358689055,57.345827146385645],[-124.08145399508919,57.34583032217706],[-124.08136445961358,57.345832377457086],[-124.08127492412832,57.34583443267619],[-124.08118741057737,57.34583763866155],[-124.08109787507024,57.34583969375989],[-124.08100833955345,57.34584174879718],[-124.08092088231706,57.345843834154884],[-124.08083129042471,57.34584700952147],[-124.0807417548764,57.34584906437695],[-124.08065429760866,57.34585114955718],[-124.08056476204113,57.34585320429195],[-124.08047736112096,57.34585416890444],[-124.0803878255368,57.34585622351858],[-124.08030036823332,57.345858308463086],[-124.0802129109203,57.345860393349334],[-124.08012343168441,57.345861327333544],[-124.08003597435481,57.345863412101934],[-124.0799485733979,57.34586437636243],[-124.07986111605173,57.34586646101431],[-124.0797737150834,57.34586742515843],[-124.07968631411069,57.345868389244444],[-124.07959891313354,57.34586935327216],[-124.07951151215197,57.34587031724185],[-124.07942411116599,57.3458712811532],[-124.07933671017561,57.345872245006504],[-124.07925138747106,57.34587323920949],[-124.07916398647183,57.34587420294776],[-124.07907664187606,57.34587404617866],[-124.07899131916072,57.345875040212654],[-124.07890605285384,57.345874913742016],[-124.07881870825749,57.34587475680135],[-124.07873344195181,57.34587463021867],[-124.07864817564668,57.34587450358058],[-124.07856290934211,57.345874376887195],[-124.07847764303813,57.34587425013843],[-124.07839237673471,57.34587412333423],[-124.07830716686232,57.34587287602582],[-124.0782219569955,57.34587162866207],[-124.0781366906988,57.34587150169187],[-124.07805355912976,57.34587028464447],[-124.07796834927701,57.34586903711609],[-124.07788521771874,57.345867819961974],[-124.07780214261103,57.345865482306586],[-124.0777190110658,57.345864265047354],[-124.07763385768763,57.34586189685332],[-124.07755072615556,57.34586067948756],[-124.07751137259271,57.345774886262305],[-124.07749065673703,57.34573197442977],[-124.07746999738269,57.345687942146874],[-124.07744928162074,57.34564503031076],[-124.07742862236123,57.34560099802463],[-124.07740582842133,57.345558055748015],[-124.077385169259,57.34551402345811],[-124.07736445368681,57.345471111614835],[-124.07734373816122,57.34542819976969],[-124.07732100087873,57.34538413703632],[-124.07730028544918,57.345341225187404],[-124.077279626526,57.345297192888786],[-124.07725683293519,57.34525425059695],[-124.07723617410925,57.34521021829458],[-124.07721545886946,57.345167306438434],[-124.0771927218905,57.34512324369228],[-124.0771720067468,57.34508033183223],[-124.07714921340659,57.345037389529324],[-124.07712855482218,57.34499335721789],[-124.07710783982111,57.34495044535231],[-124.07708510309558,57.344906382595404],[-124.07706438819058,57.344863470726025],[-124.07704165156703,57.34481940796474],[-124.07702093675807,57.34477649609157],[-124.07700022199573,57.344733584216605],[-124.07697748552363,57.34468952144885],[-124.07695677085734,57.34464660957009],[-124.07693611270645,57.344602577242455],[-124.07691331991695,57.3445596349155],[-124.0768926618633,57.34451560258414],[-124.07687194738675,57.34447269069809],[-124.07684921121817,57.34442862791753],[-124.07682849683768,57.34438571602782],[-124.076807838976,57.34434168368935],[-124.0767871246892,57.344298771796126],[-124.07676646692232,57.34425473945428],[-124.07674575272922,57.34421182755759],[-124.07672509505713,57.34416779521236],[-124.07670438095774,57.34412488331219],[-124.07668372338043,57.34408085096365],[-124.07666300937476,57.34403793905998],[-124.07664235189222,57.34399390670811],[-124.07662163798025,57.34395099480092],[-124.07660305877359,57.34390699289543],[-124.0765824014311,57.34386296053877],[-124.0765616876576,57.3438200486267],[-124.07654310858379,57.34377604671743],[-124.07652239490164,57.343733134802314],[-124.07650381591546,57.34368913289054],[-124.07648315880536,57.34364510052621],[-124.07646452342605,57.34360221905815],[-124.07644594457032,57.343558217142935],[-124.07642736575741,57.3435142152267],[-124.07640878698736,57.34347021330941],[-124.07639015177698,57.343427331836935],[-124.0763715730921,57.34338332991753],[-124.07635299445009,57.34333932799707],[-124.07633441585088,57.34329532607558],[-124.0763158372945,57.343251324153],[-124.07629933692373,57.343207352684004],[-124.07628075845064,57.34316335075961],[-124.07626218002035,57.343119348834215],[-124.07624360163292,57.34307534690776],[-124.07622294515522,57.3430313145246],[-124.07620234521316,57.34298616169432],[-124.07618376695956,57.34294215976421],[-124.07616316711196,57.342897006931196],[-124.07614043270021,57.342852944084655],[-124.07611983295202,57.34280779124803],[-124.07609923325258,57.34276263840991],[-124.07607863360187,57.34271748557009],[-124.07605595588646,57.34267230227049],[-124.07603529984334,57.34262826987232],[-124.07601470034079,57.34258311702754],[-124.07599410088697,57.34253796418112],[-124.0759735014819,57.342492811333244],[-124.07595290212555,57.34244765848372],[-124.07593230281795,57.342402505632656],[-124.07591170355909,57.34235735278012],[-124.07589110434894,57.342312199925914],[-124.07587258327877,57.34226707753147],[-124.07585406225239,57.34222195513604],[-124.07583554126981,57.342176832739746],[-124.07581909841481,57.34213174080453],[-124.07580057751733,57.34208661840666],[-124.07578413474253,57.34204152647038],[-124.07576971358372,57.341997585440964],[-124.07575327088374,57.341952493504245],[-124.07573890629413,57.34190743203032],[-124.07572656330721,57.341863521464425],[-124.07571427684928,57.341818490454756],[-124.07570193391946,57.341774579889645],[-124.07569166907993,57.341730699789096],[-124.075681404264,57.341686819689315],[-124.07567321752875,57.341642970054735],[-124.07566710886701,57.341599150885685],[-124.07566100021928,57.341555331717984],[-124.07565489158559,57.341511512551634],[-124.07565288255911,57.341468874759684],[-124.07565093003899,57.341425116525606],[-124.0756489210215,57.341382478736676],[-124.07564899004905,57.34133987141398],[-124.0756511371147,57.34129729455756],[-124.07565530570999,57.341255868610865],[-124.07566160883125,57.34121335268645],[-124.07566785543747,57.341171957206804],[-124.07568241414694,57.34113068358547],[-124.07570309390618,57.34109174224262],[-124.07573208572323,57.34105292275197],[-124.07576725505227,57.34101531508829],[-124.07580865837492,57.34097779880334],[-124.075854161159,57.34094146387292],[-124.07590584141413,57.34090634075336],[-124.07595965608142,57.340870127631156],[-124.07601757018301,57.340835095849094],[-124.07607750570143,57.34080121494388],[-124.07613957560976,57.34076624402589],[-124.0762036669276,57.34073242397897],[-124.07626781461457,57.34069748345835],[-124.07632982769906,57.340663632896714],[-124.07639397515494,57.340628692316415],[-124.07645396649221,57.34059369080178],[-124.07651401419469,57.34055756881741],[-124.07656984931646,57.34052250634967],[-124.07662371928457,57.340485172523394],[-124.07667343316164,57.34044777777899],[-124.07671899095969,57.340410322121464],[-124.07675842763749,57.34037053422133],[-124.07679163027345,57.34033065497067],[-124.07681865535277,57.340289563931215],[-124.07684360239179,57.34024844244172],[-124.07686652786158,57.340206170060334],[-124.07688737530303,57.340163867231254],[-124.0769082226983,57.34012156440027],[-124.07692704853679,57.34007811068006],[-124.07694379636187,57.34003462651433],[-124.07696054414882,57.339991142347934],[-124.07697521393176,57.33994762773737],[-124.07698994014156,57.33990299268371],[-124.07700253189606,57.33985944762961],[-124.07701518008128,57.339814782133026],[-124.07702575028067,57.33977008619391],[-124.0770363204553,57.33972539025557],[-124.07704481265384,57.33968066387543],[-124.07705336129052,57.33963481705364],[-124.07706185344892,57.33959009067564],[-124.07707040204487,57.3395442438562],[-124.07707681622163,57.339499487038324],[-124.07708328684026,57.339453609779234],[-124.07708975744336,57.339407732521515],[-124.0770961715745,57.339362975707694],[-124.07710056421513,57.339317068011],[-124.0771070347743,57.33927119075756],[-124.0771114273913,57.339225283063946],[-124.07711784146639,57.33918052625572],[-124.07712431198165,57.33913464900665],[-124.07712870456216,57.33908874131752],[-124.07713511859404,57.33904398451345],[-124.0771415890654,57.338998107268495],[-124.07714800306694,57.33895335046711],[-124.07715441705345,57.338908593666986],[-124.0771608310249,57.33886383686823],[-124.07716932288588,57.33881911051141],[-124.07717781472697,57.33877438415576],[-124.07718422864842,57.338729627360706],[-124.07719277690468,57.33868378056551],[-124.07720126868816,57.33863905421324],[-124.07720976045177,57.3385943278621],[-124.07722033008537,57.33854963195187],[-124.07722882180673,57.33850490560269],[-124.07723736995911,57.33845905881302],[-124.07724793952292,57.33841436290546],[-124.07725643118185,57.338369636559406],[-124.07726705714843,57.338323820212096],[-124.07727554876482,57.33827909386819],[-124.07728611823411,57.33823439796419],[-124.07729466625707,57.33818855118087],[-124.07730523567892,57.33814385527857],[-124.07731586152408,57.33809803893572],[-124.07732643089605,57.33805334303501],[-124.07733497883007,57.338007496255905],[-124.07734554815458,57.33796280035703],[-124.07735617390094,57.33791698401765],[-124.07736679962181,57.33787116767913],[-124.07737736887132,57.337826471782684],[-124.07738799454155,57.337780655445755],[-124.07739856374118,57.33773595955096],[-124.0774091893608,57.33769014321577],[-124.07741975851053,57.337645447322465],[-124.07742830624113,57.33759960055243],[-124.07743893178707,57.33755378421998],[-124.07744950086425,57.33750908832928],[-124.07746012635957,57.337463271998494],[-124.07747075182938,57.33741745566858],[-124.07748132083157,57.33737275978029],[-124.07748986842714,57.33732691301645],[-124.07750043738187,57.33728221712994],[-124.0775110627529,57.33723640080347],[-124.07752168809844,57.337190584477895],[-124.07753017916438,57.337145858158806],[-124.07754080446178,57.33710004183507],[-124.07754929548518,57.33705531551818],[-124.07755992073443,57.33700949919626],[-124.07756841171532,57.33696477288138],[-124.07757695911496,57.336918926127126],[-124.07758545005572,57.33687419981437],[-124.07759607521116,57.33682838349625],[-124.0776045661094,57.336783657185684],[-124.07761305698774,57.336738930876116],[-124.07761952649403,57.336693053694034],[-124.07762801733469,57.33664832738673],[-124.07763650815545,57.336603601080675],[-124.07764297761058,57.33655772390242],[-124.07765146839368,57.336512997598575],[-124.07765788137988,57.33646824086306],[-124.07766429435104,57.3364234841288],[-124.07767278507932,57.3363787578285],[-124.07767712024827,57.33633397066421],[-124.07768353317434,57.33628921393398],[-124.07768994608534,57.33624445720497],[-124.07769635898134,57.336199700477266],[-124.0777006941023,57.336154913318865],[-124.07770502921312,57.336110126161834],[-124.07770936431375,57.33606533900639],[-124.07771369940421,57.3360205518523],[-124.07771803448452,57.33597576469979],[-124.07772231312171,57.33593209798823],[-124.07772457043643,57.33588728040694],[-124.07772884905621,57.33584361369822],[-124.07773110635806,57.33579879612006],[-124.07773330722223,57.33575509898279],[-124.07773556451356,57.33571028140782],[-124.07773568763413,57.33566655384192],[-124.07773788848543,57.33562285670927],[-124.07773801160305,57.33557912914662],[-124.07773813472039,57.33553540158548],[-124.07773831426924,57.33549055358683],[-124.0777363596645,57.33544679559727],[-124.07773642635155,57.33540418847996],[-124.07773447175337,57.33536043049342],[-124.0777325171597,57.33531667250852],[-124.0777284848585,57.33527288409338],[-124.0777264738444,57.33523024655038],[-124.07772244155927,57.335186458138054],[-124.07771835285152,57.33514379016613],[-124.07771432058483,57.33510000175666],[-124.0777081541952,57.335057303355406],[-124.07769991012142,57.3350145745233],[-124.07768324241859,57.33497396483984],[-124.07766034167086,57.3349332638575],[-124.07763322915552,57.33489362244467],[-124.07759774950523,57.33485497973107],[-124.07755805811665,57.334817396578885],[-124.07751421143628,57.334779752545664],[-124.07746615303793,57.334743168065685],[-124.07741601705078,57.33470655313257],[-124.0773595916815,57.3346709673072],[-124.07730310997405,57.33463650189665],[-124.07724247301846,57.33460197558413],[-124.07718183617254,57.33456744924447],[-124.07711704409385,57.33453286199514],[-124.07705427335145,57.33449942559513],[-124.07698948150376,57.33446483828475],[-124.07692671098494,57.334431401825626],[-124.07686394057603,57.33439796533741],[-124.0768011702771,57.33436452882006],[-124.07674053420742,57.334330002283366],[-124.07668191944431,57.334296626605415],[-124.07662543890252,57.33426216091391],[-124.07657109258108,57.334226605211505],[-124.07651876754733,57.334192200375995],[-124.07646644260788,57.334157795520625],[-124.07641417423139,57.33412227020799],[-124.07636184948204,57.33408786531284],[-124.07630958129863,57.33405233996065],[-124.07625725673938,57.33401793502574],[-124.07620498874905,57.33398240963397],[-124.07615266437993,57.333948004659206],[-124.07610039658265,57.33391247922778],[-124.07604807240361,57.33387807421351],[-124.07599580479939,57.33384254874238],[-124.0759434808105,57.33380814368829],[-124.07588913577047,57.33377258771677],[-124.07583681197356,57.33373818262219],[-124.07578454475745,57.33370265707095],[-124.0757301435276,57.33366822147335],[-124.07567782001702,57.3336338163183],[-124.07562341898151,57.33359938067834],[-124.07557109566143,57.3335649754826],[-124.07551669482028,57.33353053980039],[-124.07546229407728,57.33349610409663],[-124.07540789343241,57.33346166837123],[-124.07535343638692,57.33342835306044],[-124.07529903593678,57.33339391729192],[-124.07524457908292,57.33336060193788],[-124.07518804472005,57.33332725609029],[-124.07513151045592,57.3332939102192],[-124.0750749197839,57.33326168476076],[-124.07501838571568,57.333228338842645],[-124.07496179523635,57.33319611333722],[-124.0749052048525,57.333163887808055],[-124.07484653697108,57.33313163177813],[-124.0747878691888,57.33309937572275],[-124.07472914498909,57.33306824007782],[-124.07467042088516,57.333037104407246],[-124.07460961929088,57.333005938230244],[-124.07455083885864,57.332975922943376],[-124.07449003745944,57.33294475671255],[-124.0744291796344,57.33291471088966],[-124.074368378432,57.33288354460407],[-124.07430752080029,57.332853498726294],[-124.07424671979467,57.33282233238581],[-124.07418591888836,57.332791166018076],[-124.07412517461509,57.33275887918775],[-124.07406437390904,57.33272771276527],[-124.07400357330225,57.33269654631541],[-124.07394282933376,57.33266425940319],[-124.07388208546801,57.33263197246376],[-124.07381920759909,57.33260077543837],[-124.07375846393887,57.332568488443314],[-124.07369772038142,57.332536201421156],[-124.07363697692671,57.332503914371564],[-124.07357617702523,57.33247274772945],[-124.0735133562198,57.33244043012698],[-124.07345261307337,57.33240814299475],[-124.07339181347491,57.33237697626954],[-124.07332899298311,57.332344658581434],[-124.07326819358669,57.33231349180067],[-124.07320537330399,57.332281174055026],[-124.07314249656575,57.33224997671437],[-124.07307961993028,57.33221877934443],[-124.07301674339757,57.33218758194514],[-124.07295386696762,57.3321563845165],[-124.07289099064042,57.33212518705852],[-124.07282805784509,57.33209511000524],[-124.0727651251489,57.332065032922436],[-124.07270011502014,57.33203492529908],[-124.07263718252395,57.3320048481564],[-124.07257217259856,57.331974740471146],[-124.07250918372235,57.33194578370227],[-124.07244411741658,57.33191679638873],[-124.07237905120958,57.331887809043444],[-124.07231185099386,57.33185991158285],[-124.07224672839668,57.3318320446069],[-124.07218160589458,57.331804177599224],[-124.07211434937895,57.33177740047276],[-124.07204709295769,57.33175062331257],[-124.07197983663075,57.331723846118344],[-124.07191252380096,57.331698189323454],[-124.07184515446255,57.331673652927634],[-124.07177784181178,57.33164799606475],[-124.07170833853687,57.331624549506955],[-124.07163889195239,57.33159998247999],[-124.07156938885021,57.33157653584958],[-124.07149982922434,57.33155420961575],[-124.0714302696798,57.33153188334547],[-124.07135857610137,57.33151064693902],[-124.07128688260272,57.331489410493795],[-124.0712151325665,57.331469294442435],[-124.07114332598653,57.33145029878484],[-124.07106944198041,57.331431272551306],[-124.0709976355444,57.33141227681456],[-124.07092363843297,57.33139549136456],[-124.0708496980145,57.33137758544057],[-124.07077356691173,57.33136188979839],[-124.0706995133642,57.331346224655036],[-124.0706233823857,57.33133052892609],[-124.07054719483311,57.331315953585396],[-124.07047100733871,57.33130137820071],[-124.07039481990245,57.33128680277199],[-124.07031857588106,57.33127334773128],[-124.07024025442577,57.331259862096296],[-124.07016395386484,57.331247527398155],[-124.07008563251716,57.33123404167117],[-124.0700072545724,57.33122167632955],[-124.06992882002378,57.331210431373236],[-124.0698504421783,57.33119806593814],[-124.06977200772435,57.331186820888355],[-124.06969357331661,57.331175575791754],[-124.06961300480931,57.33116542051996],[-124.06959649828237,57.331162935174916],[-124.07022266841864,57.3259739713104],[-124.07494677958768,57.318365012943374],[-124.07841866057638,57.31479203996684],[-124.08311909174952,57.3131419459289],[-124.08329866303657,57.31333181762855],[-124.0837716191312,57.313182875046515],[-124.08386349177668,57.31317412598469],[-124.08963684815633,57.3126225938222],[-124.098937727037,57.31229353322379],[-124.10183818894953,57.31133988331436],[-124.11071865165064,57.30790707739201],[-124.11168665629951,57.30786944177124],[-124.11451691776914,57.30790343364039],[-124.11854536200902,57.30748700839549],[-124.12152955047354,57.307178842366675],[-124.12554087567335,57.30685389951724],[-124.13131648405012,57.30605280179035],[-124.13409473363669,57.30536244823455],[-124.13497164617176,57.30506098197699],[-124.13740480095964,57.30428716775538],[-124.13827478095786,57.30408424854857],[-124.14142591293896,57.304050460758226],[-124.14584328223027,57.30506489735481],[-124.14585130859942,57.305541524878684],[-124.14762184092962,57.30561812050725],[-124.14918467522592,57.30522197487647],[-124.15004655275712,57.30492804587222],[-124.15057402680311,57.30454642668255],[-124.15194680720803,57.30395472173966],[-124.1524742488357,57.30357309520734],[-124.15298501754,57.30319235319494],[-124.15331348559857,57.3027148612459],[-124.15486072032392,57.301562741077895],[-124.15554000676474,57.30126172446327],[-124.15812719462741,57.299347201657],[-124.15900466136308,57.29915658724794],[-124.16194214471166,57.29798466172336],[-124.16333808666317,57.29768019713809],[-124.16597073442296,57.297660987781875],[-124.1672066827415,57.29783299444233],[-124.17262338413455,57.29740854525432],[-124.17470476550928,57.29662355232742],[-124.17538406688281,57.29614304747684],[-124.1774529401334,57.295269265593475],[-124.1785125117881,57.2946964881577],[-124.17931279076802,57.29259080598374],[-124.17982522073129,57.29220999165414],[-124.17661183979953,57.290523924977975],[-124.17607121843342,57.290146413894234],[-124.17536168220624,57.28987081966732],[-124.17179171854137,57.28752938248898],[-124.17104377388354,57.28658276146723],[-124.17121815446234,57.28610644967959],[-124.17067760051914,57.284038176099926],[-124.17541480167387,57.278625017704044],[-124.1753635223,57.278611970869946],[-124.17586804017311,57.27843736398086],[-124.17649874891951,57.27844614110204],[-124.17687152892803,57.27833472542815],[-124.17886921301363,57.27601476849197],[-124.18089977766039,57.27382754288936],[-124.18231861070267,57.27227759930804],[-124.18357660175566,57.26816916493005],[-124.18053391352824,57.262673626829546],[-124.17492318706518,57.25813785905931],[-124.17211471579867,57.25646629524506],[-124.16690295789375,57.254034548017785],[-124.15882437533463,57.252557904555765],[-124.1537720643013,57.252352242396896],[-124.14759932189804,57.25026493079151],[-124.14727299695627,57.245694959331864],[-124.14811013470417,57.24142847826278],[-124.14735840180634,57.23673592059905],[-124.14405511340307,57.23369342524564],[-124.1370679770985,57.230347332245906],[-124.13560664212206,57.23003951231532],[-124.13240120886641,57.227401723710095],[-124.13027503653267,57.22372988749992],[-124.1275217284986,57.22000420353295],[-124.12092155863584,57.21831308656928],[-124.1132696426012,57.21677688359947],[-124.10848100200674,57.214689684949505],[-124.1021415798644,57.211117847108966],[-124.09715928473486,57.20828297450184],[-124.09496195492149,57.207129849973086],[-124.09196814046975,57.204996403813844],[-124.09164798338946,57.200776238420204],[-124.09261763394959,57.19461964172822],[-124.09399358152035,57.18994888555365],[-124.09429987760788,57.18612357491547],[-124.0943260568215,57.18493107804288],[-124.09423649949179,57.17973672775041],[-124.09193924952739,57.1743039029295],[-124.08988708667958,57.17194200468897],[-124.08844845114612,57.17056666281292],[-124.08454463818315,57.16649142710894],[-124.08115893554564,57.163329543688285],[-124.07561874025743,57.161866857576854],[-124.06421523728716,57.16372539992367],[-124.05310110032853,57.16736314452157],[-124.04614628081664,57.16799481042834],[-124.04300953293031,57.16682674268263],[-124.03790738008551,57.16491157699387],[-124.03095306978844,57.16166779447398],[-124.02628159137264,57.159130817686496],[-124.02430374486582,57.15831164639741],[-124.02079706534897,57.15599836537052],[-124.01559650610504,57.15379380452479],[-124.01153010432462,57.152395578931944],[-124.00768509057644,57.15088400245071],[-124.00684543843721,57.150476553917116],[-124.00669142343027,57.14802564704904],[-124.00774426834651,57.14432852388662],[-124.007951419813,57.140340468905855],[-124.00738280931003,57.13758727972523],[-124.00586854924545,57.13551923448319],[-124.00337564322315,57.13413579148958],[-123.99987394464169,57.13115830927956],[-123.99578897845008,57.13017186058539],[-123.99333687763084,57.12865431219821],[-123.99422711552323,57.12618358720539],[-123.99343041562292,57.1240187935375],[-123.99098078474857,57.122779275784886],[-123.98738050066093,57.12171929119412],[-123.98484638818779,57.12146493846859],[-123.98030192161892,57.120121105551256],[-123.974584363332,57.11844499761099],[-123.97067750718492,57.117568133401534],[-123.96705774054462,57.115646249675464],[-123.96145247773003,57.113747076961],[-123.95795300358611,57.11268783676993],[-123.95508086936776,57.11134235539891],[-123.95476060776272,57.1108350719194],[-123.95073449732084,57.10942655558935],[-123.94629871831071,57.10826259724504],[-123.94355153689982,57.107376241738166],[-123.941204188832,57.106128406401616],[-123.9371741053634,57.10450414159158],[-123.93631025906107,57.10365636110821],[-123.9330023425042,57.101218233946824],[-123.93075559814332,57.09934396733448],[-123.92942954738552,57.09695510663529],[-123.92767166724195,57.09399432717529],[-123.92520057656027,57.09138991092539],[-123.92459576248766,57.08790032433403],[-123.92418973379758,57.08470988171029],[-123.9224206065427,57.08105825532656],[-123.91941364633031,57.07799674881875],[-123.9175583566002,57.075034292842666],[-123.91764343286837,57.07011172814874],[-123.91966774391086,57.06689732111111],[-123.92422314395225,57.06452145547864],[-123.92434643305955,57.06132155420745],[-123.92433608357905,57.06028997792632],[-123.92323507981764,57.05835311681957],[-123.9225729743945,57.05715868455591],[-123.92364949228279,57.05435068029197],[-123.9277236273807,57.05351866162359],[-123.93614684483238,57.054719623893604],[-123.94421943640332,57.05476651164356],[-123.95215468548845,57.053671722163664],[-123.95589184337966,57.05233129482079],[-123.96170184951168,57.04988419775931],[-123.96977756753239,57.04609999719283],[-123.9742218270481,57.043846333797575],[-123.97773670798229,57.04199065604421],[-123.98152490741937,57.038695206225675],[-123.98181600925956,57.037551756429174],[-123.98761931995183,57.03515729638669],[-123.99151534660642,57.03197985027801],[-123.99341125591751,57.02853832390834],[-123.99654182464133,57.0238781601827],[-123.9972009668762,57.02135924316283],[-123.9967016010988,57.01827544322341],[-123.99444745308024,57.01594486238433],[-123.99242433491804,57.01488232899778],[-123.9887503752629,57.01416196641525],[-123.9853941188522,57.01430737019356],[-123.98151603712623,57.01433697810373],[-123.97752257874338,57.013736896707094],[-123.97185937682184,57.01320933796688],[-123.96736777741124,57.01330070927204],[-123.9614127922856,57.013925055013885],[-123.95637371674043,57.01345143432589],[-123.95307759631197,57.011534221386405],[-123.95079396714316,57.00857459883757],[-123.94898475724725,57.00693179493328],[-123.94842901132809,57.00590961067948],[-123.95109748349005,57.00411313669076],[-123.95285306311982,57.00273273630527],[-123.9541801215501,57.00134557943446],[-123.95449680106418,57.000041184784635],[-123.95479489043407,56.99908626218126],[-123.90787943370009,56.99882470883451],[-123.9047964344876,56.99790516129944],[-123.89995604128111,56.99716346207984],[-123.89635629934813,56.99635195961919],[-123.89515099217799,56.99517553087942],[-123.89664802660967,56.99372890920858],[-123.89837736073702,56.99255508023374],[-123.89702437174299,56.99046150229],[-123.89581971824468,56.98927612395387],[-123.89747371735676,56.98645987100976],[-123.89963522391109,56.983400687086764],[-123.90016323761958,56.98127473407975],[-123.90159239052952,56.978338235567065],[-123.9003778601906,56.97703615729569],[-123.89564564151283,56.976475378559854],[-123.89322264449419,56.975880108891744],[-123.89203236733633,56.97504469774871],[-123.89082890044894,56.97174275862974],[-123.89080088921692,56.9689441766087],[-123.89227611812589,56.966977127871395],[-123.89642864607775,56.96395031256678],[-123.89834324538256,56.96237595422416],[-123.89828668466876,56.96129884645344],[-123.89854230925809,56.95751837213117],[-123.89800359380844,56.952899986762745],[-123.8955255585551,56.948815218092186],[-123.89049146978415,56.946312180937774],[-123.88908828318543,56.94547328722648],[-123.88654756570014,56.9422572418688],[-123.88378752414341,56.93914519304888],[-123.87788602598383,56.93808036853829],[-123.87101955181782,56.938694458756494],[-123.86636570779494,56.93978398968187],[-123.86489217178554,56.939634227386634],[-123.86067363858233,56.93643490576348],[-123.85672441634021,56.93254932983796],[-123.85350495195263,56.93064870868847],[-123.85000665575124,56.92932632713584],[-123.8454585676851,56.928237550902836],[-123.84307047640611,56.9285566476089],[-123.84136267933684,56.92995423652808],[-123.83426283688189,56.93239203004733],[-123.82992171084166,56.93347650069318],[-123.82750957511337,56.93333753104212],[-123.82356685074383,56.93144198280654],[-123.82018270492894,56.92840773325555],[-123.81896241292472,56.9267011933303],[-123.81890789466269,56.925337085865806],[-123.81896007740485,56.921795462575545],[-123.81837006475276,56.91826099667244],[-123.81922791967783,56.91618578890097],[-123.82245233190422,56.91357632055779],[-123.82547984120131,56.91124150208346],[-123.82894753847164,56.90926374569873],[-123.83232061934636,56.9074995623291],[-123.83273240555181,56.905147801355604],[-123.83123667890449,56.90219919145624],[-123.83120585660173,56.89894323053483],[-123.83297386125332,56.89674866081975],[-123.83815075150163,56.89564223677738],[-123.84316717115095,56.89563602055563],[-123.84942439471052,56.895497720294564],[-123.84936522289318,56.89183777120348],[-123.83803581604191,56.87890590947005],[-123.83458796273526,56.87677678917889],[-123.82908403277281,56.87497189990427],[-123.82568431755544,56.873462134268664],[-123.82440761676146,56.870741348761],[-123.8237828057708,56.86812117296778],[-123.82011949039008,56.86576383745596],[-123.81438403087837,56.86344323003999],[-123.81268968100004,56.862894515804555],[-123.8109485089138,56.861143272985146],[-123.81252149091905,56.85890091225832],[-123.81466293657796,56.855609900112185],[-123.81489555524065,56.85149752570379],[-123.81216226167376,56.8460975608505],[-123.8077089403563,56.8394757268875],[-123.80557670536466,56.8362470633816],[-123.8039256962769,56.83438067419722],[-123.8019155035488,56.83103743658402],[-123.79978896871346,56.83003281069683],[-123.79294635194624,56.82852640510064],[-123.78712628757728,56.82666044772529],[-123.78383034742717,56.825160271768],[-123.78354746645864,56.8249402020139],[-123.78291490342244,56.82444847276373],[-123.78309090924877,56.82427773132615],[-123.78335789850514,56.8239874796062],[-123.78359842658071,56.82369341175741],[-123.7837875734111,56.82340070653802],[-123.7840577813245,56.82287510108509],[-123.78376746895769,56.82278493946548],[-123.78355577064806,56.82261204811233],[-123.7833215989206,56.822365907548864],[-123.78307557528117,56.822147588439584],[-123.78260356372022,56.82186262524637],[-123.78225338346051,56.82167166725119],[-123.78179597739711,56.82145421039975],[-123.78144317009277,56.82130916570243],[-123.78090082943885,56.82110594472811],[-123.78035773050287,56.820880288629205],[-123.77988087516137,56.820644555671265],[-123.77951535828096,56.820399519641605],[-123.77920390390992,56.820177829231504],[-123.77886409567829,56.81987830357027],[-123.77867661838165,56.819570179521364],[-123.77854154582664,56.819242776170995],[-123.77845138577614,56.81888363433473],[-123.77838913240652,56.81861016628981],[-123.77833354377553,56.818327844652686],[-123.77821921360317,56.81806805618745],[-123.77812904009332,56.817780657315296],[-123.77784999809919,56.81742387993031],[-123.777523789376,56.81717390747493],[-123.77713777017283,56.816893762005975],[-123.77671972472169,56.81663548536198],[-123.77625600293597,56.81642238361916],[-123.77576018979472,56.81623226981072],[-123.77505216793689,56.81609343720457],[-123.7743593098859,56.81601203167047],[-123.77357948420858,56.81590894962503],[-123.77296585578924,56.8158412293678],[-123.77243666315506,56.815732360794],[-123.77192577186186,56.815519552788686],[-123.77158798325553,56.81536464968355],[-123.77101140396815,56.8151170780222],[-123.77068777541083,56.81496577915419],[-123.77037665688634,56.814775460156746],[-123.77011000140631,56.81456124414731],[-123.77004728023424,56.81433260324012],[-123.77001874162708,56.81400926675823],[-123.77008124885675,56.81374354747266],[-123.77022502210227,56.81349155828613],[-123.7703942258673,56.813225433964156],[-123.77056239429774,56.81297722750344],[-123.77077187116075,56.81272412701228],[-123.77099853109792,56.81242199853478],[-123.77114900637521,56.8121959067928],[-123.77120579065003,56.81195811364595],[-123.77118310187004,56.811711105867],[-123.77110116051635,56.811495586962195],[-123.7707896651891,56.8112054945453],[-123.77058276788118,56.81102257490957],[-123.77036999970784,56.81079919830385],[-123.77021495349197,56.81053533869918],[-123.77015278876807,56.81022599681686],[-123.77010964934422,56.80990689367181],[-123.77006231346776,56.80966058243934],[-123.76992781342268,56.80943182695424],[-123.76967409630231,56.8090295071429],[-123.76984276772798,56.80877234326739],[-123.7699464234189,56.808682207523155],[-123.77025068677321,56.80863476063462],[-123.77069624604276,56.808520244496194],[-123.77118985294256,56.808354988549326],[-123.77174268743771,56.8081941129461],[-123.77226728087003,56.80802490234039],[-123.77280773234472,56.80790080182613],[-123.7731888859742,56.80787148544004],[-123.77377630614328,56.807822173599206],[-123.77440805847151,56.80771532994488],[-123.77482728990037,56.807380634899786],[-123.77498704172673,56.80724213618018],[-123.77608182231123,56.80671614591377],[-123.77728977109516,56.805790778659926],[-123.77912165214978,56.804035370879184],[-123.78046494088308,56.80242850374014],[-123.77982928897931,56.80010391066559],[-123.77981829812106,56.80000956026207],[-123.77969700029158,56.799050167454986],[-123.77807656085982,56.797129040131566],[-123.77755013841778,56.79622658746569],[-123.7810582720733,56.79544603843134],[-123.78581082057403,56.79473825310972],[-123.79002654642493,56.79333846467504],[-123.79520862410337,56.79184963870989],[-123.79562457969686,56.791278306939546],[-123.79587395856872,56.79028377747476],[-123.79622558413772,56.78918561908505],[-123.7962884064006,56.7880825438018],[-123.79694470665962,56.78667346274342],[-123.79815752084426,56.785642644339816],[-123.7985060452408,56.78459711682562],[-123.79957101610573,56.782775742558954],[-123.80000565360277,56.78208926212256],[-123.80009801592905,56.781942866503385],[-123.80109724159819,56.78127606843581],[-123.80239107490618,56.78051001862835],[-123.80311936341162,56.77952361833328],[-123.8033595760916,56.77868586335918],[-123.80353328414692,56.777322375880935],[-123.80380028841574,56.77601203668139],[-123.8048081886384,56.77518843084508],[-123.80593315686716,56.77399801276247],[-123.806556061385,56.77316786649332],[-123.80697667797322,56.77254390568062],[-123.80711457996796,56.77180978371614],[-123.80699350859204,56.77054667157465],[-123.80751030610158,56.76992434100048],[-123.80745277852873,56.76923959210444],[-123.8057676458836,56.7684218783354],[-123.80370774457343,56.76749353199466],[-123.8026148887699,56.7664235297183],[-123.80096777363035,56.76497642789434],[-123.80000693269874,56.764470238392896],[-123.79900830920279,56.76394434258315],[-123.79680986045348,56.76261334835788],[-123.79698776982889,56.76247514005481],[-123.79731563115105,56.76218591635886],[-123.7972894760337,56.76192541267701],[-123.79723537617275,56.76168797286308],[-123.79722256893652,56.761336900383746],[-123.79724176865584,56.76110743461785],[-123.79722763995932,56.760851619651575],[-123.7971878847132,56.76068616439634],[-123.79685095973133,56.76041476287293],[-123.79658503435279,56.760155779424544],[-123.79639472462455,56.75997206578873],[-123.79615669304408,56.75972700795268],[-123.79588591207593,56.759445521480735],[-123.79565325507073,56.75917813548629],[-123.79544913214554,56.758949347392075],[-123.79521059651535,56.75867737661511],[-123.79495389445775,56.75836474183413],[-123.79476072570137,56.75819554917694],[-123.79437192210338,56.75800844773216],[-123.79393644549575,56.757885563443764],[-123.7934679085584,56.75776771829783],[-123.79311365490209,56.75762155624455],[-123.79287464139074,56.75743028047098],[-123.79278221049066,56.757254957319326],[-123.79282804254566,56.757061816956586],[-123.79298482113202,56.75679098332257],[-123.79299118649872,56.75653551779279],[-123.7930445003661,56.75635483548079],[-123.7931553687247,56.75617065157321],[-123.79328010531567,56.755922810748],[-123.79332465712153,56.755752067356774],[-123.79309364820038,56.755564291424186],[-123.79267021055202,56.75530261157906],[-123.79207187386324,56.75498301829224],[-123.7914507873962,56.754739257437095],[-123.79079792355392,56.75444226650842],[-123.79016400081588,56.754208368429346],[-123.78962459898986,56.75396935717335],[-123.7889443301865,56.75375820045828],[-123.7883060813233,56.753564572840695],[-123.78778485915377,56.75340208848326],[-123.78709898217942,56.75321772840944],[-123.78646790865935,56.753113889473155],[-123.78609804717046,56.75313446036683],[-123.78576200620198,56.75324416362827],[-123.78540652241237,56.75337146813898],[-123.785052249972,56.753513364705306],[-123.78460449389455,56.75357070918582],[-123.78386610975924,56.75355245249338],[-123.78253604475421,56.753457911272946],[-123.78212757297997,56.75336571457026],[-123.78149474010033,56.753149726733945],[-123.78088678993826,56.75292855800614],[-123.78040658122804,56.75283736652917],[-123.77997068565058,56.75275926438748],[-123.77920107363667,56.752642922565364],[-123.77840302129741,56.752486854452876],[-123.77792876977787,56.75239911878508],[-123.77747491815065,56.752312852915985],[-123.77697939460262,56.75216757993126],[-123.77674824000819,56.75194838454577],[-123.776569259829,56.751748020976535],[-123.77663593825446,56.751585509649715],[-123.77675338509187,56.751216496615136],[-123.77623808990919,56.75055973033053],[-123.77599290675369,56.75026406814923],[-123.77578327055569,56.74999143582934],[-123.77550367330517,56.74976019542374],[-123.77511628191583,56.74951589018506],[-123.77452870545491,56.74926253365659],[-123.77400173168839,56.74905953922504],[-123.7736586473017,56.74886419279503],[-123.77337455619838,56.74856897641886],[-123.77332834657284,56.748197148338406],[-123.7732993423923,56.74781104435753],[-123.77330648565429,56.74736615301095],[-123.7732925199895,56.74711033754464],[-123.77341617324097,56.7467761843115],[-123.77344782381198,56.7464393257519],[-123.77345902904207,56.74606624502626],[-123.7734665790363,56.74572112497908],[-123.77347213354327,56.745410719823845],[-123.77339907370882,56.74504291377457],[-123.77335238947575,56.74475066505417],[-123.77324549116557,56.74443720232453],[-123.77316664944996,56.74431254085393],[-123.77280263859622,56.74412579898706],[-123.77244808729965,56.74395267033689],[-123.77211140536099,56.74386055637492],[-123.77152459584129,56.74370247845829],[-123.77114850150106,56.743548030778754],[-123.77042404280768,56.74329117357287],[-123.76991047743213,56.743070457596964],[-123.7689072493624,56.74267651138638],[-123.76792650593605,56.74235468564905],[-123.76739864761765,56.74213371258003],[-123.76663507048828,56.74184589244685],[-123.76597430452922,56.74165736641431],[-123.76531619341074,56.74142292414971],[-123.76486157299937,56.74128167238394],[-123.76458485840577,56.74114461641682],[-123.76436658553902,56.74098839355908],[-123.76432658574178,56.74065253985205],[-123.76436582633953,56.740256404769916],[-123.76431770978824,56.739919289875495],[-123.76417948742208,56.73944049880718],[-123.7639015520188,56.738934630207844],[-123.76349730910877,56.73824049942787],[-123.76329308564473,56.73784127342363],[-123.76304907505033,56.737492921885206],[-123.76275069077792,56.73702256712998],[-123.76258047652577,56.73663737997456],[-123.76245991174314,56.73627883374351],[-123.76238083766094,56.735910917244276],[-123.76233892805458,56.73550216935033],[-123.76226065704287,56.735084945432256],[-123.76217329289993,56.73478974656628],[-123.76215888784428,56.73454289036755],[-123.76221849949505,56.73429059006891],[-123.76242130770596,56.733898409592236],[-123.762611728118,56.733578875552574],[-123.76282836856272,56.73323065079143],[-123.76312974403895,56.73279758009803],[-123.76331940082454,56.73245561344322],[-123.76353598708081,56.73207263794263],[-123.76373216385423,56.731617569117766],[-123.76382412097888,56.73123019507277],[-123.7638627300463,56.730915879869215],[-123.76386149432706,56.73054707037215],[-123.7638558454976,56.730183789277454],[-123.76393970879795,56.72965279572664],[-123.76373358333682,56.729393655784236],[-123.76334569407355,56.72916275604806],[-123.76289714825278,56.728954344767324],[-123.76254125224517,56.728772196577594],[-123.7622314474168,56.728571789575795],[-123.76175831068043,56.72836406931211],[-123.76116421692772,56.72805336756095],[-123.76050566694155,56.72772473194368],[-123.75997099735167,56.727448682362464],[-123.75936485704909,56.727134400393155],[-123.75873218092045,56.72685440427404],[-123.7581656415139,56.72666971099796],[-123.75761345747988,56.726520013311166],[-123.75725751495904,56.72637484013],[-123.75700591841155,56.726159737181035],[-123.75696694719086,56.72591357555868],[-123.75694056917412,56.72566202786312],[-123.75679462308243,56.72542521867306],[-123.75649119215252,56.72508030716238],[-123.75635956411735,56.72484374606486],[-123.75623912336555,56.724449327082006],[-123.75614725591775,56.72419776309032],[-123.75595405851394,56.72385812727149],[-123.75586248384363,56.7235662145028],[-123.75580200831395,56.72337348416845],[-123.75584182040437,56.72321612368941],[-123.75629604004918,56.72300655018674],[-123.75684014716435,56.7227290377317],[-123.75732033818474,56.72238876242977],[-123.75764331831095,56.722077143526874],[-123.75795716325916,56.72167569076676],[-123.75830608279857,56.721269241316044],[-123.7586675211784,56.72085852457941],[-123.75892279461391,56.72040785397647],[-123.75927068389096,56.71998344981839],[-123.75974830237114,56.71933262444796],[-123.76009086871849,56.7188229356504],[-123.76043039838748,56.71825938897104],[-123.76066686004323,56.71788573431181],[-123.76100787463,56.717367049615284],[-123.76164452917422,56.7164062363721],[-123.76188077387411,56.71603593931908],[-123.76220195166144,56.71561218776362],[-123.76246367893904,56.71533200556361],[-123.76259663326174,56.715120211191426],[-123.76257401083735,56.71427127792653],[-123.76257278790442,56.71390247201175],[-123.76252652926303,56.713534007084405],[-123.76252519417271,56.713238059546605],[-123.76257102684328,56.712904817549926],[-123.76260835923736,56.71257703301751],[-123.76258956512217,56.71240632687383],[-123.76254977073225,56.71192588172205],[-123.76255468021432,56.711557182523705],[-123.76254848143466,56.71127460217835],[-123.76256614789068,56.71093302626535],[-123.76259198997953,56.710591592032806],[-123.76260450993149,56.71030373145869],[-123.76258430967525,56.70994468600022],[-123.7624507405985,56.709671108855055],[-123.76227973649924,56.709408092302105],[-123.76210217494106,56.70911693883161],[-123.76204758852695,56.70889292937507],[-123.76214629406394,56.70867157582091],[-123.76231734998596,56.70847277318822],[-123.7625596975963,56.70835030713654],[-123.7627000206092,56.70825858027435],[-123.76284897067043,56.70815915624108],[-123.76313058803504,56.70785241722826],[-123.76319071591274,56.707519423820074],[-123.76315334484231,56.70713878423096],[-123.7631496036576,56.70709724534849],[-123.76305062042776,56.70668527390418],[-123.76302344079475,56.70644716789791],[-123.76302330006595,56.70627230178691],[-123.76314154419408,56.706137597317365],[-123.7631400818368,56.70612748370444],[-123.76395399400745,56.70535244921172],[-123.76497303834783,56.704318665506904],[-123.76597086813436,56.70365216934065],[-123.76732596729428,56.703352778327826],[-123.76747306209465,56.70332057271067],[-123.76839925019351,56.70311575922733],[-123.76994300859695,56.70298549673116],[-123.77155421215625,56.7016457925697],[-123.77074012523425,56.70079105727219],[-123.77078492662271,56.70001167501191],[-123.7708065542349,56.69963542162694],[-123.77026557598008,56.69904769108399],[-123.76966278942034,56.697827817040434],[-123.76953415233427,56.69672149702828],[-123.76855231074501,56.6954435082557],[-123.76767268334633,56.69406079251585],[-123.76703654323278,56.691788916829374],[-123.76622276262384,56.690934157918974],[-123.76570919366816,56.68987385850598],[-123.76444270996717,56.688537108288344],[-123.76302566120431,56.686515103085355],[-123.76188568167929,56.68465481323114],[-123.761000397131,56.68337844034717],[-123.75992020338576,56.68215024071047],[-123.75844294267237,56.68117854997619],[-123.75541677074273,56.68044220807499],[-123.75169344124274,56.68016667559039],[-123.75009706832296,56.67956159010648],[-123.74932360299921,56.678022546598115],[-123.74835816939823,56.67648127067433],[-123.74675961178923,56.674297863609944],[-123.74624475253282,56.67323746125219],[-123.74592696333266,56.672127816689425],[-123.74514457300883,56.67074776207575],[-123.74314122485309,56.6689248932791],[-123.74054290751477,56.66746035337155],[-123.73801729618,56.66636469132451],[-123.7365289733323,56.6656021543734],[-123.73455787257367,56.664883806402415],[-123.7334146246385,56.664758362358945],[-123.73252849692913,56.665164254584425],[-123.73077778967543,56.66560650031159],[-123.7292076752233,56.66620995015913],[-123.72812654131461,56.666663943784584],[-123.72705462822547,56.66696004248615],[-123.7259918836383,56.66709936617312],[-123.72415739949916,56.6673293168206],[-123.7224126103282,56.66766731215354],[-123.72095264666217,56.6680618777411],[-123.71854232257549,56.668281578079565],[-123.71743624466987,56.66915651080465],[-123.71662427056424,56.66993015239669],[-123.71563265618516,56.67049099742719],[-123.71427877523729,56.67067775657374],[-123.7134964341177,56.6705305067405],[-123.71309826971681,56.67059294823687],[-123.7126868091584,56.67056884174245],[-123.71246681924765,56.670555974757164],[-123.71187483443357,56.67043899145227],[-123.71122892341575,56.67023137498701],[-123.71061568226287,56.67005908346494],[-123.71000987410146,56.66996874834273],[-123.70939117105603,56.6698198933479],[-123.70866539743365,56.6695805810402],[-123.70814635565378,56.669440215117],[-123.70767816324962,56.66930411316646],[-123.70717099130752,56.669135930945004],[-123.70682044252592,56.66898061853851],[-123.70657627479271,56.66878908449178],[-123.7062511316754,56.668480655228734],[-123.7058856993274,56.66812779271278],[-123.70548878785631,56.667788941371946],[-123.70512517960516,56.667543717876626],[-123.70459609211585,56.667228294073915],[-123.70401465941123,56.66689960638894],[-123.70345443546158,56.66659259105034],[-123.7029005311947,56.66631707160849],[-123.70234621051412,56.66611776523998],[-123.701904500144,56.66594960625223],[-123.70119153526453,56.665599506777035],[-123.70056444579532,56.665283440549615],[-123.70006229775073,56.66496287283491],[-123.69962510382706,56.66461543802282],[-123.69915019144052,56.66424939420025],[-123.69879376010725,56.66402221486704],[-123.69844292617728,56.66380410176769],[-123.69813275832452,56.663658452515875],[-123.69764550069746,56.66353542372032],[-123.69721787724747,56.66347510841691],[-123.69665875743661,56.663392267460175],[-123.69596125917704,56.66323072983786],[-123.69542741290978,56.66306650707606],[-123.69484008892714,56.662804926765574],[-123.69437139363669,56.66250735220836],[-123.6940732084894,56.6622980141079],[-123.69380340615015,56.66209254543356],[-123.69349794795562,56.66183375510611],[-123.6932926526584,56.6615745131016],[-123.6930665007866,56.661184870202206],[-123.69279422507721,56.660849327485764],[-123.69253491188155,56.660536434574325],[-123.69236830307716,56.66034850143154],[-123.69197345096343,56.66018450801788],[-123.69129446773078,56.66002215440669],[-123.69074111508658,56.65987773902875],[-123.69031982366293,56.65978052279851],[-123.68992657863132,56.65969277481133],[-123.68966029902498,56.6594974484964],[-123.6894752616518,56.65913880026972],[-123.68926824114907,56.65877191152536],[-123.68904107947269,56.658400177930275],[-123.68873490148293,56.657948563291356],[-123.6884683682684,56.657586211605654],[-123.688163058971,56.65722316443032],[-123.68793158235023,56.656924211813255],[-123.6875737891483,56.65658488288501],[-123.68727658002614,56.65632622499225],[-123.68705672170013,56.65600393956582],[-123.6868773935694,56.655721613019885],[-123.68667138931755,56.65537267310735],[-123.68639894269918,56.655041596918025],[-123.68598867673212,56.654657606057775],[-123.68553894499685,56.65431886370401],[-123.68507739470154,56.65410993515933],[-123.68432059035207,56.65395287187189],[-123.68368348551432,56.65394703706237],[-123.68293373426286,56.65401427780837],[-123.68237582855397,56.654084961454984],[-123.68183227425868,56.65415477972548],[-123.68118212078765,56.65423052594805],[-123.68017894778914,56.654298799489155],[-123.67930528812239,56.654353702489665],[-123.67816897805011,56.6544274116257],[-123.67741302231249,56.65442725307794],[-123.6764217177193,56.65446768803124],[-123.67561510244651,56.65449462968685],[-123.67478601524363,56.65441915634052],[-123.6738844172992,56.6541899230828],[-123.67281262804973,56.65397106405761],[-123.6715304093736,56.65371813217345],[-123.67051574973917,56.65353503393215],[-123.66964802570298,56.65342295935248],[-123.66846553985552,56.65331303609119],[-123.66718438109076,56.653247275677806],[-123.66628991807217,56.65310442934958],[-123.6657046842724,56.653017615592574],[-123.66500173053907,56.65298583586692],[-123.66478199075878,56.65297064831201],[-123.66439392579358,56.65211955623426],[-123.66443501242075,56.65143652893664],[-123.66429059906389,56.650644774708475],[-123.66435377797035,56.6495944812936],[-123.66507249815211,56.648819478120686],[-123.66627930210828,56.64784256942717],[-123.66748499203767,56.64691719379492],[-123.66821308047274,56.64598429448347],[-123.66764270183698,56.644291462912356],[-123.66710721688152,56.64365069290817],[-123.66620391101466,56.642740966498145],[-123.6659509493134,56.64215798816501],[-123.66514043299416,56.6413026172068],[-123.66382214903537,56.640909953641376],[-123.66259225251557,56.6406780506237],[-123.66219819761812,56.639250688038466],[-123.66275026763307,56.63805233484493],[-123.6638977041031,56.63649598448584],[-123.66535594126735,56.63452378752957],[-123.66773797727868,56.633147812150256],[-123.66990292184452,56.63218821867178],[-123.67247126038643,56.63086709276266],[-123.673292752829,56.62993586712866],[-123.67325664145925,56.62893647736451],[-123.67338395285338,56.62841306497597],[-123.67400000837257,56.627740423642905],[-123.67434211608833,56.62680054325714],[-123.67469884532538,56.62565019450363],[-123.67456685069422,56.62464907819603],[-123.67348360696943,56.62357811197105],[-123.67277657530252,56.622566612871665],[-123.672454993098,56.62156207146064],[-123.6708969598131,56.62037714117077],[-123.67162446927179,56.6194442363006],[-123.67225098360272,56.618561066178316],[-123.67260139549113,56.61751598020361],[-123.67364255097995,56.61611570749933],[-123.67351061592052,56.615114595345794],[-123.672310958768,56.61435649312925],[-123.66986340838847,56.61368118462776],[-123.66954624731638,56.61257135260443],[-123.6696407086447,56.61099594197107],[-123.67079653168942,56.60928167662078],[-123.67172287578057,56.60819432732449],[-123.67359575871745,56.60728211593472],[-123.67604024407817,56.60643287403319],[-123.6790699784044,56.60538340373681],[-123.6791076159085,56.60475301506938],[-123.67850490366703,56.60363806908414],[-123.67731172480497,56.60277588660012],[-123.67553020048545,56.602165367947514],[-123.67375503002833,56.601449573938574],[-123.6736043143622,56.600763102814504],[-123.67358221593759,56.6000072170616],[-123.67357137114021,56.599711103659864],[-123.67343949356133,56.598710000363944],[-123.67314951918453,56.59718034000748],[-123.6732374988287,56.59571019046387],[-123.67395937182076,56.59482875369236],[-123.6732203154493,56.59439506782063],[-123.67257816310142,56.593910446583614],[-123.67223798805888,56.59322055177941],[-123.67209986590622,56.59232470095018],[-123.67224765980423,56.58985579854795],[-123.67345134364807,56.588931516226694],[-123.67395467057574,56.58853036195368],[-123.67435509968467,56.58821253549719],[-123.67597896810328,56.58824185242209],[-123.67808164703045,56.58827978319677],[-123.68105670135868,56.58812266511742],[-123.68284707620583,56.58857522677959],[-123.68552191303195,56.58904142055022],[-123.68587725329222,56.589102730016535],[-123.68867012831406,56.588785237610566],[-123.68909064145488,56.58816172637199],[-123.68951223017721,56.587485551960484],[-123.69044627833958,56.58686900873626],[-123.69063210615823,56.586830868868255],[-123.6911898332769,56.58664359469529],[-123.6916534378793,56.586358235101066],[-123.69216340855469,56.586013177398776],[-123.69256104974822,56.58567058856293],[-123.69300540994801,56.58533107749637],[-123.69358247829271,56.58505783243328],[-123.69429588030064,56.584720894407724],[-123.69504178051623,56.584420402606696],[-123.69579422629297,56.58414692496614],[-123.69670618348489,56.5838314615266],[-123.69766064302834,56.5835212354525],[-123.69826325760872,56.583297746130654],[-123.69878714207456,56.58306051741613],[-123.69932456806966,56.582801111158965],[-123.69971646914621,56.582588421560104],[-123.7003126810847,56.58236929234475],[-123.70093412669647,56.58213716059729],[-123.70142568724052,56.5819632345253],[-123.70200825425616,56.58180213973481],[-123.70253258559208,56.58166017899025],[-123.70316731596927,56.581513460425064],[-123.70385506149279,56.58140131049521],[-123.70451678278123,56.58128084688452],[-123.70512014975887,56.581147010257716],[-123.70573079229744,56.58106261889365],[-123.70592963855964,56.581079612532534],[-123.70800456859311,56.580509054878334],[-123.71099426406609,56.58171897972607],[-123.71259010118503,56.58222034766602],[-123.7147573848618,56.58278451966187],[-123.71695246722798,56.582876141155765],[-123.7185668841888,56.5830627990953],[-123.71971385443616,56.583083116911084],[-123.7217978674308,56.58343497066572],[-123.72298683604538,56.5833999589875],[-123.72515026448744,56.58333620093181],[-123.72708883504693,56.582897432207325],[-123.72693621207085,56.58226369267902],[-123.7269822123664,56.58147653917717],[-123.72735030648364,56.58006290665393],[-123.72792712955832,56.57839179830248],[-123.72932778908803,56.57731246470816],[-123.73159611733907,56.57614304917138],[-123.73329809081665,56.574858265460065],[-123.73528809732768,56.57352697060777],[-123.73734627717587,56.57266872476163],[-123.7396089346301,56.57155288103771],[-123.74175958143645,56.570748872633075],[-123.74181443148296,56.56980384004524],[-123.74128791565639,56.569005525681035],[-123.74035105550487,56.5686741238782],[-123.73777385595682,56.56857617324678],[-123.73608253948387,56.568073437493446],[-123.73374776689012,56.56713903222647],[-123.7326533252114,56.56622531888504],[-123.7312534027466,56.56562229065736],[-123.72964879440585,56.5652790357772],[-123.72740193104504,56.56445030103877],[-123.72517251605782,56.56335955495111],[-123.7226325330453,56.56263203343287],[-123.71977379755099,56.562476052363124],[-123.71964702539529,56.5613697655781],[-123.72076498927801,56.55860313406185],[-123.72220406480912,56.55689354070309],[-123.72325105014355,56.555335037169485],[-123.72397097676125,56.554454459039626],[-123.72450770286905,56.553465278447376],[-123.7244673369977,56.55251745002525],[-123.72405036803166,56.55145872181838],[-123.72487713869384,56.55042199309935],[-123.72362007009045,56.55066315507639],[-123.72218703967621,56.550637791123],[-123.72028077436255,56.55055134658074],[-123.71778099904499,56.55082198449933],[-123.7161442740463,56.55100365926687],[-123.71394684471366,56.55101731177503],[-123.71127211499316,56.550969756582646],[-123.70921984239327,56.55014415080426],[-123.70818494240959,56.5498634396143],[-123.70535815684718,56.54918201072243],[-123.70373385977041,56.54915302842582],[-123.70267735242041,56.54923952648402],[-123.70153138790761,56.549219057331705],[-123.69979797961061,56.54945035617603],[-123.69825893138548,56.5496335502141],[-123.69692162284352,56.54960961656421],[-123.6952410048758,56.54894847573986],[-123.69358220267704,56.547920061701205],[-123.69288537867348,56.546750840656614],[-123.69264708584447,56.545958603533705],[-123.69310550882196,56.544652059999414],[-123.69315838459255,56.543759685646755],[-123.69235867574139,56.54274665818575],[-123.6917316514327,56.542051685156316],[-123.69129078776149,56.54141273078971],[-123.69096315656986,56.54051352751649],[-123.69003059857491,56.54012802077613],[-123.68880794061302,56.53979109544638],[-123.68713726152174,56.53897197991179],[-123.68595525446135,56.53795203497516],[-123.6847701804412,56.53698470365261],[-123.68363914225766,56.536753616214774],[-123.68145920409432,56.53645205354551],[-123.6793043891219,56.535729463808984],[-123.67875272750068,56.53504026722184],[-123.67823707376849,56.534396552606296],[-123.67926019213101,56.53325829516284],[-123.67988321362202,56.53268108742047],[-123.6803726055762,56.53222700260752],[-123.68004223553886,56.53137927983708],[-123.67944173269375,56.53021172119687],[-123.67936342599224,56.529953632092784],[-123.67896393812039,56.52862605429743],[-123.68119654749874,56.52803529587776],[-123.68419814513324,56.527354113550075],[-123.68643481957527,56.52665798067276],[-123.68687958457393,56.526266960625804],[-123.68696274064845,56.52582684207619],[-123.68759358380848,56.524839513656154],[-123.68970316890359,56.52308968876446],[-123.6905833255708,56.522737865038955],[-123.69194777026951,56.52228825078404],[-123.69378184749628,56.52195352844138],[-123.69599206271815,56.52173088137898],[-123.69887879979791,56.52136114866945],[-123.70119697158692,56.52092962796866],[-123.702750322747,56.52048440155578],[-123.7045997259369,56.51988640570023],[-123.70582272252166,56.51986340390445],[-123.70581537805107,56.519849822802975],[-123.70557211470992,56.51955518473297],[-123.7053337036843,56.519281928676655],[-123.70528724083384,56.51910288640878],[-123.70520040734401,56.518779656506624],[-123.70500188934471,56.51852056198881],[-123.70467839698621,56.51824018148838],[-123.70428478089285,56.51794061444014],[-123.70390259370295,56.517619954394185],[-123.70366572411022,56.51732094341207],[-123.70326279790584,56.516868773123704],[-123.70287566340784,56.51649422136426],[-123.70252019158085,56.51620429696559],[-123.70200703290328,56.51586111495559],[-123.70177047755112,56.51566073944305],[-123.70143986017005,56.51543290224352],[-123.70098102137872,56.51513552070961],[-123.700659259856,56.5149302565122],[-123.70048035662103,56.51478807242512],[-123.69977898066657,56.514392196951796],[-123.69941029151153,56.51411996035005],[-123.69906025676487,56.513807706488905],[-123.69869979514326,56.5134997482801],[-123.69828550781114,56.51313814582686],[-123.69786373827012,56.51279994550558],[-123.69748772387692,56.51241100496124],[-123.69730411974655,56.51214207755646],[-123.69710523024287,56.51175294657954],[-123.69714273978775,56.51139383043615],[-123.69724439305817,56.51105155532907],[-123.69718888133039,56.51095753139197],[-123.697067905346,56.50997351230525],[-123.69505566346992,56.51009547740412],[-123.69325629058807,56.50985359762792],[-123.69262666335001,56.50921126410759],[-123.69202504164159,56.50809643733547],[-123.69160014353322,56.50719437863208],[-123.69049895043388,56.50643932496858],[-123.68947470562425,56.50600059993214],[-123.68807346978248,56.50550128442097],[-123.68667635121936,56.504898910211764],[-123.685383181922,56.504191913076674],[-123.68418045312785,56.50353921167119],[-123.68294341665872,56.50346423235352],[-123.68127748166133,56.502593552653394],[-123.68002488492175,56.502780540265086],[-123.67905259818565,56.50307905905034],[-123.67770959109822,56.50321171206302],[-123.67633316631957,56.50387054257758],[-123.67428355705233,56.50462253670383],[-123.67185484851191,56.50531383163653],[-123.67031111983195,56.50560193280822],[-123.66846501696098,56.50614680842824],[-123.66555434252442,56.50645375878677],[-123.66539608884976,56.506445279640566],[-123.66460414412849,56.50651607448244],[-123.66392424345389,56.506619164283244],[-123.66330343640178,56.50672108338263],[-123.66257075089965,56.506855711031925],[-123.6619875240726,56.50690786915171],[-123.66126146553034,56.50689802020886],[-123.66069811459727,56.50685638268777],[-123.6600366168062,56.50678829685131],[-123.65921076831245,56.50671160975465],[-123.65846431485883,56.50670249429187],[-123.65838935559398,56.50669664503388],[-123.65766714423523,56.506318085099174],[-123.65702234154658,56.505938690591904],[-123.65602064275323,56.505131342364265],[-123.65567000568555,56.504599265832205],[-123.6551618982143,56.503538634866885],[-123.65384830551362,56.50314701770833],[-123.65154335168774,56.50336719204494],[-123.6498045591174,56.50354724324451],[-123.64895050585329,56.50363585957895],[-123.64576218986764,56.50426008781364],[-123.64393482826164,56.50448999774953],[-123.64174114782736,56.504449757742144],[-123.64010493060034,56.50468200074503],[-123.63719022536988,56.50552288848905],[-123.63593093873604,56.50581469050827],[-123.63494872590584,56.50626962219082],[-123.63337599267318,56.50702975735372],[-123.63207832551831,56.507951864768955],[-123.63066605531537,56.50761087085181],[-123.62973168027729,56.5072775555221],[-123.62823553692675,56.506776944643406],[-123.62645596345469,56.50621840016232],[-123.62484634529241,56.50597793619808],[-123.62313352673473,56.50589470662933],[-123.61979717646072,56.50583295277322],[-123.61712566412238,56.50578344210531],[-123.61548602447834,56.50606799332207],[-123.61383991659831,56.50645776638126],[-123.61169340709576,56.507206988845496],[-123.61001942938765,56.50801652654347],[-123.60955118898322,56.50874759820783],[-123.60952141834827,56.5087683411653],[-123.60932615684055,56.5089317200862],[-123.60916279379236,56.50920553846733],[-123.6090400943844,56.50948011325381],[-123.60885774017558,56.50976478689317],[-123.60866237147486,56.51012880076818],[-123.6084597872626,56.51044448230604],[-123.60823104095371,56.51075519323057],[-123.60797771287018,56.51103518253418],[-123.60780102016383,56.5112605537864],[-123.60752074123334,56.511581513395],[-123.60729841444497,56.51182060609572],[-123.6070762518422,56.512023833287635],[-123.60684809455527,56.5122583332725],[-123.60654841983569,56.51249710553889],[-123.60622837668166,56.51276912436773],[-123.60609745627734,56.512878774344095],[-123.60589859686957,56.5129344771417],[-123.60479773704455,56.512992428290836],[-123.6043264260699,56.51264513684184],[-123.60429578126734,56.51258067518438],[-123.60407231548199,56.512208859322286],[-123.60378947620733,56.51190879361576],[-123.60351970444962,56.51162802595749],[-123.60325737794341,56.51129247318962],[-123.60296845148241,56.510992292057146],[-123.60270486093012,56.510710516993534],[-123.60244820089753,56.510415420033624],[-123.60219885127671,56.51013390954334],[-123.60161566106154,56.509620870963474],[-123.60161531507164,56.50949420453813],[-123.60108548906368,56.50910657749661],[-123.60106401938823,56.50902547303124],[-123.60086479752057,56.508591334335485],[-123.60066065237889,56.508138048390165],[-123.60070022216868,56.50749539964909],[-123.6006068704984,56.5073255241074],[-123.60051634735316,56.507043612924825],[-123.60043247519963,56.50681899095759],[-123.60031035434501,56.50655442377115],[-123.60013571693345,56.506349403436545],[-123.60002138525155,56.50615671798813],[-123.60000009078384,56.506105880523535],[-123.59991119204378,56.505896856719374],[-123.59970848200844,56.505519816285464],[-123.59960166377965,56.50540349087351],[-123.59951445130855,56.50533236695252],[-123.59919917150883,56.504965552473216],[-123.59902864211554,56.50485924504515],[-123.59890101834107,56.50468424433627],[-123.59880640299498,56.504568146244196],[-123.59887467753269,56.504351970686535],[-123.59896903174587,56.50420801895663],[-123.59938525677016,56.504026366413626],[-123.59966526473632,56.50390830019926],[-123.59979537893398,56.50384459861625],[-123.60000116457516,56.50367582647868],[-123.60029288651441,56.50343355989366],[-123.60042778852424,56.50332511187786],[-123.6009375494078,56.50291317896068],[-123.60102062513546,56.50278694955736],[-123.60113753654079,56.50270618704943],[-123.60127935940112,56.50258441690678],[-123.60140271297367,56.5024981700469],[-123.60161620352781,56.502402396769426],[-123.6016172704121,56.50228584510374],[-123.6019391923995,56.50218088643111],[-123.60212246030167,56.50201393288038],[-123.60228501794728,56.50181969152816],[-123.60246049337115,56.5015808558702],[-123.60265657078197,56.501337920917514],[-123.6028198446394,56.50109885725118],[-123.60296365031856,56.500878485193354],[-123.60309994274128,56.50064788496142],[-123.60324374517396,56.50042751264047],[-123.60344107600011,56.499998534412086],[-123.6034785574288,56.49991853029772],[-123.60338491127486,56.499919025306745],[-123.60336557555217,56.49917440161021],[-123.6033387038616,56.49795662738024],[-123.60331294608964,56.49691933576486],[-123.60335191006423,56.49628564659159],[-123.60328497614523,56.49571947637493],[-123.60327726331055,56.49514992759258],[-123.60328349586496,56.494452859360074],[-123.60314876650739,56.4937979964203],[-123.60306080359018,56.49347466411426],[-123.6029573399174,56.493138712916654],[-123.60283121850871,56.492972711788916],[-123.60260761081089,56.49280377036647],[-123.60220132816352,56.49259443005179],[-123.60188602685739,56.492460764622535],[-123.60161922966832,56.49233248748421],[-123.6014786494733,56.49226933548248],[-123.60111636735155,56.492105648128586],[-123.60000094636065,56.49168241921417],[-123.59918980898357,56.49137359253663],[-123.59771995854469,56.49079240017195],[-123.5969748501909,56.49053523323384],[-123.59681520336652,56.49045154346198],[-123.59645811867387,56.49033613737209],[-123.59628486908834,56.4902421044954],[-123.5959186621428,56.49010971299819],[-123.59578557692421,56.49002427725566],[-123.595031173984,56.48968734240007],[-123.59432291531137,56.489295223295],[-123.59346601518892,56.488872293384745],[-123.59247923931343,56.488477186957454],[-123.59234591770071,56.48842873201012],[-123.59203040724856,56.48829952100686],[-123.59151798601032,56.48816325444692],[-123.58969626829179,56.487781610076986],[-123.58907562911077,56.48768477525619],[-123.5879766793672,56.487591285835045],[-123.58744700834995,56.48750399742721],[-123.58736549238357,56.48747332341031],[-123.58699213665287,56.487358705400496],[-123.58646155064116,56.48715482410973],[-123.58581269689589,56.4868568054483],[-123.58554735105949,56.48677223520928],[-123.58535763081662,56.48671486641403],[-123.58486905615655,56.48665411993347],[-123.58335839728392,56.486540518378185],[-123.58324326296342,56.48652714322255],[-123.58222486024074,56.4864149434785],[-123.58125688198194,56.48624427838042],[-123.57956099307984,56.485870461074796],[-123.5791795475057,56.48575566728001],[-123.57723382937334,56.48521233947477],[-123.57628915945874,56.48502750426264],[-123.57542971536803,56.48487901829609],[-123.57408294087907,56.48468321237157],[-123.57369447480514,56.484648972997356],[-123.57326374506948,56.48457470287061],[-123.57283257719764,56.48444213691738],[-123.57250903584955,56.48431272464116],[-123.57204250267176,56.48399678304731],[-123.57177533378842,56.48374625792777],[-123.57172458578272,56.48367916614357],[-123.57143662585996,56.48323993829721],[-123.57108781339426,56.482406127941225],[-123.57107713794122,56.482316255171824],[-123.57078561694856,56.48160794593512],[-123.57063027993566,56.48106474074123],[-123.5704129044711,56.480374646667634],[-123.57028701586111,56.47962015112153],[-123.57020212279609,56.4788933325703],[-123.57000379153254,56.478354917883365],[-123.56974553116028,56.47766853295557],[-123.56962015929722,56.47749354402968],[-123.56945262177918,56.477342416314066],[-123.56931116285416,56.477262397703015],[-123.5692204318787,56.47721696573308],[-123.56892126392961,56.47705662015963],[-123.56861461499919,56.476951055527],[-123.56819087770782,56.47670092045564],[-123.56773639779732,56.4761285078186],[-123.56744013319052,56.47569359698742],[-123.5673364647237,56.47536657662589],[-123.56735070504106,56.4751056804735],[-123.56773602848014,56.473949503204985],[-123.56778228571554,56.47372956552639],[-123.56777900147061,56.473423502333304],[-123.56769942670752,56.47306891691774],[-123.5676598388154,56.47266016578216],[-123.56762002937039,56.47218976199167],[-123.56775715655635,56.471393171086476],[-123.56780614375272,56.47083590019216],[-123.56776449947829,56.47029708837396],[-123.5677469101404,56.47025304079559],[-123.56763830294815,56.47003801584973],[-123.56745244192408,56.46982264797157],[-123.56709576051699,56.46963991104826],[-123.56680501093402,56.46957387341481],[-123.56673048029971,56.46952986738059],[-123.56651657290539,56.4695033953968],[-123.56628479905936,56.46943735352453],[-123.56506159543868,56.46925835745464],[-123.56413537009811,56.4690782592827],[-123.56369635303183,56.46897689563378],[-123.56320781604177,56.468821909049005],[-123.56214621084084,56.4684004784384],[-123.56186457970477,56.46825389890324],[-123.56171476495685,56.46817819620823],[-123.56118183748957,56.4678878525487],[-123.56089019661704,56.4676738276258],[-123.56069093955904,56.467575887512965],[-123.56012518013443,56.467160497352296],[-123.55976540607035,56.46686559208084],[-123.55949766372568,56.466529841801666],[-123.558877800246,56.46593968032279],[-123.55865320951577,56.46569441940101],[-123.55811733539082,56.46522466491888],[-123.55774400516549,56.46498441905483],[-123.55748573475884,56.464855087075506],[-123.55670996789576,56.46428772830105],[-123.55606117318013,56.46386849692532],[-123.5559948591634,56.46382351989871],[-123.55529503954793,56.46331027958999],[-123.55502811979845,56.463059722221494],[-123.55483438288456,56.462809437455526],[-123.55472154240117,56.462468781012774],[-123.55431828274072,56.461279686998104],[-123.55429855546275,56.461140321599004],[-123.55418462041911,56.46068755562359],[-123.55411167169312,56.46009994381739],[-123.55402453706354,56.459803491215915],[-123.55386249569538,56.459404731590936],[-123.55367540063135,56.45849773461634],[-123.55351010582442,56.457924055042845],[-123.5532384672489,56.45729566659445],[-123.55326854233948,56.45707542627165],[-123.55341183910038,56.456832684963416],[-123.55419713872418,56.45598009101018],[-123.55426499523445,56.455902922520536],[-123.5546782242706,56.4554075215192],[-123.55521841478824,56.45460517549646],[-123.55529054189988,56.45449221982693],[-123.55549346149247,56.45430329399399],[-123.55589312698321,56.453991455776965],[-123.55651430892934,56.45361546084383],[-123.55662164170423,56.45355697703994],[-123.55686529414466,56.453399088560495],[-123.5582882352808,56.45261913891823],[-123.55954960850127,56.45201656329925],[-123.56011352738344,56.45167757331236],[-123.56041427948092,56.45145127014423],[-123.56128928985436,56.45098032168724],[-123.56158183761441,56.45072247571583],[-123.56180080388181,56.45043857190797],[-123.56191329099471,56.45019972145686],[-123.56202863181841,56.44968743222488],[-123.56212456457864,56.4489326659358],[-123.56207197536185,56.44863575654469],[-123.56187566856168,56.44826438066222],[-123.56115740681227,56.44704131003437],[-123.561099724217,56.44695614825958],[-123.56107906539177,56.44666881244318],[-123.56128659643532,56.44620983715904],[-123.56160927056312,56.4457945222134],[-123.56169872145259,56.44566395938399],[-123.56232375846723,56.44502797285622],[-123.56252371486713,56.44468990639205],[-123.56285984827952,56.443961001418664],[-123.56300098399007,56.44342566519562],[-123.56306919405381,56.44301672288737],[-123.56325693249947,56.4424183824507],[-123.56336185401996,56.44168172329995],[-123.56355097923566,56.44106099202247],[-123.5635488612851,56.440867041789716],[-123.56349727162022,56.440781996986956],[-123.56334594298207,56.44063453102607],[-123.56321239595873,56.44052775383906],[-123.5630716423586,56.44043877348654],[-123.56287993087724,56.44025467210088],[-123.5626945104283,56.439937306751744],[-123.56272403185822,56.43975740803346],[-123.56270442054442,56.43955079594582],[-123.56259515979146,56.43938059006768],[-123.56252670599228,56.439272807110335],[-123.5622770517264,56.43904052742376],[-123.56124726343205,56.43844819187299],[-123.56085660447035,56.438228920737714],[-123.56060549698549,56.43798764303267],[-123.5603797975775,56.43782755044275],[-123.559979981328,56.437397379312664],[-123.55992056602074,56.43734020580607],[-123.55970194185169,56.43706703895113],[-123.55938905866978,56.43654660849359],[-123.55937856511753,56.43625946691301],[-123.55941782546451,56.43615148980344],[-123.55965506192182,56.435606778652925],[-123.55957493957332,56.43506835942789],[-123.55937089432035,56.43413976285278],[-123.55937432717485,56.43382486493433],[-123.55922894084344,56.432348160785786],[-123.55924489733754,56.43219042249397],[-123.55931481283177,56.43133204988037],[-123.55939101623903,56.43099051552714],[-123.55959016197451,56.4298846498929],[-123.5595891827606,56.42983531327689],[-123.55959492155426,56.42964599659104],[-123.55953132243638,56.42936344979196],[-123.55939824505182,56.429184941986954],[-123.5593638221346,56.42908565098998],[-123.55899636050185,56.42869196000642],[-123.55849457425963,56.42820492094769],[-123.55809445273832,56.42787897811139],[-123.55756778025899,56.42740042826157],[-123.55750922603976,56.427297314570964],[-123.55735797224995,56.42714984250784],[-123.55716398276725,56.426841272825826],[-123.55712047582065,56.42669249018896],[-123.55709550742807,56.426572082248896],[-123.55738626265078,56.425658513189425],[-123.5575646403386,56.424885153284684],[-123.55761890947447,56.42401751925346],[-123.55764593625581,56.423617886588204],[-123.55761413416934,56.42311961866556],[-123.55748174088298,56.422540974629484],[-123.55720132710059,56.42195838997403],[-123.55718412159574,56.421908744353125],[-123.55697905246609,56.42138812099192],[-123.5568511670201,56.420607807602266],[-123.55682679910466,56.4200233754245],[-123.55671829089236,56.41932301248514],[-123.55677611211695,56.41878834364817],[-123.55696453566368,56.418113814444396],[-123.55705780429733,56.41772665370823],[-123.55753818820264,56.41679988950488],[-123.55788242657924,56.41610142766533],[-123.55797238666723,56.41586439866645],[-123.55904949405114,56.41399963061758],[-123.55949159289854,56.41361911055576],[-123.55987570343204,56.41328904480079],[-123.56946513799019,56.410601832148934],[-123.57923052676527,56.410033402488025],[-123.58749485546986,56.41061959875738],[-123.59561465744987,56.41012654724974],[-123.60143060941638,56.40879186915207],[-123.60363040602999,56.406824487473315],[-123.60594578554692,56.40296728135046],[-123.60587546191839,56.40119955004305],[-123.604345253123,56.398875510901114],[-123.60700107676327,56.39581373110601],[-123.61284905240487,56.39231825753341],[-123.61559321862904,56.388854483613166],[-123.61530530309611,56.386921330394024],[-123.61891118408543,56.38395773129669],[-123.61966174380096,56.38229495307748],[-123.61525309135642,56.38006100931145],[-123.61227430230105,56.37780873636299],[-123.6108075691276,56.374454830842225],[-123.61231277733884,56.37106668716699],[-123.61745278530105,56.36820349964933],[-123.61790915737458,56.363908124156175],[-123.616391254519,56.359531185240776],[-123.61477192511296,56.354695056933885],[-123.60547794485083,56.353893904652985],[-123.58800385627511,56.354498366058706],[-123.57670095126086,56.354975324117326],[-123.56856423132481,56.35461480909885],[-123.5666427548484,56.350301254074736],[-123.56582297457541,56.3447084820898],[-123.56388463133764,56.342501701145345],[-123.55682492307807,56.33817974216379],[-123.55064817329017,56.33505786286057],[-123.54732286889819,56.33172136949731],[-123.54770059238486,56.32543409999659],[-123.55278820398345,56.321317278020906],[-123.56078331062052,56.320716814039756],[-123.56451959035874,56.31849260602467],[-123.56295984627194,56.31543224349159],[-123.56242067531433,56.314982613290155],[-123.56278370742,56.31097258025444],[-123.56498524890135,56.30683618594394],[-123.56579892119063,56.30391071043849],[-123.5625168554061,56.30120310067977],[-123.56055628751699,56.29809024062005],[-123.55833155682845,56.29662211381921],[-123.55501527651124,56.29551862586594],[-123.55435588028978,56.291811866058715],[-123.55637757673823,56.288479186894484],[-123.55922765657468,56.28483952422122],[-123.55925668365039,56.28307371488653],[-123.55328351006577,56.27708654220096],[-123.55209891783936,56.27583546634526],[-123.55564733707845,56.27448672990994],[-123.55865752373592,56.272679302275186],[-123.56000891721061,56.27021249946564],[-123.56033167038237,56.268147459587865],[-123.5619670595789,56.26527362326276],[-123.56350353409195,56.26216476557971],[-123.56436561216783,56.26079144681977],[-123.56058964341922,56.26140081181533],[-123.5510511493528,56.261514152700265],[-123.54764642455818,56.26109913653198],[-123.54283046107717,56.25841531089332],[-123.54145180617215,56.25459603727561],[-123.54496440491691,56.25250275031259],[-123.54983381066619,56.25095546133008],[-123.55249493291385,56.24538468746959],[-123.55246053202653,56.244639833684516],[-123.55105376249965,56.239968367676646],[-123.54925680571876,56.23559424700891],[-123.54608952008718,56.233229081221516],[-123.54255226583487,56.232129906970684],[-123.54152162728063,56.22922294348794],[-123.5420314219899,56.22624702657147],[-123.53831070273179,56.22292954268992],[-123.52683368561729,56.223164870484744],[-123.52622382397603,56.223350304875034],[-123.51621866601691,56.218717627802626],[-123.50891214485091,56.21515004728427],[-123.50081595343805,56.21232869368814],[-123.49464259670884,56.20902454436653],[-123.49022549339028,56.205817418465394],[-123.48862247596645,56.2043512489763],[-123.4886790058847,56.200183022017974],[-123.4934386155894,56.198519276154244],[-123.49904726436343,56.19772381248562],[-123.4976310910192,56.19281838368217],[-123.49806754867134,56.19053159127455],[-123.50056186969312,56.18890383419777],[-123.5057268951506,56.18718485898443],[-123.51158632955998,56.184950238964916],[-123.51254736816146,56.18048592314467],[-123.5077067767721,56.1771097476621],[-123.50263404105807,56.175620687665486],[-123.50168121806682,56.17460676728238],[-123.50019627220873,56.17028285344702],[-123.49896550117329,56.167550921735284],[-123.49439872263282,56.165999710558964],[-123.48837914720325,56.163442382688906],[-123.48681108176216,56.15969049123553],[-123.48768809309135,56.15556541977528],[-123.48980045785298,56.15205647173044],[-123.49103143044326,56.14895154732528],[-123.48659820695848,56.14534940487226],[-123.4839060375871,56.141781512990676],[-123.48215234574509,56.13842937702152],[-123.4820898351993,56.13688596686859],[-123.48036080187694,56.13416192133461],[-123.47672724152525,56.13271813459628],[-123.47421121793276,56.13120675719628],[-123.47320553138151,56.128532820632756],[-123.47082635298825,56.12489911233793],[-123.47055952518107,56.12353095731428],[-123.47098299629681,56.12095712858279],[-123.4745869015394,56.11857198383144],[-123.47449477919591,56.11623897118043],[-123.4762134806093,56.1130721812711],[-123.47456752837908,56.10982966842189],[-123.47318749752237,56.10847528895431],[-123.4734760808143,56.104984255557426],[-123.47486375184343,56.10069017475632],[-123.4764831932769,56.09478680799388],[-123.47399366184806,56.09063991706757],[-123.47274133189788,56.09031915643729],[-123.4712058020843,56.08713259310946],[-123.47255343201412,56.08471166894017],[-123.47190532106211,56.08100479504479],[-123.47302862182293,56.078310435715046],[-123.47689068259822,56.07786711965309],[-123.47927461801166,56.078873768120765],[-123.48546648276623,56.080287482296555],[-123.50104471165673,56.081536056391926],[-123.50584147442616,56.08159438444323],[-123.50823737309197,56.0801351052019],[-123.51034928520708,56.07628532033242],[-123.51020468273722,56.07526038726224],[-123.51249030712971,56.07094776476708],[-123.51635797631747,56.07039579495824],[-123.52084242248674,56.07027713103474],[-123.52031333786415,56.066913626957955],[-123.5158572605884,56.06531139656433],[-123.51554972945819,56.065081241456745],[-123.51095683152352,56.0623375068172],[-123.50949640480393,56.058695694955674],[-123.5093975962836,56.05618334999235],[-123.51705357332013,56.05603732326322],[-123.5261393651187,56.055936614819274],[-123.53343021855665,56.05441971854067],[-123.53711192337889,56.051918010758946],[-123.53896748220052,56.049784295333446],[-123.54210610529802,56.04642917639804],[-123.54679711225175,56.04346260741886],[-123.5508523598695,56.04009810731203],[-123.55519406563866,56.03599487531039],[-123.55940244221316,56.03143171797115],[-123.56139604467465,56.03015210090539],[-123.56275285205365,56.02824162005109],[-123.56373151496459,56.024638376764436],[-123.56905606662963,56.019934998783334],[-123.57336466324307,56.015256837259095],[-123.57798508479705,56.0104589933211],[-123.58019077568177,56.00700460591155],[-123.58158591727376,56.0033913020438],[-123.58589701045116,55.99993212283362],[-123.58662051980997,55.9973011447235],[-123.59215712550841,55.995075388951484],[-123.59311776284363,55.99329161519988],[-123.59815625981695,55.9886714363834],[-123.59976810835546,55.98489176396863],[-123.59903134573075,55.98141728023997],[-123.59840947691353,55.97816909746555],[-123.59869584413,55.97451675580988],[-123.60513139906799,55.9717068855522],[-123.60746109203808,55.97116813822531],[-123.61262450514553,55.970252416171135],[-123.62235619933139,55.96895606056144],[-123.62944276394481,55.967564715383936],[-123.62944015642998,55.96734054282145],[-123.63027581795265,55.962246148785475],[-123.63478054955989,55.957014088937264],[-123.63967530874673,55.954102100489315],[-123.6470262398172,55.951450721910376],[-123.64912741201435,55.95040497249721],[-123.65730642672294,55.948655898276755],[-123.664588325807,55.946862885805615],[-123.67039714619067,55.94445072302776],[-123.67436886337632,55.941332250404095],[-123.67732359496956,55.938849448025856],[-123.67886038894248,55.93591031028071],[-123.68104151823127,55.93155758052802],[-123.6801244104564,55.9285914227305],[-123.67940527787738,55.92580817857803],[-123.68072572305059,55.9229905820859],[-123.68205542804736,55.92001178438037],[-123.6808994511364,55.916198594238],[-123.67461865918973,55.91444287912127],[-123.66809004273452,55.9141793739124],[-123.66461837869738,55.91375680105784],[-123.66210180196524,55.91155883864057],[-123.66068109393625,55.9090045611766],[-123.6588887864821,55.90731296674595],[-123.65555537351992,55.90483978013262],[-123.65260193057358,55.90218528890904],[-123.64924252042296,55.899083914722176],[-123.64779674502415,55.898590889893065],[-123.6449395162069,55.89810745053285],[-123.64081876677524,55.89649773952445],[-123.63767900013723,55.894305568368075],[-123.63539350010632,55.89284645778828],[-123.63305824921406,55.89275797661456],[-123.630038357704,55.893929625948644],[-123.62550704220573,55.89249996920433],[-123.62157698451517,55.890140145880615],[-123.61569404955642,55.88774340855127],[-123.60956335910541,55.887071914639705],[-123.60574421091535,55.88528741988962],[-123.60456914041222,55.88404596039857],[-123.60099090671135,55.88305478153755],[-123.59724445466051,55.88378155663214],[-123.59553815010102,55.88443046950963],[-123.5931211517263,55.884904474618786],[-123.58787779686243,55.8833612677147],[-123.5846009279184,55.8824291516429],[-123.58192322678059,55.88166080563927],[-123.57966853694985,55.881052898805784],[-123.57859349540557,55.87923933989477],[-123.57767584169333,55.87616473005742],[-123.57553922515912,55.87311157830509],[-123.56985908217945,55.87036687544282],[-123.56147038874082,55.86869032799143],[-123.55116258829288,55.86748706977303],[-123.54126744613714,55.86661372618286],[-123.53443276146517,55.865996540296],[-123.52741995938605,55.86618235930199],[-123.52261696963727,55.86817723531224],[-123.51850583177409,55.86986277036535],[-123.51693359660864,55.87193872827416],[-123.51874690014702,55.87419767950059],[-123.52156795898142,55.87674530729535],[-123.5207967142066,55.87805703981353],[-123.51755136439708,55.87844165133483],[-123.51482712871304,55.8792039934667],[-123.51233157808196,55.880661098826195],[-123.51064726282785,55.88170379363562],[-123.5078279712263,55.882697218857096],[-123.50526569680066,55.88215362767091],[-123.50300820307385,55.88160703425256],[-123.4993259443814,55.880781215190694],[-123.49859680162922,55.88039922278275],[-123.49763470581792,55.87863196371962],[-123.49728801577712,55.8772713468402],[-123.49493275062365,55.87700955729906],[-123.49078296191183,55.8775010848422],[-123.48740544519264,55.87668095223833],[-123.48486162888236,55.87636143569689],[-123.4810050631477,55.877028815569744],[-123.47831807729727,55.87870559311092],[-123.47603160845551,55.88038134543429],[-123.47441950977915,55.88103054008264],[-123.46936116246759,55.88193357716261],[-123.46541352693589,55.88225799046752],[-123.46045143965456,55.883153642077886],[-123.45836592759888,55.884429684863484],[-123.45263921317704,55.88374967827678],[-123.44694091790092,55.88362584495862],[-123.44026129693442,55.884548803841724],[-123.43571515934781,55.88544295304884],[-123.4322230777366,55.88417073448772],[-123.42840189142751,55.87883927213502],[-123.42720462613056,55.876053520590915],[-123.42194345148732,55.87341808953761],[-123.41452475440568,55.870460402800184],[-123.4058344985668,55.86882999941683],[-123.39901343895227,55.86826850192336],[-123.39636170849356,55.86765805879866],[-123.39173752016455,55.86610135008689],[-123.38755291461,55.86225831620283],[-123.38579638498793,55.8609578397191],[-123.37726571664041,55.86131911619345],[-123.36740709039924,55.861410099828504],[-123.3649617237693,55.86132329617121],[-123.36471531081895,55.85948912700087],[-123.36393186486389,55.85681890341301],[-123.36387637897879,55.854764568510554],[-123.36462600274992,55.852646329802944],[-123.36850640431204,55.849929837017434],[-123.37275794395326,55.849094801890544],[-123.37450630058498,55.84639656997338],[-123.3749726370716,55.84467586385176],[-123.37580914077003,55.84244283090659],[-123.37844001678009,55.838256640558306],[-123.3801958014994,55.835675064400135],[-123.3796083641266,55.832937305865904],[-123.37498772331357,55.831155832624646],[-123.36846496301332,55.83030287774661],[-123.36527298940577,55.82895424507151],[-123.357279715802,55.82999767265637],[-123.35405793405441,55.83053991372841],[-123.35010166307866,55.83057354966624],[-123.34564848703427,55.827987556688],[-123.34193788861337,55.8257935906603],[-123.33834183737126,55.824283329357215],[-123.3376746347018,55.82206366075343],[-123.33941866386547,55.81897131959582],[-123.34141431190295,55.81427040697544],[-123.34167241475589,55.81233025226167],[-123.33947067491566,55.80961206103339],[-123.33615004261392,55.80712126978842],[-123.33022226550027,55.805579458848044],[-123.32563042441801,55.80487259731184],[-123.32120666985199,55.80262699414764],[-123.31881035030302,55.7999760069685],[-123.31621149385322,55.79394051015507],[-123.31508586863731,55.790249509641775],[-123.31481992796748,55.78756304331836],[-123.31217091073921,55.78370510192393],[-123.31039735822885,55.78132720696451],[-123.30817891584326,55.77820458764452],[-123.30832241242666,55.77632480595311],[-123.3126322134043,55.773825536891906],[-123.31551020151345,55.77169017093103],[-123.31510551735948,55.76822073266875],[-123.3124737213727,55.76436315622666],[-123.31214041998909,55.76362085235097],[-123.31277231489744,55.760424537933275],[-123.31524068728643,55.75771562889232],[-123.32102870612991,55.7545841310439],[-123.32380041095581,55.75233877781489],[-123.32531709038591,55.74856050385054],[-123.32768394421245,55.7459119995243],[-123.33390929690253,55.74026988055694],[-123.338066847356,55.73686112709229],[-123.34142395499917,55.733471234620644],[-123.34235755008548,55.73049639560327],[-123.3394507076151,55.72812191901599],[-123.33546378894827,55.72662110251065],[-123.331709132169,55.71928841072023],[-123.3308226941693,55.71656199765307],[-123.32811635882798,55.713841817953394],[-123.31825826386952,55.712332304063175],[-123.29840262720066,55.707873394691575],[-123.2887259740731,55.70584538895303],[-123.2797605968773,55.70346438367885],[-123.27017736210502,55.7010334624816],[-123.2647875635443,55.69958954447233],[-123.25305736137187,55.69985422788448],[-123.24245582172598,55.70546839526348],[-123.23482347882269,55.707820527857365],[-123.22299572770163,55.71241099923671],[-123.2093154412117,55.716062772928886],[-123.20104173418274,55.71703586403216],[-123.19396152482231,55.71760462637245],[-123.19097365967131,55.71944787392395],[-123.19359511509222,55.72324527075048],[-123.19672360369553,55.727331843597426],[-123.1955946111678,55.73088430234233],[-123.1910261999472,55.73428841447507],[-123.18804876271273,55.736867109963114],[-123.18338995360827,55.73724726969653],[-123.17894668239724,55.737739681490226],[-123.17319312748971,55.73868674993941],[-123.1670494845633,55.74039591723626],[-123.1624839964521,55.73990765988713],[-123.15352227108583,55.73768810693829],[-123.15117092879447,55.73662175382606],[-123.14686326943323,55.73477581747269],[-123.14450562802675,55.73313532556574],[-123.14252872664633,55.73086678830544],[-123.1389226481656,55.728606068282616],[-123.13667544488911,55.727658357318965],[-123.13452916678253,55.72664116594805],[-123.13337197115244,55.724310408224824],[-123.13640843847027,55.71984233145519],[-123.13934842569405,55.71559617632755],[-123.14021877343932,55.71370604897851],[-123.14056299413708,55.71114044605684],[-123.13949025169212,55.70852473661515],[-123.13680492437443,55.706141362480636],[-123.13371191372131,55.70388314583208],[-123.13234485978276,55.70115306599935],[-123.13035840967339,55.698606119661015],[-123.12759992691196,55.69725202394335],[-123.12373484037576,55.69641955499397],[-123.12168550731859,55.69541328764146],[-123.12113720129467,55.69306941598925],[-123.12277392890769,55.68941256896609],[-123.12718426552867,55.68732543758685],[-123.13019846275999,55.68645269841967],[-123.13227311601308,55.68467079492908],[-123.12999976228018,55.682574592944675],[-123.12743372796317,55.68100069580096],[-123.12690258207992,55.679742212030675],[-123.12684227927024,55.676602520885886],[-123.12778604899118,55.67369198594566],[-123.12841239968739,55.67031690909279],[-123.12774468650865,55.66763859127001],[-123.12768004970764,55.66433741250013],[-123.12971782619314,55.66084212738718],[-123.13431625811765,55.65875016515121],[-123.14072971831625,55.65579370291212],[-123.1460062762292,55.65245248500399],[-123.14915818107015,55.648946358172225],[-123.150089214979,55.64529122277839],[-123.14860808146501,55.64216422554665],[-123.14583711390182,55.64058602698916],[-123.13966813457078,55.640401003861555],[-123.13906621720335,55.64035144304454],[-123.13814264555118,55.63990003305231],[-123.13676608299102,55.637107014315454],[-123.13496408262608,55.63358696351438],[-123.13159354577871,55.63150160381208],[-123.12547470460575,55.62931745956678],[-123.11667804648765,55.6289276816165],[-123.11073006664034,55.629015262805424],[-123.10455494933167,55.62872073256082],[-123.0991904413427,55.62801420789993],[-123.09440881578246,55.62696225898986],[-123.08662984575099,55.62638764876163],[-123.07894825655282,55.626442488907415],[-123.0728863986586,55.62613108780618],[-123.07000936434301,55.624100318532356],[-123.07122889542634,55.61964534696923],[-123.07475457600206,55.61414117308287],[-123.07570014025475,55.61145522381504],[-123.07555646857686,55.609290892440015],[-123.07479850102112,55.606385952043844],[-123.07257931336324,55.60235301639518],[-123.07080610832296,55.59962164945654],[-123.06793009102775,55.59673897686703],[-123.06546319202431,55.59457416650442],[-123.06440398394007,55.592531885532736],[-123.06668907275782,55.5904601594596],[-123.07129560465562,55.58906127056402],[-123.07531099819523,55.588123688690516],[-123.07648801720391,55.586178423351534],[-123.07371018562701,55.583916867112514],[-123.06931442499005,55.58137538266616],[-123.06603479470554,55.57837561915467],[-123.06324407436917,55.57565620239879],[-123.05956581413324,55.573113195957156],[-123.0562130284086,55.57198549190772],[-123.054679290373,55.57142943585719],[-123.05089148533956,55.56865941427465],[-123.04823733942274,55.566911254874974],[-123.04448195910683,55.56521780487409],[-123.04233349334079,55.56437810370363],[-123.04151478443441,55.56340831829414],[-123.03965536586159,55.561033082660266],[-123.03688536020196,55.558717015844834],[-123.03170573482123,55.55737508834592],[-123.02758609385606,55.558030778019514],[-123.02631055055753,55.55956976476309],[-123.02543006829234,55.560714595319446],[-123.02404656691657,55.562206169859174],[-123.02080865763901,55.56212036912072],[-123.01535933665429,55.561408016362535],[-123.00697132788277,55.56128891886497],[-122.99823180360522,55.56288253027874],[-122.99143834031607,55.5662887460861],[-122.98746597297752,55.56939472011826],[-122.98276607406223,55.57159534676726],[-122.97759379614442,55.575613748056305],[-122.97332778086191,55.57962691662653],[-122.97133605009964,55.58050250593973],[-122.96783448542381,55.58177203649841],[-122.96179237413783,55.58254958690793],[-122.95864788813313,55.582051983355804],[-122.95578173693136,55.579785515595454],[-122.9534247817832,55.577522367757396],[-122.94774900520898,55.576012474878084],[-122.94206954004564,55.574556030052726],[-122.93994709673564,55.57422631278706],[-122.93455503792613,55.57152108053841],[-122.93107233905232,55.56840496668585],[-122.92909077177768,55.565217880307685],[-122.92996222078978,55.56298837260658],[-122.9352699206976,55.560562406993526],[-122.94168474622961,55.55841431281577],[-122.94486198162394,55.555550426204405],[-122.94692196498029,55.552112277537994],[-122.95040381000497,55.55003584573558],[-122.9543055601703,55.548077131119626],[-122.95415304459719,55.54528459929813],[-122.9497720209528,55.54290940161837],[-122.94742454931436,55.5407629008903],[-122.94647153749807,55.53888346383701],[-122.94540542031899,55.535575458117236],[-122.94205151497445,55.52852609058526],[-122.94128281927686,55.52424785575454],[-122.9407968998519,55.5198061379668],[-122.94293066135457,55.515177261330926],[-122.94598266675752,55.51161991783008],[-122.94854609895786,55.50800578241337],[-122.9534248679934,55.505470191375466],[-122.95894700664603,55.50407094418946],[-122.9637412347879,55.50221443419486],[-122.96296296124021,55.49845625891343],[-122.96080136990965,55.49556124134818],[-122.95821764458422,55.491750243788005],[-122.959009701765,55.48593184097312],[-122.95958662515024,55.483982037416375],[-122.95955242490317,55.48192772522166],[-122.95385517514586,55.47900047042953],[-122.94598188360442,55.47756224391674],[-122.94030601732965,55.47582750338037],[-122.93562749328451,55.47288839023706],[-122.93285913458311,55.46987932603675],[-122.9313625963861,55.464982373435014],[-122.93634081561297,55.4613021939444],[-122.94515151884177,55.45976894058196],[-122.95884175606645,55.45997680204384],[-122.96106029397488,55.46042524308743],[-122.97095725936293,55.462754482498134],[-122.9770161818151,55.46403080853991],[-122.9830615093581,55.46423046263731],[-122.99188385752439,55.46252385715433],[-122.99625427788914,55.45946348288535],[-122.99775912541426,55.4542091019752],[-122.99666958820106,55.44970846194327],[-122.99619275574945,55.44634338629312],[-122.99753553811516,55.443030957673386],[-122.99822123195686,55.44171134268918],[-123.00055418523908,55.43787566788734],[-123.00218907727701,55.434041167563976],[-123.00071404975263,55.430454922047105],[-122.99916306853585,55.42767385148371],[-122.99389121906401,55.4261125356259],[-122.98755405192108,55.42523371763382],[-122.98259495699855,55.42394845081194],[-122.98168729477985,55.41790970940558],[-122.98559783948512,55.412695622930976],[-122.98666033755985,55.41057814157719],[-122.98900436030146,55.40679678367412],[-122.99042947601973,55.402168315830394],[-122.98793071307972,55.39790263871768],[-122.97940135785711,55.39801060822429],[-122.9719165850451,55.400851345716696],[-122.96182273630643,55.40319784763949],[-122.95442099454027,55.40512496778402],[-122.94462933747926,55.408257639662885],[-122.93853341198705,55.409659808502134],[-122.93199811862414,55.40975962761196],[-122.92405396302988,55.40922363854749],[-122.91424952560713,55.411448002103086],[-122.9067532302044,55.413316258668786],[-122.90134983634434,55.41454548586308],[-122.89472618535542,55.415771086844366],[-122.88680195468082,55.41598651216825],[-122.87955539065989,55.415231926325404],[-122.87220565093246,55.41417840297707],[-122.86897067296069,55.41339795057226],[-122.86793801049006,55.41181172198511],[-122.87482900368026,55.40858549049214],[-122.87981777596904,55.40678210679162],[-122.88106235475348,55.4034144860589],[-122.87650056478623,55.4003592116713],[-122.8714483658318,55.39912982503197],[-122.86358944365217,55.39733659428982],[-122.85704786817415,55.396526563059524],[-122.85091788722963,55.39592384528392],[-122.84879657135211,55.39530540258063],[-122.84626240739449,55.393896313989636],[-122.84639795721922,55.389559376938024],[-122.84845785359067,55.38612293377263],[-122.84919503406185,55.38178324718918],[-122.85124514865933,55.378463110061084],[-122.85262628957793,55.37680303884493],[-122.84558268645131,55.37597966725805],[-122.83916618241211,55.37664246814806],[-122.83477902030211,55.37786755177824],[-122.83060306960016,55.38062236710484],[-122.82730852520305,55.382637186978506],[-122.82173765497998,55.38499758503947],[-122.8120839125084,55.38452739720534],[-122.80512145002321,55.381883343566244],[-122.79995024501203,55.378827421474995],[-122.79761227654375,55.37598743517092],[-122.7936612898141,55.37411937315061],[-122.78795299117073,55.37443005150171],[-122.7839264719178,55.37410222291444],[-122.78141169680104,55.373086823683956],[-122.77845068853327,55.37014069737317],[-122.7762293974518,55.36843324731353],[-122.77050054989242,55.36782783504698],[-122.76717473618413,55.36784938773468],[-122.76417153956172,55.36740390235817],[-122.76063616834871,55.36610153172678],[-122.75700784162677,55.36458140489391],[-122.75499715064548,55.36419733901284],[-122.75257316238752,55.3626635302409],[-122.75392687940104,55.35923701794519],[-122.75419033386478,55.35637405243451],[-122.7521401625747,55.3529666252887],[-122.75100420377518,55.350973028093435],[-122.75187751225707,55.34937251808561],[-122.75204390160597,55.345951004898126],[-122.74832521208752,55.34596178300831],[-122.74563574396768,55.34654635563302],[-122.74008377530991,55.34497549891532],[-122.73343287053882,55.341752362956356],[-122.72890093272218,55.34068300012921],[-122.7232834276955,55.34070600489808],[-122.72058579351366,55.34100283622475],[-122.71579103064074,55.34198880622724],[-122.70987892920826,55.34367158467361],[-122.70657160686078,55.34368299133624],[-122.70305417376606,55.342208963515105],[-122.6997094456599,55.339600401711614],[-122.69899673574804,55.33903447075501],[-122.69356667688137,55.33716873632243],[-122.68763509505318,55.335827550673194],[-122.6823058196613,55.335049174938526],[-122.67889146654592,55.334832768552246],[-122.66919511290196,55.336744678458984],[-122.65952072029329,55.34236949654849],[-122.6566480476412,55.34494730359009],[-122.64912263734186,55.35472770906412],[-122.64556364365119,55.368704190271515],[-122.64294580309615,55.37784483930885],[-122.64083376445944,55.386227755242274],[-122.63868046502597,55.39188301350071],[-122.64032029393648,55.395182829055514],[-122.6408246540399,55.39559102136814],[-122.6394302327854,55.39672844842455],[-122.63461314275584,55.396177253581286],[-122.63019205685073,55.39619262584839],[-122.6279889891824,55.39676998435903],[-122.62425351574389,55.39832949904323],[-122.62254680050762,55.39698735686934],[-122.62220053964863,55.396725743319934],[-122.62195032739102,55.39652278182138],[-122.62163464780228,55.396274325700475],[-122.62110956082165,55.395973118434966],[-122.62108312798517,55.3959578289564],[-122.62072718329046,55.395740794006265],[-122.62042909664945,55.395542139879566],[-122.62012676508657,55.3953938208167],[-122.61973261854574,55.395230684529295],[-122.61922701100052,55.3950039900414],[-122.61858151729604,55.39476902293961],[-122.61800574444351,55.39452921287387],[-122.61728800179279,55.39432928015971],[-122.61727059924768,55.39432432446336],[-122.61695463125295,55.39422047311225],[-122.61647196791955,55.39409753188778],[-122.61613586086457,55.39402116118175],[-122.61594339652497,55.39397895088889],[-122.61591611637063,55.39397372744552],[-122.61558161826476,55.39387833957318],[-122.6153679909959,55.39382882828853],[-122.61531173905578,55.39381497191694],[-122.61528643467197,55.39380980185792],[-122.61522058849934,55.39379232212846],[-122.6151587880657,55.39377383084391],[-122.61513771847461,55.39376541209682],[-122.61477031091613,55.39363773869129],[-122.61434571907587,55.39348384961784],[-122.61429060264189,55.393456569971235],[-122.6142755546282,55.393447193124324],[-122.61424103472419,55.39343392518789],[-122.61421996550455,55.393425506286576],[-122.61399912262806,55.39332086160503],[-122.61363831141598,55.39318551553305],[-122.61324984513078,55.39304941866634],[-122.61322294429816,55.393039720367454],[-122.612791135788,55.39285423837453],[-122.61237324325913,55.392691554768156],[-122.6123367491187,55.3926782327392],[-122.61198613363635,55.392492707129485],[-122.6117473445719,55.392366269984336],[-122.61170934856123,55.392347301365284],[-122.61166730696281,55.39232934414221],[-122.61163673988102,55.392316182646994],[-122.61161021844185,55.392302009738835],[-122.61158557788966,55.39228900897131],[-122.61154391492599,55.39226657744386],[-122.61140745189539,55.3921944870167],[-122.61137181023565,55.39217109761636],[-122.6111089765921,55.391977860128456],[-122.61085620000374,55.39180619638289],[-122.61058808286354,55.39165205399579],[-122.61027417858647,55.39145406555766],[-122.61025198776007,55.39143552530665],[-122.61000901343779,55.3912417029736],[-122.60960198122945,55.39088086342465],[-122.60958571730235,55.390862483892086],[-122.60920093496847,55.39042600959771],[-122.60897181282458,55.39020901714471],[-122.60885259831844,55.39009703101366],[-122.60882524035041,55.39006938113441],[-122.60879938429804,55.3900473776905],[-122.60878866841728,55.39003363318283],[-122.60877240520685,55.390015253546416],[-122.60874890340673,55.38998882946386],[-122.60870923318821,55.38994290716919],[-122.60870039803946,55.3899303348434],[-122.60854606121255,55.38971873508159],[-122.60837075479934,55.38949759668902],[-122.60806041218056,55.38904744341359],[-122.6080484792444,55.389024696706976],[-122.60786257446499,55.38860146544644],[-122.60774250430731,55.38835940320468],[-122.60707135095083,55.3871438032457],[-122.60667029806389,55.386199003436545],[-122.60628576405948,55.38533985704143],[-122.60580505015041,55.3844478248739],[-122.60512730291816,55.383007805308786],[-122.60429045509274,55.38146031088537],[-122.60343719664775,55.379803612819806],[-122.60262045937851,55.378067178994115],[-122.60207371318126,55.377045522606714],[-122.60162751389319,55.37602884173037],[-122.60104177377342,55.37479085995952],[-122.60051715379505,55.37371934590025],[-122.60050870436305,55.37370229880125],[-122.60043387150742,55.37344127860481],[-122.60042984574962,55.373418746240496],[-122.60040036996676,55.37311299417214],[-122.60040029333267,55.373090569321924],[-122.60043622540891,55.372830322385816],[-122.60043736413026,55.372816899730005],[-122.60051791000755,55.37249732595269],[-122.60056804180184,55.37223298106438],[-122.60057859664445,55.37220187655119],[-122.60072841855187,55.37190549033451],[-122.6007469659727,55.371873482260916],[-122.60078187845286,55.37183519286569],[-122.60072849082326,55.37181131672866],[-122.60061833612811,55.371756745551195],[-122.60054053232089,55.37169408592288],[-122.60035281956777,55.371503987525536],[-122.60032355723675,55.37128905344438],[-122.60030851748381,55.37116307649823],[-122.60029302496005,55.37113574736654],[-122.60029522254598,55.37096987877686],[-122.60024257402961,55.370843998959785],[-122.5999998701613,55.37076563754496],[-122.5999170579317,55.37073871750139],[-122.59947734989292,55.37057987403457],[-122.59931932054776,55.370436548922434],[-122.59279021725779,55.3704188767168],[-122.59099318676465,55.36660502222968],[-122.59222101038449,55.36466196604719],[-122.59224101578636,55.36247179839962],[-122.59539159385274,55.36248713055361],[-122.59604632044618,55.362489288923065],[-122.59602631621087,55.36246856293807],[-122.59599625197978,55.36244980491697],[-122.59594756678267,55.36244062939235],[-122.59585414446477,55.36242238594398],[-122.5958074333377,55.36241326419357],[-122.59571249113907,55.36241291743556],[-122.59552336679333,55.362403275306605],[-122.59541329765729,55.362394667800686],[-122.59520868779995,55.362357695484754],[-122.59508161299946,55.3623396547395],[-122.5950191101515,55.3623301019648],[-122.5949086827127,55.36230242483664],[-122.5946672547041,55.362233055379164],[-122.59460974544689,55.3622113060574],[-122.59455299651093,55.36218060831896],[-122.5945002906746,55.36214889970671],[-122.59440672316933,55.36208580552693],[-122.59429569706776,55.36199532757825],[-122.5942021302425,55.36193223324631],[-122.59412459676543,55.36191330079604],[-122.59402950966219,55.36186810311],[-122.59398234638076,55.36184103004675],[-122.59392121937638,55.361768730301925],[-122.59381071475335,55.3616255724399],[-122.59377943864865,55.361597811640976],[-122.59371724460753,55.36156135919941],[-122.59368511312256,55.36154366530951],[-122.59359124088664,55.36150746953919],[-122.5934344147374,55.36144376949977],[-122.59337181861412,55.36143533444984],[-122.59323016935991,55.36142586312789],[-122.5930885201726,55.361416391645484],[-122.59299358035692,55.36141604282117],[-122.59296123653606,55.361424129211905],[-122.59293077157847,55.3614333880167],[-122.59286710704714,55.36146080010722],[-122.59280308482546,55.36146914298331],[-122.59273982322699,55.36146853744811],[-122.5926779878744,55.36145115367203],[-122.59264519134973,55.361441289345656],[-122.5925983375942,55.36138731674826],[-122.59252101898153,55.361342602838405],[-122.59239404369598,55.361323440814374],[-122.59222071684714,55.36131422475436],[-122.59204860322185,55.361314010717095],[-122.59200037262781,55.36132278429264],[-122.59187344623845,55.36134958993478],[-122.59177850659144,55.36134924018714],[-122.59171645826821,55.36135763639952],[-122.59152733985854,55.36134798822257],[-122.59147865702094,55.3613388109576],[-122.5913702086979,55.36131118460295],[-122.59133807844859,55.36129349011005],[-122.59132304786603,55.36128411053755],[-122.59126040455365,55.36122970623466],[-122.59121355290844,55.361175733119225],[-122.5911964533389,55.36116741817549],[-122.59108679275049,55.36113078930428],[-122.5910403933438,55.3610947667647],[-122.59100947631713,55.3610860744603],[-122.59089950689564,55.361076344432895],[-122.59081914649667,55.36106742293859],[-122.59077243809239,55.36105829930713],[-122.59069369509137,55.36103036245437],[-122.59066308757393,55.36099477105727],[-122.5903352313975,55.36061583878403],[-122.59030648223558,55.360418853274226],[-122.59018151094227,55.3602831446253],[-122.5900395832384,55.36018397039708],[-122.59002455337517,55.36017459066961],[-122.58972688308022,55.359975864220054],[-122.58966424397543,55.35992145912492],[-122.58963349703704,55.359841017836445],[-122.5896488367394,55.359823498609884],[-122.58971433346821,55.35975129244731],[-122.58976166006843,55.35970661847157],[-122.58980929650971,55.359635045477596],[-122.58980977502509,55.35953639783469],[-122.58977912324899,55.35945483804081],[-122.58970167024833,55.359365272755],[-122.58962617315412,55.35911319488514],[-122.589547913922,55.35898660968042],[-122.5895327894576,55.35897834843957],[-122.58950151837713,55.35895058657817],[-122.58940765598376,55.35891438767521],[-122.58935897658432,55.35890520958677],[-122.5892655654961,55.35888696121913],[-122.58918673263237,55.35886014196778],[-122.5891245470088,55.358823687251395],[-122.5891090668694,55.35879635677275],[-122.58909335100203,55.3587252951977],[-122.58909366142112,55.358698396201795],[-122.58906270130217,55.35864373523564],[-122.58906377315672,55.35860788788691],[-122.58903150558702,55.35854534316856],[-122.58901664655666,55.3584642146891],[-122.58898523578357,55.358391603063104],[-122.58894067482697,55.35831078405578],[-122.58890885859192,55.35826618994986],[-122.58886232414164,55.358185316977234],[-122.58884715500719,55.358131087474455],[-122.58884822704064,55.35809524012973],[-122.58886428273537,55.35802280447251],[-122.58891160824312,55.35797813082766],[-122.58905341421936,55.35791585841427],[-122.58915017885829,55.357871414533335],[-122.58921329402673,55.35782717225223],[-122.58922796694941,55.35781748289042],[-122.58924527982357,55.357800017650945],[-122.58929367626962,55.35771949651584],[-122.58938827977505,55.35758418070948],[-122.58959534051542,55.35740597058969],[-122.58969115475695,55.3572796568415],[-122.58972304463848,55.35725362066407],[-122.58980249456924,55.35722664158572],[-122.58988163451417,55.357226561450105],[-122.59016490185468,55.357245511517554],[-122.59021236681524,55.35724568701347],[-122.59026028327342,55.357263813126536],[-122.59030698714346,55.35727293694555],[-122.59043287801717,55.35732794843693],[-122.59054217112184,55.35734550868668],[-122.59062242887347,55.35735554890046],[-122.59085899335014,55.3573653736931],[-122.59104809282505,55.35737502287742],[-122.59111023024546,55.357365508455324],[-122.59122049852884,55.35734833929597],[-122.59126948541468,55.3573306176603],[-122.59131604653965,55.357294891473245],[-122.5914115462453,55.357195475403906],[-122.59142809703951,55.357186958229086],[-122.59157065714113,55.35711573459791],[-122.59163376845143,55.357071491097614],[-122.59166651281262,55.35703538751154],[-122.59172926683796,55.35697207478786],[-122.59177810947206,55.3569095033271],[-122.59182573899476,55.356837929587115],[-122.59184392745085,55.35669379882818],[-122.59184333161203,55.35663099857505],[-122.59181317861575,55.35661335810588],[-122.59170186485436,55.356549776905],[-122.59163968052651,55.356513323450315],[-122.5916241044647,55.356487111836266],[-122.59153055468731,55.35642401554325],[-122.59150004504542,55.35638730582434],[-122.59145167705353,55.35635122955947],[-122.59140590054723,55.35626140918666],[-122.59137377432633,55.356243714713024],[-122.59132692835122,55.356189741671045],[-122.59131220859528,55.35615346310908],[-122.5912807954767,55.356080852079415],[-122.59126583770136,55.356000842435826],[-122.59128433671756,55.35582981277957],[-122.59129998308266,55.355785394365924],[-122.59136349657894,55.355713133471106],[-122.59144325117617,55.355659254361704],[-122.59158566247493,55.355543181106015],[-122.59179263300882,55.35543559745033],[-122.59190351271519,55.35536462970714],[-122.59203148926493,55.355301976692125],[-122.5921423681795,55.35523100873789],[-122.59217434992406,55.35520385339469],[-122.59222242906631,55.3551502301414],[-122.59225642449181,55.35488993221531],[-122.59225668374455,55.35481706506216],[-122.5921947148271,55.354754831445376],[-122.59214634817863,55.35471875545612],[-122.5921162915688,55.35469999651796],[-122.59202167607965,55.35467274796436],[-122.5919593992837,55.354637413222456],[-122.5919273692067,55.35461860034873],[-122.59184916002988,55.354537984810065],[-122.59181819936734,55.354483324552724],[-122.59180338470256,55.354448164601436],[-122.59178700012959,55.35438493322035],[-122.59180380975661,55.3543035488506],[-122.5918379295096,55.35420469888783],[-122.59185236174423,55.354151278155285],[-122.59187130958868,55.353998199070844],[-122.59185483000438,55.35393608624757],[-122.59179295816057,55.353872733892004],[-122.59160567892832,55.353655723761364],[-122.59152716352702,55.353602007016384],[-122.59148077243161,55.35356598467131],[-122.59141707134083,55.35354742784351],[-122.59137113235955,55.3535293560814],[-122.5912930694364,55.353493589813645],[-122.59121419799443,55.35342080370393],[-122.59115102014826,55.35334956731611],[-122.59116904333509,55.35327718530485],[-122.5912002633438,55.353258978577564],[-122.59126382089686,55.35323268590725],[-122.59129580164314,55.35320553079511],[-122.59134357069739,55.35317880687661],[-122.59142134674237,55.35312487389647],[-122.59150176178785,55.353063164948814],[-122.59159725096104,55.352963748785086],[-122.59162837543958,55.35294666049676],[-122.59166142509198,55.3528836579445],[-122.59167752197243,55.35285719011959],[-122.59169556569636,55.352668209842335],[-122.59169587432402,55.352641310858466],[-122.59161714719863,55.35261337461446],[-122.59156999642352,55.352586300669124],[-122.59150758001438,55.35250611610613],[-122.5914928614465,55.35246983758068],[-122.59149317020857,55.352442938597946],[-122.5915092188665,55.35237050264723],[-122.5915248636337,55.35232608422269],[-122.59163673442454,55.3522898994371],[-122.59173150913547,55.35224539968953],[-122.59179385192282,55.352210104495654],[-122.59189045608984,55.35212080891885],[-122.59192122268902,55.35208465139479],[-122.59195457962085,55.35199474978861],[-122.59200281982696,55.35186937805639],[-122.59202592628674,55.351690626330814],[-122.59203636166906,55.351591129668975],[-122.59208669024154,55.35134809507688],[-122.5920882114478,55.35133019834857],[-122.5921978664129,55.35125022812444],[-122.5922786798024,55.35116050116335],[-122.59235858809758,55.35103487292068],[-122.59239027789019,55.35091801834437],[-122.59240922215568,55.35076493923397],[-122.5923777162047,55.350693447069986],[-122.59231584853538,55.35063009499653],[-122.59203186627951,55.35062009818401],[-122.59185706446709,55.35062877835685],[-122.59158963038205,55.35061026331135],[-122.59152638592205,55.35060965716254],[-122.59149471614765,55.35060991334848],[-122.59146466292029,55.35059115426228],[-122.59143254121336,55.35057345981507],[-122.59141630194704,55.35055507800718],[-122.59140103715292,55.35050196740634],[-122.59140251060079,55.350438102549155],[-122.59143577223479,55.350349319642945],[-122.5915135426714,55.35029538662262],[-122.59154552090762,55.350268231455416],[-122.59161130729173,55.350169125400384],[-122.59169168947642,55.34994485005578],[-122.59170702449696,55.349927330595996],[-122.59180286272326,55.349846983470165],[-122.5918195054827,55.34983734770553],[-122.5918830572103,55.349811054730125],[-122.59194584824937,55.34979371008426],[-122.59203985613807,55.349758158476874],[-122.59205695102037,55.34976647329437],[-122.59208821671149,55.34979423448728],[-122.59210379047845,55.34982044602357],[-122.59210272157448,55.349856293362784],[-122.59211834422646,55.34992847303317],[-122.59214915782607,55.34993828359766],[-122.59218006651028,55.349946975608965],[-122.592290005741,55.34995670449684],[-122.59243237478593,55.349957228507584],[-122.59252773991419,55.349975528370166],[-122.59257488826769,55.35000260194615],[-122.59260579709364,55.35001129385219],[-122.5927474059056,55.35002076586978],[-122.59279410191071,55.350029888751386],[-122.59288901478439,55.3500302377268],[-122.59298347502548,55.35001263601932],[-122.59309412501509,55.34996744769527],[-122.5931899605597,55.349887099504784],[-122.59320560249807,55.349842680882006],[-122.59327047856543,55.349707672738994],[-122.59330321544483,55.3496715687539],[-122.59339783677166,55.34958221816754],[-122.5935245794273,55.34951056142552],[-122.59369837508528,55.34946709625223],[-122.59376247299562,55.349457634382155],[-122.59390408012669,55.34946710508764],[-122.59396656267316,55.34947665840619],[-122.59401523168812,55.34948583468932],[-122.59410831606486,55.349530978466404],[-122.59417201202405,55.34954953391334],[-122.59425113681876,55.349549451009544],[-122.59440883813429,55.34953245299404],[-122.59456694099694,55.349487437250794],[-122.59470794820777,55.349434106855604],[-122.5948359014642,55.3493714510092],[-122.59496188096259,55.34930874118923],[-122.59507333891698,55.34930057086707],[-122.59516749020773,55.34930986649124],[-122.59527697476486,55.34930164214769],[-122.59538852761386,55.349292352996535],[-122.59551465371653,55.34927449220271],[-122.59556210927158,55.349274665665746],[-122.59567204748018,55.349284391575715],[-122.59579938705303,55.349275532709996],[-122.59589308452576,55.34926687718812],[-122.59594129977788,55.34925810212176],[-122.59598754165202,55.34924927321005],[-122.5960198750495,55.34924118604708],[-122.59614706598535,55.34918747724466],[-122.59622634711435,55.349115644523415],[-122.59624153130993,55.34905327492723],[-122.59624406218276,55.348953562652405],[-122.59626000591571,55.34888224466815],[-122.59627649863825,55.34882775873044],[-122.59643511252271,55.34873006120736],[-122.59649784603548,55.34866674614739],[-122.59651545716325,55.34862238093487],[-122.59653140028227,55.34855106291859],[-122.59651759471377,55.348434088051775],[-122.59650196473044,55.34836190894377],[-122.59650318621857,55.348254313013335],[-122.59653638848629,55.34800296251196],[-122.59656988057615,55.347957909289555],[-122.59669646340485,55.34784139976684],[-122.59674498197444,55.34780572541002],[-122.59682304549848,55.34772489011733],[-122.59699875498755,55.347518907923735],[-122.59703179173795,55.34745590398879],[-122.59703179793802,55.3473393058635],[-122.59701783569827,55.34729407961982],[-122.59692369522257,55.347168187269666],[-122.59689410958626,55.34693418384632],[-122.59686335810615,55.3468537444555],[-122.5967867749297,55.34663751863655],[-122.59674175703725,55.34653875192922],[-122.5966944609175,55.3464668303689],[-122.59664801939633,55.34638484185578],[-122.59663350875898,55.34632278353222],[-122.59663376000847,55.346249916439895],[-122.59665091569371,55.34618760063013],[-122.59669882902344,55.34608912614197],[-122.59671501478991,55.34606153913945],[-122.59682571072067,55.345945717536246],[-122.59690543857216,55.34589183499831],[-122.59697004516977,55.345829692081686],[-122.59698501686253,55.345793102845526],[-122.59701866222672,55.34567630097401],[-122.59706611963331,55.34555987576317],[-122.59711387574376,55.34553314966066],[-122.59722441381271,55.34548907624859],[-122.59735159124435,55.345435366241745],[-122.5974466481468,55.34536396321564],[-122.59751165263917,55.34527380249771],[-122.59755925812586,55.34520222666496],[-122.5975583488735,55.34516632549589],[-122.59759260127674,55.34499572552703],[-122.5975620947781,55.344959017335704],[-122.59749937358161,55.34490573481035],[-122.59746795807273,55.34483312542817],[-122.59742066266166,55.34476120415641],[-122.59737382195794,55.344707233451444],[-122.5972963804706,55.34461767302318],[-122.59725115366365,55.34454468694616],[-122.59723512410824,55.34450052548271],[-122.59722070816031,55.34443734869148],[-122.59717417299554,55.34435647894103],[-122.59715747917801,55.34432014730813],[-122.59711231348945,55.34417653120346],[-122.59711231945508,55.34405993312042],[-122.59711423799149,55.34401401882556],[-122.59717717303145,55.343924923034585],[-122.59732149919668,55.34380889719965],[-122.5974635467489,55.343719716367374],[-122.59759056823773,55.34362115657459],[-122.5976225370437,55.34359399987168],[-122.59765511493333,55.34351304521806],[-122.59767120410231,55.34348657664829],[-122.59773499117122,55.343387413642326],[-122.59778350343298,55.3433517388995],[-122.59786125177851,55.34329780196843],[-122.59827250633002,55.343182326064934],[-122.59855825947602,55.343147512916296],[-122.59862058212639,55.343112214350626],[-122.59862012704899,55.3430942637741],[-122.5987942880668,55.343022774018756],[-122.59892191079271,55.34298701300299],[-122.59898423287399,55.34295171425648],[-122.59909637440003,55.34288862385469],[-122.59915975859005,55.3428174776498],[-122.59938197209692,55.34269236120949],[-122.59947595676371,55.34265680403301],[-122.59952370781487,55.34263007701746],[-122.5997152617859,55.342540000794735],[-122.59974591914948,55.342504959931986],[-122.59977788560788,55.342477802680655],[-122.59981091384569,55.34241479804551],[-122.59984166586817,55.342378638609496],[-122.59989017503788,55.3423429630522],[-122.59990550357475,55.342325442600675],[-122.59996943594632,55.34227112800909],[-122.59999999804931,55.34223720563551],[-122.60006523934787,55.34219077461149],[-122.60012967944657,55.3419671824868],[-122.59999961144712,55.34189188566618],[-122.59997322227248,55.34187659182303],[-122.59991150880775,55.3418580931152],[-122.59986315076524,55.34182202016587],[-122.5997861072495,55.34170444378837],[-122.59975474769723,55.341677803097625],[-122.5997083630007,55.34164178385616],[-122.59965970219636,55.34163260979953],[-122.59953511947197,55.34163257796447],[-122.5994542842474,55.341676341434855],[-122.5994071982247,55.341695238571816],[-122.59926425145585,55.34174852045199],[-122.59918720989849,55.34174754175813],[-122.59913976322808,55.341747369672746],[-122.59898184808313,55.3417206426551],[-122.59890237840773,55.341701659433554],[-122.59885644961528,55.341683590448326],[-122.59874552635445,55.341639084752394],[-122.59868259978387,55.341611583259485],[-122.59855750587661,55.34154763178495],[-122.59840126305815,55.34143125873764],[-122.59830692276383,55.341331147928635],[-122.59826084390754,55.341268229184635],[-122.59826190708249,55.341232381826835],[-122.59827738926049,55.34114311307156],[-122.59827769338831,55.34111621410582],[-122.59826479769366,55.34091854263212],[-122.59826540596235,55.34086474470211],[-122.59829691720905,55.34081963726128],[-122.59831309975196,55.340792050067684],[-122.59834497093964,55.34076601173705],[-122.59836069849341,55.340720473964545],[-122.59807033595574,55.340669954183696],[-122.59761340442763,55.340834634257504],[-122.59694692980088,55.34113822437536],[-122.59644337600308,55.34131620362671],[-122.5961624879155,55.34138702074093],[-122.59600631760682,55.34140966751829],[-122.59572854047524,55.34146711491587],[-122.59548287878451,55.341542255091966],[-122.59532556794441,55.34157832358104],[-122.59500762142912,55.34168960909441],[-122.59452516342165,55.3418984274821],[-122.59442318917638,55.341934884070376],[-122.5942082789663,55.34197386363517],[-122.59414692607722,55.34197443121458],[-122.59364164907053,55.34196288021777],[-122.59338057095897,55.34194005643353],[-122.5932619287016,55.341916636623004],[-122.59312020334937,55.341862315647845],[-122.59291258246309,55.341745653592945],[-122.59268389856281,55.34155105730306],[-122.59249945457196,55.34137112242191],[-122.59223397413342,55.34105107370076],[-122.59215643031969,55.34089311725796],[-122.59189371027128,55.34044757532654],[-122.5917207987074,55.34001569746109],[-122.59165882696864,55.33979089756678],[-122.59162573386197,55.33943571309607],[-122.5917119362612,55.33891001080303],[-122.59171680747045,55.33882942176221],[-122.59170263905258,55.33871692066274],[-122.59164119299894,55.338532496151366],[-122.5915376060886,55.338401856210695],[-122.59149912381538,55.33836604952029],[-122.5913985572676,55.33831621408403],[-122.59134079885393,55.33829781894575],[-122.59111687270044,55.338256945396054],[-122.59107178329187,55.33825234997605],[-122.59069383575067,55.33825547620124],[-122.59046375374503,55.33826376345554],[-122.58971914606286,55.338346557276424],[-122.58955183748536,55.338337499314086],[-122.58943753420547,55.33830970956762],[-122.58934531246379,55.338278038798556],[-122.58905933442955,55.33810653376645],[-122.58863717716088,55.337722771951874],[-122.58842505496152,55.33754319446671],[-122.5882792220332,55.33739794252305],[-122.58810260605992,55.337312390250624],[-122.58798588368919,55.337266594623664],[-122.58778647057538,55.337239838980814],[-122.58739427303661,55.33722462691922],[-122.58694913994013,55.33725056891657],[-122.58647358456273,55.337262223225316],[-122.58596592026966,55.33725617989558],[-122.58552856737185,55.33721393992621],[-122.58536759069169,55.337177020872076],[-122.58531180942958,55.33715867694155],[-122.58511775905713,55.33704573556828],[-122.58502859124951,55.33697826838471],[-122.58498534080702,55.33692887523244],[-122.5847428603474,55.33661840704945],[-122.58466282320316,55.33653661462914],[-122.58454248981361,55.336370754178134],[-122.58448083458357,55.33623564987376],[-122.58423336543605,55.33609994267053],[-122.58395163962915,55.33601823306644],[-122.58382557800232,55.336012538853765],[-122.58359786122898,55.33601639332309],[-122.58313307909172,55.33606420625248],[-122.58302245621533,55.3361093856824],[-122.58286551783887,55.336234018982],[-122.58281029187154,55.336302017393116],[-122.58262686773102,55.33657503752063],[-122.58249684850915,55.33673179994834],[-122.58239333157557,55.33687919795715],[-122.58218707836247,55.337071990748825],[-122.58201490280722,55.33728253410318],[-122.58185270574143,55.33739917425008],[-122.58156404599823,55.33767715790858],[-122.58144142621589,55.337770216767396],[-122.58108501214633,55.33798467975492],[-122.58085404801592,55.33809607081471],[-122.58068184921902,55.33816758957659],[-122.58058232149827,55.338198496238675],[-122.58049774759196,55.33821635890111],[-122.58010755114998,55.338247146100834],[-122.57997076065918,55.33825124441944],[-122.57974420583679,55.338218126137114],[-122.5796516103918,55.33819092234667],[-122.57920998473661,55.33803642820572],[-122.57892755107157,55.33784705752056],[-122.57875992463136,55.33772586123494],[-122.57864187347543,55.33762620495797],[-122.57856827544394,55.337584946334154],[-122.57827792929112,55.33755792385276],[-122.57771855748601,55.337578457649464],[-122.57753633179244,55.337558883868404],[-122.57741691639482,55.337567940581934],[-122.57722371340938,55.33760748621397],[-122.57713563914056,55.33764318899473],[-122.57698962240309,55.33773223838757],[-122.57690912029675,55.337795056418905],[-122.57688045075076,55.337876113863494],[-122.57689012303851,55.337948132956626],[-122.57692553695668,55.33801973718148],[-122.57698659717708,55.33809204504829],[-122.57700848828308,55.33815991476488],[-122.57702223346082,55.33827689165226],[-122.57693689295643,55.33844272294182],[-122.57687818564412,55.33850501782765],[-122.57673814696965,55.338616654095816],[-122.57670457708565,55.33863927717614],[-122.57644110948429,55.338737435989366],[-122.57629254316501,55.33876363024135],[-122.57612211718182,55.33876792252824],[-122.5759275725053,55.33875361421206],[-122.57579071704288,55.338735283174984],[-122.57526267546154,55.33864342988612],[-122.5751570365669,55.33860689543309],[-122.5744833740242,55.3383215662517],[-122.5740518892326,55.33811800102275],[-122.57364633523832,55.337981294442045],[-122.57343057921479,55.33789128222345],[-122.57305488075752,55.337706062798034],[-122.57274492109005,55.337538344261205],[-122.57241381113352,55.33731734951862],[-122.5721287726791,55.33713573897187],[-122.57161893655325,55.336761838491775],[-122.57135363264901,55.33658076830115],[-122.57101823197847,55.33622511281199],[-122.57095833288821,55.336139379710744],[-122.57092876463243,55.335999543631395],[-122.5709299941948,55.335869523331226],[-122.57090757383874,55.33559982962181],[-122.57087567550371,55.33551038149419],[-122.57069242037791,55.33524859935978],[-122.57037282963668,55.335008855427546],[-122.57030703974127,55.33496892739781],[-122.57005688851171,55.3348420860989],[-122.56984519828447,55.334751057660945],[-122.56972051810938,55.334706146540086],[-122.56951015525222,55.33466896952731],[-122.56912381190531,55.334654981339575],[-122.56888070333171,55.334653900852345],[-122.56868311916008,55.334675374078955],[-122.56838355518408,55.33473328228525],[-122.56826709725252,55.33477716732008],[-122.56811915718238,55.334888576817306],[-122.56808240597303,55.33490214083461],[-122.56784718638512,55.33490127540461],[-122.56763678678048,55.334887638530574],[-122.5674121380087,55.33485567068347],[-122.56731768179615,55.334827284953604],[-122.56707784478594,55.334718659757876],[-122.56690396644706,55.33460175884439],[-122.56667102545157,55.33441259912601],[-122.56653685040175,55.334316971217184],[-122.56622357338212,55.33391145798552],[-122.56615334640931,55.33383104373365],[-122.56602306228977,55.33371309910539],[-122.56589327743296,55.33352005037296],[-122.56573718185065,55.33321864580476],[-122.56573105681221,55.33294379306232],[-122.56573981008621,55.33281846416674],[-122.56585864137423,55.33258517095859],[-122.56601866356458,55.3323787982879],[-122.56633560088382,55.33202538838484],[-122.5665974019605,55.33190029781648],[-122.56665184539536,55.33186479808833],[-122.56685305276793,55.33168534478422],[-122.56687660656269,55.33164114669733],[-122.56688238832372,55.331550491978184],[-122.56684632604383,55.33137123523379],[-122.56680741197077,55.331271502244654],[-122.56674343091817,55.331164352352204],[-122.56667119454768,55.330876468647425],[-122.56666602216015,55.33070591016156],[-122.56668084267822,55.33060205033693],[-122.56677227790934,55.330342215924354],[-122.56680381627918,55.33029711648638],[-122.56693628907855,55.330158375462936],[-122.56707747416529,55.33003332800401],[-122.56726524676662,55.329849019990704],[-122.56739015179757,55.32968316251561],[-122.56752585776793,55.32957590238299],[-122.5678159592518,55.32942019620511],[-122.56805562302377,55.32932252300193],[-122.56836960161424,55.32921119774455],[-122.5687259761665,55.32913579389857],[-122.56917818306752,55.32898005945661],[-122.56945967861554,55.328855505426105],[-122.56956393789144,55.32879222466339],[-122.56965226331477,55.32870720364366],[-122.56969156761038,55.32861747094342],[-122.5696647399875,55.328168270697525],[-122.56961289011149,55.327988580875356],[-122.56956045348716,55.327885113499526],[-122.56942148797748,55.32779944699767],[-122.56910773452441,55.32765403586804],[-122.56899052458768,55.327591390403796],[-122.56853469187583,55.327373678747605],[-122.56837053257468,55.327305256347856],[-122.5680549527891,55.327250605851674],[-122.56754144297517,55.32722190005695],[-122.56689500853719,55.327152535199886],[-122.56664947492408,55.3271110206694],[-122.56644939877091,55.32706963588674],[-122.56631488512602,55.32702444993429],[-122.5661581795394,55.3269382911474],[-122.5660346193196,55.326857529356566],[-122.5659320264124,55.32676276966697],[-122.56558733494003,55.326424779112145],[-122.56531708998358,55.32627943469725],[-122.56513339241661,55.32616225986553],[-122.56484787384436,55.325941376018434],[-122.56472479821504,55.325855020331254],[-122.5644604766884,55.32570983703184],[-122.5639971449199,55.325510960736004],[-122.56369778532381,55.32542871653419],[-122.56355900872443,55.325410317779614],[-122.56327811073191,55.325297188705996],[-122.56285098925765,55.32518339273855],[-122.56261730463078,55.32514219638536],[-122.5624101759904,55.32511406431304],[-122.56193880962535,55.325009136039725],[-122.56169844372054,55.32497672302741],[-122.56154691928434,55.32494563774747],[-122.561422374708,55.324899599867045],[-122.56138590434797,55.324863838322464],[-122.56127100200571,55.324728373156674],[-122.5611833263213,55.32459814323511],[-122.56110276060878,55.3242696635764],[-122.56083381314022,55.323671394825915],[-122.5602499302709,55.32289626493453],[-122.56013094174124,55.32237052114786],[-122.56013394419112,55.322266335831884],[-122.56001709359785,55.32217678316191],[-122.55988012826786,55.32204519247758],[-122.5597614751794,55.321861412126935],[-122.55974378321753,55.321514484723885],[-122.55978732903961,55.321214093184395],[-122.55977960953453,55.32111970255116],[-122.55971439319895,55.32093515389018],[-122.55961533677322,55.32082254719284],[-122.55948348357647,55.32072361068973],[-122.55932764663953,55.320489472733314],[-122.5592501560805,55.320448093986194],[-122.55901552162965,55.3203261400794],[-122.55870783313888,55.32020329089534],[-122.5585749393438,55.32016262511491],[-122.55819897255401,55.32009843316669],[-122.5576202882564,55.320024159617695],[-122.5570534896128,55.31997263477761],[-122.5567016254545,55.31992704229881],[-122.55648106481509,55.319917588468066],[-122.55581717526181,55.31991495045919],[-122.55571088679513,55.31990977247989],[-122.55540288570407,55.31985978194628],[-122.55532002300994,55.31988103752756],[-122.5552460013331,55.319845357803054],[-122.55482825589085,55.31983045387095],[-122.55455950729196,55.319829755809764],[-122.55396001293711,55.319790767376006],[-122.55365961891417,55.31979031403657],[-122.55345728678803,55.31977575275673],[-122.55321585623962,55.31977917031488],[-122.55298894726803,55.31975159611142],[-122.55292844255959,55.31971965208883],[-122.55256996872072,55.31931397006462],[-122.55233314091974,55.31907982539223],[-122.55211444353992,55.31879572891885],[-122.55208606045869,55.31866600975354],[-122.55204616704191,55.318279224726844],[-122.55200359481417,55.31810762995842],[-122.55191115229077,55.31794138317985],[-122.55158401573159,55.31760831901535],[-122.551496867636,55.31747248983326],[-122.55134792149589,55.31729683170805],[-122.55130304825673,55.31719804894779],[-122.55128308554032,55.317085379936415],[-122.55129476851754,55.3170184329229],[-122.551461536827,55.31682571950083],[-122.55166596047466,55.31667777283518],[-122.55188456889432,55.31652573345871],[-122.55207634394083,55.31640995031483],[-122.55224084915733,55.316266504854646],[-122.55242410218507,55.316042853480766],[-122.55243606785629,55.31592658285609],[-122.55238195150734,55.315705337658876],[-122.55235817911466,55.31547596209788],[-122.55237378983242,55.31522525212371],[-122.55244349537755,55.314919979485516],[-122.55243141701723,55.31480752874162],[-122.55236191712588,55.314627341371036],[-122.55190510785962,55.314216694795974],[-122.55170717116398,55.314036318541284],[-122.55157305296427,55.31396421799337],[-122.5514152765323,55.31389146293519],[-122.55126615588232,55.313809977732255],[-122.55069550440349,55.31357444311083],[-122.55052628643101,55.31349688564087],[-122.55026685926687,55.313411226181046],[-122.55008821820712,55.31335134606633],[-122.54979638302524,55.313274879377744],[-122.54931768719278,55.31316521130887],[-122.54875171785511,55.313082276006675],[-122.54867430012305,55.31306331545297],[-122.54854341162682,55.31302269359427],[-122.54839665634312,55.31293678551481],[-122.54828274382758,55.31285963468351],[-122.54804410215925,55.31267027689984],[-122.5477885833968,55.3125163287719],[-122.54769520492077,55.31245319995795],[-122.54767178869854,55.31242676463316],[-122.54761514812306,55.312350077782796],[-122.54756557686207,55.31226013260068],[-122.54753855799964,55.31216072135269],[-122.54753846399333,55.312115871898484],[-122.54763585038668,55.31178782309284],[-122.54755123224002,55.311576942099954],[-122.54758673978871,55.31111824517324],[-122.5475835840313,55.31074144429375],[-122.54760075575601,55.31061074279079],[-122.54741122044878,55.31047095357056],[-122.5472546200018,55.310384771199296],[-122.54672837010473,55.310185202518674],[-122.54649979414502,55.31008581374607],[-122.54641709652881,55.31003643370946],[-122.54626954405427,55.3098910785254],[-122.54616853497423,55.309755981947774],[-122.54612570045367,55.30967967673612],[-122.54609614187393,55.309540953669966],[-122.54580666073691,55.30934569765395],[-122.5456732929798,55.30924221803643],[-122.54535761131726,55.30905296193279],[-122.54514314311571,55.30885866166347],[-122.54489506870212,55.308664550764796],[-122.54473877499542,55.30852904179371],[-122.54455057357765,55.30825922859134],[-122.54442159144484,55.308127839685774],[-122.54381778098059,55.30761330018558],[-122.54361995795207,55.30745533593966],[-122.54350044544196,55.307374661313105],[-122.54277164190955,55.3069351325944],[-122.54269761094167,55.306877020756545],[-122.5424878804181,55.30667387728192],[-122.54226550176338,55.306502896643],[-122.54213623526604,55.30642082883834],[-122.54200365758278,55.30630839731248],[-122.54194189386317,55.30622259588022],[-122.54189744158982,55.30611933584005],[-122.54182770612893,55.30598846619702],[-122.54170713332314,55.3057137969385],[-122.54167738233195,55.305669245745214],[-122.54155081819864,55.30555585929834],[-122.54128469000403,55.30543411575387],[-122.54094814773711,55.30523529895472],[-122.54081421786908,55.305184493119675],[-122.54063947331683,55.30512582742373],[-122.54037622207574,55.30506246278398],[-122.53996254623112,55.30497922588161],[-122.53978193317027,55.30494281956461],[-122.53936589138733,55.30490996789795],[-122.53885106024705,55.304854190707154],[-122.53835037218487,55.304771895842975],[-122.53793635927354,55.30471555093367],[-122.53756536694365,55.30468730785469],[-122.53726865623575,55.3046454306282],[-122.53688446085064,55.30456412333018],[-122.5366445826308,55.30450476343387],[-122.53634976381076,55.30441808935865],[-122.53619719349473,55.3043544274126],[-122.53610068225649,55.30428223245371],[-122.53586915509847,55.30398877655033],[-122.53584473656353,55.303836738724385],[-122.53584219268144,55.30368306644842],[-122.53586622814987,55.303404560747765],[-122.53594914453751,55.30315347851711],[-122.53598276947086,55.30294699480311],[-122.53600109500981,55.30234543085758],[-122.5360225882763,55.30218794190859],[-122.53600684165413,55.30198120734726],[-122.53576834478699,55.30158552992854],[-122.53556375275714,55.301300669897365],[-122.53537985416583,55.300959204508715],[-122.53523900354648,55.30082859599547],[-122.53514893795722,55.30077339690996],[-122.53490382483363,55.30063764723829],[-122.53459467966559,55.300511328572306],[-122.53445190198053,55.30040308908546],[-122.53421069565631,55.300245022948225],[-122.53401812613548,55.300118580665455],[-122.53389996739162,55.29999981326502],[-122.53385633675278,55.29995599507373],[-122.5334108184524,55.29948728408989],[-122.53334792451687,55.299414900393444],[-122.53332995275116,55.29927985882225],[-122.5333349753207,55.2992216971146],[-122.5334408724389,55.29897910390603],[-122.53350032284115,55.29888545704654],[-122.53357057454117,55.29882686717812],[-122.53378088485078,55.29867911451329],[-122.53402790538452,55.298563775464494],[-122.53441383935714,55.29832672650439],[-122.53462422350526,55.2982238218274],[-122.53466601276676,55.29817453065648],[-122.53469626698913,55.29812155521758],[-122.53474011111172,55.29784247933317],[-122.53472711589198,55.297626851527724],[-122.53446782488977,55.29754115935484],[-122.5343398806781,55.29751293570181],[-122.5341284900204,55.297490239650415],[-122.5339949631429,55.297480920447796],[-122.5334057149707,55.29746453209447],[-122.53274014979372,55.297416867115274],[-122.53262629206928,55.29738567000295],[-122.53249079516445,55.29737629436271],[-122.53220511828951,55.297298832647954],[-122.53209487453094,55.29724867549913],[-122.53184256870918,55.29703647846926],[-122.53180730947075,55.296987286467925],[-122.53169046332805,55.29676204081884],[-122.53165692874342,55.29650996283626],[-122.53161236126394,55.296317000435266],[-122.53158106474656,55.29622195017141],[-122.53143599778592,55.29591183015425],[-122.53133923258576,55.29561426610716],[-122.53132254989289,55.2953043555418],[-122.53135143979974,55.295084286777644],[-122.53137300261884,55.2950176160129],[-122.53138114040893,55.29487769476737],[-122.5312679407483,55.29447316090449],[-122.53081513694747,55.29436413509034],[-122.53049972692934,55.294402444085584],[-122.53034760605468,55.29440269365488],[-122.53024571615951,55.294393129761836],[-122.5297382154024,55.294391331801656],[-122.52965286369027,55.294373258479496],[-122.5291137804473,55.29409700968556],[-122.5289122138458,55.29398376194842],[-122.52880032649986,55.29388422366748],[-122.52866184297974,55.293726764048614],[-122.52852789426316,55.29363109569299],[-122.5282270196127,55.29345565755224],[-122.52811679136406,55.29340549690537],[-122.52780901659949,55.293287045835896],[-122.5276150245752,55.293223338968545],[-122.52745569267127,55.29314714339069],[-122.52735458056479,55.29312862922341],[-122.52687586989707,55.2930681986203],[-122.52675941663861,55.29306719536085],[-122.52639336038904,55.293097355099846],[-122.52626027208964,55.29310597836056],[-122.52623100482235,55.293101798971286],[-122.52576854409362,55.29303621110411],[-122.52550578267468,55.29296834120831],[-122.52541448976531,55.2929276754752],[-122.52523907434544,55.292831968305066],[-122.52507651305183,55.29270186251762],[-122.52501797292435,55.29262511061219],[-122.52499418956735,55.292534752468235],[-122.52497520835794,55.29197811459166],[-122.5249596944683,55.29188350229127],[-122.5249240546871,55.29177038975723],[-122.52482225126246,55.29155452527379],[-122.52451360117921,55.29110416969561],[-122.5244578434748,55.29104094929007],[-122.52421898844429,55.29081117091617],[-122.52415134143455,55.29070277123543],[-122.52411585981761,55.29049660427052],[-122.52404853317647,55.29033888121609],[-122.52401012323386,55.290280629225634],[-122.52396709489307,55.290230096698416],[-122.52383736646065,55.290108753118886],[-122.5237216291478,55.29005394975983],[-122.52366791180916,55.29003563335012],[-122.52357142783883,55.29000939665758],[-122.5234549499891,55.28998596562558],[-122.52335307293336,55.28997639610564],[-122.52321879874647,55.289976013258894],[-122.52317299650878,55.28998034122771],[-122.52281375114116,55.29006898156033],[-122.5227746678453,55.29008695113587],[-122.52269501758452,55.29018563538897],[-122.52250522903212,55.29055257357917],[-122.52244134022482,55.290651697572635],[-122.52231788810222,55.29077718895193],[-122.52206978478299,55.29095077592161],[-122.52198334665778,55.29099096855366],[-122.52188466576438,55.291012880392024],[-122.52167690210555,55.291017171874984],[-122.52161649807121,55.29100763745419],[-122.5215651383946,55.29098490120077],[-122.52141025211829,55.290903215498254],[-122.52132129369392,55.29083570315472],[-122.52104204935556,55.29052518617311],[-122.52089743809351,55.29039333309186],[-122.5207839330321,55.29031280187776],[-122.52057969509792,55.290230858258134],[-122.52043111248857,55.290144862464395],[-122.52007083290847,55.28999465270812],[-122.51954701811431,55.28983987418782],[-122.5191574493902,55.289663056145876],[-122.51887463009453,55.28959909582578],[-122.51874620636046,55.289554023922214],[-122.5186738554566,55.28952285159053],[-122.51856711022278,55.28940999248352],[-122.51850064453868,55.289288167969545],[-122.5184713548109,55.28919316953056],[-122.51849039302951,55.2889963717862],[-122.51853293749313,55.28891571352321],[-122.51856175140125,55.28887951927193],[-122.51867619552065,55.288789657910755],[-122.51882580914874,55.28877253525559],[-122.51909196017708,55.28875530446593],[-122.51951673727284,55.288685323297315],[-122.51976383174221,55.288637286662876],[-122.51988702370463,55.288605970509394],[-122.52012497795465,55.28850386078244],[-122.52023870558261,55.288467795224555],[-122.52038237471736,55.288428080947675],[-122.52047236178466,55.28839247340685],[-122.52059942908798,55.28831641721971],[-122.52085698613408,55.28814758221885],[-122.52110246105482,55.28800419676706],[-122.52121285961462,55.28791534154972],[-122.52126692822131,55.287838367859756],[-122.52129124928267,55.28776280601971],[-122.5212943175059,55.28763619732025],[-122.5212795567975,55.28751021204658],[-122.52122571480415,55.28740219585824],[-122.521126461294,55.287294032929125],[-122.52105055979266,55.28725827802983],[-122.5208984985895,55.28721254822575],[-122.52052997388098,55.28713498624859],[-122.52030960174717,55.28712546852323],[-122.52010434452144,55.287146644674074],[-122.51998584145659,55.28714669854798],[-122.51986662832317,55.2871321570055],[-122.51956283495129,55.28699137103159],[-122.51943471268227,55.28687455187189],[-122.51940826208663,55.28683793489709],[-122.5193757727732,55.286779846606784],[-122.51929216237195,55.28658242379129],[-122.51929055209135,55.28648707761687],[-122.5193062510215,55.28644266855868],[-122.51938658395042,55.28626776460359],[-122.51941736535021,55.28623162519997],[-122.51952973292113,55.286142826523225],[-122.51962126663304,55.286089323887175],[-122.51975230003116,55.28603580332525],[-122.51993820642188,55.28598717886755],[-122.52036543932593,55.28593408212054],[-122.5205915865321,55.28592245860246],[-122.52066977892183,55.28590894550087],[-122.52076880353138,55.28586013602152],[-122.52096691678238,55.2857389736647],[-122.52119839196979,55.28552904741953],[-122.52139840764158,55.28536309003176],[-122.52147756710768,55.285269999068916],[-122.52151774351313,55.28512536622872],[-122.52151922872848,55.285062621133],[-122.52150088359873,55.284978019813046],[-122.52143318892696,55.284824769361094],[-122.52115488975981,55.284526611126566],[-122.52073042248412,55.28422885515725],[-122.52042383900725,55.284052114814756],[-122.52031364628785,55.28400194731493],[-122.52011693389282,55.28392469700302],[-122.51993917886438,55.28387936919662],[-122.519672190772,55.28383827561684],[-122.51953557934593,55.28384230770116],[-122.51938046200183,55.28385479216235],[-122.51892931458309,55.2839789729558],[-122.51858270950436,55.28405898346089],[-122.51843314405012,55.284098530493715],[-122.51799071352653,55.2841904370922],[-122.51785884711794,55.28420805428655],[-122.51774626288682,55.2842082712143],[-122.51741649391172,55.28413963066694],[-122.51715670786375,55.28410658133401],[-122.51686879678341,55.284033503439574],[-122.5168055314146,55.28401155326157],[-122.5164140612068,55.28383467166614],[-122.51632996965981,55.28377962433271],[-122.51602283564314,55.28354119154611],[-122.51592327619285,55.28348234778268],[-122.51585730434915,55.28342332203613],[-122.51574580842815,55.28327444887403],[-122.51564762764993,55.28306316117492],[-122.51551676356628,55.282864413588825],[-122.51549729663124,55.28281565782347],[-122.51560254015568,55.282626877313426],[-122.51582638733026,55.28230014342963],[-122.51594317691179,55.28220586580693],[-122.51601187258916,55.28216518158544],[-122.51624230684024,55.28205838505018],[-122.51648181347059,55.28196081133925],[-122.5165540303377,55.28190228623023],[-122.51674436933651,55.281643006827515],[-122.51670594852413,55.28156232796168],[-122.51660788572373,55.28144073973757],[-122.51649648146778,55.28135914128769],[-122.51603196670779,55.28111406493487],[-122.51574451635221,55.28114975238265],[-122.5157135988834,55.28100537501428],[-122.51528239564429,55.28092267909143],[-122.51514218431613,55.28087727290251],[-122.51484713949067,55.28075017277805],[-122.51469982622403,55.280695597833784],[-122.51450000611715,55.28063170530878],[-122.51430798086176,55.28050075892027],[-122.514223025504,55.28045577648136],[-122.5140283685763,55.28042342104733],[-122.51382192092778,55.28041315923331],[-122.51362797221272,55.28039539850357],[-122.51334603160389,55.280344902552216],[-122.51288212963617,55.28025231326875],[-122.51237078646112,55.28018306035238],[-122.51205529150872,55.280155167118096],[-122.51164903290446,55.28008100494625],[-122.51122411939224,55.27997156189922],[-122.51107005655659,55.27994930812018],[-122.51075152563644,55.27993365964533],[-122.51055563708782,55.27993826363411],[-122.51041354345908,55.279960070965565],[-122.51010615856472,55.28004339838942],[-122.50953141086437,55.28015847615916],[-122.5090254357583,55.28030014492868],[-122.50885483627233,55.280286394596345],[-122.5087778894405,55.280262935457515],[-122.50870792175148,55.28022733868139],[-122.50865064833508,55.28018200684492],[-122.50863486429228,55.28015914052307],[-122.50862050967218,55.28000625527438],[-122.50870979575546,55.27970603409826],[-122.50880876467784,55.27952156765273],[-122.50889747378243,55.279409691495005],[-122.50901013250615,55.27922672978326],[-122.50905107922227,55.279119121063935],[-122.5090561551289,55.278992567965794],[-122.50897732890174,55.27878630098628],[-122.50892000639486,55.27869611994341],[-122.50880898887705,55.27858761608408],[-122.50843494223867,55.27832486310687],[-122.50833382599512,55.278261484210056],[-122.50814698847432,55.27816206644352],[-122.5078685712578,55.27807129310094],[-122.5074480177851,55.27795747375157],[-122.50728810379567,55.27788908182189],[-122.50711980068728,55.27780363645861],[-122.50693457325022,55.27773117066311],[-122.50656035053372,55.27765228329698],[-122.50640272485616,55.277603014724804],[-122.50625896092832,55.27753058952521],[-122.50618987584322,55.27748492510459],[-122.50616531591021,55.277449479068295],[-122.50631282851818,55.27725180039998],[-122.5063644791822,55.2772027950246],[-122.50641574058542,55.27715826351289],[-122.50651356949699,55.27710046238203],[-122.50675990315929,55.27703785619848],[-122.5069398988975,55.277011510116225],[-122.5070922458905,55.27700793368213],[-122.507365060279,55.27702679518759],[-122.50750558914437,55.27702288688863],[-122.5077013418488,55.2769969815005],[-122.50796540021516,55.27693486992524],[-122.50887094925018,55.27651177319167],[-122.50898372724289,55.27644093486753],[-122.50904609679955,55.27638213813091],[-122.50906848974356,55.2763289482166],[-122.50906017128021,55.27628835198413],[-122.5088810883863,55.275986215695504],[-122.50883563865756,55.27594121517586],[-122.50869223986757,55.27584189423862],[-122.5083242538332,55.275691429918965],[-122.50826061734374,55.275673949312036],[-122.5078568440837,55.27566263012133],[-122.50736134946465,55.275616223098865],[-122.50723103816686,55.27559350882948],[-122.50716749956675,55.275574909193],[-122.50705851377208,55.2755113083583],[-122.50692219692588,55.27539872942432],[-122.50622003213664,55.27464128744021],[-122.50591784264104,55.27439287421042],[-122.50575356983806,55.27428399439717],[-122.5054739467664,55.27413936340331],[-122.50530456943345,55.27404379412976],[-122.50499368258421,55.27385007318421],[-122.50482703256307,55.273723186111205],[-122.50463195742398,55.27362801592813],[-122.50446184586248,55.273677059691714],[-122.5043995253391,55.27368988633355],[-122.50353784033354,55.2737453060327],[-122.50340559007756,55.27374495714045],[-122.50334521633037,55.27373541388505],[-122.50319716546541,55.273689773132084],[-122.50313599072774,55.27366675286296],[-122.50254164686534,55.273304735231434],[-122.50229644351424,55.27319582037084],[-122.50199276270014,55.27310095955494],[-122.501610468052,55.27286598197845],[-122.50125476339987,55.27273377952412],[-122.50111065753704,55.27268824694314],[-122.50082946161386,55.27251665170251],[-122.50054676506991,55.272316983508176],[-122.50048738310271,55.27220543711474],[-122.50046823435694,55.27183602306377],[-122.50054029668775,55.271711351781704],[-122.50065183772489,55.27147342690723],[-122.50081394161487,55.2712896191019],[-122.50099577993738,55.27115121367083],[-122.5012253693908,55.27100854341673],[-122.50132277998108,55.270932795602135],[-122.50132502462905,55.270703012051115],[-122.50133985203144,55.270555429782966],[-122.50144859403807,55.27028154732404],[-122.5008390411676,55.2701175455917],[-122.50063416706185,55.27004451718652],[-122.50043479129603,55.26995370366389],[-122.50012127220513,55.26983613698271],[-122.49997127003195,55.26979043707292],[-122.49979564666116,55.269721592834095],[-122.49951765623953,55.26958147774425],[-122.49934626556815,55.26950938817917],[-122.49914765513884,55.26938720023098],[-122.49882786476296,55.26918312102211],[-122.49869120250274,55.26907500700798],[-122.49860667785936,55.26891229839778],[-122.49851527067817,55.26864736655963],[-122.49849349113386,55.26851220962734],[-122.49849048724992,55.268229581526946],[-122.49851292827212,55.2681080011345],[-122.49853807962818,55.268045920803466],[-122.49879530703325,55.267880487070286],[-122.49922537416427,55.26765712408986],[-122.49926280671774,55.26756735877344],[-122.49927731080284,55.26749152459253],[-122.49911487388734,55.2671808696222],[-122.49903670863921,55.26708112748352],[-122.49887394637555,55.26695546170659],[-122.49875714007594,55.26691405686619],[-122.49857515606483,55.2668730618049],[-122.49832928132977,55.26684036085359],[-122.49766112552813,55.26680587502608],[-122.49704543716491,55.26675828573814],[-122.49674222609025,55.26668136297908],[-122.49650183441248,55.2666084491631],[-122.49635142143677,55.266522369466145],[-122.49604307452978,55.266300664767705],[-122.49593251618076,55.26618767571211],[-122.4957444502703,55.265922263841546],[-122.4954688138794,55.26559720570771],[-122.4949669401979,55.26515029500259],[-122.49463007886267,55.264825753849],[-122.49441807811162,55.264653847289026],[-122.49425141921589,55.26455048928259],[-122.49399761760222,55.264427859485565],[-122.49385942285987,55.26433763558141],[-122.4936888923918,55.26418819820042],[-122.49358228454166,55.264075317965194],[-122.49348754189668,55.264030044241345],[-122.49327080035098,55.263957789556365],[-122.49296926073428,55.263839419180705],[-122.49281927262795,55.26377128604552],[-122.49274030010302,55.263748880045874],[-122.49261211849532,55.26374751215896],[-122.49253041228425,55.26375642288155],[-122.49239113241171,55.26379174207227],[-122.49223168992974,55.26385452338971],[-122.49189049236892,55.26403215372983],[-122.49170821681864,55.264107745699185],[-122.49135427463791,55.26422783392866],[-122.49118018649217,55.264187049996835],[-122.49089674799058,55.2640422754681],[-122.48998058179546,55.26345809166841],[-122.48973623951403,55.26331777989668],[-122.48946582804508,55.263204762954025],[-122.48929928561002,55.263100279881606],[-122.48916145371483,55.262938303030005],[-122.48901176619816,55.26270871900894],[-122.48887396338415,55.2624335001887],[-122.48880866315223,55.26207399228075],[-122.48881050432591,55.26187222604918],[-122.48883181244737,55.261786493575826],[-122.48893786729845,55.26167960529046],[-122.48906687873377,55.26160363693574],[-122.48913794059578,55.26158097392495],[-122.48918252703851,55.26156765530404],[-122.48949812427513,55.26154740172561],[-122.49015442510026,55.26151320593742],[-122.4902613172916,55.261487067423936],[-122.49034653633252,55.261437893734055],[-122.49039618707974,55.261343990270944],[-122.49038235956621,55.261276327895445],[-122.49026466924417,55.26120013195541],[-122.4899260434251,55.261077344431314],[-122.48980492006844,55.2610178694077],[-122.48962925470332,55.26095012935274],[-122.48912400020639,55.26056588436302],[-122.48909914376175,55.26048894111246],[-122.48909591607979,55.260367759253164],[-122.48912582248703,55.26018360260904],[-122.48932649583193,55.25980692768191],[-122.48955794306436,55.259529786759614],[-122.48957607779224,55.25941257087525],[-122.48950571420445,55.2592917386769],[-122.48939598972053,55.25919222087308],[-122.48925468189697,55.25911535786594],[-122.48905419900923,55.25901552306304],[-122.48901511650327,55.25901105737439],[-122.48890387311282,55.258996708333484],[-122.48873571643819,55.25895608755897],[-122.48868047872959,55.25893322678712],[-122.48854872385162,55.25885999595568],[-122.48829480826237,55.258626349894],[-122.48821629549728,55.258531074862574],[-122.48802129209913,55.25836860491271],[-122.48789575345599,55.25831460925762],[-122.48779985771472,55.2582827526907],[-122.48767952799085,55.258214327976354],[-122.4875579985388,55.2581144753376],[-122.48742535507479,55.258028884783094],[-122.4866513834773,55.2575585619506],[-122.4865495585352,55.25748168850013],[-122.48653260957592,55.25744981623993],[-122.48649540725374,55.25728843290158],[-122.48650368063102,55.25712609044391],[-122.48652525868081,55.25699215377702],[-122.48672867834021,55.25658416642866],[-122.4870852171883,55.25611771144022],[-122.48725396922273,55.25585786663187],[-122.48740141123024,55.25568375378926],[-122.48747356943383,55.25553554714983],[-122.48754095390835,55.25530647851814],[-122.48731403602683,55.25523840964447],[-122.4872146152526,55.25522439235869],[-122.4870690369469,55.255219163504954],[-122.48691825044236,55.25522836328249],[-122.4866102236483,55.25532058023018],[-122.48649657250947,55.255379039639664],[-122.4862745416411,55.255593652511266],[-122.48622801775157,55.25565176378012],[-122.48610972163765,55.255853607112044],[-122.48603840008744,55.255924473001464],[-122.48599697371581,55.25594684924514],[-122.48585130769258,55.25596516204976],[-122.48527018296511,55.25597566706658],[-122.48508749171154,55.25596602459906],[-122.48485980359797,55.255929323500496],[-122.48461558419243,55.25590112491723],[-122.48440925820007,55.25586838979455],[-122.48399809807538,55.255830991006555],[-122.4834259565968,55.25569374061596],[-122.48328862080805,55.255639406702834],[-122.48319272403357,55.2555851219695],[-122.48303016665179,55.25548074180178],[-122.48280162415935,55.255296012157935],[-122.48237033273867,55.25492503780043],[-122.4822689037055,55.2548212624409],[-122.48214770212971,55.25474047382931],[-122.48210072938161,55.25469093422125],[-122.48199022133367,55.25453308365618],[-122.48196097636625,55.25450646926693],[-122.48172664684665,55.254342876958304],[-122.48165281110712,55.25430715381676],[-122.4815600734417,55.254261926695264],[-122.48145002091715,55.25423414961096],[-122.48138140576512,55.254206422362785],[-122.48128276303046,55.254161028124265],[-122.48107985655116,55.254044292515566],[-122.48097450584379,55.25396282945135],[-122.48093108075007,55.253917874488465],[-122.48090506884634,55.2538543510342],[-122.48086356365528,55.25369732856888],[-122.48086950853794,55.253561829308005],[-122.48090461847815,55.25349891238751],[-122.4810189579596,55.253432628944054],[-122.48123751948742,55.25334798814331],[-122.48135509948074,55.25326722019135],[-122.48150376290113,55.25314696684346],[-122.48169542804229,55.2530088679556],[-122.4818220446404,55.252892476074905],[-122.4818820469531,55.2528156865942],[-122.4819150882847,55.2527538322133],[-122.48191940649292,55.25272704504857],[-122.48191390784564,55.25254188893336],[-122.48184199216547,55.25239409842604],[-122.4817599718581,55.25231665893933],[-122.48155400750343,55.252167322190395],[-122.48140958582361,55.252081391467776],[-122.4809960283648,55.251869003973574],[-122.48075178782483,55.25172867472047],[-122.48067451061142,55.2516872474694],[-122.48051071183338,55.25161982850056],[-122.48015290421586,55.25149198421411],[-122.47994647876415,55.25139308629968],[-122.47958346304289,55.25103187961538],[-122.47948757325915,55.250955167430774],[-122.47922515667494,55.250616986407984],[-122.47913950225161,55.250536078522906],[-122.47906851720708,55.25046791888815],[-122.4789675172678,55.25040451632697],[-122.4784680774911,55.25020426622572],[-122.4783663035428,55.250172235371146],[-122.4782557744059,55.250150047708004],[-122.47797606670987,55.25012195221247],[-122.47778709064445,55.25007175652219],[-122.47764110828166,55.24998129196712],[-122.47757248715686,55.24990871339456],[-122.47751093959975,55.249800455909295],[-122.47754291486349,55.24977333022651],[-122.47764504734992,55.24971118949702],[-122.47775151622339,55.24966711090565],[-122.47808520602432,55.24957452141328],[-122.47828839833544,55.249484966513215],[-122.47844297865907,55.249409733145164],[-122.47857874887492,55.24930145213697],[-122.4788208867071,55.249150209925226],[-122.47894001826981,55.249029124511544],[-122.47897148465121,55.24896274146619],[-122.47897782711982,55.24882276855841],[-122.47892771248316,55.24876416885121],[-122.47872889171074,55.24869127160006],[-122.47852920666728,55.24867328928398],[-122.4783186108782,55.24868975574942],[-122.47819668481198,55.24870760936981],[-122.47762791232178,55.24884848677176],[-122.47752576619904,55.248865778250426],[-122.47690479578263,55.24890426557511],[-122.47679240819508,55.24890332707919],[-122.47666141636401,55.24888952847065],[-122.4765288485377,55.24887120023026],[-122.47645591719525,55.2488478326349],[-122.47600690653984,55.2486803934417],[-122.47577699856731,55.248624550763935],[-122.47549609924353,55.24852017257493],[-122.47515839675438,55.248343548265595],[-122.47502504021205,55.24831174136238],[-122.47496038253895,55.248306546681526],[-122.47472085216882,55.2483154603226],[-122.47453035019677,55.24839527787562],[-122.47436672233796,55.24850612932885],[-122.4742424586675,55.248618095568574],[-122.47399516003857,55.249030427910675],[-122.47386775384427,55.24917818396256],[-122.47373089198769,55.24929876270815],[-122.47346698475562,55.24945050009129],[-122.4733020627929,55.24953104067621],[-122.47303341445803,55.24962433930223],[-122.4726231449935,55.24971250316633],[-122.47237859435126,55.24975602823588],[-122.47218059542188,55.249808720701886],[-122.47188626588289,55.24994725936241],[-122.47169497903984,55.25010329397874],[-122.47160700739795,55.2501613466069],[-122.47144247156093,55.250237410969085],[-122.47139789180454,55.25025072323025],[-122.4710428153577,55.25029447645332],[-122.4709051303266,55.25028945191738],[-122.47042308171861,55.25025111788492],[-122.4702661026681,55.250218636159815],[-122.47005350467104,55.25010048512949],[-122.46993115206448,55.24996583209186],[-122.46982421235852,55.24958831001317],[-122.46967281836503,55.249379953378835],[-122.46957183250123,55.249294118589255],[-122.46936504800857,55.24917725230281],[-122.46922736046285,55.249127376678835],[-122.46906998737356,55.2490545179731],[-122.46874964494077,55.24899497560728],[-122.4686116639822,55.24894845462064],[-122.46858676151884,55.24891747502625],[-122.468605354417,55.24886306239312],[-122.46873070943052,55.24869394971278],[-122.46893112650879,55.248344206364486],[-122.46894421012193,55.248307577041494],[-122.4689311967846,55.248141266385375],[-122.46887085734821,55.24804200799364],[-122.46874654374307,55.2478848733651],[-122.46850197132093,55.247704144670614],[-122.46840257009735,55.24764526315433],[-122.46804365435575,55.24750838078232],[-122.46791739525312,55.24750816178427],[-122.46770512789524,55.24752119914225],[-122.46749610872499,55.247542176916575],[-122.46662745540812,55.24761506878592],[-122.46630319988995,55.247667531468615],[-122.46620971133277,55.2476760896717],[-122.46531546401144,55.24770339676558],[-122.46498254454006,55.24771973070808],[-122.46473238826286,55.247759717765526],[-122.46434583533981,55.24780255748967],[-122.46407442164882,55.2478598791309],[-122.46387169702119,55.24787654481451],[-122.4637213265469,55.24790366738909],[-122.46356436230323,55.247916026455904],[-122.46341133440654,55.247950921781786],[-122.46332611103328,55.24797765238042],[-122.46320929754258,55.24807188042075],[-122.46330633027463,55.24820245774534],[-122.46343456001932,55.24833728503123],[-122.4636968272569,55.24847367769853],[-122.46376542158539,55.248613537752824],[-122.46375794290451,55.248676114200435],[-122.4637437718168,55.248702621148745],[-122.4636470329757,55.24874808578587],[-122.46360048404351,55.24876133933822],[-122.463466052881,55.24878667207847],[-122.46333860883762,55.2487998696577],[-122.46321628220355,55.24879975773895],[-122.46275984530781,55.248806970301885],[-122.46248891621013,55.248791422471946],[-122.46240369150291,55.24877330320809],[-122.46235478179621,55.24872370024462],[-122.46233667894997,55.24852584899468],[-122.46237496243026,55.24847199666989],[-122.46247593478965,55.248378440359005],[-122.46246058521328,55.24826139605839],[-122.46242387859725,55.24823007961823],[-122.46222312216184,55.24815710009381],[-122.4621193974286,55.24814742464894],[-122.46190397599848,55.248151392770716],[-122.46133987514065,55.24835063406834],[-122.46107159957651,55.2484618577737],[-122.46093509706832,55.24855552410563],[-122.46077842056806,55.24863179821318],[-122.46061071888256,55.248743638106454],[-122.46053858023544,55.248778587582734],[-122.46030110549889,55.248853684882604],[-122.46018980018493,55.248862853270175],[-122.46007583887426,55.24885736999321],[-122.46000517901167,55.24885311806169],[-122.45988059232434,55.24881145295592],[-122.45954609367426,55.24875596881722],[-122.4594095910138,55.24880478424653],[-122.45930851643821,55.24885460727334],[-122.45916452960998,55.248943573999085],[-122.45895066791464,55.24904176519564],[-122.458738475236,55.24916579193112],[-122.45852461670381,55.2492191331633],[-122.45842876042221,55.24923210325402],[-122.45837158225599,55.24923159768464],[-122.45831588239452,55.24921431562716],[-122.45824729460145,55.24916415103456],[-122.45825005414758,55.2491328349739],[-122.4583483963837,55.248912507315225],[-122.45834803008309,55.24869273487285],[-122.45830189339459,55.248544540408574],[-122.45822386842653,55.24842234822686],[-122.45814022913804,55.24834148192496],[-122.45797304413105,55.24822347995485],[-122.45788939662137,55.24820988733213],[-122.45774856935729,55.248218213413544],[-122.45750597992452,55.248261765293336],[-122.45719625630853,55.248417772010576],[-122.45703367210544,55.24847144873454],[-122.45683644814717,55.24851516937004],[-122.45659936245357,55.24858578589378],[-122.45624938854739,55.24870588631721],[-122.45611130423757,55.24877259299832],[-122.45600127201394,55.248812067299376],[-122.45576527642507,55.24882553028604],[-122.45570495139363,55.24881596397963],[-122.45560831477682,55.24879303009639],[-122.45553303733675,55.24875164330756],[-122.45545727129492,55.24869342399958],[-122.45539105515724,55.24861641555297],[-122.45538712314193,55.248593878841696],[-122.45571930305242,55.24838469642711],[-122.45577057955646,55.248362610473436],[-122.45581359286241,55.24832234943486],[-122.45582511468179,55.24828119173453],[-122.45583223630722,55.24808854178833],[-122.45581102680902,55.2478367808603],[-122.45581536607396,55.24778756999776],[-122.45585131165168,55.247648438896675],[-122.45591884224964,55.24753151060353],[-122.45607269235536,55.24733070475329],[-122.45607397835953,55.24729374056428],[-122.45605813849902,55.24727198608432],[-122.45597302675044,55.24720789476723],[-122.45588269695013,55.2471582308859],[-122.4554989369689,55.24699033024553],[-122.45497241243068,55.246718572251076],[-122.45473418872746,55.2466232094483],[-122.45460322652723,55.24654211381201],[-122.4542858270657,55.24627070296962],[-122.45411356240807,55.2460763063904],[-122.45400188434499,55.24602266912138],[-122.45392465090032,55.245958800688754],[-122.45381585081053,55.245805455035935],[-122.45367705854493,55.245567161865175],[-122.45360849361907,55.24547214551198],[-122.45351817611778,55.24540005531242],[-122.45327604439562,55.245237303746016],[-122.45292823200673,55.24506481253126],[-122.45283555380938,55.244997139457254],[-122.45272635975489,55.24487069117807],[-122.45277174699815,55.24478116436759],[-122.45292492307632,55.24454334221203],[-122.4531284762279,55.24431592545786],[-122.45334431733879,55.24412810193903],[-122.45347729771125,55.24396258427157],[-122.4534794194249,55.243737275845405],[-122.45353467646613,55.24351348150937],[-122.4535161972321,55.24343222580003],[-122.45345786534183,55.24335544066583],[-122.45335534479436,55.2433099122035],[-122.45312697921148,55.24323725135712],[-122.45298500146174,55.24319171934458],[-122.45282255493161,55.243154573698384],[-122.45265646887827,55.243113960381656],[-122.45246007425483,55.243081452844976],[-122.45227469800739,55.24305822898357],[-122.4521551464925,55.243049214896764],[-122.45176194473986,55.24305594545231],[-122.45148583264111,55.243077225623296],[-122.45123972646243,55.243116179365494],[-122.45095337893062,55.24314165148899],[-122.45056674983202,55.24320799147277],[-122.45031710835813,55.24321993284188],[-122.44997910619804,55.24322711090869],[-122.44951604373423,55.24322062932963],[-122.44942059398572,55.24322911878984],[-122.44908642870566,55.24323752514124],[-122.4487713744082,55.24318592883576],[-122.44846607015685,55.24311330633493],[-122.44816007526273,55.2430485120417],[-122.44801416791383,55.24300286204056],[-122.4478623484385,55.24297946797531],[-122.4476363491697,55.24292480414929],[-122.44739066225726,55.242892002781616],[-122.44708415839088,55.24287764716576],[-122.44701675431132,55.242881329176456],[-122.4469248361371,55.242916827374565],[-122.44672354733811,55.24307366106914],[-122.44659961898311,55.24318112599612],[-122.4464614905588,55.24335994498426],[-122.4463943538668,55.243427545215255],[-122.44617024541064,55.24355233177024],[-122.44602348948357,55.24365017444199],[-122.4459319642133,55.243681198227215],[-122.44575010973475,55.243707399944775],[-122.44560929572101,55.24371571230069],[-122.4454531334391,55.24371910118159],[-122.44532138809022,55.243691792381306],[-122.44526147893656,55.24365532273484],[-122.4451731484391,55.243583282703],[-122.44510894870072,55.243461475818584],[-122.44495502196416,55.24288188052757],[-122.44482068135213,55.2427277962924],[-122.44474061065226,55.242673931743774],[-122.44466574109262,55.24265048933587],[-122.44457265527322,55.24265455762024],[-122.44441441962103,55.242681432004694],[-122.444294542336,55.242743039447085],[-122.44425034697112,55.24277429291432],[-122.44416141858846,55.24293209031903],[-122.44407182920939,55.24303044277776],[-122.44396098776033,55.2431237029899],[-122.4438374367594,55.24324911609963],[-122.44375180364283,55.24330273157819],[-122.4436732724862,55.24332067006583],[-122.4434990041957,55.24332802407642],[-122.44338418138427,55.24331016669389],[-122.44322921920786,55.2432777071592],[-122.44310538246722,55.24318334715661],[-122.4430545467228,55.24311125579209],[-122.44303807942514,55.242985205563016],[-122.44304541690236,55.24267931498637],[-122.44307431080406,55.242553439918794],[-122.44306334024472,55.24245445670181],[-122.44304989571225,55.24238343393696],[-122.4429258677259,55.24209060757903],[-122.44282141731973,55.2420001649996],[-122.44276308496394,55.24196822407391],[-122.44264158247961,55.24193672000644],[-122.44241882741271,55.24191241274422],[-122.44219599721673,55.24184437429395],[-122.44201225209896,55.241735966674106],[-122.44195237271408,55.24165464623539],[-122.44180256575477,55.241564027237466],[-122.44177297285277,55.24151945251218],[-122.44174071918934,55.2414826504357],[-122.44172538434542,55.24145530205866],[-122.44171033444722,55.241447023031746],[-122.44158462591585,55.24137391145254],[-122.44155344939263,55.24134723134522],[-122.44150811411716,55.24130220642767],[-122.4414458603276,55.241247727750746],[-122.44144547652658,55.24122977681523],[-122.44141470845013,55.241176198404276],[-122.4413844232325,55.241139452504825],[-122.44135324702371,55.24111277234796],[-122.44132296190996,55.24107602643376],[-122.44129020168249,55.24106724092702],[-122.44122874061881,55.24100381480975],[-122.44116638865925,55.24095045441084],[-122.44107305905477,55.24086817692156],[-122.44105800951041,55.240859897816115],[-122.4409637892009,55.24078768599295],[-122.44084005190757,55.24071462994145],[-122.44080925990075,55.240705900585795],[-122.4407146569292,55.24061573763846],[-122.4407001152896,55.24057944180818],[-122.44066973215101,55.240543814152744],[-122.4406066884748,55.24049828238785],[-122.44057551327855,55.2404716020376],[-122.44053027911042,55.24042545835119],[-122.4404521865404,55.24037164733778],[-122.44035796846156,55.24029943505905],[-122.44032717687708,55.24029070558461],[-122.44021841815062,55.24018219732635],[-122.4401104523082,55.240064741649405],[-122.44004820232574,55.240010262279036],[-122.43995398581818,55.23993804969664],[-122.43992319459791,55.2399293201225],[-122.43986094507852,55.23987484065908],[-122.43979907878057,55.23983831210332],[-122.43967287030705,55.23979321527997],[-122.43954796306053,55.23971115433298],[-122.43943987472842,55.239639665692984],[-122.43934534962807,55.239593232496645],[-122.43926726025799,55.23953942074371],[-122.43920460252713,55.2395118392125],[-122.43911115418534,55.2394755278752],[-122.43900186489397,55.23943988443204],[-122.43897117332878,55.2394300362083],[-122.43886160072464,55.239375323287106],[-122.43873618734251,55.2393212782],[-122.4385634492802,55.2392669998896],[-122.43851770953512,55.23924887214655],[-122.43843772550503,55.23923873434394],[-122.43818801999917,55.23922934521652],[-122.43812416034677,55.23923760870858],[-122.43807683536735,55.23923737542637],[-122.43793562486421,55.239272577358946],[-122.43787166599392,55.239281959135326],[-122.43777780873474,55.23927254505177],[-122.43769899977232,55.23927141040976],[-122.43766820955149,55.239262680278635],[-122.43761970963462,55.2392534431867],[-122.43744904022125,55.2391981012458],[-122.43740054043256,55.239188864068616],[-122.43700768599251,55.23916976820955],[-122.4369138291972,55.23916035347512],[-122.43685234840497,55.239141774404295],[-122.4367730589008,55.23912380664249],[-122.43674157509457,55.23912290517222],[-122.43666346036903,55.23911394098519],[-122.43644457587403,55.23906842954548],[-122.43639607647223,55.23905919197736],[-122.43638112770518,55.23904979389545],[-122.43633421457406,55.23902266170284],[-122.43623997682214,55.23899529551256],[-122.436131583684,55.238949583840686],[-122.43609882632144,55.23894079697004],[-122.43605229488043,55.23893161562035],[-122.43598922845351,55.238930930719626],[-122.4358787382716,55.2389311300817],[-122.43584725463616,55.23893022838536],[-122.4358011045254,55.238938997891374],[-122.43576872848995,55.23894816188358],[-122.43575336790623,55.23896566197238],[-122.43575216265594,55.2390015075144],[-122.43576828574709,55.239019909325485],[-122.43579856424032,55.23905665658441],[-122.43581478652891,55.23907393997748],[-122.43589277122607,55.239128872305145],[-122.43590702584642,55.239146099330746],[-122.43593809776904,55.239173899258944],[-122.43595339726767,55.23924609754037],[-122.43593518400947,55.23940703618635],[-122.43591642896754,55.239640840689475],[-122.43591557457651,55.23973948638371],[-122.43588316730217,55.23979349960479],[-122.43575525378567,55.239945690202234],[-122.43570672266705,55.239981301564114],[-122.43567631355016,55.23999052189154],[-122.4356440358013,55.23999856744006],[-122.43555055855074,55.24000710262927],[-122.43532967144087,55.240006382065516],[-122.43529808780559,55.240006598642005],[-122.43526729754308,55.23999786791686],[-122.4351885186262,55.23995188248707],[-122.43517436320207,55.23993353696659],[-122.43515814084199,55.23991625348892],[-122.43514360446767,55.23987995701209],[-122.43512754424401,55.23977185672192],[-122.4351283691056,55.239718060231],[-122.43511462623036,55.23967281645871],[-122.43508386777485,55.239619236490405],[-122.43506853816586,55.23959188729783],[-122.43500629574189,55.23953740540963],[-122.43491247026002,55.23948313996932],[-122.4348493355791,55.239438723705504],[-122.43480331567507,55.239401525233724],[-122.43474173630419,55.239384063532036],[-122.43466295918972,55.23933807777194],[-122.43464791153669,55.239329797893014],[-122.43463140809128,55.23929344498268],[-122.43458532143325,55.23921251564543],[-122.43456999231809,55.23918516639228],[-122.43452428660036,55.239122187986695],[-122.43450975108469,55.23908589143803],[-122.43449445423741,55.239013692980144],[-122.43446490350847,55.238924267331946],[-122.4344351036866,55.23877092311791],[-122.43440396618996,55.238699392031904],[-122.43438901802188,55.238689993711134],[-122.43437410216289,55.23863574619422],[-122.43429643427442,55.23855503308821],[-122.43426660294634,55.2384465380317],[-122.43421972441838,55.23837455585044],[-122.43418896814694,55.238320975666504],[-122.43414326400722,55.23825799712526],[-122.43409714690657,55.23822191680649],[-122.43406687059533,55.2381851691363],[-122.43394108693975,55.238113168272],[-122.43386348726368,55.23807618568108],[-122.43375461975329,55.23801363939978],[-122.43361230208671,55.2379501343713],[-122.43356539210473,55.23792300113817],[-122.43328638055674,55.237777090312036],[-122.43320671524194,55.23774116932599],[-122.4330813145489,55.23768711855177],[-122.43303557906965,55.237668988797736],[-122.43300489031556,55.23765913910517],[-122.43297213468641,55.237650351412974],[-122.43289322980509,55.237650332139886],[-122.43283016544021,55.23764964563976],[-122.43279975742634,55.237658865263164],[-122.43278322226152,55.23766736130312],[-122.43275281422348,55.237676580915135],[-122.43272012372702,55.23771152393792],[-122.43270386915404,55.23773908933444],[-122.43270424902191,55.237757040291974],[-122.43268723139138,55.23788213293508],[-122.43270055689074,55.23795427520284],[-122.43271626414183,55.23799957564131],[-122.43274781210137,55.23804420891129],[-122.43276155175903,55.238089452939214],[-122.43276027566881,55.23821499683461],[-122.43275852043563,55.23832370818252],[-122.43274146861246,55.238493650031764],[-122.43273988080188,55.23851154458489],[-122.43272321189326,55.238566008220616],[-122.43267464555895,55.238646467591224],[-122.4326272870574,55.238691081432414],[-122.43256297866186,55.2387710895021],[-122.43251590043866,55.238834772670224],[-122.4324362295783,55.23893228036285],[-122.43241959456525,55.23894189476478],[-122.43238797723379,55.23898695979835],[-122.43233940972102,55.23906741904078],[-122.43232321900226,55.23913871517652],[-122.43232121667911,55.23918350796007],[-122.43230364907731,55.23938146640501],[-122.43228707847085,55.239434811576736],[-122.43227037391915,55.23953412435242],[-122.43223509606219,55.23973157507674],[-122.4322346470096,55.239803322510184],[-122.43215445987165,55.23992884667529],[-122.43212087369469,55.23997385522976],[-122.43209042891307,55.24002792388001],[-122.43207306367279,55.240090216299286],[-122.432071440632,55.24015296004487],[-122.43207182024051,55.240170911007546],[-122.43202363025432,55.24026932109699],[-122.43199201143626,55.24031438603443],[-122.43195959843175,55.24036839823706],[-122.43194264740927,55.240403792403335],[-122.43190940508686,55.24051160106594],[-122.43184578723134,55.24058377991284],[-122.43181309358506,55.24061872270522],[-122.43179763137346,55.24063734071729],[-122.43178226841766,55.24065484031855],[-122.43178068009519,55.24067273486231],[-122.43176601201303,55.240682405598726],[-122.43171747647501,55.24071801540823],[-122.43170290763368,55.2407265677282],[-122.43166973503894,55.24074467792766],[-122.43162358193649,55.2407534458869],[-122.43145091103887,55.2407428884984],[-122.43140358432781,55.24074265268057],[-122.43135705187446,55.24073346957557],[-122.43132508836625,55.24071573417893],[-122.43129429842325,55.24070700247119],[-122.43123047081791,55.240670413229175],[-122.4311847327815,55.240652282791366],[-122.43104278899139,55.240606725780246],[-122.43099705111193,55.240588595273614],[-122.43093360306922,55.240569956846386],[-122.43080819661337,55.24051590377198],[-122.43077740693548,55.240507171936585],[-122.43069901115206,55.24047913463265],[-122.43062168955531,55.240461219390724],[-122.43044746794781,55.24042370594074],[-122.43036935209943,55.240414737805445],[-122.43030707792894,55.24040510276484],[-122.43010193105829,55.24040482447942],[-122.4300388624237,55.24040413656559],[-122.43000686258668,55.24043125003035],[-122.42999187761403,55.24046670037993],[-122.42997482549917,55.24050321268632],[-122.42997399373088,55.24055700914612],[-122.42998969892821,55.24060230993746],[-122.43002124590387,55.24064694390678],[-122.43006736212898,55.24068302574134],[-122.43009932505676,55.24070076146063],[-122.4302242530329,55.24073798268815],[-122.430364644175,55.24075658595788],[-122.43044313957367,55.240783505064925],[-122.43052242952149,55.240801476858515],[-122.43063002685471,55.240856140682794],[-122.43067773268791,55.24087432776263],[-122.43072384976236,55.240910409354754],[-122.43083379454404,55.240983080408604],[-122.43092602930486,55.24105524346098],[-122.4309413566555,55.241082593166446],[-122.43102019618173,55.2411723120799],[-122.43103510845904,55.24122656000893],[-122.43105002077655,55.24128080793632],[-122.43106534829741,55.24130815762702],[-122.43109572350815,55.24134378762697],[-122.43112689309359,55.24137047035152],[-122.43115796343112,55.241398271476825],[-122.43128136951118,55.24149711697751],[-122.43131361361868,55.24153392176193],[-122.43134277996297,55.24160539720842],[-122.4313581078065,55.241632746863736],[-122.4313584871107,55.241650697830686],[-122.43135762150172,55.24174934350849],[-122.43132520648953,55.24180335555188],[-122.43130984288302,55.24182085509629],[-122.43129320640651,55.24183046934992],[-122.43124625767302,55.24184818443966],[-122.43121397754801,55.241856228841286],[-122.43113544362593,55.24187415942229],[-122.43107157832743,55.241882419299905],[-122.4309299732966,55.24189966232858],[-122.43088371940986,55.24190954842283],[-122.43063133609084,55.2419079165677],[-122.43055359626739,55.24191689951641],[-122.43041081751788,55.24192513825006],[-122.43022150513858,55.24192419328982],[-122.4298606905193,55.241921692157774],[-122.42957751667358,55.24191132609678],[-122.42951514104006,55.241902809066445],[-122.42948365522196,55.241901905761345],[-122.42923242184675,55.241820694785886],[-122.42920252561439,55.24180189689687],[-122.42903141761363,55.24168486164118],[-122.42895184771145,55.24164781951615],[-122.42890493656128,55.2416206845201],[-122.42885919849257,55.241602553227075],[-122.42879565048581,55.241585032116],[-122.42876495978277,55.241575181375794],[-122.42871763210846,55.2415749445374],[-122.42865366742923,55.241584321581804],[-122.42857523225848,55.24160113214155],[-122.42852907749928,55.24160989895479],[-122.42848085550736,55.24161972768467],[-122.42844857501278,55.241627771369444],[-122.42841736805974,55.24164593717697],[-122.42838695601438,55.24165515572588],[-122.42830814265052,55.241654015141584],[-122.4282919225464,55.241636730767546],[-122.42826248304722,55.24154618522406],[-122.42827746994571,55.24151073507967],[-122.42827868193055,55.24147488960331],[-122.42831030581978,55.24142982560453],[-122.42834314156181,55.24134891612122],[-122.42836051312015,55.24128662421607],[-122.42839293169594,55.24123261294648],[-122.42839217574198,55.241196710995744],[-122.42840885160324,55.241142247928934],[-122.42839459948624,55.24112502004262],[-122.4283162432162,55.24105213203675],[-122.4283001227191,55.241033729258305],[-122.42827012813844,55.24101604955284],[-122.42825321272446,55.241006594018145],[-122.42819163374001,55.24098912907593],[-122.42811361666959,55.24097904111939],[-122.42808165439605,55.24096130489016],[-122.42803553963279,55.24092522231972],[-122.42798825214949,55.240880136003945],[-122.427926812342,55.240816703325024],[-122.42784873587009,55.24076288440884],[-122.42777113668376,55.24072589801477],[-122.42775453949692,55.24069066259534],[-122.42773921446187,55.24066331249855],[-122.42774130135399,55.24052882138565],[-122.42775756045387,55.24050125663112],[-122.42779035690735,55.24046519649788],[-122.42783810058249,55.24043853546598],[-122.42786920748227,55.240421488211055],[-122.42790120875206,55.240394375295594],[-122.42794777949122,55.240358710493],[-122.42794978674168,55.24031391777583],[-122.42796608505815,55.24024150379651],[-122.4279498656704,55.24022421937975],[-122.42795145567892,55.24020632488543],[-122.42792038847746,55.2401785229628],[-122.42788763190784,55.24016973393182],[-122.42784189594694,55.240151602267225],[-122.42777882774794,55.240150913209135],[-122.42769991796551,55.240150890645914],[-122.42751140909874,55.2401409943214],[-122.42744754580741,55.24014925233991],[-122.42726020962834,55.24014835936817],[-122.42718209502505,55.24013938923406],[-122.42713476904895,55.24013915179426],[-122.4269616252346,55.24011175561039],[-122.42689935234914,55.24010211886613],[-122.42685085389327,55.240092877580466],[-122.42682086065084,55.240075197527325],[-122.4266947653927,55.24002896914834],[-122.42660053184105,55.24000159566282],[-122.42646135863173,55.23994714269704],[-122.42641286046324,55.23993790124088],[-122.42611395936957,55.23992707526379],[-122.42606850198455,55.23992801233329],[-122.42578417086638,55.23990863390437],[-122.4257526866926,55.23990772965628],[-122.42570615649473,55.239898544440706],[-122.4256119239211,55.23987117020758],[-122.42558113586433,55.239862437088156],[-122.42553460575797,55.239853251808476],[-122.42543878229688,55.239843771907346],[-122.42532918458456,55.23983389627612],[-122.42526770811328,55.239815311486154],[-122.4252349524188,55.239806521757814],[-122.42514310724115,55.239752305481545],[-122.42509540524016,55.239734116283664],[-122.42504849892207,55.23970697983925],[-122.42501653901016,55.239689242825214],[-122.4250020118667,55.23965294516571],[-122.4249410406978,55.23951776361409],[-122.42490950024305,55.239473128361915],[-122.42487843570964,55.2394453256821],[-122.42481737936053,55.23939984245994],[-122.42478621548595,55.239373158160674],[-122.4247396861269,55.239363972584464],[-122.42466077788956,55.239363948095786],[-122.42462929416725,55.23936304356382],[-122.42448769524279,55.23938027926516],[-122.424456112041,55.23938049309255],[-122.42443947493588,55.23939010642876],[-122.42440757160423,55.23941610004978],[-122.42436099881814,55.2394517635261],[-122.42434314623164,55.23949722228228],[-122.42430988429616,55.23960502890863],[-122.42429451847799,55.23962252758483],[-122.42429405526718,55.23969427498866],[-122.42427653506587,55.23980253391708],[-122.4242760718209,55.2398742813218],[-122.42427565213382,55.23990117953131],[-122.42429017871164,55.239937477276214],[-122.4243358258436,55.240045308636546],[-122.42435072869083,55.240099557360836],[-122.42436610722388,55.24017063866672],[-122.42436367635915,55.24024232953609],[-122.42434741503881,55.24026989384704],[-122.42428430316407,55.24031405221645],[-122.42425309534991,55.2403322169788],[-122.42422151139962,55.24033243074667],[-122.42417418521396,55.24033219218187],[-122.42412765488558,55.24032300637636],[-122.42408112457844,55.240313820553446],[-122.42401847605326,55.2402862313816],[-122.42386281126832,55.24019542119036],[-122.42383164741061,55.24016873665061],[-122.42379899123294,55.240158828141716],[-122.42376820334958,55.24015009457405],[-122.42372087738107,55.24014985583705],[-122.42350078569496,55.24014016707546],[-122.42345425574239,55.24013098101847],[-122.42342356745628,55.24012112896327],[-122.42339160793175,55.24010339153182],[-122.42337549006723,55.24008498811735],[-122.42331316321061,55.24003161878665],[-122.42328289538715,55.23999486849041],[-122.42326709847309,55.23995068525787],[-122.42323725113428,55.239887036744655],[-122.42322272552454,55.239850738877095],[-122.4231754446972,55.23980565073792],[-122.42300515881114,55.239679660005805],[-122.42295825396629,55.23965252277434],[-122.42287986529713,55.239624480551],[-122.42286285221947,55.23961614268702],[-122.42278483914755,55.23960605139382],[-122.42261324753437,55.23960560393295],[-122.42256592221318,55.239605364757146],[-122.42251780069225,55.23961407277546],[-122.4224700544702,55.23964073176618],[-122.42235872034188,55.23969471554051],[-122.42224786066944,55.239765531806086],[-122.42220011408882,55.23979219069373],[-122.4221689057385,55.23981035493313],[-122.42205846658278,55.23985427282855],[-122.42199567451921,55.239872650235995],[-122.42194675622243,55.23989030524268],[-122.4218683215522,55.23990711157694],[-122.42179016228958,55.239942987256285],[-122.42167882641267,55.23999697042403],[-122.42156758978957,55.24004983509176],[-122.42153558452598,55.24007694637909],[-122.42142509721009,55.24016571290909],[-122.4213922952961,55.2402017713655],[-122.42137561032698,55.24025623348883],[-122.42134365750107,55.24032707552256],[-122.42124754659584,55.24049810758214],[-122.42119900197133,55.24053371329199],[-122.42116672089243,55.24054175508891],[-122.42113710454664,55.240542024662766],[-122.42102660986933,55.24054221084947],[-122.42096354117508,55.24054151834042],[-122.42090009785515,55.24052287480237],[-122.42085356805379,55.24051368777364],[-122.42080666368783,55.24048654973012],[-122.42077470502672,55.24046881162661],[-122.42074443919299,55.24043206071228],[-122.42071407383743,55.240396428190884],[-122.42065152269197,55.240279138933964],[-122.42060663415576,55.24020720821667],[-122.42055977801542,55.24013522088579],[-122.42052988708751,55.240116420917744],[-122.42048223452855,55.240053380757765],[-122.42046798619131,55.24003615196619],[-122.42045149526814,55.23999979717575],[-122.42043659771514,55.23994554798535],[-122.42042212246577,55.23986440059701],[-122.42042334139927,55.2398285552017],[-122.4204238115138,55.23975680781168],[-122.42042512614519,55.23963126403],[-122.420427141734,55.239586471436745],[-122.42047620371075,55.23943426944883],[-122.42047555443585,55.23939724905538],[-122.42046055749195,55.239344118270104],[-122.42046257302688,55.23929932567727],[-122.42046351706738,55.239244410886734],[-122.42046276822603,55.2392085088935],[-122.42049589278967,55.239146670889305],[-122.42052874238193,55.239065763480546],[-122.42056079521889,55.23899380326268],[-122.42061018280612,55.23890440141543],[-122.42062649376068,55.23883198840465],[-122.42064476798973,55.23867105200802],[-122.4206607042845,55.23858068799889],[-122.42072508355713,55.23845583688748],[-122.42072630217808,55.238419991493124],[-122.42072762036861,55.23838302769883],[-122.42072729335086,55.23832022751524],[-122.4207127185281,55.23824019857051],[-122.42073062216741,55.2381498911507],[-122.42073146624413,55.238096094762724],[-122.4207481511894,55.23804163273465],[-122.42078005579522,55.23801564005368],[-122.42082663009289,55.23797997792034],[-122.42107829144729,55.237989458442925],[-122.42112678604197,55.23799870197484],[-122.42117172006141,55.2380257833045],[-122.4212504791866,55.238071777592154],[-122.42131242548223,55.23810719695449],[-122.4213293380462,55.238116653429714],[-122.42136012384431,55.238125387598956],[-122.42148625367444,55.23812677218321],[-122.42151666463383,55.23811755532175],[-122.42156558096411,55.238099900486304],[-122.42158174376588,55.23807345494376],[-122.42164537606365,55.23800128135377],[-122.42164500112715,55.23798333036236],[-122.42166116382991,55.237956884809705],[-122.42166121030138,55.23791203562178],[-122.42166205312893,55.23785823922857],[-122.4216479046087,55.237839892174094],[-122.42163141351956,55.237803537545894],[-122.42161726503254,55.23778519048797],[-122.42160104936217,55.23776790524779],[-122.42156919205696,55.237749048951144],[-122.4215234616949,55.23773091496984],[-122.42147656012098,55.23770377718434],[-122.42141302148664,55.23768625231205],[-122.42133580894497,55.23766721290915],[-122.42125573283491,55.23765818247456],[-122.42116188325338,55.23764875587133],[-122.42108297838195,55.23764872911609],[-122.42073874037472,55.23763770707456],[-122.42065983552526,55.237637680051186],[-122.42051749211178,55.23761900924901],[-122.4204071050371,55.23761807648627],[-122.42036174970791,55.23761789307317],[-122.42032857457201,55.23763600024762],[-122.42028200023105,55.23767166219385],[-122.42024919932585,55.23770772034234],[-122.42023223912369,55.237743112907395],[-122.42021644986471,55.237787509269566],[-122.42019924571255,55.2379585677917],[-122.42019765234528,55.23797646218393],[-122.42014943594683,55.23807486766156],[-122.42008617509188,55.238164991483856],[-122.42005374783751,55.23821900057861],[-122.42002067165846,55.23823598927242],[-122.4199902602669,55.23824520576869],[-122.41991093163875,55.23827207646253],[-122.41987865211688,55.23828011792427],[-122.4198174550641,55.238280599842845],[-122.41969132480924,55.23827921356851],[-122.4196112478503,55.238270182076334],[-122.41954977640937,55.23825159446643],[-122.41944050777465,55.23821593386371],[-122.41940865112721,55.23819707701381],[-122.41934590949202,55.238170603895156],[-122.41929980576118,55.238134518098356],[-122.41925210831971,55.23811632666485],[-122.41922104874298,55.238088522576966],[-122.41919068650505,55.23805288969043],[-122.41914383540662,55.23798090183858],[-122.41912931417764,55.237944603498896],[-122.41911441916815,55.237890354158836],[-122.41911404536178,55.237872403159976],[-122.41906916225898,55.237800471901636],[-122.41903762966406,55.23775583516844],[-122.41900577356971,55.237736978216226],[-122.4189438298745,55.23770155770764],[-122.41891277083096,55.23767375354375],[-122.41883630647392,55.23760203461621],[-122.41880445059567,55.23758317761264],[-122.41874171031522,55.23755670419088],[-122.4186633286677,55.237528659318315],[-122.41858484750028,55.237501732794684],[-122.41847605490696,55.23748290394948],[-122.41836636569926,55.23747414059147],[-122.41834945410166,55.237464683714286],[-122.4182556056524,55.23745525492134],[-122.41822402392857,55.23745546716835],[-122.41809949059548,55.23743618491583],[-122.41790982636299,55.23741727024281],[-122.41778519364755,55.23739910607375],[-122.4176274845441,55.237397929837186],[-122.41742315038549,55.23738868349018],[-122.41712427064937,55.237377835942],[-122.41701468169497,55.23736795299658],[-122.41688845472159,55.23736768228089],[-122.41679460684094,55.23735825238702],[-122.41666917735577,55.237349034275184],[-122.41654384761357,55.23733869764049],[-122.41624486879205,55.23732896637854],[-122.41619754618652,55.23732872478305],[-122.4160887551781,55.23730989385284],[-122.41591446106489,55.23727347848063],[-122.4158064679844,55.23724570013577],[-122.41571145069263,55.23722726558541],[-122.41561802886208,55.23719093663015],[-122.41557033420371,55.23717274378791],[-122.41552460720024,55.23715460760481],[-122.41550929182485,55.23712725601103],[-122.41546202284103,55.237082164953456],[-122.41544670753576,55.23705481335202],[-122.41543129253569,55.23702858014446],[-122.41543177151861,55.23695683278851],[-122.4154343712241,55.236839174534346],[-122.41545266531415,55.23667823892405],[-122.41545229315258,55.236660287915896],[-122.41550168922561,55.23657088811014],[-122.41551678522498,55.23653432111934],[-122.41558112393729,55.236454321866745],[-122.41561355577267,55.2364003139438],[-122.41570984719776,55.23633805404764],[-122.4157410557706,55.23631989143141],[-122.41577226431525,55.23630172880727],[-122.41581958571044,55.23630197056439],[-122.41592996906809,55.236302907392975],[-122.41599223344625,55.23631254961854],[-122.41610191897041,55.23632131506684],[-122.41619613676053,55.236348696487376],[-122.41629115219975,55.23636713066671],[-122.41638420015065,55.2363855081099],[-122.41647804566644,55.23639493831224],[-122.41663495336039,55.23640506317644],[-122.41668227488229,55.23640530460573],[-122.41673039382859,55.23639659884421],[-122.4167938806054,55.236370395319405],[-122.41684172638212,55.236342620114485],[-122.41687246198192,55.236307624607825],[-122.41695221331128,55.236253857675955],[-122.41698342125802,55.23623569474846],[-122.41704770496561,55.236200543920226],[-122.41709465335965,55.23618283419003],[-122.41718934734044,55.23613846750107],[-122.41729988127328,55.236093435538436],[-122.41734879699297,55.23607578236187],[-122.41741228286094,55.23604957852246],[-122.41745843366384,55.236040815832375],[-122.41760161829227,55.23600569377034],[-122.41766440632827,55.23598731858345],[-122.41771215139902,55.235960661442256],[-122.41774335877537,55.235942498324704],[-122.41777446647579,55.235925453596835],[-122.41780647097141,55.23589834328436],[-122.4178234325296,55.2358629510545],[-122.41787095445304,55.235772375276],[-122.41787254876769,55.2357544809165],[-122.41788998479147,55.23564734131975],[-122.41789003546343,55.23560249214097],[-122.4179055021748,55.23558387586263],[-122.41795329720847,55.23551236945141],[-122.41798520161426,55.235486377491355],[-122.41800183864721,55.23547676501993],[-122.4180338426328,55.23544965465001],[-122.41808121349816,55.23540504636958],[-122.41811232063996,55.23538800155798],[-122.41814549491981,55.23536989497687],[-122.41817670164241,55.2353517317516],[-122.41828633562115,55.23531676449514],[-122.41835029275282,55.23530739277923],[-122.41842909340332,55.23530853966367],[-122.41847561663242,55.23531772759456],[-122.41852213988275,55.23532691550805],[-122.41856983368787,55.23534510721731],[-122.41871015086774,55.23540857279362],[-122.41877241452818,55.2354182136286],[-122.41881973490236,55.2354184542458],[-122.41894515886239,55.23542767019044],[-122.41903979963563,55.23542815127548],[-122.41913406661868,55.23541068129304],[-122.41919802370218,55.23540130914168],[-122.41929308738744,55.235374891851],[-122.41930765692848,55.23536634098605],[-122.41937273403198,55.235322241771385],[-122.41940473697106,55.23529513104942],[-122.41942099966674,55.23526756739413],[-122.4194517322023,55.235232571253775],[-122.41945215506522,55.23520567307003],[-122.41950154046627,55.235116271687666],[-122.4195008921577,55.23507925130107],[-122.41950211176689,55.235043405927726],[-122.4195182746971,55.235016960658974],[-122.41950216064133,55.23499855675035],[-122.41942527743954,55.23495373638216],[-122.41937838051751,55.23492659781213],[-122.41933068684294,55.234908406413076],[-122.41922152708536,55.23487162722857],[-122.41911157066409,55.234843795135546],[-122.41908078786462,55.23483506041268],[-122.41900151478399,55.23481708134381],[-122.41890767235661,55.23480765304406],[-122.41882966959871,55.23479755927723],[-122.4187819763251,55.23477936766814],[-122.41859434167901,55.234715661490945],[-122.4184850834924,55.23468000005952],[-122.41835981174363,55.23462481607852],[-122.4183298263076,55.23460713398805],[-122.4182510773017,55.23456113786548],[-122.41821912447297,55.234543399114145],[-122.41812650368517,55.234498124866576],[-122.41804882587971,55.2344622508307],[-122.4179853934947,55.23444360581664],[-122.41784385975755,55.23441598478359],[-122.41773390553416,55.234388151475144],[-122.41768658637803,55.234387910445385],[-122.41757690577862,55.23437914639414],[-122.41751464401231,55.23436950496208],[-122.41749970139757,55.234360104617664],[-122.41746695184052,55.23435131285005],[-122.41745280646599,55.23433296532377],[-122.4174358964032,55.234323508324884],[-122.417436320604,55.234296610149805],[-122.41743754202851,55.2342607647988],[-122.41747024299141,55.2342258257971],[-122.41748491215535,55.234216156749085],[-122.41750224634023,55.23419871556624],[-122.41754919219875,55.234181005667324],[-122.41762771715936,55.23416308366298],[-122.41772315210137,55.23415461857143],[-122.41777009781123,55.23413690858935],[-122.41788089917706,55.23411094551283],[-122.41791130792737,55.234101729534466],[-122.41792784476655,55.23409323547132],[-122.41795984770165,55.23406612512307],[-122.41800641992751,55.234030464054825],[-122.41803884655442,55.23397645551003],[-122.41807286724658,55.2339045525974],[-122.41808706320343,55.23387805087968],[-122.41810534411259,55.233805694863065],[-122.41810576786045,55.233778796686664],[-122.41810661535449,55.23372500033416],[-122.41809129952942,55.23369764906488],[-122.41806014453093,55.23367096309411],[-122.4179820951194,55.23361713802261],[-122.41785720057455,55.23357990453675],[-122.41769945767426,55.23353499761713],[-122.41760524544897,55.23350761733952],[-122.41751060920961,55.23350713516452],[-122.41744951903776,55.23350649752245],[-122.41730639448873,55.23349677023157],[-122.41716603471284,55.23347815225386],[-122.41708793530809,55.23346917579396],[-122.41704061723642,55.233468934518754],[-122.41699409647235,55.23345974605314],[-122.41694677841234,55.23345950474238],[-122.41691412937456,55.233449594433466],[-122.41688334811856,55.2334408591683],[-122.41675755810935,55.23341369014855],[-122.41669529803309,55.23340404830762],[-122.41664877742288,55.23339485971295],[-122.41653919943187,55.23338497635201],[-122.41635072500623,55.23337506314138],[-122.41627145602142,55.23335708233664],[-122.41613109721158,55.233338463192794],[-122.41598877110665,55.23331978722064],[-122.4159265113599,55.23331014499551],[-122.41569071957075,55.23329998906959],[-122.41561182323007,55.23329995884814],[-122.41556530298756,55.23329076984882],[-122.41551878276631,55.233281580832106],[-122.41545498128345,55.23324498352733],[-122.41537810593964,55.23320016066635],[-122.41536279216882,55.23317280906262],[-122.41533046964099,55.23313711856824],[-122.41533211850043,55.23307437507551],[-122.41533386706311,55.2330105131878],[-122.4153339740977,55.23292081485009],[-122.4153355694275,55.23290292052688],[-122.41535173423601,55.23287647580309],[-122.41538336584351,55.23283141511603],[-122.41544610362705,55.23276931027878],[-122.41549427183143,55.23271575582902],[-122.41554253960938,55.23266108296548],[-122.41558990995375,55.23261647564197],[-122.41565381688362,55.23256337454029],[-122.41570155922395,55.232536718176604],[-122.41574850393604,55.232519008958725],[-122.4158598270792,55.23246503112225],[-122.41593824975361,55.232448228581084],[-122.41601794192854,55.23243931143007],[-122.41609566668654,55.23243033755981],[-122.41614298353136,55.23243057919398],[-122.41642608719927,55.23244097578953],[-122.41647340405855,55.23244121729806],[-122.4164899405189,55.232432723426925],[-122.41652034831961,55.23242350778942],[-122.41655235087505,55.232396397806134],[-122.41660168716702,55.23235184675961],[-122.41660131453295,55.23233389576065],[-122.41666489905082,55.2322179939754],[-122.41669732601768,55.23216398578709],[-122.41673134757453,55.232092083250585],[-122.41674596841386,55.23203868352094],[-122.41673102684413,55.23202928308591],[-122.41666999095507,55.23198379589521],[-122.41662309935211,55.231956656293605],[-122.41660619048282,55.23194719918367],[-122.41657541044279,55.23193846384337],[-122.416355790284,55.231901864294905],[-122.41627742131307,55.231873817932524],[-122.41621426660448,55.23187424141508],[-122.41618278893169,55.23187333474847],[-122.41604243533777,55.23185471550672],[-122.41585279837716,55.23183579770898],[-122.4157597611884,55.231817419875],[-122.41571207283438,55.23179922709427],[-122.41563519996596,55.23175440439688],[-122.41554179090899,55.231718075399115],[-122.41547836401092,55.23169942911179],[-122.4154148374688,55.23168190118735],[-122.41532100319263,55.231672470187064],[-122.41511600065692,55.23167104882433],[-122.41500759736574,55.2316701679602],[-122.4149594836981,55.23167887305308],[-122.4148809623966,55.23169679337161],[-122.41486442589905,55.231705287028646],[-122.41481668399061,55.231731943069725],[-122.41469036624407,55.23182136845578],[-122.41453044877862,55.231955797497214],[-122.41449844521155,55.231982906959864],[-122.41446813701066,55.23199100370911],[-122.41443655955509,55.231991214995524],[-122.41424809217494,55.231981298603664],[-122.41421651472582,55.231981509834334],[-122.41415425747412,55.231971866724066],[-122.41410656966286,55.23195367332832],[-122.41406047775243,55.231917585608876],[-122.41404356950177,55.231908128150934],[-122.41402815738776,55.2318818947797],[-122.41399870211391,55.23183619509736],[-122.41399912858586,55.23180929693895],[-122.41399838564983,55.23177339492686],[-122.41401572029356,55.2317559542323],[-122.41403081583701,55.23171938743476],[-122.4140469810275,55.231692942882624],[-122.41409514980545,55.231639388978266],[-122.4141599547933,55.231576223100134],[-122.41427080613805,55.23150541407688],[-122.41430280947878,55.23147830467361],[-122.41431860278617,55.231433909082014],[-122.41431982690074,55.231398063769205],[-122.4142725659789,55.23135297227914],[-122.4142407171857,55.231334114117075],[-122.41419340164153,55.231333871760164],[-122.41394295291182,55.231333381184726],[-122.41383258323111,55.23133244259535],[-122.41375289276384,55.23134135834712],[-122.41369020994046,55.23135861316201],[-122.4136756406568,55.23136716336718],[-122.4136120599903,55.231394483686394],[-122.41359552334919,55.231402977174746],[-122.41354895025549,55.231438636586496],[-122.4135157771483,55.23145674193788],[-122.41350040974802,55.23147423927167],[-122.41348334648161,55.23151074929474],[-122.41346718099393,55.231537193773384],[-122.41346712539811,55.2315820429368],[-122.41348158364433,55.23166319108312],[-122.41347987637567,55.2317707837088],[-122.41346361102391,55.23179834658118],[-122.41343250468792,55.23181539022699],[-122.41336892314821,55.231842710422995],[-122.4133219781779,55.231860418743004],[-122.41325812511678,55.23186866948076],[-122.41311697475548,55.23185899408943],[-122.413022342447,55.231858508503684],[-122.4129758244621,55.231849318537975],[-122.41289772915313,55.231840339451246],[-122.41277284482692,55.231803100871396],[-122.41272595606273,55.23177595980272],[-122.41264871569949,55.231713184252094],[-122.41261596935628,55.2317043912105],[-122.41258529014965,55.231694536491275],[-122.41253760337634,55.231676342495085],[-122.41242756052263,55.2316496229002],[-122.41241262010612,55.23164022194721],[-122.41239767969655,55.23163082099259],[-122.41238273929397,55.231621420036056],[-122.41238316684374,55.23159452188361],[-122.4123985347757,55.23157702468763],[-122.41241353193553,55.231541576479145],[-122.41244596406275,55.231487569400734],[-122.41252693746544,55.23139796002737],[-122.41262205261012,55.23132669867437],[-122.41265405691937,55.2312995896952],[-122.41273337664839,55.23127272363751],[-122.41278032119214,55.23125501554024],[-122.41281259649745,55.23124697592243],[-122.41290648541387,55.23121155965037],[-122.41293769127638,55.23119339774353],[-122.41295512589988,55.231174838804264],[-122.41300169921446,55.231139179615305],[-122.413050239759,55.231103577125396],[-122.4131453532813,55.23103231537418],[-122.41320926092104,55.23097921553336],[-122.41320968791152,55.230952317379256],[-122.41322595309526,55.23092475454185],[-122.4132105418908,55.23089852107134],[-122.41319523046896,55.230871169205685],[-122.41314834250569,55.23084402829791],[-122.41308534516611,55.2307984826394],[-122.41300730797911,55.23074465446141],[-122.41296158943446,55.23072651734593],[-122.41288162878499,55.23071636313888],[-122.41263118391417,55.23071586992523],[-122.41245893184269,55.23072323722531],[-122.41242655710326,55.23073239514391],[-122.41223809611358,55.2307224757109],[-122.41211189001609,55.23072220015431],[-122.41208121168161,55.23071234531147],[-122.41204926462834,55.23069460498226],[-122.41200317600472,55.23065851650461],[-122.41197165684291,55.23061387800624],[-122.41195671691737,55.23060447699935],[-122.41194103592058,55.230559173969525],[-122.41192615333426,55.23050492379957],[-122.41191191204051,55.23048769404147],[-122.41192743686166,55.2304242293537],[-122.41195976894515,55.23037134079853],[-122.41197768872479,55.23028103469013],[-122.41199385468663,55.23025459040729],[-122.41205791956753,55.23015552360966],[-122.41209035105499,55.23010151662931],[-122.41210651687067,55.230075072332184],[-122.41218674690104,55.22994956117068],[-122.41220174364095,55.22991411299201],[-122.41220296959472,55.229878267703924],[-122.41222009031368,55.22979690870341],[-122.41222051795273,55.22977001055509],[-122.41218936988759,55.229743323123394],[-122.41211223405206,55.22967942885684],[-122.4120496102867,55.22965183368712],[-122.41201883299125,55.229643097222],[-122.41187689236483,55.229642367564814],[-122.41176562917705,55.22965149267307],[-122.4117194844616,55.22966025324953],[-122.41165563456269,55.22966850316433],[-122.4116390982179,55.229676996391795],[-122.41154601020993,55.22970346456905],[-122.41146589431916,55.22973927700209],[-122.4114343186146,55.22973948752723],[-122.4114040114868,55.22974758352933],[-122.41132512211347,55.22974755059205],[-122.41127663971285,55.229738303249455],[-122.41118403779376,55.22969302385483],[-122.41115326065473,55.22968428717575],[-122.41112178480884,55.22968337923004],[-122.41090095481098,55.22968261534432],[-122.41085364122856,55.22968237171848],[-122.41080749627918,55.22969113195699],[-122.41079085991969,55.229700743463155],[-122.41074391631356,55.229718450808406],[-122.41064806173428,55.22975380869185],[-122.41056884343962,55.22977955502706],[-122.41050526317231,55.22980687375685],[-122.4104268433768,55.22982367287333],[-122.4103328556766,55.2298602056631],[-122.41025363697088,55.229885951798046],[-122.41017511707223,55.22990386914694],[-122.4101278032341,55.229903625245306],[-122.410079690623,55.2299123284517],[-122.41001663877597,55.22991163040024],[-122.40995551383763,55.22986725831648],[-122.40992409741754,55.22982150091189],[-122.40989215202227,55.22980376003035],[-122.40984649557858,55.22974077261658],[-122.4098303880583,55.22972236746387],[-122.40978510137248,55.2296773310435],[-122.40969053403602,55.22963199377044],[-122.40964364988,55.229604851545524],[-122.40956635855142,55.22958692324808],[-122.40953488281748,55.22958601490131],[-122.4093464279089,55.22957609109277],[-122.40920448756735,55.229575358389376],[-122.40917211301078,55.229584515461],[-122.40910980022703,55.22961971898547],[-122.4090615273582,55.22967438934327],[-122.40898181781067,55.229771881961575],[-122.4089498122428,55.22979898999389],[-122.40891700760129,55.22983504513652],[-122.4088850019395,55.22986215315226],[-122.40880652057271,55.229923800404194],[-122.4087753138304,55.22994196127417],[-122.40874293888125,55.22995111823449],[-122.40866414899736,55.229949965221806],[-122.40861843331287,55.22993182651274],[-122.4085856892997,55.22992303241252],[-122.4085557116614,55.22990534797494],[-122.4084777821558,55.229850398572516],[-122.40843016063121,55.22978735385061],[-122.40841592108809,55.22977012369359],[-122.4083994452586,55.229733767335745],[-122.40841614342494,55.22967930699407],[-122.40841657360511,55.229652408859046],[-122.4084027643045,55.229608280565756],[-122.40838745664102,55.2295809281116],[-122.40834057342329,55.22955378539615],[-122.40829209194187,55.22954453689164],[-122.40824557771178,55.22953534516052],[-122.40807296108635,55.22952475537294],[-122.40804255354172,55.22953396894585],[-122.40797817271363,55.22957023349745],[-122.40791505965878,55.22961438353633],[-122.40789889127407,55.229640827288364],[-122.40788342221812,55.22965944231555],[-122.40786565527166,55.22970378028671],[-122.40786559343611,55.229748629441616],[-122.40784754095475,55.229928633265196],[-122.40783057312487,55.22996402412058],[-122.40781590319146,55.22997369202826],[-122.40779856662873,55.22999113185737],[-122.40778399658848,55.229999681372455],[-122.40773588335573,55.23000838367325],[-122.40768777010217,55.230017085955495],[-122.4076561941599,55.2300172955226],[-122.40756236558356,55.23000785867721],[-122.40750011297965,55.22999821224166],[-122.40746816851266,55.22998047073808],[-122.40742128544952,55.22995332767576],[-122.40737600119974,55.22990829037863],[-122.40735989474223,55.22988988490611],[-122.40733034857546,55.22984530204186],[-122.40732998009993,55.22982735101857],[-122.40729973454668,55.22979059686697],[-122.40725285181834,55.22976345374152],[-122.40715748771267,55.22972706165226],[-122.40709593514416,55.22970958629616],[-122.40706525880992,55.22969973021835],[-122.40698636953411,55.229699694532385],[-122.40673486328038,55.22968906715359],[-122.40660866046161,55.229688786019615],[-122.40651280232012,55.22972414071949],[-122.40648239426767,55.229733353911584],[-122.40641971083197,55.229750605064524],[-122.40637239719685,55.22975035973602],[-122.4062785695439,55.22974092192355],[-122.40623008831092,55.229731672616104],[-122.40616816818196,55.22969624577493],[-122.40609067407541,55.22961439675229],[-122.40607536798099,55.22958704401387],[-122.40607659938128,55.22955119878714],[-122.40607746286554,55.22949740253382],[-122.40607789460681,55.22947050440729],[-122.40610953392037,55.22942544608742],[-122.40612607132869,55.22941695359448],[-122.40626813828598,55.22932799150136],[-122.40631551498626,55.22928338771683],[-122.40642690526803,55.22918456917367],[-122.40646007969126,55.22916646571384],[-122.40645971161011,55.229148514688795],[-122.40647428162353,55.22913996532927],[-122.40647471309578,55.22911306720207],[-122.4064943070915,55.2289600185351],[-122.40647853293989,55.22891583321068],[-122.40646402640472,55.22887953341915],[-122.40644872033602,55.22885218072805],[-122.40643251477984,55.22883489352468],[-122.40641720874952,55.228807540829806],[-122.40637032776152,55.2287803973741],[-122.40626242767934,55.22870776162036],[-122.40623048478223,55.22869001980096],[-122.4061533604258,55.22862612184821],[-122.40605843175376,55.228562830795056],[-122.4059815758189,55.22851800214932],[-122.40587207778185,55.22846326025617],[-122.4058255653541,55.22845406762184],[-122.40576134839763,55.22844436348763],[-122.40568442875579,55.22844438380827],[-122.40563631692837,55.228453085296856],[-122.40558857276628,55.2284797377936],[-122.40549381954145,55.228568944786296],[-122.4054763826063,55.228587502677314],[-122.40546058066228,55.22863189713793],[-122.40542844452965,55.22874870256339],[-122.40541110746007,55.228766142058504],[-122.40537866808593,55.22882014729386],[-122.40534666084802,55.22884725439821],[-122.40530008340339,55.228882910718085],[-122.40525153868161,55.22891851018093],[-122.40518879117013,55.22898060986425],[-122.40515641617836,55.22898976589143],[-122.40512600837023,55.22899897875179],[-122.40509373333244,55.22900701637601],[-122.40504632059523,55.22900788893022],[-122.4048886447484,55.22900669656356],[-122.40477828166034,55.229005749949515],[-122.40474830637832,55.228988064596585],[-122.40471636392618,55.228970322388335],[-122.4046541790224,55.22891582538019],[-122.40460729909732,55.228888681260464],[-122.40459199428702,55.228861328341125],[-122.4045624519415,55.228816744823476],[-122.40456288468799,55.22878984670355],[-122.40457928591188,55.22867258670046],[-122.40458051861668,55.228636741490845],[-122.40459562156252,55.22860017584553],[-122.40464416648052,55.22856457663916],[-122.40470888135725,55.228502534080356],[-122.40474088875057,55.22847542714065],[-122.40477092892978,55.22844826334562],[-122.40483441095421,55.22842206593299],[-122.40486678556255,55.22841290998983],[-122.40499214954463,55.22837840921923],[-122.405024524082,55.22836925323507],[-122.40505573129731,55.228351093307246],[-122.40510267581102,55.2283333881081],[-122.40511921298308,55.22832489574945],[-122.40513548264555,55.22829733397432],[-122.40516788678505,55.22819959804252],[-122.40520192558785,55.22812769867746],[-122.40521739529532,55.228109083985444],[-122.40520199038916,55.22808284952929],[-122.40517174809018,55.228046094865455],[-122.40507768711683,55.227929006826514],[-122.40504697762604,55.227875419491966],[-122.40497108904012,55.22777567559867],[-122.40495498453586,55.227757269817936],[-122.40493957993537,55.227731035329995],[-122.40490853826115,55.22770322769472],[-122.40486165957695,55.22767608367315],[-122.40484545517596,55.22765879626475],[-122.40481478095593,55.22764893963405],[-122.40475243267012,55.22764041021278],[-122.40459556213698,55.22763027038491],[-122.404532881168,55.227647520585386],[-122.40443782604848,55.227673926593845],[-122.40439088201147,55.22769163154154],[-122.40437344494785,55.22771018927689],[-122.40434143791562,55.22773729612066],[-122.40429362793225,55.22780879726608],[-122.40427745789356,55.22783524054446],[-122.4042466178091,55.227871351306476],[-122.40423008063928,55.2278798435489],[-122.40419850635584,55.22788005223914],[-122.40396274934183,55.22786987411156],[-122.40391543793264,55.227869627849515],[-122.40388466376592,55.227860889375144],[-122.40385282260371,55.227842028561184],[-122.4038284499668,55.22782786873004],[-122.39999950948803,55.22959975902007],[-122.37927491644787,55.2391864524701],[-122.3791348566317,55.23916443652294],[-122.37891129580618,55.239127656418006],[-122.3787468657621,55.23909147531048],[-122.37859312747175,55.239024208777494],[-122.37839271725912,55.23892755131569],[-122.37826405577279,55.23886662063613],[-122.3781938193361,55.238814118045156],[-122.3781154577667,55.23874231685601],[-122.37807509175335,55.2387086243399],[-122.37803492732588,55.238672695079586],[-122.37780576423131,55.23858865528604],[-122.37737847675264,55.238492119760956],[-122.37701914631688,55.23836392227123],[-122.37685788944098,55.23822691398243],[-122.37678972004888,55.23812961872743],[-122.37671373309635,55.238053400490884],[-122.37664208895576,55.238016554131605],[-122.37661474416595,55.2380135153172],[-122.37648175387307,55.23800067247199],[-122.37614958094163,55.237965209645786],[-122.37584293526349,55.23790918467443],[-122.3757608429263,55.23779129987539],[-122.3757272316932,55.23763894543331],[-122.37555882354488,55.23758133929246],[-122.37533775197059,55.2376264798616],[-122.37517136879309,55.23767769831899],[-122.37502940051169,55.23767692665954],[-122.37485902562653,55.23761926225517],[-122.37465676664786,55.23756515390604],[-122.3744141995154,55.23754238854228],[-122.37416235027888,55.23753505045749],[-122.37381257598307,55.23749794705893],[-122.37339333155906,55.237421815069936],[-122.37317079457542,55.23737384104818],[-122.37313805225752,55.237365037623114],[-122.37302771734142,55.237341638289145],[-122.37272446096556,55.23727000593024],[-122.37242988317074,55.23718965537831],[-122.37232373680867,55.23714170883707],[-122.37231500911606,55.23712912006767],[-122.37229725100322,55.2371072976097],[-122.37221925681874,55.23700971305992],[-122.37198189333462,55.236863751186824],[-122.37166174208743,55.23678265307001],[-122.37146080230893,55.236757731643415],[-122.37136600838349,55.23673702654538],[-122.37132529592465,55.23672911150417],[-122.37126283973276,55.23672168366923],[-122.37112632414875,55.23670424691368],[-122.37099011153293,55.23668345492918],[-122.37081036223074,55.23664233086364],[-122.37056750240932,55.23657918229532],[-122.37034245196647,55.23651543141579],[-122.37016194823184,55.23646082871288],[-122.370023417533,55.23642202713795],[-122.36984720148116,55.236385489911335],[-122.36964157412554,55.236346973047425],[-122.36949053235472,55.23631565497698],[-122.36927385622114,55.23629027078529],[-122.36896501076916,55.236258832771114],[-122.36881159831809,55.23623192989705],[-122.36880650389281,55.23622281078717],[-122.36879581000052,55.23621016435663],[-122.36863195883325,55.236145953539186],[-122.36832483726808,55.23605177106325],[-122.36811473012507,55.23595369161315],[-122.36799871210457,55.23584041725082],[-122.36794060230677,55.23578489838676],[-122.36790579391584,55.23577715451538],[-122.36783183808032,55.235766025310575],[-122.367745316887,55.235784804542945],[-122.36754851008082,55.235845216537406],[-122.36727880478705,55.235904621337156],[-122.36710581484449,55.23591975439998],[-122.36702318057374,55.235917341798164],[-122.36698983443091,55.235915246896816],[-122.36691900506925,55.235913178889824],[-122.36677174711822,55.23590551534348],[-122.36670101885213,55.23590232885618],[-122.36666762555161,55.23587892765121],[-122.36660694363975,55.235830060852805],[-122.36657572007131,55.23580448036108],[-122.36653618207654,55.23571810647386],[-122.36636201487458,55.235528004826506],[-122.36599164887348,55.23539160233579],[-122.36557122802856,55.23532886429611],[-122.36523373638241,55.235308914405195],[-122.36495606889517,55.23532547185092],[-122.36479266939352,55.23532181957338],[-122.36472572993138,55.23529855905946],[-122.36468739216922,55.235286225910784],[-122.3645615305419,55.23526012252662],[-122.36422157620778,55.2352019733942],[-122.36381927164449,55.235135273413356],[-122.36351761111231,55.23506814955871],[-122.36334842193905,55.235019473747876],[-122.36330221513411,55.23500691016637],[-122.36322619339404,55.23499683907829],[-122.36301139457731,55.23497261985075],[-122.3626729064561,55.234920115765],[-122.3622465037506,55.234814581532675],[-122.36186732126752,55.23471042645014],[-122.36158784702539,55.23470337593888],[-122.36137131770322,55.23474189665362],[-122.36128716797417,55.23475625552348],[-122.36120273979974,55.23468650781815],[-122.36106510339862,55.234572594115605],[-122.3609970667485,55.23451790268006],[-122.36089806320305,55.234609197384515],[-122.36069601869632,55.23479278982347],[-122.36059701379159,55.234884084290435],[-122.36048161402383,55.23480782361467],[-122.3601824188885,55.23462638968396],[-122.35985728881171,55.2344699864217],[-122.35964945259317,55.234303558205],[-122.35956497018375,55.2341037353882],[-122.35952368405299,55.23401506502404],[-122.3593948497196,55.23400008236142],[-122.35902418757189,55.233954475784486],[-122.35856777219169,55.23389738794485],[-122.35831610849084,55.233866474903],[-122.35809375309384,55.2338386618234],[-122.35770362287812,55.23379023877072],[-122.3573486021581,55.23374620628139],[-122.35721200137435,55.233729872626576],[-122.35713795093216,55.23371985542155],[-122.3568943615447,55.233686933209015],[-122.35650382886362,55.23364297979066],[-122.35612483869347,55.23362403210244],[-122.35585182333809,55.23363285604672],[-122.35568605871201,55.233633607590335],[-122.35548924074308,55.23358523273506],[-122.35519186373149,55.23347111815035],[-122.3549500808655,55.23335302489615],[-122.3548732727356,55.2333081647011],[-122.35487055473395,55.2332946292731],[-122.35486481456758,55.23327091345623],[-122.3548600278466,55.2332584387388],[-122.35481362293234,55.23324810870228],[-122.35471158487037,55.233220450309936],[-122.35462467722532,55.23319996302753],[-122.35453987916054,55.23319972119636],[-122.35441027877184,55.23321498636444],[-122.3543184632298,55.233226873260385],[-122.35429455102067,55.23322953656501],[-122.35426670414239,55.23323208457494],[-122.35420677148574,55.23324042032179],[-122.35414249849883,55.233253114129134],[-122.35408952242243,55.2332717455198],[-122.3540543537289,55.2332897773793],[-122.3540316989114,55.23330032670216],[-122.35398851893487,55.233297940075815],[-122.3538534827009,55.233286133769916],[-122.35368137146327,55.23326987685489],[-122.3535004379739,55.233242147963495],[-122.35318836358937,55.23318142088459],[-122.35282968300919,55.23311259893779],[-122.3526432546466,55.23308022241892],[-122.35254196838147,55.233066040054936],[-122.35242413196097,55.2330603429714],[-122.35237081135358,55.233061022446165],[-122.35231966098573,55.23305952288527],[-122.35221155975975,55.23305523232374],[-122.35216040940519,55.23305373269739],[-122.35212299081941,55.23303133058544],[-122.35205032402475,55.23298434731987],[-122.35201300703275,55.232960826830904],[-122.35198173290716,55.232957667248144],[-122.35184473108829,55.232945801083225],[-122.35160800518031,55.232924282704836],[-122.35134353417469,55.232904192889144],[-122.3511220398079,55.232888726833615],[-122.35102190990918,55.23288354767477],[-122.35093697218039,55.232863115515684],[-122.35078459974973,55.2328250070117],[-122.3507113646032,55.23280603924164],[-122.35066282966855,55.232819192861484],[-122.35054361176502,55.23285045701796],[-122.35044674466978,55.23287452742255],[-122.35042252787787,55.23288054501186],[-122.35035709907207,55.23288423241732],[-122.35022810721763,55.23289278317654],[-122.35016454416561,55.23289764653219],[-122.35014174859555,55.2328880072713],[-122.35010656474383,55.2328410010182],[-122.35010438067329,55.232778142995414],[-122.35011282059637,55.23275035756535],[-122.35006018627206,55.232786938432],[-122.3499102151815,55.23287448719384],[-122.34974697990006,55.23295604005007],[-122.34957600149298,55.23299251269504],[-122.34939151814979,55.233003919806954],[-122.3493103505296,55.233007144884816],[-122.34925133108537,55.233005413169906],[-122.3490351296017,55.23299682662607],[-122.34878341501465,55.23298831888298],[-122.34855096740168,55.23298486135116],[-122.34815926913322,55.232975608080935],[-122.34769695103981,55.232962037959034],[-122.34737512498957,55.23294362000738],[-122.34710400599184,55.23290987008888],[-122.34684126472617,55.2328707589309],[-122.34673261989036,55.23285074909338],[-122.34671450769882,55.23285470257421],[-122.34664952164734,55.23287522089198],[-122.34658412905478,55.232900212534474],[-122.34656137087907,55.232911878837506],[-122.34652823153382,55.23290754177884],[-122.3464598839371,55.23289992820621],[-122.34637837497716,55.23288520017223],[-122.34627447795758,55.232856358758596],[-122.34612604457023,55.2328183600972],[-122.34590129335515,55.23277363461469],[-122.34565625981477,55.23273504095063],[-122.3455116963815,55.232719581677635],[-122.34539138641948,55.23271941185002],[-122.34511505021506,55.232721386653004],[-122.3447395359044,55.23272941780869],[-122.34449800084282,55.23273914158641],[-122.34442656816113,55.23274377081554],[-122.34438878283972,55.232747145951436],[-122.34426691223601,55.23274244388511],[-122.34409066923548,55.23272829478532],[-122.3440084496616,55.23272139356341],[-122.34392768894848,55.23272014178279],[-122.34372583633014,55.23268393443514],[-122.34356492213664,55.23260968343555],[-122.34349233288613,55.232540270621286],[-122.34341031430831,55.2324660953345],[-122.34329844695364,55.23237310151402],[-122.34316928152933,55.232275113864226],[-122.3430714242406,55.232201594128504],[-122.34300643513647,55.23215707354974],[-122.34303580541757,55.232072716013896],[-122.34318608852669,55.23185174653975],[-122.34329152760652,55.23155993673281],[-122.34319031032744,55.2313932482277],[-122.34296051701428,55.23136070350628],[-122.34283027328085,55.2313613604222],[-122.34266855394425,55.23136109195339],[-122.3423390101387,55.23136261755749],[-122.34213194290561,55.231362136549336],[-122.34210233280433,55.23136238733034],[-122.34182519109835,55.23124322753916],[-122.34126697819907,55.23100479040885],[-122.34098984142912,55.23088562876167],[-122.34097325610117,55.23087280638357],[-122.34096236883808,55.23086239423885],[-122.34084725486974,55.23080518494286],[-122.34062574429508,55.23070335701582],[-122.34051799109965,55.23065197053096],[-122.34036153424469,55.23057223945524],[-122.33976260661781,55.23030456420401],[-122.33901757584385,55.23001688805178],[-122.33840314343678,55.23002796066839],[-122.33807177139767,55.23011464195283],[-122.33697968380324,55.22958798584919],[-122.32885550801842,55.22628053988178],[-122.32726597325698,55.22537243307339],[-122.32034731545484,55.222701014049335],[-122.31345165746761,55.22064885062042],[-122.30785019863218,55.221003010784315],[-122.30455289444537,55.221003769650686],[-122.29985045951125,55.21964392842617],[-122.2947442518907,55.21821804642786],[-122.28905493387357,55.2176447295311],[-122.2864417677421,55.217414224487875],[-122.28164096314723,55.21559320635183],[-122.27963728401258,55.214402933877416],[-122.27754017169603,55.21251905951137],[-122.27314517977358,55.21058423759465],[-122.26755070504659,55.21036261197629],[-122.26545297493381,55.210362425779984],[-122.26265096882085,55.20979379973975],[-122.2605450565275,55.207676094358554],[-122.25914345546184,55.20443123287404],[-122.25753166092996,55.201583724149664],[-122.2533287591398,55.1989631405145],[-122.25024572803035,55.1968516600456],[-122.24763648660303,55.194566001951685],[-122.24812716522199,55.192346980785786],[-122.25702052691035,55.19114384919376],[-122.26781453240288,55.19085841167136],[-122.2740104087208,55.19017411967144],[-122.27561312412016,55.190060678991195],[-122.28229322645977,55.186178879073275],[-122.28348109686944,55.18492258846954],[-122.28349676552212,55.184582159981794],[-122.28577744358074,55.18360971569348],[-122.28777964560868,55.181041056651296],[-122.28757980129068,55.17910633265735],[-122.28917150385635,55.17688423295897],[-122.29225565201253,55.17385443074538],[-122.29324764912909,55.170439204756846],[-122.28994384194274,55.16542451224556],[-122.2847352768405,55.16159970559494],[-122.27674982990442,55.1566418206245],[-122.2733481006092,55.15408172076991],[-122.26984301936426,55.149580663338305],[-122.26903709105488,55.14569889445259],[-122.2692389419817,55.14079779495481],[-122.2685275240783,55.136577957899824],[-122.26482938357252,55.13248356539676],[-122.25485127005123,55.13042451447615],[-122.2442765646871,55.131737695935314],[-122.23230654333257,55.13887487481714],[-122.22702842829386,55.141603319933],[-122.2213434588732,55.14160982456676],[-122.212763823676,55.14091773023267],[-122.20867629984947,55.14001243453844],[-122.19629949632353,55.13835084845726],[-122.1892200206718,55.13612405861157],[-122.18312341863195,55.133334945882666],[-122.17714050480683,55.12968773028849],[-122.17455339674865,55.126261564647],[-122.17575438696525,55.12272785732666],[-122.17975049902591,55.1194237939692],[-122.17954253685124,55.1169681296341],[-122.17555325616748,55.114063989332806],[-122.172167926402,55.111268060187165],[-122.17037625748564,55.1071037123344],[-122.17038048854245,55.10208865802475],[-122.16689688588806,55.09769254102423],[-122.15942954436599,55.09616056538006],[-122.15484590668757,55.09523795446199],[-122.15433784785549,55.0934726930362],[-122.15424904912307,55.090114479516245],[-122.15135050882624,55.091648430687506],[-122.14687514819754,55.0942099495762],[-122.14049002031805,55.09403826351683],[-122.13571022777333,55.09369199480499],[-122.13221356165157,55.097844644528976],[-122.13201281988056,55.102234648622904],[-122.13229918331245,55.1054824619406],[-122.12662062192403,55.106453651186094],[-122.12472642314162,55.1053716660036],[-122.12452508810884,55.10468350055899],[-122.12214400979009,55.10228530914192],[-122.11546692252733,55.10153800035427],[-122.10927502261372,55.101307988472726],[-122.10628926067467,55.10062210823206],[-122.10350152781444,55.09902721469888],[-122.10280439661297,55.09777611767254],[-122.10451528850253,55.095371509025064],[-122.1016316952294,55.09200602841743],[-122.09585706883821,55.08926722542395],[-122.08948975549963,55.08583651290075],[-122.08520360025273,55.08333253205615],[-122.081928062993,55.08030405598737],[-122.07685395954876,55.07750566902031],[-122.07078267258409,55.07510611243205],[-122.06939818963134,55.07447002700989],[-122.06611666915222,55.07184464315896],[-122.06322913471139,55.069052229170346],[-122.05687664632902,55.067620992055325],[-122.0511877585134,55.06664124969721],[-122.04642036854615,55.06395894341528],[-122.0443295688442,55.06235788966575],[-122.04005923763354,55.06086659216898],[-122.03637593204486,55.059322141877374],[-122.03460290441375,55.056412093150705],[-122.03281457996671,55.05430008765689],[-122.02904465616616,55.05236679162121],[-122.02655527399426,55.05115638777875],[-122.02398388619115,55.049503632998935],[-122.02399262344197,55.04574434365227],[-122.02221570054095,55.04368635519572],[-122.02132257519841,55.041907975693526],[-122.0219281487011,55.039747059385576],[-122.02164268414046,55.03770107566211],[-122.01646739726199,55.03506714664061],[-122.01448887532254,55.033469117407996],[-122.01270344757727,55.03198494526494],[-122.01042350777658,55.03089755482051],[-122.00824570614036,55.03020821702252],[-122.00545608381427,55.02871845702739],[-122.00247793044244,55.027231511362764],[-122.00012430408123,55.02483149208482],[-121.99764547136654,55.024966702402914],[-121.99407559075841,55.02533574117672],[-121.99139441746695,55.02529379247761],[-121.98549065023204,55.02338858744892],[-121.97971203717455,55.02291386171061],[-121.97723044223436,55.022761434510016],[-121.97458603955545,55.020145039435256],[-121.97197001205122,55.018507567466],[-121.96995838261168,55.01726659059726],[-121.96627718130982,55.01277672417604],[-121.96397406269963,55.01147229213303],[-121.95977376506603,55.01030327879195],[-121.95339212795064,55.008973049222526],[-121.94909803164143,55.007962105605216],[-121.94597649101686,55.006217737062364],[-121.94406614770561,55.0044501888972],[-121.94125348619265,55.002760680066196],[-121.93892330925357,55.00111386261534],[-121.93589730856633,55.000458121020365],[-121.93584229283,54.9989757099938],[-121.9383975364868,54.99791106443989],[-121.94105330029659,54.9966253368456],[-121.94005348735932,54.99298524267973],[-121.93291599524797,54.9903099416838],[-121.92806317330452,54.987547939363075],[-121.92137332520701,54.98247279724573],[-121.9196032048022,54.97980310487155],[-121.92004373538013,54.974191279967],[-121.91057397002331,54.96639439413542],[-121.90225397459834,54.96338183599793],[-121.9009280523478,54.962539206854636],[-121.89713515847251,54.957881636132406],[-121.88994911895232,54.95623391992058],[-121.87948186376615,54.95479044968843],[-121.87499275807316,54.95438039737645],[-121.87269364691694,54.9537113344802],[-121.86953286653412,54.94704581199407],[-121.86643614914972,54.94267962778643],[-121.86260895273358,54.93687996915209],[-121.85229410460522,54.93354559521079],[-121.84746465438553,54.93113079119905],[-121.8459470652679,54.92988619497586],[-121.84798334185186,54.92454336533713],[-121.85007363661022,54.92080868069984],[-121.85773892226744,54.91478439833875],[-121.86573141227952,54.91305121979415],[-121.87092439089443,54.91065855671425],[-121.8703730644603,54.90500453226971],[-121.87028664581877,54.90231845912393],[-121.86525671850234,54.8994398804018],[-121.8539528446681,54.89943741414065],[-121.84061416748173,54.90110629529552],[-121.83661428482142,54.89965218503898],[-121.84166221736606,54.89577513524764],[-121.85718345803645,54.89019508879806],[-121.85777063098097,54.88996353917712],[-121.86863727342985,54.885168029439356],[-121.8732991198984,54.88180636833463],[-121.87261137232211,54.87872327221034],[-121.87056270734466,54.87594457666683],[-121.87183280681542,54.87192195501492],[-121.86995833704228,54.86851192426245],[-121.86418426325606,54.867142760007155],[-121.85587987956931,54.86436012364985],[-121.84965797711227,54.864931521419145],[-121.84689405792903,54.86518841470705],[-121.83928266997732,54.86222155257306],[-121.83144538639418,54.86161571892986],[-121.82655375853284,54.860507889249604],[-121.81911858342869,54.859950767893665],[-121.80815314014039,54.85753214817295],[-121.80295098494274,54.85535380573774],[-121.8016355694716,54.85416027715263],[-121.79892801293974,54.84904233608228],[-121.79570106885184,54.842605294846244],[-121.79222577615211,54.83857377736343],[-121.78508880611336,54.838347720465826],[-121.78011604646771,54.84091469799349],[-121.77771289572584,54.84808379847303],[-121.77432425361347,54.85074077050117],[-121.76997864696266,54.85147117244962],[-121.76242721669244,54.85399384875509],[-121.75944703885364,54.85796583888108],[-121.75491677905869,54.858806063316266],[-121.74991379941643,54.86102091543892],[-121.74498174970944,54.86598432204006],[-121.73939545115823,54.86837610569539],[-121.73756941623574,54.870565665837304],[-121.73818022101545,54.871304772592616],[-121.74014951317744,54.87460378015734],[-121.74411687391168,54.87914742950481],[-121.7436006204241,54.882127195001516],[-121.73954817028591,54.882561633345134],[-121.73516526238808,54.88197035223367],[-121.72961488306196,54.88161670617527],[-121.72845237848814,54.88299447804662],[-121.72892450738286,54.88579305707134],[-121.72807912255675,54.88757670940906],[-121.72445979391368,54.88582681603909],[-121.7192789538707,54.884785482826516],[-121.71618199960972,54.88372658450288],[-121.71207633362746,54.881699124606754],[-121.70523275115126,54.88158659863891],[-121.6973774560664,54.88038829854456],[-121.69367033283324,54.878598469127475],[-121.6880961376177,54.873323666234334],[-121.68451663560765,54.86843254638076],[-121.67428358295555,54.86256299004557],[-121.67228275702064,54.861667013332664],[-121.66677289396398,54.85861922541909],[-121.66009212796669,54.85701985437377],[-121.64758270885727,54.855223334421055],[-121.64470790477196,54.85096606054478],[-121.64392933535899,54.846854642217345],[-121.64023978101736,54.84538675816523],[-121.62709206383103,54.84171640937676],[-121.61792650125426,54.83927239057166],[-121.61221707479545,54.83581987281073],[-121.61162413283152,54.83566410869363],[-121.6074062023638,54.83259657923633],[-121.60043816255829,54.831109155897806],[-121.59934207382057,54.83083661596226],[-121.593984671899,54.83007058030975],[-121.589185836769,54.82776248475538],[-121.58329854157728,54.82540616618994],[-121.57794218129047,54.82435219820211],[-121.57316420121276,54.823013595795004],[-121.56741317647885,54.82242967269378],[-121.56533947578777,54.82238192238016],[-121.55917888121866,54.82197135551893],[-121.55529332363035,54.82034106989202],[-121.551104872828,54.81819702923392],[-121.5489907441215,54.81666643562093],[-121.54881977213465,54.81266577380216],[-121.54673173766699,54.80719544114422],[-121.54549430168247,54.805086087444124],[-121.53980731361732,54.801810156642865],[-121.53036454795651,54.799878675265205],[-121.52303576397922,54.79946860598798],[-121.5227879714278,54.796614014918575],[-121.52091036665733,54.79182398526183],[-121.51964655277438,54.78713705751945],[-121.52075950803562,54.78341639598239],[-121.52306998660187,54.780304855435865],[-121.52402134658654,54.77847235580581],[-121.52468481601221,54.77670118743832],[-121.52589819961516,54.772912346512726],[-121.52563521136832,54.76976995412321],[-121.52264907993091,54.768817448179384],[-121.51786469337318,54.7663361282091],[-121.5144878721081,54.76567437010491],[-121.51071779855816,54.76489941180353],[-121.50634610174063,54.76321364632667],[-121.50214206632155,54.760438681610665],[-121.4995404648251,54.75827879640522],[-121.49525299532108,54.75682907463329],[-121.49335252793433,54.755529578976436],[-121.49459782456611,54.752882185108646],[-121.49639088236414,54.74880959124083],[-121.49641816162175,54.74504032571313],[-121.49445547571786,54.740363254121334],[-121.49033715655509,54.73628028426734],[-121.48555328210581,54.73356410862824],[-121.48015644503126,54.73005314978585],[-121.47804766655665,54.728117296413224],[-121.47523333131099,54.725796326718324],[-121.4764807698495,54.7235531437866],[-121.48017237276535,54.72050223984713],[-121.47981527253255,54.71655717913536],[-121.47843304578328,54.71159587176232],[-121.4805324255019,54.70757069217826],[-121.48323183531343,54.70361245618492],[-121.48650239621102,54.69913656714204],[-121.48829455413849,54.69477683429717],[-121.49275423047403,54.691089619230375],[-121.49959794348128,54.687956531466014],[-121.50698291539928,54.68739232950594],[-121.5149488949968,54.686076932065866],[-121.51786966245103,54.68388562714479],[-121.51699565968698,54.679087062085216],[-121.51687192122773,54.678229752426944],[-121.51805779022426,54.67325510545219],[-121.52138287274468,54.671626105212695],[-121.5213176067331,54.66853574218635],[-121.5232576708849,54.66703565544397],[-121.52243637673254,54.665156476785825],[-121.52280517095498,54.66350027909894],[-121.5245215733218,54.66091481577892],[-121.52269519121624,54.65840648425422],[-121.5223055633546,54.65841020960503],[-121.51910434947092,54.65580671352806],[-121.51994902944168,54.6535036361802],[-121.52574995144299,54.65284474002112],[-121.52254678401616,54.65040283340931],[-121.51866985192058,54.648429919186306],[-121.51330782629968,54.64651921669597],[-121.50744788495578,54.643764144661105],[-121.50734259465275,54.64358972572807],[-121.50594866626746,54.642398566155094],[-121.50552073250245,54.6411979315075],[-121.50609830982364,54.640052121847326],[-121.50292824516123,54.639163831486954],[-121.50004941680035,54.63803479538611],[-121.49990986116197,54.63563284109226],[-121.49867371559897,54.633298330386154],[-121.49490575304053,54.6314901477751],[-121.49073591893337,54.629801702082354],[-121.48962314016507,54.628046140204056],[-121.49096604837085,54.62603086579769],[-121.49467934355945,54.62452469280353],[-121.49574859762878,54.623998462967016],[-121.494234627266,54.62235386928851],[-121.49158459911251,54.617336987529974],[-121.48865876533446,54.61341403431356],[-121.4832863907362,54.610244622918884],[-121.47874364336323,54.60969995777985],[-121.470689489021,54.610389826985624],[-121.46625468138951,54.61041424881777],[-121.46045256765846,54.610567379437384],[-121.45722047048355,54.6111028695314],[-121.45395227505747,54.610146707178814],[-121.45253695228217,54.60861290462058],[-121.45484517721961,54.60534109174046],[-121.45676827716976,54.60287189028534],[-121.453863152934,54.59991825541268],[-121.45026657813297,54.59633735839167],[-121.4487418429759,54.59411714120314],[-121.44804049392187,54.59315741841988],[-121.44516234971535,54.59150624892358],[-121.441469478567,54.58907953749869],[-121.44122114805612,54.585874326340466],[-121.44342413469509,54.58242824198346],[-121.44417420076513,54.58002329012981],[-121.44214565827073,54.576895427518586],[-121.44104493298329,54.576037475196756],[-121.4378737756991,54.574518796805094],[-121.43301986650424,54.57248835126195],[-121.43034527083687,54.57153562042735],[-121.42965061352578,54.57107875101829],[-121.42932469825303,54.57107555308402],[-121.43021974478421,54.569810612281806],[-121.43048688854135,54.56978355827803],[-121.43086757645884,54.56974840026767],[-121.43123317373006,54.56967452306116],[-121.43158373868852,54.569578761861216],[-121.43192057998357,54.569466776626996],[-121.43222317373954,54.56933106804632],[-121.43245328127793,54.56914888713448],[-121.43267022414,54.56896284781005],[-121.43287038449425,54.56877057069855],[-121.43216961658136,54.5680385500428],[-121.39999633553415,54.5343782157326],[-121.39873808823025,54.53305824845819],[-121.39899275592931,54.53288154503205],[-121.39915609535791,54.53265426978045],[-121.39925489615108,54.53251771011328],[-121.399429196761,54.53229645833522],[-121.39958424142243,54.53200490339084],[-121.39963653021631,54.531816092522206],[-121.39975686542235,54.53164330953948],[-121.39987795397117,54.53146382145195],[-121.39998574807038,54.53136800009228],[-121.400032985215,54.531310299786476],[-121.4000714881251,54.53126124857862],[-121.4001806641273,54.53115313457466],[-121.40021750581104,54.53101536474483],[-121.40023163227343,54.53090704020602],[-121.40022505516454,54.5308102810082],[-121.40023315364208,54.53061756245029],[-121.40029236521696,54.530418911923306],[-121.4003581535304,54.53031702056128],[-121.40048865791125,54.53019175341099],[-121.40058765323508,54.53003612244586],[-121.40067540013017,54.529911490520306],[-121.40084605091836,54.52977426711486],[-121.40108074057531,54.529602419717044],[-121.40132848164077,54.52940076287476],[-121.40149102311256,54.52926660027368],[-121.4015846234888,54.5292106439741],[-121.40170332428856,54.52910400953544],[-121.40188417784209,54.528979513295724],[-121.40201621272271,54.52880604663983],[-121.40203041224349,54.528679769178794],[-121.40210071708479,54.52853764686477],[-121.40221983870696,54.52844449459528],[-121.40237838391452,54.52831130293356],[-121.40267233715456,54.52819891602377],[-121.40293666479225,54.52803940281738],[-121.40311730616607,54.527933974918305],[-121.40332007717394,54.527821523550564],[-121.40341530478797,54.527751038323906],[-121.40338663784117,54.52767813765023],[-121.40341408759397,54.527502980603856],[-121.40345834384536,54.527350900194605],[-121.40351624867708,54.527198210892564],[-121.4035638655551,54.527050745766275],[-121.40360417910539,54.52691647265835],[-121.40365616153314,54.526764682802735],[-121.40378006524269,54.5266806869799],[-121.40388494877291,54.526610564659926],[-121.40404762617453,54.5264404932351],[-121.40418867502287,54.526272974943694],[-121.40419683157387,54.52606230330617],[-121.40424607735208,54.525900310358686],[-121.4043119261419,54.52578046411477],[-121.40437852806079,54.525653912817596],[-121.40453033280495,54.525511487701834],[-121.40467192694828,54.52535633400595],[-121.40482255119447,54.525207130860814],[-121.40501449556251,54.52505274789967],[-121.40512567983994,54.524891961452155],[-121.40529838086317,54.52471889898838],[-121.40541705897303,54.524612260876545],[-121.40555269727366,54.52449279363264],[-121.40576902358669,54.52431127078692],[-121.40590064259301,54.52422756328812],[-121.40603028058233,54.52412694783591],[-121.40612434440145,54.52401489492992],[-121.40621218707528,54.52388914141864],[-121.40633030945192,54.52377013723675],[-121.40644910764837,54.523662380603916],[-121.40662964411996,54.5235749001475],[-121.40682753797138,54.52352286079104],[-121.40700002413193,54.52336886609241],[-121.40710563512721,54.52306759092593],[-121.4071947056725,54.522879038550926],[-121.40725135742775,54.5227891455225],[-121.40732677463691,54.522687613309465],[-121.40735038539316,54.522615556217126],[-121.40739398967959,54.522555472781995],[-121.40749349158489,54.522412201222586],[-121.40754071211013,54.52226808696251],[-121.40755835665422,54.522093683363025],[-121.4075221881203,54.521966635104796],[-121.40743373967716,54.52183874417093],[-121.40724301783983,54.52165426469491],[-121.40713382491509,54.521521104886546],[-121.40701592942766,54.521361806704846],[-121.40677138322914,54.521086647496965],[-121.40656255798218,54.520873430585],[-121.40631149083663,54.520656380732405],[-121.40610121264886,54.52047340828334],[-121.405944664449,54.520347444535375],[-121.40590759557259,54.52026300620595],[-121.40586508830552,54.52012337437323],[-121.40581264417523,54.52002040231394],[-121.40579609815168,54.51990867994322],[-121.40578879277085,54.51969742699596],[-121.4057741175969,54.51943090791533],[-121.40580975155378,54.51928635850482],[-121.40590771657229,54.51919128613534],[-121.40610546464201,54.519140365417414],[-121.40639590419103,54.51904130685477],[-121.40672620616056,54.5188809016423],[-121.40706064675537,54.51868361781961],[-121.40739315263315,54.518486260476884],[-121.40810064418206,54.51817955105798],[-121.40865784499367,54.517950234900475],[-121.40946459948258,54.51777854822166],[-121.41030774675889,54.517766456646264],[-121.41081100345195,54.51767201580136],[-121.41118392160854,54.517563700139625],[-121.41155916873775,54.51741731541994],[-121.41178418290626,54.517192343872],[-121.41183268697246,54.517053887930786],[-121.41177922891299,54.51695985847472],[-121.4116656971882,54.516882650729556],[-121.41153011708322,54.51679451486157],[-121.41137228902012,54.51671452102568],[-121.41120851481338,54.51658380374677],[-121.4110967404481,54.51649095031332],[-121.41095943148024,54.51638367103699],[-121.41085638685936,54.51628216746813],[-121.41070443101952,54.51618443768176],[-121.41050459167481,54.51604675348499],[-121.41037501126851,54.515939763748634],[-121.41027512856814,54.515775533995196],[-121.41020960915998,54.51556433955208],[-121.41005645083533,54.515235386049575],[-121.40999805738366,54.51508169240144],[-121.40989446651378,54.5149678228317],[-121.40982674336244,54.5147935785507],[-121.4098561379429,54.51454891641179],[-121.41012907790324,54.51438073750655],[-121.4102251389183,54.51421601318002],[-121.41024382070972,54.51396309302022],[-121.41013385684069,54.51352578436305],[-121.40985615442563,54.513304373212165],[-121.40949962508009,54.513111421624686],[-121.40922135184717,54.51291243178548],[-121.4090373839434,54.51282359632331],[-121.40889146413791,54.51275863488068],[-121.4087686954225,54.512642921042875],[-121.40864532612395,54.512498006680275],[-121.40851044391614,54.51242111507945],[-121.40835798270115,54.51227622919223],[-121.40815596194498,54.51217549145728],[-121.40777050920555,54.511946658026176],[-121.40747022971165,54.511788358631435],[-121.40731716945494,54.51170068214411],[-121.40707537954299,54.51155692498586],[-121.40684751327223,54.51137553513419],[-121.406615682592,54.51124674030997],[-121.40647102708644,54.51117060089123],[-121.40631742050199,54.51107055795083],[-121.40607531005676,54.51094698654644],[-121.40582417292057,54.510817464003864],[-121.40567884432032,54.51073007595253],[-121.40556524433396,54.510619192025],[-121.40546054748211,54.51051537618067],[-121.40526885439718,54.51037462131569],[-121.4050486209597,54.51024625930286],[-121.40482525075453,54.510145834533006],[-121.40462126997562,54.5100281830615],[-121.40439838559665,54.509871664301826],[-121.40419589560929,54.50968897886594],[-121.40407475168945,54.50959352065655],[-121.4038846220939,54.50945618877001],[-121.40371685302529,54.50939600943449],[-121.40355380797713,54.50927652946812],[-121.40331284654836,54.50914289502143],[-121.40316610047405,54.50905096128076],[-121.4030448827439,54.50897345477569],[-121.40289477810815,54.50887690535349],[-121.40276057737032,54.50875963188681],[-121.40258109955094,54.508562098095766],[-121.40223508564331,54.50832799558874],[-121.40201490420954,54.50816484010659],[-121.40176321589675,54.50805773192005],[-121.40156181333691,54.50793456048347],[-121.40133127488703,54.50779458054946],[-121.40120028384538,54.50771782622491],[-121.40108959359576,54.5075812355345],[-121.400985967456,54.50748531102781],[-121.40081483725837,54.50736888907713],[-121.40068245273758,54.50725280350913],[-121.40056109194929,54.507073165607935],[-121.40042226100957,54.50685920271957],[-121.4002918297526,54.50665677824405],[-121.40010267220914,54.50644204195395],[-121.40001404218347,54.50636800357063],[-121.39995030917758,54.50631398069352],[-121.3997521875986,54.506161751208815],[-121.39970497458097,54.50602979400133],[-121.39959054525873,54.505840315756764],[-121.39941137137696,54.505743788662095],[-121.39916337103016,54.50551785635881],[-121.39899036917016,54.50541819433047],[-121.39885664788376,54.5052796112752],[-121.39876694858185,54.50509443028977],[-121.39869199979258,54.50498499460244],[-121.39852936399613,54.50486215535676],[-121.39839506321886,54.50474599452807],[-121.39826085421045,54.50466350403497],[-121.39808977836833,54.50451229023515],[-121.39789867646886,54.504332265705024],[-121.39771473649827,54.504278201086684],[-121.39748558905802,54.50421233255116],[-121.3972765046484,54.50414048619149],[-121.39707253975484,54.50405761001204],[-121.39682088959272,54.50395049158812],[-121.39663412431186,54.50380092859565],[-121.39635290597369,54.503560270681405],[-121.39620319770064,54.50335711399687],[-121.39606503082653,54.50313755854952],[-121.39588556538773,54.50292317951488],[-121.39573452296014,54.50274914996068],[-121.39548635385998,54.502542280341345],[-121.39533393829538,54.502432165999906],[-121.39520296169245,54.50225215869529],[-121.39509066440307,54.50207846667545],[-121.39493065462001,54.50196694314893],[-121.39473693718556,54.50181038104365],[-121.39456467244382,54.50168717246571],[-121.39435488342201,54.50153561480952],[-121.39416385563148,54.5013724196132],[-121.39394369998675,54.50119241417397],[-121.3937424368349,54.50105127698231],[-121.39346524621327,54.50086126371922],[-121.3932424977506,54.500721559666836],[-121.39300053122551,54.50061479744417],[-121.39286689318203,54.50054466625398],[-121.39267206168967,54.50044978156152],[-121.39251844629496,54.50036767388043],[-121.39239588677792,54.50025082589767],[-121.39227387107015,54.50009471980376],[-121.39221405903443,54.500006050512035],[-121.3920967438527,54.4998254321957],[-121.39179211798854,54.49956928927456],[-121.39160681086905,54.499269391512925],[-121.39152693376587,54.499031828523556],[-121.39134277006418,54.49887674271695],[-121.39116901749827,54.4987669392253],[-121.3909851930936,54.498643288408694],[-121.39075188763105,54.498442579389724],[-121.39059488257539,54.49828739502625],[-121.34071713552498,54.49097497761964],[-121.1997453659312,54.45472236688214],[-121.17455705119326,54.44822047863594],[-121.1615493918998,54.40024351381978],[-121.00000592726954,54.408470969820414],[-120.89956806335617,54.41347569733991],[-120.90019360695696,54.43170796873094],[-120.90019704293914,54.431820391586676],[-120.9355516753243,54.44937899451148],[-120.93592640657451,54.44940353929933],[-120.9362080419435,54.44950730021862],[-120.93651978474274,54.449727953443094],[-120.93672293573005,54.44987111836213],[-120.93692936747449,54.45008178382292],[-120.93710827670118,54.45026436026727],[-120.93721808798585,54.45041038528353],[-120.93731772189885,54.45052904176051],[-120.93745797043375,54.45064826151488],[-120.93765603728279,54.45078559974377],[-120.93783884028561,54.450874025964126],[-120.93799837670032,54.45096260881758],[-120.93815350669209,54.45105549950166],[-120.93834483436292,54.45118469748487],[-120.93859067917155,54.4513273853035],[-120.93877265329839,54.45143823039271],[-120.93892034800795,54.451544284272195],[-120.93904863067401,54.45165065506323],[-120.9392071967126,54.451778491807865],[-120.93936012414147,54.45188925317631],[-120.93951744989046,54.45202714264343],[-120.93960193613471,54.4521900778844],[-120.93972263172799,54.452357883765096],[-120.93975177815479,54.45249831316238],[-120.93990772279993,54.45266309044956],[-120.94008116366376,54.45279603392683],[-120.94032193603348,54.45291717502952],[-120.94049813925476,54.45302777760103],[-120.9406803977201,54.45315210397212],[-120.94083251059948,54.45325384737838],[-120.94093902298629,54.45345811372924],[-120.94108423431372,54.45363142580206],[-120.94117066597705,54.45376300350181],[-120.94125349836307,54.45397077811678],[-120.94132296407149,54.45422403051165],[-120.94136794803305,54.454377466264226],[-120.94136843467737,54.454624489140954],[-120.94138215102531,54.45482715118024],[-120.941395571206,54.45511063815501],[-120.94158612013145,54.45516794215859],[-120.94159100733066,54.45544209320282],[-120.94163076252576,54.45559082090456],[-120.9417062725437,54.45592066973383],[-120.94169769048115,54.4560999520084],[-120.94165618358876,54.4563418648441],[-120.94158700630155,54.45655680705146],[-120.94147156293965,54.45676983032292],[-120.94133891904531,54.456933862325805],[-120.94133130108139,54.457105325433346],[-120.94135589870692,54.45729833402893],[-120.94143115396113,54.45755182608568],[-120.94149321187525,54.45772393350261],[-120.94156946266756,54.457859579122385],[-120.94167516675464,54.45805482859124],[-120.94179162248238,54.45821010523128],[-120.94200432338795,54.458401932439216],[-120.94219900871447,54.45850431583286],[-120.94234013020629,54.45860110954716],[-120.94267978877285,54.45883188194009],[-120.94286921811708,54.459055301760436],[-120.94307641738811,54.459260371415255],[-120.94335097225063,54.45939076424711],[-120.94370525426308,54.45955028440619],[-120.94394856273085,54.459635593727754],[-120.94449411348674,54.459846826476486],[-120.94494327836547,54.46003834368845],[-120.94527692208698,54.4601610759647],[-120.94570117166872,54.46033471656825],[-120.9459710613344,54.4604559276662],[-120.94625445238752,54.460546260980436],[-120.94665117192152,54.46069181171899],[-120.94699639361112,54.4608150185194],[-120.9471999209859,54.46087734086387],[-120.94751044653601,54.46096767232455],[-120.94778117429018,54.46106645911279],[-120.94810878288588,54.46111258728455],[-120.94846214178807,54.4611856037655],[-120.94876648143058,54.46120045273706],[-120.94928743191923,54.46134440238584],[-120.94952484194187,54.46141485994287],[-120.94991814046786,54.46152545299551],[-120.95021118744144,54.461616176219316],[-120.95054692661209,54.4617064205332],[-120.95078475413254,54.46177352456205],[-120.95104516723114,54.46184605386781],[-120.95140514777749,54.46192831724638],[-120.9516643235827,54.461995180302445],[-120.95186125368306,54.46204823948499],[-120.95214659660488,54.4621072025711],[-120.95247008754849,54.462202548014105],[-120.9527869695252,54.46228863727606],[-120.95314089848658,54.462388608426515],[-120.95347678754115,54.46246200948726],[-120.95371820689188,54.462578655871155],[-120.9539223068107,54.46269937153301],[-120.95427844802676,54.462844339566665],[-120.95465359586716,54.46297661991804],[-120.95491967105377,54.463066215379946],[-120.95537607642949,54.46319960857596],[-120.95563540574832,54.463281064324434],[-120.95600325947811,54.46337823418754],[-120.95574407786486,54.463421407473085],[-120.95302057201812,54.46386787193745],[-120.94516960176455,54.46291406276704],[-120.94093307463572,54.460187567859094],[-120.93866053187156,54.45624902037635],[-120.93609087894552,54.452711243289194],[-120.92932209545648,54.45129824897199],[-120.926190593993,54.453305725736776],[-120.92119924629105,54.454059041637166],[-120.91629978678006,54.454070473548796],[-120.91228905881559,54.45653499541063],[-120.9102410725026,54.45779687309463],[-120.90189693894575,54.45832863193626],[-120.88778151654341,54.45864500691473],[-120.88063092353109,54.4605367942465],[-120.87652171964201,54.463517106998026],[-120.87684181866607,54.467402004616275],[-120.87772537787775,54.47112192282083],[-120.87540424065163,54.47665646731354],[-120.87442950453362,54.47923841333327],[-120.87444036868105,54.48398162292349],[-120.87544570262982,54.48809290170471],[-120.87221457954334,54.491469349777695],[-120.85945553860012,54.49040269645005],[-120.85454729691445,54.48995334992271],[-120.84855648377993,54.48997012977275],[-120.83993382013554,54.49129465947738],[-120.83629630385018,54.492209783085734],[-120.82845989068521,54.49393509712378],[-120.82647424918837,54.494222622957246],[-120.82632627484043,54.49402771005644],[-120.82535997024647,54.493371419542605],[-120.82484247984524,54.49283183907356],[-120.82422613143734,54.49239922772578],[-120.82387944036037,54.49207349203066],[-120.82344708746,54.49164306403991],[-120.822470601562,54.49114463886773],[-120.82176249729162,54.49076314119072],[-120.82132489064222,54.49043578528824],[-120.82089244046375,54.4900064650245],[-120.82044469912782,54.48983587730236],[-120.81992145925496,54.4894038228318],[-120.81965977274936,54.48918835318101],[-120.8191513427457,54.488486310738345],[-120.8182653619442,54.48799393396733],[-120.81682744346209,54.48764878780993],[-120.81601426292266,54.48753115693826],[-120.81539191831955,54.487254318726016],[-120.81422186547185,54.48696880273259],[-120.81342059852528,54.48663494398085],[-120.81235872657352,54.486031739184355],[-120.81229912743218,54.485446429949775],[-120.81232752720318,54.48491651393554],[-120.81235592623993,54.48438659786911],[-120.81238432454245,54.483856681750666],[-120.81213992355065,54.48332190587008],[-120.8118056081921,54.482731653819975],[-120.81146441114596,54.48230280303687],[-120.81113204246259,54.481712631051785],[-120.81006946018887,54.48116214444988],[-120.80899600683895,54.48077400347394],[-120.80756963270842,54.48021812200096],[-120.8064997410336,54.47977171827254],[-120.80533736256672,54.479382002930855],[-120.80481203396884,54.4789991889455],[-120.80328169362718,54.47865217537705],[-120.80256260366512,54.478482308179395],[-120.80181881194855,54.47791163327585],[-120.80013427464203,54.47774104035984],[-120.8000007873102,54.47773872015822],[-120.79962360845833,54.477731628132915],[-120.79880725764636,54.477717043753515],[-120.7982504145703,54.47756754063834],[-120.797627986446,54.477201887281375],[-120.79699468272106,54.47698286658546],[-120.79640153799514,54.476783521482204],[-120.795770601706,54.476561226133526],[-120.79514210348265,54.476243584410184],[-120.7947960039189,54.47593124982738],[-120.79454175152642,54.47541509537043],[-120.79455225948671,54.47522577280445],[-120.79442470925017,54.4746128391885],[-120.7942023608222,54.474257497183984],[-120.79392039602473,54.47350210202407],[-120.79343687600748,54.47279200352736],[-120.79295714847925,54.47196079021662],[-120.79258459834386,54.471414876029925],[-120.79268594484796,54.470679205882846],[-120.7929111277783,54.47018912390076],[-120.7935074213669,54.469616065401176],[-120.7947128206718,54.46888708638088],[-120.79605619156905,54.46862774267105],[-120.79698573579876,54.468528153497],[-120.79792383720824,54.468056118877534],[-120.79887463478181,54.46768231167257],[-120.79952299566102,54.46744607305894],[-120.80000052299758,54.4672575710521],[-120.80047433194562,54.46706778596358],[-120.80053165445422,54.466799610616384],[-120.80051411728729,54.466327245361015],[-120.80076610754081,54.465594627119806],[-120.80115722380175,54.464590582519264],[-120.80129700219368,54.4635814394974],[-120.80232145564806,54.46261112280468],[-120.80313941229738,54.46236637570942],[-120.8046762109905,54.46135948123234],[-120.80574055758014,54.460440247981936],[-120.80588610041893,54.459323552049376],[-120.80522862372385,54.45815131870662],[-120.80488494504634,54.45745395832516],[-120.8048373204558,54.45721836717035],[-120.80471726942903,54.45663720717707],[-120.80494247456544,54.45558004963248],[-120.80477718546453,54.45471399224457],[-120.80511513278176,54.45392888710465],[-120.80563796259678,54.452877670511356],[-120.80656844552303,54.452095344207116],[-120.80680937011435,54.45155538667942],[-120.80687814996755,54.450249020470196],[-120.80674587022551,54.449580878365886],[-120.80569901090608,54.448577332259525],[-120.80462564540356,54.447263848345486],[-120.80522064767993,54.4456430329813],[-120.80468463415272,54.44459947813391],[-120.80387781349455,54.443843068921616],[-120.80379856371897,54.44295596885949],[-120.80365952793063,54.442387469588944],[-120.80373530066987,54.441759629396415],[-120.80405205226566,54.44137000938874],[-120.80390587762054,54.440949428725276],[-120.80392608102791,54.44057636406567],[-120.80419168037626,54.44036085902647],[-120.80451793466614,54.43977401302223],[-120.80501726378674,54.43916647006771],[-120.80545995026745,54.43880691834485],[-120.80614841725746,54.43857125064265],[-120.80679998285753,54.43825989603651],[-120.80711520708623,54.437897154696216],[-120.80780633888573,54.43764025715652],[-120.80783148373126,54.43718206356599],[-120.80776275338131,54.43688381409777],[-120.80731741300767,54.436485303904],[-120.80675189598695,54.43598061067683],[-120.80668895001983,54.435606249499344],[-120.80654321918387,54.4351362832219],[-120.80653663492585,54.434470123872586],[-120.80635461745503,54.43395032619857],[-120.80632160317799,54.43375241209209],[-120.80618508226512,54.43313349163534],[-120.80609479329524,54.432440183810826],[-120.8056666444457,54.43175381184493],[-120.80561175342301,54.431209111593326],[-120.80521255435899,54.430783360964604],[-120.80467660475938,54.43050449377278],[-120.80431144315301,54.43022279898706],[-120.80412607358969,54.42972980233971],[-120.80393889548122,54.429281644172775],[-120.8035716820274,54.4290009818523],[-120.80296493109427,54.42848664549716],[-120.80296078659421,54.42777117891068],[-120.8027859865034,54.427103456514665],[-120.80243515529715,54.42652591837647],[-120.80216003446748,54.426130150109024],[-120.80188948335989,54.42565260377894],[-120.80160870176555,54.42537786612184],[-120.80147452030118,54.42471075007779],[-120.80162647114695,54.42424561177979],[-120.8015903855429,54.423354730417174],[-120.80165478547377,54.42293863368853],[-120.80166219244929,54.422681804075374],[-120.80127158147728,54.42231142346287],[-120.80095559545116,54.4220396725828],[-120.80060592175032,54.4216519465686],[-120.8002898035009,54.42138131079404],[-120.80000181676407,54.4210568520556],[-120.79993892449752,54.42098791633411],[-120.79941244167783,54.420834065550416],[-120.79872307608875,54.42060588461638],[-120.79843710859016,54.4205554978226],[-120.79803280863392,54.42040011917413],[-120.79779264727786,54.420278697171064],[-120.79763646300577,54.42010583761776],[-120.79753088076075,54.419793651551466],[-120.7974654325691,54.419455106230714],[-120.79715710355235,54.41906239575825],[-120.79683864052323,54.41884105714047],[-120.7966462353007,54.41857232429802],[-120.7966637401264,54.41823619789051],[-120.79655725980531,54.41794643027016],[-120.79641396213128,54.41753493822185],[-120.79615044562438,54.417048690298294],[-120.79604397200517,54.416758922167354],[-120.79573314638074,54.41641663098349],[-120.79517504629403,54.41602447282573],[-120.79477947256026,54.41572459747523],[-120.794257289888,54.41547657932362],[-120.79402103815372,54.41527895678512],[-120.7937484263273,54.414986577691074],[-120.7933436314599,54.41483565077326],[-120.79309794267068,54.41480381464866],[-120.79293553548457,54.414756448064296],[-120.79256619270514,54.41472269428164],[-120.79223969734889,54.414671681376106],[-120.79179102883272,54.414591863191006],[-120.79137918677026,54.41455741170194],[-120.7910489423387,54.41455115202447],[-120.79076119968799,54.414545585925055],[-120.79064129784857,54.41449891074233],[-120.79056223797379,54.41442029428484],[-120.7904050691421,54.414301281169045],[-120.79024236503655,54.41422582503938],[-120.78987678235694,54.41414730673134],[-120.78946869990996,54.41406809241997],[-120.78913994188089,54.414034940819],[-120.78877288059638,54.41398330595517],[-120.78812003735025,54.413849822450274],[-120.78799638541761,54.4138479009837],[-120.78742138394529,54.41378736524994],[-120.78713442043458,54.41376048810425],[-120.78668499827192,54.41370195362785],[-120.78631418610463,54.41369506764368],[-120.78618813478016,54.41374245039991],[-120.78573573060343,54.41370736620272],[-120.7854870853574,54.4137292881776],[-120.78578770577205,54.41354227473807],[-120.786001980573,54.41337963821073],[-120.78613614681706,54.41316191814186],[-120.78619729307005,54.412802952790045],[-120.78625589641014,54.41249441029575],[-120.78630698522886,54.41227538031198],[-120.78632275574064,54.412014413358705],[-120.78657710450587,54.41187145817822],[-120.78704721190519,54.41156929698431],[-120.78826368802056,54.411182285267984],[-120.78868930644644,54.410925377938064],[-120.78907540334136,54.41064432020729],[-120.78872127043796,54.41032373509258],[-120.7885833144011,54.40984059013618],[-120.7884410394312,54.40940666874749],[-120.78837281380811,54.40916681255471],[-120.78826928465368,54.408778342572624],[-120.78865776091209,54.40844797991041],[-120.78916732764785,54.408169959408866],[-120.78950413958573,54.40803277308512],[-120.78957095368949,54.40755277397298],[-120.78917733061589,54.40720804122618],[-120.78898263382945,54.40698860190204],[-120.78859080419667,54.40664506643886],[-120.78835899842213,54.40635217083772],[-120.7879400027419,54.40572000126311],[-120.78775582475551,54.405280915887715],[-120.78757824534279,54.40477473682191],[-120.78739705739515,54.40431219697758],[-120.78709499714127,54.40378047629415],[-120.78667181770741,54.403242446995826],[-120.78652041620197,54.403002396930674],[-120.78612686233814,54.402657654051424],[-120.78560354132745,54.402405048474975],[-120.78503726219385,54.40220113274886],[-120.78455001298745,54.402075834970795],[-120.78382196642043,54.40182006813172],[-120.78333967286063,54.401595036432006],[-120.78239444466101,54.40155566675346],[-120.78161536256448,54.40144255776124],[-120.7809226165909,54.401335389466226],[-120.7800328916829,54.40098171168007],[-120.77943226792355,54.40068309194985],[-120.77883406088911,54.40033516321601],[-120.77855803441166,54.400086388695],[-120.77850311780894,54.40000093663459],[-120.77840669195521,54.399846328421155],[-120.77826378147626,54.3994336968562],[-120.77807399751183,54.399115627750106],[-120.77780011741424,54.39885009885619],[-120.77770288842105,54.39836755700631],[-120.77767679276074,54.39810142411551],[-120.7775293613677,54.39778516993781],[-120.7775328332277,54.39771232773477],[-120.7774168102725,54.39754452547751],[-120.77726045533534,54.39741991086386],[-120.77714018364011,54.397346253031046],[-120.77689886325217,54.39722023949976],[-120.77653678872464,54.39706995562906],[-120.7763761029336,54.39699456332977],[-120.77577030686842,54.39676756813328],[-120.77528087358357,54.39666010261627],[-120.77471231217773,54.396505444745785],[-120.77446796041896,54.39647923777872],[-120.77335691929468,54.39643604571228],[-120.77273828722157,54.39644654794257],[-120.77252923233537,54.39649259784538],[-120.77220013747076,54.396508789065926],[-120.77136818361852,54.39665947785317],[-120.77090965219239,54.39674983704141],[-120.77029087233305,54.396761443691965],[-120.76942069162058,54.39681727312783],[-120.7687280554669,54.396710035499915],[-120.76798481949456,54.39669607054946],[-120.76749248922152,54.39668726817608],[-120.76699823460194,54.39667838110811],[-120.76642108174788,54.3966670520697],[-120.76583801333938,54.396777867990856],[-120.76504231078606,54.39702327834675],[-120.76470814645886,54.397094256529286],[-120.764039811859,54.397296849660016],[-120.76353934422207,54.39738201005855],[-120.76320331832211,54.39749782257443],[-120.76294426810871,54.39770790431741],[-120.76219515662353,54.39786097284103],[-120.76190318204576,54.39790456162602],[-120.76182206331312,54.397903318142966],[-120.76120083450502,54.397964184398504],[-120.76070413627491,54.3980045775342],[-120.759871115222,54.39813268585677],[-120.75908342817728,54.39823915763406],[-120.758590658308,54.39820335003978],[-120.75813887158472,54.39819513274236],[-120.75772964947305,54.39814158171259],[-120.75719196402022,54.39815436812219],[-120.75682902184857,54.39802644497038],[-120.75592782795219,54.39791576883419],[-120.75522612599126,54.397924851914496],[-120.7553429917029,54.398070256091074],[-120.75564983118964,54.39848549281508],[-120.75563185634353,54.398822731328664],[-120.75561739204,54.39908712826112],[-120.75551988149165,54.39935019461801],[-120.7554310310808,54.39946989430934],[-120.75525970503725,54.39958379594221],[-120.75496326624307,54.39972262879998],[-120.75495989705414,54.39979435351662],[-120.7549497299101,54.39996460645432],[-120.75493553481749,54.39999992997492],[-120.75485657446592,54.40017844957814],[-120.7546035491474,54.40029556935643],[-120.75429937044561,54.40055534792342],[-120.75416808581934,54.400719260696825],[-120.75395576024229,54.40083588660064],[-120.75374329055946,54.400953628943526],[-120.75360763938711,54.40116676370922],[-120.75342612738295,54.40145091550823],[-120.7531712229526,54.40161287055915],[-120.7531161786708,54.401876642418934],[-120.75302295194217,54.402045562876744],[-120.75284486231381,54.402302910322575],[-120.75245952997615,54.4025614346994],[-120.7522833028021,54.40277394305446],[-120.7516846840859,54.40317150665305],[-120.75125102954173,54.403550349125226],[-120.75085985701182,54.40392989839759],[-120.75079762317472,54.404310148886864],[-120.75061119360076,54.404692907197045],[-120.7502273321012,54.40492453808176],[-120.74997088600696,54.40511337266218],[-120.74966871028026,54.405372105619605],[-120.74927464501081,54.40577398578916],[-120.74880826629663,54.40603012978352],[-120.74830075492032,54.40625979325029],[-120.74787056177094,54.406565782244726],[-120.74739439438495,54.406988822510634],[-120.74704861507439,54.40727037518178],[-120.74666240547518,54.4075501832696],[-120.74623735360349,54.407785641883414],[-120.74552193553797,54.40808156659126],[-120.74431817784489,54.40823064350484],[-120.74386450182237,54.40822117349695],[-120.74352076050675,54.408229921942954],[-120.74332860515078,54.408233981853414],[-120.74270719269033,54.40829475381555],[-120.74204342719392,54.40835369439318],[-120.74117676818975,54.40836456729881],[-120.74076695619043,54.40833002810157],[-120.74010944910981,54.40829489806161],[-120.73952954151166,54.40833386380131],[-120.73874312107625,54.40841331786908],[-120.73803372028271,54.40857133430248],[-120.73724483399906,54.4087000838507],[-120.73645360911794,54.40880177578505],[-120.73603381384754,54.40896555790937],[-120.73545214946043,54.40904822541991],[-120.73503194002085,54.40918503476731],[-120.73453276212973,54.40927350954704],[-120.7341671303053,54.40936214098005],[-120.73344606182671,54.409716150916466],[-120.7325208453405,54.40953464638395],[-120.72399692992065,54.40633576220813],[-120.71704048516555,54.4035995294073],[-120.70872473867807,54.40132488472791],[-120.70676387192492,54.401042016522716],[-120.70108928202946,54.39966321299436],[-120.69403861060812,54.396238641558725],[-120.68972405701936,54.3920165737511],[-120.68345660582709,54.38722387874688],[-120.68062429898298,54.38447668650554],[-120.67484685496991,54.37974079855265],[-120.6692716351752,54.37488764841021],[-120.66546983735584,54.37127994342441],[-120.66351124673801,54.368256084105106],[-120.66184329816505,54.36442732592424],[-120.65901509465112,54.360601502457506],[-120.65658200485811,54.358140655284444],[-120.66284138605138,54.35425553913997],[-120.66958996510354,54.35111934637753],[-120.67809404971837,54.35065619057324],[-120.68572286451146,54.351456956490736],[-120.6940454538343,54.35048163615369],[-120.6994255882103,54.346421711134774],[-120.69687933638473,54.34087515551454],[-120.69482874953614,54.33819819802538],[-120.69326239112237,54.33488646626226],[-120.69483205438834,54.330992841883436],[-120.69150382232874,54.32780182122067],[-120.6855342259306,54.32579797906418],[-120.6833907598694,54.322775281587745],[-120.69228484902467,54.318887404854685],[-120.70293922005708,54.31499483293488],[-120.70244137850085,54.3145418806943],[-120.70469574415696,54.310597175134944],[-120.7103548483098,54.30768118902722],[-120.71807947542372,54.305393846075795],[-120.72403990961115,54.303847007429],[-120.72940873983816,54.30040552739261],[-120.72480810102314,54.29629770469045],[-120.72061276218356,54.29481271495622],[-120.71367254293115,54.29522061411745],[-120.7038103556464,54.29505152977011],[-120.69551597301333,54.293863000725665],[-120.68896988466281,54.28906668228849],[-120.6833957322223,54.28500431528638],[-120.67978907876588,54.28364240455313],[-120.66973463996065,54.284737841364816],[-120.6612319151022,54.28707771563535],[-120.65429312327184,54.288901872812005],[-120.64697171714053,54.28867819529397],[-120.63954684878298,54.286050502195465],[-120.636628311913,54.28439416613517],[-120.63409574348019,54.28250322436856],[-120.6297915413393,54.28164802699891],[-120.62510037318008,54.28576231519095],[-120.62401216733683,54.29113220627252],[-120.62557795784383,54.29415762794693],[-120.62234996774639,54.29250522844448],[-120.61678543567736,54.2912433678968],[-120.61093055607334,54.290902824633726],[-120.60528021540921,54.2894748677904],[-120.60410585494745,54.289009364276005],[-120.60040116739846,54.28358822158245],[-120.59739366737834,54.276158244383],[-120.5953566071063,54.27227569262969],[-120.59252837019729,54.26913059482358],[-120.58892862785845,54.26598695652233],[-120.58814689723259,54.265359052082715],[-120.58571273125068,54.262276246579006],[-120.58191207042042,54.25855728460103],[-120.58181771109005,54.25575853236557],[-120.58340076507328,54.251821615382966],[-120.58086731127077,54.24832986269971],[-120.57892774946714,54.24501733554483],[-120.5789274070709,54.24045257752786],[-120.58177437558277,54.23605100175289],[-120.58452207771995,54.232516559855],[-120.58354202435702,54.229884908314254],[-120.57965654408632,54.22741991989964],[-120.57712201865942,54.22617438223177],[-120.57059954207598,54.2234832582815],[-120.56836250478827,54.22022003123686],[-120.56661972375208,54.214966060290976],[-120.56478419450542,54.20955680692266],[-120.56185341554968,54.21281247066207],[-120.54441475913116,54.215241304430556],[-120.52289469681654,54.20741925348729],[-120.50346257654948,54.206298459534096],[-120.4874854672082,54.21604891710258],[-120.44969886548388,54.22998152005668],[-120.43170027370334,54.23477772368251],[-120.42547159122005,54.2429962639008],[-120.43494601403872,54.25462482978379],[-120.418511934513,54.26434786573474],[-120.39999578795754,54.26605728975774],[-120.39525071868107,54.2664948704429],[-120.3295511795959,54.282701171262225],[-120.31393568437599,54.27429865821234],[-120.27719231084677,54.26992270380022],[-120.21288534401491,54.272515788839215],[-120.20000570647636,54.2786429714598],[-120.16726134647067,54.29420821535649],[-120.13394111801905,54.29550607636635],[-120.10712693431121,54.28509180263426],[-120.10716026101362,54.28507488239837],[-120.10735207498841,54.28496282413326],[-120.10743159758758,54.28492004251444],[-120.10751119938746,54.284876707290195],[-120.10777039091286,54.28468532447785],[-120.10796291997897,54.28458172414296],[-120.10823176583224,54.28447115651266],[-120.10832606728273,54.28444651520731],[-120.10862439725689,54.284345810993194],[-120.10882834579286,54.284270301368046],[-120.10900480485601,54.28418446680907],[-120.10908304450443,54.284150612395344],[-120.10942061987653,54.28395122658457],[-120.10959891973818,54.2838121046177],[-120.1096792390332,54.28375025580589],[-120.10993825061465,54.283586955417505],[-120.11019566342395,54.28342132039883],[-120.11024377262811,54.283395559997906],[-120.11029244219544,54.283352412380374],[-120.11053563119168,54.28315124877622],[-120.11076211052183,54.283012773114926],[-120.11077697469892,54.283003380175934],[-120.11085648867945,54.28296060522801],[-120.11111501322631,54.28278715596606],[-120.11146775032798,54.28258962488131],[-120.11179954465587,54.28244389537595],[-120.11207284357927,54.282288584536566],[-120.11213765252386,54.282227114741154],[-120.112219084034,54.28215745194281],[-120.11237299852466,54.28194577811643],[-120.11237747671706,54.28187407236008],[-120.11237939575976,54.2818471943303],[-120.11232818118691,54.28169243987793],[-120.11232243422906,54.281557305450164],[-120.11241617682603,54.28133427964441],[-120.11256353182573,54.28119533431656],[-120.11267708223447,54.28111712423423],[-120.1128042176647,54.281038440263416],[-120.11299727627716,54.28091744465864],[-120.11311138557447,54.28082183801806],[-120.11312880592847,54.28079458810336],[-120.11320448193622,54.28058979913201],[-120.11335718737607,54.280386489844226],[-120.11337580551024,54.280350874031974],[-120.11339306565534,54.28032474011974],[-120.11344700461858,54.28021778178197],[-120.11341751972684,54.28018095657458],[-120.11335272077076,54.28002665848891],[-120.1133290716632,54.27990863660259],[-120.11333354735007,54.27986390185388],[-120.11334761521468,54.27965780573934],[-120.11343231632911,54.27952481104798],[-120.1135002359401,54.27945505871533],[-120.11361186208968,54.27937675471393],[-120.1136445436951,54.279350802387405],[-120.11375169620206,54.27915540654591],[-120.1138005181842,54.27911113251169],[-120.10873618240919,54.270200869303686],[-120.10696388884246,54.26990465112234],[-120.1049248207282,54.26954374913211],[-120.10354071035644,54.26935456224979],[-120.10295665465405,54.26914636646492],[-120.10213756808875,54.26846373150078],[-120.10179487193592,54.267676692839636],[-120.10151945788697,54.266851351436515],[-120.10136950537745,54.26614729539104],[-120.10103406984514,54.26524260485507],[-120.10076390494989,54.264340529055254],[-120.10036132476462,54.26343313615007],[-120.10007497184473,54.26276514784243],[-120.09913061303214,54.26200166082042],[-120.09730653225867,54.261450459136206],[-120.09627322729733,54.26099784551778],[-120.09456741645097,54.260645095318175],[-120.09345274108313,54.260423373662746],[-120.09254331292038,54.26008970613475],[-120.09157388557846,54.259676679125995],[-120.09023687500749,54.258826554612874],[-120.08942012080954,54.258143925769154],[-120.08851979415292,54.25769377964885],[-120.0877450300069,54.257363820162816],[-120.08689771522177,54.257108986784615],[-120.08650420929371,54.25704035342148],[-120.08477331899854,54.25703799254916],[-120.08364073215651,54.257049058895035],[-120.08224253319796,54.257055022756965],[-120.08090632080555,54.257139859597906],[-120.07990474701288,54.25719268145669],[-120.07883560715818,54.257245577316766],[-120.0779704621351,54.257262337310266],[-120.077437642564,54.25724980744914],[-120.07718674144084,54.257048749073036],[-120.07689554735639,54.256457436569065],[-120.07661520613776,54.2557104286337],[-120.07646045780393,54.25508307144919],[-120.07609846675702,54.25456808228225],[-120.07581272932764,54.25389891950761],[-120.07489777961293,54.25270789264811],[-120.07416127911549,54.25183238824595],[-120.07335390729254,54.25103377440364],[-120.07208123080666,54.2502236389322],[-120.07066140582947,54.24960465870398],[-120.06916532659613,54.24909993589525],[-120.06805101892579,54.24887854323762],[-120.06706578395,54.248698852058816],[-120.0664822862489,54.248489917673915],[-120.0661005171304,54.24824702992222],[-120.06567693141224,54.24765200506772],[-120.06514787711592,54.246664638889285],[-120.06486056868012,54.24603469629617],[-120.06455866327475,54.2455995913112],[-120.06328366930296,54.24480778096792],[-120.06265829160589,54.24424781594085],[-120.06190774562349,54.243565957834036],[-120.06087891934168,54.243074450742114],[-120.0597667084166,54.242813172253825],[-120.0585418411749,54.24227663151839],[-120.05737692896798,54.241819439327344],[-120.0564737427599,54.24140709141652],[-120.05544503510934,54.24091553807555],[-120.05457102914502,54.24011461686754],[-120.05381498768458,54.23951222425981],[-120.05280299400026,54.23878544792093],[-120.05165456262633,54.23809523213722],[-120.05036812186043,54.237479150574316],[-120.04906530683223,54.23709657675473],[-120.048424064418,54.23676838945236],[-120.04765001428332,54.23643817288512],[-120.04715215517093,54.23595911519585],[-120.04691977705217,54.23548521619497],[-120.04685175281915,54.23456871447087],[-120.04652324487475,54.2335860296925],[-120.04579308417208,54.23263306558434],[-120.0450483455536,54.23187437108671],[-120.04430006962478,54.23119361232351],[-120.04375155859256,54.23047883218789],[-120.0433577170013,54.22949516983671],[-120.04328903233618,54.22859716787425],[-120.0434110315016,54.227820927447176],[-120.04351466947878,54.22727812280945],[-120.04375284607616,54.22673854943362],[-120.04346060363534,54.226185837252025],[-120.04303574764694,54.22562997742509],[-120.04234915050317,54.22499044288919],[-120.04178438697711,54.22450862053453],[-120.04160747718697,54.224145334923925],[-120.02404881241767,54.21946107661351],[-120.02379209532091,54.219515851643905],[-120.02342732449645,54.2193983973868],[-120.02320107022427,54.21924337444627],[-120.02287623601475,54.2190368406434],[-120.02220276615915,54.21896035125233],[-120.0213664925109,54.21900900711385],[-120.02055953304772,54.21914789479782],[-120.01996342257404,54.219401709331365],[-120.019357764991,54.21981408269608],[-120.01847769881644,54.22070800767727],[-120.01797089316749,54.22114324711894],[-120.0174555367813,54.221478023198856],[-120.0170322862495,54.22169652598541],[-120.01663211850075,54.221835810005466],[-120.01594661131682,54.221908168495084],[-120.01542546599181,54.22208361804782],[-120.01512078671298,54.22229560723494],[-120.0147825281335,54.22276501056594],[-120.01454662682282,54.223206865568415],[-120.01418727431886,54.22371512146277],[-120.01413154663824,54.22379329275042],[-120.013848725193,54.223934426874116],[-120.01369056673553,54.22400079459521],[-120.01331576707796,54.22403173334198],[-120.01294536743919,54.22399264629261],[-120.01251210749672,54.22388188267585],[-120.01200328599477,54.22364094435107],[-120.01157342733984,54.22348033400519],[-120.01100649434677,54.22334723262762],[-120.01045156918059,54.22326416664167],[-120.0100787908137,54.22325473294528],[-120.00951521596829,54.2233106137109],[-120.00928602017031,54.22341448399366],[-120.00915438933562,54.22359005665412],[-120.00919374796575,54.22377015290755],[-120.00934978723261,54.22394364469509],[-120.00947683494431,54.2240645678938],[-120.009478167424,54.22429391941314],[-120.0093176921782,54.22438939001217],[-120.0090286869735,54.2245066052803],[-120.00857851505657,54.2246445173147],[-120.00813120747038,54.22472299105469],[-120.00780772747491,54.22474577766766],[-120.00743695600718,54.22469597346411],[-120.00712376195266,54.224568648287274],[-120.00681048793057,54.22444188472105],[-120.00652807328309,54.22435486086099],[-120.0063271264925,54.224330877630095],[-120.0061234990118,54.22432530220936],[-120.00596788181001,54.22436087301867],[-120.00592798953814,54.22444938268422],[-120.00605247494852,54.224601087366764],[-120.00612878786494,54.22471276134678],[-120.00615137783876,54.22486224050613],[-120.00614696433277,54.224932273811774],[-120.00606912100821,54.225069475417115],[-120.00589169020904,54.22517534293732],[-120.00564925761125,54.225237532742206],[-120.00530707499952,54.225269503467224],[-120.00498359045949,54.225292273629634],[-120.00452491279735,54.22528981397433],[-120.00420685464894,54.22522237658347],[-120.00397768668559,54.225127308075],[-120.00383645248257,54.224944982941345],[-120.00376980173723,54.22471407942011],[-120.00362175905857,54.22463144920264],[-120.00338687811384,54.2246153311549],[-120.00313941236341,54.22473852712031],[-120.00301014595973,54.22488442219378],[-120.00291497618555,54.225021331366385],[-120.00290576866959,54.22515069735673],[-120.00283038977464,54.22525767252246],[-120.00268380438507,54.22540327679183],[-120.00243207585011,54.22559537962351],[-120.00213493899543,54.225728479313375],[-120.00173670846227,54.22582734289846],[-120.00142630374957,54.225879416745336],[-120.00129796570492,54.22588655184309],[-120.00122214435392,54.225890666527114],[-120.00122203272993,54.2257855752424],[-119.99987094536799,54.2278558986973],[-119.99992844478982,54.250123232789804],[-119.99931526596804,54.34311052560325],[-119.99966694523232,54.49997260878071],[-119.99951683725754,54.74998859298948],[-119.99928681244211,54.99999578653533],[-119.99941180254012,55.05132163149518],[-119.99980685136008,55.2495177856808],[-119.99929263461331,55.48024813288398],[-120.00063939640023,55.7496587899139],[-119.99925034722276,56.00000990073668],[-119.99949364693383,56.250414413031066],[-119.99968051049284,56.49996084338844],[-119.99956060056219,56.7501540440749],[-119.99950814267358,56.804592761763516],[-119.99924365618268,56.99983570330618],[-119.99955928928506,57.24995844568433],[-119.99972290280074,57.32231605321823],[-120.00004047110602,57.4999575106876],[-119.99994744942182,57.583920911867494],[-119.99968832957931,57.74977540023442],[-119.99887952328696,57.94006017909471],[-119.99860105725239,57.9995493553739],[-119.99969047112869,58.2499030141121],[-119.99992919459753,58.500148069477255],[-119.99942683014221,58.75004424864679],[-119.99922793866786,59.00005016675553],[-119.99919810921595,59.250067449920515],[-119.99921938799707,59.48309749189664],[-119.99922124514032,59.49997161582289],[-119.99919916152649,59.74993694679287],[-119.99920330699027,60.00007332274973],[-120.66830177315488,60.00004752340259],[-121.17493753616544,60.00008972672921],[-121.62033779612963,60.000107243884386],[-121.99963791698053,60.00008299214441],[-122.01531958865687,60.00008709974107],[-122.24976138746257,60.000233353740526],[-122.500494708644,60.00027833842734],[-122.75045247185479,60.000308753270645],[-123.00051482170832,60.00032043545869],[-123.25060350553646,60.0002031589888],[-123.50058714865527,60.00030563815777],[-123.75104376880026,60.000376421992414],[-123.80447834961902,60.000347886311964],[-123.99986584789852,60.00009486749453],[-124.41682898051569,60.00008003567211],[-124.87122148508816,60.00009736628174],[-125.46239518559247,60.000090833536774],[-126,60.000083716676635],[-126.56390405060563,60.00007780784625],[-127.1180194087016,60.0000933348387],[-127.72921450744029,60.00008774269539],[-127.73015237781816,59.99480088072238],[-127.72785486102738,59.98084891782212],[-127.7232004876454,59.97124709027911],[-127.72161969666331,59.95466748820463],[-127.72119212629603,59.948857812220176],[-127.72545239505156,59.94362074203644],[-127.72780524158581,59.94246663755033],[-127.73445019499954,59.940521414165865],[-127.7425382878244,59.93748681496175],[-127.74525599269201,59.933753544662565],[-127.74410994009436,59.923605564133986],[-127.7427978629373,59.91529601532871],[-127.73890582305498,59.907801673534586],[-127.71834967799971,59.898172451895846],[-127.7022557111261,59.89597468012933],[-127.68851194889334,59.89603288903639],[-127.67742365388689,59.900918195547035],[-127.67654087520629,59.89830064440764],[-127.67520348865654,59.89204342504615],[-127.67209139631822,59.88722047985109],[-127.67179429327199,59.881463961021694],[-127.67467480345593,59.8792155578433],[-127.6778966139526,59.87696301419065],[-127.67994215431366,59.87357251667778],[-127.67878006716373,59.86931149458199],[-127.6744854920875,59.866257954441686],[-127.66658595842095,59.864273217899395],[-127.66204253748612,59.86054733114407],[-127.66133472066458,59.85616391397257],[-127.66218068125498,59.85068215626707],[-127.67186579948626,59.851916780458296],[-127.68260554950638,59.85421802985628],[-127.68881063568581,59.856618238696164],[-127.69591582170438,59.85866530720397],[-127.70465545791721,59.85876619778226],[-127.71426818713815,59.85434698422047],[-127.7177081897127,59.84867103420253],[-127.719870630428,59.84208379727895],[-127.72858006048665,59.83807073627243],[-127.73776608040762,59.83468118431382],[-127.74643131424013,59.83266544307303],[-127.75654026262008,59.82994709062469],[-127.76063816951142,59.827114775043185],[-127.76392029189363,59.82371667448951],[-127.77119622948757,59.817838199307],[-127.78505724373612,59.81234345893785],[-127.79389601816949,59.80917964804138],[-127.79856648713894,59.806743882001406],[-127.80494741750123,59.801433175296985],[-127.81077941184722,59.79664226117126],[-127.8145960577135,59.79256122181431],[-127.81545587075264,59.79135319576014],[-127.81517631320237,59.78370776178548],[-127.8104221457231,59.77747928268749],[-127.80609188843701,59.77359389559072],[-127.8037624669143,59.771788266709095],[-127.79949948816763,59.76651609605509],[-127.80301509642126,59.763573259267076],[-127.80913072502233,59.76060569231501],[-127.81012185091058,59.75677753148329],[-127.80576127273493,59.75197488472555],[-127.80062189024207,59.74746114775587],[-127.79593303127899,59.742878495300594],[-127.79229758804689,59.73613170176348],[-127.79090608250523,59.73192053432963],[-127.79089956842363,59.72547816568702],[-127.79188712344433,59.72147048651272],[-127.79246393802303,59.71861080775633],[-127.79461777398096,59.715631891546984],[-127.79530868697442,59.71288772863819],[-127.79089761723468,59.709615326934944],[-127.7875193759672,59.706680485489485],[-127.78740840276338,59.70360478364319],[-127.79047017684142,59.700776321287464],[-127.79169403130265,59.69705369690985],[-127.79191411794176,59.69380284646865],[-127.79076427383195,59.69325079003012],[-127.78283605571045,59.689321634484784],[-127.78008519032981,59.684957189711994],[-127.77794338156163,59.681898531442194],[-127.77512060291717,59.67867759307699],[-127.7700763804654,59.676501501910764],[-127.76505326767439,59.67494576106605],[-127.76140554540503,59.673903287363906],[-127.75216866294427,59.67106876646764],[-127.7472447328789,59.66906133541563],[-127.74520833608784,59.665542158411924],[-127.74405019945819,59.661454200046194],[-127.74088708676588,59.658057075944704],[-127.73864826476152,59.655224149321484],[-127.73515795361182,59.65206493665335],[-127.73442112873659,59.65030182430793],[-127.73816655956638,59.647754147529014],[-127.74472767714568,59.6450091966643],[-127.74815829550988,59.64315791800615],[-127.75036771709027,59.64177172546984],[-127.75140956594767,59.639311641332014],[-127.75113748030842,59.634744987607505],[-127.74970441562152,59.629113437151084],[-127.74965329339614,59.62762972856931],[-127.74991011832421,59.62522455864278],[-127.75101574246608,59.62465290232361],[-127.75703416261562,59.622651917939386],[-127.76598625281585,59.620919344014226],[-127.77476773855872,59.61747013135564],[-127.77838129495335,59.614527304449275],[-127.78132554290387,59.61176388344852],[-127.78552057421773,59.60933520202138],[-127.78866642416608,59.60906990074309],[-127.79283818452018,59.60914215247832],[-127.79440500838433,59.60884308226432],[-127.7954618231223,59.60689533428758],[-127.7976135050132,59.60407883692075],[-127.80063324187572,59.60039648315273],[-127.803010963044,59.597585994152375],[-127.80318183640972,59.59609948347737],[-127.80601323829339,59.593444998123424],[-127.80819968876624,59.59304776647183],[-127.81328263725923,59.59211800377617],[-127.82433674560721,59.5988012378242],[-127.83067493265008,59.60575276752255],[-127.83555510793258,59.60981763691261],[-127.84859259803997,59.61202900356474],[-127.86157381764315,59.61269258702114],[-127.88305221820521,59.61168389019142],[-127.8997082804711,59.608254820354325],[-127.90899492033482,59.60376454098096],[-127.91761611431099,59.5996246751556],[-127.92438588891258,59.59710222126872],[-127.93023175610553,59.594016509919044],[-127.9327680744472,59.58988806686134],[-127.93420679263018,59.58359784519917],[-127.94076951805935,59.57605777456817],[-127.94964583363941,59.5700862720284],[-127.9606874297383,59.56488431425666],[-127.97239154825134,59.562244859605],[-127.99295915083493,59.561798482897686],[-127.99937820800666,59.561949162506785],[-128.00263682734197,59.56321563652372],[-128.01167969206656,59.56655745835637],[-128.02377321926122,59.56551826647551],[-128.03541262727958,59.56460161438421],[-128.0465067294648,59.56641782006556],[-128.05736782477874,59.57177211263944],[-128.0674015341083,59.5784334360298],[-128.07473804302967,59.584846553720965],[-128.07498137227722,59.59096956306662],[-128.08202937333638,59.609622463576585],[-128.09424069158484,59.61572809716023],[-128.1099139168369,59.62312993173052],[-128.12663602331364,59.6296774191301],[-128.14783889466347,59.6340305893384],[-128.16116142990816,59.6376214132097],[-128.1698459040089,59.63803519982485],[-128.17992728510816,59.63703193526954],[-128.19706370829843,59.63418920824639],[-128.21513334634574,59.63026776146352],[-128.23309826708984,59.625949713433194],[-128.24648098157508,59.62381782675202],[-128.2575487302636,59.61960773189267],[-128.26763818021877,59.61802204030142],[-128.2794567526169,59.61913363015349],[-128.30221096105038,59.62501263894195],[-128.31482440003987,59.63048123594191],[-128.32957532709042,59.64065518813711],[-128.3376731788782,59.6506517800204],[-128.3480849806605,59.65878242167896],[-128.35132127069576,59.660410605334285],[-128.3671336720687,59.66074573466424],[-128.38773598503343,59.650009428361365],[-128.39868026843547,59.645789894331415],[-128.42235022274846,59.64313043709419],[-128.41530947046078,59.635135890708796],[-128.4059107688569,59.62678600322761],[-128.399482315876,59.621767876628304],[-128.39321236733267,59.619671249781966],[-128.38356380097255,59.61732633598521],[-128.38951975978713,59.613759862899535],[-128.39149573372222,59.611197419653934],[-128.3893059890434,59.6086075838814],[-128.38048360172223,59.60478168496089],[-128.3722076976714,59.60187275312531],[-128.36860114933958,59.597273306587276],[-128.36863675817477,59.59126216409573],[-128.37172632371636,59.584884103721244],[-128.37773094920055,59.57914001426769],[-128.38239221661348,59.57751261705575],[-128.39760841064154,59.577610899035726],[-128.4100243300929,59.5721415452937],[-128.41258680684768,59.563747335532774],[-128.42732698658946,59.56469630040782],[-128.43435614710017,59.56279180889092],[-128.43165338957795,59.55785449707632],[-128.42966682140377,59.551150170897934],[-128.43268110154926,59.547399495665296],[-128.45609970454566,59.54267759100409],[-128.46941408998973,59.54137978285236],[-128.47435882827818,59.5419215865267],[-128.48740469152202,59.54267825157035],[-128.50115563954836,59.54207137010233],[-128.51641588716225,59.539123395060074],[-128.53304895987586,59.53503297304395],[-128.5435635357502,59.532798287821365],[-128.55347208058637,59.53257141384763],[-128.5605710748092,59.53232369581557],[-128.5868962481493,59.527129840782706],[-128.59390797917257,59.52516345654868],[-128.6220108554261,59.52065840551799],[-128.63126952098753,59.518872572034816],[-128.6388425239995,59.51673126763908],[-128.6656310614963,59.501994873072064],[-128.6682413295445,59.50055791957668],[-128.67437219434393,59.496930755754015],[-128.67545038878504,59.49275305731087],[-128.67553452697516,59.48743387843511],[-128.6770592622239,59.48326560530083],[-128.681936145414,59.480652067991834],[-128.68894455402557,59.47788006323549],[-128.70272347802705,59.47336531306726],[-128.7154660420941,59.470318057099455],[-128.72515582937714,59.4684723419438],[-128.73382027728556,59.46752791925204],[-128.7395404228603,59.46824273864886],[-128.749069805515,59.46970960128819],[-128.75447450198445,59.4688644899285],[-128.75968524155786,59.465800617291315],[-128.7662554242265,59.46153073490577],[-128.7730549774529,59.45686905743189],[-128.7825480458682,59.452377910935084],[-128.7917982249753,59.4488627250657],[-128.80565651758266,59.44490273741104],[-128.8126369830607,59.44315060508986],[-128.82039015438875,59.442606042571754],[-128.82804154345004,59.441199354516456],[-128.83670037104238,59.43978959800649],[-128.84669788751157,59.439188555448],[-128.8564803904567,59.437736443534234],[-128.8661562576749,59.43547604540775],[-128.861085247189,59.42635841033885],[-128.86268937254496,59.42323011508765],[-128.85604121160674,59.41497290381507],[-128.85406502109376,59.41073997571223],[-128.85378978227064,59.39414601208485],[-128.85135679017463,59.39082233767747],[-128.84880031752706,59.3888147324257],[-128.84640574393745,59.3819994778782],[-128.83981250011192,59.380434662778086],[-128.8352393235778,59.378306336605334],[-128.83494613151763,59.37453377432491],[-128.83217200013337,59.37206260278374],[-128.82591626381793,59.37032834955485],[-128.82156119384678,59.36894189373106],[-128.82091536948826,59.36671496986311],[-128.82353873347634,59.362604044173565],[-128.82322583610556,59.36037934852015],[-128.81776504595214,59.35818775195705],[-128.813861232086,59.34702211879722],[-128.8125507082576,59.34409810728538],[-128.80876374949426,59.34260085997626],[-128.8043111432763,59.34046932823647],[-128.80277723307296,59.33766675778898],[-128.80338298451127,59.33377725955641],[-128.80051636761888,59.330111171089676],[-128.80055589778527,59.326674007479106],[-128.7937811360567,59.32253832417768],[-128.79338881924446,59.31812944394599],[-128.7774232468393,59.306694632967044],[-128.77810447472373,59.305781394838455],[-128.7877290046476,59.30523650072596],[-128.7932296603424,59.30348812976937],[-128.79306162262023,59.298912937696166],[-128.79042516307624,59.29512533050043],[-128.7819393852845,59.29424426321864],[-128.7765130888828,59.29016187410412],[-128.77153439412413,59.28631319422959],[-128.76662223621005,59.28578215922362],[-128.7603646284447,59.28570064345354],[-128.75020809051037,59.27651298383211],[-128.7446977877918,59.270830223721696],[-128.73999922764685,59.263035489968516],[-128.73353281203322,59.26238134733501],[-128.72625402999637,59.26378469830372],[-128.71930023634638,59.26581984865346],[-128.70622210628989,59.266571865258854],[-128.69279861285472,59.26788702343306],[-128.68774991189704,59.26946958913795],[-128.67641043155137,59.27302703135331],[-128.66418718010638,59.276006972716985],[-128.651333573466,59.2763536217703],[-128.64306919175078,59.27608053674673],[-128.62070882812327,59.27695696547015],[-128.60648682739796,59.27883641516109],[-128.59499053468218,59.27815379830297],[-128.58779084939812,59.274799434278926],[-128.57841916154393,59.26800477702049],[-128.55836674669328,59.247477379334825],[-128.55518333615447,59.24472153006718],[-128.54876908522093,59.24160274599379],[-128.5398813742517,59.23943762628123],[-128.52089085832026,59.24037093319513],[-128.51196761017133,59.240147197739866],[-128.50985538453583,59.23973603760091],[-128.5045011940082,59.23415890522941],[-128.50291403407687,59.22992512370329],[-128.50519132096107,59.22764450880336],[-128.51012891218681,59.22618770658043],[-128.52075984340485,59.22458167797051],[-128.52860849520866,59.22268419738371],[-128.53815181062808,59.21953200774221],[-128.5493916555306,59.21495385082158],[-128.55314401246596,59.21119726356229],[-128.55566510649345,59.20760732907105],[-128.55737464115717,59.20566911738955],[-128.56993227386556,59.20190109678681],[-128.5675141141929,59.19411359397748],[-128.56470441931273,59.18940890756565],[-128.56274281529124,59.187053443168395],[-128.555889376724,59.18415945343041],[-128.5434469147918,59.18220488479527],[-128.53525947785255,59.1793076157101],[-128.52543216611346,59.174848398082034],[-128.517071117806,59.17514552262041],[-128.5090751409373,59.16858353776182],[-128.51262602803482,59.163627074331075],[-128.5109254143082,59.159665729122764],[-128.50673154338045,59.157755051388044],[-128.5041460656975,59.15356702925864],[-128.49723813916214,59.14844152967424],[-128.48998210606945,59.14416727335827],[-128.4776286153223,59.13889672032137],[-128.4955272087138,59.12361116362205],[-128.503933672755,59.12050904133955],[-128.51413099541324,59.11668129490004],[-128.52132341750107,59.11288100157042],[-128.52598449555146,59.107760246910935],[-128.52765043431324,59.10221799297453],[-128.52332366347503,59.09619263264331],[-128.51925376864943,59.093992657069926],[-128.51592349074792,59.093927863249924],[-128.50932462113929,59.09594574678492],[-128.501808727147,59.09927472250628],[-128.48631797079136,59.106569099484766],[-128.45587473999842,59.110911120729],[-128.42969414632063,59.09834022052622],[-128.42683593609388,59.09203441856338],[-128.42039731718586,59.082042822060004],[-128.41861426879032,59.0775161498133],[-128.4190281645868,59.074029607484945],[-128.4230821799115,59.07153968567791],[-128.42933953714294,59.069855727203766],[-128.43282721241522,59.06782505372159],[-128.4325609310829,59.064907951466296],[-128.41633790819526,59.045983041074265],[-128.41264792842122,59.04236219170555],[-128.41281750525232,59.03978812562087],[-128.4242504538643,59.029904439784055],[-128.43252620564144,59.031843414890254],[-128.43858407320823,59.033767452451094],[-128.44448263292895,59.032943189177686],[-128.46494337193545,59.02557362208503],[-128.47057592448695,59.021372831161806],[-128.46805306845422,59.01500862517847],[-128.46613928205198,59.01127642851499],[-128.46910777046585,59.007177627606964],[-128.48136054154025,59.00050166436066],[-128.48169610159036,58.9999831795406],[-128.48304135679433,58.9978102950049],[-128.48395421943698,58.99439570842457],[-128.4839716803295,58.99221994253877],[-128.4846797310928,58.986849405154004],[-128.48281497068183,58.98507637939355],[-128.48270618578715,58.98489856569048],[-128.48459650431388,58.983479908725094],[-128.48869860400123,58.982227782352574],[-128.4919117829441,58.98137825876218],[-128.49600437859905,58.98126772822291],[-128.49977209222467,58.98036295587201],[-128.50365829561395,58.978143464779436],[-128.50534956331362,58.97397742606761],[-128.50558818972064,58.97179765099459],[-128.5054943697955,58.969237432947935],[-128.50506741134066,58.96734852570932],[-128.50308965341645,58.96562284266411],[-128.4994496953349,58.964700583076564],[-128.49823588045388,58.964533981563086],[-128.49293856535436,58.96343506031],[-128.4863183304717,58.96217122134964],[-128.4816829028086,58.961356487159456],[-128.47793364051066,58.96026487081933],[-128.47727328065304,58.959863337868725],[-128.47574592956184,58.957401047779655],[-128.47532607458524,58.95506253736352],[-128.4753398933253,58.95351619695924],[-128.4767954245195,58.951404426554866],[-128.47681562997212,58.94842875278204],[-128.476283732458,58.9462630934498],[-128.47498520803228,58.94311356670237],[-128.4752074038629,58.94294774720334],[-128.47346644122467,58.939914098724365],[-128.47194765994726,58.93659778164869],[-128.4704174392602,58.93454008025498],[-128.46954780802085,58.933054696680976],[-128.47000031811908,58.93173418808561],[-128.4716762032599,58.92974438775083],[-128.47467768706272,58.927397999230564],[-128.48055441031434,58.92404660744954],[-128.48476266207146,58.922567951260255],[-128.48851994189303,58.9218344341902],[-128.49360665169877,58.92122037653698],[-128.49692168401978,58.92030593408775],[-128.5041209964769,58.91728887297381],[-128.51209060488614,58.91433816073544],[-128.51828160279817,58.91262423193777],[-128.51840763556598,58.910401743602726],[-128.51842705310878,58.907543045871044],[-128.5185498865617,58.90565320488577],[-128.51878424063818,58.90388715032851],[-128.52276141285796,58.90326545912658],[-128.52729278503557,58.902237905583156],[-128.5320432814636,58.90121512505584],[-128.53481191199936,58.89950989635969],[-128.53735973630413,58.89797050528279],[-128.54101629353042,58.89558350640124],[-128.541474142049,58.89272566378371],[-128.5404970357693,58.8900922795422],[-128.54149798617215,58.889237736883665],[-128.54657098245647,58.889017380183525],[-128.54944152771955,58.88890988233297],[-128.55032458634165,58.88862374017341],[-128.5532073686007,58.885765495170496],[-128.55344880199516,58.88257012490033],[-128.55302878182727,58.87943208204355],[-128.55172211839874,58.876679148615956],[-128.5497539799381,58.873884647050104],[-128.54976289851973,58.87256322024729],[-128.55087483171386,58.87085267048604],[-128.55309490250625,58.8686270406278],[-128.55509508448498,58.86600102977518],[-128.55554212085897,58.864860159341575],[-128.55511221520223,58.862917799236186],[-128.55379997198366,58.86102791385095],[-128.55248948961915,58.85925483452255],[-128.55106767319322,58.85742091560843],[-128.55019779258703,58.85582833529319],[-128.5514167219104,58.85434051050059],[-128.5555038152234,58.85286189088307],[-128.5608004005446,58.85132449353367],[-128.56565573291962,58.84989405343606],[-128.56709203236215,58.84887835698918],[-128.56920054642669,58.846762446855145],[-128.57086635689762,58.84407962698222],[-128.57164797877903,58.84179095896611],[-128.5716654383623,58.83899541146429],[-128.572007986696,58.83682288884272],[-128.5720181816588,58.83505210302985],[-128.57235808323523,58.83316724858513],[-128.57600125417017,58.831453705582504],[-128.58107449519562,58.829919714006664],[-128.58780005520472,58.828219357563476],[-128.58802179132758,58.82775677269394],[-128.5916723910994,58.82421814878963],[-128.59597885843235,58.82119721583173],[-128.59862980775424,58.81948397399497],[-128.6013944786933,58.81633946860741],[-128.60394127985268,58.81337882837917],[-128.61012639262006,58.80829932340361],[-128.61498314214379,58.80424266593993],[-128.62204329784004,58.79973900500373],[-128.6297590709269,58.79562675639813],[-128.63053039108772,58.79540514901165],[-128.63483216267846,58.792544852293574],[-128.6382531689513,58.78861399657052],[-128.63969447176092,58.785575262154566],[-128.64113972712488,58.780954658987625],[-128.6412519482017,58.779748170632665],[-128.6410474262808,58.77684022950713],[-128.64138320639563,58.77444308277075],[-128.64226794411277,58.77215212284859],[-128.64304058615434,58.7713552282736],[-128.6460209484,58.768322534576946],[-128.64822742730524,58.76563736728802],[-128.65098267461576,58.76330096872261],[-128.65340530227542,58.76164504230961],[-128.65780236636405,58.761020004280084],[-128.66351496712386,58.76130375457718],[-128.66922465268632,58.76217149865532],[-128.67098580703356,58.76239757640994],[-128.67460708865755,58.76342290980343],[-128.67779205870926,58.76474433371726],[-128.68284770496297,58.76423134703678],[-128.68977066948347,58.76434634659923],[-128.69537012529716,58.76561064657966],[-128.6983324188915,58.76777186044991],[-128.70239946702105,58.768580936529624],[-128.70899534548334,58.768584632048345],[-128.71547798128591,58.768356589678284],[-128.72327947457933,58.76949494089482],[-128.73239988758965,58.77166693814222],[-128.73547591093765,58.77253089475822],[-128.73954288545312,58.77263784837509],[-128.74657954625033,58.772469085859825],[-128.74756627915025,58.77229637976518],[-128.7522926796887,58.77155377261825],[-128.75712959622595,58.771725520044654],[-128.76273343575727,58.77337352275452],[-128.7686710465244,58.77372025726306],[-128.77284908407836,58.77366217890815],[-128.7762553967785,58.773889352814344],[-128.779994851863,58.774577015232566],[-128.78504767278594,58.77468045700759],[-128.78977511456605,58.774511751007275],[-128.79285202932203,58.773316162828486],[-128.79251790754194,58.76982667573035],[-128.78977136389815,58.76668328032206],[-128.78812102211745,58.764739754564644],[-128.78713125378883,58.76331297582943],[-128.78657673751283,58.760627968959035],[-128.78690751016703,58.75914718762034],[-128.7871250669672,58.75691375031007],[-128.78635442767128,58.75451181681044],[-128.78525483307874,58.7527996929209],[-128.78690435373568,58.75280186464634],[-128.79525076397002,58.75142627310732],[-128.8045872982846,58.751018411279055],[-128.81216962130836,58.752560595283214],[-128.8145869729308,58.75323862626007],[-128.81953147823276,58.75472711067972],[-128.8241456122524,58.75569199332139],[-128.82722528116133,58.75569095032067],[-128.83315723231476,58.756088863847495],[-128.8367825825938,58.755626838976106],[-128.83556859830654,58.75351299394301],[-128.8336998924562,58.752320572800514],[-128.83325539618272,58.75065806640834],[-128.83644013632752,58.74905475842578],[-128.84115992772286,58.74807544261758],[-128.84192247036157,58.745740618910624],[-128.84422201858652,58.74247487193082],[-128.84805976843157,58.74012960666202],[-128.85310839370868,58.73870256328036],[-128.85859475401745,58.73766159564712],[-128.8640830241705,58.73674619287633],[-128.86836594226375,58.736853658473514],[-128.87166321415484,58.737709834738034],[-128.8772695477733,58.73970352462311],[-128.88078956871763,58.74181311331037],[-128.88506575154764,58.73992484926964],[-128.8894518979646,58.7379711934644],[-128.89658204186694,58.73585111334077],[-128.90283246980687,58.73412693213128],[-128.90425845496227,58.733781898873964],[-128.91061823123124,58.73194715650284],[-128.91061425386275,58.73125515572765],[-128.90873876743947,58.72846403963183],[-128.90520758393924,58.72423427151708],[-128.9034448166239,58.72241141773063],[-128.90223229432397,58.7212688747641],[-128.90069174181568,58.72001648167384],[-128.89760964394594,58.71767345947272],[-128.8970544106288,58.71641800421708],[-128.89803617001013,58.71430290297254],[-128.8981368678568,58.71259306647098],[-128.89439274085277,58.70928446165195],[-128.891649750404,58.70860586172366],[-128.88615648241193,58.706835224923346],[-128.88538854144966,58.706438099997605],[-128.88142802996754,58.70387078434478],[-128.87900908110058,58.701863897972046],[-128.8777975139757,58.70021787564872],[-128.87855644215477,58.6980447837188],[-128.88107317040436,58.69587037365473],[-128.88632639848413,58.69260423349465],[-128.89080953961633,58.689911502947375],[-128.89398559527726,58.68796547827299],[-128.89551967904922,58.68761821884464],[-128.90143727326435,58.68646735227288],[-128.9077879462484,58.6846328846589],[-128.90975729999673,58.68326054859637],[-128.91117021065014,58.680686799653245],[-128.9115983784283,58.67868239639198],[-128.91652354948695,58.67719262316519],[-128.92441812308007,58.67718459391945],[-128.93143735154004,58.67813870228387],[-128.9395528240564,58.679329370671255],[-128.9428470439394,58.679662460082326],[-128.95106825246071,58.679996334411875],[-128.9540296751779,58.680048781670536],[-128.95928306146175,58.67883788889265],[-128.95972207457032,58.67861261459755],[-128.96124573703614,58.677006540906596],[-128.96757898790216,58.67265302195315],[-128.97566668020488,58.669384215299424],[-128.98277368324287,58.66622634107466],[-128.98418148066062,58.66393948585293],[-128.984279276186,58.661645479688644],[-128.98688898034916,58.65900861486643],[-128.99541586988926,58.65579183500652],[-128.99836369958564,58.65436061010931],[-129.0063441968904,58.652170796469],[-129.0143318646915,58.65089708348935],[-129.02243255730465,58.650312427181674],[-129.02670276348937,58.650298125346815],[-129.03558030225403,58.65079185640969],[-129.03579720262746,58.65050838169424],[-129.03490093124785,58.64816464634743],[-129.03333196002256,58.6433104101723],[-129.03222228872212,58.641537682254956],[-129.03089222051764,58.63954518574232],[-129.02956357286035,58.63748973976091],[-129.02702987503042,58.635667904406034],[-129.02493773592116,58.63396200945007],[-129.02437644378224,58.632132084600734],[-129.02327469996175,58.63088042492732],[-129.0193231671643,58.629458567112934],[-129.01405512615662,58.62787713676055],[-129.0095548879853,58.62588303218506],[-129.00505288377366,58.62405959252394],[-128.99978301556996,58.62172276069307],[-128.99517269813288,58.61928130455265],[-128.9997541356529,58.61772408132334],[-129.00761515180218,58.61479981554209],[-129.00946952681804,58.613994745749665],[-129.01439222250883,58.61393030192545],[-129.02227344399583,58.61419518866375],[-129.0305785681338,58.612922298044644],[-129.03570939026133,58.611306601520816],[-129.04292317789262,58.61020117146953],[-129.0483812779326,58.60893712710355],[-129.05645840919564,58.606688116400235],[-129.0625751251406,58.605696225830584],[-129.06421053770268,58.60534469878296],[-129.0749062052491,58.602298354659425],[-129.08187725539253,58.59912919498142],[-129.0862225906998,58.59609139853375],[-129.09166408093915,58.593217183892705],[-129.09491979342718,58.59058143271057],[-129.0968524935582,58.586807496248234],[-129.09615789256546,58.58268919785567],[-129.09580602406334,58.580234720795346],[-129.10091343635352,58.57708016874292],[-129.1096477854852,58.5760260873901],[-129.11019258930628,58.57602256288759],[-129.12718582664834,58.570598266029066],[-129.1309834221951,58.567724422269436],[-129.13216916668614,58.566241047265656],[-129.13498935496776,58.56451311394208],[-129.14065376610955,58.56266523713852],[-129.14697946258664,58.561673515042536],[-129.15025006893057,58.56109414666593],[-129.1504488859229,58.559327997854496],[-129.15030534428954,58.556293622526894],[-129.15026318863917,58.55217842775594],[-129.15164511453273,58.54902767647778],[-129.15442134832563,58.54353471132046],[-129.15462063206513,58.54165174614077],[-129.1523060343829,58.53982738375905],[-129.1478180062937,58.538700651838305],[-129.1443182761445,58.53796421630048],[-129.13578774301274,58.53679619526766],[-129.13261550563854,58.53629452506075],[-129.13185077594184,58.53629425794455],[-129.12922296810302,58.53544738814923],[-129.12832051925668,58.53270028856334],[-129.12893965675528,58.529100198899485],[-129.13043152006816,58.52595622430386],[-129.13051281671483,58.52309653227857],[-129.1295991204028,58.519325259212486],[-129.12926846529857,58.51898242835724],[-129.1292604513054,58.518074952302605],[-129.12879409592728,58.515389727164695],[-129.127573478396,58.513279136218436],[-129.12689835967086,58.51139856660551],[-129.12556429241886,58.50911086572461],[-129.12424678713865,58.508314553787216],[-129.12084622729907,58.50661376279005],[-129.1196311336773,58.50506916534512],[-129.11907363483584,58.50387783634299],[-129.11720408135008,58.50244717916616],[-129.11687219929894,58.50193361665852],[-129.11935839473563,58.49975544863145],[-129.1212951030075,58.49700580682615],[-129.12257124093065,58.49374120715912],[-129.12395231788005,58.49037532743591],[-129.12568058093515,58.48876273968574],[-129.12770311731688,58.48413288746642],[-129.12951363968926,58.479957247871155],[-129.13067529135853,58.47674918286045],[-129.13579286216753,58.47610926388954],[-129.14178825221373,58.476086760124616],[-129.1512765503575,58.47673739722922],[-129.15858256440748,58.47723173833346],[-129.16050902042463,58.4739066285101],[-129.1637290782135,58.469436886773465],[-129.1654283893239,58.46572164212097],[-129.16779327839203,58.46279953997412],[-129.17103620078976,58.46089919086699],[-129.1780972987569,58.45910663208572],[-129.18515946473536,58.45742150337721],[-129.18580946635677,58.45719049301412],[-129.19034205051435,58.453803428511264],[-129.19195195580332,58.451914181906496],[-129.19380375267062,58.451852405853366],[-129.19904670099913,58.452914450613875],[-129.20502575338344,58.452260390378235],[-129.21023936679438,58.45098623109693],[-129.2150033937206,58.448967713016685],[-129.21832847456335,58.444844572897374],[-129.21918979945622,58.44397930718627],[-129.2211485866273,58.44403141747144],[-129.2270672160984,58.446864534986695],[-129.23014129475155,58.4487949865859],[-129.23265416953288,58.449471719065286],[-129.2388563956991,58.44905342865906],[-129.2397276157285,58.449041505426855],[-129.24548730055034,58.44804939986343],[-129.25144998520983,58.44619842299753],[-129.25511977785544,58.44389026207513],[-129.2562970511182,58.442459948494836],[-129.25376069842775,58.44018461957053],[-129.25001890885952,58.43729126912908],[-129.24672050975082,58.434953317068064],[-129.24396264955118,58.432287780327975],[-129.24206731510395,58.4289724333293],[-129.24135614876002,58.42469405367919],[-129.24129500649698,58.42029224145391],[-129.24286778182912,58.415941034139344],[-129.24669954690043,58.40981010066116],[-129.24915183152422,58.406201489989556],[-129.25184973132866,58.40464474053592],[-129.25973849132987,58.4011293371954],[-129.27945354431347,58.395672763604864],[-129.29389224711295,58.394071572412415],[-129.31276192937307,58.39084126586005],[-129.32514436529584,58.390158874438505],[-129.33742099125865,58.38957680737347],[-129.34926413097128,58.38906729441165],[-129.3570699162302,58.387713785519445],[-129.36096500654298,58.38661018836681],[-129.37191913419153,58.38512331023449],[-129.37474889442288,58.38527713005534],[-129.38290224228302,58.38524341547796],[-129.3894074568293,58.38440592320549],[-129.3923441727741,58.384394921712016],[-129.40104487472786,58.38457997953342],[-129.40661932705797,58.38637132485232],[-129.41045977367745,58.38812547437456],[-129.41235405230069,58.39057588515998],[-129.42168890403713,58.389844890875366],[-129.42821690067927,58.39002946365867],[-129.43355062763692,58.39039693845297],[-129.43377664854106,58.39080458502663],[-129.43555651348288,58.39284422816907],[-129.4387807253883,58.39659950979173],[-129.43970352511454,58.39939794298514],[-129.44094714246708,58.4017298437742],[-129.44463806007968,58.40702795415963],[-129.44631011539073,58.40907927355375],[-129.44820927994272,58.41163705602522],[-129.44881664483177,58.41494687048373],[-129.4485264648862,58.41677874634835],[-129.44996107071358,58.41768573508714],[-129.45693575678007,58.41833396325953],[-129.46260572407488,58.41887154475805],[-129.46891615138549,58.4188351863285],[-129.469052651016,58.42026070756503],[-129.47177952233773,58.425906698874996],[-129.47427241700353,58.430749821789966],[-129.47528357567992,58.43239550518889],[-129.48114049088807,58.43116594595931],[-129.48839190360292,58.42928889292954],[-129.49373484652307,58.42966291604943],[-129.49791770462645,58.43203517778227],[-129.50216141879005,58.43183518662118],[-129.5116061994023,58.430753755409995],[-129.5171360717723,58.429692897913064],[-129.51810134464625,58.42894868097109],[-129.5209025382933,58.427662201135256],[-129.52499724293125,58.425640791171595],[-129.52789633085496,58.42390219763325],[-129.5314364547352,58.4215984826743],[-129.5345417960162,58.41924315084105],[-129.52774099835182,58.41676079742225],[-129.52498642488038,58.41517905607546],[-129.52275807215239,58.4128555003835],[-129.5213778616898,58.409323375486466],[-129.52126613313052,58.40423020490898],[-129.52125944042362,58.40388884407705],[-129.52134379327686,58.39765813356249],[-129.52240885435558,58.39159057870917],[-129.52299095774433,58.38833082526858],[-129.52317319166667,58.386789179270025],[-129.52235099042647,58.38381781292082],[-129.5215483331198,58.381942423652255],[-129.52267163345698,58.37861463420792],[-129.5265298492788,58.37608705399925],[-129.53299475759272,58.37346404409832],[-129.53857406055295,58.3702887791329],[-129.54069770101265,58.367995073132626],[-129.54423372605615,58.36093675596494],[-129.54513825967075,58.35750670536836],[-129.54641368084307,58.356295763205445],[-129.54981990216342,58.3532401450683],[-129.55408086816843,58.34955971685122],[-129.5540183225036,58.346703385099154],[-129.55392885952736,58.34276030922581],[-129.55985556759208,58.34077923947581],[-129.5686734863371,58.3369507454304],[-129.57767738895654,58.33197530504398],[-129.580985791371,58.329550577199406],[-129.58865867220106,58.32355826569655],[-129.59635649782012,58.318589381007136],[-129.60343254200603,58.314939854609875],[-129.6067049163151,58.31114036637089],[-129.60791559215912,58.30736018784854],[-129.60766652133722,58.30599182013129],[-129.60720692731732,58.30051295930269],[-129.60701612134295,58.296914223514],[-129.61107423843808,58.29442366723318],[-129.61776997885323,58.29323704593863],[-129.62241359318514,58.292518818065005],[-129.6258596600605,58.29157210934744],[-129.63004478025678,58.28977852372376],[-129.63431992744864,58.28722743899185],[-129.63438947272493,58.28574266733713],[-129.63138359951407,58.28250766358159],[-129.6290619725728,58.280584231568355],[-129.624439981899,58.27786907509811],[-129.62116840979374,58.277031628480984],[-129.61778960627277,58.276143072731095],[-129.61495189061003,58.27541961811957],[-129.60881604726305,58.27266383328872],[-129.6066008928366,58.27062039417441],[-129.60580695676214,58.26914090382895],[-129.60367151004246,58.2659000503644],[-129.6032760667138,58.26298096979928],[-129.60218139636493,58.262480116484454],[-129.59969767899034,58.262834286896414],[-129.59331094180783,58.26310417230594],[-129.59047696457986,58.26232623161981],[-129.58372755049098,58.26094283197365],[-129.5764198974575,58.25888201267054],[-129.56900532556423,58.25669785367784],[-129.5651856245119,58.25546932649239],[-129.5608252513802,58.2542370655797],[-129.55364161430822,58.25257618860506],[-129.55144435963518,58.25126840463213],[-129.54967503981797,58.24957185375857],[-129.54550616419726,58.24724673892775],[-129.54115683209682,58.24647189837279],[-129.53500510193444,58.24737088901003],[-129.53159399745044,58.2499138829388],[-129.52657260117434,58.252975355778496],[-129.5217157130561,58.25380374940422],[-129.51470890492118,58.25544308690156],[-129.50725820210417,58.25651853084745],[-129.4988289008841,58.25743034528424],[-129.49820854008112,58.25892021797839],[-129.49444711601615,58.26031213456119],[-129.48907628918616,58.26245565700198],[-129.48618819533198,58.264309886178744],[-129.48104067977877,58.26695947791313],[-129.47677676016627,58.27042169698132],[-129.475646607897,58.273398365807836],[-129.4742676029758,58.27489876313982],[-129.46999429154081,58.27800155970977],[-129.4594289435309,58.28080806027197],[-129.45480873984255,58.28289486766376],[-129.44785135472702,58.287332928609764],[-129.44689959045866,58.288705248612175],[-129.44439981459865,58.29398125225589],[-129.44135148143837,58.29896573956282],[-129.43921133840587,58.30046727222865],[-129.4313037746794,58.30662711995664],[-129.42778154778335,58.30967339649109],[-129.41992054328043,58.31280302301405],[-129.40480698909946,58.31694268376506],[-129.39153084159705,58.32078265966092],[-129.38407516981553,58.32254298705511],[-129.37736299216868,58.32354737149655],[-129.37399646217688,58.323335311559816],[-129.3677824868908,58.321765720771204],[-129.35819925049321,58.319812752162804],[-129.35645876532604,58.319424873168565],[-129.3493759459901,58.31757063695408],[-129.34447673285527,58.31684788532914],[-129.33967999532655,58.315277761590444],[-129.33356622477493,58.312958380964105],[-129.32756240585118,58.31065399859388],[-129.3232981061184,58.30854900447916],[-129.3202248921562,58.30638753185669],[-129.31758419032704,58.303828959287515],[-129.31714589038853,58.303606151858254],[-129.312012057199,58.30140549246956],[-129.31036806273465,58.30032281033013],[-129.30805824815198,58.29816028764769],[-129.30478941746543,58.29715346088805],[-129.30044085757797,58.29642465932066],[-129.29815687287373,58.295977539452885],[-129.28978241072517,58.29435874348362],[-129.27795948899103,58.29411743427537],[-129.27080614877892,58.294381522804855],[-129.26202023105105,58.293966053533275],[-129.25343296748576,58.292511940431005],[-129.2464658568953,58.2904790863597],[-129.23678179867312,58.287891398975376],[-129.22786451471964,58.285751846287475],[-129.2154177587437,58.27906017372795],[-129.20458272995202,58.27075680445551],[-129.19943683274036,58.266369297186635],[-129.1917789326797,58.26046013244447],[-129.17969891267808,58.25587724092442],[-129.17037841862046,58.255055433861564],[-129.1612614620255,58.25359932105755],[-129.1574536134239,58.25207179019928],[-129.14831953641718,58.2487825273573],[-129.1399529617963,58.246184466454835],[-129.11816767386168,58.24390721108919],[-129.0941146909035,58.242720855416806],[-129.08708295470603,58.243143238839366],[-129.07455514830883,58.246772525722726],[-129.06723530523777,58.25165621827536],[-129.06368025632625,58.25383948884966],[-129.06324635796096,58.25366971742411],[-129.05845160577795,58.25007783672402],[-129.0490893315654,58.24421803170778],[-129.03758399957692,58.24075977186878],[-129.02848217337598,58.239977247912435],[-129.02317530061345,58.23970159677366],[-129.0223080922733,58.23947857905232],[-129.0174175278443,58.236920626908905],[-129.0117731509881,58.23487349651854],[-129.00906224094,58.23401803074175],[-129.00212102484133,58.23209839852736],[-128.99106439631777,58.2299468179737],[-128.98435080864252,58.229332721605225],[-128.97872133131995,58.22928709925881],[-128.97719931593605,58.22768601592048],[-128.97251970882044,58.223639753460304],[-128.96546485531195,58.219879427342214],[-128.95993354045396,58.21754932383584],[-128.95267158557817,58.21539184615071],[-128.9447684640791,58.21432595858511],[-128.9389238653582,58.213924146884246],[-128.938923211154,58.213699602589124],[-128.9367459176212,58.21135797969336],[-128.93457235569582,58.20924979132398],[-128.93110814500727,58.20833747596811],[-128.92754151711375,58.20914291636472],[-128.92257157510826,58.21006865921472],[-128.9177020955489,58.20996805827447],[-128.91488686731455,58.20940050194224],[-128.914451241351,58.20853869612005],[-128.91303155347296,58.20551560362781],[-128.91161575577416,58.203453510756226],[-128.90501933363504,58.20294982333733],[-128.9008064184885,58.204505069789064],[-128.90080740423736,58.20484636636796],[-128.89962903734855,58.207871851625086],[-128.90028791812549,58.20976181191154],[-128.9002980056147,58.21295922752486],[-128.89900693915152,58.21444223548008],[-128.895547054081,58.21501994428099],[-128.88689090168995,58.21469448426649],[-128.88039781452756,58.21372923717493],[-128.8742270746287,58.212936419331925],[-128.87206449879397,58.213566557893984],[-128.87304026823074,58.213851055536416],[-128.87489278271585,58.21779041574324],[-128.87641751399073,58.22047032735132],[-128.88281375369695,58.22435707585962],[-128.88283444619444,58.22955731950848],[-128.88371319356898,58.233787045281204],[-128.88307401736003,58.23669306783429],[-128.88080949675887,58.23852915519647],[-128.87756581038553,58.2409880070486],[-128.87487020048044,58.24362367412989],[-128.87379652072926,58.2467096337556],[-128.87370098774542,58.25070883404917],[-128.8751213306132,58.25391210553355],[-128.87643191384691,58.25733330927443],[-128.87763586339705,58.26099933160489],[-128.8780833052555,58.264708520128885],[-128.87732415228402,58.26470681565242],[-128.86713753505572,58.264089218374686],[-128.85998453779624,58.26289431103113],[-128.85532295140226,58.26193354166126],[-128.84871127248516,58.26022353493028],[-128.84469503064773,58.257766642179014],[-128.8366749170002,58.2543523236822],[-128.82735397813119,58.25218653689298],[-128.82172231155837,58.25161334610784],[-128.81479049095284,58.25082466169424],[-128.81121492298303,58.24985763089476],[-128.80179228056383,58.24842879010754],[-128.79345368348467,58.24791986593546],[-128.78977054630218,58.248095228318626],[-128.78804197633087,58.250897564461425],[-128.78707091725002,58.25421410336457],[-128.78317174359927,58.25610033192668],[-128.7767806197005,58.25495716391367],[-128.77006401908199,58.25387430579274],[-128.7610735921982,58.25342170339223],[-128.75620146433099,58.25571333778357],[-128.7539270179843,58.258508436108926],[-128.7512195503926,58.25913875233757],[-128.74179678833747,58.25919667158714],[-128.73388558864698,58.26050757245914],[-128.72630369815133,58.26188317034287],[-128.7231613836517,58.262800167563746],[-128.71709134000022,58.26691096525282],[-128.7134003489039,58.27113513759672],[-128.71144883943532,58.27366249030083],[-128.6985542752935,58.27142510503246],[-128.6914035617369,58.27124516799176],[-128.68273323859898,58.27176882220143],[-128.6806773382928,58.27188170204242],[-128.67765075314998,58.2674781762937],[-128.67484261226812,58.26410314818945],[-128.66531655698176,58.26164291821805],[-128.65578437939078,58.26043956372929],[-128.64701501528083,58.25946301601276],[-128.64625677649678,58.258660650221984],[-128.64335321537612,58.25271829987698],[-128.6406577786638,58.24882855199991],[-128.63753130034175,58.244650866900415],[-128.63450833046306,58.242078731802415],[-128.6352704324206,58.24116566600926],[-128.63831086268388,58.23842959062792],[-128.63735151526066,58.233796242304656],[-128.63292166192974,58.23155710749269],[-128.6220999297787,58.23092470111363],[-128.61625196533063,58.23182911725364],[-128.61302148250246,58.228173944097726],[-128.60761996141062,58.225423074288656],[-128.60525173287982,58.22217311000394],[-128.60213271294086,58.21770732506588],[-128.59738801110117,58.214449448042295],[-128.59307031149788,58.212269833997944],[-128.58984288247333,58.20826396279743],[-128.58651940885244,58.20203273683213],[-128.58243690517762,58.19694764146023],[-128.57887715503966,58.19482491819116],[-128.5779090308425,58.19379282768997],[-128.57900713418695,58.190484912909625],[-128.580231400173,58.18351061895554],[-128.57939395466755,58.17808471653368],[-128.57790781361354,58.17265336396841],[-128.57543619672606,58.169791319130276],[-128.57350465780118,58.16744869961036],[-128.57038684917327,58.16389855787779],[-128.5678172689098,58.15954762947709],[-128.56534694354858,58.157376901628794],[-128.55585640897675,58.15456796724753],[-128.55570393671064,58.15454505858273],[-128.55568089410426,58.15454998802358],[-128.55559526879284,58.15460325532039],[-128.55550715918875,58.15479126760561],[-128.5557601279364,58.15496267206446],[-128.55503658369605,58.15557138625817],[-128.55419930438137,58.154314457161156],[-128.54845832952907,58.14569319935894],[-128.54466407546352,58.13999364410144],[-128.53869057828965,58.136564548325694],[-128.52775903234541,58.130288118867576],[-128.52504245892186,58.13149996825234],[-128.4945618499224,58.14509250318451],[-128.49457945844082,58.14532451908808],[-128.49454969823148,58.149383804025405],[-128.49311230131113,58.15378359154964],[-128.48844595701155,58.156860526646064],[-128.48832902301484,58.15776963442167],[-128.4813951619942,58.16056514097647],[-128.47069065607334,58.16208291225444],[-128.4660400498799,58.162590606090035],[-128.45080539869426,58.16295986199929],[-128.44433301009238,58.16202747183714],[-128.43830876504114,58.15904830517608],[-128.43036457801085,58.153885847801504],[-128.4266121815524,58.150559703573926],[-128.42445273902732,58.15055390164838],[-128.41966295809874,58.15470807610742],[-128.41790418830246,58.15790949878367],[-128.4137339879908,58.164638325302455],[-128.41207915379533,58.16829576515321],[-128.40890534327633,58.172456405076346],[-128.40681335123872,58.17645389009485],[-128.404846912511,58.17862627676635],[-128.40256637436232,58.17987040392795],[-128.3992055099401,58.18072077287396],[-128.3917476129862,58.18064748596491],[-128.38937555164333,58.18018693224253],[-128.38246298746338,58.179708321494346],[-128.3759842725234,58.179176773985404],[-128.36613861898383,58.18006024607843],[-128.35735938274075,58.182262151808516],[-128.3513947135557,58.18413579014287],[-128.3449630696522,58.18869314146834],[-128.3350962670274,58.19122683905505],[-128.33172864945476,58.192587418495485],[-128.316961974282,58.19751250921422],[-128.3033928920468,58.20175091661075],[-128.30273823969378,58.20221111634966],[-128.29423178771714,58.207555823358646],[-128.29044827586367,58.215486311461994],[-128.2892062203343,58.21947637081014],[-128.286549200426,58.22438848207557],[-128.28992272043808,58.231029645349636],[-128.2916252740788,58.233317307904436],[-128.30162860654116,58.23832742204154],[-128.3017312916332,58.23855913187545],[-128.30156914244816,58.24278233878076],[-128.3005415319868,58.24689467642552],[-128.30026627293282,58.25151496599962],[-128.29772087802522,58.25579697328036],[-128.29636930674906,58.25962751451475],[-128.29723712631775,58.25973839702287],[-128.30403433687613,58.26182207312761],[-128.30812462794984,58.26377234934809],[-128.30678371629972,58.267091005331714],[-128.30231343872117,58.269242029132045],[-128.29827008293208,58.27203215753635],[-128.299321810898,58.27437590097292],[-128.30456319186314,58.279647214502845],[-128.30752267830252,58.28572087764634],[-128.31234161634802,58.290361660425795],[-128.31630293677142,58.29443337379587],[-128.31658278236347,58.29826313710116],[-128.31404583246731,58.30144992249956],[-128.30923993359866,58.30423559864116],[-128.30736540977233,58.30657571622916],[-128.30143683002032,58.312155299961084],[-128.2962610267422,58.31808100325486],[-128.29009636296385,58.32485853746366],[-128.2862512852528,58.328156887533154],[-128.2781677259367,58.332128624858896],[-128.26512954822172,58.340718492777015],[-128.2620249751594,58.34533281822901],[-128.2614288828169,58.34915959263473],[-128.2608116876255,58.354468547630425],[-128.26240011377251,58.35750430010439],[-128.26572231187012,58.36060070744883],[-128.26761950052568,58.36478078530803],[-128.26889684794472,58.36690570296624],[-128.27062711744807,58.367415406092704],[-128.27536096723648,58.37064051986601],[-128.27761302357723,58.372928538204505],[-128.27834792255675,58.37487396822209],[-128.27844826782894,58.37544705526716],[-128.28036698392972,58.3782526033924],[-128.28065070649257,58.38151690652528],[-128.28420899519486,58.38357618839187],[-128.2913541562413,58.38578102999365],[-128.293294639269,58.38687067744251],[-128.29499806586801,58.38985039149274],[-128.30158988523146,58.392845529232616],[-128.30678067952286,58.3950829750876],[-128.30410808962446,58.39999656545219],[-128.28998389457746,58.40708994469108],[-128.28647325373657,58.409529577353155],[-128.28308297992297,58.41061088723344],[-128.273131232627,58.41451522713407],[-128.2619710417875,58.41887019161267],[-128.25881516278986,58.418869179017825],[-128.24555166202524,58.4180667235622],[-128.2315942806327,58.42002272943642],[-128.22609995885958,58.42348148563558],[-128.22422729477927,58.425129006965165],[-128.2104794701346,58.427357750370845],[-128.20163586349472,58.42904710663512],[-128.20088261239812,58.4286372732596],[-128.18795756505727,58.42681769502138],[-128.1782613070689,58.427342790819324],[-128.17184229158602,58.42732051769504],[-128.1626812527741,58.4283657603084],[-128.16193096826146,58.42766827376583],[-128.15739529412127,58.425594382449994],[-128.14392581567327,58.42416553327978],[-128.13935336396747,58.42413931520565],[-128.1271575506639,58.424538687513035],[-128.11963984080776,58.424962340030916],[-128.11866676050425,58.4245644997111],[-128.11108896251682,58.422464991100824],[-128.09801366305896,58.423315550616245],[-128.09603996918224,58.423992843427506],[-128.08901261555476,58.42738880021584],[-128.0822996481761,58.431183673724],[-128.07975640527835,58.43334237152479],[-128.07704185748423,58.43280939855688],[-128.06868298841584,58.43168046257004],[-128.05987014192198,58.431465005844636],[-128.0471039698546,58.43288960655137],[-128.0379343268389,58.43415096359805],[-128.03215453276349,58.434633259245714],[-128.02767042855018,58.435634689283596],[-128.02152281125402,58.43811576498816],[-128.0181076303827,58.440043834372325],[-128.01207746305607,58.442010816435165],[-128.00649922405876,58.443000891465225],[-128.00455110863805,58.442535892725225],[-128.00242431021587,58.4401875758114],[-128.0001981525995,58.43523633060743],[-127.99877728572766,58.43346126173857],[-127.9951035652679,58.431908096510895],[-127.98811126348228,58.42937998919813],[-127.9844501275344,58.428005978382416],[-127.978358212494,58.426038902497915],[-127.97365129520368,58.42553307973064],[-127.96539391004212,58.42594096791566],[-127.961833903685,58.42655853248318],[-127.95720415785057,58.42753277425085],[-127.95557692163607,58.42772699086697],[-127.95372327710847,58.42764607470162],[-127.95180524398182,58.426299837356346],[-127.95027885498234,58.42409478870546],[-127.94856684242791,58.42034780796262],[-127.94417832078926,58.41750152305333],[-127.93512506947854,58.41716470813018],[-127.92789095061579,58.41829201019529],[-127.9234502273454,58.41875949687201],[-127.92107178376455,58.419071766987706],[-127.91816436664172,58.419687860342584],[-127.91686164438194,58.41976025480833],[-127.91583994862475,58.41897553476592],[-127.91374818783912,58.41625731038582],[-127.90381427814933,58.40680721972543],[-127.89602018131957,58.403145448777636],[-127.89116214575121,58.40166912183041],[-127.8838027558846,58.400227591572104],[-127.86842449432493,58.39946273346596],[-127.85900831077694,58.398156110718354],[-127.85661460407914,58.39818908752016],[-127.85437351062572,58.39907299332025],[-127.8527665789342,58.39961590191575],[-127.85326162981151,58.40085727782749],[-127.85144776971357,58.40162750666314],[-127.84853637813022,58.40217928587176],[-127.84758812448611,58.40287473713381],[-127.84735375544184,58.404763688530494],[-127.84383970348605,58.40641016459359],[-127.83898758338988,58.407329479245284],[-127.83770360236832,58.407795964870196],[-127.8339245234561,58.40842210000127],[-127.82886956278385,58.40968503312442],[-127.82635021102587,58.41165878726274],[-127.82215375577071,58.412685345912976],[-127.81845805130827,58.41273521271195],[-127.81486664873847,58.412774595333296],[-127.8152606525559,58.41186234370605],[-127.81382239553469,58.40902615002496],[-127.81147072978438,58.40756712870275],[-127.80833839632437,58.40577731459444],[-127.80643025679828,58.40450084117374],[-127.80419171275749,58.403156928189155],[-127.80384209893786,58.4002522293348],[-127.80355403088774,58.39636795241623],[-127.80284688180204,58.39523701391134],[-127.8023531719185,58.39398648809757],[-127.80294458205631,58.39266758108102],[-127.79873832668292,58.39100868803886],[-127.79315215204633,58.39016719721726],[-127.78852588748077,58.38891765702129],[-127.78676062965039,58.38831250801421],[-127.78624920003111,58.38665810736476],[-127.7850242947044,58.383702180076696],[-127.78407716899675,58.382008654904396],[-127.7840308399582,58.38097665267898],[-127.7847327175931,58.379656390552135],[-127.78567014960863,58.37879094692466],[-127.78733343249078,58.37710774318318],[-127.7868037572361,58.37500465103916],[-127.7872793650767,58.37351677772998],[-127.78759441550315,58.370890680885374],[-127.78846114168952,58.36847276959992],[-127.79039458016423,58.36560071252781],[-127.79277201035276,58.362947203989016],[-127.79272392684459,58.361861374994156],[-127.78938695800808,58.3601817567203],[-127.78599273411398,58.35966111625167],[-127.78120838290727,58.35955385494839],[-127.77957718217237,58.35957541160575],[-127.77815579487792,58.35936072536357],[-127.77724070890261,58.35834021605963],[-127.77577566429476,58.35716533152575],[-127.77401449226271,58.356676734538475],[-127.77063105796303,58.35637106895964],[-127.76726644596009,58.356415250677486],[-127.76585867531305,58.356550437660744],[-127.76455339442091,58.35650468885372],[-127.76293868925018,58.354415785815696],[-127.76220594313004,58.352656532954406],[-127.76106523840075,58.35141441012207],[-127.7592695231302,58.35011798565121],[-127.75589420362897,58.3499914323816],[-127.75244071779335,58.350494329186766],[-127.75081203237451,58.350515509622845],[-127.74928444590589,58.350301908300764],[-127.7478268740798,58.349351119904924],[-127.7439240154418,58.34705825080909],[-127.74094229008199,58.345956526540014],[-127.73020921748748,58.34642705457678],[-127.7176579850802,58.35000859424597],[-127.70699006844518,58.35453479879869],[-127.70409021321514,58.36033587051405],[-127.70422627323038,58.3634677500166],[-127.70433324320055,58.365917617331306],[-127.70236197461955,58.36806154448691],[-127.69726978530771,58.36845799531825],[-127.69395990521535,58.36735933107266],[-127.68892352414896,58.36644385865702],[-127.68424292268365,58.366277973283374],[-127.67769796478814,58.36573110678632],[-127.67354630240024,58.36520809411072],[-127.67079901851984,58.36443410176471],[-127.67257956181744,58.36293052238554],[-127.67595258471225,58.360500271981365],[-127.67433916194416,58.358284640982454],[-127.67048306158335,58.35702162698847],[-127.66415114969169,58.356300895865814],[-127.6593878785822,58.35669186105437],[-127.65518330470549,58.357542680862],[-127.65442841513905,58.35766867521278],[-127.64965119597257,58.35772725690765],[-127.64611217010885,58.356271124499884],[-127.64282269209761,58.352890457667456],[-127.64066181850637,58.35058238495429],[-127.63595409491144,58.34972384142754],[-127.63193229869765,58.34964693083627],[-127.62924054280607,58.34967951700162],[-127.62855045152436,58.34791798990205],[-127.62857603802884,58.344624852221926],[-127.62908898673163,58.34088028241719],[-127.62968088129337,58.3389158439218],[-127.63264409445821,58.33701021357847],[-127.63684323571611,58.336247701151926],[-127.63932659346919,58.33497174793486],[-127.64061379098236,58.33344322548135],[-127.64037461522757,58.3318435157239],[-127.6388081528375,58.33088396152636],[-127.63660847433118,58.33091071987445],[-127.63370512782717,58.330323117337315],[-127.63196642313953,58.32927579605475],[-127.6301927820654,58.32742869553004],[-127.62793491148057,58.32612051406499],[-127.6263428817146,58.32453827769708],[-127.62288594154501,58.32288874399265],[-127.6180643548798,58.320989564698685],[-127.6158073010359,58.31968119007549],[-127.61927451991757,58.31768117815447],[-127.61871277278621,58.3164422309456],[-127.6151182715777,58.31550681210599],[-127.61218561954074,58.31420649745304],[-127.60992923194144,58.31289915667042],[-127.60920706406428,58.31183941560894],[-127.6086457400233,58.31060043514038],[-127.60692018284631,58.30981977143445],[-127.60536427346082,58.30903818547919],[-127.60295036168147,58.30799859235702],[-127.59956846275838,58.30684365764032],[-127.59917337353879,58.306709196897685],[-127.59628010238495,58.30629802732781],[-127.59409706833935,58.306679657820176],[-127.59253391457088,58.305719582191074],[-127.59250729029789,58.305097058896635],[-127.59194278725272,58.30376828594889],[-127.5880008897868,58.30256920022572],[-127.58641533806306,58.301075148046486],[-127.58645861097068,58.300088203951454],[-127.59079460286515,58.29903597610342],[-127.5947202845272,58.299564073348876],[-127.60181479640234,58.30061996546753],[-127.60723370517371,58.30050146514369],[-127.60983665371631,58.30047034112162],[-127.61568465718675,58.30023862989503],[-127.62491460423571,58.300477594777746],[-127.6308812860613,58.30052210347916],[-127.64405407304184,58.301627650692005],[-127.65045309347948,58.30160316389074],[-127.65370669442548,58.301572185438964],[-127.65773293111782,58.30186379552274],[-127.66245127359349,58.30317920794734],[-127.66477283445627,58.30417399661147],[-127.66935318521101,58.30475468281773],[-127.67494915422715,58.303652651760906],[-127.68078222287097,58.30050940175725],[-127.68125690485572,58.2989053771231],[-127.68452433748205,58.29418694804702],[-127.69081756602009,58.28913417480474],[-127.70288361247594,58.284825125805995],[-127.7075888594688,58.28328409295603],[-127.7130636053454,58.27956940767958],[-127.71512340716677,58.274578363126246],[-127.7135689540231,58.26877156335797],[-127.70677654978202,58.26457558759009],[-127.69763842206771,58.26126184235545],[-127.69532885768666,58.260491984892255],[-127.68810655602341,58.2588143086618],[-127.68503923718256,58.25798197730957],[-127.6828418487795,58.257327216162345],[-127.68029578463228,58.25604835035671],[-127.67882070619514,58.254468781330395],[-127.6789010988233,58.25126279445145],[-127.68139192487301,58.248726917693865],[-127.68370422032802,58.244532402694745],[-127.67973892969876,58.23784898011994],[-127.67392320057765,58.23352269091963],[-127.67004599781473,58.2288848201495],[-127.66960820367646,58.22369244650726],[-127.66639482962653,58.219396394034945],[-127.66078543132976,58.217239581022675],[-127.65641643915933,58.21626119783767],[-127.65300884890026,58.21492971186918],[-127.65017915147654,58.21205596813336],[-127.65172485346991,58.21015178091858],[-127.65796464575635,58.20933872752468],[-127.66422938388155,58.20909062527664],[-127.66981117897957,58.20806074853808],[-127.6744608564532,58.2053725417244],[-127.67458218477374,58.20314472747222],[-127.67200433692392,58.20106728083939],[-127.67102745182824,58.19839533926718],[-127.67291408143336,58.196944494987505],[-127.67877092938903,58.19481561818453],[-127.68197085562214,58.193752167518895],[-127.68520799146853,58.19109028029118],[-127.68575664356436,58.18868655403044],[-127.6837378570676,58.18699732679721],[-127.6792380012801,58.18545585929393],[-127.67649162441208,58.18445788077098],[-127.67562116639014,58.18429819892862],[-127.67447628372487,58.18283132500599],[-127.6774017595702,58.177830610312355],[-127.68245532891295,58.174742137113704],[-127.68464202626416,58.17272184793588],[-127.68354818797796,58.169934855438974],[-127.68067709676296,58.16848074928609],[-127.67491231730715,58.16763727503151],[-127.66708411357644,58.1665319804749],[-127.66358473147258,58.16555211924189],[-127.66218260530427,58.16305607285278],[-127.6620109761023,58.1615142351327],[-127.66195936908031,58.16025816070673],[-127.6598053921561,58.157834264490326],[-127.65637741313331,58.15604547091222],[-127.6540618217045,58.154925082621745],[-127.649251578927,58.15350325278277],[-127.64091320608652,58.153031118334376],[-127.6355786957527,58.15206404644267],[-127.63264039838596,58.15152538862613],[-127.6301079501018,58.15035338832684],[-127.62706324519351,58.14987874044852],[-127.6219465686919,58.1515385511565],[-127.61802972388085,58.153515807617595],[-127.61395668891821,58.1542471204439],[-127.60984571761965,58.15412601415441],[-127.6042080629686,58.153628108318046],[-127.60009787754983,58.15349771867104],[-127.59310290332307,58.154146555760406],[-127.58612392488531,58.15525262485593],[-127.57957669842561,58.156353239468494],[-127.57551642642002,58.15748715454064],[-127.57173243748495,58.16014366892163],[-127.569432294732,58.16211846943604],[-127.5671830990323,58.16260257374287],[-127.564467815268,58.16228421615418],[-127.55803095977467,58.16069858075214],[-127.55431194756538,58.15953894353016],[-127.55179817580579,58.158769187752],[-127.55069100887252,58.15809981108091],[-127.54952076334598,58.155779541442676],[-127.5486741127269,58.15344655436171],[-127.54812759044715,58.15053563215832],[-127.54903214779459,58.14875688951039],[-127.54978470777982,58.148694331596666],[-127.54467890502613,58.1478915818675],[-127.54176718926934,58.14803282727025],[-127.53707429164041,58.14683009465878],[-127.53663887630022,58.146727376236434],[-127.53259876426098,58.14550802870772],[-127.52800408720091,58.14401663418843],[-127.523106791237,58.14298630272135],[-127.51686430384254,58.14077723575743],[-127.51323240841181,58.138933368603745],[-127.50811502282474,58.13784216216261],[-127.49956842886935,58.14027182154531],[-127.49359240139367,58.14221453019335],[-127.48773473565625,58.144451859228646],[-127.4865772268501,58.145200727828104],[-127.48468267691544,58.143624029828835],[-127.4813747756945,58.1418295722284],[-127.47717487610343,58.13919217761197],[-127.47579290901811,58.13686473098716],[-127.47315707517228,58.13563713723004],[-127.46738305031396,58.134273369624964],[-127.4652129449327,58.133947071238936],[-127.4624963850062,58.13351899715589],[-127.4595274476976,58.13195370826961],[-127.45942704208868,58.12921722750976],[-127.45685581894323,58.12673204522053],[-127.45321497102667,58.124599507125566],[-127.4489308972311,58.12253666955893],[-127.44599310785911,58.1218773069596],[-127.44328184253258,58.12150265690659],[-127.4382850555833,58.12058706330463],[-127.43437276102848,58.11988406149598],[-127.42461885695664,58.11865981957629],[-127.42179026404827,58.11806160300832],[-127.41749884761708,58.1157106670416],[-127.41278403499733,58.11359743328804],[-127.41060811029533,58.11309980551487],[-127.40678595187977,58.11176679454136],[-127.40538589073692,58.10875681899975],[-127.40459099607367,58.10756247299732],[-127.4024426539276,58.10473086390384],[-127.40429199231818,58.10208173029171],[-127.41166034693133,58.10001171883078],[-127.41870336565172,58.09777421793209],[-127.42219980343104,58.09603181638299],[-127.42761274152387,58.093577801064356],[-127.43328405936035,58.092323474791804],[-127.43657722033136,58.09092393020712],[-127.43714064869651,58.08858433178933],[-127.43848447892596,58.086909484835],[-127.44068902446362,58.08534203743881],[-127.4410455514833,58.0832828904286],[-127.44095979133324,58.08083360682327],[-127.44125647632765,58.08008547714808],[-127.44206423510002,58.078542030831265],[-127.4476222682151,58.07722548381988],[-127.4528723782014,58.076369778228724],[-127.45707049060545,58.07621641152348],[-127.46099088645215,58.074351701893896],[-127.46311022930001,58.073359224918036],[-127.46577993990738,58.072701736920266],[-127.46678684607612,58.07075208007856],[-127.46662368009372,58.06921015831114],[-127.46644612762826,58.06727349513578],[-127.46746865495415,58.065781397769825],[-127.47096864451206,58.06426206341624],[-127.47360583429014,58.06268932334669],[-127.4766402803146,58.060259519928245],[-127.47752162739003,58.05786243708128],[-127.47716572728932,58.05700477284728],[-127.47614582494943,58.05558902012384],[-127.47631543817158,58.05147663025523],[-127.4774214356734,58.04930145993871],[-127.48182334460404,58.045994849497774],[-127.48374586674834,58.04409777407366],[-127.48462961003747,58.04322637402463],[-127.4851513623096,58.04078390853306],[-127.48507880227916,58.04077013081225],[-127.48421875186789,58.03640671356574],[-127.49170674176801,58.02869926905401],[-127.50049202820507,58.02351894741575],[-127.50088316093455,58.0233732016744],[-127.50100456802865,58.017546155357486],[-127.5032757354545,58.01500771329021],[-127.5074011109397,58.01313936355165],[-127.51461259156618,58.01032050663936],[-127.52340711616827,58.00680113467821],[-127.52372593461068,58.006626979335095],[-127.53020344583356,58.00449771577148],[-127.53405989279246,58.00400473015056],[-127.537367448695,58.003338461943045],[-127.54249020836664,58.00225626791023],[-127.54765647434701,58.00231314688995],[-127.55089581835841,58.002616590796116],[-127.55459327958211,58.00365951892685],[-127.5599737613166,58.00372240399025],[-127.56519680388901,58.00252148883255],[-127.56742380245981,58.00163379217908],[-127.56877172397526,58.00037048078202],[-127.5688531080769,57.99712967757246],[-127.56974862179499,57.995297301092194],[-127.57168250494144,57.99247446696552],[-127.57298500277848,57.99006290882967],[-127.57503348447453,57.98746304897031],[-127.57828682734447,57.985432261656825],[-127.5824407583243,57.98453048486605],[-127.58790856017693,57.98407065102431],[-127.5925040742837,57.983441513618615],[-127.59393392899784,57.98160260580732],[-127.59343141056084,57.979777801575466],[-127.58969015496417,57.977596750584894],[-127.5783553056645,57.97629541144761],[-127.57480406067027,57.9762207096552],[-127.57394230795494,57.976168057885616],[-127.56662510515373,57.975913154029264],[-127.56133879803436,57.97540076325674],[-127.55667624234897,57.971569347520536],[-127.55580234205746,57.968438526406864],[-127.55665772873682,57.96551189736805],[-127.55853652271112,57.964125864451375],[-127.55920656407099,57.96206292386613],[-127.5547896772622,57.95896453184502],[-127.54915999612551,57.957827506469584],[-127.54604042338039,57.95774704607869],[-127.53924214138954,57.95691032558574],[-127.53359085361559,57.955198559483286],[-127.52985658384488,57.95301587653849],[-127.52556771641314,57.950381768789214],[-127.52213607486067,57.947665960580466],[-127.52091955946192,57.946764494559076],[-127.51617686524727,57.943399428740136],[-127.511537742554,57.940015093493926],[-127.50691560708476,57.9369804076978],[-127.50394097387363,57.93495899111624],[-127.50150821387588,57.93303909792381],[-127.50128934170438,57.930017387293894],[-127.50278370196887,57.926985348969566],[-127.49963902285951,57.92324282814501],[-127.49266947195473,57.92051232311042],[-127.48592643559017,57.91801226110876],[-127.4787464261455,57.91535520100712],[-127.47257697874929,57.913871115392155],[-127.46318672822902,57.915230892347395],[-127.45522695338117,57.917705051592485],[-127.44737277461257,57.92006990028436],[-127.43775687797036,57.92125084700399],[-127.43346742139936,57.921297067954086],[-127.42552996648186,57.92143607451101],[-127.41481946036126,57.921945077316565],[-127.40449727467208,57.92135435953884],[-127.39566574127659,57.92041522133802],[-127.3926286410698,57.91941505867668],[-127.38727912357136,57.916787825567255],[-127.38226539109277,57.91448892258044],[-127.37694469152346,57.91255194906259],[-127.36514830097428,57.91271823591097],[-127.35850180454212,57.916088359041886],[-127.35713891802575,57.91701752804254],[-127.3526792549004,57.92162133394027],[-127.3532033050993,57.927735853663584],[-127.35387352989875,57.93177605988091],[-127.34526767826321,57.93442961179097],[-127.3362504755382,57.93445751048814],[-127.32795200045297,57.93333801781163],[-127.32172581168406,57.93339093747036],[-127.31603825678616,57.93670455993381],[-127.31520966440146,57.93768186613458],[-127.30931787310558,57.941383076996644],[-127.302381358555,57.942707307142506],[-127.2943918534,57.941349380283086],[-127.28909473326108,57.940198279244946],[-127.28229079961197,57.938828169501704],[-127.2759852809201,57.93625949891643],[-127.27066820615013,57.934416932996214],[-127.26397048618155,57.933107712934834],[-127.2618391099706,57.930103932790495],[-127.26021852943256,57.92623387664462],[-127.258143130174,57.92150669507971],[-127.25768406886051,57.91712318297631],[-127.26153095542831,57.913084821073404],[-127.26563268083399,57.910309132964805],[-127.27054582380454,57.9062693608114],[-127.27117911602849,57.90586850544525],[-127.27382404815192,57.90127598207408],[-127.27144213275231,57.8970724889848],[-127.26885244663322,57.89304144170914],[-127.26574747344154,57.88976001224263],[-127.26717353754417,57.887287888985206],[-127.27312808205734,57.88569671952979],[-127.27526261576247,57.88196154376022],[-127.27559582941302,57.878880687446184],[-127.27822866950282,57.87741978461722],[-127.28311877939066,57.876179349417676],[-127.28437184806226,57.87508155840851],[-127.28557059907916,57.872333297621324],[-127.28426701707703,57.868299194831536],[-127.28415447633019,57.8681208273325],[-127.28332886315037,57.86567028092228],[-127.28341940444618,57.861739389780254],[-127.28642367877177,57.85845331203762],[-127.29150548106779,57.85658263032875],[-127.29499098034653,57.85500545505634],[-127.29174910199629,57.85081090160455],[-127.28560981628013,57.84961423640572],[-127.27654190745226,57.85071547946742],[-127.26829493055786,57.85067774007464],[-127.26057734519011,57.85040118849238],[-127.25697673033088,57.84821010030071],[-127.2562774771824,57.846323524800766],[-127.25424736019372,57.84303187142046],[-127.25214908464858,57.84094313939048],[-127.2500556733743,57.8389620032229],[-127.25006349682424,57.83570497501306],[-127.25318832826032,57.83288516829995],[-127.25760343701553,57.83021459162816],[-127.26086176993012,57.82829954611814],[-127.26246917983272,57.824856886204536],[-127.26033759001267,57.821629172452724],[-127.25419208572504,57.82019792919389],[-127.24768002303577,57.82059119923353],[-127.24277275716577,57.82109476155342],[-127.24170134261374,57.82110477669638],[-127.2351565557748,57.82047491193393],[-127.22941040370189,57.81795319728697],[-127.22470692116757,57.81445265814572],[-127.21962855801016,57.81283954096741],[-127.20550757091426,57.81284280380245],[-127.19962705049393,57.812779392013226],[-127.18794343291795,57.81206791828921],[-127.1806412657888,57.81110123287755],[-127.17760740346723,57.80970162167756],[-127.1734911995487,57.80790777461671],[-127.1687365862537,57.80594335190999],[-127.1662663547529,57.80593141707703],[-127.1667869919519,57.80497022081174],[-127.1637288575698,57.80302324153417],[-127.15660995709425,57.80085143782835],[-127.15039922402988,57.80055547386898],[-127.14954506480215,57.80056286894255],[-127.13564677782779,57.800673452562584],[-127.1229793453221,57.80293436952466],[-127.11061674191893,57.804518642286624],[-127.10411849864228,57.80547895658299],[-127.09948314294563,57.80819097903614],[-127.09778093801103,57.808608784016066],[-127.09226336294745,57.81025123175831],[-127.08288353535187,57.81152125480229],[-127.07518142774335,57.81152100366722],[-127.06972811793446,57.81161885183635],[-127.06067081921144,57.81305516522392],[-127.05588567480487,57.81416988307605],[-127.04883118112805,57.814387245029586],[-127.03941443202416,57.81429077902626],[-127.03174632628895,57.815705265061226],[-127.02783908667232,57.817790061864265],[-127.02678417224257,57.81848006616666],[-127.02382260030194,57.81993838846323],[-127.01860293031426,57.820821838588],[-127.01368449828345,57.82097607736394],[-127.00897698470104,57.82094909886407],[-127.00416804949198,57.82126364402915],[-127.00030410972577,57.8251775276319],[-127.00141747555352,57.83173646121718],[-127.00040715880603,57.83413953458597],[-126.99259590750222,57.83904285928638],[-126.9936547467613,57.84309022468669],[-127.00101726365945,57.8465250700232],[-126.99927142564937,57.84973220358621],[-126.99247561301627,57.852232428678086],[-126.98663881331771,57.85449192519099],[-126.98202358034024,57.858689071991776],[-126.9806382446919,57.863723615311024],[-126.97784619597344,57.86814046780559],[-126.97501070714023,57.87061962326584],[-126.97305901628853,57.8743932181642],[-126.96856472068754,57.879387591680874],[-126.9622423221096,57.884278419364655],[-126.95512868135913,57.88735327958257],[-126.94482122524667,57.89130282579111],[-126.93926631813822,57.892364963473746],[-126.93488372461466,57.892907225380064],[-126.93318801001529,57.892919121244326],[-126.93239592660714,57.89483575454411],[-126.93108768713387,57.89750966585122],[-126.92912468933376,57.901614733691325],[-126.92727093807459,57.905889500788696],[-126.92725295102895,57.90845571546314],[-126.92766735645118,57.909942241732686],[-126.92914990582054,57.91246212001094],[-126.93384716182103,57.9153183909134],[-126.94068510779681,57.91853625591488],[-126.94773138180622,57.922936679677086],[-126.94901091698027,57.92403119380604],[-126.95369515959392,57.9290044419444],[-126.95569734040166,57.93425702541164],[-126.95554740021356,57.94019800840604],[-126.95574210359685,57.94332808971446],[-126.95711939565652,57.945902358724574],[-126.9635194986303,57.951275825359474],[-126.96490837450132,57.952252792865245],[-126.97132314664836,57.95643243704645],[-126.97256774270426,57.96304537634954],[-126.96621123828736,57.96635772781892],[-126.96395058854277,57.96680478557509],[-126.95975778284438,57.96782204417191],[-126.9507293602328,57.96849685624794],[-126.94384102919705,57.970483929431595],[-126.94468171146225,57.973107062418784],[-126.94510398092916,57.974135966665926],[-126.9463553993201,57.979501942125786],[-126.9480324430932,57.98504437861248],[-126.94907428139929,57.989326132646966],[-126.94724287961621,57.989832666162414],[-126.93992117490757,57.99182262806876],[-126.93916845021523,57.99204328232298],[-126.93065636676657,57.99459744123216],[-126.92527229615325,57.99584624735599],[-126.91870976375884,57.99679786256547],[-126.91548926096104,57.996452086680556],[-126.90764397019633,57.99620057003158],[-126.9013002190891,57.99659350338409],[-126.90000906840415,57.996647080005815],[-126.89387595012896,57.99754073550025],[-126.8895671682493,57.9983950451947],[-126.88805876127452,57.99879093281755],[-126.88341550837578,58.00005105945351],[-126.87280534510221,58.00068615168433],[-126.86249297396442,58.00007121097294],[-126.86106732960955,57.99980224662611],[-126.85408685176549,57.999218967664504],[-126.84646272677338,57.99845994635489],[-126.83958509400411,57.99838672572402],[-126.83591990611436,57.9992262742384],[-126.8342983766373,58.00007988602245],[-126.82925971232565,58.00335056116091],[-126.82067726955476,58.006041680065664],[-126.8148694908863,58.00828463504929],[-126.81307589317124,58.009049310609676],[-126.8020563692145,58.00817377225594],[-126.79861800107405,58.00822129877998],[-126.78498380548947,58.00885847243895],[-126.7748487066344,58.010712281337895],[-126.77024556727717,58.01345775942961],[-126.77100363062247,58.01584921042869],[-126.77113845163365,58.018701894822144],[-126.76774327328927,58.01977131294894],[-126.75867143893727,58.021375503452845],[-126.73616066213503,58.025611163773924],[-126.71900325835567,58.02708647177474],[-126.69657645938202,58.02389419405995],[-126.66685806653199,58.023695894067124],[-126.66648682271136,58.0153707650976],[-126.67054579211653,58.00743629302699],[-126.67240746608532,58.00004223998401],[-126.67222595497053,57.997880697711466],[-126.67183756799106,57.99491264853101],[-126.66847037646278,57.99016500524892],[-126.65786220435537,57.988225762610945],[-126.65281762459924,57.987927513265134],[-126.64070316245466,57.986048113962575],[-126.63378065190953,57.982142168637985],[-126.6232474842667,57.975812258775996],[-126.62091034074666,57.974208094614994],[-126.61432844223584,57.9696087412338],[-126.60966727026616,57.96553867549068],[-126.60766439517502,57.96335853845145],[-126.60266826633823,57.9603126404463],[-126.59539983366535,57.9582278032641],[-126.59379597912982,57.957822224793354],[-126.58180985391473,57.95576655127334],[-126.5746558605783,57.953500657214505],[-126.56943147576209,57.95136971891668],[-126.56227491154705,57.94939030098281],[-126.55529570761023,57.94935674270258],[-126.547980005232,57.950293204531974],[-126.54550440650354,57.95068018937553],[-126.53851248164807,57.94579183443329],[-126.53364858283221,57.941827747218085],[-126.52962471005273,57.93895476643163],[-126.52442961282391,57.9355659074531],[-126.50435133780826,57.936199658970565],[-126.49865149347711,57.93674148349465],[-126.48480024684795,57.93723221051848],[-126.48007798400748,57.93721341307213],[-126.46979547670922,57.93636181611225],[-126.46146337276717,57.93437221557837],[-126.45464450548275,57.93216162041223],[-126.44654651387032,57.92938077070195],[-126.43791027686314,57.92687036863437],[-126.43642106216556,57.92634591038692],[-126.43155576870667,57.92312289806187],[-126.42819443976113,57.91973340355095],[-126.42484614250867,57.915949036718764],[-126.42183716509246,57.91131121035035],[-126.4192168113834,57.90843954940444],[-126.4133578738022,57.906807061858146],[-126.41182379791157,57.90834597906621],[-126.41172704442053,57.912616832931036],[-126.41347571397519,57.91599378203077],[-126.41338180997076,57.920219803618636],[-126.4111557327807,57.92396795785787],[-126.40533973446652,57.924847076459876],[-126.40022640821081,57.923337313433514],[-126.39595705579626,57.92245288216344],[-126.38877088167578,57.922411239333904],[-126.38221787553934,57.922771127387385],[-126.38146629512924,57.92276430924778],[-126.37784585170667,57.921599313532184],[-126.37308404247321,57.918768665205455],[-126.37099701791041,57.916361080891846],[-126.36820163698553,57.91206239173188],[-126.36560182439362,57.90849880767149],[-126.36030726361821,57.905732011480715],[-126.35284758648041,57.90374233020586],[-126.34987505738256,57.902530028594335],[-126.34470378981905,57.89907149704965],[-126.34187713510676,57.89631553471437],[-126.3359506071958,57.89313674444536],[-126.32967264686323,57.891259443592894],[-126.32529677148582,57.89048968482098],[-126.32285759592293,57.889392126937985],[-126.32161816561883,57.88750214246917],[-126.32118930937838,57.88321481960383],[-126.31816197764097,57.87994751983457],[-126.31434454970278,57.878323795157485],[-126.3117126711175,57.87648188019571],[-126.3103846454196,57.87395506008002],[-126.31069034135388,57.87024918651915],[-126.30853674016336,57.866360654591],[-126.30770127538791,57.86549237565202],[-126.30267344722428,57.86106314052443],[-126.29762135995888,57.85754885352344],[-126.29294439391396,57.85608796088376],[-126.2806563967353,57.85514556770923],[-126.2661739579712,57.85607245083126],[-126.26411525746894,57.85713515181062],[-126.25663414599205,57.86050501684915],[-126.25490020095108,57.865406636475456],[-126.25541814610803,57.870142470907574],[-126.25445334682182,57.874298033443495],[-126.24510532990017,57.87931261598352],[-126.23241464222563,57.88504118259883],[-126.23174506697822,57.886065091567126],[-126.22656974588313,57.89499163347716],[-126.22929793747494,57.9011683499856],[-126.2341233250747,57.90902804841136],[-126.24059763968123,57.91945955767919],[-126.24064813333639,57.921576798969596],[-126.23623209818074,57.926276941071364],[-126.22627258600049,57.93345374383211],[-126.22011003317867,57.93905354887176],[-126.21822540506149,57.941093273801705],[-126.21495000940382,57.94318008543188],[-126.20898163093622,57.94554022790114],[-126.20786793654447,57.94563168856505],[-126.1956353625483,57.946744779160454],[-126.18289263321701,57.94561445518917],[-126.17011797637453,57.94192595485137],[-126.15319747689291,57.93339627203989],[-126.14534910541508,57.93019314971692],[-126.13776836654353,57.925338496113746],[-126.1297821084823,57.919846842338785],[-126.12363933856652,57.9171701484123],[-126.1108388178951,57.91484877940408],[-126.10093339539533,57.91613062753203],[-126.09886239871105,57.917137007242985],[-126.08857637181677,57.916767432530335],[-126.08208482872782,57.91516566311105],[-126.07224783803893,57.91416653645946],[-126.06748179289443,57.91560449941811],[-126.05878566501202,57.92261550695885],[-126.05810565897485,57.92380007281273],[-126.05295118097105,57.92723839920539],[-126.04853224616035,57.93119663661426],[-126.04804775615658,57.93621206068033],[-126.04996192855522,57.94011411793937],[-126.05955645850186,57.942137824760344],[-126.06365938321986,57.94479161584103],[-126.06382253004752,57.946334710787426],[-126.06318510091528,57.95290249942366],[-126.06328891454285,57.96311264747128],[-126.06219759311648,57.967042949843396],[-126.05633367538893,57.969046344122646],[-126.04868354455402,57.96977610016713],[-126.03715785143515,57.967393215597646],[-126.03138835223594,57.96642570715231],[-126.02304388722624,57.968688389292744],[-126.02028063152832,57.97100365617328],[-126.01583610516295,57.972224474276196],[-126.0118497515366,57.96938070920235],[-126.00907059217471,57.96576515406249],[-126.00567373552343,57.9613420949453],[-126.00293921807175,57.95960160093064],[-125.99966192847839,57.95821096377341],[-125.99494583317427,57.958192924334284],[-125.99173407435902,57.95856061816082],[-125.9897053559767,57.95954740363465],[-125.98884215588942,57.96320794385906],[-125.98681208700978,57.96711063017866],[-125.97972546733254,57.97145226593887],[-125.97189301654194,57.97591002949529],[-125.97052259728575,57.97665442851161],[-125.96730524038172,57.98136411123625],[-125.96662304247494,57.98770736203044],[-125.96215137654536,57.99327800614815],[-125.95763379525857,57.993375345155044],[-125.95091947741258,57.99131837006445],[-125.9407767419334,57.986020570725955],[-125.92823769479996,57.97937492251408],[-125.92446704961412,57.978888339634295],[-125.91289419282248,57.98080135212639],[-125.9041843090342,57.980526214529064],[-125.89123366205128,57.978730806450415],[-125.88141336651918,57.976811351235554],[-125.87904639077203,57.9765938928821],[-125.86430028961831,57.97630157190169],[-125.84952747799365,57.978510850040166],[-125.83541032015276,57.98123073094513],[-125.83368426875244,57.98141700925473],[-125.825443221706,57.97861610283516],[-125.80956462023576,57.974781176307516],[-125.80324157303818,57.971227971954676],[-125.80015230354229,57.96707822742941],[-125.79738896860438,57.959043998197714],[-125.79428631143011,57.954553210576165],[-125.79409348805206,57.94655884551831],[-125.78790349437452,57.93849233734449],[-125.78595859512515,57.932908719481446],[-125.78676646643979,57.93045172976732],[-125.78720537773441,57.92154344581638],[-125.78474466804654,57.91185005567516],[-125.78151731600977,57.906506680343455],[-125.78140121337685,57.90143081622896],[-125.78225721923411,57.900614685452496],[-125.78137155182961,57.89999980473236],[-125.78133372115934,57.89997507086784],[-125.72355248267212,57.85991359252498],[-125.70960060491849,57.86572638706602],[-125.70955297341456,57.86575207548269],[-125.70924289902128,57.86591960947385],[-125.70881789351755,57.866228188773995],[-125.70846328817731,57.866429265850634],[-125.70810854665788,57.86651035097908],[-125.7075589988201,57.86656857899082],[-125.70654419173385,57.86668969978179],[-125.7055308809463,57.86688819342315],[-125.70515070338321,57.86698603557845],[-125.70477280746925,57.867061453529715],[-125.70409512392176,57.86719676022092],[-125.70374367707899,57.86725989857966],[-125.70363805633994,57.86728882004107],[-125.70321030258181,57.867403371894284],[-125.70250374350859,57.8675913124367],[-125.70178571782168,57.86776128101052],[-125.7008588646623,57.86794871903416],[-125.69992996588127,57.86812717475564],[-125.69955419172604,57.86819809716288],[-125.69951611571119,57.86821483235751],[-125.6991487266434,57.86829137962165],[-125.69843506784295,57.86843891194],[-125.69800423968964,57.86853998334807],[-125.6978446801608,57.868590084668746],[-125.6974675636744,57.86869688337402],[-125.69659153605588,57.868849643715116],[-125.69555548051258,57.868979604052406],[-125.6949507260377,57.8690802676292],[-125.69467696697252,57.86917720269038],[-125.69447166965287,57.8692787800585],[-125.69426003829079,57.86938146398323],[-125.69404230057776,57.86945721962858],[-125.69381584273707,57.869437634737686],[-125.69357105094983,57.86934175115184],[-125.69341539193371,57.869301021745464],[-125.69331844499841,57.869298555525056],[-125.69315826904804,57.86929482203854],[-125.69291494914268,57.86927519673185],[-125.69261161665112,57.8692487038877],[-125.69239461830952,57.86923362408079],[-125.69226508035943,57.86922211044675],[-125.69207765756391,57.86919924862402],[-125.69188601913203,57.86917637677651],[-125.69174707002055,57.869154748129894],[-125.69162494777514,57.86913764398581],[-125.69157444011621,57.86912743421329],[-125.69153337299123,57.86912173195771],[-125.69147756724242,57.869115995518854],[-125.69132992952696,57.86912574585509],[-125.69107252301801,57.86915430526096],[-125.69090903031746,57.86916850397448],[-125.69085514841946,57.86918520000419],[-125.69079595138055,57.86920636931475],[-125.69058224853163,57.86930343552543],[-125.69023531979565,57.86945177636225],[-125.69001746281641,57.869540982131944],[-125.68988536571025,57.86958216665513],[-125.68965175209067,57.86966572805246],[-125.68934304652878,57.869779391941705],[-125.6889037547909,57.87000601273592],[-125.68836893461042,57.87044099158264],[-125.68796405147947,57.87084038795649],[-125.68763344163963,57.871051559827755],[-125.687303275048,57.87120890402072],[-125.68701522017433,57.87137195355503],[-125.68677352154424,57.871537354448186],[-125.68653927462303,57.87169267974164],[-125.68634753115624,57.87180885525939],[-125.68626917723351,57.87185128438933],[-125.6861919715367,57.87188138060126],[-125.68597523756179,57.871960489929734],[-125.68575011895209,57.872031729197815],[-125.68566239823258,57.872060678863065],[-125.68560530184827,57.872081850906184],[-125.68551215238776,57.87212873031837],[-125.68544522372757,57.87219025006734],[-125.68537625045632,57.87224615786836],[-125.6853040970174,57.87230317953427],[-125.68526988932747,57.87236029091044],[-125.68524391714672,57.87244097152121],[-125.68517060058463,57.87263704613043],[-125.68506273714056,57.87293060233353],[-125.6850161373577,57.87308188346239],[-125.68501598727532,57.873099825794974],[-125.68504004247256,57.873123432505196],[-125.6850994318021,57.87320543656369],[-125.68514566421341,57.87335020889663],[-125.68513817702375,57.8734892470588],[-125.6851298523014,57.87360136921314],[-125.68515308278471,57.87372365880375],[-125.68522240493634,57.873878578577376],[-125.68536201419857,57.87407515703267],[-125.68556143659153,57.87430551928848],[-125.68574538753299,57.87449435223903],[-125.6858331285149,57.87459100147453],[-125.68582409676445,57.874662751014405],[-125.68573437150415,57.87480383807163],[-125.68561494275913,57.87496728332953],[-125.68556472546285,57.875046785527104],[-125.68554636417551,57.87510057031685],[-125.68546954873625,57.87521028799381],[-125.68534299253386,57.87534231646135],[-125.6852565096996,57.87547443960299],[-125.68523573530022,57.87568970327335],[-125.68527292132049,57.875906225482694],[-125.68534549386005,57.876052181844145],[-125.68541114598032,57.87614429359699],[-125.68547363686629,57.87623527643329],[-125.68558114418266,57.876490093179264],[-125.68572532103042,57.87689863133925],[-125.68584318452669,57.87730150028717],[-125.68591622398164,57.87764482809466],[-125.68597164511974,57.877825508011156],[-125.68599678711854,57.877844631525164],[-125.68598824122411,57.87785806844454],[-125.68589699926781,57.87792738140676],[-125.68568273813051,57.878083874901016],[-125.68549288056504,57.878222482964055],[-125.6854027200804,57.878287312477205],[-125.6853602982347,57.87831749064913],[-125.6853090676335,57.87839250494415],[-125.68523743997928,57.87851232795928],[-125.68519667614886,57.87859633837356],[-125.68521937229234,57.878655827541486],[-125.68533075136884,57.87882542599704],[-125.68552809961318,57.879054663040556],[-125.68576526328773,57.87918642986654],[-125.6859957512334,57.87923295223238],[-125.6860998776981,57.87926347631047],[-125.68605109241496,57.87929812542728],[-125.68596195558631,57.879367443509956],[-125.68592970130867,57.879442502895564],[-125.68592947680006,57.87946941657201],[-125.685923039021,57.87948285848472],[-125.68585602310527,57.879553350131644],[-125.68573180369849,57.8796584708925],[-125.68564688247264,57.8797277987464],[-125.68562666517197,57.8797490580845],[-125.6854748796166,57.87974533522909],[-125.68513446477971,57.879732194720845],[-125.68479392065129,57.87973251014314],[-125.6843107870355,57.87976500793407],[-125.68374853479467,57.879804044571586],[-125.68350376668327,57.87982476988328],[-125.68336037741533,57.879825550284274],[-125.68307889950333,57.87982263754007],[-125.68274688111063,57.879813996619276],[-125.68239587872984,57.87980418814775],[-125.68211975654484,57.87979231474657],[-125.68187631561986,57.87978164031067],[-125.6816729104351,57.87977218260818],[-125.6815917596693,57.87976974565676],[-125.68157282089354,57.87976521464744],[-125.68146014877219,57.87974812366683],[-125.68107132480698,57.8797247640723],[-125.68054940984248,57.879729119640416],[-125.6802288288951,57.879738442700905],[-125.6801433850368,57.87974496596033],[-125.6800716666981,57.87974815787782],[-125.6797415505282,57.879761942550836],[-125.67918159323409,57.87977853690768],[-125.6787428767531,57.87979430015976],[-125.67849930499384,57.87979707634355],[-125.6782499324095,57.87974040247322],[-125.67791359544924,57.87961959644556],[-125.67760244751241,57.87951230770213],[-125.67738807146807,57.8794310456188],[-125.67716233155814,57.87932171998928],[-125.67686751081492,57.879156155019025],[-125.67657473611096,57.8789962015162],[-125.6762607128507,57.878857502789],[-125.6759087676516,57.87859198997392],[-125.67573767024807,57.87825963151716],[-125.67572231908477,57.87808353047044],[-125.67571680510136,57.87798931739122],[-125.6755805982228,57.87789142155849],[-125.67531342874018,57.87782124178683],[-125.67509147369749,57.87776575037536],[-125.674763636484,57.87776158541398],[-125.67434868276895,57.87783682764276],[-125.6740612977049,57.877910138195084],[-125.673723357968,57.87797771709426],[-125.67331773333039,57.87806980037353],[-125.67304172792109,57.87816668659929],[-125.67273823079177,57.878274718921695],[-125.67217693801847,57.87844491567861],[-125.67135886412728,57.878684004714295],[-125.67061153010248,57.87891092820157],[-125.67032400191398,57.878998808985415],[-125.67027388945378,57.878942613563844],[-125.67003658498123,57.87883324719782],[-125.6694684227491,57.87882286609545],[-125.6687685957088,57.878920933282544],[-125.66810472576584,57.879124500527105],[-125.66747402996234,57.87939094728501],[-125.66683524840926,57.87961699954481],[-125.66614177673405,57.87982721166775],[-125.66577915087238,57.87993956577812],[-125.66567237974984,57.87997294045929],[-125.66549056767903,57.880026312185386],[-125.66512693201675,57.88013417630374],[-125.66443165256635,57.880308489438534],[-125.66363962333213,57.88045451883915],[-125.66311733501821,57.880499176557514],[-125.66279148023514,57.88050844430788],[-125.66230604819505,57.88055879935534],[-125.66173167213087,57.88065154091334],[-125.66120029867963,57.88076793946936],[-125.66069801429403,57.8809337529453],[-125.66049242974955,57.88104985734724],[-125.66050489928443,57.8810700748726],[-125.66039326521103,57.88105633295708],[-125.66018588428241,57.88101991797272],[-125.65989850568722,57.88097096257386],[-125.65965197323891,57.880951268152124],[-125.65937151090469,57.88095279360043],[-125.65903298288123,57.88096201973502],[-125.65887272008446,57.88096273054648],[-125.65879488528905,57.880942345330894],[-125.6586096957766,57.880901499056165],[-125.65834773504884,57.880840269777714],[-125.65809831811184,57.88078916506515],[-125.6579352785826,57.88074837474703],[-125.6578691595316,57.880599054797216],[-125.65776778673892,57.88038460135118],[-125.6575003369325,57.880346906307295],[-125.65724671849043,57.880411296327914],[-125.65711770846957,57.880453578346895],[-125.65694253461834,57.88047106984555],[-125.65667914874868,57.880450205049826],[-125.65648847949467,57.88043177026943],[-125.65637897780643,57.880415787633666],[-125.65625153120783,57.880403122852286],[-125.65611770119098,57.8803949271715],[-125.65601022635424,57.8803879208969],[-125.65593543233594,57.880382120443315],[-125.65587336504663,57.88036625999425],[-125.65574604183105,57.88034013790545],[-125.65549335421402,57.88030247700318],[-125.65515714506452,57.88028927069353],[-125.65483129014085,57.88029851895504],[-125.65458861146772,57.88031919657179],[-125.65436073357088,57.88033542646675],[-125.65408870981712,57.880336962684076],[-125.65384003476763,57.88032173763875],[-125.65366944847302,57.88029886532937],[-125.65357892530473,57.88028292976693],[-125.6535158442926,57.8802637012931],[-125.65342012405756,57.88023878066598],[-125.65327585200055,57.88022158350876],[-125.65316622832061,57.88021905505322],[-125.65312820219091,57.880226805963986],[-125.65311125117073,57.8802357332179],[-125.65310164062289,57.88024804388616],[-125.65306562999527,57.88026589288969],[-125.65299469201797,57.88029935083547],[-125.65289102158141,57.88033720910635],[-125.65276003282462,57.8803649031767],[-125.65265032599414,57.880371345510135],[-125.65257030445166,57.88035992237894],[-125.65251135812791,57.88034967564863],[-125.65247767305002,57.880343980562806],[-125.65241551410361,57.880338211117525],[-125.65228915636916,57.880321059667494],[-125.65214593035401,57.88030386401611],[-125.65200595864782,57.88027770528889],[-125.65185327750999,57.880255998888096],[-125.6517237244289,57.88024332425852],[-125.65163416504643,57.88023636132319],[-125.65157830739965,57.88023509369311],[-125.65151299438719,57.88022931556999],[-125.6514350820362,57.88021789727846],[-125.65139611744426,57.88021218809341],[-125.65137390309229,57.88022110134228],[-125.65130628425752,57.88023662422396],[-125.65119311539718,57.88027445629118],[-125.65111365840758,57.88031686234559],[-125.65104536369786,57.88040527620378],[-125.65098351909522,57.880480249800044],[-125.65095463964764,57.880523909806705],[-125.65091167818132,57.88060902575756],[-125.65083483378034,57.880709752836765],[-125.65076127469504,57.88079815277929],[-125.65068977576402,57.880889922384945],[-125.65061275327965,57.88100971320507],[-125.65056883829727,57.88108473372059],[-125.65053767235463,57.881147451971124],[-125.65048607702607,57.881253852345516],[-125.65042723466061,57.88134677651949],[-125.65036433495445,57.881420625707044],[-125.65025249532556,57.88154368922416],[-125.65005683464402,57.88172260385623],[-125.64987410552028,57.88187127362295],[-125.64979661026814,57.88192714130304],[-125.6497679016876,57.88195398011074],[-125.64973505281026,57.88197071514098],[-125.64966075985652,57.88202322688228],[-125.64949617894983,57.88214839389402],[-125.64933457393354,57.88229263289204],[-125.64926222129014,57.88236309244409],[-125.64920682131553,57.88242462518739],[-125.64908734571179,57.882573460673925],[-125.64895186782958,57.8827413182193],[-125.64883289231149,57.88283632611665],[-125.64870893541784,57.882901042108145],[-125.64863687348924,57.882940102039775],[-125.64863708210396,57.883029817159134],[-125.64864241963862,57.883249631975744],[-125.64860974142434,57.883473832228205],[-125.64858137538788,57.88357580772672],[-125.64852041595427,57.88366872571329],[-125.64839695709054,57.883791757310796],[-125.64824816097176,57.883918086163106],[-125.64807401682039,57.88404883359222],[-125.64796781337635,57.88413041742361],[-125.64796847132301,57.88417191220339],[-125.64800508956337,57.884203409173125],[-125.64802608287314,57.88421355758377],[-125.64801211580212,57.88424043506001],[-125.64805145902116,57.88431791800441],[-125.64812863462579,57.88440895815388],[-125.64827208856973,57.88451699490872],[-125.64851101372066,57.88467574816255],[-125.64876069416209,57.88481210070164],[-125.64899062706529,57.88491700055811],[-125.64926679439648,57.88504108623011],[-125.64954496154084,57.88517526951596],[-125.6497797620387,57.88532503823914],[-125.6499975268719,57.8854927047368],[-125.65016840530566,57.88560081164338],[-125.65022719250048,57.885629001989074],[-125.65028842200194,57.88562131280372],[-125.65043507215881,57.88561160504774],[-125.65053493849166,57.88564551029297],[-125.65052571188268,57.885730715138685],[-125.6505007436538,57.88580690718344],[-125.65055915666717,57.8858754680748],[-125.65067837317079,57.88598231730907],[-125.65078798402027,57.88610259847642],[-125.65094347495263,57.88627682878457],[-125.65115269019458,57.886457928343376],[-125.65129410366606,57.8865603494997],[-125.65139464544117,57.886634627593004],[-125.65155177519804,57.886747182569806],[-125.65173066757764,57.88690016601435],[-125.6518834260373,57.887029530737465],[-125.65199007930184,57.88712737456035],[-125.65212306181692,57.88722977285524],[-125.65240341603757,57.88735834893294],[-125.6527543270504,57.88749832285316],[-125.65302230696263,57.887598829448095],[-125.65322818940446,57.88768571653255],[-125.65346844938762,57.88781755028159],[-125.65374849936192,57.88798200878842],[-125.65411029587679,57.88808612150354],[-125.65443455463881,57.88814415686949],[-125.6544588639652,57.888252999420594],[-125.6543463252016,57.888335693684134],[-125.65428379228898,57.88836917445341],[-125.65430648666303,57.888424183841295],[-125.65439004373329,57.888511872940576],[-125.65447669079997,57.888608541519055],[-125.6546261701874,57.888751352030305],[-125.65483582823016,57.888887589791274],[-125.65498516853997,57.888931712981005],[-125.65503051091264,57.88893295191345],[-125.65502705115571,57.88896434322715],[-125.65502530619807,57.88904059652875],[-125.6550458930182,57.889095600363994],[-125.65506997414883,57.88911360577412],[-125.65512109931052,57.88917429590995],[-125.65523389906718,57.88929346057368],[-125.65533505019681,57.88941708075561],[-125.65544663075272,57.889555306574884],[-125.65557187163962,57.889698053415486],[-125.65569418760346,57.88981387804521],[-125.65583140786352,57.88991628382824],[-125.65592246820297,57.88999053420315],[-125.65600928658644,57.89006925931964],[-125.65617981742307,57.89021772985949],[-125.65642603866813,57.89039443154359],[-125.65662301671776,57.89053511972045],[-125.65671522493767,57.89060040103069],[-125.65680219311483,57.8906611830122],[-125.65692579365019,57.89075345966935],[-125.65701800293012,57.89081874078463],[-125.65708709369152,57.8908749907748],[-125.65716032123436,57.89094022290928],[-125.65718855801445,57.890967210190894],[-125.65722647160808,57.890972915006934],[-125.65740749087169,57.891013752776374],[-125.65766384844557,57.8911198275952],[-125.65772592999858,57.891251195787795],[-125.65764047202428,57.891370970266216],[-125.65762789408394,57.891477474835746],[-125.6576842526199,57.89165929324265],[-125.65773391031824,57.89188034489223],[-125.65775304860044,57.891980202404056],[-125.65780044628461,57.891985931437574],[-125.65794883772703,57.8920210774303],[-125.65809831636166,57.89205174028244],[-125.65818752154858,57.892099069877034],[-125.65826181642441,57.8921643042172],[-125.65829522788715,57.89220139755341],[-125.65828970205892,57.892228297981184],[-125.65827246591483,57.89238525564701],[-125.65823174023481,57.89268906201491],[-125.65820470547435,57.8929940250556],[-125.6581606054167,57.8932047431437],[-125.65806886749108,57.893318894807635],[-125.6580270215349,57.89339840982231],[-125.65803488807934,57.89346123086029],[-125.65805847419912,57.89353418526374],[-125.65810466831029,57.893674484343414],[-125.65815687843066,57.893847320745614],[-125.65825368671803,57.89398887119226],[-125.65840818838811,57.894164212933774],[-125.65852108294841,57.894391034276644],[-125.65858113985703,57.89463117744349],[-125.65861763325849,57.894793880522805],[-125.65862351377852,57.89484323918086],[-125.65862310689872,57.89488809594161],[-125.65860200151582,57.8950046721317],[-125.65855974785372,57.89512904422456],[-125.65852172633862,57.89525006283726],[-125.65849005981393,57.895369976307855],[-125.6584682738499,57.89544617874223],[-125.65844900429529,57.895477529799905],[-125.65840840657872,57.89553461939988],[-125.65834978889986,57.89560063432589],[-125.6583273329483,57.895635341534124],[-125.65838494645446,57.89567810430081],[-125.65857483929274,57.89579073593775],[-125.65878281761803,57.89588547051808],[-125.65888168607681,57.89591600287659],[-125.65894475541526,57.895939714799255],[-125.65904033980937,57.895982574539715],[-125.65915463164082,57.89605800404495],[-125.65924794467931,57.89611880097021],[-125.65932346818639,57.89616497351682],[-125.65944003295112,57.89622246545747],[-125.65963640543974,57.896317169053034],[-125.65983067620273,57.896412988443586],[-125.65997034859691,57.89647951053327],[-125.66009528226458,57.896544873412246],[-125.66017927589728,57.89658770276823],[-125.66022229882996,57.8966113629391],[-125.6603168805774,57.89664973343849],[-125.66044926094636,57.89670726485955],[-125.66047586455254,57.89679816991214],[-125.6604896596537,57.89690586402165],[-125.66069934911744,57.896929948867836],[-125.66095689791452,57.89690929735211],[-125.66114958389046,57.896945674116026],[-125.66136511809071,57.89702360225917],[-125.66162671238945,57.897138654871966],[-125.66185267525859,57.89723006610619],[-125.6619851405965,57.89727862465845],[-125.66208836522294,57.897294586901914],[-125.66220115479442,57.89730160174778],[-125.66225705500577,57.89730286498509],[-125.66229160179007,57.897330988792326],[-125.66245859167157,57.89741215641097],[-125.662681264872,57.89751701529164],[-125.66281998046232,57.89757456043819],[-125.66294076714642,57.89763093861576],[-125.66314096092611,57.897654995586166],[-125.66335171261674,57.89767795749862],[-125.66349717984875,57.897807291691954],[-125.66361922579522,57.89795899554722],[-125.66370302616521,57.89802425120439],[-125.66379210913325,57.898089520149526],[-125.66390417027311,57.89817839745323],[-125.66402676657152,57.89827066559515],[-125.66418048967385,57.89841908456803],[-125.66429759498538,57.89853488906027],[-125.66434250912252,57.89858546747835],[-125.66437590227508,57.89862592380672],[-125.6644639246054,57.898691189663566],[-125.6645981882004,57.89877563657283],[-125.66466949443316,57.89882291701209],[-125.66469471957116,57.89883307357117],[-125.6647335387191,57.89885560029205],[-125.66481089437025,57.898934296469854],[-125.66492748399145,57.89910841453801],[-125.66501577303667,57.89926339670234],[-125.66504684828149,57.899327397502525],[-125.6652442885779,57.89930546496046],[-125.66546343941789,57.89933405190536],[-125.66535712699978,57.89954686028153],[-125.66524537122126,57.8997775981449],[-125.66527227786491,57.89983598119423],[-125.66527628767997,57.89985954173074],[-125.66529471593037,57.899922389271886],[-125.66531301458005,57.89999981534595],[-125.66531605093675,57.90001328038359],[-125.66534532296627,57.90016250688217],[-125.66537735241046,57.900356598363125],[-125.66539701324798,57.900518136715164],[-125.66539576678609,57.90065831498815],[-125.66535132286913,57.900791656032716],[-125.66529168867098,57.90097430277893],[-125.66531070112788,57.90120873399287],[-125.66538905567559,57.90141303516007],[-125.66546293583963,57.90152648744056],[-125.66563931701808,57.90162113237857],[-125.66580491129179,57.90174266488337],[-125.66576470394249,57.90187601684646],[-125.66571810031452,57.9020149600265],[-125.66574281982606,57.902082309244264],[-125.66575593413802,57.90215075079015],[-125.66579972214168,57.90232692881817],[-125.66584899265739,57.90248069155022],[-125.66586542289093,57.90253119817665],[-125.66587882636,57.90256711831457],[-125.66593880584921,57.902702964656875],[-125.66604113274805,57.902939848031046],[-125.66614960831494,57.903199175878655],[-125.66622558318005,57.90343487171429],[-125.66630136008617,57.903692996161396],[-125.66637834362392,57.90393318037331],[-125.66641649990981,57.90403308545058],[-125.6664506583346,57.9041060655883],[-125.66652809786397,57.90429690691226],[-125.6665845514167,57.904473116770355],[-125.66660567051754,57.90459092248911],[-125.66662240398917,57.904725539080694],[-125.66663528236114,57.90482089507642],[-125.66683223419759,57.904857274478196],[-125.66708340657635,57.904967805233845],[-125.66703111083501,57.90515495771476],[-125.6669464294176,57.90530502116609],[-125.66701289587894,57.905424061759895],[-125.6671212049046,57.90558357936296],[-125.66722958427759,57.905735246878095],[-125.66726504727238,57.9057813152156],[-125.66721206965045,57.905806976375494],[-125.66705930753004,57.90590191847524],[-125.66688815150374,57.90604952291087],[-125.6667871833838,57.9061322582163],[-125.66671404917038,57.906171326254096],[-125.6666514479422,57.90621042061514],[-125.66659090390641,57.90625737030224],[-125.6665184579786,57.90633681244347],[-125.66644350404871,57.90646110659109],[-125.6663439278263,57.906624590073775],[-125.66620736390877,57.906795831034955],[-125.66611261986758,57.906892039001654],[-125.66611636225923,57.906945878393486],[-125.66608160625013,57.9070579371331],[-125.6660470192528,57.90715093150049],[-125.66604364664565,57.907173352221626],[-125.66594535819269,57.90719329201629],[-125.66557333998419,57.90726525333063],[-125.66509537623969,57.90750404470096],[-125.66458883242187,57.90787285179348],[-125.66398956189074,57.908107969488235],[-125.6636703138091,57.90817669431286],[-125.66365068114217,57.90824841819605],[-125.66366310521423,57.90839199649605],[-125.66368337527918,57.90860400372695],[-125.66367313019668,57.9088058408084],[-125.66338605277802,57.90893296221775],[-125.66286187999016,57.90902696078329],[-125.6626057333717,57.90923602552052],[-125.66265338089899,57.90957034178994],[-125.66271502772778,57.90975553912931],[-125.66276947077009,57.90980277837959],[-125.66286531412166,57.90993983937797],[-125.66286893309064,57.9101237683768],[-125.66281170392254,57.91027053513155],[-125.66279011912287,57.91032431070512],[-125.66277729688365,57.91034222165072],[-125.66275154178412,57.910390379350645],[-125.66272475321952,57.910435170042845],[-125.66276439540191,57.91048573623987],[-125.66285135580249,57.910555487067704],[-125.66289314872715,57.91060157282297],[-125.66288840567506,57.91065987690297],[-125.66287141463296,57.910788802176576],[-125.66283895668711,57.91087843709873],[-125.6628101649577,57.91091312959003],[-125.66272914034856,57.911006005946156],[-125.66266504783519,57.91109331782299],[-125.66265894915965,57.91118414094251],[-125.66266732761306,57.91130976611318],[-125.66264554087968,57.91138597049268],[-125.66261795620812,57.911402722594055],[-125.66259243151627,57.911425087228004],[-125.66257332821237,57.911437374946146],[-125.66248431344775,57.91147976508082],[-125.66221315810387,57.911594588610704],[-125.66184041382965,57.91174167623568],[-125.6615263722118,57.91193152767284],[-125.66132321249066,57.91211044570892],[-125.66125715596652,57.912180930052436],[-125.66123489477665,57.91219320956044],[-125.66111588744214,57.91228486701639],[-125.66087788114291,57.91246706019613],[-125.66067419471952,57.91258765980412],[-125.66061276156977,57.91261329701876],[-125.66056722856919,57.91263000299475],[-125.66047720246709,57.91266790341433],[-125.66025270367665,57.912755926855304],[-125.6598915287276,57.912904160224976],[-125.6595894890729,57.91304917936694],[-125.65934602362651,57.913249299499945],[-125.65920770682872,57.91349230399579],[-125.65917461824486,57.913765857276466],[-125.65913666799275,57.913994539494034],[-125.65910392398428,57.91411445272538],[-125.65908132555018,57.91416373946856],[-125.65907487223977,57.914177180565076],[-125.65903206351867,57.914243237597134],[-125.65894628294313,57.914393294702364],[-125.65889891724069,57.91449634848366],[-125.65888908627672,57.91453221028776],[-125.65875880237898,57.91458682857484],[-125.65840624956215,57.91471265098004],[-125.658014040247,57.9147912690106],[-125.65769943534029,57.91480616161038],[-125.65745255974161,57.91479991973052],[-125.65730494846868,57.9147860824895],[-125.6571910437012,57.91477906063207],[-125.65685030484116,57.91476584726636],[-125.65633875708015,57.91473873490453],[-125.65601807688233,57.91472557115028],[-125.65579238897736,57.91471040914927],[-125.65550870602479,57.914689489472586],[-125.65522499915687,57.914673055003384],[-125.65494631339658,57.91468354817773],[-125.65467796367419,57.91471761840039],[-125.65446883054247,57.914738384059234],[-125.65428694791541,57.91477940654313],[-125.65411634445057,57.91485522359574],[-125.65389445445226,57.9148860484575],[-125.65360289350146,57.91480566640863],[-125.65336114896803,57.914700741042644],[-125.65323179068265,57.914652181250176],[-125.65308316577463,57.91463497228401],[-125.65284907910171,57.91461529754889],[-125.6526528465462,57.9146103001937],[-125.652473373493,57.91461880389217],[-125.65218190009331,57.91464271554952],[-125.65188729368036,57.91466213250954],[-125.65176374587668,57.91467190284221],[-125.65163209666646,57.9147579117536],[-125.65129637443414,57.91500151369344],[-125.65096381557935,57.91524400167887],[-125.65082133076606,57.91547465104592],[-125.65069987167138,57.9158264742166],[-125.65040415101168,57.9160791508545],[-125.65008089188468,57.916115310750385],[-125.64986714109351,57.91617755152709],[-125.64968003314655,57.91632509380319],[-125.64956637795036,57.91640329786586],[-125.64951552566713,57.916424472047666],[-125.64922948965774,57.916542595204184],[-125.64859010930441,57.91686725846508],[-125.64797957795957,57.91726376923134],[-125.64765513249459,57.917538793774575],[-125.64744334983236,57.91772664091822],[-125.64718983713092,57.917976058281766],[-125.64693163653448,57.91827480763877],[-125.64676835616224,57.9184683897607],[-125.6467000240995,57.91855231910506],[-125.64666157862045,57.91860044052384],[-125.6466156528647,57.918657513884845],[-125.64655927465039,57.918705587716055],[-125.64648681514072,57.91877941275981],[-125.64637556125331,57.91893836684367],[-125.64621398923015,57.91917232604807],[-125.64602789682124,57.919433135372834],[-125.64591327022404,57.91961450972835],[-125.64589671318402,57.91969072602777],[-125.64590394034809,57.91970868883548],[-125.64602174170979,57.91975161790019],[-125.64634149112493,57.91986797892541],[-125.64669884666681,57.92002593350096],[-125.6470139158451,57.920191625447075],[-125.64734455794891,57.920384273304954],[-125.64773703953102,57.92062418586486],[-125.64812628439313,57.920873060578145],[-125.64845006059677,57.92112400444559],[-125.64872949870151,57.92137819513288],[-125.64897633931825,57.92161884169719],[-125.64918818823946,57.92187621789657],[-125.64937701484658,57.922114468123816],[-125.64948570475549,57.92223026627921],[-125.64950664653293,57.9222482650091],[-125.64955907421205,57.92228541166853],[-125.64971179136198,57.92243384829971],[-125.64985996421342,57.92261703865766],[-125.64988585062676,57.92278420693824],[-125.64981225157807,57.922980272274835],[-125.6497344716351,57.92317184070792],[-125.64965423686454,57.92328602062955],[-125.64945325443483,57.923446985049985],[-125.64914281494941,57.92379831256135],[-125.64892263640951,57.924205951329895],[-125.64884054358373,57.92440647998563],[-125.64869576840911,57.92453731160771],[-125.64837218667914,57.92482580018877],[-125.648072115515,57.925082948701466],[-125.647932688278,57.92520482187355],[-125.64781462931755,57.92530095731756],[-125.6476229094985,57.92548437347958],[-125.64744795038526,57.92568129153195],[-125.64732721380713,57.92583573658581],[-125.64717677975354,57.92600692517026],[-125.64705967925417,57.92611203443559],[-125.64701826191317,57.9261377188355],[-125.64688271856438,57.926183340530734],[-125.64654088497095,57.92627776033998],[-125.64613950952419,57.926415759029204],[-125.64579800079125,57.92658643868061],[-125.64556760776775,57.92672825449783],[-125.64548270708585,57.92677625245402],[-125.64544670115323,57.926788492982496],[-125.64532579415136,57.92684873136134],[-125.64505440150377,57.92697137199411],[-125.644745968374,57.92710288523026],[-125.64449385887296,57.92719529609869],[-125.64412672895293,57.927284034952066],[-125.64374712577413,57.92735030977917],[-125.64358962763106,57.9273734398282],[-125.6435357945346,57.927372174361864],[-125.6434597279878,57.92737869978262],[-125.64342064755525,57.927381959674996],[-125.64332671251869,57.92737946533446],[-125.64313367499011,57.92736549074294],[-125.64303762882682,57.92736299054519],[-125.6429698685422,57.92738411723109],[-125.64280372262316,57.92742853138871],[-125.64267359889388,57.92745734115034],[-125.64263865543593,57.92746958378173],[-125.64264223837691,57.92753688245861],[-125.64266492083665,57.92770404448828],[-125.64255456052024,57.92787645719561],[-125.6420846538099,57.928003045310284],[-125.64140349263313,57.92814252135134],[-125.64070290735658,57.928325679516824],[-125.64007081511639,57.928520233910355],[-125.63980821427924,57.92860363588588],[-125.63979028779062,57.92860246594882],[-125.6397408904596,57.9285787812215],[-125.6396988480404,57.92855960230436],[-125.63958076832812,57.928543582218445],[-125.63934357278107,57.9285104174429],[-125.63916740403681,57.92849648275043],[-125.63912836512054,57.92849525556071],[-125.63909033033217,57.928498517022575],[-125.63890875206185,57.92849914665566],[-125.6386342680063,57.928500645645244],[-125.63847385612921,57.92849572464701],[-125.63831114966786,57.92850986249047],[-125.63795381925333,57.928563845059706],[-125.63751896446324,57.92866471826525],[-125.63717910950237,57.92876809170379],[-125.63697380795031,57.92882024249512],[-125.63681641257334,57.92882990704476],[-125.63662204584423,57.92884283506827],[-125.63636840075662,57.92887242338086],[-125.63615998245004,57.928920078478164],[-125.63609643804459,57.92894121323123],[-125.63599313758357,57.92892523031359],[-125.63577599142909,57.9288921139326],[-125.63556960851177,57.92883771838407],[-125.6353476986402,57.92875075692392],[-125.63516164367907,57.928669500691164],[-125.63510385855753,57.928640183841274],[-125.63506994783653,57.92865354882719],[-125.63501260642325,57.928688157880956],[-125.63488835481422,57.9287652001112],[-125.63472042105711,57.92888249603629],[-125.63458221850888,57.928981929499486],[-125.63449924648584,57.929046748216],[-125.63443433157288,57.92909928006018],[-125.63436732208275,57.92915180612976],[-125.63428763868862,57.929203175904384],[-125.63421327447918,57.92925119577226],[-125.63417397308977,57.929276882105455],[-125.63413145261285,57.929307045539886],[-125.6340358986226,57.92936285755421],[-125.63387890915523,57.92943980900906],[-125.63361734629879,57.92952208028552],[-125.63333691767797,57.92959196279231],[-125.63320239249236,57.929637573618734],[-125.633158561035,57.929694648857],[-125.6331166925677,57.92976518734339],[-125.6330899155636,57.92980548719452],[-125.63306437176277,57.929826725141226],[-125.63305161626771,57.92983566192614],[-125.6329774681558,57.92986125197796],[-125.63281863688904,57.92991015996058],[-125.63269571974679,57.92995692376407],[-125.632606539806,57.93000826641553],[-125.63250425318131,57.93010443240472],[-125.63242699520863,57.930232069035334],[-125.63222316519183,57.93034814153968],[-125.6318619303851,57.930473872461604],[-125.63162578609447,57.93054835973611],[-125.6315039126203,57.930595125366224],[-125.63134265709867,57.930675426633954],[-125.63118434539551,57.930779287136],[-125.63101018900207,57.93088310359792],[-125.6307854243955,57.930980050722425],[-125.63069166416251,57.93106726714136],[-125.63077143457213,57.93111459072131],[-125.63078242212124,57.93117742458513],[-125.63055108955288,57.93129790444437],[-125.63023128571687,57.93139683018876],[-125.63006311697944,57.93142888673639],[-125.62995722625138,57.931461115997216],[-125.62976024626624,57.931523372408265],[-125.62946154161976,57.93162347643978],[-125.62904247283245,57.93172436635817],[-125.62856446994519,57.931806025407646],[-125.62818896111882,57.93187787529943],[-125.62799739621802,57.931926686361884],[-125.62790296252818,57.93197352537559],[-125.62778928714089,57.93204610488539],[-125.62764571202696,57.93215112402115],[-125.627563874095,57.932206969926504],[-125.62752556791827,57.93223714314613],[-125.6274101516101,57.93227046529406],[-125.62722500703535,57.93231032129126],[-125.62711918924481,57.93233469810473],[-125.62709372933368,57.932346963280686],[-125.62699033433846,57.93233994501056],[-125.62680574649322,57.932429147616766],[-125.6266811656739,57.93264188216019],[-125.62664806806333,57.93278534041957],[-125.62663258604624,57.93285595105081],[-125.62658546493336,57.93292310857289],[-125.62647727726004,57.93297327258029],[-125.62634496575349,57.93300654649223],[-125.62626568143037,57.933017539126304],[-125.62605252670353,57.93289918458404],[-125.62566959898051,57.93265586740223],[-125.62532085560449,57.932583112020644],[-125.62501672624381,57.9326966489137],[-125.62486837413167,57.932751184571785],[-125.6247970536158,57.932703881153465],[-125.62464815705552,57.93260140614755],[-125.62449508316249,57.9324944332479],[-125.62429905281672,57.93235369435203],[-125.6240380005907,57.93217127660236],[-125.62373994729829,57.931993239885124],[-125.62347320896409,57.93185117871307],[-125.62328526072224,57.93174747043756],[-125.62315217123745,57.931649524481934],[-125.62307115227644,57.93151695945465],[-125.62289303154182,57.93138187670776],[-125.6225353528702,57.93125525725644],[-125.62224508351548,57.9311445287963],[-125.62216637102514,57.93109720308082],[-125.62209083426447,57.931049886325454],[-125.62190286562392,57.93095066206887],[-125.62176004728333,57.93087511699019],[-125.62172434560843,57.93085595033296],[-125.62164018382455,57.93082655269302],[-125.62135932279821,57.93072482096557],[-125.62102593338284,57.93059938801139],[-125.62087360856874,57.930523814970016],[-125.6208579288112,57.930509190998286],[-125.62077100017841,57.930439411313415],[-125.6205085913858,57.93018520774286],[-125.62010061228683,57.92991825246796],[-125.61972007066073,57.92986333572041],[-125.61957617161956,57.92989544823738],[-125.61952321826989,57.92991211941462],[-125.61927125506506,57.92998205369599],[-125.61889021537893,57.93007965570798],[-125.61858922785343,57.93009000957657],[-125.61825847674409,57.930017287294426],[-125.6178445658608,57.92992189597923],[-125.61743598398456,57.929820911232476],[-125.6170820586698,57.92974363355813],[-125.61685023666803,57.92970147219919],[-125.61677860057138,57.929686686875286],[-125.61673536735798,57.92968095510884],[-125.6165088328529,57.92963880836188],[-125.61617165278959,57.92957615581527],[-125.61600306890551,57.92954426849566],[-125.61598838139302,57.92953525426375],[-125.6159654433824,57.9295071509424],[-125.6159165180745,57.92943859912343],[-125.61588840202468,57.929401508957035],[-125.61584356209498,57.92934642675909],[-125.61576538253416,57.92924975334779],[-125.61561064898014,57.92910239213417],[-125.61538993077481,57.92890325188436],[-125.61528114300822,57.92880536840391],[-125.61528041708836,57.928773964636896],[-125.61522337026526,57.92867398749651],[-125.61483134103935,57.92850575334593],[-125.61419949737225,57.92835476785197],[-125.61389504836008,57.92829220433389],[-125.61383916667435,57.92828643498517],[-125.61369025861735,57.92829161086889],[-125.61347928503389,57.92827641981265],[-125.61322508593638,57.92825661702951],[-125.61298114935977,57.92826375927208],[-125.6128447870069,57.92828242849787],[-125.61273089588101,57.9282708827124],[-125.61252043126373,57.92820634615079],[-125.61232055818347,57.92813847560654],[-125.61219129921784,57.928080903657374],[-125.6120569561605,57.92800537298339],[-125.61185549467692,57.92788703018766],[-125.61157957007715,57.927722489109414],[-125.61124807542892,57.927520776315184],[-125.61092180742732,57.92732356393569],[-125.61071513011906,57.927200718304505],[-125.6106227262348,57.92715334590709],[-125.61049036141381,57.92709127732865],[-125.61030012917325,57.92700997414426],[-125.61000561326313,57.92690817879598],[-125.60961742896833,57.92678031425968],[-125.60942494927032,57.926712461094525],[-125.60950011298544,57.926692494610634],[-125.60966208432575,57.9266469881923],[-125.60974125564891,57.92654516482321],[-125.60973232937161,57.92638813064],[-125.60961862022144,57.92625882671631],[-125.60937701802561,57.92614484868901],[-125.60925155147275,57.92602896784179],[-125.60928005618325,57.92592699624015],[-125.60930594864782,57.92587324085459],[-125.60930604185648,57.925864269245004],[-125.60933312114665,57.9257970595141],[-125.60936761057606,57.92562781635794],[-125.60936218207485,57.92543826948777],[-125.60928294157397,57.9252428988359],[-125.60912078482625,57.925001304129054],[-125.60896230416616,57.9248124298205],[-125.60891230400875,57.92474835849487],[-125.60890188878858,57.92473487011899],[-125.60888009938117,57.924697797194426],[-125.60885740291496,57.92464726379766],[-125.60884079463253,57.92462029943288],[-125.60882409305341,57.924602306664006],[-125.6087668182755,57.924528120587155],[-125.60863893094256,57.924340457276564],[-125.60850486886358,57.92413931793487],[-125.60844775367433,57.92404830997228],[-125.60844468903491,57.92403932910099],[-125.60842299389587,57.92399328453741],[-125.60835690199458,57.92385290491345],[-125.60828972850015,57.92371588654516],[-125.60826492244597,57.92366534689412],[-125.60825973002034,57.92365635976674],[-125.6082150651967,57.923587818002666],[-125.6082289459931,57.92347122461232],[-125.60826415821346,57.92333338577936],[-125.60812271666688,57.923131103072244],[-125.60796700278914,57.92288055453878],[-125.60786190618917,57.92263464077843],[-125.60770514390767,57.92238296749133],[-125.60755045298751,57.92213690758612],[-125.60742603555684,57.92192233821754],[-125.60735147241984,57.92178529786164],[-125.60734258561304,57.92172583319733],[-125.60736530839756,57.92167319056564],[-125.60736647915938,57.9215610459623],[-125.60735444780637,57.92139839585568],[-125.60734795810166,57.92131314423465],[-125.60734506439128,57.9212862201835],[-125.60734021723238,57.92124583261532],[-125.60732427893763,57.92115494576248],[-125.60723767810642,57.92105824324672],[-125.60716227399872,57.92100194696702],[-125.60723348692946,57.92095505474837],[-125.60728213125203,57.92084417163801],[-125.60724882194457,57.92069940259796],[-125.60723264987668,57.92063094468322],[-125.60722534731376,57.920621951322005],[-125.60720778871753,57.920586012222515],[-125.6071726196003,57.92051749830512],[-125.60713740375496,57.920453470161824],[-125.60711269511921,57.920393958911994],[-125.60708719218238,57.92030865130122],[-125.60705580741399,57.92018183162746],[-125.60703702372936,57.92005953504165],[-125.60702947114885,57.91997428038699],[-125.60702706334362,57.919902498655716],[-125.60701745864684,57.919811630569676],[-125.60701733222106,57.91972191192541],[-125.60702436751063,57.91965464397722],[-125.60703861135673,57.91960534094455],[-125.60705661036312,57.91949885360394],[-125.60709564856951,57.919297102695495],[-125.60715679876478,57.91910102440426],[-125.60719984465128,57.919021526408166],[-125.6072328502047,57.9189947082479],[-125.6072923950694,57.91895226762101],[-125.60736053481698,57.9188952730928],[-125.60747234494762,57.91879915549298],[-125.60761619449734,57.918668366381105],[-125.6077368670937,57.918531901517056],[-125.60784254710578,57.918417821973286],[-125.60792672878712,57.91833956635175],[-125.60801169340046,57.918288228425325],[-125.6081444366808,57.91821011554101],[-125.60828478019228,57.91811071682677],[-125.60840037494319,57.91805610428855],[-125.60855305433425,57.91798814290032],[-125.60869986788704,57.91787530507401],[-125.60875102506374,57.9178272318409],[-125.60872373831981,57.917812572522024],[-125.6085913628236,57.91775498843074],[-125.60841151847481,57.91769614322723],[-125.60833046063463,57.91767571840059],[-125.60833597922075,57.91765330510723],[-125.60833747393013,57.917509760609676],[-125.60825659514099,57.91726952707185],[-125.60792075543415,57.917090224612025],[-125.60747171798369,57.91693862474911],[-125.60720628839252,57.91678756482748],[-125.60705289081388,57.91662225569482],[-125.60691440403559,57.91644241123545],[-125.60683031765727,57.91630982913474],[-125.60677634578953,57.91622331632685],[-125.60674333898713,57.91615032307937],[-125.60671051991977,57.9160593867978],[-125.60667424532097,57.9159953556903],[-125.60665237451171,57.915968375744264],[-125.60661495944696,57.91591331305034],[-125.60654932534563,57.9158312516427],[-125.606499352968,57.91576605857438],[-125.60643153186534,57.91569296244958],[-125.6063355039489,57.91559174611225],[-125.60626081646973,57.91546816331741],[-125.6061635362096,57.915285075627054],[-125.60601537014989,57.9151242668848],[-125.60579739481685,57.914978952079196],[-125.60555739382258,57.914820114050926],[-125.60542464565735,57.91469972337685],[-125.60539558140665,57.91465365691737],[-125.60534897463508,57.91467034095008],[-125.60526429699458,57.914694762478504],[-125.60515040224885,57.91468769613008],[-125.60496568061973,57.91469163441417],[-125.60475631992578,57.914731386471914],[-125.60459942827619,57.914699519684916],[-125.60444878339217,57.91457458903541],[-125.60432116578643,57.91446767018155],[-125.60424490436048,57.91439342648248],[-125.6042126727582,57.91434847183788],[-125.60418643708931,57.91433381475288],[-125.60405692438061,57.91430763603702],[-125.6037536577793,57.9142461748702],[-125.60336086735573,57.914167624424714],[-125.60303885761154,57.91408255491397],[-125.60276082492841,57.91403013845464],[-125.60248169884383,57.913982204041176],[-125.60231313717267,57.913955907108964],[-125.60216774298769,57.913934165037375],[-125.60195387036671,57.91390100350124],[-125.60168221930144,57.91384411797187],[-125.60137805615389,57.91376919106115],[-125.60120235097885,57.91371932044064],[-125.60106454352652,57.913679656327716],[-125.60081855352186,57.913591444674],[-125.60057878871089,57.913513344480215],[-125.60043050907912,57.91346467654462],[-125.60037790395101,57.913449939623696],[-125.60028411878784,57.91343844354548],[-125.6000659344709,57.91341423781775],[-125.599998461384,57.91340842788414],[-125.59991411707284,57.91340144577827],[-125.59988569480245,57.91339575305941],[-125.59983688131261,57.91342140028949],[-125.59972121182415,57.913481612261975],[-125.59962253757051,57.913532903443055],[-125.59950126551168,57.913624499607295],[-125.59928439108928,57.91377524616039],[-125.5990919556615,57.91390924385295],[-125.59890685951065,57.913950181181676],[-125.59869260683227,57.91395290037049],[-125.59850176524917,57.913938867687435],[-125.5983826474763,57.914025983487086],[-125.59834356310114,57.91422660924337],[-125.59829044057281,57.91435990433012],[-125.59817793984497,57.91442012459241],[-125.59805019821856,57.91452403622996],[-125.5979085735864,57.9146424850093],[-125.59780638393852,57.91472516556603],[-125.59776375482039,57.91476428843174],[-125.59775412223131,57.914777717028656],[-125.59773177392906,57.91479447165098],[-125.59765283473263,57.91487385788712],[-125.59746567253009,57.91500786934395],[-125.59723846965207,57.915136152148335],[-125.5970233019085,57.91522521940154],[-125.59660447316917,57.915312548334676],[-125.59610266634796,57.91536261577969],[-125.5957967788072,57.91544804159984],[-125.59551425999118,57.91561652679415],[-125.59527462494431,57.91572233912256],[-125.59520382940654,57.91572997436041],[-125.59518188249592,57.9157108426054],[-125.59510871424307,57.91564557472937],[-125.59498116785294,57.91553416105882],[-125.5948443580657,57.91540028961862],[-125.59478068463204,57.915336171928665],[-125.59467844966295,57.91532352471527],[-125.59447647001465,57.9152645934055],[-125.59428486755995,57.91512494725541],[-125.59403878854899,57.914947004743176],[-125.59371344436516,57.91478115630632],[-125.59338657137253,57.914660161372886],[-125.59314157910367,57.914577545831875],[-125.59290279052547,57.91450840648313],[-125.59266193620671,57.91443365302533],[-125.59256196535277,57.914408674905104],[-125.59242395319016,57.91438694475396],[-125.59214637077831,57.91429413442549],[-125.5919897294922,57.914142255897254],[-125.59194359126535,57.9140187525455],[-125.59185330516004,57.91397585999581],[-125.59173303514643,57.91397324852795],[-125.59164653198143,57.91397074045867],[-125.59161804495,57.91396953166348],[-125.59162087814262,57.914000941592526],[-125.59161998939233,57.914082806402064],[-125.59161906411398,57.91416803552638],[-125.59154789327668,57.91421043332271],[-125.59131153613701,57.91420858698195],[-125.59092508166802,57.914229830354756],[-125.59052567113056,57.91427794814913],[-125.59020765459607,57.91431397893535],[-125.58993392775143,57.91435126677251],[-125.58964534622777,57.914397480084865],[-125.58935242826597,57.91445265119998],[-125.58918430047046,57.91448465559581],[-125.5891387825009,57.91449685143795],[-125.58906474502444,57.91451232371917],[-125.58898125562934,57.91452440237756],[-125.58893053111706,57.91453097471664],[-125.58887652214811,57.914547630165934],[-125.58866045381922,57.914524533732006],[-125.58816239036447,57.91442542675478],[-125.58761254598315,57.91433400795756],[-125.58723638114367,57.91428349817126],[-125.58698343571936,57.914254677385706],[-125.58681029297912,57.91435731608687],[-125.58664732343304,57.914591198610445],[-125.58651855089062,57.91478593553274],[-125.58642765596797,57.91489555789485],[-125.5862803155987,57.91495453857443],[-125.58606777641933,57.91499425146834],[-125.58580856695475,57.915054005484315],[-125.58541718756186,57.91513802021719],[-125.58499718706851,57.915234280886175],[-125.58469737949012,57.91533876530299],[-125.58443149154785,57.915431018641314],[-125.58418859721985,57.91544708289872],[-125.58400950164553,57.91541960839585],[-125.58384738963063,57.915383214901134],[-125.58359086395424,57.915296059756486],[-125.5833132966299,57.9152032309364],[-125.58317126473993,57.9151635349993],[-125.58307832849482,57.915169973043994],[-125.58296737443722,57.91518420495086],[-125.5829208565381,57.915191909655384],[-125.58289106091664,57.91521424587787],[-125.58283776375013,57.91526230243899],[-125.5828014499563,57.91530144036341],[-125.58275026305458,57.915349503502966],[-125.5826381840434,57.91546354293699],[-125.58251106135288,57.91560332909295],[-125.58242128674195,57.91570510203728],[-125.58234533370347,57.915796824979424],[-125.58227701222462,57.91586726377091],[-125.58219382954573,57.91594550626222],[-125.58206040932419,57.91608190789054],[-125.5819811477109,57.91618707800482],[-125.58197240640033,57.91621396601344],[-125.58179733040124,57.91620444475715],[-125.58141522091626,57.91621221658899],[-125.58108968401231,57.91625717394619],[-125.58083603020064,57.91629114192223],[-125.58062462458399,57.916321877982],[-125.58043099982034,57.91636612742719],[-125.58019283187973,57.91643154430756],[-125.57998545824304,57.916479114221204],[-125.57968622832396,57.91652975849141],[-125.57934265486242,57.91658362652453],[-125.57917776681612,57.916606656831256],[-125.57914189962761,57.91660542205893],[-125.57909125843352,57.91660414060276],[-125.57902911360998,57.91659272948464],[-125.57896280222474,57.916577940738634],[-125.57884484881731,57.91655625986044],[-125.57864248536524,57.91653319046976],[-125.57849778988236,57.91654282606775],[-125.57847020167493,57.91655619651035],[-125.57843946860287,57.91656843551949],[-125.57837690921563,57.91659403153463],[-125.57829965547806,57.916613973625104],[-125.57815043659949,57.91665050998703],[-125.57795540806532,57.916726152788364],[-125.57783765004065,57.91678185358194],[-125.57778565539566,57.91680636132562],[-125.57773562448875,57.91684545448288],[-125.57764583399258,57.91694722434102],[-125.57748726939272,57.91715868090897],[-125.57733186049045,57.91737014735172],[-125.57724409003943,57.91747977375964],[-125.57720672141527,57.917518906927945],[-125.57717455780272,57.917563663998706],[-125.57714129253436,57.91761178200339],[-125.57711004122126,57.9176699997028],[-125.57708829183674,57.91772712608139],[-125.57708069442135,57.91774504562529],[-125.5770553163463,57.91774945098155],[-125.57697076476208,57.91776039733805],[-125.57683025182294,57.91777453034889],[-125.57658914677847,57.9178175020249],[-125.57627910839187,57.91788941251364],[-125.57599960581074,57.917968148344],[-125.57568424626224,57.91804452645037],[-125.57541319657103,57.9181221665113],[-125.57532321086498,57.9181476737456],[-125.57524699920457,57.918167617435216],[-125.57508284453698,57.91821756058785],[-125.57497805838773,57.91824526334959],[-125.57488489765143,57.91827076016468],[-125.5746417399473,57.91830811440848],[-125.57429517165151,57.91834401636342],[-125.5738873551129,57.918383085991515],[-125.57349547378449,57.91841211206786],[-125.57305290162849,57.918445460488854],[-125.57244864952452,57.91849623239786],[-125.57206720447074,57.91853538109477],[-125.57192025264506,57.91855846011486],[-125.57171294620856,57.91859816718326],[-125.57157401100964,57.91865715896396],[-125.57154521859289,57.91868398190726],[-125.57152170719131,57.91870970034824],[-125.57145456038552,57.918766679897125],[-125.5713938134661,57.91881919408166],[-125.57133860308006,57.91884817496164],[-125.57127814576761,57.91887377449511],[-125.57120835208391,57.91888588618777],[-125.57117123150206,57.918902588929754],[-125.57117262619185,57.918965396338514],[-125.57117430064359,57.919095493503455],[-125.57117443107043,57.9191773620325],[-125.57117422649534,57.919195305070225],[-125.57123138064468,57.91927287119981],[-125.5713426894759,57.91941565745826],[-125.5713888305735,57.919533561433774],[-125.57135938554555,57.91961757781946],[-125.5713249490581,57.91967578407101],[-125.5713055561182,57.91971048760606],[-125.57132763676042,57.91981037051565],[-125.57144350042448,57.92001597440517],[-125.57165702258126,57.92026450854213],[-125.57176435691068,57.920477935197425],[-125.57151596712539,57.92069582576794],[-125.57111245963081,57.92090985228416],[-125.57097278577464,57.921032765773354],[-125.5710128167672,57.92113270666923],[-125.57091606401781,57.921287159846685],[-125.57076564193147,57.92142686081659],[-125.57070809877958,57.92147489923685],[-125.57069112241656,57.921482694927946],[-125.57065729769089,57.9214870718785],[-125.57062137491525,57.921490320576105],[-125.57051956770704,57.92153260885511],[-125.57034967499534,57.92162177986166],[-125.5702413295273,57.92168199059782],[-125.57022413511687,57.92170885075714],[-125.57022901062425,57.92174475397299],[-125.570224225039,57.921794083839366],[-125.57020682551412,57.921838887085464],[-125.57018641781558,57.92186910133289],[-125.57017456016037,57.92189149276894],[-125.57016912074567,57.92190493303398],[-125.5701338512339,57.921944071208486],[-125.57002746151267,57.92201774591762],[-125.56987996492131,57.922085680441775],[-125.56972193027259,57.92215358078098],[-125.56956619441111,57.92220354460978],[-125.56943807063021,57.92224013966761],[-125.56934073867411,57.922260011854426],[-125.56909959631805,57.92230297017859],[-125.56867444560429,57.92237673414686],[-125.56840580859937,57.922424088163886],[-125.5682619972367,57.92244717347133],[-125.56810230686953,57.922473571613246],[-125.56803351785378,57.92249017091058],[-125.567868609874,57.922512065919506],[-125.56749209550216,57.922578133468264],[-125.56717471108284,57.92264214907003],[-125.56685692519078,57.92274092867155],[-125.56639906697997,57.92290429798432],[-125.56599233308599,57.923027458791154],[-125.56567483871191,57.92310044240224],[-125.56544187136383,57.92316585054585],[-125.56517375302924,57.92325805926271],[-125.56489198553133,57.923344615453225],[-125.56468033252466,57.923392148101435],[-125.5644846104864,57.92343188207977],[-125.56438093996624,57.92345172997052],[-125.56435761554486,57.923460625612066],[-125.56414137537564,57.923539544047436],[-125.56368761349658,57.92371188954539],[-125.56338647586406,57.923829780832776],[-125.56329852336702,57.923858651292804],[-125.56323922065366,57.92387527924241],[-125.56296841602432,57.92392597978666],[-125.562410125469,57.92400938066121],[-125.56185905949535,57.92410738230635],[-125.56144859883486,57.924185657723385],[-125.56125402097501,57.924216418877016],[-125.56118210315128,57.92422851843479],[-125.56101285683854,57.9242593626544],[-125.56064053493613,57.92432542487255],[-125.56017106609451,57.92439452991484],[-125.5597756909249,57.92444593429561],[-125.55937586927767,57.924516388110014],[-125.55899921471509,57.9245914033599],[-125.55854646973253,57.924674015927586],[-125.55798393621433,57.92475738433668],[-125.55741189211905,57.92484071879977],[-125.55681752946835,57.92493743446889],[-125.55646082309958,57.92502148086331],[-125.5562884394518,57.925138663374014],[-125.55606488636953,57.92529829183195],[-125.55578881969672,57.92543531511173],[-125.55540713114232,57.92557759295562],[-125.5550932463397,57.92569878780996],[-125.5548880469561,57.92573399025991],[-125.55461184074584,57.92570390865702],[-125.55430929123425,57.925669252417414],[-125.55414278209038,57.92564626561916],[-125.55399309518285,57.9257186615911],[-125.55368884171172,57.92591726825858],[-125.5533024385589,57.92609989806982],[-125.55300563142642,57.926204322988404],[-125.5528971383216,57.926273491479975],[-125.55289083874794,57.92635870367342],[-125.5528929471804,57.92644843004906],[-125.55286150501564,57.92669505267904],[-125.55278023605678,57.92713776926969],[-125.55271277279616,57.927396607578885],[-125.55269767442779,57.92742347272237],[-125.55254486917235,57.92749024930605],[-125.55214377282927,57.92766385485493],[-125.55167368940002,57.927867507493616],[-125.55124832793116,57.92803990731816],[-125.55083715927913,57.92817197989566],[-125.55048534331975,57.92828406455312],[-125.55030801509481,57.92836982133526],[-125.55007410222647,57.92842174205364],[-125.54961345102745,57.928453830900715],[-125.54927553289927,57.92846278192681],[-125.5489455752695,57.92851213282761],[-125.54842506664467,57.928605697161636],[-125.54804084364562,57.92868962828184],[-125.54770756210952,57.92875242280397],[-125.5471470007852,57.92884023878272],[-125.54644879925571,57.92896122892206],[-125.5457611089255,57.92908561574602],[-125.54528944204766,57.929154661507475],[-125.54488955677296,57.92922395075509],[-125.54441851254613,57.92932776194398],[-125.54413896702265,57.92939746027789],[-125.54404055597861,57.92941731055018],[-125.54398552655877,57.92942833722794],[-125.54394118955543,57.929428185515405],[-125.54387870772878,57.9294436726302],[-125.54382745183166,57.929491721519234],[-125.54375565711464,57.92958007393408],[-125.54365390667894,57.9296133704467],[-125.54356547727106,57.929592880697705],[-125.54347277090922,57.92957686222343],[-125.5433432311258,57.92955062401853],[-125.54314092855253,57.92951852879953],[-125.54288726265091,57.929457098220354],[-125.54275599423809,57.9293994516327],[-125.54272615278465,57.92933654548324],[-125.54266020130544,57.92920398269093],[-125.54226753654186,57.92902655984392],[-125.54160254570344,57.92893231160435],[-125.54125540278568,57.92891878068278],[-125.54117514766203,57.928920747397754],[-125.54109799622542,57.928927210733264],[-125.5410282289204,57.92893482094987],[-125.54095208674129,57.928945773658974],[-125.54081545341506,57.92898343381059],[-125.54062133302452,57.92905902653469],[-125.54049475308604,57.9290507396949],[-125.54045135666244,57.9288879732078],[-125.54031241670374,57.92876749403436],[-125.5400806536796,57.928814918723695],[-125.53993107485024,57.92887384170352],[-125.53984154713405,57.928857831677014],[-125.53973202278856,57.92883614505399],[-125.53960781592988,57.92880655715235],[-125.53947084563308,57.92878477549887],[-125.53935803649318,57.92877204918129],[-125.53928210026234,57.92876617921506],[-125.53919773280823,57.928759158558435],[-125.53905437419475,57.92874184036966],[-125.53882664842196,57.92871750113575],[-125.53858509821704,57.92870208561312],[-125.5383845851031,57.92869690525896],[-125.53817674311395,57.92868609172921],[-125.53797107071487,57.92867192091029],[-125.53786353518728,57.92866033310429],[-125.53777505603512,57.92864432532448],[-125.53762014720085,57.92862135805386],[-125.53750528620868,57.928605258561184],[-125.5374455213207,57.92857140628114],[-125.53740224767151,57.92848490093875],[-125.53734425230502,57.928308624871086],[-125.53695966561958,57.92807738272176],[-125.53625939834447,57.92793700395241],[-125.53585559330942,57.92789522439],[-125.53576606965842,57.92787921164218],[-125.53558061670762,57.92785164962265],[-125.53516733528092,57.92780871345393],[-125.53457899253162,57.927751706801544],[-125.53395214984715,57.92773493672819],[-125.53347027010444,57.92777586749108],[-125.5332756507955,57.927806587904975],[-125.53322910711177,57.927814275358635],[-125.533161186945,57.92784319632039],[-125.53305342677287,57.92776431414647],[-125.53271957309491,57.92761622814105],[-125.53209223114251,57.9276398213743],[-125.53159491574505,57.92773340142333],[-125.53141501755555,57.92776865684393],[-125.53136320400645,57.92777632511735],[-125.5313337032452,57.92777173539425],[-125.53127998525284,57.92776145301644],[-125.53119474217131,57.92774096626719],[-125.53108317081674,57.92771477935203],[-125.53096325279111,57.92768071250255],[-125.53086966036598,57.92765122419993],[-125.53083707139177,57.927641016020814],[-125.53078658491337,57.927626258840945],[-125.53063394969888,57.92759095500525],[-125.53042869224716,57.92754425064018],[-125.53023579126197,57.92752114090923],[-125.5299827444947,57.92749669729022],[-125.52978864263275,57.92748591911999],[-125.52973793238216,57.92748910467215],[-125.52972931938822,57.9275025322181],[-125.52963524027157,57.92751341514957],[-125.52945579035121,57.927512781662145],[-125.52933981606385,57.92750115717565],[-125.52922589686325,57.927494025827734],[-125.52902729197078,57.927505660540604],[-125.5288159496416,57.92752285739904],[-125.52869019972832,57.927532506189486],[-125.5286172741803,57.92754009872819],[-125.52851996319363,57.92755545542319],[-125.52831285677689,57.92757154497727],[-125.52798316100858,57.927598415022366],[-125.52773377417097,57.92761883990132],[-125.52760808001135,57.927624001890116],[-125.52747188907483,57.927625762056316],[-125.52729466261553,57.92761616158168],[-125.52716797766348,57.927616833659776],[-125.52704239627236,57.927613023552425],[-125.52685567811714,57.9276033888077],[-125.52671221667784,57.92759502892617],[-125.526610908295,57.927592426108696],[-125.52650442650113,57.9275808328702],[-125.52635586522979,57.927558996540476],[-125.52619029891964,57.9275449500551],[-125.52599097080936,57.927530783282734],[-125.52574625828616,57.92751533321615],[-125.52562701090208,57.92751154431431],[-125.52559418295488,57.9275203994202],[-125.52557390611588,57.92753714966803],[-125.52553978770533,57.92756394409395],[-125.52552485381035,57.92757622737537],[-125.52549735188884,57.92758061543856],[-125.52542016078519,57.92759155552961],[-125.52534499314918,57.92760811026076],[-125.52531961651994,57.92761138436172],[-125.52529917235898,57.927642713416425],[-125.52519121817208,57.927747749429145],[-125.52502279117078,57.92787724276145],[-125.52489501428015,57.92796426397832],[-125.52481314632307,57.92801107492569],[-125.52476426268518,57.92803669502569],[-125.52471754688383,57.92805783685541],[-125.52461555687358,57.92810906190875],[-125.5244706895912,57.9281276105093],[-125.5243156234802,57.928119206640346],[-125.52416344617717,57.928132121334244],[-125.52400635076177,57.92819997160954],[-125.5238694164924,57.92825892176588],[-125.52374520861133,57.9283145527768],[-125.52365493350759,57.92835684700728],[-125.52362088402226,57.92837803373572],[-125.52347506571304,57.92847283964086],[-125.52324112438122,57.92860658257026],[-125.52284788792994,57.928730782906285],[-125.5222284913537,57.92887547997678],[-125.52179081250489,57.929007368403234],[-125.5217004363114,57.92905863297252],[-125.52166678453183,57.92904841871717],[-125.52147525035788,57.92908361906087],[-125.52118905901852,57.92917455397778],[-125.5210500224032,57.92923349377291],[-125.52099168258788,57.929254592561584],[-125.52090335883055,57.92931034997856],[-125.52085833614181,57.92936402002726],[-125.52084060277772,57.92943012466016],[-125.52079888774719,57.9295555824773],[-125.52071885464494,57.929705575471246],[-125.52061476120792,57.929837537922545],[-125.52055263252792,57.929907968851786],[-125.52046980524726,57.9299458018196],[-125.52029175413502,57.93000011450878],[-125.52006623496422,57.93005201304029],[-125.5198375397471,57.93010389975263],[-125.51967027279538,57.93014030649297],[-125.51964490967008,57.93022432751879],[-125.51966289844023,57.930387009752764],[-125.51956830889664,57.93051900575346],[-125.51947052788636,57.9305702422232],[-125.51943750693397,57.93059255315572],[-125.5193642438773,57.930625933959895],[-125.51922700671214,57.93070730845828],[-125.51915578289305,57.93074630400885],[-125.51910605720607,57.93075397509705],[-125.51905728086798,57.93077062159198],[-125.51898612848498,57.93080400981338],[-125.51882467503066,57.93088081051672],[-125.5186894897133,57.93096667789949],[-125.5185704777691,57.931026809070616],[-125.51845054746512,57.93107684331951],[-125.51837186642142,57.931120297529475],[-125.51834302399106,57.931145987809025],[-125.51832379173509,57.931163862311635],[-125.5181994934491,57.931142104526714],[-125.51798406335153,57.931065063550435],[-125.51787793387297,57.931025427168244],[-125.51777363084186,57.93100934881763],[-125.51752583867969,57.93098490052436],[-125.51724001593585,57.93096367852254],[-125.51680521850784,57.93095088789347],[-125.51623185879728,57.93095777997839],[-125.51582080217588,57.930987689326585],[-125.5156569893745,57.9310005521285],[-125.51561384478839,57.93099030182657],[-125.51549862228514,57.931001098019806],[-125.51529196272821,57.931063150636874],[-125.51517313302874,57.9311086999544],[-125.51515401497153,57.9311176024137],[-125.5150837321539,57.931164449751975],[-125.51495586322402,57.931255947531895],[-125.51488769128628,57.93130280245759],[-125.51487907211573,57.931316229097284],[-125.51484494265523,57.9313430208912],[-125.51480114426373,57.93138211399041],[-125.51476702916037,57.931407784317685],[-125.5147256483714,57.9314244561736],[-125.51459841469782,57.9314666098998],[-125.51433564575203,57.93153967173301],[-125.51409484866306,57.93162739268153],[-125.5140005807577,57.93165172200657],[-125.51385270992624,57.93165679023226],[-125.51350514810451,57.93175533567971],[-125.51316175099551,57.93193912959381],[-125.51302832866831,57.93205191388004],[-125.51301959246335,57.932074312002435],[-125.51291182245245,57.932080647207336],[-125.512689846291,57.9321011443396],[-125.51250597742428,57.9321139299745],[-125.51242434442763,57.93213942592033],[-125.51236713457291,57.93223678732419],[-125.51210927681652,57.93233677889092],[-125.51170155087316,57.932433977995714],[-125.51141736355909,57.93252938578131],[-125.51132923422749,57.93256719379128],[-125.51126367706125,57.93257480393766],[-125.51110923454941,57.932597789088184],[-125.51090590736365,57.93264526775106],[-125.51056800079428,57.93264963487205],[-125.51022757816914,57.93260464575596],[-125.51013927213302,57.932655910375125],[-125.51014432076099,57.932754621209206],[-125.51002406682974,57.932828198407655],[-125.50978625162877,57.932929380761315],[-125.50957147127728,57.93304522701255],[-125.50948961481102,57.9330875429337],[-125.50937616128557,57.933125256487614],[-125.50913334810978,57.93320398924605],[-125.50899433627882,57.93325843091275],[-125.50896666716436,57.93327515154079],[-125.50892415896456,57.9332963035077],[-125.50887717869139,57.93333650455227],[-125.50881227141852,57.933374396510835],[-125.50870239457133,57.93346146887333],[-125.5085505280914,57.933610069080636],[-125.50844209944735,57.93374649279502],[-125.50836154739001,57.93385161713755],[-125.5082619595252,57.93395779272268],[-125.50821059328739,57.93401031393885],[-125.50814007067272,57.93399435264773],[-125.50798198438181,57.93397246059418],[-125.50776081658108,57.9339301483182],[-125.50738373408707,57.93386146491568],[-125.507004364988,57.933806230046436],[-125.50679780338574,57.933777428253144],[-125.50668809249446,57.93377029321935],[-125.50664177144698,57.93376002822953],[-125.50655000012055,57.93375295948303],[-125.50626603842176,57.93374966490773],[-125.50584755931769,57.93377839472697],[-125.50539987230455,57.933780098736],[-125.50507156640435,57.933775515553336],[-125.50495770769002,57.933843504529825],[-125.50483004132504,57.93391704964641],[-125.5044857711822,57.934002126137486],[-125.50412017911249,57.93410394501209],[-125.50389542357006,57.934173763508035],[-125.50362445002759,57.934225465432775],[-125.50320635892825,57.93430353470102],[-125.50280504195742,57.934391758795776],[-125.50244700166186,57.93448014324955],[-125.50218441077985,57.93453635959475],[-125.50209551715605,57.93455172865159],[-125.50208255072438,57.934574110340165],[-125.5020556872598,57.93460877668198],[-125.50204378501583,57.9346311623439],[-125.50199428837601,57.93462088386541],[-125.50190904570746,57.934600378238244],[-125.50187004754787,57.93459462496995],[-125.5017486705866,57.93459192829667],[-125.50147859815345,57.93457521738362],[-125.50119609462386,57.93454051530215],[-125.50096413514387,57.93451609542296],[-125.50082499533536,57.93449875182059],[-125.50067494039483,57.934508283335575],[-125.50045833289907,57.93451980828827],[-125.50033999594667,57.93452609377557],[-125.50030511888248,57.93452932754836],[-125.50027239610759,57.934528083363155],[-125.50019100500225,57.934535628735375],[-125.50001024568817,57.93447214644871],[-125.49978322670555,57.934393910739836],[-125.4995438595913,57.93445020904349],[-125.49929195680522,57.934496366275106],[-125.49889950532632,57.93447246131748],[-125.4984100124202,57.934441461019226],[-125.49794298272589,57.93438811340363],[-125.49756679795988,57.934332863605185],[-125.49729250614502,57.934316128296125],[-125.49704868858343,57.934309600974586],[-125.49690725972044,57.93430570271759],[-125.49689044235244,57.934300031708005],[-125.49673227473714,57.93420634956424],[-125.49645153568211,57.9340404278336],[-125.49630063196732,57.933955744686195],[-125.49626692260614,57.93395000976306],[-125.49620769457324,57.93395763645496],[-125.4961070577658,57.9339819291762],[-125.49599171712181,57.93400168019839],[-125.49594087494526,57.93401382450713],[-125.49594482226271,57.93411253199344],[-125.4959703747567,57.93433356540946],[-125.49597366068038,57.93448161672626],[-125.49588012048952,57.93452836626837],[-125.49570953142704,57.93457370275768],[-125.49555780879533,57.934628082490626],[-125.49545577629104,57.934678164127305],[-125.4953826495563,57.93469919593802],[-125.49524918389842,57.934731214302275],[-125.49502054648573,57.93477408708009],[-125.49478642525207,57.93483151828043],[-125.49454903883753,57.93489678724641],[-125.49436959293577,57.93497236916966],[-125.49428475882681,57.935077469054114],[-125.49421820627049,57.93523759215594],[-125.49413635083637,57.93535728288649],[-125.49408818228895,57.935405324921774],[-125.4940762146841,57.935432195694354],[-125.49406159034729,57.93549830917081],[-125.49404131804734,57.93559243892078],[-125.49401495225433,57.9356686014111],[-125.49395507197613,57.935724449517664],[-125.49386854790309,57.935799262081815],[-125.49376613245477,57.935877378771345],[-125.49363808988913,57.93597670670871],[-125.49349637291708,57.936071496540244],[-125.49328966874722,57.93620977806477],[-125.4931009811314,57.936343641771565],[-125.49299874409009,57.936408300492694],[-125.49287432570362,57.936472874754905],[-125.49271808220878,57.93654966440196],[-125.4926253380575,57.9366143589815],[-125.4925984813083,57.93664902355577],[-125.49258520577614,57.936693833413734],[-125.49257168802667,57.936756586508956],[-125.49255643990817,57.93686867946052],[-125.49253779039282,57.93699870363794],[-125.49252620250164,57.937074922219594],[-125.49248325685399,57.93712746970285],[-125.4924003854269,57.937165285510424],[-125.4922911258798,57.93720300076484],[-125.49214051259557,57.93725289500056],[-125.49200964870951,57.93732529454692],[-125.491933933346,57.93738108151784],[-125.49184392223022,57.93747830985402],[-125.49174212089294,57.937587829807896],[-125.49169818679424,57.937635887259944],[-125.49169066596468,57.93764483066995],[-125.49164202298387,57.93772875850721],[-125.49152522833442,57.93793242810426],[-125.49138149587623,57.938175247778254],[-125.49124608898425,57.938428192749335],[-125.49111856406888,57.93864415783965],[-125.49102148361031,57.93879519138054],[-125.49096425204583,57.93888805839169],[-125.49094155501284,57.9389272246618],[-125.49092858043144,57.93894960536821],[-125.49089741918158,57.93898873930995],[-125.4908747675826,57.939024541208596],[-125.49086831063384,57.93903348865012],[-125.49084678238617,57.939063687272075],[-125.49080902726905,57.93912186173279],[-125.49071480061897,57.939217951896666],[-125.4903114268916,57.93929603766662],[-125.48971396195255,57.93928029380751],[-125.48944410488593,57.93924561514995],[-125.48945423755956,57.93927705632723],[-125.4894711896919,57.93935001961361],[-125.48948126149688,57.93938594661247],[-125.48961248304926,57.939443646262156],[-125.48988534794391,57.9395680571683],[-125.49003855414482,57.939639298692384],[-125.49004899168249,57.939648310729],[-125.49000608527535,57.939697493189996],[-125.48987517742894,57.939850639702584],[-125.48973185321314,57.94006205732303],[-125.48968625423277,57.94023235294096],[-125.48970832795001,57.94031767253133],[-125.48971019334246,57.940413008403894],[-125.48964622619414,57.940536130143265],[-125.48952689384228,57.94061417928429],[-125.48944518111126,57.94064302575216],[-125.48942170644598,57.940660880085],[-125.48941313696417,57.94066981938303],[-125.48932572612232,57.94073004637489],[-125.48916637042156,57.940878597344586],[-125.48907909166257,57.9410061156148],[-125.4890561932248,57.94105986059177],[-125.48900702433895,57.94110341123622],[-125.48894809925001,57.94116486871361],[-125.48887094122176,57.94124756506177],[-125.48875465934519,57.94133459740648],[-125.488697164,57.941369143894214],[-125.48856850317705,57.94135631370152],[-125.48832582800978,57.941340802801136],[-125.48819585868748,57.941345911479324],[-125.48814228129073,57.94140290308927],[-125.4879328574867,57.94150527831504],[-125.48756464390232,57.94155769625346],[-125.48724361136125,57.94155758339595],[-125.4871199617086,57.94156383685273],[-125.4870576980648,57.94156135426863],[-125.48694895451146,57.941558692789044],[-125.4868476112651,57.941556059706116],[-125.4867885530704,57.94155022478592],[-125.48670410549704,57.941547656634896],[-125.48654390329695,57.94152460939305],[-125.4863692700697,57.94147571148717],[-125.48622949288617,57.941426947687184],[-125.48603377173667,57.94137572503998],[-125.48578941508839,57.94132880058521],[-125.48568403278578,57.94131269284341],[-125.48563758541947,57.941311392128085],[-125.48552449601794,57.94131768484551],[-125.48538943922044,57.94130931296189],[-125.48518982315349,57.941311906813226],[-125.48496081156894,57.94137831322684],[-125.48474590269291,57.941416735853984],[-125.4843991572957,57.941367170042355],[-125.48399864222579,57.94131066612136],[-125.48374210996656,57.94130406536415],[-125.4836354500131,57.941304773796446],[-125.48348331324748,57.941309792019],[-125.48324250575125,57.941312223354686],[-125.48307987088377,57.941312714357956],[-125.48291308926328,57.941307581496815],[-125.48263881482437,57.941286330084296],[-125.48238277712674,57.9412438401044],[-125.48220283288619,57.94119828065712],[-125.48212074555391,57.941177774505185],[-125.48206175049506,57.94116745166831],[-125.48199214944714,57.94116045214334],[-125.48196157980385,57.941155847291675],[-125.4819102941589,57.94112312401912],[-125.48180759802527,57.94106552754555],[-125.48175729830851,57.941037294113436],[-125.48174232929586,57.94105069411629],[-125.48169961143543,57.94108529504605],[-125.48164863134824,57.94110640564288],[-125.48151326680797,57.94112045895798],[-125.4813058025152,57.94115554044142],[-125.4811449242087,57.941181830793894],[-125.48103369865684,57.94120607122003],[-125.48086970695027,57.94122898457385],[-125.48061997171573,57.941266143419696],[-125.4804274133688,57.94129230948624],[-125.48035443450028,57.94129987565718],[-125.48023118911028,57.94127808638272],[-125.47999466753843,57.941276042495176],[-125.4797446051829,57.94133675028411],[-125.47951566146833,57.941397540064074],[-125.47940146113288,57.941408309323236],[-125.47926609466542,57.94142236036108],[-125.47891251354035,57.9414849052498],[-125.47850802655157,57.94156295132945],[-125.47823795010929,57.941619091966956],[-125.47808446797599,57.94164540760191],[-125.47794163755712,57.9416639141523],[-125.47779142358372,57.94168239162864],[-125.47766237582788,57.9416975873167],[-125.4775978136027,57.94170854951631],[-125.47756608741518,57.941711789744204],[-125.47754670567193,57.94173863020988],[-125.47751166722186,57.94182821429843],[-125.47748919132614,57.941925698248774],[-125.47747271950666,57.9419704944002],[-125.47745881303163,57.94198389810733],[-125.47743210864954,57.94200510227389],[-125.4774034182922,57.94201844802559],[-125.47732821627113,57.94203385446418],[-125.47709355247393,57.94204975701651],[-125.47681275266508,57.942041926230424],[-125.4765508827096,57.9420397767697],[-125.47629114038864,57.94203651363445],[-125.47614857455595,57.94203707503128],[-125.47609361618372,57.94204022362101],[-125.47603554391208,57.94203887387754],[-125.47601339220134,57.942037665296006],[-125.47600145520137,57.942060048739606],[-125.47595873090971,57.942094647866554],[-125.47595395970437,57.942058740532225],[-125.47595420985644,57.942040797226255],[-125.47587497087702,57.94204272876219],[-125.47570271215419,57.942052145087864],[-125.47548046906685,57.942086037941756],[-125.47514159666845,57.94215311686487],[-125.47475614958755,57.94222786207708],[-125.47450197387644,57.94227957179732],[-125.47434487087766,57.94233727141432],[-125.47418775170921,57.942396092306446],[-125.47406882070452,57.942442726968615],[-125.47399572847127,57.942458139866055],[-125.4739374214079,57.94247473258483],[-125.47377360704246,57.94248305823376],[-125.47336772509387,57.94250837198684],[-125.47294707427227,57.94253250460215],[-125.4727238412283,57.94256190290904],[-125.47252487176965,57.94259251836505],[-125.47231005344783,57.942623070795534],[-125.47220338953768,57.94262377008256],[-125.47208975038389,57.94259416064567],[-125.47186571095934,57.94252934671711],[-125.47168993427462,57.94248827557837],[-125.47161347648307,57.94251825358643],[-125.47154415799947,57.942641345948864],[-125.4714656813904,57.94281487036308],[-125.47143083245231,57.94288987401263],[-125.47132245661271,57.94293654811635],[-125.47107378689765,57.94304659224044],[-125.47087790098503,57.9431579669389],[-125.47080944728077,57.943219378842905],[-125.4707944103408,57.94323726347688],[-125.47072995289906,57.943239250641795],[-125.47053869477914,57.943247463386435],[-125.47031567575793,57.94326003575471],[-125.47013161145654,57.94328173473988],[-125.46999399622636,57.94330473965581],[-125.46994530837843,57.94331239673361],[-125.46991786753925,57.94331116611126],[-125.46994176920539,57.943339299149656],[-125.4699251770675,57.943391944637675],[-125.46984820987866,57.94345780830373],[-125.46968561741842,57.94353006048811],[-125.46951936890733,57.94356080167096],[-125.46932237695329,57.9436003924451],[-125.46909327587977,57.943670136133214],[-125.46894367038291,57.943720008735916],[-125.46876983056755,57.94376529852994],[-125.46840477722117,57.9438894538104],[-125.46792698699046,57.94406923431625],[-125.46734695309524,57.9443091668921],[-125.4667603208802,57.94456701499891],[-125.46630483996228,57.944810805890924],[-125.46584455509546,57.94509495088981],[-125.46552714979757,57.945283216259405],[-125.46538362521855,57.94542395275836],[-125.46522964492395,57.94563081708066],[-125.46498068914185,57.94590683467757],[-125.46464973118901,57.94623074821926],[-125.46448366140893,57.946396066933],[-125.46442208122578,57.94649339222955],[-125.46423900897896,57.946740513718225],[-125.46402701843712,57.94694153624882],[-125.46385825401502,57.94699917705744],[-125.46373060657514,57.94706259066535],[-125.46369514617416,57.9471790866938],[-125.46373940026699,57.947261136061435],[-125.46370882034657,57.947331669189104],[-125.46349554379194,57.94747436649981],[-125.4631417738177,57.9476176194166],[-125.46279717253613,57.9477115612074],[-125.4625952857313,57.947795983668],[-125.46247642465478,57.94790877873087],[-125.46239258489945,57.94801049964592],[-125.462365713116,57.948116936344384],[-125.46239031283024,57.94824376807733],[-125.46242274657126,57.948339228646695],[-125.46244316411077,57.94838865815766],[-125.46244718025638,57.94840325420249],[-125.46213206169736,57.94850179935442],[-125.46166055642215,57.94875336176002],[-125.46169878784269,57.949033898078994],[-125.46193581998116,57.94922439303626],[-125.4619824418977,57.949288508271714],[-125.46186353817096,57.94933064653012],[-125.46160015629846,57.94943052087602],[-125.4614310394876,57.94951170950256],[-125.4613660572833,57.949550700525805],[-125.46124347660974,57.94962759078828],[-125.46104707695564,57.949770352807676],[-125.46079045002409,57.949988013491954],[-125.46054506062063,57.95023263591772],[-125.46041820482485,57.950386893750796],[-125.46038014969322,57.95046188225429],[-125.46034586920776,57.95056941040012],[-125.4602968988596,57.95074304937706],[-125.46023928487132,57.9509301117477],[-125.46021680705269,57.951024229324226],[-125.46014449938056,57.951057582523525],[-125.45991570650492,57.951101517283945],[-125.45966686825483,57.951143127370365],[-125.45950507721818,57.95122882955764],[-125.45938843833771,57.95133378064851],[-125.45926844409924,57.95145105488875],[-125.45912175987041,57.95158728681659],[-125.45903612932071,57.95166544666159],[-125.4590081661257,57.951700100695575],[-125.45893606503328,57.95179289528688],[-125.45880471389398,57.951965078157684],[-125.45866178108413,57.95220787044442],[-125.45852729667276,57.952450696952866],[-125.45838236079182,57.95268563021681],[-125.45822495775795,57.952905932809344],[-125.45810293339483,57.9531633896454],[-125.45806513704815,57.953440254837396],[-125.45810088057138,57.95367143606165],[-125.4581939115778,57.95381312735818],[-125.45839917012285,57.95401135116109],[-125.45869761188203,57.95426715121134],[-125.45893801690063,57.95444532928789],[-125.45901855527428,57.95450061123105],[-125.45900997540465,57.95450954870457],[-125.45899944348473,57.95458128421426],[-125.4589816523764,57.95471579624392],[-125.45886924091621,57.954892542727016],[-125.45857845600408,57.95513137109931],[-125.45822251246204,57.95534638196788],[-125.45793459667395,57.95545960868301],[-125.45761650545309,57.95554018752476],[-125.45692071885858,57.95580428162974],[-125.45582686414802,57.95627311139785],[-125.45460345281721,57.956639342825376],[-125.45354560343965,57.956734829464125],[-125.45287053934351,57.956734304820046],[-125.4525367004783,57.95673405637703],[-125.45246331014962,57.95676740124165],[-125.4526043013796,57.95695191231406],[-125.45291431351852,57.95735581679407],[-125.45323995816382,57.95777436479984],[-125.45336849186468,57.957944244143825],[-125.45338097330074,57.95795775377544],[-125.45339859795602,57.95798025680252],[-125.45341365356022,57.95803527395103],[-125.4534274896168,57.95824618014907],[-125.4534819852056,57.95856716395885],[-125.45366485949533,57.95885054140553],[-125.45397400251342,57.95909742482047],[-125.45425476356341,57.959335219106705],[-125.45437869042011,57.95953199586079],[-125.45438723581124,57.95967110196318],[-125.45435524387852,57.95983695925486],[-125.4543011608055,57.96006889716636],[-125.45417795617054,57.96033083391188],[-125.45399781301852,57.96058580829527],[-125.45390843540702,57.960700961295096],[-125.45389004303091,57.96073116764817],[-125.45386488709786,57.96078938487967],[-125.45385571769746,57.960838695226265],[-125.45384667869075,57.96087903376429],[-125.45384641785516,57.96089697738562],[-125.45389909702901,57.96090728696925],[-125.45417489459248,57.96097795156034],[-125.45458126234384,57.961079431238865],[-125.45478128560715,57.96112959692349],[-125.4549101564135,57.96120526704448],[-125.4551130406725,57.961349653573556],[-125.45523324860369,57.9614387465275],[-125.4553586832053,57.96153234689607],[-125.45566019506632,57.961652461354625],[-125.45598510570234,57.961688554787834],[-125.45630975729767,57.961742591073204],[-125.45672616938033,57.96188111613264],[-125.45699433199282,57.96196856697848],[-125.45707322501187,57.961993562096644],[-125.4571488752184,57.96202303014685],[-125.4572141058588,57.96204236185768],[-125.45723825224738,57.96205255401201],[-125.45724955873197,57.96207503090091],[-125.45728153774431,57.96220189551206],[-125.45733136870561,57.962409583961154],[-125.4573689749606,57.96258581945263],[-125.45741899662337,57.96285295060828],[-125.45749843752755,57.96320543891927],[-125.45759976087864,57.96343352471441],[-125.45765794231978,57.96350217557304],[-125.4576882113289,57.96367389515238],[-125.45771840916403,57.96399814475328],[-125.45771205801158,57.96421794203838],[-125.45766621981146,57.964392716964866],[-125.45761524727142,57.96462915612107],[-125.45760511035624,57.96474575580773],[-125.45775815156071,57.96475871502536],[-125.45798565480501,57.96481010925392],[-125.45804811413903,57.96487541277153],[-125.45789887512602,57.964965651699266],[-125.45766560231812,57.965093681465056],[-125.45729675473326,57.96524471184866],[-125.45675519238246,57.96542756288602],[-125.45636017283535,57.9655605394022],[-125.45624021112815,57.9655981831037],[-125.45624183118638,57.965705858361055],[-125.45624976419536,57.96610628361118],[-125.45604672474485,57.966773899302126],[-125.45557860755943,57.96735519580844],[-125.45523556104699,57.96761960291259],[-125.45497487708485,57.9678148095707],[-125.45459367238769,57.96815868945234],[-125.45423344869627,57.96851274820361],[-125.4539804899557,57.968757333061546],[-125.4537613274699,57.969003177452976],[-125.4535502898412,57.96927148590293],[-125.45334062392594,57.96951736865967],[-125.45304884149587,57.969814506004404],[-125.45274873094854,57.970102636228674],[-125.4525805210065,57.97026008528949],[-125.45221093112951,57.97045596187462],[-125.45158846247581,57.97074500886968],[-125.45125741534746,57.9709062731665],[-125.45108985111334,57.97101886095729],[-125.4507302236806,57.97125515065922],[-125.45039824992494,57.97148033782921],[-125.45018709631952,57.971609568350146],[-125.45001113636486,57.97171651251533],[-125.44990761481692,57.97178562223033],[-125.44984779207914,57.971829116269554],[-125.44972393530985,57.97191496534957],[-125.44944621782007,57.97211457831173],[-125.44912553302918,57.97236111875746],[-125.44891906571401,57.97260252254155],[-125.44874315372951,57.97284966011877],[-125.44845983537891,57.973070557743036],[-125.44803353172958,57.97331105143498],[-125.44764995933106,57.973520317105624],[-125.44738753563648,57.97375587942702],[-125.44714679226968,57.974099200864465],[-125.4469045578959,57.97439877498692],[-125.44661156427273,57.97462860152071],[-125.44631950016422,57.974867403825094],[-125.44613901203459,57.97506517100772],[-125.44608287808798,57.975144568816624],[-125.44604920560008,57.975134334974435],[-125.44587223919147,57.97509322395346],[-125.44551830753647,57.97501100121322],[-125.44509919689106,57.97490495370443],[-125.44478131963632,57.97481502802421],[-125.44467196499592,57.974776439864556],[-125.44458050318487,57.97474241234284],[-125.44428579745447,57.974658189745064],[-125.44386682707515,57.97454316647362],[-125.44353094717852,57.974456527468064],[-125.44330525311506,57.97442306073824],[-125.44295025222284,57.974413728169125],[-125.44249092662164,57.97438264913213],[-125.44217973385709,57.97434209385513],[-125.44209123792952,57.97432265731612],[-125.44205545347894,57.974312413636426],[-125.44197318240577,57.974300853973425],[-125.44180855707401,57.97428334194999],[-125.44165233701715,57.97426922957861],[-125.44151775303963,57.97429221908824],[-125.441282605631,57.97432600300092],[-125.44098392726683,57.97436737126625],[-125.4407891914226,57.97438450021006],[-125.44068644720436,57.97439977140385],[-125.44062721092688,57.97440288775843],[-125.44037352248203,57.974404067080435],[-125.43990395965811,57.97442228487219],[-125.43962470475236,57.97443681417794],[-125.43952743677652,57.97443864874968],[-125.43940460239412,57.97445383456743],[-125.4393198162285,57.97446918016338],[-125.43926447244863,57.97449474349374],[-125.43919203400493,57.97453257212531],[-125.43910048746406,57.974575928200565],[-125.43895810890628,57.974625799851616],[-125.43875502553183,57.97470569818016],[-125.43856746805632,57.974808092772214],[-125.43846405107253,57.97486822190599],[-125.43833535977228,57.974850856815415],[-125.4381435811584,57.97488145311181],[-125.43803908935294,57.97501335735871],[-125.43797837505666,57.97511516377449],[-125.43779524254604,57.975204117235705],[-125.43750233087455,57.97535317207329],[-125.43726696151818,57.97547218680579],[-125.437195550843,57.97551114030665],[-125.43717747389961,57.97551891499546],[-125.43713064976703,57.97554002716804],[-125.43708387600918,57.97555777484919],[-125.43703255509033,57.97559681302109],[-125.43695548104046,57.97566153845042],[-125.43688275216245,57.97571843123834],[-125.43676314794885,57.97579980051543],[-125.4365659240866,57.97591112416113],[-125.4363582812039,57.97601343101506],[-125.43617493843804,57.976115840245896],[-125.43604347763853,57.97621173914985],[-125.43595293824353,57.976258462123724],[-125.43587546939243,57.97627832277024],[-125.43579686772676,57.97630378640129],[-125.43563837964392,57.97637040998769],[-125.43535431062463,57.97649258023331],[-125.43503060091454,57.976650472117264],[-125.43478253205299,57.976769428928556],[-125.43460804222526,57.976844956073485],[-125.43445501189385,57.97689926422614],[-125.4343403528736,57.97693242514912],[-125.43423969608541,57.97694770031007],[-125.43404467337866,57.9769827633473],[-125.43394616408663,57.97699692583233],[-125.43390804561423,57.97700125038093],[-125.43374527250096,57.97700055972312],[-125.43354542938899,57.977004197762554],[-125.43337024338085,57.97698550891379],[-125.43317418902656,57.976948786150324],[-125.43302237523474,57.97692234517255],[-125.4328865600709,57.97688699950029],[-125.4327023958996,57.97683238154116],[-125.43259276176143,57.97674331177113],[-125.43245847069088,57.97667656833671],[-125.43225644744504,57.976684681423436],[-125.4321544028326,57.97672238039684],[-125.43202432037829,57.976727434573796],[-125.43175586942472,57.97672517004852],[-125.4315909836272,57.97672446776057],[-125.4315697765256,57.9767288636788],[-125.43146074835798,57.97673849325609],[-125.43123944443359,57.97676446769064],[-125.43112091187952,57.97677405647871],[-125.43099481915306,57.97679370700743],[-125.43066632785046,57.97684726249798],[-125.43033051335706,57.97689629966165],[-125.4300565808037,57.97690634553643],[-125.42972417316261,57.97687015677583],[-125.42955055849949,57.97688735970678],[-125.42963344650936,57.97699762743707],[-125.4296236281644,57.977087310701414],[-125.42945269785207,57.977135928822804],[-125.42922450293838,57.97719776057788],[-125.428982643402,57.977253925646316],[-125.42883938049881,57.97729032416883],[-125.42875776299813,57.9773056767087],[-125.42863893804683,57.977334328675724],[-125.42851603859503,57.97735286899481],[-125.4283216913053,57.97734306396876],[-125.42807148667437,57.977321803597455],[-125.4279627973637,57.97731012203302],[-125.42798428506235,57.97735619835365],[-125.42799646274722,57.97745943463432],[-125.42790232091238,57.97753305440967],[-125.42771349443237,57.97757710734999],[-125.42756283862896,57.97761347281807],[-125.4275055050114,57.977630050343244],[-125.42748111750839,57.977634431975],[-125.42742070681437,57.977645388429906],[-125.42734011939127,57.97766186610076],[-125.42724040351558,57.97768499101765],[-125.42714692680035,57.977714872045475],[-125.42699233283626,57.97773215334078],[-125.42674394931993,57.97772996493184],[-125.42655833043312,57.97770224977166],[-125.4264561879422,57.97767713631348],[-125.426384621199,57.977656640485165],[-125.42635614264752,57.97765203179306],[-125.42623690019518,57.97763918188564],[-125.42599824435383,57.97762357511442],[-125.42582383340103,57.97762282474157],[-125.42568269691272,57.97765922905851],[-125.42551696651014,57.97771347241525],[-125.42542469130952,57.97773326331555],[-125.42537046734662,57.97775433958753],[-125.42520380794669,57.97779960602889],[-125.4249692772289,57.97786028173902],[-125.42483016738845,57.9779011801726],[-125.42469676299159,57.9779151854522],[-125.42447962387092,57.97794453141572],[-125.42426217521647,57.977992942335774],[-125.42397388129753,57.97804329023515],[-125.42363811621975,57.978087824646416],[-125.42338454011188,57.97807999972682],[-125.42307036224328,57.978094343673185],[-125.42271123515843,57.978213919785574],[-125.42243767985575,57.97833723006626],[-125.42212756770641,57.97843122073297],[-125.42183448702123,57.97851743351247],[-125.4216815004873,57.978567241138435],[-125.42154865742233,57.97861264964172],[-125.42135849302281,57.97867463299072],[-125.42114400818097,57.97873651057749],[-125.42092565771836,57.978774818110516],[-125.42076878681459,57.97880217648342],[-125.42061607454536,57.978834039005015],[-125.42040425548892,57.97886003679537],[-125.42022363530535,57.978850279606135],[-125.4200741711671,57.97887766934922],[-125.41991704853179,57.97898914330565],[-125.41978732058003,57.979107465625866],[-125.41965505352319,57.97918427873202],[-125.41944648904266,57.9792730970619],[-125.41926215750519,57.97936650681969],[-125.41919171686125,57.97940994145937],[-125.41916517803836,57.97941767693413],[-125.41912672581242,57.97944330565979],[-125.41906585913537,57.979482295633744],[-125.41898986369587,57.97954365110821],[-125.41895782286271,57.979564821425335],[-125.41894379526192,57.97958270546255],[-125.41889258882098,57.97961276486956],[-125.41882744094997,57.97965622238051],[-125.41877532503686,57.97967618365509],[-125.41874447097896,57.979689508104144],[-125.4187242572077,57.97969727104525],[-125.41868685253354,57.97972402578743],[-125.41862692890997,57.97977087067594],[-125.41859698440524,57.979793171616386],[-125.41855091525665,57.979832225845506],[-125.41843435098627,57.97991920037597],[-125.41827721912573,57.98003067252583],[-125.41807071405034,57.98019127831888],[-125.41780247549663,57.980310116388964],[-125.41756064841302,57.980361774960656],[-125.41745476835035,57.98037252850399],[-125.41742885953605,57.980407184100336],[-125.41740172856237,57.980451928497146],[-125.41738448495505,57.98047316306507],[-125.41730002424836,57.98046606486368],[-125.41711537729027,57.980443948615424],[-125.41695948914081,57.98040737734024],[-125.41683767107159,57.98035525277963],[-125.41669065812407,57.98029180227172],[-125.41651860738725,57.98020693228293],[-125.41637313218868,57.980112084170976],[-125.41628627680048,57.98005562573875],[-125.41625477443515,57.980042029088764],[-125.41620026105021,57.980012629773924],[-125.41612486830473,57.97996631552315],[-125.41603708763938,57.979900880321196],[-125.41594633699339,57.979821973219416],[-125.41587639562017,57.97976558855987],[-125.41579855819867,57.979740573270185],[-125.41567618549475,57.97972433549498],[-125.41551593392677,57.97969671599926],[-125.41532467073027,57.97969139184741],[-125.41515638249665,57.97970523481357],[-125.41506748614906,57.97971157460128],[-125.41491750866705,57.97977036035113],[-125.41469296012978,57.97986695228299],[-125.41456628895305,57.9799224751634],[-125.41450545116284,57.97996034165727],[-125.41440316997173,57.980011485116975],[-125.41430447099593,57.98003572652074],[-125.4141998663627,57.98003302422366],[-125.41405734848011,57.98002006123768],[-125.4138665208639,57.979987819209015],[-125.41367244393109,57.97996004891425],[-125.4135955160664,57.979944008893725],[-125.41353691396198,57.979974033778696],[-125.41341773611794,57.98002398066028],[-125.41335806823848,57.98005400078574],[-125.41334101524963,57.98006289838652],[-125.41324774935657,57.9800781903293],[-125.41307432265751,57.98008191395176],[-125.4129009485241,57.98008227286672],[-125.41276555812577,57.98008728499689],[-125.41266362502859,57.980115997247566],[-125.41254105542227,57.98017938728926],[-125.41233141998964,57.98026818997668],[-125.41209318181409,57.98036023105412],[-125.41193355148678,57.98042794357049],[-125.41184613466848,57.980474664332405],[-125.4117861134799,57.98052711365878],[-125.41170038871334,57.980600759518204],[-125.41158457363768,57.980705676674],[-125.41149060240255,57.98076582718756],[-125.41142389297438,57.980772262412664],[-125.41135625796664,57.98077084251601],[-125.41117268962226,57.98081489555233],[-125.41081108535369,57.98095349606914],[-125.41047921752106,57.98108325442319],[-125.41030112684582,57.98118116598178],[-125.41011549406129,57.9813564325213],[-125.40993057334822,57.98155301188575],[-125.4098195338854,57.981689352826656],[-125.40965679227332,57.98181985712679],[-125.40942755894024,57.98187604314128],[-125.40927426989323,57.98187648626465],[-125.40922143241242,57.98187513079361],[-125.40917261159872,57.98188725197119],[-125.40908758452606,57.98191603642622],[-125.40896866657602,57.98201532990022],[-125.40876196951294,57.98218489359696],[-125.40846332838044,57.982351806348184],[-125.40812248816144,57.98251292344888],[-125.40785617430886,57.98264072316955],[-125.4077989532654,57.98271561478962],[-125.40786441113266,57.982788807623656],[-125.40788122435762,57.98286178460965],[-125.40780360246153,57.98289060114646],[-125.40761374353085,57.982862840717765],[-125.40738964966246,57.98286072423267],[-125.40718871050903,57.98293161262579],[-125.40704711097766,57.9829949133613],[-125.40688188278435,57.98308054045371],[-125.40665278168646,57.98319504435747],[-125.4065034172958,57.98328074153739],[-125.40636700390274,57.98334967252922],[-125.40609005345443,57.983480786308256],[-125.4057119887894,57.98365406921835],[-125.40543593959967,57.98379527990619],[-125.40531856898284,57.98386317314015],[-125.40525663210312,57.98390215232641],[-125.4050632877142,57.98402690718093],[-125.40484437366072,57.98416500667932],[-125.40476418881235,57.98422072793562],[-125.40472707193626,57.984228413428035],[-125.40453507578349,57.98426793370639],[-125.40425390237623,57.98433173036995],[-125.4041094686007,57.984372583926266],[-125.40403061485414,57.984411487040276],[-125.40381164411964,57.984485654743295],[-125.40356962838842,57.984546260177275],[-125.4033481709734,57.98457667448645],[-125.40311230399816,57.98458347084954],[-125.4028294440623,57.98455304446135],[-125.40242909111444,57.98446489097277],[-125.40205832300279,57.98437799041389],[-125.40186986680962,57.984327796513156],[-125.40176553700269,57.98430714049347],[-125.40160753343085,57.984270541656954],[-125.40142035854235,57.98420689393449],[-125.40131418417207,57.98416828404605],[-125.40114047569907,57.984122641584335],[-125.40080775389293,57.98403702984948],[-125.40048771952172,57.983951474280516],[-125.40004807589361,57.98400669907576],[-125.40000024328477,57.98402330770421],[-125.39948010807485,57.98421948755819],[-125.39916986085268,57.984381841597134],[-125.3990795148837,57.98447789056508],[-125.399010222244,57.98457964218386],[-125.39894701452383,57.984630950147704],[-125.39879772734305,57.98464485825556],[-125.39856269227357,57.98466510927529],[-125.39841022481708,57.98467900261966],[-125.39824486816038,57.98463900189869],[-125.39799135516817,57.984559348098024],[-125.39786512343444,57.98451952338542],[-125.39786039116272,57.98455090623475],[-125.39778017713975,57.98460774481534],[-125.39758381599184,57.98465620808508],[-125.3973952061164,57.98468227449303],[-125.39729973589134,57.984702031808446],[-125.39719680282711,57.98472512008599],[-125.39699055699761,57.98479596942847],[-125.39673519337765,57.984896879087465],[-125.39651394682707,57.984979997280526],[-125.396398180909,57.985013121140646],[-125.39634089436046,57.98502519941386],[-125.39628360777512,57.98503727766273],[-125.39615121612104,57.9850512592541],[-125.39586114902711,57.985074621277754],[-125.39556799066888,57.98509348235518],[-125.39539228020604,57.985106145424886],[-125.39517422774895,57.98512198112351],[-125.3947972889348,57.98515616292477],[-125.39435198352373,57.98523377505242],[-125.39400612414852,57.98537240260929],[-125.39383562997003,57.98552079853362],[-125.3937776356472,57.98557661413979],[-125.39378695832465,57.98565404553456],[-125.39375959202114,57.98584234676905],[-125.39361213614752,57.986004306112925],[-125.3934683707904,57.98606758296487],[-125.39327768736023,57.986156442757434],[-125.39277698470673,57.98638969775465],[-125.39208286054958,57.9866837571079],[-125.3915658091284,57.986881042660755],[-125.39131304031558,57.986950549823426],[-125.39124300770403,57.986965932572325],[-125.39123214432833,57.98698382834191],[-125.39120606127364,57.9870274510865],[-125.39110018514629,57.987100992556044],[-125.39084323175294,57.987233288398784],[-125.39056287260212,57.987373327983555],[-125.39040084061762,57.98745446359251],[-125.39028615630508,57.98755039589719],[-125.3901603171649,57.98768104623368],[-125.39006829017691,57.987814094158885],[-125.39003724732294,57.98790255740405],[-125.39002580005246,57.98795634110842],[-125.39000286005883,57.98800109962056],[-125.38997925385132,57.98802230182544],[-125.3899535148473,57.98804461586245],[-125.38984930057875,57.98808115176959],[-125.38964452574811,57.988125078870134],[-125.38949619710291,57.988143467424344],[-125.38946456999551,57.988137714837606],[-125.38941656461756,57.98816329167421],[-125.38929385520302,57.988232268487934],[-125.38916769134539,57.98831805315139],[-125.38907366514893,57.988378188367314],[-125.3889969019803,57.98841709244383],[-125.38895302264366,57.98851446942216],[-125.38885799982756,57.98870021743039],[-125.38867740853644,57.988817156845094],[-125.38854810800804,57.988835631522775],[-125.38836326156198,57.9888886206908],[-125.38802322635263,57.988991369501434],[-125.38781898123533,57.98906670069594],[-125.3877996571979,57.98908455743202],[-125.38777218561528,57.98908330984233],[-125.38769602324152,57.98908520364863],[-125.38762512062303,57.98908824312836],[-125.38759976364902,57.98908700520484],[-125.38756480793872,57.98909133116147],[-125.38745573260576,57.98910092490843],[-125.38731495503202,57.98911037304939],[-125.38719635400012,57.989121044444985],[-125.38705443728482,57.98913497342441],[-125.3869210521541,57.98914445509867],[-125.38682048988866,57.98915072267337],[-125.38672205911575,57.98915699996603],[-125.38665637797864,57.98916454926608],[-125.38658225669859,57.989170938159916],[-125.38646418675833,57.989149085363046],[-125.38624860426675,57.98907631275813],[-125.3858950034874,57.989038795610554],[-125.38563281115228,57.98903646745024],[-125.38551838401486,57.989050521324074],[-125.38539503939788,57.98909257368249],[-125.3852547225535,57.989137912520135],[-125.38500462934404,57.98917152960103],[-125.38468846837807,57.98917119408781],[-125.38450287831016,57.98907612518819],[-125.38432709067433,57.988963155879226],[-125.38411483982195,57.9890104048628],[-125.38402405779993,57.989129995636404],[-125.38402028862265,57.989165868994405],[-125.38390411395257,57.9891574817051],[-125.38359240179209,57.989144826682896],[-125.38328824830685,57.9891221115816],[-125.3831192272158,57.98911235783948],[-125.38289522647739,57.98910234970401],[-125.38251068192285,57.98908150429988],[-125.38218085909185,57.98907661329499],[-125.38198631557006,57.9890757126677],[-125.38177719144103,57.989061285189536],[-125.38152888345891,57.9890500405854],[-125.38128370053984,57.98904217476369],[-125.38110401488895,57.9890379769627],[-125.38101108338259,57.989030816509405],[-125.38097734222764,57.989025052099805],[-125.38093588237662,57.98897438843191],[-125.38083016488682,57.98884491565788],[-125.38062879236324,57.98874528179472],[-125.38031710323999,57.988731497629296],[-125.38006282449291,57.98869779084827],[-125.37993432351529,57.988604102311555],[-125.37993903731623,57.98870282377629],[-125.379904314902,57.98875649859885],[-125.37975267864346,57.98884664252138],[-125.379547464913,57.98904308795397],[-125.3794267300816,57.98918272499612],[-125.37926814327969,57.98924591802407],[-125.37889968126062,57.989275608410225],[-125.37848100629621,57.98927253795914],[-125.37825264660478,57.98927035284114],[-125.37820092298836,57.98926450396165],[-125.37815118231255,57.989267636995976],[-125.37793534310978,57.989275603948855],[-125.37760831079471,57.989293146395916],[-125.3773679571272,57.989313335579496],[-125.37726731840733,57.98932408195944],[-125.37713370686158,57.98934701185972],[-125.37682828981468,57.98940054406071],[-125.37652919714266,57.98945522669889],[-125.37639369359371,57.98946468797895],[-125.3763115399846,57.98944523714338],[-125.37602173842858,57.98938668173053],[-125.37554982139176,57.98934185444643],[-125.3752782733667,57.98939329838282],[-125.37520885116297,57.98949840267591],[-125.37503182506853,57.98958842252443],[-125.37476996695031,57.98962981653083],[-125.37456870318623,57.989651305384136],[-125.37438873504841,57.98966392104634],[-125.3742414417144,57.98968229759426],[-125.37416828960309,57.98969429209655],[-125.37411643516438,57.98969629213421],[-125.37406231471883,57.98970837581814],[-125.37393094540002,57.9897234619356],[-125.37372644411255,57.9897482991047],[-125.37355484022018,57.98976656083304],[-125.37338544439329,57.98977922476642],[-125.37313125680944,57.989803827765705],[-125.37279577599438,57.98982131878585],[-125.37249948229994,57.989834506841284],[-125.37229202221225,57.989846990439695],[-125.37203760835034,57.98988504936226],[-125.3717182758368,57.989947477198555],[-125.37152078734819,57.98999589737999],[-125.3714443969893,57.990011239919696],[-125.37141729365015,57.99011429846239],[-125.37123197990357,57.990256989046365],[-125.37081284353675,57.99028081055586],[-125.37054368495332,57.99025150181047],[-125.3704927260999,57.99026359897273],[-125.37047567712341,57.99027136969103],[-125.3704574852346,57.99028474296317],[-125.37045272932647,57.99031612503247],[-125.37038915318954,57.9903864852948],[-125.37015837888093,57.99052783842529],[-125.36993078332837,57.99066920619119],[-125.36982350517037,57.9907606701332],[-125.36975569770325,57.99083101015986],[-125.3696888051584,57.990910327199984],[-125.36962103291754,57.99097954574807],[-125.36958552915074,57.99101526896203],[-125.3695597194752,57.99104094364122],[-125.36947652217971,57.991147101758294],[-125.36936178587212,57.991304704004364],[-125.36930523921038,57.99139752886826],[-125.36926861047208,57.99143773306513],[-125.36921689585317,57.99149468982932],[-125.36915636405533,57.99157291513691],[-125.36908999010583,57.991683638955024],[-125.36905170878434,57.99175972621552],[-125.36902876031151,57.99180335980161],[-125.36898490062858,57.99189624455657],[-125.3688828297202,57.992055028001644],[-125.36876309252621,57.992195782390354],[-125.36871145153265,57.99224825299429],[-125.36869634632912,57.99226612702761],[-125.36865120038084,57.992309655594454],[-125.36860687691353,57.99236664714335],[-125.36857245558605,57.99240125367978],[-125.36854112051653,57.99244148276907],[-125.36851832195352,57.99247614427576],[-125.36848380611377,57.99251635830823],[-125.36836264933108,57.9926156067868],[-125.36817742683611,57.99275044291074],[-125.36805211437974,57.9928451850994],[-125.36798037229707,57.99289756030389],[-125.36787746373498,57.99298007089886],[-125.36772782890162,57.99313750684677],[-125.36760784029475,57.99329171832867],[-125.36755581829522,57.99336661862484],[-125.36753318633848,57.99339230804646],[-125.36745993999234,57.99347159412782],[-125.36735226979872,57.993585486441596],[-125.36730379613033,57.99370078086119],[-125.36729426861646,57.993826354222314],[-125.36729216111323,57.99388915349907],[-125.36721183383676,57.993886529561266],[-125.36703334574196,57.99387222422918],[-125.36691548044902,57.993838017482496],[-125.36687064344453,57.99380079223183],[-125.36679945686078,57.993757834013714],[-125.3666698194981,57.99373142236924],[-125.36651148876109,57.99371384718773],[-125.36630159868604,57.993681446348006],[-125.36602753830019,57.99362855174571],[-125.36579139445807,57.99358480947665],[-125.36562679600202,57.99356271709027],[-125.36550546789526,57.993545316551746],[-125.36537348777318,57.9935334732319],[-125.36515317922307,57.993490926707445],[-125.3649085589115,57.99344826415583],[-125.36474527417147,57.99341159621035],[-125.36456920785199,57.99337935359896],[-125.3643499669966,57.993336810829696],[-125.3640663275815,57.99328835295707],[-125.36376990695194,57.99324431993955],[-125.36364111123648,57.99323136848673],[-125.3635304332411,57.99321065213834],[-125.3632391572008,57.99317561521917],[-125.36298760669114,57.99316768549095],[-125.36289760380477,57.99317398552855],[-125.36281287738561,57.99318143228583],[-125.36268484345602,57.993186429046645],[-125.36251973437228,57.99319461341877],[-125.36232387551033,57.99320713707527],[-125.36220639653007,57.993213305392494],[-125.3621866211006,57.99319414380939],[-125.36213536884598,57.99316137269134],[-125.3620122147229,57.99312713633744],[-125.36171356639039,57.993090939254145],[-125.36127543794771,57.993047344618574],[-125.36103785348546,57.99302714050307],[-125.36083930859756,57.993011609271676],[-125.36040940792245,57.99304431957432],[-125.35991923973471,57.993138427206745],[-125.35944599350577,57.99316980497878],[-125.35899286926755,57.99313846841869],[-125.35873518616064,57.99311816368565],[-125.3586518337166,57.99310654730111],[-125.35856200046993,57.99310387247789],[-125.3584139436173,57.993104282550746],[-125.35818956135638,57.99311554145549],[-125.35792907347852,57.99313559907959],[-125.35777345265399,57.99314494481665],[-125.35763907369902,57.993149906214],[-125.35741573988727,57.99316116886618],[-125.35720682338483,57.993196054058004],[-125.35701964274556,57.993257961897505],[-125.35683781697661,57.99331540890228],[-125.35670878244788,57.993378718053286],[-125.35661046190648,57.99343881033835],[-125.3565334240734,57.9934911539818],[-125.35645557007862,57.99352891291265],[-125.35632024730822,57.99358882660841],[-125.35615844149983,57.9936508556355],[-125.35603912469581,57.99370187349253],[-125.35589437151971,57.993756133303634],[-125.35568988203669,57.9938403877351],[-125.35554179303347,57.99390360384241],[-125.35545669764633,57.99393235449041],[-125.35528969996776,57.993927061681326],[-125.35495695243208,57.99396695328047],[-125.35467597711747,57.994071025316394],[-125.35458170773111,57.994141230125976],[-125.35448165260705,57.99417888060682],[-125.35419056299644,57.994255984436215],[-125.353824131712,57.994348425323004],[-125.35360447869108,57.99439110417547],[-125.35355245977276,57.99440318984476],[-125.35349029724878,57.99445111746296],[-125.35332745909591,57.994572582790354],[-125.35300689583521,57.99470225637993],[-125.35262872223913,57.99486193299242],[-125.35248493757736,57.995042934434224],[-125.3524824957051,57.995123677619205],[-125.35244299333976,57.99514479636444],[-125.35241385037283,57.99517942452524],[-125.35236338622742,57.99522292202889],[-125.3522982116788,57.99526186175289],[-125.35227145679079,57.99527967750611],[-125.35222033039848,57.9953007397897],[-125.35212362490387,57.9953283104485],[-125.35202511768365,57.99539849301921],[-125.35192593241777,57.99550792816971],[-125.35183249028533,57.99559047278635],[-125.35178650416054,57.99562053265853],[-125.35177251603189,57.99563392391733],[-125.3517470008808,57.9956416512091],[-125.3516210362781,57.99570945698235],[-125.35138313281595,57.99582943395862],[-125.35118677168302,57.99593166685752],[-125.35094993385044,57.996050526684144],[-125.3506259529059,57.99619363743844],[-125.35047248942848,57.99626130842325],[-125.3504536096832,57.996252243769945],[-125.3503213546689,57.99619439864844],[-125.35010248391187,57.99600826945992],[-125.34992779900074,57.99577412635956],[-125.34975346084948,57.99564317184274],[-125.34945564259331,57.995557600980206],[-125.34906185652596,57.9954569807633],[-125.348808956988,57.9954041538368],[-125.34874236394762,57.99540270738368],[-125.34861921027041,57.995430146491834],[-125.34827464584377,57.99547893672892],[-125.3478654299942,57.99547581673157],[-125.34764714739751,57.99543885907808],[-125.347608360583,57.99541960235582],[-125.34755467426419,57.995404759199104],[-125.34738014725221,57.99534558297637],[-125.34716237042117,57.99528058703547],[-125.34704133794568,57.995246347135556],[-125.3469983217597,57.9952270695507],[-125.34686454143491,57.995196131929234],[-125.34659884514113,57.995089401468505],[-125.34636485144621,57.99486169309466],[-125.3462260678539,57.994633329070666],[-125.346181122108,57.99454225951208],[-125.34615589955976,57.994533163192855],[-125.34611670682149,57.99453633601698],[-125.34601841144296,57.99453361131129],[-125.34583872301656,57.994528244510306],[-125.34570244028603,57.99451972542657],[-125.34556828943637,57.994511216654644],[-125.34528970946569,57.994476202729864],[-125.34496543603089,57.9944533015959],[-125.34474249911135,57.994442113105706],[-125.34438172466372,57.99445043612448],[-125.34386853761355,57.9944669819203],[-125.34362224172347,57.994460163137084],[-125.3435849453325,57.99447680372089],[-125.34341105296689,57.99450286690039],[-125.34314289256137,57.994476872520096],[-125.34293762387689,57.994422025617524],[-125.34278686900966,57.99439548674796],[-125.34262214306888,57.99438121648938],[-125.34248254057486,57.994381650551546],[-125.34243927506112,57.99437582944998],[-125.34244527796471,57.99433548148322],[-125.34245546624179,57.99423683103244],[-125.34242938721624,57.99415594751454],[-125.34239403831008,57.994060437560975],[-125.34227438687306,57.99394880989882],[-125.34190765827469,57.99387522023277],[-125.34156067940584,57.99382079413511],[-125.34146082224403,57.9937866536259],[-125.34133997688383,57.99374231510708],[-125.3409857585518,57.993619434339436],[-125.34059068867032,57.99347391889712],[-125.34033071934581,57.9934030954164],[-125.34017370475893,57.993372036272234],[-125.3401029676413,57.99336495702267],[-125.34003539154338,57.99335901496076],[-125.33991717779318,57.99334609289552],[-125.33982953903372,57.99333892992391],[-125.33968798336488,57.993330378605776],[-125.33946908983154,57.99332929565915],[-125.33926104399966,57.99331368528074],[-125.33892767100099,57.99326829245185],[-125.3384982634196,57.99321120695218],[-125.33814344744198,57.9931825298601],[-125.33774912058274,57.99317608776135],[-125.33739252701317,57.993187777362245],[-125.33721179731094,57.99318239375051],[-125.33705607284165,57.99313787816432],[-125.33688449896103,57.993092162067114],[-125.33681911792989,57.993081742887924],[-125.33678366137639,57.99305352679515],[-125.33665689272229,57.99298672265512],[-125.33650026243278,57.99293322914229],[-125.33632680370212,57.99299517631343],[-125.33601953342075,57.993148428753564],[-125.33571497659754,57.99320747980512],[-125.33561263444294,57.993194632901705],[-125.33556612818901,57.99319327982972],[-125.33536235702691,57.993174319849125],[-125.33493801302575,57.99313070725616],[-125.33452319514421,57.99308714080198],[-125.33436715609015,57.993060566062994],[-125.33430391051455,57.993049034699155],[-125.33416892044502,57.99302817268508],[-125.33398442295594,57.9929958475569],[-125.33376205526619,57.992953238788594],[-125.33365562719214,57.992931397206284],[-125.33362497094232,57.992931244173235],[-125.3335339943997,57.99293303318119],[-125.33343886788585,57.99293031501332],[-125.33340398501876,57.99292901922634],[-125.33333413662878,57.992932035201434],[-125.33309073454123,57.99294203536017],[-125.33275520708087,57.992959425801516],[-125.33245308055153,57.99300053599594],[-125.3320846528265,57.99308393451832],[-125.33157186150697,57.99307800296668],[-125.33113167036325,57.99303429889753],[-125.3309210342072,57.99316334871519],[-125.3308102502153,57.99326822365794],[-125.33075318990893,57.99326569440147],[-125.3306539930752,57.993253981055695],[-125.330493406399,57.993245324549065],[-125.33029965143368,57.993257811826275],[-125.33008762857898,57.993287031128524],[-125.32987812544384,57.99335327550785],[-125.32952868510147,57.99343788396858],[-125.32900640454775,57.993490218075685],[-125.3284765490358,57.99349204007633],[-125.3280193626991,57.99351104979647],[-125.32767430256777,57.99352837952803],[-125.32746366349379,57.99353965606716],[-125.32723512008405,57.993546355643375],[-125.3268583567579,57.99356240188859],[-125.32651972062567,57.99357527463691],[-125.32626660615381,57.993595307786244],[-125.32591254132785,57.99364287072064],[-125.3255456051723,57.99370046209123],[-125.32525933462595,57.99374163621734],[-125.3249942926457,57.99377843067954],[-125.3246547661794,57.99384064462055],[-125.3242385787404,57.9939316312662],[-125.32394344159599,57.993995189722604],[-125.32380409815516,57.99404046958136],[-125.32367172364569,57.99410933822107],[-125.32350416378142,57.99413540760312],[-125.32327805206293,57.994182490384475],[-125.32303341969707,57.99431920694875],[-125.32284234895836,57.99441693875806],[-125.32271835318376,57.99443201213598],[-125.32266965003076,57.994435129833775],[-125.32264624459562,57.994442862283854],[-125.32254819058257,57.99448498556464],[-125.3223478521031,57.99456921044432],[-125.32216344702849,57.99464902953452],[-125.32209197845876,57.99468343627264],[-125.32203334430702,57.99470893534264],[-125.32192471437766,57.994751004473095],[-125.32182244919319,57.99479198425077],[-125.32172326329106,57.994838587608164],[-125.32163145061567,57.99488634996559],[-125.32155031363833,57.99492855850998],[-125.32147234039729,57.99497078308852],[-125.32138679074686,57.99502306352992],[-125.32128103586703,57.99508197080784],[-125.32119548569679,57.995134251132896],[-125.32114522882344,57.99516427883836],[-125.32111646262389,57.995176470178954],[-125.32101645232936,57.99520960961823],[-125.32075121318533,57.99525648920811],[-125.32050323799339,57.99528438890695],[-125.32042385851152,57.995287349648116],[-125.32037344521692,57.99526802575939],[-125.32022101447323,57.99521789913367],[-125.32003156440811,57.99516758377918],[-125.31992942885763,57.995142388249825],[-125.3199042325878,57.995132165466366],[-125.31986000198853,57.99512184570234],[-125.31965761943496,57.995084923157606],[-125.31927188980761,57.99501117421456],[-125.31883057258754,57.99491246527212],[-125.31839361313315,57.99480592590318],[-125.31798928260463,57.99470852462482],[-125.31770487143078,57.99464650476116],[-125.31761316717476,57.99463033359135],[-125.31746623443405,57.99462621761953],[-125.31715858639075,57.994621279498084],[-125.31686481966821,57.99460856048709],[-125.31673392058657,57.99459555293861],[-125.31669156141444,57.994598700930176],[-125.31663236472556,57.9945972763068],[-125.31653512032464,57.99459453526215],[-125.31641251760678,57.99459054269297],[-125.31626558515349,57.99458642539981],[-125.31611663648228,57.99457781120607],[-125.31605735811486,57.99458087231888],[-125.31596857337946,57.994578174203255],[-125.31578262613344,57.99456824844505],[-125.3156567609992,57.994568724869524],[-125.31562821838124,57.9945685785451],[-125.31557179715382,57.994588478127675],[-125.31544640476069,57.99462148325248],[-125.31519005206245,57.99464484369104],[-125.31493595721331,57.994660364007366],[-125.31476319191955,57.994681909352586],[-125.31456170296748,57.99471227981688],[-125.31431142749727,57.99475025061842],[-125.31414369434874,57.99478528025111],[-125.31405010563984,57.994813961063734],[-125.31395146701091,57.99482915662321],[-125.31386592415905,57.994823108962066],[-125.31378169684788,57.994802487168386],[-125.31359704414609,57.994779105784],[-125.31336076959924,57.99474536420402],[-125.3131971192346,57.99473106311549],[-125.3130331852668,57.99473134120653],[-125.31263658782102,57.99473266451585],[-125.311952446414,57.99478522026758],[-125.31126632773831,57.994945436266576],[-125.31074777517152,57.99513679737241],[-125.31034769674764,57.99526932360936],[-125.30996381586121,57.995383986736336],[-125.30948755271018,57.995518359851665],[-125.30900763428856,57.995621307450484],[-125.30867254243317,57.99567004478302],[-125.30845642450547,57.99569023591481],[-125.3082060536665,57.99573268130201],[-125.3078844504232,57.995794945833026],[-125.30768261898541,57.99584324991916],[-125.30754438085104,57.99588403234271],[-125.30739891402781,57.99591580428021],[-125.3073475132708,57.99595030736597],[-125.30733935741274,57.99599064284613],[-125.30727421762575,57.99602507462111],[-125.307152411847,57.996034536962625],[-125.30701150533196,57.99604838646555],[-125.30689789011421,57.996072471966144],[-125.30675624880656,57.996068371695564],[-125.30652648296943,57.99602567893695],[-125.30630185952192,57.99593366185662],[-125.30614384625831,57.99584311223143],[-125.30606830880778,57.99581019304376],[-125.30593069097333,57.99593173263034],[-125.3055640739775,57.9960834860413],[-125.30520902043115,57.99600985586525],[-125.3050812626512,57.995884692646456],[-125.30507744796114,57.99586224067511],[-125.30503402044059,57.995865379423115],[-125.30481680530933,57.996002205977476],[-125.30450184171423,57.99627648055709],[-125.30421216617424,57.996384888529306],[-125.3037701533345,57.9963814624582],[-125.30334860808651,57.99647235669023],[-125.303079390617,57.996617882036084],[-125.3028099419268,57.996775743343655],[-125.3026549072354,57.99686578379095],[-125.30264178293672,57.99694647096304],[-125.30267911410797,57.99710032618375],[-125.30270850278907,57.99716889774973],[-125.30257808221727,57.997187283820224],[-125.30216363897229,57.997179510066886],[-125.30172041990085,57.9971267202074],[-125.30156465857438,57.99708552753133],[-125.30151823220888,57.99707967659804],[-125.30143788186591,57.99707813457307],[-125.3013275453393,57.997096624511975],[-125.3012426308654,57.99711300420803],[-125.30104731685267,57.99715123805434],[-125.30050555830867,57.997221305087564],[-125.29989041567704,57.997257336873865],[-125.29956882474461,57.997261258049676],[-125.29944690835761,57.99727632086562],[-125.29939934929541,57.99727494968316],[-125.29935681817723,57.99728706417077],[-125.29916701082468,57.99731298649593],[-125.29884809759157,57.99734383859799],[-125.2986351917213,57.99736066598933],[-125.29847078099912,57.9973867207515],[-125.29824170580012,57.99742028668036],[-125.29807522548809,57.99744296525505],[-125.29798724956719,57.99745371875831],[-125.29782690422935,57.99743156493587],[-125.29753787687908,57.99739078814719],[-125.29731156671438,57.99738959716193],[-125.29723504703023,57.997409383338685],[-125.29712070836642,57.99741551105892],[-125.29690790635038,57.99742672820568],[-125.29671949878887,57.9974347086972],[-125.29655848172261,57.9974484412942],[-125.29638544078264,57.99748342089867],[-125.2962174053379,57.99753300758725],[-125.29605598804837,57.997568048046965],[-125.2959115540466,57.99759981305634],[-125.295809484148,57.99762843654833],[-125.2956291988618,57.9976544041009],[-125.29528358038908,57.99769856614301],[-125.29494836791432,57.99775175512897],[-125.29473172488989,57.99779884004772],[-125.29461044929482,57.99783633405448],[-125.29447650408953,57.99787263939017],[-125.29424813404387,57.99792414800319],[-125.2940608260654,57.99798596785353],[-125.29392809347085,57.9980144277922],[-125.2937337591212,57.99799994054764],[-125.29336988066497,57.998002501505695],[-125.29295847747393,57.99805752546976],[-125.29273766341042,57.99810122027011],[-125.29263544178289,57.998137691839794],[-125.29249186152555,57.99817955221372],[-125.29216036340502,57.99825967260913],[-125.29169474487092,57.99838506674154],[-125.29129490337559,57.99849959235951],[-125.29093851250856,57.998609861137545],[-125.2906617036584,57.99870597089158],[-125.29047015562446,57.99876776328058],[-125.29026196162461,57.998814885961096],[-125.2900120585097,57.99883038139507],[-125.28982618195268,57.998815933442216],[-125.2897660833825,57.998805519238374],[-125.28969087753975,57.998811848806994],[-125.28958798829568,57.998827003922756],[-125.28941632331568,57.99884403614805],[-125.2890972828571,57.99888047250246],[-125.2888006334523,57.9989069328713],[-125.28868391867658,57.99892650009352],[-125.28864366740018,57.99892965046897],[-125.28854598867319,57.998949318998285],[-125.28841448895281,57.99896768558657],[-125.28834118939659,57.998984119068055],[-125.28826271672695,57.99899491687137],[-125.2881376471988,57.999008831020376],[-125.28806761369607,57.9990207953192],[-125.28803379277157,57.99901949335274],[-125.28792025841415,57.99903907687409],[-125.28768603765556,57.9990636245119],[-125.28748785477649,57.999084999236885],[-125.28740620047786,57.9990957795606],[-125.28731610248558,57.99910651476157],[-125.28710399187166,57.99913678747128],[-125.2867837314737,57.999181063107926],[-125.28646744477756,57.999238818572245],[-125.2862201043724,57.99928572579318],[-125.2860468533366,57.99933078555589],[-125.28591069401342,57.9993715570404],[-125.28572988129837,57.99942442724678],[-125.28546899377962,57.99951612514672],[-125.28526345801521,57.99959017307238],[-125.28517387337689,57.999628949925274],[-125.28515231583934,57.999650145157126],[-125.28505228561147,57.9997370953843],[-125.2849037530117,57.99987201516175],[-125.28482918491717,57.99995573678174],[-125.28466462765859,57.999932422931835],[-125.28427188711859,57.99989442646094],[-125.28389369688952,57.99986996624204],[-125.28361462105262,57.999861739403094],[-125.28342547497218,57.999851751449555],[-125.28331569961406,57.99983994608373],[-125.28315308762942,57.99982561371971],[-125.28288264442655,57.99980845878693],[-125.2826153612649,57.999792441899],[-125.28246843361232,57.99978716588584],[-125.28240085509859,57.99978119460929],[-125.28226537644838,57.99978607443479],[-125.28202744876303,57.99978367354437],[-125.28181990376441,57.999796016650954],[-125.28167269718368,57.99980531924516],[-125.28157432832627,57.999805911570036],[-125.28148130336199,57.999803167739415],[-125.28131708933317,57.999816864868606],[-125.28113353328284,57.99984728186867],[-125.28089993936244,57.999894253336464],[-125.28058158690534,57.999948619012926],[-125.28036288400443,57.99999118333358],[-125.28030876617123,57.99999986454021],[-125.28029178013507,58.00000313782005],[-125.28025462222246,58.000010788813626],[-125.28005378170901,58.00005905700111],[-125.27970551256396,58.00012896189499],[-125.27928684358226,58.000174931970506],[-125.27884743559548,58.00019835642101],[-125.2784918015937,58.00021101602323],[-125.27832444191101,58.00022357087876],[-125.2782489509394,58.000244473494355],[-125.27815523492679,58.000277615302494],[-125.27804091965722,58.00033644281313],[-125.27792422525276,58.00040983836578],[-125.27786097648841,58.000453239288994],[-125.27770859468316,58.00045690146889],[-125.27733551787726,58.00049638242147],[-125.27702398360483,58.000581060237685],[-125.27690964403172,58.00064100829787],[-125.27684983430497,58.00067096799475],[-125.27678149873765,58.00070424633195],[-125.27668821254159,58.00071495714684],[-125.27655484500832,58.00071984264194],[-125.27644872267452,58.000793294241674],[-125.27640039293652,58.00088612646969],[-125.27635230081452,58.00096662219799],[-125.27630264503293,58.00107290662178],[-125.27626437182471,58.0011927121422],[-125.27623091282717,58.00128226011099],[-125.27618698548056,58.00136614324612],[-125.27613196246337,58.00147688502921],[-125.27594126938392,58.00154763453594],[-125.27558979738654,58.00161751155389],[-125.27537407545502,58.00172401623102],[-125.27530362638566,58.001812241657916],[-125.27523520074125,58.001850005245124],[-125.275201972079,58.001872257221954],[-125.27526877359314,58.00191860616185],[-125.27543522599468,58.00206307663518],[-125.27552325149148,58.00216113505465],[-125.27057805770538,58.002766803911584],[-125.26220465089587,58.00341171624479],[-125.25682571336631,58.004961131875035],[-125.2496349456916,58.0073705503253],[-125.2418072756247,58.01109501970823],[-125.22570620223684,58.016942847874546],[-125.22076563882138,58.019229194598],[-125.20840129239795,58.021821537598235],[-125.19700838658457,58.02246242593713],[-125.19999915016314,58.02028529259823],[-125.19966301608734,58.02026645429437],[-125.19932459848411,58.02025545302652],[-125.19898777054863,58.020269136799435],[-125.19865269931786,58.02029965506043],[-125.19832678296856,58.02034705222694],[-125.19800906026336,58.020407957639684],[-125.19769954500937,58.02048012813765],[-125.19739929653774,58.02056469180036],[-125.19711675592387,58.02066282108409],[-125.19685609071668,58.02077678447158],[-125.19663201910812,58.020911157231424],[-125.19648145852925,58.02107289155261],[-125.19634250414256,58.02123581722027],[-125.19613623328199,58.02137926957322],[-125.19589645942357,58.021505695146665],[-125.19563162403358,58.021616266238745],[-125.19533759068082,58.021706471155646],[-125.19502801144102,58.02178087858685],[-125.19471233947893,58.02184403202798],[-125.19439353156278,58.02190492251038],[-125.1940757241565,58.021968061590385],[-125.19377238588103,58.02204811209347],[-125.19347012016352,58.02212704674192],[-125.1931390918108,58.02216542736576],[-125.19280039352486,58.02216674616484],[-125.19246662819411,58.02213556588639],[-125.19216783694849,58.02205300007635],[-125.19188636479004,58.02195259186688],[-125.19158762461765,58.02186778175528],[-125.19127587313562,58.021797473737266],[-125.19095534283001,58.02174169335355],[-125.19061689027637,58.02173179151826],[-125.1902980282514,58.021794915239035],[-125.19004047637758,58.02191000616777],[-125.18982371680053,58.02204777716667],[-125.18963422670551,58.022196929841],[-125.18946996252285,58.022354086940474],[-125.18932780675898,58.022516986327275],[-125.18918351638942,58.022679872643074],[-125.18901401404244,58.02283475417948],[-125.18881191502541,58.022979342679555],[-125.18857629066261,58.02310802405908],[-125.18831033141592,58.023219695860895],[-125.18801735887152,58.02330876979286],[-125.18769037745821,58.023355013271605],[-125.18735186261674,58.02334734616924],[-125.18701923831051,58.02331167258281],[-125.18668874804102,58.023276011157904],[-125.1863550752287,58.02324032952942],[-125.18602792281065,58.02319683518169],[-125.18571831151395,58.023125405478005],[-125.18543040178311,58.02302943088876],[-125.18515108114795,58.022927899777024],[-125.18486743164847,58.02283082830432],[-125.18456220474724,58.02275269271858],[-125.1842417494328,58.022693531639504],[-125.18391799001483,58.022639957898235],[-125.1835875086117,58.022604288827466],[-125.18325255051667,58.022628039479805],[-125.18293371734043,58.02268890266505],[-125.18262726408545,58.02276442241587],[-125.18230842873558,58.022825284117886],[-125.18197337002773,58.022853517606855],[-125.18163743986558,58.02287277164597],[-125.18129863688286,58.02287854732333],[-125.18096129228924,58.022866384531774],[-125.18062743258822,58.022839660688106],[-125.18029812484843,58.02279838236525],[-125.17997003920894,58.022749259113276],[-125.17964398968968,58.022704634194646],[-125.17931359299725,58.02266446840942],[-125.17898212271488,58.022625416865765],[-125.17865274499675,58.02258749902249],[-125.17832236732878,58.02254733089501],[-125.17799306469185,58.0225060469034],[-125.17766488628378,58.02246140403907],[-125.17733894039164,58.022412287476065],[-125.17702283063282,58.0223486491376],[-125.17672193066268,58.022267157233465],[-125.17642324689888,58.02218119167614],[-125.17611366227588,58.02210973979293],[-125.17578663016292,58.022061734390135],[-125.17545278131031,58.02203499763821],[-125.1751166439036,58.02201609753479],[-125.17478053150752,58.02199607507878],[-125.17444451819807,58.02197156574947],[-125.17410850532768,58.02194705557545],[-125.1737746092879,58.02192255764695],[-125.17343859729421,58.02189804578938],[-125.17310261046163,58.02187241158069],[-125.17276871574317,58.02184791114002],[-125.17243270507538,58.02182339675437],[-125.17209671959878,58.02179776001786],[-125.17176287572575,58.02177101405246],[-125.17142913141655,58.02173978122872],[-125.17109752882344,58.02170743919854],[-125.1707638104256,58.021675083208756],[-125.17042999339643,58.02164721241008],[-125.17009393643123,58.02162493515899],[-125.1697569118131,58.02164639578807],[-125.16943198910467,58.021694850658925],[-125.1690969308081,58.02172305181822],[-125.1687601035521,58.02173553788843],[-125.16842123427772,58.02174464541798],[-125.16808258868683,58.02174365853755],[-125.16774404264224,58.02173818477643],[-125.1674110990703,58.021766394894314],[-125.16709839746349,58.021836231845334],[-125.16679811900576,58.02191848383428],[-125.16651235495563,58.02201428565884],[-125.16625365395447,58.022130445705606],[-125.16603259787374,58.02226703020321],[-125.1658388291341,58.02241387971536],[-125.16564294245272,58.02256071575126],[-125.16543448039957,58.02270186466015],[-125.1651715883604,58.02281575324137],[-125.164867139857,58.022894610005615],[-125.16455036606436,58.022956564070384],[-125.16422540029514,58.02300612785296],[-125.16389234283137,58.0230388152658],[-125.16355540199683,58.02305577425671],[-125.16321656957014,58.0230626255842],[-125.16287796227599,58.02305938249621],[-125.16254164676157,58.023048301274784],[-125.16220313984964,58.023040570451876],[-125.16186433237216,58.023046296843596],[-125.16152938166134,58.02306887153363],[-125.16119833743029,58.023106051540516],[-125.16087331576063,58.02315785018921],[-125.16055854921792,58.02322429412498],[-125.16024995520165,58.02329862777888],[-125.15994135996237,58.02337296072596],[-125.159634854847,58.02344842778621],[-125.15933661332826,58.023532919473624],[-125.15905704165752,58.023634353005335],[-125.15880039773725,58.02375163365242],[-125.15860029383833,58.02389618990717],[-125.15843798355603,58.02405444396211],[-125.1581418258635,58.024140067877504],[-125.15780320928322,58.024136811923334],[-125.15746479428992,58.0241245830588],[-125.1571286472329,58.02410563765226],[-125.15679489434432,58.024074368189694],[-125.1564699863431,58.02402632875762],[-125.15614518009558,58.02397380251368],[-125.1558136971406,58.02393581493731],[-125.1554776536103,58.02391237935678],[-125.15514150945863,58.02389342895475],[-125.15480536564655,58.02387447770742],[-125.15447159147126,58.02384432395425],[-125.15414008606513,58.02380745373622],[-125.15380396882973,58.0237873784655],[-125.15346507739622,58.02379644807684],[-125.15314419609373,58.023851619299734],[-125.1528979880621,58.0239745632465],[-125.15273986106952,58.024133958738716],[-125.15260912078303,58.0242991361316],[-125.15248256171948,58.02446658329297],[-125.15235391033329,58.024632895429434],[-125.15223369864326,58.02480038270365],[-125.15212401795561,58.02497018007846],[-125.15203330930103,58.02514346282584],[-125.1519700645753,58.02531916322121],[-125.15193637538039,58.02549841624818],[-125.15192173522449,58.02567779022855],[-125.15190921153436,58.025857177678745],[-125.15189245449261,58.026036538289624],[-125.15187993054269,58.02621592580713],[-125.15186317320068,58.0263952864844],[-125.15181892465868,58.02657335099729],[-125.15175353449813,58.02675015963448],[-125.15165861186217,58.02692229407655],[-125.15147947803233,58.027073703619855],[-125.15121235576332,58.02718417385722],[-125.15091401479202,58.02727089010313],[-125.15060536837248,58.02734520180551],[-125.15029057391183,58.02741050034156],[-125.14997164663154,58.02747128516967],[-125.1496548095902,58.0275332042218],[-125.14933590567271,58.027592866031235],[-125.14901284366688,58.027649135591226],[-125.14868988251496,58.0277009183366],[-125.14836281437638,58.02774706577312],[-125.1480337051458,58.027789834385786],[-125.14770054013145,58.027824724619435],[-125.14736556372621,58.027846142405465],[-125.14702673608805,58.02785070968835],[-125.14668821455643,58.02784181800366],[-125.14635214173585,58.027818359369974],[-125.1460227514377,58.02778036086602],[-125.14569343844317,58.02773899702542],[-125.1453619328018,58.02770098336089],[-125.14502586207269,58.02767752139468],[-125.14468713797494,58.02767759670968],[-125.14435012121295,58.027695628856016],[-125.14401310412693,58.02771366015266],[-125.14367634277414,58.02772047551666],[-125.14333761828586,58.02772054741039],[-125.1429989706742,58.027717253920976],[-125.1426603743942,58.02771171655706],[-125.14232182950661,58.027703935319025],[-125.1419833873848,58.02769166719162],[-125.14164719052113,58.027673804266904],[-125.14131101965407,58.02765481898872],[-125.14097268105212,58.0276380622709],[-125.1406364337572,58.027622439819126],[-125.14029791580212,58.02761353194614],[-125.13995911512319,58.02761695979735],[-125.13962227672198,58.02762712946479],[-125.1392831670143,58.02764401369089],[-125.13895012389311,58.027673274562325],[-125.13863117600455,58.0277340323373],[-125.1383266833341,58.02781058601977],[-125.1379915212751,58.027839830855456],[-125.13765537655668,58.02781971486884],[-125.13732609824223,58.02777720889651],[-125.13700998540325,58.02771459702389],[-125.13670698685407,58.02763412236212],[-125.13640182126292,58.027555876351684],[-125.13607923259141,58.02749882877873],[-125.13574541538775,58.02746974962937],[-125.13540922348531,58.027451871012765],[-125.13507310949164,58.02743062703177],[-125.13473924192957,58.02740378838321],[-125.13440325816006,58.02737693518748],[-125.1340693656625,58.0273512163726],[-125.13373555133087,58.02732213220645],[-125.13340186708011,58.027287439678304],[-125.1330725723368,58.027246044753866],[-125.13275869147607,58.02717895057182],[-125.13247300288981,58.027082875196825],[-125.13216999322917,58.027003511807074],[-125.13183613154644,58.02697666591662],[-125.13149725794115,58.02698343682372],[-125.13115828029547,58.02699469289124],[-125.13082139311976,58.02700708337435],[-125.13048489571642,58.02700265043505],[-125.13019490295818,58.02690990716999],[-125.13001429163468,58.02675618352811],[-125.1298762487468,58.02659264184534],[-125.12973609043264,58.02642908626132],[-125.12958741480585,58.026267718407176],[-125.12944725896521,58.0261041625781],[-125.12928366551269,58.02594718390997],[-125.12906671588578,58.02580892567574],[-125.12879183853212,58.02570393953986],[-125.12848236775432,58.02563013401243],[-125.12816409298908,58.025570852058635],[-125.12784150784182,58.02551490622271],[-125.12751670273308,58.0254634317982],[-125.12718957316748,58.02542091477727],[-125.12685583356418,58.02538957047928],[-125.12651736515627,58.02537950621136],[-125.12618030806398,58.025399735485195],[-125.12584727465371,58.025428963623916],[-125.12550836165614,58.0254379623339],[-125.12517211437462,58.0254234225042],[-125.12483837643501,58.025392073166536],[-125.1245157454319,58.02533836231507],[-125.12420625989829,58.02526566841379],[-125.12390547755268,58.02518293580946],[-125.1236111772114,58.02509463668368],[-125.12332121620022,58.02500187869265],[-125.12303125662311,58.024909120081574],[-125.12274777923666,58.02481079504242],[-125.12246861511049,58.02470913271639],[-125.12218947874348,58.024606348317946],[-125.12189560704108,58.02450010146543],[-125.12160779764423,58.024406232227484],[-125.12131570412899,58.024314577536686],[-125.1210235857606,58.02422404371599],[-125.1207336378778,58.0241312801969],[-125.12044800330546,58.02403517942971],[-125.12017102028177,58.023931283325005],[-125.11990477907295,58.023820727381704],[-125.11965356531314,58.023701296563665],[-125.1194109769853,58.02357519210268],[-125.1191791042543,58.02344354950192],[-125.11895149239292,58.02331081293625],[-125.11872816772436,58.023175860930344],[-125.11851981783317,58.02303427734273],[-125.1183221307273,58.022889398802334],[-125.11812232873059,58.02274450602053],[-125.1179075815473,58.02260512262378],[-125.11767783649061,58.02247349153106],[-125.11744166470258,58.02234518260505],[-125.11719906618644,58.02222019581013],[-125.11694578177905,58.02209962462586],[-125.11668387505087,58.021985725976165],[-125.11642839826588,58.021868504334996],[-125.1161943773438,58.02173908579108],[-125.11603726029662,58.02157989066681],[-125.11591847662588,58.02141085405102],[-125.11568647089989,58.02128593466825],[-125.11536335987647,58.02134436546397],[-125.11504440115637,58.02140618800768],[-125.11472956820676,58.02147252382464],[-125.11439859765954,58.02150510181051],[-125.11406260183362,58.02148156212344],[-125.11373785055909,58.0214300544277],[-125.11342402644668,58.021364036745666],[-125.11311459519743,58.021291317466115],[-125.11280296924532,58.02122194790271],[-125.1124826138043,58.02116373631617],[-125.11214903054442,58.021127869449934],[-125.11181277397124,58.02111553905451],[-125.11147429504081,58.02110767971166],[-125.11113825146181,58.021086375667345],[-125.11081131155412,58.02103821127862],[-125.11049746927704,58.02097330824335],[-125.110185930613,58.02090056811872],[-125.10987433993407,58.02083007025978],[-125.10955396576306,58.02077297316799],[-125.10922245181754,58.02073935610275],[-125.10888651938072,58.02071356043063],[-125.1085551398126,58.02067433424694],[-125.10826522354087,58.02058266551989],[-125.10806547267394,58.02043775806194],[-125.10785717823315,58.020296158268245],[-125.10764462615147,58.02015565138861],[-125.10743630818162,58.0200151724739],[-125.10723656353808,58.01987026386576],[-125.10703470419422,58.019725340834626],[-125.10680930080143,58.019591476776355],[-125.10655606753546,58.01947088623932],[-125.10625314748242,58.01939258622638],[-125.10592389855806,58.0193533677314],[-125.1055902574518,58.0193208490299],[-125.10526770622867,58.01926709205396],[-125.1049386467414,58.01922002070313],[-125.10460586579818,58.01924022377296],[-125.10430956978054,58.019327970863124],[-125.1040465427087,58.019440617209945],[-125.1037939344651,58.01956006298865],[-125.1035350830955,58.01967497973505],[-125.10326784558268,58.01978647469485],[-125.10301108047508,58.01990252615182],[-125.10277933335558,58.02003444857981],[-125.10257064890297,58.02017549895193],[-125.10237034747439,58.02031997037775],[-125.1021700445031,58.0204644415259],[-125.10195506019072,58.0206032053463],[-125.10171497411298,58.02072946165937],[-125.10145399200191,58.02084436028759],[-125.10118261483862,58.0209513367792],[-125.1009049946983,58.02105378403212],[-125.10062528360827,58.02115509497895],[-125.1003476335414,58.02125866258815],[-125.10008246470278,58.021371287112395],[-125.09977794505802,58.02144775240367],[-125.09947339724894,58.02152533849906],[-125.09915237526424,58.02158374436599],[-125.09882136327384,58.02161740525419],[-125.09848627970729,58.02164430780635],[-125.09815917573684,58.02169145352557],[-125.0978361148467,58.02174647747609],[-125.09749961460112,58.021744204472434],[-125.09716463692276,58.02176661774551],[-125.09682955083541,58.02179351614639],[-125.09649272608186,58.02180469850838],[-125.09615980957508,58.02182936656102],[-125.09582274100916,58.021850640660034],[-125.09550787035135,58.02191693120645],[-125.09521158601501,58.02200241538742],[-125.09491527326873,58.02208902041091],[-125.09460039900651,58.02215530883563],[-125.09428552363148,58.02222159652296],[-125.09396456887681,58.02227662549186],[-125.09363137553798,58.02231250217488],[-125.09330227879387,58.0223540142169],[-125.09297521635648,58.02239890429544],[-125.09264807175336,58.022447158050866],[-125.09232505054722,58.02249992573534],[-125.09200403624146,58.02255719299423],[-125.09168505588634,58.022617838351174],[-125.09137017147765,58.02268411920041],[-125.09105941007054,58.022754914080124],[-125.09075070953322,58.02282796563145],[-125.09044404262809,58.02290439536104],[-125.09013737447336,58.02298082439286],[-125.08983282149374,58.023057267146996],[-125.08952615084395,58.023133694788534],[-125.08921738974216,58.02320898581093],[-125.08891074383817,58.02328429056036],[-125.08860822058932,58.02336410945868],[-125.08830566879482,58.023445049171045],[-125.08800108104633,58.023522609280135],[-125.0876902517815,58.02359563937171],[-125.08737537939308,58.02366078938307],[-125.08705030574716,58.02371016544761],[-125.08671340625979,58.0237235661603],[-125.08637499102515,58.02371227872383],[-125.08603646668924,58.02370547639812],[-125.08570341709589,58.02373460441148],[-125.08540500694178,58.02381893103376],[-125.08513977514704,58.023931526208386],[-125.08489752205803,58.02405661676348],[-125.08466362382762,58.02418625087241],[-125.08442972398059,58.024315884590074],[-125.0841790821858,58.024437551395316],[-125.08390554065382,58.024543357202035],[-125.08361333256035,58.02463333090073],[-125.08331078716014,58.02471313792016],[-125.08300200058346,58.024788414706805],[-125.08269532929138,58.024863705318865],[-125.08239066355168,58.02494349574183],[-125.08209223633344,58.02502781507528],[-125.08179586940305,58.02511439128267],[-125.08150159018417,58.02520210288554],[-125.08120728211726,58.02529093534141],[-125.08091294517577,58.02538088865048],[-125.08062075086939,58.02546973439271],[-125.08032641111832,58.02555968642719],[-125.0800321249699,58.02564739483573],[-125.07973572087333,58.025735088024724],[-125.07943725386423,58.0258205229936],[-125.07913884056369,58.02590371431722],[-125.07883624785423,58.0259846328074],[-125.07852950331618,58.02606215694168],[-125.07822284019512,58.02613631589832],[-125.07790993635146,58.026205944357685],[-125.07759296362629,58.026268813901886],[-125.07726988833703,58.02632154540182],[-125.07694271692598,58.02636863940884],[-125.07661353852406,58.02641123201447],[-125.07628232562307,58.02645044469669],[-125.07595325627238,58.02648854970596],[-125.07562206963809,58.02652663926136],[-125.07529291599955,58.026568107127346],[-125.074963678655,58.02661293866389],[-125.07464065204387,58.02666342083916],[-125.07431949207943,58.02672401034088],[-125.07400866502915,58.026794765866825],[-125.07370404821995,58.02687117216768],[-125.0734014359821,58.02695207843383],[-125.0730988501543,58.027031862528375],[-125.07279208519485,58.02710937357835],[-125.07247919088753,58.02717786789895],[-125.07215810625823,58.027235087758626],[-125.07182899808085,58.027274304135936],[-125.07149000002153,58.02728540881864],[-125.07115843490631,58.02725281855165],[-125.07084466485962,58.02718557894322],[-125.07054612934112,58.027101619287436],[-125.07025199524399,58.02701095947599],[-125.06995783475936,58.026921420518505],[-125.06965278652744,58.026844143641426],[-125.06933245009519,58.026785828231596],[-125.06900537506041,58.02674316869842],[-125.06867392828768,58.02670608631666],[-125.06834022626255,58.026674595813596],[-125.06800646906282,58.026645347461724],[-125.06767059576664,58.02661608350627],[-125.06733901199966,58.02658460527643],[-125.0670075403783,58.026548640258845],[-125.06667835344581,58.02650596025859],[-125.06635145137112,58.026456565293465],[-125.06602886714572,58.02640383465187],[-125.06570633969935,58.0263488602524],[-125.06538598568733,58.02629165690299],[-125.06506563265246,58.02623445278907],[-125.06474319196836,58.026176111602645],[-125.06442281292638,58.02612002744517],[-125.06410023430661,58.026067292166246],[-125.06377336744383,58.02601676942666],[-125.06344638944836,58.025970731850364],[-125.06311712760066,58.0259314075727],[-125.0627834091105,58.0259010247073],[-125.06244503751773,58.02588743364796],[-125.06210635769385,58.02588617811811],[-125.06176959809237,58.02589278702138],[-125.06143066567115,58.02590162318509],[-125.06109181731122,58.02590709402069],[-125.06075310927142,58.025906956549875],[-125.06041426076453,58.0259124256671],[-125.06007724769336,58.02592912370903],[-125.05974020620805,58.02594694239043],[-125.05940333314764,58.025958031286784],[-125.05906479346002,58.02595116060072],[-125.05874228011412,58.02589616941718],[-125.05853834658853,58.02575564322958],[-125.05846230886578,58.0255801241866],[-125.05844988081172,58.02540056670488],[-125.05846920089535,58.02522123301083],[-125.05850754136438,58.0250431550828],[-125.05855434752752,58.02486513683981],[-125.05860115324637,58.02468711861474],[-125.05864160903755,58.02450905566632],[-125.05867783147576,58.02433096291339],[-125.05872251946765,58.02415292983596],[-125.05877778935735,58.02397497133728],[-125.0588372634919,58.02379816415835],[-125.0588988253728,58.02362249338305],[-125.05896464768188,58.02344573094444],[-125.05902623652129,58.023268938691935],[-125.05908359195077,58.02309211663126],[-125.0591367421599,58.02291414328251],[-125.05917930989136,58.02273609542058],[-125.05922399360338,58.02255806248434],[-125.05927079326591,58.0223800444715],[-125.05931335975507,58.02220199667021],[-125.05935169313109,58.02202391908468],[-125.05937735619797,58.021844630625694],[-125.05938820467915,58.021665237883326],[-125.05938000613875,58.02148571105666],[-125.05934215115751,58.0213070971127],[-125.0592724676033,58.02113162408804],[-125.05917518849402,58.02095932174217],[-125.05905451862424,58.02079134131045],[-125.05891680709325,58.020627727455945],[-125.05876631474818,58.02046738846484],[-125.05860733051621,58.02030811115699],[-125.0584397981947,58.020152138465214],[-125.05826586223961,58.019998363793874],[-125.05808129023669,58.01984675727145],[-125.05789025839886,58.01969959166688],[-125.05769070686073,58.019554609059334],[-125.0574804913031,58.01941291595823],[-125.05726381600553,58.0192756636635],[-125.05703430419885,58.01914392880456],[-125.05677906143131,58.01902547201458],[-125.05650011923694,58.01892367252878],[-125.05620819937697,58.018832997556245],[-125.05590979130784,58.0187478844819],[-125.05561138459272,58.01866277074875],[-125.05531077835009,58.01858100582818],[-125.05500365545514,58.01850592419934],[-125.05468784311348,58.01843975379706],[-125.0543631998002,58.01838810195226],[-125.05402721312109,58.018366654314285],[-125.05369037814869,58.018378850193336],[-125.05335737906242,58.01840677592003],[-125.0530203170374,58.01842794193975],[-125.05268184646867,58.01842105513636],[-125.0523458037968,58.018401846225544],[-125.05200978980854,58.01838151499135],[-125.0516739462817,58.0183544540426],[-125.0513448486987,58.01831173664444],[-125.0510333050901,58.01824446619663],[-125.05075870168861,58.01813932044321],[-125.05052710355139,58.01800755952837],[-125.0503275610788,58.01786368766596],[-125.0501494367691,58.01770987271858],[-125.049990472406,58.01755170711051],[-125.04984429113104,58.017390267230056],[-125.04970666065744,58.01722552300989],[-125.04957540801584,58.017059702373736],[-125.04944627259567,58.016893896697795],[-125.04931502226508,58.0167280758653],[-125.04920078670028,58.01655901101487],[-125.04911417428785,58.01638565604066],[-125.04904454770978,58.01621017862026],[-125.04897492178299,58.01603470119705],[-125.04889468806353,58.015860269905005],[-125.04879109386798,58.01568903725497],[-125.04867686382755,58.01551997214708],[-125.0485583744285,58.015351998299366],[-125.04843565416161,58.0151839942264],[-125.04830653023383,58.0150181877859],[-125.048171031159,58.01485345748499],[-125.04802489668086,58.014690894612755],[-125.0478723303067,58.01453165077478],[-125.04770701278746,58.01437455921398],[-125.04753100322402,58.01422187791631],[-125.04734009835806,58.014072455179864],[-125.04713847314014,58.01392856407494],[-125.04692401171926,58.0137901894509],[-125.04669459826522,58.01365731614067],[-125.04644800295739,58.01353441484308],[-125.04618634163202,58.013421500569926],[-125.04591178711026,58.01331634540268],[-125.04562645518263,58.013218964379135],[-125.04533457745022,58.01312938767676],[-125.04502977770608,58.01304869133293],[-125.0447205191708,58.01297693579413],[-125.04440688733679,58.01291075661709],[-125.0440889392315,58.012847910829684],[-125.04376873345609,58.01279065648939],[-125.04344635565127,58.012735629170095],[-125.04312174856757,58.01268507179452],[-125.04279499792968,58.01263561993754],[-125.04247033534827,58.01258730392292],[-125.04214132745744,58.01254344264835],[-125.0418121771365,58.01250518791059],[-125.04148088302865,58.012468038646674],[-125.04114967555559,58.01242752415603],[-125.04082287242096,58.0123803104255],[-125.04050044510423,58.01232751895727],[-125.0401780760718,58.01227248377676],[-125.03985790987278,58.01221409862792],[-125.03954209107992,58.0121512572753],[-125.03922856143157,58.012081701593445],[-125.03892369715295,58.01200435581033],[-125.03863401811573,58.01191253687386],[-125.03836166905587,58.011805138654324],[-125.03810439065089,58.01168775336072],[-125.0378492008543,58.011571504296555],[-125.03758117431298,58.01146077061043],[-125.037298022635,58.01136226577147],[-125.03700403470664,58.01127377725945],[-125.03670573032215,58.011188621985525],[-125.0364052539614,58.01110569371966],[-125.03610475011945,58.01102388625127],[-125.03580207423114,58.0109443057702],[-125.03549728391106,58.01086470932968],[-125.03519463943132,58.01078400602007],[-125.03489411195962,58.010703317321635],[-125.03459367234282,58.01061926355825],[-125.03429752319092,58.01053299679531],[-125.03400140427237,58.01044560791895],[-125.03370308440508,58.01036156747951],[-125.03340262130288,58.01027863253253],[-125.03310218842724,58.01019457545263],[-125.03280821954195,58.01010607781655],[-125.03252288820313,58.0100109120677],[-125.03225054151248,58.00990462307179],[-125.03199761335536,58.00978389252844],[-125.03177465312625,58.009649918714125],[-125.03157099572334,58.00950598946215],[-125.0313822940328,58.00935656002637],[-125.03120640338453,58.009202736587426],[-125.03104541033498,58.00904565601154],[-125.03089296793266,58.00888527229451],[-125.03075119170099,58.00872160082294],[-125.03061790801158,58.00855686919872],[-125.03049314573887,58.00838995598619],[-125.03037264468355,58.0082219519488],[-125.03025852035387,58.0080528724621],[-125.03014865712812,58.00788270217803],[-125.0300387659107,58.00771365329547],[-125.02993104919172,58.00754237680099],[-125.0298275354945,58.007372252451866],[-125.02972405173288,58.00720100659375],[-125.02962479990963,58.00702979143389],[-125.0295255779947,58.0068574547722],[-125.02942847246858,58.006685133445544],[-125.02933348330194,58.00651282745827],[-125.02924061046552,58.0063405368148],[-125.02914988294349,58.00616714006112],[-125.02906127169818,58.00599375866052],[-125.02897477670018,58.005820392617174],[-125.02889042694079,58.00564592047728],[-125.02880604894254,58.005472569774696],[-125.02872593154733,58.00529812836886],[-125.02864581489688,58.00512368694785],[-125.02856784340035,58.004948139444615],[-125.02849195897053,58.004773728777224],[-125.02841821963958,58.004598212035376],[-125.02834659634783,58.0044227106797],[-125.02827920440511,58.00424724010794],[-125.02822667847904,58.004069634392394],[-125.02818687400772,58.00389099961136],[-125.02815764646226,58.003712441835994],[-125.0281326788353,58.00353279342714],[-125.0281161726039,58.00335320663725],[-125.02809963748798,58.00317474133514],[-125.02808101630322,58.00299513921297],[-125.02806028003783,58.002815521725054],[-125.02803528442962,58.0026369949261],[-125.0280018571494,58.00245728510739],[-125.02793444130073,58.00228293618761],[-125.02778418393025,58.00212144404038],[-125.02767220502068,58.00195237886004],[-125.0276069649226,58.001775802368044],[-125.02754595581843,58.00159925669017],[-125.02755057598644,58.00142094571754],[-125.02748748161358,58.001243263222094],[-125.02742009939593,58.001067792818915],[-125.02732513366522,58.000895486448044],[-125.02717271119293,58.00073622134805],[-125.02692200536166,58.00061437634859],[-125.02662806791226,58.00052810892776],[-125.02629924243553,58.00048196629855],[-125.02596801160301,58.000447021940765],[-125.02563452069494,58.00041766858098],[-125.02530108855636,58.0003860714874],[-125.02498947823167,58.000328834664586],[-125.02466526560158,58.00026814005642],[-125.02434041266514,58.000232116573656],[-125.02385339693282,58.0001679868182],[-125.02323158617453,57.999999676122115],[-125.02295287638539,57.99989780869126],[-125.02266929548986,57.99982058161295],[-125.02233188648638,57.99986073441293],[-125.02200490611115,57.99990657107941],[-125.02138052508614,57.99999958052285],[-125.02115868313629,58.000069740713066],[-125.02085003327976,58.000142628916414],[-125.0205413529585,58.000216637861534],[-125.02023270069525,58.000289524649276],[-125.01996741049717,58.000403108973316],[-125.01974389398879,58.00053718948119],[-125.01953709188453,58.00067924404862],[-125.0193302882149,58.000821298317526],[-125.01911719614596,58.0009610627687],[-125.01889367327772,58.00109514193389],[-125.0186701194898,58.00123034219468],[-125.01845702264028,58.0013701056539],[-125.01825858379584,58.001515584920995],[-125.01808108992488,58.00166906963406],[-125.01787847633993,58.00181227436903],[-125.01763611260678,58.00193836135941],[-125.01739586245729,58.00206446349403],[-125.01717018228086,58.00219964581776],[-125.01697384929038,58.0023451388762],[-125.01682366804135,58.002505553219024],[-125.01669237580514,58.002671714883384],[-125.01654427791382,58.00283326599841],[-125.01638348716303,58.002994723479944],[-125.01618929163428,58.00313910964037],[-125.01593862897711,58.00325840267186],[-125.01566293427298,58.00336405068941],[-125.015378923969,58.003464028492616],[-125.01508865455966,58.00356059453476],[-125.01477799611264,58.00362784610957],[-125.01443537658342,58.00362307419554],[-125.01411490591629,58.003661088399845],[-125.01382457279168,58.003759894619456],[-125.01356761148845,58.00387689350388],[-125.01333359276592,58.00400639983345],[-125.01309328543049,58.00413361596031],[-125.01285089063092,58.00425969458046],[-125.01259600870402,58.004377828750094],[-125.01232658337685,58.00448575984163],[-125.01204464152552,58.004586867774165],[-125.01174621827894,58.0046710280761],[-125.01143342929085,58.00473825629366],[-125.01110827206456,58.004793053801016],[-125.010781264574,58.00483774177105],[-125.0104087532438,58.004842833187595],[-125.01011141880338,58.00488549609791],[-125.01002266232784,58.00504187219359],[-125.00999630162131,58.005239091116806],[-125.00986708499171,58.00540526224386],[-125.00967279273003,58.00555188220952],[-125.00942203403982,58.00567340622554],[-125.00914627364013,58.00578016251707],[-125.00882351567375,58.00582375568187],[-125.00848633419707,58.00585265921374],[-125.00814924112323,58.00587819753394],[-125.007805534458,58.00591378093013],[-125.00753463180419,58.00583661551981],[-125.00725788835975,58.00574033767701],[-125.00692112190964,58.00575353690719],[-125.00669949393058,58.00589321934999],[-125.00648841176726,58.006034101598914],[-125.00634657330924,58.00619681066123],[-125.00618581337507,58.006354892085845],[-125.00597466727426,58.00649801650111],[-125.00574227577141,58.006644347452],[-125.00546402040538,58.006684898952265],[-125.0051384122738,58.00659610440829],[-125.00486831313947,58.00648865428023],[-125.0046283672867,58.00636123822879],[-125.00441839627642,58.00622058514433],[-125.00418488924413,58.00608985129121],[-125.00394706368765,58.005962449846805],[-125.00371570509525,58.005830609537114],[-125.00346712703461,58.005709857069476],[-125.00318410831942,58.00561128052951],[-125.00290985066259,58.005501552065965],[-125.00267837933998,58.00537419583228],[-125.00256867882695,58.00520288191259],[-125.00251627323915,58.00502526591194],[-125.00248293622099,58.00484667070418],[-125.0024538600352,58.004666985679094],[-125.00240991710902,58.00448943295395],[-125.00233418498539,58.00431388606937],[-125.00222231418691,58.00414479915619],[-125.00209346224891,58.00397782860622],[-125.00194968503169,58.00381523308021],[-125.00179309797427,58.00365702834198],[-125.0016322816643,58.00349879181376],[-125.00147146671037,58.00334055511887],[-125.00130853784412,58.00318230243554],[-125.00115198597749,58.00302297560483],[-125.00101247684854,58.00285928943741],[-125.00086656350261,58.00269779856325],[-125.00069508946721,58.00254284626967],[-125.0004937647886,58.00239664368113],[-124.99999971165329,58.00220001677978],[-124.99968026185336,58.00212022846342],[-124.99937118012762,58.00204836878215],[-124.99904901956452,58.0019909920562],[-124.99872009552487,58.00194926722368],[-124.99838437769029,58.001924315679055],[-124.99804615589443,58.00191392622368],[-124.99770948043964,58.00192485927503],[-124.99737456047049,58.00194926471988],[-124.99703570936602,58.00196242308165],[-124.99669936295926,58.00196101767541],[-124.99635890614272,58.0019550938364],[-124.99602267982688,58.001949200940324],[-124.99568442845066,58.00193992694853],[-124.99534620726176,58.00192953065377],[-124.99500804632075,58.00191689061059],[-124.99467200080103,58.00190426563803],[-124.99433390041548,58.00188938099616],[-124.99401100841017,58.00193854540411],[-124.99369618544664,58.00200235159834],[-124.99338538126489,58.002074039069804],[-124.99307862578029,58.002152486402586],[-124.99279054475241,58.002244533999274],[-124.99251899268279,58.00235128746982],[-124.99224532384473,58.002458024434986],[-124.99195720830609,58.002551191710204],[-124.99165250090759,58.00263189466916],[-124.99138514313755,58.00273979927395],[-124.99113642913001,58.00286242600477],[-124.99086695298207,58.00297031361589],[-124.99059539019,58.00307706325793],[-124.99032585060337,58.00318719269509],[-124.99005425452363,58.00329506270804],[-124.98975585262879,58.003376930850365],[-124.9894313385092,58.003328486404236],[-124.98920409644876,58.00320338202763],[-124.9891136521148,58.00302659434988],[-124.98904221562327,58.00285107223691],[-124.98899199256681,58.002673467398964],[-124.98894811565894,58.00249591062901],[-124.9889021239518,58.002318337860586],[-124.98884978706677,58.0021407170529],[-124.98879533548278,58.00196308023861],[-124.98874722996707,58.001785491498815],[-124.9886991249066,58.001607902775525],[-124.9886552808495,58.00142922466964],[-124.98861140698904,58.001251668027486],[-124.98857179405381,58.00107302200863],[-124.98853218149564,58.000894376012496],[-124.9884989146863,58.00071577811326],[-124.98846776330741,58.00053719626526],[-124.98840687986753,58.00036287585186],[-124.98824465386224,58.000181057449325],[-124.98822202493416,58.000000296877396],[-124.98815485875222,57.99982368547884],[-124.98808977803073,57.999648211552945],[-124.98801623770308,57.99947267349948],[-124.98793209260506,57.99929817671195],[-124.98783731263528,57.99912584261096],[-124.98773618846299,57.99895346036439],[-124.98763291995688,57.99878218347537],[-124.98753176739812,57.998610922578195],[-124.98743699100166,57.99843858832052],[-124.98735070567312,57.99826519675934],[-124.9873089263999,57.99808877777722],[-124.98732017293909,57.997907152712514],[-124.98726781943195,57.99773065356853],[-124.98716041731971,57.997555980134536],[-124.98707199009836,57.997383693951015],[-124.98707033617549,57.99720982283041],[-124.98717234341238,57.9970356165814],[-124.98728486371968,57.99686373338305],[-124.98740363692694,57.99669526256165],[-124.98752660859354,57.99652794518304],[-124.98763695038704,57.9963582886169],[-124.9877367773264,57.9961863089328],[-124.98783657311132,57.99601545064306],[-124.98796600611263,57.99584369533927],[-124.98809936529216,57.99568318637223],[-124.98789314085558,57.99556496972355],[-124.98762114637121,57.995454105648605],[-124.98732582995676,57.99534530743218],[-124.98704752455879,57.995233272649],[-124.98678408501874,57.99511910679056],[-124.98652919712029,57.99500164034272],[-124.98629364681614,57.994873103605656],[-124.98608380876455,57.99473242343959],[-124.98588469765907,57.99458621612034],[-124.98568341272983,57.9944422353275],[-124.98548430472293,57.99429602745674],[-124.98530009247733,57.99414656753656],[-124.9851351266258,57.99398940204928],[-124.98499360617363,57.993825684664756],[-124.98487124078603,57.993657626164044],[-124.98477648910806,57.99348529093664],[-124.98470723608679,57.9933086629592],[-124.98466127569442,57.99313109048758],[-124.9846895723607,57.99294510956433],[-124.98443304939028,57.99304522951647],[-124.98410644633758,57.99307751583258],[-124.98376196413055,57.99306704201127],[-124.9834215292805,57.993063328106906],[-124.98308308767052,57.99306411517497],[-124.98274851075453,57.993078390806446],[-124.98241347759281,57.993109487086144],[-124.98208046734224,57.99314396294964],[-124.9817457068169,57.993164964663606],[-124.98140294357565,57.99316907950609],[-124.98107163648552,57.99314075264596],[-124.98076695459534,57.993066640017275],[-124.98046686876863,57.99297910182026],[-124.98014910523294,57.99291946949601],[-124.9798115486847,57.9928877267504],[-124.97947828303556,57.992853772624365],[-124.97917348463628,57.992784142107254],[-124.9789014445394,57.99267662489288],[-124.97864239908134,57.99255798991205],[-124.97839405060273,57.9924349496442],[-124.97819921092061,57.99228876359345],[-124.97801295342187,57.99213815632294],[-124.97783310237101,57.991985354537526],[-124.97766174179965,57.991831495890246],[-124.97751385715523,57.99166996522751],[-124.97737449328231,57.991506256373476],[-124.97722664170789,57.99134360401968],[-124.97707873030012,57.99118319438849],[-124.97692873614501,57.99102164698453],[-124.97677871271482,57.99086122086847],[-124.9766266065825,57.99069965697074],[-124.97646806639837,57.990541408566465],[-124.9763308258111,57.99037771503647],[-124.97622551839913,57.99020641468925],[-124.97613507473532,57.99003298497941],[-124.97604040289315,57.98985952279679],[-124.97591177760815,57.98969028670864],[-124.9756477682544,57.98959964951759],[-124.97530270814049,57.98961158243974],[-124.9749616624593,57.98963139693407],[-124.9746268680144,57.98965462356987],[-124.97429005057715,57.98967446883759],[-124.97395335538131,57.98968982755011],[-124.97361684386654,57.989698456855606],[-124.97327849372567,57.98969697621078],[-124.97294020497075,57.98969325185591],[-124.9726017628343,57.989695133774205],[-124.97226699706106,57.989717233066514],[-124.97193014710514,57.98973819380684],[-124.97159366541189,57.989745696586134],[-124.97125874494492,57.989773400480814],[-124.97091414294307,57.98976850067196],[-124.97056328978566,57.98976018677059],[-124.97022555442449,57.9897362698731],[-124.96992039848944,57.989681196994276],[-124.96967819487148,57.98956716125158],[-124.96947513078935,57.989414169077286],[-124.96925695917705,57.98927227656296],[-124.96898500372379,57.98916361812208],[-124.96871513349785,57.98905609690219],[-124.96842365808527,57.98896523308934],[-124.96812136526017,57.98888325830549],[-124.96781465987563,57.9888079786836],[-124.96749698258353,57.98874719508661],[-124.96717495404197,57.988690863707504],[-124.9668529264667,57.988634531554986],[-124.9665374283695,57.98857151920604],[-124.96623511195384,57.98849066160821],[-124.96593932542912,57.988403123940465],[-124.96564354028368,57.98831558562548],[-124.96534558029653,57.98823027311721],[-124.96503667866229,57.98815833504132],[-124.96471705158123,57.98809192136213],[-124.9643904637626,57.98804788614758],[-124.964056605211,57.988037443564615],[-124.96371363922087,57.988050484341656],[-124.96337076588482,57.98806015997167],[-124.9630412911762,57.98804414058402],[-124.96271703702023,57.98799226775195],[-124.96240406856126,57.98791468362757],[-124.96211700106313,57.98781823192289],[-124.96187075944886,57.98769854225081],[-124.96165896965752,57.9875566869185],[-124.96144721248753,57.98741370985092],[-124.96120324515842,57.987288428349196],[-124.96094025032053,57.98716299827045],[-124.96066637509266,57.98704869956539],[-124.96038755865898,57.98696016003231],[-124.96008897126084,57.986974658758854],[-124.95976936605766,57.98706077937785],[-124.9594381611349,57.987107550632196],[-124.95913170575459,57.98717694734446],[-124.95885811483373,57.987281371286294],[-124.95858856447283,57.98739255619623],[-124.95829625232678,57.98748561632258],[-124.95798528289068,57.987565070206706],[-124.95767639537885,57.987645661306104],[-124.9573945886138,57.98774104488696],[-124.95716069483088,57.9878626005392],[-124.95697266192221,57.98800806916034],[-124.95681170970782,57.988168330853526],[-124.9566611723572,57.988334282128655],[-124.9565044150884,57.98849569798607],[-124.95633929227299,57.9886536832885],[-124.95617416806796,57.98881166841351],[-124.9560153234485,57.988971945821234],[-124.95586916421605,57.98913232231644],[-124.95586022571395,57.989301623902215],[-124.95592296101128,57.98947933787014],[-124.95599409247826,57.98965936084467],[-124.95607153693511,57.989840554853394],[-124.95615106546555,57.990022886812135],[-124.95623059476843,57.99020521875912],[-124.95631223937187,57.990387567228844],[-124.95638968686632,57.99056876119481],[-124.95646290601117,57.99074992208698],[-124.95652984452785,57.990928790533786],[-124.9565883877457,57.991105350013264],[-124.956636420957,57.99127958400602],[-124.95667182941828,57.99145147599332],[-124.95669256068489,57.99161876660601],[-124.95669858338643,57.99178257727336],[-124.95661010297385,57.991922094238944],[-124.95630316656674,57.9920071847678],[-124.95592265358923,57.99207599574631],[-124.95561754820163,57.99217119408043],[-124.95538756947968,57.992302873122384],[-124.95512425428336,57.99241634413339],[-124.95484849938553,57.99252074389048],[-124.95457069076214,57.99262288367681],[-124.95429493280783,57.9927272823136],[-124.9540274757431,57.99283735380308],[-124.95376825700978,57.992955341048635],[-124.95352567271122,57.99308355326738],[-124.95335240237486,57.993229133653344],[-124.95327770834038,57.993404650330135],[-124.95303306731415,57.993530602280515],[-124.95275114200348,57.99362821951293],[-124.9524587981282,57.993720146051665],[-124.95216234859758,57.99380755305362],[-124.95185974139217,57.99388818103273],[-124.95155514344691,57.99396430601748],[-124.95123816919144,57.994029116361276],[-124.9509151630497,57.99408266183361],[-124.95058419865713,57.99411819720568],[-124.95026734686837,57.994178519549486],[-124.94996883661113,57.99426366224041],[-124.9496662523967,57.994343163860194],[-124.94936565610205,57.994427167151194],[-124.94906303789547,57.99450778884423],[-124.94875839784572,57.9945850289249],[-124.94844756932291,57.99465661120725],[-124.94812657429486,57.99471353090716],[-124.94779954832777,57.994759185566394],[-124.94747258445447,57.99480259657389],[-124.94714120154741,57.99485270198159],[-124.94680962896882,57.99490953512756],[-124.94659059844497,57.99480012609489],[-124.94640274974638,57.994634879100374],[-124.94616307817982,57.99450735966952],[-124.9459019143551,57.99439200851461],[-124.94564501311899,57.99427556884476],[-124.9453945837082,57.994154693116975],[-124.94332369423165,57.99325668027769],[-124.94335891833782,57.993132453368524],[-124.94336617825087,57.99294967810761],[-124.94325249228638,57.992780527179974],[-124.94310910756202,57.99261450604756],[-124.94294855437772,57.99245732220281],[-124.94276881295443,57.992305594563526],[-124.94258698995084,57.992152728533064],[-124.94241151226618,57.991999912544074],[-124.94223606760859,57.991845974927955],[-124.9420606243898,57.991692037106695],[-124.94188515100099,57.99153922050148],[-124.94170971065456,57.991385282269796],[-124.94153641793487,57.99123023918075],[-124.94136524120664,57.99107521266383],[-124.94119829499489,57.99092021950084],[-124.94106341625982,57.990753142178114],[-124.94093276779013,57.99058609830512],[-124.94072728947705,57.99044762391858],[-124.94048974678634,57.99032123307731],[-124.94024147486081,57.990200364981746],[-124.93998468319121,57.990081672106136],[-124.93972574697655,57.98996408337318],[-124.93946895855348,57.98984538953559],[-124.93921857857768,57.98972450279807],[-124.93897678489526,57.98959919717034],[-124.9387844815007,57.98944399952396],[-124.93861995299417,57.98927892746077],[-124.93836029721301,57.98918712878366],[-124.93805096361531,57.98913194944746],[-124.93772222014033,57.989090074945786],[-124.93738265124821,57.98905708680224],[-124.9370386953103,57.98902967120167],[-124.9366967907929,57.98900451439444],[-124.9363612935966,57.988977164430004],[-124.93602563798112,57.988955420706304],[-124.93568774115067,57.98893814494421],[-124.9353498128294,57.98892198974348],[-124.93501188479897,57.98890583368753],[-124.93467619878088,57.98888520798843],[-124.9343449329871,57.98885788671351],[-124.9340382955677,57.98878252949098],[-124.93374043556935,57.988696024980065],[-124.93344257694352,57.98860951981252],[-124.93314680223577,57.98852415230513],[-124.93284459002082,57.988442097677684],[-124.93253795900858,57.988366737042156],[-124.93222915103904,57.988293601622246],[-124.93192034427257,57.98822046549363],[-124.93161371692548,57.98814510275269],[-124.93131580372722,57.98806083571942],[-124.93101805151788,57.987970960957455],[-124.93071572065081,57.987893387215415],[-124.93038693803898,57.98792776780248],[-124.93004992102055,57.9879542298815],[-124.92971517775406,57.98797510099611],[-124.92938421517005,57.98801170498859],[-124.92905113755653,57.988048291195554],[-124.92871620090123,57.98807588829053],[-124.92838494658616,57.988048552248],[-124.92805631943703,57.98800328974839],[-124.92772304794968,57.987972570842494],[-124.92739201953952,57.987937382444734],[-124.92707230073215,57.9878764857112],[-124.92674124172106,57.987842417116134],[-124.92640563389226,57.987819527814956],[-124.92606989816075,57.98780112332177],[-124.92573204839064,57.98778270096588],[-124.92539628122057,57.98776541619191],[-124.92505833577786,57.987750356369425],[-124.92472039060627,57.98773529569133],[-124.9243845600694,57.98772025119812],[-124.92404879407819,57.9877029630356],[-124.92372225739359,57.98765882833963],[-124.92347197485917,57.98753679093994],[-124.92323454083868,57.98740924837875],[-124.92301213398129,57.987273974965895],[-124.92281756893837,57.987126587524926],[-124.92261019077412,57.98698358305923],[-124.92248806258468,57.98681771149848],[-124.92237448924645,57.98664854391173],[-124.92223115587561,57.98648474427527],[-124.92209842736952,57.98631990848548],[-124.92196358575443,57.9861550555144],[-124.9217903665108,57.98600110907724],[-124.92160222005056,57.9858515284902],[-124.92141833580166,57.985700860426924],[-124.92127497800026,57.985538181339194],[-124.92117627804986,57.98536688977195],[-124.92111794252102,57.9851891944626],[-124.92109346712182,57.98501065123279],[-124.92109019839847,57.98483003614079],[-124.921074212347,57.98465043993712],[-124.92105608004445,57.984471948081],[-124.92105069737882,57.98429131599952],[-124.9210347117456,57.98411171989476],[-124.92094873376355,57.983939409572145],[-124.92083306192622,57.98377022410136],[-124.92073228674259,57.98359779402739],[-124.9206569786331,57.98342220488192],[-124.920607072785,57.98324569952176],[-124.9205826333194,57.98306603516434],[-124.92057087862582,57.98288647344021],[-124.92055912404462,57.982706911749666],[-124.92054948364535,57.982527367193384],[-124.92053984333823,57.98234782267091],[-124.92053020312332,57.98216827818229],[-124.92052267703973,57.98198875082866],[-124.92051303699904,57.98180920640787],[-124.92050339705057,57.9816296620208],[-124.92048952917668,57.981450083464274],[-124.92046089568458,57.98126926382279],[-124.92042592050299,57.98108839290221],[-124.92040993922119,57.98090879733872],[-124.92042771710238,57.980731718260856],[-124.92051294805837,57.98056191489067],[-124.92065301199214,57.980397041695355],[-124.92079944874608,57.980231098270146],[-124.92091635362198,57.980062672583344],[-124.92102281672972,57.97988967575004],[-124.92111659538755,57.97971657631408],[-124.92117450128481,57.979540943501526],[-124.92118602988818,57.97936044910457],[-124.92113625582293,57.979179459104294],[-124.92102046891681,57.97901476026249],[-124.92083662047733,57.97886409250078],[-124.92063150603444,57.97871773912035],[-124.92045409886231,57.97856375797611],[-124.92028953738313,57.97840427224989],[-124.92013983859289,57.978242663299135],[-124.92002835108242,57.97807575517628],[-124.92002716964356,57.9778962799075],[-124.92004507690056,57.97771471585402],[-124.92006513002107,57.97753204754261],[-124.92001728406,57.97735780298047],[-124.91986550909756,57.97719505539495],[-124.91965393723089,57.977053135032214],[-124.9193571069308,57.97693520036069],[-124.91909537223013,57.97699364990298],[-124.91885472503651,57.97712742102479],[-124.91860965483386,57.97726788585946],[-124.9183380403531,57.97737560694652],[-124.91804368962701,57.9774651965742],[-124.9177348964778,57.97754233016087],[-124.91740765983702,57.97759912351261],[-124.91708245947993,57.97758526796066],[-124.91676102285871,57.9775142374631],[-124.91646329203263,57.97742769544451],[-124.91618725052443,57.97732226070483],[-124.91596057176864,57.97719142825517],[-124.91577463879575,57.977040736640106],[-124.91559088582792,57.976887819175055],[-124.91538355932872,57.97674592644657],[-124.91516550375809,57.976609554472354],[-124.91494318991822,57.976474269179306],[-124.91472087767994,57.97633898353537],[-124.9144964533325,57.97620368034401],[-124.9142655598113,57.97607281077819],[-124.91402393728254,57.97594746179018],[-124.91376514737392,57.9758309458816],[-124.91351276500446,57.97571223833157],[-124.91329690080079,57.9755736378761],[-124.91302728772821,57.97546600566473],[-124.91277916993089,57.97534620981818],[-124.91257615481159,57.975202104619925],[-124.91238598550032,57.97505249554391],[-124.91221285671888,57.97489853850727],[-124.91206532028184,57.974736938337365],[-124.91195394403657,57.97456778130762],[-124.9119062369494,57.97439017020995],[-124.91196635627558,57.97421231684544],[-124.9117225423146,57.97409031088152],[-124.91153869027877,57.97394187388953],[-124.91135061254879,57.973793402175126],[-124.91116468238187,57.97364382607609],[-124.91099163013146,57.97348762490222],[-124.9108674835874,57.97332172785398],[-124.91079224219779,57.973146135072994],[-124.9106957361437,57.972974855282715],[-124.91056099248355,57.97280999314729],[-124.91040927687207,57.972647235598025],[-124.91021308147104,57.97248747953287],[-124.91011635196287,57.972324049177175],[-124.91016564873952,57.97215508180844],[-124.91025945811964,57.971981991434376],[-124.91038285509707,57.97180914269229],[-124.91052306096917,57.971639796113536],[-124.91067152420518,57.97147724678383],[-124.91083042325063,57.97131926914784],[-124.9110060983088,57.971165914921386],[-124.91119016058535,57.9710148722626],[-124.91137633479049,57.97086384661999],[-124.91156247500203,57.97071394213073],[-124.91174653282664,57.97056289877716],[-124.91193686435193,57.97041414968229],[-124.91212511347359,57.970264261717],[-124.9122986649452,57.97011088872706],[-124.91244916287397,57.96995059769174],[-124.91258080170378,57.96978454453448],[-124.91269774337903,57.96961500653945],[-124.91279992314924,57.969444226522654],[-124.9128957944856,57.969272273405956],[-124.91298327660816,57.9690980085961],[-124.91306653131812,57.96892370932313],[-124.91314555867406,57.96874937559497],[-124.91322247201558,57.96857502463588],[-124.9132973038147,57.968399535062936],[-124.91337002165338,57.96822402826649],[-124.9134406255612,57.9680485042502],[-124.91351126124506,57.96787185884339],[-124.91358186383104,57.967696334818065],[-124.91365457897908,57.96752082799807],[-124.91372729344764,57.967345321171145],[-124.91380420121456,57.96717097013733],[-124.91388533465248,57.96699665350385],[-124.91398119477428,57.96682470005541],[-124.91409600774251,57.96665514416481],[-124.91421501358836,57.966486743992164],[-124.91431929110675,57.966315980581385],[-124.9143878386652,57.966138196452945],[-124.9143485509042,57.96596177800052],[-124.91422873789438,57.96579255565669],[-124.91410047350278,57.96562326442558],[-124.91403362000601,57.96544998648968],[-124.91403662895766,57.965272790758476],[-124.91408199684207,57.96509257497713],[-124.91414423647929,57.96491361821393],[-124.91422955718397,57.964740457575815],[-124.91434228201366,57.96456976326648],[-124.91441706819829,57.96439539519555],[-124.91443493132202,57.96421607727273],[-124.91445702032767,57.964036793775676],[-124.91451707860854,57.963860062605306],[-124.9145940079756,57.963684590381504],[-124.91466882362741,57.96350910095258],[-124.91479310450863,57.96323082270625],[-124.91481983082247,57.96296408885237],[-124.91485888568565,57.962782700295435],[-124.91507348453482,57.962670038404035],[-124.91541292483339,57.9626985968481],[-124.915746091518,57.96272486013913],[-124.91607677992165,57.96269053371294],[-124.9163915021416,57.962623549106915],[-124.9167081421682,57.96256330920664],[-124.9170349579725,57.96251661090441],[-124.91736378895513,57.96247329309604],[-124.91769057085503,57.96242771457231],[-124.91801533591735,57.962378753968295],[-124.91834208391761,57.9623342952335],[-124.9186728633425,57.962296598244095],[-124.9190075130236,57.9622712698722],[-124.9193432107024,57.962282963343384],[-124.91967605397764,57.96232043061429],[-124.920009413711,57.962339954961095],[-124.92034972490737,57.9623382235466],[-124.92068526251725,57.96235552054627],[-124.92100052792011,57.9624163967325],[-124.92129815023966,57.962502927242845],[-124.9215782265353,57.96261174805779],[-124.92182741470002,57.96269227755308],[-124.9218517735711,57.96250628191365],[-124.92179558327582,57.96232860831615],[-124.92174150643548,57.96215095180997],[-124.9217001075873,57.961973397809096],[-124.92165662841445,57.961794705365456],[-124.92162160122851,57.96161608127538],[-124.92163308999609,57.96143671166898],[-124.92173940047223,57.96126708183929],[-124.9219233711049,57.96111602596594],[-124.92211777585094,57.96096954076055],[-124.92231013056634,57.96082079546266],[-124.92243737165828,57.96065806418777],[-124.92245945254967,57.96047765866534],[-124.92245403441243,57.96029815264308],[-124.92244439070795,57.96011861251419],[-124.92244956885374,57.959938070532814],[-124.92253269503435,57.95976600980898],[-124.92275212226942,57.95963094249711],[-124.92302983771722,57.95952662977993],[-124.9233157456184,57.959431355748706],[-124.92359755504746,57.959331561497194],[-124.92386899189383,57.9592249531535],[-124.92413421738287,57.959113807626466],[-124.92440152194726,57.95900380000266],[-124.92466264719805,57.958888133860704],[-124.92484227269554,57.95874040440603],[-124.92489174213571,57.95856246302114],[-124.92490324644669,57.958381972337314],[-124.9249821646275,57.95820875493124],[-124.92517446179131,57.958061127315744],[-124.92540017556432,57.95792722834981],[-124.92557780915739,57.95777499552442],[-124.9257177338667,57.95761124239324],[-124.9258869781484,57.95745669838003],[-124.92607299405286,57.957306775786705],[-124.92626112111762,57.9571568699675],[-124.92644502140863,57.957006929893126],[-124.92662059786052,57.9568524360686],[-124.92678356121411,57.95669559727792],[-124.92694236203728,57.95653648156478],[-124.92709485573243,57.956376193324076],[-124.92724523553436,57.95621588794201],[-124.92739145290952,57.95605330568349],[-124.92753133129713,57.95589067232383],[-124.92766704734983,57.95572576212048],[-124.92780903588124,57.955563145513516],[-124.92795732882992,57.95540170110687],[-124.92811400667715,57.95524256723402],[-124.92827068319737,57.9550834332039],[-124.9284294709108,57.95492431599199],[-124.92858195172043,57.9547640263248],[-124.92886338977092,57.954601407534476],[-124.92898558933896,57.954465550118236],[-124.92915134802041,57.954284055580274],[-124.9293252035254,57.954114963823706],[-124.92942857932798,57.95397222517965],[-124.92959977664354,57.95382217950322],[-124.92975794656304,57.95368436700792],[-124.93007291507763,57.95353098809931],[-124.93043689359843,57.95351147544128],[-124.9303517724571,57.953310021104],[-124.93031463135176,57.95313026258825],[-124.93029861470231,57.95295067355616],[-124.9302847106059,57.9527711015023],[-124.9302686942525,57.95259151253482],[-124.93025267805217,57.9524119235997],[-124.93023666200493,57.95223233469672],[-124.93022061418714,57.9520538671971],[-124.9302024860962,57.95187426141111],[-124.93018647051794,57.95169467260429],[-124.93017045509275,57.95151508382972],[-124.93015655213983,57.951335512035406],[-124.93014264931979,57.951155940273736],[-124.9301308589316,57.9509763854932],[-124.93011692444153,57.95079793516679],[-124.9301030220097,57.95061836350308],[-124.93009545651708,57.950438842719215],[-124.93009637205733,57.950258268396155],[-124.93011415365166,57.9500789510669],[-124.93016144256838,57.94990211378067],[-124.93022985332753,57.94972544598085],[-124.93028981456813,57.94954871039563],[-124.93034135832676,57.94937078566853],[-124.93040551095943,57.949195205355345],[-124.93048441640394,57.94902086501201],[-124.93056965765494,57.94884657547861],[-124.93065067377584,57.948672252042485],[-124.93072957698521,57.94849791165042],[-124.93081270376305,57.94832360511906],[-124.93089371762935,57.9481492816317],[-124.93096420198859,57.947973752085254],[-124.93101362827413,57.94779581045934],[-124.93103140432724,57.947616493474555],[-124.93101749870307,57.94743692251039],[-124.93100359321178,57.9472573515788],[-124.93101503281713,57.94707798389444],[-124.93106023354335,57.94690000855085],[-124.9311075459019,57.946722050158264],[-124.93112532099914,57.94654273336446],[-124.93110507920292,57.94636311181514],[-124.93107424555657,57.94618452699463],[-124.93103918816304,57.94600590833289],[-124.93099776317744,57.945828360255845],[-124.9309542584794,57.94564967390023],[-124.9309086103075,57.94547209199166],[-124.93086510644564,57.94529340567406],[-124.9308237149673,57.945114736313535],[-124.93078865976207,57.944936117787606],[-124.93077050048866,57.94475763479272],[-124.93076715686725,57.944578149035074],[-124.93074691784054,57.94439852780396],[-124.9306885687468,57.944221965784685],[-124.93061329301814,57.94404638961026],[-124.93052102707043,57.943874041974524],[-124.93038844458343,57.94370810054001],[-124.93023880863741,57.94354763023648],[-124.9300764069722,57.94339042218034],[-124.92989909591604,57.94323758073203],[-124.9296983323718,57.94309240209092],[-124.92947830824635,57.94295604142505],[-124.9292432792209,57.94282741119995],[-124.92900185239984,57.94270097239915],[-124.9287625390292,57.942574550148095],[-124.92853180240787,57.94244370994151],[-124.92832247325424,57.94230294689226],[-124.92813451951615,57.94215338246441],[-124.92794227971993,57.942006026546835],[-124.92772866766067,57.94186747138132],[-124.9274915396497,57.94173882122947],[-124.9272350552773,57.94162235266639],[-124.9269721411633,57.94150919670302],[-124.9267134841696,57.941394952881815],[-124.92646132413877,57.941275152804394],[-124.92620705396976,57.94115533525477],[-124.92595272133855,57.94103775994956],[-124.92570056612821,57.940917958478316],[-124.92546124315514,57.94079265189583],[-124.9252370244264,57.94065625051687],[-124.92507033655173,57.94050236685972],[-124.9250479511058,57.940324971219816],[-124.92509742740515,57.940145911868],[-124.9250983346363,57.93996646089754],[-124.92505486476345,57.939787773722486],[-124.9250050282613,57.93961015683389],[-124.92496325893897,57.93937203788522],[-124.92495398848503,57.93925307209509],[-124.92501395782504,57.93907634083617],[-124.92507181498308,57.93889959255486],[-124.9251317832053,57.93872286130869],[-124.92519175086373,57.93854613006845],[-124.92525382954678,57.938369415859675],[-124.92531379606766,57.93819268463037],[-124.92537587359338,57.93801597043046],[-124.92544425315782,57.93784042865521],[-124.92552107827974,57.937664954962315],[-124.92559998217465,57.93749061963038],[-124.92568099686724,57.93731630130254],[-124.92576201080854,57.937141982957336],[-124.9258409124886,57.93696764757883],[-124.92591562247546,57.93679215680368],[-124.92599033176484,57.93661666601917],[-124.92606923128365,57.936442330601864],[-124.92615235301243,57.93626802919231],[-124.92623125104828,57.936093693743],[-124.9262954322471,57.93591699651529],[-124.92633641901404,57.93573899084955],[-124.92634998881196,57.935559642752146],[-124.92633822142751,57.93538009059088],[-124.92631167427872,57.935200419402776],[-124.92627453835253,57.935021784547565],[-124.92623103657864,57.934844220035956],[-124.92618331245382,57.9346666215219],[-124.92613347740891,57.934489006012555],[-124.9260857541958,57.93431140752994],[-124.92604439751933,57.93413273875323],[-124.92600937525839,57.93395412103753],[-124.92598916468009,57.93377450109465],[-124.92600273542544,57.93359515340312],[-124.9260542455685,57.93341835467403],[-124.92610789855829,57.93324045162183],[-124.92614047016124,57.933061257121985],[-124.92616456430262,57.93288311595208],[-124.92617816591732,57.93270264706331],[-124.92617273402922,57.93252314645869],[-124.92615674594062,57.93234356083282],[-124.92612383605292,57.932164960494084],[-124.92605916193038,57.93198946903505],[-124.92594788138838,57.93181921000049],[-124.92581532955272,57.93165438747051],[-124.92570613026771,57.93148526665623],[-124.92562031529887,57.93131072627175],[-124.92553446908111,57.93113730720914],[-124.92542741578262,57.93096708193415],[-124.92528213814549,57.930804399575116],[-124.9251198122422,57.930647187590274],[-124.92496388525795,57.930487783834685],[-124.92481221393564,57.930327292643845],[-124.92467967233729,57.930162469242795],[-124.92456414913941,57.92999329665435],[-124.92445284919748,57.9298241580719],[-124.92433307378192,57.92965607261061],[-124.92422177587756,57.929486933895],[-124.92416984588341,57.92930930157632],[-124.92417286834888,57.92912986969937],[-124.92416533549024,57.92895035264388],[-124.92415780270355,57.92877083562177],[-124.92421564802956,57.9285940896266],[-124.92432399711555,57.92842335931819],[-124.92444913715119,57.92825612928219],[-124.92459103587622,57.9280935208113],[-124.92475180412794,57.92793555088282],[-124.92493348860047,57.92778447913891],[-124.92513608914176,57.92764030549064],[-124.92534492491886,57.92749954665077],[-124.92555587010288,57.927358804524964],[-124.9257772083454,57.92722375387493],[-124.92601312951842,57.92709555001374],[-124.92625739681603,57.92697077781165],[-124.92650370940855,57.926848264864525],[-124.92675209932595,57.926726889819946],[-124.92700048763993,57.92660551432773],[-124.92725514313582,57.926486432049344],[-124.92752009573806,57.92637640496762],[-124.92776016352109,57.92625047478631],[-124.92791879968055,57.9260924843572],[-124.92804602686482,57.925925268335796],[-124.92821722986154,57.92577074350953],[-124.9283988899538,57.92561966738434],[-124.92858684923351,57.92546976329214],[-124.92878523352655,57.925324429162224],[-124.92899612169687,57.92518480325112],[-124.92922786128007,57.92505431736312],[-124.92948457813236,57.924936369319276],[-124.92975987595598,57.92483315078694],[-124.93005986406175,57.92475256186564],[-124.93038834983831,57.92470921367639],[-124.93071680297204,57.92466698601835],[-124.93103716272664,57.92461235508995],[-124.9313576808823,57.924552116699765],[-124.93167404010057,57.92448960101761],[-124.93199439695348,57.92443496779817],[-124.93232284588855,57.92439273619369],[-124.93265513376518,57.92436399366599],[-124.93299148365449,57.92434089081139],[-124.93332578594237,57.924315527532755],[-124.9336619124041,57.92430027236104],[-124.93399960900959,57.924304095996206],[-124.93433890805046,57.924325877087114],[-124.93462445251714,57.924381996930954],[-124.93466391184182,57.9241815471981],[-124.93457750010786,57.92402719802298],[-124.93426550336618,57.92393609712288],[-124.93408599731158,57.92378885417946],[-124.93394288429164,57.92362395669463],[-124.93371013515782,57.923493111168206],[-124.93342136321756,57.92340219414429],[-124.93311749931925,57.92332237157889],[-124.93282661938075,57.9232314363817],[-124.93254223220829,57.92313494459977],[-124.93226436971601,57.92303177493883],[-124.93199725344657,57.92292196127875],[-124.93173442388019,57.92280993826702],[-124.93146951702964,57.922696776486454],[-124.93120451616544,57.92258697820254],[-124.9309244550596,57.92248715288538],[-124.93064225286105,57.9223884313864],[-124.93037732037203,57.92227638882057],[-124.93011670652722,57.92216101563002],[-124.92984957080398,57.922052319100644],[-124.92956088309475,57.921959151176914],[-124.92926132423142,57.92187711118193],[-124.9289531324223,57.921801730665486],[-124.92864056081251,57.92173192217417],[-124.92831692583069,57.92167996942936],[-124.92798206723901,57.92165147902137],[-124.9276404295607,57.92163863549571],[-124.92729882410062,57.92162466975979],[-124.92697455200474,57.92159514045044],[-124.92673729837507,57.92147546237037],[-124.92652818866341,57.921331335601835],[-124.926321159165,57.92118834686893],[-124.9261012754228,57.92105198376746],[-124.92585347494943,57.92093221912273],[-124.92558210703287,57.92082460147985],[-124.92529996337608,57.920724747505844],[-124.92501356798095,57.920625980219896],[-124.9247206179046,57.920535010556506],[-124.92441436435729,57.920466364677246],[-124.9240863003863,57.92042221697605],[-124.9237471066818,57.92039816720512],[-124.9234095745914,57.92038983227569],[-124.9230736073614,57.9204005761964],[-124.92273728662094,57.920423653922505],[-124.92240102972765,57.92044448813625],[-124.92206528670091,57.92044738019119],[-124.9217277223917,57.920440162332845],[-124.92139022253212,57.92043070095591],[-124.92105486559133,57.92042013448425],[-124.920717462621,57.92040730740864],[-124.92038005988083,57.920394479478816],[-124.92004480014717,57.92038054647107],[-124.91970746229683,57.920365474175824],[-124.91937009249665,57.92035152235791],[-124.91903275517704,57.92033644835496],[-124.91869749645983,57.92032251195805],[-124.91836012741973,57.920308557583624],[-124.91802272636967,57.92029572368591],[-124.91768740384916,57.920284027409615],[-124.91734993868796,57.92027343446986],[-124.91701215081265,57.92027405398024],[-124.91667403992105,57.92028588593832],[-124.9163378455232,57.92030446218714],[-124.91599931397747,57.92033086972838],[-124.91566561738443,57.92033600548978],[-124.91533711205687,57.92030753487609],[-124.91500906012887,57.920263364833524],[-124.91468334605477,57.920211361868986],[-124.91435763288139,57.92015935811107],[-124.91403182347126,57.92011071754847],[-124.91370809307051,57.92006321472903],[-124.91338231773167,57.92001345125384],[-124.91305862139649,57.91996482553218],[-124.91273275051608,57.919918424461144],[-124.91240489960536,57.919867520051284],[-124.91207717933078,57.919812129522334],[-124.91174712235538,57.91976457025179],[-124.91142268377455,57.91974173112533],[-124.9111024993594,57.91979070797719],[-124.91078559339837,57.919872237096676],[-124.91046469336598,57.91987297804162],[-124.91014096951714,57.91982546656739],[-124.90981770154917,57.919762255715185],[-124.90948998600216,57.91970685882897],[-124.90915964050613,57.919669385105685],[-124.90882491194044,57.91963748263277],[-124.90849232701385,57.919604475283144],[-124.90816633467543,57.91956254837187],[-124.90786028208123,57.91948825787907],[-124.90758053401721,57.919380534537595],[-124.90726509719542,57.91933869195622],[-124.90692510926948,57.91934263256527],[-124.90658469746566,57.91936114955608],[-124.90624639584034,57.91937968300371],[-124.90590783291576,57.919407186206776],[-124.90558968942548,57.91945840977913],[-124.90529589214286,57.91954348049437],[-124.90501631221308,57.919647734545656],[-124.90476422093425,57.91982287451611],[-124.9044980519697,57.91990144108509],[-124.90423109778364,57.920006918977606],[-124.90396417477959,57.920111275019835],[-124.90365098143118,57.920209641830006],[-124.90324922040108,57.92008744602927],[-124.90302856095767,57.92005310313041],[-124.90249873092404,57.920268572616344],[-124.90222858022388,57.92012166105517],[-124.90195521021118,57.91986817077908],[-124.90175662608793,57.919728577662106],[-124.90159246680238,57.91956683615458],[-124.9014218463721,57.91940952756704],[-124.9012384005446,57.91925772098173],[-124.90105917718975,57.919105948984665],[-124.90089700302873,57.918948709433955],[-124.90073908395422,57.918790383213974],[-124.9005535006529,57.91863967969498],[-124.90036148909986,57.918492287656136],[-124.90017162229535,57.918343791461695],[-124.89997964654566,57.91819527759427],[-124.89978978274792,57.9180467809017],[-124.89959777721427,57.917899387853716],[-124.89940577318539,57.91775199455165],[-124.89921591389083,57.91760349711011],[-124.89902394569302,57.917454981980505],[-124.89882983578727,57.91730757047631],[-124.89863783778861,57.91716017615871],[-124.89845441416723,57.91700836609728],[-124.89829222709308,57.9168522450428],[-124.8982365119013,57.9166644781812],[-124.89820222921577,57.91646567265616],[-124.89787168598038,57.916364238304354],[-124.89757688875382,57.916267585311076],[-124.89693409167384,57.91623310305875],[-124.89673851615942,57.916136148127045],[-124.89633537335592,57.91606327010465],[-124.89606705813452,57.91592757738334],[-124.89595417970716,57.91574606549787],[-124.89576239846618,57.91559193935798],[-124.8955598368785,57.91544557472719],[-124.8953335698046,57.915315837114505],[-124.8950643082592,57.915212660737176],[-124.8947606578535,57.91513050876333],[-124.89444840292047,57.91505389264694],[-124.89415336102107,57.91496620276055],[-124.89391440718883,57.914837479014565],[-124.89361053144007,57.91476317368011],[-124.8932848286023,57.91471336134491],[-124.89295230085601,57.91468031537661],[-124.89261977369397,57.91464726857936],[-124.89228704898052,57.91462094886012],[-124.89195171900525,57.91461143052344],[-124.8916137502781,57.9146198348669],[-124.89127594666378,57.91462263176536],[-124.8909399226113,57.91463665855056],[-124.89060353450714,57.91466301898014],[-124.8902676421746,57.91467255880055],[-124.88992993726559,57.914671988334135],[-124.88959249719068,57.91466244647427],[-124.88925123416344,57.914639412764316],[-124.88888903478986,57.91461059558724],[-124.88875681860866,57.9145848176836],[-124.88859512320795,57.914342326236294],[-124.88853708485321,57.9141635087372],[-124.88828556038914,57.91403242673085],[-124.88815541274948,57.91386534481904],[-124.88799331512095,57.91370809042555],[-124.88781420480278,57.913555180179145],[-124.88761593860973,57.91340771770307],[-124.88740474766577,57.91326911972815],[-124.8871721581718,57.913140436991036],[-124.88692466651275,57.913016115699534],[-124.88667282345457,57.912896243949675],[-124.88642098200141,57.912776371738815],[-124.88615839229597,57.91266313872977],[-124.8858936940503,57.91254988756811],[-124.88564825417836,57.912427824257506],[-124.88543925254062,57.91228699833388],[-124.88524954242257,57.912136239213766],[-124.88504694063828,57.91199322306723],[-124.88478439377911,57.91187886612955],[-124.88447462876537,57.91179103143707],[-124.88430560817586,57.91172568517305],[-124.88432990513583,57.911475773920955],[-124.8843183458354,57.91129622260905],[-124.88427506953,57.911118648846],[-124.88419371331092,57.91094412088538],[-124.88408904783203,57.91077276239574],[-124.88395678682858,57.91060678058414],[-124.8838011173414,57.91044733203974],[-124.88363486593147,57.91028891622995],[-124.88347705585853,57.910130570985814],[-124.88334262326775,57.90996681360916],[-124.88329295662915,57.90979142932633],[-124.88327510621686,57.90961070386041],[-124.8831810649372,57.90943719072519],[-124.88306582529265,57.909266864552606],[-124.88296116961719,57.909095505476074],[-124.88291358252616,57.90892126021454],[-124.88297795409459,57.908743467592124],[-124.88298961094321,57.90856411131408],[-124.8829569600732,57.908384383483224],[-124.88290103428632,57.908206703642435],[-124.8828133944385,57.908031000972954],[-124.88270887655912,57.90785515668845],[-124.88260221650528,57.907680415960954],[-124.88251662250025,57.9075069735071],[-124.88246893955075,57.90733609229532],[-124.8825727975329,57.90717882002508],[-124.88279460418835,57.90702926664768],[-124.88285468688807,57.906853681652635],[-124.88290224346632,57.906673505264045],[-124.8830461836535,57.90651656894582],[-124.88324467716495,57.906370184209685],[-124.88338878116554,57.906207641042066],[-124.88352451145295,57.90604278439172],[-124.88366650324473,57.90588022329314],[-124.883846169677,57.90572807207743],[-124.88404890863528,57.90558060031897],[-124.88412780435561,57.905410780635755],[-124.88410998526966,57.90522893480069],[-124.88399468778628,57.90506085278656],[-124.88381583448093,57.904901210715224],[-124.88373848031723,57.90473456809728],[-124.88378583038222,57.90456111961376],[-124.88386067215089,57.90438565838659],[-124.88395031405061,57.904209199600075],[-124.88401919128131,57.90402135097369],[-124.88408324992423,57.903853650451666],[-124.88405274079875,57.90367282014376],[-124.88392670070286,57.90351137777168],[-124.88366428296993,57.903394777030485],[-124.88347248192258,57.90324512039353],[-124.88323986799182,57.903119796040386],[-124.8829558266272,57.90302095787794],[-124.88266311534227,57.90292989743451],[-124.88235979098378,57.90284099043882],[-124.88203724870696,57.902759772487386],[-124.88172749852296,57.902674174843014],[-124.88145605518291,57.90257768241498],[-124.88127612423006,57.90245504027414],[-124.88131119224572,57.90226915244514],[-124.88135690758683,57.90207998934255],[-124.88137278914131,57.90190066988874],[-124.88135495169435,57.901719945648374],[-124.88132860973748,57.90154139315717],[-124.8814432372952,57.90137636221979],[-124.88160417249082,57.90121508487461],[-124.88174826383603,57.90105254435253],[-124.88188612550188,57.900886586669394],[-124.88199247738197,57.90071587802946],[-124.88203989706928,57.90054018829296],[-124.88205158916286,57.90035971232758],[-124.88205695286754,57.900179183268136],[-124.88203466091302,57.900006273110904],[-124.88201273563702,57.899821028703315],[-124.88198642520473,57.89964135539632],[-124.88193051699373,57.8994636767622],[-124.88186613848933,57.89928704858697],[-124.88191559969555,57.89911361946141],[-124.88198411128236,57.89893810714726],[-124.88202319132759,57.898758983009735],[-124.88205805232889,57.89857982347631],[-124.88208233305637,57.89840169672083],[-124.88208977233828,57.89822230703145],[-124.8820423362845,57.89804357824323],[-124.88203501061565,57.89786406465827],[-124.88203401287389,57.897684604234506],[-124.88203512441731,57.897505161553354],[-124.8820299081533,57.89732566577758],[-124.88196128101355,57.89715012391593],[-124.88179717201712,57.896992847006395],[-124.88163942543049,57.89683450177255],[-124.88154324773565,57.89666321465674],[-124.88158865517163,57.89648414422018],[-124.88156221579248,57.8963089566261],[-124.88149781108532,57.89613345014388],[-124.88146517812395,57.895953724267336],[-124.8814388396801,57.895775172865534],[-124.88140195564408,57.89559653289558],[-124.8813248979522,57.89542092014306],[-124.88130488799227,57.89524242197456],[-124.88132287604776,57.8950631215189],[-124.8813514095741,57.89488390969479],[-124.88136728811818,57.894704591579426],[-124.88136636030478,57.894522889154665],[-124.8813864568217,57.89434360654371],[-124.88148017127384,57.89417167186171],[-124.88163283911689,57.89400359706742],[-124.88173261225529,57.89384068574226],[-124.88148740786374,57.89371525326581],[-124.88119042104942,57.89362864019093],[-124.88087368720926,57.893567656593795],[-124.88054584212492,57.893525645518466],[-124.88021093661952,57.89350824880728],[-124.87987342176544,57.89350765286214],[-124.87953303003813,57.89353282798339],[-124.87921810819743,57.89348194981283],[-124.87897295272678,57.89342605047428],[-124.87884502672004,57.893258980803125],[-124.87855150316206,57.89326884606072],[-124.87833186618641,57.89334774899412],[-124.8781697741556,57.89340694817373],[-124.87801996817929,57.893478587982614],[-124.87791659421099,57.89354949738473],[-124.87776970126613,57.89366490277256],[-124.87765795927956,57.89380415733959],[-124.87756312465712,57.89401309183887],[-124.87733353968245,57.89414238012607],[-124.87716528407967,57.89426657740188],[-124.87684915538863,57.89432671911706],[-124.87652298231347,57.89436995174895],[-124.8761946324207,57.894415408362484],[-124.87586839083693,57.89446088197545],[-124.87554218196864,57.8945052335011],[-124.87520813915339,57.894529329738035],[-124.87487412943423,57.89455230384753],[-124.87454199367923,57.894583143977734],[-124.87420972320535,57.894618468440356],[-124.87387383785007,57.89463357317964],[-124.87354183481263,57.894659925658],[-124.87321759629901,57.89470877450135],[-124.87289526456351,57.89476436815043],[-124.87257299906094,57.894817718442944],[-124.8722429009955,57.89485081328561],[-124.87190878577617,57.89487714383385],[-124.87157487182374,57.894896745806584],[-124.8712371764947,57.89490173441766],[-124.87089958200373,57.894903358303985],[-124.87056202113621,57.894903860045034],[-124.87022432560914,57.894908846087475],[-124.86988676468343,57.8949093461167],[-124.86955164969994,57.89489865030593],[-124.86921412254948,57.89489802734085],[-124.8688766628158,57.89489516094237],[-124.86853933798484,57.89488780853322],[-124.86820459452683,57.894864775155455],[-124.8678744745091,57.89482832134043],[-124.86754438887327,57.89479074541998],[-124.86721430389655,57.89475316868246],[-124.86688642997692,57.89471224521296],[-124.8665586243136,57.89466907836163],[-124.86623085318364,57.89462478941721],[-124.86590743619719,57.89457605044614],[-124.86558194474804,57.89452617143458],[-124.86525859706983,57.89447518831731],[-124.8649373931823,57.89442310111031],[-124.86461408109207,57.89437099514605],[-124.86429073605818,57.89432000968673],[-124.86396739190037,57.89426902344492],[-124.86364187181962,57.89422026099377],[-124.86331846166236,57.89417151575501],[-124.86299294326577,57.894122751722264],[-124.86266739182567,57.89407510818283],[-124.86234187510648,57.89402634256335],[-124.86201629141814,57.89397981872295],[-124.86169070853477,57.893933294088555],[-124.86136505860497,57.89388901123216],[-124.86103730038094,57.893844709539536],[-124.86070947503828,57.89380264961338],[-124.86038161647348,57.893761710167375],[-124.86005158163948,57.89372299442915],[-124.85972151351002,57.89368539915968],[-124.85939144604,57.893647803073485],[-124.85906134523536,57.893611327455446],[-124.85873121106668,57.89357597230541],[-124.85839883242107,57.89354508339338],[-124.85806393699626,57.89352763097887],[-124.85772686477435,57.893512402197224],[-124.85738979282523,57.89349717256252],[-124.85705472802609,57.89348532403247],[-124.85671724782634,57.893483548107234],[-124.85638129744213,57.893500851272414],[-124.85604544900049,57.89351478973803],[-124.85570786630255,57.893516375106586],[-124.85537038588801,57.893514595767584],[-124.8550330078473,57.89350945172167],[-124.8546955957748,57.89350542810484],[-124.85435780829953,57.89351373775296],[-124.85401889391653,57.89355904890255],[-124.8537449660543,57.89347930201559],[-124.8534935985415,57.89335152100626],[-124.85326152143223,57.893213811478255],[-124.85304631813042,57.89307624691335],[-124.85285254824447,57.89292765091055],[-124.85268429295026,57.89277254504597],[-124.85254583836878,57.892608723208056],[-124.8524307547031,57.89243949480565],[-124.85234325962321,57.89226489626117],[-124.85219412681141,57.89210546837159],[-124.85198539741457,57.89196347167007],[-124.85176401593625,57.8918213655307],[-124.85153413195793,57.89168142883697],[-124.85128465331826,57.89156151105198],[-124.85100656217243,57.89148060102336],[-124.8506782550054,57.89145533570948],[-124.8503280027717,57.89145791947974],[-124.84998220817133,57.891452689801476],[-124.84964726672374,57.891437458816306],[-124.84931246267722,57.89141774186922],[-124.84897800190592,57.89138681128253],[-124.84864544478559,57.891362625772814],[-124.84830625253909,57.8913484762192],[-124.84797249490755,57.89136353381456],[-124.84764427411714,57.89140443476281],[-124.84731598392939,57.89144757746252],[-124.84697960082215,57.89147943350333],[-124.84664380130093,57.891492226946895],[-124.8463202991207,57.89144792567891],[-124.84603426514995,57.89135123426787],[-124.84580845122396,57.89121693070985],[-124.84559549865703,57.891076008834744],[-124.8453889431525,57.890932898951974],[-124.84518456691019,57.89078756450648],[-124.84498012342446,57.89064447232483],[-124.84476714278048,57.8905046704861],[-124.84454548732332,57.890372644057535],[-124.84426582707245,57.89027488258632],[-124.84394724467832,57.89020818667848],[-124.84376175416064,57.890066378799396],[-124.84362559500123,57.889898081354026],[-124.84352767147341,57.889721143335755],[-124.84346552974523,57.88954675927616],[-124.84343097529111,57.88936700700935],[-124.84340274754028,57.889187309730346],[-124.84335550657224,57.88900856885944],[-124.8432786054193,57.888834056587584],[-124.84318476596307,57.88866164025829],[-124.84308456664566,57.8884902901904],[-124.84298651145085,57.88831783713035],[-124.84291172215212,57.888143343098655],[-124.84282213801626,57.88796984201998],[-124.84269224782791,57.88780384152321],[-124.84257507996792,57.88763570838591],[-124.84246856007434,57.88746430303336],[-124.84242336542066,57.8872878230324],[-124.84241204791614,57.88710715134706],[-124.84220936423397,57.88697640779456],[-124.84194487538495,57.88686643616875],[-124.84176611436723,57.88671234703263],[-124.84161497421532,57.88655176859112],[-124.84148295109901,57.88638687008034],[-124.84135314130785,57.88621862600469],[-124.84124237924178,57.88604830448638],[-124.84120344881146,57.88587412193751],[-124.84128062951581,57.885696463876656],[-124.84140388773893,57.885529301008795],[-124.84159413620085,57.885378423053105],[-124.8416920891802,57.885211039775655],[-124.84171033011643,57.88502950401678],[-124.84169476511505,57.88484991726627],[-124.84170450270899,57.88467055072378],[-124.84176283983952,57.88448824239217],[-124.8417618619259,57.88431439052606],[-124.8415745072094,57.884165834498184],[-124.84140426355474,57.88400957616616],[-124.84129350775677,57.88383925507859],[-124.84121030127979,57.88366468747992],[-124.84120739005166,57.88348521105847],[-124.84121747477678,57.88329463211972],[-124.84098616305955,57.8832040142526],[-124.84064172330433,57.883157273436574],[-124.84038372936621,57.883042869164406],[-124.84015369946282,57.882910762966155],[-124.8399407804935,57.88277095452326],[-124.83972357714129,57.88263335153608],[-124.8395106613382,57.88249354244506],[-124.83931907318288,57.88234606802345],[-124.83914456117054,57.882192012856784],[-124.83898283924367,57.882033582766354],[-124.83884234081336,57.88187085137368],[-124.83874010555233,57.88169835957753],[-124.83862933401463,57.881529157944975],[-124.83845901071685,57.88137626006762],[-124.83824185542966,57.88123753359511],[-124.8380247017428,57.88109880678828],[-124.8378117663113,57.880960116465964],[-124.83759243824585,57.88082361311337],[-124.83735818044282,57.88069258682516],[-124.83708949865971,57.88058369069684],[-124.83680367487139,57.88048361674861],[-124.83650675666823,57.88040139026838],[-124.83617167634668,57.880393974405244],[-124.83586473211716,57.88036325088841],[-124.83563065659017,57.8802266153046],[-124.83535984016218,57.88011881855668],[-124.83506524444239,57.880029879761224],[-124.83478572033941,57.87993097815845],[-124.83452354978041,57.879816525994556],[-124.83427634692062,57.87969547501163],[-124.83404214240382,57.87956332177758],[-124.8337581995596,57.879471108699],[-124.83344187018153,57.8794032856097],[-124.83311634442184,57.87936005559709],[-124.8327841123097,57.87932910320129],[-124.83245430193729,57.87928807711794],[-124.8321443011279,57.87922030644027],[-124.83184318661857,57.87913803266594],[-124.83154425124384,57.879053534204076],[-124.8312518507035,57.87896236305331],[-124.83095067057144,57.87888232980321],[-124.83062041335042,57.878855875582595],[-124.83028590534673,57.878830504746524],[-124.82998255042956,57.878752693308776],[-124.82971608172598,57.87864155852848],[-124.82951512441426,57.87859380710402],[-124.82934121149911,57.878354505402676],[-124.82927082616708,57.87817667881224],[-124.8292320987309,57.87799800914073],[-124.82922717175812,57.87781739370287],[-124.82926222970646,57.87763937317289],[-124.82931626047042,57.877461519563184],[-124.82939133703661,57.877284972651466],[-124.82949157075336,57.87711313325845],[-124.82962525428648,57.87695056051367],[-124.82979249185287,57.87679389053778],[-124.82997019874571,57.8766395555608],[-124.83014997741547,57.87648636015942],[-124.83036186325765,57.87631774484777],[-124.83046128888162,57.876171693814605],[-124.83056569601771,57.87600101211818],[-124.83066381292046,57.875829153545155],[-124.830759855721,57.87565615515224],[-124.83086007885652,57.875484315016415],[-124.83095193867457,57.87531015825079],[-124.8310500520143,57.87513829951502],[-124.83117957544415,57.87497344599386],[-124.8313322507164,57.87480991726409],[-124.83149954126857,57.874651002976165],[-124.83168759690557,57.87450236487086],[-124.83191911805565,57.874379903966286],[-124.83223971464358,57.874308694605546],[-124.83251884638626,57.8742146895074],[-124.8326757286424,57.87405119635011],[-124.83272970337511,57.87387446326605],[-124.83276056001664,57.873695284301505],[-124.83278298473131,57.87351603140717],[-124.83280122819363,57.873335620310066],[-124.83282790303362,57.87315528319717],[-124.83286715537565,57.87297729954715],[-124.83293163225899,57.87280178026779],[-124.83302762216955,57.87262990203043],[-124.83313836614857,57.872458153138034],[-124.8332385351753,57.8722874330292],[-124.83331354829627,57.872112006097254],[-124.83336969455516,57.871933049079445],[-124.83340483165718,57.87175166477564],[-124.8334082472115,57.87157336707358],[-124.83335457871037,57.8714001767234],[-124.83320785567385,57.871236264471],[-124.8331083505672,57.87097743381753],[-124.8329652429846,57.87090103447356],[-124.83276738142106,57.870754618174296],[-124.83254595380619,57.870620331952615],[-124.83232031229353,57.8704860083887],[-124.83210749265345,57.870346189203204],[-124.83190535233256,57.87020197720818],[-124.83172449942211,57.87005122248151],[-124.8315734689537,57.86989063539397],[-124.8314394753136,57.869724589992785],[-124.8313351992471,57.86955207615332],[-124.83123520908926,57.869377356790025],[-124.83109458252507,57.869221346834955],[-124.83080022137638,57.869127914598124],[-124.83053174552612,57.86901564277953],[-124.83035294180507,57.86886714739477],[-124.83021045697653,57.86870326931806],[-124.8300594732046,57.86854155948567],[-124.82989781327412,57.86838424182958],[-124.82973404708339,57.86822690546536],[-124.82957024741202,57.8680706901728],[-124.82940223391323,57.86791443761888],[-124.82923207936551,57.867759287580114],[-124.82905764134087,57.86760634274731],[-124.82887898959892,57.86745336060841],[-124.82869823174991,57.86730035970019],[-124.82850890565155,57.867151769330576],[-124.82831104622426,57.867006468214726],[-124.82809822623867,57.86686776436233],[-124.82787687302195,57.86673234966098],[-124.8276490941269,57.866600242637006],[-124.82741281696147,57.86647030343661],[-124.82717432916623,57.86634370899203],[-124.82693159305457,57.86621819821842],[-124.82668664627178,57.86609603216726],[-124.82641381462396,57.86598932144218],[-124.82611060608359,57.86591038096093],[-124.82578973494799,57.8658570796185],[-124.8254623674554,57.86580932791195],[-124.82514813531544,57.86574598964508],[-124.82484489639938,57.86566816754308],[-124.8245460836355,57.86558365453292],[-124.82424720220239,57.86550138334596],[-124.82394403714537,57.865421316723655],[-124.82364305086944,57.86533902556439],[-124.82333774593013,57.86526006018362],[-124.82303012458779,57.86518780292214],[-124.82271361903791,57.865130046516676],[-124.8223859812839,57.8650912572177],[-124.82205167121634,57.86506362356156],[-124.82171739671934,57.86503486782396],[-124.82138758321392,57.86499829989074],[-124.82105777034894,57.86496173114139],[-124.8207280985617,57.86492067660831],[-124.82040731371333,57.86486511985676],[-124.8200883562,57.8648185509577],[-124.81975064270843,57.86483237877739],[-124.81941858487936,57.86480027224198],[-124.81908642214228,57.86477152860273],[-124.81874877904075,57.86478311139629],[-124.81841461181826,57.86481827683032],[-124.81811704035877,57.86489638557482],[-124.81784176943445,57.865002730672],[-124.81752779356192,57.865066112171846],[-124.81719776711878,57.86510355450325],[-124.81686384217713,57.865130867365565],[-124.81653181277693,57.86516492558327],[-124.81621179299154,57.86521927782032],[-124.81589173702892,57.86527475053171],[-124.81556177765829,57.865309946331095],[-124.81524997337766,57.865371098755276],[-124.81491228843902,57.865383793061376],[-124.8145730958088,57.865377406639745],[-124.81424107289197,57.865344165924576],[-124.8139202586946,57.8652897147501],[-124.81359098036133,57.865236308874636],[-124.81326384572587,57.86518179974511],[-124.81293892549051,57.86512394489713],[-124.8126183978585,57.86506052067598],[-124.81231072799417,57.86499048112714],[-124.81201387930874,57.86491156504431],[-124.81173853050848,57.864819381655366],[-124.81151278566252,57.86469175105],[-124.81132796760375,57.86453644685335],[-124.8111496501979,57.86437559272538],[-124.81094551479381,57.864231330949224],[-124.81068770530385,57.86411799259629],[-124.8103782935276,57.86403671742546],[-124.81005089055044,57.86399117036814],[-124.80972070771826,57.863966907172994],[-124.80938602702129,57.86395157534264],[-124.8090469191392,57.86394293236742],[-124.8087098833067,57.863935428635685],[-124.8083707402489,57.863927905174805],[-124.8080317037856,57.86391701713738],[-124.8076971307084,57.86389831734752],[-124.80736494936902,57.863870665710756],[-124.8070330171293,57.86383516458633],[-124.80670333496998,57.86379519658939],[-124.80637376011693,57.863751864066884],[-124.80604636445885,57.863706307169004],[-124.80571686224944,57.863660730550265],[-124.80538946817806,57.86361517204013],[-124.80505986083737,57.86357295750739],[-124.80473221923432,57.86353524603717],[-124.8044022929839,57.86350312100309],[-124.80407001073749,57.863478824859094],[-124.80373958695488,57.86346239548461],[-124.80340459256392,57.8634571397379],[-124.80306720586675,57.86346083407263],[-124.80272953395345,57.863473497435386],[-124.80239168354399,57.863491766118244],[-124.8020557261568,57.863516780331025],[-124.80171758964083,57.86354401718578],[-124.80138363162422,57.86357241238945],[-124.80105385208554,57.86360196597353],[-124.80072982279205,57.86364951549235],[-124.80041572227553,57.863716220228554],[-124.79999968202051,57.86380667905458],[-124.79968347154814,57.86387336306487],[-124.79961128552108,57.863889535129275],[-124.79936933156766,57.86394118658132],[-124.79904936893087,57.86399325500058],[-124.79871783415305,57.86401157143339],[-124.79837879973032,57.86400065879828],[-124.79803976550404,57.86398974529925],[-124.79770498198222,57.863977747790685],[-124.7973680913175,57.86396573039011],[-124.79702884281507,57.86396154172309],[-124.79668527220497,57.8639606777733],[-124.79635266839578,57.86394645345414],[-124.79603371257784,57.86390094817277],[-124.79573930075517,57.863813045069776],[-124.79545153507775,57.86371510745945],[-124.79514840976536,57.863636096614734],[-124.79483649760869,57.863568221061314],[-124.79451797748435,57.863509257363404],[-124.79419731513381,57.8634513950397],[-124.79387672558289,57.8633912894807],[-124.79357992813314,57.863312332403595],[-124.7933352162167,57.86318674163565],[-124.79309797760463,57.863025328350034],[-124.79286464215447,57.863005266407406],[-124.79263274048641,57.86313774901838],[-124.79241051094314,57.86329723646349],[-124.79220774884094,57.86344119849124],[-124.79201541396121,57.86358861960198],[-124.79181682749207,57.86373374057865],[-124.79161613214426,57.86387884213958],[-124.79141547123123,57.864022822186335],[-124.7912106300428,57.864165642424176],[-124.79099539441572,57.86430388168172],[-124.790759407423,57.86443183796856],[-124.79050059766983,57.86454837077831],[-124.79021714592771,57.86464449094333],[-124.78992137260045,57.86473040440752],[-124.78961531317266,57.86480837272552],[-124.78932164458972,57.864894304043396],[-124.78905668524028,57.865005170400046],[-124.78880822306319,57.86512740206095],[-124.78855143778182,57.865246192815],[-124.78831961536845,57.86537530451028],[-124.7882254391507,57.86555053208489],[-124.78804997358203,57.86569698010227],[-124.78780778984893,57.865820388807556],[-124.78754474649894,57.865936877630936],[-124.78728177373398,57.86605112347962],[-124.78701269363683,57.86615858377509],[-124.78673325521983,57.866260341276096],[-124.78645385142387,57.86636097696643],[-124.78618887331479,57.86647183777869],[-124.78594453485708,57.86659634519823],[-124.7857147665479,57.866726592998916],[-124.78549742476118,57.866863683255495],[-124.78528008139224,57.86700077317638],[-124.78505648620553,57.86713556255755],[-124.78483081806387,57.86726921109837],[-124.7846030769657,57.867401718787754],[-124.7843691201999,57.86753080463306],[-124.7841248050576,57.86765418761078],[-124.78387423804503,57.86777526989459],[-124.78362163428582,57.86789408998333],[-124.7833669575817,57.86801176910016],[-124.78311017170411,57.86812942846802],[-124.78284927776578,57.8682436850885],[-124.78258227695034,57.86835115594547],[-124.78229870386566,57.86844950208658],[-124.78200491766631,57.868537660047274],[-124.78170295357816,57.86861789152604],[-124.78134945901,57.868661760208],[-124.7810749278207,57.86874111997875],[-124.7808713307872,57.86890861148331],[-124.78088470931968,57.86908145560867],[-124.78081556315666,57.86926363774802],[-124.78069397910451,57.8694374883941],[-124.7805850399111,57.869611454854486],[-124.78058577133994,57.869784183240014],[-124.78065394862884,57.869957529738436],[-124.78073059362116,57.87012983224914],[-124.78081984922622,57.8703033718556],[-124.78091542879038,57.87047696936445],[-124.78101733240148,57.87065062476206],[-124.7811277041731,57.870823236102964],[-124.7812423650205,57.870993643516854],[-124.78135913465644,57.871164070165136],[-124.78148019343793,57.87133229286618],[-124.78160132586181,57.87149827300839],[-124.78180124522073,57.87164029979623],[-124.7820437207464,57.87177037852889],[-124.78223074262478,57.87192013763214],[-124.78239647042615,57.87207643106652],[-124.78254086771848,57.872240380154835],[-124.7826577558466,57.87240744216078],[-124.78276399711879,57.87257777140895],[-124.78286387958723,57.87274916400421],[-124.78295736693211,57.87292274120233],[-124.78304663941913,57.873096279812415],[-124.78313380485936,57.87326979911828],[-124.7832125033511,57.87344436254352],[-124.78328062689388,57.8736199508308],[-124.78334660694215,57.873796641084915],[-124.78341047970046,57.87397331206751],[-124.78347649720433,57.874148881078995],[-124.78353822701516,57.87432665403692],[-124.78359788569374,57.87450328648777],[-124.78365754493205,57.87467991894399],[-124.78372352860627,57.8748566092036],[-124.78379165708701,57.875032197484025],[-124.78387036231193,57.875206760836214],[-124.78396604081382,57.87537811453943],[-124.78408498058215,57.87554743758089],[-124.78420817364132,57.87571567781773],[-124.78432289953152,57.87588496218851],[-124.78440378943095,57.87605730214484],[-124.78439974320453,57.87624793306454],[-124.78440231069432,57.8764296518243],[-124.78454109700363,57.87657223804328],[-124.78482900493925,57.87666795804934],[-124.78514010306729,57.87676388912396],[-124.78546290059857,57.87682403579645],[-124.7857705087105,57.87689750201095],[-124.78602404221367,57.877013094157356],[-124.78626885574968,57.8771375789056],[-124.78655655557003,57.87724002271144],[-124.78676110163421,57.87737086885695],[-124.78682485195438,57.87755202383901],[-124.78693748708373,57.87772128705853],[-124.78706284425547,57.877888422996335],[-124.78720306787727,57.87805232957814],[-124.78734122068721,57.87821509558294],[-124.78745386012147,57.8783843584809],[-124.7875579956781,57.87855578698929],[-124.78765580765062,57.878727157835186],[-124.7877535844092,57.87889964988851],[-124.78785557845744,57.87907218030209],[-124.78795546523384,57.87924469146899],[-124.78804899218066,57.87941826624884],[-124.78813201495302,57.879590623762965],[-124.78800890066198,57.87974652373546],[-124.78778313130802,57.87988130026431],[-124.78755321606131,57.88001379551708],[-124.78732119093964,57.88014627118165],[-124.78709752499093,57.88028106581204],[-124.78688843468417,57.880421600851484],[-124.78669813664706,57.88056791480927],[-124.7865396542028,57.880773962366284],[-124.78642674563699,57.88094004843316],[-124.78638406095591,57.88108658631932],[-124.78630367928336,57.88122492940413],[-124.78660686752099,57.88137125614572],[-124.78679431659823,57.881509797794685],[-124.78699230875854,57.88164843527176],[-124.78720088024342,57.8817860472776],[-124.78741581443933,57.881922595346786],[-124.78763707528644,57.88205920070071],[-124.78786680733056,57.8821947612555],[-124.78809868550587,57.88232921937638],[-124.78833478211158,57.882463715498375],[-124.7885729887989,57.88259823040959],[-124.78881119718844,57.88273274491321],[-124.78905151569026,57.88286727819102],[-124.78928761907432,57.883001772697476],[-124.78952372414535,57.88313626680388],[-124.78975346955554,57.88327182425312],[-124.78998114422181,57.88340624090266],[-124.79020242309728,57.8835428422013],[-124.79042588409347,57.883677219800525],[-124.79065359963502,57.8838105141007],[-124.7908791723018,57.88394491013253],[-124.79110263810027,57.88407928665147],[-124.79132181651457,57.88421586703479],[-124.79153249054743,57.88435461301972],[-124.7916813357015,57.88451410751794],[-124.79183007415143,57.88467696564685],[-124.7920086930291,57.88482887895833],[-124.79219367491622,57.884979728192796],[-124.7923808027968,57.88512947506532],[-124.79256789619906,57.885280342955724],[-124.79275077398998,57.88543117236022],[-124.79292725564098,57.885584186692384],[-124.79309312395895,57.885739347743026],[-124.79324619836433,57.885898878955004],[-124.79337804438306,57.886062703921404],[-124.79349495164467,57.88623200130154],[-124.7936033895795,57.88640234342922],[-124.79370968394153,57.886573787650114],[-124.7938202324622,57.886744148769225],[-124.79394354160151,57.88691126067322],[-124.79407746692544,57.88707622548286],[-124.7942177912356,57.88723900496506],[-124.79436022542608,57.8874018034245],[-124.79450691411182,57.887563518688935],[-124.7946557127429,57.88772525291189],[-124.7948109105404,57.88788480174465],[-124.7949830869708,57.88804113934233],[-124.79514679409172,57.88819852166343],[-124.79520861092767,57.88831011823042],[-124.7953235595603,57.88854108382325],[-124.79535788351764,57.88872084838073],[-124.79539856994255,57.88889954894415],[-124.79544136551493,57.88907826860899],[-124.79548205272252,57.88925696921293],[-124.7955206674183,57.88943452949459],[-124.79555502901391,57.8896131729036],[-124.79558513745181,57.889792899443655],[-124.79560895562417,57.88997144751225],[-124.79562852049936,57.89015107871828],[-124.79564386789846,57.89033067179991],[-124.79565714248257,57.89050912457113],[-124.79566612772979,57.89068978174932],[-124.79567725780475,57.89086933677279],[-124.79568627911422,57.89104887275164],[-124.7956974093915,57.89122842784002],[-124.79571275755858,57.8914080211137],[-124.79573025065291,57.891586512229246],[-124.79575192585841,57.891766162793175],[-124.79577785499261,57.891944730271575],[-124.79580796635965,57.89212445719452],[-124.79584022283262,57.89230308195162],[-124.79587247961177,57.892481706733896],[-124.79590259186027,57.892661433735285],[-124.7959306312982,57.89284002042273],[-124.79595230818205,57.89301967118706],[-124.79596769416925,57.89319814349618],[-124.79597671742236,57.89337767988792],[-124.79597730471204,57.89355714002342],[-124.79597367396246,57.89373656204752],[-124.79596578923928,57.89391706722879],[-124.79595583127232,57.89409643210166],[-124.79594165510524,57.89427575886141],[-124.79592533386457,57.89445618784922],[-124.7959090483439,57.894635495599154],[-124.79589058183086,57.89481702684623],[-124.79585527827342,57.89499728426191],[-124.79577182381787,57.89516589027044],[-124.79546956776132,57.89524951900017],[-124.79513507238593,57.89528574833785],[-124.79480686778864,57.8953231553793],[-124.79447265848046,57.89535041289486],[-124.79413662701457,57.895368680311094],[-124.79380070304244,57.89538358307017],[-124.7934647428543,57.895399606251786],[-124.79312688902559,57.89540888185015],[-124.79279150384635,57.89540696301786],[-124.79245418948778,57.895399417865065],[-124.79211694724485,57.89538962931896],[-124.79177977717774,57.895377597380154],[-124.7914427153569,57.895362200780156],[-124.79110565381185,57.89534680332723],[-124.79077066562157,57.89533254544508],[-124.79043338837555,57.89532387390494],[-124.79009775173967,57.89532979717051],[-124.78976339472167,57.895361527941965],[-124.78944100648363,57.895414677036335],[-124.78913684171921,57.8954915446239],[-124.78884693433386,57.895584243583166],[-124.788581757517,57.895695112497265],[-124.78833516421278,57.89581848759558],[-124.78809897056016,57.895946443315076],[-124.78786481221579,57.89607666037166],[-124.78763479831527,57.8962091579814],[-124.78745693381856,57.8963600757134],[-124.7872873239136,57.896516676418834],[-124.78712818622958,57.896675615535884],[-124.78698370310815,57.89683805280249],[-124.78685598389968,57.89700400748509],[-124.78674921105906,57.897174639340896],[-124.78666553020601,57.897348846372466],[-124.78659865010383,57.897525449692246],[-124.78656759029404,57.89770350105021],[-124.78656809662358,57.897884083300426],[-124.78657074837616,57.898063563534876],[-124.78657761869445,57.89824308224524],[-124.78659081691909,57.898422658652045],[-124.78662296272594,57.898603529348996],[-124.78667834730376,57.898783490218904],[-124.78663488406818,57.89895357760138],[-124.78646096809112,57.899112381778984],[-124.78634374933307,57.89927955374926],[-124.78628948415002,57.89945739388924],[-124.78623521845405,57.89963523403991],[-124.78615785782317,57.89980949887689],[-124.78602282003084,57.900005669963036],[-124.78591625197238,57.90016957404193],[-124.78581357611515,57.90034360799175],[-124.78570882609694,57.90051650138506],[-124.78558741700039,57.90068251318916],[-124.78543043632342,57.90083922765271],[-124.78523148306667,57.900988829465966],[-124.7849887732836,57.901121207723406],[-124.78471547049614,57.90122077984535],[-124.78441164762702,57.90128530308506],[-124.7840831626337,57.901329411573],[-124.78374441961212,57.90136445272923],[-124.78340978608459,57.9014028953904],[-124.78308122636,57.901449243960656],[-124.78274644630005,57.90149217005477],[-124.78241373864373,57.90153623587049],[-124.78209132341921,57.901588246236855],[-124.78178534732078,57.90165386549124],[-124.7815370189572,57.90176375417643],[-124.78134622900498,57.90192127645245],[-124.78110786379987,57.90204920127646],[-124.78084432845084,57.902172408850355],[-124.78056853416012,57.90228316600236],[-124.78027484324122,57.9023601104763],[-124.77995743690497,57.902387486327534],[-124.7796181712667,57.902373161632674],[-124.77927323222723,57.902338595130196],[-124.77893680457626,57.9023018625577],[-124.77860910674246,57.90225623633713],[-124.77828591995069,57.902201677829176],[-124.77796058819305,57.90214822045575],[-124.77763496593485,57.90210373247685],[-124.77730646977196,57.902082771072365],[-124.77696785945143,57.902113309926726],[-124.7766337592128,57.90213491649455],[-124.77630555507744,57.90210498243634],[-124.77598022696938,57.90205152023078],[-124.77565933765726,57.90199136838621],[-124.77534274130595,57.901929012026024],[-124.77503062047725,57.901858844819806],[-124.77471395325308,57.90179872951789],[-124.77438615534808,57.90175645674709],[-124.77405835817956,57.901714183171194],[-124.77373289046724,57.90166520058493],[-124.7734050217202,57.90162516794841],[-124.7730727519517,57.90159070199328],[-124.77274266538748,57.90155401210818],[-124.7724126526333,57.90151507886402],[-124.7720847865989,57.9014750429836],[-124.77175699446744,57.90143276375583],[-124.77142687395921,57.90139719188652],[-124.77108987642747,57.90137837986015],[-124.7707547688749,57.90136631407679],[-124.77041736888864,57.901359834325255],[-124.77007982240848,57.90135783880048],[-124.76974212931377,57.90136032750124],[-124.76940476622822,57.90135272391418],[-124.76906987954024,57.901333926270745],[-124.76873281036836,57.90131735082138],[-124.76839122900665,57.901309705659244],[-124.7680434296268,57.90129863726729],[-124.76770551658952,57.90130784842225],[-124.76739784904488,57.90135995984483],[-124.76711017279409,57.901445903946566],[-124.76683245445967,57.90154988542016],[-124.76656076888226,57.90166289509903],[-124.76628915520472,57.90177366169731],[-124.7660072868047,57.901875359860306],[-124.76570505786339,57.90195443652237],[-124.76538450468183,57.90201315363604],[-124.76506206184261,57.90206512280069],[-124.76473151152213,57.90210692149045],[-124.76440310676743,57.902147617664525],[-124.76408473305342,57.902204108694555],[-124.76377424369849,57.90227749634229],[-124.76346989734577,57.902356548382535],[-124.76316551285467,57.902436721003426],[-124.7628592756507,57.902509024450396],[-124.76253682507486,57.90256098752809],[-124.76219501235202,57.902560054082066],[-124.76187144087831,57.90251778969105],[-124.76154609280816,57.902465413474424],[-124.76122733253774,57.90240524645059],[-124.7609108304805,57.90234061321965],[-124.76060302599265,57.902268208890725],[-124.76030621341543,57.90218244682006],[-124.76000943914448,57.90209556282708],[-124.75970615303044,57.90201422558128],[-124.75938939807344,57.90195743763823],[-124.75904977433927,57.901954273236356],[-124.7587176267332,57.9019803395851],[-124.75838721811776,57.90201763745305],[-124.75805677183584,57.90205605577045],[-124.75772639892187,57.90209223073395],[-124.75739006726813,57.90211713315108],[-124.75706172856867,57.902155568687235],[-124.7567452679914,57.90221766820004],[-124.75643280297086,57.90228653396851],[-124.75611837559978,57.902350894234466],[-124.75582222805669,57.90243673522538],[-124.75553832816982,57.90253502778872],[-124.75524628556573,57.902624270744916],[-124.75493596103381,57.90269203148035],[-124.7546113513292,57.90274507692452],[-124.75428677783391,57.902797000312844],[-124.75397237966075,57.90286023427879],[-124.75369265363909,57.90295968369424],[-124.75341081661581,57.9030591127858],[-124.75312076294726,57.90315173467984],[-124.75283485258042,57.90324663799832],[-124.75255508350305,57.90334720633244],[-124.75228563754227,57.90345460051953],[-124.75202440508892,57.90356880085601],[-124.75176727856258,57.90368640404311],[-124.75151225999274,57.90380402652508],[-124.7512223075594,57.90389328055179],[-124.75090978129045,57.90396325475034],[-124.75059725385907,57.904033228220605],[-124.75029501245129,57.904111148819965],[-124.75002551731635,57.90421965978813],[-124.74975394829596,57.904327029150416],[-124.7494356086955,57.90438124275178],[-124.74910733206755,57.90435348413701],[-124.74877746839563,57.90431000714338],[-124.74844768008604,57.90426428679922],[-124.74811778064853,57.904221929443494],[-124.74779010349519,57.90417622730585],[-124.74746020557005,57.90413386832521],[-124.74712997233584,57.90410159993384],[-124.746796995159,57.904088372413376],[-124.74645893980497,57.90410089348744],[-124.74612250800543,57.90412801003569],[-124.74576363424137,57.904195292666216],[-124.74541764105315,57.904255965973725],[-124.74515461600059,57.904233298744785],[-124.74498593144014,57.904102723013075],[-124.74487404198486,57.903914358176884],[-124.74478554580706,57.903720605671886],[-124.74471965696597,57.90354501213043],[-124.74469399956395,57.903365311342625],[-124.74466412335603,57.903185570812965],[-124.74463421002113,57.9030069515754],[-124.74461066289943,57.9028272707577],[-124.74460399196491,57.90264774905972],[-124.74460368696252,57.902467165789204],[-124.74453565427498,57.90229267376349],[-124.74442739270293,57.90212228890689],[-124.74431276632204,57.90195296558412],[-124.744227822919,57.9017794356308],[-124.744164086941,57.90160274079717],[-124.74410246098813,57.90142606585962],[-124.7440238854235,57.90125147429029],[-124.74393898236737,57.90107682301626],[-124.74387099270878,57.90090120964046],[-124.74381784426362,57.90072349302829],[-124.74377524320556,57.90054587592431],[-124.74374748299144,57.900366155614485],[-124.7437239043195,57.900187596394204],[-124.74365602958694,57.900008619286204],[-124.74365421974895,57.8999996292936],[-124.74356766118845,57.89981150297401],[-124.7434848728245,57.89963687157406],[-124.74340845062258,57.899461178608824],[-124.74334890358348,57.89928564488083],[-124.74331056240683,57.899106946444704],[-124.7432870240455,57.89892726612023],[-124.74326137663296,57.89874756591781],[-124.74321878043817,57.89856994899995],[-124.74315716388972,57.89839327418088],[-124.74308496423554,57.89821762107448],[-124.74299792568904,57.898044071099115],[-124.74293416435407,57.897868497620365],[-124.74292964897033,57.89768787541633],[-124.74291029426958,57.89750935637307],[-124.74283384161006,57.89733478472383],[-124.74273833205334,57.897162276338754],[-124.74263224002061,57.89699078958764],[-124.7425197465138,57.896821485540286],[-124.74239452412522,57.89665430441623],[-124.74226930284918,57.89648712320339],[-124.74215892161982,57.896317838862494],[-124.74207189173742,57.89614428862355],[-124.7420039197022,57.89596867519281],[-124.74194656882025,57.89579091888823],[-124.74189554577877,57.895613222378536],[-124.7418445232191,57.8954355258821],[-124.74179982838004,57.89525788919021],[-124.74176360773146,57.895079210985195],[-124.74173797021513,57.89489951120593],[-124.74171862260086,57.894720992505206],[-124.74169931266152,57.89454135257995],[-124.74168422096517,57.89436175255015],[-124.74166912941286,57.89418215255184],[-124.74165403800458,57.89400255258534],[-124.74164105573942,57.893822972583415],[-124.74163654704677,57.893642351092346],[-124.74161934703149,57.8934627312892],[-124.74153646918738,57.89329146358587],[-124.74139431623425,57.89312636516044],[-124.741353806662,57.892949889869605],[-124.74134082619244,57.89277031003408],[-124.74134475478603,57.892589768480285],[-124.74135922794063,57.89240932664726],[-124.74140740601334,57.8922303250879],[-124.74148932602391,57.892051642513216],[-124.74145288495826,57.89187969232486],[-124.74134614761859,57.89179119801359],[-124.74122165100763,57.89153990289449],[-124.74107099559014,57.891376967166025],[-124.74090960965619,57.89121953782505],[-124.74073971466343,57.89106427102612],[-124.74056131068791,57.89091116673588],[-124.74037228897588,57.89076020496585],[-124.74017890101238,57.89061368803734],[-124.7399769666977,57.89047045476156],[-124.73975364553608,57.89033599156778],[-124.73950242345126,57.89021584468907],[-124.73924905662129,57.89009679862927],[-124.73901075340545,57.88996892193657],[-124.73878743867107,57.88983445719185],[-124.73857481968322,57.889695607006495],[-124.73838151935661,57.88954684513289],[-124.73819462198735,57.88939590046872],[-124.73798407880805,57.889258190637754],[-124.7377242090002,57.88914468805779],[-124.73744061816824,57.88904666245031],[-124.73715925040017,57.88894529251232],[-124.73689509254818,57.8888339908363],[-124.73663526658909,57.88871936493415],[-124.73637547985653,57.888603617292354],[-124.7361091803704,57.888493415325996],[-124.73583640573013,57.88838763774847],[-124.73556141093344,57.888285203331115],[-124.73528220027399,57.88818272828969],[-124.7350050998086,57.88808027271146],[-124.73473443993251,57.887974512959204],[-124.73448324962894,57.887854356903375],[-124.7342428304396,57.88772757317177],[-124.73400241286978,57.887600789022564],[-124.73375548239689,57.887479550503336],[-124.73348916080442,57.88737046466847],[-124.73320126390077,57.88727575381836],[-124.73290900021748,57.88718548718685],[-124.73262543668532,57.887087451521424],[-124.73234835151378,57.88698499052944],[-124.73207559837229,57.88687920541152],[-124.73181576280386,57.88676569157821],[-124.73159034639865,57.886632316361585],[-124.73137140850486,57.88649451609899],[-124.73112020101345,57.886375475123906],[-124.73087121709737,57.88625309006713],[-124.73058450756385,57.88612361517365],[-124.73033546085487,57.885940662000046],[-124.73040626259454,57.88584263632559],[-124.73061819390995,57.885687633241965],[-124.73082180278375,57.885529185706496],[-124.73096855550969,57.88536795266755],[-124.73110905704125,57.885204416713734],[-124.73124119893265,57.88503855776849],[-124.73137958955803,57.88487500148714],[-124.73154094559204,57.8847183935531],[-124.73172323391918,57.88456647130921],[-124.73191173285713,57.88441797282025],[-124.73210026807502,57.884268352847215],[-124.73228462265475,57.88411757122871],[-124.73246686731562,57.883966769300244],[-124.7326407900331,57.88381252312632],[-124.7328021740122,57.88365479259576],[-124.73295726913166,57.88349588044531],[-124.73310611319268,57.8833346654584],[-124.73324870624828,57.883171147657144],[-124.73338497289862,57.88300756954043],[-124.73352775211977,57.8828384453023],[-124.73361371722861,57.882665415621375],[-124.73359430126278,57.88249026171217],[-124.73354751464764,57.88231372580493],[-124.73348597009021,57.8821370494813],[-124.73341599278953,57.881960292909824],[-124.7333439455532,57.88178239503225],[-124.73327611561818,57.881604537278626],[-124.73322300669481,57.881427941222825],[-124.73321428556079,57.88124840286403],[-124.7332815380553,57.881067344428686],[-124.73324518283735,57.88089427270806],[-124.73315182945076,57.88072290168067],[-124.73304368142094,57.880552511372976],[-124.73292280944318,57.88038424305483],[-124.73279135964243,57.88021699552785],[-124.73264929440244,57.88005188999541],[-124.73250079251537,57.879890087812264],[-124.73234589178027,57.87973046772045],[-124.73218459225163,57.87957302969654],[-124.7320127153723,57.87941661231179],[-124.73183443984665,57.87926237693469],[-124.73164758200181,57.879112545915305],[-124.73145214187474,57.878967119215446],[-124.73124811949624,57.878826096795244],[-124.73101623922904,57.87869826757225],[-124.73075872265686,57.878580287801505],[-124.73049473206389,57.878466732150635],[-124.73023288900661,57.87835207487013],[-124.7299839610319,57.8782296891657],[-124.72973932656285,57.87810510078911],[-124.72948603426002,57.877987158870276],[-124.7292133164945,57.877882490100816],[-124.7289341623998,57.877781124077046],[-124.7286485340912,57.87768418198872],[-124.72835643151805,57.877591663792806],[-124.72805984906104,57.87750695328608],[-124.72775882445544,57.87742892920576],[-124.72744688176569,57.87736201597047],[-124.72712838853894,57.87730176890431],[-124.72680545270035,57.87724820812657],[-124.72648033386619,57.87719686885579],[-124.72615502623377,57.87715113494367],[-124.72582083181177,57.87711877426477],[-124.72548878397406,57.87708531170647],[-124.72516784647544,57.877035130844796],[-124.72486250161819,57.87696042355338],[-124.72457033799523,57.87687013957609],[-124.72427825175838,57.87677761250772],[-124.72398612895593,57.87668620603604],[-124.7236983376497,57.87659147567936],[-124.72340173553275,57.87650787610893],[-124.7230592312018,57.876472063945975],[-124.72280731810292,57.87637655430729],[-124.72263111085077,57.8761628820057],[-124.72258512197185,57.87602672782757],[-124.72249386106334,57.87585761287493],[-124.72225314027528,57.87574314256131],[-124.7219762048694,57.875639539953056],[-124.7216821027254,57.8755447446065],[-124.72138585602563,57.8754510495926],[-124.72109593466193,57.87535741470231],[-124.72080375441394,57.87526824383223],[-124.72050509930604,57.87518349643161],[-124.72019981682776,57.87510765735955],[-124.7198901291022,57.87503738316815],[-124.71957611227803,57.874970431373995],[-124.71926205843062,57.87490460006902],[-124.71895022805256,57.87483542464355],[-124.71864709760516,57.87475848110376],[-124.7183527817231,57.87467040583605],[-124.71807145824697,57.87457236073856],[-124.71779021260254,57.874472072607226],[-124.71750245380676,57.87437732906924],[-124.71720369859332,57.87429593801069],[-124.71689628386247,57.87422119233477],[-124.71658879391445,57.87414868840206],[-124.71628138160634,57.8740739413171],[-124.71598266967598,57.87399142631942],[-124.71568836602138,57.87390334522906],[-124.71539839423433,57.87381194052304],[-124.71510842385501,57.87372053519376],[-124.71481630875861,57.87363023010665],[-124.71452197237554,57.87354326769234],[-124.71422549121966,57.87345740549045],[-124.71392682698247,57.8733737647084],[-124.71362816407202,57.87329012326344],[-124.71332946417344,57.873207602377185],[-124.71303080390771,57.87312395960588],[-124.71272996048393,57.87304253822399],[-124.712431302859,57.87295889412145],[-124.71214567691958,57.87286415954385],[-124.71186442145763,57.872764980287144],[-124.71158535200787,57.87266357841338],[-124.71129976881126,57.87256772082838],[-124.71100763340817,57.87247852870886],[-124.7107111686486,57.87239265877192],[-124.71041688981984,57.87230456616922],[-124.71012042777689,57.87221869493151],[-124.70982185931871,57.872132802604575],[-124.70952976921691,57.87204248606127],[-124.70925707311176,57.87194001948424],[-124.70901247120163,57.871817636261284],[-124.70878944813481,57.871680881290025],[-124.70855994966595,57.871548549469146],[-124.70829603685526,57.87143607183473],[-124.7079934941494,57.87134340724438],[-124.70760711492508,57.87117478107386],[-124.70739377246126,57.87094053933745],[-124.70730504621594,57.870761344376426],[-124.70723314375425,57.87058343442657],[-124.70718676497195,57.87039904290969],[-124.70724956146758,57.87022804965054],[-124.70741298575514,57.87007373623898],[-124.70761204621259,57.86992537675151],[-124.70780692830876,57.86977585483594],[-124.70798717088604,57.869622825752295],[-124.70817158876864,57.86947095858958],[-124.70834972079594,57.86931790860011],[-124.7085132135344,57.869161351549955],[-124.7086558212462,57.868998983699186],[-124.70878616669167,57.86882528085201],[-124.70888926626886,57.86864682718491],[-124.70892894581125,57.868473366045755],[-124.70885224829478,57.868312234710245],[-124.70864649142149,57.868164431456485],[-124.7084366364566,57.868013223347184],[-124.70834335097314,57.86784407962746],[-124.70831160736589,57.8676631958799],[-124.70821418521997,57.8674917687821],[-124.70810197301707,57.86732131961241],[-124.70798761587457,57.86715197112562],[-124.70788172814336,57.866981583225545],[-124.70779703147342,57.866808036318005],[-124.70773774050973,57.86663137138398],[-124.70767423520552,57.86645466551494],[-124.70757041981199,57.86628541917125],[-124.70739655988919,57.86613007288338],[-124.7072247703326,57.8659758680823],[-124.7070487673575,57.865821622123434],[-124.7068748347285,57.8656685176503],[-124.70670308791752,57.865513191037444],[-124.70653770319137,57.86535680448197],[-124.70637017394724,57.86520151846551],[-124.70619413957144,57.86504839270872],[-124.70600534689233,57.86489850739378],[-124.70585062010687,57.86473885893594],[-124.70571080016134,57.86457486899622],[-124.70557948783816,57.864408718532445],[-124.70546304355712,57.86423934787759],[-124.70537196517262,57.86406798081566],[-124.70534234632093,57.86388711756592],[-124.70534663716136,57.86370097641884],[-124.70532326348192,57.863522417170756],[-124.70521080636084,57.86335981471271],[-124.70504739034567,57.863207931990466],[-124.7048543198274,57.8630602467161],[-124.70464420002004,57.86291800307626],[-124.70442561426724,57.86277679824592],[-124.7042091373861,57.86263561360206],[-124.70400327541505,57.86249228885519],[-124.70378040292591,57.862353284382664],[-124.7035553862782,57.8622153802275],[-124.70338136870205,57.86206563537124],[-124.70328390626678,57.86189644805809],[-124.70323533452125,57.86171539988155],[-124.70319733770053,57.86153333322158],[-124.70313171652396,57.86135772677052],[-124.70297896917089,57.86120258091396],[-124.70271760022345,57.86108002310923],[-124.70241878928965,57.86100420599602],[-124.70208522217898,57.86095833180263],[-124.70177786901114,57.860885794637355],[-124.70147063299278,57.8608098931549],[-124.70114530393887,57.86076970490816],[-124.70081108298416,57.860742887998356],[-124.70048368677453,57.860701556353746],[-124.70015414546899,57.86066132451947],[-124.69981111066294,57.86064563477848],[-124.69949003774565,57.86060436247687],[-124.69921756792311,57.86049851291933],[-124.69896276978669,57.860369282420876],[-124.69870551766995,57.86025012166325],[-124.69842556898709,57.86017784476262],[-124.69809297280847,57.86022618284373],[-124.69775498485184,57.86024754935596],[-124.6974332328876,57.8602870193077],[-124.69711105361935,57.8603388217084],[-124.69680273093066,57.860416555482175],[-124.69648694861601,57.8604661759006],[-124.69614965623461,57.860467356698294],[-124.69580830491186,57.86046401051635],[-124.6954824125079,57.860501192038264],[-124.69514676077199,57.86051584538124],[-124.69480919593128,57.86052487119426],[-124.69447346599605,57.86054176524268],[-124.69413968737797,57.86056316393565],[-124.6937934990076,57.86057771044206],[-124.69343447322302,57.86059773788171],[-124.69312612817144,57.86055433199491],[-124.69287915639886,57.86044311186083],[-124.69263885763627,57.860321862597104],[-124.69240726125201,57.86019284735712],[-124.69218007527401,57.86005826715952],[-124.69195511480648,57.85992034371056],[-124.69173234094076,57.85978019822317],[-124.69150956873266,57.85964005238277],[-124.6912825061672,57.85950210712922],[-124.69100545780297,57.85928628040511],[-124.69081941229707,57.859241829358474],[-124.69056812494752,57.859133927206365],[-124.69014952950137,57.859170182973166],[-124.68988189643918,57.85910810345042],[-124.68955690651482,57.85905891734687],[-124.68924089177008,57.858994116721874],[-124.68896182914722,57.858897153636036],[-124.68870239461367,57.85878131654434],[-124.6884559160116,57.85865663402539],[-124.68821365303013,57.858531992622446],[-124.68797143070638,57.85840622959687],[-124.68773350208333,57.858278265323946],[-124.68750201319979,57.85814699942028],[-124.68728121705392,57.858011352310434],[-124.6870732205641,57.85787134484596],[-124.68687388793548,57.857724693096856],[-124.68668520883631,57.857574781496126],[-124.6865114361483,57.85742053050529],[-124.68635678359325,57.85726198180042],[-124.6862551962209,57.85709274123199],[-124.6861939928797,57.85691380526109],[-124.68611792454612,57.856738087199666],[-124.68603549716245,57.85656342788256],[-124.6859424579505,57.85639090686344],[-124.68584520586307,57.85621834417802],[-124.68573094335876,57.85605009968791],[-124.68555499651742,57.85589806925774],[-124.68535778707708,57.855751436352655],[-124.68518832016085,57.85559498318039],[-124.6851311814132,57.85542057341908],[-124.68511856013747,57.85523875269499],[-124.68507418045802,57.85506110435759],[-124.68501080096,57.85488438977012],[-124.6849411017201,57.85470761269405],[-124.68485443155338,57.8545340325385],[-124.68469343839236,57.85437654106389],[-124.68454305863821,57.854216911219034],[-124.68444156593435,57.85404542740836],[-124.68433796742255,57.85387392271053],[-124.68418969790358,57.85371431338763],[-124.68401170064305,57.85356113924542],[-124.68385711362167,57.85340146706794],[-124.68371957735866,57.85323635558218],[-124.68358621649472,57.85307240687522],[-124.68337404764503,57.852932352629004],[-124.6832087757959,57.85277706028389],[-124.68309672054889,57.85260659260002],[-124.68296344301928,57.85244040099545],[-124.68292110504161,57.85226501568563],[-124.68300723277453,57.85209202414787],[-124.68311438674283,57.8519203623652],[-124.68321100667276,57.851748596239176],[-124.68325511740275,57.85157182391105],[-124.68323825409674,57.8513910831959],[-124.68328447086289,57.85121433177945],[-124.68335807264079,57.851037851498255],[-124.68342535404048,57.850861308646046],[-124.68349048907668,57.85068586612569],[-124.68365817816304,57.85053050549413],[-124.68386748739708,57.85039013705508],[-124.68410585570624,57.85026239317241],[-124.68431925736321,57.85012542930779],[-124.68449322092977,57.84997125141822],[-124.68472168539482,57.849764898402334],[-124.6847052927829,57.849510139072244],[-124.68445245116193,57.849388751371144],[-124.68419087201254,57.84927624932417],[-124.68392933359041,57.849162625589784],[-124.68368285535755,57.84904017782097],[-124.68345354379403,57.848908926958245],[-124.68323070990958,57.848773253548984],[-124.68300994487613,57.84863872183048],[-124.6827806772985,57.8485063486766],[-124.6825449352391,57.84837839727909],[-124.6823091947807,57.84825044548036],[-124.68206916466622,57.84812469389753],[-124.68182269926763,57.84800224281075],[-124.68156550732367,57.84788529278326],[-124.68126930317491,57.84779935942466],[-124.68094652841779,57.84775017374238],[-124.68068071908834,57.8476387443759],[-124.68043422211278,57.847517411959444],[-124.6801942421996,57.84739053590392],[-124.67995851590365,57.847262580067174],[-124.67972068485608,57.84713460291665],[-124.67947637920628,57.84701104733576],[-124.67921916200679,57.84689521407059],[-124.67894029339799,57.84679598879586],[-124.67864410379886,57.846710049685896],[-124.67834136060779,57.846630774207284],[-124.67802535136525,57.84656931130532],[-124.67771160685997,57.84650338387734],[-124.67741319798301,57.84642078464931],[-124.67712360928871,57.84632705676936],[-124.67691786070327,57.84618593486764],[-124.67672713332259,57.846037111128915],[-124.6765363680666,57.84588940831902],[-124.67632212020132,57.84575044406507],[-124.6760324605792,57.84565895623188],[-124.6757097503982,57.84560863676812],[-124.67542442411583,57.84551382603883],[-124.67515646179291,57.845404607262196],[-124.67489497748454,57.84529096621065],[-124.67462916395924,57.845180646206785],[-124.67434821389062,57.845081390482974],[-124.67402773550327,57.845027724430444],[-124.6736921737979,57.84504344459257],[-124.67335799345592,57.84501992268287],[-124.67302615667235,57.844989693886355],[-124.67269439941154,57.84495722190761],[-124.672364946472,57.84491916424435],[-124.67203775847865,57.84487664209157],[-124.6717083859555,57.84483634045041],[-124.67137873739793,57.84480388623417],[-124.67104217759956,57.84478818570502],[-124.67070518298598,57.84478481726915],[-124.67036814886846,57.844782569155775],[-124.67003135223644,57.844773593128906],[-124.6696969786524,57.8447556679089],[-124.66936741172077,57.8447209663569],[-124.66903804341439,57.84468065810842],[-124.66871535095244,57.84463032172269],[-124.66840163888101,57.844564372462095],[-124.668096749017,57.8444872950962],[-124.66779837718224,57.84440467446447],[-124.6675000859539,57.844319810819464],[-124.66720390225247,57.84423496762368],[-124.66691209090723,57.8441456813067],[-124.66662465199026,57.8440519518987],[-124.66635020865401,57.84394825805412],[-124.66609090685974,57.84383349981084],[-124.66584022974902,57.84371321973468],[-124.66559603149815,57.84358851791397],[-124.66536033884432,57.843461657873654],[-124.66512472721463,57.84333255508494],[-124.6648912233238,57.84320347304322],[-124.66466201273121,57.84307219056445],[-124.66444786440984,57.842932086407664],[-124.6642164714205,57.84280302438796],[-124.66394212331217,57.84269708336032],[-124.66368061208819,57.84258566291736],[-124.66343638852193,57.842462078445536],[-124.66316637656865,57.842352814679494],[-124.66285925009355,57.84228018899122],[-124.66252033174925,57.84227229395716],[-124.66231672625126,57.84213229240666],[-124.66218143154641,57.841967181738084],[-124.66210335949438,57.841792552606655],[-124.66204642812579,57.84161589304542],[-124.66194296570058,57.84144437308133],[-124.6618161389787,57.841278225762125],[-124.6616659083957,57.841118572188414],[-124.66149231399558,57.84096429110784],[-124.6613047010118,57.84073023716357],[-124.66132314700019,57.840626116845755],[-124.66146795597597,57.840463825525866],[-124.66162321386784,57.8403038824089],[-124.66178053657893,57.840145081502214],[-124.66194203004059,57.839987443991745],[-124.66209935008746,57.839828642758725],[-124.66225666880857,57.83966984136515],[-124.66241605232554,57.83951218216584],[-124.66257547429933,57.83935340163251],[-124.6627348949299,57.83919462093357],[-124.66289010243621,57.83903579771104],[-124.66304324252864,57.83887583198843],[-124.66319220934683,57.83871470259945],[-124.66333489706678,57.838552388386425],[-124.66347341161085,57.83838891054019],[-124.66360985886605,57.83822429024186],[-124.66374209325645,57.83805962749994],[-124.66387019433732,57.8378926799932],[-124.66399408264755,57.8377256900683],[-124.66411169217676,57.83755751541073],[-124.66422091719875,57.83738813487981],[-124.66431762570907,57.83721526385165],[-124.66439963260616,57.83704112353251],[-124.66447325539588,57.83686577741204],[-124.66453428266757,57.836689183199034],[-124.66458271459217,57.83651134091159],[-124.6646164058764,57.83633335057779],[-124.66464592510667,57.83615419680004],[-124.66467754977681,57.835975064199005],[-124.66470285701489,57.83579586817216],[-124.66472816401233,57.83561667217291],[-124.66475974811945,57.835438660814106],[-124.6647955830095,57.83525957061321],[-124.66483348351099,57.835081622747246],[-124.66487142337193,57.834902553738715],[-124.6649072572217,57.8347234636048],[-124.66493883973462,57.83454545236417],[-124.66496625040148,57.834366277692766],[-124.66499366080772,57.83418710304824],[-124.665025282175,57.83400797072071],[-124.66509051343563,57.833831419053155],[-124.66522256712531,57.833671240220696],[-124.665218511193,57.83348838503518],[-124.66523753717905,57.8333080047688],[-124.66523967878454,57.833128576561926],[-124.66522072514717,57.832950058130834],[-124.6651786107293,57.83277130716203],[-124.66510690014229,57.83259562368611],[-124.66500130331623,57.832425207684864],[-124.66486178095163,57.8322611802356],[-124.66464332340907,57.832125520274126],[-124.66445716498339,57.83196999640037],[-124.66463907129425,57.83182938586052],[-124.66492672758557,57.8317358211811],[-124.66519177804362,57.831626327080265],[-124.66543839377448,57.8315020671358],[-124.66569108613692,57.831384597113576],[-124.66598282830076,57.83129443593996],[-124.66629280408257,57.83122464514171],[-124.66659673999405,57.831146942144564],[-124.66688843849924,57.83105790016528],[-124.66715149198765,57.83094501763687],[-124.66738776782194,57.830815042805156],[-124.66771144473091,57.83077454664242],[-124.66800301886234,57.830688865730615],[-124.66827429006396,57.83058167121329],[-124.66853316485292,57.83046762265834],[-124.66883299800541,57.83038650894944],[-124.66911038295379,57.830284981811715],[-124.6693009624308,57.8301366013358],[-124.66946238156966,57.82997895628842],[-124.66959877223253,57.82981433124457],[-124.66972050324934,57.8296473162757],[-124.66991937986353,57.82950238276854],[-124.67008083325727,57.82934361591228],[-124.6702918643536,57.829212262188456],[-124.67059998648111,57.829134592320095],[-124.67089165995972,57.82904554173784],[-124.67119151625029,57.828963301667216],[-124.67149745013326,57.82888785100857],[-124.67180338279165,57.828812399651596],[-124.67210724840072,57.82873580540445],[-124.67241516546186,57.82866373716064],[-124.67272912094462,57.82859957939116],[-124.67304716757566,57.8285388263974],[-124.673363147333,57.828476930474395],[-124.67367515213826,57.8284082648337],[-124.67398906390991,57.82834522526408],[-124.67431497553694,57.82830024949122],[-124.67464871627271,57.828272174280166],[-124.67498381302407,57.828265421246044],[-124.67532073915386,57.82826653646516],[-124.67565754713493,57.82827101430878],[-124.67599646049274,57.82827551227033],[-124.67633724301253,57.828286757292176],[-124.67667210343454,57.82828672696052],[-124.67698955082312,57.82824278195042],[-124.67727126597639,57.82813679527659],[-124.67753438599158,57.8280205290582],[-124.67773934317333,57.82788125272965],[-124.67788192725752,57.82771892468669],[-124.67799741699804,57.82754847619037],[-124.67810658995083,57.82737796480975],[-124.6781866030854,57.82719819098811],[-124.67832481496703,57.827040305344234],[-124.67858149050882,57.826927337855075],[-124.67886938913111,57.826824774201924],[-124.67909507269195,57.826694674475824],[-124.67926064654242,57.82653705992403],[-124.67942621900852,57.82637944519103],[-124.67961463295721,57.82623102959877],[-124.6798031239505,57.826080371444995],[-124.67995816630524,57.82592265156704],[-124.68007149674303,57.825753301826936],[-124.68019316825412,57.82558627795385],[-124.68036079853985,57.82542980427014],[-124.68053883536857,57.82527679836902],[-124.68071683151639,57.825124913410455],[-124.68091147100137,57.8249788011713],[-124.68111651684359,57.824836156591154],[-124.68132366623402,57.824693532601955],[-124.68153077484617,57.82455202946756],[-124.68173994778324,57.82441166806774],[-124.6819491191629,57.824271306358646],[-124.68216039405391,57.82413096521374],[-124.6823716673721,57.82399062375277],[-124.68258289993847,57.82385140313249],[-124.68279623599064,57.823712203059394],[-124.68300746542951,57.823572981803395],[-124.68322079833885,57.82343378108795],[-124.68343412967305,57.82329458004964],[-124.68364745943198,57.82315537868838],[-124.68385868260832,57.823016156157685],[-124.68406990422481,57.82287693331081],[-124.68428116340883,57.822736588991944],[-124.68449242102012,57.82259624435716],[-124.68470363794427,57.82245702056202],[-124.6849148924167,57.82231667529513],[-124.6851219744957,57.82217516690381],[-124.68532698916248,57.82203251623139],[-124.68552783147643,57.82188870246769],[-124.68572247469616,57.82174146250483],[-124.68590253820322,57.821589591960084],[-124.68606591718708,57.82143307008311],[-124.68622305821583,57.8212742432932],[-124.68639060524559,57.82111888383962],[-124.68660176782895,57.82098077838946],[-124.6869316933995,57.82093917708807],[-124.68726719121865,57.82091893928527],[-124.68759298378762,57.820875052450425],[-124.68790688760579,57.82080973818508],[-124.6882086291404,57.820730844660446],[-124.68849610326455,57.82063835118964],[-124.68879990807717,57.82056059826398],[-124.68902150506923,57.820424835197144],[-124.68917862944694,57.820266005074004],[-124.68934409394514,57.82010950013808],[-124.68954908140807,57.819966843249695],[-124.6897644356374,57.81982877444757],[-124.69001288118636,57.81970785461628],[-124.69020122012951,57.8195594250163],[-124.69043726728036,57.81943165302423],[-124.69070219609428,57.81932098827424],[-124.69101405463549,57.81925340372656],[-124.69133401993804,57.81919487059566],[-124.69163979534876,57.81912049548084],[-124.6919536386558,57.81905629292673],[-124.69227149603954,57.81899773683212],[-124.69254464116048,57.81889275707971],[-124.69277034667651,57.81875927171546],[-124.69297527497285,57.81861773088992],[-124.69309273451103,57.81844841269981],[-124.69318922322852,57.81827664514192],[-124.69325846603377,57.81810124501763],[-124.6933004632869,57.81792221237097],[-124.69331720352142,57.81774293138524],[-124.69331921063866,57.81756350555385],[-124.69332121773684,57.81738407975469],[-124.69333795763379,57.81720479886326],[-124.69337991466028,57.81702688750479],[-124.69344708846391,57.81685034565464],[-124.69353519168838,57.81667737419097],[-124.6936275034033,57.81650444408239],[-124.6936845475489,57.816377150097516],[-124.69362921569181,57.81615117795273],[-124.69344921391844,57.815999122717564],[-124.69324360856336,57.81585690924647],[-124.6930444351525,57.81571139412924],[-124.69284732901001,57.815567020589135],[-124.69269500377891,57.815406264371404],[-124.69256812915472,57.815240150760516],[-124.69239452747334,57.81508591406191],[-124.69220385742324,57.814938238343366],[-124.6919597194482,57.81481470971121],[-124.69166811605461,57.8147243592218],[-124.69141532961042,57.814607473617635],[-124.69128211080071,57.814442417880294],[-124.69114885424268,57.81427848318497],[-124.6908896810012,57.81416377673644],[-124.69069687806935,57.81401719940519],[-124.6905976089964,57.81384462685111],[-124.69041759151938,57.813693689009035],[-124.69018398987028,57.81357026098112],[-124.6901439611415,57.81338929987064],[-124.6901059593717,57.81321060182216],[-124.6900024083235,57.81304022976115],[-124.68991581061556,57.81286666021445],[-124.68986724933097,57.81268897958464],[-124.68981658407952,57.81251127821674],[-124.68976171047653,57.81233353535541],[-124.68968988528785,57.812158989908305],[-124.68957153032267,57.81199071470281],[-124.6894341200531,57.81182561603397],[-124.68931362393248,57.81165844104172],[-124.68924394543804,57.81148279508702],[-124.6892459715997,57.811303370444115],[-124.6892900457102,57.81112548219124],[-124.68935512380989,57.810948922694216],[-124.68942647531982,57.81077354661519],[-124.68949993048375,57.81059819128562],[-124.6895922458212,57.810425265034496],[-124.68969921249371,57.81025472631375],[-124.68982079137328,57.810087696229786],[-124.68996119086003,57.809924216240404],[-124.69009114565654,57.8097583901058],[-124.6902001735058,57.80958899298596],[-124.69030923931008,57.809418474662706],[-124.69041409564288,57.80924791479412],[-124.69051267725565,57.80907617150691],[-124.69060077577775,57.80890320333676],[-124.69067422183984,57.80872784768642],[-124.69072459881671,57.80855002163139],[-124.69075186810456,57.808370846340914],[-124.69075809529392,57.80819146370833],[-124.69073907233708,57.80801183226179],[-124.69068626617529,57.80783523246141],[-124.69061238004319,57.8076595464203],[-124.6905405987437,57.807483881109384],[-124.69048993731151,57.807306180924364],[-124.69048354082443,57.80712667404741],[-124.69048135262695,57.806947208685244],[-124.6904791644503,57.80676774335525],[-124.69047697629446,57.80658827805738],[-124.69047268407512,57.80640879205026],[-124.69046207967368,57.806229243850346],[-124.69044516318033,57.806049633456034],[-124.690400855215,57.80587087457884],[-124.69031427213248,57.80569730653748],[-124.6902128837366,57.805525835527675],[-124.69012415935008,57.805353367814675],[-124.69006083971172,57.80517666449961],[-124.69000172867753,57.80500000268358],[-124.68991725342612,57.804826455283504],[-124.68979892045265,57.80465818151516],[-124.68973770748111,57.80448149892098],[-124.6896849498968,57.80430377820924],[-124.68964906341053,57.80412510240879],[-124.68964508626786,57.80387608561584],[-124.68966994256243,57.80376642181843],[-124.68957058831123,57.80359721367522],[-124.68925947974398,57.80352573141973],[-124.68893037193084,57.803487716380786],[-124.68859896596764,57.80345528543387],[-124.68827437917636,57.80340834123168],[-124.68797414515839,57.803326869643904],[-124.68769343268033,57.803228767431314],[-124.68742144937109,57.80312177871698],[-124.68715803926297,57.803010388095274],[-124.6868967736261,57.80289789662752],[-124.68663336663053,57.80278650499042],[-124.68636138951634,57.802679514153],[-124.68608501094482,57.802578086816915],[-124.68580434801243,57.80247885955235],[-124.68552368655654,57.802379631704746],[-124.68524084457063,57.80228262471592],[-124.6849580431253,57.80218449600131],[-124.68467738608544,57.802085266394805],[-124.68440319843377,57.80198161418791],[-124.68413333727541,57.801874639712445],[-124.68386129558951,57.80176988611845],[-124.68358068364527,57.801669533104004],[-124.68328701984692,57.80158138682542],[-124.68297134075432,57.80152105959459],[-124.68264237422925,57.80147966565971],[-124.68232221527137,57.801427143081185],[-124.68202423118979,57.80134231568489],[-124.68174136679927,57.80124642247674],[-124.68146937547395,57.80114054291934],[-124.68121464706705,57.80102249748571],[-124.6810305076751,57.800932069016724],[-124.68092026284432,57.80071452094176],[-124.68088862878582,57.800535885201775],[-124.6808548912854,57.8003572285923],[-124.68082750450571,57.800177513559234],[-124.68078098845511,57.80000321614654],[-124.6806222056094,57.799789671951004],[-124.68054421391466,57.79961281880071],[-124.68048317011876,57.79943276944802],[-124.68048928779402,57.79925787341326],[-124.68061083279736,57.79909197472137],[-124.68076178878778,57.79892748960913],[-124.68082053559537,57.798751994887695],[-124.68082474397913,57.79857147242358],[-124.6808289523226,57.79839094999183],[-124.68081414961982,57.7982124817994],[-124.68074032830272,57.79803679195806],[-124.6806771041016,57.79785896433556],[-124.68055236656639,57.79769510531943],[-124.68032361326436,57.797557129085284],[-124.68015843963789,57.79740632611768],[-124.68010145148558,57.79723080329862],[-124.68008470602402,57.797047829822795],[-124.68007415368734,57.79686828247281],[-124.68008046896861,57.7966877812771],[-124.68008253791166,57.79650835942703],[-124.68004245805402,57.79633076173559],[-124.67996864401188,57.796155071794765],[-124.67994967849036,57.79597544096362],[-124.6799517480163,57.795796019242815],[-124.67991591571345,57.79561734233085],[-124.67986532025257,57.79543964020077],[-124.67980837566601,57.79526299647614],[-124.67975147084587,57.79508523163466],[-124.67968821701591,57.794908525187374],[-124.67964183043217,57.79473086492156],[-124.67966517093699,57.79454492581691],[-124.67956989645853,57.79438135918967],[-124.67938350953861,57.794235952206506],[-124.67917382975448,57.794094799351186],[-124.67895565949388,57.79395580473434],[-124.6787375301027,57.793815688656565],[-124.67853217960987,57.793671213336765],[-124.67835440999954,57.79352028312647],[-124.67819798953703,57.79336059309042],[-124.67806069687505,57.793195485732994],[-124.677929754694,57.793029319960006],[-124.67784738651082,57.792858030139406],[-124.67777358948226,57.792682339585774],[-124.67767864224362,57.79250980294495],[-124.67757944999315,57.79233834549484],[-124.67748660779073,57.792165829721135],[-124.67743178255296,57.791989206499814],[-124.67736854477556,57.79181249949215],[-124.67731165665258,57.79163473421553],[-124.67724417424098,57.791459106430224],[-124.67714708996036,57.791287669787025],[-124.67707119603932,57.79111195816508],[-124.6770079221101,57.79093637225775],[-124.6769362359523,57.79076070252896],[-124.67683284528327,57.79058920290814],[-124.67684961231173,57.790411050013994],[-124.67691260971748,57.790234479304985],[-124.67706338916344,57.79007448431389],[-124.67722670766909,57.789916857117205],[-124.67737335681373,57.789754577689074],[-124.67747611383315,57.789584010428975],[-124.67753700379762,57.78940741862188],[-124.67757904370072,57.789228396078414],[-124.67761894080525,57.78905047372478],[-124.67766514683213,57.788872614222825],[-124.67772186787167,57.78869485945192],[-124.67778906449105,57.788518330514286],[-124.67787927640681,57.78834539526815],[-124.67799484205884,57.7881693479122],[-124.67817021691965,57.78802754109613],[-124.6785101433718,57.7879927934391],[-124.59999871000687,57.74981840667995],[-124.59379971094002,57.74679883702753],[-124.59417371867971,57.74663121426211],[-124.59445266471084,57.74653323678239],[-124.59475199061615,57.746452296945094],[-124.59505946780892,57.746378171707015],[-124.59536690210844,57.74630516680552],[-124.59567429354227,57.746233282240446],[-124.59598370114506,57.74616366129255],[-124.59629718397423,57.7460974472227],[-124.59661054075609,57.74603459554815],[-124.59692801454577,57.74597402966851],[-124.59724742145791,57.745917969425264],[-124.59757271319323,57.74587318549096],[-124.59788614921561,57.7458080887289],[-124.59819554925983,57.74573846265085],[-124.59850498975648,57.74566771481184],[-124.59881447067775,57.745595845211575],[-124.5991218497799,57.74552395270769],[-124.59942931084262,57.745449817407966],[-124.59973471162094,57.74537453817984],[-124.59999352339595,57.7453088598518],[-124.6003372731758,57.745219404783455],[-124.60056895834188,57.7450917575673],[-124.6008090443882,57.744964198603384],[-124.6011163730411,57.744893422565966],[-124.60141567167668,57.744812467822534],[-124.6017310683885,57.74475074732557],[-124.60206712295708,57.74475541123477],[-124.60240207243685,57.744733147093754],[-124.60265017916721,57.744615762779425],[-124.60284264654753,57.74446863342235],[-124.60303099418888,57.744319217469204],[-124.60325657027468,57.74418589407641],[-124.60351916748756,57.74407426826764],[-124.60395890195632,57.744002636938],[-124.60411168708244,57.743905554811256],[-124.60441702463197,57.743831385960306],[-124.60473047332708,57.74376515211233],[-124.60502897944433,57.743648293803005],[-124.60537898344214,57.74367328276083],[-124.60571194496524,57.74364762506557],[-124.6060465929077,57.74363319905487],[-124.60638280349549,57.7436333678486],[-124.60671633468776,57.743649208346085],[-124.60704722823338,57.74367959952382],[-124.60737564981835,57.743720057223776],[-124.607699581784,57.74376831732446],[-124.60801918954789,57.74381989567984],[-124.6083408161415,57.74387373739898],[-124.60866244365182,57.743927578341136],[-124.60898423719904,57.74397693432406],[-124.60930825596279,57.74402294841727],[-124.60963441734351,57.744067862695445],[-124.60996066200218,57.744110534081685],[-124.61028690739782,57.74415320466733],[-124.61061311229841,57.74419699549864],[-124.6109393179552,57.744240785529556],[-124.6112633825756,57.74428567381218],[-124.61158950734547,57.74433170434131],[-124.61189355600843,57.74440666144566],[-124.61221754081612,57.74445378949845],[-124.61255120522063,57.74446625219582],[-124.61288738208464,57.744467525549894],[-124.6132236412809,57.7444665559572],[-124.61355977702543,57.74446894865461],[-124.61389587167767,57.74447246154789],[-124.61423204864218,57.74447373149415],[-124.6145682256293,57.74447500058836],[-124.61490242536135,57.74447288374986],[-124.61523909550334,57.74446069856887],[-124.61557201618132,57.744436137151716],[-124.61590106384959,57.74440256267199],[-124.61622821567332,57.744363360220106],[-124.61655557209696,57.74431855172138],[-124.61687679018144,57.7442691925065],[-124.6171961120302,57.74421420537379],[-124.61751357853598,57.744152469289354],[-124.61782688387636,57.744089567619184],[-124.61814228874293,57.74402668709843],[-124.61845962913026,57.743968311906286],[-124.61878294231306,57.74391896997294],[-124.61910815031499,57.74387525436725],[-124.61943541715388,57.743832680879926],[-124.61975860502122,57.743786699720864],[-124.62007594089528,57.74372832067547],[-124.62038330527335,57.74365525799022],[-124.6206907093949,57.74358107354909],[-124.62100408655277,57.74351592231221],[-124.62132137731456,57.74345866135142],[-124.62164468239835,57.74340931246743],[-124.62196790484931,57.74336220489572],[-124.6222912491477,57.74331173339157],[-124.62261455170733,57.7432623821507],[-124.62293970875855,57.74321977822816],[-124.62326305053976,57.74316930436215],[-124.62358824690442,57.74312557780464],[-124.62391344251635,57.74308185045165],[-124.62424267510646,57.74304265007844],[-124.6245756590659,57.743015823999606],[-124.62487279203238,57.742934794698286],[-124.62516798641057,57.74284925876618],[-124.62547125514976,57.742772777657365],[-124.62578066103973,57.74270084535247],[-124.62598675344988,57.742580740229606],[-124.6262952792402,57.742475153500806],[-124.62645440279046,57.742317552648956],[-124.62656772222496,57.74214826259983],[-124.62666015829899,57.7419753918297],[-124.62673377097238,57.74180008318218],[-124.62680738296268,57.74162477452372],[-124.62689351536537,57.7414518384337],[-124.6269901490886,57.74127901104481],[-124.6270930016853,57.74110849094238],[-124.62718753321509,57.74093564172356],[-124.62726114141587,57.740760332960896],[-124.62732634739997,57.74058493722688],[-124.6274125157864,57.74041087992768],[-124.62752372484542,57.740241567637455],[-124.62764955394947,57.74007464952188],[-124.62778576151861,57.739911203119625],[-124.62805021961435,57.73957189154599],[-124.62811319744436,57.739399837038775],[-124.62848440881152,57.73947657206736],[-124.6287777931809,57.7393820382955],[-124.62861717384104,57.73917627035783],[-124.62853736898016,57.73900161765396],[-124.628472348254,57.738824874894526],[-124.6284767593455,57.738645485837154],[-124.62846020842849,57.73846475854549],[-124.62829138100606,57.73831161436163],[-124.62806507478567,57.73817918318813],[-124.62787290330526,57.738032525769356],[-124.62774661417737,57.737865241997056],[-124.62772578521508,57.737686713372966],[-124.62767127161098,57.73751007911519],[-124.62762099964215,57.73733236729224],[-124.62755174496677,57.737156701941444],[-124.62748463184202,57.736979937278356],[-124.6274069370276,57.73680530600498],[-124.62724030291355,57.736649940382684],[-124.62702895584783,57.73651093358604],[-124.62684321954389,57.73636097701885],[-124.62669149441557,57.73620015779422],[-124.62661376412134,57.73602664723084],[-124.62660768311089,57.735847149966624],[-124.62659740193882,57.735667609230276],[-124.6265639790187,57.73548895029497],[-124.62652215605551,57.73531020437129],[-124.62644871003415,57.73513449528403],[-124.62627994639885,57.73498022799443],[-124.62608141639915,57.73483574524772],[-124.6258999329663,57.734684710082234],[-124.62572487344197,57.73453037686565],[-124.6255709788307,57.734371776960174],[-124.62542350794082,57.73420987909128],[-124.62523140768386,57.734062097371044],[-124.62500723764701,57.73392968329995],[-124.62476170192616,57.733807140416566],[-124.62450114134174,57.73369341291352],[-124.62422979664902,57.73358742323903],[-124.62393894122394,57.7334980524598],[-124.62364158305866,57.733414220848374],[-124.62336806112123,57.73331044971777],[-124.6231375613155,57.73317908821295],[-124.62293481201509,57.7330356784337],[-124.62274482741178,57.73288791508945],[-124.62256122585825,57.73273797486581],[-124.62236914427604,57.73259018921063],[-124.62216211944154,57.73244897676921],[-124.62192306586454,57.73232201012342],[-124.62166676478213,57.73220719982986],[-124.62140836534897,57.73209236721996],[-124.62116499404154,57.731968718692976],[-124.62094731399796,57.73183187939637],[-124.62076590642549,57.73167971660998],[-124.62060570368409,57.7315221668855],[-124.62043702095721,57.73136677166637],[-124.62021078384646,57.73123432798489],[-124.61992650124742,57.73113828795701],[-124.61966811441037,57.73102345207503],[-124.61942903727301,57.730897602143536],[-124.6191985249119,57.73076735513405],[-124.61897871811347,57.730631611930846],[-124.61877809807781,57.73048821802313],[-124.6185839019336,57.73034152636611],[-124.61835767745407,57.730209079654685],[-124.61814215849688,57.73007113683554],[-124.61796072967118,57.72992009150455],[-124.6177878244132,57.72976577041325],[-124.61757235107342,57.72962670569457],[-124.61746717423236,57.729458511410755],[-124.61751354943192,57.729281804330085],[-124.61761019493007,57.729108985819785],[-124.61772141464462,57.728939683608395],[-124.61784099124755,57.72877158992395],[-124.61797720049822,57.72860815539011],[-124.61814049975833,57.72845061041197],[-124.61833076580832,57.72830231798098],[-124.61854375811518,57.72816435525039],[-124.61876506564434,57.72802872176069],[-124.61896566161734,57.72788502198037],[-124.61914138777396,57.7277320912368],[-124.61930673709625,57.72757568785645],[-124.61946376836339,57.72741695477479],[-124.61958749072855,57.72725002452255],[-124.61965694921527,57.727073557555094],[-124.61968865486647,57.72689557606173],[-124.6196973464134,57.72671511206602],[-124.61969129974614,57.72653561610643],[-124.61967895437137,57.72635605459515],[-124.61967458653456,57.726130596489746],[-124.61961227260697,57.72599649442932],[-124.61971902942659,57.72583387350309],[-124.62002003218302,57.72575850529012],[-124.62034125171068,57.72570465445932],[-124.62063628086742,57.72562025107255],[-124.62090693231106,57.72551316435738],[-124.62117346494485,57.72540379136822],[-124.62146037799548,57.72531145161982],[-124.62176964858757,57.72523952989042],[-124.62208674390466,57.725183389144],[-124.62239395359813,57.7251103231154],[-124.62268102485211,57.7250134966355],[-124.62285869959113,57.72486394629083],[-124.62307573247278,57.72472938344754],[-124.62335452360661,57.72462910522972],[-124.6236476014457,57.72454018931187],[-124.62393857842098,57.72445125096032],[-124.62421942388718,57.72435211377302],[-124.62446951015295,57.72423247070866],[-124.6246742224311,57.72408992741911],[-124.62482285963958,57.723929980370215],[-124.62495906204069,57.72376541840242],[-124.62511189564526,57.723605514634244],[-124.62527098547183,57.723446797059964],[-124.62543834933894,57.72329152948258],[-124.62560991065692,57.723136305251145],[-124.62582087015592,57.72299494667086],[-124.62612377454562,57.72292407068282],[-124.62642894015566,57.72284873164994],[-124.62666044082503,57.722719920616946],[-124.6268568612999,57.72257392408101],[-124.62705949693976,57.72243023456223],[-124.6272827582825,57.722296851408245],[-124.62752260939716,57.722169246927564],[-124.62765657224324,57.7220080238141],[-124.62775525211595,57.721835220861905],[-124.62795779899507,57.72169377212694],[-124.62813136066656,57.72154080865606],[-124.62826544074014,57.72137622194461],[-124.62839951964621,57.721211635123666],[-124.62854191322894,57.7210493771288],[-124.62868850416886,57.72088716244286],[-124.62884546825792,57.720728419278224],[-124.62903561278735,57.72058123362179],[-124.62925683827838,57.720445583616645],[-124.62948423801737,57.72031336145544],[-124.62974453333084,57.72020054359146],[-124.63003340394121,57.72011044950929],[-124.63033458428477,57.72002833214134],[-124.6306315648426,57.71994617072079],[-124.63092862531553,57.7198617665893],[-124.6312276619095,57.71978074655532],[-124.63152871527713,57.719701989578446],[-124.63181358226672,57.719606243184174],[-124.63208819514634,57.71950366170906],[-124.63245090198917,57.71934591640373],[-124.63263543888615,57.71929511234885],[-124.6329080291647,57.71919026549884],[-124.63318061793123,57.71908541809892],[-124.6334552638453,57.718981712817516],[-124.63373196691487,57.718879149641715],[-124.63400858746203,57.71877882795029],[-124.63430155438515,57.71869101001045],[-124.63460666952689,57.7186156524622],[-124.6348995933124,57.71852895424049],[-124.63515990065484,57.7184150049122],[-124.63545282161695,57.7183283054847],[-124.63574170477587,57.718237078101104],[-124.63602449136553,57.718140180161335],[-124.6363031995582,57.718039875355124],[-124.63657577061397,57.717935021090014],[-124.6368030892273,57.717803907721006],[-124.63697042117178,57.71764750540811],[-124.63716879375308,57.717503757948414],[-124.63738585467178,57.71736580956315],[-124.6375801068186,57.71721977631576],[-124.63773701834637,57.717061023186325],[-124.63787104071477,57.716896427472925],[-124.6379946473746,57.71672948174722],[-124.63811619427409,57.71656139333963],[-124.63823769971029,57.716394425872394],[-124.63835298772143,57.71622515157692],[-124.63847449103129,57.71605818394675],[-124.63862933533454,57.71589828735158],[-124.63880908388994,57.715746496464455],[-124.63897841671248,57.715592355532706],[-124.63918302750423,57.71544979103249],[-124.63942477296361,57.71532555048621],[-124.6396891618976,57.71521387775948],[-124.6399820476724,57.715127168591344],[-124.64029115939502,57.71505632539128],[-124.64056979322334,57.71495713293644],[-124.6408156885924,57.71483405399577],[-124.64107591236868,57.714721214480186],[-124.64135660032957,57.714623162948754],[-124.64165759152849,57.71454438336178],[-124.64196867347856,57.714476920872755],[-124.64228572904894,57.71441849035559],[-124.64260879868992,57.714367970742245],[-124.64293957910448,57.71433659371794],[-124.64327367175329,57.71432992136812],[-124.64360946100742,57.714334479897836],[-124.64394755033267,57.71433345393302],[-124.64427029541503,57.71429189846637],[-124.64458342936258,57.71422557235237],[-124.6448985004063,57.714163751060966],[-124.64520157948924,57.71408498492247],[-124.64545770768717,57.71396873090054],[-124.64561243357865,57.71381106851853],[-124.64571516762832,57.71363941749346],[-124.64587824649942,57.71348296166807],[-124.64610344735165,57.71335069044446],[-124.64637591728558,57.71324693752643],[-124.64666275678043,57.71315230228225],[-124.64693118650491,57.71304402128166],[-124.64728339550132,57.71288276616255],[-124.6474331228569,57.71280579408164],[-124.64770974281014,57.71270320234172],[-124.64801474281681,57.71262893539183],[-124.64832971478698,57.71256934808604],[-124.6486488433668,57.712510923862624],[-124.64896785077974,57.71245586194493],[-124.64928483853474,57.712398535823226],[-124.64960194545246,57.712337845875595],[-124.64991699256021,57.71227601276735],[-124.6502260223346,57.71220626761738],[-124.6505209194479,57.71212067781468],[-124.6508016036146,57.712021485504906],[-124.65106791465412,57.711913174876635],[-124.65131989248717,57.71179462499582],[-124.65154510423065,57.71166122371826],[-124.65176619677099,57.711525537323276],[-124.65202434625627,57.71141041327476],[-124.65231103780218,57.71131912904421],[-124.6526100009591,57.71123694042398],[-124.65290896281637,57.71115475113589],[-124.65321196116,57.71107708793275],[-124.65348443512931,57.71097219960595],[-124.65366817836441,57.710823795012246],[-124.65382087815905,57.71066273913467],[-124.65401918994294,57.71051784640628],[-124.65426699168171,57.71039812742515],[-124.65452722457206,57.71028301993942],[-124.65484453499118,57.710097841425856],[-124.65488170369738,57.70999729023251],[-124.65489655935683,57.70981576978044],[-124.65490084171113,57.70963638488919],[-124.65490936124593,57.7094559216121],[-124.65498080062379,57.70927721844995],[-124.65524042556576,57.70917892501567],[-124.6555696493643,57.709130680003206],[-124.65588260119505,57.7090676905914],[-124.65618957478567,57.70899566842089],[-124.65651249984947,57.70894735722725],[-124.65684124213243,57.70891256133094],[-124.65716626429246,57.70886426982014],[-124.65744266978399,57.70876614224529],[-124.65764717402216,57.70862355018428],[-124.65782059538962,57.708469428762385],[-124.65797738563047,57.7083106530173],[-124.65811960371119,57.70814836528364],[-124.65825350577009,57.70798375038096],[-124.65838119047217,57.70781682958325],[-124.65850257833144,57.70764984495205],[-124.65862400488737,57.70748173921525],[-124.65874748915222,57.707314775657395],[-124.65887303110992,57.70714895427184],[-124.65900486757208,57.706983196507366],[-124.65915123355127,57.70682207136969],[-124.65931636569829,57.7066645002538],[-124.6594876330279,57.706511476727925],[-124.65957828167792,57.70638230878133],[-124.65956828912361,57.70619044450922],[-124.65964699863902,57.70622039770389],[-124.65964152063997,57.70601960776341],[-124.65949791690352,57.705688457048794],[-124.65936792369025,57.705447157669965],[-124.65924461798637,57.704958091845704],[-124.65922958912657,57.704553106933375],[-124.65908659083888,57.704205140972064],[-124.65893380159586,57.70395576078556],[-124.6587029379148,57.7037179257202],[-124.65859033975171,57.70345998072102],[-124.65829711839271,57.70326412759171],[-124.65796363420489,57.703079080188104],[-124.65754930331748,57.702924612538226],[-124.65733542881085,57.70274077542379],[-124.65716257826347,57.702524832628086],[-124.65684534300428,57.702119027644585],[-124.65689384973311,57.701876171612525],[-124.6569361009401,57.70163213079368],[-124.656969879085,57.70139024696724],[-124.65699518433608,57.70115052013794],[-124.6570056824574,57.7009140075152],[-124.65700129411012,57.70068295112682],[-124.65697568523916,57.7004584081715],[-124.65692877658664,57.70024262065844],[-124.65685641200082,57.70003442500361],[-124.65684465919605,57.700010756108824],[-124.65675847241064,57.69983718419793],[-124.65662652580347,57.6996519340895],[-124.65646263084646,57.69947981686008],[-124.65624770567605,57.699326245912566],[-124.65597319883892,57.69919561989358],[-124.655651858416,57.69908358212466],[-124.65528594187408,57.69898566951147],[-124.65488811739702,57.698899767476746],[-124.65446689679177,57.69882259793675],[-124.65402663564441,57.69874971925786],[-124.653580002162,57.69867901717097],[-124.65313131220428,57.6986071712426],[-124.65269121587833,57.6985298041018],[-124.65226612734025,57.69844361684016],[-124.65186661696397,57.69834647433934],[-124.65150123696289,57.6982339782238],[-124.65117430349272,57.69810280847762],[-124.65087948256075,57.697954022302405],[-124.65059983005273,57.69779193298841],[-124.65033534606869,57.697616540638],[-124.6500880086434,57.697431229750705],[-124.64985567971236,57.69723710005295],[-124.64963827915899,57.69703639364299],[-124.64944000279195,57.6968291533762],[-124.64925657442089,57.69661757857172],[-124.64909210966573,57.69640395409585],[-124.64894447025766,57.69618937962962],[-124.64881567374557,57.695976118640395],[-124.64870575984764,57.695763050176815],[-124.6486127505066,57.6955467898677],[-124.6485366054012,57.69532845875571],[-124.64847526643794,57.6951069144621],[-124.64842445754114,57.694884356208384],[-124.64838425864637,57.69465854199886],[-124.64835249162255,57.69443169244698],[-124.64832496068017,57.69420376474632],[-124.64830162568465,57.69397587990361],[-124.64828042882597,57.693746895510564],[-124.6482591921627,57.693519032167195],[-124.6482337602162,57.6932911260539],[-124.64820199524311,57.693064276762215],[-124.6481659950991,57.692838505695995],[-124.64811946666119,57.69261374862176],[-124.64806023226204,57.692392226120155],[-124.64798833217745,57.69217281717083],[-124.64790162885039,57.6919566213397],[-124.64779592714555,57.691743595765764],[-124.64767122735734,57.69153374040158],[-124.64752539202966,57.691328154772876],[-124.6473605591921,57.69112573922889],[-124.64717886683633,57.6909253941219],[-124.64698233263499,57.690729382808364],[-124.64677317467334,57.69053436365288],[-124.64655341051844,57.690342600027876],[-124.64632521809916,57.69015187131948],[-124.646090695108,57.68996219892549],[-124.64585197932219,57.689772483259205],[-124.64560899053454,57.689584966294035],[-124.6453681418501,57.68939634937214],[-124.64512939310848,57.689207753503624],[-124.64489274427793,57.68901917869954],[-124.64466243052975,57.68882954690353],[-124.64444268697596,57.688637780088634],[-124.64422931849603,57.68844383536565],[-124.64402240539097,57.688245470774746],[-124.64381976978191,57.68804490686227],[-124.64361927397877,57.687843243163705],[-124.64342305561657,57.68763938017823],[-124.6432247419268,57.687435495454366],[-124.643028527805,57.68723163196361],[-124.64282808074402,57.68702884622917],[-124.64262545798181,57.68682828072218],[-124.64241856212037,57.68662991393111],[-124.64220315818586,57.686434823821784],[-124.64198130338976,57.686244152850925],[-124.641750900387,57.686057879473346],[-124.64151190897053,57.68587712463459],[-124.64125799686404,57.68570294472313],[-124.64099335881218,57.68553538269489],[-124.64071375988975,57.685375516420486],[-124.64041915983115,57.68522446679359],[-124.64011609230039,57.6850755723706],[-124.63980451704313,57.68492995408362],[-124.6394844340766,57.68478761187148],[-124.63915802134179,57.684646325241026],[-124.63882515788889,57.684509457116626],[-124.63848596469437,57.68437364447725],[-124.63814032074467,57.684242250243784],[-124.63774244803447,57.684163023878774],[-124.63717929781292,57.68407088147878],[-124.63685817890948,57.684015991796464],[-124.63616472107603,57.68393035349832],[-124.63568304706685,57.683848015005154],[-124.6349908082889,57.6837287409116],[-124.63450708263183,57.68364525555132],[-124.63381662466263,57.683534964874156],[-124.63313838081208,57.68349320238621],[-124.6325914217517,57.6834180285262],[-124.63213903165857,57.68339653533485],[-124.6316222772513,57.68335643302161],[-124.6310074705331,57.68335904990796],[-124.63037746868476,57.68331777193473],[-124.62976363686782,57.68329347936704],[-124.6291976759751,57.68327977215461],[-124.62843419676707,57.68333242272924],[-124.62775315709995,57.68336798071179],[-124.62715577839758,57.683352817799964],[-124.6263611216341,57.68339728339856],[-124.62570901245516,57.68350265829011],[-124.62462933900865,57.68330753824631],[-124.62373400244752,57.683178245509126],[-124.62192621762202,57.68298674817571],[-124.62109957357534,57.68287273064474],[-124.62021677287954,57.68280297915789],[-124.61958917553139,57.6827538248596],[-124.61898444405415,57.682710513085645],[-124.61840870584467,57.68267759371842],[-124.61799481862879,57.68263626838546],[-124.61760684378199,57.68263221877622],[-124.61734107785851,57.682613744369256],[-124.61697448467157,57.68259870205735],[-124.61661628040751,57.68258374636543],[-124.61638402882133,57.68256674155282],[-124.61312019837705,57.68255054163684],[-124.6127037288506,57.68257982154726],[-124.61228734091017,57.68260685818815],[-124.61187095237473,57.682633893520645],[-124.6114546043843,57.68265980656459],[-124.61103825582366,57.68268571830024],[-124.6106219066928,57.68271162872773],[-124.61020551581473,57.682738658826835],[-124.60978908315234,57.682766808597094],[-124.60937470583399,57.68279610006175],[-124.60896024544601,57.68282763218965],[-124.60854570191458,57.6828614049804],[-124.60813107516579,57.68289741843341],[-124.6077185035489,57.682934573618404],[-124.60731896082606,57.683016721078694],[-124.60690741113622,57.683083041258435],[-124.60662876694364,57.68312945182832],[-124.60644149839447,57.683144302446934],[-124.60575652668443,57.68322904832385],[-124.6053063236849,57.6832624356145],[-124.60485591321014,57.68330142626973],[-124.60446632039609,57.68334105633595],[-124.60395426221686,57.68340182256076],[-124.60367623262401,57.68343141225326],[-124.60319357414433,57.68349136414888],[-124.60278489582424,57.68353639507724],[-124.60242424520128,57.68358753871245],[-124.60197382788733,57.6836265195782],[-124.60148088535392,57.683680749649454],[-124.60112274327736,57.68372070211415],[-124.60070189132882,57.683754383919904],[-124.60033363489161,57.68378413464839],[-124.59999745833035,57.68379740226665],[-124.59989239014294,57.68380189852793],[-124.5991142818093,57.68379479089507],[-124.59793114215425,57.68373404865734],[-124.59693287013424,57.68372347558313],[-124.5961380278955,57.68371505172552],[-124.59499270259117,57.68370963350681],[-124.59386036338917,57.683637058185845],[-124.5937603226292,57.6836191746061],[-124.59097560177018,57.68301652905516],[-124.54133585705551,57.67226170269077],[-124.5402247116972,57.67230328338504],[-124.53917918619591,57.6722749292034],[-124.53827322112285,57.67227165767394],[-124.5372781448383,57.672240481207325],[-124.53636006280283,57.67217089865787],[-124.53553949444199,57.672020524470106],[-124.53450761414508,57.672019198421445],[-124.53324696345938,57.672075886827066],[-124.53226803496258,57.671682631130984],[-124.5315565981625,57.67153119908192],[-124.53071871753767,57.67134135282018],[-124.5299926550123,57.67113480010478],[-124.52917225971733,57.67092719529984],[-124.52843699965861,57.670741838844194],[-124.52774021729134,57.67043018512549],[-124.5273451935682,57.670017592472036],[-124.52661226423285,57.66950367418474],[-124.52625735637484,57.669138624730124],[-124.52595717763259,57.66871474834326],[-124.52541702150165,57.668152506033536],[-124.52490133564099,57.667769962068654],[-124.52409549836631,57.66751426636614],[-124.52335451885543,57.66737031016512],[-124.52265253855921,57.667301920430184],[-124.52207392379829,57.667350411076264],[-124.52179010239999,57.667314720537554],[-124.521549131547,57.66720212974591],[-124.52090809997546,57.66659388517133],[-124.51986397137316,57.665354255269605],[-124.51943657542232,57.66507584811544],[-124.51805258890512,57.664699261742406],[-124.51199508687674,57.66457186532541],[-124.51107682016973,57.664566024484294],[-124.5101586419855,57.66455793541689],[-124.50924042004702,57.66455096090904],[-124.5083946741398,57.66467376075229],[-124.50754532393042,57.66483464311325],[-124.50671881154007,57.66489484940468],[-124.50609438092063,57.66498873150743],[-124.50536178987637,57.6650600822689],[-124.50471943285054,57.665182912652135],[-124.50340087601369,57.665329495929875],[-124.50246075571854,57.66539848411048],[-124.50180147044969,57.66547176615464],[-124.50116189128434,57.66552396094877],[-124.50008966044265,57.6655925577748],[-124.49822982941511,57.664633954230155],[-124.49731245793281,57.66465830665148],[-124.49639499621574,57.6646848945637],[-124.49547954019579,57.66471374179139],[-124.49456189752173,57.66474480069485],[-124.49364403029766,57.6647814578533],[-124.4927101495068,57.6648515692413],[-124.49176056523838,57.66494728806886],[-124.49069560997916,57.664938512881285],[-124.48943830581683,57.66491519830771],[-124.48855099108212,57.66486918293252],[-124.4874813720659,57.6647672496737],[-124.4864452961918,57.664665691296015],[-124.48576136737223,57.66456815395486],[-124.48498257321226,57.664325983764634],[-124.4841203060287,57.664073881476554],[-124.48329769525076,57.663669713039525],[-124.48264781501497,57.663141919337974],[-124.48232341642068,57.66244627609018],[-124.48188255688312,57.662145161923064],[-124.4806772417834,57.6616648151348],[-124.47987004685261,57.661296688076895],[-124.4790464609129,57.66091939622234],[-124.47835342144901,57.660633314745766],[-124.47796003043037,57.660404504800574],[-124.47756339843882,57.660256399452884],[-124.4773147836295,57.66018176761932],[-124.47703227579014,57.66011571673536],[-124.47675482051052,57.65992412308382],[-124.47622530945118,57.65969149826893],[-124.4751683501499,57.65933168050848],[-124.47457560456785,57.659055706020375],[-124.47350786218132,57.65849613581866],[-124.47256306069822,57.658216090827786],[-124.4718136691978,57.658081838874985],[-124.47068985673351,57.658029606443186],[-124.46961399940335,57.65808781932967],[-124.46905467719019,57.65766081300041],[-124.46889268239237,57.657259709249814],[-124.4687302680662,57.6570245723291],[-124.46849501699386,57.65682784237783],[-124.46772413159754,57.65650043209487],[-124.46680090094975,57.65605238059444],[-124.4655478242631,57.655621805322404],[-124.46463369125483,57.655519244651224],[-124.46368576459632,57.655474599691885],[-124.46292702994842,57.65536598121829],[-124.4619434802766,57.65506298070865],[-124.4614224191965,57.65483263697537],[-124.46084569817002,57.65447604347783],[-124.46037047794844,57.65430454317324],[-124.4598016947152,57.65411400922563],[-124.45939557852742,57.65415077445459],[-124.45899352191854,57.65408777834128],[-124.45863957502404,57.653975998438234],[-124.45828608255401,57.65390459439574],[-124.45800798263616,57.65383518943171],[-124.4578525983701,57.653841228602865],[-124.45768378351498,57.65376524655697],[-124.45743953801224,57.65363679912238],[-124.45727109027597,57.653551849374125],[-124.45707298728055,57.65347440363353],[-124.4569059115771,57.65335582647834],[-124.45658446013518,57.65321862704296],[-124.45634118157204,57.65306663878875],[-124.45600812920995,57.6528541667214],[-124.45571775062122,57.65272629918645],[-124.4553570235156,57.65242154515081],[-124.45497848725803,57.652142375100766],[-124.45453850495048,57.65187930774274],[-124.45402233816904,57.651531241510334],[-124.45355602127457,57.65114338443432],[-124.45311775475986,57.65083883949743],[-124.45262965477586,57.650574081787376],[-124.45229627863212,57.65037056802609],[-124.45201615034199,57.64999273343257],[-124.45171280346808,57.64977274811228],[-124.45131626154811,57.64957634270037],[-124.45106770473443,57.6494007329567],[-124.45064120956492,57.64916808910507],[-124.45030868219442,57.648944394555414],[-124.44996852757231,57.64865108123551],[-124.44983559995066,57.648416266685516],[-124.44969505920147,57.64806024858257],[-124.4495289483763,57.64791924491247],[-124.44932468377571,57.64773742244339],[-124.4491901637777,57.64723456751306],[-124.44922105925833,57.64704316559978],[-124.44923204298694,57.64687732313735],[-124.44946811690988,57.64669169043669],[-124.44971243108762,57.64650951821568],[-124.44994640531564,57.64632386017505],[-124.4501783280853,57.64613705632132],[-124.45043711700268,57.64595953821146],[-124.45069171345732,57.645781970554886],[-124.45095250085171,57.645606717807304],[-124.45121333167454,57.64543034368629],[-124.45148650083917,57.645259720655595],[-124.45176786416606,57.645093678712215],[-124.45206142832973,57.6449367503798],[-124.45336104217317,57.64385632053439],[-124.4537039983171,57.64372127340948],[-124.45405105030261,57.64358851615057],[-124.45440228963977,57.64345580695035],[-124.4547535265157,57.643323096834266],[-124.45509647286696,57.64318804616716],[-124.45543326930311,57.64304955858744],[-124.45575562775771,57.64290529455046],[-124.4560594499295,57.64275296349004],[-124.45634259531572,57.64259366197895],[-124.45659896222595,57.64242283328146],[-124.45684517238702,57.64224403572018],[-124.4570937490231,57.64205853684441],[-124.45733840754897,57.64186626335541],[-124.45757696179982,57.64166943262528],[-124.45780522221581,57.64146799584513],[-124.45802318887786,57.64126195307087],[-124.45822662672217,57.641052376410826],[-124.45841334993641,57.640841483292924],[-124.45857712018272,57.640628079673334],[-124.4587178922028,57.640413286524094],[-124.45883143133263,57.64019817599273],[-124.45891559772295,57.639983844630024],[-124.45896624810047,57.63976912279907],[-124.4589811515396,57.63955734878879],[-124.45897305907074,57.639344185495055],[-124.45895039531175,57.63912860964697],[-124.45891311490962,57.63891174212241],[-124.4588612181192,57.63869358290971],[-124.45879679981785,57.63847415639903],[-124.45871986022964,57.638253462572926],[-124.45863035396772,57.63803262229327],[-124.45853037583562,57.637811659945235],[-124.45842206620702,57.63758947903531],[-124.4583032394365,57.637368296893804],[-124.45819745863258,57.636878127492636],[-124.45813700387565,57.63671593923107],[-124.45803743390076,57.636588058756715],[-124.45796851552896,57.63637642960365],[-124.45789036682014,57.63603124471153],[-124.4578327896958,57.63579844097418],[-124.4577761668447,57.63559368368714],[-124.45765311557105,57.635373573407826],[-124.45757323744445,57.63507098207169],[-124.45756496114792,57.63496547285003],[-124.45755155794748,57.634677113777954],[-124.45750828574481,57.634401863354746],[-124.45754952464914,57.63405807117142],[-124.45749231258347,57.63386788551171],[-124.45767823357728,57.63362446495647],[-124.45761305490133,57.633424093828694],[-124.45767390663775,57.63316463640465],[-124.45734236696224,57.63271332711124],[-124.45724629593519,57.63234550561897],[-124.45708892255632,57.63219676509786],[-124.45660043395772,57.631638210561135],[-124.45632621364874,57.63137484318216],[-124.45615042506,57.6311126244038],[-124.45607955272182,57.63069239044108],[-124.45594283463305,57.63039698541267],[-124.45593401375551,57.62999654003414],[-124.4560307458575,57.629730774626466],[-124.45561896401736,57.62919329808854],[-124.45521982492211,57.62880847930443],[-124.4550738671694,57.62858585717763],[-124.45458345229989,57.628281832738296],[-124.45448633985646,57.62809454442096],[-124.45433518722243,57.62769131457763],[-124.45386467252585,57.6272080953437],[-124.45325613812355,57.62656514208147],[-124.4524217072443,57.626119152401785],[-124.45216175543949,57.625867157970504],[-124.45182830432353,57.62556832493894],[-124.45148951967748,57.62514383142464],[-124.4512097966164,57.62465835177824],[-124.45095757537635,57.62416646546073],[-124.45080183007636,57.623774392643355],[-124.45072291357084,57.623245287585114],[-124.45073789966361,57.62287876485779],[-124.45072195483118,57.622602713305504],[-124.4506080468711,57.62221225236547],[-124.45051871743088,57.62198916816592],[-124.45024939176021,57.6215576365522],[-124.45005243321663,57.6211493808901],[-124.44988608914319,57.620658500428334],[-124.44964130553751,57.62039546553269],[-124.44953186383997,57.61989628094684],[-124.44963581464422,57.619454547602736],[-124.44961774347497,57.61887233014419],[-124.44974390811436,57.61855308998341],[-124.45006601874499,57.61830791665222],[-124.45060572704362,57.618170704347264],[-124.45104237859005,57.618095080646455],[-124.45210195045094,57.61794713149879],[-124.45234128467197,57.61777948144766],[-124.45263986400421,57.61744319380231],[-124.45273380728756,57.61719422228373],[-124.452926872467,57.61692846850052],[-124.45315771889554,57.61660932970479],[-124.4533208410456,57.616307340586374],[-124.45340205527917,57.61595953739155],[-124.45350440569176,57.61550432783136],[-124.45342180950662,57.61506489701234],[-124.45322560440137,57.61453554701691],[-124.45302725451825,57.61405887722276],[-124.45288192693965,57.613566007009226],[-124.45283173551798,57.61315386911952],[-124.45284084069301,57.612930818984495],[-124.45273854980731,57.612512464512825],[-124.45267304516398,57.61221901497774],[-124.45236343335536,57.61185206002051],[-124.451871868592,57.61127439503394],[-124.45135537675706,57.61089716486848],[-124.45131269909581,57.61071163569221],[-124.45138214525142,57.61049826416793],[-124.45153497314683,57.610191672933865],[-124.45151004125168,57.60982805119351],[-124.45144366171878,57.60945385147412],[-124.4514558421597,57.609155705213034],[-124.45146199916888,57.608748713964076],[-124.45155864331272,57.60838203153621],[-124.45150724272551,57.608153787970366],[-124.45140474248416,57.607946252027645],[-124.45138841390124,57.60757712486373],[-124.45125858448364,57.60732104910346],[-124.45110399479904,57.60710729570601],[-124.45102977820254,57.60697634525066],[-124.45092383089032,57.6067508265372],[-124.451181775101,57.60633108775355],[-124.45128209771713,57.60597678471482],[-124.45143294719934,57.60551317823636],[-124.45136973538575,57.6050616415748],[-124.45122157423435,57.60448575747504],[-124.45103156741108,57.604063012294475],[-124.45063576509527,57.60375784217601],[-124.45055861472788,57.60293047964519],[-124.45056381836494,57.60254702847924],[-124.45005242272029,57.60184353286302],[-124.44938857560423,57.60138719293011],[-124.44877818742665,57.60095502619898],[-124.44823024975776,57.600583023141695],[-124.44759882375732,57.60040964249917],[-124.44711914603774,57.600262712539674],[-124.44650996139843,57.60000660593148],[-124.4464255932246,57.59997085127883],[-124.44564366196482,57.599690281927984],[-124.4445745704695,57.599418663131075],[-124.44315355063391,57.59915298200124],[-124.44190776143144,57.59890280834633],[-124.44089344366488,57.598878508831966],[-124.43972924037588,57.598782906154455],[-124.43902506579606,57.59875104029516],[-124.43827501273651,57.598765726427004],[-124.43770169169846,57.59875894901427],[-124.43782674198987,57.598162731589966],[-124.43803049803338,57.59753604622209],[-124.43799874885427,57.59723962671036],[-124.43829914470156,57.5964010220668],[-124.4384255305398,57.59597527078173],[-124.43850956110123,57.59556135416499],[-124.43856960623128,57.595170703132744],[-124.43861020508977,57.5947439383659],[-124.4390136439713,57.59302851541859],[-124.43854693998705,57.59216290619816],[-124.43780143897337,57.591867021201125],[-124.43705344181986,57.59158119477457],[-124.43630317907277,57.59129982273411],[-124.43553177642289,57.59102380290095],[-124.43474318663012,57.590758788601704],[-124.43393708536647,57.59051262529685],[-124.43311528585288,57.590292062413035],[-124.43227541676094,57.590103799761245],[-124.43141924361824,57.58995570758527],[-124.43053630431585,57.58984766128767],[-124.42963315049391,57.58977300998413],[-124.428716380686,57.58972398214068],[-124.4277904556983,57.58969390233031],[-124.42669940914973,57.58986033308327],[-124.42570137472417,57.590004314522275],[-124.42489257802615,57.59022791995674],[-124.42389080473619,57.590411091590944],[-124.42309640467512,57.590590002991675],[-124.42244503693091,57.59080201641095],[-124.42167194696603,57.59107200563582],[-124.42078932401347,57.591308161246644],[-124.42029851061454,57.591483956741676],[-124.41916266716864,57.59071456016077],[-124.4183204271397,57.590383764474225],[-124.41698649396443,57.59009977714363],[-124.4159915801723,57.589917401673226],[-124.41503709390541,57.58966934227335],[-124.41420638637585,57.58936445006622],[-124.41292013615669,57.588792798965784],[-124.41240857240186,57.588164286416706],[-124.41211056746032,57.58743405113783],[-124.41189136219943,57.58682138622663],[-124.41179556651312,57.58646027223737],[-124.4117160573281,57.586060105906235],[-124.41159713662452,57.58565161609307],[-124.41128930790026,57.58515675109029],[-124.41115671804458,57.58477500974287],[-124.41117391598576,57.584664200389994],[-124.41116521631685,57.58457214292315],[-124.41111468454831,57.58447958226531],[-124.41105447189065,57.58441830365512],[-124.41081640116556,57.58430666609473],[-124.4104594399615,57.584185747772786],[-124.41010248103309,57.58406482849959],[-124.40974561836572,57.583941666655484],[-124.40939294115448,57.58381855423621],[-124.4090403132456,57.583694320079736],[-124.40868977920165,57.583570110194756],[-124.40834352461665,57.58344370818422],[-124.40799731938266,57.58331618447202],[-124.40765320800989,57.58318868508236],[-124.40736460812255,57.58303494113648],[-124.40716801674748,57.582832965642226],[-124.40695218028196,57.58264085012746],[-124.40671724009101,57.58245523207054],[-124.40646519364178,57.58227837821416],[-124.40614267094242,57.582135436049924],[-124.40581364074208,57.58199802141731],[-124.40548038289134,57.58186167629],[-124.40514712743607,57.581725330338806],[-124.40493738145489,57.58163757294442],[-124.40409603696953,57.58059686606645]]]}' + )), 4326)))); + + INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Skeena','6','6- Skeena','AR10100000','WHSE Admin Boundary',2 + , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-128.2032425349904,53.05360130994405],[-128.20294537780728,53.053621429669285],[-128.20264903052092,53.05363929150601],[-128.202350869675,53.05364037127795],[-128.2020529850639,53.05364648520514],[-128.20175450811115,53.05365934445723],[-128.2014640131082,53.0537000703549],[-128.20119407055049,53.053776293518496],[-128.2009251691945,53.05385472967907],[-128.2006521538217,53.053925959832966],[-128.20038325098076,53.05400440371203],[-128.20011927041435,53.05408779526158],[-128.2000007749107,53.05412811826855],[-128.19986025626577,53.054176698678525],[-128.199601269828,53.054266157006374],[-128.19934032758027,53.05435397415573],[-128.1990823096302,53.05444397823747],[-128.19883315288496,53.054542784720255],[-128.19858497948263,53.05464269334127],[-128.19839048470783,53.05476794982015],[-128.1982425148553,53.05492540472543],[-128.19801174408332,53.05503619802224],[-128.19773167776304,53.05509801939751],[-128.19743920054844,53.05513653896485],[-128.1971454041907,53.055167791323655],[-128.1968712874032,53.05523622590686],[-128.1966033686843,53.05531576352313],[-128.19633747539328,53.055398616872075],[-128.19606958339938,53.05547870875377],[-128.19579362414805,53.05554774001935],[-128.1954994472914,53.055571713224545],[-128.195198159923,53.05558459890543],[-128.194920171314,53.055632366724254],[-128.19468071437285,53.05573827471401],[-128.19438941688858,53.05578180468286],[-128.19413095941925,53.05586395865023],[-128.19384823252955,53.05592862702937],[-128.19351705491104,53.055942063899785],[-128.19328684778114,53.055955874694554],[-128.1929707273393,53.05602564544054],[-128.19268023639225,53.05608485018871],[-128.1923638533564,53.056149575144936],[-128.19204120378754,53.056147164354925],[-128.19177787995102,53.05613523910281],[-128.1914624126864,53.056127079384446],[-128.191170733529,53.05616332634093],[-128.19085673728682,53.05622015587434],[-128.19058944336552,53.05623968973908],[-128.19030426247207,53.05629318498636],[-128.1900103950498,53.05632329964041],[-128.18971549928662,53.056351755611765],[-128.18942927444195,53.0564030260695],[-128.18914406186602,53.05645595406465],[-128.18885983333467,53.05650999307838],[-128.1885818293084,53.05657568201753],[-128.18830072616484,53.05663582272979],[-128.18803767560865,53.05671972517131],[-128.18779144755788,53.056821816214224],[-128.18756173894909,53.05693593158389],[-128.18736973288725,53.057074009847305],[-128.18722552840816,53.05719662903334],[-128.18697204867274,53.05733920863635],[-128.18673658691975,53.05745063084624],[-128.1864834745877,53.0575461205131],[-128.18619914857683,53.057598468711795],[-128.18592314535456,53.05766691210111],[-128.18564614252074,53.05773426130308],[-128.18536910973435,53.057801045407196],[-128.18509303123363,53.0578683671936],[-128.18481547384746,53.057943006664935],[-128.18474665049854,53.05811355130171],[-128.18468466062305,53.05828957439568],[-128.1846151402897,53.058464615794925],[-128.18455409086684,53.0586406213605],[-128.18443634916187,53.05880534499042],[-128.18433566495221,53.058974236830885],[-128.18422271450842,53.059141113521584],[-128.18413430824202,53.05931258492664],[-128.18405532808313,53.05948555885137],[-128.1838619540087,53.05961580911107],[-128.1835692161593,53.059650370258545],[-128.1832698025594,53.05968224716038],[-128.18295911799237,53.05973115564012],[-128.18276154221505,53.05985251372034],[-128.18266967990886,53.060029643739895],[-128.18255198465036,53.06019548529001],[-128.18241433465647,53.060354969620604],[-128.18226431762287,53.06051019838815],[-128.18213141511154,53.06067128053808],[-128.18201746726714,53.06083705215303],[-128.18188645954677,53.06099865495212],[-128.1817687444578,53.061163930907455],[-128.18164436756385,53.06132709680201],[-128.1815133569099,53.061488699141556],[-128.18136333257294,53.061643926663],[-128.18121233653528,53.061798606931916],[-128.1810019854638,53.06192636764651],[-128.18076936358088,53.06203940144464],[-128.1805032395122,53.06211885874392],[-128.1802231875154,53.06218232271106],[-128.17994533461209,53.06225191533909],[-128.17965888787668,53.062209001613475],[-128.17937624184154,53.062149202135444],[-128.1790800826272,53.062135612155345],[-128.17878236511746,53.062146147067885],[-128.17848492052224,53.06216229012469],[-128.17819336084966,53.06220185573315],[-128.17791019397046,53.062259210632824],[-128.1776450473076,53.062339764318146],[-128.17740271451027,53.06244568840907],[-128.17715932349233,53.062549380536765],[-128.17692493463724,53.062664681039536],[-128.176648108003,53.06271798794182],[-128.1763449388882,53.062731989075026],[-128.17606454689326,53.062788723286666],[-128.17581186672146,53.06289370473094],[-128.17565001758567,53.06303793241041],[-128.1755455517946,53.06320688520207],[-128.175448802067,53.0633807446307],[-128.17531301183033,53.06354074144996],[-128.17518577921774,53.063703387370886],[-128.17507936925648,53.063871254450845],[-128.1749795914146,53.06404068519242],[-128.17489021044057,53.06421215730346],[-128.17481590426914,53.064386158584],[-128.17471706581068,53.06455557170763],[-128.17465312763215,53.06473105884901],[-128.17460330943993,53.06490853680101],[-128.1745553736876,53.06508597106683],[-128.17449143450045,53.065261467026566],[-128.17447446250335,53.065441137877535],[-128.17447243750306,53.06562053341921],[-128.1744573336824,53.06580016981938],[-128.17443755123924,53.065979892363266],[-128.17441775464235,53.0661590501645],[-128.17437710075876,53.06636942372517],[-128.174294924326,53.06620727277206],[-128.17409758084722,53.066060694378784],[-128.17385083347534,53.066008067350744],[-128.17362021247646,53.066033056101766],[-128.17338834641882,53.06614325344731],[-128.17320095728465,53.06622741390949],[-128.17298722854215,53.06632663167122],[-128.17280714627034,53.06648015822387],[-128.17263796760824,53.06666431546015],[-128.17235148051287,53.066712184418726],[-128.17205670119813,53.06674451139847],[-128.17175903584553,53.0667567129548],[-128.1714604665226,53.06675155060394],[-128.1711624285816,53.066756475575716],[-128.17086408859174,53.06675579144743],[-128.17056567782805,53.06675343087118],[-128.17026331494174,53.066747223219124],[-128.16997493737455,53.06677662034686],[-128.16970287206976,53.0668505654037],[-128.16943397309666,53.06693173355744],[-128.16916217679946,53.067011268343414],[-128.16887496788706,53.067045134172815],[-128.16857648299688,53.06704164891207],[-128.1682758868039,53.06703315275395],[-128.16797785995854,53.06703862545047],[-128.16768007690817,53.06704857685652],[-128.16738115196122,53.06705462950864],[-128.16708301041896,53.067057860078634],[-128.1667852270238,53.0670678092285],[-128.16648762851125,53.067081673193165],[-128.16619038836032,53.06710226470134],[-128.16589528690173,53.06712841217486],[-128.1655537152591,53.067269760531346],[-128.16530544625724,53.067370718393654],[-128.16504759115494,53.06746680257711],[-128.16480799288783,53.06757264925305],[-128.16462038531034,53.067707799845095],[-128.16448374177077,53.067870605394276],[-128.16434133517674,53.068030153443644],[-128.16414067329734,53.0681661074403],[-128.163889058582,53.06827497031324],[-128.16361508792218,53.06831194342595],[-128.16331823366716,53.06828543023159],[-128.16301836952886,53.06823656076965],[-128.1627314710261,53.06818520213755],[-128.16245047795633,53.068121412835886],[-128.16216466559425,53.06807283989566],[-128.1618655461584,53.06805701838024],[-128.16156821109752,53.068075913860284],[-128.16128466847354,53.068127064570156],[-128.1610066160724,53.06819436383966],[-128.160728635243,53.06826279107454],[-128.1604487125473,53.06833012321901],[-128.16016633675014,53.06838573375211],[-128.15986911312066,53.06837043744685],[-128.15960678030098,53.06828723446911],[-128.15934340815576,53.068201816938725],[-128.15906180658584,53.0681441917007],[-128.15884497910278,53.06801812270311],[-128.1586335736673,53.06788802628152],[-128.15837959050603,53.067803555990594],[-128.1580847273406,53.06776074364118],[-128.1577847131085,53.067745484216736],[-128.15748747739192,53.06776660957686],[-128.15718881521698,53.067796172072825],[-128.15689742963087,53.067785236666076],[-128.15661569202555,53.06772481021487],[-128.1563311594954,53.067664425179736],[-128.15602508614606,53.06764031310319],[-128.15578939570838,53.06754764750146],[-128.1556026786412,53.06740645024788],[-128.15542211161699,53.06725729358869],[-128.15523623868626,53.067114403383776],[-128.15504851303223,53.06697153774607],[-128.15482853545691,53.066856728900625],[-128.1545580492792,53.0667781566731],[-128.15426570792567,53.06672968405353],[-128.15396991107673,53.066705370311574],[-128.15366690851835,53.06670473678256],[-128.15337566768272,53.06673302442554],[-128.15310478472546,53.066812514050596],[-128.15285258133076,53.06691015408368],[-128.15261502295115,53.06701985730235],[-128.15240165055462,53.06714536879812],[-128.15221912412937,53.067289383193675],[-128.15203363029295,53.06743007945963],[-128.15181158297682,53.06755070799221],[-128.15156558936363,53.06766000666889],[-128.15130321103914,53.06774156995951],[-128.15101625638022,53.06776249165226],[-128.15070957065146,53.06774453788536],[-128.15040916731687,53.06775842120677],[-128.15011141692418,53.06776944852672],[-128.1498302280899,53.06771964085922],[-128.14955693498726,53.06764109942569],[-128.14926615932973,53.067604916677276],[-128.1489678481132,53.067586249974916],[-128.14866837755775,53.0675816113278],[-128.14836844725468,53.067586504092205],[-128.14806611905797,53.06759929551058],[-128.14777202999528,53.067627064954884],[-128.14749427747978,53.06768199592619],[-128.14724813002616,53.067788481264145],[-128.14709251645516,53.06796562710827],[-128.14695833166934,53.068122761533594],[-128.1468054320026,53.068279671076105],[-128.14661563245767,53.06839130028379],[-128.14642620648547,53.06849170366668],[-128.14631051141907,53.06862608164847],[-128.1461466729886,53.06880729446319],[-128.1460135371173,53.06896665050816],[-128.14585012012967,53.069119274844816],[-128.14570189168967,53.06927609783747],[-128.14554790005542,53.069430227383855],[-128.1453652702926,53.06957254633147],[-128.1451694308997,53.06971286300341],[-128.14495709157708,53.06984114835456],[-128.14472026826513,53.06994745857117],[-128.1443806629321,53.0700371433585],[-128.1441165299979,53.070047544716395],[-128.14407772265432,53.069927184465136],[-128.14414289920813,53.069736556767204],[-128.1442476476878,53.069533435708564],[-128.14434451120286,53.0693590469812],[-128.14444629290122,53.06918961767978],[-128.1445556042225,53.069021163507735],[-128.144673429422,53.06885480547334],[-128.1446939544051,53.06866890722144],[-128.14473401449715,53.068499477663764],[-128.14481688025043,53.068325898627336],[-128.1449139937383,53.06815655354128],[-128.14498261017604,53.067978749287676],[-128.14511586803948,53.06784013460323],[-128.14524870000653,53.067693115694446],[-128.14529481513566,53.067532534601916],[-128.14530563438677,53.06735803109443],[-128.14544650379437,53.067185083445025],[-128.14556580003838,53.06702934222874],[-128.145641837329,53.06686878212707],[-128.14562806632028,53.06668911152366],[-128.1456180477388,53.06650938167881],[-128.1456126924328,53.06632955810443],[-128.14561013281028,53.06614969267494],[-128.14562066672192,53.06596958031348],[-128.14559107907002,53.06579132699589],[-128.14551214066003,53.06561732442999],[-128.1453769321513,53.065458360974475],[-128.14521127185512,53.06530724149225],[-128.1450815288411,53.06514537148039],[-128.14498965680826,53.06497441046849],[-128.144896858799,53.064803466204246],[-128.14481428843771,53.06463121508747],[-128.14475392623166,53.06445464154364],[-128.14470292080887,53.06427788901933],[-128.14468728671977,53.06409826093817],[-128.1446558074157,53.06391947668092],[-128.14466076835907,53.063740030445544],[-128.1446834708827,53.063560261899575],[-128.144701494946,53.06338057831697],[-128.14469524577314,53.06320133566511],[-128.14465258537027,53.06302331044877],[-128.1445949794229,53.06284556566753],[-128.14451687896567,53.06266930514022],[-128.14429262860227,53.0625612807841],[-128.14402908147602,53.062471349303394],[-128.14376549336654,53.062380288050385],[-128.1435335470134,53.06226791814162],[-128.1433368939435,53.06213248751914],[-128.14314109909228,53.06199536402132],[-128.14307000131282,53.061938919921005],[-128.14294267986207,53.06186164180938],[-128.14274329222937,53.061727380848964],[-128.14254939746004,53.061590777923826],[-128.142355503939,53.06145417466956],[-128.14215614857946,53.061320477141166],[-128.1419558809374,53.06118735184518],[-128.14177020750898,53.06104667062079],[-128.14160096702037,53.060898409145835],[-128.14143082957577,53.06075072867948],[-128.14126160639856,53.06060246642178],[-128.14109788902698,53.0604524181239],[-128.14094793757795,53.0602970800439],[-128.1408044202988,53.060139383146264],[-128.1406673506768,53.059979892180415],[-128.14052934007807,53.05982040915381],[-128.1403913459139,53.05966093463987],[-128.14025514904316,53.0595002974393],[-128.1402088596698,53.059324022386186],[-128.14014667098337,53.0591474795461],[-128.1400852867771,53.05898717175804],[-128.14000487332092,53.05878292583697],[-128.13994790826848,53.058598997336816],[-128.1400357064275,53.05843038013534],[-128.14007059071218,53.05830644024346],[-128.14003400947442,53.05808178701632],[-128.14002942291827,53.057898029890865],[-128.1400152648171,53.057691470714694],[-128.13992031977116,53.05755138379637],[-128.13965791116573,53.057575762089414],[-128.13933469310788,53.057636548169924],[-128.13903779262074,53.05762566993301],[-128.13874100048054,53.05759853930793],[-128.1384460203401,53.057570254140735],[-128.1382131728555,53.05745789052681],[-128.1379821531715,53.057344372387185],[-128.1377746429026,53.05721529935205],[-128.13757439488197,53.057081601582446],[-128.13737326349957,53.05694904942524],[-128.13716304682706,53.056821701340056],[-128.1369437168914,53.05669900178163],[-128.13671003599745,53.05658832737405],[-128.13646281826226,53.056487430312764],[-128.1362120218044,53.056389404439486],[-128.13594440294153,53.05631017407958],[-128.13566455458042,53.05624797903793],[-128.13537696989704,53.05619937501278],[-128.135090327348,53.05615075325663],[-128.13479700231477,53.05611794533477],[-128.13450286388624,53.056087393352094],[-128.13420631073419,53.056064731133354],[-128.1339129585909,53.05603135655527],[-128.13362300545802,53.055991202931956],[-128.13334403281934,53.055927865674],[-128.13307376823104,53.05585147470728],[-128.13280170634755,53.05577680155761],[-128.13253588149576,53.05569585423489],[-128.13226295131608,53.055622316534375],[-128.1319805713876,53.05556519855037],[-128.1316888678167,53.05552731382304],[-128.13139077621486,53.055529889854924],[-128.1310921522578,53.05554033053484],[-128.13079590186905,53.055560807412],[-128.13050087428206,53.05558687530915],[-128.13020459539467,53.055606795202316],[-128.12992654787624,53.05567346628246],[-128.12963470652136,53.055707312345305],[-128.12933870740727,53.055732829862485],[-128.12904231456307,53.05575050691809],[-128.12875314086,53.0557069644688],[-128.1284961863453,53.05561631546693],[-128.12827243496625,53.05549816390277],[-128.12805678905167,53.05537369596234],[-128.12785750729665,53.0552399738288],[-128.12769477159867,53.05508933401455],[-128.12749803555653,53.05489446788059],[-128.12729818501094,53.054655939599755],[-128.12713375402896,53.054508692511],[-128.12691912740925,53.054385890147394],[-128.12668085132518,53.054275844218274],[-128.12644344684276,53.05416466114798],[-128.12621753202683,53.05404037497],[-128.12598726506246,53.053922336600856],[-128.12573545336411,53.05384055695265],[-128.12543904504042,53.05383916893122],[-128.12513364865606,53.05384466782883],[-128.12484357833682,53.05380168820842],[-128.12455676801,53.05374912542256],[-128.12426447807854,53.05371795007915],[-128.12396738508036,53.05370256303043],[-128.12366779102453,53.05369338110082],[-128.12336853336146,53.05369091819451],[-128.1230705384318,53.05369515764932],[-128.12277415720723,53.05371281899124],[-128.12247839196078,53.053742799196286],[-128.12218251427117,53.0537705387312],[-128.12188682133325,53.05378313659872],[-128.12158932181848,53.053759904083364],[-128.12129281959827,53.05373776490395],[-128.12099437371285,53.053751539950575],[-128.12069283527603,53.05377825648295],[-128.12040153149002,53.05382272390962],[-128.12013972856104,53.05389636194436],[-128.11993112857857,53.05402453636254],[-128.1197267389845,53.05416216749756],[-128.11948718654082,53.05426959849178],[-128.11922919549065,53.05436334341789],[-128.11895801972926,53.05443659099302],[-128.11866202868273,53.05449963862061],[-128.1183543535709,53.05455336245711],[-128.11806365187982,53.05457258686361],[-128.11782184321888,53.05452256317551],[-128.11764208265967,53.05436716675259],[-128.1175154879833,53.054190647821066],[-128.1174376835732,53.054017728416824],[-128.11739596189085,53.05383744482982],[-128.11737109443004,53.0536574148738],[-128.11735747554434,53.053478304082546],[-128.11735221389193,53.05329792238564],[-128.11735539296998,53.053117945254826],[-128.11739749899343,53.05295016542567],[-128.11742840201612,53.05276409501782],[-128.11745051108625,53.05258882707129],[-128.1174833369096,53.052403834108695],[-128.11756150919135,53.052228125260974],[-128.117606179756,53.052074306876655],[-128.1176286552779,53.051887822526794],[-128.11759624583817,53.051706806763484],[-128.11754473504652,53.051536222415734],[-128.11755549663917,53.0513583599486],[-128.11754564103776,53.051179737423034],[-128.11755815855688,53.05099960147122],[-128.1175697064382,53.05081891792484],[-128.11755700081872,53.05063922550835],[-128.11752185433818,53.05045937969492],[-128.11751480864956,53.05028071563356],[-128.11757994310244,53.05010635240671],[-128.11766472400743,53.04993220157465],[-128.1177006917047,53.04975388663852],[-128.11773004545157,53.04957400440357],[-128.117757460394,53.04939303595549],[-128.11777928689727,53.04921216775777],[-128.1177927010589,53.04903145048778],[-128.11779309709814,53.048852087771145],[-128.11777679568567,53.048675266607475],[-128.11773332145927,53.0484972470763],[-128.11764308702058,53.04831838958696],[-128.1175086572173,53.04815322067148],[-128.11733171463374,53.048016273683466],[-128.11709846789978,53.04791227973434],[-128.11682967662188,53.047826302458574],[-128.1165562379839,53.04774097290391],[-128.11630997697895,53.047638331817254],[-128.11610329797364,53.04750472321285],[-128.11585035060503,53.04741789470558],[-128.11555289119218,53.04737559050169],[-128.11529928354443,53.04729437753955],[-128.11512170998787,53.04714455197297],[-128.11486160346215,53.0470640195456],[-128.11457545703402,53.047004686646886],[-128.11430883638994,53.04692483471834],[-128.11408680158667,53.04680157759517],[-128.1138408313644,53.04670454012594],[-128.11356105060946,53.046641727887675],[-128.11326817658178,53.04659764998222],[-128.11297515747498,53.046569267563164],[-128.11267809050128,53.0465532875771],[-128.1123785774396,53.04654464143028],[-128.11208007421274,53.04653765342578],[-128.11178169748246,53.04653290434732],[-128.1114825743473,53.04653208678556],[-128.11118339595637,53.04653015745132],[-128.11088586192972,53.046523705095524],[-128.11058219628558,53.0465067169132],[-128.11030629630272,53.04644663456887],[-128.1101693297966,53.046285986978],[-128.11014453814946,53.04610707495517],[-128.1101580114496,53.045926913735755],[-128.11017705972318,53.04574609680547],[-128.11018210859535,53.04556553017851],[-128.11019243909766,53.04537870823025],[-128.11017691679945,53.04519794443598],[-128.11008210593081,53.04503934084009],[-128.10985918008444,53.04491665692837],[-128.10962878541542,53.04479410613001],[-128.10950216130496,53.04463439383192],[-128.10940943933156,53.04446117974056],[-128.1092863420793,53.044297476284456],[-128.1091530933138,53.04413619608507],[-128.1090097487802,53.04397845908557],[-128.10885167307904,53.04382546906153],[-128.10866529972898,53.0436858711843],[-128.10846064277223,53.04355445547796],[-128.10825598663737,53.043423030446874],[-128.10806958942183,53.04328287608733],[-128.1079014230263,53.04313342801494],[-128.10772782231723,53.04298743969175],[-128.10752232857152,53.042857714337224],[-128.10728317067668,53.04274652536098],[-128.10701859669865,53.042669418887975],[-128.10672429350245,53.04263319757534],[-128.10643337724127,53.04259018924976],[-128.10614513147198,53.04254433460848],[-128.10585683031357,53.04249735032272],[-128.10556855779527,53.04245092980131],[-128.10536850884884,53.04231774075293],[-128.10516841866604,53.04218399611162],[-128.10496837223252,53.042050806364294],[-128.10476738588198,53.041917633055405],[-128.10456551515517,53.04178559616044],[-128.10436090758944,53.041654728711286],[-128.10415537506043,53.04152387741392],[-128.10394527890276,53.04139534908372],[-128.1037262077195,53.041274262230495],[-128.10349085893418,53.04116411886478],[-128.10324386547376,53.0410642713421],[-128.1029914249662,53.04096732730731],[-128.10274075458696,53.040868665263766],[-128.10249915971173,53.040764236140475],[-128.10226109142303,53.04065581582606],[-128.10202841991898,53.04054282399174],[-128.10180479369285,53.04042405677434],[-128.1015874905023,53.04030070161539],[-128.1013702160755,53.04017790155913],[-128.10113103394727,53.0400655799618],[-128.1009147861021,53.03994443778676],[-128.1007797988492,53.03978486543118],[-128.1006759746351,53.03961296345029],[-128.10061580362859,53.03943580035096],[-128.10059954943125,53.03925841138081],[-128.1006075150753,53.039079479208254],[-128.10062846822296,53.038898629856995],[-128.10065131595042,53.03871830275144],[-128.1006657407937,53.03853756957565],[-128.10066618159172,53.03835765031516],[-128.10065536305547,53.0381768015549],[-128.1006222490711,53.03799860062615],[-128.10055385178183,53.03782494674536],[-128.1004575575766,53.03765403139184],[-128.10035201098054,53.03748495763653],[-128.10025293800868,53.03731465654641],[-128.1001584579608,53.03714258767486],[-128.10004652486433,53.03697643423313],[-128.09989416448173,53.036824451874004],[-128.0996977554855,53.036688381869794],[-128.09949581459995,53.03655409592989],[-128.09932505043605,53.0364074892057],[-128.0991835928118,53.036249142134935],[-128.0990402844695,53.036090836792496],[-128.09888598043563,53.03593720181132],[-128.09872614684858,53.03578479493622],[-128.09855902449613,53.035636436415764],[-128.09838088156695,53.035491636590876],[-128.09818908856454,53.03535436109545],[-128.09797266466458,53.03522929798563],[-128.09776997611874,53.03509838541038],[-128.09761023248257,53.03494765245165],[-128.0974678325889,53.03478876414039],[-128.09731532329002,53.03463341829252],[-128.09714635825026,53.03448509059752],[-128.0969398588861,53.0343525674131],[-128.09671962643014,53.0342258838389],[-128.09647209503294,53.03413275813564],[-128.09619130252656,53.034085061786094],[-128.09589116195676,53.03406181388066],[-128.09559003992334,53.034037452710976],[-128.0953010056152,53.03399326357955],[-128.09501689737704,53.033934978612784],[-128.09475309266693,53.03385278310649],[-128.09451650834558,53.033735362621044],[-128.09424818227905,53.03367510971278],[-128.09395029896956,53.03365965469788],[-128.09364599755594,53.03366562025166],[-128.09334985436328,53.033685447916405],[-128.09305932470318,53.03372423174653],[-128.09277018964121,53.03377251387965],[-128.09248094395736,53.03381856428005],[-128.09219178021857,53.033866289477494],[-128.0917238805567,53.033870658295214],[-128.0913759933789,53.033598825182104],[-128.09134032169177,53.033424586180644],[-128.0913379387547,53.033243596204635],[-128.09134198711223,53.03306024129448],[-128.09132657736282,53.03288003820674],[-128.09125257012863,53.03270535771463],[-128.0912176050597,53.03252662219845],[-128.09118351114768,53.032346750245736],[-128.0911578264336,53.0321667292105],[-128.09114623471666,53.03198814428751],[-128.09117018314268,53.03181060634058],[-128.09126536675322,53.03163741046834],[-128.09140048531884,53.03147863515609],[-128.0915620865957,53.03132612493185],[-128.09170569476032,53.03116888462833],[-128.0918274383591,53.031004185014886],[-128.09194161786732,53.03083737743271],[-128.09204541057346,53.03066851196207],[-128.0921360788745,53.03049875815498],[-128.09212995845905,53.03031782514385],[-128.09209966637346,53.03013900673423],[-128.09203589378794,53.02996358897067],[-128.09194706403161,53.02979141346492],[-128.0918666155864,53.02961852429323],[-128.09174086395478,53.02945541513025],[-128.09163542761047,53.02928745276587],[-128.09150783835904,53.02912493194183],[-128.0913977847847,53.028958181168235],[-128.09128493884293,53.02879147082713],[-128.09116657625648,53.02862654411679],[-128.09104915546865,53.02846160059334],[-128.09092430854517,53.028297909558276],[-128.09079950531475,53.02813478258868],[-128.09068114644342,53.02796985532794],[-128.09059882487202,53.027796998458456],[-128.0905220919171,53.02762348648017],[-128.0904397721055,53.02745063842453],[-128.0903205179664,53.02728628266328],[-128.09021877146165,53.027117141621716],[-128.0901105393366,53.026949227415635],[-128.09001807310173,53.026778800783994],[-128.0899422424797,53.02660470744079],[-128.08986922049093,53.02643057324867],[-128.08977765446934,53.02625956549355],[-128.08965837889772,53.026094653429475],[-128.08951790514712,53.02593572163357],[-128.0893444379219,53.02578970481218],[-128.08914631499343,53.025655334178616],[-128.08893549929775,53.02552846985895],[-128.08871918048013,53.02540395354095],[-128.08855675301885,53.02525437718761],[-128.08832829351854,53.02514856673913],[-128.08809216053243,53.025038963810445],[-128.08789406000074,53.024904590750566],[-128.08771236031097,53.02476208026191],[-128.08754527967218,53.02461258492599],[-128.0874384184441,53.024453055850785],[-128.08742286369514,53.02432666103055],[-128.08745323196797,53.02418432480564],[-128.08758777334353,53.024032854032754],[-128.0878059320801,53.02391016932867],[-128.0879826002674,53.023760750307574],[-128.0881202935751,53.023597457280225],[-128.08813701873123,53.02342453099623],[-128.0880375865118,53.02324524929059],[-128.08785524294498,53.02310835527584],[-128.08761064797673,53.022997224286094],[-128.087336859694,53.02291911773342],[-128.0870535371167,53.02287537349483],[-128.08675715844163,53.02285090718717],[-128.08645562104695,53.0228355081647],[-128.08615592271988,53.02281951087592],[-128.08585886691182,53.02280010317327],[-128.08556190645507,53.02278293499036],[-128.08526429540743,53.02277138243824],[-128.0849671244459,53.022768789152686],[-128.08466871902272,53.02277910365637],[-128.08437194161678,53.02280340529036],[-128.08408248668746,53.02284383538962],[-128.08379939996007,53.02289983692226],[-128.08351946231375,53.022963072943895],[-128.08323848811403,53.0230240846457],[-128.08295336810468,53.02307676606275],[-128.0826672112562,53.02312721417103],[-128.08238005847878,53.023176567150024],[-128.08209287735679,53.023225354947044],[-128.08180667631817,53.023275245705825],[-128.0815205444405,53.02332625550871],[-128.0812335259979,53.02337840121987],[-128.08094172308643,53.023428388686334],[-128.0806627456955,53.02349215683401],[-128.08041987140595,53.02358723968666],[-128.0802151434272,53.023717520337954],[-128.0800240840797,53.02385989024213],[-128.07982135756973,53.02399294176066],[-128.0796109161706,53.02412108006858],[-128.07939365853952,53.024243733281395],[-128.07915219652435,53.024348877193894],[-128.07889541622583,53.02444644377833],[-128.0786068330275,53.024447601827376],[-128.07831219680784,53.02443990703243],[-128.0780303614921,53.02450259811801],[-128.0777378346592,53.02453801757239],[-128.07744054785007,53.024552221706315],[-128.07714245172312,53.0245501897669],[-128.0768462590181,53.02452962308265],[-128.0765499570583,53.02450681564483],[-128.0762713732627,53.024445017664156],[-128.0759774814331,53.02441431959542],[-128.07568190254807,53.02438701339672],[-128.0753858211682,53.024368683055215],[-128.0750875893785,53.024363841429754],[-128.07478950961956,53.02436180328264],[-128.07449116851348,53.024354720137886],[-128.07419270545003,53.02434483148088],[-128.07389908931955,53.024319728264075],[-128.07361270526474,53.024270400853375],[-128.0733156450457,53.024250961585885],[-128.07303788413705,53.02418689967322],[-128.07276525952807,53.0241132231167],[-128.07249617805013,53.024035564784924],[-128.0722200131474,53.02396586810427],[-128.07193706592167,53.023910306507055],[-128.07164156038831,53.023884674931885],[-128.0713430075319,53.02389216018521],[-128.07106574298354,53.02395307730259],[-128.07078071044444,53.024007960328674],[-128.07056657538953,53.02411821140272],[-128.07026495275062,53.02410108651976],[-128.06999211511317,53.02402292351904],[-128.06971855605224,53.02394925642604],[-128.06942815853694,53.02387476317684],[-128.06910964556542,53.02389436759885],[-128.06885437940463,53.023908368987925],[-128.06853627324415,53.023917311057616],[-128.0682543286815,53.023920578318574],[-128.06792618140489,53.02393417867182],[-128.06756161434296,53.02394785155299],[-128.06724176575932,53.02401679678808],[-128.0669943739787,53.02409679305676],[-128.0667300594123,53.0241552309769],[-128.06646466799594,53.024229945628214],[-128.06622705712635,53.024299680191504],[-128.06595992068588,53.02435760977282],[-128.06571669410076,53.02446555441985],[-128.06547538786717,53.02457459484119],[-128.06523294871673,53.02467972671936],[-128.0649953459392,53.02478813629275],[-128.0647674836249,53.0249047775955],[-128.06454735954372,53.02502689676993],[-128.06430479410844,53.02512922194649],[-128.0640299225093,53.02520128991747],[-128.063774587988,53.025290950806266],[-128.06355835576198,53.02541636281737],[-128.06333920543327,53.02553957455339],[-128.0630965801774,53.02564078616498],[-128.06281867802173,53.02570842035649],[-128.0625526975278,53.02579041792018],[-128.0622826956259,53.025866880362194],[-128.06200516022597,53.02592273158815],[-128.0618759847746,53.026090335938804],[-128.0618938027679,53.02626489444313],[-128.06198813056295,53.02643755054122],[-128.06208992662073,53.02661008497102],[-128.06193203524776,53.02680228745362],[-128.06169518988082,53.02690731376948],[-128.06144680145346,53.02700581554575],[-128.0611898282875,53.027100538935656],[-128.06092989860247,53.02719195948249],[-128.0606708119783,53.02728167878078],[-128.06040277270523,53.02736034426338],[-128.0601298281441,53.02743404598264],[-128.05987162488887,53.027522627070915],[-128.05962814782598,53.0276260878835],[-128.05938765224548,53.02773341498859],[-128.05914033008597,53.0278346909826],[-128.058893034119,53.02793653093755],[-128.05870631472044,53.028073748804694],[-128.0585465289947,53.02822730174165],[-128.0583857079987,53.02837863954426],[-128.05820580992196,53.02852189827933],[-128.05804592705894,53.028673210216084],[-128.0579184979045,53.028839093158396],[-128.0577814226307,53.028998418451444],[-128.05758299026965,53.029125750014686],[-128.05731457727956,53.02921618017949],[-128.05712089837178,53.02934510495932],[-128.05701244614758,53.029516825581865],[-128.05695188985834,53.02969387171481],[-128.0569253715703,53.02987929194822],[-128.05688643929923,53.03005932381962],[-128.05678586235462,53.030220253232514],[-128.05660082985057,53.030354066043685],[-128.0563683213901,53.03047245673752],[-128.0561330460211,53.03059146012955],[-128.0559283724913,53.03072505812656],[-128.05574027926744,53.030872939230214],[-128.05562089062175,53.03103138840021],[-128.05565830804832,53.03120617037339],[-128.05571006054592,53.03138741929108],[-128.05568477522067,53.03157898720008],[-128.05558803256946,53.03174209040363],[-128.05532357318017,53.03179881801331],[-128.05501267912038,53.031822734219915],[-128.05471693710282,53.03185086055144],[-128.0544204090577,53.031862750471575],[-128.05412210016667,53.03185730034829],[-128.05382361643808,53.03184792469361],[-128.05352544294382,53.03184526860846],[-128.05322899563546,53.031858831070906],[-128.05293205579707,53.031881377951194],[-128.05263488367547,53.031899435339405],[-128.05233792157358,53.03190235993731],[-128.05204020155492,53.03188960362831],[-128.0517431520548,53.031871230145356],[-128.0514415901887,53.03185629724287],[-128.05114857916786,53.03182496557454],[-128.05088157134878,53.031751696928794],[-128.05062923676527,53.031653520651766],[-128.05037864983518,53.03155250661029],[-128.05011584557386,53.03146963960287],[-128.0498252403684,53.03142985127073],[-128.04953613610277,53.031382745482446],[-128.04925311509422,53.03132600971656],[-128.0489718537174,53.03126700081726],[-128.0486896943398,53.0312085718135],[-128.04840662158557,53.031150713998144],[-128.04812536254587,53.031091703075184],[-128.04784578196424,53.03102873454274],[-128.04756704742155,53.03096407373203],[-128.04729095962065,53.03089600348871],[-128.04702014958974,53.030821115324116],[-128.04676173452444,53.03073200409384],[-128.04651032925943,53.03063323813818],[-128.04625194318095,53.030544681309124],[-128.04597937821995,53.030472063153795],[-128.04570242412282,53.030405125249395],[-128.04542106586368,53.03034386782451],[-128.04513895608758,53.03028654161344],[-128.044852538038,53.03023658008223],[-128.0445611131351,53.030199035099464],[-128.0442678757394,53.030162641764065],[-128.04390522239737,53.030333705286374],[-128.04369458732842,53.03046065902419],[-128.04349845802153,53.03059801459273],[-128.04330716359138,53.03073863994151],[-128.04311197269917,53.03087597854762],[-128.04290698738015,53.031003953854515],[-128.04267676015237,53.03111218875396],[-128.04239975736763,53.03118031386835],[-128.0421079778625,53.031232444826806],[-128.04182277848838,53.03128558211194],[-128.0415364491567,53.0313348194118],[-128.04124911214515,53.03138238753321],[-128.04096079462005,53.031428850957454],[-128.04067246152812,53.03147531393438],[-128.04038801108678,53.031524506928704],[-128.0401229578479,53.03160812213569],[-128.03985888298203,53.03169283178827],[-128.03959967058975,53.031781384562],[-128.03935609261896,53.03188423879323],[-128.0391406957028,53.0320095892976],[-128.03894935380512,53.03214965193716],[-128.03872337088785,53.03232730410815],[-128.03853521873626,53.032378191150336],[-128.03824004168806,53.032457273703436],[-128.03800137378425,53.03256508888527],[-128.03776076849354,53.03267180710705],[-128.0375221248284,53.03278017683477],[-128.03728925451583,53.03289237414804],[-128.03707087666666,53.033014400279086],[-128.03687080664577,53.0331478843033],[-128.0366774509432,53.033285179837094],[-128.03649172307476,53.03342569722059],[-128.03630028569316,53.03356407990287],[-128.03609838234286,53.033698715075495],[-128.0358408824784,53.03378442274242],[-128.0355455451833,53.033801849069455],[-128.03524898481837,53.033794078993964],[-128.03495343073675,53.03382663583294],[-128.0346758881259,53.03388410701801],[-128.03443239351364,53.033989190995555],[-128.03419084552542,53.034095926779244],[-128.03395213108732,53.03420316917921],[-128.0337098132337,53.03433289204401],[-128.03348444849044,53.03442645200794],[-128.03324865753484,53.03453644038639],[-128.03301094501066,53.03464534940228],[-128.0327751516132,53.03475533682068],[-128.03254225792762,53.034867524636866],[-128.0323132726842,53.03498299849871],[-128.03208526634805,53.035099584936184],[-128.03185525736436,53.03521339855437],[-128.03160817460582,53.03532190098899],[-128.0313267140212,53.03533683569686],[-128.03103302382002,53.03529144943355],[-128.0307396021288,53.03525166253278],[-128.03044566848422,53.035220851249406],[-128.03015169664266,53.03518891895705],[-128.02986106976473,53.03514908180547],[-128.02957384443653,53.03510189483446],[-128.02928644462403,53.035051356321],[-128.02899919404436,53.03500361241888],[-128.02868803077948,53.034964125585084],[-128.02843594334752,53.035007127849205],[-128.02823356368074,53.03515184555446],[-128.02795031544775,53.03510963500677],[-128.02768826001946,53.03502222197183],[-128.02742612565103,53.034933132799715],[-128.02716147811796,53.03485024692515],[-128.0268968730785,53.03476791572692],[-128.02663222760808,53.03468502865753],[-128.02636757159158,53.03460158520351],[-128.02610381577634,53.034517560757195],[-128.02583917341414,53.03443467189727],[-128.025573659426,53.03435291836159],[-128.02530635926433,53.03427287182947],[-128.02503903361176,53.03419226915712],[-128.024769868773,53.03411226241005],[-128.02449726425127,53.034038474767364],[-128.0242196198414,53.033976538354295],[-128.02393240914066,53.03392934658128],[-128.02363751011274,53.03389741418163],[-128.02333854992656,53.03387843701092],[-128.0230411719196,53.03387289218662],[-128.0227419609084,53.03388754596377],[-128.022442209047,53.033910619770275],[-128.0221449035184,53.03392636926658],[-128.02185214682595,53.033919612329804],[-128.02156765213326,53.033870682416214],[-128.02129208661376,53.033793575404275],[-128.0210173833539,53.03371477606906],[-128.02077148814416,53.033613054962515],[-128.02070537176448,53.0334410070105],[-128.020601094242,53.033271845508516],[-128.02039313258825,53.03314258041859],[-128.02017426263856,53.033019662435315],[-128.0200434147425,53.03286160881843],[-128.0199519826403,53.03268774305881],[-128.0198912321878,53.03251055406083],[-128.01989204156735,53.032331190119024],[-128.01990399989842,53.03215051433477],[-128.01985357984964,53.03197426934423],[-128.01979472470853,53.03179761275011],[-128.01978427909424,53.03161732049563],[-128.01965046914876,53.031455954308925],[-128.01953805810052,53.03129253576243],[-128.01954444350997,53.031112520280125],[-128.01954798214987,53.03093142360481],[-128.01953291615456,53.03075233129333],[-128.0196115603198,53.03057892530891],[-128.01966296513228,53.03040261380171],[-128.01966464816797,53.030222113759685],[-128.0196355872875,53.030043260978125],[-128.01958233655103,53.02986650819196],[-128.01955511634296,53.02968705889805],[-128.01953259799475,53.029508094043884],[-128.01951097940383,53.029328557780524],[-128.01948284576886,53.029149689015505],[-128.0194565942074,53.028970788010085],[-128.01943776865778,53.02879119490543],[-128.01946290266454,53.028612535134165],[-128.0194983117548,53.02843369943131],[-128.01953091277463,53.02825491176781],[-128.0195725814651,53.02807036412747],[-128.0195873596183,53.027890204605335],[-128.019438642324,53.027729093261634],[-128.0191795730204,53.027683641712436],[-128.01893648395526,53.02777747770002],[-128.01868636998873,53.02790057783143],[-128.01842532299224,53.02799023626229],[-128.01815230201333,53.028063849798784],[-128.01788420550182,53.02814297417884],[-128.0176298565011,53.02823587902646],[-128.01738043218398,53.02833430377975],[-128.01713201270934,53.028434396690926],[-128.01688258607265,53.0285328203804],[-128.01662836532338,53.02862851864168],[-128.01636428894537,53.028713740355784],[-128.01607448960044,53.02874895883186],[-128.01577296725375,53.02875355558106],[-128.0154784556657,53.02872887841108],[-128.01520149294026,53.02866074908316],[-128.01495284848488,53.02855907222294],[-128.01466166727965,53.02856516644098],[-128.01436156539964,53.02859999170421],[-128.0140755029376,53.02865476234413],[-128.01381420231132,53.02873936591537],[-128.01356495231158,53.0288417071621],[-128.01331946126226,53.02894453968698],[-128.01307878813893,53.02905065226926],[-128.01284004875944,53.02915785227556],[-128.0126003935803,53.02926562338039],[-128.01236668321954,53.02938058313239],[-128.01211400749776,53.02947008433713],[-128.0118139626234,53.02948641102036],[-128.01151787337977,53.029467920466224],[-128.01122224783623,53.02943933284317],[-128.01092613286735,53.0294202852681],[-128.01062841600637,53.02940685996837],[-128.01033165205686,53.029393982633216],[-128.01003396229177,53.029381120329546],[-128.00973629942663,53.02936882177098],[-128.00943855701098,53.02935483793281],[-128.00914172901005,53.02934027282146],[-128.0088439869903,53.02932628748282],[-128.00854648380516,53.02931734602056],[-128.00824732530003,53.029312906761895],[-128.00794856432861,53.02931687147325],[-128.00765325843565,53.02933479279179],[-128.00736195137122,53.029377861862024],[-128.00708973691852,53.029449184703225],[-128.00683644130177,53.02954541055795],[-128.00657628518493,53.02963502693423],[-128.0063020424694,53.02970302856294],[-128.00600475999462,53.02971872847578],[-128.00570083352284,53.02969251007768],[-128.0054457164982,53.02961165636039],[-128.0052405589371,53.02948119678061],[-128.00505067053513,53.0293375821155],[-128.0048582811648,53.0292001703084],[-128.00467410182307,53.029058699897625],[-128.00450549436755,53.02891080395969],[-128.00435975557176,53.02875242186096],[-128.00421133114602,53.028596336048686],[-128.00403331318094,53.02844691345336],[-128.00383146552957,53.02828724203552],[-128.00360165118934,53.02818801972077],[-128.00333929437457,53.02819135456946],[-128.00305845123626,53.02823816314859],[-128.00276941996376,53.02830976162251],[-128.00247991094307,53.02839089989162],[-128.00219944500532,53.02846572329595],[-128.00194345691477,53.02856422617774],[-128.00167645473138,53.02862760151749],[-128.00137532037024,53.028600768779896],[-128.00108651432407,53.02863761031202],[-128.00079951975334,53.02869292026377],[-128.00050665090643,53.02872254769134],[-128.00021018237703,53.02873542144624],[-128.00000045260055,53.028666116845876],[-127.99973097413067,53.028577647977436],[-127.99971769483902,53.02857338935867],[-127.99941947209852,53.02829092992949],[-127.99886536940974,53.02783177092533],[-127.99851543437869,53.0277009463312],[-127.99799956991245,53.027597591765904],[-127.99758655405113,53.02739664927593],[-127.99752386076504,53.02729515018253],[-127.99705752126329,53.02709231100201],[-127.99680186213756,53.026920087815846],[-127.996455554473,53.02664740255692],[-127.9959902868818,53.02638792963541],[-127.99561861880073,53.026171717681315],[-127.99525242501105,53.02571440280347],[-127.99474123539727,53.02541142957443],[-127.99446746482154,53.02501196766278],[-127.99445184672673,53.02469949183476],[-127.99432168745254,53.02421520818594],[-127.99369855204861,53.02365630895097],[-127.99343397713096,53.023412489750555],[-127.9941282960737,53.022921559195254],[-127.99477359478021,53.02250094209023],[-127.99556638545056,53.0218401967584],[-127.99576462268854,53.02138790390558],[-127.99531610158051,53.021026149132574],[-127.99514583952758,53.02092085475006],[-127.99494658695927,53.020814938522946],[-127.99461786482652,53.020716807287464],[-127.99421707381498,53.02063503083463],[-127.99336004333679,53.02038497821014],[-127.99258522041539,53.02027421233104],[-127.99158121313242,53.020135916574915],[-127.99034871786832,53.019865279619125],[-127.99007069411782,53.01969230776547],[-127.98902052198616,53.019285745640346],[-127.98898617626732,53.01873202799136],[-127.98897230638119,53.01863529669698],[-127.98886098716571,53.0185318062761],[-127.9883538659011,53.018073492941106],[-127.98812672982595,53.017730388790746],[-127.98809992769283,53.01723762983164],[-127.98801045539281,53.017161793672],[-127.98799676156982,53.016749520834956],[-127.9880719038505,53.016040388605155],[-127.98801059920397,53.01562835316435],[-127.98809233773332,53.01516011028503],[-127.98810311724793,53.01469193359338],[-127.98811506674984,53.014209173845224],[-127.98813514387204,53.013840047452234],[-127.98812725964372,53.013172658365995],[-127.98811747624332,53.01260450843603],[-127.98829628737833,53.01199563155997],[-127.98856943103884,53.011387396218275],[-127.98853870973016,53.0106912557903],[-127.98831486582517,53.01017827793626],[-127.98773307443844,53.009917940789435],[-127.98662175637007,53.00959590456378],[-127.98561452987936,53.00940269002085],[-127.98462729230575,53.00933748239049],[-127.98389464279805,53.00944509135655],[-127.98318814484752,53.00945305744352],[-127.98273852133715,53.00956262413371],[-127.98243158556141,53.00958851781554],[-127.98200950808926,53.00952835718411],[-127.98156260199933,53.00949607973399],[-127.98090345953362,53.00951836442259],[-127.98033995601553,53.009428622569786],[-127.97978183025383,53.009153842400856],[-127.97927178459805,53.00880874563109],[-127.9789947129601,53.00859369297619],[-127.97834252321398,53.0083036709044],[-127.9781129866892,53.00804634405264],[-127.9777941283274,53.00757529547711],[-127.97738615145155,53.007396062986366],[-127.97704890766113,53.00713157292464],[-127.97675398828207,53.00699415898843],[-127.97654710869084,53.0069023477645],[-127.97633918281318,53.00682848869269],[-127.97597709850791,53.006792517906284],[-127.97550825860353,53.00668940174782],[-127.9752690221495,53.006584679256385],[-127.97494411273662,53.0064645773629],[-127.97475186937224,53.00634618041457],[-127.97453228378254,53.00618171778094],[-127.97414922587078,53.00593535695657],[-127.97387345901055,53.00566703087326],[-127.97378838510372,53.005282853420525],[-127.97360644318115,53.004903660240636],[-127.97340568589372,53.004541595721406],[-127.97310859235121,53.0041553616257],[-127.97273858954634,53.00386786820493],[-127.97218171753795,53.00353697647831],[-127.9717923398302,53.00309343822051],[-127.97170221352205,53.002921756476866],[-127.97183222635005,53.00238377450923],[-127.97144599085007,53.001826402942854],[-127.97120300518398,53.001156783109856],[-127.9709577952534,53.00080162718149],[-127.97076347975127,53.00059750242299],[-127.97055839563126,53.00000010837264],[-127.97055385015916,52.99990209784459],[-127.9705660610549,52.99972254372226],[-127.97057172378743,52.99954254305313],[-127.97058866884578,52.999364586672606],[-127.9707411492538,52.999210155039506],[-127.97080018133944,52.99903373684426],[-127.97082445802579,52.99885285992141],[-127.97087888508337,52.99867764853106],[-127.97102745956254,52.998519909926614],[-127.97116858590834,52.99836230461506],[-127.97117998320252,52.99818556168256],[-127.97114636209308,52.99800397579354],[-127.97115701612597,52.99783117302482],[-127.97115743277398,52.99763892050473],[-127.97111138765793,52.997471549567216],[-127.97091833822626,52.99733466009346],[-127.97068681513474,52.99721355069113],[-127.9704465627714,52.997105473085355],[-127.9701858779324,52.99701959034394],[-127.96989946077801,52.99696272550051],[-127.96964169875362,52.99687959956842],[-127.96943486550954,52.99674742181671],[-127.969250944723,52.996605893423755],[-127.9690551663122,52.996470167524855],[-127.96882222863904,52.99635860169478],[-127.96854825363064,52.996288074566344],[-127.96828041241947,52.996209041832984],[-127.96802949762419,52.99611234686571],[-127.9677812597935,52.99601279985802],[-127.9675249064113,52.995919557451806],[-127.9672739693239,52.995822305303754],[-127.96704367508923,52.995707329119696],[-127.96683225124906,52.99557634448624],[-127.96667508990852,52.99542764005961],[-127.96658684027312,52.9952553669439],[-127.96654670414591,52.995073879523396],[-127.9665374966391,52.994895247856505],[-127.96655153666458,52.99471454241893],[-127.96658617382407,52.99453517023484],[-127.96663307318082,52.9943584002567],[-127.96668741887437,52.99418150599011],[-127.96674742709124,52.99400563812749],[-127.96681022544549,52.99382972364987],[-127.96687394851301,52.993653793680856],[-127.96694806696449,52.99344014316169],[-127.96695451346213,52.99325675736824],[-127.96702207746814,52.99310318194594],[-127.96694671449491,52.99290659811802],[-127.96694678026267,52.99272668156995],[-127.96697397890071,52.992547998094715],[-127.967036774164,52.992372083343746],[-127.96709394721701,52.99219570637818],[-127.96713049719841,52.992017422709665],[-127.9671979617651,52.991841429862184],[-127.96730977140321,52.991675906178536],[-127.96744514816187,52.99151559366547],[-127.96758905500636,52.991357945400644],[-127.96773390047017,52.99120027228924],[-127.96787683893865,52.991042074820484],[-127.96802641597458,52.990886008179395],[-127.96819032620029,52.99073699256934],[-127.96839329513864,52.99060525048985],[-127.96860773987326,52.990479486017605],[-127.96882987801757,52.99035864133329],[-127.96909872648169,52.99027904668861],[-127.96930837604062,52.9901707311095],[-127.96937100242477,52.98999145463723],[-127.96940844036591,52.98981259901133],[-127.96943278453332,52.98963284120974],[-127.96959214408751,52.98948669729671],[-127.96982186461781,52.98936852169794],[-127.97001253541025,52.98923362821438],[-127.97010438679735,52.989060588327455],[-127.97015303765104,52.98888210084767],[-127.97028284037152,52.98872244261837],[-127.97044563810086,52.988570070205206],[-127.97058387644563,52.988411391485016],[-127.97067866979768,52.988241664640874],[-127.97075925862444,52.98806769144369],[-127.97085402433267,52.987897399905],[-127.97097518693691,52.98773283647696],[-127.97112285007094,52.98757624123408],[-127.97128566658306,52.98742443207536],[-127.97146670125746,52.987282962399185],[-127.9717149470405,52.987182407907035],[-127.97192159250262,52.987050041505796],[-127.97205718613165,52.986894767832894],[-127.97207298697208,52.98671234507033],[-127.97207210637585,52.98653245229643],[-127.97210865680547,52.98635473100182],[-127.97215732234184,52.986176806925776],[-127.9721929208511,52.98599853652927],[-127.97222568826083,52.98581975748857],[-127.9722500295045,52.98564056344604],[-127.97226036411485,52.9854610388368],[-127.9722594823359,52.98528113696924],[-127.9722614059553,52.98510119709797],[-127.97227733539295,52.98492157878884],[-127.97231289164918,52.98474275291315],[-127.97238226596147,52.984568400758825],[-127.97246851396511,52.98439601696351],[-127.9725481889346,52.984222613186354],[-127.97261002381602,52.984046710077735],[-127.97265681965678,52.983868816769146],[-127.97267560382555,52.9836902713984],[-127.97265510521432,52.98351014171799],[-127.9726365128264,52.98333054506538],[-127.97264693218756,52.98309272933978],[-127.97254829101242,52.98299797892917],[-127.97228273304904,52.98290602231366],[-127.97201660006371,52.98282192138385],[-127.97175048305041,52.982737819599265],[-127.97149614362178,52.98264622952384],[-127.97126249119952,52.98253804356169],[-127.97105413239652,52.98241149887088],[-127.9708619726466,52.98227235244187],[-127.9706780058692,52.98212858489154],[-127.97049414418049,52.981987057203945],[-127.9703221794,52.98184029051942],[-127.97015476626122,52.98169119662163],[-127.96998738045836,52.98154266699397],[-127.96981447934031,52.981395915243056],[-127.96964160515766,52.98124971878635],[-127.96946870600911,52.98110295754177],[-127.96929673342511,52.98095618953269],[-127.96912664135591,52.98080938088598],[-127.96896104982058,52.980659142914774],[-127.96879732385159,52.98050886457808],[-127.96860049980396,52.98036923651464],[-127.96839167784945,52.98023260645407],[-127.9681655464083,52.98012484489893],[-127.96788359940747,52.98012170744113],[-127.96758090817968,52.98015423010047],[-127.96728406154647,52.98017207308497],[-127.96698833612697,52.98019382440599],[-127.9666881374414,52.98021957744808],[-127.96643151364685,52.98030008499432],[-127.96621049082488,52.9804237148926],[-127.9659855149623,52.98054292650852],[-127.96576145160232,52.980661557484204],[-127.96554412891642,52.98078456832296],[-127.96517444944169,52.98098297245423],[-127.96508820425002,52.980812905799084],[-127.96507429959163,52.98063323003897],[-127.9650818068271,52.9804526322121],[-127.96510900545111,52.98027394785741],[-127.96519717962752,52.98010209315346],[-127.96537443320003,52.97996013910506],[-127.96564040656246,52.979880033862436],[-127.96593052867742,52.97983820230515],[-127.96621851562672,52.97979024491736],[-127.96649727351796,52.979724496688995],[-127.96678913702253,52.97970001311759],[-127.96708778618809,52.97970118840352],[-127.96737076435943,52.97964602112236],[-127.9676404727487,52.97956641385012],[-127.96791606633727,52.97947270025647],[-127.96803817540376,52.97932885609319],[-127.9680343667989,52.97914564883815],[-127.96801454447001,52.97895933721947],[-127.96800435752442,52.97877959931281],[-127.9679913656992,52.9785998992689],[-127.96799330707749,52.9784199587482],[-127.96799977292365,52.97823713577506],[-127.96802215881125,52.97805572380856],[-127.96808705230276,52.97788537625326],[-127.96827181252495,52.97774441290431],[-127.96849651907245,52.97762016107175],[-127.9687460763583,52.977508379997204],[-127.96894073757043,52.97738013652356],[-127.96901987819538,52.97721515497719],[-127.96905633497046,52.97685416408788],[-127.9689829533574,52.976679956942185],[-127.96890400458335,52.97650640773729],[-127.96880288840086,52.976337712713175],[-127.96868882440945,52.97617147585744],[-127.96857383646136,52.97600525432777],[-127.96846624106044,52.97583778821822],[-127.9683632636051,52.97566912390283],[-127.96826212583817,52.975499872767166],[-127.96815915001066,52.97533120823924],[-127.96806541990384,52.97516070325765],[-127.96800963672801,52.974983403566945],[-127.96802096332028,52.97480498282237],[-127.96806684336939,52.974627105800124],[-127.96810894209254,52.97444817094979],[-127.96814081909326,52.974269971781766],[-127.96815103845245,52.97408764161144],[-127.96809444643846,52.97391316224475],[-127.96795197659742,52.97375804369832],[-127.96778365307514,52.97360840559489],[-127.967607935771,52.97346057665965],[-127.96743777584837,52.97331152473921],[-127.96726022218886,52.97316428196027],[-127.96714555889416,52.97300477926846],[-127.96717910681878,52.97282262453137],[-127.96725594101814,52.97264815857641],[-127.9672822376546,52.97247060866454],[-127.96726270697854,52.972290461143324],[-127.96726281241301,52.97211110665204],[-127.9673236857491,52.971934656206905],[-127.9674099286357,52.971762274807965],[-127.96749332940408,52.97158881086083],[-127.96757486549349,52.97141538693691],[-127.96761803214393,52.97123923196603],[-127.96758821325722,52.97105870019646],[-127.96751300938955,52.97088508719408],[-127.96740445455785,52.97071651495474],[-127.9672445011169,52.97056617129035],[-127.96707075506052,52.97041998555542],[-127.96692628126361,52.97026154526397],[-127.96680118408572,52.97009828849638],[-127.96673256961489,52.96992568591598],[-127.96671764402227,52.96974434024646],[-127.96671660489463,52.96956052080387],[-127.96671280285724,52.96937731243157],[-127.96667494368266,52.96920419628454],[-127.96646651922725,52.969074838011515],[-127.96635394222463,52.9690004922458],[-127.96635642730108,52.96893319338231],[-127.96645435290941,52.96875108470303],[-127.96650217517784,52.968574861138954],[-127.9663748765833,52.96842453609998],[-127.9661715466905,52.96828388271185],[-127.96598014740165,52.96813911099918],[-127.96587071784812,52.96797167284258],[-127.96582603522063,52.96779194448974],[-127.96601747592106,52.96751411495407],[-127.96623186305263,52.96738947315653],[-127.96638708533631,52.96723611774097],[-127.96638903256847,52.96705616705722],[-127.96632030617593,52.96688132398338],[-127.96624138645345,52.96670777197242],[-127.96615602802129,52.96653601329702],[-127.96607062926446,52.96636369026376],[-127.96599078688513,52.96619015346426],[-127.96592022503506,52.96601589674703],[-127.96586635306167,52.96583912848031],[-127.9658682875196,52.965659177902545],[-127.96591416670596,52.96548130073965],[-127.96594135226029,52.965302614585575],[-127.96594143756518,52.96512270377408],[-127.96593405101878,52.964942908686425],[-127.96592012187766,52.964762666784935],[-127.9658310921933,52.9645920899945],[-127.96574020988272,52.96442210004596],[-127.9657280422835,52.96423958676409],[-127.96568175895528,52.96406548953923],[-127.9655153309469,52.96391581646171],[-127.96533151339352,52.96377315907658],[-127.96514591043076,52.96363220815711],[-127.96496298307795,52.9634884144015],[-127.96483710345053,52.96332797527679],[-127.96479338071985,52.96314879513388],[-127.96481870544629,52.962970140083094],[-127.96485894225872,52.96279123623433],[-127.96489172261482,52.96261245674197],[-127.96489462659832,52.96243305468566],[-127.96487607577305,52.962253445574696],[-127.9648575106064,52.9620738456509],[-127.96483615664144,52.96189428326405],[-127.96480180708703,52.961716067584085],[-127.9647210648252,52.96154310067816],[-127.9646560713922,52.96136763804566],[-127.96459570488031,52.96119153322234],[-127.96453812735204,52.961015381836184],[-127.96448053913613,52.96083866562498],[-127.9644173968043,52.9606631719441],[-127.96433111802695,52.960491418028575],[-127.96429395720975,52.96031268402807],[-127.96422062404618,52.96013848114299],[-127.96414358931241,52.95996489593402],[-127.96406098914393,52.95979195947823],[-127.96397007243775,52.95962084757257],[-127.96386625364015,52.959452757627375],[-127.96374487604167,52.959288314289154],[-127.96360418019039,52.95912980670236],[-127.96344882181299,52.95897658324942],[-127.96328338660162,52.95882744646683],[-127.96311333756188,52.95867951629687],[-127.96279626960434,52.9583972699778],[-127.96264456716794,52.95824230759735],[-127.96249468871102,52.95808674966528],[-127.96234482626072,52.9579311912794],[-127.96219223902636,52.95777735506574],[-127.96203503799104,52.95762472545689],[-127.96185133658011,52.95748373777138],[-127.96162130547869,52.95736931263459],[-127.96138222559843,52.95726119857817],[-127.9611324695113,52.9571639064977],[-127.96087376820518,52.95707517454614],[-127.96061151021102,52.95698986413986],[-127.960347452219,52.9569062690531],[-127.96008428257898,52.95682152867199],[-127.95982560045107,52.95673279415194],[-127.95958839248195,52.95662464539584],[-127.95934571252499,52.95651882914247],[-127.95909939452318,52.95641531484872],[-127.9589388581217,52.95627058347003],[-127.95883027138504,52.956099761638725],[-127.95868132775189,52.95594361849612],[-127.95854162673022,52.955785644490376],[-127.95841844243844,52.95562179082895],[-127.95829985937378,52.95545673955932],[-127.95806654145187,52.95512881459503],[-127.95790754178527,52.95497676554698],[-127.95772468718359,52.95483352458144],[-127.95757676886842,52.95467904894462],[-127.9574609946712,52.95451395013967],[-127.95735530949085,52.954345320632],[-127.95725240212504,52.9541760798903],[-127.95715043527385,52.95400683239069],[-127.95705215565305,52.95383695855315],[-127.95695114033774,52.9536682510561],[-127.95684823621714,52.953499009891786],[-127.95674722251269,52.95333030218534],[-127.95665082459472,52.95316039672688],[-127.95656549118127,52.952988065412136],[-127.95650879421989,52.95280965340749],[-127.95638278398805,52.95262454625208],[-127.95629308761953,52.95247863432555],[-127.95614235389611,52.95232363869882],[-127.95598514320804,52.95216988040483],[-127.95583254812836,52.95201491530909],[-127.95568914345229,52.951856999452495],[-127.95555122753126,52.95169675034085],[-127.95541238832764,52.95153651640221],[-127.95526807354487,52.95137918011921],[-127.95511282496547,52.951227065062504],[-127.95493284970051,52.95108488404718],[-127.95464912341258,52.95097806299861],[-127.95436405117964,52.950902641629156],[-127.95412582566178,52.95083205590383],[-127.9539122751732,52.95073022927155],[-127.95367771265387,52.95061754127174],[-127.95345588731652,52.950497915722565],[-127.95325399601954,52.950365628490914],[-127.95307856844455,52.95022057136561],[-127.95290858886793,52.95007261673343],[-127.952723035814,52.94993053392627],[-127.95253932156508,52.94978785537663],[-127.95238317485484,52.949636307724624],[-127.95226748593151,52.949472323421354],[-127.95217476465713,52.94930067642003],[-127.95208386676697,52.94912843414401],[-127.95197639322961,52.94896038548249],[-127.95184131427669,52.948800650065046],[-127.95169607181742,52.94864275992977],[-127.95156190819176,52.94848244405668],[-127.95145073741683,52.94831502115931],[-127.95136445915256,52.948141580776706],[-127.95134774329645,52.94796026165901],[-127.95135184803519,52.94778532323289],[-127.95137903205486,52.947605518415806],[-127.95143315004167,52.94742358122253],[-127.95145311143223,52.947248944875845],[-127.95153578438635,52.947059252497645],[-127.9516842382211,52.946982243050655],[-127.95213080005131,52.94694065464936],[-127.95185068209811,52.94687075021306],[-127.951698481179,52.94672362901558],[-127.95158994786743,52.94655279952097],[-127.9514732798876,52.94638770958387],[-127.95131161085736,52.946237372967374],[-127.95113799338903,52.94609060601476],[-127.95096622511038,52.94594379920184],[-127.95079720947597,52.9457958345367],[-127.95062910823547,52.94564728951847],[-127.95046374430031,52.9454975779519],[-127.95030021893409,52.945347270734835],[-127.95013945672052,52.945196361527174],[-127.94998236029429,52.945043714423726],[-127.94983351369248,52.94488812358449],[-127.94968124989144,52.944719137565976],[-127.94954958537949,52.94457222954755],[-127.94937506716097,52.94442603097553],[-127.9491859775834,52.944287355198895],[-127.94899142802186,52.94415157641609],[-127.94880687837531,52.9440100269589],[-127.94862325411366,52.94386846190344],[-127.94841801647905,52.94374351276766],[-127.9482948547303,52.94357852720552],[-127.94812950704498,52.94342881217261],[-127.94794387050415,52.94328391648892],[-127.9477564233148,52.94314017144358],[-127.94758281542627,52.94299339025871],[-127.94743872726737,52.942839403672394],[-127.94733890535579,52.94267515198948],[-127.94727131232291,52.94250195539092],[-127.9472286493986,52.9423233065178],[-127.9472007491478,52.94214161549986],[-127.94718121487291,52.94195922111403],[-127.94716080791221,52.94177796210854],[-127.94714980434735,52.94159878947897],[-127.94716207142031,52.94141866695343],[-127.9471846445953,52.94123950386746],[-127.94721373056224,52.9410602240572],[-127.94725032031674,52.94088195002615],[-127.94728502084638,52.94070314224341],[-127.94730944088452,52.940523939521846],[-127.94733201296464,52.94034477630992],[-127.94734979139417,52.94016288546848],[-127.9474155313936,52.939990289873606],[-127.94757538619909,52.939836870562324],[-127.94772679786873,52.939682478702146],[-127.94776435921479,52.9395053002307],[-127.94775230166344,52.93932334687975],[-127.94770410213404,52.939145910432245],[-127.94757649655345,52.93898548132506],[-127.94742673004788,52.938829337617236],[-127.94727692431306,52.9386726383707],[-127.94714923415549,52.93850996826602],[-127.94704275678183,52.938342463271894],[-127.94694362963725,52.93817259466724],[-127.94684080318227,52.93800335212694],[-127.94673890116198,52.93783408523646],[-127.94664441582586,52.93766358359719],[-127.94656474282267,52.93749115098636],[-127.9464989216345,52.93731568234527],[-127.94644052728614,52.93713953484502],[-127.94638674693901,52.936962190039104],[-127.94633761686812,52.93678476830212],[-127.94628941120726,52.93660733124703],[-127.94623555552451,52.93642831061092],[-127.94619005002342,52.936248586903865],[-127.94617353996655,52.93607118168784],[-127.94622436492466,52.93589827691156],[-127.94635374771308,52.93573135489892],[-127.94648039388434,52.93556559893662],[-127.94661446465017,52.93539915504509],[-127.94679181390711,52.935261705356346],[-127.94703841297037,52.935171311599134],[-127.94732448797308,52.93510828847306],[-127.94760859676818,52.935043055227865],[-127.9478937206701,52.934979490421455],[-127.94812645554474,52.9348713882037],[-127.94825979884745,52.9347094381527],[-127.94822556606529,52.93453177028117],[-127.94810235500752,52.934365107886144],[-127.94790231712332,52.934230539101684],[-127.94772514784998,52.93408662377571],[-127.9476159438088,52.933920285086806],[-127.94752231049142,52.933748083789105],[-127.9474102806709,52.93358122669036],[-127.94729641479624,52.93341496482999],[-127.94718161098173,52.93324871837465],[-127.94706498604462,52.933083066902476],[-127.94694558586733,52.93291801722396],[-127.9468216248059,52.93275528481065],[-127.94669122924313,52.93259433566918],[-127.94653141556495,52.932442284708316],[-127.9463386888677,52.932304229503195],[-127.94611695417797,52.932184033214135],[-127.94588888776556,52.932067860125436],[-127.94571637269009,52.931923299926375],[-127.94558494305574,52.93176013370702],[-127.94548669883974,52.93158856300301],[-127.94540588780997,52.93141110815158],[-127.9452958374998,52.93124645826558],[-127.94512259416429,52.931106402108384],[-127.94490532808896,52.930981636894906],[-127.94466349878954,52.93087017283938],[-127.94441108355925,52.93077177886719],[-127.94414739888826,52.93069206209687],[-127.94386669260874,52.93062719853884],[-127.94358425221725,52.93056516090857],[-127.94331344158763,52.93049228582386],[-127.94308649494359,52.9303800168591],[-127.94288731323805,52.93024318371566],[-127.94261148035439,52.93018272066264],[-127.94231894247389,52.930144387150015],[-127.94202217884406,52.93015657536371],[-127.94172365018964,52.93019120241928],[-127.9414419016381,52.93016446341523],[-127.94125285056741,52.930024662524865],[-127.94114708603956,52.929851535444946],[-127.94101230183834,52.92969570147313],[-127.94074117978784,52.92961609990062],[-127.94045986835208,52.929557964189385],[-127.94017333774082,52.92950831666451],[-127.93988596073378,52.929460368344614],[-127.9395936601787,52.92942707310874],[-127.93928401006988,52.929422087336036],[-127.93898339255169,52.929410791071525],[-127.9387396993133,52.92933970081871],[-127.93858319225806,52.92917749621994],[-127.93846005974788,52.92901137877385],[-127.93836190160083,52.928840921967044],[-127.93827563981651,52.92866579422025],[-127.93821043321063,52.92848246386298],[-127.93801889918207,52.92836960214559],[-127.9377238271235,52.928316170545905],[-127.93744837702037,52.92824335866115],[-127.93724105338529,52.92811113417761],[-127.9370996860078,52.9279537183148],[-127.93698130325348,52.92778920710833],[-127.93687300449042,52.92762115792964],[-127.93676654381242,52.927452522395164],[-127.9366582471612,52.927284481945215],[-127.93655819753627,52.92711349876434],[-127.93644535530946,52.92694776589055],[-127.93627567972783,52.92680315451618],[-127.93605206299507,52.926681284829804],[-127.9358204814078,52.92656851352933],[-127.93558436456482,52.9264586143283],[-127.93535095899463,52.926346993102186],[-127.93512843875503,52.92622846659222],[-127.93491036476527,52.92610538267806],[-127.93468780686308,52.92598629997577],[-127.93443738224124,52.925889529425774],[-127.9341896580698,52.92579047202627],[-127.93395354975112,52.925680569501395],[-127.93372913431571,52.925561515563764],[-127.9335436755692,52.9254177157338],[-127.9334004431526,52.925259770183075],[-127.93339434310138,52.92508443383445],[-127.93342337475079,52.92490292435094],[-127.9333188986754,52.92473649508948],[-127.9331525748332,52.92458284752346],[-127.93292910606398,52.924463776559975],[-127.9326857370488,52.92435791873019],[-127.93260736360939,52.92419161612851],[-127.93260994330907,52.92400212945544],[-127.93258977028077,52.92382479114219],[-127.93238617387088,52.92371210966821],[-127.93211097462539,52.92362358799503],[-127.93185038515756,52.92352810000191],[-127.93158613372746,52.92343435750034],[-127.93132723980486,52.92331473515701],[-127.93114148669987,52.92320513060508],[-127.93099576386257,52.923053383917505],[-127.93087464259513,52.92288946762873],[-127.93076720289706,52.92271916585355],[-127.9306634271513,52.922547117916274],[-127.93055325356416,52.9223779728003],[-127.93043670819668,52.9222123039998],[-127.93035710325643,52.92201856074718],[-127.93025345764794,52.92184930824254],[-127.93006708822679,52.92170551800417],[-127.92982459677842,52.921515567102205],[-127.92969370798154,52.921403374538215],[-127.92953248035539,52.92127934865536],[-127.92947040380143,52.92112287441757],[-127.92945855634555,52.920943713021025],[-127.92946517891605,52.92076088580762],[-127.92944865790678,52.92058123604086],[-127.92942281150874,52.92040174814194],[-127.92940631640371,52.92022266288062],[-127.92939536752911,52.9200429216811],[-127.92938629623431,52.91986315864123],[-127.9293827962405,52.91968329525531],[-127.92936720003836,52.91950363917305],[-127.92935535346717,52.919324477587544],[-127.92936865350218,52.91914490362516],[-127.92939311139519,52.9189651466676],[-127.9294278942263,52.91878689734242],[-127.92947856348256,52.91860951739849],[-127.92955456616893,52.91843619686946],[-127.92965495361335,52.91826640422634],[-127.92973470477096,52.9180935870148],[-127.92979283060482,52.917916640527146],[-127.92988293104705,52.9177458953553],[-127.9300087764977,52.917582975518606],[-127.93014310893587,52.917422149265825],[-127.9302878671429,52.917265079673506],[-127.93043921044047,52.917109587769495],[-127.93058961375044,52.9169541020948],[-127.93071458137813,52.9167923167222],[-127.93080646138567,52.91661985547256],[-127.93085998391987,52.91644410471493],[-127.9308583404147,52.916264219395586],[-127.93089589018439,52.91608536778719],[-127.93093625040262,52.91590702601912],[-127.93096541307374,52.9157283119952],[-127.93095445918074,52.915548579404245],[-127.93092952232831,52.915368511324644],[-127.9309605210335,52.91518920212924],[-127.93102878449068,52.915009846216634],[-127.93115394796777,52.91485254075964],[-127.93138926328734,52.914741063894915],[-127.93161687547331,52.914624108119135],[-127.93176348068044,52.91446700586908],[-127.93187892315267,52.91430088234412],[-127.93197926637272,52.914130531694084],[-127.93208244465049,52.91396124637727],[-127.93221119770377,52.913801073694586],[-127.93240054763685,52.91366232506448],[-127.93259083473596,52.9135235607019],[-127.93276547344597,52.91336880337279],[-127.93291939032797,52.913208772359525],[-127.93297718298803,52.91304528067371],[-127.93289592767509,52.91287679178983],[-127.93271851818562,52.912642058843346],[-127.93245129476149,52.912563496309325],[-127.93219202587694,52.91247526971425],[-127.9319434213682,52.912375666589796],[-127.93171195365142,52.912263441805266],[-127.93150125598355,52.912136867786884],[-127.93129596746726,52.91200628565141],[-127.93107981360457,52.9118825984425],[-127.93085282039173,52.911766379616765],[-127.93062220634586,52.911652461749654],[-127.93039340457099,52.911537392723666],[-127.93017184818599,52.91141772046205],[-127.92996022092728,52.91129115901478],[-127.92975406852217,52.91116170941867],[-127.92955147338785,52.9110288292141],[-127.92935711317257,52.91089245963455],[-127.92917098703305,52.9107525827976],[-127.92899489188737,52.910608066229976],[-127.92882701584547,52.91046004272863],[-127.92866551280233,52.91030856053116],[-127.92851043264828,52.910154721888816],[-127.92836082293337,52.90999856037502],[-127.9282167633208,52.90984117774794],[-127.92807730136228,52.9096826075743],[-127.92794424722446,52.90952168128483],[-127.92781945272901,52.9093578215119],[-127.92770389192708,52.90919213329757],[-127.92759845191725,52.909023472181424],[-127.92750133226062,52.90885355364582],[-127.92740319883146,52.90868196568138],[-127.92730781588168,52.908509220550535],[-127.92722260415552,52.90833462273389],[-127.92715502088946,52.90815861504814],[-127.92711350150654,52.907982180299456],[-127.92710269238324,52.90780524238629],[-127.92710862754987,52.90762746514949],[-127.92712665630374,52.90744949872161],[-127.92715489090405,52.90727080008094],[-127.92718964840867,52.907091994535755],[-127.92723092873527,52.90691308208002],[-127.92727405543357,52.90673413933096],[-127.92731903271556,52.90655460124206],[-127.92736213353565,52.906375102825834],[-127.92740247420281,52.90619620560477],[-127.92743630644772,52.906017414998274],[-127.92747012351606,52.905838624606325],[-127.92750487852888,52.905659818809376],[-127.92753496125263,52.90548052457207],[-127.92755385994512,52.90530142255832],[-127.92755969148075,52.905121404718685],[-127.92755059066553,52.90494107556839],[-127.9275229402683,52.90476217137823],[-127.9274591607111,52.90458778717321],[-127.92734723547923,52.90441978784026],[-127.92723533667797,52.90425235294042],[-127.92712706037372,52.904082616608775],[-127.92700962954216,52.90391639311499],[-127.92687026729081,52.9037594966786],[-127.92668887780626,52.903620668292625],[-127.92646362452444,52.903500484892746],[-127.92622753322925,52.903387769454746],[-127.92598892235713,52.90328126471029],[-127.92574129865473,52.903181067994616],[-127.92548921760984,52.903085427679166],[-127.92522204194655,52.90300628370537],[-127.92495225995383,52.90293110972145],[-127.92468155563715,52.902855950224605],[-127.92441172493619,52.90277965483901],[-127.92414189520174,52.90270335883081],[-127.92387920857188,52.90262021946887],[-127.92365499336789,52.9025022647863],[-127.92356070388551,52.90233229652115],[-127.92342039586958,52.90217484662935],[-127.92324705408306,52.902028034594714],[-127.923065531641,52.90188583104268],[-127.92288028802253,52.90174369702673],[-127.92266428671877,52.90162167828906],[-127.92241933851486,52.901518624081376],[-127.92215839775466,52.90143265447741],[-127.92188241213219,52.90136430092288],[-127.92160470705261,52.90129877280135],[-127.92134109590246,52.901215643027825],[-127.92112686200254,52.901091350702345],[-127.92104176643241,52.90091843232493],[-127.92102899645616,52.90073871860858],[-127.92104227526276,52.90055802336704],[-127.92104538513831,52.90037918016969],[-127.92095940332683,52.90020738817756],[-127.92084848937215,52.90004049624585],[-127.92082152489978,52.90000001626921],[-127.92073665266946,52.8998736103093],[-127.92059549089251,52.89971730100667],[-127.92037662088688,52.89959308307156],[-127.92019159780088,52.89945541629543],[-127.92007050965107,52.89928981074136],[-127.92001038996587,52.89911311184775],[-127.91994211500867,52.89894159496858],[-127.91978720911038,52.89878999302736],[-127.91961568910183,52.89864201607037],[-127.9194395754696,52.89849524379817],[-127.91926628740659,52.89834898116219],[-127.9190875028474,52.8982050499434],[-127.91890965756033,52.898061103133124],[-127.91874185586023,52.89791250825015],[-127.91860249323983,52.89775448127477],[-127.91850633288549,52.89758397450543],[-127.91838614420588,52.89741723155965],[-127.91824678452487,52.897259204114214],[-127.91805892877402,52.89712045928417],[-127.91783097527752,52.897000868847236],[-127.91755596794896,52.896973966008844],[-127.91740736621259,52.89690016214535],[-127.917333493003,52.89662448345529],[-127.91734703326112,52.89647013176749],[-127.91736408420853,52.896290496175155],[-127.91734002783441,52.896107602888804],[-127.91719289870302,52.89596315270117],[-127.91694156552194,52.89586187753258],[-127.91668944672946,52.89576397760015],[-127.91644278671345,52.89566319019719],[-127.91634408244548,52.8954977720327],[-127.91649190365108,52.89534739289078],[-127.91669648949764,52.895216822033895],[-127.91678575722871,52.895048340110165],[-127.91684911614364,52.894842166926615],[-127.91669603195663,52.8946894102685],[-127.91654839541843,52.89453319269884],[-127.91637682840613,52.894383534861404],[-127.91629755028784,52.894215001997324],[-127.91628194279478,52.89403365662373],[-127.91624596459144,52.893854885177056],[-127.91615515368412,52.8936786842598],[-127.9159867431726,52.893536821317994],[-127.91573997157239,52.89343322740733],[-127.91547185113599,52.89335184448478],[-127.9151934212574,52.89328967667841],[-127.91491052349684,52.893231508920266],[-127.91463286765942,52.8931659732128],[-127.91435951991176,52.893092510853016],[-127.91415651333486,52.89296802341136],[-127.9141196722184,52.89279038638896],[-127.91409760388999,52.89261026688584],[-127.91407738666817,52.89242956121879],[-127.91404603872864,52.89225014874097],[-127.9139925505256,52.89207502457922],[-127.91388805490249,52.89190465859159],[-127.9137348658818,52.89174909290075],[-127.91354165742418,52.89161435607315],[-127.91331192052684,52.89149590716483],[-127.91306263477664,52.89139795364735],[-127.9127885896878,52.891329548053044],[-127.91250648039043,52.89126799892062],[-127.91224748294366,52.89118196755366],[-127.91201243542041,52.8910692074728],[-127.9117818582933,52.89095245527915],[-127.9115371738565,52.89085330280138],[-127.91126553151817,52.890775886779146],[-127.91097670642537,52.890709959275036],[-127.91068429238365,52.89066763010147],[-127.91040103046603,52.89066326502448],[-127.91013202272656,52.89072760383459],[-127.90986442066375,52.890823315743205],[-127.90958829394451,52.8908950597989],[-127.90930073372787,52.890940085208285],[-127.90900707325613,52.890973999097476],[-127.90875409159256,52.89100108197324],[-127.90841680090652,52.89101721089115],[-127.90812041493916,52.89103154506747],[-127.907822990932,52.89104366233577],[-127.90752556635447,52.89105576989032],[-127.907229140058,52.89106954645716],[-127.90693382717777,52.89108723214397],[-127.90663972749873,52.891111058339646],[-127.90635204757068,52.891153836432416],[-127.90606977864982,52.89121334084773],[-127.9057854222907,52.891267829495455],[-127.90549435522325,52.89129720855586],[-127.90519761605901,52.891303703125836],[-127.90482247628454,52.89130641818409],[-127.90453291321347,52.891265148560436],[-127.90424414835886,52.891221058363364],[-127.9039640884908,52.891163383679725],[-127.9036865126225,52.891098933257595],[-127.90341068850394,52.891031655860324],[-127.90313573824166,52.89096324270073],[-127.90286078886223,52.89089482889536],[-127.90258497769422,52.890828114361156],[-127.90230737096448,52.89076254025656],[-127.90203071331551,52.89069751512971],[-127.90175309380216,52.89063194891364],[-127.9014773257556,52.89056578713604],[-127.9009505672056,52.89042577021223],[-127.90067460183808,52.89035512584805],[-127.9004183430009,52.890267347598915],[-127.90018795186825,52.89015393314054],[-127.89997105138059,52.89002964642847],[-127.89976324194633,52.88990072850787],[-127.89957817770761,52.88975966795914],[-127.89941321005217,52.889609879587205],[-127.89925915913102,52.88945430973303],[-127.89910515926748,52.889299859837436],[-127.89893748629521,52.88915180046561],[-127.89874712024674,52.88901699415554],[-127.89852116018444,52.88889845606114],[-127.89827445790968,52.88879482520853],[-127.89801812847884,52.888704801051055],[-127.89774045307765,52.88863754053602],[-127.89745833345339,52.888574835028344],[-127.89719860943073,52.888492145803575],[-127.89696734848131,52.888379860221264],[-127.8967576603701,52.88824984646372],[-127.89656167292237,52.88811400642457],[-127.89637843799456,52.88797179048852],[-127.89620247322776,52.88782553806587],[-127.89602557182495,52.88767930049105],[-127.89584330351789,52.88753763312769],[-127.89564744705876,52.88740459643068],[-127.89541904415319,52.88729337381967],[-127.89515630926203,52.887205688814795],[-127.89489183942268,52.88712083813702],[-127.89462655713822,52.88703879793996],[-127.89435859177267,52.886959042352544],[-127.89409963245753,52.886872415182374],[-127.89385672398133,52.88676983515352],[-127.89362813000825,52.88665412830181],[-127.89340494550602,52.886534414946134],[-127.89317359542896,52.88641931659603],[-127.89294125901965,52.886303112702315],[-127.89273269070027,52.8861770018509],[-127.89257622633714,52.88602930922818],[-127.89247827630223,52.88585713387068],[-127.89239787184421,52.88568186906055],[-127.89232958028661,52.88550697418913],[-127.89226775943851,52.88533085413441],[-127.89219387710764,52.88515549314509],[-127.89212159206642,52.88497449251363],[-127.89202012390106,52.88480685728187],[-127.89182846089692,52.88468383574126],[-127.89153865975537,52.88461507016746],[-127.89125095107825,52.884572617789615],[-127.89095628766354,52.884540930395026],[-127.89067535150639,52.884483229949666],[-127.8903995907476,52.884415921760564],[-127.89012289308732,52.88434862799938],[-127.88984198436656,52.88429149012821],[-127.88954196531525,52.884264925259856],[-127.8892500391713,52.88423206866034],[-127.889007480017,52.88413675515597],[-127.88880114622575,52.883997705842944],[-127.88857114242673,52.8838915448969],[-127.88827906596234,52.883876059072094],[-127.88797372234126,52.88387647933019],[-127.88769827766134,52.883816450696465],[-127.88743473144635,52.883730438864575],[-127.88715216859838,52.8836357728505],[-127.88697813862537,52.883490031973025],[-127.88678492840303,52.88335245452246],[-127.88656463808663,52.88323435905959],[-127.88630911633379,52.88314037809132],[-127.8860563690695,52.88304578709246],[-127.88580182160564,52.882952901428325],[-127.8855499748494,52.88285773891359],[-127.88530256491619,52.882757455818606],[-127.88505695229631,52.882656022413826],[-127.88481404006717,52.8825523032502],[-127.88457561431626,52.88244458375585],[-127.88434441943983,52.882332272927556],[-127.8841231442174,52.8822125118089],[-127.88391092544211,52.88208700024339],[-127.88370321820106,52.88195805306906],[-127.88349822113753,52.88182737615864],[-127.8832914146865,52.88169785783679],[-127.88309825871146,52.88156138563891],[-127.88292968458174,52.88141219756499],[-127.88273754320491,52.88127739449259],[-127.88248831308105,52.88117769078914],[-127.88226787292554,52.881055670937755],[-127.88206198672222,52.88092557080109],[-127.88193108156386,52.88076512441822],[-127.88176015162645,52.88062549627714],[-127.8815081543381,52.88052639982486],[-127.8812306326544,52.88046078474909],[-127.88093468200704,52.88048345640591],[-127.88072115667576,52.8805810352448],[-127.88067796951842,52.88076276003449],[-127.88068048279263,52.88103063406808],[-127.88081602793802,52.88119100751454],[-127.88091106280568,52.88136156182005],[-127.88094590997467,52.881539240025454],[-127.88094826431437,52.881719115111146],[-127.88094970587329,52.88189956975584],[-127.88096986689702,52.8820819668107],[-127.88096753796138,52.882261360767906],[-127.88090355289256,52.88243558033466],[-127.88079861902924,52.882610446031435],[-127.88064910268355,52.88276641219503],[-127.8804449590238,52.88288682465713],[-127.88019217458083,52.88298110225812],[-127.87992036302174,52.883066159737915],[-127.87965998604501,52.88315720359901],[-127.87941109262707,52.883255345142985],[-127.87916998637257,52.883361208501015],[-127.8789424217859,52.88347862068076],[-127.8787785876409,52.883626966224526],[-127.87865651649822,52.88379314472415],[-127.87859344217078,52.88396733915719],[-127.87858097572119,52.884149136644375],[-127.87850847395704,52.88432068366954],[-127.87836936702202,52.884480964110615],[-127.87828386395913,52.884653283643445],[-127.87816283409477,52.884822242766376],[-127.8779082958036,52.88489805147676],[-127.87761633024577,52.884948674939906],[-127.87736065498771,52.88504131522709],[-127.87710422823572,52.88513788586506],[-127.87685556408147,52.88524162281609],[-127.87662505183341,52.88535572321128],[-127.87642398849857,52.88548336080151],[-127.87626755592169,52.88563101929031],[-127.87614353432963,52.885795539907114],[-127.87603093280525,52.88596604797044],[-127.87590698310653,52.88613224410366],[-127.8757526292276,52.8862849174807],[-127.87557936119136,52.88643061052254],[-127.87539565268625,52.886571976958315],[-127.87520532460304,52.88671121567895],[-127.8750111651642,52.88684770824603],[-127.87481415656842,52.88698312492241],[-127.87459625888366,52.88710934155552],[-127.87436288256632,52.88722236181931],[-127.87435538816979,52.88739062724295],[-127.87443138231231,52.8875732552194],[-127.87448566458195,52.887748938497694],[-127.87436902397236,52.887912218165475],[-127.87416315930277,52.88803712998441],[-127.87387609809787,52.88809382633198],[-127.87359970703515,52.8881604496427],[-127.87331919900222,52.88821816114234],[-127.87302418731868,52.88824248283294],[-127.8727284485975,52.88822925832565],[-127.8724311102575,52.888221663410356],[-127.8721322652677,52.88822249453744],[-127.87183566530229,52.88823170093033],[-127.87154462040104,52.88826156059498],[-127.87126435491881,52.88832486812826],[-127.87097571094445,52.8883670188323],[-127.87067692561514,52.888390264708036],[-127.87038102254013,52.88841571487564],[-127.87009725771865,52.88846282566049],[-127.86982949496303,52.888535463572836],[-127.86956588552731,52.888617558575504],[-127.86930723945751,52.88870686484142],[-127.86905159750002,52.88880117160747],[-127.86879790367827,52.88889712379949],[-127.86854513170942,52.88899306076977],[-127.86829908510236,52.88909393018133],[-127.86806558298264,52.88920469743031],[-127.86782924625052,52.88931437928396],[-127.86758810169457,52.889420783066576],[-127.86730318776219,52.8894847197044],[-127.86701997675483,52.88954470072144],[-127.86683477333717,52.889674310899984],[-127.86670727622007,52.88984560137403],[-127.86664883842832,52.89002084414447],[-127.86679497739873,52.890338555758625],[-127.86649852408235,52.89033037558491],[-127.86619668395076,52.89032675506775],[-127.8659158261255,52.890291978678164],[-127.86568288992753,52.89018190138521],[-127.86546860393892,52.89005134136061],[-127.86528460032599,52.889910776806644],[-127.86513168458556,52.88975683218043],[-127.86499247373298,52.889597056165364],[-127.86484775497004,52.88943905328208],[-127.86470214841867,52.889282185269906],[-127.86455288507815,52.88912649603809],[-127.86439355231282,52.888974894163624],[-127.86423417127334,52.88882216290685],[-127.86407204203607,52.88867060494487],[-127.86390171885117,52.888523095567464],[-127.86371868918073,52.88838306917594],[-127.86341461585701,52.88826402643481],[-127.86320186508034,52.88816818805331],[-127.86298088904557,52.88809714988666],[-127.86271121358607,52.888062188878266],[-127.86240789644731,52.88806699403166],[-127.86212504086454,52.888092772705484],[-127.86180869824278,52.88805518585726],[-127.86152888776878,52.88800132620943],[-127.86125914175965,52.887922080332956],[-127.86099023714637,52.887840587565236],[-127.86071801265751,52.88776867047172],[-127.8604448903791,52.88769732296575],[-127.86017442136287,52.88762257892443],[-127.85988820203114,52.88754976040151],[-127.85969671686568,52.8874289181364],[-127.85963012417083,52.88724725388919],[-127.85947461068359,52.887097262116],[-127.85928423785269,52.88698032947091],[-127.8590622234466,52.88688519523924],[-127.85876319998174,52.886796326985994],[-127.85847842984191,52.88675654624248],[-127.85818337528637,52.886737113731826],[-127.85788489211551,52.88672445149754],[-127.85758720083327,52.886708422065055],[-127.8572919024732,52.88668337738187],[-127.8569965560279,52.88665722072337],[-127.85670198605754,52.88662767919974],[-127.85641264786558,52.886589651572294],[-127.85612920567141,52.886537522565476],[-127.85585516113495,52.8864661791514],[-127.85558715020026,52.8863835391899],[-127.85531911572066,52.886300334034615],[-127.85504873752272,52.88622725395259],[-127.8547708813097,52.88617502461635],[-127.85447580789818,52.88615501821715],[-127.85417362133822,52.88616426836487],[-127.85387602421328,52.886193066738706],[-127.8535921923347,52.88623901779929],[-127.85331285132281,52.886302267841664],[-127.853038641548,52.88637665494315],[-127.85276919690097,52.8864537642192],[-127.85250264730321,52.88653306917026],[-127.85223901688381,52.88661512543329],[-127.85197640617206,52.88669941591805],[-127.85171476566948,52.886784802510796],[-127.85145316353825,52.88687075286164],[-127.85119152132475,52.88695614724256],[-127.85093091284678,52.88704375770477],[-127.85067419540985,52.8871352341731],[-127.85041556740717,52.88722561916581],[-127.85015287616666,52.88730822076946],[-127.84988125853057,52.8873780756305],[-127.84959185610583,52.88742466045575],[-127.84929690912813,52.88745059844943],[-127.84899903146687,52.88745192061763],[-127.84870375750158,52.88742741895976],[-127.84845936185474,52.88733094004238],[-127.84829460742064,52.887181635393695],[-127.84814075192453,52.88702599838241],[-127.84798322453993,52.88687153985101],[-127.84780752760341,52.8867274553445],[-127.84760273932586,52.88659952123613],[-127.8473742722854,52.88648373344437],[-127.84713307203253,52.88637486208294],[-127.84688916232409,52.88626771872972],[-127.84665163790922,52.886157676665015],[-127.84642958357571,52.88603953546442],[-127.84623396091577,52.885908092196104],[-127.846054600895,52.88576518362619],[-127.84588884133746,52.88561365851442],[-127.84573492730526,52.88545633342172],[-127.84559476876011,52.88529431730565],[-127.84546847673714,52.885129832458695],[-127.84535800962185,52.884965108042785],[-127.845332635636,52.88478782927879],[-127.84533724242954,52.88461457271434],[-127.84534412319341,52.88442950584196],[-127.84539039346518,52.8842511024182],[-127.8454385729327,52.88407379891085],[-127.84543639239463,52.88389447902182],[-127.84542387375377,52.88371307947238],[-127.84539467272181,52.88353306274201],[-127.84534141417242,52.88335678651897],[-127.84525579634723,52.88318550204956],[-127.84514523769084,52.883018527867115],[-127.84501890603057,52.88285293106232],[-127.84488890222666,52.88268850374587],[-127.8447672166272,52.882522833753335],[-127.84466502688132,52.88235572777546],[-127.844594323001,52.88218477372732],[-127.84457643552815,52.88200794205948],[-127.84459748410904,52.88182769251729],[-127.84463335944022,52.88164553332637],[-127.84466066050697,52.88145902478952],[-127.84493635429126,52.88152700493655],[-127.84521631937636,52.88158594071565],[-127.84550838784425,52.88162339645787],[-127.84580707383797,52.881641682201064],[-127.84603586730732,52.88161511418749],[-127.84626517077129,52.881450094013786],[-127.84647157134518,52.88131513420478],[-127.84669467615197,52.881200653935274],[-127.84689691613265,52.881076977306165],[-127.84704421286577,52.88093173533096],[-127.8471869619907,52.88081011386112],[-127.84742594782233,52.88065390678451],[-127.84763838404031,52.88052950355106],[-127.84783062029756,52.88041157827436],[-127.84802486192875,52.880275694628146],[-127.84822293499695,52.88014198335479],[-127.8484506390609,52.88002630621698],[-127.8486831314743,52.879913916206384],[-127.84889742082439,52.87978948138043],[-127.84909548928479,52.87965577755798],[-127.84929160802845,52.87952041810893],[-127.84949704276737,52.87938491172284],[-127.84968245791362,52.879260364686345],[-127.84987290922406,52.87912285142081],[-127.85006304018901,52.879021213854394],[-127.85031462863718,52.87891972952507],[-127.85056395287013,52.87883061093743],[-127.8506455925871,52.87865277747376],[-127.85085610034959,52.87852727735851],[-127.85113849510815,52.878492564245185],[-127.8514415039545,52.87850348550703],[-127.85160003000578,52.8785099562085],[-127.8517085054051,52.87847853723237],[-127.85182950061014,52.87830680865227],[-127.8518701317024,52.87812793430436],[-127.85187908685437,52.877948438004466],[-127.85193090393747,52.87776994335174],[-127.85205999482477,52.8776132154776],[-127.85226508273189,52.877491725891154],[-127.8525471410355,52.87742786930749],[-127.85283974213057,52.877392426117034],[-127.85313926086627,52.87736640586519],[-127.85343690957535,52.87733985832983],[-127.85372472932009,52.877301690363616],[-127.8539956706651,52.877239126538825],[-127.8542383481654,52.87712599925427],[-127.85442858026471,52.876983997613834],[-127.85450694250514,52.87681685741265],[-127.85450165831942,52.87663142438801],[-127.85447088004065,52.876330368462085],[-127.85473337318848,52.87624495165647],[-127.8550063129401,52.87618571671511],[-127.85530757152112,52.87613556687408],[-127.85555947422297,52.876085065499296],[-127.85586243159842,52.87600966101309],[-127.8561072153429,52.875923964668615],[-127.85639811381766,52.87589246715728],[-127.85669234078438,52.875915844045316],[-127.85696134320109,52.87597997377816],[-127.85721958955581,52.87607510412464],[-127.85743005897469,52.87620573015609],[-127.85766545167344,52.876310188487736],[-127.85794892541364,52.876364554529026],[-127.85824533450486,52.87639518390914],[-127.85854133793438,52.87641684220293],[-127.85883948020117,52.87642333726422],[-127.85913282680609,52.87640524599215],[-127.8594232375804,52.876362538991884],[-127.85971071807107,52.87631651470391],[-127.85999718719627,52.87626882872824],[-127.86028360639207,52.87622001289056],[-127.86057104585322,52.876173431110615],[-127.8608596664586,52.87613242582453],[-127.86115031824383,52.87609531555466],[-127.86144198071035,52.87605987449807],[-127.86173360314604,52.87602386837189],[-127.86202320816155,52.8759839655748],[-127.8623117039072,52.875940160698896],[-127.86259913926494,52.87589357395219],[-127.86288357043466,52.87584198522932],[-127.86316494835454,52.87578427435161],[-127.86344795071864,52.875721497121354],[-127.86371150706933,52.87563941493462],[-127.86394891174704,52.875534197387154],[-127.86418421036157,52.87542341682092],[-127.86441559077484,52.875308205033306],[-127.86464214045994,52.875189150462994],[-127.86486012902932,52.87506574735265],[-127.86506958119755,52.874938560329504],[-127.86524054575139,52.87480412789059],[-127.86538925103346,52.874650435825835],[-127.86559003271948,52.87449536093943],[-127.86568501502703,52.87432626249757],[-127.86571745089189,52.874153116920695],[-127.8657003037662,52.87397403253668],[-127.86566252297577,52.87379135672836],[-127.86562755558649,52.873587893639204],[-127.86547264044346,52.87342948764743],[-127.86524191228003,52.87332553565333],[-127.86497599732125,52.87324680311125],[-127.86469836732266,52.87317666767486],[-127.86442255884594,52.873105937724944],[-127.86414771311891,52.87303574787448],[-127.86386745940594,52.87296957106658],[-127.86359174219568,52.872900523705816],[-127.8633277174019,52.87282231353827],[-127.86311776058207,52.87270345543089],[-127.8629510046821,52.87255084779479],[-127.86277065834648,52.87240685818801],[-127.86259399945997,52.872261688892394],[-127.86241640426336,52.872116534174666],[-127.8622369744131,52.871971964270934],[-127.86205484640902,52.87182968777386],[-127.86186638768889,52.87169143023634],[-127.86167068541978,52.87155777106233],[-127.86146404364028,52.87142932476289],[-127.86124083351565,52.87130506841598],[-127.86100132393656,52.87119115857039],[-127.86074860587392,52.87109427206052],[-127.86048295761388,52.8710211302668],[-127.86020455008689,52.87097565830217],[-127.85991129277743,52.870952275295046],[-127.85961113301731,52.87094133154297],[-127.85930742405404,52.87093436211809],[-127.85898810195634,52.87091083317915],[-127.85865894753032,52.87089641773576],[-127.85856410184918,52.87087718410884],[-127.8584547551589,52.87080268683191],[-127.85820296778944,52.87070578023588],[-127.85792501355616,52.87064907702142],[-127.85763315622039,52.87061502144468],[-127.85733694907674,52.87058775079318],[-127.85704333016106,52.87055596356013],[-127.85674923758815,52.870534827884676],[-127.85644299325836,52.87053349605347],[-127.85618149610292,52.87059815930107],[-127.85597140919687,52.87073207560611],[-127.8557183988622,52.87082070027289],[-127.85538696731503,52.87088254702813],[-127.85509030980869,52.87086648758799],[-127.85480528409242,52.87081830048124],[-127.85453049351435,52.87074865262957],[-127.85426282761892,52.87067160987177],[-127.85401379939242,52.87057352994713],[-127.85377011823708,52.870470316286195],[-127.85352469088284,52.87036938059292],[-127.85327115462047,52.8702747331595],[-127.85301769233827,52.87018176100504],[-127.85276148270816,52.87008996157312],[-127.85250710004628,52.86999700285202],[-127.85225719101054,52.869900054150726],[-127.85201530519416,52.86979513165911],[-127.85170631442863,52.86964475003243],[-127.85159033220951,52.869545689634585],[-127.85134847417753,52.86944132137121],[-127.85107719946912,52.869366570319976],[-127.8508238691669,52.869276398387],[-127.85054580137691,52.86910926813277],[-127.85027330059353,52.86902779975076],[-127.8500773809057,52.86890926289851],[-127.85002588403096,52.86873071747692],[-127.84998913660029,52.86854857690031],[-127.84992330911324,52.868361289196194],[-127.84984997989707,52.868194297101404],[-127.84967751539902,52.86805856676787],[-127.84940347912394,52.86798441144473],[-127.84914182263962,52.867894931999786],[-127.84889997996555,52.867790558590045],[-127.84865810516177,52.867685073191765],[-127.84841894099274,52.867577858722825],[-127.84818154084029,52.867468374083444],[-127.84794778876365,52.86735714566059],[-127.84771858359885,52.86724361230639],[-127.84750120946667,52.86712372266009],[-127.84735568481383,52.86696514594661],[-127.84723772988539,52.86679885380962],[-127.84712443310818,52.866632488330985],[-127.84695435366896,52.866487192800186],[-127.84674215294488,52.86635769666095],[-127.8465823127866,52.86621223968655],[-127.8464911202738,52.866040477366376],[-127.84635848628137,52.86587889890989],[-127.84620756049297,52.86572433355122],[-127.84602186549603,52.86558376594052],[-127.8458052964556,52.865460497663165],[-127.84557158602853,52.86534982896221],[-127.84532971842584,52.865244336786205],[-127.84509148924558,52.86513653607322],[-127.84485686951699,52.86502644523551],[-127.8446231395003,52.864915210029714],[-127.84438853707745,52.86480511800812],[-127.84415304658232,52.8646961514757],[-127.84391480894874,52.864588357535595],[-127.84367748545391,52.864479983809204],[-127.84345368328414,52.86436130870197],[-127.84326029745203,52.86421468764661],[-127.84303000318226,52.86411797711382],[-127.8427372866883,52.86410575332742],[-127.84239248213117,52.86415879717264],[-127.84213934766363,52.864136427454625],[-127.84182230773521,52.86405675919738],[-127.84152804046985,52.86396553241603],[-127.84126352493627,52.86385197519892],[-127.8411023427202,52.863739596312755],[-127.84090599820343,52.86361039746321],[-127.8407284888858,52.86346465356791],[-127.84056653012291,52.863312495973425],[-127.84044595027059,52.86314903628455],[-127.8403547894139,52.86297727783399],[-127.84024798299154,52.862809683274534],[-127.84011534923165,52.86264697699254],[-127.83997250445256,52.86248498646362],[-127.83980512742349,52.86233684057405],[-127.83960156261067,52.86221223655446],[-127.83936614699951,52.862104380472296],[-127.83911170568568,52.86200859646063],[-127.83884643635295,52.86192027219848],[-127.83858137044638,52.86183698407478],[-127.8383164410188,52.8617564911859],[-127.83804794753156,52.86167998136484],[-127.83777770676039,52.86160574022292],[-127.83750566496828,52.86153321258425],[-127.83723274958008,52.86146180999487],[-127.83695978722437,52.86138929550927],[-127.83668866116567,52.86131618672431],[-127.83641577285405,52.86124534681954],[-127.83620465733344,52.86124752531315],[-127.83591692858418,52.861393820428475],[-127.83567962995018,52.86150122273935],[-127.83547404454833,52.86163222561794],[-127.8353215574296,52.861785939185694],[-127.83521544469454,52.86195798477126],[-127.83499881491959,52.86207010266245],[-127.83472014439143,52.862146196753265],[-127.83443347697487,52.862187664819416],[-127.83413657035045,52.86220742853428],[-127.83384709589134,52.86224838296773],[-127.8335777929096,52.86232600506453],[-127.83340640997316,52.86247328496178],[-127.83314574619497,52.86255694105749],[-127.83303239717522,52.86240961994893],[-127.83304968434288,52.862227196567005],[-127.83304564912915,52.862046782780446],[-127.83300978180523,52.861861816706195],[-127.83278655479533,52.861777306978226],[-127.8324838364802,52.861748399343284],[-127.8322070659622,52.861695545873964],[-127.83201314544311,52.86155676201155],[-127.83190180595152,52.861390916909045],[-127.83181988507316,52.86121675726605],[-127.83176290976198,52.86103828973182],[-127.83170777972565,52.860859793390055],[-127.83158378631352,52.860702548051684],[-127.83137629339971,52.86057238651791],[-127.83117417338964,52.86043765699261],[-127.83103433547095,52.86027953704988],[-127.83091274339769,52.86011328579511],[-127.83077109597889,52.85995631471033],[-127.8305691493361,52.859825509359396],[-127.83033799342617,52.859707480456926],[-127.83014983538632,52.859572531703776],[-127.83001640914529,52.85941206874356],[-127.82991597602248,52.85923988202366],[-127.82984336576274,52.85906558491057],[-127.82984775320956,52.858886160664944],[-127.82986044387047,52.85870492113211],[-127.829865768434,52.858525482247785],[-127.82986270849304,52.85834561792701],[-127.82983270137832,52.85816672928802],[-127.82979989775004,52.85798788417936],[-127.82978401323615,52.85781269447045],[-127.82977789278883,52.85764857139362],[-127.8297422836647,52.85744735040463],[-127.82972633663972,52.8572710406327],[-127.82969883953001,52.85710725042337],[-127.82969535630023,52.85687414170423],[-127.82975202614159,52.856698942864064],[-127.82966243616875,52.85654060355459],[-127.82959359853483,52.85638922285061],[-127.82961551499142,52.85620616240492],[-127.8296358359821,52.85602928766512],[-127.82969892473099,52.85585175578999],[-127.82977886799846,52.85567675929934],[-127.8298823733799,52.85550867758593],[-127.82999897566135,52.85534264266026],[-127.83008647446408,52.85517032613423],[-127.83015890525108,52.854993769312465],[-127.83026250364577,52.854827927648536],[-127.83046143686114,52.85469423875172],[-127.83064615117173,52.854554601199276],[-127.83075605465892,52.854384176842565],[-127.83078936189649,52.854206543227455],[-127.83070557612682,52.85403185536026],[-127.83050283166705,52.853903304234905],[-127.83025647296867,52.85379896386268],[-127.82999508791846,52.85371280168418],[-127.82980973901101,52.853577808543164],[-127.82978984897467,52.85339595489176],[-127.82967675199616,52.85323181165052],[-127.82940428769837,52.853169361307636],[-127.82911127508132,52.85312684292872],[-127.82882545083899,52.853078042054115],[-127.82854731468929,52.8530134360961],[-127.828306616146,52.852910689577676],[-127.8280819561524,52.852791434322754],[-127.82785459741774,52.852674471565095],[-127.82761921614659,52.85256547107195],[-127.82735269809154,52.852489471810195],[-127.82706927768085,52.8524316615244],[-127.82680175217283,52.85235399075324],[-127.82653507807096,52.85227462916311],[-127.82626226447415,52.852203765276926],[-127.82598331124996,52.85214139905319],[-127.82569979946929,52.85208135394884],[-127.82540934136034,52.85207633504494],[-127.82511378294119,52.85210446798422],[-127.82481928125651,52.852135390684914],[-127.82452564414496,52.85216461326231],[-127.82423194383375,52.85219271510353],[-127.82393688968405,52.85221074843322],[-127.82363782923181,52.85222211735244],[-127.82334249008595,52.85221156421953],[-127.82305600508785,52.852168929590675],[-127.82277600017305,52.85210377419152],[-127.8225049574569,52.852030632256145],[-127.82224089826792,52.85194673658425],[-127.82198932826236,52.85185030691299],[-127.82173853841182,52.851750510655044],[-127.82148313270373,52.851651341451735],[-127.82123132693671,52.851549308967876],[-127.82099321144088,52.85144090284571],[-127.82077608864351,52.851323203054456],[-127.82060101267243,52.85118803656387],[-127.82051450234549,52.851013949035405],[-127.82045452844794,52.8508293524313],[-127.82033608776052,52.85066976731669],[-127.82006803592137,52.85057920290007],[-127.819778286739,52.850568554373744],[-127.8194765837914,52.85058331674035],[-127.81917591864068,52.85057844965965],[-127.81887579311385,52.85056459667955],[-127.81859753943756,52.85051846099174],[-127.81839361531505,52.85038261694784],[-127.81835059959867,52.85020280570854],[-127.81824327603661,52.8500419255001],[-127.81800497064901,52.84992903250138],[-127.81772694285854,52.849866076676236],[-127.81745063186534,52.84979973071253],[-127.81717432173168,52.84973338409633],[-127.81688848654426,52.84968344280426],[-127.81660872191557,52.849623309193504],[-127.81634661979791,52.849541047269604],[-127.81609061310505,52.849449166722486],[-127.81583728428974,52.84935443730953],[-127.81558209741914,52.849259736081564],[-127.8154222128185,52.84910918961839],[-127.81517117580921,52.849024512161975],[-127.81488758059314,52.84896163577241],[-127.81460159538244,52.84890832840528],[-127.81431144661887,52.84886628544703],[-127.81401679327425,52.84884953777252],[-127.81371942233872,52.8488563718016],[-127.813423607586,52.84887775372559],[-127.81313514948265,52.84891919888927],[-127.81285991087745,52.84898734270209],[-127.81259159084391,52.84906491185807],[-127.81232618486419,52.84914523337322],[-127.81205692545872,52.84922280679582],[-127.81179344825458,52.84930478325904],[-127.8115448102806,52.84940781979234],[-127.81130522014928,52.84952697485647],[-127.81106311831385,52.849630474499904],[-127.8108045427561,52.8496748159929],[-127.8105168507767,52.849603024481034],[-127.81023671562059,52.84953392273462],[-127.80996747484258,52.849458482626346],[-127.80970703162394,52.84937113167062],[-127.8094752196287,52.84925700071487],[-127.80924106435273,52.849153559133335],[-127.8089416754671,52.84913462972819],[-127.80865383697089,52.84908132755907],[-127.80836614604335,52.849053248793254],[-127.8080692477325,52.84907127093457],[-127.8077771122475,52.84911388041506],[-127.80750663811092,52.84918474511529],[-127.80725815683047,52.849291697911156],[-127.80700841987249,52.84939082266812],[-127.80673226669263,52.84943766751254],[-127.80643295992843,52.8494428268493],[-127.80612982833844,52.849423391826434],[-127.80583905591901,52.849388628421224],[-127.8055539448547,52.849333599795365],[-127.80528023887896,52.84926213663467],[-127.80503067744971,52.849167891365035],[-127.80480786661582,52.84904632227709],[-127.80459588064612,52.8489167486405],[-127.8043865821038,52.84878488243712],[-127.80414815653624,52.8486898993032],[-127.80385308194967,52.848663043946125],[-127.80355271450541,52.84864299494898],[-127.80325144907304,52.84862352394333],[-127.80297301165281,52.848572305618134],[-127.80270875166437,52.84848220004564],[-127.8024813344541,52.84836126231425],[-127.80232618760486,52.848211755942515],[-127.8021856305272,52.848055290724204],[-127.80205145585055,52.8478959294758],[-127.80192277975517,52.84773424177798],[-127.80179865033222,52.847570242249795],[-127.80167723229238,52.847404524025244],[-127.80155861090648,52.84723875380937],[-127.8014408804862,52.847071857801964],[-127.80132223747546,52.846905531670444],[-127.80120364270195,52.84674032564754],[-127.80108783002062,52.846575076840374],[-127.80097753915952,52.84640805730615],[-127.80087184244856,52.84623985522003],[-127.800766122732,52.84607108841653],[-127.80065859210453,52.84590347024732],[-127.80054736770575,52.84573646460227],[-127.80043066204748,52.845571793781964],[-127.80030292118121,52.84541008993657],[-127.80015584331042,52.84525316621518],[-127.80000102303711,52.845110933605916],[-127.79999042769033,52.84510212820717],[-127.7998141514388,52.84495853823417],[-127.7995816334524,52.844848326917],[-127.79934253167085,52.84473653007251],[-127.79912602294259,52.84460924906001],[-127.79901788771677,52.84444892945351],[-127.79896661026997,52.844269794339745],[-127.79894864433494,52.844086230043985],[-127.79897932734882,52.84390976737584],[-127.7990677707739,52.84373522682675],[-127.79909089894856,52.843556072888354],[-127.79905176041282,52.843377881712954],[-127.79891850180562,52.8432173818119],[-127.79874399282379,52.84307096521709],[-127.79855946595075,52.84292974167799],[-127.79837583889102,52.84278794807407],[-127.79820597335198,52.84264145959214],[-127.79805346916986,52.84248742322684],[-127.79790915819962,52.84232933334736],[-127.79777497028896,52.84216884638443],[-127.79764999821452,52.84200597625714],[-127.79754251349257,52.84183891044678],[-127.79746171621977,52.84166527520925],[-127.79739108011775,52.841489807417766],[-127.79734446760936,52.84131060002197],[-127.79725460541809,52.841142152210146],[-127.79707456646328,52.84099693876181],[-127.7969358878335,52.84083988245613],[-127.79687539143671,52.840662008251606],[-127.79687158221095,52.84048327563842],[-127.7968890942449,52.84030308683278],[-127.79692060209734,52.84012381379284],[-127.79696050506968,52.839944968265534],[-127.79699836869064,52.83976222600938],[-127.79705032216823,52.83958263999921],[-127.7971371885564,52.839414841421686],[-127.79730422438634,52.83927384915779],[-127.79754961687804,52.83916079365325],[-127.79779262889043,52.83905730682744],[-127.79804724096684,52.83896429561808],[-127.79830185155537,52.83887127488927],[-127.79855356247069,52.838775500039716],[-127.7988052573861,52.838679724872634],[-127.79905891926107,52.83858616096236],[-127.79931454219825,52.83849537335961],[-127.79957589647402,52.83840785131208],[-127.79984726120864,52.83833755486144],[-127.80000054186213,52.83831166495378],[-127.80013537702663,52.83828942053012],[-127.8004265241062,52.838246843892406],[-127.8007039354321,52.8381876624878],[-127.8009432406812,52.83808479068968],[-127.80116298792385,52.8379592338353],[-127.80141687688393,52.83787126605144],[-127.80170291598301,52.83781811075734],[-127.80197513944685,52.837746119094234],[-127.8022375475699,52.837661937692175],[-127.8025028776298,52.83758108273637],[-127.80277112030184,52.83750298041037],[-127.80302864936324,52.83741326718935],[-127.80328783209461,52.83731905303899],[-127.8035231955943,52.837211187397806],[-127.80371189138565,52.83707713458336],[-127.80386719947221,52.83692341669285],[-127.80400634503202,52.83676153503425],[-127.80414559954018,52.836601902431674],[-127.8042960607981,52.83644377442325],[-127.80443992842507,52.836283505550256],[-127.80456134941984,52.8361202184819],[-127.80464065000814,52.835950287731336],[-127.80468155725211,52.835774230050355],[-127.80469815990187,52.83559517396092],[-127.80470165791644,52.835414086260315],[-127.8047032495544,52.83523189788877],[-127.80471420529847,52.83505125153132],[-127.80474381783537,52.834872004358445],[-127.80478929128992,52.83469419035829],[-127.80484600140745,52.834517880588024],[-127.80491391869721,52.83434308445113],[-127.80499304887682,52.83416923686363],[-127.80507688857274,52.833997002752106],[-127.8051756901366,52.833826771528614],[-127.80525487471964,52.83365460879764],[-127.8053041001276,52.83347729272971],[-127.80534394687932,52.833298443825605],[-127.80539373795209,52.83311271608229],[-127.80509826506325,52.83289811120112],[-127.80532295880953,52.83278031638638],[-127.8055524557892,52.832666366210326],[-127.80579640451802,52.8325645330846],[-127.80604707732454,52.83246763594251],[-127.80629965487344,52.83237182992333],[-127.80655509735689,52.83227765624949],[-127.806773793699,52.83217228160304],[-127.8069991400092,52.83204831242507],[-127.80718373037519,52.831950187758416],[-127.80744919997204,52.83180765536991],[-127.8076922048188,52.83168341293738],[-127.80789464427843,52.83158949621476],[-127.80814446490817,52.83149484946609],[-127.80836149536881,52.831372117585126],[-127.80855552052311,52.83123348983281],[-127.808715609722,52.831083618648975],[-127.80881815429107,52.83091444704157],[-127.80892724281495,52.830746304445974],[-127.80909109274542,52.83059748673211],[-127.80927661427793,52.8304556256966],[-127.80944797584337,52.830308942607445],[-127.80959100029126,52.83015147715763],[-127.80972457492004,52.82999080316807],[-127.80986947956956,52.829833873310854],[-127.81002170656197,52.829674588382474],[-127.81019976373535,52.82953227579301],[-127.81044407860837,52.829439394617566],[-127.81073252114987,52.82937889700417],[-127.81098528368099,52.829288117383165],[-127.81119375867803,52.82916159278904],[-127.8113887487256,52.829024065965925],[-127.81159232151248,52.82889145528587],[-127.81181893839839,52.82877641545214],[-127.81205893394478,52.82866958056377],[-127.81230467859963,52.82856714036919],[-127.81255234280721,52.828465790989334],[-127.8127962032246,52.828362822795775],[-127.81303245347279,52.82825547866747],[-127.81325625952607,52.828139923297364],[-127.81345693224952,52.828005111966085],[-127.81362522758106,52.827852299611195],[-127.81371604804123,52.82767041716761],[-127.81372879792752,52.827489175780954],[-127.81371850331126,52.827312783316685],[-127.81373127708031,52.82713210649666],[-127.81378952856683,52.82697146088788],[-127.81383875880935,52.8267952697029],[-127.81392344598339,52.82662244961607],[-127.81399128077025,52.82644652686314],[-127.81395304099229,52.826268880114796],[-127.81392683946254,52.82608992634225],[-127.81390804680886,52.825910293091695],[-127.81385773727132,52.825732832755634],[-127.81383247297737,52.82555386443074],[-127.81384311873168,52.82534519546039],[-127.81385508089646,52.82518919274713],[-127.8138856083157,52.82501048331682],[-127.8139340422741,52.82483766710988],[-127.81398042685738,52.82466038958734],[-127.81404266911919,52.824484552948675],[-127.81408157324503,52.824306278902526],[-127.81409253411596,52.82412675066541],[-127.81411000560307,52.82394712179301],[-127.81415731009096,52.82376982985709],[-127.81416689539334,52.823667115327595],[-127.8141176104995,52.82355745465093],[-127.8139542362412,52.82358520612109],[-127.81366039901171,52.823627295025325],[-127.81336656954792,52.82364752818545],[-127.81307683209592,52.823611091750095],[-127.81279456837623,52.82355379634298],[-127.8125064282135,52.82351116390518],[-127.81221915353495,52.823466831433976],[-127.81195362350162,52.82338742083101],[-127.8117301577328,52.82326980271125],[-127.81150663653526,52.82315049905879],[-127.81127853556832,52.823032951628726],[-127.8110282013883,52.82293928761881],[-127.81074685773315,52.82288141716853],[-127.81045839145584,52.82283093787177],[-127.81019213677709,52.822756009541926],[-127.80994800847118,52.82265496560937],[-127.80971631698554,52.822540268571565],[-127.80949457732487,52.8224192567088],[-127.80928437739496,52.822285179647686],[-127.80912803696657,52.822149707180046],[-127.80889228872621,52.82200480428455],[-127.80869876717722,52.82186934819457],[-127.80850678522583,52.8217484320056],[-127.80833597607378,52.82160029449063],[-127.80818443168927,52.82144624604809],[-127.8080613711361,52.82128447671075],[-127.80796398205209,52.82111390888576],[-127.80787301777013,52.82094155604867],[-127.8077821016787,52.820770323383975],[-127.8076764412595,52.820602115702805],[-127.80756798772546,52.82043395990088],[-127.80745585759668,52.82026641661923],[-127.80729099606813,52.82012714498352],[-127.80712050245741,52.819964427942374],[-127.80696694453633,52.81980648993082],[-127.80685440376854,52.819651283315814],[-127.80667357223612,52.819507772683295],[-127.80648819986,52.81936658261719],[-127.80630010539406,52.81922711116017],[-127.80610747837952,52.8190905071508],[-127.80589577944397,52.81896429417115],[-127.80568137330685,52.818839799471654],[-127.80546962910248,52.8187124564769],[-127.8052570210747,52.81858681236899],[-127.80503540071676,52.818467476426946],[-127.80480205332042,52.81835672336163],[-127.80455417601655,52.81825404018357],[-127.80429574473533,52.81816552666255],[-127.80402088929625,52.81810641981146],[-127.80372181517188,52.818089717259554],[-127.80342625272527,52.818068476021494],[-127.80313249207927,52.8180455203907],[-127.80283781925449,52.818023143020525],[-127.80254225770877,52.81800189955606],[-127.8022484510672,52.81797783040818],[-127.80196042983897,52.81793684785614],[-127.80167736821114,52.81788122454261],[-127.80139873146996,52.81782048369555],[-127.80111226282344,52.817772193293386],[-127.80083265885101,52.81771034497192],[-127.80063482846214,52.81758165900336],[-127.80049063939013,52.81742469004248],[-127.80034459358117,52.817267749385],[-127.80000063760268,52.81698044575047],[-127.79977279711693,52.816801217919384],[-127.7995920490797,52.81665882534729],[-127.79941311240422,52.81651527477192],[-127.7992177880616,52.81637983105948],[-127.79901430994033,52.81624955199124],[-127.79880264568803,52.81612331702925],[-127.79860278256895,52.81599018386308],[-127.79842841831515,52.8158448847443],[-127.79824403396117,52.815704222863914],[-127.79801781983643,52.81558550037884],[-127.79784648918289,52.81544575890324],[-127.79769171373857,52.815301835651525],[-127.79754474065737,52.815144349756],[-127.7973857329784,52.81498816000457],[-127.79714389235909,52.81471890613794],[-127.7971549344773,52.81460607278645],[-127.79735096914389,52.814559917088346],[-127.79764614550753,52.81450662863425],[-127.79790072926507,52.81441641247417],[-127.79813776717386,52.81430685165875],[-127.79837389101486,52.81419786035759],[-127.79862743178384,52.81410485156491],[-127.7988945505619,52.81402565099462],[-127.79914613745517,52.81393043796586],[-127.79938890752236,52.81382470562298],[-127.79964840361801,52.81374113616606],[-127.79992619128947,52.813672414532945],[-127.79999993000972,52.81365783167909],[-127.80021195217446,52.81361646585047],[-127.80050246723337,52.81358510541346],[-127.80079498175472,52.81357894044557],[-127.80109096047474,52.81358897153162],[-127.8013882151338,52.81360738527025],[-127.8016856271526,52.813629167798574],[-127.80198198479626,52.81364815879375],[-127.80227655583029,52.813668853490135],[-127.8025703566779,52.81369348725006],[-127.80286412540669,52.813716999776894],[-127.8026664009865,52.81356870251908],[-127.80246564884133,52.81343671036055],[-127.8022575143672,52.813305943261525],[-127.80204573706638,52.8131769177146],[-127.80182232858529,52.813058724312704],[-127.80157841701791,52.812961014195636],[-127.80131311395438,52.812884939803915],[-127.80103445410685,52.81282251278236],[-127.80074956999341,52.81276691555576],[-127.80046372657561,52.81271076738251],[-127.80018685602107,52.81264663391852],[-127.79999993043573,52.81257775732604],[-127.7999328680855,52.812552437998775],[-127.79974491952855,52.812415195970296],[-127.79960526086175,52.81225479325463],[-127.79942712265324,52.81210787631265],[-127.79918865304616,52.812006714909714],[-127.79890833370135,52.811948801332726],[-127.79862002591364,52.81189996852306],[-127.79834048779743,52.81183867864926],[-127.79808039224797,52.81175354036226],[-127.79782906685949,52.8116559451765],[-127.79757692417044,52.81156115998716],[-127.79732207427868,52.81146809273768],[-127.79707799381742,52.81136590103983],[-127.79684742869009,52.811253403986186],[-127.79662312332931,52.81113521464961],[-127.79640693454623,52.811011286706325],[-127.79620623716043,52.810879839281604],[-127.79602277062207,52.81073803885932],[-127.79579975787946,52.8105620924623],[-127.79564682157732,52.81046130109895],[-127.79542099211403,52.810306696007764],[-127.7952090418568,52.810216895904304],[-127.79495319850288,52.81012216182135],[-127.79469922863028,52.81002739854063],[-127.79449148796567,52.8099050239288],[-127.7943426258416,52.809746441832125],[-127.7942021071241,52.809587167001915],[-127.79406800382935,52.80942555193262],[-127.79390289828095,52.8092784185969],[-127.79367933558449,52.80915516345105],[-127.79345035191055,52.80903591870641],[-127.79328550016844,52.80889438561944],[-127.79320675781997,52.80872352057438],[-127.7931711549456,52.80853965634891],[-127.79314686175583,52.80835954724592],[-127.79315693822498,52.80817891292889],[-127.79313354322984,52.80799823404597],[-127.79302721573983,52.807833951329336],[-127.79283554832928,52.80769563430463],[-127.79263746798875,52.807559656933925],[-127.79244587344196,52.80742301518372],[-127.79229067531513,52.80726789025037],[-127.79217779766402,52.80710258581358],[-127.79216841533444,52.80692336968048],[-127.79219058424367,52.806743106663724],[-127.7922155938085,52.80656393019719],[-127.79224618362066,52.80638522448495],[-127.79229259116707,52.806206833153034],[-127.79231673426622,52.80602934683795],[-127.79227022917394,52.80585126259196],[-127.7921895596233,52.805678175150014],[-127.79209780285107,52.80550694295655],[-127.7920153010668,52.80533444834288],[-127.7919484619985,52.805158916458176],[-127.79189457696172,52.80498205673477],[-127.79186326176247,52.80476730336471],[-127.79185369341391,52.80462788971896],[-127.79179045287327,52.80444949575819],[-127.79170239112172,52.80427764177585],[-127.79159222290231,52.80411005324235],[-127.7915254108069,52.80393507663681],[-127.7915476985949,52.80375761857603],[-127.79168778952669,52.80359741867364],[-127.79183070479876,52.8034382964391],[-127.79207188197817,52.80333989318154],[-127.79236091790669,52.80329679932491],[-127.792640906575,52.803237592966326],[-127.7929049786039,52.803153411135945],[-127.79312013088034,52.80303297435402],[-127.79331127507002,52.80289385606361],[-127.79353297948327,52.802774439323244],[-127.79375082749797,52.80265172705954],[-127.79393735580372,52.802513234241104],[-127.79408124214585,52.80235521512394],[-127.79420925848333,52.80210719343713],[-127.79405748601516,52.80203328619434],[-127.79399076121389,52.80186055131934],[-127.79398127828229,52.80167909416085],[-127.79401001494763,52.80150041559271],[-127.79406106888416,52.80132251674226],[-127.7941261759524,52.80114720993534],[-127.79420623300533,52.800973907479],[-127.79428910619254,52.800801126855994],[-127.79431782612255,52.80062244833812],[-127.79434653731664,52.800443213905375],[-127.79437525676568,52.80026453533194],[-127.79440303114636,52.800085306196266],[-127.7944152452798,52.79999992320653],[-127.79442897197738,52.79990667005848],[-127.79445300847027,52.79972694201514],[-127.79447429037326,52.799547821060266],[-127.79449555686493,52.79936869134578],[-127.79451867169546,52.79918897731468],[-127.79454367556683,52.79901035536351],[-127.79453500932463,52.798826087371936],[-127.7945897010435,52.79864644626766],[-127.79463575809449,52.79848207522762],[-127.794634533811,52.79838680864612],[-127.79448759144302,52.79829489202718],[-127.79417826688587,52.79814156147493],[-127.79395511489065,52.798026712575826],[-127.79367217193489,52.797970504622405],[-127.79340956549896,52.797889879058616],[-127.79316462723982,52.79778712778239],[-127.79290721779945,52.79769746262203],[-127.79264186019745,52.79761744240425],[-127.7923738196528,52.79753970459429],[-127.79210402564587,52.79746479099292],[-127.79183338224942,52.797391575744165],[-127.79156621862931,52.79731270172525],[-127.79130086593048,52.797232678454925],[-127.79103017839155,52.79715834105696],[-127.79080243724594,52.797044677361406],[-127.7905611532916,52.796940178993],[-127.79030104674396,52.796852226413804],[-127.79004456116435,52.79676197601299],[-127.78982312867176,52.796643730186986],[-127.78961701860152,52.796514031213306],[-127.78941450639579,52.79638147898321],[-127.78920480259195,52.796254641109414],[-127.78896343351546,52.79614790778994],[-127.78871130820156,52.79605086203119],[-127.78856568358658,52.795901181942256],[-127.78858978942307,52.79572257492125],[-127.7886501818363,52.795545100603654],[-127.78869756054982,52.79536781568586],[-127.7887617359083,52.79519196059623],[-127.78883901125737,52.795018712678015],[-127.78891813400993,52.79484487152185],[-127.78898793349899,52.794670607479006],[-127.78904555340166,52.79449373108846],[-127.78909665815085,52.794316397988446],[-127.78914027311323,52.79413804909901],[-127.78917553995458,52.793959836461816],[-127.78918570004133,52.793780876752976],[-127.7891409605856,52.793599956329246],[-127.78919604417864,52.793429288405875],[-127.78934073572583,52.79326845469221],[-127.7895044250393,52.79311798498927],[-127.7896794800023,52.792972390632656],[-127.78982434114285,52.792816037659165],[-127.78994467958994,52.79265053460556],[-127.79004065368024,52.79248036315574],[-127.790088085037,52.79230419738645],[-127.79011117644241,52.792123927962415],[-127.79017348440432,52.791948100064666],[-127.7902591573028,52.791775834549036],[-127.79035886484608,52.79160616173163],[-127.79046888470485,52.79143857340563],[-127.7905854801292,52.79127257056335],[-127.79088314566518,52.79099450047257],[-127.79114587942647,52.79041484680138],[-127.79119390589385,52.78985473027407],[-127.79117033466069,52.78953616775648],[-127.7914029051037,52.78927870300168],[-127.79163460733866,52.789111496691156],[-127.79214288151748,52.78898266275691],[-127.79294066318302,52.788824739267625],[-127.79324424822526,52.78873265945765],[-127.79341361056947,52.78851876404651],[-127.7936311846674,52.78808160597496],[-127.79361586338361,52.78765025106216],[-127.79357427604978,52.78716885218311],[-127.79358833151214,52.78666306100649],[-127.79368369575852,52.7861913335963],[-127.79403960922862,52.78566461910912],[-127.79458766803148,52.78513552826472],[-127.7950356257912,52.7847665855817],[-127.79541357010096,52.78445531955581],[-127.79605120935564,52.78426843604889],[-127.79607245311468,52.78408874837552],[-127.79596326430479,52.78392171227385],[-127.7958146048185,52.78376592562225],[-127.79566412829024,52.78361072262761],[-127.79550907543162,52.78345727551093],[-127.79534852553623,52.78330559834985],[-127.79518254870321,52.78315735812021],[-127.79497996503524,52.78302201808855],[-127.7947710427204,52.782890693789284],[-127.79462083213103,52.78274165546992],[-127.79453480122939,52.78257313366683],[-127.79447996656707,52.7823951752908],[-127.79443611360853,52.78221367682751],[-127.79438499235725,52.78203566155837],[-127.79432647831885,52.78185887141363],[-127.79426614707795,52.781682674021994],[-127.79420671369296,52.78150590682585],[-127.79418781200233,52.781321228392095],[-127.79414447898435,52.781152052950134],[-127.79411112807527,52.780977128650626],[-127.79407685637976,52.780802209444566],[-127.79405278706236,52.780627143099345],[-127.7940197692975,52.780438196438624],[-127.79403820426876,52.7802579867636],[-127.79405571879342,52.78007780011192],[-127.79406116022112,52.77989778917211],[-127.79405548830336,52.77971851322576],[-127.7940451452691,52.77953875269748],[-127.7940320251402,52.7793590256669],[-127.79401704935259,52.7791793359729],[-127.79400115267028,52.77899965137821],[-127.79395937325957,52.7788231697593],[-127.79393577056327,52.77863688587125],[-127.79392100695004,52.778462232940946],[-127.79390647868205,52.778293181480606],[-127.79389240071087,52.77811291293108],[-127.79389915784618,52.77791999441955],[-127.79388977470455,52.777740775023275],[-127.79390750033379,52.77756562496104],[-127.79408419998781,52.77741718915925],[-127.79435695794331,52.77725607298291],[-127.79424908705717,52.77711983828235],[-127.79408929747758,52.776963654523755],[-127.79388890827087,52.776835561126404],[-127.79361747188321,52.776762363091954],[-127.79332499555179,52.77671919771051],[-127.79303469614068,52.776683280458066],[-127.79274269068904,52.77665130765889],[-127.79244985946669,52.776621597767296],[-127.79215791671962,52.776590743584094],[-127.79186584226015,52.77655709263059],[-127.79157726026284,52.77651778250267],[-127.79129195323891,52.77646833247642],[-127.7910092271776,52.77641380224451],[-127.79072565150062,52.77636096135842],[-127.79043956677728,52.776314884215815],[-127.79015172053782,52.77627107531239],[-127.78986392182526,52.77622838600273],[-127.78957610003549,52.77618513135363],[-127.78928908229665,52.776139065675956],[-127.7890046689669,52.77608847549719],[-127.78872194833797,52.77603393973788],[-127.78844526252324,52.77596809211666],[-127.78815941734749,52.77592761091166],[-127.78786205769468,52.77592262111656],[-127.78756514324624,52.775928268961216],[-127.78726921941474,52.77593557799525],[-127.78697244537953,52.77594458524758],[-127.78667677082053,52.775957503036885],[-127.78638220366989,52.77597487830579],[-127.78608789407271,52.775998418983],[-127.78579471565529,52.77602699074703],[-127.78550359462332,52.77606000554033],[-127.78521262233158,52.776096945379685],[-127.78492465180862,52.77613888785071],[-127.7846408371728,52.77619141151975],[-127.78436199687118,52.77625170590263],[-127.78408715690671,52.77631922085975],[-127.78381534180967,52.776392303185084],[-127.78354443765151,52.776464806015305],[-127.78326954826052,52.7765311987432],[-127.78298979192779,52.77659206870971],[-127.78270991773714,52.77665013276514],[-127.78242813999782,52.776707104059945],[-127.78214732013605,52.7767646161292],[-127.78186845772716,52.77682490478664],[-127.78159165231578,52.77688964557008],[-127.78131785629415,52.77695994503837],[-127.78104505022407,52.77703191481888],[-127.78077118215595,52.77710052806658],[-127.78049332129562,52.777162484172685],[-127.78021040634427,52.77721441824736],[-127.77992346049835,52.777259130711634],[-127.77963253673595,52.777297176757074],[-127.77934046720151,52.77733019938421],[-127.77904823373883,52.77735929573464],[-127.77875288181095,52.77738059156652],[-127.77846479316163,52.77737542821066],[-127.77815591505637,52.77736162027328],[-127.77788956354169,52.77734323872202],[-127.77761520818562,52.77728854052133],[-127.77741980275482,52.77716763525312],[-127.77726643833594,52.77700796908393],[-127.77710412137866,52.776856294449274],[-127.7768945965415,52.7767305532685],[-127.77666512235152,52.776616324114606],[-127.77643113298616,52.77650496097249],[-127.7762007492801,52.77639130969936],[-127.77598215861826,52.7762707443245],[-127.77578892507738,52.776134665352096],[-127.7756074849421,52.77599168140717],[-127.77541515134652,52.775855032181255],[-127.77519383560777,52.775735627643606],[-127.77496162642336,52.7756225576509],[-127.77474395552997,52.77550142007474],[-127.77456426965539,52.77535616597331],[-127.77437743200448,52.77521718987998],[-127.77413645964367,52.77511658203852],[-127.77386850088375,52.77503656020177],[-127.77359878839016,52.77495936233801],[-127.77333445056406,52.774877042507406],[-127.77306917834817,52.77479473622145],[-127.77280134822041,52.774718073082035],[-127.77252566287567,52.77465330320229],[-127.77224304230434,52.77460040365191],[-127.77195613826349,52.77455597126868],[-127.771666606247,52.7745155059254],[-127.77137709818969,52.77447560450257],[-127.77108844137709,52.77443400351246],[-127.77079712452222,52.774395240037805],[-127.77050681342178,52.77435814666091],[-127.77021728411817,52.774317677734345],[-127.76993391887461,52.77426926797282],[-127.76966615891776,52.77419371773403],[-127.76941509596695,52.77409549469764],[-127.76917040673162,52.77399437691942],[-127.7689275196708,52.77389154545156],[-127.76867476640403,52.77379726542009],[-127.76841400314069,52.77371151773339],[-127.76815327913899,52.773626333875434],[-127.76789249460083,52.77354002038226],[-127.76763000947224,52.77345710395946],[-127.76735342770816,52.77339289164444],[-127.76707239976996,52.77333322973969],[-127.76679840226467,52.77326392815432],[-127.76654253374835,52.77316128746049],[-127.76640916738077,52.773012525278155],[-127.76641463173051,52.77283027417553],[-127.76640896112427,52.77264819977417],[-127.7662622730156,52.772491226037765],[-127.76616443484623,52.77232566918856],[-127.76615785299053,52.77214416448047],[-127.7661559645505,52.77196371006248],[-127.7661586998159,52.771782620982925],[-127.76612813114508,52.77160484057827],[-127.76605102000566,52.77142384217119],[-127.76588645890392,52.77128395232382],[-127.76563115998276,52.77119475328484],[-127.76535754354613,52.77111199059539],[-127.76513184198498,52.77099768256945],[-127.76493133617957,52.77086393762899],[-127.7647254263715,52.77073420172002],[-127.76451862028848,52.77060503496832],[-127.76431546592276,52.77047469189476],[-127.7641159233823,52.77034148711575],[-127.763915400895,52.77020718470389],[-127.76372125164322,52.77006997906545],[-127.76355091973556,52.769924567763056],[-127.76343186472987,52.769762125796674],[-127.76335497620457,52.769586162342684],[-127.76327907829354,52.76941186993113],[-127.76320132489774,52.76923759639733],[-127.7631272839588,52.76906327593832],[-127.76305878748276,52.76888830705143],[-127.7630004672602,52.768712620092394],[-127.76296614821132,52.768533218099066],[-127.76298656468249,52.768352984010555],[-127.76308923255266,52.76818609508906],[-127.76323213587764,52.768027004020425],[-127.76337414065586,52.76786848228316],[-127.76345057203199,52.76769581752704],[-127.76344037547841,52.76751605267708],[-127.76339678537369,52.76733734613556],[-127.76331635169045,52.76716535483495],[-127.76319074879935,52.76700133390976],[-127.7630807969276,52.76683427941521],[-127.76298834271691,52.766663589661526],[-127.76288761591272,52.76649471023479],[-127.76278778736287,52.766325261184335],[-127.7626943539874,52.76615346488518],[-127.7626388301758,52.76597774442945],[-127.76267136174359,52.76579844894767],[-127.76275709343645,52.765626209544386],[-127.76292172859496,52.76547631583546],[-127.76307690025703,52.76532208910015],[-127.76310040756297,52.765194495821326],[-127.76297834428185,52.76498109663655],[-127.76288955972548,52.76480923942715],[-127.76282754953982,52.76463360749681],[-127.7627719809414,52.76445676660765],[-127.76271918828958,52.76427987496797],[-127.76266824350976,52.76410239948027],[-127.76261453176477,52.76392553055368],[-127.7625626755907,52.763748624719966],[-127.76251265241622,52.76357113526463],[-127.76246357326262,52.763394196572136],[-127.76241909404739,52.76321605869976],[-127.76237278302315,52.76303851332827],[-127.76232647238365,52.76286096791785],[-127.76225615695847,52.76268659038668],[-127.76217754586318,52.76251344956172],[-127.76209706549555,52.76234034574215],[-127.76201935306267,52.76216663525701],[-127.76194443181352,52.76199288275472],[-127.7618713055558,52.761817982196106],[-127.76180275636857,52.76164132677557],[-127.76170946767446,52.76147233422901],[-127.76155835108582,52.76131934889635],[-127.76137691425173,52.76117410112302],[-127.76124785650069,52.76101573485129],[-127.76114898198422,52.76084626078139],[-127.7610740288464,52.76067195211385],[-127.7610018435091,52.76049703681136],[-127.76095185351662,52.760320101991155],[-127.7609091933496,52.760140823949214],[-127.7608923926161,52.75995835035814],[-127.76089270538246,52.75978570881292],[-127.76094876999639,52.75961447169543],[-127.7609237201475,52.759434364016776],[-127.76088014880473,52.75925565558937],[-127.76084591529803,52.759077927866414],[-127.76086915785926,52.758898771654074],[-127.76088309288477,52.758718643194335],[-127.76086643129348,52.75853953040643],[-127.7608191505755,52.75836087759599],[-127.76074976048831,52.75818591995251],[-127.7606325811771,52.758022890336775],[-127.76047311620897,52.757869463911064],[-127.7603118745916,52.75771830599344],[-127.76018088371335,52.757557725396275],[-127.76005251007962,52.75741559769316],[-127.75989219623119,52.75724144884226],[-127.75973529197204,52.757105354293955],[-127.75977172188871,52.756908072763615],[-127.75970877807765,52.75673189662613],[-127.75964031535098,52.75655692432224],[-127.7594803036106,52.756299805859236],[-127.75939767191895,52.75629936928644],[-127.75926123121441,52.75636699263081],[-127.75904832702344,52.75649350047786],[-127.7587931866773,52.7565864551031],[-127.75859634116908,52.75672000323458],[-127.75840904734379,52.756860142787495],[-127.75820367402697,52.756989334063164],[-127.75799450526821,52.757116904833914],[-127.75778725139487,52.75724556750255],[-127.75758093968372,52.75737478064019],[-127.75737650480188,52.757504521269176],[-127.7571730577804,52.75763592374547],[-127.75696387478146,52.75776293671772],[-127.75673188301157,52.75787739496203],[-127.75651216355386,52.75799670889935],[-127.75636157148841,52.758149182064926],[-127.75625998298183,52.758319978038145],[-127.75612437331878,52.75861123251762],[-127.7559023875478,52.75874347531193],[-127.75567510247284,52.75885954676755],[-127.75541480997359,52.75887241354499],[-127.75512214116138,52.75879776024269],[-127.75482836194661,52.75878646478655],[-127.75453002884332,52.7587998991342],[-127.75423575118961,52.758821684131746],[-127.75394385706706,52.75885631992379],[-127.75366596082583,52.75891540790733],[-127.75340009166209,52.7589961706308],[-127.75312434794955,52.75906251618755],[-127.75284053853981,52.759113278510455],[-127.75255577059671,52.759163498442994],[-127.75228100550201,52.75923094835607],[-127.75201215766818,52.759307268315695],[-127.75174447391544,52.75938918428745],[-127.7514759603563,52.75947334509001],[-127.7512303146683,52.75957230177943],[-127.75104162771207,52.759701795439994],[-127.75092512567869,52.7598716880218],[-127.75083475004925,52.76004455324338],[-127.75069438659712,52.76037959103447],[-127.75047501503806,52.76025899978783],[-127.7502474862306,52.760143005034244],[-127.75001093443707,52.76003331462619],[-127.74974444345466,52.75994032987596],[-127.74945447899483,52.75984095983718],[-127.7491738665647,52.759766120808074],[-127.74893926949447,52.759749443266784],[-127.74883326404347,52.759903482824136],[-127.74876638965942,52.760106819063544],[-127.7487014803343,52.760289956638594],[-127.74851148076388,52.76041049748101],[-127.74824188183528,52.76049130378051],[-127.74796565842442,52.760568854158535],[-127.7477055633946,52.76065512252156],[-127.74744544459423,52.76074083461917],[-127.74718342357035,52.76082545346106],[-127.7469213330007,52.760908395699374],[-127.74665832900969,52.76099190696524],[-127.74639724000552,52.76107651010163],[-127.74613618089873,52.76116223320282],[-127.7458711959553,52.76124240911786],[-127.74560033134502,52.761315380917814],[-127.74532460632041,52.761382828357],[-127.74504580720517,52.76144302984084],[-127.74476099153333,52.761492666115664],[-127.74448024403324,52.76155065320765],[-127.7442073828733,52.761620297359904],[-127.74393455834314,52.76169049633693],[-127.74366364187759,52.76176234331058],[-127.74339185027874,52.761835332635464],[-127.74312099252225,52.761908298457975],[-127.7428510771626,52.761981814614394],[-127.7425802030768,52.76205478836378],[-127.74230936556434,52.762128316947276],[-127.74203752329292,52.762200173821725],[-127.74176662342153,52.76227258103433],[-127.74149578312958,52.762346107727744],[-127.74123568723486,52.76243292628261],[-127.74098720243236,52.76253134686378],[-127.74076363591375,52.76264901001657],[-127.7405553908334,52.76277821131866],[-127.74037264258435,52.76291825272336],[-127.74024845418718,52.763082642652144],[-127.74007996916058,52.76323087486325],[-127.74005277405655,52.76340671178721],[-127.7400934492464,52.76358491320097],[-127.74009520429195,52.763764804373146],[-127.74010346145637,52.76394460797303],[-127.74012095848856,52.76412370940446],[-127.74014126901922,52.76430332506894],[-127.74016251527897,52.764482935788756],[-127.74016331282658,52.764662285052744],[-127.74015487006312,52.76484232748246],[-127.7401473249611,52.76502180054487],[-127.74014908065736,52.765201700508776],[-127.74015363494676,52.76538211492782],[-127.74015912449163,52.76556251544279],[-127.74016832527722,52.76574286084634],[-127.74018304733235,52.765922003263874],[-127.7402070019506,52.76609988760279],[-127.7403324453599,52.766262248262464],[-127.74056923495542,52.76637755938926],[-127.74071894052346,52.76651994629172],[-127.74073946026178,52.76670460752634],[-127.74088773083963,52.76685766955209],[-127.74104346257216,52.767011176602274],[-127.74113035384488,52.76718419798457],[-127.7411088192102,52.76736220163302],[-127.74110306468785,52.76753996192781],[-127.74119550167994,52.76771234484049],[-127.741206540348,52.76789210666452],[-127.74109247096006,52.76805466050103],[-127.74083343470997,52.768145389572275],[-127.74054634869718,52.76818608033094],[-127.7402541743888,52.768215644834314],[-127.73998125564361,52.7682847139803],[-127.73971335540195,52.768363232052835],[-127.73943851867391,52.76843120735993],[-127.739163627701,52.76849750579007],[-127.73889567903117,52.76857490165642],[-127.73863646038708,52.768661700437185],[-127.73838406221671,52.76875624451296],[-127.73813551111414,52.768854093996154],[-127.73788888314303,52.768953600409795],[-127.73764227662112,52.76905366198068],[-127.7373986192433,52.76915759832928],[-127.7371569156368,52.769264312187104],[-127.73690730169194,52.769358811690964],[-127.73662629488341,52.769412298585976],[-127.73633149242181,52.76944581107933],[-127.73609335949185,52.76954910677392],[-127.73593704104664,52.76970051465092],[-127.73586157487898,52.76987707323181],[-127.73577570369547,52.770048736793996],[-127.7358107315368,52.77022533636901],[-127.73588106542535,52.770402534183035],[-127.73597158621774,52.77057382803931],[-127.73606208479359,52.77074455716188],[-127.73608797182868,52.770924654951905],[-127.73606274006626,52.77110326765856],[-127.73600495536618,52.771280685325905],[-127.73590506462229,52.77145031437319],[-127.73578741334259,52.77161684324619],[-127.73573040268354,52.77179032124841],[-127.73577699918826,52.77197739439893],[-127.73574301994626,52.77214661237383],[-127.73559045576305,52.77229964080825],[-127.73539009506013,52.77244161045335],[-127.73515999600264,52.77255992283053],[-127.73490711219756,52.77264325592366],[-127.73462522880527,52.77269842753632],[-127.73432987602153,52.772742031696],[-127.7340412382328,52.772791140783134],[-127.73375062233289,52.7728369154038],[-127.73346193778328,52.772884902736045],[-127.73319555741409,52.772956100603366],[-127.73295954075807,52.77306608399884],[-127.73275990651553,52.77320355416872],[-127.73262425074736,52.7733613775185],[-127.73253955268912,52.773539746671396],[-127.7324141407556,52.77369853934637],[-127.73220847203586,52.7738243316268],[-127.7319639979761,52.77393219579833],[-127.73170495980338,52.77402458058034],[-127.7314397997445,52.77410303822846],[-127.73116301157715,52.774169900963535],[-127.73088032924628,52.77422844705163],[-127.73059731326494,52.77427914142907],[-127.73030085649435,52.774295847567046],[-127.7298628143562,52.774370135651324],[-127.72988988882943,52.77451153767784],[-127.73002141319354,52.77466373855027],[-127.73025194496881,52.77478476745985],[-127.73032831300438,52.774950668848426],[-127.73033009565101,52.775132243792555],[-127.73032807552504,52.775311632842055],[-127.73007243578253,52.775235814348335],[-127.72976856685682,52.775207223610934],[-127.72951968290722,52.77525237172315],[-127.72921164936793,52.775327537474894],[-127.72893972395775,52.77539992800087],[-127.72873407952301,52.77548087364147],[-127.72858263441498,52.775662465417156],[-127.7285219676787,52.77583823482852],[-127.72852273906341,52.776018138514345],[-127.72852256736664,52.776197500068164],[-127.72843294186603,52.77636921226202],[-127.72829014686621,52.77655796692566],[-127.72813098358577,52.77670940484483],[-127.7278852220846,52.776808866955996],[-127.72761527700517,52.77688458796678],[-127.7273324664098,52.776940884966905],[-127.72704853045775,52.776992148895715],[-127.72675944007148,52.77703059213046],[-127.72647147371042,52.777074067044424],[-127.72617747860042,52.77708344420968],[-127.72588485608568,52.777080460552135],[-127.72564313419642,52.77702741242566],[-127.72533496979608,52.77700784123991],[-127.72500840877754,52.77706141331903],[-127.72472152762357,52.77708581108305],[-127.72441459080461,52.77711947100821],[-127.72412045135015,52.77712491717431],[-127.72382621247932,52.77715109791863],[-127.72353235185466,52.77716382943316],[-127.72324886831103,52.777134366059904],[-127.72295576559422,52.777096631428186],[-127.72264177386198,52.77711638244979],[-127.72234659866776,52.77714257322484],[-127.7220868572133,52.777149195008086],[-127.72174350030562,52.777154793017964],[-127.72145539257245,52.77719489462978],[-127.72118050760061,52.77726339117484],[-127.72088768302892,52.77730187463587],[-127.72059504908306,52.77732186270994],[-127.72030445786906,52.77730034345773],[-127.71999637663475,52.77728244300393],[-127.71972500826728,52.77723093861908],[-127.71944260173406,52.77727431460561],[-127.71919308968101,52.777373813116505],[-127.71891609570463,52.777436165271986],[-127.71862151365707,52.77745393497169],[-127.71833557253714,52.77750184400764],[-127.7180598125057,52.77757202294474],[-127.71789752491561,52.77771621012074],[-127.71777971845228,52.77788103526446],[-127.71768327082059,52.77797661109889],[-127.71764806631681,52.77811725030498],[-127.71758495443251,52.778279597023136],[-127.71748900092057,52.77838749628368],[-127.71734298856755,52.77854377503653],[-127.7171866459968,52.77869739789451],[-127.71701218068132,52.77883895500472],[-127.71681507977075,52.77897187532066],[-127.71663618145489,52.77911853666984],[-127.716408298565,52.7792250031581],[-127.71614218799232,52.77930456893337],[-127.7158844215669,52.77938400302539],[-127.71565760590131,52.77949381533209],[-127.71536677491632,52.779536183425876],[-127.71507899472432,52.77953871564485],[-127.71481695157556,52.77962717776557],[-127.71459702592801,52.77974697606502],[-127.71440091647689,52.779881563540165],[-127.71428499174854,52.78004747813155],[-127.71420274858292,52.780219635120126],[-127.71412054935006,52.78039290339716],[-127.71400552055292,52.780558248516485],[-127.71388017664184,52.78072094626575],[-127.71376708439304,52.78088793978063],[-127.71361445559543,52.781042068032846],[-127.71338662214175,52.78115020452664],[-127.7130928209105,52.78118812619764],[-127.7128250959092,52.781111890865915],[-127.71263119597333,52.7809779626407],[-127.71245084477839,52.780834303407936],[-127.7122777854909,52.7806871834484],[-127.71211020600406,52.780537732297695],[-127.71195805442194,52.78037909678202],[-127.71180143515204,52.78022500125412],[-127.71161863499202,52.78008978837344],[-127.71135734139924,52.780011769944906],[-127.71107247885756,52.779948111628315],[-127.71084201842893,52.779828165761224],[-127.71062031403383,52.779764696950785],[-127.71039420275258,52.779683921231346],[-127.71007984743628,52.77960275495183],[-127.7100037997586,52.77951249920014],[-127.7098828576533,52.77932145341385],[-127.70988679776357,52.779141482445205],[-127.70987682347709,52.778961705374975],[-127.70985929776884,52.77877924041339],[-127.7098030990284,52.77860463019702],[-127.70969493544335,52.778431333593524],[-127.7095462658901,52.778266474302285],[-127.7093446714575,52.77814834669803],[-127.709073198203,52.77809401238693],[-127.70876230171605,52.77807555847303],[-127.70845912151353,52.77806428220282],[-127.70814315538135,52.77808178099134],[-127.70783894754418,52.77809125181814],[-127.70758608286751,52.778037764063264],[-127.70737623924803,52.77792199524514],[-127.70719386118985,52.777773317652894],[-127.7070322631202,52.777610329460124],[-127.70688660727437,52.777451027951656],[-127.70679804463614,52.77727968541368],[-127.70672600868576,52.777103618318506],[-127.70661349707154,52.776937108134625],[-127.7064872072804,52.77677416130585],[-127.70634806740546,52.77661532029396],[-127.70619975283765,52.77645886355125],[-127.70604225578845,52.776305338198554],[-127.70586654933686,52.77616048044935],[-127.70562521888536,52.7760468525826],[-127.70537798194353,52.77594787397094],[-127.7053891373344,52.77578516887748],[-127.7054884736357,52.775598761514],[-127.7054094467897,52.77543344906403],[-127.70523949303829,52.775292990649376],[-127.70493492923502,52.77522343442686],[-127.70462557637481,52.77519654449148],[-127.7043237152396,52.77517123081481],[-127.70402802561708,52.77516095549465],[-127.7037330284564,52.77516804015409],[-127.70343668904648,52.77518803938038],[-127.70315385290972,52.77519719684683],[-127.70284807598853,52.77528346975368],[-127.70255917863426,52.77535044001578],[-127.70224074152745,52.7753517003119],[-127.70198003142886,52.77531064543286],[-127.70168433974895,52.775276823560425],[-127.70138847735463,52.775239075497346],[-127.70109482110402,52.775209706553106],[-127.70080378712888,52.77519992054552],[-127.70051135868495,52.7752248955712],[-127.70021762494005,52.77528689021741],[-127.69995177586578,52.775373132522326],[-127.69977650927581,52.775495618567966],[-127.69975908975557,52.77568812419194],[-127.69975045246736,52.77586760669319],[-127.69974832603732,52.77604755079986],[-127.6997903892226,52.77621789542648],[-127.69983245302286,52.77641177168328],[-127.69988520073092,52.77659372719248],[-127.6997932472328,52.7767800222806],[-127.69977887024567,52.77693212827428],[-127.6997538172987,52.777119130480415],[-127.69979635005028,52.77732477464354],[-127.69977846103988,52.77748197142375],[-127.6997279416246,52.77765926282847],[-127.69967276637907,52.77783605669385],[-127.69961198489568,52.778012366787685],[-127.69954374889164,52.7781876728491],[-127.69946520646741,52.7783608772785],[-127.699370767225,52.77853151402972],[-127.69924552932966,52.7786981130432],[-127.69911002215807,52.778863183698434],[-127.69898753669307,52.77902917751689],[-127.69890136531656,52.77919745201984],[-127.69887022635746,52.77937165506756],[-127.69888292373234,52.7795508279305],[-127.69892268526115,52.77973353660082],[-127.69897827678736,52.779917127912256],[-127.6990385392916,52.780101216481874],[-127.6990903305188,52.78028262977823],[-127.69912338095453,52.78045982168479],[-127.6991236945972,52.78063132698348],[-127.6990612956447,52.78079028912117],[-127.69886213994319,52.780919844987714],[-127.69860402733437,52.78103792367883],[-127.69837966807208,52.78116448078209],[-127.6981797214493,52.781297409792685],[-127.69797978117661,52.781430903314025],[-127.69778455447197,52.781566005209754],[-127.69759502905444,52.781704387156566],[-127.69741967693699,52.7818487245198],[-127.69727472266648,52.78201056626986],[-127.69713636057391,52.78217454539772],[-127.69697223241606,52.78232097049473],[-127.69675573306247,52.782435079738875],[-127.69650870752699,52.78252888759083],[-127.6962435490575,52.78261063539201],[-127.69596889985289,52.782686905971104],[-127.69569423517257,52.78276318508072],[-127.69542815257603,52.78284493537647],[-127.69516779386848,52.7829305302156],[-127.69490747857179,52.78301724480556],[-127.69464809783399,52.7831039452936],[-127.69438778042587,52.78319065872043],[-127.69411322059014,52.78326973045544],[-127.69382731411052,52.783343360528576],[-127.69355275225617,52.78342243094385],[-127.69331233001068,52.783518943388],[-127.69312876092076,52.7836443448824],[-127.69300869769167,52.78380189360986],[-127.69293031844437,52.783980139009444],[-127.6928717492669,52.784165945205714],[-127.69280922985503,52.78434620348819],[-127.69274744558967,52.78452140223099],[-127.69269411142197,52.78469872987364],[-127.69264820981448,52.78487650620133],[-127.69260697843676,52.78505477108875],[-127.69257319498614,52.7852334934236],[-127.69253433353053,52.7854010792711],[-127.6924997249933,52.78558262035958],[-127.69246510863984,52.7857635965545],[-127.69244024798311,52.78595676264185],[-127.69240136297469,52.78612378371882],[-127.69232181929833,52.78629644028299],[-127.69224135414116,52.786469110059585],[-127.69215905416844,52.78664237119365],[-127.69207581031331,52.786815080887784],[-127.69199165209697,52.78698835968607],[-127.6919065354802,52.78716109621744],[-127.69182049731845,52.78733384595019],[-127.69173351559016,52.78750605319788],[-127.69164468373631,52.787678843036886],[-127.69155488592476,52.787850525738435],[-127.69146416651984,52.78802222163186],[-127.69137251065752,52.78819393092914],[-127.6912789750877,52.78836510225954],[-127.6911854167646,52.7885357178122],[-127.69108997906572,52.78870580435502],[-127.69099360450882,52.788875895328935],[-127.69089626429026,52.789044888112166],[-127.69079706629857,52.789213898596536],[-127.69069690262526,52.789381810884315],[-127.69059578005512,52.789549171908824],[-127.69045229771152,52.7897025706964],[-127.69022779496659,52.78982687061665],[-127.68999744002436,52.789944528580946],[-127.68977378893288,52.79006712936797],[-127.68954054320982,52.79018203008593],[-127.68929059078522,52.790273621610275],[-127.68901539999474,52.790338116754434],[-127.68872195694573,52.790387180456115],[-127.68842214586316,52.790416157649226],[-127.68812872068911,52.79041870390305],[-127.68784678663769,52.7903829621993],[-127.68757090786107,52.79031239167249],[-127.68729653224081,52.790232822174524],[-127.68701718518281,52.79016846109428],[-127.68672670051176,52.790151340156875],[-127.68642640310071,52.790167988609255],[-127.68612975267199,52.79018290689825],[-127.6858330574587,52.79019669514266],[-127.68554069444583,52.79017904226898],[-127.68525203017795,52.79013723025326],[-127.68496406639004,52.79008980263712],[-127.68467370852004,52.790052497408695],[-127.68437524633416,52.79002146867798],[-127.68407648250117,52.79000614602677],[-127.68379912788097,52.79003927285943],[-127.68355343664179,52.79014536339997],[-127.68329219929367,52.790233750002194],[-127.68301634367988,52.79030496628737],[-127.68273675149108,52.79037567054414],[-127.68245606829953,52.79044247086999],[-127.68217515655644,52.79050311295907],[-127.68189571067205,52.790554200652835],[-127.68162094461216,52.79058223630514],[-127.68136138295893,52.79047778842964],[-127.6810987851606,52.79039018901673],[-127.68083352859044,52.79030599898876],[-127.68055664246668,52.79025671594501],[-127.68025658451327,52.79027951492004],[-127.67996516602109,52.79026239064703],[-127.67968181237129,52.790213763149886],[-127.67939909375572,52.79015783512855],[-127.67911897765757,52.79009739428832],[-127.67883878877335,52.790034702932694],[-127.67855952198147,52.78997200668964],[-127.67828451590684,52.78989971614611],[-127.67801279880109,52.78981616827143],[-127.67773729166842,52.78975452831276],[-127.67745155798981,52.78974012343982],[-127.6771594681844,52.78975270293206],[-127.67686330127266,52.789779921482314],[-127.67656639595006,52.789812189687844],[-127.67627022789618,52.78983939777724],[-127.67597241330853,52.78984813721984],[-127.67566699385796,52.78982896045127],[-127.67536734267752,52.78981474932357],[-127.6750879940385,52.78984452107776],[-127.67483687930232,52.78993105815989],[-127.6745999243377,52.79004709357639],[-127.67436395506861,52.790164800345444],[-127.67411301264774,52.79025581720398],[-127.67381164323677,52.790292625913594],[-127.67352340691932,52.790261432718715],[-127.6732805551947,52.790156163885605],[-127.67309097025819,52.79001145710876],[-127.6729722624541,52.78985005465496],[-127.67288645609662,52.78967528729018],[-127.67279424727836,52.78950285308514],[-127.67268550473565,52.78933513842698],[-127.67257309360664,52.78916859693667],[-127.6724625400045,52.789002028847726],[-127.67235749121545,52.78883369623463],[-127.67226445319002,52.78866351532409],[-127.67218153220811,52.7884909481741],[-127.67210599451795,52.7883171547386],[-127.67203229230137,52.78814277908091],[-127.67195951121211,52.78796838126768],[-127.671882118751,52.787794614093976],[-127.67180105759098,52.787622020113595],[-127.67171997533607,52.78744887036955],[-127.67163891548721,52.7872762762382],[-127.6715697121826,52.78709790824678],[-127.67151696232581,52.78691313593573],[-127.67143865272644,52.78673938147322],[-127.67129096383296,52.78659688161592],[-127.67106023548313,52.786492000526216],[-127.67078755257377,52.78640676407244],[-127.67051666173603,52.78631982450878],[-127.67026403063622,52.78622477755058],[-127.67001323546059,52.786129147919276],[-127.66976870560022,52.78602725877833],[-127.66953307224188,52.785915709819946],[-127.66933832164204,52.78578060323943],[-127.66920328287543,52.78560485679676],[-127.66902141911925,52.785490299650846],[-127.66872540788452,52.7855208587571],[-127.66842378442422,52.785526826766],[-127.6681377052016,52.785478775609604],[-127.66784974807602,52.78543018550189],[-127.66756172582137,52.7853799096912],[-127.66728973257148,52.78533557510555],[-127.6670139903617,52.78529073718297],[-127.6666817861416,52.785369442021114],[-127.6663854897901,52.78539270851846],[-127.6660891273898,52.785414289271955],[-127.66579329262531,52.78542578207653],[-127.66549955056115,52.78541930003803],[-127.66520783657464,52.78539317610139],[-127.66491658540659,52.785355279246716],[-127.6646252470812,52.78531513201889],[-127.66433325756068,52.78528228405712],[-127.6640413269881,52.78525055550054],[-127.66374852681098,52.785220524486526],[-127.66345494391032,52.78519442273336],[-127.66315818672618,52.78518181681218],[-127.66285223639267,52.78519567861279],[-127.66256026598064,52.785186931167004],[-127.6624015285948,52.78518918121242],[-127.6620781215325,52.784993112508324],[-127.66184954080101,52.78487080380516],[-127.66159434136475,52.78478081471977],[-127.66131692516709,52.784716365920325],[-127.66104477423696,52.78464399516994],[-127.66075265961136,52.784559575905696],[-127.66051572442453,52.784461488122346],[-127.66030228554001,52.78434624385293],[-127.660016071435,52.784318352318735],[-127.65971254852234,52.7843226479627],[-127.65941658872569,52.78430665850123],[-127.65912340626797,52.7842665238486],[-127.65884239318528,52.784204927045934],[-127.65859180910022,52.78411374529421],[-127.65835365607583,52.784007823712514],[-127.65812446006785,52.783893363328154],[-127.65790061716281,52.78377322202558],[-127.65768040141361,52.7836507871143],[-127.6574638778598,52.783527734653404],[-127.65725823359656,52.78339781126744],[-127.65708952304098,52.7832623168746],[-127.65687995893059,52.78310329425197],[-127.65667542632545,52.783001934195234],[-127.65640773381324,52.782900344890614],[-127.65615513278165,52.78280471164562],[-127.65592778361481,52.78268965600887],[-127.65572022636343,52.78255807106288],[-127.65550292383898,52.78243839790243],[-127.65522740994689,52.782374464091866],[-127.65479866233514,52.782358660271456],[-127.65464429173792,52.7823770878064],[-127.65441084150534,52.782487993541935],[-127.65420817685451,52.78262648858752],[-127.65406650876794,52.78278150236763],[-127.65395416332811,52.78295010994678],[-127.65381543692544,52.78310900075529],[-127.65371884187714,52.783324466277136],[-127.65355411162682,52.7834596182454],[-127.65326771056527,52.78349840564973],[-127.65296133588154,52.7835010471442],[-127.65263218894901,52.78346700808819],[-127.65248945716911,52.783354681368415],[-127.65248744551346,52.783134445575016],[-127.65251691993221,52.78296028146431],[-127.65253766126303,52.78275204660606],[-127.65252034681075,52.78259255821263],[-127.6525186993288,52.78240593702564],[-127.65251039562627,52.782215490728085],[-127.65248615824876,52.78204489021881],[-127.6524985995167,52.78186255429225],[-127.65248890976346,52.781683902033535],[-127.652391361521,52.78151489042339],[-127.65215966292499,52.78140717964004],[-127.6518822395428,52.781341588036405],[-127.65159409038144,52.781286791484284],[-127.65131067716337,52.78123417843711],[-127.65102468889354,52.7811871968022],[-127.6507395139267,52.781137405111224],[-127.65045610275193,52.78108478999401],[-127.65017177815744,52.781032743049266],[-127.64988747571834,52.78098125110814],[-127.64960144778877,52.780933154606295],[-127.64931465760137,52.78088954300889],[-127.64902447331619,52.78085383413308],[-127.64873177852047,52.78082544159846],[-127.64843746541523,52.78080323188315],[-127.6481325900401,52.78077221116014],[-127.64791764731021,52.78078532035514],[-127.64747324327865,52.78084424935199],[-127.6471807359037,52.78079679401379],[-127.64696058869738,52.780723095689886],[-127.64668238657407,52.78066086574851],[-127.64641291233973,52.78058450511321],[-127.64612257362292,52.780520758326226],[-127.64584841053902,52.7804668814194],[-127.64557516152402,52.780388885941505],[-127.64530843934732,52.780311354262786],[-127.64503832931557,52.78024228118953],[-127.64476006859107,52.78017837061938],[-127.6444871684398,52.78010933542706],[-127.64422145040199,52.78003347315626],[-127.64397542590385,52.77993883390912],[-127.6437652280701,52.77980950721368],[-127.64355680843796,52.77967847827181],[-127.64331157234129,52.7795799077366],[-127.64310690395052,52.77944938144009],[-127.64285130244042,52.77934702735273],[-127.64257822231265,52.779297046626],[-127.6422937009342,52.77935988636669],[-127.64206399070672,52.779471836110545],[-127.64185635085008,52.77960253268004],[-127.64162134905023,52.77972183733621],[-127.6413376846915,52.77973477555363],[-127.64104197875209,52.77972434146493],[-127.64074304433562,52.77970218622567],[-127.64044571484771,52.77967383802464],[-127.64015104853029,52.77964208895367],[-127.63985947139973,52.779594037576466],[-127.63960639326098,52.77950846457458],[-127.63939540420212,52.779382504162605],[-127.63919783626635,52.7792434602777],[-127.63898499347916,52.779117525052385],[-127.63873623058359,52.77902347823065],[-127.63846577424668,52.778944871407205],[-127.6381829264187,52.77888212151603],[-127.637896989981,52.7788356724621],[-127.63760457409138,52.77881397427074],[-127.6373030730897,52.77882154709791],[-127.63700979775246,52.778850302513725],[-127.63673249026941,52.77893208428072],[-127.6364626708829,52.77901543782992],[-127.6361918232015,52.77899903991496],[-127.63592227076968,52.7789198497187],[-127.6356529256445,52.77882159975317],[-127.6353805339101,52.778740762015566],[-127.63510179178213,52.7787121411785],[-127.63481461280448,52.77873016148893],[-127.63452289334977,52.77877513836986],[-127.6342317736467,52.77883580851491],[-127.63394820626766,52.778899726595455],[-127.63367795320985,52.77897187014871],[-127.63341852246069,52.779060120667204],[-127.63315814835494,52.779147818767775],[-127.63288791363463,52.77922051618717],[-127.63260988921242,52.779283797777104],[-127.63232889453748,52.77934208022279],[-127.63204487170186,52.77939423438793],[-127.63175877794,52.77944081189444],[-127.63146967780128,52.77948182574323],[-127.63117852179677,52.77951726269276],[-127.63088619433574,52.77954654546894],[-127.63058959835097,52.7795613234206],[-127.63029869542167,52.77953061833499],[-127.63001943998954,52.77946443608945],[-127.62973707162716,52.779413998778274],[-127.62944324820029,52.77940406534763],[-127.62914537534225,52.7794098897642],[-127.62884736756853,52.77941178747415],[-127.62855239525649,52.77939626300284],[-127.62825895298792,52.77937175788525],[-127.6279662394616,52.7793421931454],[-127.62767436166901,52.77931037417303],[-127.62738249916117,52.77927855426757],[-127.62709213711624,52.77923774519448],[-127.62680273233858,52.77919747812254],[-127.6265093777521,52.77917520934783],[-127.62620717500904,52.77916482806871],[-127.62590752576719,52.77917234585985],[-127.62562953786365,52.779212626239605],[-127.62539421599656,52.779324620539796],[-127.62517725939847,52.7794554160265],[-127.62495096065867,52.77956055862365],[-127.62466210699863,52.77958361693453],[-127.62436653564728,52.77960116281778],[-127.62406707486063,52.779613722015974],[-127.62376644394779,52.779620126929075],[-127.62346647819228,52.77961979615057],[-127.62316998441993,52.779612690837695],[-127.62287946953141,52.779592050615946],[-127.62259879446698,52.779537080021996],[-127.62232127988692,52.779467501638884],[-127.62203857993579,52.77940807392719],[-127.62175097140249,52.779366092656474],[-127.62146072062349,52.7793280750346],[-127.62116963434958,52.77929230118579],[-127.6208776707081,52.77925766866613],[-127.62058660682274,52.77922245803209],[-127.62029731468523,52.77918498029939],[-127.6200088162988,52.77914412804102],[-127.61972383342552,52.77909762176875],[-127.61944653839845,52.77903362942247],[-127.61917626594986,52.7789588949171],[-127.6189042231173,52.778886426140254],[-127.61862684612878,52.77882020008068],[-127.61835024197639,52.77875003489747],[-127.61807198813472,52.77868493162782],[-127.6177886821061,52.778633913771465],[-127.61750062888748,52.77860425877719],[-127.6172010544985,52.778589334320635],[-127.61689736253591,52.77858848223762],[-127.61659895419376,52.778604361816406],[-127.61631333951979,52.77863912941629],[-127.61604760674838,52.778708927766075],[-127.6157980091453,52.77881213167231],[-127.6155590146068,52.77892583348822],[-127.61532832248196,52.7790383084479],[-127.61510624353186,52.77915738103151],[-127.61491234644572,52.77928504164291],[-127.61470359771154,52.779412897433616],[-127.61448949095242,52.77954644030107],[-127.61417648944935,52.77959390106844],[-127.61396393031877,52.7794735223047],[-127.61374394731871,52.77935324532201],[-127.61345063057985,52.779307403527916],[-127.6131605194007,52.779322039160064],[-127.61286208854804,52.77931269259094],[-127.61256388089954,52.77928485103307],[-127.61231467630031,52.77927594711151],[-127.61206551805091,52.77931748468646],[-127.61187301783599,52.77945800733946],[-127.61176601991613,52.77962481327444],[-127.61168536863181,52.77980078953634],[-127.61161600255743,52.77998053842622],[-127.6115466355613,52.78016027829102],[-127.61146877425416,52.780336215976746],[-127.61137011890145,52.78050291573411],[-127.61124129028808,52.78065713456597],[-127.61106648710889,52.78079908944608],[-127.61084295360678,52.78092939194498],[-127.61058906235048,52.78104273175718],[-127.61032414996238,52.78113492435092],[-127.61006470634089,52.78119957358657],[-127.60979881198242,52.78116679746355],[-127.60951551929098,52.781066993807336],[-127.60923009202938,52.78100870273005],[-127.60894131745988,52.78096053643348],[-127.60864949983153,52.78092979031564],[-127.60835588214576,52.780925414867035],[-127.60805658214494,52.78094297055092],[-127.60776460860005,52.780982278975486],[-127.60749020604888,52.7810443296795],[-127.6072248172253,52.78112363532878],[-127.60696533969325,52.78121238290793],[-127.60670783746995,52.78130390070887],[-127.60644835776928,52.78139264713389],[-127.6067138558019,52.781167627960286],[-127.60678377136067,52.78100189118471],[-127.60677340040635,52.78082492397493],[-127.60673036782796,52.780643920453805],[-127.60668822906086,52.78046178370974],[-127.60666571575896,52.78028274089872],[-127.60664967104638,52.78010304448817],[-127.60663454752857,52.77992334440336],[-127.60661758236316,52.779743660560165],[-127.60660712813223,52.77956445245287],[-127.60662072126016,52.779382672983864],[-127.60663433550874,52.77920145815752],[-127.60659624816151,52.779028233298],[-127.60644364224166,52.77887170552247],[-127.6062809895156,52.77871980791669],[-127.60611383080457,52.77857132567227],[-127.60593935379096,52.778425750262485],[-127.60575760062554,52.77828420202557],[-127.60559863741756,52.77813112304389],[-127.60544424546755,52.77797630432796],[-127.60530919018763,52.777817301872226],[-127.60524516477719,52.777645552530565],[-127.60523461140446,52.77746353864696],[-127.60520098989743,52.77728521232558],[-127.60515715195068,52.7771070168569],[-127.60511425624334,52.7769293734161],[-127.6050843058843,52.77674987581293],[-127.60505803201575,52.77656976290428],[-127.60499580232467,52.77639630284111],[-127.60485334400933,52.7762374011145],[-127.60476233820495,52.77606433473766],[-127.60463750760347,52.77590519149769],[-127.6044466780577,52.775768805187596],[-127.60424214666963,52.77563821076757],[-127.60403482494904,52.77550765416668],[-127.60383572334574,52.7753736219298],[-127.60365676050075,52.775231467304486],[-127.6035042841996,52.77507774072976],[-127.60336549075663,52.77491765716182],[-127.60322582011926,52.77475871533648],[-127.60307883118044,52.77460267128135],[-127.60293092270933,52.77444663961106],[-127.60278942002137,52.774288278295074],[-127.6026561579337,52.77412699731909],[-127.60252282799128,52.77396348418614],[-127.6024217829539,52.773794480940346],[-127.6023836543063,52.77361956905685],[-127.60238437660698,52.773440772338326],[-127.60240266036666,52.773260049695345],[-127.60242279364313,52.77307873679155],[-127.60242622914024,52.772898217019595],[-127.60241208219009,52.77271905846533],[-127.6023895700424,52.772539458220265],[-127.60235871963619,52.772360527894875],[-127.60231953107468,52.772182267482734],[-127.60227295504518,52.77200467295315],[-127.60221525004889,52.77182779542658],[-127.60214371709496,52.77165333974256],[-127.60205742162307,52.77148133658374],[-127.60196284544948,52.771311123432845],[-127.6018627294329,52.77114210683408],[-127.60176167250907,52.77097253803701],[-127.60166338683422,52.770802375296554],[-127.60157248984675,52.77063155554515],[-127.60149360112435,52.770458885780286],[-127.60143036947468,52.77028263924269],[-127.60137638169999,52.7701057014421],[-127.6013233089026,52.76992819511372],[-127.60126471096001,52.76975188515809],[-127.60119137183044,52.769578583342955],[-127.60107472195065,52.769413710625365],[-127.6009359563386,52.769253632550736],[-127.60080181760742,52.769092926174956],[-127.60066127586902,52.7689345489643],[-127.60042272131395,52.768811694108905],[-127.60026081185465,52.76865305211245],[-127.60015036229328,52.768480247165805],[-127.6001059550807,52.76831103354343],[-127.6001241352648,52.7681269493069],[-127.60009963832985,52.76794400351072],[-127.6000005592238,52.76780187385654],[-127.5999838340218,52.767776885172104],[-127.59992622180808,52.767601681913874],[-127.59989816149137,52.76742271247456],[-127.59987658281351,52.76724308959862],[-127.59987078587656,52.767063260301974],[-127.59987979886942,52.766882663918345],[-127.59985179601034,52.76670481456126],[-127.5997729003481,52.76653157852166],[-127.59969029423935,52.76635840201576],[-127.59970002103854,52.76629605190832],[-127.59982583353893,52.76620970759759],[-127.59989047850735,52.76615109182508],[-127.59991608011329,52.766041453966054],[-127.60000130423911,52.76588784117973],[-127.6000099742653,52.765871464539785],[-127.60007211166032,52.765696312652295],[-127.60008950227724,52.76551615772295],[-127.60002818764164,52.76534156978531],[-127.60000070062905,52.76532625158275],[-127.59980920990759,52.765220132408665],[-127.59962198703495,52.76507920511811],[-127.59949528893863,52.764918395524326],[-127.59944594167588,52.764740837104014],[-127.59943639964536,52.764560493655544],[-127.59939618423957,52.76437888276398],[-127.59937769390528,52.76420707300047],[-127.59939965781432,52.764049839688745],[-127.59961894238606,52.76388206730298],[-127.59976239114994,52.76372149017125],[-127.59985165556138,52.76355212869372],[-127.59983297484877,52.76337527270381],[-127.59978444364653,52.763194905208785],[-127.59976009165473,52.76301531969552],[-127.59974316839157,52.7628361977419],[-127.59972809486332,52.762656494529345],[-127.59971486182428,52.762476757211154],[-127.59970256442138,52.762297016070974],[-127.59969305749851,52.762117227861225],[-127.59968449212887,52.761937991743444],[-127.59968147256413,52.761758123928644],[-127.59968216369583,52.761578196486084],[-127.5996828551572,52.7613982779854],[-127.59968261111152,52.76121836326239],[-127.59967775692557,52.76103907639468],[-127.59965989367605,52.760859411044386],[-127.59962995634598,52.76067934548068],[-127.59961025878997,52.76050026111207],[-127.59961653768143,52.760320822233446],[-127.59964501874326,52.760139394422964],[-127.59969493462476,52.759960480931156],[-127.599778703089,52.759792879912496],[-127.60000053521846,52.759668788623046],[-127.60035028291577,52.759440943292276],[-127.60059244584842,52.75933954839144],[-127.60084319532862,52.75924420545505],[-127.60109873666958,52.75915272434589],[-127.60135523883326,52.75906234152409],[-127.60161268134516,52.75897251023538],[-127.60186913968616,52.75888101485584],[-127.60212083957161,52.7587862120895],[-127.60236772480032,52.75868699970999],[-127.6026182984535,52.75858717139348],[-127.60287258167084,52.75848729179043],[-127.60312494513455,52.75838575194582],[-127.6033696761565,52.758278720107434],[-127.60359837548265,52.75816517233854],[-127.60380632243475,52.75804238437538],[-127.60398689581636,52.75790764005002],[-127.60413248534351,52.75775600380102],[-127.60424971175021,52.7575901740897],[-127.60434619864515,52.757416225387175],[-127.60443048561822,52.75723852469492],[-127.60451110300349,52.75706198614048],[-127.6045899909426,52.75688884303057],[-127.60465580675826,52.756713627915985],[-127.60471040655615,52.7565363333432],[-127.60475566626857,52.75635748067342],[-127.60479167013688,52.75617931069013],[-127.60480155303271,52.755997579444404],[-127.60481451537309,52.7557989915689],[-127.60481978860169,52.75561788835671],[-127.60486183161099,52.755477192305115],[-127.60504126028592,52.7553368567924],[-127.60526098841491,52.75520717865551],[-127.6054996882078,52.75508844982963],[-127.6057369311308,52.754980385121186],[-127.60598476914664,52.75488282836723],[-127.60624119359744,52.75479132317666],[-127.60650238835996,52.75470310594166],[-127.6067616911173,52.75461435804475],[-127.60701525268429,52.75452064841958],[-127.60725830695353,52.75441922660003],[-127.60748701777604,52.75430680030596],[-127.6077052151265,52.754186106040606],[-127.60791577983407,52.75405991123323],[-127.60812156511085,52.753929853737844],[-127.60832449591062,52.75379815806066],[-127.60852740454882,52.75366590630877],[-127.60873223015962,52.7535353048282],[-127.60894276737655,52.753408543446646],[-127.60916187618143,52.753287833765896],[-127.60939526338062,52.75317646027024],[-127.60963436223814,52.75306892673717],[-127.60986968618596,52.75295975861275],[-127.61009168584022,52.752841814281005],[-127.61029844224754,52.752713425280156],[-127.61049568955387,52.75257899675825],[-127.61068534669498,52.75244019729082],[-127.6108702875122,52.752299211411646],[-127.6110533362379,52.75215769522121],[-127.61123542140214,52.7520150709947],[-127.61141279061657,52.75187026936403],[-127.61158261808828,52.75172277320911],[-127.61174212190318,52.75157204688641],[-127.61188183726034,52.75141318971313],[-127.61198397105062,52.751242518633404],[-127.61203674163949,52.751066921624734],[-127.61206622585753,52.7508888469567],[-127.61208448000556,52.75070867583463],[-127.6120971841288,52.750528590002176],[-127.61211172797549,52.750348469869415],[-127.61213558283777,52.750168786590756],[-127.61216221256899,52.749989065109034],[-127.61219999328216,52.74980975515658],[-127.61226487436107,52.74963566820203],[-127.6123557819245,52.74946235302835],[-127.61247664878503,52.74929646334181],[-127.61264093329783,52.74914959748388],[-127.61284675060506,52.74902178121622],[-127.61307144785845,52.74890210747146],[-127.61329231326559,52.74877967911137],[-127.6134895543244,52.748645809877694],[-127.61367449079775,52.74850538389621],[-127.61385275723451,52.7483605655675],[-127.61402162099368,52.74821251353102],[-127.61418110345512,52.74806179250245],[-127.61430291546716,52.74789645257718],[-127.61440876196554,52.74772628359401],[-127.61457120024784,52.74758000510895],[-127.61477420799964,52.74745165888149],[-127.61499510336272,52.74733034758456],[-127.61522362244337,52.74721397961954],[-127.61545210444324,52.74709705569142],[-127.61567876617313,52.746980712392514],[-127.61590926958505,52.74686823457477],[-127.61614070696767,52.74675575236496],[-127.61636643017296,52.746639420603245],[-127.6165902335944,52.74652142892172],[-127.61681117654744,52.74640124327489],[-127.61702449324478,52.74627611355857],[-127.61722458548589,52.746144440099464],[-127.61741700909813,52.746006702278954],[-127.6175981268584,52.74586408028695],[-127.61776886498976,52.74571711739088],[-127.6179095225733,52.7455599247817],[-127.6180313340731,52.745395136420754],[-127.61817569919916,52.74523789223385],[-127.61833038399988,52.74508385926836],[-127.61849827831432,52.744935257453385],[-127.61868796007363,52.74479867615271],[-127.61890311804325,52.744673517261305],[-127.61913355190197,52.74455935662184],[-127.61938227618283,52.74446287834315],[-127.61965806926784,52.74439517073743],[-127.6199389578644,52.74433972276394],[-127.62022373988037,52.74428870417503],[-127.62050756536621,52.7442371421074],[-127.62102602817507,52.74415822794493],[-127.62129250054971,52.744089524387874],[-127.62149935097044,52.74396559644556],[-127.62168401358737,52.74381955564831],[-127.62189442207465,52.74369164980078],[-127.62211239707705,52.74356756670232],[-127.62232757509324,52.743442965892775],[-127.62253141733878,52.743313472750316],[-127.62269123388229,52.74317281419767],[-127.62282504083548,52.743006742103944],[-127.62290376473578,52.74283189999862],[-127.6228682269306,52.74265359160924],[-127.62286416987246,52.74247317017289],[-127.62295048134854,52.742302706779654],[-127.62306192892714,52.742134702024785],[-127.62320152886859,52.74197470997649],[-127.62328880042605,52.74180535392388],[-127.6233405079855,52.74162752269379],[-127.62337452487078,52.741448250577264],[-127.62336497220332,52.74127014709174],[-127.62333591119486,52.74109119290366],[-127.6233578591421,52.74091153193686],[-127.62341330220372,52.74073476977244],[-127.6234771192617,52.74055845649222],[-127.62354839627118,52.74038315178632],[-127.62363184129245,52.740210485318265],[-127.6237349637672,52.74004315095567],[-127.62387835516404,52.73988591213995],[-127.62404329256664,52.73973397039041],[-127.6241951408359,52.73957941186584],[-127.62430390828418,52.739414240586136],[-127.62437891048717,52.73923944849598],[-127.62442963317572,52.739060509049416],[-127.62446089056799,52.738881839457015],[-127.62443093449262,52.73870401860884],[-127.62438147139542,52.73852534722385],[-127.62434867792804,52.738345888671574],[-127.62434094864658,52.73816663858762],[-127.62435360371015,52.73798710585181],[-127.62437369133222,52.73780747003655],[-127.62439098969357,52.73762787286891],[-127.62440178994599,52.73744836577662],[-127.62441075050931,52.737268884169694],[-127.62441782028573,52.73708886378152],[-127.62442584607965,52.73690939509014],[-127.62443199628599,52.73672939637513],[-127.62443539336378,52.7365499918216],[-127.62443131543867,52.73636956991323],[-127.62441510633164,52.7361870742302],[-127.62439706409272,52.736005159951546],[-127.62438741699361,52.73582425919453],[-127.62439642610872,52.73564645371075],[-127.6244352902524,52.73547272712451],[-127.62454786126132,52.7353103002452],[-127.62471173780895,52.735155573547104],[-127.62487283908534,52.73500088508224],[-127.6245809888513,52.73486368870022],[-127.62439396636591,52.73472672400829],[-127.62425808325045,52.73454420157121],[-127.62402858056764,52.73446106763422],[-127.62372513154428,52.73445799220844],[-127.62355134588417,52.7344009886949],[-127.62349853084892,52.734353518301766],[-127.62346242359725,52.73416008822187],[-127.62343805381153,52.73400685092915],[-127.62333367221656,52.73382276985914],[-127.62321653080271,52.7336450354045],[-127.62306451514145,52.733501413613986],[-127.62285111278861,52.733377698847804],[-127.62262676273187,52.7332591842686],[-127.62239428935753,52.733146377738166],[-127.622142716747,52.73306802979559],[-127.62187933972965,52.73297190898879],[-127.62163073430278,52.732873906113994],[-127.62138575320482,52.732773601614966],[-127.62113983248945,52.73267275360782],[-127.62089125155725,52.73257530486171],[-127.6206337192065,52.73248639132021],[-127.62036638536786,52.73240825768709],[-127.62009642696626,52.732334078718964],[-127.6198229946227,52.732266117082155],[-127.61954248569859,52.73220722054197],[-127.61926118511597,52.73215169723875],[-127.61898334575623,52.73208996449359],[-127.61871426284492,52.73201409329119],[-127.61844520845283,52.731939342071485],[-127.6181680728487,52.73187142779255],[-127.61788744164075,52.73180916607491],[-127.61760222330314,52.73177274970044],[-127.61730846714273,52.73178016893964],[-127.61701076674235,52.73180613365746],[-127.61671352012254,52.731819769485035],[-127.61642083413257,52.73180642901948],[-127.61614726298852,52.7317345418601],[-127.61586266999896,52.731690265755574],[-127.61556542689699,52.73167922800103],[-127.61526949963593,52.731678269177195],[-127.6149729550069,52.73168572101638],[-127.61467864516737,52.731703230155546],[-127.6143854662287,52.731726327886065],[-127.6140875572783,52.7317220214648],[-127.61380560741888,52.73167378501235],[-127.61353291859149,52.73160074970652],[-127.61325246495419,52.73154295848216],[-127.61296770109341,52.73149363780882],[-127.61268377273494,52.73144205401269],[-127.6123998241105,52.73138991380722],[-127.61211854462664,52.73133493821106],[-127.61183536301168,52.731278302162714],[-127.6115705459576,52.731192267205245],[-127.61131606808111,52.73111000839034],[-127.6110774076029,52.73100399979444],[-127.6108431862449,52.730892880764415],[-127.61061256877679,52.73077890477782],[-127.61038649647652,52.73066263285821],[-127.61016947883361,52.730540066147455],[-127.60995698477666,52.7304146299239],[-127.60973814281787,52.73029320848633],[-127.6095065488007,52.73017756679129],[-127.60926624687391,52.730052520408975],[-127.60901905655211,52.729941575977755],[-127.60876415618735,52.72987221331801],[-127.60849614375927,52.72987365212597],[-127.60821473787,52.72993804927438],[-127.60793346451275,52.73003046848887],[-127.60766964922935,52.73011871946563],[-127.60741425361377,52.73020910521773],[-127.607163731079,52.73030558444974],[-127.60691704199212,52.730405373481226],[-127.6066703938428,52.73050628239146],[-127.60642949619935,52.730612151829504],[-127.60620024845156,52.73073187775645],[-127.60593262090121,52.73079271737935],[-127.60562874825153,52.73080248806477],[-127.60533817398674,52.73077116436252],[-127.60506308911206,52.730707675241064],[-127.60479204448121,52.730628436388464],[-127.60452114178452,52.730552557918315],[-127.60423381084429,52.730484185725864],[-127.60395101873685,52.73041295271667],[-127.6036982402494,52.73032561437415],[-127.60350364634935,52.73020721248568],[-127.60338974303293,52.730038947546625],[-127.60333726806479,52.72985134097228],[-127.6033361311874,52.729672555489294],[-127.60340357553409,52.72949227518413],[-127.60345814577794,52.72931497799165],[-127.603406160585,52.72914081644534],[-127.60322707743869,52.728990249283136],[-127.60298601704243,52.728893781204384],[-127.60272506665953,52.728811036589775],[-127.60245228940816,52.72873462309473],[-127.60217863514393,52.72865933298463],[-127.60191128984616,52.72857891602466],[-127.6016510952598,52.72849167479063],[-127.60139270787602,52.728402731290615],[-127.60113165854936,52.72831717759689],[-127.60086536277268,52.728240106886105],[-127.60057871529486,52.72816443467674],[-127.60029755866621,52.72813633296156],[-127.60000118006805,52.7281230023096],[-127.59913091845394,52.72801662821657],[-127.59794089005553,52.727568218564684],[-127.59701608163321,52.72729218399329],[-127.59587857563008,52.72700782178688],[-127.59504001105182,52.72690490472396],[-127.59451691032596,52.72692940708671],[-127.59390381955255,52.72695344584036],[-127.59357559083512,52.726856458980095],[-127.59301098116568,52.72656371702067],[-127.59232702426436,52.72602934230466],[-127.59188947897258,52.72573598842333],[-127.59142100493172,52.725533296613264],[-127.59110041956849,52.7254171424239],[-127.59032399237492,52.72511325739075],[-127.58966096106433,52.72486611021573],[-127.58884035571234,52.72447089476067],[-127.5882958933253,52.72411956616567],[-127.58760930257831,52.723886178853625],[-127.58718427517194,52.72380394729837],[-127.58669903479483,52.72359809224681],[-127.58585983471227,52.72307531645117],[-127.58534275645184,52.72261094052856],[-127.5849329409051,52.72208738469133],[-127.58419666530192,52.72198861183208],[-127.58350517684023,52.72152154718082],[-127.58175814213739,52.721273323880666],[-127.58102392950055,52.721079220139416],[-127.58075899407781,52.720860842585836],[-127.58057933937896,52.7207169751167],[-127.58040062620245,52.720573659642234],[-127.58022282797573,52.72042977554486],[-127.58004684295659,52.720284736766786],[-127.57987635838472,52.72013794653203],[-127.57971135337286,52.719988840171325],[-127.5795536815955,52.71983739270344],[-127.57939594905424,52.71968426885553],[-127.57923446856789,52.719530065390686],[-127.57907482241865,52.71937528096124],[-127.57891790349645,52.719218782554485],[-127.57876740397371,52.719060511434705],[-127.57862798621169,52.718900969747075],[-127.57850144158257,52.718738447426205],[-127.5783924383458,52.71857401153677],[-127.57830280345287,52.7184065165191],[-127.57823624363772,52.71823590348754],[-127.57819549633865,52.7180615795762],[-127.57817409582015,52.717883631947984],[-127.57816746222768,52.71770379932206],[-127.5781718884955,52.71752214062767],[-127.57818183418905,52.717339286539946],[-127.57819177979758,52.71715643242886],[-127.57819895236283,52.71697361566818],[-127.57819688349865,52.716792044421936],[-127.57817727534758,52.71661239550396],[-127.57812424115474,52.7164315111071],[-127.5780712487359,52.71625174709003],[-127.57806476063253,52.716075840233806],[-127.57812986823689,52.715905129360394],[-127.57823777778658,52.71573889042902],[-127.57836707156737,52.71557404907477],[-127.57849821753517,52.71540917360892],[-127.57861353275334,52.71524227839602],[-127.57872887325509,52.715076494713664],[-127.57884047969328,52.71490964922139],[-127.57893339070746,52.71473912777103],[-127.57900580351543,52.714565519695974],[-127.57906980551925,52.714390339017214],[-127.57912725060764,52.714213569714126],[-127.57918100314116,52.71403685015778],[-127.57923286644542,52.713859600022936],[-127.57928566312225,52.71368232828057],[-127.57934218706689,52.71350557118776],[-127.57939873138886,52.71332937874218],[-127.57945340098482,52.71315264655525],[-127.57950434246816,52.7129753996325],[-127.57955896981449,52.71279754692639],[-127.57961823760117,52.7126196315614],[-127.5796682026286,52.7124412856416],[-127.57969410868445,52.71226382029335],[-127.57967922557629,52.712086905254516],[-127.57961523592239,52.71191065273182],[-127.57953366785996,52.71173519332115],[-127.5794650385518,52.71155900328366],[-127.57943995017247,52.71138166981105],[-127.57945656903384,52.711203764702844],[-127.57949632637241,52.711024991402965],[-127.5795490565878,52.71084604304194],[-127.57960274696325,52.710668202662816],[-127.57967044762671,52.71049298015099],[-127.57975303595677,52.71031923368653],[-127.57981332198197,52.71014410211555],[-127.57982435846156,52.709965716097805],[-127.57980566582827,52.709786054224736],[-127.57978230591563,52.70960532535225],[-127.5797719606719,52.70942555079598],[-127.57976534252354,52.70924628193598],[-127.57975778437746,52.70906646076054],[-127.57974835856938,52.70888667373337],[-127.5797343068654,52.70870694013736],[-127.57971748320064,52.70852725289118],[-127.57970797462792,52.7083452159698],[-127.57970031364616,52.708162598085224],[-127.57968620050718,52.707981188230384],[-127.57965824340222,52.707801651123766],[-127.57960727383146,52.70762634348041],[-127.57952592074278,52.70745648571797],[-127.57942520623793,52.707289696063235],[-127.57931343578055,52.70712474143472],[-127.57919244146255,52.70696102314174],[-127.57906316370439,52.70679910241941],[-127.5789265100494,52.70663784601124],[-127.57878527903162,52.70647832817332],[-127.57863945018491,52.706319993154764],[-127.57849180462676,52.70616223845983],[-127.57834326784473,52.70600562555115],[-127.57819475264382,52.70584956817261],[-127.57804717815237,52.70569405393421],[-127.5778977668017,52.70553857323503],[-127.57774648830134,52.705383108540595],[-127.57759431259197,52.70522822071984],[-127.57744121886273,52.70507334507059],[-127.57728538053297,52.704919627191586],[-127.57712863019354,52.704766486371],[-127.5769691292948,52.70461393840536],[-127.57680783824887,52.70446309133824],[-127.57664473691247,52.704313398390276],[-127.57647797160291,52.70416486658272],[-127.57630941649563,52.704018044610585],[-127.57613815249309,52.70387294484181],[-127.5759623319027,52.703730139184614],[-127.5757501745026,52.70360744424576],[-127.57550530381398,52.70350256908013],[-127.57525050332892,52.70340510899795],[-127.57500127780352,52.70330757335954],[-127.57474847674098,52.70321400428656],[-127.57449210962713,52.70312385458454],[-127.57423483013241,52.70303427261211],[-127.57397938392357,52.702944100452754],[-127.57372658757099,52.7028505381137],[-127.57348817744918,52.7027444419836],[-127.57326774822523,52.70262353978854],[-127.57302128304025,52.702525397925896],[-127.5727658220025,52.70243466735055],[-127.57250588132823,52.70234792435934],[-127.57224417667024,52.70226400248756],[-127.57196349761587,52.70219322177053],[-127.5716711122607,52.70213157446644],[-127.57141869566317,52.70204808207799],[-127.5712516144534,52.70191525004607],[-127.57115450695748,52.70174447689133],[-127.57107368595308,52.701562840117326],[-127.57095538777955,52.70139572313951],[-127.57078297150126,52.701243896213164],[-127.57059402442776,52.701096218800124],[-127.57043368256811,52.700944794325665],[-127.5703452195852,52.70078231640087],[-127.5703166132584,52.70060894646352],[-127.57031928003028,52.70042899597781],[-127.5703459103346,52.70024535202883],[-127.57038925753429,52.70006261372507],[-127.57040735718961,52.70000015133338],[-127.57044197120541,52.699882547703965],[-127.57051260198361,52.69971064418476],[-127.57067287296233,52.69955715958515],[-127.57081438264478,52.69939720056434],[-127.57094609848728,52.699223364861766],[-127.57102405514392,52.699049120603206],[-127.5709707766939,52.698885614685835],[-127.57085276825684,52.69872577549119],[-127.57069962511746,52.69856864966339],[-127.57053171677559,52.69841284275316],[-127.57036660179759,52.69825755413635],[-127.57019516065067,52.69810684309835],[-127.57001276262982,52.697960197780894],[-127.56994916265126,52.69779290184009],[-127.569938964127,52.69761592160964],[-127.56995087529103,52.6974352818051],[-127.56997198821092,52.69725283256902],[-127.56999124855484,52.69707041712308],[-127.57000224596071,52.69689034551226],[-127.57002156749243,52.69670960619984],[-127.57002518940672,52.696530198460536],[-127.5699927174491,52.69635239587816],[-127.56994263783315,52.6961748294604],[-127.56988054434399,52.695997989136806],[-127.56980556452257,52.695823554633414],[-127.56971588759482,52.6956526891465],[-127.56960416422162,52.695487159251485],[-127.56947218581024,52.69532526385746],[-127.569331047711,52.69516628913933],[-127.56918991098847,52.69500732319742],[-127.56902681054369,52.694855933532544],[-127.56878953973705,52.6947542967225],[-127.5685170959464,52.694678922714104],[-127.56824657268011,52.69460575536874],[-127.56797429495246,52.6945348618718],[-127.56823626364275,52.69445064009469],[-127.56849342815482,52.69436199811595],[-127.56874742986719,52.694262744001946],[-127.56894504100413,52.69411660745524],[-127.56895219856018,52.693957895008786],[-127.56892146239882,52.69377670564553],[-127.5688576265226,52.69360268596164],[-127.56870741846866,52.69344888097021],[-127.56851877963787,52.693308477849286],[-127.56831562961409,52.69317668085413],[-127.56807366961051,52.69307342845432],[-127.56781367217215,52.69298331315557],[-127.56762260101449,52.692852474154726],[-127.56737248925164,52.69257669602136],[-127.56736303670745,52.692394656139825],[-127.56734071382252,52.69221503957272],[-127.56724841151829,52.69204812617934],[-127.56709992348429,52.69189036810393],[-127.56692678401636,52.69174247287722],[-127.56673189310966,52.69160832057623],[-127.56652146971234,52.691479980865715],[-127.56633021905974,52.69134353718026],[-127.56616531086841,52.69119273265382],[-127.56601042072228,52.69103730087495],[-127.5658491991013,52.69088588158556],[-127.56566717453693,52.69074819237539],[-127.56542535755322,52.69064829567955],[-127.56515457279731,52.690566721899806],[-127.56490543017901,52.690469164122284],[-127.56464565996902,52.690384643877174],[-127.56436379209897,52.69032955544092],[-127.56407342023203,52.69029532293287],[-127.56378736571658,52.690252629019476],[-127.56349398559264,52.6902374922391],[-127.56320975805299,52.69019364255005],[-127.56262857713166,52.69016385585506],[-127.562331513447,52.690149321376055],[-127.56204365877505,52.69018399604749],[-127.5617592900031,52.69023823643867],[-127.561487602027,52.690309677881466],[-127.56122466546147,52.690392220853674],[-127.56096655552312,52.69048029484703],[-127.56071233339382,52.690573365366404],[-127.56046289724341,52.690670855476505],[-127.56021919548567,52.690772752561585],[-127.559981198447,52.69087905705164],[-127.55974612937695,52.69098924997647],[-127.5595129520587,52.69110052922168],[-127.55927977385494,52.69121181695754],[-127.55904466002276,52.69132087903394],[-127.55880571795217,52.69142663759147],[-127.55856099271082,52.69152630270591],[-127.55830282967256,52.69161325030591],[-127.55803503641651,52.691690245551584],[-127.55776534859815,52.69176613542487],[-127.55750241613207,52.69184922569727],[-127.55724445310919,52.69194178216403],[-127.55699613851243,52.69204485462792],[-127.55679690483947,52.69217249149829],[-127.5566609447858,52.69233292513496],[-127.5565504888878,52.69250646231019],[-127.55642105889405,52.69266792974394],[-127.55620547039923,52.692778968111476],[-127.55594619876834,52.69286145001479],[-127.5556611706408,52.69292353086564],[-127.55537467308076,52.69297049265778],[-127.5551077644258,52.69304690421538],[-127.55484866666082,52.69313386528067],[-127.55458568480776,52.69321638441318],[-127.55431882871434,52.693293914413424],[-127.55405490580544,52.69337588880448],[-127.55379774317709,52.6934656197669],[-127.5535539894819,52.69356694703658],[-127.55330652792665,52.6937451063942],[-127.55316773733684,52.69390444317203],[-127.5530289255521,52.694063224024234],[-127.55288447361308,52.694219837538775],[-127.55271469821673,52.69436838387932],[-127.55256271168851,52.69452173392858],[-127.55245569498982,52.69468849512225],[-127.5523655342171,52.69486008154666],[-127.55227817958003,52.695032195631875],[-127.55220389955957,52.695207490218635],[-127.55209406786653,52.69537317627587],[-127.5519439483652,52.695527056591324],[-127.55177980378205,52.69567776864377],[-127.55161752522142,52.69582844672854],[-127.55146274313677,52.695981832139246],[-127.55130702086576,52.69613467376634],[-127.55113814570123,52.69628264054406],[-127.55095418366287,52.69642351606805],[-127.55074941451049,52.69655290107702],[-127.55053234520943,52.69667516671585],[-127.55030864052918,52.696793591877444],[-127.55008312245644,52.69691316158996],[-127.54984115780657,52.69701389184295],[-127.54955261151132,52.697056381987686],[-127.54925784414137,52.69705524423115],[-127.5489615954844,52.69703898752776],[-127.54866646308767,52.69702775526445],[-127.54836972161371,52.69702327843506],[-127.5480786208965,52.6969951765549],[-127.54778662762254,52.69696821571344],[-127.54749402466955,52.69695022113403],[-127.54721565902608,52.69689000510511],[-127.5469415689657,52.69681964303219],[-127.54666394187976,52.696754375990615],[-127.54638272605006,52.69669195369742],[-127.54616091575491,52.696581099560426],[-127.54598237285387,52.696436052865685],[-127.54580106476344,52.69629159843158],[-127.54560709226745,52.69615571388149],[-127.5454094764547,52.69602156308556],[-127.54520907543784,52.695887448732464],[-127.54497898344945,52.695777831686236],[-127.5447066355677,52.69570407851199],[-127.54441593962854,52.69566138948147],[-127.54417499740154,52.695559195989404],[-127.5441741692873,52.6953820910373],[-127.54433856754683,52.6952381215006],[-127.54454059826497,52.69510933991382],[-127.54452673963961,52.6949307298611],[-127.54439107165186,52.69476661412943],[-127.5441520476193,52.694666072279496],[-127.54386572095419,52.694616042371855],[-127.54356948600511,52.69459921605467],[-127.54327439220066,52.694588534887046],[-127.54296860664132,52.69458975981583],[-127.54275707367563,52.69448044979848],[-127.54257841511841,52.69433203653729],[-127.54239250329361,52.694187637567865],[-127.5421822005769,52.694060930532025],[-127.54196375709013,52.69393994428664],[-127.54173987257938,52.693821827302415],[-127.5415069736002,52.693711110565296],[-127.54126867422666,52.693604392432945],[-127.54102229432334,52.69350507112507],[-127.54076693461725,52.69341370547239],[-127.54050440792801,52.69332916850251],[-127.54023194757016,52.693252043621335],[-127.53994693954658,52.693237858488146],[-127.53965147417007,52.69326808473236],[-127.53935497411183,52.69329552585185],[-127.53904946728635,52.6933298105809],[-127.5387628736601,52.693323490320175],[-127.53850899733817,52.69324723810274],[-127.53826704860627,52.69314224789725],[-127.53803389533623,52.69302368080368],[-127.53780260138574,52.69290565379815],[-127.53757604828503,52.692790371005124],[-127.53735759855768,52.69266824644366],[-127.53714733848113,52.6925420949425],[-127.53694341550016,52.692411940874486],[-127.5367458238412,52.69227721040251],[-127.5365537109078,52.69214017466063],[-127.53636514308853,52.691998599151354],[-127.5362242797789,52.691843510261094],[-127.53608004308586,52.69167165067774],[-127.53599439519722,52.69150574784699],[-127.53592005821378,52.69131951872732],[-127.53585751502932,52.69115163552967],[-127.53585633937499,52.690963881143716],[-127.53587517035545,52.690791566946594],[-127.53589209736934,52.69059180903795],[-127.53559548743033,52.69061531439805],[-127.53530571534654,52.69064882714359],[-127.53504826851473,52.69073122960349],[-127.53480751826518,52.690839760173006],[-127.53456666654874,52.69094549357108],[-127.53432670681723,52.69105008480081],[-127.53407618878128,52.6911447340166],[-127.53379759646559,52.691206112085],[-127.53352782893924,52.691280834635236],[-127.53325508816803,52.69134998160552],[-127.53297450057364,52.691407464848965],[-127.53269195419952,52.691461610105065],[-127.53240532631763,52.69150571924426],[-127.53211357290658,52.69153588694343],[-127.53182693854545,52.691579429757866],[-127.5315403692705,52.69162522194784],[-127.53125267983143,52.69166541419092],[-127.53096092452016,52.691695579013576],[-127.53066693553723,52.691715118479564],[-127.53037188708925,52.69173074312806],[-127.53007676369685,52.69174469101678],[-127.52978165493232,52.69175863796752],[-127.52948647126954,52.69177090815784],[-127.52919136213207,52.691784853619936],[-127.52889639804317,52.69180328037672],[-127.52860768621568,52.691840681446635],[-127.52832900153258,52.69189980554646],[-127.52805336239794,52.69196618008154],[-127.52777676356723,52.69203144549851],[-127.52750307537057,52.69210060018254],[-127.52722841231942,52.692168636982714],[-127.52694975855967,52.69222832230464],[-127.52666387366389,52.692267367582474],[-127.52636591387758,52.692279657088804],[-127.5260750298587,52.692308677273374],[-127.52578655176528,52.692352794142785],[-127.52550011043965,52.692402488654544],[-127.52521954015873,52.692460508821675],[-127.52494863630692,52.69253017714174],[-127.52468468201009,52.69261265005652],[-127.52442954910445,52.692708450264725],[-127.52419342472369,52.692818019083944],[-127.52398098223209,52.692941851774464],[-127.52377744087704,52.69308126189597],[-127.52359834597698,52.69323100717567],[-127.52346209340476,52.69338635536264],[-127.52344295725999,52.693551944678845],[-127.52355868083366,52.69373091611875],[-127.52376199723714,52.69400123239694],[-127.52368124512073,52.69417995470307],[-127.52348558770271,52.69430693068381],[-127.52325514970512,52.69442035123717],[-127.5230077323025,52.6945250154656],[-127.52274864508202,52.69461470224224],[-127.52248162318236,52.694689362905066],[-127.52220784951912,52.694756819908754],[-127.5219301705043,52.69481872214631],[-127.52164862605747,52.69487619005229],[-127.52136508866167,52.69492975526492],[-127.52107959851912,52.69498054719526],[-127.52079402808675,52.69502909750432],[-127.5205074038664,52.69507429786116],[-127.52021772890977,52.69511169028369],[-127.51992600185889,52.69514350373964],[-127.51963331567339,52.69517420793764],[-127.51934160780553,52.69520658464851],[-127.51905193093573,52.69524397418273],[-127.51876719586807,52.69529026668722],[-127.51848938918044,52.69534879935371],[-127.5182156247213,52.69541680273905],[-127.51794580347462,52.6954914891601],[-127.51767793313014,52.69556894760443],[-127.51740816940506,52.69564530899],[-127.51713637316212,52.695716647203774],[-127.51685965405436,52.695779645730504],[-127.51657893602977,52.69583484857037],[-127.51629528687846,52.69588560479322],[-127.51600968530221,52.69593358765093],[-127.51572306479761,52.69597877607273],[-127.5154364088742,52.69602339927006],[-127.515148833725,52.69606804262424],[-127.51478116775719,52.69612772959106],[-127.51447984902285,52.696150685643744],[-127.51419025034605,52.69613817406671],[-127.5139173564599,52.69607388977974],[-127.51364617727556,52.69600565478934],[-127.51337491972984,52.695935178240696],[-127.51310541660938,52.69586187146672],[-127.51283583553128,52.695786332104845],[-127.51256713443478,52.695709650814436],[-127.51229932879151,52.69563184533725],[-127.51203148422762,52.69555290981543],[-127.51176364096796,52.69547398264013],[-127.51149581831918,52.695395610598204],[-127.51122893040285,52.69531722588226],[-127.51096206819149,52.69523996120976],[-127.51069520183552,52.69516213101926],[-127.51042923576613,52.69508373260614],[-127.51016325106491,52.695004777833695],[-127.50989724742617,52.69492525773805],[-127.50963216369635,52.69484572518055],[-127.50936705626572,52.69476507136157],[-127.50910376776089,52.694683828524916],[-127.50883954175097,52.694602041187416],[-127.50857714981484,52.69451967361693],[-127.50831471909342,52.694436176023686],[-127.5080541224598,52.69435209821341],[-127.5077934479191,52.69426577888492],[-127.50753548187598,52.69417718214549],[-127.50728020953369,52.69408630820334],[-127.50702852519505,52.6939920245852],[-127.5067795150513,52.693894908050375],[-127.5065221962191,52.693798453953605],[-127.50626113389107,52.69370092650567],[-127.50601369881963,52.69359537629849],[-127.50580005782611,52.69347593906449],[-127.50563481473468,52.69333625725588],[-127.5055125054724,52.69317865227867],[-127.5054185060447,52.693008917251014],[-127.50534274221201,52.692831091780626],[-127.50527247305999,52.69265096258992],[-127.50515682279989,52.692392939762414],[-127.5049140812261,52.69228901285107],[-127.50466775355935,52.69218848551111],[-127.50442048865621,52.69208741370521],[-127.50417593742827,52.691984629526104],[-127.5039395784591,52.69187781166495],[-127.50371316103879,52.69176357476657],[-127.50349849869744,52.691640783580304],[-127.50328729174299,52.69151122176501],[-127.5030851667729,52.691375938045425],[-127.50289488031761,52.691234897066494],[-127.5027220291789,52.691089147990496],[-127.50256848055345,52.690938666917276],[-127.50245995304745,52.69077696283853],[-127.50241012071187,52.69059824646781],[-127.502384208694,52.69041417408652],[-127.502352862452,52.6902340993461],[-127.5023243418912,52.69005510927899],[-127.502303211875,52.68987546830306],[-127.50228763905396,52.68969574699389],[-127.50227855761518,52.68951595129522],[-127.50228893884409,52.68933646172082],[-127.50236111294542,52.689148887969175],[-127.5022890985757,52.688997924590815],[-127.50208067452597,52.68886775988054],[-127.50182844274782,52.688756657657045],[-127.50156079819102,52.688681623946145],[-127.50127772077263,52.688642102892885],[-127.5009804921724,52.68862181032063],[-127.50067965740043,52.688604370170324],[-127.50038671466586,52.68857394130857],[-127.50010850904037,52.68851473340291],[-127.49984069221945,52.6884346491328],[-127.49958461532941,52.688346010968225],[-127.49933563048303,52.688247757562486],[-127.49908846456641,52.688148915360706],[-127.49883137394453,52.68805748163373],[-127.49857247158113,52.687967200497134],[-127.49833259593524,52.687864335457036],[-127.49812528478651,52.68773919845665],[-127.49794335439543,52.68759748650961],[-127.49777138998364,52.68744947686174],[-127.49759578070555,52.68730319059169],[-127.4974120062001,52.68716205742934],[-127.49722824772464,52.68702092377531],[-127.49704816086039,52.68687918685593],[-127.49687805474613,52.68673115212479],[-127.4967234276942,52.686575072311406],[-127.49654433652704,52.68643499886492],[-127.49628816094737,52.68634299193809],[-127.49602116154442,52.68625896968549],[-127.49584305129474,52.68612055962268],[-127.49569669954437,52.68596269569168],[-127.4955648734214,52.68579623410126],[-127.49543575587248,52.68562749578471],[-127.49530034465691,52.68546444263656],[-127.49514865541225,52.685312807107145],[-127.49496889527198,52.68518002168212],[-127.49473159988206,52.68507095551643],[-127.49444344027255,52.68499112795045],[-127.49414171467407,52.68494733523263],[-127.4938610096348,52.68494812143793],[-127.49360010165537,52.68501198499866],[-127.49334426515261,52.685115017440346],[-127.49308386751508,52.68522034945631],[-127.4928102056094,52.685290534842714],[-127.49252460933819,52.685337340262606],[-127.49223131035937,52.68537583140196],[-127.49193484944354,52.68540315235051],[-127.49163879942525,52.68541589461173],[-127.49134495417593,52.685412349380854],[-127.49105344621793,52.685395886886184],[-127.49076166540384,52.68537158031168],[-127.49047062344226,52.68534165872162],[-127.49017939174259,52.68530669892091],[-127.48988809704755,52.68526948828311],[-127.4895976632634,52.6852305889859],[-127.48930631611213,52.685192265570926],[-127.48901508155836,52.6851567379588],[-127.48872392990874,52.68512400652739],[-127.48843283278407,52.68509240362634],[-127.48814082186983,52.68506136763172],[-127.48784974940678,52.685030874983745],[-127.48755773933469,52.68499983753289],[-127.48726662429921,52.684967667006106],[-127.48697640911512,52.684934928320686],[-127.4866861358626,52.68490050371165],[-127.486396723289,52.6848643815077],[-127.4861080894882,52.68482377377003],[-127.48582370511735,52.68477189264768],[-127.48554094520293,52.684713829338754],[-127.48525825932877,52.684657450360454],[-127.48497405657078,52.684611169763],[-127.48468495375798,52.68458345122459],[-127.4843918736801,52.68457483900175],[-127.48409553602833,52.68457916305569],[-127.48379847819287,52.68458965636661],[-127.48350050150374,52.684600160571506],[-127.48320416327627,52.6846044734043],[-127.4829106564938,52.68458353216784],[-127.48261603491962,52.68458390283054],[-127.48232063055195,52.684588210561],[-127.4820245712466,52.684574025288846],[-127.48173100693299,52.684551395887425],[-127.48144241843337,52.68451189711636],[-127.48116332715811,52.684452090922974],[-127.48088371837724,52.68437772693251],[-127.4807508387168,52.68423256110321],[-127.48065961143556,52.68405939969104],[-127.48049779928793,52.683907873850494],[-127.48033293141778,52.6837485396288],[-127.48009703285292,52.68370556404161],[-127.4798066703371,52.6837753742011],[-127.47954170619695,52.683856072196534],[-127.47925828607448,52.68391234149536],[-127.47896613037607,52.68390370406535],[-127.47867825013915,52.68385746375552],[-127.47841311867649,52.68377281324648],[-127.47813270657808,52.683728154220766],[-127.47783604528959,52.683722933825905],[-127.47753845056505,52.683717724467364],[-127.47724899151707,52.68367934741872],[-127.47696369197398,52.68362745651145],[-127.47667480755447,52.683632788739054],[-127.47638343547665,52.68367345779692],[-127.47609397283,52.68371577900727],[-127.47580737720652,52.683760870245514],[-127.47551448642295,52.683784185684495],[-127.4752194963694,52.683800792053596],[-127.47492442456992,52.68381460076007],[-127.47462935721086,52.683828973633986],[-127.47433447792821,52.683848383280655],[-127.47403864542513,52.68386723921971],[-127.47374508253064,52.6838715021572],[-127.47345570264912,52.68383534773758],[-127.47317222062648,52.68378231274496],[-127.47289313083972,52.68372248698522],[-127.47261050669955,52.683667197903766],[-127.47232185520978,52.68362542668061],[-127.47203171493129,52.68364813381212],[-127.47174341733185,52.68369772034815],[-127.47145784717593,52.68374559489074],[-127.47117322898805,52.68379401275872],[-127.47088869141025,52.6838452268542],[-127.47060802663002,52.68390088442138],[-127.4703303625773,52.68396322045063],[-127.47005281342919,52.68402892624308],[-127.4697772691864,52.68409908109178],[-127.46950938303993,52.684176429885554],[-127.46925572624811,52.68426368809998],[-127.46903651915537,52.684382465348776],[-127.46885436363875,52.68452823630662],[-127.46868337785023,52.68467554371838],[-127.46853588279701,52.68483265371639],[-127.46843134897422,52.68499930410327],[-127.4683529621122,52.685172361030496],[-127.46828673677341,52.685348619207126],[-127.4682270206517,52.68552536060967],[-127.46820280946679,52.685711189170874],[-127.468136428997,52.68588296525336],[-127.46796331442388,52.68602246027963],[-127.4677396292512,52.68614633085042],[-127.46751315236551,52.68626967101195],[-127.46732884347338,52.6864070634763],[-127.46720276154818,52.68656725688574],[-127.46711331027471,52.68674212840098],[-127.46705836438616,52.68692329301394],[-127.46704038827556,52.687101752143626],[-127.46706589242413,52.68727798915652],[-127.46712476264774,52.687454919808076],[-127.4672592104691,52.687809145419784],[-127.46720038610792,52.6879853097581],[-127.4671415615699,52.68816148300977],[-127.46708366985266,52.68833763554192],[-127.46702299193811,52.68851383191602],[-127.46696046079703,52.68869004249586],[-127.46691742996161,52.6888676944984],[-127.46692633952006,52.689046381291206],[-127.46695658292434,52.689225912622305],[-127.46697294514017,52.689406182909146],[-127.46698559835284,52.68958594367122],[-127.46700102265457,52.68976566070479],[-127.46702475676649,52.689944717543476],[-127.46706603962565,52.69012187739451],[-127.4671562866611,52.690294495484316],[-127.46727680504493,52.6904583222285],[-127.46742028151299,52.69061626510729],[-127.46758936300009,52.690763789052994],[-127.46777758264372,52.69090211396959],[-127.46797583097094,52.691035819960575],[-127.46820546189863,52.69119268111269],[-127.46841281760355,52.69132123225448],[-127.46862468317661,52.69144636354407],[-127.46886376148176,52.69155433843433],[-127.46909277899321,52.69166635803241],[-127.46925368061223,52.69181847510217],[-127.46932631391616,52.69199074764463],[-127.4693325439016,52.692172265579],[-127.46935997061493,52.69235015446552],[-127.46943268247574,52.692524676805206],[-127.46952103824209,52.69269619575729],[-127.46963333946667,52.69286293007982],[-127.4697593939076,52.69302556370882],[-127.46990928335572,52.693180616053716],[-127.4700839844518,52.69332975172057],[-127.47026952887309,52.69347034816307],[-127.47041869952172,52.69363156969514],[-127.47038000919281,52.69380020025496],[-127.47026635166041,52.693971458529354],[-127.47019912928243,52.69414605223],[-127.47017287214278,52.694325736082874],[-127.47015866881269,52.69450582448652],[-127.4701435319214,52.694685933559704],[-127.47013396747288,52.6948659636421],[-127.47013827164649,52.69504526349537],[-127.47016478918141,52.695223728297755],[-127.4702200162029,52.695401823463364],[-127.47028542194596,52.69557923472066],[-127.47033784007428,52.6957562530926],[-127.47035597111557,52.695933137213736],[-127.47031569512362,52.69610963410928],[-127.47023832537732,52.696285475977355],[-127.47016651325904,52.69646124795502],[-127.470143887388,52.696639199962455],[-127.47017972735416,52.69681922444043],[-127.47023399934132,52.69699621943735],[-127.47030213628317,52.697171910292795],[-127.47039783931548,52.69734109399001],[-127.47055788640486,52.697494340704516],[-127.47066739823114,52.69766054378506],[-127.47074476815952,52.69783556233004],[-127.47078607402197,52.69801271992231],[-127.47076165039955,52.69819181543487],[-127.47057131762938,52.698452027661965],[-127.47054276915152,52.69856504725062],[-127.47047515157949,52.69864716183184],[-127.47031918343869,52.69877466861502],[-127.47013020497458,52.69891212242242],[-127.46993557460856,52.69904739599062],[-127.46973719453365,52.699181039337255],[-127.46953690705018,52.69931358530912],[-127.46933478026533,52.69944615400001],[-127.46896212981451,52.699660450528164],[-127.46895818619286,52.69970758025751],[-127.46893468374549,52.699752157532565],[-127.46891847768117,52.69990088335127],[-127.46883290287647,52.700000045530494],[-127.46867166627501,52.700190389615145],[-127.46853347374342,52.70034961351362],[-127.468396199545,52.70050883466627],[-127.46825799013737,52.7006680583913],[-127.46812071389311,52.700827279186676],[-127.46798437020782,52.700986479128105],[-127.46785085532728,52.70114732932645],[-127.46771640554873,52.701308191064996],[-127.46757725290135,52.70146686966904],[-127.46742870002402,52.70162174705947],[-127.46722577554839,52.70175880550734],[-127.4670498982337,52.701900564414544],[-127.4669769186228,52.702070187346635],[-127.4669338698743,52.70224727284233],[-127.46690858995966,52.702429184409176],[-127.46688978799675,52.70261101476835],[-127.46686815629143,52.70279120361141],[-127.46685670417116,52.70297069990556],[-127.46685452140701,52.70315063601636],[-127.46686161902433,52.703330464781615],[-127.46688075388099,52.70351013371989],[-127.46690359534384,52.703689765155],[-127.46691900533494,52.70386892473087],[-127.46691865682305,52.70404828175805],[-127.46690164530085,52.7042278475681],[-127.46687814037267,52.70440749471939],[-127.46685738814159,52.70458654238852],[-127.46684687399646,52.70476659166518],[-127.46684283375278,52.70494599483806],[-127.46683787854502,52.70512596544616],[-127.4668282639872,52.70530543842074],[-127.46681868352901,52.70548547590482],[-127.4668044623835,52.705665562544105],[-127.46677815005391,52.70584468866937],[-127.46673139034638,52.706021820078014],[-127.46666883273424,52.70619803738027],[-127.46658856578338,52.70637166961496],[-127.4664886741348,52.70654049883314],[-127.46636075364968,52.706702962274534],[-127.46621884442861,52.70686279388347],[-127.46608437056284,52.707023653127784],[-127.46597696671579,52.70718977797234],[-127.46590780995277,52.70736270548302],[-127.46586662855529,52.70754089636908],[-127.4658403833894,52.70772169809549],[-127.46581689112402,52.70790190036408],[-127.46580356514154,52.70808141932646],[-127.4658032460901,52.70826134037253],[-127.46579457957617,52.70844135694169],[-127.4657868899396,52.708623047166014],[-127.4657530964386,52.70880002439234],[-127.46566926779988,52.70897818397603],[-127.46550277567545,52.709124305739394],[-127.46525740623032,52.70921425498282],[-127.46498171131651,52.709284962061744],[-127.46470135546039,52.70935516182965],[-127.46444104141696,52.70944193342803],[-127.46420554764248,52.709549683085534],[-127.46397870704259,52.7096663006032],[-127.4637480284244,52.709779593827484],[-127.46349823620835,52.709875755279874],[-127.46320736233652,52.70990965650112],[-127.462919543565,52.70995136545716],[-127.46263275421492,52.709995867691525],[-127.46234697910027,52.71004315443285],[-127.46206219918048,52.71009266993538],[-127.4617804164031,52.710148308043834],[-127.46149303486897,52.71020290337203],[-127.4612305876735,52.71028183866604],[-127.46100641192656,52.71039561010734],[-127.46079186535206,52.71051991443625],[-127.46058494121756,52.710650283980705],[-127.46038179906031,52.71078284785244],[-127.46018522637641,52.710917571306204],[-127.46001508209993,52.71106653714586],[-127.45981554728317,52.71119624811827],[-127.45957626822972,52.71130235833307],[-127.4593265152237,52.71140019597388],[-127.4590816161203,52.711504689279934],[-127.45881911860077,52.711582507594095],[-127.45852920173652,52.71161750598628],[-127.45823332305977,52.71164080349517],[-127.45794038872144,52.71166911232667],[-127.45764653469877,52.71169743186977],[-127.45736253904744,52.711743007094654],[-127.45709932733652,52.71182699108723],[-127.45683516123724,52.7119104213896],[-127.45656816870743,52.71199277426316],[-127.45632110096652,52.712088321050594],[-127.45614623612714,52.71223509775245],[-127.4559625413459,52.71236741169039],[-127.45567091584547,52.712406907915636],[-127.45537421064827,52.71243358017594],[-127.45508113141217,52.712457399774344],[-127.45479527422376,52.712502982819785],[-127.45451837817308,52.712566953890544],[-127.45424930997079,52.71264260145909],[-127.45398412298654,52.712723795945635],[-127.45371893094274,52.71280443388966],[-127.4534497688872,52.712877838852236],[-127.45316984810546,52.71293455359793],[-127.45288010768668,52.71297514032506],[-127.4525892572058,52.713010135385666],[-127.45229531437569,52.713036200533246],[-127.45200234770009,52.71306393873017],[-127.45171541179477,52.713105043755995],[-127.45143846923779,52.71316788704726],[-127.45117141615394,52.71324854217423],[-127.4509244242515,52.71334688315374],[-127.4506993088755,52.71346176667385],[-127.4504050391104,52.71347830754718],[-127.45010625638893,52.71349825742662],[-127.44983977638039,52.71356881387321],[-127.44960338401917,52.713679351089354],[-127.4493917082394,52.713807516909405],[-127.44924671581025,52.71396120357838],[-127.44917297223192,52.714138103988084],[-127.44902618112509,52.71429348951463],[-127.44882294793057,52.714424912536934],[-127.44856436735468,52.71450994041895],[-127.44829443688567,52.7145883824582],[-127.44802924565745,52.71467012807053],[-127.44780411126838,52.71478444102216],[-127.44759517876521,52.71491201345992],[-127.44739669726162,52.7150472939218],[-127.44721137506798,52.71518746008859],[-127.44705813527213,52.71534460850031],[-127.44692563940232,52.71551157983443],[-127.44675984479372,52.71565374577523],[-127.44650656742805,52.71573142176037],[-127.4462067510101,52.7157765998125],[-127.4459491100679,52.715862166057924],[-127.4457106899367,52.71596823625246],[-127.44547994412152,52.716081501785645],[-127.44525399389072,52.71619974738808],[-127.4450346549908,52.71632182974074],[-127.44482096654495,52.71644609278083],[-127.44461671907918,52.71657583465286],[-127.44441817868298,52.71670943350857],[-127.44422059427943,52.71684414114681],[-127.44402109840159,52.71697719507435],[-127.44381495450189,52.717105837890074],[-127.44359936712529,52.71722900102086],[-127.44337807020709,52.717348306344604],[-127.44315111246635,52.71746431818145],[-127.44292127093337,52.71757755826473],[-127.44268762650273,52.71768804686945],[-127.44245111735879,52.717796328401164],[-127.442203140999,52.71789410625754],[-127.44194557776096,52.71798302516743],[-127.44168997652947,52.71807472615925],[-127.44143913333751,52.71817029576299],[-127.44118928365212,52.718268085484794],[-127.44094986241748,52.71837248090767],[-127.4407351795581,52.71849561838382],[-127.44053390557815,52.718631485724266],[-127.44001617818785,52.71859413690615],[-127.43974081042327,52.71865020668257],[-127.43946873903666,52.71872137237449],[-127.43919977499617,52.718802022685495],[-127.43893367720148,52.7188854349934],[-127.43867222430919,52.718969354565516],[-127.43841561952448,52.719059383604545],[-127.4381628715265,52.719153839463395],[-127.43791967379562,52.71925658897364],[-127.43769076206509,52.71937037190089],[-127.43740210873047,52.71941763169212],[-127.43714814556036,52.719337799633706],[-127.43689996804096,52.71923716326713],[-127.43665256034876,52.719132024239016],[-127.4363972335186,52.719039321060585],[-127.43613473713422,52.71895398683858],[-127.43586608059859,52.71887825101388],[-127.43558868679145,52.718818879700976],[-127.43530161321637,52.71877476345529],[-127.43501191706913,52.71873515341252],[-127.43472561380557,52.71868654259684],[-127.43444284535451,52.7186322741585],[-127.43415751526614,52.718584770978744],[-127.43386634734907,52.71855695042479],[-127.43357021523471,52.71854655988972],[-127.43327329942979,52.718540670895834],[-127.43297717165667,52.718530843761],[-127.4326809838078,52.71851877474989],[-127.43238393687248,52.71850895736391],[-127.43208801565204,52.71850528610089],[-127.43179431941853,52.71851224022198],[-127.43150425853992,52.718544930594085],[-127.43121854188769,52.71859662298317],[-127.43093473464405,52.718649977214206],[-127.4306518458474,52.71870331055878],[-127.43037000331228,52.718760002190784],[-127.4300930262254,52.718823350334354],[-127.42982282888838,52.71889559144509],[-127.42955845366792,52.71897559839179],[-127.42929701927264,52.719060617503025],[-127.42903848416961,52.71914896342427],[-127.42878281089708,52.7192395157004],[-127.42852809342362,52.71933117667031],[-127.4282753222953,52.719425620137486],[-127.42802541664919,52.719522825937865],[-127.4277821736339,52.71962498965273],[-127.42754372118257,52.719731587129324],[-127.42731002528733,52.719842044894165],[-127.4270791762133,52.719954709336626],[-127.42684931614339,52.720069038160474],[-127.42661947367633,52.720183931243234],[-127.4263905269376,52.72029769201223],[-127.42615967298411,52.72041035460798],[-127.42592596980869,52.72052080956095],[-127.42569029958298,52.72062792518701],[-127.4254450791794,52.720726754083906],[-127.42516340274878,52.7207890265139],[-127.42487319090569,52.720817783237315],[-127.42457964537674,52.72082975690573],[-127.42430562497866,52.7208992246263],[-127.42403454501964,52.72097370459387],[-127.42376439815591,52.721048163607406],[-127.42350098871975,52.72112983059861],[-127.42325956112913,52.721231406521824],[-127.42304393473155,52.72135620787755],[-127.42283395802774,52.72148318202395],[-127.42262774750517,52.7216123518711],[-127.42242248886687,52.72174207471443],[-127.42221342794987,52.72186903654723],[-127.42200533739498,52.72199710712488],[-127.42180855878028,52.72213120058406],[-127.42162971502118,52.722274608330636],[-127.42144049485432,52.72241253708903],[-127.42122669264477,52.72253675674452],[-127.4209939179534,52.72264774611491],[-127.42076397148573,52.72276038656101],[-127.42054072836844,52.7228796707747],[-127.4203849099779,52.72301831347571],[-127.42036582684881,52.72319789286213],[-127.42017824803114,52.723329638890604],[-127.41996164531957,52.723453325074026],[-127.41973380606294,52.723573784272205],[-127.41951349290842,52.723697514554964],[-127.41930821452678,52.72382722279589],[-127.41910196362575,52.723955830478246],[-127.4188680926415,52.72406234494779],[-127.41889154238068,52.72426606891905],[-127.41891419343408,52.724445707171604],[-127.4189257019367,52.72462491544862],[-127.41888945756752,52.724790130227895],[-127.41868138361376,52.72491987105646],[-127.4184267964478,52.72501711207158],[-127.41815986721994,52.725105534576514],[-127.41789447896805,52.72518497042071],[-127.41762231098332,52.72525552033037],[-127.41734727580348,52.72532330646909],[-127.4170741900129,52.72539442216111],[-127.41680859011825,52.72546713251376],[-127.41657657790772,52.72557418459071],[-127.41646640650255,52.725748138946926],[-127.41646945794346,52.725924086702086],[-127.41656152688397,52.726100078774074],[-127.41656287308871,52.7262805307987],[-127.41650959066695,52.72646388532954],[-127.41637648139877,52.726617384320896],[-127.4161700559873,52.72674093981538],[-127.41592794157539,52.726851475319314],[-127.41568677877429,52.72696255477415],[-127.41546351440576,52.72708182879642],[-127.41523933300239,52.727201678392724],[-127.41500359921828,52.72730877203604],[-127.41473133883797,52.727377074184496],[-127.4144436147128,52.72742650679493],[-127.41425515710173,52.72756105094819],[-127.41417267209023,52.72773130568599],[-127.41412846313466,52.72790894466594],[-127.41408983464721,52.72808707220794],[-127.41404751618315,52.72826580920198],[-127.41400145198591,52.728443470454714],[-127.41392087031198,52.72861482282385],[-127.41380017502638,52.72877937780634],[-127.41372154237179,52.72895406921245],[-127.41362697064076,52.729123348309564],[-127.41348291719245,52.72928257121654],[-127.41329175235238,52.72941995296455],[-127.41303388940023,52.72950320506638],[-127.41276479291783,52.7295837942622],[-127.41249800850181,52.72967780595012],[-127.412258508757,52.729783818140305],[-127.4121222300452,52.72992614069171],[-127.41214147982454,52.7301158995552],[-127.41223987094253,52.7302867785663],[-127.41225038151347,52.73046487759585],[-127.4122387111616,52.73064492091541],[-127.41221498081089,52.730825118573826],[-127.41217821464897,52.73100378750066],[-127.41212271521177,52.73114905474257],[-127.4121146787406,52.731326812320475],[-127.41209750411986,52.731509172665],[-127.4120504899487,52.73168627913642],[-127.41194108965811,52.73185630009916],[-127.4117658251844,52.7319979619642],[-127.41147450112193,52.732023890880654],[-127.41117549262147,52.73201348638406],[-127.41087918062031,52.73200024187768],[-127.41058274310679,52.73198363539056],[-127.41028974113578,52.73198659832096],[-127.41000067341955,52.73202427048658],[-127.40971085497206,52.73206754657206],[-127.40941769346934,52.73209405740514],[-127.40912302090898,52.73210264207937],[-127.4088274627359,52.73208434368618],[-127.408532052121,52.73207051746542],[-127.4082359618977,52.73206398909759],[-127.40793993069938,52.73205970110118],[-127.40764400673467,52.732058217837356],[-127.4073482337194,52.7320617716415],[-127.40705172521395,52.732070938101444],[-127.40675626172514,52.732083454000836],[-127.40646078322875,52.73209596933306],[-127.40616541134222,52.732111280438126],[-127.40587215511918,52.732134976738465],[-127.40558721449973,52.73218547443935],[-127.40530322977517,52.732237080882996],[-127.40501055727005,52.7322501238165],[-127.40471448830695,52.73224470719911],[-127.40441641420111,52.73223426528269],[-127.4041174609782,52.73222551899984],[-127.40381277951435,52.73221180097863],[-127.40355139372834,52.73227377650921],[-127.4033175491356,52.73238362971601],[-127.40309064547982,52.73250740621695],[-127.4028559518757,52.732619501481736],[-127.40259127620845,52.73269440917525],[-127.40229063330125,52.732719305783995],[-127.4019975504018,52.73269142828853],[-127.40170834542684,52.7326125066654],[-127.40144506346704,52.73261677764145],[-127.40121396354755,52.732725463822696],[-127.40098447987175,52.73285543647818],[-127.40072670421047,52.73294314336476],[-127.40044773732764,52.73300645193192],[-127.4001598487906,52.73305248785569],[-127.40000092255809,52.7330712009566],[-127.39986784746169,52.73308624219277],[-127.39957171510294,52.73310715019475],[-127.39927503286958,52.733111259322],[-127.39898632122238,52.733075475705185],[-127.39870045754466,52.7330133114989],[-127.39841271803556,52.73300722348062],[-127.39812438776305,52.733039808727185],[-127.39783556189407,52.733085850093225],[-127.3975468966915,52.733136372461644],[-127.3972580510996,52.73318184768254],[-127.39696779118876,52.73321221125075],[-127.39667773867461,52.73319213068768],[-127.3963851003912,52.73314966204033],[-127.39608507634095,52.733136424336195],[-127.39577681004094,52.733126646800265],[-127.39547829105915,52.733131324162834],[-127.39520851997717,52.7331642460469],[-127.39505709815842,52.733328016277],[-127.39501553837552,52.7335039379323],[-127.39500568918888,52.73368564245122],[-127.39498652771434,52.73386577199057],[-127.39491987003724,52.73404030655395],[-127.39482433298325,52.73421126621263],[-127.39473811843477,52.734383226715266],[-127.3946241292762,52.734642392629105],[-127.39439322385044,52.73475835294137],[-127.39416984130499,52.73487703],[-127.39394833337676,52.73499679624324],[-127.39373251228939,52.7351198660768],[-127.39352708281245,52.73524897238481],[-127.39332829948599,52.735383038859425],[-127.39313803191845,52.73552205226765],[-127.39295716346054,52.73566488123995],[-127.39278848303407,52.73581148369558],[-127.3926761515709,52.735979834164056],[-127.39265876079742,52.73615770005683],[-127.39268505350515,52.736338418325374],[-127.39271412052115,52.73651909462123],[-127.39270972984635,52.73669737085081],[-127.3926532875389,52.73687290310087],[-127.39256803363041,52.737046535956885],[-127.3924781319487,52.73721966799518],[-127.39240677848578,52.73739313546206],[-127.3924273609346,52.737569428914355],[-127.3924982000392,52.73775073851578],[-127.39256635634597,52.737934877726296],[-127.39246906025579,52.73808063087493],[-127.39222874797105,52.73819333545498],[-127.39197818663713,52.738304475448],[-127.39172191459143,52.738411208068406],[-127.39148815160584,52.73852551013402],[-127.39136130424306,52.73867554086207],[-127.39129726782512,52.738845557796765],[-127.39126136374018,52.73902532874432],[-127.39123860253935,52.739209427205935],[-127.39121117871137,52.73939301606795],[-127.39116318945626,52.73957180950704],[-127.39108537925375,52.73974647335577],[-127.39096261875623,52.739908219944155],[-127.3907760875453,52.740048870248266],[-127.39060929508027,52.74019768823969],[-127.39047536686219,52.74035844587629],[-127.39034991859347,52.74052302137789],[-127.39022348008791,52.74068593159587],[-127.39008483182353,52.74084450289951],[-127.3899188777273,52.74099051204703],[-127.3897049056522,52.74111466347491],[-127.389481534876,52.741235572208325],[-127.38925654105994,52.74136321617595],[-127.3891811488505,52.74152720567454],[-127.38916745080022,52.74170502641235],[-127.38917055823471,52.74188657551766],[-127.38917651002257,52.742069776713144],[-127.3891740680168,52.74225139156896],[-127.38917651035734,52.74244079479732],[-127.38899209990244,52.742561796442544],[-127.38872226515073,52.742651860116055],[-127.3884496364314,52.74274140029053],[-127.3882409646066,52.742858204575434],[-127.38812929526641,52.74301926025554],[-127.38807687766204,52.74320482965775],[-127.38804567362212,52.743386785016256],[-127.38803107178884,52.743565736944085],[-127.38802949042297,52.74374566447709],[-127.3880316367936,52.74392610379664],[-127.38802726541306,52.74410605536885],[-127.38800526210922,52.7442856598117],[-127.38795815244617,52.74446331981578],[-127.38789056940284,52.74463954540632],[-127.38781464591223,52.744815860744964],[-127.3877115241904,52.744982974959534],[-127.38755491122289,52.745131667209186],[-127.38734759644281,52.74526190425496],[-127.38714312806026,52.745394349008365],[-127.3869565420372,52.7455344280045],[-127.38677088967681,52.74567449562684],[-127.38658713084858,52.745816226351025],[-127.38640711354932,52.74595846845724],[-127.38623181568119,52.746103452188116],[-127.38608099458531,52.746259364043645],[-127.38594047593968,52.7464185075498],[-127.38573869689918,52.74654812006989],[-127.385500225413,52.746661908572094],[-127.38522051423057,52.74670612357977],[-127.3849503465564,52.74675808035963],[-127.38465544974605,52.746791829447176],[-127.38435728749997,52.746810479787634],[-127.3840720423345,52.74685532233153],[-127.38378899936222,52.74691134712232],[-127.3835068543053,52.746966239722404],[-127.38321787924774,52.747010568231964],[-127.38292099734475,52.747040408728125],[-127.38263982474146,52.7470106646498],[-127.38229045287059,52.74690885725036],[-127.38203833673025,52.74700318832267],[-127.38179216113744,52.74710864876502],[-127.38154299542171,52.74720798348412],[-127.38128493061839,52.74729060913309],[-127.38100805532683,52.74733646636663],[-127.38070844308237,52.74733887596004],[-127.38040591440216,52.747337400496136],[-127.38011015990408,52.747344802655974],[-127.37981445659375,52.747353333326544],[-127.37951895495463,52.74736857727102],[-127.37922555804354,52.7473910859885],[-127.3789322364724,52.747416399798496],[-127.37863892910501,52.74744170373568],[-127.37834459630245,52.747464221245686],[-127.37804858874928,52.747492362172906],[-127.37775238236283,52.74751434425656],[-127.37745997522067,52.7475104914229],[-127.37717220992143,52.74747744905963],[-127.37688671469883,52.74742867785375],[-127.37660194193518,52.7473737370445],[-127.37631543794309,52.74732217856124],[-127.37602643320541,52.747279615890704],[-127.37572647928525,52.74724278551767],[-127.37544034223954,52.747260715948386],[-127.37516380338839,52.74731720831806],[-127.37488947884677,52.7473848740013],[-127.3746173148053,52.747462045753366],[-127.37434995697085,52.74754420898922],[-127.37408636504668,52.74762856025758],[-127.3738246960989,52.74771457419365],[-127.37356504627515,52.74780616832],[-127.37331493728699,52.74790549628435],[-127.37308184964802,52.7480152772087],[-127.37288933501624,52.748145870295374],[-127.37276115041384,52.74831494963957],[-127.3726016980881,52.74846365408335],[-127.37236950427305,52.74857229316645],[-127.37210988208375,52.74866500448638],[-127.37183487590501,52.74874052598244],[-127.37155544268089,52.748794236787326],[-127.3712581778955,52.74881228708239],[-127.37095491945344,52.74881751201839],[-127.37066343501506,52.748842218517616],[-127.37039183313928,52.7489087296401],[-127.37013711891974,52.74900978129189],[-127.36992027732572,52.74913449326554],[-127.36975229531015,52.74927825379065],[-127.36961831393872,52.74944066283697],[-127.3695676095394,52.74962452526106],[-127.3694789975703,52.74978416209564],[-127.36938901151011,52.74995839541563],[-127.36930956131984,52.75014314949338],[-127.36920893220442,52.7503040473427],[-127.3689673008176,52.75040831501067],[-127.36872584732986,52.7505181755553],[-127.36854195392867,52.75065819234073],[-127.3684229486913,52.7508249174029],[-127.36827287313982,52.750977424560894],[-127.36805408924167,52.75109991364098],[-127.36780960643189,52.75120252625246],[-127.36753365910177,52.751278604194475],[-127.36730415594037,52.75138496850793],[-127.36712868161605,52.751527126449034],[-127.36697217001301,52.7516819486387],[-127.3668147044828,52.751836225755625],[-127.36663464993562,52.75198012210325],[-127.36643950462994,52.752116903848155],[-127.36626031397275,52.7522591036807],[-127.36615894528899,52.752426176472],[-127.36613780184668,52.752606885553035],[-127.36614830169228,52.75279002349347],[-127.36614385534648,52.75297053790056],[-127.36607782421726,52.75314000530457],[-127.36592319397836,52.75329592477191],[-127.365733749413,52.75343712222804],[-127.36549504310496,52.75354638763004],[-127.36529788857204,52.75367870707671],[-127.365142154691,52.75382904280269],[-127.36506868192431,52.75399858718975],[-127.36498140878722,52.75417166384601],[-127.3649872225677,52.754353735337624],[-127.36498467710402,52.7545353482014],[-127.36493557256415,52.75471246376441],[-127.3648659660874,52.75488644640805],[-127.36478706774096,52.75506054614752],[-127.36470723046605,52.755234091813406],[-127.36463484977054,52.75540867146566],[-127.36456349286851,52.75558603685126],[-127.36448574170768,52.755766848220134],[-127.36443574889279,52.75594508564563],[-127.36444581626435,52.75611534262657],[-127.36456340460342,52.756280985238405],[-127.36476202689963,52.756427194149246],[-127.36499373055874,52.75653377762519],[-127.36526330777414,52.756605737077585],[-127.36554926251569,52.75666741717289],[-127.36582168590927,52.756741028004434],[-127.36607344551263,52.756836166844714],[-127.36631981931001,52.75693698131261],[-127.36657156340823,52.75703156332012],[-127.36682601269824,52.757123871483614],[-127.3670804779306,52.75721617891606],[-127.36733491135388,52.75730792124954],[-127.36759026323462,52.75739909636411],[-127.36784925539943,52.75748798668362],[-127.36811464257363,52.757573439148544],[-127.36837273760266,52.75766345968021],[-127.36860988014249,52.75776549804744],[-127.36876874532364,52.75791551814664],[-127.36891309104307,52.75807580450621],[-127.36907757887141,52.75822744432512],[-127.36931106894315,52.75833120079266],[-127.3695835990281,52.758407599476946],[-127.36984348586482,52.758495354115254],[-127.37009974944486,52.75858539230051],[-127.37035605300044,52.75867710630591],[-127.37060873363097,52.75877111285271],[-127.37085597745022,52.75886965700855],[-127.37109419344215,52.75897559646816],[-127.37131614557958,52.75909574123409],[-127.371500136319,52.75924714953673],[-127.3716693592885,52.759372385138214],[-127.37187807116207,52.759513415625875],[-127.37204347755056,52.75966448461932],[-127.37222071965392,52.759808124607865],[-127.37238491993517,52.75995023121164],[-127.37264631499468,52.76005534022533],[-127.3728764004978,52.7601680966099],[-127.37311106157414,52.760278557187206],[-127.3733475464497,52.76038843100911],[-127.37357949117641,52.76050116424964],[-127.3738041588414,52.76061846585028],[-127.3740197480401,52.760742042773714],[-127.37422715769544,52.76087075468138],[-127.37442725731121,52.76100347053849],[-127.37462096119883,52.76113906774478],[-127.37479639850432,52.76128384591855],[-127.37495996311445,52.76143436749766],[-127.37513448571343,52.76157972081831],[-127.37531543923963,52.76172274769998],[-127.37547805422916,52.761872723737554],[-127.37561315994907,52.76203310133036],[-127.37567739060053,52.762211688658795],[-127.37576625117046,52.76237710123405],[-127.37599172870566,52.76249046161047],[-127.37623655537305,52.762599119847394],[-127.37642295778,52.76273816244753],[-127.37658749019127,52.76288979126265],[-127.37675382517435,52.763039712870416],[-127.37694293204845,52.76317592516494],[-127.37716847122,52.76329096838627],[-127.37742133826478,52.76338943282781],[-127.37768215272497,52.763475482607696],[-127.37795891070724,52.76353779693804],[-127.37824725476293,52.763585411918456],[-127.37853820946069,52.76362738212278],[-127.37882107476058,52.76367730189197],[-127.37908216481682,52.76377174748136],[-127.37924465588931,52.7639172273042],[-127.37934654188147,52.764083039896406],[-127.37943194398828,52.764255771638574],[-127.37951187010293,52.764431374430636],[-127.37959361617152,52.76460582589069],[-127.37969010078903,52.764776750154375],[-127.37980035204592,52.764943019812364],[-127.3799124930185,52.76510983203972],[-127.38001539551159,52.76527843870517],[-127.38011372088998,52.765448775990585],[-127.38018525393588,52.765622791243665],[-127.38023181706335,52.7657998981296],[-127.38027005846256,52.76597823280214],[-127.38030183017335,52.76615719957227],[-127.38032898794675,52.76633677659514],[-127.38035333681617,52.76651583070829],[-127.38037028074454,52.766695536906205],[-127.380377009904,52.76687535438301],[-127.38037818667027,52.767055246179],[-127.3803802836684,52.76723511815218],[-127.38036843622653,52.76741459832599],[-127.38034080313088,52.76759370837157],[-127.38031037514698,52.76777228636837],[-127.38027436435854,52.76795093005814],[-127.38023182882256,52.76812852964505],[-127.38017813919528,52.76830569557291],[-127.38011979878746,52.768482360240164],[-127.3800660903033,52.7686589703313],[-127.38002542737374,52.76883711262294],[-127.37999498233921,52.76901569056679],[-127.37996920230894,52.76919476952833],[-127.37994996182937,52.76937490133804],[-127.37993811198713,52.769554381216125],[-127.37993555678624,52.76973375167966],[-127.37994507599853,52.76991353596962],[-127.37996385731478,52.770092655274034],[-127.37998636902944,52.770272295573065],[-127.38000794521497,52.770451937892645],[-127.38002211264921,52.77063167635605],[-127.3800204783251,52.77081103585955],[-127.37999840938492,52.77099007092661],[-127.37997635849722,52.77116967067556],[-127.3799738067493,52.771349605831475],[-127.38004042720839,52.7716301616496],[-127.3799794349089,52.771811340516656],[-127.38000726222775,52.771983062963635],[-127.38014612936462,52.77214339954106],[-127.38027766352373,52.77230661997528],[-127.38035290266913,52.77248002593804],[-127.38040879097716,52.77265815211807],[-127.3804442804616,52.77283707436273],[-127.3804407372609,52.77301477030891],[-127.38041519212067,52.77320113629787],[-127.3803594418043,52.77337216558411],[-127.38033924734897,52.7735517432705],[-127.38032554183147,52.773731244545914],[-127.3803267547666,52.773912255981436],[-127.3803586953587,52.774096259339366],[-127.3803626308418,52.77427555288927],[-127.38028072961242,52.77444185038469],[-127.38014188049736,52.77459872123808],[-127.37997783466844,52.774751413894876],[-127.37981102873434,52.77490469472412],[-127.37966662599547,52.77506219519733],[-127.37956527357969,52.7752298328145],[-127.37950229142955,52.775407115759116],[-127.37946538631267,52.77558688958424],[-127.37946463398201,52.775765117219386],[-127.37950295006823,52.775945126990315],[-127.37954584528141,52.77612339706945],[-127.37960081737847,52.776302089956914],[-127.37964093666513,52.77648040159305],[-127.37964202309526,52.77665804258124],[-127.3796107045828,52.77683831549317],[-127.37954961243497,52.77701668792098],[-127.37945391441778,52.77718706531233],[-127.37932440753013,52.777346075592106],[-127.37917152201011,52.77749974732554],[-127.37900645028179,52.77764964356536],[-127.3788357573952,52.7777984847651],[-127.37866976596447,52.777948956206785],[-127.37851689415392,52.77810319173102],[-127.37838463976337,52.77826334500404],[-127.37827397500965,52.77843053450718],[-127.37817079228549,52.7785998776913],[-127.37806385678262,52.77876758803276],[-127.37793911464392,52.77893045907345],[-127.37779373449716,52.779086847199046],[-127.37763615270511,52.77923945092188],[-127.37747294347628,52.7793898877301],[-127.37730973616364,52.77954088021164],[-127.37715308660037,52.77969347225208],[-127.37700955739992,52.779849837528204],[-127.37689416243973,52.78001483924607],[-127.37679940401928,52.7801863237717],[-127.37669995714334,52.78035618640965],[-127.37657048441193,52.78051686950394],[-127.37640542800132,52.780667882231654],[-127.37625626911634,52.780822626700555],[-127.37614741312082,52.78098923656602],[-127.37605448782931,52.78116013389314],[-127.3759643903243,52.78133212777749],[-127.37586302974299,52.781500882125854],[-127.37575326755963,52.78166805809431],[-127.3756369601942,52.78183363388453],[-127.37551034333843,52.78199652379108],[-127.37536963170969,52.78215453043599],[-127.3752157760303,52.78230765158831],[-127.37505253170605,52.78245808490093],[-127.37488365905186,52.78260633323723],[-127.3747109854541,52.7827523930879],[-127.3745232746709,52.78289245963795],[-127.3743374043637,52.78303250429424],[-127.3741722582547,52.78318127274452],[-127.37403436610012,52.78334036539358],[-127.37389553749071,52.78349947778834],[-127.37374174374912,52.78365483775902],[-127.37357383687228,52.78380475845447],[-127.37335189160564,52.783920564823546],[-127.37306919797263,52.783995045015665],[-127.37304828185928,52.78421106081339],[-127.37322189778939,52.784354175741605],[-127.37342758422365,52.78448402942506],[-127.37365430628269,52.784603548613404],[-127.37386363340484,52.78473056122488],[-127.37402510651363,52.78487157547477],[-127.37411797341463,52.78504478643807],[-127.37417296701925,52.78522403639267],[-127.37420099629804,52.78540249032505],[-127.37421511123829,52.785581663202905],[-127.37421905804216,52.78576207605394],[-127.37421651390608,52.78594256493168],[-127.37421022334033,52.78612253276526],[-127.37420115538468,52.7863025420828],[-127.37417447392075,52.786483313677046],[-127.37411880729856,52.786658255572505],[-127.37398474345824,52.786821230324264],[-127.37376377362271,52.7869387114261],[-127.37351540382696,52.78704193275388],[-127.37327553996118,52.78714954636824],[-127.37308005400875,52.78727961319206],[-127.3729393520035,52.78743873681779],[-127.37282685743398,52.787608182793136],[-127.37274136782315,52.78778011923792],[-127.37266710804253,52.787954721851335],[-127.37253761497001,52.78811595543552],[-127.37237339990769,52.78826583052414],[-127.3721922387171,52.78840862247654],[-127.37201013720299,52.788550860206215],[-127.37184871425062,52.7887012577662],[-127.37170515350387,52.78885818033381],[-127.37144096195632,52.789134194498594],[-127.37129449438602,52.78928722297475],[-127.37116501022189,52.78944901960561],[-127.37105243138639,52.7896162227782],[-127.3709417296331,52.789784524736945],[-127.37082255283728,52.789949007075414],[-127.3706817227775,52.79010421048687],[-127.37046932675518,52.79022942169487],[-127.37025416971292,52.79035522965796],[-127.37006731409429,52.790494721886816],[-127.36988146471505,52.79063643479178],[-127.36970309899246,52.79078031067977],[-127.36953509589628,52.790928539757374],[-127.36938304461079,52.79108163070426],[-127.36924698413777,52.79124125993119],[-127.36912595764102,52.791406317802064],[-127.369015225844,52.791574062009154],[-127.36891289246239,52.791742819972754],[-127.36883669947257,52.791915765203306],[-127.36880811674472,52.7920959918824],[-127.36882967504079,52.79227619839639],[-127.36877396116752,52.792450581357954],[-127.36853203629968,52.792553160107154],[-127.36825737512365,52.79261969678376],[-127.36797596957504,52.79267845648469],[-127.36769047590259,52.79272606355958],[-127.36739407592196,52.79275193586531],[-127.36710050435568,52.79277889531389],[-127.36681078621821,52.79283943482036],[-127.36661037143573,52.792962257224126],[-127.36660563603616,52.793133803387065],[-127.36665063881375,52.79332102701874],[-127.36665181213685,52.7935025920154],[-127.3665868562794,52.793678758139244],[-127.36649388319725,52.793850211178395],[-127.36636155303539,52.79401091394839],[-127.36620290062211,52.794161835376855],[-127.36603674719444,52.794310602193676],[-127.36586590669586,52.79445830246103],[-127.36569410808022,52.79460489275019],[-127.36552326230645,52.79475203658032],[-127.36535616824742,52.794900813270324],[-127.36519002676127,52.79505013455365],[-127.36502294523197,52.79519891056751],[-127.36485301589109,52.79534604264777],[-127.36467931731794,52.79549153253373],[-127.3644999565821,52.79563428137063],[-127.36431686265634,52.79577651737526],[-127.36413001747154,52.79591767582991],[-127.36393558163725,52.79605388284873],[-127.36373167969269,52.796184586318226],[-127.3635144725641,52.79630592127233],[-127.36327923844865,52.79641570080048],[-127.36302891014866,52.7965178002592],[-127.3627728515917,52.796615491279454],[-127.36251960276326,52.79671370503403],[-127.36227581730445,52.796817412603254],[-127.36204996709137,52.79692987825025],[-127.36185242296106,52.79705658595747],[-127.36170113629946,52.79720629433495],[-127.361587599668,52.797374618881165],[-127.36149010579848,52.797550603086336],[-127.36138318508267,52.797722769100666],[-127.36124608094238,52.797880158174536],[-127.361061869954,52.798017362269555],[-127.3608428421128,52.79814038985126],[-127.36060019468005,52.79825080560586],[-127.36034878839027,52.798348993033805],[-127.36008763083692,52.7984327218864],[-127.3598073646742,52.79849985885094],[-127.35952320478712,52.79856143599996],[-127.35924666935706,52.798629093279544],[-127.35899109736238,52.79871331086585],[-127.35877460684073,52.798829023993385],[-127.35859627332124,52.798975678666096],[-127.35843966411822,52.79913385492417],[-127.35828480382428,52.79928863918349],[-127.35813657829138,52.79944783877499],[-127.35802482534703,52.79961445299462],[-127.35796810093058,52.79978772021805],[-127.35793566662362,52.79996575457905],[-127.35793211740453,52.79999997705131],[-127.35791909759935,52.800145838029486],[-127.35791466202929,52.80032746679183],[-127.35791576587162,52.800508475484605],[-127.35792056333561,52.800688311595806],[-127.35793461502219,52.8008674846475],[-127.35795519294224,52.80104714705688],[-127.35798040390169,52.80122619091751],[-127.35800561788825,52.80140579065968],[-127.35802897189683,52.801584855964286],[-127.35805232920272,52.80176448611458],[-127.35807754099291,52.801943529871075],[-127.358100880738,52.802122595270916],[-127.35811960227208,52.80230227003946],[-127.35814488593972,52.802483554587845],[-127.35816923368189,52.802664849944605],[-127.35818144759621,52.80284460893471],[-127.35817129799145,52.80302182015006],[-127.35810052446813,52.803191887078654],[-127.35795419545991,52.803352740708384],[-127.35782183934543,52.803514553289254],[-127.35769509025148,52.80367742166429],[-127.35755705285794,52.803835937085346],[-127.3574040121235,52.803990142486924],[-127.35726130073654,52.804147590724874],[-127.357146720743,52.80431368017847],[-127.3570592767684,52.804485615845415],[-127.35699051428773,52.80466070689278],[-127.35690586267731,52.80483261010093],[-127.35680440688793,52.805002474792474],[-127.35673746417169,52.805176414759934],[-127.35672092396106,52.80535762682968],[-127.35667262701733,52.805533592827224],[-127.35657392679522,52.80570230451191],[-127.35645470348352,52.80586844672011],[-127.35632233388876,52.80603025734644],[-127.35617301363334,52.8061849737195],[-127.35599644480176,52.80632992610923],[-127.3558367914067,52.806481398866936],[-127.35570829300602,52.806648212238706],[-127.35555790469525,52.80679845668388],[-127.35528906016565,52.80687610233393],[-127.35487186319635,52.806905013315394],[-127.35451101394597,52.806806626216655],[-127.35385145820167,52.80681087449924],[-127.35323978059307,52.80685995661054],[-127.35287392732808,52.80692582109715],[-127.35225193133685,52.80697166341709],[-127.35152018282761,52.80686744387379],[-127.35128453217234,52.80684942644668],[-127.3509365037123,52.80683269328794],[-127.35063100905796,52.80686815809411],[-127.35035171519327,52.8069094807619],[-127.35004009456325,52.80689793021266],[-127.34974422120725,52.80688508584799],[-127.3493805885298,52.80684498989001],[-127.34915091795244,52.806868926479034],[-127.34885202098923,52.80684882468253],[-127.34857351931433,52.806767962357135],[-127.34828421067172,52.80672757380726],[-127.34799072886106,52.80670236831688],[-127.34769314106536,52.806694012891214],[-127.34738180789994,52.806662285845775],[-127.34709754360877,52.80660502386639],[-127.34684293091647,52.8065451792219],[-127.34655100534005,52.806509855762314],[-127.34625759670976,52.80648688680443],[-127.34595896557998,52.8065043182948],[-127.34566654318391,52.806512155170935],[-127.34524151879317,52.806381406433935],[-127.3450293442267,52.80640009510863],[-127.34473899552026,52.806385489115485],[-127.34459711787619,52.806305849422316],[-127.34449298510182,52.80612658727367],[-127.34450181216668,52.80593482249007],[-127.34437657198441,52.805793354668275],[-127.3441300739358,52.80569585861493],[-127.34385778311525,52.8056053914308],[-127.34362202729399,52.80549488612885],[-127.34343629013146,52.8053501825439],[-127.34336315612272,52.805181207981434],[-127.34334444239845,52.80499984606026],[-127.34322032608102,52.804834826477574],[-127.34301926986055,52.80470486849505],[-127.3427862117847,52.80459152407156],[-127.34254586322618,52.80448219002542],[-127.34230919857313,52.8043722574172],[-127.34213119735186,52.80423643000365],[-127.34203560733694,52.80406267210795],[-127.34189957316772,52.80390226181298],[-127.3417359976516,52.80375281874003],[-127.34154036517758,52.8036177569263],[-127.34130903718942,52.803470208657345],[-127.34104180443748,52.803391997507575],[-127.34077814971738,52.803309826414115],[-127.34058529817989,52.80317416634843],[-127.34056569615935,52.80299393488313],[-127.34061868989167,52.80281735739093],[-127.3407351904529,52.80265182756593],[-127.34085920474689,52.80248844445496],[-127.34092058275934,52.80231289178193],[-127.34097354186652,52.8021357584833],[-127.34110786759112,52.801975619713374],[-127.3411543143246,52.8017979958077],[-127.34116539999042,52.80161853434905],[-127.34116254521632,52.80143867626712],[-127.34114295901131,52.801259000433944],[-127.34109835896044,52.801081296220886],[-127.3410241471999,52.80090729293237],[-127.34093608375406,52.80073568956877],[-127.34087851892943,52.8005592542333],[-127.34086174547991,52.800380111030655],[-127.34088583326383,52.80020050085987],[-127.34095000415493,52.80002548086089],[-127.34096592815767,52.80000007541473],[-127.3410542897115,52.799855597575025],[-127.34110462490882,52.79968353319682],[-127.34105627689054,52.7995047508018],[-127.34102540368238,52.79923161775856],[-127.34100211966148,52.799051992893226],[-127.34099183928247,52.79887277532459],[-127.34101221115557,52.79869320740585],[-127.34104655484039,52.79851460061339],[-127.34108274062123,52.79833597273185],[-127.34112453011105,52.7981578367015],[-127.34117288277453,52.79798187626584],[-127.34139366631868,52.79773556402766],[-127.34135269547367,52.79755502041337],[-127.34131365227898,52.797376687454424],[-127.34126072597253,52.79720019892708],[-127.34118652029437,52.797026195303296],[-127.3410611799188,52.79685053441994],[-127.3408866358971,52.79667600064815],[-127.34077533840428,52.79653380432677],[-127.34068583220147,52.79637510213577],[-127.34057045647579,52.79619148090873],[-127.34035674806822,52.796071194435335],[-127.34016285391033,52.79593106195452],[-127.33990769921536,52.79585158959061],[-127.33963183141418,52.795793093324754],[-127.33934786069833,52.79574253484105],[-127.33905757380074,52.795697651995475],[-127.33876550348327,52.79565559538608],[-127.33847343089892,52.7956129731746],[-127.33818590636055,52.795567491768594],[-127.33790011683821,52.79551807140164],[-127.33761344477179,52.7954703461584],[-127.33732515901092,52.79542991962795],[-127.33703332010471,52.795395137114795],[-127.33674057794079,52.79536092011138],[-127.33644613706032,52.795331770020425],[-127.33615195964204,52.795311027017775],[-127.3358572466327,52.79530260971023],[-127.33555339114585,52.79529934402581],[-127.33524327109141,52.79530343882902],[-127.33494204049616,52.79532423537189],[-127.33466298203273,52.79537112324596],[-127.33441845404808,52.79545292879728],[-127.33419814659622,52.79556695391573],[-127.3339971067533,52.795702620471474],[-127.33380662240283,52.79584937509784],[-127.33362080716277,52.79599719715642],[-127.3334376088622,52.79613938492979],[-127.33327983818722,52.796292491870425],[-127.33315489173732,52.79645587809439],[-127.33305809904458,52.796628466962396],[-127.33297540184876,52.79680649979678],[-127.33289645053999,52.796985045927286],[-127.33280804051783,52.79715866011547],[-127.33269798230606,52.797322997427464],[-127.33255492241769,52.79747145272826],[-127.33236386588604,52.797600277715794],[-127.33213040153184,52.79770996464197],[-127.33187053064064,52.797806509701054],[-127.33159925550399,52.797895328734086],[-127.33133441739126,52.7979818413641],[-127.33107325747017,52.79806718184284],[-127.33080640271677,52.79814866785462],[-127.33053662886698,52.798225702980304],[-127.33026199407861,52.7982960675346],[-127.32998432080734,52.79835861998588],[-127.3297034496033,52.79840775791637],[-127.3294085481175,52.79842399380748],[-127.32910769076207,52.798427958204705],[-127.32881389929561,52.798449784227294],[-127.328530302552,52.79850119187397],[-127.32825172149738,52.79856430638899],[-127.32797020449891,52.798622414161215],[-127.32768671010342,52.79867718110168],[-127.32740317773434,52.79873027099957],[-127.3271166596707,52.79877722486918],[-127.32682692987285,52.79881076426966],[-127.32653105095613,52.798825318191],[-127.32623423577348,52.798839881946854],[-127.32594160447076,52.79886952452151],[-127.32565103901408,52.79890587702509],[-127.32535950194195,52.798941109971715],[-127.32506673054387,52.798966277539655],[-127.32477071090833,52.79897634523397],[-127.32447337278631,52.798974097831994],[-127.32417662569028,52.79896119055169],[-127.32388411282574,52.7989347936452],[-127.32359309279913,52.798896605879975],[-127.32330387834405,52.79885671129245],[-127.32301367407216,52.79881459444712],[-127.32273501431325,52.79875552519381],[-127.32247954567033,52.798665375308964],[-127.32222577938562,52.79857016639921],[-127.32194889299333,52.79850827770193],[-127.32167016734853,52.79844696501216],[-127.32140565924156,52.79836476051333],[-127.32113051143241,52.79829893187266],[-127.32084041939613,52.798260726892366],[-127.32054504818923,52.798231547325564],[-127.32026571954842,52.79818089056809],[-127.32003907488509,52.79806126928357],[-127.31978023044822,52.797981795055136],[-127.31948658064618,52.797948110131344],[-127.31919465267518,52.79791048666665],[-127.31892044696824,52.79784463333652],[-127.31865148781979,52.79776864182813],[-127.31838606854136,52.79768644083965],[-127.31812516472178,52.79760026111181],[-127.31786962641334,52.79750730448058],[-127.31763016441434,52.79739342676641],[-127.31738554685506,52.797293056517816],[-127.31711198964766,52.7972484876573],[-127.31681129505034,52.797257467039316],[-127.31650976564597,52.79726926159502],[-127.31621259511273,52.79727203080444],[-127.3159164321708,52.79727759453807],[-127.31562054303987,52.79729156522003],[-127.31533492546085,52.79733791532933],[-127.31506986795219,52.79741822431919],[-127.31480873086933,52.7975052137865],[-127.31454368871638,52.79758608628625],[-127.31427670198636,52.797664173378095],[-127.31400969690354,52.79774169515131],[-127.3137379346927,52.79781535112214],[-127.31346612222363,52.797887886175445],[-127.31321544244219,52.797982600791734],[-127.31297245126729,52.79808619550751],[-127.31273138282396,52.79819145392567],[-127.31248648023897,52.798293383242495],[-127.31223197809658,52.79838477593144],[-127.31196019386965,52.79845842792051],[-127.31168267968741,52.79852653914424],[-127.31141755645717,52.7986051636274],[-127.31117445416854,52.79870539322532],[-127.31094198595798,52.798818953511194],[-127.31072282701194,52.798942452153966],[-127.31051878286385,52.79907418332299],[-127.31033821906496,52.79921406263873],[-127.3101897119569,52.7993698402856],[-127.30996199793852,52.79963857652149],[-127.3100072828355,52.79981236517065],[-127.30995479300734,52.799978834662305],[-127.30991271019819,52.80000003542396],[-127.30972889363694,52.800095116603735],[-127.30947749703412,52.80019767670053],[-127.3092220066502,52.80028795274491],[-127.30895889703343,52.80037215311139],[-127.30869866554502,52.80045911837128],[-127.3084470926581,52.80055607398443],[-127.30820226926859,52.8006613555547],[-127.30799522485965,52.800786399429064],[-127.30783443207548,52.800935576766705],[-127.30757064546398,52.80124058549251],[-127.30727399064543,52.80123099683868],[-127.3069743222331,52.80124386661824],[-127.30668273679446,52.80127849736595],[-127.3064422645645,52.80137420407633],[-127.3062307490078,52.80150545455754],[-127.30599630919552,52.801616219908226],[-127.30574085449794,52.80170817344794],[-127.30546806512953,52.80178013533591],[-127.30519051900752,52.8018482310592],[-127.3049272548602,52.801927940499326],[-127.30469754817676,52.80204201301917],[-127.30452647951667,52.802189623013696],[-127.30441449328355,52.80235563009192],[-127.30433623118988,52.80253079372088],[-127.30427749819393,52.80270685206919],[-127.3042318504956,52.80288501555276],[-127.30418153407565,52.80306266598422],[-127.30411253984533,52.80323716145613],[-127.30402578890103,52.80340849169831],[-127.30393065177955,52.80357879420607],[-127.30383084337713,52.803748027682424],[-127.30372822325721,52.80391672738691],[-127.30362466641529,52.80408544634695],[-127.30352299809893,52.8042547001413],[-127.30342598232319,52.80442445807405],[-127.30334859951591,52.80459849012717],[-127.30326467068107,52.80477090907583],[-127.30315180258981,52.804938601095564],[-127.30303712986112,52.80510856364059],[-127.30290742239312,52.8052725239329],[-127.30274843555273,52.805421117501815],[-127.302547880081,52.80554719077198],[-127.30231519802369,52.80565569592742],[-127.30206269492369,52.80575432410802],[-127.30180645645304,52.80585188130231],[-127.3015615352283,52.80595547246613],[-127.30133750520513,52.806073402190435],[-127.30113053590165,52.80620290650979],[-127.30093583514135,52.80633844346738],[-127.30075435847199,52.80648112335866],[-127.30059830696102,52.806634720467294],[-127.30045539658322,52.806793219922085],[-127.30031631765293,52.80695503920083],[-127.30019494609215,52.80711890375842],[-127.30011176755929,52.80728627242871],[-127.30016557696275,52.80746668521139],[-127.30015435157846,52.80764726253572],[-127.30007130600028,52.80781854804053],[-127.29991899895353,52.80797378827286],[-127.2997403228157,52.808116991240134],[-127.29955598932564,52.80825801490445],[-127.29937543616704,52.808400682118815],[-127.29919394524545,52.808543350443664],[-127.29901620290012,52.80868710676105],[-127.29884316412642,52.80883304341041],[-127.29867768936091,52.80898282344605],[-127.29852627531082,52.80913693094649],[-127.29838708151807,52.809295951222666],[-127.29825444720315,52.80945657549837],[-127.29812932794059,52.8096199140503],[-127.29800514430435,52.80978325105989],[-127.2978743817015,52.80994441005086],[-127.29774174344332,52.81010503368002],[-127.29760724640573,52.81026567768254],[-127.29747366981911,52.810426311327575],[-127.29734010708972,52.81058694463956],[-127.29720840345499,52.810748122118646],[-127.29707950985711,52.81090982429493],[-127.2969543649567,52.81107260569991],[-127.29683765481582,52.81123753538974],[-127.2967321948836,52.811406259033404],[-127.29663048181042,52.81157550605556],[-127.29652406497561,52.81174312817337],[-127.29640639783193,52.811907503001926],[-127.29626156235881,52.81206489688559],[-127.29609238429481,52.81221583444675],[-127.29592412653993,52.81236676157493],[-127.29578482736173,52.8125229728382],[-127.29569512583551,52.81269040950088],[-127.29564844412089,52.812866893682546],[-127.29562792556104,52.81304812822935],[-127.29561301483979,52.81323043063505],[-127.29559713131741,52.813411058040245],[-127.2955998460749,52.813592600951075],[-127.29552234446234,52.813763821055154],[-127.29540008360948,52.81393048689924],[-127.2952383100382,52.81408078528732],[-127.29504255024928,52.81421408122337],[-127.29482890813664,52.814339728341075],[-127.29461151485374,52.81446429560046],[-127.29440637442703,52.81459433140786],[-127.29421631950252,52.81473204623134],[-127.29403384601616,52.814874160414995],[-127.2938532312861,52.81501680972583],[-127.29366886342034,52.815157823352536],[-127.29347222328728,52.815292811882145],[-127.29326707738261,52.81542340153323],[-127.29307326315066,52.81555947902684],[-127.29290958522493,52.81570922997604],[-127.29277419863452,52.81587211889871],[-127.29264636401075,52.81603940774207],[-127.29250714040198,52.81619841120996],[-127.29233762960553,52.81633982383139],[-127.29211130528401,52.816445986469894],[-127.2918385515006,52.816522962468724],[-127.29155923537245,52.816598333282634],[-127.29131035687992,52.81669634084114],[-127.29108346444505,52.81681483665648],[-127.29086033786324,52.816934976305454],[-127.29062277588355,52.8170390268713],[-127.29034900920287,52.817113203921934],[-127.2900545560585,52.817148943998035],[-127.28976676355211,52.81712856935027],[-127.2894831558365,52.81706163865396],[-127.28921235442827,52.81698839765959],[-127.28894424698986,52.81691176401845],[-127.28867789710273,52.81683174802933],[-127.28841337246153,52.81675059059282],[-127.2881488150125,52.81666831211127],[-127.28788427535139,52.81658658876986],[-127.28762330085512,52.81649978654364],[-127.28737593232466,52.816401626365696],[-127.2871448670662,52.81628983711238],[-127.28692469589627,52.81616896144516],[-127.28670631861934,52.8160463889648],[-127.28647977447592,52.81593006559409],[-127.28622133122651,52.81583426602099],[-127.28600317696379,52.815718970623124],[-127.28586924176159,52.815560717176034],[-127.28575631300423,52.815390469386735],[-127.28560939287665,52.815233487648186],[-127.28542399361343,52.81509429528349],[-127.28518453627099,52.81498090840593],[-127.28494973473695,52.814868034969294],[-127.28480133022552,52.81472283255578],[-127.28474022888346,52.81454529155972],[-127.28468366437043,52.8143643384124],[-127.2845754969877,52.8141973997786],[-127.28446810041254,52.81402541340967],[-127.28430592700145,52.813885965100326],[-127.2840179834415,52.8138285912915],[-127.28372703237514,52.81379478682438],[-127.28343434160108,52.81376491903793],[-127.28314079916952,52.81373786636024],[-127.28284640291682,52.813713063916786],[-127.28255204067052,52.81368938118307],[-127.28225351253214,52.81368143465211],[-127.28196112667487,52.813661656191094],[-127.28167973344503,52.81360588188767],[-127.28140267382294,52.8135394163351],[-127.28112474410544,52.81347464533961],[-127.28084162975142,52.81342337109589],[-127.28054193211676,52.81340758728509],[-127.28024939757698,52.81338275805345],[-127.27998144659563,52.81331002982053],[-127.27972676628715,52.81321473100933],[-127.27948748587917,52.813106378879255],[-127.27926005754402,52.81299061627063],[-127.27904173312625,52.81286802015665],[-127.27883526082421,52.81273801368535],[-127.27864803864432,52.81259939550769],[-127.2785055881482,52.812435066506126],[-127.27835140550438,52.81228207326972],[-127.27812525621061,52.812177493746645],[-127.2778544550949,52.81210255012872],[-127.27756644826948,52.81204235481973],[-127.27728055169123,52.81199054644947],[-127.2769843465445,52.811966869946176],[-127.2767191037069,52.811890742444874],[-127.2764662486393,52.81179429597332],[-127.27622157839042,52.81169159996118],[-127.2759859976227,52.81158207973245],[-127.27575496965306,52.81146914710123],[-127.27552576927718,52.811355638233955],[-127.27530018336537,52.81123816231055],[-127.2750892122016,52.81111268147133],[-127.27489554755604,52.81097523921408],[-127.27468273592551,52.81084977764202],[-127.27444264558322,52.81074478659132],[-127.27417187488182,52.810669834247165],[-127.27388440128172,52.810627001353254],[-127.2735882570976,52.810636375309166],[-127.27329672900436,52.810675404540845],[-127.27300592138417,52.81070770033267],[-127.27266226251196,52.810681730162905],[-127.27245903996896,52.81069065852216],[-127.27215192393598,52.8107993444527],[-127.27185444944247,52.810888871214615],[-127.27156490935835,52.810932357820505],[-127.27127826463916,52.810979730712496],[-127.27099357745477,52.81103045310908],[-127.27070887278481,52.81108061010496],[-127.27042326444266,52.81113189699768],[-127.27013954464634,52.811183718672815],[-127.26985681257352,52.8112377795618],[-127.26957603732335,52.81129517206974],[-127.26929819069959,52.811357580371165],[-127.26903103515205,52.811435563805794],[-127.26876777761558,52.81151967344035],[-127.26849966529578,52.811596545164946],[-127.26822378936382,52.81166284793872],[-127.26794889898851,52.811730825108675],[-127.26768275831843,52.8118116009572],[-127.2674127029512,52.81188624950337],[-127.26712680079963,52.81192744410143],[-127.26683004062139,52.81194745974334],[-127.2665347003084,52.81198427150502],[-127.26624541325859,52.812036708592366],[-127.26613701157201,52.8120787832138],[-127.26602000161904,52.81214393172958],[-127.26581945577608,52.81227498819912],[-127.26563415397524,52.812418773750125],[-127.26546110237202,52.81256858688956],[-127.2653001830419,52.81271994569324],[-127.2651683667435,52.81288108682387],[-127.26504875103568,52.813046570562435],[-127.2649169179164,52.81320771153691],[-127.2647512407941,52.81335520239554],[-127.26455734667469,52.81349178888511],[-127.26427761941795,52.813679171205344],[-127.2642522488752,52.813858218322636],[-127.26423434128799,52.81403774095201],[-127.2641965189639,52.814141262917175],[-127.264101513855,52.814196640963225],[-127.26382232071283,52.81424560067094],[-127.26352716090108,52.81428912753131],[-127.26325129142288,52.81435598305183],[-127.26298124536349,52.81443174173371],[-127.26273512660244,52.81453077938728],[-127.26252612322651,52.814659123242485],[-127.26233126136565,52.81479459539929],[-127.26214677549166,52.81493555968545],[-127.26196513239807,52.81507816982354],[-127.26178634905008,52.81522299949833],[-127.26157437913052,52.815345760411496],[-127.26133118056207,52.815449811709755],[-127.26108321049375,52.81554942154543],[-127.26083716375808,52.815651260763154],[-127.26057086924756,52.815728094214556],[-127.26028817753459,52.815784928548375],[-127.26000045204674,52.81582892244576],[-127.25970379367288,52.815853401834424],[-127.25940706884157,52.81587563956606],[-127.25912884549963,52.81592626317246],[-127.25887606639735,52.81602088066357],[-127.25862815336005,52.81612272618365],[-127.25836196767504,52.81620348066998],[-127.25810145575882,52.81628809206965],[-127.25787914258025,52.816407038571185],[-127.25761964733117,52.816494435507344],[-127.25735536664169,52.81657740885106],[-127.25712402109662,52.816674034472946],[-127.25688596801832,52.816795389192286],[-127.25668917080256,52.816929186530274],[-127.25649807883987,52.81706741463657],[-127.25630141106683,52.81720569311447],[-127.25615548333519,52.81729972579766],[-127.25590937855618,52.817368486696445],[-127.2558612415404,52.8175012568182],[-127.25579434017031,52.817596676166374],[-127.25568165407618,52.817620297740916],[-127.25526978753248,52.81755129445637],[-127.25467690981996,52.81739511607208],[-127.254290829569,52.81728659659792],[-127.25390096951237,52.81720726615709],[-127.25368023104144,52.817064475046244],[-127.25299778163392,52.81680052672039],[-127.25275049122162,52.81657564256029],[-127.25245765524515,52.8166359285142],[-127.25227595880563,52.81658799566597],[-127.25199446989947,52.816496285761964],[-127.2517129989346,52.81637320140784],[-127.25148740433545,52.81625455981008],[-127.2512366341413,52.81616420628714],[-127.25094504930011,52.81620373576886],[-127.25065234560722,52.81623656057406],[-127.25035949363632,52.81626433811619],[-127.25006562124226,52.81628876337438],[-127.24977071362792,52.81630983649949],[-127.24947677639054,52.81633257527561],[-127.2491809958976,52.81635534189435],[-127.2488921368204,52.81639259562092],[-127.24861034676687,52.81644939200329],[-127.24833445648852,52.816516777084125],[-127.2480652902543,52.816591926677056],[-127.2478048210712,52.816678756117554],[-127.24754053503094,52.816761707197585],[-127.24726258788567,52.81682294266086],[-127.24697303148776,52.81686804463988],[-127.246679416432,52.816901989929654],[-127.24638519387685,52.81691463669183],[-127.24609258978533,52.816887481485864],[-127.24579844472747,52.816839611523896],[-127.24550855422495,52.816809619578855],[-127.24522493653701,52.816835609521945],[-127.24494828154786,52.81690915459248],[-127.24466860231661,52.81697488544179],[-127.24438091671124,52.817020526031065],[-127.24409610818518,52.81706949782429],[-127.2438172486695,52.81713129063248],[-127.2435412989106,52.81719754411988],[-127.2432634395154,52.81726156660054],[-127.24297790382577,52.817317833043944],[-127.24269907369049,52.817380743643184],[-127.2424451322498,52.817468612677935],[-127.24220943633503,52.817576462509244],[-127.24198521560615,52.817695963341315],[-127.24176955798984,52.81782208898351],[-127.24156327141984,52.81795092157976],[-127.24137398405597,52.81808910532116],[-127.2411903838376,52.818231146921626],[-127.2409992356027,52.81836934071711],[-127.24078654562905,52.818501601948256],[-127.24059630037608,52.81863922957551],[-127.2404856526436,52.81879731098673],[-127.24049107474158,52.81898387149138],[-127.2404375639796,52.819157040225775],[-127.24027455906398,52.81930446659096],[-127.24007505009675,52.819443311920516],[-127.23988883873318,52.81959153875446],[-127.23970177102407,52.81974258079146],[-127.23946480430321,52.81980784777849],[-127.23916130525016,52.81975781830518],[-127.23890755066883,52.81966074541288],[-127.23868648079618,52.819536983827064],[-127.23847082452845,52.819407569683314],[-127.23823901447282,52.819297935050244],[-127.23797573579037,52.81922505333785],[-127.23769269891234,52.81917536023761],[-127.23739887234568,52.81913867387283],[-127.23710239606805,52.819106488932576],[-127.23680945818033,52.81906810605357],[-127.23652110881032,52.81902743251674],[-127.2362317749129,52.81898509192839],[-127.23594778877734,52.81893483976572],[-127.23566637244014,52.81887727915872],[-127.23538852594088,52.818814076318226],[-127.23512917859051,52.8187159334078],[-127.23484619836911,52.81866847450188],[-127.23457725640507,52.81859172649952],[-127.23430817093534,52.8185104961994],[-127.23400413645547,52.818441405556165],[-127.2337639267679,52.818362112071945],[-127.23348072480205,52.81833874493425],[-127.23318322677311,52.818367648939535],[-127.23289190026624,52.81841666175037],[-127.23261788048627,52.81848623136749],[-127.23235930606943,52.81857524768151],[-127.23209979405266,52.818664273250455],[-127.23185351458807,52.81876100496086],[-127.23156467274286,52.818799901163736],[-127.23126660408771,52.81884113502304],[-127.2310008841309,52.81887642491176],[-127.23069651201122,52.81892444819854],[-127.23040251432013,52.8189460187177],[-127.23010630177784,52.81895472701478],[-127.22980905573375,52.81896008299721],[-127.22951193872036,52.8189699200653],[-127.22921580777069,52.81898198764984],[-127.2289218077993,52.81900299855666],[-127.22862283089563,52.819045355962245],[-127.2283231737005,52.81909613017953],[-127.2280368954398,52.81912714523347],[-127.22783916867515,52.81910287028509],[-127.22763497571601,52.81891839761058],[-127.2275824472102,52.81909546797983],[-127.22751689484194,52.81927211857157],[-127.22737071389976,52.81942439868259],[-127.22711398218743,52.819513939865246],[-127.22684288551193,52.81958850432714],[-127.22656786227368,52.819655828483164],[-127.22629383884127,52.819725374164996],[-127.22601981587152,52.819795484071086],[-127.22575538763704,52.81987558030618],[-127.22551205976315,52.81997899237101],[-127.22529435529164,52.82010063408348],[-127.22509180476237,52.82023219542195],[-127.22488737878025,52.82036322004079],[-127.224676310515,52.82048927447727],[-127.22446522587981,52.82061531971555],[-127.22426181318667,52.820749139075254],[-127.2240583519602,52.82088182880259],[-127.2238406066122,52.82100234728918],[-127.22359618535211,52.8211001626191],[-127.22332885327049,52.82117692107304],[-127.22305198781298,52.821245367784435],[-127.22277707632549,52.82131716482721],[-127.22251649347835,52.82140225256466],[-127.22226072453329,52.82149345843875],[-127.22200975324212,52.82159021776827],[-127.22176259262314,52.821689743352934],[-127.22152019723259,52.82179369302459],[-127.22128539452409,52.82190317612416],[-127.22105062241107,52.822013770242435],[-127.22081105171648,52.82211937468484],[-127.22054876218935,52.8222100885972],[-127.22028829887547,52.82230021804518],[-127.22007417213408,52.82241788517363],[-127.21991294278982,52.82256526364088],[-127.21977725594901,52.82272806757421],[-127.21964906659825,52.82289359093145],[-127.21954139753315,52.8230611515143],[-127.21941590523039,52.82322328417032],[-127.21932974238825,52.82339566020743],[-127.21923983004606,52.823566954302194],[-127.21911247696262,52.82372911484435],[-127.21898324837045,52.82389072981563],[-127.21888211908066,52.82405989843621],[-127.21879407784024,52.82423172857026],[-127.21873764538856,52.82440379537942],[-127.2186516054057,52.82458065262224],[-127.21859217177378,52.82468046395981],[-127.21855789109303,52.824749187980565],[-127.21835460111477,52.82488915494345],[-127.21819909180091,52.82504207525832],[-127.21802718055834,52.825238876309015],[-127.21810165607103,52.825373154361785],[-127.21832714915102,52.825522686201644],[-127.21855638651792,52.825640787669066],[-127.21876450004545,52.8257675183756],[-127.21896167197636,52.82590165192907],[-127.21917166236057,52.82602891834452],[-127.2193807324325,52.826156202911434],[-127.21958796213346,52.826284618048376],[-127.21979246090292,52.82641474686126],[-127.21999540682722,52.826555543439184],[-127.22011979008725,52.82671171739159],[-127.22015612697854,52.826812210834035],[-127.22022637489947,52.826961110662296],[-127.2203944041175,52.82708320702665],[-127.22051809400202,52.82718279236956],[-127.22076795101754,52.82730628811971],[-127.2209694534586,52.82742860051449],[-127.22115745923739,52.82756674398466],[-127.22135556859882,52.8277008548124],[-127.22153534893691,52.827843566395536],[-127.22169951751103,52.82799316487593],[-127.22184621564116,52.82814966965777],[-127.22197725250635,52.82831082039692],[-127.22209815579538,52.82847488291068],[-127.22221813918898,52.82863951077882],[-127.22233996595577,52.82880355444947],[-127.22248206217832,52.82896122710367],[-127.22263337250659,52.829116006151345],[-127.22278927481729,52.82926905151453],[-127.22295161054815,52.82941922320851],[-127.22312775038351,52.82956421182035],[-127.22331121483178,52.829705761493734],[-127.2234873411369,52.82985019379471],[-127.22364785499049,52.83000150429026],[-127.22380927594945,52.83015224919861],[-127.22413750343532,52.83044640155926],[-127.22418449541004,52.8304963471136],[-127.2241876558601,52.83054170158965],[-127.22416097634233,52.83061651660343],[-127.22398206364521,52.830763519180685],[-127.22383127291211,52.83091920363315],[-127.2237217089067,52.83108565714335],[-127.22365235660922,52.83126066676255],[-127.2235558837083,52.83143034600818],[-127.22345475467812,52.83159951774968],[-127.2233545616572,52.831768679626016],[-127.22325435297189,52.83193784155349],[-127.22314854994183,52.83210594085423],[-127.22305486898037,52.83227559944084],[-127.22302095708133,52.832454713556864],[-127.2230372646031,52.832634434363435],[-127.22308510733355,52.83281157616157],[-127.22316422920875,52.832977193230946],[-127.2232567326667,52.83315555539559],[-127.22332681848752,52.833330223777324],[-127.2233635585496,52.83350916672492],[-127.2233510164,52.83368806714127],[-127.22329193748507,52.83386464586843],[-127.22319267642261,52.83403435350085],[-127.22312892585909,52.83421042484563],[-127.22312381772873,52.83438923875027],[-127.22314144874571,52.83458239496371],[-127.22316201164418,52.834748612820036],[-127.22323209995088,52.834923290044046],[-127.22327900810946,52.83509988536488],[-127.22331570117736,52.83527714296895],[-127.22341810555173,52.835444193826234],[-127.2234836525771,52.83562228050651],[-127.2235324387336,52.83579997688486],[-127.2236201171405,52.835971664088206],[-127.2236698249755,52.8361487859019],[-127.22370474208927,52.836328868238716],[-127.22370432334472,52.83650876283638],[-127.22370390433957,52.83668864844975],[-127.22369192495172,52.83688715190293],[-127.22356594194412,52.83703304554251],[-127.22349452755911,52.83720135108254],[-127.22358033350115,52.83737249282287],[-127.22363007519597,52.837550743906455],[-127.22368266240578,52.83773119790369],[-127.22362324196556,52.83789601612386],[-127.22343122077194,52.8380414767236],[-127.22322765724853,52.838173042940255],[-127.22302971920719,52.83830680072887],[-127.22287325565966,52.83845973552374],[-127.22278798192,52.83863153811175],[-127.22271955049276,52.838806536581586],[-127.22264644721689,52.838981018747056],[-127.2225723901865,52.8391549458958],[-127.22249836360714,52.839329437528995],[-127.22243738346467,52.83950547895453],[-127.22238572910277,52.839681979170535],[-127.22221323960062,52.83982779011097],[-127.22200683585913,52.83995827167585],[-127.22177576484466,52.84007163287855],[-127.22152751136714,52.8401694813873],[-127.22125913498958,52.840246799678745],[-127.22103184282058,52.84036236162771],[-127.22080834797424,52.840480690078245],[-127.22056681256208,52.84058574723944],[-127.2203470976457,52.84070627704798],[-127.22016423608709,52.840847709417645],[-127.22000681593487,52.84100064988068],[-127.21985034781983,52.84115414509102],[-127.21968539262838,52.841303800990104],[-127.21944090959182,52.841403847291645],[-127.21920403811816,52.841509973856155],[-127.21902499988624,52.841655291825795],[-127.21889195038538,52.84181526724886],[-127.21877301111832,52.84198069100634],[-127.21862398892809,52.842135227919975],[-127.2184345517201,52.84227448401239],[-127.21824509740436,52.84241318404587],[-127.21789626037285,52.842571468906975],[-127.21803010703113,52.84273203783143],[-127.21817039034832,52.84289028932159],[-127.21832817035802,52.84304276423799],[-127.21850341366542,52.84318776824442],[-127.2186713171614,52.8433362104723],[-127.21882361759727,52.84349153902674],[-127.218970390489,52.843649166297304],[-127.21910518265648,52.843810280056886],[-127.21921402577473,52.84397446046065],[-127.21919598007317,52.84415621361016],[-127.21907789388499,52.84431939593291],[-127.21893927423031,52.84447998476845],[-127.218837142727,52.84464859614575],[-127.21876027903585,52.84482255808864],[-127.21869835313136,52.84499859756224],[-127.21864947435215,52.84517563136252],[-127.21860993978545,52.84535424486059],[-127.21857038875517,52.84553229362152],[-127.21852060246583,52.84570989261525],[-127.21848197323635,52.845887940702895],[-127.21847035997676,52.84606738520525],[-127.21845316846351,52.84624688754632],[-127.21843133576027,52.84642643800326],[-127.21840111200045,52.84660551059649],[-127.21834661991616,52.846781481504856],[-127.21826040516902,52.846953854163864],[-127.2181555314886,52.84712417867728],[-127.21815213239816,52.84729848984244],[-127.21821114405131,52.847476080981075],[-127.2182330153917,52.84765574288524],[-127.21824652655216,52.84783548249982],[-127.21826188266934,52.84801521192652],[-127.21826703514054,52.84819560305366],[-127.21822280678496,52.84837257906672],[-127.21815807709798,52.848548655823585],[-127.21807187388835,52.84872158388974],[-127.21796127275445,52.84888692837634],[-127.217820726429,52.8490458495611],[-127.21767642829467,52.849203697633],[-127.21755275961932,52.84936749146108],[-127.21745903435429,52.849537699456505],[-127.21740269096352,52.84971424460891],[-127.21731740368448,52.849886606542796],[-127.21720871985436,52.85005416284776],[-127.21712619715328,52.85022594004373],[-127.21708291627792,52.85040402628415],[-127.21704896514447,52.850583145570624],[-127.21698607072626,52.85075863746834],[-127.21696326033342,52.85093707640675],[-127.21697778545753,52.85112016755836],[-127.21694186168139,52.851295379974474],[-127.21681904157482,52.851456366486794],[-127.21667285584869,52.85161366764381],[-127.21651168004165,52.85176719663113],[-127.21634575094123,52.85191742123741],[-127.21617319131073,52.85206322217369],[-127.21599123668543,52.85220576672684],[-127.21580645076374,52.852346654634566],[-127.21562260185264,52.85248808843312],[-127.21544439483696,52.852631714056514],[-127.21527184532698,52.85277807830438],[-127.21498650472628,52.85304665183629],[-127.21499952509815,52.85320958462381],[-127.21508734968504,52.85338687864307],[-127.21512006911777,52.85358827866589],[-127.21516672585832,52.853757032212435],[-127.21520653364492,52.85394603040217],[-127.21527630162737,52.854109505856385],[-127.21547820332165,52.85424246542056],[-127.21575316949502,52.85432760530606],[-127.21603615848231,52.85436838667616],[-127.21632985783948,52.85439280086166],[-127.21662886642017,52.85440820215516],[-127.2169296536636,52.85442021299457],[-127.21722675481163,52.854433946890595],[-127.21752377506424,52.85444431856873],[-127.21782070072126,52.8544518930384],[-127.21811762523174,52.854458901903094],[-127.21841369243002,52.85446871634896],[-127.21870899868827,52.85448470665716],[-127.2190036550933,52.854510233990126],[-127.21929756548063,52.854541928077936],[-127.21959055488502,52.85457418689616],[-127.2198834167877,52.854601972199724],[-127.22017694478696,52.85462077473664],[-127.22047141802143,52.85460707337056],[-127.22076630006885,52.85457542573461],[-127.22107337500144,52.854547577812646],[-127.22135218458357,52.854571578329235],[-127.22157854776844,52.85468074610532],[-127.22178527322605,52.85481869281005],[-127.2219762488038,52.8549590444996],[-127.22213227402838,52.85511264379814],[-127.22232682722763,52.855247918723336],[-127.22253423822026,52.855376890825546],[-127.22274161939748,52.855505298006605],[-127.22294995535327,52.855634259754176],[-127.22315735416908,52.85576267498905],[-127.22336017751375,52.855893934941236],[-127.22354483787758,52.85604050959252],[-127.22372490709282,52.85618938227533],[-127.2239321177364,52.856311064527475],[-127.22419173816837,52.85637953317916],[-127.22449116420947,52.85640835053878],[-127.22479588184893,52.85642758992126],[-127.22509129954136,52.85644636958162],[-127.22538838523425,52.85645896238967],[-127.22568121542102,52.85648504807726],[-127.22596642503926,52.8565369902571],[-127.22625241271419,52.85658387568285],[-127.22654888351553,52.856607123783846],[-127.22684700481915,52.85662306441827],[-127.22714072726038,52.85664801640057],[-127.22741853264792,52.85670115318002],[-127.2276778674483,52.85679146771323],[-127.2279398888836,52.856878391292746],[-127.22821620790822,52.85694442611167],[-127.22849969434007,52.85700142815353],[-127.22878656070732,52.85704605673214],[-127.2290843306825,52.85704966692801],[-127.22937349606197,52.85707746744466],[-127.2296463101679,52.8571513809932],[-127.22992801954003,52.8572106397543],[-127.23021063589475,52.85726932348167],[-127.23048602359714,52.85733536276098],[-127.23074700225203,52.857417807984696],[-127.23099268308935,52.857518345232194],[-127.23123299444272,52.857625662859306],[-127.23147689876588,52.85772902413028],[-127.23172895438397,52.85782444509369],[-127.23198190008705,52.85791817951748],[-127.23223756454557,52.858009643350336],[-127.23249413654644,52.85810054121167],[-127.23274892914358,52.85819368976205],[-127.23300375670087,52.85828852303826],[-127.23325945797579,52.85838110505687],[-127.23352052955029,52.85846634962378],[-127.23378960628067,52.85853861621836],[-127.23407683033243,52.858595556725945],[-127.23437362737626,52.85862942465886],[-127.23466480928076,52.85862972772708],[-127.23494914739317,52.85858695680974],[-127.2352309255975,52.85851954618151],[-127.23551186316777,52.85845551498378],[-127.23579199212612,52.858395965725876],[-127.23606830182817,52.85833253775036],[-127.23634783650083,52.85831671244842],[-127.23664159104237,52.85834164049923],[-127.23693618705745,52.85836375254887],[-127.23723244849016,52.8583791306637],[-127.23752920967168,52.858379923772596],[-127.23804351946904,52.85840812909882],[-127.23832835040854,52.858446040329824],[-127.23863274054787,52.85842097250249],[-127.23892564562084,52.85838482622588],[-127.2392092776371,52.8583179512922],[-127.23947977763099,52.85834311751288],[-127.2397644535726,52.85840791647694],[-127.2400577871569,52.858418270415534],[-127.24035710165879,52.85841062812988],[-127.24065414033832,52.85842094147034],[-127.2409503382952,52.85843406935488],[-127.24124566271186,52.858448882398356],[-127.24170957870636,52.85847143530876],[-127.241999137116,52.85851208517109],[-127.2422895859515,52.8585516041378],[-127.24257830469624,52.85859506787524],[-127.24286078434359,52.85864811898839],[-127.24314158430064,52.85870734696713],[-127.24342065606673,52.85877108462701],[-127.24369526723407,52.85884158451519],[-127.24396265086402,52.85891889388802],[-127.24421918767605,52.85900751627865],[-127.2444640196005,52.85910915545408],[-127.24470439029879,52.859217010117455],[-127.24494287090299,52.85932431945031],[-127.24518227363096,52.859431053663535],[-127.24542077151428,52.859538361854305],[-127.24565746122373,52.85964793028081],[-127.24588957515965,52.859759788298064],[-127.24611622514638,52.859875630994104],[-127.2463337399899,52.85999716504852],[-127.24654213646967,52.86012496416877],[-127.24674414648992,52.860256757870786],[-127.2469443319075,52.86039024726608],[-127.24714543949905,52.86052316166553],[-127.2473520302778,52.86065266416681],[-127.24756504116239,52.860778726862584],[-127.24778170939743,52.8609030736636],[-127.24800023752665,52.86102684441263],[-127.24821598572068,52.86115120019151],[-127.2484271595478,52.86127840162474],[-127.2486291315107,52.861408506872756],[-127.24882101485858,52.861543766950824],[-127.24897428143353,52.861694563109765],[-127.24907610756547,52.861867756436645],[-127.24918343277123,52.8620380937611],[-127.2493486212441,52.86218315882313],[-127.2495523947041,52.862311001788356],[-127.24977452538411,52.862430803766664],[-127.25000859104487,52.86254487451491],[-127.25024446889456,52.86265724884691],[-127.25047664410394,52.8627702180138],[-127.25071884474617,52.86287579052379],[-127.25096374724576,52.86297853633127],[-127.2511986101883,52.863088113160224],[-127.25139233647056,52.863222228669784],[-127.25153470400294,52.86338153885827],[-127.25165861950248,52.86354609335922],[-127.25175199938506,52.86371602093863],[-127.25179586188068,52.86400583360651],[-127.25187077482731,52.86418099675497],[-127.25194845316929,52.86435500961114],[-127.25206030577158,52.86452024804453],[-127.2521906310561,52.86468137131891],[-127.25232651983849,52.864841314385636],[-127.25246794240714,52.865000077543],[-127.25261397470976,52.86515711471849],[-127.25276461651619,52.865312416932206],[-127.25291983664515,52.86546542859731],[-127.2530815116688,52.86561668558983],[-127.253255188171,52.86576446102907],[-127.25343984593295,52.865905950368365],[-127.25363912321392,52.86603831730466],[-127.25386485539119,52.8661524693286],[-127.25411887113599,52.86624782190846],[-127.25436745575713,52.86634827986496],[-127.25459508648264,52.86646409587792],[-127.25481634663751,52.86658445359034],[-127.255027565587,52.86671108684049],[-127.25522502428164,52.86684459130437],[-127.25540694502973,52.86698779244799],[-127.25556958886065,52.86713960054843],[-127.25570638785382,52.867298409184244],[-127.2558220163328,52.8674647243963],[-127.25591639347856,52.867636314532234],[-127.25598757610629,52.86781039399692],[-127.25601980659081,52.867988252000146],[-127.25603536220441,52.868169094590684],[-127.25606946986503,52.86834748838566],[-127.25612861919214,52.86852338194542],[-127.2561970541034,52.86869861134731],[-127.25626178524416,52.868874436186346],[-127.25631909211059,52.86905090520342],[-127.25637919920743,52.86922790911227],[-127.25643095892345,52.8694055581117],[-127.25646691323475,52.8695833760386],[-127.25646938226178,52.869762107810864],[-127.25643467481162,52.8699418018506],[-127.25639809177652,52.87012151590594],[-127.25640146543864,52.870299126143905],[-127.25648200452255,52.870474225838215],[-127.25661789633878,52.87063359882945],[-127.25680258635026,52.87077508245178],[-127.25698452740173,52.87091771595114],[-127.25713336319144,52.87107415247212],[-127.25723694037072,52.87124172469503],[-127.25731466987158,52.87141628895604],[-127.25739707528946,52.8715913679988],[-127.2575365133887,52.87174454221395],[-127.25777881582084,52.87185122895494],[-127.25802940142498,52.871955020145364],[-127.25821011629051,52.872087577953835],[-127.25828143133896,52.87226557250775],[-127.25837773926646,52.87243882533425],[-127.25858417366655,52.872559899534856],[-127.25883925869765,52.87265803700285],[-127.25906242350541,52.87277836632723],[-127.25924434936618,52.87292044058387],[-127.25927004487805,52.87309724655274],[-127.25924652620783,52.87327737717556],[-127.2592443895159,52.8735200506307],[-127.25933225774465,52.873691142523946],[-127.25945068470263,52.87385686795279],[-127.25958845744053,52.87401566135179],[-127.2597703903347,52.87415773468381],[-127.25995051158971,52.87430093895374],[-127.26012325972567,52.87444702838864],[-127.26027582231933,52.874602300120976],[-127.26041547939568,52.87476219309898],[-127.26058541437723,52.87490719124723],[-127.26081411173402,52.875025225357795],[-127.26105654019477,52.87513525739201],[-127.26124561020131,52.875266600114955],[-127.26133439493388,52.87543656881515],[-127.26140113432537,52.87561629603182],[-127.26149920696352,52.875785600052666],[-127.2615412045078,52.875915158208635],[-127.26192245404127,52.875967660283216],[-127.26221723486329,52.875991393806316],[-127.26251753162992,52.87601282581919],[-127.2626071753636,52.87602307066209],[-127.2627768426196,52.876095783601],[-127.26300732996006,52.87621098786352],[-127.26322046673214,52.87633758579206],[-127.26340429694426,52.876479624174905],[-127.26362463000206,52.87659774277135],[-127.26387601267004,52.87669534437732],[-127.26411376638292,52.876804308639116],[-127.26436778556763,52.87689684188984],[-127.26461129859231,52.87698052149177],[-127.26472236210124,52.877147997465656],[-127.26481597334161,52.877322950564206],[-127.2649292971979,52.87744109727308],[-127.26517864764901,52.877595877053984],[-127.26536435081613,52.87773790119732],[-127.2655048917674,52.87789497221906],[-127.26560575313019,52.87806368688331],[-127.26572601337298,52.878289907530295],[-127.26600225757039,52.87822136365767],[-127.26627954045352,52.878156735098464],[-127.2665687195018,52.878116634553585],[-127.26687577707673,52.87811444666388],[-127.26714765149468,52.878181003942586],[-127.2674233317064,52.87825032596581],[-127.2676953744705,52.878322484006176],[-127.26796565738711,52.87839802270341],[-127.26827475066936,52.878464175958854],[-127.26851489636454,52.878527710110355],[-127.26880553950319,52.87856828344682],[-127.26909782532093,52.87860099297258],[-127.26939338444292,52.87861909646885],[-127.26969276875396,52.87860913875076],[-127.26997220979838,52.87855456505461],[-127.27024055515392,52.87847097064328],[-127.27052301209014,52.87842420839604],[-127.27082234452398,52.87841256271001],[-127.27112048459809,52.87842335345787],[-127.27141463196412,52.87845603710704],[-127.27169570235101,52.878518557330324],[-127.27194059494663,52.87861622106927],[-127.27216563867687,52.87873482880784],[-127.27238798538832,52.87885682761221],[-127.27262300577104,52.878966360367606],[-127.27289060325931,52.87904527922256],[-127.27314825916514,52.879133827177405],[-127.27338784402957,52.879240511555956],[-127.27363557651229,52.87933925284699],[-127.27389870108703,52.87942382172862],[-127.27416088885741,52.87950840018165],[-127.27441499635384,52.87960259665371],[-127.27467193688565,52.87969787366684],[-127.27492431988286,52.879796570817675],[-127.27515932018292,52.87990553391665],[-127.27536318871405,52.880031089889926],[-127.27552674223243,52.88017837749976],[-127.27566558534278,52.880339382215624],[-127.2758875991239,52.880604836244565],[-127.27611722329225,52.88072002449438],[-127.27634866112784,52.88083407184395],[-127.27657004064962,52.88095383179448],[-127.27676944345743,52.881085602536835],[-127.27695146176076,52.8812270838015],[-127.27712429623455,52.88137314761569],[-127.27729257090944,52.8815220581482],[-127.27746267434786,52.881669836767486],[-127.27764013849743,52.88181472874991],[-127.27782217946739,52.88195676432114],[-127.2780051449366,52.882098798527544],[-127.2781890343767,52.88224081343846],[-127.27837475058487,52.88238113153309],[-127.27856504569411,52.88251915800769],[-127.27876084095973,52.88265432692055],[-127.27896302553295,52.88278549884052],[-127.27917255222567,52.882912663368955],[-127.27939125250028,52.883035809504086],[-127.27961632361328,52.88315384693406],[-127.279847781957,52.88326732237862],[-127.2800864855867,52.88337455875867],[-127.28033424092101,52.88347272996123],[-127.28059559395795,52.88355898898271],[-127.28086331909624,52.88364068598095],[-127.28112921613356,52.8837229671625],[-127.28138418614431,52.88381377706853],[-127.28161647474906,52.88392387772811],[-127.28180598227216,52.8840658347631],[-127.28194660468098,52.884222885504194],[-127.28202912115461,52.88439794602575],[-127.28206984003883,52.884575703787654],[-127.28208366609407,52.88475656116768],[-127.28207232675395,52.88493656320564],[-127.28204326644584,52.885115646650526],[-127.2819983940631,52.88529489350658],[-127.28192451395114,52.88546886173029],[-127.28182062195471,52.88563586761562],[-127.2817017879808,52.88580079473355],[-127.28157168729095,52.88596303811352],[-127.28143315100833,52.8861231406943],[-127.28128802291305,52.88628050852272],[-127.28113345527778,52.88643405183883],[-127.2809601051482,52.88658163982902],[-127.28078016509328,52.88672705779139],[-127.2806049028593,52.88687354526879],[-127.28044558448549,52.88702378598984],[-127.28031631230462,52.88718265645164],[-127.28025268459747,52.88735763243785],[-127.28021533124323,52.88753960277824],[-127.28014702318937,52.88771349988677],[-127.28002373546926,52.887885762890846],[-127.27982844284331,52.8880162115304],[-127.2795729835392,52.888096324361726],[-127.27929188345432,52.88815934825477],[-127.27900120728636,52.88821350056082],[-127.27871430332935,52.8882692967432],[-127.27842533573856,52.888318390079355],[-127.2781315372333,52.88836137549974],[-127.2778454029633,52.888412113256145],[-127.27758042822339,52.88848504461123],[-127.27735091832929,52.88859232474853],[-127.27714542068261,52.88872456523277],[-127.27694568818413,52.88886234653304],[-127.27673163541169,52.88898851944496],[-127.27650807356868,52.88910806163996],[-127.27628261594678,52.88922651216908],[-127.27606094638826,52.8893471536914],[-127.27585059414247,52.8894727198857],[-127.27565917195443,52.889608732028194],[-127.275496069596,52.88975787681035],[-127.27534715314518,52.889914721772215],[-127.27519543423652,52.8900710320459],[-127.27502575440438,52.89021800590432],[-127.2748371943874,52.890356782962854],[-127.27464016423114,52.89049228922756],[-127.27444029818936,52.89062614921588],[-127.27424323201872,52.89076053439685],[-127.27405374384385,52.890899320156194],[-127.2738793124347,52.891043546272144],[-127.27372285638734,52.891197664233346],[-127.27358616814784,52.89135884831744],[-127.27346817607916,52.89152263613028],[-127.27341762675397,52.89170026335246],[-127.27341464936089,52.89188073767024],[-127.27342466995555,52.892060515320225],[-127.27343935122937,52.892240233514535],[-127.27345310965309,52.89241997064764],[-127.27346126888642,52.892599759427576],[-127.27345731998686,52.89277912340944],[-127.27342541659404,52.89295766932233],[-127.27337952634865,52.89313524589829],[-127.27334857910975,52.89331490214827],[-127.27334197892377,52.89349877777588],[-127.27327163988643,52.893668773661354],[-127.27311788803642,52.89382006375045],[-127.27293322761908,52.89396495466741],[-127.2727579255069,52.894111994466385],[-127.27263988916314,52.8942746607733],[-127.27259218282728,52.89445393314947],[-127.27254815094423,52.894632053932135],[-127.27250971775572,52.894810105129565],[-127.2724422133977,52.89513754030504],[-127.27326604517302,52.89522612965445],[-127.27383587635117,52.895351643292315],[-127.27443710806847,52.89534400882594],[-127.2750585296109,52.8955132318668],[-127.27566576846993,52.89570614137785],[-127.27650723079886,52.89597832097553],[-127.2775914876805,52.89677125049133],[-127.2781511247014,52.89720731255851],[-127.2788705143561,52.897568221007035],[-127.27936356948521,52.89792598355091],[-127.27974943241776,52.89815545868567],[-127.28011096446417,52.89822605905592],[-127.28052640531499,52.898324646192265],[-127.28098495512982,52.89846310957532],[-127.28167335427374,52.89878230579247],[-127.28241754825153,52.899099213039925],[-127.28283959872883,52.89932380953856],[-127.28327087680742,52.899637955345746],[-127.28383395125478,52.899999983277404],[-127.28389567962485,52.900039656681884],[-127.28413544247013,52.90014742919122],[-127.28438147887695,52.90024729638986],[-127.2846545953335,52.90031828356456],[-127.28493217353655,52.900383052731556],[-127.28519000055017,52.90047213779286],[-127.28544149124363,52.900567460182685],[-127.2856902990923,52.90066616466786],[-127.28593910836442,52.90076487758369],[-127.28618972964841,52.900861884549265],[-127.28644945776658,52.90095206685113],[-127.28671646475007,52.90103656518213],[-127.2869826000051,52.901122749102846],[-127.28723495209627,52.90121525190856],[-127.28746446609868,52.90132257398436],[-127.28762998598272,52.901468701874855],[-127.2877478312493,52.90164000810629],[-127.2878433171469,52.90181043826713],[-127.2879110147047,52.90198622048984],[-127.28800532506311,52.90208717654593],[-127.28793374227331,52.90227568236978],[-127.28788940931784,52.902380398002165],[-127.2881620169436,52.902588114832746],[-127.28843201564388,52.90264791996108],[-127.28872183423258,52.902685657089805],[-127.28901980135544,52.902715449961576],[-127.28931686472265,52.90274638170996],[-127.28960678625464,52.90278746884344],[-127.28989674254524,52.90282968460761],[-127.2901849222904,52.90287471655354],[-127.2904704721752,52.90292538042763],[-127.29075068980471,52.90298394741462],[-127.29102557948151,52.903051538261295],[-127.2912969479298,52.90312532679996],[-127.29156473175998,52.90320420196194],[-127.29183073759435,52.90328533755886],[-127.29209218434289,52.903369884907455],[-127.29234736329745,52.903462910694024],[-127.29260163675168,52.903556501779036],[-127.29286132685849,52.9036444290093],[-127.29312735478206,52.90372611736155],[-127.29339965492399,52.903799899829906],[-127.29368161006761,52.90385451367848],[-127.29397215852515,52.90388494056337],[-127.29426976548848,52.90390296075714],[-127.29456738759852,52.903920980034],[-127.29486067154414,52.90394969797907],[-127.29515318756623,52.90398401846592],[-127.29544720627416,52.90400600233034],[-127.29574432037133,52.90400776878956],[-127.29604208324241,52.90400000540559],[-127.29633991420171,52.903994482029056],[-127.29663678749053,52.90398784769758],[-127.29693369709935,52.9039828978333],[-127.29723173255425,52.90398409448119],[-127.29753063814827,52.90398303926269],[-127.29783045000879,52.90398140842423],[-127.29813033041037,52.90398202654475],[-127.29842848529266,52.903987137009324],[-127.29872319007164,52.90400125983305],[-127.29901265085215,52.9040266384361],[-127.29927082073716,52.90409495969122],[-127.29955932756813,52.90421112882349],[-127.29997569062665,52.904305719684935],[-127.29987188808809,52.90441333871809],[-127.299614232788,52.9044845518059],[-127.29932061894088,52.90456736907676],[-127.29905522156474,52.904628579618986],[-127.29879020031377,52.90467185329384],[-127.29856316798576,52.904739363645795],[-127.29831524479752,52.9048244713646],[-127.29810510381532,52.904957363097374],[-127.2980005939062,52.90510309387805],[-127.29793800359793,52.9052802990826],[-127.29787071431174,52.905455879422504],[-127.29780530361684,52.905632003833986],[-127.29776320804385,52.90580898276081],[-127.29775469791018,52.9059883975114],[-127.29776297747998,52.90616819187842],[-127.29776474970323,52.90634861390923],[-127.29775251550915,52.90652806968215],[-127.29773471014569,52.90670758689193],[-127.29771875173145,52.90688708370287],[-127.29771025609114,52.90706649816621],[-127.29773155459037,52.90724613983348],[-127.29775005075659,52.90742525649904],[-127.29774157234638,52.90760523557521],[-127.29772747565924,52.90778471174682],[-127.29771804140734,52.90796413646355],[-127.29772538246003,52.908143932002666],[-127.29774111055724,52.908323643968785],[-127.29775123741986,52.90850340873725],[-127.29777646376056,52.90868917554481],[-127.29768925080688,52.90885321170098],[-127.29752984194549,52.90900122379471],[-127.29734982962346,52.909145544704636],[-127.29716231662945,52.90928827136973],[-127.29697953306037,52.90943317810956],[-127.29681362910478,52.909582390451924],[-127.29666574549944,52.90974204658482],[-127.29658153113631,52.90991276424036],[-127.29655153987277,52.91009017362004],[-127.29653463466387,52.91026912436708],[-127.29652801243037,52.91044907355453],[-127.29652419312212,52.910629556690864],[-127.29652131460725,52.91081059429766],[-127.29651190871243,52.910991138957606],[-127.2964969161884,52.91117174516002],[-127.29644643958557,52.91134938010508],[-127.29630307499869,52.9115045027237],[-127.2961098761164,52.9116444836377],[-127.29590331647158,52.911773959758335],[-127.29569482545259,52.91190122422692],[-127.29548163583108,52.912027410322516],[-127.29526747030319,52.91215193010958],[-127.29504954498759,52.912275370118415],[-127.29483156744695,52.91239713363299],[-127.29460979578214,52.912516688003855],[-127.29437280151414,52.912625766766375],[-127.29413486546741,52.91273429949803],[-127.29391023832912,52.91285220725184],[-127.2936847883717,52.91297348584997],[-127.29347354980632,52.9131024530023],[-127.29330280063279,52.91324610031912],[-127.29317725568163,52.91340607072649],[-127.29307808775006,52.913575828860374],[-127.29299115285623,52.91374994441115],[-127.2928986109464,52.91392299177006],[-127.29279568233407,52.9140916791284],[-127.29269276977566,52.91426092208482],[-127.29258138332055,52.914427451664196],[-127.29244648650041,52.91458640309602],[-127.29226738882869,52.914731261127216],[-127.29211463700257,52.914885360378044],[-127.29197320906589,52.91504381805286],[-127.29183931659126,52.91520555503887],[-127.29172042205067,52.91536993354675],[-127.29162308925964,52.91553911409776],[-127.29153986890579,52.91571317851453],[-127.29147257073672,52.915889874436004],[-127.29142674815863,52.91606802019267],[-127.29140607710202,52.916246445755355],[-127.29140891646408,52.91643245848616],[-127.2914526081533,52.916613539839815],[-127.291558157347,52.91677656615523],[-127.29172462426682,52.9169210006701],[-127.29192714742449,52.917056628997],[-127.29214262191586,52.91718875251857],[-127.29234976012133,52.91732264384327],[-127.29252545900432,52.917464169487005],[-127.29262354767455,52.91762672088909],[-127.29261991524407,52.917813925331444],[-127.29259184955853,52.91799411778822],[-127.292556265378,52.91817214234648],[-127.29251229247659,52.91835026798026],[-127.2924636532503,52.918527879972075],[-127.29241222729645,52.91870552252699],[-127.29235890635225,52.91888262099209],[-127.29230842048618,52.91906081798411],[-127.29225330216829,52.91923962169176],[-127.29217656951742,52.919412494120586],[-127.29205764963226,52.919576872706656],[-127.29187960658523,52.919726765709136],[-127.29164430866844,52.91983189226388],[-127.29138698611455,52.919917095608774],[-127.29111633756514,52.91999346967086],[-127.29083900692191,52.920064321643316],[-127.29055971062847,52.920131823309966],[-127.29028037976929,52.92019821290297],[-127.28996595248482,52.920243683465245],[-127.28964387277948,52.92028307743965],[-127.28936712016473,52.92034214726433],[-127.28918678586214,52.920447796228544],[-127.28910100300753,52.920598915509785],[-127.28907476610644,52.920778521747685],[-127.28908157508828,52.92097289150859],[-127.28909776317049,52.92116884410129],[-127.28909867939812,52.921353200653286],[-127.28909580031451,52.92153479242118],[-127.28910779039117,52.921715656433946],[-127.28915040324293,52.92189226685598],[-127.28924124213526,52.92206162447329],[-127.2893710281772,52.92222495158793],[-127.28951558089706,52.922383633780925],[-127.28968313735359,52.92253254187702],[-127.2898580797895,52.92267968318523],[-127.29000255086564,52.92283555933084],[-127.29012598308665,52.923004003059916],[-127.29021978461031,52.9231789311032],[-127.29025018434257,52.92335174785351],[-127.29018456171482,52.92352281994141],[-127.29005646162531,52.923692335372465],[-127.28991880725697,52.92385355428397],[-127.28975943415585,52.9240054802521],[-127.2895944206129,52.92415578219112],[-127.28945197973948,52.92431312585059],[-127.28932836907723,52.92447698745962],[-127.28920944087905,52.92464191835841],[-127.28908116199608,52.9248052749044],[-127.288943485163,52.92496648376532],[-127.28880583928388,52.92512825695161],[-127.28868126809365,52.925291572377745],[-127.28858012391892,52.925459105139986],[-127.28851267951379,52.92563188150313],[-127.28845929785076,52.92580730121366],[-127.2884152657449,52.925984295149576],[-127.28837967451189,52.92616288223534],[-127.2883487646467,52.92634198289453],[-127.28832440070876,52.92652212364157],[-127.2883028405009,52.926702798523486],[-127.28828314107065,52.92688289712532],[-127.28826438227982,52.92706354129224],[-127.28824465052925,52.92724307534608],[-127.28822585751281,52.9274225991002],[-127.28821265305523,52.92760206166242],[-127.28820411322206,52.92778147314787],[-127.28820023998504,52.92796138942229],[-127.28819729099952,52.92814130452643],[-127.2881943566213,52.92832121048469],[-127.28819048356516,52.9285011356621],[-127.28818474725207,52.92868107224617],[-127.28818085703519,52.9288604327192],[-127.28817790790548,52.92904034772379],[-127.28817124743014,52.92922029436063],[-127.28815990516927,52.92939973633002],[-127.28814297383578,52.9295792394447],[-127.2881335792535,52.929761466377606],[-127.288127005283,52.929944774190545],[-127.2881167033114,52.93012756689497],[-127.28809327737191,52.93030826172735],[-127.28805016124198,52.93048468906184],[-127.28797988571728,52.93065637472192],[-127.28787865824198,52.930821665601314],[-127.28775960502021,52.93098323330034],[-127.28762650079739,52.93114215720639],[-127.28748120823775,52.93129840793148],[-127.28732748943949,52.93145362987067],[-127.28716812932122,52.93160722768654],[-127.28700596623911,52.93176086487258],[-127.28684379982035,52.93191393699424],[-127.28668445330257,52.93206809877555],[-127.28653072881983,52.932223319601114],[-127.28638167034687,52.93237904509148],[-127.28622703659138,52.93253484025331],[-127.28606676328876,52.93268956710075],[-127.28590462380178,52.9328437582053],[-127.28574434843497,52.93299849354753],[-127.28558875401448,52.93315373340536],[-127.2854406449216,52.93331001202319],[-127.28530285725778,52.93346841919548],[-127.28523178951681,52.933614890408585],[-127.28516749265886,52.9337999484284],[-127.28515984610966,52.93397879322218],[-127.28514067313223,52.9341773721654],[-127.28512328740963,52.93434230960368],[-127.2851255571382,52.93450982978961],[-127.28519322781727,52.93468336931094],[-127.28530178634735,52.93485253530964],[-127.28543250338221,52.935015290733176],[-127.28558535857441,52.93516996808533],[-127.2857566967704,52.9353199514697],[-127.28592063219511,52.93547114516659],[-127.28605308134232,52.93562939803929],[-127.2861486028439,52.93579870564703],[-127.28622658584896,52.93597380845297],[-127.28628511623822,52.93615305078876],[-127.28632130229059,52.93633252826908],[-127.28633135399883,52.936511179524736],[-127.28632278738283,52.936690025233354],[-127.28629839215294,52.93686960872072],[-127.2862609705412,52.93704989935733],[-127.28621047118632,52.93722920314527],[-127.28614776776219,52.937405842874654],[-127.28607285797237,52.93757925370238],[-127.28598295626675,52.93775003088074],[-127.28587341126816,52.93791821621351],[-127.28574699545196,52.938083779365115],[-127.28560456143259,52.93824335774633],[-127.28544981879415,52.938396345947645],[-127.28527716241057,52.9385428051146],[-127.2850688467946,52.938681252260835],[-127.28483373168434,52.93879644721596],[-127.28457693455933,52.938872661715095],[-127.28429076519318,52.93890211648702],[-127.28398320239663,52.93890210905469],[-127.28367731727626,52.93889592300181],[-127.2833806646573,52.93888682920662],[-127.28308370816872,52.93886765142107],[-127.28278695456498,52.938855195048816],[-127.28249079183043,52.93886233975627],[-127.28219500056028,52.93888181664808],[-127.28189942823492,52.93890857065942],[-127.28160387227226,52.93893587962716],[-127.28130354903898,52.93895988651509],[-127.28101004135596,52.93899334017677],[-127.28073500152222,52.93905180408785],[-127.28049095745176,52.93914972053502],[-127.28026440571206,52.93927098151364],[-127.28003682940574,52.93938945583782],[-127.27980345912107,52.93950125935544],[-127.2795710288519,52.939613617019326],[-127.27934050938329,52.93972707416635],[-127.27910904950903,52.93984054105787],[-127.27888042675924,52.93995566222735],[-127.27865561164674,52.940072974064925],[-127.2784326944673,52.94019195041452],[-127.27821170502612,52.94031259096275],[-127.27799449338907,52.940435422551985],[-127.27777920947713,52.94055991836764],[-127.27756864282776,52.94068660402962],[-127.27736091328165,52.94081494408173],[-127.27715225792026,52.94094328482087],[-127.27694266032987,52.94107107950621],[-127.27675859804364,52.94121148970716],[-127.27655749379511,52.94134310960912],[-127.27635833596182,52.94147751433763],[-127.27622987490649,52.94163861463331],[-127.27611272643718,52.94180351020302],[-127.27599836491659,52.941968375425965],[-127.27583660819411,52.94216905243182],[-127.27583704615982,52.94230801747284],[-127.27581633059117,52.94248755778342],[-127.27581519181904,52.94266745078382],[-127.27579632263352,52.94284640619686],[-127.27575132975471,52.9430245328868],[-127.27570727548223,52.94320264040071],[-127.27560677743872,52.94336399266708],[-127.27540770698072,52.943594776724936],[-127.27531670889134,52.94373081399532],[-127.27533405204883,52.943811874071486],[-127.2753971297867,52.94398826503677],[-127.27546668974087,52.944163465013865],[-127.27547669571666,52.9443415515187],[-127.27546437354437,52.94452156544018],[-127.27550884985494,52.94469927850462],[-127.27554474598357,52.94487036015307],[-127.27568042540085,52.94504315807933],[-127.27578799965663,52.94521122159837],[-127.27588907798598,52.94538047612169],[-127.27590561843385,52.94555905651824],[-127.27579233830909,52.94582253283465],[-127.27554417820967,52.94572211496104],[-127.27525673201951,52.94567983473863],[-127.27498483209337,52.94565812331628],[-127.27467047163675,52.94561950422747],[-127.27437212833816,52.94561768579454],[-127.27409106357976,52.94560167511243],[-127.27378340219668,52.94559996498061],[-127.27349447862434,52.9455700243962],[-127.27319887366765,52.94556649678006],[-127.27289997533728,52.94557701751998],[-127.27260269083457,52.9455796660457],[-127.2723050695996,52.94557055437352],[-127.2720082892933,52.94555863554712],[-127.27171067003083,52.9455500782317],[-127.27141309954084,52.94554264932497],[-127.27111574825055,52.945543053378834],[-127.27081114122795,52.94554970343523],[-127.27053676896207,52.945601420120646],[-127.27031675351932,52.94572538759358],[-127.27008238391161,52.94583719050781],[-127.26982699187653,52.945931279162],[-127.26959159515853,52.94603972997665],[-127.26937340500146,52.946162555200104],[-127.2691665967497,52.946291990600194],[-127.26897115330385,52.94642746261145],[-127.26878522778115,52.9465695560322],[-127.26860210575684,52.94671217480678],[-127.26841233348449,52.94685039099736],[-127.26820738246323,52.94697979561978],[-127.26798627857352,52.94709873145702],[-127.26775473177581,52.94721161981983],[-127.26751557831612,52.94731954187085],[-127.26727069882119,52.947423042167514],[-127.26702293146083,52.9475237667311],[-127.26677417204344,52.94762226895697],[-127.26652349752162,52.94771910567783],[-127.26627000027064,52.94781485148361],[-127.2660145396919,52.94790781155774],[-127.26575526557004,52.94799745886622],[-127.26549303710017,52.94808208962688],[-127.26522691338025,52.94816115805543],[-127.2649539745981,52.9482307685002],[-127.26467324502289,52.94828869892794],[-127.26438670854121,52.94833996672675],[-127.26409918034055,52.94838900303229],[-127.26381265740247,52.94844026927126],[-127.26353098552002,52.948498207050484],[-127.26325129325872,52.94856004989872],[-127.26297257439855,52.948623558222984],[-127.26269291348414,52.9486865111369],[-127.26241222781877,52.94874612117939],[-127.26212949617614,52.94880013992687],[-127.26184181288092,52.94884413357108],[-127.26154912789498,52.948876408092936],[-127.26125348965219,52.94890366581088],[-127.26095978155446,52.94893315251035],[-127.2606670636461,52.948964860336794],[-127.26037340436811,52.94899602163114],[-127.26008068404398,52.949027172140696],[-127.25978794838046,52.94905832208171],[-127.25949427136419,52.94908892548369],[-127.2591996028716,52.949117288354934],[-127.25890585872735,52.94914564956831],[-127.25861216377086,52.94917568610734],[-127.25832044810048,52.949209618776834],[-127.25802601165533,52.94924638605276],[-127.25772626294822,52.94929217503714],[-127.25749045257038,52.94938827747567],[-127.25731560926523,52.94952854808847],[-127.25716456917057,52.94968593985144],[-127.2570155227454,52.94984723709308],[-127.25684935394536,52.9499975007643],[-127.25667472124736,52.95014505719578],[-127.25649160792116,52.95028934168923],[-127.25629320318534,52.95042146115943],[-127.25605952824284,52.95052705936116],[-127.25578583345417,52.95060338944113],[-127.25552939232377,52.95069578077266],[-127.25530165273932,52.950813077134974],[-127.2550508341678,52.950906528166655],[-127.25477211926457,52.950970581495035],[-127.25449345441491,52.95103686607771],[-127.25422160084331,52.95111260798165],[-127.25401650371737,52.95123919115087],[-127.25383807877914,52.951385106902755],[-127.25365303687727,52.9515277216982],[-127.25342233585219,52.951640007071965],[-127.25314798500344,52.951725859388944],[-127.2529502386815,52.95184900023571],[-127.25284234291841,52.95201601334262],[-127.2527628666925,52.952197858091296],[-127.2526606932777,52.95236929294984],[-127.2524913644987,52.95250782060787],[-127.2522767375437,52.95262777760274],[-127.25203753074253,52.95273622356268],[-127.25178316339628,52.952836429318026],[-127.25152115758843,52.952930556256355],[-127.25126089919844,52.9530207370614],[-127.25099663147088,52.95310142934842],[-127.25072081644136,52.953169924821296],[-127.25044115704759,52.95323453348822],[-127.25016535659034,52.95330358335332],[-127.24990110161761,52.95338483782977],[-127.24964555384456,52.9534766415617],[-127.2493957799144,52.953575116689066],[-127.24915080376792,52.953678014250265],[-127.2489077236595,52.9537820208509],[-127.24867227938964,52.953892105386515],[-127.24844164937473,52.954007177102916],[-127.24820809960974,52.95411836129527],[-127.24796112217696,52.95421680362845],[-127.2476978476292,52.954300284039014],[-127.24742690061512,52.95437600015606],[-127.24715595401439,52.95445227150285],[-127.24689460483383,52.95453741522965],[-127.24664765449728,52.95463696618056],[-127.24641028642971,52.95474538981088],[-127.24617487946313,52.95485714534827],[-127.24593557921466,52.954963347011926],[-127.24568682564478,52.95506515636264],[-127.24541763753487,52.95513805184572],[-127.24512992664168,52.955183115894016],[-127.24478355162017,52.95523048481246],[-127.24496861880729,52.95537366465818],[-127.24514720432056,52.95551858931536],[-127.24527119948347,52.95567753937812],[-127.2453137134405,52.955855838035205],[-127.24535164064044,52.95603643553819],[-127.24541180846745,52.95621287088569],[-127.24547197517535,52.95638874136508],[-127.24551818653303,52.95656588904946],[-127.24552348397916,52.95674682252125],[-127.24554641866415,52.95692533701401],[-127.2456567076995,52.957093397180614],[-127.24592010972448,52.957172978524035],[-127.24621557150002,52.95723317704692],[-127.24646051385471,52.95731912087281],[-127.24658291758583,52.95748705197435],[-127.24659295339924,52.95767017660748],[-127.2465299240506,52.95784231158454],[-127.24644922403374,52.95801575421037],[-127.24635451600396,52.958188224279326],[-127.24624761633281,52.95835858183271],[-127.24613223717067,52.95852623169422],[-127.24600832745756,52.958688924004306],[-127.24583926345113,52.95883808048036],[-127.24565043398188,52.95898073045851],[-127.24548600459956,52.95912928149339],[-127.24539766009154,52.95929663567105],[-127.24536662707905,52.95947851780655],[-127.24529715452171,52.95965352621989],[-127.24517516825962,52.95981843854599],[-127.24502021965534,52.95997249209716],[-127.24482753881965,52.9601112543403],[-127.24458236660516,52.96020910486914],[-127.24431335694905,52.96028927543854],[-127.24405491887615,52.96037997592108],[-127.24382236058271,52.960494502134246],[-127.243654108459,52.96064029343963],[-127.24351800658816,52.9608008700769],[-127.2433743657256,52.960959284705034],[-127.2432090287531,52.96110896250147],[-127.24303237325023,52.96125427667328],[-127.242842436542,52.96139188577281],[-127.24262123580677,52.961512448994554],[-127.24238573248448,52.96162252044848],[-127.2421454450507,52.96172872388804],[-127.24190810758431,52.9618399343893],[-127.24170958589704,52.96197090785181],[-127.24156877116909,52.96213041096372],[-127.24144956878234,52.962295845483304],[-127.24133879592931,52.962462320692566],[-127.24123180004307,52.962630432541964],[-127.24112386205796,52.96279798936118],[-127.24099066374059,52.96296301490474],[-127.24086764622344,52.9631256916285],[-127.24093033196965,52.9632925804285],[-127.24106858675097,52.96346034962478],[-127.24119465049077,52.963626005704405],[-127.24137223489817,52.96376758404008],[-127.24159944296468,52.963883983701734],[-127.24184401417415,52.963988428061775],[-127.24209487462932,52.96408440484158],[-127.24235303071013,52.96417470065454],[-127.24282121866197,52.96433562573032],[-127.24305302213499,52.964449732741265],[-127.24328664081446,52.96456157874433],[-127.24353747514847,52.96465643206522],[-127.24379925232985,52.96474276855604],[-127.24406553691053,52.96482400923987],[-127.24433632747945,52.96489959823378],[-127.24460975938987,52.96496955520686],[-127.24489217218964,52.96502820964837],[-127.24517899224712,52.96507785123545],[-127.24546835482649,52.96511849964965],[-127.24576123529222,52.96515238595677],[-127.24605149093985,52.96519190280421],[-127.24633667869318,52.96524940376022],[-127.24657744034617,52.96534996074994],[-127.24678364788973,52.96548114186237],[-127.24705908354933,52.96555555480265],[-127.24731523022236,52.96564025763834],[-127.2474873153416,52.965784126514386],[-127.24763469843337,52.96594450241665],[-127.2477912565249,52.966099186417054],[-127.24799643140055,52.966226449430806],[-127.24825462958162,52.96631729685234],[-127.24853169271147,52.9663838442531],[-127.24879530581137,52.96646846478324],[-127.24904713635085,52.96656441665386],[-127.24928919871634,52.96667728207859],[-127.2494455199465,52.966824112551464],[-127.24953537182907,52.96699350596404],[-127.24960118307145,52.9671704433288],[-127.24965682883114,52.96735028573909],[-127.24970773840404,52.967527372117075],[-127.2497372466327,52.96770637101631],[-127.24976530208812,52.9678993985268],[-127.2497621874953,52.968079299312215],[-127.24975484683318,52.96827382296079],[-127.24983973744297,52.96843318237679],[-127.24999626318841,52.9685861782095],[-127.25018408026189,52.9687253934037],[-127.2502191525891,52.96890321234147],[-127.25019739101873,52.969082755056455],[-127.2501952345994,52.96926321040797],[-127.25025446677391,52.96943796668265],[-127.25036385067976,52.96960547545295],[-127.2504713870162,52.96977355958972],[-127.25055664570166,52.969945242178575],[-127.25063822479352,52.970118640318475],[-127.2507160752275,52.97029208693821],[-127.25079021303868,52.97046612877514],[-127.25085878998478,52.97064135028947],[-127.25089857059511,52.97082079544415],[-127.25101340662232,52.97098319803003],[-127.25118199398612,52.97113382273287],[-127.25134313981316,52.97128509105901],[-127.2514996978167,52.97143864032417],[-127.2516608459287,52.971589908188186],[-127.25183671589197,52.97173428626645],[-127.25204475314081,52.97186264146702],[-127.25226657102905,52.97198356082495],[-127.25250967867409,52.97209864996861],[-127.2527211191865,52.97221575187208],[-127.25296663976233,52.972317930894455],[-127.25320758917415,52.97242295529156],[-127.25343855598557,52.972537606841904],[-127.25365117261158,52.97266254843024],[-127.25383901965134,52.97280175745691],[-127.25401861544971,52.97294553679159],[-127.25421294990325,52.973082990651335],[-127.25436665421411,52.97323433406963],[-127.25448160915597,52.9734000940749],[-127.25449623846058,52.973579805682796],[-127.25451738625719,52.97375889200332],[-127.2545310761653,52.97393862253846],[-127.2545466458037,52.974118324074375],[-127.25459106565526,52.974296041851474],[-127.25473188617389,52.97445312540367],[-127.25488846981962,52.97460723468624],[-127.25501239253991,52.97479195042681],[-127.25514029330347,52.97495364490254],[-127.25518841344405,52.97513020228994],[-127.25521889173118,52.97530975379682],[-127.25524284990418,52.97548936577046],[-127.25524538459786,52.97566977077094],[-127.25527117531105,52.97584825145205],[-127.25533606572031,52.9760240652197],[-127.25544083290578,52.97619217405519],[-127.25556690779979,52.976355017108055],[-127.255704107607,52.97651549111453],[-127.25584594576213,52.97667480379436],[-127.25597849417832,52.97683589187489],[-127.25608509613248,52.97700229502308],[-127.25616760355766,52.97717456735898],[-127.25623434837955,52.97734980492044],[-127.25629181773279,52.97752681787717],[-127.25634370890151,52.97770445509379],[-127.25639373538023,52.9778821121544],[-127.25642420254408,52.97806054255265],[-127.25644536218863,52.97824018389402],[-127.25647772808053,52.97841971469486],[-127.25650930306469,52.97860429254373],[-127.2566081949032,52.97866767347904],[-127.25674259158322,52.97873292604752],[-127.25697779395426,52.978831835807945],[-127.2572233793905,52.978934561244294],[-127.25744344998834,52.97905773092331],[-127.2576377738707,52.97919350260169],[-127.25778693967683,52.97934768705631],[-127.25791493125233,52.979511627721415],[-127.25807700806115,52.979661191211115],[-127.25828148664168,52.97979292651135],[-127.25848134587324,52.97992639631336],[-127.25869314052726,52.9800535789682],[-127.2589031689468,52.98018357736527],[-127.25911686428573,52.980311850690256],[-127.25933869671691,52.98043108009481],[-127.25957594417282,52.98053501048412],[-127.25984214186771,52.98060892805417],[-127.26013099965628,52.98066019782492],[-127.2604216734341,52.98070976194773],[-127.2606970487551,52.98077797598077],[-127.26095983521361,52.98086257861784],[-127.26121724128056,52.980953962419264],[-127.26147552389357,52.981043659724804],[-127.26173199207217,52.98113505245496],[-127.26197114940094,52.98124063419393],[-127.26201894213494,52.98134210553567],[-127.26223996781523,52.981559394401366],[-127.26238643651347,52.98171640818739],[-127.262570736296,52.981859003350245],[-127.26277255055668,52.98199468640077],[-127.26291054631045,52.9821176046857],[-127.2629772018415,52.98232029175013],[-127.2630096649854,52.98250206099078],[-127.26304303683588,52.98268325563776],[-127.2629244344254,52.982836376060696],[-127.2626464140154,52.982899316539786],[-127.26236160698741,52.98295391936655],[-127.26207871275535,52.98300962170457],[-127.2618820169574,52.98304646937336],[-127.26185554010841,52.98328601621077],[-127.26186566638681,52.98347026615521],[-127.26188033036694,52.98364997576077],[-127.26190245626452,52.98382961441737],[-127.26192179145997,52.98400927396742],[-127.26192990301503,52.98418849780772],[-127.26192030074817,52.98436791129305],[-127.26192451368642,52.9845410175177],[-127.26193455728836,52.98472246199833],[-127.26189184277737,52.98491791962995],[-127.26188382281819,52.985087785731814],[-127.26184055914123,52.98526476225645],[-127.26173929954561,52.98543674719683],[-127.2615586261598,52.98557372893102],[-127.2613146014746,52.9856822414187],[-127.26107523201848,52.98579071253784],[-127.2608358445938,52.985898618515016],[-127.26063157433039,52.98602687667457],[-127.2604539495638,52.986172224687714],[-127.26022788254724,52.98628895243417],[-127.25999040560457,52.986398521699535],[-127.25977307188032,52.98652691792929],[-127.25970968637895,52.98668617744346],[-127.25977562011727,52.986864783054024],[-127.25978099874902,52.987046277233915],[-127.25975652277994,52.987196146359494],[-127.25965885449708,52.98739555215433],[-127.25953684434528,52.98756047660054],[-127.2593790061515,52.98771290027135],[-127.25921269616639,52.98786260800662],[-127.259031644647,52.98801919707571],[-127.25898349382655,52.988188935328786],[-127.25896739085988,52.988370093986134],[-127.25892695072967,52.98854815945901],[-127.25888462947235,52.98872623602062],[-127.2588217018517,52.988901179515814],[-127.2587024915429,52.98906662882949],[-127.25862455463714,52.98923892624461],[-127.25861216454695,52.989419489213184],[-127.25853891642718,52.98959285714661],[-127.25844694493306,52.98976418353174],[-127.25836152665617,52.98993600468784],[-127.25820627854766,52.99017636820945],[-127.25817235247082,52.990322975458064],[-127.25797235119649,52.99050162264767],[-127.25777003023715,52.990633216423944],[-127.25752294553483,52.990734472995065],[-127.25730351792724,52.99085617121068],[-127.25709452326807,52.99098335219887],[-127.2569158922532,52.991127584146085],[-127.25671452382564,52.99126029548948],[-127.2564374621072,52.99132600733139],[-127.25615744436969,52.99138670244414],[-127.25589012496853,52.991466878066795],[-127.25559268247683,52.99147452939827],[-127.25544649447278,52.99145367273081],[-127.2552944308693,52.9914552921537],[-127.25500688186479,52.991513832298146],[-127.25470305008133,52.991526588002316],[-127.25440123275632,52.99154436904882],[-127.25412357060196,52.991589909450326],[-127.25385040116349,52.991661741971214],[-127.25358304091243,52.99174022720995],[-127.25330988597987,52.9918126141571],[-127.2530508297101,52.99188821264491],[-127.25280037486282,52.99200238721759],[-127.25254623584303,52.9920863329533],[-127.25223673571378,52.992192168188716],[-127.2519949961402,52.9922221881728],[-127.25184723854488,52.99221142986535],[-127.2517129026136,52.99224423551487],[-127.2514268788565,52.99232347875489],[-127.25115076043178,52.99239028863943],[-127.25085771818111,52.9924208597277],[-127.25046051408357,52.99233709572855],[-127.25016420426529,52.992352010192015],[-127.24986695221709,52.99236636907453],[-127.24957079006965,52.99238631906621],[-127.24928078472996,52.99242525466877],[-127.24899487252944,52.992476473692165],[-127.24870600527778,52.99252267576182],[-127.24841812723832,52.99257055214586],[-127.24814403275113,52.99264293688845],[-127.24799921162442,52.992795762259185],[-127.24798211645462,52.992849180121794],[-127.24793215608378,52.99295897103473],[-127.24801718516088,52.99315363435411],[-127.2480243307123,52.99333342365305],[-127.24802308789073,52.993513310704465],[-127.24801717277917,52.99369323823523],[-127.24798320465199,52.99387123033069],[-127.24790055974853,52.99404412530568],[-127.24780477116545,52.994214362100976],[-127.24768925135437,52.99438032490062],[-127.2476131916975,52.99455483540631],[-127.24751923379495,52.99472393183875],[-127.24734524467,52.99486922001086],[-127.24716565533771,52.995014011289015],[-127.24705671810302,52.995181580240484],[-127.2469129413763,52.99533887558579],[-127.24671342053188,52.99547267010943],[-127.24644017912944,52.995542800155995],[-127.24617864293191,52.99563073670186],[-127.24591624584612,52.99572092310878],[-127.24566624625079,52.99581994335717],[-127.24544380261159,52.99593603799814],[-127.24524235904329,52.99606816471715],[-127.24505237238247,52.996209135505865],[-127.24487755822713,52.9963583553264],[-127.2447234320513,52.996512950867505],[-127.24459276947812,52.99667234601772],[-127.24449410463329,52.996840368661935],[-127.24441989503012,52.99701542195988],[-127.2443616677587,52.997194224388686],[-127.24431184439139,52.99737293806739],[-127.24426757085331,52.99755047245176],[-127.24423267467382,52.997729028510605],[-127.24420620057256,52.99790861633458],[-127.24418813212354,52.9980886712821],[-127.24417658580069,52.998268101522555],[-127.24418183366564,52.99844735451509],[-127.24412000842082,52.99859874250275],[-127.24397845507488,52.99867308015074],[-127.24384464400312,52.99875685721124],[-127.24365076874363,52.99886144885048],[-127.24349755076165,52.99895159840764],[-127.24321729622254,52.9991024832303],[-127.24293107295907,52.99927248177385],[-127.24269513317716,52.999438587572484],[-127.2425060074131,52.99960980290724],[-127.24236981767459,52.99974011578657],[-127.24226585820914,52.99988745489799],[-127.24220941798372,53.00000011712874],[-127.2420995065961,53.00016713507096],[-127.24203087966872,53.00034212754198],[-127.24179131270019,53.00044830892753],[-127.24149929740629,53.00048444851147],[-127.24121924721516,53.000546792788164],[-127.24097586314483,53.00065021544947],[-127.24077535658579,53.00078344459745],[-127.24054055647878,53.00089350003503],[-127.24028856590958,53.000989722903306],[-127.2400384745885,53.00108761073515],[-127.23982559674592,53.00121312357055],[-127.23969778989999,53.00137528864515],[-127.2394906223563,53.0015046586659],[-127.23920564316897,53.00155808444567],[-127.23890856273603,53.00154887895188],[-127.23861342035372,53.001574393235444],[-127.23832644283246,53.0016233551698],[-127.23804925401352,53.00168846786284],[-127.23790073130532,53.0018446801876],[-127.23786767104153,53.002023214314285],[-127.23777745551692,53.00219450370828],[-127.23771724528581,53.00237051658896],[-127.23765984285893,53.002547064762126],[-127.2376080699975,53.002724118614616],[-127.23755439910005,53.00290062752332],[-127.23751760408352,53.00307920061438],[-127.2375312312805,53.003258921012595],[-127.23761187932865,53.00343177875062],[-127.23773517604215,53.00359522337372],[-127.23786960477919,53.003755753801045],[-127.23800956933395,53.00391454045853],[-127.23814860925904,53.0040733366548],[-127.23828119097529,53.004234441847146],[-127.23839988316442,53.00439961062776],[-127.23850559392221,53.0045677217916],[-127.23860387293185,53.0047370315878],[-127.23870401904247,53.004906321679684],[-127.23881250808563,53.00507384750564],[-127.2389404548109,53.005236121285364],[-127.23911184422855,53.00538336970043],[-127.23932644914804,53.00550830611006],[-127.23956299422039,53.00561733107045],[-127.23980044974233,53.005725781171364],[-127.24001322475202,53.00585185625601],[-127.24021223992285,53.00598592934176],[-127.24034941200212,53.006144177732864],[-127.2402601726401,53.006317143842644],[-127.24016336735654,53.00648626259853],[-127.23997346426373,53.00663226132152],[-127.23994949719784,53.006802855267836],[-127.24003242057502,53.0069891352824],[-127.23996988900605,53.00714949283123],[-127.23980507344724,53.00729186538019],[-127.23960461372292,53.00742789731076],[-127.23938628314296,53.007559625054],[-127.23917168435067,53.007691322120195],[-127.23896066997919,53.00781793361694],[-127.23874398966993,53.00794236289181],[-127.23851891776862,53.00806743573066],[-127.23829764150685,53.00819415374712],[-127.23812155244735,53.008334409758234],[-127.23801702318723,53.00849519800709],[-127.23796055443971,53.00867173581101],[-127.23793229490018,53.008855266276974],[-127.23791896685312,53.009038631011634],[-127.23790744017556,53.00921974444351],[-127.23791185279198,53.00940348772877],[-127.2379478807091,53.00958241645318],[-127.23805155635606,53.0097443808312],[-127.23828048206751,53.00987981950877],[-127.23836437279874,53.010035276300265],[-127.23833775180665,53.01021093587834],[-127.23826740606457,53.01039210202317],[-127.2381764282726,53.01056956686242],[-127.23807113266079,53.010736531090664],[-127.23791884524306,53.01089278179233],[-127.23774858817623,53.0110413761971],[-127.23755659402624,53.01118066827849],[-127.237364566249,53.01131884867392],[-127.23721121780643,53.011470626824405],[-127.23709745987362,53.01163599332219],[-127.23700446098746,53.01180843076643],[-127.23691704630167,53.011980809545676],[-127.23682120589069,53.01215215593007],[-127.23673570394564,53.012325635131816],[-127.23668669139305,53.01250209362986],[-127.236643539306,53.01268745596187],[-127.23659775886058,53.01287901395546],[-127.2365705780551,53.01306757074961],[-127.23657947998299,53.013245098400034],[-127.2366438612394,53.01340412265504],[-127.23680344081099,53.013530205164585],[-127.23705825054972,53.01362391003585],[-127.23735292555382,53.01370766600106],[-127.23762737963524,53.013802849044964],[-127.23784010716753,53.01392613112335],[-127.23802808331591,53.01406479713193],[-127.23820135697952,53.01421202666447],[-127.2383654602042,53.014364399703645],[-127.2385221477753,53.01451908274887],[-127.23867695226905,53.01467267366049],[-127.23882804185037,53.01482741508542],[-127.23897546308855,53.014983880328785],[-127.2391191696227,53.01514150507533],[-127.23926104185524,53.01529971373138],[-127.23939921554681,53.01545963759184],[-127.23953459756365,53.01561959062453],[-127.23966720409055,53.01578012851818],[-127.23979426193476,53.01594297487606],[-127.23991576769849,53.01610699115587],[-127.24003264907823,53.01627274140089],[-127.24014766454619,53.016438511141786],[-127.24026175651474,53.016604855289295],[-127.24037771466227,53.016770614880144],[-127.24049646651562,53.01693634496903],[-127.24061614525445,53.01710206518307],[-127.24073397300185,53.01726780473977],[-127.24084806923149,53.01743413927644],[-127.24095474678244,53.01760168137466],[-127.24105304920884,53.01777042318606],[-127.24113739251112,53.0179409972657],[-127.24116780782751,53.01811886271763],[-127.2411684526878,53.01830096820798],[-127.24118959929886,53.018481172474594],[-127.24124889578894,53.01865704847512],[-127.24131655400289,53.01883172474136],[-127.24139075425524,53.019006323143124],[-127.24146682232315,53.01918091079373],[-127.24154287451243,53.01935493373718],[-127.24161428363824,53.01952956134104],[-127.2416791680061,53.019704822385485],[-127.2417328838148,53.019881321612864],[-127.24175771988357,53.02006036614365],[-127.24175742476794,53.020241916531006],[-127.24175339565346,53.02042350620591],[-127.24176797106048,53.020602658692056],[-127.24182532413788,53.02077575752575],[-127.24194402732017,53.02093924513312],[-127.24209156328148,53.02109851119234],[-127.24222145408552,53.02126131589699],[-127.24234277314811,53.021418616384544],[-127.2425921886447,53.02151740479649],[-127.2428615858143,53.02159693988416],[-127.24307803610169,53.02171793197625],[-127.24320978337748,53.02188016018247],[-127.24324111973088,53.02205745028916],[-127.24323237097673,53.022236848302946],[-127.2432478958456,53.02241655529474],[-127.24324849877644,53.02259641056288],[-127.24324629385497,53.02277630436878],[-127.24324782287006,53.02295614983908],[-127.24325959730567,53.0231353314686],[-127.24328351561853,53.0233143850957],[-127.24330184926478,53.02349406237157],[-127.24333042674765,53.02367250203936],[-127.24341112221653,53.023845353887396],[-127.24352342744409,53.02401283399245],[-127.24366899922458,53.024168747724886],[-127.24385890716026,53.024307392884474],[-127.24403956371307,53.02444948831227],[-127.24419997653027,53.024601327057425],[-127.24436868689472,53.024749716082674],[-127.24454108371259,53.02489638946974],[-127.24471624195553,53.025041903844986],[-127.24488956568075,53.02518800213092],[-127.24506196607626,53.0253346747192],[-127.2452408460561,53.02547959319143],[-127.24537993419905,53.02563669389235],[-127.24542061881219,53.02581389343774],[-127.24540723577053,53.02599446088711],[-127.24539195251317,53.02617392771432],[-127.24539537455094,53.0263543177248],[-127.24546492772302,53.026528406316054],[-127.24565381212457,53.02666368843069],[-127.24590514996235,53.026763014456726],[-127.2461573165261,53.02685896922355],[-127.24640417692905,53.02696450959964],[-127.24653377336838,53.02711610588013],[-127.24652794618142,53.027299399662446],[-127.24658061908251,53.02747142459355],[-127.2467142648966,53.02763362860882],[-127.24681264631562,53.02780348493727],[-127.24682068452505,53.02798158469982],[-127.24673421753053,53.02815395916831],[-127.24663552254715,53.02832366558879],[-127.24657717933496,53.02849966055156],[-127.24654226743633,53.02867821403466],[-127.24652885537614,53.028857660997865],[-127.24653600089734,53.02903745555984],[-127.24653194192078,53.02921735951416],[-127.24650730899339,53.02939636911742],[-127.24648080819698,53.02957538946244],[-127.24645149886136,53.02975444841579],[-127.24641096658794,53.02993249627558],[-127.24635543047015,53.03010902608737],[-127.24629898421693,53.03028613027457],[-127.24629117293361,53.03046551786603],[-127.2463792957432,53.03063548268295],[-127.24654805426806,53.03078443270315],[-127.24675087740992,53.03091676854245],[-127.24698391367107,53.031028048108034],[-127.24722979334909,53.03113135582868],[-127.2474085884429,53.0312717891301],[-127.24748931494989,53.03144463741899],[-127.2475375002047,53.03162231232824],[-127.24758940426474,53.03179938307292],[-127.24763572283742,53.03197707765077],[-127.24770808819873,53.032151134806114],[-127.24782687874497,53.03231573571173],[-127.24797254291504,53.0324727724881],[-127.24813113396208,53.03262518075724],[-127.24827865125845,53.03278163273831],[-127.24836401123942,53.032952754826304],[-127.24840195578672,53.033131658279956],[-127.24845199773449,53.0333087482474],[-127.24852532656782,53.03348335944203],[-127.2486209199476,53.033653243401154],[-127.24876102183882,53.03381145867381],[-127.24894269309917,53.0339541004765],[-127.24913633269514,53.034091012030494],[-127.24932904720934,53.03422793306328],[-127.24951718370558,53.034367699415355],[-127.24967206876252,53.03452070963121],[-127.24977232923435,53.03468998735751],[-127.24986796188074,53.0348604346625],[-127.25000250389162,53.0350203838298],[-127.2501592922864,53.03517393803967],[-127.25031880957539,53.035325212850935],[-127.25048480796681,53.0354747422664],[-127.25065173246178,53.03562370578781],[-127.25080665749883,53.03577726991524],[-127.25093661024403,53.035939507953124],[-127.25099965746959,53.03611366167938],[-127.25099655973897,53.036294119855704],[-127.25100936153575,53.03647497427069],[-127.25113361503401,53.03663391051238],[-127.25134755290865,53.03676107318072],[-127.25159341035037,53.03686213085541],[-127.2518584595318,53.036948971778614],[-127.25205378998248,53.03707857188035],[-127.25212524081017,53.03725263579562],[-127.25214923749871,53.037432806448315],[-127.25216573035416,53.037611936046325],[-127.25215233923731,53.03779138271152],[-127.25212960918286,53.037970928443826],[-127.25211621780012,53.03815037506736],[-127.25211872656304,53.03833021777846],[-127.2521324268722,53.03850993276256],[-127.25215265566804,53.03868902261491],[-127.25216823924768,53.038868726543406],[-127.25217260087885,53.03904854055618],[-127.25218349100001,53.0392277294371],[-127.25219813352257,53.03940744329361],[-127.25222117224835,53.03958650323361],[-127.25227403202672,53.0397635612642],[-127.25235014898401,53.039937019472795],[-127.25243838180347,53.040109219427514],[-127.25253215454906,53.04027968401575],[-127.25263429150087,53.04044838324894],[-127.25274758683129,53.0406152784821],[-127.2528868020554,53.040774053876206],[-127.25307868199,53.04091265405751],[-127.25320748621998,53.04106705700067],[-127.25324550644214,53.04124707819172],[-127.25325919605818,53.04142623707076],[-127.25325329672513,53.04160616875217],[-127.25326703450575,53.041786447734296],[-127.25334501041661,53.04195932063037],[-127.25350641608863,53.04211001502939],[-127.253733118531,53.0422258312548],[-127.25397904638727,53.04232800393768],[-127.25421494053985,53.042438118333386],[-127.25444716793501,53.04255107734692],[-127.25468122994646,53.04266233991197],[-127.25491893126603,53.042770757213184],[-127.25515848359953,53.04287803370576],[-127.25537972321317,53.04299838750749],[-127.2555863168849,53.0431284267233],[-127.25582761011202,53.043231765559135],[-127.25610075654973,53.04330618382969],[-127.25635484433606,53.0433992906097],[-127.25653649936768,53.043539123660636],[-127.2566794743782,53.04369785453687],[-127.25684646939025,53.04384736425028],[-127.25706125456857,53.04397002496986],[-127.25728709999977,53.04408752903935],[-127.25745773520556,53.044233637164155],[-127.25761365955616,53.0443877463438],[-127.25780368852483,53.044526367577944],[-127.25804686136063,53.044629117097074],[-127.25833239970869,53.0446798645322],[-127.25862836637967,53.04470416030218],[-127.25892651349206,53.04470770451678],[-127.25921965311476,53.04473091727722],[-127.25949813666283,53.044795740831745],[-127.25977128310632,53.04486959487393],[-127.26002811642317,53.04496042324228],[-127.2602236270282,53.04509449952331],[-127.2603629013977,53.045253821351935],[-127.26048549734632,53.04541781269375],[-127.260589546093,53.045586475625846],[-127.26065920984608,53.04576111793193],[-127.2606981424129,53.04593944140956],[-127.26072588336051,53.04611844920543],[-127.2607666849284,53.04629676163253],[-127.26083726039957,53.04647082923573],[-127.26090506004118,53.0466460470879],[-127.26094402773124,53.046825490687574],[-127.2610581313809,53.04698621012685],[-127.26122609786844,53.04713625912494],[-127.26139956861316,53.047282331270765],[-127.26158408496511,53.047423246666064],[-127.26176770895844,53.04756528299793],[-127.26193658877303,53.047714209538434],[-127.26203224950268,53.04788296077002],[-127.26203197428248,53.04806226766371],[-127.26200369266502,53.048242438773244],[-127.26204630297656,53.0484184810157],[-127.26217817228738,53.0485795652127],[-127.26232300376078,53.048736592853594],[-127.26245395004337,53.04889824244726],[-127.26258767411049,53.04905875049611],[-127.26273345006733,53.049215758556116],[-127.26288569214692,53.049370464923214],[-127.26304069666219,53.04952401192053],[-127.26320772046073,53.04967295646327],[-127.26339688122864,53.04981213384893],[-127.26362184860882,53.04992963531728],[-127.26387693602048,53.0500232802545],[-127.26413746260928,53.050111263155706],[-127.26437613803984,53.05021853056725],[-127.26456803329786,53.050355435512955],[-127.26476270634909,53.05049118973897],[-127.26499774903377,53.05060185677776],[-127.26524919023866,53.0506983350015],[-127.26550064942134,53.050795377310834],[-127.26574663840842,53.05089696033996],[-127.2659889921559,53.05100194379532],[-127.26623133052493,53.05110637108269],[-127.26647733964333,53.05120850823509],[-127.26672153188689,53.0513123498333],[-127.26698377342207,53.05139470488939],[-127.26726234626071,53.051460639128216],[-127.26753009445622,53.05153957192398],[-127.26777334760816,53.051642856651014],[-127.26799928038233,53.05176090432684],[-127.26821790804291,53.05188462433397],[-127.26836637597273,53.05203712295885],[-127.26844726079018,53.05221107510374],[-127.26848996877426,53.05238935519272],[-127.26855780779785,53.05256401222361],[-127.26871464592165,53.05271529083219],[-127.26892499757044,53.05284302523066],[-127.26915368470203,53.05295935565725],[-127.26936030203764,53.05308712943532],[-127.26954582836011,53.05322857744887],[-127.26972581764825,53.053372326022235],[-127.26992510098938,53.05350522510095],[-127.27016119920447,53.05361866777482],[-127.27031230772651,53.05376553228858],[-127.27030274178199,53.05394549477622],[-127.27026141208171,53.0541258079817],[-127.27034399087061,53.05429301662909],[-127.27050466268918,53.05444705769607],[-127.27070667972832,53.05457711993209],[-127.27091979140675,53.05470313564121],[-127.27111820815618,53.05483771852942],[-127.27132948768924,53.05496488284647],[-127.27157548122446,53.055065333198996],[-127.27183605471878,53.055153298854044],[-127.27208481028912,53.05525203295013],[-127.27232633001823,53.05535925385019],[-127.2725957455949,53.055430312842034],[-127.27289103687497,53.05546019308085],[-127.27318784578985,53.0554788407737],[-127.27348637062443,53.055491874938845],[-127.27378208735473,53.055474116341685],[-127.27407669017488,53.055481023283455],[-127.27437430693206,53.055495176689554],[-127.27466413066824,53.05553014996397],[-127.27495242116487,53.0555757897316],[-127.2752484396568,53.05559892339174],[-127.27554191784056,53.05563105791219],[-127.27581958800981,53.055696417187406],[-127.27609722710825,53.05576121134539],[-127.27638988134322,53.05579671462621],[-127.27668657429021,53.05581087222119],[-127.27698422820954,53.05582614829261],[-127.27728021583758,53.055848156571365],[-127.27757283793653,53.055882536634265],[-127.27786377736221,53.055923093276135],[-127.27815722575693,53.05595409204391],[-127.27845247383797,53.05598227345811],[-127.27874508079802,53.05601608599026],[-127.27903773900509,53.056051582702935],[-127.27932864721772,53.056091015447876],[-127.2796160891021,53.05613945024586],[-127.27990089027176,53.05619351622471],[-127.28018304874615,53.056252648618205],[-127.28046692459264,53.056306723277714],[-127.28075699373488,53.05634896773792],[-127.28104874771145,53.05638558099604],[-127.28146983714821,53.05643368174745],[-127.28124821911899,53.05655375520712],[-127.28119371805707,53.05672973278091],[-127.28120663764489,53.05691001713607],[-127.28120177936586,53.05708937374294],[-127.28120439727428,53.057269205044214],[-127.28120608864573,53.05744905534659],[-127.28116948060172,53.05762931226636],[-127.28124746397162,53.05779768400185],[-127.28145602877761,53.05792653641916],[-127.28169571693205,53.05803320244684],[-127.28198679335625,53.058077665383045],[-127.28222460010885,53.05818435077981],[-127.28235746722746,53.05834371638872],[-127.2824132868154,53.058520737417375],[-127.28239439394264,53.058699681588465],[-127.282364289157,53.05887875647463],[-127.2823369625985,53.05905723635162],[-127.28232372613964,53.05923780447203],[-127.28238974728343,53.05941190853437],[-127.28246137691792,53.05958650747233],[-127.28247426890297,53.0597656711112],[-127.28244978664418,53.05994524067567],[-127.28243277908051,53.06012472902993],[-127.28244755690581,53.06030443694041],[-127.28241930288375,53.060482926756904],[-127.2824583403882,53.060661241530326],[-127.28245815138744,53.06084054713897],[-127.28247946065719,53.061019619229285],[-127.28247274062878,53.061199560543514],[-127.28254438857229,53.061374159088786],[-127.28254416607116,53.06155234434485],[-127.2824737378621,53.06172737433993],[-127.28244644167381,53.06190640944494],[-127.28246773647886,53.062085481589776],[-127.2824787604302,53.06226466526725],[-127.28248045740158,53.06244451503305],[-127.28247654760965,53.06262441671018],[-127.28246608751309,53.06280383366982],[-127.28244813697157,53.0629833319602],[-127.28242833236965,53.06316285036364],[-127.282406643782,53.06334238920376],[-127.28239337242465,53.06352183660833],[-127.28239693796753,53.063701665949054],[-127.28240890396079,53.06388083923692],[-127.28242742051997,53.06406049720614],[-127.28248043708408,53.06423754814575],[-127.2825697528751,53.064409157412825],[-127.28268228584896,53.064575467031524],[-127.2828142836991,53.064736526667055],[-127.2829721937231,53.06488890427665],[-127.28314396187575,53.06503608370893],[-127.28331020709548,53.065185564201],[-127.28344684025096,53.06534545210156],[-127.28351381932029,53.06552010050459],[-127.28351085585834,53.065700000621554],[-127.28349945741176,53.06587942759309],[-127.28351516850488,53.06605911573662],[-127.28354582982742,53.066238085527154],[-127.28359696769502,53.06641459143898],[-127.28366118719688,53.06659039927999],[-127.28375800559759,53.066762481808084],[-127.28398662207668,53.06687262553566],[-127.28421544105998,53.066988925682345],[-127.28439087517222,53.06713325730537],[-127.28452660872203,53.067293718478645],[-127.28467158649855,53.067450708035366],[-127.2848544476559,53.06759272585382],[-127.28507500722297,53.067714152628646],[-127.28534194910095,53.06779305453817],[-127.28561623055974,53.067866837538396],[-127.28582756735031,53.06799229006309],[-127.28596143973218,53.068152760896275],[-127.28605542623582,53.06832376068507],[-127.28619579901515,53.06848248397257],[-127.28639614665883,53.06861533486762],[-127.28664414122235,53.06871629729206],[-127.28681219938947,53.06886351179164],[-127.28688571326576,53.06903696629372],[-127.28692383564422,53.069215297939984],[-127.28696291724138,53.0693941749453],[-127.28706620293482,53.06956282229592],[-127.2872610192263,53.069697982257956],[-127.28748343177672,53.069818263742974],[-127.28770490380593,53.06993856403469],[-127.287905280191,53.07007197687569],[-127.288141399741,53.07018146603835],[-127.28841205001247,53.07025863523465],[-127.28870709816833,53.07027670833022],[-127.28900743278759,53.07028463720696],[-127.28927525523608,53.070360723630785],[-127.28952868696082,53.070455452709666],[-127.28978031875404,53.07055244219465],[-127.29003195169767,53.07064943113814],[-127.29028360269173,53.07074697519448],[-127.29047201909735,53.07088611762582],[-127.29072180357979,53.070983690121224],[-127.29101835390533,53.07098996985016],[-127.29132219174504,53.07098945426239],[-127.29160537200437,53.07095553554483],[-127.29183451495692,53.07083592664149],[-127.29208585907374,53.07073904309803],[-127.2923372020427,53.07064215901434],[-127.29261533822014,53.070595965946794],[-127.29290382064983,53.070644357845275],[-127.29317897529772,53.070715307856155],[-127.29346987777734,53.070750788963565],[-127.2937041900241,53.07064736459206],[-127.29400001886404,53.070629555351395],[-127.2942983852512,53.0706341304434],[-127.29459637337747,53.070625817036124],[-127.29489304345822,53.07060519920304],[-127.2951899696279,53.07059297816458],[-127.29548850693496,53.07060315159774],[-127.29578467567346,53.070627353841026],[-127.29607911274263,53.070656065892805],[-127.29637185191834,53.07069039011052],[-127.29666630680582,53.07071965635096],[-127.29696328237792,53.07073937318077],[-127.29726139279428,53.07073553429026],[-127.2975580793421,53.07071546541814],[-127.29785474684796,53.070725097588344],[-127.29812706475954,53.0707949466936],[-127.2984265289817,53.07080453772985],[-127.29872417573092,53.07081583344477],[-127.29902219884323,53.07080863810321],[-127.29931989710924,53.070821608238184],[-127.29961764717304,53.070836262505864],[-127.2998998791416,53.07089367136195],[-127.30014971968095,53.070992344186735],[-127.30037217555203,53.0711126013106],[-127.30057993675834,53.07124142916559],[-127.30078310473229,53.071373113344734],[-127.30097893215645,53.0715087958144],[-127.30116553720177,53.07164906214736],[-127.30136134980225,53.07178417934705],[-127.30159295347819,53.07189761849735],[-127.3018025741496,53.072025858929536],[-127.30199748307578,53.07216211465809],[-127.30219330307133,53.07229779521798],[-127.30241575452027,53.07241749275101],[-127.30267829896441,53.07250312830913],[-127.3029534476022,53.07257293520802],[-127.30321868487995,53.0726546131313],[-127.30347668944708,53.07274477961246],[-127.30370832109949,53.072858770204334],[-127.30392345773127,53.07298359306792],[-127.30412664202234,53.07311470658559],[-127.30431695131921,53.07325324165203],[-127.30448330333084,53.073402691627884],[-127.30463669423085,53.073556767117324],[-127.30479656740233,53.07370852950566],[-127.30498597173768,53.07384763830305],[-127.30522035599117,53.07395935426615],[-127.30549815976107,53.074024087567544],[-127.30579423753004,53.07404434822121],[-127.30609226473696,53.07403657044142],[-127.30639020787925,53.07402655154708],[-127.30668832098456,53.07402156844237],[-127.30698685065526,53.074030592529816],[-127.3072742880631,53.07398258569427],[-127.3075265772699,53.07388677947315],[-127.30773389070407,53.07375729544733],[-127.30794216213636,53.07362835626619],[-127.30810393601497,53.07347751874148],[-127.30826003176105,53.07332450257038],[-127.30845403044749,53.07318787597814],[-127.30867945108561,53.073069951884555],[-127.30890678926856,53.07295312673557],[-127.30911220723203,53.072823096323994],[-127.30932045493525,53.072694154809426],[-127.30950592195748,53.072553694200884],[-127.30972274204271,53.07242970428113],[-127.30994242616569,53.072307914505686],[-127.31010230149566,53.07215653921099],[-127.31026311750259,53.072005144273206],[-127.31047516536538,53.07187839971685],[-127.31069293842359,53.07175495316618],[-127.31087647828477,53.07161339993767],[-127.31104866067135,53.071466925073246],[-127.31121607467779,53.07131769676666],[-127.31136836105205,53.07116304188715],[-127.31152159061295,53.07100893215335],[-127.31170229326692,53.07086627940666],[-127.31198568837236,53.070809340423146],[-127.31228125313125,53.0707836437136],[-127.31257795037334,53.070764101728855],[-127.3128762825107,53.07076694484846],[-127.31317076678302,53.07079673455585],[-127.31346531677308,53.07076824005026],[-127.31372459094653,53.07068747562142],[-127.31377796356055,53.070509254416685],[-127.31384265251295,53.07033371338343],[-127.31394870769066,53.07016612143676],[-127.31415694260737,53.07003717103293],[-127.31443931741273,53.06997799608916],[-127.31471419736795,53.069918339085305],[-127.31488625800942,53.0697690624712],[-127.31509543244039,53.06964065571273],[-127.31532561776166,53.069526591985706],[-127.31553955692343,53.069400937438566],[-127.31574491985073,53.0692703306149],[-127.31595124361735,53.069140842320635],[-127.3161651962195,53.06901574226367],[-127.31638294059586,53.06889284980004],[-127.31660258499717,53.06877049157333],[-127.31682034409474,53.068648153937225],[-127.31703617825637,53.06852359603963],[-127.31724249417296,53.0683940964721],[-127.31743074736242,53.068254721113604],[-127.31762946030703,53.06812082302668],[-127.31786246147654,53.068007843323805],[-127.31811952783586,53.06791699863394],[-127.31839700898487,53.06785114463937],[-127.3186893876874,53.06781370477027],[-127.31898181797628,53.067777940092135],[-127.31927323610356,53.067739944683915],[-127.31956772593144,53.06771031464645],[-127.31985608574466,53.06766395154084],[-127.3201257551092,53.067587530039496],[-127.32037891926217,53.06749168548853],[-127.32065758283873,53.067434222264104],[-127.32095778105966,53.06743814450714],[-127.32125602087581,53.067438734901295],[-127.32155267300585,53.06741860572263],[-127.32184939466079,53.06740071632606],[-127.3221418194396,53.0673649438154],[-127.32243731913346,53.06733810137805],[-127.32272872849464,53.06729953265409],[-127.32301910814479,53.067258177585735],[-127.32331050175563,53.06721961655414],[-127.32360604959956,53.06719389128622],[-127.32390166938607,53.06717096162315],[-127.32419824845877,53.06714858527],[-127.32449351765655,53.06717385519421],[-127.32478801984477,53.06720472730009],[-127.32506580923302,53.06726941483163],[-127.32533738004354,53.0673442484406],[-127.32558727618235,53.06744342330537],[-127.32577670334136,53.06758194361055],[-127.3260037716148,53.06769818371165],[-127.32627438745698,53.06777247007464],[-127.32654046156817,53.067850724653134],[-127.32678582111544,53.067953874753485],[-127.32704926145796,53.06803776106863],[-127.32728714709656,53.06814099412694],[-127.32743324805891,53.06829904093089],[-127.32743602511405,53.06847719392856],[-127.32744177359453,53.068660916784964],[-127.32747447620841,53.068839854028205],[-127.32766817527565,53.06896487544848],[-127.32792633193519,53.06905890514427],[-127.32817266398399,53.06916316212861],[-127.32834188016311,53.069312547400635],[-127.32834728191459,53.069485067520226],[-127.32828177965399,53.069662302915596],[-127.32823311670354,53.06983991367655],[-127.3282088049027,53.07001893600032],[-127.32821724523771,53.07019870164954],[-127.32823499906857,53.0703778066922],[-127.32824810529681,53.070557528794794],[-127.3282602842468,53.07073725234208],[-127.3282481316276,53.07091669367236],[-127.32821165936028,53.07109528783095],[-127.32818556509903,53.071277127209264],[-127.32833237702198,53.071427329169374],[-127.32851267770882,53.07157210682807],[-127.3286818696058,53.07172037114747],[-127.32885750960914,53.07186575655895],[-127.32902853801224,53.072012879066875],[-127.32919682402111,53.07216171765426],[-127.32936693010974,53.07230940589792],[-127.3295453337193,53.07245308268799],[-127.32973942396033,53.07258985868139],[-127.32995004284449,53.07271748301486],[-127.33017166533783,53.072837703289096],[-127.33040061038763,53.07295334909271],[-127.33063320504598,53.07306560034752],[-127.33086580341336,53.073178406953275],[-127.33109565915976,53.07329292051428],[-127.33133919196932,53.07339608189976],[-127.3315990949142,53.073485045583],[-127.3318462805685,53.07358535863926],[-127.33209437683375,53.07368509610632],[-127.33234881596806,53.07377860239876],[-127.33257960364502,53.07389254675795],[-127.33280854349276,53.07400763217758],[-127.33303931618909,53.074121019976516],[-127.33325821344573,53.0742434976433],[-127.33347894635996,53.07436484249781],[-127.33370696400694,53.07447993661274],[-127.33394689698318,53.07458760699691],[-127.3341904616345,53.074691318074166],[-127.3344313217042,53.074798421172474],[-127.33468849618971,53.0748890944451],[-127.33498000105473,53.07491213098438],[-127.33527865657686,53.0748947514074],[-127.33557668432624,53.074886899244476],[-127.33586838383704,53.07491609947409],[-127.33614358492282,53.07498526434911],[-127.3363871397217,53.07508841522718],[-127.33666410623003,53.07515419696909],[-127.33695085358616,53.07520418717117],[-127.337233182611,53.07526206231726],[-127.33751380213447,53.07532500357869],[-127.33777451316264,53.07540890624553],[-127.33800719365753,53.07552281872157],[-127.33825259268696,53.07562538010749],[-127.33848055936116,53.07573822441775],[-127.33865165428284,53.0758858883102],[-127.33883010437674,53.076029550781676],[-127.33903711456045,53.07615944137445],[-127.3392459450965,53.07628819031605],[-127.33944097601338,53.07642381930108],[-127.33961763238109,53.076569742242484],[-127.3397479788567,53.076729638033335],[-127.33984406770247,53.07690000814934],[-127.33996521038723,53.07706449070374],[-127.3400928542185,53.07722777872002],[-127.34026842977732,53.07736867448834],[-127.34048738250621,53.077491703137504],[-127.34060285015319,53.07765400812466],[-127.34071952589231,53.07794348894767],[-127.34099114575255,53.07786868389883],[-127.34126080937526,53.07779165911707],[-127.34153935272951,53.07772910135442],[-127.34183594328728,53.07770500495173],[-127.3421335436142,53.077712830478724],[-127.34241851323323,53.077764504302195],[-127.34269810840074,53.077824083113285],[-127.34299665193794,53.07783189575528],[-127.34329480796741,53.077827940700296],[-127.34359297918093,53.077823993684646],[-127.34389108200048,53.07781836122982],[-127.34418871900336,53.07782730182958],[-127.34448804805902,53.07783061914952],[-127.3447864675185,53.07783450191152],[-127.34507993891496,53.07785974166749],[-127.345365055241,53.077915889379184],[-127.34563384722631,53.0779884673839],[-127.3459331599004,53.07799122539801],[-127.34623159854199,53.077995669115175],[-127.34652352221782,53.07803099987347],[-127.34681859587621,53.078047251830114],[-127.34710099286177,53.07810622354708],[-127.34739044183256,53.07815167526103],[-127.34766742774612,53.07821687544494],[-127.34793734580776,53.07829503869152],[-127.34820003641684,53.07838113737081],[-127.34848941692456,53.07842433692544],[-127.34876629943815,53.078486173776874],[-127.34902792583465,53.078568356013484],[-127.34932004921069,53.07860928988318],[-127.34959349796411,53.07868068512866],[-127.3498652030509,53.07875602645107],[-127.3501377650637,53.07882911605105],[-127.3504040598191,53.07891068607574],[-127.3506891009267,53.078964015804004],[-127.35096962217311,53.07902244397612],[-127.35120228957338,53.079134654505516],[-127.35132259108158,53.07930025605522],[-127.35149924661188,53.07944447613514],[-127.3516814408739,53.07958640023022],[-127.35180639395091,53.079751383244755],[-127.35203618128033,53.079860818993055],[-127.35224601175118,53.07998953389448],[-127.3524134148733,53.08013666465374],[-127.35253185741983,53.080302851056516],[-127.35270205662066,53.080449384581975],[-127.3529073000438,53.08058095696839],[-127.35310700436999,53.08071426894961],[-127.35325871067158,53.080867737431674],[-127.35338550780843,53.081031585954456],[-127.35357868235263,53.08116552779871],[-127.35378298660494,53.08129654463198],[-127.35397441929601,53.081434432573495],[-127.35415664812815,53.08157690833157],[-127.35433243149275,53.08172226382427],[-127.35450451533205,53.081869337974965],[-127.35467661532198,53.08201641169109],[-127.35485145969449,53.0821617682188],[-127.3550327703243,53.082304817976436],[-127.35521130290103,53.08244845517181],[-127.35539635224218,53.08259089667729],[-127.35562812327731,53.08270309993932],[-127.35591476492942,53.08274744267252],[-127.35621412961952,53.08275073027247],[-127.35651195785985,53.08273498362269],[-127.35680552980668,53.082703595932486],[-127.35709803056986,53.08266773719191],[-127.35739054862222,53.0826324333672],[-127.35768303061249,53.08259601753626],[-127.35797445905324,53.08255568630828],[-127.35826188149196,53.082507555823675],[-127.35854527372781,53.082449940921244],[-127.3588072046772,53.08236512059308],[-127.35904403634947,53.082255378137575],[-127.35927509896321,53.08214120997588],[-127.35952733413154,53.082045292994934],[-127.35981500277477,53.08200500041947],[-127.36011384846981,53.082021176089434],[-127.36040415735549,53.08206321544921],[-127.36068747067313,53.08211991217802],[-127.36096541216713,53.08218450575132],[-127.36124342354248,53.082250783340584],[-127.36152318260385,53.082313678170834],[-127.3618082608441,53.08236698992923],[-127.36210197145888,53.08239834418473],[-127.3624005867409,53.082407228012805],[-127.36269833182409,53.08241836243953],[-127.36299458527442,53.08244127574429],[-127.36328916757421,53.082470375691805],[-127.36358291601734,53.0825028465055],[-127.36387230456793,53.08254489699784],[-127.36415649890372,53.08259988984338],[-127.36444252761343,53.082653740168126],[-127.36473618502143,53.08268284721505],[-127.36503321152652,53.082671570935],[-127.36532460036219,53.08263065715076],[-127.3656129754626,53.0825830624965],[-127.36590650031488,53.08254996717537],[-127.36620385036194,53.082548770118656],[-127.36649932687271,53.0825767310953],[-127.36678966113456,53.08261876354047],[-127.36707738244019,53.082666984652455],[-127.36736506828208,53.08271408482235],[-127.367656241245,53.08275329931961],[-127.3679491398947,53.08278801048875],[-127.36824294817153,53.08282214558965],[-127.36853668165087,53.082853483667584],[-127.36883121652427,53.08288089391163],[-127.36912831361458,53.08290098496709],[-127.36942610010097,53.082913222675856],[-127.36972386852429,53.08292489503326],[-127.37002183629161,53.082942732437125],[-127.37031028861706,53.08298421330408],[-127.37058568883323,53.08305610269273],[-127.37086535842465,53.08311561465598],[-127.37116305651745,53.08312505186907],[-127.3714607548923,53.083105342224385],[-127.37175763762998,53.083089568087374],[-127.37205757090138,53.083081602388916],[-127.37233644806155,53.08302961895581],[-127.37259827917842,53.08294196283249],[-127.3728846877434,53.0828915670846],[-127.3731782486501,53.082860138716654],[-127.37347378460336,53.082831492784386],[-127.37376848640999,53.082806208822916],[-127.37406513042374,53.0827831518178],[-127.37435974093054,53.08275507026649],[-127.37464914273508,53.08271079452493],[-127.37492563616301,53.08264314339285],[-127.37517400862853,53.08254443148213],[-127.37540499335563,53.082429120521304],[-127.37567587447418,53.082361523963705],[-127.37597592585337,53.082356908854685],[-127.3762744924335,53.08236463755417],[-127.37657274683261,53.082362283186264],[-127.37687069529224,53.08235096633962],[-127.37716867688385,53.08234021316677],[-127.3774677492583,53.082334485016574],[-127.37776607925697,53.08233492392311],[-127.37806449731056,53.082337611338176],[-127.37836295491111,53.08234197404872],[-127.37866146394626,53.082347456067644],[-127.3789599581013,53.082352937507125],[-127.37925844892915,53.08235785341835],[-127.3795569067949,53.08236221311286],[-127.37985537967923,53.08236657187855],[-127.38015383766768,53.08237093006516],[-127.3804523106747,53.0823752873229],[-127.3807507506961,53.082379088364306],[-127.3810491873428,53.08238232387794],[-127.38134760907778,53.082385558812625],[-127.38164600932075,53.08238767258261],[-127.38194433973618,53.08238810093899],[-127.382243630866,53.08238908211556],[-127.38254061413197,53.082376641585405],[-127.38282893165287,53.08232788467028],[-127.38311287383583,53.08228813461033],[-127.38339368094584,53.08235320708943],[-127.3836483216465,53.082447722632594],[-127.38391740584117,53.082525823298205],[-127.3841918472648,53.082596571793445],[-127.38447339910495,53.082655464880155],[-127.38476885181497,53.08268225993009],[-127.38506688846151,53.082673162711096],[-127.38534343821054,53.08260772766854],[-127.38557633819777,53.08249460641091],[-127.38580353341503,53.08237819856585],[-127.38606150519433,53.08228831614655],[-127.38634188159477,53.08222563098598],[-127.38663333530253,53.082186913896464],[-127.38693122474518,53.08217388684557],[-127.38722971552804,53.082178791580816],[-127.38752753880678,53.08219210390628],[-127.38782541711258,53.08220709135141],[-127.38812235362042,53.08222209807952],[-127.38841778390014,53.082247763601536],[-127.38871399515756,53.08226893654757],[-127.38901206798313,53.08226150542049],[-127.38929747020161,53.082209404902365],[-127.38956607288738,53.082130040505035],[-127.38982693904207,53.082042921841285],[-127.39009457888172,53.08196300272307],[-127.39037598142434,53.08190310195498],[-127.3906643966217,53.08185767764557],[-127.39095575541776,53.08181670959425],[-127.39124823938737,53.0817813219317],[-127.39154177572001,53.08174929210666],[-127.39183636746665,53.08172116696177],[-127.39213197793539,53.081695826255974],[-127.3924298039327,53.08168055365699],[-127.39272835020127,53.08168767618282],[-127.39302537335324,53.08170491088273],[-127.39332160137309,53.08172662791918],[-127.39361703494245,53.08175284522156],[-127.39391248353947,53.081779052646546],[-127.3942087310916,53.08180133205498],[-127.39450653563927,53.08181407115579],[-127.39480491755532,53.08181615186893],[-127.39510305650974,53.081810390026234],[-127.3954010512773,53.08180070231433],[-127.39569900571503,53.08178933780701],[-127.3959970187827,53.081780213188864],[-127.39629614012455,53.08177612220585],[-127.39659438926209,53.08177371729538],[-127.39689240202736,53.081764590418736],[-127.39718600749528,53.08173477807221],[-127.39746142388825,53.08166428025294],[-127.39773698368701,53.08159770690301],[-127.39803591864369,53.08158800139538],[-127.39833216702677,53.081610270467145],[-127.39862593630316,53.08164265416821],[-127.3989206113645,53.08167390574867],[-127.39921673160602,53.081692256273314],[-127.39951509088631,53.08169320468306],[-127.40000098776132,53.08168127913287],[-127.40005237639159,53.08168011426062],[-127.40035075395127,53.081681616194395],[-127.40064915386718,53.081684246744416],[-127.40094736510737,53.081680710614805],[-127.4012452652466,53.08166821206672],[-127.40154297641108,53.081649546842286],[-127.40183967126981,53.081628660550564],[-127.40213632850477,53.081606644321546],[-127.40243193231511,53.08158128680539],[-127.40272547719191,53.08154978482576],[-127.40301084251871,53.081497642377386],[-127.40329618533153,53.08144438779236],[-127.40358654600259,53.08140171477403],[-127.40387792596545,53.081361826114325],[-127.40416735816532,53.0813191626868],[-127.4044536998373,53.08126813473782],[-127.40474002212008,53.081216541497696],[-127.4050263065951,53.08116382733248],[-127.40531064653274,53.08110889425408],[-127.40559304189591,53.081051742276166],[-127.40586856969743,53.08098514115412],[-127.40612643145015,53.08089298318162],[-127.40639208944829,53.08081080888977],[-127.40666068843937,53.08073252579763],[-127.406936097532,53.08066200567404],[-127.4072307645842,53.080636647181976],[-127.40751711640287,53.080586167422304],[-127.40779843276172,53.080525096100075],[-127.40807193186687,53.080453475371534],[-127.40836470848645,53.08042757173753],[-127.4086576430924,53.08046274662556],[-127.40895150518807,53.080497900764726],[-127.40923650034422,53.08054717284815],[-127.40950641643182,53.08062127897216],[-127.40980368462697,53.08064631327936],[-127.41009753398764,53.08062431042731],[-127.41039086532878,53.08058718842256],[-127.41068534349492,53.08055622017214],[-127.4109618023388,53.08048959590128],[-127.41120862713562,53.08043173452466],[-127.41146495367057,53.0803222081112],[-127.41174433372585,53.0802589180495],[-127.41202860280416,53.0802022839521],[-127.41229720633929,53.080124552613576],[-127.41257073612408,53.080054597494126],[-127.41285801990392,53.08000409350559],[-127.41314730687525,53.07995804754199],[-127.41336084734344,53.079911786494186],[-127.41369228228584,53.07981144250785],[-127.4139367817444,53.079740155050274],[-127.41419299151738,53.0796552787836],[-127.4144892178767,53.07962091797112],[-127.41478678869014,53.07962687564199],[-127.41508917570604,53.07963726653496],[-127.4153816429875,53.079658417444456],[-127.41563275676104,53.07972937292966],[-127.4158334318349,53.079858086874836],[-127.41602428197884,53.08000036636],[-127.41616559452838,53.08017181215795],[-127.41636953403093,53.08031393417007],[-127.41660668177119,53.080442774325796],[-127.41685900645541,53.080521557457345],[-127.41708552600296,53.08063987324754],[-127.41731478738308,53.08075647021912],[-127.41754680584656,53.080871357138676],[-127.41778154393985,53.080983413764685],[-127.41801806268977,53.08109319824189],[-127.41825820582959,53.08119902085975],[-127.41850009239958,53.08130146003751],[-127.41876980462276,53.08136882361464],[-127.41905413713023,53.081425924882666],[-127.4192814500782,53.08151172742162],[-127.41949441704405,53.08164364959766],[-127.41967088295814,53.0817748893804],[-127.4198870330687,53.081890527298775],[-127.42014792830771,53.08197368320565],[-127.42043055781666,53.082063301266935],[-127.42074069257816,53.08213689841881],[-127.42106485095313,53.0821542923062],[-127.42134520085128,53.082148113398084],[-127.42163133531412,53.08200739210574],[-127.42187585271455,53.08193664393896],[-127.4221968789656,53.08194455114639],[-127.42249019526638,53.0819623124155],[-127.42278564818021,53.08198844781359],[-127.42308225063486,53.082020736830266],[-127.42337898527983,53.08205695036366],[-127.42367579533972,53.08209539463543],[-127.42396979032479,53.08213331624432],[-127.4242610304998,53.08217295583739],[-127.42454441453248,53.08222949063451],[-127.42482517186245,53.08229110396689],[-127.42510859136532,53.082348201818704],[-127.42536999417521,53.08241845690899],[-127.42562895934351,53.082471365875435],[-127.42589559132578,53.082557802041514],[-127.42615648802797,53.082612927905394],[-127.42634219025989,53.082795597571206],[-127.42660565190315,53.082870863672184],[-127.42690511300367,53.08296026317752],[-127.42717373688689,53.08299455649257],[-127.42745992356109,53.083050494669706],[-127.42772612937276,53.0831240486135],[-127.42797036802949,53.083239323573586],[-127.42814224110023,53.08334427507251],[-127.42844238697843,53.08342581772048],[-127.42871509521481,53.08349816120381],[-127.42899144577093,53.08356710694313],[-127.42927569351131,53.08362082287873],[-127.42955648565275,53.08368298054854],[-127.42978951690539,53.08371546628548],[-127.43000742285739,53.08377110405184],[-127.43013104763334,53.08385926174502],[-127.43026166275719,53.08396078280718],[-127.43032073853892,53.08404860107862],[-127.43039426200154,53.084121110768706],[-127.43050750339225,53.08420659658062],[-127.43054729700557,53.08427727323857],[-127.43064527904902,53.08435397827646],[-127.43075918158796,53.08440358521346],[-127.43104592917464,53.08442028434093],[-127.43134457708858,53.08442955867657],[-127.43164086277432,53.08445174419067],[-127.4319294799264,53.08449587063811],[-127.4321951354391,53.08452515008649],[-127.4325006796107,53.084599893058744],[-127.43278146418751,53.08466148740116],[-127.43306315407048,53.084721949425045],[-127.43332826721223,53.08479045664392],[-127.43358877154148,53.0848881568198],[-127.43385526464644,53.08496953840324],[-127.43409915589767,53.085074163165075],[-127.43438424889003,53.08512449467223],[-127.4346784298736,53.08516742624894],[-127.43483966559738,53.085205812549844],[-127.43495970886192,53.08521556134102],[-127.43523003949207,53.08527223834131],[-127.4354909856085,53.085355360205746],[-127.43581268088667,53.0853817093227],[-127.43610872695027,53.08536914562132],[-127.43640316245308,53.08533642854949],[-127.43669668892616,53.08530427764858],[-127.43700413589202,53.08526915948069],[-127.43729094889069,53.08528752825008],[-127.43758731962896,53.085311939275414],[-127.43783764446982,53.08521979455461],[-127.43807328796119,53.085108220595565],[-127.43828888747369,53.08498456269729],[-127.43847872399063,53.084846093385835],[-127.4386438344581,53.08469558840568],[-127.43882985306364,53.08455492361065],[-127.43910106472227,53.084499504132054],[-127.43939624566934,53.08454409730464],[-127.43968842502444,53.08458312292561],[-127.43998378876206,53.08460529881845],[-127.44027921394138,53.08462971458728],[-127.4405740165018,53.084663102653394],[-127.44086704510318,53.084699317807434],[-127.44115748631509,53.08474172306088],[-127.44138533222865,53.08481402900489],[-127.44152907077182,53.084942829987035],[-127.44174280776029,53.08501251018869],[-127.44201879918192,53.08509767553931],[-127.44235704852815,53.08514341223334],[-127.44272616118107,53.085189335897674],[-127.44311644115257,53.0852249137348],[-127.44346596855429,53.085272195018604],[-127.44380709032328,53.0853195780015],[-127.44410443793556,53.085372542630694],[-127.44431889872806,53.08543604115959],[-127.4444030067787,53.085516257761796],[-127.44425126935393,53.08561953886693],[-127.44395335665554,53.08574252833055],[-127.44364936341691,53.08587904844231],[-127.44346826571409,53.086026384800554],[-127.44338988283066,53.086196565120986],[-127.44334108378273,53.08638431483063],[-127.44331849580398,53.086572309115574],[-127.44331779638466,53.086744337498494],[-127.44331737911656,53.08692421613923],[-127.4433150767488,53.08710410882484],[-127.44330810754482,53.08728406746778],[-127.44333281101318,53.0874602681714],[-127.44330538779218,53.08764383868346],[-127.4433105797503,53.087823639743895],[-127.44328485434312,53.08800214193177],[-127.44328149102353,53.0881781295716],[-127.4432612224324,53.08835208234198],[-127.443227406888,53.088512752426226],[-127.44316402648367,53.0887118866668],[-127.44313191520871,53.088894949428806],[-127.44323762896109,53.08906063921908],[-127.44337304852851,53.08921924195656],[-127.44356085865903,53.089350873011185],[-127.44375631305465,53.08951490105983],[-127.44391707603819,53.0896485385821],[-127.44404256306727,53.08979045176581],[-127.44418462798583,53.08997923065646],[-127.4442888409114,53.090210501958914],[-127.44443247315593,53.090335382755065],[-127.44459939718446,53.0904577372577],[-127.44474693557031,53.09061506956831],[-127.44489815762573,53.09077067114915],[-127.44505304474231,53.09092399532386],[-127.4452152981556,53.09107385820045],[-127.44539321153384,53.0912168141959],[-127.44560334317784,53.091344242135264],[-127.44582637526074,53.09146590846901],[-127.44603656659328,53.09159501145391],[-127.44623393673177,53.09173212470425],[-127.44646134952373,53.09184477082344],[-127.44672872361393,53.091922742104344],[-127.4470088219814,53.09198935915901],[-127.4472844487777,53.09206218957077],[-127.44755924874762,53.092138391509984],[-127.4477884225442,53.09224765151346],[-127.4479793248898,53.09238707354056],[-127.44814265184404,53.092540290311085],[-127.44827904740548,53.09269943136821],[-127.4483839972785,53.09286905277437],[-127.44846564060032,53.09304119216561],[-127.44852501174651,53.0932180961913],[-127.44857501758574,53.09339510601868],[-127.44860919290986,53.09357399537946],[-127.44864149839954,53.09375290763857],[-127.44867567429249,53.093931796943764],[-127.44869862964248,53.09411082378558],[-127.44869914342885,53.09429012573524],[-127.44868002807911,53.09446966831068],[-127.44863803463173,53.09463716388971],[-127.44860405334794,53.09481969482588],[-127.44859459846292,53.0950086401645],[-127.44855959757346,53.095188942190575],[-127.4485367215498,53.09536796591745],[-127.44853997523202,53.0955455576155],[-127.4485973841445,53.09571967928155],[-127.448698640304,53.09589045721384],[-127.44879432519232,53.096062432996895],[-127.44883409499488,53.0962406886515],[-127.44882261775712,53.09642518492388],[-127.44885203256842,53.09660132614318],[-127.44896517334703,53.096764122331685],[-127.44910999025278,53.09692260314268],[-127.44927706403286,53.09707576330532],[-127.44945697812456,53.097220929986165],[-127.4496605982724,53.0973484306561],[-127.44992015982359,53.097442745074794],[-127.45015415156972,53.09755530350114],[-127.45035892867362,53.09768894802143],[-127.45050080702075,53.09784354533269],[-127.45057606421827,53.098019688229556],[-127.45065313470806,53.09819412331577],[-127.45072648450166,53.098369168836115],[-127.45076902022294,53.098545713250644],[-127.45074615607494,53.09872530183093],[-127.45072330669602,53.09890489020496],[-127.45075651453034,53.09908266975387],[-127.45081310968152,53.09926016217683],[-127.45087622075262,53.09943645389369],[-127.45092917212075,53.099616797137614],[-127.45099141821369,53.09979534073659],[-127.45108509713386,53.09996284747517],[-127.4511340694745,53.09999979322472],[-127.45154448984067,53.10023681865583],[-127.45165118810345,53.100401923692225],[-127.4515889860669,53.10057975410586],[-127.4514919045751,53.10075016812257],[-127.4513910430744,53.100919507780624],[-127.45127321268966,53.101085137823354],[-127.45111647345368,53.10123499121409],[-127.45087500992723,53.10134217823869],[-127.45066990799091,53.101473008421785],[-127.45049052386113,53.10161697963533],[-127.45036038814544,53.10177883281789],[-127.45014573849207,53.10190417581719],[-127.44994633899299,53.10203774083811],[-127.4497574443005,53.102177344820454],[-127.4495989017833,53.102329459453934],[-127.44947726185265,53.10249344867375],[-127.44937168104921,53.1026617234972],[-127.44927362383072,53.102831582470436],[-127.44918312051146,53.103003034206296],[-127.44907561347472,53.10317021163386],[-127.44894548255374,53.10333206293316],[-127.44878978440222,53.10348526209505],[-127.44863030572458,53.10363738668967],[-127.4484897612355,53.103796003025934],[-127.44835490396582,53.10395679081808],[-127.44828038282111,53.104130851992785],[-127.44821430919693,53.1043059212969],[-127.44815202976179,53.10448207368872],[-127.44809067732257,53.104658205701675],[-127.4478988173653,53.104793915791745],[-127.44768707766958,53.10492314501617],[-127.44749430667277,53.10505943037459],[-127.44731679018996,53.10520448499415],[-127.44713358009218,53.105346811838665],[-127.44694938772062,53.10548802972828],[-127.44675948674308,53.105626519988526],[-127.44659334222048,53.10577591689803],[-127.4464480566608,53.10593291193849],[-127.4463207247066,53.10609528146944],[-127.44619811846833,53.10625927850245],[-127.4460793058313,53.10642434963896],[-127.4459642568998,53.10659049525634],[-127.44583127111764,53.10675182161285],[-127.44565464648481,53.10689574186544],[-127.44541400333962,53.10700066546034],[-127.44513557401179,53.10706794782774],[-127.44486395112727,53.10714299099808],[-127.44460306293958,53.10723079449217],[-127.44436145320503,53.10733516286642],[-127.44415726425522,53.10746653436633],[-127.44398257833065,53.107612678569566],[-127.44382115797063,53.10776369897388],[-127.44366542502266,53.107916891002915],[-127.44351159985808,53.108071180168714],[-127.44335588358307,53.108224927382615],[-127.44319634865418,53.108376488619925],[-127.44303586940745,53.10852805217749],[-127.44288581943849,53.10868341500069],[-127.44275186824285,53.10884418444829],[-127.44262831232999,53.109008188849884],[-127.442516075768,53.10917486111205],[-127.44241984682557,53.10934469094581],[-127.44235094242529,53.1095197995692],[-127.44231208478838,53.109697894558586],[-127.44227229919446,53.109876009800374],[-127.44222030686288,53.11005314430204],[-127.44213537639898,53.11022508623192],[-127.44197868115965,53.1103777225666],[-127.44175628948257,53.11049754897169],[-127.4414983062319,53.110589227529935],[-127.44123931772374,53.11067867643532],[-127.44098034701385,53.11076868038775],[-127.44073006852578,53.110866431429585],[-127.44050479967528,53.11098460496071],[-127.44030819785796,53.11111979456884],[-127.44014866001656,53.11127190706512],[-127.44001658426158,53.11143377076889],[-127.43992598707099,53.111604094385385],[-127.43994137440485,53.11178153647462],[-127.44002863265926,53.11195361148775],[-127.44002912916996,53.11213347624675],[-127.43999591028278,53.11231262204152],[-127.43995327940303,53.11249020593595],[-127.43993411879843,53.11266974524994],[-127.43993178179446,53.11284907963071],[-127.43991918105854,53.11302910381764],[-127.4398756400056,53.1132072545338],[-127.43977564964577,53.11337713636632],[-127.43959039373986,53.1135161130566],[-127.43935168704331,53.1136249175314],[-127.4391283617486,53.11374530569121],[-127.43899619831419,53.11390492763415],[-127.43898353608205,53.11408326683697],[-127.439005571413,53.11426342501613],[-127.43903970430638,53.11444175941658],[-127.4391046259195,53.1146174687356],[-127.43913034724505,53.11479590547174],[-127.43911678033665,53.1149753762757],[-127.43909387292037,53.11515496075372],[-127.43906906008849,53.115334003586824],[-127.43904144820343,53.115513089428525],[-127.43901383578067,53.11569216628425],[-127.43898620425713,53.11587068749804],[-127.43895953471265,53.11604976178885],[-127.43893005047434,53.11622886134407],[-127.43889306260944,53.116407496344365],[-127.43885792670224,53.11658555292633],[-127.43880685912588,53.11676323854309],[-127.43869267751022,53.116928800061636],[-127.43852267600849,53.11707655421962],[-127.4383450596254,53.11722103876798],[-127.43816840426267,53.11736607614534],[-127.43800788796399,53.117517631929516],[-127.43787954609485,53.117680011741044],[-127.43776255908357,53.11784560631902],[-127.43765029883197,53.11801282875099],[-127.43745834498557,53.11814852087552],[-127.43727408388628,53.11829028725081],[-127.43705059916411,53.118407310765775],[-127.43680416057536,53.11850947941331],[-127.43656539976274,53.11861772234104],[-127.43634007423275,53.11873533162362],[-127.43612049775447,53.118857344288514],[-127.43589520767598,53.118976072903266],[-127.43564774397802,53.11907601017003],[-127.43538284982105,53.11915879280717],[-127.43513154663752,53.119255978407345],[-127.43489566759102,53.119366424150556],[-127.43467129952256,53.11948513913636],[-127.4344660597595,53.11961593986449],[-127.43427700164234,53.119754953328155],[-127.43408894243376,53.11989563981439],[-127.43384332159343,53.119994994940704],[-127.4336094200725,53.120108775967736],[-127.43351112268394,53.12027413923005],[-127.43354338478547,53.120453052918975],[-127.43356823769147,53.120634297722695],[-127.43344157000777,53.120791604385985],[-127.43323635831642,53.12092353204109],[-127.43300237426935,53.12103507141767],[-127.43280188344727,53.121168052747244],[-127.43263462514967,53.121315208549376],[-127.43256751311783,53.121489723041186],[-127.43239274820178,53.12163640458312],[-127.43219892760351,53.121773230758585],[-127.4320165420804,53.12191607722102],[-127.43183793624836,53.12206000722708],[-127.4316235621607,53.12214272508551],[-127.43132257313442,53.12212788247079],[-127.43102388654869,53.12212532944884],[-127.43072503402482,53.12211830403347],[-127.43042629096611,53.12211407368977],[-127.43012700164947,53.12212161157218],[-127.42983128692724,53.12215208333831],[-127.42956335485422,53.12222873005347],[-127.42931787978131,53.12233311205039],[-127.429115485186,53.12246611879631],[-127.42893021110297,53.12260675388738],[-127.42876110004337,53.12275504690223],[-127.42853673431428,53.122874861257266],[-127.42831900437558,53.12299740112345],[-127.42817164511914,53.12315215439232],[-127.42804991898156,53.123317795448244],[-127.42793569670444,53.123483910548586],[-127.42778578394147,53.12364653865043],[-127.42792689336429,53.12380620857902],[-127.42814320774515,53.12375260222274],[-127.42832134262848,53.1235941243557],[-127.42847053655102,53.12343822813626],[-127.42862447226244,53.12328395987526],[-127.42875267799542,53.12311599860388],[-127.42891438039265,53.122970036477916],[-127.42915823418677,53.122872954763494],[-127.42943265322035,53.12279399829668],[-127.42970519951771,53.12271505485458],[-127.42997007043732,53.12263060928829],[-127.43025787184531,53.122587905756895],[-127.43055568763991,53.12256413146308],[-127.43085271123395,53.12254484861247],[-127.43114962104369,53.122522204430425],[-127.43144335626346,53.122488947241116],[-127.43173500777705,53.12244899959092],[-127.43202781381716,53.12241575218723],[-127.43232582086841,53.122398139167395],[-127.43262223608285,53.12238838028904],[-127.4329170263583,53.122358477555736],[-127.4332065615654,53.1223118190029],[-127.43349531982813,53.12226966073191],[-127.43379328319995,53.12225035905895],[-127.4340891324491,53.122224358346635],[-127.43438405312786,53.12219836815311],[-127.43468107241559,53.1221790756837],[-127.43497922430485,53.12216537199255],[-127.43527745574544,53.12215446373559],[-127.43557123840515,53.12212232526092],[-127.43585791270081,53.12207401838874],[-127.43615583951281,53.1220541463654],[-127.43645419907587,53.122046604501264],[-127.43675261922921,53.12204129349201],[-127.43705071264063,53.12202590876785],[-127.43734145020457,53.12198706997573],[-127.4376249649448,53.121928711287445],[-127.43792099579389,53.12190774615353],[-127.43819454995642,53.121969417360546],[-127.43842688869766,53.12208538078761],[-127.43870057772149,53.122150967012615],[-127.43900090805867,53.12214675671601],[-127.43929709165786,53.12213025994981],[-127.43959447830792,53.12214961774895],[-127.43989184182739,53.12216784546369],[-127.44018982949942,53.12217710854803],[-127.4404879693353,53.122190842689065],[-127.44078686630645,53.122199528384655],[-127.44107824517033,53.12223464485714],[-127.4413645816737,53.12228662296162],[-127.44166087048463,53.12230094153272],[-127.4419602733828,53.12229673503767],[-127.4422575626892,53.12231271641909],[-127.44255649902198,53.12232251783319],[-127.44284933414639,53.122290372788214],[-127.44310071393052,53.122195411335625],[-127.44332503457314,53.122075560346346],[-127.44359401768803,53.12200279608459],[-127.44389261662542,53.12197506067745],[-127.44418581802164,53.12198100119454],[-127.44447049544556,53.12203916017427],[-127.44474978870633,53.12210410820629],[-127.44502458791304,53.122174713794294],[-127.44530035047079,53.122245871788905],[-127.44554423196116,53.12234262920623],[-127.44573896706254,53.122480886542526],[-127.44597121456323,53.122593474543514],[-127.44625288878588,53.12264550688149],[-127.44655352753249,53.122650229965835],[-127.44685242498369,53.12265834453187],[-127.44715119248869,53.12266308899467],[-127.44744987951228,53.12266503652598],[-127.44774866642291,53.122670344054995],[-127.44804675490309,53.12268238333308],[-127.44834492013811,53.122696662238525],[-127.44864217666274,53.12271151633901],[-127.44893871975373,53.12273309342305],[-127.44923756495844,53.122740081954944],[-127.44953608000803,53.122736978885435],[-127.44983429270512,53.122725478309825],[-127.45013373612949,53.122722371312626],[-127.45043234701187,53.12272207093363],[-127.45072608780352,53.122689330431854],[-127.45100468762163,53.1226242758656],[-127.45127740381548,53.12255144822424],[-127.45154712758817,53.122473053374684],[-127.45181592622333,53.122395225100085],[-127.45208958710347,53.122322948755304],[-127.4523721362167,53.122264001548984],[-127.45266681550844,53.122231244633916],[-127.45296165892731,53.122257879954404],[-127.45326007440491,53.12225197149457],[-127.45354164012127,53.12219192185677],[-127.45383647175726,53.1221636427783],[-127.45412906624497,53.12212473971145],[-127.45440670985518,53.122059132911694],[-127.45468431825113,53.121992961067306],[-127.45495208387031,53.1219123410737],[-127.45517258830634,53.12179139345887],[-127.45538925274018,53.1216676955018],[-127.45563664652141,53.12156659688477],[-127.45589179361943,53.12147323793416],[-127.45614884973698,53.121380984532514],[-127.45641078720605,53.12129482958867],[-127.45669233765825,53.12123420765847],[-127.45698295563196,53.121192524575775],[-127.45727363067083,53.12115251657839],[-127.45756519511148,53.121111385198354],[-127.45785688927646,53.12107360451462],[-127.45815171025156,53.121045314660606],[-127.45844641515833,53.12101366350955],[-127.45874015735141,53.120981467646075],[-127.45903177242727,53.12094144368737],[-127.45931038658259,53.12087748967917],[-127.45958402487756,53.12080519593141],[-127.45986061161447,53.120736782973225],[-127.46015023683371,53.120693418793856],[-127.46043675759559,53.12064169174565],[-127.46070940620079,53.120567722087316],[-127.46099596405541,53.12051711386737],[-127.46129290162781,53.12049607874624],[-127.46158355499472,53.120537312930914],[-127.46187160270512,53.12058418194261],[-127.4621622913832,53.12062597013012],[-127.46246042772205,53.12063965785203],[-127.46275516526077,53.12060911614273],[-127.46300641309863,53.12051187192111],[-127.46321922817422,53.120385965465715],[-127.46344639784174,53.120269402109756],[-127.46370732755696,53.12018156664069],[-127.46394986698974,53.120076018662495],[-127.46415214535251,53.11994351689934],[-127.46430593845756,53.11978920191336],[-127.46459661647047,53.119749740459305],[-127.46489488282242,53.11976733822074],[-127.46514354292671,53.11986623785749],[-127.4653913147823,53.11996626865427],[-127.46564090536465,53.120065155731446],[-127.46589140148218,53.12016291039867],[-127.46614371205195,53.12025896552995],[-127.46640780662587,53.120343658366764],[-127.46667815362632,53.12041987255664],[-127.46694939097803,53.120494954425425],[-127.46721254580967,53.12057966611612],[-127.467499749463,53.12062877330424],[-127.46779046783048,53.12067166802648],[-127.4680662004471,53.12074108823587],[-127.46831035815798,53.12084451988697],[-127.46855268917145,53.120949659211874],[-127.46879684927147,53.12105308984664],[-127.46904010625595,53.121157651872316],[-127.46927790584321,53.12126676388364],[-127.46950016178754,53.121386710442614],[-127.46971695610584,53.12151065129064],[-127.4699520226458,53.12162203727352],[-127.47020614471309,53.1217158200294],[-127.47047206967414,53.12179880465991],[-127.47071257872727,53.1219050739954],[-127.47089539343641,53.12204793082177],[-127.47113777200812,53.12215362020287],[-127.47143401141346,53.12216617942864],[-127.4717267457064,53.122131722515434],[-127.4720193042366,53.12209221957693],[-127.47231638345531,53.122075072952335],[-127.47261520823577,53.1220814378418],[-127.47291266333119,53.12210182289135],[-127.4732075381935,53.122128972309504],[-127.47350158682696,53.12215948432822],[-127.4737948831857,53.12219505248121],[-127.4740838988351,53.12224187994768],[-127.47435783923473,53.12231299350751],[-127.47460292991074,53.12241583593136],[-127.474796793258,53.12255294575936],[-127.47485535284063,53.12272928079546],[-127.47484662067441,53.12290869643241],[-127.47477782791306,53.123083813641564],[-127.47464204648817,53.123244085821796],[-127.47451477055809,53.12340648412847],[-127.47444408485623,53.1235810688208],[-127.47440631206338,53.1237597257452],[-127.47438164371422,53.12393878406426],[-127.47436449525871,53.124118304450725],[-127.47435668897046,53.124297708338865],[-127.47435453131716,53.12447759763237],[-127.47435797340384,53.124657426056984],[-127.47436984435672,53.1248371404097],[-127.47438731054038,53.12501622913396],[-127.47440386825727,53.12519589398166],[-127.47441199654686,53.12537565494338],[-127.47440702463075,53.12555558818501],[-127.47438984100836,53.12573454402935],[-127.47436707727613,53.125914134236425],[-127.4743414792249,53.126093203904645],[-127.47431211822204,53.12627175564404],[-127.47427903320276,53.1264509096304],[-127.47427029782918,53.12663032485161],[-127.47425781924595,53.12680978671699],[-127.47425097493102,53.12698974313924],[-127.47421410694437,53.12716782351987],[-127.47421100556922,53.12734773324245],[-127.47421351865464,53.12752756399358],[-127.47423006164318,53.127707228800254],[-127.47428488276043,53.12788361027285],[-127.47430985566956,53.12806316098459],[-127.47426359016985,53.12824024671842],[-127.47425113041953,53.12842026402983],[-127.4742461378156,53.12859963238952],[-127.47425426640085,53.12877940198199],[-127.47426988139433,53.12895906926851],[-127.47428362516143,53.12913876882816],[-127.47428708198734,53.12931858763878],[-127.47428208942976,53.12949795591015],[-127.47427150139458,53.12967795872704],[-127.47425902191881,53.12985742028738],[-127.47424747070569,53.13003687025625],[-127.47426306679736,53.13021598181035],[-127.47421588971089,53.13039363449268],[-127.47421465952947,53.13057351159954],[-127.47425269724774,53.130751787524396],[-127.47432151404796,53.13092687361293],[-127.47432122766533,53.131106738907974],[-127.4743928411217,53.131281234221476],[-127.47441966892528,53.13146020562941],[-127.4743827977574,53.13163828561877],[-127.47448048078029,53.131808529064664],[-127.47457627345088,53.13197824014333],[-127.47468974388373,53.13214492459267],[-127.47475950814587,53.13231999852817],[-127.47491372648874,53.13247328258455],[-127.47510030560719,53.13261496520999],[-127.47537950077374,53.13267367507744],[-127.47566249906384,53.13273402231918],[-127.47590489666034,53.13283858131234],[-127.47616183635496,53.13293007520582],[-127.47641605936501,53.133024399632056],[-127.47663565565192,53.133146051689224],[-127.47683509244266,53.13328028233348],[-127.47702530776311,53.133418545633326],[-127.477213711216,53.13355851673519],[-127.47740394871327,53.133697343972024],[-127.47760153835199,53.13383216123125],[-127.47778627994643,53.13397441850295],[-127.4780521447634,53.13405346062287],[-127.47824288124339,53.134179397179764],[-127.47794727337319,53.134214469735156],[-127.47768531921434,53.134301227360275],[-127.47747531667251,53.13442824406047],[-127.47730254550765,53.134575532064595],[-127.47714779790837,53.13472930970428],[-127.4769176949155,53.13484369324555],[-127.47668185742879,53.134954776962026],[-127.47650807917435,53.135100390801796],[-127.4763921238662,53.13526601933183],[-127.47629882592778,53.1354369592727],[-127.47622154410575,53.13561050536287],[-127.47617622621263,53.135788135118176],[-127.4761459574018,53.135967262502334],[-127.47612503294346,53.136146264282864],[-127.47610507146557,53.13632581883485],[-127.47603155089287,53.13649988256065],[-127.47596556114837,53.136675528754786],[-127.47594652256466,53.136854506888085],[-127.47593030403367,53.13703401462394],[-127.4759262657237,53.137213935175346],[-127.47592691464169,53.137393788259814],[-127.47593130796245,53.1375736035724],[-127.47595814625133,53.137752574005084],[-127.47598031210946,53.1379316027168],[-127.47591337170327,53.13810669576195],[-127.47591218785428,53.13828770124676],[-127.47608115952211,53.13843407557575],[-127.47624928220503,53.138582710541606],[-127.47634604050516,53.138752398811675],[-127.47641769459764,53.13892744776191],[-127.4764781363057,53.139103201416034],[-127.47663794788102,53.139255292564364],[-127.47669188508215,53.139432247944455],[-127.4767205998944,53.13961119464979],[-127.47671000000855,53.13979063210716],[-127.47669001960766,53.13996962182903],[-127.47668131134365,53.14014960044375],[-127.47674549990438,53.14032529814156],[-127.476856200467,53.14049201470202],[-127.47695297027175,53.140662267048135],[-127.47709244510467,53.14082134434854],[-127.47716036139572,53.1409964394],[-127.47718251905533,53.141175467751346],[-127.47716630410805,53.14135497522619],[-127.47713977962731,53.14153404659539],[-127.4771282374348,53.141713495680705],[-127.47718123620947,53.14189046237825],[-127.47719312397143,53.14207017472411],[-127.47683749654061,53.14231891763141],[-127.47664203917314,53.14243454363228],[-127.47642436289009,53.1425571705107],[-127.47623441146983,53.142696260839266],[-127.47611685089305,53.142762725710824],[-127.47599632448988,53.14279784912213],[-127.47570426269338,53.14282895308079],[-127.47540601290471,53.14284331469776],[-127.47510886730363,53.142862709221156],[-127.47481384743575,53.142889365231966],[-127.47452112820027,53.14292831006116],[-127.47424140933822,53.14299119070805],[-127.47395361131599,53.14303680568138],[-127.47365574239637,53.14303546895781],[-127.47350125882251,53.143063732992545],[-127.47334799583463,53.14310038204339],[-127.47323082106038,53.143124254312426],[-127.47308956795762,53.14312881035141],[-127.47297638450593,53.14313302570967],[-127.47282432615062,53.143150043151905],[-127.47261554513442,53.14317898196191],[-127.47243875906223,53.14323945634047],[-127.47232581464642,53.14327727873504],[-127.47221396669828,53.14337337031417],[-127.4721037644354,53.14340948186653],[-127.47196105950927,53.14353396450173],[-127.47181497697807,53.14358845263134],[-127.4716763157298,53.14366806743372],[-127.47140444230044,53.143740929518664],[-127.4711314101006,53.14380763730072],[-127.47085297421438,53.1438805796917],[-127.47055773047612,53.14390105966614],[-127.47027225738992,53.143852501837785],[-127.47001616892145,53.14375986381276],[-127.46976008188427,53.14366723419002],[-127.46950129201194,53.143577434742234],[-127.4692370267921,53.14349218534387],[-127.46897011709682,53.14341145080875],[-127.4686931901999,53.1433386846019],[-127.46839722692734,53.14331153596054],[-127.46810639137911,53.14326976344065],[-127.46781123686607,53.143238685507804],[-127.46751535249425,53.14321377499973],[-127.46722168578874,53.14319836627575],[-127.46692049589102,53.143182494264366],[-127.46662152309115,53.14317611506055],[-127.46632474998495,53.14315233325737],[-127.46602813263779,53.14313304035467],[-127.4657284493112,53.14313339161298],[-127.46542998520542,53.14314212741194],[-127.46513271667708,53.14315813636543],[-127.46484400282259,53.143204861034285],[-127.4645613118473,53.143263272782605],[-127.4642894867224,53.14333779431192],[-127.46407513191933,53.14344971510029],[-127.46380804237316,53.14360710502163],[-127.46363668534454,53.14368935604834],[-127.46332381894665,53.1437150744062],[-127.46302880044536,53.14368790963232],[-127.46275657444376,53.14361562735678],[-127.46248876715492,53.14353545425577],[-127.46222142922801,53.14346927839916],[-127.46205342000226,53.143458462821734],[-127.46175609013308,53.143472787511904],[-127.46145744900898,53.14347647699502],[-127.4612711420271,53.143478213485935],[-127.46119505483983,53.14347187350434],[-127.46102540879443,53.14349526098213],[-127.4608650082013,53.14351517210345],[-127.46056883351562,53.14353563862504],[-127.4602747668024,53.14356335812078],[-127.4599871043339,53.143613419798235],[-127.45971515505006,53.1436576746848],[-127.4594148118343,53.14369332297257],[-127.45925468220169,53.1436941775165],[-127.4591314155791,53.143677202668975],[-127.45900795881813,53.143627740187526],[-127.45883852645566,53.14357603839961],[-127.45870041855719,53.14359062427843],[-127.45859434965395,53.14363787861909],[-127.45840240479953,53.14377528753763],[-127.45823711479453,53.14392525055885],[-127.45813168526126,53.14399154760071],[-127.45800872510895,53.14403788891563],[-127.45773094299832,53.1441035033688],[-127.4574422145352,53.1441502099523],[-127.45715348512692,53.1441969068688],[-127.45689038678724,53.14428083363318],[-127.45666977016856,53.14440178293696],[-127.45645970803298,53.14452988160213],[-127.4562314259233,53.14464587700998],[-127.45600600124932,53.14476351327787],[-127.45579020265184,53.14488831933643],[-127.45558010136558,53.14501586098416],[-127.45537862423834,53.14514889041646],[-127.45519428625788,53.14529011801105],[-127.4550213933039,53.14543737258013],[-127.4548589200313,53.14558785171781],[-127.45471540506229,53.14574538619179],[-127.45457003158262,53.145902943313416],[-127.45447644155287,53.14598702167404],[-127.45439520366266,53.146048535197366],[-127.4541946469362,53.14618156008282],[-127.45398839029444,53.14631184855291],[-127.45378115021254,53.14644102807687],[-127.4535643734148,53.1465652769888],[-127.45332256167153,53.14666967034548],[-127.45305262926861,53.14674638344896],[-127.45276076897373,53.1467841515592],[-127.4524689122367,53.14682247473865],[-127.45230486534773,53.14684578071086],[-127.45217396548975,53.146852425798805],[-127.45189443991379,53.14689507877891],[-127.45163646388005,53.14699237827846],[-127.45156673073386,53.147034697647136],[-127.45141674688048,53.14711330621174],[-127.45133924734631,53.1471747716593],[-127.4512929976952,53.14727395564612],[-127.45127874869372,53.14737722967495],[-127.45128228815415,53.147453390052554],[-127.45132700793896,53.14758283621966],[-127.45135198086417,53.14762847629654],[-127.45143750181279,53.14780056223401],[-127.45146308935252,53.14786412504602],[-127.45152047629729,53.14798053281212],[-127.4516076067252,53.14814531916472],[-127.45167355685724,53.14832045109782],[-127.45173672526634,53.14849617295281],[-127.45179522470109,53.14867251685486],[-127.45185278085577,53.14884887229107],[-127.45192247822105,53.14902395806418],[-127.4519856296596,53.149199124112855],[-127.45203293405251,53.1493767258721],[-127.45207836625701,53.149554350575066],[-127.45212567143567,53.14973195226247],[-127.45217110441028,53.14990957689506],[-127.45221559397127,53.150087213075885],[-127.45225824563417,53.1502654365879],[-127.45230848813327,53.15044691986732],[-127.45235189631356,53.1506200866612],[-127.45240854797076,53.15079701760373],[-127.45244838439098,53.15097526658601],[-127.45251540151239,53.1511537467026],[-127.45255135904004,53.151328125473846],[-127.45261544536119,53.15150327956183],[-127.45271179695244,53.15166346915767],[-127.45285984779643,53.15182862713665],[-127.4528350869688,53.15200767797893],[-127.45270480535348,53.152169529189294],[-127.45263446241465,53.15222137743066],[-127.45251123960836,53.15228845202728],[-127.45220632491085,53.15235662676672],[-127.4519519124665,53.152449964767165],[-127.45171012060236,53.152556030263604],[-127.45145477668869,53.152649369618985],[-127.4512206653294,53.152760943071264],[-127.45093588483357,53.15281542881079],[-127.45062395616608,53.152870237690784],[-127.45050970442418,53.15295344494666],[-127.45047161649991,53.15301723246622],[-127.45041209547446,53.153193902526894],[-127.45026950108291,53.153351974982606],[-127.4500583355526,53.153477277274355],[-127.44980230708374,53.1535784657706],[-127.44952130315029,53.15363402236323],[-127.44923137972599,53.15367511023357],[-127.44906855944309,53.15370792617994],[-127.44889140409187,53.153759403479555],[-127.44872653429218,53.15386900334309],[-127.44858769622151,53.154027592425095],[-127.44848575231232,53.15419693612311],[-127.44838003864783,53.15436520520772],[-127.44824782162365,53.154525954053014],[-127.44811655250669,53.15465923099935],[-127.44790515807715,53.15480582413091],[-127.4477088170811,53.1549539091771],[-127.44752969823057,53.15511298959277],[-127.44737419300968,53.15524992398362],[-127.44723347249912,53.15540853426211],[-127.447118294999,53.155574676468426],[-127.44699745571594,53.15573921129],[-127.44682538194259,53.155885312545394],[-127.44663052226385,53.15602217112589],[-127.44643466013815,53.156157365138974],[-127.44623406848086,53.15629148699785],[-127.44602963027134,53.156422302546254],[-127.44582135319996,53.15655091437754],[-127.44561405736397,53.1566806434334],[-127.44540963432978,53.1568120134868],[-127.44520805014963,53.156944469131346],[-127.4450074319129,53.15707803324949],[-127.44480873855198,53.15721269413903],[-127.44461192083737,53.157347887609994],[-127.44441702831539,53.15748418683228],[-127.44422403041075,53.15762157425842],[-127.44406237073059,53.15774345487534],[-127.44385043813972,53.15790237370962],[-127.44367075750387,53.158045765662216],[-127.44349302074835,53.158190810076604],[-127.4433399412985,53.15834508337158],[-127.4432228443392,53.15851012400886],[-127.44315668418523,53.1586857497479],[-127.44304991776951,53.158851784829174],[-127.44287978238283,53.15900010637679],[-127.44268202118445,53.159135307831754],[-127.44245553376908,53.15925237306412],[-127.44220595819009,53.15935178904493],[-127.44194860330258,53.15944289898886],[-127.44168248674478,53.15952458521541],[-127.44140862500409,53.15959852072113],[-127.44116568826121,53.15970065068278],[-127.44093156814506,53.15981388808209],[-127.4407165582183,53.15993808973705],[-127.44052281789291,53.16008164766022],[-127.4405405276617,53.160243923846764],[-127.44064561396773,53.16041354572666],[-127.44035821975297,53.16033803447706],[-127.44006733695234,53.16029786938942],[-127.43977208433166,53.160266721809094],[-127.43948823381598,53.16021246634278],[-127.43920873531471,53.16014862742623],[-127.43892305523339,53.1600960693326],[-127.43864746026891,53.16006411518166],[-127.43833020957128,53.16004724380634],[-127.43804381137392,53.160000851329656],[-127.43775977851055,53.15994154664864],[-127.43746428573223,53.159930567646995],[-127.43716594475397,53.15994651765552],[-127.43687278797503,53.15997697218255],[-127.43654214446664,53.15997930935778],[-127.43628322367488,53.159942108988716],[-127.43599079338983,53.15991091778484],[-127.43569587693388,53.15994475263405],[-127.43539925073034,53.159928179076665],[-127.43510928149276,53.1598868701771],[-127.43480987786072,53.159898900435024],[-127.4345116070359,53.159889068383855],[-127.43421303752316,53.15989828992567],[-127.43391336824749,53.15990248568108],[-127.43363322639573,53.15995742835363],[-127.43349138093743,53.16011267280237],[-127.433132936961,53.160262695542364],[-127.43283788291166,53.16029259818531],[-127.43257077648204,53.16037315496451],[-127.43232499305007,53.160474745049356],[-127.4320744007361,53.160572475067916],[-127.43177676990732,53.16058167903888],[-127.4314800650144,53.16056285532388],[-127.43120322691236,53.160494482941495],[-127.43091670112223,53.160444157113],[-127.43062408203426,53.16040735180162],[-127.43035182295644,53.1603355602151],[-127.43013496387215,53.160212105497806],[-127.42986607276708,53.16015652572176],[-127.42955998902424,53.160165261472855],[-127.42926390968582,53.160192370480544],[-127.42896665905764,53.16021276911061],[-127.42867041279806,53.1602353961246],[-127.42837641351325,53.160268645730746],[-127.42808548011712,53.16030969304294],[-127.42779560759428,53.16035465351655],[-127.42750775488382,53.16040351559251],[-127.42722588314473,53.160463502154194],[-127.42695876495925,53.16054404626222],[-127.42670331861503,53.16063734076198],[-127.42645176802101,53.16073506128678],[-127.42622426037516,53.160850986380794],[-127.42599968587427,53.16097080235514],[-127.42572855183639,53.16104354758963],[-127.42543554883208,53.16107901007006],[-127.42513830914197,53.16109996364384],[-127.42483736033859,53.16112207278062],[-127.42461041726307,53.161227346400665],[-127.42459314513462,53.16107626965486],[-127.42442336612123,53.160986977442995],[-127.42418638442703,53.160877210698935],[-127.4239457178461,53.160769720109776],[-127.42368605197248,53.160682073030564],[-127.42335138219319,53.160620545984756],[-127.42312386220965,53.160541476120244],[-127.42288325686538,53.16043566809301],[-127.42263822207426,53.16033719241825],[-127.42241504438805,53.16021996770796],[-127.42220556605709,53.1600919364974],[-127.42198403815019,53.15996796740334],[-127.42175430103042,53.159850820276674],[-127.42149279093388,53.159763746449116],[-127.42121589530285,53.15969255454333],[-127.42092348151448,53.159661881899886],[-127.42062288356802,53.159666055163285],[-127.42032463192916,53.159684758685124],[-127.42002753086815,53.159709615575046],[-127.41973254686106,53.159741734872945],[-127.4194494389834,53.15979275267841],[-127.41918342340576,53.15987831321921],[-127.41890647772759,53.15994550937134],[-127.41861559383308,53.15998821815989],[-127.41831932469971,53.16001025470258],[-127.41802027798424,53.16000487293457],[-127.41772258310682,53.159984350257616],[-127.41742997867237,53.15994751232178],[-127.41714260394052,53.15989940479658],[-127.41684501879696,53.159881675692326],[-127.41654662092785,53.15986787327537],[-127.4162473730737,53.159856886324626],[-127.41594921927364,53.15985036803046],[-127.41564982934692,53.15986291439481],[-127.41537487198228,53.15979336221077],[-127.41512685436528,53.15968931271795],[-127.41487809583867,53.159590865730394],[-127.4145953231044,53.15953989998123],[-127.41430354121759,53.15949968267209],[-127.41400734669031,53.15946736174043],[-127.41370945163597,53.15944066350742],[-127.41341257577379,53.1594161936064],[-127.41311512631783,53.159402371262104],[-127.41281506577387,53.159394747257586],[-127.41251678508388,53.15938430417382],[-127.41222002241653,53.159363191815395],[-127.41192728116202,53.1593224153392],[-127.4116363167279,53.15927826404539],[-127.411342207918,53.159252635350384],[-127.41104241012636,53.159252848101545],[-127.41074317229533,53.159269862774494],[-127.4104520793828,53.15930638605423],[-127.41017913088638,53.1593813584168],[-127.40991586392917,53.15946574458423],[-127.40963797721062,53.159532930133466],[-127.40935808968965,53.15959677697332],[-127.40907821630891,53.15966062297078],[-127.40879928961176,53.15972501285468],[-127.40852232845799,53.159792184716714],[-127.40829003088308,53.15990645542681],[-127.40820285897446,53.16007446537625],[-127.40816666567532,53.1602536307776],[-127.40810412233888,53.16042975673463],[-127.4080057622762,53.16059902019552],[-127.40788284979676,53.16076297249471],[-127.40774481744275,53.16092262198732],[-127.4075925603936,53.16107739318106],[-127.40743553773244,53.16122998854308],[-127.40726999908523,53.16137987888759],[-127.40708259053619,53.1615199433766],[-127.40689516576194,53.161660007736245],[-127.40671821694204,53.1618049855799],[-127.40656120341586,53.16195757954316],[-127.40640895707553,53.162112913696426],[-127.40626427673617,53.1622703989773],[-127.40613944226835,53.16243325139269],[-127.40607590221252,53.162607702357015],[-127.40607677108555,53.16277466443493],[-127.40606033924377,53.16295695590137],[-127.40606355002339,53.16313845818549],[-127.40596423140627,53.16330773091334],[-127.40584321011819,53.163472222992276],[-127.40572782950684,53.1636377595875],[-127.40564265832089,53.163809669985],[-127.40569351235195,53.163986679742145],[-127.40582717988737,53.164146461448425],[-127.40597935432989,53.16429874363765],[-127.40597974369844,53.16447971450796],[-127.40593127930471,53.16465679211709],[-127.40582722868389,53.16482500012557],[-127.40571469895809,53.16499162330089],[-127.40561160954596,53.165160384445926],[-127.4054934025093,53.16532539832985],[-127.40535627543085,53.165485033605535],[-127.40522578581943,53.165646831137856],[-127.40510663176234,53.16581185579993],[-127.40499407813306,53.165977922592695],[-127.40488910980417,53.16614669629094],[-127.40481053502413,53.166320203909734],[-127.40477241178456,53.16649827867685],[-127.40474742369399,53.16667730919093],[-127.40471119168342,53.16685591727983],[-127.4046476762791,53.16703148723084],[-127.40456154968861,53.16720340773471],[-127.40445279262688,53.167371105213185],[-127.40433172012771,53.16753503099022],[-127.4042182483947,53.167701672480526],[-127.40406215163192,53.16785480722096],[-127.40383732833035,53.1679700910213],[-127.40354127440138,53.16800049627744],[-127.40324267466153,53.16801020405202],[-127.40294396681817,53.16801710633084],[-127.40264993012296,53.16805140311183],[-127.40238848607673,53.16813630554585],[-127.40216762656796,53.16825827178695],[-127.40199823907855,53.16840651381779],[-127.40186394732733,53.16856779633099],[-127.40179192025911,53.16874122397882],[-127.40182866849943,53.168917281211804],[-127.40200280789567,53.16905361943825],[-127.40226500306171,53.16916089007165],[-127.40250926418896,53.16926445493324],[-127.40275172385236,53.169369726050085],[-127.4029923330789,53.16947613025883],[-127.40323388805491,53.169582531741376],[-127.4034607902594,53.1696991830207],[-127.40366662043365,53.16983009589155],[-127.4038521626637,53.169971334528135],[-127.4040127371298,53.17012239869885],[-127.40413719497786,53.17028620882404],[-127.40424210441493,53.170454177324416],[-127.40434052413381,53.17062446393866],[-127.40441284144867,53.17079842196012],[-127.40452126658391,53.17107225104415],[-127.40463859847426,53.17110615387365],[-127.40490579733849,53.17113772240128],[-127.40513554401545,53.171170299639684],[-127.40542024829753,53.171333891774864],[-127.4055826324021,53.1714826821554],[-127.40563287557947,53.17155661098311],[-127.40570787457939,53.171557396940976],[-127.40605862471763,53.17173421551354],[-127.40637237234756,53.17195349118976],[-127.40678469910308,53.172432133103186],[-127.40741101621651,53.172891429686544],[-127.40788574965244,53.17324493772185],[-127.40802184807676,53.173307194244735],[-127.40822682164271,53.173439794897554],[-127.4084317404204,53.17357071044921],[-127.4086329876878,53.17370391056277],[-127.40882776392122,53.17383998439344],[-127.40901243040248,53.17398179025849],[-127.40919062199018,53.174125905168594],[-127.40935034273971,53.17427864877178],[-127.40946179242445,53.17444485835438],[-127.40953321147116,53.17461937973162],[-127.40958036611994,53.17479699595191],[-127.40960319995445,53.17497602230827],[-127.40960824475769,53.17515582522258],[-127.40957482913066,53.17533440060031],[-127.40950662547735,53.17550946345856],[-127.40941579066264,53.17568087798693],[-127.40929096255768,53.17584429691865],[-127.40916988455858,53.17600822688486],[-127.40906963726663,53.1761780676926],[-127.40900046727091,53.176352585813916],[-127.40895202042014,53.176530219114966],[-127.40890732078222,53.1767078077858],[-127.4088691904333,53.176885883040526],[-127.40882450857085,53.17706402724934],[-127.40875722874578,53.17723908741378],[-127.40868335982465,53.17741309633073],[-127.40859346200895,53.177584498815044],[-127.40851015175511,53.17775694345613],[-127.4083672996142,53.17791440767105],[-127.40816070998389,53.17804349380137],[-127.40790419062972,53.17813731367331],[-127.4076525113917,53.17823555787618],[-127.40742960990387,53.17835363046914],[-127.40724403785835,53.17849479180974],[-127.40707557540514,53.178643593795286],[-127.40689189358199,53.17878529685875],[-127.4067101063902,53.17892808874925],[-127.4065368885663,53.179074705163316],[-127.40638261369706,53.17922726415087],[-127.40630307251845,53.17940021799693],[-127.40629218284687,53.179580209700504],[-127.40629066251635,53.179760081148395],[-127.40616557195023,53.17991677559578],[-127.40588145770401,53.17997001176075],[-127.40559942528574,53.18002995514355],[-127.40537845699592,53.18015024185133],[-127.40521664064468,53.18030175906486],[-127.40509363792141,53.180464586358326],[-127.40499522300306,53.180634410207794],[-127.40489964422949,53.18080475612421],[-127.40484458636473,53.18098134487428],[-127.4047442764918,53.18115062613571],[-127.40462885836978,53.181316159885284],[-127.40455684312829,53.181490708355284],[-127.40451870515331,53.181668781568106],[-127.40450686249429,53.18184877512675],[-127.4045474524306,53.18202647035754],[-127.40463188956709,53.18219804244075],[-127.40480364600359,53.18234561065922],[-127.40498089549737,53.182489186850624],[-127.40511932992665,53.18264946767112],[-127.40515144513078,53.18282614260521],[-127.40510392300877,53.18300432724078],[-127.40512859768049,53.183182766860625],[-127.40537750583893,53.18345156497438],[-127.40546384176035,53.18362366969309],[-127.40552876383768,53.1837999551012],[-127.40557307475221,53.183977049881996],[-127.40548222081706,53.184148460426],[-127.40533748013696,53.1843064982836],[-127.40515664605502,53.18445040527873],[-127.4049681649995,53.18458991130223],[-127.40477207474396,53.18472615440614],[-127.40458071679862,53.18486401746104],[-127.40440750448082,53.18501175045281],[-127.40424386623665,53.185165528492576],[-127.4040658248131,53.185308835769064],[-127.40384655010737,53.18542461639471],[-127.40357936007013,53.1855090317032],[-127.40330637899173,53.1855884678059],[-127.40302942556899,53.185661226693085],[-127.4027659249706,53.18574391102048],[-127.40255729781668,53.18587020431039],[-127.40237557353066,53.186015793713445],[-127.40220613439078,53.18616459917213],[-127.40198215707069,53.18628043185753],[-127.40170012917316,53.18634148573662],[-127.40140381513379,53.186367960285814],[-127.40110465848174,53.186364776191944],[-127.40081014521758,53.186332400716616],[-127.40053144010096,53.18626734005834],[-127.40026899572275,53.18618415683243],[-127.40000025955808,53.1861088916374],[-127.39996715307481,53.18609976233962],[-127.39972883233602,53.18606559933904],[-127.39940174978366,53.1860683440395],[-127.39910317292974,53.18605449784856],[-127.39880381848128,53.18604570729018],[-127.39850601992069,53.18605539204381],[-127.39820775424127,53.186079084621696],[-127.39791555846806,53.186116707856236],[-127.39763148487718,53.186172728946524],[-127.39734848815617,53.186233219051346],[-127.39705825742301,53.186273622951006],[-127.39675873055661,53.18628780608552],[-127.39645983365779,53.18629245142664],[-127.39617057748124,53.186248796447934],[-127.39596561661212,53.18611729601752],[-127.39575607148711,53.185988655254384],[-127.39558156856758,53.18584279215629],[-127.39544412275325,53.18568304493962],[-127.39528168285914,53.18553312163823],[-127.3950694530455,53.18540842893536],[-127.39479611192667,53.185335447519265],[-127.39452278674436,53.1852624652929],[-127.39426477665775,53.18517081667839],[-127.39403048604264,53.185059273280146],[-127.39389307054375,53.18490064454054],[-127.39376305705107,53.184738566718394],[-127.39357668675947,53.184601805197836],[-127.39331688207585,53.18451240791563],[-127.39305704190029,53.184421898851696],[-127.39282005052264,53.18431374667761],[-127.39262247712895,53.18417823604476],[-127.39242401229352,53.184043856171485],[-127.39222738928434,53.18390888953409],[-127.39204182474325,53.18376763375422],[-127.39185071635092,53.18362924883425],[-127.39163477652875,53.183505158467504],[-127.391411488877,53.183385636458056],[-127.39119462202801,53.18326155619425],[-127.39097408517456,53.18314031567183],[-127.39077377490318,53.1830065195364],[-127.3905633346872,53.18287843606758],[-127.39034270975772,53.18275439839835],[-127.39010758692746,53.18264509834938],[-127.38982634327387,53.18258733105114],[-127.38952920847247,53.18255944104859],[-127.38923558298808,53.182524220735885],[-127.38904363340362,53.18238808244061],[-127.38887840994893,53.182238174190225],[-127.38872337394207,53.182084228614734],[-127.3885572235728,53.18193433975352],[-127.38841527140382,53.1817791197544],[-127.38833643093061,53.18160466525121],[-127.38822782745281,53.18143729218777],[-127.38807094095195,53.18128392326611],[-127.38789368039727,53.1811380813328],[-127.3877034866913,53.1809979937143],[-127.38749133898405,53.180874416260885],[-127.38723882746625,53.180777640991884],[-127.3869780752157,53.180686564730465],[-127.38674384684812,53.18057556225372],[-127.38652513760987,53.18045205993951],[-127.38631841601364,53.18032224908642],[-127.38614580276742,53.18017466478403],[-127.3859686086813,53.18003050462278],[-127.3857876860748,53.17988694365315],[-127.38564287732979,53.17973006840079],[-127.38553523378681,53.17956268164594],[-127.38548431357475,53.17943889046594],[-127.38534412991896,53.179222568738275],[-127.38527280286624,53.17904803321939],[-127.38510676816762,53.178900935226565],[-127.38482037412525,53.17885665481934],[-127.38452183475172,53.17884221621156],[-127.3842265303673,53.17881205058809],[-127.38395150502973,53.1787429908844],[-127.38369355729698,53.178651309957345],[-127.38344199401195,53.178553959832676],[-127.38318856115527,53.178457186840475],[-127.38291539180275,53.17838697351532],[-127.38262094798633,53.178354552674215],[-127.3823216116835,53.178344044464865],[-127.38202716069327,53.17836877299504],[-127.38174026316152,53.17842366892558],[-127.38145006765271,53.1784634700071],[-127.38115133747615,53.17847200200925],[-127.38071559921123,53.17841769178157],[-127.38041777451932,53.17839651092813],[-127.38012022639856,53.178412305985795],[-127.37983015744365,53.17845602819652],[-127.37954807982575,53.17851534501594],[-127.3792630701035,53.178570768716305],[-127.37897600348094,53.17862062162969],[-127.37868495096481,53.178663231852546],[-127.37839182309807,53.17869969771904],[-127.37809368834827,53.17869756485159],[-127.37780981148367,53.17864371766074],[-127.37753474286374,53.178572958302496],[-127.37727320840011,53.178485796654066],[-127.37699548416454,53.1784195493539],[-127.37671151929922,53.17836289459761],[-127.37642754049465,53.1783062482943],[-127.37614357715,53.17824959217273],[-127.37586227250343,53.178188431044326],[-127.3755827694349,53.17812499815857],[-127.37529875732841,53.178067228962966],[-127.37502192862026,53.177999281301844],[-127.37474443128932,53.177968885381766],[-127.37443860474895,53.17793153822874],[-127.3741402753834,53.17792322994464],[-127.37384111110137,53.17791830136468],[-127.37354260013313,53.17790439068086],[-127.37324385094712,53.17791178238599],[-127.37294490464072,53.17791356365454],[-127.37262796420848,53.17790939394267],[-127.37234786284803,53.17794289683796],[-127.37205031490667,53.1779586716233],[-127.37175163770749,53.1779682999225],[-127.37145316338093,53.17795550415163],[-127.37115541917937,53.17793654035835],[-127.37086271321668,53.17789903207435],[-127.37058700359799,53.177836664178194],[-127.37029570411424,53.177785126244686],[-127.37002694782154,53.17770587655895],[-127.36977631448693,53.177607357461426],[-127.36953117716493,53.177504856656974],[-127.36925883933445,53.17743068489429],[-127.3689963428987,53.17737096652526],[-127.36870108045716,53.17731219111959],[-127.36843462597388,53.17721721390325],[-127.3681524461221,53.17715716534934],[-127.3678571831333,53.17712751449063],[-127.36755831483802,53.17713153148567],[-127.36726195036523,53.17715456003614],[-127.36696880516006,53.17719044204789],[-127.36667775039459,53.17723302279332],[-127.36639366218022,53.1772884137929],[-127.36611260821152,53.17735048372117],[-127.36583056988961,53.17741088790984],[-127.36554951457084,53.177472965459096],[-127.36524747387837,53.17749493378667],[-127.36498345227406,53.17744587433767],[-127.36478785574596,53.17730973060502],[-127.36461167263442,53.17716496281407],[-127.36439490126608,53.17704083324081],[-127.36415250838209,53.176935492821016],[-127.36389643439331,53.17684207130502],[-127.36362230906703,53.176770148503],[-127.36335086146077,53.176694267665894],[-127.36306872839451,53.17663532716401],[-127.36277950054894,53.17658935005179],[-127.36250894606165,53.17651178061374],[-127.3622465616475,53.17642570760082],[-127.36197604523839,53.176349257121736],[-127.36168858620884,53.1762998952335],[-127.36139253060192,53.17627416405415],[-127.36109895429432,53.17623831825676],[-127.36081326278035,53.176185572149315],[-127.36053554339689,53.17611816598306],[-127.36025338208319,53.176058098571275],[-127.35997034888894,53.17600027273942],[-127.35981851423034,53.17585466248254],[-127.35974358625772,53.17568126554194],[-127.35963045196203,53.1755144750513],[-127.35948761107338,53.175356990326335],[-127.35926263757173,53.17523911346348],[-127.35902208744037,53.175132056169964],[-127.35876423386574,53.175040885341964],[-127.35851819370966,53.17493837243577],[-127.35826945947817,53.174839251726176],[-127.35801159119066,53.1747475146713],[-127.35774651686121,53.17466483344611],[-127.3574715045368,53.174593462590686],[-127.35718400811407,53.17462982055548],[-127.35698093912308,53.17475653444362],[-127.35685030785072,53.17492051817042],[-127.35674555636112,53.17510269054829],[-127.3566950000384,53.17527976840218],[-127.35666418204246,53.17545885227927],[-127.3566324165732,53.175637391167825],[-127.35658375074794,53.17581500306502],[-127.35650683379583,53.17598845620018],[-127.35641483608542,53.176159285016105],[-127.35632472926169,53.17633064789197],[-127.35625066445176,53.17650518871419],[-127.35618598912133,53.17668074251829],[-127.35612320208868,53.17685627463717],[-127.35602365154728,53.177025504156184],[-127.3559702713356,53.17720260482937],[-127.35590748263392,53.177378136783986],[-127.35586068563903,53.17755572675766],[-127.35582329355793,53.17773432959703],[-127.35575955901687,53.17790987223657],[-127.35567226725222,53.17808176692777],[-127.35555857536683,53.17824835182245],[-127.35543537258036,53.17841112785389],[-127.35539986995417,53.17859027359861],[-127.35534930354677,53.17876734158026],[-127.35529404157393,53.178943907447135],[-127.35525288018955,53.17912199725694],[-127.35520324201205,53.179299054486975],[-127.35513669909787,53.17947462872638],[-127.35507483305538,53.179650149385495],[-127.35502144584888,53.179827258339536],[-127.35497839039434,53.18000480484002],[-127.35495225416737,53.180183834117074],[-127.35494958636866,53.180363724396614],[-127.35495346979056,53.180543530732926],[-127.35495547951697,53.180723367455926],[-127.35494719242848,53.18090387779354],[-127.35491637793177,53.181082960496326],[-127.3548092447251,53.18125003400937],[-127.35462630613601,53.18139164513379],[-127.35438614044448,53.18150252492299],[-127.35422404688117,53.18165117633726],[-127.35410281067172,53.18181728979712],[-127.35399479677032,53.18198605789],[-127.35389717141994,53.1821575040863],[-127.35382960236207,53.18233084775296],[-127.35383717577162,53.18250893529119],[-127.35390963116322,53.18269356040821],[-127.35386558494216,53.18286944106307],[-127.3538239450462,53.183003823318394],[-127.35383964491227,53.18323056810192],[-127.35377118296377,53.18340559822429],[-127.35378969664059,53.18357404005438],[-127.35383235904969,53.18373547329271],[-127.3538370986274,53.18394217264775],[-127.35387351435023,53.184113206761566],[-127.3537970191269,53.18430065513606],[-127.35383552184133,53.18444925355865],[-127.35383680764974,53.18457755097428],[-127.35378332921401,53.18483981572123],[-127.35378345996466,53.18501967346908],[-127.35381541622618,53.18519803783975],[-127.35384551660218,53.18537698818075],[-127.35391672496343,53.185551550972406],[-127.35408924463204,53.185698617060915],[-127.35425434303885,53.185848564754316],[-127.3543683747463,53.18601367285282],[-127.35436097480651,53.18619248707849],[-127.35424820367231,53.186359623921255],[-127.35413259187868,53.18652567252089],[-127.35400846571304,53.18668957714516],[-127.3539248614447,53.18686030669388],[-127.35391936962907,53.187040219562725],[-127.35393449539482,53.18721990568355],[-127.35395336962567,53.187399539969505],[-127.35396662134464,53.18757924747816],[-127.35396298615794,53.187758583243145],[-127.35395843905295,53.187938485227],[-127.35395387720138,53.18811839632606],[-127.35395118658747,53.188297721239124],[-127.35395224745785,53.18847755906073],[-127.35395987640752,53.188657330746054],[-127.35396750513516,53.188837093451916],[-127.353972330137,53.189016897156485],[-127.3539733911153,53.18919673490796],[-127.35398851788153,53.189376420812145],[-127.35399802126778,53.18955616201857],[-127.35405895329313,53.18973139770394],[-127.35412363774611,53.189907155223004],[-127.35416591599959,53.19008540107794],[-127.35423804525487,53.1902593880327],[-127.35433259393146,53.19043032160036],[-127.3544624557551,53.190591877611],[-127.35462387681743,53.19074299622901],[-127.35479087127125,53.190892921327595],[-127.35501957493489,53.19100796683631],[-127.35527932045437,53.19109688322735],[-127.35554907920984,53.191176163954125],[-127.35582506873183,53.19124527850405],[-127.35610559450525,53.19130986709897],[-127.35638699374913,53.19137219489539],[-127.35666748218303,53.19143509723905],[-127.35694617194433,53.19150082548232],[-127.357217613069,53.19157391547111],[-127.35740778930105,53.191715171407246],[-127.35745074348489,53.19188500842629],[-127.35742835941423,53.19206399413273],[-127.35746969115637,53.192241693820584],[-127.3575232183268,53.19241981848948],[-127.35757113703613,53.19259799843652],[-127.3576237531419,53.19277668928862],[-127.35771916086954,53.19294480434677],[-127.3578610919461,53.1931017449266],[-127.35802350018997,53.193253959261554],[-127.35818776633745,53.19340559626117],[-127.3583362361085,53.193561896522],[-127.35845310579073,53.19372640310103],[-127.35854953884889,53.193897311656386],[-127.35864131151978,53.19406882939035],[-127.35874518730759,53.19423740226981],[-127.35887323932766,53.194400103750205],[-127.35903379971268,53.194552902665606],[-127.35918596890563,53.19470691823178],[-127.35926373246679,53.1948802725954],[-127.35928075838616,53.19505993576077],[-127.3592415084714,53.1952391151025],[-127.35924817714285,53.19541721171978],[-127.35931105318039,53.19559410754947],[-127.3593252747787,53.19577379385919],[-127.35934883708312,53.19595281715565],[-127.35939780563325,53.19613435483191],[-127.35948206963596,53.19630539319287],[-127.3596839276402,53.196429702605016],[-127.35991185589788,53.19654867425153],[-127.36008447728443,53.19669685090506],[-127.36021903860694,53.19685722599073],[-127.36034246091877,53.197021099553446],[-127.36045751212613,53.19718730132464],[-127.36056606431144,53.19735526298074],[-127.36066715436984,53.197524430825865],[-127.36075521213284,53.197696554219156],[-127.3608255756173,53.19787223358519],[-127.36087253376952,53.198049311317455],[-127.36088210440231,53.198230171300004],[-127.36084867385637,53.1983863165651],[-127.36074417009358,53.198577460488],[-127.36062860432035,53.19874519010658],[-127.3605375036703,53.19891600934038],[-127.36048507780612,53.19909366366401],[-127.36046836329918,53.1992737048283],[-127.36049009070967,53.19945331348359],[-127.36055949321634,53.19962844808857],[-127.36067547942092,53.19979408295886],[-127.36082496178668,53.19995148887934],[-127.36088184882439,53.200000141106514],[-127.36114055148657,53.200199994729616],[-127.36135464823654,53.2003252812756],[-127.3616062901625,53.20042267716725],[-127.36184788165194,53.20052804111092],[-127.36207761945184,53.20064361713681],[-127.36231741064846,53.20075124200316],[-127.36252696327651,53.20088106105143],[-127.36261028334069,53.201050987277185],[-127.36261609434082,53.20123133435168],[-127.36255808564515,53.201410174230894],[-127.36263476520256,53.201577944573025],[-127.36279263661447,53.20173356617474],[-127.36300853085311,53.201856032123764],[-127.36325199077594,53.20196080698883],[-127.36344492725357,53.20209809492849],[-127.36357394793117,53.20226021519995],[-127.36363681611336,53.202435987914875],[-127.36365105839072,53.20261567304361],[-127.36364183800936,53.20279507239041],[-127.36362324256466,53.20297457961865],[-127.36360277195718,53.2031541084062],[-127.36358510619526,53.20333360489051],[-127.36356745528353,53.20351310118219],[-127.36354321620523,53.20369211746282],[-127.36351522655913,53.2038711679162],[-127.36349098705453,53.2040501841517],[-127.36347426547046,53.204229669657934],[-127.36345941880514,53.20440913356727],[-127.36344550204791,53.20458858675539],[-127.36342972509651,53.204768061328636],[-127.36341677105216,53.2049480592062],[-127.363400978844,53.205127533913675],[-127.36335793281106,53.2053050810336],[-127.36326684405505,53.20547590159117],[-127.36315971815583,53.20564410062234],[-127.36308843540202,53.20581861068306],[-127.36304633532855,53.205996702526626],[-127.36302961108758,53.20617618778272],[-127.36303260145002,53.206356011008054],[-127.3630515049574,53.206535086389074],[-127.36310037512358,53.20671269644516],[-127.36323210547037,53.20687142392271],[-127.36341213685638,53.207015027953375],[-127.36351790572776,53.20718301846896],[-127.3635752062577,53.20735996651671],[-127.3636119014872,53.2075382811952],[-127.36363082589463,53.20771791197175],[-127.36364317679153,53.20789706257075],[-127.36365746026804,53.20807843207112],[-127.363603853159,53.20824825645946],[-127.36341048771546,53.20838943329956],[-127.3632872784579,53.20855333484138],[-127.36313709564763,53.208695699718334],[-127.36284430598411,53.20874949352457],[-127.3625514251861,53.20880048171623],[-127.36239244690164,53.20893174094168],[-127.36237775627163,53.209116240518],[-127.36234132713955,53.20929539606838],[-127.36236201394095,53.20947164482923],[-127.36247808849453,53.20963896178537],[-127.36255955350988,53.2098094735447],[-127.3625644532495,53.209990386070594],[-127.36260019814773,53.21016814694433],[-127.36268361220478,53.21034087733181],[-127.36276982953403,53.21051301960851],[-127.36285699244739,53.210685141975226],[-127.36294133583753,53.21085730566296],[-127.3630126243684,53.21103185162897],[-127.36306337493087,53.2112094397025],[-127.36309165759035,53.21138840675719],[-127.36311336916361,53.211567449375245],[-127.3631360443179,53.21174704566132],[-127.36308916741534,53.21192239487528],[-127.3628966021236,53.212059634681694],[-127.36263787952241,53.2121522559981],[-127.36236345168999,53.21222376632668],[-127.36207926390298,53.21228306184353],[-127.3617854559754,53.21230605296684],[-127.361493713704,53.2123060433312],[-127.36122142581819,53.21238537042361],[-127.36094602781087,53.2124557679843],[-127.36067747377498,53.21253505091814],[-127.36044184313006,53.212645887207806],[-127.36024546116708,53.212781489950174],[-127.36007955344937,53.212931310087534],[-127.35995535494727,53.213094663014694],[-127.359884994505,53.213269715377905],[-127.35989540178561,53.21344721159399],[-127.36003657234296,53.21360751020925],[-127.36020830069533,53.2137551405739],[-127.36039204787573,53.21389702088981],[-127.36058410245661,53.21403488802134],[-127.36077985534074,53.21417103600145],[-127.36097559131076,53.21430661908739],[-127.36116672228832,53.214445051699386],[-127.36135140622623,53.21458692875272],[-127.3615333035204,53.214729393340996],[-127.36171148996218,53.214873576670136],[-127.36187026281979,53.215026391612156],[-127.3619900113906,53.21519086056521],[-127.36206598177036,53.215364797126306],[-127.36211391272276,53.215542417614145],[-127.36214780304864,53.215720764213145],[-127.36216484932713,53.21590041599424],[-127.3621612646706,53.21608031384054],[-127.36215673150106,53.216259657801245],[-127.36216345476043,53.21643942817712],[-127.36217112366955,53.216619196632124],[-127.36216473277617,53.21679911769699],[-127.36214612490056,53.21697862334822],[-127.3621199964572,53.217157659604325],[-127.36206844884491,53.2173341820425],[-127.36199049425974,53.21750596083145],[-127.3619520573327,53.217681776710165],[-127.36186758360465,53.21785531562676],[-127.36182071256715,53.21803121936579],[-127.36182373471298,53.21821216164044],[-127.36178911969691,53.218390165652714],[-127.36173951416698,53.21856835082638],[-127.3617105255971,53.21874629013231],[-127.36172948331641,53.21892704925599],[-127.36180921076452,53.21910094253573],[-127.3619577298821,53.21925555138778],[-127.362167352036,53.2193842494569],[-127.36237881828457,53.219512370161134],[-127.3625468631455,53.21966115098833],[-127.36270102945699,53.21981570296383],[-127.36289592457864,53.21995353365296],[-127.36308613908297,53.2200914178532],[-127.36317977233055,53.220260103220326],[-127.36324089504755,53.22043869176402],[-127.36332154403044,53.220612017588714],[-127.36347096532948,53.22076493779299],[-127.36366592139996,53.22090444290013],[-127.3638284032862,53.2210549712556],[-127.36395471323077,53.221218241913135],[-127.3640633410178,53.22138619820427],[-127.36417304468283,53.221558624294985],[-127.36424244465223,53.221732078919146],[-127.36412932857154,53.22189026073744],[-127.36395405580419,53.22204131366349],[-127.3637480271552,53.222169743964656],[-127.36348438494831,53.22225738445215],[-127.36319589171576,53.222301598907876],[-127.3628984976807,53.22233191234215],[-127.3626080584395,53.2223744713538],[-127.36232675345829,53.2224382155059],[-127.36205423958197,53.22251250786428],[-127.3617846751155,53.22259123901483],[-127.36151802448522,53.22267330674403],[-127.36125814415982,53.222761454761766],[-127.36100800284184,53.22286069607145],[-127.36075110376787,53.222953846794915],[-127.3604863786712,53.22303756640653],[-127.36021973771211,53.223119631023856],[-127.35995501052489,53.223203349441555],[-127.35969129981197,53.223289296731195],[-127.35943241124382,53.223379105626044],[-127.35918707047215,53.22348221438962],[-127.35892626772359,53.22357092352351],[-127.35866255262593,53.223656868508016],[-127.35842960722344,53.22376599222163],[-127.35817362771333,53.22385913561345],[-127.35789125273483,53.2239195195554],[-127.3576019229134,53.223967656215805],[-127.35731044656421,53.22400740799739],[-127.35701271262987,53.22402762523432],[-127.35671710604139,53.224055661346796],[-127.35643474267701,53.224116041641565],[-127.35615927838764,53.22418699219845],[-127.35588867491838,53.2242634803763],[-127.35561812169242,53.22434109687943],[-127.35534556846416,53.224415364951504],[-127.3550671681269,53.224482420018646],[-127.35478278306309,53.224538901913974],[-127.35449440875203,53.22458757576682],[-127.35420499870924,53.22463346380697],[-127.35391249761044,53.22467098666934],[-127.35361904743215,53.224707954875235],[-127.3533316550527,53.22475829998623],[-127.35305024850098,53.224819781731625],[-127.3527767394082,53.22489349890205],[-127.35249926233207,53.22496053730373],[-127.3522025007149,53.22498185181989],[-127.35191377383616,53.22493191355048],[-127.35162335106237,53.22488760571405],[-127.3513261590542,53.22486634145131],[-127.35102809346715,53.22484732753391],[-127.35073427795876,53.224814252891974],[-127.35043592675542,53.22481541092451],[-127.35017515123687,53.2249057854608],[-127.34989667093882,53.22497115278384],[-127.34960827031188,53.225019259142314],[-127.34931483168955,53.2250567722859],[-127.34901915931302,53.22508311343274],[-127.34871978917766,53.22508203759006],[-127.34842331032243,53.22505346978759],[-127.34812613676597,53.225032762064814],[-127.34782805344143,53.22501317554423],[-127.34752936161618,53.225003689238505],[-127.3472300247993,53.22500316506211],[-127.34692988557195,53.22500714046872],[-127.34663085494037,53.22501669637782],[-127.34633298404778,53.22503297070837],[-127.34603639718547,53.22505987058331],[-127.34574695675317,53.2251051734047],[-127.34546846829424,53.22517053031926],[-127.34522506306085,53.225276384543264],[-127.34497771136688,53.22537668020593],[-127.3447139386853,53.22546202951876],[-127.34444910986674,53.22554347271777],[-127.34420184435079,53.22543982324682],[-127.3439053869352,53.225412373442545],[-127.34360901584829,53.22538715408401],[-127.34331178875917,53.22536474957779],[-127.34301279065943,53.225375425480195],[-127.34273038097257,53.22543520853152],[-127.34246465650487,53.22551834272848],[-127.34219793198031,53.225599802311244],[-127.3419125026483,53.22565345895544],[-127.34161358799183,53.22566636251586],[-127.34131403616749,53.22565966717437],[-127.34101469506781,53.225659136266906],[-127.34071804988635,53.22568490283822],[-127.34042022515642,53.22570283806707],[-127.34012573657695,53.225736978494126],[-127.33982903718375,53.22576106708026],[-127.33954365686817,53.22581639377668],[-127.3392542045821,53.22586168969001],[-127.3389688052329,53.225916459400324],[-127.33867833229293,53.22595895953349],[-127.33839294913517,53.22601428345436],[-127.33811154796443,53.22607684985983],[-127.3378330234286,53.22614162424417],[-127.33755653089035,53.22621085727854],[-127.33728886201953,53.2262923162861],[-127.33703764500184,53.22638984173317],[-127.33679803460458,53.226497876590635],[-127.33656321189936,53.2266092186463],[-127.33632551308727,53.226718907314556],[-127.33609165129603,53.226830802325765],[-127.33585009164796,53.226937171833576],[-127.3356046877196,53.22704023142528],[-127.33532916913695,53.227111124509285],[-127.33503456330601,53.227142456512524],[-127.33473431916252,53.22714359615776],[-127.3344448269289,53.227098671086864],[-127.33418669182703,53.22700689369476],[-127.33394133652789,53.22690375739251],[-127.33368958570584,53.226806304301206],[-127.3334224093047,53.2267252678144],[-127.33314892255275,53.22665214561097],[-127.33290997171139,53.22654389715093],[-127.33269121450549,53.22642085393838],[-127.3325362386435,53.226267394113236],[-127.33240912226482,53.22610466545431],[-127.33224762807566,53.225952963834395],[-127.33201053922733,53.22584357210719],[-127.33178167442134,53.225727364167035],[-127.33156383744333,53.22560374380539],[-127.33132491437145,53.22549605665278],[-127.33105768023027,53.22541277445471],[-127.33076188790456,53.22543570061333],[-127.33046735840817,53.22546870585293],[-127.33016821503541,53.225474859747024],[-127.32987264151035,53.22544512391903],[-127.32960458577034,53.22536520937259],[-127.32939597862598,53.22523644354153],[-127.32920488763034,53.22509795171443],[-127.32901842520025,53.2249571755385],[-127.32884306128842,53.22481122766442],[-127.32868810529847,53.22465776267836],[-127.32854426569227,53.22449969963441],[-127.32841254026457,53.2243386947814],[-127.32829380916725,53.22417361773624],[-127.3281927849445,53.224004424698705],[-127.32811881191488,53.223829890459506],[-127.3280607244806,53.22365349287151],[-127.3280026375311,53.22347709523849],[-127.32793240275386,53.223302510008914],[-127.32787806863983,53.22312607025233],[-127.32781905273033,53.22294968290289],[-127.32774135148327,53.22277631069015],[-127.32763752648563,53.22260714848745],[-127.32749927251015,53.22244733624324],[-127.32729073880007,53.22232024227684],[-127.32705270254709,53.22220973084466],[-127.32678740862482,53.22212753804152],[-127.32651932959301,53.22204649638033],[-127.32626394068207,53.221950744856905],[-127.32607852006635,53.221812749347734],[-127.3259598027554,53.22164711397291],[-127.32586717510908,53.221476148613945],[-127.32578203111947,53.22130396994776],[-127.32567728987048,53.22113538103462],[-127.32554555313422,53.220973808311854],[-127.32538785237723,53.220821499209976],[-127.32523383653295,53.22066746337727],[-127.32509186381697,53.220508245708274],[-127.32504413560228,53.220332295476624],[-127.32503099656219,53.220152587906966],[-127.32501973368508,53.21997286831124],[-127.32500284333562,53.21979320264158],[-127.32497001941026,53.21961427983013],[-127.32489513940548,53.21944030934356],[-127.32476993101385,53.21927698637294],[-127.32457800453794,53.21914018178209],[-127.32437769881595,53.219005155834985],[-127.3242618546284,53.21884116293104],[-127.32419257095547,53.218666008889414],[-127.3241345069984,53.21848960889344],[-127.32408485925727,53.21831255903943],[-127.32404176666415,53.218134871162164],[-127.32400521173638,53.21795598966454],[-127.32397241086092,53.21777762200599],[-127.32394335919771,53.217598656646075],[-127.32391429277523,53.21741969142958],[-127.3238992840738,53.21724001336825],[-127.32390587028222,53.21706064987189],[-127.32392369523207,53.21688116081721],[-127.32393871409444,53.216701703086564],[-127.3239387102058,53.216521848385526],[-127.32392839824631,53.21634211777884],[-127.32391338958685,53.216162430654734],[-127.3238965231414,53.21598332902884],[-127.32388056973011,53.21580366138692],[-127.32389558839277,53.215624203558605],[-127.32389558468768,53.21544434875419],[-127.32390969056041,53.21526546584771],[-127.32394725063794,53.21508687671528],[-127.32398575806951,53.214908832766575],[-127.32401299214986,53.21472980312862],[-127.32401390080777,53.21454938224054],[-127.32396239739953,53.21437234378715],[-127.32384932081105,53.21420664295337],[-127.32368234400798,53.21405667612879],[-127.32345451353744,53.21394099660094],[-127.32318565034055,53.21386276234732],[-127.32290953123542,53.213792443468826],[-127.3226388469248,53.2137159046822],[-127.32236541055657,53.21364108132064],[-127.32210918898386,53.21354700674364],[-127.3219377172585,53.21340324626975],[-127.32183858465365,53.21323290575437],[-127.32176839262509,53.21305832488223],[-127.3217159552046,53.21288129585416],[-127.32166725175327,53.21270366934854],[-127.32161108196104,53.212527246639624],[-127.32153622832708,53.212353273373864],[-127.32143152617908,53.21218467990508],[-127.32129892098943,53.21202367663234],[-127.32114682486103,53.2118690491222],[-127.32098451288856,53.211717905950096],[-127.32081941619049,53.2115679051938],[-127.32065805174233,53.21141675101544],[-127.32050687297894,53.211261556660936],[-127.32035846591046,53.211105210666894],[-127.32020823454815,53.21095000537438],[-127.32006168741599,53.210793073521614],[-127.3199300196415,53.210631502461744],[-127.31982532788116,53.210462898457536],[-127.3197542185925,53.2102883264939],[-127.31971020720573,53.2101106468074],[-127.31968492950419,53.20993163790149],[-127.31967181647174,53.20975192874084],[-127.31966525991993,53.20957215551189],[-127.31965964829722,53.209392362778416],[-127.31964937360496,53.209213186722494],[-127.31962781493002,53.20903358051021],[-127.3195884834613,53.20885528379768],[-127.31954915260394,53.20867699601651],[-127.31953418289248,53.20849787217122],[-127.31954453676639,53.208318466315426],[-127.31956425179114,53.20813895619586],[-127.3195839816504,53.20795944588873],[-127.31959526529637,53.20778002961881],[-127.31960371088982,53.20760008016968],[-127.31960654604408,53.20742020214677],[-127.31959155891519,53.20724051361886],[-127.31952888691183,53.207065847328415],[-127.31941488218297,53.206899031796674],[-127.31929903811823,53.20673335719657],[-127.31919623370244,53.206564731406225],[-127.31909435786005,53.206395539382044],[-127.318993412914,53.206226336901636],[-127.31889152369705,53.206057144839484],[-127.31878872282951,53.20588852759591],[-127.31869058292243,53.2057187288526],[-127.3185859085449,53.20555013227125],[-127.31845798038142,53.2053879529848],[-127.31830868876209,53.205232169890074],[-127.31814826991979,53.20508043686358],[-127.31797302594607,53.20493447136452],[-127.3177710033137,53.204801694444825],[-127.31754229151299,53.20468545771454],[-127.31729072805786,53.204588524258725],[-127.31702013013165,53.20451252787258],[-127.31673962897897,53.20444953194081],[-127.31645644803024,53.20439104739658],[-127.31617149738106,53.2043359435432],[-127.31588477697002,53.20428422036823],[-127.3155971470721,53.20423362717171],[-127.31530607901598,53.20419260075449],[-127.31501231319687,53.20415552107208],[-127.31471528532697,53.204134164802284],[-127.31441744452957,53.20414698962227],[-127.31412406747353,53.20418274028865],[-127.31383280862481,53.204226310702424],[-127.3135404301557,53.20426428997126],[-127.313249065779,53.20430449840554],[-127.3129647928525,53.20436143603209],[-127.3126863903602,53.20442671665903],[-127.31240999864198,53.20449589184735],[-127.31213753224168,53.204571181540274],[-127.31187285855569,53.204655357805336],[-127.31162663243526,53.204760055240214],[-127.31147088958481,53.204909693862795],[-127.31141922998383,53.20508843558226],[-127.31129851234353,53.20524832715824],[-127.31108869040415,53.20537783770413],[-127.31085202466218,53.20548858626052],[-127.31059116461094,53.205575514269626],[-127.31031479666925,53.20564580470938],[-127.31002947908144,53.205699949732455],[-127.30974622660364,53.20576022985556],[-127.30952282003736,53.20587531136752],[-127.30933778284388,53.206017991531745],[-127.30914983731088,53.20615789762232],[-127.30896283562083,53.20629779296403],[-127.30877682965206,53.20643935335218],[-127.3085984124527,53.206584200271735],[-127.30847776667596,53.206746893778906],[-127.30839307790306,53.20691983098129],[-127.30839516684746,53.20695678651415],[-127.30842602060761,53.20713573599185],[-127.30843345938693,53.2073155087659],[-127.30841180480168,53.20749447324587],[-127.30841332311022,53.20766478209056],[-127.30842344582781,53.20784059872587],[-127.30841668920489,53.20801604592582],[-127.30837578711174,53.20820979016962],[-127.30838978179197,53.20838949045619],[-127.30839909563319,53.208569233444365],[-127.308405604411,53.20874901635217],[-127.30841116782138,53.20892880071683],[-127.30841298096314,53.20910863543761],[-127.30840916792923,53.20928852329795],[-127.30839596110664,53.20946795906152],[-127.30837241521469,53.20964695316083],[-127.30834418802624,53.20982598995684],[-127.30831879857458,53.210005560159445],[-127.30830184045574,53.21018503725284],[-127.30828393701537,53.21036452476147],[-127.3082500657004,53.21054306796969],[-127.30820685191821,53.2107228348444],[-127.30814854825012,53.210899971336744],[-127.30805808503551,53.21106848930693],[-127.30788919359138,53.21121826745343],[-127.30743601501655,53.211366144080635],[-127.3072884495666,53.21147814276547],[-127.30715782420322,53.21156138458944],[-127.30695473272098,53.21166728088651],[-127.306717172862,53.21175058092201],[-127.30643456059708,53.21180243669275],[-127.30616025853976,53.211850282709825],[-127.30541635500457,53.211970535485605],[-127.30506443544063,53.21202595726134],[-127.3040825288852,53.212245755193656],[-127.30369224543502,53.21266969411378],[-127.30256416663143,53.213260871262605],[-127.30200676063956,53.213589717086684],[-127.30159359495813,53.21378923252698],[-127.30111710864779,53.214034819740284],[-127.30054130759447,53.214437261205745],[-127.30024453948072,53.21485343809356],[-127.29971945772797,53.21513597501863],[-127.29927427964236,53.215363291086405],[-127.29921402186405,53.21553931416464],[-127.29916880303735,53.21571630185812],[-127.29906322006885,53.21588273664862],[-127.2989199178523,53.216042870345504],[-127.29874906620074,53.21619209121849],[-127.29853250818083,53.21631884570004],[-127.29828167388332,53.2164297316676],[-127.29816600268138,53.21648142365228],[-127.29809526094466,53.2165606373109],[-127.29803098744327,53.216728303906336],[-127.29802542587792,53.2169138121297],[-127.29799820086625,53.21709676067903],[-127.29791059105166,53.217268044375416],[-127.29779938957392,53.217435104091415],[-127.29767591903043,53.217600056900764],[-127.29754296389551,53.217761195932404],[-127.29738724349623,53.21791473114234],[-127.29731162722658,53.21798783902407],[-127.2972741111223,53.218080135054144],[-127.29727486508251,53.21816584467502],[-127.29731984346277,53.2182555614223],[-127.2974756265661,53.21841016894616],[-127.29757448569724,53.218482487460136],[-127.29761457898351,53.21856609004427],[-127.29765947105646,53.21874488711645],[-127.29773423774712,53.21891887485851],[-127.2978211381653,53.21909104437471],[-127.29787816277667,53.21926746737849],[-127.29791555366798,53.219446346444016],[-127.29785858911289,53.21960777403921],[-127.2977977352496,53.219795572682195],[-127.29761152934788,53.21993375399437],[-127.29738915180332,53.22005553159164],[-127.29716293299724,53.220173980165555],[-127.29695006936767,53.22030013498786],[-127.29678359860611,53.22043978427929],[-127.29664707100012,53.22057686466103],[-127.29644058478596,53.22072703612187],[-127.29620838811417,53.220865162282884],[-127.29604220448249,53.22101432750645],[-127.29589312557786,53.22117059354026],[-127.29575161762767,53.22132901770307],[-127.29562530441531,53.22149344310347],[-127.29547212724573,53.22163854781733],[-127.29525663355798,53.22177088665621],[-127.2950150174104,53.22187773780398],[-127.29475605179803,53.22196909023768],[-127.29449799821161,53.222059867371584],[-127.29423898105992,53.222150098654986],[-127.29397806763089,53.22223922950605],[-127.29373164348684,53.22234221298858],[-127.29350729736494,53.22246175430821],[-127.29335392103435,53.22260069972395],[-127.29325663510629,53.22270204588101],[-127.2932309298865,53.22278188535371],[-127.2932054302046,53.22286844587197],[-127.29321825942102,53.2229506707909],[-127.2932757800175,53.22305201326285],[-127.29337049664409,53.22311148953697],[-127.29341902018238,53.22319500130989],[-127.29341344810527,53.22328862350851],[-127.29334120445142,53.223380741008995],[-127.29323871030397,53.22343508084246],[-127.29310664951167,53.22347349963299],[-127.29295063270014,53.22349537133065],[-127.29265962179987,53.22349070124666],[-127.29237126338148,53.22348096354215],[-127.29217795559244,53.22348026503432],[-127.29208773325739,53.223505900563254],[-127.29203076049745,53.22354518496856],[-127.29197877191196,53.223624745817],[-127.29193810759666,53.223706433280576],[-127.29182833069632,53.22386002427049],[-127.29166972639628,53.22401246187883],[-127.2915319965311,53.22417252462699],[-127.29139424837317,53.224332022633035],[-127.29128489552158,53.224499610779326],[-127.29120762207424,53.22467301688599],[-127.29115767941468,53.22485060743456],[-127.29110489560401,53.22502710833668],[-127.29098986056417,53.22519308166338],[-127.29091449487896,53.22536758725973],[-127.29082209044837,53.22553724033541],[-127.29076440060494,53.22561462150005],[-127.29065499037247,53.22568809251122],[-127.29042187527756,53.22579763803706],[-127.2901773831251,53.22590338947174],[-127.28995775711502,53.2260245574656],[-127.28976110420341,53.226160606957926],[-127.28955680876474,53.226292248084306],[-127.28934485411509,53.22641893416083],[-127.28913670174221,53.226547263790884],[-127.28905628944361,53.226618167843576],[-127.28901693989582,53.22671272158512],[-127.28901958267338,53.22689142443605],[-127.28901570271928,53.227071874529074],[-127.28899394078945,53.22725083373264],[-127.28898816762835,53.22743074858261],[-127.28897506045813,53.22761633691822],[-127.28900909892349,53.227716815930435],[-127.2890988660386,53.22776794972399],[-127.28923110080356,53.22779620175981],[-127.28938690558218,53.22779731317416],[-127.2896903608671,53.22777832476312],[-127.28985079700429,53.227777699883895],[-127.28993032212848,53.22783117661744],[-127.28996485654048,53.22788682814537],[-127.29000827388019,53.22792557482015],[-127.2900501123586,53.22803605358382],[-127.29018024771182,53.22814893309801],[-127.29021386156491,53.22832785458248],[-127.29023997103813,53.22850685771405],[-127.29017382346838,53.22867622414219],[-127.29006760324717,53.22885498196606],[-127.29005698049757,53.22902934680743],[-127.29005871613458,53.229209170916484],[-127.29009138470893,53.22938810262457],[-127.29013062781104,53.229566962767066],[-127.29016985428328,53.22974526727404],[-127.29020159313286,53.22992420902787],[-127.29021553246756,53.230103900251954],[-127.29021837071112,53.23028932395149],[-127.29017876111807,53.2304673567832],[-127.2900540016128,53.230622793656046],[-127.28984319447062,53.23075674668056],[-127.28960643378016,53.230870820782144],[-127.28932897102963,53.23094274739312],[-127.28906790961683,53.23102962684085],[-127.28890066212305,53.231176559983666],[-127.28889473414888,53.23135142920052],[-127.28890042253069,53.231537933342416],[-127.28886268279817,53.231715954181055],[-127.28882776666346,53.23189450008373],[-127.28876744180714,53.2320705163034],[-127.28868733719416,53.23224395058238],[-127.28859776689424,53.23241524657367],[-127.28851482196252,53.23258815576953],[-127.28843943287016,53.23276265910872],[-127.28835553871978,53.23293501370841],[-127.28824329534683,53.2331015087785],[-127.28810175291781,53.23326104297776],[-127.28797532293025,53.23342377444881],[-127.28792530307544,53.23359912230749],[-127.28789888408339,53.23377926069642],[-127.28780930733365,53.23395055595297],[-127.28771786845242,53.23412187134184],[-127.28765755299781,53.234298451355606],[-127.28752824470916,53.23445952817201],[-127.28738855454385,53.234618485425614],[-127.28729878420464,53.234783059035486],[-127.28709972028139,53.2349342519402],[-127.28696004385696,53.235093764253556],[-127.28682413623291,53.23525379126499],[-127.28669203182997,53.23541546211894],[-127.28656465923342,53.23557820200034],[-127.28643353485381,53.23574154717573],[-127.2863071420351,53.2359059524293],[-127.2862137312207,53.23607449089323],[-127.28619479224814,53.23625398268289],[-127.28625181056788,53.236431530004495],[-127.2863788484469,53.236596547566265],[-127.28648974910766,53.23678640089814],[-127.2864982257223,53.23694149916036],[-127.2865185587,53.237116082695955],[-127.28649216561867,53.23729734060606],[-127.28650609161193,53.23747703156575],[-127.28654248776576,53.23765536714726],[-127.2865891957429,53.23783302607215],[-127.28659842334415,53.238012767952895],[-127.2865663148426,53.23819128197343],[-127.28648995999374,53.238365238051955],[-127.28637864065921,53.23853172061883],[-127.28624934891502,53.238693924810505],[-127.28612196473127,53.23885666393503],[-127.28600213928226,53.23902156200363],[-127.28588515227764,53.239186984934825],[-127.28576816462976,53.23935241669762],[-127.28564928222946,53.23951730411155],[-127.28552852223677,53.239682211735634],[-127.2854020631268,53.2398449399117],[-127.28528960031547,53.24000471040884],[-127.2851179115878,53.24016176996092],[-127.28496774480936,53.24031691075229],[-127.28481475221655,53.24047151719358],[-127.2846579541361,53.240624488313806],[-127.2845011720847,53.24077802377893],[-127.2843443717316,53.24093099446004],[-127.28418946385858,53.24108450020206],[-127.28403364115803,53.24123858037256],[-127.28388062492614,53.24139262993081],[-127.2837304832668,53.241548889222315],[-127.28357937559372,53.24170403821884],[-127.28343301740301,53.241860820884376],[-127.28330464978374,53.24202300238362],[-127.28320183144507,53.24219219523908],[-127.28311979113865,53.24236508953448],[-127.28305565709584,53.24254058688389],[-127.28300941265485,53.242718131712934],[-127.28300171794372,53.2428975005409],[-127.28301843865599,53.24307716100572],[-127.28302577565981,53.24325693193309],[-127.2830303047124,53.24343672425657],[-127.28301885627806,53.24361613362611],[-127.28297262765037,53.243794242904166],[-127.28286222608794,53.24396071146161],[-127.28273763790835,53.244123980692585],[-127.28261969519225,53.24428997475309],[-127.28250367744876,53.24445706838972],[-127.28238858972286,53.244624151832454],[-127.28226875020994,53.24478960123071],[-127.28214320921553,53.24495231526738],[-127.28200818285276,53.24511233482579],[-127.28186079280816,53.24526687620268],[-127.28169539165513,53.24541545356141],[-127.28151384118577,53.24555804671027],[-127.28132182267098,53.245696261551934],[-127.28112222536437,53.245831761072864],[-127.28092357486135,53.24596781475749],[-127.28072965875644,53.246105493279515],[-127.28055286960715,53.24625026552526],[-127.28042070682238,53.246411928456496],[-127.28027430558498,53.24656870699835],[-127.28013740474154,53.24672873542831],[-127.28003549143276,53.24689735930826],[-127.27997328257574,53.2470750746467],[-127.27998874057629,53.24724466386676],[-127.28014647628014,53.24739983593491],[-127.28026505236849,53.24756439473496],[-127.28040503606316,53.247722563878625],[-127.28052082286779,53.24788770830941],[-127.28064306899788,53.248048865504835],[-127.28067011508254,53.24822897899347],[-127.28070759459163,53.24841234140086],[-127.28079899978154,53.24857831353551],[-127.28101306933681,53.24870262178464],[-127.28127052850067,53.24880237403312],[-127.2815440347944,53.248874494864054],[-127.28182665336062,53.24893698760339],[-127.28208009871854,53.24896674382529],[-127.28228794175064,53.2490401374323],[-127.28228450970437,53.24914381917007],[-127.28226170995232,53.24922754968176],[-127.28209188330995,53.24938569500235],[-127.28186445078497,53.249501891405735],[-127.28160038320894,53.24958654358409],[-127.28132166794691,53.249652860154846],[-127.28103396903853,53.2497013535606],[-127.28074339310751,53.24974762729999],[-127.2804577397879,53.24980169985517],[-127.28017205151666,53.249854642596134],[-127.27989038857493,53.24991651440905],[-127.2796282423433,53.2500028176894],[-127.2793873883758,53.25011018974839],[-127.27916190631774,53.250229156608256],[-127.2789248378014,53.25033759843197],[-127.27868015802588,53.25044276918729],[-127.27849661372291,53.25058257268765],[-127.27834168310976,53.2507371901772],[-127.27814770280094,53.250873743970395],[-127.2779432519313,53.25100537233044],[-127.27773594056711,53.25113534585268],[-127.27751712945921,53.25125815492356],[-127.27732317618296,53.251395271731845],[-127.2772353625196,53.2515654170351],[-127.27719858639064,53.251746218023435],[-127.27721709539273,53.25192361793325],[-127.27730332024834,53.25210477977421],[-127.27744968421867,53.25225671598582],[-127.27772284862806,53.252316523542866],[-127.27800545274063,53.25237846983416],[-127.278195637721,53.25251984827541],[-127.27840968568526,53.25264304080331],[-127.278687912588,53.25271511741605],[-127.27892951123248,53.252817842540544],[-127.27910946854848,53.252962126642764],[-127.27925135989608,53.25312083205886],[-127.27936531391711,53.25328712651788],[-127.2794484727105,53.253459911427235],[-127.27950078308682,53.253636946365],[-127.27953342401659,53.25381532291763],[-127.27955294274491,53.253994952550194],[-127.27954994919325,53.25417483395124],[-127.27951872976904,53.25435333450474],[-127.27947529786043,53.25453140200225],[-127.27944409287588,53.25470990234083],[-127.27942699412459,53.254889371045024],[-127.27941554438364,53.25506934355065],[-127.27940595480212,53.2552487312306],[-127.27940294524528,53.25542860371077],[-127.2794065142567,53.25560841419118],[-127.27940631142991,53.25578770058718],[-127.27939956207311,53.25596761334781],[-127.27938998932207,53.2561475655031],[-127.27938508539525,53.25632690254536],[-127.27938865413508,53.256506703980676],[-127.27939410059979,53.256686494113836],[-127.27938452739109,53.25686643723988],[-127.27933544318512,53.257044009592],[-127.27919268602098,53.257197940394065],[-127.27893920583386,53.2572931210464],[-127.27869059495711,53.25739384231999],[-127.27848134316538,53.25752271678661],[-127.27833675659605,53.25767890723316],[-127.27824712248793,53.25785075751415],[-127.27818106720156,53.258026271032065],[-127.27814515292742,53.25820482135218],[-127.27814401528966,53.2583846732962],[-127.27814287584683,53.258563969462564],[-127.27812389249105,53.2587434578444],[-127.2781312113834,53.25892322759938],[-127.27818257672922,53.25910027280746],[-127.27826107288197,53.2592736730717],[-127.27837410807075,53.25943996902055],[-127.27853550491294,53.25959118586888],[-127.27873676889234,53.259725156003604],[-127.27895004255154,53.259852282164196],[-127.27914941469106,53.25998571622177],[-127.27930991877952,53.260138053210596],[-127.27942199727637,53.26030380269162],[-127.27947901959254,53.260481351029775],[-127.27954444832103,53.260657132368415],[-127.27974712530487,53.26080621711419],[-127.27993818350824,53.26094422162344],[-127.28015605132963,53.26106792554664],[-127.28041426028174,53.261159263303206],[-127.2806986674203,53.26121614624338],[-127.28099685776677,53.26123253188851],[-127.2813758523575,53.26124972942195],[-127.28152466614074,53.26129518418133],[-127.28157420758016,53.26138037361755],[-127.2815784398672,53.26151982860486],[-127.28157041625848,53.261719368446606],[-127.28163773326332,53.26189512823678],[-127.28169087781842,53.261975231851146],[-127.28182660175183,53.262022503946355],[-127.28211103347498,53.26207993907308],[-127.2824041248947,53.26211374893851],[-127.28270328573184,53.26213068461819],[-127.28300232782694,53.26214370347967],[-127.28329991782653,53.26217073935824],[-127.28356710291845,53.26224796223728],[-127.28382809953385,53.26233758620692],[-127.2841159867528,53.262385450248374],[-127.28441285227012,53.26241921434218],[-127.284704948401,53.26245078829051],[-127.28499482642192,53.26247118030634],[-127.28527635243225,53.26243339483828],[-127.28555912270048,53.262374305256024],[-127.28582617361899,53.26229297485407],[-127.28606516918842,53.26218449956445],[-127.28626487706262,53.26205011287668],[-127.2864084516168,53.26189223867332],[-127.28648674417971,53.26171882899068],[-127.28658580749712,53.261548555582394],[-127.28678559808691,53.261417528601385],[-127.2870351596654,53.261316780313145],[-127.28729247147899,53.26122434685334],[-127.2875634528129,53.26114857236186],[-127.28784516247673,53.26108612709739],[-127.28813475761278,53.261035921325536],[-127.28842868828444,53.26100471669641],[-127.28872618813273,53.26102893411562],[-127.28900254188504,53.26109876630765],[-127.28882922284615,53.26114322910259],[-127.28868339487182,53.26119635726002],[-127.28856048899418,53.261261562078055],[-127.28845877059021,53.261406093998666],[-127.28835497745247,53.26157474412125],[-127.2882492886192,53.261742849967],[-127.28814554493557,53.26191317562739],[-127.28801518847175,53.262073140599036],[-127.287823148384,53.26221192916566],[-127.28761770922216,53.262343019131926],[-127.28740749686388,53.26247136368056],[-127.28721829612739,53.26261124091522],[-127.28710691575368,53.26277772205163],[-127.28707856317682,53.26295675771606],[-127.28709060548542,53.26313591096352],[-127.28715045380277,53.26331230456492],[-127.28716466652493,53.263501518947784],[-127.2871584023088,53.263665739173724],[-127.28711564932654,53.26383428151345],[-127.2870950119205,53.26401995652868],[-127.28708242392494,53.26419265370582],[-127.28710965941279,53.26437724465665],[-127.28716910951277,53.26457157084799],[-127.28730125426223,53.26471636113008],[-127.28744133810586,53.264875076148954],[-127.28759076085348,53.265032013361306],[-127.28774111390378,53.265188375545215],[-127.28790733633652,53.26534175950824],[-127.28804737341397,53.265498798012445],[-127.28811563757625,53.26567397911502],[-127.28809490087916,53.265856284709635],[-127.2879900614368,53.266021583777665],[-127.28785409234385,53.26618272952928],[-127.28770773542927,53.2663423115249],[-127.28757272788127,53.26650401121328],[-127.28747077932302,53.26667207518324],[-127.2874056289043,53.266845907177014],[-127.28736318106921,53.267024530690406],[-127.28733015837827,53.26720472822238],[-127.28729148286537,53.26738387548921],[-127.28724805339289,53.26756138902766],[-127.28720464049354,53.26773945812865],[-127.28716310541989,53.26791751578924],[-127.28712250117437,53.268095554354936],[-127.28708568468902,53.268274116547325],[-127.28705355523681,53.268452627874495],[-127.28702237418577,53.26863169363038],[-127.28694435374223,53.268783810081615],[-127.28681076960584,53.268930926376406],[-127.28660397045041,53.26904913801987],[-127.28633879257855,53.26913213439976],[-127.2861208597346,53.269254947927465],[-127.28594018513685,53.26939809141387],[-127.28579847822277,53.26955649968205],[-127.28564917310945,53.269712193253966],[-127.28549228638535,53.269865718735005],[-127.28534017143255,53.2700219980833],[-127.2851173733477,53.2701392686913],[-127.28486975252255,53.27024391715809],[-127.28465559980924,53.27036780740889],[-127.28448161741254,53.270515358120846],[-127.28430286115518,53.270660163400244],[-127.28412412244532,53.270806079751075],[-127.28395578772043,53.270954133250925],[-127.28382946272843,53.2711863267131],[-127.28383261877539,53.27132075479247],[-127.2836967649048,53.27145612181331],[-127.28343150793809,53.27159849968912],[-127.28315157236494,53.271691168111865],[-127.28287042521909,53.27174351030759],[-127.28258770741199,53.27180650924008],[-127.2823725407622,53.27192817399958],[-127.28218329784322,53.27206859811405],[-127.2819662695708,53.27219140272313],[-127.28175311304875,53.27231751768706],[-127.28155144726125,53.272451360751326],[-127.28133732474788,53.272576929578456],[-127.28110015347127,53.27268593904306],[-127.28085629591254,53.27279109388407],[-127.28061047628465,53.27289403730718],[-127.28036275809112,53.27299587120404],[-127.2801005037657,53.273083303602185],[-127.27985660955319,53.273187900935405],[-127.27966919682869,53.27332718054624],[-127.27949516797213,53.27347416812797],[-127.27932113763225,53.27362114648225],[-127.27914045523796,53.2737653994429],[-127.2789521420197,53.2739063727875],[-127.2787321323023,53.274024156489276],[-127.2784641318488,53.274108285483074],[-127.27814390654353,53.27411173444678],[-127.2778433269475,53.274112730000965],[-127.2775442865503,53.27410250307544],[-127.27724592356874,53.27408385976364],[-127.27694767779548,53.274068584952246],[-127.27664769131674,53.27405836595224],[-127.27634941180223,53.27404196052578],[-127.27605526195771,53.27400702594195],[-127.27576023369275,53.27397434110523],[-127.27547688014917,53.27392360184297],[-127.27521122641157,53.2738368152724],[-127.27492169747991,53.27379903144789],[-127.27462208505902,53.27376975458996],[-127.27433013797192,53.27377680691093],[-127.27404422921569,53.273828058487815],[-127.27374346579191,53.273822887308455],[-127.2734432598342,53.27383619338613],[-127.27314234155054,53.27385678520209],[-127.2728431005184,53.27387119992016],[-127.27254703992283,53.273865975272265],[-127.2722572785876,53.2738208996433],[-127.27196987015768,53.27376011090516],[-127.27168058058209,53.273730151276006],[-127.27139035403339,53.27379433308136],[-127.2711862789586,53.27391136714825],[-127.27111558436074,53.27409085065169],[-127.27107869494976,53.2742694073196],[-127.27108690113242,53.27444860152549],[-127.2711429421718,53.2746250423902],[-127.27112392183564,53.2748045281545],[-127.27104836848385,53.27497845202414],[-127.27093120652945,53.27514330150197],[-127.27072082900415,53.27526993092776],[-127.2704459516118,53.27534458629674],[-127.27016704905589,53.27541088473201],[-127.26987606537858,53.27544985472937],[-127.2695759697337,53.27543625740978],[-127.26927834540858,53.27541086304776],[-127.26898181974494,53.27539050298207],[-127.26868374871702,53.27541273814481],[-127.26839792299955,53.275467336533545],[-127.26812392149483,53.275540300814754],[-127.26786355462248,53.27562936173908],[-127.2676292422239,53.275741674553174],[-127.26743035692522,53.27587601881067],[-127.26725341445844,53.27602133354489],[-127.26709166690026,53.27617264410834],[-127.26689756530679,53.276309742094284],[-127.26667092784892,53.27642757354236],[-127.26642603246808,53.276531588481944],[-127.26616756781502,53.27662174575151],[-127.2658965309833,53.27669971091502],[-127.26561663017237,53.27676432383978],[-127.26534286713655,53.276845678311815],[-127.26515327722676,53.27697712265834],[-127.26505887842009,53.27715012257535],[-127.26503045625903,53.2773302717815],[-127.26473068442043,53.27732786374435],[-127.2644314644946,53.27734337722248],[-127.26415744369041,53.277416323315926],[-127.26388538427614,53.277492053634],[-127.26358940880085,53.277522097043985],[-127.26328980329791,53.277525286129226],[-127.26299223532628,53.27750212529923],[-127.26270157770146,53.27745871208991],[-127.26241176713313,53.277411936602896],[-127.26211848663766,53.277375272925426],[-127.26182344404857,53.277341997750675],[-127.26153278872815,53.27729858167587],[-127.261268141021,53.27721399445697],[-127.26106226116387,53.27708340618223],[-127.26086818246391,53.27693923712674],[-127.26063894237915,53.27684475255289],[-127.26034608372333,53.276821526167026],[-127.26014576169311,53.276688636294146],[-127.26003270001446,53.27652007504632],[-127.25992715428964,53.27635199864054],[-127.25985525008427,53.27617740673829],[-127.25974787763911,53.27601102583098],[-127.25955307753107,53.275873594319854],[-127.25934164305794,53.275745858831996],[-127.25909437603097,53.27564483057328],[-127.25883610805326,53.27555289151864],[-127.25857877101554,53.27546037730159],[-127.25832600625462,53.27536388779721],[-127.25807779751963,53.275262876398195],[-127.25782960473137,53.275161855354554],[-127.25758327662231,53.275060823005965],[-127.25737554015132,53.274930239131976],[-127.2571604774,53.27480646451722],[-127.25689219587382,53.274724702971746],[-127.25660952483516,53.274664947580526],[-127.25632241668536,53.27461364678754],[-127.25603264924625,53.274567411255596],[-127.25574195234216,53.274521740627925],[-127.25545487953322,53.274471557888944],[-127.25517129714471,53.2744123645167],[-127.25490671357389,53.27432888314611],[-127.25472776111216,53.27418679424985],[-127.25465117880331,53.27401223975835],[-127.25456151658868,53.27384007345049],[-127.25446253046076,53.27367023767152],[-127.2543953413635,53.27349559267037],[-127.25437592038782,53.27331595177072],[-127.2543987843582,53.27313699341475],[-127.25445646963263,53.27296046377927],[-127.25456232108056,53.27279238902909],[-127.25472411710149,53.27264165087419],[-127.25491631340738,53.272502916638985],[-127.25511141628212,53.27236694812337],[-127.25528933179582,53.27222164120383],[-127.25541221437483,53.27205786747725],[-127.2554510945514,53.27188041560957],[-127.25543072352983,53.27170079370687],[-127.25539253631797,53.27152247179302],[-127.25535998219125,53.27134353449538],[-127.25535744604684,53.271163723881386],[-127.25540855888352,53.270987263054],[-127.25550589120199,53.27081703629468],[-127.25563254148788,53.27065377808269],[-127.25577531354797,53.270495960639025],[-127.25592948430642,53.270341939676214],[-127.25609123423611,53.27019063506552],[-127.25624254484359,53.270035523408986],[-127.25638341620305,53.2698766047454],[-127.25651481447039,53.269715536203854],[-127.2565825081764,53.26955963305927],[-127.25648438876937,53.269387548409156],[-127.25634538616949,53.269229907373756],[-127.25612478816493,53.269108430479996],[-127.25592915156703,53.2689732339067],[-127.25579384171633,53.26881331212266],[-127.25570044647466,53.26864174155644],[-127.25567636987675,53.268463834895904],[-127.2556672504549,53.268283528928535],[-127.25564877471426,53.26810444245679],[-127.25562558026073,53.2679248501212],[-127.25561273863187,53.267745703999715],[-127.25560159168494,53.26756037262872],[-127.25540744356415,53.267443096597745],[-127.25513814933565,53.26735742470826],[-127.25489461419784,53.26725355161675],[-127.25465739561932,53.26714120292151],[-127.25450918418016,53.26698925962996],[-127.25439806737882,53.26682180159783],[-127.25423290703978,53.26666835187],[-127.25426161778284,53.26649660994608],[-127.25417614461409,53.26633840051441],[-127.2539105991498,53.266252130495744],[-127.25362712414345,53.26619461790499],[-127.25332892736141,53.266179274884195],[-127.25304435710783,53.26614810901243],[-127.2529800098624,53.26597342374459],[-127.2529896976489,53.265793483614836],[-127.25303326930768,53.26561598247071],[-127.25308812403638,53.26543891791469],[-127.25313167842663,53.26526086110124],[-127.25314419109431,53.265081446825974],[-127.25310791234679,53.26490310357518],[-127.25312230280227,53.26472366943838],[-127.25315174719127,53.26454464103839],[-127.25316520596098,53.264365216699275],[-127.25318054238524,53.26418577251019],[-127.25320340621211,53.26400680457575],[-127.25321874234388,53.26382736034836],[-127.25323876519667,53.26364786660038],[-127.25326255837504,53.26346833300793],[-127.25328823081445,53.263289344281716],[-127.25331297142067,53.26311035640932],[-127.25335748531981,53.26293284490248],[-127.25339821192125,53.26275481759015],[-127.25343423468915,53.262576275194576],[-127.25347120350786,53.2623977227741],[-127.2535128419476,53.26221855625018],[-127.25344753591231,53.26204332527529],[-127.25322616867886,53.261925768472544],[-127.25300744547252,53.2618025807645],[-127.25281366415514,53.26166512734625],[-127.25260881729022,53.26153450456349],[-127.25238733891729,53.26141303006937],[-127.25214931167417,53.26130349074258],[-127.25187396388621,53.2612335627547],[-127.25158949587811,53.26117325023835],[-127.25136722380208,53.26105626430178],[-127.25115680140438,53.26092738310806],[-127.25095372485502,53.26079282152023],[-127.25086046655274,53.26062460692708],[-127.25085419473604,53.26044482584444],[-127.25084606066326,53.2602650733423],[-127.25086517708465,53.26008614508251],[-127.25091249048607,53.259908048997815],[-127.2509109531747,53.25972933844851],[-127.25090655910527,53.259549546450444],[-127.2508871761042,53.259370468243105],[-127.25084245531683,53.25919221292762],[-127.25075840635891,53.259017742705375],[-127.25055921129415,53.25888705682422],[-127.25027504298687,53.25883626698036],[-127.24997345799282,53.25883104534468],[-127.24967956366885,53.25886383051882],[-127.24938164896714,53.25888770213299],[-127.24909043578317,53.25885267087601],[-127.24880962537188,53.2587878312603],[-127.24852526113656,53.25873031621999],[-127.24823998310971,53.258673374858546],[-127.24799103127441,53.258574582664856],[-127.24784000058195,53.25842098430033],[-127.24771867990769,53.258255859172486],[-127.24762723499337,53.25808482613147],[-127.24753485931856,53.25791379383572],[-127.24748925773423,53.257737231804356],[-127.24747175111914,53.25755757752495],[-127.2474373652351,53.257379212259146],[-127.2474095418544,53.25720022219325],[-127.24738828089484,53.25702060733175],[-127.247341716591,53.256842934783606],[-127.24724469343849,53.256673636312016],[-127.24712618874636,53.256508480900074],[-127.24697977043417,53.25635147134921],[-127.24684358868473,53.256191548257604],[-127.24672320950435,53.25602641213302],[-127.24656102730599,53.25587629082109],[-127.24633962878752,53.255755915889395],[-127.24609428839418,53.255651488231706],[-127.24582078212764,53.25557872136719],[-127.24552766790282,53.25554202524665],[-127.24524512331202,53.25548112186951],[-127.24501731737884,53.25536641434642],[-127.24477568761552,53.25526025979969],[-127.24452031636645,53.25516545409163],[-127.24425584141025,53.255080827975085],[-127.24398505182846,53.255004675849484],[-127.24371783639096,53.254922318318584],[-127.24346615831539,53.254825230619126],[-127.2432263633076,53.2547173684718],[-127.24300677542863,53.2545941716266],[-127.24283068918477,53.25444979356826],[-127.24268706924532,53.254291619995215],[-127.24251002124748,53.254146131020676],[-127.24227757709171,53.254032587407224],[-127.2420095554046,53.25395416082009],[-127.24171810229238,53.253909585437114],[-127.24142247447607,53.253882425521226],[-127.24112258917512,53.253869876130764],[-127.24082434286667,53.25388140442757],[-127.24053059116638,53.25391809210874],[-127.24023986110055,53.25396202634],[-127.23994390215647,53.253987530470184],[-127.23964325133564,53.25398115266002],[-127.23935547158341,53.25393317156398],[-127.23911850086283,53.25382528068436],[-127.23891277036836,53.253693523279594],[-127.23868221593989,53.25357996195081],[-127.2384241107563,53.25348741286646],[-127.23814521466731,53.25342252838976],[-127.23784867796432,53.25339593384778],[-127.23754809705073,53.253391782111585],[-127.23725312096822,53.25341895456408],[-127.23696941200029,53.25347793900833],[-127.23667959462246,53.25352073448584],[-127.23638059864126,53.2535384177951],[-127.23609174444057,53.25358233126564],[-127.23580109263827,53.25362849481837],[-127.23550932351023,53.253604641572345],[-127.23522049032974,53.25355274416326],[-127.23493797539773,53.25349238090191],[-127.23469368772865,53.25339015108476],[-127.23444479897866,53.25329133916006],[-127.23417945754056,53.253207820363684],[-127.23391862274026,53.25311808678999],[-127.23366696171124,53.253020422606276],[-127.23344561490873,53.25290002343627],[-127.23326676001174,53.25275566025775],[-127.23311575448179,53.252600357944324],[-127.23297589902195,53.25244101326051],[-127.23281097228106,53.252291457827624],[-127.23260899099105,53.2521585391536],[-127.23237292795893,53.252048375557045],[-127.23211760541751,53.25195410772035],[-127.23186321367464,53.2518592649356],[-127.23161065117628,53.25176271736536],[-127.2313654030475,53.251659379211084],[-127.23112472581234,53.251551502092894],[-127.23086309100987,53.25146569648519],[-127.2305761553746,53.251413768232695],[-127.23029090189048,53.25135509875527],[-127.23005672685879,53.25124491999561],[-127.22992999518948,53.25108431517001],[-127.22985822652308,53.25090913840504],[-127.2297808745372,53.250735139986524],[-127.2296820586189,53.25056584607932],[-127.22957762842614,53.250397175019074],[-127.2294909264973,53.250224949596905],[-127.22938372229339,53.25005742762097],[-127.22921604196374,53.24990901628669],[-127.2290584514139,53.24975265656137],[-127.229074113087,53.2495810553759],[-127.22926339889545,53.249439585194],[-127.22945193183502,53.24930428981032],[-127.22947111773826,53.249124808372116],[-127.22936664291807,53.24895445225061],[-127.22926223413657,53.248786336378856],[-127.22917925864033,53.248612960459795],[-127.22903030655762,53.248462669480936],[-127.22875666456444,53.24838258632664],[-127.22847331114959,53.24832389294041],[-127.22818466940892,53.2482770235451],[-127.22791032826083,53.248205345089126],[-127.22764599526609,53.24812292199922],[-127.2273493883309,53.248092376032645],[-127.22705474148931,53.24806517059937],[-127.22677044540964,53.248005927158296],[-127.22648535031618,53.24795172914425],[-127.22620647659546,53.24788569623525],[-127.22593029706019,53.247815161731566],[-127.22569256117777,53.2477106048928],[-127.22546735999661,53.24761713220235],[-127.22516181278854,53.24760236040162],[-127.22486289154801,53.24758919568344],[-127.22456378660789,53.24760181293569],[-127.22426691673249,53.247627287809735],[-127.2239730804188,53.247660009501686],[-127.22371080185106,53.247745078072796],[-127.22348027955027,53.24785670189072],[-127.22319663749633,53.24791733832164],[-127.2229079699149,53.24796681176362],[-127.22262124249997,53.248017949750626],[-127.22234345623048,53.24808636735666],[-127.22206759461254,53.24815644076078],[-127.22177360724918,53.24818412066255],[-127.2214769891148,53.24815356016849],[-127.22118386517784,53.248113434107054],[-127.22089931158135,53.24814269996745],[-127.22064772840133,53.24824108876763],[-127.22039705799392,53.24833835607566],[-127.22011729160825,53.248403418265205],[-127.21983158592961,53.248457900464096],[-127.21953477084138,53.248485048082],[-127.21923679903203,53.24850491902168],[-127.21893977401113,53.24852533525488],[-127.21864803088967,53.248565874682384],[-127.21836726464727,53.24862870193954],[-127.21808651511306,53.248692657827306],[-127.21782134529177,53.248775492843414],[-127.2175870651271,53.24888827298989],[-127.2173862377656,53.249021434329734],[-127.2172225206322,53.24917157795862],[-127.21711752714639,53.24934017647135],[-127.21707290632212,53.24951823107651],[-127.21707149290214,53.249697527574895],[-127.21709356761522,53.249877147794244],[-127.21707715202791,53.25005659818943],[-127.21699104024204,53.25022892005879],[-127.21683397642686,53.25038235626924],[-127.21660539579133,53.250497316819796],[-127.21635089981052,53.25059292921654],[-127.21607307020051,53.250660767475324],[-127.21577821210607,53.25069180272446],[-127.21547879212326,53.25069430645804],[-127.21518145541737,53.25067158107099],[-127.21488663733545,53.250638744544965],[-127.21459271762528,53.25060422180689],[-127.2143075884217,53.250548874418804],[-127.21404867225891,53.25045795748652],[-127.21384030993107,53.2503295547827],[-127.21364943636107,53.25018920293284],[-127.21338972266044,53.25010333952469],[-127.21309758829011,53.25006542436301],[-127.21280887118075,53.250015712662766],[-127.21251333758592,53.24999016541249],[-127.2122135687671,53.24998033890011],[-127.21191543751085,53.24996266028889],[-127.21163039634529,53.24991010242317],[-127.2113542279183,53.24983953405999],[-127.21107988925802,53.24976726113075],[-127.21080826225008,53.249691033624806],[-127.2105356904002,53.24961482411034],[-127.21031531042155,53.24949269628136],[-127.21007848564605,53.249385858224734],[-127.20980225907377,53.24931304586243],[-127.20952523159222,53.24924527884657],[-127.20924637496195,53.24917865034849],[-127.20897655302824,53.249100159274064],[-127.20871038928652,53.24901771301055],[-127.2084414836512,53.24893809984948],[-127.20817893301816,53.24885113355556],[-127.20792369856245,53.24875680438277],[-127.207682215986,53.24865113851234],[-127.20745174077365,53.248536387058415],[-127.20718827977197,53.248449992604286],[-127.20694218045188,53.248347169027774],[-127.20670168046442,53.248242602735544],[-127.20641025618707,53.24819626469094],[-127.20614959057399,53.24810871901553],[-127.20591082804755,53.24799965143119],[-127.20567487400382,53.2478899990518],[-127.2054333858962,53.24778376398207],[-127.20519650327712,53.24767412010057],[-127.20492482167916,53.24759564778244],[-127.20463292001241,53.247564997414834],[-127.20433206452194,53.247549559652605],[-127.2040383504095,53.24752116725196],[-127.20376588444753,53.247447738080766],[-127.2034790094294,53.24739574418384],[-127.20319568194407,53.2473364347792],[-127.20292047438336,53.247265272517076],[-127.20266157201853,53.24717377511652],[-127.20238381424656,53.24711215733392],[-127.20208903016096,53.24707873317833],[-127.20197405070002,53.24716225140549],[-127.20190864132108,53.247337713754426],[-127.20178937736948,53.24750139611446],[-127.20159519645716,53.2476389450722],[-127.20139339361029,53.24777208885288],[-127.20120966896825,53.24791401326205],[-127.20104682992411,53.248064134183075],[-127.20082304724134,53.248184053378274],[-127.20055701227494,53.24827078453349],[-127.20042907898215,53.248427265324445],[-127.20033159136507,53.2485974487001],[-127.20000104055337,53.248826015461304],[-127.1999797637226,53.24883688002255],[-127.1997626793614,53.24896176713748],[-127.19955892367607,53.24909268631877],[-127.19939325102011,53.24924283342784],[-127.19923800409639,53.249396227435696],[-127.19905619011627,53.24953981417058],[-127.19885432237115,53.24967126873906],[-127.198626691304,53.24978842564923],[-127.19845525374164,53.24993413859305],[-127.19830378723864,53.250088622538726],[-127.19809528938224,53.25021846642683],[-127.19786476545855,53.250332845259884],[-127.19762753559303,53.25044280930418],[-127.19740163113248,53.25055489954591],[-127.19714242260623,53.25065163836348],[-127.1969486343094,53.250770682389536],[-127.19697576895443,53.25096594141688],[-127.19698679703292,53.25115631618938],[-127.19674430416141,53.25124671812027],[-127.19659201640533,53.251272905537526],[-127.19648734207341,53.25132326364357],[-127.1963644713251,53.25142703368316],[-127.19629405671698,53.251460238492555],[-127.19614983738118,53.25153956349895],[-127.19603950897313,53.25155580726397],[-127.19575888251107,53.25142641673247],[-127.19566947954775,53.25138585920165],[-127.19549544312795,53.25134055205353],[-127.19534696791891,53.2513358810508],[-127.19520336872861,53.25133789273087],[-127.19495112346576,53.251315782882095],[-127.19460471985035,53.25131703087956],[-127.19426508876823,53.251359103643075],[-127.19397525486896,53.25136874429694],[-127.19365015003349,53.25139330572927],[-127.19342707913567,53.251439814615345],[-127.19329727106972,53.251497701519654],[-127.19325345489207,53.25157545712277],[-127.19320940933336,53.25174454063687],[-127.19315258643283,53.25192663395611],[-127.19307580619787,53.25209996391304],[-127.1929460828804,53.25226093594459],[-127.19276612814681,53.25240504955692],[-127.19264495312466,53.25256930573681],[-127.19256723917296,53.252743200430956],[-127.1925027132178,53.25291864771789],[-127.1924429034339,53.25309461227558],[-127.19241792646417,53.2532741439383],[-127.1924023358803,53.25345358122946],[-127.19238202839725,53.2536325011779],[-127.19236175169901,53.25381198552865],[-127.19234991536511,53.25399138502379],[-127.19236250043889,53.25417110377577],[-127.19238447216429,53.254350719200055],[-127.19240172746245,53.254529826242106],[-127.19242463005214,53.25470887650309],[-127.1924625211969,53.25488722031611],[-127.19248731731668,53.255066807272286],[-127.19251678394811,53.25524579149109],[-127.19258368839247,53.255420482070654],[-127.19271035406763,53.25558335781267],[-127.19286866808358,53.25573639541031],[-127.19303345180553,53.25588600622803],[-127.19318640494909,53.256048626061926],[-127.19338832742417,53.256182731595686],[-127.19359925945281,53.25630386485158],[-127.19370537494673,53.256470316744156],[-127.19380696687517,53.25667602266327],[-127.19389433734958,53.256810168435635],[-127.1939874393718,53.25698122405744],[-127.19406463962564,53.257154689613124],[-127.19413530822446,53.25732933238965],[-127.19422653512167,53.257500415636265],[-127.19434502553388,53.25767233588684],[-127.19451247168568,53.25781575954889],[-127.19462238104983,53.25798328390441],[-127.19470520235481,53.258156127665465],[-127.19474179468598,53.25832103762009],[-127.1949053822122,53.258493623644924],[-127.19505811414089,53.258647834998904],[-127.19516894337877,53.25881479378485],[-127.19527606508974,53.258982910313954],[-127.19539939316465,53.25915982746371],[-127.19542202655585,53.25932935980292],[-127.19540647820821,53.25950991710277],[-127.1954209395469,53.25968905152373],[-127.19548320800143,53.25986489850112],[-127.1956387241886,53.2600179605142],[-127.19581000270502,53.260163584689316],[-127.19592274727196,53.260331079173774],[-127.19606897379617,53.26048759575531],[-127.19623754194946,53.26063660813532],[-127.19640237246547,53.26078676950107],[-127.19654954868086,53.26094327591092],[-127.19670507197975,53.261095780679526],[-127.19688104493909,53.26124134699618],[-127.19693573182649,53.261414472863045],[-127.19684099341481,53.26158406826933],[-127.19672925957295,53.26175046453074],[-127.19663832245388,53.26192169765747],[-127.19646655912805,53.26205788975868],[-127.19632547732874,53.26214951699911],[-127.1961140420491,53.26227770031119],[-127.19590640791728,53.26240697437696],[-127.19567007238922,53.262551094806504],[-127.19550830553536,53.26267542392796],[-127.19524797582383,53.26276824226931],[-127.19495955006298,53.26279748351054],[-127.19464855574095,53.26279277158073],[-127.19435193303967,53.26276438370522],[-127.1940507672716,53.26274164330269],[-127.1938147616599,53.26263196817874],[-127.1935924527296,53.26250870882912],[-127.19331183320267,53.26248183365966],[-127.19300420347761,53.26249613208075],[-127.19270285543489,53.26253334125774],[-127.19243174190916,53.262610019028926],[-127.19216951242242,53.262702293880736],[-127.19188010673346,53.26273040800503],[-127.19158254120232,53.262735081871234],[-127.19127997342288,53.26272915600077],[-127.19097732661872,53.26272042442645],[-127.19068441629294,53.26272392881688],[-127.19037605763558,53.262712456265795],[-127.19008848047378,53.26270525647313],[-127.18977800754581,53.26268539536353],[-127.18948037962093,53.26268837935684],[-127.18918112566257,53.26269978711148],[-127.18887589230262,53.26266586940081],[-127.1886572078547,53.262670857085254],[-127.188334423706,53.26278053743181],[-127.18812316600491,53.26291599212187],[-127.18789439200039,53.263029211837946],[-127.18769821668467,53.26316675572728],[-127.1875114461032,53.26327115498277],[-127.18719853366756,53.2633650463847],[-127.18693240657889,53.263452866477095],[-127.18667006540423,53.263541768591715],[-127.18641919422242,53.263637834169806],[-127.18622649864682,53.26376525625061],[-127.18612145514521,53.26393774218291],[-127.18600601188719,53.26410753518738],[-127.18585716299478,53.26425804875371],[-127.18560920511656,53.26435800962375],[-127.18540340616296,53.264487237446986],[-127.1851871290742,53.264611531801954],[-127.1849033980007,53.26467487210362],[-127.1846669382072,53.264783124314356],[-127.18447456192843,53.26492230089488],[-127.18435611215229,53.265085954922654],[-127.18424910065039,53.26525509712888],[-127.18409752722815,53.26540956169824],[-127.18393080391743,53.26555968626393],[-127.18377831319647,53.265715280024764],[-127.18358488909487,53.26585110399507],[-127.18332339406895,53.2659371931891],[-127.18303659144516,53.265992151311224],[-127.1827426740149,53.266027575488124],[-127.18244565479698,53.26601933058991],[-127.18214731237161,53.26599709644424],[-127.18188269117697,53.26607256439261],[-127.18168206126938,53.266219661859964],[-127.18145860447194,53.26632329596481],[-127.18118449649289,53.266395495283355],[-127.18090063765341,53.2664549008415],[-127.18065220789236,53.26650499824213],[-127.18037186963053,53.26662319783924],[-127.18012293765503,53.266722591816624],[-127.17987790133063,53.266826993219695],[-127.17964611892677,53.26693518855111],[-127.17940766873849,53.26700646447467],[-127.17905311569133,53.26702343365325],[-127.17874608181435,53.26702648386047],[-127.17847208320163,53.26706954292004],[-127.17816295919434,53.26709894841173],[-127.17786360817838,53.26710807827514],[-127.17756442970419,53.26712393758397],[-127.17728040470914,53.2671777335524],[-127.17706882352661,53.26730308646827],[-127.17699567470395,53.267475811909215],[-127.17697343226394,53.26765474638607],[-127.17693203599627,53.26782098963737],[-127.17667106716067,53.26796084217669],[-127.17644714103383,53.26808183431753],[-127.17617895906044,53.268165167970125],[-127.17590112080147,53.268239068033914],[-127.17569699550276,53.268362668208596],[-127.17552541913109,53.26850891116853],[-127.17536723636877,53.268663420398994],[-127.17520906885376,53.26881905869766],[-127.17503756631208,53.26896754113141],[-127.17483744080467,53.26910061979889],[-127.17463262647514,53.26923374451711],[-127.17441627766793,53.26935745436358],[-127.1742142698858,53.26948999478005],[-127.17401131405077,53.26962253524586],[-127.17380644799509,53.2697539827114],[-127.17359489084086,53.269881569776935],[-127.17337951335008,53.270006388512655],[-127.17316030141876,53.27012901272794],[-127.17294014100419,53.270251081166016],[-127.17271903210693,53.270372593821634],[-127.17249695995166,53.27049355979946],[-127.17227390886282,53.27061341452315],[-127.17207168608725,53.270738665549665],[-127.17184410021127,53.27086416665088],[-127.17164842540812,53.2709887964986],[-127.17139992902848,53.27110553923816],[-127.17116633193099,53.27121765245737],[-127.17092891520934,53.27132756190853],[-127.17069151265822,53.27143802648829],[-127.17045219992409,53.271547397889734],[-127.17021283925227,53.27165508405046],[-127.16996965898682,53.27176056639022],[-127.16972450624905,53.27186270619402],[-127.16942996149457,53.271979333767845],[-127.16917819493653,53.27201206740553],[-127.16889620625211,53.272073110327106],[-127.16860541644144,53.272121913878514],[-127.16835727819314,53.272217921990006],[-127.168135245825,53.27234112005327],[-127.16791889304766,53.272465938037286],[-127.1677263651844,53.272603411266644],[-127.16756051748204,53.272754067527806],[-127.16738838411862,53.27288181988615],[-127.16716412008861,53.272856569159856],[-127.16677995447509,53.27272140626619],[-127.16653930751828,53.27261340845996],[-127.16625320745715,53.27255963117034],[-127.16595833653629,53.272528913796805],[-127.16572893033245,53.272419118727605],[-127.16563409244948,53.27225030112826],[-127.16557757986779,53.272074939908244],[-127.1654846212676,53.27190609475257],[-127.16528492993137,53.271783681681555],[-127.16496609756221,53.27176944867939],[-127.16466638623697,53.27176678779966],[-127.16436692240052,53.27177364338035],[-127.1640674272863,53.271778822265034],[-127.16376920332031,53.27179631326753],[-127.16346939980247,53.271790853536885],[-127.16335095302368,53.27178753270023],[-127.1631791927376,53.27175839838875],[-127.16293402691814,53.27165604007804],[-127.16267408373247,53.2715627809537],[-127.16260760502469,53.27146819095875],[-127.16245651199407,53.271404682837726],[-127.16222837646728,53.271306638218796],[-127.16201171762717,53.27118214491315],[-127.16182558733506,53.27107415963792],[-127.1615071909278,53.27100724136735],[-127.16105551307383,53.27108001062203],[-127.16073207653493,53.27106860808059],[-127.16038283178544,53.2710412144507],[-127.1601765933101,53.27098776226837],[-127.16005892026635,53.27080739399249],[-127.15996750184708,53.27072761263261],[-127.15974630459321,53.270539856686405],[-127.15953713859405,53.27041416521749],[-127.15931760385513,53.27035523905024],[-127.1590185884464,53.2703435933311],[-127.15871871865343,53.27033476089626],[-127.15841399234027,53.27032036372154],[-127.15811539236743,53.270323842702325],[-127.1578369553412,53.270377537065436],[-127.15757261657978,53.27046583723881],[-127.1573054211058,53.27055303521785],[-127.15702331768331,53.27061013381086],[-127.15673035424675,53.2706477246194],[-127.15643349632927,53.27068087071133],[-127.15614253268053,53.27072292250721],[-127.15585963307798,53.2707856195147],[-127.15558163483563,53.27085555573952],[-127.15529949640802,53.27091153004122],[-127.15500324498623,53.270932341299265],[-127.15468848469133,53.27092868126079],[-127.15440320791221,53.2709045649027],[-127.15410316656254,53.270889555308024],[-127.15380060459901,53.27085159507277],[-127.15351589296831,53.27081346953802],[-127.15321751650639,53.27079059814879],[-127.15292037951968,53.270813653778866],[-127.15262146954416,53.27080590811622],[-127.15232327828627,53.27082449055448],[-127.1520411968799,53.27088269748375],[-127.15179218852363,53.270982596382666],[-127.15154995840224,53.27108970762869],[-127.15131055212508,53.271197355691825],[-127.1510750079062,53.27130889196649],[-127.1510355517477,53.271205625542116],[-127.15104408706453,53.271036349913636],[-127.15114185553816,53.270866773501794],[-127.15119460993331,53.27070043035966],[-127.15122241387446,53.270514160515255],[-127.15120906787394,53.27033501271427],[-127.15113857021608,53.270160901197016],[-127.15127516502265,53.27000326431347],[-127.15128255379628,53.26982615629054],[-127.151223248795,53.269649139475504],[-127.15114246087484,53.26944206898748],[-127.15102212833968,53.26930037898486],[-127.15087408417367,53.26914158562386],[-127.15059963214495,53.26906581302257],[-127.15031824928006,53.26897666117271],[-127.15004018045232,53.268905960042936],[-127.14975858541635,53.26884370053907],[-127.1495504040721,53.26871798219084],[-127.14938283885402,53.26856609898927],[-127.14922648188373,53.26841186604345],[-127.14908502808562,53.26825300665176],[-127.14898466261963,53.26808535013091],[-127.14894877574265,53.26790585546647],[-127.14892980619763,53.26772620595444],[-127.1489559231944,53.26754723142796],[-127.14898950610062,53.26736595258603],[-127.1489893618151,53.2671883527651],[-127.1487746256304,53.267062696515175],[-127.14852671268781,53.26696089115398],[-127.14827606783086,53.266861917408434],[-127.14806971768397,53.266733937783115],[-127.14787811810274,53.26659573076198],[-127.1476883214518,53.266454700304074],[-127.14755072714873,53.26629916316739],[-127.1475401919787,53.26611886705951],[-127.14751089329823,53.26593931710602],[-127.14745724298211,53.26576223461221],[-127.14740359335946,53.26558516103954],[-127.14736589825927,53.265407368442524],[-127.14734035629563,53.265227773104584],[-127.1473176391603,53.265048715158436],[-127.1472883572648,53.264869720664684],[-127.14723565591507,53.264692637783426],[-127.14714460387204,53.26452151908584],[-127.14698825495935,53.264366727252614],[-127.1468105174927,53.264219976360145],[-127.14686224288864,53.26404972738255],[-127.14700906294581,53.26388807882566],[-127.1471003423235,53.26372192033018],[-127.14706153651991,53.26353798004008],[-127.14702959980914,53.26336516921709],[-127.1469721690538,53.263187011340584],[-127.1469194708864,53.263009919202275],[-127.14686486529244,53.262832289703546],[-127.14686663806118,53.26265523574399],[-127.14675005261388,53.2624776494556],[-127.14666063820715,53.26233172985431],[-127.14656525673482,53.26217409825059],[-127.14645665962595,53.26197906243861],[-127.146335892622,53.26181999966626],[-127.1461991584677,53.26166053525014],[-127.14620934569808,53.261482279447115],[-127.14629859329706,53.26131053853337],[-127.14621323111574,53.26114104916958],[-127.14611190187907,53.26097171397097],[-127.1459454326182,53.26082374132159],[-127.14574548567225,53.26068840811463],[-127.14547781394673,53.2606176051558],[-127.14518290470879,53.26058179062797],[-127.14500930917013,53.260447887069496],[-127.14487159245986,53.26028674537025],[-127.14466894894278,53.260155362576114],[-127.1444755280027,53.260017732281426],[-127.1443369138183,53.259858274864555],[-127.14427954459752,53.259681791170905],[-127.14413914565891,53.2595251564263],[-127.1439475612995,53.25938582234651],[-127.14380655200233,53.25924151845287],[-127.14367232597338,53.25907025730269],[-127.14348262280198,53.258930904340275],[-127.14330959176338,53.25878299124345],[-127.14308573960844,53.258665811746],[-127.1428434161384,53.258559458872334],[-127.14260749128266,53.25844688568741],[-127.14234170132102,53.25837604867273],[-127.14204871824079,53.258340772669925],[-127.14175208665245,53.25831001300879],[-127.1414553949463,53.2582764564514],[-127.14116502525079,53.25823386548525],[-127.14087722311264,53.25818229418852],[-127.14059033746703,53.258129583937134],[-127.14026728493543,53.25791979661357],[-127.14011112162737,53.257770031592926],[-127.14002107488619,53.257599462299595],[-127.13994682909612,53.25742313867182],[-127.13984644993496,53.257252668506],[-127.13974043907228,53.257082252350166],[-127.13962142273239,53.25691700769751],[-127.13943793405443,53.256798313180965],[-127.13920475163933,53.256717080628206],[-127.13894953339022,53.25661980761644],[-127.13865115926527,53.25659297426681],[-127.13834850724815,53.256581877008045],[-127.13809111698768,53.256508153250735],[-127.13796010867712,53.256350856447526],[-127.13793615789031,53.2561589270118],[-127.1379747215968,53.25598712247155],[-127.13812063159259,53.25582661350858],[-127.13814497001202,53.25564934290004],[-127.13814479601805,53.255468945968595],[-127.13814272943348,53.25528744668875],[-127.13815572755497,53.255108043841844],[-127.13817625022077,53.25492856878553],[-127.13820052746783,53.25474961344704],[-127.13822759816134,53.25456951975833],[-127.13833296487041,53.254402676413825],[-127.13848652851934,53.25424769580681],[-127.13868668313617,53.254114677567046],[-127.13891163472977,53.25399542254373],[-127.1391108254302,53.253861292311115],[-127.13926722299394,53.253707403881315],[-127.1393555664563,53.25353624101658],[-127.13938359282571,53.25335725820629],[-127.13935810731626,53.253178224603985],[-127.13927836095642,53.25300643504136],[-127.13907573955238,53.25287392199636],[-127.13881697120647,53.252782841031305],[-127.13853640114827,53.25271942523976],[-127.13825042634018,53.25266390407976],[-127.13796352133237,53.25260895588615],[-127.13768116692428,53.2525489166761],[-127.1374070121579,53.25247926953582],[-127.13715644912688,53.25237915135937],[-127.13694457154769,53.25225120541286],[-127.13678372512732,53.2521003602775],[-127.13663023817712,53.251944397720756],[-127.13643042345147,53.25181073283003],[-127.1361973465817,53.25169755501709],[-127.13596428597889,53.25158437659579],[-127.13573660241545,53.25146218232101],[-127.13552003318263,53.25133372301016],[-127.13537511429385,53.251181603017734],[-127.1352730116065,53.251015627202385],[-127.13518392990377,53.25084504472516],[-127.13510509075053,53.2506715584534],[-127.13503183894193,53.25049578664028],[-127.13496136570281,53.250318858732],[-127.13488904619382,53.250143077889504],[-127.13481205665708,53.249968453196665],[-127.13472855038661,53.24979557600199],[-127.13466001718119,53.24962087925983],[-127.13458772996839,53.249446209410905],[-127.1344911608684,53.249276262676],[-127.13437965041703,53.249109255490616],[-127.13427281113773,53.24894108303518],[-127.1341837226894,53.24876993503889],[-127.13410863085741,53.24859585639768],[-127.13404196412642,53.24842057665834],[-127.13400432565925,53.24824222260634],[-127.13394231510497,53.2480657777814],[-127.13381313542509,53.247904541382205],[-127.13365134061854,53.24775258049558],[-127.13347377949525,53.24760804876618],[-127.13328324555005,53.24746925214344],[-127.13306036710773,53.247349803591604],[-127.1328346819541,53.24723094615968],[-127.13261733222916,53.24710752674178],[-127.1324092189225,53.24697841628909],[-127.13220573208933,53.246846464565046],[-127.13199108906117,53.246719091970846],[-127.13185223561254,53.24654674083799],[-127.13187390711575,53.24637454300063],[-127.1318607257002,53.246198186808584],[-127.1318080071456,53.24601717015178],[-127.13178631218166,53.245838098412825],[-127.13177586451428,53.24565836356727],[-127.13178983271283,53.24547895148675],[-127.13183953839334,53.2453019951057],[-127.13189957464395,53.24512550482373],[-127.1319417418022,53.244947508772405],[-127.13194257034117,53.244768221999514],[-127.13193024508146,53.24458849601827],[-127.13194233532667,53.24440910173219],[-127.13195723349382,53.24422912486331],[-127.13197025447795,53.24404972165527],[-127.13198422131921,53.243870309400315],[-127.13199725709346,53.24369090601221],[-127.13201496238192,53.24351089330688],[-127.13200640610108,53.24333169597024],[-127.1320119041594,53.24315180870731],[-127.13201803283695,53.24296014573812],[-127.13204545226468,53.24279236567012],[-127.13211025892153,53.24261863518977],[-127.13222877287279,53.24245222643181],[-127.13241940208837,53.24231539128527],[-127.1325806759756,53.242168742735544],[-127.13267462287679,53.24199640983207],[-127.1327670226841,53.24183698178155],[-127.13277308767678,53.24164307822453],[-127.13280867120412,53.24146457962519],[-127.13285647619226,53.2412870847481],[-127.13290521167013,53.24110958094264],[-127.13295585344127,53.240932614651165],[-127.13299706606786,53.24075462686873],[-127.13301949534707,53.2405756890471],[-127.1330259194832,53.24039522785419],[-127.13299297683987,53.24021682797444],[-127.13288618058601,53.240049773836986],[-127.1327628398687,53.23989520308447],[-127.13253048419213,53.239736070853716],[-127.13228152429306,53.2396572076951],[-127.13199581116807,53.239608392477855],[-127.13169766671825,53.23958546661658],[-127.13141998757598,53.239520886410475],[-127.1311869919168,53.23940769802365],[-127.13099741819774,53.23926832366614],[-127.13084219772259,53.239114619707586],[-127.13067397608945,53.2389666330201],[-127.13041439537484,53.23887667125323],[-127.1301174574468,53.23886381443101],[-127.12981957158064,53.238885701271265],[-127.12952476238833,53.23891707778793],[-127.12923196438012,53.23895404585851],[-127.12893824985977,53.238991577691486],[-127.1286464414474,53.239030211145796],[-127.12836068144566,53.23908447326214],[-127.12809445037675,53.23916711705941],[-127.12784941546016,53.23927029230298],[-127.1276111199292,53.23937957014665],[-127.12738429257253,53.23949713770098],[-127.12723891058558,53.23964137830652],[-127.12706223122491,53.23984419084701],[-127.12686450165064,53.239926745468225],[-127.12657599534373,53.24001912608524],[-127.12629448715018,53.240092391118516],[-127.126015666161,53.2401605832511],[-127.12572326511574,53.240177369861335],[-127.12542675789044,53.24014600450854],[-127.1251263275226,53.240143252717004],[-127.1248233579684,53.24015060869355],[-127.1245166348044,53.24015856421664],[-127.1242225798496,53.240183762025296],[-127.12397984563096,53.24026785887193],[-127.12378472247636,53.24041313119693],[-127.12354064525564,53.24051796448514],[-127.12326564514329,53.24058891958502],[-127.12298479032941,53.240652086023445],[-127.1227019240722,53.240709668363664],[-127.12241120753411,53.24075499889606],[-127.1221173554326,53.240788032955926],[-127.12182054647782,53.240815491789114],[-127.12152466802516,53.240842941075954],[-127.12122543139417,53.240850252503776],[-127.12092594219564,53.24084748113035],[-127.120627027382,53.240831257664446],[-127.12033238140744,53.240799306227075],[-127.12004036565963,53.240760050502566],[-127.11975362430947,53.240707289391665],[-127.11948040334353,53.24063311957694],[-127.11921811729398,53.24054707629111],[-127.11896861378183,53.240446901189046],[-127.11872188967571,53.24034558782072],[-127.11847513686108,53.240243144759454],[-127.11805485540793,53.24000340522786],[-127.11779315148257,53.23990334270303],[-127.11757773050213,53.239778757352845],[-127.11738728407947,53.23963993462989],[-127.1172560370949,53.23950390640375],[-127.11706968494613,53.239342634751054],[-127.11682802448921,53.23921941570552],[-127.116579421047,53.23911755090134],[-127.11632628218167,53.23902188650217],[-127.11607864188476,53.238920576321576],[-127.11583281997088,53.23881756329946],[-127.11559528911165,53.23870830458676],[-127.11538914587932,53.238579146052004],[-127.11522653710598,53.2384277326382],[-127.11507229302039,53.23827343463405],[-127.1148994606914,53.238126034143505],[-127.11461485670883,53.23808220460982],[-127.11431682061692,53.23809845144596],[-127.11403791961158,53.2381643841638],[-127.1137880538879,53.23826309355325],[-127.11354684586473,53.238370120312496],[-127.1133075281843,53.238477693544944],[-127.11309785122805,53.2386062774097],[-127.11290342301997,53.238743125950315],[-127.11268801003025,53.238867836676185],[-127.11246306512456,53.238986478187286],[-127.11223811880407,53.23910568399338],[-127.11202079618798,53.23922873510296],[-127.11185390556588,53.239378204760264],[-127.11172490217731,53.23954076488389],[-127.11158073649112,53.23969786451057],[-127.11140534525927,53.239845727927495],[-127.11119565612749,53.239973752569426],[-127.11095338291146,53.24007686655051],[-127.11069486903537,53.24016892722225],[-127.11043059112335,53.240255994598776],[-127.11016628292347,53.24034195012944],[-127.1098999789276,53.24042343281179],[-127.10963082222925,53.24050326532194],[-127.10936163491073,53.24058254173179],[-127.10909532784689,53.240664022597095],[-127.10883968782345,53.24075829322784],[-127.10860322592153,53.24086863559764],[-127.10843290097912,53.24103101338645],[-127.1082627568831,53.24116426546061],[-127.10805110086356,53.2412900527421],[-127.10783376962351,53.241413660625746],[-127.10761358476223,53.24153616528965],[-127.10739149266534,53.24165757580898],[-127.10715782991683,53.24176732429931],[-127.10695299363731,53.241902574490254],[-127.10673373459159,53.24202506880031],[-127.106492854068,53.24214608816064],[-127.10629143033427,53.242268424176636],[-127.10606931580848,53.2423892675853],[-127.10583568944334,53.24250068926941],[-127.10556264083105,53.242576066602936],[-127.10528369661125,53.24264197857771],[-127.1049887991769,53.242671618198834],[-127.1046959534665,53.24270851665758],[-127.10440010920725,53.242738163625106],[-127.10410627327126,53.24277283782806],[-127.10382827119697,53.242838728605115],[-127.10356295846455,53.242922993164576],[-127.1032985756132,53.24300724846667],[-127.10301768962502,53.243070932128035],[-127.10272377702641,53.24310279788241],[-127.1024258471066,53.24312461586695],[-127.10212781448158,53.243142507869884],[-127.10182852952875,53.243148094369346],[-127.10152892268967,53.24314191351415],[-127.10122936015262,53.24313685197789],[-127.10093902121616,53.24312610163495],[-127.10064508956174,53.243120986354626],[-127.10034202104505,53.24312603949032],[-127.10003057224542,53.24313341055079],[-127.09973339486176,53.24311207158861],[-127.09943461793583,53.243101395809575],[-127.09913499764983,53.243094088552525],[-127.09883542072365,53.24308902110905],[-127.09853594626777,53.24308731341745],[-127.09823645682094,53.24308560510872],[-127.0979369970859,53.2430844604936],[-127.09763744947566,53.243080510240475],[-127.09734021548083,53.24305692484939],[-127.09704205040026,53.24306976758218],[-127.0967424307525,53.2430624542811],[-127.09643557868245,53.24310226746105],[-127.09616005208437,53.24311938062161],[-127.09584835687524,53.243081367812934],[-127.09559988285893,53.24298337552073],[-127.0953449067003,53.242887692698815],[-127.0950863368905,53.24279875646233],[-127.09482039199615,53.24271437865283],[-127.09459673048093,53.2425959865006],[-127.09431704038674,53.24248820424955],[-127.09413462920281,53.24236775436426],[-127.09392018236358,53.242241997268074],[-127.09372238151366,53.24210712239788],[-127.09355519493637,53.241957954372964],[-127.0933796728276,53.24181278913931],[-127.09319948130674,53.2416687871728],[-127.09303602322471,53.241518472524774],[-127.09285398628053,53.24137560752701],[-127.0926961028437,53.24122299110436],[-127.09253078583241,53.241073248645435],[-127.0923376221229,53.24093553202385],[-127.09213890154744,53.24080066299426],[-127.09193926528741,53.24066692255028],[-127.09174892782158,53.24052916998904],[-127.09165164881799,53.240360872170996],[-127.09143184966432,53.240245244243134],[-127.09116776096721,53.240159720776994],[-127.09091103623254,53.240067961836665],[-127.09063786937914,53.23999428132687],[-127.09035747162321,53.239930751045776],[-127.09007436766863,53.239871726924086],[-127.08978500617543,53.239825084974804],[-127.0895082053459,53.2397553524971],[-127.0892698059721,53.23964661440142],[-127.08909336230786,53.23950145133616],[-127.08900168372553,53.23933085896893],[-127.08901018693805,53.23915094743388],[-127.08899829145109,53.2389807428492],[-127.088772082194,53.23883491578954],[-127.08852542537673,53.23873297493651],[-127.08827785321455,53.23863159773685],[-127.08795085274714,53.23858081484096],[-127.08764192873072,53.238502417843804],[-127.08746859733654,53.23840483998437],[-127.08725086896082,53.23829647303685],[-127.0870656308515,53.238173797312],[-127.08685451866138,53.238030069211455],[-127.08664996875679,53.237886280604776],[-127.08648799768493,53.23775610313619],[-127.08625770998471,53.23763328313483],[-127.08599734431974,53.23754490848361],[-127.08570621295529,53.23750163437862],[-127.08540743596839,53.2374892384197],[-127.0851226055225,53.237544507954176],[-127.08467386851326,53.23754021415013],[-127.08431577165656,53.23755693487388],[-127.08401798629951,53.2375831875738],[-127.08364298959833,53.23767289228285],[-127.08349925246819,53.237777290306994],[-127.08330663686496,53.237915749218025],[-127.08315479244499,53.23807007795095],[-127.08301145718151,53.23822657868945],[-127.08276538607672,53.23833022508471],[-127.08250099050373,53.238414434228794],[-127.08222400112948,53.23848307091977],[-127.08193112167173,53.23851823739871],[-127.08163349965143,53.23851422945937],[-127.08137020099646,53.238421389544506],[-127.08108511413644,53.23839430048717],[-127.08077061671175,53.23842797596537],[-127.08047368293433,53.238450850464865],[-127.08017686280685,53.238478769841734],[-127.07988703327962,53.23852286734699],[-127.07961393547876,53.238597064873765],[-127.0793443461997,53.23866226595851],[-127.07905101859345,53.2387164775862],[-127.07876912213293,53.238777307394734],[-127.07850954366376,53.238866501395336],[-127.07827301316918,53.23897678339524],[-127.07806324216638,53.23910530513372],[-127.07786868298089,53.23924208736065],[-127.07769502470582,53.2393882078965],[-127.07751662310977,53.23953269501173],[-127.07732302046784,53.2396700323109],[-127.07712940217418,53.239806804691604],[-127.07695096832335,53.239950170701256],[-127.0766933262097,53.240042704433286],[-127.07701096283056,53.24016811989158],[-127.0770250790475,53.240280039900796],[-127.07702398902367,53.240458206436784],[-127.07706887306362,53.240635955429546],[-127.07713155170298,53.240811857569994],[-127.07718206786421,53.24098899958196],[-127.0772092450688,53.241171391235945],[-127.07726527737974,53.24134455691536],[-127.07730456204324,53.24152291237384],[-127.07733540811894,53.241701909184705],[-127.07736250074726,53.24188094007003],[-127.07738301707973,53.24206003067569],[-127.07739605551764,53.24223975391725],[-127.07739969443165,53.24241955356663],[-127.0773657679315,53.24259801821199],[-127.0772602043489,53.242765372973444],[-127.07710078425414,53.24291864153136],[-127.07699047694541,53.24308379812801],[-127.07693680450376,53.24326132139365],[-127.07694869532676,53.24343320265253],[-127.0770256907985,53.243617947425626],[-127.07720844346308,53.24375410676564],[-127.07735417325192,53.24391020605225],[-127.07748316818959,53.244073189032626],[-127.07758044204607,53.24424317398927],[-127.07761981584312,53.24442545445936],[-127.07757641806666,53.24460064358502],[-127.07753589944127,53.24477861219898],[-127.07749255725165,53.24495659746664],[-127.07744922994135,53.24513459152703],[-127.0774087100396,53.24531255108593],[-127.07737008120958,53.24549105815532],[-127.0773379999549,53.24566894996239],[-127.07735019316513,53.24585259774775],[-127.07741556093208,53.246022872517],[-127.07761249632175,53.246162263772305],[-127.07780655276619,53.24629943990572],[-127.07800247395811,53.246435478296746],[-127.07817425130592,53.24658238486449],[-127.07829858658174,53.24674596494569],[-127.07841545729201,53.24691128899483],[-127.07855191722615,53.247071397127314],[-127.07869021166502,53.24723036793715],[-127.0788354994332,53.24740552639209],[-127.07895380781012,53.247553473882775],[-127.07908001165326,53.24771647139694],[-127.07918381992408,53.24788471916698],[-127.07934632252248,53.24803506983375],[-127.07951419921818,53.24817584282267],[-127.07961518771526,53.24834355114225],[-127.07969660284066,53.24851704888777],[-127.07969063725011,53.248687971569616],[-127.0797750197743,53.248867044617036],[-127.07962508991248,53.248877928909465],[-127.07916655659338,53.24897286013945],[-127.07887593763287,53.24902536951008],[-127.07862013598071,53.249118454502344],[-127.07837493675856,53.249222082591544],[-127.07812973656218,53.24932571912998],[-127.0779084504956,53.24944650074638],[-127.07767281947609,53.2495573279665],[-127.07745249055475,53.24967922047571],[-127.07723216036192,53.24980111256781],[-127.0770127741613,53.249923551416785],[-127.07685229521798,53.250072911240245],[-127.07672500172364,53.2502354153193],[-127.07662605144657,53.250404949572456],[-127.07654849544863,53.250567001985964],[-127.07641116740577,53.25074080148634],[-127.07631410609909,53.25091087402738],[-127.07621513820597,53.25107984328872],[-127.07614921403353,53.25125635600846],[-127.07607573813553,53.25143069622361],[-127.0759899946853,53.251602906694664],[-127.07590682679091,53.25180254087801],[-127.07582132828324,53.25194785756172],[-127.07574878097502,53.25212218906666],[-127.07567717923615,53.25229651193181],[-127.07560180723661,53.252470868917655],[-127.0755320960098,53.25264573923042],[-127.07548026825553,53.25282267933727],[-127.07544725645603,53.253001134018206],[-127.07542364553835,53.25318006816769],[-127.07540192593235,53.253359540904164],[-127.07537080490167,53.25353853412189],[-127.07532932221018,53.25371650972542],[-127.07528031588566,53.25389342405168],[-127.0752256621692,53.254070398486604],[-127.07516064689106,53.25424578159008],[-127.07509469987643,53.25442117308062],[-127.07504286811151,53.25459811283214],[-127.07500986744651,53.25477713181385],[-127.07499095390592,53.254956578874676],[-127.07498425110225,53.25513591527077],[-127.07499258200143,53.25531567118037],[-127.07501686475123,53.25549472677362],[-127.0750673745843,53.25567186845833],[-127.07513663173194,53.25584715502536],[-127.0752181426243,53.25602457143083],[-127.07528818961048,53.25619424836838],[-127.07533870118982,53.25637138091121],[-127.07536579476428,53.256550410875995],[-127.07534338448353,53.256739418021674],[-127.07534301853761,53.256909733070515],[-127.07531189464144,53.25708872594083],[-127.07525629128925,53.25726514394752],[-127.07515260377492,53.25743359860789],[-127.07497982108826,53.257580825548],[-127.07476662482509,53.25768975757959],[-127.07447099084159,53.25776974781836],[-127.07421611566913,53.257864499118774],[-127.07396893468174,53.25796645878795],[-127.07374379345967,53.2580855812812],[-127.07349947584702,53.25818975496613],[-127.07324749090324,53.25828727466613],[-127.07299355526395,53.2583825705162],[-127.07274057912687,53.2584784218493],[-127.07248860481866,53.25857649554868],[-127.07226646438464,53.258703440262565],[-127.07200471491632,53.25878703513373],[-127.071717646707,53.258834447329114],[-127.07141806102862,53.258833235906586],[-127.07113491754266,53.25888733405892],[-127.07088770881487,53.258988722667304],[-127.07064529926757,53.259094558279635],[-127.07043444450119,53.25922250912096],[-127.07023215909881,53.259354873110766],[-127.07003366922595,53.259489434479505],[-127.06979163858347,53.259609830954396],[-127.06958109074225,53.25975010258825],[-127.06949876147623,53.259910516010464],[-127.06949686306768,53.26009541045176],[-127.06947322274704,53.26027433379206],[-127.06945898493815,53.26045373707634],[-127.0694503943786,53.260633654156415],[-127.0694267535598,53.26081257743732],[-127.06936924301485,53.26098900926597],[-127.06929006068886,53.261162274948255],[-127.06922594119473,53.26133764575683],[-127.06916842909585,53.261514077439884],[-127.06909772992412,53.26168895167345],[-127.06903079972403,53.26186434763882],[-127.06898363531377,53.26204124169382],[-127.06894683333343,53.262219727540554],[-127.06892976846713,53.262399156021715],[-127.06893995303322,53.26257890372058],[-127.06894262631684,53.262758710105295],[-127.06891334900337,53.262937692796314],[-127.06889252883289,53.26311659031479],[-127.06889050014048,53.26329644796833],[-127.0688950510765,53.26347623737158],[-127.06887328436582,53.26365515232366],[-127.06887876763096,53.26383437754419],[-127.06893675876465,53.26401088882088],[-127.06902376518363,53.26418321254914],[-127.0691639586017,53.264341620365414],[-127.0693478638837,53.26448338286529],[-127.06954292411635,53.26462056267474],[-127.06970638798838,53.26477090787518],[-127.06981206464108,53.26493858979432],[-127.06986163227636,53.26511573225876],[-127.06989808365272,53.265294122377846],[-127.06994300655944,53.26547354759091],[-127.07001617934127,53.26561854833083],[-127.07027625574867,53.265763548624264],[-127.07055844552325,53.26581814690348],[-127.07056985402514,53.26600852311076],[-127.07054152689938,53.26618805312159],[-127.07047363570497,53.266362337684384],[-127.07037274436142,53.266531873273905],[-127.07027844617883,53.26670247872042],[-127.07016526878417,53.26686876350197],[-127.07003126172498,53.26702907789906],[-127.06988971428004,53.267187783889156],[-127.06977082829836,53.267351878764245],[-127.06979694544292,53.26752979716528],[-127.06992037773662,53.26769395735643],[-127.07005314498694,53.26785522759978],[-127.07018683043881,53.268015924695995],[-127.07032612281654,53.26817545956775],[-127.07046353798664,53.26833500224148],[-127.07059629430276,53.26849627195902],[-127.07071039981412,53.268662191652794],[-127.07079461277914,53.26883510373505],[-127.07087793764626,53.26900970893963],[-127.07094896369402,53.269180498958185],[-127.0710219954494,53.26935687314126],[-127.07107436957112,53.269532868994375],[-127.07109867159794,53.26971360899127],[-127.07112387765402,53.2698926556321],[-127.07113877592779,53.27007235103629],[-127.0711405127052,53.27025217417679],[-127.07114038616909,53.27043200515411],[-127.0711580802953,53.27061111952456],[-127.07119829817684,53.27078947483311],[-127.0712422583725,53.27096723162253],[-127.07126651919438,53.27114628666086],[-127.07127674401481,53.27132714458704],[-127.07136933862742,53.27149661904817],[-127.07156624504066,53.27163098204462],[-127.07179095556097,53.2717505186557],[-127.07203590099833,53.27185307409948],[-127.07228823225405,53.2719505157512],[-127.07253964720374,53.27204852090205],[-127.0727892272506,53.272148792000124],[-127.07301575113297,53.27226551325161],[-127.07323400268726,53.27238903165345],[-127.07345870783625,53.272508009438695],[-127.07370826406458,53.27260714941405],[-127.07392659076295,53.27273347151271],[-127.07414111854739,53.2728586981685],[-127.0743250776386,53.27300045232863],[-127.0744867556169,53.273152492079056],[-127.07469109275951,53.2732828565656],[-127.0749463776755,53.27338474773111],[-127.07518015628402,53.2734907592771],[-127.07546428230846,53.27354532865746],[-127.07572505244192,53.273604590898124],[-127.07598564816173,53.27369354192005],[-127.076189892719,53.27381998755889],[-127.07628935018914,53.27400003587225],[-127.076281589845,53.27417434258137],[-127.07625609209569,53.27435328299699],[-127.07621931012802,53.27453176995828],[-127.07613350618425,53.27470342284284],[-127.07596171625248,53.27485567787679],[-127.07588135990778,53.27501999367045],[-127.07587497173604,53.2752116504753],[-127.07584101243958,53.275390111633314],[-127.07579292915156,53.27556758031566],[-127.07572505807093,53.275742987373924],[-127.07562888321706,53.27591304856272],[-127.0754816197993,53.27606957128906],[-127.07532582425142,53.27622280076147],[-127.07519276818523,53.276383676215076],[-127.07507681614199,53.276552230840835],[-127.07502401129304,53.276728621368186],[-127.07500695224144,53.276907493752915],[-127.07500873495317,53.27708787168465],[-127.07500400686985,53.277271105233105],[-127.0749839803631,53.277443837425395],[-127.07496608887195,53.27762663440007],[-127.07492082390002,53.27780464165655],[-127.07476583842619,53.2779528252587],[-127.07449812030106,53.278064489286294],[-127.07427665817566,53.278185262459125],[-127.07406190533567,53.278311021039656],[-127.0738509649444,53.27843897667687],[-127.07364002350236,53.278566940892475],[-127.0734433761677,53.278702609699025],[-127.07324503363908,53.278846145659735],[-127.07309303369347,53.279001578415695],[-127.07290857127128,53.27913658037184],[-127.0727355780574,53.27927932158267],[-127.0725664830428,53.27942762958865],[-127.07242394243181,53.27958578155643],[-127.07226529839906,53.27973847650322],[-127.07208954645255,53.27988404723177],[-127.07194893796225,53.280044422027544],[-127.07179972584046,53.28019870731742],[-127.07166191143143,53.28035850075353],[-127.07151083290809,53.28051336719549],[-127.07133223611739,53.280657832950034],[-127.07113842474546,53.28079515721044],[-127.07096457152929,53.28094182944382],[-127.07085059668444,53.28111540797906],[-127.07068510283335,53.28125807827078],[-127.07051400043152,53.281401919344674],[-127.07038575557975,53.28156833859909],[-127.07023466733077,53.281723768036834],[-127.07003703342791,53.28185888389673],[-127.06985557297641,53.28200169684265],[-127.06967981737768,53.28214781945308],[-127.06954766773278,53.282308670593906],[-127.06941352416544,53.28246562241437],[-127.0692663150054,53.282625497364805],[-127.0690781947243,53.28276556337764],[-127.06888911226835,53.28290508198841],[-127.06872948204585,53.28305722485513],[-127.06859034593171,53.28320245132161],[-127.06843200065317,53.28336802763749],[-127.06826572710294,53.28351797972911],[-127.06812694234716,53.28367721259287],[-127.06804296562885,53.283848841915294],[-127.06801273779432,53.284027821853044],[-127.06804164294259,53.284242133297745],[-127.0681342953082,53.2844132849707],[-127.0682418936494,53.284580949681995],[-127.06834669627857,53.28474919519229],[-127.06846737671054,53.28491393634539],[-127.06856564025277,53.28508391669823],[-127.0686189557522,53.28525991278006],[-127.06855762256987,53.2854352556071],[-127.06840460636116,53.2855895701567],[-127.06819648081245,53.2857191746158],[-127.06797496049313,53.28583993555592],[-127.06774008977192,53.28595241721345],[-127.06747127039515,53.28606071285487],[-127.0672385703622,53.28614795929426],[-127.06696425189303,53.28622437476187],[-127.06668591995239,53.286290741567996],[-127.06641054039223,53.28636212771168],[-127.06614003330816,53.286440747911264],[-127.0658781988264,53.28652825324274],[-127.06563467238644,53.286633520896586],[-127.06542651893179,53.286762555850686],[-127.06519064681702,53.286873356131025],[-127.064943260122,53.286974739848084],[-127.06469012236569,53.28707168383555],[-127.0644571138931,53.28718469783209],[-127.0642623042459,53.28732146314223],[-127.06409218604462,53.28746920237131],[-127.06389259844302,53.28760320424408],[-127.06368539527344,53.28773335689056],[-127.06351530265121,53.287881659707196],[-127.06340297375928,53.28804792787336],[-127.06332087627953,53.288220656839684],[-127.06323312711878,53.288392871631366],[-127.06317083402175,53.288568775491385],[-127.06313681026009,53.288747231784626],[-127.06311970996767,53.28892665697023],[-127.06312423931017,53.28910645317549],[-127.06310715385048,53.289285878191585],[-127.06306935625743,53.28946436818172],[-127.06297876430848,53.28963548764558],[-127.06291176435965,53.28981087762648],[-127.06286831425176,53.28998885338685],[-127.06282110680108,53.29016630700108],[-127.06272736199898,53.290324573723105],[-127.06265848088901,53.290499980316795],[-127.06263607925416,53.29069289808281],[-127.06259545315011,53.29087084837125],[-127.06251430790289,53.29104412367235],[-127.0624246565373,53.29121579881397],[-127.06229529012114,53.29137773617677],[-127.06212516289311,53.29152603685935],[-127.06197116928466,53.291680359933295],[-127.06184085369841,53.29184174948071],[-127.06173041494331,53.29200911911966],[-127.06161901426898,53.29217594149148],[-127.06157462446329,53.29235393385718],[-127.0615311671537,53.29253135314471],[-127.06146508863509,53.29270673371693],[-127.06137260409193,53.29287786846874],[-127.06119675962705,53.29302341312564],[-127.0611363456083,53.293199307534586],[-127.06102493944371,53.29336612924747],[-127.06085480057475,53.293513863246176],[-127.06069035348091,53.29366435173784],[-127.06058651839083,53.29383279049754],[-127.06044292293318,53.293990370788194],[-127.06032290841299,53.29415111063054],[-127.06001689301362,53.29420257764945],[-127.05971939045479,53.29418170358266],[-127.0594226796432,53.294155219476835],[-127.0590652968082,53.294144962007245],[-127.05876691386287,53.29416387374087],[-127.05847769678003,53.294210705214425],[-127.05818640234473,53.29425027607022],[-127.05788695969105,53.29426414853586],[-127.05758734750073,53.29427186378329],[-127.05728746932844,53.29426836721913],[-127.05698749221631,53.29426151840475],[-127.0566883359671,53.29424961504117],[-127.05639072254631,53.294224251851325],[-127.0560924156021,53.2942084133931],[-127.05579271939426,53.29421276352402],[-127.05549434840142,53.29423222265195],[-127.05519916760375,53.29426621847042],[-127.05491389936817,53.29432141395324],[-127.0546327117914,53.294388897399315],[-127.05438326428302,53.294485785665],[-127.05411896397794,53.294590092612765],[-127.05390378780359,53.29470461169708],[-127.05369280236873,53.29483645560136],[-127.05345781438099,53.29494834404015],[-127.0532256653764,53.29506076255769],[-127.05301833678034,53.29518865569826],[-127.0528177313145,53.29532208211009],[-127.0526095089473,53.29545222330973],[-127.05251584395282,53.29550235305441],[-127.05244035538766,53.29552822760577],[-127.05234743790437,53.295532977086054],[-127.05221288228094,53.29552688203487],[-127.05205261532268,53.2955070135488],[-127.05176652039378,53.29545352558862],[-127.05148308412096,53.295393855443464],[-127.05120960010203,53.29531896605408],[-127.0509208764393,53.295273342449434],[-127.05062761611794,53.29523391624369],[-127.05033352096913,53.295198987440365],[-127.05004832048154,53.29514380231182],[-127.04976580677166,53.295083555237284],[-127.04947260479375,53.295046375531946],[-127.04917852572333,53.295011999482924],[-127.04888973663137,53.29496356595845],[-127.04859042469533,53.294945485594006],[-127.04829080574783,53.2949531684229],[-127.04801531072711,53.29502339138592],[-127.04773785087363,53.29509082544522],[-127.04746452514243,53.295172788140896],[-127.0471943717673,53.29523174865639],[-127.04690015119756,53.29526740038724],[-127.04661389144655,53.29532089934373],[-127.04632864766563,53.29537719423913],[-127.04604142552992,53.2954301445399],[-127.04574500397261,53.29545292320122],[-127.04559728231018,53.29544582512707],[-127.04544926789492,53.29542751605846],[-127.04515516169957,53.2953920098552],[-127.04486285202775,53.2953531257931],[-127.04456970795985,53.29531817438505],[-127.04427008563465,53.295325847068476],[-127.04411828260955,53.295343988519136],[-127.04398090015854,53.29537489256676],[-127.04383814162445,53.295417039167226],[-127.04373433082037,53.295475658874764],[-127.04354702962745,53.29561623975645],[-127.04336068700094,53.29575793234163],[-127.04323140002904,53.29581284938814],[-127.04309283275511,53.2958342345542],[-127.04279541928155,53.29585477363926],[-127.04264550671883,53.295873452318716],[-127.04249106833758,53.295899457889824],[-127.04222686080185,53.29597068860435],[-127.04196877287846,53.296062024006446],[-127.04170005131137,53.29614113622164],[-127.04142844809392,53.29621746750328],[-127.0411616588746,53.29629879344904],[-127.04087836229711,53.29635898405679],[-127.04059894882026,53.29642361275372],[-127.04031956099237,53.296489925701636],[-127.04004696455732,53.29656458629037],[-127.03977536931608,53.29664146939355],[-127.03960622311034,53.29668104522253],[-127.03948682576457,53.29667929376668],[-127.0391867377394,53.29666847482021],[-127.03903608979056,53.296657468145725],[-127.03886998547519,53.296667320156544],[-127.03872770972454,53.296690973498166],[-127.03859909919733,53.296735239781576],[-127.03835338720519,53.296833181585555],[-127.03809617789872,53.296922268813574],[-127.03784788513421,53.297030316060386],[-127.03758882177891,53.29712053880352],[-127.03734036267977,53.297221308034615],[-127.03713112330371,53.29735030094858],[-127.03693807000985,53.29748812462435],[-127.03671159751764,53.297604386659614],[-127.03645046988304,53.297687337525545],[-127.03617359111067,53.29774129382091],[-127.0359013504331,53.29783106305142],[-127.0356614838613,53.29793791164331],[-127.03540088825525,53.298042708547506],[-127.03514537959846,53.29812504278941],[-127.0348938074032,53.29821462949833],[-127.03464058836009,53.29831375821582],[-127.03436796987519,53.29838839673833],[-127.03412525744892,53.29849415544766],[-127.03389211767272,53.298607664411364],[-127.03363683602782,53.29869952155622],[-127.03335939893492,53.2987691621621],[-127.03310034273574,53.29886049523322],[-127.03283058443482,53.298937346146296],[-127.03254533905347,53.29899529261083],[-127.0322550715457,53.29904039252164],[-127.03195651858276,53.29905419146755],[-127.03165803379223,53.29907078568017],[-127.03136177058171,53.29910136979358],[-127.03106752323728,53.29913753784787],[-127.0307762923687,53.29918208674606],[-127.03050360671755,53.2992544759666],[-127.03023780675305,53.29933913858662],[-127.02996906945127,53.29941933536289],[-127.02969254021217,53.29948840367432],[-127.029409192087,53.29954800224445],[-127.02912687237185,53.299610952527416],[-127.02883848996755,53.29965658340715],[-127.02853901308677,53.29967094641424],[-127.0282463603151,53.29973453980523],[-127.0279775543055,53.29977328543312],[-127.02766214781519,53.29979001600578],[-127.02736473847334,53.29981275693589],[-127.02706730305134,53.2998338211719],[-127.02676510644075,53.29985267598778],[-127.02646705023652,53.29988718930867],[-127.02616845476649,53.2999385041044],[-127.0259227573509,53.30000000982583],[-127.02560634049554,53.30005260653522],[-127.025329690853,53.30011717490454],[-127.02508881026384,53.300222898957294],[-127.02486143985975,53.300342506878415],[-127.02461976039565,53.30045383005061],[-127.02435925160113,53.30052554416746],[-127.02405237572339,53.30058421228991],[-127.02382656741844,53.300690924182234],[-127.02368095903165,53.30084959585092],[-127.02353163296814,53.301009428755236],[-127.02334806540695,53.30115330571271],[-127.02316448446308,53.301296062046426],[-127.02301497663157,53.3014491642336],[-127.02291455440503,53.301610251203606],[-127.02279948741763,53.301788270688256],[-127.0226401458943,53.30192297435044],[-127.0224261455454,53.30205254614877],[-127.022232076763,53.30218978903143],[-127.02206271244567,53.302338023322775],[-127.02191993229403,53.30249723295421],[-127.02178516913749,53.302637890762206],[-127.0216407477562,53.3027685386175],[-127.02149611568204,53.30296754344872],[-127.02130618877351,53.30308234042043],[-127.02126810855069,53.30325633488923],[-127.02114027786014,53.30341205361849],[-127.02095287823072,53.3035537186188],[-127.02074844022039,53.30368992756933],[-127.02055631937876,53.30383051204345],[-127.0203556093318,53.303966123546985],[-127.0201030793436,53.30405737144633],[-127.01982748980366,53.304128640055396],[-127.0195442335532,53.30419326019745],[-127.01926674910483,53.30426398801616],[-127.01901549883439,53.30436977921568],[-127.0188484951904,53.304499505702395],[-127.01852524722145,53.30450451885423],[-127.01828436681545,53.30441694967308],[-127.01795330308815,53.30437104418447],[-127.01766144425825,53.30431304184273],[-127.01736904410899,53.304271849890284],[-127.01707479188605,53.304231793511946],[-127.01677966048419,53.30419454949363],[-127.01648370504694,53.30416178455764],[-127.0161869528971,53.30413463682123],[-127.01589037470484,53.30411532091009],[-127.01559224241021,53.304108906982954],[-127.01528986188364,53.30412157594154],[-127.01499075130724,53.304153263504425],[-127.01470237667446,53.304201109316985],[-127.01442280394743,53.30426288014742],[-127.01414721704288,53.30433470015119],[-127.01387364494013,53.3044115397605],[-127.01362397742786,53.304505545881916],[-127.01341291524015,53.304602583382675],[-127.01315204063661,53.304660274616054],[-127.01276047100747,53.30467817953516],[-127.0124661283959,53.304712616620584],[-127.01216682507548,53.3047358999126],[-127.01186639931082,53.30475190473637],[-127.01156679819383,53.30476342005763],[-127.01126331832891,53.30476936549835],[-127.0109666037037,53.304744436296644],[-127.01067152929511,53.30470885280451],[-127.01038894084186,53.30464571633982],[-127.01012836081821,53.30455885406878],[-127.00986371274136,53.304459710061074],[-127.00963369958339,53.30435410423006],[-127.00941537678209,53.30422599002618],[-127.00920073246526,53.304095038614776],[-127.00892734390052,53.3039836420834],[-127.00871385582995,53.30390030270169],[-127.00841953408724,53.30385686427039],[-127.00811537604005,53.30383479675312],[-127.00781723342409,53.30382779872944],[-127.00751758425875,53.30383706343938],[-127.00721717661104,53.30385362109371],[-127.00691767585323,53.3038684851732],[-127.00661920063125,53.303887256823366],[-127.00631957750183,53.30389763871321],[-127.00602008957885,53.3039130651112],[-127.00572144016385,53.30392455767066],[-127.0054205104819,53.30391926235292],[-127.00511792798623,53.303923499419575],[-127.00484109875268,53.303864782824114],[-127.00459787716754,53.303756473533],[-127.00432824986204,53.30368368500337],[-127.00427352643912,53.30351720388198],[-127.00428223043563,53.3033300187302],[-127.00444452839909,53.303158905885034],[-127.00460999853149,53.303002322572546],[-127.00470279063916,53.30283291762494],[-127.00472407587286,53.30266131193948],[-127.00473579132759,53.30248194418387],[-127.00468729203581,53.30230084491887],[-127.00456670426152,53.302131559656395],[-127.00445362223475,53.30196164609271],[-127.00436514869017,53.30179881159266],[-127.0042540014509,53.30163113128564],[-127.00413821689015,53.301465721969706],[-127.00393924017787,53.301320072040056],[-127.00374315634241,53.301177749655196],[-127.00357833337009,53.301045255632594],[-127.00337405495586,53.300913650446375],[-127.00322097878417,53.300760879989845],[-127.00307893938371,53.300598496948545],[-127.00297533157769,53.300431307469005],[-127.00286515392925,53.300264173367836],[-127.00274424659378,53.30008088799494],[-127.00272915997586,53.299999779708784],[-127.00271082094655,53.29990078095844],[-127.00262623704933,53.299742949700196],[-127.00249177623219,53.299582187068246],[-127.00240391466446,53.2994053359891],[-127.00228637068703,53.29924443032824],[-127.00219113942784,53.29907380811935],[-127.00210060159718,53.298902581526335],[-127.00205118554146,53.29872148872044],[-127.00193636319213,53.298556633731465],[-127.00186174350571,53.29838247603847],[-127.00179366818253,53.29820714265328],[-127.0017085860159,53.29802803564053],[-127.00175448877256,53.297823730001845],[-127.00164205465973,53.29768014273046],[-127.00147209381166,53.29752863275961],[-127.00139399841976,53.29736627303334],[-127.00134822614436,53.29718010268542],[-127.00120441980799,53.297021658158634],[-127.00107281092107,53.296861981240085],[-127.00091906315346,53.296719861938115],[-127.00083846754288,53.296531188257376],[-127.00070959352483,53.29636813554035],[-127.00060505997173,53.29620038690245],[-127.00054355022166,53.29602444162424],[-127.00050829949231,53.29584546951019],[-127.00049088128485,53.295665782437524],[-127.000492256123,53.295485945980545],[-127.00051524810219,53.295306483114175],[-127.00055614003904,53.295128545575416],[-127.00060832048679,53.29495107758417],[-127.00065956839423,53.29477361740833],[-127.00070045941871,53.29459568873318],[-127.00072628955255,53.29441675755028],[-127.00074834786439,53.29423730239556],[-127.00076756648708,53.29405731541566],[-127.0007802018839,53.2938768191984],[-127.00078440151805,53.29369694979244],[-127.00077827149595,53.29351773212468],[-127.00075804021373,53.293338633282225],[-127.00073119980021,53.29315791395124],[-127.00069678964717,53.29297500856079],[-127.00065113167798,53.2927933273275],[-127.00059239959263,53.29261510856987],[-127.00051783590457,53.2924426342997],[-127.00042372018326,53.29227815877607],[-127.00024205686532,53.292146922216666],[-127.00000023168258,53.29205484254464],[-126.9999755642679,53.292044966373616],[-126.99973422278613,53.29193327001407],[-126.99951236875108,53.291810769492855],[-126.99928960883422,53.29168996131675],[-126.99905577442391,53.291577644677915],[-126.99880720019156,53.2914777763444],[-126.99855208247216,53.29137963869234],[-126.99829144993836,53.29128603756195],[-126.99802443286247,53.291200888301425],[-126.99775205763387,53.29112754354548],[-126.9974735096028,53.29107162123375],[-126.99717973889973,53.29104719826595],[-126.99687615728561,53.29104470988455],[-126.99657077408713,53.29104615288452],[-126.9962699769506,53.29104251018674],[-126.99596920651587,53.29103999590059],[-126.99567886455696,53.29100153056627],[-126.99539187181426,53.29094567420986],[-126.99510315925725,53.290896554179334],[-126.9948144473723,53.2908474334454],[-126.99452396269697,53.290802808596624],[-126.9942299316517,53.29076717620365],[-126.99393416726227,53.290737724461124],[-126.99363565804953,53.290711091556105],[-126.99333812067297,53.2906861259415],[-126.99304057057373,53.290660603955565],[-126.9927438870699,53.29063227738003],[-126.99244897939447,53.2905988887923],[-126.9921576572367,53.290558746916886],[-126.99186992446175,53.290510731315315],[-126.99157936625319,53.29046273861602],[-126.99128690334562,53.290413640678366],[-126.99099440155447,53.290362857218184],[-126.99070374016695,53.29031038151872],[-126.99041486663019,53.29025397316624],[-126.99012965984423,53.290193607542584],[-126.98984902559899,53.2901281566906],[-126.98957484521888,53.29005705819237],[-126.98930802409794,53.28997916618925],[-126.98904948351827,53.289893370550715],[-126.98880012709762,53.28979909014398],[-126.98855902494992,53.28969577703376],[-126.9883252693952,53.28958511499228],[-126.98809795494952,53.289468240994],[-126.98787520063443,53.28934572645956],[-126.98765799294236,53.28921924833917],[-126.98744353188717,53.28908994141797],[-126.98723279273324,53.28895836229965],[-126.98702390563393,53.28882620271524],[-126.98681692704749,53.28869459160151],[-126.98660996090867,53.288564100458366],[-126.98640671663478,53.2884313371699],[-126.98621640186175,53.288289502675674],[-126.98604377586045,53.28814024264263],[-126.98589450131355,53.28798462159496],[-126.98577044193154,53.28782262414411],[-126.9856669210782,53.28765486285161],[-126.98557924650758,53.28748192348986],[-126.98550279564623,53.28730608532775],[-126.98543477999188,53.28712962136],[-126.98543148779709,53.28694870312734],[-126.98540214144683,53.28677807606225],[-126.98543649227092,53.286599641970184],[-126.98544544643912,53.28641974247734],[-126.98542341978987,53.28624065584483],[-126.9853751004881,53.28606290784818],[-126.98533710958408,53.28588450940233],[-126.9853225557645,53.28562301323841],[-126.98524682252248,53.285397869703615],[-126.98509711612704,53.285223203734],[-126.98490598955011,53.285005184237775],[-126.9847002265945,53.28480409234504],[-126.98443988060596,53.284559200009575],[-126.98419417789533,53.28429681448206],[-126.9840025050251,53.28409560455575],[-126.98375682068232,53.28383377368907],[-126.98356590320816,53.283624158002674],[-126.98329234881214,53.283335666605126],[-126.98303275820429,53.28308180140197],[-126.98294511686399,53.282909415317725],[-126.98289683998858,53.282732230474416],[-126.98290205970048,53.282552917553645],[-126.9829439324195,53.28237442157658],[-126.98304052328753,53.28220499169832],[-126.98315785521693,53.28203931595875],[-126.983323478307,53.28188949089585],[-126.98348341182165,53.281737462880024],[-126.983614942561,53.281576150738026],[-126.98370207050696,53.28140400201115],[-126.98375714139861,53.28122763711078],[-126.9837792649575,53.28104818389825],[-126.98378729321325,53.2808682917386],[-126.98386120143162,53.280694011495],[-126.98401452179482,53.28054036125174],[-126.98421242471767,53.28040538860017],[-126.98437707767506,53.28025500520006],[-126.98445948263254,53.28008233021595],[-126.98447033112124,53.279902970243654],[-126.98442767383385,53.27972517441868],[-126.98434003397496,53.27955279802801],[-126.98419637951248,53.279394886983326],[-126.98399876832922,53.27926038753344],[-126.98376595118869,53.279146356372166],[-126.98356462471433,53.27901357213204],[-126.98343315184927,53.27885443878677],[-126.98344961386391,53.278673911883196],[-126.98356886696862,53.27850989560011],[-126.98375440046892,53.27836886806592],[-126.98385267466273,53.2781915800546],[-126.98387707952067,53.27802947889719],[-126.98386913190147,53.27784970989692],[-126.98383396517004,53.27767129588473],[-126.98380161080233,53.27749229383805],[-126.98371893668113,53.277290179580255],[-126.98372653962437,53.27713269041409],[-126.98369239914291,53.27695762911622],[-126.98366568124833,53.27677858026501],[-126.98360146004818,53.27660263878766],[-126.98347273953961,53.276440685925046],[-126.9833654725835,53.27627182358512],[-126.9834007962821,53.27609450149659],[-126.98339098580354,53.275915312439835],[-126.98333895826306,53.27573815826195],[-126.98327849678317,53.275562185392204],[-126.98320585806174,53.27538799849153],[-126.98313415369984,53.2752132480582],[-126.98306432808762,53.27503847304685],[-126.98303038757822,53.27487180856924],[-126.98302725764134,53.27465670996627],[-126.98294857648813,53.27450498169961],[-126.98284693861179,53.2743355164245],[-126.98275563985808,53.274165965448105],[-126.98271330661565,53.27400217589468],[-126.98267122928465,53.27380868803589],[-126.98258643363675,53.27363627747341],[-126.98250162575063,53.27346331120332],[-126.98243275251615,53.273288536787696],[-126.98240416400607,53.273109502860244],[-126.98238308882345,53.27293040672375],[-126.98237493024203,53.27286268307925],[-126.98235480194977,53.27268357907955],[-126.98233276762176,53.272503935097916],[-126.98230137021336,53.27232492432927],[-126.98220633256,53.272156524194386],[-126.98207298187849,53.27199628409662],[-126.98200409967919,53.271820944705645],[-126.98191086440067,53.27164916807117],[-126.98164993861188,53.27157681263601],[-126.98137130865501,53.271510214197015],[-126.98109358492742,53.27144247821237],[-126.980818620042,53.271372486863584],[-126.98055550743045,53.271286701813445],[-126.98027686800548,53.27121953620093],[-126.97999464007019,53.27116024266211],[-126.97972236056711,53.271084059709025],[-126.979434761761,53.27103545786188],[-126.97914805612399,53.270985162809254],[-126.97890515489966,53.27087960413697],[-126.97871780806196,53.270739408902294],[-126.97858929282505,53.2705847272517],[-126.97866223408475,53.27040878113981],[-126.9787022624364,53.27023085653609],[-126.9787536612552,53.27005788459904],[-126.97886626244834,53.26989113049415],[-126.97902335708906,53.26973913968052],[-126.97912846985301,53.26957356750037],[-126.97924108116104,53.26940736863115],[-126.97937069870213,53.269245520027376],[-126.97952115607265,53.269091333393256],[-126.97958286118835,53.26891715544753],[-126.97950758256296,53.26874915461335],[-126.97953814838597,53.26856906674603],[-126.97953680198596,53.26838925122066],[-126.97955705869187,53.268209813105685],[-126.97958577184852,53.26803086090629],[-126.97959758447799,53.26785149244876],[-126.97959341327808,53.26767170017267],[-126.9796005100879,53.267491805903575],[-126.97960855143508,53.26731246852362],[-126.97962599781,53.26713305348839],[-126.97967258471421,53.266955083018864],[-126.97972388449433,53.26677818508328],[-126.97973850566069,53.266598793300474],[-126.97974374988998,53.26642004361882],[-126.97987717717174,53.266260959295245],[-126.9801073808068,53.26614420818167],[-126.98037214100611,53.26605967298253],[-126.98064945241727,53.26598959027956],[-126.98088552072207,53.265882882113544],[-126.98097831120195,53.265713483637796],[-126.98097221725091,53.26553202190897],[-126.98097651155355,53.26535271517787],[-126.98098360228992,53.265172829571384],[-126.98098505900153,53.26499298155909],[-126.98101276751694,53.264811240320654],[-126.98097150097142,53.26465192244921],[-126.98070626583583,53.264553830421825],[-126.98045973305973,53.26445223090705],[-126.98020948459043,53.264352337764336],[-126.9799409392734,53.264273318961],[-126.97966497449237,53.26419828685069],[-126.9794705332274,53.2640749667609],[-126.97941375637795,53.263894478933004],[-126.97933366819568,53.26372147083874],[-126.97921713895904,53.26355605078463],[-126.97907353209534,53.26339701200149],[-126.97901596725008,53.26322325311935],[-126.97895569772628,53.26305400725946],[-126.97873859984057,53.262925261680635],[-126.97853001311243,53.2627986953755],[-126.97840134104557,53.262636171258045],[-126.97831751880506,53.26246319320797],[-126.97822434513047,53.26229253307577],[-126.97808917578082,53.262132858798026],[-126.97805121144418,53.26195334454321],[-126.97812327342366,53.261780201751954],[-126.97832880001107,53.261653017310934],[-126.97855240311772,53.26153632318398],[-126.97869898973099,53.26137825161174],[-126.97880497741524,53.26121043072671],[-126.97888640873295,53.26103721007912],[-126.97896313967364,53.260863472393524],[-126.9790257423855,53.260687601353695],[-126.97906009892876,53.260509166699016],[-126.97909729235036,53.260331273311614],[-126.97913070387004,53.260152281690964],[-126.97912091521168,53.25997309079945],[-126.97912990351864,53.25979374494108],[-126.97914829324063,53.25961488618688],[-126.97916386071874,53.259435485996576],[-126.97920573920027,53.259257544836686],[-126.97924951021437,53.25907959698644],[-126.97930551692481,53.25890322430054],[-126.97938317336661,53.258729469501304],[-126.97950614142394,53.25856543356678],[-126.97968781942923,53.25842331273509],[-126.97991036662215,53.258302151566575],[-126.98015585969837,53.2581987186291],[-126.98042446814618,53.25812030874987],[-126.98071347435022,53.25807086133254],[-126.98100952548927,53.25804208775226],[-126.98130776597112,53.25802673175339],[-126.98160823544538,53.25802648711376],[-126.98189835082258,53.25806554314318],[-126.98217871863417,53.25812989376083],[-126.98245996836546,53.25819143081191],[-126.98272958223708,53.25827714876812],[-126.98299377104401,53.258372439368884],[-126.98323548345401,53.25830825603644],[-126.9834226894535,53.25816216644951],[-126.98355698386783,53.258001384629715],[-126.98367142470387,53.25783517395367],[-126.98380937901054,53.257671000109326],[-126.98407540336484,53.25760268734104],[-126.98435289716552,53.2576642510688],[-126.98463323993595,53.257727475666194],[-126.98491995344058,53.25778167415245],[-126.98521803038439,53.25779936742775],[-126.98551735596085,53.257790723475985],[-126.98581659163321,53.257777588748596],[-126.9861154564572,53.25778911522836],[-126.98640387992023,53.25783601748534],[-126.98668244079455,53.257903169181105],[-126.98694732070892,53.25798724079631],[-126.98719845433241,53.25808542735692],[-126.9874320849817,53.25819833388533],[-126.98766385225493,53.258311811212664],[-126.98790760818679,53.258416224661765],[-126.98816517972578,53.25850875333479],[-126.98843554197406,53.25858605329198],[-126.98870501334834,53.25866504522007],[-126.98898988703834,53.258720369723854],[-126.98928786555197,53.25873413655981],[-126.98964473464827,53.25873619798054],[-126.98993183037649,53.258685623555614],[-126.99019943815065,53.258605523596806],[-126.99048257991943,53.25854657295498],[-126.99071285682616,53.25843596655898],[-126.99088593662702,53.25828886249966],[-126.9910846446224,53.258153869057566],[-126.99121704549002,53.25799365884931],[-126.99133993717032,53.25782904611855],[-126.99149028408767,53.25767373212722],[-126.99165578186341,53.257523884587094],[-126.99182601948141,53.25737568233117],[-126.9919877203974,53.25722418982894],[-126.99216844588811,53.25708318677114],[-126.99238809983582,53.256960896537],[-126.99260109654884,53.25683474447196],[-126.99278272500449,53.25669204770297],[-126.99296746019796,53.2565224337602],[-126.99318966025395,53.256428140945594],[-126.99346504730792,53.256360284254406],[-126.9937601068689,53.25632980180325],[-126.99403737010188,53.256261937015324],[-126.99429147097156,53.25616681009591],[-126.99455229276985,53.25607834899898],[-126.99481984866543,53.25599710931627],[-126.99509615037336,53.25592812961846],[-126.9953911265351,53.25589428240683],[-126.99567422786271,53.25583531941903],[-126.99596727257597,53.25579924606535],[-126.99626681959312,53.25580065707833],[-126.99656409963629,53.25582505120822],[-126.99686354279036,53.255821415062485],[-126.997170613133,53.255823316325596],[-126.99745580340162,53.25585229165943],[-126.99760720770983,53.255901994830054],[-126.99770132766734,53.25595162381207],[-126.99780993368047,53.25601793770329],[-126.99796277987605,53.256049145281146],[-126.99823494007464,53.256043494271324],[-126.99841320430069,53.25599774074717],[-126.9985202489851,53.25599796031648],[-126.99882817412293,53.25599592403344],[-126.99910544016446,53.255928603025524],[-126.99940155641923,53.25590369985385],[-126.99969875945175,53.25592472543375],[-127.0000010278834,53.2560403904988],[-127.00025119431373,53.256136881640884],[-127.00049094839629,53.25623009870333],[-127.00064584692232,53.25611002411774],[-127.00067540876915,53.25593105771587],[-127.0006824271943,53.25575172569122],[-127.00068286868141,53.25557189337791],[-127.00067766247888,53.25539209972097],[-127.00069594566439,53.25521267262792],[-127.00070203265854,53.25503334838955],[-127.00072030242056,53.254853365624164],[-127.00070008990306,53.25467426319077],[-127.0007428325473,53.254496870611064],[-127.00095007992228,53.25436739021137],[-127.001209945456,53.25427892225296],[-127.00147650620634,53.25419599947472],[-127.00172093663002,53.25409085382271],[-127.00197407409443,53.253996273967445],[-127.00225710218191,53.253934498987846],[-127.0025275598799,53.25385770786846],[-127.00278145257133,53.253755841382045],[-127.00297359101764,53.25362312365534],[-127.00307179358569,53.25344862252259],[-127.0030657261005,53.253272197341246],[-127.00298332657701,53.25304432074551],[-127.00300841492523,53.25291470028583],[-127.00304922871999,53.252735637755215],[-127.00311360825735,53.25256086671896],[-127.00322231193898,53.25239411974644],[-127.00335081420175,53.25223056657298],[-127.0034651747166,53.25206489194668],[-127.00352294834494,53.25188849131364],[-127.00352243131715,53.251708657668935],[-127.00349376802987,53.25152962681835],[-127.00346041762916,53.251351200305606],[-127.00346461503565,53.25117189144369],[-127.00342749705246,53.25099293205105],[-127.00343262569403,53.25081361528036],[-127.00350359187799,53.25063934384987],[-127.00363681318522,53.25047742644742],[-127.00374930399096,53.25031233187598],[-127.00377790431367,53.25013281640145],[-127.00378582630054,53.24995291117234],[-127.00381350671957,53.249774523895674],[-127.00387975740854,53.24959917156188],[-127.00390742399419,53.24942022859386],[-127.00393696734245,53.249241260753266],[-127.00396556454362,53.24906230985796],[-127.00399510739526,53.24888334196926],[-127.00402371912531,53.24870439089923],[-127.00405231538254,53.248525430970716],[-127.00408657134528,53.24834698781977],[-127.00413492485487,53.24816954576014],[-127.00421343236988,53.24799689493349],[-127.00433343611616,53.24783229166156],[-127.00438851028574,53.24766151529683],[-127.00443108374563,53.247477954961674],[-127.00443807161304,53.2472980662848],[-127.00443191939969,53.24711827989826],[-127.00443139877419,53.24693845476984],[-127.00444966235906,53.24675902630445],[-127.00446229451427,53.24657964550755],[-127.00447211844522,53.246400288473275],[-127.00447270171317,53.24622773244638],[-127.00449442595212,53.24603594951639],[-127.00449125659645,53.24586286052326],[-127.00443823155574,53.24568572083997],[-127.00436650299486,53.245511536173716],[-127.00424432128419,53.245347298090074],[-127.00414173553352,53.24517842109098],[-127.00406252759373,53.24500541999504],[-127.0040001467667,53.24482947075962],[-127.00391906305461,53.24465648542506],[-127.00376335253094,53.24450317947651],[-127.00353209821289,53.24437012510181],[-127.00345210792861,53.24420385295401],[-127.00345256390084,53.2440251308182],[-127.0034811462127,53.24384561494995],[-127.00344219925576,53.24366779086542],[-127.00328570773617,53.24352121364119],[-127.003002794765,53.24346590714787],[-127.00270386713503,53.243447701689966],[-127.00240673718979,53.24342612786214],[-127.00213109444526,53.24336066472638],[-127.00207909473811,53.243186311877714],[-127.00209642071597,53.243006891413636],[-127.00212033668625,53.24282797996057],[-127.00212545649237,53.242648097877776],[-127.00213809728588,53.242468716941076],[-127.00213570957835,53.242288907222665],[-127.00209113903706,53.24211113012657],[-127.00198952887756,53.24194279862482],[-127.00178832240807,53.24181004272162],[-127.00155475740165,53.24169772809475],[-127.00132856837254,53.241579748417884],[-127.0011468545603,53.24143729843025],[-127.00106113094716,53.241265470618906],[-127.00103716978741,53.24108639865111],[-127.00105544525621,53.240906970156615],[-127.00109158453151,53.24072851131413],[-127.00114092589303,53.2405533023872],[-127.00125336010383,53.2403865244807],[-127.00137143723865,53.24022026351267],[-127.00149989626033,53.24005614669782],[-127.00164069211593,53.23989809256257],[-127.00180044073124,53.23974772139229],[-127.00198671564209,53.23960777476708],[-127.00219005291252,53.23947496218158],[-127.00240097571752,53.239345446506384],[-127.00260904799286,53.239214834070246],[-127.00282283063603,53.239086969643516],[-127.00304514305252,53.23896295877836],[-127.00325986737467,53.23883565027477],[-127.00345092419458,53.23870014261643],[-127.00359655381453,53.23854820312629],[-127.00368444248925,53.2383760280035],[-127.0037581012845,53.238197815157086],[-127.00386202797242,53.23802886550714],[-127.00400471156114,53.23787191275127],[-127.00415683082336,53.237717120837],[-127.00431652219422,53.237565061262146],[-127.00447903335728,53.23741354228061],[-127.0046434484698,53.23726257163977],[-127.00480595729738,53.237111052186165],[-127.00496374073515,53.236957887351245],[-127.00509128355885,53.236796023825],[-127.00520840452978,53.23662975765016],[-127.00526239649618,53.236453386555],[-127.00525906323,53.23627413998774],[-127.00524540284002,53.23609442519718],[-127.00534480592472,53.235933355589225],[-127.0056025255532,53.23583872725097],[-127.0058354333219,53.235727510742485],[-127.0060226095153,53.23558698485744],[-127.00620503211675,53.23544425805529],[-127.00649126617294,53.235325855919264],[-127.00667523065682,53.23520888604309],[-127.0069186609262,53.23510597701988],[-127.00722694620447,53.23500699848727],[-127.00736223669348,53.23489548752361],[-127.00757090341848,53.23483040366992],[-127.00776416970386,53.2347492080053],[-127.0079921813654,53.234629620706805],[-127.00822988198566,53.234522840449614],[-127.00849293879509,53.2344561719887],[-127.00873923975969,53.234395256789995],[-127.00895855136851,53.23434352551771],[-127.00921632429883,53.234291475457134],[-127.00951546495753,53.23428220625609],[-127.00981462049732,53.234272936172474],[-127.01011385450879,53.234267581827496],[-127.01041331795702,53.23427119749612],[-127.01071214369912,53.23428769876886],[-127.0110091868291,53.234308131652995],[-127.01130375665956,53.234343159965796],[-127.01158297359177,53.2344029599087],[-127.01182850213888,53.23450563350184],[-127.0120426652895,53.23463153945125],[-127.01225591225084,53.234758008590894],[-127.01248578141353,53.23487313968385],[-127.01274697623768,53.23496390820572],[-127.0130034345394,53.23505247568064],[-127.01327766974356,53.23506077259947],[-127.01353829891602,53.235049581433024],[-127.01380106340604,53.23501035967732],[-127.01406366778916,53.234963860127344],[-127.01437639633973,53.234933729310185],[-127.01460458773444,53.234861752105985],[-127.01474627639892,53.23470422952902],[-127.01488130806723,53.23454341128774],[-127.01509323267727,53.23441946594233],[-127.01537031933496,53.23435098579404],[-127.01564737651239,53.23428194052319],[-127.01590610170106,53.23419177166385],[-127.01613990547057,53.234079962117725],[-127.01638612848458,53.233977009413934],[-127.01664966857048,53.2338923910114],[-127.0169218886956,53.23381722606154],[-127.01719991278426,53.233749298235495],[-127.01748479438993,53.233693071377786],[-127.01777967672004,53.23366308459972],[-127.01807886665316,53.23365547850661],[-127.01837670466767,53.23367028374914],[-127.01867300565745,53.233698556080796],[-127.0189709658468,53.233718405392494],[-127.01926976399915,53.2337337648651],[-127.019559841864,53.23377664566026],[-127.01982644497724,53.23385783267718],[-127.02013036303593,53.23392972533495],[-127.02042713790716,53.23393894119575],[-127.02071946846536,53.23388040149801],[-127.02099678447762,53.23382254610934],[-127.02130420679117,53.233767236422246],[-127.02158657441925,53.233763127790446],[-127.02189184079249,53.23377394304776],[-127.02219102919813,53.23376688234808],[-127.0224902730658,53.2337614966421],[-127.02278913592156,53.23374099156093],[-127.02307895156639,53.23369535761787],[-127.02332520968939,53.23359463096424],[-127.02357714886259,53.23349665144488],[-127.02383970020657,53.233410349198714],[-127.02410512702332,53.23332626247054],[-127.0243696070321,53.233242183315014],[-127.0246330996044,53.23315643586038],[-127.02489178503589,53.233065682742854],[-127.0251475806167,53.23297159260931],[-127.0254023749508,53.23287526961965],[-127.02565623586798,53.232779509896915],[-127.02591298593765,53.23268653028653],[-127.02617361032152,53.23259856319364],[-127.02644009416679,53.232520064344286],[-127.02673552664841,53.23247436374133],[-127.02703206779246,53.23243538460606],[-127.02729393207669,53.232360285246884],[-127.02751616452812,53.23223734831683],[-127.02769743314988,53.23208899507671],[-127.02783529584103,53.23193148929039],[-127.02794856121736,53.23176524173247],[-127.02805233311574,53.2315951502109],[-127.0281598992633,53.23142614615019],[-127.02828354274885,53.23126260491887],[-127.02842513982876,53.23110451019275],[-127.02857620085409,53.23094912988378],[-127.02873198522883,53.230795393574695],[-127.02888776847021,53.23064165704846],[-127.02903881134772,53.230486285204265],[-127.02915962789892,53.23032220273963],[-127.0292728687425,53.2301559539054],[-127.02939839408492,53.229992950752006],[-127.02953620424964,53.229833211164824],[-127.02968820106291,53.22967838585444],[-127.02985249455749,53.229527935426155],[-127.03003197625117,53.22938407566356],[-127.03022187816208,53.229244606974056],[-127.03040230158969,53.229101294181895],[-127.03056849391436,53.22895194664923],[-127.03076410295566,53.22881578885265],[-127.03099881065363,53.22870506171371],[-127.03125646863236,53.22861262684169],[-127.03152284944272,53.228531311322435],[-127.03180081528963,53.228463349075206],[-127.03207207022292,53.22838927747171],[-127.03229528061163,53.228269683946756],[-127.03247854211101,53.22812746359146],[-127.03262956280425,53.2279720869665],[-127.03275035822931,53.22780800062495],[-127.03282775160888,53.22763477265722],[-127.03277278182559,53.22745878053652],[-127.03271403246116,53.22728169185772],[-127.03274910817758,53.22710435058007],[-127.03285382229969,53.22693536644064],[-127.03301146632347,53.22678217243849],[-127.03323563855608,53.226663689043214],[-127.03350782360421,53.22659016161364],[-127.03379756483362,53.226543936700644],[-127.03409134570357,53.22650944535965],[-127.03438713914296,53.22648052916324],[-127.03468063102993,53.22643426934988],[-127.03496575564328,53.22639088753186],[-127.03523592255222,53.22631177129887],[-127.03546771436265,53.226198263685816],[-127.0356429698884,53.226037059865455],[-127.03574550828928,53.2258944277402],[-127.03581038257468,53.225708416873466],[-127.0358175214505,53.225540282350686],[-127.03581518360389,53.225368313411174],[-127.03581057146678,53.225180112867186],[-127.03580257763115,53.225007063867814],[-127.03581804161632,53.22483437461659],[-127.03590394932758,53.22466443126101],[-127.03610431531786,53.224532148622124],[-127.03632081139511,53.22440755902904],[-127.0365163672521,53.224270835774895],[-127.03670718280945,53.22413246842666],[-127.03687049923273,53.223982015969895],[-127.03698181785346,53.22381521089122],[-127.03705351706321,53.2236403441868],[-127.0370707154397,53.22346148125276],[-127.03710386617801,53.223283034497435],[-127.03718028906431,53.223109246811525],[-127.0373114324253,53.22294787027511],[-127.03750604644806,53.222811709196506],[-127.03766093735841,53.2227005461277],[-127.0377715011107,53.22257968655904],[-127.03780416126125,53.2224578326785],[-127.03786141074171,53.22230606620457],[-127.03791273039822,53.22214146156417],[-127.0379921057787,53.2219738144931],[-127.03801064262873,53.221811746760025],[-127.03793083563913,53.22165613359691],[-127.03784078198463,53.221465884046495],[-127.03784962299719,53.22129101113858],[-127.03792228732028,53.22111725563943],[-127.03806003634107,53.22095750539408],[-127.03823185242742,53.2208103376782],[-127.03840083341076,53.22066207404261],[-127.03853857891981,53.220502314240555],[-127.0386423219587,53.22033389728298],[-127.0387341202601,53.22002271857026],[-127.03876724740647,53.219843706420605],[-127.03877409825184,53.21966436875598],[-127.03875654900578,53.2194846891418],[-127.03873620726456,53.219305589741225],[-127.03867184419671,53.21912967280813],[-127.03861684727212,53.21895311799892],[-127.038581498492,53.218774714749],[-127.0385592681271,53.218595067083214],[-127.03855485103381,53.21841527228517],[-127.0385626054339,53.21823480609922],[-127.03860426313022,53.218059080531994],[-127.03872022767084,53.217891676628135],[-127.03880983367505,53.21772057741746],[-127.0388768193633,53.21754519443526],[-127.03892404622654,53.217367743612805],[-127.03891588981838,53.217188537235565],[-127.0388983271225,53.217008292801594],[-127.03888359936995,53.21682857926234],[-127.03888951773013,53.2166498141931],[-127.03897909288582,53.216477594495274],[-127.03912911749028,53.216322207823474],[-127.0393094419181,53.21617832485228],[-127.03949262763165,53.216036101703914],[-127.03967960341714,53.215896077016176],[-127.03987226154028,53.2157576873717],[-127.04006779346383,53.2156220778764],[-127.04026806078295,53.215488658487665],[-127.04047213469217,53.215356890537315],[-127.04068952905256,53.21523341339908],[-127.04093943030814,53.215134292130685],[-127.04120279010276,53.21504906267706],[-127.0414699979776,53.21496716027718],[-127.04174207971465,53.214893057844805],[-127.04201121535732,53.214813942960205],[-127.04225729077807,53.214712055737564],[-127.0424641883437,53.214581379873515],[-127.04262461248723,53.21443037893376],[-127.04268125490813,53.214254528536785],[-127.04262249631479,53.214078008129505],[-127.04248998864884,53.21391613804115],[-127.0423193709339,53.213768057808736],[-127.0421255926514,53.213631376915565],[-127.04190405320931,53.21351063558235],[-127.04165123806558,53.21341425477233],[-127.04138014973522,53.21333820280582],[-127.04109819608759,53.213277367798426],[-127.04080733298423,53.213236223417574],[-127.04050856159455,53.213216437058215],[-127.04021167997148,53.21319719808819],[-127.03991552326578,53.2131689791371],[-127.0396211036964,53.21313570649097],[-127.0393355818597,53.2130821862805],[-127.03906722445768,53.213002187885834],[-127.03882453435257,53.212897868908264],[-127.03860207767363,53.212777120548395],[-127.03839532337552,53.21264671451753],[-127.03820061785171,53.212510044370184],[-127.03800962334236,53.212371656184786],[-127.03782789786074,53.21222870456555],[-127.03766752995634,53.21207660175199],[-127.03755934707864,53.21191115174617],[-127.03752681559249,53.211732158210076],[-127.03752238975146,53.21155179810941],[-127.03752923089829,53.21137190407981],[-127.03754171214564,53.21119251641671],[-127.03755606878707,53.211013112315136],[-127.03757230079873,53.210833691774226],[-127.03758946406121,53.21065369833225],[-127.03760662602933,53.210474269607566],[-127.0376256783236,53.210294824310736],[-127.03764471545253,53.210115379125014],[-127.0376468883539,53.209936081582185],[-127.03764435148868,53.20975626949746],[-127.03764181442509,53.20957644843334],[-127.0376383323872,53.20939664459026],[-127.0376357953708,53.209216823491495],[-127.03763983004059,53.2090369537969],[-127.03765418553394,53.208857549476505],[-127.0376760561269,53.208678635093875],[-127.03769509231446,53.208499189744764],[-127.03769162514173,53.20831938566824],[-127.03767315365133,53.20814026872646],[-127.03767436729129,53.207960414663624],[-127.03767838782156,53.20777998024005],[-127.03762997987954,53.20760393109781],[-127.03751150171419,53.20743857090298],[-127.03736951745479,53.207232522875465],[-127.03739534956611,53.20710007863016],[-127.0375188176029,53.206933729502744],[-127.0376073087942,53.20675647260743],[-127.03773865766449,53.20656707961159],[-127.03792745016106,53.20646402598417],[-127.03815623665066,53.206347731506675],[-127.03838313408771,53.20623033262982],[-127.038578626515,53.206094715938015],[-127.0387257680465,53.205938242343784],[-127.03883703185282,53.205771433916844],[-127.0389303622222,53.20560030062545],[-127.03902463561374,53.2054297147344],[-127.03913589690329,53.20526290598123],[-127.03927831147834,53.20510478781807],[-127.03944817003061,53.20495707789484],[-127.03963319555649,53.204815392870785],[-127.03981821850368,53.20467426332398],[-127.04000800473332,53.20453589737759],[-127.0402120266007,53.204404129102706],[-127.04041699118692,53.20427291690789],[-127.04062289827073,53.204142251826205],[-127.04082883275952,53.20401214189127],[-127.04103569629233,53.203882032379724],[-127.04124350232107,53.20375246997007],[-127.04145133576182,53.203623462700705],[-127.04166009823719,53.20349445584321],[-127.04186599769024,53.20336378854694],[-127.0420776052335,53.203235867428596],[-127.04232169536694,53.20313287581114],[-127.04260646171691,53.20308163330696],[-127.04290627779388,53.20307058654343],[-127.04320554945328,53.20307579549003],[-127.04352373979386,53.203087004276206],[-127.043801472573,53.203055425032716],[-127.04406635101262,53.20295840487865],[-127.04430665676675,53.202854321950404],[-127.04450017040338,53.20271591562066],[-127.04465486283222,53.202562164279975],[-127.04476042635022,53.202394279466276],[-127.04482454419957,53.20221836077478],[-127.04484074200086,53.202038938393585],[-127.04479696442066,53.20186116537188],[-127.04470460107848,53.20169054371183],[-127.0445842506879,53.201525771205084],[-127.0444471499995,53.20136618398565],[-127.04429793814751,53.201210073808255],[-127.044140379899,53.20105738952322],[-127.04396703085771,53.2009104556166],[-127.0437751385542,53.2007726398351],[-127.04355460677601,53.200651892429555],[-127.04331194883399,53.20054646169579],[-127.04310750272886,53.20043116534127],[-127.0430095185886,53.20029868872896],[-127.04296666788764,53.200119786290855],[-127.04295526683394,53.199999993372465],[-127.04295005264593,53.19994065287802],[-127.043067061082,53.19977995630885],[-127.04329579728406,53.19966365149167],[-127.04350168803516,53.199532980952064],[-127.04367246816463,53.19938581185519],[-127.04383469162124,53.19923423588435],[-127.04395251389793,53.1990690402034],[-127.0439687141923,53.19888961763744],[-127.04392401356057,53.19871185218693],[-127.04382885463497,53.19854181901138],[-127.04378790483196,53.19836402043737],[-127.04388124018887,53.19819455846871],[-127.04410232760766,53.198072716797206],[-127.04433681607141,53.19796140579185],[-127.04454824972606,53.19782844335209],[-127.0447704580239,53.19771386926013],[-127.04481759085574,53.197609811845446],[-127.0447162245518,53.19756812677341],[-127.04441899094918,53.197567941768675],[-127.04412335124901,53.197594642928216],[-127.04383381961067,53.19764089379063],[-127.04354323182605,53.19768267124367],[-127.04324453699871,53.197699303648314],[-127.04294621962731,53.197693530951376],[-127.04265451801724,53.19765183433715],[-127.04236819343491,53.197600014169694],[-127.04208543983749,53.19754087417687],[-127.04179009247625,53.19746559253898],[-127.04166239261816,53.1974583161539],[-127.041500428273,53.19746813938598],[-127.04121301773661,53.19752444967422],[-127.04095555611457,53.19761691681114],[-127.04071338306748,53.19772044509714],[-127.04048749659445,53.197838405282745],[-127.04036284176448,53.19787871745937],[-127.04016198992376,53.19794714625385],[-127.03991111417241,53.198002576784994],[-127.03969071315072,53.19803868190482],[-127.03935239333236,53.198045576671426],[-127.0390182576281,53.19803225584346],[-127.03876731496659,53.198008684914576],[-127.03857509637689,53.19797059692781],[-127.03843228593988,53.19795895856234],[-127.03815720010485,53.19790646501268],[-127.03783844209464,53.1978319434515],[-127.03760709598758,53.19776561948043],[-127.03732252798115,53.197708725062135],[-127.03703003803837,53.197673188772114],[-127.03673237821837,53.197655624972136],[-127.03643722153728,53.19762571305093],[-127.03614376190308,53.1975885068013],[-127.035850357438,53.197553531377814],[-127.03555351918867,53.19753147545235],[-127.03525495726866,53.19751560106718],[-127.03495583417758,53.19751540883676],[-127.03465816313478,53.19753593685669],[-127.03436860796238,53.19758160894182],[-127.03409477714582,53.19765683175953],[-127.03390690473917,53.197796292642444],[-127.0337276262223,53.197941836472786],[-127.03348053361533,53.19803699346572],[-127.03319900698841,53.19810443781016],[-127.03291245632754,53.19815847931633],[-127.03261178341222,53.19817118483473],[-127.03231414774073,53.19819339182667],[-127.03201755084613,53.19822006204139],[-127.03172791971134,53.198262922529004],[-127.03143850654831,53.19831474437568],[-127.03115497707795,53.19837716349437],[-127.03088775981618,53.198454562203175],[-127.03064373573994,53.198560891431555],[-127.03044075264806,53.198696551849835],[-127.03030485565994,53.198852926894695],[-127.0302134483624,53.19902683387267],[-127.03011351376973,53.199197462377306],[-127.02995144578448,53.19935741701739],[-127.0297060342266,53.19944527256917],[-127.02941456107742,53.19945172271438],[-127.02910746243847,53.19943198071476],[-127.0288047852851,53.19940155930595],[-127.02852388635692,53.19934125046663],[-127.02826291841056,53.199252190880735],[-127.02801661112588,53.1991490018095],[-127.02777951656812,53.19903900934032],[-127.02754607802842,53.19892506744125],[-127.02730991593123,53.19881506595324],[-127.02705726258347,53.19872032916425],[-127.02676891174896,53.19866176602804],[-127.02650904480343,53.198579416043266],[-127.02628381233758,53.198455316124004],[-127.02610397968377,53.19830896844265],[-127.02599593160367,53.19814574718184],[-127.02592138999769,53.19797159544561],[-127.02587014212708,53.19779163947247],[-127.02583293554326,53.19761100611667],[-127.02581172756915,53.197432466234524],[-127.02581956118442,53.197252563337955],[-127.02583486558557,53.197072031003614],[-127.02584364245203,53.196892675667364],[-127.02585428042043,53.19671273946684],[-127.02586587692319,53.1965333596768],[-127.02587556999734,53.19635344058409],[-127.02588433284777,53.19617352056389],[-127.02589217939813,53.19599417319004],[-127.02590094232086,53.19581426209579],[-127.02591345459689,53.19563430954957],[-127.02606546418221,53.19548453171161],[-127.02629994335624,53.195372127158166],[-127.02649171561804,53.195238246973446],[-127.02647335315132,53.19506081177249],[-127.02627049960319,53.19493147112424],[-127.02605839706578,53.19480669222871],[-127.02602034371822,53.19462941851904],[-127.02603192394754,53.19445003864113],[-127.02599010802948,53.19427224171324],[-127.0259081151197,53.19409983942799],[-127.02579437280151,53.193933305533236],[-127.02566485309903,53.19377307534787],[-127.02545178613168,53.193647183206565],[-127.02519541856687,53.19355248360283],[-127.02494552454237,53.19345435698141],[-127.02470941342688,53.19334491459832],[-127.02444758777484,53.19325697462784],[-127.0241757568221,53.19318201079491],[-127.02389396093822,53.193121698946136],[-127.02361305649303,53.19305913773368],[-127.02334304879253,53.19298191525535],[-127.02309225989536,53.192884921953215],[-127.02287364858364,53.19276186986697],[-127.022668888207,53.192630298551585],[-127.02244661152247,53.19251064778377],[-127.02220497066483,53.19240404494649],[-127.02198455751584,53.19228381250662],[-127.02180944514485,53.192137417450326],[-127.02164736339668,53.19198642775763],[-127.02149483045437,53.19184319898303],[-127.02148957227229,53.191663964643666],[-127.02148052280513,53.191483642482844],[-127.02147047586088,53.19130052317835],[-127.02142405726426,53.191125005216456],[-127.02125835176538,53.19097964869414],[-127.02103962065154,53.19085100073233],[-127.02080811983829,53.19073701993428],[-127.02058399716738,53.19061793735613],[-127.0203617099312,53.19049716228077],[-127.02014774544686,53.19037126838703],[-127.01994951964647,53.1902373950983],[-127.01976514430253,53.19009499401635],[-127.01958821609573,53.18994973177939],[-127.01941866439014,53.189799923797665],[-127.01925096306243,53.18964842338277],[-127.01908141375863,53.1894986148939],[-127.01890450377671,53.18935390724121],[-127.01871650822389,53.189216582391175],[-127.0185036467096,53.18909739904595],[-127.01822806361285,53.189020777715314],[-127.01795156511834,53.188944719383315],[-127.01773404026954,53.1888266952444],[-127.01755612569167,53.188679197455585],[-127.01736527936256,53.188539653966856],[-127.01716241911798,53.18840693633675],[-127.01695585001015,53.18827649120276],[-127.01674283664069,53.18815058302523],[-127.01651967028985,53.188030919866236],[-127.01627802804542,53.1879231845421],[-127.0160208516779,53.187831833703136],[-127.01572927151595,53.187791190847],[-127.015430826008,53.1877769423446],[-127.01513161224749,53.18776942267002],[-127.01483316709437,53.18775517266155],[-127.01453802792318,53.187722409835786],[-127.01424291585185,53.1876907575807],[-127.01394556239111,53.187683218986926],[-127.01364770876725,53.18769361190717],[-127.01335004283528,53.18771184596176],[-127.01280064241438,53.18774791907266],[-127.01283015893154,53.18757119263931],[-127.0130076175312,53.187426806960346],[-127.01320026007517,53.18728957883],[-127.01341187240698,53.1871622725484],[-127.0136722155029,53.187073210521284],[-127.01394511124421,53.18699916270616],[-127.01422285909624,53.18693235146555],[-127.01447839802543,53.18683884676964],[-127.01471574649293,53.186729245627404],[-127.01491161855397,53.18657069742541],[-127.01512002423641,53.18646638120904],[-127.01540475155966,53.18641687954231],[-127.01569520230377,53.18645024509753],[-127.01598669703229,53.18640964798977],[-127.01622789564762,53.186304492711386],[-127.01635903175206,53.18614425644229],[-127.0162598744256,53.18595742798318],[-127.01626729956689,53.185798253216035],[-127.01655936173448,53.18562543070506],[-127.01667667145117,53.18547539717591],[-127.01676474664856,53.18531777098419],[-127.01680419781668,53.1851258266377],[-127.01654640559741,53.184969484203584],[-127.0163181462022,53.184832501037675],[-127.01630043628748,53.184680264862145],[-127.01627169717412,53.1844984345131],[-127.01635340593678,53.184349262446986],[-127.01635940302693,53.184169374990184],[-127.01631107033032,53.18399163001994],[-127.01626836237972,53.183813272017645],[-127.01627437167,53.183634504912355],[-127.0163207391744,53.18345762350055],[-127.01635489071695,53.18327917061541],[-127.01638997160983,53.18310070972484],[-127.01644947145158,53.182924280230026],[-127.01641519086151,53.18274585881522],[-127.01640338796437,53.18256667973202],[-127.01641782451748,53.182387275431985],[-127.01643317700314,53.182207298517234],[-127.01643636796709,53.18202799069554],[-127.01643299329852,53.181848183438525],[-127.01643522607206,53.18166831907224],[-127.01646279514392,53.181489366693185],[-127.01648285365222,53.18130991402062],[-127.01647573026095,53.181130129906144],[-127.0164779630302,53.18095027443107],[-127.01649052454798,53.18077088605146],[-127.01651716300275,53.18059193258944],[-127.01651752141576,53.180412093148426],[-127.01651320174746,53.18023228488182],[-127.01652763703856,53.180052880340945],[-127.01658439571972,53.179879279716864],[-127.01682365458298,53.1797730186679],[-127.0170762598512,53.17967616229657],[-127.01730211483768,53.179558254555154],[-127.01747194733308,53.17941056513997],[-127.01753429663736,53.179235795419224],[-127.01749160027639,53.179058557799564],[-127.0173435110729,53.17890240369138],[-127.01712405916894,53.178779348048934],[-127.01688067490517,53.178674990331366],[-127.0166936509749,53.17853653309066],[-127.01662381958477,53.17836065756724],[-127.01659702460377,53.17818160678797],[-127.01659832696033,53.17800175004021],[-127.0166052649815,53.17782240962679],[-127.01662064357095,53.177642996730775],[-127.01664444762902,53.17746351147743],[-127.01667106857427,53.177284566749904],[-127.01670145208159,53.177105580727485],[-127.01672152106595,53.17692669220529],[-127.01671438240663,53.1767469078054],[-127.0166913226771,53.17656726905275],[-127.01664489958335,53.176390062922074],[-127.01656949030045,53.17621591136109],[-127.01647728339516,53.17604470968742],[-127.0163822855054,53.1758746434318],[-127.01627143472308,53.1757075189011],[-127.01612802718526,53.1755502024392],[-127.01596322418354,53.17539978345431],[-127.01578729992826,53.175254506406894],[-127.01560117038264,53.175113798657165],[-127.01539839357281,53.1749816416577],[-127.01519189543075,53.17485119249658],[-127.01499838296571,53.17471446439237],[-127.01483174041978,53.17456518906649],[-127.01470786257185,53.174401536207974],[-127.01462500946981,53.17422912338936],[-127.01457856928015,53.17405136069403],[-127.01456397328452,53.17387220460099],[-127.01458309181108,53.17369275959892],[-127.0145722302928,53.17351301570055],[-127.0145473208994,53.17333394792824],[-127.0145167902233,53.173154928300754],[-127.01451715685843,53.1729750791755],[-127.01457291617737,53.17279924638307],[-127.01470493424162,53.172637882398405],[-127.01488988630899,53.172496233668404],[-127.01501217041695,53.17231982138778],[-127.01508035408848,53.17215452210466],[-127.01510837949209,53.171994613843765],[-127.01499010254796,53.17182979257723],[-127.01479196636213,53.17169534468954],[-127.01456979503546,53.17157455750438],[-127.0143365701754,53.17146169920148],[-127.0141383170958,53.17132221341955],[-127.01399518722356,53.17117553216719],[-127.01379134223164,53.17103721420411],[-127.01364329474528,53.17088105478652],[-127.01349338793361,53.170725466868674],[-127.01334718931642,53.17056816177299],[-127.01318614971473,53.1704171507812],[-127.0130130186488,53.170270169290916],[-127.01279371802758,53.1701510305058],[-127.01251298244199,53.17008844219306],[-127.01225042195354,53.17000216713304],[-127.01202828005401,53.16988193072654],[-127.01183571658929,53.169744633480015],[-127.0116375869027,53.169609624501845],[-127.01141821155052,53.16948767807165],[-127.0112163906021,53.169354940944494],[-127.01105721011436,53.16920279067265],[-127.01093802741629,53.169037973043935],[-127.0108793837119,53.168858071762216],[-127.01077885726069,53.16869029786424],[-127.01070874545384,53.16850096557105],[-127.01053868947919,53.168364038784325],[-127.0104390696288,53.16819457158871],[-127.01035717709712,53.16802159148064],[-127.010293023439,53.167846218905815],[-127.0102213892147,53.167671465890926],[-127.01014230146396,53.167498461666916],[-127.01002963715291,53.167331911138625],[-127.00988439241866,53.167174593547145],[-127.00977080069819,53.16700805067037],[-127.00969077175773,53.16683505413627],[-127.00960143070704,53.166663813237484],[-127.00949808500006,53.166494941671004],[-127.00938821523224,53.166327801917504],[-127.00927836132023,53.16616066191904],[-127.00916661977143,53.16599353790229],[-127.00902513159728,53.16583563141067],[-127.00884275954981,53.165692639809826],[-127.00864192225443,53.16556044563257],[-127.00843826869587,53.1654282840707],[-127.00823278284315,53.16529781405003],[-127.008017120016,53.16517303288899],[-127.00782867124309,53.16504969593569],[-127.00756227128036,53.16495784072102],[-127.00729546319762,53.164887842834865],[-127.00706504759044,53.164811923239945],[-127.00672962582065,53.16473297895236],[-127.00650815025347,53.16459984514809],[-127.0063928782988,53.164440592094856],[-127.00626720247183,53.16427750109052],[-127.0061322271191,53.16411729474819],[-127.00597308459997,53.163965137205295],[-127.00579259113849,53.16382156917723],[-127.00557233340486,53.16369961942487],[-127.00531221860342,53.163595380174556],[-127.00506479352993,53.163512887072045],[-127.00480869206116,53.16342037353838],[-127.0045325578022,53.16335156916315],[-127.00424916824338,53.16329346607801],[-127.0039766494479,53.163219018222065],[-127.00375546928052,53.163097637681346],[-127.003581963343,53.16301058840732],[-127.00327519400695,53.16291458383509],[-127.00303549785566,53.162801767210276],[-127.00280297617884,53.162675998960275],[-127.00264763747037,53.162525481034926],[-127.00258296635612,53.16236579564293],[-127.0025632041849,53.16212505300095],[-127.002393772944,53.161972422021016],[-127.00244436696028,53.161933331422084],[-127.00246953497772,53.161848524109146],[-127.00234883878383,53.161657373933096],[-127.00228751727401,53.16148141701594],[-127.00224115785986,53.161303648118434],[-127.00222285687651,53.16112452110785],[-127.00219333126198,53.160945489115655],[-127.00219375014365,53.160765638829936],[-127.00227173215882,53.16057729715624],[-127.00224136868165,53.16040275426966],[-127.00203875686344,53.160272804945926],[-127.00188803916731,53.1601194500027],[-127.00179219333732,53.15994882276646],[-127.00170663210625,53.15977698789232],[-127.00157911515106,53.15961391630969],[-127.0014092981632,53.15944503516628],[-127.00141183392466,53.159274695698365],[-127.00148326607719,53.15908696558643],[-127.00165976788153,53.15894484310749],[-127.00175410274184,53.15877429140583],[-127.00181740227953,53.15859895550337],[-127.00181872716004,53.15841742104325],[-127.00188397860836,53.15824543008486],[-127.00194914998576,53.15807007820511],[-127.0019365372934,53.157893699504356],[-127.00189224201692,53.15772375629263],[-127.00175892553573,53.15755289025773],[-127.00165190021899,53.15738459837118],[-127.00154015893168,53.15721522577192],[-127.00162427341017,53.15704867778798],[-127.0017393142776,53.156882423747426],[-127.00179038869672,53.156705514834364],[-127.00182839227034,53.15652982807042],[-127.00183811195171,53.156347101827684],[-127.00188542761775,53.1561691041144],[-127.00205429102195,53.15602144278818],[-127.00220326569043,53.15590421250192],[-127.00226872039775,53.15582017532297],[-127.00214595105547,53.155738861517335],[-127.00193634682093,53.15562914036701],[-127.00180437656086,53.15547562635584],[-127.00188425012045,53.15528838882642],[-127.00190446404602,53.15511341722232],[-127.00174927858724,53.154928160459875],[-127.00148369747399,53.15486765922545],[-127.0011753688071,53.154821529961346],[-127.00088759088534,53.154772976105484],[-127.00059537520436,53.15473510845709],[-127.00030316190208,53.15469668429486],[-127.00000131758074,53.15464769141089],[-126.99948046376124,53.15448681070964],[-126.99922166683396,53.154395993214386],[-126.99898953482435,53.1542836602787],[-126.99875461348556,53.15417247094664],[-126.99848670616142,53.15409237812437],[-126.99824540914284,53.153989085192016],[-126.99802246202567,53.15386882928988],[-126.99783556962505,53.153728655470964],[-126.99761635600437,53.15360836732895],[-126.99735030098239,53.153527135827446],[-126.99708970737404,53.15343912565958],[-126.9968401021562,53.15334038194724],[-126.9965959851279,53.15323598891669],[-126.99634363304679,53.153139508329474],[-126.99610965398566,53.153028305856374],[-126.99589041117702,53.1529057737567],[-126.99566104540075,53.152791170033254],[-126.99544272102857,53.15266807360641],[-126.99525675837752,53.1525273321424],[-126.99508748392132,53.15237860645085],[-126.99486921577832,53.15225774056536],[-126.9946196096497,53.15215843643942],[-126.99436999143191,53.15205856715292],[-126.99415171394001,53.151937144256486],[-126.99394353378942,53.15180722779899],[-126.99370773677813,53.15169715639573],[-126.9934326127122,53.15162775325696],[-126.99313705873105,53.15156580877483],[-126.99287961625247,53.15149177390643],[-126.99301073289237,53.15133156044704],[-126.99307027225862,53.15115457501147],[-126.9930689114324,53.15097642430682],[-126.99303379806297,53.15079743630723],[-126.99301180986697,53.15061833814489],[-126.99298886491779,53.15043869221431],[-126.99300340274701,53.15025984329084],[-126.99305544957413,53.15008292958234],[-126.99308122386218,53.14990398631553],[-126.99306951582012,53.14972424602866],[-126.9930512191226,53.149543431533466],[-126.9931127732063,53.149372596300566],[-126.99328915770727,53.14922601331769],[-126.99349304518246,53.149093756913274],[-126.99370074101824,53.14896483867428],[-126.9939027401456,53.14883204160395],[-126.99408293081676,53.148688222196675],[-126.99421402096732,53.1485274425264],[-126.9942895149918,53.148352572077705],[-126.99429376732682,53.14817437390385],[-126.9942044998776,53.14800256409147],[-126.99413208934358,53.147830047839925],[-126.99412691115474,53.14764968781747],[-126.99416112734157,53.14747123784194],[-126.99423946253721,53.14729746395748],[-126.99433285729084,53.14712691604474],[-126.99442812418224,53.14695636126647],[-126.99452810385547,53.14678744307558],[-126.99463089921858,53.14661850110951],[-126.99473652329013,53.14645009102908],[-126.99485344660363,53.14628495635418],[-126.99497695685507,53.1461208777084],[-126.9950938933032,53.14595574263987],[-126.99518352334417,53.145784669758186],[-126.99523742797354,53.14560772994046],[-126.9952772406856,53.145429232313916],[-126.99531332283534,53.14525076603474],[-126.99534001366092,53.14507182294761],[-126.99536014442276,53.14489237027819],[-126.99537934621434,53.14471292540108],[-126.99539760406688,53.14453348844278],[-126.99541491799245,53.144354059403696],[-126.99543224675175,53.14417463021828],[-126.99546551086695,53.14399618746279],[-126.99552317039546,53.14381978046177],[-126.99557145350737,53.14364288756559],[-126.99558313569577,53.14346295001317],[-126.9955705031108,53.14328377281795],[-126.99553913056478,53.14310475328835],[-126.99550207676054,53.14292241997067],[-126.99538995647389,53.142773769108956],[-126.99509363602537,53.14271687402145],[-126.99481767884615,53.14264916650167],[-126.99453428328937,53.14258431769241],[-126.99428245953153,53.14250743292893],[-126.99427434862706,53.14232149441675],[-126.99427575792971,53.14214219901431],[-126.9942808990929,53.14196231645283],[-126.9942635838475,53.14178317837153],[-126.99424905666822,53.141603452097975],[-126.99423641723705,53.141423718906054],[-126.99421161269174,53.141244643703935],[-126.99415501657045,53.14106751193014],[-126.99411432914042,53.14089025540613],[-126.99411665646863,53.140709831631575],[-126.99417901693775,53.14053450599638],[-126.99427517375031,53.140362257854015],[-126.9943300698314,53.140188115350625],[-126.99430245128941,53.14000849895436],[-126.99425985234171,53.139829573177224],[-126.9942088488925,53.13965128274312],[-126.99418501546202,53.13947331973204],[-126.9942117204571,53.139294931997114],[-126.99425527794831,53.13911583786192],[-126.99428947172227,53.138937387132025],[-126.99432273653882,53.138758944179926],[-126.9943456845632,53.13857946738753],[-126.99434988135721,53.138399592399054],[-126.99436721219199,53.1382201627775],[-126.99441542809919,53.138040473525706],[-126.99444027198915,53.13786265700594],[-126.99438375854292,53.13768889488372],[-126.99427769048698,53.137517781309896],[-126.99421834904356,53.13734347810868],[-126.99422536211475,53.1371635793359],[-126.9941828339215,53.13698689373159],[-126.99418235795049,53.13680704890041],[-126.99415285524883,53.136627456954734],[-126.99417303961566,53.136450244256785],[-126.99425411737872,53.13627419606487],[-126.99426220325766,53.13610044657473],[-126.99411893267121,53.13593973912202],[-126.99393955542025,53.13579669854512],[-126.99374809460552,53.13565767656449],[-126.99355757883347,53.13551865530071],[-126.99338467327738,53.13537163319943],[-126.99321454361669,53.13522347597438],[-126.99298991422314,53.1351071417778],[-126.99275143641941,53.13499877602757],[-126.99256834973077,53.134856885026196],[-126.99236207998142,53.13472415243932],[-126.99221157995458,53.134574699603],[-126.99212422369553,53.13440231542546],[-126.99205082262195,53.134226443593555],[-126.99197177980325,53.134049507452744],[-126.99195922902577,53.13387368998241],[-126.99203655385571,53.13369711878404],[-126.99217892985125,53.13354017138549],[-126.99242057887066,53.13342497098816],[-126.99259146668524,53.13328626805655],[-126.9926557095835,53.13311092666649],[-126.99270105885009,53.132929020616444],[-126.99279632663908,53.1327595861163],[-126.99295932845513,53.132604140838346],[-126.99317273376212,53.132481896922215],[-126.99344721002956,53.13240955450401],[-126.99374006858041,53.13236227337439],[-126.99404291756112,53.132341800236716],[-126.99430828312822,53.13227962607906],[-126.99451868306556,53.13214955226529],[-126.99474624577518,53.13203278903175],[-126.9949557522715,53.13190496297233],[-126.9951500860853,53.13176830890736],[-126.99532168948589,53.13162119626616],[-126.99548385445067,53.131470236455094],[-126.99565451391896,53.13132257544845],[-126.99584694257672,53.13118537144284],[-126.99606593505821,53.131062510293425],[-126.99630685472566,53.130956827753046],[-126.99657940436607,53.13088281779318],[-126.99685389271838,53.130811031915016],[-126.99713421837225,53.130749280949814],[-126.99742339654182,53.13070538314309],[-126.99772165194027,53.130688865527446],[-126.99802014275403,53.130682985726764],[-126.99831753328526,53.130669826529505],[-126.99860076382537,53.13061197387865],[-126.99886753455688,53.13053071943864],[-126.99913237781439,53.1304478043525],[-126.99940881025441,53.13037935763813],[-126.99970197868322,53.13034607002004],[-127.00000079725996,53.1303541845816],[-127.00023716470962,53.13037347605299],[-127.00053360670583,53.130399546829004],[-127.00083467229491,53.13038355334468],[-127.00104522808398,53.130261309936124],[-127.00118564761993,53.130102691261776],[-127.00134211714214,53.1299495302132],[-127.00151841879173,53.12980405369348],[-127.00172407053837,53.12967288626729],[-127.0019975857493,53.129600540722706],[-127.00221653884479,53.12947710344351],[-127.00221047953039,53.129300110728494],[-127.00227749027854,53.12912530463168],[-127.00241413095362,53.12896558685328],[-127.00250181047147,53.128793967007056],[-127.00259980335535,53.128623371217024],[-127.00279223875415,53.128487275888304],[-127.00303213074926,53.12837935584464],[-127.00327206281473,53.1282725465264],[-127.00348627853779,53.128147470583556],[-127.00368434938619,53.12801301119265],[-127.00386348988313,53.12786918311093],[-127.00405870466815,53.12773249726131],[-127.00425865675183,53.12759857665972],[-127.00439622864131,53.12743885740759],[-127.00441821103334,53.12726050585238],[-127.00441486336975,53.127080128325325],[-127.00449118051183,53.12690355633198],[-127.00477081963965,53.126853553778275],[-127.0050691779409,53.1268426191433],[-127.00536032822598,53.126883280640634],[-127.00565058908438,53.12692619902081],[-127.00594922686214,53.126927020921315],[-127.00624774324618,53.12692336096286],[-127.0065448950457,53.12694043727069],[-127.00684292245904,53.12695527327459],[-127.00714173191034,53.126963934447154],[-127.00744035655669,53.126964187947536],[-127.00773415048498,53.12699810686196],[-127.00799368838686,53.12708665846726],[-127.00821098745209,53.12721030616256],[-127.00851325916015,53.12728504592341],[-127.00872166915971,53.127192505273214],[-127.00897814628968,53.12707378188156],[-127.00926100844721,53.127041669746184],[-127.00955311084907,53.127003884344084],[-127.00985164070764,53.12700077096255],[-127.01014962952956,53.12701391369195],[-127.01044683718766,53.12703322977256],[-127.01074482642248,53.12704637100222],[-127.01104276237288,53.1270572708672],[-127.01134155992321,53.12706535679433],[-127.01164027904244,53.127069525246085],[-127.01193649601197,53.12704794203244],[-127.01223362929677,53.12702522969596],[-127.01253163252348,53.1270389310586],[-127.01283032479154,53.127041976198164],[-127.01312763158136,53.127026539127094],[-127.01341674096837,53.12698148182497],[-127.0137038306333,53.12693028265456],[-127.01396575502194,53.12684455294557],[-127.01419798805094,53.1267310728157],[-127.01435344140641,53.12657734668783],[-127.0145136341841,53.12642582075111],[-127.01462571290014,53.126259019843246],[-127.0146976522386,53.12605782655301],[-127.01484251488735,53.12593108344172],[-127.0150121410064,53.1257833931891],[-127.0151458961658,53.125622573095],[-127.01522223296642,53.125448790322054],[-127.0152778999713,53.12527183227681],[-127.01536363450546,53.125099653978914],[-127.01548418854236,53.12493557617164],[-127.01561888091241,53.12477530316741],[-127.01572436732735,53.12460688127816],[-127.01581478372768,53.12443521813762],[-127.01590711311364,53.12426466797476],[-127.01603141953284,53.12410112201165],[-127.0161510264763,53.123936495736224],[-127.01625932199887,53.12376860490464],[-127.01642043900604,53.12361762384268],[-127.01660424304418,53.123475976577986],[-127.01675496393099,53.12332061119214],[-127.016866082315,53.123153815982086],[-127.0169320810129,53.12297844433376],[-127.01693525185406,53.12279856600998],[-127.01692250683534,53.122618833497555],[-127.01696118407718,53.12243640872279],[-127.01693431490176,53.122291534370554],[-127.0169478413807,53.122075153858844],[-127.01696790993515,53.121897371207325],[-127.01696374231099,53.12172372333414],[-127.01693314519748,53.12150211949795],[-127.01700488795021,53.121371519841034],[-127.01719531882854,53.12123317600803],[-127.01741515315133,53.121111386981],[-127.01764354866592,53.12099569130794],[-127.01788243193577,53.12088773972207],[-127.01813468398208,53.12079088690818],[-127.01840812719652,53.12071905873301],[-127.01868835606733,53.12065669157741],[-127.01895789282885,53.12057817251473],[-127.01922745553844,53.12050077314348],[-127.0195028204346,53.12043116691302],[-127.01977333643617,53.120354878597304],[-127.02004289623599,53.12027747735763],[-127.02031440746471,53.120203420279395],[-127.02059169409301,53.12013603597231],[-127.020870932291,53.12007199578291],[-127.02114048828663,53.11999459202907],[-127.02135936320214,53.11987224792837],[-127.02156870228129,53.119743253566135],[-127.02179804931318,53.119628661941604],[-127.02203788452847,53.11952181403816],[-127.02230163134112,53.119436613975175],[-127.02260001243542,53.11942955180298],[-127.02288757521085,53.11947805381664],[-127.02313957219927,53.1195649523675],[-127.02346763660904,53.119507771494376],[-127.02371604336226,53.11940756920741],[-127.02394536912722,53.119292408761154],[-127.02415471111692,53.119163974415024],[-127.02430350390439,53.11900805060815],[-127.02443531602164,53.11884723574108],[-127.02463421990537,53.11871272344027],[-127.02486640821263,53.11859977739193],[-127.02510237733259,53.11848903918085],[-127.0252814185342,53.11834574253683],[-127.02543868576831,53.11819254056675],[-127.0255215366824,53.11801982296008],[-127.02554434134731,53.117840338057135],[-127.02559339774832,53.117663422315026],[-127.02565169558305,53.11759736926508],[-127.02576579517853,53.11751682081771],[-127.02604988407147,53.11746056982183],[-127.02634494899766,53.11743279227837],[-127.02648534756923,53.11739516030167],[-127.02657913149427,53.117325992856216],[-127.0266018770275,53.117144267060304],[-127.0266125054369,53.11696488753658],[-127.02666529903415,53.116787938767416],[-127.02676600872263,53.11661842665506],[-127.02683852555356,53.11644411233734],[-127.02687726306323,53.11626616493062],[-127.02691601392985,53.11608878212975],[-127.02698484292965,53.11599405845661],[-127.02711399620046,53.11595540278386],[-127.02738931860985,53.115885778012824],[-127.02761113018117,53.11577067527015],[-127.02782600317424,53.11563994476008],[-127.02808300913385,53.1155480666248],[-127.0283573298122,53.115476207163944],[-127.02861591438034,53.115411207236136],[-127.02892644144917,53.11536535981425],[-127.02922258151686,53.11534429780434],[-127.0295059774626,53.115337348371845],[-127.02981655367373,53.115332402621284],[-127.03011512247039,53.11533428395082],[-127.03041391044924,53.115344562238626],[-127.03070847633245,53.11537393484641],[-127.03100354673056,53.11542402796747],[-127.03133057691356,53.11551866348242],[-127.03144633040178,53.11535293328594],[-127.03153480708713,53.115181273435525],[-127.03158570687629,53.11500434758094],[-127.03155328852921,53.11482589857179],[-127.03144069362544,53.11465991923743],[-127.0312834899331,53.114506654920284],[-127.03106711682797,53.11438304064683],[-127.03081215781962,53.114288896644155],[-127.0306004454847,53.1141641203403],[-127.03044603248954,53.1140102747919],[-127.03031577036185,53.113848365780065],[-127.03021992845657,53.113678321826924],[-127.03014644616053,53.113504156568084],[-127.03000689754069,53.11334568975186],[-127.02982933876947,53.11320156519277],[-127.0295973377761,53.11308873405092],[-127.02933782675217,53.112999664523855],[-127.02908931415455,53.112900422728615],[-127.02886850133687,53.11278636327146],[-127.02876514214242,53.11261469822218],[-127.02858957055564,53.11247503670835],[-127.02835013295187,53.11236394417612],[-127.02812457325635,53.11224657194384],[-127.02790175945879,53.11212692534907],[-127.02767250065871,53.11201126076252],[-127.02742672894519,53.11190918582315],[-127.02716448503634,53.11182238538074],[-127.02689497469146,53.11174460290251],[-127.02664282782936,53.111649305013884],[-127.02643477333578,53.111520572085055],[-127.02629058854279,53.11136270589135],[-127.02614364625327,53.11120653979226],[-127.0259305861433,53.11106383807989],[-127.025768236305,53.11092853985004],[-127.02568729279471,53.11075443648838],[-127.02571479012755,53.110576030615924],[-127.02562920316679,53.110403652780946],[-127.0255529597723,53.110230064306144],[-127.0254841592955,53.11005529962389],[-127.02542188815384,53.10987934874153],[-127.02537363079267,53.10970216468144],[-127.02531228865162,53.10952620565714],[-127.02531536340352,53.10930487488801],[-127.02550882928325,53.10921859079532],[-127.02580277382596,53.109185229914445],[-127.02609473690812,53.10914795908893],[-127.02637779916651,53.10909059491059],[-127.02663860540223,53.109002603708504],[-127.02691875709688,53.10894134604715],[-127.02717476774995,53.10884891309248],[-127.02740307183466,53.10873263300631],[-127.02758393352569,53.108589871636376],[-127.02769591364917,53.10842305667703],[-127.0277515333862,53.10824721138814],[-127.027724722031,53.10806759153867],[-127.02768018529932,53.10788981106978],[-127.02770578798058,53.10771086503482],[-127.02771265381281,53.10753095235189],[-127.02773731319796,53.10735201447153],[-127.02771424428805,53.107172361997854],[-127.02772767932595,53.10699295690501],[-127.02772051945384,53.106813730843044],[-127.0277761098133,53.10663676506705],[-127.02777465888853,53.10646085099159],[-127.02786841292316,53.10631436401987],[-127.02782400390558,53.10610352155022],[-127.02779817608837,53.10592614302715],[-127.0278209509174,53.1057460918249],[-127.02782123357751,53.10556512458136],[-127.02780387295815,53.10538934873289],[-127.02784819530862,53.105210795423844],[-127.02775617856727,53.105042947783225],[-127.02758234952603,53.10489654600991],[-127.02738541566005,53.10476155032888],[-127.02718015210034,53.10463055312246],[-127.02696382768843,53.10450636601302],[-127.02669967833029,53.10441621947834],[-127.02645041477035,53.104322572472114],[-127.0263508954764,53.104153677278994],[-127.0261734282051,53.1040112224793],[-127.02597556007285,53.103876232567565],[-127.02577677744762,53.10374237081485],[-127.02556783649442,53.1036136438392],[-127.0253718292358,53.103478072014816],[-127.02517212249602,53.10334421726437],[-127.02495951147942,53.103218317950024],[-127.0247644374091,53.10308218123443],[-127.02454261067534,53.10296196383896],[-127.02432630272035,53.10283778074859],[-127.02410170544194,53.10271926288903],[-127.0239018168738,53.10257756369971],[-127.02367611855595,53.10245177545643],[-127.02349346124402,53.10232617885722],[-127.0233094849182,53.10218434088186],[-127.02310054550821,53.10205504479075],[-127.02291566929182,53.10191489034044],[-127.02278820414728,53.101750151394526],[-127.02278196842138,53.10156924034585],[-127.02283073381629,53.10138056524612],[-127.02281903457427,53.10120586000696],[-127.0226826511457,53.10105912694967],[-127.02249603171973,53.100924033874236],[-127.02227963188069,53.10079535664971],[-127.02205114940872,53.100669589381326],[-127.02182823818194,53.10054265295421],[-127.02161562414705,53.10041562710516],[-127.02136535976902,53.10031750486199],[-127.02108328428314,53.100258311569696],[-127.02078799520532,53.10023340416291],[-127.020485562842,53.100222013315175],[-127.02024621736396,53.1001893424046],[-127.02013408226378,53.09999981603925],[-127.0201559706382,53.09982089417114],[-127.0201993901903,53.09964291594875],[-127.02023251512544,53.09946446179401],[-127.02023848353421,53.099284556717],[-127.02019491521487,53.09910676453853],[-127.02005638056424,53.098947720875216],[-127.01994385946685,53.09878117342919],[-127.01987044520143,53.09860700032243],[-127.01982687912161,53.098429207940065],[-127.01971714501803,53.09826207144025],[-127.019523954156,53.09812478923337],[-127.01931137250855,53.09799831474615],[-127.01914873036823,53.09784788654423],[-127.01898699000589,53.09769632082051],[-127.0188012052771,53.09755561190808],[-127.01869613424408,53.09738731367862],[-127.01854462517045,53.09723286224209],[-127.01832559107937,53.09711036801858],[-127.01820658277182,53.096945551094535],[-127.01817237764558,53.09676767736029],[-127.01795702079244,53.09664235386296],[-127.01776015590958,53.096507341518134],[-127.01759472519234,53.09635749095803],[-127.01753065002829,53.0961821153078],[-127.01749550707449,53.096003684644664],[-127.01749493289822,53.095823844743215],[-127.01749622891639,53.095643979757234],[-127.01742841444405,53.09546863618787],[-127.01736713941328,53.095293236271125],[-127.01734133645806,53.09511416928241],[-127.01734637406788,53.09493428098588],[-127.01733737619753,53.0947545045318],[-127.017301292795,53.09457609074399],[-127.01742081152727,53.094411460446985],[-127.01763007874283,53.09428359140286],[-127.01788121689584,53.094186181150036],[-127.01812568069623,53.094083225061034],[-127.0182395436058,53.09391696622271],[-127.01826329380994,53.09373747229115],[-127.01828050520109,53.09355803467852],[-127.0182836681223,53.09337815333664],[-127.01826906927876,53.093198989787666],[-127.01827223243691,53.093019117372066],[-127.01827820825508,53.092839211736866],[-127.01825707114666,53.09266010447306],[-127.0181334060076,53.0924958920577],[-127.01791812453742,53.09237279987746],[-127.01768540725003,53.09226331313754],[-127.01738433631635,53.09226758193498],[-127.01709084257996,53.09223649162878],[-127.01679559838186,53.092211018452325],[-127.01649643837624,53.09221695386809],[-127.016212674248,53.09216281072459],[-127.0159496879238,53.092077668427514],[-127.01568580019799,53.09199420965358],[-127.0154209576028,53.0919102027034],[-127.01516892764313,53.09181375894962],[-127.01493614007622,53.09170090577634],[-127.01476799385287,53.09155331553837],[-127.01461927745949,53.091397149558325],[-127.01448635944305,53.091236374485526],[-127.01436551233724,53.09107156920065],[-127.01422609651017,53.0909130817542],[-127.01410246536388,53.09074942064132],[-127.01399928673675,53.0905805458535],[-127.0139473584983,53.09040337833146],[-127.01388890462928,53.09022739628832],[-127.01376899031979,53.09006258233992],[-127.01362958003904,53.089904094098806],[-127.01344383394277,53.089762820459796],[-127.01326087332258,53.08962095788047],[-127.01310938502499,53.089465378466045],[-127.0128867600459,53.089346822366544],[-127.01262468542193,53.08925998856858],[-127.0123553718811,53.0891832922867],[-127.01209787517672,53.08909193586992],[-127.01188444515151,53.08896657578107],[-127.01165997128274,53.088848042186136],[-127.01145576068089,53.088716999593714],[-127.01127558387807,53.088573433764594],[-127.01110836364583,53.08842470978749],[-127.01096154349466,53.088267967111825],[-127.0108212220476,53.088109483332154],[-127.01065393859558,53.08795796232485],[-127.01062361931088,53.08778453483556],[-127.01050846060292,53.087621917962124],[-127.01042945412024,53.087446100889416],[-127.01021527010893,53.087327476555814],[-127.00993332326595,53.08726937655169],[-127.00966674478572,53.087189289146394],[-127.00944907737829,53.08708133404349],[-127.00945040746488,53.086901477216195],[-127.00948451016373,53.08672301673281],[-127.00952793420616,53.08654391181373],[-127.00945833733694,53.08637026372394],[-127.00929020464756,53.08622154491179],[-127.00912858547328,53.086071084903374],[-127.00898547912976,53.08591318741442],[-127.00887210858266,53.08574663611811],[-127.0087792001946,53.08557598355421],[-127.00865186571072,53.085412348173925],[-127.00862428890262,53.085235534909145],[-127.00864620499621,53.08505605798916],[-127.00868686009777,53.084878097424834],[-127.0087593837447,53.0847032353853],[-127.00886198516507,53.08453483085725],[-127.0089843191782,53.084370748914914],[-127.00913584305019,53.08421481723994],[-127.0093736534473,53.08410857350386],[-127.00965558866493,53.08404957161882],[-127.00994341473583,53.084001733285135],[-127.01023520494367,53.08396393644577],[-127.01053098983037,53.08393619874143],[-127.0108148857421,53.08388110374227],[-127.01106121713762,53.08377982168528],[-127.01128468159973,53.083660814790456],[-127.01149581086354,53.08353406015562],[-127.011701220876,53.08340343660971],[-127.01190948209634,53.08327447359288],[-127.01210637576749,53.08313943998992],[-127.01232601378724,53.08301709315279],[-127.01259154342901,53.08293694295337],[-127.01286280188451,53.08286178108619],[-127.01314086542878,53.082797201102935],[-127.01342473704904,53.08274154411128],[-127.01371054605765,53.08268810196972],[-127.01399441620022,53.08263244360586],[-127.01427438664237,53.0825695298811],[-127.01452165639135,53.082469352906266],[-127.01472708039684,53.082339288540695],[-127.01493437129454,53.082209763559575],[-127.01518548592561,53.08211347857186],[-127.01540609081655,53.0819933586371],[-127.01562952015533,53.081873778755174],[-127.01581315946784,53.08173269402753],[-127.01598544444818,53.081586094847324],[-127.01615581830481,53.081437835465486],[-127.01633092657069,53.08129177621729],[-127.01643628706111,53.081123349684255],[-127.0163993182772,53.080946053588406],[-127.01643808069385,53.08076867067616],[-127.01655472492922,53.08060294382094],[-127.0166591418976,53.080433960354114],[-127.01666891615925,53.080256270963105],[-127.01666086661177,53.08007648484586],[-127.01664252646022,53.07989679623338],[-127.01666349181619,53.07971788094808],[-127.01665170321911,53.079538135918646],[-127.01667632574951,53.07935639218384],[-127.01692428440887,53.079285338601146],[-127.01720703452048,53.0793400531964],[-127.01750509562281,53.07933076291907],[-127.01771154349733,53.07920572217348],[-127.01785077583314,53.07904652261711],[-127.01793359614209,53.07887380637098],[-127.01795264404612,53.07869378665587],[-127.01786533848147,53.07852309208884],[-127.01777519479602,53.07835130133123],[-127.01764694542672,53.078189368075456],[-127.0175112736864,53.0780291749764],[-127.01743136750216,53.07785561041346],[-127.01729201215379,53.077697689910835],[-127.01714147897592,53.07754210662179],[-127.01700768081405,53.07738189678686],[-127.0168868619603,53.07721765755742],[-127.01681909278335,53.07704286748566],[-127.01674945480258,53.07686810241207],[-127.01663980355356,53.07670096087544],[-127.01654873976022,53.07652973279988],[-127.01664121690321,53.07636981616988],[-127.01670918630201,53.07620226640681],[-127.01675169570235,53.076025415378204],[-127.01676140131977,53.075844920205085],[-127.01668432761532,53.07567189536775],[-127.01652826231174,53.07551915575407],[-127.01640285132237,53.07535775237608],[-127.01627740113433,53.07519467282347],[-127.01617425146567,53.0750257894736],[-127.01603489678294,53.07486731154426],[-127.01586585771582,53.07471916490507],[-127.01567555644057,53.07458073017547],[-127.01547601632814,53.07444685684486],[-127.01530051238217,53.074301570877715],[-127.01515002702585,53.074146549271276],[-127.01502926467995,53.073983983865936],[-127.01478829078289,53.073876238527724],[-127.01489515322837,53.07377110737512],[-127.01499704466839,53.07361390783435],[-127.0150114232874,53.073433372459306],[-127.01518091956244,53.073289047560074],[-127.01542981838797,53.07314178970225],[-127.01542830336574,53.07307849496716],[-127.0150873404139,53.07312904546167],[-127.01479241545405,53.07315007357024],[-127.01450072423603,53.07311055339791],[-127.01421980673281,53.073053019837296],[-127.01401199395642,53.072924253136954],[-127.01389768271494,53.07275714886353],[-127.01379269254944,53.072588843896796],[-127.01358330693493,53.07247298098331],[-127.01328008806975,53.07249855881179],[-127.0129843847212,53.07252630357968],[-127.01268854014359,53.07250867019542],[-127.0124031100423,53.07245732969478],[-127.01212217446404,53.07239810600272],[-127.0118261440928,53.07237262806794],[-127.01153011407712,53.07234714939075],[-127.01124471316979,53.072296926427825],[-127.01098913560901,53.07220386584322],[-127.01075096542,53.072095532532224],[-127.0105192265058,53.07198209667348],[-127.01029667382451,53.07186241416861],[-127.01005943603137,53.07175350673074],[-127.00979296824312,53.0716739835525],[-127.0095346678326,53.07158374903392],[-127.00927262962145,53.07149353693042],[-127.00900873661494,53.07140390486329],[-127.00880297712084,53.07128184392695],[-127.0086608640135,53.07112393666279],[-127.00853536278048,53.0709569228116],[-127.00839416551553,53.07079844262692],[-127.00824184851307,53.070643427869065],[-127.00807840814363,53.07049298116913],[-127.00786972445076,53.070365896512],[-127.00763797607809,53.07025133454438],[-127.00740712951907,53.070135643862415],[-127.00722620959905,53.069996559746215],[-127.00716123499082,53.06981949887594],[-127.00698116615834,53.06967648063922],[-127.00682885657919,53.069522019777715],[-127.00669789246396,53.06936065334808],[-127.00656971410632,53.06919814245355],[-127.00644804500232,53.06903445537231],[-127.00627627967312,53.06888688299994],[-127.00610083022762,53.06874158290242],[-127.00593834707328,53.06859113401434],[-127.0057851312315,53.06843723529869],[-127.00567368736179,53.06827121916856],[-127.00548806245776,53.068129931278335],[-127.00530243700317,53.067989198903724],[-127.00512052618387,53.06784674928252],[-127.00491183782957,53.06771853886058],[-127.00465086675395,53.067632798762176],[-127.00435919639239,53.06759213307567],[-127.00405955877082,53.06757059309138],[-127.00379760899655,53.067522394110696],[-127.00377544613121,53.067336002816745],[-127.00380951551406,53.06715642175462],[-127.00377450752235,53.0669802337145],[-127.00361291324138,53.06682752393893],[-127.00340791973329,53.06669703832242],[-127.0031743872939,53.06658472393072],[-127.00290341880465,53.066510270647434],[-127.00261176935473,53.06647072109359],[-127.00231581251522,53.06644633958516],[-127.0020278116269,53.066402284306804],[-127.0017759486667,53.066305810712656],[-127.00159038490331,53.06616619257732],[-127.00149566624175,53.06599498357138],[-127.0014382396636,53.065818984927176],[-127.00141250689991,53.0656399115775],[-127.00128992750366,53.06547566205427],[-127.00103750159114,53.06539432387725],[-127.00073374258521,53.06539577775936],[-127.00043683648254,53.065410054904184],[-127.00000125343196,53.065370041835536],[-126.99986539467713,53.06535662474914],[-126.99960960849764,53.06525121521079],[-126.99931779582181,53.0652435997621],[-126.99901819803041,53.065262943180194],[-126.99871955526952,53.06528284252741],[-126.99843087434004,53.06524942524853],[-126.99814467540321,53.06520197465869],[-126.99784572956331,53.065208983301055],[-126.99754911374026,53.06523558599103],[-126.99724496837965,53.06526000140826],[-126.9969457117332,53.0652939041089],[-126.99667231315155,53.065353925727216],[-126.99644292852884,53.06545726865309],[-126.99624899665133,53.06559729985673],[-126.99606744162615,53.0657473025035],[-126.99588383235533,53.06588948713875],[-126.99570777694758,53.06603496052542],[-126.9955326476236,53.06618043478509],[-126.99538457404789,53.06632343061989],[-126.99515513434426,53.06646431497052],[-126.9949000528884,53.06654883055503],[-126.99462005610138,53.06660665276745],[-126.99433047485357,53.06665503464169],[-126.99403995283424,53.066702867914834],[-126.99375235932183,53.06675571390641],[-126.99347629280093,53.06682246486215],[-126.99321084112074,53.066903137495174],[-126.99295217390647,53.06699383760296],[-126.9926973207916,53.067088431545635],[-126.99244151302194,53.067181903412234],[-126.99218473782635,53.06727370646634],[-126.99192891481918,53.06736662151955],[-126.99167882913626,53.06746509067338],[-126.99143448071938,53.06756911396316],[-126.99118647126014,53.067676529163464],[-126.99095641967526,53.06779275769588],[-126.9907688235584,53.06792543813186],[-126.99065676601472,53.06809054589317],[-126.99059181696383,53.06827150216583],[-126.990546475448,53.06845117336172],[-126.99053022982322,53.06863620333554],[-126.9905083240483,53.06881903962096],[-126.99044968569704,53.0689904134912],[-126.9903034937613,53.06913507205216],[-126.99005559003827,53.06924753082965],[-126.9898180647657,53.069363819592674],[-126.9896804694986,53.06951680504746],[-126.98961269153814,53.06969666371811],[-126.98958512115998,53.069877306012636],[-126.98962105404382,53.070055175071055],[-126.98965889582955,53.070234713440016],[-126.98966682888127,53.07041449343445],[-126.98963504923799,53.070575000737726],[-126.98964066755333,53.070776099819135],[-126.98963828771296,53.07095428980356],[-126.9895610018185,53.07112806034521],[-126.98943299693174,53.071291059008814],[-126.98924285644722,53.07143608412398],[-126.98899921240147,53.07153113147143],[-126.98869565698698,53.071543193202174],[-126.98840758344507,53.07149686414622],[-126.98814292283234,53.07141279508691],[-126.98787821289928,53.07132591995552],[-126.98759811585494,53.071261028409396],[-126.98731243772575,53.071197303422835],[-126.98702407929989,53.07113920297666],[-126.98673695044049,53.07109341777992],[-126.98645406894451,53.07106945192454],[-126.98608995810838,53.071170537387566],[-126.98588072481319,53.07129835213218],[-126.98568935380902,53.071350374792736],[-126.9854123990725,53.07138069989877],[-126.98510632042895,53.07140454387269],[-126.9847631073543,53.07139899721512],[-126.98449536839291,53.07142364050037],[-126.9842307870127,53.071503164535294],[-126.98398839636363,53.0716127583414],[-126.98376837196898,53.07171936841559],[-126.98394969792642,53.07200024023101],[-126.98398934774751,53.07217807963952],[-126.98400018574262,53.072362882436394],[-126.98402952095746,53.072539687164344],[-126.98405238583742,53.072719342703024],[-126.98396935084178,53.0728875632349],[-126.9837840603064,53.0730409385567],[-126.98363690258721,53.07318616103184],[-126.98340691928429,53.073306855755064],[-126.9831838206535,53.07344261582645],[-126.9829675755529,53.07355143386949],[-126.98276876420118,53.07368643519741],[-126.98262085496341,53.07383949753375],[-126.98252291927726,53.07401120252003],[-126.98238354497026,53.07416924053354],[-126.98220834924818,53.07431525004573],[-126.98202086540584,53.0744551938617],[-126.98182392936461,53.0745907426417],[-126.98161467920741,53.074719105270596],[-126.98139213182567,53.07483916929068],[-126.98113883460547,53.074963414738676],[-126.98089711995111,53.07502257086187],[-126.9805825166394,53.075042556130235],[-126.9802856398119,53.07506126392264],[-126.98000673571076,53.075089351110975],[-126.97969188557839,53.07509868623129],[-126.97942153046435,53.075132303934154],[-126.9790940050867,53.07516023629693],[-126.97882286390335,53.07520001774091],[-126.97855165887358,53.07527790712656],[-126.97830522153744,53.07537575188425],[-126.97809029466694,53.07550247874791],[-126.97786472976648,53.07561359645235],[-126.9775880019766,53.07569544676937],[-126.97732656502279,53.0757917372001],[-126.97706336055359,53.07589252389844],[-126.97680108285802,53.07595240636494],[-126.97658776165461,53.07598610165926],[-126.97639188416179,53.0760062146239],[-126.9762516029015,53.07608581327571],[-126.97607231811904,53.07617693964567],[-126.9759900307803,53.0762577351084],[-126.97587138377298,53.07630241718011],[-126.9757324419423,53.07635903712825],[-126.9754776246133,53.07637795006812],[-126.97528374513072,53.07636274256196],[-126.9750719430909,53.07630061917853],[-126.97478185363053,53.07624866175334],[-126.97451140078772,53.07619710638535],[-126.97412097078063,53.07621377342569],[-126.97390239422747,53.07630409990644],[-126.97364693197194,53.07633534036338],[-126.97333213149368,53.07638835983822],[-126.97303351622031,53.07653593686844],[-126.97288752154469,53.07669289706276],[-126.97273190796531,53.07683816591274],[-126.97267992232426,53.07697642270459],[-126.97273497009664,53.07721633372309],[-126.97260172533979,53.07735862122521],[-126.97248228551904,53.07740946492641],[-126.97233703328854,53.07743587765359],[-126.97204735271752,53.0774842045898],[-126.97176253268468,53.07754033473168],[-126.97149605804836,53.07762152138064],[-126.97123245652122,53.07770605443252],[-126.97095731547141,53.07777667027761],[-126.97068011148359,53.077838893757985],[-126.97038369789331,53.07787887219101],[-126.97009109968705,53.0779221712509],[-126.96980711191961,53.07797437231563],[-126.96954238532922,53.078050502108084],[-126.96930747473748,53.07816336503607],[-126.96906969974121,53.07827400986293],[-126.96880701873683,53.0783579650865],[-126.96853476876339,53.0784330337127],[-126.96825771037729,53.078501973568],[-126.96797865379149,53.078565335318025],[-126.96768999221226,53.07861756055036],[-126.96738981813701,53.07865699742989],[-126.96709628435279,53.07870030560996],[-126.96693180655126,53.07874535369376],[-126.96689219304524,53.07881234654394],[-126.96685785586966,53.0789874343442],[-126.96684699970787,53.079208837496395],[-126.96675860186289,53.079350750983934],[-126.96677198496603,53.079527689279836],[-126.96682936516703,53.07970650860131],[-126.96685399258602,53.079884475386386],[-126.9667766226237,53.08005935046898],[-126.96674884612172,53.08023550496635],[-126.96680712904272,53.08041319629105],[-126.96684124613739,53.08059725288352],[-126.96677588257353,53.080765306293166],[-126.96656640323897,53.080886919734404],[-126.96631733611079,53.080995409943796],[-126.96606912086871,53.08109997518572],[-126.96581413782313,53.081194501263596],[-126.96555913888685,53.081289035870945],[-126.96532506564373,53.081398521931646],[-126.96510343047964,53.081520787794695],[-126.96489601420988,53.081651910489896],[-126.9647131356829,53.081792352659896],[-126.96457369261405,53.08195204511139],[-126.96445314026293,53.082119436002195],[-126.96429625530506,53.08225237718119],[-126.96404989756351,53.0823569228441],[-126.96378541332956,53.08244536334603],[-126.9635206202417,53.082520914918064],[-126.9632420899077,53.08260891293583],[-126.963036800599,53.08271031571991],[-126.96277776760398,53.08283344661442],[-126.96253230691661,53.082936296398884],[-126.96225887090438,53.083043290963964],[-126.9621977991449,53.0831950629439],[-126.96227666120855,53.083373709031875],[-126.96241187491627,53.0835631015544],[-126.96241120948571,53.083740154218454],[-126.9622548610886,53.08389662864832],[-126.96200352676917,53.0839888753241],[-126.96172934825177,53.084062822784524],[-126.96145136318798,53.084134559471075],[-126.96118770116618,53.08421906979485],[-126.9609593243786,53.08433353845574],[-126.96075480802719,53.08446966786642],[-126.96054165258165,53.08459634693432],[-126.96029118952406,53.08468578588826],[-126.96001196613184,53.08474408256312],[-126.95971840783822,53.084788483643436],[-126.95942485951768,53.08483401342251],[-126.95915354450277,53.08491129318853],[-126.95889458057356,53.08499687172822],[-126.95862210594254,53.08506463946502],[-126.95832929426606,53.08510118714591],[-126.95803355828261,53.08513216402117],[-126.95772817858371,53.08515088330746],[-126.95742660429093,53.08517182103011],[-126.95716247246918,53.0852361471464],[-126.95694725551287,53.085354992407524],[-126.95675316537114,53.085497753521615],[-126.95654861717038,53.0856333109074],[-126.9563125992125,53.08574223840973],[-126.95605471626047,53.08583508990133],[-126.95578817217311,53.08591680538662],[-126.95548958217002,53.08598812971367],[-126.95525560223435,53.08606285733413],[-126.95507466893004,53.08620887083676],[-126.95492389197337,53.086365845809276],[-126.95478438694887,53.08652441478631],[-126.95465053896665,53.08668573475849],[-126.95452422280943,53.086848670050834],[-126.95440449399464,53.08701380203744],[-126.9542903869155,53.087179444268],[-126.95417817421442,53.08734619161548],[-126.95406878345942,53.08751403659562],[-126.95396127687599,53.087681866239535],[-126.95385657958667,53.08785022887588],[-126.95375470452161,53.08801969812821],[-126.95365564107023,53.088189135613284],[-126.95356032973758,53.08835910746862],[-126.9534753611297,53.088531236860725],[-126.95343075580263,53.08871032852733],[-126.95337955928059,53.08888778803381],[-126.9532663981969,53.08905397718447],[-126.95307973186156,53.08919611604502],[-126.95282066668118,53.08927888468613],[-126.95254552056322,53.08935393855623],[-126.95230856897804,53.08946397668822],[-126.95205153192276,53.0895545710835],[-126.95178780480131,53.0896384955171],[-126.95152122858781,53.08972020120003],[-126.95124985544682,53.08979690691189],[-126.95097653557546,53.089870257054685],[-126.9507060880973,53.0899469540459],[-126.95044900943188,53.090035304123255],[-126.9502523644969,53.0901915209239],[-126.94998161227977,53.09025476315879],[-126.94969096634077,53.09030640340801],[-126.94944812814508,53.09040472171108],[-126.94938842921546,53.090578885846924],[-126.94937096758441,53.09075943386836],[-126.94937405084576,53.090939261018924],[-126.94940611753786,53.09111829053708],[-126.94948933315733,53.09132604321648],[-126.9493222028999,53.09138060737283],[-126.9490061571892,53.09142572661861],[-126.94877661590468,53.09153346573648],[-126.94858809084496,53.09167728835027],[-126.94837208977502,53.091805078782635],[-126.9481021670666,53.091863836679906],[-126.94781318227746,53.09182300948203],[-126.94745282797665,53.09176931626016],[-126.94724414040341,53.09172224113331],[-126.9471400000144,53.09166592813746],[-126.94700800627828,53.09161880261972],[-126.94670761521054,53.09156966454754],[-126.94641675111714,53.09152829322104],[-126.9461220097125,53.091480793717786],[-126.94602114133549,53.091487203994745],[-126.9458012267692,53.09152370119795],[-126.94556791684455,53.091462817885215],[-126.9453077871989,53.091373570321785],[-126.94505776527663,53.091275841758815],[-126.94482515477476,53.09116228584693],[-126.94462485534413,53.09102998670439],[-126.94446973173793,53.090909643174484],[-126.9443801028365,53.090875066865095],[-126.94411359067811,53.090792590962465],[-126.94401167611646,53.09075194506025],[-126.94376614690438,53.09068835895754],[-126.94363374331785,53.09066419963638],[-126.94334063650643,53.090648055414945],[-126.94303687573262,53.09069921914304],[-126.94274596921784,53.090739638850955],[-126.94246094670036,53.09079233688602],[-126.94217695328885,53.0908489524048],[-126.94185951643739,53.090916474477545],[-126.94167817109752,53.09083667589492],[-126.94169479734684,53.090616361132504],[-126.94159777475267,53.090164434732436],[-126.94134159088226,53.08995693419051],[-126.94105417676873,53.08964883286897],[-126.94093835740607,53.08944525145849],[-126.94066553804609,53.08928887112694],[-126.94042827811121,53.08913331874406],[-126.94013570555967,53.08892946679784],[-126.93988524703006,53.08876898036982],[-126.93961363579396,53.08858233331283],[-126.93948342697294,53.08844609751078],[-126.93938017005266,53.08834439313313],[-126.93934215925796,53.08827465681335],[-126.9395322782038,53.087991332820515],[-126.93964079750579,53.087824064534146],[-126.93973896106101,53.08765408160732],[-126.93982211623342,53.08748142107286],[-126.93991184562381,53.087310384496945],[-126.94001564191066,53.08714147701043],[-126.94013187337683,53.08698479646662],[-126.94020071941645,53.086799914465075],[-126.94023045567768,53.0866226316524],[-126.94024852983833,53.08650987747436],[-126.94027933907759,53.08646536626306],[-126.94031268772335,53.086408517794275],[-126.9403217551437,53.086269497958625],[-126.94035332317706,53.086090515175414],[-126.94041020567913,53.085914136729954],[-126.94047269525745,53.08573827835996],[-126.94051646202819,53.08556088367217],[-126.94053585403773,53.08538144188938],[-126.94053373615975,53.08520160655749],[-126.94051386131721,53.08502192152327],[-126.94015381846637,53.08493738437757],[-126.93986121077444,53.08489937268695],[-126.93956689488022,53.08486865292953],[-126.93927516871501,53.08482783589981],[-126.93898105217757,53.08480607747598],[-126.93868041089004,53.084827515678384],[-126.93850735806119,53.084825528780044],[-126.9383882514756,53.08480966662681],[-126.9381016509092,53.0847475156216],[-126.93781786339002,53.084685332632795],[-126.93753417710406,53.08466965531522],[-126.93725339922457,53.08474359793936],[-126.93711816670758,53.08476035826914],[-126.93696117729566,53.08476552973119],[-126.93666072296574,53.08475278017185],[-126.93635817392466,53.08477255124726],[-126.93607877162071,53.084739463541204],[-126.9358213153165,53.08464177444785],[-126.93552810732456,53.08461832391799],[-126.9352245668499,53.084635858854476],[-126.93493170499272,53.084628091747916],[-126.9346549213476,53.084543999619555],[-126.9343934703558,53.084434568828236],[-126.93422626835927,53.08440059833124],[-126.9339806727549,53.08458574476495],[-126.9338760371295,53.084633078989185],[-126.93371193777531,53.084655101550446],[-126.93341321416182,53.08467875227598],[-126.9331141082471,53.08468504129271],[-126.93283304229486,53.08461834271505],[-126.93254645342913,53.08464133964913],[-126.93226071632974,53.084702418734544],[-126.93198259118607,53.08477016931106],[-126.93168428419763,53.084812861627356],[-126.93138520148793,53.0848202576551],[-126.93114480923035,53.08473195305354],[-126.93093051632499,53.084597491021874],[-126.93069244420131,53.08448731211726],[-126.93042509331802,53.084406497477495],[-126.93014772159869,53.08433808712212],[-126.92986052813072,53.084290487982436],[-126.92956885202095,53.08425132302117],[-126.92928247671249,53.08419866911287],[-126.92899519917019,53.08414714215346],[-126.92870472218877,53.084120291633425],[-126.92840692963476,53.084143357643974],[-126.92810909747665,53.08416531163172],[-126.92781289245765,53.08417548188871],[-126.92751941979719,53.08414024341849],[-126.92724390274925,53.08407013539196],[-126.92696570882508,53.08400620624195],[-126.92667751743933,53.0839558013884],[-126.9263858342371,53.08391606390451],[-126.92609087391989,53.08389820648842],[-126.92579089385617,53.08390672494476],[-126.92549390645969,53.08392417458535],[-126.9251979808175,53.08394778263785],[-126.92490022431389,53.083972524822975],[-126.92460380951874,53.083973724330995],[-126.92431310464598,53.08393622414096],[-126.92402221712331,53.08389031610578],[-126.92363739813372,53.083781826505245],[-126.9233655659141,53.083709439594706],[-126.92310186388633,53.08362353304979],[-126.92283003626828,53.0835505801256],[-126.92255817025624,53.083476506336304],[-126.92229541393579,53.08339059958392],[-126.92203540713585,53.083302420741475],[-126.92177081680025,53.08321876823137],[-126.92150349091357,53.08313793334704],[-126.92122622984411,53.08307286294497],[-126.9209363154388,53.08302861610793],[-126.92064290796283,53.082995045431225],[-126.92034603796571,53.082974947526786],[-126.9200500134561,53.082950360119256],[-126.919754871067,53.08292296822833],[-126.91945975043461,53.082897251766546],[-126.91916270240246,53.08286818793436],[-126.91886600389897,53.08285592879248],[-126.91857097591176,53.082877272222454],[-126.91825080877146,53.08290329247623],[-126.91802594771677,53.08296946668802],[-126.91774695967493,53.082954270240975],[-126.91740855012424,53.08300227601632],[-126.91712054496513,53.08304541634799],[-126.91685643308395,53.08306987711242],[-126.91667725027821,53.08321581753596],[-126.91649100745524,53.083381982201175],[-126.91625456310193,53.083474580069435],[-126.91601277120064,53.08358010066849],[-126.91571701497102,53.08361097165179],[-126.91543988535531,53.08368202812679],[-126.9152435003776,53.083811856173384],[-126.91520710020605,53.08398806325544],[-126.91519143528203,53.08417250927361],[-126.9151391447696,53.084349404133775],[-126.91507655220242,53.08452524923385],[-126.91514022589227,53.08478920388105],[-126.91508720593438,53.08488934272864],[-126.91502034957247,53.08495429612998],[-126.91480613961588,53.08508145550801],[-126.9145824093455,53.08520084438515],[-126.9143927240577,53.08533789800448],[-126.91421066242104,53.085481615556475],[-126.91397097845442,53.08555518448806],[-126.91364518745851,53.085582356087514],[-126.91335240589403,53.085622153353796],[-126.91307131424017,53.08568371457475],[-126.91279508521129,53.08575364608776],[-126.91250088922013,53.08577160609738],[-126.9121997095294,53.0857688848123],[-126.91208126069279,53.08578324571536],[-126.91189853007003,53.08576617172255],[-126.91179152114793,53.08570368255358],[-126.91154329604917,53.08564117126846],[-126.91141466376361,53.085617511701784],[-126.91133092657272,53.08559350572246],[-126.91123910401276,53.08558524960484],[-126.911081446437,53.08555957244698],[-126.91080579347984,53.085613242539615],[-126.91054175663471,53.08568530689197],[-126.91023781904481,53.08577225402364],[-126.90998905284421,53.08585876649322],[-126.90977629735285,53.085836317763956],[-126.90955201439148,53.08571309984971],[-126.90933060536389,53.085592665224404],[-126.90907518652342,53.08549938482052],[-126.90880242853862,53.085426406955044],[-126.90852146505951,53.08536357641802],[-126.90825238898874,53.085287772112096],[-126.9080365238558,53.085163930841816],[-126.90784744636979,53.08502419579313],[-126.90766670558084,53.08488103477621],[-126.90745116035835,53.08472861172741],[-126.90732559336408,53.08458502641033],[-126.9071191561575,53.084464472681475],[-126.90687188085838,53.08435824329125],[-126.90660714601424,53.08426670541909],[-126.9063702250509,53.08416319240032],[-126.9061534168182,53.084038799143464],[-126.90586530701816,53.08394688310647],[-126.90567752845583,53.08382394272927],[-126.90544122878114,53.08370585607212],[-126.90518568639028,53.08360584501823],[-126.90495804731788,53.083499452237234],[-126.90480416908997,53.08334319935026],[-126.9046215876921,53.083200603555866],[-126.90443808917945,53.08305914400256],[-126.90425827476808,53.08291428537923],[-126.90408466452605,53.08275370039987],[-126.90382869002407,53.082677221084055],[-126.90371756767887,53.08264052854573],[-126.90361395746989,53.08256176265835],[-126.90324377125634,53.082522577613126],[-126.9029194824388,53.08244381276731],[-126.9026331435519,53.08238997374538],[-126.90245312219078,53.08232356077212],[-126.90239347817845,53.082288714844715],[-126.90223963448493,53.0821341346807],[-126.9019951005638,53.082067648914304],[-126.90171862679709,53.08194986156083],[-126.90143410002808,53.08189376474287],[-126.90114690774895,53.0818438550305],[-126.9008606345566,53.081792808110734],[-126.90058247156355,53.08172769640396],[-126.90031064430475,53.08165301565244],[-126.90001864505686,53.08159640763782],[-126.89971829263632,53.081587489971746],[-126.89945466993672,53.08163431893136],[-126.89918824209884,53.08172599025763],[-126.89890707270322,53.08178360114203],[-126.8986092566407,53.081805471721175],[-126.89832134418347,53.08185416816754],[-126.8980294689399,53.08189167966471],[-126.89773250815749,53.08191018886689],[-126.89743653372686,53.081931486695325],[-126.8971369171167,53.08195672884393],[-126.89684119089986,53.08198979343885],[-126.89656760243798,53.082052379107026],[-126.89632293695735,53.08215620466403],[-126.89610207704848,53.082280018847015],[-126.89591236878147,53.08241816338224],[-126.89573403220561,53.08256350039824],[-126.89561139355605,53.082645673697584],[-126.89550821434764,53.08267446928737],[-126.89521249358616,53.08270808549039],[-126.89492719644157,53.08265925791108],[-126.89462828530827,53.08262959085976],[-126.89446048085622,53.082653827967285],[-126.89437655165978,53.082709369749594],[-126.89425189764414,53.08287279142712],[-126.89376513693773,53.08271568195971],[-126.89349517639562,53.08263984198857],[-126.89321346816506,53.08258370412756],[-126.89292363371,53.082541638229216],[-126.89262930938249,53.08250800510214],[-126.89233411690023,53.082477174665804],[-126.89203804143618,53.082449155989444],[-126.89174048525388,53.08243964111409],[-126.89154431404596,53.08244896539714],[-126.89128759246456,53.082602730834545],[-126.89104555532772,53.082699246465616],[-126.89071862253296,53.08275997969753],[-126.89044014971002,53.08281362356515],[-126.89015019012446,53.08276481963001],[-126.8898541964592,53.08274072122935],[-126.88953215394915,53.082722976692885],[-126.8892768138236,53.0827204167584],[-126.88896964552056,53.08278771958652],[-126.88873737719217,53.082903761849614],[-126.88847921104147,53.082989179140235],[-126.88818054438529,53.08301607660879],[-126.88789258185997,53.082973984322116],[-126.88758673293526,53.08297011501088],[-126.88732783916817,53.082976541848275],[-126.88706551817074,53.08308664800377],[-126.8868438671656,53.08312977186016],[-126.88653127322583,53.08329571624215],[-126.8862844511864,53.08334294529921],[-126.88582757753171,53.08349596777482],[-126.88553866447893,53.08354239029291],[-126.88524506027609,53.08358773567614],[-126.88498289771161,53.083661414006016],[-126.88482248567274,53.08381668468809],[-126.88464028364845,53.083958116067855],[-126.88439634530852,53.084053511531046],[-126.88413835026142,53.0841478821676],[-126.8840574856506,53.08421628415762],[-126.88395558411595,53.08426242380452],[-126.88369513632952,53.08437418457766],[-126.88342461731371,53.08445072768207],[-126.8831617486624,53.084536168289006],[-126.88290081071062,53.08462384390612],[-126.8826303085899,53.084702061352665],[-126.88240461811557,53.08477601715014],[-126.88219282224317,53.08493391783956],[-126.88213511039406,53.084992051796725],[-126.88196977695034,53.085045951211285],[-126.88169166567683,53.08511750004938],[-126.88146646818323,53.08517072492367],[-126.8812071256362,53.08533625746858],[-126.88099741352566,53.085459403808564],[-126.88072694909799,53.08553985758177],[-126.88045734521761,53.08557100081379],[-126.88015412295024,53.08546960609931],[-126.87987661624136,53.085390994542855],[-126.87961112208258,53.08530501392052],[-126.87933758133575,53.08532665489442],[-126.8790073231159,53.08536441363937],[-126.87866298614347,53.08544484747597],[-126.87851379016298,53.085555769204376],[-126.87836941250457,53.08571876420498],[-126.87821831858865,53.085873956228376],[-126.87810678770713,53.08604230938132],[-126.87798957278781,53.086207898828285],[-126.87780157675057,53.08634207433031],[-126.87754851408677,53.086449848957834],[-126.87734921422548,53.086580190273615],[-126.87713766907268,53.086706695791634],[-126.87694127198823,53.086841496963466],[-126.8767590655243,53.08698460096749],[-126.87656266247483,53.087119957298505],[-126.8763530438166,53.08724869707237],[-126.8761960953238,53.08739272438068],[-126.87598386985687,53.087531567579305],[-126.8758271539265,53.08768624216747],[-126.87570424582569,53.087848509696656],[-126.87563586276607,53.088023819405926],[-126.8756180847302,53.088204912503265],[-126.87561896511082,53.08838307046798],[-126.87572078361379,53.088558804072036],[-126.87576280773501,53.088736657073426],[-126.87577773057563,53.088915831442456],[-126.87579172245508,53.08909556847559],[-126.87581600807484,53.08927523815841],[-126.87592048011516,53.08944309917654],[-126.87600727476746,53.0896150174829],[-126.87609218496566,53.089786949685426],[-126.87613889155723,53.089965332480354],[-126.87616223985411,53.09014444422028],[-126.87613411500556,53.09032225231337],[-126.87607511220226,53.09049973352524],[-126.87603296765204,53.090677654456634],[-126.87599924284217,53.09085606871885],[-126.8759730102331,53.091034983195456],[-126.87593273149844,53.091213445981495],[-126.87588496317697,53.091390843717285],[-126.8758221710146,53.09156611170447],[-126.8757340329726,53.091736529571925],[-126.87563093171771,53.09190704926319],[-126.87553813540987,53.09207805723948],[-126.8754528277419,53.09225013017216],[-126.87537784836826,53.09242381178903],[-126.87531226605172,53.09259965582599],[-126.87525042403301,53.09277548106689],[-126.87520111596972,53.092969132917254],[-126.87511359962078,53.09312497867531],[-126.87503958290316,53.09329976440476],[-126.87496177530917,53.09347290182351],[-126.87487835947654,53.093645524906265],[-126.87478460201133,53.0938159744411],[-126.87467111650508,53.09398265253044],[-126.87454141577635,53.09413376310135],[-126.87438594445106,53.0943052336777],[-126.87431178424957,53.0944733056596],[-126.87414473018471,53.09462748890863],[-126.87397602396193,53.0947923336052],[-126.87379815321002,53.094921388939284],[-126.87356384886344,53.09503461799109],[-126.87334468782764,53.09515725464902],[-126.8731226812055,53.09527767085293],[-126.87289592387377,53.09539419538725],[-126.87266536349982,53.095508515463365],[-126.87248225821281,53.0956555357823],[-126.87233629239839,53.0957899558806],[-126.87215147560292,53.095944831960054],[-126.87192211780602,53.09607202320255],[-126.87174832191695,53.09621785309298],[-126.87160644163694,53.09636848521699],[-126.87141764504369,53.096512748902065],[-126.87122818404946,53.09666989871974],[-126.87114935787793,53.09683967907046],[-126.87107912842048,53.097017795441715],[-126.87099380431839,53.09719042933214],[-126.87092255042285,53.0973646357613],[-126.87086913099152,53.097541507542985],[-126.87083163789801,53.0977199472014],[-126.87080912053263,53.097898841232244],[-126.87078848495409,53.098078277154805],[-126.87075848474574,53.09825721730413],[-126.8707247317127,53.09843562929342],[-126.87069004721565,53.09861461285898],[-126.8706562936101,53.09879302479269],[-126.87062536451892,53.09897197167051],[-126.87059442038586,53.0991509275951],[-126.87056160874293,53.09932933250313],[-126.87052411277418,53.099507771883346],[-126.87045566293287,53.099682512886496],[-126.87036471096779,53.09985406692793],[-126.87023954249113,53.10000009181978],[-126.87022765531025,53.10001306983674],[-126.87009061002927,53.10017262826766],[-126.869962031786,53.10033492998624],[-126.86983439537639,53.10049722461166],[-126.86970206579429,53.10065843308762],[-126.86956691029766,53.10081910640439],[-126.86942702342763,53.10097756433879],[-126.86931708184709,53.10113581081366],[-126.86913219278489,53.10128956146005],[-126.86894050977257,53.10143103600107],[-126.86880062211996,53.10158893733438],[-126.86870308120022,53.101759408777724],[-126.86862420111278,53.101927510907664],[-126.86846659997249,53.102088903514364],[-126.86831825958582,53.10224574577306],[-126.8681548257795,53.10239653133374],[-126.86797058323062,53.10253627320554],[-126.86775895340978,53.10266388113937],[-126.86754544376451,53.10279039091625],[-126.86735555068347,53.10292848797988],[-126.86715625660608,53.10306441264526],[-126.86697859379066,53.1032063366792],[-126.86674990655115,53.10332287158264],[-126.8669961344425,53.10342358893404],[-126.86728956135829,53.10354413780295],[-126.86740569482859,53.103687832740555],[-126.86752492929651,53.10384550681672],[-126.86770468742492,53.10398873448446],[-126.86785196358491,53.10414509081728],[-126.86798529362903,53.104306022481595],[-126.86807767612981,53.10447678359959],[-126.86811126919869,53.104655264253125],[-126.86809246683224,53.104833564929166],[-126.86805120229826,53.10501146579108],[-126.86807263886571,53.10519059145004],[-126.8680678981726,53.105369909322114],[-126.86805474249446,53.105549853711004],[-126.86804436244886,53.10572864821451],[-126.86803963313872,53.10590853068747],[-126.86806481194697,53.106087628780585],[-126.86812641267342,53.106263097827906],[-126.86815627687673,53.1064421614616],[-126.8681655723564,53.10662193190776],[-126.86813272176397,53.10679921503873],[-126.8681204709676,53.106978032125475],[-126.86807078122428,53.10715543885834],[-126.86803867428266,53.10732375230077],[-126.86806600121969,53.10742495401868],[-126.86800725404673,53.10761699391248],[-126.86760560929493,53.10774152294571],[-126.86730271190532,53.10779977142086],[-126.86704235400553,53.10787899695005],[-126.8667803303199,53.107968318763405],[-126.86662341363102,53.108118497957435],[-126.86640411907165,53.10823888013949],[-126.86617256601349,53.108354304906776],[-126.86591791874663,53.10843853286066],[-126.86569198788915,53.108554480215446],[-126.86552902875268,53.1086839680736],[-126.86540702062969,53.10884902141099],[-126.86517154801429,53.10895607343629],[-126.86489128540256,53.10902366986057],[-126.86459091495192,53.10906844657204],[-126.86430451862252,53.10906438238835],[-126.86398147298178,53.10905217700611],[-126.863701560848,53.10904525820313],[-126.86340748648898,53.10903171907567],[-126.86311597908862,53.10905233172647],[-126.86281774794567,53.10906403756703],[-126.8625192622015,53.10906397461517],[-126.86221995088009,53.109068954769036],[-126.86192394891496,53.10905262920575],[-126.86163223364566,53.10901665815657],[-126.86133523225632,53.10899753263654],[-126.86103993508202,53.10896942983635],[-126.86074468011698,53.108944122800075],[-126.86045116377937,53.108911523506634],[-126.86015672762244,53.108880050694964],[-126.85986179189896,53.10882392944984],[-126.85958571511857,53.10877495818102],[-126.85932474016583,53.10868664950021],[-126.85904482056637,53.10863265810777],[-126.85875749709028,53.10858264612419],[-126.85847023092767,53.108535429835676],[-126.85819655192803,53.10846570391523],[-126.85790235854324,53.10844598468061],[-126.85761422967083,53.10849513688133],[-126.8573201282076,53.108525847671466],[-126.85702161219332,53.10852408583238],[-126.8567231225848,53.10852288778778],[-126.8564250933901,53.1085452164655],[-126.85613876926732,53.108544493552046],[-126.85594889426473,53.10845454203075],[-126.85580336197238,53.108429823807796],[-126.85573816315255,53.108397800844536],[-126.85570090171531,53.108359973056416],[-126.85564516004602,53.10833292838674],[-126.8553987685928,53.108224901015916],[-126.85518112653249,53.10810377476401],[-126.85499953723459,53.1079605418108],[-126.85475607653534,53.10785809448363],[-126.85451074601686,53.10775566017333],[-126.8542654280638,53.10765379000532],[-126.85401643685168,53.10755529844801],[-126.85372461080793,53.107513706205715],[-126.85342771752482,53.10749848641005],[-126.85313077557369,53.10748158096713],[-126.85283145178413,53.107485417004646],[-126.85253208305467,53.10748702054261],[-126.85227560849378,53.10743452041688],[-126.85194396328714,53.107459885967266],[-126.85164792015446,53.10744072929899],[-126.85135884367352,53.107395749884596],[-126.85107700428385,53.10733839200459],[-126.85078899566646,53.10729956186356],[-126.85052991927748,53.10721122919345],[-126.85031163802324,53.10710354481928],[-126.85005043440005,53.10700233600599],[-126.8497559182518,53.10696580015073],[-126.84945826669876,53.106959531022156],[-126.84916019230708,53.10697848023855],[-126.84886307939064,53.10699910705094],[-126.84859022127019,53.107016188500204],[-126.84827300809773,53.106967486227866],[-126.84789954347306,53.10691301927671],[-126.84767626981252,53.10693030770135],[-126.84747823832522,53.10703985267551],[-126.8473548311856,53.1072317894244],[-126.84708940569699,53.10752726626828],[-126.84688560698237,53.10739482056014],[-126.84666526925145,53.107278189110666],[-126.84641637629404,53.10718360724519],[-126.8461436873104,53.107115522776034],[-126.84594267031349,53.106981943986646],[-126.84568365437063,53.10689527662288],[-126.84543012566584,53.10680296688321],[-126.84515097813055,53.106738852608046],[-126.84488093667079,53.106662902719506],[-126.84460543242027,53.10659372329492],[-126.8443235739394,53.10653466427619],[-126.84403628205725,53.10648461645752],[-126.84373862366888,53.106477777230644],[-126.84343947340025,53.106489996631325],[-126.84314693764347,53.10645846806652],[-126.84285518542106,53.10641964537358],[-126.84256168928408,53.10638644592507],[-126.84226419869177,53.1063880011652],[-126.84196637445807,53.106372759295475],[-126.84166785200556,53.106369838331325],[-126.84136951143104,53.106375323651086],[-126.8410702500553,53.10638193528206],[-126.84077172777772,53.10637902101781],[-126.84047484691936,53.1063637597211],[-126.8401754078391,53.106361406244986],[-126.8398628722191,53.10635914505766],[-126.83982601019518,53.10619861779619],[-126.83984289456521,53.106011927911524],[-126.839802874938,53.105834050608266],[-126.83972832909845,53.10566034482123],[-126.83963696777832,53.105487869963405],[-126.83953724022084,53.10531770443259],[-126.83943376772962,53.105148121175596],[-126.83931722588802,53.10497918638896],[-126.83917753574856,53.10482275042934],[-126.83892127913228,53.10473268720564],[-126.83875191233042,53.104589342776755],[-126.8386381403818,53.10441871135451],[-126.83860662009329,53.10424413477535],[-126.83864887987389,53.104063432172275],[-126.83866964322526,53.103883437826724],[-126.83865019138405,53.10370373774887],[-126.83863540908287,53.103523995557644],[-126.8386355492079,53.10334191541155],[-126.83856571520045,53.10316985157262],[-126.83846228896273,53.103001387511135],[-126.83834579740497,53.10283525704428],[-126.83821905811126,53.10267087541483],[-126.83808490334509,53.102509916728636],[-126.83790248603391,53.102368339807654],[-126.83772572666793,53.102228972497805],[-126.83765587985815,53.102055222888104],[-126.83760460441911,53.101875183270195],[-126.83749768714881,53.10171906870053],[-126.83730536854752,53.101549557061446],[-126.83694217435442,53.101348751241375],[-126.83667108831798,53.101264390726996],[-126.83639101459234,53.10119858618379],[-126.8361070859752,53.101174823103776],[-126.83581160172572,53.101228456630736],[-126.83551707814833,53.10123669726316],[-126.83521984901633,53.10120182091696],[-126.83493798438465,53.10113994292437],[-126.83468177015176,53.10105043498445],[-126.83444290203633,53.10093950527745],[-126.83422159399274,53.100817254963594],[-126.83400864652108,53.10069157473272],[-126.83379845496479,53.10056364261],[-126.83359011315164,53.100434567587996],[-126.83338453818844,53.10030379639833],[-126.83318082810906,53.1001718911888],[-126.83298081272602,53.10003828329732],[-126.83292393339497,53.10000002186413],[-126.8327826731336,53.0999040971098],[-126.83258822804035,53.09976819930808],[-126.83241230780511,53.09962209504132],[-126.83224657075165,53.099470872002],[-126.83207345121555,53.09932473853828],[-126.83185872012233,53.09920355801073],[-126.83160521655354,53.09910785703379],[-126.83146371449648,53.09895198030169],[-126.83135559882798,53.09878130184913],[-126.83126430835677,53.09860994021312],[-126.83124394754246,53.09843024501256],[-126.83122360869005,53.09825166118937],[-126.83113697795791,53.09807971086734],[-126.8310242518757,53.097911870247664],[-126.83088735900134,53.09775259880397],[-126.83072999382088,53.097597953160914],[-126.83054943797124,53.0974535549268],[-126.83033931661095,53.097327848181365],[-126.83009218073498,53.09722257931089],[-126.82983952201923,53.09712182180823],[-126.82961556543003,53.097006304538716],[-126.82944905230097,53.09686180604511],[-126.82932608447194,53.09669626770794],[-126.82920865252848,53.096526773065015],[-126.82906062469861,53.09637150387719],[-126.82887271814774,53.09623331298631],[-126.82866437984961,53.096102552901726],[-126.82844032632495,53.095980866750196],[-126.8282033846071,53.095870475667965],[-126.82795085884882,53.095775880535484],[-126.82767899708,53.0956965517538],[-126.82739975964608,53.095623432352106],[-126.82712697885151,53.095545220295364],[-126.82687357337991,53.095452870065955],[-126.8266514931339,53.09533676932008],[-126.8264386284669,53.0952127600908],[-126.82622666012642,53.09508706791732],[-126.82601558795517,53.09495968384115],[-126.82580452101818,53.09483173461026],[-126.82559526736627,53.0947015402632],[-126.82538788939439,53.09457076770394],[-126.82518233536356,53.09443829678565],[-126.82497956310657,53.094304129795155],[-126.82477958343048,53.09416882244789],[-126.82458238136154,53.09403237486218],[-126.82438887778513,53.093893660109615],[-126.82419909447307,53.09375379857411],[-126.824013031404,53.093612790273106],[-126.8238325371639,53.093469501818916],[-126.82365576311906,53.09332506663894],[-126.82348549651633,53.093178909549984],[-126.82331988174184,53.09303103454326],[-126.82316263771688,53.09288029521467],[-126.82301466649962,53.092726138501014],[-126.8228750549529,53.09256855286602],[-126.82274195477443,53.092408689653055],[-126.8226144079595,53.09224653762361],[-126.82249150209931,53.09208212107359],[-126.8223732585398,53.09191654245847],[-126.82225683874101,53.09174927472941],[-126.82214230511549,53.09158199375378],[-126.82202868928262,53.09141415049558],[-126.82191414249995,53.091246869370984],[-126.82179866896684,53.09107959457074],[-126.82167947752745,53.0909134660198],[-126.82155752159095,53.090749032856486],[-126.82143091613759,53.09058631714063],[-126.82129407217884,53.09042647822241],[-126.82113680162325,53.09027349523733],[-126.82096466403546,53.090126226890256],[-126.82078604347195,53.08998180013702],[-126.82060281017925,53.089840201961216],[-126.82041770386274,53.089699181244654],[-126.82022981187403,53.089558744313884],[-126.82004287445525,53.089418856235284],[-126.8198587034996,53.08927726340166],[-126.81967731008913,53.089134539454896],[-126.8195024167941,53.08898896436378],[-126.81933959080796,53.08883825851291],[-126.819186958015,53.08868300864964],[-126.81903711319153,53.0885271745163],[-126.81888171724236,53.08837361969822],[-126.81871333531497,53.08822631302879],[-126.81852175846494,53.088088139921766],[-126.8183088890976,53.08796075442729],[-126.81808033356084,53.08784468236021],[-126.81783981044333,53.08773877737257],[-126.81758825556399,53.087641912396485],[-126.81732931437108,53.0875507005841],[-126.8170667569556,53.0874651158173],[-126.81680327964342,53.08738065735014],[-126.81653704458452,53.08729901417603],[-126.81626898784226,53.08721906825335],[-126.81599911172262,53.08714249585292],[-126.81572648201455,53.0870681828911],[-126.81545206933994,53.08699836369193],[-126.81517310835511,53.086934742584305],[-126.81489141085719,53.08687505703508],[-126.8146088146699,53.086817618055086],[-126.8143262018536,53.08675849325403],[-126.81404448521296,53.08669768530726],[-126.81376459646155,53.08663462306181],[-126.8134983827669,53.086553537674625],[-126.81325418554871,53.0864493339636],[-126.81305247038634,53.086317935968744],[-126.81287480318969,53.08617181438159],[-126.81271107988532,53.0860216703085],[-126.81255756028476,53.085867529527256],[-126.81241334273066,53.08570997198258],[-126.81227654831895,53.08555011321689],[-126.81215371258217,53.085386240996236],[-126.81204018496744,53.08522006362425],[-126.81192759008776,53.08505332394529],[-126.81181778280553,53.08488600025316],[-126.81171077389932,53.08471865722389],[-126.81160562934339,53.084550180759436],[-126.81150419981529,53.08438111393184],[-126.81141210384375,53.08421030660676],[-126.81133956082031,53.08403544758458],[-126.81129221227904,53.083858165497006],[-126.81127008384404,53.08367903390289],[-126.8112628936816,53.08349867919317],[-126.81126132417543,53.08331885061402],[-126.81126350515898,53.08313955204292],[-126.81126661776086,53.08295968231287],[-126.81127345536403,53.082779795949946],[-126.8112803076969,53.082599900502515],[-126.81128996813078,53.0824205504965],[-126.81129867543194,53.08224065123643],[-126.81130552757077,53.08206075573214],[-126.81131517714559,53.08188084996232],[-126.81132762377787,53.08170091600018],[-126.81134757547362,53.08152149522061],[-126.8113768826955,53.08134313069028],[-126.81141556461421,53.081165266490494],[-126.81146359102455,53.08098789385458],[-126.81151725208628,53.08081103825354],[-126.81157559055816,53.080634715219745],[-126.81163766815563,53.08045836644779],[-126.8117016258402,53.08028256944855],[-126.81176652104547,53.08010732173167],[-126.81183705065483,53.07993259101909],[-126.8119131848564,53.07975838646956],[-126.81199121396686,53.07958473356965],[-126.8120682892695,53.07941052240841],[-126.81213975468526,53.07923634974103],[-126.81220371908714,53.0790611080547],[-126.81225362019649,53.07888427773701],[-126.81228199440163,53.07870591908991],[-126.81229819057054,53.07852596784725],[-126.8123125017608,53.07834602058029],[-126.81233805682514,53.07816656071977],[-126.8123860653406,53.0779886316972],[-126.81243034886246,53.07781071928802],[-126.81243906102453,53.07763137517796],[-126.81241502922188,53.07745057993317],[-126.8123555811058,53.07727562188884],[-126.81222530120503,53.0771123650681],[-126.81204030387215,53.0769718858114],[-126.8118164163714,53.07685185197599],[-126.81159070752106,53.07673350653802],[-126.81133923864294,53.07663774813291],[-126.81107765597542,53.07655045810566],[-126.81083907754694,53.0764434048665],[-126.8106198455711,53.07632165154136],[-126.81038491903915,53.07621065496584],[-126.81013251786963,53.07611433565362],[-126.80987094108366,53.076027051891195],[-126.80964156698872,53.07591208944996],[-126.80945841670993,53.07577047296143],[-126.80932725724007,53.07560889524791],[-126.80919515649838,53.075447323828705],[-126.80900276882396,53.07531138149872],[-126.8087964640992,53.07518057203384],[-126.80860959562148,53.07503897966946],[-126.80840333613429,53.07491041025989],[-126.8081712136861,53.07479826956795],[-126.80792893030606,53.0746929121191],[-126.80768112918659,53.07459151823133],[-126.80742963918135,53.07449351062354],[-126.80716985147617,53.074401161820916],[-126.80690359293635,53.07431221823499],[-126.80663826280087,53.074223267712114],[-126.8063794164925,53.074131475497076],[-126.80613169678504,53.074033995182276],[-126.80590153979055,53.07392631874427],[-126.80570561132313,53.073799915204646],[-126.80557727957247,53.07363886977812],[-126.80547391814868,53.07346309603545],[-126.8053501482036,53.07329641659753],[-126.80516700668677,53.07315311704905],[-126.80499225032553,53.07300863953986],[-126.80490859985886,53.0728372130433],[-126.80483141123706,53.072661816115186],[-126.80474392747077,53.07248536873753],[-126.80461103290708,53.07232940013819],[-126.80438451098772,53.072215528578475],[-126.8041310988311,53.07211360072157],[-126.80389529586724,53.07200315299611],[-126.8036696561322,53.07188591248001],[-126.80345415417064,53.07176132362118],[-126.80324236040939,53.07163502387642],[-126.80303240542763,53.07150702597505],[-126.80283263065644,53.07137392060795],[-126.8026393334205,53.07123685351545],[-126.80244602675317,53.07109922142201],[-126.80225182581682,53.070963271394945],[-126.80205668412506,53.07082733639888],[-126.8018550567403,53.07069479773172],[-126.80164974933471,53.07056453371793],[-126.80144256936578,53.0704348378347],[-126.80123262575275,53.07030683664613],[-126.80102176686725,53.07017940603754],[-126.80080720854643,53.07005480593948],[-126.8005760219535,53.06993983817753],[-126.80035038740877,53.06982259128341],[-126.80015063328788,53.06968891647577],[-126.8000008962085,53.069580683688685],[-126.79995729949681,53.06954903941497],[-126.79977042829594,53.06940520090363],[-126.79960032316878,53.06925732225215],[-126.79945256200567,53.06910536577539],[-126.7994370941409,53.06892899156672],[-126.79942246896508,53.06874812055247],[-126.79934534220713,53.068574404690196],[-126.79925889511505,53.06840130762148],[-126.79915197731651,53.06823395164232],[-126.79899206812115,53.06808152095085],[-126.79875081971748,53.06797782296136],[-126.79850860317174,53.0678718899666],[-126.79829589082024,53.067745022765095],[-126.79807768188124,53.06762323919064],[-126.79781711983439,53.06753647776104],[-126.7975620447082,53.06744239974196],[-126.79731524828892,53.06734153313992],[-126.79703639713233,53.06727618353836],[-126.79678599088676,53.06718207234253],[-126.79656774710877,53.06705804516237],[-126.79633541494263,53.06693075098417],[-126.79614403857094,53.066794216022075],[-126.79610911922752,53.066626927646496],[-126.79619991128534,53.06643470487538],[-126.79617082039631,53.0662791472435],[-126.79590850033804,53.06619687559241],[-126.7956255213515,53.066110260418526],[-126.79542761633965,53.06597376825451],[-126.7952825669505,53.06581507396698],[-126.79521389157118,53.06564185413489],[-126.79520486156608,53.06545926839591],[-126.7952641422258,53.06528126056078],[-126.79529731163792,53.0651056785453],[-126.79519316594407,53.064934938564356],[-126.79508344513847,53.06476591233044],[-126.79511668391974,53.06459481197505],[-126.79518361266172,53.064425161061706],[-126.79523710628528,53.06423767205395],[-126.79530407598051,53.06407026181834],[-126.79541588813042,53.0639025494966],[-126.79550802900943,53.0637321637481],[-126.79549718167362,53.063552395879945],[-126.79542381232557,53.063377522302275],[-126.79527601318337,53.06322164319986],[-126.79524649753006,53.06304312151573],[-126.79526182838177,53.062863733054165],[-126.79528182856468,53.0626837483768],[-126.7952924791134,53.06250439139223],[-126.79529095706268,53.0623234400496],[-126.79529033483921,53.06214023259763],[-126.7952719812723,53.061958829823325],[-126.79521545311924,53.06178552784208],[-126.79510028054206,53.0616243907829],[-126.7949376462192,53.06147364895532],[-126.79475731350469,53.06132639658125],[-126.79458904930262,53.06117513636995],[-126.79445520162702,53.061014680099866],[-126.79433991859901,53.060847375586036],[-126.79424232540052,53.06067602561666],[-126.79416710344837,53.0605022929957],[-126.79413951560655,53.06032655468679],[-126.79416884296441,53.06014538669587],[-126.79418135608769,53.05996546126438],[-126.79416864626687,53.05978569649059],[-126.79416901896394,53.059605852674],[-126.79419464986502,53.05942695052775],[-126.79419390061524,53.05918716112293],[-126.7941839869648,53.05900738642859],[-126.79413861142085,53.058829526540826],[-126.79403359621237,53.05866158775846],[-126.79388490221646,53.058506277403374],[-126.79369996288585,53.05836128635058],[-126.79350941393406,53.058216897452745],[-126.79335345756338,53.058072840571576],[-126.79321118025814,53.057910198268914],[-126.79308481277761,53.05774912524657],[-126.79304129703736,53.057571252356034],[-126.79304258487683,53.05738971691265],[-126.79303644541602,53.05721159294342],[-126.79295566408675,53.05703901715315],[-126.79286090184718,53.0568687672857],[-126.79276145060199,53.05669799302761],[-126.7926685379013,53.05652661899223],[-126.79259335507338,53.056353440568785],[-126.79253305545197,53.05617735636039],[-126.7924811627303,53.056000659894124],[-126.79243579753657,53.055822799043256],[-126.79239321794975,53.05564436367808],[-126.79235064909562,53.055466483995886],[-126.79230808059833,53.05528860428004],[-126.79230472358354,53.05510877611924],[-126.79232753874832,53.054929337056926],[-126.79238311087092,53.05475303974473],[-126.79248343060598,53.05457028356489],[-126.79248869415467,53.05440216759422],[-126.79242467537796,53.054226108117355],[-126.7923224680391,53.05405703706915],[-126.79219794221972,53.05389370940341],[-126.79207340698802,53.05372982587359],[-126.79196376954955,53.05356304540741],[-126.79185876560808,53.05339454846252],[-126.79175470428052,53.05322604509193],[-126.79165158555568,53.0530575352983],[-126.7915475258768,53.05288903171233],[-126.79144067755699,53.0527216672564],[-126.79133790588233,53.052571639235104],[-126.79120279046091,53.052391582297325],[-126.7910940702514,53.05222310950304],[-126.7909834777522,53.05205520492958],[-126.79086084203215,53.05189242782634],[-126.79066598094111,53.051764871031516],[-126.79045422068361,53.05163294490641],[-126.79025089848835,53.05150208245711],[-126.79005401616907,53.05136613861556],[-126.7898625945739,53.05122230516939],[-126.78975302433007,53.05105831892636],[-126.789672232268,53.05088461997565],[-126.7896212891453,53.05070735073063],[-126.78960203353188,53.050526516857865],[-126.78962120405637,53.05035158443866],[-126.7897291762895,53.050178299065344],[-126.78992640325204,53.0500318651251],[-126.78998489336256,53.04986115164145],[-126.79002735819044,53.04968326632418],[-126.79006606934966,53.04950372079979],[-126.79001142662452,53.04932928217459],[-126.78993250966792,53.049155005941934],[-126.78987688899741,53.048977767935725],[-126.78985487962278,53.04879919342801],[-126.78987023845501,53.04862035990917],[-126.78989959235481,53.048440876936205],[-126.78992148737913,53.04826144384696],[-126.78992935151088,53.04808154883534],[-126.78993347865365,53.04790166984632],[-126.79016736318898,53.04771745626713],[-126.79014996445645,53.04753604498117],[-126.79017832715408,53.04735320682236],[-126.79039388048875,53.04723803322624],[-126.79065463340064,53.04714271727988],[-126.79092125577357,53.04706081688824],[-126.79119936437534,53.04699451752432],[-126.79147077346363,53.04691930704193],[-126.7917391356439,53.046830660888354],[-126.7919414007547,53.046705488628035],[-126.7920917705683,53.04655264171057],[-126.79222324726724,53.046388724915914],[-126.79234628106799,53.046222614574525],[-126.79247216124848,53.046059290813275],[-126.79259709884288,53.04589597322487],[-126.7927201717636,53.04573211221519],[-126.79284042330377,53.045567705251734],[-126.79295784311132,53.045402196622895],[-126.79307152988117,53.045236148182425],[-126.79318144354528,53.04506901338491],[-126.7932885299616,53.04490021216568],[-126.79338717405413,53.044729226483774],[-126.79346896739919,53.04455723342759],[-126.79352268887133,53.044382067380745],[-126.7935193275742,53.04420223811762],[-126.79350753113167,53.04402135396174],[-126.79351351091744,53.04384146186463],[-126.79352043238784,53.04366157238156],[-126.7935282908052,53.043482232370366],[-126.79353706521582,53.0433023214265],[-126.79354773321865,53.04312296248676],[-126.79355931735051,53.04294304157697],[-126.79356810207332,53.042763695258365],[-126.79357221328263,53.04258381558677],[-126.79356885208566,53.04240399510031],[-126.7935617544959,53.04222419075177],[-126.79355092089591,53.04204442046703],[-126.79353449344146,53.041865243562384],[-126.79350871505572,53.041685564748896],[-126.79349415601351,53.04150637524209],[-126.7935057503177,53.04132700988953],[-126.7935360462598,53.04114863932788],[-126.79357475574217,53.04097021216881],[-126.7936125130074,53.040791235587896],[-126.79363998800709,53.04061231915084],[-126.79365905364313,53.0404329034445],[-126.79367532453004,53.040253506508755],[-126.79368878575902,53.04007412844548],[-126.79369942697714,53.039894213534026],[-126.79370821486525,53.03971430210131],[-126.79371233574192,53.03953498679054],[-126.79370897419287,53.039355165988916],[-126.79370187651938,53.03917536132973],[-126.79369664705831,53.03899555305226],[-126.79369607994421,53.03881570443739],[-126.79369270796523,53.03863531887471],[-126.79369308249252,53.03845547285402],[-126.79370561657169,53.038276100831766],[-126.79374058227741,53.03809825426709],[-126.79381952508923,53.03792403828285],[-126.79389566243955,53.03774928530357],[-126.79391849289387,53.03757152025553],[-126.79389549949897,53.03739126655643],[-126.79386222989673,53.03721052616816],[-126.79385048021608,53.037031317340634],[-126.79390142318263,53.03685841006789],[-126.79402348139166,53.03669230339023],[-126.79413428964844,53.03652404013175],[-126.79421792146853,53.0363514684798],[-126.79429219689447,53.03617728337772],[-126.79435146162882,53.036000402352784],[-126.79440701551894,53.03582410204901],[-126.79452630147817,53.03566025447972],[-126.79469255941565,53.03551010182945],[-126.79487106500255,53.03536603393977],[-126.79505427324126,53.035224166214455],[-126.79532128760513,53.035018426775515],[-126.79562913906871,53.03479896475976],[-126.79582179081244,53.034662079055295],[-126.79601347894624,53.034524078965745],[-126.79620140926367,53.03438498334783],[-126.79638082082805,53.034240342142944],[-126.79651889258942,53.03408197727099],[-126.79661748360299,53.033910987913096],[-126.79663750644241,53.033733240803315],[-126.79659959323975,53.03355477319336],[-126.7965691660764,53.033376246057955],[-126.79652938575074,53.03319779099605],[-126.79648495435102,53.03301992309121],[-126.7964909305665,53.03284059437686],[-126.79655301136341,53.03266480438908],[-126.79663382125341,53.03249169377337],[-126.79681513759817,53.03234872413653],[-126.79682812054418,53.032144695846924],[-126.79687709375203,53.03196731776417],[-126.79693262736902,53.03179157168119],[-126.796873275503,53.03161492509446],[-126.79682791796391,53.031437063410024],[-126.79678814879428,53.031259163957145],[-126.79677357948934,53.031079973765046],[-126.79692015192444,53.030927709215135],[-126.79712688679977,53.03079632857985],[-126.79730913101795,53.03065390750873],[-126.7973198536216,53.0304784728288],[-126.79726801445345,53.030304016650426],[-126.79732725842955,53.030127124561034],[-126.79738090366102,53.029949714459946],[-126.79742239128235,53.02977183068056],[-126.79744610796291,53.0295929374493],[-126.79745767188918,53.029413014736996],[-126.7974617653321,53.02923313352897],[-126.79746212381598,53.02905328650895],[-126.79746248212852,53.02887343050675],[-126.79746003617728,53.02869303764289],[-126.79745293500842,53.02851379677811],[-126.79743742261304,53.02833461274143],[-126.7974032291831,53.028154434380376],[-126.79730851373068,53.02798419418551],[-126.79715524939066,53.02782947250256],[-126.79697968580582,53.027679939259215],[-126.79679946847686,53.02753156669794],[-126.79662855816515,53.02738144570259],[-126.79648556642177,53.02722608900771],[-126.79638631707678,53.02706315775806],[-126.79633639537876,53.02689092904574],[-126.79632277066979,53.0267117319874],[-126.79633147734393,53.02652902251952],[-126.79634669598194,53.02634459272575],[-126.79635356041761,53.026162451446176],[-126.79634363474642,53.025982108790664],[-126.79633747991349,53.0258028612216],[-126.79634810633657,53.02562294457098],[-126.79636997277626,53.02544406362468],[-126.79639462221216,53.0252646080724],[-126.79641553669542,53.02508517770682],[-126.79644109093366,53.02490459543906],[-126.79646571874586,53.02472401939925],[-126.79648102019617,53.02454407105708],[-126.79647583321328,53.02436705792347],[-126.79637923099459,53.024195144105015],[-126.79617140910358,53.02406768257031],[-126.79593130613034,53.02396116429709],[-126.79568006963689,53.02385921182171],[-126.79543531430274,53.02375384447728],[-126.79521459405744,53.02363543268672],[-126.79502714056075,53.023498311581015],[-126.79486651977248,53.02334755372898],[-126.79471509602273,53.02319001931372],[-126.79459049437916,53.02301829258504],[-126.79442143539868,53.02286591458408],[-126.79418228033138,53.022759951130155],[-126.79393118517764,53.02266415257382],[-126.79370491487612,53.02254801641678],[-126.79353870660312,53.02239841487852],[-126.79336510839411,53.022252233438614],[-126.79323601715502,53.022090055700744],[-126.7931143794801,53.02192615134766],[-126.79299458465825,53.02176167867508],[-126.7928757213023,53.02159663484913],[-126.7927596671578,53.021431572016105],[-126.7926519565176,53.02126364711848],[-126.79250616037281,53.02110662776569],[-126.79234647333594,53.02095530432176],[-126.79216269171737,53.020813671690405],[-126.7919456466771,53.02069074682661],[-126.79169912485833,53.02058931001977],[-126.79144253012221,53.02049802531489],[-126.79118866716581,53.02040336005404],[-126.7909531952508,53.0202934389053],[-126.79076386138512,53.02015408243614],[-126.7905819137883,53.02001018495637],[-126.79040739447319,53.0198640052659],[-126.79026536654807,53.0197080784145],[-126.79017161855869,53.019536695960056],[-126.79011508430439,53.01935890557534],[-126.79008467388824,53.019179263825976],[-126.79009252144218,53.01899880105534],[-126.79014524181667,53.018821399389054],[-126.7902194361655,53.01864440962744],[-126.79032647824648,53.01847617317987],[-126.79048904336078,53.01833108737139],[-126.7907192659551,53.01821020912805],[-126.79092601018645,53.0180816349482],[-126.79104528520377,53.017918353786264],[-126.7911073042988,53.0177392128245],[-126.79114039693583,53.01756137741239],[-126.79115665934906,53.01738142269283],[-126.79116917246697,53.01720148413344],[-126.79119197207015,53.017022041321866],[-126.79123439308626,53.01684303163551],[-126.79125440511699,53.01666472803123],[-126.79119977295207,53.01648804566421],[-126.79115630736824,53.016310167798814],[-126.79114644186261,53.016130943985],[-126.79114401887743,53.01595110547095],[-126.7911425370297,53.0157712695901],[-126.79113826206071,53.01559144345951],[-126.79111625416449,53.01541230100888],[-126.79109983692751,53.015232565241725],[-126.79109088739375,53.0150527704056],[-126.79109407599518,53.01487345890608],[-126.79110286990769,53.014693553993546],[-126.79111165915899,53.01451420489148],[-126.79111671895333,53.01433431601929],[-126.79111150349088,53.01415450500975],[-126.7910913633373,53.01397534988134],[-126.79105256492512,53.013796875667595],[-126.79100632038734,53.013619580889376],[-126.79095447548238,53.01344231466819],[-126.79089797743141,53.0132662091389],[-126.79083682003274,53.01309012584371],[-126.79077288086047,53.012914625916714],[-126.79070613450224,53.01273914475945],[-126.79063845832496,53.012564234547526],[-126.79057079747258,53.012389315215295],[-126.79050312240963,53.01221440488963],[-126.79043637826553,53.012038923507326],[-126.79037057553637,53.01186343576414],[-126.79029917890205,53.01168910601769],[-126.79022220779115,53.011515369363636],[-126.79014616339433,53.0113416354018],[-126.79007943242968,53.01116670945841],[-126.79006676506195,53.010987503818434],[-126.79006807009908,53.01080708399545],[-126.79008153722793,53.01062770324646],[-126.79010433789702,53.01044825994961],[-126.79013088232061,53.01026935631233],[-126.79015742635397,53.01009044368687],[-126.79017930052748,53.009911006521705],[-126.79018808235256,53.00973110125059],[-126.79018846095705,53.00955068749584],[-126.79021314811777,53.00937235198401],[-126.79028175109396,53.00919596331426],[-126.79036529275231,53.00902059503704],[-126.79042084875044,53.00884541424433],[-126.79040173359192,53.008671289673686],[-126.79031355732157,53.00849707209849],[-126.79022910011594,53.008322829524545],[-126.7902098968929,53.008143111592695],[-126.7902168219367,53.00796377437111],[-126.7902349301976,53.00778267686079],[-126.7903204297384,53.00761234237027],[-126.79043496204699,53.007446851282694],[-126.79055885760638,53.00728297366514],[-126.79068557006096,53.00711964177541],[-126.79081040003169,53.006956322350725],[-126.7909408645409,53.00679408555021],[-126.79107505676008,53.00663238834437],[-126.7912074066825,53.0064712591261],[-126.7913341096409,53.00630848229396],[-126.79144770868308,53.00614299630767],[-126.79153878914572,53.00597205849178],[-126.79159145609597,53.00579297865361],[-126.79160025637636,53.00561362847208],[-126.79157356743944,53.00543395172798],[-126.79151890664573,53.00525502747803],[-126.79143075968743,53.005083051345736],[-126.79130364078618,53.00492254235131],[-126.7911448925552,53.0047684130308],[-126.79097966182606,53.00461655914757],[-126.79083115759013,53.004460675342344],[-126.7907216729891,53.00429500934264],[-126.79066141788974,53.00411612212051],[-126.79064685237175,53.00393524318231],[-126.79070056088845,53.003762315206615],[-126.79081688521782,53.003593449563326],[-126.7909098441069,53.003422499358074],[-126.79099342404538,53.00324993559628],[-126.79107139799203,53.00307627982562],[-126.7911446874922,53.002902099607056],[-126.79121515899206,53.002727382425924],[-126.79129124382747,53.00255261854793],[-126.79127299565233,53.00237457012896],[-126.79117366796717,53.00220323335273],[-126.79096506437115,53.00207688763733],[-126.7907342487674,53.00196133145445],[-126.79049881785207,53.00184805586923],[-126.79026801968963,53.001732498658036],[-126.7900538696278,53.00160955021684],[-126.78987675010536,53.00146954475677],[-126.78975608928258,53.001304508313176],[-126.78964373710616,53.00113493380692],[-126.78950360386497,53.00097619511515],[-126.78935326177748,53.000820877343344],[-126.78920292095533,53.000665568328984],[-126.78905257074737,53.000509694410304],[-126.78891707906418,53.00034979439328],[-126.78883921449781,53.00017719136116],[-126.788781796213,52.999999960232174],[-126.78878419304299,52.99997865331636],[-126.788820015728,52.99979688087519],[-126.78885677869931,52.99961510211076],[-126.78888517737379,52.99943562042189],[-126.78892197690396,52.9992566472649],[-126.78893825202258,52.99907724663938],[-126.78895262505088,52.99889673814561],[-126.78895581559185,52.998716304456075],[-126.78893477207052,52.998538274051214],[-126.78888016236652,52.99836102401704],[-126.78879293935468,52.99818679804763],[-126.78866862206317,52.99802514644415],[-126.7884412865483,52.99789443913839],[-126.78844951128895,52.99773414203996],[-126.78854619921542,52.99756316814482],[-126.78833937352162,52.997431202878765],[-126.78818625662947,52.99727591092226],[-126.78807582906137,52.99710856291259],[-126.78801281969194,52.99693136850664],[-126.78797024488486,52.99674899937979],[-126.78790915462044,52.99657459798053],[-126.78777476584047,52.99642254200852],[-126.78752451718579,52.99631327690708],[-126.78726165319165,52.996228183393306],[-126.78698686074101,52.99615438363407],[-126.78670399016994,52.996097436800106],[-126.7864124119566,52.99607417358486],[-126.786111054443,52.99607673911285],[-126.78581580664229,52.99605686061681],[-126.78552220770526,52.99602519987977],[-126.78522687757354,52.99600082919761],[-126.78492991972301,52.99598935970583],[-126.78463210425606,52.99598237747329],[-126.7843342831395,52.995974273952115],[-126.78402811924208,52.99596958688253],[-126.783774822279,52.99589675730242],[-126.7835790094734,52.99575350474929],[-126.78330268489775,52.99569650628336],[-126.78300131511087,52.995699072926264],[-126.78271682534842,52.99575642592101],[-126.78245242103554,52.995839982904656],[-126.78220132125216,52.99593746267716],[-126.78195788500346,52.99604496727706],[-126.78183782242715,52.99616398856764],[-126.78182544923594,52.9963030217948],[-126.78189029865128,52.99637879077375],[-126.78203219759322,52.99643219300039],[-126.78223619219325,52.99656418802903],[-126.78244669142066,52.996695018961645],[-126.782634947446,52.99683328538133],[-126.78275741343158,52.996997196722916],[-126.78277658010705,52.99717691705442],[-126.78269016181545,52.99734893850872],[-126.78254378837794,52.99750847571232],[-126.78237290594062,52.9976547195053],[-126.78219074294441,52.99779656453941],[-126.78200391034748,52.99793787547446],[-126.78182175512926,52.998080275650985],[-126.78165182453431,52.9982281973473],[-126.7814941437725,52.99838219625195],[-126.78133927902971,52.99853674103175],[-126.78117686136542,52.9986874181066],[-126.78099274120571,52.99882478286088],[-126.7807350343616,52.998918941245925],[-126.78048317181853,52.99902649826781],[-126.78023418689665,52.999137962177976],[-126.78007150586723,52.99927462774997],[-126.78001954376884,52.99944305725503],[-126.7800248236842,52.999629037193905],[-126.78003478241212,52.99981610673108],[-126.78002509111224,52.99999994452755],[-126.78011122262309,53.00016690457259],[-126.78025832050878,53.00030039979867],[-126.78028246457407,53.00044591425518],[-126.78023815786058,53.00062549878415],[-126.78020322802575,53.00080669760459],[-126.78022609784863,53.00098528177515],[-126.78025366155016,53.001164946469736],[-126.78024205321057,53.00134599988285],[-126.78025278936325,53.00152409951418],[-126.78033714063831,53.001695544365376],[-126.78044755529743,53.00186401969877],[-126.780534762015,53.00203881615882],[-126.78057351572946,53.00221785080582],[-126.78049262588146,53.002387027504994],[-126.78039309225998,53.002557457048994],[-126.78027767001117,53.0027263062875],[-126.78014627211775,53.00288965823849],[-126.77999794177755,53.00304583384239],[-126.77983171780933,53.00319372778841],[-126.77964951222825,53.00333500373207],[-126.7794541480443,53.003471328275964],[-126.77924845269611,53.003603794275215],[-126.77903613390171,53.003731821379944],[-126.77882189596454,53.00385705485608],[-126.77860480872997,53.00398007456626],[-126.77838398157179,53.00410198901346],[-126.77815935408184,53.00422113117017],[-126.77793190241407,53.00433861514342],[-126.77770065486607,53.00445275302728],[-126.77746656266143,53.00456411225953],[-126.77722959039878,53.00467157248954],[-126.77698120283313,53.0047673370015],[-126.77669948778433,53.00482746233356],[-126.77641878421895,53.004891497828964],[-126.7761552364671,53.004975034142575],[-126.77589551281869,53.00506359172968],[-126.77563960273442,53.00515659695337],[-126.7753865398091,53.005251832986865],[-126.77513633950205,53.00535096714999],[-126.77489842636926,53.005458984563475],[-126.77470210108932,53.0055947424484],[-126.77462870883191,53.00576722703555],[-126.77457967295177,53.00594459860979],[-126.77453813355926,53.00612360623817],[-126.77449190967499,53.00630207983076],[-126.77443071671452,53.00647784578797],[-126.7743423587369,53.00664875199996],[-126.77423152976547,53.00681588815382],[-126.77411883317572,53.0069830274762],[-126.77402392223605,53.0071534205973],[-126.77395336259121,53.00732757130814],[-126.7738940278845,53.00750388942561],[-126.77383376684483,53.00768021356994],[-126.77377184376385,53.0074060814235],[-126.77372658354894,53.00722764373747],[-126.77368320539621,53.007049202634974],[-126.77364541224725,53.006870715897136],[-126.7736169673644,53.006692176771054],[-126.7736034401268,53.006513530799474],[-126.7736113860135,53.00633475291151],[-126.77363892776201,53.00615528168672],[-126.77367765358015,53.005975737061426],[-126.77371919645286,53.005796729720466],[-126.7737542137732,53.005617774124325],[-126.77377336807054,53.00543947838379],[-126.77375147943984,53.00526257249029],[-126.77365965097287,53.00508948714184],[-126.77356319500166,53.004918108432484],[-126.77345096388748,53.0047513243321],[-126.77329882102964,53.004597119118095],[-126.77312998311618,53.00444863495778],[-126.77294352960888,53.004306980453315],[-126.77284341678634,53.00413955154319],[-126.77276930271456,53.003964672959384],[-126.77261990106129,53.00380653136499],[-126.77240027375767,53.00368806944124],[-126.77214112730748,53.00360291814072],[-126.77186722350872,53.00352739217556],[-126.77159425127307,53.00345130368032],[-126.77132680318701,53.00337180775563],[-126.77106119695793,53.0032900670132],[-126.7708065821794,53.003197603955165],[-126.77056297875791,53.00309386272004],[-126.77031568970665,53.00299350676233],[-126.77004733138874,53.00291457866092],[-126.76978724833855,53.00282830775899],[-126.7695518887536,53.002716110851246],[-126.76934882975345,53.002584088321136],[-126.76926085383155,53.00241545656303],[-126.76926218608867,53.002231674756565],[-126.76915842075817,53.00206762817073],[-126.76899604555794,53.00191348406914],[-126.76880223276918,53.001776362197326],[-126.76855123776933,53.001676026700665],[-126.76832704523416,53.00156150444852],[-126.76818606983076,53.001403867035954],[-126.76806917539062,53.00123597851235],[-126.76797271037658,53.00106236293015],[-126.76784939960552,53.000901239366684],[-126.76763444358402,53.00078106175774],[-126.76739168628718,53.00067170561239],[-126.7671960732574,53.00053682495915],[-126.76701801201354,53.00039230945453],[-126.76685753274297,53.000239835349554],[-126.76665548516185,53.000110607445464],[-126.76641831284402,53.000000092411746],[-126.76625642255942,52.99997537149872],[-126.76595818838227,52.99994648910052],[-126.7656585071416,52.9999400356863],[-126.76537214955569,52.99989650729467],[-126.76509559582696,52.99982770628198],[-126.7648118046451,52.99977072202236],[-126.76451704339934,52.99972724607178],[-126.76422321336108,52.99968320754951],[-126.76394498282201,52.99962394403451],[-126.76369702539618,52.99953590480914],[-126.76348850165941,52.999409510393846],[-126.7632992501193,52.99926449698191],[-126.76310545246288,52.999125680295535],[-126.76290890959302,52.9989902427567],[-126.76270867573174,52.99885706990122],[-126.7625010586378,52.99872842672658],[-126.7623008272879,52.99859525315783],[-126.76210520511097,52.998459252514294],[-126.76188559938362,52.998337964956775],[-126.76167706683111,52.99821044680882],[-126.76152673600664,52.99804950008138],[-126.76134141023073,52.99791454326077],[-126.76109063622944,52.99782427561308],[-126.76082050161602,52.99774757919897],[-126.76054298346429,52.997675412074],[-126.76026820802691,52.99760042967213],[-126.76000722685872,52.997513587255455],[-126.75976003015916,52.99741432917515],[-126.75951738235202,52.99730887366079],[-126.75927382530965,52.99720510883996],[-126.75902478597266,52.997106981658256],[-126.75877388670975,52.997009986491555],[-126.75852207306188,52.996913561442405],[-126.75826841424482,52.99681825932928],[-126.75800737210636,52.996727495383745],[-126.7577509338861,52.99663277479753],[-126.75751388400703,52.99652672339135],[-126.75731192225479,52.99639971111267],[-126.7571459544076,52.99625062071496],[-126.75699105962684,52.996093614993754],[-126.75682137194885,52.99594511277775],[-126.75662394811914,52.995810226188134],[-126.75640527752114,52.99568781081457],[-126.75615531318832,52.995589683517785],[-126.75590351373593,52.995493243831326],[-126.75570332833819,52.99536062350656],[-126.75551790340056,52.995218378923106],[-126.75529651195063,52.99510045224226],[-126.75502635542536,52.99502094580462],[-126.7547320202018,52.99499817784862],[-126.75448684080193,52.994906739814645],[-126.75439606351082,52.99473418812991],[-126.75427649020652,52.99456855298436],[-126.75411977094723,52.99441379625483],[-126.75399374039606,52.994252675425095],[-126.75393091724999,52.99407771237616],[-126.7538922633037,52.99389754767667],[-126.75382665941017,52.99372315812635],[-126.75369965181888,52.99355980204167],[-126.75352535795079,52.99341300081855],[-126.7533067086086,52.99329057952386],[-126.75308344257668,52.99317041949145],[-126.75290270343997,52.99302870556198],[-126.7527404714036,52.99287734384596],[-126.75259305411141,52.992720284470074],[-126.75245865502642,52.99255978009709],[-126.75235208244875,52.99239068921281],[-126.75225573136673,52.99221873605049],[-126.75214362722134,52.99205248616278],[-126.75199165674962,52.99190105789872],[-126.7518026067476,52.99176331276606],[-126.75159317158051,52.99163354129758],[-126.7513772589596,52.99150717245649],[-126.75116599022718,52.9913790972525],[-126.75093812745484,52.99126232412948],[-126.75065170506033,52.99121092560692],[-126.75041589070604,52.99111885469481],[-126.75023974249085,52.99097150453724],[-126.7499816039075,52.990884057118286],[-126.74970049625026,52.99081636970661],[-126.74941416716749,52.9907700056912],[-126.74911712729218,52.99075116754483],[-126.74882006778469,52.99073119923975],[-126.74853728462857,52.99067416962589],[-126.74825545241303,52.99061768910438],[-126.74795784813955,52.990620133530534],[-126.74765922975685,52.990617545545646],[-126.74736147301375,52.990610469054694],[-126.7470637605165,52.99060675324716],[-126.74676616141507,52.990608638828725],[-126.74646671108009,52.99061222072098],[-126.74617217860705,52.99062977338741],[-126.74588568928316,52.990680326805],[-126.74560017914284,52.99073312343488],[-126.74530976023145,52.99077249458067],[-126.74501393229569,52.99076988224751],[-126.7447230594489,52.99072970321195],[-126.7444393608635,52.990673781193024],[-126.74415660358147,52.99061786151678],[-126.74387383716133,52.990561376454885],[-126.74359015574339,52.99050545229252],[-126.7433092175052,52.990446713207675],[-126.7430254542003,52.990386870691275],[-126.7427527060109,52.990315752379324],[-126.74251571907169,52.99020911468055],[-126.74230909165924,52.990078188569974],[-126.74212745641317,52.98993533427794],[-126.74192458798586,52.9898049485912],[-126.74170318424274,52.98968251421323],[-126.74146466064451,52.989701388080114],[-126.74140161628829,52.98988443774571],[-126.74125219985409,52.99003777507227],[-126.74109249822315,52.990189491509604],[-126.7409422322532,52.99034731602627],[-126.74094342287982,52.9905226823729],[-126.74098203840822,52.990703972124905],[-126.74101507614083,52.99088641747876],[-126.74101537081977,52.991063465775575],[-126.74085183505098,52.99120960301341],[-126.74063473175723,52.99133422992174],[-126.7404326963435,52.99146604996299],[-126.74026646775755,52.991618926664586],[-126.74009643334516,52.99176678892111],[-126.73985070231146,52.991855179996904],[-126.73956050433864,52.99190798232143],[-126.73927412527895,52.99196580702281],[-126.73905769636822,52.992021516145385],[-126.73868893214504,52.99206360312499],[-126.73841841369321,52.99212189111226],[-126.73826138374352,52.99226686326344],[-126.73815807954473,52.9924434395014],[-126.73807710767369,52.99261651410399],[-126.73805874475745,52.9927953642923],[-126.73804888317034,52.99297975511544],[-126.73800599336491,52.99303493148195],[-126.73788830338563,52.99308217624785],[-126.73761344001997,52.99305139981518],[-126.73731327716825,52.99301405756185],[-126.73702411815032,52.99301978316147],[-126.7367220055557,52.993086108662645],[-126.73644605979791,52.993153946295635],[-126.73620415179228,52.99324846436159],[-126.73590487133153,52.99326209438687],[-126.73561531755752,52.99319162931197],[-126.73532787809815,52.993134588195005],[-126.73508010431499,52.99310587803376],[-126.73471830667448,52.993119903807234],[-126.73438954842769,52.993155569254],[-126.73417636924319,52.99318491122542],[-126.73388415604116,52.993175524948754],[-126.73358638808818,52.99316953421689],[-126.73329466566187,52.993134926167905],[-126.73300918271016,52.993082914285594],[-126.7327218872244,52.99303483944976],[-126.73242914436695,52.99299463276969],[-126.73214826300129,52.99293922851887],[-126.73189289839777,52.99284837178778],[-126.73165031695582,52.9927411824559],[-126.7314068636919,52.992637915539746],[-126.73116340741966,52.9925335365372],[-126.7309236306405,52.99242688411955],[-126.73069124720315,52.99231514731678],[-126.73048647341143,52.99218194818752],[-126.73027626245884,52.99205719112403],[-126.72999533236765,52.99199842036643],[-126.72972896507031,52.99191826800634],[-126.72949655339755,52.99180540845815],[-126.72932237907555,52.991660247501606],[-126.72917226112497,52.99150317600419],[-126.72902215396863,52.99134666900729],[-126.7289063800417,52.99128743001633],[-126.72876776508568,52.99125691109141],[-126.72847297122738,52.99125985368624],[-126.728168636671,52.99125052822455],[-126.72788035650481,52.9912528733014],[-126.72760219741676,52.99130053373402],[-126.72733588924149,52.991387340270315],[-126.72706286509413,52.99146298193491],[-126.7268125278645,52.99155584740769],[-126.72660859211372,52.991688210985096],[-126.72642252715295,52.991829428614594],[-126.7262486683061,52.99197561777235],[-126.72608984628566,52.99212730791364],[-126.7259516677667,52.99228672363678],[-126.72583130829888,52.992451067538354],[-126.72575138920396,52.992633647218106],[-126.72559654150989,52.99274553650233],[-126.72528425511004,52.99270823831271],[-126.72502245414519,52.992622444452735],[-126.72475698507634,52.99253947846342],[-126.72447694675232,52.99247844798437],[-126.72418260734592,52.992453362831874],[-126.72388471225408,52.99243950444719],[-126.72358776725964,52.99242619528045],[-126.72329084166913,52.99241401477905],[-126.72299297152396,52.99240070979234],[-126.72269686694652,52.99238235516305],[-126.72240073002367,52.992361203055495],[-126.7221030549747,52.99236022086044],[-126.72180554722938,52.992368210385905],[-126.72150946240954,52.99235097322405],[-126.72120410100489,52.99233603320355],[-126.72092419256595,52.99228227272238],[-126.72063782803302,52.992232477509],[-126.72034960779261,52.99218325770715],[-126.72005953168758,52.99213460433973],[-126.71980800538634,52.99204817143445],[-126.71960417904116,52.9919132714475],[-126.71936905973051,52.99180377032643],[-126.71911555713216,52.9917106246078],[-126.71885559876935,52.991621444176964],[-126.71859472956118,52.99153395405908],[-126.71833569886597,52.9914447668309],[-126.7180793943406,52.99135163596453],[-126.71782403150745,52.991258507773125],[-126.71763514369925,52.99117841221697],[-126.71735623413265,52.991072535355016],[-126.71701873791207,52.99103257182179],[-126.71672780862701,52.990988397750044],[-126.71644868517419,52.990924536816266],[-126.71617497161321,52.990849445656984],[-126.71592428799866,52.99075627597471],[-126.71571871797393,52.99062753850281],[-126.71552972526034,52.99048581801617],[-126.7153278234107,52.99035313112601],[-126.71512593232146,52.99022100858772],[-126.71493420302102,52.99008322123806],[-126.7147702892661,52.989934059250004],[-126.71462673533757,52.98977580906805],[-126.71446652735001,52.98962494781041],[-126.71427468042762,52.989479871912124],[-126.71411191329206,52.98934359304149],[-126.71404732030112,52.989164128782186],[-126.71396418281857,52.98899150916058],[-126.71380483965268,52.98883671525863],[-126.71359444021557,52.98869679759783],[-126.7133457950316,52.98861369519307],[-126.71306185611544,52.98859524288683],[-126.71275607273726,52.98860941844173],[-126.71244753548301,52.988625850981116],[-126.71214619292397,52.98862711606815],[-126.71184297126072,52.98862670639876],[-126.71155518879607,52.98860155027308],[-126.71130812342835,52.988501069744515],[-126.71109602732065,52.98837067823542],[-126.71088849596168,52.98823466494084],[-126.71074227398391,52.98808258471988],[-126.71066757796963,52.98791215299306],[-126.71062726595532,52.98773310518381],[-126.71060741187905,52.987550007546616],[-126.7105941331319,52.98736912034971],[-126.71059113657664,52.987189847518486],[-126.71060025034967,52.9870099368961],[-126.71061311055294,52.98683001263222],[-126.71064290622,52.98665950659715],[-126.71063212065235,52.98651613884474],[-126.71072854710373,52.98631329034027],[-126.71078871180228,52.986117392774545],[-126.71076617912776,52.98594103455443],[-126.71074830350022,52.985764657195745],[-126.71069962770476,52.98558790076275],[-126.71063511100998,52.98541179560089],[-126.71056778526616,52.98523459571779],[-126.7105079169989,52.98505790663037],[-126.7104629704739,52.984880006986295],[-126.71042546245415,52.98470149770757],[-126.71037958581681,52.98452416837142],[-126.71032252520506,52.984347462204],[-126.7102822273083,52.984168969642326],[-126.71034651534123,52.9839965791729],[-126.71048849404296,52.983839399379185],[-126.71052000389147,52.98365991816381],[-126.71048903381225,52.98348137833209],[-126.71041713382932,52.983309799643095],[-126.71048512296343,52.98313570135161],[-126.71049425139017,52.98295579917537],[-126.71050149912753,52.982775899351154],[-126.71008768178031,52.982741979123894],[-126.70979071531096,52.98272303283732],[-126.70949982257687,52.98273262828413],[-126.70922497543273,52.98280936071447],[-126.70899175788088,52.98292114454572],[-126.70881317234348,52.98306453114604],[-126.70866277439825,52.98322007425624],[-126.70852080953809,52.98337836340353],[-126.70838165885014,52.98353720021245],[-126.70822940148233,52.983693318648754],[-126.70806405583055,52.98384783015672],[-126.70790525526684,52.98400285790431],[-126.70777075677196,52.98416166596556],[-126.7076783527851,52.984326944540896],[-126.70764861221221,52.984501376147215],[-126.70766469282766,52.98468281184995],[-126.7076938702955,52.98486641003634],[-126.70770808560367,52.98504785689494],[-126.70771293549754,52.985227118826955],[-126.70771779468366,52.985406936486264],[-126.70772171376638,52.985586768735395],[-126.70772378198834,52.985766603113696],[-126.70772304439745,52.98594646328386],[-126.70772043171375,52.986125769926524],[-126.7077206193373,52.986305615538356],[-126.70772455344041,52.98648544760126],[-126.7077331442384,52.98666524272093],[-126.7077417352583,52.986845046784346],[-126.70774659475116,52.98702486426869],[-126.7077439821005,52.98720417079634],[-126.70773670701365,52.987384070064465],[-126.70772663130371,52.98756342136136],[-126.70771377358842,52.98774334514172],[-126.70770089158657,52.987922713245304],[-126.70768056131202,52.98810212604348],[-126.70766021593965,52.988281538908524],[-126.70765760284745,52.98846084529987],[-126.70765034210636,52.988640744338156],[-126.70766078957877,52.98881997228561],[-126.70768708907725,52.98899910504826],[-126.70771621364375,52.98917934139279],[-126.70774628808691,52.98936012781024],[-126.70775858332146,52.98953822401586],[-126.7076408780003,52.98969805103535],[-126.70739437110561,52.989798705109195],[-126.7071431964842,52.989898821889724],[-126.70693804345468,52.99001771175975],[-126.70685505521887,52.990189091178735],[-126.70680113829332,52.990369825506725],[-126.70676678285717,52.990548201379866],[-126.70675392032557,52.99072813369898],[-126.70672715838248,52.990914307950106],[-126.70664973739258,52.99108397737659],[-126.70643899815721,52.991204020301645],[-126.70616048918528,52.99128861073337],[-126.70587379903719,52.991330103262335],[-126.70557170682385,52.991343117359854],[-126.70527056787921,52.991357810308024],[-126.7049877011445,52.99140488062091],[-126.70472211939344,52.99148154636112],[-126.70446519156468,52.99157329188048],[-126.70421208157713,52.99167117264288],[-126.7039571008614,52.99176794345594],[-126.70369729828424,52.99185577797603],[-126.70342510815921,52.991928553733636],[-126.70313962962055,52.99198684974781],[-126.7028463472979,52.9920255772429],[-126.70255266262453,52.99203908923798],[-126.7022567730236,52.992033008254175],[-126.70195885678422,52.99201629772402],[-126.70165995403096,52.99199678642274],[-126.70136205100943,52.99198175067133],[-126.70106436639944,52.991979039067395],[-126.70076688855849,52.991989772243784],[-126.70047048940813,52.992008898002105],[-126.7001732384528,52.992032519290085],[-126.69987600898817,52.99205837186066],[-126.69957876650294,52.99208254739409],[-126.6992823847511,52.99210279958166],[-126.69898680839452,52.992115758104866],[-126.6986919972629,52.99211806152004],[-126.6983978596794,52.9921041165271],[-126.69810620092528,52.992071106552785],[-126.69781621551067,52.992026324525796],[-126.6975261570154,52.99197705100421],[-126.69723522315529,52.99193170840109],[-126.69694353900434,52.99189701934749],[-126.69663269260964,52.99188820679069],[-126.69638687964844,52.99197706299437],[-126.69615082328136,52.99209107820253],[-126.69592333827786,52.992216238985286],[-126.69571372705813,52.99235082309579],[-126.69553596089985,52.992491942312164],[-126.69543589901335,52.99264941132387],[-126.69545297534196,52.99283812978019],[-126.69543261844576,52.993019216136645],[-126.69529330489263,52.99317299901821],[-126.69510340649457,52.99331474483448],[-126.69489377817646,52.99344877165422],[-126.69468216003584,52.99357440111497],[-126.69445545109514,52.99369115458236],[-126.69422593103346,52.99380680359066],[-126.694008674452,52.99393022387351],[-126.69380747164165,52.99406587543529],[-126.69360627661585,52.99420208238743],[-126.6933917804807,52.99432380888291],[-126.69314604708127,52.99441881621087],[-126.69286816632803,52.99448712745923],[-126.69257501250799,52.994535348714194],[-126.69228254317706,52.99456788633526],[-126.69198593077405,52.99457523045605],[-126.69168530345726,52.99456522421882],[-126.69138733717867,52.994546246093265],[-126.69108999606841,52.99450876982562],[-126.69079660611337,52.994484716381486],[-126.69051343868615,52.994515509783135],[-126.69024041993198,52.99459666828728],[-126.6899596356999,52.9946593778736],[-126.68967973083046,52.99471928472256],[-126.68941037778396,52.994796502356955],[-126.68913551622074,52.99487934539914],[-126.68886633361058,52.99496720160906],[-126.68868925965575,52.995095979886045],[-126.68860995656419,52.99526957400645],[-126.68857752299401,52.99545633207047],[-126.68857017115519,52.99563566446907],[-126.6885917638898,52.995816513122286],[-126.68859746899142,52.995996325022396],[-126.688551808669,52.99617308418075],[-126.6884772211207,52.996349447460815],[-126.68838767069852,52.996524777476864],[-126.68829626831176,52.99670011821367],[-126.68821512160117,52.99687539899385],[-126.68815822529352,52.99704997339709],[-126.68813867036576,52.99722545934018],[-126.68815735547741,52.99740015731573],[-126.68819751843054,52.997575285706205],[-126.68825447766993,52.997750324986875],[-126.6883235660547,52.99792472865561],[-126.68840198016028,52.99809963361743],[-126.6884850680815,52.998274520185795],[-126.68857096335381,52.99844938132229],[-126.68865497830883,52.998624262328924],[-126.68873341915007,52.99879973161771],[-126.68880251443521,52.99897525543509],[-126.68885950521091,52.99915197047219],[-126.68889971819011,52.99932990404952],[-126.68892596004791,52.99950903978381],[-126.6889428739297,52.999689350553794],[-126.6889541858398,52.99986857347877],[-126.68896097827637,53.00000019467036],[-126.68895290527256,53.00025012586065],[-126.68894089008111,53.00043004978374],[-126.68889053483481,53.00060570649927],[-126.68881026926992,53.000777620438384],[-126.6887141045238,53.00094795081499],[-126.68861045531094,53.001117195280266],[-126.68850868077772,53.00128699344622],[-126.68841531475306,53.00145786296775],[-126.68833132206001,53.001630362992444],[-126.68824732275444,53.0018034187696],[-126.68816520408254,53.00197646348987],[-126.6880858858661,53.00215004758491],[-126.6880121844926,53.00232472835193],[-126.68794408159738,53.00249936742521],[-126.68788532851119,53.002675081414786],[-126.6878452844576,53.00285348312615],[-126.6878380039952,53.003038417020015],[-126.68784570620495,53.003225504606256],[-126.68784868947968,53.00340981383103],[-126.6878263776015,53.00358867677808],[-126.68776002058564,53.003756026298774],[-126.68763745130948,53.00391025692128],[-126.68747740656036,53.00405574145324],[-126.68729110307937,53.004193534922145],[-126.6870860700068,53.00432751078988],[-126.68686978247749,53.0044581991424],[-126.68665257681296,53.004589448220564],[-126.68644097249711,53.004721784828256],[-126.68624344555825,53.004858521329275],[-126.68606000504325,53.005000213535084],[-126.68588128552376,53.0051458043939],[-126.68570255581197,53.00529083922764],[-126.6855200465407,53.00543308987932],[-126.68532622835242,53.005568682638845],[-126.68511731393346,53.00569427779924],[-126.68488765841023,53.00580710220449],[-126.68464196610671,53.005909943251005],[-126.68438777211884,53.00600610083766],[-126.68413073956792,53.00609947743499],[-126.68387459564296,53.00619060720448],[-126.68360992646377,53.00627450672461],[-126.68334335947364,53.00635561077731],[-126.68307961989848,53.00643893894277],[-126.68282347167317,53.006530066411074],[-126.68258438258475,53.00663733807982],[-126.68235477828544,53.00675408353451],[-126.68212040881826,53.006865253335775],[-126.68186519673611,53.00695637325828],[-126.68158631103722,53.00702690374006],[-126.68130173460428,53.007091854713856],[-126.68103319579336,53.007167926847764],[-126.68079870080966,53.00727068607863],[-126.6805991606594,53.0074001452745],[-126.68042133818662,53.007545722308784],[-126.68025485482964,53.0076990774993],[-126.68008740250947,53.00785075271494],[-126.67991894552146,53.007998516023214],[-126.67975709094574,53.00815016742159],[-126.67959617587138,53.00830180419933],[-126.67943147567938,53.0084512304095],[-126.67925456770253,53.00859567972817],[-126.67905883938545,53.00873070797965],[-126.67885654821113,53.008863541531674],[-126.67867902676157,53.00902871913013],[-126.67857081516729,53.009149805246835],[-126.67847194537825,53.00927139330325],[-126.67832107531237,53.00941008857943],[-126.67843384580385,53.00963242904264],[-126.67852808873634,53.00980557185215],[-126.6784795997488,53.00998457374058],[-126.6784226818126,53.010161391941956],[-126.67835828736081,53.010337688340954],[-126.6783033156321,53.01051953323048],[-126.67819293229341,53.01067984155437],[-126.67795661888277,53.010788216927494],[-126.67772039054606,53.010901064549316],[-126.67754628613933,53.01104718019762],[-126.6773863228634,53.01120161397438],[-126.67721881078165,53.01135104391452],[-126.67701923156321,53.011479932037304],[-126.67676590117601,53.01157439129336],[-126.67650219666031,53.0116627509731],[-126.67627439747912,53.01177835309134],[-126.67606264473775,53.01190562403271],[-126.67579694512139,53.0119861497102],[-126.67556249996042,53.01209450045752],[-126.67537621164611,53.01223787666665],[-126.67530421832545,53.01240693553682],[-126.67527067441867,53.012587535468995],[-126.67520437854064,53.01276272013786],[-126.675148392987,53.012940086822745],[-126.67512048424446,53.01312289548396],[-126.6750578939111,53.01329637349687],[-126.67491563828476,53.01344958172614],[-126.67472931522572,53.01359128061588],[-126.67452986024448,53.01372912790148],[-126.67433317012308,53.013865273724974],[-126.6741655746435,53.01401078202497],[-126.67407870919983,53.01418440710555],[-126.67399555899718,53.014356881362396],[-126.67393113981596,53.01453317490762],[-126.67388171797226,53.014713309103065],[-126.67381540409342,53.01488792806865],[-126.67367591386889,53.01503999826167],[-126.67343117960016,53.01514896796789],[-126.67316358773984,53.01522949821818],[-126.67288206164913,53.0153734135729],[-126.67274076213212,53.01547002152449],[-126.67257226712003,53.015618894116315],[-126.67240567953141,53.01576944087159],[-126.6722343713913,53.015917208433784],[-126.67204993088416,53.01606112416553],[-126.67187204286604,53.01620668756427],[-126.67173256800088,53.016360440485606],[-126.67173079568079,53.01654309903989],[-126.67172803799592,53.01672295734716],[-126.67172807353121,53.01690280869353],[-126.67172251391051,53.017082127128994],[-126.67171602203076,53.017262006642525],[-126.67170858923434,53.01744190045858],[-126.67169369406979,53.017621271993576],[-126.6716713154984,53.01780068611719],[-126.67168161835109,53.01797991413357],[-126.67168913689349,53.018159713773244],[-126.67166298836885,53.0183369082198],[-126.67165576496491,53.01852912667885],[-126.67164510438043,53.0186815809899],[-126.67166857463098,53.01886689243908],[-126.67164165891973,53.01905417604128],[-126.67163059748617,53.019240813563755],[-126.67159792925649,53.019418600785045],[-126.67162944633351,53.01958089975102],[-126.67164842769759,53.01977800682259],[-126.67165226534506,53.01996119781776],[-126.67168584788402,53.02013693144405],[-126.67179848385251,53.020292600953475],[-126.67203108420874,53.02041734139781],[-126.67217259445508,53.020568928639356],[-126.67221002644422,53.02075079862281],[-126.67225297470061,53.020928163947936],[-126.67231924450282,53.021103711043004],[-126.6723892315946,53.02127811635948],[-126.6724610865075,53.021452510973134],[-126.67254505994975,53.021625151152435],[-126.67261132324644,53.02180014227419],[-126.67267479631768,53.021976260828275],[-126.67276254185178,53.022151129345225],[-126.67278212460448,53.02232637755136],[-126.67272145837626,53.02250488918747],[-126.6726092471836,53.0226719334756],[-126.67245210156331,53.022830825241826],[-126.67223835296666,53.022954182083545],[-126.671974311294,53.023026280223995],[-126.67168471302888,53.023076112503006],[-126.67139039396804,53.023123165103264],[-126.6711037117904,53.02318082311804],[-126.67082279898653,53.023249097219384],[-126.67061837129413,53.023371833307266],[-126.67045457528336,53.02352460161639],[-126.67029929456373,53.02368403556064],[-126.67012510332502,53.02382957445395],[-126.66990653188522,53.02394343423879],[-126.66964453287197,53.02402727662806],[-126.6693645973482,53.02409833849278],[-126.66909033629885,53.02417497019042],[-126.6688312222368,53.02426384128324],[-126.66857496248144,53.024356621983294],[-126.66831584003825,53.02444604775623],[-126.66804908582513,53.02452431975867],[-126.66777184988867,53.02458975982033],[-126.66749080788911,53.02465073860949],[-126.66721453169488,53.02471841299066],[-126.66694874388368,53.024799473865535],[-126.66668583397279,53.024885000015594],[-126.66641627414586,53.02496383991327],[-126.66613614510148,53.02502424553041],[-126.66583910474098,53.02501807849602],[-126.66554897226395,53.02497601458973],[-126.66526787032245,53.0249142941517],[-126.66498481394994,53.02484697241699],[-126.66470003459247,53.0248480213821],[-126.66442580403542,53.02492743881444],[-126.66418559496864,53.02503188062241],[-126.66397851233819,53.02516526943835],[-126.66383051844623,53.02519635667718],[-126.66370336809108,53.02518643140543],[-126.66341209151597,53.02513035751114],[-126.66314477982425,53.02505510806093],[-126.66291051139379,53.0249421299213],[-126.66264397681229,53.024856225401095],[-126.66234709538567,53.02486013351348],[-126.66208217123437,53.02493781690585],[-126.6618760148308,53.02507063205696],[-126.66167077471778,53.025202885906126],[-126.66144567366537,53.02531956323229],[-126.66118747165974,53.02540897698574],[-126.6609311795127,53.02550117632047],[-126.66067593201001,53.02560009244786],[-126.66046396786997,53.025721176424],[-126.66033295323254,53.02588270201947],[-126.66019914650737,53.02604537257077],[-126.66004370744078,53.0261986349412],[-126.65987324666042,53.026345813678816],[-126.65968020361966,53.02648304256801],[-126.65941670138535,53.02659264261045],[-126.65925883102395,53.026708939833775],[-126.6592196746932,53.02689404672861],[-126.65916823025512,53.027069137434026],[-126.65914954374496,53.027248527234406],[-126.65915232599971,53.02742779707887],[-126.65914859926512,53.02760934433389],[-126.65915323167849,53.02778748327147],[-126.65915136137822,53.027967343799546],[-126.65912248238264,53.0281523931029],[-126.6591129963036,53.02832388765376],[-126.65908687354495,53.02850555991244],[-126.6589153633972,53.028646584410446],[-126.6587066883469,53.02874018900059],[-126.65842261765431,53.02884934562375],[-126.65815589562088,53.02893263253428],[-126.65797878665082,53.02907425158633],[-126.65790677357809,53.02924833563769],[-126.65787967771625,53.029428327644254],[-126.6578432349733,53.029607815950634],[-126.65770462635413,53.029763786779085],[-126.65742622314974,53.02981688270679],[-126.65711933925394,53.029841002757856],[-126.65692114175047,53.029947992100524],[-126.65689510400507,53.03013583057558],[-126.65693709737104,53.0303148818237],[-126.65691838506733,53.03049427101287],[-126.65684262992913,53.03066837506508],[-126.65664577636096,53.03080169334876],[-126.65643672229184,53.03093171756604],[-126.6562248060223,53.03105839572084],[-126.65598926434018,53.03116671158032],[-126.65573198249072,53.03125778402581],[-126.65546519924207,53.03133938865014],[-126.65519178167133,53.03141429735152],[-126.65490410387345,53.03147248556433],[-126.6546750514464,53.03157852166733],[-126.65453279920611,53.031740667137974],[-126.65452232430385,53.03190936949392],[-126.65452898675537,53.0320992578811],[-126.65451307255438,53.032278630920615],[-126.65449622558393,53.03245857385878],[-126.65449064297049,53.03264125114187],[-126.6544597604283,53.03281902185652],[-126.65436521859081,53.03298706976281],[-126.65421448755127,53.033145335365255],[-126.654032679528,53.03328752980818],[-126.65380756408038,53.033406432793264],[-126.65355691445234,53.03350530723269],[-126.65328348825773,53.033580776116096],[-126.65302420855292,53.03366569505089],[-126.65283678864988,53.03380679809954],[-126.65270664648608,53.03396830933661],[-126.65257275917452,53.03412928533744],[-126.65243415940759,53.034288046162914],[-126.65223199772586,53.03401744006322],[-126.65211551516855,53.03385224560876],[-126.65202416145678,53.03368074479948],[-126.65196634493904,53.03350458547573],[-126.65192998122954,53.033326057572786],[-126.65190481588871,53.03314691199682],[-126.65188993089922,53.032967709607576],[-126.65187128706268,53.03278797218027],[-126.65181908189527,53.03261121695827],[-126.65173331178336,53.03243912919631],[-126.65160939030498,53.03227565152101],[-126.65146031472956,53.03211568312799],[-126.65119230291904,53.03205665384097],[-126.65089578129755,53.03202691497254],[-126.65060657423903,53.03198592973874],[-126.65031640925343,53.03194382854809],[-126.65003527469173,53.03188150737286],[-126.64979547964938,53.031774692504584],[-126.64963998822782,53.031622600848245],[-126.64953841244582,53.031453960054314],[-126.64944707430024,53.03128245700988],[-126.64938181816396,53.03110745772522],[-126.64933613766222,53.03092954486299],[-126.64927367422071,53.03075340062586],[-126.64914604045309,53.03059050545533],[-126.64892476667302,53.03047182581343],[-126.64865189543947,53.03039993588602],[-126.64836716647976,53.030346030002626],[-126.64807794772928,53.03030336235901],[-126.64778239029789,53.03027416620339],[-126.6475149969869,53.03019383512594],[-126.64735397633751,53.03004568810844],[-126.64724216602434,53.029878221931185],[-126.64713315054605,53.029710740308616],[-126.6470204177808,53.02954439948744],[-126.64690952796752,53.02937637212965],[-126.64669381188862,53.02925485201031],[-126.64655230401662,53.02909931794064],[-126.64640888041458,53.028941544162116],[-126.64623111993014,53.028797413595726],[-126.64603575397139,53.028661778649436],[-126.64586631574578,53.02851255508567],[-126.64579365727533,53.028339826253585],[-126.64577411496575,53.02816009244683],[-126.6457489786514,53.0279809450175],[-126.64575372306297,53.02780163403536],[-126.6457687313476,53.02762226685994],[-126.64576412946789,53.027442442243434],[-126.64574832271299,53.027262687895934],[-126.64574280326417,53.02708343301128],[-126.64574567152313,53.02690356745469],[-126.64572332138042,53.026723848860115],[-126.64561712867359,53.02655635015631],[-126.64543473862841,53.026414475690764],[-126.64521901426696,53.026290155966464],[-126.6450292080407,53.02615169198257],[-126.64486539209007,53.02600187135084],[-126.64473221274962,53.02584068671445],[-126.64463345539883,53.02567146116016],[-126.6445374905848,53.025501108687074],[-126.64444897909925,53.02532958591503],[-126.64435115681215,53.025159799194526],[-126.64422170831676,53.02499802880323],[-126.64410807323006,53.02483168979805],[-126.64403539641371,53.02465784811534],[-126.64394688028743,53.024485769143325],[-126.64378771015446,53.02433424524981],[-126.64362203821865,53.0241844329217],[-126.64353168291896,53.02401404892059],[-126.64348790190786,53.02383612287013],[-126.64344318011895,53.02365820191768],[-126.64333328635176,53.023491841667045],[-126.64320569718534,53.02332893937876],[-126.64308369402079,53.02316488595982],[-126.64293195032717,53.02300995875487],[-126.64274217462305,53.02287204656463],[-126.64254405557256,53.02273754110856],[-126.64239787485326,53.02257977708068],[-126.64215729323894,53.02247744188493],[-126.64186656172788,53.022516557423955],[-126.64159561885715,53.02244352016162],[-126.64138362009939,53.02231748776136],[-126.6412068369744,53.02217277924709],[-126.64103560813578,53.02202579921309],[-126.64086160394625,53.02187995453529],[-126.6407451905094,53.02171419194579],[-126.64056377024556,53.02157174869695],[-126.64036289601522,53.021438930825795],[-126.64016294082063,53.02130555183672],[-126.64005862751327,53.02113748180693],[-126.64003538669125,53.02095832229223],[-126.64000467716627,53.02077920327362],[-126.63992177859478,53.02060652579694],[-126.63978214928233,53.020448167100085],[-126.63963320379948,53.020292099812295],[-126.63949170939978,53.0201337508664],[-126.63933071277452,53.019982795398654],[-126.63913261800094,53.0198482839857],[-126.638893851002,53.019740885373274],[-126.63864770909242,53.019639684667865],[-126.63842741412348,53.01951873867763],[-126.63821451338275,53.01939271434185],[-126.6380053229133,53.01926498426711],[-126.6378044526527,53.01913216194046],[-126.63761100837952,53.018995381737014],[-126.63741940074344,53.01885747075189],[-126.63722965961597,53.01871842883234],[-126.63704177192231,53.01857937659407],[-126.63684092298753,53.01844656145623],[-126.63662248121344,53.01832391678059],[-126.63643552995029,53.01818430272486],[-126.63637406482383,53.018008145348944],[-126.63631354968207,53.017832547551485],[-126.63617300192443,53.01767418940083],[-126.6359971736242,53.017528911949825],[-126.63579448247938,53.01739721649756],[-126.63567438372402,53.017232589040916],[-126.63566701763676,53.01705277806741],[-126.6357147791595,53.01687547581839],[-126.63576909086524,53.016698702976804],[-126.63590487072308,53.01653885478133],[-126.63604720179988,53.01638064740847],[-126.63614081121618,53.016209820904095],[-126.6362054065259,53.01603466864361],[-126.6362812201407,53.015860576351955],[-126.63640667751766,53.0156979862929],[-126.6365030853349,53.0155277001052],[-126.63656206036426,53.015351457354456],[-126.63663787976076,53.01517792946918],[-126.63672866776285,53.01500655282672],[-126.63679232447535,53.014830849377056],[-126.63681017391389,53.01465146681666],[-126.63675617180952,53.014474713213566],[-126.63666584776986,53.014303193570285],[-126.63655227933228,53.01413741094887],[-126.63640616723697,53.013980759147934],[-126.63625540668828,53.01382581752321],[-126.63611394641293,53.01366746392335],[-126.63590293199269,53.01354030446448],[-126.63563385816309,53.01346387283006],[-126.63537579225489,53.013373379026106],[-126.63520555165758,53.01322582895859],[-126.63515715869929,53.013049044313036],[-126.63514047606988,53.012869283048346],[-126.63513218716493,53.01268948552899],[-126.63508006139753,53.01251272090128],[-126.63504006134086,53.01233477040924],[-126.63506819225428,53.01215533252572],[-126.63505991210124,53.011976090668846],[-126.6349537749193,53.011808016290495],[-126.63479932540172,53.0116542130759],[-126.63452933969202,53.01157779278394],[-126.63426487164313,53.01149573053729],[-126.63400496400205,53.01140692890609],[-126.63377827371349,53.01129104627617],[-126.63358578732696,53.011153133414076],[-126.63337571889164,53.01102596427152],[-126.63322219544138,53.010871589241034],[-126.63312631808759,53.01070178174916],[-126.6329542375079,53.010554793964644],[-126.6329189143094,53.01037626171779],[-126.63293304470645,53.01019689930845],[-126.63290797316033,53.010017747253805],[-126.63293237139688,53.00983888549362],[-126.63293902632871,53.00965900735404],[-126.63288225404463,53.0094822664439],[-126.63272225367893,53.00933073125403],[-126.63262916599908,53.00916034351361],[-126.63236930767054,53.00907265852802],[-126.63208745994665,53.00901366016006],[-126.63181018727622,53.00894791336043],[-126.63151930566816,53.00890801124577],[-126.63123294234593,53.00885855514508],[-126.63097951489284,53.008764109436065],[-126.63072608843325,53.00866965421354],[-126.63051881508214,53.00854022387568],[-126.63030970117502,53.008412479338],[-126.63011168890004,53.00827795186091],[-126.62993313758052,53.008134355764845],[-126.62976850352186,53.007984517611696],[-126.6295834703264,53.00784376142471],[-126.6293586529321,53.00772618389299],[-126.62910522803769,53.00763116938467],[-126.62887393869978,53.00751810762041],[-126.62864355986949,53.007403920005714],[-126.62842428102401,53.007281828995374],[-126.62823369680403,53.007143897125836],[-126.62808949783027,53.00698666868811],[-126.62793786658047,53.00683172072448],[-126.62777325294714,53.00668244437995],[-126.6276309072948,53.0065240849476],[-126.62753133711294,53.00635484808546],[-126.62738714341548,53.006197618715596],[-126.6271734179401,53.00607269892505],[-126.62700880159991,53.00592285673708],[-126.62680155296918,53.005793419656264],[-126.62653988540443,53.005707407774736],[-126.62627086982475,53.0056303986826],[-126.62605068271058,53.00550942858248],[-126.62582493838207,53.00539128443692],[-126.62557339367996,53.00529569655653],[-126.6253181498662,53.00520235987753],[-126.625064757364,53.005107901255094],[-126.6248427263315,53.00498805921184],[-126.62461054509033,53.004875549561696],[-126.62437374898681,53.00476699027205],[-126.62412862956838,53.00466407727638],[-126.6238550566727,53.00459325427586],[-126.62358513537582,53.00451679965073],[-126.62336404417249,53.00439639406057],[-126.62319665697021,53.00424768169892],[-126.62310082647335,53.004077309647315],[-126.62309167259303,53.00389807098849],[-126.62311610048233,53.003718654866475],[-126.6231601581591,53.003540811321834],[-126.62320982313905,53.00336350286044],[-126.62326136244253,53.00318674920516],[-126.62333533971395,53.00301267378036],[-126.62342897078096,53.0028418560172],[-126.62357318530145,53.0026847730081],[-126.6237822256803,53.00255649003277],[-126.62396964376195,53.00241710667129],[-126.62411197210442,53.00225892134527],[-126.62425524822038,53.00210128660004],[-126.62429743305341,53.00192345234079],[-126.62430693034743,53.001743558985396],[-126.62429962333621,53.001564310370064],[-126.62428018411039,53.001384561212056],[-126.62424956342824,53.00120600073803],[-126.62420869364782,53.00102805028539],[-126.6240942603446,53.000861694638516],[-126.62392411719378,53.00071468294624],[-126.62366889635908,53.0006207866965],[-126.62337543676252,53.00059208373906],[-126.6231552757126,53.00047054316044],[-126.6230148344027,53.00031216771069],[-126.62287253609333,53.00015436664925],[-126.62272001575982,52.99999997206702],[-126.62267748546084,52.99964498338957],[-126.62259565567086,52.99947341604425],[-126.62249331516419,52.99930418904296],[-126.62238445923441,52.999135561087336],[-126.62226817189618,52.99896921333264],[-126.62214166955422,52.998805725201144],[-126.62200217131922,52.99864789925316],[-126.62184228332109,52.998498589254595],[-126.62164526969359,52.99836404189169],[-126.62143342425001,52.998235175105144],[-126.62123083907105,52.99810234171033],[-126.6210356776282,52.99796554246304],[-126.62084885886931,52.9978253373161],[-126.62068894672433,52.99767490529771],[-126.62055502206864,52.99751368659497],[-126.62043408971937,52.997348481927595],[-126.62030389957563,52.99718725223159],[-126.62011802038867,52.99704759674129],[-126.6198941874647,52.99692831933669],[-126.61965190626093,52.99682369662544],[-126.6194077765368,52.996720212639865],[-126.61917933821387,52.99660431074955],[-126.61896753494649,52.996478245114815],[-126.618769622261,52.99634425339454],[-126.61858651778935,52.99620178401461],[-126.61840340645932,52.9960587585885],[-126.61819168011357,52.99593660857993],[-126.61790260494688,52.995886578699526],[-126.6176178555814,52.995876300443975],[-126.6173121815749,52.99583980265338],[-126.6170143210607,52.99582623890858],[-126.61671827123186,52.99580985908733],[-126.61642483329598,52.995780018286666],[-126.61614875789954,52.99572431340792],[-126.61583881801747,52.99571472726212],[-126.61554190054667,52.99570226646159],[-126.6152449265492,52.99568588777221],[-126.61503475267239,52.995671296666615],[-126.6147118727936,52.9956051918553],[-126.61435754383851,52.995623282200334],[-126.61412820900618,52.99550906052704],[-126.61415176866683,52.99533133536936],[-126.61418741783815,52.99515129714678],[-126.61421042244358,52.99506433926964],[-126.6142970198752,52.99498712603084],[-126.61441501790374,52.99482235524579],[-126.61450293204334,52.99464316502733],[-126.6146135368601,52.99448347052399],[-126.61472214641763,52.99431594245646],[-126.61481205278072,52.99414459436335],[-126.61483745854169,52.99396572976446],[-126.6148619155631,52.993786314295455],[-126.61491721808059,52.9936100995696],[-126.61492767876545,52.99343020125529],[-126.61494001342317,52.993250848938246],[-126.61492527386633,52.99306995251399],[-126.61476735577443,52.99292566934927],[-126.61462235354644,52.9927701041645],[-126.61454239620448,52.99259683569921],[-126.61452395095942,52.992417643789146],[-126.61451761105836,52.99223726820758],[-126.61459984867507,52.99205306920465],[-126.6146208721842,52.991893285602],[-126.61463778410538,52.991708306538484],[-126.61466879514691,52.99152997724604],[-126.61469513234431,52.991350551744475],[-126.61471025881119,52.99117118467425],[-126.61472072780846,52.99099184186848],[-126.61469855067935,52.990812669273964],[-126.61474449610205,52.99063481778149],[-126.61487653192465,52.99047445503819],[-126.61504982700508,52.9903284350796],[-126.61519308847075,52.99017025447657],[-126.6152942049919,52.99000164393321],[-126.61539907542577,52.98983356947912],[-126.61550767000779,52.98966604022395],[-126.61561815269526,52.98949906574589],[-126.61571360347202,52.9893260021356],[-126.6159029691568,52.989194464029644],[-126.61614585179262,52.989086742261264],[-126.61637460201509,52.98897012945116],[-126.61658266303607,52.98884129831601],[-126.61674468578055,52.988690861370145],[-126.61687669982595,52.98852993148467],[-126.61699839468577,52.98836569378293],[-126.61712665069894,52.988203097933535],[-126.61727273596527,52.98804714084892],[-126.61742723307643,52.98789281585222],[-126.61757329304403,52.98773629372823],[-126.61770998095592,52.9875758940939],[-126.61786074323767,52.987421588039915],[-126.61804808292618,52.9872811014084],[-126.61826082011905,52.98715448370248],[-126.6184961324115,52.987040629042035],[-126.61877434352428,52.9869893087387],[-126.61907065443042,52.986964221270306],[-126.61937077809425,52.986944715794806],[-126.61966994481637,52.98692409402929],[-126.6199557799753,52.98688392742711],[-126.62018169230137,52.9867656455345],[-126.62040571304773,52.98664568783494],[-126.62068183406956,52.98658036257052],[-126.62097738738078,52.98656703561912],[-126.62127511066909,52.98657555179842],[-126.62157359420043,52.986571737109124],[-126.62187007270336,52.98655841200328],[-126.62216825263735,52.986533862651605],[-126.62245490991043,52.98648697124601],[-126.62270921737485,52.986397104169974],[-126.6229445135619,52.98628324057832],[-126.62315255794756,52.986155518110586],[-126.6233605697287,52.986026674875774],[-126.62359589512288,52.985915059860766],[-126.62381241425854,52.98579344992158],[-126.62399880988234,52.985653514347014],[-126.62417111228459,52.98550637395458],[-126.62433965063708,52.985358123707606],[-126.6244922384947,52.98520324333358],[-126.62463732954801,52.98504615239237],[-126.6247861755983,52.98489072666582],[-126.62493502056033,52.98473530073681],[-126.62508385626309,52.984579318852596],[-126.62523269074194,52.98442332780199],[-126.62537028924346,52.98426459924692],[-126.62548725784266,52.98409870084769],[-126.62561080377893,52.98393556431213],[-126.62574931631791,52.98377626563992],[-126.62589346433992,52.983618622177886],[-126.62599111342976,52.983471875269785],[-126.62606284965823,52.983275396589114],[-126.62611729044428,52.983107579469696],[-126.62613603923685,52.982924273066814],[-126.62628871903175,52.98277666872047],[-126.62655053265763,52.982691791142905],[-126.62680675690906,52.982607507460436],[-126.62705216524827,52.9824851817551],[-126.62720518739172,52.982361106073604],[-126.62742171950846,52.98224229490591],[-126.62770630276331,52.98218363111273],[-126.62795493549804,52.98209098559882],[-126.62823360586601,52.98201106139448],[-126.62857076058856,52.9819750822446],[-126.6288316162817,52.981889648820136],[-126.62905079799086,52.981760735416266],[-126.62918320819942,52.98163116427883],[-126.62930669305186,52.98146634748346],[-126.62935348266818,52.98128680806284],[-126.62921316454167,52.98113404054287],[-126.62901338413829,52.980997278054744],[-126.62894274245146,52.98082564458641],[-126.62892237616092,52.98064646362832],[-126.62900563490237,52.980473453007995],[-126.6290384595171,52.98029622925875],[-126.62905819261195,52.98011683423556],[-126.62913771889556,52.979943843380575],[-126.6292865224097,52.979787855742714],[-126.6311222763345,52.97639618232344],[-126.63114943489724,52.97621506137895],[-126.63113372559275,52.976036420092186],[-126.63104164062074,52.97586490221112],[-126.63090682207601,52.975704827641444],[-126.6307321103248,52.975559524802094],[-126.63053333290462,52.97542556507145],[-126.63030128309245,52.975313064722734],[-126.6300453004431,52.97522087099447],[-126.62976644405096,52.97515904522097],[-126.62948758024291,52.97509666302958],[-126.62919337771845,52.97506966433099],[-126.62890542124018,52.97502301721171],[-126.62861927257234,52.9749724332907],[-126.6283358719882,52.974917916532064],[-126.62805517974545,52.97485778183913],[-126.62777722082143,52.97479371442631],[-126.62750107659534,52.974725145475965],[-126.6272222189558,52.97466275790758],[-126.62693972265367,52.97460655662473],[-126.62670400596387,52.97449743041283],[-126.62647381857805,52.97438268047706],[-126.6262390278782,52.974272427846294],[-126.62599684377811,52.97416670524462],[-126.62575097985852,52.97406435441389],[-126.625484971096,52.97398732717947],[-126.62519790172152,52.973937304629466],[-126.62491630356321,52.973877732053296],[-126.62468154444345,52.97376916148346],[-126.62440176532745,52.97370732794517],[-126.62412199378993,52.97364493790465],[-126.6238395164988,52.97358928491241],[-126.62354724243157,52.97356562365151],[-126.6232486614528,52.97355655339598],[-126.62295449660697,52.97353009477497],[-126.62267434123362,52.9735696746818],[-126.62241451492167,52.97365957192835],[-126.62213179739614,52.9737148519646],[-126.62184334444015,52.97376064127213],[-126.62155679690592,52.97380921674606],[-126.6212702732054,52.973859467756164],[-126.62098853388,52.97391754576232],[-126.62071348609169,52.973987349277564],[-126.62044508884253,52.97406608163519],[-126.62020789843376,52.97417378377968],[-126.61995250496109,52.97424796430049],[-126.61965554847184,52.974222632691074],[-126.6193648600093,52.97417989417651],[-126.61906985930537,52.97416071839515],[-126.61877236188727,52.974161716160836],[-126.61847393261601,52.974163282830126],[-126.61817637151154,52.97416092670024],[-126.61787880087645,52.97415688454225],[-126.61758113401606,52.97414723932197],[-126.61728434228543,52.97413310651404],[-126.61698683695553,52.974133544015174],[-126.6166894304382,52.97414182418878],[-126.61639211174497,52.97415514120277],[-126.61609453458003,52.97415165933818],[-126.61579690735516,52.97414368576805],[-126.61550158471687,52.97416708413252],[-126.61520307424058,52.97416304012802],[-126.61492027102167,52.97421325621248],[-126.6146915637963,52.9743276262742],[-126.61446850892831,52.974447013417546],[-126.61420865175505,52.974536327802184],[-126.6139217667585,52.97456247512781],[-126.61362335066492,52.97456514999086],[-126.61333675600179,52.97461146449674],[-126.61306249399378,52.97467172565034],[-126.6127691362732,52.974702386081425],[-126.61247675047079,52.97473528185196],[-126.61225644841315,52.97478628718688],[-126.61194603033812,52.97486242143475],[-126.61163648361406,52.97480519451545],[-126.61134120010607,52.974766386543216],[-126.611045281795,52.9747477512372],[-126.61074764453464,52.97474032971586],[-126.61045010272198,52.974738509757344],[-126.61015380761137,52.97475909382607],[-126.60989197796484,52.974841694426324],[-126.60967550678559,52.97496551158378],[-126.60940288683163,52.9750117441737],[-126.6092247045121,52.97487819811495],[-126.60917179967922,52.97470086709689],[-126.60908446981082,52.97452987258403],[-126.6088922699547,52.97439471312685],[-126.60867502715121,52.97426865616699],[-126.60844486665728,52.97415330635806],[-126.60823786936204,52.97402663092222],[-126.60808920114498,52.97386939896219],[-126.60789977376501,52.97373254719656],[-126.60767980406925,52.973611540499036],[-126.60745336305482,52.973493928434934],[-126.60723430497916,52.97337179563977],[-126.60702450884257,52.973244011911945],[-126.60681561503003,52.973114537835094],[-126.60661320310528,52.972982233092424],[-126.60642193421958,52.97284538840308],[-126.6062445437596,52.97270119282268],[-126.60608382071293,52.972548502539496],[-126.60594628541385,52.9723872840894],[-126.60584504035808,52.972219720274175],[-126.60579956541322,52.97203898765872],[-126.60576990352834,52.97185480306183],[-126.6057021679944,52.97168258455243],[-126.60555643512525,52.97153429868285],[-126.60535592369065,52.97140366727391],[-126.60513034621299,52.97128044343025],[-126.60490384497552,52.97115722389462],[-126.60469959116695,52.97102548104279],[-126.60450924637317,52.97088750785871],[-126.60432074403242,52.970747848549514],[-126.60412670348184,52.97061213481911],[-126.60392144220017,52.97047423714834],[-126.60369601695166,52.97036109483013],[-126.60340576737903,52.970345208348434],[-126.60311452001571,52.97039152202606],[-126.60283473919675,52.97045627009602],[-126.60254416055702,52.97048352935279],[-126.60224632449366,52.97045983486473],[-126.60197119848931,52.970392886393185],[-126.60174849671418,52.97027356784118],[-126.6015442727715,52.970142939932714],[-126.60137339756477,52.96999534197382],[-126.6011867743468,52.969855659093675],[-126.6009483760083,52.96974762474172],[-126.60071090378868,52.96963957622056],[-126.60047713817738,52.96952871140248],[-126.6002313784366,52.969427436496346],[-126.60002107804078,52.96932765687167],[-126.59999760816173,52.9693171265486],[-126.59972706034247,52.96924287034991],[-126.59945373218142,52.96917030404064],[-126.59917764740129,52.96910111280922],[-126.59889976863651,52.96903584754303],[-126.59862009764645,52.968976758313154],[-126.59832161739362,52.968972115772935],[-126.5980391891601,52.968915280297665],[-126.59774504843148,52.96888707346604],[-126.59746175248947,52.96883528803242],[-126.59718496043749,52.96878121886285],[-126.59688967179892,52.9688040058591],[-126.59659274355774,52.96877693980643],[-126.59632592788908,52.968703212723916],[-126.59616153346518,52.96855108317958],[-126.59609943690135,52.968378830500754],[-126.5960625170242,52.96820589460831],[-126.5958971306628,52.968049852189516],[-126.59563140427315,52.96811955024331],[-126.5954026700504,52.96823331855982],[-126.59518618255207,52.96835655383031],[-126.59496310425614,52.96847590447748],[-126.59474003173099,52.96859468989425],[-126.59448864767208,52.96869064168801],[-126.59421453803867,52.96876094354949],[-126.59396031489433,52.96885354682336],[-126.5937136444553,52.96895284382504],[-126.59341833784612,52.96897562219452],[-126.59313265967072,52.96901907729051],[-126.59285549086974,52.96907146234371],[-126.59255627345661,52.96908136726415],[-126.59227243531544,52.96912313464769],[-126.59202013326187,52.96922021524261],[-126.5917392005272,52.969270366471804],[-126.5914408357659,52.96927410565461],[-126.59116575786726,52.96920881711521],[-126.59089336171266,52.96913566158192],[-126.59062005715653,52.969063639501236],[-126.5903280419613,52.969053897290934],[-126.59002893289345,52.969071639187845],[-126.58973957576792,52.969052361907465],[-126.58947542756128,52.968967956195534],[-126.58918718207518,52.96896099819108],[-126.58906826676831,52.968993524326926],[-126.58894042216784,52.96905467380425],[-126.58882920678757,52.96910453440973],[-126.58868974524948,52.96913493067413],[-126.58839220537543,52.9691313698808],[-126.58809456433272,52.96911940910477],[-126.5877986574261,52.96909903919022],[-126.58749922139681,52.96909212391557],[-126.58712463827386,52.9690469274422],[-126.58702237882895,52.96900205866233],[-126.58670954935111,52.968971676301244],[-126.58641307444172,52.96897707867691],[-126.58616548374597,52.96907804071875],[-126.58588170926373,52.96912595096951],[-126.58585615026657,52.9693014505167],[-126.58578204737726,52.969473264939],[-126.58567058997917,52.96964133852574],[-126.58554692422815,52.96980275825041],[-126.58534920444565,52.96993708749569],[-126.5851580573883,52.97007530123371],[-126.58499224852572,52.97022460342624],[-126.58480015091543,52.97036114490717],[-126.58460054574688,52.97049436162263],[-126.58437835099323,52.97061255796298],[-126.58415428233094,52.970730207361655],[-126.58395938200667,52.970866205502325],[-126.58375881646822,52.970998304925494],[-126.58353099082319,52.971114286382864],[-126.58338485504758,52.971270212106674],[-126.58324433684702,52.97142890674216],[-126.58311500762309,52.971586425259424],[-126.58301941837489,52.97175722340029],[-126.58299389194215,52.97193607453657],[-126.58297677345138,52.9721154488117],[-126.58292043427193,52.97229222017648],[-126.5827817909984,52.972450904862455],[-126.58269180145385,52.97262223073528],[-126.58263451996262,52.97279788600066],[-126.582629530903,52.97297832070857],[-126.58261054530898,52.97315770404009],[-126.58253920512354,52.97332893750525],[-126.58257297730691,52.973479490198606],[-126.58254967389281,52.97368466766093],[-126.58254930872786,52.97386171773242],[-126.58256575362088,52.974041481595826],[-126.58256168883175,52.97422079103617],[-126.58246147432652,52.97439441715708],[-126.58235361391591,52.97455462529446],[-126.58221214825899,52.974712767198646],[-126.58206880859807,52.974870353408264],[-126.58194701788327,52.97503567691275],[-126.58175764036588,52.97516827301659],[-126.58153449625426,52.97528815350789],[-126.58136115499944,52.97543468125491],[-126.58123185256241,52.9755955587713],[-126.58095465053225,52.975718510603194],[-126.58056707425068,52.97574955514539],[-126.58042973315277,52.975800656751254],[-126.58022541776124,52.97593276806919],[-126.58002859312813,52.97606820381769],[-126.57983458020212,52.97620418118197],[-126.57961801471257,52.976327951977595],[-126.57939109702234,52.976444485157984],[-126.57912263832371,52.97652536423286],[-126.57888144644703,52.97662179653912],[-126.57871841825565,52.97677275177476],[-126.57845274638926,52.976852495049854],[-126.5781661513008,52.97690264115421],[-126.57788239184997,52.97695614328403],[-126.57761294852287,52.977033097265824],[-126.57735581895247,52.97712344593007],[-126.577136413242,52.97724554063786],[-126.57697801713502,52.9773953501273],[-126.57693193560732,52.97757374404173],[-126.57687184816977,52.97775052116129],[-126.5767780549497,52.9779190635141],[-126.57668709688633,52.97808983300811],[-126.57656620098197,52.97825402555097],[-126.57641720960189,52.978409955690154],[-126.57628320848747,52.978570850334805],[-126.57619411243581,52.978741610260144],[-126.57612654349501,52.97891730287605],[-126.57603558067983,52.97908807176511],[-126.57591841790182,52.97925281003189],[-126.57576847282678,52.97940817912992],[-126.57559883328892,52.97955523556986],[-126.57544233408812,52.97970839511629],[-126.57528770684304,52.97986211005679],[-126.5751208922607,52.98001083727489],[-126.57498026124192,52.980165595062225],[-126.57489211195931,52.98033746973256],[-126.57474309950632,52.98049283283906],[-126.57458284016633,52.98064433311549],[-126.57445979840789,52.98078891947503],[-126.57431850967107,52.980963858496075],[-126.57418914122407,52.98112416310263],[-126.57399792264648,52.98126236669807],[-126.57379072505819,52.98139223913397],[-126.5735788096066,52.98151877249243],[-126.57338194525383,52.98165363189211],[-126.57317191552767,52.98178184062332],[-126.57291753102902,52.981871601053655],[-126.57265091369602,52.981953011739364],[-126.57239688161711,52.98206910676287],[-126.57214751203036,52.98218573438444],[-126.57190133693324,52.98226144134913],[-126.57166658544398,52.982216637577665],[-126.5714425222604,52.98206420856513],[-126.57122260577894,52.98194257867751],[-126.57097869435057,52.98184010503765],[-126.57073478421819,52.98173763985058],[-126.5704715427416,52.98165375234992],[-126.570182696025,52.98160920745],[-126.56990479506355,52.98154499477891],[-126.56964798073757,52.98145379526016],[-126.5694455697614,52.981315824958145],[-126.5691762691299,52.98126725674594],[-126.56887040116733,52.98127433622355],[-126.56857105485362,52.981280262894046],[-126.56828623142256,52.98132645864267],[-126.56800052702859,52.98137714015107],[-126.56770711307551,52.98140825292662],[-126.56741069845498,52.981424803280554],[-126.56711430608091,52.981443038090134],[-126.56681892837109,52.98146799058191],[-126.56654562334087,52.981538778839145],[-126.56630859803568,52.98167214301224],[-126.56606897475349,52.98175061216204],[-126.56582402239415,52.98184927631983],[-126.56560458162329,52.98197191386125],[-126.5652917557452,52.98187704727487],[-126.56488078764986,52.98183755726963],[-126.56459099786257,52.98179131790468],[-126.56431589510335,52.98172708765795],[-126.56407012866259,52.98162405288263],[-126.56379404285917,52.98155645550773],[-126.56353910708725,52.98146523375531],[-126.56328758422437,52.9813498988101],[-126.5631448979668,52.98121106756552],[-126.56303383910567,52.981136521233594],[-126.56284716297606,52.98112789266359],[-126.56261264968093,52.98109987803496],[-126.5623159981333,52.98109848789298],[-126.56202147881484,52.98111726572072],[-126.56172903948695,52.98108111693168],[-126.56146769266907,52.980998885671895],[-126.56127372735837,52.980861981752724],[-126.5611048069215,52.98071375276491],[-126.56088215821177,52.98059491356437],[-126.56064011536228,52.98049016860817],[-126.56038609596911,52.98039612982053],[-126.56012932376083,52.98030602998065],[-126.55985417822042,52.98023729837399],[-126.55957810824194,52.98016970003137],[-126.55930480788201,52.98009928203919],[-126.55904801760077,52.980007494623294],[-126.55880507207661,52.97990387073236],[-126.55856120238987,52.97980138023571],[-126.55827152162107,52.97976184816778],[-126.55797514433247,52.97978062473576],[-126.55769418988265,52.979837417360855],[-126.55740562612283,52.97988304875064],[-126.55707917945304,52.97995686331642],[-126.55705026396457,52.98009875419784],[-126.55684088411961,52.980137277625936],[-126.55644920558075,52.98007245924054],[-126.55618228608668,52.979990798393125],[-126.55591630780398,52.979909132502435],[-126.55564215575325,52.97984374805803],[-126.55533793445915,52.979833420637355],[-126.55504756493463,52.97981293327332],[-126.55474995361512,52.979808175961665],[-126.55446029831867,52.97977031973175],[-126.55417966407043,52.979708888801376],[-126.55389539457346,52.97965475338893],[-126.55363036262959,52.97957419845698],[-126.55336439920346,52.97949309151013],[-126.55309570429523,52.979416470022926],[-126.55282422666687,52.97934154628609],[-126.55255551154423,52.97926436787087],[-126.5522886559661,52.97918550378529],[-126.55202269019897,52.97910382906837],[-126.55175673999301,52.97902327423039],[-126.55148251246595,52.97895227772946],[-126.55119114574796,52.97892562700713],[-126.55089604858435,52.97889899300358],[-126.55060453031227,52.9788605802368],[-126.55031844914122,52.97880980633473],[-126.55006083328288,52.978723606005445],[-126.54992161787878,52.97856177576023],[-126.5497827806378,52.97842795736012],[-126.54943319358928,52.97837076321008],[-126.5491254054541,52.978372197736014],[-126.54882053806755,52.97838370281809],[-126.54852200446504,52.97837948991403],[-126.54822537964321,52.97837862902836],[-126.54793266602279,52.97839175161922],[-126.54766126528828,52.97846641371764],[-126.54736672877246,52.97848290502268],[-126.54706820188314,52.97847925316022],[-126.5467718140677,52.97849687212146],[-126.54648707201413,52.97854973817013],[-126.54621662942431,52.97862606881928],[-126.54596128114912,52.978716896074694],[-126.54572578481907,52.97882780075398],[-126.5454638913168,52.978916980874445],[-126.54530158186651,52.97906171823265],[-126.54517780732291,52.979228697068805],[-126.54503434393374,52.97938847875076],[-126.54484860532546,52.979525479927325],[-126.5445744012453,52.97960014776776],[-126.54432855006226,52.97970492989691],[-126.54411558708829,52.979828053220835],[-126.54402450100021,52.97999936201639],[-126.54403239827349,52.98017916928303],[-126.54403563951287,52.980359006987136],[-126.54402394191088,52.98053890466498],[-126.54410544032496,52.98071109302323],[-126.54431965491817,52.98083112319255],[-126.54462096786726,52.98090537277048],[-126.54490071303691,52.980897912248594],[-126.54518972098411,52.98088537022605],[-126.54542247952025,52.980996348222476],[-126.54560155663323,52.98114007019647],[-126.54582415780988,52.98125950301401],[-126.5460532393275,52.981374414224796],[-126.54621469153994,52.98152494020048],[-126.54632782780043,52.98169137760041],[-126.5463366682177,52.98187062441317],[-126.54632124170519,52.982049983692086],[-126.54631889611053,52.98222984707348],[-126.54632961603322,52.982411326214006],[-126.54639620997159,52.98258413773219],[-126.54652138990262,52.98274323994427],[-126.54668658676185,52.98289542415841],[-126.5468508379122,52.98304593618073],[-126.54705583055379,52.983172727372875],[-126.54734020140886,52.98323360205299],[-126.54758679743871,52.98333050011662],[-126.54781224312866,52.9834515922264],[-126.54801637253713,52.983583988489954],[-126.54813505371783,52.98374423969794],[-126.54824167389107,52.9839101406486],[-126.54836226534607,52.98407486490898],[-126.54848472373018,52.98423845083487],[-126.54861275073083,52.98440089912051],[-126.54875100376958,52.984559929042526],[-126.54882694651435,52.98473326025814],[-126.54888892611741,52.98490946228239],[-126.54900020888385,52.985075340746306],[-126.54914033136458,52.98523437042173],[-126.5492692968815,52.985396248795354],[-126.54940106209246,52.98555754921213],[-126.54952267544186,52.985727870134994],[-126.54957515688542,52.98589066047331],[-126.54957467563956,52.986070514877184],[-126.54959100075395,52.98625028193866],[-126.54959145260166,52.98642956719854],[-126.54957790391015,52.98660891771578],[-126.5495802287586,52.986788758959506],[-126.54959655417228,52.9869685259431],[-126.54961658914829,52.987147719818836],[-126.54962263843997,52.98732697888431],[-126.54961844073814,52.98750685046337],[-126.54960583936088,52.98768675224087],[-126.5495848271327,52.987866137420895],[-126.54954141100062,52.988043385934056],[-126.54948491887669,52.9882206953639],[-126.54939663534188,52.988391429650086],[-126.54929432825243,52.9885605528617],[-126.54922847627091,52.988735664631136],[-126.54914674257869,52.98890860923964],[-126.54904442595688,52.989077167461986],[-126.5489346306157,52.98924463985653],[-126.54884073785145,52.989414834967484],[-126.5487533891874,52.989586684817965],[-126.54866603981712,52.98975853458603],[-126.54855998029237,52.989926553914906],[-126.54844736008356,52.990092918353305],[-126.5483487841008,52.99026257896711],[-126.54824927455552,52.99043167906557],[-126.54810673929356,52.990593700065105],[-126.54791435181623,52.99072402159429],[-126.54765044423536,52.990807047513734],[-126.5473752534614,52.99088340196774],[-126.54710758312466,52.99096420304038],[-126.5468408593531,52.991045554894946],[-126.5465845051562,52.99113583136384],[-126.5463602020912,52.99125172223732],[-126.5461585268393,52.99138600127115],[-126.54591444144035,52.99148798061918],[-126.54570331876178,52.99161333825554],[-126.5455269815791,52.99175870429124],[-126.54529420336526,52.99186959432665],[-126.54504353942211,52.99196768483426],[-126.54479189123764,52.99206128821529],[-126.5445440021702,52.99215824427429],[-126.54427631119371,52.99223847413758],[-126.54402089915864,52.99232986110094],[-126.54378906868689,52.99244186426194],[-126.5435657339611,52.99256222735946],[-126.5433395563462,52.99267868571021],[-126.54309832051389,52.99278512811447],[-126.542874975549,52.9929038135796],[-126.54269296741242,52.99304583968659],[-126.5425166212002,52.99319176581462],[-126.54239177539415,52.99335257755085],[-126.54231281091397,52.99352662457593],[-126.54223759282914,52.99370065429632],[-126.54213149794438,52.99386865848261],[-126.5420001171804,52.994030064525575],[-126.54186687706978,52.99419091419578],[-126.54172049410612,52.99434677717443],[-126.54151219428465,52.99447547561794],[-126.54128506035065,52.99459193421431],[-126.5411311887847,52.99474503392243],[-126.54095474393179,52.9948853552661],[-126.54071533427988,52.99499009889975],[-126.54049949972494,52.995113792088475],[-126.54032144140055,52.995274280570634],[-126.54004360812112,52.99543971694353],[-126.5398229625893,52.99547882572222],[-126.53952450893131,52.9954902767005],[-126.53923300557389,52.99553531129424],[-126.53897664360561,52.99562836768004],[-126.53873823644204,52.995738705320605],[-126.5385308819295,52.99587019982631],[-126.53834140317004,52.99601392928787],[-126.5380970533713,52.99609740877258],[-126.53779306015542,52.99611391856301],[-126.5375015011499,52.9961550316841],[-126.53722540271401,52.99623696878808],[-126.53701884632335,52.99635892787293],[-126.53688654101491,52.99652256417675],[-126.53681695771819,52.99670161124549],[-126.53682663719394,52.99687692681359],[-126.53689141192676,52.997055917857566],[-126.53693567379175,52.99723500226569],[-126.53696125187007,52.997413615943465],[-126.53698498588605,52.99759279378252],[-126.53701430388199,52.997771946166246],[-126.53705668660764,52.99794991848025],[-126.53710931947364,52.99812727931918],[-126.53716008663231,52.99830465758194],[-126.53719685676627,52.99848265536368],[-126.5372065807024,52.99866133213045],[-126.53719206433573,52.998841804604126],[-126.5371719419472,52.999021746809994],[-126.53716487634601,52.999201064760555],[-126.53723799107456,52.99937441471615],[-126.53730460295556,52.9995494705652],[-126.5373507063836,52.999727425644835],[-126.53737630263677,52.999906038900114],[-126.53737935190063,52.999999585233525],[-126.53739560882396,53.00017879680526],[-126.53740908096565,53.00035858579791],[-126.53742162036663,53.000537814271965],[-126.53743041923876,53.000717615559786],[-126.53742990136101,53.0008974682561],[-126.53736958755114,53.0010731023472],[-126.53729059606397,53.00124658938854],[-126.53720878973282,53.001419524430794],[-126.5371204215566,53.001590804001324],[-126.53703768813006,53.00176374310621],[-126.53697363874399,53.00193940286871],[-126.53694603398385,53.00211824926867],[-126.53693710761434,53.00229814009153],[-126.53699533053756,53.00247435455851],[-126.53707963474945,53.002646532808676],[-126.53718256173603,53.00281526455041],[-126.53730876412968,53.00297885221907],[-126.53726059354425,53.00315499544007],[-126.53723018201508,53.003333854567266],[-126.53716333165328,53.00350896227411],[-126.5371179812364,53.003686213062636],[-126.53709972274451,53.0038661462377],[-126.53711038043163,53.00404538294135],[-126.53713504457411,53.0042245558286],[-126.53717370118535,53.00440254442291],[-126.53720302467492,53.00458169603617],[-126.5371978318495,53.00476156064685],[-126.53709730335363,53.00493066312254],[-126.53692650232395,53.00507766585932],[-126.53673127844,53.005213583134854],[-126.53652666454491,53.005343931168454],[-126.53631734732119,53.00547206812196],[-126.53610707382957,53.005599079539955],[-126.53590151551722,53.00572943969947],[-126.53569878442941,53.005861462957185],[-126.5354960300327,53.00599292120851],[-126.53529517014567,53.00612549999144],[-126.53509617467864,53.00625918152343],[-126.53490188728244,53.006395647158406],[-126.53471323380869,53.00653489272134],[-126.53454992688263,53.00668521942292],[-126.5344044290297,53.00684219732815],[-126.53425142825742,53.00699640321549],[-126.53406933093821,53.00713841482066],[-126.5338834999477,53.00727932249925],[-126.53373892335026,53.007436286373206],[-126.53366551219912,53.00761030073945],[-126.53363041614337,53.00778862379829],[-126.53359251229881,53.00796695953027],[-126.53351162588271,53.00814045177734],[-126.53337548781468,53.008300182738516],[-126.53321402823079,53.008451063773364],[-126.53305633688841,53.00860360384852],[-126.53290050328235,53.00875670004663],[-126.53274749015856,53.008910903808356],[-126.53261696807434,53.009072293704236],[-126.53248926650627,53.00923478226591],[-126.53233905686086,53.009390093310785],[-126.53219073487912,53.00954596037367],[-126.5320423967629,53.009701818339444],[-126.53188657040998,53.00985491303115],[-126.53171947126303,53.010003576207204],[-126.53153455293702,53.01014504048579],[-126.53131297217139,53.0102653706267],[-126.53104702304687,53.01034669060773],[-126.53075721253617,53.010386648870785],[-126.53048175974125,53.01045456399815],[-126.53020442517409,53.010521357443096],[-126.52991850106883,53.01057251040095],[-126.52963253329533,53.010621412837956],[-126.52934661475211,53.01067312015692],[-126.52906354406386,53.01072929611282],[-126.52879093486756,53.010801676608985],[-126.52853160941665,53.01089024010355],[-126.52828171349275,53.01098772499997],[-126.52803844131998,53.0110919028639],[-126.52779233342403,53.01119273132328],[-126.5275424409252,53.011290770386466],[-126.52729538981464,53.01139160200534],[-126.5270841272121,53.0115180452791],[-126.52694698651264,53.011674411245394],[-126.52694268937267,53.01185539993962],[-126.52693465250093,53.01203472005003],[-126.52693407501056,53.01221456259709],[-126.52693630541528,53.012394401544974],[-126.52694881108329,53.01257418560447],[-126.52697249640872,53.01275336391574],[-126.52701763801058,53.01293077003039],[-126.52709727662388,53.013104095634674],[-126.52716852118382,53.01327857921226],[-126.527236965367,53.01345363102956],[-126.527305418152,53.0136281269726],[-126.52740389455514,53.01381593492075],[-126.5272311587247,53.013888420753105],[-126.52691760898792,53.0138976655273],[-126.52662200402149,53.013923081444986],[-126.52632937899301,53.013963605926726],[-126.52608694851239,53.014062728885875],[-126.5259273369131,53.01421471150049],[-126.52582392628224,53.01438325122639],[-126.52574018100745,53.014556185289514],[-126.5256452192857,53.014728048732614],[-126.52546678126107,53.014867788774815],[-126.52521686189058,53.014965831661996],[-126.52496789606835,53.01506498132493],[-126.52473966684187,53.01518029028347],[-126.52454624635766,53.01531673395228],[-126.52438286173663,53.01546761057373],[-126.52426072446173,53.01563119413786],[-126.52417789641142,53.01580412284893],[-126.524053869554,53.01596602928839],[-126.52389705730118,53.01611967278738],[-126.52376835335338,53.01628159965998],[-126.52368177409922,53.01645342407502],[-126.52360273955014,53.01663026175166],[-126.52340068548826,53.01674936911826],[-126.52312144552818,53.016817283369704],[-126.52283831872028,53.016872879468885],[-126.52255233489913,53.01692457019304],[-126.52226635848648,53.016975704407294],[-126.5219813280554,53.01702851003909],[-126.52169438161432,53.01707739714112],[-126.52143115767373,53.01715811804709],[-126.52139600930785,53.017337001170645],[-126.52131784150603,53.017509907035034],[-126.52118163438558,53.01767017878445],[-126.52099570776686,53.01781050952955],[-126.52077498326501,53.017930815237904],[-126.52054014364838,53.018042783375925],[-126.52034668983619,53.01817866417986],[-126.52025072279723,53.01834772143029],[-126.52023897022715,53.01853098296059],[-126.52001058610321,53.01863619838859],[-126.51977010475979,53.018745384006],[-126.51954090874104,53.01886013098778],[-126.51928151357488,53.0189497942495],[-126.51902213225112,53.019039456870416],[-126.51880041366437,53.019156401556344],[-126.51861165753324,53.01929617605921],[-126.51842385489878,53.01943706657322],[-126.5182266523033,53.01957408072578],[-126.51806321647175,53.0197227072296],[-126.51797474669269,53.01989509105544],[-126.5178797142999,53.02006470678601],[-126.51768250143662,53.020200034741364],[-126.5175124912105,53.020346448218845],[-126.51738830845024,53.02049994831654],[-126.5170881467079,53.02053936201214],[-126.51682387060644,53.02045872215432],[-126.51657430850096,53.020359524222364],[-126.51633493631644,53.02025300226807],[-126.51610201832875,53.0201402932151],[-126.51587003446642,53.020028135393204],[-126.51563249907315,53.01991879819535],[-126.51539490929079,53.01980610816007],[-126.51515366239006,53.019698471471415],[-126.51490139545132,53.01960712544312],[-126.51462251750002,53.019553436861216],[-126.51431892895292,53.01954019407002],[-126.51402008929942,53.01953421766681],[-126.5137203763047,53.019533837944586],[-126.51342173308771,53.019544102224444],[-126.51312796820737,53.01957115232311],[-126.51283240197522,53.019604932636625],[-126.51253599706745,53.01964600370969],[-126.51224716838526,53.01969599632888],[-126.51197157162713,53.01975938600955],[-126.51172335290057,53.01984729874553],[-126.51152145941525,53.019983757160034],[-126.5113383582536,53.02013021843136],[-126.511158956637,53.020273866555286],[-126.5109898767376,53.02042250753414],[-126.51083299410234,53.02057557751267],[-126.51069579796793,53.02073472041411],[-126.51057640640869,53.02089995341534],[-126.51046449644565,53.02106627442192],[-126.5103544663406,53.02123370768832],[-126.51025005066698,53.021402237067086],[-126.51015311677098,53.02157185449849],[-126.51007021970686,53.021744772695904],[-126.51001445913779,53.02192205557661],[-126.50999232992747,53.02210087829146],[-126.50999262847876,53.02228128032788],[-126.5099845247523,53.022461153925505],[-126.50994650854365,53.02263948050629],[-126.50989639544004,53.02282066511236],[-126.50982662162775,53.02299688782938],[-126.50972495275508,53.023162043120735],[-126.50953418751205,53.023293967626124],[-126.50929091302706,53.023407625481234],[-126.509072961787,53.023530146654025],[-126.50885500100838,53.02365322322725],[-126.5086370471434,53.02377573461346],[-126.508408706723,53.023889335175106],[-126.50818036497397,53.024002926323725],[-126.50799624019423,53.02414490428251],[-126.5077500158532,53.02424625485456],[-126.50746440315682,53.02425588305748],[-126.50722863130318,53.02413924274532],[-126.50700497290403,53.02401975309705],[-126.50677391967326,53.02390645314181],[-126.50654472169876,53.023792024250355],[-126.50631459200685,53.02367703416956],[-126.50608354248187,53.02356373283954],[-126.50585248757098,53.02344987530179],[-126.50563161680718,53.02332924160119],[-126.50540706761878,53.02321199375499],[-126.50514000849788,53.02313301608999],[-126.50484732851649,53.023096736045595],[-126.50455463398977,53.02306044637455],[-126.50426200151112,53.02302808200283],[-126.50396663415177,53.023001895911015],[-126.50367041890824,53.022983547350876],[-126.50337249098372,53.022976975258366],[-126.50307472072721,53.02298496845302],[-126.5027799910033,53.02301256145378],[-126.50249775069105,53.023069224977576],[-126.50224679060494,53.02316610220538],[-126.50202504402772,53.02328637645486],[-126.50181741494107,53.0234155633181],[-126.50161261291963,53.023546414072584],[-126.50139933281764,53.02367169790885],[-126.50116345773155,53.0237813901092],[-126.50089639858882,53.023860395566906],[-126.50060264870689,53.023891896244265],[-126.50030473953977,53.02388867785006],[-126.50000759357422,53.02387033299449],[-126.49971137574235,53.02385085398098],[-126.49941342740853,53.02384427195764],[-126.49911771045333,53.02386737787842],[-126.49884305895797,53.023936326148515],[-126.49859493343749,53.0240365450623],[-126.49835998183568,53.02414678346798],[-126.49811844147936,53.02425201137625],[-126.497855189246,53.024336605357185],[-126.49757579284648,53.02439884757046],[-126.4972897145107,53.02444935635869],[-126.49700175029113,53.02449707558875],[-126.49671853812387,53.02455260874311],[-126.49644484578184,53.02462379732247],[-126.49617589204978,53.02470167945423],[-126.49591356589542,53.024786820933045],[-126.49566919600325,53.02488981461164],[-126.49547186856007,53.025024549363025],[-126.49536457774734,53.025191956461676],[-126.49532462367173,53.02536972117052],[-126.49531738360632,53.02554959850588],[-126.49531481952738,53.02572944722751],[-126.49529355919722,53.02590881864089],[-126.49523771842144,53.02608497364213],[-126.49515944110065,53.026258981731345],[-126.49502779661735,53.02642033224576],[-126.4948191700714,53.02654782533498],[-126.49459268434752,53.02666474354995],[-126.49436526461834,53.026781109455996],[-126.4941350088146,53.02689524576249],[-126.49390380407573,53.02700882980476],[-126.49367165867535,53.02712128784048],[-126.49343763159284,53.027232641727686],[-126.49320172262348,53.02734287352825],[-126.49296579952856,53.02745199335584],[-126.49272800111596,53.02756055579274],[-126.49248926863028,53.0276685568991],[-126.49225051354875,53.02777600183101],[-126.49201082450728,53.0278828943885],[-126.49177020140432,53.02798922560246],[-126.49152955562039,53.02809499167071],[-126.49128892368223,53.02820076614303],[-126.49104734917798,53.02830653507164],[-126.49080576704813,53.028411747752244],[-126.49056419024413,53.02851752464236],[-126.49032353204741,53.02862273247139],[-126.49008006579078,53.02872683095006],[-126.48983188509388,53.02882646644234],[-126.48957991431388,53.02892275559491],[-126.48932606389452,53.0290168109726],[-126.48907031038121,53.029109188434106],[-126.48881456429983,53.02920100952772],[-126.48855881506097,53.02929395058107],[-126.48830496016163,53.02938800374154],[-126.48805298907786,53.02948485431223],[-126.48780573193064,53.02958503741392],[-126.48756412811781,53.0296896876322],[-126.48732819025632,53.02979990753059],[-126.48710073383562,53.02991625922071],[-126.48689772069679,53.030048196739735],[-126.48672476452909,53.03019402077261],[-126.48657525473553,53.03034926770529],[-126.48643792766305,53.03050894624709],[-126.48630623676911,53.0306702776644],[-126.48616984896738,53.030829951984956],[-126.4860212677514,53.030985759051106],[-126.48586988488618,53.03114101271065],[-126.48573911626336,53.031302339620986],[-126.48565610939087,53.03147468385973],[-126.48561237329646,53.031652459997794],[-126.48558640713448,53.03183184822285],[-126.48557164725915,53.03201119031089],[-126.48556436475154,53.03219106634662],[-126.4855580170799,53.03237037378007],[-126.48554886657575,53.03255024849878],[-126.4855322385096,53.032729598191665],[-126.48550066162538,53.0329084535937],[-126.48542325180296,53.03308188600639],[-126.48531964943824,53.03325038826809],[-126.48522633735682,53.03342108912285],[-126.48513956722654,53.03359288349721],[-126.48504812794711,53.03376414120727],[-126.48493983257376,53.03393154183745],[-126.48478656096442,53.03408623680647],[-126.48455810131408,53.034199790517],[-126.48432310398898,53.03431280586833],[-126.48418104235137,53.03446801873046],[-126.48411579845066,53.03464364119202],[-126.48407579483126,53.03482196581518],[-126.48402458575096,53.0349992158576],[-126.48390504398259,53.03516386473022],[-126.48370762504105,53.03529801428619],[-126.48354401422264,53.03544714732661],[-126.48345535890893,53.035618392167656],[-126.48339011023941,53.035794014110024],[-126.48328929403324,53.03596306758499],[-126.48314538066104,53.036120527606734],[-126.48297989676009,53.036269667440486],[-126.48279938959436,53.03641327492234],[-126.48256247550435,53.03652348864893],[-126.48237720160087,53.03665815090414],[-126.48232316107119,53.036834291048265],[-126.4822766047051,53.0370115210693],[-126.48220199008814,53.037185504181075],[-126.48214701941775,53.03736276848955],[-126.48206397329643,53.0375339801754],[-126.48194162003225,53.03769975874343],[-126.48185200148865,53.03786875607037],[-126.48192778558946,53.038043810014734],[-126.48204454374167,53.038209167784856],[-126.4821361554631,53.03838023067482],[-126.482137264548,53.038559506751795],[-126.48207574841348,53.03873567711154],[-126.48202545281946,53.038912922097275],[-126.48196767183497,53.03908907710575],[-126.48191550730037,53.03926632963654],[-126.48183620316458,53.03943976668041],[-126.4817353657081,53.03960825376114],[-126.48157736745284,53.03976016643531],[-126.48147184418396,53.03992811660183],[-126.48143464041716,53.040106984062405],[-126.48136843730506,53.04028149671985],[-126.48124137877312,53.04044448770501],[-126.48110587341732,53.040604707226926],[-126.48100316215877,53.040773201182645],[-126.48096128649136,53.04095153166493],[-126.48095024021558,53.04113085699549],[-126.48095320397749,53.0413106899518],[-126.4809561826083,53.041490513864716],[-126.48095448345131,53.041670365783816],[-126.4809639869907,53.041849607302694],[-126.48095668317326,53.04202947305812],[-126.48090637900565,53.042206717227],[-126.4808130294966,53.04237741370053],[-126.48070282094777,53.04254426146914],[-126.48059728719822,53.04271220161797],[-126.4805161116666,53.04288508923009],[-126.48046767927477,53.04306289022466],[-126.48043233048762,53.04324119369566],[-126.48040632896115,53.0434200148621],[-126.48038407012875,53.0435993855038],[-126.48036273777001,53.04377875235142],[-126.48033580905695,53.04395758618112],[-126.48029672240037,53.04413590472386],[-126.48022488840142,53.04431043023379],[-126.48015773213832,53.04448494561618],[-126.48014576115325,53.0446648300146],[-126.48016460353128,53.044844033287696],[-126.4801741108334,53.04502383924508],[-126.48013689084826,53.04520215002442],[-126.48006412140714,53.045376123355666],[-126.47996889319506,53.045546826445374],[-126.47984836424557,53.045711465062624],[-126.47970159733538,53.045867810905904],[-126.47952197992765,53.046011408746025],[-126.47932449669256,53.04614555012254],[-126.47912327137782,53.04627802111194],[-126.4789323767587,53.04641606128549],[-126.47876870400663,53.04656630724787],[-126.4786388089245,53.046728185725215],[-126.47852576408604,53.04689447772787],[-126.47842865160442,53.04706463125688],[-126.47835026034029,53.04723806135538],[-126.47829619599688,53.04741476327619],[-126.47826925617082,53.047593587293136],[-126.47829275556805,53.04777277166575],[-126.47836853004631,53.047946706440975],[-126.47846760281877,53.048116055773015],[-126.478568544951,53.04828540639422],[-126.4786489788229,53.048458757326834],[-126.47867715261746,53.048637357858425],[-126.47861934450255,53.0488135102317],[-126.47850161763161,53.0489787004728],[-126.47835013683849,53.04913338711729],[-126.47817894599623,53.04928086567804],[-126.47800118377268,53.04942500909211],[-126.47782342034192,53.04956915222643],[-126.47765504879145,53.049717739060796],[-126.47750731185592,53.04987352091852],[-126.47739520230664,53.05004037243024],[-126.47735516454337,53.05021812841287],[-126.47737587251773,53.05039788870218],[-126.47742271533423,53.05057529332941],[-126.47746674830317,53.050752718249406],[-126.47748092433687,53.0509324959206],[-126.4774735979466,53.051111804771374],[-126.47745786166844,53.05129171234392],[-126.47744400246266,53.051471047574644],[-126.47744415654084,53.05165088188056],[-126.47747326057473,53.051830043324394],[-126.47745193933173,53.05201052917241],[-126.47723747167579,53.05213297442729],[-126.47715251455713,53.05230475344453],[-126.47710592588056,53.05248253557205],[-126.47707709431394,53.052661375366974],[-126.47704266509989,53.05283967302401],[-126.47699513356297,53.053017458858214],[-126.47696537429852,53.05319630231517],[-126.47689913229547,53.053370802175934],[-126.4768160376672,53.05354369378271],[-126.47673108236201,53.0537160370593],[-126.47664611131655,53.0538883713545],[-126.47654290135219,53.054099440677305],[-126.47635384447027,53.0542385889551],[-126.47616290494157,53.05437661504979],[-126.47597009552858,53.05451465732164],[-126.47577915351005,53.05465268277374],[-126.47559009166004,53.05479182978404],[-126.47540478486789,53.05493263761257],[-126.47522510823974,53.05507566345746],[-126.4750529431193,53.055222020266854],[-126.47489204586012,53.05537336922064],[-126.4747395872206,53.05552805444762],[-126.47459089875227,53.055684400561084],[-126.47444218792565,53.05584018183085],[-126.4742887990408,53.05599487015862],[-126.4741269566781,53.05614510128446],[-126.47395102707186,53.05628979522515],[-126.47376288507792,53.05642949119599],[-126.47356723765411,53.05656529075231],[-126.47336970528791,53.056701106489605],[-126.47317781183291,53.056838575537874],[-126.47299530258452,53.05698104439365],[-126.47282219509192,53.05712740150228],[-126.47264910269908,53.05727656398794],[-126.47247977415769,53.05742682266785],[-126.47231606113975,53.057579308569586],[-126.47216173115346,53.057733988723015],[-126.47202049235925,53.05789086626921],[-126.47189703935615,53.05804990456561],[-126.47184480945809,53.05822715069454],[-126.47187584679826,53.05841247220998],[-126.47195437868336,53.0585835932761],[-126.4720627642361,53.05875011297296],[-126.47218887932037,53.05891487644559],[-126.47231687309505,53.059079076494506],[-126.47243646257408,53.05924443050729],[-126.47256537911608,53.059408070808814],[-126.47269336088317,53.05957227046273],[-126.4728026938231,53.05973878561476],[-126.47287750012991,53.059910476640056],[-126.47292432844881,53.06008732633852],[-126.47295250465157,53.060267612174194],[-126.47296292436599,53.06044853383175],[-126.47296027593215,53.06062949884726],[-126.47293983942943,53.06080830307365],[-126.47288296790006,53.0609889294376],[-126.47281115225466,53.061169050862944],[-126.47274865388798,53.06134802339952],[-126.472719781636,53.06152405557799],[-126.47274600149152,53.06169650573125],[-126.4728142493244,53.061867102383296],[-126.47290771901272,53.062035921730875],[-126.47302174315345,53.06220410289888],[-126.47315069582866,53.06236997419325],[-126.47328991212726,53.062533572190354],[-126.47343469055718,53.06269434201378],[-126.47357945372676,53.062852306010974],[-126.47373257159371,53.06300576332197],[-126.47389873679828,53.063155797643866],[-126.47407327554527,53.06330300137451],[-126.47425155620776,53.063449069325856],[-126.47442982314445,53.06359513705587],[-126.47460251134434,53.06374234741602],[-126.4747658650804,53.06389183601547],[-126.47491524634299,53.06404474203],[-126.4750236261568,53.06420846187679],[-126.47505837615805,53.06438984087291],[-126.47509684987489,53.064571204860876],[-126.47520991209335,53.064734896694596],[-126.47538172209651,53.06488715605058],[-126.4756019754541,53.06510924595291],[-126.47554307737671,53.065191278590426],[-126.47541404633587,53.06535370377937],[-126.47526162511636,53.06551342620572],[-126.47502240657634,53.065602351219894],[-126.4747247228966,53.06564388565491],[-126.4744753418248,53.06574292579977],[-126.47425895818695,53.06586816878888],[-126.4740717043213,53.06600674026237],[-126.47389293723289,53.06615144451882],[-126.47372166844644,53.06629947090234],[-126.47355604003269,53.06644915961319],[-126.47342983780219,53.06661549730634],[-126.47327819427595,53.066762888561904],[-126.47301279068861,53.06685022911621],[-126.47273044138426,53.0669281172593],[-126.47251579974166,53.067041580385464],[-126.47237917458692,53.06719507749003],[-126.47227732890168,53.067366918853516],[-126.47218020675172,53.06754265843631],[-126.47205960633883,53.0677078516468],[-126.47188927957787,53.06785700087217],[-126.47167382584936,53.067982790943496],[-126.47143572720029,53.06808963174372],[-126.47119102729259,53.06819200749109],[-126.47094162309608,53.06829104899265],[-126.47068939622194,53.06838785127613],[-126.47043527155957,53.068483549050725],[-126.47018115444808,53.06857868151516],[-126.46992890301918,53.06867492648312],[-126.46967572938918,53.06877173032913],[-126.46942066668318,53.06886686488828],[-126.46916275668329,53.06895752826648],[-126.46890009658962,53.069042051758174],[-126.46863077363852,53.069116507787676],[-126.4683529337493,53.06918092159129],[-126.46806562857803,53.06923472318179],[-126.46777447271396,53.06927845497876],[-126.46748040230625,53.069311548526976],[-126.46718529678431,53.06933624630034],[-126.46688826608788,53.06935591325703],[-126.46659024976468,53.069371657189734],[-126.46629034794276,53.06938460212607],[-126.46599041877553,53.06939643488983],[-126.46569049819817,53.06940770213446],[-126.46539151697432,53.06942008539747],[-126.46509348117307,53.069434140420995],[-126.46479641808759,53.06945099655042],[-126.4645022215965,53.06947288730828],[-126.46421087654622,53.06949980381115],[-126.46392152304247,53.06953791658843],[-126.46364004452006,53.069612408914054],[-126.46338693670526,53.069717051225595],[-126.46318640985325,53.06984333170287],[-126.46305729906994,53.07000406678658],[-126.46295640605013,53.07018093360801],[-126.46282918119296,53.07034334621528],[-126.4626164786141,53.07046855289008],[-126.46234063055302,53.07054582567753],[-126.46205123162997,53.07058057255083],[-126.46175228985553,53.07059742832606],[-126.46145241445227,53.07061372226873],[-126.46115643940774,53.070646251673615],[-126.46084282720437,53.070689498197815],[-126.46060074641963,53.07077783994782],[-126.46047712799178,53.07092902209169],[-126.46040523682453,53.071108579205095],[-126.46033619042483,53.07129260708804],[-126.46021830569158,53.07145553608413],[-126.4599980996944,53.07157964666707],[-126.4597788286158,53.07170319742841],[-126.45955673510575,53.071824508826516],[-126.45933274382246,53.07194471565785],[-126.45911158116492,53.07206658729418],[-126.4588988799431,53.072192342826774],[-126.45870026423883,53.07232477510465],[-126.45851856989776,53.072466096220346],[-126.45834909762645,53.07261465721189],[-126.45819279857746,53.07276988971924],[-126.45805149436903,53.072930110492784],[-126.457927066313,53.073093618128226],[-126.45781855145454,53.07325986961729],[-126.4577166020633,53.07342890122545],[-126.45762123305767,53.07360070394759],[-126.45753522932888,53.07377414653406],[-126.45745765776323,53.073948685825236],[-126.45739130633345,53.07412485783603],[-126.45733711434659,53.074300982713616],[-126.4572969636572,53.07447817366804],[-126.45727644229471,53.074655844361814],[-126.45727182339604,53.074835138674146],[-126.45727844938791,53.075015509916305],[-126.45728880588038,53.0751964314191],[-126.45729730765663,53.07537735111873],[-126.45729925217998,53.075557740427044],[-126.45728809687452,53.075737059950676],[-126.45727134448504,53.0759175215973],[-126.45725835550077,53.076100209608846],[-126.45724630585507,53.07628401444021],[-126.457231453024,53.07646727434409],[-126.4572100574326,53.07664999482884],[-126.45717926781639,53.07682994597285],[-126.45713442626385,53.07700659900115],[-126.45707271433294,53.077179391119344],[-126.45698944079264,53.077346099496836],[-126.45686677210445,53.07750232011874],[-126.4566897435302,53.077644749288375],[-126.45647802504021,53.07777890417453],[-126.45625505039543,53.077909740712094],[-126.45604051705462,53.07804390565462],[-126.45585787398196,53.078186346223745],[-126.45572679815992,53.078343162721296],[-126.45562948007067,53.07850936842156],[-126.45554903764668,53.07867999085041],[-126.45548172536536,53.078854479763294],[-126.45542378581747,53.0790311824003],[-126.45537147328378,53.07920953953006],[-126.45532384542864,53.079389554791504],[-126.45527623222422,53.07956957892101],[-126.45522580028862,53.079749049153484],[-126.45516880389242,53.07992742416151],[-126.4551033760211,53.08010359065364],[-126.45502482237725,53.08027644622233],[-126.45493033940846,53.08044543691859],[-126.45481709976312,53.08061058255285],[-126.45468793054685,53.08077187219136],[-126.45454751677546,53.08093095502197],[-126.45440148029151,53.08108894778338],[-126.45425263926522,53.0812463864105],[-126.45410660050099,53.08140436981553],[-126.45396898592726,53.08156400584411],[-126.45383232475828,53.0817247585044],[-126.45368817075844,53.08188441928798],[-126.45353934231164,53.08204354206665],[-126.45339237369558,53.082203213256356],[-126.45325009232596,53.08236342201739],[-126.45311717778803,53.0825252798561],[-126.45299924013815,53.082688765294414],[-126.45290097387276,53.082854971890576],[-126.45282517373047,53.08302500945456],[-126.4527802775451,53.083198854657944],[-126.45276160315802,53.08337652547849],[-126.45276073119824,53.08355692475686],[-126.45277202486811,53.08373895362269],[-126.4527879922896,53.08392152927592],[-126.45280023470764,53.084104119183856],[-126.45280403659214,53.08428506519414],[-126.45279286591919,53.084464939129774],[-126.45277514250613,53.08464484711975],[-126.45275461527133,53.084824201114635],[-126.45273222370469,53.08500411798388],[-126.45270983204377,53.085184043793724],[-126.4526874341656,53.08536340488708],[-126.45266690621214,53.08554275879325],[-126.45265011832909,53.085722098349194],[-126.45263894069384,53.085901416392545],[-126.45263243976262,53.08608015178429],[-126.45266238727423,53.086257636025394],[-126.45274933728619,53.08643209618579],[-126.45279517732804,53.08660839003164],[-126.45280087944215,53.08679212519488],[-126.45278976800094,53.08697760995452],[-126.45274490930127,53.08715537175334],[-126.4526427806781,53.0873126287134],[-126.4524036636467,53.08742559136207],[-126.45216927911552,53.08754470246667],[-126.45203817257848,53.08770262549417],[-126.4519314734905,53.08786942772594],[-126.45183698212956,53.08804177654284],[-126.45174156838056,53.0882146935067],[-126.45163488468772,53.08838317157461],[-126.45150759765681,53.088548931564006],[-126.45134556229794,53.08870024907523],[-126.4511128770662,53.08880422066827],[-126.4507958025796,53.088887224866426],[-126.45076403739472,53.089066065161106],[-126.45072666701529,53.08924548256002],[-126.45069303088967,53.08942432096961],[-126.4506687460431,53.08960313265099],[-126.45066129360895,53.08978187115268],[-126.45066789076473,53.08996336170538],[-126.45068480601833,53.09014705382244],[-126.45072040085779,53.09032843373972],[-126.45078396763401,53.09050186366026],[-126.45088764752283,53.0906650562849],[-126.4510501294197,53.090817940180635],[-126.4512582617561,53.09095496299753],[-126.45149141418943,53.09106948052034],[-126.45173471913697,53.0911705131721],[-126.45198638072223,53.09126647574195],[-126.4522436066683,53.09135792565085],[-126.45250732482607,53.09144487723747],[-126.45277382112992,53.091528447228114],[-126.4530430957241,53.091608653531026],[-126.4533132749978,53.09168660585374],[-126.45358435306461,53.09176175742511],[-126.45385820918631,53.091833536306595],[-126.45413390668037,53.091902510793865],[-126.45441238808525,53.091968668286114],[-126.45469270176858,53.09203257714042],[-126.45497393493756,53.092094240857925],[-126.45525513880492,53.09215309837235],[-126.45553820192086,53.092210836549185],[-126.45582581673803,53.09225622239891],[-126.4561262088948,53.09227355553849],[-126.45642356795437,53.09226904605279],[-126.45672080019565,53.09225276692917],[-126.45701794169337,53.09222808839095],[-126.4573131641064,53.09219893466412],[-126.45760623162542,53.09214346205846],[-126.45789647596304,53.092085749763186],[-126.45815074165203,53.09207468009034],[-126.45846363773984,53.092123331881034],[-126.45874496183906,53.09219282955908],[-126.4590171167333,53.092279169183406],[-126.45927345769859,53.09237396865798],[-126.45950103443865,53.09248905678354],[-126.4597119546699,53.09262045154602],[-126.45992565287975,53.092748473716625],[-126.4601643343319,53.09285230370955],[-126.4604298389723,53.092929146487855],[-126.46070922816075,53.092991924231654],[-126.46099509299032,53.0930473885424],[-126.4612837446644,53.093101729782575],[-126.46156684661369,53.0931616853623],[-126.46204396096222,53.0932601071864],[-126.4621828201575,53.093300456751884],[-126.4623437349569,53.093390029352676],[-126.46225956260213,53.093561789957235],[-126.46213797393678,53.093733132086996],[-126.4620129424615,53.093931943427734],[-126.46188756203831,53.09409882717942],[-126.46175463753718,53.0942601289622],[-126.46160857585471,53.0944175647419],[-126.46145311176085,53.09457055517347],[-126.461284504168,53.09471911482262],[-126.46110086424024,53.09486157478732],[-126.4609068728287,53.0949990282453],[-126.4607044458835,53.09513427332257],[-126.46048314188327,53.09525390508023],[-126.46023349873518,53.09534787607955],[-126.45996213187458,53.095421762723696],[-126.45968226622374,53.09548895900597],[-126.45940618323372,53.09556005706017],[-126.45912812568749,53.0956216426669],[-126.45883533932076,53.09570513833586],[-126.458594342283,53.09582148154507],[-126.4584179466911,53.095943176017336],[-126.45843954549505,53.096123486980524],[-126.45848552585817,53.09631098187634],[-126.45855944123906,53.09648548750111],[-126.45865109623927,53.09665768329736],[-126.45876233141281,53.096824765403454],[-126.45889595097573,53.096984472987415],[-126.45905101559549,53.09713849480169],[-126.45921632592696,53.097289115205015],[-126.45938256809518,53.09743861128358],[-126.45954603723888,53.09759035882883],[-126.45971694477267,53.097739271567605],[-126.4599008781005,53.09788029908879],[-126.46010803643021,53.09800722563717],[-126.4603365673916,53.098121743484626],[-126.46057812406463,53.09822836688847],[-126.46082432680726,53.09833273075652],[-126.46106587094346,53.09843935320912],[-126.46130185577191,53.09854935825277],[-126.46153782685936,53.09865936287673],[-126.46177382018934,53.09876992269025],[-126.46203612399952,53.09889271323817],[-126.46233425782924,53.098868573466326],[-126.4626314608103,53.098845566010795],[-126.46292700680243,53.09884216791539],[-126.46322382336253,53.0988701370634],[-126.46350879445274,53.09892616349328],[-126.46378551493333,53.098996787629595],[-126.46406227042313,53.09907189283283],[-126.46432793410482,53.0991576808782],[-126.46457038548567,53.099259810756884],[-126.46479901513813,53.09938160707063],[-126.46504090973059,53.09951735205163],[-126.46526887234248,53.0996626708257],[-126.46545385257107,53.09981208452333],[-126.46556959802591,53.09996009443878],[-126.46557189939277,53.099999301560175],[-126.4655795960731,53.10010459471099],[-126.46545781145339,53.10025857768834],[-126.46524621679771,53.100411793595235],[-126.46499424050026,53.10055003725055],[-126.46475128226201,53.100659121847166],[-126.46447108885515,53.1006988746544],[-126.46415591886097,53.10070459454239],[-126.46386077069005,53.10074553404779],[-126.46357456586017,53.10083517334174],[-126.46329401771848,53.10092758643437],[-126.46302607182973,53.10097626044916],[-126.46277871131886,53.10093913347025],[-126.46255483412097,53.1008251579796],[-126.46233717133516,53.100679793791905],[-126.46211028159706,53.10054734609912],[-126.46186132518461,53.10044859804666],[-126.46159935719409,53.10035886397734],[-126.46134390888787,53.10026574249503],[-126.46110980616429,53.100156286011256],[-126.46090349528649,53.10002319995715],[-126.46087143061078,53.09999923057128],[-126.46070925553668,53.09988109382842],[-126.4605094840229,53.099746296411816],[-126.46028564968152,53.09963512206502],[-126.45997872239786,53.099537716231914],[-126.45963278782583,53.09946735238783],[-126.45937040730104,53.09950982951002],[-126.4593160993824,53.09959183429548],[-126.45931413617204,53.099755994090785],[-126.45935461203736,53.09995135291611],[-126.45936728641537,53.099999483517635],[-126.45940923899593,53.100158426036664],[-126.45944881536201,53.10035771438186],[-126.45946014231855,53.10053974983415],[-126.45947051425846,53.10072065955416],[-126.45947433998087,53.100901038953076],[-126.45946225929073,53.101080359703104],[-126.4594258127462,53.101256978469436],[-126.45934723753197,53.10142983483365],[-126.45923681518718,53.10159888876635],[-126.4591151185534,53.101763513488244],[-126.4589708920545,53.10192093807256],[-126.45881447511555,53.102075048399506],[-126.45868150179257,53.10223522558386],[-126.45857106267329,53.10240316736783],[-126.45848125055603,53.10257550190278],[-126.45842514984871,53.10275107596009],[-126.45840555960018,53.10292986080652],[-126.45840564532065,53.103110819213185],[-126.458407601841,53.103291761382756],[-126.45843296437499,53.10347374218724],[-126.45844063679945,53.10366419053923],[-126.45844193532746,53.10387147047888],[-126.45846210454997,53.10400640311135],[-126.45854725285244,53.10418030872251],[-126.45876416237486,53.104341368970026],[-126.45898350866496,53.10446881454574],[-126.45918792778835,53.10459854964916],[-126.45939896198358,53.104734990403585],[-126.45957271173734,53.10488389181394],[-126.45972309246699,53.10503513372471],[-126.4598353271559,53.10520500690889],[-126.45992237267194,53.1053805802692],[-126.45997761520066,53.10555795350708],[-126.45999731202996,53.10573435352849],[-126.45998989609197,53.105913090983975],[-126.45996378215183,53.10609303059508],[-126.45992176280247,53.10627358780931],[-126.45986664866118,53.106453075470526],[-126.45980212740994,53.10662923830198],[-126.45972446850702,53.106800405627844],[-126.45957364665418,53.10695561517491],[-126.45939657090943,53.10710420379237],[-126.45923166053687,53.10725386532809],[-126.45906016847763,53.10740131125997],[-126.45888586395502,53.107547647386056],[-126.45871815701365,53.107697883719794],[-126.45853914062448,53.10784199667007],[-126.45832718025305,53.10796718929288],[-126.4580992066192,53.10808179475362],[-126.45786276195265,53.10819251545445],[-126.45762254362525,53.10830045361889],[-126.45738044685937,53.108407833841326],[-126.45714116015577,53.10851632314707],[-126.45690658768501,53.10862759039635],[-126.45667954691011,53.10874331886271],[-126.45646944768218,53.108868500863245],[-126.45630170881098,53.10901704856169],[-126.45614620211352,53.10917282729077],[-126.4559718802467,53.10931915897438],[-126.45578629401976,53.10946217244491],[-126.45558467971361,53.109594607528855],[-126.4553481658304,53.109700276784565],[-126.45499755673664,53.10981087549155],[-126.45474665524799,53.10970875894545],[-126.45455620619411,53.10957335154247],[-126.45440666586445,53.109413701291814],[-126.45417911418174,53.10930813241826],[-126.4538976900256,53.109239189230365],[-126.45362270638256,53.109160692308855],[-126.45335696267463,53.10906983430608],[-126.45320852443496,53.108925864670255],[-126.45312992705249,53.10875025441707],[-126.45305317146598,53.108571831417485],[-126.45294376921056,53.10840194133579],[-126.45281662669271,53.108236045167665],[-126.45264204553912,53.10809665672515],[-126.45239771914164,53.10799618618403],[-126.45213013223237,53.10790701762137],[-126.45188483529662,53.1078037530716],[-126.45164233572412,53.10769879215854],[-126.45140353781548,53.10758989949759],[-126.45117404292974,53.107475933277556],[-126.45096033571562,53.10735013711413],[-126.45076242507116,53.10721475196942],[-126.45056171952051,53.10708106230643],[-126.45034151943743,53.10696089203912],[-126.45010825891409,53.10684413245518],[-126.44986663499981,53.106731886060714],[-126.44961208432771,53.106637059894005],[-126.44934005831031,53.10656974630856],[-126.4490551851253,53.10652601048851],[-126.44876202483208,53.10649406575463],[-126.44846426296908,53.10646998991117],[-126.44816374066062,53.1064509613564],[-126.4478622964591,53.1064324912775],[-126.44756177195838,53.10641178499944],[-126.44726490978744,53.10638489710939],[-126.44697357559757,53.10634845921171],[-126.4466905183413,53.10629910855428],[-126.44641294504262,53.10623741148983],[-126.44613993650681,53.10616561243853],[-126.44587153738237,53.10608651688635],[-126.4456068164724,53.10600123986711],[-126.44534485761818,53.1059109053131],[-126.44508659173526,53.10581720386765],[-126.44483112330421,53.10572180616401],[-126.4445775270244,53.105626400866925],[-126.44433505800089,53.10552142483681],[-126.44410739970441,53.105401270982235],[-126.44388438663391,53.10527718212626],[-126.44365676019376,53.105159823938074],[-126.44341435480908,53.10506045702026],[-126.44314880178608,53.10498469701424],[-126.44286562933651,53.10492301261619],[-126.44257137226623,53.10487481452482],[-126.44227258620099,53.104840078130884],[-126.44197579100369,53.104818223276986],[-126.44168386190148,53.10481371209899],[-126.44139041186689,53.10484281958753],[-126.441097171273,53.10489209378793],[-126.44080772432109,53.10494639068478],[-126.4405210557381,53.10499732410835],[-126.44023723189548,53.10505271910177],[-126.43995436443299,53.10511091547337],[-126.4396724566459,53.10517079276064],[-126.43939150255889,53.10523177731866],[-126.43909549525641,53.105286103343616],[-126.43879953111025,53.10534322512175],[-126.43854496218572,53.10542427792456],[-126.43837324675944,53.10555488774042],[-126.43828152702625,53.105732259893216],[-126.43820106736065,53.10591295158406],[-126.43811893867536,53.106113261843134],[-126.43803323681472,53.10624019092969],[-126.43775245840168,53.10631909815997],[-126.43744226582031,53.106358906579985],[-126.43715033814536,53.106355504623195],[-126.43685157148404,53.10632467157559],[-126.43664373100559,53.10631031776347],[-126.43629658686993,53.106304312012234],[-126.4359888118261,53.10630713266164],[-126.43570736123958,53.10632105108057],[-126.43541389666808,53.10635014370853],[-126.43511572941466,53.106377576713754],[-126.43482368687216,53.10636296488138],[-126.43453593911345,53.106310241060825],[-126.43424815984035,53.10625583149195],[-126.43396123263817,53.10619246341651],[-126.4336735959538,53.106150376936505],[-126.43338079574684,53.10615369161003],[-126.43307981805559,53.10618000933129],[-126.43278562475808,53.1062287015883],[-126.4325131745616,53.10630028737377],[-126.43226055606488,53.106390847748564],[-126.43201744368461,53.10649481829578],[-126.43178000250776,53.10660605505775],[-126.43154352015821,53.106718964031515],[-126.43130324883663,53.10682740452533],[-126.431056372347,53.106929701621745],[-126.43081046261341,53.10703592074202],[-126.43056457440791,53.10714438017026],[-126.43031773628073,53.10725228678843],[-126.43006900095456,53.10735627370998],[-126.42983914206543,53.107478118732715],[-126.42961017374127,53.107594913534],[-126.4293728144965,53.10771398822674],[-126.42903581126141,53.10778804122504],[-126.42868846919126,53.10776353080968],[-126.42839251859992,53.107733230892364],[-126.42808238063702,53.10768841570904],[-126.42778718181646,53.10763906384114],[-126.42749374371722,53.10758017653086],[-126.42722912950448,53.10750270132516],[-126.42694684441302,53.10743481768606],[-126.42664213170593,53.10737093142091],[-126.42639086584052,53.10731805615311],[-126.42610225222647,53.10727259343963],[-126.42581272810517,53.10722881846481],[-126.42552227280785,53.1071861665876],[-126.42523089197884,53.1071452024896],[-126.4248747650602,53.10708429325219],[-126.42464728618201,53.10706998893441],[-126.42435409757388,53.10703518718686],[-126.42406092997497,53.10700094038299],[-126.42376683667908,53.10696838133405],[-126.42347274947609,53.10693638624143],[-126.42317773643481,53.106906069931334],[-126.42288275550492,53.106877428970265],[-126.42258777680381,53.10685047242872],[-126.42229189275612,53.10682575929379],[-126.42199602582852,53.106802730520556],[-126.42169927014436,53.10678362128452],[-126.42140067877995,53.10676955540803],[-126.42110215271174,53.106760535069164],[-126.42080273385291,53.106756563678466],[-126.42050428746144,53.106757060921694],[-126.42020598379868,53.10677044660327],[-126.4199078481482,53.10680232290138],[-126.41960974360934,53.1068358745335],[-126.41931519950852,53.1068526059801],[-126.41902223110185,53.10683795840851],[-126.41872249085532,53.10680148077199],[-126.41842908229644,53.10674370031273],[-126.41816070904387,53.10666229208634],[-126.41793511137959,53.10655440585693],[-126.41775035758732,53.106413881713834],[-126.41758600980626,53.10625535793576],[-126.41742260625169,53.106096830585294],[-126.41723972170323,53.1059557432756],[-126.4170169346491,53.10584840109771],[-126.41674869648948,53.10577987888036],[-126.41645449620624,53.105734977051625],[-126.41590085606794,53.10565905906978],[-126.41561684170503,53.105604035237505],[-126.41533283207016,53.105547890253185],[-126.41504697012836,53.105495112452715],[-126.41475657586783,53.10545635105698],[-126.4144588570283,53.105433865693456],[-126.41418224104474,53.10536817264947],[-126.41390837013756,53.10529685811371],[-126.41363634936337,53.10522330452573],[-126.41336431852064,53.105148620929576],[-126.41309227780584,53.105072825251646],[-126.41282024347551,53.10499758467083],[-126.41254728894606,53.10492458758378],[-126.4122725065488,53.1048543928951],[-126.41199494927784,53.104788133310514],[-126.41171373259466,53.10473029370799],[-126.41142422025156,53.10468591879611],[-126.41113010926202,53.10464884660376],[-126.41083603136126,53.104615134928146],[-126.41054199194788,53.104585348459665],[-126.41024522980287,53.10456340492522],[-126.40994845308408,53.104541469660624],[-126.40965263583229,53.10452120652638],[-126.40935588541564,53.10450038117506],[-126.40905909878711,53.10447732326037],[-126.40876232736262,53.104454255585246],[-126.408465535939,53.10443063148967],[-126.40817059305354,53.104403083159774],[-126.40787928581547,53.104365993209186],[-126.40759071216068,53.10432048522933],[-126.4073048992933,53.10426937372678],[-126.40701997741078,53.10421433239526],[-126.40673690029362,53.10415647841354],[-126.40645382403503,53.10409863271538],[-126.40617166038898,53.10403909804138],[-126.40589129761942,53.103970592878156],[-126.4056127541575,53.103898154736555],[-126.40533424812563,53.10382796568263],[-126.40505300399433,53.10376561957083],[-126.4047700289216,53.10371785358554],[-126.40448163944366,53.103690829370926],[-126.40418785121355,53.10368623199651],[-126.40389049199246,53.10369957335912],[-126.4035904200036,53.10372356306677],[-126.40329042130686,53.1037537187401],[-126.40299133422972,53.10378219434328],[-126.40269594595031,53.10380616580816],[-126.40239960911377,53.10382958401731],[-126.40210329754443,53.10385412185007],[-126.40180697601679,53.10387922368118],[-126.4015106796323,53.103905436172695],[-126.40121533215664,53.10393389457038],[-126.4009209281197,53.103964025227256],[-126.40062844133269,53.10399751001212],[-126.40033596027712,53.1040332349589],[-126.4000482481448,53.10407790666901],[-126.40001744322066,53.104084168927145],[-126.39976439350984,53.10413488961876],[-126.39948339948211,53.104196899773925],[-126.39920238443173,53.104258353582296],[-126.39891757314452,53.10431254106417],[-126.39861567050197,53.10434157081034],[-126.39830806428392,53.10435941446973],[-126.39803632759171,53.10441299105602],[-126.39780534367162,53.104521887825335],[-126.39759991309555,53.10466151512645],[-126.39743673341677,53.104818371514355],[-126.3973306728641,53.10498174944122],[-126.39728179439304,53.105156704331634],[-126.39726012593918,53.10533941091448],[-126.39723470032199,53.10552213009899],[-126.39718117178084,53.10569934142089],[-126.39712014903424,53.105877142582294],[-126.39705445560637,53.10605495041658],[-126.39697658119096,53.106230002451525],[-126.39687804154681,53.10639784533948],[-126.39674949010853,53.10655626053169],[-126.39657870566036,53.10670137183123],[-126.39638070353054,53.10683816626278],[-126.39617709149815,53.10697386766001],[-126.39598942186812,53.10711455284111],[-126.39577653917195,53.10736064452365],[-126.39540650624853,53.107309777278125],[-126.39510891524819,53.10730125289091],[-126.39480950020157,53.10729777139435],[-126.39451012691339,53.10729877080433],[-126.39421174873416,53.1073053683927],[-126.39391339713963,53.10731644694289],[-126.39361508116512,53.1073297655228],[-126.39331675519087,53.10734363912604],[-126.39301935650825,53.1073558326986],[-126.39272099845552,53.10736466735693],[-126.39242257867657,53.10736846391998],[-126.39212228191474,53.107370016090314],[-126.3918191762361,53.10737214151449],[-126.39151602400155,53.10736922876942],[-126.39121652083651,53.10735621015189],[-126.39092436274963,53.10732804488601],[-126.39064230787929,53.107280242109965],[-126.39036757745149,53.10721335785108],[-126.39010018838732,53.10713244757737],[-126.3898355423115,53.10704368449823],[-126.38957273752243,53.106951553405885],[-126.38930902640718,53.106861665614574],[-126.38904162619896,53.10677907678684],[-126.38876780394214,53.106709389176444],[-126.38851196528826,53.106661486142784],[-126.38819632068765,53.10662275152775],[-126.38790047365173,53.10659962846108],[-126.38760003366694,53.10658492757692],[-126.38729589823696,53.10657696074143],[-126.38699086556471,53.10657235741334],[-126.38668491513722,53.10656887675128],[-126.38637988258951,53.10656427184668],[-126.38607761858863,53.10655629576166],[-126.38577904553676,53.10654102841175],[-126.38548506638631,53.10651733746653],[-126.3851975218104,53.10648185561093],[-126.38491827273558,53.106431789151316],[-126.38464639658494,53.10636936412208],[-126.38437725912657,53.1062985306646],[-126.38411179387734,53.10622152666531],[-126.38384908778771,53.10613834614954],[-126.38359007912528,53.106050106541595],[-126.38333289701526,53.105956822895244],[-126.3830784946569,53.10585961258415],[-126.38282591907881,53.10575902549175],[-126.38257613855991,53.105656196873994],[-126.38232727693801,53.10555055914513],[-126.38208121048744,53.10544434714865],[-126.38183606327397,53.105337020180876],[-126.38159280318266,53.10522967764701],[-126.38134953443519,53.10512289934547],[-126.38110816293789,53.10501723487553],[-126.38087049950293,53.10490931706088],[-126.38064027578446,53.10479465210226],[-126.3804156009815,53.104674366578074],[-126.38019744818233,53.104550142548376],[-126.37998395639454,53.10442309751842],[-126.37977603864374,53.10429322857957],[-126.37957186402062,53.10416167105503],[-126.37937328354712,53.104029539474965],[-126.3792380954977,53.10387086909984],[-126.37912805324217,53.103700348686125],[-126.37900403764368,53.103537160378636],[-126.37888189886603,53.103372845461465],[-126.37875974606791,53.10320853045066],[-126.37863574332965,53.1030447859351],[-126.37850799976624,53.10288272945252],[-126.37837280861247,53.102722937564636],[-126.37822827407827,53.10256597205712],[-126.37807442625228,53.10241184176407],[-126.37791590992522,53.10225941134761],[-126.37775739465815,53.10210697174205],[-126.37760353524291,53.10195284084404],[-126.37745715038601,53.1017958892172],[-126.37730980368922,53.101636690599065],[-126.37716993152584,53.101476356447115],[-126.37704780573361,53.10131371564181],[-126.37701161389518,53.101135123257066],[-126.377030109053,53.10100676786502],[-126.37735501636136,53.100936827652944],[-126.37766728601541,53.100918458822754],[-126.3779675226048,53.10091358205151],[-126.37826390754597,53.100898068051926],[-126.37855627047027,53.10084950832374],[-126.37880046948202,53.10075069077315],[-126.37901166051343,53.10062283778896],[-126.37921813076417,53.1004894062533],[-126.37943780538755,53.1003682479872],[-126.37970645009496,53.10028391595042],[-126.38001558383795,53.10022857597597],[-126.38027964259948,53.10015546191001],[-126.38039167562779,53.100026249169325],[-126.38039423303105,53.099999350033706],[-126.38041339893739,53.09984186002015],[-126.38043595440675,53.099645152131544],[-126.38035323243517,53.09949471271879],[-126.38013606947334,53.0993744022231],[-126.3798787698581,53.09926262822054],[-126.37963267083295,53.09914801206201],[-126.37941827006914,53.099021524380376],[-126.37921223118599,53.098887731002],[-126.37900618865307,53.098755057725256],[-126.3787899411421,53.09863082468386],[-126.37855607576758,53.09852288978829],[-126.37830085603416,53.09843350580611],[-126.37803636887847,53.09835367926458],[-126.37776445986528,53.09828059858376],[-126.37748697963734,53.09821201689193],[-126.37720670673762,53.09814568437199],[-126.37692551187817,53.098079918837485],[-126.3766461785344,53.098013017283236],[-126.37637055264798,53.097942186151414],[-126.37610048506947,53.09786517866731],[-126.37583783654141,53.097780859532584],[-126.37558260715535,53.09768922879568],[-126.37532921985532,53.097594239253844],[-126.37507861242366,53.09749531426941],[-126.37483077985047,53.097393574330845],[-126.37458666013939,53.0972884697002],[-126.37434531534588,53.09718055015314],[-126.37410862619323,53.09706925400687],[-126.37387752543388,53.09695513408458],[-126.37365014252336,53.09683820529555],[-126.37342929088744,53.09671845877161],[-126.37321495050058,53.09659532093859],[-126.37300710669105,53.096467124638835],[-126.37280578429024,53.096334990283395],[-126.3726100404339,53.096198911913696],[-126.37241801933321,53.096060580570175],[-126.37222972586096,53.0959205520015],[-126.37204423227473,53.0957788381092],[-126.37185872009017,53.09563656823044],[-126.37167415183688,53.09549428612073],[-126.37148866691948,53.09535313601679],[-126.37131248665875,53.095208030301464],[-126.37115586261659,53.09505221408073],[-126.37099738887069,53.094898653326005],[-126.37081286591182,53.09476085151644],[-126.37059111480329,53.09464389909001],[-126.37034517533293,53.09454158798473],[-126.3700899333482,53.09444490778176],[-126.36983840424097,53.09434485403568],[-126.36955904817377,53.09427122199492],[-126.36928345844876,53.094200374186336],[-126.36901343240959,53.0941239060774],[-126.36875732666839,53.09403394843108],[-126.3685141836866,53.09393050432205],[-126.36827939356793,53.0938186257699],[-126.36804646552834,53.09370562945533],[-126.36780704321855,53.09359769046669],[-126.36756297240457,53.09349368256712],[-126.36731983062026,53.093389680237266],[-126.36707670491478,53.093285668391154],[-126.36683263776558,53.093181667928384],[-126.36658857661787,53.093078222687424],[-126.36634451178236,53.09297421224087],[-126.36610045789466,53.092871330675315],[-126.36585545761442,53.09276788682252],[-126.36561048315312,53.09266556283741],[-126.36536549004518,53.09256267368901],[-126.36511958011583,53.09246091628458],[-126.36487274841602,53.09235971695936],[-126.36462590293097,53.092258517158974],[-126.36437814052358,53.092158440126035],[-126.36412760515843,53.09206116777894],[-126.36386775684043,53.09197009057552],[-126.36360421260851,53.09188238554552],[-126.36334065934186,53.09179524466551],[-126.36307897809327,53.091706412276096],[-126.3628247213839,53.091612509967426],[-126.36257977531814,53.091511864757884],[-126.36234968755667,53.09140052464459],[-126.36213355023284,53.09127905720552],[-126.36192856464312,53.09114914729267],[-126.36173287962947,53.091013050509346],[-126.3615418458666,53.09087302204206],[-126.36135451994531,53.09073073203951],[-126.36116627239653,53.09058900926052],[-126.36097524241472,53.09044897984346],[-126.36077862576863,53.09031344003853],[-126.36057365379834,53.09018409240081],[-126.36035660007884,53.09006262445853],[-126.36012744963041,53.08994903619211],[-126.35988619291423,53.08984220710274],[-126.35963565310745,53.08974157277765],[-126.35937861311061,53.08964711573176],[-126.35911601078269,53.089558277325395],[-126.35885063924735,53.089474484328875],[-126.35858345609476,53.08939574278173],[-126.35830603663004,53.08932375442464],[-126.35801005237434,53.08926807280492],[-126.35771054560446,53.08923816270948],[-126.35742256793434,53.0892446363951],[-126.35714238747629,53.089288625681654],[-126.35686522117572,53.089358366797114],[-126.35659193207599,53.08944267048969],[-126.35632239570282,53.089530314640676],[-126.3560584606231,53.08961514462643],[-126.35580488832615,53.08971002694419],[-126.35555508370946,53.08980825874973],[-126.35530998380676,53.08991095770728],[-126.35503576882341,53.08999805720315],[-126.35477077785922,53.09007000665411],[-126.35450211554061,53.09015036547602],[-126.35423060738705,53.090225129918885],[-126.35395527717426,53.090292061971184],[-126.35367142954199,53.09034612911586],[-126.3533809305024,53.090386778929634],[-126.35308663323754,53.090422392831535],[-126.35279423942903,53.090460241232144],[-126.35233564160312,53.09041791157904],[-126.35203709099645,53.090391910346],[-126.35173859750049,53.09037094576936],[-126.351443097396,53.09037351012188],[-126.35115344942818,53.090405179292866],[-126.35086487244189,53.09045421615398],[-126.35057917262947,53.090511086977294],[-126.3502934582053,53.09056628094396],[-126.35000772446855,53.09061922439378],[-126.34972294657452,53.0906738494889],[-126.34944003722786,53.0907301535369],[-126.34915714666843,53.090787012595264],[-126.34887424495946,53.090844426752135],[-126.34859041021474,53.09090128723304],[-126.34830657470884,53.09095814703038],[-126.34802368574319,53.09101556806487],[-126.34774079016263,53.09107409993126],[-126.34745978839415,53.091133754969036],[-126.34717973643852,53.09119620320512],[-126.34690157237111,53.09126088614568],[-126.34662719401643,53.09133115960822],[-126.34635660582376,53.09140757935206],[-126.34608884226773,53.091487360532575],[-126.34582109259424,53.091567132095626],[-126.34555143836417,53.09164467666439],[-126.34527800249658,53.09171549995601],[-126.34499703726344,53.09178242747375],[-126.34471037017911,53.09183649018013],[-126.34441879128269,53.09186254612312],[-126.34412318483841,53.09185332317147],[-126.34382371510436,53.091828989038156],[-126.34352524147255,53.091813050193906],[-126.34322499873655,53.09180775559021],[-126.34292480460873,53.09181031224254],[-126.34263040855934,53.09183413103246],[-126.34233891436587,53.091870830412915],[-126.34204649961023,53.09191033735952],[-126.34175504953605,53.09195263744945],[-126.34146550083662,53.091998848439566],[-126.34117785351019,53.092048979306654],[-126.34089305918233,53.09210414777536],[-126.34061296861425,53.09216377485774],[-126.34033668112701,53.092231242476025],[-126.34006514667335,53.09230933561675],[-126.33980212090506,53.09239804351193],[-126.33955134462484,53.092497364431985],[-126.33931653468643,53.09260616732523],[-126.33909207512511,53.09272389472567],[-126.33887328992084,53.09284777240526],[-126.3386638900186,53.09297778975969],[-126.33846390076225,53.09311337309184],[-126.33827515391198,53.09325341467694],[-126.33809954535074,53.093397335471245],[-126.33794457631933,53.09355128106739],[-126.3378065224532,53.09371357702566],[-126.33767783632322,53.09387977211281],[-126.33754916414854,53.094045967001456],[-126.33741295386356,53.09420714568895],[-126.33725984704131,53.09435884407527],[-126.33708137265084,53.0944971691495],[-126.33687283947718,53.094619328553826],[-126.33663893421867,53.09472755865518],[-126.33638718511179,53.09482575498611],[-126.33612415827969,53.09491726012233],[-126.33585643479918,53.095005416650125],[-126.33559151302133,53.09509412931714],[-126.33533316057758,53.095186739850256],[-126.33507768669801,53.09528774057067],[-126.3348203588009,53.095390995853144],[-126.33456016493943,53.095485850794816],[-126.3342942107269,53.0955639146458],[-126.3340214997227,53.09561454139671],[-126.33373815025081,53.09561982367406],[-126.33344417905442,53.09558367846244],[-126.33314448220247,53.095532982764915],[-126.33284392688729,53.09549293751538],[-126.33254167027263,53.09547249974295],[-126.33222814045733,53.09544761107423],[-126.33191751204849,53.095433917960534],[-126.33162769667862,53.09545041787423],[-126.33137378090588,53.09551275501376],[-126.33115671992623,53.09562260312568],[-126.33096139821741,53.09576265115341],[-126.3307727021304,53.095913875867495],[-126.33057554648923,53.09605896591607],[-126.33035576335514,53.0961811540681],[-126.330120042595,53.096297775089276],[-126.32987491771856,53.096409949029756],[-126.32961940604837,53.09650869702481],[-126.329353429567,53.0965839530817],[-126.329074099273,53.09662786408325],[-126.32877955781598,53.09663821212792],[-126.32847455532661,53.09662729095234],[-126.32816481262977,53.09660910369291],[-126.32785886972006,53.0965965073437],[-126.3275614844421,53.09660293417643],[-126.3272802340148,53.096640688248],[-126.3270094820979,53.096704747711584],[-126.32674541783577,53.096786150589324],[-126.32648705729711,53.09688153828456],[-126.3262362621427,53.09698587710449],[-126.32599017787807,53.09709579568552],[-126.32575064506561,53.097207380847074],[-126.32551862150257,53.097320629990776],[-126.32530353792552,53.09744950940509],[-126.32509883514886,53.09758957334152],[-126.3248997687182,53.09773297380587],[-126.32469880884804,53.097873582474655],[-126.32448935562965,53.09800357429964],[-126.32426385137623,53.09811511785112],[-126.32401663712307,53.098202070555374],[-126.32374866665008,53.09826386496079],[-126.32347124577652,53.0983150448157],[-126.32318816732045,53.0983583963296],[-126.32289847792367,53.09839448677456],[-126.32260499970927,53.098424419887216],[-126.32230774560692,53.0984498807629],[-126.32200672843364,53.09847254553289],[-126.32170475538571,53.09849353594248],[-126.32140184995635,53.09851397237137],[-126.32109894844369,53.09853496375577],[-126.32079701062675,53.09855874839213],[-126.32049789225802,53.098585330219166],[-126.3202006865315,53.0986175083591],[-126.31990819191846,53.09865527525148],[-126.31962044017389,53.09870087174578],[-126.3193374395924,53.098755418303625],[-126.31905824063647,53.09882003797139],[-126.31878377566181,53.098891366908916],[-126.31851029469388,53.098968294803214],[-126.31823963657351,53.099048575808844],[-126.31796899006576,53.099130541313976],[-126.3176992619342,53.09921137431066],[-126.31742766029039,53.09928997978054],[-126.31715508119302,53.099364096479846],[-126.3168796373634,53.09943150648975],[-126.31660040334278,53.099490518150255],[-126.31631733263113,53.09953889066086],[-126.31602950421639,53.099575514971725],[-126.31573785870167,53.099602064729595],[-126.31544240048903,53.09961910460197],[-126.31514502544547,53.099629981891404],[-126.31484573369916,53.09963469658358],[-126.31454455038322,53.0996366189094],[-126.3142433504314,53.09963629961303],[-126.31394122258934,53.09963598201359],[-126.31363909636242,53.09963790453663],[-126.31333888067117,53.09964318257078],[-126.31303963005958,53.09965350379038],[-126.31274230374632,53.09967109759949],[-126.31244784189528,53.099697646682664],[-126.31215344413606,53.099730917557295],[-126.31186093467566,53.099768664511586],[-126.3115684561278,53.09980865155681],[-126.3112759579163,53.09984807322131],[-126.31098344953813,53.09988414180275],[-126.31068901380982,53.09991460351547],[-126.31039453113756,53.0999366657305],[-126.31009711979326,53.09994304860811],[-126.30979771891255,53.09993319392319],[-126.30949731798563,53.099915488992366],[-126.3091978724657,53.09989946595445],[-126.30890037957069,53.09989464154514],[-126.30860489615165,53.09990885877252],[-126.30830301493793,53.0999427042856],[-126.30801439678714,53.10000172008155],[-126.30776249315646,53.100092012144614],[-126.30753600991876,53.1002040817943],[-126.30731990075496,53.10032901366812],[-126.30711508409149,53.100463444088504],[-126.30691966061323,53.10060344302892],[-126.30673548907984,53.10074733848418],[-126.30656817388942,53.100893995522625],[-126.30645244735824,53.10106124237895],[-126.30635174197474,53.10123405241363],[-126.3062163126439,53.10139238648194],[-126.30603779226786,53.10154242411175],[-126.3058386872994,53.101691958975444],[-126.30561320320926,53.101815791399645],[-126.30535459101706,53.1018870479352],[-126.30507324836778,53.10191747071831],[-126.3047814872238,53.10193110401949],[-126.30448214995218,53.101931875452635],[-126.30417714787598,53.10192538227897],[-126.30386930796757,53.10191552530832],[-126.30356054834387,53.10190679930905],[-126.30325463864807,53.10190310272317],[-126.30295347469257,53.10191003295011],[-126.30265802322536,53.10193095785545],[-126.30237298955595,53.10197090297512],[-126.30209272780735,53.10202316012844],[-126.30181251724544,53.10208270387118],[-126.30153516347858,53.102148397635084],[-126.30125878457397,53.10222081094084],[-126.30098618624625,53.10229881620317],[-126.30071548958269,53.1023812977803],[-126.30044949334835,53.102468248570936],[-126.3001863415689,53.10255967331927],[-126.2999278931483,53.10265388217515],[-126.29967413316325,53.10275088417032],[-126.29942600452885,53.10285067694602],[-126.29918443115578,53.10295268453038],[-126.29895697498789,53.10306586933601],[-126.29874081016584,53.1031885444694],[-126.29853311805319,53.103317920475035],[-126.29833200485132,53.1034528817297],[-126.2981318301385,53.103589516448885],[-126.29793166519735,53.10372559504955],[-126.29772772247577,53.10385888617986],[-126.29751719825325,53.1039865823183],[-126.29729538813388,53.10410590759384],[-126.29706231960124,53.104220778952836],[-126.29681705290315,53.10432952250291],[-126.29656046183297,53.10442652478744],[-126.29629346925663,53.10450674590044],[-126.29601604019498,53.104565139376945],[-126.2957310099447,53.10460899439199],[-126.29543937176007,53.104643336967555],[-126.295143012402,53.104670403234806],[-126.29484379201686,53.10469076218748],[-126.29454267308529,53.10470719907332],[-126.29424153444747,53.10472082964634],[-126.29394225889223,53.104733343337756],[-126.29364390334514,53.104744724577245],[-126.29334366451758,53.10475219266143],[-126.29304246327685,53.10475686573835],[-126.29273937544971,53.104759292866376],[-126.29243627219181,53.104759487329346],[-126.29213221817243,53.104758553956536],[-126.29182817148313,53.10475650830236],[-126.2915241097937,53.10475445293974],[-126.29122006698077,53.10475296145267],[-126.29091788789415,53.10475258504186],[-126.2906157314616,53.10475332824751],[-126.2903154463805,53.1047563069744],[-126.29001706640263,53.10476208585788],[-126.28971963726205,53.10477121402785],[-126.28942503379095,53.10478426056875],[-126.28913327466829,53.10480178119623],[-126.28884435980525,53.10482377593116],[-126.28855828561713,53.10485192995128],[-126.28827599490296,53.104886232013996],[-126.28800414655106,53.10494403729239],[-126.28774465653632,53.10502982296874],[-126.28749841061456,53.10513742004017],[-126.28726349583268,53.105260684236235],[-126.28704081696591,53.10539399327658],[-126.28682937440563,53.10553120065723],[-126.28662821726428,53.10566670652405],[-126.28644016356249,53.10580329176626],[-126.28626620949886,53.10594881506653],[-126.28610445766263,53.10610158696638],[-126.28595677159585,53.10626048256306],[-126.28582035220948,53.10642327675244],[-126.28569610131882,53.10658828224653],[-126.28558121237326,53.10675438542034],[-126.28547381439364,53.10692159081893],[-126.28537108960312,53.10708934952485],[-126.28527118560632,53.10725821279624],[-126.28517597365237,53.107428194053156],[-126.28508262455102,53.107599282202244],[-126.28499208891758,53.107770372440484],[-126.28490250307063,53.107942571781045],[-126.28481477272004,53.108114775528584],[-126.28472798465135,53.108286967959806],[-126.28464214272815,53.10845972273368],[-126.28455535331213,53.10863192396801],[-126.28446762006439,53.108804118427685],[-126.28437895806313,53.108976324001475],[-126.28428935966231,53.109147402337044],[-126.2841903859118,53.109317947384135],[-126.28407925236587,53.109487965809635],[-126.28397093215504,53.10965796839159],[-126.28388131947881,53.109829611081274],[-126.28382542172763,53.11000397833595],[-126.28380695175589,53.11018105232741],[-126.28380159894567,53.1103586505505],[-126.28380559488272,53.11053735571868],[-126.28381802267536,53.110716596366544],[-126.28383606806214,53.11089637924788],[-126.28385880302842,53.111076715551484],[-126.28388433761084,53.11125704511083],[-126.28390987241049,53.1114373746463],[-126.28393446429843,53.11161770642289],[-126.2839571963472,53.111797486905196],[-126.28397429964748,53.11197727192114],[-126.2839514089181,53.11233026535643],[-126.28394889726009,53.11251402344701],[-126.28394826069879,53.11269834171681],[-126.28394762034891,53.112882095275246],[-126.2839413584325,53.11306474187581],[-126.28392853171212,53.11324628378271],[-126.2839035259625,53.113424493596995],[-126.28386540158478,53.113599929304996],[-126.28380947628801,53.11377093492072],[-126.28373198828248,53.11393694578247],[-126.28360856419363,53.11409129768268],[-126.28343735102561,53.11423456858568],[-126.28323426654948,53.114369507807524],[-126.28301431559746,53.11450112572485],[-126.28279436698737,53.114633298951574],[-126.28259036903184,53.114771044788924],[-126.28241167511095,53.114916008190235],[-126.28223111598872,53.11506209619634],[-126.28204869532985,53.115209864526776],[-126.28187189896546,53.11535930429113],[-126.28170728069898,53.1155120760748],[-126.28156328468158,53.11566815982133],[-126.28144738194037,53.115829778697496],[-126.28136521713913,53.11599691935366],[-126.28131583619084,53.11617014882958],[-126.281290813982,53.11634779310735],[-126.28128358574061,53.116528765308566],[-126.2812857447871,53.11671194707042],[-126.28128789262807,53.11689569353997],[-126.28128256190678,53.11707833734412],[-126.28126129702733,53.117258222421675],[-126.28122692365768,53.11743700925316],[-126.28118973892921,53.11761636744094],[-126.28114695048923,53.11779518318523],[-126.28109665294976,53.117972887346326],[-126.28103792926504,53.11814893532158],[-126.28096890400897,53.11832276685519],[-126.28086895230703,53.11849106961254],[-126.28070809856366,53.11864943293427],[-126.28055099438487,53.11880666668958],[-126.28046786956861,53.11897268826358],[-126.28045031012638,53.119147517766486],[-126.28045710768939,53.11932621548976],[-126.28048169314077,53.119507102912465],[-126.28051939902446,53.119688523888634],[-126.28056551650143,53.11986936914336],[-126.28061441947831,53.1200479579207],[-126.28066707381596,53.12022542628694],[-126.28073375493726,53.12040229661689],[-126.2808097950342,53.12057914467035],[-126.28089145452424,53.120756535046944],[-126.28097590739085,53.120932807243946],[-126.28105850791233,53.12110963950241],[-126.28113641860249,53.12128591813777],[-126.28120496763921,53.12146166323161],[-126.28126133982087,53.121636881495604],[-126.28130181012133,53.12181212857883],[-126.28132168417237,53.121986313157805],[-126.28131909728411,53.12216054218452],[-126.28128280754505,53.12233317519117],[-126.28121750145647,53.122504201002485],[-126.2811269146265,53.122674722159395],[-126.28101947358222,53.12284416284605],[-126.28090172933926,53.12301362788928],[-126.28077931214463,53.1231831038913],[-126.2806597128483,53.123353128795536],[-126.28054946416447,53.12352426077523],[-126.28045513623819,53.12369591061518],[-126.28038235589709,53.123869750144],[-126.2803423394423,53.12404575281503],[-126.28033229440847,53.12422504571249],[-126.28034191108233,53.12440653285049],[-126.2803590339341,53.124588557910556],[-126.2803723982794,53.12477060082328],[-126.28037078781169,53.12495042939009],[-126.28034293746428,53.12512752354246],[-126.28029265029508,53.125306355973464],[-126.28023677275073,53.125491359498724],[-126.2801659306876,53.12567583372906],[-126.28007163717956,53.12585364981081],[-126.27994635607249,53.12601752928296],[-126.27978069439322,53.126160215953625],[-126.27957276892796,53.12628002898168],[-126.2793497927469,53.12639092270289],[-126.27911556545799,53.12649679612802],[-126.27887192905887,53.12659764484814],[-126.27861984943605,53.126694595924],[-126.27836120592025,53.1267887653095],[-126.27809878393991,53.12688013744939],[-126.27783262816767,53.12697095307383],[-126.27756457702719,53.12706066107355],[-126.27729746816811,53.12715035728613],[-126.27703131267307,53.12724173578157],[-126.27676889602678,53.12733479004803],[-126.27651118393344,53.127430629318575],[-126.27625911218718,53.12753037186719],[-126.2760164248084,53.12763401795567],[-126.27578220419655,53.12774324594277],[-126.27556018664714,53.12785916760237],[-126.27535036854361,53.12798122727744],[-126.2751518471827,53.12811109432999],[-126.27496365692785,53.12824766855791],[-126.2747848655425,53.128390378515256],[-126.27461451867383,53.128537550297516],[-126.2744526349321,53.128689739629834],[-126.27429639159269,53.128845841626344],[-126.27414765348165,53.12900473155801],[-126.27400267281638,53.12916584447501],[-126.2738633181538,53.12932862929546],[-126.27372678526474,53.129492527832504],[-126.27359398051378,53.12965641757138],[-126.27346211468317,53.12981974924095],[-126.27333210906446,53.1299813913246],[-126.27320492168641,53.13014358247126],[-126.27308146622603,53.130306329544155],[-126.27296270846634,53.1304707507535],[-126.27284677262458,53.13063627678122],[-126.27273456880755,53.13080235876846],[-126.27262425844137,53.130969556695],[-126.27251675157486,53.13113731273751],[-126.27241204817943,53.13130561794029],[-126.27230736250135,53.13147447872361],[-126.27220453324249,53.13164334408783],[-126.27210172171054,53.131812765035775],[-126.27199983796186,53.131982183743126],[-126.2718979533983,53.132151602346774],[-126.27179419581634,53.13232102514832],[-126.27169043021918,53.1324893274333],[-126.2715847951417,53.132658189633005],[-126.27147820849795,53.13282594244189],[-126.27136976013747,53.132993134713516],[-126.27126129950146,53.13316088262734],[-126.27115284942752,53.13332807466888],[-126.27104438713242,53.13349583131587],[-126.2709368675415,53.13366357672327],[-126.27082841490025,53.13383076842058],[-126.2707199500334,53.13399852472316],[-126.27061149567857,53.13416571619055],[-126.27050302903787,53.13433346329975],[-126.27039362933026,53.13450065669387],[-126.27028422875912,53.134667849971315],[-126.2701738986563,53.13483504525294],[-126.27006355270402,53.13500224045032],[-126.26995322085932,53.13516943549506],[-126.2698428696251,53.135336074733196],[-126.26973253603991,53.135503269541125],[-126.26962218660502,53.13567046426464],[-126.26951185127788,53.13583765883564],[-126.2694014965097,53.136004288636975],[-126.26929115944205,53.13617148297112],[-126.26918080652436,53.13633867722085],[-126.2690713964195,53.136505869205855],[-126.2689619890364,53.13667362575929],[-126.26885352089413,53.13684081536629],[-126.26874503691637,53.137008004892294],[-126.26863749930541,53.13717574788223],[-126.26853090460216,53.13734349757998],[-126.26842429759672,53.1375118029218],[-126.26831862987733,53.13767954132663],[-126.26821390861042,53.13784784216683],[-126.26811011524933,53.13801614079383],[-126.2680081935265,53.138184435072404],[-126.26791283489499,53.138355519920815],[-126.26784656301562,53.13853549324039],[-126.26779529528544,53.13871935850118],[-126.26774308775798,53.1389015496958],[-126.26767395914605,53.13907537148775],[-126.26757011108911,53.13923582668744],[-126.26741092082922,53.13937903586272],[-126.26718232167475,53.13950503952404],[-126.26690955482132,53.1396042522688],[-126.26662063439039,53.13966485072811],[-126.26633238823716,53.13968510283253],[-126.26603369117137,53.13968241358053],[-126.26572742060246,53.13966405468759],[-126.26541640532439,53.13963674227662],[-126.26510443620367,53.139607755035655],[-126.26479530827407,53.139582677606306],[-126.2644918682442,53.139568790866576],[-126.26419789932496,53.13957224424662],[-126.26391719166895,53.13960032554442],[-126.26365071289219,53.13965694072432],[-126.26338992658735,53.13972810810197],[-126.26313201834061,53.13980935228787],[-126.2628769810309,53.139899552894136],[-126.26262572481498,53.139998143225334],[-126.2623782692035,53.14010345607466],[-126.26213458403521,53.14021547360449],[-126.26189656143556,53.14033252446257],[-126.26166229535322,53.14045404820569],[-126.26143461364144,53.14057948287794],[-126.2612116332731,53.1407071385984],[-126.26099521196643,53.140837029221956],[-126.26078533931722,53.140967460731865],[-126.26058202693977,53.14109787740913],[-126.26038246881097,53.1412299616111],[-126.26018666846629,53.14136428700371],[-126.2599936935743,53.14150028199878],[-126.25980352915855,53.141637946642945],[-126.25961617874006,53.14177785459613],[-126.25943165032552,53.14191886750767],[-126.25924900023021,53.14206100538488],[-126.25906823180283,53.1422048149935],[-126.25888933819272,53.14234917593751],[-126.25871232631056,53.142495217592725],[-126.25853718931562,53.14264181956309],[-126.25836299832262,53.14278897492178],[-126.25818973835322,53.142936683705464],[-126.258018353296,53.14308495282341],[-126.25784696703884,53.14323322168091],[-126.25767651187336,53.143382052938485],[-126.25750699929644,53.14353087292106],[-126.2573374821517,53.14367913692841],[-126.25716796724889,53.14382796536406],[-126.25699751543249,53.1439756661955],[-126.2568289235964,53.144123927420274],[-126.25667441415317,53.144277204205316],[-126.25653399393295,53.14443660804427],[-126.25640013334727,53.14459823832181],[-126.25626815127421,53.14476098478048],[-126.25613333800074,53.144921496368575],[-126.2559891545254,53.145078666806356],[-126.25583087941816,53.14522970074355],[-126.25564348981607,53.14536791704264],[-126.25543170015519,53.14549498153514],[-126.25521050326917,53.1456175842587],[-126.25499684166212,53.14574521667723],[-126.25480288959355,53.14588176062968],[-126.25461550722322,53.14602221605521],[-126.25443282999869,53.146165466576704],[-126.25425203103451,53.146309824219585],[-126.2540712308915,53.146454190537966],[-126.25388761426532,53.14659631281299],[-126.25369834614355,53.14673565034718],[-126.2535025024709,53.14687051998777],[-126.25329632413553,53.14699868891785],[-126.25307792667365,53.14712072580453],[-126.252850123438,53.147236050917186],[-126.25261292793333,53.14734692293207],[-126.25237009247932,53.147454436280206],[-126.25212442233307,53.147559158603464],[-126.25187594247404,53.14766276597298],[-126.25162840869011,53.14776693548988],[-126.25138273489698,53.14787165625525],[-126.2511427134979,53.147979725751846],[-126.25090925511014,53.14809057739352],[-126.25068424930721,53.148207021698305],[-126.2504714567735,53.14832903282709],[-126.2502736993876,53.14845998404799],[-126.25009661568414,53.14860320683582],[-126.24993738736002,53.14875591964119],[-126.24979316939942,53.148915887710324],[-126.24965928541441,53.149080306480954],[-126.24953384610332,53.14924639238],[-126.24941307744666,53.1494119125597],[-126.24929980299183,53.149577972537315],[-126.24919683798109,53.14974680723436],[-126.24910326855412,53.149918427564145],[-126.24901625625535,53.15009171910726],[-126.24893111951022,53.150265562348274],[-126.24884503807066,53.15043940749643],[-126.24875709131229,53.15061213607117],[-126.24866162360577,53.15078263953871],[-126.24855678849976,53.150950357071345],[-126.2484397473515,53.15111418315374],[-126.24830769140827,53.15127300323084],[-126.24815967647795,53.15142681026997],[-126.24799947666142,53.15157783712922],[-126.24782895841881,53.15172496840171],[-126.24764998632764,53.15186932055465],[-126.24746443660841,53.15201143638842],[-126.24727420064141,53.15215188557185],[-126.24708021069713,53.15229122186095],[-126.24688621294375,53.15242943742285],[-126.24669221392391,53.15256765265616],[-126.24650103079087,53.15270586169339],[-126.24630513658256,53.15284071897733],[-126.24610266469327,53.152973348778715],[-126.24589737632786,53.15310374324957],[-126.24568833071146,53.15323246901634],[-126.24547928377208,53.15336118544153],[-126.24527023883265,53.15349046616895],[-126.24506401309914,53.15362030536512],[-126.24497040659182,53.15379247780873],[-126.24492366287913,53.153967923388336],[-126.24495185977315,53.154148251223695],[-126.24502873238141,53.15432119111991],[-126.24512243639002,53.15449186423489],[-126.24521334529258,53.15466365449972],[-126.2452911555551,53.15483772161186],[-126.24534369855613,53.15501407289453],[-126.24534661699334,53.15519445293403],[-126.24528861895485,53.15536992185105],[-126.24522969453065,53.15554594836451],[-126.2451857652487,53.155723619902126],[-126.2451409097361,53.15590185801022],[-126.24509322998229,53.15607898152157],[-126.24507459090523,53.15625828568795],[-126.24507283259356,53.15643867529195],[-126.24507668239069,53.15661961795248],[-126.24508054393839,53.15679999588433],[-126.2450768940782,53.1569798246648],[-126.24505919546428,53.15715857106887],[-126.2450190007184,53.15733455851795],[-126.24493194344727,53.15750559659562],[-126.2448177103366,53.1576733385399],[-126.24470440544295,53.157841069474436],[-126.24459110291369,53.158009364964265],[-126.2444693522394,53.158176001645685],[-126.24435886214913,53.15834372638395],[-126.24428209619872,53.158514751596286],[-126.2442690683257,53.1586906825815],[-126.24430663568465,53.15887154648774],[-126.24434327421575,53.159052421245285],[-126.24431994493246,53.15923004957864],[-126.2442151137442,53.15940504953053],[-126.244188943526,53.15957876671826],[-126.24424427111587,53.1597517600281],[-126.24431833663303,53.15992527034526],[-126.2444055167988,53.160098753523364],[-126.24450112919209,53.160271098798276],[-126.24460234446296,53.16044286771862],[-126.2447026184203,53.160612406632936],[-126.2448131885074,53.16077911865584],[-126.24493497234498,53.16094356654581],[-126.24506051258923,53.16110688611434],[-126.24518323929716,53.16127076708627],[-126.24529754177587,53.16143691515167],[-126.24540811635916,53.16160362654345],[-126.24551775078794,53.16177089548997],[-126.24562644188313,53.16193817524196],[-126.24573420779546,53.162106012522635],[-126.24584291882175,53.162273847728756],[-126.2460187328306,53.162544620734906],[-126.24607128646451,53.162723211763705],[-126.24613602944878,53.162902342093616],[-126.24619514905008,53.1630809283455],[-126.24623085368233,53.16325899857213],[-126.24622718536935,53.16343490986043],[-126.24618042641889,53.16360866993766],[-126.24610648591477,53.16378136608502],[-126.24601473478405,53.163953534498425],[-126.24591268230407,53.164125168501066],[-126.24581062899652,53.164296802399505],[-126.24571701695861,53.164468983355825],[-126.2456412059272,53.16464280341121],[-126.24559631489173,53.1648188000681],[-126.24559361085142,53.16499862611431],[-126.24561246791632,53.165179536779966],[-126.24563599853921,53.16535987304447],[-126.24570553418752,53.16555859600136],[-126.24560900662559,53.165714532458324],[-126.24575237569483,53.165881175123346],[-126.24599537115971,53.165940051866976],[-126.24629820302877,53.16598032145981],[-126.24658603149665,53.166015575230176],[-126.24691301989581,53.166021051451544],[-126.24721558354888,53.16601257720846],[-126.247491933106,53.16600975901481],[-126.24780030129307,53.16603264245198],[-126.24809376373909,53.16607236238207],[-126.24838261572152,53.16612329529681],[-126.24866311336335,53.16618601377666],[-126.24893429088246,53.166259390543765],[-126.24920177648666,53.16633949688288],[-126.24946553037246,53.166424647814836],[-126.24972836589659,53.16651148518183],[-126.24999120249907,53.16659832196125],[-126.25025589737233,53.166682357699784],[-126.25052431088888,53.166761338678164],[-126.25080201770142,53.16682741023714],[-126.25109179922217,53.166874417638574],[-126.25133458989959,53.166899107063045],[-126.25152950827905,53.16690710061664],[-126.25135282070947,53.16712931576058],[-126.2512828421967,53.16733561852723],[-126.25123897928673,53.167522254274175],[-126.25134859226333,53.16767944274005],[-126.25151434941517,53.16782474312097],[-126.25169977323104,53.167967195963286],[-126.25189921759578,53.16810514602894],[-126.2521061417282,53.168240274335524],[-126.25231397318497,53.168371474448584],[-126.25252927272227,53.16849538012585],[-126.25276230369515,53.168608608209645],[-126.2529990700984,53.168719578079966],[-126.25322836932749,53.168835054017066],[-126.25343619043905,53.168963455628834],[-126.25362535994901,53.16910365656858],[-126.25381451238914,53.16924330151505],[-126.25402422278292,53.169371142304506],[-126.2542563416851,53.16948828629523],[-126.25450156350136,53.16960035537074],[-126.2547458388466,53.16971187025133],[-126.25497889254336,53.1698267699967],[-126.25518763114005,53.16994900878167],[-126.25536084837944,53.170084759668335],[-126.25546682344486,53.1702565172171],[-126.25549608141718,53.17044692237318],[-126.25545311262744,53.170625158937554],[-126.25534351911608,53.17078561274536],[-126.25519079433526,53.17094111311577],[-126.25502026358599,53.171094975505675],[-126.25485817026573,53.171251060275736],[-126.2547307731484,53.17141323685609],[-126.25464184548315,53.17158316439967],[-126.25457450537007,53.171758091732414],[-126.25452123209767,53.1719363499742],[-126.25447920890558,53.17211570439621],[-126.25444093330418,53.172295050731904],[-126.2544073281013,53.17247326660199],[-126.25439248762775,53.17265312721314],[-126.25438607919996,53.17283408112651],[-126.25437591602675,53.17301393165106],[-126.25434793201875,53.17319213535655],[-126.25429747785361,53.173370943015094],[-126.25423391704163,53.173554269337046],[-126.25413751030962,53.17372813822708],[-126.2539894227423,53.17387690441667],[-126.25379059218962,53.17400450054976],[-126.253563604141,53.174122064079754],[-126.25331499534897,53.17422959878913],[-126.25305225527337,53.17432595021304],[-126.25278289202193,53.17441055547702],[-126.25251157677445,53.17448228417773],[-126.25223177798777,53.17454450245043],[-126.25194629110749,53.1745983246875],[-126.25165609584924,53.174647118926345],[-126.2513630829893,53.1746936776348],[-126.2510709990294,53.1747402336462],[-126.250780805135,53.17478959041003],[-126.25049531809844,53.17484397381556],[-126.25021644350488,53.17490618534764],[-126.2499460718371,53.174979017576376],[-126.24968796596033,53.17506751786203],[-126.2494411960049,53.1751716703145],[-126.249201987284,53.175287019278656],[-126.24896843581845,53.17540851356411],[-126.24873581915911,53.175531125812455],[-126.24850131570696,53.17564925996027],[-126.24826299511723,53.17575843845224],[-126.24801523227242,53.17585307105908],[-126.24775703826532,53.175928113521515],[-126.24748463896887,53.17597910103383],[-126.24719993371814,53.17600770565117],[-126.24690669736401,53.17601840100686],[-126.24660494139373,53.176015668605814],[-126.24629939154097,53.176005100542795],[-126.24599100036997,53.17599062068365],[-126.24568262762917,53.17597669570073],[-126.24537709777651,53.17596948641049],[-126.24507630426655,53.17597235010903],[-126.24477563587227,53.17599425954478],[-126.24447409379503,53.17602849439376],[-126.24417441564886,53.17606103955189],[-126.24388118899387,53.176076208983126],[-126.24366180473355,53.176057613843255],[-126.24336696539481,53.175954023178186],[-126.24310864838812,53.17584475481371],[-126.24292889923437,53.17571236105663],[-126.24282953473221,53.175541699718174],[-126.24275820667145,53.17536034151063],[-126.24269908447128,53.17518176370407],[-126.24264559466313,53.17500485042597],[-126.24260053976617,53.174826799428715],[-126.24256108607058,53.17464761652594],[-126.2425235217724,53.17446842972348],[-126.24248688732744,53.17428924098818],[-126.24244743461416,53.17411005799501],[-126.24240238150342,53.17393200683547],[-126.24235077173644,53.17375564517869],[-126.24228885419598,53.173580433937396],[-126.24221477951447,53.17340804403285],[-126.2421247966138,53.17323792739582],[-126.24201889708606,53.17307120440722],[-126.2418998931888,53.17290674888122],[-126.24177058532581,53.172743990379836],[-126.24163660743284,53.172582370617874],[-126.2415007565317,53.17242074554909],[-126.2413658512017,53.172259127348084],[-126.24119030114772,53.17203652550682],[-126.24103855269966,53.17188109893002],[-126.24088774983663,53.171725670223985],[-126.24072667117035,53.171574179125884],[-126.24055156668847,53.17142888297705],[-126.24037085118877,53.171285283033086],[-126.24018732804568,53.171143364619],[-126.23999727077471,53.171004255676024],[-126.23980255021634,53.170867405628776],[-126.23960221638254,53.17073448353346],[-126.23939907411581,53.17060044636974],[-126.23919218848839,53.17046697213148],[-126.23898156909233,53.17033575482562],[-126.23876536090575,53.17021014144981],[-126.23854264717903,53.17009239254976],[-126.23831248093514,53.16998473287169],[-126.23801879263144,53.16990801596665],[-126.23771237921822,53.16990359422763],[-126.2375039878036,53.16999980223182],[-126.23734375194672,53.17016370207211],[-126.23720228512221,53.17033316608196],[-126.2370682657076,53.17049421647076],[-126.2369417628098,53.17065916857022],[-126.23681994247394,53.17082523155258],[-126.23670001635651,53.170992411006026],[-126.23657819411304,53.17115847370938],[-126.2364516810608,53.17132230483785],[-126.23631765250519,53.171482789614785],[-126.23617235109762,53.17163825042859],[-126.23601296403596,53.171787025690676],[-126.23583572199487,53.17192798452721],[-126.23563780906721,53.17205890959097],[-126.23542298864733,53.1721825808517],[-126.23519501487425,53.17230011116106],[-126.23495857459689,53.17241318518818],[-126.23471744624347,53.17252458294633],[-126.23447725798347,53.172635413661425],[-126.23423987821288,53.17274736768644],[-126.2340090641534,53.172862104766686],[-126.23377826071545,53.17297627668534],[-126.2335455608966,53.17308934044922],[-126.23331192720993,53.17320184090554],[-126.23307735348716,53.17331265766228],[-126.23284088646119,53.17342292195058],[-126.23260348252646,53.173532067199446],[-126.23236326460855,53.173639541369425],[-126.23212209476056,53.17374588754799],[-126.23188092065587,53.173851677517646],[-126.23163786516427,53.17395635026978],[-126.23139386394737,53.174061024362814],[-126.23114987039675,53.17416457753179],[-126.2309049280925,53.17426757632243],[-126.23065904001717,53.17437056747733],[-126.23041315968668,53.174472446663934],[-126.23016633056686,53.17457376249577],[-126.22991855572842,53.17467507964142],[-126.22967078861618,53.17477527584814],[-126.229421128187,53.17487491051669],[-126.22916959840462,53.17497287215419],[-126.22891335047429,53.17506636078153],[-126.22865144278475,53.17515313739231],[-126.22838292183148,53.1752315276748],[-126.22811159317233,53.17530935807166],[-126.22783934297871,53.17538886572877],[-126.22756614725577,53.17546838353481],[-126.22729199689974,53.1755462174604],[-126.22701596837506,53.17562069315592],[-126.22673802272355,53.175690125606465],[-126.22645817807867,53.175752282933985],[-126.22617639860253,53.175806044797845],[-126.22589270243314,53.175849161393884],[-126.22560326971463,53.17587379721018],[-126.22530621200343,53.17587156626856],[-126.22500436613541,53.175851408369624],[-126.2247006018307,53.175822854848384],[-126.22439684093003,53.17579486522172],[-126.2240959404663,53.175777508690075],[-126.22380171086166,53.17577974124708],[-126.22351325453184,53.17581053677237],[-126.22322589008715,53.175869339450415],[-126.2229479956554,53.17594997581269],[-126.22268988042973,53.17604849170348],[-126.22245806392036,53.176158726266465],[-126.22223379872881,53.17627959444188],[-126.22201614336566,53.17640884828007],[-126.22180882818533,53.17654592511175],[-126.22161746395189,53.17668857369746],[-126.22144581114462,53.176836222401604],[-126.22130041333907,53.17698719193191],[-126.22121974304935,53.17714980004424],[-126.22122162730544,53.17733242101666],[-126.22124979476483,53.1775205948458],[-126.22125167621485,53.177702651107104],[-126.2212394968308,53.17788250179245],[-126.22122918862301,53.17806178428404],[-126.22122545056882,53.178241610199606],[-126.22122545774525,53.178423678854145],[-126.22125263446046,53.17860289126453],[-126.22135939305825,53.178766269398785],[-126.2215223098502,53.17891889415954],[-126.2216880438178,53.17907095769637],[-126.22184348379,53.179224160669094],[-126.22199985453551,53.17937736168243],[-126.22215996912473,53.179529435061156],[-126.22232382466562,53.17967982508052],[-126.2224923507891,53.17982852101575],[-126.22266369117355,53.17997609101605],[-126.22283223466574,53.18012478641546],[-126.22299702159295,53.18027460903261],[-126.22315434208417,53.180427241982414],[-126.22329949369939,53.18058382351717],[-126.22343342101671,53.180744351898454],[-126.22355986669464,53.180907690741606],[-126.22368444192153,53.18107158868497],[-126.22381181629558,53.18123436976463],[-126.22395324807323,53.18139543904202],[-126.22410029815289,53.18155537711432],[-126.22424267679584,53.18171644423044],[-126.2243709999089,53.181879213899904],[-126.22447497753451,53.18204595542017],[-126.22454242116471,53.18221724767745],[-126.22458178182903,53.182391954314504],[-126.22460052397318,53.18256950548804],[-126.22460522437683,53.182748759378605],[-126.2245996317563,53.182929708878355],[-126.22458934844956,53.18311123193253],[-126.22457812332216,53.183293321431194],[-126.22457253351074,53.183474835548076],[-126.22457629805488,53.18365576723247],[-126.22459411988697,53.183834996137435],[-126.2246269408288,53.18401476125457],[-126.22467007926706,53.184194497811745],[-126.22471694914653,53.18437367154256],[-126.22476101514255,53.18455285055909],[-126.22479852521319,53.1847314862714],[-126.22482289586027,53.184909582219305],[-126.22482758255873,53.18508603044271],[-126.22479952578374,53.1852726332803],[-126.22472276873539,53.185469403054384],[-126.22460466356553,53.18564328764295],[-126.22445157016463,53.18576066315785],[-126.2241946112456,53.18573426043515],[-126.22387915562757,53.185635142344005],[-126.22358922556953,53.18557855007539],[-126.22329464396435,53.18552700314281],[-126.22302246037768,53.1854569313401],[-126.22280442449859,53.1853458672844],[-126.22263400075485,53.18519717576209],[-126.22247288582106,53.185038938695634],[-126.22228937513707,53.18489643787015],[-126.22209650741038,53.18475954729035],[-126.22189897096115,53.184624350203876],[-126.22170143577425,53.18448915277813],[-126.2215029750486,53.184354521423415],[-126.22130357374219,53.1842204472003],[-126.22099036697523,53.184011518799686],[-126.22069128433489,53.18399134473586],[-126.22038940902543,53.18397622135706],[-126.22009125088847,53.183954932629945],[-126.21980143923909,53.183917933219114],[-126.21952369194291,53.18385627108839],[-126.21925429232454,53.18377610191043],[-126.21899138600541,53.18368415151873],[-126.21873034376875,53.183589965278316],[-126.21846650657997,53.18350025621905],[-126.2181971343417,53.18342456614538],[-126.21791848251195,53.18336962426127],[-126.21763057489969,53.18333430110356],[-126.21733615429332,53.183309628438174],[-126.217038957962,53.183293367547535],[-126.21673806236204,53.18328383503169],[-126.21643530898189,53.18328047178265],[-126.21613258776843,53.18328045991316],[-126.2158298687498,53.183283817404316],[-126.21552904197311,53.18328772639244],[-126.21523008883376,53.18329442770922],[-126.2149313156824,53.18333362826565],[-126.21463352850003,53.18338402123269],[-126.2143412562305,53.18341312499152],[-126.21405902773263,53.18339122757879],[-126.21378504400225,53.18333010090686],[-126.21351563879757,53.183245992836866],[-126.21324899937306,53.18315404539375],[-126.21297957292273,53.183068260032535],[-126.21270739123787,53.18299199785297],[-126.2124352133691,53.18291629971713],[-126.2121583971848,53.18284845200583],[-126.21187413083733,53.18279294128475],[-126.21153738471911,53.18273528284184],[-126.21109656445708,53.18267053091874],[-126.21069695515035,53.18260009312589],[-126.21038472632715,53.1825748791518],[-126.21006225162147,53.1825608864466],[-126.20971659580879,53.18259567544027],[-126.20923703999493,53.18265702478021],[-126.20887758515445,53.182746170215566],[-126.20850690695619,53.18284037159276],[-126.20817655888463,53.182942352625254],[-126.20787624572394,53.18305043768744],[-126.20761453684162,53.18319654762193],[-126.207323638157,53.183316939063296],[-126.20709365465491,53.18343498250094],[-126.20681374908577,53.1835010099948],[-126.20642038561715,53.1835582804505],[-126.2061128486655,53.18353360275664],[-126.2060794785561,53.18341882521379],[-126.20608087553855,53.183320784071206],[-126.20602043985275,53.183227896738195],[-126.20578486730811,53.183159406692965],[-126.2056045354327,53.18308072780946],[-126.20540405273312,53.182906859290114],[-126.20531696918147,53.182729988427916],[-126.20517363166832,53.18254873338448],[-126.20504543462535,53.18239713784042],[-126.20489303928532,53.18228032512187],[-126.2047618637563,53.18209232614918],[-126.20456905468698,53.18195316605903],[-126.20437813359624,53.18181344667423],[-126.20419281386229,53.18167204120929],[-126.2040075130412,53.18153119112768],[-126.20382032675485,53.181390899706955],[-126.2036294160648,53.1812522994556],[-126.20343277428603,53.1810941063463],[-126.2032285653928,53.1809179906406],[-126.2030211159572,53.18085056717236],[-126.20281338455477,53.18091814664732],[-126.20260589654909,53.18103669871417],[-126.20239761436751,53.1811838262523],[-126.20218655985335,53.18134104167311],[-126.20197169617515,53.18148593888402],[-126.201751103706,53.18160900228655],[-126.20152298031242,53.18172534676721],[-126.20129109888961,53.181840021079935],[-126.20106014591525,53.18195469335314],[-126.20083484587002,53.18207271675635],[-126.20062080530761,53.182196887284725],[-126.20042745546054,53.18233333774723],[-126.20025382876302,53.182480402735976],[-126.20008864688543,53.18263137904131],[-126.2000149239651,53.1826970419797],[-126.19992252614398,53.1827806716182],[-126.1997611084295,53.18293219679813],[-126.19960813296858,53.1830870686893],[-126.19946641901008,53.183245282575406],[-126.1993256363468,53.18340405042323],[-126.19918579740566,53.18356282546425],[-126.19904503289922,53.18372271330777],[-126.19890707161015,53.18388260522381],[-126.19877191613864,53.18404304796835],[-126.19864146127286,53.18420515876355],[-126.19851570183687,53.1843678262061],[-126.19839650265726,53.184532167577295],[-126.19828668304369,53.18469816921379],[-126.19821344784393,53.184872507956975],[-126.19816274518645,53.185051855177164],[-126.19811202450073,53.18523064667437],[-126.19803880005503,53.185404429525285],[-126.19792239781214,53.18556820096624],[-126.1977844209838,53.18572696207088],[-126.19763425278452,53.18588294685037],[-126.19747562987985,53.18603670474223],[-126.1973123092481,53.186189914519574],[-126.19714805236931,53.18634199626326],[-126.19698567417493,53.186495203992365],[-126.19682892123188,53.18664895784963],[-126.19668249547942,53.18680493511423],[-126.1965491890368,53.18696368690397],[-126.19646558777343,53.18712684661271],[-126.19641300036194,53.187306195974095],[-126.19636977596336,53.18748665016042],[-126.19636783469609,53.1876726378217],[-126.19633771938346,53.18785026477505],[-126.19623817792424,53.1880112098851],[-126.19604571463753,53.18814709551548],[-126.19569324712555,53.18834598698167],[-126.19539503955055,53.18831790489914],[-126.19509679624721,53.188281988373944],[-126.19479761840667,53.18824494328404],[-126.19450032141992,53.18821238486437],[-126.19420308613246,53.18818990012408],[-126.19390873529802,53.18818478040796],[-126.19361635921959,53.18820150877474],[-126.19332402894493,53.18822831087063],[-126.19303077394646,53.18825960426474],[-126.19273755645936,53.18829593413337],[-126.19244340891423,53.18833562594837],[-126.19215021354167,53.18838035274899],[-126.19185892252281,53.18842844586295],[-126.19156858094244,53.18848100930951],[-126.19128106093827,53.188537493322954],[-126.19099637489,53.18859733322817],[-126.19071545764548,53.18866164792734],[-126.1904383015881,53.18872876135961],[-126.1901658565302,53.188799783450264],[-126.18989811498577,53.18887639930556],[-126.1896331996262,53.18895804728696],[-126.18937300514698,53.18904585373371],[-126.18911564672244,53.18913758091105],[-126.18886111174237,53.1892337756059],[-126.18860939523051,53.18933333538279],[-126.18836145693275,53.189436240806934],[-126.18811445479383,53.189540829279416],[-126.18787120841147,53.18964709633387],[-126.18762889561339,53.189754472825456],[-126.18738847384155,53.18986241049651],[-126.18715085548676,53.18997034324231],[-126.18691417324868,53.19007995908715],[-126.18668031928883,53.19019180180289],[-126.18644741146852,53.19030420723377],[-126.18621637205727,53.190418850032934],[-126.18598722366157,53.19053405407786],[-126.18575900879486,53.19065036762943],[-126.18553172752554,53.1907678086187],[-126.18530539232897,53.19088580339395],[-126.18508000320413,53.19100435196039],[-126.18485554519086,53.1911234633097],[-126.18463108591364,53.191242574226116],[-126.18440662537245,53.19136168470957],[-126.18418216356731,53.191480794760125],[-126.18395770049823,53.191599904377526],[-126.18373228883247,53.19171845932034],[-126.18350406623652,53.191835888830745],[-126.18327396511599,53.19195276508737],[-126.18304198786876,53.19206964378649],[-126.18281095426939,53.19218652056592],[-126.18258178409565,53.192304514398145],[-126.18235543971305,53.19242418848648],[-126.18213379595635,53.19254553100101],[-126.1819177726002,53.192669660940105],[-126.18170927457555,53.19279658437504],[-126.18150827429496,53.192926857098065],[-126.18131760904785,53.19306103947768],[-126.18115700102997,53.193209175900364],[-126.18103396443438,53.19337461615509],[-126.18093346429764,53.19354899388297],[-126.18083953783365,53.19372447289444],[-126.18073085699343,53.19396103971661],[-126.18045361692148,53.194020286959834],[-126.18032391398488,53.19394261330774],[-126.1801133365291,53.19380569112059],[-126.17989253679939,53.1936878216359],[-126.17965394523064,53.19357614530916],[-126.17941723223387,53.193465030325505],[-126.17918800110924,53.19334941304861],[-126.17897466491654,53.1932253729117],[-126.17878940932182,53.193087289688194],[-126.17863876197988,53.19293233925849],[-126.17850213918366,53.19277008947825],[-126.17835897468527,53.192610654819646],[-126.17818868498817,53.192463576045654],[-126.17799405538966,53.19232774639921],[-126.17778821404355,53.19219697050112],[-126.17758048644852,53.19206675277644],[-126.17738305818382,53.19193148200886],[-126.17717348973622,53.1918051921406],[-126.17699660283479,53.191649723061246],[-126.1768469111827,53.19149813894036],[-126.17667475171798,53.19134994032258],[-126.17650258081686,53.191202306135615],[-126.17632948121131,53.191054673070916],[-126.17615545992744,53.19090872617333],[-126.17597675463423,53.19076501777669],[-126.17579336773468,53.19062412149388],[-126.17560438665028,53.190486594367975],[-126.17538168526335,53.19035864462049],[-126.17512442300647,53.1902581905144],[-126.17485331936251,53.19020872934723],[-126.17455534597055,53.19023717844559],[-126.1742527285011,53.19027795786714],[-126.1739464058515,53.19032602894273],[-126.17367450544435,53.19031241859104],[-126.17346585381794,53.1901782780374],[-126.17328713783769,53.19002897259438],[-126.17311779460245,53.18987908849967],[-126.1729549906514,53.18972526877266],[-126.17279407766398,53.18957145501546],[-126.1726294082111,53.18941932260075],[-126.17245820641399,53.18927223671318],[-126.1722748572634,53.18913245522761],[-126.17207561227825,53.18900390040541],[-126.17182214284226,53.188910155886056],[-126.17156676801362,53.18880857087592],[-126.17131891821028,53.18871314103539],[-126.17104021773251,53.18863959827951],[-126.17076435358317,53.18856996764892],[-126.17048288206772,53.18850427027964],[-126.17019580987645,53.18844418222073],[-126.16990597222322,53.188393625200064],[-126.16961429494692,53.18835538539405],[-126.16932174890285,53.18833227581302],[-126.16900116117388,53.18832881676886],[-126.16870701348638,53.18837405153896],[-126.16841097930802,53.1884164828108],[-126.16813000002232,53.188473465961344],[-126.16787633506338,53.188561771592795],[-126.16764433167528,53.188678064643156],[-126.16743677360003,53.18881336028252],[-126.16726111764119,53.18895701788221],[-126.16711926749396,53.18911631292478],[-126.1670121377882,53.18928732736903],[-126.16693877857922,53.18946109059505],[-126.16691323503387,53.18963926793582],[-126.16692332710095,53.189821311911636],[-126.16691282340024,53.19001011616722],[-126.16700349541469,53.19018308344838],[-126.16707543587118,53.19036000289582],[-126.16683298449806,53.1904466142713],[-126.16660924206462,53.19051975421044],[-126.16633217875342,53.19062321900348],[-126.16603533327786,53.19070430316787],[-126.16574680785439,53.19075400416127],[-126.16545543544207,53.19079306924992],[-126.16516026723714,53.19082428725473],[-126.16486227646237,53.190851035874374],[-126.16456335101509,53.19087665569397],[-126.16426629374754,53.19090452190076],[-126.16397207747495,53.19093797639046],[-126.16368351768962,53.19097982970022],[-126.1634081740649,53.1910457568299],[-126.16315264143527,53.19114246213117],[-126.16290744616171,53.19124811573631],[-126.162651002851,53.191354339981274],[-126.16243305145518,53.19147788133139],[-126.1623305376631,53.19163487567306],[-126.16230968736947,53.191818091562574],[-126.16230570414109,53.19200351612707],[-126.16232514052291,53.19218275095374],[-126.16231082728567,53.19236147629548],[-126.16225620509901,53.19253857177702],[-126.16224470054112,53.19271840464958],[-126.16227913400739,53.19289706316429],[-126.16233794144527,53.19307567929129],[-126.1623967451131,53.19325318395744],[-126.16242836831098,53.1934301611745],[-126.16240936240962,53.193609448551726],[-126.16233225273021,53.19378993592267],[-126.16219222770451,53.19394529627832],[-126.16198928263286,53.19407441798795],[-126.1617459659879,53.1941862330129],[-126.16148382791536,53.194279582389136],[-126.16121411411152,53.19435333030959],[-126.16093216635686,53.19441309392959],[-126.16064267317003,53.194465024428894],[-126.16035318577796,53.194514713445336],[-126.15990341861867,53.19457470163719],[-126.15979061462657,53.19474403159074],[-126.15966467870743,53.194907777207284],[-126.15947486311623,53.195041358359475],[-126.15925030316112,53.19515818017236],[-126.15901071670542,53.19526829942722],[-126.15876831979197,53.195377301573814],[-126.15853624766977,53.195491891310155],[-126.15831168903715,53.195610396361516],[-126.1580890104294,53.195730574560315],[-126.15786726264245,53.19585130680019],[-126.1576455265188,53.19597148289075],[-126.15742096701433,53.19609110659906],[-126.15719452077373,53.1962079269406],[-126.15696243567356,53.19632139316695],[-126.15672564380759,53.196432059721694],[-126.15648698030226,53.196539931795556],[-126.15624928908092,53.19665957058206],[-126.15600971315176,53.196776961638804],[-126.1557597288978,53.19687084684839],[-126.15548988974831,53.196917692620914],[-126.15519171428433,53.19690744443307],[-126.15488592377837,53.19686582582056],[-126.1545951016909,53.19681523280328],[-126.15433412394263,53.19672146104795],[-126.15415079831834,53.19658053170056],[-126.15399740056696,53.1964233131546],[-126.15375609966136,53.19632335691781],[-126.15345973676918,53.19629461124929],[-126.15316075299489,53.19632076690878],[-126.1528588645705,53.1963194717393],[-126.1525560118121,53.19630865828349],[-126.15226990468108,53.19626589614934],[-126.15199684176397,53.19619621847662],[-126.15172935169467,53.196115893895126],[-126.15146560164678,53.196028285929025],[-126.15120370467824,53.19593842528216],[-126.15094275786481,53.195849692187366],[-126.15068649120187,53.1957564620734],[-126.15043394677191,53.19565930982182],[-126.15017674336,53.19556776484182],[-126.14989807728155,53.19550201523534],[-126.149610069588,53.195449721348915],[-126.14936222646259,53.19535312553758],[-126.14912932912823,53.1952408160843],[-126.14890484843528,53.19512009720762],[-126.14868222507295,53.194998255186476],[-126.14845213184307,53.19488034791939],[-126.14822108702474,53.194760191662986],[-126.14804247803514,53.194621487614505],[-126.14794252665459,53.194456360589186],[-126.14783452411753,53.19413326064159],[-126.14805074580853,53.194039443178596],[-126.1482611466219,53.193885687653406],[-126.14844720200088,53.193744842167256],[-126.14863139230987,53.19360288729682],[-126.14881368749148,53.19345980516239],[-126.14899692642743,53.19331673051096],[-126.14918111299606,53.193174765790076],[-126.14936716221689,53.19303392776806],[-126.14955885976619,53.19289587878742],[-126.14975430074047,53.19276062122924],[-126.14995727090965,53.19262984430319],[-126.15017525364931,53.1925074463828],[-126.1504064021092,53.19239287402123],[-126.15064504974303,53.192282773198315],[-126.15088464304704,53.19217322639242],[-126.15112047940882,53.19206200779245],[-126.15134504338957,53.19194464548701],[-126.15154612384393,53.191812183126714],[-126.15170681014348,53.191658484854955],[-126.15184309630231,53.19149753065092],[-126.15198780261774,53.19133433366673],[-126.15212689027321,53.1911688939737],[-126.1522397064721,53.19100125606114],[-126.15230753141776,53.190830870436905],[-126.15232190253346,53.190656627675594],[-126.15231001644727,53.1904796221789],[-126.15227750186007,53.19030096708799],[-126.15222903843268,53.190120647409024],[-126.1521674690756,53.189940900240444],[-126.1520965175273,53.18976285012929],[-126.15201996538474,53.18958704791733],[-126.1519368608863,53.18941573558595],[-126.15181722043144,53.18925231271102],[-126.15167042297635,53.18909397069353],[-126.15152175186967,53.188935621915476],[-126.15139463254997,53.18877277281592],[-126.151300289956,53.18860315042779],[-126.15122280638306,53.18842958955883],[-126.15115374605597,53.18825434177793],[-126.15108657396227,53.18807852685777],[-126.15101283757319,53.18790384063871],[-126.1509269209628,53.18773253103739],[-126.15082602476674,53.1875617961451],[-126.15070919936683,53.18739445154341],[-126.1505539850278,53.18724059128893],[-126.15035195676818,53.18709688269497],[-126.15013877043997,53.18698230898436],[-126.14989769524209,53.18692828003285],[-126.14959788129157,53.18696451144595],[-126.14929152578821,53.187008593051026],[-126.14899907908203,53.187007840898126],[-126.14871206921269,53.186953858345824],[-126.14842965198214,53.18687074824917],[-126.14817527937957,53.18677023191971],[-126.1479977039437,53.18664721137094],[-126.1480317045682,53.18645501803574],[-126.14809576643992,53.18627791679628],[-126.14820296178915,53.1861102893161],[-126.14838897851973,53.185963841398284],[-126.14860312719942,53.18582576527123],[-126.14873664143224,53.18567603044066],[-126.14877063004081,53.18548159602679],[-126.14875299085064,53.18526314257667],[-126.14866613929306,53.185086230343565],[-126.14849060918347,53.185010264154776],[-126.14823093408398,53.18499826515296],[-126.14791891422227,53.185022748053115],[-126.14758823121174,53.1850752541209],[-126.14727076028548,53.18514959487989],[-126.14700113247885,53.18523844045566],[-126.14680938548739,53.18535464288558],[-126.14668341951051,53.18551613476591],[-126.14658187883302,53.18569831895828],[-126.14646721083362,53.18587492630455],[-126.14630746113659,53.18602973718367],[-126.14612148091304,53.18618458019489],[-126.1459025954572,53.18631312985945],[-126.1456413123164,53.186380674639054],[-126.1453593245059,53.186419678863615],[-126.14506979197988,53.18644971959742],[-126.14477555894617,53.18647360772147],[-126.14447662742273,53.18649189891047],[-126.14417486287836,53.186506275920465],[-126.14387026725304,53.18651728547639],[-126.14356568269473,53.186527182811574],[-126.14326202588978,53.18653651356632],[-126.14295930254455,53.18654696280249],[-126.14266035082902,53.18655964749584],[-126.14236042207038,53.18656280483944],[-126.14205952215883,53.186558128844],[-126.14175957273471,53.1865551270452],[-126.1414624858358,53.186565001034445],[-126.14117016010768,53.18659952607505],[-126.14088164840774,53.18665364814214],[-126.14059407507403,53.186710564875256],[-126.14030458748256,53.18675124205085],[-126.14000937148403,53.18676503601081],[-126.13970661816772,53.186762597001184],[-126.13940379817849,53.186744462921084],[-126.13911030395703,53.186707279505875],[-126.13882705798234,53.1866532685901],[-126.13854003784867,53.186591427667175],[-126.13825486750966,53.18652173221883],[-126.13797716734562,53.186443073250196],[-126.13771443220536,53.186354303786],[-126.13747321036888,53.18625374918905],[-126.1372703609618,53.186132982668596],[-126.13713766843033,53.185966198721474],[-126.13703864270119,53.18578032908461],[-126.1369228106608,53.18560960848521],[-126.13674246612668,53.18549049110546],[-126.13646958093197,53.185451036565425],[-126.13614810236274,53.18545196224165],[-126.13583406031164,53.18543832244594],[-126.13554990082115,53.1853854251059],[-126.13527130776835,53.1853190850415],[-126.13499645822091,53.18524600876678],[-126.13472253942952,53.18517293975678],[-126.13445326662217,53.18508921667564],[-126.13418774830733,53.185002127563706],[-126.1339147728738,53.18493240781009],[-126.13361283718196,53.18489017407483],[-126.13327816163932,53.184865902615215],[-126.13301114151976,53.18490093479133],[-126.13287570575194,53.18504785756407],[-126.13277782072522,53.1852188308889],[-126.13273428583305,53.185381335835906],[-126.13265871688539,53.18549569998863],[-126.13228220038843,53.18558294660774],[-126.13199935167923,53.18565105005878],[-126.13174642375753,53.18569614713938],[-126.13144368202097,53.18569479842842],[-126.13114378114635,53.18570521434302],[-126.13085523328299,53.1857497932391],[-126.13057329018056,53.185811160989964],[-126.13029326173096,53.185880933343334],[-126.13001321565348,53.18595014933855],[-126.12973128328747,53.186010959352004],[-126.1294446029875,53.1860544034051],[-126.12915315801914,53.186074888512906],[-126.12885509435856,53.18607409275694],[-126.12855418546853,53.18605985469895],[-126.12827960457498,53.18607807857919],[-126.12796286952647,53.1861019493038],[-126.12764432374692,53.186147108477535],[-126.12739249663973,53.18624653828275],[-126.12710681115848,53.18631294800223],[-126.12696264655264,53.186373038812306],[-126.1268211733602,53.18639056084255],[-126.12667700642042,53.186450095592505],[-126.12655155503569,53.18649952669316],[-126.12639135191094,53.18652770740654],[-126.12628187512973,53.186588325034776],[-126.1261733261616,53.186648376896486],[-126.12607624664122,53.18678292661171],[-126.12591365615506,53.18695172215092],[-126.12580917816108,53.18712044677822],[-126.12568405827705,53.18728247984925],[-126.12554486003373,53.18744115757519],[-126.12539629914697,53.18759873361204],[-126.12523928866348,53.18775463332217],[-126.12507382355352,53.187907180580986],[-126.12490179344314,53.188056373361526],[-126.12472319333624,53.18820052658159],[-126.12445569972635,53.18840023649776],[-126.12432931487072,53.18845638847512],[-126.12403421830298,53.188511596710526],[-126.12374944237237,53.18857296002593],[-126.12346935631382,53.18863823463125],[-126.12318927948213,53.18870182350258],[-126.12290731048421,53.18876485796106],[-126.12262535403308,53.18882733602143],[-126.12234338335843,53.188890369133226],[-126.12206235993526,53.188954520979436],[-126.12178321360844,53.18901979061072],[-126.12150594596054,53.18908673374934],[-126.12123150506747,53.18915647878575],[-126.12095987589083,53.1892290257545],[-126.12069106156174,53.189305486092785],[-126.12043166524317,53.18939257541279],[-126.12019201679993,53.189504857253475],[-126.11997866602533,53.189635602790645],[-126.11979721809588,53.1897780752258],[-126.11963546547265,53.18992724978589],[-126.11948216833196,53.190080897119465],[-126.11933732355693,53.19023789687774],[-126.1191962185912,53.190397133448975],[-126.11905888186213,53.19055804214421],[-126.11892059762752,53.190718395906075],[-126.11878043597822,53.19087819566384],[-126.11863557242904,53.191035750220074],[-126.11849260078264,53.19119443203854],[-126.11835524537015,53.19135590453515],[-126.11821790390778,53.19151737684347],[-126.11807866842946,53.19167773048226],[-126.11793381452758,53.19183528409733],[-126.1177786278899,53.191988375226096],[-126.11761122888188,53.19213531167654],[-126.11742600008162,53.19227330249171],[-126.11721824053949,53.19240011147642],[-126.11699358414934,53.192519094097946],[-126.11675953661313,53.19263248362915],[-126.11652173648899,53.19274531170794],[-126.11628768951631,53.19285982067224],[-126.11606490604075,53.1929799200418],[-126.11585714663161,53.19310953202016],[-126.11544050139238,53.193298162927555],[-126.1152994341392,53.19348035787847],[-126.11532988649158,53.19364670941007],[-126.11523473207377,53.19381822039916],[-126.11514427479408,53.1939908471115],[-126.11503878843881,53.19415844213496],[-126.11490329409025,53.19431766777852],[-126.1147518403485,53.19447187147818],[-126.11459288104834,53.194624397177165],[-126.11442546963494,53.194774690050934],[-126.114251493004,53.194921627863565],[-126.1140709526271,53.19506576629448],[-126.11388570547889,53.19520599211144],[-126.1136891935383,53.195341191205934],[-126.11348141674331,53.19547135456011],[-126.1132623720642,53.19559536173808],[-126.11303674108193,53.19571378184684],[-126.11280173075676,53.19582547920261],[-126.11255262661464,53.19592879110413],[-126.11229413121035,53.19602650947558],[-126.11203188009486,53.19612255473956],[-126.11177150280781,53.19621858868617],[-126.11151863487781,53.196318540797805],[-126.11127890733906,53.19642464659309],[-126.11105795561765,53.19654080875306],[-126.11086234085073,53.196669279927384],[-126.11069020446028,53.196810608720845],[-126.11053403158122,53.19695920034601],[-126.11039098574919,53.19711451076222],[-126.11025921898481,53.197275403429614],[-126.11013494538064,53.19743965907129],[-126.11001537479186,53.19760726237484],[-126.10989955641405,53.1977759914034],[-126.10978280849518,53.197945276871906],[-126.10966416660884,53.19811344358306],[-126.10953990757334,53.19827937459528],[-126.10940719322996,53.19844195213335],[-126.10926414401105,53.19859949285379],[-126.1091117243018,53.198753689844494],[-126.10895085052341,53.198905088972026],[-126.10878527583633,53.19905480713506],[-126.10861408372071,53.19920229840972],[-126.1084400686897,53.19934922733741],[-126.10826510448692,53.19949503648604],[-126.10808827888444,53.19964084706183],[-126.10791331226257,53.19978665566805],[-126.10772897483572,53.19992911139066],[-126.10762319770105,53.19999979131262],[-126.10752585193536,53.20006486159769],[-126.10733305462713,53.20020284284742],[-126.10718061499051,53.200354231802116],[-126.10709760387644,53.200529641445264],[-126.1070521459706,53.200718470580384],[-126.10699634924826,53.2009005777892],[-126.10688140312993,53.20105473786021],[-126.10668387050586,53.201173675837346],[-126.1064365810912,53.201271371021356],[-126.10615924681791,53.20135340732933],[-126.10586781416832,53.20142537218994],[-126.10558106082757,53.201491165607116],[-126.1052980432302,53.201551362086946],[-126.10500750282394,53.20160315724877],[-126.10471132198386,53.20164935479759],[-126.10441138023278,53.201691629118855],[-126.10411143514622,53.20173279126872],[-126.10381336887957,53.20177562709515],[-126.1035209374712,53.20182237408375],[-126.10323509287649,53.201875845832035],[-126.10295957598673,53.2019382619635],[-126.10269626745752,53.20201187959793],[-126.1024489408521,53.20210003875554],[-126.10222135209197,53.20220499497266],[-126.10201441752507,53.20232729431462],[-126.10182346184862,53.20246302406916],[-126.10164377978097,53.202608262549404],[-126.10147068244173,53.20275966165511],[-126.10130039742275,53.20291441921776],[-126.1011272879564,53.20306805855658],[-126.10094855682404,53.20321778558503],[-126.10075853855471,53.203359670337385],[-126.10055255928107,53.20349037352699],[-126.10033155181803,53.20361099673263],[-126.10010490769331,53.203727707447136],[-126.09987357476116,53.20384162521523],[-126.09963847083665,53.20395386065045],[-126.09939962329074,53.20406329333259],[-126.09915888150353,53.20417161569892],[-126.09891533024178,53.204278810576206],[-126.09867084495107,53.20438489431151],[-126.09842541320619,53.20449096935865],[-126.09818091045678,53.20459705208353],[-126.09793642146334,53.204703125322595],[-126.09769473818294,53.2048097604058],[-126.09745398777964,53.20491807926513],[-126.09721700456973,53.20502750594893],[-126.09698376116727,53.20513917880236],[-126.09675428753073,53.205253079896686],[-126.0965304304059,53.205369781380696],[-126.09631222106765,53.20548983896582],[-126.09610150496496,53.20561325118606],[-126.09591709092975,53.20575065089222],[-126.09575707099768,53.20590091040929],[-126.09561584252704,53.206061237900485],[-126.09548774029571,53.206227712206385],[-126.09536528234426,53.206395866858024],[-126.09524187564246,53.206562901756136],[-126.09511283135707,53.20672545954151],[-126.0949837860796,53.20688801717212],[-126.09485849337112,53.20705169201677],[-126.09473883006171,53.20721704725467],[-126.09462572518683,53.20738350852977],[-126.09452014037682,53.20755164872454],[-126.09442391999289,53.207720901721125],[-126.09433240150223,53.20789295629427],[-126.094248389517,53.2080672365928],[-126.09417375723852,53.20824263869714],[-126.09411132438036,53.20841858675506],[-126.09406388197412,53.208595078570596],[-126.09405021500301,53.20877155251399],[-126.09410125386417,53.208950206859974],[-126.09415885033081,53.20912886492025],[-126.09416299947904,53.209307556450675],[-126.09413808761929,53.20948795609027],[-126.09409159445336,53.209666696767115],[-126.09402163906304,53.209841530242414],[-126.09391979453555,53.21000854633544],[-126.0937888577376,53.21017053919926],[-126.09355967033822,53.21043681298376],[-126.09332642098073,53.21055687658958],[-126.09309315775977,53.21067806010944],[-126.09284294827565,53.210763404569676],[-126.09253821490547,53.210797254022566],[-126.09221930602047,53.21077845629206],[-126.09198652188222,53.21068732248557],[-126.09181366326375,53.210551335933594],[-126.09166420937862,53.21039235893234],[-126.09152035163368,53.21022553481044],[-126.09136339373048,53.21006487815989],[-126.09117552356567,53.20992385605438],[-126.09097359909444,53.209791807401835],[-126.09077074677906,53.20966032377481],[-126.09056602128129,53.209529396928076],[-126.09036036792709,53.209399026131294],[-126.09015282762118,53.209269785739615],[-126.08994435825885,53.209140536718685],[-126.08973496226429,53.209012417359496],[-126.08952462221443,53.20888428937267],[-126.08931333932954,53.20875672638277],[-126.0891020727241,53.208629162996196],[-126.0888907923886,53.208501599235525],[-126.08867858303866,53.20837403578555],[-126.08846732025994,53.20824647124134],[-126.08825511464624,53.208119471682494],[-126.08804383823657,53.20799134171025],[-126.08783350956244,53.20786377531892],[-126.08762412628533,53.207735652142546],[-126.0874147281054,53.20760696393158],[-126.08720722058301,53.20747770928362],[-126.08699969818161,53.207347898570255],[-126.08679499671334,53.20721752971443],[-126.08663523452321,53.20705071104901],[-126.08647366909712,53.20691862503533],[-126.08618770455426,53.20694067615039],[-126.08585485036461,53.20696949175557],[-126.08557367528024,53.207045315821354],[-126.0853628616028,53.20713230124659],[-126.08512486125022,53.207227704138695],[-126.085076476083,53.207415961514016],[-126.0850102753945,53.207609268826715],[-126.08488489921801,53.2077516460144],[-126.08461096949027,53.20770254551477],[-126.08434254304258,53.207591264266554],[-126.08414254269955,53.20745975816959],[-126.0839612561663,53.207314238291474],[-126.08376874492251,53.20717489259265],[-126.0835687300167,53.20704170943302],[-126.08336029066692,53.20691189297248],[-126.0831508959073,53.20676863233045],[-126.08290505229547,53.206691498829215],[-126.08260498625786,53.20669955098325],[-126.08230406206961,53.20675241789733],[-126.08204822749646,53.20683774365408],[-126.0818149427113,53.20695385906308],[-126.08158072315109,53.20706829857033],[-126.08133710851845,53.20717434574086],[-126.08109631774798,53.20728262225397],[-126.08085363199596,53.20738922348598],[-126.08060813387578,53.2074930296771],[-126.08035794038977,53.20759010733864],[-126.08009928130544,53.20767823617143],[-126.07983123383563,53.20776132460199],[-126.07955472514526,53.207837695867795],[-126.0792697577236,53.20790062767489],[-126.07898007350879,53.20794507131313],[-126.07868657773484,53.20796543324997],[-126.07838837639024,53.207972917772366],[-126.07808828280669,53.207971430850066],[-126.07778537104991,53.20796323174688],[-126.07748150589835,53.20795054204079],[-126.07717669361661,53.20793674076311],[-126.07687282680142,53.20792292912519],[-126.07656991054802,53.20791192150614],[-126.07626793383224,53.207905958665066],[-126.07596972239932,53.20790782628388],[-126.07567527911554,53.20791921839197],[-126.07538460977675,53.20794349613011],[-126.07521397028952,53.20796432695708],[-126.07481646445927,53.208029004457295],[-126.07453615727854,53.20808463502751],[-126.0742586830182,53.2081475500578],[-126.07398309429682,53.20821662978642],[-126.07370938903466,53.20829074489237],[-126.07343663588951,53.208369340260354],[-126.07316669438515,53.208451850081104],[-126.07289768599853,53.20853660841541],[-126.07262962471177,53.20862304163031],[-126.07236343984471,53.20871059346025],[-126.07209725387546,53.20879814468825],[-126.07183201020624,53.20888457437083],[-126.07156769385914,53.2089698825235],[-126.0713052520592,53.20905518895431],[-126.07104562170476,53.20914440993267],[-126.07078976402008,53.20923811853253],[-126.07053671486064,53.20933405668277],[-126.07028554484621,53.20943279858233],[-126.07003718239937,53.20953322332283],[-126.0697897668613,53.20963532305434],[-126.06954329545299,53.20973742170909],[-126.06929775408683,53.20984007500523],[-126.06905784948064,53.209949455690555],[-126.06882450913307,53.21006386925882],[-126.068592115576,53.21017995788662],[-126.06835971713492,53.210293814275126],[-126.06812262763127,53.21040262674723],[-126.06787800389445,53.21050191542199],[-126.06760709595606,53.21057713509719],[-126.06730421407924,53.21060755749115],[-126.06700784557414,53.21060100320099],[-126.0667142628338,53.210572039191106],[-126.06641971668182,53.21053131558439],[-126.06598071333308,53.210471060788784],[-126.06572640100899,53.21037428555769],[-126.0654786552639,53.21027303362883],[-126.06526276325611,53.21014991192952],[-126.0650599891685,53.210018375366225],[-126.06486378176183,53.20988236233297],[-126.06466943367971,53.20974466291311],[-126.06447510271573,53.20960751885978],[-126.06427513537479,53.209473182944876],[-126.06406861975996,53.209343896375735],[-126.06384618365199,53.209223572023866],[-126.06361061798951,53.20911222622929],[-126.06336944676158,53.209004235109184],[-126.06313107934133,53.20889401021921],[-126.0629067626615,53.2087770461943],[-126.06272836944765,53.2086348535594],[-126.0625780888912,53.20847752526779],[-126.06238938901468,53.208334772875574],[-126.06219411263469,53.208188106804045],[-126.06197916537646,53.20806106168026],[-126.06172771800358,53.20797828538984],[-126.06145100216204,53.20792520704593],[-126.06116023225982,53.20788558873645],[-126.06086103069087,53.20785661309665],[-126.06055715936635,53.20783548169226],[-126.0602523644536,53.207818831466525],[-126.05995130906985,53.20780441930935],[-126.05965307473024,53.20779000496747],[-126.05935296818174,53.207777831556825],[-126.05905193622345,53.207769018963766],[-126.05875089561238,53.207764687098816],[-126.05845080885457,53.207766511563726],[-126.05815167660784,53.20777506599593],[-126.0578562926013,53.20779257185689],[-126.05755998876019,53.20781792899544],[-126.05726181961109,53.20785111993522],[-126.05696553613278,53.20789216078465],[-126.05667396049238,53.20794215265365],[-126.05638988338941,53.20800111217447],[-126.05611708728713,53.208070140054694],[-126.0558658837144,53.20816324960341],[-126.05564755534948,53.20830284309153],[-126.05544331756225,53.20845586507208],[-126.05522779474107,53.208585928811345],[-126.05497843188854,53.20865607245833],[-126.05469430248687,53.20866852801432],[-126.05440639301838,53.20867033661352],[-126.05411473658859,53.2086637479195],[-126.05381930549663,53.208650437992894],[-126.05352200620634,53.20863097061163],[-126.0532218806442,53.20860701330472],[-126.05291987632941,53.20858025962915],[-126.05261692501297,53.20855182952837],[-126.05231304241393,53.208522269729464],[-126.05200916162869,53.20849383848473],[-126.05170528398091,53.20846763823944],[-126.0514014101198,53.20844424262372],[-126.0510994189501,53.20842644727491],[-126.05079837939147,53.20841369690246],[-126.05049920994972,53.20840877860684],[-126.05020381673391,53.20841226522499],[-126.04998813498403,53.20842131936914],[-126.04962055628313,53.20845228854486],[-126.04933269186179,53.208491621729095],[-126.04904765883411,53.20854047171775],[-126.04876451108765,53.20859829217836],[-126.04848324457575,53.20866170408526],[-126.04820105204142,53.20872960614709],[-126.04792072109815,53.20879918285711],[-126.04763852925734,53.20886931535325],[-126.04735631897633,53.208937215402244],[-126.04707224281186,53.20900118973676],[-126.04678721365522,53.20905899724107],[-126.04649935355643,53.20910840686626],[-126.04620867890631,53.20915053895738],[-126.04591707092638,53.20919042099077],[-126.04562451588383,53.209229191262075],[-126.04533195909413,53.209266831476896],[-126.04503845528474,53.20930335992033],[-126.04474401887438,53.209338202950164],[-126.04444958020753,53.20937136021056],[-126.04415420960609,53.20940340567785],[-126.04385882238061,53.20943432108055],[-126.04356250268289,53.20946356001428],[-126.043266181429,53.20949167783609],[-126.04296985807788,53.2095181188424],[-126.04267353265571,53.20954287407025],[-126.04237627544786,53.209566508519146],[-126.04207994710929,53.209589021521346],[-126.04178267146818,53.209609849078525],[-126.04148633756792,53.20962732341065],[-126.04118811959331,53.209636390394124],[-126.04088801935033,53.20963873505154],[-126.04058886009517,53.209636597143785],[-126.04028780702286,53.209631098012316],[-126.03998769881723,53.209625033130465],[-126.03968666091053,53.209619532466895],[-126.03938655601225,53.20961683613704],[-126.03908738612539,53.20961917592588],[-126.03878916717605,53.20962767220607],[-126.03849190159644,53.20964513935514],[-126.03819369246388,53.20966483784102],[-126.03789453874185,53.20968566521199],[-126.03759352407907,53.20970648345478],[-126.03729156528131,53.209728986267244],[-126.03698960763614,53.20975317334738],[-126.03668858093049,53.209778470777096],[-126.03638757080569,53.20980601714098],[-126.03608842236288,53.209835238247344],[-126.03579116700692,53.209867819138125],[-126.03549671904912,53.209902639182985],[-126.03520414858798,53.20994025438282],[-126.03491626202472,53.20998123755405],[-126.03463119909979,53.21002613601527],[-126.03435176572968,53.2100749489731],[-126.03407703199031,53.21012825036408],[-126.03384358168799,53.21022466911313],[-126.03365332230685,53.21036701032298],[-126.03348276429195,53.21052894764884],[-126.03330374982453,53.210681933093646],[-126.03310128092302,53.21081643422154],[-126.03289225154857,53.210948696074624],[-126.03270009153124,53.21108655474539],[-126.03254734510344,53.21123728204769],[-126.03246682501454,53.2114137668424],[-126.03234033586956,53.21158297723447],[-126.03225133822252,53.2117034367267],[-126.03204697728088,53.211827297464865],[-126.03181633745652,53.21192819284671],[-126.03157444707323,53.2120358129873],[-126.03132317213351,53.212137268596145],[-126.03106062911567,53.21222193004566],[-126.03077648225914,53.21227354115093],[-126.0304895253413,53.21232067081996],[-126.03019975924413,53.21236443940156],[-126.02990810019291,53.21240596701301],[-126.02961550861993,53.212445253400745],[-126.02932103918286,53.21248229879182],[-126.02902656846071,53.212518223081766],[-126.02873209647683,53.212553026270704],[-126.02843762362845,53.21258726406149],[-126.02814314993334,53.21262094541712],[-126.02784962115922,53.21265462581832],[-126.02755420113567,53.21268830593162],[-126.02725879528946,53.212721429601686],[-126.02696337289966,53.2127528675039],[-126.02666701862103,53.212782619844035],[-126.02637160757487,53.212809574792345],[-126.02607430363915,53.21283373297986],[-126.02577794270383,53.212854520147],[-126.02548157911663,53.21287138976429],[-126.02518427923434,53.212878740186596],[-126.02488507988078,53.21287151650557],[-126.02458588944943,53.21285365304586],[-126.02428668137138,53.21283075165653],[-126.02398936344859,53.21280616409445],[-126.02369484921036,53.212776529084906],[-126.02340126205556,53.2127401799102],[-126.02282160554647,53.21266410786056],[-126.02306071167455,53.21254921928801],[-126.02327448125229,53.212425381214935],[-126.02340194205186,53.212260661868065],[-126.02341872364532,53.212079714455534],[-126.02331827338223,53.21191616035142],[-126.02316437543111,53.211757098083716],[-126.02300110243918,53.211602518900584],[-126.02281439677664,53.21145747161577],[-126.02261737025478,53.211315778141916],[-126.022452228533,53.21116736503854],[-126.02236023203405,53.21100324377556],[-126.02233200214518,53.21082455458243],[-126.02230469603604,53.210632976454626],[-126.02230835076156,53.210449790772095],[-126.02229419706802,53.210272219237105],[-126.02222377191617,53.21011986210057],[-126.02203521119357,53.20999665656504],[-126.0218222490569,53.209865612623545],[-126.02158960747792,53.209746331286745],[-126.02138134373632,53.209613609605356],[-126.02117870539207,53.20947527572704],[-126.02097513889848,53.20933862669425],[-126.02076313005152,53.20921038604467],[-126.0205351793231,53.209096703630266],[-126.02028567827536,53.20900487617802],[-126.02001930553028,53.20892930090939],[-126.01974918435546,53.20885764248128],[-126.01947531443894,53.20878934516443],[-126.01919864103587,53.20872440878014],[-126.01891914858719,53.20866171294023],[-126.01863683706105,53.208601257625176],[-126.0183526667276,53.208543042666165],[-126.01806755259571,53.20848650324354],[-126.01778056434797,53.208431648453015],[-126.01749263178381,53.208377357772584],[-126.01720377012245,53.208324177934585],[-126.01691490919119,53.208271006353854],[-126.01662604898284,53.208217825104605],[-126.01633813479432,53.208164651982415],[-126.01605115118525,53.20811034869874],[-126.01576604367632,53.208055488764764],[-126.0154809367037,53.20800007243906],[-126.01519395632033,53.20794857248532],[-126.01490415697356,53.20790043330479],[-126.01461342858742,53.20785396960513],[-126.01432364631329,53.20780806974411],[-126.01403384929198,53.207761048803455],[-126.01374594274625,53.20771178619025],[-126.01346084127177,53.20765804107061],[-126.01317949005251,53.207599257654785],[-126.01290376386176,53.20753262139087],[-126.01263928728515,53.207450862744324],[-126.01238324071457,53.207357343199135],[-126.01213095990336,53.20725877655515],[-126.01165455319754,53.20718319476895],[-125.99989777619953,53.20711206399207],[-125.99333343314163,53.207071543127086],[-125.98666688122763,53.20707154525851],[-125.98000125937045,53.20707172822795],[-125.97333281672287,53.20707153564381],[-125.96666626428775,53.20707152405976],[-125.96000064164235,53.20707170243355],[-125.9533321982084,53.20707150477749],[-125.94666564471406,53.20707149740337],[-125.94000002075359,53.20707167118102],[-125.93333345065636,53.20707202521197],[-125.9266668954953,53.20707201318976],[-125.9200003254099,53.207071617170456],[-125.91333376819823,53.207071975470825],[-125.90666626568789,53.20707194903971],[-125.89999969217004,53.20707211293007],[-125.8933331336638,53.20707190180801],[-125.88666750402996,53.20707188121818],[-125.87999905209685,53.207072038556014],[-125.87333249070109,53.207071822677335],[-125.86666685793995,53.20707178852419],[-125.86000027811575,53.20707194300082],[-125.85333371330611,53.2070717224693],[-125.84666712955865,53.20707224726293],[-125.83999961754854,53.20707184007027],[-125.83333304660844,53.207072170481595],[-125.82666646058244,53.20707213480823],[-125.81999988726558,53.20707227983318],[-125.81333424422013,53.207072051297395],[-125.80666577798375,53.20707199894113],[-125.77073987252979,53.20707797116679],[-125.77197532391953,53.09430355309072],[-125.77293182037958,53.006502661943415],[-125.77336966133988,52.96640688951577],[-125.77160159393753,52.966081882741385],[-125.76699598145957,52.96527056341096],[-125.7626038974968,52.96365439486978],[-125.75832628794033,52.96295376323778],[-125.75252946600547,52.96186153314781],[-125.7458568545473,52.96009256711597],[-125.73928604020765,52.95884113420576],[-125.72859888960917,52.95522230318949],[-125.71955744626558,52.95336119225156],[-125.7094308413976,52.953275580117776],[-125.7003809942764,52.95490234730392],[-125.69228476473846,52.95657180972955],[-125.67951365811419,52.95697028439055],[-125.67173307380335,52.956237877350034],[-125.66471309458612,52.95555081514545],[-125.65948371367644,52.95479849411988],[-125.65560545649839,52.95482924335388],[-125.65087693754175,52.954869109036956],[-125.6459559261833,52.95473843905052],[-125.63952398443256,52.95513970041212],[-125.6329424531932,52.95730556285516],[-125.62739411012019,52.95894822851811],[-125.62183290673867,52.9603110196273],[-125.61464218395466,52.96037063695313],[-125.59716651804813,52.95799712000445],[-125.59072974721823,52.95724825936788],[-125.57849158332402,52.95642407746858],[-125.56585477879025,52.95378297529258],[-125.55989314259148,52.9490287356346],[-125.55425490080779,52.94627055664693],[-125.54749042240756,52.94432075128978],[-125.54160897263553,52.94350912595475],[-125.52835149485975,52.94360468563679],[-125.52382780681069,52.9440924198411],[-125.5200886422695,52.94640857285867],[-125.51096928117627,52.94967672220763],[-125.50185878296139,52.95334144609715],[-125.49563260879756,52.955154347307925],[-125.49005362066482,52.95519588302645],[-125.48305754721001,52.95524326098111],[-125.47273771122458,52.95508994288182],[-125.46591633232566,52.95547830116769],[-125.46053893067841,52.9560835533239],[-125.45417940573387,52.95533036981896],[-125.44972733436616,52.954729201021735],[-125.44186602422886,52.95478633953679],[-125.4368539362112,52.95481739054179],[-125.43278159158693,52.95484379303369],[-125.42758580179702,52.9552237475317],[-125.42283659923383,52.95456296694392],[-125.41848162684097,52.95453370226043],[-125.41306762338131,52.953424930662834],[-125.40927872162231,52.95345529384998],[-125.40588629561762,52.9539318477313],[-125.40238085139127,52.95395388937664],[-125.39688391653968,52.953468675406505],[-125.38876518068363,52.95484098878864],[-125.3814093480903,52.95602737592229],[-125.37848372488459,52.957188023445525],[-125.37605426967112,52.95908855652225],[-125.37314975196082,52.960817313895376],[-125.36861810822751,52.961592637615965],[-125.36320832884253,52.96122286440989],[-125.35610474874613,52.96040657152966],[-125.35306900729455,52.95991369393932],[-125.34765866609035,52.959602591927364],[-125.34348152519081,52.95865042580812],[-125.33959057692635,52.957531627824665],[-125.33411353032609,52.958648267747556],[-125.32975635952994,52.95873281748091],[-125.32399999465319,52.95956389204887],[-125.31797054849125,52.96159548922488],[-125.31532713482056,52.962700736280624],[-125.30967729967396,52.96427075125802],[-125.30560207552601,52.964409285810575],[-125.30088423120043,52.96551989412239],[-125.29785615581878,52.96548171593609],[-125.29464051980753,52.965957804716325],[-125.290785462125,52.96809066019365],[-125.28597918656925,52.969088083556066],[-125.28107684474644,52.97134146109329],[-125.27626097433786,52.97199048650034],[-125.2727671328465,52.97298478598018],[-125.27022439162904,52.97420001874588],[-125.26590972178337,52.976907433499086],[-125.26338765689411,52.97948864088498],[-125.25960637776073,52.980651638121884],[-125.2548736698112,52.9807338692498],[-125.25117698194846,52.98046391231647],[-125.24445125965427,52.98015484474709],[-125.24007246295564,52.97880776726595],[-125.23628385359515,52.9778531928507],[-125.23286903772183,52.977696543577416],[-125.22774294066994,52.97726637664375],[-125.22414247442414,52.97665554050273],[-125.21920077005248,52.975134761895106],[-125.21454299935435,52.9744191279697],[-125.210465413901,52.9730051518427],[-125.20722476894898,52.97153558883904],[-125.20210602816513,52.971560985339224],[-125.19869719545262,52.971119315435374],[-125.19566787347075,52.971128366629046],[-125.18969849989165,52.9711597496466],[-125.1856266400842,52.97106387672671],[-125.18052181622814,52.971142784960826],[-125.17588677048658,52.97161920938709],[-125.16973761782101,52.972446190687656],[-125.16538959381033,52.97349124878647],[-125.16303670671489,52.974757645701914],[-125.1588869001715,52.97632383052148],[-125.15654295091905,52.97787422892332],[-125.15504521686266,52.9803938076787],[-125.15127116443136,52.981039047203076],[-125.14805969363036,52.98190787134177],[-125.14532917683688,52.98409007368732],[-125.1432713566997,52.98621043240077],[-125.13958935602201,52.98817322375354],[-125.13857155384882,52.990516238932436],[-125.13536488504968,52.991100679770646],[-125.12949018901675,52.991469823360234],[-125.12492809991954,52.989715377724806],[-125.12064879434317,52.98802000232843],[-125.1172281246867,52.987404443899756],[-125.11410794544022,52.9874168943633],[-125.10880993105059,52.9880633206477],[-125.10360608349664,52.98848387355935],[-125.10038377054921,52.98838031853997],[-125.0961084016241,52.98725334796999],[-125.0916567436153,52.986702528553565],[-125.0880643374089,52.98785366601076],[-125.08513712509985,52.98860811813181],[-125.07775458660883,52.98966167455163],[-125.07549389754118,52.991331032543144],[-125.07342608511443,52.99304781674742],[-125.06830348002892,52.99312230081466],[-125.06776803203242,52.9957526079493],[-125.06424923879145,52.9948517810227],[-125.06246923967439,52.997030105845596],[-125.05734965812125,52.99761849917016],[-125.05366378305578,52.99751837412395],[-125.05015977590666,52.997298573595],[-125.04607512751272,52.996339974464085],[-125.0409624808398,52.99727566699836],[-125.0366930950386,52.997230220023134],[-125.03500050401108,52.998780183385335],[-125.03102514129593,52.99827580335042],[-125.02781250337044,52.999028180684824],[-125.02459085036449,52.99886709937594],[-125.02088297170208,52.99842342563181],[-125.01869365172314,52.99688398856686],[-125.01241764127728,52.99387764272291],[-125.00862055928286,52.992801357518005],[-125.00434706423326,52.99167610010729],[-124.99865661387707,52.989236494505406],[-124.99257893701493,52.988675945865396],[-124.98833864098121,52.99120866568725],[-124.98693373465574,52.99315208785018],[-124.98485798632444,52.99567132018233],[-124.98232190610256,52.99744972945102],[-124.97966496845825,52.99865553093638],[-124.97368825801261,53.00005093519339],[-124.96901430922664,53.002513626427906],[-124.96788139037535,53.003659639547124],[-124.96636006312917,53.00480783170821],[-124.96372095501721,53.00646952488543],[-124.95824525848545,53.00990247842174],[-124.95492682781403,53.01122234355153],[-124.95228940208024,53.01156986816967],[-124.94943646140408,53.01157026403435],[-124.94650803462272,53.012205307820594],[-124.94574479579018,53.013467593276474],[-124.94499943732549,53.01460956228817],[-124.94367348041342,53.015068910130765],[-124.94263708579636,53.015296639125495],[-124.94073980637341,53.01530202814425],[-124.93875497787502,53.015822083604455],[-124.93714169147245,53.015819884212526],[-124.93505377946128,53.0162778707115],[-124.93364162125945,53.01599896984184],[-124.93277636448235,53.01416845049953],[-124.92897701830996,53.01200258712021],[-124.92529603622091,53.013439361134324],[-124.92415789822667,53.015322837966615],[-124.92349523378786,53.01612476053077],[-124.92322914328437,53.01955031130815],[-124.9234300034588,53.022235471084635],[-124.92334006026053,53.02755197462297],[-124.92241961516234,53.0332049081376],[-124.92241764044647,53.03446052987262],[-124.92045418783712,53.04114942605791],[-124.92198379063144,53.04742870381241],[-124.92702419148776,53.05324739674878],[-124.92827124167287,53.05478329052435],[-124.93415446546075,53.059860730718285],[-124.9456492203256,53.06607056019942],[-124.94783677606802,53.06892570949198],[-124.93740848103266,53.06905534126877],[-124.92678861463602,53.06906801237862],[-124.91853575595319,53.07010490934386],[-124.91124908333823,53.07194520548848],[-124.90755429723498,53.07543478396932],[-124.90680093409767,53.080287795308315],[-124.90606271397185,53.086287284657026],[-124.90568922363413,53.09148331335946],[-124.90503951561352,53.09520097048481],[-124.90334100837315,53.100112385570775],[-124.9036308418915,53.10279603774534],[-124.90734181862005,53.106333299050746],[-124.91039636845058,53.11038656584581],[-124.9067861425173,53.112787102598254],[-124.89938680507679,53.114626773945616],[-124.89559719591094,53.11525369029029],[-124.8875262178015,53.112981157118774],[-124.87877481498971,53.11099351520381],[-124.86757929387596,53.10917736402987],[-124.86007271953358,53.1088385212473],[-124.86454058429365,53.11083524832092],[-124.8725236097867,53.11522809533028],[-124.8799290113676,53.119440654227986],[-124.8840289641409,53.12183708684193],[-124.89258084962685,53.126968966811916],[-124.89629168304481,53.13170774925537],[-124.89468327163381,53.13421957939298],[-124.8925157236679,53.137481969464204],[-124.89194370738174,53.14044943483222],[-124.89184633096235,53.14073538357575],[-124.88977578445393,53.14599207089179],[-124.88701843716228,53.14999117001816],[-124.88294938177653,53.151994463250745],[-124.87913937014463,53.15325602975728],[-124.87173515125122,53.15440426978555],[-124.86317708431672,53.15441257074814],[-124.85196772447291,53.15436487321811],[-124.84180264324112,53.15339851922151],[-124.83619325437711,53.15300508021406],[-124.82735777570129,53.15437906759004],[-124.8143390888975,53.15792703255366],[-124.80606760090072,53.16049960980135],[-124.80216175802401,53.16026965138028],[-124.79836189647875,53.15947587621576],[-124.78629456243232,53.15793411077716],[-124.7805942980648,53.15496596487796],[-124.77375593327353,53.15251128360883],[-124.7584492529547,53.15114145889179],[-124.73013896712095,53.14965266519722],[-124.71988028264903,53.14793632213387],[-124.71342190162939,53.14496169439543],[-124.70003967089372,53.1391328511378],[-124.69386159116807,53.13833023954113],[-124.67808190382415,53.14083209429046],[-124.6664971259412,53.14139125503449],[-124.65111064119226,53.140867189297126],[-124.6094318384434,53.13476802072757],[-124.5774428267003,53.129069612274755],[-124.57003026599885,53.128999826440754],[-124.53088374192195,53.13172287123595],[-124.50626305104254,53.13447671384087],[-124.5006611654642,53.13486250452133],[-124.49580000001427,53.137590693510724],[-124.49120769771986,53.140324913205156],[-124.48099990796803,53.14669416057232],[-124.47852259171118,53.14765579683743],[-124.48251064707168,53.148865224776195],[-124.48457913663964,53.15053238705741],[-124.4866537284305,53.152871984450414],[-124.48920656018225,53.15567767187388],[-124.49221323764323,53.16048104765864],[-124.49530779278008,53.16494028240734],[-124.4996623066729,53.169405306391326],[-124.50116341921468,53.17232118956878],[-124.50142826076532,53.175005121346565],[-124.5013988099957,53.17837732399394],[-124.50138582075658,53.18128465482136],[-124.50185756307765,53.18151643720348],[-124.49945923374763,53.1831675844966],[-124.49783380923554,53.18459035946147],[-124.495148493929,53.187552853008675],[-124.49455985762332,53.190183350473546],[-124.49674509292778,53.19201253000515],[-124.50072949097546,53.19218742102234],[-124.50300593623398,53.193569371579706],[-124.50557228100212,53.19396934412432],[-124.5109049099566,53.193355725107644],[-124.51642042577363,53.19308369954828],[-124.52326825400989,53.1933222401182],[-124.52839782635819,53.19379118029823],[-124.53297048737772,53.19431519979321],[-124.53818715597656,53.19444077072992],[-124.5418104772662,53.19421984348247],[-124.54495440872421,53.193541309530204],[-124.54676962906342,53.19354397830479],[-124.54847007297985,53.193830978809046],[-124.54979539805919,53.19412007737971],[-124.55045613694259,53.194977590713826],[-124.55035259783082,53.19668525978636],[-124.5503518093289,53.19845918020279],[-124.55033149523949,53.200802695195065],[-124.55032438076033,53.20188567374101],[-124.54946121238105,53.20473938703146],[-124.54676831967375,53.2093014473952],[-124.54254198491482,53.213917424271166],[-124.53939321906631,53.21642860125682],[-124.53852714641776,53.217165368195396],[-124.53425229123648,53.21750366886967],[-124.52797120475071,53.217257167496],[-124.5252100172607,53.21594198408084],[-124.52102731130255,53.21536261786873],[-124.51646462461916,53.21534872970101],[-124.51482734814985,53.21666287371736],[-124.51435088282928,53.21740659208443],[-124.5131009058199,53.219228721554764],[-124.51138449976665,53.22065108994491],[-124.50793842979073,53.22258564092527],[-124.50611949832286,53.224351227418964],[-124.50361931123089,53.22754312621807],[-124.50246895453388,53.22822730526553],[-124.50017992047043,53.23010956455229],[-124.49825818196032,53.23221439624868],[-124.4948191107323,53.23306559749155],[-124.49090979139136,53.233624395507746],[-124.4879443600301,53.235500618790034],[-124.48728161480771,53.23681392112977],[-124.48639917715064,53.238808551925594],[-124.48277020934442,53.24074341334377],[-124.47876297624687,53.24107700968854],[-124.4755244692737,53.24174980690137],[-124.47418114132796,53.243178683978634],[-124.46930107858518,53.24562148435735],[-124.46786502935365,53.24669833440598],[-124.4664244740145,53.24789726469086],[-124.46367934208436,53.24737594845001],[-124.46081626130838,53.24679532991184],[-124.45805913602844,53.247017822783334],[-124.45603885849634,53.24804043546324],[-124.45508747636163,53.24940864368327],[-124.45430961325158,53.250549379662814],[-124.45314823823163,53.25231545003925],[-124.45161778834361,53.25431034386222],[-124.4506520729367,53.254423243134056],[-124.44852863937716,53.25823918928654],[-124.44544591525477,53.26320236041727],[-124.44185915509539,53.26958592839332],[-124.44164015431676,53.27266863629287],[-124.44848014402835,53.274691294689084],[-124.46142417053193,53.27712116743051],[-124.47219077688689,53.27869292726364],[-124.48132894359838,53.279165982154055],[-124.49381305104434,53.27982652045864],[-124.50362369845814,53.28127344368726],[-124.50321440767279,53.284760004180484],[-124.49793574600055,53.29028837211711],[-124.48969757683582,53.295688135517366],[-124.48222411405953,53.299840950496765],[-124.4777046064073,53.304628470392004],[-124.4771961013055,53.30788057903149],[-124.47718815009794,53.309767520205845],[-124.47810497085268,53.314794940074655],[-124.48100597849039,53.322393641896326],[-124.481650079955,53.324566244523176],[-124.48406869432254,53.33222140480224],[-124.48791009235252,53.342625918494484],[-124.49015218099011,53.34896421443746],[-124.49251320882105,53.351997229324965],[-124.49697263693147,53.35532117714603],[-124.50077253373969,53.357728996461525],[-124.50096303069071,53.358301195056605],[-124.50095937303274,53.35967380526541],[-124.50092381684013,53.36321256057797],[-124.50224189536443,53.36681207170925],[-124.5037534066177,53.369213896785965],[-124.50716308505571,53.37247545429085],[-124.51181236798871,53.37734242671581],[-124.51427111186045,53.38025737481735],[-124.51815668583113,53.38460413209768],[-124.5216462058739,53.391238391532674],[-124.5201854139356,53.395060227950204],[-124.5188248238958,53.39859755992952],[-124.52062190935517,53.40151249955463],[-124.52421483942885,53.40825882172928],[-124.52484663028166,53.41174356236266],[-124.52612886283802,53.41991160761801],[-124.52702383647365,53.43053597200369],[-124.52736120962116,53.437273710842916],[-124.52712611113238,53.44355447431677],[-124.52711323910003,53.44435265364446],[-124.52708976061503,53.447607358468474],[-124.5270466444709,53.453145347954845],[-124.52702226987103,53.45685606162984],[-124.52727432318764,53.46388005727471],[-124.52780603174335,53.46982119275792],[-124.52778231798126,53.471359857145785],[-124.52547820595437,53.47375720018525],[-124.52038408037198,53.47602916076972],[-124.51691558039131,53.4780174868439],[-124.5166203553985,53.48081722210906],[-124.51765236063024,53.482819997322025],[-124.51917894630975,53.48408043193895],[-124.52547247771415,53.488550039656936],[-124.52966970953412,53.48992453751871],[-124.5335053178975,53.49084570146478],[-124.53503030468855,53.491307580577526],[-124.53979519670773,53.493320060927545],[-124.54256244442728,53.49543400624018],[-124.54321763839415,53.49789018772789],[-124.54319809089199,53.500631128159895],[-124.54461808405956,53.50326300965193],[-124.54500444503373,53.50388901168541],[-124.54901489368649,53.50635687292999],[-124.5534986476963,53.50870091257989],[-124.55750616780014,53.51128160017634],[-124.56207347809118,53.51562796910614],[-124.56406911866588,53.518717490723645],[-124.5640622660998,53.5198014293617],[-124.56386463909544,53.52248360185418],[-124.56653082679698,53.524548652329926],[-124.56978911638555,53.52477764037549],[-124.57706293263914,53.525649394098906],[-124.58050971255581,53.52656827281301],[-124.58155367339103,53.52834029467752],[-124.58164140526942,53.52977099272833],[-124.58173541840833,53.53056872752587],[-124.58198143909985,53.53268587902582],[-124.58417608190678,53.533083339213384],[-124.58619289964558,53.53337332549038],[-124.5895498244767,53.533840459718355],[-124.59051009943545,53.53406859203377],[-124.59366304265774,53.53475840499112],[-124.5964339820154,53.53556744588502],[-124.6002638066872,53.53592217928371],[-124.6038275525592,53.53563897152947],[-124.60757435965279,53.53485136745334],[-124.61083138258934,53.534234975951264],[-124.61418888673568,53.53423645130758],[-124.61791691187871,53.53538604587047],[-124.62030839497851,53.536250637234254],[-124.62089463622186,53.53682097085584],[-124.62250760810208,53.538367257642314],[-124.62527565294315,53.539288181465224],[-124.62824090250322,53.54112051306923],[-124.62927796250213,53.5431760248393],[-124.63147772552554,53.544837024881616],[-124.63358076499321,53.54575741401875],[-124.63683981879103,53.54741921641576],[-124.63932711630632,53.54816126010122],[-124.64584250096098,53.549259885497],[-124.64927865582489,53.551553002612565],[-124.65023137103249,53.55297825326828],[-124.6515520424904,53.555667525603525],[-124.65441103827011,53.55852424043788],[-124.65756837550296,53.56058315806166],[-124.66168769293527,53.56191051602847],[-124.66830643679342,53.5631748435977],[-124.67060509559903,53.56466196753268],[-124.67031575196111,53.56471812888415],[-124.6721222814684,53.565978466917144],[-124.67817072201642,53.56615866543717],[-124.67913284377887,53.56684656158399],[-124.68229875747784,53.566283226303035],[-124.68566675379274,53.565547252497375],[-124.68844884252123,53.565152071761396],[-124.69152026459012,53.564698374264474],[-124.69737882584023,53.56465313489377],[-124.70312795022919,53.56472013380015],[-124.7091816185231,53.56472740494453],[-124.71589830382527,53.56433535862885],[-124.72080898264106,53.56211928370674],[-124.72657411245754,53.55915699430111],[-124.73099955578688,53.55893518081568],[-124.73635972557211,53.55882728445286],[-124.74029766634405,53.55820729087724],[-124.74500376954657,53.558208064316275],[-124.75018524124883,53.55901356739812],[-124.75689003507635,53.55999714026601],[-124.76486315318688,53.561088121632906],[-124.78433121103377,53.562418719667974],[-124.80410769744995,53.56305740672589],[-124.81974233316943,53.56192946986956],[-124.84058454551715,53.55577615714168],[-124.87023669290441,53.55538236715284],[-124.88165828890735,53.55886532803123],[-124.93971238258075,53.55913959456831],[-124.94259406143655,53.56667675992944],[-124.94720775630162,53.57460438566401],[-124.94960408514449,53.57985611962933],[-124.95066142240461,53.582370942336745],[-124.95210983719815,53.58499447765966],[-124.95363789531697,53.58807408961946],[-124.95411929098083,53.590020324333906],[-124.9513610985988,53.5938880516961],[-124.95284153129965,53.59388533719959],[-124.95565660730935,53.593880821034794],[-124.9555929294892,53.59400517239895],[-124.95549786570031,53.59417350541547],[-124.95544461366754,53.59425930236987],[-124.95528960516731,53.59447808918843],[-124.95518698248458,53.594645791302014],[-124.95501769545422,53.59498151835072],[-124.95498750283947,53.59505351745216],[-124.95490803699194,53.59520349704904],[-124.95489779108384,53.5952347755112],[-124.95488607797206,53.59532486059483],[-124.95487790527218,53.59550067391979],[-124.95489400157199,53.59584193678736],[-124.95489544718508,53.59585987397259],[-124.95493341246262,53.596007527575054],[-124.95497048406648,53.596191013489126],[-124.95499318230648,53.596343570470225],[-124.95501210249026,53.596419915094025],[-124.95502736285952,53.59649119094268],[-124.9550305895415,53.59651362481674],[-124.95504082842925,53.596558525632155],[-124.95504594788133,53.596580976039185],[-124.95505095557576,53.596607906606714],[-124.95507120994036,53.59670666855016],[-124.95507645526952,53.59672407429361],[-124.95522879177875,53.59706821181769],[-124.9552944947706,53.59724242965291],[-124.95536487110968,53.59745701846263],[-124.95577206159038,53.599045774523375],[-124.95578798050617,53.599090724793946],[-124.95587006866268,53.59929141626239],[-124.9558734998078,53.599381624493894],[-124.95586834830914,53.59958827617778],[-124.95586197418956,53.59976802142816],[-124.95586907353253,53.59993893096207],[-124.95583598671178,53.599975046881916],[-124.95580277406893,53.60001620744665],[-124.95561512578318,53.60017645473824],[-124.95542256555781,53.60030584660039],[-124.95522077707462,53.6004256306827],[-124.95497585498677,53.60052879804261],[-124.95471679445433,53.600591511207],[-124.95469963210523,53.60059640700497],[-124.95414072195501,53.600762925470555],[-124.95383966425656,53.60083926865351],[-124.95352933636228,53.60090769698217],[-124.953508388063,53.600912550532165],[-124.95321088988166,53.60099789450713],[-124.95288639912619,53.601102601965295],[-124.95283659407202,53.601125691971035],[-124.95261562637991,53.601254830725445],[-124.9525982396616,53.60126867755977],[-124.95257695472895,53.6012869803554],[-124.95256123687048,53.60130980405647],[-124.95246146193801,53.601513942184404],[-124.95245332974878,53.601536276630036],[-124.95244005280041,53.601612904210995],[-124.95243569265578,53.60163582734335],[-124.95242945341526,53.6016581783616],[-124.95242700014241,53.60168056253026],[-124.95242263975949,53.60170349462169],[-124.95241806937416,53.60173482251154],[-124.95238114001681,53.60192438253304],[-124.95235758733428,53.602109022878075],[-124.95235264228768,53.60230671387609],[-124.95231582420146,53.6024917936843],[-124.95229371564673,53.60269437113672],[-124.95227338784312,53.60290144529186],[-124.9522663250976,53.60310807993397],[-124.9522613656044,53.60330632638251],[-124.9522171981299,53.6034823794791],[-124.95210494948196,53.603655040056104],[-124.95195527255663,53.603810012784116],[-124.95181294285013,53.60397400298294],[-124.95164832931275,53.60412043787455],[-124.95146486771316,53.60426334651842],[-124.95145127948264,53.60427667081198],[-124.9512630206022,53.604459867238646],[-124.9510973933654,53.60464662262114],[-124.95095528167886,53.60480166041875],[-124.9507879691474,53.60497999400237],[-124.95062334807245,53.60512642742162],[-124.9504091390606,53.60528698927957],[-124.95002204266409,53.605621362195784],[-124.94984135833315,53.60580405823759],[-124.94983154127685,53.605817980068565],[-124.94957336903462,53.60614563210811],[-124.94937095954135,53.60628837121172],[-124.94935936141826,53.60629779624018],[-124.94916965493901,53.60646248754811],[-124.9490045726318,53.60662683919375],[-124.94884258656595,53.60681866917585],[-124.94864875181719,53.60699676676349],[-124.94863124870089,53.60701510208308],[-124.94849043666657,53.607193109644015],[-124.94835008764638,53.607352631992256],[-124.94821485446109,53.607534613720446],[-124.9480757212701,53.607721033166335],[-124.94804450066032,53.60775772795324],[-124.94802689859763,53.607779978814854],[-124.94801128814369,53.60779833068272],[-124.94798988556444,53.60782110378436],[-124.94797238181516,53.607839439001204],[-124.94792377001389,53.60788997987551],[-124.94777539289369,53.608067364405954],[-124.94776356899719,53.608085740576975],[-124.94775543302646,53.608108074641144],[-124.94772983642565,53.608297741570965],[-124.94772520676395,53.608481982505175],[-124.94772464387067,53.60850438316239],[-124.94772597427156,53.60852680046941],[-124.9477291979696,53.608549234425666],[-124.94773052837432,53.60857165173202],[-124.94774820250038,53.60869727855099],[-124.9477722116458,53.60887225339613],[-124.94778089018187,53.608903697556336],[-124.94787990070853,53.609108459144835],[-124.94800041414615,53.60928652295433],[-124.94811157446205,53.609460023281],[-124.94820768729056,53.609629474722134],[-124.94830726421976,53.6098118352474],[-124.9484064905357,53.6100081915995],[-124.94852489043626,53.610195198432024],[-124.94853782049047,53.610208199742154],[-124.9486869936601,53.6103764320385],[-124.94877932437232,53.61054584072554],[-124.94878845389337,53.61055936427643],[-124.94891322593494,53.61071898427466],[-124.94900756416756,53.61088392926408],[-124.94902405649682,53.61090592403306],[-124.94919752532351,53.611087247708284],[-124.94935394071442,53.61126898599949],[-124.94948962799468,53.61144662560232],[-124.94954732358956,53.611562520768985],[-124.94955634118928,53.61158052438275],[-124.94956535879675,53.611598527995746],[-124.94957415163357,53.61162549186243],[-124.94965970157952,53.611763472409976],[-124.94966884558539,53.6117764403509],[-124.94968521230085,53.61180347068336],[-124.9496905696596,53.611816396424565],[-124.94969212597248,53.611829853424275],[-124.9497810139301,53.611985796577564],[-124.94984660530133,53.61216449643081],[-124.9498970355549,53.61234361884805],[-124.94993564181388,53.61254112654185],[-124.94993090880942,53.61272985631752],[-124.94985629918006,53.612910686621206],[-124.9497725445783,53.61307854893962],[-124.94960443826947,53.613211506848444],[-124.94937391510395,53.61334112035151],[-124.94911420470108,53.61342622166376],[-124.94907585646374,53.61344492962655],[-124.94904888347175,53.613463172854814],[-124.94885746055449,53.61361945079088],[-124.94869347369887,53.613739000285655],[-124.94846017036649,53.6138282576307],[-124.94816780079223,53.613931550041855],[-124.94811796369585,53.61395520245359],[-124.94789668859939,53.61409329203527],[-124.94786769436534,53.61411656296155],[-124.94770848262893,53.614272001989875],[-124.94769099024717,53.61428977262047],[-124.94758259370073,53.614457981347606],[-124.947430390754,53.61463588719031],[-124.94728766860106,53.61481331161483],[-124.94710491223054,53.615001030773605],[-124.94699163340121,53.615137272573556],[-124.94697401370492,53.6151600787458],[-124.94695450016867,53.61518287721354],[-124.94694267390263,53.61520125324826],[-124.94692884112186,53.61522410169772],[-124.9469189224037,53.615241938857515],[-124.94685132839818,53.61536905567195],[-124.94668976368233,53.61554239706912],[-124.94667615629605,53.61555627629158],[-124.94656195881235,53.61572891412245],[-124.94646526794861,53.615883225860465],[-124.94633980566246,53.616051838855505],[-124.94620989249503,53.61624674351791],[-124.94609936573377,53.616423894319766],[-124.9459471493387,53.61660179812927],[-124.94582513150827,53.616783893192306],[-124.94572597796785,53.61696057919328],[-124.94560005793372,53.617147120749905],[-124.94548718115647,53.61734217468726],[-124.94536127313066,53.61752815146865],[-124.94534933264573,53.61755100744012],[-124.94521664795982,53.61793073219275],[-124.94521252190329,53.617944139147774],[-124.94517755200636,53.61812924118791],[-124.94511215513731,53.61831911179441],[-124.9451079161239,53.6183369988541],[-124.94508754518647,53.61854407042203],[-124.94509399130116,53.618588938287616],[-124.94517841192413,53.61877172273105],[-124.9452456623026,53.61895940150486],[-124.94527127206517,53.61899547602235],[-124.94543930230768,53.61916780320503],[-124.94556397462155,53.619331897266264],[-124.94557878636918,53.61934547106357],[-124.94576944617131,53.619521913574424],[-124.94578984060188,53.619539461961715],[-124.9459984487258,53.61968021334688],[-124.94611341595385,53.61985374812563],[-124.94636788839011,53.6202043941231],[-124.94644339821185,53.62036525814898],[-124.94647878582612,53.62053976792119],[-124.94650257097284,53.62072370236468],[-124.94651702254693,53.62082689485036],[-124.94652024654428,53.620849328723345],[-124.94652536439759,53.62087177926466],[-124.94652646906883,53.62090315668226],[-124.94652613084791,53.620916597003095],[-124.94651960040528,53.62110082920495],[-124.94654327331057,53.62128924370329],[-124.94656283701434,53.62171624047849],[-124.94658784067948,53.621927072113095],[-124.94662812281227,53.62213299246337],[-124.9466699468701,53.62235293425513],[-124.94667328379543,53.622370888005385],[-124.94674268000654,53.62254906658062],[-124.94674991755815,53.62256257355358],[-124.94686065710485,53.62275399448989],[-124.94692647828738,53.62292373492912],[-124.94693182201695,53.62293722522671],[-124.94702061080824,53.623097640846424],[-124.94704261851847,53.623277078222024],[-124.94704606836841,53.623290551851866],[-124.94709983701398,53.62348763730337],[-124.94718738817019,53.623697333888],[-124.94723793338538,53.62387198541751],[-124.94724623377068,53.62406922650186],[-124.94724957107996,53.62408718022313],[-124.94730345459837,53.62427977645603],[-124.94734051757106,53.62446327150651],[-124.94736385809031,53.62466512587994],[-124.94736897686255,53.62468757634938],[-124.9474381405994,53.624875270082164],[-124.94750597414715,53.62504054660668],[-124.94755830394661,53.62521968569568],[-124.94759692501303,53.62541663754558],[-124.94765225537823,53.6256271705629],[-124.94772487221519,53.62582833765446],[-124.94781053708587,53.62603802588897],[-124.94787781093854,53.62622570261369],[-124.94794731730734,53.626399955638014],[-124.94801592348576,53.626610049391125],[-124.94806970118655,53.626807125173734],[-124.94810532597658,53.626972682761675],[-124.94811539865405,53.627174975802916],[-124.94811873658372,53.62719292947663],[-124.94817063532945,53.62738943299065],[-124.94817937694732,53.6275693178289],[-124.94818616550799,53.62760074507067],[-124.94826872364197,53.62778351000374],[-124.94833755883221,53.62798464326071],[-124.948439941181,53.628207920900024],[-124.94850755898825,53.628382156816805],[-124.9485147981179,53.62839566365004],[-124.94862377950129,53.628582585757904],[-124.94867457585079,53.6287477116446],[-124.94867802667689,53.62876118519669],[-124.9487621317201,53.62895797110933],[-124.94877306112744,53.62897542679243],[-124.94890288168797,53.629162531563],[-124.94904666615189,53.62932175199541],[-124.94915542735747,53.62951763373365],[-124.94927199153594,53.62970462167188],[-124.94940561905649,53.629891203559254],[-124.94941664726167,53.62990474357573],[-124.94959197835972,53.63009056195241],[-124.94960859099896,53.6301080763714],[-124.9498130264251,53.630266707617345],[-124.95002349759554,53.63041138357474],[-124.95026808141384,53.63055580259609],[-124.95063503570442,53.6308827773528],[-124.9506517614202,53.63089581152909],[-124.95087159792244,53.631045049065904],[-124.95110471016471,53.631193846832346],[-124.95132063479143,53.63134809491714],[-124.95134482597018,53.631365675456806],[-124.95158418582622,53.631492121588366],[-124.95179489369127,53.63162783417481],[-124.95203759638201,53.63177223292316],[-124.95221596268132,53.63191327193925],[-124.95224763395785,53.63193483420645],[-124.95249635947089,53.632065841466186],[-124.95258984420857,53.632115951145124],[-124.95268726776749,53.63458306794128],[-124.95062192535008,53.634579547908956],[-124.94802674411943,53.634622314937],[-124.94802188530582,53.63466484243319],[-124.94789436587234,53.63483791917383],[-124.94772112386781,53.63502068532694],[-124.94762371696588,53.63520186828732],[-124.9474945248662,53.63536597671055],[-124.94708593507563,53.63571414850118],[-124.94685149132789,53.635843713648434],[-124.9466298565754,53.63599132427477],[-124.94660948457505,53.6361983945784],[-124.94646702377308,53.63636237619372],[-124.94621550922982,53.63649235452408],[-124.94591583470097,53.63657821794323],[-124.9455576249232,53.63665572328884],[-124.94527357010624,53.63672324272929],[-124.94498784592184,53.63678177568923],[-124.9446433466494,53.636841474839954],[-124.94428178096001,53.63690158715201],[-124.94393851015592,53.63698761693587],[-124.94362388267187,53.637064945265216],[-124.9432803686578,53.637160497793836],[-124.94302807641601,53.63724565193248],[-124.9427437873615,53.63732211654151],[-124.94240049567998,53.637408706390644],[-124.94214776118012,53.63751122342548],[-124.9419583236552,53.63765854535297],[-124.94173690290536,53.637796622180566],[-124.94157757830949,53.63795205151764],[-124.94140308143277,53.63810790216532],[-124.94119870820342,53.638246128717455],[-124.94100616905332,53.63836597964346],[-124.94071223444345,53.638523578100525],[-124.94047540682588,53.638671034126155],[-124.94022408672485,53.63879203961184],[-124.94001947928919,53.63893922424717],[-124.9398603709703,53.63908569109207],[-124.93968540865605,53.63925946838993],[-124.93958818416293,53.639431684362734],[-124.93956633508846,53.639620816132094],[-124.93955987054512,53.63980112198338],[-124.93967429872515,53.63999706181776],[-124.93984962861938,53.64018290264234],[-124.93998089910801,53.64038738875983],[-124.94007993166042,53.64059271859774],[-124.94008848533115,53.640778758648324],[-124.93999370534183,53.6407795956352],[-124.93942136277846,53.640779573708464],[-124.93858938282605,53.64077947960612],[-124.92878372853977,53.640779546673805],[-124.92525111846375,53.64077926154913],[-124.92524974383649,53.647989864797346],[-124.9252491644384,53.64808620258322],[-124.92949715126447,53.64719161947508],[-124.9296999631019,53.647191756124506],[-124.95185900110536,53.6472258440526],[-124.95234421746856,53.647226728557776],[-124.95223464286045,53.6472879490107],[-124.95210642754141,53.647412296551565],[-124.95192962840899,53.64758439005551],[-124.95179086956446,53.647751214918635],[-124.95162884954637,53.64793855636351],[-124.9515861754183,53.64797739196339],[-124.951532242989,53.64801164795086],[-124.95151880898985,53.64801825191705],[-124.95138449683827,53.64808317147987],[-124.95132892169335,53.64810733064548],[-124.95105929934758,53.64820131210752],[-124.9510420889584,53.64820732729867],[-124.95086438489712,53.64826402442787],[-124.95079189380107,53.64828243386742],[-124.95049283271494,53.64834086347573],[-124.95041483856149,53.64835194725222],[-124.95029325732749,53.648362640021396],[-124.95027802244326,53.64851654688759],[-124.95025621694865,53.64870567989747],[-124.95023169105126,53.6487765970342],[-124.95016837720016,53.648882466893426],[-124.95022270141126,53.648983766519336],[-124.95024035986671,53.64903545328782],[-124.95026040342348,53.649143173997494],[-124.95026364554971,53.64916505197916],[-124.95027731165042,53.64945139388889],[-124.95030380145162,53.649453310915426],[-124.95035377622764,53.64950135547067],[-124.95050755020081,53.649492064957144],[-124.94183916794356,53.65331206843236],[-124.94185952076147,53.65333184830493],[-124.94194571420701,53.65374655049455],[-124.94204871028684,53.654246531765004],[-124.94859122423247,53.65823736025953],[-124.95657174485076,53.662400542150905],[-124.95985883989863,53.665025867381836],[-124.96351062727805,53.669480256742425],[-124.96755115771732,53.67358499223719],[-124.9731370985146,53.67843770676878],[-124.97941036232008,53.68254263802803],[-124.98201414210699,53.68842081244411],[-124.97585291984956,53.692704773367595],[-124.97103593476257,53.69413608703554],[-124.96141462895167,53.695227146011334],[-124.95303446442645,53.69523492647517],[-124.94244894146563,53.69660338448636],[-124.93186363678478,53.699123089689465],[-124.92733607690587,53.702202553903795],[-124.9303150549783,53.70683110949531],[-124.93523318304008,53.71048203477714],[-124.9420745503183,53.71139114921905],[-124.94447406127895,53.71139267846662],[-124.9501540455581,53.71139099267262],[-124.95488377367263,53.71355625180816],[-124.96086280465656,53.71680756500698],[-124.97010474467122,53.71960044286691],[-124.97540293041517,53.720964871642785],[-124.98464960188936,53.723015063510516],[-124.99390680485314,53.724034577799586],[-124.99968777795682,53.723691398027256],[-125.00622726161737,53.72402634468566],[-125.01172399607482,53.72670200109424],[-125.01463308006318,53.72960991079799],[-125.01020274351501,53.731273368619235],[-125.00616054530724,53.73321265514595],[-125.0077868766339,53.73447066419359],[-125.01097250665835,53.73726275094062],[-125.01223710178549,53.73840737831336],[-125.01840533693294,53.73782897720539],[-125.02630766022897,53.7378205254687],[-125.0338221126363,53.73946857174164],[-125.03681217614181,53.74094774174127],[-125.03990296596794,53.743342842924754],[-125.04173518496701,53.745624206858906],[-125.04502766649344,53.74853214118793],[-125.05255581979131,53.75103212726688],[-125.05871960771539,53.752054606150175],[-125.06374610930479,53.75296317072558],[-125.06586937499345,53.75318582167206],[-125.0752136820949,53.75340377343813],[-125.08601554414037,53.755097301344804],[-125.09220995352138,53.75896858892639],[-125.09393612778891,53.75999426753561],[-125.10080729794372,53.76569160456471],[-125.10758310297281,53.770246922054696],[-125.11462658158379,53.77229294460854],[-125.12215834674731,53.77501869813811],[-125.12382513856656,53.78038526338737],[-125.11564651725021,53.78587689383405],[-125.10813843466765,53.78766184245194],[-125.10196820471977,53.78875958579002],[-125.09203428941468,53.78939793120062],[-125.0822954356969,53.791528458011996],[-125.07940466068419,53.79358538657275],[-125.07535701842396,53.79701732629353],[-125.07257571656766,53.80096129710963],[-125.07161046893692,53.80193342917381],[-125.06690394844907,53.807535359271526],[-125.06383379664129,53.8141053446726],[-125.06189949487806,53.81684755963339],[-125.05671367542365,53.82062003524564],[-125.04571080640622,53.82634520891094],[-125.03809312520424,53.82846942197743],[-125.0295934132973,53.831156765429164],[-125.0269913595516,53.832360089412575],[-125.02294872176242,53.836530740820045],[-125.02188397980315,53.84035697402235],[-125.02285592182635,53.841784115688796],[-125.02586414412715,53.84669183843491],[-125.02509702479702,53.85017212545474],[-125.02480798125262,53.85080267321574],[-125.02761845097403,53.855080320047826],[-125.03139913783984,53.85633121268307],[-125.03864278753815,53.85678188638458],[-125.04888723670364,53.85796996847287],[-125.05662631482255,53.85944393280044],[-125.06232889773321,53.86000654554802],[-125.06860950473701,53.86062657128501],[-125.06976666385397,53.86067864765346],[-125.07460584237712,53.86170110159086],[-125.07654668909976,53.863528393568174],[-125.07840030591973,53.86723738461829],[-125.08082209913725,53.87008480206127],[-125.08565780346957,53.87202081219643],[-125.08759677190153,53.87258718053512],[-125.09377789131796,53.87297829692731],[-125.10306325109225,53.87364707992653],[-125.11061189383146,53.8756935341499],[-125.1160530430635,53.8786509616718],[-125.11886316881571,53.88275441349222],[-125.1157836416196,53.88630449413138],[-125.11009932885283,53.88967790231684],[-125.10323944843203,53.893059103666054],[-125.09888845121864,53.89535202318198],[-125.0949395688792,53.896669374367264],[-125.08874155179163,53.89828045001463],[-125.08313695393325,53.89993941085678],[-125.07589542149177,53.90109552148992],[-125.06882532409449,53.90139058078123],[-125.05847656856761,53.90094444812111],[-125.05015438353549,53.90061423591676],[-125.04714894264741,53.90061627348831],[-125.03380497157525,53.90171921118601],[-125.02211141829521,53.90332470905698],[-125.01997864441842,53.90383664604827],[-125.01543254945078,53.90510343576822],[-125.00721567841045,53.90545104881966],[-125.00130093476854,53.904597356773124],[-124.99628240228067,53.90328542405923],[-124.99308376026332,53.90180591454423],[-124.98310651150712,53.89742077107672],[-124.97420720201009,53.8939428862147],[-124.97024349816314,53.89200481510356],[-124.96066770941593,53.887611108209676],[-124.94316549516694,53.885561843347546],[-124.93020213078196,53.88379573933625],[-124.92942444298983,53.883793310966645],[-124.92924211972732,53.88139732832095],[-124.9278782188781,53.87751669773456],[-124.92460180970491,53.8727261954925],[-124.92015045249352,53.86918357954221],[-124.91213354974207,53.86678201720438],[-124.90632257051246,53.8668990796265],[-124.90333104061312,53.869354187924706],[-124.90352565825351,53.87238212574236],[-124.90420209581484,53.8750632649328],[-124.90468231867793,53.87882973811167],[-124.90487197543426,53.88436848082361],[-124.90225249693273,53.88596664891971],[-124.89596637634895,53.88779389993539],[-124.89431775073669,53.88842231562881],[-124.88579790365722,53.89161697290054],[-124.87990053928223,53.89480855930639],[-124.87408736539194,53.89823757020715],[-124.87303299969584,53.89886452920335],[-124.87331272399344,53.90149059325336],[-124.87388839861322,53.90445771180442],[-124.87387549418929,53.906624004275145],[-124.87301468840394,53.906857359963716],[-124.86903957271282,53.907707302295144],[-124.86575639469396,53.90947656906277],[-124.86507127265918,53.91221397800974],[-124.86757033968536,53.91627009494933],[-124.86873401084307,53.91781453181742],[-124.87007991240091,53.92164188957561],[-124.87434380368184,53.924267114836155],[-124.87781297946422,53.92637959531956],[-124.87917401242119,53.92968720711709],[-124.8787765271295,53.93197032651234],[-124.87809701727316,53.93225636935802],[-124.87790271243378,53.9337975789574],[-124.8783862592863,53.935681150040125],[-124.88050355837947,53.938137722030994],[-124.88156754010554,53.94002218096851],[-124.88369765482281,53.94144882923982],[-124.88438159874951,53.94213900732728],[-124.88651051828839,53.94247848588184],[-124.89221612274949,53.943848872179835],[-124.89385962255542,53.94579061550808],[-124.89560406748483,53.947388251301874],[-124.89657253946078,53.94772812181649],[-124.8992822088713,53.948645068551116],[-124.9014193139119,53.94984686868407],[-124.90345270544955,53.95093174705913],[-124.90538832102293,53.951673493376674],[-124.90819505368576,53.95298261077848],[-124.91071273268068,53.95367073158992],[-124.91371161433811,53.95406965399516],[-124.91613647082931,53.95480835096111],[-124.91942604886498,53.95578213354765],[-124.9239715283713,53.95663821358261],[-124.92533622265327,53.9570329069846],[-124.93105495422193,53.95920579715226],[-124.93366791604655,53.960971847039154],[-124.93366593879128,53.9634282895101],[-124.93269755959719,53.96662500371296],[-124.93307952663996,53.966626695870566],[-124.93453333786337,53.96713744190421],[-124.93830523889432,53.96902393373121],[-124.94228427039833,53.972390700954605],[-124.94441239164328,53.97524381259844],[-124.94634938560323,53.977810145711956],[-124.94945811758862,53.97878150211349],[-124.95323525797106,53.97992267631975],[-124.95614556943615,53.98089493268752],[-124.96022322336516,53.9840888626934],[-124.96166842431477,53.99047926874498],[-124.97146943750339,53.99846835905917],[-124.95799152009474,54.07295805024351],[-124.95604527725651,54.07541444344953],[-124.95185320477677,54.08002883845821],[-124.94900900885396,54.08402754864303],[-124.94413152126275,54.08961244705502],[-124.94236567186218,54.093942987481185],[-124.93909442228025,54.10615470569125],[-124.94041259673256,54.11335271683854],[-124.94137653401529,54.11523392560684],[-124.9439734019685,54.12043585306722],[-124.95036759378617,54.125930522455455],[-124.95580566268993,54.12986641212972],[-124.95899289619523,54.132447603827416],[-124.9658711550097,54.14021258465142],[-124.97342314367485,54.147525856311916],[-124.98429745002193,54.15342385388989],[-124.99206843636611,54.15765532190167],[-124.99428913317827,54.161652206935024],[-124.99418755304251,54.164563514425566],[-124.99513985530642,54.16833479738912],[-124.99551861332417,54.17107086965558],[-124.99938857982912,54.17866545057145],[-125.00422287328418,54.189009676591084],[-125.00704202877971,54.190600840669816],[-125.00947063777801,54.19054900266482],[-125.01872120265435,54.18981771497983],[-125.03041087308863,54.188567615164445],[-125.03188093654322,54.18811341332667],[-125.0419066135186,54.187037093888954],[-125.05993482258116,54.186640464691266],[-125.06732359917376,54.186643713194826],[-125.07453830776898,54.18755913183133],[-125.08154231809638,54.189673198279365],[-125.08776345044149,54.191789932690874],[-125.09721412914007,54.19590165246127],[-125.10411629646207,54.20070169268121],[-125.10596601705933,54.20469364927564],[-125.10295505793758,54.20817486988652],[-125.09992146429974,54.209147000116715],[-125.0902679502251,54.211996080186246],[-125.07925867790539,54.21285392520435],[-125.06747835225153,54.21107951174348],[-125.06299012908589,54.21108080252553],[-125.05811804166737,54.21375806185772],[-125.05197354037878,54.218262051699774],[-125.04455609348831,54.21991533319338],[-125.03988323316283,54.220541542614],[-125.02828102997935,54.221623069287425],[-125.02397127732499,54.225728159634194],[-125.02347571630779,54.229774216405104],[-125.01967063822268,54.23200155744868],[-125.01419906297343,54.23251282037339],[-125.00737686443209,54.23290528734645],[-124.99704829828623,54.2339225794212],[-124.98971680864571,54.2368814610578],[-124.98434333865767,54.23898713851786],[-124.98092719334171,54.24029362365005],[-124.9767214701285,54.243035979001846],[-124.9667821839694,54.24250386311937],[-124.95664387207268,54.2425516465022],[-124.94874839334902,54.24271657113172],[-124.93003017998724,54.241433153357],[-124.92293108837296,54.238789836666115],[-124.92212566913797,54.23841531723263],[-124.91553072635301,54.235354887641456],[-124.90698131194273,54.231801616089044],[-124.89762182826979,54.22984430700153],[-124.8900393338232,54.22817133294471],[-124.88722999402827,54.22400586974074],[-124.88822957978607,54.221147653975606],[-124.88776525685542,54.21841043962857],[-124.88310935283928,54.21377990857723],[-124.87309637972041,54.21004940600171],[-124.86443926779545,54.20905477135992],[-124.85226275293073,54.20806214074965],[-124.84465983505122,54.207873545408255],[-124.83823614020908,54.207292532558604],[-124.82965701159097,54.20738935345292],[-124.81990235012711,54.2093558955218],[-124.81628045297902,54.21237623928062],[-124.8105622348056,54.219838391559456],[-124.80701680020604,54.22388073487492],[-124.80231247377586,54.22809077095098],[-124.79749071780323,54.23207545042254],[-124.79014159809364,54.23724449827702],[-124.78935370510374,54.237362100183255],[-124.78622096435005,54.239804000466386],[-124.78250101408807,54.24128114472447],[-124.77762027345135,54.241949002496675],[-124.77322258903989,54.241886763736645],[-124.76689571516445,54.24100729827374],[-124.76036548590186,54.241272403137195],[-124.75294094306334,54.24262119745553],[-124.74529261002259,54.24625223189878],[-124.73941752171481,54.24971302394124],[-124.73471136729272,54.25215522233442],[-124.7325501286049,54.252885411685924],[-124.72437577056522,54.2520113469109],[-124.71600224958286,54.249638164867974],[-124.71049045593257,54.24630909808652],[-124.70272736900095,54.242686929957216],[-124.69959030307723,54.24313728762072],[-124.69623836316626,54.24648858981061],[-124.68908762632081,54.24977200578779],[-124.68325738048999,54.247809266499495],[-124.67899491264168,54.24494927727972],[-124.67424565962577,54.24241537553169],[-124.6642295755371,54.2405582954899],[-124.65722660447489,54.239728385927755],[-124.64532388636427,54.239623149967194],[-124.62042545005133,54.23530155401061],[-124.61109423552357,54.23286534678066],[-124.60573321018241,54.23221250284684],[-124.59968954898598,54.232644814604605],[-124.59207535364197,54.232673305762376],[-124.58964776460653,54.23260034171709],[-124.58811689197996,54.23014511708109],[-124.58572593682923,54.226765816218155],[-124.58198678161445,54.22280617146466],[-124.57761823235049,54.22062231587381],[-124.56624127928737,54.219260845442285],[-124.55637471831632,54.22133051676777],[-124.54734359770345,54.22584686740419],[-124.54062565901663,54.23186899285841],[-124.5335885370292,54.23902499647307],[-124.52804099459202,54.245329414379036],[-124.52714812960375,54.24663590905419],[-124.52445351332678,54.24970383637623],[-124.52367518050441,54.25038440531973],[-124.52196255796545,54.25351797227907],[-124.51995740155952,54.25664795449132],[-124.51884943021103,54.25921531612425],[-124.51705021089948,54.2621685352314],[-124.51637151697076,54.264346813025085],[-124.5162323053757,54.264793179284275],[-124.51881575081727,54.267432416682205],[-124.52047195954329,54.26846520660217],[-124.52367245229802,54.26979453187692],[-124.52832959672521,54.27129374951783],[-124.53502275786899,54.273561112002255],[-124.53736312141622,54.27442267782957],[-124.54346643526675,54.27685272950869],[-124.55120330591699,54.281452618127986],[-124.555451561371,54.285015922709555],[-124.55980571790143,54.287773818439106],[-124.56728858531746,54.29048778552928],[-124.57379305885866,54.292571498393045],[-124.58342445725016,54.29467337897452],[-124.5863465856501,54.29525399017069],[-124.59375638231683,54.296137388203405],[-124.59980292210025,54.29725555985208],[-124.60565180105749,54.29785142386296],[-124.61326656126744,54.29770545833498],[-124.61894961332872,54.29636321987334],[-124.62031274893559,54.29613673787606],[-124.62665839345013,54.29662073016779],[-124.62702277241037,54.298166126394264],[-124.62856434513218,54.300907638369615],[-124.63401216263222,54.30247434891973],[-124.6390729933099,54.30317623589132],[-124.64814553203598,54.304639410426354],[-124.6535727825832,54.30734303254802],[-124.65879651179412,54.31158542714649],[-124.66199107465201,54.314281953902544],[-124.66595461355092,54.31704058470097],[-124.67305297199024,54.32106091584163],[-124.67993968518915,54.3245139915745],[-124.68225749419832,54.32674344639854],[-124.68409766037783,54.328008891839346],[-124.68800469938881,54.32875894886978],[-124.69417930787986,54.327526011100474],[-124.70093713884131,54.325384993666894],[-124.70799647041655,54.32392782143474],[-124.71629845835136,54.32412315943465],[-124.72566225695923,54.32587028274553],[-124.72790374610399,54.326162540094394],[-124.73454505334539,54.32624070098122],[-124.74098940846255,54.32671073092165],[-124.74498096842048,54.32724476962313],[-124.75367415570113,54.3277820846774],[-124.76137736514401,54.32997537908427],[-124.76614406637226,54.33295387268621],[-124.77051043898034,54.33593709096344],[-124.77333034134963,54.33754257882196],[-124.77681718838299,54.34057942146794],[-124.77708545116661,54.34348532372306],[-124.77365192255768,54.34485760944876],[-124.76817626229285,54.34489197059641],[-124.76531661486074,54.34665512963011],[-124.7670557436486,54.34883223080588],[-124.77105026868833,54.350897666272665],[-124.77766413527777,54.35410933261461],[-124.78323601516631,54.355034265617554],[-124.78782679812392,54.35471264039918],[-124.79183721240351,54.35471662723564],[-124.79426984096155,54.35592350274438],[-124.79486443706612,54.35616235645947],[-124.79885170372037,54.356963361931854],[-124.80149065586578,54.358512619516134],[-124.80538145221811,54.36052211636069],[-124.81044080800861,54.363214926380785],[-124.81385544024933,54.364646028475086],[-124.8176623758287,54.36585682848474],[-124.81656026252139,54.368767219955274],[-124.81301553237537,54.370757802981984],[-124.80467634462944,54.37416191540885],[-124.80318523810446,54.37661139751145],[-124.80335553581612,54.38083341669241],[-124.80282976092182,54.38351637360528],[-124.80291935530043,54.38573942964346],[-124.79908424732199,54.38755652375001],[-124.79417273032426,54.38869083194327],[-124.7919069117365,54.39119524150673],[-124.7890404267447,54.39363988596935],[-124.78461779641283,54.39648114859761],[-124.78312278110971,54.39847337501478],[-124.77810564577337,54.401541447365766],[-124.77767822711917,54.40604425228473],[-124.78008661667292,54.40919553621959],[-124.78399348191161,54.41183304620118],[-124.78876701264147,54.413385864854206],[-124.79384888162001,54.41392005985729],[-124.79904473305267,54.41478669650574],[-124.79922477234771,54.41655365606019],[-124.79803157495347,54.418262296120155],[-124.79801869548439,54.419229886226724],[-124.80103598240136,54.421186036397366],[-124.80591501193014,54.42342018507853],[-124.80913287187403,54.425942588175324],[-124.81185684874164,54.4268562021592],[-124.81498725388597,54.42761241483939],[-124.81497773666342,54.42954774509825],[-124.8132039546376,54.43103584284613],[-124.8070059018108,54.43426386280839],[-124.79639792250157,54.43709873276939],[-124.7927648599297,54.43765424718224],[-124.77911587055614,54.441326683568654],[-124.76896332953632,54.44688770665678],[-124.76875528562753,54.44763827970878],[-124.76561918622237,54.449103004464874],[-124.7596363691643,54.44908719359014],[-124.75462918481199,54.44901831898353],[-124.74609902470525,54.449388022620354],[-124.7421594153689,54.451309844199606],[-124.73704770489161,54.453120863847786],[-124.73115183330006,54.45527298767246],[-124.72120259702879,54.458950547029396],[-124.71576594570061,54.46366944005818],[-124.71475573225042,54.46629319107178],[-124.71305910250491,54.46959070093539],[-124.70832399893476,54.4711177813376],[-124.69918221639266,54.473538704153675],[-124.69326234093033,54.476773007688294],[-124.69386572246572,54.48357150176927],[-124.69814835039021,54.486609982242165],[-124.70380343694443,54.48982415136603],[-124.709182129063,54.492013641485734],[-124.71250071137595,54.49328517084791],[-124.71884477846983,54.495815921087775],[-124.72529432733096,54.49846391756239],[-124.73232418660696,54.50139535223145],[-124.73857263382949,54.50409430538273],[-124.74177865145607,54.50707528081601],[-124.74302718289722,54.51078873335894],[-124.74698996976288,54.516393744485086],[-124.74863939187506,54.5176561093063],[-124.75215892306221,54.519555798993956],[-124.75911877112436,54.520889984685674],[-124.76655242354083,54.522963287902726],[-124.76949344040322,54.524569903628944],[-124.77114899313216,54.52566177015916],[-124.78493462069602,54.53192821645481],[-124.79296700040359,54.53377285647999],[-124.79924674406077,54.53465000246394],[-124.80797753660933,54.534896628092426],[-124.81701747349389,54.534634890873456],[-124.82359746972408,54.534250306372186],[-124.8316538820805,54.534784442196965],[-124.84324469395975,54.53470637464336],[-124.85218339152023,54.53307019705275],[-124.86299821813576,54.53246330173307],[-124.8710443177054,54.53225106591849],[-124.87713030294368,54.53346289556016],[-124.8882994747611,54.53576901276445],[-124.89803301581753,54.53619751054036],[-124.9058755993227,54.53666210380277],[-124.91413383603162,54.53548125364779],[-124.91866840880336,54.53331725696698],[-124.92271582853834,54.52904322673784],[-124.9247014303568,54.5253960810547],[-124.92835870284779,54.52118116168068],[-124.93537661577393,54.5151407243217],[-124.94441130859441,54.512468323442775],[-124.95550903435569,54.51020713295467],[-124.96652011907896,54.50764853761282],[-124.96986720800405,54.506915183887884],[-124.97488535751134,54.50497721569838],[-124.99078796063779,54.500432435658674],[-125.00346054087633,54.49936262174984],[-125.00866279088501,54.499306345971796],[-125.01277889361366,54.49743120594979],[-125.02073569370853,54.495443391376426],[-125.0277122495526,54.49299032504689],[-125.02918861126236,54.49207919857868],[-125.02949092594433,54.489115910627284],[-125.0326513914938,54.484374353472376],[-125.04392520927017,54.483307234503684],[-125.05794903519873,54.485082623547875],[-125.06530495027963,54.48685039499927],[-125.07687424127627,54.489142388102024],[-125.08814219406011,54.49251515039581],[-125.09460481363399,54.49770602411104],[-125.09676416284206,54.5008578725447],[-125.0967575154326,54.50747900507946],[-125.0982134345967,54.51518607669443],[-125.09929035423272,54.518320920586255],[-125.1061462079723,54.52774295120811],[-125.1140963848027,54.5347086020826],[-125.12479101254456,54.54098555649763],[-125.1308735947398,54.542758084209304],[-125.14285212874776,54.54493010716897],[-125.15740195055292,54.54646462760805],[-125.17231784024499,54.54680827611828],[-125.18911820452597,54.546687750002064],[-125.18961526022426,54.54662832479161],[-125.19913886026356,54.546171342333096],[-125.20553107884594,54.54496762713344],[-125.21368500930468,54.5439899341609],[-125.21858805601205,54.54364503125236],[-125.2225159828032,54.543239987294314],[-125.22684621225082,54.54203997218031],[-125.23321828991425,54.54100492139061],[-125.23714528343608,54.541459506172934],[-125.24275102438563,54.5416287002745],[-125.24717427066967,54.54122593066214],[-125.25296302547719,54.54070591091433],[-125.25619823880777,54.540017820472],[-125.26455651022223,54.53875129436203],[-125.27201749999244,54.53999644430477],[-125.27565376427928,54.541137931891065],[-125.27801033921942,54.541931315078656],[-125.28027404808522,54.542724106358975],[-125.28283059994924,54.54449513765054],[-125.28911993468495,54.54637743695789],[-125.29265571058485,54.54442686621925],[-125.29569337464586,54.54258980121905],[-125.29961643829367,54.54151031268459],[-125.30424351766797,54.5418413134216],[-125.30728546608998,54.544286533394356],[-125.31044962084907,54.54685779322708],[-125.31614884712094,54.547982790004674],[-125.3206583328495,54.5479810152196],[-125.32635310512111,54.547519719340585],[-125.33196238460172,54.546591811183475],[-125.34060393234607,54.54594879337738],[-125.34462555272721,54.54543283146216],[-125.3474749642531,54.544570044679254],[-125.35040698664274,54.54239958055814],[-125.35178143035124,54.54170804455676],[-125.35767286679605,54.54147032027168],[-125.36121396155475,54.5419188918403],[-125.3641499349593,54.542426933786295],[-125.37310705373123,54.54435456358245],[-125.37861818525535,54.545708621890384],[-125.38540632998887,54.54769599081055],[-125.38618891694954,54.54821059086413],[-125.39001663339805,54.54820284197043],[-125.39415252856638,54.548312968158434],[-125.39730768495879,54.54977992728534],[-125.4008452305941,54.55160704247123],[-125.40546202244936,54.55171017765303],[-125.40859871133357,54.550211266840435],[-125.4121282183318,54.548319959561994],[-125.41800625302355,54.54579467752603],[-125.4227135506273,54.544930005790015],[-125.43008222590608,54.54543040430328],[-125.43667853809191,54.54689439530974],[-125.44109492311154,54.54688775724111],[-125.44846026975429,54.546526954708426],[-125.4539686083477,54.547133987333346],[-125.45949413655737,54.549971668746316],[-125.46394197925018,54.55350319425002],[-125.46679439714543,54.554635535908794],[-125.46993993025845,54.5558855476259],[-125.47122719732441,54.55701995921666],[-125.47308715524252,54.55701901649208],[-125.4761429209039,54.556835025319835],[-125.47821265404933,54.55739932485171],[-125.48155876390075,54.5587663577819],[-125.48186375962673,54.559161848352026],[-125.4847177448252,54.5602400199758],[-125.48775674078007,54.56017213583474],[-125.49160105281574,54.56016127622852],[-125.4955299676105,54.560831534095975],[-125.49917206968456,54.56088231709105],[-125.50090790820389,54.55836294477969],[-125.50187844603751,54.55630630930243],[-125.50381810709939,54.55356374761996],[-125.50457534811139,54.54990255094929],[-125.50366670368648,54.54687966055593],[-125.50097675556107,54.54255044577109],[-125.49996978769204,54.540001954274054],[-125.49887251951719,54.53724702408632],[-125.49914752352723,54.53376305859546],[-125.50069342072047,54.53021260941464],[-125.50794500468658,54.528709971879564],[-125.51747096418741,54.52999321485758],[-125.5217304200679,54.53397880983679],[-125.5250004931935,54.53785290698799],[-125.5292674753164,54.54131863229008],[-125.53282234700166,54.544790448243695],[-125.53629266456997,54.54757198955183],[-125.54310914196314,54.5518889982729],[-125.54734616451965,54.552728965356835],[-125.5530513184084,54.553968349685086],[-125.5539482982245,54.55556632775105],[-125.55961545677178,54.561831276273615],[-125.5706372567127,54.56326801363038],[-125.57546691644826,54.56542604952714],[-125.57767364808242,54.56941147239146],[-125.57740199104629,54.5716950790452],[-125.57556360149474,54.57553213138449],[-125.57217942868672,54.580340297822836],[-125.57095761134985,54.58593539090294],[-125.57164663638696,54.586788904102725],[-125.57432478598271,54.58877816870314],[-125.57512554403644,54.59083255188832],[-125.572574234117,54.59153144058296],[-125.56786531874921,54.592348114595104],[-125.5613002273072,54.59408971309206],[-125.5567876772882,54.596779092540345],[-125.55553714477115,54.599068063521116],[-125.55556255229997,54.60101225346077],[-125.55636820504607,54.603980591293116],[-125.56153566065227,54.60829948213831],[-125.56694043144577,54.6093668865827],[-125.57056974689338,54.60809851919625],[-125.5749825493664,54.606080211014984],[-125.57694498072327,54.60538819909189],[-125.58203641708707,54.60371241832077],[-125.59050156106353,54.602880923648264],[-125.59777745148408,54.60303043346079],[-125.6035998588161,54.60425885206347],[-125.6086172628155,54.60532316526029],[-125.61383826532371,54.606217693936685],[-125.61718971996964,54.60626403847792],[-125.62053206950291,54.605620426248976],[-125.62689526057117,54.60382129297545],[-125.63248861741796,54.601293853227055],[-125.63325869302135,54.60020317101463],[-125.63861861344071,54.595900888390105],[-125.64535214816834,54.592274273453405],[-125.65350673345577,54.591043347184005],[-125.66386367872923,54.59356276359895],[-125.67639212540121,54.59630206569812],[-125.68279963773308,54.598280810049054],[-125.69013831604954,54.60235795321521],[-125.69886666978114,54.60757584885011],[-125.7071615494961,54.61078529472489],[-125.71687575799015,54.61542191785118],[-125.72015961335293,54.61866359957119],[-125.72030576688468,54.622256430558174],[-125.71454251508825,54.62502935570018],[-125.70640457262665,54.627581338829145],[-125.70143542904697,54.63194126378397],[-125.70179280671846,54.63616174752277],[-125.70519109112695,54.64082855346897],[-125.71328734952728,54.642388653755894],[-125.72305009961369,54.643369666609495],[-125.73736894038979,54.646043992323015],[-125.77139018530771,54.6564326017938],[-125.78537394286361,54.66224521501737],[-125.80006854778301,54.66969683823234],[-125.8063308328344,54.67320974809512],[-125.81303246613821,54.67945542419167],[-125.81507525679608,54.684923351645814],[-125.81660452719774,54.694054599311166],[-125.82211549232215,54.699850040555226],[-125.82913289733965,54.70660591562221],[-125.83504978606058,54.712911975306845],[-125.83984263876721,54.716654094705866],[-125.840814402736,54.71883232269482],[-125.84518048671521,54.7287283044363],[-125.84940430608685,54.739779616816996],[-125.84707028513792,54.747732050856804],[-125.83950588925076,54.750804204357074],[-125.82492341345457,54.75225354622342],[-125.81287292028907,54.75151911705802],[-125.80562651098523,54.74927716979801],[-125.79117287631776,54.74672713632312],[-125.77536135082214,54.74509567681984],[-125.76678931338478,54.7465131218965],[-125.76307920263574,54.74990138594492],[-125.76028199810392,54.754196149688624],[-125.75910179180015,54.76151310879164],[-125.76128553045096,54.7689799611553],[-125.76198195636634,54.76977863367156],[-125.76497783521091,54.77170155005891],[-125.76768923472252,54.77437638649114],[-125.76384701556847,54.775936848648826],[-125.7615015716098,54.777311966859145],[-125.7577918918077,54.78008192094975],[-125.75664697027926,54.78390502528348],[-125.75511755275683,54.78683148558675],[-125.75485408024144,54.78916917933615],[-125.75565741873567,54.79037123971662],[-125.75912625904587,54.7916054118105],[-125.77054960448307,54.794915055173874],[-125.77749284918845,54.796710568023876],[-125.78404783401885,54.7983347935529],[-125.79197403028736,54.80022975207274],[-125.8011968027583,54.801785868866816],[-125.80655370405049,54.80323674011348],[-125.80874513950835,54.80476313310102],[-125.81263653318669,54.8062831245517],[-125.81920217237882,54.80967930346758],[-125.82947531805681,54.8144151541198],[-125.83394435696083,54.81622194382443],[-125.8390088447197,54.817447038202],[-125.84290126804314,54.81930649921973],[-125.84338373482487,54.81959378963348],[-125.84380405219838,54.81981828893477],[-125.84904364311217,54.82029962464703],[-125.8528023654941,54.82051021896847],[-125.8532077593221,54.82056445420728],[-125.85986240953481,54.82241767774309],[-125.86671903999034,54.824709732604646],[-125.86732602300319,54.82515831885129],[-125.87117889765386,54.82536845347999],[-125.87562628592558,54.82505050977609],[-125.87799786986375,54.82499016913625],[-125.8806793416176,54.825655732014894],[-125.8815020699125,54.827080947178445],[-125.88340146210905,54.82849822095913],[-125.88857742910542,54.82999909738777],[-125.89434579004713,54.83185860994813],[-125.89664999721982,54.83389416963994],[-125.89988581998581,54.83793717611543],[-125.90420114667995,54.84116570556292],[-125.90560440509432,54.841775973373686],[-125.91075351638898,54.84243378564039],[-125.91374847881029,54.84326906744052],[-125.91555609934004,54.844685778979084],[-125.91600297730132,54.84748117075204],[-125.91495206844365,54.84989031674561],[-125.91183964053442,54.85259363169259],[-125.90636631592156,54.85656722125661],[-125.90384562347496,54.85949474728274],[-125.90597691235648,54.86290961870975],[-125.90867464547604,54.86460482104312],[-125.91287248416954,54.86600539841168],[-125.91853755005675,54.86796224321574],[-125.91995539583553,54.86967426374767],[-125.9211047553556,54.87297176857987],[-125.91251130742631,54.874175387570006],[-125.90768224956838,54.87523794375812],[-125.90354002841069,54.87639939440687],[-125.89887320238336,54.881116841943545],[-125.89744256103404,54.884663267167376],[-125.9002382373977,54.88509557050527],[-125.90717410839044,54.885692247357625],[-125.91632615851802,54.88762488684572],[-125.9232120585503,54.89020943608235],[-125.92712888390835,54.893212937984245],[-125.93114016747377,54.896153657567815],[-125.93504425894348,54.89807291078497],[-125.9402590645869,54.90174856437757],[-125.94640995523902,54.90753863270969],[-125.94743952985425,54.90924120616269],[-125.94948335916342,54.912601527778214],[-125.94574458573679,54.91410498455553],[-125.94596203941843,54.91518906842819],[-125.94958663566965,54.91756462484477],[-125.95342835347924,54.92188416872015],[-125.957380503182,54.926078210389385],[-125.96128822161612,54.9285162296557],[-125.96766824135952,54.93047103328926],[-125.97296945725185,54.93254173766113],[-125.97615986737424,54.93372492631039],[-125.9797724472232,54.935696457072076],[-125.98501179298235,54.93937021941472],[-125.99992177230757,54.939962393886276],[-126.00318881614355,54.94082237599367],[-126.02816252138666,54.95483042015552],[-126.04361481186253,54.96989425687683],[-126.0591663947497,54.98608489807535],[-126.0681297930238,54.99541512264914],[-126.06996387781477,54.99999193092791],[-126.06966048052102,55.00180173387273],[-126.0692066310745,55.00500019914084],[-126.06919067103651,55.00597669258047],[-126.07108808137238,55.01112679786371],[-126.07361302195754,55.01468187683596],[-126.07901963131154,55.01814551415904],[-126.08634371762825,55.02024589093278],[-126.09011317158763,55.02078072087715],[-126.10144725193354,55.02106759082199],[-126.114183999213,55.02045628086634],[-126.13112321923538,55.018208821538416],[-126.1393096290311,55.01613045183562],[-126.15147974616048,55.013625678426294],[-126.15628706535952,55.01141589228265],[-126.15657868328708,55.011594695774676],[-126.15922284927392,55.0144043225965],[-126.16281825347151,55.0200256450752],[-126.16522979004024,55.02489592724786],[-126.16695872349283,55.02902352166831],[-126.16692203588653,55.031531977753694],[-126.16669806564337,55.033073157649476],[-126.1665879457228,55.03370040741161],[-126.16485840873959,55.03643509186877],[-126.1623244607124,55.039564986300206],[-126.15597112292565,55.045082679393914],[-126.15550884751391,55.049535681231625],[-126.15657163147554,55.051541068617],[-126.15881103620478,55.05474539728045],[-126.1614367549375,55.05881816763995],[-126.16324787264085,55.06409241056673],[-126.16382130303927,55.06569524353633],[-126.16376818870037,55.069287711902135],[-126.16341390772104,55.07288953623451],[-126.16287351662638,55.07585554361883],[-126.16173811857051,55.07824897546285],[-126.16011173263723,55.08058927989488],[-126.15808072867546,55.083145085502856],[-126.15755978363904,55.08468662746047],[-126.15752505958011,55.08685465300377],[-126.1586618898701,55.09069644486256],[-126.16186444199025,55.09630935370681],[-126.1663613952477,55.10204587446208],[-126.17147414173392,55.106589890786985],[-126.17720193411799,55.11004883027009],[-126.18265538377474,55.11212828431888],[-126.19047854121087,55.11553872143366],[-126.19392576782583,55.11840910290571],[-126.195673859277,55.12161354763472],[-126.19295584499,55.12343640083309],[-126.18710930607891,55.127691733435896],[-126.18681119798862,55.12780864424598],[-126.1821615408701,55.13195443358086],[-126.18096974621119,55.13852284638205],[-126.18206230766404,55.14567023389095],[-126.18457838255436,55.15082669264833],[-126.1881899186791,55.156330835635146],[-126.18929111517403,55.16285105050578],[-126.19281214953453,55.167781849832416],[-126.20016277297472,55.170332405447915],[-126.20829288935049,55.17414439461824],[-126.21371952738396,55.17868618192822],[-126.21637295065827,55.18171857799646],[-126.22146841308768,55.18866152936714],[-126.22576781296452,55.19565051842771],[-126.22798782526833,55.20120980421078],[-126.22887515260447,55.202175711878695],[-126.23200747743981,55.20671195944589],[-126.23312533038589,55.212604680941965],[-126.23331208781308,55.213742083462066],[-126.23406221414878,55.21711809841777],[-126.23411632028346,55.220665635743636],[-126.23255077762434,55.22545250855072],[-126.23239565232295,55.229627547384936],[-126.23482492534178,55.234783197259574],[-126.23977971006538,55.23811535050064],[-126.2417798656279,55.23818315333412],[-126.24819026048222,55.23712237590269],[-126.25292856641181,55.23400417326851],[-126.25576223388447,55.23149890780079],[-126.25841493644478,55.22739930447824],[-126.25847197292681,55.22293775389825],[-126.25848510893525,55.22191643511628],[-126.2636104713609,55.227478000404986],[-126.26675516179733,55.23165501871788],[-126.27189830775372,55.23614116821601],[-126.27696351425652,55.23872803453207],[-126.28373185893098,55.24132874628285],[-126.29069473694966,55.24427802930826],[-126.30282139261769,55.25032316279331],[-126.31642423919133,55.25888975553275],[-126.31978647643531,55.2622765407179],[-126.32364326275761,55.26628906764535],[-126.32341088471169,55.26926398007205],[-126.31918911842293,55.27084264608985],[-126.3173726084189,55.27215526368547],[-126.3162257879222,55.27614482804078],[-126.31597759626358,55.28032024257631],[-126.314937649276,55.283521154335276],[-126.31662976294618,55.28449337498648],[-126.32130340095364,55.287312392647955],[-126.3261727894438,55.29047115945175],[-126.33205344217308,55.29295514163278],[-126.33882703401224,55.295723107881706],[-126.3422784029016,55.300649982086945],[-126.34323608554274,55.30453547098981],[-126.3463038879192,55.307976133710376],[-126.34875844986418,55.31244870285573],[-126.35550032747963,55.31915775212475],[-126.3629576012356,55.324377203264596],[-126.36355894574798,55.324608382822774],[-126.37003960794605,55.3276622201536],[-126.3766371297657,55.329174450383135],[-126.37880576429163,55.332778305341854],[-126.37548819475083,55.33385443119613],[-126.36875392999458,55.335487096761256],[-126.36260224586447,55.33935741904388],[-126.36379135828543,55.34067091106889],[-126.36727914591775,55.342452471453974],[-126.37415266403224,55.34693837247711],[-126.38521861770703,55.35320281703035],[-126.39299179439755,55.357855139586654],[-126.4074621854034,55.36538800819727],[-126.41982041209437,55.37410891687057],[-126.41856253859662,55.38011561694338],[-126.40960334918779,55.38345114226727],[-126.39887164132298,55.382796011765414],[-126.3942719987165,55.3809471510248],[-126.37010557442264,55.369840351414844],[-126.35972172899356,55.36528373195697],[-126.3381066217918,55.36075716037307],[-126.3191529933273,55.36068159563139],[-126.31473792110359,55.36078238532992],[-126.31171169887885,55.36248319368417],[-126.30696619972701,55.36514676041777],[-126.2990094949101,55.36745951847515],[-126.29489628988013,55.36772910028482],[-126.28587104975635,55.36769632219908],[-126.27966689161978,55.36617840301623],[-126.27609998084073,55.362970118047876],[-126.27156807987953,55.35637740287333],[-126.26671714801407,55.35149634508533],[-126.2620751963053,55.35393400793996],[-126.25842641226004,55.35695176952732],[-126.25708506479664,55.35963322122604],[-126.25545778860277,55.361508950885835],[-126.25377400997755,55.36744311737099],[-126.24921667589196,55.37056099975866],[-126.24208380998907,55.3713902742755],[-126.23303771831844,55.37266170554655],[-126.2316753891117,55.37688384060951],[-126.23447893230295,55.37741614124954],[-126.24280547105329,55.37745399496218],[-126.25273486334923,55.37772099242898],[-126.25903689396606,55.37912358482996],[-126.26613906334292,55.38081084221466],[-126.27311123739044,55.38495270491725],[-126.28329169361648,55.38911383154551],[-126.28669684291015,55.38976006541925],[-126.29541024425457,55.39121799190279],[-126.30079545657156,55.39409886558793],[-126.30745294594779,55.399896982567064],[-126.3127190215942,55.404488791068964],[-126.31691068621012,55.40667316794467],[-126.32730307682577,55.410713744117416],[-126.33581202914824,55.413378862182334],[-126.34088172299145,55.417790854664354],[-126.34442299152111,55.424554103506395],[-126.34710065700091,55.4278167150892],[-126.35124572979026,55.43457810944231],[-126.35507897150532,55.44241533677319],[-126.35831123515572,55.450433360457346],[-126.3580382321912,55.45700107059876],[-126.3570014265252,55.45991569958737],[-126.35612184626342,55.46670911610791],[-126.35624931965346,55.473571344818566],[-126.36094253981024,55.476899620154676],[-126.36705702050529,55.478745330477274],[-126.37648505240065,55.481414021435576],[-126.38752976370739,55.48344988609216],[-126.39353491123119,55.48654891701123],[-126.39701917736556,55.49045303135284],[-126.40009166389487,55.4951467657711],[-126.40137502665551,55.49766015959937],[-126.40573149687155,55.505162797433286],[-126.4091793522523,55.51317893478718],[-126.4113305770006,55.51981059003921],[-126.41040826959721,55.52157855527391],[-126.40845027501756,55.52608241947249],[-126.40509058041785,55.52979342767777],[-126.39821751040157,55.53234190267614],[-126.39155830769806,55.5334110786418],[-126.38628238099913,55.53727089191578],[-126.3875445537816,55.5418451093204],[-126.39062033989364,55.54648536000599],[-126.39342637761413,55.54816091237305],[-126.3990362048423,55.551314738574085],[-126.4036237528745,55.556191767512544],[-126.40337729310717,55.56098571011619],[-126.40266276406439,55.56201830764057],[-126.40029349737813,55.5670967724373],[-126.40065839360027,55.571091400648],[-126.4028494567854,55.57372734971849],[-126.40503446565583,55.57710689512981],[-126.40600453298272,55.58105476822238],[-126.40568476595615,55.58282972294647],[-126.41111719168187,55.58420969750884],[-126.4195776253772,55.58566895415598],[-126.42843765525924,55.587359221266766],[-126.43095616453483,55.587762731705624],[-126.43930370402369,55.590296161734734],[-126.4467389768522,55.593808847251346],[-126.45758131877916,55.59995172384656],[-126.45868437174187,55.600700281529946],[-126.46864154799613,55.604892327483945],[-126.47807581430385,55.61115518537918],[-126.4812428989751,55.61899146250445],[-126.48071928280395,55.62167230414811],[-126.47765770721838,55.62555440217505],[-126.47267689173523,55.62988266201215],[-126.47102160561388,55.63485234670632],[-126.4751318334334,55.6384564653819],[-126.47986907753356,55.639612158968774],[-126.48188663636614,55.63990906472105],[-126.49046642833288,55.64067328936015],[-126.49590933980168,55.64194210090648],[-126.50740285883604,55.64522916239256],[-126.51093452073188,55.64575243346774],[-126.51557994606672,55.646047061537246],[-126.5236538708982,55.64686486015889],[-126.52737075586587,55.650074726673914],[-126.52795413394583,55.6531632824198],[-126.52813817724349,55.65630727099734],[-126.52961600648187,55.661963427981036],[-126.53119455507033,55.66722493503994],[-126.53129552097198,55.667627684643875],[-126.5324101260591,55.667282515889376],[-126.53857600110885,55.6673010837323],[-126.54767616366665,55.66629419677417],[-126.55294493538534,55.664246320987644],[-126.55700143025008,55.661907931175584],[-126.56114708814972,55.66105628511333],[-126.56902731088567,55.66204228602651],[-126.57154988555484,55.66250570920965],[-126.57538108447059,55.663885934853255],[-126.58053520006833,55.66413105364904],[-126.58446576349206,55.66607499623027],[-126.58879546527113,55.669396718506654],[-126.59292780335262,55.67192182900416],[-126.59514905820417,55.672153255328695],[-126.59828048767855,55.67238032057332],[-126.6037361479945,55.673250230474196],[-126.61009554026867,55.6754325837538],[-126.613314874085,55.678239204932034],[-126.61532589390731,55.68081870911161],[-126.61865740386797,55.68207464542492],[-126.62360673871977,55.68344792810904],[-126.62814541872402,55.686489552271276],[-126.62854336692561,55.687464163151255],[-126.63025083235695,55.69003599634379],[-126.63124685049374,55.69403595524335],[-126.63244634545178,55.69747043310618],[-126.63678895340794,55.69901649196125],[-126.64366245429518,55.70051365967739],[-126.64688620694949,55.704116847136326],[-126.65578069024211,55.70630182415733],[-126.6605392704307,55.70493301698401],[-126.66641177748672,55.70380005315333],[-126.67065820673034,55.704368860273185],[-126.67358193909301,55.70763251039748],[-126.67599703116707,55.7122607024082],[-126.67942710415885,55.716041175047415],[-126.68387203656152,55.71849897863298],[-126.68457990387184,55.718844565343154],[-126.69216551719315,55.721195387629756],[-126.69843073987181,55.72388459344283],[-126.709963872012,55.727556391940325],[-126.71856028733951,55.730697374189496],[-126.72553751106801,55.73521795977745],[-126.73363128605892,55.73836978762343],[-126.74101857928851,55.74122958398368],[-126.74587610299648,55.7450626478187],[-126.74698566211178,55.74803971768242],[-126.74738508184177,55.752723368030225],[-126.74758513514095,55.75529367009742],[-126.74768300490722,55.75752410323324],[-126.7477806049422,55.76186011616143],[-126.74807822488546,55.76695654100403],[-126.74898040485947,55.77324105647896],[-126.74887931357605,55.77523972154792],[-126.74765909989301,55.77889365041497],[-126.74491347089864,55.783121056580434],[-126.7443034703058,55.784728485492394],[-126.74420319965648,55.78529355358022],[-126.74420308706135,55.78560715259709],[-126.74419994773997,55.78666444573564],[-126.74480566024224,55.78860518496763],[-126.74672911927225,55.791299733753874],[-126.7513892787586,55.79432744130394],[-126.75605183737892,55.79775816898667],[-126.76324757095323,55.800958409031864],[-126.77024395949665,55.8027348198287],[-126.77937180923897,55.80428267277856],[-126.78840001775292,55.806511457798344],[-126.79874454218626,55.809940900233485],[-126.79945553127546,55.81006184394329],[-126.80280077705322,55.812056650384896],[-126.80696155869195,55.81702988180886],[-126.81112452465406,55.82171625125594],[-126.8182275120303,55.825370997769994],[-126.82208459394444,55.826627268255464],[-126.83111855136003,55.82776884314185],[-126.83923809479454,55.82857536416341],[-126.84167746321434,55.83120240018723],[-126.84361065560053,55.83554417271821],[-126.84523723292382,55.83754039557597],[-126.84899529783192,55.83930725759947],[-126.85153603837702,55.84067900555856],[-126.8554959045984,55.84296401481788],[-126.858853807244,55.846390948227466],[-126.86190821453938,55.85193449448654],[-126.86333256397259,55.85421861172827],[-126.86729936390716,55.85718420939971],[-126.87167406542979,55.86101602963261],[-126.87289719079135,55.86330143758007],[-126.87432703008751,55.86764628526061],[-126.87646524537794,55.87056152294382],[-126.88094346613877,55.873765110684005],[-126.88481044185404,55.87673089327813],[-126.88583626284127,55.880388514024524],[-126.88645363970393,55.88466726093278],[-126.88717281405052,55.88780732502359],[-126.88880424446455,55.89089618431855],[-126.89359491691657,55.895638368058044],[-126.89746326663952,55.898263297547025],[-126.90255538670947,55.90089731767804],[-126.90510623879216,55.904427458355904],[-126.90714987496939,55.90757588770713],[-126.91387758455916,55.91362066480969],[-126.9165296773372,55.91642406796971],[-126.91816905900609,55.920310031125034],[-126.91624922229458,55.92408736364043],[-126.90943814052106,55.92632281546877],[-126.90201395612429,55.927639327488876],[-126.89927572833311,55.93135053655902],[-126.89541418669319,55.93307142687355],[-126.87283458313672,55.94039738934935],[-126.87131302940853,55.94137559639876],[-126.86633982934805,55.95126628018112],[-126.87082892349953,55.95800075165331],[-126.87674759592929,55.96280764439006],[-126.88541003015168,55.96542668123684],[-126.89070721396932,55.9665723898353],[-126.90160654430719,55.96758857037001],[-126.9083316209909,55.96861586208432],[-126.91333178080961,55.97066779022376],[-126.9223010716992,55.97339862262633],[-126.93443502576147,55.97647294924164],[-126.93922383590979,55.97738742103921],[-126.9498278842772,55.97909165709659],[-126.95717383172239,55.98170675620877],[-126.9612579668612,55.98422074313886],[-126.95871019399435,55.984338589375675],[-126.95137679373514,55.98451924202552],[-126.94180046723797,55.98544196173877],[-126.93538722886686,55.987102341383405],[-126.93039896892752,55.9884204051951],[-126.9236756745884,55.989741951797924],[-126.91899075268907,55.99049282748419],[-126.91827731346488,55.99055175677921],[-126.91328860401931,55.99180642020541],[-126.91329270401762,55.994154106133266],[-126.91391082390021,55.9956998664979],[-126.91720360080627,56.00004000534153],[-126.91977450902856,56.00207341978249],[-126.92056470154358,56.00361790755975],[-126.92234257838938,56.00676816293932],[-126.92477033579775,56.00797813122514],[-126.92830758398473,56.00976240001316],[-126.93021770354791,56.01149577985165],[-126.93178376556706,56.015328495079466],[-126.93399896000763,56.01698789851122],[-126.93539869485421,56.01865327510117],[-126.93697128383702,56.022261871453225],[-126.93467911712399,56.025047671980694],[-126.93331663871339,56.0272172632909],[-126.93513141729089,56.02835986908974],[-126.93817222037788,56.02958300951759],[-126.94254028699758,56.030742471913904],[-126.946491566991,56.03253215699723],[-126.94952080120704,56.03437342282378],[-126.95224511911204,56.03627067124668],[-126.95518606021311,56.03743143802972],[-126.95741069627378,56.038642343282355],[-126.95900602437975,56.040879512802505],[-126.9605901179423,56.043968043162046],[-126.96187398035032,56.04648532853114],[-126.96387667623773,56.04895234919096],[-126.96677787531118,56.052622247345916],[-126.96834696660443,56.05657107474972],[-126.9698303106058,56.05959755724845],[-126.97254175403572,56.06253398837159],[-126.97666710329909,56.06637354327011],[-126.98040566127713,56.06890763913916],[-126.98425453281892,56.07080453874697],[-126.9884961352713,56.074024519215506],[-126.99112137052474,56.07603826073295],[-126.99601907696913,56.07634947849839],[-127.00019974510255,56.07671095572138],[-127.00150798736713,56.07802691038991],[-127.00350082755993,56.08140748276384],[-127.00568983114727,56.085127004942684],[-127.00552216910212,56.0895193158019],[-127.00149552524779,56.09230216884727],[-126.99747103812074,56.09491461296861],[-126.99642637940858,56.09627594093982],[-126.99412006956595,56.10010249632224],[-126.99344612070091,56.10391627873755],[-126.99423706128661,56.105693386585294],[-126.99469174835568,56.109462515957034],[-126.99526880773935,56.11181481397461],[-126.99617617769006,56.112730725207776],[-126.9976675359996,56.11530885068397],[-127.00090646580605,56.117604395544674],[-127.00610370897192,56.118710470926366],[-127.00849202337294,56.12300196284528],[-127.01025728469607,56.12815865416897],[-127.00868531974479,56.130662368707924],[-127.00628408873953,56.13396121871943],[-127.00612845054938,56.137331917921536],[-127.00632715868748,56.137733609283046],[-127.0063230419146,56.137966637243956],[-127.00401742452206,56.141443920480924],[-127.0006957202999,56.14461550129055],[-126.99543301551502,56.147622948942136],[-126.98779290533312,56.151930107897925],[-126.98363028859927,56.15619208299295],[-126.98356201317497,56.16047615551112],[-126.98278035624254,56.16470300807385],[-126.9773366383608,56.165703739735385],[-126.9758521229122,56.166593332547656],[-126.97299628535431,56.168308871786394],[-126.9709109516459,56.17064577846454],[-126.96556034111873,56.17215609194984],[-126.95912733872248,56.17115617403183],[-126.95576557907475,56.169944753504836],[-126.94955167585843,56.16813619153347],[-126.94600636855374,56.16589533062157],[-126.94340768324506,56.16211498333016],[-126.9388213938641,56.16083153681996],[-126.93145547212451,56.16056298112321],[-126.92993611242342,56.159758598451546],[-126.92840873724937,56.15912452147325],[-126.92368629681948,56.15406883011269],[-126.9222088417758,56.15069217320206],[-126.91878308397393,56.14765217649498],[-126.91227934934673,56.14498366311183],[-126.90761974456754,56.14240027321754],[-126.90454465844873,56.136955818211085],[-126.90329681438614,56.13237655234313],[-126.90167649469807,56.13140230725146],[-126.89867045670864,56.127892862683716],[-126.89579865028186,56.122688758236805],[-126.89474159752973,56.118905639262216],[-126.89256933767746,56.114610599578135],[-126.888545223761,56.110875100046954],[-126.88662751572828,56.109607040619046],[-126.87973037740159,56.10666191026144],[-126.8754927213679,56.10355477107556],[-126.87466795872238,56.09847058384989],[-126.87361214322158,56.09480382611915],[-126.87032043880234,56.09056095725928],[-126.86541446776074,56.08504759102138],[-126.8652169938398,56.0847621839695],[-126.8646722498109,56.081217354053315],[-126.86614182230878,56.07894919817381],[-126.8657513226232,56.078028881055324],[-126.86592661530926,56.0741476071239],[-126.8652560623027,56.07174168575756],[-126.86378377483854,56.068597458053596],[-126.86066505949633,56.06600202798251],[-126.86027399776559,56.06509066469236],[-126.85992363615554,56.061894002375276],[-126.85671669469549,56.05890480598163],[-126.85176704769778,56.05607955978507],[-126.84867373593536,56.0522918989125],[-126.84649511309635,56.048793788858596],[-126.84329287375051,56.04540997508067],[-126.8386785887429,56.04121102515193],[-126.83412807503863,56.039126240307915],[-126.8307307199644,56.035456670507166],[-126.82906337611699,56.03201767894495],[-126.82698752297419,56.028635096121704],[-126.82339783751439,56.024437924398065],[-126.81743407084434,56.0216090289421],[-126.81289470709442,56.01912021746837],[-126.80905367142695,56.01744222176182],[-126.80475997097916,56.01793545994719],[-126.79903003902244,56.01875122031983],[-126.79247267146252,56.02019913209144],[-126.78614763450996,56.02022052387901],[-126.78245881997046,56.02104976281109],[-126.78131827437782,56.02195284811297],[-126.7812864504899,56.023440509212115],[-126.77912862354152,56.024224379958184],[-126.7743592834443,56.023115548991896],[-126.76968026259352,56.02240026075974],[-126.76608061410813,56.02386468454678],[-126.76609690913467,56.02786102411207],[-126.76139250360052,56.03314024122324],[-126.75540142816087,56.03664377460877],[-126.7547356768328,56.03904022339085],[-126.75517125006739,56.04252332947039],[-126.75602926712334,56.045278111786814],[-126.75830958289812,56.04848140722469],[-126.7551359422705,56.048921456935446],[-126.75176733144178,56.04884286139267],[-126.74929432490232,56.04996858997327],[-126.74280804024902,56.04787402955818],[-126.74237532668819,56.044328139523486],[-126.74090315875742,56.04157685433884],[-126.7399543006678,56.038311753467475],[-126.74152728802311,56.03638500868975],[-126.74084029018869,56.035179333113064],[-126.74081202137494,56.031747583536],[-126.73873705552984,56.02870410306643],[-126.73383832227184,56.0242253268803],[-126.73201377045503,56.02358173438976],[-126.72408836907857,56.02227412292056],[-126.7160156709661,56.022785841568286],[-126.71536261459353,56.02467123711799],[-126.7153253216906,56.026382913119036],[-126.70969587479571,56.0270865345028],[-126.70151168771287,56.02811766001623],[-126.69345269163502,56.02806334788733],[-126.68919772443218,56.02666178276112],[-126.6862755237416,56.02520808036601],[-126.68504955762853,56.02525950139579],[-126.67789125599154,56.02595202666962],[-126.67104529490639,56.02647224798398],[-126.66947964499367,56.028003795665974],[-126.67085414763764,56.0302993947745],[-126.6714874005819,56.03367416485712],[-126.66606115502584,56.034374770122746],[-126.66137647214875,56.03405874603939],[-126.6556969872982,56.032538020054446],[-126.64904612435456,56.03339654114057],[-126.64767398073184,56.035213565087986],[-126.64825231025843,56.03670701964894],[-126.64938599566183,56.04042880378849],[-126.64605729251153,56.042909916038994],[-126.64314272321312,56.04529027993412],[-126.63946601124321,56.049547166068116],[-126.63684661651058,56.052329125422204],[-126.6324205986131,56.05377595195463],[-126.62606756788556,56.054649694820306],[-126.62288845302318,56.0553104728806],[-126.62294231373738,56.057191922072384],[-126.6249460337619,56.05875018210431],[-126.62842663675785,56.062541260012146],[-126.62622492786303,56.064810187169286],[-126.62258794190014,56.067354930291835],[-126.62223111260882,56.06934592498821],[-126.62347675549124,56.07267316103775],[-126.62355536241277,56.074080708852456],[-126.62355391760877,56.07411655832037],[-126.62353289920279,56.074251070323626],[-126.62349845124994,56.07442597086081],[-126.62347750336926,56.07456496282075],[-126.6234751097378,56.07466802142612],[-126.62347853366985,56.07482033480137],[-126.62348569403741,56.075018552933464],[-126.62352604379477,56.07521660835077],[-126.62361861497008,56.07540768724485],[-126.62363097039206,56.07542554785507],[-126.62372274646776,56.07556734728746],[-126.62379892719508,56.0756767409849],[-126.62386173702144,56.07576715895966],[-126.62391758577347,56.07586321143624],[-126.62397398457172,56.07599398352767],[-126.62402048332972,56.07613488485962],[-126.62404869691173,56.07626467515843],[-126.62407470354334,56.07638215545806],[-126.62408669709401,56.07650418482888],[-126.62405116461473,56.07667461067827],[-126.6239540742321,56.076896862044116],[-126.62386157093934,56.077218777586864],[-126.62389397925206,56.077740573957584],[-126.62401526167466,56.078219371484074],[-126.62408841748258,56.078391504252686],[-126.62411845447728,56.07844624058926],[-126.62416121910687,56.078541237204306],[-126.62419793143766,56.07863626351437],[-126.62425004469378,56.0787502555236],[-126.62435517975489,56.07897151457707],[-126.62447678772261,56.07921733436957],[-126.62461989412856,56.07935888135534],[-126.62481551541295,56.07944864667663],[-126.62492972499145,56.07954441214492],[-126.62494205806071,56.0797515657671],[-126.62493668182461,56.08017386121654],[-126.62492950640409,56.080609606496516],[-126.62492618425983,56.08084371897834],[-126.62492377133762,56.08107222662474],[-126.6249174709997,56.08143628277577],[-126.6249120975891,56.08179585410828],[-126.62489947252143,56.0822047445418],[-126.6248737411761,56.08261257934455],[-126.62486344170287,56.08278848220482],[-126.62486164251041,56.08280193198132],[-126.62485489154408,56.08281988639709],[-126.62485912939775,56.08283330651552],[-126.62487284110276,56.082873561966935],[-126.62489073406581,56.08298660195808],[-126.62489451947427,56.083161315567445],[-126.624892786297,56.08330581418478],[-126.62473415837272,56.08345556383229],[-126.62433833348241,56.083623278967714],[-126.62398197271861,56.083741515822126],[-126.62354164389761,56.08383216137196],[-126.62294630302975,56.08391908434876],[-126.62256024477603,56.08406882483282],[-126.62228323012054,56.08436924129337],[-126.62193654400068,56.08465543682034],[-126.62141046869381,56.08486074218039],[-126.62079997025609,56.08507317788082],[-126.62047898845799,56.08520243297966],[-126.62032401900223,56.08526703329703],[-126.62014596647039,56.085335106200375],[-126.62006793810723,56.085364608632695],[-126.62007110590152,56.08537355381856],[-126.62015614965686,56.08547058605497],[-126.62030607666085,56.08566138845326],[-126.62037731476354,56.08577528906153],[-126.62037752640539,56.08578872897383],[-126.6202707311738,56.08584525371689],[-126.61996510914061,56.085992353876335],[-126.61962231409544,56.08614299461451],[-126.61939198359373,56.086214681336735],[-126.61920940720549,56.086251412746705],[-126.61899749998682,56.086279325996834],[-126.61878961603439,56.08630609924277],[-126.61866113076114,56.08632688561943],[-126.61856570338314,56.086338550486694],[-126.6184241268973,56.086358280203655],[-126.61825535544911,56.08637702186415],[-126.61820229648299,56.08639520099706],[-126.61813023187763,56.08642019293648],[-126.61808970827619,56.08653127763763],[-126.61809294600396,56.08654470284965],[-126.61812970733102,56.08670693563579],[-126.61825822564539,56.08688104335423],[-126.61842728991807,56.08700903060978],[-126.61856850776934,56.08709346998372],[-126.61868014889589,56.08715341132047],[-126.61875010232706,56.087186673446794],[-126.6188058959828,56.08721440402247],[-126.61894729284641,56.08731116298918],[-126.61913320119044,56.08748611071437],[-126.61924182260789,56.087609910792125],[-126.61926452455093,56.087645642815396],[-126.61928939759501,56.08769144497965],[-126.61934631928119,56.08779085491604],[-126.61942244105072,56.08789577173867],[-126.61950386852155,56.08801858395492],[-126.61974668635042,56.08810028709257],[-126.62003868151317,56.088172789448436],[-126.62000765095964,56.08831183056888],[-126.6198689266649,56.08838531180008],[-126.61985296656938,56.08839435020692],[-126.61989351889072,56.08841319395715],[-126.61993601338641,56.08842754791104],[-126.61995628076617,56.08843640977774],[-126.61997261101145,56.08845089122798],[-126.62001416171734,56.08846973007498],[-126.62007921846731,56.08851085592736],[-126.62009999719676,56.088552197592826],[-126.6200904276166,56.0885836064745],[-126.62010387046618,56.08860594254253],[-126.62012527729561,56.0886237594675],[-126.62013348656454,56.08863380016718],[-126.6201469999819,56.088660616206624],[-126.62020037755066,56.088791405327214],[-126.62025669204823,56.08904426883144],[-126.62020781882282,56.089264042805205],[-126.62010424159378,56.08939671719082],[-126.62003827173059,56.089490005396854],[-126.61999121868901,56.08956976041624],[-126.61992173248628,56.08969442794821],[-126.61985826786692,56.089819066105505],[-126.61982293788397,56.0898763623412],[-126.61978426196337,56.08991239334334],[-126.61970728144057,56.09000909527091],[-126.6196218870747,56.09014728110769],[-126.61954123253504,56.09026640244152],[-126.61945535997592,56.09037322825031],[-126.6194338785978,56.090479740490764],[-126.61950987057476,56.09063954196734],[-126.61959423281911,56.09082058417695],[-126.61962662642786,56.090960436487975],[-126.61962329386131,56.09106798046802],[-126.61958968304238,56.091171191595755],[-126.61953873056882,56.091322650645125],[-126.61950861173167,56.09151993154759],[-126.61948741735475,56.091708208351235],[-126.6194681651349,56.09189199538231],[-126.61948179770795,56.092054340758594],[-126.61954237154801,56.09219405593551],[-126.61963151314123,56.09235827374573],[-126.61972265070293,56.09252136170286],[-126.619797051739,56.092644208214],[-126.61984570283201,56.09273021745997],[-126.61987065026472,56.09278049957692],[-126.6199142775783,56.092866533279604],[-126.6199596006441,56.09293239723989],[-126.62001421901739,56.09301277694761],[-126.62011384534088,56.09313998069635],[-126.62015899271564,56.09319464463495],[-126.62017446769396,56.093218090916594],[-126.62023477437023,56.093277161260936],[-126.62034493421002,56.093369590960634],[-126.6204296415303,56.093443103303635],[-126.62048068723331,56.09348877771933],[-126.62051750161487,56.09352556087182],[-126.62056739185947,56.09356228023556],[-126.62062766281281,56.09361799033494],[-126.620657335995,56.09364920787579],[-126.62067065735403,56.093663703953894],[-126.6207042152197,56.09368594187765],[-126.62079282614418,56.09375159437544],[-126.62090275910053,56.093829463661464],[-126.62094855363289,56.0938617225432],[-126.62096877106482,56.09386722427833],[-126.62100803095575,56.093867032653485],[-126.62107965798391,56.09387788383665],[-126.62125750115078,56.09392181882935],[-126.62148115594469,56.093998012187164],[-126.62162763264953,56.0940320191438],[-126.62170524430957,56.094038360408],[-126.62175248691885,56.09403476929951],[-126.62179988707057,56.09404013806137],[-126.62187769486911,56.094059919249034],[-126.62195975692649,56.09409312058017],[-126.62204085767014,56.094129686806276],[-126.62215339860012,56.094181780394685],[-126.62230851065767,56.09425158698483],[-126.62251654539094,56.0943592172605],[-126.62273529956907,56.09450711771082],[-126.6229181603641,56.09467759519323],[-126.62305584539597,56.094855014163954],[-126.62316601016803,56.09501016614126],[-126.62324898076368,56.09510160652608],[-126.62333355542813,56.09516615701319],[-126.62349736528817,56.09527736266545],[-126.62366406173639,56.0953795933022],[-126.62376869667506,56.09543956484799],[-126.62385218740614,56.095499639987544],[-126.62389504581402,56.09553639257866],[-126.62409037773993,56.09553991493724],[-126.62448501442219,56.09554357900602],[-126.62470147488203,56.09554699672188],[-126.62472363564409,56.09554800799592],[-126.62475663953056,56.09566097435195],[-126.62475841064477,56.09589954341093],[-126.62467925570532,56.096050023241304],[-126.62461043604058,56.09608956402576],[-126.62461079127691,56.09611196395123],[-126.62463719156285,56.0961263954314],[-126.62465853347753,56.09613973165689],[-126.62468910197373,56.09616310333084],[-126.62474900965488,56.09619529160792],[-126.62482495230184,56.09622404086353],[-126.62487759327496,56.09624282376407],[-126.62495886110008,56.09628946812549],[-126.62509004324299,56.09637282998431],[-126.62517231005793,56.09641946930628],[-126.62520884709643,56.096438331198776],[-126.62530010982863,56.09648044590148],[-126.62541287352369,56.09654485653184],[-126.62543970124806,56.09658616776017],[-126.62544221229986,56.09661751776299],[-126.62552779229051,56.09668206191884],[-126.62565874733765,56.09675198332538],[-126.6257489416203,56.09678962263504],[-126.62586135267333,56.09683275302246],[-126.62609085845872,56.09689546869405],[-126.62639458313336,56.09694213741866],[-126.62670787442025,56.09702012065832],[-126.62691484817199,56.097122148786276],[-126.62694239100912,56.09720825956228],[-126.62681141689552,56.097327633776736],[-126.62664892744101,56.09749084636225],[-126.62669558590089,56.09763958778125],[-126.62695860906636,56.09772117828339],[-126.62717575772692,56.09776603158797],[-126.62723832475118,56.09777580393511],[-126.62723666838313,56.097798213790725],[-126.62721650608074,56.097986487387004],[-126.62715923576317,56.09830935406294],[-126.62708874235152,56.09849675565125],[-126.62704226338163,56.09854962869092],[-126.62701578929492,56.09859344245845],[-126.62700916314779,56.09862035714593],[-126.62698960216449,56.09865629624918],[-126.62693644144565,56.098731603873134],[-126.62687702709614,56.09879350126654],[-126.62676539495344,56.09886349644809],[-126.62661880725322,56.0989504649508],[-126.62653190249736,56.09905618087134],[-126.62647434073716,56.09917183303507],[-126.62643019229301,56.099243735827024],[-126.62641089768844,56.099296474809236],[-126.6264021143563,56.099377164171074],[-126.6264072816371,56.09951266902829],[-126.62642310118262,56.09968396417786],[-126.62642990767375,56.09979593919047],[-126.6264327046759,56.09997177880742],[-126.62642409859245,56.09999982330718],[-126.62634852256093,56.10024885428605],[-126.62613387023671,56.10036079913702],[-126.62582839272861,56.10033317967574],[-126.62544040658732,56.1003070851364],[-126.62507622293298,56.10032231564888],[-126.62482137614516,56.10037621127512],[-126.62468849985282,56.10044070852103],[-126.62456821389172,56.100600351080196],[-126.62441149741267,56.10100211074375],[-126.62433920095908,56.10158490996363],[-126.62425776327193,56.10216327375595],[-126.62409268222126,56.1025460327798],[-126.62392180157443,56.102754086627215],[-126.62372955607744,56.102947683850836],[-126.6235124824086,56.10322652899138],[-126.62334070114734,56.10369556660976],[-126.62326729227415,56.1043366156455],[-126.62325875724558,56.10500646933946],[-126.62324892185582,56.10565728808178],[-126.62324486087807,56.10629127738716],[-126.62327403785403,56.10686237915656],[-126.62335907472158,56.10727303489032],[-126.62344140009394,56.10751233045544],[-126.62346540230854,56.10775639206637],[-126.62343492455186,56.108056724982916],[-126.62345867476333,56.108348951676895],[-126.62356359676677,56.108616138789735],[-126.62365343096137,56.10882067482213],[-126.62366913215102,56.10904909595618],[-126.62358715929108,56.1092768756079],[-126.62351023893069,56.10937918052742],[-126.62344914411344,56.10946348646373],[-126.6234160184651,56.10966078435108],[-126.62346308304272,56.10989913275321],[-126.62351222299581,56.11001314111228],[-126.62353091424886,56.11004889239498],[-126.62360801266296,56.110212047675915],[-126.62374271769883,56.11051605187324],[-126.62386584240451,56.11078763014126],[-126.62396200849412,56.111010056547215],[-126.62407421041556,56.111290648939615],[-126.62419020061385,56.111747076788255],[-126.62426191722044,56.1123325321193],[-126.62430357665714,56.11280052548957],[-126.62432685922363,56.112998667279435],[-126.62432475391783,56.11305692230442],[-126.6243281380447,56.11307930751362],[-126.62440972831546,56.11308114748248],[-126.62465062799694,56.11309452670561],[-126.6250057139566,56.11313310693562],[-126.62536007025963,56.113189611212945],[-126.62568564342357,56.113272018080615],[-126.6260061912312,56.11335444883961],[-126.62629328893303,56.11342360229699],[-126.62649653468706,56.113476366481464],[-126.62661597966708,56.1135149817207],[-126.62667871420918,56.113533714424506],[-126.62678628999568,56.11358582903195],[-126.62703724713671,56.11366187933165],[-126.6272797390791,56.113712208765165],[-126.62750034618655,56.113779446994236],[-126.62779037442134,56.113905707318764],[-126.62800437154144,56.113999859479044],[-126.62816762959919,56.114070739770135],[-126.62833556394307,56.114307370304],[-126.62866035107874,56.11471796039297],[-126.6292358978204,56.115128430551394],[-126.62960273882763,56.115459284017035],[-126.6296553464181,56.115600155421],[-126.62960145141265,56.11563066448255],[-126.62949061414263,56.11569057751382],[-126.62943571992676,56.1157210914461],[-126.62940018366129,56.115766070842575],[-126.62932000385429,56.115853834446064],[-126.62925826692312,56.11589782323694],[-126.62917148423016,56.115887051269894],[-126.6289970631883,56.11587447212472],[-126.6288527114681,56.11585390355624],[-126.62879113038564,56.11584412692422],[-126.62878746010354,56.11586654689684],[-126.62878111849069,56.115911381907964],[-126.62873750724789,56.1159552809115],[-126.6286835394983,56.11598130957306],[-126.62864828390482,56.11598036359215],[-126.62853113382421,56.11602350557575],[-126.6283785154885,56.11611498650146],[-126.62828899149295,56.11618487410156],[-126.62822128221578,56.11623337223223],[-126.62813844140057,56.11628082490008],[-126.62807354648794,56.116315867957994],[-126.62804561766495,56.116332807135265],[-126.62801863418929,56.11634638136587],[-126.6279836641555,56.116363355266465],[-126.62793962274615,56.11638037390492],[-126.6278706832478,56.11641543681009],[-126.62780159898317,56.116440419561386],[-126.62775244274049,56.11645298299034],[-126.62771617165672,56.11645204175683],[-126.62761974638525,56.116468198487105],[-126.627403884654,56.11650958587969],[-126.62718820264442,56.11656329303365],[-126.62703579311443,56.11660548725523],[-126.62688835516592,56.11664317644194],[-126.62667894575283,56.11671141303798],[-126.62641426326556,56.11678664183818],[-126.62623169417877,56.1168323437729],[-126.62611131206911,56.116862058310595],[-126.62595681489859,56.11689978113259],[-126.62584030030517,56.11691939556593],[-126.62570371587094,56.11694358890866],[-126.6254346636646,56.116997555388345],[-126.62511493509827,56.117094333655736],[-126.62488673207412,56.11718394132376],[-126.62474381748393,56.11725408848301],[-126.6246069430662,56.11732308575306],[-126.62452805275635,56.11736603630607],[-126.62450028157723,56.11739305475724],[-126.62444263615154,56.11744150149667],[-126.62438181757297,56.117479882943634],[-126.62434786173277,56.11749797095782],[-126.6243048164874,56.117514983446384],[-126.62420881345359,56.11755801772217],[-126.62408466569208,56.11760455018049],[-126.62395247886883,56.117652242011616],[-126.62381243043143,56.11771229324291],[-126.62369648022286,56.11776774588864],[-126.62359350544997,56.11781529422351],[-126.62344222814086,56.11786643931143],[-126.62325216147691,56.11794801661911],[-126.62307750958324,56.11804855976519],[-126.62288914921616,56.118174931868545],[-126.6227070057036,56.11831135411485],[-126.62260192017146,56.118417156770946],[-126.62252079162757,56.118509401086584],[-126.62242959180705,56.11860169459308],[-126.62231140449673,56.118707561070075],[-126.62219323266417,56.11881342736267],[-126.6221465107063,56.11885285893682],[-126.62209087444074,56.11890129479411],[-126.62196564367618,56.119007195370784],[-126.62186811567943,56.11908159791588],[-126.62183162176636,56.1191299401536],[-126.62183361163169,56.11919265561737],[-126.62186174930228,56.11925188308352],[-126.62190728296031,56.119328947048444],[-126.6219582867128,56.11943398659354],[-126.6219828741288,56.11952347388795],[-126.62198116076091,56.11954252383521],[-126.62197637459668,56.11962207380373],[-126.62198082139314,56.11971277959449],[-126.62204607343034,56.119762864961544],[-126.62216230738181,56.11978805911645],[-126.62225139428334,56.11981674613373],[-126.62228190891223,56.11983563856351],[-126.62230427806215,56.11984897033785],[-126.62233579180648,56.11986785787141],[-126.62237120851447,56.119877765573925],[-126.62243120512036,56.11991443532675],[-126.6225108589262,56.11998349163246],[-126.62258700366704,56.120021202447134],[-126.62265657588452,56.120026462664754],[-126.6227173755418,56.12004968724281],[-126.6227876904921,56.120100867572205],[-126.62286282053925,56.1201385831897],[-126.62296714943936,56.120176155889915],[-126.62311828365573,56.12024262185145],[-126.62322613906333,56.12031153969323],[-126.62327405151613,56.12034826821656],[-126.62332061025889,56.120362601485056],[-126.62337401418621,56.120363460100805],[-126.62343749108727,56.120365389461114],[-126.62352831062378,56.12037614562464],[-126.62367403014635,56.12041911549873],[-126.62385652171058,56.12049438773103],[-126.62398107924786,56.120600186188305],[-126.62405864716476,56.12072749664891],[-126.62413743234428,56.120805516986145],[-126.62422853728108,56.12083419275599],[-126.62430525806012,56.12084501750022],[-126.6243596617531,56.12084587080334],[-126.62440716561528,56.1208557186726],[-126.62444256761914,56.1208656258816],[-126.62454000014147,56.12091219189406],[-126.62472803719572,56.12101879833093],[-126.62495213560773,56.121176751804434],[-126.62512489821586,56.12133719716193],[-126.62519347112247,56.121405186176524],[-126.6252017596814,56.12141970669602],[-126.62519808683497,56.121442126611456],[-126.62517380698144,56.1214993706316],[-126.625145674609,56.12156671441084],[-126.62513825766725,56.12160707421423],[-126.62514809680498,56.121656310040414],[-126.62515750610177,56.121741390988184],[-126.62516866294328,56.12180966194517],[-126.62518167406247,56.121867842950465],[-126.62521167174783,56.1219808251567],[-126.62525772831621,56.1221530934932],[-126.62530052436395,56.122310816612895],[-126.62532346436107,56.12242383347714],[-126.62534194698117,56.122508869874544],[-126.62537850742041,56.12259157728815],[-126.6254652116682,56.12272332252866],[-126.62556623088253,56.12286843852134],[-126.62564042266895,56.122973362867064],[-126.62569072722795,56.123032480683555],[-126.62572181577983,56.12308721254257],[-126.62575096123321,56.1231464343244],[-126.62576714748101,56.123214680553346],[-126.62576541601457,56.123295335889516],[-126.62577511195381,56.123398336961074],[-126.62580259945247,56.123479968786214],[-126.62581921351686,56.12351124978257],[-126.6258174127895,56.12352469977269],[-126.6258182854088,56.123579580135605],[-126.62581883729106,56.12367814578054],[-126.62582796357805,56.12374530662287],[-126.62584078040913,56.12379116752008],[-126.62585897983098,56.12385828376511],[-126.6258698356143,56.1239713600078],[-126.6258611169065,56.12405653009564],[-126.62580310532628,56.124145302757405],[-126.6256856226481,56.12429597289317],[-126.62555014949703,56.12445457198039],[-126.62543901175535,56.124560406911115],[-126.62534363341594,56.12464376244003],[-126.62524925386059,56.12472711299339],[-126.62516195049112,56.12481154882952],[-126.62507880026548,56.12490380488553],[-126.62496197216528,56.12503206924905],[-126.62483909976062,56.1251603631695],[-126.62475480660723,56.125243663863316],[-126.6246723870664,56.1253191146416],[-126.62458413526372,56.125406915027206],[-126.62450183945771,56.1254902057583],[-126.6244225198556,56.12557012155505],[-126.62437192129839,56.12561853379221],[-126.62433713854543,56.12564894693037],[-126.62428438311278,56.12568840894408],[-126.6242097356996,56.12574589978985],[-126.62409313613799,56.12582487804103],[-126.62394758338337,56.12592079950187],[-126.62382829019091,56.12602107252814],[-126.62373313565536,56.126118987009896],[-126.62368287440768,56.12618979923794],[-126.62366659282469,56.12624252348677],[-126.62362052017231,56.126323396038515],[-126.62355248053943,56.126415577109505],[-126.62349474580232,56.12652338902878],[-126.62347549925104,56.12664333352955],[-126.62346691271495,56.12680130909979],[-126.62346292147578,56.12699398515591],[-126.62346546837942,56.127027575567055],[-126.62304240020434,56.12702964634746],[-126.60271189982407,56.127127500497686],[-126.60000042709856,56.13250555630207],[-126.59186445852556,56.14863270844461],[-126.59185857988156,56.148643936763506],[-126.60000012152531,56.153168033674326],[-126.60091615490299,56.15367672452053],[-126.60743870723385,56.16492751996414],[-126.60302344126039,56.17244314929009],[-126.60000015574035,56.173455435018724],[-126.56428289118715,56.18541106212802],[-126.56424558568776,56.18548291445319],[-126.56411938416309,56.18568733343193],[-126.56398056109221,56.18585596448657],[-126.56389492759287,56.185934751125785],[-126.56367510737745,56.186083577951095],[-126.56330944664234,56.18626441188712],[-126.56295272168428,56.186293989996166],[-126.56262237015214,56.186333531771695],[-126.56256293727144,56.186339394539],[-126.56240620262712,56.186526024714915],[-126.562352991632,56.186614748347445],[-126.56240601442123,56.186794852812234],[-126.56252514073336,56.18694106228529],[-126.56251697622352,56.18707551195323],[-126.56248293178287,56.187093583940396],[-126.56209651731984,56.187094167619485],[-126.56183339907243,56.18717933563144],[-126.56181386251114,56.1872242262523],[-126.56185074188942,56.18740440210225],[-126.56187487462617,56.18753982955958],[-126.5617756136612,56.18758283118759],[-126.56175856697187,56.18759074707734],[-126.56166257278181,56.1875799687579],[-126.56136093907169,56.18751184981581],[-126.56116314467705,56.18757992716591],[-126.56101707523693,56.18759513131873],[-126.56100002838947,56.187603047107075],[-126.56098225256424,56.187630008035484],[-126.56099512647693,56.18768371686956],[-126.56120875516122,56.18787655664856],[-126.56131350004483,56.18800490877227],[-126.5613213452376,56.18813032702079],[-126.56126549485498,56.18824706470679],[-126.56106771273643,56.188315141857636],[-126.56089034106311,56.188329363454194],[-126.56086989780371,56.18838209873063],[-126.5609142152494,56.18844687044029],[-126.56117879723824,56.18860476268286],[-126.56144325332735,56.188753694034624],[-126.56177643665144,56.188840715831624],[-126.56193113444093,56.18893412391237],[-126.56196638259264,56.18914118979911],[-126.5620542302699,56.18928641758099],[-126.56183538517435,56.18943523702113],[-126.56173183530416,56.189532023030175],[-126.56178500330314,56.18972220835979],[-126.56205186321067,56.18982632337063],[-126.56237544667482,56.18980585495011],[-126.5625555867096,56.18977257714015],[-126.56290883736442,56.18977997937367],[-126.56309029741843,56.189980799039404],[-126.5628085137939,56.190101895179936],[-126.56276968057303,56.190208477488504],[-126.56262108031152,56.19025953830875],[-126.56226606397009,56.190270064885496],[-126.5619212890491,56.190362313757575],[-126.56185595650925,56.19037940332292],[-126.56148466784973,56.190381038484404],[-126.5612927778931,56.190368441765926],[-126.56104193131459,56.190255293773525],[-126.56089496278277,56.190279462633995],[-126.56096163578535,56.190496471717964],[-126.56102458984284,56.190524197680894],[-126.56105362382205,56.19057895560205],[-126.56104031142524,56.19077727455864],[-126.56101182455971,56.19097342004823],[-126.56099417514862,56.191009341374325],[-126.56061294641233,56.191163353381945],[-126.56052907283876,56.191225328378444],[-126.56052656533475,56.19126118309192],[-126.56058863111802,56.191297874109885],[-126.56092261131487,56.191368093076264],[-126.56105015634868,56.19139665506758],[-126.56135020145527,56.191492784860685],[-126.56151941837611,56.19161301245184],[-126.56144742023059,56.191728701335826],[-126.56121239963497,56.191876470870206],[-126.56107755557039,56.19197227398913],[-126.5609369351187,56.19215883175462],[-126.56088018887468,56.1922834141791],[-126.5610384222581,56.192340964261085],[-126.56140884042743,56.19234829523869],[-126.56160086816388,56.19236985215686],[-126.56159836156488,56.192405706907564],[-126.56149567615155,56.192493528066564],[-126.56113083483294,56.19266539137079],[-126.56079108323688,56.19268592764041],[-126.56040199421373,56.192714520605065],[-126.56004355770632,56.192769860573456],[-126.55973358408124,56.19282722709025],[-126.5593615102597,56.1928467812717],[-126.55906693312414,56.19292200049416],[-126.55875027059624,56.193076844022436],[-126.55871143935377,56.19318454526702],[-126.55878979400259,56.19323124688428],[-126.55888152896947,56.193295811683264],[-126.55923593928695,56.19331105996782],[-126.55940930153197,56.193368545766994],[-126.55948414783954,56.19345110607368],[-126.55946649591881,56.193487027223625],[-126.55911766926341,56.193650973695966],[-126.55901422907628,56.193756718031835],[-126.55901717725719,56.19396392664062],[-126.55921628921335,56.19412883105344],[-126.55924281447173,56.19421944419459],[-126.55884300515723,56.1944183370709],[-126.55881780826286,56.194561822395315],[-126.55880088539185,56.19457869828654],[-126.55859728561688,56.19473752655815],[-126.558576979482,56.194799221906116],[-126.55870987848688,56.19499129992511],[-126.55884352508433,56.19516433256255],[-126.55894589994183,56.195337502117056],[-126.55914338299324,56.195529296711996],[-126.5592447429773,56.19570247051055],[-126.55937852192773,56.19588446301562],[-126.55939761752566,56.19609160098561],[-126.55948548719893,56.1962379509844],[-126.55973457253171,56.19636791194685],[-126.55973828655134,56.19655719552796],[-126.5596891998,56.196583173626806],[-126.5593485239746,56.19661267093033],[-126.55914729766585,56.19672556493892],[-126.5591569008292,56.19683305414153],[-126.55933915226264,56.19701707452822],[-126.55931141443018,56.19719529489564],[-126.55929985410035,56.19737568457271],[-126.55927225934073,56.19756398539045],[-126.55925357223869,56.1975987909812],[-126.55921964472539,56.19762582255806],[-126.55914270586575,56.197821060387064],[-126.55904785665984,56.19803541868703],[-126.55877975075077,56.19820125079178],[-126.55859566198916,56.19831406888687],[-126.55846153576265,56.19839194432355],[-126.55815076901008,56.198467232282894],[-126.55788666015805,56.19856023732777],[-126.5577049825456,56.19862935897442],[-126.55768216217494,56.19872802915909],[-126.55787018316536,56.19882129697233],[-126.55788469305948,56.19884811635833],[-126.55786691000809,56.198875076972755],[-126.55761808626426,56.198978095681596],[-126.55760028707321,56.19900393621118],[-126.5576462478505,56.19904181933038],[-126.5576938133772,56.19905169245483],[-126.55804814787496,56.19905798368253],[-126.55836779060391,56.19910923052811],[-126.55842988269144,56.19914704276001],[-126.5584095740144,56.199208738189526],[-126.55832555243894,56.19926175154296],[-126.55814547670353,56.19930286384679],[-126.55781273961999,56.199466736480524],[-126.5576998079418,56.19947395096749],[-126.55749398478886,56.19940652339771],[-126.55723655920963,56.1994020475668],[-126.55715340991371,56.19944497526553],[-126.55713222479552,56.19951675538551],[-126.55731269919113,56.199717588419716],[-126.55732155094697,56.19984412317276],[-126.55720520096239,56.19989503678627],[-126.55704381133988,56.19990134222225],[-126.55697593336795,56.199954284191676],[-126.55697416908802,56.19997221379633],[-126.55697860283462,56.200000197409224],[-126.55698410148798,56.20003153672935],[-126.55699791011503,56.20022301677258],[-126.55686635367839,56.20923944478546],[-126.55688375610328,56.209541802062176],[-126.56469190794182,56.22145811811559],[-126.56508409975598,56.221625521922],[-126.56530953403644,56.2217835820708],[-126.56537628831153,56.22186057534762],[-126.56547241422595,56.221944159249546],[-126.56561973800008,56.222076801927706],[-126.56589684326873,56.2223164015938],[-126.56621177351016,56.222587196554706],[-126.56635083017322,56.22270643355489],[-126.56647500778271,56.22284365853413],[-126.56678014034257,56.22320522624379],[-126.56709343770396,56.22357123755064],[-126.56725570313411,56.22375869850814],[-126.56733768436936,56.2238412238367],[-126.56745902581149,56.22399190213137],[-126.56758153406501,56.224223224575965],[-126.56761991130551,56.22436307031841],[-126.56761328798825,56.22439446344522],[-126.56765712277344,56.22442227179273],[-126.56777641263933,56.224501270555194],[-126.56790082494592,56.2245847269462],[-126.56795892719543,56.22462143276748],[-126.56799575050384,56.22465375272644],[-126.56804892542847,56.22469944148534],[-126.56811436417877,56.224755156824386],[-126.56818597551089,56.22481868557652],[-126.56825039675356,56.224874405379396],[-126.56830539735535,56.2249066443323],[-126.56837361491577,56.22494442506934],[-126.5684774279043,56.22499996935634],[-126.56859040265986,56.225061073409826],[-126.56865684446461,56.22511566388528],[-126.56870315482581,56.225175944679506],[-126.5687382029986,56.22522507432135],[-126.56878323599157,56.2252663185417],[-126.56885353922155,56.225308570266286],[-126.56894706071697,56.22535071846792],[-126.56912400594412,56.22543505969226],[-126.56936700572345,56.225548229493334],[-126.5695684489437,56.22565038295508],[-126.5697160544344,56.225730373762964],[-126.56983488094316,56.22577688891609],[-126.56988870349086,56.22579681101535],[-126.56988277448879,56.22580579854232],[-126.56988025716133,56.225841654009834],[-126.56990559915431,56.225917709858535],[-126.56994819809475,56.22599928931615],[-126.56997303620513,56.226040623306616],[-126.57001800637852,56.2260773868664],[-126.5701077517898,56.22613747322384],[-126.57017117614693,56.22619319656139],[-126.57020125104181,56.22624794870994],[-126.5702224243293,56.22631506207392],[-126.57023527476117,56.2263654106294],[-126.57032265053344,56.22647031273268],[-126.5704928920942,56.226648773221974],[-126.57058921970251,56.2267446740922],[-126.57059742890277,56.22675359845922],[-126.57060969386939,56.22676362482902],[-126.57064758828729,56.22680041981289],[-126.57069592331409,56.2268595707645],[-126.57063870200831,56.22695279758913],[-126.57047566304391,56.227062179187605],[-126.57043713958848,56.227191166615974],[-126.57051802647166,56.2273364224128],[-126.57055847821681,56.22740905025918],[-126.57056885383814,56.22742804614483],[-126.57079354551584,56.227531214027714],[-126.57128796185309,56.22770710351391],[-126.57190528045453,56.22786227816703],[-126.57253178281738,56.228023009345904],[-126.57287359463972,56.22819173618324],[-126.57296615378172,56.22830557441362],[-126.57311692865575,56.22839450829633],[-126.57332028520277,56.22848768640499],[-126.5734127681482,56.22852647570781],[-126.57345442840462,56.228544210713224],[-126.5735784728174,56.22860078025868],[-126.57373706764639,56.22867175615182],[-126.57388474211518,56.22875510241921],[-126.57401941115211,56.22884746807381],[-126.57407450395804,56.22888530489524],[-126.57401945774535,56.22892027657993],[-126.5739136829018,56.22900812261372],[-126.57386005786732,56.22920886769893],[-126.57386231163436,56.22950121261529],[-126.57386232215335,56.22964010923133],[-126.57386158227635,56.22965803470787],[-126.57397324940251,56.229696737400175],[-126.574343348373,56.22972643664432],[-126.57475359979254,56.22973915203326],[-126.5750572729413,56.2297848301399],[-126.57538383880168,56.22987632987375],[-126.57559067338626,56.22993028408805],[-126.57569915721332,56.22995891842551],[-126.57584928738466,56.23000304671134],[-126.57592937757927,56.230022847849305],[-126.57594768821988,56.230031726321236],[-126.57596189331427,56.2300361427739],[-126.57601974847071,56.23005604416943],[-126.57625230225132,56.23014124505381],[-126.57664622223267,56.23027948322598],[-126.57690927541282,56.23037910692338],[-126.57696752636738,56.230424769217],[-126.57696749611458,56.23049197746488],[-126.576967320062,56.23061743340653],[-126.57696841168564,56.2308291340464],[-126.57703309073963,56.2310371869071],[-126.57720515274482,56.231130500475146],[-126.57752508164036,56.23118169998065],[-126.57808437398671,56.23130014333318],[-126.57862097637576,56.23145453144283],[-126.57888486229459,56.23154070577048],[-126.57906580399944,56.23168774314497],[-126.57925986517223,56.23197025722648],[-126.57940463847785,56.232198108072126],[-126.57952585362942,56.232335334672534],[-126.57968270949007,56.23249144166896],[-126.57982412692856,56.232628576282146],[-126.57987537256919,56.232678749682705],[-126.57989154946438,56.2326797963436],[-126.57998934798965,56.23266815073168],[-126.58026995991825,56.23272288247896],[-126.58065912685767,56.232879052388284],[-126.58097449664984,56.23296162793848],[-126.58131227134878,56.23305754235062],[-126.58167792922308,56.233330310505295],[-126.58185437883579,56.23351320897738],[-126.58188112148895,56.23354557107855],[-126.58189641306737,56.23355446248334],[-126.58198686356708,56.23359213487383],[-126.58213053387604,56.233675490186954],[-126.58248127807974,56.23369181268453],[-126.5831922212725,56.23361127772175],[-126.5838920429925,56.233530789652086],[-126.58441664970404,56.2334197360408],[-126.58481610907269,56.23324764601145],[-126.58508354274508,56.23309520216763],[-126.5854629953679,56.23286943519669],[-126.58593714961202,56.232559222206795],[-126.58622115091565,56.2323674951393],[-126.58629221744333,56.232323483450486],[-126.58631720869744,56.23230656662306],[-126.58637420179302,56.23226710006846],[-126.58640019433278,56.232249058488726],[-126.58653436693561,56.23223836091357],[-126.58681693518831,56.23222138051474],[-126.58701227704209,56.23224736579605],[-126.58712086266236,56.232348798982706],[-126.58722019981953,56.232440193385685],[-126.587313690988,56.23247784801129],[-126.58743117129558,56.232498590132],[-126.58749596321246,56.23250837323529],[-126.58753733166976,56.23250482245239],[-126.58755888602482,56.23252824614546],[-126.58762327973814,56.23257835596861],[-126.58786510672509,56.232673574527944],[-126.58823059412337,56.23279734652762],[-126.58851917063389,56.232911390811445],[-126.58863535510031,56.23298030373783],[-126.5887381555589,56.23309968448752],[-126.58891275140165,56.233291542986265],[-126.58912022777817,56.233385797535696],[-126.58940003408388,56.23338674639972],[-126.5896481915462,56.23343152621171],[-126.58981073220257,56.233560711466104],[-126.58992256891636,56.233675569015915],[-126.58998803684105,56.23373015328281],[-126.59006038199003,56.23377238421183],[-126.5901346961936,56.23381012544628],[-126.59016411428189,56.23381895057479],[-126.590205888096,56.233842280380046],[-126.59039583770517,56.233913091016696],[-126.59065006997939,56.234026169274884],[-126.59076250785161,56.23411414001924],[-126.5907966739341,56.23416886872156],[-126.59086927368385,56.23422790011052],[-126.59098064318441,56.23431139506416],[-126.59111126377883,56.23439928135458],[-126.59118671712994,56.23444597783359],[-126.5911999748738,56.234454877556],[-126.59122032804005,56.23446486456001],[-126.59138710963445,56.234539141459095],[-126.59166925954314,56.2348279502692],[-126.59186107564125,56.23522247038242],[-126.59198093167633,56.23540001689025],[-126.59207509854443,56.235415262207],[-126.59232019501128,56.235523899082864],[-126.59271631016045,56.235733767239346],[-126.59292852582287,56.23587279938651],[-126.59302856513101,56.2359417834496],[-126.59318420255279,56.23601274943135],[-126.59332734750164,56.236060250342135],[-126.5934077298272,56.236097961543535],[-126.59342711702388,56.23611131311827],[-126.5935602454477,56.23616334088625],[-126.59377751038036,56.23623513979542],[-126.59389116828446,56.236269335528526],[-126.59400333166604,56.23633826245835],[-126.59425436360785,56.2365051153927],[-126.59450108573417,56.23665406567628],[-126.59463932784028,56.23671054909782],[-126.59468197366458,56.236724912308766],[-126.59470297452616,56.23671137281169],[-126.59476731691745,56.23669091058579],[-126.59483366251133,56.23666931885466],[-126.59485785452584,56.23666584572905],[-126.5948850680073,56.236661238381245],[-126.59490662903008,56.23668466087371],[-126.59492698397543,56.236760735582536],[-126.59495287394844,56.23686926857418],[-126.594987100031,56.236928476538175],[-126.5949871847128,56.2370001651381],[-126.59493949693976,56.23712024238749],[-126.59490705344422,56.23717864086349],[-126.59499260125357,56.23715807972181],[-126.59516989246848,56.23712476937117],[-126.59530766149149,56.23714989035851],[-126.59540173237667,56.23722450116308],[-126.59549115188481,56.2373248968329],[-126.59560758429407,56.237475572782316],[-126.59572496781963,56.23762176363779],[-126.59582233422208,56.237713160895616],[-126.59589834375794,56.23779569662762],[-126.59599448864874,56.23787365777211],[-126.59614324707539,56.23795697392502],[-126.59627760866293,56.23802355502367],[-126.59645648579382,56.238094408616696],[-126.59676203712657,56.23825764173731],[-126.59706409561359,56.238456735009784],[-126.59727671278208,56.238554313110484],[-126.5974704308238,56.23860381320731],[-126.59763097611483,56.23866466969402],[-126.59771250647267,56.23871133403057],[-126.59786031619568,56.238731924746396],[-126.59810595142278,56.238741975835175],[-126.59828097600425,56.2387579580203],[-126.59841505362087,56.23880549584063],[-126.5986011551034,56.2388863939074],[-126.59879540623574,56.23897061391832],[-126.59890394906964,56.23900034870408],[-126.59892415271274,56.23900025394216],[-126.59894442473174,56.239004639424444],[-126.59909629403516,56.239026329820526],[-126.59938660905017,56.2391168190539],[-126.59959677780705,56.239251369547524],[-126.59969515937857,56.239342759207936],[-126.59978896996861,56.239399445857],[-126.5998480576017,56.23943165242771],[-126.59986435765549,56.23944053699418],[-126.59988580237145,56.23945499810135],[-126.59993067895432,56.239482790826955],[-126.5999601719901,56.23949609396657],[-126.6000005969059,56.23949702416722],[-126.60011319905415,56.239526738868776],[-126.6003151793517,56.23958851744613],[-126.6005872241105,56.239738457450535],[-126.60081823230809,56.23998044168487],[-126.60084773880578,56.240192009832256],[-126.60078580105271,56.24030319539597],[-126.60078156494927,56.240356982183876],[-126.60082678616432,56.240407175849484],[-126.60090657791349,56.24047176868269],[-126.60107707686896,56.240587461112405],[-126.60129243964067,56.240730945657475],[-126.60144636520079,56.240819832219394],[-126.60162821833278,56.24088618416342],[-126.6018737876943,56.241021684442096],[-126.60195886038545,56.24116690208215],[-126.6019548319671,56.24123412967763],[-126.60205752720101,56.24127621099436],[-126.6022712763352,56.24137937640358],[-126.60245665373918,56.241477074601676],[-126.6025632545806,56.241511296089925],[-126.60265441756479,56.2415265479053],[-126.60272658324013,56.24155421090344],[-126.60274694302149,56.241564196099134],[-126.6027654027465,56.24158203126634],[-126.60280686219888,56.24165016433094],[-126.60282832323458,56.24173183351774],[-126.60282980717469,56.24176319053904],[-126.60291490932853,56.24177847078434],[-126.60308877236494,56.24184933900663],[-126.60319203600318,56.24199446999324],[-126.60324749653505,56.242184632496986],[-126.60333257683072,56.242329849291636],[-126.6033988528618,56.24243482970245],[-126.60344134774705,56.2425701663571],[-126.60346443288512,56.2426921529976],[-126.60346689811718,56.24278623347321],[-126.60347685787538,56.24290828214711],[-126.60349179213783,56.24302582674066],[-126.60351822873861,56.243101871632504],[-126.603580778492,56.24316206381811],[-126.60368684792559,56.24322653083433],[-126.60380405623675,56.243292065244965],[-126.60389663974341,56.24333419296245],[-126.60393627335583,56.24334856741598],[-126.60395870668046,56.243361903059764],[-126.60401296827399,56.24340869250557],[-126.60409095769145,56.2434867337447],[-126.60414319793924,56.243532412555986],[-126.60418404100464,56.24356022295153],[-126.60423592035318,56.243583500537746],[-126.60428990552252,56.24361124871836],[-126.60440414600934,56.243681277221924],[-126.60454607116623,56.243778058053415],[-126.6045984503914,56.24383269719056],[-126.60463114260567,56.243856065457564],[-126.60468397196028,56.24387485778971],[-126.604781427519,56.243904640222176],[-126.60499326449091,56.243948442652766],[-126.60523112702386,56.243975319219366],[-126.6053797035489,56.24397909557685],[-126.60551608613333,56.24397732885302],[-126.60563930931332,56.243974504246445],[-126.60568789060697,56.243979874570634],[-126.60570528254513,56.243994353970926],[-126.60586980095798,56.244113429110705],[-126.60626619788182,56.24439606484601],[-126.60660406875596,56.244618489551286],[-126.60673431060556,56.24474220702142],[-126.60681643955428,56.24489191634119],[-126.60689101979874,56.245010297408115],[-126.60704846561381,56.245129404726335],[-126.60727010937822,56.24528293114053],[-126.60736911011138,56.24534742882275],[-126.6074506659343,56.24539408707016],[-126.60760847921493,56.24553671505475],[-126.60767465448299,56.24569882140555],[-126.6076696331197,56.24576605407623],[-126.60771865059417,56.24579942522682],[-126.60782956945371,56.24585042410626],[-126.6079324218975,56.24590146128936],[-126.60798446276048,56.24593481794989],[-126.60804112967976,56.24594014890407],[-126.6081457950397,56.245977735530566],[-126.6082686878202,56.246083564199886],[-126.60839374093057,56.246198343640515],[-126.60848062140472,56.24626289824222],[-126.6085040937612,56.24627734831525],[-126.60852349112368,56.24629069765373],[-126.60862372339481,56.24636863030518],[-126.60877311430781,56.24648889414738],[-126.60885185969184,56.246549006699894],[-126.6088927092344,56.246576815624145],[-126.60897116067555,56.24661900715806],[-126.60905128410533,56.24663766758645],[-126.60918331137785,56.24668072363514],[-126.60938094258664,56.24678395448322],[-126.60948224971389,56.246866361950644],[-126.60948180415627,56.24690220878371],[-126.60948301523666,56.246915644769444],[-126.60949039178635,56.24693465206801],[-126.60951250654519,56.24699279418032],[-126.60954510681906,56.24707440933827],[-126.60960202745095,56.24716150914697],[-126.60967922457782,56.24725187258512],[-126.60971731465519,56.24729761678973],[-126.60970539877913,56.24731111544282],[-126.60967666233985,56.247347097337546],[-126.60961525336236,56.24742692092765],[-126.60959435535544,56.24757824057286],[-126.60968238830492,56.24771559850399],[-126.60975079102793,56.24776119800482],[-126.60978402067124,56.247753198324105],[-126.60989868465892,56.2477190463921],[-126.61004758029311,56.24767688982157],[-126.61018996952187,56.247671729030706],[-126.6103311032526,56.247714740426545],[-126.61040745057808,56.2477513404332],[-126.61041266751816,56.247761396828366],[-126.61044353734137,56.24779709401152],[-126.61047431235879,56.24789215946811],[-126.61038726072947,56.248012431333564],[-126.61033073011909,56.2481459990707],[-126.61041201698107,56.2483046715962],[-126.61041547505482,56.248461475777006],[-126.61038623478505,56.24859603327836],[-126.61046045786411,56.248754739565996],[-126.61055381945422,56.24890999389275],[-126.61059962082143,56.24899602635151],[-126.61060898558202,56.24901390395309],[-126.61060529245252,56.24903632457368],[-126.61058661757264,56.24913498689859],[-126.61060447547194,56.249243555913495],[-126.61070308942706,56.24928116947926],[-126.61079367358015,56.249323301963926],[-126.61085752452341,56.249400286845606],[-126.61092954652422,56.249482833358094],[-126.61096663785702,56.24952858202705],[-126.61099773632948,56.24957883994902],[-126.61104650912378,56.24966037747097],[-126.61106829627438,56.249697238141756],[-126.61106597077732,56.2497420552125],[-126.61108221059935,56.249876395356885],[-126.61111593437205,56.25003081453306],[-126.61112729517308,56.25011141088939],[-126.61110650215986,56.25013839394673],[-126.61113681618298,56.25013824890603],[-126.6112231515139,56.25016695965583],[-126.61131396386197,56.25022253249419],[-126.61142735722235,56.25030152030528],[-126.61159056914977,56.25039931201957],[-126.61170287386949,56.250472704064336],[-126.61180994257454,56.25053379945476],[-126.61196389678099,56.250621553711774],[-126.61204762977823,56.25067715996705],[-126.61214132803227,56.25072375721755],[-126.61234093843309,56.250822493711254],[-126.61250798691765,56.250906824110515],[-126.61255383416069,56.25093012738491],[-126.61258646707243,56.25094901342204],[-126.6126943834332,56.25100002268568],[-126.61283182366604,56.25106545215515],[-126.61294879068441,56.25111305733653],[-126.61304040005587,56.25115518337193],[-126.61316571546858,56.25122067068425],[-126.61333601711937,56.25131842621067],[-126.6134513511494,56.25139180222831],[-126.61348918557778,56.25141962425897],[-126.61353111595862,56.25145190720398],[-126.61360886000723,56.251512021840064],[-126.61367953884975,56.25157217037621],[-126.61371879654511,56.2516268691015],[-126.61378951216498,56.2516903778545],[-126.61395333367824,56.25176128013363],[-126.61412205998994,56.251823197425544],[-126.61420254856837,56.25186537612114],[-126.61425602461443,56.251924486923286],[-126.61432178484436,56.25199361997694],[-126.61436176428012,56.252029272496664],[-126.6143720272985,56.25203930448511],[-126.61434875980693,56.252038296245495],[-126.61418324264807,56.25211638257785],[-126.61391477244452,56.252267773314856],[-126.61378282046502,56.25236025975408],[-126.61381464684116,56.25239259117585],[-126.61384617183896,56.252469730049796],[-126.61375419848157,56.25259786914436],[-126.61354551194042,56.252760173346815],[-126.61329963442724,56.252934977437185],[-126.6130306603198,56.253118853107544],[-126.61280159958801,56.25327117252528],[-126.6126946335667,56.25334561557223],[-126.61264269717051,56.2533850699457],[-126.61255167334782,56.253445994605094],[-126.61238157536685,56.25355546478639],[-126.61211823662613,56.25371242791042],[-126.61188593564118,56.2538513194095],[-126.61176777213562,56.25392133471675],[-126.61163572221867,56.2540082186666],[-126.6113787738245,56.25418755268402],[-126.61113389637174,56.25436234783437],[-126.61103182945034,56.254427804848646],[-126.61096256247146,56.25445838023312],[-126.6108188425841,56.25450947432894],[-126.6106381934611,56.25459098887298],[-126.61045616730993,56.2547139553233],[-126.61026443488609,56.25486273135674],[-126.61004958862645,56.25502057869762],[-126.60986370779162,56.255155884376975],[-126.60977397279171,56.25523472332524],[-126.60973041171005,56.25529317910812],[-126.60968118726348,56.25537742538143],[-126.60964092688042,56.25545266764925],[-126.60962624709997,56.25548410193716],[-126.60958643206278,56.25552349722813],[-126.609477711014,56.25561586838643],[-126.60933164095017,56.255711778064445],[-126.60922248513539,56.255777267452196],[-126.60914431824298,56.25582020595702],[-126.60905115654627,56.25587329726685],[-126.60892683125559,56.255937738573415],[-126.6087542739593,56.256020332031376],[-126.60856364638411,56.256110852400276],[-126.60844220434332,56.25616631828847],[-126.6083920032443,56.256187840256196],[-126.6083618929807,56.25620142546865],[-126.60833689601174,56.25621834677801],[-126.60828728049007,56.256212982285],[-126.60804324761212,56.25624886875016],[-126.60743311882824,56.25646572025567],[-126.60664043431164,56.25677416813102],[-126.60603393418361,56.25696523221401],[-126.6057229688604,56.25705295869384],[-126.60559339900055,56.25710509994673],[-126.60551285840374,56.257125644447676],[-126.60545139094789,56.25713825744488],[-126.6051637624001,56.25723147271022],[-126.60438215541367,56.25734158725309],[-126.60346393025814,56.257310083226585],[-126.60281307385006,56.257248187324784],[-126.60249721723505,56.257214952691086],[-126.60240783274432,56.25718625029433],[-126.60237226168012,56.25717297621521],[-126.60234083745928,56.25716752363046],[-126.60230039427834,56.25716659416387],[-126.6022417594076,56.25716575044596],[-126.60216902702788,56.25716833360582],[-126.6019392004684,56.25720862200925],[-126.60152398030553,56.2572867480594],[-126.6012311828421,56.257307168959706],[-126.60113216201803,56.257242666198074],[-126.60090068680792,56.25717542601222],[-126.60047955343036,56.25713148004758],[-126.60019640035998,56.257121609177496],[-126.60003901329746,56.257140270933256],[-126.59999970981933,56.25714829659025],[-126.5997820945837,56.25719412450232],[-126.59944194954741,56.25729093382703],[-126.59893898301313,56.25744787369446],[-126.59834953979339,56.257634340551704],[-126.59805069612614,56.25772199150003],[-126.59796719560413,56.25774814583419],[-126.59787856436863,56.257768723372486],[-126.59763816671392,56.257844898303254],[-126.59723985232236,56.25797221791666],[-126.59699133357965,56.25804730944028],[-126.59676859639647,56.258088675529116],[-126.59644608335142,56.258149549657716],[-126.59622337991593,56.25819427508659],[-126.59597448258698,56.25824360292688],[-126.59560573087657,56.25832149288234],[-126.59526940451867,56.258404831439314],[-126.59487759990319,56.258496268504814],[-126.59435988994605,56.25861629394904],[-126.59402755028746,56.25869625022365],[-126.59395603682674,56.25871226483227],[-126.5938139452965,56.258740929129495],[-126.59347538679152,56.2588108315128],[-126.59309867471238,56.25889771238566],[-126.59267767643344,56.25899711925754],[-126.59219312834473,56.25910466038207],[-126.59180596559477,56.25916918286043],[-126.5915235431988,56.259208575935524],[-126.59127839002936,56.25923995484775],[-126.59111501039337,56.25926423405344],[-126.5910284610563,56.259289277788795],[-126.59098916975296,56.25929730060596],[-126.59076908229278,56.25938232980303],[-126.59031789521299,56.25955803869148],[-126.58998828519802,56.25968613827194],[-126.58982335306384,56.25974178720061],[-126.58975392544785,56.259763390569745],[-126.58971631805454,56.259749002211244],[-126.58955277635803,56.25969598977848],[-126.58933330046929,56.259619712014185],[-126.58924285020102,56.25958652471206],[-126.58916060420404,56.259562260714986],[-126.58902848827854,56.259514703447316],[-126.58893999266292,56.259477026321626],[-126.58891957664916,56.259463678632144],[-126.58888748615398,56.25948062880888],[-126.58880357843456,56.259547104412704],[-126.5886896582059,56.25970221013157],[-126.58859886309808,56.25991545703579],[-126.58859301272257,56.260064463995434],[-126.58863047460773,56.260135981031],[-126.58874730750651,56.260377395209574],[-126.58893510891095,56.26076746224594],[-126.58902259208467,56.261006771240545],[-126.58902637972338,56.26112436963181],[-126.58903190951388,56.26129012649341],[-126.58899510574602,56.26146503974309],[-126.58869467798614,56.26158516040195],[-126.58819922333575,56.261845077115915],[-126.5879715029256,56.262231457337776],[-126.5879730524336,56.26240171322539],[-126.58797547698885,56.2624285857033],[-126.58797325929623,56.262483483332744],[-126.58797507747865,56.26267166042772],[-126.58797708448665,56.26314323506414],[-126.58815977796831,56.263731594144026],[-126.58859931126104,56.26412162340059],[-126.58894790177354,56.26424547416356],[-126.58905616998636,56.26425169598476],[-126.58906885514901,56.264288602535416],[-126.5890694512361,56.26439613443091],[-126.58907276539568,56.26461678921671],[-126.58889769578722,56.26494132035667],[-126.58854619578483,56.26523081917375],[-126.58837584526964,56.265331297320365],[-126.58837874078661,56.26538953193934],[-126.58838291340821,56.2655328923061],[-126.58839977105409,56.26571315932063],[-126.58842619984567,56.2658575373701],[-126.58844037445839,56.265925801438186],[-126.58844455241301,56.265934743423486],[-126.5884533116749,56.26597950921347],[-126.58847980244879,56.26606115840035],[-126.5886308753264,56.266157915884286],[-126.58891774397772,56.26627645046877],[-126.58908250012304,56.2663417800733],[-126.58910011391802,56.26636970270666],[-126.58907637414566,56.266404536910784],[-126.58894060246386,56.266452209209994],[-126.58885175126946,56.26652654883159],[-126.58899481413847,56.26669615281482],[-126.58911738761968,56.26698122695909],[-126.58912231081739,56.267242200108896],[-126.58912150717234,56.267390064135434],[-126.58912446180472,56.26751998837928],[-126.58907431391094,56.26781594025492],[-126.58897508210867,56.26820957181477],[-126.58891650123364,56.268414830061815],[-126.58890531186599,56.2684776102787],[-126.58887962298701,56.268585263495844],[-126.58878746978658,56.268777234563416],[-126.58866785984144,56.268958130515344],[-126.58860650875738,56.26904690534214],[-126.58858978511206,56.26907834670425],[-126.58858487289856,56.26908733056762],[-126.58860766877547,56.269124190674624],[-126.58866860193928,56.26921016191048],[-126.58872545724454,56.26929279144416],[-126.58879131930782,56.26936977868322],[-126.58890735013878,56.26948910058946],[-126.5890484621622,56.269594864929346],[-126.58918823548602,56.2696782321922],[-126.58924076320245,56.26974295899183],[-126.58921433326229,56.26980020876962],[-126.58919660689335,56.26983165484532],[-126.58924399693667,56.269823595250685],[-126.58935976240427,56.26978945674436],[-126.58946050647823,56.26976546881979],[-126.58949474495506,56.26975634964074],[-126.58956446050092,56.26975378771296],[-126.58974258586073,56.269698078194125],[-126.5899134997931,56.26956735132212],[-126.59000308843841,56.26947396484783],[-126.59008023320575,56.26942656213191],[-126.59015958581857,56.26939259103403],[-126.59029064921361,56.26943455157644],[-126.59052704894178,56.26955667643083],[-126.59080954991822,56.26965170400231],[-126.59106273202379,56.269679657250315],[-126.59119918845535,56.26967790587167],[-126.59124268528342,56.269678824787825],[-126.5913609272941,56.26967603735244],[-126.5915823554174,56.26967613263016],[-126.59186774272607,56.269627764624616],[-126.59222291130988,56.26958019276106],[-126.59253596937563,56.26962242761156],[-126.59274283402313,56.26966291400369],[-126.5929207652248,56.269662088556835],[-126.59313016401426,56.26967007805502],[-126.59329509624894,56.26967827366568],[-126.59335866083045,56.269670137445566],[-126.59338083443974,56.269665553863305],[-126.59343559646803,56.269676501124145],[-126.5936237730897,56.269684588365365],[-126.59388401047104,56.26964417376267],[-126.59406430384912,56.26959852951742],[-126.59417216417214,56.26957786524962],[-126.59433689252805,56.26957261859405],[-126.59459167400364,56.269572553526565],[-126.59484451848913,56.26957809774651],[-126.59503464888752,56.269581693191085],[-126.59521553649235,56.269576370157694],[-126.59541813869207,56.26960231005736],[-126.59564699328567,56.269691976160836],[-126.59586592722957,56.26979512999396],[-126.59602082126874,56.26987505888635],[-126.59612883626932,56.2699305628568],[-126.5962040914926,56.269959335835544],[-126.59630292908136,56.269943192485385],[-126.59643979196896,56.26990110799571],[-126.596516166302,56.26987050729177],[-126.59652411781668,56.26986150892523],[-126.59655952715353,56.26986246378544],[-126.59673348704004,56.26993334156854],[-126.59701690954887,56.270087719495976],[-126.59718645903376,56.27026615229596],[-126.5971980743815,56.27043188117105],[-126.59717753827903,56.27054399279114],[-126.5971688611199,56.27063812649122],[-126.59717267411821,56.270755725118356],[-126.5971798317963,56.27082738169701],[-126.59718739451505,56.27085871074339],[-126.59719696307758,56.270890030416176],[-126.597218696946,56.27092241339369],[-126.59724850271844,56.27095475864395],[-126.59727310805455,56.27097704678261],[-126.59731815535126,56.271013801409254],[-126.59741312562399,56.271074966099604],[-126.59758918273015,56.27115031361021],[-126.59782809314544,56.2712354482808],[-126.59796941858778,56.27128743445387],[-126.59806496639217,56.27132059204642],[-126.59820124546262,56.27137260158434],[-126.598286615143,56.27140132602869],[-126.59853774631327,56.271492002968536],[-126.59902271491602,56.271667835670634],[-126.59930250059305,56.27178077996563],[-126.59932833310418,56.27181762401601],[-126.59932456290059,56.271835564216325],[-126.59933408110705,56.27186240335743],[-126.59936234664734,56.27192611977213],[-126.59938649872316,56.271984254687915],[-126.5993991961097,56.272021160333246],[-126.59941801108815,56.27206139775699],[-126.59944924961141,56.272120619584214],[-126.59948278428402,56.27219775315706],[-126.59951793853516,56.272315204803434],[-126.59954056563913,56.27240583143013],[-126.59955222704929,56.272441621770575],[-126.59955647673623,56.27245504372683],[-126.59956167705384,56.27246398059192],[-126.59959439013667,56.27248735042889],[-126.59963916728888,56.272506183021626],[-126.59967295192827,56.27253402844266],[-126.59973149758301,56.27259312207944],[-126.59981330658579,56.27265322666712],[-126.59987657422325,56.272691015079225],[-126.59997737988434,56.27273758850097],[-126.59999970870395,56.27274308446188],[-126.60009106329021,56.27276617884932],[-126.60013470089368,56.272776055360175],[-126.60012984325552,56.27278952006719],[-126.60013560945892,56.272835419468535],[-126.60015793067521,56.27290700476329],[-126.60017326837952,56.27298422364338],[-126.60019001961382,56.27308719952362],[-126.60025236355088,56.273196682224594],[-126.60033013035323,56.27325680549174],[-126.60036459229363,56.273262244397266],[-126.60036377893415,56.27327569011732],[-126.60035537340724,56.27332053593457],[-126.60034114251326,56.27338221149136],[-126.60032296921624,56.273449506358425],[-126.6003033651485,56.273489924144265],[-126.60027470474888,56.273533744939776],[-126.60024546995672,56.273605572387495],[-126.60029518467334,56.273682629815525],[-126.60040877706368,56.27377058873488],[-126.6004779863373,56.273866597209555],[-126.60050573249477,56.27396168032249],[-126.60054020421917,56.27403320849897],[-126.60058648411639,56.2740845183231],[-126.60065702924496,56.27413459393268],[-126.60072952907214,56.27418129984119],[-126.60075679555031,56.27424502072467],[-126.60076207552204,56.27432564733951],[-126.60078368747855,56.27441627861449],[-126.6008294285487,56.274497835185855],[-126.60089743114223,56.27458040723912],[-126.60100117400057,56.27468521437823],[-126.60109855987413,56.27477212879343],[-126.60113134448687,56.27479997857315],[-126.60115085549003,56.274818929506885],[-126.60125714397005,56.274892360024566],[-126.60142461476991,56.27499910734052],[-126.60156536795381,56.27507797622206],[-126.60173479385575,56.275180233307864],[-126.60191837627305,56.27528242350721],[-126.6019908109376,56.27532464840916],[-126.6020162345476,56.27533348993367],[-126.6020712132923,56.27535787446187],[-126.60214335583973,56.27538105794451],[-126.6022644957154,56.27543313465576],[-126.60243451497848,56.27550850421832],[-126.60266684480074,56.27555781608359],[-126.60291559841062,56.275557763027365],[-126.6030108162814,56.27556851541299],[-126.60300009924968,56.2755954498099],[-126.60299525842419,56.27560891456573],[-126.60297377158027,56.275658302966924],[-126.60293603474875,56.275769376814104],[-126.60297006170269,56.275877871791955],[-126.60309837365018,56.27600160413513],[-126.60322625664946,56.2760984545441],[-126.60338368051583,56.27614251785224],[-126.6036236743756,56.276164907991046],[-126.60398320975746,56.27606911601527],[-126.60441454518033,56.27584304493115],[-126.60462399799304,56.27572107696337],[-126.60462942444006,56.275744574652755],[-126.60463146382726,56.27581177460717],[-126.60463256926914,56.27588345962225],[-126.60463191167733,56.27590586593502],[-126.60463289607529,56.27603579985316],[-126.60477160069243,56.27630846270345],[-126.6049736040781,56.27655506215495],[-126.60505240461806,56.276812326062476],[-126.60516079766774,56.27702128293447],[-126.60536131991728,56.27710658573327],[-126.605569100846,56.2771369659534],[-126.605779647913,56.27715053031457],[-126.60600179458937,56.277195403837894],[-126.606233169036,56.2771819848416],[-126.60651943698848,56.27705740901603],[-126.60675135941035,56.27694877280044],[-126.60677626859244,56.276990100502424],[-126.60666885172063,56.27717207647848],[-126.60659050591642,56.27733711199304],[-126.60665655521792,56.27742305091594],[-126.6068389671802,56.27751291803817],[-126.6070061695706,56.277600616817956],[-126.60714405780415,56.27768957479812],[-126.60735439054322,56.27781963438401],[-126.60765837365952,56.27792348472754],[-126.60800203723083,56.27791288913518],[-126.60827733502886,56.27786341233691],[-126.60837618757029,56.27784725959508],[-126.60839444598649,56.27791550254197],[-126.6084242602132,56.27807778405822],[-126.60841920626551,56.27820774687049],[-126.60842814751382,56.27826259223355],[-126.60851286809469,56.278313716362966],[-126.60866996568275,56.27840146113681],[-126.60887288909849,56.278509150350466],[-126.60920189246737,56.27859607547929],[-126.60961450558918,56.2786624381133],[-126.60985887561641,56.2787038385434],[-126.60993999845071,56.27871801356413],[-126.60996940241309,56.27872347405779],[-126.60997016917024,56.27877275753455],[-126.6099729311054,56.278884760576176],[-126.60997520635975,56.27896652156364],[-126.60997476088805,56.27900236888293],[-126.6099768793132,56.27907404916186],[-126.60998054840596,56.279114357496816],[-126.6099823183107,56.2791636361946],[-126.60998219540473,56.27928573448389],[-126.60998826181954,56.27941564438024],[-126.60998858314922,56.279500775198514],[-126.60996745151381,56.279572566445225],[-126.60992377655228,56.27962542249809],[-126.60990173864266,56.27963896960565],[-126.60992454326973,56.279674705994225],[-126.60996923788841,56.27975290410198],[-126.60999204264326,56.27978864048026],[-126.61001646905851,56.279798605374026],[-126.6100978905324,56.279831821653104],[-126.61018842133754,56.27986499439614],[-126.61022092028804,56.27987380055248],[-126.6102477179778,56.27990615733776],[-126.61032679555535,56.27998419117712],[-126.61043629655147,56.28006656033501],[-126.61063761347843,56.28020113847083],[-126.61094822538145,56.28040464407262],[-126.61117274281848,56.28053462985761],[-126.61125916129336,56.280563340873925],[-126.61135562383791,56.28058864330485],[-126.61151594329817,56.280622601492134],[-126.61162867229213,56.28065230655203],[-126.61165301228527,56.28065667073812],[-126.61177179282924,56.28068634671593],[-126.61200507431509,56.280793885861314],[-126.61212148942322,56.28093110853969],[-126.61215443321534,56.28109785514713],[-126.61222457012474,56.28131483099478],[-126.61226376202747,56.28142777981787],[-126.6122856379516,56.28146912109509],[-126.6123272960903,56.28154621285135],[-126.61236651192995,56.28159643236427],[-126.61240053958704,56.281637715411534],[-126.61244617326196,56.28171030743458],[-126.61252504884665,56.281774899012575],[-126.61264699790834,56.281812400175795],[-126.612732050773,56.28181871349508],[-126.61283843626629,56.28183052530626],[-126.61302158834906,56.2819013376019],[-126.6131377508496,56.28195678867966],[-126.61317445502034,56.281975655411145],[-126.61322943249878,56.28199891512825],[-126.61348455486873,56.282080583134324],[-126.61386266665295,56.28220086582951],[-126.61403029255501,56.28224822781448],[-126.61407718056098,56.28227152603161],[-126.6142145923415,56.28232799423592],[-126.61435383265693,56.28237101153363],[-126.61446041463145,56.28239626303744],[-126.61457811156434,56.282420340850976],[-126.61469589645667,56.28245001895714],[-126.6148025477452,56.28247863033908],[-126.61490443326484,56.282526307357465],[-126.61504812582643,56.282596186445915],[-126.6153059462691,56.28265543459726],[-126.61566167881884,56.28270188889188],[-126.61591401390491,56.28273427828808],[-126.6159748507224,56.28274406663441],[-126.61607413485794,56.282754789828076],[-126.61652750093123,56.28283549626404],[-126.61712739845312,56.28297374237257],[-126.61732229949412,56.28314754708852],[-126.61727496326559,56.28341661535869],[-126.61732678761426,56.28362471587933],[-126.61738954671014,56.28369274289026],[-126.61745334309012,56.28376188502887],[-126.6176115413357,56.28391682384377],[-126.61786225764168,56.28410155982513],[-126.61808674853405,56.284227053349035],[-126.61817128264333,56.284264730239826],[-126.61822229156766,56.28429248771655],[-126.6183437630271,56.28436247067381],[-126.6184397133458,56.284418014828105],[-126.61853777500775,56.284479149527954],[-126.61870199112788,56.284566847987335],[-126.61882641954232,56.28463233552645],[-126.61885901279986,56.28464673990753],[-126.6188740497638,56.28463770578289],[-126.61897349381675,56.28459465800726],[-126.61912716003991,56.2845255837388],[-126.61919547202763,56.28449612855663],[-126.61927481221257,56.28446101908374],[-126.61957408362463,56.28445396814963],[-126.61997608432489,56.28454723331101],[-126.62020161485745,56.28460998882915],[-126.62027842465679,56.28460625566367],[-126.62036024612827,56.284599137632505],[-126.62049047229188,56.28458394344786],[-126.62064584841777,56.28455966569856],[-126.62078389754025,56.28452651057037],[-126.62096906377954,56.28446736260056],[-126.6211984625953,56.28439119693189],[-126.62130708470389,56.28435258339626],[-126.62138258139284,56.284393662604586],[-126.62166692455563,56.28453006064421],[-126.6220938434465,56.28466352399859],[-126.6224477396159,56.284720050013945],[-126.62264011101512,56.284732555202105],[-126.62278624479013,56.28476320803526],[-126.62303172343005,56.28480793874146],[-126.62329556741156,56.28486266094018],[-126.62346334242581,56.28491897132922],[-126.62361011901626,56.28498994610808],[-126.62379259235367,56.285015939860315],[-126.62398627518095,56.28498362994991],[-126.62410941192864,56.284967346512346],[-126.62414700097999,56.28497724449986],[-126.62422951980176,56.2850149272723],[-126.6244312152557,56.28510467578429],[-126.6246369392625,56.28519328413471],[-126.6247843814171,56.28524185099029],[-126.62495404007808,56.285289188905494],[-126.62509237253798,56.28533779994473],[-126.62513203852674,56.28535104799396],[-126.62519014318498,56.28537988820351],[-126.62537875652252,56.28547305973364],[-126.62565444042148,56.28557252590158],[-126.6258921940472,56.28563969233133],[-126.6259987369728,56.285660453850134],[-126.62601701338679,56.28566484502511],[-126.62606888986413,56.28568363383357],[-126.62617571928199,56.285722316487416],[-126.62632739155192,56.28578318271974],[-126.62647822210845,56.28585413441165],[-126.62658329818328,56.28590962784282],[-126.62665780182657,56.28595182903995],[-126.62671388399326,56.28597955832032],[-126.62673634946292,56.28599289020189],[-126.6267926483946,56.28603518056995],[-126.62686049283003,56.286103178167586],[-126.62690161132709,56.28614442275802],[-126.62693023488993,56.28616332524985],[-126.62697577363097,56.28616422209007],[-126.62710550086476,56.28618038832357],[-126.62736848369757,56.28624406779139],[-126.62767881496835,56.28635792183405],[-126.6279304346613,56.28646982319038],[-126.62802585246146,56.286617216718405],[-126.63022606534581,56.28814102101144],[-126.62954901504159,56.287804945427204],[-126.62312990219831,56.28570359390723],[-126.61890549003763,56.28618114314727],[-126.6186464090053,56.28835104133789],[-126.61763280278822,56.291877752405156],[-126.61427643119895,56.29460025148995],[-126.61544189041396,56.29711279214122],[-126.6166798193442,56.30100502993454],[-126.61610769372838,56.30323021323329],[-126.61271936477135,56.303201683726755],[-126.6078679711898,56.30403135867337],[-126.60240291366127,56.30484581790109],[-126.59869036334224,56.3053292417999],[-126.59072955664922,56.307095803844916],[-126.58309822934436,56.30806280382994],[-126.57807930791861,56.30756582464652],[-126.57291773478032,56.30837764832032],[-126.56804403802988,56.31000346990276],[-126.56301208652106,56.309729990924396],[-126.55698808675517,56.30836735206771],[-126.55123500469782,56.30832058310708],[-126.54573495649097,56.31016332079904],[-126.53910370696302,56.31221670454037],[-126.53703613216226,56.31260177778267],[-126.53488722819073,56.31229713347608],[-126.52832169641918,56.31178673620591],[-126.52238897566919,56.31082535351713],[-126.5174262425113,56.31186711500025],[-126.51192077731393,56.313995177695766],[-126.50772295827494,56.31326811595135],[-126.50289582742076,56.30963096498981],[-126.50080042755972,56.30738093698798],[-126.50090223187277,56.30378705993304],[-126.49764364957332,56.30273338781211],[-126.48960692493127,56.303517153103655],[-126.47862448136573,56.30308377620494],[-126.47260102754463,56.301770948492475],[-126.46628850790155,56.29976887800508],[-126.46331857175649,56.29940330023965],[-126.45686646244967,56.298718575715164],[-126.45424604319254,56.296980471893],[-126.44874932329238,56.29521659796247],[-126.44484234941775,56.29193252806414],[-126.43959782163822,56.28874256344206],[-126.43842390298934,56.286793059047454],[-126.43624255807977,56.28419282318016],[-126.4337089263368,56.28309026123461],[-126.43082094383358,56.28009804438405],[-126.42541856497864,56.278789891356794],[-126.4214496529889,56.28098059341297],[-126.41738520450161,56.28288472841355],[-126.4150300955977,56.282632523438934],[-126.41218142032695,56.281700821787666],[-126.40869716478109,56.28148798103065],[-126.40390335453218,56.28373453826216],[-126.39484877769362,56.28427360999219],[-126.38744538741464,56.28448444577007],[-126.37614406327685,56.28786965641007],[-126.36990476361564,56.29339895740037],[-126.36348641478139,56.29813988908029],[-126.3591478301176,56.302095058766945],[-126.35751978338315,56.30476108898263],[-126.35228902542609,56.30756253069283],[-126.34879451367145,56.31073540782493],[-126.3489306686578,56.31284091890468],[-126.3511304088248,56.31468987079702],[-126.35300256341706,56.31722970546625],[-126.35284079880559,56.31904928119272],[-126.34862175070802,56.31918630352871],[-126.34384209078257,56.32073160770112],[-126.34217148842342,56.32151571343681],[-126.33483345770622,56.322646318625374],[-126.32659673984969,56.323017094397414],[-126.32425035864776,56.32550532390305],[-126.32416124346562,56.32819392355161],[-126.3209010983746,56.33044245327514],[-126.31638273063012,56.330166942267795],[-126.3123394001394,56.32812474763689],[-126.30566999587079,56.32463700837221],[-126.29960882103951,56.32149699423895],[-126.29453986643138,56.31327342676906],[-126.29187776410612,56.30999077930264],[-126.28972978375086,56.30665315177851],[-126.28446794295947,56.30420064858502],[-126.27335282480183,56.30168888837235],[-126.2633835975458,56.30175461295536],[-126.25979532071229,56.304459249122225],[-126.25798839322859,56.30912269559165],[-126.25544938778172,56.31411915195047],[-126.2532684533519,56.314786613970426],[-126.24770397343411,56.31518283852841],[-126.24302108272975,56.31673313937234],[-126.24166952574699,56.320140944512964],[-126.23969612394103,56.32354990637174],[-126.23665522048627,56.325285076486885],[-126.23358741478621,56.32764750849568],[-126.2304102326539,56.330243057255466],[-126.22876386982115,56.333203212682925],[-126.22540067734776,56.33510895955397],[-126.22291971872576,56.3383393492909],[-126.2243584507677,56.34126716425213],[-126.22941279319154,56.34371359248276],[-126.23454521258478,56.34691242954991],[-126.23012411926491,56.346857722890135],[-126.22477613915878,56.34680449412402],[-126.21887127883295,56.34788111607802],[-126.21465853505839,56.34778071253515],[-126.20687620635225,56.34678089901821],[-126.20169020226862,56.345122377809496],[-126.1953731637927,56.343456418185696],[-126.19477193945829,56.34293758165342],[-126.18845934059907,56.341217509312266],[-126.18141755795936,56.34244641065135],[-126.17463371448753,56.34505460560339],[-126.16601715548299,56.34712715676436],[-126.15798018543916,56.347442007961796],[-126.15198029461703,56.34828266708188],[-126.14727414536941,56.35028652784289],[-126.14625700351073,56.352725159191486],[-126.1487548587182,56.3547027248903],[-126.15063739552072,56.35654654976589],[-126.15086004393909,56.3588403796646],[-126.14832160631083,56.360689373200984],[-126.14873200823111,56.360688897298076],[-126.1484894773234,56.36166596152318],[-126.14386188867574,56.36429690834794],[-126.13963073742092,56.36458835267237],[-126.13995713848911,56.36687313479088],[-126.14239627898968,56.36759631476263],[-126.14615932931312,56.36889147079453],[-126.14917471476049,56.37075195505781],[-126.15081849556412,56.37356389632982],[-126.15195659493249,56.376098618553804],[-126.15372955629257,56.3809714961078],[-126.15242980368073,56.385408942734465],[-126.15051175360497,56.38710491688932],[-126.14405044567889,56.38908385412479],[-126.1385136223007,56.3911331625214],[-126.13372244511002,56.395188820682336],[-126.13124396794042,56.398014239653435],[-126.1300529588623,56.39948513303995],[-126.1203182120731,56.40348249269759],[-126.11428970138793,56.40746690780754],[-126.11304965850178,56.41019230307951],[-126.11489649089599,56.41301353815668],[-126.11726318894847,56.41584323795001],[-126.11875596095315,56.41985663431179],[-126.12001383156489,56.42461405131776],[-126.12365435824482,56.42642979344103],[-126.12626585873376,56.42822852781748],[-126.12588226558486,56.4301556465763],[-126.12291624749456,56.43218384332893],[-126.11914067553796,56.43385426302387],[-126.11201038057185,56.43416537981818],[-126.10382589792432,56.43515803996534],[-126.10426086085906,56.43721885889187],[-126.10433961953918,56.44047186552301],[-126.10371356056359,56.44332217456574],[-126.10830985805984,56.444465469400555],[-126.11383078632052,56.445670515460655],[-126.118986147404,56.44578234161911],[-126.12651367778106,56.4458199513036],[-126.13312817199831,56.44554441156017],[-126.13790922688021,56.44720623384373],[-126.1412505983007,56.4488963571023],[-126.1463138996232,56.45140891949957],[-126.15229039633249,56.45427867420993],[-126.15548700798934,56.45706193513917],[-126.1597014013273,56.4601844048401],[-126.16166502795838,56.46283462255268],[-126.16494604861181,56.46338607837731],[-126.17073601502292,56.465851955462476],[-126.17168321780538,56.46820763741894],[-126.18010714476844,56.4719510873844],[-126.1871265398333,56.47197689989247],[-126.19350963554342,56.47238864629305],[-126.20111864019088,56.47321936686041],[-126.20869486362271,56.47489210118412],[-126.21418751657964,56.4771862480573],[-126.21282381520403,56.48059401146759],[-126.20874628380975,56.482034596492696],[-126.20510200095906,56.482793261159124],[-126.20142474680765,56.481723657548464],[-126.20136067229336,56.48348924169586],[-126.2015590253483,56.48646426716406],[-126.2010368361925,56.48949419737122],[-126.20093049315447,56.492335280715245],[-126.20007551086253,56.495930335589286],[-126.19967626045175,56.49838652012864],[-126.20387165525945,56.49945536430544],[-126.20689672755863,56.501484888247546],[-126.20316619976643,56.50459166969108],[-126.19975947083519,56.507285594035295],[-126.19484365833968,56.508951100965305],[-126.19086903152849,56.50742456849532],[-126.1859634937625,56.50599784621858],[-126.17926367743794,56.505577190268966],[-126.17297345801872,56.50528110208221],[-126.17076840401992,56.506225053966006],[-126.16817336805705,56.50922176580513],[-126.16806310453731,56.51219728142544],[-126.16301923291695,56.51436361090664],[-126.15441176077822,56.51523458552765],[-126.14523859010612,56.514564164063614],[-126.13980032104095,56.51358437520642],[-126.13038767159412,56.51381831406144],[-126.12013174349781,56.51444668091718],[-126.10957869135267,56.5173508242626],[-126.10469386739851,56.520715638417634],[-126.10075121860238,56.526320040612816],[-126.10374430787445,56.5290421166119],[-126.10554006676121,56.530716556230225],[-126.10627316798228,56.533064008261285],[-126.10785596097573,56.53491783618828],[-126.1112673928547,56.537576664291805],[-126.11356474594832,56.539609048357036],[-126.11682585878812,56.54347775198955],[-126.11933255521126,56.545500887541415],[-126.12279081469423,56.54696742080499],[-126.12861308237507,56.54886170372007],[-126.1338091949566,56.55091769670681],[-126.13348842185286,56.55388450007622],[-126.13091272113178,56.55625315531552],[-126.12398991827342,56.55868875751517],[-126.11820589222133,56.56107813814198],[-126.11664289564646,56.56397435114277],[-126.11641882615412,56.567048589870595],[-126.11539578840333,56.569379687128276],[-126.11083174044175,56.57229642073252],[-126.10774060543913,56.574548566365536],[-126.1069114105809,56.57722000831886],[-126.11065149244553,56.57949326412073],[-126.11378748839232,56.581354684676846],[-126.11443440228327,56.5833616630707],[-126.11588080796069,56.58548443354928],[-126.11639163997312,56.58623680625397],[-126.12037784404762,56.58754163952011],[-126.12387943762607,56.58798643531034],[-126.12703461760789,56.589390446193946],[-126.12929032999938,56.58998867762632],[-126.13371758318718,56.59066529509034],[-126.13879458774275,56.590552377357604],[-126.14517737020093,56.591540161494414],[-126.14670114650886,56.592300234009734],[-126.14975351821994,56.59370380999904],[-126.15269587620949,56.59533150428746],[-126.16112936538731,56.59960524528121],[-126.16424786906263,56.60192256564677],[-126.168488164187,56.60488364528686],[-126.17107796640892,56.60759584465637],[-126.17707367986304,56.616173766777145],[-126.17613894813,56.61901615054218],[-126.17490720298179,56.62140184805711],[-126.17448949161668,56.62425248772969],[-126.17316180165079,56.62645905459538],[-126.17098986101028,56.62907004612593],[-126.17062242407843,56.63322914938751],[-126.17121949033785,56.636723754467155],[-126.17624688978194,56.63809721801961],[-126.17923080270356,56.63869359858744],[-126.18023581095402,56.6395077927529],[-126.18033713632305,56.63957038919018],[-126.18119741303023,56.64151406463953],[-126.18396261043812,56.64240641003261],[-126.18663591928548,56.64305683953655],[-126.19004675472816,56.64338347582788],[-126.19530907484693,56.644074699039024],[-126.19881104588165,56.644625031297295],[-126.2038479509221,56.64587193670946],[-126.2052047166362,56.64840620909634],[-126.21044065280385,56.64989453546624],[-126.2153605649053,56.64863164708438],[-126.21956599344462,56.64708298516635],[-126.22699634035422,56.64807394062716],[-126.23053580430759,56.650505504561806],[-126.23395160615618,56.653519773242444],[-126.23867289241265,56.65487345315343],[-126.24001569015924,56.655059178705585],[-126.24756271439028,56.655770897500666],[-126.25369243647398,56.655499073872356],[-126.26298553793325,56.65661873093435],[-126.26652680736906,56.65916583662483],[-126.26640760999899,56.66248228969298],[-126.26628214354724,56.66607660690816],[-126.26662085069401,56.66825385682313],[-126.26914179683452,56.670336949397694],[-126.27156696734887,56.67212442547477],[-126.27547922300954,56.67297656341026],[-126.2825097288441,56.673732169409355],[-126.28375337468225,56.67379218143332],[-126.2893454354115,56.67408450415192],[-126.29640185710569,56.67415812378325],[-126.30090939349114,56.6757968531567],[-126.30199989426661,56.67730006048407],[-126.3073455292324,56.67877527540726],[-126.31333485505789,56.67969301447417],[-126.32091249312653,56.67965647713084],[-126.32634854084797,56.678513532946454],[-126.33288527107494,56.678523733438055],[-126.33609864977798,56.678667776897264],[-126.34388808995539,56.67845904483891],[-126.35149088711496,56.677730505267036],[-126.3599615261641,56.67884545009672],[-126.36847028214083,56.678866261889084],[-126.37647165516908,56.678610144268305],[-126.38204910992982,56.679454197248695],[-126.39285997985203,56.67887501899451],[-126.39224396180906,56.67544410947805],[-126.39232877885058,56.672817732867195],[-126.39200862717371,56.66984303970848],[-126.39632027916957,56.668055231509456],[-126.40021829042523,56.66620582333806],[-126.40336967094744,56.664977068631856],[-126.4073629706483,56.66341395824287],[-126.40809359336366,56.66325928214735],[-126.41321606397894,56.661988188399796],[-126.41883296111287,56.66152194096256],[-126.42205347076904,56.66138596954818],[-126.42448683685167,56.65987223523753],[-126.42787048137362,56.65778168870518],[-126.4319962392771,56.65845807938777],[-126.43609037957735,56.66030857550031],[-126.43903359527782,56.66239589915428],[-126.44218933975517,56.66437487703834],[-126.44413223771868,56.66530034272174],[-126.44907110847159,56.66660079420669],[-126.45513180197038,56.668596212762615],[-126.45699077146298,56.672327171226186],[-126.45619771713785,56.67786009572888],[-126.45770123309025,56.6796473616477],[-126.45898465170586,56.68182080188055],[-126.46049012409476,56.68349151488671],[-126.46344180194664,56.685345252675276],[-126.46595268992768,56.68816851996535],[-126.46791278825499,56.69206930223981],[-126.47035837488573,56.693575169200265],[-126.47795666751352,56.696325816341435],[-126.4788873009568,56.696447852025585],[-126.4848783599706,56.69752795698996],[-126.4889056424456,56.698247747849514],[-126.49695873202081,56.6998572596536],[-126.50076129372832,56.701267705662644],[-126.506318640578,56.70285043853703],[-126.51198860833286,56.704333895051924],[-126.51319224813987,56.705825960541574],[-126.51562814962516,56.707788150789405],[-126.51775719688456,56.70957226531299],[-126.52155071838317,56.711322750406715],[-126.52359021224613,56.71265001408951],[-126.52699853518439,56.71325461796675],[-126.53359129453882,56.71519050100936],[-126.53557268826319,56.71863313762781],[-126.53664364156228,56.72115632301592],[-126.53877090318525,56.723056641692125],[-126.54172257071436,56.72530304277022],[-126.54393723905187,56.72778552902209],[-126.5472080217157,56.72968986606151],[-126.55130993945303,56.73167125189641],[-126.5547093802669,56.73272334361705],[-126.55767937906496,56.73435085260277],[-126.55818523401314,56.73480579888874],[-126.5608281147143,56.73699934052876],[-126.56336131823569,56.73930087034667],[-126.56210510639825,56.74334881146179],[-126.56380757031394,56.74570773163696],[-126.56802927233994,56.74716821764941],[-126.5725553124273,56.74897679453973],[-126.57737722265078,56.75124103113846],[-126.57819451548514,56.75182000315083],[-126.58106387247113,56.75333092936422],[-126.58401211750972,56.75591705274788],[-126.58364871174922,56.75768449489122],[-126.58098445435441,56.76011662448286],[-126.57903812125993,56.76278750446298],[-126.57832913366911,56.76598168053085],[-126.5779006392606,56.77020541142723],[-126.58257964225405,56.77407460961384],[-126.58615374233501,56.77655034259057],[-126.59250014261534,56.780429570106044],[-126.60077370379993,56.78231861135301],[-126.60680604015525,56.782478710470336],[-126.61191442388086,56.78212300906724],[-126.62348112668928,56.781413468972104],[-126.62943400982151,56.78065860438714],[-126.63892980017557,56.77964400701303],[-126.64114637878066,56.778458809110056],[-126.64670625900614,56.77672805684966],[-126.65401989570555,56.775526032995934],[-126.66270123736268,56.77365328874942],[-126.66909860566446,56.771585625268024],[-126.68134702238346,56.76852786042095],[-126.69655045984753,56.76778360520656],[-126.71128505311957,56.7693079477882],[-126.71593076871314,56.77082408278601],[-126.72306715385302,56.77258610992864],[-126.72753155672571,56.772964456542326],[-126.73556136229209,56.7721571497434],[-126.74267890516587,56.77015344260769],[-126.75332955699798,56.76845151577576],[-126.76424321410452,56.76886259792209],[-126.76719589198048,56.76711512319673],[-126.77568693597523,56.764025791936554],[-126.78352566969461,56.76236508672528],[-126.7891893888489,56.76017040235177],[-126.78855082865824,56.75611373056372],[-126.78353448133429,56.752424279318795],[-126.7780030268069,56.74867500144484],[-126.77629174315166,56.74147852257703],[-126.77517828642063,56.74009584266623],[-126.77788880985848,56.735033060541134],[-126.77921824701941,56.73133206227063],[-126.77812066864452,56.729151565085715],[-126.77927865009104,56.72853506818589],[-126.78553196564728,56.7276008643687],[-126.79145493838574,56.727636444276456],[-126.79265267990586,56.72507449146148],[-126.79221383187627,56.721420057267444],[-126.7937067666712,56.71960026499842],[-126.7978867111256,56.7185437214815],[-126.80038572354479,56.718214545430925],[-126.80059696181861,56.71804293002597],[-126.80611395879657,56.71756045857222],[-126.8141143468699,56.717384817771034],[-126.82470043023221,56.717846546161475],[-126.8314432057423,56.71840390093599],[-126.83489323719557,56.71722535796993],[-126.83452987206677,56.714646198530325],[-126.83125661426355,56.712229211275215],[-126.83120908802572,56.70948667606593],[-126.83777163851359,56.70342080656669],[-126.84040250110218,56.70178132470608],[-126.83919838861875,56.699664804976585],[-126.83788519889622,56.69793441446685],[-126.83461807993166,56.69517689233548],[-126.82937426971343,56.6926381628055],[-126.82483603576024,56.691286858619826],[-126.81592951075599,56.69020508261296],[-126.81210016106456,56.689727269276695],[-126.81247520534403,56.686650468348276],[-126.8144944085674,56.684549281301685],[-126.81569644522556,56.681646526285284],[-126.81449218834916,56.679574630957475],[-126.80947634608498,56.676289743569946],[-126.80789680007683,56.67250815758299],[-126.81270222366317,56.67094526825542],[-126.82045217583226,56.67247378519019],[-126.82737271518984,56.67412368397466],[-126.83223304417477,56.674719876055306],[-126.83655466681567,56.67657424878981],[-126.84110289195947,56.67750377752141],[-126.8451434232672,56.67781799882932],[-126.84899153294771,56.67727287440636],[-126.85388236272348,56.67666696195714],[-126.8576925003214,56.67806688559712],[-126.85953687601895,56.6792736431628],[-126.86344952199337,56.68089680523722],[-126.86600909380674,56.68268131315686],[-126.86816204083698,56.68400240882724],[-126.87012771433994,56.684302898552964],[-126.87281363711455,56.68500184791202],[-126.87983485175391,56.68692616331489],[-126.88364775855116,56.68831635999369],[-126.88425573099782,56.689118913332095],[-126.89173302942622,56.68881651946584],[-126.89239698457689,56.68653520225794],[-126.8973325113858,56.68359682526337],[-126.90524662088082,56.68226876615047],[-126.91137229932505,56.68212707488751],[-126.91841762660982,56.68267770912308],[-126.92393358924042,56.68173303983545],[-126.93049688396805,56.680457902568286],[-126.93467450167876,56.678993561491524],[-126.93772319116714,56.67678435274613],[-126.93777515872547,56.67369156171284],[-126.93768792111528,56.67278688119679],[-126.94166666432717,56.67075009265915],[-126.94602906702339,56.670431361865326],[-126.94885251285582,56.669299162542025],[-126.94920180920732,56.66695712064684],[-126.95047253659288,56.66554050058906],[-126.9538077443545,56.664762962091025],[-126.95649521986759,56.66522710134321],[-126.96135192729228,56.66633834525239],[-126.97181877307071,56.666959112850094],[-126.97607037336567,56.666971847703714],[-126.9842869134748,56.6657621135458],[-126.98973132848587,56.662645979215185],[-126.99248394891102,56.659173876762274],[-126.99522976175247,56.65621269169742],[-126.99862042524077,56.65165991954141],[-126.99998089620813,56.650923338127676],[-127.00029974923532,56.65041891022374],[-127.00344592746835,56.648261164750295],[-127.00707971629556,56.64787430871867],[-127.01174218734317,56.648178439839164],[-127.01598081208525,56.64894288129852],[-127.01907889699503,56.649698272520745],[-127.02345136302412,56.648632852596386],[-127.02595190528314,56.647788345377315],[-127.03002491051663,56.64580183793389],[-127.03346306728709,56.64456426166134],[-127.03380292027371,56.64279572342496],[-127.03186167147038,56.6409647833673],[-127.03136874736519,56.639238769326596],[-127.03408974301485,56.6375408069962],[-127.03898412581177,56.635905967151956],[-127.0414922518661,56.634550174926794],[-127.04316827262039,56.63341619125225],[-127.04724153976824,56.631375353763374],[-127.05386804661181,56.631796433236765],[-127.06038554784368,56.63263039188348],[-127.06775191944709,56.63225588396437],[-127.07097651987792,56.63124315403572],[-127.07870541892633,56.626992757242355],[-127.08291360087482,56.62237711974751],[-127.08470928886399,56.6198163861694],[-127.0885619135171,56.61840353063861],[-127.09331667260932,56.61922378875594],[-127.09816507486,56.6207870493147],[-127.10394618267122,56.62252141988088],[-127.10951283069842,56.62448147251038],[-127.11187188095752,56.62637039341601],[-127.11360860161194,56.62843496000372],[-127.11595053468284,56.63152508740396],[-127.11602534086698,56.633810165906475],[-127.11352091943999,56.63534666997203],[-127.11102000785672,56.636085330806914],[-127.11140528378938,56.63842152232465],[-127.11263035803206,56.63985410815819],[-127.11415674329467,56.6420370303008],[-127.11525914557944,56.64494966379402],[-127.11605992678801,56.64723744448419],[-127.1169684057312,56.649183670310016],[-127.11725147025916,56.651180128889216],[-127.1174235501552,56.654038069483775],[-127.11885239873008,56.655926001300195],[-127.12028926453326,56.657025039729916],[-127.12214372381028,56.65794115725422],[-127.12731448182095,56.659213762458876],[-127.13187476312883,56.65939793696874],[-127.13766744138778,56.66079016975307],[-127.14148066061374,56.662513405643146],[-127.1459376987027,56.662644217696624],[-127.15423319623135,56.66301848128474],[-127.15680701474317,56.664626859579265],[-127.1601016141718,56.66686514920696],[-127.16452155186842,56.670133026815684],[-127.1673861828699,56.67390785761361],[-127.16859934347534,56.676433679113785],[-127.16992183912245,56.6787164762401],[-127.17300034399277,56.68158390962758],[-127.17504947250202,56.68432619015403],[-127.17668013862003,56.68674058993737],[-127.17913088118041,56.69016939031562],[-127.1809743265182,56.69257284155904],[-127.18197126296303,56.696005927246446],[-127.18205951389874,56.697493158709015],[-127.18410292649925,56.70046845341943],[-127.1863575306857,56.70321768109938],[-127.18697291647855,56.70384848180314],[-127.19047806632246,56.706084158055],[-127.19191674227523,56.7075141231219],[-127.19314109615163,56.70951976123194],[-127.19467408982605,56.71174664275775],[-127.19671721832566,56.71495485061355],[-127.19866298102484,56.71718683681275],[-127.20568040990548,56.721720219567885],[-127.20835151414114,56.72458177297864],[-127.20989381184548,56.72601059707697],[-127.21217521359854,56.72659879477713],[-127.21382102842486,56.72802660498507],[-127.21484356630816,56.72973814998231],[-127.2176225660548,56.732607487200525],[-127.2200998153777,56.733874999054386],[-127.22206065171551,56.73524595652358],[-127.22247432169726,56.73570819342385],[-127.22568504949048,56.736341159052024],[-127.23015953302047,56.73606558775384],[-127.23526845027793,56.73431363823722],[-127.24172707926881,56.732674028596996],[-127.24557842096353,56.73200050451994],[-127.2495444028439,56.73034863529866],[-127.25269400629807,56.726588957117805],[-127.26372159732115,56.725074197114594],[-127.26829389053952,56.72508319794561],[-127.27193716198488,56.72452745900531],[-127.27433310198467,56.723562592467054],[-127.2754974932109,56.72105003070126],[-127.27821300079728,56.7195171781583],[-127.2832073957512,56.71860709746309],[-127.28706381380785,56.71679378916364],[-127.29040470037997,56.71474347395856],[-127.29195468724382,56.71589336182384],[-127.2935017161043,56.71725840905114],[-127.29493702474518,56.71944032507217],[-127.29492023681111,56.72166368060352],[-127.29501814539688,56.722236425800645],[-127.29562728816836,56.723781175558216],[-127.29592107434654,56.72623450059083],[-127.2969358834572,56.72892263837614],[-127.2982663716544,56.73150002950734],[-127.29970869192984,56.732982613958676],[-127.30094371072244,56.73441348365242],[-127.30259795070108,56.73567875838194],[-127.30530200299485,56.735508052352806],[-127.31040219724235,56.73426416917618],[-127.31580849057838,56.73387756701682],[-127.32027500323439,56.73417268357195],[-127.32567213518548,56.73480772689499],[-127.3301440041878,56.73453767838715],[-127.3351416251227,56.73340144147626],[-127.33763540751825,56.733402555870406],[-127.34201219038906,56.731752524062934],[-127.34379203819685,56.72969906252939],[-127.3446462049314,56.72650773916781],[-127.34685562213542,56.722459626130245],[-127.34926226401947,56.71988857774359],[-127.34886496274886,56.71743642957873],[-127.34908958208996,56.714690926461856],[-127.34744935977182,56.711669058463485],[-127.34663177506528,56.70983088789906],[-127.34737608537782,56.70720548622878],[-127.3495657721716,56.70589173949309],[-127.35299060217083,56.706133816199554],[-127.3582857313011,56.70625754169028],[-127.36119868820371,56.70551868251667],[-127.36557475553188,56.70300724757277],[-127.3696430398312,56.700221025359745],[-127.37038787002317,56.697254829953415],[-127.36988400462353,56.694624607508544],[-127.37176494959533,56.69268623776031],[-127.37436697187408,56.69183383783761],[-127.37446260701311,56.69291752552856],[-127.37746352316064,56.69475017287062],[-127.37964200774778,56.69480760021493],[-127.38421107447417,56.69482146182071],[-127.38628640075545,56.69470955640385],[-127.39200418250873,56.69306132777544],[-127.39481908019282,56.69134561902421],[-127.39514391553452,56.688894788426445],[-127.39422336306663,56.68626019384489],[-127.39465341006489,56.68380823539773],[-127.39621610969938,56.68278732017877],[-127.40161226950873,56.682791603860586],[-127.40451788259676,56.68279588592248],[-127.41095135872253,56.6827436679485],[-127.41374994407438,56.683035777684495],[-127.41457082347837,56.685088636596156],[-127.4154983715111,56.687149288936574],[-127.41746168846556,56.68829314830484],[-127.42222928095936,56.689782638076856],[-127.42440259212476,56.69104062450476],[-127.42615670978165,56.69315484765582],[-127.4254231909584,56.69464211227942],[-127.42375262092497,56.696587939304955],[-127.423743832983,56.69835407382725],[-127.42518646601799,56.7005255433579],[-127.42611506011592,56.70167173826759],[-127.42943579274454,56.70246874947325],[-127.43098763337368,56.703679732014194],[-127.43326345230224,56.70533090339401],[-127.43492133641145,56.70636137206988],[-127.43761293825435,56.70790924200315],[-127.44010158802912,56.70916348492719],[-127.44186393882262,56.7099685869265],[-127.44590878140696,56.71123224058946],[-127.44871181666329,56.71089603796297],[-127.45380640457782,56.70929686625626],[-127.45880057401236,56.70724141958374],[-127.46264297133662,56.70735934017539],[-127.46502639481888,56.708730845298575],[-127.46532668919261,56.711130014137275],[-127.46708822367296,56.712275453337256],[-127.46905632888316,56.71382194064187],[-127.47061020087995,56.71496073221076],[-127.4728904109524,56.716853244805755],[-127.47631091643892,56.71867891022453],[-127.47891110314536,56.718514704797094],[-127.48057223115163,56.718056402419286],[-127.48555999659882,56.71725506974886],[-127.48940381147622,56.717381156177545],[-127.49449321849181,56.71725964009624],[-127.50197602344294,56.71647361328558],[-127.50716728694165,56.7164759219778],[-127.51298523634625,56.71641689589334],[-127.51620985492987,56.71533019406811],[-127.51943408111838,56.712880735933325],[-127.52203270948924,56.71190882566737],[-127.52618985810223,56.709403377014034],[-127.5312811388188,56.70808803184993],[-127.53242320791131,56.70940131034086],[-127.53252288263059,56.71088831992179],[-127.53251955974436,56.71277101360226],[-127.53334341577894,56.71694791190696],[-127.53406321592546,56.719395794262375],[-127.53363927662787,56.723910258866844],[-127.53270018093878,56.72665575217638],[-127.53269728362271,56.72813502842453],[-127.53269013596427,56.731783915336756],[-127.53174709192555,56.73596388078031],[-127.5322629955398,56.738476975145154],[-127.53194402414108,56.74138546904602],[-127.53297762547007,56.743838644019704],[-127.5352632949909,56.74510251473944],[-127.53889952946525,56.74600960400406],[-127.53889450138837,56.74750685591065],[-127.53546555765058,56.74749382424201],[-127.53172412419278,56.7472154472697],[-127.52912648193623,56.746762069167005],[-127.52496701174167,56.74675739629381],[-127.52049661730778,56.74715071351467],[-127.51748337595605,56.74703370024732],[-127.51207980420862,56.74686390277217],[-127.5066736774476,56.74725871340435],[-127.50313244582337,56.74896743845319],[-127.503227582375,56.7517096666971],[-127.50405117715071,56.75456894294101],[-127.5037371970737,56.75576496148221],[-127.50226975109699,56.75987910139142],[-127.4981088270402,56.76090456146439],[-127.49456832103701,56.76187789360657],[-127.48863792162025,56.76243935657757],[-127.488218336948,56.763753099257805],[-127.48955946573233,56.7666692808361],[-127.49007535099256,56.768151563681464],[-127.4912124109142,56.77044252354699],[-127.4939118582673,56.77289475475436],[-127.49567543415023,56.77421020453339],[-127.4976452236357,56.77598047493386],[-127.50180677442323,56.77741151863871],[-127.50385758177293,56.778407505861345],[-127.50354467189493,56.77834390181491],[-127.50325757853423,56.77825870458197],[-127.50297434883335,56.77816785855316],[-127.50268128762623,56.77808721203365],[-127.50238219735236,56.77800999684336],[-127.50207459541703,56.77795081034932],[-127.50175486322269,56.77792202174652],[-127.50142578695187,56.77791687464539],[-127.50109847120879,56.777903861662594],[-127.50075902439268,56.77789547117396],[-127.50046997172531,56.7778652029806],[-127.50007448878047,56.77783840915097],[-127.4997915906638,56.77783496396533],[-127.49943644508714,56.77781778666695],[-127.49917917472747,56.77778826803336],[-127.49897993164667,56.778093154183445],[-127.4989869583029,56.778274619769775],[-127.49899189351734,56.77845498894002],[-127.49894033956542,56.77863152976063],[-127.49887542059491,56.778807104701016],[-127.49885670657171,56.77898550649798],[-127.49885135704675,56.77916487419415],[-127.49870693953955,56.77932455983724],[-127.49843198605987,56.7794207583773],[-127.49815608563037,56.779519208606764],[-127.49793576952334,56.779650634745614],[-127.49770824806139,56.77978102322357],[-127.49754101681432,56.77993424757988],[-127.49744113955876,56.78010686434842],[-127.4974491050113,56.7802860779761],[-127.4974683709972,56.78046628153687],[-127.49734244744081,56.78062799300621],[-127.4971805565483,56.78078675844094],[-127.49704871894397,56.780954141350016],[-127.49690120672206,56.78111386078417],[-127.49667856913159,56.78123858763536],[-127.49640381353483,56.78134038278327],[-127.49619098832939,56.78148068459493],[-127.4961751248071,56.78165344987517],[-127.49623490203727,56.78171551590859],[-127.49654761061588,56.78177353694992],[-127.49682781426516,56.781865553028354],[-127.4971060142517,56.78195871235918],[-127.49737636893957,56.7820609271745],[-127.49761630348577,56.78217133807465],[-127.49787249604601,56.78227819841646],[-127.49810685192892,56.7824032416317],[-127.49831710610356,56.78254089074921],[-127.4985334201095,56.78267622806871],[-127.49874969225505,56.78281044487669],[-127.49892970253173,56.78296077058457],[-127.49910160745756,56.783113431275865],[-127.49927957212279,56.78326378024919],[-127.4994878301418,56.78340257142579],[-127.4996899878511,56.783542553641254],[-127.49990831725468,56.7836767448506],[-127.50010547892316,56.78382014636249],[-127.50024295985374,56.78398329065024],[-127.50046146735521,56.784121961608875],[-127.50071805445789,56.7842646733938],[-127.50072541150304,56.784428205199866],[-127.50091710261106,56.78458847902675],[-127.50117706964082,56.78468632418556],[-127.50133950003104,56.78475280088533],[-127.50128652248904,56.78505151241868],[-127.50117547058632,56.78527917487905],[-127.5011413650199,56.785456635628094],[-127.50107340706899,56.785633368290846],[-127.5010208205956,56.785809922682546],[-127.50100114044513,56.78598945749331],[-127.50096912543397,56.78616801468191],[-127.50092272684492,56.786345617992275],[-127.50085883640216,56.786521182778614],[-127.5007444432345,56.7866894883986],[-127.50066824356752,56.78686519581933],[-127.50054659984022,56.78703134399978],[-127.50043420897521,56.78719850548726],[-127.50032082806688,56.7873667990247],[-127.50021057070593,56.787536176936165],[-127.50008170111987,56.787701287775285],[-127.50001148507319,56.78787244285126],[-127.50000003716667,56.7880530029444],[-127.49955358170477,56.788035762126576],[-127.49922728393501,56.78802497289001],[-127.49884819894277,56.78802712138285],[-127.4985656168307,56.78803375497864],[-127.49831123855873,56.788027734181135],[-127.49796240617187,56.78801720258535],[-127.49775853140278,56.788018440946466],[-127.49761182875609,56.78801453490611],[-127.49729432541083,56.78799243239861],[-127.49701407630057,56.7879004169869],[-127.49671539802321,56.787835510058954],[-127.49639075463594,56.787787712596945],[-127.49608147526887,56.7877666327467],[-127.49576993364518,56.78779264626464],[-127.49543536417308,56.787806597732164],[-127.49511276249363,56.787838340756984],[-127.49477874900113,56.78783995677884],[-127.49440375728443,56.78781514904163],[-127.49418475887674,56.78771681717038],[-127.49393211887629,56.78759645989912],[-127.49368638300935,56.78746929850685],[-127.49343482189583,56.78735004853538],[-127.49316584572779,56.78725789493322],[-127.49286476226945,56.78720981698889],[-127.49253562461317,56.787204647067654],[-127.49219585937497,56.78721640878273],[-127.49186407244233,56.78722247433475],[-127.49153761456024,56.78723408095233],[-127.49118646016414,56.78724260924969],[-127.4908837416405,56.78725842339903],[-127.49056278186005,56.787253154273266],[-127.49023401327939,56.78723116429642],[-127.48985189519539,56.78720754618979],[-127.48958544766614,56.78720725055421],[-127.48925366040324,56.78721330941649],[-127.48893759554724,56.787148584810055],[-127.48865592701631,56.78707225726062],[-127.48833833263498,56.78702099676467],[-127.48801929344275,56.786985441386406],[-127.48769330914894,56.786982464261236],[-127.48737558004751,56.78703430392219],[-127.48712680494782,56.78714698708453],[-127.48690132130459,56.78727957414932],[-127.4866883163058,56.78741650015008],[-127.48647850360722,56.7875567511245],[-127.48629014886758,56.78766873881846],[-127.48622353875466,56.787882429489585],[-127.48610707229541,56.78805186600173],[-127.48582788520126,56.78814696514607],[-127.48562716359719,56.7882837483867],[-127.48557847141645,56.78845688925608],[-127.48555466393319,56.78863758919435],[-127.48554215882073,56.788819280108235],[-127.48552352388388,56.7890010413817],[-127.48499362734411,56.78913263530867],[-127.48469521779724,56.78920778052005],[-127.4843978232541,56.789282913395056],[-127.48409830931519,56.78935582854856],[-127.48379873491048,56.789427623029646],[-127.48348047757976,56.789519802836494],[-127.4831846140943,56.78955457147823],[-127.48286289160296,56.789582911669896],[-127.48254696886286,56.78962911523989],[-127.48223436769386,56.78968200397598],[-127.48191481774289,56.78974057480642],[-127.4816036795607,56.789777755981895],[-127.48128488679106,56.7898295926011],[-127.4809589736096,56.789882630546124],[-127.4806579485479,56.789916331749275],[-127.48033602546916,56.78988639347743],[-127.48001244413256,56.789839663440226],[-127.47969096687189,56.78982092510027],[-127.47937021296794,56.78984812483058],[-127.47905236357646,56.789897703810446],[-127.47874009787765,56.789959545499364],[-127.4784415842295,56.790032435989474],[-127.47816557371263,56.79013084405406],[-127.47792843972121,56.790254582914855],[-127.47769967040807,56.79038270850131],[-127.47744468288094,56.790495443632274],[-127.47720327573994,56.79061474726145],[-127.47686506735853,56.790694810957724],[-127.47664132703396,56.79079374006948],[-127.4763674289381,56.79081367383726],[-127.47617181167334,56.791032192178236],[-127.47597718555059,56.791115098882095],[-127.47561719177753,56.79113489192112],[-127.47531250803898,56.79118094953466],[-127.47505149840758,56.79132400635021],[-127.47478139480764,56.79138984059549],[-127.47448294803385,56.79146496237229],[-127.47418117900729,56.79153339731486],[-127.47387785563363,56.791615297174],[-127.47360019243648,56.79169802490015],[-127.47331126755414,56.79178088018228],[-127.47301374586884,56.79185374667407],[-127.47276181649272,56.791966437623074],[-127.47248351575946,56.79205925611794],[-127.47226704706227,56.792161456813595],[-127.4719710744543,56.792220855323684],[-127.47181112404618,56.7922462076924],[-127.47168017234439,56.79227907484965],[-127.47142443669223,56.7923996510437],[-127.47110846667611,56.79247272276217],[-127.47082247365756,56.792579072965374],[-127.4704659486682,56.792663810428564],[-127.47025443148921,56.79276146881639],[-127.46999198829334,56.79286754971313],[-127.46964900934587,56.79293083853335],[-127.46934025639563,56.79292425704826],[-127.46903581832116,56.79295012502094],[-127.46877017776632,56.793052877699566],[-127.46845062212111,56.793112535597416],[-127.46813712359129,56.79314298684338],[-127.46780946493702,56.79315118465927],[-127.46751948414806,56.793234038798396],[-127.46722831289334,56.793285527286564],[-127.4669031717042,56.79333291736437],[-127.46656461589262,56.79335132141619],[-127.466232432824,56.793348359871366],[-127.46593061623494,56.79330807187758],[-127.46563456329542,56.7932307361764],[-127.4653753481015,56.79312496638866],[-127.46511913108407,56.793016920857696],[-127.4647784721669,56.792952415284645],[-127.46452916778867,56.7928644622803],[-127.46421489372358,56.79281982864567],[-127.46389483863399,56.79278534555264],[-127.46357782331022,56.79274970665355],[-127.46325688017936,56.79271859401229],[-127.46294157611696,56.7926739689625],[-127.46262128573004,56.79263276146102],[-127.46243177048274,56.792608006548484],[-127.46224211129811,56.792633682597135],[-127.46209936509874,56.79265322528137],[-127.4620532834969,56.79246435450184],[-127.46185077444196,56.79236690274118],[-127.46163174921688,56.79223937939256],[-127.46148523229199,56.79207741747223],[-127.46128944171359,56.79194066604879],[-127.46110846097218,56.7917891786731],[-127.46091518720237,56.791664725560906],[-127.46066186387189,56.7915241398568],[-127.46048238517365,56.791384961969676],[-127.46027120132035,56.79124726214152],[-127.45979734880059,56.791074421796765],[-127.45964573517179,56.790967427661286],[-127.4595346571687,56.79076696193387],[-127.45934200374853,56.790631293114814],[-127.45909883341818,56.790515244552466],[-127.45885243065099,56.790394749362484],[-127.4585982787413,56.790231756141736],[-127.45860427781268,56.790091606658635],[-127.45858727896079,56.78991249338114],[-127.45859490753077,56.78973422330125],[-127.45860555873355,56.789554798528144],[-127.45857225466705,56.789378110333026],[-127.4585921755545,56.7891997018124],[-127.45862438855507,56.78902115480523],[-127.45864734805426,56.78884159141819],[-127.45867136571374,56.7886631367751],[-127.45869639930088,56.78848467069681],[-127.45874094551603,56.78830710540594],[-127.4587968094183,56.78813053322876],[-127.45887835730939,56.78795591289836],[-127.4589630114726,56.78778237817129],[-127.45905902505667,56.78761095667141],[-127.45915708642245,56.78743951202595],[-127.45925309829663,56.78726809041788],[-127.45928021707509,56.78700891379959],[-127.45908057386612,56.78687780653241],[-127.45894270453798,56.78672695166976],[-127.45884260304067,56.786545413428726],[-127.45872756854757,56.78637524994828],[-127.45858828997636,56.78621432479906],[-127.45845298305032,56.7860499928234],[-127.4582740441354,56.78592425445906],[-127.45810541425593,56.78574572910273],[-127.45786216813268,56.78562631784926],[-127.45774030015151,56.785465195841994],[-127.45757764790949,56.78530901560928],[-127.45735352142731,56.785180422972445],[-127.45709622042575,56.78506901318544],[-127.45683659365422,56.784949784530426],[-127.4565978164478,56.784840406620035],[-127.45632264777085,56.784743764892035],[-127.45603751662176,56.784655079219775],[-127.45577225601967,56.78454935970635],[-127.45551001926268,56.78444248501995],[-127.45523906303016,56.78434915565674],[-127.45495927716647,56.78426601084572],[-127.45465294101359,56.784212300721435],[-127.45440295828992,56.7841041655113],[-127.4541465791031,56.78398937780455],[-127.45397991844149,56.78383547975525],[-127.45379931509582,56.78369182396404],[-127.45357504226138,56.78355874420643],[-127.4533160509596,56.78345631143241],[-127.452996225531,56.78342516194357],[-127.45266818348729,56.78342099945305],[-127.45234712740056,56.78343917071582],[-127.4520205454328,56.78341930112316],[-127.45173188322501,56.783345214298116],[-127.45153186440464,56.783202893914066],[-127.45136122110574,56.78305127868026],[-127.4511093746532,56.78294764086297],[-127.45074473311821,56.782786993200695],[-127.45043108580464,56.78283869613683],[-127.45011739568753,56.78288927813739],[-127.44980271431402,56.7829409911207],[-127.44948893865168,56.782989331246775],[-127.44916596206448,56.78301087808695],[-127.4488389563391,56.78300669433532],[-127.44851367932338,56.78302154141083],[-127.44819213703605,56.783054276230395],[-127.44786580146156,56.7830680128682],[-127.44753869522427,56.7830615856589],[-127.44721202430135,56.783066359222964],[-127.44688402779353,56.78306330225441],[-127.44655782856776,56.78305350049087],[-127.44623188062803,56.78305041897708],[-127.44590502587491,56.7830507087115],[-127.44560595679793,56.78299913757923],[-127.44527874242766,56.782989343940294],[-127.44495209726504,56.78299523216317],[-127.44462563561811,56.783005600095294],[-127.44429953358686,56.7830260490001],[-127.44397645792198,56.783017326534186],[-127.44364943631665,56.78301312985623],[-127.44332135700313,56.78300782350221],[-127.4429993257081,56.78302710308603],[-127.44267425503512,56.78304753638717],[-127.44234719157478,56.78304221623973],[-127.44201952950915,56.78304810838489],[-127.44169671516522,56.78307411731048],[-127.44137160169711,56.783093427161056],[-127.44104882824357,56.783120554651966],[-127.44073139204322,56.78315322514802],[-127.44041652924753,56.78320043460069],[-127.44018300948052,56.783203033100214],[-127.43997397149565,56.78323001299597],[-127.43990420953934,56.783255443255314],[-127.43982351340023,56.78326194415311],[-127.43964951780012,56.78340508072057],[-127.43938500575865,56.783511121751346],[-127.43916032894805,56.78364137350223],[-127.43894291168088,56.78377378544208],[-127.43868671391608,56.783883094524626],[-127.43838250125715,56.78394138702531],[-127.43809146884298,56.78402306589792],[-127.43784580065665,56.78414010081158],[-127.43769068778124,56.78429535202966],[-127.43747022249345,56.784428915951004],[-127.43723086170773,56.78455036220891],[-127.4370435852645,56.78469476332148],[-127.4367737778754,56.78479637513364],[-127.4365374772067,56.784917786120445],[-127.43626450282991,56.785017190711294],[-127.4360271831481,56.78513861205709],[-127.43579834697746,56.78526778337094],[-127.4355631974766,56.785392541712696],[-127.43534062851364,56.7855250046317],[-127.43509494247891,56.78564203443188],[-127.43483782997959,56.785754707838414],[-127.43465523678589,56.78588784708153],[-127.43445811656298,56.78604355993756],[-127.43422504811905,56.786169413390795],[-127.43395205897794,56.786268813181344],[-127.43370116775127,56.78638365666261],[-127.43352424147896,56.78655931601332],[-127.43328694065801,56.78665383657157],[-127.4331039024635,56.78680266754493],[-127.43293532763259,56.78695470008885],[-127.4328112449936,56.787118567047045],[-127.43277272712409,56.7872960552516],[-127.43268381785113,56.78746849795146],[-127.43256498672885,56.787635668508834],[-127.43244307338482,56.78780287306936],[-127.43232322405296,56.787970054683065],[-127.4321723368571,56.78812973506146],[-127.43199654891086,56.78828072555703],[-127.43179267952355,56.78842081995297],[-127.43155327623964,56.78854225600817],[-127.43129816648968,56.78865490010965],[-127.43107761289262,56.78878733331108],[-127.43091636586938,56.788943764801196],[-127.43074785594531,56.78909803507048],[-127.43054815803468,56.78924032266653],[-127.4303691945828,56.78938910472879],[-127.43025759283304,56.78955843460192],[-127.43014395772661,56.789727786848495],[-127.43002924764906,56.789896030230636],[-127.42996497203318,56.790070440315276],[-127.42994295272779,56.79025110751916],[-127.42992294063508,56.79043063192066],[-127.4298761695682,56.79060708995155],[-127.42968163230702,56.79075043986806],[-127.42946224296492,56.79088734002174],[-127.42928535793507,56.791037218302364],[-127.4291581816771,56.7912011160062],[-127.42905277373436,56.79137149718382],[-127.4289535777991,56.79154405101097],[-127.42885127450047,56.791715518419025],[-127.42873864315457,56.79188485843929],[-127.42861462603958,56.79205096206786],[-127.42844814231528,56.79220520702755],[-127.42828902697715,56.79236497371826],[-127.4280963999041,56.79250493823045],[-127.42775965141333,56.792572529211505],[-127.42758074404001,56.79269553193759],[-127.42752137666953,56.79286428357846],[-127.42749524647284,56.79304499585775],[-127.4274888208604,56.79323221477606],[-127.42748748447777,56.79341825695529],[-127.42748082722454,56.79359875458422],[-127.4274874388021,56.79377798528844],[-127.42750125505331,56.793958257224546],[-127.42751196479755,56.79413744278392],[-127.427479521361,56.794313742206306],[-127.4273534420352,56.7944798674647],[-127.42723046829556,56.79464707901938],[-127.42710641946378,56.7948131816646],[-127.4269803369094,56.79497930661047],[-127.42685005615085,56.7951432364074],[-127.42668667518946,56.79529856562502],[-127.42637744670716,56.79536248764239],[-127.42616186997208,56.79549261628128],[-127.42600479715861,56.795652357735385],[-127.42591168266833,56.79582372178625],[-127.42583719079666,56.795999363298506],[-127.42575543560264,56.79617284346247],[-127.42567268819025,56.79634745515903],[-127.42558786602102,56.79652096900786],[-127.42549996118177,56.79669451674955],[-127.42542644087807,56.79686902673469],[-127.42540841230586,56.797047408411075],[-127.42539452317325,56.79722686518315],[-127.42518282625518,56.79749030675011],[-127.42580476090322,56.79751147601915],[-127.42612952299031,56.79753479507271],[-127.4264514925677,56.79756598862903],[-127.42676799238367,56.79761517206187],[-127.42707760183815,56.797672275223384],[-127.42735972183719,56.797762179546815],[-127.42764285955127,56.797852072054006],[-127.4279190825917,56.797948764118644],[-127.42820321442501,56.798037523826764],[-127.42849624637914,56.79811721953648],[-127.4287705069529,56.798216172797375],[-127.42901075952314,56.798337913842175],[-127.42922187081571,56.7984756652411],[-127.42943095076394,56.79861343874863],[-127.42962285373082,56.79875812550351],[-127.42976418902751,56.79892130079711],[-127.42991658128862,56.7990787506057],[-127.43011258692498,56.79922339141667],[-127.43029139038661,56.79937382523246],[-127.43045800735524,56.79952775541197],[-127.43061553626801,56.79968514777016],[-127.43076093632432,56.79984715659172],[-127.43087425000631,56.800000554614954],[-127.4308839194239,56.80001277494956],[-127.43097334652298,56.80018548796038],[-127.43105772575728,56.80036049802862],[-127.4310878728621,56.8005383487342],[-127.43108942858512,56.800718756742356],[-127.43108272904847,56.80089813534933],[-127.43108629269824,56.801077400553325],[-127.43109327609923,56.801321625909516],[-127.43108661791102,56.80150212477917],[-127.43106554736725,56.80168054163162],[-127.43105888898793,56.80186104053965],[-127.43103990897677,56.8020405549759],[-127.43096946944966,56.80221503479923],[-127.43089600475497,56.80239066867724],[-127.43082767121548,56.80256624583147],[-127.43075932066017,56.802741823149724],[-127.43068684551855,56.80291632535663],[-127.43067707771615,56.80309573805722],[-127.43057781754536,56.80326717417129],[-127.43053407496988,56.8034424795794],[-127.43051921578459,56.80362306921346],[-127.43046833245957,56.8037995741637],[-127.4303815901869,56.803976475178665],[-127.43037587835254,56.804154722500954],[-127.43032081175578,56.80432903232863],[-127.4302215468425,56.80450046829977],[-127.43013360324777,56.804672899838486],[-127.42995444260234,56.804818322138495],[-127.42974946209168,56.80495842596134],[-127.42954237272114,56.805097432077716],[-127.42932906670696,56.80523426515734],[-127.42931881516584,56.80545626820886],[-127.42929875092484,56.80563467398813],[-127.42921908189984,56.80580925494494],[-127.42913108947937,56.805980565742104],[-127.42906682447497,56.80615609730121],[-127.42901388154249,56.80633262457179],[-127.42893416841683,56.80650608522816],[-127.42889463820086,56.80668470580454],[-127.42888587777671,56.80686410757],[-127.42885970312172,56.8070437014772],[-127.42885300854938,56.807223080486],[-127.42881136974601,56.80740060370894],[-127.42871308194754,56.8075709072508],[-127.42861914095542,56.80774788672452],[-127.42851056138828,56.80791718299428],[-127.42829365703271,56.80804060619088],[-127.42800287691475,56.8081345858053],[-127.42774758628948,56.808246104062455],[-127.4274966167994,56.80836317747024],[-127.42724345563364,56.80847691256213],[-127.42697763883834,56.80858070066668],[-127.42668646322862,56.80866459571664],[-127.4263768800734,56.80872179704293],[-127.42605971699382,56.80876787450496],[-127.42574249547242,56.80881283116943],[-127.4254286450455,56.8088655945507],[-127.42511475249245,56.80891723697019],[-127.42479758630746,56.80896331134752],[-127.42447589086304,56.80899822818369],[-127.42415084168857,56.80899732006768],[-127.42382397601111,56.808975138624525],[-127.42349120866976,56.80895974516378],[-127.42316893508332,56.8089789759023],[-127.42284023975975,56.80899043178567],[-127.4225142811771,56.808992891523786],[-127.4221906065236,56.80897403289202],[-127.42187128252158,56.808933833225616],[-127.42155183568266,56.808890272160255],[-127.4212286604039,56.80885683713238],[-127.42090335360078,56.80882118337734],[-127.4205772775348,56.80879226118411],[-127.42025300010192,56.808784610909335],[-127.41993393260367,56.80880716040582],[-127.41961662142145,56.808849861660136],[-127.41930178674544,56.808903741546374],[-127.41898600028095,56.808959872397836],[-127.41867000748255,56.80901040145509],[-127.41835494841115,56.809058678198596],[-127.41803998708262,56.80910919440889],[-127.41772386866022,56.809156360546226],[-127.41740541232816,56.80919570690485],[-127.41708260949962,56.8092283760999],[-127.41675751014294,56.80925434567675],[-127.41643129520575,56.80927808532363],[-127.41610611297499,56.80930181285412],[-127.41578204545335,56.809327768688654],[-127.41546021587125,56.80935930252357],[-127.41515771117291,56.809414158153736],[-127.4148407175259,56.80946580937849],[-127.41454747550853,56.80954969939894],[-127.41424982945993,56.809625792253506],[-127.41394141713613,56.80968743344095],[-127.41362446056428,56.80974020190531],[-127.413303577055,56.80976947869997],[-127.41297872626443,56.80977414358661],[-127.41265140005392,56.809767628117484],[-127.41232285272959,56.80975552186867],[-127.41199426471992,56.80974229457896],[-127.4116668735804,56.80973353602769],[-127.41133991578268,56.80973709911648],[-127.41102181594447,56.809786511668676],[-127.41072602311442,56.80985697288668],[-127.41043800817964,56.80994415852335],[-127.41013383390717,56.81001022702696],[-127.40981778014165,56.81005961431393],[-127.40949599682887,56.81009225337559],[-127.40916859040205,56.81011150497368],[-127.40884215958143,56.81012962447636],[-127.40850204844831,56.81016582236473],[-127.40820411388732,56.81020604342408],[-127.40789128575568,56.81025987351408],[-127.40758182511017,56.81032151081415],[-127.40727666700883,56.81038870388294],[-127.40698253144087,56.810477068890265],[-127.40674230270011,56.810581657553264],[-127.40642110852707,56.81065910861378],[-127.4061981315332,56.81078704263025],[-127.40594805639208,56.81090294321806],[-127.40569905361825,56.81101995232995],[-127.40544794231741,56.81113586318128],[-127.40521799630011,56.81126947436391],[-127.40498890222116,56.81137057696641],[-127.404647117273,56.81144600559706],[-127.40438018629553,56.811549758719146],[-127.40415159275747,56.8116643022198],[-127.40384534392592,56.81175839456499],[-127.4035721368205,56.81185885205852],[-127.40330834814023,56.81196481019196],[-127.40309688017875,56.81209933800856],[-127.40288137564998,56.8122361504981],[-127.40259312221583,56.81231771775787],[-127.40228351482958,56.812375981841235],[-127.40198149571177,56.81244536956931],[-127.40168376207467,56.81252031347272],[-127.40139278325316,56.81244165424796],[-127.4011101491446,56.81239540303344],[-127.40067255247003,56.81228919111492],[-127.40022923607593,56.81259095682744],[-127.40000091105425,56.81268531824095],[-127.39997363326442,56.81269681957736],[-127.39969760899494,56.8127479905425],[-127.39937226575476,56.81276831547458],[-127.3990469221727,56.81278863958982],[-127.39872178079818,56.81281456395915],[-127.39841417311845,56.8128716764624],[-127.39810676699143,56.81293438930953],[-127.39778379523,56.81296364984371],[-127.3974564041246,56.81295597575216],[-127.39712894862143,56.812946060226814],[-127.39680208370234,56.812952947273565],[-127.39647507328709,56.81295535245899],[-127.39615177663138,56.812975647205114],[-127.39589521845186,56.81299858391832],[-127.39574560721776,56.81300131673501],[-127.39552996190558,56.81304958684088],[-127.39528365736622,56.81315758132314],[-127.39495704913904,56.81317118483188],[-127.39463006075587,56.81317470575263],[-127.39430429071729,56.813154679073584],[-127.39398881903017,56.813107645145614],[-127.39366664917999,56.81307413032754],[-127.39334457699705,56.813042854964564],[-127.39302478860631,56.81307543129578],[-127.39270972117906,56.8131247658235],[-127.39240979333483,56.81319634983617],[-127.39209902580691,56.813251239891564],[-127.39177604685693,56.8132804854541],[-127.39144950055825,56.81329632073061],[-127.39112224516657,56.81329199110432],[-127.390794933167,56.81328654061057],[-127.39046808064491,56.813293411501604],[-127.39014161422563,56.813311483915854],[-127.38981610021825,56.81332730398726],[-127.38948833468483,56.813337544144176],[-127.38916876915776,56.8133476955315],[-127.38884428767099,56.81336350208096],[-127.38851408174132,56.81339169631347],[-127.38818690628243,56.81338959970766],[-127.38785975465458,56.81338862266918],[-127.3875329811219,56.813397726591454],[-127.38720646089612,56.81338553465529],[-127.38689207900538,56.81342588240907],[-127.38658996752963,56.81349411425549],[-127.38627156430063,56.813536744831794],[-127.38594837785841,56.813560374777786],[-127.38562136163732,56.81356275256733],[-127.3852948004994,56.81354943559307],[-127.38495856489529,56.813523894108855],[-127.38464654096916,56.81354403951005],[-127.38434975843707,56.81361781236101],[-127.38402902105979,56.81365261780338],[-127.38370378221433,56.813676264055594],[-127.38337846283825,56.81369766905255],[-127.38305882087366,56.81373470167454],[-127.38273927479366,56.81377397377344],[-127.38241224016942,56.81377634363794],[-127.38208341200823,56.81378545569484],[-127.38175942053604,56.813786670794244],[-127.3814692894934,56.81370235481418],[-127.38120401724765,56.813596480856255],[-127.38094278297733,56.813488322037074],[-127.38067850687838,56.81338131578208],[-127.38043719985754,56.81325725454151],[-127.38020689797892,56.813125231094766],[-127.37994401930953,56.813028294337045],[-127.37962096535001,56.81299811608479],[-127.37928903808323,56.81297811732782],[-127.378961805119,56.81294574064979],[-127.37864102361229,56.81295027578828],[-127.37833133518559,56.81300736242751],[-127.37802409498883,56.813075628727205],[-127.37772859955857,56.81315721711715],[-127.37745835814505,56.813256466603946],[-127.37722595719403,56.81338220869068],[-127.37701037043396,56.81351897806878],[-127.376807185787,56.81365897720171],[-127.37663733561317,56.813813190150135],[-127.37646235067228,56.81396745743816],[-127.37626543154657,56.81411075107369],[-127.37597280858324,56.81418670164198],[-127.37565233785689,56.81422932791348],[-127.37532832146464,56.81425854328646],[-127.3750028332612,56.81427544636922],[-127.37467497614973,56.81428340860919],[-127.37438149469955,56.814306694334604],[-127.37402356071077,56.81430488822332],[-127.37369819090766,56.81432514869746],[-127.37337069110232,56.81434318964385],[-127.37305218678512,56.81438354730615],[-127.3727371066014,56.81443395369559],[-127.37243718780879,56.814506611573954],[-127.372157331964,56.81459586590214],[-127.37192585952708,56.81471934719284],[-127.3716766334419,56.81483405089728],[-127.3714473670745,56.81496199053898],[-127.37121704260164,56.815088820324604],[-127.37123983811875,56.815269002829595],[-127.37107089613828,56.81542095742054],[-127.3709589597321,56.815590238830744],[-127.37089134772555,56.81576577496802],[-127.37086794156974,56.8159442052289],[-127.37082090996438,56.81612176486018],[-127.37065389372218,56.81627033661719],[-127.37060574802813,56.81644566668843],[-127.37069896498483,56.81661613917405],[-127.37074731033387,56.81667838378841],[-127.37076153190988,56.81679029787381],[-127.37075968363506,56.81696962075267],[-127.3707445168747,56.81714908457431],[-127.37072318277238,56.81732861366788],[-127.3707018648742,56.81750814260446],[-127.3706795134343,56.81768768249055],[-127.370666379913,56.81786712486385],[-127.37067273236335,56.81804636109118],[-127.37069753769796,56.81822540210282],[-127.37074585077141,56.81840195311382],[-127.37085340898336,56.81857227401196],[-127.37101988844601,56.81872628225878],[-127.37123394841731,56.818862977014625],[-127.37142067944447,56.81901004656993],[-127.3715404417186,56.81917687588029],[-127.37157755403506,56.8193557866107],[-127.37155208208655,56.81953423927317],[-127.3714762643086,56.81970986297088],[-127.37140659704669,56.81988542153104],[-127.37133893983881,56.82005983814208],[-127.37125278851778,56.82023332982605],[-127.37120473645045,56.82041090083348],[-127.37119673874052,56.8205902892245],[-127.3712113356114,56.82077055915297],[-127.37128416385318,56.82094460954346],[-127.37140904949341,56.821111385006766],[-127.37156843669989,56.82126770930028],[-127.37175724749572,56.82141475670984],[-127.37196019803454,56.82155605089876],[-127.37214293973382,56.821705403368796],[-127.37230840436357,56.821859421204714],[-127.37238854386739,56.82203675567681],[-127.37226705689659,56.8221971747334],[-127.37211690121654,56.82235901794088],[-127.3720492826322,56.82253455542027],[-127.37206076043392,56.82271373790008],[-127.37215415791593,56.82288869092014],[-127.37213997263731,56.82306702456438],[-127.3720807539819,56.823248076422125],[-127.37196039825825,56.82341184523095],[-127.37176331154626,56.823551771999824],[-127.37151852659537,56.82367763491016],[-127.37126416297723,56.82379351286761],[-127.37100971839716,56.82390714987337],[-127.37074999512592,56.824016359612926],[-127.37048607332143,56.82412337193084],[-127.37021900291762,56.824228175698096],[-127.36994976136258,56.824329639909635],[-127.36967536030787,56.82443003744256],[-127.36939037079853,56.82452158108517],[-127.36909450845334,56.82459530856718],[-127.36877267243355,56.82463120762759],[-127.36844319097783,56.82465373882236],[-127.36813958539221,56.82471185677211],[-127.36786820509184,56.82481109787802],[-127.36760653507132,56.82492368372346],[-127.36733837818241,56.82502737228239],[-127.36706703321764,56.8251277319625],[-127.366796759989,56.82522920041117],[-127.36653606157344,56.82534065316252],[-127.36625185397911,56.82542545765735],[-127.36593675411392,56.825478088320004],[-127.36562809886075,56.82553849483954],[-127.3653237254324,56.82560445875008],[-127.36501178620875,56.825659295137825],[-127.36469874987044,56.825711901021954],[-127.36439228324517,56.825776764116355],[-127.36408366271574,56.825838287202544],[-127.36377392861668,56.82589757996615],[-127.36354763840708,56.82602547421819],[-127.36318007461527,56.82584107242397],[-127.36297311121669,56.82570204771752],[-127.36277521135885,56.82555844478803],[-127.36256323440278,56.82542283415889],[-127.36232901706018,56.82529642223599],[-127.36214688824522,56.82516385910383],[-127.36193728964916,56.82500805085032],[-127.36175351517576,56.824857574137646],[-127.36152155179136,56.82473674041768],[-127.36121079725892,56.82470862721862],[-127.3609123781457,56.82471064122214],[-127.36064114820688,56.82461039005246],[-127.36038386372334,56.824498785444376],[-127.36011960868368,56.82439285675771],[-127.3598563492188,56.82428579645824],[-127.35958708045189,56.82418328129149],[-127.35932985763745,56.82407279468244],[-127.35908460864795,56.823953216814346],[-127.3588264340192,56.82384498053061],[-127.3585352997848,56.8237617435689],[-127.35821785254645,56.823718004433374],[-127.35791200158127,56.8236539713607],[-127.35760417968356,56.82359219952315],[-127.35728956666715,56.823541704569706],[-127.35696648189104,56.82351258986385],[-127.35663910464604,56.823507052869324],[-127.35632170093585,56.8234644293304],[-127.35600418007448,56.82341844431113],[-127.35587456035319,56.82340747367686],[-127.35570944810952,56.8233498071658],[-127.35559723613922,56.82327925989768],[-127.35547239438708,56.8232290162854],[-127.35514646506084,56.82320665071981],[-127.35482808762065,56.82316515440281],[-127.35450682298712,56.82312929072044],[-127.35418749183867,56.82309004410559],[-127.35387288736878,56.823039540872784],[-127.35356997617849,56.82297098441303],[-127.3532651951048,56.82290805001251],[-127.35296658114459,56.82281591375322],[-127.35271339448126,56.822732267715374],[-127.35245020440385,56.822597175984676],[-127.35221541188862,56.82248195897415],[-127.35195820504644,56.822371458021614],[-127.3516859420967,56.82227007880424],[-127.35139589130154,56.822187935509334],[-127.3510841861171,56.82213179219157],[-127.35076281614847,56.822092558544384],[-127.35045419664475,56.82203638156263],[-127.35016407199255,56.82195199505177],[-127.34986412615949,56.82188003730304],[-127.3495760153868,56.82179450788492],[-127.34930380183106,56.821694243934296],[-127.34906767807058,56.82157007016434],[-127.34883454522173,56.82144362356758],[-127.34861148741501,56.82131146849633],[-127.34835634913834,56.82120093913142],[-127.34807515827862,56.82110748999105],[-127.34781394954747,56.82099926404787],[-127.34754900907105,56.82090116218774],[-127.34722890410733,56.82086863064099],[-127.34690233356704,56.820856337068264],[-127.34657784988451,56.82087427829726],[-127.34625938084358,56.82091793095886],[-127.34593712536122,56.82094145062765],[-127.34560945962298,56.82092692388935],[-127.34528292807589,56.820915746470895],[-127.34495756555056,56.82093817531842],[-127.34465311517974,56.821001850015506],[-127.34440034971566,56.82110645139506],[-127.34413863645884,56.82121898958808],[-127.34382705294166,56.821283856961365],[-127.3435048707702,56.8213096110604],[-127.34329777101368,56.821311758426525],[-127.34319214530018,56.82128259621323],[-127.34289916912961,56.82120382646319],[-127.34260215456831,56.82112733919559],[-127.3422793343271,56.82110490933859],[-127.34205358686948,56.82110164471825],[-127.34197036245776,56.821067766924806],[-127.34164960294788,56.82110470807642],[-127.34134465708684,56.8211538117498],[-127.34110910146059,56.82128176187975],[-127.34088493035073,56.821412955673686],[-127.34066491397445,56.82154522672356],[-127.34040199810127,56.8216532871413],[-127.34012638942865,56.82175027190585],[-127.339864550817,56.82183030407817],[-127.33963185166874,56.821981755380754],[-127.33935202125313,56.82207542020472],[-127.33906260472298,56.82215909773042],[-127.33878068231692,56.82225166228429],[-127.33847066674734,56.82230305276186],[-127.33814616701758,56.82232097289228],[-127.33781940625359,56.8223333123554],[-127.33748859933017,56.82234681339982],[-127.33727841500833,56.82246777071155],[-127.33709169288265,56.82261426026663],[-127.33686648333729,56.82274545771326],[-127.33664545086727,56.822878852951185],[-127.33637714774348,56.822980236820676],[-127.33608993982561,56.823068367396324],[-127.33581005427132,56.82316090439408],[-127.33558274790087,56.82329100055443],[-127.33536059700667,56.82342216381765],[-127.33511022799152,56.82353792850753],[-127.33483459261781,56.823634902130074],[-127.33459353400161,56.82375281117006],[-127.3344047284616,56.82389931826107],[-127.33423667624524,56.824052335212635],[-127.33415468280805,56.82423248185657],[-127.33407648073589,56.82440362430589],[-127.33398087771333,56.82457606650631],[-127.33386564600484,56.82474422814958],[-127.3336893465926,56.82489620866992],[-127.33356993399752,56.82506217181351],[-127.33350110216853,56.82523770008413],[-127.33343539262282,56.825414316840806],[-127.33333562194059,56.82558456022577],[-127.33316033377785,56.825736529639556],[-127.33295594767753,56.825877591741964],[-127.33271284081198,56.82599663895611],[-127.33249158240508,56.826124426160725],[-127.33228301309359,56.82626328892533],[-127.3320962537181,56.82640977162819],[-127.33191369384248,56.826559572817736],[-127.33173630630274,56.82671044123285],[-127.33159314947302,56.82687216405859],[-127.33146448496363,56.82703822038452],[-127.33141927117924,56.82721462559322],[-127.33142442604183,56.82739387521133],[-127.33147874591805,56.827571499043],[-127.33163086715088,56.82772906698029],[-127.33180436097246,56.827881932545324],[-127.33193718637597,56.82804530169999],[-127.33204327447284,56.82820670430571],[-127.33216519997583,56.82838139174486],[-127.33229290961717,56.828544813209795],[-127.33237788266156,56.82871875977166],[-127.33251987339908,56.82887979294829],[-127.33270646691027,56.829025798946894],[-127.33291142061375,56.82916825392928],[-127.3331152649095,56.82930847874249],[-127.33328773801699,56.82946135310597],[-127.33351577145295,56.82958900139513],[-127.33383528986845,56.82963278009125],[-127.33413006953803,56.82970258749936],[-127.33434618810767,56.82984156349025],[-127.33442084111269,56.830013373950855],[-127.33442520856677,56.83019935588227],[-127.33452429741544,56.83036531149053],[-127.33473837012127,56.830504308005814],[-127.33493922075495,56.83064680233013],[-127.3350466716967,56.83081715406097],[-127.33513982747846,56.8309898942963],[-127.33521051666328,56.83116510725622],[-127.33527708802258,56.83134036263118],[-127.33535289786157,56.831515522804764],[-127.33548272107201,56.831680040559164],[-127.33561361261806,56.831875925278176],[-127.33574538408543,56.83200792402562],[-127.33591383260801,56.83216195751015],[-127.33603145362382,56.832329962547284],[-127.33613788030607,56.832500324209605],[-127.33626466403193,56.83266599333332],[-127.33638939773682,56.832831683500444],[-127.33643761112022,56.833009369138395],[-127.33649911033469,56.83318579712816],[-127.3365493593904,56.83336346178115],[-127.33659552302704,56.83354116857227],[-127.33668052640971,56.8337151128563],[-127.3368195072066,56.83387729389001],[-127.33699707398594,56.834027870280806],[-127.33719998008654,56.83416921983881],[-127.3373866555544,56.83431633982998],[-127.3375267140359,56.834479629746795],[-127.33766972600868,56.83463952711383],[-127.33786859648814,56.834783158686],[-127.33807450080887,56.83492223476967],[-127.33830869714726,56.835048691282594],[-127.3385075497264,56.83519120149351],[-127.33870437491713,56.835334853017],[-127.3388799432846,56.83548656840118],[-127.33900979483832,56.83565108303173],[-127.33915490735019,56.835812077934136],[-127.33930916596682,56.83597073689431],[-127.33942579588953,56.83613874976534],[-127.3395169491802,56.83631150845882],[-127.33959786919911,56.83648549353105],[-127.33967474256319,56.83666064105575],[-127.33974442880523,56.8368358628508],[-127.33975576112316,56.837015049774784],[-127.33975790956141,56.837195452298936],[-127.33976412188595,56.837374692186586],[-127.33977853969279,56.83755384727889],[-127.33965543847982,56.83773218249678],[-127.3395320112885,56.837871298190095],[-127.33926632288977,56.83799171203947],[-127.33899485287974,56.83809313399587],[-127.33873076350888,56.83820008240117],[-127.33851576451194,56.83833229830568],[-127.33836019057937,56.83849191655392],[-127.33818072203107,56.83864281609782],[-127.33806132503511,56.83880990505795],[-127.33793262621413,56.838974848625604],[-127.33780600009703,56.839140891330274],[-127.33769693473354,56.83931011464555],[-127.33757343066664,56.839477245568354],[-127.33750662046566,56.83965163595985],[-127.33745837284077,56.83982919675676],[-127.33740603820924,56.84000679971902],[-127.33738658816027,56.84018630469982],[-127.33737637791684,56.84036571436657],[-127.33737745912386,56.84054500755579],[-127.3373507977767,56.84072346633553],[-127.33720034645219,56.840883030433076],[-127.33703340403964,56.84104052315181],[-127.33695100010668,56.8412094709518],[-127.33689438674827,56.8413826353373],[-127.33671175242391,56.841531324268296],[-127.33658302237107,56.84169626694754],[-127.33648117194038,56.841866535643554],[-127.33643398958048,56.84204520589957],[-127.33641142605454,56.8422236223523],[-127.3364063703138,56.84240409963433],[-127.33637970320108,56.84258255842303],[-127.33635817313458,56.84276096426723],[-127.33637769806762,56.84294006755394],[-127.33635675933633,56.84310614014891],[-127.3364049197422,56.84331184396879],[-127.3364299193417,56.84347071910454],[-127.33651289213412,56.84364468573439],[-127.33660913238317,56.843816274236495],[-127.33668907612633,56.84399139269264],[-127.33676591249038,56.844165422513704],[-127.33682537923535,56.844341872741396],[-127.33687525678728,56.84450833596056],[-127.3370704127944,56.84475062609111],[-127.33634936488573,56.8449104698813],[-127.33605615926612,56.84497848994848],[-127.33576441260846,56.84505882151632],[-127.3354511242529,56.845110237299316],[-127.33517431822176,56.84520722343866],[-127.33489536522912,56.84530198977604],[-127.33458855496131,56.845362301984785],[-127.3342590702761,56.845390347838126],[-127.3339409390108,56.84542051733911],[-127.33364473313603,56.84549080407145],[-127.3333752861424,56.84559331388802],[-127.33309739869775,56.84568918600152],[-127.33281417900416,56.845779509057415],[-127.33257100156517,56.845899677580185],[-127.332298115378,56.84599213458576],[-127.33197151653368,56.846014541635824],[-127.33164432188768,56.84602014416382],[-127.33131618663099,56.84602799683304],[-127.33098927826165,56.8460414393455],[-127.33066246896682,56.8460582419769],[-127.33034016505759,56.84608620409003],[-127.33001918681104,56.846123117029414],[-127.32969717383492,56.84616003978153],[-127.32938490260155,56.84621143033568],[-127.32908362166384,56.846283999883596],[-127.32879401804635,56.8463676555745],[-127.32852877127871,56.84647347409236],[-127.32829814031784,56.84660135047965],[-127.32807588563509,56.84673362326127],[-127.32784939382827,56.8468625770931],[-127.3276187747127,56.84699045213515],[-127.3273754801315,56.84710837065355],[-127.32712288188783,56.84722414263744],[-127.32705013780814,56.8473470385283],[-127.32712552314199,56.847540140025316],[-127.32721018484364,56.847704009538056],[-127.32738773922875,56.84785348014062],[-127.32757448192342,56.84800173578882],[-127.32772670614062,56.84816043059051],[-127.3278809671265,56.84831910438181],[-127.32804326107096,56.84847209246059],[-127.32811161218602,56.848639490577774],[-127.32809976670089,56.84883236461884],[-127.32812748072841,56.84901138558728],[-127.32816403568708,56.8491791094515],[-127.32817775495573,56.84936948037069],[-127.32816544753796,56.84954891136991],[-127.32820752644425,56.84972778525927],[-127.32821675703345,56.84990699566573],[-127.32819213745927,56.85008655285463],[-127.32812944766592,56.8502631380606],[-127.32804850346879,56.850446634164314],[-127.32798412371481,56.85060418547614],[-127.32786606487863,56.8507824583349],[-127.32778580614605,56.850955861380555],[-127.32771484984346,56.85113141044576],[-127.32765313552227,56.8513068648529],[-127.32771352892362,56.85148106893817],[-127.32789718194343,56.85162823563428],[-127.32817961884487,56.85172284001686],[-127.3285064827691,56.85173630127727],[-127.32882571632682,56.851766649779115],[-127.32910978477226,56.85184890822188],[-127.32930769414038,56.85199256491815],[-127.32947823983211,56.85214658783349],[-127.32965791409433,56.85229715496908],[-127.32976942915452,56.85246523078124],[-127.32990334832297,56.85262859410686],[-127.33002409196621,56.85279657510371],[-127.3301529296843,56.85296111100934],[-127.33027873699436,56.853126798563906],[-127.33040354964793,56.853293616889445],[-127.3305334085327,56.85345814202516],[-127.33063986916436,56.85362851046843],[-127.33066451185401,56.85380756311125],[-127.33067893218524,56.85398784133494],[-127.33059971374786,56.85416123585969],[-127.33049368317847,56.85433154347796],[-127.33039898589185,56.85450285540198],[-127.33029193557444,56.85467317333588],[-127.33015273509886,56.854833735042],[-127.33005080528994,56.85500400026718],[-127.32985252559591,56.85514835771467],[-127.32969160996632,56.85530465899116],[-127.3295834978123,56.85547386659981],[-127.32948259817698,56.85564412084181],[-127.32937344978308,56.855813338916626],[-127.3292767301002,56.8559857914873],[-127.32917688428104,56.85615715537769],[-127.3290180526102,56.85631455514801],[-127.32884880369329,56.85646757883151],[-127.32852894270012,56.85647982143813],[-127.32820132875824,56.85647533275071],[-127.3278762077072,56.85645400779999],[-127.32755756921884,56.85641244378454],[-127.32724080778068,56.856365256480856],[-127.32691488463864,56.856350661307715],[-127.32658754122927,56.8563540104103],[-127.32626482443669,56.856373000609494],[-127.32594711272547,56.856417714006966],[-127.32564513076072,56.85647235176189],[-127.32533737511012,56.856538254414694],[-127.32501465616446,56.85655724150522],[-127.3246873108405,56.85656058581221],[-127.32436222941182,56.85654037231875],[-127.32405815037579,56.8564739965328],[-127.32373523751802,56.856457121316055],[-127.32340937137336,56.85647389521749],[-127.32308072368315,56.85646940415149],[-127.32275309404456,56.85646490186895],[-127.32242630715778,56.85645478687022],[-127.32209857913567,56.85644692196294],[-127.3217762809356,56.85647822394356],[-127.32145056702466,56.85649947399657],[-127.32113574978264,56.856448890060356],[-127.3208228544213,56.8563949238193],[-127.32050522011251,56.856352211674775],[-127.32021593763017,56.856267745764754],[-127.3199062848478,56.85621822696708],[-127.31957767800057,56.856214847293444],[-127.31925008918031,56.85621145643114],[-127.31892171189936,56.856214796708166],[-127.31859553984991,56.8562225963607],[-127.31826823502968,56.856227044734176],[-127.31794361570516,56.85625051616605],[-127.31762361378532,56.85628850841268],[-127.3173035948173,56.85632650003762],[-127.3169790668617,56.85635220942877],[-127.31665459840798,56.856380158714316],[-127.31633348341843,56.856415917743995],[-127.31601236783456,56.85645167597945],[-127.31570873882384,56.85651863439623],[-127.31542221433334,56.856605590419214],[-127.31505165513228,56.85669675998114],[-127.31470237955962,56.85671935262264],[-127.31462621327812,56.85680417405532],[-127.31452000182595,56.85700136571133],[-127.31426083831032,56.85710821360838],[-127.31414847249708,56.857275209598484],[-127.31396654114202,56.85741937657262],[-127.31372739646996,56.85754170975207],[-127.31343667889338,56.85762646248609],[-127.31311354261139,56.85763309682283],[-127.31278369957262,56.8576241090483],[-127.31245372088378,56.85761063918168],[-127.31212577844082,56.857597147875175],[-127.311798718507,56.85757916418816],[-127.31147060284333,56.85756006969953],[-127.31114459955279,56.85754319434023],[-127.310818841016,56.8575330396289],[-127.31050507635358,56.85757431308684],[-127.31018011550798,56.85758768248972],[-127.30985864415804,56.85755282761679],[-127.30954374115132,56.85749997512986],[-127.30921884955819,56.8574853250301],[-127.30889122934663,56.857480787561165],[-127.30856280244377,56.85748298133969],[-127.30823550730963,56.85748852483553],[-127.30790871557325,56.85747837325052],[-127.30758546583812,56.85748163299456],[-127.30725707675899,56.85748494373969],[-127.30693156858463,56.85748262134296],[-127.30660470146874,56.85747022592581],[-127.3062773468282,56.8574735237679],[-127.30595112373942,56.85748017135267],[-127.30562277239034,56.85748459823334],[-127.30529536327674,56.85748677348861],[-127.30501730462571,56.857490692610426],[-127.30464848149275,56.85745181876617],[-127.30433655982911,56.85739556176313],[-127.30401987790887,56.857350558430795],[-127.30372164716194,56.85730424818616],[-127.30337064479735,56.85730665578408],[-127.30304461153092,56.85731889742863],[-127.30271750586193,56.85733002837052],[-127.30239060524251,56.85734675969532],[-127.30206722782516,56.85737690266322],[-127.30177429665068,56.8573966533144],[-127.30142777554515,56.857410217196254],[-127.30110309833405,56.857432526218346],[-127.30078534881481,56.85747717800375],[-127.30047306082002,56.85753186011567],[-127.30015107535813,56.85757319085316],[-127.29986098529724,56.85764670003234],[-127.29961977979781,56.857770148062315],[-127.29936915652335,56.85788808673399],[-127.29908369489243,56.85797723692159],[-127.29876187251419,56.85799278751256],[-127.29844125614868,56.85801392849302],[-127.29813880707228,56.85808643686441],[-127.29784477612834,56.85816558419442],[-127.29753236553736,56.858216898420196],[-127.2972122520475,56.85825259979672],[-127.29690211802719,56.858310613636895],[-127.29659740685119,56.858377537732984],[-127.29629376666202,56.8584455710531],[-127.29598040886967,56.85849913227981],[-127.29566262824028,56.85854377170899],[-127.29533795459658,56.85856606615087],[-127.29500959280752,56.85857046616517],[-127.29468187356761,56.858563652408655],[-127.29435679101306,56.858543363681335],[-127.29403244307646,56.858514101595205],[-127.29371199662963,56.85847919652269],[-127.29339053272653,56.8584443008124],[-127.29307097191446,56.85840490272913],[-127.29275039372074,56.858365514007616],[-127.29243079673705,56.858324994071005],[-127.29211990384859,56.85826869751055],[-127.2918207812866,56.85819547319914],[-127.29150499204471,56.85814594786961],[-127.29121205003395,56.85807378128073],[-127.2909615983375,56.85795188243272],[-127.29069833940022,56.85784579970407],[-127.29039558788705,56.857787176760624],[-127.29007405792257,56.857750032289154],[-127.28974565237925,56.85772192061119],[-127.28941928334667,56.85769378785815],[-127.28909413611746,56.85767124539469],[-127.28876636723002,56.85766217597459],[-127.2884386941555,56.857656466725714],[-127.28811198091292,56.85764850581638],[-127.28778396216512,56.85766297004494],[-127.28745992600878,56.857704289496425],[-127.2871933045329,56.85780555334799],[-127.2870635789295,56.85794804276334],[-127.28701820090986,56.858126676438616],[-127.28697384050382,56.85830530001544],[-127.28693759414026,56.858480481123294],[-127.28680548731221,56.85864428629341],[-127.28677036985106,56.85882281813102],[-127.28674134603436,56.85890715488201],[-127.2867721974857,56.85900098340725],[-127.28679458777843,56.85918006532799],[-127.28689591831397,56.85935612266615],[-127.2869027101964,56.859436742125006],[-127.28690893184574,56.8595308150567],[-127.28683557226412,56.85970188192384],[-127.28678392147926,56.85987721597284],[-127.28680936209882,56.86005514707994],[-127.2869013546059,56.86022793523388],[-127.2870554960855,56.860386658781984],[-127.28708508082671,56.860565669434145],[-127.28710952609218,56.86074473110826],[-127.28719946895858,56.86091753949725],[-127.28730267188051,56.86108797493208],[-127.2874446310099,56.86125018102918],[-127.28758452225905,56.86141240752898],[-127.28777015960578,56.86156073186229],[-127.28793549580519,56.86171598147487],[-127.28810996651976,56.86186777822547],[-127.28828526993951,56.86201396323324],[-127.28845177774005,56.86217368324766],[-127.28857329342345,56.86233833270449],[-127.28869791836601,56.8625040718346],[-127.28880216670579,56.86267449596891],[-127.28888291353266,56.86284851555567],[-127.28897591916314,56.86302017198189],[-127.28909446456686,56.86318821256902],[-127.28921802251142,56.863352841289206],[-127.28939147106547,56.863504646758095],[-127.2895720390894,56.86365413992853],[-127.28973635688874,56.863809397739196],[-127.28986407895627,56.863975105203984],[-127.28997342277566,56.86414435731934],[-127.29009502597049,56.86431124612348],[-127.29023186842592,56.86447350062965],[-127.29037278025005,56.864634593880425],[-127.29048007533495,56.864803866062246],[-127.29055776312352,56.86497791539697],[-127.29065590523076,56.865149519869746],[-127.29075610106689,56.86532110385854],[-127.29089398452015,56.865483347474814],[-127.29104311428486,56.86564435837793],[-127.29114429390836,56.86581481170239],[-127.29127811242078,56.86597821611479],[-127.291408919411,56.8661438917142],[-127.29147228116777,56.8663192040056],[-127.29153464628632,56.866495646872046],[-127.2916134143645,56.866670805744626],[-127.29171049331816,56.866841299623275],[-127.29181476665258,56.867011721807685],[-127.2919170254213,56.86718328465839],[-127.29198673744172,56.86736413689739],[-127.29206715009737,56.86752695201065],[-127.29212450806592,56.86770680662574],[-127.29218380712707,56.86788327993],[-127.29228017320442,56.868062745939206],[-127.2923348052592,56.86822245584144],[-127.29239465434182,56.86850762755039],[-127.29215645123793,56.86847750146927],[-127.2918493957389,56.868415561567744],[-127.29153553847135,56.868364895258765],[-127.29121582258264,56.86832325178463],[-127.29089614482434,56.868282727809365],[-127.29057742759137,56.868239952181455],[-127.290256716475,56.868199436927306],[-127.28993400686016,56.86816006141941],[-127.28961429439333,56.86811841400386],[-127.28930044247174,56.86806774229731],[-127.28900134511083,56.867997872047354],[-127.28874486395893,56.867881630779934],[-127.28859539877226,56.8677105344315],[-127.28842155145196,56.867577782464735],[-127.2881196611183,56.86754716099124],[-127.28779480521652,56.86753581798833],[-127.28745598942093,56.86753693995434],[-127.28711432633652,56.86754481322779],[-127.28677782466615,56.86755375505526],[-127.28645066496532,56.86756596532905],[-127.2861239691055,56.8675916180536],[-127.28580390013875,56.86763177279465],[-127.28549261812603,56.867688649505425],[-127.28519332665138,56.86776669913195],[-127.28492139370488,56.86786464887115],[-127.28470934035367,56.86800346928209],[-127.28452332887953,56.86815323802978],[-127.28433306092224,56.868298566028855],[-127.28407275708403,56.86840648473123],[-127.2837776377063,56.86848673105736],[-127.28346307193183,56.868538032048285],[-127.28314325287334,56.86858602226542],[-127.28284223765388,56.86851951880243],[-127.28255685008158,56.86842932636492],[-127.28226356570482,56.86834817662493],[-127.28195946611267,56.868281701646154],[-127.28164562290742,56.8682310114157],[-127.2813211868398,56.86820171752368],[-127.28099870924024,56.86816904151939],[-127.28067527175725,56.86813861550666],[-127.28035187191887,56.86810930897674],[-127.28002934236089,56.86807551043829],[-127.27970781096664,56.868040580602184],[-127.279385373184,56.868009020879505],[-127.27906193831164,56.86797859084775],[-127.27873854103703,56.86794928029896],[-127.2784132395664,56.86792447033394],[-127.27809646448416,56.867878283115665],[-127.27777589706999,56.86784109772268],[-127.27745440671542,56.86780728259593],[-127.27713979785932,56.8677644336945],[-127.27681545961616,56.867737368959986],[-127.27648833030979,56.86771929611527],[-127.27616146040197,56.86770906447219],[-127.27583897485643,56.86767637581413],[-127.27551463826401,56.86764930782896],[-127.27518845462424,56.86762898111529],[-127.27486158582498,56.86761874619759],[-127.27453288600712,56.86761525236755],[-127.27420679350823,56.86759716360441],[-127.27388149791392,56.86757234228161],[-127.27356576584167,56.86752613384932],[-127.2732607637749,56.86746300954465],[-127.27296852454107,56.86738182884699],[-127.27267632344729,56.86730176778531],[-127.27240703973105,56.86720018888835],[-127.27215677269655,56.86708385447348],[-127.27189045242048,56.8669788835272],[-127.27163820918886,56.866864808838606],[-127.27138593057313,56.866749613377614],[-127.27111660080946,56.86664691170869],[-127.27083430520464,56.86655554304562],[-127.27054901345281,56.86646644443666],[-127.2702587298586,56.86638187670713],[-127.26994586203088,56.86632890768315],[-127.26964694004123,56.866262353601265],[-127.26937347565733,56.86615856824403],[-127.26906450815781,56.8661302132723],[-127.26875317681106,56.86618592947086],[-127.2684295888304,56.866212627862716],[-127.26810126934008,56.866220320645944],[-127.26781972665957,56.86630824221615],[-127.26761272417387,56.86644586400433],[-127.26743183123676,56.86659667814751],[-127.26717650554941,56.866701151885515],[-127.26683274422265,56.866770628034594],[-127.26661579735304,56.86685567476965],[-127.26634907451209,56.8669568961966],[-127.26602555184934,56.86698582918851],[-127.26573135069499,56.867063783864666],[-127.26540442513364,56.86708266265012],[-127.2650831371326,56.86711717472722],[-127.26479007782204,56.8671984780609],[-127.26449587255516,56.86727642994577],[-127.26417674510337,56.86731428064686],[-127.26386648875591,56.867372215821014],[-127.26358544967125,56.867444434085556],[-127.2633066900097,56.86755473162977],[-127.26302843419012,56.86764933456344],[-127.26273631155821,56.86772838278382],[-127.26246337689527,56.86782853593994],[-127.26218184627086,56.867917565657834],[-127.26189346640639,56.86801674723515],[-127.26158584964251,56.86806120341792],[-127.26127018657355,56.868111340350204],[-127.26095223007786,56.86815365425455],[-127.26062993103086,56.86818928567865],[-127.26031197319233,56.86823159801588],[-127.25999756107494,56.86828844357019],[-127.25970117519199,56.86836304369375],[-127.25950543271813,56.86850054299043],[-127.25950595419607,56.868674238603916],[-127.25947778578266,56.86884933344576],[-127.25935497682364,56.86901974387528],[-127.25917194999474,56.869169446384106],[-127.25896181352806,56.86930708459141],[-127.25872452716182,56.86943041745218],[-127.25845129813777,56.869522720365566],[-127.25816345706569,56.86960731986859],[-127.25787772438417,56.86969413958069],[-127.25757499833388,56.86976319299847],[-127.2572967125693,56.869857783771494],[-127.25705511252808,56.869975552097415],[-127.25685853642115,56.87011977934901],[-127.25668169056914,56.87027053906994],[-127.25648821951779,56.87041585633006],[-127.25629985166717,56.87056000323036],[-127.25577281408829,56.87039476736739],[-127.25549254411814,56.87030222493037],[-127.25523024398932,56.870193818936386],[-127.25496696338163,56.870086542568494],[-127.25473391875256,56.86996216350055],[-127.25447269421906,56.86985486628702],[-127.2541824567424,56.86977138270013],[-127.25391429553295,56.86967199600848],[-127.25362208025663,56.86959077161753],[-127.2533541035101,56.86949698526528],[-127.25305693151147,56.86942141076722],[-127.25275672558793,56.86934698555097],[-127.25245072483087,56.86928382208403],[-127.25213783803504,56.86922968955869],[-127.25182299153566,56.86917893714378],[-127.25150720013514,56.869130434385944],[-127.25119629640017,56.869074039192796],[-127.25089319034716,56.86900524095121],[-127.25058514227415,56.868942092895544],[-127.2502810925513,56.86887554364202],[-127.24998096872831,56.86880335262386],[-127.24968084602706,56.86873116091484],[-127.24938464937163,56.86865332747849],[-127.24909942784315,56.86856530188014],[-127.24882614725759,56.86846595425075],[-127.24854385488356,56.86837341668235],[-127.24828162355817,56.868266117071684],[-127.24801837538665,56.86815882673561],[-127.24773710549259,56.86806627763279],[-127.24744195257438,56.867988429841255],[-127.24713197374842,56.86792865426353],[-127.24682008751628,56.86787337887227],[-127.2465101828826,56.86781584240891],[-127.24621296491777,56.867738011719965],[-127.2459109129381,56.86766919195615],[-127.24560684516007,56.867601511504205],[-127.24530575780217,56.86753043980557],[-127.24500759839378,56.86745485674104],[-127.24469377433643,56.86740295685332],[-127.24437800640673,56.867354436797406],[-127.2440612406469,56.86730704619603],[-127.2437426555394,56.867266396139655],[-127.24341825636208,56.86723700748131],[-127.2430930917754,56.867215469859815],[-127.24276612687963,56.86720179318235],[-127.24243919825011,56.8671892359796],[-127.24211032492794,56.867180058507806],[-127.24176271297463,56.86719459310522],[-127.24149441988638,56.86728120946615],[-127.24118504009081,56.86733571974884],[-127.24089289157104,56.867414718606035],[-127.24038126186117,56.86747004092878],[-127.2400643779974,56.867514534481806],[-127.23976474444623,56.867584637181544],[-127.2395084824585,56.86769466790952],[-127.23916918475972,56.86771247799119],[-127.23887849094642,56.8677735280766],[-127.23866632503102,56.86791339333311],[-127.23839016708293,56.868011284732745],[-127.23810022389473,56.86809585939373],[-127.23777558045596,56.86812249107099],[-127.23745206254797,56.868152473124205],[-127.23713183077157,56.868189146884355],[-127.23680340265416,56.86822589799759],[-127.23649011246776,56.868254659478815],[-127.23616882476769,56.86829022026982],[-127.23587965843926,56.868366938013914],[-127.23556647393099,56.86839905817114],[-127.23524291616515,56.86842791441914],[-127.23492605434437,56.86847351574969],[-127.2346047633843,56.8685090726721],[-127.23429664937508,56.86857139883392],[-127.23399603399903,56.86864373870639],[-127.23369111309283,56.868709394967865],[-127.23338083562106,56.86876837758159],[-127.23307589626084,56.86883403255844],[-127.23278063199851,56.86891304257363],[-127.2324885258597,56.86899426318844],[-127.23220175743492,56.86908215628964],[-127.23196224604435,56.86920321922796],[-127.2317437092986,56.86933753026916],[-127.2315178340614,56.869467428038],[-127.23132218354952,56.86961160687355],[-127.23110781993081,56.86974811850962],[-127.23092466376868,56.86989778138142],[-127.23078708436852,56.87005933865319],[-127.23065989591852,56.8702252797803],[-127.23055236235717,56.870395516919956],[-127.23043552543007,56.87056360093595],[-127.23031970586135,56.87073167520646],[-127.23017903297148,56.87089326120577],[-127.2300248979018,56.871051612772284],[-127.22986974318043,56.87120997382652],[-127.22971872927643,56.87136941609103],[-127.22956878461338,56.87152996869326],[-127.22937418686524,56.87167525527871],[-127.22917448200906,56.87182171060443],[-127.22897163269096,56.871965954123645],[-127.22875394575735,56.872095769495026],[-127.22846204154791,56.8721523248325],[-127.22814517679522,56.87219903001575],[-127.22785625020168,56.87228469251706],[-127.22757480183232,56.87237924875279],[-127.22728930031957,56.87247608400095],[-127.22703825412033,56.87259052302661],[-127.22693873320165,56.87275507821316],[-127.226925143143,56.872941233564],[-127.22696056670316,56.873119080893034],[-127.22701038021265,56.87329679213924],[-127.22702941349908,56.873475915155105],[-127.22693421047195,56.87364715343602],[-127.22688953522241,56.87382463770447],[-127.22689008804555,56.87400393556158],[-127.22696040038831,56.87418033243865],[-127.22705692801938,56.87434191298408],[-127.22704276845171,56.87451014360694],[-127.2271564719137,56.87469509522116],[-127.22730770969848,56.87486512332304],[-127.22742921824808,56.87503655318547],[-127.22751687392213,56.87520942390362],[-127.22761985162478,56.875379908321904],[-127.22773916728144,56.87554687614539],[-127.22788091292098,56.87570914902938],[-127.22800228417377,56.87587609721263],[-127.2280725885769,56.87605249385431],[-127.22804434353013,56.876229823299674],[-127.22798631456942,56.876407434652464],[-127.2279499809795,56.87658932325158],[-127.22790952085697,56.876770130265136],[-127.22783070604874,56.87694009378218],[-127.22761407701437,56.877072138636024],[-127.22735812556118,56.87719446928296],[-127.22706748410462,56.877259974512704],[-127.22673577691161,56.877260869849955],[-127.22640575100932,56.877250541981724],[-127.22607949306378,56.87722897120542],[-127.22575516589644,56.87720401943307],[-127.22543074892421,56.87717570576404],[-127.22510731543204,56.87714626135648],[-127.22478381136928,56.877114575522235],[-127.22446107772409,56.87707503709515],[-127.22413739722283,56.87703774809767],[-127.22381428540503,56.87701838326609],[-127.22348997226064,56.877025924455374],[-127.22316524368892,56.87705251972307],[-127.22284074657028,56.877086956511036],[-127.22251731931289,56.877122503047715],[-127.22219601589529,56.877160270058084],[-127.2218768362684,56.87720025755804],[-127.2215566728699,56.87724137417499],[-127.22123533209492,56.87727801849779],[-127.22091277863197,56.87730907020581],[-127.22058686928371,56.87733118751756],[-127.22026088876042,56.87735106338706],[-127.21993490790159,56.87737093843792],[-127.21960794353579,56.87739194255653],[-127.21926939317183,56.87740408956641],[-127.21892771871323,56.87741514439577],[-127.21860294837504,56.877440607940514],[-127.21831413169316,56.87749935241182],[-127.21810360872217,56.87763020312068],[-127.21793860558014,56.87780433134765],[-127.21773752447226,56.87794181669974],[-127.21744633127848,56.87799049571346],[-127.21710529769942,56.877989212591565],[-127.21676345737325,56.87799466000575],[-127.21645176212989,56.87804464967843],[-127.2161510913093,56.878118068797214],[-127.21585582727133,56.87820040170181],[-127.21556572298717,56.87828380623301],[-127.21528204144819,56.87837499446213],[-127.21501205121697,56.87847726030121],[-127.21474941515496,56.87858505994389],[-127.21449414963972,56.87869839328182],[-127.21424723799099,56.8788161305133],[-127.21400560798479,56.878938300431244],[-127.21376301184985,56.879062720220766],[-127.21353291199108,56.879192625903435],[-127.21332104694385,56.87931451615344],[-127.21316819615278,56.87948404202069],[-127.21310240512943,56.879646029946166],[-127.21300238630347,56.879829630075484],[-127.21280191044131,56.87998727364379],[-127.21261240336166,56.88013472859434],[-127.21235921019664,56.88024915896966],[-127.21209420091135,56.88034688954878],[-127.21203811094733,56.88052335473458],[-127.21201196694548,56.880705143432216],[-127.21198987624862,56.88088465299441],[-127.2120161453827,56.88106707281774],[-127.21206295220622,56.88124930082489],[-127.21204570627387,56.8814198000403],[-127.21180528263281,56.881548678454465],[-127.2115257296333,56.88164206109278],[-127.21123934673238,56.881746713330415],[-127.21101557525155,56.88181716125435],[-127.2107511677718,56.881967553787106],[-127.21047059051202,56.88206094368243],[-127.21015767691927,56.88207282739934],[-127.20984804691068,56.88205890489897],[-127.2095211436132,56.8820507458931],[-127.20919350244806,56.88205155810349],[-127.20886563439122,56.882045647728745],[-127.2085394509364,56.88202739374103],[-127.20821219762601,56.88200802825271],[-127.20788582079703,56.88201666990725],[-127.20755854885968,56.882029801648834],[-127.20723161126533,56.882020516557034],[-127.20690542879531,56.88200225846266],[-127.20657828154205,56.88198624981132],[-127.20647193927255,56.88219904039674],[-127.2065278151931,56.882376703403956],[-127.20655600833167,56.882555744452986],[-127.20656777112494,56.88273493828942],[-127.20656006581503,56.88291543380519],[-127.2066230698291,56.883090789300034],[-127.20673617553994,56.88325895502212],[-127.20684422582947,56.883429408979616],[-127.20696960311345,56.88359521913627],[-127.20715907502986,56.88374138200558],[-127.20739022444185,56.88387370910846],[-127.20754532775294,56.88400450218144],[-127.20768429735568,56.88417802979989],[-127.20776691761185,56.88435656433417],[-127.2077777028736,56.8845368880706],[-127.20771463542962,56.88472126108965],[-127.20764935466454,56.884900051456455],[-127.20755800527006,56.88506675726064],[-127.20748521078639,56.885235531663106],[-127.2073257636702,56.885392785093664],[-127.20711524907706,56.8855269797559],[-127.20687899642931,56.885659172138865],[-127.20666247335392,56.88579790452795],[-127.20645263937959,56.885920885306405],[-127.20625589813608,56.886068398292565],[-127.20609856658204,56.886227871852796],[-127.2059701299925,56.88639155931311],[-127.20586658560867,56.88656285989906],[-127.20578577469271,56.886738431788736],[-127.20572659231146,56.88691604399842],[-127.20569207451581,56.88709342705942],[-127.20568740214065,56.88727277416022],[-127.20570535955913,56.88745303169543],[-127.20573049823284,56.88763322253433],[-127.2057504751271,56.887812340698545],[-127.20576741425442,56.88799260775349],[-127.20579046446261,56.888171697403706],[-127.20582174781738,56.88835071057921],[-127.20587759465496,56.888527254247826],[-127.20596823889228,56.88869899198868],[-127.20607321157047,56.888869475893706],[-127.20613523922688,56.88904596209175],[-127.20622693970135,56.88921881056543],[-127.20629200666883,56.889394147843554],[-127.2063437837951,56.88957184993959],[-127.20639043411707,56.88974959969353],[-127.20644735591117,56.889927253978335],[-127.20646012075979,56.890105318728644],[-127.20649344658003,56.890284313024154],[-127.20649904872653,56.89046356504697],[-127.20649236045921,56.89064405198856],[-127.20648358285963,56.89082343772057],[-127.20647480517852,56.89100282347277],[-127.20646602741581,56.89118220924524],[-127.2064551952867,56.891361614132734],[-127.2064062968039,56.89153913155638],[-127.20638515776638,56.891717511622936],[-127.20642666687121,56.89189530942118],[-127.20643641260021,56.89207564377147],[-127.20645639506839,56.89225476234202],[-127.20648254074763,56.892433823644616],[-127.20650868666942,56.89261288496278],[-127.20653277847282,56.89279196539251],[-127.20654968842072,56.89297111259936],[-127.20657643377119,56.89313672056884],[-127.20650361627513,56.89333799426428],[-127.20643227575444,56.89352132376428],[-127.20637164680842,56.8936855025878],[-127.20632897827535,56.89386520362455],[-127.20623029822545,56.894028615378566],[-127.20597409659429,56.89414866452301],[-127.20570711481807,56.894253124144605],[-127.20555793044062,56.89441140123394],[-127.20551418688224,56.894589991375646],[-127.20549411249131,56.89476948236222],[-127.20542046515013,56.89494498825481],[-127.20534990708535,56.89512046543335],[-127.20529069130122,56.89529695792657],[-127.20524591003286,56.89547555769501],[-127.2052316476607,56.89564378822388],[-127.20525006161357,56.89583861108226],[-127.2051996267004,56.896000453566955],[-127.20509803770838,56.896169494871366],[-127.20510164963508,56.896351007371514],[-127.20482941718075,56.89645215195472],[-127.20463728132924,56.896518933061536],[-127.20427575099129,56.896623146422165],[-127.20392728415428,56.89661965477792],[-127.20362746390191,56.89669303630743],[-127.2033425484429,56.896783088789434],[-127.20307134384076,56.8968842201154],[-127.20278956915664,56.89697648357093],[-127.20251839665107,56.897078734085596],[-127.20223445994169,56.897167654387054],[-127.20193145387195,56.8972376994979],[-127.20160394622879,56.897247455358205],[-127.20127645485684,56.897257210240426],[-127.20095824591695,56.897301618698805],[-127.200670106642,56.89738721246012],[-127.20041774915993,56.89750049105419],[-127.20016969005681,56.89761933268392],[-127.20000062884647,56.89770158267808],[-127.1999236676167,56.89773815500938],[-127.1996735160091,56.897855894368604],[-127.19940642191332,56.897958100618254],[-127.19912991468651,56.89805478999131],[-127.19887345545574,56.89816810343865],[-127.19861481924956,56.89827807451135],[-127.19834780543495,56.898382519125605],[-127.19810804086111,56.89850464216924],[-127.1978954887895,56.89864220282724],[-127.19767977542794,56.898777550992165],[-127.19745257774015,56.89890740145608],[-127.19722539496132,56.8990372513819],[-127.19701901923588,56.89917587429171],[-127.1968095681777,56.89931452522363],[-127.1965949175643,56.899450982432676],[-127.19638021426726,56.89958631911589],[-127.19616449031614,56.89972166484632],[-127.19593208390715,56.899849319313844],[-127.19570071155425,56.899976963837936],[-127.19565927513908,56.899999758563716],[-127.19547141069086,56.90010570952589],[-127.19523269660802,56.90022893819544],[-127.19494968617038,56.90031559254126],[-127.19465622720871,56.900396739138294],[-127.19436276701317,56.90047788507625],[-127.19407351913085,56.90056235356504],[-127.19378958843434,56.900652375782784],[-127.19352147487743,56.900755699818816],[-127.19323647121587,56.90084461002263],[-127.19293659782299,56.900917967063194],[-127.19262924629217,56.90098242686404],[-127.19233253032931,56.90105799479959],[-127.19206019661488,56.901157992577716],[-127.19178894987222,56.901260221109226],[-127.1915250401529,56.901366864349185],[-127.19128003743138,56.90148678141642],[-127.19105383790499,56.901616611408684],[-127.19083497531108,56.90175085632613],[-127.19060240080744,56.901874020071084],[-127.19034482096222,56.901986206111694],[-127.19008717052415,56.90209615097348],[-127.18979898945157,56.90218284136219],[-127.1895246208936,56.902283973064876],[-127.18925316881833,56.902379474192735],[-127.18902177728869,56.90250822751371],[-127.18882882210735,56.90265007633385],[-127.18859000207057,56.90277105231613],[-127.18839289967204,56.90291181779794],[-127.18830574129096,56.90308519641009],[-127.18812733753055,56.90323251428335],[-127.18783393260408,56.903216147800286],[-127.18757366025775,56.90330818112976],[-127.18734849130718,56.90343911583767],[-127.18711380609793,56.90356117192178],[-127.18692097646918,56.90370749936419],[-127.18675199234653,56.90386033249692],[-127.18661300239302,56.90401961522277],[-127.18663498846993,56.904199839787985],[-127.18672560189883,56.904372713199784],[-127.18683156792024,56.904543204929304],[-127.186950797254,56.90471021338368],[-127.18705063461711,56.90488188167161],[-127.18715556774082,56.90505238266243],[-127.18726253879542,56.90522174430484],[-127.18735008309307,56.90539464550772],[-127.18739255495763,56.90557244149614],[-127.1873970693275,56.90575282593178],[-127.18739847488197,56.90593211816188],[-127.1873885857335,56.90611151370077],[-127.1873817709061,56.90629088114558],[-127.18732452893961,56.90646846842097],[-127.1872641775351,56.90664496346134],[-127.18720486135763,56.90682144902366],[-127.18718467900631,56.90700093875277],[-127.18720150536254,56.907180090130026],[-127.1872152409356,56.90735926978706],[-127.18720431477135,56.90753867494971],[-127.18719955400041,56.90771802376188],[-127.18719967482696,56.907989221939815],[-127.18733829457466,56.90815157060766],[-127.18748201078166,56.908312751889895],[-127.18766037276889,56.90846353023573],[-127.1878438314716,56.90861314108221],[-127.18801708448296,56.90876508638758],[-127.18817612475206,56.908922764835374],[-127.18833920778829,56.90907816480093],[-127.18852267204483,56.90922777474858],[-127.18870510187662,56.90937739393402],[-127.18890274867768,56.90952014961138],[-127.18909841072505,56.90966516450935],[-127.18926863323793,56.909818256748714],[-127.18941849503251,56.90997825925025],[-127.1895601878809,56.91013945709995],[-127.18966720169152,56.91030993781938],[-127.18973428428716,56.91048526697024],[-127.18978602990374,56.91066297795499],[-127.18986335575326,56.91083709257871],[-127.18996729805107,56.91100760130202],[-127.19006407388378,56.91117929630608],[-127.19010951845154,56.911386202209066],[-127.19030344922234,56.91150769756726],[-127.19059950984445,56.91157446457961],[-127.19096312211624,56.91163164613391],[-127.19107358018418,56.91171356206367],[-127.19080930365027,56.91184374117106],[-127.19076032536682,56.91202237556116],[-127.19098414361713,56.912179457145356],[-127.19113909926524,56.9123371700172],[-127.19130120732696,56.912493696457595],[-127.19141944463779,56.91266071118003],[-127.19149469182764,56.91283372357174],[-127.19154126726785,56.913010361005874],[-127.19158171137319,56.91318817536873],[-127.19165295320236,56.91336458648561],[-127.19173848017552,56.91353750451158],[-127.19185368218662,56.91370566751679],[-127.19194551026034,56.913783271206135],[-127.19215270748168,56.91390128040476],[-127.19218104040482,56.91398619077834],[-127.19218965453786,56.91416541795553],[-127.19219215326835,56.914345821956864],[-127.19219116063415,56.91448031078933],[-127.19204659568784,56.91469232270032],[-127.19195322587018,56.91486464135077],[-127.1918649858777,56.915036912868636],[-127.19169706049053,56.915191984907324],[-127.19145820641606,56.915314087504996],[-127.19119951976992,56.91542628558083],[-127.1909123122284,56.91551409004203],[-127.19065370993819,56.9156296482397],[-127.19057154189814,56.91579850123554],[-127.19052770472423,56.91597708881656],[-127.190491122711,56.91615785122734],[-127.19043906226669,56.91633651419009],[-127.1903497579856,56.91650767384195],[-127.19021505599152,56.91667364615365],[-127.19006171375254,56.91683530647036],[-127.18991971912592,56.916997983313706],[-127.18981797334672,56.917165894626756],[-127.1898161951691,56.91734185544598],[-127.18987116388617,56.91752402042178],[-127.18988296351216,56.917706580892606],[-127.18983509510588,56.91778770738388],[-127.18954873125534,56.91780377841379],[-127.18933381520884,56.91783600457098],[-127.18901129330081,56.917879301491446],[-127.18870229715549,56.917928077146456],[-127.18860852435216,56.91812168989435],[-127.18862700316876,56.918320999368134],[-127.18864670942101,56.9184934016404],[-127.18864425139621,56.918680575434735],[-127.18863552251109,56.91886444463934],[-127.18865344948203,56.919045828592374],[-127.18862499177105,56.91922315438476],[-127.18853988788742,56.91939763654452],[-127.18843007916844,56.91957122403799],[-127.18833153365358,56.91974358773699],[-127.18821850947639,56.91991272182191],[-127.18808888325289,56.92007752500719],[-127.1879374709018,56.92023580331784],[-127.18776218189555,56.920386455122596],[-127.18757238066598,56.92053387737429],[-127.18737741208484,56.9206802259184],[-127.18718762438647,56.92082764748614],[-127.1870133839505,56.92097940937188],[-127.186853705656,56.92113664130994],[-127.18669412945911,56.92129723412719],[-127.18654386417212,56.92145998303721],[-127.18640810878247,56.92162596125631],[-127.18629501975494,56.921793973673864],[-127.18622614033818,56.921961582281284],[-127.18623144618641,56.92213411675748],[-127.18623001240633,56.922321281492],[-127.18624079452218,56.92250497268667],[-127.18630791720776,56.92268142536607],[-127.1863955313086,56.92285544954727],[-127.18651289722354,56.92302696060515],[-127.18666691088056,56.923186930111136],[-127.1868615795952,56.92333083864246],[-127.1870704184701,56.92346789340065],[-127.18728231658447,56.92360379921808],[-127.18749727395166,56.92373855607968],[-127.18771629392496,56.923872154796044],[-127.18793735339104,56.92400461384771],[-127.18816045396622,56.92413705387956],[-127.18838559404973,56.924268354225404],[-127.18861175546823,56.924399644861296],[-127.18883890370036,56.924529805427056],[-127.18906708972301,56.92465995612164],[-127.18929429201803,56.9247912361179],[-127.18952144485914,56.92492139552395],[-127.18974761397236,56.92505268423907],[-127.18997276480238,56.92518398191365],[-127.19021994744313,56.925329646101325],[-127.19133198388866,56.92564220633829],[-127.19193213015713,56.92596169631555],[-127.19264957436883,56.92718112839746],[-127.19295239561444,56.92909133968258],[-127.19267791509016,56.930325482414936],[-127.19329835003845,56.93159735702299],[-127.19398314389153,56.93268708881704],[-127.19428541081298,56.93424429595628],[-127.19416164698848,56.93552861205925],[-127.19300063977201,56.936668922691105],[-127.19064024421793,56.93854529902121],[-127.18932702788976,56.939192750979814],[-127.18753466028699,56.93941534784004],[-127.18619661471814,56.93962592886793],[-127.18606896902688,56.93999131542875],[-127.18566165377352,56.94032787472423],[-127.18481613900668,56.94093403016691],[-127.18352744693152,56.941782922137534],[-127.18266717471228,56.94305040082719],[-127.18223955968351,56.944169371301676],[-127.18272535928791,56.94477908628494],[-127.18355263750801,56.94545181114299],[-127.18411580290778,56.94616728241277],[-127.1845146842908,56.946893214528316],[-127.18449758888951,56.94791095391427],[-127.18434099075687,56.9490431546059],[-127.18434616390574,56.95102000235066],[-127.18368507204343,56.95170852379226],[-127.18312705240788,56.95233670734844],[-127.18296071562222,56.95325382519274],[-127.18263317492135,56.95374766793456],[-127.18234265009653,56.95430729408115],[-127.1825260109553,56.9551181278315],[-127.18295437112002,56.955729490867135],[-127.18297962469336,56.95628400403104],[-127.18293461929375,56.95793631598562],[-127.18287158280052,56.95923577472493],[-127.18284240782728,56.95982776734851],[-127.18285455622967,56.960659213257415],[-127.18281845441612,56.96139471863543],[-127.18222894469228,56.96200749771295],[-127.18172868467789,56.962577997307314],[-127.18165536118599,56.96337547975887],[-127.18096967458655,56.96414378383197],[-127.18035895794984,56.96446984866441],[-127.17999952145787,56.96466587099446],[-127.17939077480203,56.96532588160958],[-127.179317990871,56.966815951297185],[-127.17932227218866,56.967426694113364],[-127.17924682259292,56.9682578175946],[-127.17914856736253,56.96884819739971],[-127.17872687788558,56.969299180066585],[-127.17834764963266,56.969320547897574],[-127.17801784170194,56.96934258767636],[-127.17762138146854,56.969373075082814],[-127.17725738273299,56.96942119865391],[-127.17684569049467,56.96942492473463],[-127.1764332001897,56.9694365016394],[-127.17603750160515,56.9694580117006],[-127.1757076911766,56.96948004562343],[-127.1753601567815,56.969528015014305],[-127.17499391205321,56.96960417004029],[-127.1746286527225,56.969679194424785],[-127.17429809178435,56.96971019713787],[-127.17424865416729,56.9697095228199],[-127.17399898789917,56.96975996695909],[-127.17354563348557,56.96981561087616],[-127.17245011510083,56.97015049495436],[-127.1721343344342,56.97022730760861],[-127.17180176125933,56.970294184485475],[-127.17143626717385,56.970361357035486],[-127.17105700795737,56.97038270377256],[-127.17084103453746,56.970423872806336],[-127.17077388654431,56.970450253411364],[-127.17048950608903,56.97054471057206],[-127.17018817946217,56.97065725078863],[-127.16990381251145,56.97075170653382],[-127.16960372476616,56.97083733742524],[-127.1693025981803,56.970922976957155],[-127.16898600537067,56.97100763409969],[-127.16865370835504,56.97108346597421],[-127.16832064433191,56.971168269485545],[-127.16800304380087,56.97125405396509],[-127.16768644541543,56.97133870796331],[-127.16731919606823,56.971450712612345],[-127.16695191064854,56.971561595836995],[-127.16666679692416,56.97166613743556],[-127.16638268526188,56.971769548715756],[-127.16609753454144,56.97187296868494],[-127.16554085422328,56.97195192482245],[-127.16517125466387,56.97198661608774],[-127.16455968221123,56.97208847375288],[-127.1643799801058,56.972376981933145],[-127.16437262787224,56.972508169698294],[-127.16416523919189,56.97269830384258],[-127.16391028456452,56.972847397407435],[-127.16367310554172,56.97300529703883],[-127.16341814697834,56.973154389670185],[-127.16316572496046,56.97328552790356],[-127.16287980384323,56.97339791324263],[-127.16259568658872,56.97350243691786],[-127.16231051287737,56.9736058487063],[-127.16224283941828,56.97364904006876],[-127.16202159483991,56.973789983770025],[-127.16181460960676,56.97399355897259],[-127.16114590193197,56.97414858364243],[-127.16065792712088,56.97432216481951],[-127.16053946625222,56.97449132697804],[-127.16066468112389,56.97495642136383],[-127.16047361262642,56.97514192121968],[-127.16034826323386,56.97535597278774],[-127.16029007658933,56.97554364901686],[-127.16007427107085,56.97589971565508],[-127.15983947301793,56.97593318916925],[-127.15968333482282,56.97577432097877],[-127.15952117366736,56.975621109828595],[-127.15930803251254,56.975484042708594],[-127.15908066716995,56.975353826227064],[-127.15885434098938,56.975223600114894],[-127.1585936237492,56.97511385259042],[-127.15834100830838,56.97499954961146],[-127.1580893646177,56.97488299611091],[-127.1578519152182,56.974759591589844],[-127.15762862570234,56.97462709503334],[-127.15739825853993,56.97449914389923],[-127.15714056291064,56.9743871253095],[-127.15687610886584,56.974289735441026],[-127.15675508876197,56.9741339138203],[-127.15663266201258,56.973965776925894],[-127.15636302350619,56.97386731148325],[-127.15605419132021,56.97380057344584],[-127.15573093656225,56.97376758381729],[-127.15541845932304,56.973716566467026],[-127.15511567169465,56.973645289742024],[-127.15483286756364,56.97355366231929],[-127.15454608171498,56.97346655243819],[-127.15425929716314,56.973379441929985],[-127.15395276613785,56.97332052345931],[-127.15365299701014,56.9732469752234],[-127.15333836744246,56.973192609952676],[-127.15303466728156,56.97312469866533],[-127.15274485950904,56.97303985308805],[-127.15243322859492,56.97298209699202],[-127.15212364080605,56.97292432206172],[-127.1518061372678,56.97287670278192],[-127.15148388150423,56.97284257317654],[-127.15115687318954,56.972821933209026],[-127.15083532132259,56.97281133041735],[-127.15041169110202,56.97276128466399],[-127.15019934942073,56.97271833478006],[-127.1498770295218,56.97268196039523],[-127.14954926979954,56.97267028862506],[-127.14922070667592,56.97266646800596],[-127.14889108911514,56.97266153517523],[-127.14856264281106,56.972661073952665],[-127.14822110761062,56.97267081372016],[-127.14798736465653,56.972601152476436],[-127.1479109413561,56.97242027421758],[-127.14768768311741,56.97228776095375],[-127.14740611101111,56.97220171032047],[-127.14707874336172,56.972168735694105],[-127.14680875235902,56.97226413434657],[-127.14659542704942,56.972396015853086],[-127.14633426791006,56.97251150817481],[-127.14601655848561,56.97245715251041],[-127.14572176612367,56.9723768182076],[-127.14541423505244,56.97231788865074],[-127.14508716783965,56.97229499262754],[-127.14475934627605,56.9722810679867],[-127.14443335059664,56.972259281589956],[-127.14410626765977,56.972235262554015],[-127.14382957613535,56.97214019576366],[-127.14352300440939,56.97207901196035],[-127.14320158424944,56.97203813046327],[-127.14286553827476,56.97198953183783],[-127.14259924431299,56.971897733205765],[-127.14229078396534,56.971842166605335],[-127.14196966598793,56.9718113656925],[-127.14164922084187,56.97176823045189],[-127.1414169648328,56.971643630544385],[-127.14111376250176,56.97159137713141],[-127.14078726801176,56.9715875171508],[-127.14050793655043,56.97164600162307],[-127.14022740356901,56.971629409554915],[-127.13993560981132,56.9715456739764],[-127.13961444637212,56.971512626305284],[-127.13928931550114,56.971485216066554],[-127.13898096260135,56.97143300284139],[-127.13867331691571,56.97136957577317],[-127.13835582635033,56.97132192385741],[-127.13803738170773,56.97127652090888],[-127.13747088315212,56.97119854539867],[-127.13715489599007,56.97116656712745],[-127.13702841401086,56.970997327721506],[-127.13688464203041,56.97083496351459],[-127.13674600939524,56.970672554257376],[-127.13660734487482,56.97050902446735],[-127.13650250683494,56.97034071619988],[-127.13637713402056,56.970173707994334],[-127.13627840734574,56.970003104819156],[-127.13621554836236,56.96982658478737],[-127.1361218786417,56.96965257529414],[-127.13590386446852,56.96952111742848],[-127.13566749059977,56.96939542300071],[-127.13545855267475,56.96925716103671],[-127.13527201179643,56.96911085841958],[-127.13509774051583,56.96896108640136],[-127.13495301281975,56.968800970142134],[-127.13482766826446,56.96863508116268],[-127.13473002283868,56.96846558833871],[-127.13447842034358,56.96820666275057],[-127.1344040517964,56.968163604595006],[-127.13411990536277,56.96809323807004],[-127.13390979787305,56.96805472538664],[-127.13353231797375,56.9680311196082],[-127.13336853450836,56.96802806432868],[-127.13304048990088,56.96800514697879],[-127.13269522097693,56.96799134433828],[-127.13233496722813,56.967958619549385],[-127.13195920312872,56.9678531840154],[-127.13152801063612,56.96782331583436],[-127.13112527323517,56.96781561250296],[-127.13074932967952,56.96777405431194],[-127.13035484293111,56.96776739755001],[-127.1299758353716,56.9677617257834],[-127.1296488324802,56.96773879086882],[-127.12932001783585,56.96772483637142],[-127.12899070774866,56.967728816349585],[-127.12882697522116,56.96772687561119],[-127.12854683679537,56.967722582825274],[-127.12825125224927,56.96771842344363],[-127.1281029495186,56.96771634792908],[-127.12775713943556,56.96771934722534],[-127.12658590782124,56.96776424007319],[-127.12639466645373,56.96812451655354],[-127.1262645121052,56.96870840133366],[-127.12643572701913,56.969317693453384],[-127.12672034035519,56.969967468759535],[-127.12654766515573,56.970540516012264],[-127.12622738087761,56.97088958291221],[-127.12548250860269,56.971083186084364],[-127.12457828377445,56.971567300791236],[-127.12318140001958,56.972387388745105],[-127.12135035217831,56.97417611986396],[-127.1196365407176,56.974973125765956],[-127.11875072833529,56.97513988580138],[-127.11808175021514,56.97515012074826],[-127.1178457260425,56.97524852876359],[-127.11687739430458,56.97587210621245],[-127.11587547686108,56.97661699921519],[-127.1157503933244,56.976813072471764],[-127.11564816368697,56.97687446664723],[-127.11522483007224,56.97711904544028],[-127.11492907823771,56.977217960189044],[-127.11426595987955,56.9775744186208],[-127.11339490314433,56.97807610214449],[-127.11307218548743,56.978382571410414],[-127.11287302338825,56.9785815171898],[-127.11278663413431,56.978763808330825],[-127.11255053601208,56.978967552365674],[-127.1123071559031,56.979169116860085],[-127.11200353023929,56.97931740268211],[-127.11168315545098,56.97945574469476],[-127.11138030425582,56.97959505689416],[-127.11098461949359,56.979693695629216],[-127.11065425713831,56.979771602997104],[-127.11030470754298,56.97989898374514],[-127.10999447603882,56.97999689006361],[-127.1097091131141,56.98010018695923],[-127.10942324370646,56.980221418619706],[-127.10907195490311,56.98032415562607],[-127.10870596039831,56.98041693077696],[-127.10838764552344,56.980520505581026],[-127.10806826905367,56.98065883010301],[-127.10771645042021,56.9807794990054],[-127.10738239793292,56.98090898125504],[-127.10709499433797,56.98101341042696],[-127.10674391746342,56.98112398413131],[-127.10647608045899,56.98122824546051],[-127.10622213298981,56.98135031920453],[-127.10591924714898,56.98148961887055],[-127.10559985377999,56.98162793742428],[-127.10517150838774,56.981738042798426],[-127.10438696540452,56.98206746468676],[-127.1039318627361,56.982394086744726],[-127.10369386542921,56.98253395125365],[-127.10323618906905,56.982699212963546],[-127.10296201454507,56.98283490013545],[-127.10279774669735,56.98299655175442],[-127.1024757826925,56.98318979831999],[-127.10272631583348,56.98348690006299],[-127.10289241825845,56.98364126843129],[-127.10299720979658,56.98381184613477],[-127.10314395240427,56.9839731025305],[-127.1032456487983,56.98414370633357],[-127.1034005345751,56.98430153136085],[-127.10360233602123,56.98444326855758],[-127.10370489655874,56.98460826128274],[-127.10369459737757,56.98478765974621],[-127.1036853195263,56.98496704956601],[-127.10380635160513,56.98512964419932],[-127.103957642691,56.985233705868296],[-127.10418921696129,56.985335965351794],[-127.10437757513401,56.985511436460314],[-127.10440125012455,56.98569054672905],[-127.10443316283227,56.98586958709055],[-127.10445066015005,56.98604874983785],[-127.10446713617152,56.98622792127564],[-127.10449904963076,56.986406961686704],[-127.1045525147097,56.98658357776357],[-127.10461423444144,56.98676012376363],[-127.10467697621691,56.98693666108306],[-127.10473559968636,56.987113233365655],[-127.1048055102874,56.98728858911048],[-127.10489397313422,56.98746378730264],[-127.10510685825741,56.9875964629631],[-127.10533820010522,56.987725619416345],[-127.10545204788323,56.98788827398965],[-127.10542009090481,56.98806673635875],[-127.10540566331072,56.988246170515154],[-127.10534065717397,56.988421551578476],[-127.10536949547021,56.98860061821784],[-127.10546406168056,56.9887735229817],[-127.10550006879635,56.98895140803855],[-127.10555153109321,56.989129161795276],[-127.1056142810248,56.98930569894858],[-127.10568523762846,56.98948104566347],[-127.10576336298337,56.98965521074732],[-127.10585279282684,56.98982815903924],[-127.10594837007827,56.98999993434899],[-127.10603371452717,56.99017403799353],[-127.10612314678959,56.99034698616109],[-127.10620537941635,56.99051999550075],[-127.10627736252603,56.990695333353756],[-127.10633703711417,56.990871896543474],[-127.10639979348637,56.99104843352861],[-127.10652408265224,56.99121548167594],[-127.10661248146265,56.99138843845778],[-127.10664231729464,56.99156637606422],[-127.10664952904159,56.99174562679484],[-127.10666807742822,56.991924781135545],[-127.10673185864827,56.99210130939944],[-127.10681515158086,56.99227543029979],[-127.10690665195806,56.9924483606587],[-127.10694164754557,56.992626254454315],[-127.10697357781245,56.99280529504194],[-127.10700135665728,56.992983250260345],[-127.1070332874978,56.9931622908772],[-127.10706212073721,56.99334135786274],[-127.10708375324621,56.99352048612566],[-127.10710436429974,56.993699623098806],[-127.10715170426703,56.993877411988024],[-127.10720008281608,56.99405519204909],[-127.10721141726623,56.99423440800391],[-127.1072073113368,56.994413755350436],[-127.10718980817285,56.99459321670223],[-127.10715788590169,56.99477280074639],[-127.10710217006798,56.994949225111945],[-127.10703407877949,56.995124634041744],[-127.10698872568378,56.99530321164657],[-127.10696916120952,56.99548269060019],[-127.10696093422501,56.995662073135485],[-127.106951668971,56.995841464523195],[-127.10695482755284,56.996022991664645],[-127.10681514267628,56.99618107826593],[-127.10662785276277,56.99633172460369],[-127.10645713750802,56.99648559187184],[-127.10628538267439,56.9966394677578],[-127.10611570290534,56.9967933257853],[-127.10595119564012,56.99694826034497],[-127.10578881138545,56.99710541807243],[-127.10562744755681,56.997262566934],[-127.10547336496347,56.99742189516262],[-127.10532961326317,56.99758225618006],[-127.10521704997446,56.997752438536644],[-127.10519844991971,56.9979296678456],[-127.1053135742221,56.99810015802377],[-127.10533310906463,56.99827818422624],[-127.10532075376622,56.998457601993536],[-127.10533081732035,56.99862898444596],[-127.10510704870354,56.9987653693271],[-127.10485066392052,56.99887849589153],[-127.1045805895784,56.99898165178074],[-127.10431049813113,56.99908368654418],[-127.10404358353486,56.99918905591029],[-127.10376823436896,56.99928777202194],[-127.10349602992761,56.99938870229431],[-127.10324695118864,56.99950512584515],[-127.1030512301827,56.99965023506288],[-127.10294994110325,56.99981919930858],[-127.10296438800329,56.99999951051966],[-127.10297657689951,57.00013725405888],[-127.10295290307026,57.00031788835554],[-127.10291889613245,57.000497489523895],[-127.10286003848226,57.0006728184492],[-127.10276812119118,57.00084506535134],[-127.10265031415285,57.0010130487081],[-127.1025149064128,57.001177818938906],[-127.1023691002474,57.00133931498679],[-127.10221406222811,57.0015020097636],[-127.10203187073442,57.00165260649241],[-127.10180046900754,57.00177560186842],[-127.10152734818271,57.00188101858912],[-127.10122899018621,57.00196871694284],[-127.10092478353002,57.00203180852248],[-127.1006053821837,57.00203226828185],[-127.10023269993407,57.002007401390145],[-127.09994212403545,57.00197063254119],[-127.09961609440964,57.00195545599837],[-127.09930324382715,57.00200516831275],[-127.09898635240606,57.00205715540136],[-127.0986661057046,57.00210020438294],[-127.09834237606452,57.00212983348516],[-127.09801524421431,57.002148283415714],[-127.09768592400776,57.00216226815171],[-127.09735767386671,57.002177363737566],[-127.09702940698627,57.00219245863473],[-127.09670070945332,57.00219186644578],[-127.09637068637244,57.00218119823861],[-127.0960405677728,57.002167167883],[-127.09571270100898,57.00215984197087],[-127.09538623883152,57.002165951881906],[-127.0950658915833,57.00220563069712],[-127.09474690067265,57.00225650436771],[-127.09442449175457,57.002296198935035],[-127.09409882432016,57.00233031656184],[-127.09377539540243,57.00233415551187],[-127.09345272184001,57.00229203839289],[-127.09312712592038,57.002255548549996],[-127.09279565143532,57.00223031430487],[-127.09248409686566,57.00218025651673],[-127.09221242826212,57.002083914404096],[-127.09196270918306,57.001961611393234],[-127.0917059950488,57.00184721152938],[-127.09139949204003,57.001793746713304],[-127.0911741327841,57.0017676185623],[-127.09087356835988,57.00192367444783],[-127.09064872276194,57.00206116391967],[-127.09041113319299,57.00218531131049],[-127.09016935811198,57.00230725191216],[-127.0899256164012,57.00243257064371],[-127.0896617213893,57.00253788494969],[-127.08934580275738,57.00258871959366],[-127.08901136488343,57.002603845865046],[-127.0886940902142,57.00257063743197],[-127.08838799044368,57.00249474802721],[-127.08807723967567,57.00243682806241],[-127.0877512424433,57.00242274223719],[-127.08741846937272,57.00242440206099],[-127.0870860607973,57.002438385732404],[-127.0867621928828,57.00246350428311],[-127.08647409811776,57.00255108284172],[-127.08622716580776,57.00267305907618],[-127.08596838638135,57.002777202419665],[-127.0856357365631,57.00278333944721],[-127.0853150968393,57.002740064519394],[-127.0849935622538,57.00270127908276],[-127.0846816420561,57.00271172369346],[-127.08441969000971,57.00273968252369],[-127.08401511955901,57.00275313879865],[-127.08371094158792,57.00281843106341],[-127.08341222041456,57.00289488422587],[-127.08311461453798,57.00297468952647],[-127.08281589096794,57.00305114132876],[-127.08251611279131,57.00312648050705],[-127.08221741835403,57.00320405138525],[-127.0819197446297,57.0032816130882],[-127.0816210163053,57.00335806216462],[-127.08131907865683,57.00343005439735],[-127.08101385235994,57.00349534901658],[-127.08070324577099,57.003552842662025],[-127.08038606493506,57.00359582098654],[-127.08006246584391,57.003631006867906],[-127.07973666517022,57.00366060668786],[-127.07941091034849,57.00369244671455],[-127.07908841078265,57.00372986245086],[-127.07877132088338,57.00377619817398],[-127.07845540910313,57.00382812687346],[-127.07814267289666,57.00388339060703],[-127.07783001501912,57.003940894341035],[-127.0775183781442,57.003998388866805],[-127.07720570191738,57.00405589124231],[-127.07689088684236,57.004110048448084],[-127.07657712415856,57.00416531688591],[-127.07626653686542,57.00422392041505],[-127.07596239676907,57.004291435527],[-127.07566786346105,57.0043711982646],[-127.07538185216816,57.00446097624992],[-127.07509898446585,57.00455296904296],[-127.07481297049583,57.00464274578961],[-127.07451950183444,57.004723617818286],[-127.07421859342277,57.004796705657654],[-127.07391552968768,57.00486644846961],[-127.07360927225096,57.004932854803386],[-127.07330303024088,57.00499926028382],[-127.07299677069099,57.0050656651828],[-127.07269268065714,57.00513541358487],[-127.07239491038112,57.00521071271919],[-127.07209934067625,57.005290475852696],[-127.07179944521313,57.00536354971176],[-127.07148895102955,57.00542550309185],[-127.07119012299725,57.00549968745204],[-127.07090093162648,57.00558724027108],[-127.07061277740648,57.00567478391228],[-127.07027317284037,57.00576499134523],[-127.06999338713598,57.005782981250555],[-127.06967848551939,57.005834880185695],[-127.06936469842387,57.005890131305236],[-127.06905196353595,57.00594649372422],[-127.068740328426,57.006005087761636],[-127.0684307839382,57.00606478459066],[-127.06812133176395,57.006127842027446],[-127.06781500861675,57.00619199375794],[-127.06750454700203,57.00625617869994],[-127.06719300022282,57.00631813038797],[-127.06688676718082,57.00638564128517],[-127.0665776514101,57.00646101999022],[-127.06636068622464,57.00658943681898],[-127.06619394764071,57.0067454594754],[-127.06606872835663,57.00691234893641],[-127.06599117935627,57.007088934258185],[-127.06586786347872,57.00725020445034],[-127.06565110861952,57.00738646330651],[-127.06544583208124,57.00752823137186],[-127.06526865889117,57.007679855470705],[-127.06511018443058,57.007836929858605],[-127.0649610825109,57.007997289495684],[-127.06480469706884,57.00815546713863],[-127.06462651091904,57.00830821937346],[-127.06436988168116,57.008419026026445],[-127.06408178433719,57.00850991673173],[-127.06390226190992,57.00865147186699],[-127.06377606635579,57.008820608595535],[-127.06362385588201,57.008980992134525],[-127.06343726388957,57.00912820791889],[-127.06311043931021,57.00927208586191],[-127.06291974010553,57.009382351232205],[-127.0627283106068,57.0095038293191],[-127.06246330156272,57.00961021778704],[-127.06219096326925,57.0097121826968],[-127.06191442387198,57.00981193989312],[-127.06163996020635,57.009911679570216],[-127.06137076217964,57.010015858549615],[-127.06111202060269,57.01012555525979],[-127.06086794949893,57.010244097536265],[-127.06063658076125,57.01037486360856],[-127.06042191224132,57.010513338168494],[-127.06023120999883,57.01066170353631],[-127.06006746654379,57.010815452639434],[-127.05992658939742,57.01097686030964],[-127.05980027619012,57.0111426320976],[-127.05968434173435,57.011311681409175],[-127.05957774963719,57.01148289600457],[-127.05941935966399,57.011644445691296],[-127.05920126735296,57.01180872232965],[-127.05906793344393,57.01194429154957],[-127.05905933987785,57.01211919137045],[-127.05890038071423,57.01222246844245],[-127.05871488605791,57.01237303070345],[-127.05853778732049,57.01252912796687],[-127.05828185729115,57.01262983054258],[-127.0579628854125,57.01268621670393],[-127.05764290473101,57.012743730978244],[-127.05737761305186,57.01284114569469],[-127.05716384889769,57.01297624545293],[-127.05696797800225,57.01312464806057],[-127.05676059450289,57.013266419589634],[-127.05652387943022,57.013391618234465],[-127.0562777433617,57.01351128935283],[-127.05601908675067,57.013625458029765],[-127.0557739863044,57.013745119790705],[-127.05557269979745,57.01388459857584],[-127.05540176407095,57.01404064161216],[-127.05525780315133,57.01420319003881],[-127.05516767072518,57.01437426773893],[-127.05516028192541,57.014555881918994],[-127.05517347174278,57.014736208646475],[-127.05519905810813,57.01491755563834],[-127.05521637015127,57.01509784900183],[-127.05520992800305,57.01527609348608],[-127.05515907433436,57.015451335782174],[-127.05505660333527,57.01562363422107],[-127.05491371872002,57.01578841507787],[-127.05474374919324,57.015942208125],[-127.05454782316659,57.01608948693914],[-127.05432479538429,57.01622577784616],[-127.0540754731854,57.01634322921974],[-127.05379544429363,57.016430669546715],[-127.05348274013964,57.016491476674595],[-127.05316053743002,57.01654451492597],[-127.05285199825346,57.01660752825446],[-127.05255156871625,57.016702975785776],[-127.05227582846801,57.01683408571187],[-127.05224312190626,57.01695762776557],[-127.05234898577211,57.0171349646245],[-127.05252646742254,57.01729267052444],[-127.05272671444263,57.017453554284025],[-127.05291044371253,57.01761345062481],[-127.05306632718325,57.01777245122769],[-127.05322323425399,57.01793144339277],[-127.05337605105049,57.01809158919327],[-127.05351552488266,57.01825408421212],[-127.05363345822086,57.018420115530425],[-127.05370527045363,57.01859548565664],[-127.05373599711592,57.018776791791524],[-127.05374194518171,57.01895605704259],[-127.05371178377914,57.0191344938076],[-127.0536816527783,57.01931405104854],[-127.0536865618311,57.01949332477498],[-127.05371620539856,57.01967239837818],[-127.05374893282004,57.019851447044545],[-127.0537631260118,57.0200306457103],[-127.05375360689405,57.02021003628081],[-127.05373895701624,57.02039058909971],[-127.05372223155346,57.02057003802369],[-127.0536993363374,57.02075065759951],[-127.05368572488078,57.02093120207427],[-127.05369164236222,57.021109347134164],[-127.05374898365898,57.021283713984836],[-127.05387523387063,57.02145191964041],[-127.05401886110019,57.02161438100346],[-127.05418603296675,57.02177104808869],[-127.0543449915923,57.02192890219505],[-127.0544547251376,57.02209612041239],[-127.05451938643853,57.02227378994773],[-127.05457070270833,57.022453808967825],[-127.05463942644957,57.02262920417652],[-127.0547573473309,57.02279411451924],[-127.0549122819253,57.02295536282655],[-127.05509386225548,57.023110791542955],[-127.05529882032161,57.023253702763945],[-127.0555259777919,57.02337962307592],[-127.05580866539866,57.023462505751986],[-127.05613387497291,57.02351702517746],[-127.05643690216216,57.02358965515216],[-127.0566874414304,57.02370305599645],[-127.05691683791233,57.023834559379814],[-127.05714925829565,57.02396379641098],[-127.0574110701865,57.024074862998575],[-127.05769939085238,57.02417450665454],[-127.05798560425886,57.02427304609616],[-127.05823716069698,57.0243853151094],[-127.0584243907725,57.02452052073833],[-127.0585423028448,57.02468430740742],[-127.05861222531618,57.02486529480095],[-127.05865342737988,57.02505099850544],[-127.05867793634613,57.02523011363181],[-127.05865920113477,57.02541070101617],[-127.0586209038853,57.025592568142024],[-127.05859697532786,57.02577207705713],[-127.05862243101494,57.025947822444586],[-127.05871373317399,57.0261185497452],[-127.05884510492828,57.02628446839093],[-127.05898167081972,57.02645146541563],[-127.05908943752895,57.02662093794734],[-127.05917365944661,57.02679620547385],[-127.05925168085582,57.026971523401805],[-127.05934301908896,57.02714337084865],[-127.05946410548727,57.02730937269488],[-127.05962203873152,57.02746610895595],[-127.05980660573415,57.027615904035585],[-127.06000241231192,57.027762245257385],[-127.06020631256429,57.02790291674341],[-127.06042957555397,57.028035585270466],[-127.06065282568511,57.02816713282682],[-127.06078498214913,57.02839804511675],[-127.06089070057514,57.02856753317951],[-127.0609984816208,57.02873700438216],[-127.06111756379835,57.028905262737716],[-127.06124384032627,57.02907234167679],[-127.06137115705532,57.02923941204569],[-127.06149128152667,57.029407661651234],[-127.06159700583855,57.02957714926033],[-127.0616811363894,57.02974905426086],[-127.06173959682123,57.02992453064037],[-127.06177854115654,57.030102407547545],[-127.06180306789066,57.03028152271753],[-127.0618194260812,57.03046294593557],[-127.06183265256593,57.0306432739856],[-127.06184690182728,57.03082359372021],[-127.0618621594451,57.03100278453709],[-127.06187227090518,57.0311820173278],[-127.06187824230794,57.031361283891464],[-127.06188322202478,57.03154167928253],[-127.06188817085791,57.031720954227694],[-127.06189518159455,57.031900212386724],[-127.0619012006415,57.03208059937369],[-127.06190821150436,57.032259857577074],[-127.06191418324195,57.032439124274305],[-127.06192020246232,57.032619511328456],[-127.06192617431161,57.032798778070216],[-127.06193318542175,57.03297803636242],[-127.06194022753024,57.033158415146346],[-127.0619482779863,57.033337665011025],[-127.06195837396582,57.03351689822254],[-127.06197366410554,57.033697209834145],[-127.06199408660946,57.033876358903925],[-127.06201556297803,57.034056620125405],[-127.06203910153042,57.034236864555176],[-127.06206054737368,57.0344160053442],[-127.06207892310435,57.034596291907434],[-127.06209212128802,57.034775499982096],[-127.06209707151078,57.03495477532555],[-127.06209481292076,57.03513410946541],[-127.06208013463333,57.03531242416087],[-127.06205412318455,57.0354908312714],[-127.06201780119795,57.035669322452314],[-127.06197220781253,57.03584788922275],[-127.06191625618007,57.03602541970749],[-127.06185103288352,57.03620302575898],[-127.06177856896076,57.0363795700845],[-127.06169777759067,57.03655394080369],[-127.06161078470993,57.03672724129969],[-127.06151025528682,57.03689616915266],[-127.06138384729219,57.03706194560617],[-127.06124188763472,57.03722448645843],[-127.06109374032215,57.037387077562514],[-127.06094869324659,57.03754964325918],[-127.06081606327167,57.03771434914523],[-127.06070518598472,57.03788223997784],[-127.06060784379031,57.038054503440726],[-127.0605198032577,57.0382278118521],[-127.06044007254465,57.03840329403105],[-127.06037068307575,57.03857981273489],[-127.06031163498778,57.038757367980445],[-127.06026495976556,57.0389348225249],[-127.0602337426987,57.039112151275106],[-127.06022941292245,57.039291502688194],[-127.0602498755521,57.0394728938189],[-127.06029091582957,57.039651876053966],[-127.06034428279774,57.03982963725353],[-127.06042435298359,57.040002698210536],[-127.06053838182083,57.04017324127137],[-127.06065749739348,57.04034150139627],[-127.06074991306775,57.04051334100471],[-127.06080943943373,57.04068993127382],[-127.06086491998386,57.04086879593998],[-127.06091523693027,57.041047702655256],[-127.0609562963965,57.04122780548939],[-127.06098602147586,57.0414080006354],[-127.06100127928165,57.04158719288361],[-127.06099895336762,57.04176428688669],[-127.06097817301686,57.04194601410201],[-127.06093596183268,57.042135760941925],[-127.06086062792917,57.04232129456664],[-127.06074148785314,57.04248925314289],[-127.0605699824521,57.0426284989219],[-127.06033573755789,57.042736874653755],[-127.06005241442153,57.04282323468102],[-127.05973773538858,57.0428952796425],[-127.05940838757685,57.04295847727654],[-127.05908305451962,57.0430182792527],[-127.05877113467716,57.043077971417546],[-127.05845478054886,57.04312649156411],[-127.05813306190242,57.043167209401695],[-127.05781024145071,57.04320569392834],[-127.05748745116435,57.0432452981347],[-127.05716459860913,57.04328266058526],[-127.05683852029883,57.04331556548165],[-127.05651138766066,57.04334735737875],[-127.05618640927771,57.04338249317396],[-127.05586681009478,57.0434254296634],[-127.05555469742683,57.043478391271044],[-127.05525225653113,57.04354584326575],[-127.05495519421079,57.04362109610408],[-127.05466247081998,57.043704158238235],[-127.05437399404506,57.04379166825924],[-127.05408979452787,57.043884746676234],[-127.05380878776202,57.04398116083177],[-127.05353092650158,57.044079790400595],[-127.05325721954358,57.04417950652009],[-127.05298560437217,57.04428032588458],[-127.05271614232706,57.04438448946838],[-127.05244874135862,57.04448863584345],[-127.05218242327864,57.04459501437842],[-127.0519171432495,57.044701383984986],[-127.05165296256531,57.044809985632085],[-127.05138873325357,57.04491746640375],[-127.05112451896541,57.04502494651451],[-127.05086028669986,57.04513242623096],[-127.05059499930674,57.045238793186364],[-127.05032868740484,57.04534516785595],[-127.05006023374641,57.04544931777953],[-127.04978970195106,57.04555236315971],[-127.04950966468834,57.04564763943317],[-127.04921387309885,57.04573295539625],[-127.04891280966982,57.045813830204295],[-127.0486180244801,57.04589801597413],[-127.04834105342916,57.04599214431242],[-127.04809136727106,57.04610398425922],[-127.04786481257018,57.046231327917255],[-127.04764664305856,57.04636420740973],[-127.0474358826785,57.04650375135488],[-127.04723453302482,57.04664770224657],[-127.04704051497023,57.04679607683578],[-127.04685483761415,57.04694774632136],[-127.04667640041826,57.04710047812158],[-127.04650629004456,57.04725538426969],[-127.04634441258159,57.04741022409503],[-127.04619101453291,57.04757284075569],[-127.04605329065835,57.04774317653044],[-127.04594047063145,57.04791891593259],[-127.04586480923695,57.04809547775864],[-127.04583649878892,57.04826829735988],[-127.04587204194198,57.04843724232559],[-127.04597571744787,57.0486078819163],[-127.04612674611059,57.048774779135485],[-127.04629930504085,57.048937020424205],[-127.0464737312495,57.04909140140522],[-127.04661654329344,57.04925948485817],[-127.04689655767555,57.049389481927854],[-127.04714998719813,57.049490553034246],[-127.04731601547165,57.04963939681927],[-127.04737767918252,57.0498204597242],[-127.04737331875866,57.05000093254685],[-127.04734310345086,57.05017937171908],[-127.04730051074228,57.05035791037427],[-127.04725481509222,57.05053647396987],[-127.0472153241385,57.050714987710215],[-127.04719132670044,57.05089449769493],[-127.04719104404323,57.051073817141834],[-127.0472010923939,57.05125305359798],[-127.04720394291614,57.05143346864711],[-127.04719025958046,57.05161289584107],[-127.04717451318665,57.05179233963221],[-127.04715772692411,57.051971791798216],[-127.04713785433214,57.052151268781564],[-127.04711591859531,57.05233076235947],[-127.04708982619994,57.05250916861719],[-127.04705963812054,57.052688728528786],[-127.0470232302804,57.05286721768797],[-127.04697853959824,57.05304465266187],[-127.04692457322314,57.05322216215027],[-127.04686334702897,57.05339860921409],[-127.04680005724666,57.053575072841134],[-127.0467357271134,57.053751544810254],[-127.04667553898437,57.053927983501275],[-127.04662155346608,57.05410549310771],[-127.04658202540394,57.05428288661715],[-127.04656214893004,57.05446236380624],[-127.04654642893942,57.05464292837369],[-127.04651826923913,57.05482135137494],[-127.04646944774966,57.0549988195507],[-127.04641130305347,57.05517524184344],[-127.0463469849634,57.055351713688154],[-127.04628264977785,57.055528185655696],[-127.04622141696538,57.05570463270625],[-127.04616744336087,57.05588214221566],[-127.04612170539208,57.056059585620964],[-127.04608220350396,57.056238099716005],[-127.04604372458581,57.05641660560909],[-127.04600214227466,57.056595136415325],[-127.04595537934841,57.056772588064476],[-127.04591553083769,57.05686256676552],[-127.04580081265243,57.0571212567202],[-127.04571059848257,57.05729457400731],[-127.04563384723261,57.057470024720864],[-127.04552182330023,57.05763791317902],[-127.0453838775819,57.05780152650211],[-127.04523758624102,57.057961844399955],[-127.04508612724956,57.0581222035752],[-127.04493674678041,57.05828254592003],[-127.04478109778749,57.058440696871095],[-127.04462340072355,57.05859886405734],[-127.04447190621602,57.05875810209755],[-127.04433601532408,57.05892169790867],[-127.0442146882858,57.05908965987161],[-127.04409024300843,57.05925652597189],[-127.04394600407693,57.05941682605872],[-127.04378316337096,57.05957615421081],[-127.04361727886517,57.05973774801288],[-127.04344411860272,57.05989715837546],[-127.0432573099355,57.06004771183903],[-127.04305459051656,57.06018270201263],[-127.0428180347045,57.0602877026198],[-127.04248643694277,57.06031276972897],[-127.04213662336144,57.06031332537377],[-127.04180259712786,57.06032496129124],[-127.0414740929822,57.06031189598667],[-127.04116407658952,57.0602572148735],[-127.04085993132152,57.06019127877009],[-127.0405586781004,57.060117473715955],[-127.0402584053322,57.0600414186786],[-127.03995808693128,57.05996424258943],[-127.03965680691567,57.0598893149672],[-127.03935256246605,57.05981889324892],[-127.03904934255807,57.059748462666285],[-127.03874502327254,57.05967579867688],[-127.03844180560628,57.05960536668825],[-127.0381365257013,57.0595349504307],[-127.03783034450089,57.05946902359426],[-127.03752217522826,57.05940647408461],[-127.03721107136855,57.059349550891135],[-127.03689311769112,57.05930613029182],[-127.03656647575686,57.05928519274389],[-127.03623487901858,57.05927213892425],[-127.03590426203645,57.059256835004135],[-127.03557753050276,57.05923253349],[-127.03524968544055,57.05920487779616],[-127.03492185450992,57.05917834190585],[-127.03459524489209,57.05915851991696],[-127.03426899738004,57.059152143069475],[-127.03394817257445,57.05919391403103],[-127.03362525360733,57.059234580068726],[-127.03329772537388,57.05925735006941],[-127.03297126678463,57.05928123150363],[-127.03264822564944,57.05931741313545],[-127.03223213603653,57.05938571143194],[-127.03200644937642,57.059358359301335],[-127.03167696347728,57.059346397917615],[-127.0313475514637,57.05933779732434],[-127.03101818615704,57.05933031626557],[-127.03068880447185,57.05932283450523],[-127.03035946945519,57.05931647227987],[-127.03003008801687,57.05930898885507],[-127.02969971330405,57.059302633180515],[-127.02937037862421,57.059296268456414],[-127.02904099755155,57.059288782532676],[-127.02871169308499,57.059283536642546],[-127.02838240217753,57.05927941054883],[-127.02805208792407,57.05927529169479],[-127.0277227237946,57.05926780231009],[-127.02739328339257,57.059258071226836],[-127.02706479326767,57.05924496962217],[-127.02673716372144,57.05922513600814],[-127.02641298647397,57.05918061824027],[-127.0260921824126,57.05914615972585],[-127.02578199435754,57.05920015486175],[-127.02546337272572,57.05924749119846],[-127.02513927151082,57.059282541773975],[-127.02481506358224,57.059314230177435],[-127.02448871869292,57.05934257236543],[-127.02416232696265,57.059369793367644],[-127.02383373871118,57.05939142713376],[-127.0235047755765,57.05939961421014],[-127.02317744479264,57.05939097664031],[-127.02284889534,57.059375623412144],[-127.02252025673435,57.05935690785753],[-127.02219158865314,57.05933707097535],[-127.02186397411621,57.059318345741374],[-127.02153440239013,57.05930299722402],[-127.0212060627132,57.05929548335392],[-127.02087677251092,57.05929133830086],[-127.02054654820374,57.059290561928215],[-127.02021739357336,57.05929089707978],[-127.01988725846842,57.05929348053686],[-127.0195571530378,57.05929718365807],[-127.01922707725271,57.05930200644355],[-127.01889802480429,57.05930682039364],[-127.0185679488538,57.05931164151021],[-127.0182357501136,57.05931423690802],[-127.01790361066965,57.059319072460276],[-127.01757362347213,57.0593272525608],[-127.01724581808767,57.05933989772652],[-127.01692135290004,57.05936148186417],[-127.01660792841601,57.059410997384944],[-127.01631409705395,57.05949846427365],[-127.01603812045747,57.059598119377526],[-127.01577263692245,57.05970441651805],[-127.0155113970724,57.059815162982325],[-127.0152480331495,57.059923683999095],[-127.01497617750846,57.060023304743765],[-127.01466405126149,57.06008289203278],[-127.01436155587473,57.060155852410695],[-127.01405474213901,57.060221000550904],[-127.01374151380507,57.060278352725135],[-127.01342275025257,57.060321177658956],[-127.01309254678256,57.06032150290575],[-127.01276263852182,57.060333032341],[-127.01243502956292,57.0603535089358],[-127.01210750876228,57.060377346215716],[-127.0117798990768,57.06039782116489],[-127.0114745147909,57.06040019112822],[-127.01112277099439,57.060405161445104],[-127.01079230160664,57.060395396339295],[-127.01046285583674,57.06038562246244],[-127.01013363285588,57.06038369114698],[-127.00980468775404,57.0603929641598],[-127.00947480732006,57.06040560577832],[-127.00914501491745,57.06042160807219],[-127.0088163504189,57.060440962994136],[-127.00848982068518,57.060463662762494],[-127.0081643599138,57.06048747417386],[-127.00786498176784,57.060561515999865],[-127.00757094549898,57.060642240229335],[-127.00726092489819,57.06070403487777],[-127.00694771184654,57.06076249125177],[-127.00663768927413,57.06082428442324],[-127.00633403201932,57.06089275209817],[-127.00604420486161,57.06097680255737],[-127.0057703131143,57.06107866111192],[-127.00549639060519,57.06117939859365],[-127.00519264060794,57.06124450211264],[-127.00489642565711,57.06132187487256],[-127.00461932432606,57.061419272809886],[-127.00434011233587,57.06151556568481],[-127.00406091545462,57.061611857841115],[-127.00378382266936,57.06171037465529],[-127.00351198319268,57.06181221262916],[-127.00325060596359,57.06191957316989],[-127.0030197117909,57.06204799253235],[-127.00280870345996,57.062187465824465],[-127.00257354576179,57.062311434270335],[-127.00227529952541,57.06238993738274],[-127.00198764526529,57.06247956570713],[-127.00170739547144,57.062575860882845],[-127.0014544373086,57.06268987749651],[-127.00121633104588,57.06281946978854],[-127.00101056660677,57.06296226208355],[-127.00087645193724,57.06312243568127],[-127.00079111345923,57.063293442025156],[-127.00073069951318,57.06346986065822],[-127.00068273753678,57.06364954589581],[-127.00063375156833,57.06382923899501],[-127.00057130162135,57.0640067939689],[-127.00049433094885,57.0641822189058],[-127.0004100868136,57.064355458164385],[-127.00032377828529,57.06452871322424],[-127.00023746897891,57.06470196824838],[-127.00015635543751,57.06487630410305],[-127.00008248487758,57.06505170509446],[-127.00001274098612,57.065227074407076],[-127.00000120440212,57.06525966415223],[-126.99994611287646,57.065403540534426],[-126.99988255879525,57.065578862335826],[-126.99982007338724,57.0657552966614],[-126.99975966375195,57.06593283579027],[-126.99969924092319,57.066109254277016],[-126.99963984114905,57.06628566490939],[-126.99959285239876,57.066463101110685],[-126.99954795610316,57.0666416420058],[-126.99948129426822,57.06681698756291],[-126.99939913269536,57.066991331183075],[-126.99930868613984,57.06716461753591],[-126.99920683794303,57.06733574975468],[-126.99909147853703,57.06750362324173],[-126.99896370618042,57.06767047101356],[-126.99881930573571,57.0678329631196],[-126.9986477541284,57.06798333496086],[-126.99837749160382,57.06810868559132],[-127.0000006552701,57.07237858182163],[-127.0105063798752,57.100000338488464],[-127.02563497944791,57.13970596011405],[-127.02584764252805,57.13988585955906],[-127.02611320472847,57.139994732758026],[-127.02639190032815,57.140092294237846],[-127.02667967031715,57.14018081741548],[-127.02697148703358,57.140265945758124],[-127.0272634250715,57.14035555571123],[-127.02755637658174,57.14044403625539],[-127.02785616784648,57.1405178919295],[-127.02816672375585,57.1405692461828],[-127.02849003793419,57.14059472083193],[-127.02882017708271,57.140604449716704],[-127.02915422485145,57.140606301366105],[-127.02948931478026,57.14060814394783],[-127.02982047988397,57.14061786222133],[-127.03014583319457,57.140642195907134],[-127.03045950302294,57.14069352018793],[-127.03076642668657,57.140762829782695],[-127.03107336503568,57.1408332593543],[-127.03138820031198,57.14088905544124],[-127.03171290656235,57.1409279607866],[-127.03204054246069,57.140960117372636],[-127.03236517604743,57.14099565927691],[-127.03267882156938,57.14104585767832],[-127.03297147255832,57.141123120617735],[-127.03324314604876,57.14122744810982],[-127.0335118182306,57.14133516121143],[-127.03379458729995,57.14142931258133],[-127.03408439174551,57.14151556204112],[-127.03437620482887,57.141599553361864],[-127.03466801919,57.14168354403602],[-127.03496187237039,57.141766397116314],[-127.0352556965788,57.14184812897697],[-127.03554955228907,57.14193098074543],[-127.03584238364625,57.14201383999106],[-127.03613423463572,57.14209894797938],[-127.03642401912421,57.14218407172771],[-127.0367118279506,57.142272572940925],[-127.03699461178283,57.142366717449285],[-127.03727336882642,57.14246425575216],[-127.03755214105391,57.14256291416238],[-127.03783189626279,57.14265932257734],[-127.03811566722784,57.142751215278075],[-127.03840540037203,57.14283409354464],[-127.03871028768197,57.14290340102238],[-127.03903723800457,57.1429478745951],[-127.03937322936694,57.14298218817266],[-127.03970110183283,57.14302216953934],[-127.04000574993069,57.14308250949408],[-127.04027197464563,57.14317565810718],[-127.04050886337333,57.143292576792696],[-127.04072657317927,57.14342645996052],[-127.04093110876548,57.1435705350266],[-127.0411305895828,57.14371913331237],[-127.0413321563732,57.143867714693634],[-127.04154176676593,57.144008386013496],[-127.04175750763885,57.14414564571428],[-127.04197122648442,57.14428516282759],[-127.04218496342784,57.14442467947372],[-127.04240476733877,57.14455966415551],[-127.04263370399295,57.144687850756846],[-127.04287788576556,57.144805828008174],[-127.04314550687127,57.14491128877231],[-127.04343958598216,57.14500084636659],[-127.04375068690975,57.14507009277038],[-127.04406836403638,57.1451146281088],[-127.0443916355449,57.14513670179255],[-127.04472175676699,57.14514414939284],[-127.04505578376724,57.14514371925595],[-127.04539076138792,57.14513991823254],[-127.0457248048874,57.1451394862527],[-127.04605601321484,57.14514916339865],[-127.04637934729557,57.145173473292175],[-127.04669595550254,57.14521689002919],[-127.04700582424242,57.14527829296419],[-127.04731180282097,57.1453486928351],[-127.04761684862716,57.145422461909895],[-127.04792286009118,57.14549398092105],[-127.04823483162914,57.145556484928576],[-127.04857517381313,57.145597465099925],[-127.04891144205708,57.14564071872203],[-127.04919780358814,57.14571239256554],[-127.0493844150078,57.14584202842029],[-127.04948654669495,57.1460216583826],[-127.04957234992438,57.14620926515688],[-127.04971403484679,57.146360556958676],[-127.05004706392558,57.1463982297212],[-127.05036208966507,57.14634526073365],[-127.05065027389941,57.14625664091806],[-127.05093721615283,57.146160184779326],[-127.05123390118766,57.14607934095353],[-127.05155284361818,57.1460184918812],[-127.05187761117422,57.14601923970659],[-127.05220405000097,57.146043510289424],[-127.05253174675657,57.146075615601355],[-127.05285756061308,57.14611446013754],[-127.05317942373345,57.14616006058452],[-127.05349529904547,57.14621355421236],[-127.05380014811453,57.146279464955214],[-127.05409315871776,57.14636676593951],[-127.05436800627814,57.14646990423962],[-127.05462039860763,57.146584431378315],[-127.0548524676678,57.14671145108613],[-127.05507439729566,57.14684639797984],[-127.055294276983,57.14698136108201],[-127.05552533921485,57.14710950861488],[-127.05577674429587,57.147225162425265],[-127.05604748071272,57.147329451381246],[-127.05632327360546,57.147429215659606],[-127.05658992421083,57.14753465738052],[-127.0568140254238,57.14767294636616],[-127.0570449424866,57.14779548845976],[-127.0573554275659,57.14784005007729],[-127.05769299002408,57.14785412977966],[-127.05802738049573,57.14786599267355],[-127.05835762061128,57.1478767675225],[-127.05868781343712,57.14788642110771],[-127.05901789921316,57.1478915914719],[-127.0593489799029,57.147895632121426],[-127.05967892546455,57.14789631869758],[-127.06001080083048,57.14789138471195],[-127.06034157183448,57.1478842172174],[-127.06067243568036,57.147880410573755],[-127.06100241213284,57.147882214370505],[-127.06132960482718,57.14789524809354],[-127.06165626824576,57.147926218333346],[-127.06197815702657,57.1479717971647],[-127.06229205349901,57.148027527531845],[-127.0625969776433,57.14809565909612],[-127.06289796952456,57.148170546843964],[-127.06319897709882,57.14824655459964],[-127.06350395221168,57.1483158044861],[-127.06381289271417,57.148379417306636],[-127.06412385672807,57.148440771294865],[-127.0644347740929,57.14850100411825],[-127.06474673477042,57.14856122770949],[-127.06505866531029,57.14862032999626],[-127.06536963326998,57.14868168103051],[-127.06567959101896,57.148744160391956],[-127.06598455802155,57.14881340464878],[-127.06627550180386,57.14889845408929],[-127.06655744354474,57.14899478455457],[-127.06683640087486,57.14909562206714],[-127.06711630849117,57.149193088791094],[-127.06740324607824,57.149282651778954],[-127.06770111493611,57.14935643337848],[-127.0680119205239,57.14941217548112],[-127.06832771844395,57.149461151126346],[-127.06864552290186,57.149507867969014],[-127.0689652713845,57.14955008486987],[-127.06928702626892,57.14959004293836],[-127.06961078750454,57.1496277421595],[-127.06993451811603,57.14966432001746],[-127.07026028626134,57.149699759570055],[-127.070586023729,57.149734077749414],[-127.07091179306873,57.149769515679445],[-127.0712365684861,57.14980608177105],[-127.07156132797715,57.149842647192024],[-127.07188515621563,57.149882581908045],[-127.07220694825801,57.14992365335772],[-127.07252676679941,57.14996810267907],[-127.07284762845595,57.150012542659624],[-127.07316847431036,57.15005698198952],[-127.07349036328439,57.15010141196828],[-127.07381122717253,57.15014584958683],[-127.0741331176369,57.15019027798512],[-127.07445399786052,57.1502358347257],[-127.07477388441376,57.1502825196799],[-127.07509380315753,57.150330324413964],[-127.07541272828247,57.15037925737148],[-127.07572960088264,57.15042932727886],[-127.07604655373544,57.15048163740577],[-127.07636042828585,57.150535092953675],[-127.07667332423885,57.150590797462144],[-127.07698426381403,57.15064987981949],[-127.07729215667037,57.15071122821047],[-127.07760537026896,57.150778136105664],[-127.07791882196965,57.150852887044245],[-127.07822630562951,57.15093665306578],[-127.07851860212531,57.15103175196064],[-127.07878636463896,57.15113714018911],[-127.07902239405226,57.15125399818139],[-127.07921645850753,57.151386893915294],[-127.07935734822443,57.15154152429637],[-127.07945941467531,57.15171328764317],[-127.07953797220222,57.15189533258333],[-127.07960522613074,57.15207971255348],[-127.07967756513841,57.1522606880318],[-127.07976004063306,57.152434854796],[-127.0798394226416,57.15260904710345],[-127.07991574267672,57.15278438552211],[-127.07998994694796,57.15295862059006],[-127.08006318910189,57.1531351052438],[-127.08013537445345,57.15331047779808],[-127.08020651799855,57.15348585895384],[-127.08027766219435,57.15366124009379],[-127.08034883860905,57.15383774178084],[-127.08041998410843,57.15401312288931],[-127.08049319868243,57.15418848687758],[-127.08056743986894,57.154363842363345],[-127.0806437351472,57.15453806002271],[-127.08072312552298,57.15471225206657],[-127.08080561103823,57.15488641848924],[-127.08089015073615,57.15505944707094],[-127.08097985412302,57.155232432908456],[-127.08107262118848,57.15540427254063],[-127.08116954263016,57.15557607776183],[-127.08126858009321,57.155750107082014],[-127.08137174043769,57.15592298141167],[-127.08147905381988,57.15609694214369],[-127.081592527118,57.15626861017836],[-127.08171320145449,57.15643909770712],[-127.08184101368609,57.15660616357975],[-127.08197909153824,57.15676978187644],[-127.08212634437406,57.15692884076913],[-127.08228588339841,57.157083314457466],[-127.08245764543724,57.157230961764135],[-127.08265701017115,57.15736717190603],[-127.08289121099712,57.157490763984214],[-127.08315094612,57.15760293573873],[-127.08342911030925,57.157708229236185],[-127.08371539214866,57.157807850700756],[-127.08400266983413,57.15790634246882],[-127.08427965409047,57.15800603986332],[-127.08456766035088,57.15809331609732],[-127.08487480443698,57.1581624995728],[-127.0851849022999,57.158226053665906],[-127.08549992729316,57.15828059947466],[-127.08581591576724,57.15833289486983],[-127.0861309577275,57.158388559864775],[-127.08644003344928,57.158452119518344],[-127.08674317351323,57.15852581528018],[-127.08706110728801,57.15857360820922],[-127.08738486650184,57.158607901942744],[-127.087710631381,57.158639936526],[-127.08803737581654,57.15866972048678],[-127.08836511501033,57.1586983745206],[-127.08869285469392,57.1587270277332],[-127.08901958408508,57.158756809378076],[-127.08934432553541,57.158788848443336],[-127.08966815229749,57.158825377655695],[-127.08998899581054,57.15886641427741],[-127.09030587852833,57.15891308731824],[-127.09062290483152,57.158965362554305],[-127.09093909722567,57.15902436897758],[-127.09125128079121,57.159087891446944],[-127.09155748263208,57.15915930896555],[-127.09185560230384,57.15923751829639],[-127.09214464575986,57.159323648635905],[-127.09242259171916,57.159419958607096],[-127.09268854197516,57.15953093912142],[-127.09294756441376,57.15965318537653],[-127.09319957990077,57.15978333558397],[-127.09344856619512,57.15991575234302],[-127.0936954369618,57.160047065527905],[-127.09394420288571,57.16017163741359],[-127.09419673960996,57.16028384811818],[-127.0944540101669,57.16038032705094],[-127.09472104991558,57.16045654866555],[-127.0950043713748,57.16048667916521],[-127.09531449460809,57.160441488597705],[-127.09563579737814,57.16035249106832],[-127.09595570368387,57.160251175289],[-127.09625852836142,57.160167935344724],[-127.09654571630173,57.16008034256796],[-127.09682751499682,57.15998494855554],[-127.09710932780303,57.15989067464524],[-127.09739431471915,57.159798615133944],[-127.09767607715331,57.15970209874831],[-127.09795775744439,57.15960334077412],[-127.09823951702552,57.15950682318783],[-127.09852449837554,57.159414761238516],[-127.09881486660049,57.159330499199],[-127.09911283556441,57.15925850174504],[-127.09942053845596,57.15920099254414],[-127.09974012413178,57.15916131594396],[-127.10006830535927,57.15913277453224],[-127.10040091288523,57.15911428252007],[-127.10073464266024,57.159099142706204],[-127.10106632004242,57.15908401933101],[-127.10139685798659,57.159065542215096],[-127.1017304259575,57.15904479704792],[-127.10206413894508,57.159028533138176],[-127.10239599194327,57.15902012990077],[-127.1027241107133,57.159025207336086],[-127.10304655500431,57.159049386022026],[-127.10337557698236,57.15908583755225],[-127.10370801688242,57.15913346773391],[-127.1040335638567,57.15919348448985],[-127.10433991943687,57.159269354311],[-127.10461573008988,57.15936229414184],[-127.10485071704997,57.159474632753565],[-127.10504911460956,57.15960969707016],[-127.10522110480349,57.159761796976476],[-127.10537480091365,57.15992525978001],[-127.10552038495545,57.160094395235824],[-127.10566698061322,57.16026240116727],[-127.10582371084288,57.16042359619491],[-127.10597941628656,57.160584799737876],[-127.1061229367328,57.160753952113986],[-127.10626245021956,57.16092762162907],[-127.10640090651711,57.161100179142295],[-127.10654443075174,57.16126933112081],[-127.10670011031513,57.16142941334442],[-127.10687205052085,57.161579270159265],[-127.1070662637433,57.161712125544405],[-127.10728885934114,57.1618245651201],[-127.10755208833056,57.16191088072443],[-127.10785287130435,57.161972219046305],[-127.10818001603943,57.16201427891363],[-127.10852434953927,57.162042742119155],[-127.10887466319866,57.16206330781675],[-127.10922183328442,57.16208277842218],[-127.10955466812385,57.16210685316878],[-127.10988725976249,57.16212308327015],[-127.11022781910826,57.16212803645815],[-127.11057131123351,57.1621273596456],[-127.11091576455378,57.162124432082884],[-127.1112571553182,57.16212265049161],[-127.11159150832268,57.16212765290067],[-127.11191683584548,57.16214281879352],[-127.11222916298843,57.162173786262464],[-127.11252446651787,57.16222395217035],[-127.11279272781147,57.1623046103352],[-127.11302891303166,57.16242140800011],[-127.1132430745947,57.16256305133012],[-127.11344417233275,57.16271825571264],[-127.11364119904123,57.16287573618716],[-127.11384420614309,57.16302531954875],[-127.11405418719285,57.163165876457164],[-127.1142560735662,57.16331210627108],[-127.11445183592086,57.16346175054471],[-127.11464460243985,57.163614782627256],[-127.11483834806708,57.16376556442282],[-127.11503515775173,57.16391519897894],[-127.11523900641211,57.16405804815751],[-127.1154519795181,57.16419409412429],[-127.11567707438158,57.16431994872168],[-127.11591940638685,57.16443332652408],[-127.11617995248139,57.16453309824681],[-127.11646203660845,57.16462596043345],[-127.11676155346305,57.164713068863904],[-127.11707527678031,57.164791088465364],[-127.11739913422196,57.164861174791774],[-127.11772885655694,57.164920001748456],[-127.11806037132838,57.16496872496788],[-127.11839147811902,57.16500400073412],[-127.11871699623035,57.16502475254811],[-127.11903381352036,57.16503100709371],[-127.1193407071038,57.16501604984643],[-127.11964373599255,57.164975345595224],[-127.119945034042,57.164911117765534],[-127.12024378750377,57.164830098400785],[-127.12054222838387,57.16473899344011],[-127.12083944507349,57.164641173232496],[-127.12113662747743,57.16454223179434],[-127.12143397223615,57.164448892496615],[-127.12173265337717,57.1643656286336],[-127.12229740982453,57.16442915167106],[-127.1226233189187,57.164463340486094],[-127.12294919577204,57.164496407928034],[-127.12327507318747,57.16452947455824],[-127.12360098400616,57.164563660938136],[-127.12392588549798,57.164598976034696],[-127.12424982710077,57.16463654027441],[-127.12457176610803,57.164676362636975],[-127.12489173544941,57.16471956369836],[-127.12520874187996,57.16476727286957],[-127.12552379516123,57.164819481477714],[-127.12583095190638,57.164884086645955],[-127.12613118912242,57.164959959171455],[-127.12642644432516,57.16504259902805],[-127.12672077337865,57.165128608752724],[-127.1270150708112,57.165213497259025],[-127.1273123495248,57.16529387602438],[-127.12761449709124,57.16536412451507],[-127.12792455914995,57.165421974719585],[-127.12824687132351,57.165474114224224],[-127.1285773284786,57.16552169923004],[-127.12891169350499,57.16556140373469],[-127.12924675538599,57.16558989291106],[-127.12957720102987,57.16560160843919],[-127.12989675681797,57.16559548373933],[-127.13020308908344,57.16556145145242],[-127.13049166258904,57.165487221588435],[-127.1307690802121,57.16538506644591],[-127.13104408021243,57.16527172317042],[-127.13132336539324,57.16516282560368],[-127.13161464857863,57.16507511962978],[-127.13192104192149,57.165008578214575],[-127.13223499829455,57.16495317901816],[-127.13255540896779,57.164905569055826],[-127.13287907959564,57.16486353427699],[-127.13320390821274,57.164825972036475],[-127.13353285755652,57.1647872523992],[-127.13387810944612,57.16474054457076],[-127.13422564492302,57.164700541085764],[-127.13455437843496,57.1646898418982],[-127.1348461544312,57.16472429665523],[-127.13508998427517,57.164816330365696],[-127.13530089667621,57.1649501209139],[-127.13549491286123,57.16510759573104],[-127.13569007299928,57.16526842289415],[-127.13590342420066,57.16541452068559],[-127.13614809118891,57.165534566444684],[-127.13641103214458,57.1656432444046],[-127.13668623915217,57.16574621094164],[-127.13696240740992,57.16584692686199],[-127.13723146019217,57.16595218752423],[-127.13748628047482,57.16606541745813],[-127.13770861283938,57.166200225840164],[-127.1378945186174,57.166362251376725],[-127.1380741689592,57.166523210301804],[-127.13835044020227,57.16669677772522],[-127.13854503823686,57.166733191616565],[-127.13885745755009,57.166765216116445],[-127.13919902150886,57.16676784377118],[-127.13954933837518,57.16675133977916],[-127.13989016923696,57.166729313327764],[-127.14021540673413,57.16670518031797],[-127.14053931752062,57.16667097042561],[-127.14086203473425,57.1666311658961],[-127.14118357504174,57.1665868874417],[-127.14150614086154,57.16654259923493],[-127.14182771305789,57.166499439757374],[-127.14215152051251,57.166461864200514],[-127.14247853937549,57.16642762231583],[-127.14280771036796,57.16639672334155],[-127.14313578775267,57.16636359139901],[-127.14345959277786,57.166326012605516],[-127.14377695599909,57.16628064342676],[-127.14408464819056,57.166223028774766],[-127.14436866032015,57.16613535777174],[-127.14463119439067,57.166020973839906],[-127.14489265064071,57.16590547796802],[-127.14517129345644,57.16581112713761],[-127.14547566709244,57.16574681315568],[-127.14579285567983,57.16569583631864],[-127.14611655196042,57.16565488929245],[-127.14644347682724,57.16561839654129],[-127.14676831509651,57.16558080042565],[-127.14709327029108,57.16554768587361],[-127.14742051170927,57.16552127554166],[-127.14768800340582,57.16550435587594],[-127.14804549325392,57.16541715242216],[-127.14831351128213,57.16531392135117],[-127.14861631231541,57.16523168020698],[-127.14888965959453,57.16513400536138],[-127.14911032356775,57.16500428848392],[-127.14932543582442,57.164862290699645],[-127.14952582857279,57.164712576074564],[-127.14970325966308,57.164556338034245],[-127.14984534923826,57.16439480644372],[-127.14993971769556,57.164229211198176],[-127.14997798909074,57.16405626355802],[-127.14997570635555,57.16387694766995],[-127.1499515739736,57.163693340661865],[-127.14992434675614,57.163509760907175],[-127.14991161905165,57.16332717444832],[-127.14991651879119,57.16314555376556],[-127.1499077774834,57.16295732803726],[-127.14991671407819,57.16277230933885],[-127.14997774142508,57.16259916164762],[-127.15012005789154,57.16244547386512],[-127.1503020171615,57.162302645495856],[-127.15050792637706,57.16216521027847],[-127.1507305357099,57.162032111084635],[-127.15096353826087,57.16190116167522],[-127.15120175314173,57.16177128678286],[-127.15143786396347,57.161640309144786],[-127.15166769949657,57.16150714468346],[-127.15188288365827,57.16136850471688],[-127.15208242407581,57.16122551891633],[-127.15228187910247,57.16108029187022],[-127.15247921304972,57.16093284153177],[-127.15267232406146,57.160783186450296],[-127.15285710777732,57.16063136285336],[-127.15303043634566,57.16047739837522],[-127.15318813873083,57.160320209022196],[-127.15332819662851,57.16016093351365],[-127.15344119166643,57.15999629249721],[-127.15347924078326,57.159816621081994],[-127.1534673040267,57.15962618242478],[-127.15344502402213,57.15943583509034],[-127.15345512017161,57.15925528963225],[-127.15353817565138,57.15909315457286],[-127.15370887186333,57.158954904375506],[-127.15393797804748,57.1588329508824],[-127.15420362944539,57.158721882669674],[-127.1544880319138,57.158615131639436],[-127.15477239905192,57.15850725945051],[-127.15503688472512,57.15839171644536],[-127.15527523281581,57.15826743720983],[-127.15550727224978,57.15813985078368],[-127.15573507162523,57.1580089389058],[-127.1559597582889,57.15787805416564],[-127.15618232381176,57.157744946113425],[-127.1564038114348,57.157610726374706],[-127.15662425495007,57.15747651550214],[-127.15683946618724,57.157340108886764],[-127.15703568700246,57.157191540764444],[-127.15723828101264,57.15704852013844],[-127.1574746465579,57.156927616974585],[-127.15777021508859,57.15684878098369],[-127.15809324857874,57.156788755286875],[-127.15839095099332,57.1567121406592],[-127.158635720333,57.15659564425838],[-127.15886760301207,57.15646356984297],[-127.15907736663604,57.15631824107164],[-127.15925160895843,57.15616201864861],[-127.1593780879681,57.1559994947255],[-127.15946188281522,57.15582838268777],[-127.15951651508449,57.155650804327955],[-127.15955449754287,57.15547001118369],[-127.15958620653369,57.15528703203358],[-127.15962415441763,57.155105118373974],[-127.15967984473215,57.15492865148063],[-127.1597646783758,57.15475753013319],[-127.159911029447,57.15460267532983],[-127.16012506869302,57.154462911220186],[-127.16036313853185,57.15433077926651],[-127.16059086479312,57.1541987387539],[-127.16081759748928,57.154067827515036],[-127.16104959307546,57.15394023164869],[-127.1612836554842,57.15381261699937],[-127.16151775027494,57.15368612248545],[-127.16174970727636,57.15355740487006],[-127.16197644963151,57.15342761237244],[-127.16219262759496,57.15329006754138],[-127.1624045828707,57.15315031823246],[-127.16262079170704,57.153013893263214],[-127.16284966417219,57.15288632198156],[-127.1631016089215,57.152768632505364],[-127.1633763888861,57.152654101746506],[-127.16367051245689,57.152562935845026],[-127.16397631996375,57.152516498940614],[-127.16429187929113,57.15251817070488],[-127.16461661406747,57.152550022710486],[-127.16494697090724,57.15259639476204],[-127.16527826882383,57.15263939506088],[-127.1656079801258,57.15266447517157],[-127.16594227518728,57.15267045919359],[-127.16628351098312,57.15266629280491],[-127.16661375753097,57.152640927597844],[-127.16691826344807,57.152585528643556],[-127.16719589994383,57.15249674367013],[-127.16745629006653,57.152385695311786],[-127.16770700438158,57.15226240361568],[-127.1679587936207,57.1521402226709],[-127.16821177778448,57.15202363477644],[-127.1684594790643,57.151903731100866],[-127.16871035774456,57.151786040219335],[-127.16898143799912,57.151686101617635],[-127.1692833180348,57.15161278707523],[-127.16968419900795,57.15152961879061],[-127.16968091864531,57.1513884217551],[-127.16954622906567,57.15121141326964],[-127.16948015106551,57.15104611982725],[-127.16937465763247,57.150876695791794],[-127.1692670462275,57.15070616981226],[-127.16915948648501,57.15053676415546],[-127.16905187699041,57.15036623804193],[-127.16894842133306,57.15019567470437],[-127.16885009456848,57.15002394458566],[-127.16875173453677,57.149851093877494],[-127.16863879598064,57.14967501100382],[-127.16853206285194,57.14949887256197],[-127.16845531018116,57.14932246593107],[-127.16843661842543,57.14915002339097],[-127.16849984757339,57.14898469407929],[-127.16863559602099,57.148823199438986],[-127.16880969706828,57.14866472407294],[-127.1689900174508,57.1485061928302],[-127.16914017029933,57.14834232711395],[-127.16923733897555,57.14817108956031],[-127.16931273221759,57.147997805170405],[-127.16937458830195,57.14782127940246],[-127.16942812098833,57.14764370728967],[-127.16947649140089,57.14746618138656],[-127.16952272501945,57.14728643293255],[-127.169572136816,57.14710889771047],[-127.16962667569065,57.14693019574435],[-127.16968958849978,57.146754781318414],[-127.16976176416216,57.14657816309689],[-127.16983915151435,57.14640261902254],[-127.16991761458505,57.1462281861253],[-127.16999395827439,57.146052651338806],[-127.170064114006,57.14587717194895],[-127.17012594666964,57.14570064625167],[-127.17017437977321,57.14552536141356],[-127.17016998655554,57.145347187273956],[-127.17012105697722,57.14516717041829],[-127.1700825014711,57.14498818148965],[-127.17004269902998,57.144802478711256],[-127.17000393917876,57.144616766611584],[-127.17001412439224,57.1444418245358],[-127.17014605652682,57.14429157123833],[-127.17044129639278,57.144172358980505],[-127.17068581232668,57.14405135897047],[-127.17068326331335,57.14390006861763],[-127.17051161403495,57.14373123940447],[-127.17037593952085,57.14355536265233],[-127.17039437741131,57.143380346724435],[-127.17046755145431,57.14320259868626],[-127.17056550398657,57.143023507741326],[-127.17066656553091,57.14284438887528],[-127.17074387281198,57.14266660368968],[-127.17077478350495,57.1424937176873],[-127.17073757756778,57.14232480474174],[-127.17063839180959,57.142158688966],[-127.1704907262285,57.14199637008915],[-127.17031108894038,57.141836579208125],[-127.17011200673505,57.14168368732301],[-127.16990795363985,57.14153756470614],[-127.1696990486483,57.14140157277417],[-127.16946767388046,57.141274748403376],[-127.16922097208366,57.14115366502708],[-127.16896815472039,57.141035998448245],[-127.16871838040251,57.140916062505205],[-127.16847781799694,57.14079268119556],[-127.1682484503431,57.14066359516577],[-127.16802111776194,57.14053336972605],[-127.16779578614171,57.140400884357675],[-127.16757255781542,57.14026950066064],[-127.16734926282206,57.14013587553549],[-127.16712702901454,57.14000336140763],[-127.1669027797559,57.1398719857686],[-127.16667234675509,57.13974178583987],[-127.16644088978958,57.139611594675756],[-127.16621353551326,57.13948024566239],[-127.1659974606038,57.13934543308746],[-127.16579770697611,57.139203749505086],[-127.16561820444942,57.13904731408927],[-127.16548070562663,57.13887817449032],[-127.16541253075265,57.13871065789634],[-127.16556755613391,57.13846941634355],[-127.16578634446215,57.13842150953876],[-127.16612402358219,57.13837254091867],[-127.16642938162258,57.1384168891903],[-127.16672335749992,57.13849496341929],[-127.16701571016125,57.138587622335315],[-127.16731110563504,57.138678011754756],[-127.16761627804765,57.13875037978838],[-127.16793208092885,57.138797993728176],[-127.16825601832463,57.1388410508192],[-127.16858392089858,57.138878467469496],[-127.1689147630083,57.13891025282649],[-127.16924741761979,57.138934175287964],[-127.16957873967688,57.13894802133268],[-127.16990659301283,57.13894956843392],[-127.17022988454013,57.13893770557462],[-127.17055068037297,57.138911293434745],[-127.17087002331874,57.13887144351646],[-127.1711879814643,57.138820396886764],[-127.17150467373165,57.13876151499094],[-127.17182020261451,57.138698159421345],[-127.1721325181618,57.13863146941738],[-127.1724428335752,57.13856703828369],[-127.17275424195273,57.13850483826173],[-127.17307086068423,57.13844371152875],[-127.17338852044125,57.13838257466956],[-127.17370189046768,57.13831699224231],[-127.17400673155181,57.13824251904486],[-127.17429680790283,57.138159211202904],[-127.17456680391427,57.13806151244633],[-127.17481357559475,57.13794833034701],[-127.17504129216663,57.137820748364796],[-127.1752541915232,57.1376820909718],[-127.17545755361256,57.13753567322731],[-127.17565459217376,57.137385949586935],[-127.17585270554355,57.137237336809726],[-127.17605399553389,57.13709093679839],[-127.1762647853753,57.13695117592508],[-127.17648832195528,57.13682250822988],[-127.17673091075595,57.136708239335015],[-127.17700302654374,57.13661275806863],[-127.17730256768525,57.13653496235481],[-127.17762225578025,57.13647379679833],[-127.17795166736876,57.13642599276295],[-127.1782824642549,57.136389383735],[-127.17860731710788,57.13636179418013],[-127.17893456334525,57.136344269717775],[-127.1792673139783,57.1363379030753],[-127.17960244198825,57.13634160162216],[-127.17993676932112,57.13635315238578],[-127.18026827977576,57.13637369442975],[-127.18059172780208,57.13640103352598],[-127.18089953368371,57.13645765497067],[-127.1811929470334,57.13655027259264],[-127.18148728372196,57.13663951871597],[-127.18179695317066,57.136689396214265],[-127.18212453981673,57.13671669410569],[-127.18246008584572,57.1367338315972],[-127.18279837959702,57.13673973498834],[-127.18313217500528,57.136733349061274],[-127.18345820753046,57.13671022008628],[-127.18376917987108,57.136668172588635],[-127.18407108640045,57.136600427312565],[-127.18436413411015,57.13651370745799],[-127.18464959026385,57.136415847441235],[-127.18493188289723,57.136315773824926],[-127.18520694640637,57.13621576519698],[-127.18546184055556,57.136099126524435],[-127.18570931585649,57.135976950526334],[-127.1859718320332,57.13587257084465],[-127.18628995311266,57.13582821069566],[-127.18662014546625,57.13580615680689],[-127.18694820072528,57.135781879831086],[-127.18727635959738,57.13576096359426],[-127.18760458748295,57.135742287574615],[-127.18793392639807,57.13572584229406],[-127.18826331790162,57.13571163737477],[-127.18859276041468,57.13569855199478],[-127.18892322812138,57.135685456448975],[-127.18925155876032,57.13567013785257],[-127.18958081032467,57.135651447530456],[-127.18990783697079,57.13562717246399],[-127.1902356452825,57.13559504359453],[-127.1905622720042,57.135558441322644],[-127.19088898420432,57.13552407912351],[-127.19121382066126,57.13549645823289],[-127.19153905599258,57.13548116209801],[-127.1918681844665,57.135491608873465],[-127.19219528320797,57.13553681930218],[-127.19249941730766,57.135608017870055],[-127.19273611523684,57.135738115188815],[-127.19296350327562,57.13586829714706],[-127.19327295218959,57.135877799342616],[-127.1936152663597,57.13584665027818],[-127.19394261011811,57.13586607487756],[-127.19426924270918,57.135895592705324],[-127.1946899074082,57.135856999291555],[-127.1949908161135,57.13579147938596],[-127.1952721215805,57.13569363388883],[-127.19552698166143,57.13557697562012],[-127.19573779701598,57.13544054503786],[-127.19590453286045,57.135283221843096],[-127.19603273379074,57.13511728465258],[-127.19611518936594,57.13494279962616],[-127.19617478229775,57.13476516145883],[-127.19623751885312,57.134588615324944],[-127.19630025483119,57.134412069183895],[-127.19635986262027,57.1342344308502],[-127.19640911689793,57.13405688735937],[-127.19644494170345,57.13387946690525],[-127.19643422603956,57.13370135201608],[-127.19637902127242,57.13352252389372],[-127.196352758462,57.1333434306419],[-127.19633778755029,57.133161992294085],[-127.19631755217054,57.13297723968868],[-127.19629632658318,57.13279361701409],[-127.19628335348683,57.13260991876487],[-127.19628497223594,57.13242944937669],[-127.19630528392422,57.13225217127612],[-127.19635368527899,57.132080240035684],[-127.19644577626116,57.13191687519794],[-127.19661273850784,57.131767395113776],[-127.19682962567919,57.13162754478154],[-127.19706522045358,57.13149088510499],[-127.19728830582721,57.131350977191346],[-127.19748121463186,57.13120462061351],[-127.19766680881872,57.13105608916999],[-127.19784922266875,57.13090534496958],[-127.19803165162246,57.130754600379426],[-127.19821616469433,57.130604957249005],[-127.19840385522178,57.130457526369796],[-127.19859889236533,57.130313390293495],[-127.19880336163729,57.13017365067424],[-127.19902667811432,57.1300415835181],[-127.19927311593985,57.129921632809015],[-127.19952999257762,57.12980494824202],[-127.19978375881425,57.12968829174435],[-127.2000004384347,57.12957533807739],[-127.2000217836713,57.12956393357321],[-127.2002325500131,57.12942749634166],[-127.20042860029763,57.129283348218436],[-127.20062048001508,57.129138117315605],[-127.2008091959041,57.12899067356002],[-127.20099476650293,57.12884213762963],[-127.2011771918322,57.128692509538155],[-127.20135645336839,57.12854066863586],[-127.20153364650963,57.12838884652458],[-127.2017087010994,57.12823480219113],[-127.20188069720774,57.128081906613254],[-127.20205053825791,57.12792678898559],[-127.20221832752779,57.12777169003349],[-127.2023840319716,57.12761661006914],[-127.20254764957122,57.127460428286234],[-127.20271022411272,57.12730425591154],[-127.202870660175,57.1271458613746],[-127.20302584913894,57.12698527332564],[-127.20317587784334,57.1268247326501],[-127.20331650717971,57.12666091593499],[-127.20344674927293,57.12649607398367],[-127.2035655253302,57.126327975107344],[-127.20366979721392,57.126158889012665],[-127.20376263849558,57.125987666567084],[-127.20384715991645,57.12581539994805],[-127.20392542632509,57.12564094930133],[-127.20399743987939,57.12546543545164],[-127.20406533569299,57.125289959552546],[-127.20412904559535,57.12511340140797],[-127.20418966299495,57.12493687177193],[-127.20424921955252,57.12475923107873],[-127.20430669225468,57.12458160959797],[-127.20436418095893,57.124403987962474],[-127.20442269423947,57.1242263568683],[-127.20448226724989,57.124049836820646],[-127.20454494807682,57.12387328809104],[-127.20460969504927,57.12369672028568],[-127.20467237471337,57.12352017154064],[-127.2047350538008,57.12334362278849],[-127.20479773231163,57.12316707402905],[-127.20485938517055,57.12299053472251],[-127.20491999585838,57.12281400502267],[-127.2049816310545,57.1226374658567],[-127.20504328221685,57.12246092653203],[-127.20510491627893,57.12228438735356],[-127.20516660149313,57.122108968521054],[-127.20522927600277,57.12193241971455],[-127.2052940165532,57.12175585182138],[-127.205360858307,57.121580385342824],[-127.20542973085497,57.12140377926693],[-127.20549966299215,57.12122828421651],[-127.20556961102245,57.121052788998654],[-127.2056395418806,57.120877293918575],[-127.20570634532447,57.12070070687267],[-127.20577009179584,57.12052526887293],[-127.20582965286572,57.12034874868999],[-127.20587679552433,57.12017122237953],[-127.20586798429775,57.11998972961778],[-127.20587082887327,57.11981709583827],[-127.20589285984883,57.11959721008724],[-127.2060031226832,57.11945496722317],[-127.20608449299463,57.11928160803946],[-127.20618131765,57.119106985201526],[-127.20628856071195,57.11893450768986],[-127.20640198564537,57.1187619729739],[-127.20651749253693,57.118589418929844],[-127.20662992569429,57.118418014033786],[-127.20673405690856,57.11824556497041],[-127.20682575344662,57.118072109966974],[-127.20690091788498,57.11789880776079],[-127.20695434094985,57.11772458572026],[-127.20697984029434,57.117549501037935],[-127.20698154905999,57.11737351551837],[-127.20697290942351,57.117197625704314],[-127.20695388412183,57.117019590287995],[-127.20692765373194,57.11684274233683],[-127.20689312298221,57.11666485032245],[-127.20685239355379,57.11648701563443],[-127.20680438887717,57.11630812739526],[-127.20675122712893,57.11612928684165],[-127.20669396849274,57.11595160499206],[-127.20663254257433,57.11577284084243],[-127.20656802606563,57.11559410526025],[-127.20650043769832,57.11541651889259],[-127.20643177334165,57.11523782163916],[-127.20636211997555,57.11506025434342],[-127.20629250246603,57.114883807532124],[-127.20622285038642,57.11470624020813],[-127.20615427553787,57.11452978374535],[-127.20608778621421,57.11435442882831],[-127.20601197261841,57.11417803923398],[-127.20591443768774,57.11400072948192],[-127.2057923040277,57.11383037186819],[-127.20564263818962,57.113671476710444],[-127.20545938260565,57.11352858314645],[-127.20521184499152,57.1134120618346],[-127.20492351320067,57.113312729002814],[-127.20463414155833,57.11321340515203],[-127.20438561882483,57.11309801225601],[-127.20420434997283,57.11295285708263],[-127.2040669152142,57.11278824336038],[-127.2039529340754,57.11261332579541],[-127.20385013365791,57.112432700933546],[-127.20374230121861,57.112256605716006],[-127.20361620760518,57.11209076622816],[-127.20345550193942,57.111942058102194],[-127.20324502966314,57.11182070829981],[-127.20297260500129,57.11173355381022],[-127.20265852084985,57.11166919904793],[-127.20232615894113,57.111615099297445],[-127.2019967484748,57.11155648825037],[-127.20169165729808,57.11148196099963],[-127.2013812886888,57.11140411916828],[-127.20106671910905,57.111324073634215],[-127.20076640293148,57.111237171311934],[-127.20050181522606,57.111136489860755],[-127.20029345777715,57.11101623686413],[-127.20018514633182,57.11085695576713],[-127.20015243799631,57.11067007977648],[-127.20013922525338,57.11047854126428],[-127.20011695256134,57.1102949318167],[-127.20012966185325,57.11010651745166],[-127.20012598326959,57.10992273707645],[-127.20004342197008,57.10976097760198],[-127.20000044732954,57.10974119801197],[-127.19983171190118,57.109665412891935],[-127.19957643348457,57.10953101968694],[-127.19932499220653,57.10938762421097],[-127.19903393016607,57.10929839152603],[-127.19873219824404,57.10923167255754],[-127.19841342324706,57.109181921659406],[-127.19808671654548,57.10914233015805],[-127.1977591091156,57.10910722938033],[-127.1973873209713,57.109080378851054],[-127.19697675121265,57.10906845357365],[-127.19674275307781,57.109020162714124],[-127.19684896414677,57.108913831995885],[-127.19723206267716,57.108905834967125],[-127.19762585127111,57.108876443198795],[-127.1979586861767,57.10884760974601],[-127.19824350678587,57.108769900338956],[-127.19849614819088,57.10865437804494],[-127.1987349830848,57.10852665308765],[-127.19896650748568,57.1083967532178],[-127.19919282232156,57.10826577998729],[-127.19941173824579,57.10812927027832],[-127.19962855172255,57.107991658710624],[-127.19984640484459,57.10785403722419],[-127.20000060932018,57.107762954105745],[-127.2000695879226,57.10772197044429],[-127.20030117301766,57.107594309271654],[-127.2005454670161,57.107476618122305],[-127.2008067068176,57.10737222038753],[-127.20108902423601,57.10728107793733],[-127.20138615178148,57.10720100669735],[-127.20169178690958,57.10712870215106],[-127.20199952179424,57.10705749835903],[-127.20230411344983,57.10698520197607],[-127.20261408735674,57.10691958017605],[-127.20293263943158,57.106863965911714],[-127.20324901942169,57.10680500844077],[-127.2035495267536,57.10673386759854],[-127.20382242318577,57.10663944360881],[-127.20408244804493,57.106529446371134],[-127.2043349165515,57.106409430995576],[-127.2045747426885,57.10628168610605],[-127.20479986065978,57.10614623084567],[-127.20500414350947,57.1060053635002],[-127.20518759138048,57.10585908416906],[-127.20534898741205,57.10570180010184],[-127.2054873940136,57.10553576167831],[-127.2056018240992,57.105363219728],[-127.20568825204059,57.1051875739595],[-127.20574577569344,57.10501219521557],[-127.20577639292227,57.10483594426247],[-127.20578626386131,57.10465652257271],[-127.20578266429084,57.10447610455744],[-127.20577080204451,57.10429576291303],[-127.20575683905513,57.10411431988782],[-127.20574700751352,57.10393283871237],[-127.2057485640533,57.10375237315149],[-127.2057677571413,57.10357398628123],[-127.20582527801392,57.10339860770807],[-127.20592527606505,57.1032273198437],[-127.2060377020817,57.10305703786793],[-127.20613662203606,57.102884639017084],[-127.20623864775258,57.10271221139544],[-127.20634070775527,57.10254090420401],[-127.20643340961918,57.1023674418389],[-127.20650127214631,57.10219308827612],[-127.20653499025399,57.10201680878241],[-127.20653761925506,57.10183745432535],[-127.20652571907154,57.101655992607654],[-127.20651282970626,57.10147566087317],[-127.20651129253616,57.101295224196605],[-127.20650352365686,57.10111372435146],[-127.20649158865344,57.10093114223893],[-127.20648791570856,57.100748483757705],[-127.20650609806611,57.10057122728027],[-127.20655850955282,57.100398137561726],[-127.20670232888102,57.10024101471023],[-127.2069188251798,57.10009554841789],[-127.2070377282651,57.1000003003325],[-127.20710829296742,57.099944727755876],[-127.20719182328425,57.09977583318435],[-127.20723277334602,57.09959948686097],[-127.2072518870124,57.09941885933905],[-127.20725857284492,57.099237226014466],[-127.20726109259853,57.09905451044865],[-127.20726774309809,57.09887175668636],[-127.20728788066393,57.09869111977578],[-127.20732775295629,57.09851366270811],[-127.2073966807825,57.09834042001997],[-127.20749780528627,57.09817248340064],[-127.2076238373831,57.09800879942466],[-127.2077695677765,57.09784717461619],[-127.20792673495751,57.09768768539176],[-127.20808909110141,57.097529268748694],[-127.20825141065262,57.097369731437986],[-127.2084054324175,57.097209149973864],[-127.20854909120138,57.09704754351673],[-127.20869890934269,57.09688475903843],[-127.20885185112604,57.09672306626371],[-127.20899757147322,57.09656144023426],[-127.20912869272414,57.096395466109534],[-127.20923289413548,57.09622749974917],[-127.2092738663246,57.096052273721284],[-127.20930382513279,57.095855854406956],[-127.20937130918402,57.09570279882917],[-127.20942117719578,57.09551516145046],[-127.209422697367,57.095333576313074],[-127.20940466058639,57.095154414110006],[-127.20936604279761,57.09497768432728],[-127.20929551288985,57.09480461278746],[-127.2092012425846,57.094631761277036],[-127.20909255237581,57.094460164176326],[-127.20897770299693,57.09428974489959],[-127.20886802571921,57.09411927762733],[-127.20873672792855,57.09395125222595],[-127.20858380988362,57.093785668629245],[-127.20847011135884,57.093618600788595],[-127.20844812591966,57.09344507933647],[-127.20847462661833,57.093269987967254],[-127.20852894331546,57.09309239732267],[-127.20859669068642,57.09291468224897],[-127.20859777327139,57.09275215526273],[-127.20868594041437,57.09260002954795],[-127.20869657371121,57.09238025298569],[-127.20870521072719,57.09219523994146],[-127.20871345812664,57.09203040503801],[-127.20871674789731,57.09183983755344],[-127.20876387748785,57.09166343436299],[-127.20884613017152,57.091487826515596],[-127.20894085902462,57.09131434462311],[-127.20902311015169,57.09113873670846],[-127.20907129696604,57.09096344448209],[-127.2090594939949,57.09078534585902],[-127.20900533285953,57.090606519033656],[-127.20894393671342,57.090427759264436],[-127.20891457441307,57.09024982343493],[-127.20896685516232,57.090073372609446],[-127.20907495831284,57.08989864600368],[-127.20913143817558,57.089724397833855],[-127.20910479314621,57.08953410810282],[-127.20907276497402,57.08936964678008],[-127.20897942595263,57.08922592818726],[-127.20893601632018,57.08902794825022],[-127.20902966275109,57.08885335576946],[-127.20910156527165,57.08867672317781],[-127.2090897275931,57.088497504374985],[-127.2090479419242,57.088318563180835],[-127.20907641187137,57.08814009161791],[-127.20914822578187,57.08796121829271],[-127.20921492058598,57.087783513202936],[-127.20915705665234,57.08761817081651],[-127.20912430663694,57.087463803659226],[-127.20904064368618,57.08726619714764],[-127.20890629843984,57.08709932200739],[-127.20877306550872,57.08693467805549],[-127.20862954530597,57.08677125012125],[-127.208485037471,57.08660895201145],[-127.20834977857581,57.08644544728977],[-127.2082340215675,57.086278399408734],[-127.20814291750601,57.08610663990753],[-127.20807230368159,57.08593020739141],[-127.20801714862368,57.08575251089429],[-127.2079753874535,57.08557356955761],[-127.20794500927754,57.085395643616884],[-127.20795585392706,57.085215094329314],[-127.2079770569122,57.08503556993153],[-127.20796935486355,57.084856313254456],[-127.20793477757458,57.084676184698594],[-127.20786217318351,57.084502012317884],[-127.20770721320604,57.08433532731599],[-127.20759457049925,57.084168250369224],[-127.2076128455717,57.0839943572806],[-127.20764850151323,57.083814699284],[-127.2076985386315,57.08363266653732],[-127.20776722672979,57.08345270267939],[-127.20785564131722,57.08327591851611],[-127.20796905963931,57.0831067483218],[-127.20811070870808,57.08294852452983],[-127.2082752777737,57.08279681304888],[-127.2084586023776,57.082650531576085],[-127.20865752338118,57.08250746770919],[-127.20886789515032,57.082367659799985],[-127.20908551810696,57.08222890512746],[-127.20930631501254,57.08209236225775],[-127.20952711034883,57.081955819027534],[-127.20974373989905,57.08181819326507],[-127.2099530799698,57.08167839317299],[-127.2101613780335,57.081538602413595],[-127.21036967458149,57.08139881133564],[-127.21057902888079,57.08126013090443],[-127.2107904979257,57.081122551301746],[-127.21100508914952,57.080986063162364],[-127.21122177858777,57.08085067598029],[-127.21144368992088,57.08071748152646],[-127.2116907424097,57.08059526108768],[-127.21196916687086,57.080486198210046],[-127.21223613781133,57.08037387880162],[-127.21244673239698,57.08024190861643],[-127.21257910641094,57.080084887053935],[-127.21269263598454,57.079920195014346],[-127.21279467741311,57.07975112653286],[-127.21288632547292,57.07957991305128],[-127.21297064967413,57.07940540524725],[-127.21304869286266,57.07922871423356],[-127.21312258783597,57.07905094097991],[-127.21319436592354,57.07887206659719],[-127.21326619523964,57.07869431251152],[-127.2133411474502,57.07851765014362],[-127.21342026291484,57.0783420698072],[-127.21350357697204,57.07816869196098],[-127.21358994301868,57.07799416487811],[-127.21367636018836,57.07782075807271],[-127.2137627246682,57.077646230918994],[-127.21384704064593,57.07747172279057],[-127.21392721090007,57.077297253214056],[-127.21400323311217,57.07712170142393],[-127.2140720570664,57.076947337416506],[-127.2141336120552,57.07677192027156],[-127.2141661073822,57.07659116971172],[-127.21409061154812,57.07639125032974],[-127.21406624142776,57.07617516383713],[-127.21421501320356,57.076113255753754],[-127.21447445643253,57.076058162391526],[-127.21485646681076,57.07605908723194],[-127.2151892918502,57.076071677259065],[-127.2155174966594,57.07610112143009],[-127.21584589819012,57.07613728771689],[-127.21617189804327,57.07616226763015],[-127.21649387149158,57.07615814361651],[-127.2168058850351,57.07610031356835],[-127.21707158790342,57.07604739818524],[-127.21742367627247,57.076048594770796],[-127.21775154648584,57.076067949297],[-127.21808049288396,57.07608841374528],[-127.21840943963244,57.07610887736421],[-127.21873831565199,57.076127099226284],[-127.21906708533574,57.07614195886827],[-127.21939574859721,57.076153456291],[-127.21972419864488,57.07615823010456],[-127.22005243530624,57.07615628031056],[-127.22038042282149,57.07614648644746],[-127.22070927251876,57.07613107970491],[-127.2210379274057,57.07611006997259],[-127.22136555811318,57.07608906900151],[-127.22169422879519,57.07606805746117],[-127.22202295387525,57.07604928617312],[-127.22235183772695,57.076034995752586],[-127.22268188777005,57.07602517675349],[-127.22301093297772,57.076016487138624],[-127.22334098269341,57.076006666471635],[-127.22367110360712,57.07599908589395],[-127.22400118869757,57.075990384018496],[-127.2243313450437,57.075983922231806],[-127.22466051317467,57.075978589686436],[-127.22499077647396,57.07597548761627],[-127.22532003512222,57.07597351494709],[-127.22565040554774,57.0759737725919],[-127.22597881908466,57.075977410191],[-127.2263083445333,57.075983278102704],[-127.2266370086024,57.07599475727511],[-127.22696581598554,57.076010717464825],[-127.2272936906787,57.0760300480008],[-127.22762168961064,57.07605273894102],[-127.22794970822493,57.076076549673296],[-127.2282767392448,57.076101489685605],[-127.22860377068916,57.07612642887825],[-127.22892977873813,57.076151376899894],[-127.22925580654356,57.076177444723655],[-127.2295818871604,57.0762046320379],[-127.22990798759083,57.07623293915391],[-127.23023410501496,57.07626124529924],[-127.23055918258315,57.07628956044697],[-127.23088532034818,57.07631898558161],[-127.23121043478817,57.07634841956764],[-127.23153554972619,57.07637785274397],[-127.23186166957892,57.076406154822415],[-127.23218678550423,57.07643558637638],[-127.23251288981326,57.076463886983554],[-127.23283800672579,57.07649331691538],[-127.23316312413627,57.07652274603733],[-127.23348931835763,57.07655328496877],[-127.23381443677427,57.07658271246828],[-127.23413955568888,57.076612139157916],[-127.23446467510142,57.07664156503777],[-127.23479078283592,57.07666985995319],[-127.23511687154632,57.07669703343774],[-127.23544387646949,57.07672083502886],[-127.23577378962835,57.07673900423914],[-127.23610264321844,57.07675606186064],[-127.23643054537817,57.07677536927942],[-127.23675665569559,57.07680365928184],[-127.23707691512577,57.076842091191914],[-127.23739531100136,57.07688726481535],[-127.2377137963264,57.076934678424614],[-127.23803023783391,57.07698323147054],[-127.23834673276684,57.077032904052565],[-127.2386632842475,57.077084816943184],[-127.2389788488706,57.077137859253945],[-127.2392944143649,57.07719090080316],[-127.23960899303334,57.07724507178218],[-127.2399235560751,57.077299242161544],[-127.24023919653416,57.077354522348635],[-127.24055377787398,57.077408691055226],[-127.240868343587,57.07746285916214],[-127.24118391435837,57.077515896151716],[-127.24149846214642,57.077568942127186],[-127.24181303050298,57.077623107961905],[-127.24212761626019,57.077677272882504],[-127.2424411987642,57.07773256741712],[-127.24275481841217,57.07778898165837],[-127.24306743485634,57.07784652552312],[-127.24338003249092,57.077902948025155],[-127.24369265079858,57.07796049039604],[-127.2440053228346,57.07801915232066],[-127.24431691915676,57.078076702967],[-127.24462855270873,57.07813537332944],[-127.24494121108259,57.078194033175414],[-127.24525281022456,57.07825158159294],[-127.245565487011,57.078310239789516],[-127.24587708803028,57.07836778672029],[-127.24618975020121,57.078426443582956],[-127.24650239348944,57.078483979082606],[-127.24681399732074,57.07854152378219],[-127.24712666233556,57.07860017840604],[-127.24743930844025,57.078657711667],[-127.24775095147156,57.07871637459309],[-127.24806358294217,57.078773906520325],[-127.24837623186322,57.07883143754255],[-127.24868886520619,57.0788889679757],[-127.24900147957494,57.078945377046026],[-127.24931511875221,57.079001775560705],[-127.24962771844372,57.079058183292744],[-127.24994232696417,57.079112329419175],[-127.25025691985687,57.079166474947],[-127.2505735215157,57.07921835884946],[-127.2508910749667,57.07926799124951],[-127.25121054759173,57.07931312124332],[-127.25153089887128,57.079353758800885],[-127.25185510390689,57.079385392125225],[-127.2521831294512,57.079408021504],[-127.25251212274252,57.0794283991517],[-127.2528391982134,57.07945327762903],[-127.25316048316162,57.079490539822146],[-127.25347800564758,57.07953904547633],[-127.25379262353053,57.07959318233373],[-127.25410530775443,57.079651820271636],[-127.25441804603074,57.07971157776019],[-127.25473169941174,57.079767963280084],[-127.2550472350409,57.079818725898505],[-127.25536856179725,57.079857103118734],[-127.25569962496213,57.07987745286126],[-127.25603359357737,57.07989216973816],[-127.25636255641538,57.07991141722396],[-127.25667982987419,57.07995207190323],[-127.25698239950225,57.080016404541674],[-127.25727713623623,57.08009426172191],[-127.2575669782661,57.08018001112016],[-127.25785287629179,57.08027140198218],[-127.2581388490626,57.080365033135884],[-127.25842474982524,57.080456422756434],[-127.2587146705671,57.08054441053911],[-127.25901049202594,57.080623374246294],[-127.25931427841101,57.08069329390252],[-127.25962507908906,57.08075642025261],[-127.25993980932151,57.0808139038567],[-127.26025853877235,57.080866864822475],[-127.26057825627655,57.080918694658166],[-127.26089801141683,57.08097164416807],[-127.26121573982314,57.08102573331596],[-127.26152841024019,57.081083233061776],[-127.26183611284588,57.08114638419417],[-127.26213581650181,57.0812174577083],[-127.26242545693688,57.08129647364376],[-127.26270315398487,57.0813890543352],[-127.26296379188932,57.08149637021662],[-127.26321343705366,57.08161500019968],[-127.26345305637459,57.08174269335898],[-127.26368869582681,57.081874907919534],[-127.26392329641827,57.08200713215041],[-127.26415990585697,57.08213709488945],[-127.26440351299772,57.08226026450507],[-127.26465809917842,57.082372119095595],[-127.26492667507722,57.082469266951584],[-127.26521322571377,57.082548306881655],[-127.26551774691562,57.082608117987704],[-127.2658362239885,57.08265322235991],[-127.26616366789285,57.08268815158331],[-127.26649712115996,57.08271741756407],[-127.26683161543689,57.082746672586445],[-127.26716108857408,57.082780458799604],[-127.2674836240532,57.0828232781275],[-127.26779322999425,57.082880792943904],[-127.26809096767086,57.08295411384204],[-127.26838388643132,57.08303756827709],[-127.26866886494078,57.08313118664732],[-127.26894692338746,57.08323383826719],[-127.26921285533895,57.08334445303432],[-127.26946662383,57.08346191056919],[-127.26970510331279,57.0835851205564],[-127.26992628677195,57.08371634425512],[-127.27012723379028,57.083860093655495],[-127.27031505086524,57.084012937189996],[-127.2704937724457,57.08417147316869],[-127.27066741645571,57.08433230003597],[-127.27084201181711,57.08449087580116],[-127.27102371520161,57.08464601964584],[-127.27121546292469,57.08479209883402],[-127.2714223546123,57.08492794279],[-127.27165147628598,57.08504899908136],[-127.27190580525887,57.08515187609951],[-127.27217724784069,57.08524113590677],[-127.27246078250607,57.08532131065408],[-127.27275545932191,57.0853946511661],[-127.27305811934119,57.08546006737911],[-127.2733689068763,57.08552092028205],[-127.27368576133567,57.08557835075646],[-127.27400557331858,57.085631268309356],[-127.27432947829608,57.08568302428107],[-127.2746533841463,57.0857347794505],[-127.27497729086922,57.08578653381759],[-127.27530024879522,57.085840538306584],[-127.2756191734302,57.08589794391086],[-127.2759330945057,57.085959880972396],[-127.27623998467536,57.086027490185266],[-127.27654088882828,57.08610188219482],[-127.27683874264841,57.08617742420599],[-127.27713568531976,57.08625633693516],[-127.2774295612006,57.08633639986028],[-127.27772351284536,57.086418703039094],[-127.27801543834403,57.08650214624581],[-127.27830740239756,57.08658670925986],[-127.27859832713139,57.08667128182607],[-127.27888826636028,57.086756984245106],[-127.27917824419512,57.08684380648038],[-127.27946818601981,57.086929507621186],[-127.27975816646752,57.08701632857821],[-127.28004811088796,57.08710202844062],[-127.28033905987404,57.087186596994066],[-127.28062999362331,57.08727116506581],[-127.2809229725356,57.08735459160047],[-127.28121589883021,57.08743689718894],[-127.2815118569816,57.087516930704815],[-127.2818117962877,57.08759244115259],[-127.28211476735058,57.087665679480686],[-127.28242071620816,57.087735525374946],[-127.28272769029488,57.08780536048422],[-127.28303364137926,57.08787520494803],[-127.28333860689068,57.08794617922889],[-127.28363950237379,57.088019434511324],[-127.28393643579977,57.0880972114089],[-127.28422734690342,57.088180651058124],[-127.28451122816382,57.08826976342278],[-127.28478608983237,57.0883668097971],[-127.28505691925665,57.088467257810066],[-127.28532374951361,57.08857110716196],[-127.28558758826254,57.08867834794742],[-127.28584839803946,57.08878785973014],[-127.28610723604655,57.088899632105615],[-127.28636403175125,57.089012544956745],[-127.2866188181955,57.08912659797],[-127.28687159988606,57.08924291193862],[-127.28712439962601,57.08935922526413],[-127.28737619777223,57.089476668835424],[-127.2876279974581,57.089594111930744],[-127.28787979868362,57.08971155454991],[-127.28813156387241,57.08982787623764],[-127.28838539544917,57.08994417705528],[-127.2886402151467,57.09005934681607],[-127.28889600187132,57.09017226489514],[-127.28942258183841,57.090321735040554],[-127.28971588757736,57.09041410581693],[-127.29000921124603,57.0905064757766],[-127.29030344759299,57.0905954735866],[-127.29059948666074,57.0906766071224],[-127.29090034206091,57.090747604890716],[-127.29120692014682,57.09080397457135],[-127.29152003988841,57.09084010386959],[-127.2918388650413,57.090861605154934],[-127.29216151881472,57.09087410111373],[-127.29248803868995,57.09087871217211],[-127.2928163972705,57.0908765792202],[-127.29314663210677,57.09086882269885],[-127.29347980498115,57.09085655289299],[-127.2938128431895,57.090839800254585],[-127.2941468297958,57.090820795696715],[-127.29448074054656,57.09079954937567],[-127.29481357244376,57.090777192076],[-127.29514541754341,57.09075596455023],[-127.2954752351658,57.09073587714098],[-127.29580302534352,57.09071692986363],[-127.29613073957672,57.09069574085553],[-127.29645735361873,57.090672320296264],[-127.29678391291371,57.09064777863047],[-127.29711041263243,57.090620995076776],[-127.29743685752815,57.09059309041745],[-127.29776223990532,57.09056407467788],[-127.29808758392342,57.0905339376743],[-127.29841396813454,57.090503789501554],[-127.2987393111307,57.09047365087422],[-127.29906469151226,57.0904446318887],[-127.29939109558401,57.090415601890435],[-127.29971651289631,57.090387701733036],[-127.30004511116323,57.0903620107188],[-127.30038119334314,57.09034409008121],[-127.30072155674024,57.09033060920762],[-127.30106409863726,57.09032046820735],[-127.30140762656778,57.090309195638234],[-127.30174802726945,57.090296832538876],[-127.302085148781,57.090278897127426],[-127.30241484469637,57.09025543082666],[-127.3027348980051,57.09022197250886],[-127.3030442628153,57.09017741186022],[-127.30333870008812,57.090119549647056],[-127.3036170878482,57.090045034689325],[-127.30386989750434,57.08994723734642],[-127.3040991936408,57.089826137129435],[-127.30431037471239,57.08968840517341],[-127.30450873015835,57.089538471997265],[-127.30470063968583,57.08938075717666],[-127.30489249305434,57.08922192180694],[-127.30508756451655,57.08906641645232],[-127.3052943036599,57.08891976069869],[-127.3055170139708,57.088787515569514],[-127.30576204224923,57.08867410076876],[-127.30603472777563,57.088583946031086],[-127.30633183459008,57.08851372109675],[-127.3066480187699,57.08845787517707],[-127.30697382835922,57.08841201951731],[-127.30730382135957,57.08836724194132],[-127.3076316560194,57.08832024349954],[-127.30794883920449,57.0882632635543],[-127.30824899075674,57.08819188284898],[-127.30851810360271,57.08808830872039],[-127.30876477988524,57.08796254253189],[-127.30900823463523,57.08783344570911],[-127.30926789060243,57.08772548159518],[-127.30956081720997,57.087654170352316],[-127.30987087186043,57.0876006197383],[-127.31019056911543,57.087557059003935],[-127.31051778972545,57.087522388540854],[-127.31084944507674,57.08749663933327],[-127.3111833559336,57.08747647076158],[-127.31151543125925,57.0874630447753],[-127.31184559469907,57.08745412049531],[-127.31217575798543,57.08744519537964],[-127.31250690693233,57.087435138677414],[-127.31284013693825,57.08742506018722],[-127.31317439086747,57.08741497053579],[-127.3135097070331,57.08740599016137],[-127.3138451162076,57.08739924965046],[-127.31417952298317,57.087393639207306],[-127.31451296573316,57.087390279285316],[-127.31484657835522,57.0873914001268],[-127.31517818649306,57.08739478199078],[-127.31550789998498,57.08740266545021],[-127.31583466181301,57.087415061183606],[-127.31615955109639,57.087433079158444],[-127.31648148895812,57.087455609446465],[-127.31679958315593,57.087486023576844],[-127.3171137624216,57.08752320146673],[-127.31742429051646,57.087573865480984],[-127.31773003373965,57.08763578543688],[-127.31803091544401,57.087706720479886],[-127.31832901706348,57.08778664961004],[-127.3186242618624,57.087873331958264],[-127.31891551588514,57.08796453734475],[-127.31920383635575,57.08806025510558],[-127.31948914637526,57.088158244371535],[-127.31977237657667,57.088256254078374],[-127.32005454559587,57.088353153096584],[-127.32033358863471,57.08844896233248],[-127.32061981298108,57.088543577452135],[-127.32091020681972,57.08863927057733],[-127.32120174185597,57.088738314024],[-127.32148824033483,57.08884077037202],[-127.32176557270905,57.088946681500445],[-127.32202966999319,57.08905833037875],[-127.32227541701182,57.089176889776276],[-127.32249970825283,57.089302391283226],[-127.32269640427809,57.08943601810129],[-127.3228593876276,57.08958007406711],[-127.32298362556493,57.08973909369621],[-127.32307621509935,57.08990852177126],[-127.3231453381006,57.09008603369624],[-127.32319811932675,57.09026931556406],[-127.32324277389172,57.0904560423875],[-127.32328634958768,57.090641659332256],[-127.32333600456776,57.09082385210793],[-127.32339685429262,57.091001447973454],[-127.32343913690265,57.09117923220777],[-127.32346905247162,57.09135826276226],[-127.32350104976884,57.09153727221551],[-127.32353303084479,57.0917162818517],[-127.32355572820727,57.09189538569833],[-127.32355269927957,57.092076992261184],[-127.32351474238936,57.092264557407724],[-127.32348903708188,57.092447514914504],[-127.32353091907326,57.09261409500001],[-127.32371964598643,57.09275564752778],[-127.32401256927793,57.0928636380058],[-127.32431809478113,57.09291769962606],[-127.32465882036676,57.09291424030312],[-127.32498800336195,57.0929052931261],[-127.3253168217069,57.09288626126407],[-127.32566756253479,57.09287373083766],[-127.32597613363122,57.09286611145558],[-127.32630767393009,57.09286610370164],[-127.32663581536897,57.092857162948604],[-127.32696345339804,57.09283365556714],[-127.32728875497907,57.09280232524931],[-127.32761057948952,57.09275982109818],[-127.3279247801594,57.092706185348696],[-127.32823461748337,57.09264586821917],[-127.32854219506136,57.09257996915772],[-127.32884651078805,57.09250961922808],[-127.32914972362137,57.09243703813688],[-127.32945083155343,57.0923633569436],[-127.32974535550268,57.092278533754715],[-127.3300311138927,57.09217922833518],[-127.33031810558846,57.09208551390774],[-127.33061629692548,57.09201746393813],[-127.33093039495671,57.091990722096966],[-127.33125577168414,57.09199188541641],[-127.33158798133879,57.092010911631604],[-127.33192343591422,57.092034387237696],[-127.33225663161812,57.09205228084928],[-127.33258602218675,57.092050037341544],[-127.33291009390527,57.092013101268115],[-127.33323668015944,57.09198958878154],[-127.33356795708211,57.0919817193027],[-127.33389862118376,57.091986184504535],[-127.33422379113077,57.0920108802114],[-127.33454354529108,57.092058047352616],[-127.33485251885004,57.092122136661544],[-127.33514667666317,57.09220543120357],[-127.33544473192623,57.09228196014893],[-127.3357645677789,57.09233136519371],[-127.33609327631487,57.092368349324005],[-127.33640396904318,57.09242232983378],[-127.33666675758619,57.09252387586107],[-127.33689158340542,57.09266279824586],[-127.33716236177,57.092756415541174],[-127.3374679927151,57.09278354522471],[-127.33779245969474,57.09281720609827],[-127.33812094937569,57.092818320448146],[-127.33842985692559,57.092880160434134],[-127.33873002801866,57.09295778116831],[-127.33900814938433,57.09305468189806],[-127.33922252196665,57.093189224353964],[-127.33937785367215,57.093349031238404],[-127.33958113685587,57.0934915329276],[-127.33979459036804,57.09362944650299],[-127.34002521557969,57.09375597492878],[-127.3403193971219,57.09383925790637],[-127.34053071194752,57.09397495064162],[-127.34072688409809,57.094120886293275],[-127.34094750297253,57.09425648279406],[-127.34116793471343,57.09435733465969],[-127.34154414596318,57.09439381699108],[-127.34185503584816,57.09445226620242],[-127.34212916322427,57.094552564194686],[-127.34243626108105,57.09462113867715],[-127.34271119694574,57.09471470208916],[-127.34293690235924,57.09484800134756],[-127.34322100820135,57.094938106796185],[-127.34353200611554,57.09499991353459],[-127.34384500824616,57.09505945720614],[-127.34410972623776,57.09515648556035],[-127.34431606404338,57.09529670717231],[-127.34461365157908,57.095358649579225],[-127.34484540582622,57.09548739997248],[-127.34513754594629,57.095570693478464],[-127.34541271418597,57.095670974092194],[-127.3457393989291,57.09567881321891],[-127.34606525908983,57.09566312222517],[-127.34638120287957,57.095718146193526],[-127.34669118788288,57.09577995600757],[-127.34699548933169,57.09585639481069],[-127.34717332467969,57.09597897281511],[-127.34745087864282,57.096117333474325],[-127.34774933917456,57.096350749790076],[-127.34806611870535,57.09640015690902],[-127.34811896579451,57.09646349926281],[-127.34840010772722,57.096556986963485],[-127.3486863435676,57.09664817972188],[-127.34896249093572,57.096746201281654],[-127.3492356289042,57.096846495100635],[-127.34951280344247,57.09694450491659],[-127.34980000691418,57.09703344360513],[-127.35010308665606,57.09710428378369],[-127.35026488247361,57.097151926829774],[-127.35073001326981,57.09721884665609],[-127.35104001738367,57.09728064620562],[-127.3512300112313,57.097425510127785],[-127.35135071175924,57.09759687111139],[-127.35158206830907,57.09771328487362],[-127.3518723719373,57.09780218704407],[-127.35242976464224,57.09770225888319],[-127.35272880393408,57.09762854509786],[-127.35299679906244,57.09752376870645],[-127.35325096563815,57.097407926672425],[-127.35349142203809,57.0972843804058],[-127.35368777345857,57.09713999513118],[-127.35385686418599,57.09698468392969],[-127.35400504155591,57.09682174359439],[-127.3541075299547,57.096652552199025],[-127.35415189288932,57.096474997239696],[-127.35416712898102,57.09629214035305],[-127.35419591525014,57.09611250539356],[-127.35429027537444,57.09594676083537],[-127.35451055542124,57.095807730219946],[-127.354684887099,57.095654605288274],[-127.354869701131,57.09550585466939],[-127.35507630781312,57.095360239990015],[-127.35531271090323,57.09523897415798],[-127.35561204188457,57.09517421741489],[-127.35594221747913,57.095134918967204],[-127.35625517585436,57.09507562335206],[-127.35655946057129,57.0950052086611],[-127.35683810867793,57.094910401165635],[-127.35709537533675,57.094795640171135],[-127.35736658655095,57.09469530463885],[-127.35766226594507,57.09461488921864],[-127.3579676248471,57.09454558087445],[-127.35827520622436,57.094480732072036],[-127.3585859948091,57.09441921169014],[-127.3588957581275,57.094357701239815],[-127.35920333643317,57.09429285025823],[-127.35950333730467,57.09421798984835],[-127.3597989523591,57.09413644934851],[-127.36010113493346,57.09406492736061],[-127.36041538025401,57.09401345419619],[-127.36073716169844,57.09397086847287],[-127.3610568144965,57.093926062455246],[-127.361373082718,57.09387344500804],[-127.3616860853617,57.09381637746687],[-127.36200327338689,57.09376038632281],[-127.3623001588463,57.093685551936325],[-127.36250073126573,57.09354559256699],[-127.36268745062492,57.09339344822707],[-127.36294681093004,57.09327977451459],[-127.36322832113626,57.09317931903647],[-127.36340196312769,57.0930373979825],[-127.36347312364924,57.09285955975793],[-127.3635410584614,57.092678392673676],[-127.36369044105616,57.092522153754054],[-127.36388031947365,57.09237221639677],[-127.36409423008985,57.09222987342522],[-127.3643293059063,57.092101879807046],[-127.36458364127763,57.09199273876154],[-127.36487511508646,57.09191122991943],[-127.3651952922047,57.091852957903264],[-127.36552222081342,57.09181030633423],[-127.36584577591618,57.09178898543039],[-127.36617738656682,57.091791117230756],[-127.36651007783841,57.09179435772004],[-127.36684233054942,57.09178527259203],[-127.36717538451855,57.09176945311027],[-127.36749098481447,57.09172803615638],[-127.36777172687673,57.09163542475706],[-127.36804050371099,57.091526125454344],[-127.36833736013915,57.09145127745163],[-127.36865157303896,57.09139978454808],[-127.36897436416245,57.0913571676716],[-127.3692982586472,57.09131678011185],[-127.36961894351076,57.09127306288549],[-127.36995127253631,57.09123706854293],[-127.370273980903,57.09119220759178],[-127.37055724048304,57.09111301390086],[-127.37078402843228,57.09098509553497],[-127.37098627727659,57.0908350176392],[-127.3712108372948,57.09070263853302],[-127.37148635249264,57.09060895312724],[-127.3717947035992,57.090538459716484],[-127.37211395469305,57.09048354284256],[-127.37243390900196,57.09044879311659],[-127.37276726944478,57.09044192282102],[-127.37309784468663,57.09044404780732],[-127.37342761967341,57.09045290549556],[-127.37375653094769,57.0904662548574],[-127.37408552261883,57.09048184425062],[-127.37441365076847,57.09050192532596],[-127.37474180284575,57.090523126180464],[-127.37507155529619,57.09053085910962],[-127.37539852332894,57.09054758738875],[-127.37572414917443,57.09058450436194],[-127.37603993308389,57.09063497458853],[-127.37633603287541,57.09071255222946],[-127.37661832237474,57.090808208613666],[-127.37690458234512,57.09089933908449],[-127.37719286836914,57.09098932670384],[-127.37750472871222,57.09104543914774],[-127.37783725370001,57.09104416903223],[-127.37812348154924,57.090961564832064],[-127.37839960381191,57.09085664969636],[-127.3786823780598,57.09076399305965],[-127.37896621533712,57.09067244541853],[-127.37925001102663,57.09057977673722],[-127.37953065958105,57.09048601985872],[-127.37984464244101,57.09039975574414],[-127.38005301306579,57.09027762004827],[-127.38011407283827,57.0901088459312],[-127.38012811841301,57.089924877274626],[-127.38013899438971,57.08973870046754],[-127.38013862097924,57.08964231099852],[-127.3802740168556,57.08938644461724],[-127.38038047551142,57.089216069207765],[-127.38049938582999,57.08904780364981],[-127.38062565082906,57.088882822708456],[-127.38075600395975,57.08871667752563],[-127.38089160662672,57.08855271835279],[-127.38102095714808,57.088387704387785],[-127.38112843382424,57.08821731764799],[-127.38120688273628,57.08804387565051],[-127.3812521345671,57.08786630175081],[-127.38128491725178,57.08768661819384],[-127.38130841682342,57.0875070329564],[-127.38132570564362,57.087327513508285],[-127.38131921865829,57.08714712501773],[-127.38129208521288,57.086966955197376],[-127.38134886034238,57.08679374275919],[-127.3814645896391,57.08662326847623],[-127.38157622895851,57.08645395827434],[-127.38163703416193,57.08627846136253],[-127.38165742605996,57.08609890913686],[-127.38166538989331,57.085918367730216],[-127.38168269284719,57.085738848265365],[-127.38170721339783,57.085559252360284],[-127.38173173371925,57.085379656473734],[-127.38176042322763,57.08520113728569],[-127.38179530611139,57.08502255249699],[-127.38183423713777,57.08484168312915],[-127.38187196605494,57.084656343105024],[-127.38195040433905,57.08448290110535],[-127.38211978504326,57.084339879187375],[-127.38237892956965,57.084223926922874],[-127.38267820172162,57.08413220743641],[-127.38298036749606,57.084063994422195],[-127.38329441965489,57.084010225683635],[-127.38361602774636,57.083965342825685],[-127.38393976378678,57.08392267828903],[-127.3842592655331,57.08387669533247],[-127.38457660475079,57.08382849284337],[-127.38489614534403,57.08378362875163],[-127.38521905646033,57.08374657402591],[-127.38554423348462,57.083715098676336],[-127.38587063605848,57.0836892137418],[-127.38619936176188,57.083670028399446],[-127.38652943463394,57.0836597947103],[-127.38686193584738,57.08365962202055],[-127.38719443705781,57.083659448483196],[-127.38752350954981,57.08365034376612],[-127.38784583829637,57.083625618061276],[-127.38815677510533,57.08357187067328],[-127.38845870028443,57.08349692229889],[-127.38876156724685,57.08341972148609],[-127.38907225802572,57.083359249404005],[-127.38939158685076,57.08330877221567],[-127.38971655408837,57.0832716843763],[-127.39004237207908,57.0832581245375],[-127.39037090311099,57.08326246858707],[-127.39069983982857,57.08327801600218],[-127.39102992249153,57.08329691292441],[-127.39135894093147,57.083314699516336],[-127.39168867543893,57.08332351082361],[-127.39201910926774,57.08332334701693],[-127.3923485838295,57.083325434318695],[-127.3926786029884,57.08334208605547],[-127.3929991368542,57.083382376175145],[-127.39331402283153,57.083437296938264],[-127.39362799116242,57.08349558931725],[-127.39394278113886,57.08354826790621],[-127.39426499237484,57.08357732849444],[-127.39459724878701,57.08357041357626],[-127.394921549336,57.08360057106303],[-127.39524320958887,57.08364308538385],[-127.39555115193531,57.08370592107098],[-127.39586314280832,57.08376647100775],[-127.39616014801273,57.0838406308785],[-127.3964293348165,57.0839453510011],[-127.39674406735834,57.083995781833615],[-127.39706767517941,57.08403490830428],[-127.3973912836596,57.084074033973216],[-127.39772344093953,57.08409289184855],[-127.39795900728504,57.08398276508516],[-127.39814347525555,57.08383059320105],[-127.39835003475832,57.08368939274646],[-127.39855980354466,57.0835515201124],[-127.39876953002886,57.08341252673772],[-127.3989792549956,57.08327353303966],[-127.39918583272484,57.083133451912005],[-127.39939344941948,57.08299335930717],[-127.39960421030894,57.08285435348215],[-127.39982135052992,57.08272088311466],[-127.4000000790053,57.082638263160845],[-127.40007321353906,57.08260497329955],[-127.40036977523609,57.08252557123764],[-127.40068260312667,57.08246729002824],[-127.40096207531083,57.08237237818086],[-127.40123410815988,57.08227194138426],[-127.4015039690938,57.08216816478946],[-127.4017706419816,57.082062180185865],[-127.40203727250781,57.081955074630585],[-127.40230394244551,57.08184908895293],[-127.40256309105908,57.081735337630604],[-127.40283636021319,57.08164048842049],[-127.40316242263536,57.08160559676481],[-127.40346136203277,57.08153512883237],[-127.40372564559274,57.081646611657106],[-127.40401574365927,57.081729794696585],[-127.4043207850006,57.081798245088315],[-127.4046189791,57.08187685622354],[-127.4049402668746,57.081909262853955],[-127.40524432834411,57.081978842538874],[-127.4055483909149,57.08204842151848],[-127.40586034307847,57.08210782705713],[-127.40617523698904,57.08216271672143],[-127.40649107369195,57.082215353758144],[-127.40680397054415,57.08227250517741],[-127.40711196184701,57.08233643392261],[-127.40741202498856,57.082409414362324],[-127.40770816575966,57.08248804074741],[-127.4080023665374,57.08257004999179],[-127.40829558569995,57.08265319004752],[-127.40858878961626,57.082736329627444],[-127.4088849764063,57.08281607377251],[-127.40918410491031,57.08289130204878],[-127.40948524138267,57.08296538709771],[-127.40978837772128,57.083037208135],[-127.41009249802316,57.083107896987656],[-127.4103946372831,57.08318084828604],[-127.41069475439897,57.083254941631274],[-127.41099189121424,57.08333242912006],[-127.41128408218441,57.08341557375976],[-127.41157024575438,57.08350326643306],[-127.41184848224401,57.08360001118016],[-127.4121217731777,57.083702413197],[-127.41238799646212,57.083809374638335],[-127.41264917540148,57.08391975277493],[-127.41290528532828,57.084032427045976],[-127.41314537549991,57.08415872472907],[-127.41335697662636,57.084296539322985],[-127.41348480063839,57.084458799624045],[-127.41359537428679,57.084629092817],[-127.41376530856509,57.08478529219467],[-127.41399405965142,57.084911711375746],[-127.41425220341401,57.08502324028716],[-127.41452248833528,57.085127911874466],[-127.4147907514555,57.085233725717785],[-127.41505999879413,57.08533840749417],[-127.41533020557003,57.085440836604874],[-127.41559542581378,57.085547802745694],[-127.41584961456397,57.08566385501543],[-127.41607135000966,57.08579595123037],[-127.41623816959954,57.08595106063697],[-127.41639379231118,57.08611077490226],[-127.41660026261779,57.08624864038892],[-127.41685758900827,57.08636577762137],[-127.41709242949607,57.08648876298926],[-127.4171814209384,57.08666152983364],[-127.41703046209241,57.086824574206425],[-127.41713712850986,57.08702853327372],[-127.4173554034761,57.08706651265124],[-127.4176965647232,57.08707625534562],[-127.41802557649919,57.08706483282877],[-127.41835419087981,57.087042205166],[-127.41868059957945,57.08701623807107],[-127.41900694157357,57.08698802915352],[-127.41933215971483,57.08695758991662],[-127.41965741875026,57.08692827028284],[-127.42000014694688,57.08692453952217],[-127.42030557584762,57.08688982982948],[-127.4206390920611,57.08686041782123],[-127.42096836631649,57.08685571018094],[-127.42129878891606,57.08685435178838],[-127.42162821238941,57.08685412431272],[-127.42195867642859,57.08685388466127],[-127.4222890574912,57.086851403347964],[-127.42261935551944,57.08684668037382],[-127.42295332614772,57.08682958698311],[-127.42328717193298,57.086809131501994],[-127.42361730337542,57.08679992435354],[-127.42393798378868,57.08681435771297],[-127.42424157841704,57.08686932800281],[-127.42453200964346,57.0869591881913],[-127.42481856232703,57.08705581531564],[-127.4251178797448,57.08713436851394],[-127.42543593106014,57.087189178128924],[-127.42573085545482,57.08726105276567],[-127.42595680498655,57.087394207603744],[-127.42619993951236,57.087517086379926],[-127.4264561131615,57.08762973433483],[-127.4267522499076,57.08770607695181],[-127.42706242425248,57.08777105666384],[-127.42732256493726,57.087879176113724],[-127.42757680453748,57.08799520572513],[-127.42786810955997,57.088080565704644],[-127.42816343679641,57.088162518411025],[-127.42842654701415,57.08826724063622],[-127.42866763026412,57.088390137500966],[-127.42890267113968,57.08851758361238],[-127.42914375748394,57.088640479619464],[-127.42939292095434,57.08875880322355],[-127.42965315829348,57.08886915892616],[-127.4299572361715,57.088936440522765],[-127.43026730070811,57.08899805143774],[-127.4305754266941,57.08906304549727],[-127.43121159735274,57.089200659012945],[-127.43140011852623,57.089243425174175],[-127.43146675301101,57.089285286980314],[-127.4317649772285,57.08936159565021],[-127.43208572759212,57.0894051511227],[-127.43241222984165,57.089436313083425],[-127.43272407455464,57.089490052629706],[-127.43303022748717,57.08955730441505],[-127.43335189612469,57.08959748411505],[-127.43367360725641,57.08963878343394],[-127.43399238099222,57.08968459774277],[-127.43431117200655,57.08973041109268],[-127.43463188648713,57.08977283990586],[-127.43495541408437,57.089807390896055],[-127.43527998291034,57.089841929634375],[-127.43559588072848,57.089893376072325],[-127.43590892528385,57.08995157839416],[-127.436235148763,57.09000290964284],[-127.43654825360339,57.090062230663705],[-127.43681515205213,57.090156806941266],[-127.43702778602609,57.09029121103078],[-127.43720816466033,57.09044726676337],[-127.4373751736523,57.09060459047376],[-127.43749830177626,57.09077584804601],[-127.43764871084738,57.09093111265462],[-127.43792512780412,57.09103118627828],[-127.43835990970163,57.09111270013917],[-127.4386847277259,57.09107100846097],[-127.43871016887468,57.090950794431805],[-127.43877474039957,57.090771863415256],[-127.43900051025874,57.090650560497046],[-127.43923536867345,57.09052355254147],[-127.43949365222548,57.090415340497145],[-127.43980746710062,57.09035583341957],[-127.44012042490438,57.09030081853357],[-127.44040621904199,57.09021023490151],[-127.44067498922337,57.090106388177986],[-127.44094160910367,57.090000322899535],[-127.44120822751162,57.08989425708423],[-127.44147910013201,57.08979150632344],[-127.44175043392927,57.08970107949941],[-127.44199804456433,57.08958401340234],[-127.44232058494912,57.089509832386845],[-127.4426160463764,57.089429224808136],[-127.44290348593597,57.08930050773803],[-127.4431482219419,57.089272020208995],[-127.44349235977221,57.08925027835813],[-127.4436997191896,57.08921659903562],[-127.44415184126578,57.08923737430127],[-127.44448191706321,57.08925389522117],[-127.44480611007066,57.089223403770035],[-127.44513251940018,57.08919737044925],[-127.4454589869696,57.089172456535955],[-127.44578522672776,57.08914193995629],[-127.44611039967828,57.089110313508755],[-127.44643711903122,57.08909211958783],[-127.44676781316053,57.08909741911966],[-127.44709772003128,57.0891094517946],[-127.44742668744655,57.08912373581149],[-127.44775738198454,57.08912903283496],[-127.44809174141925,57.08912195871272],[-127.44841089267011,57.08914979972642],[-127.44870712701096,57.08922721299025],[-127.4489976332774,57.089317018856626],[-127.44930085128853,57.08938762797885],[-127.44961197459348,57.0894491815554],[-127.44992405493868,57.089508482014466],[-127.45023221826479,57.08957342966841],[-127.4505315226228,57.089649683882286],[-127.45081200879521,57.089747443376176],[-127.45101856330442,57.089884134509724],[-127.45124759432578,57.0900138500254],[-127.45146787558018,57.09007640993016],[-127.45181507558264,57.09019023815575],[-127.45203593666983,57.090322285050085],[-127.45227611004506,57.090446270451125],[-127.45250613043605,57.090574852002256],[-127.45273110921451,57.09070685195665],[-127.45295808610597,57.09083658754174],[-127.45319624324065,57.09096171469947],[-127.45342118425755,57.0910925930951],[-127.45362587658423,57.091233784678494],[-127.45382444417878,57.09137728598873],[-127.4540291395048,57.09151847696843],[-127.45423283806845,57.09166079964892],[-127.4544130384562,57.091810109307595],[-127.45453409666028,57.09197913315595],[-127.4546998879432,57.09212972402477],[-127.45495634569468,57.09224679800374],[-127.45514985440634,57.09239259569816],[-127.45531079306511,57.09255108617152],[-127.45540397290186,57.09272042037993],[-127.45540241646603,57.09292443792713],[-127.45550933032533,57.09307456392928],[-127.45570580706003,57.09321696519944],[-127.45584313412766,57.09321543271648],[-127.45621688600146,57.09302071144326],[-127.45644537972663,57.09289038022513],[-127.45666969956694,57.092758974328426],[-127.45685518774592,57.09261118850578],[-127.45703954877456,57.09246117324784],[-127.4572428750227,57.09232103379573],[-127.45747660010254,57.092192884073505],[-127.45770616785416,57.092063659503104],[-127.4579336101365,57.091933337398046],[-127.45816317479947,57.09180411204767],[-127.45840012684744,57.091679287218575],[-127.4586762901474,57.09158092461948],[-127.45897718497082,57.09150806506674],[-127.45931997158291,57.0914504284961],[-127.45959299703738,57.09137787927862],[-127.45990359793042,57.09131611776301],[-127.46020883100807,57.09124881118447],[-127.46050967771731,57.091174827711306],[-127.46080262280331,57.091082997934414],[-127.46109086502211,57.09100354985142],[-127.46137333891606,57.09090847341773],[-127.46166674893563,57.090828966149644],[-127.46198641161027,57.09078839480489],[-127.46231490391189,57.09076229513785],[-127.462632218523,57.090687001217184],[-127.46292011258316,57.09059858589732],[-127.46320051417732,57.090503528691876],[-127.46346605046878,57.09039742884353],[-127.46372094597415,57.090283601682906],[-127.4639758137814,57.09016865344674],[-127.46422120949116,57.090049327507096],[-127.46444646754281,57.089916776613094],[-127.46467393348944,57.08978756317591],[-127.46488829556877,57.089694364679175],[-127.4652018219357,57.08957427172548],[-127.46542287537015,57.08943952458967],[-127.46565768175883,57.089313589588926],[-127.46608887288899,57.08908344688421],[-127.46616944907096,57.089002958691445],[-127.46645504632251,57.08893585799297],[-127.46667494057009,57.08887958338013],[-127.46675945533545,57.088712742727935],[-127.46685197138726,57.0885390867711],[-127.46724385601604,57.088226437079804],[-127.46729110712789,57.08811157577107],[-127.46737885718746,57.08805678638032],[-127.46755189346933,57.08809855396922],[-127.46790885069267,57.0882234385589],[-127.46822369544297,57.08827369723821],[-127.4685501316736,57.088302527929336],[-127.4688552543788,57.08836858689425],[-127.46915165244594,57.08844931488296],[-127.46945296454682,57.08852326157015],[-127.469763089044,57.08858477858571],[-127.47008224008908,57.088639467856446],[-127.47040518950331,57.088658245326734],[-127.47073361496643,57.08863100410444],[-127.47104968898888,57.088578121066675],[-127.47133324683337,57.08848525229561],[-127.47165503032714,57.088446874835306],[-127.47197889437159,57.0884084730962],[-127.47230287009079,57.088373431932474],[-127.47262952779288,57.08835405202886],[-127.4729587918729,57.08834921334045],[-127.47328837321413,57.08835221641318],[-127.4736190646542,57.08835744787733],[-127.4739497131898,57.088361558106506],[-127.47428108484414,57.08835781314636],[-127.47460627067025,57.08838103846316],[-127.47491446666277,57.08844592775747],[-127.47522400551834,57.08851864733298],[-127.47552919207551,57.08855890980967],[-127.47587033816369,57.088567379976354],[-127.47619935466851,57.08858271182855],[-127.47652665131211,57.088607029391774],[-127.47685407760883,57.0886347073223],[-127.47717478678244,57.08867591111372],[-127.47748781467944,57.088731772625664],[-127.47779606146023,57.08879777552459],[-127.47809639544064,57.08887283445166],[-127.4783857977244,57.088959225449955],[-127.47866321778389,57.08905583962052],[-127.47893164176111,57.08916040141681],[-127.47919511288873,57.08927062327621],[-127.47944840789435,57.0893843227031],[-127.47967755856311,57.08951510883449],[-127.47992487824892,57.08963447960072],[-127.48015188093387,57.08976304755629],[-127.48030878221586,57.0899215537413],[-127.48041351668165,57.09009298157958],[-127.48051819237583,57.09026328914634],[-127.48069337787035,57.090413741235785],[-127.48086147583862,57.09056763624308],[-127.48100001619105,57.0907319546337],[-127.48116109774631,57.09089153341558],[-127.4813678131304,57.09100239566224],[-127.48172360877422,57.091015167982874],[-127.48205061659017,57.09097782647817],[-127.48236002425303,57.090912661968595],[-127.48267725493658,57.09086310022245],[-127.48300026071578,57.09082916446747],[-127.48331190344744,57.09076845581579],[-127.48361489651111,57.090697756799926],[-127.48390817229591,57.09061595873663],[-127.48419175738711,57.090524182276575],[-127.48447099504959,57.09042685022669],[-127.48475134204743,57.0903317467185],[-127.48503381226172,57.090237739314496],[-127.48533929602051,57.09017821675982],[-127.48567163619484,57.09017219022291],[-127.48599243871469,57.09013490941042],[-127.486307376746,57.09007976041621],[-127.48662241712312,57.09002685126339],[-127.48693852412423,57.089975050071445],[-127.48725574115682,57.089925477226],[-127.48757404139607,57.08987701213696],[-127.48789588023507,57.08983971478443],[-127.48822602209874,57.08983034411369],[-127.48855492408063,57.089842283638696],[-127.48888399999421,57.08985870390662],[-127.48921392653659,57.08987063008108],[-127.48954597799774,57.089883652047384],[-127.48987792624432,57.08989443257213],[-127.4902052835295,57.089892934921664],[-127.49052203679028,57.08985793094039],[-127.49082577258082,57.08978048116775],[-127.49114084777692,57.08972868150753],[-127.4914695557044,57.08970923099617],[-127.49179952150774,57.08969536971523],[-127.49212494686921,57.08972415334467],[-127.49244191683906,57.089774329818695],[-127.4927472664811,57.08984481453616],[-127.49300962716846,57.0899516590928],[-127.49310171674892,57.0900088913123],[-127.49355758307041,57.09015162997901],[-127.49381688628068,57.09025962888438],[-127.49403280909301,57.090393904656665],[-127.49423360455826,57.09053732051585],[-127.49441921253789,57.09068875633207],[-127.49458941497181,57.09084261021314],[-127.49472792783041,57.091004673271414],[-127.49483479440825,57.09117606600271],[-127.49494879333042,57.091345135156196],[-127.49512610510479,57.09149554431628],[-127.49531265814917,57.09164472644296],[-127.49547582420759,57.09180314359091],[-127.4956572262328,57.091952384342704],[-127.4958923093908,57.09207410787815],[-127.4961749498713,57.09217062592276],[-127.49646643886487,57.092255832939124],[-127.49676585584436,57.092331981212126],[-127.49706818837167,57.09240361178218],[-127.49736759117702,57.09247975887195],[-127.49766507787798,57.09255928997253],[-127.49795648572723,57.09264225289892],[-127.49824404381842,57.09273198477439],[-127.49852960926974,57.0928239807161],[-127.49880211228121,57.092925093290994],[-127.49903823555324,57.093046799476056],[-127.49922993814039,57.09319479636057],[-127.4994490457646,57.09333014815363],[-127.49968835021448,57.093454058475366],[-127.49997376597494,57.09354156954472],[-127.50027431167634,57.09361993884498],[-127.50050245426868,57.093695777598846],[-127.50065898399193,57.093868836824385],[-127.50100342321232,57.093960150334],[-127.50131854997235,57.09401481072287],[-127.50163950552759,57.09406043609768],[-127.50196390720285,57.0940880866723],[-127.50229460807697,57.09409212507578],[-127.50262522134572,57.094093921857414],[-127.5029567554346,57.094119246027944],[-127.50323907787121,57.094206785776834],[-127.50350660784873,57.094312429775776],[-127.50376620299605,57.09442601099829],[-127.50401465338692,57.094545324706424],[-127.50424378682703,57.09467270699158],[-127.50443857945709,57.0948195401936],[-127.50460583886753,57.094975657874244],[-127.50471472127094,57.095144778593195],[-127.50483901279146,57.09531147971322],[-127.50500517826119,57.09543958713252],[-127.50518768842073,57.09561570443858],[-127.505418092526,57.095748674713604],[-127.5056747289739,57.09586564927312],[-127.50595693863208,57.09594982207455],[-127.5062912891649,57.09596725920835],[-127.50661380453434,57.09599940386227],[-127.5068968085909,57.096103741697384],[-127.50700384321439,57.09619890274094],[-127.50709672070911,57.09643321886867],[-127.50714203998314,57.09661428117824],[-127.5072754721215,57.0967763911345],[-127.50743964565571,57.09693254128685],[-127.50761816093348,57.0970851628342],[-127.50780070338286,57.09723549582585],[-127.50801478115898,57.097373134177055],[-127.50825635211449,57.09750036626265],[-127.50849284156159,57.09762989848855],[-127.50863112944701,57.09778410482838],[-127.50867938748698,57.09796064929352],[-127.50870415229386,57.09814419085397],[-127.50875973557811,57.0983228924418],[-127.50882869087103,57.098500318491055],[-127.50892534271082,57.098672940606974],[-127.50907207306666,57.098831532631046],[-127.5092555823068,57.098979610951275],[-127.50945548267094,57.09912413670411],[-127.50965440423047,57.09926979441231],[-127.50983181018293,57.09942018444569],[-127.50997557317018,57.099582172665535],[-127.51008966369811,57.099751229613865],[-127.51018327877185,57.099925007107984],[-127.51021514496843,57.09999973884037],[-127.51025835122853,57.10010012010513],[-127.5103015968988,57.10028008511873],[-127.51029508296246,57.100456142519896],[-127.51013194129926,57.100616078371964],[-127.5099276957359,57.10075519251132],[-127.50969305271404,57.100883449000186],[-127.50949718107928,57.101025828281095],[-127.50936838430212,57.10119209126758],[-127.50925622480139,57.10136152440549],[-127.50915341072408,57.10153197027031],[-127.50905687990634,57.101704585206456],[-127.50887258969763,57.10185243414049],[-127.50860294144395,57.10195755443816],[-127.50846672447109,57.10211941873628],[-127.50880117670286,57.10240138267322],[-127.50898697171888,57.10252813829926],[-127.50934141112938,57.1026350085316],[-127.5096370239768,57.102716777603206],[-127.50994526199767,57.102778223613946],[-127.51027472231974,57.10280131245695],[-127.51059815674196,57.1027762712535],[-127.51091631357573,57.10272214678383],[-127.5112403642933,57.10271278953486],[-127.5115701876579,57.10271905730187],[-127.51187828834884,57.10272445502725],[-127.51223595924284,57.10272927754119],[-127.51253245272102,57.102780765439135],[-127.51283173725365,57.10287705660876],[-127.51314662841496,57.10292384620497],[-127.5134234064066,57.10297331893],[-127.51374619044964,57.10306261005072],[-127.51402882413299,57.10315572899631],[-127.51432358674069,57.103241981143164],[-127.51461224271125,57.10333054534487],[-127.5148706696502,57.10343851532149],[-127.51505233464367,57.103591091545134],[-127.51531683577645,57.10366984653666],[-127.51554068459473,57.103791667715925],[-127.51566110750178,57.103884425368356],[-127.51607669509637,57.10399505113638],[-127.51628346998469,57.10412939949862],[-127.51645603437196,57.10428656333658],[-127.5166863524833,57.10441503296647],[-127.51693180111042,57.10453435904781],[-127.51707256744213,57.104697496366825],[-127.51724787343804,57.104845660132334],[-127.51749845438714,57.10496380465204],[-127.51773997164462,57.10508765869307],[-127.5179499977179,57.105225329576214],[-127.51814892227743,57.105369854776136],[-127.51835091063857,57.105513223145024],[-127.518559097233,57.10565651910427],[-127.51872117259872,57.10580931872412],[-127.51877046732763,57.105984728164486],[-127.51878492973505,57.10616726849424],[-127.5188949473914,57.10633636663361],[-127.51902140231967,57.10650303155162],[-127.51906867801267,57.10667958540926],[-127.51910779677466,57.10685847605784],[-127.51917779543892,57.1070347654129],[-127.51924672584204,57.107209946284215],[-127.5192816702998,57.107387764649125],[-127.5192753736883,57.10756830499563],[-127.51930425456321,57.10774955673902],[-127.51946030549577,57.10790690960348],[-127.5197267292064,57.108006931334096],[-127.52004419668444,57.10806488418757],[-127.52034569975969,57.108137594154634],[-127.52064326659766,57.10821483296631],[-127.52093988228845,57.108294324032144],[-127.52123348115876,57.10837609143885],[-127.52152907471827,57.10845559311864],[-127.52182865118881,57.10853168495672],[-127.52213413160418,57.10859986085767],[-127.52244252571387,57.108663518407056],[-127.52274903287407,57.108731680922226],[-127.52305351983158,57.10880098722653],[-127.52335701121221,57.10887142537391],[-127.52365661107574,57.1089475128466],[-127.52394331018942,57.10903720129142],[-127.52417772440273,57.109163369105204],[-127.52439897135051,57.10929641583183],[-127.52461421702166,57.10943401599066],[-127.52482329486723,57.109572808808196],[-127.52502426112098,57.10971505886189],[-127.52520491048404,57.10986651341807],[-127.52535588247122,57.11002504013296],[-127.5255400691424,57.11023922433699],[-127.525657919242,57.11034433388837],[-127.52587519659538,57.11048078752568],[-127.52605585291808,57.110632240988735],[-127.52620378546814,57.11079192334643],[-127.52628824025217,57.11099270101253],[-127.52637464470438,57.11113853084402],[-127.52644159399091,57.11131485299745],[-127.52648186561527,57.11149597085081],[-127.52655792605161,57.111667702761835],[-127.52672832223375,57.11182039645012],[-127.52693046570329,57.11196599301012],[-127.52714873687806,57.11210131230237],[-127.52740195129572,57.11220595748783],[-127.52769843432371,57.112306732984905],[-127.52780815208608,57.1124668611797],[-127.52783747635524,57.112606632949884],[-127.528186281398,57.11272360872663],[-127.52844296684214,57.1128371787461],[-127.52861228984936,57.11298876190062],[-127.5287552920286,57.11315410422217],[-127.52885792618011,57.11329189625764],[-127.52906662574458,57.1134721616217],[-127.52923406656306,57.11362824983886],[-127.52936882431553,57.11376790701734],[-127.52933427484841,57.113964473190194],[-127.5293091323129,57.11411160858206],[-127.52930199092076,57.11429552350092],[-127.52951384999997,57.114476872273514],[-127.52967214200447,57.11463643009366],[-127.52984470259202,57.11479133682418],[-127.5300265254798,57.114945013862496],[-127.53018877503402,57.115100041074086],[-127.5302524740439,57.11522035400385],[-127.53023576842634,57.11544921824425],[-127.53029550333652,57.115625623850924],[-127.53037793790048,57.115800642390674],[-127.53048394666116,57.115970900796775],[-127.53062885542234,57.11613173559854],[-127.53078607286606,57.11629018407183],[-127.53115126436995,57.116350914331136],[-127.53143983420804,57.1164338401549],[-127.53170361503861,57.11654283752715],[-127.53198741633733,57.116635906466165],[-127.5322741476055,57.11672445671473],[-127.53256492305508,57.116810717020485],[-127.53286258170597,57.11688792846213],[-127.53316921778875,57.116957187316366],[-127.5334041983682,57.1170698824488],[-127.53360510822093,57.11715719618564],[-127.53396401793795,57.11726731332653],[-127.53424582519453,57.11736152189253],[-127.53452761730475,57.11745573005117],[-127.53480942732772,57.11754993741352],[-127.53508722422038,57.11764755416706],[-127.53535897487043,57.11774860425248],[-127.53561058614564,57.11786334185035],[-127.53584113948378,57.11799401974433],[-127.53608373306925,57.11811558815413],[-127.53633743168656,57.11823029987258],[-127.53660819322239,57.11833248005769],[-127.53684979484926,57.11845517973326],[-127.53708737177601,57.11858016823996],[-127.53732395373055,57.11870628899053],[-127.53756151722524,57.11883127685218],[-127.53780309667647,57.11895285421335],[-127.5380527466666,57.11906985234837],[-127.53831858577057,57.11917769181814],[-127.53858738279907,57.119282133120315],[-127.53887270354238,57.11941216048599],[-127.53908768985374,57.11951499330099],[-127.53931521868026,57.119646822064425],[-127.53953051438471,57.11978327845773],[-127.5397305471663,57.11992551920961],[-127.53991742823872,57.12007464041682],[-127.54010631561646,57.120222616788844],[-127.54031448332977,57.1203613979755],[-127.54054597420807,57.12048869430978],[-127.54078962337826,57.12061024210181],[-127.54104137615394,57.12072721007936],[-127.54129311393297,57.120844177776796],[-127.54156422213217,57.12095419068312],[-127.54185258936836,57.121056152682],[-127.54210115040833,57.12117091456016],[-127.54225478767428,57.121315941710044],[-127.54231662486882,57.12149119756294],[-127.54233554655272,57.12167929071345],[-127.54235937259465,57.12186060034793],[-127.54237179666818,57.12204092378378],[-127.54237280208008,57.122220261219105],[-127.54234703356659,57.1224021568675],[-127.54247543952634,57.122562054185586],[-127.5427691483602,57.122642653596934],[-127.54305294802171,57.12273345789687],[-127.54331072431178,57.12284586699392],[-127.54356347934817,57.12296169778156],[-127.54383258758905,57.123072850983675],[-127.54402120579456,57.123212979010425],[-127.5441160567072,57.12338672299439],[-127.54417804098925,57.12356533943744],[-127.54418834601005,57.12374456716272],[-127.54416249490932,57.123924222568746],[-127.54415835062497,57.12410362124774],[-127.54416052470653,57.12428630802426],[-127.54418215916114,57.1244642809085],[-127.54430056239002,57.12463214170793],[-127.54456011033275,57.12471089964961],[-127.54488475271815,57.12476310529943],[-127.54510366018013,57.12488493867622],[-127.54540431781555,57.124957603778746],[-127.54573574050202,57.12497273618907],[-127.54605278421053,57.12501606146059],[-127.54635946388164,57.12508416934279],[-127.54666516476291,57.125153409053745],[-127.54697952587662,57.12520685232694],[-127.54730263722534,57.12524673990205],[-127.54762476939229,57.125287759231675],[-127.54793231481563,57.125351369478444],[-127.54823405170862,57.12542513633896],[-127.54851720667872,57.12549912291807],[-127.54861269162565,57.12555964195308],[-127.54911251140994,57.125623210548675],[-127.5494401247251,57.12564622541895],[-127.54976864426655,57.12566586589905],[-127.55009778185963,57.125675409769514],[-127.55042830721347,57.12566812224845],[-127.55075985749087,57.12566082171522],[-127.5510879989448,57.12564571426343],[-127.55141114622612,57.125609367484536],[-127.55172966126757,57.125560744623705],[-127.55205267127691,57.12552103505727],[-127.55251089075229,57.12555257799056],[-127.55269913376354,57.12552904152964],[-127.5530292039148,57.12551054342172],[-127.55334892254524,57.1254663860224],[-127.55366438765012,57.12541891563144],[-127.55399513698158,57.12541722108329],[-127.55432947714976,57.12542781328747],[-127.55465516148352,57.125454200873364],[-127.55496047166582,57.12551333758439],[-127.55524957051153,57.12560629492767],[-127.55555132347133,57.12568004489305],[-127.55586184057282,57.12574023844643],[-127.55617442528363,57.12580040663108],[-127.55647910798832,57.1258696358169],[-127.55676816774174,57.1259614694228],[-127.55707630413735,57.12601384194729],[-127.55740832740038,57.12601772832705],[-127.55774235536076,57.12602046900293],[-127.55806234754361,57.12605924646573],[-127.55836928436575,57.126132928187616],[-127.55863203019963,57.12623852315227],[-127.55885063085174,57.12637715203283],[-127.55908324455984,57.12650440381856],[-127.55937101706687,57.126589521551864],[-127.55968868154538,57.12664737895303],[-127.56001263208273,57.126681620681225],[-127.56034007872725,57.12670012662648],[-127.56067134006616,57.1267107395521],[-127.5610034608799,57.12671685758985],[-127.56133358976169,57.12672524049214],[-127.56166471479712,57.126732489702775],[-127.56199570313368,57.126736376879265],[-127.5623253927573,57.12673355309464],[-127.56265349319894,57.12671729616915],[-127.56297973029609,57.12668088372846],[-127.56329501088538,57.12662890843797],[-127.56365977441612,57.12654831614783],[-127.56387487749268,57.1264739993498],[-127.56410167378073,57.12661027964866],[-127.56430587521453,57.12675019314064],[-127.56458678495054,57.126844349339386],[-127.56488656112145,57.12691922276398],[-127.56518641333143,57.12699633649741],[-127.56547329857611,57.12708481449208],[-127.5657916979353,57.12713480179703],[-127.566102918657,57.127185995391315],[-127.56639380363754,57.1272710606041],[-127.56668078521047,57.12736177675818],[-127.56696273034149,57.127455915587625],[-127.56723166328328,57.127560298541894],[-127.5674612658923,57.12768869302322],[-127.5676908992793,57.12781820770855],[-127.56795885741995,57.127923721898625],[-127.56824875625783,57.128009915931635],[-127.56854266903166,57.12809269827935],[-127.56882759507278,57.12818343459907],[-127.56906774098077,57.12829152268284],[-127.56931110059669,57.12842759541756],[-127.56961578201975,57.128495673686835],[-127.56987439557788,57.12860017550716],[-127.5700889167225,57.12873883551309],[-127.57030446454613,57.1288774828519],[-127.57054910323181,57.129019142796174],[-127.57085766594126,57.129055785026424],[-127.57113433738304,57.12914661583923],[-127.57129774639532,57.12929934041696],[-127.57143799305074,57.129466915931296],[-127.57162488956953,57.12961263179077],[-127.571893988008,57.12972036650055],[-127.57215693334004,57.129829295719944],[-127.57245359256676,57.12995351173101],[-127.57270793762179,57.1300289149601],[-127.57299763336347,57.130109496598216],[-127.5733961087424,57.13011926792353],[-127.57361423246701,57.130193984943695],[-127.5738671733073,57.13031087808217],[-127.57412006972217,57.13042665034382],[-127.57437301363689,57.130543542522574],[-127.57462689230475,57.130658181064746],[-127.57489384763363,57.13076369380692],[-127.57513966224964,57.13088291247697],[-127.57537338246503,57.13101012329583],[-127.57560208325363,57.13114075715142],[-127.57583182732563,57.13127137804723],[-127.57601264058808,57.131419403447644],[-127.57613224624099,57.13158722365173],[-127.57624774854852,57.13175621426569],[-127.5763684275215,57.131925142316895],[-127.57643241250017,57.13209811761153],[-127.57640055185982,57.13227897574514],[-127.57618635753784,57.13252705021821],[-127.57601269709721,57.132679354080715],[-127.57578118861917,57.132807694824095],[-127.5755718800282,57.132948097783135],[-127.57534917204252,57.13308978300854],[-127.57520971189624,57.13324391510542],[-127.57522838659285,57.13342192150387],[-127.57527211253458,57.13360523049663],[-127.5751944019911,57.13377767391413],[-127.57508559282115,57.13394825049916],[-127.57501219887462,57.134125125585555],[-127.57495538689537,57.134302921611265],[-127.57494607148057,57.134479023847426],[-127.57502877966192,57.13465513718172],[-127.57506194051017,57.13483296906794],[-127.57506107792938,57.13501345325423],[-127.57505292612096,57.135192904425836],[-127.57505615176751,57.135372218395204],[-127.57510998484443,57.135549801041236],[-127.57512147941905,57.135729015324465],[-127.57512370958086,57.13590946233067],[-127.5751217759441,57.136088838626385],[-127.57510742263037,57.13626836474319],[-127.57507343908337,57.13644812764121],[-127.5750302070586,57.13662912304922],[-127.57510442138397,57.13679973433223],[-127.57527544440076,57.13696021024425],[-127.5755248656409,57.137065934238315],[-127.57585172190028,57.13711803842727],[-127.57617125992581,57.13716798822121],[-127.57648288164474,57.13722700046782],[-127.57676278051028,57.13731890277343],[-127.5770187783996,57.13743351228009],[-127.5772828330379,57.13754241921707],[-127.57755491129988,57.13764562393374],[-127.57783297894063,57.13774315095525],[-127.57812095297655,57.137830469073705],[-127.57841693735101,57.137910964012306],[-127.57871794456278,57.13798803470502],[-127.5790228108341,57.1380583323094],[-127.57933346492527,57.13811847059314],[-127.57965178935439,57.138163942902985],[-127.57998563761119,57.13818456552918],[-127.58032427692257,57.13819616165416],[-127.58065399124459,57.138216832603554],[-127.58096207395329,57.13826466762897],[-127.58124480668816,57.13834980055543],[-127.58150590898286,57.13846209787717],[-127.58174910002819,57.138591426045515],[-127.58197693474024,57.13872430268963],[-127.58218553911215,57.138867500588034],[-127.58233802466424,57.13902931350216],[-127.58240406952672,57.139201141329785],[-127.58242180131703,57.1393802803082],[-127.58241481739829,57.13956196069654],[-127.58240679145922,57.139743653733454],[-127.58240182856285,57.139924188719625],[-127.58238752441996,57.140103715944456],[-127.58238044776839,57.14028315562394],[-127.58239611254035,57.14046231979739],[-127.58242831680084,57.14064128360314],[-127.58246770286532,57.1408190394495],[-127.58254620223396,57.140991837538465],[-127.58243978373993,57.141119795749255],[-127.5821738586718,57.141417830664544],[-127.5816718494944,57.141558426496424],[-127.58144118201363,57.14163296128689],[-127.58115507065655,57.141692473392744],[-127.58095137203124,57.14184402726285],[-127.58071686407045,57.14202621968785],[-127.5805124430909,57.14218562835268],[-127.5805037712612,57.142402079187605],[-127.58039797846395,57.142570382849364],[-127.58030828324827,57.14267795964167],[-127.58044429843399,57.14284109554977],[-127.58069312629682,57.14300622903331],[-127.58105494361362,57.143202502394495],[-127.58164037115053,57.14347901867366],[-127.58221057710341,57.143787103895],[-127.58254647619218,57.14390634076909],[-127.58265898924098,57.14422669460573],[-127.58270256153021,57.144405521154226],[-127.58272231851564,57.14458351532389],[-127.58268202166711,57.14475999525102],[-127.58258782687663,57.144933765319095],[-127.58250717174101,57.14510961322848],[-127.5824051206635,57.145293567067235],[-127.58230822953271,57.14547745833421],[-127.58227094719743,57.14565165976744],[-127.58234551370165,57.14580432894301],[-127.58254640417648,57.145935290307236],[-127.5828201993638,57.146053037362904],[-127.58311035296344,57.146166101750914],[-127.58337353538914,57.146277250523575],[-127.58364772999765,57.14637929754558],[-127.58391782033192,57.14648251475228],[-127.58415765306874,57.14660403386541],[-127.58462506152271,57.146876364728556],[-127.58473631905717,57.14691536989372],[-127.5849754770675,57.146920315050956],[-127.58523798924881,57.146914887638204],[-127.58569714654283,57.14693733890955],[-127.5859651779116,57.1469901334269],[-127.586101134828,57.147051256955756],[-127.58635881780488,57.147203942607646],[-127.58658154193017,57.14733687494706],[-127.58680638173954,57.14747090220835],[-127.58704451639109,57.14760140468418],[-127.58727551638823,57.147734235391454],[-127.58747986842174,57.14787299441576],[-127.58762576139289,57.14802367335484],[-127.58763016529946,57.14820521706521],[-127.58761197878587,57.14839039826312],[-127.58761949270341,57.148571904226294],[-127.58764348894329,57.148676983864775],[-127.5876497313001,57.148777795396846],[-127.58751341736874,57.14900813013641],[-127.58711720943859,57.1492079933929],[-127.58694046968759,57.14936147165931],[-127.58677518638113,57.14951705247397],[-127.58662972394893,57.14967687623647],[-127.58653009534875,57.14984399001803],[-127.58646739379718,57.15000392946466],[-127.58640379905862,57.15019190403683],[-127.58635349799295,57.150376354255556],[-127.5862976938733,57.15055302449072],[-127.58627513216526,57.150732653998965],[-127.58627327973699,57.150913153040875],[-127.586271397489,57.15109253149624],[-127.58614844312919,57.15124647665041],[-127.58607365331244,57.15136396582857],[-127.58596042294582,57.151602986698755],[-127.5858505390182,57.151772466547094],[-127.58574693431312,57.15194411204212],[-127.58566514397094,57.15211773464737],[-127.58567383068981,57.15230258980862],[-127.58551220242016,57.15244691505368],[-127.58524078724412,57.152563426975355],[-127.5851012960406,57.15271757185956],[-127.58500892918713,57.152885717551754],[-127.58496575528827,57.15306783906807],[-127.5849006890108,57.153245742273796],[-127.58478868128303,57.15341412611252],[-127.58465476389549,57.15357829171384],[-127.58452507420331,57.153744647858865],[-127.58439542968073,57.15391212430869],[-127.58429069430125,57.15408154053671],[-127.58426496432689,57.15426008747502],[-127.58433534900111,57.154436347968684],[-127.5845086109977,57.15457324769121],[-127.58463154349874,57.15469394302133],[-127.58467210467356,57.15492437194076],[-127.5847058371223,57.15511452860443],[-127.58469156785875,57.15529517872373],[-127.58483375846586,57.15545599550982],[-127.58455361528377,57.15536186843361],[-127.58446982201518,57.15533710219411],[-127.58436689840838,57.15532489861497],[-127.58421396590354,57.155354777420925],[-127.58405970739274,57.15535216383647],[-127.5839331300464,57.155343609617546],[-127.5836066524819,57.15538007537984],[-127.58321522439189,57.15549691660855],[-127.58299506814286,57.15547716465629],[-127.58265623761115,57.155439793340875],[-127.58232476828057,57.15543035637686],[-127.58200665377105,57.155468958783835],[-127.58170019036585,57.1555388066542],[-127.5813847432654,57.15559194791041],[-127.5810682694499,57.15564510082102],[-127.58075504394742,57.15570157658011],[-127.58045167048289,57.155771384100674],[-127.58015712294703,57.15585453585995],[-127.57985927883634,57.15593324290855],[-127.5795606653974,57.15599290200564],[-127.5792164323583,57.156000426021535],[-127.57889658124355,57.1560468885874],[-127.57844094605764,57.156112926387515],[-127.57816426109038,57.15612747838745],[-127.57792833500669,57.15607652108766],[-127.57760856148872,57.156024333856465],[-127.57727949111063,57.15599804047639],[-127.57698055058948,57.156049850760326],[-127.5766351746146,57.15613024502722],[-127.57647761560861,57.15624872741058],[-127.57638519784527,57.156366423695964],[-127.57598999498526,57.156442933479426],[-127.57566328684375,57.15647377713671],[-127.57533718652843,57.15644408008962],[-127.57500842292315,57.15645028547784],[-127.57467930700915,57.156473308878205],[-127.57435705614297,57.15651194234667],[-127.57404830166061,57.156577315772076],[-127.57373726445276,57.15663711108902],[-127.57340937249722,57.156664600414544],[-127.57309592697229,57.15671657638093],[-127.57276431108679,57.15670375389994],[-127.57244538026524,57.156747947512926],[-127.57211969356565,57.156728326205695],[-127.57179086710636,57.15670762088914],[-127.5714602776068,57.156694782758265],[-127.57113007215867,57.15669090695101],[-127.57080030923942,57.15669823470808],[-127.57021870289529,57.156745580489094],[-127.56960195878149,57.15686957183664],[-127.56929639575911,57.15693713752485],[-127.56899308336239,57.15700915934897],[-127.5686897239867,57.15708006005208],[-127.56838420351072,57.15714874403906],[-127.56806756136871,57.157198504261856],[-127.56774307544399,57.15723378519765],[-127.56741639973679,57.15726572867679],[-127.56709200423063,57.157303248841146],[-127.5667917039976,57.157372987423045],[-127.56655158835527,57.1574980522965],[-127.5662525861252,57.15757449988319],[-127.5659675843517,57.15766423063534],[-127.56569665779612,57.157769485691006],[-127.56547003445297,57.157895507839086],[-127.5653539117747,57.158067286625595],[-127.56514203859619,57.15819985731862],[-127.56488176800686,57.1583128298119],[-127.56461835585294,57.15842471842469],[-127.56439181652553,57.15855297961219],[-127.56425679711305,57.15871825783659],[-127.56416973226412,57.15889192966151],[-127.56398119722212,57.1590387917054],[-127.56389613657873,57.15921131840598],[-127.56376004106713,57.15937548805286],[-127.56359880314652,57.159532111620365],[-127.56333942441009,57.159641707405044],[-127.56307675051083,57.15974685819639],[-127.56286922547957,57.1598849780119],[-127.56260348330517,57.15999128550501],[-127.56238340738031,57.160126191709146],[-127.56218344535723,57.16027206679539],[-127.56214167540422,57.160440711923215],[-127.56196896658464,57.16059522865741],[-127.56177730369247,57.16074212489596],[-127.56158245354834,57.160886816996154],[-127.5613855334029,57.16103153353771],[-127.56118861177106,57.16117624979825],[-127.56099375719947,57.16132094106779],[-127.56084913947227,57.161479604644875],[-127.56074643918313,57.16165121909818],[-127.56056737674557,57.16180244695487],[-127.56029090720618,57.16189990999059],[-127.56002313747571,57.162007357326594],[-127.5598449597824,57.162155210700355],[-127.55971202227143,57.162321580411316],[-127.55954229867172,57.16247381636309],[-127.55933381126123,57.16261418394906],[-127.55911473481595,57.16274907267064],[-127.55887871428037,57.16287407439041],[-127.55860875749828,57.162979302922274],[-127.55834295307062,57.16308448137142],[-127.55802179284281,57.163126423801856],[-127.55756948765861,57.163149751085534],[-127.55738197326595,57.163195703827014],[-127.55708065356069,57.163241891367036],[-127.55675708226134,57.16332645634291],[-127.5564471713607,57.16339068030646],[-127.55614025973784,57.16342684350299],[-127.55581075432515,57.163441976487256],[-127.55547981344296,57.163447036974844],[-127.55514927875845,57.1634363981818],[-127.5548188185919,57.16342799961237],[-127.55448912858323,57.16341286521764],[-127.55416671418527,57.16337298209311],[-127.55383918439463,57.163360062320365],[-127.55350726330666,57.1633662504447],[-127.55317780131601,57.163356714900914],[-127.55285070805766,57.16332921484439],[-127.55252286146161,57.163308448750904],[-127.55219578563398,57.16328094685979],[-127.55186784909442,57.16325793826014],[-127.55154631756302,57.163290901327514],[-127.55123278824658,57.16334282510922],[-127.55091729662094,57.163397013360054],[-127.55064394765719,57.16349553961338],[-127.55032709415566,57.16354189578785],[-127.55003455044566,57.16352406754321],[-127.54966596435533,57.1635194710665],[-127.54933875180367,57.163514383046206],[-127.54902973605698,57.16344742517233],[-127.54889041092397,57.16343114104988],[-127.54869770792075,57.16342557809028],[-127.54861411456216,57.16345683489494],[-127.54857293382331,57.16353915367857],[-127.54854202233349,57.16361910882691],[-127.54854348383788,57.163706527159185],[-127.5485866679095,57.163750854238316],[-127.5486266502513,57.16379297730686],[-127.54856137232333,57.163841952554804],[-127.5484249101192,57.16394781972486],[-127.54817187394373,57.16406291459917],[-127.54790903768291,57.16416579438268],[-127.54750532286207,57.16416272879],[-127.54733423362046,57.16425667415817],[-127.54705564403157,57.16435413386834],[-127.5467684330144,57.16444272725689],[-127.54657195698833,57.16452352043984],[-127.546192495894,57.164608720338066],[-127.54599015422792,57.16474899343367],[-127.54589339108938,57.16489025931725],[-127.54551581662243,57.16494516870914],[-127.54522539588227,57.16503155467024],[-127.5449892994671,57.165156531715844],[-127.54478704080985,57.16529904387884],[-127.54458364769378,57.165439327194214],[-127.54431147456093,57.16554230997334],[-127.54405816128414,57.165650674205494],[-127.54384851211516,57.16578990930299],[-127.54343970955217,57.1659438268472],[-127.5433274251239,57.166007927177674],[-127.54311565742603,57.166146065129915],[-127.54289331858796,57.16627872268311],[-127.54270366812747,57.16642668758482],[-127.5425652972439,57.16658861958492],[-127.54244581536051,57.16675705434078],[-127.54232835620729,57.16692434415563],[-127.54221094110679,57.16709275432454],[-127.54209766273327,57.16726111558733],[-127.54199172289348,57.16743163212119],[-127.54188055652244,57.16760108926852],[-127.54175161492303,57.16776627213117],[-127.5415986626524,57.167926133229884],[-127.54141008683877,57.16807520457831],[-127.54123401325057,57.16822637016778],[-127.54113215973669,57.168395716893755],[-127.54105538644961,57.16857149366689],[-127.54096296840304,57.16874409194812],[-127.54084149387263,57.1689147907845],[-127.54068853322462,57.169074650956084],[-127.54046167079936,57.16919838991461],[-127.54015538216164,57.169277104588794],[-127.53983248627445,57.1693291108697],[-127.53950603546876,57.169344166155796],[-127.53920804612764,57.16926920774058],[-127.53892770571953,57.16916937949488],[-127.53865540125484,57.16906385121662],[-127.53837433579987,57.16897187716551],[-127.5380576487541,57.16892067666665],[-127.53772850247172,57.16892006567343],[-127.537431737264,57.169004266717046],[-127.53716272122541,57.16910943916667],[-127.53687113405226,57.16919357801977],[-127.53656982262156,57.16926774179963],[-127.53626414750137,57.16933635131362],[-127.53594879333617,57.16939610608375],[-127.53562809440665,57.16945143899872],[-127.53531909650805,57.16951448046324],[-127.53504323586247,57.16960403529849],[-127.53482187526966,57.16973666741354],[-127.53461869130093,57.16988365835025],[-127.53445892176016,57.17000323600837],[-127.53410176878683,57.17010495286131],[-127.53381237087427,57.17019242200219],[-127.53351000287606,57.170266591021964],[-127.53322594602251,57.170358480062],[-127.53295263639355,57.17046033116198],[-127.53269102706264,57.17056989127379],[-127.53244847334445,57.17071621945993],[-127.53234288018773,57.17087103035031],[-127.53208454081022,57.17098503477544],[-127.5317864357323,57.17106251268398],[-127.53149266326993,57.17114442302006],[-127.5312075522495,57.171236319953444],[-127.53093207238673,57.17133595024299],[-127.53067472376748,57.17144881926177],[-127.53042487570345,57.17156832576719],[-127.53015887312887,57.17167232731651],[-127.52985852734918,57.171745343110366],[-127.52954418622564,57.17180507033269],[-127.52923104923006,57.171869266583464],[-127.52889826263404,57.171933691912656],[-127.52870175833546,57.17206714372152],[-127.52852910021673,57.17227990526647],[-127.52802974956849,57.1723462760075],[-127.52819783230831,57.17269405376219],[-127.52830710078766,57.17286428474272],[-127.52838135601343,57.17303940894401],[-127.52841535997729,57.17321724572649],[-127.52839354002428,57.173396856228585],[-127.52833749650779,57.173574624951286],[-127.52824189700128,57.17374725127251],[-127.52825313922106,57.173925354300245],[-127.52830369743447,57.17410299769347],[-127.52836464713222,57.17428164057189],[-127.5284358097292,57.17445680112305],[-127.52851210978176,57.1746307806219],[-127.52856990438184,57.17480833941678],[-127.52857709920438,57.174988731853055],[-127.52856782895411,57.175171558790915],[-127.52852626892223,57.17534915845226],[-127.5284106132873,57.17551193084088],[-127.5282031014014,57.17565559948169],[-127.52800498109883,57.175801399960974],[-127.5277952181011,57.175940610369885],[-127.5275676042972,57.17607330319391],[-127.5273036320763,57.17617727510537],[-127.52698602091273,57.17623367119038],[-127.5265407485803,57.176229903797584],[-127.52661309946068,57.176331067446114],[-127.5268154488018,57.17647330980006],[-127.5270086576737,57.17662014253639],[-127.52718653438974,57.17677163802935],[-127.52733372859515,57.17693245958017],[-127.52746864149599,57.17709678741975],[-127.52759231596325,57.17726460939987],[-127.5277005071209,57.17743373320915],[-127.52778709577203,57.17760647234575],[-127.52785107175441,57.177782838656604],[-127.52790886804513,57.17796039816583],[-127.5279810784049,57.178135547260574],[-127.52809341270498,57.17830462248027],[-127.52821600609865,57.17847133576183],[-127.52829338430311,57.17864642436953],[-127.52834497540874,57.178824056379895],[-127.52841407682823,57.17899924173671],[-127.52851715565176,57.17916954593513],[-127.52863979835061,57.17933737938201],[-127.5288007651958,57.17950588557696],[-127.52896722856671,57.17968217416669],[-127.52874753067246,57.179754243891125],[-127.52841071442414,57.179823198578404],[-127.52811689572064,57.17990622251723],[-127.52783500275939,57.180002558138334],[-127.52757754216034,57.1801143013431],[-127.52720787341737,57.18034617833878],[-127.52707467360374,57.18043292844102],[-127.52689166841097,57.180491114691975],[-127.52664359602007,57.180604988338544],[-127.52643264135857,57.18074084768647],[-127.52622918836876,57.18088334497914],[-127.52598551845136,57.18100389182596],[-127.52571211366552,57.18110572860533],[-127.52543227547933,57.18120203498194],[-127.52515455013034,57.18129943708007],[-127.5248833444457,57.18140460937607],[-127.52469130161398,57.181548092136865],[-127.5245456090414,57.181711211736896],[-127.52432984157828,57.18188299502925],[-127.52406418979272,57.18191972125503],[-127.52377886368681,57.182008241168184],[-127.52351079002025,57.18211449504586],[-127.52325864676034,57.18223065156018],[-127.5229873847493,57.182334699539894],[-127.5227321421657,57.182450891125185],[-127.52253483097584,57.18259219008096],[-127.52251927635277,57.182773969485446],[-127.52241719588591,57.182941062756214],[-127.5221660425138,57.1830560846311],[-127.52185609213613,57.183124709357784],[-127.52154483053812,57.18318662273675],[-127.52124130967863,57.18326077605184],[-127.52097310334509,57.18336366325648],[-127.52077793968063,57.18350717650159],[-127.52059343469948,57.183658412336925],[-127.5203930409085,57.18380086485305],[-127.5201642227079,57.18393131678563],[-127.51992690151715,57.184056262269536],[-127.51967163818814,57.18417244803225],[-127.51951739627941,57.18433005646659],[-127.51931997470312,57.18446910985027],[-127.5190837350456,57.184595162194576],[-127.5188801898509,57.184736528006304],[-127.51868405697653,57.18488229131699],[-127.51849630739348,57.1850301989303],[-127.51833373334894,57.18518678175983],[-127.51817535867254,57.1853444366104],[-127.51796019158418,57.18548033103384],[-127.51774210395737,57.185620742910736],[-127.51753302688579,57.18575320300147],[-127.51735575730704,57.18587856778695],[-127.5172411451043,57.185965092055596],[-127.51718596020909,57.18606213648529],[-127.51725591829167,57.18618126940607],[-127.51746147706457,57.186247263728426],[-127.51763885649318,57.18633376241311],[-127.51775242982583,57.186404186818045],[-127.5177262914445,57.18647623283602],[-127.51756398756572,57.18648260050401],[-127.51739720088713,57.18642848715353],[-127.5172918252268,57.18632994286448],[-127.51718415834652,57.18622582019789],[-127.51702894359578,57.186176056051394],[-127.51692536694523,57.186096547259076],[-127.51680261270876,57.18600380912186],[-127.5165662593687,57.18589221088448],[-127.51631038470578,57.18578420155509],[-127.51609271443499,57.1856477243543],[-127.51587001227911,57.18551466808975],[-127.51565038043799,57.18538045491107],[-127.51543785344165,57.18524279612106],[-127.51522735352182,57.18510399255098],[-127.51501892497906,57.18496516467384],[-127.51481045364898,57.18482521601622],[-127.51460202813278,57.184686387503994],[-127.51439251664742,57.18454645029359],[-127.51418409416142,57.18440762114459],[-127.51397562891312,57.184267671215245],[-127.51376720945356,57.18412884143122],[-127.5135556508228,57.183988926710335],[-127.51334719014709,57.183848975823494],[-127.51314084502685,57.183710121128954],[-127.5129344571607,57.18357014566079],[-127.51272900893844,57.18342791707919],[-127.51251852879875,57.18328910933979],[-127.51229184591234,57.18315945649299],[-127.51202667938557,57.183051546829454],[-127.51175044847443,57.18295161139928],[-127.51154307082327,57.18281276633906],[-127.51132553935142,57.18267852224426],[-127.51105330329588,57.18257517632569],[-127.51073758350466,57.18252389706358],[-127.51043043604942,57.182480364829885],[-127.51017438066418,57.18236674146256],[-127.50985577166759,57.18232109834639],[-127.50952661040569,57.18229687476825],[-127.50920314568133,57.1822591329463],[-127.5088786825824,57.1822225228265],[-127.50855031679077,57.18221846512281],[-127.50822333478531,57.182249140757555],[-127.50790209146017,57.18229432201741],[-127.50756944081218,57.182312730693894],[-127.50724801814813,57.182300742854295],[-127.50693117444743,57.18224722551124],[-127.5066251340284,57.18217901029874],[-127.5063379282737,57.18208927894155],[-127.50603879009387,57.18201201510287],[-127.5057556382919,57.181919993870046],[-127.50551571778827,57.18179496610438],[-127.50523463852797,57.1817029199262],[-127.50493635612801,57.18162115991552],[-127.50462401259166,57.18157655307235],[-127.50429057484777,57.18157478505136],[-127.50384066657571,57.18150709771353],[-127.50371318853558,57.18142449120729],[-127.50338565344416,57.18141480622089],[-127.50305582910146,57.18139954188693],[-127.5027260330324,57.181411179660444],[-127.50240483418231,57.18145746785096],[-127.50209895678795,57.18152487763287],[-127.50183825422639,57.18163548557668],[-127.50158077813278,57.18174941884474],[-127.50128348301152,57.18182457490818],[-127.50100448966128,57.181917455681855],[-127.50078087046592,57.18205005513076],[-127.5005730879811,57.18219031922018],[-127.50035050883912,57.18232290598864],[-127.50013108489043,57.18245657714184],[-127.49994748622485,57.182606651476476],[-127.49974492416041,57.18274797531993],[-127.49950543013817,57.18287178690089],[-127.49908522367843,57.18314003321107],[-127.49914478648665,57.183498060573804],[-127.49917042872313,57.18367712174517],[-127.49919304589639,57.1838584595641],[-127.49911682943528,57.18402747895896],[-127.49887314192027,57.18415021649617],[-127.4985866540235,57.18423757307512],[-127.49839460274225,57.184383258259956],[-127.49819309601168,57.18452568859296],[-127.49798843092823,57.18466703382687],[-127.49779430536583,57.18481274189074],[-127.49763269087263,57.18496928700321],[-127.49747839891293,57.185127989999955],[-127.49729159294779,57.18527585543359],[-127.49708477964424,57.185414981907385],[-127.49691267890653,57.18556828328683],[-127.49674269046652,57.185722681233955],[-127.4965842081954,57.185880310183215],[-127.49642992478468,57.18603901186293],[-127.4962704132333,57.18619665221917],[-127.49611404075083,57.18635537743975],[-127.49591247142642,57.18649668400071],[-127.49572992388141,57.18664786140885],[-127.49554207705836,57.18679573625768],[-127.49529502860813,57.18691290063468],[-127.49502051713887,57.18701580590044],[-127.49474285308078,57.18714452896047],[-127.4945547154871,57.18725877655544],[-127.49439730484484,57.18741751158592],[-127.49423675247012,57.18757516136002],[-127.4940193305723,57.18770879932473],[-127.49377555963292,57.187830407232475],[-127.49353930259518,57.18795865468979],[-127.49338379752986,57.188060197179645],[-127.49348041379302,57.18828104618712],[-127.49347963192751,57.18834046663184],[-127.49350595757436,57.18837827901468],[-127.49353990828577,57.18839918972417],[-127.49351343939857,57.18843760508356],[-127.49346005479032,57.188449424508065],[-127.49350485782193,57.18850944531112],[-127.49351423501386,57.18856426585015],[-127.493518663752,57.18862474776961],[-127.49352358239886,57.1888040471671],[-127.49348912584324,57.18898267531995],[-127.49344013464292,57.189160348503805],[-127.49339011621775,57.189338033419055],[-127.49334112410396,57.1895157066138],[-127.49330045569434,57.18969440573236],[-127.49325874355948,57.18987311677643],[-127.49320035545759,57.19004865531925],[-127.49309943312959,57.19022243754702],[-127.49292082239626,57.1903690822896],[-127.4926357814434,57.19046873974826],[-127.49242188335246,57.19058664124938],[-127.49240424338896,57.190771803209245],[-127.49239466576927,57.19095126831518],[-127.49238818507804,57.19113069810236],[-127.49237344005168,57.19131022222263],[-127.49232651092028,57.19148787167914],[-127.49224735359749,57.191662525959806],[-127.49216195775875,57.19183613041355],[-127.49207970187675,57.1920108199761],[-127.49199847209194,57.192185497795286],[-127.49189322360789,57.19235484470327],[-127.49176818396451,57.19252105436472],[-127.49163584533267,57.192686226189565],[-127.49149720743132,57.192849227777856],[-127.49135334069413,57.19301116787688],[-127.49119584953819,57.19316877926958],[-127.49101006717358,57.19331774521337],[-127.49083483646581,57.19347219549093],[-127.49067424405995,57.19362984161669],[-127.49058864574735,57.193798963576725],[-127.49057086464735,57.19398076430466],[-127.49046978924498,57.19415118358563],[-127.49033857003815,57.194318583369714],[-127.4902322648846,57.194487941106466],[-127.49025059114103,57.19466596751243],[-127.49029378941168,57.19484483151195],[-127.49035243726131,57.19502127752445],[-127.49066223946942,57.19526436184396],[-127.48991789033451,57.195085640258235],[-127.4895538856515,57.195179464518354],[-127.48938986193048,57.195329301373135],[-127.48910041623188,57.195423396254604],[-127.48885339611194,57.195542790003934],[-127.48859574439622,57.19565557842402],[-127.48832636367234,57.195759531985544],[-127.48804848201782,57.19585797681799],[-127.48776516994344,57.195949756963174],[-127.48747756847929,57.19603822233845],[-127.4871846672798,57.19612338440357],[-127.4868895203248,57.19620408742787],[-127.48659005722197,57.19628035492828],[-127.48628623457304,57.19635106639214],[-127.48597918294767,57.1964184508974],[-127.4856720702195,57.19648471439084],[-127.48536717383912,57.196554314913385],[-127.48506666143554,57.196630590797646],[-127.48477479388279,57.1967157356567],[-127.48448717976316,57.19680419450893],[-127.48419849392337,57.196891543904705],[-127.4839033781675,57.196973360722275],[-127.48359847468492,57.19704295714837],[-127.48328147967464,57.19709475436097],[-127.482956534588,57.197128705319145],[-127.48262805770561,57.197151485739816],[-127.48229829328343,57.197167554068315],[-127.48196846866917,57.19718250126884],[-127.48163977402979,57.19719967678602],[-127.48105273876955,57.197232107735665],[-127.48100189412109,57.1973100307636],[-127.48098272289127,57.19745709563467],[-127.48104500919432,57.19764807721796],[-127.48103123550452,57.19782758931916],[-127.48100292431637,57.198006145070885],[-127.48096425992667,57.198184818061],[-127.48091934006275,57.1983624409081],[-127.48087337619647,57.19854007557899],[-127.48082954240488,57.1987188071145],[-127.48081472372483,57.198898331154275],[-127.48080820401456,57.19907776126367],[-127.48079752638687,57.19925723846756],[-127.48078686522432,57.199436715507616],[-127.48077516034674,57.1996162043857],[-127.48076345535945,57.19979569328718],[-127.4807517502625,57.19997518221239],[-127.48074958896534,57.19999986818834],[-127.48073900142602,57.200154682974976],[-127.48072936680863,57.20033414850683],[-127.48071351996026,57.20051368438281],[-127.48066342767757,57.20069136596404],[-127.48058626889227,57.200865990970605],[-127.48054138744534,57.20104473453966],[-127.48053072458521,57.20122421180378],[-127.48053351329376,57.20140353684423],[-127.48053630202844,57.20158286190914],[-127.48052873688333,57.201762304184655],[-127.48049734928884,57.201942016101725],[-127.48045863525536,57.202119568990035],[-127.4804386447789,57.202299151949575],[-127.48046628297392,57.20247819590761],[-127.48052184259471,57.20265580290378],[-127.48059490994441,57.20283096979088],[-127.48066797796243,57.203006136660655],[-127.48069250316912,57.20318521592042],[-127.48069115104245,57.203364588105714],[-127.48067841736082,57.203544089139704],[-127.48066566699279,57.203723590384755],[-127.48066328755661,57.203902974269475],[-127.48068574240911,57.20408207709265],[-127.48076192788672,57.20425720882422],[-127.48086484621435,57.2044275540082],[-127.48106739644737,57.20481648366053],[-127.48104123788343,57.204997257911],[-127.48101813390457,57.20517687661607],[-127.48099504627679,57.205356495154156],[-127.48097811148774,57.20553492307558],[-127.48096847663736,57.205714389363216],[-127.48097959507167,57.20589474172528],[-127.48099378508307,57.206073938358095],[-127.48098931944575,57.20625334620354],[-127.48097451516772,57.206432871107744],[-127.48095141000994,57.20661248999844],[-127.48093043558846,57.20679320577169],[-127.48090008957145,57.20697290666151],[-127.48082697469647,57.20714524477578],[-127.48066786574073,57.20726362791674],[-127.48076990705957,57.20746425015067],[-127.48089768722221,57.207634314431914],[-127.48103885233111,57.20780198513507],[-127.48120349807057,57.20796042201233],[-127.48138448086547,57.2081130688134],[-127.481450148495,57.208283835961446],[-127.481476708532,57.20846177185153],[-127.48148575900467,57.208642148002376],[-127.48148656826353,57.2088237384822],[-127.4814894053517,57.20900418503998],[-127.48150157106993,57.20918452599214],[-127.48152926255534,57.20936469116448],[-127.48156415186789,57.20954365386687],[-127.4815959863294,57.2097237721673],[-127.48161846552651,57.20990287544134],[-127.48162017270468,57.21008109297529],[-127.48159497034884,57.210259615253],[-127.48151140937345,57.21042983046248],[-127.48148533577579,57.210612846571735],[-127.48141757644362,57.21078960875741],[-127.48135293168858,57.21096633566266],[-127.48129866955387,57.21114406599718],[-127.48125482332046,57.2113227993992],[-127.48121403200831,57.211500377235545],[-127.48117642569699,57.21168016100025],[-127.48113981963768,57.21185881246429],[-127.48110425719037,57.21203745212569],[-127.48106765045286,57.212216103618594],[-127.48102999941044,57.2123947669422],[-127.4809902932221,57.212573453536564],[-127.48094742797593,57.21275105490498],[-127.4809004195626,57.21292870317006],[-127.48084818060498,57.21310528964387],[-127.48072108386205,57.21327487631756],[-127.48059362278684,57.213435499086046],[-127.4805007497384,57.21363272304724],[-127.48039439500857,57.213776291993966],[-127.48020206648407,57.213920833427885],[-127.47999615045117,57.21406216529136],[-127.4797797024003,57.2141991319746],[-127.47955695181565,57.21433392758046],[-127.47933101415781,57.214466516854664],[-127.4791050150764,57.21459798543915],[-127.47887691625093,57.21472835637],[-127.47864138427379,57.21485432693336],[-127.47840057718382,57.214978114685955],[-127.47815551232107,57.21509858711639],[-127.47790624307041,57.215217985576636],[-127.4776398977593,57.21532412450197],[-127.47736714688372,57.21542585123629],[-127.47711145888128,57.215539715678666],[-127.47686534231488,57.21566019753033],[-127.47662345371484,57.21578287318378],[-127.47647430530957,57.21583836362581],[-127.47613755710776,57.21602712604958],[-127.475896734548,57.216150909306805],[-127.47565272498794,57.21627248607364],[-127.4754055284394,57.216391856331576],[-127.47515840012461,57.21651346732722],[-127.47491348790214,57.21663841584291],[-127.47466644275279,57.21676226694004],[-127.4744139663698,57.216879452817224],[-127.47415074209252,57.21698667036376],[-127.473874439601,57.217077219818634],[-127.47357219817584,57.217140036015586],[-127.47324833405918,57.21717955414491],[-127.47291472417287,57.21720797126002],[-127.47258329813921,57.21723972591481],[-127.47225659154581,57.21728599949669],[-127.47189569400594,57.217332656825135],[-127.4716105698998,57.21743675253404],[-127.47143154354616,57.21747015333653],[-127.47143244055638,57.2176820103131],[-127.47150236609698,57.21801864204925],[-127.47136688645313,57.21813338536747],[-127.47131538681288,57.21824942637784],[-127.47129279369969,57.21838980418033],[-127.47148407350234,57.218459396939416],[-127.47158161282778,57.21859730299808],[-127.47139531423298,57.21881911193665],[-127.4711516609096,57.21895076512158],[-127.47088841325741,57.219057976278],[-127.47060613118245,57.21915531187431],[-127.4703184448755,57.21924710261531],[-127.47003284550127,57.21933886927305],[-127.46974620059936,57.2194306470405],[-127.46945410860333,57.21951575938826],[-127.46915442844764,57.21959198833387],[-127.46884370043347,57.21965040473026],[-127.46852196792715,57.21969212900441],[-127.46816881828217,57.21975214078368],[-127.46784979687195,57.2197837440627],[-127.46756255527568,57.21983292603901],[-127.4672552658159,57.21990026799013],[-127.46671079723137,57.22002519606041],[-127.46703371583152,57.220338816985],[-127.46722278969484,57.22048578919422],[-127.46743230881914,57.22062580597566],[-127.46763674413796,57.22076812144667],[-127.4678360956314,57.22091273563177],[-127.46806077962239,57.22104249249794],[-127.46834118599872,57.22113911509099],[-127.4686428405539,57.22122204676614],[-127.46889266155307,57.22133134234851],[-127.4690531119219,57.22148872234306],[-127.46921469384037,57.2216483314575],[-127.46944478984719,57.22178363033174],[-127.46966141198548,57.22191908013506],[-127.4697630426105,57.222082724841236],[-127.4697711259469,57.22226647694666],[-127.46981318898882,57.222444242517284],[-127.46997469205087,57.22260160979041],[-127.47018324818038,57.222742754449506],[-127.47043342784177,57.22286101130345],[-127.4707119107446,57.222961013762735],[-127.47101022681221,57.22303725186577],[-127.47133681308802,57.22306721073233],[-127.47166447063653,57.223098277739666],[-127.47195384542006,57.22318470322331],[-127.47224322151006,57.223271128072874],[-127.47256114183575,57.22331799632868],[-127.47288786106532,57.22335131286244],[-127.47321552230389,57.223382375994134],[-127.47354025696416,57.22341795524304],[-127.47386503537179,57.223454654197035],[-127.47418882986302,57.22349248443125],[-127.47451260841852,57.223530314052404],[-127.474837345539,57.223565890087606],[-127.47516204008109,57.223600344808666],[-127.47548769309613,57.223632545933995],[-127.47581514284535,57.22365800001824],[-127.47614455194295,57.22368006820095],[-127.47647381518327,57.22369877421464],[-127.47680986339857,57.223705071882236],[-127.4771536374819,57.22369670853497],[-127.47747177330636,57.223722263610995],[-127.47775270498185,57.22380428783751],[-127.47801797060843,57.2239100293346],[-127.47827245589187,57.22403158604342],[-127.47851881136444,57.22415771811473],[-127.47876095445926,57.224281655348854],[-127.4790103861536,57.22440663080242],[-127.47924963261896,57.22453620491548],[-127.47945710256515,57.224675105793075],[-127.47960920889415,57.224829205220075],[-127.4797068756403,57.2249962509455],[-127.47977178034685,57.22517375601696],[-127.47982438327074,57.225354763168205],[-127.47988625938542,57.2255345444846],[-127.47997690178681,57.225707274550444],[-127.4800799176175,57.22587874367194],[-127.48019123932868,57.22605011881898],[-127.48031382031539,57.22621800357008],[-127.48045073381039,57.226381242133925],[-127.48060603750095,57.22653754656575],[-127.48081352321539,57.226676445508375],[-127.48105374761016,57.226803763715935],[-127.48127868443595,57.22693798052311],[-127.48144832534304,57.22708963783399],[-127.48157907368886,57.22725406619464],[-127.48169241832508,57.22742429647007],[-127.48181095270266,57.22759446793136],[-127.4819529794894,57.22775540533734],[-127.4821247856662,57.22790927942935],[-127.48230893964919,57.228060771498036],[-127.48250431035233,57.228207652296646],[-127.48271294322169,57.228348777602456],[-127.48293573588862,57.228480774172574],[-127.48317373274493,57.228603630098426],[-127.48343429202087,57.228720624917244],[-127.48371415655244,57.22882731139848],[-127.48400787668356,57.22891702517426],[-127.48431001904572,57.22898310173093],[-127.48462094240845,57.22900872187168],[-127.48495090979415,57.22899040608469],[-127.48528958491892,57.228956296601176],[-127.48562476735849,57.228939040938855],[-127.48595292211785,57.228954373318544],[-127.48628064191475,57.22898540388099],[-127.48660742145218,57.229018686317396],[-127.4869340709598,57.22904860640811],[-127.4872607209781,57.2290785256845],[-127.48758737150699,57.229108444146625],[-127.48791406610799,57.22913948230448],[-127.48824067409663,57.22916827862787],[-127.48856828341525,57.22919594175043],[-127.48889583303901,57.22922248373271],[-127.48922348689493,57.22925126572686],[-127.4895491832296,57.22928343219963],[-127.48987199809659,57.22932123569476],[-127.49019797392108,57.229360123424236],[-127.49052502189211,57.229400119149126],[-127.49084814424067,57.22944576380709],[-127.49116531247783,57.2294982015431],[-127.4914704845777,57.22956198527073],[-127.4917628783696,57.22964385003333],[-127.4920406132081,57.22974830138767],[-127.49229008018797,57.22987213155469],[-127.49249962786014,57.23000874750095],[-127.49266210915951,57.23016159393823],[-127.4927929598738,57.23032713199793],[-127.49291366862725,57.230498390664735],[-127.49304663763134,57.230665025390174],[-127.4931858248314,57.23083158908808],[-127.4933231157755,57.2310026583393],[-127.49348575234178,57.23115886521297],[-127.49370000289727,57.23128309475102],[-127.49398728570019,57.23136613418571],[-127.49431695216472,57.231419542969896],[-127.49464816679401,57.23145948114688],[-127.4949747121021,57.23148601970287],[-127.49530694964083,57.231499040314446],[-127.49563918740557,57.231512060083126],[-127.49596667415122,57.23153634340334],[-127.49628857407191,57.23157638390838],[-127.49660873625106,57.231625411579415],[-127.49692503401955,57.23168120872997],[-127.49723636262584,57.23174266701511],[-127.49753875277648,57.23181431592188],[-127.49783226509697,57.23189727583304],[-127.49812388173893,57.23198474084439],[-127.49841536809697,57.232068843684814],[-127.49870794411359,57.232154054433245],[-127.4989984324349,57.232239288453435],[-127.49929001044929,57.23232563038153],[-127.49958056185505,57.23241198344083],[-127.49986911339077,57.23250060081285],[-127.5001566383339,57.23258922933421],[-127.50044623705014,57.23267783347738],[-127.50073773378931,57.232761931192776],[-127.50103428937554,57.23284260723745],[-127.50133471078887,57.23291651221832],[-127.50163920692215,57.23298812776269],[-127.50194562814639,57.23305635749016],[-127.50225409552156,57.23312344202359],[-127.50256245940851,57.23318828500669],[-127.50287286938713,57.23325198277639],[-127.5032003159626,57.23330091102744],[-127.50350950729647,57.23336013725249],[-127.50370563467412,57.23349689043504],[-127.5037603026256,57.23367450379387],[-127.50378811660799,57.23385466765118],[-127.50385422001709,57.23403327069138],[-127.50394922382716,57.2342081786904],[-127.50412908518021,57.234352965359896],[-127.50436821454936,57.23447577149993],[-127.50462680603604,57.234592748483436],[-127.50487215614774,57.234715482268406],[-127.50508596442987,57.23485315144416],[-127.50529692157652,57.23499757918166],[-127.50549457664016,57.23514664364297],[-127.50566138156364,57.23530166771689],[-127.50577978235577,57.23546509544798],[-127.50584870637168,57.23563581828487],[-127.50588368925807,57.23581365761202],[-127.50589602254425,57.23599512052756],[-127.50589906492871,57.23617781135043],[-127.50590417997977,57.236360478359856],[-127.50592059815585,57.23654077335158],[-127.50593184313456,57.236721127870986],[-127.50593998750963,57.236901518079364],[-127.50595123268572,57.23708187264761],[-127.50597068051444,57.23725989085631],[-127.50601288407755,57.23743652632494],[-127.50617567140881,57.23759495942662],[-127.50641888479812,57.23771547342052],[-127.5066814899754,57.23782791670905],[-127.50692073750413,57.237952959541964],[-127.50718319679635,57.238062040501624],[-127.50746694400279,57.23815854465171],[-127.50777299206429,57.23821555571031],[-127.50810904038107,57.23821841156394],[-127.50845043899133,57.238225688995904],[-127.50871455202909,57.23832353772669],[-127.50880210486348,57.238492923920404],[-127.50874599097057,57.2386740548231],[-127.50865537485794,57.23884773612504],[-127.50860634605841,57.23902430128475],[-127.5085926867669,57.23920382199658],[-127.50844111821294,57.239356906057665],[-127.50814059726925,57.239439960343155],[-127.50788085483681,57.23955841699503],[-127.50782736681879,57.23972718611407],[-127.50787394812019,57.239909376145654],[-127.50795447502509,57.24008444913122],[-127.5080639176193,57.240256947027945],[-127.50820929113179,57.24042006283135],[-127.50844920699987,57.240535006471774],[-127.50875731992264,57.240617775293764],[-127.50902269936272,57.240721214304486],[-127.50918529213963,57.24087404150365],[-127.509305167771,57.241047539333664],[-127.50945559091343,57.2412072326759],[-127.50968550464327,57.241331257707834],[-127.5099591831798,57.241434599280495],[-127.51024205033347,57.24153447125867],[-127.51050179646504,57.2416525457454],[-127.51076145570981,57.24176837870094],[-127.51106713926542,57.241815297600034],[-127.51141209669247,57.241806832301826],[-127.51172505677891,57.2417494104366],[-127.51199708056456,57.2416532246642],[-127.51225591258994,57.24153813325895],[-127.51250825856174,57.24141639010973],[-127.51276073583647,57.24129800802278],[-127.51300794898538,57.241177444219915],[-127.51325095390182,57.24105580755308],[-127.51349604673699,57.24093414629554],[-127.51373320970235,57.240795760885554],[-127.51397585518795,57.24066515881825],[-127.51424286913101,57.24057351032963],[-127.51455039468982,57.24053632288288],[-127.51488727020727,57.24053354689986],[-127.51523131269201,57.240554228624426],[-127.51556361195259,57.24059298176416],[-127.51588199554568,57.24064646849159],[-127.51620225182627,57.24072123224387],[-127.51648923133277,57.24081992215701],[-127.51671074076016,57.24094066931323],[-127.51686317842812,57.24109808910084],[-127.51695337968316,57.24128089232716],[-127.51698148344205,57.24146665699972],[-127.51694998451154,57.24163965988513],[-127.51687286434053,57.24181319127531],[-127.51676669453543,57.241985938103454],[-127.51665009804596,57.2421576845977],[-127.51653869118721,57.24232937089548],[-127.51643553077123,57.242499840584664],[-127.51632719529594,57.24267037013078],[-127.51621672488325,57.242839803292114],[-127.51610834306746,57.24300921218964],[-127.51600310590085,57.24317970562964],[-127.5158937217766,57.24335024700315],[-127.51578951093333,57.24352072841404],[-127.51570513440001,57.243694343260955],[-127.51564473850249,57.243871043596],[-127.51559261765442,57.244047648148204],[-127.51554682085781,57.244226421563454],[-127.51550827107663,57.24440511111318],[-127.51547701279887,57.2445848373182],[-127.51545199007259,57.24476449137704],[-127.51543425904234,57.2449451821005],[-127.51543736809066,57.24515477841923],[-127.51550006845724,57.24529754446979],[-127.5157897274754,57.24527961865041],[-127.51614094394262,57.245192596764376],[-127.5164478673751,57.24524397338295],[-127.51669561893273,57.24537226459622],[-127.51684679431949,57.24557566196915],[-127.51698317758824,57.24571981600738],[-127.51715374339028,57.245653941404846],[-127.51733947855956,57.24547354581757],[-127.51755909297187,57.2453106938388],[-127.51780955166227,57.24519344619724],[-127.51807164148532,57.245081668384145],[-127.51834430102612,57.244975372634734],[-127.51862566830742,57.24487906459183],[-127.5189147265508,57.244793877021635],[-127.51921684493793,57.24472423170164],[-127.51953423036012,57.24467346602257],[-127.51985917401718,57.24463045905096],[-127.52018299965091,57.244585222185826],[-127.5204992207952,57.244531104572445],[-127.52080543581542,57.24446028694859],[-127.52094030188601,57.24438361163442],[-127.52133452135573,57.24423105646558],[-127.52158253184702,57.244104861696954],[-127.52185864604417,57.244033270294715],[-127.52217698359463,57.24403293340307],[-127.52251468936953,57.24407609071673],[-127.5228426550892,57.24413505485891],[-127.52314714690739,57.24420325947235],[-127.52344188261843,57.24428727131877],[-127.52373568064142,57.24437353549435],[-127.5240372812446,57.24444737688692],[-127.52435475321839,57.24450309635829],[-127.52468508418161,57.24454297092172],[-127.52501225420725,57.24455597672418],[-127.52533435744898,57.24451971535493],[-127.52563579173231,57.24443324758159],[-127.52586729428441,57.244309478914694],[-127.52606243611623,57.24415810779479],[-127.52631295061063,57.24404308501918],[-127.52662389472961,57.243960988215335],[-127.5269438574593,57.243949410470535],[-127.52727062118342,57.24397810975279],[-127.52759919079774,57.24402584469618],[-127.52791602239633,57.24409165229236],[-127.52820757692226,57.24417344857248],[-127.52847528571107,57.244281306292784],[-127.52871798654925,57.244411876081024],[-127.52892282160386,57.24455521891369],[-127.52906099152004,57.24471727641025],[-127.52906013338347,57.24490337786807],[-127.52888744540915,57.24504552322641],[-127.52864304827825,57.245209805071035],[-127.5284569338301,57.245327443862266],[-127.5283047950993,57.24549064823577],[-127.52820676358827,57.2456588262048],[-127.52823168950111,57.24584126375402],[-127.52833871918219,57.24600256455533],[-127.5285994172623,57.246116109316596],[-127.52890666339708,57.24620108430798],[-127.52922448523243,57.246238851674526],[-127.52964596131696,57.24622384001924],[-127.5298745038111,57.24625928550782],[-127.5302348968017,57.24635036276598],[-127.53050128168542,57.2464246012024],[-127.53080980061833,57.246489378326146],[-127.5311251813764,57.246543985197945],[-127.53145007664507,57.246577180392286],[-127.53178263705851,57.246594590638175],[-127.53211610802798,57.2466086262847],[-127.5324447022058,57.24663056540051],[-127.53276472237897,57.24667166165448],[-127.53309237141004,57.24674741993826],[-127.53333550318318,57.24686228223941],[-127.53339380046486,57.24702302885615],[-127.53336311810818,57.24721508530652],[-127.53339941911445,57.247396268171094],[-127.53345736290137,57.247573834528396],[-127.53352043710804,57.24775021977912],[-127.5335928332135,57.24792649587075],[-127.53367759626268,57.24810038505531],[-127.53377776650068,57.24827073066659],[-127.53389749065386,57.24843748410252],[-127.53403471224749,57.24860066939883],[-127.53418428488405,57.24876146782608],[-127.53434310703437,57.248919915678435],[-127.53450706052956,57.24907718221261],[-127.53467199878405,57.24923331599877],[-127.53483793838181,57.249388316838385],[-127.53500902598705,57.24954213612669],[-127.53518524505924,57.24969477403748],[-127.53536556726208,57.24984624260548],[-127.53554994764737,57.24999542130108],[-127.53573640283615,57.25014457544275],[-127.53592379788861,57.250291476251604],[-127.53611228436172,57.25043948506544],[-127.53630181728137,57.25058748136755],[-127.53649238007237,57.25073546534794],[-127.5366838827172,57.25088119597694],[-127.53687850523357,57.25102688975056],[-127.53707620263013,57.25117142614189],[-127.53727695833634,57.25131480533148],[-127.53748072732975,57.2514559067921],[-127.5376906446529,57.251594693702614],[-127.53790663210802,57.251730045909376],[-127.53812979636947,57.251863071427096],[-127.53835603560822,57.251994939438134],[-127.53858533324767,57.25212565012093],[-127.53881354234248,57.252255252180646],[-127.5390408147059,57.25238710696655],[-127.53926398674413,57.2525201306206],[-127.53948202997927,57.25265433525197],[-127.53969298959818,57.25279310699583],[-127.53989677537699,57.25293420486151],[-127.540092465629,57.25307988180764],[-127.54028301037599,57.25322674004881],[-127.54046747135855,57.253377032730484],[-127.54064678676573,57.25352850675556],[-127.54082201821264,57.25368114965649],[-127.54098695694704,57.25383615553937],[-127.54113965277834,57.25399578947858],[-127.5412851292151,57.2541566292707],[-127.54143065203289,57.25431858943541],[-127.5415813066183,57.25447936803153],[-127.54173503600555,57.254638989252705],[-127.54188169800763,57.25480317770498],[-127.54202731616272,57.25496737831773],[-127.54217703765086,57.25513040944759],[-127.5423369026902,57.25528771577297],[-127.54251407042669,57.25543697085628],[-127.54271365958024,57.25557587224603],[-127.54294375088902,57.25569984046489],[-127.5432003206458,57.25581116484645],[-127.54347622174595,57.2559132925898],[-127.54376126666652,57.25601082782445],[-127.54404731294068,57.25610722961223],[-127.54432629202073,57.25620819831132],[-127.54460210848475,57.25630808268606],[-127.54488296655848,57.25640454390028],[-127.54515978576924,57.25650329427545],[-127.54542446450516,57.256610034663595],[-127.5456659392701,57.25673274302964],[-127.54611729253021,57.25694041577685],[-127.54634776139795,57.25727849438528],[-127.54642948422658,57.25745241340669],[-127.54648438479231,57.25763001221668],[-127.54653420035054,57.25780991316838],[-127.54656745482852,57.2579911307064],[-127.54657677866223,57.25817038869649],[-127.54655180249728,57.25834780955937],[-127.54649034483484,57.25852117692094],[-127.54640188161808,57.25869374201507],[-127.54629361729664,57.25886429869148],[-127.54617395418062,57.259034989828834],[-127.54604797784863,57.25920351327244],[-127.54592507419552,57.25937087929256],[-127.54580841977301,57.259539292518],[-127.54569501930213,57.259711030411054],[-127.54558478222516,57.25988385194679],[-127.54547349890814,57.2600566857442],[-127.54536112405685,57.260228411282846],[-127.54524457168033,57.26039906495988],[-127.54512168935179,57.26056755109753],[-127.54499043625772,57.2607338937444],[-127.54484961465539,57.2608947438404],[-127.54469512184399,57.26105127077924],[-127.5445279743187,57.26120234147299],[-127.54434287169234,57.2613457762474],[-127.54413666596204,57.26148049107428],[-127.54391043097976,57.261607594247664],[-127.54366837648158,57.261728157110596],[-127.5434126216615,57.26184327565983],[-127.5431484170536,57.261955130073396],[-127.54287898896878,57.26206592440921],[-127.54260844020926,57.26217448927243],[-127.54233900901492,57.262285282517055],[-127.54207593389512,57.26239936354252],[-127.54182231759134,57.26251669587301],[-127.54158143158888,57.26264060422848],[-127.54134900427894,57.26276889683028],[-127.54111992057983,57.262902754947305],[-127.54089828339711,57.2630410092893],[-127.54069132708882,57.26318357482151],[-127.54050120415279,57.26333154735937],[-127.54033510397875,57.263483721401485],[-127.54019523629067,57.263643434225536],[-127.54008157279785,57.26380956520062],[-127.53998789144552,57.26398218753594],[-127.53991201149108,57.264159084803936],[-127.53984973976783,57.26433918526868],[-127.53979578062028,57.264519188029105],[-127.53974793658645,57.26469687681372],[-127.53970633118608,57.26487449228594],[-127.53967719895245,57.26505308224223],[-127.53965642488279,57.26523269504977],[-127.5396418565969,57.26541223495267],[-127.53963045289011,57.26559285874557],[-127.53962004935947,57.26577234975435],[-127.53960652610415,57.26595187744541],[-127.53958780885034,57.266131466190835],[-127.53956915313198,57.26631217528921],[-127.5395598681802,57.266493895356696],[-127.53955265739957,57.26667559107699],[-127.53954444623601,57.26685841963227],[-127.53952681880057,57.26703911673954],[-127.5394966552323,57.26721771904899],[-127.53944561305187,57.267393203509165],[-127.53937054370682,57.26756448602491],[-127.53925470044038,57.26772840011317],[-127.53909912825509,57.26788493338256],[-127.5389184823884,57.26803727673246],[-127.53872637280898,57.26818863339995],[-127.53853842700423,57.26833994089595],[-127.53836832888668,57.268496643868595],[-127.53822957029188,57.268658584006666],[-127.53811389913092,57.26882697933919],[-127.53800764354108,57.26899750617917],[-127.5379087007579,57.26916906817378],[-127.53781504153618,57.26934281021362],[-127.53772551369738,57.269516503717846],[-127.53763812112949,57.26969129317636],[-127.5375496822481,57.2698660948687],[-127.53746019703871,57.27004090879246],[-127.5373654430622,57.270213542368516],[-127.53726542026334,57.27038399558447],[-127.53715808257357,57.270553413486496],[-127.53704023638471,57.270719591398475],[-127.53691188158969,57.27088252929076],[-127.53674888281967,57.27103578382457],[-127.53654710736674,57.27117940332254],[-127.5363221955523,57.27131544635055],[-127.53609092351104,57.27144820036835],[-127.53594096803327,57.27161587476651],[-127.53566549744212,57.27173345124701],[-127.53560018826524,57.27181269069066],[-127.53560670601257,57.27207830527281],[-127.53566775599207,57.27225471719778],[-127.53573605924576,57.272431044123365],[-127.53578160432052,57.2726087588205],[-127.53581370167898,57.272787752194816],[-127.53583754594163,57.27296796337486],[-127.53584577751775,57.2731472364973],[-127.53583742878756,57.27332670396231],[-127.53581869022037,57.27350629321547],[-127.53578647460212,57.27368604043004],[-127.53573549678624,57.27386376540811],[-127.53566575651914,57.27403946812695],[-127.53559827032318,57.27421962865684],[-127.5355319191476,57.27440201799343],[-127.53545928166167,57.27458335990732],[-127.5353709115117,57.27476040187368],[-127.53525935871994,57.27492874688588],[-127.5351172348483,57.275085118240064],[-127.53493608917566,57.27522625162176],[-127.5347212515761,57.27535544763072],[-127.53448106584786,57.27547372946303],[-127.5342208454418,57.27558439795802],[-127.5339469660839,57.27569074155454],[-127.53366574193745,57.275794928398106],[-127.53338445471282,57.27589799430549],[-127.53310746692681,57.27600437248981],[-127.53284210522457,57.27611621940988],[-127.5325914900669,57.27623349864705],[-127.5323462317148,57.27635519901233],[-127.53210310810604,57.27647799501832],[-127.53186317664772,57.27660299537951],[-127.53162531843033,57.276727971066634],[-127.53138750354785,57.27685406687179],[-127.5311496870967,57.276980162258084],[-127.53091186907685,57.27710625722549],[-127.53067291403103,57.277230122911405],[-127.53043085346941,57.27735402441958],[-127.53018658192086,57.27747458810272],[-127.52993911514737,57.27759294649948],[-127.5296863168578,57.27770800346281],[-127.52940089992312,57.27781222994952],[-127.529045084936,57.277894855882295],[-127.52867429613659,57.2779664448679],[-127.52835051273172,57.27804533209734],[-127.52801012821462,57.27822867081179],[-127.52802774319534,57.278305818718756],[-127.52811111366874,57.27841807397465],[-127.52820142735025,57.278573969663526],[-127.52833570172498,57.278739442269476],[-127.52850129704166,57.27890903376189],[-127.52868465695153,57.27908178107958],[-127.52887319759036,57.279254467751954],[-127.52905444105495,57.279426118263146],[-127.52921580294142,57.27959351627748],[-127.52935519135934,57.27975668627193],[-127.52949358001308,57.279920988883624],[-127.52962991146302,57.280085315392704],[-127.52976727328605,57.28024962976941],[-127.5299056206446,57.28041281146937],[-127.53004709001381,57.28057595661405],[-127.53019059075943,57.28073795686147],[-127.53033819793139,57.28089878797735],[-127.5304909125223,57.28105731719455],[-127.53064979206793,57.28121465321053],[-127.53082613973639,57.28136730079661],[-127.53103434650674,57.28151172859025],[-127.53127399197466,57.28163785175684],[-127.5315417023825,57.28173898314092],[-127.53182655015131,57.28182758199744],[-127.53212449137504,57.28190593761152],[-127.53243055449218,57.28197971334719],[-127.53273960493107,57.28205009025371],[-127.53304660975031,57.28212161144102],[-127.5333545716636,57.282190878596246],[-127.5336746256385,57.28225103502296],[-127.53399762169651,57.28230667198161],[-127.53431357240673,57.28236799596503],[-127.53461034210737,57.28244299658157],[-127.53487572186309,57.2825374222691],[-127.53508863477434,57.28266945715397],[-127.5352651419112,57.2828254605688],[-127.53543462085455,57.28298715145213],[-127.53562429592924,57.283135152728754],[-127.53583447053593,57.28327618716617],[-127.5360486453293,57.2834138112175],[-127.53625570196695,57.283554881584145],[-127.53644535459291,57.283701761003584],[-127.53661348115607,57.28385561894224],[-127.53678069834042,57.284012850571365],[-127.53694594841473,57.284172347227745],[-127.53710504774195,57.284334157977334],[-127.53725283310554,57.284498343392926],[-127.53738401784405,57.2846627233732],[-127.53749661665648,57.284829563393245],[-127.53758540440353,57.28499780371667],[-127.5376214908112,57.28517226755381],[-127.53760081479138,57.28535524472039],[-127.5375386044098,57.285537588000786],[-127.53745229385929,57.28571460856891],[-127.53734482379622,57.2858817875974],[-127.53719660547694,57.28604271794852],[-127.53702534865283,57.286198312904204],[-127.53684780278361,57.28635286029697],[-127.53668388864313,57.28651061087458],[-127.53653274059381,57.28667605912663],[-127.53637739547646,57.286840435327235],[-127.53620184588564,57.28699271631772],[-127.53598911187314,57.28712413238193],[-127.53573599857961,57.28723247861392],[-127.5354637551818,57.287329837690194],[-127.53517666758422,57.28741952251779],[-127.53487996104005,57.287502592893006],[-127.53457690862903,57.287582373653606],[-127.5342717179608,57.28766105765655],[-127.53396969242523,57.28774082497609],[-127.53367295239707,57.28782277190076],[-127.53335594682012,57.28789150231211],[-127.53305476715266,57.28796677331242],[-127.53283755142584,57.28809038907816],[-127.53270740448126,57.28826231374113],[-127.53252862239667,57.28841238538559],[-127.53228975329893,57.28853961658],[-127.53203408265476,57.28866255938898],[-127.53176119444588,57.288770007847184],[-127.5314717424352,57.28885298562806],[-127.53116324752106,57.28890143192424],[-127.53083704243696,57.288922057478445],[-127.53049985961283,57.28892823643573],[-127.53015943716701,57.28893108912033],[-127.52982356934244,57.28894397742027],[-127.52950209715935,57.28897911834792],[-127.52919752737262,57.28904769348443],[-127.52890202056503,57.28913522043387],[-127.52860646758097,57.28922162617423],[-127.52829972913283,57.28928798233964],[-127.52797950612485,57.28932871029044],[-127.5276535926386,57.28935717197241],[-127.52732430500595,57.289378945718326],[-127.5269917777215,57.28939739315252],[-127.52665914397984,57.28941359883685],[-127.52632760076588,57.28943091204924],[-127.52599831174255,57.28945268246666],[-127.52566902234412,57.2894744520573],[-127.5253397325706,57.28949622082138],[-127.52501039770404,57.28951686820831],[-127.52468115189822,57.28953975586994],[-127.52435195039672,57.28956376325641],[-127.52402053890204,57.28958443229048],[-127.523688097594,57.289605112451824],[-127.52336001370077,57.289631346487184],[-127.52303870843572,57.28967095379317],[-127.52272758241632,57.289731742412194],[-127.5224330849653,57.28981924287302],[-127.5221674622045,57.28992770775373],[-127.52191667909949,57.290043847315275],[-127.52167131473949,57.29016552884902],[-127.52143338340383,57.29029160794075],[-127.52120288508394,57.29042208463223],[-127.5209819119482,57.29055693469253],[-127.52077041942657,57.29069503761767],[-127.52056631538048,57.29083641771994],[-127.52036747966525,57.2909799785506],[-127.52017397348894,57.291126840495856],[-127.5199867372186,57.29127475053676],[-127.51980275492632,57.29142598580367],[-127.51962395193434,57.29157716078285],[-127.51945141898085,57.2917293839266],[-127.51929471097102,57.291888149894746],[-127.51915268145713,57.29205010881802],[-127.51901487454153,57.29221426081516],[-127.5188137668839,57.29237914597485],[-127.51881051825771,57.29274128971089],[-127.51880211318178,57.29292187962952],[-127.51879372463205,57.29310246938148],[-127.5187894708308,57.29328301126243],[-127.51879249033503,57.29346346891762],[-127.51880689017962,57.293642673700475],[-127.51883571469125,57.293819469270744],[-127.51888219169346,57.2939960603744],[-127.51896386803693,57.29417000157453],[-127.5190776833769,57.29434244933861],[-127.51921219641774,57.29451353615295],[-127.51935393968179,57.29468341801247],[-127.51949050300536,57.294853359784575],[-127.51961044445122,57.29502349409102],[-127.51970129752381,57.29519284438875],[-127.5197496331733,57.295363808530986],[-127.51974917874901,57.29553533818653],[-127.51971867740096,57.29570833718933],[-127.51966538591505,57.295882721411274],[-127.51959345570738,57.29605844271061],[-127.51950384362655,57.29623324781596],[-127.5193996829162,57.296408221456865],[-127.51928511382252,57.296582194550325],[-127.51916005844303,57.29675404689417],[-127.51902977590508,57.2969248386077],[-127.51889417705459,57.29709232855576],[-127.51875842677711,57.29725645689888],[-127.51861845097844,57.29741839189453],[-127.51846899030647,57.297577073355214],[-127.51830910406771,57.297734754290396],[-127.51814082358686,57.29789029006679],[-127.51796517847374,57.29804366873158],[-127.51778218527735,57.29819489006216],[-127.51759499413677,57.29834503864596],[-127.51740253081665,57.29849300581832],[-127.51720685468932,57.298638767728164],[-127.51700905655831,57.29878343281751],[-127.51680804561185,57.29892589261736],[-127.51659752139554,57.29906397782535],[-127.51637748387856,57.29919768839429],[-127.51615215746088,57.29932921758651],[-127.51592158658943,57.299459685936775],[-127.51568993996065,57.29958904523419],[-127.51545829176344,57.299718404135874],[-127.51522876251643,57.29984885921691],[-127.515004519087,57.299981494979455],[-127.51497511855261,57.29999977186624],[-127.51478661905449,57.300117420312226],[-127.51457717174597,57.30025661088638],[-127.51437087318456,57.300396885839575],[-127.51416573609906,57.300540510287234],[-127.51396371995858,57.3006840983825],[-127.51376491360156,57.300829891269125],[-127.51357133216342,57.30097674462723],[-127.51338302007879,57.30112577904556],[-127.51320099598283,57.30127586171677],[-127.51302627310208,57.301426980978064],[-127.51285994227493,57.30158024535356],[-127.51274388214823,57.30174414043128],[-127.51270534996719,57.301925078420126],[-127.51267309039166,57.30210706514688],[-127.51260846347444,57.302284940901515],[-127.51253653312537,57.30246177979728],[-127.51246980098776,57.30263855872148],[-127.51242385837296,57.30281621895831],[-127.51241733629413,57.302992303520114],[-127.51248658925753,57.30316751423642],[-127.51257872616426,57.303343582100496],[-127.51262621566525,57.30352016489055],[-127.51262783893321,57.30353472019889],[-127.51263954392883,57.30369938386278],[-127.51264045891197,57.30387986711178],[-127.51263614707167,57.304059289591365],[-127.51263809190004,57.30423976101472],[-127.51264934414476,57.30441900403684],[-127.51266271720384,57.30459934370462],[-127.51266671076742,57.304778670497974],[-127.51265092631819,57.30495710434666],[-127.51260395188068,57.30513477685538],[-127.51254762501681,57.305312557225115],[-127.51250692318344,57.30549127848122],[-127.51248702927563,57.30567088087237],[-127.51247648730215,57.30585037543947],[-127.51246597298758,57.30603099079314],[-127.51244500433147,57.306209484562345],[-127.51240633312729,57.306387061401686],[-127.51234174209402,57.306566058206705],[-127.51224787491674,57.30673978714093],[-127.51211505172179,57.30690051215759],[-127.51185901587166,57.30701893514569],[-127.51160074119117,57.30713289910031],[-127.51133920893075,57.30724353682894],[-127.51108939783623,57.307361886567094],[-127.51085128015355,57.307486827620664],[-127.51061740254795,57.307613961567746],[-127.51038568851376,57.30774331234331],[-127.51015821454762,57.30787485605147],[-127.50993598292406,57.30800746009458],[-127.50971801907825,57.30814337788222],[-127.5095116600841,57.30828364608072],[-127.50943393583835,57.30834059467422],[-127.50931482945336,57.3084282886408],[-127.50912543406041,57.30857732969008],[-127.50891938042483,57.30872544101945],[-127.50871652026566,57.30887575745776],[-127.50855230480968,57.3090312345499],[-127.50846013688621,57.30919597264331],[-127.5084493813845,57.30937098528981],[-127.50848874650217,57.309552148063645],[-127.50853684090738,57.30969173037572],[-127.50855211755878,57.309736398021975],[-127.5086144426066,57.309920660014406],[-127.50864852065047,57.31009964147569],[-127.50862726635374,57.31027141176915],[-127.5084920291857,57.3104243134323],[-127.50826163069013,57.310561492929935],[-127.50801874288985,57.310697694518076],[-127.50781461748835,57.310842418763706],[-127.50773669194798,57.3108948843568],[-127.50760213956467,57.31098611760376],[-127.50742215007772,57.31113729034358],[-127.50731438861887,57.311302206992416],[-127.50723605397624,57.311475754123066],[-127.507170267395,57.31165139921999],[-127.50711499652455,57.311830286739735],[-127.50707115552251,57.31200904294077],[-127.5070367396188,57.312189933038646],[-127.50700958374688,57.31237073974522],[-127.50698966040797,57.31255034229672],[-127.50698007657013,57.31272870500437],[-127.5069829976024,57.31290804516783],[-127.50699734937118,57.313087254042344],[-127.5070179150903,57.31326639155671],[-127.50704269547523,57.313446601763424],[-127.50706741525964,57.31362569160415],[-127.50708804243251,57.313805949573016],[-127.50710237841672,57.31398515875679],[-127.50712936919184,57.3141687069287],[-127.50715951144568,57.31435334000573],[-127.50714888120172,57.31453171501102],[-127.507053570313,57.31469648873288],[-127.50688816027417,57.31484861456663],[-127.50668300585555,57.31499447013958],[-127.50646739351612,57.315138203307434],[-127.50626855509238,57.315286227877124],[-127.50611468675481,57.3154415834876],[-127.50602682349046,57.31561075535665],[-127.50598918728434,57.315789440403414],[-127.50597251367913,57.315972369179896],[-127.5059485180292,57.316154260941595],[-127.50588794579211,57.31633096713092],[-127.50579085728639,57.31650360808605],[-127.50567922892878,57.31667641585583],[-127.50556963238736,57.31684807913728],[-127.50548189600454,57.3170206125799],[-127.50543474085188,57.317194922500555],[-127.50542925847974,57.31737211751413],[-127.50544977497441,57.31755013531136],[-127.50548904593758,57.31772905901491],[-127.50553868596909,57.317907863747806],[-127.50559046433658,57.31808776504426],[-127.50563699799321,57.31826660545046],[-127.50567209976845,57.31844557706709],[-127.50569480006118,57.31862581211948],[-127.50571437659157,57.318806083046546],[-127.50573810755056,57.31898630632025],[-127.50577316627292,57.31916415743005],[-127.50582896916076,57.31934064938486],[-127.50590237584407,57.31951581820534],[-127.50598418023097,57.31969313280945],[-127.50607735730468,57.31986919575884],[-127.50618495950557,57.3200417298053],[-127.50631305271317,57.32020730199708],[-127.50646261222893,57.32036365889041],[-127.50666430989712,57.320498116182854],[-127.50693253709878,57.32060714506319],[-127.50721823692167,57.32071148833657],[-127.5074702033578,57.32082967171002],[-127.50766701537592,57.32097203136711],[-127.50784133327058,57.32112361801602],[-127.50800341035952,57.32128095062371],[-127.50816043674105,57.32144170440316],[-127.50832251649464,57.32159903665724],[-127.50851028953113,57.32174934678835],[-127.50872377266859,57.32189263449267],[-127.5087978459661,57.32205770474641],[-127.50876970535573,57.32223964569275],[-127.50875302563516,57.322422575968055],[-127.50880676973988,57.322599091007966],[-127.50888850564989,57.32277416307158],[-127.50899606783136,57.32294557482357],[-127.50915098360085,57.32310523093805],[-127.50938022574375,57.32325282097913],[-127.50945635381512,57.323443652682606],[-127.5095146069013,57.3235763930043],[-127.50941695667603,57.32376137615461],[-127.50924671366818,57.323923651197696],[-127.50901657481822,57.3240428920798],[-127.50875141293213,57.32414347661353],[-127.50743146327552,57.324849242317235],[-127.50720126725925,57.32491466798588],[-127.50686979307395,57.3250204946993],[-127.50643640320177,57.325151033643],[-127.5060514247293,57.32532361719464],[-127.50571889676134,57.325429453053424],[-127.50539586984404,57.32556544867345],[-127.50519364415288,57.32570790556758],[-127.50496379109782,57.3258349836464],[-127.50471381106942,57.32595220223938],[-127.50445320455911,57.32606393669586],[-127.50418515693615,57.32617127153512],[-127.50391391155308,57.3262764002735],[-127.50364269219023,57.3263826492419],[-127.50337573125381,57.326491091049256],[-127.50311723880682,57.32660391969213],[-127.50287144727648,57.32672220784669],[-127.50264477661503,57.32685148755792],[-127.50243621297184,57.32699177053613],[-127.50224033366788,57.327137513462425],[-127.50205186495833,57.32728653456596],[-127.50186337815703,57.327435555607096],[-127.50167490650519,57.32758457620537],[-127.50149901458171,57.32773681589286],[-127.5013241683705,57.32788904338397],[-127.50113357069633,57.328036966434915],[-127.50093127195672,57.328178296453245],[-127.50072372527653,57.32831856507505],[-127.50051199436709,57.32845776011207],[-127.50024528583437,57.32867942346148],[-127.4999116904058,57.32873256498113],[-127.4996015914556,57.328722655679584],[-127.49933232505248,57.32861474365582],[-127.49906471441555,57.3284956012195],[-127.4987590908148,57.32844079494459],[-127.49843252425204,57.32840864904345],[-127.49809904660734,57.32838555000681],[-127.49776069132993,57.3283703534741],[-127.49742271528434,57.328365241614904],[-127.49708830353484,57.32837129919062],[-127.49676264157648,57.32838846708215],[-127.49644828995469,57.32842904821416],[-127.49614126850231,57.32849757242624],[-127.4960086738831,57.32853495911323],[-127.49584113750886,57.328582833815894],[-127.49554426166489,57.3286714207027],[-127.49524931381099,57.32875662165277],[-127.4949596548773,57.328844003874316],[-127.49467329492794,57.32893583225925],[-127.49438899465505,57.329027636556724],[-127.49410154094797,57.32911835503529],[-127.49380975510935,57.32920463780211],[-127.49351363721149,57.329286484827456],[-127.49320548539947,57.32935277275317],[-127.49287964259749,57.32939235488741],[-127.49254976650536,57.32938153275893],[-127.49231526665216,57.32925863680309],[-127.4921142262029,57.3291140592187],[-127.4918552080376,57.32900153112799],[-127.49161045576093,57.328882113836734],[-127.4912263200801,57.32862638535919],[-127.49279492736989,57.33272746266905],[-127.49142463450585,57.33378230006058],[-127.48945481112614,57.335297973523225],[-127.48355012292598,57.33838733073836],[-127.47032426889281,57.346410751378855],[-127.46081689965219,57.352283836168795],[-127.45710622209509,57.357751225598086],[-127.45680116303654,57.36095650473165],[-127.45503889442125,57.36490442429749],[-127.45414292351799,57.36942572498322],[-127.45895157123165,57.37377618342823],[-127.46088574674089,57.37472334474147],[-127.46681441090709,57.38072037207297],[-127.46977420894265,57.38663381893392],[-127.46476515292852,57.39130884512785],[-127.4544213449213,57.394840948651535],[-127.44410172791332,57.396093799621106],[-127.43466796058573,57.395506471212876],[-127.43362876801868,57.395751005092535],[-127.4252276582951,57.39777071008003],[-127.41528844232333,57.40090066794012],[-127.40678336769125,57.402642257721716],[-127.39524257294026,57.405563581125904],[-127.38982812150158,57.408006696154374],[-127.38878397828788,57.40847515094049],[-127.37810598068816,57.414919661450796],[-127.37553018356707,57.42008593296626],[-127.37201421014947,57.42566559064852],[-127.37068236389408,57.42698897353644],[-127.36304168596244,57.42963353891296],[-127.35482437789993,57.43080367949389],[-127.34154265099268,57.43577414589991],[-127.33331131167024,57.43653945947875],[-127.32491399026097,57.435539005019486],[-127.31099878513788,57.43743631630496],[-127.30594209855715,57.441540637666826],[-127.30423885486641,57.444580129703624],[-127.30265809448603,57.45151102290218],[-127.30182424310057,57.45864981246057],[-127.30424354990421,57.464796743078864],[-127.31166262630224,57.47146801468316],[-127.31709896535719,57.47570114480017],[-127.32252538881083,57.479584368297274],[-127.3206045645928,57.485774648197136],[-127.3134834128346,57.48858152950506],[-127.30469919859966,57.489063454750195],[-127.29851077259951,57.49117859688963],[-127.29942847846857,57.493447808737756],[-127.30051800469526,57.49429813673572],[-127.30184543602711,57.49599821429798],[-127.30658784753167,57.501718729137195],[-127.31381979387183,57.505656275728455],[-127.31848625997226,57.50560968657789],[-127.32342388492033,57.50744384449677],[-127.32333405109125,57.51122099375495],[-127.32335712710581,57.515212296363295],[-127.32525659674558,57.51817118377924],[-127.32668913648418,57.519744432824034],[-127.32688108986014,57.52568949469381],[-127.32473058133806,57.53136212637584],[-127.32175914567921,57.54126781521603],[-127.31952989314087,57.547909973630546],[-127.32035430509185,57.55373224968631],[-127.32209110893206,57.55485406252958],[-127.32665717039708,57.558073362438094],[-127.33064773032255,57.56322690588386],[-127.32921219323899,57.56478423457523],[-127.32168426898049,57.56851066614314],[-127.32177898227852,57.57146988137731],[-127.323235337901,57.57706168941749],[-127.32032337603644,57.57908222968634],[-127.31648242253952,57.578609266569785],[-127.31113957762554,57.577747450994565],[-127.30340059171144,57.57838020662638],[-127.29800288153275,57.57911510087698],[-127.2893002725742,57.57954120812669],[-127.2870607148257,57.57932982615537],[-127.28573920010098,57.57780879705128],[-127.28065882920401,57.57853091977954],[-127.2771991635435,57.58004449821779],[-127.26954826246188,57.58011826028694],[-127.26624911188222,57.58003331856003],[-127.26230670416086,57.57966739957952],[-127.25788853737288,57.58119859271968],[-127.25406544333285,57.58482300315107],[-127.24777322257529,57.587681277283096],[-127.23971070554921,57.58820569131386],[-127.23545108664239,57.588012371606446],[-127.23101914923461,57.589085309913195],[-127.22725368491116,57.59116553524993],[-127.22072205031414,57.593280209572804],[-127.21593096093832,57.592974552742476],[-127.20924057517949,57.593322998578216],[-127.20334746531591,57.59548478124855],[-127.19797729182146,57.597291724033724],[-127.19422113811814,57.59978354194542],[-127.18860349941998,57.604112952952825],[-127.18307783973911,57.60438678658981],[-127.17644834708496,57.603127353992676],[-127.17344184160922,57.60206869752562],[-127.16823412671393,57.5984550356495],[-127.16460493629317,57.594208352709806],[-127.1605803306986,57.59086206798423],[-127.15900833713809,57.58790680136121],[-127.1553657826858,57.58308596518248],[-127.15101885523241,57.579634621024645],[-127.14696473254982,57.57522083481158],[-127.14450062033478,57.574497715379735],[-127.13886494549097,57.57048311174493],[-127.14135564921276,57.564523616898136],[-127.14313454203077,57.5596017828053],[-127.14366825342624,57.555767098683276],[-127.14356211379764,57.552000757602784],[-127.14010010990627,57.54963581452819],[-127.13847060999296,57.548277529209976],[-127.13889133643818,57.54421964129771],[-127.14206755541638,57.54002134063379],[-127.14497525559315,57.53771787536399],[-127.14556546735196,57.53594575375775],[-127.1434812213006,57.53356000468341],[-127.13845467236796,57.53206072493108],[-127.12667737270188,57.53238607143942],[-127.11066544304457,57.532961350660834],[-127.10462339821142,57.53335291793936],[-127.09762445770087,57.533572784096],[-127.09041751431147,57.533973385732374],[-127.08373974903405,57.534360277317866],[-127.07788110254118,57.53360999848867],[-127.0771145889834,57.53270138317298],[-127.0745118692942,57.53055202445347],[-127.07155583658565,57.52275483347207],[-127.06982671245207,57.51739628894098],[-127.06694870770525,57.51279149501147],[-127.05958082654729,57.51073418430188],[-127.05032553859948,57.50983060072434],[-127.04234052322143,57.508629323844495],[-127.0354622480274,57.50936517443633],[-127.03071838580301,57.51054142046647],[-127.03081938471725,57.51476508593862],[-127.0283757945937,57.519008634172025],[-127.02169311181473,57.52344649975712],[-127.01552601529545,57.52737778808587],[-127.01265170953396,57.53139118780228],[-127.00970456374209,57.53701059105032],[-127.00182704853863,57.54060453480857],[-126.99147011307203,57.54267394162047],[-126.97800743202565,57.54361751695681],[-126.97268056460304,57.54291243955368],[-126.96542563647941,57.54125259179268],[-126.95539764760376,57.539199876980156],[-126.94667279942993,57.53828512193315],[-126.9357591613292,57.53926885801605],[-126.93088366916814,57.53969798699769],[-126.92549809307573,57.54098258382283],[-126.91798924229049,57.542461130834454],[-126.9128011147506,57.54312496121678],[-126.90532754471354,57.54625286625853],[-126.90337542864232,57.54928885655163],[-126.90054249343568,57.55107514771666],[-126.89232177936435,57.554099785622434],[-126.88311541084217,57.55574924911296],[-126.87515159889115,57.555963732383205],[-126.86498017132989,57.557107075978074],[-126.85681832976317,57.558012375686936],[-126.85077735687578,57.55873310361509],[-126.8421916425966,57.5596940419288],[-126.8336142880468,57.561102825996336],[-126.82983320559656,57.5634676025849],[-126.82734408895477,57.56650584396916],[-126.82439699761647,57.5681207970846],[-126.82080484418918,57.56917463503016],[-126.81762182924628,57.56947242753179],[-126.80636841678023,57.570043900864114],[-126.79334181451459,57.57240098037057],[-126.78625996786052,57.57443449794297],[-126.78386589681219,57.57589725816288],[-126.78353332710809,57.576101039157315],[-126.78347186466257,57.576214640269775],[-126.78336493878766,57.57650677446503],[-126.78335004938572,57.5766974589404],[-126.78336066082541,57.5768061479477],[-126.78295065474317,57.57690724064916],[-126.78280192405191,57.57694736262949],[-126.78246859960122,57.57711526858486],[-126.78182377997733,57.577445343010716],[-126.78144995347256,57.57767851312741],[-126.78135009543074,57.57780691553585],[-126.7812783885922,57.57788021477554],[-126.78104647010068,57.57789391910681],[-126.78077694798282,57.577910087633136],[-126.78070479461239,57.57791051413693],[-126.7805908146791,57.577912308955014],[-126.78017154046277,57.5779192707921],[-126.77944376299368,57.57792917336668],[-126.77905915801766,57.57799534826544],[-126.7789826399382,57.57808885540494],[-126.7789854036943,57.57817292570796],[-126.77890192412012,57.578284412346854],[-126.77863375357657,57.5784171686208],[-126.77826810267372,57.578540408375225],[-126.77796991512817,57.57863858436554],[-126.77782030203798,57.57868767516626],[-126.77766620301746,57.57877266917266],[-126.77734058880908,57.57896181879165],[-126.77706284494086,57.57913835329747],[-126.77689764455137,57.57929516568225],[-126.77674485236041,57.579342031658335],[-126.77655680494011,57.57940480091165],[-126.77635574251774,57.579495675285976],[-126.77623873773183,57.579553541883485],[-126.77609778387823,57.579617154875656],[-126.77580854527055,57.57974442346933],[-126.77547127984877,57.579875336868966],[-126.77516148663864,57.57996909004551],[-126.77500984160798,57.580021553062366],[-126.77480339705535,57.58010572972666],[-126.77462715331221,57.58018300202573],[-126.77445428372945,57.580271465868705],[-126.77433217312047,57.58033608765995],[-126.77417206489447,57.580435687890066],[-126.77397689239314,57.58055903767516],[-126.77379393256992,57.5806666194466],[-126.77358229751704,57.580803518975635],[-126.77357752804902,57.58092911644196],[-126.77367189975588,57.58104292171437],[-126.7737788829717,57.581210468590136],[-126.77381270709867,57.5813302342487],[-126.77381203054604,57.58145132318245],[-126.77387153123374,57.58154739413299],[-126.77393970534155,57.58160753721286],[-126.77405049444609,57.58170554990543],[-126.77422752244979,57.58171796631978],[-126.77446513961954,57.58172554264798],[-126.77481889238642,57.58173467970337],[-126.77499690636904,57.58174372583276],[-126.77498908074094,57.58187270488841],[-126.77487303442183,57.58197877451225],[-126.77451954492436,57.58208511530696],[-126.77453286677569,57.582173608678666],[-126.77454221706614,57.582273336925304],[-126.77456137840545,57.5823920673435],[-126.77462179810608,57.58253297900616],[-126.77470450282097,57.58263900405384],[-126.77482621442046,57.582759375334156],[-126.77488659702676,57.58284759268442],[-126.77492431225814,57.582952760374646],[-126.77494540676112,57.583063631365924],[-126.77495192653414,57.583177951346016],[-126.77496672251246,57.58328773814836],[-126.77500641583772,57.583387288459654],[-126.77506270757453,57.58348001442656],[-126.77512527546229,57.58357270355239],[-126.77517484986895,57.583694619057965],[-126.77519792239589,57.58385144603781],[-126.7752122086413,57.58398702255729],[-126.77523157863072,57.584167415666776],[-126.77523197665585,57.58439164539706],[-126.77511972651357,57.58463223243475],[-126.7750396724597,57.5847078198949],[-126.77497046755941,57.58480240339911],[-126.77497317008678,57.584934684529756],[-126.77505363772207,57.58513490028557],[-126.7751278826694,57.58528694260672],[-126.77515999594112,57.58537420476765],[-126.77512456093493,57.58548316534923],[-126.77507408494324,57.58562360670396],[-126.77506377656537,57.58578511447616],[-126.7751127574051,57.58592945698892],[-126.77517206164354,57.58606701195765],[-126.77520726966686,57.58620246599228],[-126.77524429462704,57.58637602889712],[-126.77527014857172,57.58656647481708],[-126.7754316775184,57.5865868289003],[-126.77568468097493,57.58662906898362],[-126.77586644414295,57.58666724233882],[-126.77619549942575,57.58674491200615],[-126.77661587699698,57.58683774034478],[-126.77709757604316,57.586911146901684],[-126.77760021515026,57.58698442846812],[-126.77805244098012,57.587099488105665],[-126.7783897618794,57.5872230714261],[-126.77859748389324,57.58725099765336],[-126.77876352607015,57.58723656502122],[-126.77903047361549,57.58729553403381],[-126.7794845870423,57.5873489136855],[-126.7799650302774,57.58736065326378],[-126.78027411738488,57.58738237257219],[-126.78051973806114,57.58747285716648],[-126.78073215499896,57.587525417944846],[-126.78091649717294,57.58753554008129],[-126.78121550242487,57.58762682901055],[-126.78143024432549,57.58769058658562],[-126.78164971754317,57.587729650197204],[-126.78192359446791,57.587769512633685],[-126.78208041852545,57.58781455214053],[-126.78217515396048,57.58789359402801],[-126.78232695082686,57.58799920594349],[-126.78253735982908,57.588106712876],[-126.78268522535618,57.588174228065604],[-126.78286980606892,57.588246010204294],[-126.78300367153032,57.58829454819252],[-126.78317625564593,57.58839330899863],[-126.78341732654874,57.58856678163151],[-126.78355791495966,57.58868703385827],[-126.78363522738017,57.58878299561954],[-126.78374111821591,57.58889448414969],[-126.78386728994928,57.58897558078398],[-126.78405652478985,57.589069757075535],[-126.78432822303863,57.58920604793223],[-126.78454696066918,57.58931013891168],[-126.78467748240745,57.589399057160826],[-126.78477817286279,57.58946124447443],[-126.78494490141429,57.58952976639554],[-126.78524764238003,57.589649053511245],[-126.78560108151129,57.589790461867366],[-126.7859072446729,57.58987272863426],[-126.7862691512773,57.58991766443675],[-126.78668179216946,57.589988084048684],[-126.78691331838223,57.59005285421317],[-126.78706973139327,57.59012816197723],[-126.78730867634306,57.59024782452925],[-126.78759308183201,57.59038963906046],[-126.78785746414285,57.590524845397496],[-126.78801401039966,57.590556425712855],[-126.78821731679642,57.590572030527156],[-126.78850409492095,57.59062637782256],[-126.78883768149159,57.59071856480007],[-126.78919129536851,57.59081735834605],[-126.78934748274212,57.590881453164265],[-126.78960195400875,57.59099204960584],[-126.79006099882466,57.591028546418976],[-126.79059823206879,57.59095133564944],[-126.79105652012133,57.59100128757337],[-126.79153511289482,57.59117220265699],[-126.79208551417786,57.59132474686461],[-126.79256155474644,57.591473250218435],[-126.79275564789874,57.591548325422025],[-126.79256214937506,57.59165151281291],[-126.79236381588409,57.59172445730289],[-126.79221733937968,57.59182511985434],[-126.79219698479966,57.59200238693297],[-126.79222348971574,57.592219735253586],[-126.79215898208057,57.592437629293734],[-126.79214288964398,57.59256890286288],[-126.79217699351061,57.59264830160002],[-126.79227631425785,57.592794579620914],[-126.79231077658886,57.59289191494764],[-126.79238171730971,57.59308208882372],[-126.79244617817857,57.59316242665603],[-126.79254315112073,57.59329638574135],[-126.79252132097369,57.59345348085367],[-126.79234288054967,57.59362721161449],[-126.79224938861522,57.59376007061684],[-126.79217444772559,57.59387936427146],[-126.79211389649647,57.593986238726735],[-126.79205122897953,57.594092004675],[-126.7919607650057,57.59421923949902],[-126.79186623903703,57.59435322565658],[-126.79180975425872,57.59445446977141],[-126.79171179245422,57.59457390117018],[-126.79156539849987,57.59462859456401],[-126.791429263052,57.59467425696284],[-126.79129627449882,57.59471990037652],[-126.79097642978148,57.594786843439614],[-126.79079023490146,57.59484065304226],[-126.791136106645,57.594967517701036],[-126.79126913222348,57.59502390106569],[-126.79152074701274,57.5951468444536],[-126.79162693460624,57.595321111551],[-126.79161695312153,57.595444500551885],[-126.79161174182948,57.59559589035857],[-126.79160858624236,57.595645240954866],[-126.79159940188649,57.595756292290254],[-126.79158500092832,57.595868496060966],[-126.7915853653515,57.59598621726692],[-126.7916152374132,57.596113852297215],[-126.79167297765419,57.59622338157293],[-126.79174646833829,57.596335058818106],[-126.79182214575002,57.59645120763618],[-126.79186471674484,57.596535040719836],[-126.79205798274447,57.5966695447252],[-126.79235679778914,57.596847141499296],[-126.79248478776286,57.59706276102744],[-126.79249648535429,57.597221897944856],[-126.7926110613905,57.59729632960498],[-126.79272566131161,57.59737188220712],[-126.79288181139705,57.59748306308502],[-126.79304764592989,57.59760651862493],[-126.79317193125267,57.59769434569712],[-126.7933053446639,57.59776866373779],[-126.79350109596864,57.59787175796382],[-126.79372320376628,57.59798366303446],[-126.79388803401861,57.59805891299449],[-126.79403170262592,57.59812307813363],[-126.79427883266894,57.5982303472516],[-126.79447159697179,57.598289732121366],[-126.79459316755498,57.59834842363356],[-126.79472463425073,57.59842947909136],[-126.79482971519656,57.59849948134638],[-126.79494194837729,57.59856159225205],[-126.79508061540052,57.598636998174534],[-126.79527108187962,57.59873675817662],[-126.79546735740047,57.59881405937668],[-126.79585969253651,57.59870854873203],[-126.79602768282447,57.5986851133518],[-126.79621248349102,57.59871427187867],[-126.79647485889724,57.59874968970194],[-126.79659753091804,57.598760162088944],[-126.79705044525473,57.59879891479842],[-126.79772470134425,57.59881278526558],[-126.79827181640967,57.59880275442017],[-126.79876130225826,57.598888369898646],[-126.79922371718277,57.59893042130144],[-126.79941870189135,57.59894605962657],[-126.79960891918338,57.598984150105345],[-126.7999533119236,57.5991861205787],[-126.80000011062484,57.59922171504544],[-126.80057456660687,57.599663344859394],[-126.80109552615355,57.599999905709666],[-126.8014743460407,57.60024538988941],[-126.8022420157942,57.600666781080996],[-126.80266162933283,57.60091089327436],[-126.80291551440548,57.60108761905768],[-126.80307079029635,57.601204399772755],[-126.80318505669102,57.601312460098875],[-126.80336444921252,57.601480668350064],[-126.80363865104592,57.60172678273812],[-126.80394314850928,57.601970469981744],[-126.80416188602815,57.6021182566424],[-126.80405977928383,57.602436172929586],[-126.80393299736282,57.602824873934736],[-126.80379614467996,57.603231575146324],[-126.80371075251793,57.60354826861361],[-126.80367508615323,57.60379178269808],[-126.8036546762894,57.60391523720198],[-126.80360867413093,57.60401642361194],[-126.80355596480682,57.6040974694495],[-126.80354077400743,57.60412110670457],[-126.80352057015135,57.6042053184659],[-126.8034669409877,57.60429197580078],[-126.8033390834914,57.60443290123214],[-126.80327797684153,57.60451287683595],[-126.80335228765618,57.60461108956212],[-126.80354262780337,57.604850987570074],[-126.80377308942833,57.605106338002855],[-126.80398446357664,57.60515326344675],[-126.80420348175058,57.605214717478134],[-126.80448831589888,57.60531949686883],[-126.80480504868191,57.605447626370896],[-126.80505228075,57.605555997105505],[-126.80528579795657,57.605658845019065],[-126.80552316237885,57.60579530472412],[-126.80566925904702,57.60587289742255],[-126.80579294063381,57.605930445238464],[-126.80598554762541,57.60597972434803],[-126.80609884179471,57.605991366516236],[-126.8061796356017,57.60600096444601],[-126.80635066779747,57.60602010254094],[-126.80651671551294,57.60610093618418],[-126.80668826768635,57.60619406910721],[-126.80694291616862,57.60630575474461],[-126.80725966548616,57.60643387848107],[-126.80746390854485,57.6065873549871],[-126.80751308736687,57.60673393031045],[-126.80760005167079,57.60683654839513],[-126.80775772554244,57.60691631055237],[-126.8078985896304,57.606993932897915],[-126.80812124739332,57.607127114533405],[-126.80836038981846,57.60724786191874],[-126.80855925971613,57.607345310263305],[-126.80875884810035,57.60747638963015],[-126.8088444080466,57.607659741289254],[-126.80882250777647,57.607859447192716],[-126.80886803312922,57.608030710776454],[-126.8089903653157,57.60817123216562],[-126.8091095500671,57.60831177273122],[-126.80918723039723,57.6084200527532],[-126.80925732966926,57.608516046052145],[-126.8093269099565,57.60858849748345],[-126.80941532330532,57.60865971237235],[-126.80950903376703,57.608734258343425],[-126.8096211760411,57.608838963537735],[-126.80985458087221,57.60898440986834],[-126.81000457400897,57.60904739876457],[-126.81026777736585,57.609068209487205],[-126.81042981218269,57.609058246613756],[-126.81066907797738,57.60903659799941],[-126.8108718693411,57.60902302104765],[-126.81103212224343,57.60902764386247],[-126.81123252545481,57.60904883796599],[-126.81139768505115,57.609087065992576],[-126.81157837921988,57.609165561363916],[-126.81185253848238,57.609209846718905],[-126.8121969102619,57.60915951994841],[-126.8125436387953,57.60912151090793],[-126.81284955720625,57.60913308438688],[-126.81319139954068,57.60916013286102],[-126.81350386316201,57.60918399768361],[-126.81365802216463,57.60919650317456],[-126.81381254957854,57.60922694530337],[-126.8139807165447,57.60925842445737],[-126.81417407639739,57.6092931118107],[-126.81431931324886,57.609329216542875],[-126.81454431518065,57.609374920361],[-126.81485300433042,57.609417865558555],[-126.81506168881867,57.60943451806795],[-126.81525327223402,57.60943557901384],[-126.81541960725578,57.60943006827422],[-126.81558062807109,57.609421226533335],[-126.81574619740331,57.6094291744271],[-126.81608645847848,57.609431558953176],[-126.816451687797,57.60942594003495],[-126.8167321029527,57.60941972297609],[-126.81696656050052,57.60941827414107],[-126.81714977040349,57.609419384089634],[-126.81751999391238,57.60954827459708],[-126.81782660353926,57.60964055828258],[-126.81807668378569,57.60968385859206],[-126.81832866439164,57.609718177115916],[-126.81851798902268,57.609759610315166],[-126.81865398937848,57.609803615890094],[-126.81881536038847,57.609859797315394],[-126.81898322257202,57.6099249078891],[-126.81913958747319,57.609991210698],[-126.81926645142302,57.610048726613535],[-126.8194197415411,57.61011841174578],[-126.81958923880806,57.61016220874097],[-126.81976898124117,57.61014763985343],[-126.82006778109832,57.61011999902728],[-126.82028266244888,57.610133241314685],[-126.82037649984466,57.610260475217856],[-126.82044483425412,57.6105156836268],[-126.82059252117348,57.610713218521994],[-126.8207893715179,57.61081178281666],[-126.82097182262123,57.61087343679721],[-126.82119701173622,57.61092697667242],[-126.82137612117236,57.61097968129982],[-126.8215665001828,57.61106931512303],[-126.82176698288285,57.61114206793243],[-126.82195472849828,57.611158839828214],[-126.82211293937385,57.61116458317684],[-126.82230970081102,57.61116223816153],[-126.82252629311907,57.61115752707036],[-126.8227664655375,57.611177335185495],[-126.82290684079005,57.61123027884793],[-126.82304735488462,57.61128882748513],[-126.82318878605369,57.611341764284404],[-126.82337115381198,57.611400051952245],[-126.82362737095002,57.61148366680869],[-126.8239610896696,57.61161725200951],[-126.82425961131433,57.61176899502294],[-126.82450974085879,57.61190982725676],[-126.82465689597822,57.61193693929651],[-126.82492158055312,57.61197677219324],[-126.82510112846826,57.61200143920724],[-126.82541196888606,57.61204546783034],[-126.82573546880005,57.61209390144599],[-126.82602133507083,57.612144811832074],[-126.82641120638154,57.61221188944207],[-126.82676399388393,57.61225901627492],[-126.82694125515913,57.61227472552573],[-126.82709540670008,57.61228609433613],[-126.82735434024322,57.612302413219204],[-126.82763644194281,57.61232419254341],[-126.82781054748371,57.61233879919208],[-126.82796157536477,57.61235130775541],[-126.82813358762562,57.612365927090956],[-126.82839237516566,57.61237551767043],[-126.82865728862764,57.61237722095294],[-126.82887216125894,57.61238932826048],[-126.82921285884827,57.6124096156237],[-126.82957669158681,57.61243536292816],[-126.82986278627904,57.61244814286828],[-126.83002894381045,57.612434766520686],[-126.83032701049682,57.61242056150705],[-126.83068817894699,57.61246762527886],[-126.83102540555348,57.61256865615107],[-126.83128879440855,57.61264436292377],[-126.8315491308291,57.6128198751624],[-126.83173658593974,57.612965573090406],[-126.83190426036784,57.61311588005996],[-126.83194410984224,57.613214294909085],[-126.83200571228727,57.613302482050806],[-126.83210986793311,57.61342067374943],[-126.83221826850544,57.61354220226259],[-126.8323209518226,57.61364134268396],[-126.83235518341847,57.61372185362224],[-126.83242648806937,57.61382231274472],[-126.83253870869355,57.61392699898308],[-126.83268375914244,57.613952994276715],[-126.83265432500565,57.61404287576584],[-126.8327303108789,57.61416572930732],[-126.83294442818776,57.61438077233156],[-126.83325655295772,57.61438665383454],[-126.83344364787813,57.61446732220295],[-126.83364171286092,57.61457146638576],[-126.83383356403829,57.61467789188468],[-126.83396955840267,57.61472076096065],[-126.83418631539763,57.61476984754045],[-126.83447336712634,57.61482521730427],[-126.83468446315364,57.614855278369134],[-126.83493791879114,57.614906374434106],[-126.83514111027009,57.61495778754908],[-126.83544262285575,57.615004094263185],[-126.83564278268315,57.615012920068494],[-126.83581898955957,57.61497929129868],[-126.8359914618215,57.614966988762845],[-126.83617486398613,57.614927708003194],[-126.83644994178125,57.6148676653432],[-126.83668045877906,57.614828085778555],[-126.83690945894948,57.614815424281154],[-126.83733523033938,57.61479927384829],[-126.8375629191697,57.61477428629002],[-126.83773753314586,57.614764210306596],[-126.83789697338507,57.614777775525816],[-126.8381544962117,57.614823233651705],[-126.83834554015077,57.6148455675926],[-126.83854685422776,57.61485886649245],[-126.8387563446455,57.614863143587044],[-126.83902983238615,57.614873741429456],[-126.8393269631255,57.614911097489134],[-126.83953133553005,57.61492101186825],[-126.83970289203998,57.61491431631491],[-126.83996178623248,57.614880156783194],[-126.84029226748797,57.614910571561595],[-126.84052119801436,57.61494163118843],[-126.84075419192226,57.61496705856241],[-126.8410639449963,57.61500769407657],[-126.84143170619772,57.61506702015296],[-126.84160446759455,57.61506704168872],[-126.84176929287712,57.61513438577441],[-126.84190670167823,57.615192934624176],[-126.84206197356201,57.61525473317535],[-126.8423077397067,57.615336136706595],[-126.84262906249445,57.615426027884936],[-126.84279057603516,57.61543845282074],[-126.84302723829582,57.61544030754637],[-126.84319571425013,57.61543586952137],[-126.84338324116067,57.61544140059386],[-126.84370749887499,57.61547408901118],[-126.84400928387532,57.61553270781936],[-126.84422202092574,57.615588530988326],[-126.84444288366328,57.61563308986977],[-126.84470183929707,57.61564825367297],[-126.84488586045754,57.61563698694384],[-126.84496769546286,57.61573849362337],[-126.8449398523591,57.61585191331761],[-126.84514379810933,57.61584164009907],[-126.84553306731145,57.61578533324],[-126.84575963558062,57.61566279383688],[-126.84593906876262,57.615633615703544],[-126.84618696815731,57.61557596899161],[-126.8464227051647,57.61553633896707],[-126.84668316190803,57.61552570155292],[-126.84701621319759,57.61548320479513],[-126.84729823286528,57.615500458154166],[-126.8478616647808,57.615459846190504],[-126.84830080947098,57.61529333313532],[-126.84844633977711,57.615199339201645],[-126.84866720521238,57.615243891010216],[-126.84893660252811,57.61530494890947],[-126.84921778421163,57.61533117319497],[-126.84958284765176,57.61531649446208],[-126.84979395000839,57.6153454102632],[-126.85006438758134,57.615359368550195],[-126.85020411797186,57.6152407434136],[-126.85038786000193,57.61526422818446],[-126.8505455402178,57.61529236519684],[-126.85073240487036,57.61526761754659],[-126.85096319278975,57.61519437506347],[-126.85121822492484,57.61512882452113],[-126.8514069553702,57.615093973046825],[-126.85165385756125,57.61508565551939],[-126.85166659295702,57.615186482017926],[-126.85170997788295,57.61539362566547],[-126.85181503211258,57.6155487965195],[-126.85196308073292,57.615661084411116],[-126.85205283075625,57.61574123289619],[-126.85222948203032,57.61586791186617],[-126.85222294722908,57.6159498020941],[-126.85253273737487,57.61599041066678],[-126.85273729119886,57.616054121473525],[-126.85298950126324,57.616142191069954],[-126.85319993410711,57.61618792393134],[-126.85340814751638,57.616228064752136],[-126.85363137099614,57.616283805240776],[-126.85378236946752,57.61634001179463],[-126.8540028998338,57.61641595080078],[-126.85418964467851,57.61647865324359],[-126.85436161605261,57.61653696606785],[-126.85466843917779,57.61663140686584],[-126.85484113854088,57.61667513867109],[-126.85498069216713,57.61673478152231],[-126.85510336965264,57.616788927342],[-126.85537034768993,57.616881381841736],[-126.85555028435735,57.61692058108561],[-126.85583254577836,57.61699387522734],[-126.85606020097448,57.61710676467079],[-126.85616898442771,57.617194635768975],[-126.85634370589018,57.617234988940396],[-126.85648458886705,57.617167925026884],[-126.85671557996082,57.6171036407327],[-126.85707273961049,57.61715514393795],[-126.85711578238677,57.61725241010187],[-126.85718238438173,57.61751209888823],[-126.85718151395791,57.617843982597805],[-126.85709927210014,57.61823581807381],[-126.85701018065299,57.618601910183465],[-126.85699220274536,57.618918208149466],[-126.85704820491424,57.6193113902634],[-126.857111687973,57.619664160386876],[-126.85715432274122,57.61988252031362],[-126.85718128515455,57.6200101636929],[-126.85720993701531,57.62016582643653],[-126.85721009980638,57.620265613277795],[-126.85721662158461,57.62041469225256],[-126.8572308950197,57.62058278160843],[-126.85719918664542,57.62080162367511],[-126.85714171699304,57.62103857218525],[-126.85712864145253,57.62120123286671],[-126.85714611396077,57.62132557429027],[-126.85725279266318,57.62141233736502],[-126.85736353309176,57.621493467959006],[-126.8575221082751,57.621605682245175],[-126.8577190453574,57.621747920300216],[-126.8578183804122,57.62183360939037],[-126.85796925068702,57.62197614596393],[-126.8580622032086,57.62205739145216],[-126.85826867557256,57.62215808196092],[-126.85844809277609,57.62221970529884],[-126.85859620115697,57.62228601655898],[-126.85882515503572,57.62240786334107],[-126.85889177364953,57.62248255204192],[-126.85901032765102,57.62263090353606],[-126.85913241332715,57.62279605023482],[-126.85924453442955,57.62293771607691],[-126.85937162021514,57.623092739182475],[-126.85946672288907,57.623269273180654],[-126.85959261943128,57.62341757656753],[-126.85963898662845,57.62352266946517],[-126.85967132688246,57.623609914089215],[-126.85977110362329,57.62371465972874],[-126.85983714591266,57.623902594694506],[-126.85985903753681,57.624128938134824],[-126.8598898231265,57.624285708326184],[-126.85988882708374,57.62437989704063],[-126.85983005444238,57.62446661293093],[-126.85975004718132,57.624587103380925],[-126.85966333245976,57.62478051653475],[-126.85958161514415,57.624963806217096],[-126.85951238228692,57.62509768114421],[-126.85943282167553,57.62523722925976],[-126.85936550406313,57.625363243163534],[-126.85931770835812,57.625472311916525],[-126.85924362769738,57.62562303653058],[-126.85917175573182,57.625732261687766],[-126.85910276220564,57.62583025592925],[-126.85903046605713,57.62592154428325],[-126.8588967811123,57.6260760195789],[-126.8587626464105,57.62621143695455],[-126.85866047257116,57.62632422230585],[-126.85853589586377,57.62646518350609],[-126.85842469676528,57.62664193677984],[-126.85856928287987,57.62669033180872],[-126.85878619101084,57.62674162070712],[-126.85905946834986,57.62678469455717],[-126.85920626048423,57.62683868067247],[-126.85921402127681,57.62694963099492],[-126.8592076134523,57.627083097780606],[-126.85946048812922,57.627195819029104],[-126.86010894956597,57.62729587658803],[-126.86070877732672,57.62737494434549],[-126.8609452745587,57.62741264763869],[-126.86109448290141,57.627434100596005],[-126.86141903691065,57.627474593319846],[-126.86175629396467,57.627521729802],[-126.86191932889737,57.627552061504836],[-126.8620594114127,57.62758702751161],[-126.86221003376386,57.627624167098666],[-126.86238117504882,57.62764323317893],[-126.86257234893124,57.62766777448499],[-126.86292747068548,57.627717033929876],[-126.863172008952,57.6277389837147],[-126.86335548755436,57.627747877025016],[-126.86357338712915,57.6277957880672],[-126.86384148432008,57.62784112843228],[-126.86405297220539,57.62779153430026],[-126.864221697933,57.62784200799928],[-126.86438916395151,57.62788351994856],[-126.86463750244549,57.62793459396668],[-126.86486753598955,57.627963362798546],[-126.86517264364045,57.62797818545439],[-126.8653697201128,57.62798586580259],[-126.86558458166279,57.62799230823098],[-126.86584126289996,57.62799623407621],[-126.86603407397203,57.628000577695595],[-126.86621434443431,57.628006124396755],[-126.86637995428444,57.62801176689733],[-126.86656260564165,57.6279836608603],[-126.86687711281067,57.62790535655341],[-126.86715958371825,57.62784632234097],[-126.86731780045213,57.62798655881369],[-126.86750413668696,57.62802794309367],[-126.86776825977348,57.62803630127583],[-126.86801682082434,57.62805148840937],[-126.86823832597884,57.62807358004319],[-126.86840316347974,57.62809155853457],[-126.86860060098154,57.62811492882483],[-126.8689177786902,57.6281532092639],[-126.86918119845531,57.62817614515184],[-126.86936183031463,57.62819738231843],[-126.86950202498535,57.62823682467839],[-126.86981897300899,57.62826501347521],[-126.87018468473445,57.62827269864795],[-126.87050124723629,57.62828407000313],[-126.87073719311293,57.62829709263466],[-126.87092909629656,57.62830704122725],[-126.87132501572603,57.628353767136865],[-126.87165031789151,57.628380775298204],[-126.87210772257045,57.62841363893402],[-126.87248556656137,57.62844814712411],[-126.87273158977041,57.628443160145515],[-126.87291584550796,57.628439701644126],[-126.87307983437415,57.628420679548995],[-126.8732677361898,57.62839365078298],[-126.87358096063284,57.62839606703059],[-126.87400687357847,57.628425768454804],[-126.87429962905827,57.62844962153502],[-126.87447281890232,57.628511265026596],[-126.87464088517763,57.628577427081204],[-126.87497289487992,57.62866829254129],[-126.87530345297961,57.62874122719816],[-126.8754569671267,57.62876712046697],[-126.8757499266837,57.628753968598005],[-126.8759940664818,57.62871310883689],[-126.8762042598763,57.628744231923676],[-126.87641541304863,57.62881683364308],[-126.87664046798467,57.62881085713214],[-126.87685763918155,57.628781386783096],[-126.87702242364861,57.62875114226471],[-126.8773154090382,57.628694258974974],[-126.87754379512249,57.62865125839682],[-126.87771088063687,57.628629967548676],[-126.87789829604033,57.62862760236344],[-126.87824942997989,57.628638725716534],[-126.87849486594054,57.62865391397316],[-126.87877210828962,57.62868570881347],[-126.87898137826096,57.62872243976293],[-126.87913083606611,57.62875396187014],[-126.87931173641753,57.628786395984285],[-126.87952224521403,57.628830966431],[-126.87978982455196,57.6288975814175],[-126.88012494734707,57.6289861709103],[-126.88041601044063,57.62907168921176],[-126.88057235336221,57.62912895208277],[-126.88081237012646,57.62918117262054],[-126.88097304628259,57.62919916325029],[-126.88112816526456,57.62920373599485],[-126.88131364530632,57.62920810623853],[-126.88150031139617,57.62921807444908],[-126.88175415627155,57.629234321877455],[-126.88202016987113,57.62932336739299],[-126.88220702467851,57.62938603100833],[-126.88235954819275,57.629459014463386],[-126.88248062930124,57.62953108633266],[-126.88257968452014,57.62960218386117],[-126.88274441664717,57.62970423733028],[-126.88299391522158,57.62980348223961],[-126.88320702498912,57.629869332885704],[-126.88336293109157,57.62990753460013],[-126.88346557341458,57.63004251752308],[-126.88370033349375,57.63022819415564],[-126.88405055912908,57.63024491444313],[-126.8843098581862,57.63022524128002],[-126.88449007134044,57.63027224899239],[-126.8846533289455,57.63031152128286],[-126.88486597318314,57.63035719033042],[-126.88506623421091,57.63041079050961],[-126.88547733680817,57.630612102342404],[-126.8859392201829,57.630879225324506],[-126.88621174855211,57.63097718888231],[-126.88642080885784,57.63095896944425],[-126.88679760937268,57.630992322848826],[-126.88708035675387,57.63103415465641],[-126.88726417195184,57.631056467464965],[-126.88744559447763,57.631065341320465],[-126.88763015052353,57.631074193897554],[-126.88761430830134,57.63115839243904],[-126.88757324438328,57.63137282290253],[-126.88752048441266,57.63157948326836],[-126.88747395838688,57.63169528217118],[-126.8874064767453,57.6318101004416],[-126.8872609587622,57.63199271603343],[-126.88704680667983,57.6321959739661],[-126.88679954760899,57.63237254401763],[-126.886827637513,57.632454205524695],[-126.88666792605129,57.63252255014899],[-126.88655792235241,57.632700442037326],[-126.88657525430052,57.63285954068138],[-126.88670042296403,57.632970824739346],[-126.88676425337866,57.633057852856226],[-126.88688523875027,57.63325886334615],[-126.88688804084238,57.63342366562831],[-126.88676380369779,57.633486166372876],[-126.88671713234287,57.633595238766056],[-126.88672794514437,57.63374429014428],[-126.88657462116417,57.63390677538772],[-126.88623070690372,57.63416135743621],[-126.88600362356377,57.63448467251484],[-126.88587482985339,57.63471090298137],[-126.88566759251837,57.634852444908674],[-126.88553001263625,57.63492736743763],[-126.88520803232377,57.63508985898397],[-126.88497339301088,57.63526970515813],[-126.88480520012486,57.6354692886771],[-126.88467875291776,57.635617016057054],[-126.8845883620061,57.63569386447676],[-126.88447779056459,57.635758514208185],[-126.88428526903891,57.635813620624766],[-126.88410097492319,57.635996492437975],[-126.88389335319329,57.63630173442498],[-126.88381298614956,57.63644915312646],[-126.88369959777557,57.636618095860584],[-126.88372669207487,57.63688140500701],[-126.88377598638365,57.63706383696843],[-126.8837709284359,57.6372062676221],[-126.88370413186247,57.63735135322888],[-126.88362062096482,57.63745394352271],[-126.88355187852082,57.63756092006911],[-126.88349747630848,57.63769919540885],[-126.8833243372959,57.637776595708836],[-126.88291272129035,57.63796098387665],[-126.88259360291023,57.63811335904649],[-126.88244167068784,57.63820182906163],[-126.88230334650649,57.6382902081423],[-126.88204908809165,57.63843878568309],[-126.88191552133944,57.63850695039222],[-126.88174357107292,57.63859106812775],[-126.88157782666636,57.638671780574846],[-126.881400358924,57.63874360103717],[-126.8812567971574,57.63878716448115],[-126.8810431793117,57.638881650012955],[-126.88083927569217,57.63889870520409],[-126.88061890211219,57.63897305277758],[-126.88046336799397,57.63904248349549],[-126.88031647379415,57.63912306890092],[-126.88014997143303,57.63921611820979],[-126.87994225462594,57.63933971485839],[-126.87970877379749,57.639481422308045],[-126.87955988540007,57.63956650509309],[-126.87944399609192,57.63962894360192],[-126.87928992938893,57.6397163029861],[-126.87910408313961,57.63983414678366],[-126.87892470293052,57.63995979602511],[-126.87876800290076,57.64006959705122],[-126.87858026626498,57.64019642258525],[-126.8784423677655,57.6403038558933],[-126.87831825997026,57.640419046165086],[-126.87809982211999,57.64062231902669],[-126.87789289651245,57.64082551515525],[-126.87772132554521,57.64101726404046],[-126.87763903733506,57.641128812540146],[-126.87755244532103,57.64123478335513],[-126.87747175781587,57.64132501762161],[-126.87736171182227,57.64145917484721],[-126.8772560370544,57.64160115167635],[-126.87718134717757,57.64172386193557],[-126.87708824104058,57.64191060487082],[-126.87699627701049,57.64210182515194],[-126.87694520409644,57.64220419645938],[-126.87686999188685,57.64234933484404],[-126.87681653765222,57.642439388272095],[-126.8766914812175,57.64260391799047],[-126.87653657983726,57.64279219138084],[-126.87644781709214,57.64289593349463],[-126.87631240547397,57.64297531727868],[-126.85902834659046,57.64735610792356],[-126.85848264577614,57.64787542062842],[-126.85098780122547,57.654996641808914],[-126.8489706182728,57.65562179871177],[-126.84515364817867,57.65680672085013],[-126.84733306933761,57.660896563409025],[-126.84733768830809,57.66091559514125],[-126.84736199027574,57.66101747359666],[-126.84743403781904,57.66123902048559],[-126.84750258454399,57.661397799599044],[-126.84757236030103,57.6614713555507],[-126.84763124517458,57.66152591990277],[-126.84765071377801,57.661552705316836],[-126.8476585442738,57.66157508024586],[-126.84765461732277,57.66163341059441],[-126.84764384712135,57.66171420984904],[-126.84765785542453,57.661778031617395],[-126.84768848102553,57.66188211211586],[-126.84772935170615,57.6620220071408],[-126.84776545482748,57.66208905117164],[-126.84781316491657,57.66211341318491],[-126.84786829573977,57.662141091411364],[-126.8478885200458,57.66215441691457],[-126.84791809389792,57.66216431875896],[-126.84797196745791,57.662183034962254],[-126.84799752458173,57.66220081130376],[-126.84796185252786,57.662245890016635],[-126.84788329666048,57.662342821142],[-126.84782638323509,57.66242279478257],[-126.84780442871676,57.662472270614344],[-126.84779740134881,57.66248577068237],[-126.84777711625654,57.66251617448701],[-126.8477405879456,57.66257022867328],[-126.84772020234624,57.66259614809511],[-126.84775331424656,57.66262396740218],[-126.8478293984397,57.662697482917324],[-126.84792663014258,57.662779832969136],[-126.8480140001728,57.66288915626462],[-126.84804558374249,57.66298874564275],[-126.84804323451782,57.66302464086664],[-126.84803441217122,57.66305160751956],[-126.84801756443011,57.663095444420165],[-126.84800864159699,57.66311792669463],[-126.84805109558337,57.66314120107257],[-126.84814648537898,57.6631876826282],[-126.84821020430104,57.66322427576825],[-126.84823023669836,57.66322975367746],[-126.84826096851519,57.66324413306357],[-126.84834848567104,57.66326711856135],[-126.84843624583525,57.66330019374679],[-126.84847440710013,57.66331901048771],[-126.84848728666944,57.66333238299911],[-126.84851276942706,57.66334679597608],[-126.84854507843855,57.663338740071765],[-126.84860031210371,57.663370902404395],[-126.84862633842218,57.66345595100062],[-126.84862527246247,57.6635019293311],[-126.84864548099115,57.663515254843375],[-126.84868919344318,57.66354749101109],[-126.8486970249653,57.663569865920785],[-126.84870151927878,57.66358329217847],[-126.84868021966477,57.66361482391466],[-126.84864126850708,57.66365431761021],[-126.8486116671141,57.66369038758595],[-126.84859557475554,57.66372076467111],[-126.84858675264017,57.66374773137846],[-126.84858839556931,57.66377463099723],[-126.84863121823267,57.66386069320459],[-126.84866505041977,57.66401408844048],[-126.84864785751206,57.66413529438616],[-126.84868283229434,57.66419898178733],[-126.84879041679362,57.6643216302303],[-126.84882485334987,57.664501931794284],[-126.84881094860026,57.66458275147325],[-126.84881784113992,57.664609617449486],[-126.84883175194034,57.664668954883325],[-126.84883874506474,57.664700305245105],[-126.84880937009224,57.664699372351855],[-126.84874968923728,57.66470311880122],[-126.84870793684091,57.66471123530563],[-126.84869136657525,57.664720311603844],[-126.84864791985599,57.664746379069605],[-126.84861485465315,57.66476789493846],[-126.84859335324953,57.66479045792571],[-126.84853583453135,57.66484352574345],[-126.84842792472048,57.66494064556522],[-126.84841253521454,57.665002413366636],[-126.84843582212605,57.665012355431486],[-126.848480374935,57.66503561627646],[-126.84850014748955,57.665075854813324],[-126.84849117301262,57.66514318780123],[-126.84848419443529,57.66520602296797],[-126.84847501887369,57.6652643871885],[-126.84837311233673,57.66534801342107],[-126.84813031403355,57.66546057380294],[-126.84790365628614,57.66559209174577],[-126.84778619144168,57.66568366600042],[-126.84771599096351,57.66573232967612],[-126.8476542766298,57.66578542400892],[-126.84759980777916,57.66583398688897],[-126.84760010901084,57.66584744005995],[-126.8475551661964,57.66590042696171],[-126.84744221880467,57.66600654836266],[-126.8473508740694,57.666094591259395],[-126.84732838980939,57.66612052412671],[-126.84732595610332,57.66615193494467],[-126.84732326878705,57.666219227663426],[-126.84732187493596,57.66625063182829],[-126.8473012110331,57.666264219196464],[-126.84727330133606,57.66628233797299],[-126.8472599584615,57.66629475721836],[-126.84724558403146,57.666308304323316],[-126.84721271739926,57.66633878865899],[-126.84719834293561,57.66635233575955],[-126.84719758738792,57.66636579570036],[-126.84718581123356,57.6664017513473],[-126.8471637532099,57.666446742865254],[-126.84712196223477,57.66649970947107],[-126.84701275029704,57.66663271685896],[-126.84683562284373,57.66682222160338],[-126.8467615369543,57.666978550552194],[-126.8468438005202,57.667047542415716],[-126.84692917058156,57.667067178941636],[-126.8469761224528,57.66710388011341],[-126.84699030722297,57.66717554997059],[-126.84686668252296,57.66722679756408],[-126.84663492100985,57.66722379494766],[-126.84652352768269,57.66721217345606],[-126.84648290021285,57.66727073874512],[-126.84639760217142,57.66739462270182],[-126.84634906429712,57.66747454246943],[-126.84634421554715,57.667492513625696],[-126.8463346350711,57.667532940229876],[-126.84619416086508,57.667673995714736],[-126.84594495920226,57.66787629393802],[-126.84582156397788,57.66803181630212],[-126.84581962992631,57.66808564915476],[-126.84581697765836,57.66810809130785],[-126.8458101566333,57.66822474597378],[-126.84583156412903,57.66843204241202],[-126.84584835269277,57.668620306964826],[-126.84578014832667,57.66875865782555],[-126.84570559131299,57.66884771375659],[-126.84565750569521,57.66890072020131],[-126.84561015933367,57.66894026677359],[-126.84557393537322,57.6689618021099],[-126.84553553131532,57.668978866315456],[-126.84548978054069,57.66899597742997],[-126.84541631743258,57.66904017577196],[-126.84531219716196,57.66911932892966],[-126.84524638074365,57.669176933490874],[-126.84523521621638,57.66919382369309],[-126.84517664615096,57.66924689691144],[-126.84506911564841,57.66936195202726],[-126.84502582253505,57.66944183794565],[-126.8450432217133,57.66946975842807],[-126.84505849920363,57.66949657119068],[-126.84507893495066,57.66951998724043],[-126.84509516909291,57.669542308846744],[-126.84510519654324,57.66956915511937],[-126.84508972464103,57.66962755949823],[-126.84505933682932,57.669721939471074],[-126.84504298326401,57.66978819831386],[-126.84503815037118,57.66980616935448],[-126.8449941002826,57.66989951526937],[-126.84491355480742,57.67009625022294],[-126.84488336638066,57.67019959901884],[-126.84490148044429,57.67021293856763],[-126.84493840673208,57.67022279426581],[-126.84496985759199,57.67022259353811],[-126.84499608328322,57.67022354741551],[-126.8450362464244,57.67023786747713],[-126.84510512428491,57.67026994443304],[-126.84520166854385,57.670320906196054],[-126.84528489313568,57.67038540808838],[-126.84533550179006,57.670444511880554],[-126.84535593822025,57.67046792790856],[-126.84537636640972,57.67049022272379],[-126.84543433059844,57.67055040078058],[-126.84549866033802,57.670613901953246],[-126.84553267922477,57.670682081737596],[-126.84552359796224,57.670744930468004],[-126.8455115183266,57.67076743287641],[-126.8454816997737,57.67079341235826],[-126.84542301063874,57.670842001459846],[-126.84539003843994,57.67086800106037],[-126.84541123140603,57.67087795710106],[-126.84545147052573,57.670895640355695],[-126.84547172370156,57.67091008744172],[-126.84552830633433,57.67095569788538],[-126.8456421149857,57.671074946186124],[-126.84573932549146,57.67120214928329],[-126.84581047331274,57.67128915333804],[-126.84592111403666,57.67131311426013],[-126.8461643660408,57.67131268106807],[-126.84642838530513,57.67130314454989],[-126.84652804934774,57.67130587112939],[-126.84655560843628,57.67131915008125],[-126.84661410593078,57.67135577773502],[-126.84664169016378,57.67137017777333],[-126.84665886571433,57.671388008161614],[-126.84669438226939,57.67142926779975],[-126.84671158295163,57.67144821928596],[-126.84669548576987,57.67147859636273],[-126.84666563891257,57.67155054814206],[-126.84665006829493,57.671604468397206],[-126.84664932922182,57.67161792829442],[-126.84666544810038,57.67163576544411],[-126.84670108198902,57.67168150939871],[-126.84673606046854,57.67174519776817],[-126.84675813213681,57.671794392242816],[-126.8467208125089,57.67186078552543],[-126.84666049120189,57.67197666153867],[-126.84668548735878,57.67206283907045],[-126.84672271688531,57.67208614754054],[-126.8467021248221,57.67210309820342],[-126.84668006290089,57.67214808988326],[-126.84667601625233,57.6722019364744],[-126.84666254221756,57.672255843355074],[-126.84661180151754,57.67233129257685],[-126.84650408279312,57.67243738024838],[-126.84640033982174,57.67253447230127],[-126.84636167795094,57.672587418918425],[-126.8463577850858,57.67260089898642],[-126.84638622637469,57.67260632349914],[-126.84648217654082,57.672630377920584],[-126.84656677803245,57.672662353695735],[-126.84654577244235,57.67270733861963],[-126.84648005195851,57.67276942841028],[-126.84645910465142,57.672817776747756],[-126.8464608635312,57.672849160937126],[-126.84645727155586,57.672876094274464],[-126.84645502050483,57.67291647422656],[-126.8464554096415,57.672980383879775],[-126.84647269546947,57.673096885003694],[-126.84650063769072,57.67326826003982],[-126.84650713839304,57.67337137495301],[-126.84649831254022,57.67339834176722],[-126.84647465420687,57.67346576899157],[-126.84643330206707,57.673586008846414],[-126.8464129439018,57.67370723575986],[-126.84641429403858,57.673814868711574],[-126.84641465804283,57.67387765731302],[-126.84639553117191,57.67391366011605],[-126.84631716441181,57.67401956012513],[-126.8462037340644,57.67415259459843],[-126.84611468102332,57.674249592665454],[-126.84601901915654,57.674333177702394],[-126.84593492357202,57.6744178100449],[-126.8458682592523,57.674484390705786],[-126.84574267466614,57.674589470788554],[-126.84557029990991,57.67471278985481],[-126.84550215176391,57.674760318272895],[-126.8454268359657,57.67476864806472],[-126.84527797572916,57.67477071973517],[-126.84508645585593,57.674834733225225],[-126.84488700899601,57.67496607306686],[-126.84477256978371,57.675054262117804],[-126.84474484433929,57.67508022816017],[-126.84471755840451,57.6750792809711],[-126.84461050563642,57.6751225720587],[-126.84440390363281,57.675168740488516],[-126.84419266353633,57.67514766211142],[-126.84407379974408,57.67513160088685],[-126.84400936791552,57.67515780076472],[-126.84399066994919,57.67516576882296],[-126.84393168889346,57.67520090405939],[-126.843845929878,57.675258635282255],[-126.84378816362981,57.67530161158738],[-126.84372842521356,57.675350206773494],[-126.84364288225991,57.675416906633835],[-126.84359866277508,57.67545643274235],[-126.84357882449572,57.67545992293731],[-126.84349531872103,57.675477273944686],[-126.84338544186882,57.675488065267366],[-126.84330708694696,57.675500898275715],[-126.84321297097185,57.67551271034112],[-126.84300783782763,57.67553083553783],[-126.84272910907359,57.67554045870075],[-126.84265860090825,57.67552969476124],[-126.84197145573032,57.68169208528309],[-126.84642342306662,57.68589764790492],[-126.85445884554684,57.68796303166427],[-126.86132634612038,57.69020597301933],[-126.86630017008143,57.6938334263937],[-126.87297417974689,57.697162467646365],[-126.88377525797439,57.69864273295929],[-126.89166754874525,57.69870646616307],[-126.89348343350055,57.69881981820064],[-126.90137577744508,57.69888297312128],[-126.90672457075725,57.699644844062576],[-126.91770792066322,57.69964098501333],[-126.92996836135342,57.699510641145956],[-126.93223297577956,57.70075059503003],[-126.93175611383248,57.70337333822553],[-126.93356465243878,57.708106026025874],[-126.93672341704516,57.71105299817011],[-126.9425944913628,57.71616051036088],[-126.9470906074885,57.721726164646974],[-126.94892258833403,57.72736462502619],[-126.94893280106785,57.72793868054682],[-126.94706543928272,57.73513763553553],[-126.94697091146654,57.74062846797187],[-126.94793289297473,57.74547484846903],[-126.94847107893841,57.75054855127466],[-126.95161738092126,57.75281361747386],[-126.95599642101601,57.752782134714536],[-126.96637676689238,57.7537385949421],[-126.97208645119164,57.7558768445478],[-126.97333210809246,57.759070381430256],[-126.97396470971007,57.76334495241089],[-126.97520089987832,57.77075501470497],[-126.97839300010789,57.7749031338923],[-126.98086577730963,57.78019586655324],[-126.9781049168145,57.78569769753126],[-126.96995422037915,57.78922939027641],[-126.95572778131996,57.79349524123354],[-126.94124161716714,57.796038903574875],[-126.93214428373456,57.79563655432506],[-126.9206763281814,57.79434393650617],[-126.90603602466611,57.794650959965466],[-126.89259778613241,57.79632986967173],[-126.8793625133619,57.79737808254279],[-126.86734338260574,57.80065088089219],[-126.864631155146,57.80419427709238],[-126.8638419715713,57.807455997392324],[-126.86386462599378,57.80872080789597],[-126.8689827149842,57.81330768437552],[-126.87107062490391,57.81598543389933],[-126.87306573025617,57.819507085340554],[-126.87280409764413,57.82271161621053],[-126.87132805879938,57.8235735917776],[-126.86945556840192,57.82637598854513],[-126.86741521679325,57.83141337339206],[-126.86922679408131,57.83631796228427],[-126.87316153685606,57.84046398245955],[-126.87736977223682,57.842158838681776],[-126.88264149983297,57.84337101328346],[-126.88435943105216,57.843592863038815],[-126.88951801279951,57.84459020115619],[-126.8917025549668,57.84680952781823],[-126.89078806465811,57.849211109848774],[-126.88644146631633,57.851456173949636],[-126.8819951128143,57.85382736403674],[-126.87661815640834,57.85802581820449],[-126.87520522883001,57.86243131471349],[-126.87645433336539,57.86602080797112],[-126.88017063105588,57.86976447411762],[-126.8850428697419,57.87219943980034],[-126.89120764987786,57.87501138315369],[-126.89534935492874,57.87841088956504],[-126.89735685885526,57.88217459942512],[-126.89765943679407,57.886506073957605],[-126.89912938069307,57.89021061140608],[-126.90293546304565,57.892930332149],[-126.90810131624471,57.89392699979645],[-126.9146413209347,57.89377456820995],[-126.91667201849843,57.89352732588056],[-126.92287849721039,57.89298200794562],[-126.92875024188913,57.89294117884732],[-126.93059781408398,57.892928278205176],[-126.93318801001529,57.892919121244326],[-126.93488372461466,57.892907225380064],[-126.93926631813822,57.892364963473746],[-126.94482122524667,57.89130282579111],[-126.95512868135913,57.88735327958257],[-126.9622423221096,57.884278419364655],[-126.96856472068754,57.879387591680874],[-126.97305901628853,57.8743932181642],[-126.97501070714023,57.87061962326584],[-126.97784619597344,57.86814046780559],[-126.9806382446919,57.863723615311024],[-126.98202358034024,57.858689071991776],[-126.98663881331771,57.85449192519099],[-126.99247561301627,57.852232428678086],[-126.99927142564937,57.84973220358621],[-127.00101726365945,57.8465250700232],[-126.9936547467613,57.84309022468669],[-126.99259590750222,57.83904285928638],[-127.00040715880603,57.83413953458597],[-127.00141747555352,57.83173646121718],[-127.00030410972577,57.8251775276319],[-127.00416804949198,57.82126364402915],[-127.00897698470104,57.82094909886407],[-127.01368449828345,57.82097607736394],[-127.01860293031426,57.820821838588],[-127.02382260030194,57.81993838846323],[-127.02678417224257,57.81848006616666],[-127.02783908667232,57.817790061864265],[-127.03174632628895,57.815705265061226],[-127.03941443202416,57.81429077902626],[-127.04883118112805,57.814387245029586],[-127.05588567480487,57.81416988307605],[-127.06067081921144,57.81305516522392],[-127.06972811793446,57.81161885183635],[-127.07518142774335,57.81152100366722],[-127.08288353535187,57.81152125480229],[-127.09226336294745,57.81025123175831],[-127.09778093801103,57.808608784016066],[-127.09948314294563,57.80819097903614],[-127.10411849864228,57.80547895658299],[-127.11061674191893,57.804518642286624],[-127.1229793453221,57.80293436952466],[-127.13564677782779,57.800673452562584],[-127.14954506480215,57.80056286894255],[-127.15039922402988,57.80055547386898],[-127.15660995709425,57.80085143782835],[-127.1637288575698,57.80302324153417],[-127.1667869919519,57.80497022081174],[-127.1662663547529,57.80593141707703],[-127.1687365862537,57.80594335190999],[-127.1734911995487,57.80790777461671],[-127.17760740346723,57.80970162167756],[-127.1806412657888,57.81110123287755],[-127.18794343291795,57.81206791828921],[-127.19962705049393,57.812779392013226],[-127.20550757091426,57.81284280380245],[-127.21962855801016,57.81283954096741],[-127.22470692116757,57.81445265814572],[-127.22941040370189,57.81795319728697],[-127.2351565557748,57.82047491193393],[-127.24170134261374,57.82110477669638],[-127.24277275716577,57.82109476155342],[-127.24768002303577,57.82059119923353],[-127.25419208572504,57.82019792919389],[-127.26033759001267,57.821629172452724],[-127.26246917983272,57.824856886204536],[-127.26086176993012,57.82829954611814],[-127.25760343701553,57.83021459162816],[-127.25318832826032,57.83288516829995],[-127.25006349682424,57.83570497501306],[-127.2500556733743,57.8389620032229],[-127.25214908464858,57.84094313939048],[-127.25424736019372,57.84303187142046],[-127.2562774771824,57.846323524800766],[-127.25697673033088,57.84821010030071],[-127.26057734519011,57.85040118849238],[-127.26829493055786,57.85067774007464],[-127.27654190745226,57.85071547946742],[-127.28560981628013,57.84961423640572],[-127.29174910199629,57.85081090160455],[-127.29499098034653,57.85500545505634],[-127.29150548106779,57.85658263032875],[-127.28642367877177,57.85845331203762],[-127.28341940444618,57.861739389780254],[-127.28332886315037,57.86567028092228],[-127.28415447633019,57.8681208273325],[-127.28426701707703,57.868299194831536],[-127.28557059907916,57.872333297621324],[-127.28437184806226,57.87508155840851],[-127.28311877939066,57.876179349417676],[-127.27822866950282,57.87741978461722],[-127.27559582941302,57.878880687446184],[-127.27526261576247,57.88196154376022],[-127.27312808205734,57.88569671952979],[-127.26717353754417,57.887287888985206],[-127.26574747344154,57.88976001224263],[-127.26885244663322,57.89304144170914],[-127.27144213275231,57.8970724889848],[-127.27382404815192,57.90127598207408],[-127.27117911602849,57.90586850544525],[-127.27054582380454,57.9062693608114],[-127.26563268083399,57.910309132964805],[-127.26153095542831,57.913084821073404],[-127.25768406886051,57.91712318297631],[-127.258143130174,57.92150669507971],[-127.26021852943256,57.92623387664462],[-127.2618391099706,57.930103932790495],[-127.26397048618155,57.933107712934834],[-127.27066820615013,57.934416932996214],[-127.2759852809201,57.93625949891643],[-127.28229079961197,57.938828169501704],[-127.28909473326108,57.940198279244946],[-127.2943918534,57.941349380283086],[-127.302381358555,57.942707307142506],[-127.30931787310558,57.941383076996644],[-127.31520966440146,57.93768186613458],[-127.31603825678616,57.93670455993381],[-127.32172581168406,57.93339093747036],[-127.32795200045297,57.93333801781163],[-127.3362504755382,57.93445751048814],[-127.34526767826321,57.93442961179097],[-127.35387352989875,57.93177605988091],[-127.3532033050993,57.927735853663584],[-127.3526792549004,57.92162133394027],[-127.35713891802575,57.91701752804254],[-127.35850180454212,57.916088359041886],[-127.36514830097428,57.91271823591097],[-127.37694469152346,57.91255194906259],[-127.38226539109277,57.91448892258044],[-127.38727912357136,57.916787825567255],[-127.3926286410698,57.91941505867668],[-127.39566574127659,57.92041522133802],[-127.40449727467208,57.92135435953884],[-127.41481946036126,57.921945077316565],[-127.42552996648186,57.92143607451101],[-127.43346742139936,57.921297067954086],[-127.43775687797036,57.92125084700399],[-127.44737277461257,57.92006990028436],[-127.45522695338117,57.917705051592485],[-127.46318672822902,57.915230892347395],[-127.47257697874929,57.913871115392155],[-127.4787464261455,57.91535520100712],[-127.48592643559017,57.91801226110876],[-127.49266947195473,57.92051232311042],[-127.49963902285951,57.92324282814501],[-127.50278370196887,57.926985348969566],[-127.50128934170438,57.930017387293894],[-127.50150821387588,57.93303909792381],[-127.50394097387363,57.93495899111624],[-127.50691560708476,57.9369804076978],[-127.511537742554,57.940015093493926],[-127.51617686524727,57.943399428740136],[-127.52091955946192,57.946764494559076],[-127.52213607486067,57.947665960580466],[-127.52556771641314,57.950381768789214],[-127.52985658384488,57.95301587653849],[-127.53359085361559,57.955198559483286],[-127.53924214138954,57.95691032558574],[-127.54604042338039,57.95774704607869],[-127.54915999612551,57.957827506469584],[-127.5547896772622,57.95896453184502],[-127.55920656407099,57.96206292386613],[-127.55853652271112,57.964125864451375],[-127.55665772873682,57.96551189736805],[-127.55580234205746,57.968438526406864],[-127.55667624234897,57.971569347520536],[-127.56133879803436,57.97540076325674],[-127.56662510515373,57.975913154029264],[-127.57394230795494,57.976168057885616],[-127.57480406067027,57.9762207096552],[-127.5783553056645,57.97629541144761],[-127.58969015496417,57.977596750584894],[-127.59343141056084,57.979777801575466],[-127.59393392899784,57.98160260580732],[-127.5925040742837,57.983441513618615],[-127.58790856017693,57.98407065102431],[-127.5824407583243,57.98453048486605],[-127.57828682734447,57.985432261656825],[-127.57503348447453,57.98746304897031],[-127.57298500277848,57.99006290882967],[-127.57168250494144,57.99247446696552],[-127.56974862179499,57.995297301092194],[-127.5688531080769,57.99712967757246],[-127.56877172397526,58.00037048078202],[-127.56742380245981,58.00163379217908],[-127.56519680388901,58.00252148883255],[-127.5599737613166,58.00372240399025],[-127.55459327958211,58.00365951892685],[-127.55089581835841,58.002616590796116],[-127.54765647434701,58.00231314688995],[-127.54249020836664,58.00225626791023],[-127.537367448695,58.003338461943045],[-127.53405989279246,58.00400473015056],[-127.53020344583356,58.00449771577148],[-127.52372593461068,58.006626979335095],[-127.52340711616827,58.00680113467821],[-127.51461259156618,58.01032050663936],[-127.5074011109397,58.01313936355165],[-127.5032757354545,58.01500771329021],[-127.50100456802865,58.017546155357486],[-127.50088316093455,58.0233732016744],[-127.50049202820507,58.02351894741575],[-127.49170674176801,58.02869926905401],[-127.48421875186789,58.03640671356574],[-127.48507880227916,58.04077013081225],[-127.4851513623096,58.04078390853306],[-127.48462961003747,58.04322637402463],[-127.48374586674834,58.04409777407366],[-127.48182334460404,58.045994849497774],[-127.4774214356734,58.04930145993871],[-127.47631543817158,58.05147663025523],[-127.47614582494943,58.05558902012384],[-127.47716572728932,58.05700477284728],[-127.47752162739003,58.05786243708128],[-127.4766402803146,58.060259519928245],[-127.47360583429014,58.06268932334669],[-127.47096864451206,58.06426206341624],[-127.46746865495415,58.065781397769825],[-127.46644612762826,58.06727349513578],[-127.46662368009372,58.06921015831114],[-127.46678684607612,58.07075208007856],[-127.46577993990738,58.072701736920266],[-127.46311022930001,58.073359224918036],[-127.46099088645215,58.074351701893896],[-127.45707049060545,58.07621641152348],[-127.4528723782014,58.076369778228724],[-127.4476222682151,58.07722548381988],[-127.44206423510002,58.078542030831265],[-127.44125647632765,58.08008547714808],[-127.44095979133324,58.08083360682327],[-127.4410455514833,58.0832828904286],[-127.44068902446362,58.08534203743881],[-127.43848447892596,58.086909484835],[-127.43714064869651,58.08858433178933],[-127.43657722033136,58.09092393020712],[-127.43328405936035,58.092323474791804],[-127.42761274152387,58.093577801064356],[-127.42219980343104,58.09603181638299],[-127.41870336565172,58.09777421793209],[-127.41166034693133,58.10001171883078],[-127.40429199231818,58.10208173029171],[-127.4024426539276,58.10473086390384],[-127.40459099607367,58.10756247299732],[-127.40538589073692,58.10875681899975],[-127.40678595187977,58.11176679454136],[-127.41060811029533,58.11309980551487],[-127.41278403499733,58.11359743328804],[-127.41749884761708,58.1157106670416],[-127.42179026404827,58.11806160300832],[-127.42461885695664,58.11865981957629],[-127.43437276102848,58.11988406149598],[-127.4382850555833,58.12058706330463],[-127.44328184253258,58.12150265690659],[-127.44599310785911,58.1218773069596],[-127.4489308972311,58.12253666955893],[-127.45321497102667,58.124599507125566],[-127.45685581894323,58.12673204522053],[-127.45942704208868,58.12921722750976],[-127.4595274476976,58.13195370826961],[-127.4624963850062,58.13351899715589],[-127.4652129449327,58.133947071238936],[-127.46738305031396,58.134273369624964],[-127.47315707517228,58.13563713723004],[-127.47579290901811,58.13686473098716],[-127.47717487610343,58.13919217761197],[-127.4813747756945,58.1418295722284],[-127.48468267691544,58.143624029828835],[-127.4865772268501,58.145200727828104],[-127.48773473565625,58.144451859228646],[-127.49359240139367,58.14221453019335],[-127.49956842886935,58.14027182154531],[-127.50811502282474,58.13784216216261],[-127.51323240841181,58.138933368603745],[-127.51686430384254,58.14077723575743],[-127.523106791237,58.14298630272135],[-127.52800408720091,58.14401663418843],[-127.53259876426098,58.14550802870772],[-127.53663887630022,58.146727376236434],[-127.53707429164041,58.14683009465878],[-127.54176718926934,58.14803282727025],[-127.54467890502613,58.1478915818675],[-127.54978470777982,58.148694331596666],[-127.54903214779459,58.14875688951039],[-127.54812759044715,58.15053563215832],[-127.5486741127269,58.15344655436171],[-127.54952076334598,58.155779541442676],[-127.55069100887252,58.15809981108091],[-127.55179817580579,58.158769187752],[-127.55431194756538,58.15953894353016],[-127.55803095977467,58.16069858075214],[-127.564467815268,58.16228421615418],[-127.5671830990323,58.16260257374287],[-127.569432294732,58.16211846943604],[-127.57173243748495,58.16014366892163],[-127.57551642642002,58.15748715454064],[-127.57957669842561,58.156353239468494],[-127.58612392488531,58.15525262485593],[-127.59310290332307,58.154146555760406],[-127.60009787754983,58.15349771867104],[-127.6042080629686,58.153628108318046],[-127.60984571761965,58.15412601415441],[-127.61395668891821,58.1542471204439],[-127.61802972388085,58.153515807617595],[-127.6219465686919,58.1515385511565],[-127.62706324519351,58.14987874044852],[-127.6301079501018,58.15035338832684],[-127.63264039838596,58.15152538862613],[-127.6355786957527,58.15206404644267],[-127.64091320608652,58.153031118334376],[-127.649251578927,58.15350325278277],[-127.6540618217045,58.154925082621745],[-127.65637741313331,58.15604547091222],[-127.6598053921561,58.157834264490326],[-127.66195936908031,58.16025816070673],[-127.6620109761023,58.1615142351327],[-127.66218260530427,58.16305607285278],[-127.66358473147258,58.16555211924189],[-127.66708411357644,58.1665319804749],[-127.67491231730715,58.16763727503151],[-127.68067709676296,58.16848074928609],[-127.68354818797796,58.169934855438974],[-127.68464202626416,58.17272184793588],[-127.68245532891295,58.174742137113704],[-127.6774017595702,58.177830610312355],[-127.67447628372487,58.18283132500599],[-127.67562116639014,58.18429819892862],[-127.67649162441208,58.18445788077098],[-127.6792380012801,58.18545585929393],[-127.6837378570676,58.18699732679721],[-127.68575664356436,58.18868655403044],[-127.68520799146853,58.19109028029118],[-127.68197085562214,58.193752167518895],[-127.67877092938903,58.19481561818453],[-127.67291408143336,58.196944494987505],[-127.67102745182824,58.19839533926718],[-127.67200433692392,58.20106728083939],[-127.67458218477374,58.20314472747222],[-127.6744608564532,58.2053725417244],[-127.66981117897957,58.20806074853808],[-127.66422938388155,58.20909062527664],[-127.65796464575635,58.20933872752468],[-127.65172485346991,58.21015178091858],[-127.65017915147654,58.21205596813336],[-127.65300884890026,58.21492971186918],[-127.65641643915933,58.21626119783767],[-127.66078543132976,58.217239581022675],[-127.66639482962653,58.219396394034945],[-127.66960820367646,58.22369244650726],[-127.67004599781473,58.2288848201495],[-127.67392320057765,58.23352269091963],[-127.67973892969876,58.23784898011994],[-127.68370422032802,58.244532402694745],[-127.68139192487301,58.248726917693865],[-127.6789010988233,58.25126279445145],[-127.67882070619514,58.254468781330395],[-127.68029578463228,58.25604835035671],[-127.6828418487795,58.257327216162345],[-127.68503923718256,58.25798197730957],[-127.68810655602341,58.2588143086618],[-127.69532885768666,58.260491984892255],[-127.69763842206771,58.26126184235545],[-127.70677654978202,58.26457558759009],[-127.7135689540231,58.26877156335797],[-127.71512340716677,58.274578363126246],[-127.7130636053454,58.27956940767958],[-127.7075888594688,58.28328409295603],[-127.70288361247594,58.284825125805995],[-127.69081756602009,58.28913417480474],[-127.68452433748205,58.29418694804702],[-127.68125690485572,58.2989053771231],[-127.68078222287097,58.30050940175725],[-127.67494915422715,58.303652651760906],[-127.66935318521101,58.30475468281773],[-127.66477283445627,58.30417399661147],[-127.66245127359349,58.30317920794734],[-127.65773293111782,58.30186379552274],[-127.65370669442548,58.301572185438964],[-127.65045309347948,58.30160316389074],[-127.64405407304184,58.301627650692005],[-127.6308812860613,58.30052210347916],[-127.62491460423571,58.300477594777746],[-127.61568465718675,58.30023862989503],[-127.60983665371631,58.30047034112162],[-127.60723370517371,58.30050146514369],[-127.60181479640234,58.30061996546753],[-127.5947202845272,58.299564073348876],[-127.59079460286515,58.29903597610342],[-127.58645861097068,58.300088203951454],[-127.58641533806306,58.301075148046486],[-127.5880008897868,58.30256920022572],[-127.59194278725272,58.30376828594889],[-127.59250729029789,58.305097058896635],[-127.59253391457088,58.305719582191074],[-127.59409706833935,58.306679657820176],[-127.59628010238495,58.30629802732781],[-127.59917337353879,58.306709196897685],[-127.59956846275838,58.30684365764032],[-127.60295036168147,58.30799859235702],[-127.60536427346082,58.30903818547919],[-127.60692018284631,58.30981977143445],[-127.6086457400233,58.31060043514038],[-127.60920706406428,58.31183941560894],[-127.60992923194144,58.31289915667042],[-127.61218561954074,58.31420649745304],[-127.6151182715777,58.31550681210599],[-127.61871277278621,58.3164422309456],[-127.61927451991757,58.31768117815447],[-127.6158073010359,58.31968119007549],[-127.6180643548798,58.320989564698685],[-127.62288594154501,58.32288874399265],[-127.6263428817146,58.32453827769708],[-127.62793491148057,58.32612051406499],[-127.6301927820654,58.32742869553004],[-127.63196642313953,58.32927579605475],[-127.63370512782717,58.330323117337315],[-127.63660847433118,58.33091071987445],[-127.6388081528375,58.33088396152636],[-127.64037461522757,58.3318435157239],[-127.64061379098236,58.33344322548135],[-127.63932659346919,58.33497174793486],[-127.63684323571611,58.336247701151926],[-127.63264409445821,58.33701021357847],[-127.62968088129337,58.3389158439218],[-127.62908898673163,58.34088028241719],[-127.62857603802884,58.344624852221926],[-127.62855045152436,58.34791798990205],[-127.62924054280607,58.34967951700162],[-127.63193229869765,58.34964693083627],[-127.63595409491144,58.34972384142754],[-127.64066181850637,58.35058238495429],[-127.64282269209761,58.352890457667456],[-127.64611217010885,58.356271124499884],[-127.64965119597257,58.35772725690765],[-127.65442841513905,58.35766867521278],[-127.65518330470549,58.357542680862],[-127.6593878785822,58.35669186105437],[-127.66415114969169,58.356300895865814],[-127.67048306158335,58.35702162698847],[-127.67433916194416,58.358284640982454],[-127.67595258471225,58.360500271981365],[-127.67257956181744,58.36293052238554],[-127.67079901851984,58.36443410176471],[-127.67354630240024,58.36520809411072],[-127.67769796478814,58.36573110678632],[-127.68424292268365,58.366277973283374],[-127.68892352414896,58.36644385865702],[-127.69395990521535,58.36735933107266],[-127.69726978530771,58.36845799531825],[-127.70236197461955,58.36806154448691],[-127.70433324320055,58.365917617331306],[-127.70422627323038,58.3634677500166],[-127.70409021321514,58.36033587051405],[-127.70699006844518,58.35453479879869],[-127.7176579850802,58.35000859424597],[-127.73020921748748,58.34642705457678],[-127.74094229008199,58.345956526540014],[-127.7439240154418,58.34705825080909],[-127.7478268740798,58.349351119904924],[-127.74928444590589,58.350301908300764],[-127.75081203237451,58.350515509622845],[-127.75244071779335,58.350494329186766],[-127.75589420362897,58.3499914323816],[-127.7592695231302,58.35011798565121],[-127.76106523840075,58.35141441012207],[-127.76220594313004,58.352656532954406],[-127.76293868925018,58.354415785815696],[-127.76455339442091,58.35650468885372],[-127.76585867531305,58.356550437660744],[-127.76726644596009,58.356415250677486],[-127.77063105796303,58.35637106895964],[-127.77401449226271,58.356676734538475],[-127.77577566429476,58.35716533152575],[-127.77724070890261,58.35834021605963],[-127.77815579487792,58.35936072536357],[-127.77957718217237,58.35957541160575],[-127.78120838290727,58.35955385494839],[-127.78599273411398,58.35966111625167],[-127.78938695800808,58.3601817567203],[-127.79272392684459,58.361861374994156],[-127.79277201035276,58.362947203989016],[-127.79039458016423,58.36560071252781],[-127.78846114168952,58.36847276959992],[-127.78759441550315,58.370890680885374],[-127.7872793650767,58.37351677772998],[-127.7868037572361,58.37500465103916],[-127.78733343249078,58.37710774318318],[-127.78567014960863,58.37879094692466],[-127.7847327175931,58.379656390552135],[-127.7840308399582,58.38097665267898],[-127.78407716899675,58.382008654904396],[-127.7850242947044,58.383702180076696],[-127.78624920003111,58.38665810736476],[-127.78676062965039,58.38831250801421],[-127.78852588748077,58.38891765702129],[-127.79315215204633,58.39016719721726],[-127.79873832668292,58.39100868803886],[-127.80294458205631,58.39266758108102],[-127.8023531719185,58.39398648809757],[-127.80284688180204,58.39523701391134],[-127.80355403088774,58.39636795241623],[-127.80384209893786,58.4002522293348],[-127.80419171275749,58.403156928189155],[-127.80643025679828,58.40450084117374],[-127.80833839632437,58.40577731459444],[-127.81147072978438,58.40756712870275],[-127.81382239553469,58.40902615002496],[-127.8152606525559,58.41186234370605],[-127.81486664873847,58.412774595333296],[-127.81845805130827,58.41273521271195],[-127.82215375577071,58.412685345912976],[-127.82635021102587,58.41165878726274],[-127.82886956278385,58.40968503312442],[-127.8339245234561,58.40842210000127],[-127.83770360236832,58.407795964870196],[-127.83898758338988,58.407329479245284],[-127.84383970348605,58.40641016459359],[-127.84735375544184,58.404763688530494],[-127.84758812448611,58.40287473713381],[-127.84853637813022,58.40217928587176],[-127.85144776971357,58.40162750666314],[-127.85326162981151,58.40085727782749],[-127.8527665789342,58.39961590191575],[-127.85437351062572,58.39907299332025],[-127.85661460407914,58.39818908752016],[-127.85900831077694,58.398156110718354],[-127.86842449432493,58.39946273346596],[-127.8838027558846,58.400227591572104],[-127.89116214575121,58.40166912183041],[-127.89602018131957,58.403145448777636],[-127.90381427814933,58.40680721972543],[-127.91374818783912,58.41625731038582],[-127.91583994862475,58.41897553476592],[-127.91686164438194,58.41976025480833],[-127.91816436664172,58.419687860342584],[-127.92107178376455,58.419071766987706],[-127.9234502273454,58.41875949687201],[-127.92789095061579,58.41829201019529],[-127.93512506947854,58.41716470813018],[-127.94417832078926,58.41750152305333],[-127.94856684242791,58.42034780796262],[-127.95027885498234,58.42409478870546],[-127.95180524398182,58.426299837356346],[-127.95372327710847,58.42764607470162],[-127.95557692163607,58.42772699086697],[-127.95720415785057,58.42753277425085],[-127.961833903685,58.42655853248318],[-127.96539391004212,58.42594096791566],[-127.97365129520368,58.42553307973064],[-127.978358212494,58.426038902497915],[-127.9844501275344,58.428005978382416],[-127.98811126348228,58.42937998919813],[-127.9951035652679,58.431908096510895],[-127.99877728572766,58.43346126173857],[-128.0001981525995,58.43523633060743],[-128.00242431021587,58.4401875758114],[-128.00455110863805,58.442535892725225],[-128.00649922405876,58.443000891465225],[-128.01207746305607,58.442010816435165],[-128.0181076303827,58.440043834372325],[-128.02152281125402,58.43811576498816],[-128.02767042855018,58.435634689283596],[-128.03215453276349,58.434633259245714],[-128.0379343268389,58.43415096359805],[-128.0471039698546,58.43288960655137],[-128.05987014192198,58.431465005844636],[-128.06868298841584,58.43168046257004],[-128.07704185748423,58.43280939855688],[-128.07975640527835,58.43334237152479],[-128.0822996481761,58.431183673724],[-128.08901261555476,58.42738880021584],[-128.09603996918224,58.423992843427506],[-128.09801366305896,58.423315550616245],[-128.11108896251682,58.422464991100824],[-128.11866676050425,58.4245644997111],[-128.11963984080776,58.424962340030916],[-128.1271575506639,58.424538687513035],[-128.13935336396747,58.42413931520565],[-128.14392581567327,58.42416553327978],[-128.15739529412127,58.425594382449994],[-128.16193096826146,58.42766827376583],[-128.1626812527741,58.4283657603084],[-128.17184229158602,58.42732051769504],[-128.1782613070689,58.427342790819324],[-128.18795756505727,58.42681769502138],[-128.20088261239812,58.4286372732596],[-128.20163586349472,58.42904710663512],[-128.2104794701346,58.427357750370845],[-128.22422729477927,58.425129006965165],[-128.22609995885958,58.42348148563558],[-128.2315942806327,58.42002272943642],[-128.24555166202524,58.4180667235622],[-128.25881516278986,58.418869179017825],[-128.2619710417875,58.41887019161267],[-128.273131232627,58.41451522713407],[-128.28308297992297,58.41061088723344],[-128.28647325373657,58.409529577353155],[-128.28998389457746,58.40708994469108],[-128.30410808962446,58.39999656545219],[-128.30678067952286,58.3950829750876],[-128.30158988523146,58.392845529232616],[-128.29499806586801,58.38985039149274],[-128.293294639269,58.38687067744251],[-128.2913541562413,58.38578102999365],[-128.28420899519486,58.38357618839187],[-128.28065070649257,58.38151690652528],[-128.28036698392972,58.3782526033924],[-128.27844826782894,58.37544705526716],[-128.27834792255675,58.37487396822209],[-128.27761302357723,58.372928538204505],[-128.27536096723648,58.37064051986601],[-128.27062711744807,58.367415406092704],[-128.26889684794472,58.36690570296624],[-128.26761950052568,58.36478078530803],[-128.26572231187012,58.36060070744883],[-128.26240011377251,58.35750430010439],[-128.2608116876255,58.354468547630425],[-128.2614288828169,58.34915959263473],[-128.2620249751594,58.34533281822901],[-128.26512954822172,58.340718492777015],[-128.2781677259367,58.332128624858896],[-128.2862512852528,58.328156887533154],[-128.29009636296385,58.32485853746366],[-128.2962610267422,58.31808100325486],[-128.30143683002032,58.312155299961084],[-128.30736540977233,58.30657571622916],[-128.30923993359866,58.30423559864116],[-128.31404583246731,58.30144992249956],[-128.31658278236347,58.29826313710116],[-128.31630293677142,58.29443337379587],[-128.31234161634802,58.290361660425795],[-128.30752267830252,58.28572087764634],[-128.30456319186314,58.279647214502845],[-128.299321810898,58.27437590097292],[-128.29827008293208,58.27203215753635],[-128.30231343872117,58.269242029132045],[-128.30678371629972,58.267091005331714],[-128.30812462794984,58.26377234934809],[-128.30403433687613,58.26182207312761],[-128.29723712631775,58.25973839702287],[-128.29636930674906,58.25962751451475],[-128.29772087802522,58.25579697328036],[-128.30026627293282,58.25151496599962],[-128.3005415319868,58.24689467642552],[-128.30156914244816,58.24278233878076],[-128.3017312916332,58.23855913187545],[-128.30162860654116,58.23832742204154],[-128.2916252740788,58.233317307904436],[-128.28992272043808,58.231029645349636],[-128.286549200426,58.22438848207557],[-128.2892062203343,58.21947637081014],[-128.29044827586367,58.215486311461994],[-128.29423178771714,58.207555823358646],[-128.30273823969378,58.20221111634966],[-128.3033928920468,58.20175091661075],[-128.316961974282,58.19751250921422],[-128.33172864945476,58.192587418495485],[-128.3350962670274,58.19122683905505],[-128.3449630696522,58.18869314146834],[-128.3513947135557,58.18413579014287],[-128.35735938274075,58.182262151808516],[-128.36613861898383,58.18006024607843],[-128.3759842725234,58.179176773985404],[-128.38246298746338,58.179708321494346],[-128.38937555164333,58.18018693224253],[-128.3917476129862,58.18064748596491],[-128.3992055099401,58.18072077287396],[-128.40256637436232,58.17987040392795],[-128.404846912511,58.17862627676635],[-128.40681335123872,58.17645389009485],[-128.40890534327633,58.172456405076346],[-128.41207915379533,58.16829576515321],[-128.4137339879908,58.164638325302455],[-128.41790418830246,58.15790949878367],[-128.41966295809874,58.15470807610742],[-128.42445273902732,58.15055390164838],[-128.4266121815524,58.150559703573926],[-128.43036457801085,58.153885847801504],[-128.43830876504114,58.15904830517608],[-128.44433301009238,58.16202747183714],[-128.45080539869426,58.16295986199929],[-128.4660400498799,58.162590606090035],[-128.47069065607334,58.16208291225444],[-128.4813951619942,58.16056514097647],[-128.48832902301484,58.15776963442167],[-128.48844595701155,58.156860526646064],[-128.49311230131113,58.15378359154964],[-128.49454969823148,58.149383804025405],[-128.49457945844082,58.14532451908808],[-128.4945618499224,58.14509250318451],[-128.52504245892186,58.13149996825234],[-128.52775903234541,58.130288118867576],[-128.53869057828965,58.136564548325694],[-128.54466407546352,58.13999364410144],[-128.54845832952907,58.14569319935894],[-128.55419930438137,58.154314457161156],[-128.55503658369605,58.15557138625817],[-128.5557601279364,58.15496267206446],[-128.55550715918875,58.15479126760561],[-128.55559526879284,58.15460325532039],[-128.55568089410426,58.15454998802358],[-128.55570393671064,58.15454505858273],[-128.55585640897675,58.15456796724753],[-128.56534694354858,58.157376901628794],[-128.5678172689098,58.15954762947709],[-128.57038684917327,58.16389855787779],[-128.57350465780118,58.16744869961036],[-128.57543619672606,58.169791319130276],[-128.57790781361354,58.17265336396841],[-128.57939395466755,58.17808471653368],[-128.580231400173,58.18351061895554],[-128.57900713418695,58.190484912909625],[-128.5779090308425,58.19379282768997],[-128.57887715503966,58.19482491819116],[-128.58243690517762,58.19694764146023],[-128.58651940885244,58.20203273683213],[-128.58984288247333,58.20826396279743],[-128.59307031149788,58.212269833997944],[-128.59738801110117,58.214449448042295],[-128.60213271294086,58.21770732506588],[-128.60525173287982,58.22217311000394],[-128.60761996141062,58.225423074288656],[-128.61302148250246,58.228173944097726],[-128.61625196533063,58.23182911725364],[-128.6220999297787,58.23092470111363],[-128.63292166192974,58.23155710749269],[-128.63735151526066,58.233796242304656],[-128.63831086268388,58.23842959062792],[-128.6352704324206,58.24116566600926],[-128.63450833046306,58.242078731802415],[-128.63753130034175,58.244650866900415],[-128.6406577786638,58.24882855199991],[-128.64335321537612,58.25271829987698],[-128.64625677649678,58.258660650221984],[-128.64701501528083,58.25946301601276],[-128.65578437939078,58.26043956372929],[-128.66531655698176,58.26164291821805],[-128.67484261226812,58.26410314818945],[-128.67765075314998,58.2674781762937],[-128.6806773382928,58.27188170204242],[-128.68273323859898,58.27176882220143],[-128.6914035617369,58.27124516799176],[-128.6985542752935,58.27142510503246],[-128.71144883943532,58.27366249030083],[-128.7134003489039,58.27113513759672],[-128.71709134000022,58.26691096525282],[-128.7231613836517,58.262800167563746],[-128.72630369815133,58.26188317034287],[-128.73388558864698,58.26050757245914],[-128.74179678833747,58.25919667158714],[-128.7512195503926,58.25913875233757],[-128.7539270179843,58.258508436108926],[-128.75620146433099,58.25571333778357],[-128.7610735921982,58.25342170339223],[-128.77006401908199,58.25387430579274],[-128.7767806197005,58.25495716391367],[-128.78317174359927,58.25610033192668],[-128.78707091725002,58.25421410336457],[-128.78804197633087,58.250897564461425],[-128.78977054630218,58.248095228318626],[-128.79345368348467,58.24791986593546],[-128.80179228056383,58.24842879010754],[-128.81121492298303,58.24985763089476],[-128.81479049095284,58.25082466169424],[-128.82172231155837,58.25161334610784],[-128.82735397813119,58.25218653689298],[-128.8366749170002,58.2543523236822],[-128.84469503064773,58.257766642179014],[-128.84871127248516,58.26022353493028],[-128.85532295140226,58.26193354166126],[-128.85998453779624,58.26289431103113],[-128.86713753505572,58.264089218374686],[-128.87732415228402,58.26470681565242],[-128.8780833052555,58.264708520128885],[-128.87763586339705,58.26099933160489],[-128.87643191384691,58.25733330927443],[-128.8751213306132,58.25391210553355],[-128.87370098774542,58.25070883404917],[-128.87379652072926,58.2467096337556],[-128.87487020048044,58.24362367412989],[-128.87756581038553,58.2409880070486],[-128.88080949675887,58.23852915519647],[-128.88307401736003,58.23669306783429],[-128.88371319356898,58.233787045281204],[-128.88283444619444,58.22955731950848],[-128.88281375369695,58.22435707585962],[-128.87641751399073,58.22047032735132],[-128.87489278271585,58.21779041574324],[-128.87304026823074,58.213851055536416],[-128.87206449879397,58.213566557893984],[-128.8742270746287,58.212936419331925],[-128.88039781452756,58.21372923717493],[-128.88689090168995,58.21469448426649],[-128.895547054081,58.21501994428099],[-128.89900693915152,58.21444223548008],[-128.9002980056147,58.21295922752486],[-128.90028791812549,58.20976181191154],[-128.89962903734855,58.207871851625086],[-128.90080740423736,58.20484636636796],[-128.9008064184885,58.204505069789064],[-128.90501933363504,58.20294982333733],[-128.91161575577416,58.203453510756226],[-128.91303155347296,58.20551560362781],[-128.914451241351,58.20853869612005],[-128.91488686731455,58.20940050194224],[-128.9177020955489,58.20996805827447],[-128.92257157510826,58.21006865921472],[-128.92754151711375,58.20914291636472],[-128.93110814500727,58.20833747596811],[-128.93457235569582,58.20924979132398],[-128.9367459176212,58.21135797969336],[-128.938923211154,58.213699602589124],[-128.9389238653582,58.213924146884246],[-128.9447684640791,58.21432595858511],[-128.95267158557817,58.21539184615071],[-128.95993354045396,58.21754932383584],[-128.96546485531195,58.219879427342214],[-128.97251970882044,58.223639753460304],[-128.97719931593605,58.22768601592048],[-128.97872133131995,58.22928709925881],[-128.98435080864252,58.229332721605225],[-128.99106439631777,58.2299468179737],[-129.00212102484133,58.23209839852736],[-129.00906224094,58.23401803074175],[-129.0117731509881,58.23487349651854],[-129.0174175278443,58.236920626908905],[-129.0223080922733,58.23947857905232],[-129.02317530061345,58.23970159677366],[-129.02848217337598,58.239977247912435],[-129.03758399957692,58.24075977186878],[-129.0490893315654,58.24421803170778],[-129.05845160577795,58.25007783672402],[-129.06324635796096,58.25366971742411],[-129.06368025632625,58.25383948884966],[-129.06723530523777,58.25165621827536],[-129.07455514830883,58.246772525722726],[-129.08708295470603,58.243143238839366],[-129.0941146909035,58.242720855416806],[-129.11816767386168,58.24390721108919],[-129.1399529617963,58.246184466454835],[-129.14831953641718,58.2487825273573],[-129.1574536134239,58.25207179019928],[-129.1612614620255,58.25359932105755],[-129.17037841862046,58.255055433861564],[-129.17969891267808,58.25587724092442],[-129.1917789326797,58.26046013244447],[-129.19943683274036,58.266369297186635],[-129.20458272995202,58.27075680445551],[-129.2154177587437,58.27906017372795],[-129.22786451471964,58.285751846287475],[-129.23678179867312,58.287891398975376],[-129.2464658568953,58.2904790863597],[-129.25343296748576,58.292511940431005],[-129.26202023105105,58.293966053533275],[-129.27080614877892,58.294381522804855],[-129.27795948899103,58.29411743427537],[-129.28978241072517,58.29435874348362],[-129.29815687287373,58.295977539452885],[-129.30044085757797,58.29642465932066],[-129.30478941746543,58.29715346088805],[-129.30805824815198,58.29816028764769],[-129.31036806273465,58.30032281033013],[-129.312012057199,58.30140549246956],[-129.31714589038853,58.303606151858254],[-129.31758419032704,58.303828959287515],[-129.3202248921562,58.30638753185669],[-129.3232981061184,58.30854900447916],[-129.32756240585118,58.31065399859388],[-129.33356622477493,58.312958380964105],[-129.33967999532655,58.315277761590444],[-129.34447673285527,58.31684788532914],[-129.3493759459901,58.31757063695408],[-129.35645876532604,58.319424873168565],[-129.35819925049321,58.319812752162804],[-129.3677824868908,58.321765720771204],[-129.37399646217688,58.323335311559816],[-129.37736299216868,58.32354737149655],[-129.38407516981553,58.32254298705511],[-129.39153084159705,58.32078265966092],[-129.40480698909946,58.31694268376506],[-129.41992054328043,58.31280302301405],[-129.42778154778335,58.30967339649109],[-129.4313037746794,58.30662711995664],[-129.43921133840587,58.30046727222865],[-129.44135148143837,58.29896573956282],[-129.44439981459865,58.29398125225589],[-129.44689959045866,58.288705248612175],[-129.44785135472702,58.287332928609764],[-129.45480873984255,58.28289486766376],[-129.4594289435309,58.28080806027197],[-129.46999429154081,58.27800155970977],[-129.4742676029758,58.27489876313982],[-129.475646607897,58.273398365807836],[-129.47677676016627,58.27042169698132],[-129.48104067977877,58.26695947791313],[-129.48618819533198,58.264309886178744],[-129.48907628918616,58.26245565700198],[-129.49444711601615,58.26031213456119],[-129.49820854008112,58.25892021797839],[-129.4988289008841,58.25743034528424],[-129.50725820210417,58.25651853084745],[-129.51470890492118,58.25544308690156],[-129.5217157130561,58.25380374940422],[-129.52657260117434,58.252975355778496],[-129.53159399745044,58.2499138829388],[-129.53500510193444,58.24737088901003],[-129.54115683209682,58.24647189837279],[-129.54550616419726,58.24724673892775],[-129.54967503981797,58.24957185375857],[-129.55144435963518,58.25126840463213],[-129.55364161430822,58.25257618860506],[-129.5608252513802,58.2542370655797],[-129.5651856245119,58.25546932649239],[-129.56900532556423,58.25669785367784],[-129.5764198974575,58.25888201267054],[-129.58372755049098,58.26094283197365],[-129.59047696457986,58.26232623161981],[-129.59331094180783,58.26310417230594],[-129.59969767899034,58.262834286896414],[-129.60218139636493,58.262480116484454],[-129.6032760667138,58.26298096979928],[-129.60367151004246,58.2659000503644],[-129.60580695676214,58.26914090382895],[-129.6066008928366,58.27062039417441],[-129.60881604726305,58.27266383328872],[-129.61495189061003,58.27541961811957],[-129.61778960627277,58.276143072731095],[-129.62116840979374,58.277031628480984],[-129.624439981899,58.27786907509811],[-129.6290619725728,58.280584231568355],[-129.63138359951407,58.28250766358159],[-129.63438947272493,58.28574266733713],[-129.63431992744864,58.28722743899185],[-129.63004478025678,58.28977852372376],[-129.6258596600605,58.29157210934744],[-129.62241359318514,58.292518818065005],[-129.61776997885323,58.29323704593863],[-129.61107423843808,58.29442366723318],[-129.60701612134295,58.296914223514],[-129.60720692731732,58.30051295930269],[-129.60766652133722,58.30599182013129],[-129.60791559215912,58.30736018784854],[-129.6067049163151,58.31114036637089],[-129.60343254200603,58.314939854609875],[-129.59635649782012,58.318589381007136],[-129.58865867220106,58.32355826569655],[-129.580985791371,58.329550577199406],[-129.57767738895654,58.33197530504398],[-129.5686734863371,58.3369507454304],[-129.55985556759208,58.34077923947581],[-129.55392885952736,58.34276030922581],[-129.5540183225036,58.346703385099154],[-129.55408086816843,58.34955971685122],[-129.54981990216342,58.3532401450683],[-129.54641368084307,58.356295763205445],[-129.54513825967075,58.35750670536836],[-129.54423372605615,58.36093675596494],[-129.54069770101265,58.367995073132626],[-129.53857406055295,58.3702887791329],[-129.53299475759272,58.37346404409832],[-129.5265298492788,58.37608705399925],[-129.52267163345698,58.37861463420792],[-129.5215483331198,58.381942423652255],[-129.52235099042647,58.38381781292082],[-129.52317319166667,58.386789179270025],[-129.52299095774433,58.38833082526858],[-129.52240885435558,58.39159057870917],[-129.52134379327686,58.39765813356249],[-129.52125944042362,58.40388884407705],[-129.52126613313052,58.40423020490898],[-129.5213778616898,58.409323375486466],[-129.52275807215239,58.4128555003835],[-129.52498642488038,58.41517905607546],[-129.52774099835182,58.41676079742225],[-129.5345417960162,58.41924315084105],[-129.5314364547352,58.4215984826743],[-129.52789633085496,58.42390219763325],[-129.52499724293125,58.425640791171595],[-129.5209025382933,58.427662201135256],[-129.51810134464625,58.42894868097109],[-129.5171360717723,58.429692897913064],[-129.5116061994023,58.430753755409995],[-129.50216141879005,58.43183518662118],[-129.49791770462645,58.43203517778227],[-129.49373484652307,58.42966291604943],[-129.48839190360292,58.42928889292954],[-129.48114049088807,58.43116594595931],[-129.47528357567992,58.43239550518889],[-129.47427241700353,58.430749821789966],[-129.47177952233773,58.425906698874996],[-129.469052651016,58.42026070756503],[-129.46891615138549,58.4188351863285],[-129.46260572407488,58.41887154475805],[-129.45693575678007,58.41833396325953],[-129.44996107071358,58.41768573508714],[-129.4485264648862,58.41677874634835],[-129.44881664483177,58.41494687048373],[-129.44820927994272,58.41163705602522],[-129.44631011539073,58.40907927355375],[-129.44463806007968,58.40702795415963],[-129.44094714246708,58.4017298437742],[-129.43970352511454,58.39939794298514],[-129.4387807253883,58.39659950979173],[-129.43555651348288,58.39284422816907],[-129.43377664854106,58.39080458502663],[-129.43355062763692,58.39039693845297],[-129.42821690067927,58.39002946365867],[-129.42168890403713,58.389844890875366],[-129.41235405230069,58.39057588515998],[-129.41045977367745,58.38812547437456],[-129.40661932705797,58.38637132485232],[-129.40104487472786,58.38457997953342],[-129.3923441727741,58.384394921712016],[-129.3894074568293,58.38440592320549],[-129.38290224228302,58.38524341547796],[-129.37474889442288,58.38527713005534],[-129.37191913419153,58.38512331023449],[-129.36096500654298,58.38661018836681],[-129.3570699162302,58.387713785519445],[-129.34926413097128,58.38906729441165],[-129.33742099125865,58.38957680737347],[-129.32514436529584,58.390158874438505],[-129.31276192937307,58.39084126586005],[-129.29389224711295,58.394071572412415],[-129.27945354431347,58.395672763604864],[-129.25973849132987,58.4011293371954],[-129.25184973132866,58.40464474053592],[-129.24915183152422,58.406201489989556],[-129.24669954690043,58.40981010066116],[-129.24286778182912,58.415941034139344],[-129.24129500649698,58.42029224145391],[-129.24135614876002,58.42469405367919],[-129.24206731510395,58.4289724333293],[-129.24396264955118,58.432287780327975],[-129.24672050975082,58.434953317068064],[-129.25001890885952,58.43729126912908],[-129.25376069842775,58.44018461957053],[-129.2562970511182,58.442459948494836],[-129.25511977785544,58.44389026207513],[-129.25144998520983,58.44619842299753],[-129.24548730055034,58.44804939986343],[-129.2397276157285,58.449041505426855],[-129.2388563956991,58.44905342865906],[-129.23265416953288,58.449471719065286],[-129.23014129475155,58.4487949865859],[-129.2270672160984,58.446864534986695],[-129.2211485866273,58.44403141747144],[-129.21918979945622,58.44397930718627],[-129.21832847456335,58.444844572897374],[-129.2150033937206,58.448967713016685],[-129.21023936679438,58.45098623109693],[-129.20502575338344,58.452260390378235],[-129.19904670099913,58.452914450613875],[-129.19380375267062,58.451852405853366],[-129.19195195580332,58.451914181906496],[-129.19034205051435,58.453803428511264],[-129.18580946635677,58.45719049301412],[-129.18515946473536,58.45742150337721],[-129.1780972987569,58.45910663208572],[-129.17103620078976,58.46089919086699],[-129.16779327839203,58.46279953997412],[-129.1654283893239,58.46572164212097],[-129.1637290782135,58.469436886773465],[-129.16050902042463,58.4739066285101],[-129.15858256440748,58.47723173833346],[-129.1512765503575,58.47673739722922],[-129.14178825221373,58.476086760124616],[-129.13579286216753,58.47610926388954],[-129.13067529135853,58.47674918286045],[-129.12951363968926,58.479957247871155],[-129.12770311731688,58.48413288746642],[-129.12568058093515,58.48876273968574],[-129.12395231788005,58.49037532743591],[-129.12257124093065,58.49374120715912],[-129.1212951030075,58.49700580682615],[-129.11935839473563,58.49975544863145],[-129.11687219929894,58.50193361665852],[-129.11720408135008,58.50244717916616],[-129.11907363483584,58.50387783634299],[-129.1196311336773,58.50506916534512],[-129.12084622729907,58.50661376279005],[-129.12424678713865,58.508314553787216],[-129.12556429241886,58.50911086572461],[-129.12689835967086,58.51139856660551],[-129.127573478396,58.513279136218436],[-129.12879409592728,58.515389727164695],[-129.1292604513054,58.518074952302605],[-129.12926846529857,58.51898242835724],[-129.1295991204028,58.519325259212486],[-129.13051281671483,58.52309653227857],[-129.13043152006816,58.52595622430386],[-129.12893965675528,58.529100198899485],[-129.12832051925668,58.53270028856334],[-129.12922296810302,58.53544738814923],[-129.13185077594184,58.53629425794455],[-129.13261550563854,58.53629452506075],[-129.13578774301274,58.53679619526766],[-129.1443182761445,58.53796421630048],[-129.1478180062937,58.538700651838305],[-129.1523060343829,58.53982738375905],[-129.15462063206513,58.54165174614077],[-129.15442134832563,58.54353471132046],[-129.15164511453273,58.54902767647778],[-129.15026318863917,58.55217842775594],[-129.15030534428954,58.556293622526894],[-129.1504488859229,58.559327997854496],[-129.15025006893057,58.56109414666593],[-129.14697946258664,58.561673515042536],[-129.14065376610955,58.56266523713852],[-129.13498935496776,58.56451311394208],[-129.13216916668614,58.566241047265656],[-129.1309834221951,58.567724422269436],[-129.12718582664834,58.570598266029066],[-129.11019258930628,58.57602256288759],[-129.1096477854852,58.5760260873901],[-129.10091343635352,58.57708016874292],[-129.09580602406334,58.580234720795346],[-129.09615789256546,58.58268919785567],[-129.0968524935582,58.586807496248234],[-129.09491979342718,58.59058143271057],[-129.09166408093915,58.593217183892705],[-129.0862225906998,58.59609139853375],[-129.08187725539253,58.59912919498142],[-129.0749062052491,58.602298354659425],[-129.06421053770268,58.60534469878296],[-129.0625751251406,58.605696225830584],[-129.05645840919564,58.606688116400235],[-129.0483812779326,58.60893712710355],[-129.04292317789262,58.61020117146953],[-129.03570939026133,58.611306601520816],[-129.0305785681338,58.612922298044644],[-129.02227344399583,58.61419518866375],[-129.01439222250883,58.61393030192545],[-129.00946952681804,58.613994745749665],[-129.00761515180218,58.61479981554209],[-128.9997541356529,58.61772408132334],[-128.99517269813288,58.61928130455265],[-128.99978301556996,58.62172276069307],[-129.00505288377366,58.62405959252394],[-129.0095548879853,58.62588303218506],[-129.01405512615662,58.62787713676055],[-129.0193231671643,58.629458567112934],[-129.02327469996175,58.63088042492732],[-129.02437644378224,58.632132084600734],[-129.02493773592116,58.63396200945007],[-129.02702987503042,58.635667904406034],[-129.02956357286035,58.63748973976091],[-129.03089222051764,58.63954518574232],[-129.03222228872212,58.641537682254956],[-129.03333196002256,58.6433104101723],[-129.03490093124785,58.64816464634743],[-129.03579720262746,58.65050838169424],[-129.03558030225403,58.65079185640969],[-129.02670276348937,58.650298125346815],[-129.02243255730465,58.650312427181674],[-129.0143318646915,58.65089708348935],[-129.0063441968904,58.652170796469],[-128.99836369958564,58.65436061010931],[-128.99541586988926,58.65579183500652],[-128.98688898034916,58.65900861486643],[-128.984279276186,58.661645479688644],[-128.98418148066062,58.66393948585293],[-128.98277368324287,58.66622634107466],[-128.97566668020488,58.669384215299424],[-128.96757898790216,58.67265302195315],[-128.96124573703614,58.677006540906596],[-128.95972207457032,58.67861261459755],[-128.95928306146175,58.67883788889265],[-128.9540296751779,58.680048781670536],[-128.95106825246071,58.679996334411875],[-128.9428470439394,58.679662460082326],[-128.9395528240564,58.679329370671255],[-128.93143735154004,58.67813870228387],[-128.92441812308007,58.67718459391945],[-128.91652354948695,58.67719262316519],[-128.9115983784283,58.67868239639198],[-128.91117021065014,58.680686799653245],[-128.90975729999673,58.68326054859637],[-128.9077879462484,58.6846328846589],[-128.90143727326435,58.68646735227288],[-128.89551967904922,58.68761821884464],[-128.89398559527726,58.68796547827299],[-128.89080953961633,58.689911502947375],[-128.88632639848413,58.69260423349465],[-128.88107317040436,58.69587037365473],[-128.87855644215477,58.6980447837188],[-128.8777975139757,58.70021787564872],[-128.87900908110058,58.701863897972046],[-128.88142802996754,58.70387078434478],[-128.88538854144966,58.706438099997605],[-128.88615648241193,58.706835224923346],[-128.891649750404,58.70860586172366],[-128.89439274085277,58.70928446165195],[-128.8981368678568,58.71259306647098],[-128.89803617001013,58.71430290297254],[-128.8970544106288,58.71641800421708],[-128.89760964394594,58.71767345947272],[-128.90069174181568,58.72001648167384],[-128.90223229432397,58.7212688747641],[-128.9034448166239,58.72241141773063],[-128.90520758393924,58.72423427151708],[-128.90873876743947,58.72846403963183],[-128.91061425386275,58.73125515572765],[-128.91061823123124,58.73194715650284],[-128.90425845496227,58.733781898873964],[-128.90283246980687,58.73412693213128],[-128.89658204186694,58.73585111334077],[-128.8894518979646,58.7379711934644],[-128.88506575154764,58.73992484926964],[-128.88078956871763,58.74181311331037],[-128.8772695477733,58.73970352462311],[-128.87166321415484,58.737709834738034],[-128.86836594226375,58.736853658473514],[-128.8640830241705,58.73674619287633],[-128.85859475401745,58.73766159564712],[-128.85310839370868,58.73870256328036],[-128.84805976843157,58.74012960666202],[-128.84422201858652,58.74247487193082],[-128.84192247036157,58.745740618910624],[-128.84115992772286,58.74807544261758],[-128.83644013632752,58.74905475842578],[-128.83325539618272,58.75065806640834],[-128.8336998924562,58.752320572800514],[-128.83556859830654,58.75351299394301],[-128.8367825825938,58.755626838976106],[-128.83315723231476,58.756088863847495],[-128.82722528116133,58.75569095032067],[-128.8241456122524,58.75569199332139],[-128.81953147823276,58.75472711067972],[-128.8145869729308,58.75323862626007],[-128.81216962130836,58.752560595283214],[-128.8045872982846,58.751018411279055],[-128.79525076397002,58.75142627310732],[-128.78690435373568,58.75280186464634],[-128.78525483307874,58.7527996929209],[-128.78635442767128,58.75451181681044],[-128.7871250669672,58.75691375031007],[-128.78690751016703,58.75914718762034],[-128.78657673751283,58.760627968959035],[-128.78713125378883,58.76331297582943],[-128.78812102211745,58.764739754564644],[-128.78977136389815,58.76668328032206],[-128.79251790754194,58.76982667573035],[-128.79285202932203,58.773316162828486],[-128.78977511456605,58.774511751007275],[-128.78504767278594,58.77468045700759],[-128.779994851863,58.774577015232566],[-128.7762553967785,58.773889352814344],[-128.77284908407836,58.77366217890815],[-128.7686710465244,58.77372025726306],[-128.76273343575727,58.77337352275452],[-128.75712959622595,58.771725520044654],[-128.7522926796887,58.77155377261825],[-128.74756627915025,58.77229637976518],[-128.74657954625033,58.772469085859825],[-128.73954288545312,58.77263784837509],[-128.73547591093765,58.77253089475822],[-128.73239988758965,58.77166693814222],[-128.72327947457933,58.76949494089482],[-128.71547798128591,58.768356589678284],[-128.70899534548334,58.768584632048345],[-128.70239946702105,58.768580936529624],[-128.6983324188915,58.76777186044991],[-128.69537012529716,58.76561064657966],[-128.68977066948347,58.76434634659923],[-128.68284770496297,58.76423134703678],[-128.67779205870926,58.76474433371726],[-128.67460708865755,58.76342290980343],[-128.67098580703356,58.76239757640994],[-128.66922465268632,58.76217149865532],[-128.66351496712386,58.76130375457718],[-128.65780236636405,58.761020004280084],[-128.65340530227542,58.76164504230961],[-128.65098267461576,58.76330096872261],[-128.64822742730524,58.76563736728802],[-128.6460209484,58.768322534576946],[-128.64304058615434,58.7713552282736],[-128.64226794411277,58.77215212284859],[-128.64138320639563,58.77444308277075],[-128.6410474262808,58.77684022950713],[-128.6412519482017,58.779748170632665],[-128.64113972712488,58.780954658987625],[-128.63969447176092,58.785575262154566],[-128.6382531689513,58.78861399657052],[-128.63483216267846,58.792544852293574],[-128.63053039108772,58.79540514901165],[-128.6297590709269,58.79562675639813],[-128.62204329784004,58.79973900500373],[-128.61498314214379,58.80424266593993],[-128.61012639262006,58.80829932340361],[-128.60394127985268,58.81337882837917],[-128.6013944786933,58.81633946860741],[-128.59862980775424,58.81948397399497],[-128.59597885843235,58.82119721583173],[-128.5916723910994,58.82421814878963],[-128.58802179132758,58.82775677269394],[-128.58780005520472,58.828219357563476],[-128.58107449519562,58.829919714006664],[-128.57600125417017,58.831453705582504],[-128.57235808323523,58.83316724858513],[-128.5720181816588,58.83505210302985],[-128.572007986696,58.83682288884272],[-128.5716654383623,58.83899541146429],[-128.57164797877903,58.84179095896611],[-128.57086635689762,58.84407962698222],[-128.56920054642669,58.846762446855145],[-128.56709203236215,58.84887835698918],[-128.56565573291962,58.84989405343606],[-128.5608004005446,58.85132449353367],[-128.5555038152234,58.85286189088307],[-128.5514167219104,58.85434051050059],[-128.55019779258703,58.85582833529319],[-128.55106767319322,58.85742091560843],[-128.55248948961915,58.85925483452255],[-128.55379997198366,58.86102791385095],[-128.55511221520223,58.862917799236186],[-128.55554212085897,58.864860159341575],[-128.55509508448498,58.86600102977518],[-128.55309490250625,58.8686270406278],[-128.55087483171386,58.87085267048604],[-128.54976289851973,58.87256322024729],[-128.5497539799381,58.873884647050104],[-128.55172211839874,58.876679148615956],[-128.55302878182727,58.87943208204355],[-128.55344880199516,58.88257012490033],[-128.5532073686007,58.885765495170496],[-128.55032458634165,58.88862374017341],[-128.54944152771955,58.88890988233297],[-128.54657098245647,58.889017380183525],[-128.54149798617215,58.889237736883665],[-128.5404970357693,58.8900922795422],[-128.541474142049,58.89272566378371],[-128.54101629353042,58.89558350640124],[-128.53735973630413,58.89797050528279],[-128.53481191199936,58.89950989635969],[-128.5320432814636,58.90121512505584],[-128.52729278503557,58.902237905583156],[-128.52276141285796,58.90326545912658],[-128.51878424063818,58.90388715032851],[-128.5185498865617,58.90565320488577],[-128.51842705310878,58.907543045871044],[-128.51840763556598,58.910401743602726],[-128.51828160279817,58.91262423193777],[-128.51209060488614,58.91433816073544],[-128.5041209964769,58.91728887297381],[-128.49692168401978,58.92030593408775],[-128.49360665169877,58.92122037653698],[-128.48851994189303,58.9218344341902],[-128.48476266207146,58.922567951260255],[-128.48055441031434,58.92404660744954],[-128.47467768706272,58.927397999230564],[-128.4716762032599,58.92974438775083],[-128.47000031811908,58.93173418808561],[-128.46954780802085,58.933054696680976],[-128.4704174392602,58.93454008025498],[-128.47194765994726,58.93659778164869],[-128.47346644122467,58.939914098724365],[-128.4752074038629,58.94294774720334],[-128.47498520803228,58.94311356670237],[-128.476283732458,58.9462630934498],[-128.47681562997212,58.94842875278204],[-128.4767954245195,58.951404426554866],[-128.4753398933253,58.95351619695924],[-128.47532607458524,58.95506253736352],[-128.47574592956184,58.957401047779655],[-128.47727328065304,58.959863337868725],[-128.47793364051066,58.96026487081933],[-128.4816829028086,58.961356487159456],[-128.4863183304717,58.96217122134964],[-128.49293856535436,58.96343506031],[-128.49823588045388,58.964533981563086],[-128.4994496953349,58.964700583076564],[-128.50308965341645,58.96562284266411],[-128.50506741134066,58.96734852570932],[-128.5054943697955,58.969237432947935],[-128.50558818972064,58.97179765099459],[-128.50534956331362,58.97397742606761],[-128.50365829561395,58.978143464779436],[-128.49977209222467,58.98036295587201],[-128.49600437859905,58.98126772822291],[-128.4919117829441,58.98137825876218],[-128.48869860400123,58.982227782352574],[-128.48459650431388,58.983479908725094],[-128.48270618578715,58.98489856569048],[-128.48281497068183,58.98507637939355],[-128.4846797310928,58.986849405154004],[-128.4839716803295,58.99221994253877],[-128.48395421943698,58.99439570842457],[-128.48304135679433,58.9978102950049],[-128.48169610159036,58.9999831795406],[-128.48136054154025,59.00050166436066],[-128.46910777046585,59.007177627606964],[-128.46613928205198,59.01127642851499],[-128.46805306845422,59.01500862517847],[-128.47057592448695,59.021372831161806],[-128.46494337193545,59.02557362208503],[-128.44448263292895,59.032943189177686],[-128.43858407320823,59.033767452451094],[-128.43252620564144,59.031843414890254],[-128.4242504538643,59.029904439784055],[-128.41281750525232,59.03978812562087],[-128.41264792842122,59.04236219170555],[-128.41633790819526,59.045983041074265],[-128.4325609310829,59.064907951466296],[-128.43282721241522,59.06782505372159],[-128.42933953714294,59.069855727203766],[-128.4230821799115,59.07153968567791],[-128.4190281645868,59.074029607484945],[-128.41861426879032,59.0775161498133],[-128.42039731718586,59.082042822060004],[-128.42683593609388,59.09203441856338],[-128.42969414632063,59.09834022052622],[-128.45587473999842,59.110911120729],[-128.48631797079136,59.106569099484766],[-128.501808727147,59.09927472250628],[-128.50932462113929,59.09594574678492],[-128.51592349074792,59.093927863249924],[-128.51925376864943,59.093992657069926],[-128.52332366347503,59.09619263264331],[-128.52765043431324,59.10221799297453],[-128.52598449555146,59.107760246910935],[-128.52132341750107,59.11288100157042],[-128.51413099541324,59.11668129490004],[-128.503933672755,59.12050904133955],[-128.4955272087138,59.12361116362205],[-128.4776286153223,59.13889672032137],[-128.48998210606945,59.14416727335827],[-128.49723813916214,59.14844152967424],[-128.5041460656975,59.15356702925864],[-128.50673154338045,59.157755051388044],[-128.5109254143082,59.159665729122764],[-128.51262602803482,59.163627074331075],[-128.5090751409373,59.16858353776182],[-128.517071117806,59.17514552262041],[-128.52543216611346,59.174848398082034],[-128.53525947785255,59.1793076157101],[-128.5434469147918,59.18220488479527],[-128.555889376724,59.18415945343041],[-128.56274281529124,59.187053443168395],[-128.56470441931273,59.18940890756565],[-128.5675141141929,59.19411359397748],[-128.56993227386556,59.20190109678681],[-128.55737464115717,59.20566911738955],[-128.55566510649345,59.20760732907105],[-128.55314401246596,59.21119726356229],[-128.5493916555306,59.21495385082158],[-128.53815181062808,59.21953200774221],[-128.52860849520866,59.22268419738371],[-128.52075984340485,59.22458167797051],[-128.51012891218681,59.22618770658043],[-128.50519132096107,59.22764450880336],[-128.50291403407687,59.22992512370329],[-128.5045011940082,59.23415890522941],[-128.50985538453583,59.23973603760091],[-128.51196761017133,59.240147197739866],[-128.52089085832026,59.24037093319513],[-128.5398813742517,59.23943762628123],[-128.54876908522093,59.24160274599379],[-128.55518333615447,59.24472153006718],[-128.55836674669328,59.247477379334825],[-128.57841916154393,59.26800477702049],[-128.58779084939812,59.274799434278926],[-128.59499053468218,59.27815379830297],[-128.60648682739796,59.27883641516109],[-128.62070882812327,59.27695696547015],[-128.64306919175078,59.27608053674673],[-128.651333573466,59.2763536217703],[-128.66418718010638,59.276006972716985],[-128.67641043155137,59.27302703135331],[-128.68774991189704,59.26946958913795],[-128.69279861285472,59.26788702343306],[-128.70622210628989,59.266571865258854],[-128.71930023634638,59.26581984865346],[-128.72625402999637,59.26378469830372],[-128.73353281203322,59.26238134733501],[-128.73999922764685,59.263035489968516],[-128.7446977877918,59.270830223721696],[-128.75020809051037,59.27651298383211],[-128.7603646284447,59.28570064345354],[-128.76662223621005,59.28578215922362],[-128.77153439412413,59.28631319422959],[-128.7765130888828,59.29016187410412],[-128.7819393852845,59.29424426321864],[-128.79042516307624,59.29512533050043],[-128.79306162262023,59.298912937696166],[-128.7932296603424,59.30348812976937],[-128.7877290046476,59.30523650072596],[-128.77810447472373,59.305781394838455],[-128.7774232468393,59.306694632967044],[-128.79338881924446,59.31812944394599],[-128.7937811360567,59.32253832417768],[-128.80055589778527,59.326674007479106],[-128.80051636761888,59.330111171089676],[-128.80338298451127,59.33377725955641],[-128.80277723307296,59.33766675778898],[-128.8043111432763,59.34046932823647],[-128.80876374949426,59.34260085997626],[-128.8125507082576,59.34409810728538],[-128.813861232086,59.34702211879722],[-128.81776504595214,59.35818775195705],[-128.82322583610556,59.36037934852015],[-128.82353873347634,59.362604044173565],[-128.82091536948826,59.36671496986311],[-128.82156119384678,59.36894189373106],[-128.82591626381793,59.37032834955485],[-128.83217200013337,59.37206260278374],[-128.83494613151763,59.37453377432491],[-128.8352393235778,59.378306336605334],[-128.83981250011192,59.380434662778086],[-128.84640574393745,59.3819994778782],[-128.84880031752706,59.3888147324257],[-128.85135679017463,59.39082233767747],[-128.85378978227064,59.39414601208485],[-128.85406502109376,59.41073997571223],[-128.85604121160674,59.41497290381507],[-128.86268937254496,59.42323011508765],[-128.861085247189,59.42635841033885],[-128.8661562576749,59.43547604540775],[-128.8564803904567,59.437736443534234],[-128.84669788751157,59.439188555448],[-128.83670037104238,59.43978959800649],[-128.82804154345004,59.441199354516456],[-128.82039015438875,59.442606042571754],[-128.8126369830607,59.44315060508986],[-128.80565651758266,59.44490273741104],[-128.7917982249753,59.4488627250657],[-128.7825480458682,59.452377910935084],[-128.7730549774529,59.45686905743189],[-128.7662554242265,59.46153073490577],[-128.75968524155786,59.465800617291315],[-128.75447450198445,59.4688644899285],[-128.749069805515,59.46970960128819],[-128.7395404228603,59.46824273864886],[-128.73382027728556,59.46752791925204],[-128.72515582937714,59.4684723419438],[-128.7154660420941,59.470318057099455],[-128.70272347802705,59.47336531306726],[-128.68894455402557,59.47788006323549],[-128.681936145414,59.480652067991834],[-128.6770592622239,59.48326560530083],[-128.67553452697516,59.48743387843511],[-128.67545038878504,59.49275305731087],[-128.67437219434393,59.496930755754015],[-128.6682413295445,59.50055791957668],[-128.6656310614963,59.501994873072064],[-128.6388425239995,59.51673126763908],[-128.63126952098753,59.518872572034816],[-128.6220108554261,59.52065840551799],[-128.59390797917257,59.52516345654868],[-128.5868962481493,59.527129840782706],[-128.5605710748092,59.53232369581557],[-128.55347208058637,59.53257141384763],[-128.5435635357502,59.532798287821365],[-128.53304895987586,59.53503297304395],[-128.51641588716225,59.539123395060074],[-128.50115563954836,59.54207137010233],[-128.48740469152202,59.54267825157035],[-128.47435882827818,59.5419215865267],[-128.46941408998973,59.54137978285236],[-128.45609970454566,59.54267759100409],[-128.43268110154926,59.547399495665296],[-128.42966682140377,59.551150170897934],[-128.43165338957795,59.55785449707632],[-128.43435614710017,59.56279180889092],[-128.42732698658946,59.56469630040782],[-128.41258680684768,59.563747335532774],[-128.4100243300929,59.5721415452937],[-128.39760841064154,59.577610899035726],[-128.38239221661348,59.57751261705575],[-128.37773094920055,59.57914001426769],[-128.37172632371636,59.584884103721244],[-128.36863675817477,59.59126216409573],[-128.36860114933958,59.597273306587276],[-128.3722076976714,59.60187275312531],[-128.38048360172223,59.60478168496089],[-128.3893059890434,59.6086075838814],[-128.39149573372222,59.611197419653934],[-128.38951975978713,59.613759862899535],[-128.38356380097255,59.61732633598521],[-128.39321236733267,59.619671249781966],[-128.399482315876,59.621767876628304],[-128.4059107688569,59.62678600322761],[-128.41530947046078,59.635135890708796],[-128.42235022274846,59.64313043709419],[-128.39868026843547,59.645789894331415],[-128.38773598503343,59.650009428361365],[-128.3671336720687,59.66074573466424],[-128.35132127069576,59.660410605334285],[-128.3480849806605,59.65878242167896],[-128.3376731788782,59.6506517800204],[-128.32957532709042,59.64065518813711],[-128.31482440003987,59.63048123594191],[-128.30221096105038,59.62501263894195],[-128.2794567526169,59.61913363015349],[-128.26763818021877,59.61802204030142],[-128.2575487302636,59.61960773189267],[-128.24648098157508,59.62381782675202],[-128.23309826708984,59.625949713433194],[-128.21513334634574,59.63026776146352],[-128.19706370829843,59.63418920824639],[-128.17992728510816,59.63703193526954],[-128.1698459040089,59.63803519982485],[-128.16116142990816,59.6376214132097],[-128.14783889466347,59.6340305893384],[-128.12663602331364,59.6296774191301],[-128.1099139168369,59.62312993173052],[-128.09424069158484,59.61572809716023],[-128.08202937333638,59.609622463576585],[-128.07498137227722,59.59096956306662],[-128.07473804302967,59.584846553720965],[-128.0674015341083,59.5784334360298],[-128.05736782477874,59.57177211263944],[-128.0465067294648,59.56641782006556],[-128.03541262727958,59.56460161438421],[-128.02377321926122,59.56551826647551],[-128.01167969206656,59.56655745835637],[-128.00263682734197,59.56321563652372],[-127.99937820800666,59.561949162506785],[-127.99295915083493,59.561798482897686],[-127.97239154825134,59.562244859605],[-127.9606874297383,59.56488431425666],[-127.94964583363941,59.5700862720284],[-127.94076951805935,59.57605777456817],[-127.93420679263018,59.58359784519917],[-127.9327680744472,59.58988806686134],[-127.93023175610553,59.594016509919044],[-127.92438588891258,59.59710222126872],[-127.91761611431099,59.5996246751556],[-127.90899492033482,59.60376454098096],[-127.8997082804711,59.608254820354325],[-127.88305221820521,59.61168389019142],[-127.86157381764315,59.61269258702114],[-127.84859259803997,59.61202900356474],[-127.83555510793258,59.60981763691261],[-127.83067493265008,59.60575276752255],[-127.82433674560721,59.5988012378242],[-127.81328263725923,59.59211800377617],[-127.80819968876624,59.59304776647183],[-127.80601323829339,59.593444998123424],[-127.80318183640972,59.59609948347737],[-127.803010963044,59.597585994152375],[-127.80063324187572,59.60039648315273],[-127.7976135050132,59.60407883692075],[-127.7954618231223,59.60689533428758],[-127.79440500838433,59.60884308226432],[-127.79283818452018,59.60914215247832],[-127.78866642416608,59.60906990074309],[-127.78552057421773,59.60933520202138],[-127.78132554290387,59.61176388344852],[-127.77838129495335,59.614527304449275],[-127.77476773855872,59.61747013135564],[-127.76598625281585,59.620919344014226],[-127.75703416261562,59.622651917939386],[-127.75101574246608,59.62465290232361],[-127.74991011832421,59.62522455864278],[-127.74965329339614,59.62762972856931],[-127.74970441562152,59.629113437151084],[-127.75113748030842,59.634744987607505],[-127.75140956594767,59.639311641332014],[-127.75036771709027,59.64177172546984],[-127.74815829550988,59.64315791800615],[-127.74472767714568,59.6450091966643],[-127.73816655956638,59.647754147529014],[-127.73442112873659,59.65030182430793],[-127.73515795361182,59.65206493665335],[-127.73864826476152,59.655224149321484],[-127.74088708676588,59.658057075944704],[-127.74405019945819,59.661454200046194],[-127.74520833608784,59.665542158411924],[-127.7472447328789,59.66906133541563],[-127.75216866294427,59.67106876646764],[-127.76140554540503,59.673903287363906],[-127.76505326767439,59.67494576106605],[-127.7700763804654,59.676501501910764],[-127.77512060291717,59.67867759307699],[-127.77794338156163,59.681898531442194],[-127.78008519032981,59.684957189711994],[-127.78283605571045,59.689321634484784],[-127.79076427383195,59.69325079003012],[-127.79191411794176,59.69380284646865],[-127.79169403130265,59.69705369690985],[-127.79047017684142,59.700776321287464],[-127.78740840276338,59.70360478364319],[-127.7875193759672,59.706680485489485],[-127.79089761723468,59.709615326934944],[-127.79530868697442,59.71288772863819],[-127.79461777398096,59.715631891546984],[-127.79246393802303,59.71861080775633],[-127.79188712344433,59.72147048651272],[-127.79089956842363,59.72547816568702],[-127.79090608250523,59.73192053432963],[-127.79229758804689,59.73613170176348],[-127.79593303127899,59.742878495300594],[-127.80062189024207,59.74746114775587],[-127.80576127273493,59.75197488472555],[-127.81012185091058,59.75677753148329],[-127.80913072502233,59.76060569231501],[-127.80301509642126,59.763573259267076],[-127.79949948816763,59.76651609605509],[-127.8037624669143,59.771788266709095],[-127.80609188843701,59.77359389559072],[-127.8104221457231,59.77747928268749],[-127.81517631320237,59.78370776178548],[-127.81545587075264,59.79135319576014],[-127.8145960577135,59.79256122181431],[-127.81077941184722,59.79664226117126],[-127.80494741750123,59.801433175296985],[-127.79856648713894,59.806743882001406],[-127.79389601816949,59.80917964804138],[-127.78505724373612,59.81234345893785],[-127.77119622948757,59.817838199307],[-127.76392029189363,59.82371667448951],[-127.76063816951142,59.827114775043185],[-127.75654026262008,59.82994709062469],[-127.74643131424013,59.83266544307303],[-127.73776608040762,59.83468118431382],[-127.72858006048665,59.83807073627243],[-127.719870630428,59.84208379727895],[-127.7177081897127,59.84867103420253],[-127.71426818713815,59.85434698422047],[-127.70465545791721,59.85876619778226],[-127.69591582170438,59.85866530720397],[-127.68881063568581,59.856618238696164],[-127.68260554950638,59.85421802985628],[-127.67186579948626,59.851916780458296],[-127.66218068125498,59.85068215626707],[-127.66133472066458,59.85616391397257],[-127.66204253748612,59.86054733114407],[-127.66658595842095,59.864273217899395],[-127.6744854920875,59.866257954441686],[-127.67878006716373,59.86931149458199],[-127.67994215431366,59.87357251667778],[-127.6778966139526,59.87696301419065],[-127.67467480345593,59.8792155578433],[-127.67179429327199,59.881463961021694],[-127.67209139631822,59.88722047985109],[-127.67520348865654,59.89204342504615],[-127.67654087520629,59.89830064440764],[-127.67742365388689,59.900918195547035],[-127.68851194889334,59.89603288903639],[-127.7022557111261,59.89597468012933],[-127.71834967799971,59.898172451895846],[-127.73890582305498,59.907801673534586],[-127.7427978629373,59.91529601532871],[-127.74410994009436,59.923605564133986],[-127.74525599269201,59.933753544662565],[-127.7425382878244,59.93748681496175],[-127.73445019499954,59.940521414165865],[-127.72780524158581,59.94246663755033],[-127.72545239505156,59.94362074203644],[-127.72119212629603,59.948857812220176],[-127.72161969666331,59.95466748820463],[-127.7232004876454,59.97124709027911],[-127.72785486102738,59.98084891782212],[-127.73015237781816,59.99480088072238],[-127.72921450744029,60.00008774269539],[-127.83695030774581,60.00039669357853],[-128.21274421336733,60.00082850831405],[-128.60000443831964,60.000222043389314],[-129.04946329943564,59.99818170561853],[-130.5757127976026,59.99849900310536],[-131.10858430939257,59.99832095540589],[-131.64519199267133,59.99793065931641],[-132.401868786655,59.99820120570144],[-133.8152138884425,59.99823536432027],[-134.61141543137754,59.99825384329495],[-134.88893986000426,60.00223207902473],[-136.85245544825068,59.998100714803826],[-136.8525138428472,59.99813259695702],[-136.85271877549943,59.998273737209786],[-136.8528867023421,59.998388160867286],[-136.8531101813402,59.99853810251911],[-136.85327931637147,59.99867861285752],[-136.8534302856142,59.99881143020442],[-136.853581255982,59.99894424742384],[-136.85374971038604,59.99906773603051],[-136.85388336289992,59.99921783693228],[-136.85396495228864,59.99938792525693],[-136.85400399452462,59.99945432379811],[-136.8547873274981,59.99945256023924],[-136.86748476713188,59.99944397466532],[-136.8772832921283,59.9994360781467],[-136.882708045242,59.99943413323806],[-136.90077714143783,59.99950308115904],[-136.90252164489766,59.999505619172865],[-136.91751899623156,59.99956203895059],[-136.92958339463783,59.99961561349746],[-136.95238665457555,59.99969396945919],[-136.96619141476282,59.999758020127445],[-136.98475988989935,59.999830446396906],[-137.01673478839737,59.99995223986842],[-137.06582308380894,60.000145865483084],[-137.06690498883847,60.000146558926154],[-137.08479579599586,60.00021630792415],[-137.09759933578044,60.00026507475413],[-137.10149914809526,60.00028379815265],[-137.10344087382023,60.000288645607135],[-137.1168001750727,60.00034949847624],[-137.13880671148306,60.00043842103358],[-137.1641956182461,60.00054586460544],[-137.1658554347975,60.00055078158205],[-137.17895085049213,60.00060409540123],[-137.19977086208326,60.00069889005438],[-137.2106221797305,60.00074268678734],[-137.2407236960236,60.00075579690932],[-137.24773340968153,60.000762360205584],[-137.25806237106804,60.000766031301424],[-137.26687673496278,60.000768310577506],[-137.31323635056742,60.000772638919905],[-137.32212457264953,60.000768878942395],[-137.34487931241839,60.0007625453201],[-137.36368674266646,60.00075416257739],[-137.38337315103658,60.000742138789995],[-137.38585615720567,60.00074218948078],[-137.3991645781273,60.00075192009021],[-137.41984840134376,60.000756924118505],[-137.46049753065793,60.0007690176007],[-137.53143872767154,60.00074781059956],[-137.59338718041136,60.000776849419246],[-137.691473784337,60.00078075667107],[-137.73632080576837,60.00072112486642],[-137.7950257749444,60.00073949169065],[-137.8572857946129,60.000741072278934],[-137.90044106285703,60.000720590239084],[-137.94490249655576,60.0007243192707],[-138.00055589632382,60.000894630848805],[-139.06222268537968,59.99960626795072],[-139.05474258161965,59.99477494149259],[-138.79946803276445,59.92458414530065],[-138.70829136507103,59.90626090861531],[-138.68035425358914,59.845302064853946],[-138.66954084133107,59.80959169152114],[-138.62707311555823,59.76851112390613],[-138.03533359143978,59.46682692316017],[-138.02337320526902,59.46063863363388],[-138.00054763550798,59.44883147336357],[-137.9640030559676,59.42990691385635],[-137.95810132920448,59.42684636993442],[-137.60786433361432,59.24377693667323],[-137.54260385795482,59.106405444137856],[-137.50551571115636,58.999985876057416],[-137.5004445446074,58.98538057427455],[-137.52655512722964,58.90635443654343],[-137.45214973220433,58.908340410692624],[-137.28327152730355,58.999985476058846],[-137.28324224286112,58.999999282880815],[-137.17601874133885,59.03215159278435],[-137.08495190982785,59.062768332828796],[-137.037322165369,59.07873034018619],[-136.97000636449678,59.10124436247577],[-136.87705120067898,59.136163900292914],[-136.8290371263821,59.1599655723572],[-136.5847225717385,59.16585737008533],[-136.4899878644698,59.259764237909735],[-136.4960456867097,59.27511668086155],[-136.46953352199088,59.284063443822426],[-136.47261627039612,59.31800599873637],[-136.47298534444522,59.32199462417102],[-136.4776805124054,59.37620804775663],[-136.4774407607405,59.46580504207704],[-136.37407408466976,59.44980548184178],[-136.37271732863843,59.44959536648623],[-136.36851764091554,59.44894402909803],[-136.3627780882405,59.45035559261219],[-136.36221559441748,59.45049110010231],[-136.3623108203597,59.45050892048723],[-136.36259648657995,59.45058169355219],[-136.36288188003223,59.45064199105563],[-136.36311252056282,59.45071095529952],[-136.36341791710402,59.45084244727605],[-136.36357898325727,59.4508996111184],[-136.3637784929015,59.45101862965542],[-136.36395915439874,59.45113793159531],[-136.36410663477568,59.45128472376667],[-136.36416655858366,59.45144606205861],[-136.3642082605997,59.451615588604646],[-136.36426818540951,59.451776926943914],[-136.36430797359068,59.45192047044157],[-136.36431288608765,59.452028017652495],[-136.36431569420571,59.4520993723114],[-136.3643554273462,59.45222928840775],[-136.36439811991883,59.45237715719652],[-136.3644558317993,59.45252503082678],[-136.36449757666963,59.45266388331471],[-136.36457352680287,59.45279788771966],[-136.36464993895302,59.452948896956386],[-136.36476197858846,59.453109718623196],[-136.36485531370326,59.45324809362235],[-136.3649679124609,59.45340887323259],[-136.36513278944534,59.45356003550519],[-136.3653330842931,59.45369717031682],[-136.3655322448857,59.45382075869471],[-136.36573092307145,59.45395801498315],[-136.36587723007258,59.4540776322878],[-136.36605871439406,59.45421504747443],[-136.366245319727,59.45432594928827],[-136.36189988808908,59.45375464570929],[-136.35807850433844,59.44907137901812],[-136.3026977496212,59.46231532333996],[-136.23514495155558,59.522651343601225],[-136.23741285937822,59.55750336257711],[-136.35021194464335,59.598007902500015],[-136.189658443117,59.637820749186865],[-135.99977759373894,59.655017969533844],[-135.95166352642403,59.661800937542154],[-135.47918744185603,59.798042326359976],[-135.35946664518593,59.737873191800006],[-135.25239871785215,59.69793726221047],[-135.23160740782694,59.69817055355993],[-135.21730755799103,59.66205765879292],[-135.15352870993618,59.62487439624885],[-135.13595965726796,59.62374043228242],[-135.11483288041728,59.62233983913796],[-135.02601209550545,59.5629164317576],[-135.02510658766454,59.473847062776436],[-135.07345617219872,59.451765071034586],[-135.09829681868501,59.427093232690005],[-134.9878357066885,59.386192673211895],[-135.0279429463674,59.34506857696497],[-134.95753453982277,59.280240145567596],[-134.69963878409402,59.24792887746274],[-134.67665517333154,59.19041823064389],[-134.56497670144446,59.1306837967488],[-134.48106764027096,59.131159940000366],[-134.44448000153199,59.08875317450023],[-134.37949529177146,59.03876228615348],[-134.3949814723213,59.00010837792467],[-134.40458790687333,58.97962097512302],[-134.31301156910575,58.96311994193226],[-134.33395513513713,58.924309001674146],[-134.256701642706,58.86164813048936],[-134.2552517326845,58.861202650751686],[-133.83822434244593,58.73047840560437],[-133.70110560709114,58.611450493152816],[-133.37602599366943,58.431746589500555],[-133.45931869469968,58.38876209830661],[-133.34411122954677,58.27790778844444],[-133.27874158166418,58.234863225377495],[-133.2427411108601,58.209218109392665],[-133.17789164221466,58.16053797750495],[-133.16936441999837,58.15352706329963],[-133.1559448984228,58.134059997519586],[-133.12235308739957,58.08342777360582],[-133.0672290699981,58.00005130516571],[-132.8678144049678,57.84038436864562],[-132.86727271202,57.83973643345486],[-132.7464001319254,57.69424777162892],[-132.66905249038552,57.62644326205541],[-132.55553558559913,57.5006660928158],[-132.4648849672236,57.42832171998007],[-132.39776957355082,57.37393992626353],[-132.36849243099815,57.35059751926746],[-132.31959906902458,57.2966455241741],[-132.24624552704958,57.21165039817932],[-132.3658302975748,57.091269141778746],[-132.04392870784048,57.04510602145448],[-132.06377874364034,57.00005695155241],[-132.12103474800978,56.87398370178612],[-131.87053621491495,56.80697288576414],[-131.8980498617292,56.754469536049264],[-131.85766612741858,56.70424364112611],[-131.84775027538234,56.66208294778403],[-131.84168290579927,56.636224102208324],[-131.83230200949464,56.60063284536978],[-131.57930218801826,56.61344953599196],[-131.47021636680918,56.55387107774184],[-131.17240029734697,56.451095929781],[-131.0866648953095,56.40713289114635],[-130.78096686398786,56.3673379532281],[-130.62754710582792,56.27003836876449],[-130.62372665969028,56.26730322747155],[-130.59422614772757,56.26056529372383],[-130.5392615639207,56.24752816244836],[-130.46394751177232,56.242769743303825],[-130.44754072085865,56.20296675581036],[-130.43640910289554,56.17463338790889],[-130.4226295289504,56.1417413912501],[-130.34702762808254,56.12851094675459],[-130.2438234285662,56.096763543403625],[-130.22619792063782,56.09996298977128],[-130.101719308489,56.122494251296345],[-130.00960189287036,56.0173321785347],[-130.00364249813993,56.011031906251795],[-130.0060630740834,56.00713237375398],[-130.00200814391937,56.00005398077717],[-130.01606807897338,55.912746865870666],[-130.00213154096645,55.912667976844446],[-130.00208342156438,55.91021059330933],[-130.08426164900303,55.82097046468687],[-130.12388881420884,55.80525061366311],[-130.15038005648228,55.766822105320465],[-130.14573501482155,55.71485862352811],[-130.11131191314666,55.682315554519526],[-130.126413423329,55.58077848820747],[-130.09091655404714,55.50156101528003],[-130.04062910337365,55.453911167758875],[-130.01805266591808,55.33852466824567],[-129.97393551132407,55.29978458772338],[-129.97330100309944,55.28178740534525],[-130.1007971471309,55.19313130931442],[-130.14447838121436,55.14205602935251],[-130.15066638782005,55.124807582502314],[-130.17851266108593,55.09213097220891],[-130.18625990405022,55.061778863389115],[-130.24718731071385,54.9998701209583],[-130.2827703849277,54.96487901003696],[-130.3271729064141,54.92121064708908],[-130.39250949911718,54.89081708803368],[-130.42939669233388,54.8697681172053],[-130.5296170983689,54.80152722687031],[-130.59195732799412,54.790795477474596],[-130.60592337191994,54.78465331398684],[-130.64779917509634,54.766226176895344],[-130.64164839934043,54.755155345805676],[-130.6306488949593,54.744330012781255],[-130.62905663578167,54.73033966795039],[-130.6226096332751,54.716550159431335],[-130.60159594480288,54.703289486062594],[-131.00117036830275,54.69889821675219],[-131.19577543340597,54.69298417012296],[-131.42156012724843,54.705358629863],[-132.01702263385448,54.67788821529675],[-132.68203042833042,54.66131374571547],[-133.93440246777618,54.23025496692671],[-133.45536254987877,53.10081314458159],[-133.45531205825955,53.100689594047275],[-132.60854119189614,52.372665204212055],[-131.71801038202236,51.6633007910513],[-131.20198261399824,51.617099631335044],[-130.7226837922304,51.717999603985405],[-130.15839615122493,51.83362586752288],[-129.63165632846273,51.98932669673295],[-129.63158949604681,51.98934621540206],[-129.00168771616853,52.32941358139882],[-128.99374004154558,52.33342772372428],[-128.9930582666909,52.33378080406584],[-128.98637334773383,52.33699378349214],[-128.9841062896663,52.33816348668521],[-128.9826245055809,52.33890677638553],[-128.9800010980401,52.34024655790885],[-128.9752515063529,52.342727488361476],[-128.97114913640146,52.34519779746835],[-128.9699428517159,52.34598097668286],[-128.96558706864082,52.34853384927774],[-128.96325449051196,52.34994488386951],[-128.96214281483503,52.35059597138537],[-128.95897311423536,52.352561211080285],[-128.9574341193696,52.353650618229445],[-128.9563537154437,52.35445175675288],[-128.95515332613883,52.355194222038726],[-128.9528298667091,52.35686957475345],[-128.95200822243,52.35750138749574],[-128.94705708079698,52.36116310764871],[-128.9431957805596,52.36430160487256],[-128.94200587407886,52.365339846339516],[-128.93863812784693,52.367911974301656],[-128.93476091378253,52.37106401028182],[-128.93392435935556,52.37175495818318],[-128.9322179477675,52.37344676454046],[-128.93141297894556,52.37429228638305],[-128.93040609862896,52.37506547536098],[-128.92963590787434,52.37565149306827],[-128.92765507693196,52.377631192965644],[-128.92368772028564,52.38175890152651],[-128.92289015196255,52.38269110942193],[-128.92195879783324,52.38361938896105],[-128.9209976085986,52.3844883824024],[-128.91993270622027,52.38549852740858],[-128.91815935195095,52.38748235174638],[-128.91547486439794,52.390917775681935],[-128.91399775444805,52.39263154396733],[-128.91321229159442,52.39329915780438],[-128.91213258416568,52.39434156482912],[-128.91172637625291,52.39480331346405],[-128.91129070010055,52.39530619665248],[-128.9107739763521,52.39595919186112],[-128.9104042386007,52.39637515326427],[-128.91005846752014,52.396927941913695],[-128.90980290357163,52.39756204690262],[-128.9096191332789,52.39792286017349],[-128.9092064246179,52.39846665917651],[-128.90874984316838,52.39917928410661],[-128.90842541577754,52.39980333302506],[-128.90797664054904,52.40041366489172],[-128.90756124978256,52.40112300813717],[-128.9071013374667,52.40189628981706],[-128.9065216025321,52.402709589501015],[-128.90571558597858,52.403950944666214],[-128.9055033937668,52.40443754618624],[-128.9051450572958,52.405516232262],[-128.90452414545047,52.406894860773875],[-128.9039544443717,52.408282300630134],[-128.90354472364217,52.40932412576346],[-128.90322408153736,52.41025264615116],[-128.90270006420116,52.411594622565126],[-128.90231056289954,52.41281430549108],[-128.90143510191152,52.41434230758998],[-128.90035644028444,52.41704044426483],[-128.89946939894122,52.41904213710549],[-128.89807211083786,52.42243140948442],[-128.89735237885662,52.42393696267672],[-128.89680779689468,52.42492376826041],[-128.89551678451346,52.4280354779768],[-128.8948096713099,52.429909785426275],[-128.8941425747615,52.431310781799446],[-128.89368598987284,52.432525911582495],[-128.89341076172374,52.43338144934746],[-128.89231921662133,52.43573760099882],[-128.89194492698994,52.436807071875705],[-128.89151188837158,52.43792175386847],[-128.89110899487056,52.43890891305825],[-128.8906836662795,52.43985063122111],[-128.89030956503603,52.44095149898758],[-128.88981813752676,52.44279066115],[-128.88948920614,52.44386459749867],[-128.8890406563618,52.444983568505435],[-128.88721479965554,52.45055795676075],[-128.8866333288515,52.452377997464346],[-128.88627086159417,52.45391663268198],[-128.88572877281908,52.45550009810635],[-128.88487773009962,52.458349368989445],[-128.884275723297,52.4609529430424],[-128.88386823125362,52.46242759795925],[-128.88323219369133,52.46453894921073],[-128.88289558440925,52.46554459991529],[-128.88210130854887,52.46788366799557],[-128.88148610745554,52.4692894075709],[-128.8810442717905,52.471314593657326],[-128.88076063831866,52.47315411316792],[-128.88039876115047,52.474555819913974],[-128.87792117526317,52.484683742631425],[-128.8766619243775,52.48900691791759],[-128.87620652548856,52.48999414361118],[-128.8759493832758,52.49126870390471],[-128.8756488516199,52.49248823456345],[-128.87531992403694,52.49339380260041],[-128.87485739234538,52.49433071294723],[-128.8742617746824,52.495900236779356],[-128.87373106973237,52.497889392971004],[-128.87332651174768,52.498962842543],[-128.87308499580817,52.499271687628486],[-128.87294750011327,52.49960376696997],[-128.87289933147537,52.49969806463778],[-128.8728900397086,52.499807664676716],[-128.87284495757098,52.50029339343721],[-128.87282536270703,52.500607980057524],[-128.87275353727003,52.50119084273828],[-128.87269577879093,52.50152825011146],[-128.87258273779017,52.502489052226906],[-128.8722727257554,52.50312714789545],[-128.8718654627094,52.503788389276735],[-128.87152753698595,52.504672286471866],[-128.87121256249773,52.50570649243962],[-128.87061547192343,52.508253648996096],[-128.87026498544213,52.509738560791504],[-128.86983414822245,52.51127873848671],[-128.86960039177143,52.51223071966337],[-128.8683961726758,52.51696009447519],[-128.86805379316218,52.51855472136358],[-128.86705703476068,52.52181670621122],[-128.8666770887807,52.52332026020828],[-128.86643037456426,52.52455074203174],[-128.86610280669726,52.52594026787561],[-128.86570691134312,52.52728883511284],[-128.86531583672368,52.529374848168445],[-128.86512372186232,52.53105100629074],[-128.86477684672502,52.53821975492851],[-128.86488853591393,52.539353918688825],[-128.86488187558749,52.54084714469569],[-128.8648140651811,52.54194981309348],[-128.86469643486984,52.54356635686412],[-128.86448097432333,52.54510172720228],[-128.86382019031927,52.54849556343428],[-128.86356654387143,52.54993034035064],[-128.86308130594466,52.55130181927236],[-128.86249495195935,52.55333368632255],[-128.8617953149073,52.55652315869593],[-128.86155855235629,52.55818521968989],[-128.86130083736933,52.56019890596853],[-128.8612859633807,52.56148758580768],[-128.8609615310876,52.56481701425674],[-128.86084202547607,52.56626979515419],[-128.86064177093417,52.56774585877816],[-128.86046271630448,52.570441854890596],[-128.86035063511162,52.57188154221145],[-128.86015208273258,52.57373053602501],[-128.85978254715815,52.57581703787113],[-128.85943330107716,52.577597927751775],[-128.85923393663748,52.57928315898203],[-128.85878259024423,52.582836056086656],[-128.85871735556918,52.58448041940818],[-128.8584430273515,52.58616578911189],[-128.85822891858032,52.588019625273624],[-128.85802757456165,52.58945418915675],[-128.8572571601811,52.592206108145476],[-128.85690719705872,52.59291013792722],[-128.8016803061475,52.59283119861739],[-128.79224889010317,52.592839071004946],[-128.77949482916188,52.59284852305203],[-128.773922550294,52.59285210914261],[-128.76599980456504,52.59285675524154],[-128.7550467669257,52.592862904326914],[-128.75493129492975,52.597676372509405],[-128.75433477176466,52.59769381550548],[-128.75323079871035,52.59773275583545],[-128.752476635867,52.59784532602209],[-128.75160303023063,52.5979853742086],[-128.75062431795408,52.59827539302051],[-128.7496603946645,52.59865198651909],[-128.7489363819301,52.598860274999474],[-128.74750273730578,52.59896693601606],[-128.74609276866983,52.599010210515196],[-128.7440474364482,52.59921590591904],[-128.74315958918012,52.599351181425895],[-128.74238976671228,52.59959584075594],[-128.74175529923755,52.59968589482959],[-128.73948133305637,52.59980377440781],[-128.73944739579773,52.599808501082244],[-128.7392465574508,52.59983620333476],[-128.73871300707023,52.5998840588802],[-128.7378648128871,52.59998863524553],[-128.73721202225448,52.60005274015737],[-128.73658236541604,52.60013143656379],[-128.73563575411865,52.60030335831649],[-128.7347513624569,52.60034820092003],[-128.73400996528594,52.60035771674572],[-128.73332676870655,52.60039502741078],[-128.73143517840612,52.60070680921873],[-128.73041515922608,52.60080133525806],[-128.72959121059122,52.60083687319414],[-128.72853249492232,52.600963127698165],[-128.72712009500532,52.60126028045564],[-128.72668423663805,52.60138991079058],[-128.72614341359122,52.601454702318044],[-128.72512318317388,52.60159012110022],[-128.7246655258971,52.60160977716241],[-128.72370476294898,52.60176399347985],[-128.7226616418831,52.60190328933903],[-128.7215739056597,52.60201053255874],[-128.72095140524786,52.60205701470026],[-128.71979751735464,52.602054742722565],[-128.71904119070214,52.60207740472306],[-128.71834989731678,52.60219165075556],[-128.71785516075826,52.60222503746666],[-128.71720191282634,52.60231202826806],[-128.71629367193418,52.60243411104873],[-128.71558872073388,52.60249369898007],[-128.71514106806913,52.60252542242897],[-128.71477584954755,52.60257317297497],[-128.71432073858367,52.60261852608351],[-128.70951279267376,52.60309474402618],[-128.70881441646316,52.60320011508981],[-128.70788403948498,52.60329460476467],[-128.7074406600865,52.60336489930502],[-128.70673581212878,52.60345582685477],[-128.70491107517785,52.603731981372796],[-128.7038594052061,52.60389878856043],[-128.7031013998388,52.604012800787864],[-128.70240276922792,52.604158516496284],[-128.70188150621044,52.60438817365869],[-128.70004059405932,52.60480538164041],[-128.6996271541392,52.6048665368155],[-128.69881676111922,52.60495705662116],[-128.6973460811074,52.605112178966195],[-128.69638628183904,52.605151740306646],[-128.69598819974644,52.605222056812856],[-128.69518599223284,52.60528095718036],[-128.69413964587562,52.60560738470962],[-128.69368023333223,52.60579126855172],[-128.69298867274094,52.60593284211931],[-128.6924619406309,52.606061637451916],[-128.69172632028005,52.60619412504125],[-128.69104983248184,52.60628094620891],[-128.6901944779483,52.60640776728961],[-128.68944294754908,52.60656696881224],[-128.68887904959723,52.60666407733353],[-128.68809835506167,52.606786363663424],[-128.68676186590753,52.60698761067093],[-128.6858320621533,52.60700451815681],[-128.68509567921672,52.607154926115115],[-128.68424916995264,52.60717214840162],[-128.68325926328274,52.607234159271215],[-128.68247208468296,52.60729766824286],[-128.68188677506305,52.60734869271897],[-128.68093536710134,52.60736044930556],[-128.67922526869654,52.6074770952547],[-128.6781975318082,52.60757077025657],[-128.67698950586424,52.607681472831565],[-128.67625338663376,52.60777742537343],[-128.67614912968264,52.607767477676624],[-128.67506071271072,52.607897284842984],[-128.6742491632152,52.608074585514004],[-128.67331052512012,52.60817290557465],[-128.672281290226,52.608376486512014],[-128.67164382475264,52.608422479535484],[-128.6705051108171,52.60842834217784],[-128.6698001370801,52.60846016697725],[-128.66763869524877,52.60871537814405],[-128.66716607065405,52.608748607416594],[-128.66647553443883,52.60878962009134],[-128.65712026004672,52.60916104329642],[-128.65596641267223,52.60916205653924],[-128.65588394265956,52.609175148277885],[-128.65448273320192,52.60921598587342],[-128.65361368241176,52.609228454794945],[-128.65073480541506,52.608867086257284],[-128.64895371185185,52.60874993264049],[-128.648017963407,52.60871620205414],[-128.64701504365266,52.608673327476886],[-128.64633253666366,52.6087095523521],[-128.64477880733628,52.60891803594647],[-128.64363097284777,52.60900123105641],[-128.64244507959307,52.60915762173688],[-128.64008980477414,52.60909257249341],[-128.639038005298,52.6090675671228],[-128.63731441025405,52.60907230010201],[-128.63628163533403,52.60901038491059],[-128.63375112953474,52.60892449927119],[-128.63121227038667,52.60889818106292],[-128.62922515004934,52.60852853329109],[-128.62848001593844,52.60831314757259],[-128.6276148826337,52.60810213577221],[-128.62655596392526,52.60783940835512],[-128.62551825831252,52.60759020955259],[-128.6233984123339,52.60719708831875],[-128.62218052602805,52.606996771294476],[-128.62138950128613,52.60683172069037],[-128.61994723124877,52.60663866169646],[-128.61845791427942,52.606523462401874],[-128.61729337629527,52.60628713056816],[-128.61576186801435,52.60607134694717],[-128.61442481778013,52.60584278196539],[-128.6132604173218,52.60563836742556],[-128.6114430980612,52.60543846288554],[-128.61086077432432,52.60531129289928],[-128.6082752947463,52.604955231537616],[-128.60595274903008,52.60455566862642],[-128.60507878747336,52.60444003127576],[-128.60417221433397,52.60444231231515],[-128.60362554506804,52.60442926587713],[-128.60306511750827,52.60435709056523],[-128.60274421544406,52.604313775564876],[-128.60229462600836,52.604314825522515],[-128.60167197561748,52.604162713860795],[-128.60105870076285,52.603814119256356],[-128.60064113978504,52.603626029396445],[-128.59832580596563,52.60317513110208],[-128.5946410089049,52.60288809671879],[-128.59064971239488,52.60349937518793],[-128.58886914786117,52.60483986056005],[-128.5881162236078,52.60726561849775],[-128.5875349757273,52.609363437504285],[-128.58704341123564,52.611583752523934],[-128.58679315631153,52.614506958060666],[-128.5864893533969,52.61711059411217],[-128.58593080645875,52.6200793092668],[-128.58487186543036,52.623316474222186],[-128.58366973382772,52.626622399428996],[-128.5825272277637,52.629937641326435],[-128.58138482845575,52.633503511850655],[-128.58017389512818,52.63654936964893],[-128.579075433592,52.63931290170612],[-128.57780409570682,52.64160639772159],[-128.57643487900236,52.64372203470361],[-128.57550757237834,52.64584248184332],[-128.57381634746378,52.64861451916289],[-128.57344217563266,52.64926201180569],[-128.572746343606,52.65083060218419],[-128.57144440625314,52.65352055600222],[-128.5705023937013,52.655928363843984],[-128.56926800666494,52.65947136463626],[-128.56844623910015,52.66242098252954],[-128.5677807413045,52.665243791418774],[-128.56672661851792,52.66861791594861],[-128.5657685774989,52.67113927740094],[-128.56435331971664,52.673811391408364],[-128.5626224692282,52.67632329639498],[-128.5610107180691,52.67828864788215],[-128.55922632824303,52.67991121646411],[-128.55726142019114,52.68110537180779],[-128.5553790023112,52.68209919910421],[-128.55439648046683,52.68259559409658],[-128.55464365323544,52.68297878620311],[-128.55471901570627,52.68348067548767],[-128.5549225135796,52.68445190001659],[-128.55514078423568,52.686120903984786],[-128.5553749369221,52.68793142779504],[-128.55573607875553,52.689896744081494],[-128.55631535526666,52.692067559370074],[-128.5567366995727,52.693704645516874],[-128.55754860584724,52.695701584845],[-128.55823978003195,52.69712025474324],[-128.55881889249406,52.69829239991021],[-128.55954792758902,52.69927286809453],[-128.55998883048434,52.69980768250489],[-128.56052247884324,52.70086923384128],[-128.5614744043291,52.702628705609975],[-128.56216431366644,52.70450212121968],[-128.56107671407497,52.70668975313149],[-128.5606179708853,52.70889557849862],[-128.56011535869558,52.71225968429807],[-128.55930420888745,52.71510401413275],[-128.55844831171856,52.71876851222709],[-128.55742000678023,52.721631004911856],[-128.5562867812733,52.72502228616784],[-128.55503244383118,52.72898307249383],[-128.55407794059073,52.7322190159068],[-128.5534838792782,52.735774537638825],[-128.55285243395483,52.73923385362942],[-128.55209320489922,52.74279351207952],[-128.55124355457136,52.74661303896735],[-128.55071641400542,52.74927497105632],[-128.5501140338751,52.753026285875556],[-128.54949757150928,52.75599852737438],[-128.5490084395758,52.75841400795507],[-128.54854915753984,52.761486536324],[-128.54809603454058,52.76477255147224],[-128.54715574434601,52.76808203584404],[-128.54617836540294,52.77147304792439],[-128.5449593592876,52.77508290620315],[-128.5433123092333,52.77912086577076],[-128.54203271602046,52.78251668420032],[-128.54122697895264,52.785228817977384],[-128.5403312106297,52.78813183646378],[-128.53943539300215,52.79128603693443],[-128.5383964327787,52.793879262644175],[-128.5373277084832,52.79631781136306],[-128.5365519454712,52.79846462639959],[-128.53573655127704,52.79980489914421],[-128.53531501328425,52.800515983276256],[-128.5352111664333,52.80095836635368],[-128.53518920123219,52.801746592215586],[-128.53512474230433,52.80333751674897],[-128.5351279068042,52.80520618724915],[-128.53492928866032,52.80726144045321],[-128.5345877813182,52.8090714016284],[-128.53449280512228,52.810712307368306],[-128.53419705560393,52.81338751339944],[-128.5340666988133,52.81607708329023],[-128.53418391366498,52.8188022356917],[-128.53400816886793,52.82146362086957],[-128.53364510238313,52.82363341102252],[-128.53314724601495,52.82661907774527],[-128.53272424584313,52.829691705756524],[-128.532518731632,52.83208907404937],[-128.5320497473452,52.834655270425],[-128.53158254709697,52.83769126821505],[-128.5312726372496,52.84077655951502],[-128.5310741783156,52.84342044542736],[-128.53086764767414,52.84548982495511],[-128.53043668226732,52.848042277555976],[-128.52993805098598,52.85063149816221],[-128.52967875087396,52.85308324972785],[-128.52938977386648,52.85509831226366],[-128.52863408426816,52.85720023369838],[-128.5279997886685,52.85927879358106],[-128.52755327901306,52.86158989374639],[-128.52715039914258,52.86369597964238],[-128.52647831893486,52.86561105561556],[-128.52624094776647,52.867479774772384],[-128.52586873383808,52.869649657141515],[-128.52522500425985,52.87149570649921],[-128.52500203411512,52.873027713926],[-128.5247415349893,52.87458631538666],[-128.5246614783619,52.87595378061838],[-128.52416727238187,52.877057099764095],[-128.5239880260515,52.87802358980457],[-128.5236150240117,52.87920896369735],[-128.52299281931914,52.88052639163561],[-128.522311207318,52.88161185982663],[-128.52106662429836,52.883035131025814],[-128.49736381056712,52.88308984237852],[-128.49707341990828,52.88255219105271],[-128.49701455197822,52.8823897347122],[-128.49691249041413,52.88223716621408],[-128.4966469731121,52.88209198990136],[-128.49627906909575,52.881883962345235],[-128.49616080948655,52.881756961596956],[-128.49596873560532,52.88165732675776],[-128.49585095577478,52.88152246655752],[-128.4956884376502,52.8813868788072],[-128.49554226304306,52.88125991406549],[-128.49532113041266,52.88120462517761],[-128.49509742577362,52.88116900841449],[-128.49478634192337,52.88116776318767],[-128.49453489271863,52.881103581001604],[-128.49443015415056,52.88111196655957],[-128.49416148630465,52.881119354818296],[-128.4941045054287,52.88110038098242],[-128.49404377628485,52.88106522361178],[-128.49395533383972,52.88093815315239],[-128.49386961378846,52.880794205655896],[-128.4938722392931,52.88063212941603],[-128.49387184560624,52.88049814026788],[-128.49381620646,52.88032720880402],[-128.49371336635332,52.88012923784723],[-128.4937730336908,52.880066866481066],[-128.49377600790737,52.879958595288535],[-128.4937467894333,52.879777567762304],[-128.49367278758388,52.879706254700324],[-128.49360106113636,52.87956257517583],[-128.4934987938813,52.87939038130771],[-128.49342654424743,52.87923774252319],[-128.49333906247028,52.87911120734787],[-128.49314657579424,52.8790199820076],[-128.4931031820263,52.87886728703129],[-128.4930901194746,52.87872348397565],[-128.49309239964737,52.87857149749169],[-128.49305027669843,52.87840868397406],[-128.49294788600346,52.87828190861585],[-128.49287338198823,52.87813828754169],[-128.4927726481451,52.87797615203121],[-128.49266895657686,52.87785893940821],[-128.49255212018244,52.8777240560161],[-128.49237646466793,52.877570245870025],[-128.49237729470477,52.87748893085267],[-128.49225950526431,52.87735351123622],[-128.49217242981672,52.877218005296896],[-128.4920093377173,52.87705607025448],[-128.49195138079247,52.87702029693133],[-128.4918318854794,52.87698302972599],[-128.49162671840824,52.876802368373674],[-128.49145000212582,52.87669398682674],[-128.49124386261553,52.87657613723649],[-128.49121426858338,52.876531913324676],[-128.49108307975052,52.87642200098989],[-128.49100901645252,52.87626995532731],[-128.49074420558878,52.876151671116816],[-128.49068316505367,52.876142873317384],[-128.49052185602847,52.876043134143245],[-128.49037402088183,52.87601487125277],[-128.49015190747443,52.87594220961392],[-128.48994574220592,52.87582379326507],[-128.48978345455967,52.87570725463129],[-128.48974022345544,52.8755091475529],[-128.48968391851403,52.87537410024164],[-128.48950539742253,52.87528257336852],[-128.48931458031913,52.87515599081674],[-128.48928562741193,52.875074750563854],[-128.48916814415654,52.87491241074494],[-128.48905247762264,52.87473321310241],[-128.4889351379349,52.87458936668033],[-128.48875720163605,52.874444004811856],[-128.48851963265037,52.8743615760447],[-128.4884780777617,52.87427163221203],[-128.48843410109953,52.87423612630551],[-128.48821077959406,52.874126484467084],[-128.48787150216066,52.87392847342783],[-128.48763697759745,52.8738185026041],[-128.48738309118943,52.87372744680863],[-128.487250649986,52.87362765741074],[-128.48722424136292,52.873494218738436],[-128.48721101148047,52.87333135675039],[-128.48715192045682,52.87319636724362],[-128.4871393116333,52.873044139773555],[-128.487096973715,52.872908804602055],[-128.4870697890255,52.872746228943875],[-128.4870557522939,52.87266523756164],[-128.48689274609944,52.872584026241036],[-128.48677434570675,52.872565227645794],[-128.48664092929832,52.872448639000716],[-128.48651050360775,52.872303389744445],[-128.48642247607836,52.872151071665485],[-128.4863059918804,52.872005527183454],[-128.48621831543716,52.87184311895197],[-128.48617592344618,52.871690956371225],[-128.48608654389872,52.8715470807444],[-128.4860135671708,52.87149312574156],[-128.48601382590476,52.871465644361415],[-128.4859400777966,52.87136628920838],[-128.4858671015635,52.871312334108474],[-128.4857669617231,52.871095802518525],[-128.48551664554432,52.8709059945677],[-128.48529558351007,52.87077106635148],[-128.48510315170202,52.870679827365606],[-128.4849404496732,52.87057170523235],[-128.48488354636692,52.87042602061781],[-128.48473507709855,52.870290677466784],[-128.48463410074774,52.87015546011422],[-128.48453063521282,52.86999337555625],[-128.48441289140555,52.86985794744154],[-128.4842811943646,52.869722814230244],[-128.48414818720966,52.86967685504001],[-128.4839864281125,52.86956870274435],[-128.4837804836931,52.869469342230204],[-128.48360303379053,52.869315548529094],[-128.4835451577858,52.869153064602955],[-128.48348884849216,52.8690174583135],[-128.48344553238493,52.868865323246304],[-128.48344644373387,52.86872121463875],[-128.48353855938038,52.86856061051475],[-128.48352470061795,52.86837084146056],[-128.4835123993901,52.86819169614001],[-128.4833064447139,52.868091769963115],[-128.48308396945046,52.86802807365075],[-128.4830386482295,52.86800099937296],[-128.48308432791754,52.86793836340891],[-128.48308444933937,52.86789238822443],[-128.48307120462164,52.867856787068206],[-128.48296923699826,52.867784381133056],[-128.48270085570934,52.867747443768614],[-128.48249347840942,52.86763913217658],[-128.48248172743334,52.86748520849594],[-128.48243798316818,52.86734148720662],[-128.4823949335537,52.86716187014495],[-128.48239867786495,52.867018266735776],[-128.48228016653744,52.86683743629077],[-128.48217790087818,52.86671177053834],[-128.48207723522543,52.86654963366068],[-128.48198707126136,52.86650387939009],[-128.4819590604523,52.866422617408126],[-128.4819297053079,52.86627018677604],[-128.48188723660135,52.86611634673537],[-128.4818756592277,52.86598147209312],[-128.48181523850525,52.865918835251236],[-128.48177469514178,52.8657660757648],[-128.4816559675624,52.86569345765442],[-128.48152342570222,52.86557515856278],[-128.48149414386117,52.8655040148584],[-128.48142140626075,52.86534184367666],[-128.48140868177603,52.865171121057],[-128.48129237215286,52.86504406475239],[-128.48115925609085,52.86489998785109],[-128.4809975260777,52.864727926802644],[-128.48089686907545,52.86456577975209],[-128.4805724232023,52.864348938871025],[-128.48042544725448,52.86422252924008],[-128.48024865877096,52.86409563651711],[-128.48010067486587,52.86395187235348],[-128.47996872918227,52.86384365055932],[-128.4798226466516,52.86371666519205],[-128.47970724735995,52.863508855680294],[-128.47958696100665,52.8634732708765],[-128.47927783911393,52.863407476559026],[-128.47921785923677,52.86333641501571],[-128.4791142020197,52.863282538260606],[-128.4788934471993,52.86319973634526],[-128.47868737532897,52.86308130826418],[-128.47843400549718,52.86298180926227],[-128.47836032260975,52.86296318059786],[-128.4780359961213,52.86290779542677],[-128.47782663559715,52.86284493433964],[-128.47772318025667,52.86276245491749],[-128.47763829751065,52.862583162249074],[-128.47752045878684,52.8624292238199],[-128.4773303205848,52.86231269999678],[-128.477224413985,52.862284093484696],[-128.47713622135325,52.86223998051197],[-128.47687094136813,52.86217549818245],[-128.47675078641828,52.8621741024795],[-128.4765001486054,52.86213734272586],[-128.4763377658981,52.86200172658141],[-128.47619036175544,52.86188373504244],[-128.47613073053782,52.861866486282594],[-128.4759089762676,52.861846491917746],[-128.47580502881434,52.86181952928258],[-128.47575930215416,52.86180143114231],[-128.4757459294681,52.86174733519453],[-128.47559942114498,52.86169267211003],[-128.47534599092418,52.86165596880978],[-128.4752724474469,52.86165583202514],[-128.47518237565032,52.86169136835631],[-128.47494460537658,52.861635828585825],[-128.4746946730312,52.86156316914387],[-128.47444295274596,52.861507922248585],[-128.47423660186575,52.86141639437025],[-128.47405867976985,52.86123737247314],[-128.4739873168994,52.861066197786045],[-128.47386833128525,52.861020488378635],[-128.4738092214519,52.86094829359355],[-128.473661810065,52.86082973405461],[-128.47344087674333,52.86077552322236],[-128.47323456430757,52.86068455797943],[-128.47293801624318,52.86067453795084],[-128.47271354331025,52.86073589241743],[-128.47251965205706,52.8609070446159],[-128.47245715587874,52.86104907644124],[-128.4723955610798,52.86123874821919],[-128.47233443627331,52.8613723459383],[-128.47221555903337,52.86148921848718],[-128.47208031259527,52.86151617666136],[-128.4717829066929,52.8615235560095],[-128.47154634764166,52.86150498627577],[-128.4714875760569,52.86148659583936],[-128.4712954499886,52.86128712961013],[-128.47111928464457,52.861170293202726],[-128.47089684637302,52.86110601775491],[-128.47074922470358,52.86109622345161],[-128.47049721090283,52.86106788517749],[-128.47018543624293,52.86100380073238],[-128.47008347417952,52.86093081886898],[-128.46998052203438,52.86076030627969],[-128.4698170103845,52.860669000382465],[-128.46953682639236,52.86058798703706],[-128.4693153666844,52.86054050732916],[-128.469255808928,52.860540637959794],[-128.4691072319002,52.86059477472809],[-128.46906258000246,52.86059515708383],[-128.46898612403845,52.86057658097215],[-128.46900208817195,52.860530829087466],[-128.46903314138953,52.86042421986084],[-128.46906436647774,52.860288444727125],[-128.4690685909493,52.86013642683801],[-128.4689961793895,52.8599467658783],[-128.4689528266425,52.85979294024667],[-128.4688938924321,52.85965906897998],[-128.46873361884812,52.85955927949902],[-128.46849617149792,52.85947680949745],[-128.46827239029346,52.85942151878184],[-128.46805217298206,52.859411569140775],[-128.46778550082726,52.85933868200452],[-128.46759359423118,52.85923899941504],[-128.46738696300199,52.8591581224611],[-128.46713461509705,52.85907539764429],[-128.46697227383373,52.858939768298406],[-128.4668095150883,52.85881311775174],[-128.46669423593934,52.8586865912568],[-128.46641366727562,52.858469912836505],[-128.46635601824997,52.858325912908015],[-128.46616503184782,52.85814547654335],[-128.46601946074856,52.85801005000811],[-128.46597471300132,52.85784784752006],[-128.46590162030103,52.85777481228085],[-128.46581558153053,52.85755853375381],[-128.46569868674155,52.85738774513911],[-128.4655685105101,52.857260974127534],[-128.46540576234048,52.85713432150228],[-128.4652431292929,52.857025606744905],[-128.4652156075693,52.8569359167299],[-128.46508387992984,52.85678226701348],[-128.46484791999643,52.85662855290932],[-128.46477632947983,52.85648485372418],[-128.46468833023843,52.85633084214104],[-128.46468934433594,52.85626802910318],[-128.4646154101409,52.856115964892595],[-128.4645745336194,52.855972177263155],[-128.46465044922994,52.85583658670996],[-128.4648441414823,52.85569404847618],[-128.46487501241302,52.8556485493755],[-128.4648461767578,52.85548768987869],[-128.46480378041224,52.85533384262212],[-128.46477541572338,52.855181378334706],[-128.46465923040225,52.85505486890101],[-128.46460157756306,52.854910877072115],[-128.46451423121326,52.85478431852034],[-128.464500210598,52.85470275908964],[-128.4644272508701,52.85456749347195],[-128.46438358069594,52.85442376429536],[-128.4643727048801,52.85423561700305],[-128.46425359661106,52.85409067181952],[-128.4639439935979,52.85391831797738],[-128.4638274277101,52.85380135111563],[-128.46359103755614,52.853656057768454],[-128.46344496261815,52.85365631392066],[-128.46338523638227,52.85363738350783],[-128.4633718625722,52.85350255392988],[-128.4635222934563,52.85336820871389],[-128.46353786457465,52.853170536319105],[-128.46333262606706,52.85301674009871],[-128.4631416946541,52.852917021232436],[-128.4629476628935,52.852844286842945],[-128.462755651123,52.85272609334636],[-128.46256472236013,52.852626373524124],[-128.4625076620403,52.852492459786454],[-128.46242063327597,52.85233898226895],[-128.46228889730435,52.85218476452907],[-128.46215472390844,52.85214945374198],[-128.46196379964917,52.85204974186624],[-128.46183179150933,52.85192299629133],[-128.46163935024228,52.85181322416302],[-128.4614770861642,52.85167814208676],[-128.46127231499526,52.851596659865436],[-128.4610650059999,52.85148718943791],[-128.46084379737562,52.85137857502323],[-128.46063582841265,52.851306128997344],[-128.46056337204004,52.85109852329614],[-128.46037360580772,52.850954489528945],[-128.46035931923075,52.85090041108551],[-128.4602566068133,52.850765201122776],[-128.46017001002198,52.8506027516712],[-128.460052704996,52.8504403802621],[-128.45992007870612,52.850286734788575],[-128.45981879078835,52.850159908721906],[-128.45974591828568,52.850025759738145],[-128.45974821908354,52.84987209575162],[-128.45961494753746,52.849755474770916],[-128.4593637364639,52.84969121610436],[-128.45918676191485,52.84959119883416],[-128.45898084254762,52.84947329066967],[-128.4587294906632,52.849390536953706],[-128.45852154933692,52.84931807782338],[-128.4583313605577,52.84918246385818],[-128.4581835022679,52.84903867074819],[-128.45791790318398,52.848902383021525],[-128.45781702994648,52.84876657636848],[-128.45786469270945,52.84856038405246],[-128.45786493438095,52.84837088213072],[-128.45786730642234,52.84821833795194],[-128.45783950308982,52.84807483941044],[-128.45784187520567,52.84792229520354],[-128.45775484053468,52.847768258298785],[-128.45768266090778,52.84759764734613],[-128.45746320346367,52.84738976112783],[-128.45725660144507,52.847308301619535],[-128.45703291403342,52.84725299772365],[-128.45684126073866,52.84718860912423],[-128.45665007821563,52.847116361389006],[-128.45638110133544,52.84711469504512],[-128.45614452429487,52.84715888818856],[-128.45587661172235,52.84717570408004],[-128.45584590568663,52.84717579006322],[-128.45577398576847,52.84705787292852],[-128.45562662744143,52.846922480394184],[-128.45537664111353,52.84681445791392],[-128.4553626405886,52.84673289698114],[-128.45525936475065,52.846652081328905],[-128.45521774351863,52.84646233339186],[-128.4551434067362,52.846318676894846],[-128.45505744925748,52.8461831212461],[-128.45493945873102,52.8460566403356],[-128.45485376777788,52.84587733994555],[-128.45457189652544,52.84581315628017],[-128.45454178166517,52.84575884286095],[-128.45451339816563,52.84568598758496],[-128.45456145027487,52.84555099431709],[-128.4545629121533,52.84539846919999],[-128.45453297168262,52.84536321394672],[-128.45440100631276,52.84523645948577],[-128.45426916885484,52.845128207874396],[-128.4540628139766,52.845018149577804],[-128.45403273280914,52.844964400448745],[-128.45391529624115,52.8448474333946],[-128.4536944063518,52.84479206495569],[-128.45365005027875,52.84476495968901],[-128.4535485458039,52.84458543263203],[-128.4535052020132,52.84441421672766],[-128.4534769621792,52.84427913142893],[-128.45343461797472,52.84412527897798],[-128.45336352517674,52.84397314842946],[-128.4533355662162,52.8438105902323],[-128.45312973775475,52.843612494107134],[-128.45305806708853,52.843450283879704],[-128.45294177509908,52.84330470371027],[-128.4528522102364,52.84317089925924],[-128.45281132135,52.84302598641965],[-128.45272316260755,52.84290056661311],[-128.4526358760873,52.8427739982683],[-128.45260885731201,52.84261142021046],[-128.4525345360246,52.842467761710985],[-128.45244798548035,52.842305305712244],[-128.45236110752,52.84216975834726],[-128.4523038411976,52.841998841632346],[-128.45224521679563,52.84183691455181],[-128.45221832581527,52.84169283039834],[-128.4521314652137,52.84155729145963],[-128.45205883588588,52.84137828130588],[-128.45195652977745,52.84123296424666],[-128.4518849760654,52.84108869135529],[-128.4517828941172,52.840963561568635],[-128.45166533439308,52.840828098176246],[-128.45150197026916,52.840737321135414],[-128.4514739085434,52.8406375475055],[-128.45146171796443,52.840457840211435],[-128.45144879215232,52.84031402041444],[-128.45143514697813,52.84020610573289],[-128.45142309691516,52.84004489218637],[-128.45136669401512,52.839872826638484],[-128.45123486736261,52.839683282797324],[-128.45114840884315,52.83952250129668],[-128.45113504568775,52.8393871046677],[-128.4510903735456,52.839224885637776],[-128.45103420691146,52.83908926124424],[-128.45093027401313,52.83896416934852],[-128.45084470154274,52.838818501988314],[-128.45086105977768,52.838666230716846],[-128.45086198734631,52.83850418098172],[-128.45084906466252,52.83836036989918],[-128.4507936671907,52.83818940428519],[-128.45067611825098,52.8380539396633],[-128.45057301380191,52.83792714373599],[-128.45053157932392,52.837756451675986],[-128.45050373149036,52.83759556759722],[-128.4504600936756,52.83745127620598],[-128.45034417274513,52.83727933095926],[-128.45027234956882,52.8371625386177],[-128.4501980285927,52.83701832233834],[-128.4501115150443,52.836856419856694],[-128.4500101480436,52.836711081450105],[-128.4499362681453,52.83655845062404],[-128.4498650752363,52.83638781410955],[-128.44977854718866,52.83622535551446],[-128.44966100688254,52.836089889706855],[-128.4495289452714,52.83594463517314],[-128.4494286156318,52.835800961039546],[-128.4493557360049,52.83566568444087],[-128.44923805880077,52.83551171534534],[-128.4491651202101,52.83535906438073],[-128.4490632779521,52.835205329900326],[-128.44897611474224,52.8350804426148],[-128.44887424142271,52.83492614348999],[-128.4488320198018,52.83477397286305],[-128.4487284462779,52.83463877096934],[-128.44856862886948,52.83451203491954],[-128.44842073027004,52.834349733999495],[-128.44840781655782,52.83420591330752],[-128.4483211591032,52.8340249505774],[-128.4482493469417,52.833908156756166],[-128.44819041675953,52.83377258850891],[-128.44817881587096,52.83361921391391],[-128.4481802251185,52.83344930482293],[-128.4481686073356,52.833295374390936],[-128.4481407070437,52.83313336934531],[-128.44812779464337,52.83298954851085],[-128.44820381830166,52.83285565100731],[-128.44829378361206,52.832721462677384],[-128.448356222044,52.83257775675081],[-128.44840176723775,52.83241534117982],[-128.44843296737773,52.832245940860666],[-128.4484200691243,52.832102119666665],[-128.44836381335938,52.83194855497425],[-128.44828908576724,52.83181331613013],[-128.44817390259374,52.83168621380403],[-128.44801131845767,52.83155953472114],[-128.44789529656035,52.83143412707279],[-128.4478219894841,52.83130726350482],[-128.4477350572592,52.831153782002055],[-128.44763329445126,52.831001165818634],[-128.44750183381637,52.83086598808577],[-128.44733880007993,52.83074772267667],[-128.44732559671414,52.83071211665754],[-128.4473112846507,52.830559919571904],[-128.4473297441943,52.83037900698879],[-128.44743504155693,52.83023665037097],[-128.44755593455918,52.83007435035677],[-128.44761749951218,52.82993178405383],[-128.44763470555566,52.82977780843729],[-128.44766559073508,52.82963531664259],[-128.44769676994792,52.82948161474964],[-128.44769855648855,52.829302170893484],[-128.4477152521781,52.82912297229028],[-128.44749608942675,52.82895037805121],[-128.44727263442178,52.828913549171354],[-128.44721434104312,52.828886176039354],[-128.44718613714963,52.82883237691327],[-128.44712827766043,52.828715291381904],[-128.4471431450999,52.82855295032592],[-128.44721916394417,52.82841905307968],[-128.44723738889564,52.82826674256983],[-128.44723829813117,52.828104136290065],[-128.4472119044283,52.82795219084811],[-128.44718446098003,52.827798024690466],[-128.44716922895827,52.82764584651409],[-128.44724664913463,52.82752032512919],[-128.44730768044596,52.82736824332503],[-128.44732532588347,52.827205844161554],[-128.44728161777422,52.82704361185859],[-128.44716411068143,52.82690814275683],[-128.44704797997622,52.8267642306656],[-128.44691547459698,52.8266105771543],[-128.44659281631175,52.826384074137394],[-128.4464469613249,52.82625704427404],[-128.4464462819054,52.82621276288207],[-128.44634584753769,52.826050591248524],[-128.44619724720934,52.82592417446669],[-128.44605198774823,52.82580722335778],[-128.44605216644536,52.82576181175413],[-128.44617287346315,52.825644924306886],[-128.44615853484515,52.82549216212955],[-128.44605736416847,52.8253658869626],[-128.4459551810868,52.825221683145045],[-128.44579306826603,52.82508658608054],[-128.44573679884178,52.824932454982275],[-128.44569278232746,52.824797139495814],[-128.44557563514968,52.82463530646081],[-128.44545963923187,52.82450989585011],[-128.44538772769485,52.82437459630529],[-128.44524050724397,52.82425600763376],[-128.44512260642796,52.82412951509362],[-128.44500649016672,52.823985600727084],[-128.44482997367564,52.82385865149361],[-128.44469682360884,52.8237420026975],[-128.44459518925134,52.82362358501963],[-128.44449165620685,52.82348837842469],[-128.44437554433057,52.823344472334675],[-128.44430301962512,52.823182273854194],[-128.44421717499463,52.82304726377097],[-128.44419584379034,52.823032009883896],[-128.43554564683384,52.82833387240265],[-128.43599336229929,52.828422133851554],[-128.4360281864025,52.828429260156916],[-128.43604537029464,52.82859989509992],[-128.43607909072563,52.82894623760453],[-128.43609303933124,52.82912535375781],[-128.43607510074986,52.829136938887565],[-128.43602407298025,52.829155373282916],[-128.4359702663849,52.82917387429145],[-128.43586349520734,52.82920972850303],[-128.43554113001335,52.82923211545845],[-128.4351210521701,52.82918813022456],[-128.43485334265117,52.829125285127766],[-128.4346394965262,52.82911009366805],[-128.4344568566429,52.82915257038687],[-128.43440294337876,52.829185640599285],[-128.434538008292,52.82927086475935],[-128.43510806733426,52.829498430249586],[-128.43575632675126,52.82982472988953],[-128.43587826379067,52.83015242239129],[-128.43571171082752,52.830330233556325],[-128.4354097950742,52.830450312467605],[-128.435003284978,52.830628059254295],[-128.43479838638652,52.83078592509492],[-128.43476013477974,52.8308814624143],[-128.43474891940446,52.83091309095681],[-128.43474574722606,52.83092269214141],[-128.43473767230645,52.83094416399883],[-128.43482424874463,52.830945732171216],[-128.435007638451,52.830981173197216],[-128.43510758853606,52.831119260304604],[-128.43511651664787,52.83125923549117],[-128.43512482232174,52.83138856690405],[-128.43513317513245,52.83151846245544],[-128.4351364997502,52.831576700199406],[-128.43509187407759,52.83160958693562],[-128.43500959265535,52.83171612913995],[-128.43497049257817,52.831878404860106],[-128.4349921024115,52.83204502771534],[-128.4350526601765,52.83219346728516],[-128.43512689315133,52.83230461186553],[-128.4351731748435,52.832365887479085],[-128.4352215794278,52.832415341088556],[-128.43527500153326,52.832503935472765],[-128.43531518136976,52.83263765582723],[-128.43533183351528,52.832749994753684],[-128.43533294323973,52.83278585275969],[-128.43533684736158,52.83282165279593],[-128.43533431263387,52.83292374204187],[-128.43531091517298,52.83303523432319],[-128.43530061752068,52.833099361007555],[-128.43531928990177,52.8331331772418],[-128.43531919592093,52.833180273027274],[-128.43526623364315,52.83326266012721],[-128.43521024944857,52.83337370704544],[-128.43518032789058,52.83345226126885],[-128.43517039470666,52.83347377166201],[-128.43516238345657,52.833496363468825],[-128.43511874275273,52.83357912224032],[-128.43501801107334,52.83370455256693],[-128.43485599068254,52.83381555600226],[-128.43464545586104,52.8338911191911],[-128.4344192523404,52.833936741286166],[-128.43427925682758,52.83396094853337],[-128.43424336915987,52.833967855222795],[-128.4342185171887,52.83397229948934],[-128.4341506649718,52.8339894042888],[-128.43404451931644,52.8340364562899],[-128.43393361278012,52.83409761841182],[-128.43385254794805,52.83416041329371],[-128.4337526736064,52.834300957405794],[-128.4336560627522,52.834514882078075],[-128.43362925351374,52.834697085154346],[-128.4336273976718,52.83484401126905],[-128.43361508442436,52.834970414954476],[-128.43359898065287,52.83506324984512],[-128.43358426608063,52.83513139675288],[-128.43356516877722,52.8352041106495],[-128.4335325072184,52.83531635944657],[-128.43349317938507,52.835442192779816],[-128.4334492778669,52.835520471009396],[-128.4333971821803,52.83555294661461],[-128.4333753644895,52.83556181290229],[-128.43339326455782,52.8355659270085],[-128.43342331821052,52.83558716454462],[-128.4334247458858,52.8356286222768],[-128.4333926367584,52.835685351748005],[-128.43335979760965,52.83574546017395],[-128.43332691181214,52.8358050133991],[-128.4332723127618,52.83590761625534],[-128.43319830847346,52.836061643908586],[-128.4331341524592,52.836225002742886],[-128.4330932418667,52.83637217291657],[-128.4330816610578,52.8365114514161],[-128.43308241160628,52.83662244239837],[-128.43308282176739,52.83666224375571],[-128.43296891626747,52.836703848963786],[-128.43270059608443,52.83681032395601],[-128.43248830217152,52.836904424762196],[-128.4324373811988,52.83694136063478],[-128.43238673048705,52.83698277599322],[-128.43208025872536,52.83713825480059],[-128.4316131748463,52.837364335865026],[-128.43138706352332,52.83747721728638],[-128.4313546377602,52.83749582920376],[-128.43107047860136,52.83761832609876],[-128.43049621515496,52.83785727823458],[-128.43010607876846,52.83801391831054],[-128.42980559989883,52.83812777953343],[-128.42912262880628,52.83832019428698],[-128.42837590678602,52.838471315048515],[-128.42809546479856,52.83851243959718],[-128.4280991746825,52.838561133811076],[-128.42811125041385,52.83865900004056],[-128.42814474416207,52.83872446253941],[-128.428301171858,52.838808686803006],[-128.42853161024416,52.83895136374756],[-128.42863224826186,52.83905243934663],[-128.4286354403494,52.839124699972956],[-128.42863459909103,52.839273281673066],[-128.42863672367437,52.83947394572324],[-128.42864059908132,52.83968915008916],[-128.4286457736896,52.83989423609318],[-128.4285917815513,52.84000804531387],[-128.4284740562141,52.84008055533293],[-128.42841035709753,52.84018727244753],[-128.42838734337568,52.84033856411246],[-128.4283432639764,52.84054466866539],[-128.42825635576315,52.84071745559475],[-128.4281191722826,52.84079149781646],[-128.4279671849151,52.84086695828134],[-128.42782673256966,52.840965170593535],[-128.42768243295274,52.84104496575918],[-128.42753914030789,52.8411589342208],[-128.42739893129792,52.84129414289797],[-128.4272851916124,52.841387873315625],[-128.42723953944562,52.84145217334574],[-128.42719768196318,52.84151750721405],[-128.42701609451498,52.841563312831454],[-128.42670529135773,52.84159440451682],[-128.42662407622012,52.84167120810297],[-128.42685194353135,52.841768534428674],[-128.4269838385224,52.84184653987226],[-128.42697655407704,52.84188200598719],[-128.42697171216417,52.84189500516616],[-128.42682567426783,52.84196081469125],[-128.4264603084482,52.84209562510299],[-128.42594626525653,52.842200998222694],[-128.42523697472075,52.84230815031029],[-128.42454474359042,52.84243738014987],[-128.42403534972505,52.842444533180846],[-128.4235048638073,52.84230971818625],[-128.4229584061806,52.84222120243761],[-128.42241180112165,52.842261067968096],[-128.4220072608774,52.84231258618737],[-128.42186076446941,52.84230495125834],[-128.42170274753244,52.84222523645139],[-128.42144313749137,52.84209323949786],[-128.42128043666574,52.8420130556152],[-128.4211935347781,52.841973360621544],[-128.42108274554653,52.841939208284614],[-128.4209845834736,52.84193057568953],[-128.42088537519055,52.84193655003307],[-128.420608840187,52.84193215962731],[-128.42022442367102,52.84191205193218],[-128.4200563427759,52.84190093972012],[-128.42003783916726,52.84191926135342],[-128.42000877207158,52.84194789209731],[-128.41993491421593,52.84202341788154],[-128.41986499505668,52.842102782390285],[-128.41980314527822,52.84217693934099],[-128.41973470325092,52.842249554683036],[-128.41968883108822,52.84229366425096],[-128.4196475492388,52.842336566912],[-128.41958188635977,52.84240911590902],[-128.41950454857133,52.84252171487018],[-128.41942192058985,52.84265572682549],[-128.41934926767888,52.84275253139316],[-128.4192770115464,52.84282353860649],[-128.41920056206718,52.842886227148796],[-128.4191367396823,52.84294191893021],[-128.41907339386344,52.843006014833186],[-128.41901354299029,52.84304985591243],[-128.41889703285196,52.84307861025488],[-128.41872286309726,52.843124240914825],[-128.4186086722678,52.84316135219533],[-128.4185859893439,52.84317135463589],[-128.41859545621125,52.84319077731038],[-128.41863600721055,52.84328245097089],[-128.41868500733295,52.84345748037458],[-128.41867131267293,52.84360968941869],[-128.41861474742282,52.84369494938981],[-128.41854517266978,52.843780477270876],[-128.41846560603543,52.843870139800515],[-128.4184046879337,52.84394427664039],[-128.41831103164165,52.84404824054182],[-128.41816719461653,52.84416949157454],[-128.41804318246287,52.84424661383569],[-128.41794944630223,52.84428330317805],[-128.41784308234148,52.84431071721545],[-128.41773991069184,52.84436162094627],[-128.4176167235265,52.84443703935347],[-128.4174634347858,52.844490086914256],[-128.41731086191723,52.84452294574895],[-128.4171810667206,52.84456374051664],[-128.41706863262627,52.844615390426554],[-128.41698129555385,52.844666523667506],[-128.41693649871246,52.84471341749192],[-128.41688577569457,52.8447705246373],[-128.41675775483716,52.84485893159693],[-128.41656179506055,52.84494705910444],[-128.416410218551,52.845014090246984],[-128.41635199552903,52.84508649299426],[-128.41630581333723,52.84515808283254],[-128.41625918677107,52.84522183294978],[-128.41623300537898,52.84526889957561],[-128.41621893058877,52.84528320944346],[-128.41620321910383,52.84530147291953],[-128.41615261936144,52.845377073505006],[-128.416086831126,52.845496724766214],[-128.4160018370692,52.84562236844985],[-128.41590076694112,52.84574330158499],[-128.41580829110762,52.84585172392869],[-128.41575429223283,52.845916746709946],[-128.4157357364559,52.84593394735607],[-128.41572707810343,52.84594533808836],[-128.41566952235317,52.84599697884689],[-128.4154942194731,52.84610486214354],[-128.4152239847338,52.846228717876606],[-128.41502511008008,52.84629839720048],[-128.41496661886794,52.846316984088865],[-128.4149579602323,52.846328374761676],[-128.41492583770682,52.846352581823055],[-128.414864453226,52.84638579558101],[-128.4147746656263,52.84642688603577],[-128.4146711680967,52.84647218721787],[-128.4145891144879,52.84651815968554],[-128.41450831465943,52.84658654050121],[-128.41441185025099,52.846657476861736],[-128.41433656483483,52.846691541230946],[-128.4143006951886,52.846699006228626],[-128.41425190801883,52.84672467694676],[-128.41396678488815,52.846815753991415],[-128.41349611413946,52.84693251281533],[-128.41319466130332,52.84699813453369],[-128.41306539623972,52.84703218600156],[-128.4129609235675,52.8470931942953],[-128.4128796098419,52.84716886815118],[-128.4128415581198,52.84720328775103],[-128.4128317718723,52.84721133763448],[-128.41281330966592,52.847230222220844],[-128.41280355483948,52.84723882760067],[-128.41278150210238,52.84726002846945],[-128.41270544677653,52.847329987851325],[-128.41247446259305,52.84737509844366],[-128.41212366411597,52.84734137380658],[-128.41191672635543,52.84731815769794],[-128.411778469448,52.84734117978634],[-128.41144425240103,52.84741980359207],[-128.41107160071525,52.84752612571304],[-128.41088883969138,52.847584819422345],[-128.41077022183111,52.84765901499408],[-128.41063678819398,52.84778397116508],[-128.4105688779348,52.84784983296947],[-128.41054531718538,52.84786097301397],[-128.41051921375472,52.84787664130509],[-128.4104741402723,52.84790223413458],[-128.41023216717417,52.84790103803278],[-128.40970781951725,52.84784228023377],[-128.4091613274339,52.84778677305743],[-128.408827047122,52.84776559865219],[-128.40872345659017,52.84775987459158],[-128.40871751327052,52.84777008780436],[-128.4086819489541,52.84781566751498],[-128.40861179038086,52.847907928256696],[-128.40850986713434,52.848030558183126],[-128.40837585147642,52.848161685959106],[-128.40823001904036,52.84828128716382],[-128.40811558660593,52.8483638079681],[-128.40803006298276,52.84839807802791],[-128.40786000591208,52.84838530210268],[-128.40764010610312,52.848346646594926],[-128.40754711375286,52.84833116903984],[-128.4075155481266,52.84833238124969],[-128.40745367598822,52.84848893905132],[-128.40741845967347,52.848820996475546],[-128.40745817835113,52.84909601111529],[-128.40753363061222,52.8492951690888],[-128.407527467416,52.849466282358165],[-128.40730236155179,52.84961553857481],[-128.4068592928447,52.84976085643882],[-128.40651380024548,52.84983801023255],[-128.4064206996647,52.849853372936465],[-128.40640306034882,52.849870553174895],[-128.40643362814185,52.849917584635364],[-128.40673694358804,52.8499999484271],[-128.4071747438075,52.850123840178725],[-128.40736487449925,52.85024496744329],[-128.40736907930398,52.850319440189104],[-128.40732273822806,52.85037196776538],[-128.40725180743794,52.850417715660576],[-128.40719670946206,52.850479948840764],[-128.4071518773437,52.85059243698876],[-128.40710190583462,52.85072913291529],[-128.40703040707015,52.85086346237547],[-128.40693806742541,52.85099150032757],[-128.4068476003893,52.851119490840254],[-128.40678631666376,52.85125361972393],[-128.40675688469778,52.85139157189938],[-128.40673661428607,52.85149402132471],[-128.4067198077017,52.851542579606935],[-128.40667860985272,52.85160397147713],[-128.40657956806587,52.85171196381331],[-128.40645051628437,52.85181607694904],[-128.4063345281371,52.851904233707295],[-128.40624125041043,52.85201546239889],[-128.40618453398312,52.8521152945703],[-128.40616893683801,52.85215205929364],[-128.40615149729928,52.85218941789863],[-128.40610104102632,52.852284636752664],[-128.40606056814826,52.852358903408515],[-128.40604944107497,52.85237595013554],[-128.4060727643698,52.852377158708926],[-128.4064354304505,52.85237309246377],[-128.40722831484808,52.852424119769076],[-128.40784208106504,52.85254945288259],[-128.40814182921972,52.85268346412619],[-128.40842039180689,52.852854345296436],[-128.4085527996841,52.85310615461143],[-128.40856713051312,52.853359829021535],[-128.4085934114361,52.85347926414765],[-128.40861798381948,52.853502306559356],[-128.4086287697841,52.85351217664907],[-128.40864347824464,52.85352533005778],[-128.40874805050206,52.853663342154306],[-128.4090267488067,52.85396821336761],[-128.4092670574733,52.85423574880412],[-128.40935338792107,52.85439655960047],[-128.40947160615974,52.854496168566726],[-128.40959353838718,52.854611954905515],[-128.40962842562615,52.854768214557645],[-128.40971154700986,52.85493806093866],[-128.40998885497956,52.855201472122616],[-128.4103937804284,52.85548356771512],[-128.41075895159227,52.855638655116316],[-128.41100928788558,52.8556716395488],[-128.41122563772058,52.85571261375757],[-128.41147518422915,52.85581400984196],[-128.41159906010463,52.85586528674257],[-128.41157720521517,52.85590665668224],[-128.41152707341664,52.85600747740157],[-128.4114935809405,52.856090016444256],[-128.4114800492999,52.85614692198401],[-128.41146498492506,52.85624253770948],[-128.41146098940345,52.85636932125255],[-128.4114645151796,52.8564645553137],[-128.41146613037066,52.856493109601594],[-128.41156849201363,52.85655884836561],[-128.41177702547893,52.85670817847242],[-128.41189449185416,52.856810599185984],[-128.41195138217702,52.85686212989644],[-128.41205069598,52.85692344583238],[-128.41214517926647,52.85698148815629],[-128.4122339594188,52.85703741399154],[-128.412297174458,52.857085450901955],[-128.41233693559911,52.85714685936238],[-128.4124081683432,52.85723790425424],[-128.4125367743775,52.857356358216855],[-128.41266045262446,52.85748612577939],[-128.41271368291302,52.85758818765689],[-128.41273235865452,52.85765507918921],[-128.41275210095193,52.85770792867426],[-128.4127761958414,52.85777191024305],[-128.4128415705162,52.85784176244357],[-128.41291112538613,52.85790312383803],[-128.41289840795446,52.85794150763573],[-128.41289666875647,52.857993120950496],[-128.41297308033506,52.85810984792024],[-128.4130525693711,52.85826462521524],[-128.41309781673974,52.858422913481675],[-128.41313418469784,52.85855559534141],[-128.4131691432359,52.85866363860176],[-128.41320405342427,52.85877056158981],[-128.4132407625862,52.85886007269332],[-128.41327005534026,52.858917210881515],[-128.41327961863863,52.8589383181936],[-128.4132881619153,52.858974022728866],[-128.4133053085424,52.859079633214606],[-128.41332156070038,52.85921889063778],[-128.41333663468356,52.85936994987574],[-128.41336467354108,52.859536440262424],[-128.41340815961482,52.85969645087945],[-128.41344912406578,52.85981165426998],[-128.41347590467572,52.859890156740384],[-128.41350503399707,52.85999383460736],[-128.41354553484854,52.860133714995705],[-128.4135850182174,52.86028875763738],[-128.41358165421343,52.86049233822338],[-128.4135613321466,52.86070859197656],[-128.41358668039211,52.86081122621822],[-128.41361424912645,52.860821316165264],[-128.41357562924583,52.86086247464191],[-128.41349260352027,52.86095780031155],[-128.41344054767694,52.86105753977475],[-128.4134133387056,52.86120161875478],[-128.41337778448232,52.86136268789915],[-128.4133439892188,52.86143962714857],[-128.41331841771606,52.86146481995737],[-128.41331164676544,52.86147673665865],[-128.41326054997006,52.86152767744322],[-128.41313557024614,52.861621631074435],[-128.41297632748436,52.86171852184654],[-128.4128515890055,52.861783873845],[-128.41279884356234,52.86180570475259],[-128.41277588040455,52.86181121751022],[-128.41271820865964,52.861828099450506],[-128.41264327874165,52.86185262839628],[-128.4126004027202,52.86186808516745],[-128.41257260580508,52.86188659600114],[-128.4125025032307,52.8619306430881],[-128.41240428195755,52.86202067363785],[-128.41237680506325,52.86212720036052],[-128.41238772824218,52.86218864473684],[-128.41238638342813,52.86224697728274],[-128.412380808384,52.862329499051796],[-128.41237039949752,52.862425018918564],[-128.41235150031625,52.86255155193523],[-128.41232762792217,52.8626725718441],[-128.41228478674972,52.86275418140448],[-128.41220490315516,52.86283935913391],[-128.41211422957977,52.862914658134834],[-128.41206422893444,52.862952129776644],[-128.41204293122885,52.86297050701464],[-128.41202916555886,52.86299040699432],[-128.4120136992546,52.863013149492204],[-128.41200484328286,52.863037442628276],[-128.41199735617855,52.86305329381526],[-128.4119960457804,52.86309592813712],[-128.41198816388982,52.86318691103005],[-128.41199246981603,52.8632793210797],[-128.41205760867874,52.86337777476257],[-128.4121322980185,52.863480517312034],[-128.41213679791335,52.86356003350149],[-128.41208378505675,52.86364297300643],[-128.4120418682029,52.863708309818655],[-128.41203255006346,52.86374101730282],[-128.41198283229298,52.86388219395251],[-128.41196153088217,52.864196580476666],[-128.41207830601437,52.86446720219106],[-128.41222754137857,52.8646042940398],[-128.41230545569422,52.864731081529555],[-128.4122500429028,52.86490320493154],[-128.41211001993986,52.865077074393504],[-128.41201865124773,52.86518938851515],[-128.41199952772112,52.86531199696682],[-128.41197594870602,52.86547114185775],[-128.41185432102913,52.865575107025855],[-128.41169951526913,52.86565228706151],[-128.41139986013803,52.8657520661996],[-128.4109528510075,52.86583019204858],[-128.41052949186582,52.86589886994717],[-128.41010994072377,52.86598539912176],[-128.40989922677815,52.866028408796346],[-128.4098734792403,52.866033978029506],[-128.4097671554566,52.866046815124676],[-128.4095692984603,52.86608675289583],[-128.40938885314938,52.866154920507704],[-128.4092859156383,52.866227669793496],[-128.4091280678944,52.86630042366968],[-128.40884369311254,52.866324759376496],[-128.40858960408713,52.866308664892216],[-128.40850179788882,52.86630317233443],[-128.40838660661487,52.86630721998561],[-128.40808888579866,52.86637554695238],[-128.40781067081085,52.86654215177112],[-128.4076561862052,52.86674041387038],[-128.4075163997918,52.86700116412663],[-128.4073971241495,52.867278868656136],[-128.40727878019896,52.867408558896],[-128.40693584744307,52.867483980330576],[-128.4064602725471,52.867600795865656],[-128.4062228461361,52.86769872149936],[-128.40614491015782,52.86778553189743],[-128.40605749234572,52.86785291916341],[-128.4060050833966,52.867880902164565],[-128.40593814560066,52.867915344987374],[-128.40583585630637,52.867966774109554],[-128.40573611063797,52.868013666091294],[-128.4055749999932,52.86806181436362],[-128.40538393579695,52.86809039328579],[-128.40524689870247,52.86810328979615],[-128.40512344712474,52.86812599921852],[-128.4050207982285,52.86815445400996],[-128.4049489501212,52.86818451178508],[-128.40495503815148,52.86827577275199],[-128.40504209243272,52.86844946050196],[-128.40510570527576,52.868570373590835],[-128.4051155195053,52.86859596122482],[-128.40511124032795,52.868701445396],[-128.40498442720857,52.86902752333273],[-128.4046455545872,52.86935681082601],[-128.40429098078457,52.86944087604838],[-128.40408970784458,52.869420883203645],[-128.40391691670484,52.86944347950295],[-128.40368185314276,52.86946791456159],[-128.4033883159795,52.8693634725348],[-128.4029878203089,52.86916143598622],[-128.4025172409907,52.86907014743095],[-128.40206832347363,52.86906587077774],[-128.40183521233885,52.86905885861846],[-128.40180908372776,52.869057715346194],[-128.4018091489223,52.869091907291384],[-128.4018084205763,52.86916143894086],[-128.4018069564286,52.869284248917396],[-128.4018102090647,52.869490490204576],[-128.4018118302024,52.86968443120012],[-128.4018117833405,52.86979935453254],[-128.40151540291427,52.869809341209525],[-128.4007747338441,52.869715716825496],[-128.40009934438248,52.86965719014758],[-128.3997566485212,52.8696714821528],[-128.39961471080946,52.869679987086],[-128.3995855953384,52.86967553163182],[-128.39957434366556,52.86970715603288],[-128.39950304960013,52.869796633502105],[-128.399378794686,52.86988774852137],[-128.39930122682446,52.869931939404616],[-128.39932717674498,52.87004577560953],[-128.3991575425097,52.87030655848484],[-128.39870000701166,52.870513236948966],[-128.39833900552463,52.87053293942435],[-128.3980680963238,52.87048297193308],[-128.3978517467109,52.87047617475876],[-128.397787383336,52.87049037790116],[-128.3977340205531,52.87050155793104],[-128.39763470226168,52.87052321063993],[-128.39758127639072,52.87053327065107],[-128.39753797638974,52.87054143769262],[-128.39745797874147,52.8705755857429],[-128.3974255121792,52.870627268826084],[-128.39742379985856,52.87067943668897],[-128.3973922782095,52.870747918996855],[-128.39730944905068,52.87084771243353],[-128.39720432750715,52.87093170717242],[-128.39713506846257,52.8709746057704],[-128.39710260227318,52.87099320783489],[-128.3970610030539,52.87103162228436],[-128.39698140286885,52.871122379702506],[-128.39692097538472,52.87120658366197],[-128.39690234558364,52.87123947946372],[-128.3968916047295,52.871263809572305],[-128.3968667959184,52.87131925608407],[-128.3968343575351,52.87140456642361],[-128.39680919305144,52.87147011127368],[-128.3968019195259,52.871489885709224],[-128.39679391204336,52.871513029845794],[-128.39676808448908,52.87159989164402],[-128.39674298893573,52.87171645567326],[-128.39673305547186,52.87180467062708],[-128.39673299863458,52.87185344992662],[-128.39673664435662,52.87190158860387],[-128.396742125565,52.87196594324108],[-128.39660302877,52.87205847890652],[-128.39621528594503,52.87218243848162],[-128.39584395852467,52.872250556533096],[-128.3956967250822,52.87224795217755],[-128.39553266219642,52.87221093251669],[-128.39518894223784,52.87214113021163],[-128.39473807386702,52.872102671595506],[-128.39430017912218,52.872112716026066],[-128.394076452314,52.872124001778076],[-128.39399943817503,52.8721283694116],[-128.39391969040864,52.872133922886505],[-128.39380962665354,52.87214681231121],[-128.39366932561632,52.872168175166706],[-128.39354669879873,52.87218916887372],[-128.3934535615601,52.87220508584327],[-128.39329860219442,52.872230666637925],[-128.39300831162737,52.87228310524665],[-128.3927488560091,52.87233772281783],[-128.3926069138997,52.87236303761815],[-128.3924799175639,52.872356097355784],[-128.39236784087427,52.8723331470076],[-128.39232903213244,52.87232160357269],[-128.39224029945294,52.87233294497038],[-128.3920362370006,52.87236288739491],[-128.39183152371402,52.87241414608412],[-128.39168755263205,52.87250284608253],[-128.39166450176182,52.872606468419846],[-128.39170457731643,52.872673491669005],[-128.3917149446262,52.872692341572915],[-128.39182918057634,52.872720845781465],[-128.3920963036791,52.87278604588726],[-128.39228132609685,52.87283161346375],[-128.39234369931276,52.872881364115216],[-128.3924217058714,52.8729941414828],[-128.39252142202395,52.87311208294541],[-128.39261480938842,52.87318361764343],[-128.39270951667157,52.87322878096766],[-128.39277734453,52.87327617787316],[-128.3927504129321,52.87336025342384],[-128.39263780084755,52.87347691183089],[-128.39254334590348,52.87358535182224],[-128.39250009543568,52.87366079866609],[-128.3924885542532,52.873687378055855],[-128.39251131194393,52.87369476332933],[-128.39256526675044,52.87371048326619],[-128.39266160023425,52.873751693707504],[-128.39306625465557,52.873928456855765],[-128.39373325341387,52.87418452344134],[-128.39422051080598,52.874306902289476],[-128.39449053776312,52.874324390193784],[-128.39461362217497,52.87434430675201],[-128.39463210120013,52.87435850619688],[-128.39467987706345,52.874396775711084],[-128.39471802431754,52.87442963526669],[-128.3947227821871,52.87444803412939],[-128.39474534895874,52.87448513996739],[-128.39478930788198,52.87455488167563],[-128.3948301550553,52.874619080629024],[-128.3948649193085,52.87467443368964],[-128.39488780053188,52.8747171302741],[-128.39490142438729,52.87474432725834],[-128.39490897957037,52.87476266910447],[-128.3949154720175,52.87477879911717],[-128.39491991529474,52.87479159822987],[-128.3949692066585,52.87490664551104],[-128.39510291323626,52.8751489048427],[-128.39523346038968,52.87530153896764],[-128.39539422943872,52.87527975727604],[-128.39566088984895,52.87518743065169],[-128.39585126082684,52.875129165479194],[-128.3959663829228,52.87512345469517],[-128.39610484044252,52.87511895433308],[-128.39616791779784,52.875114860636984],[-128.39624243618414,52.87514866443606],[-128.3964479206705,52.87524314260986],[-128.39668201327825,52.87534992666851],[-128.39688394651728,52.87543102176105],[-128.39702531779727,52.875478037533796],[-128.397077307023,52.875492109222904],[-128.3971030619449,52.87548654282605],[-128.39715066251767,52.87547211709413],[-128.39727627410699,52.87547067600084],[-128.39749278357058,52.87546345159092],[-128.39764960417105,52.875421009062826],[-128.39776627949772,52.87542647715344],[-128.39793035627275,52.87549657444576],[-128.39805149068204,52.875547921764785],[-128.3981716882456,52.87556620726482],[-128.3983357982171,52.87557070679546],[-128.39843942366912,52.87557588442178],[-128.39844776818543,52.87567438250645],[-128.39842737903885,52.875858115511186],[-128.39855437828078,52.87598054532589],[-128.39880136531357,52.876034929346815],[-128.3989305889323,52.87606480727681],[-128.39894835968124,52.87606612188164],[-128.39896595817567,52.87606464140575],[-128.3990233859374,52.87607580264328],[-128.3991621615362,52.87610997025712],[-128.39931100844606,52.87615738687388],[-128.39942455796006,52.87622290756688],[-128.3995586610981,52.87628968584794],[-128.39970499534897,52.87634219434508],[-128.3998549241278,52.8763923957687],[-128.39997961039026,52.87644086107487],[-128.40005693142191,52.876474605301695],[-128.4001208393169,52.87650188705554],[-128.40019018445142,52.87652625913278],[-128.40025560570132,52.876547347616345],[-128.4003126017553,52.87656748691451],[-128.4003566415489,52.876589012050296],[-128.40043210424233,52.876655865855994],[-128.40054718007323,52.87676508238033],[-128.40060331827343,52.8768194321585],[-128.40073231410747,52.8767954936806],[-128.40099761881376,52.87674522441755],[-128.40118462623968,52.87671000912704],[-128.40131359011158,52.876685514517895],[-128.40141767305198,52.87666544801281],[-128.40149989515973,52.876654232894886],[-128.40163138112925,52.87664145484923],[-128.40176195399127,52.87664551380743],[-128.40183982055672,52.87667251834806],[-128.4018898415317,52.8766843857213],[-128.40197281206085,52.876669800246006],[-128.40217945900554,52.876652677798674],[-128.4025149039695,52.87662451722644],[-128.40282801962553,52.876579993735135],[-128.4030607363811,52.876562901795594],[-128.40324240097294,52.87656479313688],[-128.40339872850373,52.87656328253372],[-128.40362538840432,52.87658723388753],[-128.40386866559345,52.876641683322724],[-128.40402030861483,52.87667278350469],[-128.4041316189199,52.87666545643192],[-128.40424332971273,52.87664859505489],[-128.40439382499443,52.876642717513946],[-128.4046127679227,52.87664552141545],[-128.40485783401954,52.87663265816638],[-128.40506721422548,52.876614362419026],[-128.40523098101352,52.87661268816668],[-128.40541933228297,52.87663406539028],[-128.4056372109691,52.87668398103061],[-128.40583430414614,52.876761240397336],[-128.40601751509365,52.876856714446085],[-128.40621055306397,52.876944703473505],[-128.40643318664823,52.876996206662966],[-128.4067074445512,52.877021985070805],[-128.40699259442445,52.87704305482302],[-128.40724192628937,52.877072706217234],[-128.40742706694132,52.877103115928634],[-128.4075193425509,52.87712140786951],[-128.40775367386692,52.87713286061713],[-128.40816349175358,52.877135676021815],[-128.4083897340688,52.87713552476691],[-128.40842680609404,52.87713252256665],[-128.4084759558462,52.87714553524312],[-128.4085688453209,52.877191279588914],[-128.40868360246034,52.87726125183845],[-128.40884054914477,52.87733652154747],[-128.40904966181284,52.877379327122725],[-128.4092159564663,52.877389373025146],[-128.4093022417696,52.877400493872415],[-128.40940189527157,52.877417511872835],[-128.40952305742522,52.87743633128072],[-128.40961956121163,52.87746350480516],[-128.40969275990307,52.87749003486747],[-128.40972413826654,52.8775017250803],[-128.4097450096176,52.87750858964731],[-128.40979069315713,52.877526148837084],[-128.40982871550898,52.8775399452614],[-128.40987827761802,52.87756023246351],[-128.41002645368425,52.877628396934945],[-128.41018653474833,52.87770976294604],[-128.41029867576006,52.877766332492584],[-128.41040385578182,52.87781518707992],[-128.4105389540748,52.877866235500825],[-128.41073972168473,52.87792602786043],[-128.4109903606633,52.87797863447502],[-128.4112351982844,52.87802743077835],[-128.41141040692153,52.87807989775196],[-128.4114905539298,52.8781141328196],[-128.41156054204168,52.87814969752888],[-128.41166349438328,52.878224950292214],[-128.41173799031174,52.87830751435099],[-128.41176743971002,52.87835063825578],[-128.41177668966694,52.87836614575157],[-128.41184679844542,52.87835461586887],[-128.41198199299657,52.878324931641004],[-128.41207925411337,52.87831620807357],[-128.4121350819644,52.878331880808226],[-128.41220170293522,52.878357423123376],[-128.41231483719875,52.87839882923985],[-128.41245591778423,52.87844021773031],[-128.4125732979924,52.87847425289095],[-128.41272241464677,52.87857546678684],[-128.41295279096002,52.878730508931945],[-128.41320809088126,52.87881608726946],[-128.41336289452636,52.87885327307984],[-128.41341857930723,52.87888296811512],[-128.41347776189141,52.87890866247959],[-128.41356008932007,52.87894845759607],[-128.41364597565203,52.87900163441812],[-128.41378462264382,52.879082314658675],[-128.41421942791914,52.879147950563734],[-128.41491807550645,52.87915377929501],[-128.41554778686304,52.87920811276516],[-128.416176856599,52.87936616617571],[-128.41669883125883,52.87949110397799],[-128.416860604317,52.879519737163356],[-128.41685484740657,52.879549563894024],[-128.4168969241662,52.87961821542792],[-128.41701892066712,52.8796678486777],[-128.4171437795548,52.879702281726125],[-128.41724611013055,52.879766330205626],[-128.41727787011786,52.87985032603809],[-128.41716324180283,52.87994686765637],[-128.41698998242174,52.88004405877108],[-128.41686279387227,52.880149263163204],[-128.41681687439646,52.88025896755629],[-128.4168171552616,52.880345862234996],[-128.41683172834234,52.880438625338606],[-128.41686615620708,52.88056965838294],[-128.41689959698778,52.88071585290806],[-128.41690388156812,52.880857040791014],[-128.4168864185149,52.880992513550055],[-128.41686202498636,52.881087755276795],[-128.41685116429304,52.881126100692406],[-128.41682996885132,52.88117923471006],[-128.41678334816913,52.88129288223024],[-128.41671771172912,52.88143270021333],[-128.4166501345894,52.88157088067093],[-128.41659920616502,52.88167452550899],[-128.41656889827985,52.881747463973404],[-128.41652804854428,52.88184809396024],[-128.4164223800043,52.881955106612054],[-128.41632030556752,52.882043540370006],[-128.4163153855949,52.88213726030269],[-128.41628312066715,52.882241642485404],[-128.4161804702469,52.882352512657796],[-128.41609437164712,52.8824434163598],[-128.41602554109465,52.882510428040966],[-128.41595949262026,52.8825773735195],[-128.4158970206387,52.88264144683585],[-128.41581357716356,52.88273006221483],[-128.41570768000443,52.88284940340776],[-128.41562744592895,52.88294523621304],[-128.41547802868405,52.882937659671995],[-128.4152707887784,52.88291220117112],[-128.41521762916358,52.88300916365694],[-128.41526960867878,52.883121340339805],[-128.41525292402147,52.88318839221303],[-128.4151907675243,52.88325806478348],[-128.41515742397812,52.88329407332069],[-128.41514808488776,52.88335929686407],[-128.41509909914555,52.88353016603868],[-128.41501145957287,52.88372538426914],[-128.41494609708087,52.88388649868648],[-128.4149095948081,52.88401451326905],[-128.41488766062758,52.88410409757884],[-128.41486542433802,52.884188090881736],[-128.41480221586767,52.88427236082051],[-128.41472510687632,52.88439055331205],[-128.4146939544988,52.884580116769705],[-128.41467371453777,52.88473246426581],[-128.41464413344275,52.88480202334993],[-128.41463415847406,52.88485604749134],[-128.41464596482996,52.88491635159056],[-128.41467616858495,52.88497291405275],[-128.4147132890696,52.88501980841307],[-128.41473866130113,52.88505684403596],[-128.41475671745943,52.88511253479385],[-128.41478181454667,52.885193869279355],[-128.414810219916,52.88526785225836],[-128.41483953292487,52.88532498910698],[-128.41487597024562,52.885376382385495],[-128.41493132744566,52.885432984148785],[-128.41500954816772,52.88549865112087],[-128.41511543248362,52.885592345607456],[-128.41522513053377,52.88570389241044],[-128.41527163387067,52.88575227117358],[-128.4151216269182,52.88581646505641],[-128.41481722346856,52.885949974484305],[-128.41463256743893,52.886027213078954],[-128.41454306241752,52.88605820370804],[-128.41443458775353,52.88609967500398],[-128.41435221817042,52.88615798463774],[-128.41426254626018,52.88625176750453],[-128.41417368462805,52.886343291182676],[-128.4141113142572,52.88642586596625],[-128.41405658921266,52.88652845691203],[-128.4140105463745,52.88661966616636],[-128.41397759377543,52.88667920309899],[-128.41393891653215,52.886736058982024],[-128.41388815144316,52.88682624390892],[-128.41388230222634,52.8869368009016],[-128.41389494735427,52.88702848226041],[-128.41384530982302,52.88712200768444],[-128.41384666580976,52.887211678391225],[-128.413906710959,52.88730182128299],[-128.41388389134906,52.88744132262312],[-128.41382084407286,52.88757773016898],[-128.4137989377527,52.8876678785202],[-128.41379824003516,52.887770481042736],[-128.4137958693015,52.88790956241627],[-128.41378878917382,52.888063881585424],[-128.41376932306895,52.88821340504108],[-128.4137290773325,52.88834148665861],[-128.41368344695027,52.8884237173107],[-128.41362658989098,52.88850504824451],[-128.41356247882857,52.888606154101105],[-128.41349153124887,52.888701794116834],[-128.4133833252604,52.8888138962218],[-128.41327834689642,52.88891696210507],[-128.41323259070356,52.88898069032034],[-128.4131929727124,52.88903756512518],[-128.41313257245932,52.88908926037388],[-128.4131141237108,52.88910869999386],[-128.41313652653258,52.88912617980112],[-128.41316315523395,52.88916880501903],[-128.41318076387014,52.88923290979686],[-128.41318697054106,52.88930959113074],[-128.41319157004514,52.88939078140312],[-128.41320626830202,52.889469530874216],[-128.41322870862695,52.889553162459734],[-128.41324903733963,52.88961609014908],[-128.4132720544647,52.88967728528482],[-128.41329883304365,52.889788302407545],[-128.41331086579294,52.88993493648353],[-128.41331989300193,52.8900777034581],[-128.41334065734495,52.89021406719419],[-128.4133809471587,52.890366292390134],[-128.41343367187844,52.890524424558635],[-128.41347925807247,52.89067149095612],[-128.41350679631145,52.89081220047907],[-128.41362689315707,52.89100874852513],[-128.4138169396506,52.89123974853322],[-128.41387348655354,52.89136640758471],[-128.41385040982237,52.89138649843405],[-128.41380818838195,52.89139745640255],[-128.41370534213945,52.89145619456147],[-128.41361888233746,52.89157401235263],[-128.41359909673668,52.89171793582416],[-128.413604914759,52.89185348503084],[-128.4136087365087,52.89193749870352],[-128.41361203642347,52.89199573483271],[-128.41362724111633,52.892099696912986],[-128.41366235003449,52.89224249333135],[-128.41372039183258,52.89237921275789],[-128.41377640312055,52.89248009454083],[-128.413805065465,52.8925585571266],[-128.41382727132014,52.89263826452523],[-128.4138521171963,52.89271511912763],[-128.41388368742153,52.892812017760996],[-128.4139331749632,52.89294554901739],[-128.4139664592567,52.893072685579575],[-128.41397882101936,52.893159331397804],[-128.41397786051672,52.89320812004219],[-128.41397720584513,52.893229436811325],[-128.4139768193728,52.89327205139972],[-128.41397549006683,52.89334720094779],[-128.41397515046648,52.89339037966925],[-128.41399604182374,52.89343031490606],[-128.41404542565044,52.893512827877025],[-128.41410048706962,52.893596910571695],[-128.41416655415827,52.89367796866518],[-128.41424801403983,52.89376767148586],[-128.41431840846394,52.89384303449834],[-128.41438182189734,52.8939101271402],[-128.41443222789616,52.893961224591216],[-128.41445501472055,52.8939854236367],[-128.41447182206602,52.894002461982716],[-128.4144876276569,52.89401839070189],[-128.41453822694925,52.89405659450879],[-128.414669052605,52.89414641340532],[-128.41481368230504,52.8942331410832],[-128.41492092782389,52.894284757197816],[-128.4150734963497,52.89434721062654],[-128.41526502560671,52.894439701738236],[-128.4154048547241,52.89452372875339],[-128.41549217374904,52.89458527969039],[-128.41556820236718,52.89464482904873],[-128.41563430702752,52.89471017942777],[-128.4157058973279,52.89479000198762],[-128.41586194754038,52.89489723200142],[-128.41608032668685,52.894986927671695],[-128.41627385176622,52.895032284631036],[-128.4165167894433,52.8950951304331],[-128.41677217743344,52.89518013541039],[-128.41690463548258,52.89523291784971],[-128.41702856893983,52.89528306783668],[-128.41720485546904,52.89535287960489],[-128.41751273088823,52.895411024635436],[-128.41797708223078,52.89545248723226],[-128.41827145539258,52.89553500991878],[-128.4186274560797,52.89571886105012],[-128.41936798020808,52.895801172219116],[-128.41996478146228,52.895681808221724],[-128.42012394391048,52.895597803635525],[-128.42016647084122,52.895624958992386],[-128.42033498633202,52.89565624821847],[-128.42053931838626,52.89571146689311],[-128.42079147653428,52.89585427765504],[-128.42114807556678,52.8959663503809],[-128.42142958847472,52.895953825624275],[-128.42176870309788,52.89592217405834],[-128.42217429928112,52.895962031889354],[-128.42237171533537,52.895993844090064],[-128.42242119100183,52.89597936997539],[-128.4224756165161,52.896019169043264],[-128.4226137306815,52.89608920327424],[-128.42270006285273,52.896165910509765],[-128.42272214150384,52.89621030478055],[-128.42277254187405,52.89622832715034],[-128.42282491557057,52.8962485512966],[-128.4228313128395,52.89629551114719],[-128.42282099600223,52.89635963387178],[-128.42281600490915,52.896386646248196],[-128.422811443055,52.89642094226052],[-128.42280946462276,52.896533662183],[-128.42284553201358,52.89669269874525],[-128.42288847355553,52.89689082771247],[-128.42288001938834,52.89715169236203],[-128.42285016817885,52.89736365480706],[-128.4228410467276,52.8974490562159],[-128.4228410656428,52.897482136583264],[-128.4228407976047,52.897510172845216],[-128.4228414663133,52.89752192749096],[-128.4228428415648,52.89761159751227],[-128.42284287200948,52.89779211481912],[-128.4228457625638,52.89792492541304],[-128.4228644277149,52.8980400274086],[-128.42290704682236,52.898166969314595],[-128.42294194896317,52.89825650456248],[-128.4229984667782,52.898349523151914],[-128.42309279016453,52.89845185369261],[-128.42316279353318,52.89851992725872],[-128.423203274538,52.89856002234985],[-128.42326603963033,52.89861534640953],[-128.42337210215453,52.89871127252654],[-128.4234885388331,52.89884229895885],[-128.42356758111703,52.89895447005141],[-128.42362193567962,52.89902567345747],[-128.42368785155844,52.89908710360137],[-128.4237515410522,52.89914240835858],[-128.42379091324787,52.89921223419189],[-128.42379965789098,52.89933314664898],[-128.42378483018499,52.89944893885673],[-128.42376506863638,52.89952727607991],[-128.42374222208406,52.899616880200554],[-128.42373165558425,52.899709603842204],[-128.4237251439176,52.8998078410688],[-128.42371589765688,52.89990726485303],[-128.42370763197138,52.8999584466315],[-128.42370225859605,52.89997873949802],[-128.42369974777014,52.900000094588826],[-128.42369203661266,52.90002828423864],[-128.42368111350163,52.90006550991765],[-128.4236645122607,52.900101175273804],[-128.42359965537028,52.90015633102396],[-128.42346800019908,52.900249298894856],[-128.4233208539038,52.900364454282574],[-128.42319217384977,52.90047698646267],[-128.42309720912996,52.900559671805695],[-128.42302401912133,52.900632382421946],[-128.4229252538507,52.90073027800287],[-128.4228454305291,52.90081713602417],[-128.4228083939869,52.90090311240348],[-128.4227778464966,52.90098839893566],[-128.42275884191503,52.90103083203094],[-128.42274836317168,52.901059643704755],[-128.42273233367243,52.901105379176336],[-128.42271539937542,52.90116796065917],[-128.42268472461566,52.901267260618155],[-128.4226530663305,52.90139853130052],[-128.42262078897917,52.901535429816605],[-128.4226136417188,52.9016718016084],[-128.42262316244322,52.901789899339704],[-128.42261045888938,52.901861354451064],[-128.42256988578598,52.901901433251986],[-128.42250583806174,52.901971147523085],[-128.42242407333165,52.90208943945273],[-128.4223642296299,52.90223306794098],[-128.4223426536882,52.90236133215327],[-128.42245867819636,52.90241948825616],[-128.42269868743074,52.902429684761],[-128.42281874865571,52.90244402953707],[-128.42281742897654,52.9024535826639],[-128.42281694330893,52.90254329075445],[-128.42268883425922,52.90273149753369],[-128.42243136617725,52.90283995442021],[-128.42229040457073,52.902851262845324],[-128.42227209904144,52.902889761581925],[-128.4222482142774,52.90297770915612],[-128.42223317117165,52.90304080763924],[-128.42218842857244,52.90307312355555],[-128.4220822082675,52.90312184674164],[-128.421973092892,52.90316894312942],[-128.42189652090215,52.90319855080002],[-128.42181414245204,52.90322434922706],[-128.4217259901625,52.90324691179405],[-128.42165455522584,52.90326856493386],[-128.42155417114435,52.90330539008325],[-128.42144752045277,52.90334682907952],[-128.42140920228772,52.90336107279173],[-128.42139086419465,52.90341526917368],[-128.4213514060454,52.903540537570585],[-128.42131323562384,52.90365568840551],[-128.42124966103097,52.903750059013845],[-128.4211106409778,52.90386111492995],[-128.4209389487705,52.903987428157464],[-128.42080726120298,52.904112908624796],[-128.42074109180476,52.90419444272148],[-128.42072567885708,52.90421830569284],[-128.42071887109594,52.9042296580659],[-128.420699926908,52.90425695739343],[-128.42067870751882,52.904277011111546],[-128.42064426988483,52.90429398220972],[-128.42060318331727,52.90432510096656],[-128.4205930349948,52.90435950268968],[-128.42060178476035,52.9043823121556],[-128.4205937524494,52.90440490196002],[-128.42055422517848,52.90446345408903],[-128.42049055246395,52.904556148849906],[-128.4204182735888,52.90466134518303],[-128.42036147188108,52.90474380742372],[-128.42031920849425,52.90480353698451],[-128.42028542326136,52.904864778358736],[-128.42027362169705,52.904919405043415],[-128.42026776851696,52.90494755607944],[-128.42026169228498,52.90497178293995],[-128.42021175996757,52.90499467888987],[-128.4200713012479,52.905064277718274],[-128.41991320070986,52.90515106669985],[-128.41980514414573,52.90524971530979],[-128.41974639960424,52.90536360241697],[-128.41971092788472,52.90544450415549],[-128.41969425707433,52.90547903996012],[-128.41963056454475,52.90553865399537],[-128.41944236521678,52.9056697891943],[-128.4191577489524,52.90584214124619],[-128.41879138133768,52.90605149694496],[-128.4184178684077,52.90623353290763],[-128.4181981981437,52.906286262528056],[-128.41808797517933,52.90626498326752],[-128.4179456012234,52.90626791057447],[-128.41778222790663,52.90632788658963],[-128.417665224549,52.906400372734886],[-128.41759376505667,52.90645453911437],[-128.41752788899998,52.90650859066951],[-128.41748185023206,52.90655102220563],[-128.4174606281851,52.90657107531488],[-128.4174460234243,52.90659267871244],[-128.41742518334047,52.906619460253935],[-128.41737548379655,52.906712421898625],[-128.4173397811588,52.90682191411296],[-128.41732164378303,52.9068800252668],[-128.41730004053045,52.90689336782328],[-128.41728281140925,52.90690157049419],[-128.4172907805605,52.90692719475475],[-128.41731602427694,52.90696143370747],[-128.4173338387692,52.90701264365858],[-128.41731940534504,52.907119456220286],[-128.417286423054,52.907227771246184],[-128.4172661542596,52.907264623006135],[-128.41726604271958,52.90727920115516],[-128.41726979284996,52.90736153820829],[-128.4172694843481,52.907503939440865],[-128.41725158240345,52.90761530812368],[-128.41720776583063,52.90771318969533],[-128.41716169195072,52.90780439928821],[-128.41725880516813,52.907922929905304],[-128.41740072965715,52.90812519591417],[-128.41725261439387,52.908322776251936],[-128.41699380954367,52.90844133832646],[-128.41690941349617,52.90848119414785],[-128.4169006471327,52.908490900171735],[-128.41686596407706,52.90853646165262],[-128.4167952449918,52.908636582126],[-128.4167202296304,52.90874296201182],[-128.416686118269,52.90879860264221],[-128.4166737716906,52.908827442923304],[-128.41662187215923,52.90891428702566],[-128.41652561726767,52.909040719998615],[-128.41640559237584,52.90917492467301],[-128.41627993632542,52.90930868876309],[-128.41616073805142,52.90944119881009],[-128.41606085473464,52.90953631175882],[-128.4160109614515,52.9095765792887],[-128.41603368720848,52.909681506892575],[-128.41607713422806,52.909905422951496],[-128.41609490978107,52.91003791755397],[-128.41605101485948,52.91006909211881],[-128.41596621678184,52.9101016719715],[-128.41592518628173,52.91011764673103],[-128.4158969465214,52.91012888284658],[-128.4158212174886,52.910157347559505],[-128.41566807123962,52.91021711006174],[-128.41547519866884,52.91028273818276],[-128.41536259708516,52.910252535354005],[-128.4153115709843,52.91014146155733],[-128.4152627984272,52.910086402294624],[-128.41520040144516,52.91010338065606],[-128.415131958894,52.91012889673379],[-128.41504684186222,52.9101558674029],[-128.41487854999716,52.91021146395044],[-128.41467976970793,52.91032093947352],[-128.4145022376424,52.91047650441575],[-128.41434074639255,52.910586335019374],[-128.4141810918194,52.91062997595064],[-128.41407053433696,52.91066868918328],[-128.41404776473715,52.91069437939223],[-128.41407884625994,52.91073298399513],[-128.41411320337272,52.91079675319328],[-128.41412447889954,52.910831279442775],[-128.41406377497137,52.91091101047923],[-128.41393999704857,52.911061551352276],[-128.4138682824618,52.9111443067936],[-128.41375927033485,52.91114430156594],[-128.41353900300552,52.91115442777123],[-128.41329935408467,52.91118401189051],[-128.41311325552718,52.91122146657742],[-128.4129688380062,52.91127096432552],[-128.41279910374152,52.91135068893234],[-128.412582829885,52.91144762102457],[-128.4123624199712,52.911537354116774],[-128.41216714941945,52.91161031809253],[-128.41199830494975,52.911672639921775],[-128.41187518828312,52.91172001313645],[-128.41179587262846,52.91175079109096],[-128.41170013816387,52.911788076804584],[-128.41155164132587,52.91184773831733],[-128.41140400442555,52.91190626975825],[-128.4112972269253,52.911946014982526],[-128.41120311422196,52.911978782169435],[-128.4111464874781,52.91199900362114],[-128.41113011496205,52.912006066525514],[-128.41108440317,52.91202157934455],[-128.4109985004266,52.91205137054701],[-128.4108791678833,52.912099786308865],[-128.41071030116603,52.912178368718905],[-128.41052181349616,52.91227248486803],[-128.41036985740894,52.91235352770354],[-128.41028840531476,52.91239611660992],[-128.41027126797465,52.91240600257558],[-128.41024776628532,52.91241881750008],[-128.41014887610672,52.912466248483845],[-128.40996203606838,52.91250707681538],[-128.40979810829091,52.91254127324441],[-128.40972049442257,52.91263535884736],[-128.40965142305888,52.91273207689697],[-128.40956489264536,52.912783747962656],[-128.40942604564316,52.91284938009022],[-128.40923853884314,52.912944595144864],[-128.4090495019617,52.91304545624172],[-128.4089011360783,52.913124172104915],[-128.40884410738633,52.91315393539187],[-128.40882690553343,52.91316269226975],[-128.4087712265512,52.91319971126464],[-128.40867154906326,52.91326622659184],[-128.40857630562627,52.91334497537941],[-128.40847120108555,52.91341440018845],[-128.4083806550489,52.913477364633536],[-128.40836035131886,52.913546730320135],[-128.40835681385303,52.91363257984064],[-128.40830479622457,52.91371773566631],[-128.4082225548871,52.913779399746275],[-128.40812776295854,52.913833481205856],[-128.4079967799172,52.91392305202453],[-128.40785215941636,52.91401851686536],[-128.40772647976837,52.914086675799936],[-128.40761965724408,52.91414212427932],[-128.40752560671132,52.91420907946082],[-128.40744848497238,52.914279051709855],[-128.40741857987737,52.91431049254557],[-128.40740195946532,52.91434615529112],[-128.40737234592478,52.91441571126641],[-128.40730481126738,52.91450679016694],[-128.40719061722328,52.914629661623835],[-128.40713194103984,52.914728963698074],[-128.4071520199715,52.91478742076496],[-128.40709135940386,52.91481893475266],[-128.4068896388497,52.91482754732373],[-128.40664280855606,52.91484605215678],[-128.40641309153386,52.91488718666184],[-128.40620318734224,52.91496548038852],[-128.40604077153492,52.91505962050609],[-128.40593731384382,52.915125089378115],[-128.4058368934359,52.91519497189216],[-128.405725156202,52.91527910534336],[-128.40564615146764,52.915348558656014],[-128.4055643257251,52.91543432262542],[-128.4054673101798,52.915547862251394],[-128.40539738135075,52.91564628116638],[-128.4053617044402,52.91570755591085],[-128.40533533553418,52.91576864030948],[-128.4053031333664,52.915858430278014],[-128.4052701403621,52.91593422579482],[-128.40523152571464,52.91597650002695],[-128.4051995982257,52.916005183026925],[-128.40518984150702,52.916013796058934],[-128.40519812145985,52.916045020560865],[-128.4052035944686,52.91614188858543],[-128.4051928560264,52.91628170291072],[-128.40517586792768,52.916409867847754],[-128.40517177956534,52.91650244651972],[-128.40517064486662,52.916564701181706],[-128.40516812845974,52.916619126675265],[-128.40516707351821,52.91668305702699],[-128.40511947129772,52.916764201061184],[-128.4050260483346,52.91687542427821],[-128.404983819723,52.9169693477638],[-128.40498543336972,52.91699791002095],[-128.40490844509577,52.91702078690339],[-128.40460209981168,52.91710777621929],[-128.40419988789426,52.91722979512917],[-128.4040075202041,52.91730548368918],[-128.4039640351762,52.917343937215044],[-128.403880431437,52.91739834234127],[-128.40376894829762,52.91745387320905],[-128.40355145726613,52.91756315438062],[-128.40320845712975,52.91774394883801],[-128.4029698132755,52.917858136833026],[-128.40282776729802,52.91790084555965],[-128.40261959847624,52.917960592506624],[-128.40229490917653,52.918053000090374],[-128.4019556400974,52.918151301487754],[-128.40171971055673,52.91823123915325],[-128.40150425922624,52.91831075827821],[-128.4012919306576,52.91837956629757],[-128.4011175383232,52.91844367091451],[-128.40096616429858,52.918519073616416],[-128.40082465256415,52.91860437463353],[-128.40071657906947,52.91867104486681],[-128.40067865097302,52.91869256561167],[-128.40063804119376,52.918732636429475],[-128.40055586614267,52.91881223242711],[-128.40048260627833,52.91888492819438],[-128.4004154590414,52.918950206880396],[-128.40033801617145,52.91901457439103],[-128.40023850084123,52.9190844331181],[-128.40013502445157,52.9191498967263],[-128.40004843762597,52.91920099615223],[-128.39994746913592,52.9192450966048],[-128.39982516105414,52.919290762455454],[-128.3997061025098,52.91932794838774],[-128.39957873630922,52.919366424850786],[-128.39945725598398,52.919410387129204],[-128.39933894591104,52.91947726476628],[-128.3992005747879,52.91956866171865],[-128.39909281240477,52.919640938951005],[-128.39891865567762,52.91969270206841],[-128.39866819598,52.91974657683142],[-128.3985641875914,52.91978626217421],[-128.39860770283164,52.91983077911073],[-128.39862235281907,52.91990896448076],[-128.3985050815243,52.91999432432286],[-128.39830656091155,52.92007685562248],[-128.39813050755666,52.92016117098352],[-128.39803243790058,52.920223714880045],[-128.39799838818828,52.92024795414462],[-128.3979764879386,52.92025624894823],[-128.39796470898153,52.92026209504316],[-128.3979232128345,52.92025341514131],[-128.39783100534757,52.92023791146557],[-128.39775962520022,52.92022815431543],[-128.3977112177973,52.92022914091854],[-128.39764546282728,52.920236652140574],[-128.39755461194454,52.92024523089042],[-128.3974712083233,52.92025365780203],[-128.3974369612465,52.92025771931795],[-128.39719284637175,52.920341733914114],[-128.3966860738247,52.92051126944319],[-128.39637885798751,52.920599940329936],[-128.39625803480334,52.92062258296365],[-128.39605282217536,52.92061947037581],[-128.3958278837087,52.92054725377891],[-128.39568926839385,52.92048560315489],[-128.395650446634,52.920474625599475],[-128.39560254313224,52.92048457065875],[-128.395455780189,52.9205099830739],[-128.39529599909383,52.920535660356826],[-128.39520436602683,52.92054705170568],[-128.39504333437554,52.920534077233974],[-128.39470450760868,52.92049164191609],[-128.39439282792932,52.92045145163276],[-128.39427272551785,52.92043707800641],[-128.39423994697208,52.92043438150588],[-128.39422129737474,52.92043420493559],[-128.39418667189386,52.920431546007784],[-128.39415947886323,52.92042873581429],[-128.39412655749902,52.92042323470873],[-128.39407838038562,52.92041188194519],[-128.3940367901517,52.920401516319686],[-128.39399362179483,52.920396232669866],[-128.3939181302401,52.92039608256649],[-128.39383905783092,52.92039881275785],[-128.3937377593458,52.920420499386694],[-128.39353623212736,52.92048290200453],[-128.39326126938616,52.920565293462644],[-128.39301798264475,52.920630787060205],[-128.39284820982968,52.92067796696821],[-128.39276805127722,52.9207109908449],[-128.3927519871345,52.920723650737976],[-128.39271025562167,52.92076037780166],[-128.39249527825237,52.920848839643014],[-128.3920544175517,52.920981135958655],[-128.3915341175812,52.92110943944786],[-128.390979703378,52.9212277870046],[-128.39061107095085,52.9213019849083],[-128.39053077863196,52.92131594958198],[-128.39051407844588,52.92135048986982],[-128.39046258679983,52.92146253448856],[-128.39042227123466,52.921591169923055],[-128.3904067902562,52.921680615015156],[-128.39035693995368,52.92178870650354],[-128.39027978926237,52.92190855560518],[-128.39021428349548,52.92198669281156],[-128.3901572808776,52.92203381987895],[-128.39008636923953,52.92208235067601],[-128.3900015202879,52.92214798247803],[-128.38995647449894,52.92220887698595],[-128.38992371868144,52.922355862771454],[-128.38993828288665,52.92258204820958],[-128.39004082599047,52.922681993824256],[-128.39010309885808,52.92267904248354],[-128.39011277936973,52.92271865271024],[-128.39006829878588,52.92290567459521],[-128.38994072406572,52.92317342409559],[-128.3897313518871,52.92334529995701],[-128.3894768496213,52.92344408422092],[-128.38933898158163,52.92349509548051],[-128.3891996452134,52.92355342862939],[-128.388897270456,52.92369578905096],[-128.3886337296532,52.923832884437545],[-128.3883611159812,52.923990900943565],[-128.38777537700997,52.924332420289346],[-128.38715983064614,52.924724429763685],[-128.3868982285621,52.92507899268718],[-128.38656028689152,52.92540202372317],[-128.38597680417897,52.92550186639172],[-128.38567661395427,52.925467590612136],[-128.38563076650405,52.925464600530105],[-128.38555566371815,52.92550479984257],[-128.38548734319824,52.925582991026374],[-128.38542660639288,52.92563019120303],[-128.38536758504532,52.92564147849014],[-128.38534458390947,52.92564698566861],[-128.3852903195432,52.925659862746066],[-128.38512843393528,52.92569845748887],[-128.38497027268676,52.92573698547914],[-128.38491879325628,52.925749796959956],[-128.38490349183166,52.925759641707586],[-128.38486292322034,52.92580082682437],[-128.3848203424092,52.925889142665746],[-128.38476643600845,52.92610830210015],[-128.38458284337287,52.926474732155086],[-128.38430415828196,52.926757869448984],[-128.38415513728705,52.9268433009217],[-128.38392786372393,52.926846219563394],[-128.38346494488962,52.92685223408066],[-128.38316769458697,52.92687058805676],[-128.3830178993392,52.926908943825936],[-128.3828061852268,52.92697321048938],[-128.3826223880953,52.92703692042834],[-128.38251606224037,52.927085598202915],[-128.38244907555946,52.92712115525737],[-128.38241382217464,52.9271409292411],[-128.3823556296387,52.92718359140996],[-128.38224370585883,52.927282279572744],[-128.38213045372467,52.92740733791395],[-128.3820349304528,52.92753260229739],[-128.38196254915545,52.92763833793727],[-128.38191448279574,52.927712188088925],[-128.38189292537066,52.92779334990815],[-128.38191942646858,52.92790044735635],[-128.38197839957522,52.92802146287837],[-128.38202895294722,52.92812527491169],[-128.38197431495408,52.92821495469957],[-128.38175276901683,52.92832034605967],[-128.38150263075954,52.92841453872497],[-128.381343688903,52.9284558757859],[-128.38125499411245,52.92848682156876],[-128.38116002612642,52.92855545843164],[-128.38102678177825,52.928656253962636],[-128.3809019272204,52.92879052409603],[-128.38082619368197,52.92891987157387],[-128.38079807554905,52.92898378296707],[-128.3807941481918,52.92899676054277],[-128.38078804606582,52.92902098500159],[-128.3807629182565,52.92910502617794],[-128.38073638465448,52.929247388433446],[-128.3807190533563,52.92940414885839],[-128.38071347188222,52.9295208649999],[-128.38071253508843,52.92957077218848],[-128.38070033107329,52.929619230039336],[-128.38066294983616,52.92971752938268],[-128.38062184391111,52.9298159040589],[-128.38058006421562,52.92988570662403],[-128.38053313450015,52.929946634910195],[-128.3804656735652,52.93002368406149],[-128.38036553798761,52.930133343398104],[-128.38025548102442,52.930265626998505],[-128.38014741397518,52.93048363629861],[-128.3800701620909,52.930785676031924],[-128.38005724661818,52.93110491842291],[-128.3800897347152,52.931568987263994],[-128.38012916312653,52.93220726399188],[-128.3801647246833,52.9327598527375],[-128.3801832318313,52.933007259671676],[-128.3801852363668,52.93304309695413],[-128.380160070823,52.933059858596955],[-128.380107909346,52.93309399292944],[-128.3800809129095,52.93311135665903],[-128.38011274941974,52.9332138615049],[-128.38018100884744,52.933417657216715],[-128.38021682124122,52.933524566337624],[-128.3802212662308,52.93353736553944],[-128.3802368138689,52.93371531896075],[-128.38026847611334,52.93414801968692],[-128.3802971930697,52.93451125767864],[-128.380304631124,52.93461089235142],[-128.3803093137496,52.93467806850128],[-128.38012598802726,52.934983939002954],[-128.37966411848743,52.935443993531415],[-128.37930525307752,52.935711919105024],[-128.37914919498724,52.935838968847506],[-128.37900961596884,52.93599370575867],[-128.37894026525944,52.93607079170154],[-128.37880982486206,52.936005592475084],[-128.37847846698864,52.93589849440267],[-128.37820699211704,52.935878749528676],[-128.37813731177457,52.93589978269079],[-128.3781202986735,52.93589564175565],[-128.3780728903049,52.93588145931456],[-128.37786925073323,52.93582447418813],[-128.37742786759895,52.93570052719157],[-128.37697878464124,52.93562214631517],[-128.3766914850665,52.935686249881826],[-128.3765753314237,52.93579343016621],[-128.3765600843753,52.935837464009204],[-128.37655363508216,52.93585553309394],[-128.37652656929868,52.93593848175076],[-128.37642160414688,52.936062253583074],[-128.37627687100314,52.93612515451004],[-128.37614653916992,52.93614516870378],[-128.37596702888257,52.93618634781918],[-128.37574528895294,52.93623903479559],[-128.37552788476773,52.93628602794016],[-128.37531512902103,52.936332926854256],[-128.3750688986968,52.93631435146789],[-128.37481508591364,52.936210163018664],[-128.37457349300118,52.936157857730194],[-128.37419080941268,52.93618351713732],[-128.3737659426283,52.93622179398362],[-128.37346213938622,52.93627445447132],[-128.37324235189237,52.93632877456393],[-128.37312395892027,52.93636255483492],[-128.37307110069892,52.93638436689867],[-128.37303010613255,52.93640144605525],[-128.37296657214847,52.9364324427339],[-128.37281646573916,52.936482558566844],[-128.37257439381855,52.93650537762896],[-128.37236605742265,52.93648098289988],[-128.37229586307222,52.936459418211356],[-128.37207336760417,52.9363983095857],[-128.37136530543978,52.93629037042579],[-128.37037862211858,52.93631866038025],[-128.36961777971374,52.936467957653086],[-128.3692286856736,52.93657950416131],[-128.3689141118469,52.93667328790789],[-128.36856400294138,52.936781796113884],[-128.36831831431144,52.93685681816292],[-128.3679096559983,52.93693510967871],[-128.3673196050931,52.93702097706826],[-128.3670501804953,52.93705499044381],[-128.36688294605094,52.93703200172196],[-128.36654954152237,52.93698825348702],[-128.3663823081089,52.93696527301244],[-128.36635510635335,52.93696245642336],[-128.36621235509404,52.93687675393639],[-128.36599124503135,52.936706296329895],[-128.36587676590372,52.936609369470375],[-128.36586596879792,52.936599495968565],[-128.3657489027661,52.936623716533724],[-128.36536057486782,52.93669879205163],[-128.36490307118828,52.93680440674746],[-128.3646571053949,52.936891194404794],[-128.36451447326138,52.93697534047006],[-128.36435560647783,52.937069346925355],[-128.36425626590403,52.93711058352858],[-128.36409732462636,52.93705211188723],[-128.36382729022364,52.936940933998386],[-128.36367990275184,52.93692259189914],[-128.36367034304658,52.93700238700252],[-128.36367339703844,52.93704044546676],[-128.36364707194622,52.937036489477954],[-128.36359001227876,52.937016333161395],[-128.3635624374138,52.93700679640034],[-128.36350336925415,52.937000699494035],[-128.36336646731024,52.93698663111331],[-128.363218047585,52.93696662292548],[-128.36301834356362,52.936929714486915],[-128.36277859230557,52.936876783181575],[-128.36258224114312,52.93683307968535],[-128.36247265693055,52.9368072501959],[-128.36244428297314,52.93679997155986],[-128.3624501787727,52.9367718239616],[-128.36246361504195,52.93671156716838],[-128.36247189329896,52.93667608862211],[-128.3624739792781,52.936663148808066],[-128.36246667580852,52.93664928527054],[-128.3622014734042,52.936523987656784],[-128.36167714605457,52.936315882176736],[-128.36138163757585,52.936215865627894],[-128.36110591197274,52.93611937108688],[-128.36062657531332,52.93591539924841],[-128.36036113370702,52.93575199163253],[-128.36024623401906,52.935613584706836],[-128.36009750751214,52.935487076696745],[-128.3600126748715,52.93541982145397],[-128.35995452447847,52.93536325177519],[-128.35989784064623,52.93531617811933],[-128.35984528543455,52.93527630477008],[-128.35977537792476,52.935226132704514],[-128.35971087958137,52.93518930617904],[-128.35965351373028,52.93516354830975],[-128.35949315003325,52.935062494728335],[-128.35924453507582,52.93488305097223],[-128.35911781408834,52.9346322068962],[-128.3591062956294,52.93432355100602],[-128.35910107976565,52.934162207076994],[-128.3590904948668,52.93413943975781],[-128.35907200174842,52.934125235254164],[-128.3590502342201,52.93411950067598],[-128.35888605814168,52.934084115664554],[-128.35854367590034,52.933995678461784],[-128.3582653946439,52.93388633083544],[-128.3581084608009,52.933796418418986],[-128.35800546097755,52.93373793907516],[-128.35795446923584,52.933709254258474],[-128.35788903609307,52.93367244550834],[-128.35778309527362,52.933611217493635],[-128.35768344892477,52.933545943674055],[-128.35758931227204,52.93347888212611],[-128.35749625454923,52.933414597332074],[-128.357385248377,52.93334618732732],[-128.3572171990464,52.93324080005585],[-128.3570209429723,52.933114110207484],[-128.35682492177182,52.932991908989834],[-128.35652946217166,52.93289187080139],[-128.3561713270009,52.932788045997924],[-128.355954079251,52.93265281434035],[-128.3558540125778,52.93256288172164],[-128.35580826098928,52.93254473773427],[-128.3557215453671,52.93251059620998],[-128.35554964331652,52.93245349406079],[-128.3553902574072,52.93240342427193],[-128.35527324825787,52.93236091939888],[-128.35503781544918,52.93231798595279],[-128.35469910255293,52.93231243099692],[-128.35442669441977,52.93234254709994],[-128.35424874666563,52.93237805599032],[-128.354147523434,52.932401948238805],[-128.3540729563753,52.93241913625987],[-128.3539746266702,52.932444647741306],[-128.35389153100945,52.93245919883628],[-128.35380473626324,52.932457571401095],[-128.3536681618528,52.93244909135145],[-128.35347875907692,52.93242933481343],[-128.3532841198213,52.93239903607572],[-128.35314273690125,52.932371026651346],[-128.35306160120945,52.932353589159376],[-128.3529943953613,52.932335316989395],[-128.3529118713803,52.93230949390963],[-128.35281769410233,52.93227549948667],[-128.35272887136563,52.932236913267346],[-128.35264152478183,52.93219157046405],[-128.35252849142714,52.932103015551206],[-128.35240093606802,52.93198784279612],[-128.3522719884164,52.93189792850482],[-128.35217111118777,52.93184388648452],[-128.35213659806772,52.93182663764137],[-128.35213254272253,52.93180373026937],[-128.3521245107417,52.93175960915709],[-128.35212053361045,52.931738386457496],[-128.35212152935512,52.93172267020171],[-128.3521513786056,52.931638542069955],[-128.35221279082384,52.93148483566602],[-128.35226048484031,52.93136952314762],[-128.35227231959433,52.93131379322917],[-128.35227142692642,52.93126391459159],[-128.35227327381605,52.93121286899182],[-128.35226855900896,52.931144571956324],[-128.35225122525583,52.93103335768395],[-128.35222908387237,52.93090262353554],[-128.35220461102674,52.93079716676067],[-128.35217299803017,52.93069744957294],[-128.35213655694022,52.93056083927575],[-128.35210597652784,52.930412335057554],[-128.35208466652045,52.93027989799158],[-128.35207093966505,52.93018319572317],[-128.352059926339,52.93010212660987],[-128.35204190780203,52.93001223712718],[-128.35202494583623,52.929958194966794],[-128.35201963300076,52.92994653336565],[-128.35206881076314,52.92990855181938],[-128.35213312472712,52.92984111729443],[-128.35216032627946,52.92981030199359],[-128.35215191745854,52.92979308746608],[-128.35212218337827,52.92974435035847],[-128.35207414620513,52.92968476739717],[-128.3520273572329,52.92963076531531],[-128.35197385729322,52.92957353384237],[-128.35191827884964,52.929512424280496],[-128.35187483324248,52.92946844584151],[-128.35185366280967,52.92943971855924],[-128.35184503781522,52.929418588721724],[-128.3518407562666,52.92940858376884],[-128.3518685774985,52.92933851520569],[-128.35190980753038,52.92907253002715],[-128.3519167543093,52.92872594967612],[-128.351876720564,52.92855801822828],[-128.35177240460342,52.92855953808937],[-128.35162327188397,52.9285597201577],[-128.35152426561453,52.928505640256034],[-128.35147965025888,52.928457200369174],[-128.35144153495517,52.9284254481224],[-128.35143360141586,52.928399819752016],[-128.35142760777876,52.92837582988551],[-128.35134871981055,52.9283314383393],[-128.3511952568299,52.92825322451495],[-128.35100138826172,52.92815226426544],[-128.35059143672515,52.928088143370424],[-128.34999814508043,52.92809663021252],[-128.34965179366222,52.92812092045655],[-128.3494827034316,52.92813102381503],[-128.34928204849712,52.928143443369166],[-128.34901654368204,52.92811230146922],[-128.34868806889858,52.928038134207505],[-128.34852081511963,52.92799719083798],[-128.34839884472802,52.92798280763467],[-128.34800609375705,52.92794299129048],[-128.34740157181446,52.92788329790921],[-128.34685574944763,52.9278229957879],[-128.3465855854595,52.92779194139994],[-128.34652833296764,52.92778467886988],[-128.346506819935,52.92780023916227],[-128.3464609318194,52.927830304608975],[-128.34643657163318,52.92784480946498],[-128.34640360518486,52.92783873984481],[-128.34636866795339,52.92783046717877],[-128.34633725500785,52.92781876072387],[-128.34629034195274,52.92779615165663],[-128.34622420528086,52.92776327030336],[-128.34618017105007,52.92774229002791],[-128.3461448941322,52.927727853163546],[-128.34609524227434,52.92770641979748],[-128.3460732639449,52.92769676749855],[-128.34599074111722,52.92768776621776],[-128.34582362687087,52.92763223215648],[-128.34564652604968,52.92747992043412],[-128.34547103963223,52.927306274091386],[-128.3453871088144,52.92723787858543],[-128.34534227272897,52.92720232984346],[-128.3452309759365,52.92711093517209],[-128.34513644743387,52.92696874468573],[-128.3450989607979,52.92676207577959],[-128.34503835966174,52.92655867491982],[-128.34488028641078,52.92639644845602],[-128.3446751238171,52.926242452223015],[-128.3444656981239,52.92607845007953],[-128.34421284464878,52.925904666197965],[-128.34384705931578,52.925677064112485],[-128.34340829738687,52.92539374381478],[-128.34304462064273,52.925238417148776],[-128.342691571429,52.92517424847611],[-128.3423446318233,52.925085856518365],[-128.34211439013035,52.92501756400115],[-128.341958080521,52.924971909070244],[-128.3418898131962,52.92495084453029],[-128.3418363674981,52.92496199880359],[-128.34170279138763,52.924990444202486],[-128.34160601053745,52.92501030900106],[-128.34158574304323,52.92501463195303],[-128.34155530364822,52.92502028746982],[-128.34144844243363,52.92504315117804],[-128.34127323893142,52.92507747419647],[-128.3410051147203,52.925100182794424],[-128.3406851894729,52.92509590109995],[-128.34051136853125,52.92508758216479],[-128.34047235734803,52.9250900444087],[-128.3404215122008,52.92511460029587],[-128.34031377322955,52.92513860158203],[-128.3400878744338,52.92508143044314],[-128.3398043283367,52.924976073963556],[-128.33968346243938,52.92493083238319],[-128.33961681213387,52.92490524972854],[-128.33948264973213,52.924855222610994],[-128.33941606122298,52.92483075978359],[-128.3393411321462,52.924841218899495],[-128.33919947570843,52.924875427919176],[-128.33909835394834,52.92490098277074],[-128.3390569569996,52.92491077507092],[-128.3388410476677,52.924967761910146],[-128.33847342783685,52.92519818080993],[-128.33831543462531,52.92551188354455],[-128.33832831196986,52.92564448120504],[-128.33822858806656,52.92567842069242],[-128.33801850538885,52.925756592237775],[-128.33787895124456,52.925846250959964],[-128.33782019135666,52.925930384647934],[-128.33779255042015,52.92597017459691],[-128.33774261156796,52.92597733769034],[-128.33761827960868,52.92598765602341],[-128.33745468887548,52.925995946738325],[-128.33721010340707,52.92600585507064],[-128.33689748065433,52.92601598406445],[-128.336651710482,52.92602143010529],[-128.33648696597578,52.9260258227926],[-128.33631571142584,52.926030344512384],[-128.33615104322072,52.92603585637679],[-128.33607118647416,52.926041361461344],[-128.33603368149798,52.926054438875134],[-128.3359117626211,52.926091615407124],[-128.33573396287812,52.92614671856258],[-128.33565142691154,52.92617134528677],[-128.33549749606613,52.926219803380874],[-128.3349065945203,52.926407553227314],[-128.33412178447176,52.926662496865426],[-128.333663797519,52.92680948398449],[-128.33346013873935,52.92685219858092],[-128.33324488141218,52.926853103736995],[-128.33301760761378,52.926839115562686],[-128.33285309189915,52.92683060071516],[-128.33276253860973,52.92682791136019],[-128.33269083765612,52.92682933283863],[-128.33261448872355,52.9268308464156],[-128.3325447262061,52.926833350538274],[-128.332447384502,52.92684312828375],[-128.33223644729043,52.92687197498483],[-128.33200514862367,52.926903467167385],[-128.3318971089571,52.926921869663964],[-128.33182229707472,52.92693456386929],[-128.33166313176952,52.92695565656726],[-128.33144015811865,52.92698586149151],[-128.3311069940092,52.92701264324542],[-128.33061656635567,52.92701002543853],[-128.3301555536064,52.92698271366464],[-128.3299167043206,52.92697847411424],[-128.32979314560922,52.92702016123823],[-128.32967910829998,52.927082405647994],[-128.32958096749442,52.92714544740754],[-128.32951580594323,52.92721512819165],[-128.3294905821474,52.927282341022845],[-128.32944848315708,52.92731344576389],[-128.3293837045854,52.9273220112167],[-128.32935691011383,52.927326470190316],[-128.32933654857507,52.92732911558801],[-128.3292887940105,52.92732501122823],[-128.32924324750286,52.92729339922598],[-128.32919795415668,52.92723207596268],[-128.32910698473128,52.92710270103593],[-128.3288986108197,52.926957146212],[-128.32865481189998,52.92693057889003],[-128.32851149244988,52.92696873614767],[-128.32843997036736,52.92699033235031],[-128.32825998868412,52.927039861302994],[-128.32792095659076,52.92712953498099],[-128.3276453036745,52.927202257701495],[-128.32750021677603,52.92722530852718],[-128.32740069360815,52.92721213697816],[-128.3273274452799,52.92718500072959],[-128.3272376006455,52.92717836456202],[-128.32701348612292,52.92725623727676],[-128.32668837803985,52.927396084040005],[-128.32649349979312,52.927480095582666],[-128.32643788918642,52.927503062146705],[-128.32642420534847,52.92750837341733],[-128.32636587002645,52.927532514973734],[-128.3261807147401,52.9276751989804],[-128.3259842254491,52.92788313381151],[-128.3259165869276,52.927975840628456],[-128.32579522730717,52.927904243081315],[-128.32545537828528,52.927774743855565],[-128.32505139179315,52.92771657882557],[-128.3247446328085,52.92768059194388],[-128.32459760291854,52.92761679236703],[-128.32456909448788,52.92758988274557],[-128.32445839929397,52.92766214627749],[-128.3242268650622,52.927809106705574],[-128.3240357257165,52.92787622283217],[-128.32384702972553,52.92786873799632],[-128.3236156344358,52.92788172076647],[-128.32344250229394,52.92790307798956],[-128.32329475371623,52.927911601062995],[-128.32314912673772,52.92792456668507],[-128.32305193296557,52.92793713204571],[-128.3229675147822,52.927944404400726],[-128.322848668736,52.92795292138701],[-128.3227267157494,52.927955884836045],[-128.32254106489628,52.92795282241583],[-128.3223049357075,52.92794739248572],[-128.32211183601402,52.9279444763994],[-128.32194979195043,52.9279471180194],[-128.3217442527637,52.92795565834523],[-128.3215058567949,52.92795979687008],[-128.32126485862764,52.92796735867778],[-128.32108175733143,52.927977132453194],[-128.32098335705015,52.92800149649545],[-128.32091662293956,52.92804261824715],[-128.32081494157717,52.92810965071906],[-128.32065056937333,52.92818913102473],[-128.32046471184816,52.92819952323647],[-128.32025169134792,52.92813925301016],[-128.3200040062255,52.92809256362452],[-128.3197661364405,52.928089405218614],[-128.3195880332808,52.92810524894711],[-128.3194953794984,52.928115488507345],[-128.319402939052,52.92812964334112],[-128.31928851788288,52.928150958267366],[-128.31918107936613,52.92818053962243],[-128.31907365655985,52.92821068562741],[-128.31901329397553,52.92821468262502],[-128.3189523372784,52.92817383620367],[-128.31881459479658,52.928109281468736],[-128.31863749922036,52.92810940775168],[-128.31847804704972,52.92815963801959],[-128.31840096190493,52.92818190263813],[-128.31836889847247,52.92819205968215],[-128.31817479697384,52.92822223535011],[-128.31771259077317,52.92829300360176],[-128.31723163858317,52.928361896859435],[-128.31674085511705,52.92842144740535],[-128.31618411674344,52.92860506469925],[-128.3157270171927,52.92888986433294],[-128.31546469931365,52.92900265681696],[-128.3152903231992,52.928950030394624],[-128.31506038388713,52.92890410263027],[-128.3147740145517,52.92890021097839],[-128.31454545201848,52.92889685885578],[-128.31432114028843,52.92878298489503],[-128.31381347167638,52.928600695671655],[-128.31321452921526,52.928539596647646],[-128.31297955444154,52.92855542712524],[-128.3129586490798,52.92851379044287],[-128.31291769210367,52.928394632457774],[-128.31286814572152,52.92825490649387],[-128.31281068324577,52.92812374023617],[-128.31274274282785,52.927988295286575],[-128.31269181584784,52.92789175616564],[-128.3126781666508,52.92786343061581],[-128.31253506567313,52.92782027589602],[-128.31212771506424,52.9276825313201],[-128.31172662870003,52.92745441422371],[-128.3115596820325,52.92721216213771],[-128.31146798678907,52.927051396691986],[-128.31134200606772,52.92697987551146],[-128.3112296430349,52.926936115471364],[-128.31111889915954,52.926887838925],[-128.3110117884489,52.92683780471162],[-128.3108844793299,52.92677639949953],[-128.31074717553577,52.926702301693005],[-128.3106493274193,52.926634146861296],[-128.3105556565873,52.92655694969323],[-128.3104557186437,52.92648435114464],[-128.31035634039236,52.926405023594505],[-128.31022897699887,52.92629092471944],[-128.31009361855627,52.9261668923286],[-128.30997403927026,52.9260588022037],[-128.30989249761342,52.92598192249951],[-128.3098285814117,52.92592039284088],[-128.30972964304604,52.92583208694753],[-128.30960096787476,52.92572810351989],[-128.30942966457235,52.92564569344053],[-128.30928296849083,52.92558747444264],[-128.30923161781502,52.92551728474859],[-128.30913105900734,52.925416112466095],[-128.30896583957423,52.92530836095159],[-128.3088101903031,52.92520547108415],[-128.3086418557538,52.92510899175883],[-128.30846189674807,52.92502170946914],[-128.30833306845523,52.92496649325324],[-128.30829206874716,52.924949359201506],[-128.30827776167126,52.92494347803962],[-128.30820172834228,52.92491637583544],[-128.30805481102936,52.92487104844137],[-128.30787166691061,52.9248281176602],[-128.3077248741761,52.92480240305621],[-128.30766383251924,52.92479407498861],[-128.30759190617314,52.92479100105287],[-128.30739214779763,52.924802766650124],[-128.30712570486975,52.924839383633824],[-128.306903800025,52.924872319423734],[-128.30680454901335,52.92488099223238],[-128.3067869122557,52.92488245915868],[-128.30673589387558,52.92488682283109],[-128.30663101147357,52.92489504980515],[-128.30656436988713,52.924903639217],[-128.30653206381575,52.92490932217987],[-128.30649415602974,52.92491510597448],[-128.30647938054875,52.92491763791383],[-128.3064547656504,52.92492765468226],[-128.30640738254598,52.92494764303448],[-128.30638461434083,52.92495761461905],[-128.30631744370774,52.92497350621035],[-128.30617109758333,52.92500776686918],[-128.30597317303327,52.925053128544725],[-128.30574394121527,52.92510583028367],[-128.30548318902748,52.92516139148028],[-128.30512687703788,52.925208177825205],[-128.30484572667973,52.925214241632595],[-128.30477426883263,52.92520275266392],[-128.3047112887442,52.92519277483106],[-128.3045862373708,52.92517280126543],[-128.30441887140117,52.92514580827966],[-128.3041434105514,52.925101872401235],[-128.30389969538757,52.925024801008476],[-128.30382659573098,52.92489673530517],[-128.30381701897113,52.924737163761954],[-128.3037984493182,52.9245833650561],[-128.3037293622533,52.92444345314303],[-128.30359979671476,52.924322663650436],[-128.3034789542905,52.92424262962645],[-128.3033735094047,52.92418863654165],[-128.30325283460346,52.92412877070535],[-128.30316190871338,52.9240845835481],[-128.303097764342,52.92405332586712],[-128.30304318771803,52.92402636546526],[-128.30302588367914,52.92401661384246],[-128.3030134397154,52.92401069558944],[-128.3029433005976,52.92398908043835],[-128.30282535320222,52.92396223913869],[-128.30276128568516,52.92394948319823],[-128.30264966694057,52.92393652772558],[-128.30235453650988,52.923942303253746],[-128.30198707388757,52.92400667175604],[-128.3015027686319,52.924047538304926],[-128.30094652379117,52.924016379096955],[-128.30070562026486,52.92399081903481],[-128.3007137959184,52.92395254018079],[-128.30072984476317,52.92383562709959],[-128.3007445011331,52.923692954857664],[-128.3007564469563,52.923586212305985],[-128.3007321053225,52.92348073542511],[-128.30066118264503,52.92337561330165],[-128.30056435780568,52.923308560520084],[-128.30041300323134,52.92326723010309],[-128.30026644815638,52.92322861301436],[-128.30017413514202,52.92317604662477],[-128.3001236644432,52.92313891431969],[-128.30010931299503,52.9231319029437],[-128.3000787941862,52.9231190458025],[-128.29996798234913,52.92306908318643],[-128.29977581808538,52.92297978432153],[-128.2995675026869,52.92286725674479],[-128.29939320479042,52.92274621596847],[-128.29927447924533,52.92265323874796],[-128.29920856937284,52.92260631746497],[-128.2991901029911,52.922557903962634],[-128.2991231959976,52.92247512542029],[-128.2989602065233,52.92240824315291],[-128.29883643806107,52.92237702712109],[-128.29866551368414,52.922352894103874],[-128.29826921467918,52.92229729584311],[-128.2978671970233,52.92220480115625],[-128.29756796429857,52.92216916261948],[-128.29706355193838,52.922113429282284],[-128.296511784847,52.92195714996689],[-128.29630858178828,52.921870303381766],[-128.29624924171094,52.92185856388754],[-128.29612685372663,52.92183573120053],[-128.29606752929982,52.92182455636836],[-128.29605969073387,52.92180004413669],[-128.29604201593065,52.921748816365124],[-128.29603077286214,52.92171315911351],[-128.29583183955248,52.92163631871961],[-128.29534388269926,52.921418803116936],[-128.29488533556852,52.9211592384823],[-128.29450923353153,52.920993917702084],[-128.29417264579726,52.920904619214014],[-128.29397035193938,52.92086876759454],[-128.29383724559074,52.92087191895322],[-128.2937710638139,52.92087153205764],[-128.29376502511465,52.9208632367178],[-128.29375555261765,52.92084324078442],[-128.29374747141665,52.920831630798716],[-128.2937293076327,52.920823015764086],[-128.29369098255452,52.92080358233964],[-128.29364757556976,52.920759017725864],[-128.29360228632814,52.920662361021854],[-128.2935593148722,52.92055668995107],[-128.2935252999254,52.92047887289202],[-128.29349630941377,52.920407684745584],[-128.2934763119848,52.92033071554978],[-128.29348593042891,52.920215050059454],[-128.2935309738445,52.920082441830466],[-128.29360750260489,52.920032740618566],[-128.2936921271045,52.919994649060996],[-128.2937273048771,52.919834760506795],[-128.29372906512342,52.91964245413732],[-128.29373443409588,52.91949996390524],[-128.2937399294141,52.919411842303845],[-128.29365793757754,52.919377564193454],[-128.29348150337202,52.91935466143174],[-128.29336863577274,52.919300804409694],[-128.29332564443874,52.91922932406315],[-128.2932934714714,52.91918567043776],[-128.29326202211038,52.919155447482936],[-128.2932177845117,52.91911258510197],[-128.293137707443,52.91904463493396],[-128.29301849332532,52.91894213592429],[-128.29288233032557,52.91881922144467],[-128.2927250391562,52.91868438596824],[-128.2925757658897,52.91857742269601],[-128.29251792021765,52.91854155212583],[-128.29250191408292,52.91857325612929],[-128.29248210052958,52.91856859258967],[-128.2924254915936,52.918555685856006],[-128.292172767289,52.91862170819988],[-128.29175400187032,52.91877113105685],[-128.29154510782377,52.91885480154512],[-128.29153741559614,52.91886784903612],[-128.2914652089481,52.91894604946813],[-128.29131599765054,52.919099754211715],[-128.29120937539147,52.9192139453047],[-128.29118847967118,52.91924125973978],[-128.29116908109535,52.91920968041538],[-128.29111554491007,52.91913280793844],[-128.29106791031245,52.91906141726351],[-128.2910409333367,52.91901036994827],[-128.29102737044715,52.91894897109319],[-128.2910376047046,52.918879260788934],[-128.29106738094902,52.918809169910155],[-128.29109624910248,52.91873966176109],[-128.2911109794332,52.91866705652979],[-128.29111187436436,52.91859697199813],[-128.2911084385274,52.918533133620926],[-128.29110553412764,52.91846199296113],[-128.29109672784125,52.91838480542186],[-128.29108799734863,52.91830930260573],[-128.29107967333815,52.91824107483205],[-128.2910737990493,52.91818401080414],[-128.29104319347624,52.91811733809929],[-128.29095310209553,52.91798455507961],[-128.2907854625452,52.917743965881606],[-128.29059385670803,52.91747358112873],[-128.29047507275675,52.91732678152265],[-128.29041608106849,52.91728700377697],[-128.29036479303764,52.91725156957133],[-128.29019186380054,52.91712039874735],[-128.28978539726478,52.91682279436503],[-128.28938536989838,52.916523386085736],[-128.2892090592093,52.916381068222826],[-128.28915466181394,52.916322706041484],[-128.28910634647013,52.91627319465288],[-128.2889665703842,52.91615203233749],[-128.28863844466747,52.915872524315084],[-128.28830584708686,52.9155790835923],[-128.28816326560505,52.91544003659452],[-128.28813470333506,52.91539406012089],[-128.28812572177765,52.915365650081405],[-128.28811460308694,52.91529747643759],[-128.288092636443,52.91516616454767],[-128.28807336926735,52.915067878439515],[-128.28806796048042,52.915036591548194],[-128.2880103351718,52.914952505273],[-128.28788969058246,52.91480573932938],[-128.2878308364555,52.91473345338899],[-128.28785349812378,52.91472180117704],[-128.2878907368204,52.91470369465582],[-128.28794261884275,52.914663445439125],[-128.28803464098516,52.91457252890937],[-128.2881258101703,52.91444855057275],[-128.28817372819933,52.91435175594382],[-128.28820427912657,52.91427885217209],[-128.2882629154764,52.91417344487426],[-128.28835853377242,52.91404545124917],[-128.28846447362383,52.91391894292821],[-128.28855082292884,52.9138090767576],[-128.28860157963607,52.91373073007388],[-128.28863418604513,52.913661140621805],[-128.28870496901052,52.91357400011803],[-128.28882891022394,52.913470120181096],[-128.28894133529914,52.913360302359656],[-128.2890296592143,52.91321788403589],[-128.28909563302798,52.91305851828583],[-128.28916611247197,52.91296576863037],[-128.28925652271215,52.91293149580718],[-128.2892987073879,52.91291890723119],[-128.2891854704682,52.91285776165731],[-128.28892995036247,52.91269792534076],[-128.2887294468382,52.912538704219216],[-128.2885996287018,52.912411732978036],[-128.28844383529045,52.912252197564435],[-128.28829155573166,52.912088674057635],[-128.28822840948587,52.91200581635875],[-128.28824632818163,52.91195781447719],[-128.28824778542486,52.91184623632878],[-128.28815186579757,52.91169114148727],[-128.28801886548393,52.911591704153516],[-128.2879654481062,52.91156863403611],[-128.28788666158377,52.91155895504505],[-128.28773890810618,52.9115489401671],[-128.28766072344357,52.911550460805636],[-128.2876057288731,52.91158459977722],[-128.28747770223166,52.911647075557276],[-128.28735650056916,52.91166288632966],[-128.2872762039629,52.91164258090221],[-128.2871963082212,52.9116469418566],[-128.2870484128896,52.911651494824476],[-128.28686690755873,52.911602894924464],[-128.28676646220114,52.91155439609893],[-128.28673820801018,52.91154877459708],[-128.28669821655177,52.911567490438244],[-128.28659019623373,52.91158585151887],[-128.2864226482726,52.911571726232154],[-128.28624625029445,52.911548812513324],[-128.2861359079768,52.91154142293966],[-128.28608072960537,52.91153745469431],[-128.2860351442445,52.911538896751374],[-128.28598158566618,52.911617296846536],[-128.28581949948088,52.91177404403142],[-128.28558266839363,52.91187506484816],[-128.28539605553803,52.911887659980465],[-128.285245666663,52.91188049155066],[-128.2851330951764,52.911883799714786],[-128.28502917885183,52.91189198927795],[-128.2848944638404,52.911899090821144],[-128.28476618820557,52.911887563722836],[-128.28461879343647,52.91184950928458],[-128.28444668770013,52.911802400361495],[-128.28419729847587,52.91177360921823],[-128.28387888262074,52.91177810603265],[-128.28359905696186,52.91178970978103],[-128.28337251080066,52.91182213645601],[-128.28313273128524,52.911937784353825],[-128.28292109162837,52.912074187351614],[-128.28283905493626,52.91212566602364],[-128.28280135084822,52.91210005532889],[-128.2826975758842,52.91205890069303],[-128.28258819423922,52.91203468092299],[-128.28242210265847,52.911943162630315],[-128.28219886018775,52.91179389733248],[-128.2820171803485,52.911707174489685],[-128.28183274534373,52.911655816422815],[-128.28165833153855,52.91160033519042],[-128.28153514063024,52.91156180744901],[-128.28140758822278,52.911528960934454],[-128.28126698250298,52.91151319359788],[-128.2809653891132,52.91153585967333],[-128.28056019382782,52.91157286630163],[-128.28031958059685,52.91158593530231],[-128.280196268842,52.91157992172217],[-128.28012159678204,52.911577440760475],[-128.28006172738193,52.91157299558048],[-128.27995327784907,52.911566128595105],[-128.27981599715662,52.911560385383325],[-128.27961342710645,52.91155310002642],[-128.27936955819519,52.91154044385906],[-128.27916424850463,52.9115343319663],[-128.27903994455855,52.91154458851095],[-128.27898457774822,52.911554630418465],[-128.27896617233594,52.911558915513915],[-128.278942280746,52.911547601914066],[-128.2788800345802,52.91151629472805],[-128.27878927194598,52.91149171075552],[-128.27864935639042,52.91148881561191],[-128.2784390581934,52.91152876599714],[-128.2782518772707,52.91158284311125],[-128.27812394911425,52.91157747286703],[-128.27801309329547,52.911543178201185],[-128.2779188476953,52.91152314559479],[-128.27786171844798,52.91151752509154],[-128.2777903410463,52.91152451305617],[-128.27768949333196,52.91153767736597],[-128.27761569047092,52.91155143905074],[-128.27757926807976,52.911567275262016],[-128.27756674672705,52.911577051918044],[-128.27753560003018,52.91160456245037],[-128.27740399987343,52.91166989454763],[-128.27711049376865,52.91175685533418],[-128.27674676633413,52.91178519793218],[-128.27641956148412,52.911729868016835],[-128.27625698322998,52.91163435377511],[-128.27622802760231,52.91156316098895],[-128.2762129911399,52.91152589817401],[-128.27620322958103,52.9115003007933],[-128.2761602442931,52.91148038699228],[-128.27606382835677,52.9114721624309],[-128.27594060709626,52.9114678198866],[-128.27577451044002,52.91146318562825],[-128.27553687146494,52.91146217749222],[-128.27531720900643,52.911466426851106],[-128.27521293271516,52.911467887840196],[-128.27519428708496,52.91146768344784],[-128.27516229937478,52.911531651198466],[-128.27508816671894,52.91166145138118],[-128.27503474807096,52.91172526854202],[-128.2749740307741,52.911722523377165],[-128.2748685906682,52.91171951302114],[-128.2745676289556,52.91178923833548],[-128.2740976423735,52.911956406687864],[-128.27381757038725,52.912085711679886],[-128.2737335865074,52.91213554420372],[-128.27369716217333,52.91215137920758],[-128.27355534209124,52.91216533190062],[-128.27323934805855,52.91223254588232],[-128.27300242479367,52.91233242136302],[-128.27288098693904,52.91239643067837],[-128.27275078705011,52.912435944070054],[-128.27262399934585,52.91248715887424],[-128.272533789151,52.91254271648363],[-128.27246487498974,52.9125956203165],[-128.27237304186383,52.9126556937041],[-128.27221670985043,52.91272934549712],[-128.27198295511346,52.91283644948046],[-128.27174535025887,52.9129060646705],[-128.2715682549479,52.91288761806819],[-128.27147606211003,52.912853521950744],[-128.27145354352743,52.9128505933799],[-128.27145290708924,52.912873593510994],[-128.27145376399525,52.912924584318496],[-128.27142175723836,52.91300592440649],[-128.27135971068282,52.91308280389766],[-128.27130378353056,52.9131522732998],[-128.27126473033198,52.91322365913361],[-128.27124427263047,52.91325936553724],[-128.27122588587966,52.91329896041996],[-128.2711806109235,52.9133934541768],[-128.27114437486387,52.9134827237791],[-128.27113306355858,52.91353282836176],[-128.2711337112248,52.91357990368273],[-128.27112928203408,52.9136366111863],[-128.27112566869533,52.913673678525306],[-128.27111950639264,52.91369789749831],[-128.27108337895004,52.91371934056302],[-128.27099718853353,52.913797798107595],[-128.27092324856943,52.913931519911856],[-128.27088721110567,52.91405946930612],[-128.2708512424501,52.914153774233526],[-128.27079467624785,52.91424624345619],[-128.27074108621028,52.914324636481375],[-128.27072068727657,52.91436146275444],[-128.27068834442017,52.91440132690914],[-128.27059910080254,52.91449274059422],[-128.2705126271523,52.914583544649695],[-128.27045069347497,52.91464528148981],[-128.27038243032376,52.91471050386642],[-128.27031385344205,52.91477012656452],[-128.27022314733514,52.914851477902936],[-128.27009241134422,52.914968356915864],[-128.26994418776405,52.91507211956922],[-128.26977220234733,52.91513205111266],[-128.26961455624672,52.91516368628334],[-128.26955365707542,52.915174951473844],[-128.26954166969463,52.91519479815776],[-128.26948420369908,52.915270466919196],[-128.26947969018738,52.91539555624719],[-128.26959727500608,52.915503724121876],[-128.26966685166386,52.91556796373197],[-128.2696522757171,52.91560917092844],[-128.26962252617446,52.91568037650837],[-128.26954508780872,52.91576595577824],[-128.26939043307777,52.915801452368],[-128.26917267640488,52.91587684069525],[-128.2689628229085,52.916047937771154],[-128.26877752528793,52.916190532444155],[-128.2686724466567,52.91633438709875],[-128.26862925628407,52.91652076345895],[-128.268514418222,52.916639020014635],[-128.26840485992614,52.91668149352283],[-128.26834454321894,52.91673871333682],[-128.268260072204,52.91684964827589],[-128.26815683709822,52.91699346680068],[-128.2680513958954,52.91713059196442],[-128.2679437493845,52.917261597768714],[-128.26784734764092,52.917393507812875],[-128.26777928758173,52.91749796419218],[-128.26772760938272,52.91757743978145],[-128.26765223565127,52.91768427931439],[-128.2675453759714,52.91781247114185],[-128.2674536314277,52.91790953585548],[-128.26740043071965,52.9179604472092],[-128.26734794481288,52.91800742527483],[-128.26729282284128,52.91805726143625],[-128.26723335134807,52.9181127780914],[-128.2671241194428,52.91821410797253],[-128.26702693638728,52.918314075449295],[-128.26700683102587,52.91835650986758],[-128.26699691316205,52.91839761786552],[-128.26695857954635,52.91850037967003],[-128.26691944274285,52.918622781242156],[-128.2669000982839,52.91869714877375],[-128.26687524149332,52.91875536160127],[-128.2667942779076,52.91886230813525],[-128.2666481938825,52.91898901245152],[-128.26647811189048,52.91910271633024],[-128.26635538027662,52.91919533636766],[-128.266313854127,52.919238174306145],[-128.26630794121104,52.91924949953449],[-128.26629510245314,52.919271048370355],[-128.2662891895276,52.919282373597596],[-128.26628311287757,52.919290903632096],[-128.26626799527511,52.919322021502126],[-128.2662984751347,52.91942178017257],[-128.26635293878766,52.91958721463697],[-128.26629885992767,52.919726720689624],[-128.266146215693,52.91981766541371],[-128.26602678661072,52.91986761839431],[-128.2536075053442,52.92323578426477],[-128.25360853664603,52.92339608511409],[-128.25362550267013,52.923575704872654],[-128.25363261993385,52.92376279606768],[-128.25377647477094,52.92389233309864],[-128.25407185053044,52.923943852067566],[-128.2543421658511,52.92401490955348],[-128.25452488655282,52.924156589471686],[-128.25470665542971,52.92429773127995],[-128.25486476681243,52.924449981345894],[-128.25504385608932,52.924593416251064],[-128.25522841431805,52.924734503825285],[-128.25545531735662,52.92484787247673],[-128.25567899834274,52.92505884017387],[-128.2558526251531,52.925204620861],[-128.25601895264697,52.925353339577704],[-128.25618347897046,52.925503222696825],[-128.2562542519991,52.925677881910474],[-128.25637810861582,52.92583414125518],[-128.2565160444044,52.9259923816861],[-128.2565812329955,52.926167147786586],[-128.2566205292903,52.9263457737774],[-128.25672357496416,52.92651364309274],[-128.25682574275052,52.92668265924518],[-128.25691033097485,52.92685424576518],[-128.2569329284924,52.92703431302237],[-128.25701747382723,52.92720478811957],[-128.2570928119699,52.927377673035615],[-128.25713488291453,52.927555689486006],[-128.25723245062835,52.92772590564712],[-128.25721570448275,52.92790224300712],[-128.25706264305038,52.92805653041534],[-128.25686275904184,52.92818929319339],[-128.25670010189805,52.92833872353556],[-128.25659812075523,52.92850716126562],[-128.25644216515673,52.92865982602924],[-128.25626146341196,52.92880286597777],[-128.25604418931422,52.928924193342816],[-128.25582895392824,52.929048835583515],[-128.25564821902955,52.929191319045536],[-128.2555027303912,52.92934826623121],[-128.25533151238136,52.929494486158426],[-128.25533692345073,52.929825112734754],[-128.25521885880528,52.929989381683214],[-128.25503244147754,52.930130286739036],[-128.25481719750638,52.93025493599759],[-128.2545499803495,52.93033124238098],[-128.2542626745218,52.93036253214166],[-128.25408878114382,52.930511052466024],[-128.25393376237932,52.93066425153575],[-128.2537319640664,52.93079647998527],[-128.253540682355,52.93093355617876],[-128.25334461730273,52.93106848138276],[-128.25315124849163,52.93120167741056],[-128.25287121257196,52.93126477179197],[-128.25272998455623,52.93141434170937],[-128.2527172989178,52.93159732661877],[-128.25268089554345,52.931772361621384],[-128.2525486909004,52.93193409078707],[-128.2524117179754,52.932093668799325],[-128.25229460383898,52.93225847213156],[-128.2521013742779,52.93239446181219],[-128.2519196590346,52.93253639246495],[-128.25172163031337,52.93266967497989],[-128.2514623757317,52.93275591153331],[-128.2512295752676,52.93286631495361],[-128.25096747293972,52.9329514837246],[-128.25069738687947,52.93302672350797],[-128.25042004793175,52.933088082922716],[-128.25024114029927,52.93323052211459],[-128.25006513624572,52.93337514771438],[-128.2498170434065,52.933478548813156],[-128.24939265791392,52.93368565422868],[-128.2491352848049,52.933772414475534],[-128.24891979775015,52.9338931282546],[-128.2486666065392,52.933988220345285],[-128.24840481788172,52.93407954773544],[-128.2483209573459,52.93423922676135],[-128.2482358994039,52.934411260814436],[-128.24811877717187,52.934576615554384],[-128.2480035613378,52.93474249877034],[-128.24797757955804,52.93492125190663],[-128.24797493181313,52.93510068043576],[-128.24798070306522,52.935280513178625],[-128.24798088603652,52.935460443671985],[-128.2480061632243,52.93563878269237],[-128.24805735444235,52.93581381945006],[-128.2480752402895,52.93599341175039],[-128.24810147141227,52.93617228855612],[-128.24816945740366,52.93634756946934],[-128.24819479460902,52.93652701937375],[-128.24812741952653,52.9366987152377],[-128.24794659701968,52.93684063069671],[-128.2476836729982,52.93692861431218],[-128.24747670305146,52.93705196047241],[-128.24735681382364,52.93721793186864],[-128.2472736529857,52.93739104961181],[-128.24720086213392,52.93756621149358],[-128.2470826854712,52.93772935152247],[-128.2469219529766,52.9378809626338],[-128.24675360589666,52.93802992055385],[-128.24658238251666,52.93817725591826],[-128.2464206485949,52.93832776424277],[-128.24625183983343,52.93850308069438],[-128.24604159155925,52.93856482556856],[-128.24574203499486,52.93859464979136],[-128.24544772607413,52.93861820255088],[-128.2451513916785,52.938638429879155],[-128.24485445120746,52.938647456933545],[-128.24455365205014,52.93865374956666],[-128.24429786679983,52.93857678618358],[-128.24394298683956,52.938742193600106],[-128.24362465537277,52.93882281118035],[-128.24336413064668,52.93886813682884],[-128.24310391225006,52.93886636955228],[-128.24279252840407,52.938848760051016],[-128.24258466895165,52.93883198458057],[-128.24222071647392,52.93886077549029],[-128.24188311227903,52.93885880250553],[-128.24159782216537,52.93884124891387],[-128.24128965879663,52.938849359564095],[-128.24100868432222,52.93878968537713],[-128.24071623932764,52.938777880389],[-128.2404817954343,52.93878738378217],[-128.24016923344712,52.938800624691815],[-128.23993495636606,52.93883086875418],[-128.23959607320074,52.93887543494677],[-128.23931047283796,52.93890496815136],[-128.23894550952332,52.93895002861984],[-128.23863233652474,52.93905800590977],[-128.23842206401923,52.939137118960986],[-128.238157387081,52.93920998344517],[-128.23791883982324,52.93931878191399],[-128.23764251242292,52.9393828889039],[-128.23735394777682,52.93942705693526],[-128.2370608320609,52.93945560632265],[-128.23678811080626,52.939517409485056],[-128.2364985461649,52.9395604643133],[-128.23620020257368,52.93956052721471],[-128.2359054257594,52.93957509594593],[-128.23562108359843,52.93962870434652],[-128.23532852454593,52.93966789375657],[-128.23504303650085,52.939717603119554],[-128.2347857890516,52.9398076913476],[-128.23454356299527,52.93991767365952],[-128.23427683482672,52.939987195833595],[-128.23398457881854,52.94001460898889],[-128.23368403321794,52.94002591826318],[-128.23338361929297,52.94004002253805],[-128.23309359277204,52.94007411776826],[-128.2330149032639,52.94012045466646],[-128.2328038460374,52.940291502506824],[-128.23277500504244,52.94041704786341],[-128.23271951916135,52.94062101959922],[-128.23269135527676,52.94077738680916],[-128.232583938696,52.940933580039044],[-128.23239901477228,52.94110525238889],[-128.23224439349153,52.94126793701354],[-128.23218463317232,52.94144396188452],[-128.2320910172004,52.941614467124964],[-128.23199832401102,52.941784945792925],[-128.23193105152808,52.941959991789275],[-128.23184780444274,52.94213254233667],[-128.23173535043287,52.94229947600702],[-128.23149196208303,52.94247673942421],[-128.23139531569234,52.9425895602881],[-128.23121736085156,52.942734191910425],[-128.23099472123457,52.942844916080354],[-128.23078111720852,52.94296780064901],[-128.23053758647498,52.943071072107436],[-128.23027039234648,52.943150127218416],[-128.22999027348712,52.94321373117968],[-128.22970327353127,52.943252800650924],[-128.2293648866402,52.94325416027756],[-128.22912702732648,52.94323456564665],[-128.22884056901108,52.943248393573555],[-128.22845172076703,52.94322997019931],[-128.22819169690453,52.94319677508714],[-128.22798624422597,52.94310145127437],[-128.22772726345627,52.94305254006112],[-128.22754550004277,52.943035800008346],[-128.22723409213623,52.94301814940613],[-128.2269490016833,52.94296916547961],[-128.22666795903245,52.94296159383211],[-128.22639338733356,52.942917459023676],[-128.2260981723939,52.942942100818016],[-128.22580502492215,52.94297062212337],[-128.22550093800055,52.94295058633998],[-128.22505549584898,52.94299096266222],[-128.22483716539273,52.94311280434296],[-128.22457686870192,52.943198998597595],[-128.22430868010565,52.94327693764878],[-128.22403411141374,52.94333986631551],[-128.22375572789204,52.94340118026372],[-128.22351898332127,52.943509914084984],[-128.22329870937418,52.94363066835737],[-128.22312639922794,52.94377685760393],[-128.22298833891904,52.94393641794668],[-128.22285594004953,52.944096992281935],[-128.22274338706384,52.94426279717549],[-128.22255388115883,52.944401471445566],[-128.22233751635054,52.944525513189255],[-128.22213080158548,52.944656098900445],[-128.22201629326685,52.94482025374774],[-128.22198179085973,52.94499860262708],[-128.22199955562135,52.945178198151986],[-128.2220188770087,52.94535160275327],[-128.22200153648748,52.94553747528379],[-128.2220127881974,52.94571719368633],[-128.22200623150422,52.94589501498664],[-128.22195870055904,52.94607416569625],[-128.22199493621028,52.94625004921083],[-128.2220645592989,52.94644044173473],[-128.22208799347843,52.94658574129457],[-128.22219215149508,52.94677660295828],[-128.22230153683927,52.94694270184326],[-128.22242015125485,52.947106949249616],[-128.22253131349058,52.94727132825596],[-128.2226287884528,52.947441579989416],[-128.22275020726354,52.94760576514978],[-128.22275157214986,52.94770327429416],[-128.22285861809956,52.94794957930244],[-128.22282960871925,52.94809026337276],[-128.22280155232065,52.94823148548849],[-128.22269363130076,52.94845045853234],[-128.22255959462535,52.94866935941856],[-128.22245281978473,52.94885691101294],[-128.22218772846128,52.949137702994314],[-128.22179180521167,52.94944899054926],[-128.22124476683842,52.949813020661765],[-128.2210926428043,52.949953784520275],[-128.22088075334418,52.950056993507985],[-128.2206498937604,52.95015439839127],[-128.22046427167243,52.950296358188595],[-128.2202718560547,52.95043339639073],[-128.22006793765053,52.95056448067672],[-128.21979878472382,52.950642991288014],[-128.21960148080115,52.95077563611013],[-128.21935682226936,52.95087666168722],[-128.21908961678534,52.95095681103769],[-128.21879331925172,52.95096183016922],[-128.2184956011681,52.95095735056906],[-128.21814950413022,52.95091959302185],[-128.2178718163384,52.950959577936544],[-128.21763865717028,52.95088773594891],[-128.2173464178286,52.95091678284327],[-128.21705250905927,52.95093184238253],[-128.21679434944016,52.95091708883548],[-128.21653153334182,52.95092035079068],[-128.21626137163943,52.950908064201684],[-128.21600219670333,52.95085576719203],[-128.2157158507714,52.95080117376202],[-128.21542106190938,52.95081737585157],[-128.21514846924683,52.950883599452254],[-128.21489200746575,52.950973070699334],[-128.2146599805203,52.95108393841115],[-128.2145163619724,52.95124526876063],[-128.21426188292654,52.95131900607776],[-128.21396400194746,52.95131171085447],[-128.2136665943739,52.9512954462758],[-128.21338282252722,52.95134393850524],[-128.21308963802213,52.951372992483854],[-128.2127965990074,52.951404850183216],[-128.2125089090697,52.95145005065818],[-128.21229437055325,52.951502853579434],[-128.21198097931494,52.95160963916151],[-128.21170823086914,52.95167305927598],[-128.21143795613037,52.951748199161855],[-128.21115442604219,52.95180173071876],[-128.21086158669675,52.95180162443503],[-128.21057719189918,52.95174866801758],[-128.21029119657047,52.95170079032456],[-128.20999938539396,52.95166646512662],[-128.20970107326664,52.95166870086327],[-128.20940380168298,52.95167315848104],[-128.2091118089074,52.95165341753602],[-128.2088324839204,52.95159027210494],[-128.20853566612183,52.9515672480525],[-128.20824061341108,52.95159632490862],[-128.20800066158137,52.95169892408005],[-128.2077852865726,52.95182571669767],[-128.20759955614915,52.951966536082345],[-128.20738105663074,52.95208722501797],[-128.2071117400553,52.95216290182561],[-128.20687487492165,52.952271037127225],[-128.20660863442467,52.95235226048038],[-128.20639205160867,52.952474032621986],[-128.206167680305,52.9525892237912],[-128.20587206733836,52.95260765926198],[-128.20557461457008,52.95260874723916],[-128.2052779603635,52.95262494958945],[-128.20484602216905,52.952676204831114],[-128.2045526192573,52.95270131308452],[-128.204255379691,52.95268838472991],[-128.2039596198943,52.95270401094016],[-128.2036772160449,52.95276142237802],[-128.2033917192334,52.9528132945819],[-128.20311223249342,52.95287289219957],[-128.20285106740673,52.952962424423525],[-128.2025872658301,52.953018929097404],[-128.202314322219,52.952934904486604],[-128.20204639404096,52.95285752089229],[-128.20175791690946,52.95281583040544],[-128.20145995578915,52.952806827775596],[-128.20116177988527,52.95281183738495],[-128.2008798906054,52.952861393840784],[-128.20064216863756,52.952971218307844],[-128.20032049179954,52.95309886230007],[-128.20003194002211,52.953145733993026],[-128.2000004067208,52.95314913035529],[-128.19973879191215,52.953175874698694],[-128.19945116323615,52.95322272769933],[-128.19916464682018,52.95327292243681],[-128.19888122184096,52.95332866410737],[-128.19860486092767,52.95339492787432],[-128.198334667886,52.953472277599545],[-128.19806336151066,52.953546293210984],[-128.19778056818703,52.953596414998444],[-128.19748201197294,52.95361207696823],[-128.19718426410296,52.953625480944496],[-128.19688631334836,52.95363495970627],[-128.1965916420608,52.953653910145206],[-128.19631013246564,52.95371073084751],[-128.1960277699018,52.95376925286393],[-128.19574217004623,52.953819422021056],[-128.19545561610073,52.953869043240225],[-128.1951690619493,52.953918672720704],[-128.19488044114294,52.953964411774436],[-128.1946040407449,52.95403010165064],[-128.19433765025792,52.95410905718651],[-128.19407329558746,52.95419133738],[-128.19380996551178,52.9542752749915],[-128.19354761691113,52.954360323746975],[-128.19328432759818,52.95444538044825],[-128.19302096575132,52.95452876076468],[-128.19275468468427,52.95460995268865],[-128.19248040034478,52.95468064731562],[-128.19220207035386,52.95474524622886],[-128.19193567093205,52.95482419629794],[-128.19168212618067,52.95491748039774],[-128.1914345606456,52.95501793512158],[-128.19119087964555,52.95512168919037],[-128.1909481939083,52.955226536309446],[-128.19070739958514,52.955331912730024],[-128.1904685543619,52.95543893846026],[-128.19022976515035,52.95554707473593],[-128.18999188535088,52.955654637534074],[-128.18975306511663,52.955762217310905],[-128.18951522565695,52.955870899406314],[-128.1892725029224,52.95597518750698],[-128.18900112208902,52.956048061857246],[-128.1887207990269,52.95611044713996],[-128.18846812117474,52.95620258679366],[-128.18821063153658,52.95629200814251],[-128.18798246370886,52.95640723366023],[-128.18776976457312,52.956533381989296],[-128.1876030151521,52.956682218693594],[-128.18748556742887,52.95684695529443],[-128.1873044856452,52.95698933134692],[-128.1874298220401,52.95717758458308],[-128.18746604006762,52.95735572647006],[-128.18756617167273,52.957525389617224],[-128.1876699737502,52.95769386342105],[-128.18770804150242,52.95787196187294],[-128.18781473457955,52.95804206791569],[-128.18789454173273,52.95821547156832],[-128.18797341024586,52.95838889260072],[-128.1880021478207,52.95856660822189],[-128.18801698672436,52.95874625917662],[-128.18802996251878,52.958925953697815],[-128.18803359086425,52.959105256859964],[-128.18798578686213,52.959282152411205],[-128.18802200854844,52.95946028494052],[-128.1880934826068,52.95963496426744],[-128.1881538473826,52.95981097102924],[-128.1881779774886,52.959989893162216],[-128.18818349934264,52.96016972605151],[-128.18817967341013,52.960349167594906],[-128.18816931681044,52.96052873046222],[-128.18812999241788,52.96070714545753],[-128.18809253193783,52.960885534751725],[-128.1880578161966,52.96106274297991],[-128.1879081550086,52.96121798829464],[-128.18777070156025,52.961374692684124],[-128.18773045026362,52.961553124628246],[-128.18769112354437,52.96173154832657],[-128.18768732397217,52.96191154520146],[-128.18765936365438,52.96211161396054],[-128.187700979073,52.9622677898533],[-128.18765476081342,52.96243905006599],[-128.1875127506141,52.96259808071818],[-128.18730468624233,52.96272414104803],[-128.18707653906176,52.96284048435618],[-128.18686767657957,52.96296935684363],[-128.18664360018948,52.96309235003724],[-128.1864308926794,52.96321905991554],[-128.1862816676971,52.96336476109886],[-128.18626507406483,52.96355004439966],[-128.18616124348358,52.96370779939979],[-128.18606038818675,52.9638688622398],[-128.18600331608678,52.964083488303],[-128.185799583531,52.96416686490491],[-128.1855310006237,52.96425929198222],[-128.18529704686955,52.96437181104493],[-128.1850462915688,52.96446614830021],[-128.18475200031938,52.96449402894077],[-128.18446033945057,52.96451849687013],[-128.18417882827444,52.96457697267442],[-128.18389099033405,52.96462154736577],[-128.18360947723315,52.964680012846046],[-128.1833259984647,52.96473683697047],[-128.1830369465375,52.96477582673985],[-128.18273576197902,52.96479654763963],[-128.18249368598097,52.96487838678257],[-128.18230888284313,52.96502194353848],[-128.182060124506,52.96511903536929],[-128.1817877620395,52.9651924656196],[-128.18150719576147,52.965251473407235],[-128.18125267040944,52.965345316069616],[-128.18105782279756,52.965475039014144],[-128.18086612255445,52.965611438643904],[-128.18060752056672,52.96569861999398],[-128.1803251427394,52.96575877945351],[-128.18003066136777,52.96580122532439],[-128.17976144491266,52.965863381910324],[-128.17957866451215,52.96601025978585],[-128.17954528646507,52.96605067946394],[-128.17953824519617,52.96618645767696],[-128.1794894159409,52.96636224613678],[-128.17945486379622,52.966452570047664],[-128.17935511972635,52.966526719345076],[-128.17908874369024,52.966589942763626],[-128.17879117978282,52.96662683713299],[-128.1785046060893,52.96667810119979],[-128.1782241691212,52.96673990558368],[-128.17794361614634,52.96679946034757],[-128.17766212336275,52.96685904077092],[-128.1773825656504,52.96691969682009],[-128.17709691285833,52.966970940362216],[-128.1768092097813,52.96701830188026],[-128.176536969184,52.96709451541663],[-128.17624798864568,52.96711723593273],[-128.17594815443871,52.967109878797764],[-128.17565008375647,52.967100811229365],[-128.1753527807935,52.96708836556688],[-128.1750555925861,52.967078159146986],[-128.17475776636053,52.967073569031086],[-128.1744645043689,52.967103646576746],[-128.17411596136142,52.96709270875588],[-128.17392716314117,52.96723184099988],[-128.17372875701864,52.967365544952834],[-128.1734819439722,52.96746482412588],[-128.17318810595933,52.96748369851895],[-128.1728921788601,52.96746169676306],[-128.172595437486,52.96747838112841],[-128.17229853330886,52.96747376774312],[-128.17200195283814,52.96745737210532],[-128.1717054735421,52.96744265992264],[-128.17140722038545,52.96744815864027],[-128.17110989173685,52.96745363956035],[-128.1708155572392,52.96748092954432],[-128.17054502432725,52.96755429934361],[-128.17028550703841,52.96764259524584],[-128.1700079408782,52.967706003896964],[-128.1697212350274,52.96775500656981],[-128.169433360435,52.96779954585307],[-128.16914662495216,52.96784799160551],[-128.1688589354276,52.96789588920425],[-128.16856902350904,52.96793710069984],[-128.16827575118828,52.967967162825914],[-128.16798986688107,52.96801390398505],[-128.16764804401737,52.96815303497745],[-128.16735458739257,52.9681063107281],[-128.16706178972757,52.96809095405985],[-128.16676475630814,52.96810202373632],[-128.16646710885644,52.96810133741977],[-128.16618119290243,52.96814750970684],[-128.16590872658477,52.96821978311322],[-128.1656211017806,52.96826935754965],[-128.1653575143436,52.96835099083058],[-128.16507384438714,52.9684049753901],[-128.1647779881245,52.96840256578771],[-128.16448096431768,52.96839569270447],[-128.16423908902573,52.96848252968226],[-128.16402722735077,52.9686091814303],[-128.16384889100536,52.968753144692585],[-128.16361319562566,52.96894301212073],[-128.16339348257674,52.96897058965889],[-128.16310360121253,52.969012342926206],[-128.16281478655807,52.96905688298448],[-128.1625391632096,52.96912248003346],[-128.16230209080786,52.969230533527146],[-128.16208445580563,52.96935391542327],[-128.16190088774783,52.96948677002796],[-128.16165030666605,52.969567599935196],[-128.161290861317,52.969672847722684],[-128.1609638172384,52.969607657054446],[-128.16070737119122,52.969518193560525],[-128.16051926089844,52.96937815013382],[-128.16030491059811,52.96925428230306],[-128.16002315203622,52.96919891296417],[-128.15975267914564,52.96912708536083],[-128.1594619960356,52.96917165137784],[-128.1591782275829,52.96922393723289],[-128.15888115553972,52.969234422546116],[-128.15858338657262,52.969231476308885],[-128.158286130571,52.96922010760116],[-128.15798840485343,52.969217715108556],[-128.15769072109234,52.969216442140194],[-128.15739273947824,52.96920900364748],[-128.15709853044427,52.969184123615804],[-128.156811481804,52.9691350137825],[-128.15653573445255,52.969069436734074],[-128.1562738502495,52.968982861480164],[-128.15600765537746,52.96890309979175],[-128.1557352415903,52.968829612588074],[-128.1554645225657,52.96875273062478],[-128.1551947005258,52.968675266635756],[-128.155034233669,52.96852798272693],[-128.15487342735707,52.96837397855494],[-128.15463081974715,52.96828088584386],[-128.15433405402015,52.96827903168569],[-128.1540378153025,52.96826931087141],[-128.15374754501073,52.96822977702262],[-128.15347253455317,52.96816026032284],[-128.15319934686255,52.96808957966281],[-128.1529075116656,52.968056242604085],[-128.1526123319236,52.96803024824663],[-128.15232371514332,52.96798675258668],[-128.1520366950105,52.967937630813324],[-128.15175057157722,52.967887926965304],[-128.15163371895693,52.968067742298295],[-128.1515047324868,52.96822873036382],[-128.1513302536355,52.9683759666304],[-128.15114533013625,52.96851947418774],[-128.15100470225354,52.96867170587096],[-128.1510148905325,52.96885480562794],[-128.15104540157893,52.969033615083006],[-128.15101974604,52.9692089660316],[-128.15093241716193,52.969382080022],[-128.150887279607,52.96955947268361],[-128.1508963729757,52.96973922921792],[-128.15088026406397,52.96991888988555],[-128.15085947383287,52.970098079971145],[-128.15083492642535,52.97027677362904],[-128.1507785735748,52.97045380590447],[-128.15068823882928,52.97062304627761],[-128.15059609622392,52.97079344956531],[-128.15049833156883,52.970963390382096],[-128.15032277195604,52.971107846261454],[-128.15019285980722,52.971269405270725],[-128.1500068252987,52.971409567653296],[-128.1498035997107,52.97154219616966],[-128.14971133785733,52.97171034970026],[-128.14957284171493,52.97186814538802],[-128.14940882884164,52.97201967126685],[-128.14916260217976,52.97211384679632],[-128.148925422512,52.97222075317424],[-128.14869612321124,52.97233591860899],[-128.1484512289385,52.97243791553403],[-128.14819354375194,52.972526692722624],[-128.1479240622527,52.97260390903298],[-128.1476684090226,52.97269601108847],[-128.1474482778139,52.97282670132785],[-128.1472000230159,52.97291754640696],[-128.14695902017496,52.973022832249455],[-128.14669741505728,52.973108314344735],[-128.14642494040126,52.9731816624834],[-128.14624153306792,52.973318972407114],[-128.14609416895786,52.97346794782977],[-128.14595974965837,52.973632946734554],[-128.14592955843682,52.97381118535289],[-128.14585428197057,52.97398351000342],[-128.14567688624626,52.974129112664315],[-128.14550419937808,52.97427575030051],[-128.14535908986093,52.97443253976346],[-128.1452309281165,52.9745923745381],[-128.14505412875988,52.97476823319897],[-128.14494689764396,52.974936098729565],[-128.14483310465909,52.975103527563064],[-128.1449043860026,52.975277111138475],[-128.14494687444355,52.97545346096285],[-128.1449026863057,52.97563194489197],[-128.14486698035856,52.97581196038697],[-128.1448295226442,52.97599424980571],[-128.1448449558723,52.97617053611707],[-128.14494018000426,52.97633807853057],[-128.14507807726193,52.97650035976703],[-128.14523613112777,52.97665554761959],[-128.14542967528158,52.97679270847909],[-128.14564147061893,52.9769216983754],[-128.14576606614338,52.977079171949505],[-128.1458264071258,52.97725800328163],[-128.1459144204636,52.97743016037967],[-128.146043156949,52.97759597046744],[-128.1462164525781,52.977738548044584],[-128.14647580660474,52.97782966706664],[-128.14669726382826,52.97794670377588],[-128.146911787996,52.97807395571983],[-128.14704581929337,52.97821500553923],[-128.1470392966521,52.97840009488305],[-128.14699702225155,52.97857910951235],[-128.14709785404852,52.978746548005645],[-128.14726403893746,52.97889597987447],[-128.14742110019657,52.97904950590632],[-128.14768190524583,52.9791321926856],[-128.14792420062798,52.979236515970904],[-128.14817812846596,52.979331093419034],[-128.14840153434392,52.97944921255271],[-128.14864326172747,52.97956083596156],[-128.14891245568936,52.97964336710914],[-128.14917060987844,52.9797104045661],[-128.14941291220777,52.979814724754675],[-128.14964804033352,52.97992478051929],[-128.14988497768272,52.98003368178393],[-128.15013713519153,52.98012997346955],[-128.15041173623402,52.980189981938956],[-128.15070502025034,52.98015828001968],[-128.1509714848789,52.980076064420594],[-128.15125018519683,52.98001436840777],[-128.1515472027599,52.98001959031711],[-128.15183760818562,52.98006024930533],[-128.15211697876106,52.98012240880117],[-128.15239892774946,52.98018003640668],[-128.15269332355425,52.98020716800522],[-128.1529869501288,52.980237676035195],[-128.153254037067,52.98031519579404],[-128.1534892346425,52.98042636386029],[-128.15375023017924,52.98051239713571],[-128.15404284938307,52.9805412349594],[-128.15433966955166,52.98056103593802],[-128.15463619244588,52.980574671431704],[-128.15492979433554,52.98060461013618],[-128.15519872317608,52.980681526888866],[-128.1554419574576,52.980785261912615],[-128.15567354758164,52.98089873380524],[-128.15592123948173,52.98099845820683],[-128.1561671528414,52.981099891719374],[-128.15638710179934,52.98122310857146],[-128.1566410909351,52.98129973053931],[-128.1569409494517,52.98132395360809],[-128.15723860427443,52.981322988470474],[-128.15753559018123,52.98130913842865],[-128.15783227833018,52.981289131871804],[-128.15812897994184,52.98126968931859],[-128.15842592323204,52.981254716764624],[-128.15895125603794,52.98123500281157],[-128.15926980519578,52.98124149693822],[-128.1595664482194,52.98125736001138],[-128.15986008697624,52.98128785089887],[-128.16015139190253,52.98132735214905],[-128.16044698219457,52.98134099024709],[-128.16074504955054,52.98132991935066],[-128.1610441421986,52.981320514933856],[-128.16134223750208,52.981309998043955],[-128.1616171727605,52.98124778149608],[-128.1618825411304,52.98116276302112],[-128.1621661293407,52.98110542657869],[-128.16246177336893,52.9810652487619],[-128.16273970956672,52.98100690257117],[-128.1629673808715,52.980896224612906],[-128.1631694135977,52.98075854694605],[-128.16334139964266,52.98067243236332],[-128.1636655042873,52.98056782961634],[-128.16394092882646,52.980497195169825],[-128.16421828859214,52.98042763658484],[-128.16448579644705,52.9803481779198],[-128.16475034221835,52.98026540095789],[-128.16502893798463,52.980201987901935],[-128.16531366907105,52.98014911578825],[-128.1655973887701,52.98009457551585],[-128.16587693531957,52.980031698966],[-128.16615251008514,52.979963854554846],[-128.166428097823,52.97989657424686],[-128.1667066315825,52.97983203721923],[-128.16699112926685,52.979774672113926],[-128.16735186493756,52.979729921423626],[-128.16752588604396,52.979811919335106],[-128.16779383576122,52.97988770468141],[-128.1680827205111,52.97993452210829],[-128.16837723888057,52.97996385451615],[-128.1686734405012,52.97993486100047],[-128.1688731466648,52.97980674922471],[-128.16905514072815,52.979661026468186],[-128.16921576921646,52.97959024164251],[-128.1693205238773,52.97963147758701],[-128.16958897171102,52.97962541357456],[-128.16988656051447,52.97964178917341],[-128.17018692557264,52.97965755685061],[-128.17048471521576,52.97967785538478],[-128.17077731164872,52.97970609615919],[-128.17106047526073,52.97975076965037],[-128.1713004424946,52.97986293616225],[-128.17155586179408,52.97994903339719],[-128.17184662455597,52.97997786139375],[-128.1721485711887,52.97998798975097],[-128.17244843830716,52.97999423650903],[-128.17274680772476,52.9799892907115],[-128.1730424252168,52.97996702320431],[-128.1733356051425,52.97993358946482],[-128.1736290709595,52.97990575493746],[-128.17392451557404,52.979880125251505],[-128.17422388153454,52.979876287322696],[-128.17450098905474,52.9799300237818],[-128.17472273511487,52.98005093210979],[-128.1749127467324,52.98018979755356],[-128.1751524111651,52.980295791781536],[-128.17540279167386,52.980392628287795],[-128.17563531537863,52.98050492364027],[-128.17587858312194,52.980608607810474],[-128.17612457072394,52.980710564175844],[-128.1763516761094,52.980826321370294],[-128.17659230149718,52.980932860019415],[-128.17683190249002,52.9810377400341],[-128.17708055569935,52.98113683811995],[-128.17734433550993,52.9812216475769],[-128.1776285991282,52.98126908336431],[-128.17792416557523,52.98124568364421],[-128.1782205922265,52.9812026534472],[-128.17847869374975,52.98124944980654],[-128.17871952755468,52.98135989955367],[-128.17889676380867,52.98150404423682],[-128.17913820946274,52.98160832057206],[-128.1794185124829,52.981669277925],[-128.17969446274336,52.98173647641924],[-128.17999046422028,52.98175790538956],[-128.18026346805289,52.98182235895604],[-128.18048711999577,52.98194322152079],[-128.18073571464097,52.98204119213388],[-128.18099391319774,52.982126096912566],[-128.18147999761192,52.98206889343472],[-128.18176672893756,52.98201874258781],[-128.182060002621,52.98198697164174],[-128.18235752235364,52.98196520177578],[-128.18263568007623,52.98202058608827],[-128.18292027151804,52.982074173474494],[-128.18321446978214,52.9820967488727],[-128.18351105523737,52.982111431965855],[-128.18380400731323,52.98209142915454],[-128.18409437115116,52.98213032415446],[-128.1843694649096,52.982198657770574],[-128.18464198480572,52.98227151370675],[-128.1849133935622,52.98234103545288],[-128.1850987943276,52.98247997058967],[-128.18531922681615,52.982592471609465],[-128.18557859313916,52.98268182908628],[-128.18586398832335,52.982732587479184],[-128.18615432985243,52.98277092187909],[-128.18644721699505,52.98280415913014],[-128.18673844175035,52.98284135466974],[-128.18695380483203,52.98296403624862],[-128.1871174142094,52.98311458327736],[-128.18735434999863,52.98322116903338],[-128.18758842472562,52.98332668639588],[-128.18778304709105,52.98346320416806],[-128.18798442305356,52.98358614363119],[-128.18827445306712,52.98363625422252],[-128.1885584544462,52.98369600052339],[-128.18879172519232,52.98380377260268],[-128.18885477247997,52.983976920201876],[-128.18887995954782,52.984158062366596],[-128.18879615701252,52.9843972815449],[-128.18868431854946,52.98456359712328],[-128.18860552436854,52.98473713719417],[-128.18849086540922,52.98490293990243],[-128.1883515880254,52.98506191732975],[-128.18816657255417,52.985202677109875],[-128.18796329971184,52.98533313009013],[-128.18778115831142,52.98547552188817],[-128.18757694308982,52.98560599163107],[-128.18737162871759,52.98573311824644],[-128.18717786232097,52.98586732142536],[-128.18698037939242,52.98600158425966],[-128.18682110056739,52.98615308347832],[-128.18664172759148,52.98629485692648],[-128.1864325620586,52.98641981110893],[-128.18620113484857,52.98652948324146],[-128.18593085624266,52.98659167058879],[-128.18583486005582,52.98675768905691],[-128.18563659489442,52.98685889754487],[-128.1854477175745,52.98699748212921],[-128.18521456393987,52.98710999129793],[-128.18498240611896,52.987223593588325],[-128.18488663510996,52.987394091133126],[-128.18466592956526,52.98767620219161],[-128.1845455372792,52.98783986453702],[-128.18437485134797,52.987987643313886],[-128.18410983482303,52.98806149515627],[-128.18381958489806,52.98809826348911],[-128.18354788819732,52.98816943969841],[-128.18333787946975,52.988296645621865],[-128.18323905027776,52.98846214902927],[-128.18314892202534,52.98863366135994],[-128.18310013944955,52.988810568927775],[-128.18309161947911,52.98899009373073],[-128.1830502963573,52.98916686304403],[-128.18302782435092,52.989347202286815],[-128.18287226390555,52.98949862649451],[-128.18274241926886,52.989660219593084],[-128.1825916554061,52.98981435264507],[-128.18268756299594,52.98993701212369],[-128.18279315056594,52.990084711211026],[-128.1826626663741,52.9902519211844],[-128.18244527570857,52.99036301120841],[-128.18218040863175,52.99045815530448],[-128.18196757941243,52.990585410553095],[-128.18174879504372,52.99070549334288],[-128.18160500422655,52.99086846414497],[-128.18143999216383,52.991017810038215],[-128.18129495805718,52.99117464216102],[-128.1811432435538,52.99132879061991],[-128.18102571850636,52.99149407258421],[-128.18094501553716,52.99166765029176],[-128.18080359226389,52.991822163805665],[-128.180587818385,52.991946672628735],[-128.18032744927848,52.99203893087391],[-128.1801970126076,52.99218932115457],[-128.18006152512163,52.992350450082085],[-128.17996945317486,52.99252087410827],[-128.17999910549304,52.99269857092851],[-128.18011490736825,52.99286346378925],[-128.18022424687476,52.99302959712117],[-128.18031883799506,52.99319936630574],[-128.18044206077502,52.99336300052309],[-128.18057725705447,52.99352360600499],[-128.18072892549597,52.9936777453269],[-128.18089793388359,52.993824281332195],[-128.18094627189586,52.994002188140385],[-128.18092749038985,52.9941819019256],[-128.1808297647043,52.9943513100066],[-128.18069039874132,52.994509713017685],[-128.1806246678472,52.994684125121296],[-128.18061804541102,52.99486417879867],[-128.1806141844181,52.995043616362615],[-128.18062527424493,52.995223333336526],[-128.1806549886666,52.99540214968066],[-128.1806893591488,52.995580879859254],[-128.18078860004562,52.9957500064865],[-128.18090724725508,52.99591540186998],[-128.18100277272953,52.99608515309515],[-128.18107335432018,52.99625984996498],[-128.18110957900902,52.99643798962976],[-128.18108330672692,52.99661727678255],[-128.18115469976848,52.996789716480805],[-128.18125297621646,52.996958295526326],[-128.18130409628728,52.99713559443176],[-128.18133938253592,52.99731375133155],[-128.1813858609725,52.99749169211154],[-128.1814453405563,52.997668280182374],[-128.18148152410052,52.997845855393685],[-128.1814440025241,52.998024229644145],[-128.18141680588224,52.998203542785404],[-128.18141481338935,52.99838294549706],[-128.1814128493999,52.99856290369569],[-128.18140808022173,52.99874292275629],[-128.1814061451677,52.998923445382204],[-128.1814228072229,52.99910250279417],[-128.18150077094603,52.99927537656757],[-128.18160008120532,52.99944562211216],[-128.18171693391494,52.99961217081435],[-128.18185577130626,52.999770474196715],[-128.18201946991695,52.999922147041275],[-128.18210190480846,53.000000214612655],[-128.18230844513937,53.00013147139159],[-128.1824425725773,53.000288740266534],[-128.18253360127457,53.00046137146483],[-128.18262182541608,53.00063406348516],[-128.1827164715777,53.00080438548393],[-128.18285066019106,53.00096277380187],[-128.1830344851629,53.001106225345005],[-128.18318251601568,53.001261549881335],[-128.18332603516322,53.001419755904095],[-128.18346764633586,53.00157744106377],[-128.1836120643863,53.001735074065024],[-128.18375657008886,53.00189439130769],[-128.183952871459,53.00202583499619],[-128.1841864328918,53.00213753938312],[-128.18442909274276,53.002244581617994],[-128.18461097052077,53.00234995167637],[-128.18432967923857,53.002435878680785],[-128.18403643932342,53.00247102375173],[-128.18373940031108,53.00248661586568],[-128.18345167905974,53.00253846378847],[-128.1831615838427,53.0025438365113],[-128.18286664007357,53.00250950606282],[-128.18256651156003,53.00250161069775],[-128.1822824488646,53.00255171093632],[-128.18203649184636,53.002653228749224],[-128.1818245413976,53.00278046541315],[-128.18163977270592,53.002927942238436],[-128.18142606025995,53.00303895125853],[-128.1811208488606,53.003041235506394],[-128.18084633618102,53.00296840684318],[-128.1805619523389,53.002921534934174],[-128.18026329956558,53.002905759136226],[-128.17996761858453,53.00291179225351],[-128.17967559890232,53.002952499972785],[-128.17938537237706,53.00299206174326],[-128.17909413355716,53.003029955467944],[-128.17879847368513,53.003054477788616],[-128.17850065313803,53.003054932619996],[-128.17820307628912,53.0030604313231],[-128.1779057796097,53.00305303671868],[-128.17760825294832,53.003041152520616],[-128.17730920566592,53.003036030816176],[-128.17700920417388,53.00303036097621],[-128.1767102713462,53.00302746873585],[-128.17641461747237,53.00303404844976],[-128.17613218013773,53.003079619527576],[-128.17586875513686,53.003168559196055],[-128.17561005797458,53.003258532029626],[-128.17536895347348,53.00336387406035],[-128.17512205033253,53.0034654034375],[-128.17487795151172,53.00356687156615],[-128.1747005033157,53.003711959829936],[-128.17450084546678,53.00384287510514],[-128.17424423626034,53.00393729038171],[-128.1740503887613,53.00407202575704],[-128.17386430331007,53.00421278779399],[-128.17363102410238,53.004325263938995],[-128.17340159012005,53.00443991972821],[-128.17317122904979,53.00455458316207],[-128.17294280368245,53.004670896463246],[-128.17272205557697,53.00479099588339],[-128.1725340107096,53.0049301057077],[-128.1724409270503,53.005099975167866],[-128.17239122634092,53.00527856937696],[-128.17231229880994,53.00545154090772],[-128.17220128076687,53.00561782143308],[-128.17207802686778,53.00578207623108],[-128.1719509687449,53.00594528889205],[-128.1718096658846,53.006103714687086],[-128.17169296070378,53.006268413342795],[-128.1715895441754,53.00643735118762],[-128.17148709558398,53.00660682711081],[-128.17137607129357,53.006773106745804],[-128.17123000544288,53.00692993337714],[-128.1710677719051,53.00708089635988],[-128.17089887142012,53.00722918376493],[-128.17072613708507,53.00737585545874],[-128.17055548238986,53.007526407682384],[-128.17037511060337,53.0076698563232],[-128.17016765788043,53.0077947457071],[-128.16990137146678,53.00788316766993],[-128.1696150622385,53.007927107525255],[-128.16931752224355,53.00793370348739],[-128.16899811699102,53.00793285377952],[-128.16870810358688,53.007977424549004],[-128.1684181045012,53.008021994329596],[-128.16812664993964,53.00805650093803],[-128.16783225405857,53.00805182507987],[-128.16754050184946,53.00800730804402],[-128.16725821953997,53.00794691292931],[-128.16696523125015,53.00791474846719],[-128.16666853048244,53.00791963629749],[-128.166380609058,53.00796864694744],[-128.166089438756,53.008008748388654],[-128.165797056924,53.008043266243135],[-128.16550683980697,53.00808391371041],[-128.16522803317838,53.008146762377066],[-128.16495251740997,53.008219083109644],[-128.16467996327822,53.008294711868125],[-128.16442007131064,53.008380761717135],[-128.16421162844807,53.00850509336842],[-128.1640246508636,53.00864753197709],[-128.16382317176408,53.00878014720414],[-128.16362077974046,53.008913343800955],[-128.1634259924771,53.00904919854512],[-128.16324647354605,53.00919149892412],[-128.16308903146137,53.00934572520013],[-128.16295815372862,53.009507867084146],[-128.16287533400356,53.0096786603774],[-128.1628462276914,53.00985912246757],[-128.16281237793405,53.010037985523596],[-128.16278225982308,53.010216780096485],[-128.16275027548508,53.01039560886963],[-128.16270517198362,53.01057355722515],[-128.16268251699918,53.010752214811475],[-128.16268887755177,53.010932017221116],[-128.1626989556965,53.011111760393],[-128.162710886127,53.01129090457867],[-128.16272469603544,53.011470570298144],[-128.16273944699532,53.011650227706525],[-128.16275419762374,53.011829876134236],[-128.16276894883313,53.01200953350085],[-128.162783699711,53.012189181886825],[-128.16279565954378,53.012368890415914],[-128.16280573802487,53.012548624466454],[-128.16281396590009,53.01272840141087],[-128.1628100280923,53.01290783648732],[-128.16279584756887,53.01308801543892],[-128.16278071305305,53.013267655840444],[-128.16277211725028,53.01344717628952],[-128.16276723867696,53.013626628538965],[-128.16276332933154,53.01380662798429],[-128.16276128562808,53.01398658422371],[-128.16275921362038,53.01416598493846],[-128.1627590364855,53.01434591587253],[-128.16276261994634,53.01452633383933],[-128.16278124680375,53.01470871791131],[-128.16280742382543,53.01489264052629],[-128.16283078098132,53.0150760588154],[-128.1628418865902,53.01525745976014],[-128.1628312671627,53.0154342190598],[-128.16278862322307,53.01560539562],[-128.16268179976456,53.015763732005716],[-128.16250519954943,53.01590878362169],[-128.1622994073947,53.01604932115997],[-128.16210877177002,53.01619406447589],[-128.16196077308462,53.01635091297037],[-128.1618365936102,53.01651685770074],[-128.16174536504903,53.01668780331232],[-128.1617150667145,53.01686323700277],[-128.16174391882436,53.01704487746245],[-128.16174671482048,53.017228107585275],[-128.16183060137675,53.01740817415292],[-128.16199146091603,53.01754086795143],[-128.1622187816959,53.017657769813816],[-128.16245420946782,53.017768917525096],[-128.16269322872114,53.01787720086647],[-128.16293317442484,53.01798545777915],[-128.16316951820787,53.01809603128556],[-128.16339768508638,53.0182112294262],[-128.16361310300198,53.01833283110301],[-128.16382255318115,53.01846575204288],[-128.16401669069265,53.01860960773097],[-128.1641207939605,53.01881956917051],[-128.16421377872678,53.01893948840516],[-128.16429495660532,53.019102787784654],[-128.16431132614005,53.019277365607095],[-128.16428898742356,53.019462186882144],[-128.16429631057082,53.01964253575693],[-128.1643018244722,53.01982403882961],[-128.16430917604748,53.02000494316856],[-128.16432489071897,53.02018513799005],[-128.1643554375758,53.02036281856933],[-128.16440822429445,53.02053729292969],[-128.16448450762897,53.02073262631808],[-128.16466405236673,53.020864973671074],[-128.16483594894228,53.02101203432187],[-128.16505648723142,53.02114195159614],[-128.1652492431623,53.021276853617564],[-128.16532579959457,53.021440802053675],[-128.1653147195939,53.021626528688564],[-128.16530812734715,53.021808818837584],[-128.16530700642042,53.0219882015006],[-128.16530310661088,53.022168191184576],[-128.16530013300738,53.022348172812684],[-128.1653018326491,53.02252805965773],[-128.165311910751,53.02270723664304],[-128.16532946886988,53.022886841275415],[-128.16535450772503,53.02306629958176],[-128.16538604387412,53.02324508256028],[-128.16543616028497,53.023421847357625],[-128.16552711232268,53.023593369359304],[-128.1655948974564,53.02376868865623],[-128.16565058626543,53.02394478603203],[-128.16569889469253,53.02412269592078],[-128.16573973765318,53.0243007518263],[-128.16577127634028,53.02447953457238],[-128.16579353942853,53.024659608627395],[-128.16573875776388,53.02483100824728],[-128.16556419658738,53.02497994478427],[-128.16540942588964,53.025132436757495],[-128.16538496500206,53.02531224756296],[-128.16521400472107,53.025458875353245],[-128.16506503104182,53.025615188382716],[-128.164968053457,53.02578344293613],[-128.16494264953147,53.02596327084916],[-128.16494245281675,53.026142636077836],[-128.16499073245322,53.02631999052614],[-128.1650631651066,53.0264946595956],[-128.16513651038252,53.02666874687303],[-128.16520056542365,53.02684413460871],[-128.1652265319513,53.02702357553007],[-128.16525804217167,53.027201802627204],[-128.16527937861886,53.02738189348799],[-128.16532847273518,53.02755699075126],[-128.16546101398222,53.02771934600538],[-128.16554727267385,53.0278903978692],[-128.16558444179284,53.02806963297714],[-128.16557019745488,53.028248134921796],[-128.16551385789595,53.02842573260854],[-128.16546025297808,53.02860215006326],[-128.165460087226,53.02878207947536],[-128.16549343772868,53.02895970759696],[-128.16553985607368,53.02913709579769],[-128.16560022616702,53.02931310682964],[-128.16568191456193,53.02948591943633],[-128.16578302680304,53.02965502130855],[-128.16591000420087,53.029818034181616],[-128.16607183770793,53.029968640793285],[-128.16621442089354,53.03012632673912],[-128.16635151889744,53.030286355265545],[-128.16649410418816,53.03044404084415],[-128.16663120427157,53.03060406901583],[-128.1667572185121,53.03076654266848],[-128.16687036590199,53.03093318054519],[-128.166965016415,53.03110351214248],[-128.16704858115222,53.03127629828861],[-128.16709127473436,53.031453754227144],[-128.16710791755327,53.03163336572515],[-128.16712829479246,53.031812917570335],[-128.167165416847,53.03199103181187],[-128.16719790817825,53.03216979608613],[-128.16724526315113,53.032347166271634],[-128.16729452921322,53.03252506630523],[-128.16734564724516,53.03270292331558],[-128.1675847058414,53.03281007584125],[-128.16782826848507,53.03291377314409],[-128.16809500163578,53.032995753970084],[-128.16835982612542,53.03307663931441],[-128.1685791248069,53.03319928218829],[-128.16879124292532,53.033327661710615],[-128.16904777683578,53.033410948951264],[-128.1693381243182,53.03346109569937],[-128.16962238892995,53.03352033064035],[-128.16990132568256,53.03358470295457],[-128.17015002645326,53.033679333037846],[-128.17037202686453,53.033799680975385],[-128.17058961147703,53.033925158773584],[-128.17081791239573,53.03404090595007],[-128.17105345349998,53.03415203543151],[-128.17128989300653,53.03426258293586],[-128.171519978965,53.03437661891941],[-128.1717117128198,53.03454460384746],[-128.1718898063562,53.03464670012386],[-128.17210601961366,53.034781724555124],[-128.17227434994143,53.03493051736622],[-128.17243450196582,53.03508395353935],[-128.17261004516797,53.03522757302132],[-128.17284291906938,53.03534099019451],[-128.17308568273035,53.03544693372751],[-128.1732161095784,53.0356037144263],[-128.17332288256634,53.035772705781454],[-128.17352218765393,53.03590579716706],[-128.17373339322188,53.0360341849389],[-128.17393367028802,53.036167813767435],[-128.1741284475479,53.036303794601196],[-128.17418461816595,53.03648828180673],[-128.1743311255147,53.03663019187943],[-128.17443010633127,53.03679315583737],[-128.17445657157037,53.036963061241764],[-128.17448499862246,53.03711668034589],[-128.17460543188793,53.03727868377929],[-128.17476122767025,53.037437802230826],[-128.1749159583459,53.03764906247617],[-128.17539616309298,53.03764693558945],[-128.17579792574176,53.03762775222704],[-128.17609761881235,53.03764072626212],[-128.1763967300232,53.03766042735305],[-128.17669435511428,53.03766951001406],[-128.1769928779557,53.03767801934197],[-128.17733714678872,53.03766718259444],[-128.17759441253156,53.03769101590801],[-128.17788663795181,53.03770412324398],[-128.1781843496408,53.03771487758961],[-128.1784790173331,53.03773914846762],[-128.17876906064186,53.037782552198834],[-128.179057410313,53.03782935850229],[-128.17934984561515,53.03786486958355],[-128.1796437614211,53.037892514499624],[-128.1799394143512,53.0379178756078],[-128.18023180887516,53.0379522732385],[-128.1805119526936,53.038003146717905],[-128.18079568194545,53.03806908242263],[-128.18105979430334,53.03815332521908],[-128.18132479075643,53.03823642111666],[-128.18156461166865,53.03833904806836],[-128.18175683124886,53.038478983117564],[-128.18200288036442,53.0385753240009],[-128.18227756764855,53.03864702850229],[-128.18255497798512,53.038717004976036],[-128.18282344142014,53.03879499340535],[-128.18308970797318,53.03886629582325],[-128.18331589016407,53.0389579615664],[-128.1836314551387,53.03904292368392],[-128.18392823240325,53.03907161719972],[-128.18421918242416,53.03907800659889],[-128.18451821900703,53.03904163817368],[-128.18481300833085,53.03903169587658],[-128.18510125784064,53.03907624749217],[-128.18538731980212,53.03913260506794],[-128.185671558033,53.03919011675744],[-128.18595489949846,53.0392482004106],[-128.18622677582883,53.03931939195238],[-128.18649636396998,53.039400714391384],[-128.1867599010184,53.03949168146246],[-128.18699628205547,53.039599401498734],[-128.18719637190136,53.039728528048045],[-128.1873766311991,53.03987148301127],[-128.18754056185264,53.040024264557],[-128.1876916686796,53.04018176769745],[-128.1878343950796,53.04033998206341],[-128.18795506207263,53.04050534035115],[-128.18804249393193,53.040678596915875],[-128.18809269614272,53.04085478582848],[-128.1881215328285,53.04103361294085],[-128.18813920948858,53.04121320300881],[-128.18814666679324,53.04139411254796],[-128.18815125750862,53.041573945248224],[-128.1881306472235,53.04175425422685],[-128.18809221767634,53.04193320761268],[-128.18813958398786,53.042108884005884],[-128.18823262196526,53.04228203638461],[-128.1883634007558,53.04244384364803],[-128.18852808369664,53.04259268187021],[-128.18871202169439,53.042734445625136],[-128.1888987981079,53.04287671247338],[-128.18906900035043,53.04302377055467],[-128.18923894164132,53.04318372038072],[-128.18933983370258,53.04334608107384],[-128.18952276454695,53.04348617630014],[-128.1897368647928,53.04361448274905],[-128.189961013447,53.04373811829743],[-128.19017689678915,53.0438647048858],[-128.1903643203363,53.04400135244019],[-128.19050867709214,53.0441544933173],[-128.19062005680442,53.044320577328456],[-128.19071037384882,53.044494899330616],[-128.19079148416682,53.04467219919528],[-128.19087534555422,53.04484831794416],[-128.19097293253583,53.045018585707886],[-128.19109520297178,53.04517829701894],[-128.1912615714305,53.045323181217576],[-128.19147933466434,53.04544973958964],[-128.191728904902,53.04555888271162],[-128.19198969761004,53.04564988966743],[-128.19226139365287,53.04571658729928],[-128.1925092603421,53.04581063130871],[-128.1927420856171,53.04592120447197],[-128.19300360587582,53.04602620388183],[-128.19322711168547,53.046119022102296],[-128.1934450154407,53.04621193507026],[-128.1936542055949,53.046298848548105],[-128.19385311771532,53.046368016565225],[-128.194024045897,53.04652850641781],[-128.1941151633971,53.046700013013485],[-128.19419236909206,53.04687345523127],[-128.19426866288939,53.04704747036964],[-128.19435607608108,53.04721960166422],[-128.1944491218907,53.047392193141015],[-128.19454955168078,53.04756296123094],[-128.19467107538762,53.047726045905726],[-128.19483022734187,53.04787554351732],[-128.19503436233734,53.04800907510412],[-128.19526198022837,53.04812703141029],[-128.1955048442077,53.04823237254667],[-128.19575945073083,53.04832964764801],[-128.19601679442422,53.04842575027291],[-128.19626590139305,53.048525368670234],[-128.1964977382811,53.04863427607259],[-128.19668229331032,53.048768725353646],[-128.1968031921879,53.048937424619886],[-128.19694692374182,53.049095618598486],[-128.19716816819272,53.04921648804868],[-128.19738036603528,53.049343139559866],[-128.19757438124998,53.04947965338325],[-128.19776474914423,53.049617911853176],[-128.1979569571824,53.0497555797365],[-128.19815462471252,53.04989034759174],[-128.1983586776544,53.05002218917741],[-128.19856817581214,53.0501505659545],[-128.19878759192724,53.050272031533126],[-128.1990322285577,53.050375090626325],[-128.1992894759753,53.05046894614429],[-128.1995059994583,53.05058877833693],[-128.1997302401637,53.05069502314755],[-128.19989489828458,53.05087804191706],[-128.19999320018937,53.051043240200514],[-128.2000011063443,53.051051495924376],[-128.20014149603654,53.05119909438133],[-128.2002861448231,53.05135670237361],[-128.200494559772,53.05151817036251],[-128.20065067862996,53.05168060413598],[-128.2007987011641,53.05181293035785],[-128.20096337715384,53.05196007500732],[-128.20111195021724,53.052085099530935],[-128.20130245436357,53.05220765582812],[-128.20148409242893,53.05237522660351],[-128.20168218965196,53.052517818876915],[-128.2018801316067,53.05267555185721],[-128.202020570528,53.05278783988964],[-128.2021515678843,53.0529703626082],[-128.2023924633024,53.053072919833],[-128.20263377852027,53.05316538861846],[-128.20289924865202,53.05327309128484],[-128.20309519280784,53.05339218920404],[-128.2032425349904,53.05360130994405]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":38,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"6","REGION_NUMBER":6,"REGION_NAME":"Skeena","REGION_NUMBER_NAME":"6- Skeena","FEATURE_AREA_SQM":330795098910.932,"FEATURE_LENGTH_M":5298203.738,"OBJECTID":2,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-128.2032425349904,53.05360130994405],[-128.20294537780728,53.053621429669285],[-128.20264903052092,53.05363929150601],[-128.202350869675,53.05364037127795],[-128.2020529850639,53.05364648520514],[-128.20175450811115,53.05365934445723],[-128.2014640131082,53.0537000703549],[-128.20119407055049,53.053776293518496],[-128.2009251691945,53.05385472967907],[-128.2006521538217,53.053925959832966],[-128.20038325098076,53.05400440371203],[-128.20011927041435,53.05408779526158],[-128.2000007749107,53.05412811826855],[-128.19986025626577,53.054176698678525],[-128.199601269828,53.054266157006374],[-128.19934032758027,53.05435397415573],[-128.1990823096302,53.05444397823747],[-128.19883315288496,53.054542784720255],[-128.19858497948263,53.05464269334127],[-128.19839048470783,53.05476794982015],[-128.1982425148553,53.05492540472543],[-128.19801174408332,53.05503619802224],[-128.19773167776304,53.05509801939751],[-128.19743920054844,53.05513653896485],[-128.1971454041907,53.055167791323655],[-128.1968712874032,53.05523622590686],[-128.1966033686843,53.05531576352313],[-128.19633747539328,53.055398616872075],[-128.19606958339938,53.05547870875377],[-128.19579362414805,53.05554774001935],[-128.1954994472914,53.055571713224545],[-128.195198159923,53.05558459890543],[-128.194920171314,53.055632366724254],[-128.19468071437285,53.05573827471401],[-128.19438941688858,53.05578180468286],[-128.19413095941925,53.05586395865023],[-128.19384823252955,53.05592862702937],[-128.19351705491104,53.055942063899785],[-128.19328684778114,53.055955874694554],[-128.1929707273393,53.05602564544054],[-128.19268023639225,53.05608485018871],[-128.1923638533564,53.056149575144936],[-128.19204120378754,53.056147164354925],[-128.19177787995102,53.05613523910281],[-128.1914624126864,53.056127079384446],[-128.191170733529,53.05616332634093],[-128.19085673728682,53.05622015587434],[-128.19058944336552,53.05623968973908],[-128.19030426247207,53.05629318498636],[-128.1900103950498,53.05632329964041],[-128.18971549928662,53.056351755611765],[-128.18942927444195,53.0564030260695],[-128.18914406186602,53.05645595406465],[-128.18885983333467,53.05650999307838],[-128.1885818293084,53.05657568201753],[-128.18830072616484,53.05663582272979],[-128.18803767560865,53.05671972517131],[-128.18779144755788,53.056821816214224],[-128.18756173894909,53.05693593158389],[-128.18736973288725,53.057074009847305],[-128.18722552840816,53.05719662903334],[-128.18697204867274,53.05733920863635],[-128.18673658691975,53.05745063084624],[-128.1864834745877,53.0575461205131],[-128.18619914857683,53.057598468711795],[-128.18592314535456,53.05766691210111],[-128.18564614252074,53.05773426130308],[-128.18536910973435,53.057801045407196],[-128.18509303123363,53.0578683671936],[-128.18481547384746,53.057943006664935],[-128.18474665049854,53.05811355130171],[-128.18468466062305,53.05828957439568],[-128.1846151402897,53.058464615794925],[-128.18455409086684,53.0586406213605],[-128.18443634916187,53.05880534499042],[-128.18433566495221,53.058974236830885],[-128.18422271450842,53.059141113521584],[-128.18413430824202,53.05931258492664],[-128.18405532808313,53.05948555885137],[-128.1838619540087,53.05961580911107],[-128.1835692161593,53.059650370258545],[-128.1832698025594,53.05968224716038],[-128.18295911799237,53.05973115564012],[-128.18276154221505,53.05985251372034],[-128.18266967990886,53.060029643739895],[-128.18255198465036,53.06019548529001],[-128.18241433465647,53.060354969620604],[-128.18226431762287,53.06051019838815],[-128.18213141511154,53.06067128053808],[-128.18201746726714,53.06083705215303],[-128.18188645954677,53.06099865495212],[-128.1817687444578,53.061163930907455],[-128.18164436756385,53.06132709680201],[-128.1815133569099,53.061488699141556],[-128.18136333257294,53.061643926663],[-128.18121233653528,53.061798606931916],[-128.1810019854638,53.06192636764651],[-128.18076936358088,53.06203940144464],[-128.1805032395122,53.06211885874392],[-128.1802231875154,53.06218232271106],[-128.17994533461209,53.06225191533909],[-128.17965888787668,53.062209001613475],[-128.17937624184154,53.062149202135444],[-128.1790800826272,53.062135612155345],[-128.17878236511746,53.062146147067885],[-128.17848492052224,53.06216229012469],[-128.17819336084966,53.06220185573315],[-128.17791019397046,53.062259210632824],[-128.1776450473076,53.062339764318146],[-128.17740271451027,53.06244568840907],[-128.17715932349233,53.062549380536765],[-128.17692493463724,53.062664681039536],[-128.176648108003,53.06271798794182],[-128.1763449388882,53.062731989075026],[-128.17606454689326,53.062788723286666],[-128.17581186672146,53.06289370473094],[-128.17565001758567,53.06303793241041],[-128.1755455517946,53.06320688520207],[-128.175448802067,53.0633807446307],[-128.17531301183033,53.06354074144996],[-128.17518577921774,53.063703387370886],[-128.17507936925648,53.063871254450845],[-128.1749795914146,53.06404068519242],[-128.17489021044057,53.06421215730346],[-128.17481590426914,53.064386158584],[-128.17471706581068,53.06455557170763],[-128.17465312763215,53.06473105884901],[-128.17460330943993,53.06490853680101],[-128.1745553736876,53.06508597106683],[-128.17449143450045,53.065261467026566],[-128.17447446250335,53.065441137877535],[-128.17447243750306,53.06562053341921],[-128.1744573336824,53.06580016981938],[-128.17443755123924,53.065979892363266],[-128.17441775464235,53.0661590501645],[-128.17437710075876,53.06636942372517],[-128.174294924326,53.06620727277206],[-128.17409758084722,53.066060694378784],[-128.17385083347534,53.066008067350744],[-128.17362021247646,53.066033056101766],[-128.17338834641882,53.06614325344731],[-128.17320095728465,53.06622741390949],[-128.17298722854215,53.06632663167122],[-128.17280714627034,53.06648015822387],[-128.17263796760824,53.06666431546015],[-128.17235148051287,53.066712184418726],[-128.17205670119813,53.06674451139847],[-128.17175903584553,53.0667567129548],[-128.1714604665226,53.06675155060394],[-128.1711624285816,53.066756475575716],[-128.17086408859174,53.06675579144743],[-128.17056567782805,53.06675343087118],[-128.17026331494174,53.066747223219124],[-128.16997493737455,53.06677662034686],[-128.16970287206976,53.0668505654037],[-128.16943397309666,53.06693173355744],[-128.16916217679946,53.067011268343414],[-128.16887496788706,53.067045134172815],[-128.16857648299688,53.06704164891207],[-128.1682758868039,53.06703315275395],[-128.16797785995854,53.06703862545047],[-128.16768007690817,53.06704857685652],[-128.16738115196122,53.06705462950864],[-128.16708301041896,53.067057860078634],[-128.1667852270238,53.0670678092285],[-128.16648762851125,53.067081673193165],[-128.16619038836032,53.06710226470134],[-128.16589528690173,53.06712841217486],[-128.1655537152591,53.067269760531346],[-128.16530544625724,53.067370718393654],[-128.16504759115494,53.06746680257711],[-128.16480799288783,53.06757264925305],[-128.16462038531034,53.067707799845095],[-128.16448374177077,53.067870605394276],[-128.16434133517674,53.068030153443644],[-128.16414067329734,53.0681661074403],[-128.163889058582,53.06827497031324],[-128.16361508792218,53.06831194342595],[-128.16331823366716,53.06828543023159],[-128.16301836952886,53.06823656076965],[-128.1627314710261,53.06818520213755],[-128.16245047795633,53.068121412835886],[-128.16216466559425,53.06807283989566],[-128.1618655461584,53.06805701838024],[-128.16156821109752,53.068075913860284],[-128.16128466847354,53.068127064570156],[-128.1610066160724,53.06819436383966],[-128.160728635243,53.06826279107454],[-128.1604487125473,53.06833012321901],[-128.16016633675014,53.06838573375211],[-128.15986911312066,53.06837043744685],[-128.15960678030098,53.06828723446911],[-128.15934340815576,53.068201816938725],[-128.15906180658584,53.0681441917007],[-128.15884497910278,53.06801812270311],[-128.1586335736673,53.06788802628152],[-128.15837959050603,53.067803555990594],[-128.1580847273406,53.06776074364118],[-128.1577847131085,53.067745484216736],[-128.15748747739192,53.06776660957686],[-128.15718881521698,53.067796172072825],[-128.15689742963087,53.067785236666076],[-128.15661569202555,53.06772481021487],[-128.1563311594954,53.067664425179736],[-128.15602508614606,53.06764031310319],[-128.15578939570838,53.06754764750146],[-128.1556026786412,53.06740645024788],[-128.15542211161699,53.06725729358869],[-128.15523623868626,53.067114403383776],[-128.15504851303223,53.06697153774607],[-128.15482853545691,53.066856728900625],[-128.1545580492792,53.0667781566731],[-128.15426570792567,53.06672968405353],[-128.15396991107673,53.066705370311574],[-128.15366690851835,53.06670473678256],[-128.15337566768272,53.06673302442554],[-128.15310478472546,53.066812514050596],[-128.15285258133076,53.06691015408368],[-128.15261502295115,53.06701985730235],[-128.15240165055462,53.06714536879812],[-128.15221912412937,53.067289383193675],[-128.15203363029295,53.06743007945963],[-128.15181158297682,53.06755070799221],[-128.15156558936363,53.06766000666889],[-128.15130321103914,53.06774156995951],[-128.15101625638022,53.06776249165226],[-128.15070957065146,53.06774453788536],[-128.15040916731687,53.06775842120677],[-128.15011141692418,53.06776944852672],[-128.1498302280899,53.06771964085922],[-128.14955693498726,53.06764109942569],[-128.14926615932973,53.067604916677276],[-128.1489678481132,53.067586249974916],[-128.14866837755775,53.0675816113278],[-128.14836844725468,53.067586504092205],[-128.14806611905797,53.06759929551058],[-128.14777202999528,53.067627064954884],[-128.14749427747978,53.06768199592619],[-128.14724813002616,53.067788481264145],[-128.14709251645516,53.06796562710827],[-128.14695833166934,53.068122761533594],[-128.1468054320026,53.068279671076105],[-128.14661563245767,53.06839130028379],[-128.14642620648547,53.06849170366668],[-128.14631051141907,53.06862608164847],[-128.1461466729886,53.06880729446319],[-128.1460135371173,53.06896665050816],[-128.14585012012967,53.069119274844816],[-128.14570189168967,53.06927609783747],[-128.14554790005542,53.069430227383855],[-128.1453652702926,53.06957254633147],[-128.1451694308997,53.06971286300341],[-128.14495709157708,53.06984114835456],[-128.14472026826513,53.06994745857117],[-128.1443806629321,53.0700371433585],[-128.1441165299979,53.070047544716395],[-128.14407772265432,53.069927184465136],[-128.14414289920813,53.069736556767204],[-128.1442476476878,53.069533435708564],[-128.14434451120286,53.0693590469812],[-128.14444629290122,53.06918961767978],[-128.1445556042225,53.069021163507735],[-128.144673429422,53.06885480547334],[-128.1446939544051,53.06866890722144],[-128.14473401449715,53.068499477663764],[-128.14481688025043,53.068325898627336],[-128.1449139937383,53.06815655354128],[-128.14498261017604,53.067978749287676],[-128.14511586803948,53.06784013460323],[-128.14524870000653,53.067693115694446],[-128.14529481513566,53.067532534601916],[-128.14530563438677,53.06735803109443],[-128.14544650379437,53.067185083445025],[-128.14556580003838,53.06702934222874],[-128.145641837329,53.06686878212707],[-128.14562806632028,53.06668911152366],[-128.1456180477388,53.06650938167881],[-128.1456126924328,53.06632955810443],[-128.14561013281028,53.06614969267494],[-128.14562066672192,53.06596958031348],[-128.14559107907002,53.06579132699589],[-128.14551214066003,53.06561732442999],[-128.1453769321513,53.065458360974475],[-128.14521127185512,53.06530724149225],[-128.1450815288411,53.06514537148039],[-128.14498965680826,53.06497441046849],[-128.144896858799,53.064803466204246],[-128.14481428843771,53.06463121508747],[-128.14475392623166,53.06445464154364],[-128.14470292080887,53.06427788901933],[-128.14468728671977,53.06409826093817],[-128.1446558074157,53.06391947668092],[-128.14466076835907,53.063740030445544],[-128.1446834708827,53.063560261899575],[-128.144701494946,53.06338057831697],[-128.14469524577314,53.06320133566511],[-128.14465258537027,53.06302331044877],[-128.1445949794229,53.06284556566753],[-128.14451687896567,53.06266930514022],[-128.14429262860227,53.0625612807841],[-128.14402908147602,53.062471349303394],[-128.14376549336654,53.062380288050385],[-128.1435335470134,53.06226791814162],[-128.1433368939435,53.06213248751914],[-128.14314109909228,53.06199536402132],[-128.14307000131282,53.061938919921005],[-128.14294267986207,53.06186164180938],[-128.14274329222937,53.061727380848964],[-128.14254939746004,53.061590777923826],[-128.142355503939,53.06145417466956],[-128.14215614857946,53.061320477141166],[-128.1419558809374,53.06118735184518],[-128.14177020750898,53.06104667062079],[-128.14160096702037,53.060898409145835],[-128.14143082957577,53.06075072867948],[-128.14126160639856,53.06060246642178],[-128.14109788902698,53.0604524181239],[-128.14094793757795,53.0602970800439],[-128.1408044202988,53.060139383146264],[-128.1406673506768,53.059979892180415],[-128.14052934007807,53.05982040915381],[-128.1403913459139,53.05966093463987],[-128.14025514904316,53.0595002974393],[-128.1402088596698,53.059324022386186],[-128.14014667098337,53.0591474795461],[-128.1400852867771,53.05898717175804],[-128.14000487332092,53.05878292583697],[-128.13994790826848,53.058598997336816],[-128.1400357064275,53.05843038013534],[-128.14007059071218,53.05830644024346],[-128.14003400947442,53.05808178701632],[-128.14002942291827,53.057898029890865],[-128.1400152648171,53.057691470714694],[-128.13992031977116,53.05755138379637],[-128.13965791116573,53.057575762089414],[-128.13933469310788,53.057636548169924],[-128.13903779262074,53.05762566993301],[-128.13874100048054,53.05759853930793],[-128.1384460203401,53.057570254140735],[-128.1382131728555,53.05745789052681],[-128.1379821531715,53.057344372387185],[-128.1377746429026,53.05721529935205],[-128.13757439488197,53.057081601582446],[-128.13737326349957,53.05694904942524],[-128.13716304682706,53.056821701340056],[-128.1369437168914,53.05669900178163],[-128.13671003599745,53.05658832737405],[-128.13646281826226,53.056487430312764],[-128.1362120218044,53.056389404439486],[-128.13594440294153,53.05631017407958],[-128.13566455458042,53.05624797903793],[-128.13537696989704,53.05619937501278],[-128.135090327348,53.05615075325663],[-128.13479700231477,53.05611794533477],[-128.13450286388624,53.056087393352094],[-128.13420631073419,53.056064731133354],[-128.1339129585909,53.05603135655527],[-128.13362300545802,53.055991202931956],[-128.13334403281934,53.055927865674],[-128.13307376823104,53.05585147470728],[-128.13280170634755,53.05577680155761],[-128.13253588149576,53.05569585423489],[-128.13226295131608,53.055622316534375],[-128.1319805713876,53.05556519855037],[-128.1316888678167,53.05552731382304],[-128.13139077621486,53.055529889854924],[-128.1310921522578,53.05554033053484],[-128.13079590186905,53.055560807412],[-128.13050087428206,53.05558687530915],[-128.13020459539467,53.055606795202316],[-128.12992654787624,53.05567346628246],[-128.12963470652136,53.055707312345305],[-128.12933870740727,53.055732829862485],[-128.12904231456307,53.05575050691809],[-128.12875314086,53.0557069644688],[-128.1284961863453,53.05561631546693],[-128.12827243496625,53.05549816390277],[-128.12805678905167,53.05537369596234],[-128.12785750729665,53.0552399738288],[-128.12769477159867,53.05508933401455],[-128.12749803555653,53.05489446788059],[-128.12729818501094,53.054655939599755],[-128.12713375402896,53.054508692511],[-128.12691912740925,53.054385890147394],[-128.12668085132518,53.054275844218274],[-128.12644344684276,53.05416466114798],[-128.12621753202683,53.05404037497],[-128.12598726506246,53.053922336600856],[-128.12573545336411,53.05384055695265],[-128.12543904504042,53.05383916893122],[-128.12513364865606,53.05384466782883],[-128.12484357833682,53.05380168820842],[-128.12455676801,53.05374912542256],[-128.12426447807854,53.05371795007915],[-128.12396738508036,53.05370256303043],[-128.12366779102453,53.05369338110082],[-128.12336853336146,53.05369091819451],[-128.1230705384318,53.05369515764932],[-128.12277415720723,53.05371281899124],[-128.12247839196078,53.053742799196286],[-128.12218251427117,53.0537705387312],[-128.12188682133325,53.05378313659872],[-128.12158932181848,53.053759904083364],[-128.12129281959827,53.05373776490395],[-128.12099437371285,53.053751539950575],[-128.12069283527603,53.05377825648295],[-128.12040153149002,53.05382272390962],[-128.12013972856104,53.05389636194436],[-128.11993112857857,53.05402453636254],[-128.1197267389845,53.05416216749756],[-128.11948718654082,53.05426959849178],[-128.11922919549065,53.05436334341789],[-128.11895801972926,53.05443659099302],[-128.11866202868273,53.05449963862061],[-128.1183543535709,53.05455336245711],[-128.11806365187982,53.05457258686361],[-128.11782184321888,53.05452256317551],[-128.11764208265967,53.05436716675259],[-128.1175154879833,53.054190647821066],[-128.1174376835732,53.054017728416824],[-128.11739596189085,53.05383744482982],[-128.11737109443004,53.0536574148738],[-128.11735747554434,53.053478304082546],[-128.11735221389193,53.05329792238564],[-128.11735539296998,53.053117945254826],[-128.11739749899343,53.05295016542567],[-128.11742840201612,53.05276409501782],[-128.11745051108625,53.05258882707129],[-128.1174833369096,53.052403834108695],[-128.11756150919135,53.052228125260974],[-128.117606179756,53.052074306876655],[-128.1176286552779,53.051887822526794],[-128.11759624583817,53.051706806763484],[-128.11754473504652,53.051536222415734],[-128.11755549663917,53.0513583599486],[-128.11754564103776,53.051179737423034],[-128.11755815855688,53.05099960147122],[-128.1175697064382,53.05081891792484],[-128.11755700081872,53.05063922550835],[-128.11752185433818,53.05045937969492],[-128.11751480864956,53.05028071563356],[-128.11757994310244,53.05010635240671],[-128.11766472400743,53.04993220157465],[-128.1177006917047,53.04975388663852],[-128.11773004545157,53.04957400440357],[-128.117757460394,53.04939303595549],[-128.11777928689727,53.04921216775777],[-128.1177927010589,53.04903145048778],[-128.11779309709814,53.048852087771145],[-128.11777679568567,53.048675266607475],[-128.11773332145927,53.0484972470763],[-128.11764308702058,53.04831838958696],[-128.1175086572173,53.04815322067148],[-128.11733171463374,53.048016273683466],[-128.11709846789978,53.04791227973434],[-128.11682967662188,53.047826302458574],[-128.1165562379839,53.04774097290391],[-128.11630997697895,53.047638331817254],[-128.11610329797364,53.04750472321285],[-128.11585035060503,53.04741789470558],[-128.11555289119218,53.04737559050169],[-128.11529928354443,53.04729437753955],[-128.11512170998787,53.04714455197297],[-128.11486160346215,53.0470640195456],[-128.11457545703402,53.047004686646886],[-128.11430883638994,53.04692483471834],[-128.11408680158667,53.04680157759517],[-128.1138408313644,53.04670454012594],[-128.11356105060946,53.046641727887675],[-128.11326817658178,53.04659764998222],[-128.11297515747498,53.046569267563164],[-128.11267809050128,53.0465532875771],[-128.1123785774396,53.04654464143028],[-128.11208007421274,53.04653765342578],[-128.11178169748246,53.04653290434732],[-128.1114825743473,53.04653208678556],[-128.11118339595637,53.04653015745132],[-128.11088586192972,53.046523705095524],[-128.11058219628558,53.0465067169132],[-128.11030629630272,53.04644663456887],[-128.1101693297966,53.046285986978],[-128.11014453814946,53.04610707495517],[-128.1101580114496,53.045926913735755],[-128.11017705972318,53.04574609680547],[-128.11018210859535,53.04556553017851],[-128.11019243909766,53.04537870823025],[-128.11017691679945,53.04519794443598],[-128.11008210593081,53.04503934084009],[-128.10985918008444,53.04491665692837],[-128.10962878541542,53.04479410613001],[-128.10950216130496,53.04463439383192],[-128.10940943933156,53.04446117974056],[-128.1092863420793,53.044297476284456],[-128.1091530933138,53.04413619608507],[-128.1090097487802,53.04397845908557],[-128.10885167307904,53.04382546906153],[-128.10866529972898,53.0436858711843],[-128.10846064277223,53.04355445547796],[-128.10825598663737,53.043423030446874],[-128.10806958942183,53.04328287608733],[-128.1079014230263,53.04313342801494],[-128.10772782231723,53.04298743969175],[-128.10752232857152,53.042857714337224],[-128.10728317067668,53.04274652536098],[-128.10701859669865,53.042669418887975],[-128.10672429350245,53.04263319757534],[-128.10643337724127,53.04259018924976],[-128.10614513147198,53.04254433460848],[-128.10585683031357,53.04249735032272],[-128.10556855779527,53.04245092980131],[-128.10536850884884,53.04231774075293],[-128.10516841866604,53.04218399611162],[-128.10496837223252,53.042050806364294],[-128.10476738588198,53.041917633055405],[-128.10456551515517,53.04178559616044],[-128.10436090758944,53.041654728711286],[-128.10415537506043,53.04152387741392],[-128.10394527890276,53.04139534908372],[-128.1037262077195,53.041274262230495],[-128.10349085893418,53.04116411886478],[-128.10324386547376,53.0410642713421],[-128.1029914249662,53.04096732730731],[-128.10274075458696,53.040868665263766],[-128.10249915971173,53.040764236140475],[-128.10226109142303,53.04065581582606],[-128.10202841991898,53.04054282399174],[-128.10180479369285,53.04042405677434],[-128.1015874905023,53.04030070161539],[-128.1013702160755,53.04017790155913],[-128.10113103394727,53.0400655799618],[-128.1009147861021,53.03994443778676],[-128.1007797988492,53.03978486543118],[-128.1006759746351,53.03961296345029],[-128.10061580362859,53.03943580035096],[-128.10059954943125,53.03925841138081],[-128.1006075150753,53.039079479208254],[-128.10062846822296,53.038898629856995],[-128.10065131595042,53.03871830275144],[-128.1006657407937,53.03853756957565],[-128.10066618159172,53.03835765031516],[-128.10065536305547,53.0381768015549],[-128.1006222490711,53.03799860062615],[-128.10055385178183,53.03782494674536],[-128.1004575575766,53.03765403139184],[-128.10035201098054,53.03748495763653],[-128.10025293800868,53.03731465654641],[-128.1001584579608,53.03714258767486],[-128.10004652486433,53.03697643423313],[-128.09989416448173,53.036824451874004],[-128.0996977554855,53.036688381869794],[-128.09949581459995,53.03655409592989],[-128.09932505043605,53.0364074892057],[-128.0991835928118,53.036249142134935],[-128.0990402844695,53.036090836792496],[-128.09888598043563,53.03593720181132],[-128.09872614684858,53.03578479493622],[-128.09855902449613,53.035636436415764],[-128.09838088156695,53.035491636590876],[-128.09818908856454,53.03535436109545],[-128.09797266466458,53.03522929798563],[-128.09776997611874,53.03509838541038],[-128.09761023248257,53.03494765245165],[-128.0974678325889,53.03478876414039],[-128.09731532329002,53.03463341829252],[-128.09714635825026,53.03448509059752],[-128.0969398588861,53.0343525674131],[-128.09671962643014,53.0342258838389],[-128.09647209503294,53.03413275813564],[-128.09619130252656,53.034085061786094],[-128.09589116195676,53.03406181388066],[-128.09559003992334,53.034037452710976],[-128.0953010056152,53.03399326357955],[-128.09501689737704,53.033934978612784],[-128.09475309266693,53.03385278310649],[-128.09451650834558,53.033735362621044],[-128.09424818227905,53.03367510971278],[-128.09395029896956,53.03365965469788],[-128.09364599755594,53.03366562025166],[-128.09334985436328,53.033685447916405],[-128.09305932470318,53.03372423174653],[-128.09277018964121,53.03377251387965],[-128.09248094395736,53.03381856428005],[-128.09219178021857,53.033866289477494],[-128.0917238805567,53.033870658295214],[-128.0913759933789,53.033598825182104],[-128.09134032169177,53.033424586180644],[-128.0913379387547,53.033243596204635],[-128.09134198711223,53.03306024129448],[-128.09132657736282,53.03288003820674],[-128.09125257012863,53.03270535771463],[-128.0912176050597,53.03252662219845],[-128.09118351114768,53.032346750245736],[-128.0911578264336,53.0321667292105],[-128.09114623471666,53.03198814428751],[-128.09117018314268,53.03181060634058],[-128.09126536675322,53.03163741046834],[-128.09140048531884,53.03147863515609],[-128.0915620865957,53.03132612493185],[-128.09170569476032,53.03116888462833],[-128.0918274383591,53.031004185014886],[-128.09194161786732,53.03083737743271],[-128.09204541057346,53.03066851196207],[-128.0921360788745,53.03049875815498],[-128.09212995845905,53.03031782514385],[-128.09209966637346,53.03013900673423],[-128.09203589378794,53.02996358897067],[-128.09194706403161,53.02979141346492],[-128.0918666155864,53.02961852429323],[-128.09174086395478,53.02945541513025],[-128.09163542761047,53.02928745276587],[-128.09150783835904,53.02912493194183],[-128.0913977847847,53.028958181168235],[-128.09128493884293,53.02879147082713],[-128.09116657625648,53.02862654411679],[-128.09104915546865,53.02846160059334],[-128.09092430854517,53.028297909558276],[-128.09079950531475,53.02813478258868],[-128.09068114644342,53.02796985532794],[-128.09059882487202,53.027796998458456],[-128.0905220919171,53.02762348648017],[-128.0904397721055,53.02745063842453],[-128.0903205179664,53.02728628266328],[-128.09021877146165,53.027117141621716],[-128.0901105393366,53.026949227415635],[-128.09001807310173,53.026778800783994],[-128.0899422424797,53.02660470744079],[-128.08986922049093,53.02643057324867],[-128.08977765446934,53.02625956549355],[-128.08965837889772,53.026094653429475],[-128.08951790514712,53.02593572163357],[-128.0893444379219,53.02578970481218],[-128.08914631499343,53.025655334178616],[-128.08893549929775,53.02552846985895],[-128.08871918048013,53.02540395354095],[-128.08855675301885,53.02525437718761],[-128.08832829351854,53.02514856673913],[-128.08809216053243,53.025038963810445],[-128.08789406000074,53.024904590750566],[-128.08771236031097,53.02476208026191],[-128.08754527967218,53.02461258492599],[-128.0874384184441,53.024453055850785],[-128.08742286369514,53.02432666103055],[-128.08745323196797,53.02418432480564],[-128.08758777334353,53.024032854032754],[-128.0878059320801,53.02391016932867],[-128.0879826002674,53.023760750307574],[-128.0881202935751,53.023597457280225],[-128.08813701873123,53.02342453099623],[-128.0880375865118,53.02324524929059],[-128.08785524294498,53.02310835527584],[-128.08761064797673,53.022997224286094],[-128.087336859694,53.02291911773342],[-128.0870535371167,53.02287537349483],[-128.08675715844163,53.02285090718717],[-128.08645562104695,53.0228355081647],[-128.08615592271988,53.02281951087592],[-128.08585886691182,53.02280010317327],[-128.08556190645507,53.02278293499036],[-128.08526429540743,53.02277138243824],[-128.0849671244459,53.022768789152686],[-128.08466871902272,53.02277910365637],[-128.08437194161678,53.02280340529036],[-128.08408248668746,53.02284383538962],[-128.08379939996007,53.02289983692226],[-128.08351946231375,53.022963072943895],[-128.08323848811403,53.0230240846457],[-128.08295336810468,53.02307676606275],[-128.0826672112562,53.02312721417103],[-128.08238005847878,53.023176567150024],[-128.08209287735679,53.023225354947044],[-128.08180667631817,53.023275245705825],[-128.0815205444405,53.02332625550871],[-128.0812335259979,53.02337840121987],[-128.08094172308643,53.023428388686334],[-128.0806627456955,53.02349215683401],[-128.08041987140595,53.02358723968666],[-128.0802151434272,53.023717520337954],[-128.0800240840797,53.02385989024213],[-128.07982135756973,53.02399294176066],[-128.0796109161706,53.02412108006858],[-128.07939365853952,53.024243733281395],[-128.07915219652435,53.024348877193894],[-128.07889541622583,53.02444644377833],[-128.0786068330275,53.024447601827376],[-128.07831219680784,53.02443990703243],[-128.0780303614921,53.02450259811801],[-128.0777378346592,53.02453801757239],[-128.07744054785007,53.024552221706315],[-128.07714245172312,53.0245501897669],[-128.0768462590181,53.02452962308265],[-128.0765499570583,53.02450681564483],[-128.0762713732627,53.024445017664156],[-128.0759774814331,53.02441431959542],[-128.07568190254807,53.02438701339672],[-128.0753858211682,53.024368683055215],[-128.0750875893785,53.024363841429754],[-128.07478950961956,53.02436180328264],[-128.07449116851348,53.024354720137886],[-128.07419270545003,53.02434483148088],[-128.07389908931955,53.024319728264075],[-128.07361270526474,53.024270400853375],[-128.0733156450457,53.024250961585885],[-128.07303788413705,53.02418689967322],[-128.07276525952807,53.0241132231167],[-128.07249617805013,53.024035564784924],[-128.0722200131474,53.02396586810427],[-128.07193706592167,53.023910306507055],[-128.07164156038831,53.023884674931885],[-128.0713430075319,53.02389216018521],[-128.07106574298354,53.02395307730259],[-128.07078071044444,53.024007960328674],[-128.07056657538953,53.02411821140272],[-128.07026495275062,53.02410108651976],[-128.06999211511317,53.02402292351904],[-128.06971855605224,53.02394925642604],[-128.06942815853694,53.02387476317684],[-128.06910964556542,53.02389436759885],[-128.06885437940463,53.023908368987925],[-128.06853627324415,53.023917311057616],[-128.0682543286815,53.023920578318574],[-128.06792618140489,53.02393417867182],[-128.06756161434296,53.02394785155299],[-128.06724176575932,53.02401679678808],[-128.0669943739787,53.02409679305676],[-128.0667300594123,53.0241552309769],[-128.06646466799594,53.024229945628214],[-128.06622705712635,53.024299680191504],[-128.06595992068588,53.02435760977282],[-128.06571669410076,53.02446555441985],[-128.06547538786717,53.02457459484119],[-128.06523294871673,53.02467972671936],[-128.0649953459392,53.02478813629275],[-128.0647674836249,53.0249047775955],[-128.06454735954372,53.02502689676993],[-128.06430479410844,53.02512922194649],[-128.0640299225093,53.02520128991747],[-128.063774587988,53.025290950806266],[-128.06355835576198,53.02541636281737],[-128.06333920543327,53.02553957455339],[-128.0630965801774,53.02564078616498],[-128.06281867802173,53.02570842035649],[-128.0625526975278,53.02579041792018],[-128.0622826956259,53.025866880362194],[-128.06200516022597,53.02592273158815],[-128.0618759847746,53.026090335938804],[-128.0618938027679,53.02626489444313],[-128.06198813056295,53.02643755054122],[-128.06208992662073,53.02661008497102],[-128.06193203524776,53.02680228745362],[-128.06169518988082,53.02690731376948],[-128.06144680145346,53.02700581554575],[-128.0611898282875,53.027100538935656],[-128.06092989860247,53.02719195948249],[-128.0606708119783,53.02728167878078],[-128.06040277270523,53.02736034426338],[-128.0601298281441,53.02743404598264],[-128.05987162488887,53.027522627070915],[-128.05962814782598,53.0276260878835],[-128.05938765224548,53.02773341498859],[-128.05914033008597,53.0278346909826],[-128.058893034119,53.02793653093755],[-128.05870631472044,53.028073748804694],[-128.0585465289947,53.02822730174165],[-128.0583857079987,53.02837863954426],[-128.05820580992196,53.02852189827933],[-128.05804592705894,53.028673210216084],[-128.0579184979045,53.028839093158396],[-128.0577814226307,53.028998418451444],[-128.05758299026965,53.029125750014686],[-128.05731457727956,53.02921618017949],[-128.05712089837178,53.02934510495932],[-128.05701244614758,53.029516825581865],[-128.05695188985834,53.02969387171481],[-128.0569253715703,53.02987929194822],[-128.05688643929923,53.03005932381962],[-128.05678586235462,53.030220253232514],[-128.05660082985057,53.030354066043685],[-128.0563683213901,53.03047245673752],[-128.0561330460211,53.03059146012955],[-128.0559283724913,53.03072505812656],[-128.05574027926744,53.030872939230214],[-128.05562089062175,53.03103138840021],[-128.05565830804832,53.03120617037339],[-128.05571006054592,53.03138741929108],[-128.05568477522067,53.03157898720008],[-128.05558803256946,53.03174209040363],[-128.05532357318017,53.03179881801331],[-128.05501267912038,53.031822734219915],[-128.05471693710282,53.03185086055144],[-128.0544204090577,53.031862750471575],[-128.05412210016667,53.03185730034829],[-128.05382361643808,53.03184792469361],[-128.05352544294382,53.03184526860846],[-128.05322899563546,53.031858831070906],[-128.05293205579707,53.031881377951194],[-128.05263488367547,53.031899435339405],[-128.05233792157358,53.03190235993731],[-128.05204020155492,53.03188960362831],[-128.0517431520548,53.031871230145356],[-128.0514415901887,53.03185629724287],[-128.05114857916786,53.03182496557454],[-128.05088157134878,53.031751696928794],[-128.05062923676527,53.031653520651766],[-128.05037864983518,53.03155250661029],[-128.05011584557386,53.03146963960287],[-128.0498252403684,53.03142985127073],[-128.04953613610277,53.031382745482446],[-128.04925311509422,53.03132600971656],[-128.0489718537174,53.03126700081726],[-128.0486896943398,53.0312085718135],[-128.04840662158557,53.031150713998144],[-128.04812536254587,53.031091703075184],[-128.04784578196424,53.03102873454274],[-128.04756704742155,53.03096407373203],[-128.04729095962065,53.03089600348871],[-128.04702014958974,53.030821115324116],[-128.04676173452444,53.03073200409384],[-128.04651032925943,53.03063323813818],[-128.04625194318095,53.030544681309124],[-128.04597937821995,53.030472063153795],[-128.04570242412282,53.030405125249395],[-128.04542106586368,53.03034386782451],[-128.04513895608758,53.03028654161344],[-128.044852538038,53.03023658008223],[-128.0445611131351,53.030199035099464],[-128.0442678757394,53.030162641764065],[-128.04390522239737,53.030333705286374],[-128.04369458732842,53.03046065902419],[-128.04349845802153,53.03059801459273],[-128.04330716359138,53.03073863994151],[-128.04311197269917,53.03087597854762],[-128.04290698738015,53.031003953854515],[-128.04267676015237,53.03111218875396],[-128.04239975736763,53.03118031386835],[-128.0421079778625,53.031232444826806],[-128.04182277848838,53.03128558211194],[-128.0415364491567,53.0313348194118],[-128.04124911214515,53.03138238753321],[-128.04096079462005,53.031428850957454],[-128.04067246152812,53.03147531393438],[-128.04038801108678,53.031524506928704],[-128.0401229578479,53.03160812213569],[-128.03985888298203,53.03169283178827],[-128.03959967058975,53.031781384562],[-128.03935609261896,53.03188423879323],[-128.0391406957028,53.0320095892976],[-128.03894935380512,53.03214965193716],[-128.03872337088785,53.03232730410815],[-128.03853521873626,53.032378191150336],[-128.03824004168806,53.032457273703436],[-128.03800137378425,53.03256508888527],[-128.03776076849354,53.03267180710705],[-128.0375221248284,53.03278017683477],[-128.03728925451583,53.03289237414804],[-128.03707087666666,53.033014400279086],[-128.03687080664577,53.0331478843033],[-128.0366774509432,53.033285179837094],[-128.03649172307476,53.03342569722059],[-128.03630028569316,53.03356407990287],[-128.03609838234286,53.033698715075495],[-128.0358408824784,53.03378442274242],[-128.0355455451833,53.033801849069455],[-128.03524898481837,53.033794078993964],[-128.03495343073675,53.03382663583294],[-128.0346758881259,53.03388410701801],[-128.03443239351364,53.033989190995555],[-128.03419084552542,53.034095926779244],[-128.03395213108732,53.03420316917921],[-128.0337098132337,53.03433289204401],[-128.03348444849044,53.03442645200794],[-128.03324865753484,53.03453644038639],[-128.03301094501066,53.03464534940228],[-128.0327751516132,53.03475533682068],[-128.03254225792762,53.034867524636866],[-128.0323132726842,53.03498299849871],[-128.03208526634805,53.035099584936184],[-128.03185525736436,53.03521339855437],[-128.03160817460582,53.03532190098899],[-128.0313267140212,53.03533683569686],[-128.03103302382002,53.03529144943355],[-128.0307396021288,53.03525166253278],[-128.03044566848422,53.035220851249406],[-128.03015169664266,53.03518891895705],[-128.02986106976473,53.03514908180547],[-128.02957384443653,53.03510189483446],[-128.02928644462403,53.035051356321],[-128.02899919404436,53.03500361241888],[-128.02868803077948,53.034964125585084],[-128.02843594334752,53.035007127849205],[-128.02823356368074,53.03515184555446],[-128.02795031544775,53.03510963500677],[-128.02768826001946,53.03502222197183],[-128.02742612565103,53.034933132799715],[-128.02716147811796,53.03485024692515],[-128.0268968730785,53.03476791572692],[-128.02663222760808,53.03468502865753],[-128.02636757159158,53.03460158520351],[-128.02610381577634,53.034517560757195],[-128.02583917341414,53.03443467189727],[-128.025573659426,53.03435291836159],[-128.02530635926433,53.03427287182947],[-128.02503903361176,53.03419226915712],[-128.024769868773,53.03411226241005],[-128.02449726425127,53.034038474767364],[-128.0242196198414,53.033976538354295],[-128.02393240914066,53.03392934658128],[-128.02363751011274,53.03389741418163],[-128.02333854992656,53.03387843701092],[-128.0230411719196,53.03387289218662],[-128.0227419609084,53.03388754596377],[-128.022442209047,53.033910619770275],[-128.0221449035184,53.03392636926658],[-128.02185214682595,53.033919612329804],[-128.02156765213326,53.033870682416214],[-128.02129208661376,53.033793575404275],[-128.0210173833539,53.03371477606906],[-128.02077148814416,53.033613054962515],[-128.02070537176448,53.0334410070105],[-128.020601094242,53.033271845508516],[-128.02039313258825,53.03314258041859],[-128.02017426263856,53.033019662435315],[-128.0200434147425,53.03286160881843],[-128.0199519826403,53.03268774305881],[-128.0198912321878,53.03251055406083],[-128.01989204156735,53.032331190119024],[-128.01990399989842,53.03215051433477],[-128.01985357984964,53.03197426934423],[-128.01979472470853,53.03179761275011],[-128.01978427909424,53.03161732049563],[-128.01965046914876,53.031455954308925],[-128.01953805810052,53.03129253576243],[-128.01954444350997,53.031112520280125],[-128.01954798214987,53.03093142360481],[-128.01953291615456,53.03075233129333],[-128.0196115603198,53.03057892530891],[-128.01966296513228,53.03040261380171],[-128.01966464816797,53.030222113759685],[-128.0196355872875,53.030043260978125],[-128.01958233655103,53.02986650819196],[-128.01955511634296,53.02968705889805],[-128.01953259799475,53.029508094043884],[-128.01951097940383,53.029328557780524],[-128.01948284576886,53.029149689015505],[-128.0194565942074,53.028970788010085],[-128.01943776865778,53.02879119490543],[-128.01946290266454,53.028612535134165],[-128.0194983117548,53.02843369943131],[-128.01953091277463,53.02825491176781],[-128.0195725814651,53.02807036412747],[-128.0195873596183,53.027890204605335],[-128.019438642324,53.027729093261634],[-128.0191795730204,53.027683641712436],[-128.01893648395526,53.02777747770002],[-128.01868636998873,53.02790057783143],[-128.01842532299224,53.02799023626229],[-128.01815230201333,53.028063849798784],[-128.01788420550182,53.02814297417884],[-128.0176298565011,53.02823587902646],[-128.01738043218398,53.02833430377975],[-128.01713201270934,53.028434396690926],[-128.01688258607265,53.0285328203804],[-128.01662836532338,53.02862851864168],[-128.01636428894537,53.028713740355784],[-128.01607448960044,53.02874895883186],[-128.01577296725375,53.02875355558106],[-128.0154784556657,53.02872887841108],[-128.01520149294026,53.02866074908316],[-128.01495284848488,53.02855907222294],[-128.01466166727965,53.02856516644098],[-128.01436156539964,53.02859999170421],[-128.0140755029376,53.02865476234413],[-128.01381420231132,53.02873936591537],[-128.01356495231158,53.0288417071621],[-128.01331946126226,53.02894453968698],[-128.01307878813893,53.02905065226926],[-128.01284004875944,53.02915785227556],[-128.0126003935803,53.02926562338039],[-128.01236668321954,53.02938058313239],[-128.01211400749776,53.02947008433713],[-128.0118139626234,53.02948641102036],[-128.01151787337977,53.029467920466224],[-128.01122224783623,53.02943933284317],[-128.01092613286735,53.0294202852681],[-128.01062841600637,53.02940685996837],[-128.01033165205686,53.029393982633216],[-128.01003396229177,53.029381120329546],[-128.00973629942663,53.02936882177098],[-128.00943855701098,53.02935483793281],[-128.00914172901005,53.02934027282146],[-128.0088439869903,53.02932628748282],[-128.00854648380516,53.02931734602056],[-128.00824732530003,53.029312906761895],[-128.00794856432861,53.02931687147325],[-128.00765325843565,53.02933479279179],[-128.00736195137122,53.029377861862024],[-128.00708973691852,53.029449184703225],[-128.00683644130177,53.02954541055795],[-128.00657628518493,53.02963502693423],[-128.0063020424694,53.02970302856294],[-128.00600475999462,53.02971872847578],[-128.00570083352284,53.02969251007768],[-128.0054457164982,53.02961165636039],[-128.0052405589371,53.02948119678061],[-128.00505067053513,53.0293375821155],[-128.0048582811648,53.0292001703084],[-128.00467410182307,53.029058699897625],[-128.00450549436755,53.02891080395969],[-128.00435975557176,53.02875242186096],[-128.00421133114602,53.028596336048686],[-128.00403331318094,53.02844691345336],[-128.00383146552957,53.02828724203552],[-128.00360165118934,53.02818801972077],[-128.00333929437457,53.02819135456946],[-128.00305845123626,53.02823816314859],[-128.00276941996376,53.02830976162251],[-128.00247991094307,53.02839089989162],[-128.00219944500532,53.02846572329595],[-128.00194345691477,53.02856422617774],[-128.00167645473138,53.02862760151749],[-128.00137532037024,53.028600768779896],[-128.00108651432407,53.02863761031202],[-128.00079951975334,53.02869292026377],[-128.00050665090643,53.02872254769134],[-128.00021018237703,53.02873542144624],[-128.00000045260055,53.028666116845876],[-127.99973097413067,53.028577647977436],[-127.99971769483902,53.02857338935867],[-127.99941947209852,53.02829092992949],[-127.99886536940974,53.02783177092533],[-127.99851543437869,53.0277009463312],[-127.99799956991245,53.027597591765904],[-127.99758655405113,53.02739664927593],[-127.99752386076504,53.02729515018253],[-127.99705752126329,53.02709231100201],[-127.99680186213756,53.026920087815846],[-127.996455554473,53.02664740255692],[-127.9959902868818,53.02638792963541],[-127.99561861880073,53.026171717681315],[-127.99525242501105,53.02571440280347],[-127.99474123539727,53.02541142957443],[-127.99446746482154,53.02501196766278],[-127.99445184672673,53.02469949183476],[-127.99432168745254,53.02421520818594],[-127.99369855204861,53.02365630895097],[-127.99343397713096,53.023412489750555],[-127.9941282960737,53.022921559195254],[-127.99477359478021,53.02250094209023],[-127.99556638545056,53.0218401967584],[-127.99576462268854,53.02138790390558],[-127.99531610158051,53.021026149132574],[-127.99514583952758,53.02092085475006],[-127.99494658695927,53.020814938522946],[-127.99461786482652,53.020716807287464],[-127.99421707381498,53.02063503083463],[-127.99336004333679,53.02038497821014],[-127.99258522041539,53.02027421233104],[-127.99158121313242,53.020135916574915],[-127.99034871786832,53.019865279619125],[-127.99007069411782,53.01969230776547],[-127.98902052198616,53.019285745640346],[-127.98898617626732,53.01873202799136],[-127.98897230638119,53.01863529669698],[-127.98886098716571,53.0185318062761],[-127.9883538659011,53.018073492941106],[-127.98812672982595,53.017730388790746],[-127.98809992769283,53.01723762983164],[-127.98801045539281,53.017161793672],[-127.98799676156982,53.016749520834956],[-127.9880719038505,53.016040388605155],[-127.98801059920397,53.01562835316435],[-127.98809233773332,53.01516011028503],[-127.98810311724793,53.01469193359338],[-127.98811506674984,53.014209173845224],[-127.98813514387204,53.013840047452234],[-127.98812725964372,53.013172658365995],[-127.98811747624332,53.01260450843603],[-127.98829628737833,53.01199563155997],[-127.98856943103884,53.011387396218275],[-127.98853870973016,53.0106912557903],[-127.98831486582517,53.01017827793626],[-127.98773307443844,53.009917940789435],[-127.98662175637007,53.00959590456378],[-127.98561452987936,53.00940269002085],[-127.98462729230575,53.00933748239049],[-127.98389464279805,53.00944509135655],[-127.98318814484752,53.00945305744352],[-127.98273852133715,53.00956262413371],[-127.98243158556141,53.00958851781554],[-127.98200950808926,53.00952835718411],[-127.98156260199933,53.00949607973399],[-127.98090345953362,53.00951836442259],[-127.98033995601553,53.009428622569786],[-127.97978183025383,53.009153842400856],[-127.97927178459805,53.00880874563109],[-127.9789947129601,53.00859369297619],[-127.97834252321398,53.0083036709044],[-127.9781129866892,53.00804634405264],[-127.9777941283274,53.00757529547711],[-127.97738615145155,53.007396062986366],[-127.97704890766113,53.00713157292464],[-127.97675398828207,53.00699415898843],[-127.97654710869084,53.0069023477645],[-127.97633918281318,53.00682848869269],[-127.97597709850791,53.006792517906284],[-127.97550825860353,53.00668940174782],[-127.9752690221495,53.006584679256385],[-127.97494411273662,53.0064645773629],[-127.97475186937224,53.00634618041457],[-127.97453228378254,53.00618171778094],[-127.97414922587078,53.00593535695657],[-127.97387345901055,53.00566703087326],[-127.97378838510372,53.005282853420525],[-127.97360644318115,53.004903660240636],[-127.97340568589372,53.004541595721406],[-127.97310859235121,53.0041553616257],[-127.97273858954634,53.00386786820493],[-127.97218171753795,53.00353697647831],[-127.9717923398302,53.00309343822051],[-127.97170221352205,53.002921756476866],[-127.97183222635005,53.00238377450923],[-127.97144599085007,53.001826402942854],[-127.97120300518398,53.001156783109856],[-127.9709577952534,53.00080162718149],[-127.97076347975127,53.00059750242299],[-127.97055839563126,53.00000010837264],[-127.97055385015916,52.99990209784459],[-127.9705660610549,52.99972254372226],[-127.97057172378743,52.99954254305313],[-127.97058866884578,52.999364586672606],[-127.9707411492538,52.999210155039506],[-127.97080018133944,52.99903373684426],[-127.97082445802579,52.99885285992141],[-127.97087888508337,52.99867764853106],[-127.97102745956254,52.998519909926614],[-127.97116858590834,52.99836230461506],[-127.97117998320252,52.99818556168256],[-127.97114636209308,52.99800397579354],[-127.97115701612597,52.99783117302482],[-127.97115743277398,52.99763892050473],[-127.97111138765793,52.997471549567216],[-127.97091833822626,52.99733466009346],[-127.97068681513474,52.99721355069113],[-127.9704465627714,52.997105473085355],[-127.9701858779324,52.99701959034394],[-127.96989946077801,52.99696272550051],[-127.96964169875362,52.99687959956842],[-127.96943486550954,52.99674742181671],[-127.969250944723,52.996605893423755],[-127.9690551663122,52.996470167524855],[-127.96882222863904,52.99635860169478],[-127.96854825363064,52.996288074566344],[-127.96828041241947,52.996209041832984],[-127.96802949762419,52.99611234686571],[-127.9677812597935,52.99601279985802],[-127.9675249064113,52.995919557451806],[-127.9672739693239,52.995822305303754],[-127.96704367508923,52.995707329119696],[-127.96683225124906,52.99557634448624],[-127.96667508990852,52.99542764005961],[-127.96658684027312,52.9952553669439],[-127.96654670414591,52.995073879523396],[-127.9665374966391,52.994895247856505],[-127.96655153666458,52.99471454241893],[-127.96658617382407,52.99453517023484],[-127.96663307318082,52.9943584002567],[-127.96668741887437,52.99418150599011],[-127.96674742709124,52.99400563812749],[-127.96681022544549,52.99382972364987],[-127.96687394851301,52.993653793680856],[-127.96694806696449,52.99344014316169],[-127.96695451346213,52.99325675736824],[-127.96702207746814,52.99310318194594],[-127.96694671449491,52.99290659811802],[-127.96694678026267,52.99272668156995],[-127.96697397890071,52.992547998094715],[-127.967036774164,52.992372083343746],[-127.96709394721701,52.99219570637818],[-127.96713049719841,52.992017422709665],[-127.9671979617651,52.991841429862184],[-127.96730977140321,52.991675906178536],[-127.96744514816187,52.99151559366547],[-127.96758905500636,52.991357945400644],[-127.96773390047017,52.99120027228924],[-127.96787683893865,52.991042074820484],[-127.96802641597458,52.990886008179395],[-127.96819032620029,52.99073699256934],[-127.96839329513864,52.99060525048985],[-127.96860773987326,52.990479486017605],[-127.96882987801757,52.99035864133329],[-127.96909872648169,52.99027904668861],[-127.96930837604062,52.9901707311095],[-127.96937100242477,52.98999145463723],[-127.96940844036591,52.98981259901133],[-127.96943278453332,52.98963284120974],[-127.96959214408751,52.98948669729671],[-127.96982186461781,52.98936852169794],[-127.97001253541025,52.98923362821438],[-127.97010438679735,52.989060588327455],[-127.97015303765104,52.98888210084767],[-127.97028284037152,52.98872244261837],[-127.97044563810086,52.988570070205206],[-127.97058387644563,52.988411391485016],[-127.97067866979768,52.988241664640874],[-127.97075925862444,52.98806769144369],[-127.97085402433267,52.987897399905],[-127.97097518693691,52.98773283647696],[-127.97112285007094,52.98757624123408],[-127.97128566658306,52.98742443207536],[-127.97146670125746,52.987282962399185],[-127.9717149470405,52.987182407907035],[-127.97192159250262,52.987050041505796],[-127.97205718613165,52.986894767832894],[-127.97207298697208,52.98671234507033],[-127.97207210637585,52.98653245229643],[-127.97210865680547,52.98635473100182],[-127.97215732234184,52.986176806925776],[-127.9721929208511,52.98599853652927],[-127.97222568826083,52.98581975748857],[-127.9722500295045,52.98564056344604],[-127.97226036411485,52.9854610388368],[-127.9722594823359,52.98528113696924],[-127.9722614059553,52.98510119709797],[-127.97227733539295,52.98492157878884],[-127.97231289164918,52.98474275291315],[-127.97238226596147,52.984568400758825],[-127.97246851396511,52.98439601696351],[-127.9725481889346,52.984222613186354],[-127.97261002381602,52.984046710077735],[-127.97265681965678,52.983868816769146],[-127.97267560382555,52.9836902713984],[-127.97265510521432,52.98351014171799],[-127.9726365128264,52.98333054506538],[-127.97264693218756,52.98309272933978],[-127.97254829101242,52.98299797892917],[-127.97228273304904,52.98290602231366],[-127.97201660006371,52.98282192138385],[-127.97175048305041,52.982737819599265],[-127.97149614362178,52.98264622952384],[-127.97126249119952,52.98253804356169],[-127.97105413239652,52.98241149887088],[-127.9708619726466,52.98227235244187],[-127.9706780058692,52.98212858489154],[-127.97049414418049,52.981987057203945],[-127.9703221794,52.98184029051942],[-127.97015476626122,52.98169119662163],[-127.96998738045836,52.98154266699397],[-127.96981447934031,52.981395915243056],[-127.96964160515766,52.98124971878635],[-127.96946870600911,52.98110295754177],[-127.96929673342511,52.98095618953269],[-127.96912664135591,52.98080938088598],[-127.96896104982058,52.980659142914774],[-127.96879732385159,52.98050886457808],[-127.96860049980396,52.98036923651464],[-127.96839167784945,52.98023260645407],[-127.9681655464083,52.98012484489893],[-127.96788359940747,52.98012170744113],[-127.96758090817968,52.98015423010047],[-127.96728406154647,52.98017207308497],[-127.96698833612697,52.98019382440599],[-127.9666881374414,52.98021957744808],[-127.96643151364685,52.98030008499432],[-127.96621049082488,52.9804237148926],[-127.9659855149623,52.98054292650852],[-127.96576145160232,52.980661557484204],[-127.96554412891642,52.98078456832296],[-127.96517444944169,52.98098297245423],[-127.96508820425002,52.980812905799084],[-127.96507429959163,52.98063323003897],[-127.9650818068271,52.9804526322121],[-127.96510900545111,52.98027394785741],[-127.96519717962752,52.98010209315346],[-127.96537443320003,52.97996013910506],[-127.96564040656246,52.979880033862436],[-127.96593052867742,52.97983820230515],[-127.96621851562672,52.97979024491736],[-127.96649727351796,52.979724496688995],[-127.96678913702253,52.97970001311759],[-127.96708778618809,52.97970118840352],[-127.96737076435943,52.97964602112236],[-127.9676404727487,52.97956641385012],[-127.96791606633727,52.97947270025647],[-127.96803817540376,52.97932885609319],[-127.9680343667989,52.97914564883815],[-127.96801454447001,52.97895933721947],[-127.96800435752442,52.97877959931281],[-127.9679913656992,52.9785998992689],[-127.96799330707749,52.9784199587482],[-127.96799977292365,52.97823713577506],[-127.96802215881125,52.97805572380856],[-127.96808705230276,52.97788537625326],[-127.96827181252495,52.97774441290431],[-127.96849651907245,52.97762016107175],[-127.9687460763583,52.977508379997204],[-127.96894073757043,52.97738013652356],[-127.96901987819538,52.97721515497719],[-127.96905633497046,52.97685416408788],[-127.9689829533574,52.976679956942185],[-127.96890400458335,52.97650640773729],[-127.96880288840086,52.976337712713175],[-127.96868882440945,52.97617147585744],[-127.96857383646136,52.97600525432777],[-127.96846624106044,52.97583778821822],[-127.9683632636051,52.97566912390283],[-127.96826212583817,52.975499872767166],[-127.96815915001066,52.97533120823924],[-127.96806541990384,52.97516070325765],[-127.96800963672801,52.974983403566945],[-127.96802096332028,52.97480498282237],[-127.96806684336939,52.974627105800124],[-127.96810894209254,52.97444817094979],[-127.96814081909326,52.974269971781766],[-127.96815103845245,52.97408764161144],[-127.96809444643846,52.97391316224475],[-127.96795197659742,52.97375804369832],[-127.96778365307514,52.97360840559489],[-127.967607935771,52.97346057665965],[-127.96743777584837,52.97331152473921],[-127.96726022218886,52.97316428196027],[-127.96714555889416,52.97300477926846],[-127.96717910681878,52.97282262453137],[-127.96725594101814,52.97264815857641],[-127.9672822376546,52.97247060866454],[-127.96726270697854,52.972290461143324],[-127.96726281241301,52.97211110665204],[-127.9673236857491,52.971934656206905],[-127.9674099286357,52.971762274807965],[-127.96749332940408,52.97158881086083],[-127.96757486549349,52.97141538693691],[-127.96761803214393,52.97123923196603],[-127.96758821325722,52.97105870019646],[-127.96751300938955,52.97088508719408],[-127.96740445455785,52.97071651495474],[-127.9672445011169,52.97056617129035],[-127.96707075506052,52.97041998555542],[-127.96692628126361,52.97026154526397],[-127.96680118408572,52.97009828849638],[-127.96673256961489,52.96992568591598],[-127.96671764402227,52.96974434024646],[-127.96671660489463,52.96956052080387],[-127.96671280285724,52.96937731243157],[-127.96667494368266,52.96920419628454],[-127.96646651922725,52.969074838011515],[-127.96635394222463,52.9690004922458],[-127.96635642730108,52.96893319338231],[-127.96645435290941,52.96875108470303],[-127.96650217517784,52.968574861138954],[-127.9663748765833,52.96842453609998],[-127.9661715466905,52.96828388271185],[-127.96598014740165,52.96813911099918],[-127.96587071784812,52.96797167284258],[-127.96582603522063,52.96779194448974],[-127.96601747592106,52.96751411495407],[-127.96623186305263,52.96738947315653],[-127.96638708533631,52.96723611774097],[-127.96638903256847,52.96705616705722],[-127.96632030617593,52.96688132398338],[-127.96624138645345,52.96670777197242],[-127.96615602802129,52.96653601329702],[-127.96607062926446,52.96636369026376],[-127.96599078688513,52.96619015346426],[-127.96592022503506,52.96601589674703],[-127.96586635306167,52.96583912848031],[-127.9658682875196,52.965659177902545],[-127.96591416670596,52.96548130073965],[-127.96594135226029,52.965302614585575],[-127.96594143756518,52.96512270377408],[-127.96593405101878,52.964942908686425],[-127.96592012187766,52.964762666784935],[-127.9658310921933,52.9645920899945],[-127.96574020988272,52.96442210004596],[-127.9657280422835,52.96423958676409],[-127.96568175895528,52.96406548953923],[-127.9655153309469,52.96391581646171],[-127.96533151339352,52.96377315907658],[-127.96514591043076,52.96363220815711],[-127.96496298307795,52.9634884144015],[-127.96483710345053,52.96332797527679],[-127.96479338071985,52.96314879513388],[-127.96481870544629,52.962970140083094],[-127.96485894225872,52.96279123623433],[-127.96489172261482,52.96261245674197],[-127.96489462659832,52.96243305468566],[-127.96487607577305,52.962253445574696],[-127.9648575106064,52.9620738456509],[-127.96483615664144,52.96189428326405],[-127.96480180708703,52.961716067584085],[-127.9647210648252,52.96154310067816],[-127.9646560713922,52.96136763804566],[-127.96459570488031,52.96119153322234],[-127.96453812735204,52.961015381836184],[-127.96448053913613,52.96083866562498],[-127.9644173968043,52.9606631719441],[-127.96433111802695,52.960491418028575],[-127.96429395720975,52.96031268402807],[-127.96422062404618,52.96013848114299],[-127.96414358931241,52.95996489593402],[-127.96406098914393,52.95979195947823],[-127.96397007243775,52.95962084757257],[-127.96386625364015,52.959452757627375],[-127.96374487604167,52.959288314289154],[-127.96360418019039,52.95912980670236],[-127.96344882181299,52.95897658324942],[-127.96328338660162,52.95882744646683],[-127.96311333756188,52.95867951629687],[-127.96279626960434,52.9583972699778],[-127.96264456716794,52.95824230759735],[-127.96249468871102,52.95808674966528],[-127.96234482626072,52.9579311912794],[-127.96219223902636,52.95777735506574],[-127.96203503799104,52.95762472545689],[-127.96185133658011,52.95748373777138],[-127.96162130547869,52.95736931263459],[-127.96138222559843,52.95726119857817],[-127.9611324695113,52.9571639064977],[-127.96087376820518,52.95707517454614],[-127.96061151021102,52.95698986413986],[-127.960347452219,52.9569062690531],[-127.96008428257898,52.95682152867199],[-127.95982560045107,52.95673279415194],[-127.95958839248195,52.95662464539584],[-127.95934571252499,52.95651882914247],[-127.95909939452318,52.95641531484872],[-127.9589388581217,52.95627058347003],[-127.95883027138504,52.956099761638725],[-127.95868132775189,52.95594361849612],[-127.95854162673022,52.955785644490376],[-127.95841844243844,52.95562179082895],[-127.95829985937378,52.95545673955932],[-127.95806654145187,52.95512881459503],[-127.95790754178527,52.95497676554698],[-127.95772468718359,52.95483352458144],[-127.95757676886842,52.95467904894462],[-127.9574609946712,52.95451395013967],[-127.95735530949085,52.954345320632],[-127.95725240212504,52.9541760798903],[-127.95715043527385,52.95400683239069],[-127.95705215565305,52.95383695855315],[-127.95695114033774,52.9536682510561],[-127.95684823621714,52.953499009891786],[-127.95674722251269,52.95333030218534],[-127.95665082459472,52.95316039672688],[-127.95656549118127,52.952988065412136],[-127.95650879421989,52.95280965340749],[-127.95638278398805,52.95262454625208],[-127.95629308761953,52.95247863432555],[-127.95614235389611,52.95232363869882],[-127.95598514320804,52.95216988040483],[-127.95583254812836,52.95201491530909],[-127.95568914345229,52.951856999452495],[-127.95555122753126,52.95169675034085],[-127.95541238832764,52.95153651640221],[-127.95526807354487,52.95137918011921],[-127.95511282496547,52.951227065062504],[-127.95493284970051,52.95108488404718],[-127.95464912341258,52.95097806299861],[-127.95436405117964,52.950902641629156],[-127.95412582566178,52.95083205590383],[-127.9539122751732,52.95073022927155],[-127.95367771265387,52.95061754127174],[-127.95345588731652,52.950497915722565],[-127.95325399601954,52.950365628490914],[-127.95307856844455,52.95022057136561],[-127.95290858886793,52.95007261673343],[-127.952723035814,52.94993053392627],[-127.95253932156508,52.94978785537663],[-127.95238317485484,52.949636307724624],[-127.95226748593151,52.949472323421354],[-127.95217476465713,52.94930067642003],[-127.95208386676697,52.94912843414401],[-127.95197639322961,52.94896038548249],[-127.95184131427669,52.948800650065046],[-127.95169607181742,52.94864275992977],[-127.95156190819176,52.94848244405668],[-127.95145073741683,52.94831502115931],[-127.95136445915256,52.948141580776706],[-127.95134774329645,52.94796026165901],[-127.95135184803519,52.94778532323289],[-127.95137903205486,52.947605518415806],[-127.95143315004167,52.94742358122253],[-127.95145311143223,52.947248944875845],[-127.95153578438635,52.947059252497645],[-127.9516842382211,52.946982243050655],[-127.95213080005131,52.94694065464936],[-127.95185068209811,52.94687075021306],[-127.951698481179,52.94672362901558],[-127.95158994786743,52.94655279952097],[-127.9514732798876,52.94638770958387],[-127.95131161085736,52.946237372967374],[-127.95113799338903,52.94609060601476],[-127.95096622511038,52.94594379920184],[-127.95079720947597,52.9457958345367],[-127.95062910823547,52.94564728951847],[-127.95046374430031,52.9454975779519],[-127.95030021893409,52.945347270734835],[-127.95013945672052,52.945196361527174],[-127.94998236029429,52.945043714423726],[-127.94983351369248,52.94488812358449],[-127.94968124989144,52.944719137565976],[-127.94954958537949,52.94457222954755],[-127.94937506716097,52.94442603097553],[-127.9491859775834,52.944287355198895],[-127.94899142802186,52.94415157641609],[-127.94880687837531,52.9440100269589],[-127.94862325411366,52.94386846190344],[-127.94841801647905,52.94374351276766],[-127.9482948547303,52.94357852720552],[-127.94812950704498,52.94342881217261],[-127.94794387050415,52.94328391648892],[-127.9477564233148,52.94314017144358],[-127.94758281542627,52.94299339025871],[-127.94743872726737,52.942839403672394],[-127.94733890535579,52.94267515198948],[-127.94727131232291,52.94250195539092],[-127.9472286493986,52.9423233065178],[-127.9472007491478,52.94214161549986],[-127.94718121487291,52.94195922111403],[-127.94716080791221,52.94177796210854],[-127.94714980434735,52.94159878947897],[-127.94716207142031,52.94141866695343],[-127.9471846445953,52.94123950386746],[-127.94721373056224,52.9410602240572],[-127.94725032031674,52.94088195002615],[-127.94728502084638,52.94070314224341],[-127.94730944088452,52.940523939521846],[-127.94733201296464,52.94034477630992],[-127.94734979139417,52.94016288546848],[-127.9474155313936,52.939990289873606],[-127.94757538619909,52.939836870562324],[-127.94772679786873,52.939682478702146],[-127.94776435921479,52.9395053002307],[-127.94775230166344,52.93932334687975],[-127.94770410213404,52.939145910432245],[-127.94757649655345,52.93898548132506],[-127.94742673004788,52.938829337617236],[-127.94727692431306,52.9386726383707],[-127.94714923415549,52.93850996826602],[-127.94704275678183,52.938342463271894],[-127.94694362963725,52.93817259466724],[-127.94684080318227,52.93800335212694],[-127.94673890116198,52.93783408523646],[-127.94664441582586,52.93766358359719],[-127.94656474282267,52.93749115098636],[-127.9464989216345,52.93731568234527],[-127.94644052728614,52.93713953484502],[-127.94638674693901,52.936962190039104],[-127.94633761686812,52.93678476830212],[-127.94628941120726,52.93660733124703],[-127.94623555552451,52.93642831061092],[-127.94619005002342,52.936248586903865],[-127.94617353996655,52.93607118168784],[-127.94622436492466,52.93589827691156],[-127.94635374771308,52.93573135489892],[-127.94648039388434,52.93556559893662],[-127.94661446465017,52.93539915504509],[-127.94679181390711,52.935261705356346],[-127.94703841297037,52.935171311599134],[-127.94732448797308,52.93510828847306],[-127.94760859676818,52.935043055227865],[-127.9478937206701,52.934979490421455],[-127.94812645554474,52.9348713882037],[-127.94825979884745,52.9347094381527],[-127.94822556606529,52.93453177028117],[-127.94810235500752,52.934365107886144],[-127.94790231712332,52.934230539101684],[-127.94772514784998,52.93408662377571],[-127.9476159438088,52.933920285086806],[-127.94752231049142,52.933748083789105],[-127.9474102806709,52.93358122669036],[-127.94729641479624,52.93341496482999],[-127.94718161098173,52.93324871837465],[-127.94706498604462,52.933083066902476],[-127.94694558586733,52.93291801722396],[-127.9468216248059,52.93275528481065],[-127.94669122924313,52.93259433566918],[-127.94653141556495,52.932442284708316],[-127.9463386888677,52.932304229503195],[-127.94611695417797,52.932184033214135],[-127.94588888776556,52.932067860125436],[-127.94571637269009,52.931923299926375],[-127.94558494305574,52.93176013370702],[-127.94548669883974,52.93158856300301],[-127.94540588780997,52.93141110815158],[-127.9452958374998,52.93124645826558],[-127.94512259416429,52.931106402108384],[-127.94490532808896,52.930981636894906],[-127.94466349878954,52.93087017283938],[-127.94441108355925,52.93077177886719],[-127.94414739888826,52.93069206209687],[-127.94386669260874,52.93062719853884],[-127.94358425221725,52.93056516090857],[-127.94331344158763,52.93049228582386],[-127.94308649494359,52.9303800168591],[-127.94288731323805,52.93024318371566],[-127.94261148035439,52.93018272066264],[-127.94231894247389,52.930144387150015],[-127.94202217884406,52.93015657536371],[-127.94172365018964,52.93019120241928],[-127.9414419016381,52.93016446341523],[-127.94125285056741,52.930024662524865],[-127.94114708603956,52.929851535444946],[-127.94101230183834,52.92969570147313],[-127.94074117978784,52.92961609990062],[-127.94045986835208,52.929557964189385],[-127.94017333774082,52.92950831666451],[-127.93988596073378,52.929460368344614],[-127.9395936601787,52.92942707310874],[-127.93928401006988,52.929422087336036],[-127.93898339255169,52.929410791071525],[-127.9387396993133,52.92933970081871],[-127.93858319225806,52.92917749621994],[-127.93846005974788,52.92901137877385],[-127.93836190160083,52.928840921967044],[-127.93827563981651,52.92866579422025],[-127.93821043321063,52.92848246386298],[-127.93801889918207,52.92836960214559],[-127.9377238271235,52.928316170545905],[-127.93744837702037,52.92824335866115],[-127.93724105338529,52.92811113417761],[-127.9370996860078,52.9279537183148],[-127.93698130325348,52.92778920710833],[-127.93687300449042,52.92762115792964],[-127.93676654381242,52.927452522395164],[-127.9366582471612,52.927284481945215],[-127.93655819753627,52.92711349876434],[-127.93644535530946,52.92694776589055],[-127.93627567972783,52.92680315451618],[-127.93605206299507,52.926681284829804],[-127.9358204814078,52.92656851352933],[-127.93558436456482,52.9264586143283],[-127.93535095899463,52.926346993102186],[-127.93512843875503,52.92622846659222],[-127.93491036476527,52.92610538267806],[-127.93468780686308,52.92598629997577],[-127.93443738224124,52.925889529425774],[-127.9341896580698,52.92579047202627],[-127.93395354975112,52.925680569501395],[-127.93372913431571,52.925561515563764],[-127.9335436755692,52.9254177157338],[-127.9334004431526,52.925259770183075],[-127.93339434310138,52.92508443383445],[-127.93342337475079,52.92490292435094],[-127.9333188986754,52.92473649508948],[-127.9331525748332,52.92458284752346],[-127.93292910606398,52.924463776559975],[-127.9326857370488,52.92435791873019],[-127.93260736360939,52.92419161612851],[-127.93260994330907,52.92400212945544],[-127.93258977028077,52.92382479114219],[-127.93238617387088,52.92371210966821],[-127.93211097462539,52.92362358799503],[-127.93185038515756,52.92352810000191],[-127.93158613372746,52.92343435750034],[-127.93132723980486,52.92331473515701],[-127.93114148669987,52.92320513060508],[-127.93099576386257,52.923053383917505],[-127.93087464259513,52.92288946762873],[-127.93076720289706,52.92271916585355],[-127.9306634271513,52.922547117916274],[-127.93055325356416,52.9223779728003],[-127.93043670819668,52.9222123039998],[-127.93035710325643,52.92201856074718],[-127.93025345764794,52.92184930824254],[-127.93006708822679,52.92170551800417],[-127.92982459677842,52.921515567102205],[-127.92969370798154,52.921403374538215],[-127.92953248035539,52.92127934865536],[-127.92947040380143,52.92112287441757],[-127.92945855634555,52.920943713021025],[-127.92946517891605,52.92076088580762],[-127.92944865790678,52.92058123604086],[-127.92942281150874,52.92040174814194],[-127.92940631640371,52.92022266288062],[-127.92939536752911,52.9200429216811],[-127.92938629623431,52.91986315864123],[-127.9293827962405,52.91968329525531],[-127.92936720003836,52.91950363917305],[-127.92935535346717,52.919324477587544],[-127.92936865350218,52.91914490362516],[-127.92939311139519,52.9189651466676],[-127.9294278942263,52.91878689734242],[-127.92947856348256,52.91860951739849],[-127.92955456616893,52.91843619686946],[-127.92965495361335,52.91826640422634],[-127.92973470477096,52.9180935870148],[-127.92979283060482,52.917916640527146],[-127.92988293104705,52.9177458953553],[-127.9300087764977,52.917582975518606],[-127.93014310893587,52.917422149265825],[-127.9302878671429,52.917265079673506],[-127.93043921044047,52.917109587769495],[-127.93058961375044,52.9169541020948],[-127.93071458137813,52.9167923167222],[-127.93080646138567,52.91661985547256],[-127.93085998391987,52.91644410471493],[-127.9308583404147,52.916264219395586],[-127.93089589018439,52.91608536778719],[-127.93093625040262,52.91590702601912],[-127.93096541307374,52.9157283119952],[-127.93095445918074,52.915548579404245],[-127.93092952232831,52.915368511324644],[-127.9309605210335,52.91518920212924],[-127.93102878449068,52.915009846216634],[-127.93115394796777,52.91485254075964],[-127.93138926328734,52.914741063894915],[-127.93161687547331,52.914624108119135],[-127.93176348068044,52.91446700586908],[-127.93187892315267,52.91430088234412],[-127.93197926637272,52.914130531694084],[-127.93208244465049,52.91396124637727],[-127.93221119770377,52.913801073694586],[-127.93240054763685,52.91366232506448],[-127.93259083473596,52.9135235607019],[-127.93276547344597,52.91336880337279],[-127.93291939032797,52.913208772359525],[-127.93297718298803,52.91304528067371],[-127.93289592767509,52.91287679178983],[-127.93271851818562,52.912642058843346],[-127.93245129476149,52.912563496309325],[-127.93219202587694,52.91247526971425],[-127.9319434213682,52.912375666589796],[-127.93171195365142,52.912263441805266],[-127.93150125598355,52.912136867786884],[-127.93129596746726,52.91200628565141],[-127.93107981360457,52.9118825984425],[-127.93085282039173,52.911766379616765],[-127.93062220634586,52.911652461749654],[-127.93039340457099,52.911537392723666],[-127.93017184818599,52.91141772046205],[-127.92996022092728,52.91129115901478],[-127.92975406852217,52.91116170941867],[-127.92955147338785,52.9110288292141],[-127.92935711317257,52.91089245963455],[-127.92917098703305,52.9107525827976],[-127.92899489188737,52.910608066229976],[-127.92882701584547,52.91046004272863],[-127.92866551280233,52.91030856053116],[-127.92851043264828,52.910154721888816],[-127.92836082293337,52.90999856037502],[-127.9282167633208,52.90984117774794],[-127.92807730136228,52.9096826075743],[-127.92794424722446,52.90952168128483],[-127.92781945272901,52.9093578215119],[-127.92770389192708,52.90919213329757],[-127.92759845191725,52.909023472181424],[-127.92750133226062,52.90885355364582],[-127.92740319883146,52.90868196568138],[-127.92730781588168,52.908509220550535],[-127.92722260415552,52.90833462273389],[-127.92715502088946,52.90815861504814],[-127.92711350150654,52.907982180299456],[-127.92710269238324,52.90780524238629],[-127.92710862754987,52.90762746514949],[-127.92712665630374,52.90744949872161],[-127.92715489090405,52.90727080008094],[-127.92718964840867,52.907091994535755],[-127.92723092873527,52.90691308208002],[-127.92727405543357,52.90673413933096],[-127.92731903271556,52.90655460124206],[-127.92736213353565,52.906375102825834],[-127.92740247420281,52.90619620560477],[-127.92743630644772,52.906017414998274],[-127.92747012351606,52.905838624606325],[-127.92750487852888,52.905659818809376],[-127.92753496125263,52.90548052457207],[-127.92755385994512,52.90530142255832],[-127.92755969148075,52.905121404718685],[-127.92755059066553,52.90494107556839],[-127.9275229402683,52.90476217137823],[-127.9274591607111,52.90458778717321],[-127.92734723547923,52.90441978784026],[-127.92723533667797,52.90425235294042],[-127.92712706037372,52.904082616608775],[-127.92700962954216,52.90391639311499],[-127.92687026729081,52.9037594966786],[-127.92668887780626,52.903620668292625],[-127.92646362452444,52.903500484892746],[-127.92622753322925,52.903387769454746],[-127.92598892235713,52.90328126471029],[-127.92574129865473,52.903181067994616],[-127.92548921760984,52.903085427679166],[-127.92522204194655,52.90300628370537],[-127.92495225995383,52.90293110972145],[-127.92468155563715,52.902855950224605],[-127.92441172493619,52.90277965483901],[-127.92414189520174,52.90270335883081],[-127.92387920857188,52.90262021946887],[-127.92365499336789,52.9025022647863],[-127.92356070388551,52.90233229652115],[-127.92342039586958,52.90217484662935],[-127.92324705408306,52.902028034594714],[-127.923065531641,52.90188583104268],[-127.92288028802253,52.90174369702673],[-127.92266428671877,52.90162167828906],[-127.92241933851486,52.901518624081376],[-127.92215839775466,52.90143265447741],[-127.92188241213219,52.90136430092288],[-127.92160470705261,52.90129877280135],[-127.92134109590246,52.901215643027825],[-127.92112686200254,52.901091350702345],[-127.92104176643241,52.90091843232493],[-127.92102899645616,52.90073871860858],[-127.92104227526276,52.90055802336704],[-127.92104538513831,52.90037918016969],[-127.92095940332683,52.90020738817756],[-127.92084848937215,52.90004049624585],[-127.92082152489978,52.90000001626921],[-127.92073665266946,52.8998736103093],[-127.92059549089251,52.89971730100667],[-127.92037662088688,52.89959308307156],[-127.92019159780088,52.89945541629543],[-127.92007050965107,52.89928981074136],[-127.92001038996587,52.89911311184775],[-127.91994211500867,52.89894159496858],[-127.91978720911038,52.89878999302736],[-127.91961568910183,52.89864201607037],[-127.9194395754696,52.89849524379817],[-127.91926628740659,52.89834898116219],[-127.9190875028474,52.8982050499434],[-127.91890965756033,52.898061103133124],[-127.91874185586023,52.89791250825015],[-127.91860249323983,52.89775448127477],[-127.91850633288549,52.89758397450543],[-127.91838614420588,52.89741723155965],[-127.91824678452487,52.897259204114214],[-127.91805892877402,52.89712045928417],[-127.91783097527752,52.897000868847236],[-127.91755596794896,52.896973966008844],[-127.91740736621259,52.89690016214535],[-127.917333493003,52.89662448345529],[-127.91734703326112,52.89647013176749],[-127.91736408420853,52.896290496175155],[-127.91734002783441,52.896107602888804],[-127.91719289870302,52.89596315270117],[-127.91694156552194,52.89586187753258],[-127.91668944672946,52.89576397760015],[-127.91644278671345,52.89566319019719],[-127.91634408244548,52.8954977720327],[-127.91649190365108,52.89534739289078],[-127.91669648949764,52.895216822033895],[-127.91678575722871,52.895048340110165],[-127.91684911614364,52.894842166926615],[-127.91669603195663,52.8946894102685],[-127.91654839541843,52.89453319269884],[-127.91637682840613,52.894383534861404],[-127.91629755028784,52.894215001997324],[-127.91628194279478,52.89403365662373],[-127.91624596459144,52.893854885177056],[-127.91615515368412,52.8936786842598],[-127.9159867431726,52.893536821317994],[-127.91573997157239,52.89343322740733],[-127.91547185113599,52.89335184448478],[-127.9151934212574,52.89328967667841],[-127.91491052349684,52.893231508920266],[-127.91463286765942,52.8931659732128],[-127.91435951991176,52.893092510853016],[-127.91415651333486,52.89296802341136],[-127.9141196722184,52.89279038638896],[-127.91409760388999,52.89261026688584],[-127.91407738666817,52.89242956121879],[-127.91404603872864,52.89225014874097],[-127.9139925505256,52.89207502457922],[-127.91388805490249,52.89190465859159],[-127.9137348658818,52.89174909290075],[-127.91354165742418,52.89161435607315],[-127.91331192052684,52.89149590716483],[-127.91306263477664,52.89139795364735],[-127.9127885896878,52.891329548053044],[-127.91250648039043,52.89126799892062],[-127.91224748294366,52.89118196755366],[-127.91201243542041,52.8910692074728],[-127.9117818582933,52.89095245527915],[-127.9115371738565,52.89085330280138],[-127.91126553151817,52.890775886779146],[-127.91097670642537,52.890709959275036],[-127.91068429238365,52.89066763010147],[-127.91040103046603,52.89066326502448],[-127.91013202272656,52.89072760383459],[-127.90986442066375,52.890823315743205],[-127.90958829394451,52.8908950597989],[-127.90930073372787,52.890940085208285],[-127.90900707325613,52.890973999097476],[-127.90875409159256,52.89100108197324],[-127.90841680090652,52.89101721089115],[-127.90812041493916,52.89103154506747],[-127.907822990932,52.89104366233577],[-127.90752556635447,52.89105576989032],[-127.907229140058,52.89106954645716],[-127.90693382717777,52.89108723214397],[-127.90663972749873,52.891111058339646],[-127.90635204757068,52.891153836432416],[-127.90606977864982,52.89121334084773],[-127.9057854222907,52.891267829495455],[-127.90549435522325,52.89129720855586],[-127.90519761605901,52.891303703125836],[-127.90482247628454,52.89130641818409],[-127.90453291321347,52.891265148560436],[-127.90424414835886,52.891221058363364],[-127.9039640884908,52.891163383679725],[-127.9036865126225,52.891098933257595],[-127.90341068850394,52.891031655860324],[-127.90313573824166,52.89096324270073],[-127.90286078886223,52.89089482889536],[-127.90258497769422,52.890828114361156],[-127.90230737096448,52.89076254025656],[-127.90203071331551,52.89069751512971],[-127.90175309380216,52.89063194891364],[-127.9014773257556,52.89056578713604],[-127.9009505672056,52.89042577021223],[-127.90067460183808,52.89035512584805],[-127.9004183430009,52.890267347598915],[-127.90018795186825,52.89015393314054],[-127.89997105138059,52.89002964642847],[-127.89976324194633,52.88990072850787],[-127.89957817770761,52.88975966795914],[-127.89941321005217,52.889609879587205],[-127.89925915913102,52.88945430973303],[-127.89910515926748,52.889299859837436],[-127.89893748629521,52.88915180046561],[-127.89874712024674,52.88901699415554],[-127.89852116018444,52.88889845606114],[-127.89827445790968,52.88879482520853],[-127.89801812847884,52.888704801051055],[-127.89774045307765,52.88863754053602],[-127.89745833345339,52.888574835028344],[-127.89719860943073,52.888492145803575],[-127.89696734848131,52.888379860221264],[-127.8967576603701,52.88824984646372],[-127.89656167292237,52.88811400642457],[-127.89637843799456,52.88797179048852],[-127.89620247322776,52.88782553806587],[-127.89602557182495,52.88767930049105],[-127.89584330351789,52.88753763312769],[-127.89564744705876,52.88740459643068],[-127.89541904415319,52.88729337381967],[-127.89515630926203,52.887205688814795],[-127.89489183942268,52.88712083813702],[-127.89462655713822,52.88703879793996],[-127.89435859177267,52.886959042352544],[-127.89409963245753,52.886872415182374],[-127.89385672398133,52.88676983515352],[-127.89362813000825,52.88665412830181],[-127.89340494550602,52.886534414946134],[-127.89317359542896,52.88641931659603],[-127.89294125901965,52.886303112702315],[-127.89273269070027,52.8861770018509],[-127.89257622633714,52.88602930922818],[-127.89247827630223,52.88585713387068],[-127.89239787184421,52.88568186906055],[-127.89232958028661,52.88550697418913],[-127.89226775943851,52.88533085413441],[-127.89219387710764,52.88515549314509],[-127.89212159206642,52.88497449251363],[-127.89202012390106,52.88480685728187],[-127.89182846089692,52.88468383574126],[-127.89153865975537,52.88461507016746],[-127.89125095107825,52.884572617789615],[-127.89095628766354,52.884540930395026],[-127.89067535150639,52.884483229949666],[-127.8903995907476,52.884415921760564],[-127.89012289308732,52.88434862799938],[-127.88984198436656,52.88429149012821],[-127.88954196531525,52.884264925259856],[-127.8892500391713,52.88423206866034],[-127.889007480017,52.88413675515597],[-127.88880114622575,52.883997705842944],[-127.88857114242673,52.8838915448969],[-127.88827906596234,52.883876059072094],[-127.88797372234126,52.88387647933019],[-127.88769827766134,52.883816450696465],[-127.88743473144635,52.883730438864575],[-127.88715216859838,52.8836357728505],[-127.88697813862537,52.883490031973025],[-127.88678492840303,52.88335245452246],[-127.88656463808663,52.88323435905959],[-127.88630911633379,52.88314037809132],[-127.8860563690695,52.88304578709246],[-127.88580182160564,52.882952901428325],[-127.8855499748494,52.88285773891359],[-127.88530256491619,52.882757455818606],[-127.88505695229631,52.882656022413826],[-127.88481404006717,52.8825523032502],[-127.88457561431626,52.88244458375585],[-127.88434441943983,52.882332272927556],[-127.8841231442174,52.8822125118089],[-127.88391092544211,52.88208700024339],[-127.88370321820106,52.88195805306906],[-127.88349822113753,52.88182737615864],[-127.8832914146865,52.88169785783679],[-127.88309825871146,52.88156138563891],[-127.88292968458174,52.88141219756499],[-127.88273754320491,52.88127739449259],[-127.88248831308105,52.88117769078914],[-127.88226787292554,52.881055670937755],[-127.88206198672222,52.88092557080109],[-127.88193108156386,52.88076512441822],[-127.88176015162645,52.88062549627714],[-127.8815081543381,52.88052639982486],[-127.8812306326544,52.88046078474909],[-127.88093468200704,52.88048345640591],[-127.88072115667576,52.8805810352448],[-127.88067796951842,52.88076276003449],[-127.88068048279263,52.88103063406808],[-127.88081602793802,52.88119100751454],[-127.88091106280568,52.88136156182005],[-127.88094590997467,52.881539240025454],[-127.88094826431437,52.881719115111146],[-127.88094970587329,52.88189956975584],[-127.88096986689702,52.8820819668107],[-127.88096753796138,52.882261360767906],[-127.88090355289256,52.88243558033466],[-127.88079861902924,52.882610446031435],[-127.88064910268355,52.88276641219503],[-127.8804449590238,52.88288682465713],[-127.88019217458083,52.88298110225812],[-127.87992036302174,52.883066159737915],[-127.87965998604501,52.88315720359901],[-127.87941109262707,52.883255345142985],[-127.87916998637257,52.883361208501015],[-127.8789424217859,52.88347862068076],[-127.8787785876409,52.883626966224526],[-127.87865651649822,52.88379314472415],[-127.87859344217078,52.88396733915719],[-127.87858097572119,52.884149136644375],[-127.87850847395704,52.88432068366954],[-127.87836936702202,52.884480964110615],[-127.87828386395913,52.884653283643445],[-127.87816283409477,52.884822242766376],[-127.8779082958036,52.88489805147676],[-127.87761633024577,52.884948674939906],[-127.87736065498771,52.88504131522709],[-127.87710422823572,52.88513788586506],[-127.87685556408147,52.88524162281609],[-127.87662505183341,52.88535572321128],[-127.87642398849857,52.88548336080151],[-127.87626755592169,52.88563101929031],[-127.87614353432963,52.885795539907114],[-127.87603093280525,52.88596604797044],[-127.87590698310653,52.88613224410366],[-127.8757526292276,52.8862849174807],[-127.87557936119136,52.88643061052254],[-127.87539565268625,52.886571976958315],[-127.87520532460304,52.88671121567895],[-127.8750111651642,52.88684770824603],[-127.87481415656842,52.88698312492241],[-127.87459625888366,52.88710934155552],[-127.87436288256632,52.88722236181931],[-127.87435538816979,52.88739062724295],[-127.87443138231231,52.8875732552194],[-127.87448566458195,52.887748938497694],[-127.87436902397236,52.887912218165475],[-127.87416315930277,52.88803712998441],[-127.87387609809787,52.88809382633198],[-127.87359970703515,52.8881604496427],[-127.87331919900222,52.88821816114234],[-127.87302418731868,52.88824248283294],[-127.8727284485975,52.88822925832565],[-127.8724311102575,52.888221663410356],[-127.8721322652677,52.88822249453744],[-127.87183566530229,52.88823170093033],[-127.87154462040104,52.88826156059498],[-127.87126435491881,52.88832486812826],[-127.87097571094445,52.8883670188323],[-127.87067692561514,52.888390264708036],[-127.87038102254013,52.88841571487564],[-127.87009725771865,52.88846282566049],[-127.86982949496303,52.888535463572836],[-127.86956588552731,52.888617558575504],[-127.86930723945751,52.88870686484142],[-127.86905159750002,52.88880117160747],[-127.86879790367827,52.88889712379949],[-127.86854513170942,52.88899306076977],[-127.86829908510236,52.88909393018133],[-127.86806558298264,52.88920469743031],[-127.86782924625052,52.88931437928396],[-127.86758810169457,52.889420783066576],[-127.86730318776219,52.8894847197044],[-127.86701997675483,52.88954470072144],[-127.86683477333717,52.889674310899984],[-127.86670727622007,52.88984560137403],[-127.86664883842832,52.89002084414447],[-127.86679497739873,52.890338555758625],[-127.86649852408235,52.89033037558491],[-127.86619668395076,52.89032675506775],[-127.8659158261255,52.890291978678164],[-127.86568288992753,52.89018190138521],[-127.86546860393892,52.89005134136061],[-127.86528460032599,52.889910776806644],[-127.86513168458556,52.88975683218043],[-127.86499247373298,52.889597056165364],[-127.86484775497004,52.88943905328208],[-127.86470214841867,52.889282185269906],[-127.86455288507815,52.88912649603809],[-127.86439355231282,52.888974894163624],[-127.86423417127334,52.88882216290685],[-127.86407204203607,52.88867060494487],[-127.86390171885117,52.888523095567464],[-127.86371868918073,52.88838306917594],[-127.86341461585701,52.88826402643481],[-127.86320186508034,52.88816818805331],[-127.86298088904557,52.88809714988666],[-127.86271121358607,52.888062188878266],[-127.86240789644731,52.88806699403166],[-127.86212504086454,52.888092772705484],[-127.86180869824278,52.88805518585726],[-127.86152888776878,52.88800132620943],[-127.86125914175965,52.887922080332956],[-127.86099023714637,52.887840587565236],[-127.86071801265751,52.88776867047172],[-127.8604448903791,52.88769732296575],[-127.86017442136287,52.88762257892443],[-127.85988820203114,52.88754976040151],[-127.85969671686568,52.8874289181364],[-127.85963012417083,52.88724725388919],[-127.85947461068359,52.887097262116],[-127.85928423785269,52.88698032947091],[-127.8590622234466,52.88688519523924],[-127.85876319998174,52.886796326985994],[-127.85847842984191,52.88675654624248],[-127.85818337528637,52.886737113731826],[-127.85788489211551,52.88672445149754],[-127.85758720083327,52.886708422065055],[-127.8572919024732,52.88668337738187],[-127.8569965560279,52.88665722072337],[-127.85670198605754,52.88662767919974],[-127.85641264786558,52.886589651572294],[-127.85612920567141,52.886537522565476],[-127.85585516113495,52.8864661791514],[-127.85558715020026,52.8863835391899],[-127.85531911572066,52.886300334034615],[-127.85504873752272,52.88622725395259],[-127.8547708813097,52.88617502461635],[-127.85447580789818,52.88615501821715],[-127.85417362133822,52.88616426836487],[-127.85387602421328,52.886193066738706],[-127.8535921923347,52.88623901779929],[-127.85331285132281,52.886302267841664],[-127.853038641548,52.88637665494315],[-127.85276919690097,52.8864537642192],[-127.85250264730321,52.88653306917026],[-127.85223901688381,52.88661512543329],[-127.85197640617206,52.88669941591805],[-127.85171476566948,52.886784802510796],[-127.85145316353825,52.88687075286164],[-127.85119152132475,52.88695614724256],[-127.85093091284678,52.88704375770477],[-127.85067419540985,52.8871352341731],[-127.85041556740717,52.88722561916581],[-127.85015287616666,52.88730822076946],[-127.84988125853057,52.8873780756305],[-127.84959185610583,52.88742466045575],[-127.84929690912813,52.88745059844943],[-127.84899903146687,52.88745192061763],[-127.84870375750158,52.88742741895976],[-127.84845936185474,52.88733094004238],[-127.84829460742064,52.887181635393695],[-127.84814075192453,52.88702599838241],[-127.84798322453993,52.88687153985101],[-127.84780752760341,52.8867274553445],[-127.84760273932586,52.88659952123613],[-127.8473742722854,52.88648373344437],[-127.84713307203253,52.88637486208294],[-127.84688916232409,52.88626771872972],[-127.84665163790922,52.886157676665015],[-127.84642958357571,52.88603953546442],[-127.84623396091577,52.885908092196104],[-127.846054600895,52.88576518362619],[-127.84588884133746,52.88561365851442],[-127.84573492730526,52.88545633342172],[-127.84559476876011,52.88529431730565],[-127.84546847673714,52.885129832458695],[-127.84535800962185,52.884965108042785],[-127.845332635636,52.88478782927879],[-127.84533724242954,52.88461457271434],[-127.84534412319341,52.88442950584196],[-127.84539039346518,52.8842511024182],[-127.8454385729327,52.88407379891085],[-127.84543639239463,52.88389447902182],[-127.84542387375377,52.88371307947238],[-127.84539467272181,52.88353306274201],[-127.84534141417242,52.88335678651897],[-127.84525579634723,52.88318550204956],[-127.84514523769084,52.883018527867115],[-127.84501890603057,52.88285293106232],[-127.84488890222666,52.88268850374587],[-127.8447672166272,52.882522833753335],[-127.84466502688132,52.88235572777546],[-127.844594323001,52.88218477372732],[-127.84457643552815,52.88200794205948],[-127.84459748410904,52.88182769251729],[-127.84463335944022,52.88164553332637],[-127.84466066050697,52.88145902478952],[-127.84493635429126,52.88152700493655],[-127.84521631937636,52.88158594071565],[-127.84550838784425,52.88162339645787],[-127.84580707383797,52.881641682201064],[-127.84603586730732,52.88161511418749],[-127.84626517077129,52.881450094013786],[-127.84647157134518,52.88131513420478],[-127.84669467615197,52.881200653935274],[-127.84689691613265,52.881076977306165],[-127.84704421286577,52.88093173533096],[-127.8471869619907,52.88081011386112],[-127.84742594782233,52.88065390678451],[-127.84763838404031,52.88052950355106],[-127.84783062029756,52.88041157827436],[-127.84802486192875,52.880275694628146],[-127.84822293499695,52.88014198335479],[-127.8484506390609,52.88002630621698],[-127.8486831314743,52.879913916206384],[-127.84889742082439,52.87978948138043],[-127.84909548928479,52.87965577755798],[-127.84929160802845,52.87952041810893],[-127.84949704276737,52.87938491172284],[-127.84968245791362,52.879260364686345],[-127.84987290922406,52.87912285142081],[-127.85006304018901,52.879021213854394],[-127.85031462863718,52.87891972952507],[-127.85056395287013,52.87883061093743],[-127.8506455925871,52.87865277747376],[-127.85085610034959,52.87852727735851],[-127.85113849510815,52.878492564245185],[-127.8514415039545,52.87850348550703],[-127.85160003000578,52.8785099562085],[-127.8517085054051,52.87847853723237],[-127.85182950061014,52.87830680865227],[-127.8518701317024,52.87812793430436],[-127.85187908685437,52.877948438004466],[-127.85193090393747,52.87776994335174],[-127.85205999482477,52.8776132154776],[-127.85226508273189,52.877491725891154],[-127.8525471410355,52.87742786930749],[-127.85283974213057,52.877392426117034],[-127.85313926086627,52.87736640586519],[-127.85343690957535,52.87733985832983],[-127.85372472932009,52.877301690363616],[-127.8539956706651,52.877239126538825],[-127.8542383481654,52.87712599925427],[-127.85442858026471,52.876983997613834],[-127.85450694250514,52.87681685741265],[-127.85450165831942,52.87663142438801],[-127.85447088004065,52.876330368462085],[-127.85473337318848,52.87624495165647],[-127.8550063129401,52.87618571671511],[-127.85530757152112,52.87613556687408],[-127.85555947422297,52.876085065499296],[-127.85586243159842,52.87600966101309],[-127.8561072153429,52.875923964668615],[-127.85639811381766,52.87589246715728],[-127.85669234078438,52.875915844045316],[-127.85696134320109,52.87597997377816],[-127.85721958955581,52.87607510412464],[-127.85743005897469,52.87620573015609],[-127.85766545167344,52.876310188487736],[-127.85794892541364,52.876364554529026],[-127.85824533450486,52.87639518390914],[-127.85854133793438,52.87641684220293],[-127.85883948020117,52.87642333726422],[-127.85913282680609,52.87640524599215],[-127.8594232375804,52.876362538991884],[-127.85971071807107,52.87631651470391],[-127.85999718719627,52.87626882872824],[-127.86028360639207,52.87622001289056],[-127.86057104585322,52.876173431110615],[-127.8608596664586,52.87613242582453],[-127.86115031824383,52.87609531555466],[-127.86144198071035,52.87605987449807],[-127.86173360314604,52.87602386837189],[-127.86202320816155,52.8759839655748],[-127.8623117039072,52.875940160698896],[-127.86259913926494,52.87589357395219],[-127.86288357043466,52.87584198522932],[-127.86316494835454,52.87578427435161],[-127.86344795071864,52.875721497121354],[-127.86371150706933,52.87563941493462],[-127.86394891174704,52.875534197387154],[-127.86418421036157,52.87542341682092],[-127.86441559077484,52.875308205033306],[-127.86464214045994,52.875189150462994],[-127.86486012902932,52.87506574735265],[-127.86506958119755,52.874938560329504],[-127.86524054575139,52.87480412789059],[-127.86538925103346,52.874650435825835],[-127.86559003271948,52.87449536093943],[-127.86568501502703,52.87432626249757],[-127.86571745089189,52.874153116920695],[-127.8657003037662,52.87397403253668],[-127.86566252297577,52.87379135672836],[-127.86562755558649,52.873587893639204],[-127.86547264044346,52.87342948764743],[-127.86524191228003,52.87332553565333],[-127.86497599732125,52.87324680311125],[-127.86469836732266,52.87317666767486],[-127.86442255884594,52.873105937724944],[-127.86414771311891,52.87303574787448],[-127.86386745940594,52.87296957106658],[-127.86359174219568,52.872900523705816],[-127.8633277174019,52.87282231353827],[-127.86311776058207,52.87270345543089],[-127.8629510046821,52.87255084779479],[-127.86277065834648,52.87240685818801],[-127.86259399945997,52.872261688892394],[-127.86241640426336,52.872116534174666],[-127.8622369744131,52.871971964270934],[-127.86205484640902,52.87182968777386],[-127.86186638768889,52.87169143023634],[-127.86167068541978,52.87155777106233],[-127.86146404364028,52.87142932476289],[-127.86124083351565,52.87130506841598],[-127.86100132393656,52.87119115857039],[-127.86074860587392,52.87109427206052],[-127.86048295761388,52.8710211302668],[-127.86020455008689,52.87097565830217],[-127.85991129277743,52.870952275295046],[-127.85961113301731,52.87094133154297],[-127.85930742405404,52.87093436211809],[-127.85898810195634,52.87091083317915],[-127.85865894753032,52.87089641773576],[-127.85856410184918,52.87087718410884],[-127.8584547551589,52.87080268683191],[-127.85820296778944,52.87070578023588],[-127.85792501355616,52.87064907702142],[-127.85763315622039,52.87061502144468],[-127.85733694907674,52.87058775079318],[-127.85704333016106,52.87055596356013],[-127.85674923758815,52.870534827884676],[-127.85644299325836,52.87053349605347],[-127.85618149610292,52.87059815930107],[-127.85597140919687,52.87073207560611],[-127.8557183988622,52.87082070027289],[-127.85538696731503,52.87088254702813],[-127.85509030980869,52.87086648758799],[-127.85480528409242,52.87081830048124],[-127.85453049351435,52.87074865262957],[-127.85426282761892,52.87067160987177],[-127.85401379939242,52.87057352994713],[-127.85377011823708,52.870470316286195],[-127.85352469088284,52.87036938059292],[-127.85327115462047,52.8702747331595],[-127.85301769233827,52.87018176100504],[-127.85276148270816,52.87008996157312],[-127.85250710004628,52.86999700285202],[-127.85225719101054,52.869900054150726],[-127.85201530519416,52.86979513165911],[-127.85170631442863,52.86964475003243],[-127.85159033220951,52.869545689634585],[-127.85134847417753,52.86944132137121],[-127.85107719946912,52.869366570319976],[-127.8508238691669,52.869276398387],[-127.85054580137691,52.86910926813277],[-127.85027330059353,52.86902779975076],[-127.8500773809057,52.86890926289851],[-127.85002588403096,52.86873071747692],[-127.84998913660029,52.86854857690031],[-127.84992330911324,52.868361289196194],[-127.84984997989707,52.868194297101404],[-127.84967751539902,52.86805856676787],[-127.84940347912394,52.86798441144473],[-127.84914182263962,52.867894931999786],[-127.84889997996555,52.867790558590045],[-127.84865810516177,52.867685073191765],[-127.84841894099274,52.867577858722825],[-127.84818154084029,52.867468374083444],[-127.84794778876365,52.86735714566059],[-127.84771858359885,52.86724361230639],[-127.84750120946667,52.86712372266009],[-127.84735568481383,52.86696514594661],[-127.84723772988539,52.86679885380962],[-127.84712443310818,52.866632488330985],[-127.84695435366896,52.866487192800186],[-127.84674215294488,52.86635769666095],[-127.8465823127866,52.86621223968655],[-127.8464911202738,52.866040477366376],[-127.84635848628137,52.86587889890989],[-127.84620756049297,52.86572433355122],[-127.84602186549603,52.86558376594052],[-127.8458052964556,52.865460497663165],[-127.84557158602853,52.86534982896221],[-127.84532971842584,52.865244336786205],[-127.84509148924558,52.86513653607322],[-127.84485686951699,52.86502644523551],[-127.8446231395003,52.864915210029714],[-127.84438853707745,52.86480511800812],[-127.84415304658232,52.8646961514757],[-127.84391480894874,52.864588357535595],[-127.84367748545391,52.864479983809204],[-127.84345368328414,52.86436130870197],[-127.84326029745203,52.86421468764661],[-127.84303000318226,52.86411797711382],[-127.8427372866883,52.86410575332742],[-127.84239248213117,52.86415879717264],[-127.84213934766363,52.864136427454625],[-127.84182230773521,52.86405675919738],[-127.84152804046985,52.86396553241603],[-127.84126352493627,52.86385197519892],[-127.8411023427202,52.863739596312755],[-127.84090599820343,52.86361039746321],[-127.8407284888858,52.86346465356791],[-127.84056653012291,52.863312495973425],[-127.84044595027059,52.86314903628455],[-127.8403547894139,52.86297727783399],[-127.84024798299154,52.862809683274534],[-127.84011534923165,52.86264697699254],[-127.83997250445256,52.86248498646362],[-127.83980512742349,52.86233684057405],[-127.83960156261067,52.86221223655446],[-127.83936614699951,52.862104380472296],[-127.83911170568568,52.86200859646063],[-127.83884643635295,52.86192027219848],[-127.83858137044638,52.86183698407478],[-127.8383164410188,52.8617564911859],[-127.83804794753156,52.86167998136484],[-127.83777770676039,52.86160574022292],[-127.83750566496828,52.86153321258425],[-127.83723274958008,52.86146180999487],[-127.83695978722437,52.86138929550927],[-127.83668866116567,52.86131618672431],[-127.83641577285405,52.86124534681954],[-127.83620465733344,52.86124752531315],[-127.83591692858418,52.861393820428475],[-127.83567962995018,52.86150122273935],[-127.83547404454833,52.86163222561794],[-127.8353215574296,52.861785939185694],[-127.83521544469454,52.86195798477126],[-127.83499881491959,52.86207010266245],[-127.83472014439143,52.862146196753265],[-127.83443347697487,52.862187664819416],[-127.83413657035045,52.86220742853428],[-127.83384709589134,52.86224838296773],[-127.8335777929096,52.86232600506453],[-127.83340640997316,52.86247328496178],[-127.83314574619497,52.86255694105749],[-127.83303239717522,52.86240961994893],[-127.83304968434288,52.862227196567005],[-127.83304564912915,52.862046782780446],[-127.83300978180523,52.861861816706195],[-127.83278655479533,52.861777306978226],[-127.8324838364802,52.861748399343284],[-127.8322070659622,52.861695545873964],[-127.83201314544311,52.86155676201155],[-127.83190180595152,52.861390916909045],[-127.83181988507316,52.86121675726605],[-127.83176290976198,52.86103828973182],[-127.83170777972565,52.860859793390055],[-127.83158378631352,52.860702548051684],[-127.83137629339971,52.86057238651791],[-127.83117417338964,52.86043765699261],[-127.83103433547095,52.86027953704988],[-127.83091274339769,52.86011328579511],[-127.83077109597889,52.85995631471033],[-127.8305691493361,52.859825509359396],[-127.83033799342617,52.859707480456926],[-127.83014983538632,52.859572531703776],[-127.83001640914529,52.85941206874356],[-127.82991597602248,52.85923988202366],[-127.82984336576274,52.85906558491057],[-127.82984775320956,52.858886160664944],[-127.82986044387047,52.85870492113211],[-127.829865768434,52.858525482247785],[-127.82986270849304,52.85834561792701],[-127.82983270137832,52.85816672928802],[-127.82979989775004,52.85798788417936],[-127.82978401323615,52.85781269447045],[-127.82977789278883,52.85764857139362],[-127.8297422836647,52.85744735040463],[-127.82972633663972,52.8572710406327],[-127.82969883953001,52.85710725042337],[-127.82969535630023,52.85687414170423],[-127.82975202614159,52.856698942864064],[-127.82966243616875,52.85654060355459],[-127.82959359853483,52.85638922285061],[-127.82961551499142,52.85620616240492],[-127.8296358359821,52.85602928766512],[-127.82969892473099,52.85585175578999],[-127.82977886799846,52.85567675929934],[-127.8298823733799,52.85550867758593],[-127.82999897566135,52.85534264266026],[-127.83008647446408,52.85517032613423],[-127.83015890525108,52.854993769312465],[-127.83026250364577,52.854827927648536],[-127.83046143686114,52.85469423875172],[-127.83064615117173,52.854554601199276],[-127.83075605465892,52.854384176842565],[-127.83078936189649,52.854206543227455],[-127.83070557612682,52.85403185536026],[-127.83050283166705,52.853903304234905],[-127.83025647296867,52.85379896386268],[-127.82999508791846,52.85371280168418],[-127.82980973901101,52.853577808543164],[-127.82978984897467,52.85339595489176],[-127.82967675199616,52.85323181165052],[-127.82940428769837,52.853169361307636],[-127.82911127508132,52.85312684292872],[-127.82882545083899,52.853078042054115],[-127.82854731468929,52.8530134360961],[-127.828306616146,52.852910689577676],[-127.8280819561524,52.852791434322754],[-127.82785459741774,52.852674471565095],[-127.82761921614659,52.85256547107195],[-127.82735269809154,52.852489471810195],[-127.82706927768085,52.8524316615244],[-127.82680175217283,52.85235399075324],[-127.82653507807096,52.85227462916311],[-127.82626226447415,52.852203765276926],[-127.82598331124996,52.85214139905319],[-127.82569979946929,52.85208135394884],[-127.82540934136034,52.85207633504494],[-127.82511378294119,52.85210446798422],[-127.82481928125651,52.852135390684914],[-127.82452564414496,52.85216461326231],[-127.82423194383375,52.85219271510353],[-127.82393688968405,52.85221074843322],[-127.82363782923181,52.85222211735244],[-127.82334249008595,52.85221156421953],[-127.82305600508785,52.852168929590675],[-127.82277600017305,52.85210377419152],[-127.8225049574569,52.852030632256145],[-127.82224089826792,52.85194673658425],[-127.82198932826236,52.85185030691299],[-127.82173853841182,52.851750510655044],[-127.82148313270373,52.851651341451735],[-127.82123132693671,52.851549308967876],[-127.82099321144088,52.85144090284571],[-127.82077608864351,52.851323203054456],[-127.82060101267243,52.85118803656387],[-127.82051450234549,52.851013949035405],[-127.82045452844794,52.8508293524313],[-127.82033608776052,52.85066976731669],[-127.82006803592137,52.85057920290007],[-127.819778286739,52.850568554373744],[-127.8194765837914,52.85058331674035],[-127.81917591864068,52.85057844965965],[-127.81887579311385,52.85056459667955],[-127.81859753943756,52.85051846099174],[-127.81839361531505,52.85038261694784],[-127.81835059959867,52.85020280570854],[-127.81824327603661,52.8500419255001],[-127.81800497064901,52.84992903250138],[-127.81772694285854,52.849866076676236],[-127.81745063186534,52.84979973071253],[-127.81717432173168,52.84973338409633],[-127.81688848654426,52.84968344280426],[-127.81660872191557,52.849623309193504],[-127.81634661979791,52.849541047269604],[-127.81609061310505,52.849449166722486],[-127.81583728428974,52.84935443730953],[-127.81558209741914,52.849259736081564],[-127.8154222128185,52.84910918961839],[-127.81517117580921,52.849024512161975],[-127.81488758059314,52.84896163577241],[-127.81460159538244,52.84890832840528],[-127.81431144661887,52.84886628544703],[-127.81401679327425,52.84884953777252],[-127.81371942233872,52.8488563718016],[-127.813423607586,52.84887775372559],[-127.81313514948265,52.84891919888927],[-127.81285991087745,52.84898734270209],[-127.81259159084391,52.84906491185807],[-127.81232618486419,52.84914523337322],[-127.81205692545872,52.84922280679582],[-127.81179344825458,52.84930478325904],[-127.8115448102806,52.84940781979234],[-127.81130522014928,52.84952697485647],[-127.81106311831385,52.849630474499904],[-127.8108045427561,52.8496748159929],[-127.8105168507767,52.849603024481034],[-127.81023671562059,52.84953392273462],[-127.80996747484258,52.849458482626346],[-127.80970703162394,52.84937113167062],[-127.8094752196287,52.84925700071487],[-127.80924106435273,52.849153559133335],[-127.8089416754671,52.84913462972819],[-127.80865383697089,52.84908132755907],[-127.80836614604335,52.849053248793254],[-127.8080692477325,52.84907127093457],[-127.8077771122475,52.84911388041506],[-127.80750663811092,52.84918474511529],[-127.80725815683047,52.849291697911156],[-127.80700841987249,52.84939082266812],[-127.80673226669263,52.84943766751254],[-127.80643295992843,52.8494428268493],[-127.80612982833844,52.849423391826434],[-127.80583905591901,52.849388628421224],[-127.8055539448547,52.849333599795365],[-127.80528023887896,52.84926213663467],[-127.80503067744971,52.849167891365035],[-127.80480786661582,52.84904632227709],[-127.80459588064612,52.8489167486405],[-127.8043865821038,52.84878488243712],[-127.80414815653624,52.8486898993032],[-127.80385308194967,52.848663043946125],[-127.80355271450541,52.84864299494898],[-127.80325144907304,52.84862352394333],[-127.80297301165281,52.848572305618134],[-127.80270875166437,52.84848220004564],[-127.8024813344541,52.84836126231425],[-127.80232618760486,52.848211755942515],[-127.8021856305272,52.848055290724204],[-127.80205145585055,52.8478959294758],[-127.80192277975517,52.84773424177798],[-127.80179865033222,52.847570242249795],[-127.80167723229238,52.847404524025244],[-127.80155861090648,52.84723875380937],[-127.8014408804862,52.847071857801964],[-127.80132223747546,52.846905531670444],[-127.80120364270195,52.84674032564754],[-127.80108783002062,52.846575076840374],[-127.80097753915952,52.84640805730615],[-127.80087184244856,52.84623985522003],[-127.800766122732,52.84607108841653],[-127.80065859210453,52.84590347024732],[-127.80054736770575,52.84573646460227],[-127.80043066204748,52.845571793781964],[-127.80030292118121,52.84541008993657],[-127.80015584331042,52.84525316621518],[-127.80000102303711,52.845110933605916],[-127.79999042769033,52.84510212820717],[-127.7998141514388,52.84495853823417],[-127.7995816334524,52.844848326917],[-127.79934253167085,52.84473653007251],[-127.79912602294259,52.84460924906001],[-127.79901788771677,52.84444892945351],[-127.79896661026997,52.844269794339745],[-127.79894864433494,52.844086230043985],[-127.79897932734882,52.84390976737584],[-127.7990677707739,52.84373522682675],[-127.79909089894856,52.843556072888354],[-127.79905176041282,52.843377881712954],[-127.79891850180562,52.8432173818119],[-127.79874399282379,52.84307096521709],[-127.79855946595075,52.84292974167799],[-127.79837583889102,52.84278794807407],[-127.79820597335198,52.84264145959214],[-127.79805346916986,52.84248742322684],[-127.79790915819962,52.84232933334736],[-127.79777497028896,52.84216884638443],[-127.79764999821452,52.84200597625714],[-127.79754251349257,52.84183891044678],[-127.79746171621977,52.84166527520925],[-127.79739108011775,52.841489807417766],[-127.79734446760936,52.84131060002197],[-127.79725460541809,52.841142152210146],[-127.79707456646328,52.84099693876181],[-127.7969358878335,52.84083988245613],[-127.79687539143671,52.840662008251606],[-127.79687158221095,52.84048327563842],[-127.7968890942449,52.84030308683278],[-127.79692060209734,52.84012381379284],[-127.79696050506968,52.839944968265534],[-127.79699836869064,52.83976222600938],[-127.79705032216823,52.83958263999921],[-127.7971371885564,52.839414841421686],[-127.79730422438634,52.83927384915779],[-127.79754961687804,52.83916079365325],[-127.79779262889043,52.83905730682744],[-127.79804724096684,52.83896429561808],[-127.79830185155537,52.83887127488927],[-127.79855356247069,52.838775500039716],[-127.7988052573861,52.838679724872634],[-127.79905891926107,52.83858616096236],[-127.79931454219825,52.83849537335961],[-127.79957589647402,52.83840785131208],[-127.79984726120864,52.83833755486144],[-127.80000054186213,52.83831166495378],[-127.80013537702663,52.83828942053012],[-127.8004265241062,52.838246843892406],[-127.8007039354321,52.8381876624878],[-127.8009432406812,52.83808479068968],[-127.80116298792385,52.8379592338353],[-127.80141687688393,52.83787126605144],[-127.80170291598301,52.83781811075734],[-127.80197513944685,52.837746119094234],[-127.8022375475699,52.837661937692175],[-127.8025028776298,52.83758108273637],[-127.80277112030184,52.83750298041037],[-127.80302864936324,52.83741326718935],[-127.80328783209461,52.83731905303899],[-127.8035231955943,52.837211187397806],[-127.80371189138565,52.83707713458336],[-127.80386719947221,52.83692341669285],[-127.80400634503202,52.83676153503425],[-127.80414559954018,52.836601902431674],[-127.8042960607981,52.83644377442325],[-127.80443992842507,52.836283505550256],[-127.80456134941984,52.8361202184819],[-127.80464065000814,52.835950287731336],[-127.80468155725211,52.835774230050355],[-127.80469815990187,52.83559517396092],[-127.80470165791644,52.835414086260315],[-127.8047032495544,52.83523189788877],[-127.80471420529847,52.83505125153132],[-127.80474381783537,52.834872004358445],[-127.80478929128992,52.83469419035829],[-127.80484600140745,52.834517880588024],[-127.80491391869721,52.83434308445113],[-127.80499304887682,52.83416923686363],[-127.80507688857274,52.833997002752106],[-127.8051756901366,52.833826771528614],[-127.80525487471964,52.83365460879764],[-127.8053041001276,52.83347729272971],[-127.80534394687932,52.833298443825605],[-127.80539373795209,52.83311271608229],[-127.80509826506325,52.83289811120112],[-127.80532295880953,52.83278031638638],[-127.8055524557892,52.832666366210326],[-127.80579640451802,52.8325645330846],[-127.80604707732454,52.83246763594251],[-127.80629965487344,52.83237182992333],[-127.80655509735689,52.83227765624949],[-127.806773793699,52.83217228160304],[-127.8069991400092,52.83204831242507],[-127.80718373037519,52.831950187758416],[-127.80744919997204,52.83180765536991],[-127.8076922048188,52.83168341293738],[-127.80789464427843,52.83158949621476],[-127.80814446490817,52.83149484946609],[-127.80836149536881,52.831372117585126],[-127.80855552052311,52.83123348983281],[-127.808715609722,52.831083618648975],[-127.80881815429107,52.83091444704157],[-127.80892724281495,52.830746304445974],[-127.80909109274542,52.83059748673211],[-127.80927661427793,52.8304556256966],[-127.80944797584337,52.830308942607445],[-127.80959100029126,52.83015147715763],[-127.80972457492004,52.82999080316807],[-127.80986947956956,52.829833873310854],[-127.81002170656197,52.829674588382474],[-127.81019976373535,52.82953227579301],[-127.81044407860837,52.829439394617566],[-127.81073252114987,52.82937889700417],[-127.81098528368099,52.829288117383165],[-127.81119375867803,52.82916159278904],[-127.8113887487256,52.829024065965925],[-127.81159232151248,52.82889145528587],[-127.81181893839839,52.82877641545214],[-127.81205893394478,52.82866958056377],[-127.81230467859963,52.82856714036919],[-127.81255234280721,52.828465790989334],[-127.8127962032246,52.828362822795775],[-127.81303245347279,52.82825547866747],[-127.81325625952607,52.828139923297364],[-127.81345693224952,52.828005111966085],[-127.81362522758106,52.827852299611195],[-127.81371604804123,52.82767041716761],[-127.81372879792752,52.827489175780954],[-127.81371850331126,52.827312783316685],[-127.81373127708031,52.82713210649666],[-127.81378952856683,52.82697146088788],[-127.81383875880935,52.8267952697029],[-127.81392344598339,52.82662244961607],[-127.81399128077025,52.82644652686314],[-127.81395304099229,52.826268880114796],[-127.81392683946254,52.82608992634225],[-127.81390804680886,52.825910293091695],[-127.81385773727132,52.825732832755634],[-127.81383247297737,52.82555386443074],[-127.81384311873168,52.82534519546039],[-127.81385508089646,52.82518919274713],[-127.8138856083157,52.82501048331682],[-127.8139340422741,52.82483766710988],[-127.81398042685738,52.82466038958734],[-127.81404266911919,52.824484552948675],[-127.81408157324503,52.824306278902526],[-127.81409253411596,52.82412675066541],[-127.81411000560307,52.82394712179301],[-127.81415731009096,52.82376982985709],[-127.81416689539334,52.823667115327595],[-127.8141176104995,52.82355745465093],[-127.8139542362412,52.82358520612109],[-127.81366039901171,52.823627295025325],[-127.81336656954792,52.82364752818545],[-127.81307683209592,52.823611091750095],[-127.81279456837623,52.82355379634298],[-127.8125064282135,52.82351116390518],[-127.81221915353495,52.823466831433976],[-127.81195362350162,52.82338742083101],[-127.8117301577328,52.82326980271125],[-127.81150663653526,52.82315049905879],[-127.81127853556832,52.823032951628726],[-127.8110282013883,52.82293928761881],[-127.81074685773315,52.82288141716853],[-127.81045839145584,52.82283093787177],[-127.81019213677709,52.822756009541926],[-127.80994800847118,52.82265496560937],[-127.80971631698554,52.822540268571565],[-127.80949457732487,52.8224192567088],[-127.80928437739496,52.822285179647686],[-127.80912803696657,52.822149707180046],[-127.80889228872621,52.82200480428455],[-127.80869876717722,52.82186934819457],[-127.80850678522583,52.8217484320056],[-127.80833597607378,52.82160029449063],[-127.80818443168927,52.82144624604809],[-127.8080613711361,52.82128447671075],[-127.80796398205209,52.82111390888576],[-127.80787301777013,52.82094155604867],[-127.8077821016787,52.820770323383975],[-127.8076764412595,52.820602115702805],[-127.80756798772546,52.82043395990088],[-127.80745585759668,52.82026641661923],[-127.80729099606813,52.82012714498352],[-127.80712050245741,52.819964427942374],[-127.80696694453633,52.81980648993082],[-127.80685440376854,52.819651283315814],[-127.80667357223612,52.819507772683295],[-127.80648819986,52.81936658261719],[-127.80630010539406,52.81922711116017],[-127.80610747837952,52.8190905071508],[-127.80589577944397,52.81896429417115],[-127.80568137330685,52.818839799471654],[-127.80546962910248,52.8187124564769],[-127.8052570210747,52.81858681236899],[-127.80503540071676,52.818467476426946],[-127.80480205332042,52.81835672336163],[-127.80455417601655,52.81825404018357],[-127.80429574473533,52.81816552666255],[-127.80402088929625,52.81810641981146],[-127.80372181517188,52.818089717259554],[-127.80342625272527,52.818068476021494],[-127.80313249207927,52.8180455203907],[-127.80283781925449,52.818023143020525],[-127.80254225770877,52.81800189955606],[-127.8022484510672,52.81797783040818],[-127.80196042983897,52.81793684785614],[-127.80167736821114,52.81788122454261],[-127.80139873146996,52.81782048369555],[-127.80111226282344,52.817772193293386],[-127.80083265885101,52.81771034497192],[-127.80063482846214,52.81758165900336],[-127.80049063939013,52.81742469004248],[-127.80034459358117,52.817267749385],[-127.80000063760268,52.81698044575047],[-127.79977279711693,52.816801217919384],[-127.7995920490797,52.81665882534729],[-127.79941311240422,52.81651527477192],[-127.7992177880616,52.81637983105948],[-127.79901430994033,52.81624955199124],[-127.79880264568803,52.81612331702925],[-127.79860278256895,52.81599018386308],[-127.79842841831515,52.8158448847443],[-127.79824403396117,52.815704222863914],[-127.79801781983643,52.81558550037884],[-127.79784648918289,52.81544575890324],[-127.79769171373857,52.815301835651525],[-127.79754474065737,52.815144349756],[-127.7973857329784,52.81498816000457],[-127.79714389235909,52.81471890613794],[-127.7971549344773,52.81460607278645],[-127.79735096914389,52.814559917088346],[-127.79764614550753,52.81450662863425],[-127.79790072926507,52.81441641247417],[-127.79813776717386,52.81430685165875],[-127.79837389101486,52.81419786035759],[-127.79862743178384,52.81410485156491],[-127.7988945505619,52.81402565099462],[-127.79914613745517,52.81393043796586],[-127.79938890752236,52.81382470562298],[-127.79964840361801,52.81374113616606],[-127.79992619128947,52.813672414532945],[-127.79999993000972,52.81365783167909],[-127.80021195217446,52.81361646585047],[-127.80050246723337,52.81358510541346],[-127.80079498175472,52.81357894044557],[-127.80109096047474,52.81358897153162],[-127.8013882151338,52.81360738527025],[-127.8016856271526,52.813629167798574],[-127.80198198479626,52.81364815879375],[-127.80227655583029,52.813668853490135],[-127.8025703566779,52.81369348725006],[-127.80286412540669,52.813716999776894],[-127.8026664009865,52.81356870251908],[-127.80246564884133,52.81343671036055],[-127.8022575143672,52.813305943261525],[-127.80204573706638,52.8131769177146],[-127.80182232858529,52.813058724312704],[-127.80157841701791,52.812961014195636],[-127.80131311395438,52.812884939803915],[-127.80103445410685,52.81282251278236],[-127.80074956999341,52.81276691555576],[-127.80046372657561,52.81271076738251],[-127.80018685602107,52.81264663391852],[-127.79999993043573,52.81257775732604],[-127.7999328680855,52.812552437998775],[-127.79974491952855,52.812415195970296],[-127.79960526086175,52.81225479325463],[-127.79942712265324,52.81210787631265],[-127.79918865304616,52.812006714909714],[-127.79890833370135,52.811948801332726],[-127.79862002591364,52.81189996852306],[-127.79834048779743,52.81183867864926],[-127.79808039224797,52.81175354036226],[-127.79782906685949,52.8116559451765],[-127.79757692417044,52.81156115998716],[-127.79732207427868,52.81146809273768],[-127.79707799381742,52.81136590103983],[-127.79684742869009,52.811253403986186],[-127.79662312332931,52.81113521464961],[-127.79640693454623,52.811011286706325],[-127.79620623716043,52.810879839281604],[-127.79602277062207,52.81073803885932],[-127.79579975787946,52.8105620924623],[-127.79564682157732,52.81046130109895],[-127.79542099211403,52.810306696007764],[-127.7952090418568,52.810216895904304],[-127.79495319850288,52.81012216182135],[-127.79469922863028,52.81002739854063],[-127.79449148796567,52.8099050239288],[-127.7943426258416,52.809746441832125],[-127.7942021071241,52.809587167001915],[-127.79406800382935,52.80942555193262],[-127.79390289828095,52.8092784185969],[-127.79367933558449,52.80915516345105],[-127.79345035191055,52.80903591870641],[-127.79328550016844,52.80889438561944],[-127.79320675781997,52.80872352057438],[-127.7931711549456,52.80853965634891],[-127.79314686175583,52.80835954724592],[-127.79315693822498,52.80817891292889],[-127.79313354322984,52.80799823404597],[-127.79302721573983,52.807833951329336],[-127.79283554832928,52.80769563430463],[-127.79263746798875,52.807559656933925],[-127.79244587344196,52.80742301518372],[-127.79229067531513,52.80726789025037],[-127.79217779766402,52.80710258581358],[-127.79216841533444,52.80692336968048],[-127.79219058424367,52.806743106663724],[-127.7922155938085,52.80656393019719],[-127.79224618362066,52.80638522448495],[-127.79229259116707,52.806206833153034],[-127.79231673426622,52.80602934683795],[-127.79227022917394,52.80585126259196],[-127.7921895596233,52.805678175150014],[-127.79209780285107,52.80550694295655],[-127.7920153010668,52.80533444834288],[-127.7919484619985,52.805158916458176],[-127.79189457696172,52.80498205673477],[-127.79186326176247,52.80476730336471],[-127.79185369341391,52.80462788971896],[-127.79179045287327,52.80444949575819],[-127.79170239112172,52.80427764177585],[-127.79159222290231,52.80411005324235],[-127.7915254108069,52.80393507663681],[-127.7915476985949,52.80375761857603],[-127.79168778952669,52.80359741867364],[-127.79183070479876,52.8034382964391],[-127.79207188197817,52.80333989318154],[-127.79236091790669,52.80329679932491],[-127.792640906575,52.803237592966326],[-127.7929049786039,52.803153411135945],[-127.79312013088034,52.80303297435402],[-127.79331127507002,52.80289385606361],[-127.79353297948327,52.802774439323244],[-127.79375082749797,52.80265172705954],[-127.79393735580372,52.802513234241104],[-127.79408124214585,52.80235521512394],[-127.79420925848333,52.80210719343713],[-127.79405748601516,52.80203328619434],[-127.79399076121389,52.80186055131934],[-127.79398127828229,52.80167909416085],[-127.79401001494763,52.80150041559271],[-127.79406106888416,52.80132251674226],[-127.7941261759524,52.80114720993534],[-127.79420623300533,52.800973907479],[-127.79428910619254,52.800801126855994],[-127.79431782612255,52.80062244833812],[-127.79434653731664,52.800443213905375],[-127.79437525676568,52.80026453533194],[-127.79440303114636,52.800085306196266],[-127.7944152452798,52.79999992320653],[-127.79442897197738,52.79990667005848],[-127.79445300847027,52.79972694201514],[-127.79447429037326,52.799547821060266],[-127.79449555686493,52.79936869134578],[-127.79451867169546,52.79918897731468],[-127.79454367556683,52.79901035536351],[-127.79453500932463,52.798826087371936],[-127.7945897010435,52.79864644626766],[-127.79463575809449,52.79848207522762],[-127.794634533811,52.79838680864612],[-127.79448759144302,52.79829489202718],[-127.79417826688587,52.79814156147493],[-127.79395511489065,52.798026712575826],[-127.79367217193489,52.797970504622405],[-127.79340956549896,52.797889879058616],[-127.79316462723982,52.79778712778239],[-127.79290721779945,52.79769746262203],[-127.79264186019745,52.79761744240425],[-127.7923738196528,52.79753970459429],[-127.79210402564587,52.79746479099292],[-127.79183338224942,52.797391575744165],[-127.79156621862931,52.79731270172525],[-127.79130086593048,52.797232678454925],[-127.79103017839155,52.79715834105696],[-127.79080243724594,52.797044677361406],[-127.7905611532916,52.796940178993],[-127.79030104674396,52.796852226413804],[-127.79004456116435,52.79676197601299],[-127.78982312867176,52.796643730186986],[-127.78961701860152,52.796514031213306],[-127.78941450639579,52.79638147898321],[-127.78920480259195,52.796254641109414],[-127.78896343351546,52.79614790778994],[-127.78871130820156,52.79605086203119],[-127.78856568358658,52.795901181942256],[-127.78858978942307,52.79572257492125],[-127.7886501818363,52.795545100603654],[-127.78869756054982,52.79536781568586],[-127.7887617359083,52.79519196059623],[-127.78883901125737,52.795018712678015],[-127.78891813400993,52.79484487152185],[-127.78898793349899,52.794670607479006],[-127.78904555340166,52.79449373108846],[-127.78909665815085,52.794316397988446],[-127.78914027311323,52.79413804909901],[-127.78917553995458,52.793959836461816],[-127.78918570004133,52.793780876752976],[-127.7891409605856,52.793599956329246],[-127.78919604417864,52.793429288405875],[-127.78934073572583,52.79326845469221],[-127.7895044250393,52.79311798498927],[-127.7896794800023,52.792972390632656],[-127.78982434114285,52.792816037659165],[-127.78994467958994,52.79265053460556],[-127.79004065368024,52.79248036315574],[-127.790088085037,52.79230419738645],[-127.79011117644241,52.792123927962415],[-127.79017348440432,52.791948100064666],[-127.7902591573028,52.791775834549036],[-127.79035886484608,52.79160616173163],[-127.79046888470485,52.79143857340563],[-127.7905854801292,52.79127257056335],[-127.79088314566518,52.79099450047257],[-127.79114587942647,52.79041484680138],[-127.79119390589385,52.78985473027407],[-127.79117033466069,52.78953616775648],[-127.7914029051037,52.78927870300168],[-127.79163460733866,52.789111496691156],[-127.79214288151748,52.78898266275691],[-127.79294066318302,52.788824739267625],[-127.79324424822526,52.78873265945765],[-127.79341361056947,52.78851876404651],[-127.7936311846674,52.78808160597496],[-127.79361586338361,52.78765025106216],[-127.79357427604978,52.78716885218311],[-127.79358833151214,52.78666306100649],[-127.79368369575852,52.7861913335963],[-127.79403960922862,52.78566461910912],[-127.79458766803148,52.78513552826472],[-127.7950356257912,52.7847665855817],[-127.79541357010096,52.78445531955581],[-127.79605120935564,52.78426843604889],[-127.79607245311468,52.78408874837552],[-127.79596326430479,52.78392171227385],[-127.7958146048185,52.78376592562225],[-127.79566412829024,52.78361072262761],[-127.79550907543162,52.78345727551093],[-127.79534852553623,52.78330559834985],[-127.79518254870321,52.78315735812021],[-127.79497996503524,52.78302201808855],[-127.7947710427204,52.782890693789284],[-127.79462083213103,52.78274165546992],[-127.79453480122939,52.78257313366683],[-127.79447996656707,52.7823951752908],[-127.79443611360853,52.78221367682751],[-127.79438499235725,52.78203566155837],[-127.79432647831885,52.78185887141363],[-127.79426614707795,52.781682674021994],[-127.79420671369296,52.78150590682585],[-127.79418781200233,52.781321228392095],[-127.79414447898435,52.781152052950134],[-127.79411112807527,52.780977128650626],[-127.79407685637976,52.780802209444566],[-127.79405278706236,52.780627143099345],[-127.7940197692975,52.780438196438624],[-127.79403820426876,52.7802579867636],[-127.79405571879342,52.78007780011192],[-127.79406116022112,52.77989778917211],[-127.79405548830336,52.77971851322576],[-127.7940451452691,52.77953875269748],[-127.7940320251402,52.7793590256669],[-127.79401704935259,52.7791793359729],[-127.79400115267028,52.77899965137821],[-127.79395937325957,52.7788231697593],[-127.79393577056327,52.77863688587125],[-127.79392100695004,52.778462232940946],[-127.79390647868205,52.778293181480606],[-127.79389240071087,52.77811291293108],[-127.79389915784618,52.77791999441955],[-127.79388977470455,52.777740775023275],[-127.79390750033379,52.77756562496104],[-127.79408419998781,52.77741718915925],[-127.79435695794331,52.77725607298291],[-127.79424908705717,52.77711983828235],[-127.79408929747758,52.776963654523755],[-127.79388890827087,52.776835561126404],[-127.79361747188321,52.776762363091954],[-127.79332499555179,52.77671919771051],[-127.79303469614068,52.776683280458066],[-127.79274269068904,52.77665130765889],[-127.79244985946669,52.776621597767296],[-127.79215791671962,52.776590743584094],[-127.79186584226015,52.77655709263059],[-127.79157726026284,52.77651778250267],[-127.79129195323891,52.77646833247642],[-127.7910092271776,52.77641380224451],[-127.79072565150062,52.77636096135842],[-127.79043956677728,52.776314884215815],[-127.79015172053782,52.77627107531239],[-127.78986392182526,52.77622838600273],[-127.78957610003549,52.77618513135363],[-127.78928908229665,52.776139065675956],[-127.7890046689669,52.77608847549719],[-127.78872194833797,52.77603393973788],[-127.78844526252324,52.77596809211666],[-127.78815941734749,52.77592761091166],[-127.78786205769468,52.77592262111656],[-127.78756514324624,52.775928268961216],[-127.78726921941474,52.77593557799525],[-127.78697244537953,52.77594458524758],[-127.78667677082053,52.775957503036885],[-127.78638220366989,52.77597487830579],[-127.78608789407271,52.775998418983],[-127.78579471565529,52.77602699074703],[-127.78550359462332,52.77606000554033],[-127.78521262233158,52.776096945379685],[-127.78492465180862,52.77613888785071],[-127.7846408371728,52.77619141151975],[-127.78436199687118,52.77625170590263],[-127.78408715690671,52.77631922085975],[-127.78381534180967,52.776392303185084],[-127.78354443765151,52.776464806015305],[-127.78326954826052,52.7765311987432],[-127.78298979192779,52.77659206870971],[-127.78270991773714,52.77665013276514],[-127.78242813999782,52.776707104059945],[-127.78214732013605,52.7767646161292],[-127.78186845772716,52.77682490478664],[-127.78159165231578,52.77688964557008],[-127.78131785629415,52.77695994503837],[-127.78104505022407,52.77703191481888],[-127.78077118215595,52.77710052806658],[-127.78049332129562,52.777162484172685],[-127.78021040634427,52.77721441824736],[-127.77992346049835,52.777259130711634],[-127.77963253673595,52.777297176757074],[-127.77934046720151,52.77733019938421],[-127.77904823373883,52.77735929573464],[-127.77875288181095,52.77738059156652],[-127.77846479316163,52.77737542821066],[-127.77815591505637,52.77736162027328],[-127.77788956354169,52.77734323872202],[-127.77761520818562,52.77728854052133],[-127.77741980275482,52.77716763525312],[-127.77726643833594,52.77700796908393],[-127.77710412137866,52.776856294449274],[-127.7768945965415,52.7767305532685],[-127.77666512235152,52.776616324114606],[-127.77643113298616,52.77650496097249],[-127.7762007492801,52.77639130969936],[-127.77598215861826,52.7762707443245],[-127.77578892507738,52.776134665352096],[-127.7756074849421,52.77599168140717],[-127.77541515134652,52.775855032181255],[-127.77519383560777,52.775735627643606],[-127.77496162642336,52.7756225576509],[-127.77474395552997,52.77550142007474],[-127.77456426965539,52.77535616597331],[-127.77437743200448,52.77521718987998],[-127.77413645964367,52.77511658203852],[-127.77386850088375,52.77503656020177],[-127.77359878839016,52.77495936233801],[-127.77333445056406,52.774877042507406],[-127.77306917834817,52.77479473622145],[-127.77280134822041,52.774718073082035],[-127.77252566287567,52.77465330320229],[-127.77224304230434,52.77460040365191],[-127.77195613826349,52.77455597126868],[-127.771666606247,52.7745155059254],[-127.77137709818969,52.77447560450257],[-127.77108844137709,52.77443400351246],[-127.77079712452222,52.774395240037805],[-127.77050681342178,52.77435814666091],[-127.77021728411817,52.774317677734345],[-127.76993391887461,52.77426926797282],[-127.76966615891776,52.77419371773403],[-127.76941509596695,52.77409549469764],[-127.76917040673162,52.77399437691942],[-127.7689275196708,52.77389154545156],[-127.76867476640403,52.77379726542009],[-127.76841400314069,52.77371151773339],[-127.76815327913899,52.773626333875434],[-127.76789249460083,52.77354002038226],[-127.76763000947224,52.77345710395946],[-127.76735342770816,52.77339289164444],[-127.76707239976996,52.77333322973969],[-127.76679840226467,52.77326392815432],[-127.76654253374835,52.77316128746049],[-127.76640916738077,52.773012525278155],[-127.76641463173051,52.77283027417553],[-127.76640896112427,52.77264819977417],[-127.7662622730156,52.772491226037765],[-127.76616443484623,52.77232566918856],[-127.76615785299053,52.77214416448047],[-127.7661559645505,52.77196371006248],[-127.7661586998159,52.771782620982925],[-127.76612813114508,52.77160484057827],[-127.76605102000566,52.77142384217119],[-127.76588645890392,52.77128395232382],[-127.76563115998276,52.77119475328484],[-127.76535754354613,52.77111199059539],[-127.76513184198498,52.77099768256945],[-127.76493133617957,52.77086393762899],[-127.7647254263715,52.77073420172002],[-127.76451862028848,52.77060503496832],[-127.76431546592276,52.77047469189476],[-127.7641159233823,52.77034148711575],[-127.763915400895,52.77020718470389],[-127.76372125164322,52.77006997906545],[-127.76355091973556,52.769924567763056],[-127.76343186472987,52.769762125796674],[-127.76335497620457,52.769586162342684],[-127.76327907829354,52.76941186993113],[-127.76320132489774,52.76923759639733],[-127.7631272839588,52.76906327593832],[-127.76305878748276,52.76888830705143],[-127.7630004672602,52.768712620092394],[-127.76296614821132,52.768533218099066],[-127.76298656468249,52.768352984010555],[-127.76308923255266,52.76818609508906],[-127.76323213587764,52.768027004020425],[-127.76337414065586,52.76786848228316],[-127.76345057203199,52.76769581752704],[-127.76344037547841,52.76751605267708],[-127.76339678537369,52.76733734613556],[-127.76331635169045,52.76716535483495],[-127.76319074879935,52.76700133390976],[-127.7630807969276,52.76683427941521],[-127.76298834271691,52.766663589661526],[-127.76288761591272,52.76649471023479],[-127.76278778736287,52.766325261184335],[-127.7626943539874,52.76615346488518],[-127.7626388301758,52.76597774442945],[-127.76267136174359,52.76579844894767],[-127.76275709343645,52.765626209544386],[-127.76292172859496,52.76547631583546],[-127.76307690025703,52.76532208910015],[-127.76310040756297,52.765194495821326],[-127.76297834428185,52.76498109663655],[-127.76288955972548,52.76480923942715],[-127.76282754953982,52.76463360749681],[-127.7627719809414,52.76445676660765],[-127.76271918828958,52.76427987496797],[-127.76266824350976,52.76410239948027],[-127.76261453176477,52.76392553055368],[-127.7625626755907,52.763748624719966],[-127.76251265241622,52.76357113526463],[-127.76246357326262,52.763394196572136],[-127.76241909404739,52.76321605869976],[-127.76237278302315,52.76303851332827],[-127.76232647238365,52.76286096791785],[-127.76225615695847,52.76268659038668],[-127.76217754586318,52.76251344956172],[-127.76209706549555,52.76234034574215],[-127.76201935306267,52.76216663525701],[-127.76194443181352,52.76199288275472],[-127.7618713055558,52.761817982196106],[-127.76180275636857,52.76164132677557],[-127.76170946767446,52.76147233422901],[-127.76155835108582,52.76131934889635],[-127.76137691425173,52.76117410112302],[-127.76124785650069,52.76101573485129],[-127.76114898198422,52.76084626078139],[-127.7610740288464,52.76067195211385],[-127.7610018435091,52.76049703681136],[-127.76095185351662,52.760320101991155],[-127.7609091933496,52.760140823949214],[-127.7608923926161,52.75995835035814],[-127.76089270538246,52.75978570881292],[-127.76094876999639,52.75961447169543],[-127.7609237201475,52.759434364016776],[-127.76088014880473,52.75925565558937],[-127.76084591529803,52.759077927866414],[-127.76086915785926,52.758898771654074],[-127.76088309288477,52.758718643194335],[-127.76086643129348,52.75853953040643],[-127.7608191505755,52.75836087759599],[-127.76074976048831,52.75818591995251],[-127.7606325811771,52.758022890336775],[-127.76047311620897,52.757869463911064],[-127.7603118745916,52.75771830599344],[-127.76018088371335,52.757557725396275],[-127.76005251007962,52.75741559769316],[-127.75989219623119,52.75724144884226],[-127.75973529197204,52.757105354293955],[-127.75977172188871,52.756908072763615],[-127.75970877807765,52.75673189662613],[-127.75964031535098,52.75655692432224],[-127.7594803036106,52.756299805859236],[-127.75939767191895,52.75629936928644],[-127.75926123121441,52.75636699263081],[-127.75904832702344,52.75649350047786],[-127.7587931866773,52.7565864551031],[-127.75859634116908,52.75672000323458],[-127.75840904734379,52.756860142787495],[-127.75820367402697,52.756989334063164],[-127.75799450526821,52.757116904833914],[-127.75778725139487,52.75724556750255],[-127.75758093968372,52.75737478064019],[-127.75737650480188,52.757504521269176],[-127.7571730577804,52.75763592374547],[-127.75696387478146,52.75776293671772],[-127.75673188301157,52.75787739496203],[-127.75651216355386,52.75799670889935],[-127.75636157148841,52.758149182064926],[-127.75625998298183,52.758319978038145],[-127.75612437331878,52.75861123251762],[-127.7559023875478,52.75874347531193],[-127.75567510247284,52.75885954676755],[-127.75541480997359,52.75887241354499],[-127.75512214116138,52.75879776024269],[-127.75482836194661,52.75878646478655],[-127.75453002884332,52.7587998991342],[-127.75423575118961,52.758821684131746],[-127.75394385706706,52.75885631992379],[-127.75366596082583,52.75891540790733],[-127.75340009166209,52.7589961706308],[-127.75312434794955,52.75906251618755],[-127.75284053853981,52.759113278510455],[-127.75255577059671,52.759163498442994],[-127.75228100550201,52.75923094835607],[-127.75201215766818,52.759307268315695],[-127.75174447391544,52.75938918428745],[-127.7514759603563,52.75947334509001],[-127.7512303146683,52.75957230177943],[-127.75104162771207,52.759701795439994],[-127.75092512567869,52.7598716880218],[-127.75083475004925,52.76004455324338],[-127.75069438659712,52.76037959103447],[-127.75047501503806,52.76025899978783],[-127.7502474862306,52.760143005034244],[-127.75001093443707,52.76003331462619],[-127.74974444345466,52.75994032987596],[-127.74945447899483,52.75984095983718],[-127.7491738665647,52.759766120808074],[-127.74893926949447,52.759749443266784],[-127.74883326404347,52.759903482824136],[-127.74876638965942,52.760106819063544],[-127.7487014803343,52.760289956638594],[-127.74851148076388,52.76041049748101],[-127.74824188183528,52.76049130378051],[-127.74796565842442,52.760568854158535],[-127.7477055633946,52.76065512252156],[-127.74744544459423,52.76074083461917],[-127.74718342357035,52.76082545346106],[-127.7469213330007,52.760908395699374],[-127.74665832900969,52.76099190696524],[-127.74639724000552,52.76107651010163],[-127.74613618089873,52.76116223320282],[-127.7458711959553,52.76124240911786],[-127.74560033134502,52.761315380917814],[-127.74532460632041,52.761382828357],[-127.74504580720517,52.76144302984084],[-127.74476099153333,52.761492666115664],[-127.74448024403324,52.76155065320765],[-127.7442073828733,52.761620297359904],[-127.74393455834314,52.76169049633693],[-127.74366364187759,52.76176234331058],[-127.74339185027874,52.761835332635464],[-127.74312099252225,52.761908298457975],[-127.7428510771626,52.761981814614394],[-127.7425802030768,52.76205478836378],[-127.74230936556434,52.762128316947276],[-127.74203752329292,52.762200173821725],[-127.74176662342153,52.76227258103433],[-127.74149578312958,52.762346107727744],[-127.74123568723486,52.76243292628261],[-127.74098720243236,52.76253134686378],[-127.74076363591375,52.76264901001657],[-127.7405553908334,52.76277821131866],[-127.74037264258435,52.76291825272336],[-127.74024845418718,52.763082642652144],[-127.74007996916058,52.76323087486325],[-127.74005277405655,52.76340671178721],[-127.7400934492464,52.76358491320097],[-127.74009520429195,52.763764804373146],[-127.74010346145637,52.76394460797303],[-127.74012095848856,52.76412370940446],[-127.74014126901922,52.76430332506894],[-127.74016251527897,52.764482935788756],[-127.74016331282658,52.764662285052744],[-127.74015487006312,52.76484232748246],[-127.7401473249611,52.76502180054487],[-127.74014908065736,52.765201700508776],[-127.74015363494676,52.76538211492782],[-127.74015912449163,52.76556251544279],[-127.74016832527722,52.76574286084634],[-127.74018304733235,52.765922003263874],[-127.7402070019506,52.76609988760279],[-127.7403324453599,52.766262248262464],[-127.74056923495542,52.76637755938926],[-127.74071894052346,52.76651994629172],[-127.74073946026178,52.76670460752634],[-127.74088773083963,52.76685766955209],[-127.74104346257216,52.767011176602274],[-127.74113035384488,52.76718419798457],[-127.7411088192102,52.76736220163302],[-127.74110306468785,52.76753996192781],[-127.74119550167994,52.76771234484049],[-127.741206540348,52.76789210666452],[-127.74109247096006,52.76805466050103],[-127.74083343470997,52.768145389572275],[-127.74054634869718,52.76818608033094],[-127.7402541743888,52.768215644834314],[-127.73998125564361,52.7682847139803],[-127.73971335540195,52.768363232052835],[-127.73943851867391,52.76843120735993],[-127.739163627701,52.76849750579007],[-127.73889567903117,52.76857490165642],[-127.73863646038708,52.768661700437185],[-127.73838406221671,52.76875624451296],[-127.73813551111414,52.768854093996154],[-127.73788888314303,52.768953600409795],[-127.73764227662112,52.76905366198068],[-127.7373986192433,52.76915759832928],[-127.7371569156368,52.769264312187104],[-127.73690730169194,52.769358811690964],[-127.73662629488341,52.769412298585976],[-127.73633149242181,52.76944581107933],[-127.73609335949185,52.76954910677392],[-127.73593704104664,52.76970051465092],[-127.73586157487898,52.76987707323181],[-127.73577570369547,52.770048736793996],[-127.7358107315368,52.77022533636901],[-127.73588106542535,52.770402534183035],[-127.73597158621774,52.77057382803931],[-127.73606208479359,52.77074455716188],[-127.73608797182868,52.770924654951905],[-127.73606274006626,52.77110326765856],[-127.73600495536618,52.771280685325905],[-127.73590506462229,52.77145031437319],[-127.73578741334259,52.77161684324619],[-127.73573040268354,52.77179032124841],[-127.73577699918826,52.77197739439893],[-127.73574301994626,52.77214661237383],[-127.73559045576305,52.77229964080825],[-127.73539009506013,52.77244161045335],[-127.73515999600264,52.77255992283053],[-127.73490711219756,52.77264325592366],[-127.73462522880527,52.77269842753632],[-127.73432987602153,52.772742031696],[-127.7340412382328,52.772791140783134],[-127.73375062233289,52.7728369154038],[-127.73346193778328,52.772884902736045],[-127.73319555741409,52.772956100603366],[-127.73295954075807,52.77306608399884],[-127.73275990651553,52.77320355416872],[-127.73262425074736,52.7733613775185],[-127.73253955268912,52.773539746671396],[-127.7324141407556,52.77369853934637],[-127.73220847203586,52.7738243316268],[-127.7319639979761,52.77393219579833],[-127.73170495980338,52.77402458058034],[-127.7314397997445,52.77410303822846],[-127.73116301157715,52.774169900963535],[-127.73088032924628,52.77422844705163],[-127.73059731326494,52.77427914142907],[-127.73030085649435,52.774295847567046],[-127.7298628143562,52.774370135651324],[-127.72988988882943,52.77451153767784],[-127.73002141319354,52.77466373855027],[-127.73025194496881,52.77478476745985],[-127.73032831300438,52.774950668848426],[-127.73033009565101,52.775132243792555],[-127.73032807552504,52.775311632842055],[-127.73007243578253,52.775235814348335],[-127.72976856685682,52.775207223610934],[-127.72951968290722,52.77525237172315],[-127.72921164936793,52.775327537474894],[-127.72893972395775,52.77539992800087],[-127.72873407952301,52.77548087364147],[-127.72858263441498,52.775662465417156],[-127.7285219676787,52.77583823482852],[-127.72852273906341,52.776018138514345],[-127.72852256736664,52.776197500068164],[-127.72843294186603,52.77636921226202],[-127.72829014686621,52.77655796692566],[-127.72813098358577,52.77670940484483],[-127.7278852220846,52.776808866955996],[-127.72761527700517,52.77688458796678],[-127.7273324664098,52.776940884966905],[-127.72704853045775,52.776992148895715],[-127.72675944007148,52.77703059213046],[-127.72647147371042,52.777074067044424],[-127.72617747860042,52.77708344420968],[-127.72588485608568,52.777080460552135],[-127.72564313419642,52.77702741242566],[-127.72533496979608,52.77700784123991],[-127.72500840877754,52.77706141331903],[-127.72472152762357,52.77708581108305],[-127.72441459080461,52.77711947100821],[-127.72412045135015,52.77712491717431],[-127.72382621247932,52.77715109791863],[-127.72353235185466,52.77716382943316],[-127.72324886831103,52.777134366059904],[-127.72295576559422,52.777096631428186],[-127.72264177386198,52.77711638244979],[-127.72234659866776,52.77714257322484],[-127.7220868572133,52.777149195008086],[-127.72174350030562,52.777154793017964],[-127.72145539257245,52.77719489462978],[-127.72118050760061,52.77726339117484],[-127.72088768302892,52.77730187463587],[-127.72059504908306,52.77732186270994],[-127.72030445786906,52.77730034345773],[-127.71999637663475,52.77728244300393],[-127.71972500826728,52.77723093861908],[-127.71944260173406,52.77727431460561],[-127.71919308968101,52.777373813116505],[-127.71891609570463,52.777436165271986],[-127.71862151365707,52.77745393497169],[-127.71833557253714,52.77750184400764],[-127.7180598125057,52.77757202294474],[-127.71789752491561,52.77771621012074],[-127.71777971845228,52.77788103526446],[-127.71768327082059,52.77797661109889],[-127.71764806631681,52.77811725030498],[-127.71758495443251,52.778279597023136],[-127.71748900092057,52.77838749628368],[-127.71734298856755,52.77854377503653],[-127.7171866459968,52.77869739789451],[-127.71701218068132,52.77883895500472],[-127.71681507977075,52.77897187532066],[-127.71663618145489,52.77911853666984],[-127.716408298565,52.7792250031581],[-127.71614218799232,52.77930456893337],[-127.7158844215669,52.77938400302539],[-127.71565760590131,52.77949381533209],[-127.71536677491632,52.779536183425876],[-127.71507899472432,52.77953871564485],[-127.71481695157556,52.77962717776557],[-127.71459702592801,52.77974697606502],[-127.71440091647689,52.779881563540165],[-127.71428499174854,52.78004747813155],[-127.71420274858292,52.780219635120126],[-127.71412054935006,52.78039290339716],[-127.71400552055292,52.780558248516485],[-127.71388017664184,52.78072094626575],[-127.71376708439304,52.78088793978063],[-127.71361445559543,52.781042068032846],[-127.71338662214175,52.78115020452664],[-127.7130928209105,52.78118812619764],[-127.7128250959092,52.781111890865915],[-127.71263119597333,52.7809779626407],[-127.71245084477839,52.780834303407936],[-127.7122777854909,52.7806871834484],[-127.71211020600406,52.780537732297695],[-127.71195805442194,52.78037909678202],[-127.71180143515204,52.78022500125412],[-127.71161863499202,52.78008978837344],[-127.71135734139924,52.780011769944906],[-127.71107247885756,52.779948111628315],[-127.71084201842893,52.779828165761224],[-127.71062031403383,52.779764696950785],[-127.71039420275258,52.779683921231346],[-127.71007984743628,52.77960275495183],[-127.7100037997586,52.77951249920014],[-127.7098828576533,52.77932145341385],[-127.70988679776357,52.779141482445205],[-127.70987682347709,52.778961705374975],[-127.70985929776884,52.77877924041339],[-127.7098030990284,52.77860463019702],[-127.70969493544335,52.778431333593524],[-127.7095462658901,52.778266474302285],[-127.7093446714575,52.77814834669803],[-127.709073198203,52.77809401238693],[-127.70876230171605,52.77807555847303],[-127.70845912151353,52.77806428220282],[-127.70814315538135,52.77808178099134],[-127.70783894754418,52.77809125181814],[-127.70758608286751,52.778037764063264],[-127.70737623924803,52.77792199524514],[-127.70719386118985,52.777773317652894],[-127.7070322631202,52.777610329460124],[-127.70688660727437,52.777451027951656],[-127.70679804463614,52.77727968541368],[-127.70672600868576,52.777103618318506],[-127.70661349707154,52.776937108134625],[-127.7064872072804,52.77677416130585],[-127.70634806740546,52.77661532029396],[-127.70619975283765,52.77645886355125],[-127.70604225578845,52.776305338198554],[-127.70586654933686,52.77616048044935],[-127.70562521888536,52.7760468525826],[-127.70537798194353,52.77594787397094],[-127.7053891373344,52.77578516887748],[-127.7054884736357,52.775598761514],[-127.7054094467897,52.77543344906403],[-127.70523949303829,52.775292990649376],[-127.70493492923502,52.77522343442686],[-127.70462557637481,52.77519654449148],[-127.7043237152396,52.77517123081481],[-127.70402802561708,52.77516095549465],[-127.7037330284564,52.77516804015409],[-127.70343668904648,52.77518803938038],[-127.70315385290972,52.77519719684683],[-127.70284807598853,52.77528346975368],[-127.70255917863426,52.77535044001578],[-127.70224074152745,52.7753517003119],[-127.70198003142886,52.77531064543286],[-127.70168433974895,52.775276823560425],[-127.70138847735463,52.775239075497346],[-127.70109482110402,52.775209706553106],[-127.70080378712888,52.77519992054552],[-127.70051135868495,52.7752248955712],[-127.70021762494005,52.77528689021741],[-127.69995177586578,52.775373132522326],[-127.69977650927581,52.775495618567966],[-127.69975908975557,52.77568812419194],[-127.69975045246736,52.77586760669319],[-127.69974832603732,52.77604755079986],[-127.6997903892226,52.77621789542648],[-127.69983245302286,52.77641177168328],[-127.69988520073092,52.77659372719248],[-127.6997932472328,52.7767800222806],[-127.69977887024567,52.77693212827428],[-127.6997538172987,52.777119130480415],[-127.69979635005028,52.77732477464354],[-127.69977846103988,52.77748197142375],[-127.6997279416246,52.77765926282847],[-127.69967276637907,52.77783605669385],[-127.69961198489568,52.778012366787685],[-127.69954374889164,52.7781876728491],[-127.69946520646741,52.7783608772785],[-127.699370767225,52.77853151402972],[-127.69924552932966,52.7786981130432],[-127.69911002215807,52.778863183698434],[-127.69898753669307,52.77902917751689],[-127.69890136531656,52.77919745201984],[-127.69887022635746,52.77937165506756],[-127.69888292373234,52.7795508279305],[-127.69892268526115,52.77973353660082],[-127.69897827678736,52.779917127912256],[-127.6990385392916,52.780101216481874],[-127.6990903305188,52.78028262977823],[-127.69912338095453,52.78045982168479],[-127.6991236945972,52.78063132698348],[-127.6990612956447,52.78079028912117],[-127.69886213994319,52.780919844987714],[-127.69860402733437,52.78103792367883],[-127.69837966807208,52.78116448078209],[-127.6981797214493,52.781297409792685],[-127.69797978117661,52.781430903314025],[-127.69778455447197,52.781566005209754],[-127.69759502905444,52.781704387156566],[-127.69741967693699,52.7818487245198],[-127.69727472266648,52.78201056626986],[-127.69713636057391,52.78217454539772],[-127.69697223241606,52.78232097049473],[-127.69675573306247,52.782435079738875],[-127.69650870752699,52.78252888759083],[-127.6962435490575,52.78261063539201],[-127.69596889985289,52.782686905971104],[-127.69569423517257,52.78276318508072],[-127.69542815257603,52.78284493537647],[-127.69516779386848,52.7829305302156],[-127.69490747857179,52.78301724480556],[-127.69464809783399,52.7831039452936],[-127.69438778042587,52.78319065872043],[-127.69411322059014,52.78326973045544],[-127.69382731411052,52.783343360528576],[-127.69355275225617,52.78342243094385],[-127.69331233001068,52.783518943388],[-127.69312876092076,52.7836443448824],[-127.69300869769167,52.78380189360986],[-127.69293031844437,52.783980139009444],[-127.6928717492669,52.784165945205714],[-127.69280922985503,52.78434620348819],[-127.69274744558967,52.78452140223099],[-127.69269411142197,52.78469872987364],[-127.69264820981448,52.78487650620133],[-127.69260697843676,52.78505477108875],[-127.69257319498614,52.7852334934236],[-127.69253433353053,52.7854010792711],[-127.6924997249933,52.78558262035958],[-127.69246510863984,52.7857635965545],[-127.69244024798311,52.78595676264185],[-127.69240136297469,52.78612378371882],[-127.69232181929833,52.78629644028299],[-127.69224135414116,52.786469110059585],[-127.69215905416844,52.78664237119365],[-127.69207581031331,52.786815080887784],[-127.69199165209697,52.78698835968607],[-127.6919065354802,52.78716109621744],[-127.69182049731845,52.78733384595019],[-127.69173351559016,52.78750605319788],[-127.69164468373631,52.787678843036886],[-127.69155488592476,52.787850525738435],[-127.69146416651984,52.78802222163186],[-127.69137251065752,52.78819393092914],[-127.6912789750877,52.78836510225954],[-127.6911854167646,52.7885357178122],[-127.69108997906572,52.78870580435502],[-127.69099360450882,52.788875895328935],[-127.69089626429026,52.789044888112166],[-127.69079706629857,52.789213898596536],[-127.69069690262526,52.789381810884315],[-127.69059578005512,52.789549171908824],[-127.69045229771152,52.7897025706964],[-127.69022779496659,52.78982687061665],[-127.68999744002436,52.789944528580946],[-127.68977378893288,52.79006712936797],[-127.68954054320982,52.79018203008593],[-127.68929059078522,52.790273621610275],[-127.68901539999474,52.790338116754434],[-127.68872195694573,52.790387180456115],[-127.68842214586316,52.790416157649226],[-127.68812872068911,52.79041870390305],[-127.68784678663769,52.7903829621993],[-127.68757090786107,52.79031239167249],[-127.68729653224081,52.790232822174524],[-127.68701718518281,52.79016846109428],[-127.68672670051176,52.790151340156875],[-127.68642640310071,52.790167988609255],[-127.68612975267199,52.79018290689825],[-127.6858330574587,52.79019669514266],[-127.68554069444583,52.79017904226898],[-127.68525203017795,52.79013723025326],[-127.68496406639004,52.79008980263712],[-127.68467370852004,52.790052497408695],[-127.68437524633416,52.79002146867798],[-127.68407648250117,52.79000614602677],[-127.68379912788097,52.79003927285943],[-127.68355343664179,52.79014536339997],[-127.68329219929367,52.790233750002194],[-127.68301634367988,52.79030496628737],[-127.68273675149108,52.79037567054414],[-127.68245606829953,52.79044247086999],[-127.68217515655644,52.79050311295907],[-127.68189571067205,52.790554200652835],[-127.68162094461216,52.79058223630514],[-127.68136138295893,52.79047778842964],[-127.6810987851606,52.79039018901673],[-127.68083352859044,52.79030599898876],[-127.68055664246668,52.79025671594501],[-127.68025658451327,52.79027951492004],[-127.67996516602109,52.79026239064703],[-127.67968181237129,52.790213763149886],[-127.67939909375572,52.79015783512855],[-127.67911897765757,52.79009739428832],[-127.67883878877335,52.790034702932694],[-127.67855952198147,52.78997200668964],[-127.67828451590684,52.78989971614611],[-127.67801279880109,52.78981616827143],[-127.67773729166842,52.78975452831276],[-127.67745155798981,52.78974012343982],[-127.6771594681844,52.78975270293206],[-127.67686330127266,52.789779921482314],[-127.67656639595006,52.789812189687844],[-127.67627022789618,52.78983939777724],[-127.67597241330853,52.78984813721984],[-127.67566699385796,52.78982896045127],[-127.67536734267752,52.78981474932357],[-127.6750879940385,52.78984452107776],[-127.67483687930232,52.78993105815989],[-127.6745999243377,52.79004709357639],[-127.67436395506861,52.790164800345444],[-127.67411301264774,52.79025581720398],[-127.67381164323677,52.790292625913594],[-127.67352340691932,52.790261432718715],[-127.6732805551947,52.790156163885605],[-127.67309097025819,52.79001145710876],[-127.6729722624541,52.78985005465496],[-127.67288645609662,52.78967528729018],[-127.67279424727836,52.78950285308514],[-127.67268550473565,52.78933513842698],[-127.67257309360664,52.78916859693667],[-127.6724625400045,52.789002028847726],[-127.67235749121545,52.78883369623463],[-127.67226445319002,52.78866351532409],[-127.67218153220811,52.7884909481741],[-127.67210599451795,52.7883171547386],[-127.67203229230137,52.78814277908091],[-127.67195951121211,52.78796838126768],[-127.671882118751,52.787794614093976],[-127.67180105759098,52.787622020113595],[-127.67171997533607,52.78744887036955],[-127.67163891548721,52.7872762762382],[-127.6715697121826,52.78709790824678],[-127.67151696232581,52.78691313593573],[-127.67143865272644,52.78673938147322],[-127.67129096383296,52.78659688161592],[-127.67106023548313,52.786492000526216],[-127.67078755257377,52.78640676407244],[-127.67051666173603,52.78631982450878],[-127.67026403063622,52.78622477755058],[-127.67001323546059,52.786129147919276],[-127.66976870560022,52.78602725877833],[-127.66953307224188,52.785915709819946],[-127.66933832164204,52.78578060323943],[-127.66920328287543,52.78560485679676],[-127.66902141911925,52.785490299650846],[-127.66872540788452,52.7855208587571],[-127.66842378442422,52.785526826766],[-127.6681377052016,52.785478775609604],[-127.66784974807602,52.78543018550189],[-127.66756172582137,52.7853799096912],[-127.66728973257148,52.78533557510555],[-127.6670139903617,52.78529073718297],[-127.6666817861416,52.785369442021114],[-127.6663854897901,52.78539270851846],[-127.6660891273898,52.785414289271955],[-127.66579329262531,52.78542578207653],[-127.66549955056115,52.78541930003803],[-127.66520783657464,52.78539317610139],[-127.66491658540659,52.785355279246716],[-127.6646252470812,52.78531513201889],[-127.66433325756068,52.78528228405712],[-127.6640413269881,52.78525055550054],[-127.66374852681098,52.785220524486526],[-127.66345494391032,52.78519442273336],[-127.66315818672618,52.78518181681218],[-127.66285223639267,52.78519567861279],[-127.66256026598064,52.785186931167004],[-127.6624015285948,52.78518918121242],[-127.6620781215325,52.784993112508324],[-127.66184954080101,52.78487080380516],[-127.66159434136475,52.78478081471977],[-127.66131692516709,52.784716365920325],[-127.66104477423696,52.78464399516994],[-127.66075265961136,52.784559575905696],[-127.66051572442453,52.784461488122346],[-127.66030228554001,52.78434624385293],[-127.660016071435,52.784318352318735],[-127.65971254852234,52.7843226479627],[-127.65941658872569,52.78430665850123],[-127.65912340626797,52.7842665238486],[-127.65884239318528,52.784204927045934],[-127.65859180910022,52.78411374529421],[-127.65835365607583,52.784007823712514],[-127.65812446006785,52.783893363328154],[-127.65790061716281,52.78377322202558],[-127.65768040141361,52.7836507871143],[-127.6574638778598,52.783527734653404],[-127.65725823359656,52.78339781126744],[-127.65708952304098,52.7832623168746],[-127.65687995893059,52.78310329425197],[-127.65667542632545,52.783001934195234],[-127.65640773381324,52.782900344890614],[-127.65615513278165,52.78280471164562],[-127.65592778361481,52.78268965600887],[-127.65572022636343,52.78255807106288],[-127.65550292383898,52.78243839790243],[-127.65522740994689,52.782374464091866],[-127.65479866233514,52.782358660271456],[-127.65464429173792,52.7823770878064],[-127.65441084150534,52.782487993541935],[-127.65420817685451,52.78262648858752],[-127.65406650876794,52.78278150236763],[-127.65395416332811,52.78295010994678],[-127.65381543692544,52.78310900075529],[-127.65371884187714,52.783324466277136],[-127.65355411162682,52.7834596182454],[-127.65326771056527,52.78349840564973],[-127.65296133588154,52.7835010471442],[-127.65263218894901,52.78346700808819],[-127.65248945716911,52.783354681368415],[-127.65248744551346,52.783134445575016],[-127.65251691993221,52.78296028146431],[-127.65253766126303,52.78275204660606],[-127.65252034681075,52.78259255821263],[-127.6525186993288,52.78240593702564],[-127.65251039562627,52.782215490728085],[-127.65248615824876,52.78204489021881],[-127.6524985995167,52.78186255429225],[-127.65248890976346,52.781683902033535],[-127.652391361521,52.78151489042339],[-127.65215966292499,52.78140717964004],[-127.6518822395428,52.781341588036405],[-127.65159409038144,52.781286791484284],[-127.65131067716337,52.78123417843711],[-127.65102468889354,52.7811871968022],[-127.6507395139267,52.781137405111224],[-127.65045610275193,52.78108478999401],[-127.65017177815744,52.781032743049266],[-127.64988747571834,52.78098125110814],[-127.64960144778877,52.780933154606295],[-127.64931465760137,52.78088954300889],[-127.64902447331619,52.78085383413308],[-127.64873177852047,52.78082544159846],[-127.64843746541523,52.78080323188315],[-127.6481325900401,52.78077221116014],[-127.64791764731021,52.78078532035514],[-127.64747324327865,52.78084424935199],[-127.6471807359037,52.78079679401379],[-127.64696058869738,52.780723095689886],[-127.64668238657407,52.78066086574851],[-127.64641291233973,52.78058450511321],[-127.64612257362292,52.780520758326226],[-127.64584841053902,52.7804668814194],[-127.64557516152402,52.780388885941505],[-127.64530843934732,52.780311354262786],[-127.64503832931557,52.78024228118953],[-127.64476006859107,52.78017837061938],[-127.6444871684398,52.78010933542706],[-127.64422145040199,52.78003347315626],[-127.64397542590385,52.77993883390912],[-127.6437652280701,52.77980950721368],[-127.64355680843796,52.77967847827181],[-127.64331157234129,52.7795799077366],[-127.64310690395052,52.77944938144009],[-127.64285130244042,52.77934702735273],[-127.64257822231265,52.779297046626],[-127.6422937009342,52.77935988636669],[-127.64206399070672,52.779471836110545],[-127.64185635085008,52.77960253268004],[-127.64162134905023,52.77972183733621],[-127.6413376846915,52.77973477555363],[-127.64104197875209,52.77972434146493],[-127.64074304433562,52.77970218622567],[-127.64044571484771,52.77967383802464],[-127.64015104853029,52.77964208895367],[-127.63985947139973,52.779594037576466],[-127.63960639326098,52.77950846457458],[-127.63939540420212,52.779382504162605],[-127.63919783626635,52.7792434602777],[-127.63898499347916,52.779117525052385],[-127.63873623058359,52.77902347823065],[-127.63846577424668,52.778944871407205],[-127.6381829264187,52.77888212151603],[-127.637896989981,52.7788356724621],[-127.63760457409138,52.77881397427074],[-127.6373030730897,52.77882154709791],[-127.63700979775246,52.778850302513725],[-127.63673249026941,52.77893208428072],[-127.6364626708829,52.77901543782992],[-127.6361918232015,52.77899903991496],[-127.63592227076968,52.7789198497187],[-127.6356529256445,52.77882159975317],[-127.6353805339101,52.778740762015566],[-127.63510179178213,52.7787121411785],[-127.63481461280448,52.77873016148893],[-127.63452289334977,52.77877513836986],[-127.6342317736467,52.77883580851491],[-127.63394820626766,52.778899726595455],[-127.63367795320985,52.77897187014871],[-127.63341852246069,52.779060120667204],[-127.63315814835494,52.779147818767775],[-127.63288791363463,52.77922051618717],[-127.63260988921242,52.779283797777104],[-127.63232889453748,52.77934208022279],[-127.63204487170186,52.77939423438793],[-127.63175877794,52.77944081189444],[-127.63146967780128,52.77948182574323],[-127.63117852179677,52.77951726269276],[-127.63088619433574,52.77954654546894],[-127.63058959835097,52.7795613234206],[-127.63029869542167,52.77953061833499],[-127.63001943998954,52.77946443608945],[-127.62973707162716,52.779413998778274],[-127.62944324820029,52.77940406534763],[-127.62914537534225,52.7794098897642],[-127.62884736756853,52.77941178747415],[-127.62855239525649,52.77939626300284],[-127.62825895298792,52.77937175788525],[-127.6279662394616,52.7793421931454],[-127.62767436166901,52.77931037417303],[-127.62738249916117,52.77927855426757],[-127.62709213711624,52.77923774519448],[-127.62680273233858,52.77919747812254],[-127.6265093777521,52.77917520934783],[-127.62620717500904,52.77916482806871],[-127.62590752576719,52.77917234585985],[-127.62562953786365,52.779212626239605],[-127.62539421599656,52.779324620539796],[-127.62517725939847,52.7794554160265],[-127.62495096065867,52.77956055862365],[-127.62466210699863,52.77958361693453],[-127.62436653564728,52.77960116281778],[-127.62406707486063,52.779613722015974],[-127.62376644394779,52.779620126929075],[-127.62346647819228,52.77961979615057],[-127.62316998441993,52.779612690837695],[-127.62287946953141,52.779592050615946],[-127.62259879446698,52.779537080021996],[-127.62232127988692,52.779467501638884],[-127.62203857993579,52.77940807392719],[-127.62175097140249,52.779366092656474],[-127.62146072062349,52.7793280750346],[-127.62116963434958,52.77929230118579],[-127.6208776707081,52.77925766866613],[-127.62058660682274,52.77922245803209],[-127.62029731468523,52.77918498029939],[-127.6200088162988,52.77914412804102],[-127.61972383342552,52.77909762176875],[-127.61944653839845,52.77903362942247],[-127.61917626594986,52.7789588949171],[-127.6189042231173,52.778886426140254],[-127.61862684612878,52.77882020008068],[-127.61835024197639,52.77875003489747],[-127.61807198813472,52.77868493162782],[-127.6177886821061,52.778633913771465],[-127.61750062888748,52.77860425877719],[-127.6172010544985,52.778589334320635],[-127.61689736253591,52.77858848223762],[-127.61659895419376,52.778604361816406],[-127.61631333951979,52.77863912941629],[-127.61604760674838,52.778708927766075],[-127.6157980091453,52.77881213167231],[-127.6155590146068,52.77892583348822],[-127.61532832248196,52.7790383084479],[-127.61510624353186,52.77915738103151],[-127.61491234644572,52.77928504164291],[-127.61470359771154,52.779412897433616],[-127.61448949095242,52.77954644030107],[-127.61417648944935,52.77959390106844],[-127.61396393031877,52.7794735223047],[-127.61374394731871,52.77935324532201],[-127.61345063057985,52.779307403527916],[-127.6131605194007,52.779322039160064],[-127.61286208854804,52.77931269259094],[-127.61256388089954,52.77928485103307],[-127.61231467630031,52.77927594711151],[-127.61206551805091,52.77931748468646],[-127.61187301783599,52.77945800733946],[-127.61176601991613,52.77962481327444],[-127.61168536863181,52.77980078953634],[-127.61161600255743,52.77998053842622],[-127.6115466355613,52.78016027829102],[-127.61146877425416,52.780336215976746],[-127.61137011890145,52.78050291573411],[-127.61124129028808,52.78065713456597],[-127.61106648710889,52.78079908944608],[-127.61084295360678,52.78092939194498],[-127.61058906235048,52.78104273175718],[-127.61032414996238,52.78113492435092],[-127.61006470634089,52.78119957358657],[-127.60979881198242,52.78116679746355],[-127.60951551929098,52.781066993807336],[-127.60923009202938,52.78100870273005],[-127.60894131745988,52.78096053643348],[-127.60864949983153,52.78092979031564],[-127.60835588214576,52.780925414867035],[-127.60805658214494,52.78094297055092],[-127.60776460860005,52.780982278975486],[-127.60749020604888,52.7810443296795],[-127.6072248172253,52.78112363532878],[-127.60696533969325,52.78121238290793],[-127.60670783746995,52.78130390070887],[-127.60644835776928,52.78139264713389],[-127.6067138558019,52.781167627960286],[-127.60678377136067,52.78100189118471],[-127.60677340040635,52.78082492397493],[-127.60673036782796,52.780643920453805],[-127.60668822906086,52.78046178370974],[-127.60666571575896,52.78028274089872],[-127.60664967104638,52.78010304448817],[-127.60663454752857,52.77992334440336],[-127.60661758236316,52.779743660560165],[-127.60660712813223,52.77956445245287],[-127.60662072126016,52.779382672983864],[-127.60663433550874,52.77920145815752],[-127.60659624816151,52.779028233298],[-127.60644364224166,52.77887170552247],[-127.6062809895156,52.77871980791669],[-127.60611383080457,52.77857132567227],[-127.60593935379096,52.778425750262485],[-127.60575760062554,52.77828420202557],[-127.60559863741756,52.77813112304389],[-127.60544424546755,52.77797630432796],[-127.60530919018763,52.777817301872226],[-127.60524516477719,52.777645552530565],[-127.60523461140446,52.77746353864696],[-127.60520098989743,52.77728521232558],[-127.60515715195068,52.7771070168569],[-127.60511425624334,52.7769293734161],[-127.6050843058843,52.77674987581293],[-127.60505803201575,52.77656976290428],[-127.60499580232467,52.77639630284111],[-127.60485334400933,52.7762374011145],[-127.60476233820495,52.77606433473766],[-127.60463750760347,52.77590519149769],[-127.6044466780577,52.775768805187596],[-127.60424214666963,52.77563821076757],[-127.60403482494904,52.77550765416668],[-127.60383572334574,52.7753736219298],[-127.60365676050075,52.775231467304486],[-127.6035042841996,52.77507774072976],[-127.60336549075663,52.77491765716182],[-127.60322582011926,52.77475871533648],[-127.60307883118044,52.77460267128135],[-127.60293092270933,52.77444663961106],[-127.60278942002137,52.774288278295074],[-127.6026561579337,52.77412699731909],[-127.60252282799128,52.77396348418614],[-127.6024217829539,52.773794480940346],[-127.6023836543063,52.77361956905685],[-127.60238437660698,52.773440772338326],[-127.60240266036666,52.773260049695345],[-127.60242279364313,52.77307873679155],[-127.60242622914024,52.772898217019595],[-127.60241208219009,52.77271905846533],[-127.6023895700424,52.772539458220265],[-127.60235871963619,52.772360527894875],[-127.60231953107468,52.772182267482734],[-127.60227295504518,52.77200467295315],[-127.60221525004889,52.77182779542658],[-127.60214371709496,52.77165333974256],[-127.60205742162307,52.77148133658374],[-127.60196284544948,52.771311123432845],[-127.6018627294329,52.77114210683408],[-127.60176167250907,52.77097253803701],[-127.60166338683422,52.770802375296554],[-127.60157248984675,52.77063155554515],[-127.60149360112435,52.770458885780286],[-127.60143036947468,52.77028263924269],[-127.60137638169999,52.7701057014421],[-127.6013233089026,52.76992819511372],[-127.60126471096001,52.76975188515809],[-127.60119137183044,52.769578583342955],[-127.60107472195065,52.769413710625365],[-127.6009359563386,52.769253632550736],[-127.60080181760742,52.769092926174956],[-127.60066127586902,52.7689345489643],[-127.60042272131395,52.768811694108905],[-127.60026081185465,52.76865305211245],[-127.60015036229328,52.768480247165805],[-127.6001059550807,52.76831103354343],[-127.6001241352648,52.7681269493069],[-127.60009963832985,52.76794400351072],[-127.6000005592238,52.76780187385654],[-127.5999838340218,52.767776885172104],[-127.59992622180808,52.767601681913874],[-127.59989816149137,52.76742271247456],[-127.59987658281351,52.76724308959862],[-127.59987078587656,52.767063260301974],[-127.59987979886942,52.766882663918345],[-127.59985179601034,52.76670481456126],[-127.5997729003481,52.76653157852166],[-127.59969029423935,52.76635840201576],[-127.59970002103854,52.76629605190832],[-127.59982583353893,52.76620970759759],[-127.59989047850735,52.76615109182508],[-127.59991608011329,52.766041453966054],[-127.60000130423911,52.76588784117973],[-127.6000099742653,52.765871464539785],[-127.60007211166032,52.765696312652295],[-127.60008950227724,52.76551615772295],[-127.60002818764164,52.76534156978531],[-127.60000070062905,52.76532625158275],[-127.59980920990759,52.765220132408665],[-127.59962198703495,52.76507920511811],[-127.59949528893863,52.764918395524326],[-127.59944594167588,52.764740837104014],[-127.59943639964536,52.764560493655544],[-127.59939618423957,52.76437888276398],[-127.59937769390528,52.76420707300047],[-127.59939965781432,52.764049839688745],[-127.59961894238606,52.76388206730298],[-127.59976239114994,52.76372149017125],[-127.59985165556138,52.76355212869372],[-127.59983297484877,52.76337527270381],[-127.59978444364653,52.763194905208785],[-127.59976009165473,52.76301531969552],[-127.59974316839157,52.7628361977419],[-127.59972809486332,52.762656494529345],[-127.59971486182428,52.762476757211154],[-127.59970256442138,52.762297016070974],[-127.59969305749851,52.762117227861225],[-127.59968449212887,52.761937991743444],[-127.59968147256413,52.761758123928644],[-127.59968216369583,52.761578196486084],[-127.5996828551572,52.7613982779854],[-127.59968261111152,52.76121836326239],[-127.59967775692557,52.76103907639468],[-127.59965989367605,52.760859411044386],[-127.59962995634598,52.76067934548068],[-127.59961025878997,52.76050026111207],[-127.59961653768143,52.760320822233446],[-127.59964501874326,52.760139394422964],[-127.59969493462476,52.759960480931156],[-127.599778703089,52.759792879912496],[-127.60000053521846,52.759668788623046],[-127.60035028291577,52.759440943292276],[-127.60059244584842,52.75933954839144],[-127.60084319532862,52.75924420545505],[-127.60109873666958,52.75915272434589],[-127.60135523883326,52.75906234152409],[-127.60161268134516,52.75897251023538],[-127.60186913968616,52.75888101485584],[-127.60212083957161,52.7587862120895],[-127.60236772480032,52.75868699970999],[-127.6026182984535,52.75858717139348],[-127.60287258167084,52.75848729179043],[-127.60312494513455,52.75838575194582],[-127.6033696761565,52.758278720107434],[-127.60359837548265,52.75816517233854],[-127.60380632243475,52.75804238437538],[-127.60398689581636,52.75790764005002],[-127.60413248534351,52.75775600380102],[-127.60424971175021,52.7575901740897],[-127.60434619864515,52.757416225387175],[-127.60443048561822,52.75723852469492],[-127.60451110300349,52.75706198614048],[-127.6045899909426,52.75688884303057],[-127.60465580675826,52.756713627915985],[-127.60471040655615,52.7565363333432],[-127.60475566626857,52.75635748067342],[-127.60479167013688,52.75617931069013],[-127.60480155303271,52.755997579444404],[-127.60481451537309,52.7557989915689],[-127.60481978860169,52.75561788835671],[-127.60486183161099,52.755477192305115],[-127.60504126028592,52.7553368567924],[-127.60526098841491,52.75520717865551],[-127.6054996882078,52.75508844982963],[-127.6057369311308,52.754980385121186],[-127.60598476914664,52.75488282836723],[-127.60624119359744,52.75479132317666],[-127.60650238835996,52.75470310594166],[-127.6067616911173,52.75461435804475],[-127.60701525268429,52.75452064841958],[-127.60725830695353,52.75441922660003],[-127.60748701777604,52.75430680030596],[-127.6077052151265,52.754186106040606],[-127.60791577983407,52.75405991123323],[-127.60812156511085,52.753929853737844],[-127.60832449591062,52.75379815806066],[-127.60852740454882,52.75366590630877],[-127.60873223015962,52.7535353048282],[-127.60894276737655,52.753408543446646],[-127.60916187618143,52.753287833765896],[-127.60939526338062,52.75317646027024],[-127.60963436223814,52.75306892673717],[-127.60986968618596,52.75295975861275],[-127.61009168584022,52.752841814281005],[-127.61029844224754,52.752713425280156],[-127.61049568955387,52.75257899675825],[-127.61068534669498,52.75244019729082],[-127.6108702875122,52.752299211411646],[-127.6110533362379,52.75215769522121],[-127.61123542140214,52.7520150709947],[-127.61141279061657,52.75187026936403],[-127.61158261808828,52.75172277320911],[-127.61174212190318,52.75157204688641],[-127.61188183726034,52.75141318971313],[-127.61198397105062,52.751242518633404],[-127.61203674163949,52.751066921624734],[-127.61206622585753,52.7508888469567],[-127.61208448000556,52.75070867583463],[-127.6120971841288,52.750528590002176],[-127.61211172797549,52.750348469869415],[-127.61213558283777,52.750168786590756],[-127.61216221256899,52.749989065109034],[-127.61219999328216,52.74980975515658],[-127.61226487436107,52.74963566820203],[-127.6123557819245,52.74946235302835],[-127.61247664878503,52.74929646334181],[-127.61264093329783,52.74914959748388],[-127.61284675060506,52.74902178121622],[-127.61307144785845,52.74890210747146],[-127.61329231326559,52.74877967911137],[-127.6134895543244,52.748645809877694],[-127.61367449079775,52.74850538389621],[-127.61385275723451,52.7483605655675],[-127.61402162099368,52.74821251353102],[-127.61418110345512,52.74806179250245],[-127.61430291546716,52.74789645257718],[-127.61440876196554,52.74772628359401],[-127.61457120024784,52.74758000510895],[-127.61477420799964,52.74745165888149],[-127.61499510336272,52.74733034758456],[-127.61522362244337,52.74721397961954],[-127.61545210444324,52.74709705569142],[-127.61567876617313,52.746980712392514],[-127.61590926958505,52.74686823457477],[-127.61614070696767,52.74675575236496],[-127.61636643017296,52.746639420603245],[-127.6165902335944,52.74652142892172],[-127.61681117654744,52.74640124327489],[-127.61702449324478,52.74627611355857],[-127.61722458548589,52.746144440099464],[-127.61741700909813,52.746006702278954],[-127.6175981268584,52.74586408028695],[-127.61776886498976,52.74571711739088],[-127.6179095225733,52.7455599247817],[-127.6180313340731,52.745395136420754],[-127.61817569919916,52.74523789223385],[-127.61833038399988,52.74508385926836],[-127.61849827831432,52.744935257453385],[-127.61868796007363,52.74479867615271],[-127.61890311804325,52.744673517261305],[-127.61913355190197,52.74455935662184],[-127.61938227618283,52.74446287834315],[-127.61965806926784,52.74439517073743],[-127.6199389578644,52.74433972276394],[-127.62022373988037,52.74428870417503],[-127.62050756536621,52.7442371421074],[-127.62102602817507,52.74415822794493],[-127.62129250054971,52.744089524387874],[-127.62149935097044,52.74396559644556],[-127.62168401358737,52.74381955564831],[-127.62189442207465,52.74369164980078],[-127.62211239707705,52.74356756670232],[-127.62232757509324,52.743442965892775],[-127.62253141733878,52.743313472750316],[-127.62269123388229,52.74317281419767],[-127.62282504083548,52.743006742103944],[-127.62290376473578,52.74283189999862],[-127.6228682269306,52.74265359160924],[-127.62286416987246,52.74247317017289],[-127.62295048134854,52.742302706779654],[-127.62306192892714,52.742134702024785],[-127.62320152886859,52.74197470997649],[-127.62328880042605,52.74180535392388],[-127.6233405079855,52.74162752269379],[-127.62337452487078,52.741448250577264],[-127.62336497220332,52.74127014709174],[-127.62333591119486,52.74109119290366],[-127.6233578591421,52.74091153193686],[-127.62341330220372,52.74073476977244],[-127.6234771192617,52.74055845649222],[-127.62354839627118,52.74038315178632],[-127.62363184129245,52.740210485318265],[-127.6237349637672,52.74004315095567],[-127.62387835516404,52.73988591213995],[-127.62404329256664,52.73973397039041],[-127.6241951408359,52.73957941186584],[-127.62430390828418,52.739414240586136],[-127.62437891048717,52.73923944849598],[-127.62442963317572,52.739060509049416],[-127.62446089056799,52.738881839457015],[-127.62443093449262,52.73870401860884],[-127.62438147139542,52.73852534722385],[-127.62434867792804,52.738345888671574],[-127.62434094864658,52.73816663858762],[-127.62435360371015,52.73798710585181],[-127.62437369133222,52.73780747003655],[-127.62439098969357,52.73762787286891],[-127.62440178994599,52.73744836577662],[-127.62441075050931,52.737268884169694],[-127.62441782028573,52.73708886378152],[-127.62442584607965,52.73690939509014],[-127.62443199628599,52.73672939637513],[-127.62443539336378,52.7365499918216],[-127.62443131543867,52.73636956991323],[-127.62441510633164,52.7361870742302],[-127.62439706409272,52.736005159951546],[-127.62438741699361,52.73582425919453],[-127.62439642610872,52.73564645371075],[-127.6244352902524,52.73547272712451],[-127.62454786126132,52.7353103002452],[-127.62471173780895,52.735155573547104],[-127.62487283908534,52.73500088508224],[-127.6245809888513,52.73486368870022],[-127.62439396636591,52.73472672400829],[-127.62425808325045,52.73454420157121],[-127.62402858056764,52.73446106763422],[-127.62372513154428,52.73445799220844],[-127.62355134588417,52.7344009886949],[-127.62349853084892,52.734353518301766],[-127.62346242359725,52.73416008822187],[-127.62343805381153,52.73400685092915],[-127.62333367221656,52.73382276985914],[-127.62321653080271,52.7336450354045],[-127.62306451514145,52.733501413613986],[-127.62285111278861,52.733377698847804],[-127.62262676273187,52.7332591842686],[-127.62239428935753,52.733146377738166],[-127.622142716747,52.73306802979559],[-127.62187933972965,52.73297190898879],[-127.62163073430278,52.732873906113994],[-127.62138575320482,52.732773601614966],[-127.62113983248945,52.73267275360782],[-127.62089125155725,52.73257530486171],[-127.6206337192065,52.73248639132021],[-127.62036638536786,52.73240825768709],[-127.62009642696626,52.732334078718964],[-127.6198229946227,52.732266117082155],[-127.61954248569859,52.73220722054197],[-127.61926118511597,52.73215169723875],[-127.61898334575623,52.73208996449359],[-127.61871426284492,52.73201409329119],[-127.61844520845283,52.731939342071485],[-127.6181680728487,52.73187142779255],[-127.61788744164075,52.73180916607491],[-127.61760222330314,52.73177274970044],[-127.61730846714273,52.73178016893964],[-127.61701076674235,52.73180613365746],[-127.61671352012254,52.731819769485035],[-127.61642083413257,52.73180642901948],[-127.61614726298852,52.7317345418601],[-127.61586266999896,52.731690265755574],[-127.61556542689699,52.73167922800103],[-127.61526949963593,52.731678269177195],[-127.6149729550069,52.73168572101638],[-127.61467864516737,52.731703230155546],[-127.6143854662287,52.731726327886065],[-127.6140875572783,52.7317220214648],[-127.61380560741888,52.73167378501235],[-127.61353291859149,52.73160074970652],[-127.61325246495419,52.73154295848216],[-127.61296770109341,52.73149363780882],[-127.61268377273494,52.73144205401269],[-127.6123998241105,52.73138991380722],[-127.61211854462664,52.73133493821106],[-127.61183536301168,52.731278302162714],[-127.6115705459576,52.731192267205245],[-127.61131606808111,52.73111000839034],[-127.6110774076029,52.73100399979444],[-127.6108431862449,52.730892880764415],[-127.61061256877679,52.73077890477782],[-127.61038649647652,52.73066263285821],[-127.61016947883361,52.730540066147455],[-127.60995698477666,52.7304146299239],[-127.60973814281787,52.73029320848633],[-127.6095065488007,52.73017756679129],[-127.60926624687391,52.730052520408975],[-127.60901905655211,52.729941575977755],[-127.60876415618735,52.72987221331801],[-127.60849614375927,52.72987365212597],[-127.60821473787,52.72993804927438],[-127.60793346451275,52.73003046848887],[-127.60766964922935,52.73011871946563],[-127.60741425361377,52.73020910521773],[-127.607163731079,52.73030558444974],[-127.60691704199212,52.730405373481226],[-127.6066703938428,52.73050628239146],[-127.60642949619935,52.730612151829504],[-127.60620024845156,52.73073187775645],[-127.60593262090121,52.73079271737935],[-127.60562874825153,52.73080248806477],[-127.60533817398674,52.73077116436252],[-127.60506308911206,52.730707675241064],[-127.60479204448121,52.730628436388464],[-127.60452114178452,52.730552557918315],[-127.60423381084429,52.730484185725864],[-127.60395101873685,52.73041295271667],[-127.6036982402494,52.73032561437415],[-127.60350364634935,52.73020721248568],[-127.60338974303293,52.730038947546625],[-127.60333726806479,52.72985134097228],[-127.6033361311874,52.729672555489294],[-127.60340357553409,52.72949227518413],[-127.60345814577794,52.72931497799165],[-127.603406160585,52.72914081644534],[-127.60322707743869,52.728990249283136],[-127.60298601704243,52.728893781204384],[-127.60272506665953,52.728811036589775],[-127.60245228940816,52.72873462309473],[-127.60217863514393,52.72865933298463],[-127.60191128984616,52.72857891602466],[-127.6016510952598,52.72849167479063],[-127.60139270787602,52.728402731290615],[-127.60113165854936,52.72831717759689],[-127.60086536277268,52.728240106886105],[-127.60057871529486,52.72816443467674],[-127.60029755866621,52.72813633296156],[-127.60000118006805,52.7281230023096],[-127.59913091845394,52.72801662821657],[-127.59794089005553,52.727568218564684],[-127.59701608163321,52.72729218399329],[-127.59587857563008,52.72700782178688],[-127.59504001105182,52.72690490472396],[-127.59451691032596,52.72692940708671],[-127.59390381955255,52.72695344584036],[-127.59357559083512,52.726856458980095],[-127.59301098116568,52.72656371702067],[-127.59232702426436,52.72602934230466],[-127.59188947897258,52.72573598842333],[-127.59142100493172,52.725533296613264],[-127.59110041956849,52.7254171424239],[-127.59032399237492,52.72511325739075],[-127.58966096106433,52.72486611021573],[-127.58884035571234,52.72447089476067],[-127.5882958933253,52.72411956616567],[-127.58760930257831,52.723886178853625],[-127.58718427517194,52.72380394729837],[-127.58669903479483,52.72359809224681],[-127.58585983471227,52.72307531645117],[-127.58534275645184,52.72261094052856],[-127.5849329409051,52.72208738469133],[-127.58419666530192,52.72198861183208],[-127.58350517684023,52.72152154718082],[-127.58175814213739,52.721273323880666],[-127.58102392950055,52.721079220139416],[-127.58075899407781,52.720860842585836],[-127.58057933937896,52.7207169751167],[-127.58040062620245,52.720573659642234],[-127.58022282797573,52.72042977554486],[-127.58004684295659,52.720284736766786],[-127.57987635838472,52.72013794653203],[-127.57971135337286,52.719988840171325],[-127.5795536815955,52.71983739270344],[-127.57939594905424,52.71968426885553],[-127.57923446856789,52.719530065390686],[-127.57907482241865,52.71937528096124],[-127.57891790349645,52.719218782554485],[-127.57876740397371,52.719060511434705],[-127.57862798621169,52.718900969747075],[-127.57850144158257,52.718738447426205],[-127.5783924383458,52.71857401153677],[-127.57830280345287,52.7184065165191],[-127.57823624363772,52.71823590348754],[-127.57819549633865,52.7180615795762],[-127.57817409582015,52.717883631947984],[-127.57816746222768,52.71770379932206],[-127.5781718884955,52.71752214062767],[-127.57818183418905,52.717339286539946],[-127.57819177979758,52.71715643242886],[-127.57819895236283,52.71697361566818],[-127.57819688349865,52.716792044421936],[-127.57817727534758,52.71661239550396],[-127.57812424115474,52.7164315111071],[-127.5780712487359,52.71625174709003],[-127.57806476063253,52.716075840233806],[-127.57812986823689,52.715905129360394],[-127.57823777778658,52.71573889042902],[-127.57836707156737,52.71557404907477],[-127.57849821753517,52.71540917360892],[-127.57861353275334,52.71524227839602],[-127.57872887325509,52.715076494713664],[-127.57884047969328,52.71490964922139],[-127.57893339070746,52.71473912777103],[-127.57900580351543,52.714565519695974],[-127.57906980551925,52.714390339017214],[-127.57912725060764,52.714213569714126],[-127.57918100314116,52.71403685015778],[-127.57923286644542,52.713859600022936],[-127.57928566312225,52.71368232828057],[-127.57934218706689,52.71350557118776],[-127.57939873138886,52.71332937874218],[-127.57945340098482,52.71315264655525],[-127.57950434246816,52.7129753996325],[-127.57955896981449,52.71279754692639],[-127.57961823760117,52.7126196315614],[-127.5796682026286,52.7124412856416],[-127.57969410868445,52.71226382029335],[-127.57967922557629,52.712086905254516],[-127.57961523592239,52.71191065273182],[-127.57953366785996,52.71173519332115],[-127.5794650385518,52.71155900328366],[-127.57943995017247,52.71138166981105],[-127.57945656903384,52.711203764702844],[-127.57949632637241,52.711024991402965],[-127.5795490565878,52.71084604304194],[-127.57960274696325,52.710668202662816],[-127.57967044762671,52.71049298015099],[-127.57975303595677,52.71031923368653],[-127.57981332198197,52.71014410211555],[-127.57982435846156,52.709965716097805],[-127.57980566582827,52.709786054224736],[-127.57978230591563,52.70960532535225],[-127.5797719606719,52.70942555079598],[-127.57976534252354,52.70924628193598],[-127.57975778437746,52.70906646076054],[-127.57974835856938,52.70888667373337],[-127.5797343068654,52.70870694013736],[-127.57971748320064,52.70852725289118],[-127.57970797462792,52.7083452159698],[-127.57970031364616,52.708162598085224],[-127.57968620050718,52.707981188230384],[-127.57965824340222,52.707801651123766],[-127.57960727383146,52.70762634348041],[-127.57952592074278,52.70745648571797],[-127.57942520623793,52.707289696063235],[-127.57931343578055,52.70712474143472],[-127.57919244146255,52.70696102314174],[-127.57906316370439,52.70679910241941],[-127.5789265100494,52.70663784601124],[-127.57878527903162,52.70647832817332],[-127.57863945018491,52.706319993154764],[-127.57849180462676,52.70616223845983],[-127.57834326784473,52.70600562555115],[-127.57819475264382,52.70584956817261],[-127.57804717815237,52.70569405393421],[-127.5778977668017,52.70553857323503],[-127.57774648830134,52.705383108540595],[-127.57759431259197,52.70522822071984],[-127.57744121886273,52.70507334507059],[-127.57728538053297,52.704919627191586],[-127.57712863019354,52.704766486371],[-127.5769691292948,52.70461393840536],[-127.57680783824887,52.70446309133824],[-127.57664473691247,52.704313398390276],[-127.57647797160291,52.70416486658272],[-127.57630941649563,52.704018044610585],[-127.57613815249309,52.70387294484181],[-127.5759623319027,52.703730139184614],[-127.5757501745026,52.70360744424576],[-127.57550530381398,52.70350256908013],[-127.57525050332892,52.70340510899795],[-127.57500127780352,52.70330757335954],[-127.57474847674098,52.70321400428656],[-127.57449210962713,52.70312385458454],[-127.57423483013241,52.70303427261211],[-127.57397938392357,52.702944100452754],[-127.57372658757099,52.7028505381137],[-127.57348817744918,52.7027444419836],[-127.57326774822523,52.70262353978854],[-127.57302128304025,52.702525397925896],[-127.5727658220025,52.70243466735055],[-127.57250588132823,52.70234792435934],[-127.57224417667024,52.70226400248756],[-127.57196349761587,52.70219322177053],[-127.5716711122607,52.70213157446644],[-127.57141869566317,52.70204808207799],[-127.5712516144534,52.70191525004607],[-127.57115450695748,52.70174447689133],[-127.57107368595308,52.701562840117326],[-127.57095538777955,52.70139572313951],[-127.57078297150126,52.701243896213164],[-127.57059402442776,52.701096218800124],[-127.57043368256811,52.700944794325665],[-127.5703452195852,52.70078231640087],[-127.5703166132584,52.70060894646352],[-127.57031928003028,52.70042899597781],[-127.5703459103346,52.70024535202883],[-127.57038925753429,52.70006261372507],[-127.57040735718961,52.70000015133338],[-127.57044197120541,52.699882547703965],[-127.57051260198361,52.69971064418476],[-127.57067287296233,52.69955715958515],[-127.57081438264478,52.69939720056434],[-127.57094609848728,52.699223364861766],[-127.57102405514392,52.699049120603206],[-127.5709707766939,52.698885614685835],[-127.57085276825684,52.69872577549119],[-127.57069962511746,52.69856864966339],[-127.57053171677559,52.69841284275316],[-127.57036660179759,52.69825755413635],[-127.57019516065067,52.69810684309835],[-127.57001276262982,52.697960197780894],[-127.56994916265126,52.69779290184009],[-127.569938964127,52.69761592160964],[-127.56995087529103,52.6974352818051],[-127.56997198821092,52.69725283256902],[-127.56999124855484,52.69707041712308],[-127.57000224596071,52.69689034551226],[-127.57002156749243,52.69670960619984],[-127.57002518940672,52.696530198460536],[-127.5699927174491,52.69635239587816],[-127.56994263783315,52.6961748294604],[-127.56988054434399,52.695997989136806],[-127.56980556452257,52.695823554633414],[-127.56971588759482,52.6956526891465],[-127.56960416422162,52.695487159251485],[-127.56947218581024,52.69532526385746],[-127.569331047711,52.69516628913933],[-127.56918991098847,52.69500732319742],[-127.56902681054369,52.694855933532544],[-127.56878953973705,52.6947542967225],[-127.5685170959464,52.694678922714104],[-127.56824657268011,52.69460575536874],[-127.56797429495246,52.6945348618718],[-127.56823626364275,52.69445064009469],[-127.56849342815482,52.69436199811595],[-127.56874742986719,52.694262744001946],[-127.56894504100413,52.69411660745524],[-127.56895219856018,52.693957895008786],[-127.56892146239882,52.69377670564553],[-127.5688576265226,52.69360268596164],[-127.56870741846866,52.69344888097021],[-127.56851877963787,52.693308477849286],[-127.56831562961409,52.69317668085413],[-127.56807366961051,52.69307342845432],[-127.56781367217215,52.69298331315557],[-127.56762260101449,52.692852474154726],[-127.56737248925164,52.69257669602136],[-127.56736303670745,52.692394656139825],[-127.56734071382252,52.69221503957272],[-127.56724841151829,52.69204812617934],[-127.56709992348429,52.69189036810393],[-127.56692678401636,52.69174247287722],[-127.56673189310966,52.69160832057623],[-127.56652146971234,52.691479980865715],[-127.56633021905974,52.69134353718026],[-127.56616531086841,52.69119273265382],[-127.56601042072228,52.69103730087495],[-127.5658491991013,52.69088588158556],[-127.56566717453693,52.69074819237539],[-127.56542535755322,52.69064829567955],[-127.56515457279731,52.690566721899806],[-127.56490543017901,52.690469164122284],[-127.56464565996902,52.690384643877174],[-127.56436379209897,52.69032955544092],[-127.56407342023203,52.69029532293287],[-127.56378736571658,52.690252629019476],[-127.56349398559264,52.6902374922391],[-127.56320975805299,52.69019364255005],[-127.56262857713166,52.69016385585506],[-127.562331513447,52.690149321376055],[-127.56204365877505,52.69018399604749],[-127.5617592900031,52.69023823643867],[-127.561487602027,52.690309677881466],[-127.56122466546147,52.690392220853674],[-127.56096655552312,52.69048029484703],[-127.56071233339382,52.690573365366404],[-127.56046289724341,52.690670855476505],[-127.56021919548567,52.690772752561585],[-127.559981198447,52.69087905705164],[-127.55974612937695,52.69098924997647],[-127.5595129520587,52.69110052922168],[-127.55927977385494,52.69121181695754],[-127.55904466002276,52.69132087903394],[-127.55880571795217,52.69142663759147],[-127.55856099271082,52.69152630270591],[-127.55830282967256,52.69161325030591],[-127.55803503641651,52.691690245551584],[-127.55776534859815,52.69176613542487],[-127.55750241613207,52.69184922569727],[-127.55724445310919,52.69194178216403],[-127.55699613851243,52.69204485462792],[-127.55679690483947,52.69217249149829],[-127.5566609447858,52.69233292513496],[-127.5565504888878,52.69250646231019],[-127.55642105889405,52.69266792974394],[-127.55620547039923,52.692778968111476],[-127.55594619876834,52.69286145001479],[-127.5556611706408,52.69292353086564],[-127.55537467308076,52.69297049265778],[-127.5551077644258,52.69304690421538],[-127.55484866666082,52.69313386528067],[-127.55458568480776,52.69321638441318],[-127.55431882871434,52.693293914413424],[-127.55405490580544,52.69337588880448],[-127.55379774317709,52.6934656197669],[-127.5535539894819,52.69356694703658],[-127.55330652792665,52.6937451063942],[-127.55316773733684,52.69390444317203],[-127.5530289255521,52.694063224024234],[-127.55288447361308,52.694219837538775],[-127.55271469821673,52.69436838387932],[-127.55256271168851,52.69452173392858],[-127.55245569498982,52.69468849512225],[-127.5523655342171,52.69486008154666],[-127.55227817958003,52.695032195631875],[-127.55220389955957,52.695207490218635],[-127.55209406786653,52.69537317627587],[-127.5519439483652,52.695527056591324],[-127.55177980378205,52.69567776864377],[-127.55161752522142,52.69582844672854],[-127.55146274313677,52.695981832139246],[-127.55130702086576,52.69613467376634],[-127.55113814570123,52.69628264054406],[-127.55095418366287,52.69642351606805],[-127.55074941451049,52.69655290107702],[-127.55053234520943,52.69667516671585],[-127.55030864052918,52.696793591877444],[-127.55008312245644,52.69691316158996],[-127.54984115780657,52.69701389184295],[-127.54955261151132,52.697056381987686],[-127.54925784414137,52.69705524423115],[-127.5489615954844,52.69703898752776],[-127.54866646308767,52.69702775526445],[-127.54836972161371,52.69702327843506],[-127.5480786208965,52.6969951765549],[-127.54778662762254,52.69696821571344],[-127.54749402466955,52.69695022113403],[-127.54721565902608,52.69689000510511],[-127.5469415689657,52.69681964303219],[-127.54666394187976,52.696754375990615],[-127.54638272605006,52.69669195369742],[-127.54616091575491,52.696581099560426],[-127.54598237285387,52.696436052865685],[-127.54580106476344,52.69629159843158],[-127.54560709226745,52.69615571388149],[-127.5454094764547,52.69602156308556],[-127.54520907543784,52.695887448732464],[-127.54497898344945,52.695777831686236],[-127.5447066355677,52.69570407851199],[-127.54441593962854,52.69566138948147],[-127.54417499740154,52.695559195989404],[-127.5441741692873,52.6953820910373],[-127.54433856754683,52.6952381215006],[-127.54454059826497,52.69510933991382],[-127.54452673963961,52.6949307298611],[-127.54439107165186,52.69476661412943],[-127.5441520476193,52.694666072279496],[-127.54386572095419,52.694616042371855],[-127.54356948600511,52.69459921605467],[-127.54327439220066,52.694588534887046],[-127.54296860664132,52.69458975981583],[-127.54275707367563,52.69448044979848],[-127.54257841511841,52.69433203653729],[-127.54239250329361,52.694187637567865],[-127.5421822005769,52.694060930532025],[-127.54196375709013,52.69393994428664],[-127.54173987257938,52.693821827302415],[-127.5415069736002,52.693711110565296],[-127.54126867422666,52.693604392432945],[-127.54102229432334,52.69350507112507],[-127.54076693461725,52.69341370547239],[-127.54050440792801,52.69332916850251],[-127.54023194757016,52.693252043621335],[-127.53994693954658,52.693237858488146],[-127.53965147417007,52.69326808473236],[-127.53935497411183,52.69329552585185],[-127.53904946728635,52.6933298105809],[-127.5387628736601,52.693323490320175],[-127.53850899733817,52.69324723810274],[-127.53826704860627,52.69314224789725],[-127.53803389533623,52.69302368080368],[-127.53780260138574,52.69290565379815],[-127.53757604828503,52.692790371005124],[-127.53735759855768,52.69266824644366],[-127.53714733848113,52.6925420949425],[-127.53694341550016,52.692411940874486],[-127.5367458238412,52.69227721040251],[-127.5365537109078,52.69214017466063],[-127.53636514308853,52.691998599151354],[-127.5362242797789,52.691843510261094],[-127.53608004308586,52.69167165067774],[-127.53599439519722,52.69150574784699],[-127.53592005821378,52.69131951872732],[-127.53585751502932,52.69115163552967],[-127.53585633937499,52.690963881143716],[-127.53587517035545,52.690791566946594],[-127.53589209736934,52.69059180903795],[-127.53559548743033,52.69061531439805],[-127.53530571534654,52.69064882714359],[-127.53504826851473,52.69073122960349],[-127.53480751826518,52.690839760173006],[-127.53456666654874,52.69094549357108],[-127.53432670681723,52.69105008480081],[-127.53407618878128,52.6911447340166],[-127.53379759646559,52.691206112085],[-127.53352782893924,52.691280834635236],[-127.53325508816803,52.69134998160552],[-127.53297450057364,52.691407464848965],[-127.53269195419952,52.691461610105065],[-127.53240532631763,52.69150571924426],[-127.53211357290658,52.69153588694343],[-127.53182693854545,52.691579429757866],[-127.5315403692705,52.69162522194784],[-127.53125267983143,52.69166541419092],[-127.53096092452016,52.691695579013576],[-127.53066693553723,52.691715118479564],[-127.53037188708925,52.69173074312806],[-127.53007676369685,52.69174469101678],[-127.52978165493232,52.69175863796752],[-127.52948647126954,52.69177090815784],[-127.52919136213207,52.691784853619936],[-127.52889639804317,52.69180328037672],[-127.52860768621568,52.691840681446635],[-127.52832900153258,52.69189980554646],[-127.52805336239794,52.69196618008154],[-127.52777676356723,52.69203144549851],[-127.52750307537057,52.69210060018254],[-127.52722841231942,52.692168636982714],[-127.52694975855967,52.69222832230464],[-127.52666387366389,52.692267367582474],[-127.52636591387758,52.692279657088804],[-127.5260750298587,52.692308677273374],[-127.52578655176528,52.692352794142785],[-127.52550011043965,52.692402488654544],[-127.52521954015873,52.692460508821675],[-127.52494863630692,52.69253017714174],[-127.52468468201009,52.69261265005652],[-127.52442954910445,52.692708450264725],[-127.52419342472369,52.692818019083944],[-127.52398098223209,52.692941851774464],[-127.52377744087704,52.69308126189597],[-127.52359834597698,52.69323100717567],[-127.52346209340476,52.69338635536264],[-127.52344295725999,52.693551944678845],[-127.52355868083366,52.69373091611875],[-127.52376199723714,52.69400123239694],[-127.52368124512073,52.69417995470307],[-127.52348558770271,52.69430693068381],[-127.52325514970512,52.69442035123717],[-127.5230077323025,52.6945250154656],[-127.52274864508202,52.69461470224224],[-127.52248162318236,52.694689362905066],[-127.52220784951912,52.694756819908754],[-127.5219301705043,52.69481872214631],[-127.52164862605747,52.69487619005229],[-127.52136508866167,52.69492975526492],[-127.52107959851912,52.69498054719526],[-127.52079402808675,52.69502909750432],[-127.5205074038664,52.69507429786116],[-127.52021772890977,52.69511169028369],[-127.51992600185889,52.69514350373964],[-127.51963331567339,52.69517420793764],[-127.51934160780553,52.69520658464851],[-127.51905193093573,52.69524397418273],[-127.51876719586807,52.69529026668722],[-127.51848938918044,52.69534879935371],[-127.5182156247213,52.69541680273905],[-127.51794580347462,52.6954914891601],[-127.51767793313014,52.69556894760443],[-127.51740816940506,52.69564530899],[-127.51713637316212,52.695716647203774],[-127.51685965405436,52.695779645730504],[-127.51657893602977,52.69583484857037],[-127.51629528687846,52.69588560479322],[-127.51600968530221,52.69593358765093],[-127.51572306479761,52.69597877607273],[-127.5154364088742,52.69602339927006],[-127.515148833725,52.69606804262424],[-127.51478116775719,52.69612772959106],[-127.51447984902285,52.696150685643744],[-127.51419025034605,52.69613817406671],[-127.5139173564599,52.69607388977974],[-127.51364617727556,52.69600565478934],[-127.51337491972984,52.695935178240696],[-127.51310541660938,52.69586187146672],[-127.51283583553128,52.695786332104845],[-127.51256713443478,52.695709650814436],[-127.51229932879151,52.69563184533725],[-127.51203148422762,52.69555290981543],[-127.51176364096796,52.69547398264013],[-127.51149581831918,52.695395610598204],[-127.51122893040285,52.69531722588226],[-127.51096206819149,52.69523996120976],[-127.51069520183552,52.69516213101926],[-127.51042923576613,52.69508373260614],[-127.51016325106491,52.695004777833695],[-127.50989724742617,52.69492525773805],[-127.50963216369635,52.69484572518055],[-127.50936705626572,52.69476507136157],[-127.50910376776089,52.694683828524916],[-127.50883954175097,52.694602041187416],[-127.50857714981484,52.69451967361693],[-127.50831471909342,52.694436176023686],[-127.5080541224598,52.69435209821341],[-127.5077934479191,52.69426577888492],[-127.50753548187598,52.69417718214549],[-127.50728020953369,52.69408630820334],[-127.50702852519505,52.6939920245852],[-127.5067795150513,52.693894908050375],[-127.5065221962191,52.693798453953605],[-127.50626113389107,52.69370092650567],[-127.50601369881963,52.69359537629849],[-127.50580005782611,52.69347593906449],[-127.50563481473468,52.69333625725588],[-127.5055125054724,52.69317865227867],[-127.5054185060447,52.693008917251014],[-127.50534274221201,52.692831091780626],[-127.50527247305999,52.69265096258992],[-127.50515682279989,52.692392939762414],[-127.5049140812261,52.69228901285107],[-127.50466775355935,52.69218848551111],[-127.50442048865621,52.69208741370521],[-127.50417593742827,52.691984629526104],[-127.5039395784591,52.69187781166495],[-127.50371316103879,52.69176357476657],[-127.50349849869744,52.691640783580304],[-127.50328729174299,52.69151122176501],[-127.5030851667729,52.691375938045425],[-127.50289488031761,52.691234897066494],[-127.5027220291789,52.691089147990496],[-127.50256848055345,52.690938666917276],[-127.50245995304745,52.69077696283853],[-127.50241012071187,52.69059824646781],[-127.502384208694,52.69041417408652],[-127.502352862452,52.6902340993461],[-127.5023243418912,52.69005510927899],[-127.502303211875,52.68987546830306],[-127.50228763905396,52.68969574699389],[-127.50227855761518,52.68951595129522],[-127.50228893884409,52.68933646172082],[-127.50236111294542,52.689148887969175],[-127.5022890985757,52.688997924590815],[-127.50208067452597,52.68886775988054],[-127.50182844274782,52.688756657657045],[-127.50156079819102,52.688681623946145],[-127.50127772077263,52.688642102892885],[-127.5009804921724,52.68862181032063],[-127.50067965740043,52.688604370170324],[-127.50038671466586,52.68857394130857],[-127.50010850904037,52.68851473340291],[-127.49984069221945,52.6884346491328],[-127.49958461532941,52.688346010968225],[-127.49933563048303,52.688247757562486],[-127.49908846456641,52.688148915360706],[-127.49883137394453,52.68805748163373],[-127.49857247158113,52.687967200497134],[-127.49833259593524,52.687864335457036],[-127.49812528478651,52.68773919845665],[-127.49794335439543,52.68759748650961],[-127.49777138998364,52.68744947686174],[-127.49759578070555,52.68730319059169],[-127.4974120062001,52.68716205742934],[-127.49722824772464,52.68702092377531],[-127.49704816086039,52.68687918685593],[-127.49687805474613,52.68673115212479],[-127.4967234276942,52.686575072311406],[-127.49654433652704,52.68643499886492],[-127.49628816094737,52.68634299193809],[-127.49602116154442,52.68625896968549],[-127.49584305129474,52.68612055962268],[-127.49569669954437,52.68596269569168],[-127.4955648734214,52.68579623410126],[-127.49543575587248,52.68562749578471],[-127.49530034465691,52.68546444263656],[-127.49514865541225,52.685312807107145],[-127.49496889527198,52.68518002168212],[-127.49473159988206,52.68507095551643],[-127.49444344027255,52.68499112795045],[-127.49414171467407,52.68494733523263],[-127.4938610096348,52.68494812143793],[-127.49360010165537,52.68501198499866],[-127.49334426515261,52.685115017440346],[-127.49308386751508,52.68522034945631],[-127.4928102056094,52.685290534842714],[-127.49252460933819,52.685337340262606],[-127.49223131035937,52.68537583140196],[-127.49193484944354,52.68540315235051],[-127.49163879942525,52.68541589461173],[-127.49134495417593,52.685412349380854],[-127.49105344621793,52.685395886886184],[-127.49076166540384,52.68537158031168],[-127.49047062344226,52.68534165872162],[-127.49017939174259,52.68530669892091],[-127.48988809704755,52.68526948828311],[-127.4895976632634,52.6852305889859],[-127.48930631611213,52.685192265570926],[-127.48901508155836,52.6851567379588],[-127.48872392990874,52.68512400652739],[-127.48843283278407,52.68509240362634],[-127.48814082186983,52.68506136763172],[-127.48784974940678,52.685030874983745],[-127.48755773933469,52.68499983753289],[-127.48726662429921,52.684967667006106],[-127.48697640911512,52.684934928320686],[-127.4866861358626,52.68490050371165],[-127.486396723289,52.6848643815077],[-127.4861080894882,52.68482377377003],[-127.48582370511735,52.68477189264768],[-127.48554094520293,52.684713829338754],[-127.48525825932877,52.684657450360454],[-127.48497405657078,52.684611169763],[-127.48468495375798,52.68458345122459],[-127.4843918736801,52.68457483900175],[-127.48409553602833,52.68457916305569],[-127.48379847819287,52.68458965636661],[-127.48350050150374,52.684600160571506],[-127.48320416327627,52.6846044734043],[-127.4829106564938,52.68458353216784],[-127.48261603491962,52.68458390283054],[-127.48232063055195,52.684588210561],[-127.4820245712466,52.684574025288846],[-127.48173100693299,52.684551395887425],[-127.48144241843337,52.68451189711636],[-127.48116332715811,52.684452090922974],[-127.48088371837724,52.68437772693251],[-127.4807508387168,52.68423256110321],[-127.48065961143556,52.68405939969104],[-127.48049779928793,52.683907873850494],[-127.48033293141778,52.6837485396288],[-127.48009703285292,52.68370556404161],[-127.4798066703371,52.6837753742011],[-127.47954170619695,52.683856072196534],[-127.47925828607448,52.68391234149536],[-127.47896613037607,52.68390370406535],[-127.47867825013915,52.68385746375552],[-127.47841311867649,52.68377281324648],[-127.47813270657808,52.683728154220766],[-127.47783604528959,52.683722933825905],[-127.47753845056505,52.683717724467364],[-127.47724899151707,52.68367934741872],[-127.47696369197398,52.68362745651145],[-127.47667480755447,52.683632788739054],[-127.47638343547665,52.68367345779692],[-127.47609397283,52.68371577900727],[-127.47580737720652,52.683760870245514],[-127.47551448642295,52.683784185684495],[-127.4752194963694,52.683800792053596],[-127.47492442456992,52.68381460076007],[-127.47462935721086,52.683828973633986],[-127.47433447792821,52.683848383280655],[-127.47403864542513,52.68386723921971],[-127.47374508253064,52.6838715021572],[-127.47345570264912,52.68383534773758],[-127.47317222062648,52.68378231274496],[-127.47289313083972,52.68372248698522],[-127.47261050669955,52.683667197903766],[-127.47232185520978,52.68362542668061],[-127.47203171493129,52.68364813381212],[-127.47174341733185,52.68369772034815],[-127.47145784717593,52.68374559489074],[-127.47117322898805,52.68379401275872],[-127.47088869141025,52.6838452268542],[-127.47060802663002,52.68390088442138],[-127.4703303625773,52.68396322045063],[-127.47005281342919,52.68402892624308],[-127.4697772691864,52.68409908109178],[-127.46950938303993,52.684176429885554],[-127.46925572624811,52.68426368809998],[-127.46903651915537,52.684382465348776],[-127.46885436363875,52.68452823630662],[-127.46868337785023,52.68467554371838],[-127.46853588279701,52.68483265371639],[-127.46843134897422,52.68499930410327],[-127.4683529621122,52.685172361030496],[-127.46828673677341,52.685348619207126],[-127.4682270206517,52.68552536060967],[-127.46820280946679,52.685711189170874],[-127.468136428997,52.68588296525336],[-127.46796331442388,52.68602246027963],[-127.4677396292512,52.68614633085042],[-127.46751315236551,52.68626967101195],[-127.46732884347338,52.6864070634763],[-127.46720276154818,52.68656725688574],[-127.46711331027471,52.68674212840098],[-127.46705836438616,52.68692329301394],[-127.46704038827556,52.687101752143626],[-127.46706589242413,52.68727798915652],[-127.46712476264774,52.687454919808076],[-127.4672592104691,52.687809145419784],[-127.46720038610792,52.6879853097581],[-127.4671415615699,52.68816148300977],[-127.46708366985266,52.68833763554192],[-127.46702299193811,52.68851383191602],[-127.46696046079703,52.68869004249586],[-127.46691742996161,52.6888676944984],[-127.46692633952006,52.689046381291206],[-127.46695658292434,52.689225912622305],[-127.46697294514017,52.689406182909146],[-127.46698559835284,52.68958594367122],[-127.46700102265457,52.68976566070479],[-127.46702475676649,52.689944717543476],[-127.46706603962565,52.69012187739451],[-127.4671562866611,52.690294495484316],[-127.46727680504493,52.6904583222285],[-127.46742028151299,52.69061626510729],[-127.46758936300009,52.690763789052994],[-127.46777758264372,52.69090211396959],[-127.46797583097094,52.691035819960575],[-127.46820546189863,52.69119268111269],[-127.46841281760355,52.69132123225448],[-127.46862468317661,52.69144636354407],[-127.46886376148176,52.69155433843433],[-127.46909277899321,52.69166635803241],[-127.46925368061223,52.69181847510217],[-127.46932631391616,52.69199074764463],[-127.4693325439016,52.692172265579],[-127.46935997061493,52.69235015446552],[-127.46943268247574,52.692524676805206],[-127.46952103824209,52.69269619575729],[-127.46963333946667,52.69286293007982],[-127.4697593939076,52.69302556370882],[-127.46990928335572,52.693180616053716],[-127.4700839844518,52.69332975172057],[-127.47026952887309,52.69347034816307],[-127.47041869952172,52.69363156969514],[-127.47038000919281,52.69380020025496],[-127.47026635166041,52.693971458529354],[-127.47019912928243,52.69414605223],[-127.47017287214278,52.694325736082874],[-127.47015866881269,52.69450582448652],[-127.4701435319214,52.694685933559704],[-127.47013396747288,52.6948659636421],[-127.47013827164649,52.69504526349537],[-127.47016478918141,52.695223728297755],[-127.4702200162029,52.695401823463364],[-127.47028542194596,52.69557923472066],[-127.47033784007428,52.6957562530926],[-127.47035597111557,52.695933137213736],[-127.47031569512362,52.69610963410928],[-127.47023832537732,52.696285475977355],[-127.47016651325904,52.69646124795502],[-127.470143887388,52.696639199962455],[-127.47017972735416,52.69681922444043],[-127.47023399934132,52.69699621943735],[-127.47030213628317,52.697171910292795],[-127.47039783931548,52.69734109399001],[-127.47055788640486,52.697494340704516],[-127.47066739823114,52.69766054378506],[-127.47074476815952,52.69783556233004],[-127.47078607402197,52.69801271992231],[-127.47076165039955,52.69819181543487],[-127.47057131762938,52.698452027661965],[-127.47054276915152,52.69856504725062],[-127.47047515157949,52.69864716183184],[-127.47031918343869,52.69877466861502],[-127.47013020497458,52.69891212242242],[-127.46993557460856,52.69904739599062],[-127.46973719453365,52.699181039337255],[-127.46953690705018,52.69931358530912],[-127.46933478026533,52.69944615400001],[-127.46896212981451,52.699660450528164],[-127.46895818619286,52.69970758025751],[-127.46893468374549,52.699752157532565],[-127.46891847768117,52.69990088335127],[-127.46883290287647,52.700000045530494],[-127.46867166627501,52.700190389615145],[-127.46853347374342,52.70034961351362],[-127.468396199545,52.70050883466627],[-127.46825799013737,52.7006680583913],[-127.46812071389311,52.700827279186676],[-127.46798437020782,52.700986479128105],[-127.46785085532728,52.70114732932645],[-127.46771640554873,52.701308191064996],[-127.46757725290135,52.70146686966904],[-127.46742870002402,52.70162174705947],[-127.46722577554839,52.70175880550734],[-127.4670498982337,52.701900564414544],[-127.4669769186228,52.702070187346635],[-127.4669338698743,52.70224727284233],[-127.46690858995966,52.702429184409176],[-127.46688978799675,52.70261101476835],[-127.46686815629143,52.70279120361141],[-127.46685670417116,52.70297069990556],[-127.46685452140701,52.70315063601636],[-127.46686161902433,52.703330464781615],[-127.46688075388099,52.70351013371989],[-127.46690359534384,52.703689765155],[-127.46691900533494,52.70386892473087],[-127.46691865682305,52.70404828175805],[-127.46690164530085,52.7042278475681],[-127.46687814037267,52.70440749471939],[-127.46685738814159,52.70458654238852],[-127.46684687399646,52.70476659166518],[-127.46684283375278,52.70494599483806],[-127.46683787854502,52.70512596544616],[-127.4668282639872,52.70530543842074],[-127.46681868352901,52.70548547590482],[-127.4668044623835,52.705665562544105],[-127.46677815005391,52.70584468866937],[-127.46673139034638,52.706021820078014],[-127.46666883273424,52.70619803738027],[-127.46658856578338,52.70637166961496],[-127.4664886741348,52.70654049883314],[-127.46636075364968,52.706702962274534],[-127.46621884442861,52.70686279388347],[-127.46608437056284,52.707023653127784],[-127.46597696671579,52.70718977797234],[-127.46590780995277,52.70736270548302],[-127.46586662855529,52.70754089636908],[-127.4658403833894,52.70772169809549],[-127.46581689112402,52.70790190036408],[-127.46580356514154,52.70808141932646],[-127.4658032460901,52.70826134037253],[-127.46579457957617,52.70844135694169],[-127.4657868899396,52.708623047166014],[-127.4657530964386,52.70880002439234],[-127.46566926779988,52.70897818397603],[-127.46550277567545,52.709124305739394],[-127.46525740623032,52.70921425498282],[-127.46498171131651,52.709284962061744],[-127.46470135546039,52.70935516182965],[-127.46444104141696,52.70944193342803],[-127.46420554764248,52.709549683085534],[-127.46397870704259,52.7096663006032],[-127.4637480284244,52.709779593827484],[-127.46349823620835,52.709875755279874],[-127.46320736233652,52.70990965650112],[-127.462919543565,52.70995136545716],[-127.46263275421492,52.709995867691525],[-127.46234697910027,52.71004315443285],[-127.46206219918048,52.71009266993538],[-127.4617804164031,52.710148308043834],[-127.46149303486897,52.71020290337203],[-127.4612305876735,52.71028183866604],[-127.46100641192656,52.71039561010734],[-127.46079186535206,52.71051991443625],[-127.46058494121756,52.710650283980705],[-127.46038179906031,52.71078284785244],[-127.46018522637641,52.710917571306204],[-127.46001508209993,52.71106653714586],[-127.45981554728317,52.71119624811827],[-127.45957626822972,52.71130235833307],[-127.4593265152237,52.71140019597388],[-127.4590816161203,52.711504689279934],[-127.45881911860077,52.711582507594095],[-127.45852920173652,52.71161750598628],[-127.45823332305977,52.71164080349517],[-127.45794038872144,52.71166911232667],[-127.45764653469877,52.71169743186977],[-127.45736253904744,52.711743007094654],[-127.45709932733652,52.71182699108723],[-127.45683516123724,52.7119104213896],[-127.45656816870743,52.71199277426316],[-127.45632110096652,52.712088321050594],[-127.45614623612714,52.71223509775245],[-127.4559625413459,52.71236741169039],[-127.45567091584547,52.712406907915636],[-127.45537421064827,52.71243358017594],[-127.45508113141217,52.712457399774344],[-127.45479527422376,52.712502982819785],[-127.45451837817308,52.712566953890544],[-127.45424930997079,52.71264260145909],[-127.45398412298654,52.712723795945635],[-127.45371893094274,52.71280443388966],[-127.4534497688872,52.712877838852236],[-127.45316984810546,52.71293455359793],[-127.45288010768668,52.71297514032506],[-127.4525892572058,52.713010135385666],[-127.45229531437569,52.713036200533246],[-127.45200234770009,52.71306393873017],[-127.45171541179477,52.713105043755995],[-127.45143846923779,52.71316788704726],[-127.45117141615394,52.71324854217423],[-127.4509244242515,52.71334688315374],[-127.4506993088755,52.71346176667385],[-127.4504050391104,52.71347830754718],[-127.45010625638893,52.71349825742662],[-127.44983977638039,52.71356881387321],[-127.44960338401917,52.713679351089354],[-127.4493917082394,52.713807516909405],[-127.44924671581025,52.71396120357838],[-127.44917297223192,52.714138103988084],[-127.44902618112509,52.71429348951463],[-127.44882294793057,52.714424912536934],[-127.44856436735468,52.71450994041895],[-127.44829443688567,52.7145883824582],[-127.44802924565745,52.71467012807053],[-127.44780411126838,52.71478444102216],[-127.44759517876521,52.71491201345992],[-127.44739669726162,52.7150472939218],[-127.44721137506798,52.71518746008859],[-127.44705813527213,52.71534460850031],[-127.44692563940232,52.71551157983443],[-127.44675984479372,52.71565374577523],[-127.44650656742805,52.71573142176037],[-127.4462067510101,52.7157765998125],[-127.4459491100679,52.715862166057924],[-127.4457106899367,52.71596823625246],[-127.44547994412152,52.716081501785645],[-127.44525399389072,52.71619974738808],[-127.4450346549908,52.71632182974074],[-127.44482096654495,52.71644609278083],[-127.44461671907918,52.71657583465286],[-127.44441817868298,52.71670943350857],[-127.44422059427943,52.71684414114681],[-127.44402109840159,52.71697719507435],[-127.44381495450189,52.717105837890074],[-127.44359936712529,52.71722900102086],[-127.44337807020709,52.717348306344604],[-127.44315111246635,52.71746431818145],[-127.44292127093337,52.71757755826473],[-127.44268762650273,52.71768804686945],[-127.44245111735879,52.717796328401164],[-127.442203140999,52.71789410625754],[-127.44194557776096,52.71798302516743],[-127.44168997652947,52.71807472615925],[-127.44143913333751,52.71817029576299],[-127.44118928365212,52.718268085484794],[-127.44094986241748,52.71837248090767],[-127.4407351795581,52.71849561838382],[-127.44053390557815,52.718631485724266],[-127.44001617818785,52.71859413690615],[-127.43974081042327,52.71865020668257],[-127.43946873903666,52.71872137237449],[-127.43919977499617,52.718802022685495],[-127.43893367720148,52.7188854349934],[-127.43867222430919,52.718969354565516],[-127.43841561952448,52.719059383604545],[-127.4381628715265,52.719153839463395],[-127.43791967379562,52.71925658897364],[-127.43769076206509,52.71937037190089],[-127.43740210873047,52.71941763169212],[-127.43714814556036,52.719337799633706],[-127.43689996804096,52.71923716326713],[-127.43665256034876,52.719132024239016],[-127.4363972335186,52.719039321060585],[-127.43613473713422,52.71895398683858],[-127.43586608059859,52.71887825101388],[-127.43558868679145,52.718818879700976],[-127.43530161321637,52.71877476345529],[-127.43501191706913,52.71873515341252],[-127.43472561380557,52.71868654259684],[-127.43444284535451,52.7186322741585],[-127.43415751526614,52.718584770978744],[-127.43386634734907,52.71855695042479],[-127.43357021523471,52.71854655988972],[-127.43327329942979,52.718540670895834],[-127.43297717165667,52.718530843761],[-127.4326809838078,52.71851877474989],[-127.43238393687248,52.71850895736391],[-127.43208801565204,52.71850528610089],[-127.43179431941853,52.71851224022198],[-127.43150425853992,52.718544930594085],[-127.43121854188769,52.71859662298317],[-127.43093473464405,52.718649977214206],[-127.4306518458474,52.71870331055878],[-127.43037000331228,52.718760002190784],[-127.4300930262254,52.718823350334354],[-127.42982282888838,52.71889559144509],[-127.42955845366792,52.71897559839179],[-127.42929701927264,52.719060617503025],[-127.42903848416961,52.71914896342427],[-127.42878281089708,52.7192395157004],[-127.42852809342362,52.71933117667031],[-127.4282753222953,52.719425620137486],[-127.42802541664919,52.719522825937865],[-127.4277821736339,52.71962498965273],[-127.42754372118257,52.719731587129324],[-127.42731002528733,52.719842044894165],[-127.4270791762133,52.719954709336626],[-127.42684931614339,52.720069038160474],[-127.42661947367633,52.720183931243234],[-127.4263905269376,52.72029769201223],[-127.42615967298411,52.72041035460798],[-127.42592596980869,52.72052080956095],[-127.42569029958298,52.72062792518701],[-127.4254450791794,52.720726754083906],[-127.42516340274878,52.7207890265139],[-127.42487319090569,52.720817783237315],[-127.42457964537674,52.72082975690573],[-127.42430562497866,52.7208992246263],[-127.42403454501964,52.72097370459387],[-127.42376439815591,52.721048163607406],[-127.42350098871975,52.72112983059861],[-127.42325956112913,52.721231406521824],[-127.42304393473155,52.72135620787755],[-127.42283395802774,52.72148318202395],[-127.42262774750517,52.7216123518711],[-127.42242248886687,52.72174207471443],[-127.42221342794987,52.72186903654723],[-127.42200533739498,52.72199710712488],[-127.42180855878028,52.72213120058406],[-127.42162971502118,52.722274608330636],[-127.42144049485432,52.72241253708903],[-127.42122669264477,52.72253675674452],[-127.4209939179534,52.72264774611491],[-127.42076397148573,52.72276038656101],[-127.42054072836844,52.7228796707747],[-127.4203849099779,52.72301831347571],[-127.42036582684881,52.72319789286213],[-127.42017824803114,52.723329638890604],[-127.41996164531957,52.723453325074026],[-127.41973380606294,52.723573784272205],[-127.41951349290842,52.723697514554964],[-127.41930821452678,52.72382722279589],[-127.41910196362575,52.723955830478246],[-127.4188680926415,52.72406234494779],[-127.41889154238068,52.72426606891905],[-127.41891419343408,52.724445707171604],[-127.4189257019367,52.72462491544862],[-127.41888945756752,52.724790130227895],[-127.41868138361376,52.72491987105646],[-127.4184267964478,52.72501711207158],[-127.41815986721994,52.725105534576514],[-127.41789447896805,52.72518497042071],[-127.41762231098332,52.72525552033037],[-127.41734727580348,52.72532330646909],[-127.4170741900129,52.72539442216111],[-127.41680859011825,52.72546713251376],[-127.41657657790772,52.72557418459071],[-127.41646640650255,52.725748138946926],[-127.41646945794346,52.725924086702086],[-127.41656152688397,52.726100078774074],[-127.41656287308871,52.7262805307987],[-127.41650959066695,52.72646388532954],[-127.41637648139877,52.726617384320896],[-127.4161700559873,52.72674093981538],[-127.41592794157539,52.726851475319314],[-127.41568677877429,52.72696255477415],[-127.41546351440576,52.72708182879642],[-127.41523933300239,52.727201678392724],[-127.41500359921828,52.72730877203604],[-127.41473133883797,52.727377074184496],[-127.4144436147128,52.72742650679493],[-127.41425515710173,52.72756105094819],[-127.41417267209023,52.72773130568599],[-127.41412846313466,52.72790894466594],[-127.41408983464721,52.72808707220794],[-127.41404751618315,52.72826580920198],[-127.41400145198591,52.728443470454714],[-127.41392087031198,52.72861482282385],[-127.41380017502638,52.72877937780634],[-127.41372154237179,52.72895406921245],[-127.41362697064076,52.729123348309564],[-127.41348291719245,52.72928257121654],[-127.41329175235238,52.72941995296455],[-127.41303388940023,52.72950320506638],[-127.41276479291783,52.7295837942622],[-127.41249800850181,52.72967780595012],[-127.412258508757,52.729783818140305],[-127.4121222300452,52.72992614069171],[-127.41214147982454,52.7301158995552],[-127.41223987094253,52.7302867785663],[-127.41225038151347,52.73046487759585],[-127.4122387111616,52.73064492091541],[-127.41221498081089,52.730825118573826],[-127.41217821464897,52.73100378750066],[-127.41212271521177,52.73114905474257],[-127.4121146787406,52.731326812320475],[-127.41209750411986,52.731509172665],[-127.4120504899487,52.73168627913642],[-127.41194108965811,52.73185630009916],[-127.4117658251844,52.7319979619642],[-127.41147450112193,52.732023890880654],[-127.41117549262147,52.73201348638406],[-127.41087918062031,52.73200024187768],[-127.41058274310679,52.73198363539056],[-127.41028974113578,52.73198659832096],[-127.41000067341955,52.73202427048658],[-127.40971085497206,52.73206754657206],[-127.40941769346934,52.73209405740514],[-127.40912302090898,52.73210264207937],[-127.4088274627359,52.73208434368618],[-127.408532052121,52.73207051746542],[-127.4082359618977,52.73206398909759],[-127.40793993069938,52.73205970110118],[-127.40764400673467,52.732058217837356],[-127.4073482337194,52.7320617716415],[-127.40705172521395,52.732070938101444],[-127.40675626172514,52.732083454000836],[-127.40646078322875,52.73209596933306],[-127.40616541134222,52.732111280438126],[-127.40587215511918,52.732134976738465],[-127.40558721449973,52.73218547443935],[-127.40530322977517,52.732237080882996],[-127.40501055727005,52.7322501238165],[-127.40471448830695,52.73224470719911],[-127.40441641420111,52.73223426528269],[-127.4041174609782,52.73222551899984],[-127.40381277951435,52.73221180097863],[-127.40355139372834,52.73227377650921],[-127.4033175491356,52.73238362971601],[-127.40309064547982,52.73250740621695],[-127.4028559518757,52.732619501481736],[-127.40259127620845,52.73269440917525],[-127.40229063330125,52.732719305783995],[-127.4019975504018,52.73269142828853],[-127.40170834542684,52.7326125066654],[-127.40144506346704,52.73261677764145],[-127.40121396354755,52.732725463822696],[-127.40098447987175,52.73285543647818],[-127.40072670421047,52.73294314336476],[-127.40044773732764,52.73300645193192],[-127.4001598487906,52.73305248785569],[-127.40000092255809,52.7330712009566],[-127.39986784746169,52.73308624219277],[-127.39957171510294,52.73310715019475],[-127.39927503286958,52.733111259322],[-127.39898632122238,52.733075475705185],[-127.39870045754466,52.7330133114989],[-127.39841271803556,52.73300722348062],[-127.39812438776305,52.733039808727185],[-127.39783556189407,52.733085850093225],[-127.3975468966915,52.733136372461644],[-127.3972580510996,52.73318184768254],[-127.39696779118876,52.73321221125075],[-127.39667773867461,52.73319213068768],[-127.3963851003912,52.73314966204033],[-127.39608507634095,52.733136424336195],[-127.39577681004094,52.733126646800265],[-127.39547829105915,52.733131324162834],[-127.39520851997717,52.7331642460469],[-127.39505709815842,52.733328016277],[-127.39501553837552,52.7335039379323],[-127.39500568918888,52.73368564245122],[-127.39498652771434,52.73386577199057],[-127.39491987003724,52.73404030655395],[-127.39482433298325,52.73421126621263],[-127.39473811843477,52.734383226715266],[-127.3946241292762,52.734642392629105],[-127.39439322385044,52.73475835294137],[-127.39416984130499,52.73487703],[-127.39394833337676,52.73499679624324],[-127.39373251228939,52.7351198660768],[-127.39352708281245,52.73524897238481],[-127.39332829948599,52.735383038859425],[-127.39313803191845,52.73552205226765],[-127.39295716346054,52.73566488123995],[-127.39278848303407,52.73581148369558],[-127.3926761515709,52.735979834164056],[-127.39265876079742,52.73615770005683],[-127.39268505350515,52.736338418325374],[-127.39271412052115,52.73651909462123],[-127.39270972984635,52.73669737085081],[-127.3926532875389,52.73687290310087],[-127.39256803363041,52.737046535956885],[-127.3924781319487,52.73721966799518],[-127.39240677848578,52.73739313546206],[-127.3924273609346,52.737569428914355],[-127.3924982000392,52.73775073851578],[-127.39256635634597,52.737934877726296],[-127.39246906025579,52.73808063087493],[-127.39222874797105,52.73819333545498],[-127.39197818663713,52.738304475448],[-127.39172191459143,52.738411208068406],[-127.39148815160584,52.73852551013402],[-127.39136130424306,52.73867554086207],[-127.39129726782512,52.738845557796765],[-127.39126136374018,52.73902532874432],[-127.39123860253935,52.739209427205935],[-127.39121117871137,52.73939301606795],[-127.39116318945626,52.73957180950704],[-127.39108537925375,52.73974647335577],[-127.39096261875623,52.739908219944155],[-127.3907760875453,52.740048870248266],[-127.39060929508027,52.74019768823969],[-127.39047536686219,52.74035844587629],[-127.39034991859347,52.74052302137789],[-127.39022348008791,52.74068593159587],[-127.39008483182353,52.74084450289951],[-127.3899188777273,52.74099051204703],[-127.3897049056522,52.74111466347491],[-127.389481534876,52.741235572208325],[-127.38925654105994,52.74136321617595],[-127.3891811488505,52.74152720567454],[-127.38916745080022,52.74170502641235],[-127.38917055823471,52.74188657551766],[-127.38917651002257,52.742069776713144],[-127.3891740680168,52.74225139156896],[-127.38917651035734,52.74244079479732],[-127.38899209990244,52.742561796442544],[-127.38872226515073,52.742651860116055],[-127.3884496364314,52.74274140029053],[-127.3882409646066,52.742858204575434],[-127.38812929526641,52.74301926025554],[-127.38807687766204,52.74320482965775],[-127.38804567362212,52.743386785016256],[-127.38803107178884,52.743565736944085],[-127.38802949042297,52.74374566447709],[-127.3880316367936,52.74392610379664],[-127.38802726541306,52.74410605536885],[-127.38800526210922,52.7442856598117],[-127.38795815244617,52.74446331981578],[-127.38789056940284,52.74463954540632],[-127.38781464591223,52.744815860744964],[-127.3877115241904,52.744982974959534],[-127.38755491122289,52.745131667209186],[-127.38734759644281,52.74526190425496],[-127.38714312806026,52.745394349008365],[-127.3869565420372,52.7455344280045],[-127.38677088967681,52.74567449562684],[-127.38658713084858,52.745816226351025],[-127.38640711354932,52.74595846845724],[-127.38623181568119,52.746103452188116],[-127.38608099458531,52.746259364043645],[-127.38594047593968,52.7464185075498],[-127.38573869689918,52.74654812006989],[-127.385500225413,52.746661908572094],[-127.38522051423057,52.74670612357977],[-127.3849503465564,52.74675808035963],[-127.38465544974605,52.746791829447176],[-127.38435728749997,52.746810479787634],[-127.3840720423345,52.74685532233153],[-127.38378899936222,52.74691134712232],[-127.3835068543053,52.746966239722404],[-127.38321787924774,52.747010568231964],[-127.38292099734475,52.747040408728125],[-127.38263982474146,52.7470106646498],[-127.38229045287059,52.74690885725036],[-127.38203833673025,52.74700318832267],[-127.38179216113744,52.74710864876502],[-127.38154299542171,52.74720798348412],[-127.38128493061839,52.74729060913309],[-127.38100805532683,52.74733646636663],[-127.38070844308237,52.74733887596004],[-127.38040591440216,52.747337400496136],[-127.38011015990408,52.747344802655974],[-127.37981445659375,52.747353333326544],[-127.37951895495463,52.74736857727102],[-127.37922555804354,52.7473910859885],[-127.3789322364724,52.747416399798496],[-127.37863892910501,52.74744170373568],[-127.37834459630245,52.747464221245686],[-127.37804858874928,52.747492362172906],[-127.37775238236283,52.74751434425656],[-127.37745997522067,52.7475104914229],[-127.37717220992143,52.74747744905963],[-127.37688671469883,52.74742867785375],[-127.37660194193518,52.7473737370445],[-127.37631543794309,52.74732217856124],[-127.37602643320541,52.747279615890704],[-127.37572647928525,52.74724278551767],[-127.37544034223954,52.747260715948386],[-127.37516380338839,52.74731720831806],[-127.37488947884677,52.7473848740013],[-127.3746173148053,52.747462045753366],[-127.37434995697085,52.74754420898922],[-127.37408636504668,52.74762856025758],[-127.3738246960989,52.74771457419365],[-127.37356504627515,52.74780616832],[-127.37331493728699,52.74790549628435],[-127.37308184964802,52.7480152772087],[-127.37288933501624,52.748145870295374],[-127.37276115041384,52.74831494963957],[-127.3726016980881,52.74846365408335],[-127.37236950427305,52.74857229316645],[-127.37210988208375,52.74866500448638],[-127.37183487590501,52.74874052598244],[-127.37155544268089,52.748794236787326],[-127.3712581778955,52.74881228708239],[-127.37095491945344,52.74881751201839],[-127.37066343501506,52.748842218517616],[-127.37039183313928,52.7489087296401],[-127.37013711891974,52.74900978129189],[-127.36992027732572,52.74913449326554],[-127.36975229531015,52.74927825379065],[-127.36961831393872,52.74944066283697],[-127.3695676095394,52.74962452526106],[-127.3694789975703,52.74978416209564],[-127.36938901151011,52.74995839541563],[-127.36930956131984,52.75014314949338],[-127.36920893220442,52.7503040473427],[-127.3689673008176,52.75040831501067],[-127.36872584732986,52.7505181755553],[-127.36854195392867,52.75065819234073],[-127.3684229486913,52.7508249174029],[-127.36827287313982,52.750977424560894],[-127.36805408924167,52.75109991364098],[-127.36780960643189,52.75120252625246],[-127.36753365910177,52.751278604194475],[-127.36730415594037,52.75138496850793],[-127.36712868161605,52.751527126449034],[-127.36697217001301,52.7516819486387],[-127.3668147044828,52.751836225755625],[-127.36663464993562,52.75198012210325],[-127.36643950462994,52.752116903848155],[-127.36626031397275,52.7522591036807],[-127.36615894528899,52.752426176472],[-127.36613780184668,52.752606885553035],[-127.36614830169228,52.75279002349347],[-127.36614385534648,52.75297053790056],[-127.36607782421726,52.75314000530457],[-127.36592319397836,52.75329592477191],[-127.365733749413,52.75343712222804],[-127.36549504310496,52.75354638763004],[-127.36529788857204,52.75367870707671],[-127.365142154691,52.75382904280269],[-127.36506868192431,52.75399858718975],[-127.36498140878722,52.75417166384601],[-127.3649872225677,52.754353735337624],[-127.36498467710402,52.7545353482014],[-127.36493557256415,52.75471246376441],[-127.3648659660874,52.75488644640805],[-127.36478706774096,52.75506054614752],[-127.36470723046605,52.755234091813406],[-127.36463484977054,52.75540867146566],[-127.36456349286851,52.75558603685126],[-127.36448574170768,52.755766848220134],[-127.36443574889279,52.75594508564563],[-127.36444581626435,52.75611534262657],[-127.36456340460342,52.756280985238405],[-127.36476202689963,52.756427194149246],[-127.36499373055874,52.75653377762519],[-127.36526330777414,52.756605737077585],[-127.36554926251569,52.75666741717289],[-127.36582168590927,52.756741028004434],[-127.36607344551263,52.756836166844714],[-127.36631981931001,52.75693698131261],[-127.36657156340823,52.75703156332012],[-127.36682601269824,52.757123871483614],[-127.3670804779306,52.75721617891606],[-127.36733491135388,52.75730792124954],[-127.36759026323462,52.75739909636411],[-127.36784925539943,52.75748798668362],[-127.36811464257363,52.757573439148544],[-127.36837273760266,52.75766345968021],[-127.36860988014249,52.75776549804744],[-127.36876874532364,52.75791551814664],[-127.36891309104307,52.75807580450621],[-127.36907757887141,52.75822744432512],[-127.36931106894315,52.75833120079266],[-127.3695835990281,52.758407599476946],[-127.36984348586482,52.758495354115254],[-127.37009974944486,52.75858539230051],[-127.37035605300044,52.75867710630591],[-127.37060873363097,52.75877111285271],[-127.37085597745022,52.75886965700855],[-127.37109419344215,52.75897559646816],[-127.37131614557958,52.75909574123409],[-127.371500136319,52.75924714953673],[-127.3716693592885,52.759372385138214],[-127.37187807116207,52.759513415625875],[-127.37204347755056,52.75966448461932],[-127.37222071965392,52.759808124607865],[-127.37238491993517,52.75995023121164],[-127.37264631499468,52.76005534022533],[-127.3728764004978,52.7601680966099],[-127.37311106157414,52.760278557187206],[-127.3733475464497,52.76038843100911],[-127.37357949117641,52.76050116424964],[-127.3738041588414,52.76061846585028],[-127.3740197480401,52.760742042773714],[-127.37422715769544,52.76087075468138],[-127.37442725731121,52.76100347053849],[-127.37462096119883,52.76113906774478],[-127.37479639850432,52.76128384591855],[-127.37495996311445,52.76143436749766],[-127.37513448571343,52.76157972081831],[-127.37531543923963,52.76172274769998],[-127.37547805422916,52.761872723737554],[-127.37561315994907,52.76203310133036],[-127.37567739060053,52.762211688658795],[-127.37576625117046,52.76237710123405],[-127.37599172870566,52.76249046161047],[-127.37623655537305,52.762599119847394],[-127.37642295778,52.76273816244753],[-127.37658749019127,52.76288979126265],[-127.37675382517435,52.763039712870416],[-127.37694293204845,52.76317592516494],[-127.37716847122,52.76329096838627],[-127.37742133826478,52.76338943282781],[-127.37768215272497,52.763475482607696],[-127.37795891070724,52.76353779693804],[-127.37824725476293,52.763585411918456],[-127.37853820946069,52.76362738212278],[-127.37882107476058,52.76367730189197],[-127.37908216481682,52.76377174748136],[-127.37924465588931,52.7639172273042],[-127.37934654188147,52.764083039896406],[-127.37943194398828,52.764255771638574],[-127.37951187010293,52.764431374430636],[-127.37959361617152,52.76460582589069],[-127.37969010078903,52.764776750154375],[-127.37980035204592,52.764943019812364],[-127.3799124930185,52.76510983203972],[-127.38001539551159,52.76527843870517],[-127.38011372088998,52.765448775990585],[-127.38018525393588,52.765622791243665],[-127.38023181706335,52.7657998981296],[-127.38027005846256,52.76597823280214],[-127.38030183017335,52.76615719957227],[-127.38032898794675,52.76633677659514],[-127.38035333681617,52.76651583070829],[-127.38037028074454,52.766695536906205],[-127.380377009904,52.76687535438301],[-127.38037818667027,52.767055246179],[-127.3803802836684,52.76723511815218],[-127.38036843622653,52.76741459832599],[-127.38034080313088,52.76759370837157],[-127.38031037514698,52.76777228636837],[-127.38027436435854,52.76795093005814],[-127.38023182882256,52.76812852964505],[-127.38017813919528,52.76830569557291],[-127.38011979878746,52.768482360240164],[-127.3800660903033,52.7686589703313],[-127.38002542737374,52.76883711262294],[-127.37999498233921,52.76901569056679],[-127.37996920230894,52.76919476952833],[-127.37994996182937,52.76937490133804],[-127.37993811198713,52.769554381216125],[-127.37993555678624,52.76973375167966],[-127.37994507599853,52.76991353596962],[-127.37996385731478,52.770092655274034],[-127.37998636902944,52.770272295573065],[-127.38000794521497,52.770451937892645],[-127.38002211264921,52.77063167635605],[-127.3800204783251,52.77081103585955],[-127.37999840938492,52.77099007092661],[-127.37997635849722,52.77116967067556],[-127.3799738067493,52.771349605831475],[-127.38004042720839,52.7716301616496],[-127.3799794349089,52.771811340516656],[-127.38000726222775,52.771983062963635],[-127.38014612936462,52.77214339954106],[-127.38027766352373,52.77230661997528],[-127.38035290266913,52.77248002593804],[-127.38040879097716,52.77265815211807],[-127.3804442804616,52.77283707436273],[-127.3804407372609,52.77301477030891],[-127.38041519212067,52.77320113629787],[-127.3803594418043,52.77337216558411],[-127.38033924734897,52.7735517432705],[-127.38032554183147,52.773731244545914],[-127.3803267547666,52.773912255981436],[-127.3803586953587,52.774096259339366],[-127.3803626308418,52.77427555288927],[-127.38028072961242,52.77444185038469],[-127.38014188049736,52.77459872123808],[-127.37997783466844,52.774751413894876],[-127.37981102873434,52.77490469472412],[-127.37966662599547,52.77506219519733],[-127.37956527357969,52.7752298328145],[-127.37950229142955,52.775407115759116],[-127.37946538631267,52.77558688958424],[-127.37946463398201,52.775765117219386],[-127.37950295006823,52.775945126990315],[-127.37954584528141,52.77612339706945],[-127.37960081737847,52.776302089956914],[-127.37964093666513,52.77648040159305],[-127.37964202309526,52.77665804258124],[-127.3796107045828,52.77683831549317],[-127.37954961243497,52.77701668792098],[-127.37945391441778,52.77718706531233],[-127.37932440753013,52.777346075592106],[-127.37917152201011,52.77749974732554],[-127.37900645028179,52.77764964356536],[-127.3788357573952,52.7777984847651],[-127.37866976596447,52.777948956206785],[-127.37851689415392,52.77810319173102],[-127.37838463976337,52.77826334500404],[-127.37827397500965,52.77843053450718],[-127.37817079228549,52.7785998776913],[-127.37806385678262,52.77876758803276],[-127.37793911464392,52.77893045907345],[-127.37779373449716,52.779086847199046],[-127.37763615270511,52.77923945092188],[-127.37747294347628,52.7793898877301],[-127.37730973616364,52.77954088021164],[-127.37715308660037,52.77969347225208],[-127.37700955739992,52.779849837528204],[-127.37689416243973,52.78001483924607],[-127.37679940401928,52.7801863237717],[-127.37669995714334,52.78035618640965],[-127.37657048441193,52.78051686950394],[-127.37640542800132,52.780667882231654],[-127.37625626911634,52.780822626700555],[-127.37614741312082,52.78098923656602],[-127.37605448782931,52.78116013389314],[-127.3759643903243,52.78133212777749],[-127.37586302974299,52.781500882125854],[-127.37575326755963,52.78166805809431],[-127.3756369601942,52.78183363388453],[-127.37551034333843,52.78199652379108],[-127.37536963170969,52.78215453043599],[-127.3752157760303,52.78230765158831],[-127.37505253170605,52.78245808490093],[-127.37488365905186,52.78260633323723],[-127.3747109854541,52.7827523930879],[-127.3745232746709,52.78289245963795],[-127.3743374043637,52.78303250429424],[-127.3741722582547,52.78318127274452],[-127.37403436610012,52.78334036539358],[-127.37389553749071,52.78349947778834],[-127.37374174374912,52.78365483775902],[-127.37357383687228,52.78380475845447],[-127.37335189160564,52.783920564823546],[-127.37306919797263,52.783995045015665],[-127.37304828185928,52.78421106081339],[-127.37322189778939,52.784354175741605],[-127.37342758422365,52.78448402942506],[-127.37365430628269,52.784603548613404],[-127.37386363340484,52.78473056122488],[-127.37402510651363,52.78487157547477],[-127.37411797341463,52.78504478643807],[-127.37417296701925,52.78522403639267],[-127.37420099629804,52.78540249032505],[-127.37421511123829,52.785581663202905],[-127.37421905804216,52.78576207605394],[-127.37421651390608,52.78594256493168],[-127.37421022334033,52.78612253276526],[-127.37420115538468,52.7863025420828],[-127.37417447392075,52.786483313677046],[-127.37411880729856,52.786658255572505],[-127.37398474345824,52.786821230324264],[-127.37376377362271,52.7869387114261],[-127.37351540382696,52.78704193275388],[-127.37327553996118,52.78714954636824],[-127.37308005400875,52.78727961319206],[-127.3729393520035,52.78743873681779],[-127.37282685743398,52.787608182793136],[-127.37274136782315,52.78778011923792],[-127.37266710804253,52.787954721851335],[-127.37253761497001,52.78811595543552],[-127.37237339990769,52.78826583052414],[-127.3721922387171,52.78840862247654],[-127.37201013720299,52.788550860206215],[-127.37184871425062,52.7887012577662],[-127.37170515350387,52.78885818033381],[-127.37144096195632,52.789134194498594],[-127.37129449438602,52.78928722297475],[-127.37116501022189,52.78944901960561],[-127.37105243138639,52.7896162227782],[-127.3709417296331,52.789784524736945],[-127.37082255283728,52.789949007075414],[-127.3706817227775,52.79010421048687],[-127.37046932675518,52.79022942169487],[-127.37025416971292,52.79035522965796],[-127.37006731409429,52.790494721886816],[-127.36988146471505,52.79063643479178],[-127.36970309899246,52.79078031067977],[-127.36953509589628,52.790928539757374],[-127.36938304461079,52.79108163070426],[-127.36924698413777,52.79124125993119],[-127.36912595764102,52.791406317802064],[-127.369015225844,52.791574062009154],[-127.36891289246239,52.791742819972754],[-127.36883669947257,52.791915765203306],[-127.36880811674472,52.7920959918824],[-127.36882967504079,52.79227619839639],[-127.36877396116752,52.792450581357954],[-127.36853203629968,52.792553160107154],[-127.36825737512365,52.79261969678376],[-127.36797596957504,52.79267845648469],[-127.36769047590259,52.79272606355958],[-127.36739407592196,52.79275193586531],[-127.36710050435568,52.79277889531389],[-127.36681078621821,52.79283943482036],[-127.36661037143573,52.792962257224126],[-127.36660563603616,52.793133803387065],[-127.36665063881375,52.79332102701874],[-127.36665181213685,52.7935025920154],[-127.3665868562794,52.793678758139244],[-127.36649388319725,52.793850211178395],[-127.36636155303539,52.79401091394839],[-127.36620290062211,52.794161835376855],[-127.36603674719444,52.794310602193676],[-127.36586590669586,52.79445830246103],[-127.36569410808022,52.79460489275019],[-127.36552326230645,52.79475203658032],[-127.36535616824742,52.794900813270324],[-127.36519002676127,52.79505013455365],[-127.36502294523197,52.79519891056751],[-127.36485301589109,52.79534604264777],[-127.36467931731794,52.79549153253373],[-127.3644999565821,52.79563428137063],[-127.36431686265634,52.79577651737526],[-127.36413001747154,52.79591767582991],[-127.36393558163725,52.79605388284873],[-127.36373167969269,52.796184586318226],[-127.3635144725641,52.79630592127233],[-127.36327923844865,52.79641570080048],[-127.36302891014866,52.7965178002592],[-127.3627728515917,52.796615491279454],[-127.36251960276326,52.79671370503403],[-127.36227581730445,52.796817412603254],[-127.36204996709137,52.79692987825025],[-127.36185242296106,52.79705658595747],[-127.36170113629946,52.79720629433495],[-127.361587599668,52.797374618881165],[-127.36149010579848,52.797550603086336],[-127.36138318508267,52.797722769100666],[-127.36124608094238,52.797880158174536],[-127.361061869954,52.798017362269555],[-127.3608428421128,52.79814038985126],[-127.36060019468005,52.79825080560586],[-127.36034878839027,52.798348993033805],[-127.36008763083692,52.7984327218864],[-127.3598073646742,52.79849985885094],[-127.35952320478712,52.79856143599996],[-127.35924666935706,52.798629093279544],[-127.35899109736238,52.79871331086585],[-127.35877460684073,52.798829023993385],[-127.35859627332124,52.798975678666096],[-127.35843966411822,52.79913385492417],[-127.35828480382428,52.79928863918349],[-127.35813657829138,52.79944783877499],[-127.35802482534703,52.79961445299462],[-127.35796810093058,52.79978772021805],[-127.35793566662362,52.79996575457905],[-127.35793211740453,52.79999997705131],[-127.35791909759935,52.800145838029486],[-127.35791466202929,52.80032746679183],[-127.35791576587162,52.800508475484605],[-127.35792056333561,52.800688311595806],[-127.35793461502219,52.8008674846475],[-127.35795519294224,52.80104714705688],[-127.35798040390169,52.80122619091751],[-127.35800561788825,52.80140579065968],[-127.35802897189683,52.801584855964286],[-127.35805232920272,52.80176448611458],[-127.35807754099291,52.801943529871075],[-127.358100880738,52.802122595270916],[-127.35811960227208,52.80230227003946],[-127.35814488593972,52.802483554587845],[-127.35816923368189,52.802664849944605],[-127.35818144759621,52.80284460893471],[-127.35817129799145,52.80302182015006],[-127.35810052446813,52.803191887078654],[-127.35795419545991,52.803352740708384],[-127.35782183934543,52.803514553289254],[-127.35769509025148,52.80367742166429],[-127.35755705285794,52.803835937085346],[-127.3574040121235,52.803990142486924],[-127.35726130073654,52.804147590724874],[-127.357146720743,52.80431368017847],[-127.3570592767684,52.804485615845415],[-127.35699051428773,52.80466070689278],[-127.35690586267731,52.80483261010093],[-127.35680440688793,52.805002474792474],[-127.35673746417169,52.805176414759934],[-127.35672092396106,52.80535762682968],[-127.35667262701733,52.805533592827224],[-127.35657392679522,52.80570230451191],[-127.35645470348352,52.80586844672011],[-127.35632233388876,52.80603025734644],[-127.35617301363334,52.8061849737195],[-127.35599644480176,52.80632992610923],[-127.3558367914067,52.806481398866936],[-127.35570829300602,52.806648212238706],[-127.35555790469525,52.80679845668388],[-127.35528906016565,52.80687610233393],[-127.35487186319635,52.806905013315394],[-127.35451101394597,52.806806626216655],[-127.35385145820167,52.80681087449924],[-127.35323978059307,52.80685995661054],[-127.35287392732808,52.80692582109715],[-127.35225193133685,52.80697166341709],[-127.35152018282761,52.80686744387379],[-127.35128453217234,52.80684942644668],[-127.3509365037123,52.80683269328794],[-127.35063100905796,52.80686815809411],[-127.35035171519327,52.8069094807619],[-127.35004009456325,52.80689793021266],[-127.34974422120725,52.80688508584799],[-127.3493805885298,52.80684498989001],[-127.34915091795244,52.806868926479034],[-127.34885202098923,52.80684882468253],[-127.34857351931433,52.806767962357135],[-127.34828421067172,52.80672757380726],[-127.34799072886106,52.80670236831688],[-127.34769314106536,52.806694012891214],[-127.34738180789994,52.806662285845775],[-127.34709754360877,52.80660502386639],[-127.34684293091647,52.8065451792219],[-127.34655100534005,52.806509855762314],[-127.34625759670976,52.80648688680443],[-127.34595896557998,52.8065043182948],[-127.34566654318391,52.806512155170935],[-127.34524151879317,52.806381406433935],[-127.3450293442267,52.80640009510863],[-127.34473899552026,52.806385489115485],[-127.34459711787619,52.806305849422316],[-127.34449298510182,52.80612658727367],[-127.34450181216668,52.80593482249007],[-127.34437657198441,52.805793354668275],[-127.3441300739358,52.80569585861493],[-127.34385778311525,52.8056053914308],[-127.34362202729399,52.80549488612885],[-127.34343629013146,52.8053501825439],[-127.34336315612272,52.805181207981434],[-127.34334444239845,52.80499984606026],[-127.34322032608102,52.804834826477574],[-127.34301926986055,52.80470486849505],[-127.3427862117847,52.80459152407156],[-127.34254586322618,52.80448219002542],[-127.34230919857313,52.8043722574172],[-127.34213119735186,52.80423643000365],[-127.34203560733694,52.80406267210795],[-127.34189957316772,52.80390226181298],[-127.3417359976516,52.80375281874003],[-127.34154036517758,52.8036177569263],[-127.34130903718942,52.803470208657345],[-127.34104180443748,52.803391997507575],[-127.34077814971738,52.803309826414115],[-127.34058529817989,52.80317416634843],[-127.34056569615935,52.80299393488313],[-127.34061868989167,52.80281735739093],[-127.3407351904529,52.80265182756593],[-127.34085920474689,52.80248844445496],[-127.34092058275934,52.80231289178193],[-127.34097354186652,52.8021357584833],[-127.34110786759112,52.801975619713374],[-127.3411543143246,52.8017979958077],[-127.34116539999042,52.80161853434905],[-127.34116254521632,52.80143867626712],[-127.34114295901131,52.801259000433944],[-127.34109835896044,52.801081296220886],[-127.3410241471999,52.80090729293237],[-127.34093608375406,52.80073568956877],[-127.34087851892943,52.8005592542333],[-127.34086174547991,52.800380111030655],[-127.34088583326383,52.80020050085987],[-127.34095000415493,52.80002548086089],[-127.34096592815767,52.80000007541473],[-127.3410542897115,52.799855597575025],[-127.34110462490882,52.79968353319682],[-127.34105627689054,52.7995047508018],[-127.34102540368238,52.79923161775856],[-127.34100211966148,52.799051992893226],[-127.34099183928247,52.79887277532459],[-127.34101221115557,52.79869320740585],[-127.34104655484039,52.79851460061339],[-127.34108274062123,52.79833597273185],[-127.34112453011105,52.7981578367015],[-127.34117288277453,52.79798187626584],[-127.34139366631868,52.79773556402766],[-127.34135269547367,52.79755502041337],[-127.34131365227898,52.797376687454424],[-127.34126072597253,52.79720019892708],[-127.34118652029437,52.797026195303296],[-127.3410611799188,52.79685053441994],[-127.3408866358971,52.79667600064815],[-127.34077533840428,52.79653380432677],[-127.34068583220147,52.79637510213577],[-127.34057045647579,52.79619148090873],[-127.34035674806822,52.796071194435335],[-127.34016285391033,52.79593106195452],[-127.33990769921536,52.79585158959061],[-127.33963183141418,52.795793093324754],[-127.33934786069833,52.79574253484105],[-127.33905757380074,52.795697651995475],[-127.33876550348327,52.79565559538608],[-127.33847343089892,52.7956129731746],[-127.33818590636055,52.795567491768594],[-127.33790011683821,52.79551807140164],[-127.33761344477179,52.7954703461584],[-127.33732515901092,52.79542991962795],[-127.33703332010471,52.795395137114795],[-127.33674057794079,52.79536092011138],[-127.33644613706032,52.795331770020425],[-127.33615195964204,52.795311027017775],[-127.3358572466327,52.79530260971023],[-127.33555339114585,52.79529934402581],[-127.33524327109141,52.79530343882902],[-127.33494204049616,52.79532423537189],[-127.33466298203273,52.79537112324596],[-127.33441845404808,52.79545292879728],[-127.33419814659622,52.79556695391573],[-127.3339971067533,52.795702620471474],[-127.33380662240283,52.79584937509784],[-127.33362080716277,52.79599719715642],[-127.3334376088622,52.79613938492979],[-127.33327983818722,52.796292491870425],[-127.33315489173732,52.79645587809439],[-127.33305809904458,52.796628466962396],[-127.33297540184876,52.79680649979678],[-127.33289645053999,52.796985045927286],[-127.33280804051783,52.79715866011547],[-127.33269798230606,52.797322997427464],[-127.33255492241769,52.79747145272826],[-127.33236386588604,52.797600277715794],[-127.33213040153184,52.79770996464197],[-127.33187053064064,52.797806509701054],[-127.33159925550399,52.797895328734086],[-127.33133441739126,52.7979818413641],[-127.33107325747017,52.79806718184284],[-127.33080640271677,52.79814866785462],[-127.33053662886698,52.798225702980304],[-127.33026199407861,52.7982960675346],[-127.32998432080734,52.79835861998588],[-127.3297034496033,52.79840775791637],[-127.3294085481175,52.79842399380748],[-127.32910769076207,52.798427958204705],[-127.32881389929561,52.798449784227294],[-127.328530302552,52.79850119187397],[-127.32825172149738,52.79856430638899],[-127.32797020449891,52.798622414161215],[-127.32768671010342,52.79867718110168],[-127.32740317773434,52.79873027099957],[-127.3271166596707,52.79877722486918],[-127.32682692987285,52.79881076426966],[-127.32653105095613,52.798825318191],[-127.32623423577348,52.798839881946854],[-127.32594160447076,52.79886952452151],[-127.32565103901408,52.79890587702509],[-127.32535950194195,52.798941109971715],[-127.32506673054387,52.798966277539655],[-127.32477071090833,52.79897634523397],[-127.32447337278631,52.798974097831994],[-127.32417662569028,52.79896119055169],[-127.32388411282574,52.7989347936452],[-127.32359309279913,52.798896605879975],[-127.32330387834405,52.79885671129245],[-127.32301367407216,52.79881459444712],[-127.32273501431325,52.79875552519381],[-127.32247954567033,52.798665375308964],[-127.32222577938562,52.79857016639921],[-127.32194889299333,52.79850827770193],[-127.32167016734853,52.79844696501216],[-127.32140565924156,52.79836476051333],[-127.32113051143241,52.79829893187266],[-127.32084041939613,52.798260726892366],[-127.32054504818923,52.798231547325564],[-127.32026571954842,52.79818089056809],[-127.32003907488509,52.79806126928357],[-127.31978023044822,52.797981795055136],[-127.31948658064618,52.797948110131344],[-127.31919465267518,52.79791048666665],[-127.31892044696824,52.79784463333652],[-127.31865148781979,52.79776864182813],[-127.31838606854136,52.79768644083965],[-127.31812516472178,52.79760026111181],[-127.31786962641334,52.79750730448058],[-127.31763016441434,52.79739342676641],[-127.31738554685506,52.797293056517816],[-127.31711198964766,52.7972484876573],[-127.31681129505034,52.797257467039316],[-127.31650976564597,52.79726926159502],[-127.31621259511273,52.79727203080444],[-127.3159164321708,52.79727759453807],[-127.31562054303987,52.79729156522003],[-127.31533492546085,52.79733791532933],[-127.31506986795219,52.79741822431919],[-127.31480873086933,52.7975052137865],[-127.31454368871638,52.79758608628625],[-127.31427670198636,52.797664173378095],[-127.31400969690354,52.79774169515131],[-127.3137379346927,52.79781535112214],[-127.31346612222363,52.797887886175445],[-127.31321544244219,52.797982600791734],[-127.31297245126729,52.79808619550751],[-127.31273138282396,52.79819145392567],[-127.31248648023897,52.798293383242495],[-127.31223197809658,52.79838477593144],[-127.31196019386965,52.79845842792051],[-127.31168267968741,52.79852653914424],[-127.31141755645717,52.7986051636274],[-127.31117445416854,52.79870539322532],[-127.31094198595798,52.798818953511194],[-127.31072282701194,52.798942452153966],[-127.31051878286385,52.79907418332299],[-127.31033821906496,52.79921406263873],[-127.3101897119569,52.7993698402856],[-127.30996199793852,52.79963857652149],[-127.3100072828355,52.79981236517065],[-127.30995479300734,52.799978834662305],[-127.30991271019819,52.80000003542396],[-127.30972889363694,52.800095116603735],[-127.30947749703412,52.80019767670053],[-127.3092220066502,52.80028795274491],[-127.30895889703343,52.80037215311139],[-127.30869866554502,52.80045911837128],[-127.3084470926581,52.80055607398443],[-127.30820226926859,52.8006613555547],[-127.30799522485965,52.800786399429064],[-127.30783443207548,52.800935576766705],[-127.30757064546398,52.80124058549251],[-127.30727399064543,52.80123099683868],[-127.3069743222331,52.80124386661824],[-127.30668273679446,52.80127849736595],[-127.3064422645645,52.80137420407633],[-127.3062307490078,52.80150545455754],[-127.30599630919552,52.801616219908226],[-127.30574085449794,52.80170817344794],[-127.30546806512953,52.80178013533591],[-127.30519051900752,52.8018482310592],[-127.3049272548602,52.801927940499326],[-127.30469754817676,52.80204201301917],[-127.30452647951667,52.802189623013696],[-127.30441449328355,52.80235563009192],[-127.30433623118988,52.80253079372088],[-127.30427749819393,52.80270685206919],[-127.3042318504956,52.80288501555276],[-127.30418153407565,52.80306266598422],[-127.30411253984533,52.80323716145613],[-127.30402578890103,52.80340849169831],[-127.30393065177955,52.80357879420607],[-127.30383084337713,52.803748027682424],[-127.30372822325721,52.80391672738691],[-127.30362466641529,52.80408544634695],[-127.30352299809893,52.8042547001413],[-127.30342598232319,52.80442445807405],[-127.30334859951591,52.80459849012717],[-127.30326467068107,52.80477090907583],[-127.30315180258981,52.804938601095564],[-127.30303712986112,52.80510856364059],[-127.30290742239312,52.8052725239329],[-127.30274843555273,52.805421117501815],[-127.302547880081,52.80554719077198],[-127.30231519802369,52.80565569592742],[-127.30206269492369,52.80575432410802],[-127.30180645645304,52.80585188130231],[-127.3015615352283,52.80595547246613],[-127.30133750520513,52.806073402190435],[-127.30113053590165,52.80620290650979],[-127.30093583514135,52.80633844346738],[-127.30075435847199,52.80648112335866],[-127.30059830696102,52.806634720467294],[-127.30045539658322,52.806793219922085],[-127.30031631765293,52.80695503920083],[-127.30019494609215,52.80711890375842],[-127.30011176755929,52.80728627242871],[-127.30016557696275,52.80746668521139],[-127.30015435157846,52.80764726253572],[-127.30007130600028,52.80781854804053],[-127.29991899895353,52.80797378827286],[-127.2997403228157,52.808116991240134],[-127.29955598932564,52.80825801490445],[-127.29937543616704,52.808400682118815],[-127.29919394524545,52.808543350443664],[-127.29901620290012,52.80868710676105],[-127.29884316412642,52.80883304341041],[-127.29867768936091,52.80898282344605],[-127.29852627531082,52.80913693094649],[-127.29838708151807,52.809295951222666],[-127.29825444720315,52.80945657549837],[-127.29812932794059,52.8096199140503],[-127.29800514430435,52.80978325105989],[-127.2978743817015,52.80994441005086],[-127.29774174344332,52.81010503368002],[-127.29760724640573,52.81026567768254],[-127.29747366981911,52.810426311327575],[-127.29734010708972,52.81058694463956],[-127.29720840345499,52.810748122118646],[-127.29707950985711,52.81090982429493],[-127.2969543649567,52.81107260569991],[-127.29683765481582,52.81123753538974],[-127.2967321948836,52.811406259033404],[-127.29663048181042,52.81157550605556],[-127.29652406497561,52.81174312817337],[-127.29640639783193,52.811907503001926],[-127.29626156235881,52.81206489688559],[-127.29609238429481,52.81221583444675],[-127.29592412653993,52.81236676157493],[-127.29578482736173,52.8125229728382],[-127.29569512583551,52.81269040950088],[-127.29564844412089,52.812866893682546],[-127.29562792556104,52.81304812822935],[-127.29561301483979,52.81323043063505],[-127.29559713131741,52.813411058040245],[-127.2955998460749,52.813592600951075],[-127.29552234446234,52.813763821055154],[-127.29540008360948,52.81393048689924],[-127.2952383100382,52.81408078528732],[-127.29504255024928,52.81421408122337],[-127.29482890813664,52.814339728341075],[-127.29461151485374,52.81446429560046],[-127.29440637442703,52.81459433140786],[-127.29421631950252,52.81473204623134],[-127.29403384601616,52.814874160414995],[-127.2938532312861,52.81501680972583],[-127.29366886342034,52.815157823352536],[-127.29347222328728,52.815292811882145],[-127.29326707738261,52.81542340153323],[-127.29307326315066,52.81555947902684],[-127.29290958522493,52.81570922997604],[-127.29277419863452,52.81587211889871],[-127.29264636401075,52.81603940774207],[-127.29250714040198,52.81619841120996],[-127.29233762960553,52.81633982383139],[-127.29211130528401,52.816445986469894],[-127.2918385515006,52.816522962468724],[-127.29155923537245,52.816598333282634],[-127.29131035687992,52.81669634084114],[-127.29108346444505,52.81681483665648],[-127.29086033786324,52.816934976305454],[-127.29062277588355,52.8170390268713],[-127.29034900920287,52.817113203921934],[-127.2900545560585,52.817148943998035],[-127.28976676355211,52.81712856935027],[-127.2894831558365,52.81706163865396],[-127.28921235442827,52.81698839765959],[-127.28894424698986,52.81691176401845],[-127.28867789710273,52.81683174802933],[-127.28841337246153,52.81675059059282],[-127.2881488150125,52.81666831211127],[-127.28788427535139,52.81658658876986],[-127.28762330085512,52.81649978654364],[-127.28737593232466,52.816401626365696],[-127.2871448670662,52.81628983711238],[-127.28692469589627,52.81616896144516],[-127.28670631861934,52.8160463889648],[-127.28647977447592,52.81593006559409],[-127.28622133122651,52.81583426602099],[-127.28600317696379,52.815718970623124],[-127.28586924176159,52.815560717176034],[-127.28575631300423,52.815390469386735],[-127.28560939287665,52.815233487648186],[-127.28542399361343,52.81509429528349],[-127.28518453627099,52.81498090840593],[-127.28494973473695,52.814868034969294],[-127.28480133022552,52.81472283255578],[-127.28474022888346,52.81454529155972],[-127.28468366437043,52.8143643384124],[-127.2845754969877,52.8141973997786],[-127.28446810041254,52.81402541340967],[-127.28430592700145,52.813885965100326],[-127.2840179834415,52.8138285912915],[-127.28372703237514,52.81379478682438],[-127.28343434160108,52.81376491903793],[-127.28314079916952,52.81373786636024],[-127.28284640291682,52.813713063916786],[-127.28255204067052,52.81368938118307],[-127.28225351253214,52.81368143465211],[-127.28196112667487,52.813661656191094],[-127.28167973344503,52.81360588188767],[-127.28140267382294,52.8135394163351],[-127.28112474410544,52.81347464533961],[-127.28084162975142,52.81342337109589],[-127.28054193211676,52.81340758728509],[-127.28024939757698,52.81338275805345],[-127.27998144659563,52.81331002982053],[-127.27972676628715,52.81321473100933],[-127.27948748587917,52.813106378879255],[-127.27926005754402,52.81299061627063],[-127.27904173312625,52.81286802015665],[-127.27883526082421,52.81273801368535],[-127.27864803864432,52.81259939550769],[-127.2785055881482,52.812435066506126],[-127.27835140550438,52.81228207326972],[-127.27812525621061,52.812177493746645],[-127.2778544550949,52.81210255012872],[-127.27756644826948,52.81204235481973],[-127.27728055169123,52.81199054644947],[-127.2769843465445,52.811966869946176],[-127.2767191037069,52.811890742444874],[-127.2764662486393,52.81179429597332],[-127.27622157839042,52.81169159996118],[-127.2759859976227,52.81158207973245],[-127.27575496965306,52.81146914710123],[-127.27552576927718,52.811355638233955],[-127.27530018336537,52.81123816231055],[-127.2750892122016,52.81111268147133],[-127.27489554755604,52.81097523921408],[-127.27468273592551,52.81084977764202],[-127.27444264558322,52.81074478659132],[-127.27417187488182,52.810669834247165],[-127.27388440128172,52.810627001353254],[-127.2735882570976,52.810636375309166],[-127.27329672900436,52.810675404540845],[-127.27300592138417,52.81070770033267],[-127.27266226251196,52.810681730162905],[-127.27245903996896,52.81069065852216],[-127.27215192393598,52.8107993444527],[-127.27185444944247,52.810888871214615],[-127.27156490935835,52.810932357820505],[-127.27127826463916,52.810979730712496],[-127.27099357745477,52.81103045310908],[-127.27070887278481,52.81108061010496],[-127.27042326444266,52.81113189699768],[-127.27013954464634,52.811183718672815],[-127.26985681257352,52.8112377795618],[-127.26957603732335,52.81129517206974],[-127.26929819069959,52.811357580371165],[-127.26903103515205,52.811435563805794],[-127.26876777761558,52.81151967344035],[-127.26849966529578,52.811596545164946],[-127.26822378936382,52.81166284793872],[-127.26794889898851,52.811730825108675],[-127.26768275831843,52.8118116009572],[-127.2674127029512,52.81188624950337],[-127.26712680079963,52.81192744410143],[-127.26683004062139,52.81194745974334],[-127.2665347003084,52.81198427150502],[-127.26624541325859,52.812036708592366],[-127.26613701157201,52.8120787832138],[-127.26602000161904,52.81214393172958],[-127.26581945577608,52.81227498819912],[-127.26563415397524,52.812418773750125],[-127.26546110237202,52.81256858688956],[-127.2653001830419,52.81271994569324],[-127.2651683667435,52.81288108682387],[-127.26504875103568,52.813046570562435],[-127.2649169179164,52.81320771153691],[-127.2647512407941,52.81335520239554],[-127.26455734667469,52.81349178888511],[-127.26427761941795,52.813679171205344],[-127.2642522488752,52.813858218322636],[-127.26423434128799,52.81403774095201],[-127.2641965189639,52.814141262917175],[-127.264101513855,52.814196640963225],[-127.26382232071283,52.81424560067094],[-127.26352716090108,52.81428912753131],[-127.26325129142288,52.81435598305183],[-127.26298124536349,52.81443174173371],[-127.26273512660244,52.81453077938728],[-127.26252612322651,52.814659123242485],[-127.26233126136565,52.81479459539929],[-127.26214677549166,52.81493555968545],[-127.26196513239807,52.81507816982354],[-127.26178634905008,52.81522299949833],[-127.26157437913052,52.815345760411496],[-127.26133118056207,52.815449811709755],[-127.26108321049375,52.81554942154543],[-127.26083716375808,52.815651260763154],[-127.26057086924756,52.815728094214556],[-127.26028817753459,52.815784928548375],[-127.26000045204674,52.81582892244576],[-127.25970379367288,52.815853401834424],[-127.25940706884157,52.81587563956606],[-127.25912884549963,52.81592626317246],[-127.25887606639735,52.81602088066357],[-127.25862815336005,52.81612272618365],[-127.25836196767504,52.81620348066998],[-127.25810145575882,52.81628809206965],[-127.25787914258025,52.816407038571185],[-127.25761964733117,52.816494435507344],[-127.25735536664169,52.81657740885106],[-127.25712402109662,52.816674034472946],[-127.25688596801832,52.816795389192286],[-127.25668917080256,52.816929186530274],[-127.25649807883987,52.81706741463657],[-127.25630141106683,52.81720569311447],[-127.25615548333519,52.81729972579766],[-127.25590937855618,52.817368486696445],[-127.2558612415404,52.8175012568182],[-127.25579434017031,52.817596676166374],[-127.25568165407618,52.817620297740916],[-127.25526978753248,52.81755129445637],[-127.25467690981996,52.81739511607208],[-127.254290829569,52.81728659659792],[-127.25390096951237,52.81720726615709],[-127.25368023104144,52.817064475046244],[-127.25299778163392,52.81680052672039],[-127.25275049122162,52.81657564256029],[-127.25245765524515,52.8166359285142],[-127.25227595880563,52.81658799566597],[-127.25199446989947,52.816496285761964],[-127.2517129989346,52.81637320140784],[-127.25148740433545,52.81625455981008],[-127.2512366341413,52.81616420628714],[-127.25094504930011,52.81620373576886],[-127.25065234560722,52.81623656057406],[-127.25035949363632,52.81626433811619],[-127.25006562124226,52.81628876337438],[-127.24977071362792,52.81630983649949],[-127.24947677639054,52.81633257527561],[-127.2491809958976,52.81635534189435],[-127.2488921368204,52.81639259562092],[-127.24861034676687,52.81644939200329],[-127.24833445648852,52.816516777084125],[-127.2480652902543,52.816591926677056],[-127.2478048210712,52.816678756117554],[-127.24754053503094,52.816761707197585],[-127.24726258788567,52.81682294266086],[-127.24697303148776,52.81686804463988],[-127.246679416432,52.816901989929654],[-127.24638519387685,52.81691463669183],[-127.24609258978533,52.816887481485864],[-127.24579844472747,52.816839611523896],[-127.24550855422495,52.816809619578855],[-127.24522493653701,52.816835609521945],[-127.24494828154786,52.81690915459248],[-127.24466860231661,52.81697488544179],[-127.24438091671124,52.817020526031065],[-127.24409610818518,52.81706949782429],[-127.2438172486695,52.81713129063248],[-127.2435412989106,52.81719754411988],[-127.2432634395154,52.81726156660054],[-127.24297790382577,52.817317833043944],[-127.24269907369049,52.817380743643184],[-127.2424451322498,52.817468612677935],[-127.24220943633503,52.817576462509244],[-127.24198521560615,52.817695963341315],[-127.24176955798984,52.81782208898351],[-127.24156327141984,52.81795092157976],[-127.24137398405597,52.81808910532116],[-127.2411903838376,52.818231146921626],[-127.2409992356027,52.81836934071711],[-127.24078654562905,52.818501601948256],[-127.24059630037608,52.81863922957551],[-127.2404856526436,52.81879731098673],[-127.24049107474158,52.81898387149138],[-127.2404375639796,52.819157040225775],[-127.24027455906398,52.81930446659096],[-127.24007505009675,52.819443311920516],[-127.23988883873318,52.81959153875446],[-127.23970177102407,52.81974258079146],[-127.23946480430321,52.81980784777849],[-127.23916130525016,52.81975781830518],[-127.23890755066883,52.81966074541288],[-127.23868648079618,52.819536983827064],[-127.23847082452845,52.819407569683314],[-127.23823901447282,52.819297935050244],[-127.23797573579037,52.81922505333785],[-127.23769269891234,52.81917536023761],[-127.23739887234568,52.81913867387283],[-127.23710239606805,52.819106488932576],[-127.23680945818033,52.81906810605357],[-127.23652110881032,52.81902743251674],[-127.2362317749129,52.81898509192839],[-127.23594778877734,52.81893483976572],[-127.23566637244014,52.81887727915872],[-127.23538852594088,52.818814076318226],[-127.23512917859051,52.8187159334078],[-127.23484619836911,52.81866847450188],[-127.23457725640507,52.81859172649952],[-127.23430817093534,52.8185104961994],[-127.23400413645547,52.818441405556165],[-127.2337639267679,52.818362112071945],[-127.23348072480205,52.81833874493425],[-127.23318322677311,52.818367648939535],[-127.23289190026624,52.81841666175037],[-127.23261788048627,52.81848623136749],[-127.23235930606943,52.81857524768151],[-127.23209979405266,52.818664273250455],[-127.23185351458807,52.81876100496086],[-127.23156467274286,52.818799901163736],[-127.23126660408771,52.81884113502304],[-127.2310008841309,52.81887642491176],[-127.23069651201122,52.81892444819854],[-127.23040251432013,52.8189460187177],[-127.23010630177784,52.81895472701478],[-127.22980905573375,52.81896008299721],[-127.22951193872036,52.8189699200653],[-127.22921580777069,52.81898198764984],[-127.2289218077993,52.81900299855666],[-127.22862283089563,52.819045355962245],[-127.2283231737005,52.81909613017953],[-127.2280368954398,52.81912714523347],[-127.22783916867515,52.81910287028509],[-127.22763497571601,52.81891839761058],[-127.2275824472102,52.81909546797983],[-127.22751689484194,52.81927211857157],[-127.22737071389976,52.81942439868259],[-127.22711398218743,52.819513939865246],[-127.22684288551193,52.81958850432714],[-127.22656786227368,52.819655828483164],[-127.22629383884127,52.819725374164996],[-127.22601981587152,52.819795484071086],[-127.22575538763704,52.81987558030618],[-127.22551205976315,52.81997899237101],[-127.22529435529164,52.82010063408348],[-127.22509180476237,52.82023219542195],[-127.22488737878025,52.82036322004079],[-127.224676310515,52.82048927447727],[-127.22446522587981,52.82061531971555],[-127.22426181318667,52.820749139075254],[-127.2240583519602,52.82088182880259],[-127.2238406066122,52.82100234728918],[-127.22359618535211,52.8211001626191],[-127.22332885327049,52.82117692107304],[-127.22305198781298,52.821245367784435],[-127.22277707632549,52.82131716482721],[-127.22251649347835,52.82140225256466],[-127.22226072453329,52.82149345843875],[-127.22200975324212,52.82159021776827],[-127.22176259262314,52.821689743352934],[-127.22152019723259,52.82179369302459],[-127.22128539452409,52.82190317612416],[-127.22105062241107,52.822013770242435],[-127.22081105171648,52.82211937468484],[-127.22054876218935,52.8222100885972],[-127.22028829887547,52.82230021804518],[-127.22007417213408,52.82241788517363],[-127.21991294278982,52.82256526364088],[-127.21977725594901,52.82272806757421],[-127.21964906659825,52.82289359093145],[-127.21954139753315,52.8230611515143],[-127.21941590523039,52.82322328417032],[-127.21932974238825,52.82339566020743],[-127.21923983004606,52.823566954302194],[-127.21911247696262,52.82372911484435],[-127.21898324837045,52.82389072981563],[-127.21888211908066,52.82405989843621],[-127.21879407784024,52.82423172857026],[-127.21873764538856,52.82440379537942],[-127.2186516054057,52.82458065262224],[-127.21859217177378,52.82468046395981],[-127.21855789109303,52.824749187980565],[-127.21835460111477,52.82488915494345],[-127.21819909180091,52.82504207525832],[-127.21802718055834,52.825238876309015],[-127.21810165607103,52.825373154361785],[-127.21832714915102,52.825522686201644],[-127.21855638651792,52.825640787669066],[-127.21876450004545,52.8257675183756],[-127.21896167197636,52.82590165192907],[-127.21917166236057,52.82602891834452],[-127.2193807324325,52.826156202911434],[-127.21958796213346,52.826284618048376],[-127.21979246090292,52.82641474686126],[-127.21999540682722,52.826555543439184],[-127.22011979008725,52.82671171739159],[-127.22015612697854,52.826812210834035],[-127.22022637489947,52.826961110662296],[-127.2203944041175,52.82708320702665],[-127.22051809400202,52.82718279236956],[-127.22076795101754,52.82730628811971],[-127.2209694534586,52.82742860051449],[-127.22115745923739,52.82756674398466],[-127.22135556859882,52.8277008548124],[-127.22153534893691,52.827843566395536],[-127.22169951751103,52.82799316487593],[-127.22184621564116,52.82814966965777],[-127.22197725250635,52.82831082039692],[-127.22209815579538,52.82847488291068],[-127.22221813918898,52.82863951077882],[-127.22233996595577,52.82880355444947],[-127.22248206217832,52.82896122710367],[-127.22263337250659,52.829116006151345],[-127.22278927481729,52.82926905151453],[-127.22295161054815,52.82941922320851],[-127.22312775038351,52.82956421182035],[-127.22331121483178,52.829705761493734],[-127.2234873411369,52.82985019379471],[-127.22364785499049,52.83000150429026],[-127.22380927594945,52.83015224919861],[-127.22413750343532,52.83044640155926],[-127.22418449541004,52.8304963471136],[-127.2241876558601,52.83054170158965],[-127.22416097634233,52.83061651660343],[-127.22398206364521,52.830763519180685],[-127.22383127291211,52.83091920363315],[-127.2237217089067,52.83108565714335],[-127.22365235660922,52.83126066676255],[-127.2235558837083,52.83143034600818],[-127.22345475467812,52.83159951774968],[-127.2233545616572,52.831768679626016],[-127.22325435297189,52.83193784155349],[-127.22314854994183,52.83210594085423],[-127.22305486898037,52.83227559944084],[-127.22302095708133,52.832454713556864],[-127.2230372646031,52.832634434363435],[-127.22308510733355,52.83281157616157],[-127.22316422920875,52.832977193230946],[-127.2232567326667,52.83315555539559],[-127.22332681848752,52.833330223777324],[-127.2233635585496,52.83350916672492],[-127.2233510164,52.83368806714127],[-127.22329193748507,52.83386464586843],[-127.22319267642261,52.83403435350085],[-127.22312892585909,52.83421042484563],[-127.22312381772873,52.83438923875027],[-127.22314144874571,52.83458239496371],[-127.22316201164418,52.834748612820036],[-127.22323209995088,52.834923290044046],[-127.22327900810946,52.83509988536488],[-127.22331570117736,52.83527714296895],[-127.22341810555173,52.835444193826234],[-127.2234836525771,52.83562228050651],[-127.2235324387336,52.83579997688486],[-127.2236201171405,52.835971664088206],[-127.2236698249755,52.8361487859019],[-127.22370474208927,52.836328868238716],[-127.22370432334472,52.83650876283638],[-127.22370390433957,52.83668864844975],[-127.22369192495172,52.83688715190293],[-127.22356594194412,52.83703304554251],[-127.22349452755911,52.83720135108254],[-127.22358033350115,52.83737249282287],[-127.22363007519597,52.837550743906455],[-127.22368266240578,52.83773119790369],[-127.22362324196556,52.83789601612386],[-127.22343122077194,52.8380414767236],[-127.22322765724853,52.838173042940255],[-127.22302971920719,52.83830680072887],[-127.22287325565966,52.83845973552374],[-127.22278798192,52.83863153811175],[-127.22271955049276,52.838806536581586],[-127.22264644721689,52.838981018747056],[-127.2225723901865,52.8391549458958],[-127.22249836360714,52.839329437528995],[-127.22243738346467,52.83950547895453],[-127.22238572910277,52.839681979170535],[-127.22221323960062,52.83982779011097],[-127.22200683585913,52.83995827167585],[-127.22177576484466,52.84007163287855],[-127.22152751136714,52.8401694813873],[-127.22125913498958,52.840246799678745],[-127.22103184282058,52.84036236162771],[-127.22080834797424,52.840480690078245],[-127.22056681256208,52.84058574723944],[-127.2203470976457,52.84070627704798],[-127.22016423608709,52.840847709417645],[-127.22000681593487,52.84100064988068],[-127.21985034781983,52.84115414509102],[-127.21968539262838,52.841303800990104],[-127.21944090959182,52.841403847291645],[-127.21920403811816,52.841509973856155],[-127.21902499988624,52.841655291825795],[-127.21889195038538,52.84181526724886],[-127.21877301111832,52.84198069100634],[-127.21862398892809,52.842135227919975],[-127.2184345517201,52.84227448401239],[-127.21824509740436,52.84241318404587],[-127.21789626037285,52.842571468906975],[-127.21803010703113,52.84273203783143],[-127.21817039034832,52.84289028932159],[-127.21832817035802,52.84304276423799],[-127.21850341366542,52.84318776824442],[-127.2186713171614,52.8433362104723],[-127.21882361759727,52.84349153902674],[-127.218970390489,52.843649166297304],[-127.21910518265648,52.843810280056886],[-127.21921402577473,52.84397446046065],[-127.21919598007317,52.84415621361016],[-127.21907789388499,52.84431939593291],[-127.21893927423031,52.84447998476845],[-127.218837142727,52.84464859614575],[-127.21876027903585,52.84482255808864],[-127.21869835313136,52.84499859756224],[-127.21864947435215,52.84517563136252],[-127.21860993978545,52.84535424486059],[-127.21857038875517,52.84553229362152],[-127.21852060246583,52.84570989261525],[-127.21848197323635,52.845887940702895],[-127.21847035997676,52.84606738520525],[-127.21845316846351,52.84624688754632],[-127.21843133576027,52.84642643800326],[-127.21840111200045,52.84660551059649],[-127.21834661991616,52.846781481504856],[-127.21826040516902,52.846953854163864],[-127.2181555314886,52.84712417867728],[-127.21815213239816,52.84729848984244],[-127.21821114405131,52.847476080981075],[-127.2182330153917,52.84765574288524],[-127.21824652655216,52.84783548249982],[-127.21826188266934,52.84801521192652],[-127.21826703514054,52.84819560305366],[-127.21822280678496,52.84837257906672],[-127.21815807709798,52.848548655823585],[-127.21807187388835,52.84872158388974],[-127.21796127275445,52.84888692837634],[-127.217820726429,52.8490458495611],[-127.21767642829467,52.849203697633],[-127.21755275961932,52.84936749146108],[-127.21745903435429,52.849537699456505],[-127.21740269096352,52.84971424460891],[-127.21731740368448,52.849886606542796],[-127.21720871985436,52.85005416284776],[-127.21712619715328,52.85022594004373],[-127.21708291627792,52.85040402628415],[-127.21704896514447,52.850583145570624],[-127.21698607072626,52.85075863746834],[-127.21696326033342,52.85093707640675],[-127.21697778545753,52.85112016755836],[-127.21694186168139,52.851295379974474],[-127.21681904157482,52.851456366486794],[-127.21667285584869,52.85161366764381],[-127.21651168004165,52.85176719663113],[-127.21634575094123,52.85191742123741],[-127.21617319131073,52.85206322217369],[-127.21599123668543,52.85220576672684],[-127.21580645076374,52.852346654634566],[-127.21562260185264,52.85248808843312],[-127.21544439483696,52.852631714056514],[-127.21527184532698,52.85277807830438],[-127.21498650472628,52.85304665183629],[-127.21499952509815,52.85320958462381],[-127.21508734968504,52.85338687864307],[-127.21512006911777,52.85358827866589],[-127.21516672585832,52.853757032212435],[-127.21520653364492,52.85394603040217],[-127.21527630162737,52.854109505856385],[-127.21547820332165,52.85424246542056],[-127.21575316949502,52.85432760530606],[-127.21603615848231,52.85436838667616],[-127.21632985783948,52.85439280086166],[-127.21662886642017,52.85440820215516],[-127.2169296536636,52.85442021299457],[-127.21722675481163,52.854433946890595],[-127.21752377506424,52.85444431856873],[-127.21782070072126,52.8544518930384],[-127.21811762523174,52.854458901903094],[-127.21841369243002,52.85446871634896],[-127.21870899868827,52.85448470665716],[-127.2190036550933,52.854510233990126],[-127.21929756548063,52.854541928077936],[-127.21959055488502,52.85457418689616],[-127.2198834167877,52.854601972199724],[-127.22017694478696,52.85462077473664],[-127.22047141802143,52.85460707337056],[-127.22076630006885,52.85457542573461],[-127.22107337500144,52.854547577812646],[-127.22135218458357,52.854571578329235],[-127.22157854776844,52.85468074610532],[-127.22178527322605,52.85481869281005],[-127.2219762488038,52.8549590444996],[-127.22213227402838,52.85511264379814],[-127.22232682722763,52.855247918723336],[-127.22253423822026,52.855376890825546],[-127.22274161939748,52.855505298006605],[-127.22294995535327,52.855634259754176],[-127.22315735416908,52.85576267498905],[-127.22336017751375,52.855893934941236],[-127.22354483787758,52.85604050959252],[-127.22372490709282,52.85618938227533],[-127.2239321177364,52.856311064527475],[-127.22419173816837,52.85637953317916],[-127.22449116420947,52.85640835053878],[-127.22479588184893,52.85642758992126],[-127.22509129954136,52.85644636958162],[-127.22538838523425,52.85645896238967],[-127.22568121542102,52.85648504807726],[-127.22596642503926,52.8565369902571],[-127.22625241271419,52.85658387568285],[-127.22654888351553,52.856607123783846],[-127.22684700481915,52.85662306441827],[-127.22714072726038,52.85664801640057],[-127.22741853264792,52.85670115318002],[-127.2276778674483,52.85679146771323],[-127.2279398888836,52.856878391292746],[-127.22821620790822,52.85694442611167],[-127.22849969434007,52.85700142815353],[-127.22878656070732,52.85704605673214],[-127.2290843306825,52.85704966692801],[-127.22937349606197,52.85707746744466],[-127.2296463101679,52.8571513809932],[-127.22992801954003,52.8572106397543],[-127.23021063589475,52.85726932348167],[-127.23048602359714,52.85733536276098],[-127.23074700225203,52.857417807984696],[-127.23099268308935,52.857518345232194],[-127.23123299444272,52.857625662859306],[-127.23147689876588,52.85772902413028],[-127.23172895438397,52.85782444509369],[-127.23198190008705,52.85791817951748],[-127.23223756454557,52.858009643350336],[-127.23249413654644,52.85810054121167],[-127.23274892914358,52.85819368976205],[-127.23300375670087,52.85828852303826],[-127.23325945797579,52.85838110505687],[-127.23352052955029,52.85846634962378],[-127.23378960628067,52.85853861621836],[-127.23407683033243,52.858595556725945],[-127.23437362737626,52.85862942465886],[-127.23466480928076,52.85862972772708],[-127.23494914739317,52.85858695680974],[-127.2352309255975,52.85851954618151],[-127.23551186316777,52.85845551498378],[-127.23579199212612,52.858395965725876],[-127.23606830182817,52.85833253775036],[-127.23634783650083,52.85831671244842],[-127.23664159104237,52.85834164049923],[-127.23693618705745,52.85836375254887],[-127.23723244849016,52.8583791306637],[-127.23752920967168,52.858379923772596],[-127.23804351946904,52.85840812909882],[-127.23832835040854,52.858446040329824],[-127.23863274054787,52.85842097250249],[-127.23892564562084,52.85838482622588],[-127.2392092776371,52.8583179512922],[-127.23947977763099,52.85834311751288],[-127.2397644535726,52.85840791647694],[-127.2400577871569,52.858418270415534],[-127.24035710165879,52.85841062812988],[-127.24065414033832,52.85842094147034],[-127.2409503382952,52.85843406935488],[-127.24124566271186,52.858448882398356],[-127.24170957870636,52.85847143530876],[-127.241999137116,52.85851208517109],[-127.2422895859515,52.8585516041378],[-127.24257830469624,52.85859506787524],[-127.24286078434359,52.85864811898839],[-127.24314158430064,52.85870734696713],[-127.24342065606673,52.85877108462701],[-127.24369526723407,52.85884158451519],[-127.24396265086402,52.85891889388802],[-127.24421918767605,52.85900751627865],[-127.2444640196005,52.85910915545408],[-127.24470439029879,52.859217010117455],[-127.24494287090299,52.85932431945031],[-127.24518227363096,52.859431053663535],[-127.24542077151428,52.859538361854305],[-127.24565746122373,52.85964793028081],[-127.24588957515965,52.859759788298064],[-127.24611622514638,52.859875630994104],[-127.2463337399899,52.85999716504852],[-127.24654213646967,52.86012496416877],[-127.24674414648992,52.860256757870786],[-127.2469443319075,52.86039024726608],[-127.24714543949905,52.86052316166553],[-127.2473520302778,52.86065266416681],[-127.24756504116239,52.860778726862584],[-127.24778170939743,52.8609030736636],[-127.24800023752665,52.86102684441263],[-127.24821598572068,52.86115120019151],[-127.2484271595478,52.86127840162474],[-127.2486291315107,52.861408506872756],[-127.24882101485858,52.861543766950824],[-127.24897428143353,52.861694563109765],[-127.24907610756547,52.861867756436645],[-127.24918343277123,52.8620380937611],[-127.2493486212441,52.86218315882313],[-127.2495523947041,52.862311001788356],[-127.24977452538411,52.862430803766664],[-127.25000859104487,52.86254487451491],[-127.25024446889456,52.86265724884691],[-127.25047664410394,52.8627702180138],[-127.25071884474617,52.86287579052379],[-127.25096374724576,52.86297853633127],[-127.2511986101883,52.863088113160224],[-127.25139233647056,52.863222228669784],[-127.25153470400294,52.86338153885827],[-127.25165861950248,52.86354609335922],[-127.25175199938506,52.86371602093863],[-127.25179586188068,52.86400583360651],[-127.25187077482731,52.86418099675497],[-127.25194845316929,52.86435500961114],[-127.25206030577158,52.86452024804453],[-127.2521906310561,52.86468137131891],[-127.25232651983849,52.864841314385636],[-127.25246794240714,52.865000077543],[-127.25261397470976,52.86515711471849],[-127.25276461651619,52.865312416932206],[-127.25291983664515,52.86546542859731],[-127.2530815116688,52.86561668558983],[-127.253255188171,52.86576446102907],[-127.25343984593295,52.865905950368365],[-127.25363912321392,52.86603831730466],[-127.25386485539119,52.8661524693286],[-127.25411887113599,52.86624782190846],[-127.25436745575713,52.86634827986496],[-127.25459508648264,52.86646409587792],[-127.25481634663751,52.86658445359034],[-127.255027565587,52.86671108684049],[-127.25522502428164,52.86684459130437],[-127.25540694502973,52.86698779244799],[-127.25556958886065,52.86713960054843],[-127.25570638785382,52.867298409184244],[-127.2558220163328,52.8674647243963],[-127.25591639347856,52.867636314532234],[-127.25598757610629,52.86781039399692],[-127.25601980659081,52.867988252000146],[-127.25603536220441,52.868169094590684],[-127.25606946986503,52.86834748838566],[-127.25612861919214,52.86852338194542],[-127.2561970541034,52.86869861134731],[-127.25626178524416,52.868874436186346],[-127.25631909211059,52.86905090520342],[-127.25637919920743,52.86922790911227],[-127.25643095892345,52.8694055581117],[-127.25646691323475,52.8695833760386],[-127.25646938226178,52.869762107810864],[-127.25643467481162,52.8699418018506],[-127.25639809177652,52.87012151590594],[-127.25640146543864,52.870299126143905],[-127.25648200452255,52.870474225838215],[-127.25661789633878,52.87063359882945],[-127.25680258635026,52.87077508245178],[-127.25698452740173,52.87091771595114],[-127.25713336319144,52.87107415247212],[-127.25723694037072,52.87124172469503],[-127.25731466987158,52.87141628895604],[-127.25739707528946,52.8715913679988],[-127.2575365133887,52.87174454221395],[-127.25777881582084,52.87185122895494],[-127.25802940142498,52.871955020145364],[-127.25821011629051,52.872087577953835],[-127.25828143133896,52.87226557250775],[-127.25837773926646,52.87243882533425],[-127.25858417366655,52.872559899534856],[-127.25883925869765,52.87265803700285],[-127.25906242350541,52.87277836632723],[-127.25924434936618,52.87292044058387],[-127.25927004487805,52.87309724655274],[-127.25924652620783,52.87327737717556],[-127.2592443895159,52.8735200506307],[-127.25933225774465,52.873691142523946],[-127.25945068470263,52.87385686795279],[-127.25958845744053,52.87401566135179],[-127.2597703903347,52.87415773468381],[-127.25995051158971,52.87430093895374],[-127.26012325972567,52.87444702838864],[-127.26027582231933,52.874602300120976],[-127.26041547939568,52.87476219309898],[-127.26058541437723,52.87490719124723],[-127.26081411173402,52.875025225357795],[-127.26105654019477,52.87513525739201],[-127.26124561020131,52.875266600114955],[-127.26133439493388,52.87543656881515],[-127.26140113432537,52.87561629603182],[-127.26149920696352,52.875785600052666],[-127.2615412045078,52.875915158208635],[-127.26192245404127,52.875967660283216],[-127.26221723486329,52.875991393806316],[-127.26251753162992,52.87601282581919],[-127.2626071753636,52.87602307066209],[-127.2627768426196,52.876095783601],[-127.26300732996006,52.87621098786352],[-127.26322046673214,52.87633758579206],[-127.26340429694426,52.876479624174905],[-127.26362463000206,52.87659774277135],[-127.26387601267004,52.87669534437732],[-127.26411376638292,52.876804308639116],[-127.26436778556763,52.87689684188984],[-127.26461129859231,52.87698052149177],[-127.26472236210124,52.877147997465656],[-127.26481597334161,52.877322950564206],[-127.2649292971979,52.87744109727308],[-127.26517864764901,52.877595877053984],[-127.26536435081613,52.87773790119732],[-127.2655048917674,52.87789497221906],[-127.26560575313019,52.87806368688331],[-127.26572601337298,52.878289907530295],[-127.26600225757039,52.87822136365767],[-127.26627954045352,52.878156735098464],[-127.2665687195018,52.878116634553585],[-127.26687577707673,52.87811444666388],[-127.26714765149468,52.878181003942586],[-127.2674233317064,52.87825032596581],[-127.2676953744705,52.878322484006176],[-127.26796565738711,52.87839802270341],[-127.26827475066936,52.878464175958854],[-127.26851489636454,52.878527710110355],[-127.26880553950319,52.87856828344682],[-127.26909782532093,52.87860099297258],[-127.26939338444292,52.87861909646885],[-127.26969276875396,52.87860913875076],[-127.26997220979838,52.87855456505461],[-127.27024055515392,52.87847097064328],[-127.27052301209014,52.87842420839604],[-127.27082234452398,52.87841256271001],[-127.27112048459809,52.87842335345787],[-127.27141463196412,52.87845603710704],[-127.27169570235101,52.878518557330324],[-127.27194059494663,52.87861622106927],[-127.27216563867687,52.87873482880784],[-127.27238798538832,52.87885682761221],[-127.27262300577104,52.878966360367606],[-127.27289060325931,52.87904527922256],[-127.27314825916514,52.879133827177405],[-127.27338784402957,52.879240511555956],[-127.27363557651229,52.87933925284699],[-127.27389870108703,52.87942382172862],[-127.27416088885741,52.87950840018165],[-127.27441499635384,52.87960259665371],[-127.27467193688565,52.87969787366684],[-127.27492431988286,52.879796570817675],[-127.27515932018292,52.87990553391665],[-127.27536318871405,52.880031089889926],[-127.27552674223243,52.88017837749976],[-127.27566558534278,52.880339382215624],[-127.2758875991239,52.880604836244565],[-127.27611722329225,52.88072002449438],[-127.27634866112784,52.88083407184395],[-127.27657004064962,52.88095383179448],[-127.27676944345743,52.881085602536835],[-127.27695146176076,52.8812270838015],[-127.27712429623455,52.88137314761569],[-127.27729257090944,52.8815220581482],[-127.27746267434786,52.881669836767486],[-127.27764013849743,52.88181472874991],[-127.27782217946739,52.88195676432114],[-127.2780051449366,52.882098798527544],[-127.2781890343767,52.88224081343846],[-127.27837475058487,52.88238113153309],[-127.27856504569411,52.88251915800769],[-127.27876084095973,52.88265432692055],[-127.27896302553295,52.88278549884052],[-127.27917255222567,52.882912663368955],[-127.27939125250028,52.883035809504086],[-127.27961632361328,52.88315384693406],[-127.279847781957,52.88326732237862],[-127.2800864855867,52.88337455875867],[-127.28033424092101,52.88347272996123],[-127.28059559395795,52.88355898898271],[-127.28086331909624,52.88364068598095],[-127.28112921613356,52.8837229671625],[-127.28138418614431,52.88381377706853],[-127.28161647474906,52.88392387772811],[-127.28180598227216,52.8840658347631],[-127.28194660468098,52.884222885504194],[-127.28202912115461,52.88439794602575],[-127.28206984003883,52.884575703787654],[-127.28208366609407,52.88475656116768],[-127.28207232675395,52.88493656320564],[-127.28204326644584,52.885115646650526],[-127.2819983940631,52.88529489350658],[-127.28192451395114,52.88546886173029],[-127.28182062195471,52.88563586761562],[-127.2817017879808,52.88580079473355],[-127.28157168729095,52.88596303811352],[-127.28143315100833,52.8861231406943],[-127.28128802291305,52.88628050852272],[-127.28113345527778,52.88643405183883],[-127.2809601051482,52.88658163982902],[-127.28078016509328,52.88672705779139],[-127.2806049028593,52.88687354526879],[-127.28044558448549,52.88702378598984],[-127.28031631230462,52.88718265645164],[-127.28025268459747,52.88735763243785],[-127.28021533124323,52.88753960277824],[-127.28014702318937,52.88771349988677],[-127.28002373546926,52.887885762890846],[-127.27982844284331,52.8880162115304],[-127.2795729835392,52.888096324361726],[-127.27929188345432,52.88815934825477],[-127.27900120728636,52.88821350056082],[-127.27871430332935,52.8882692967432],[-127.27842533573856,52.888318390079355],[-127.2781315372333,52.88836137549974],[-127.2778454029633,52.888412113256145],[-127.27758042822339,52.88848504461123],[-127.27735091832929,52.88859232474853],[-127.27714542068261,52.88872456523277],[-127.27694568818413,52.88886234653304],[-127.27673163541169,52.88898851944496],[-127.27650807356868,52.88910806163996],[-127.27628261594678,52.88922651216908],[-127.27606094638826,52.8893471536914],[-127.27585059414247,52.8894727198857],[-127.27565917195443,52.889608732028194],[-127.275496069596,52.88975787681035],[-127.27534715314518,52.889914721772215],[-127.27519543423652,52.8900710320459],[-127.27502575440438,52.89021800590432],[-127.2748371943874,52.890356782962854],[-127.27464016423114,52.89049228922756],[-127.27444029818936,52.89062614921588],[-127.27424323201872,52.89076053439685],[-127.27405374384385,52.890899320156194],[-127.2738793124347,52.891043546272144],[-127.27372285638734,52.891197664233346],[-127.27358616814784,52.89135884831744],[-127.27346817607916,52.89152263613028],[-127.27341762675397,52.89170026335246],[-127.27341464936089,52.89188073767024],[-127.27342466995555,52.892060515320225],[-127.27343935122937,52.892240233514535],[-127.27345310965309,52.89241997064764],[-127.27346126888642,52.892599759427576],[-127.27345731998686,52.89277912340944],[-127.27342541659404,52.89295766932233],[-127.27337952634865,52.89313524589829],[-127.27334857910975,52.89331490214827],[-127.27334197892377,52.89349877777588],[-127.27327163988643,52.893668773661354],[-127.27311788803642,52.89382006375045],[-127.27293322761908,52.89396495466741],[-127.2727579255069,52.894111994466385],[-127.27263988916314,52.8942746607733],[-127.27259218282728,52.89445393314947],[-127.27254815094423,52.894632053932135],[-127.27250971775572,52.894810105129565],[-127.2724422133977,52.89513754030504],[-127.27326604517302,52.89522612965445],[-127.27383587635117,52.895351643292315],[-127.27443710806847,52.89534400882594],[-127.2750585296109,52.8955132318668],[-127.27566576846993,52.89570614137785],[-127.27650723079886,52.89597832097553],[-127.2775914876805,52.89677125049133],[-127.2781511247014,52.89720731255851],[-127.2788705143561,52.897568221007035],[-127.27936356948521,52.89792598355091],[-127.27974943241776,52.89815545868567],[-127.28011096446417,52.89822605905592],[-127.28052640531499,52.898324646192265],[-127.28098495512982,52.89846310957532],[-127.28167335427374,52.89878230579247],[-127.28241754825153,52.899099213039925],[-127.28283959872883,52.89932380953856],[-127.28327087680742,52.899637955345746],[-127.28383395125478,52.899999983277404],[-127.28389567962485,52.900039656681884],[-127.28413544247013,52.90014742919122],[-127.28438147887695,52.90024729638986],[-127.2846545953335,52.90031828356456],[-127.28493217353655,52.900383052731556],[-127.28519000055017,52.90047213779286],[-127.28544149124363,52.900567460182685],[-127.2856902990923,52.90066616466786],[-127.28593910836442,52.90076487758369],[-127.28618972964841,52.900861884549265],[-127.28644945776658,52.90095206685113],[-127.28671646475007,52.90103656518213],[-127.2869826000051,52.901122749102846],[-127.28723495209627,52.90121525190856],[-127.28746446609868,52.90132257398436],[-127.28762998598272,52.901468701874855],[-127.2877478312493,52.90164000810629],[-127.2878433171469,52.90181043826713],[-127.2879110147047,52.90198622048984],[-127.28800532506311,52.90208717654593],[-127.28793374227331,52.90227568236978],[-127.28788940931784,52.902380398002165],[-127.2881620169436,52.902588114832746],[-127.28843201564388,52.90264791996108],[-127.28872183423258,52.902685657089805],[-127.28901980135544,52.902715449961576],[-127.28931686472265,52.90274638170996],[-127.28960678625464,52.90278746884344],[-127.28989674254524,52.90282968460761],[-127.2901849222904,52.90287471655354],[-127.2904704721752,52.90292538042763],[-127.29075068980471,52.90298394741462],[-127.29102557948151,52.903051538261295],[-127.2912969479298,52.90312532679996],[-127.29156473175998,52.90320420196194],[-127.29183073759435,52.90328533755886],[-127.29209218434289,52.903369884907455],[-127.29234736329745,52.903462910694024],[-127.29260163675168,52.903556501779036],[-127.29286132685849,52.9036444290093],[-127.29312735478206,52.90372611736155],[-127.29339965492399,52.903799899829906],[-127.29368161006761,52.90385451367848],[-127.29397215852515,52.90388494056337],[-127.29426976548848,52.90390296075714],[-127.29456738759852,52.903920980034],[-127.29486067154414,52.90394969797907],[-127.29515318756623,52.90398401846592],[-127.29544720627416,52.90400600233034],[-127.29574432037133,52.90400776878956],[-127.29604208324241,52.90400000540559],[-127.29633991420171,52.903994482029056],[-127.29663678749053,52.90398784769758],[-127.29693369709935,52.9039828978333],[-127.29723173255425,52.90398409448119],[-127.29753063814827,52.90398303926269],[-127.29783045000879,52.90398140842423],[-127.29813033041037,52.90398202654475],[-127.29842848529266,52.903987137009324],[-127.29872319007164,52.90400125983305],[-127.29901265085215,52.9040266384361],[-127.29927082073716,52.90409495969122],[-127.29955932756813,52.90421112882349],[-127.29997569062665,52.904305719684935],[-127.29987188808809,52.90441333871809],[-127.299614232788,52.9044845518059],[-127.29932061894088,52.90456736907676],[-127.29905522156474,52.904628579618986],[-127.29879020031377,52.90467185329384],[-127.29856316798576,52.904739363645795],[-127.29831524479752,52.9048244713646],[-127.29810510381532,52.904957363097374],[-127.2980005939062,52.90510309387805],[-127.29793800359793,52.9052802990826],[-127.29787071431174,52.905455879422504],[-127.29780530361684,52.905632003833986],[-127.29776320804385,52.90580898276081],[-127.29775469791018,52.9059883975114],[-127.29776297747998,52.90616819187842],[-127.29776474970323,52.90634861390923],[-127.29775251550915,52.90652806968215],[-127.29773471014569,52.90670758689193],[-127.29771875173145,52.90688708370287],[-127.29771025609114,52.90706649816621],[-127.29773155459037,52.90724613983348],[-127.29775005075659,52.90742525649904],[-127.29774157234638,52.90760523557521],[-127.29772747565924,52.90778471174682],[-127.29771804140734,52.90796413646355],[-127.29772538246003,52.908143932002666],[-127.29774111055724,52.908323643968785],[-127.29775123741986,52.90850340873725],[-127.29777646376056,52.90868917554481],[-127.29768925080688,52.90885321170098],[-127.29752984194549,52.90900122379471],[-127.29734982962346,52.909145544704636],[-127.29716231662945,52.90928827136973],[-127.29697953306037,52.90943317810956],[-127.29681362910478,52.909582390451924],[-127.29666574549944,52.90974204658482],[-127.29658153113631,52.90991276424036],[-127.29655153987277,52.91009017362004],[-127.29653463466387,52.91026912436708],[-127.29652801243037,52.91044907355453],[-127.29652419312212,52.910629556690864],[-127.29652131460725,52.91081059429766],[-127.29651190871243,52.910991138957606],[-127.2964969161884,52.91117174516002],[-127.29644643958557,52.91134938010508],[-127.29630307499869,52.9115045027237],[-127.2961098761164,52.9116444836377],[-127.29590331647158,52.911773959758335],[-127.29569482545259,52.91190122422692],[-127.29548163583108,52.912027410322516],[-127.29526747030319,52.91215193010958],[-127.29504954498759,52.912275370118415],[-127.29483156744695,52.91239713363299],[-127.29460979578214,52.912516688003855],[-127.29437280151414,52.912625766766375],[-127.29413486546741,52.91273429949803],[-127.29391023832912,52.91285220725184],[-127.2936847883717,52.91297348584997],[-127.29347354980632,52.9131024530023],[-127.29330280063279,52.91324610031912],[-127.29317725568163,52.91340607072649],[-127.29307808775006,52.913575828860374],[-127.29299115285623,52.91374994441115],[-127.2928986109464,52.91392299177006],[-127.29279568233407,52.9140916791284],[-127.29269276977566,52.91426092208482],[-127.29258138332055,52.914427451664196],[-127.29244648650041,52.91458640309602],[-127.29226738882869,52.914731261127216],[-127.29211463700257,52.914885360378044],[-127.29197320906589,52.91504381805286],[-127.29183931659126,52.91520555503887],[-127.29172042205067,52.91536993354675],[-127.29162308925964,52.91553911409776],[-127.29153986890579,52.91571317851453],[-127.29147257073672,52.915889874436004],[-127.29142674815863,52.91606802019267],[-127.29140607710202,52.916246445755355],[-127.29140891646408,52.91643245848616],[-127.2914526081533,52.916613539839815],[-127.291558157347,52.91677656615523],[-127.29172462426682,52.9169210006701],[-127.29192714742449,52.917056628997],[-127.29214262191586,52.91718875251857],[-127.29234976012133,52.91732264384327],[-127.29252545900432,52.917464169487005],[-127.29262354767455,52.91762672088909],[-127.29261991524407,52.917813925331444],[-127.29259184955853,52.91799411778822],[-127.292556265378,52.91817214234648],[-127.29251229247659,52.91835026798026],[-127.2924636532503,52.918527879972075],[-127.29241222729645,52.91870552252699],[-127.29235890635225,52.91888262099209],[-127.29230842048618,52.91906081798411],[-127.29225330216829,52.91923962169176],[-127.29217656951742,52.919412494120586],[-127.29205764963226,52.919576872706656],[-127.29187960658523,52.919726765709136],[-127.29164430866844,52.91983189226388],[-127.29138698611455,52.919917095608774],[-127.29111633756514,52.91999346967086],[-127.29083900692191,52.920064321643316],[-127.29055971062847,52.920131823309966],[-127.29028037976929,52.92019821290297],[-127.28996595248482,52.920243683465245],[-127.28964387277948,52.92028307743965],[-127.28936712016473,52.92034214726433],[-127.28918678586214,52.920447796228544],[-127.28910100300753,52.920598915509785],[-127.28907476610644,52.920778521747685],[-127.28908157508828,52.92097289150859],[-127.28909776317049,52.92116884410129],[-127.28909867939812,52.921353200653286],[-127.28909580031451,52.92153479242118],[-127.28910779039117,52.921715656433946],[-127.28915040324293,52.92189226685598],[-127.28924124213526,52.92206162447329],[-127.2893710281772,52.92222495158793],[-127.28951558089706,52.922383633780925],[-127.28968313735359,52.92253254187702],[-127.2898580797895,52.92267968318523],[-127.29000255086564,52.92283555933084],[-127.29012598308665,52.923004003059916],[-127.29021978461031,52.9231789311032],[-127.29025018434257,52.92335174785351],[-127.29018456171482,52.92352281994141],[-127.29005646162531,52.923692335372465],[-127.28991880725697,52.92385355428397],[-127.28975943415585,52.9240054802521],[-127.2895944206129,52.92415578219112],[-127.28945197973948,52.92431312585059],[-127.28932836907723,52.92447698745962],[-127.28920944087905,52.92464191835841],[-127.28908116199608,52.9248052749044],[-127.288943485163,52.92496648376532],[-127.28880583928388,52.92512825695161],[-127.28868126809365,52.925291572377745],[-127.28858012391892,52.925459105139986],[-127.28851267951379,52.92563188150313],[-127.28845929785076,52.92580730121366],[-127.2884152657449,52.925984295149576],[-127.28837967451189,52.92616288223534],[-127.2883487646467,52.92634198289453],[-127.28832440070876,52.92652212364157],[-127.2883028405009,52.926702798523486],[-127.28828314107065,52.92688289712532],[-127.28826438227982,52.92706354129224],[-127.28824465052925,52.92724307534608],[-127.28822585751281,52.9274225991002],[-127.28821265305523,52.92760206166242],[-127.28820411322206,52.92778147314787],[-127.28820023998504,52.92796138942229],[-127.28819729099952,52.92814130452643],[-127.2881943566213,52.92832121048469],[-127.28819048356516,52.9285011356621],[-127.28818474725207,52.92868107224617],[-127.28818085703519,52.9288604327192],[-127.28817790790548,52.92904034772379],[-127.28817124743014,52.92922029436063],[-127.28815990516927,52.92939973633002],[-127.28814297383578,52.9295792394447],[-127.2881335792535,52.929761466377606],[-127.288127005283,52.929944774190545],[-127.2881167033114,52.93012756689497],[-127.28809327737191,52.93030826172735],[-127.28805016124198,52.93048468906184],[-127.28797988571728,52.93065637472192],[-127.28787865824198,52.930821665601314],[-127.28775960502021,52.93098323330034],[-127.28762650079739,52.93114215720639],[-127.28748120823775,52.93129840793148],[-127.28732748943949,52.93145362987067],[-127.28716812932122,52.93160722768654],[-127.28700596623911,52.93176086487258],[-127.28684379982035,52.93191393699424],[-127.28668445330257,52.93206809877555],[-127.28653072881983,52.932223319601114],[-127.28638167034687,52.93237904509148],[-127.28622703659138,52.93253484025331],[-127.28606676328876,52.93268956710075],[-127.28590462380178,52.9328437582053],[-127.28574434843497,52.93299849354753],[-127.28558875401448,52.93315373340536],[-127.2854406449216,52.93331001202319],[-127.28530285725778,52.93346841919548],[-127.28523178951681,52.933614890408585],[-127.28516749265886,52.9337999484284],[-127.28515984610966,52.93397879322218],[-127.28514067313223,52.9341773721654],[-127.28512328740963,52.93434230960368],[-127.2851255571382,52.93450982978961],[-127.28519322781727,52.93468336931094],[-127.28530178634735,52.93485253530964],[-127.28543250338221,52.935015290733176],[-127.28558535857441,52.93516996808533],[-127.2857566967704,52.9353199514697],[-127.28592063219511,52.93547114516659],[-127.28605308134232,52.93562939803929],[-127.2861486028439,52.93579870564703],[-127.28622658584896,52.93597380845297],[-127.28628511623822,52.93615305078876],[-127.28632130229059,52.93633252826908],[-127.28633135399883,52.936511179524736],[-127.28632278738283,52.936690025233354],[-127.28629839215294,52.93686960872072],[-127.2862609705412,52.93704989935733],[-127.28621047118632,52.93722920314527],[-127.28614776776219,52.937405842874654],[-127.28607285797237,52.93757925370238],[-127.28598295626675,52.93775003088074],[-127.28587341126816,52.93791821621351],[-127.28574699545196,52.938083779365115],[-127.28560456143259,52.93824335774633],[-127.28544981879415,52.938396345947645],[-127.28527716241057,52.9385428051146],[-127.2850688467946,52.938681252260835],[-127.28483373168434,52.93879644721596],[-127.28457693455933,52.938872661715095],[-127.28429076519318,52.93890211648702],[-127.28398320239663,52.93890210905469],[-127.28367731727626,52.93889592300181],[-127.2833806646573,52.93888682920662],[-127.28308370816872,52.93886765142107],[-127.28278695456498,52.938855195048816],[-127.28249079183043,52.93886233975627],[-127.28219500056028,52.93888181664808],[-127.28189942823492,52.93890857065942],[-127.28160387227226,52.93893587962716],[-127.28130354903898,52.93895988651509],[-127.28101004135596,52.93899334017677],[-127.28073500152222,52.93905180408785],[-127.28049095745176,52.93914972053502],[-127.28026440571206,52.93927098151364],[-127.28003682940574,52.93938945583782],[-127.27980345912107,52.93950125935544],[-127.2795710288519,52.939613617019326],[-127.27934050938329,52.93972707416635],[-127.27910904950903,52.93984054105787],[-127.27888042675924,52.93995566222735],[-127.27865561164674,52.940072974064925],[-127.2784326944673,52.94019195041452],[-127.27821170502612,52.94031259096275],[-127.27799449338907,52.940435422551985],[-127.27777920947713,52.94055991836764],[-127.27756864282776,52.94068660402962],[-127.27736091328165,52.94081494408173],[-127.27715225792026,52.94094328482087],[-127.27694266032987,52.94107107950621],[-127.27675859804364,52.94121148970716],[-127.27655749379511,52.94134310960912],[-127.27635833596182,52.94147751433763],[-127.27622987490649,52.94163861463331],[-127.27611272643718,52.94180351020302],[-127.27599836491659,52.941968375425965],[-127.27583660819411,52.94216905243182],[-127.27583704615982,52.94230801747284],[-127.27581633059117,52.94248755778342],[-127.27581519181904,52.94266745078382],[-127.27579632263352,52.94284640619686],[-127.27575132975471,52.9430245328868],[-127.27570727548223,52.94320264040071],[-127.27560677743872,52.94336399266708],[-127.27540770698072,52.943594776724936],[-127.27531670889134,52.94373081399532],[-127.27533405204883,52.943811874071486],[-127.2753971297867,52.94398826503677],[-127.27546668974087,52.944163465013865],[-127.27547669571666,52.9443415515187],[-127.27546437354437,52.94452156544018],[-127.27550884985494,52.94469927850462],[-127.27554474598357,52.94487036015307],[-127.27568042540085,52.94504315807933],[-127.27578799965663,52.94521122159837],[-127.27588907798598,52.94538047612169],[-127.27590561843385,52.94555905651824],[-127.27579233830909,52.94582253283465],[-127.27554417820967,52.94572211496104],[-127.27525673201951,52.94567983473863],[-127.27498483209337,52.94565812331628],[-127.27467047163675,52.94561950422747],[-127.27437212833816,52.94561768579454],[-127.27409106357976,52.94560167511243],[-127.27378340219668,52.94559996498061],[-127.27349447862434,52.9455700243962],[-127.27319887366765,52.94556649678006],[-127.27289997533728,52.94557701751998],[-127.27260269083457,52.9455796660457],[-127.2723050695996,52.94557055437352],[-127.2720082892933,52.94555863554712],[-127.27171067003083,52.9455500782317],[-127.27141309954084,52.94554264932497],[-127.27111574825055,52.945543053378834],[-127.27081114122795,52.94554970343523],[-127.27053676896207,52.945601420120646],[-127.27031675351932,52.94572538759358],[-127.27008238391161,52.94583719050781],[-127.26982699187653,52.945931279162],[-127.26959159515853,52.94603972997665],[-127.26937340500146,52.946162555200104],[-127.2691665967497,52.946291990600194],[-127.26897115330385,52.94642746261145],[-127.26878522778115,52.9465695560322],[-127.26860210575684,52.94671217480678],[-127.26841233348449,52.94685039099736],[-127.26820738246323,52.94697979561978],[-127.26798627857352,52.94709873145702],[-127.26775473177581,52.94721161981983],[-127.26751557831612,52.94731954187085],[-127.26727069882119,52.947423042167514],[-127.26702293146083,52.9475237667311],[-127.26677417204344,52.94762226895697],[-127.26652349752162,52.94771910567783],[-127.26627000027064,52.94781485148361],[-127.2660145396919,52.94790781155774],[-127.26575526557004,52.94799745886622],[-127.26549303710017,52.94808208962688],[-127.26522691338025,52.94816115805543],[-127.2649539745981,52.9482307685002],[-127.26467324502289,52.94828869892794],[-127.26438670854121,52.94833996672675],[-127.26409918034055,52.94838900303229],[-127.26381265740247,52.94844026927126],[-127.26353098552002,52.948498207050484],[-127.26325129325872,52.94856004989872],[-127.26297257439855,52.948623558222984],[-127.26269291348414,52.9486865111369],[-127.26241222781877,52.94874612117939],[-127.26212949617614,52.94880013992687],[-127.26184181288092,52.94884413357108],[-127.26154912789498,52.948876408092936],[-127.26125348965219,52.94890366581088],[-127.26095978155446,52.94893315251035],[-127.2606670636461,52.948964860336794],[-127.26037340436811,52.94899602163114],[-127.26008068404398,52.949027172140696],[-127.25978794838046,52.94905832208171],[-127.25949427136419,52.94908892548369],[-127.2591996028716,52.949117288354934],[-127.25890585872735,52.94914564956831],[-127.25861216377086,52.94917568610734],[-127.25832044810048,52.949209618776834],[-127.25802601165533,52.94924638605276],[-127.25772626294822,52.94929217503714],[-127.25749045257038,52.94938827747567],[-127.25731560926523,52.94952854808847],[-127.25716456917057,52.94968593985144],[-127.2570155227454,52.94984723709308],[-127.25684935394536,52.9499975007643],[-127.25667472124736,52.95014505719578],[-127.25649160792116,52.95028934168923],[-127.25629320318534,52.95042146115943],[-127.25605952824284,52.95052705936116],[-127.25578583345417,52.95060338944113],[-127.25552939232377,52.95069578077266],[-127.25530165273932,52.950813077134974],[-127.2550508341678,52.950906528166655],[-127.25477211926457,52.950970581495035],[-127.25449345441491,52.95103686607771],[-127.25422160084331,52.95111260798165],[-127.25401650371737,52.95123919115087],[-127.25383807877914,52.951385106902755],[-127.25365303687727,52.9515277216982],[-127.25342233585219,52.951640007071965],[-127.25314798500344,52.951725859388944],[-127.2529502386815,52.95184900023571],[-127.25284234291841,52.95201601334262],[-127.2527628666925,52.952197858091296],[-127.2526606932777,52.95236929294984],[-127.2524913644987,52.95250782060787],[-127.2522767375437,52.95262777760274],[-127.25203753074253,52.95273622356268],[-127.25178316339628,52.952836429318026],[-127.25152115758843,52.952930556256355],[-127.25126089919844,52.9530207370614],[-127.25099663147088,52.95310142934842],[-127.25072081644136,52.953169924821296],[-127.25044115704759,52.95323453348822],[-127.25016535659034,52.95330358335332],[-127.24990110161761,52.95338483782977],[-127.24964555384456,52.9534766415617],[-127.2493957799144,52.953575116689066],[-127.24915080376792,52.953678014250265],[-127.2489077236595,52.9537820208509],[-127.24867227938964,52.953892105386515],[-127.24844164937473,52.954007177102916],[-127.24820809960974,52.95411836129527],[-127.24796112217696,52.95421680362845],[-127.2476978476292,52.954300284039014],[-127.24742690061512,52.95437600015606],[-127.24715595401439,52.95445227150285],[-127.24689460483383,52.95453741522965],[-127.24664765449728,52.95463696618056],[-127.24641028642971,52.95474538981088],[-127.24617487946313,52.95485714534827],[-127.24593557921466,52.954963347011926],[-127.24568682564478,52.95506515636264],[-127.24541763753487,52.95513805184572],[-127.24512992664168,52.955183115894016],[-127.24478355162017,52.95523048481246],[-127.24496861880729,52.95537366465818],[-127.24514720432056,52.95551858931536],[-127.24527119948347,52.95567753937812],[-127.2453137134405,52.955855838035205],[-127.24535164064044,52.95603643553819],[-127.24541180846745,52.95621287088569],[-127.24547197517535,52.95638874136508],[-127.24551818653303,52.95656588904946],[-127.24552348397916,52.95674682252125],[-127.24554641866415,52.95692533701401],[-127.2456567076995,52.957093397180614],[-127.24592010972448,52.957172978524035],[-127.24621557150002,52.95723317704692],[-127.24646051385471,52.95731912087281],[-127.24658291758583,52.95748705197435],[-127.24659295339924,52.95767017660748],[-127.2465299240506,52.95784231158454],[-127.24644922403374,52.95801575421037],[-127.24635451600396,52.958188224279326],[-127.24624761633281,52.95835858183271],[-127.24613223717067,52.95852623169422],[-127.24600832745756,52.958688924004306],[-127.24583926345113,52.95883808048036],[-127.24565043398188,52.95898073045851],[-127.24548600459956,52.95912928149339],[-127.24539766009154,52.95929663567105],[-127.24536662707905,52.95947851780655],[-127.24529715452171,52.95965352621989],[-127.24517516825962,52.95981843854599],[-127.24502021965534,52.95997249209716],[-127.24482753881965,52.9601112543403],[-127.24458236660516,52.96020910486914],[-127.24431335694905,52.96028927543854],[-127.24405491887615,52.96037997592108],[-127.24382236058271,52.960494502134246],[-127.243654108459,52.96064029343963],[-127.24351800658816,52.9608008700769],[-127.2433743657256,52.960959284705034],[-127.2432090287531,52.96110896250147],[-127.24303237325023,52.96125427667328],[-127.242842436542,52.96139188577281],[-127.24262123580677,52.961512448994554],[-127.24238573248448,52.96162252044848],[-127.2421454450507,52.96172872388804],[-127.24190810758431,52.9618399343893],[-127.24170958589704,52.96197090785181],[-127.24156877116909,52.96213041096372],[-127.24144956878234,52.962295845483304],[-127.24133879592931,52.962462320692566],[-127.24123180004307,52.962630432541964],[-127.24112386205796,52.96279798936118],[-127.24099066374059,52.96296301490474],[-127.24086764622344,52.9631256916285],[-127.24093033196965,52.9632925804285],[-127.24106858675097,52.96346034962478],[-127.24119465049077,52.963626005704405],[-127.24137223489817,52.96376758404008],[-127.24159944296468,52.963883983701734],[-127.24184401417415,52.963988428061775],[-127.24209487462932,52.96408440484158],[-127.24235303071013,52.96417470065454],[-127.24282121866197,52.96433562573032],[-127.24305302213499,52.964449732741265],[-127.24328664081446,52.96456157874433],[-127.24353747514847,52.96465643206522],[-127.24379925232985,52.96474276855604],[-127.24406553691053,52.96482400923987],[-127.24433632747945,52.96489959823378],[-127.24460975938987,52.96496955520686],[-127.24489217218964,52.96502820964837],[-127.24517899224712,52.96507785123545],[-127.24546835482649,52.96511849964965],[-127.24576123529222,52.96515238595677],[-127.24605149093985,52.96519190280421],[-127.24633667869318,52.96524940376022],[-127.24657744034617,52.96534996074994],[-127.24678364788973,52.96548114186237],[-127.24705908354933,52.96555555480265],[-127.24731523022236,52.96564025763834],[-127.2474873153416,52.965784126514386],[-127.24763469843337,52.96594450241665],[-127.2477912565249,52.966099186417054],[-127.24799643140055,52.966226449430806],[-127.24825462958162,52.96631729685234],[-127.24853169271147,52.9663838442531],[-127.24879530581137,52.96646846478324],[-127.24904713635085,52.96656441665386],[-127.24928919871634,52.96667728207859],[-127.2494455199465,52.966824112551464],[-127.24953537182907,52.96699350596404],[-127.24960118307145,52.9671704433288],[-127.24965682883114,52.96735028573909],[-127.24970773840404,52.967527372117075],[-127.2497372466327,52.96770637101631],[-127.24976530208812,52.9678993985268],[-127.2497621874953,52.968079299312215],[-127.24975484683318,52.96827382296079],[-127.24983973744297,52.96843318237679],[-127.24999626318841,52.9685861782095],[-127.25018408026189,52.9687253934037],[-127.2502191525891,52.96890321234147],[-127.25019739101873,52.969082755056455],[-127.2501952345994,52.96926321040797],[-127.25025446677391,52.96943796668265],[-127.25036385067976,52.96960547545295],[-127.2504713870162,52.96977355958972],[-127.25055664570166,52.969945242178575],[-127.25063822479352,52.970118640318475],[-127.2507160752275,52.97029208693821],[-127.25079021303868,52.97046612877514],[-127.25085878998478,52.97064135028947],[-127.25089857059511,52.97082079544415],[-127.25101340662232,52.97098319803003],[-127.25118199398612,52.97113382273287],[-127.25134313981316,52.97128509105901],[-127.2514996978167,52.97143864032417],[-127.2516608459287,52.971589908188186],[-127.25183671589197,52.97173428626645],[-127.25204475314081,52.97186264146702],[-127.25226657102905,52.97198356082495],[-127.25250967867409,52.97209864996861],[-127.2527211191865,52.97221575187208],[-127.25296663976233,52.972317930894455],[-127.25320758917415,52.97242295529156],[-127.25343855598557,52.972537606841904],[-127.25365117261158,52.97266254843024],[-127.25383901965134,52.97280175745691],[-127.25401861544971,52.97294553679159],[-127.25421294990325,52.973082990651335],[-127.25436665421411,52.97323433406963],[-127.25448160915597,52.9734000940749],[-127.25449623846058,52.973579805682796],[-127.25451738625719,52.97375889200332],[-127.2545310761653,52.97393862253846],[-127.2545466458037,52.974118324074375],[-127.25459106565526,52.974296041851474],[-127.25473188617389,52.97445312540367],[-127.25488846981962,52.97460723468624],[-127.25501239253991,52.97479195042681],[-127.25514029330347,52.97495364490254],[-127.25518841344405,52.97513020228994],[-127.25521889173118,52.97530975379682],[-127.25524284990418,52.97548936577046],[-127.25524538459786,52.97566977077094],[-127.25527117531105,52.97584825145205],[-127.25533606572031,52.9760240652197],[-127.25544083290578,52.97619217405519],[-127.25556690779979,52.976355017108055],[-127.255704107607,52.97651549111453],[-127.25584594576213,52.97667480379436],[-127.25597849417832,52.97683589187489],[-127.25608509613248,52.97700229502308],[-127.25616760355766,52.97717456735898],[-127.25623434837955,52.97734980492044],[-127.25629181773279,52.97752681787717],[-127.25634370890151,52.97770445509379],[-127.25639373538023,52.9778821121544],[-127.25642420254408,52.97806054255265],[-127.25644536218863,52.97824018389402],[-127.25647772808053,52.97841971469486],[-127.25650930306469,52.97860429254373],[-127.2566081949032,52.97866767347904],[-127.25674259158322,52.97873292604752],[-127.25697779395426,52.978831835807945],[-127.2572233793905,52.978934561244294],[-127.25744344998834,52.97905773092331],[-127.2576377738707,52.97919350260169],[-127.25778693967683,52.97934768705631],[-127.25791493125233,52.979511627721415],[-127.25807700806115,52.979661191211115],[-127.25828148664168,52.97979292651135],[-127.25848134587324,52.97992639631336],[-127.25869314052726,52.9800535789682],[-127.2589031689468,52.98018357736527],[-127.25911686428573,52.980311850690256],[-127.25933869671691,52.98043108009481],[-127.25957594417282,52.98053501048412],[-127.25984214186771,52.98060892805417],[-127.26013099965628,52.98066019782492],[-127.2604216734341,52.98070976194773],[-127.2606970487551,52.98077797598077],[-127.26095983521361,52.98086257861784],[-127.26121724128056,52.980953962419264],[-127.26147552389357,52.981043659724804],[-127.26173199207217,52.98113505245496],[-127.26197114940094,52.98124063419393],[-127.26201894213494,52.98134210553567],[-127.26223996781523,52.981559394401366],[-127.26238643651347,52.98171640818739],[-127.262570736296,52.981859003350245],[-127.26277255055668,52.98199468640077],[-127.26291054631045,52.9821176046857],[-127.2629772018415,52.98232029175013],[-127.2630096649854,52.98250206099078],[-127.26304303683588,52.98268325563776],[-127.2629244344254,52.982836376060696],[-127.2626464140154,52.982899316539786],[-127.26236160698741,52.98295391936655],[-127.26207871275535,52.98300962170457],[-127.2618820169574,52.98304646937336],[-127.26185554010841,52.98328601621077],[-127.26186566638681,52.98347026615521],[-127.26188033036694,52.98364997576077],[-127.26190245626452,52.98382961441737],[-127.26192179145997,52.98400927396742],[-127.26192990301503,52.98418849780772],[-127.26192030074817,52.98436791129305],[-127.26192451368642,52.9845410175177],[-127.26193455728836,52.98472246199833],[-127.26189184277737,52.98491791962995],[-127.26188382281819,52.985087785731814],[-127.26184055914123,52.98526476225645],[-127.26173929954561,52.98543674719683],[-127.2615586261598,52.98557372893102],[-127.2613146014746,52.9856822414187],[-127.26107523201848,52.98579071253784],[-127.2608358445938,52.985898618515016],[-127.26063157433039,52.98602687667457],[-127.2604539495638,52.986172224687714],[-127.26022788254724,52.98628895243417],[-127.25999040560457,52.986398521699535],[-127.25977307188032,52.98652691792929],[-127.25970968637895,52.98668617744346],[-127.25977562011727,52.986864783054024],[-127.25978099874902,52.987046277233915],[-127.25975652277994,52.987196146359494],[-127.25965885449708,52.98739555215433],[-127.25953684434528,52.98756047660054],[-127.2593790061515,52.98771290027135],[-127.25921269616639,52.98786260800662],[-127.259031644647,52.98801919707571],[-127.25898349382655,52.988188935328786],[-127.25896739085988,52.988370093986134],[-127.25892695072967,52.98854815945901],[-127.25888462947235,52.98872623602062],[-127.2588217018517,52.988901179515814],[-127.2587024915429,52.98906662882949],[-127.25862455463714,52.98923892624461],[-127.25861216454695,52.989419489213184],[-127.25853891642718,52.98959285714661],[-127.25844694493306,52.98976418353174],[-127.25836152665617,52.98993600468784],[-127.25820627854766,52.99017636820945],[-127.25817235247082,52.990322975458064],[-127.25797235119649,52.99050162264767],[-127.25777003023715,52.990633216423944],[-127.25752294553483,52.990734472995065],[-127.25730351792724,52.99085617121068],[-127.25709452326807,52.99098335219887],[-127.2569158922532,52.991127584146085],[-127.25671452382564,52.99126029548948],[-127.2564374621072,52.99132600733139],[-127.25615744436969,52.99138670244414],[-127.25589012496853,52.991466878066795],[-127.25559268247683,52.99147452939827],[-127.25544649447278,52.99145367273081],[-127.2552944308693,52.9914552921537],[-127.25500688186479,52.991513832298146],[-127.25470305008133,52.991526588002316],[-127.25440123275632,52.99154436904882],[-127.25412357060196,52.991589909450326],[-127.25385040116349,52.991661741971214],[-127.25358304091243,52.99174022720995],[-127.25330988597987,52.9918126141571],[-127.2530508297101,52.99188821264491],[-127.25280037486282,52.99200238721759],[-127.25254623584303,52.9920863329533],[-127.25223673571378,52.992192168188716],[-127.2519949961402,52.9922221881728],[-127.25184723854488,52.99221142986535],[-127.2517129026136,52.99224423551487],[-127.2514268788565,52.99232347875489],[-127.25115076043178,52.99239028863943],[-127.25085771818111,52.9924208597277],[-127.25046051408357,52.99233709572855],[-127.25016420426529,52.992352010192015],[-127.24986695221709,52.99236636907453],[-127.24957079006965,52.99238631906621],[-127.24928078472996,52.99242525466877],[-127.24899487252944,52.992476473692165],[-127.24870600527778,52.99252267576182],[-127.24841812723832,52.99257055214586],[-127.24814403275113,52.99264293688845],[-127.24799921162442,52.992795762259185],[-127.24798211645462,52.992849180121794],[-127.24793215608378,52.99295897103473],[-127.24801718516088,52.99315363435411],[-127.2480243307123,52.99333342365305],[-127.24802308789073,52.993513310704465],[-127.24801717277917,52.99369323823523],[-127.24798320465199,52.99387123033069],[-127.24790055974853,52.99404412530568],[-127.24780477116545,52.994214362100976],[-127.24768925135437,52.99438032490062],[-127.2476131916975,52.99455483540631],[-127.24751923379495,52.99472393183875],[-127.24734524467,52.99486922001086],[-127.24716565533771,52.995014011289015],[-127.24705671810302,52.995181580240484],[-127.2469129413763,52.99533887558579],[-127.24671342053188,52.99547267010943],[-127.24644017912944,52.995542800155995],[-127.24617864293191,52.99563073670186],[-127.24591624584612,52.99572092310878],[-127.24566624625079,52.99581994335717],[-127.24544380261159,52.99593603799814],[-127.24524235904329,52.99606816471715],[-127.24505237238247,52.996209135505865],[-127.24487755822713,52.9963583553264],[-127.2447234320513,52.996512950867505],[-127.24459276947812,52.99667234601772],[-127.24449410463329,52.996840368661935],[-127.24441989503012,52.99701542195988],[-127.2443616677587,52.997194224388686],[-127.24431184439139,52.99737293806739],[-127.24426757085331,52.99755047245176],[-127.24423267467382,52.997729028510605],[-127.24420620057256,52.99790861633458],[-127.24418813212354,52.9980886712821],[-127.24417658580069,52.998268101522555],[-127.24418183366564,52.99844735451509],[-127.24412000842082,52.99859874250275],[-127.24397845507488,52.99867308015074],[-127.24384464400312,52.99875685721124],[-127.24365076874363,52.99886144885048],[-127.24349755076165,52.99895159840764],[-127.24321729622254,52.9991024832303],[-127.24293107295907,52.99927248177385],[-127.24269513317716,52.999438587572484],[-127.2425060074131,52.99960980290724],[-127.24236981767459,52.99974011578657],[-127.24226585820914,52.99988745489799],[-127.24220941798372,53.00000011712874],[-127.2420995065961,53.00016713507096],[-127.24203087966872,53.00034212754198],[-127.24179131270019,53.00044830892753],[-127.24149929740629,53.00048444851147],[-127.24121924721516,53.000546792788164],[-127.24097586314483,53.00065021544947],[-127.24077535658579,53.00078344459745],[-127.24054055647878,53.00089350003503],[-127.24028856590958,53.000989722903306],[-127.2400384745885,53.00108761073515],[-127.23982559674592,53.00121312357055],[-127.23969778989999,53.00137528864515],[-127.2394906223563,53.0015046586659],[-127.23920564316897,53.00155808444567],[-127.23890856273603,53.00154887895188],[-127.23861342035372,53.001574393235444],[-127.23832644283246,53.0016233551698],[-127.23804925401352,53.00168846786284],[-127.23790073130532,53.0018446801876],[-127.23786767104153,53.002023214314285],[-127.23777745551692,53.00219450370828],[-127.23771724528581,53.00237051658896],[-127.23765984285893,53.002547064762126],[-127.2376080699975,53.002724118614616],[-127.23755439910005,53.00290062752332],[-127.23751760408352,53.00307920061438],[-127.2375312312805,53.003258921012595],[-127.23761187932865,53.00343177875062],[-127.23773517604215,53.00359522337372],[-127.23786960477919,53.003755753801045],[-127.23800956933395,53.00391454045853],[-127.23814860925904,53.0040733366548],[-127.23828119097529,53.004234441847146],[-127.23839988316442,53.00439961062776],[-127.23850559392221,53.0045677217916],[-127.23860387293185,53.0047370315878],[-127.23870401904247,53.004906321679684],[-127.23881250808563,53.00507384750564],[-127.2389404548109,53.005236121285364],[-127.23911184422855,53.00538336970043],[-127.23932644914804,53.00550830611006],[-127.23956299422039,53.00561733107045],[-127.23980044974233,53.005725781171364],[-127.24001322475202,53.00585185625601],[-127.24021223992285,53.00598592934176],[-127.24034941200212,53.006144177732864],[-127.2402601726401,53.006317143842644],[-127.24016336735654,53.00648626259853],[-127.23997346426373,53.00663226132152],[-127.23994949719784,53.006802855267836],[-127.24003242057502,53.0069891352824],[-127.23996988900605,53.00714949283123],[-127.23980507344724,53.00729186538019],[-127.23960461372292,53.00742789731076],[-127.23938628314296,53.007559625054],[-127.23917168435067,53.007691322120195],[-127.23896066997919,53.00781793361694],[-127.23874398966993,53.00794236289181],[-127.23851891776862,53.00806743573066],[-127.23829764150685,53.00819415374712],[-127.23812155244735,53.008334409758234],[-127.23801702318723,53.00849519800709],[-127.23796055443971,53.00867173581101],[-127.23793229490018,53.008855266276974],[-127.23791896685312,53.009038631011634],[-127.23790744017556,53.00921974444351],[-127.23791185279198,53.00940348772877],[-127.2379478807091,53.00958241645318],[-127.23805155635606,53.0097443808312],[-127.23828048206751,53.00987981950877],[-127.23836437279874,53.010035276300265],[-127.23833775180665,53.01021093587834],[-127.23826740606457,53.01039210202317],[-127.2381764282726,53.01056956686242],[-127.23807113266079,53.010736531090664],[-127.23791884524306,53.01089278179233],[-127.23774858817623,53.0110413761971],[-127.23755659402624,53.01118066827849],[-127.237364566249,53.01131884867392],[-127.23721121780643,53.011470626824405],[-127.23709745987362,53.01163599332219],[-127.23700446098746,53.01180843076643],[-127.23691704630167,53.011980809545676],[-127.23682120589069,53.01215215593007],[-127.23673570394564,53.012325635131816],[-127.23668669139305,53.01250209362986],[-127.236643539306,53.01268745596187],[-127.23659775886058,53.01287901395546],[-127.2365705780551,53.01306757074961],[-127.23657947998299,53.013245098400034],[-127.2366438612394,53.01340412265504],[-127.23680344081099,53.013530205164585],[-127.23705825054972,53.01362391003585],[-127.23735292555382,53.01370766600106],[-127.23762737963524,53.013802849044964],[-127.23784010716753,53.01392613112335],[-127.23802808331591,53.01406479713193],[-127.23820135697952,53.01421202666447],[-127.2383654602042,53.014364399703645],[-127.2385221477753,53.01451908274887],[-127.23867695226905,53.01467267366049],[-127.23882804185037,53.01482741508542],[-127.23897546308855,53.014983880328785],[-127.2391191696227,53.01514150507533],[-127.23926104185524,53.01529971373138],[-127.23939921554681,53.01545963759184],[-127.23953459756365,53.01561959062453],[-127.23966720409055,53.01578012851818],[-127.23979426193476,53.01594297487606],[-127.23991576769849,53.01610699115587],[-127.24003264907823,53.01627274140089],[-127.24014766454619,53.016438511141786],[-127.24026175651474,53.016604855289295],[-127.24037771466227,53.016770614880144],[-127.24049646651562,53.01693634496903],[-127.24061614525445,53.01710206518307],[-127.24073397300185,53.01726780473977],[-127.24084806923149,53.01743413927644],[-127.24095474678244,53.01760168137466],[-127.24105304920884,53.01777042318606],[-127.24113739251112,53.0179409972657],[-127.24116780782751,53.01811886271763],[-127.2411684526878,53.01830096820798],[-127.24118959929886,53.018481172474594],[-127.24124889578894,53.01865704847512],[-127.24131655400289,53.01883172474136],[-127.24139075425524,53.019006323143124],[-127.24146682232315,53.01918091079373],[-127.24154287451243,53.01935493373718],[-127.24161428363824,53.01952956134104],[-127.2416791680061,53.019704822385485],[-127.2417328838148,53.019881321612864],[-127.24175771988357,53.02006036614365],[-127.24175742476794,53.020241916531006],[-127.24175339565346,53.02042350620591],[-127.24176797106048,53.020602658692056],[-127.24182532413788,53.02077575752575],[-127.24194402732017,53.02093924513312],[-127.24209156328148,53.02109851119234],[-127.24222145408552,53.02126131589699],[-127.24234277314811,53.021418616384544],[-127.2425921886447,53.02151740479649],[-127.2428615858143,53.02159693988416],[-127.24307803610169,53.02171793197625],[-127.24320978337748,53.02188016018247],[-127.24324111973088,53.02205745028916],[-127.24323237097673,53.022236848302946],[-127.2432478958456,53.02241655529474],[-127.24324849877644,53.02259641056288],[-127.24324629385497,53.02277630436878],[-127.24324782287006,53.02295614983908],[-127.24325959730567,53.0231353314686],[-127.24328351561853,53.0233143850957],[-127.24330184926478,53.02349406237157],[-127.24333042674765,53.02367250203936],[-127.24341112221653,53.023845353887396],[-127.24352342744409,53.02401283399245],[-127.24366899922458,53.024168747724886],[-127.24385890716026,53.024307392884474],[-127.24403956371307,53.02444948831227],[-127.24419997653027,53.024601327057425],[-127.24436868689472,53.024749716082674],[-127.24454108371259,53.02489638946974],[-127.24471624195553,53.025041903844986],[-127.24488956568075,53.02518800213092],[-127.24506196607626,53.0253346747192],[-127.2452408460561,53.02547959319143],[-127.24537993419905,53.02563669389235],[-127.24542061881219,53.02581389343774],[-127.24540723577053,53.02599446088711],[-127.24539195251317,53.02617392771432],[-127.24539537455094,53.0263543177248],[-127.24546492772302,53.026528406316054],[-127.24565381212457,53.02666368843069],[-127.24590514996235,53.026763014456726],[-127.2461573165261,53.02685896922355],[-127.24640417692905,53.02696450959964],[-127.24653377336838,53.02711610588013],[-127.24652794618142,53.027299399662446],[-127.24658061908251,53.02747142459355],[-127.2467142648966,53.02763362860882],[-127.24681264631562,53.02780348493727],[-127.24682068452505,53.02798158469982],[-127.24673421753053,53.02815395916831],[-127.24663552254715,53.02832366558879],[-127.24657717933496,53.02849966055156],[-127.24654226743633,53.02867821403466],[-127.24652885537614,53.028857660997865],[-127.24653600089734,53.02903745555984],[-127.24653194192078,53.02921735951416],[-127.24650730899339,53.02939636911742],[-127.24648080819698,53.02957538946244],[-127.24645149886136,53.02975444841579],[-127.24641096658794,53.02993249627558],[-127.24635543047015,53.03010902608737],[-127.24629898421693,53.03028613027457],[-127.24629117293361,53.03046551786603],[-127.2463792957432,53.03063548268295],[-127.24654805426806,53.03078443270315],[-127.24675087740992,53.03091676854245],[-127.24698391367107,53.031028048108034],[-127.24722979334909,53.03113135582868],[-127.2474085884429,53.0312717891301],[-127.24748931494989,53.03144463741899],[-127.2475375002047,53.03162231232824],[-127.24758940426474,53.03179938307292],[-127.24763572283742,53.03197707765077],[-127.24770808819873,53.032151134806114],[-127.24782687874497,53.03231573571173],[-127.24797254291504,53.0324727724881],[-127.24813113396208,53.03262518075724],[-127.24827865125845,53.03278163273831],[-127.24836401123942,53.032952754826304],[-127.24840195578672,53.033131658279956],[-127.24845199773449,53.0333087482474],[-127.24852532656782,53.03348335944203],[-127.2486209199476,53.033653243401154],[-127.24876102183882,53.03381145867381],[-127.24894269309917,53.0339541004765],[-127.24913633269514,53.034091012030494],[-127.24932904720934,53.03422793306328],[-127.24951718370558,53.034367699415355],[-127.24967206876252,53.03452070963121],[-127.24977232923435,53.03468998735751],[-127.24986796188074,53.0348604346625],[-127.25000250389162,53.0350203838298],[-127.2501592922864,53.03517393803967],[-127.25031880957539,53.035325212850935],[-127.25048480796681,53.0354747422664],[-127.25065173246178,53.03562370578781],[-127.25080665749883,53.03577726991524],[-127.25093661024403,53.035939507953124],[-127.25099965746959,53.03611366167938],[-127.25099655973897,53.036294119855704],[-127.25100936153575,53.03647497427069],[-127.25113361503401,53.03663391051238],[-127.25134755290865,53.03676107318072],[-127.25159341035037,53.03686213085541],[-127.2518584595318,53.036948971778614],[-127.25205378998248,53.03707857188035],[-127.25212524081017,53.03725263579562],[-127.25214923749871,53.037432806448315],[-127.25216573035416,53.037611936046325],[-127.25215233923731,53.03779138271152],[-127.25212960918286,53.037970928443826],[-127.25211621780012,53.03815037506736],[-127.25211872656304,53.03833021777846],[-127.2521324268722,53.03850993276256],[-127.25215265566804,53.03868902261491],[-127.25216823924768,53.038868726543406],[-127.25217260087885,53.03904854055618],[-127.25218349100001,53.0392277294371],[-127.25219813352257,53.03940744329361],[-127.25222117224835,53.03958650323361],[-127.25227403202672,53.0397635612642],[-127.25235014898401,53.039937019472795],[-127.25243838180347,53.040109219427514],[-127.25253215454906,53.04027968401575],[-127.25263429150087,53.04044838324894],[-127.25274758683129,53.0406152784821],[-127.2528868020554,53.040774053876206],[-127.25307868199,53.04091265405751],[-127.25320748621998,53.04106705700067],[-127.25324550644214,53.04124707819172],[-127.25325919605818,53.04142623707076],[-127.25325329672513,53.04160616875217],[-127.25326703450575,53.041786447734296],[-127.25334501041661,53.04195932063037],[-127.25350641608863,53.04211001502939],[-127.253733118531,53.0422258312548],[-127.25397904638727,53.04232800393768],[-127.25421494053985,53.042438118333386],[-127.25444716793501,53.04255107734692],[-127.25468122994646,53.04266233991197],[-127.25491893126603,53.042770757213184],[-127.25515848359953,53.04287803370576],[-127.25537972321317,53.04299838750749],[-127.2555863168849,53.0431284267233],[-127.25582761011202,53.043231765559135],[-127.25610075654973,53.04330618382969],[-127.25635484433606,53.0433992906097],[-127.25653649936768,53.043539123660636],[-127.2566794743782,53.04369785453687],[-127.25684646939025,53.04384736425028],[-127.25706125456857,53.04397002496986],[-127.25728709999977,53.04408752903935],[-127.25745773520556,53.044233637164155],[-127.25761365955616,53.0443877463438],[-127.25780368852483,53.044526367577944],[-127.25804686136063,53.044629117097074],[-127.25833239970869,53.0446798645322],[-127.25862836637967,53.04470416030218],[-127.25892651349206,53.04470770451678],[-127.25921965311476,53.04473091727722],[-127.25949813666283,53.044795740831745],[-127.25977128310632,53.04486959487393],[-127.26002811642317,53.04496042324228],[-127.2602236270282,53.04509449952331],[-127.2603629013977,53.045253821351935],[-127.26048549734632,53.04541781269375],[-127.260589546093,53.045586475625846],[-127.26065920984608,53.04576111793193],[-127.2606981424129,53.04593944140956],[-127.26072588336051,53.04611844920543],[-127.2607666849284,53.04629676163253],[-127.26083726039957,53.04647082923573],[-127.26090506004118,53.0466460470879],[-127.26094402773124,53.046825490687574],[-127.2610581313809,53.04698621012685],[-127.26122609786844,53.04713625912494],[-127.26139956861316,53.047282331270765],[-127.26158408496511,53.047423246666064],[-127.26176770895844,53.04756528299793],[-127.26193658877303,53.047714209538434],[-127.26203224950268,53.04788296077002],[-127.26203197428248,53.04806226766371],[-127.26200369266502,53.048242438773244],[-127.26204630297656,53.0484184810157],[-127.26217817228738,53.0485795652127],[-127.26232300376078,53.048736592853594],[-127.26245395004337,53.04889824244726],[-127.26258767411049,53.04905875049611],[-127.26273345006733,53.049215758556116],[-127.26288569214692,53.049370464923214],[-127.26304069666219,53.04952401192053],[-127.26320772046073,53.04967295646327],[-127.26339688122864,53.04981213384893],[-127.26362184860882,53.04992963531728],[-127.26387693602048,53.0500232802545],[-127.26413746260928,53.050111263155706],[-127.26437613803984,53.05021853056725],[-127.26456803329786,53.050355435512955],[-127.26476270634909,53.05049118973897],[-127.26499774903377,53.05060185677776],[-127.26524919023866,53.0506983350015],[-127.26550064942134,53.050795377310834],[-127.26574663840842,53.05089696033996],[-127.2659889921559,53.05100194379532],[-127.26623133052493,53.05110637108269],[-127.26647733964333,53.05120850823509],[-127.26672153188689,53.0513123498333],[-127.26698377342207,53.05139470488939],[-127.26726234626071,53.051460639128216],[-127.26753009445622,53.05153957192398],[-127.26777334760816,53.051642856651014],[-127.26799928038233,53.05176090432684],[-127.26821790804291,53.05188462433397],[-127.26836637597273,53.05203712295885],[-127.26844726079018,53.05221107510374],[-127.26848996877426,53.05238935519272],[-127.26855780779785,53.05256401222361],[-127.26871464592165,53.05271529083219],[-127.26892499757044,53.05284302523066],[-127.26915368470203,53.05295935565725],[-127.26936030203764,53.05308712943532],[-127.26954582836011,53.05322857744887],[-127.26972581764825,53.053372326022235],[-127.26992510098938,53.05350522510095],[-127.27016119920447,53.05361866777482],[-127.27031230772651,53.05376553228858],[-127.27030274178199,53.05394549477622],[-127.27026141208171,53.0541258079817],[-127.27034399087061,53.05429301662909],[-127.27050466268918,53.05444705769607],[-127.27070667972832,53.05457711993209],[-127.27091979140675,53.05470313564121],[-127.27111820815618,53.05483771852942],[-127.27132948768924,53.05496488284647],[-127.27157548122446,53.055065333198996],[-127.27183605471878,53.055153298854044],[-127.27208481028912,53.05525203295013],[-127.27232633001823,53.05535925385019],[-127.2725957455949,53.055430312842034],[-127.27289103687497,53.05546019308085],[-127.27318784578985,53.0554788407737],[-127.27348637062443,53.055491874938845],[-127.27378208735473,53.055474116341685],[-127.27407669017488,53.055481023283455],[-127.27437430693206,53.055495176689554],[-127.27466413066824,53.05553014996397],[-127.27495242116487,53.0555757897316],[-127.2752484396568,53.05559892339174],[-127.27554191784056,53.05563105791219],[-127.27581958800981,53.055696417187406],[-127.27609722710825,53.05576121134539],[-127.27638988134322,53.05579671462621],[-127.27668657429021,53.05581087222119],[-127.27698422820954,53.05582614829261],[-127.27728021583758,53.055848156571365],[-127.27757283793653,53.055882536634265],[-127.27786377736221,53.055923093276135],[-127.27815722575693,53.05595409204391],[-127.27845247383797,53.05598227345811],[-127.27874508079802,53.05601608599026],[-127.27903773900509,53.056051582702935],[-127.27932864721772,53.056091015447876],[-127.2796160891021,53.05613945024586],[-127.27990089027176,53.05619351622471],[-127.28018304874615,53.056252648618205],[-127.28046692459264,53.056306723277714],[-127.28075699373488,53.05634896773792],[-127.28104874771145,53.05638558099604],[-127.28146983714821,53.05643368174745],[-127.28124821911899,53.05655375520712],[-127.28119371805707,53.05672973278091],[-127.28120663764489,53.05691001713607],[-127.28120177936586,53.05708937374294],[-127.28120439727428,53.057269205044214],[-127.28120608864573,53.05744905534659],[-127.28116948060172,53.05762931226636],[-127.28124746397162,53.05779768400185],[-127.28145602877761,53.05792653641916],[-127.28169571693205,53.05803320244684],[-127.28198679335625,53.058077665383045],[-127.28222460010885,53.05818435077981],[-127.28235746722746,53.05834371638872],[-127.2824132868154,53.058520737417375],[-127.28239439394264,53.058699681588465],[-127.282364289157,53.05887875647463],[-127.2823369625985,53.05905723635162],[-127.28232372613964,53.05923780447203],[-127.28238974728343,53.05941190853437],[-127.28246137691792,53.05958650747233],[-127.28247426890297,53.0597656711112],[-127.28244978664418,53.05994524067567],[-127.28243277908051,53.06012472902993],[-127.28244755690581,53.06030443694041],[-127.28241930288375,53.060482926756904],[-127.2824583403882,53.060661241530326],[-127.28245815138744,53.06084054713897],[-127.28247946065719,53.061019619229285],[-127.28247274062878,53.061199560543514],[-127.28254438857229,53.061374159088786],[-127.28254416607116,53.06155234434485],[-127.2824737378621,53.06172737433993],[-127.28244644167381,53.06190640944494],[-127.28246773647886,53.062085481589776],[-127.2824787604302,53.06226466526725],[-127.28248045740158,53.06244451503305],[-127.28247654760965,53.06262441671018],[-127.28246608751309,53.06280383366982],[-127.28244813697157,53.0629833319602],[-127.28242833236965,53.06316285036364],[-127.282406643782,53.06334238920376],[-127.28239337242465,53.06352183660833],[-127.28239693796753,53.063701665949054],[-127.28240890396079,53.06388083923692],[-127.28242742051997,53.06406049720614],[-127.28248043708408,53.06423754814575],[-127.2825697528751,53.064409157412825],[-127.28268228584896,53.064575467031524],[-127.2828142836991,53.064736526667055],[-127.2829721937231,53.06488890427665],[-127.28314396187575,53.06503608370893],[-127.28331020709548,53.065185564201],[-127.28344684025096,53.06534545210156],[-127.28351381932029,53.06552010050459],[-127.28351085585834,53.065700000621554],[-127.28349945741176,53.06587942759309],[-127.28351516850488,53.06605911573662],[-127.28354582982742,53.066238085527154],[-127.28359696769502,53.06641459143898],[-127.28366118719688,53.06659039927999],[-127.28375800559759,53.066762481808084],[-127.28398662207668,53.06687262553566],[-127.28421544105998,53.066988925682345],[-127.28439087517222,53.06713325730537],[-127.28452660872203,53.067293718478645],[-127.28467158649855,53.067450708035366],[-127.2848544476559,53.06759272585382],[-127.28507500722297,53.067714152628646],[-127.28534194910095,53.06779305453817],[-127.28561623055974,53.067866837538396],[-127.28582756735031,53.06799229006309],[-127.28596143973218,53.068152760896275],[-127.28605542623582,53.06832376068507],[-127.28619579901515,53.06848248397257],[-127.28639614665883,53.06861533486762],[-127.28664414122235,53.06871629729206],[-127.28681219938947,53.06886351179164],[-127.28688571326576,53.06903696629372],[-127.28692383564422,53.069215297939984],[-127.28696291724138,53.0693941749453],[-127.28706620293482,53.06956282229592],[-127.2872610192263,53.069697982257956],[-127.28748343177672,53.069818263742974],[-127.28770490380593,53.06993856403469],[-127.287905280191,53.07007197687569],[-127.288141399741,53.07018146603835],[-127.28841205001247,53.07025863523465],[-127.28870709816833,53.07027670833022],[-127.28900743278759,53.07028463720696],[-127.28927525523608,53.070360723630785],[-127.28952868696082,53.070455452709666],[-127.28978031875404,53.07055244219465],[-127.29003195169767,53.07064943113814],[-127.29028360269173,53.07074697519448],[-127.29047201909735,53.07088611762582],[-127.29072180357979,53.070983690121224],[-127.29101835390533,53.07098996985016],[-127.29132219174504,53.07098945426239],[-127.29160537200437,53.07095553554483],[-127.29183451495692,53.07083592664149],[-127.29208585907374,53.07073904309803],[-127.2923372020427,53.07064215901434],[-127.29261533822014,53.070595965946794],[-127.29290382064983,53.070644357845275],[-127.29317897529772,53.070715307856155],[-127.29346987777734,53.070750788963565],[-127.2937041900241,53.07064736459206],[-127.29400001886404,53.070629555351395],[-127.2942983852512,53.0706341304434],[-127.29459637337747,53.070625817036124],[-127.29489304345822,53.07060519920304],[-127.2951899696279,53.07059297816458],[-127.29548850693496,53.07060315159774],[-127.29578467567346,53.070627353841026],[-127.29607911274263,53.070656065892805],[-127.29637185191834,53.07069039011052],[-127.29666630680582,53.07071965635096],[-127.29696328237792,53.07073937318077],[-127.29726139279428,53.07073553429026],[-127.2975580793421,53.07071546541814],[-127.29785474684796,53.070725097588344],[-127.29812706475954,53.0707949466936],[-127.2984265289817,53.07080453772985],[-127.29872417573092,53.07081583344477],[-127.29902219884323,53.07080863810321],[-127.29931989710924,53.070821608238184],[-127.29961764717304,53.070836262505864],[-127.2998998791416,53.07089367136195],[-127.30014971968095,53.070992344186735],[-127.30037217555203,53.0711126013106],[-127.30057993675834,53.07124142916559],[-127.30078310473229,53.071373113344734],[-127.30097893215645,53.0715087958144],[-127.30116553720177,53.07164906214736],[-127.30136134980225,53.07178417934705],[-127.30159295347819,53.07189761849735],[-127.3018025741496,53.072025858929536],[-127.30199748307578,53.07216211465809],[-127.30219330307133,53.07229779521798],[-127.30241575452027,53.07241749275101],[-127.30267829896441,53.07250312830913],[-127.3029534476022,53.07257293520802],[-127.30321868487995,53.0726546131313],[-127.30347668944708,53.07274477961246],[-127.30370832109949,53.072858770204334],[-127.30392345773127,53.07298359306792],[-127.30412664202234,53.07311470658559],[-127.30431695131921,53.07325324165203],[-127.30448330333084,53.073402691627884],[-127.30463669423085,53.073556767117324],[-127.30479656740233,53.07370852950566],[-127.30498597173768,53.07384763830305],[-127.30522035599117,53.07395935426615],[-127.30549815976107,53.074024087567544],[-127.30579423753004,53.07404434822121],[-127.30609226473696,53.07403657044142],[-127.30639020787925,53.07402655154708],[-127.30668832098456,53.07402156844237],[-127.30698685065526,53.074030592529816],[-127.3072742880631,53.07398258569427],[-127.3075265772699,53.07388677947315],[-127.30773389070407,53.07375729544733],[-127.30794216213636,53.07362835626619],[-127.30810393601497,53.07347751874148],[-127.30826003176105,53.07332450257038],[-127.30845403044749,53.07318787597814],[-127.30867945108561,53.073069951884555],[-127.30890678926856,53.07295312673557],[-127.30911220723203,53.072823096323994],[-127.30932045493525,53.072694154809426],[-127.30950592195748,53.072553694200884],[-127.30972274204271,53.07242970428113],[-127.30994242616569,53.072307914505686],[-127.31010230149566,53.07215653921099],[-127.31026311750259,53.072005144273206],[-127.31047516536538,53.07187839971685],[-127.31069293842359,53.07175495316618],[-127.31087647828477,53.07161339993767],[-127.31104866067135,53.071466925073246],[-127.31121607467779,53.07131769676666],[-127.31136836105205,53.07116304188715],[-127.31152159061295,53.07100893215335],[-127.31170229326692,53.07086627940666],[-127.31198568837236,53.070809340423146],[-127.31228125313125,53.0707836437136],[-127.31257795037334,53.070764101728855],[-127.3128762825107,53.07076694484846],[-127.31317076678302,53.07079673455585],[-127.31346531677308,53.07076824005026],[-127.31372459094653,53.07068747562142],[-127.31377796356055,53.070509254416685],[-127.31384265251295,53.07033371338343],[-127.31394870769066,53.07016612143676],[-127.31415694260737,53.07003717103293],[-127.31443931741273,53.06997799608916],[-127.31471419736795,53.069918339085305],[-127.31488625800942,53.0697690624712],[-127.31509543244039,53.06964065571273],[-127.31532561776166,53.069526591985706],[-127.31553955692343,53.069400937438566],[-127.31574491985073,53.0692703306149],[-127.31595124361735,53.069140842320635],[-127.3161651962195,53.06901574226367],[-127.31638294059586,53.06889284980004],[-127.31660258499717,53.06877049157333],[-127.31682034409474,53.068648153937225],[-127.31703617825637,53.06852359603963],[-127.31724249417296,53.0683940964721],[-127.31743074736242,53.068254721113604],[-127.31762946030703,53.06812082302668],[-127.31786246147654,53.068007843323805],[-127.31811952783586,53.06791699863394],[-127.31839700898487,53.06785114463937],[-127.3186893876874,53.06781370477027],[-127.31898181797628,53.067777940092135],[-127.31927323610356,53.067739944683915],[-127.31956772593144,53.06771031464645],[-127.31985608574466,53.06766395154084],[-127.3201257551092,53.067587530039496],[-127.32037891926217,53.06749168548853],[-127.32065758283873,53.067434222264104],[-127.32095778105966,53.06743814450714],[-127.32125602087581,53.067438734901295],[-127.32155267300585,53.06741860572263],[-127.32184939466079,53.06740071632606],[-127.3221418194396,53.0673649438154],[-127.32243731913346,53.06733810137805],[-127.32272872849464,53.06729953265409],[-127.32301910814479,53.067258177585735],[-127.32331050175563,53.06721961655414],[-127.32360604959956,53.06719389128622],[-127.32390166938607,53.06717096162315],[-127.32419824845877,53.06714858527],[-127.32449351765655,53.06717385519421],[-127.32478801984477,53.06720472730009],[-127.32506580923302,53.06726941483163],[-127.32533738004354,53.0673442484406],[-127.32558727618235,53.06744342330537],[-127.32577670334136,53.06758194361055],[-127.3260037716148,53.06769818371165],[-127.32627438745698,53.06777247007464],[-127.32654046156817,53.067850724653134],[-127.32678582111544,53.067953874753485],[-127.32704926145796,53.06803776106863],[-127.32728714709656,53.06814099412694],[-127.32743324805891,53.06829904093089],[-127.32743602511405,53.06847719392856],[-127.32744177359453,53.068660916784964],[-127.32747447620841,53.068839854028205],[-127.32766817527565,53.06896487544848],[-127.32792633193519,53.06905890514427],[-127.32817266398399,53.06916316212861],[-127.32834188016311,53.069312547400635],[-127.32834728191459,53.069485067520226],[-127.32828177965399,53.069662302915596],[-127.32823311670354,53.06983991367655],[-127.3282088049027,53.07001893600032],[-127.32821724523771,53.07019870164954],[-127.32823499906857,53.0703778066922],[-127.32824810529681,53.070557528794794],[-127.3282602842468,53.07073725234208],[-127.3282481316276,53.07091669367236],[-127.32821165936028,53.07109528783095],[-127.32818556509903,53.071277127209264],[-127.32833237702198,53.071427329169374],[-127.32851267770882,53.07157210682807],[-127.3286818696058,53.07172037114747],[-127.32885750960914,53.07186575655895],[-127.32902853801224,53.072012879066875],[-127.32919682402111,53.07216171765426],[-127.32936693010974,53.07230940589792],[-127.3295453337193,53.07245308268799],[-127.32973942396033,53.07258985868139],[-127.32995004284449,53.07271748301486],[-127.33017166533783,53.072837703289096],[-127.33040061038763,53.07295334909271],[-127.33063320504598,53.07306560034752],[-127.33086580341336,53.073178406953275],[-127.33109565915976,53.07329292051428],[-127.33133919196932,53.07339608189976],[-127.3315990949142,53.073485045583],[-127.3318462805685,53.07358535863926],[-127.33209437683375,53.07368509610632],[-127.33234881596806,53.07377860239876],[-127.33257960364502,53.07389254675795],[-127.33280854349276,53.07400763217758],[-127.33303931618909,53.074121019976516],[-127.33325821344573,53.0742434976433],[-127.33347894635996,53.07436484249781],[-127.33370696400694,53.07447993661274],[-127.33394689698318,53.07458760699691],[-127.3341904616345,53.074691318074166],[-127.3344313217042,53.074798421172474],[-127.33468849618971,53.0748890944451],[-127.33498000105473,53.07491213098438],[-127.33527865657686,53.0748947514074],[-127.33557668432624,53.074886899244476],[-127.33586838383704,53.07491609947409],[-127.33614358492282,53.07498526434911],[-127.3363871397217,53.07508841522718],[-127.33666410623003,53.07515419696909],[-127.33695085358616,53.07520418717117],[-127.337233182611,53.07526206231726],[-127.33751380213447,53.07532500357869],[-127.33777451316264,53.07540890624553],[-127.33800719365753,53.07552281872157],[-127.33825259268696,53.07562538010749],[-127.33848055936116,53.07573822441775],[-127.33865165428284,53.0758858883102],[-127.33883010437674,53.076029550781676],[-127.33903711456045,53.07615944137445],[-127.3392459450965,53.07628819031605],[-127.33944097601338,53.07642381930108],[-127.33961763238109,53.076569742242484],[-127.3397479788567,53.076729638033335],[-127.33984406770247,53.07690000814934],[-127.33996521038723,53.07706449070374],[-127.3400928542185,53.07722777872002],[-127.34026842977732,53.07736867448834],[-127.34048738250621,53.077491703137504],[-127.34060285015319,53.07765400812466],[-127.34071952589231,53.07794348894767],[-127.34099114575255,53.07786868389883],[-127.34126080937526,53.07779165911707],[-127.34153935272951,53.07772910135442],[-127.34183594328728,53.07770500495173],[-127.3421335436142,53.077712830478724],[-127.34241851323323,53.077764504302195],[-127.34269810840074,53.077824083113285],[-127.34299665193794,53.07783189575528],[-127.34329480796741,53.077827940700296],[-127.34359297918093,53.077823993684646],[-127.34389108200048,53.07781836122982],[-127.34418871900336,53.07782730182958],[-127.34448804805902,53.07783061914952],[-127.3447864675185,53.07783450191152],[-127.34507993891496,53.07785974166749],[-127.345365055241,53.077915889379184],[-127.34563384722631,53.0779884673839],[-127.3459331599004,53.07799122539801],[-127.34623159854199,53.077995669115175],[-127.34652352221782,53.07803099987347],[-127.34681859587621,53.078047251830114],[-127.34710099286177,53.07810622354708],[-127.34739044183256,53.07815167526103],[-127.34766742774612,53.07821687544494],[-127.34793734580776,53.07829503869152],[-127.34820003641684,53.07838113737081],[-127.34848941692456,53.07842433692544],[-127.34876629943815,53.078486173776874],[-127.34902792583465,53.078568356013484],[-127.34932004921069,53.07860928988318],[-127.34959349796411,53.07868068512866],[-127.3498652030509,53.07875602645107],[-127.3501377650637,53.07882911605105],[-127.3504040598191,53.07891068607574],[-127.3506891009267,53.078964015804004],[-127.35096962217311,53.07902244397612],[-127.35120228957338,53.079134654505516],[-127.35132259108158,53.07930025605522],[-127.35149924661188,53.07944447613514],[-127.3516814408739,53.07958640023022],[-127.35180639395091,53.079751383244755],[-127.35203618128033,53.079860818993055],[-127.35224601175118,53.07998953389448],[-127.3524134148733,53.08013666465374],[-127.35253185741983,53.080302851056516],[-127.35270205662066,53.080449384581975],[-127.3529073000438,53.08058095696839],[-127.35310700436999,53.08071426894961],[-127.35325871067158,53.080867737431674],[-127.35338550780843,53.081031585954456],[-127.35357868235263,53.08116552779871],[-127.35378298660494,53.08129654463198],[-127.35397441929601,53.081434432573495],[-127.35415664812815,53.08157690833157],[-127.35433243149275,53.08172226382427],[-127.35450451533205,53.081869337974965],[-127.35467661532198,53.08201641169109],[-127.35485145969449,53.0821617682188],[-127.3550327703243,53.082304817976436],[-127.35521130290103,53.08244845517181],[-127.35539635224218,53.08259089667729],[-127.35562812327731,53.08270309993932],[-127.35591476492942,53.08274744267252],[-127.35621412961952,53.08275073027247],[-127.35651195785985,53.08273498362269],[-127.35680552980668,53.082703595932486],[-127.35709803056986,53.08266773719191],[-127.35739054862222,53.0826324333672],[-127.35768303061249,53.08259601753626],[-127.35797445905324,53.08255568630828],[-127.35826188149196,53.082507555823675],[-127.35854527372781,53.082449940921244],[-127.3588072046772,53.08236512059308],[-127.35904403634947,53.082255378137575],[-127.35927509896321,53.08214120997588],[-127.35952733413154,53.082045292994934],[-127.35981500277477,53.08200500041947],[-127.36011384846981,53.082021176089434],[-127.36040415735549,53.08206321544921],[-127.36068747067313,53.08211991217802],[-127.36096541216713,53.08218450575132],[-127.36124342354248,53.082250783340584],[-127.36152318260385,53.082313678170834],[-127.3618082608441,53.08236698992923],[-127.36210197145888,53.08239834418473],[-127.3624005867409,53.082407228012805],[-127.36269833182409,53.08241836243953],[-127.36299458527442,53.08244127574429],[-127.36328916757421,53.082470375691805],[-127.36358291601734,53.0825028465055],[-127.36387230456793,53.08254489699784],[-127.36415649890372,53.08259988984338],[-127.36444252761343,53.082653740168126],[-127.36473618502143,53.08268284721505],[-127.36503321152652,53.082671570935],[-127.36532460036219,53.08263065715076],[-127.3656129754626,53.0825830624965],[-127.36590650031488,53.08254996717537],[-127.36620385036194,53.082548770118656],[-127.36649932687271,53.0825767310953],[-127.36678966113456,53.08261876354047],[-127.36707738244019,53.082666984652455],[-127.36736506828208,53.08271408482235],[-127.367656241245,53.08275329931961],[-127.3679491398947,53.08278801048875],[-127.36824294817153,53.08282214558965],[-127.36853668165087,53.082853483667584],[-127.36883121652427,53.08288089391163],[-127.36912831361458,53.08290098496709],[-127.36942610010097,53.082913222675856],[-127.36972386852429,53.08292489503326],[-127.37002183629161,53.082942732437125],[-127.37031028861706,53.08298421330408],[-127.37058568883323,53.08305610269273],[-127.37086535842465,53.08311561465598],[-127.37116305651745,53.08312505186907],[-127.3714607548923,53.083105342224385],[-127.37175763762998,53.083089568087374],[-127.37205757090138,53.083081602388916],[-127.37233644806155,53.08302961895581],[-127.37259827917842,53.08294196283249],[-127.3728846877434,53.0828915670846],[-127.3731782486501,53.082860138716654],[-127.37347378460336,53.082831492784386],[-127.37376848640999,53.082806208822916],[-127.37406513042374,53.0827831518178],[-127.37435974093054,53.08275507026649],[-127.37464914273508,53.08271079452493],[-127.37492563616301,53.08264314339285],[-127.37517400862853,53.08254443148213],[-127.37540499335563,53.082429120521304],[-127.37567587447418,53.082361523963705],[-127.37597592585337,53.082356908854685],[-127.3762744924335,53.08236463755417],[-127.37657274683261,53.082362283186264],[-127.37687069529224,53.08235096633962],[-127.37716867688385,53.08234021316677],[-127.3774677492583,53.082334485016574],[-127.37776607925697,53.08233492392311],[-127.37806449731056,53.082337611338176],[-127.37836295491111,53.08234197404872],[-127.37866146394626,53.082347456067644],[-127.3789599581013,53.082352937507125],[-127.37925844892915,53.08235785341835],[-127.3795569067949,53.08236221311286],[-127.37985537967923,53.08236657187855],[-127.38015383766768,53.08237093006516],[-127.3804523106747,53.0823752873229],[-127.3807507506961,53.082379088364306],[-127.3810491873428,53.08238232387794],[-127.38134760907778,53.082385558812625],[-127.38164600932075,53.08238767258261],[-127.38194433973618,53.08238810093899],[-127.382243630866,53.08238908211556],[-127.38254061413197,53.082376641585405],[-127.38282893165287,53.08232788467028],[-127.38311287383583,53.08228813461033],[-127.38339368094584,53.08235320708943],[-127.3836483216465,53.082447722632594],[-127.38391740584117,53.082525823298205],[-127.3841918472648,53.082596571793445],[-127.38447339910495,53.082655464880155],[-127.38476885181497,53.08268225993009],[-127.38506688846151,53.082673162711096],[-127.38534343821054,53.08260772766854],[-127.38557633819777,53.08249460641091],[-127.38580353341503,53.08237819856585],[-127.38606150519433,53.08228831614655],[-127.38634188159477,53.08222563098598],[-127.38663333530253,53.082186913896464],[-127.38693122474518,53.08217388684557],[-127.38722971552804,53.082178791580816],[-127.38752753880678,53.08219210390628],[-127.38782541711258,53.08220709135141],[-127.38812235362042,53.08222209807952],[-127.38841778390014,53.082247763601536],[-127.38871399515756,53.08226893654757],[-127.38901206798313,53.08226150542049],[-127.38929747020161,53.082209404902365],[-127.38956607288738,53.082130040505035],[-127.38982693904207,53.082042921841285],[-127.39009457888172,53.08196300272307],[-127.39037598142434,53.08190310195498],[-127.3906643966217,53.08185767764557],[-127.39095575541776,53.08181670959425],[-127.39124823938737,53.0817813219317],[-127.39154177572001,53.08174929210666],[-127.39183636746665,53.08172116696177],[-127.39213197793539,53.081695826255974],[-127.3924298039327,53.08168055365699],[-127.39272835020127,53.08168767618282],[-127.39302537335324,53.08170491088273],[-127.39332160137309,53.08172662791918],[-127.39361703494245,53.08175284522156],[-127.39391248353947,53.081779052646546],[-127.3942087310916,53.08180133205498],[-127.39450653563927,53.08181407115579],[-127.39480491755532,53.08181615186893],[-127.39510305650974,53.081810390026234],[-127.3954010512773,53.08180070231433],[-127.39569900571503,53.08178933780701],[-127.3959970187827,53.081780213188864],[-127.39629614012455,53.08177612220585],[-127.39659438926209,53.08177371729538],[-127.39689240202736,53.081764590418736],[-127.39718600749528,53.08173477807221],[-127.39746142388825,53.08166428025294],[-127.39773698368701,53.08159770690301],[-127.39803591864369,53.08158800139538],[-127.39833216702677,53.081610270467145],[-127.39862593630316,53.08164265416821],[-127.3989206113645,53.08167390574867],[-127.39921673160602,53.081692256273314],[-127.39951509088631,53.08169320468306],[-127.40000098776132,53.08168127913287],[-127.40005237639159,53.08168011426062],[-127.40035075395127,53.081681616194395],[-127.40064915386718,53.081684246744416],[-127.40094736510737,53.081680710614805],[-127.4012452652466,53.08166821206672],[-127.40154297641108,53.081649546842286],[-127.40183967126981,53.081628660550564],[-127.40213632850477,53.081606644321546],[-127.40243193231511,53.08158128680539],[-127.40272547719191,53.08154978482576],[-127.40301084251871,53.081497642377386],[-127.40329618533153,53.08144438779236],[-127.40358654600259,53.08140171477403],[-127.40387792596545,53.081361826114325],[-127.40416735816532,53.0813191626868],[-127.4044536998373,53.08126813473782],[-127.40474002212008,53.081216541497696],[-127.4050263065951,53.08116382733248],[-127.40531064653274,53.08110889425408],[-127.40559304189591,53.081051742276166],[-127.40586856969743,53.08098514115412],[-127.40612643145015,53.08089298318162],[-127.40639208944829,53.08081080888977],[-127.40666068843937,53.08073252579763],[-127.406936097532,53.08066200567404],[-127.4072307645842,53.080636647181976],[-127.40751711640287,53.080586167422304],[-127.40779843276172,53.080525096100075],[-127.40807193186687,53.080453475371534],[-127.40836470848645,53.08042757173753],[-127.4086576430924,53.08046274662556],[-127.40895150518807,53.080497900764726],[-127.40923650034422,53.08054717284815],[-127.40950641643182,53.08062127897216],[-127.40980368462697,53.08064631327936],[-127.41009753398764,53.08062431042731],[-127.41039086532878,53.08058718842256],[-127.41068534349492,53.08055622017214],[-127.4109618023388,53.08048959590128],[-127.41120862713562,53.08043173452466],[-127.41146495367057,53.0803222081112],[-127.41174433372585,53.0802589180495],[-127.41202860280416,53.0802022839521],[-127.41229720633929,53.080124552613576],[-127.41257073612408,53.080054597494126],[-127.41285801990392,53.08000409350559],[-127.41314730687525,53.07995804754199],[-127.41336084734344,53.079911786494186],[-127.41369228228584,53.07981144250785],[-127.4139367817444,53.079740155050274],[-127.41419299151738,53.0796552787836],[-127.4144892178767,53.07962091797112],[-127.41478678869014,53.07962687564199],[-127.41508917570604,53.07963726653496],[-127.4153816429875,53.079658417444456],[-127.41563275676104,53.07972937292966],[-127.4158334318349,53.079858086874836],[-127.41602428197884,53.08000036636],[-127.41616559452838,53.08017181215795],[-127.41636953403093,53.08031393417007],[-127.41660668177119,53.080442774325796],[-127.41685900645541,53.080521557457345],[-127.41708552600296,53.08063987324754],[-127.41731478738308,53.08075647021912],[-127.41754680584656,53.080871357138676],[-127.41778154393985,53.080983413764685],[-127.41801806268977,53.08109319824189],[-127.41825820582959,53.08119902085975],[-127.41850009239958,53.08130146003751],[-127.41876980462276,53.08136882361464],[-127.41905413713023,53.081425924882666],[-127.4192814500782,53.08151172742162],[-127.41949441704405,53.08164364959766],[-127.41967088295814,53.0817748893804],[-127.4198870330687,53.081890527298775],[-127.42014792830771,53.08197368320565],[-127.42043055781666,53.082063301266935],[-127.42074069257816,53.08213689841881],[-127.42106485095313,53.0821542923062],[-127.42134520085128,53.082148113398084],[-127.42163133531412,53.08200739210574],[-127.42187585271455,53.08193664393896],[-127.4221968789656,53.08194455114639],[-127.42249019526638,53.0819623124155],[-127.42278564818021,53.08198844781359],[-127.42308225063486,53.082020736830266],[-127.42337898527983,53.08205695036366],[-127.42367579533972,53.08209539463543],[-127.42396979032479,53.08213331624432],[-127.4242610304998,53.08217295583739],[-127.42454441453248,53.08222949063451],[-127.42482517186245,53.08229110396689],[-127.42510859136532,53.082348201818704],[-127.42536999417521,53.08241845690899],[-127.42562895934351,53.082471365875435],[-127.42589559132578,53.082557802041514],[-127.42615648802797,53.082612927905394],[-127.42634219025989,53.082795597571206],[-127.42660565190315,53.082870863672184],[-127.42690511300367,53.08296026317752],[-127.42717373688689,53.08299455649257],[-127.42745992356109,53.083050494669706],[-127.42772612937276,53.0831240486135],[-127.42797036802949,53.083239323573586],[-127.42814224110023,53.08334427507251],[-127.42844238697843,53.08342581772048],[-127.42871509521481,53.08349816120381],[-127.42899144577093,53.08356710694313],[-127.42927569351131,53.08362082287873],[-127.42955648565275,53.08368298054854],[-127.42978951690539,53.08371546628548],[-127.43000742285739,53.08377110405184],[-127.43013104763334,53.08385926174502],[-127.43026166275719,53.08396078280718],[-127.43032073853892,53.08404860107862],[-127.43039426200154,53.084121110768706],[-127.43050750339225,53.08420659658062],[-127.43054729700557,53.08427727323857],[-127.43064527904902,53.08435397827646],[-127.43075918158796,53.08440358521346],[-127.43104592917464,53.08442028434093],[-127.43134457708858,53.08442955867657],[-127.43164086277432,53.08445174419067],[-127.4319294799264,53.08449587063811],[-127.4321951354391,53.08452515008649],[-127.4325006796107,53.084599893058744],[-127.43278146418751,53.08466148740116],[-127.43306315407048,53.084721949425045],[-127.43332826721223,53.08479045664392],[-127.43358877154148,53.0848881568198],[-127.43385526464644,53.08496953840324],[-127.43409915589767,53.085074163165075],[-127.43438424889003,53.08512449467223],[-127.4346784298736,53.08516742624894],[-127.43483966559738,53.085205812549844],[-127.43495970886192,53.08521556134102],[-127.43523003949207,53.08527223834131],[-127.4354909856085,53.085355360205746],[-127.43581268088667,53.0853817093227],[-127.43610872695027,53.08536914562132],[-127.43640316245308,53.08533642854949],[-127.43669668892616,53.08530427764858],[-127.43700413589202,53.08526915948069],[-127.43729094889069,53.08528752825008],[-127.43758731962896,53.085311939275414],[-127.43783764446982,53.08521979455461],[-127.43807328796119,53.085108220595565],[-127.43828888747369,53.08498456269729],[-127.43847872399063,53.084846093385835],[-127.4386438344581,53.08469558840568],[-127.43882985306364,53.08455492361065],[-127.43910106472227,53.084499504132054],[-127.43939624566934,53.08454409730464],[-127.43968842502444,53.08458312292561],[-127.43998378876206,53.08460529881845],[-127.44027921394138,53.08462971458728],[-127.4405740165018,53.084663102653394],[-127.44086704510318,53.084699317807434],[-127.44115748631509,53.08474172306088],[-127.44138533222865,53.08481402900489],[-127.44152907077182,53.084942829987035],[-127.44174280776029,53.08501251018869],[-127.44201879918192,53.08509767553931],[-127.44235704852815,53.08514341223334],[-127.44272616118107,53.085189335897674],[-127.44311644115257,53.0852249137348],[-127.44346596855429,53.085272195018604],[-127.44380709032328,53.0853195780015],[-127.44410443793556,53.085372542630694],[-127.44431889872806,53.08543604115959],[-127.4444030067787,53.085516257761796],[-127.44425126935393,53.08561953886693],[-127.44395335665554,53.08574252833055],[-127.44364936341691,53.08587904844231],[-127.44346826571409,53.086026384800554],[-127.44338988283066,53.086196565120986],[-127.44334108378273,53.08638431483063],[-127.44331849580398,53.086572309115574],[-127.44331779638466,53.086744337498494],[-127.44331737911656,53.08692421613923],[-127.4433150767488,53.08710410882484],[-127.44330810754482,53.08728406746778],[-127.44333281101318,53.0874602681714],[-127.44330538779218,53.08764383868346],[-127.4433105797503,53.087823639743895],[-127.44328485434312,53.08800214193177],[-127.44328149102353,53.0881781295716],[-127.4432612224324,53.08835208234198],[-127.443227406888,53.088512752426226],[-127.44316402648367,53.0887118866668],[-127.44313191520871,53.088894949428806],[-127.44323762896109,53.08906063921908],[-127.44337304852851,53.08921924195656],[-127.44356085865903,53.089350873011185],[-127.44375631305465,53.08951490105983],[-127.44391707603819,53.0896485385821],[-127.44404256306727,53.08979045176581],[-127.44418462798583,53.08997923065646],[-127.4442888409114,53.090210501958914],[-127.44443247315593,53.090335382755065],[-127.44459939718446,53.0904577372577],[-127.44474693557031,53.09061506956831],[-127.44489815762573,53.09077067114915],[-127.44505304474231,53.09092399532386],[-127.4452152981556,53.09107385820045],[-127.44539321153384,53.0912168141959],[-127.44560334317784,53.091344242135264],[-127.44582637526074,53.09146590846901],[-127.44603656659328,53.09159501145391],[-127.44623393673177,53.09173212470425],[-127.44646134952373,53.09184477082344],[-127.44672872361393,53.091922742104344],[-127.4470088219814,53.09198935915901],[-127.4472844487777,53.09206218957077],[-127.44755924874762,53.092138391509984],[-127.4477884225442,53.09224765151346],[-127.4479793248898,53.09238707354056],[-127.44814265184404,53.092540290311085],[-127.44827904740548,53.09269943136821],[-127.4483839972785,53.09286905277437],[-127.44846564060032,53.09304119216561],[-127.44852501174651,53.0932180961913],[-127.44857501758574,53.09339510601868],[-127.44860919290986,53.09357399537946],[-127.44864149839954,53.09375290763857],[-127.44867567429249,53.093931796943764],[-127.44869862964248,53.09411082378558],[-127.44869914342885,53.09429012573524],[-127.44868002807911,53.09446966831068],[-127.44863803463173,53.09463716388971],[-127.44860405334794,53.09481969482588],[-127.44859459846292,53.0950086401645],[-127.44855959757346,53.095188942190575],[-127.4485367215498,53.09536796591745],[-127.44853997523202,53.0955455576155],[-127.4485973841445,53.09571967928155],[-127.448698640304,53.09589045721384],[-127.44879432519232,53.096062432996895],[-127.44883409499488,53.0962406886515],[-127.44882261775712,53.09642518492388],[-127.44885203256842,53.09660132614318],[-127.44896517334703,53.096764122331685],[-127.44910999025278,53.09692260314268],[-127.44927706403286,53.09707576330532],[-127.44945697812456,53.097220929986165],[-127.4496605982724,53.0973484306561],[-127.44992015982359,53.097442745074794],[-127.45015415156972,53.09755530350114],[-127.45035892867362,53.09768894802143],[-127.45050080702075,53.09784354533269],[-127.45057606421827,53.098019688229556],[-127.45065313470806,53.09819412331577],[-127.45072648450166,53.098369168836115],[-127.45076902022294,53.098545713250644],[-127.45074615607494,53.09872530183093],[-127.45072330669602,53.09890489020496],[-127.45075651453034,53.09908266975387],[-127.45081310968152,53.09926016217683],[-127.45087622075262,53.09943645389369],[-127.45092917212075,53.099616797137614],[-127.45099141821369,53.09979534073659],[-127.45108509713386,53.09996284747517],[-127.4511340694745,53.09999979322472],[-127.45154448984067,53.10023681865583],[-127.45165118810345,53.100401923692225],[-127.4515889860669,53.10057975410586],[-127.4514919045751,53.10075016812257],[-127.4513910430744,53.100919507780624],[-127.45127321268966,53.101085137823354],[-127.45111647345368,53.10123499121409],[-127.45087500992723,53.10134217823869],[-127.45066990799091,53.101473008421785],[-127.45049052386113,53.10161697963533],[-127.45036038814544,53.10177883281789],[-127.45014573849207,53.10190417581719],[-127.44994633899299,53.10203774083811],[-127.4497574443005,53.102177344820454],[-127.4495989017833,53.102329459453934],[-127.44947726185265,53.10249344867375],[-127.44937168104921,53.1026617234972],[-127.44927362383072,53.102831582470436],[-127.44918312051146,53.103003034206296],[-127.44907561347472,53.10317021163386],[-127.44894548255374,53.10333206293316],[-127.44878978440222,53.10348526209505],[-127.44863030572458,53.10363738668967],[-127.4484897612355,53.103796003025934],[-127.44835490396582,53.10395679081808],[-127.44828038282111,53.104130851992785],[-127.44821430919693,53.1043059212969],[-127.44815202976179,53.10448207368872],[-127.44809067732257,53.104658205701675],[-127.4478988173653,53.104793915791745],[-127.44768707766958,53.10492314501617],[-127.44749430667277,53.10505943037459],[-127.44731679018996,53.10520448499415],[-127.44713358009218,53.105346811838665],[-127.44694938772062,53.10548802972828],[-127.44675948674308,53.105626519988526],[-127.44659334222048,53.10577591689803],[-127.4464480566608,53.10593291193849],[-127.4463207247066,53.10609528146944],[-127.44619811846833,53.10625927850245],[-127.4460793058313,53.10642434963896],[-127.4459642568998,53.10659049525634],[-127.44583127111764,53.10675182161285],[-127.44565464648481,53.10689574186544],[-127.44541400333962,53.10700066546034],[-127.44513557401179,53.10706794782774],[-127.44486395112727,53.10714299099808],[-127.44460306293958,53.10723079449217],[-127.44436145320503,53.10733516286642],[-127.44415726425522,53.10746653436633],[-127.44398257833065,53.107612678569566],[-127.44382115797063,53.10776369897388],[-127.44366542502266,53.107916891002915],[-127.44351159985808,53.108071180168714],[-127.44335588358307,53.108224927382615],[-127.44319634865418,53.108376488619925],[-127.44303586940745,53.10852805217749],[-127.44288581943849,53.10868341500069],[-127.44275186824285,53.10884418444829],[-127.44262831232999,53.109008188849884],[-127.442516075768,53.10917486111205],[-127.44241984682557,53.10934469094581],[-127.44235094242529,53.1095197995692],[-127.44231208478838,53.109697894558586],[-127.44227229919446,53.109876009800374],[-127.44222030686288,53.11005314430204],[-127.44213537639898,53.11022508623192],[-127.44197868115965,53.1103777225666],[-127.44175628948257,53.11049754897169],[-127.4414983062319,53.110589227529935],[-127.44123931772374,53.11067867643532],[-127.44098034701385,53.11076868038775],[-127.44073006852578,53.110866431429585],[-127.44050479967528,53.11098460496071],[-127.44030819785796,53.11111979456884],[-127.44014866001656,53.11127190706512],[-127.44001658426158,53.11143377076889],[-127.43992598707099,53.111604094385385],[-127.43994137440485,53.11178153647462],[-127.44002863265926,53.11195361148775],[-127.44002912916996,53.11213347624675],[-127.43999591028278,53.11231262204152],[-127.43995327940303,53.11249020593595],[-127.43993411879843,53.11266974524994],[-127.43993178179446,53.11284907963071],[-127.43991918105854,53.11302910381764],[-127.4398756400056,53.1132072545338],[-127.43977564964577,53.11337713636632],[-127.43959039373986,53.1135161130566],[-127.43935168704331,53.1136249175314],[-127.4391283617486,53.11374530569121],[-127.43899619831419,53.11390492763415],[-127.43898353608205,53.11408326683697],[-127.439005571413,53.11426342501613],[-127.43903970430638,53.11444175941658],[-127.4391046259195,53.1146174687356],[-127.43913034724505,53.11479590547174],[-127.43911678033665,53.1149753762757],[-127.43909387292037,53.11515496075372],[-127.43906906008849,53.115334003586824],[-127.43904144820343,53.115513089428525],[-127.43901383578067,53.11569216628425],[-127.43898620425713,53.11587068749804],[-127.43895953471265,53.11604976178885],[-127.43893005047434,53.11622886134407],[-127.43889306260944,53.116407496344365],[-127.43885792670224,53.11658555292633],[-127.43880685912588,53.11676323854309],[-127.43869267751022,53.116928800061636],[-127.43852267600849,53.11707655421962],[-127.4383450596254,53.11722103876798],[-127.43816840426267,53.11736607614534],[-127.43800788796399,53.117517631929516],[-127.43787954609485,53.117680011741044],[-127.43776255908357,53.11784560631902],[-127.43765029883197,53.11801282875099],[-127.43745834498557,53.11814852087552],[-127.43727408388628,53.11829028725081],[-127.43705059916411,53.118407310765775],[-127.43680416057536,53.11850947941331],[-127.43656539976274,53.11861772234104],[-127.43634007423275,53.11873533162362],[-127.43612049775447,53.118857344288514],[-127.43589520767598,53.118976072903266],[-127.43564774397802,53.11907601017003],[-127.43538284982105,53.11915879280717],[-127.43513154663752,53.119255978407345],[-127.43489566759102,53.119366424150556],[-127.43467129952256,53.11948513913636],[-127.4344660597595,53.11961593986449],[-127.43427700164234,53.119754953328155],[-127.43408894243376,53.11989563981439],[-127.43384332159343,53.119994994940704],[-127.4336094200725,53.120108775967736],[-127.43351112268394,53.12027413923005],[-127.43354338478547,53.120453052918975],[-127.43356823769147,53.120634297722695],[-127.43344157000777,53.120791604385985],[-127.43323635831642,53.12092353204109],[-127.43300237426935,53.12103507141767],[-127.43280188344727,53.121168052747244],[-127.43263462514967,53.121315208549376],[-127.43256751311783,53.121489723041186],[-127.43239274820178,53.12163640458312],[-127.43219892760351,53.121773230758585],[-127.4320165420804,53.12191607722102],[-127.43183793624836,53.12206000722708],[-127.4316235621607,53.12214272508551],[-127.43132257313442,53.12212788247079],[-127.43102388654869,53.12212532944884],[-127.43072503402482,53.12211830403347],[-127.43042629096611,53.12211407368977],[-127.43012700164947,53.12212161157218],[-127.42983128692724,53.12215208333831],[-127.42956335485422,53.12222873005347],[-127.42931787978131,53.12233311205039],[-127.429115485186,53.12246611879631],[-127.42893021110297,53.12260675388738],[-127.42876110004337,53.12275504690223],[-127.42853673431428,53.122874861257266],[-127.42831900437558,53.12299740112345],[-127.42817164511914,53.12315215439232],[-127.42804991898156,53.123317795448244],[-127.42793569670444,53.123483910548586],[-127.42778578394147,53.12364653865043],[-127.42792689336429,53.12380620857902],[-127.42814320774515,53.12375260222274],[-127.42832134262848,53.1235941243557],[-127.42847053655102,53.12343822813626],[-127.42862447226244,53.12328395987526],[-127.42875267799542,53.12311599860388],[-127.42891438039265,53.122970036477916],[-127.42915823418677,53.122872954763494],[-127.42943265322035,53.12279399829668],[-127.42970519951771,53.12271505485458],[-127.42997007043732,53.12263060928829],[-127.43025787184531,53.122587905756895],[-127.43055568763991,53.12256413146308],[-127.43085271123395,53.12254484861247],[-127.43114962104369,53.122522204430425],[-127.43144335626346,53.122488947241116],[-127.43173500777705,53.12244899959092],[-127.43202781381716,53.12241575218723],[-127.43232582086841,53.122398139167395],[-127.43262223608285,53.12238838028904],[-127.4329170263583,53.122358477555736],[-127.4332065615654,53.1223118190029],[-127.43349531982813,53.12226966073191],[-127.43379328319995,53.12225035905895],[-127.4340891324491,53.122224358346635],[-127.43438405312786,53.12219836815311],[-127.43468107241559,53.1221790756837],[-127.43497922430485,53.12216537199255],[-127.43527745574544,53.12215446373559],[-127.43557123840515,53.12212232526092],[-127.43585791270081,53.12207401838874],[-127.43615583951281,53.1220541463654],[-127.43645419907587,53.122046604501264],[-127.43675261922921,53.12204129349201],[-127.43705071264063,53.12202590876785],[-127.43734145020457,53.12198706997573],[-127.4376249649448,53.121928711287445],[-127.43792099579389,53.12190774615353],[-127.43819454995642,53.121969417360546],[-127.43842688869766,53.12208538078761],[-127.43870057772149,53.122150967012615],[-127.43900090805867,53.12214675671601],[-127.43929709165786,53.12213025994981],[-127.43959447830792,53.12214961774895],[-127.43989184182739,53.12216784546369],[-127.44018982949942,53.12217710854803],[-127.4404879693353,53.122190842689065],[-127.44078686630645,53.122199528384655],[-127.44107824517033,53.12223464485714],[-127.4413645816737,53.12228662296162],[-127.44166087048463,53.12230094153272],[-127.4419602733828,53.12229673503767],[-127.4422575626892,53.12231271641909],[-127.44255649902198,53.12232251783319],[-127.44284933414639,53.122290372788214],[-127.44310071393052,53.122195411335625],[-127.44332503457314,53.122075560346346],[-127.44359401768803,53.12200279608459],[-127.44389261662542,53.12197506067745],[-127.44418581802164,53.12198100119454],[-127.44447049544556,53.12203916017427],[-127.44474978870633,53.12210410820629],[-127.44502458791304,53.122174713794294],[-127.44530035047079,53.122245871788905],[-127.44554423196116,53.12234262920623],[-127.44573896706254,53.122480886542526],[-127.44597121456323,53.122593474543514],[-127.44625288878588,53.12264550688149],[-127.44655352753249,53.122650229965835],[-127.44685242498369,53.12265834453187],[-127.44715119248869,53.12266308899467],[-127.44744987951228,53.12266503652598],[-127.44774866642291,53.122670344054995],[-127.44804675490309,53.12268238333308],[-127.44834492013811,53.122696662238525],[-127.44864217666274,53.12271151633901],[-127.44893871975373,53.12273309342305],[-127.44923756495844,53.122740081954944],[-127.44953608000803,53.122736978885435],[-127.44983429270512,53.122725478309825],[-127.45013373612949,53.122722371312626],[-127.45043234701187,53.12272207093363],[-127.45072608780352,53.122689330431854],[-127.45100468762163,53.1226242758656],[-127.45127740381548,53.12255144822424],[-127.45154712758817,53.122473053374684],[-127.45181592622333,53.122395225100085],[-127.45208958710347,53.122322948755304],[-127.4523721362167,53.122264001548984],[-127.45266681550844,53.122231244633916],[-127.45296165892731,53.122257879954404],[-127.45326007440491,53.12225197149457],[-127.45354164012127,53.12219192185677],[-127.45383647175726,53.1221636427783],[-127.45412906624497,53.12212473971145],[-127.45440670985518,53.122059132911694],[-127.45468431825113,53.121992961067306],[-127.45495208387031,53.1219123410737],[-127.45517258830634,53.12179139345887],[-127.45538925274018,53.1216676955018],[-127.45563664652141,53.12156659688477],[-127.45589179361943,53.12147323793416],[-127.45614884973698,53.121380984532514],[-127.45641078720605,53.12129482958867],[-127.45669233765825,53.12123420765847],[-127.45698295563196,53.121192524575775],[-127.45727363067083,53.12115251657839],[-127.45756519511148,53.121111385198354],[-127.45785688927646,53.12107360451462],[-127.45815171025156,53.121045314660606],[-127.45844641515833,53.12101366350955],[-127.45874015735141,53.120981467646075],[-127.45903177242727,53.12094144368737],[-127.45931038658259,53.12087748967917],[-127.45958402487756,53.12080519593141],[-127.45986061161447,53.120736782973225],[-127.46015023683371,53.120693418793856],[-127.46043675759559,53.12064169174565],[-127.46070940620079,53.120567722087316],[-127.46099596405541,53.12051711386737],[-127.46129290162781,53.12049607874624],[-127.46158355499472,53.120537312930914],[-127.46187160270512,53.12058418194261],[-127.4621622913832,53.12062597013012],[-127.46246042772205,53.12063965785203],[-127.46275516526077,53.12060911614273],[-127.46300641309863,53.12051187192111],[-127.46321922817422,53.120385965465715],[-127.46344639784174,53.120269402109756],[-127.46370732755696,53.12018156664069],[-127.46394986698974,53.120076018662495],[-127.46415214535251,53.11994351689934],[-127.46430593845756,53.11978920191336],[-127.46459661647047,53.119749740459305],[-127.46489488282242,53.11976733822074],[-127.46514354292671,53.11986623785749],[-127.4653913147823,53.11996626865427],[-127.46564090536465,53.120065155731446],[-127.46589140148218,53.12016291039867],[-127.46614371205195,53.12025896552995],[-127.46640780662587,53.120343658366764],[-127.46667815362632,53.12041987255664],[-127.46694939097803,53.120494954425425],[-127.46721254580967,53.12057966611612],[-127.467499749463,53.12062877330424],[-127.46779046783048,53.12067166802648],[-127.4680662004471,53.12074108823587],[-127.46831035815798,53.12084451988697],[-127.46855268917145,53.120949659211874],[-127.46879684927147,53.12105308984664],[-127.46904010625595,53.121157651872316],[-127.46927790584321,53.12126676388364],[-127.46950016178754,53.121386710442614],[-127.46971695610584,53.12151065129064],[-127.4699520226458,53.12162203727352],[-127.47020614471309,53.1217158200294],[-127.47047206967414,53.12179880465991],[-127.47071257872727,53.1219050739954],[-127.47089539343641,53.12204793082177],[-127.47113777200812,53.12215362020287],[-127.47143401141346,53.12216617942864],[-127.4717267457064,53.122131722515434],[-127.4720193042366,53.12209221957693],[-127.47231638345531,53.122075072952335],[-127.47261520823577,53.1220814378418],[-127.47291266333119,53.12210182289135],[-127.4732075381935,53.122128972309504],[-127.47350158682696,53.12215948432822],[-127.4737948831857,53.12219505248121],[-127.4740838988351,53.12224187994768],[-127.47435783923473,53.12231299350751],[-127.47460292991074,53.12241583593136],[-127.474796793258,53.12255294575936],[-127.47485535284063,53.12272928079546],[-127.47484662067441,53.12290869643241],[-127.47477782791306,53.123083813641564],[-127.47464204648817,53.123244085821796],[-127.47451477055809,53.12340648412847],[-127.47444408485623,53.1235810688208],[-127.47440631206338,53.1237597257452],[-127.47438164371422,53.12393878406426],[-127.47436449525871,53.124118304450725],[-127.47435668897046,53.124297708338865],[-127.47435453131716,53.12447759763237],[-127.47435797340384,53.124657426056984],[-127.47436984435672,53.1248371404097],[-127.47438731054038,53.12501622913396],[-127.47440386825727,53.12519589398166],[-127.47441199654686,53.12537565494338],[-127.47440702463075,53.12555558818501],[-127.47438984100836,53.12573454402935],[-127.47436707727613,53.125914134236425],[-127.4743414792249,53.126093203904645],[-127.47431211822204,53.12627175564404],[-127.47427903320276,53.1264509096304],[-127.47427029782918,53.12663032485161],[-127.47425781924595,53.12680978671699],[-127.47425097493102,53.12698974313924],[-127.47421410694437,53.12716782351987],[-127.47421100556922,53.12734773324245],[-127.47421351865464,53.12752756399358],[-127.47423006164318,53.127707228800254],[-127.47428488276043,53.12788361027285],[-127.47430985566956,53.12806316098459],[-127.47426359016985,53.12824024671842],[-127.47425113041953,53.12842026402983],[-127.4742461378156,53.12859963238952],[-127.47425426640085,53.12877940198199],[-127.47426988139433,53.12895906926851],[-127.47428362516143,53.12913876882816],[-127.47428708198734,53.12931858763878],[-127.47428208942976,53.12949795591015],[-127.47427150139458,53.12967795872704],[-127.47425902191881,53.12985742028738],[-127.47424747070569,53.13003687025625],[-127.47426306679736,53.13021598181035],[-127.47421588971089,53.13039363449268],[-127.47421465952947,53.13057351159954],[-127.47425269724774,53.130751787524396],[-127.47432151404796,53.13092687361293],[-127.47432122766533,53.131106738907974],[-127.4743928411217,53.131281234221476],[-127.47441966892528,53.13146020562941],[-127.4743827977574,53.13163828561877],[-127.47448048078029,53.131808529064664],[-127.47457627345088,53.13197824014333],[-127.47468974388373,53.13214492459267],[-127.47475950814587,53.13231999852817],[-127.47491372648874,53.13247328258455],[-127.47510030560719,53.13261496520999],[-127.47537950077374,53.13267367507744],[-127.47566249906384,53.13273402231918],[-127.47590489666034,53.13283858131234],[-127.47616183635496,53.13293007520582],[-127.47641605936501,53.133024399632056],[-127.47663565565192,53.133146051689224],[-127.47683509244266,53.13328028233348],[-127.47702530776311,53.133418545633326],[-127.477213711216,53.13355851673519],[-127.47740394871327,53.133697343972024],[-127.47760153835199,53.13383216123125],[-127.47778627994643,53.13397441850295],[-127.4780521447634,53.13405346062287],[-127.47824288124339,53.134179397179764],[-127.47794727337319,53.134214469735156],[-127.47768531921434,53.134301227360275],[-127.47747531667251,53.13442824406047],[-127.47730254550765,53.134575532064595],[-127.47714779790837,53.13472930970428],[-127.4769176949155,53.13484369324555],[-127.47668185742879,53.134954776962026],[-127.47650807917435,53.135100390801796],[-127.4763921238662,53.13526601933183],[-127.47629882592778,53.1354369592727],[-127.47622154410575,53.13561050536287],[-127.47617622621263,53.135788135118176],[-127.4761459574018,53.135967262502334],[-127.47612503294346,53.136146264282864],[-127.47610507146557,53.13632581883485],[-127.47603155089287,53.13649988256065],[-127.47596556114837,53.136675528754786],[-127.47594652256466,53.136854506888085],[-127.47593030403367,53.13703401462394],[-127.4759262657237,53.137213935175346],[-127.47592691464169,53.137393788259814],[-127.47593130796245,53.1375736035724],[-127.47595814625133,53.137752574005084],[-127.47598031210946,53.1379316027168],[-127.47591337170327,53.13810669576195],[-127.47591218785428,53.13828770124676],[-127.47608115952211,53.13843407557575],[-127.47624928220503,53.138582710541606],[-127.47634604050516,53.138752398811675],[-127.47641769459764,53.13892744776191],[-127.4764781363057,53.139103201416034],[-127.47663794788102,53.139255292564364],[-127.47669188508215,53.139432247944455],[-127.4767205998944,53.13961119464979],[-127.47671000000855,53.13979063210716],[-127.47669001960766,53.13996962182903],[-127.47668131134365,53.14014960044375],[-127.47674549990438,53.14032529814156],[-127.476856200467,53.14049201470202],[-127.47695297027175,53.140662267048135],[-127.47709244510467,53.14082134434854],[-127.47716036139572,53.1409964394],[-127.47718251905533,53.141175467751346],[-127.47716630410805,53.14135497522619],[-127.47713977962731,53.14153404659539],[-127.4771282374348,53.141713495680705],[-127.47718123620947,53.14189046237825],[-127.47719312397143,53.14207017472411],[-127.47683749654061,53.14231891763141],[-127.47664203917314,53.14243454363228],[-127.47642436289009,53.1425571705107],[-127.47623441146983,53.142696260839266],[-127.47611685089305,53.142762725710824],[-127.47599632448988,53.14279784912213],[-127.47570426269338,53.14282895308079],[-127.47540601290471,53.14284331469776],[-127.47510886730363,53.142862709221156],[-127.47481384743575,53.142889365231966],[-127.47452112820027,53.14292831006116],[-127.47424140933822,53.14299119070805],[-127.47395361131599,53.14303680568138],[-127.47365574239637,53.14303546895781],[-127.47350125882251,53.143063732992545],[-127.47334799583463,53.14310038204339],[-127.47323082106038,53.143124254312426],[-127.47308956795762,53.14312881035141],[-127.47297638450593,53.14313302570967],[-127.47282432615062,53.143150043151905],[-127.47261554513442,53.14317898196191],[-127.47243875906223,53.14323945634047],[-127.47232581464642,53.14327727873504],[-127.47221396669828,53.14337337031417],[-127.4721037644354,53.14340948186653],[-127.47196105950927,53.14353396450173],[-127.47181497697807,53.14358845263134],[-127.4716763157298,53.14366806743372],[-127.47140444230044,53.143740929518664],[-127.4711314101006,53.14380763730072],[-127.47085297421438,53.1438805796917],[-127.47055773047612,53.14390105966614],[-127.47027225738992,53.143852501837785],[-127.47001616892145,53.14375986381276],[-127.46976008188427,53.14366723419002],[-127.46950129201194,53.143577434742234],[-127.4692370267921,53.14349218534387],[-127.46897011709682,53.14341145080875],[-127.4686931901999,53.1433386846019],[-127.46839722692734,53.14331153596054],[-127.46810639137911,53.14326976344065],[-127.46781123686607,53.143238685507804],[-127.46751535249425,53.14321377499973],[-127.46722168578874,53.14319836627575],[-127.46692049589102,53.143182494264366],[-127.46662152309115,53.14317611506055],[-127.46632474998495,53.14315233325737],[-127.46602813263779,53.14313304035467],[-127.4657284493112,53.14313339161298],[-127.46542998520542,53.14314212741194],[-127.46513271667708,53.14315813636543],[-127.46484400282259,53.143204861034285],[-127.4645613118473,53.143263272782605],[-127.4642894867224,53.14333779431192],[-127.46407513191933,53.14344971510029],[-127.46380804237316,53.14360710502163],[-127.46363668534454,53.14368935604834],[-127.46332381894665,53.1437150744062],[-127.46302880044536,53.14368790963232],[-127.46275657444376,53.14361562735678],[-127.46248876715492,53.14353545425577],[-127.46222142922801,53.14346927839916],[-127.46205342000226,53.143458462821734],[-127.46175609013308,53.143472787511904],[-127.46145744900898,53.14347647699502],[-127.4612711420271,53.143478213485935],[-127.46119505483983,53.14347187350434],[-127.46102540879443,53.14349526098213],[-127.4608650082013,53.14351517210345],[-127.46056883351562,53.14353563862504],[-127.4602747668024,53.14356335812078],[-127.4599871043339,53.143613419798235],[-127.45971515505006,53.1436576746848],[-127.4594148118343,53.14369332297257],[-127.45925468220169,53.1436941775165],[-127.4591314155791,53.143677202668975],[-127.45900795881813,53.143627740187526],[-127.45883852645566,53.14357603839961],[-127.45870041855719,53.14359062427843],[-127.45859434965395,53.14363787861909],[-127.45840240479953,53.14377528753763],[-127.45823711479453,53.14392525055885],[-127.45813168526126,53.14399154760071],[-127.45800872510895,53.14403788891563],[-127.45773094299832,53.1441035033688],[-127.4574422145352,53.1441502099523],[-127.45715348512692,53.1441969068688],[-127.45689038678724,53.14428083363318],[-127.45666977016856,53.14440178293696],[-127.45645970803298,53.14452988160213],[-127.4562314259233,53.14464587700998],[-127.45600600124932,53.14476351327787],[-127.45579020265184,53.14488831933643],[-127.45558010136558,53.14501586098416],[-127.45537862423834,53.14514889041646],[-127.45519428625788,53.14529011801105],[-127.4550213933039,53.14543737258013],[-127.4548589200313,53.14558785171781],[-127.45471540506229,53.14574538619179],[-127.45457003158262,53.145902943313416],[-127.45447644155287,53.14598702167404],[-127.45439520366266,53.146048535197366],[-127.4541946469362,53.14618156008282],[-127.45398839029444,53.14631184855291],[-127.45378115021254,53.14644102807687],[-127.4535643734148,53.1465652769888],[-127.45332256167153,53.14666967034548],[-127.45305262926861,53.14674638344896],[-127.45276076897373,53.1467841515592],[-127.4524689122367,53.14682247473865],[-127.45230486534773,53.14684578071086],[-127.45217396548975,53.146852425798805],[-127.45189443991379,53.14689507877891],[-127.45163646388005,53.14699237827846],[-127.45156673073386,53.147034697647136],[-127.45141674688048,53.14711330621174],[-127.45133924734631,53.1471747716593],[-127.4512929976952,53.14727395564612],[-127.45127874869372,53.14737722967495],[-127.45128228815415,53.147453390052554],[-127.45132700793896,53.14758283621966],[-127.45135198086417,53.14762847629654],[-127.45143750181279,53.14780056223401],[-127.45146308935252,53.14786412504602],[-127.45152047629729,53.14798053281212],[-127.4516076067252,53.14814531916472],[-127.45167355685724,53.14832045109782],[-127.45173672526634,53.14849617295281],[-127.45179522470109,53.14867251685486],[-127.45185278085577,53.14884887229107],[-127.45192247822105,53.14902395806418],[-127.4519856296596,53.149199124112855],[-127.45203293405251,53.1493767258721],[-127.45207836625701,53.149554350575066],[-127.45212567143567,53.14973195226247],[-127.45217110441028,53.14990957689506],[-127.45221559397127,53.150087213075885],[-127.45225824563417,53.1502654365879],[-127.45230848813327,53.15044691986732],[-127.45235189631356,53.1506200866612],[-127.45240854797076,53.15079701760373],[-127.45244838439098,53.15097526658601],[-127.45251540151239,53.1511537467026],[-127.45255135904004,53.151328125473846],[-127.45261544536119,53.15150327956183],[-127.45271179695244,53.15166346915767],[-127.45285984779643,53.15182862713665],[-127.4528350869688,53.15200767797893],[-127.45270480535348,53.152169529189294],[-127.45263446241465,53.15222137743066],[-127.45251123960836,53.15228845202728],[-127.45220632491085,53.15235662676672],[-127.4519519124665,53.152449964767165],[-127.45171012060236,53.152556030263604],[-127.45145477668869,53.152649369618985],[-127.4512206653294,53.152760943071264],[-127.45093588483357,53.15281542881079],[-127.45062395616608,53.152870237690784],[-127.45050970442418,53.15295344494666],[-127.45047161649991,53.15301723246622],[-127.45041209547446,53.153193902526894],[-127.45026950108291,53.153351974982606],[-127.4500583355526,53.153477277274355],[-127.44980230708374,53.1535784657706],[-127.44952130315029,53.15363402236323],[-127.44923137972599,53.15367511023357],[-127.44906855944309,53.15370792617994],[-127.44889140409187,53.153759403479555],[-127.44872653429218,53.15386900334309],[-127.44858769622151,53.154027592425095],[-127.44848575231232,53.15419693612311],[-127.44838003864783,53.15436520520772],[-127.44824782162365,53.154525954053014],[-127.44811655250669,53.15465923099935],[-127.44790515807715,53.15480582413091],[-127.4477088170811,53.1549539091771],[-127.44752969823057,53.15511298959277],[-127.44737419300968,53.15524992398362],[-127.44723347249912,53.15540853426211],[-127.447118294999,53.155574676468426],[-127.44699745571594,53.15573921129],[-127.44682538194259,53.155885312545394],[-127.44663052226385,53.15602217112589],[-127.44643466013815,53.156157365138974],[-127.44623406848086,53.15629148699785],[-127.44602963027134,53.156422302546254],[-127.44582135319996,53.15655091437754],[-127.44561405736397,53.1566806434334],[-127.44540963432978,53.1568120134868],[-127.44520805014963,53.156944469131346],[-127.4450074319129,53.15707803324949],[-127.44480873855198,53.15721269413903],[-127.44461192083737,53.157347887609994],[-127.44441702831539,53.15748418683228],[-127.44422403041075,53.15762157425842],[-127.44406237073059,53.15774345487534],[-127.44385043813972,53.15790237370962],[-127.44367075750387,53.158045765662216],[-127.44349302074835,53.158190810076604],[-127.4433399412985,53.15834508337158],[-127.4432228443392,53.15851012400886],[-127.44315668418523,53.1586857497479],[-127.44304991776951,53.158851784829174],[-127.44287978238283,53.15900010637679],[-127.44268202118445,53.159135307831754],[-127.44245553376908,53.15925237306412],[-127.44220595819009,53.15935178904493],[-127.44194860330258,53.15944289898886],[-127.44168248674478,53.15952458521541],[-127.44140862500409,53.15959852072113],[-127.44116568826121,53.15970065068278],[-127.44093156814506,53.15981388808209],[-127.4407165582183,53.15993808973705],[-127.44052281789291,53.16008164766022],[-127.4405405276617,53.160243923846764],[-127.44064561396773,53.16041354572666],[-127.44035821975297,53.16033803447706],[-127.44006733695234,53.16029786938942],[-127.43977208433166,53.160266721809094],[-127.43948823381598,53.16021246634278],[-127.43920873531471,53.16014862742623],[-127.43892305523339,53.1600960693326],[-127.43864746026891,53.16006411518166],[-127.43833020957128,53.16004724380634],[-127.43804381137392,53.160000851329656],[-127.43775977851055,53.15994154664864],[-127.43746428573223,53.159930567646995],[-127.43716594475397,53.15994651765552],[-127.43687278797503,53.15997697218255],[-127.43654214446664,53.15997930935778],[-127.43628322367488,53.159942108988716],[-127.43599079338983,53.15991091778484],[-127.43569587693388,53.15994475263405],[-127.43539925073034,53.159928179076665],[-127.43510928149276,53.1598868701771],[-127.43480987786072,53.159898900435024],[-127.4345116070359,53.159889068383855],[-127.43421303752316,53.15989828992567],[-127.43391336824749,53.15990248568108],[-127.43363322639573,53.15995742835363],[-127.43349138093743,53.16011267280237],[-127.433132936961,53.160262695542364],[-127.43283788291166,53.16029259818531],[-127.43257077648204,53.16037315496451],[-127.43232499305007,53.160474745049356],[-127.4320744007361,53.160572475067916],[-127.43177676990732,53.16058167903888],[-127.4314800650144,53.16056285532388],[-127.43120322691236,53.160494482941495],[-127.43091670112223,53.160444157113],[-127.43062408203426,53.16040735180162],[-127.43035182295644,53.1603355602151],[-127.43013496387215,53.160212105497806],[-127.42986607276708,53.16015652572176],[-127.42955998902424,53.160165261472855],[-127.42926390968582,53.160192370480544],[-127.42896665905764,53.16021276911061],[-127.42867041279806,53.1602353961246],[-127.42837641351325,53.160268645730746],[-127.42808548011712,53.16030969304294],[-127.42779560759428,53.16035465351655],[-127.42750775488382,53.16040351559251],[-127.42722588314473,53.160463502154194],[-127.42695876495925,53.16054404626222],[-127.42670331861503,53.16063734076198],[-127.42645176802101,53.16073506128678],[-127.42622426037516,53.160850986380794],[-127.42599968587427,53.16097080235514],[-127.42572855183639,53.16104354758963],[-127.42543554883208,53.16107901007006],[-127.42513830914197,53.16109996364384],[-127.42483736033859,53.16112207278062],[-127.42461041726307,53.161227346400665],[-127.42459314513462,53.16107626965486],[-127.42442336612123,53.160986977442995],[-127.42418638442703,53.160877210698935],[-127.4239457178461,53.160769720109776],[-127.42368605197248,53.160682073030564],[-127.42335138219319,53.160620545984756],[-127.42312386220965,53.160541476120244],[-127.42288325686538,53.16043566809301],[-127.42263822207426,53.16033719241825],[-127.42241504438805,53.16021996770796],[-127.42220556605709,53.1600919364974],[-127.42198403815019,53.15996796740334],[-127.42175430103042,53.159850820276674],[-127.42149279093388,53.159763746449116],[-127.42121589530285,53.15969255454333],[-127.42092348151448,53.159661881899886],[-127.42062288356802,53.159666055163285],[-127.42032463192916,53.159684758685124],[-127.42002753086815,53.159709615575046],[-127.41973254686106,53.159741734872945],[-127.4194494389834,53.15979275267841],[-127.41918342340576,53.15987831321921],[-127.41890647772759,53.15994550937134],[-127.41861559383308,53.15998821815989],[-127.41831932469971,53.16001025470258],[-127.41802027798424,53.16000487293457],[-127.41772258310682,53.159984350257616],[-127.41742997867237,53.15994751232178],[-127.41714260394052,53.15989940479658],[-127.41684501879696,53.159881675692326],[-127.41654662092785,53.15986787327537],[-127.4162473730737,53.159856886324626],[-127.41594921927364,53.15985036803046],[-127.41564982934692,53.15986291439481],[-127.41537487198228,53.15979336221077],[-127.41512685436528,53.15968931271795],[-127.41487809583867,53.159590865730394],[-127.4145953231044,53.15953989998123],[-127.41430354121759,53.15949968267209],[-127.41400734669031,53.15946736174043],[-127.41370945163597,53.15944066350742],[-127.41341257577379,53.1594161936064],[-127.41311512631783,53.159402371262104],[-127.41281506577387,53.159394747257586],[-127.41251678508388,53.15938430417382],[-127.41222002241653,53.159363191815395],[-127.41192728116202,53.1593224153392],[-127.4116363167279,53.15927826404539],[-127.411342207918,53.159252635350384],[-127.41104241012636,53.159252848101545],[-127.41074317229533,53.159269862774494],[-127.4104520793828,53.15930638605423],[-127.41017913088638,53.1593813584168],[-127.40991586392917,53.15946574458423],[-127.40963797721062,53.159532930133466],[-127.40935808968965,53.15959677697332],[-127.40907821630891,53.15966062297078],[-127.40879928961176,53.15972501285468],[-127.40852232845799,53.159792184716714],[-127.40829003088308,53.15990645542681],[-127.40820285897446,53.16007446537625],[-127.40816666567532,53.1602536307776],[-127.40810412233888,53.16042975673463],[-127.4080057622762,53.16059902019552],[-127.40788284979676,53.16076297249471],[-127.40774481744275,53.16092262198732],[-127.4075925603936,53.16107739318106],[-127.40743553773244,53.16122998854308],[-127.40726999908523,53.16137987888759],[-127.40708259053619,53.1615199433766],[-127.40689516576194,53.161660007736245],[-127.40671821694204,53.1618049855799],[-127.40656120341586,53.16195757954316],[-127.40640895707553,53.162112913696426],[-127.40626427673617,53.1622703989773],[-127.40613944226835,53.16243325139269],[-127.40607590221252,53.162607702357015],[-127.40607677108555,53.16277466443493],[-127.40606033924377,53.16295695590137],[-127.40606355002339,53.16313845818549],[-127.40596423140627,53.16330773091334],[-127.40584321011819,53.163472222992276],[-127.40572782950684,53.1636377595875],[-127.40564265832089,53.163809669985],[-127.40569351235195,53.163986679742145],[-127.40582717988737,53.164146461448425],[-127.40597935432989,53.16429874363765],[-127.40597974369844,53.16447971450796],[-127.40593127930471,53.16465679211709],[-127.40582722868389,53.16482500012557],[-127.40571469895809,53.16499162330089],[-127.40561160954596,53.165160384445926],[-127.4054934025093,53.16532539832985],[-127.40535627543085,53.165485033605535],[-127.40522578581943,53.165646831137856],[-127.40510663176234,53.16581185579993],[-127.40499407813306,53.165977922592695],[-127.40488910980417,53.16614669629094],[-127.40481053502413,53.166320203909734],[-127.40477241178456,53.16649827867685],[-127.40474742369399,53.16667730919093],[-127.40471119168342,53.16685591727983],[-127.4046476762791,53.16703148723084],[-127.40456154968861,53.16720340773471],[-127.40445279262688,53.167371105213185],[-127.40433172012771,53.16753503099022],[-127.4042182483947,53.167701672480526],[-127.40406215163192,53.16785480722096],[-127.40383732833035,53.1679700910213],[-127.40354127440138,53.16800049627744],[-127.40324267466153,53.16801020405202],[-127.40294396681817,53.16801710633084],[-127.40264993012296,53.16805140311183],[-127.40238848607673,53.16813630554585],[-127.40216762656796,53.16825827178695],[-127.40199823907855,53.16840651381779],[-127.40186394732733,53.16856779633099],[-127.40179192025911,53.16874122397882],[-127.40182866849943,53.168917281211804],[-127.40200280789567,53.16905361943825],[-127.40226500306171,53.16916089007165],[-127.40250926418896,53.16926445493324],[-127.40275172385236,53.169369726050085],[-127.4029923330789,53.16947613025883],[-127.40323388805491,53.169582531741376],[-127.4034607902594,53.1696991830207],[-127.40366662043365,53.16983009589155],[-127.4038521626637,53.169971334528135],[-127.4040127371298,53.17012239869885],[-127.40413719497786,53.17028620882404],[-127.40424210441493,53.170454177324416],[-127.40434052413381,53.17062446393866],[-127.40441284144867,53.17079842196012],[-127.40452126658391,53.17107225104415],[-127.40463859847426,53.17110615387365],[-127.40490579733849,53.17113772240128],[-127.40513554401545,53.171170299639684],[-127.40542024829753,53.171333891774864],[-127.4055826324021,53.1714826821554],[-127.40563287557947,53.17155661098311],[-127.40570787457939,53.171557396940976],[-127.40605862471763,53.17173421551354],[-127.40637237234756,53.17195349118976],[-127.40678469910308,53.172432133103186],[-127.40741101621651,53.172891429686544],[-127.40788574965244,53.17324493772185],[-127.40802184807676,53.173307194244735],[-127.40822682164271,53.173439794897554],[-127.4084317404204,53.17357071044921],[-127.4086329876878,53.17370391056277],[-127.40882776392122,53.17383998439344],[-127.40901243040248,53.17398179025849],[-127.40919062199018,53.174125905168594],[-127.40935034273971,53.17427864877178],[-127.40946179242445,53.17444485835438],[-127.40953321147116,53.17461937973162],[-127.40958036611994,53.17479699595191],[-127.40960319995445,53.17497602230827],[-127.40960824475769,53.17515582522258],[-127.40957482913066,53.17533440060031],[-127.40950662547735,53.17550946345856],[-127.40941579066264,53.17568087798693],[-127.40929096255768,53.17584429691865],[-127.40916988455858,53.17600822688486],[-127.40906963726663,53.1761780676926],[-127.40900046727091,53.176352585813916],[-127.40895202042014,53.176530219114966],[-127.40890732078222,53.1767078077858],[-127.4088691904333,53.176885883040526],[-127.40882450857085,53.17706402724934],[-127.40875722874578,53.17723908741378],[-127.40868335982465,53.17741309633073],[-127.40859346200895,53.177584498815044],[-127.40851015175511,53.17775694345613],[-127.4083672996142,53.17791440767105],[-127.40816070998389,53.17804349380137],[-127.40790419062972,53.17813731367331],[-127.4076525113917,53.17823555787618],[-127.40742960990387,53.17835363046914],[-127.40724403785835,53.17849479180974],[-127.40707557540514,53.178643593795286],[-127.40689189358199,53.17878529685875],[-127.4067101063902,53.17892808874925],[-127.4065368885663,53.179074705163316],[-127.40638261369706,53.17922726415087],[-127.40630307251845,53.17940021799693],[-127.40629218284687,53.179580209700504],[-127.40629066251635,53.179760081148395],[-127.40616557195023,53.17991677559578],[-127.40588145770401,53.17997001176075],[-127.40559942528574,53.18002995514355],[-127.40537845699592,53.18015024185133],[-127.40521664064468,53.18030175906486],[-127.40509363792141,53.180464586358326],[-127.40499522300306,53.180634410207794],[-127.40489964422949,53.18080475612421],[-127.40484458636473,53.18098134487428],[-127.4047442764918,53.18115062613571],[-127.40462885836978,53.181316159885284],[-127.40455684312829,53.181490708355284],[-127.40451870515331,53.181668781568106],[-127.40450686249429,53.18184877512675],[-127.4045474524306,53.18202647035754],[-127.40463188956709,53.18219804244075],[-127.40480364600359,53.18234561065922],[-127.40498089549737,53.182489186850624],[-127.40511932992665,53.18264946767112],[-127.40515144513078,53.18282614260521],[-127.40510392300877,53.18300432724078],[-127.40512859768049,53.183182766860625],[-127.40537750583893,53.18345156497438],[-127.40546384176035,53.18362366969309],[-127.40552876383768,53.1837999551012],[-127.40557307475221,53.183977049881996],[-127.40548222081706,53.184148460426],[-127.40533748013696,53.1843064982836],[-127.40515664605502,53.18445040527873],[-127.4049681649995,53.18458991130223],[-127.40477207474396,53.18472615440614],[-127.40458071679862,53.18486401746104],[-127.40440750448082,53.18501175045281],[-127.40424386623665,53.185165528492576],[-127.4040658248131,53.185308835769064],[-127.40384655010737,53.18542461639471],[-127.40357936007013,53.1855090317032],[-127.40330637899173,53.1855884678059],[-127.40302942556899,53.185661226693085],[-127.4027659249706,53.18574391102048],[-127.40255729781668,53.18587020431039],[-127.40237557353066,53.186015793713445],[-127.40220613439078,53.18616459917213],[-127.40198215707069,53.18628043185753],[-127.40170012917316,53.18634148573662],[-127.40140381513379,53.186367960285814],[-127.40110465848174,53.186364776191944],[-127.40081014521758,53.186332400716616],[-127.40053144010096,53.18626734005834],[-127.40026899572275,53.18618415683243],[-127.40000025955808,53.1861088916374],[-127.39996715307481,53.18609976233962],[-127.39972883233602,53.18606559933904],[-127.39940174978366,53.1860683440395],[-127.39910317292974,53.18605449784856],[-127.39880381848128,53.18604570729018],[-127.39850601992069,53.18605539204381],[-127.39820775424127,53.186079084621696],[-127.39791555846806,53.186116707856236],[-127.39763148487718,53.186172728946524],[-127.39734848815617,53.186233219051346],[-127.39705825742301,53.186273622951006],[-127.39675873055661,53.18628780608552],[-127.39645983365779,53.18629245142664],[-127.39617057748124,53.186248796447934],[-127.39596561661212,53.18611729601752],[-127.39575607148711,53.185988655254384],[-127.39558156856758,53.18584279215629],[-127.39544412275325,53.18568304493962],[-127.39528168285914,53.18553312163823],[-127.3950694530455,53.18540842893536],[-127.39479611192667,53.185335447519265],[-127.39452278674436,53.1852624652929],[-127.39426477665775,53.18517081667839],[-127.39403048604264,53.185059273280146],[-127.39389307054375,53.18490064454054],[-127.39376305705107,53.184738566718394],[-127.39357668675947,53.184601805197836],[-127.39331688207585,53.18451240791563],[-127.39305704190029,53.184421898851696],[-127.39282005052264,53.18431374667761],[-127.39262247712895,53.18417823604476],[-127.39242401229352,53.184043856171485],[-127.39222738928434,53.18390888953409],[-127.39204182474325,53.18376763375422],[-127.39185071635092,53.18362924883425],[-127.39163477652875,53.183505158467504],[-127.391411488877,53.183385636458056],[-127.39119462202801,53.18326155619425],[-127.39097408517456,53.18314031567183],[-127.39077377490318,53.1830065195364],[-127.3905633346872,53.18287843606758],[-127.39034270975772,53.18275439839835],[-127.39010758692746,53.18264509834938],[-127.38982634327387,53.18258733105114],[-127.38952920847247,53.18255944104859],[-127.38923558298808,53.182524220735885],[-127.38904363340362,53.18238808244061],[-127.38887840994893,53.182238174190225],[-127.38872337394207,53.182084228614734],[-127.3885572235728,53.18193433975352],[-127.38841527140382,53.1817791197544],[-127.38833643093061,53.18160466525121],[-127.38822782745281,53.18143729218777],[-127.38807094095195,53.18128392326611],[-127.38789368039727,53.1811380813328],[-127.3877034866913,53.1809979937143],[-127.38749133898405,53.180874416260885],[-127.38723882746625,53.180777640991884],[-127.3869780752157,53.180686564730465],[-127.38674384684812,53.18057556225372],[-127.38652513760987,53.18045205993951],[-127.38631841601364,53.18032224908642],[-127.38614580276742,53.18017466478403],[-127.3859686086813,53.18003050462278],[-127.3857876860748,53.17988694365315],[-127.38564287732979,53.17973006840079],[-127.38553523378681,53.17956268164594],[-127.38548431357475,53.17943889046594],[-127.38534412991896,53.179222568738275],[-127.38527280286624,53.17904803321939],[-127.38510676816762,53.178900935226565],[-127.38482037412525,53.17885665481934],[-127.38452183475172,53.17884221621156],[-127.3842265303673,53.17881205058809],[-127.38395150502973,53.1787429908844],[-127.38369355729698,53.178651309957345],[-127.38344199401195,53.178553959832676],[-127.38318856115527,53.178457186840475],[-127.38291539180275,53.17838697351532],[-127.38262094798633,53.178354552674215],[-127.3823216116835,53.178344044464865],[-127.38202716069327,53.17836877299504],[-127.38174026316152,53.17842366892558],[-127.38145006765271,53.1784634700071],[-127.38115133747615,53.17847200200925],[-127.38071559921123,53.17841769178157],[-127.38041777451932,53.17839651092813],[-127.38012022639856,53.178412305985795],[-127.37983015744365,53.17845602819652],[-127.37954807982575,53.17851534501594],[-127.3792630701035,53.178570768716305],[-127.37897600348094,53.17862062162969],[-127.37868495096481,53.178663231852546],[-127.37839182309807,53.17869969771904],[-127.37809368834827,53.17869756485159],[-127.37780981148367,53.17864371766074],[-127.37753474286374,53.178572958302496],[-127.37727320840011,53.178485796654066],[-127.37699548416454,53.1784195493539],[-127.37671151929922,53.17836289459761],[-127.37642754049465,53.1783062482943],[-127.37614357715,53.17824959217273],[-127.37586227250343,53.178188431044326],[-127.3755827694349,53.17812499815857],[-127.37529875732841,53.178067228962966],[-127.37502192862026,53.177999281301844],[-127.37474443128932,53.177968885381766],[-127.37443860474895,53.17793153822874],[-127.3741402753834,53.17792322994464],[-127.37384111110137,53.17791830136468],[-127.37354260013313,53.17790439068086],[-127.37324385094712,53.17791178238599],[-127.37294490464072,53.17791356365454],[-127.37262796420848,53.17790939394267],[-127.37234786284803,53.17794289683796],[-127.37205031490667,53.1779586716233],[-127.37175163770749,53.1779682999225],[-127.37145316338093,53.17795550415163],[-127.37115541917937,53.17793654035835],[-127.37086271321668,53.17789903207435],[-127.37058700359799,53.177836664178194],[-127.37029570411424,53.177785126244686],[-127.37002694782154,53.17770587655895],[-127.36977631448693,53.177607357461426],[-127.36953117716493,53.177504856656974],[-127.36925883933445,53.17743068489429],[-127.3689963428987,53.17737096652526],[-127.36870108045716,53.17731219111959],[-127.36843462597388,53.17721721390325],[-127.3681524461221,53.17715716534934],[-127.3678571831333,53.17712751449063],[-127.36755831483802,53.17713153148567],[-127.36726195036523,53.17715456003614],[-127.36696880516006,53.17719044204789],[-127.36667775039459,53.17723302279332],[-127.36639366218022,53.1772884137929],[-127.36611260821152,53.17735048372117],[-127.36583056988961,53.17741088790984],[-127.36554951457084,53.177472965459096],[-127.36524747387837,53.17749493378667],[-127.36498345227406,53.17744587433767],[-127.36478785574596,53.17730973060502],[-127.36461167263442,53.17716496281407],[-127.36439490126608,53.17704083324081],[-127.36415250838209,53.176935492821016],[-127.36389643439331,53.17684207130502],[-127.36362230906703,53.176770148503],[-127.36335086146077,53.176694267665894],[-127.36306872839451,53.17663532716401],[-127.36277950054894,53.17658935005179],[-127.36250894606165,53.17651178061374],[-127.3622465616475,53.17642570760082],[-127.36197604523839,53.176349257121736],[-127.36168858620884,53.1762998952335],[-127.36139253060192,53.17627416405415],[-127.36109895429432,53.17623831825676],[-127.36081326278035,53.176185572149315],[-127.36053554339689,53.17611816598306],[-127.36025338208319,53.176058098571275],[-127.35997034888894,53.17600027273942],[-127.35981851423034,53.17585466248254],[-127.35974358625772,53.17568126554194],[-127.35963045196203,53.1755144750513],[-127.35948761107338,53.175356990326335],[-127.35926263757173,53.17523911346348],[-127.35902208744037,53.175132056169964],[-127.35876423386574,53.175040885341964],[-127.35851819370966,53.17493837243577],[-127.35826945947817,53.174839251726176],[-127.35801159119066,53.1747475146713],[-127.35774651686121,53.17466483344611],[-127.3574715045368,53.174593462590686],[-127.35718400811407,53.17462982055548],[-127.35698093912308,53.17475653444362],[-127.35685030785072,53.17492051817042],[-127.35674555636112,53.17510269054829],[-127.3566950000384,53.17527976840218],[-127.35666418204246,53.17545885227927],[-127.3566324165732,53.175637391167825],[-127.35658375074794,53.17581500306502],[-127.35650683379583,53.17598845620018],[-127.35641483608542,53.176159285016105],[-127.35632472926169,53.17633064789197],[-127.35625066445176,53.17650518871419],[-127.35618598912133,53.17668074251829],[-127.35612320208868,53.17685627463717],[-127.35602365154728,53.177025504156184],[-127.3559702713356,53.17720260482937],[-127.35590748263392,53.177378136783986],[-127.35586068563903,53.17755572675766],[-127.35582329355793,53.17773432959703],[-127.35575955901687,53.17790987223657],[-127.35567226725222,53.17808176692777],[-127.35555857536683,53.17824835182245],[-127.35543537258036,53.17841112785389],[-127.35539986995417,53.17859027359861],[-127.35534930354677,53.17876734158026],[-127.35529404157393,53.178943907447135],[-127.35525288018955,53.17912199725694],[-127.35520324201205,53.179299054486975],[-127.35513669909787,53.17947462872638],[-127.35507483305538,53.179650149385495],[-127.35502144584888,53.179827258339536],[-127.35497839039434,53.18000480484002],[-127.35495225416737,53.180183834117074],[-127.35494958636866,53.180363724396614],[-127.35495346979056,53.180543530732926],[-127.35495547951697,53.180723367455926],[-127.35494719242848,53.18090387779354],[-127.35491637793177,53.181082960496326],[-127.3548092447251,53.18125003400937],[-127.35462630613601,53.18139164513379],[-127.35438614044448,53.18150252492299],[-127.35422404688117,53.18165117633726],[-127.35410281067172,53.18181728979712],[-127.35399479677032,53.18198605789],[-127.35389717141994,53.1821575040863],[-127.35382960236207,53.18233084775296],[-127.35383717577162,53.18250893529119],[-127.35390963116322,53.18269356040821],[-127.35386558494216,53.18286944106307],[-127.3538239450462,53.183003823318394],[-127.35383964491227,53.18323056810192],[-127.35377118296377,53.18340559822429],[-127.35378969664059,53.18357404005438],[-127.35383235904969,53.18373547329271],[-127.3538370986274,53.18394217264775],[-127.35387351435023,53.184113206761566],[-127.3537970191269,53.18430065513606],[-127.35383552184133,53.18444925355865],[-127.35383680764974,53.18457755097428],[-127.35378332921401,53.18483981572123],[-127.35378345996466,53.18501967346908],[-127.35381541622618,53.18519803783975],[-127.35384551660218,53.18537698818075],[-127.35391672496343,53.185551550972406],[-127.35408924463204,53.185698617060915],[-127.35425434303885,53.185848564754316],[-127.3543683747463,53.18601367285282],[-127.35436097480651,53.18619248707849],[-127.35424820367231,53.186359623921255],[-127.35413259187868,53.18652567252089],[-127.35400846571304,53.18668957714516],[-127.3539248614447,53.18686030669388],[-127.35391936962907,53.187040219562725],[-127.35393449539482,53.18721990568355],[-127.35395336962567,53.187399539969505],[-127.35396662134464,53.18757924747816],[-127.35396298615794,53.187758583243145],[-127.35395843905295,53.187938485227],[-127.35395387720138,53.18811839632606],[-127.35395118658747,53.188297721239124],[-127.35395224745785,53.18847755906073],[-127.35395987640752,53.188657330746054],[-127.35396750513516,53.188837093451916],[-127.353972330137,53.189016897156485],[-127.3539733911153,53.18919673490796],[-127.35398851788153,53.189376420812145],[-127.35399802126778,53.18955616201857],[-127.35405895329313,53.18973139770394],[-127.35412363774611,53.189907155223004],[-127.35416591599959,53.19008540107794],[-127.35423804525487,53.1902593880327],[-127.35433259393146,53.19043032160036],[-127.3544624557551,53.190591877611],[-127.35462387681743,53.19074299622901],[-127.35479087127125,53.190892921327595],[-127.35501957493489,53.19100796683631],[-127.35527932045437,53.19109688322735],[-127.35554907920984,53.191176163954125],[-127.35582506873183,53.19124527850405],[-127.35610559450525,53.19130986709897],[-127.35638699374913,53.19137219489539],[-127.35666748218303,53.19143509723905],[-127.35694617194433,53.19150082548232],[-127.357217613069,53.19157391547111],[-127.35740778930105,53.191715171407246],[-127.35745074348489,53.19188500842629],[-127.35742835941423,53.19206399413273],[-127.35746969115637,53.192241693820584],[-127.3575232183268,53.19241981848948],[-127.35757113703613,53.19259799843652],[-127.3576237531419,53.19277668928862],[-127.35771916086954,53.19294480434677],[-127.3578610919461,53.1931017449266],[-127.35802350018997,53.193253959261554],[-127.35818776633745,53.19340559626117],[-127.3583362361085,53.193561896522],[-127.35845310579073,53.19372640310103],[-127.35854953884889,53.193897311656386],[-127.35864131151978,53.19406882939035],[-127.35874518730759,53.19423740226981],[-127.35887323932766,53.194400103750205],[-127.35903379971268,53.194552902665606],[-127.35918596890563,53.19470691823178],[-127.35926373246679,53.1948802725954],[-127.35928075838616,53.19505993576077],[-127.3592415084714,53.1952391151025],[-127.35924817714285,53.19541721171978],[-127.35931105318039,53.19559410754947],[-127.3593252747787,53.19577379385919],[-127.35934883708312,53.19595281715565],[-127.35939780563325,53.19613435483191],[-127.35948206963596,53.19630539319287],[-127.3596839276402,53.196429702605016],[-127.35991185589788,53.19654867425153],[-127.36008447728443,53.19669685090506],[-127.36021903860694,53.19685722599073],[-127.36034246091877,53.197021099553446],[-127.36045751212613,53.19718730132464],[-127.36056606431144,53.19735526298074],[-127.36066715436984,53.197524430825865],[-127.36075521213284,53.197696554219156],[-127.3608255756173,53.19787223358519],[-127.36087253376952,53.198049311317455],[-127.36088210440231,53.198230171300004],[-127.36084867385637,53.1983863165651],[-127.36074417009358,53.198577460488],[-127.36062860432035,53.19874519010658],[-127.3605375036703,53.19891600934038],[-127.36048507780612,53.19909366366401],[-127.36046836329918,53.1992737048283],[-127.36049009070967,53.19945331348359],[-127.36055949321634,53.19962844808857],[-127.36067547942092,53.19979408295886],[-127.36082496178668,53.19995148887934],[-127.36088184882439,53.200000141106514],[-127.36114055148657,53.200199994729616],[-127.36135464823654,53.2003252812756],[-127.3616062901625,53.20042267716725],[-127.36184788165194,53.20052804111092],[-127.36207761945184,53.20064361713681],[-127.36231741064846,53.20075124200316],[-127.36252696327651,53.20088106105143],[-127.36261028334069,53.201050987277185],[-127.36261609434082,53.20123133435168],[-127.36255808564515,53.201410174230894],[-127.36263476520256,53.201577944573025],[-127.36279263661447,53.20173356617474],[-127.36300853085311,53.201856032123764],[-127.36325199077594,53.20196080698883],[-127.36344492725357,53.20209809492849],[-127.36357394793117,53.20226021519995],[-127.36363681611336,53.202435987914875],[-127.36365105839072,53.20261567304361],[-127.36364183800936,53.20279507239041],[-127.36362324256466,53.20297457961865],[-127.36360277195718,53.2031541084062],[-127.36358510619526,53.20333360489051],[-127.36356745528353,53.20351310118219],[-127.36354321620523,53.20369211746282],[-127.36351522655913,53.2038711679162],[-127.36349098705453,53.2040501841517],[-127.36347426547046,53.204229669657934],[-127.36345941880514,53.20440913356727],[-127.36344550204791,53.20458858675539],[-127.36342972509651,53.204768061328636],[-127.36341677105216,53.2049480592062],[-127.363400978844,53.205127533913675],[-127.36335793281106,53.2053050810336],[-127.36326684405505,53.20547590159117],[-127.36315971815583,53.20564410062234],[-127.36308843540202,53.20581861068306],[-127.36304633532855,53.205996702526626],[-127.36302961108758,53.20617618778272],[-127.36303260145002,53.206356011008054],[-127.3630515049574,53.206535086389074],[-127.36310037512358,53.20671269644516],[-127.36323210547037,53.20687142392271],[-127.36341213685638,53.207015027953375],[-127.36351790572776,53.20718301846896],[-127.3635752062577,53.20735996651671],[-127.3636119014872,53.2075382811952],[-127.36363082589463,53.20771791197175],[-127.36364317679153,53.20789706257075],[-127.36365746026804,53.20807843207112],[-127.363603853159,53.20824825645946],[-127.36341048771546,53.20838943329956],[-127.3632872784579,53.20855333484138],[-127.36313709564763,53.208695699718334],[-127.36284430598411,53.20874949352457],[-127.3625514251861,53.20880048171623],[-127.36239244690164,53.20893174094168],[-127.36237775627163,53.209116240518],[-127.36234132713955,53.20929539606838],[-127.36236201394095,53.20947164482923],[-127.36247808849453,53.20963896178537],[-127.36255955350988,53.2098094735447],[-127.3625644532495,53.209990386070594],[-127.36260019814773,53.21016814694433],[-127.36268361220478,53.21034087733181],[-127.36276982953403,53.21051301960851],[-127.36285699244739,53.210685141975226],[-127.36294133583753,53.21085730566296],[-127.3630126243684,53.21103185162897],[-127.36306337493087,53.2112094397025],[-127.36309165759035,53.21138840675719],[-127.36311336916361,53.211567449375245],[-127.3631360443179,53.21174704566132],[-127.36308916741534,53.21192239487528],[-127.3628966021236,53.212059634681694],[-127.36263787952241,53.2121522559981],[-127.36236345168999,53.21222376632668],[-127.36207926390298,53.21228306184353],[-127.3617854559754,53.21230605296684],[-127.361493713704,53.2123060433312],[-127.36122142581819,53.21238537042361],[-127.36094602781087,53.2124557679843],[-127.36067747377498,53.21253505091814],[-127.36044184313006,53.212645887207806],[-127.36024546116708,53.212781489950174],[-127.36007955344937,53.212931310087534],[-127.35995535494727,53.213094663014694],[-127.359884994505,53.213269715377905],[-127.35989540178561,53.21344721159399],[-127.36003657234296,53.21360751020925],[-127.36020830069533,53.2137551405739],[-127.36039204787573,53.21389702088981],[-127.36058410245661,53.21403488802134],[-127.36077985534074,53.21417103600145],[-127.36097559131076,53.21430661908739],[-127.36116672228832,53.214445051699386],[-127.36135140622623,53.21458692875272],[-127.3615333035204,53.214729393340996],[-127.36171148996218,53.214873576670136],[-127.36187026281979,53.215026391612156],[-127.3619900113906,53.21519086056521],[-127.36206598177036,53.215364797126306],[-127.36211391272276,53.215542417614145],[-127.36214780304864,53.215720764213145],[-127.36216484932713,53.21590041599424],[-127.3621612646706,53.21608031384054],[-127.36215673150106,53.216259657801245],[-127.36216345476043,53.21643942817712],[-127.36217112366955,53.216619196632124],[-127.36216473277617,53.21679911769699],[-127.36214612490056,53.21697862334822],[-127.3621199964572,53.217157659604325],[-127.36206844884491,53.2173341820425],[-127.36199049425974,53.21750596083145],[-127.3619520573327,53.217681776710165],[-127.36186758360465,53.21785531562676],[-127.36182071256715,53.21803121936579],[-127.36182373471298,53.21821216164044],[-127.36178911969691,53.218390165652714],[-127.36173951416698,53.21856835082638],[-127.3617105255971,53.21874629013231],[-127.36172948331641,53.21892704925599],[-127.36180921076452,53.21910094253573],[-127.3619577298821,53.21925555138778],[-127.362167352036,53.2193842494569],[-127.36237881828457,53.219512370161134],[-127.3625468631455,53.21966115098833],[-127.36270102945699,53.21981570296383],[-127.36289592457864,53.21995353365296],[-127.36308613908297,53.2200914178532],[-127.36317977233055,53.220260103220326],[-127.36324089504755,53.22043869176402],[-127.36332154403044,53.220612017588714],[-127.36347096532948,53.22076493779299],[-127.36366592139996,53.22090444290013],[-127.3638284032862,53.2210549712556],[-127.36395471323077,53.221218241913135],[-127.3640633410178,53.22138619820427],[-127.36417304468283,53.221558624294985],[-127.36424244465223,53.221732078919146],[-127.36412932857154,53.22189026073744],[-127.36395405580419,53.22204131366349],[-127.3637480271552,53.222169743964656],[-127.36348438494831,53.22225738445215],[-127.36319589171576,53.222301598907876],[-127.3628984976807,53.22233191234215],[-127.3626080584395,53.2223744713538],[-127.36232675345829,53.2224382155059],[-127.36205423958197,53.22251250786428],[-127.3617846751155,53.22259123901483],[-127.36151802448522,53.22267330674403],[-127.36125814415982,53.222761454761766],[-127.36100800284184,53.22286069607145],[-127.36075110376787,53.222953846794915],[-127.3604863786712,53.22303756640653],[-127.36021973771211,53.223119631023856],[-127.35995501052489,53.223203349441555],[-127.35969129981197,53.223289296731195],[-127.35943241124382,53.223379105626044],[-127.35918707047215,53.22348221438962],[-127.35892626772359,53.22357092352351],[-127.35866255262593,53.223656868508016],[-127.35842960722344,53.22376599222163],[-127.35817362771333,53.22385913561345],[-127.35789125273483,53.2239195195554],[-127.3576019229134,53.223967656215805],[-127.35731044656421,53.22400740799739],[-127.35701271262987,53.22402762523432],[-127.35671710604139,53.224055661346796],[-127.35643474267701,53.224116041641565],[-127.35615927838764,53.22418699219845],[-127.35588867491838,53.2242634803763],[-127.35561812169242,53.22434109687943],[-127.35534556846416,53.224415364951504],[-127.3550671681269,53.224482420018646],[-127.35478278306309,53.224538901913974],[-127.35449440875203,53.22458757576682],[-127.35420499870924,53.22463346380697],[-127.35391249761044,53.22467098666934],[-127.35361904743215,53.224707954875235],[-127.3533316550527,53.22475829998623],[-127.35305024850098,53.224819781731625],[-127.3527767394082,53.22489349890205],[-127.35249926233207,53.22496053730373],[-127.3522025007149,53.22498185181989],[-127.35191377383616,53.22493191355048],[-127.35162335106237,53.22488760571405],[-127.3513261590542,53.22486634145131],[-127.35102809346715,53.22484732753391],[-127.35073427795876,53.224814252891974],[-127.35043592675542,53.22481541092451],[-127.35017515123687,53.2249057854608],[-127.34989667093882,53.22497115278384],[-127.34960827031188,53.225019259142314],[-127.34931483168955,53.2250567722859],[-127.34901915931302,53.22508311343274],[-127.34871978917766,53.22508203759006],[-127.34842331032243,53.22505346978759],[-127.34812613676597,53.225032762064814],[-127.34782805344143,53.22501317554423],[-127.34752936161618,53.225003689238505],[-127.3472300247993,53.22500316506211],[-127.34692988557195,53.22500714046872],[-127.34663085494037,53.22501669637782],[-127.34633298404778,53.22503297070837],[-127.34603639718547,53.22505987058331],[-127.34574695675317,53.2251051734047],[-127.34546846829424,53.22517053031926],[-127.34522506306085,53.225276384543264],[-127.34497771136688,53.22537668020593],[-127.3447139386853,53.22546202951876],[-127.34444910986674,53.22554347271777],[-127.34420184435079,53.22543982324682],[-127.3439053869352,53.225412373442545],[-127.34360901584829,53.22538715408401],[-127.34331178875917,53.22536474957779],[-127.34301279065943,53.225375425480195],[-127.34273038097257,53.22543520853152],[-127.34246465650487,53.22551834272848],[-127.34219793198031,53.225599802311244],[-127.3419125026483,53.22565345895544],[-127.34161358799183,53.22566636251586],[-127.34131403616749,53.22565966717437],[-127.34101469506781,53.225659136266906],[-127.34071804988635,53.22568490283822],[-127.34042022515642,53.22570283806707],[-127.34012573657695,53.225736978494126],[-127.33982903718375,53.22576106708026],[-127.33954365686817,53.22581639377668],[-127.3392542045821,53.22586168969001],[-127.3389688052329,53.225916459400324],[-127.33867833229293,53.22595895953349],[-127.33839294913517,53.22601428345436],[-127.33811154796443,53.22607684985983],[-127.3378330234286,53.22614162424417],[-127.33755653089035,53.22621085727854],[-127.33728886201953,53.2262923162861],[-127.33703764500184,53.22638984173317],[-127.33679803460458,53.226497876590635],[-127.33656321189936,53.2266092186463],[-127.33632551308727,53.226718907314556],[-127.33609165129603,53.226830802325765],[-127.33585009164796,53.226937171833576],[-127.3356046877196,53.22704023142528],[-127.33532916913695,53.227111124509285],[-127.33503456330601,53.227142456512524],[-127.33473431916252,53.22714359615776],[-127.3344448269289,53.227098671086864],[-127.33418669182703,53.22700689369476],[-127.33394133652789,53.22690375739251],[-127.33368958570584,53.226806304301206],[-127.3334224093047,53.2267252678144],[-127.33314892255275,53.22665214561097],[-127.33290997171139,53.22654389715093],[-127.33269121450549,53.22642085393838],[-127.3325362386435,53.226267394113236],[-127.33240912226482,53.22610466545431],[-127.33224762807566,53.225952963834395],[-127.33201053922733,53.22584357210719],[-127.33178167442134,53.225727364167035],[-127.33156383744333,53.22560374380539],[-127.33132491437145,53.22549605665278],[-127.33105768023027,53.22541277445471],[-127.33076188790456,53.22543570061333],[-127.33046735840817,53.22546870585293],[-127.33016821503541,53.225474859747024],[-127.32987264151035,53.22544512391903],[-127.32960458577034,53.22536520937259],[-127.32939597862598,53.22523644354153],[-127.32920488763034,53.22509795171443],[-127.32901842520025,53.2249571755385],[-127.32884306128842,53.22481122766442],[-127.32868810529847,53.22465776267836],[-127.32854426569227,53.22449969963441],[-127.32841254026457,53.2243386947814],[-127.32829380916725,53.22417361773624],[-127.3281927849445,53.224004424698705],[-127.32811881191488,53.223829890459506],[-127.3280607244806,53.22365349287151],[-127.3280026375311,53.22347709523849],[-127.32793240275386,53.223302510008914],[-127.32787806863983,53.22312607025233],[-127.32781905273033,53.22294968290289],[-127.32774135148327,53.22277631069015],[-127.32763752648563,53.22260714848745],[-127.32749927251015,53.22244733624324],[-127.32729073880007,53.22232024227684],[-127.32705270254709,53.22220973084466],[-127.32678740862482,53.22212753804152],[-127.32651932959301,53.22204649638033],[-127.32626394068207,53.221950744856905],[-127.32607852006635,53.221812749347734],[-127.3259598027554,53.22164711397291],[-127.32586717510908,53.221476148613945],[-127.32578203111947,53.22130396994776],[-127.32567728987048,53.22113538103462],[-127.32554555313422,53.220973808311854],[-127.32538785237723,53.220821499209976],[-127.32523383653295,53.22066746337727],[-127.32509186381697,53.220508245708274],[-127.32504413560228,53.220332295476624],[-127.32503099656219,53.220152587906966],[-127.32501973368508,53.21997286831124],[-127.32500284333562,53.21979320264158],[-127.32497001941026,53.21961427983013],[-127.32489513940548,53.21944030934356],[-127.32476993101385,53.21927698637294],[-127.32457800453794,53.21914018178209],[-127.32437769881595,53.219005155834985],[-127.3242618546284,53.21884116293104],[-127.32419257095547,53.218666008889414],[-127.3241345069984,53.21848960889344],[-127.32408485925727,53.21831255903943],[-127.32404176666415,53.218134871162164],[-127.32400521173638,53.21795598966454],[-127.32397241086092,53.21777762200599],[-127.32394335919771,53.217598656646075],[-127.32391429277523,53.21741969142958],[-127.3238992840738,53.21724001336825],[-127.32390587028222,53.21706064987189],[-127.32392369523207,53.21688116081721],[-127.32393871409444,53.216701703086564],[-127.3239387102058,53.216521848385526],[-127.32392839824631,53.21634211777884],[-127.32391338958685,53.216162430654734],[-127.3238965231414,53.21598332902884],[-127.32388056973011,53.21580366138692],[-127.32389558839277,53.215624203558605],[-127.32389558468768,53.21544434875419],[-127.32390969056041,53.21526546584771],[-127.32394725063794,53.21508687671528],[-127.32398575806951,53.214908832766575],[-127.32401299214986,53.21472980312862],[-127.32401390080777,53.21454938224054],[-127.32396239739953,53.21437234378715],[-127.32384932081105,53.21420664295337],[-127.32368234400798,53.21405667612879],[-127.32345451353744,53.21394099660094],[-127.32318565034055,53.21386276234732],[-127.32290953123542,53.213792443468826],[-127.3226388469248,53.2137159046822],[-127.32236541055657,53.21364108132064],[-127.32210918898386,53.21354700674364],[-127.3219377172585,53.21340324626975],[-127.32183858465365,53.21323290575437],[-127.32176839262509,53.21305832488223],[-127.3217159552046,53.21288129585416],[-127.32166725175327,53.21270366934854],[-127.32161108196104,53.212527246639624],[-127.32153622832708,53.212353273373864],[-127.32143152617908,53.21218467990508],[-127.32129892098943,53.21202367663234],[-127.32114682486103,53.2118690491222],[-127.32098451288856,53.211717905950096],[-127.32081941619049,53.2115679051938],[-127.32065805174233,53.21141675101544],[-127.32050687297894,53.211261556660936],[-127.32035846591046,53.211105210666894],[-127.32020823454815,53.21095000537438],[-127.32006168741599,53.210793073521614],[-127.3199300196415,53.210631502461744],[-127.31982532788116,53.210462898457536],[-127.3197542185925,53.2102883264939],[-127.31971020720573,53.2101106468074],[-127.31968492950419,53.20993163790149],[-127.31967181647174,53.20975192874084],[-127.31966525991993,53.20957215551189],[-127.31965964829722,53.209392362778416],[-127.31964937360496,53.209213186722494],[-127.31962781493002,53.20903358051021],[-127.3195884834613,53.20885528379768],[-127.31954915260394,53.20867699601651],[-127.31953418289248,53.20849787217122],[-127.31954453676639,53.208318466315426],[-127.31956425179114,53.20813895619586],[-127.3195839816504,53.20795944588873],[-127.31959526529637,53.20778002961881],[-127.31960371088982,53.20760008016968],[-127.31960654604408,53.20742020214677],[-127.31959155891519,53.20724051361886],[-127.31952888691183,53.207065847328415],[-127.31941488218297,53.206899031796674],[-127.31929903811823,53.20673335719657],[-127.31919623370244,53.206564731406225],[-127.31909435786005,53.206395539382044],[-127.318993412914,53.206226336901636],[-127.31889152369705,53.206057144839484],[-127.31878872282951,53.20588852759591],[-127.31869058292243,53.2057187288526],[-127.3185859085449,53.20555013227125],[-127.31845798038142,53.2053879529848],[-127.31830868876209,53.205232169890074],[-127.31814826991979,53.20508043686358],[-127.31797302594607,53.20493447136452],[-127.3177710033137,53.204801694444825],[-127.31754229151299,53.20468545771454],[-127.31729072805786,53.204588524258725],[-127.31702013013165,53.20451252787258],[-127.31673962897897,53.20444953194081],[-127.31645644803024,53.20439104739658],[-127.31617149738106,53.2043359435432],[-127.31588477697002,53.20428422036823],[-127.3155971470721,53.20423362717171],[-127.31530607901598,53.20419260075449],[-127.31501231319687,53.20415552107208],[-127.31471528532697,53.204134164802284],[-127.31441744452957,53.20414698962227],[-127.31412406747353,53.20418274028865],[-127.31383280862481,53.204226310702424],[-127.3135404301557,53.20426428997126],[-127.313249065779,53.20430449840554],[-127.3129647928525,53.20436143603209],[-127.3126863903602,53.20442671665903],[-127.31240999864198,53.20449589184735],[-127.31213753224168,53.204571181540274],[-127.31187285855569,53.204655357805336],[-127.31162663243526,53.204760055240214],[-127.31147088958481,53.204909693862795],[-127.31141922998383,53.20508843558226],[-127.31129851234353,53.20524832715824],[-127.31108869040415,53.20537783770413],[-127.31085202466218,53.20548858626052],[-127.31059116461094,53.205575514269626],[-127.31031479666925,53.20564580470938],[-127.31002947908144,53.205699949732455],[-127.30974622660364,53.20576022985556],[-127.30952282003736,53.20587531136752],[-127.30933778284388,53.206017991531745],[-127.30914983731088,53.20615789762232],[-127.30896283562083,53.20629779296403],[-127.30877682965206,53.20643935335218],[-127.3085984124527,53.206584200271735],[-127.30847776667596,53.206746893778906],[-127.30839307790306,53.20691983098129],[-127.30839516684746,53.20695678651415],[-127.30842602060761,53.20713573599185],[-127.30843345938693,53.2073155087659],[-127.30841180480168,53.20749447324587],[-127.30841332311022,53.20766478209056],[-127.30842344582781,53.20784059872587],[-127.30841668920489,53.20801604592582],[-127.30837578711174,53.20820979016962],[-127.30838978179197,53.20838949045619],[-127.30839909563319,53.208569233444365],[-127.308405604411,53.20874901635217],[-127.30841116782138,53.20892880071683],[-127.30841298096314,53.20910863543761],[-127.30840916792923,53.20928852329795],[-127.30839596110664,53.20946795906152],[-127.30837241521469,53.20964695316083],[-127.30834418802624,53.20982598995684],[-127.30831879857458,53.210005560159445],[-127.30830184045574,53.21018503725284],[-127.30828393701537,53.21036452476147],[-127.3082500657004,53.21054306796969],[-127.30820685191821,53.2107228348444],[-127.30814854825012,53.210899971336744],[-127.30805808503551,53.21106848930693],[-127.30788919359138,53.21121826745343],[-127.30743601501655,53.211366144080635],[-127.3072884495666,53.21147814276547],[-127.30715782420322,53.21156138458944],[-127.30695473272098,53.21166728088651],[-127.306717172862,53.21175058092201],[-127.30643456059708,53.21180243669275],[-127.30616025853976,53.211850282709825],[-127.30541635500457,53.211970535485605],[-127.30506443544063,53.21202595726134],[-127.3040825288852,53.212245755193656],[-127.30369224543502,53.21266969411378],[-127.30256416663143,53.213260871262605],[-127.30200676063956,53.213589717086684],[-127.30159359495813,53.21378923252698],[-127.30111710864779,53.214034819740284],[-127.30054130759447,53.214437261205745],[-127.30024453948072,53.21485343809356],[-127.29971945772797,53.21513597501863],[-127.29927427964236,53.215363291086405],[-127.29921402186405,53.21553931416464],[-127.29916880303735,53.21571630185812],[-127.29906322006885,53.21588273664862],[-127.2989199178523,53.216042870345504],[-127.29874906620074,53.21619209121849],[-127.29853250818083,53.21631884570004],[-127.29828167388332,53.2164297316676],[-127.29816600268138,53.21648142365228],[-127.29809526094466,53.2165606373109],[-127.29803098744327,53.216728303906336],[-127.29802542587792,53.2169138121297],[-127.29799820086625,53.21709676067903],[-127.29791059105166,53.217268044375416],[-127.29779938957392,53.217435104091415],[-127.29767591903043,53.217600056900764],[-127.29754296389551,53.217761195932404],[-127.29738724349623,53.21791473114234],[-127.29731162722658,53.21798783902407],[-127.2972741111223,53.218080135054144],[-127.29727486508251,53.21816584467502],[-127.29731984346277,53.2182555614223],[-127.2974756265661,53.21841016894616],[-127.29757448569724,53.218482487460136],[-127.29761457898351,53.21856609004427],[-127.29765947105646,53.21874488711645],[-127.29773423774712,53.21891887485851],[-127.2978211381653,53.21909104437471],[-127.29787816277667,53.21926746737849],[-127.29791555366798,53.219446346444016],[-127.29785858911289,53.21960777403921],[-127.2977977352496,53.219795572682195],[-127.29761152934788,53.21993375399437],[-127.29738915180332,53.22005553159164],[-127.29716293299724,53.220173980165555],[-127.29695006936767,53.22030013498786],[-127.29678359860611,53.22043978427929],[-127.29664707100012,53.22057686466103],[-127.29644058478596,53.22072703612187],[-127.29620838811417,53.220865162282884],[-127.29604220448249,53.22101432750645],[-127.29589312557786,53.22117059354026],[-127.29575161762767,53.22132901770307],[-127.29562530441531,53.22149344310347],[-127.29547212724573,53.22163854781733],[-127.29525663355798,53.22177088665621],[-127.2950150174104,53.22187773780398],[-127.29475605179803,53.22196909023768],[-127.29449799821161,53.222059867371584],[-127.29423898105992,53.222150098654986],[-127.29397806763089,53.22223922950605],[-127.29373164348684,53.22234221298858],[-127.29350729736494,53.22246175430821],[-127.29335392103435,53.22260069972395],[-127.29325663510629,53.22270204588101],[-127.2932309298865,53.22278188535371],[-127.2932054302046,53.22286844587197],[-127.29321825942102,53.2229506707909],[-127.2932757800175,53.22305201326285],[-127.29337049664409,53.22311148953697],[-127.29341902018238,53.22319500130989],[-127.29341344810527,53.22328862350851],[-127.29334120445142,53.223380741008995],[-127.29323871030397,53.22343508084246],[-127.29310664951167,53.22347349963299],[-127.29295063270014,53.22349537133065],[-127.29265962179987,53.22349070124666],[-127.29237126338148,53.22348096354215],[-127.29217795559244,53.22348026503432],[-127.29208773325739,53.223505900563254],[-127.29203076049745,53.22354518496856],[-127.29197877191196,53.223624745817],[-127.29193810759666,53.223706433280576],[-127.29182833069632,53.22386002427049],[-127.29166972639628,53.22401246187883],[-127.2915319965311,53.22417252462699],[-127.29139424837317,53.224332022633035],[-127.29128489552158,53.224499610779326],[-127.29120762207424,53.22467301688599],[-127.29115767941468,53.22485060743456],[-127.29110489560401,53.22502710833668],[-127.29098986056417,53.22519308166338],[-127.29091449487896,53.22536758725973],[-127.29082209044837,53.22553724033541],[-127.29076440060494,53.22561462150005],[-127.29065499037247,53.22568809251122],[-127.29042187527756,53.22579763803706],[-127.2901773831251,53.22590338947174],[-127.28995775711502,53.2260245574656],[-127.28976110420341,53.226160606957926],[-127.28955680876474,53.226292248084306],[-127.28934485411509,53.22641893416083],[-127.28913670174221,53.226547263790884],[-127.28905628944361,53.226618167843576],[-127.28901693989582,53.22671272158512],[-127.28901958267338,53.22689142443605],[-127.28901570271928,53.227071874529074],[-127.28899394078945,53.22725083373264],[-127.28898816762835,53.22743074858261],[-127.28897506045813,53.22761633691822],[-127.28900909892349,53.227716815930435],[-127.2890988660386,53.22776794972399],[-127.28923110080356,53.22779620175981],[-127.28938690558218,53.22779731317416],[-127.2896903608671,53.22777832476312],[-127.28985079700429,53.227777699883895],[-127.28993032212848,53.22783117661744],[-127.28996485654048,53.22788682814537],[-127.29000827388019,53.22792557482015],[-127.2900501123586,53.22803605358382],[-127.29018024771182,53.22814893309801],[-127.29021386156491,53.22832785458248],[-127.29023997103813,53.22850685771405],[-127.29017382346838,53.22867622414219],[-127.29006760324717,53.22885498196606],[-127.29005698049757,53.22902934680743],[-127.29005871613458,53.229209170916484],[-127.29009138470893,53.22938810262457],[-127.29013062781104,53.229566962767066],[-127.29016985428328,53.22974526727404],[-127.29020159313286,53.22992420902787],[-127.29021553246756,53.230103900251954],[-127.29021837071112,53.23028932395149],[-127.29017876111807,53.2304673567832],[-127.2900540016128,53.230622793656046],[-127.28984319447062,53.23075674668056],[-127.28960643378016,53.230870820782144],[-127.28932897102963,53.23094274739312],[-127.28906790961683,53.23102962684085],[-127.28890066212305,53.231176559983666],[-127.28889473414888,53.23135142920052],[-127.28890042253069,53.231537933342416],[-127.28886268279817,53.231715954181055],[-127.28882776666346,53.23189450008373],[-127.28876744180714,53.2320705163034],[-127.28868733719416,53.23224395058238],[-127.28859776689424,53.23241524657367],[-127.28851482196252,53.23258815576953],[-127.28843943287016,53.23276265910872],[-127.28835553871978,53.23293501370841],[-127.28824329534683,53.2331015087785],[-127.28810175291781,53.23326104297776],[-127.28797532293025,53.23342377444881],[-127.28792530307544,53.23359912230749],[-127.28789888408339,53.23377926069642],[-127.28780930733365,53.23395055595297],[-127.28771786845242,53.23412187134184],[-127.28765755299781,53.234298451355606],[-127.28752824470916,53.23445952817201],[-127.28738855454385,53.234618485425614],[-127.28729878420464,53.234783059035486],[-127.28709972028139,53.2349342519402],[-127.28696004385696,53.235093764253556],[-127.28682413623291,53.23525379126499],[-127.28669203182997,53.23541546211894],[-127.28656465923342,53.23557820200034],[-127.28643353485381,53.23574154717573],[-127.2863071420351,53.2359059524293],[-127.2862137312207,53.23607449089323],[-127.28619479224814,53.23625398268289],[-127.28625181056788,53.236431530004495],[-127.2863788484469,53.236596547566265],[-127.28648974910766,53.23678640089814],[-127.2864982257223,53.23694149916036],[-127.2865185587,53.237116082695955],[-127.28649216561867,53.23729734060606],[-127.28650609161193,53.23747703156575],[-127.28654248776576,53.23765536714726],[-127.2865891957429,53.23783302607215],[-127.28659842334415,53.238012767952895],[-127.2865663148426,53.23819128197343],[-127.28648995999374,53.238365238051955],[-127.28637864065921,53.23853172061883],[-127.28624934891502,53.238693924810505],[-127.28612196473127,53.23885666393503],[-127.28600213928226,53.23902156200363],[-127.28588515227764,53.239186984934825],[-127.28576816462976,53.23935241669762],[-127.28564928222946,53.23951730411155],[-127.28552852223677,53.239682211735634],[-127.2854020631268,53.2398449399117],[-127.28528960031547,53.24000471040884],[-127.2851179115878,53.24016176996092],[-127.28496774480936,53.24031691075229],[-127.28481475221655,53.24047151719358],[-127.2846579541361,53.240624488313806],[-127.2845011720847,53.24077802377893],[-127.2843443717316,53.24093099446004],[-127.28418946385858,53.24108450020206],[-127.28403364115803,53.24123858037256],[-127.28388062492614,53.24139262993081],[-127.2837304832668,53.241548889222315],[-127.28357937559372,53.24170403821884],[-127.28343301740301,53.241860820884376],[-127.28330464978374,53.24202300238362],[-127.28320183144507,53.24219219523908],[-127.28311979113865,53.24236508953448],[-127.28305565709584,53.24254058688389],[-127.28300941265485,53.242718131712934],[-127.28300171794372,53.2428975005409],[-127.28301843865599,53.24307716100572],[-127.28302577565981,53.24325693193309],[-127.2830303047124,53.24343672425657],[-127.28301885627806,53.24361613362611],[-127.28297262765037,53.243794242904166],[-127.28286222608794,53.24396071146161],[-127.28273763790835,53.244123980692585],[-127.28261969519225,53.24428997475309],[-127.28250367744876,53.24445706838972],[-127.28238858972286,53.244624151832454],[-127.28226875020994,53.24478960123071],[-127.28214320921553,53.24495231526738],[-127.28200818285276,53.24511233482579],[-127.28186079280816,53.24526687620268],[-127.28169539165513,53.24541545356141],[-127.28151384118577,53.24555804671027],[-127.28132182267098,53.245696261551934],[-127.28112222536437,53.245831761072864],[-127.28092357486135,53.24596781475749],[-127.28072965875644,53.246105493279515],[-127.28055286960715,53.24625026552526],[-127.28042070682238,53.246411928456496],[-127.28027430558498,53.24656870699835],[-127.28013740474154,53.24672873542831],[-127.28003549143276,53.24689735930826],[-127.27997328257574,53.2470750746467],[-127.27998874057629,53.24724466386676],[-127.28014647628014,53.24739983593491],[-127.28026505236849,53.24756439473496],[-127.28040503606316,53.247722563878625],[-127.28052082286779,53.24788770830941],[-127.28064306899788,53.248048865504835],[-127.28067011508254,53.24822897899347],[-127.28070759459163,53.24841234140086],[-127.28079899978154,53.24857831353551],[-127.28101306933681,53.24870262178464],[-127.28127052850067,53.24880237403312],[-127.2815440347944,53.248874494864054],[-127.28182665336062,53.24893698760339],[-127.28208009871854,53.24896674382529],[-127.28228794175064,53.2490401374323],[-127.28228450970437,53.24914381917007],[-127.28226170995232,53.24922754968176],[-127.28209188330995,53.24938569500235],[-127.28186445078497,53.249501891405735],[-127.28160038320894,53.24958654358409],[-127.28132166794691,53.249652860154846],[-127.28103396903853,53.2497013535606],[-127.28074339310751,53.24974762729999],[-127.2804577397879,53.24980169985517],[-127.28017205151666,53.249854642596134],[-127.27989038857493,53.24991651440905],[-127.2796282423433,53.2500028176894],[-127.2793873883758,53.25011018974839],[-127.27916190631774,53.250229156608256],[-127.2789248378014,53.25033759843197],[-127.27868015802588,53.25044276918729],[-127.27849661372291,53.25058257268765],[-127.27834168310976,53.2507371901772],[-127.27814770280094,53.250873743970395],[-127.2779432519313,53.25100537233044],[-127.27773594056711,53.25113534585268],[-127.27751712945921,53.25125815492356],[-127.27732317618296,53.251395271731845],[-127.2772353625196,53.2515654170351],[-127.27719858639064,53.251746218023435],[-127.27721709539273,53.25192361793325],[-127.27730332024834,53.25210477977421],[-127.27744968421867,53.25225671598582],[-127.27772284862806,53.252316523542866],[-127.27800545274063,53.25237846983416],[-127.278195637721,53.25251984827541],[-127.27840968568526,53.25264304080331],[-127.278687912588,53.25271511741605],[-127.27892951123248,53.252817842540544],[-127.27910946854848,53.252962126642764],[-127.27925135989608,53.25312083205886],[-127.27936531391711,53.25328712651788],[-127.2794484727105,53.253459911427235],[-127.27950078308682,53.253636946365],[-127.27953342401659,53.25381532291763],[-127.27955294274491,53.253994952550194],[-127.27954994919325,53.25417483395124],[-127.27951872976904,53.25435333450474],[-127.27947529786043,53.25453140200225],[-127.27944409287588,53.25470990234083],[-127.27942699412459,53.254889371045024],[-127.27941554438364,53.25506934355065],[-127.27940595480212,53.2552487312306],[-127.27940294524528,53.25542860371077],[-127.2794065142567,53.25560841419118],[-127.27940631142991,53.25578770058718],[-127.27939956207311,53.25596761334781],[-127.27938998932207,53.2561475655031],[-127.27938508539525,53.25632690254536],[-127.27938865413508,53.256506703980676],[-127.27939410059979,53.256686494113836],[-127.27938452739109,53.25686643723988],[-127.27933544318512,53.257044009592],[-127.27919268602098,53.257197940394065],[-127.27893920583386,53.2572931210464],[-127.27869059495711,53.25739384231999],[-127.27848134316538,53.25752271678661],[-127.27833675659605,53.25767890723316],[-127.27824712248793,53.25785075751415],[-127.27818106720156,53.258026271032065],[-127.27814515292742,53.25820482135218],[-127.27814401528966,53.2583846732962],[-127.27814287584683,53.258563969462564],[-127.27812389249105,53.2587434578444],[-127.2781312113834,53.25892322759938],[-127.27818257672922,53.25910027280746],[-127.27826107288197,53.2592736730717],[-127.27837410807075,53.25943996902055],[-127.27853550491294,53.25959118586888],[-127.27873676889234,53.259725156003604],[-127.27895004255154,53.259852282164196],[-127.27914941469106,53.25998571622177],[-127.27930991877952,53.260138053210596],[-127.27942199727637,53.26030380269162],[-127.27947901959254,53.260481351029775],[-127.27954444832103,53.260657132368415],[-127.27974712530487,53.26080621711419],[-127.27993818350824,53.26094422162344],[-127.28015605132963,53.26106792554664],[-127.28041426028174,53.261159263303206],[-127.2806986674203,53.26121614624338],[-127.28099685776677,53.26123253188851],[-127.2813758523575,53.26124972942195],[-127.28152466614074,53.26129518418133],[-127.28157420758016,53.26138037361755],[-127.2815784398672,53.26151982860486],[-127.28157041625848,53.261719368446606],[-127.28163773326332,53.26189512823678],[-127.28169087781842,53.261975231851146],[-127.28182660175183,53.262022503946355],[-127.28211103347498,53.26207993907308],[-127.2824041248947,53.26211374893851],[-127.28270328573184,53.26213068461819],[-127.28300232782694,53.26214370347967],[-127.28329991782653,53.26217073935824],[-127.28356710291845,53.26224796223728],[-127.28382809953385,53.26233758620692],[-127.2841159867528,53.262385450248374],[-127.28441285227012,53.26241921434218],[-127.284704948401,53.26245078829051],[-127.28499482642192,53.26247118030634],[-127.28527635243225,53.26243339483828],[-127.28555912270048,53.262374305256024],[-127.28582617361899,53.26229297485407],[-127.28606516918842,53.26218449956445],[-127.28626487706262,53.26205011287668],[-127.2864084516168,53.26189223867332],[-127.28648674417971,53.26171882899068],[-127.28658580749712,53.261548555582394],[-127.28678559808691,53.261417528601385],[-127.2870351596654,53.261316780313145],[-127.28729247147899,53.26122434685334],[-127.2875634528129,53.26114857236186],[-127.28784516247673,53.26108612709739],[-127.28813475761278,53.261035921325536],[-127.28842868828444,53.26100471669641],[-127.28872618813273,53.26102893411562],[-127.28900254188504,53.26109876630765],[-127.28882922284615,53.26114322910259],[-127.28868339487182,53.26119635726002],[-127.28856048899418,53.261261562078055],[-127.28845877059021,53.261406093998666],[-127.28835497745247,53.26157474412125],[-127.2882492886192,53.261742849967],[-127.28814554493557,53.26191317562739],[-127.28801518847175,53.262073140599036],[-127.287823148384,53.26221192916566],[-127.28761770922216,53.262343019131926],[-127.28740749686388,53.26247136368056],[-127.28721829612739,53.26261124091522],[-127.28710691575368,53.26277772205163],[-127.28707856317682,53.26295675771606],[-127.28709060548542,53.26313591096352],[-127.28715045380277,53.26331230456492],[-127.28716466652493,53.263501518947784],[-127.2871584023088,53.263665739173724],[-127.28711564932654,53.26383428151345],[-127.2870950119205,53.26401995652868],[-127.28708242392494,53.26419265370582],[-127.28710965941279,53.26437724465665],[-127.28716910951277,53.26457157084799],[-127.28730125426223,53.26471636113008],[-127.28744133810586,53.264875076148954],[-127.28759076085348,53.265032013361306],[-127.28774111390378,53.265188375545215],[-127.28790733633652,53.26534175950824],[-127.28804737341397,53.265498798012445],[-127.28811563757625,53.26567397911502],[-127.28809490087916,53.265856284709635],[-127.2879900614368,53.266021583777665],[-127.28785409234385,53.26618272952928],[-127.28770773542927,53.2663423115249],[-127.28757272788127,53.26650401121328],[-127.28747077932302,53.26667207518324],[-127.2874056289043,53.266845907177014],[-127.28736318106921,53.267024530690406],[-127.28733015837827,53.26720472822238],[-127.28729148286537,53.26738387548921],[-127.28724805339289,53.26756138902766],[-127.28720464049354,53.26773945812865],[-127.28716310541989,53.26791751578924],[-127.28712250117437,53.268095554354936],[-127.28708568468902,53.268274116547325],[-127.28705355523681,53.268452627874495],[-127.28702237418577,53.26863169363038],[-127.28694435374223,53.268783810081615],[-127.28681076960584,53.268930926376406],[-127.28660397045041,53.26904913801987],[-127.28633879257855,53.26913213439976],[-127.2861208597346,53.269254947927465],[-127.28594018513685,53.26939809141387],[-127.28579847822277,53.26955649968205],[-127.28564917310945,53.269712193253966],[-127.28549228638535,53.269865718735005],[-127.28534017143255,53.2700219980833],[-127.2851173733477,53.2701392686913],[-127.28486975252255,53.27024391715809],[-127.28465559980924,53.27036780740889],[-127.28448161741254,53.270515358120846],[-127.28430286115518,53.270660163400244],[-127.28412412244532,53.270806079751075],[-127.28395578772043,53.270954133250925],[-127.28382946272843,53.2711863267131],[-127.28383261877539,53.27132075479247],[-127.2836967649048,53.27145612181331],[-127.28343150793809,53.27159849968912],[-127.28315157236494,53.271691168111865],[-127.28287042521909,53.27174351030759],[-127.28258770741199,53.27180650924008],[-127.2823725407622,53.27192817399958],[-127.28218329784322,53.27206859811405],[-127.2819662695708,53.27219140272313],[-127.28175311304875,53.27231751768706],[-127.28155144726125,53.272451360751326],[-127.28133732474788,53.272576929578456],[-127.28110015347127,53.27268593904306],[-127.28085629591254,53.27279109388407],[-127.28061047628465,53.27289403730718],[-127.28036275809112,53.27299587120404],[-127.2801005037657,53.273083303602185],[-127.27985660955319,53.273187900935405],[-127.27966919682869,53.27332718054624],[-127.27949516797213,53.27347416812797],[-127.27932113763225,53.27362114648225],[-127.27914045523796,53.2737653994429],[-127.2789521420197,53.2739063727875],[-127.2787321323023,53.274024156489276],[-127.2784641318488,53.274108285483074],[-127.27814390654353,53.27411173444678],[-127.2778433269475,53.274112730000965],[-127.2775442865503,53.27410250307544],[-127.27724592356874,53.27408385976364],[-127.27694767779548,53.274068584952246],[-127.27664769131674,53.27405836595224],[-127.27634941180223,53.27404196052578],[-127.27605526195771,53.27400702594195],[-127.27576023369275,53.27397434110523],[-127.27547688014917,53.27392360184297],[-127.27521122641157,53.2738368152724],[-127.27492169747991,53.27379903144789],[-127.27462208505902,53.27376975458996],[-127.27433013797192,53.27377680691093],[-127.27404422921569,53.273828058487815],[-127.27374346579191,53.273822887308455],[-127.2734432598342,53.27383619338613],[-127.27314234155054,53.27385678520209],[-127.2728431005184,53.27387119992016],[-127.27254703992283,53.273865975272265],[-127.2722572785876,53.2738208996433],[-127.27196987015768,53.27376011090516],[-127.27168058058209,53.273730151276006],[-127.27139035403339,53.27379433308136],[-127.2711862789586,53.27391136714825],[-127.27111558436074,53.27409085065169],[-127.27107869494976,53.2742694073196],[-127.27108690113242,53.27444860152549],[-127.2711429421718,53.2746250423902],[-127.27112392183564,53.2748045281545],[-127.27104836848385,53.27497845202414],[-127.27093120652945,53.27514330150197],[-127.27072082900415,53.27526993092776],[-127.2704459516118,53.27534458629674],[-127.27016704905589,53.27541088473201],[-127.26987606537858,53.27544985472937],[-127.2695759697337,53.27543625740978],[-127.26927834540858,53.27541086304776],[-127.26898181974494,53.27539050298207],[-127.26868374871702,53.27541273814481],[-127.26839792299955,53.275467336533545],[-127.26812392149483,53.275540300814754],[-127.26786355462248,53.27562936173908],[-127.2676292422239,53.275741674553174],[-127.26743035692522,53.27587601881067],[-127.26725341445844,53.27602133354489],[-127.26709166690026,53.27617264410834],[-127.26689756530679,53.276309742094284],[-127.26667092784892,53.27642757354236],[-127.26642603246808,53.276531588481944],[-127.26616756781502,53.27662174575151],[-127.2658965309833,53.27669971091502],[-127.26561663017237,53.27676432383978],[-127.26534286713655,53.276845678311815],[-127.26515327722676,53.27697712265834],[-127.26505887842009,53.27715012257535],[-127.26503045625903,53.2773302717815],[-127.26473068442043,53.27732786374435],[-127.2644314644946,53.27734337722248],[-127.26415744369041,53.277416323315926],[-127.26388538427614,53.277492053634],[-127.26358940880085,53.277522097043985],[-127.26328980329791,53.277525286129226],[-127.26299223532628,53.27750212529923],[-127.26270157770146,53.27745871208991],[-127.26241176713313,53.277411936602896],[-127.26211848663766,53.277375272925426],[-127.26182344404857,53.277341997750675],[-127.26153278872815,53.27729858167587],[-127.261268141021,53.27721399445697],[-127.26106226116387,53.27708340618223],[-127.26086818246391,53.27693923712674],[-127.26063894237915,53.27684475255289],[-127.26034608372333,53.276821526167026],[-127.26014576169311,53.276688636294146],[-127.26003270001446,53.27652007504632],[-127.25992715428964,53.27635199864054],[-127.25985525008427,53.27617740673829],[-127.25974787763911,53.27601102583098],[-127.25955307753107,53.275873594319854],[-127.25934164305794,53.275745858831996],[-127.25909437603097,53.27564483057328],[-127.25883610805326,53.27555289151864],[-127.25857877101554,53.27546037730159],[-127.25832600625462,53.27536388779721],[-127.25807779751963,53.275262876398195],[-127.25782960473137,53.275161855354554],[-127.25758327662231,53.275060823005965],[-127.25737554015132,53.274930239131976],[-127.2571604774,53.27480646451722],[-127.25689219587382,53.274724702971746],[-127.25660952483516,53.274664947580526],[-127.25632241668536,53.27461364678754],[-127.25603264924625,53.274567411255596],[-127.25574195234216,53.274521740627925],[-127.25545487953322,53.274471557888944],[-127.25517129714471,53.2744123645167],[-127.25490671357389,53.27432888314611],[-127.25472776111216,53.27418679424985],[-127.25465117880331,53.27401223975835],[-127.25456151658868,53.27384007345049],[-127.25446253046076,53.27367023767152],[-127.2543953413635,53.27349559267037],[-127.25437592038782,53.27331595177072],[-127.2543987843582,53.27313699341475],[-127.25445646963263,53.27296046377927],[-127.25456232108056,53.27279238902909],[-127.25472411710149,53.27264165087419],[-127.25491631340738,53.272502916638985],[-127.25511141628212,53.27236694812337],[-127.25528933179582,53.27222164120383],[-127.25541221437483,53.27205786747725],[-127.2554510945514,53.27188041560957],[-127.25543072352983,53.27170079370687],[-127.25539253631797,53.27152247179302],[-127.25535998219125,53.27134353449538],[-127.25535744604684,53.271163723881386],[-127.25540855888352,53.270987263054],[-127.25550589120199,53.27081703629468],[-127.25563254148788,53.27065377808269],[-127.25577531354797,53.270495960639025],[-127.25592948430642,53.270341939676214],[-127.25609123423611,53.27019063506552],[-127.25624254484359,53.270035523408986],[-127.25638341620305,53.2698766047454],[-127.25651481447039,53.269715536203854],[-127.2565825081764,53.26955963305927],[-127.25648438876937,53.269387548409156],[-127.25634538616949,53.269229907373756],[-127.25612478816493,53.269108430479996],[-127.25592915156703,53.2689732339067],[-127.25579384171633,53.26881331212266],[-127.25570044647466,53.26864174155644],[-127.25567636987675,53.268463834895904],[-127.2556672504549,53.268283528928535],[-127.25564877471426,53.26810444245679],[-127.25562558026073,53.2679248501212],[-127.25561273863187,53.267745703999715],[-127.25560159168494,53.26756037262872],[-127.25540744356415,53.267443096597745],[-127.25513814933565,53.26735742470826],[-127.25489461419784,53.26725355161675],[-127.25465739561932,53.26714120292151],[-127.25450918418016,53.26698925962996],[-127.25439806737882,53.26682180159783],[-127.25423290703978,53.26666835187],[-127.25426161778284,53.26649660994608],[-127.25417614461409,53.26633840051441],[-127.2539105991498,53.266252130495744],[-127.25362712414345,53.26619461790499],[-127.25332892736141,53.266179274884195],[-127.25304435710783,53.26614810901243],[-127.2529800098624,53.26597342374459],[-127.2529896976489,53.265793483614836],[-127.25303326930768,53.26561598247071],[-127.25308812403638,53.26543891791469],[-127.25313167842663,53.26526086110124],[-127.25314419109431,53.265081446825974],[-127.25310791234679,53.26490310357518],[-127.25312230280227,53.26472366943838],[-127.25315174719127,53.26454464103839],[-127.25316520596098,53.264365216699275],[-127.25318054238524,53.26418577251019],[-127.25320340621211,53.26400680457575],[-127.25321874234388,53.26382736034836],[-127.25323876519667,53.26364786660038],[-127.25326255837504,53.26346833300793],[-127.25328823081445,53.263289344281716],[-127.25331297142067,53.26311035640932],[-127.25335748531981,53.26293284490248],[-127.25339821192125,53.26275481759015],[-127.25343423468915,53.262576275194576],[-127.25347120350786,53.2623977227741],[-127.2535128419476,53.26221855625018],[-127.25344753591231,53.26204332527529],[-127.25322616867886,53.261925768472544],[-127.25300744547252,53.2618025807645],[-127.25281366415514,53.26166512734625],[-127.25260881729022,53.26153450456349],[-127.25238733891729,53.26141303006937],[-127.25214931167417,53.26130349074258],[-127.25187396388621,53.2612335627547],[-127.25158949587811,53.26117325023835],[-127.25136722380208,53.26105626430178],[-127.25115680140438,53.26092738310806],[-127.25095372485502,53.26079282152023],[-127.25086046655274,53.26062460692708],[-127.25085419473604,53.26044482584444],[-127.25084606066326,53.2602650733423],[-127.25086517708465,53.26008614508251],[-127.25091249048607,53.259908048997815],[-127.2509109531747,53.25972933844851],[-127.25090655910527,53.259549546450444],[-127.2508871761042,53.259370468243105],[-127.25084245531683,53.25919221292762],[-127.25075840635891,53.259017742705375],[-127.25055921129415,53.25888705682422],[-127.25027504298687,53.25883626698036],[-127.24997345799282,53.25883104534468],[-127.24967956366885,53.25886383051882],[-127.24938164896714,53.25888770213299],[-127.24909043578317,53.25885267087601],[-127.24880962537188,53.2587878312603],[-127.24852526113656,53.25873031621999],[-127.24823998310971,53.258673374858546],[-127.24799103127441,53.258574582664856],[-127.24784000058195,53.25842098430033],[-127.24771867990769,53.258255859172486],[-127.24762723499337,53.25808482613147],[-127.24753485931856,53.25791379383572],[-127.24748925773423,53.257737231804356],[-127.24747175111914,53.25755757752495],[-127.2474373652351,53.257379212259146],[-127.2474095418544,53.25720022219325],[-127.24738828089484,53.25702060733175],[-127.247341716591,53.256842934783606],[-127.24724469343849,53.256673636312016],[-127.24712618874636,53.256508480900074],[-127.24697977043417,53.25635147134921],[-127.24684358868473,53.256191548257604],[-127.24672320950435,53.25602641213302],[-127.24656102730599,53.25587629082109],[-127.24633962878752,53.255755915889395],[-127.24609428839418,53.255651488231706],[-127.24582078212764,53.25557872136719],[-127.24552766790282,53.25554202524665],[-127.24524512331202,53.25548112186951],[-127.24501731737884,53.25536641434642],[-127.24477568761552,53.25526025979969],[-127.24452031636645,53.25516545409163],[-127.24425584141025,53.255080827975085],[-127.24398505182846,53.255004675849484],[-127.24371783639096,53.254922318318584],[-127.24346615831539,53.254825230619126],[-127.2432263633076,53.2547173684718],[-127.24300677542863,53.2545941716266],[-127.24283068918477,53.25444979356826],[-127.24268706924532,53.254291619995215],[-127.24251002124748,53.254146131020676],[-127.24227757709171,53.254032587407224],[-127.2420095554046,53.25395416082009],[-127.24171810229238,53.253909585437114],[-127.24142247447607,53.253882425521226],[-127.24112258917512,53.253869876130764],[-127.24082434286667,53.25388140442757],[-127.24053059116638,53.25391809210874],[-127.24023986110055,53.25396202634],[-127.23994390215647,53.253987530470184],[-127.23964325133564,53.25398115266002],[-127.23935547158341,53.25393317156398],[-127.23911850086283,53.25382528068436],[-127.23891277036836,53.253693523279594],[-127.23868221593989,53.25357996195081],[-127.2384241107563,53.25348741286646],[-127.23814521466731,53.25342252838976],[-127.23784867796432,53.25339593384778],[-127.23754809705073,53.253391782111585],[-127.23725312096822,53.25341895456408],[-127.23696941200029,53.25347793900833],[-127.23667959462246,53.25352073448584],[-127.23638059864126,53.2535384177951],[-127.23609174444057,53.25358233126564],[-127.23580109263827,53.25362849481837],[-127.23550932351023,53.253604641572345],[-127.23522049032974,53.25355274416326],[-127.23493797539773,53.25349238090191],[-127.23469368772865,53.25339015108476],[-127.23444479897866,53.25329133916006],[-127.23417945754056,53.253207820363684],[-127.23391862274026,53.25311808678999],[-127.23366696171124,53.253020422606276],[-127.23344561490873,53.25290002343627],[-127.23326676001174,53.25275566025775],[-127.23311575448179,53.252600357944324],[-127.23297589902195,53.25244101326051],[-127.23281097228106,53.252291457827624],[-127.23260899099105,53.2521585391536],[-127.23237292795893,53.252048375557045],[-127.23211760541751,53.25195410772035],[-127.23186321367464,53.2518592649356],[-127.23161065117628,53.25176271736536],[-127.2313654030475,53.251659379211084],[-127.23112472581234,53.251551502092894],[-127.23086309100987,53.25146569648519],[-127.2305761553746,53.251413768232695],[-127.23029090189048,53.25135509875527],[-127.23005672685879,53.25124491999561],[-127.22992999518948,53.25108431517001],[-127.22985822652308,53.25090913840504],[-127.2297808745372,53.250735139986524],[-127.2296820586189,53.25056584607932],[-127.22957762842614,53.250397175019074],[-127.2294909264973,53.250224949596905],[-127.22938372229339,53.25005742762097],[-127.22921604196374,53.24990901628669],[-127.2290584514139,53.24975265656137],[-127.229074113087,53.2495810553759],[-127.22926339889545,53.249439585194],[-127.22945193183502,53.24930428981032],[-127.22947111773826,53.249124808372116],[-127.22936664291807,53.24895445225061],[-127.22926223413657,53.248786336378856],[-127.22917925864033,53.248612960459795],[-127.22903030655762,53.248462669480936],[-127.22875666456444,53.24838258632664],[-127.22847331114959,53.24832389294041],[-127.22818466940892,53.2482770235451],[-127.22791032826083,53.248205345089126],[-127.22764599526609,53.24812292199922],[-127.2273493883309,53.248092376032645],[-127.22705474148931,53.24806517059937],[-127.22677044540964,53.248005927158296],[-127.22648535031618,53.24795172914425],[-127.22620647659546,53.24788569623525],[-127.22593029706019,53.247815161731566],[-127.22569256117777,53.2477106048928],[-127.22546735999661,53.24761713220235],[-127.22516181278854,53.24760236040162],[-127.22486289154801,53.24758919568344],[-127.22456378660789,53.24760181293569],[-127.22426691673249,53.247627287809735],[-127.2239730804188,53.247660009501686],[-127.22371080185106,53.247745078072796],[-127.22348027955027,53.24785670189072],[-127.22319663749633,53.24791733832164],[-127.2229079699149,53.24796681176362],[-127.22262124249997,53.248017949750626],[-127.22234345623048,53.24808636735666],[-127.22206759461254,53.24815644076078],[-127.22177360724918,53.24818412066255],[-127.2214769891148,53.24815356016849],[-127.22118386517784,53.248113434107054],[-127.22089931158135,53.24814269996745],[-127.22064772840133,53.24824108876763],[-127.22039705799392,53.24833835607566],[-127.22011729160825,53.248403418265205],[-127.21983158592961,53.248457900464096],[-127.21953477084138,53.248485048082],[-127.21923679903203,53.24850491902168],[-127.21893977401113,53.24852533525488],[-127.21864803088967,53.248565874682384],[-127.21836726464727,53.24862870193954],[-127.21808651511306,53.248692657827306],[-127.21782134529177,53.248775492843414],[-127.2175870651271,53.24888827298989],[-127.2173862377656,53.249021434329734],[-127.2172225206322,53.24917157795862],[-127.21711752714639,53.24934017647135],[-127.21707290632212,53.24951823107651],[-127.21707149290214,53.249697527574895],[-127.21709356761522,53.249877147794244],[-127.21707715202791,53.25005659818943],[-127.21699104024204,53.25022892005879],[-127.21683397642686,53.25038235626924],[-127.21660539579133,53.250497316819796],[-127.21635089981052,53.25059292921654],[-127.21607307020051,53.250660767475324],[-127.21577821210607,53.25069180272446],[-127.21547879212326,53.25069430645804],[-127.21518145541737,53.25067158107099],[-127.21488663733545,53.250638744544965],[-127.21459271762528,53.25060422180689],[-127.2143075884217,53.250548874418804],[-127.21404867225891,53.25045795748652],[-127.21384030993107,53.2503295547827],[-127.21364943636107,53.25018920293284],[-127.21338972266044,53.25010333952469],[-127.21309758829011,53.25006542436301],[-127.21280887118075,53.250015712662766],[-127.21251333758592,53.24999016541249],[-127.2122135687671,53.24998033890011],[-127.21191543751085,53.24996266028889],[-127.21163039634529,53.24991010242317],[-127.2113542279183,53.24983953405999],[-127.21107988925802,53.24976726113075],[-127.21080826225008,53.249691033624806],[-127.2105356904002,53.24961482411034],[-127.21031531042155,53.24949269628136],[-127.21007848564605,53.249385858224734],[-127.20980225907377,53.24931304586243],[-127.20952523159222,53.24924527884657],[-127.20924637496195,53.24917865034849],[-127.20897655302824,53.249100159274064],[-127.20871038928652,53.24901771301055],[-127.2084414836512,53.24893809984948],[-127.20817893301816,53.24885113355556],[-127.20792369856245,53.24875680438277],[-127.207682215986,53.24865113851234],[-127.20745174077365,53.248536387058415],[-127.20718827977197,53.248449992604286],[-127.20694218045188,53.248347169027774],[-127.20670168046442,53.248242602735544],[-127.20641025618707,53.24819626469094],[-127.20614959057399,53.24810871901553],[-127.20591082804755,53.24799965143119],[-127.20567487400382,53.2478899990518],[-127.2054333858962,53.24778376398207],[-127.20519650327712,53.24767412010057],[-127.20492482167916,53.24759564778244],[-127.20463292001241,53.247564997414834],[-127.20433206452194,53.247549559652605],[-127.2040383504095,53.24752116725196],[-127.20376588444753,53.247447738080766],[-127.2034790094294,53.24739574418384],[-127.20319568194407,53.2473364347792],[-127.20292047438336,53.247265272517076],[-127.20266157201853,53.24717377511652],[-127.20238381424656,53.24711215733392],[-127.20208903016096,53.24707873317833],[-127.20197405070002,53.24716225140549],[-127.20190864132108,53.247337713754426],[-127.20178937736948,53.24750139611446],[-127.20159519645716,53.2476389450722],[-127.20139339361029,53.24777208885288],[-127.20120966896825,53.24791401326205],[-127.20104682992411,53.248064134183075],[-127.20082304724134,53.248184053378274],[-127.20055701227494,53.24827078453349],[-127.20042907898215,53.248427265324445],[-127.20033159136507,53.2485974487001],[-127.20000104055337,53.248826015461304],[-127.1999797637226,53.24883688002255],[-127.1997626793614,53.24896176713748],[-127.19955892367607,53.24909268631877],[-127.19939325102011,53.24924283342784],[-127.19923800409639,53.249396227435696],[-127.19905619011627,53.24953981417058],[-127.19885432237115,53.24967126873906],[-127.198626691304,53.24978842564923],[-127.19845525374164,53.24993413859305],[-127.19830378723864,53.250088622538726],[-127.19809528938224,53.25021846642683],[-127.19786476545855,53.250332845259884],[-127.19762753559303,53.25044280930418],[-127.19740163113248,53.25055489954591],[-127.19714242260623,53.25065163836348],[-127.1969486343094,53.250770682389536],[-127.19697576895443,53.25096594141688],[-127.19698679703292,53.25115631618938],[-127.19674430416141,53.25124671812027],[-127.19659201640533,53.251272905537526],[-127.19648734207341,53.25132326364357],[-127.1963644713251,53.25142703368316],[-127.19629405671698,53.251460238492555],[-127.19614983738118,53.25153956349895],[-127.19603950897313,53.25155580726397],[-127.19575888251107,53.25142641673247],[-127.19566947954775,53.25138585920165],[-127.19549544312795,53.25134055205353],[-127.19534696791891,53.2513358810508],[-127.19520336872861,53.25133789273087],[-127.19495112346576,53.251315782882095],[-127.19460471985035,53.25131703087956],[-127.19426508876823,53.251359103643075],[-127.19397525486896,53.25136874429694],[-127.19365015003349,53.25139330572927],[-127.19342707913567,53.251439814615345],[-127.19329727106972,53.251497701519654],[-127.19325345489207,53.25157545712277],[-127.19320940933336,53.25174454063687],[-127.19315258643283,53.25192663395611],[-127.19307580619787,53.25209996391304],[-127.1929460828804,53.25226093594459],[-127.19276612814681,53.25240504955692],[-127.19264495312466,53.25256930573681],[-127.19256723917296,53.252743200430956],[-127.1925027132178,53.25291864771789],[-127.1924429034339,53.25309461227558],[-127.19241792646417,53.2532741439383],[-127.1924023358803,53.25345358122946],[-127.19238202839725,53.2536325011779],[-127.19236175169901,53.25381198552865],[-127.19234991536511,53.25399138502379],[-127.19236250043889,53.25417110377577],[-127.19238447216429,53.254350719200055],[-127.19240172746245,53.254529826242106],[-127.19242463005214,53.25470887650309],[-127.1924625211969,53.25488722031611],[-127.19248731731668,53.255066807272286],[-127.19251678394811,53.25524579149109],[-127.19258368839247,53.255420482070654],[-127.19271035406763,53.25558335781267],[-127.19286866808358,53.25573639541031],[-127.19303345180553,53.25588600622803],[-127.19318640494909,53.256048626061926],[-127.19338832742417,53.256182731595686],[-127.19359925945281,53.25630386485158],[-127.19370537494673,53.256470316744156],[-127.19380696687517,53.25667602266327],[-127.19389433734958,53.256810168435635],[-127.1939874393718,53.25698122405744],[-127.19406463962564,53.257154689613124],[-127.19413530822446,53.25732933238965],[-127.19422653512167,53.257500415636265],[-127.19434502553388,53.25767233588684],[-127.19451247168568,53.25781575954889],[-127.19462238104983,53.25798328390441],[-127.19470520235481,53.258156127665465],[-127.19474179468598,53.25832103762009],[-127.1949053822122,53.258493623644924],[-127.19505811414089,53.258647834998904],[-127.19516894337877,53.25881479378485],[-127.19527606508974,53.258982910313954],[-127.19539939316465,53.25915982746371],[-127.19542202655585,53.25932935980292],[-127.19540647820821,53.25950991710277],[-127.1954209395469,53.25968905152373],[-127.19548320800143,53.25986489850112],[-127.1956387241886,53.2600179605142],[-127.19581000270502,53.260163584689316],[-127.19592274727196,53.260331079173774],[-127.19606897379617,53.26048759575531],[-127.19623754194946,53.26063660813532],[-127.19640237246547,53.26078676950107],[-127.19654954868086,53.26094327591092],[-127.19670507197975,53.261095780679526],[-127.19688104493909,53.26124134699618],[-127.19693573182649,53.261414472863045],[-127.19684099341481,53.26158406826933],[-127.19672925957295,53.26175046453074],[-127.19663832245388,53.26192169765747],[-127.19646655912805,53.26205788975868],[-127.19632547732874,53.26214951699911],[-127.1961140420491,53.26227770031119],[-127.19590640791728,53.26240697437696],[-127.19567007238922,53.262551094806504],[-127.19550830553536,53.26267542392796],[-127.19524797582383,53.26276824226931],[-127.19495955006298,53.26279748351054],[-127.19464855574095,53.26279277158073],[-127.19435193303967,53.26276438370522],[-127.1940507672716,53.26274164330269],[-127.1938147616599,53.26263196817874],[-127.1935924527296,53.26250870882912],[-127.19331183320267,53.26248183365966],[-127.19300420347761,53.26249613208075],[-127.19270285543489,53.26253334125774],[-127.19243174190916,53.262610019028926],[-127.19216951242242,53.262702293880736],[-127.19188010673346,53.26273040800503],[-127.19158254120232,53.262735081871234],[-127.19127997342288,53.26272915600077],[-127.19097732661872,53.26272042442645],[-127.19068441629294,53.26272392881688],[-127.19037605763558,53.262712456265795],[-127.19008848047378,53.26270525647313],[-127.18977800754581,53.26268539536353],[-127.18948037962093,53.26268837935684],[-127.18918112566257,53.26269978711148],[-127.18887589230262,53.26266586940081],[-127.1886572078547,53.262670857085254],[-127.188334423706,53.26278053743181],[-127.18812316600491,53.26291599212187],[-127.18789439200039,53.263029211837946],[-127.18769821668467,53.26316675572728],[-127.1875114461032,53.26327115498277],[-127.18719853366756,53.2633650463847],[-127.18693240657889,53.263452866477095],[-127.18667006540423,53.263541768591715],[-127.18641919422242,53.263637834169806],[-127.18622649864682,53.26376525625061],[-127.18612145514521,53.26393774218291],[-127.18600601188719,53.26410753518738],[-127.18585716299478,53.26425804875371],[-127.18560920511656,53.26435800962375],[-127.18540340616296,53.264487237446986],[-127.1851871290742,53.264611531801954],[-127.1849033980007,53.26467487210362],[-127.1846669382072,53.264783124314356],[-127.18447456192843,53.26492230089488],[-127.18435611215229,53.265085954922654],[-127.18424910065039,53.26525509712888],[-127.18409752722815,53.26540956169824],[-127.18393080391743,53.26555968626393],[-127.18377831319647,53.265715280024764],[-127.18358488909487,53.26585110399507],[-127.18332339406895,53.2659371931891],[-127.18303659144516,53.265992151311224],[-127.1827426740149,53.266027575488124],[-127.18244565479698,53.26601933058991],[-127.18214731237161,53.26599709644424],[-127.18188269117697,53.26607256439261],[-127.18168206126938,53.266219661859964],[-127.18145860447194,53.26632329596481],[-127.18118449649289,53.266395495283355],[-127.18090063765341,53.2664549008415],[-127.18065220789236,53.26650499824213],[-127.18037186963053,53.26662319783924],[-127.18012293765503,53.266722591816624],[-127.17987790133063,53.266826993219695],[-127.17964611892677,53.26693518855111],[-127.17940766873849,53.26700646447467],[-127.17905311569133,53.26702343365325],[-127.17874608181435,53.26702648386047],[-127.17847208320163,53.26706954292004],[-127.17816295919434,53.26709894841173],[-127.17786360817838,53.26710807827514],[-127.17756442970419,53.26712393758397],[-127.17728040470914,53.2671777335524],[-127.17706882352661,53.26730308646827],[-127.17699567470395,53.267475811909215],[-127.17697343226394,53.26765474638607],[-127.17693203599627,53.26782098963737],[-127.17667106716067,53.26796084217669],[-127.17644714103383,53.26808183431753],[-127.17617895906044,53.268165167970125],[-127.17590112080147,53.268239068033914],[-127.17569699550276,53.268362668208596],[-127.17552541913109,53.26850891116853],[-127.17536723636877,53.268663420398994],[-127.17520906885376,53.26881905869766],[-127.17503756631208,53.26896754113141],[-127.17483744080467,53.26910061979889],[-127.17463262647514,53.26923374451711],[-127.17441627766793,53.26935745436358],[-127.1742142698858,53.26948999478005],[-127.17401131405077,53.26962253524586],[-127.17380644799509,53.2697539827114],[-127.17359489084086,53.269881569776935],[-127.17337951335008,53.270006388512655],[-127.17316030141876,53.27012901272794],[-127.17294014100419,53.270251081166016],[-127.17271903210693,53.270372593821634],[-127.17249695995166,53.27049355979946],[-127.17227390886282,53.27061341452315],[-127.17207168608725,53.270738665549665],[-127.17184410021127,53.27086416665088],[-127.17164842540812,53.2709887964986],[-127.17139992902848,53.27110553923816],[-127.17116633193099,53.27121765245737],[-127.17092891520934,53.27132756190853],[-127.17069151265822,53.27143802648829],[-127.17045219992409,53.271547397889734],[-127.17021283925227,53.27165508405046],[-127.16996965898682,53.27176056639022],[-127.16972450624905,53.27186270619402],[-127.16942996149457,53.271979333767845],[-127.16917819493653,53.27201206740553],[-127.16889620625211,53.272073110327106],[-127.16860541644144,53.272121913878514],[-127.16835727819314,53.272217921990006],[-127.168135245825,53.27234112005327],[-127.16791889304766,53.272465938037286],[-127.1677263651844,53.272603411266644],[-127.16756051748204,53.272754067527806],[-127.16738838411862,53.27288181988615],[-127.16716412008861,53.272856569159856],[-127.16677995447509,53.27272140626619],[-127.16653930751828,53.27261340845996],[-127.16625320745715,53.27255963117034],[-127.16595833653629,53.272528913796805],[-127.16572893033245,53.272419118727605],[-127.16563409244948,53.27225030112826],[-127.16557757986779,53.272074939908244],[-127.1654846212676,53.27190609475257],[-127.16528492993137,53.271783681681555],[-127.16496609756221,53.27176944867939],[-127.16466638623697,53.27176678779966],[-127.16436692240052,53.27177364338035],[-127.1640674272863,53.271778822265034],[-127.16376920332031,53.27179631326753],[-127.16346939980247,53.271790853536885],[-127.16335095302368,53.27178753270023],[-127.1631791927376,53.27175839838875],[-127.16293402691814,53.27165604007804],[-127.16267408373247,53.2715627809537],[-127.16260760502469,53.27146819095875],[-127.16245651199407,53.271404682837726],[-127.16222837646728,53.271306638218796],[-127.16201171762717,53.27118214491315],[-127.16182558733506,53.27107415963792],[-127.1615071909278,53.27100724136735],[-127.16105551307383,53.27108001062203],[-127.16073207653493,53.27106860808059],[-127.16038283178544,53.2710412144507],[-127.1601765933101,53.27098776226837],[-127.16005892026635,53.27080739399249],[-127.15996750184708,53.27072761263261],[-127.15974630459321,53.270539856686405],[-127.15953713859405,53.27041416521749],[-127.15931760385513,53.27035523905024],[-127.1590185884464,53.2703435933311],[-127.15871871865343,53.27033476089626],[-127.15841399234027,53.27032036372154],[-127.15811539236743,53.270323842702325],[-127.1578369553412,53.270377537065436],[-127.15757261657978,53.27046583723881],[-127.1573054211058,53.27055303521785],[-127.15702331768331,53.27061013381086],[-127.15673035424675,53.2706477246194],[-127.15643349632927,53.27068087071133],[-127.15614253268053,53.27072292250721],[-127.15585963307798,53.2707856195147],[-127.15558163483563,53.27085555573952],[-127.15529949640802,53.27091153004122],[-127.15500324498623,53.270932341299265],[-127.15468848469133,53.27092868126079],[-127.15440320791221,53.2709045649027],[-127.15410316656254,53.270889555308024],[-127.15380060459901,53.27085159507277],[-127.15351589296831,53.27081346953802],[-127.15321751650639,53.27079059814879],[-127.15292037951968,53.270813653778866],[-127.15262146954416,53.27080590811622],[-127.15232327828627,53.27082449055448],[-127.1520411968799,53.27088269748375],[-127.15179218852363,53.270982596382666],[-127.15154995840224,53.27108970762869],[-127.15131055212508,53.271197355691825],[-127.1510750079062,53.27130889196649],[-127.1510355517477,53.271205625542116],[-127.15104408706453,53.271036349913636],[-127.15114185553816,53.270866773501794],[-127.15119460993331,53.27070043035966],[-127.15122241387446,53.270514160515255],[-127.15120906787394,53.27033501271427],[-127.15113857021608,53.270160901197016],[-127.15127516502265,53.27000326431347],[-127.15128255379628,53.26982615629054],[-127.151223248795,53.269649139475504],[-127.15114246087484,53.26944206898748],[-127.15102212833968,53.26930037898486],[-127.15087408417367,53.26914158562386],[-127.15059963214495,53.26906581302257],[-127.15031824928006,53.26897666117271],[-127.15004018045232,53.268905960042936],[-127.14975858541635,53.26884370053907],[-127.1495504040721,53.26871798219084],[-127.14938283885402,53.26856609898927],[-127.14922648188373,53.26841186604345],[-127.14908502808562,53.26825300665176],[-127.14898466261963,53.26808535013091],[-127.14894877574265,53.26790585546647],[-127.14892980619763,53.26772620595444],[-127.1489559231944,53.26754723142796],[-127.14898950610062,53.26736595258603],[-127.1489893618151,53.2671883527651],[-127.1487746256304,53.267062696515175],[-127.14852671268781,53.26696089115398],[-127.14827606783086,53.266861917408434],[-127.14806971768397,53.266733937783115],[-127.14787811810274,53.26659573076198],[-127.1476883214518,53.266454700304074],[-127.14755072714873,53.26629916316739],[-127.1475401919787,53.26611886705951],[-127.14751089329823,53.26593931710602],[-127.14745724298211,53.26576223461221],[-127.14740359335946,53.26558516103954],[-127.14736589825927,53.265407368442524],[-127.14734035629563,53.265227773104584],[-127.1473176391603,53.265048715158436],[-127.1472883572648,53.264869720664684],[-127.14723565591507,53.264692637783426],[-127.14714460387204,53.26452151908584],[-127.14698825495935,53.264366727252614],[-127.1468105174927,53.264219976360145],[-127.14686224288864,53.26404972738255],[-127.14700906294581,53.26388807882566],[-127.1471003423235,53.26372192033018],[-127.14706153651991,53.26353798004008],[-127.14702959980914,53.26336516921709],[-127.1469721690538,53.263187011340584],[-127.1469194708864,53.263009919202275],[-127.14686486529244,53.262832289703546],[-127.14686663806118,53.26265523574399],[-127.14675005261388,53.2624776494556],[-127.14666063820715,53.26233172985431],[-127.14656525673482,53.26217409825059],[-127.14645665962595,53.26197906243861],[-127.146335892622,53.26181999966626],[-127.1461991584677,53.26166053525014],[-127.14620934569808,53.261482279447115],[-127.14629859329706,53.26131053853337],[-127.14621323111574,53.26114104916958],[-127.14611190187907,53.26097171397097],[-127.1459454326182,53.26082374132159],[-127.14574548567225,53.26068840811463],[-127.14547781394673,53.2606176051558],[-127.14518290470879,53.26058179062797],[-127.14500930917013,53.260447887069496],[-127.14487159245986,53.26028674537025],[-127.14466894894278,53.260155362576114],[-127.1444755280027,53.260017732281426],[-127.1443369138183,53.259858274864555],[-127.14427954459752,53.259681791170905],[-127.14413914565891,53.2595251564263],[-127.1439475612995,53.25938582234651],[-127.14380655200233,53.25924151845287],[-127.14367232597338,53.25907025730269],[-127.14348262280198,53.258930904340275],[-127.14330959176338,53.25878299124345],[-127.14308573960844,53.258665811746],[-127.1428434161384,53.258559458872334],[-127.14260749128266,53.25844688568741],[-127.14234170132102,53.25837604867273],[-127.14204871824079,53.258340772669925],[-127.14175208665245,53.25831001300879],[-127.1414553949463,53.2582764564514],[-127.14116502525079,53.25823386548525],[-127.14087722311264,53.25818229418852],[-127.14059033746703,53.258129583937134],[-127.14026728493543,53.25791979661357],[-127.14011112162737,53.257770031592926],[-127.14002107488619,53.257599462299595],[-127.13994682909612,53.25742313867182],[-127.13984644993496,53.257252668506],[-127.13974043907228,53.257082252350166],[-127.13962142273239,53.25691700769751],[-127.13943793405443,53.256798313180965],[-127.13920475163933,53.256717080628206],[-127.13894953339022,53.25661980761644],[-127.13865115926527,53.25659297426681],[-127.13834850724815,53.256581877008045],[-127.13809111698768,53.256508153250735],[-127.13796010867712,53.256350856447526],[-127.13793615789031,53.2561589270118],[-127.1379747215968,53.25598712247155],[-127.13812063159259,53.25582661350858],[-127.13814497001202,53.25564934290004],[-127.13814479601805,53.255468945968595],[-127.13814272943348,53.25528744668875],[-127.13815572755497,53.255108043841844],[-127.13817625022077,53.25492856878553],[-127.13820052746783,53.25474961344704],[-127.13822759816134,53.25456951975833],[-127.13833296487041,53.254402676413825],[-127.13848652851934,53.25424769580681],[-127.13868668313617,53.254114677567046],[-127.13891163472977,53.25399542254373],[-127.1391108254302,53.253861292311115],[-127.13926722299394,53.253707403881315],[-127.1393555664563,53.25353624101658],[-127.13938359282571,53.25335725820629],[-127.13935810731626,53.253178224603985],[-127.13927836095642,53.25300643504136],[-127.13907573955238,53.25287392199636],[-127.13881697120647,53.252782841031305],[-127.13853640114827,53.25271942523976],[-127.13825042634018,53.25266390407976],[-127.13796352133237,53.25260895588615],[-127.13768116692428,53.2525489166761],[-127.1374070121579,53.25247926953582],[-127.13715644912688,53.25237915135937],[-127.13694457154769,53.25225120541286],[-127.13678372512732,53.2521003602775],[-127.13663023817712,53.251944397720756],[-127.13643042345147,53.25181073283003],[-127.1361973465817,53.25169755501709],[-127.13596428597889,53.25158437659579],[-127.13573660241545,53.25146218232101],[-127.13552003318263,53.25133372301016],[-127.13537511429385,53.251181603017734],[-127.1352730116065,53.251015627202385],[-127.13518392990377,53.25084504472516],[-127.13510509075053,53.2506715584534],[-127.13503183894193,53.25049578664028],[-127.13496136570281,53.250318858732],[-127.13488904619382,53.250143077889504],[-127.13481205665708,53.249968453196665],[-127.13472855038661,53.24979557600199],[-127.13466001718119,53.24962087925983],[-127.13458772996839,53.249446209410905],[-127.1344911608684,53.249276262676],[-127.13437965041703,53.249109255490616],[-127.13427281113773,53.24894108303518],[-127.1341837226894,53.24876993503889],[-127.13410863085741,53.24859585639768],[-127.13404196412642,53.24842057665834],[-127.13400432565925,53.24824222260634],[-127.13394231510497,53.2480657777814],[-127.13381313542509,53.247904541382205],[-127.13365134061854,53.24775258049558],[-127.13347377949525,53.24760804876618],[-127.13328324555005,53.24746925214344],[-127.13306036710773,53.247349803591604],[-127.1328346819541,53.24723094615968],[-127.13261733222916,53.24710752674178],[-127.1324092189225,53.24697841628909],[-127.13220573208933,53.246846464565046],[-127.13199108906117,53.246719091970846],[-127.13185223561254,53.24654674083799],[-127.13187390711575,53.24637454300063],[-127.1318607257002,53.246198186808584],[-127.1318080071456,53.24601717015178],[-127.13178631218166,53.245838098412825],[-127.13177586451428,53.24565836356727],[-127.13178983271283,53.24547895148675],[-127.13183953839334,53.2453019951057],[-127.13189957464395,53.24512550482373],[-127.1319417418022,53.244947508772405],[-127.13194257034117,53.244768221999514],[-127.13193024508146,53.24458849601827],[-127.13194233532667,53.24440910173219],[-127.13195723349382,53.24422912486331],[-127.13197025447795,53.24404972165527],[-127.13198422131921,53.243870309400315],[-127.13199725709346,53.24369090601221],[-127.13201496238192,53.24351089330688],[-127.13200640610108,53.24333169597024],[-127.1320119041594,53.24315180870731],[-127.13201803283695,53.24296014573812],[-127.13204545226468,53.24279236567012],[-127.13211025892153,53.24261863518977],[-127.13222877287279,53.24245222643181],[-127.13241940208837,53.24231539128527],[-127.1325806759756,53.242168742735544],[-127.13267462287679,53.24199640983207],[-127.1327670226841,53.24183698178155],[-127.13277308767678,53.24164307822453],[-127.13280867120412,53.24146457962519],[-127.13285647619226,53.2412870847481],[-127.13290521167013,53.24110958094264],[-127.13295585344127,53.240932614651165],[-127.13299706606786,53.24075462686873],[-127.13301949534707,53.2405756890471],[-127.1330259194832,53.24039522785419],[-127.13299297683987,53.24021682797444],[-127.13288618058601,53.240049773836986],[-127.1327628398687,53.23989520308447],[-127.13253048419213,53.239736070853716],[-127.13228152429306,53.2396572076951],[-127.13199581116807,53.239608392477855],[-127.13169766671825,53.23958546661658],[-127.13141998757598,53.239520886410475],[-127.1311869919168,53.23940769802365],[-127.13099741819774,53.23926832366614],[-127.13084219772259,53.239114619707586],[-127.13067397608945,53.2389666330201],[-127.13041439537484,53.23887667125323],[-127.1301174574468,53.23886381443101],[-127.12981957158064,53.238885701271265],[-127.12952476238833,53.23891707778793],[-127.12923196438012,53.23895404585851],[-127.12893824985977,53.238991577691486],[-127.1286464414474,53.239030211145796],[-127.12836068144566,53.23908447326214],[-127.12809445037675,53.23916711705941],[-127.12784941546016,53.23927029230298],[-127.1276111199292,53.23937957014665],[-127.12738429257253,53.23949713770098],[-127.12723891058558,53.23964137830652],[-127.12706223122491,53.23984419084701],[-127.12686450165064,53.239926745468225],[-127.12657599534373,53.24001912608524],[-127.12629448715018,53.240092391118516],[-127.126015666161,53.2401605832511],[-127.12572326511574,53.240177369861335],[-127.12542675789044,53.24014600450854],[-127.1251263275226,53.240143252717004],[-127.1248233579684,53.24015060869355],[-127.1245166348044,53.24015856421664],[-127.1242225798496,53.240183762025296],[-127.12397984563096,53.24026785887193],[-127.12378472247636,53.24041313119693],[-127.12354064525564,53.24051796448514],[-127.12326564514329,53.24058891958502],[-127.12298479032941,53.240652086023445],[-127.1227019240722,53.240709668363664],[-127.12241120753411,53.24075499889606],[-127.1221173554326,53.240788032955926],[-127.12182054647782,53.240815491789114],[-127.12152466802516,53.240842941075954],[-127.12122543139417,53.240850252503776],[-127.12092594219564,53.24084748113035],[-127.120627027382,53.240831257664446],[-127.12033238140744,53.240799306227075],[-127.12004036565963,53.240760050502566],[-127.11975362430947,53.240707289391665],[-127.11948040334353,53.24063311957694],[-127.11921811729398,53.24054707629111],[-127.11896861378183,53.240446901189046],[-127.11872188967571,53.24034558782072],[-127.11847513686108,53.240243144759454],[-127.11805485540793,53.24000340522786],[-127.11779315148257,53.23990334270303],[-127.11757773050213,53.239778757352845],[-127.11738728407947,53.23963993462989],[-127.1172560370949,53.23950390640375],[-127.11706968494613,53.239342634751054],[-127.11682802448921,53.23921941570552],[-127.116579421047,53.23911755090134],[-127.11632628218167,53.23902188650217],[-127.11607864188476,53.238920576321576],[-127.11583281997088,53.23881756329946],[-127.11559528911165,53.23870830458676],[-127.11538914587932,53.238579146052004],[-127.11522653710598,53.2384277326382],[-127.11507229302039,53.23827343463405],[-127.1148994606914,53.238126034143505],[-127.11461485670883,53.23808220460982],[-127.11431682061692,53.23809845144596],[-127.11403791961158,53.2381643841638],[-127.1137880538879,53.23826309355325],[-127.11354684586473,53.238370120312496],[-127.1133075281843,53.238477693544944],[-127.11309785122805,53.2386062774097],[-127.11290342301997,53.238743125950315],[-127.11268801003025,53.238867836676185],[-127.11246306512456,53.238986478187286],[-127.11223811880407,53.23910568399338],[-127.11202079618798,53.23922873510296],[-127.11185390556588,53.239378204760264],[-127.11172490217731,53.23954076488389],[-127.11158073649112,53.23969786451057],[-127.11140534525927,53.239845727927495],[-127.11119565612749,53.239973752569426],[-127.11095338291146,53.24007686655051],[-127.11069486903537,53.24016892722225],[-127.11043059112335,53.240255994598776],[-127.11016628292347,53.24034195012944],[-127.1098999789276,53.24042343281179],[-127.10963082222925,53.24050326532194],[-127.10936163491073,53.24058254173179],[-127.10909532784689,53.240664022597095],[-127.10883968782345,53.24075829322784],[-127.10860322592153,53.24086863559764],[-127.10843290097912,53.24103101338645],[-127.1082627568831,53.24116426546061],[-127.10805110086356,53.2412900527421],[-127.10783376962351,53.241413660625746],[-127.10761358476223,53.24153616528965],[-127.10739149266534,53.24165757580898],[-127.10715782991683,53.24176732429931],[-127.10695299363731,53.241902574490254],[-127.10673373459159,53.24202506880031],[-127.106492854068,53.24214608816064],[-127.10629143033427,53.242268424176636],[-127.10606931580848,53.2423892675853],[-127.10583568944334,53.24250068926941],[-127.10556264083105,53.242576066602936],[-127.10528369661125,53.24264197857771],[-127.1049887991769,53.242671618198834],[-127.1046959534665,53.24270851665758],[-127.10440010920725,53.242738163625106],[-127.10410627327126,53.24277283782806],[-127.10382827119697,53.242838728605115],[-127.10356295846455,53.242922993164576],[-127.1032985756132,53.24300724846667],[-127.10301768962502,53.243070932128035],[-127.10272377702641,53.24310279788241],[-127.1024258471066,53.24312461586695],[-127.10212781448158,53.243142507869884],[-127.10182852952875,53.243148094369346],[-127.10152892268967,53.24314191351415],[-127.10122936015262,53.24313685197789],[-127.10093902121616,53.24312610163495],[-127.10064508956174,53.243120986354626],[-127.10034202104505,53.24312603949032],[-127.10003057224542,53.24313341055079],[-127.09973339486176,53.24311207158861],[-127.09943461793583,53.243101395809575],[-127.09913499764983,53.243094088552525],[-127.09883542072365,53.24308902110905],[-127.09853594626777,53.24308731341745],[-127.09823645682094,53.24308560510872],[-127.0979369970859,53.2430844604936],[-127.09763744947566,53.243080510240475],[-127.09734021548083,53.24305692484939],[-127.09704205040026,53.24306976758218],[-127.0967424307525,53.2430624542811],[-127.09643557868245,53.24310226746105],[-127.09616005208437,53.24311938062161],[-127.09584835687524,53.243081367812934],[-127.09559988285893,53.24298337552073],[-127.0953449067003,53.242887692698815],[-127.0950863368905,53.24279875646233],[-127.09482039199615,53.24271437865283],[-127.09459673048093,53.2425959865006],[-127.09431704038674,53.24248820424955],[-127.09413462920281,53.24236775436426],[-127.09392018236358,53.242241997268074],[-127.09372238151366,53.24210712239788],[-127.09355519493637,53.241957954372964],[-127.0933796728276,53.24181278913931],[-127.09319948130674,53.2416687871728],[-127.09303602322471,53.241518472524774],[-127.09285398628053,53.24137560752701],[-127.0926961028437,53.24122299110436],[-127.09253078583241,53.241073248645435],[-127.0923376221229,53.24093553202385],[-127.09213890154744,53.24080066299426],[-127.09193926528741,53.24066692255028],[-127.09174892782158,53.24052916998904],[-127.09165164881799,53.240360872170996],[-127.09143184966432,53.240245244243134],[-127.09116776096721,53.240159720776994],[-127.09091103623254,53.240067961836665],[-127.09063786937914,53.23999428132687],[-127.09035747162321,53.239930751045776],[-127.09007436766863,53.239871726924086],[-127.08978500617543,53.239825084974804],[-127.0895082053459,53.2397553524971],[-127.0892698059721,53.23964661440142],[-127.08909336230786,53.23950145133616],[-127.08900168372553,53.23933085896893],[-127.08901018693805,53.23915094743388],[-127.08899829145109,53.2389807428492],[-127.088772082194,53.23883491578954],[-127.08852542537673,53.23873297493651],[-127.08827785321455,53.23863159773685],[-127.08795085274714,53.23858081484096],[-127.08764192873072,53.238502417843804],[-127.08746859733654,53.23840483998437],[-127.08725086896082,53.23829647303685],[-127.0870656308515,53.238173797312],[-127.08685451866138,53.238030069211455],[-127.08664996875679,53.237886280604776],[-127.08648799768493,53.23775610313619],[-127.08625770998471,53.23763328313483],[-127.08599734431974,53.23754490848361],[-127.08570621295529,53.23750163437862],[-127.08540743596839,53.2374892384197],[-127.0851226055225,53.237544507954176],[-127.08467386851326,53.23754021415013],[-127.08431577165656,53.23755693487388],[-127.08401798629951,53.2375831875738],[-127.08364298959833,53.23767289228285],[-127.08349925246819,53.237777290306994],[-127.08330663686496,53.237915749218025],[-127.08315479244499,53.23807007795095],[-127.08301145718151,53.23822657868945],[-127.08276538607672,53.23833022508471],[-127.08250099050373,53.238414434228794],[-127.08222400112948,53.23848307091977],[-127.08193112167173,53.23851823739871],[-127.08163349965143,53.23851422945937],[-127.08137020099646,53.238421389544506],[-127.08108511413644,53.23839430048717],[-127.08077061671175,53.23842797596537],[-127.08047368293433,53.238450850464865],[-127.08017686280685,53.238478769841734],[-127.07988703327962,53.23852286734699],[-127.07961393547876,53.238597064873765],[-127.0793443461997,53.23866226595851],[-127.07905101859345,53.2387164775862],[-127.07876912213293,53.238777307394734],[-127.07850954366376,53.238866501395336],[-127.07827301316918,53.23897678339524],[-127.07806324216638,53.23910530513372],[-127.07786868298089,53.23924208736065],[-127.07769502470582,53.2393882078965],[-127.07751662310977,53.23953269501173],[-127.07732302046784,53.2396700323109],[-127.07712940217418,53.239806804691604],[-127.07695096832335,53.239950170701256],[-127.0766933262097,53.240042704433286],[-127.07701096283056,53.24016811989158],[-127.0770250790475,53.240280039900796],[-127.07702398902367,53.240458206436784],[-127.07706887306362,53.240635955429546],[-127.07713155170298,53.240811857569994],[-127.07718206786421,53.24098899958196],[-127.0772092450688,53.241171391235945],[-127.07726527737974,53.24134455691536],[-127.07730456204324,53.24152291237384],[-127.07733540811894,53.241701909184705],[-127.07736250074726,53.24188094007003],[-127.07738301707973,53.24206003067569],[-127.07739605551764,53.24223975391725],[-127.07739969443165,53.24241955356663],[-127.0773657679315,53.24259801821199],[-127.0772602043489,53.242765372973444],[-127.07710078425414,53.24291864153136],[-127.07699047694541,53.24308379812801],[-127.07693680450376,53.24326132139365],[-127.07694869532676,53.24343320265253],[-127.0770256907985,53.243617947425626],[-127.07720844346308,53.24375410676564],[-127.07735417325192,53.24391020605225],[-127.07748316818959,53.244073189032626],[-127.07758044204607,53.24424317398927],[-127.07761981584312,53.24442545445936],[-127.07757641806666,53.24460064358502],[-127.07753589944127,53.24477861219898],[-127.07749255725165,53.24495659746664],[-127.07744922994135,53.24513459152703],[-127.0774087100396,53.24531255108593],[-127.07737008120958,53.24549105815532],[-127.0773379999549,53.24566894996239],[-127.07735019316513,53.24585259774775],[-127.07741556093208,53.246022872517],[-127.07761249632175,53.246162263772305],[-127.07780655276619,53.24629943990572],[-127.07800247395811,53.246435478296746],[-127.07817425130592,53.24658238486449],[-127.07829858658174,53.24674596494569],[-127.07841545729201,53.24691128899483],[-127.07855191722615,53.247071397127314],[-127.07869021166502,53.24723036793715],[-127.0788354994332,53.24740552639209],[-127.07895380781012,53.247553473882775],[-127.07908001165326,53.24771647139694],[-127.07918381992408,53.24788471916698],[-127.07934632252248,53.24803506983375],[-127.07951419921818,53.24817584282267],[-127.07961518771526,53.24834355114225],[-127.07969660284066,53.24851704888777],[-127.07969063725011,53.248687971569616],[-127.0797750197743,53.248867044617036],[-127.07962508991248,53.248877928909465],[-127.07916655659338,53.24897286013945],[-127.07887593763287,53.24902536951008],[-127.07862013598071,53.249118454502344],[-127.07837493675856,53.249222082591544],[-127.07812973656218,53.24932571912998],[-127.0779084504956,53.24944650074638],[-127.07767281947609,53.2495573279665],[-127.07745249055475,53.24967922047571],[-127.07723216036192,53.24980111256781],[-127.0770127741613,53.249923551416785],[-127.07685229521798,53.250072911240245],[-127.07672500172364,53.2502354153193],[-127.07662605144657,53.250404949572456],[-127.07654849544863,53.250567001985964],[-127.07641116740577,53.25074080148634],[-127.07631410609909,53.25091087402738],[-127.07621513820597,53.25107984328872],[-127.07614921403353,53.25125635600846],[-127.07607573813553,53.25143069622361],[-127.0759899946853,53.251602906694664],[-127.07590682679091,53.25180254087801],[-127.07582132828324,53.25194785756172],[-127.07574878097502,53.25212218906666],[-127.07567717923615,53.25229651193181],[-127.07560180723661,53.252470868917655],[-127.0755320960098,53.25264573923042],[-127.07548026825553,53.25282267933727],[-127.07544725645603,53.253001134018206],[-127.07542364553835,53.25318006816769],[-127.07540192593235,53.253359540904164],[-127.07537080490167,53.25353853412189],[-127.07532932221018,53.25371650972542],[-127.07528031588566,53.25389342405168],[-127.0752256621692,53.254070398486604],[-127.07516064689106,53.25424578159008],[-127.07509469987643,53.25442117308062],[-127.07504286811151,53.25459811283214],[-127.07500986744651,53.25477713181385],[-127.07499095390592,53.254956578874676],[-127.07498425110225,53.25513591527077],[-127.07499258200143,53.25531567118037],[-127.07501686475123,53.25549472677362],[-127.0750673745843,53.25567186845833],[-127.07513663173194,53.25584715502536],[-127.0752181426243,53.25602457143083],[-127.07528818961048,53.25619424836838],[-127.07533870118982,53.25637138091121],[-127.07536579476428,53.256550410875995],[-127.07534338448353,53.256739418021674],[-127.07534301853761,53.256909733070515],[-127.07531189464144,53.25708872594083],[-127.07525629128925,53.25726514394752],[-127.07515260377492,53.25743359860789],[-127.07497982108826,53.257580825548],[-127.07476662482509,53.25768975757959],[-127.07447099084159,53.25776974781836],[-127.07421611566913,53.257864499118774],[-127.07396893468174,53.25796645878795],[-127.07374379345967,53.2580855812812],[-127.07349947584702,53.25818975496613],[-127.07324749090324,53.25828727466613],[-127.07299355526395,53.2583825705162],[-127.07274057912687,53.2584784218493],[-127.07248860481866,53.25857649554868],[-127.07226646438464,53.258703440262565],[-127.07200471491632,53.25878703513373],[-127.071717646707,53.258834447329114],[-127.07141806102862,53.258833235906586],[-127.07113491754266,53.25888733405892],[-127.07088770881487,53.258988722667304],[-127.07064529926757,53.259094558279635],[-127.07043444450119,53.25922250912096],[-127.07023215909881,53.259354873110766],[-127.07003366922595,53.259489434479505],[-127.06979163858347,53.259609830954396],[-127.06958109074225,53.25975010258825],[-127.06949876147623,53.259910516010464],[-127.06949686306768,53.26009541045176],[-127.06947322274704,53.26027433379206],[-127.06945898493815,53.26045373707634],[-127.0694503943786,53.260633654156415],[-127.0694267535598,53.26081257743732],[-127.06936924301485,53.26098900926597],[-127.06929006068886,53.261162274948255],[-127.06922594119473,53.26133764575683],[-127.06916842909585,53.261514077439884],[-127.06909772992412,53.26168895167345],[-127.06903079972403,53.26186434763882],[-127.06898363531377,53.26204124169382],[-127.06894683333343,53.262219727540554],[-127.06892976846713,53.262399156021715],[-127.06893995303322,53.26257890372058],[-127.06894262631684,53.262758710105295],[-127.06891334900337,53.262937692796314],[-127.06889252883289,53.26311659031479],[-127.06889050014048,53.26329644796833],[-127.0688950510765,53.26347623737158],[-127.06887328436582,53.26365515232366],[-127.06887876763096,53.26383437754419],[-127.06893675876465,53.26401088882088],[-127.06902376518363,53.26418321254914],[-127.0691639586017,53.264341620365414],[-127.0693478638837,53.26448338286529],[-127.06954292411635,53.26462056267474],[-127.06970638798838,53.26477090787518],[-127.06981206464108,53.26493858979432],[-127.06986163227636,53.26511573225876],[-127.06989808365272,53.265294122377846],[-127.06994300655944,53.26547354759091],[-127.07001617934127,53.26561854833083],[-127.07027625574867,53.265763548624264],[-127.07055844552325,53.26581814690348],[-127.07056985402514,53.26600852311076],[-127.07054152689938,53.26618805312159],[-127.07047363570497,53.266362337684384],[-127.07037274436142,53.266531873273905],[-127.07027844617883,53.26670247872042],[-127.07016526878417,53.26686876350197],[-127.07003126172498,53.26702907789906],[-127.06988971428004,53.267187783889156],[-127.06977082829836,53.267351878764245],[-127.06979694544292,53.26752979716528],[-127.06992037773662,53.26769395735643],[-127.07005314498694,53.26785522759978],[-127.07018683043881,53.268015924695995],[-127.07032612281654,53.26817545956775],[-127.07046353798664,53.26833500224148],[-127.07059629430276,53.26849627195902],[-127.07071039981412,53.268662191652794],[-127.07079461277914,53.26883510373505],[-127.07087793764626,53.26900970893963],[-127.07094896369402,53.269180498958185],[-127.0710219954494,53.26935687314126],[-127.07107436957112,53.269532868994375],[-127.07109867159794,53.26971360899127],[-127.07112387765402,53.2698926556321],[-127.07113877592779,53.27007235103629],[-127.0711405127052,53.27025217417679],[-127.07114038616909,53.27043200515411],[-127.0711580802953,53.27061111952456],[-127.07119829817684,53.27078947483311],[-127.0712422583725,53.27096723162253],[-127.07126651919438,53.27114628666086],[-127.07127674401481,53.27132714458704],[-127.07136933862742,53.27149661904817],[-127.07156624504066,53.27163098204462],[-127.07179095556097,53.2717505186557],[-127.07203590099833,53.27185307409948],[-127.07228823225405,53.2719505157512],[-127.07253964720374,53.27204852090205],[-127.0727892272506,53.272148792000124],[-127.07301575113297,53.27226551325161],[-127.07323400268726,53.27238903165345],[-127.07345870783625,53.272508009438695],[-127.07370826406458,53.27260714941405],[-127.07392659076295,53.27273347151271],[-127.07414111854739,53.2728586981685],[-127.0743250776386,53.27300045232863],[-127.0744867556169,53.273152492079056],[-127.07469109275951,53.2732828565656],[-127.0749463776755,53.27338474773111],[-127.07518015628402,53.2734907592771],[-127.07546428230846,53.27354532865746],[-127.07572505244192,53.273604590898124],[-127.07598564816173,53.27369354192005],[-127.076189892719,53.27381998755889],[-127.07628935018914,53.27400003587225],[-127.076281589845,53.27417434258137],[-127.07625609209569,53.27435328299699],[-127.07621931012802,53.27453176995828],[-127.07613350618425,53.27470342284284],[-127.07596171625248,53.27485567787679],[-127.07588135990778,53.27501999367045],[-127.07587497173604,53.2752116504753],[-127.07584101243958,53.275390111633314],[-127.07579292915156,53.27556758031566],[-127.07572505807093,53.275742987373924],[-127.07562888321706,53.27591304856272],[-127.0754816197993,53.27606957128906],[-127.07532582425142,53.27622280076147],[-127.07519276818523,53.276383676215076],[-127.07507681614199,53.276552230840835],[-127.07502401129304,53.276728621368186],[-127.07500695224144,53.276907493752915],[-127.07500873495317,53.27708787168465],[-127.07500400686985,53.277271105233105],[-127.0749839803631,53.277443837425395],[-127.07496608887195,53.27762663440007],[-127.07492082390002,53.27780464165655],[-127.07476583842619,53.2779528252587],[-127.07449812030106,53.278064489286294],[-127.07427665817566,53.278185262459125],[-127.07406190533567,53.278311021039656],[-127.0738509649444,53.27843897667687],[-127.07364002350236,53.278566940892475],[-127.0734433761677,53.278702609699025],[-127.07324503363908,53.278846145659735],[-127.07309303369347,53.279001578415695],[-127.07290857127128,53.27913658037184],[-127.0727355780574,53.27927932158267],[-127.0725664830428,53.27942762958865],[-127.07242394243181,53.27958578155643],[-127.07226529839906,53.27973847650322],[-127.07208954645255,53.27988404723177],[-127.07194893796225,53.280044422027544],[-127.07179972584046,53.28019870731742],[-127.07166191143143,53.28035850075353],[-127.07151083290809,53.28051336719549],[-127.07133223611739,53.280657832950034],[-127.07113842474546,53.28079515721044],[-127.07096457152929,53.28094182944382],[-127.07085059668444,53.28111540797906],[-127.07068510283335,53.28125807827078],[-127.07051400043152,53.281401919344674],[-127.07038575557975,53.28156833859909],[-127.07023466733077,53.281723768036834],[-127.07003703342791,53.28185888389673],[-127.06985557297641,53.28200169684265],[-127.06967981737768,53.28214781945308],[-127.06954766773278,53.282308670593906],[-127.06941352416544,53.28246562241437],[-127.0692663150054,53.282625497364805],[-127.0690781947243,53.28276556337764],[-127.06888911226835,53.28290508198841],[-127.06872948204585,53.28305722485513],[-127.06859034593171,53.28320245132161],[-127.06843200065317,53.28336802763749],[-127.06826572710294,53.28351797972911],[-127.06812694234716,53.28367721259287],[-127.06804296562885,53.283848841915294],[-127.06801273779432,53.284027821853044],[-127.06804164294259,53.284242133297745],[-127.0681342953082,53.2844132849707],[-127.0682418936494,53.284580949681995],[-127.06834669627857,53.28474919519229],[-127.06846737671054,53.28491393634539],[-127.06856564025277,53.28508391669823],[-127.0686189557522,53.28525991278006],[-127.06855762256987,53.2854352556071],[-127.06840460636116,53.2855895701567],[-127.06819648081245,53.2857191746158],[-127.06797496049313,53.28583993555592],[-127.06774008977192,53.28595241721345],[-127.06747127039515,53.28606071285487],[-127.0672385703622,53.28614795929426],[-127.06696425189303,53.28622437476187],[-127.06668591995239,53.286290741567996],[-127.06641054039223,53.28636212771168],[-127.06614003330816,53.286440747911264],[-127.0658781988264,53.28652825324274],[-127.06563467238644,53.286633520896586],[-127.06542651893179,53.286762555850686],[-127.06519064681702,53.286873356131025],[-127.064943260122,53.286974739848084],[-127.06469012236569,53.28707168383555],[-127.0644571138931,53.28718469783209],[-127.0642623042459,53.28732146314223],[-127.06409218604462,53.28746920237131],[-127.06389259844302,53.28760320424408],[-127.06368539527344,53.28773335689056],[-127.06351530265121,53.287881659707196],[-127.06340297375928,53.28804792787336],[-127.06332087627953,53.288220656839684],[-127.06323312711878,53.288392871631366],[-127.06317083402175,53.288568775491385],[-127.06313681026009,53.288747231784626],[-127.06311970996767,53.28892665697023],[-127.06312423931017,53.28910645317549],[-127.06310715385048,53.289285878191585],[-127.06306935625743,53.28946436818172],[-127.06297876430848,53.28963548764558],[-127.06291176435965,53.28981087762648],[-127.06286831425176,53.28998885338685],[-127.06282110680108,53.29016630700108],[-127.06272736199898,53.290324573723105],[-127.06265848088901,53.290499980316795],[-127.06263607925416,53.29069289808281],[-127.06259545315011,53.29087084837125],[-127.06251430790289,53.29104412367235],[-127.0624246565373,53.29121579881397],[-127.06229529012114,53.29137773617677],[-127.06212516289311,53.29152603685935],[-127.06197116928466,53.291680359933295],[-127.06184085369841,53.29184174948071],[-127.06173041494331,53.29200911911966],[-127.06161901426898,53.29217594149148],[-127.06157462446329,53.29235393385718],[-127.0615311671537,53.29253135314471],[-127.06146508863509,53.29270673371693],[-127.06137260409193,53.29287786846874],[-127.06119675962705,53.29302341312564],[-127.0611363456083,53.293199307534586],[-127.06102493944371,53.29336612924747],[-127.06085480057475,53.293513863246176],[-127.06069035348091,53.29366435173784],[-127.06058651839083,53.29383279049754],[-127.06044292293318,53.293990370788194],[-127.06032290841299,53.29415111063054],[-127.06001689301362,53.29420257764945],[-127.05971939045479,53.29418170358266],[-127.0594226796432,53.294155219476835],[-127.0590652968082,53.294144962007245],[-127.05876691386287,53.29416387374087],[-127.05847769678003,53.294210705214425],[-127.05818640234473,53.29425027607022],[-127.05788695969105,53.29426414853586],[-127.05758734750073,53.29427186378329],[-127.05728746932844,53.29426836721913],[-127.05698749221631,53.29426151840475],[-127.0566883359671,53.29424961504117],[-127.05639072254631,53.294224251851325],[-127.0560924156021,53.2942084133931],[-127.05579271939426,53.29421276352402],[-127.05549434840142,53.29423222265195],[-127.05519916760375,53.29426621847042],[-127.05491389936817,53.29432141395324],[-127.0546327117914,53.294388897399315],[-127.05438326428302,53.294485785665],[-127.05411896397794,53.294590092612765],[-127.05390378780359,53.29470461169708],[-127.05369280236873,53.29483645560136],[-127.05345781438099,53.29494834404015],[-127.0532256653764,53.29506076255769],[-127.05301833678034,53.29518865569826],[-127.0528177313145,53.29532208211009],[-127.0526095089473,53.29545222330973],[-127.05251584395282,53.29550235305441],[-127.05244035538766,53.29552822760577],[-127.05234743790437,53.295532977086054],[-127.05221288228094,53.29552688203487],[-127.05205261532268,53.2955070135488],[-127.05176652039378,53.29545352558862],[-127.05148308412096,53.295393855443464],[-127.05120960010203,53.29531896605408],[-127.0509208764393,53.295273342449434],[-127.05062761611794,53.29523391624369],[-127.05033352096913,53.295198987440365],[-127.05004832048154,53.29514380231182],[-127.04976580677166,53.295083555237284],[-127.04947260479375,53.295046375531946],[-127.04917852572333,53.295011999482924],[-127.04888973663137,53.29496356595845],[-127.04859042469533,53.294945485594006],[-127.04829080574783,53.2949531684229],[-127.04801531072711,53.29502339138592],[-127.04773785087363,53.29509082544522],[-127.04746452514243,53.295172788140896],[-127.0471943717673,53.29523174865639],[-127.04690015119756,53.29526740038724],[-127.04661389144655,53.29532089934373],[-127.04632864766563,53.29537719423913],[-127.04604142552992,53.2954301445399],[-127.04574500397261,53.29545292320122],[-127.04559728231018,53.29544582512707],[-127.04544926789492,53.29542751605846],[-127.04515516169957,53.2953920098552],[-127.04486285202775,53.2953531257931],[-127.04456970795985,53.29531817438505],[-127.04427008563465,53.295325847068476],[-127.04411828260955,53.295343988519136],[-127.04398090015854,53.29537489256676],[-127.04383814162445,53.295417039167226],[-127.04373433082037,53.295475658874764],[-127.04354702962745,53.29561623975645],[-127.04336068700094,53.29575793234163],[-127.04323140002904,53.29581284938814],[-127.04309283275511,53.2958342345542],[-127.04279541928155,53.29585477363926],[-127.04264550671883,53.295873452318716],[-127.04249106833758,53.295899457889824],[-127.04222686080185,53.29597068860435],[-127.04196877287846,53.296062024006446],[-127.04170005131137,53.29614113622164],[-127.04142844809392,53.29621746750328],[-127.0411616588746,53.29629879344904],[-127.04087836229711,53.29635898405679],[-127.04059894882026,53.29642361275372],[-127.04031956099237,53.296489925701636],[-127.04004696455732,53.29656458629037],[-127.03977536931608,53.29664146939355],[-127.03960622311034,53.29668104522253],[-127.03948682576457,53.29667929376668],[-127.0391867377394,53.29666847482021],[-127.03903608979056,53.296657468145725],[-127.03886998547519,53.296667320156544],[-127.03872770972454,53.296690973498166],[-127.03859909919733,53.296735239781576],[-127.03835338720519,53.296833181585555],[-127.03809617789872,53.296922268813574],[-127.03784788513421,53.297030316060386],[-127.03758882177891,53.29712053880352],[-127.03734036267977,53.297221308034615],[-127.03713112330371,53.29735030094858],[-127.03693807000985,53.29748812462435],[-127.03671159751764,53.297604386659614],[-127.03645046988304,53.297687337525545],[-127.03617359111067,53.29774129382091],[-127.0359013504331,53.29783106305142],[-127.0356614838613,53.29793791164331],[-127.03540088825525,53.298042708547506],[-127.03514537959846,53.29812504278941],[-127.0348938074032,53.29821462949833],[-127.03464058836009,53.29831375821582],[-127.03436796987519,53.29838839673833],[-127.03412525744892,53.29849415544766],[-127.03389211767272,53.298607664411364],[-127.03363683602782,53.29869952155622],[-127.03335939893492,53.2987691621621],[-127.03310034273574,53.29886049523322],[-127.03283058443482,53.298937346146296],[-127.03254533905347,53.29899529261083],[-127.0322550715457,53.29904039252164],[-127.03195651858276,53.29905419146755],[-127.03165803379223,53.29907078568017],[-127.03136177058171,53.29910136979358],[-127.03106752323728,53.29913753784787],[-127.0307762923687,53.29918208674606],[-127.03050360671755,53.2992544759666],[-127.03023780675305,53.29933913858662],[-127.02996906945127,53.29941933536289],[-127.02969254021217,53.29948840367432],[-127.029409192087,53.29954800224445],[-127.02912687237185,53.299610952527416],[-127.02883848996755,53.29965658340715],[-127.02853901308677,53.29967094641424],[-127.0282463603151,53.29973453980523],[-127.0279775543055,53.29977328543312],[-127.02766214781519,53.29979001600578],[-127.02736473847334,53.29981275693589],[-127.02706730305134,53.2998338211719],[-127.02676510644075,53.29985267598778],[-127.02646705023652,53.29988718930867],[-127.02616845476649,53.2999385041044],[-127.0259227573509,53.30000000982583],[-127.02560634049554,53.30005260653522],[-127.025329690853,53.30011717490454],[-127.02508881026384,53.300222898957294],[-127.02486143985975,53.300342506878415],[-127.02461976039565,53.30045383005061],[-127.02435925160113,53.30052554416746],[-127.02405237572339,53.30058421228991],[-127.02382656741844,53.300690924182234],[-127.02368095903165,53.30084959585092],[-127.02353163296814,53.301009428755236],[-127.02334806540695,53.30115330571271],[-127.02316448446308,53.301296062046426],[-127.02301497663157,53.3014491642336],[-127.02291455440503,53.301610251203606],[-127.02279948741763,53.301788270688256],[-127.0226401458943,53.30192297435044],[-127.0224261455454,53.30205254614877],[-127.022232076763,53.30218978903143],[-127.02206271244567,53.302338023322775],[-127.02191993229403,53.30249723295421],[-127.02178516913749,53.302637890762206],[-127.0216407477562,53.3027685386175],[-127.02149611568204,53.30296754344872],[-127.02130618877351,53.30308234042043],[-127.02126810855069,53.30325633488923],[-127.02114027786014,53.30341205361849],[-127.02095287823072,53.3035537186188],[-127.02074844022039,53.30368992756933],[-127.02055631937876,53.30383051204345],[-127.0203556093318,53.303966123546985],[-127.0201030793436,53.30405737144633],[-127.01982748980366,53.304128640055396],[-127.0195442335532,53.30419326019745],[-127.01926674910483,53.30426398801616],[-127.01901549883439,53.30436977921568],[-127.0188484951904,53.304499505702395],[-127.01852524722145,53.30450451885423],[-127.01828436681545,53.30441694967308],[-127.01795330308815,53.30437104418447],[-127.01766144425825,53.30431304184273],[-127.01736904410899,53.304271849890284],[-127.01707479188605,53.304231793511946],[-127.01677966048419,53.30419454949363],[-127.01648370504694,53.30416178455764],[-127.0161869528971,53.30413463682123],[-127.01589037470484,53.30411532091009],[-127.01559224241021,53.304108906982954],[-127.01528986188364,53.30412157594154],[-127.01499075130724,53.304153263504425],[-127.01470237667446,53.304201109316985],[-127.01442280394743,53.30426288014742],[-127.01414721704288,53.30433470015119],[-127.01387364494013,53.3044115397605],[-127.01362397742786,53.304505545881916],[-127.01341291524015,53.304602583382675],[-127.01315204063661,53.304660274616054],[-127.01276047100747,53.30467817953516],[-127.0124661283959,53.304712616620584],[-127.01216682507548,53.3047358999126],[-127.01186639931082,53.30475190473637],[-127.01156679819383,53.30476342005763],[-127.01126331832891,53.30476936549835],[-127.0109666037037,53.304744436296644],[-127.01067152929511,53.30470885280451],[-127.01038894084186,53.30464571633982],[-127.01012836081821,53.30455885406878],[-127.00986371274136,53.304459710061074],[-127.00963369958339,53.30435410423006],[-127.00941537678209,53.30422599002618],[-127.00920073246526,53.304095038614776],[-127.00892734390052,53.3039836420834],[-127.00871385582995,53.30390030270169],[-127.00841953408724,53.30385686427039],[-127.00811537604005,53.30383479675312],[-127.00781723342409,53.30382779872944],[-127.00751758425875,53.30383706343938],[-127.00721717661104,53.30385362109371],[-127.00691767585323,53.3038684851732],[-127.00661920063125,53.303887256823366],[-127.00631957750183,53.30389763871321],[-127.00602008957885,53.3039130651112],[-127.00572144016385,53.30392455767066],[-127.0054205104819,53.30391926235292],[-127.00511792798623,53.303923499419575],[-127.00484109875268,53.303864782824114],[-127.00459787716754,53.303756473533],[-127.00432824986204,53.30368368500337],[-127.00427352643912,53.30351720388198],[-127.00428223043563,53.3033300187302],[-127.00444452839909,53.303158905885034],[-127.00460999853149,53.303002322572546],[-127.00470279063916,53.30283291762494],[-127.00472407587286,53.30266131193948],[-127.00473579132759,53.30248194418387],[-127.00468729203581,53.30230084491887],[-127.00456670426152,53.302131559656395],[-127.00445362223475,53.30196164609271],[-127.00436514869017,53.30179881159266],[-127.0042540014509,53.30163113128564],[-127.00413821689015,53.301465721969706],[-127.00393924017787,53.301320072040056],[-127.00374315634241,53.301177749655196],[-127.00357833337009,53.301045255632594],[-127.00337405495586,53.300913650446375],[-127.00322097878417,53.300760879989845],[-127.00307893938371,53.300598496948545],[-127.00297533157769,53.300431307469005],[-127.00286515392925,53.300264173367836],[-127.00274424659378,53.30008088799494],[-127.00272915997586,53.299999779708784],[-127.00271082094655,53.29990078095844],[-127.00262623704933,53.299742949700196],[-127.00249177623219,53.299582187068246],[-127.00240391466446,53.2994053359891],[-127.00228637068703,53.29924443032824],[-127.00219113942784,53.29907380811935],[-127.00210060159718,53.298902581526335],[-127.00205118554146,53.29872148872044],[-127.00193636319213,53.298556633731465],[-127.00186174350571,53.29838247603847],[-127.00179366818253,53.29820714265328],[-127.0017085860159,53.29802803564053],[-127.00175448877256,53.297823730001845],[-127.00164205465973,53.29768014273046],[-127.00147209381166,53.29752863275961],[-127.00139399841976,53.29736627303334],[-127.00134822614436,53.29718010268542],[-127.00120441980799,53.297021658158634],[-127.00107281092107,53.296861981240085],[-127.00091906315346,53.296719861938115],[-127.00083846754288,53.296531188257376],[-127.00070959352483,53.29636813554035],[-127.00060505997173,53.29620038690245],[-127.00054355022166,53.29602444162424],[-127.00050829949231,53.29584546951019],[-127.00049088128485,53.295665782437524],[-127.000492256123,53.295485945980545],[-127.00051524810219,53.295306483114175],[-127.00055614003904,53.295128545575416],[-127.00060832048679,53.29495107758417],[-127.00065956839423,53.29477361740833],[-127.00070045941871,53.29459568873318],[-127.00072628955255,53.29441675755028],[-127.00074834786439,53.29423730239556],[-127.00076756648708,53.29405731541566],[-127.0007802018839,53.2938768191984],[-127.00078440151805,53.29369694979244],[-127.00077827149595,53.29351773212468],[-127.00075804021373,53.293338633282225],[-127.00073119980021,53.29315791395124],[-127.00069678964717,53.29297500856079],[-127.00065113167798,53.2927933273275],[-127.00059239959263,53.29261510856987],[-127.00051783590457,53.2924426342997],[-127.00042372018326,53.29227815877607],[-127.00024205686532,53.292146922216666],[-127.00000023168258,53.29205484254464],[-126.9999755642679,53.292044966373616],[-126.99973422278613,53.29193327001407],[-126.99951236875108,53.291810769492855],[-126.99928960883422,53.29168996131675],[-126.99905577442391,53.291577644677915],[-126.99880720019156,53.2914777763444],[-126.99855208247216,53.29137963869234],[-126.99829144993836,53.29128603756195],[-126.99802443286247,53.291200888301425],[-126.99775205763387,53.29112754354548],[-126.9974735096028,53.29107162123375],[-126.99717973889973,53.29104719826595],[-126.99687615728561,53.29104470988455],[-126.99657077408713,53.29104615288452],[-126.9962699769506,53.29104251018674],[-126.99596920651587,53.29103999590059],[-126.99567886455696,53.29100153056627],[-126.99539187181426,53.29094567420986],[-126.99510315925725,53.290896554179334],[-126.9948144473723,53.2908474334454],[-126.99452396269697,53.290802808596624],[-126.9942299316517,53.29076717620365],[-126.99393416726227,53.290737724461124],[-126.99363565804953,53.290711091556105],[-126.99333812067297,53.2906861259415],[-126.99304057057373,53.290660603955565],[-126.9927438870699,53.29063227738003],[-126.99244897939447,53.2905988887923],[-126.9921576572367,53.290558746916886],[-126.99186992446175,53.290510731315315],[-126.99157936625319,53.29046273861602],[-126.99128690334562,53.290413640678366],[-126.99099440155447,53.290362857218184],[-126.99070374016695,53.29031038151872],[-126.99041486663019,53.29025397316624],[-126.99012965984423,53.290193607542584],[-126.98984902559899,53.2901281566906],[-126.98957484521888,53.29005705819237],[-126.98930802409794,53.28997916618925],[-126.98904948351827,53.289893370550715],[-126.98880012709762,53.28979909014398],[-126.98855902494992,53.28969577703376],[-126.9883252693952,53.28958511499228],[-126.98809795494952,53.289468240994],[-126.98787520063443,53.28934572645956],[-126.98765799294236,53.28921924833917],[-126.98744353188717,53.28908994141797],[-126.98723279273324,53.28895836229965],[-126.98702390563393,53.28882620271524],[-126.98681692704749,53.28869459160151],[-126.98660996090867,53.288564100458366],[-126.98640671663478,53.2884313371699],[-126.98621640186175,53.288289502675674],[-126.98604377586045,53.28814024264263],[-126.98589450131355,53.28798462159496],[-126.98577044193154,53.28782262414411],[-126.9856669210782,53.28765486285161],[-126.98557924650758,53.28748192348986],[-126.98550279564623,53.28730608532775],[-126.98543477999188,53.28712962136],[-126.98543148779709,53.28694870312734],[-126.98540214144683,53.28677807606225],[-126.98543649227092,53.286599641970184],[-126.98544544643912,53.28641974247734],[-126.98542341978987,53.28624065584483],[-126.9853751004881,53.28606290784818],[-126.98533710958408,53.28588450940233],[-126.9853225557645,53.28562301323841],[-126.98524682252248,53.285397869703615],[-126.98509711612704,53.285223203734],[-126.98490598955011,53.285005184237775],[-126.9847002265945,53.28480409234504],[-126.98443988060596,53.284559200009575],[-126.98419417789533,53.28429681448206],[-126.9840025050251,53.28409560455575],[-126.98375682068232,53.28383377368907],[-126.98356590320816,53.283624158002674],[-126.98329234881214,53.283335666605126],[-126.98303275820429,53.28308180140197],[-126.98294511686399,53.282909415317725],[-126.98289683998858,53.282732230474416],[-126.98290205970048,53.282552917553645],[-126.9829439324195,53.28237442157658],[-126.98304052328753,53.28220499169832],[-126.98315785521693,53.28203931595875],[-126.983323478307,53.28188949089585],[-126.98348341182165,53.281737462880024],[-126.983614942561,53.281576150738026],[-126.98370207050696,53.28140400201115],[-126.98375714139861,53.28122763711078],[-126.9837792649575,53.28104818389825],[-126.98378729321325,53.2808682917386],[-126.98386120143162,53.280694011495],[-126.98401452179482,53.28054036125174],[-126.98421242471767,53.28040538860017],[-126.98437707767506,53.28025500520006],[-126.98445948263254,53.28008233021595],[-126.98447033112124,53.279902970243654],[-126.98442767383385,53.27972517441868],[-126.98434003397496,53.27955279802801],[-126.98419637951248,53.279394886983326],[-126.98399876832922,53.27926038753344],[-126.98376595118869,53.279146356372166],[-126.98356462471433,53.27901357213204],[-126.98343315184927,53.27885443878677],[-126.98344961386391,53.278673911883196],[-126.98356886696862,53.27850989560011],[-126.98375440046892,53.27836886806592],[-126.98385267466273,53.2781915800546],[-126.98387707952067,53.27802947889719],[-126.98386913190147,53.27784970989692],[-126.98383396517004,53.27767129588473],[-126.98380161080233,53.27749229383805],[-126.98371893668113,53.277290179580255],[-126.98372653962437,53.27713269041409],[-126.98369239914291,53.27695762911622],[-126.98366568124833,53.27677858026501],[-126.98360146004818,53.27660263878766],[-126.98347273953961,53.276440685925046],[-126.9833654725835,53.27627182358512],[-126.9834007962821,53.27609450149659],[-126.98339098580354,53.275915312439835],[-126.98333895826306,53.27573815826195],[-126.98327849678317,53.275562185392204],[-126.98320585806174,53.27538799849153],[-126.98313415369984,53.2752132480582],[-126.98306432808762,53.27503847304685],[-126.98303038757822,53.27487180856924],[-126.98302725764134,53.27465670996627],[-126.98294857648813,53.27450498169961],[-126.98284693861179,53.2743355164245],[-126.98275563985808,53.274165965448105],[-126.98271330661565,53.27400217589468],[-126.98267122928465,53.27380868803589],[-126.98258643363675,53.27363627747341],[-126.98250162575063,53.27346331120332],[-126.98243275251615,53.273288536787696],[-126.98240416400607,53.273109502860244],[-126.98238308882345,53.27293040672375],[-126.98237493024203,53.27286268307925],[-126.98235480194977,53.27268357907955],[-126.98233276762176,53.272503935097916],[-126.98230137021336,53.27232492432927],[-126.98220633256,53.272156524194386],[-126.98207298187849,53.27199628409662],[-126.98200409967919,53.271820944705645],[-126.98191086440067,53.27164916807117],[-126.98164993861188,53.27157681263601],[-126.98137130865501,53.271510214197015],[-126.98109358492742,53.27144247821237],[-126.980818620042,53.271372486863584],[-126.98055550743045,53.271286701813445],[-126.98027686800548,53.27121953620093],[-126.97999464007019,53.27116024266211],[-126.97972236056711,53.271084059709025],[-126.979434761761,53.27103545786188],[-126.97914805612399,53.270985162809254],[-126.97890515489966,53.27087960413697],[-126.97871780806196,53.270739408902294],[-126.97858929282505,53.2705847272517],[-126.97866223408475,53.27040878113981],[-126.9787022624364,53.27023085653609],[-126.9787536612552,53.27005788459904],[-126.97886626244834,53.26989113049415],[-126.97902335708906,53.26973913968052],[-126.97912846985301,53.26957356750037],[-126.97924108116104,53.26940736863115],[-126.97937069870213,53.269245520027376],[-126.97952115607265,53.269091333393256],[-126.97958286118835,53.26891715544753],[-126.97950758256296,53.26874915461335],[-126.97953814838597,53.26856906674603],[-126.97953680198596,53.26838925122066],[-126.97955705869187,53.268209813105685],[-126.97958577184852,53.26803086090629],[-126.97959758447799,53.26785149244876],[-126.97959341327808,53.26767170017267],[-126.9796005100879,53.267491805903575],[-126.97960855143508,53.26731246852362],[-126.97962599781,53.26713305348839],[-126.97967258471421,53.266955083018864],[-126.97972388449433,53.26677818508328],[-126.97973850566069,53.266598793300474],[-126.97974374988998,53.26642004361882],[-126.97987717717174,53.266260959295245],[-126.9801073808068,53.26614420818167],[-126.98037214100611,53.26605967298253],[-126.98064945241727,53.26598959027956],[-126.98088552072207,53.265882882113544],[-126.98097831120195,53.265713483637796],[-126.98097221725091,53.26553202190897],[-126.98097651155355,53.26535271517787],[-126.98098360228992,53.265172829571384],[-126.98098505900153,53.26499298155909],[-126.98101276751694,53.264811240320654],[-126.98097150097142,53.26465192244921],[-126.98070626583583,53.264553830421825],[-126.98045973305973,53.26445223090705],[-126.98020948459043,53.264352337764336],[-126.9799409392734,53.264273318961],[-126.97966497449237,53.26419828685069],[-126.9794705332274,53.2640749667609],[-126.97941375637795,53.263894478933004],[-126.97933366819568,53.26372147083874],[-126.97921713895904,53.26355605078463],[-126.97907353209534,53.26339701200149],[-126.97901596725008,53.26322325311935],[-126.97895569772628,53.26305400725946],[-126.97873859984057,53.262925261680635],[-126.97853001311243,53.2627986953755],[-126.97840134104557,53.262636171258045],[-126.97831751880506,53.26246319320797],[-126.97822434513047,53.26229253307577],[-126.97808917578082,53.262132858798026],[-126.97805121144418,53.26195334454321],[-126.97812327342366,53.261780201751954],[-126.97832880001107,53.261653017310934],[-126.97855240311772,53.26153632318398],[-126.97869898973099,53.26137825161174],[-126.97880497741524,53.26121043072671],[-126.97888640873295,53.26103721007912],[-126.97896313967364,53.260863472393524],[-126.9790257423855,53.260687601353695],[-126.97906009892876,53.260509166699016],[-126.97909729235036,53.260331273311614],[-126.97913070387004,53.260152281690964],[-126.97912091521168,53.25997309079945],[-126.97912990351864,53.25979374494108],[-126.97914829324063,53.25961488618688],[-126.97916386071874,53.259435485996576],[-126.97920573920027,53.259257544836686],[-126.97924951021437,53.25907959698644],[-126.97930551692481,53.25890322430054],[-126.97938317336661,53.258729469501304],[-126.97950614142394,53.25856543356678],[-126.97968781942923,53.25842331273509],[-126.97991036662215,53.258302151566575],[-126.98015585969837,53.2581987186291],[-126.98042446814618,53.25812030874987],[-126.98071347435022,53.25807086133254],[-126.98100952548927,53.25804208775226],[-126.98130776597112,53.25802673175339],[-126.98160823544538,53.25802648711376],[-126.98189835082258,53.25806554314318],[-126.98217871863417,53.25812989376083],[-126.98245996836546,53.25819143081191],[-126.98272958223708,53.25827714876812],[-126.98299377104401,53.258372439368884],[-126.98323548345401,53.25830825603644],[-126.9834226894535,53.25816216644951],[-126.98355698386783,53.258001384629715],[-126.98367142470387,53.25783517395367],[-126.98380937901054,53.257671000109326],[-126.98407540336484,53.25760268734104],[-126.98435289716552,53.2576642510688],[-126.98463323993595,53.257727475666194],[-126.98491995344058,53.25778167415245],[-126.98521803038439,53.25779936742775],[-126.98551735596085,53.257790723475985],[-126.98581659163321,53.257777588748596],[-126.9861154564572,53.25778911522836],[-126.98640387992023,53.25783601748534],[-126.98668244079455,53.257903169181105],[-126.98694732070892,53.25798724079631],[-126.98719845433241,53.25808542735692],[-126.9874320849817,53.25819833388533],[-126.98766385225493,53.258311811212664],[-126.98790760818679,53.258416224661765],[-126.98816517972578,53.25850875333479],[-126.98843554197406,53.25858605329198],[-126.98870501334834,53.25866504522007],[-126.98898988703834,53.258720369723854],[-126.98928786555197,53.25873413655981],[-126.98964473464827,53.25873619798054],[-126.98993183037649,53.258685623555614],[-126.99019943815065,53.258605523596806],[-126.99048257991943,53.25854657295498],[-126.99071285682616,53.25843596655898],[-126.99088593662702,53.25828886249966],[-126.9910846446224,53.258153869057566],[-126.99121704549002,53.25799365884931],[-126.99133993717032,53.25782904611855],[-126.99149028408767,53.25767373212722],[-126.99165578186341,53.257523884587094],[-126.99182601948141,53.25737568233117],[-126.9919877203974,53.25722418982894],[-126.99216844588811,53.25708318677114],[-126.99238809983582,53.256960896537],[-126.99260109654884,53.25683474447196],[-126.99278272500449,53.25669204770297],[-126.99296746019796,53.2565224337602],[-126.99318966025395,53.256428140945594],[-126.99346504730792,53.256360284254406],[-126.9937601068689,53.25632980180325],[-126.99403737010188,53.256261937015324],[-126.99429147097156,53.25616681009591],[-126.99455229276985,53.25607834899898],[-126.99481984866543,53.25599710931627],[-126.99509615037336,53.25592812961846],[-126.9953911265351,53.25589428240683],[-126.99567422786271,53.25583531941903],[-126.99596727257597,53.25579924606535],[-126.99626681959312,53.25580065707833],[-126.99656409963629,53.25582505120822],[-126.99686354279036,53.255821415062485],[-126.997170613133,53.255823316325596],[-126.99745580340162,53.25585229165943],[-126.99760720770983,53.255901994830054],[-126.99770132766734,53.25595162381207],[-126.99780993368047,53.25601793770329],[-126.99796277987605,53.256049145281146],[-126.99823494007464,53.256043494271324],[-126.99841320430069,53.25599774074717],[-126.9985202489851,53.25599796031648],[-126.99882817412293,53.25599592403344],[-126.99910544016446,53.255928603025524],[-126.99940155641923,53.25590369985385],[-126.99969875945175,53.25592472543375],[-127.0000010278834,53.2560403904988],[-127.00025119431373,53.256136881640884],[-127.00049094839629,53.25623009870333],[-127.00064584692232,53.25611002411774],[-127.00067540876915,53.25593105771587],[-127.0006824271943,53.25575172569122],[-127.00068286868141,53.25557189337791],[-127.00067766247888,53.25539209972097],[-127.00069594566439,53.25521267262792],[-127.00070203265854,53.25503334838955],[-127.00072030242056,53.254853365624164],[-127.00070008990306,53.25467426319077],[-127.0007428325473,53.254496870611064],[-127.00095007992228,53.25436739021137],[-127.001209945456,53.25427892225296],[-127.00147650620634,53.25419599947472],[-127.00172093663002,53.25409085382271],[-127.00197407409443,53.253996273967445],[-127.00225710218191,53.253934498987846],[-127.0025275598799,53.25385770786846],[-127.00278145257133,53.253755841382045],[-127.00297359101764,53.25362312365534],[-127.00307179358569,53.25344862252259],[-127.0030657261005,53.253272197341246],[-127.00298332657701,53.25304432074551],[-127.00300841492523,53.25291470028583],[-127.00304922871999,53.252735637755215],[-127.00311360825735,53.25256086671896],[-127.00322231193898,53.25239411974644],[-127.00335081420175,53.25223056657298],[-127.0034651747166,53.25206489194668],[-127.00352294834494,53.25188849131364],[-127.00352243131715,53.251708657668935],[-127.00349376802987,53.25152962681835],[-127.00346041762916,53.251351200305606],[-127.00346461503565,53.25117189144369],[-127.00342749705246,53.25099293205105],[-127.00343262569403,53.25081361528036],[-127.00350359187799,53.25063934384987],[-127.00363681318522,53.25047742644742],[-127.00374930399096,53.25031233187598],[-127.00377790431367,53.25013281640145],[-127.00378582630054,53.24995291117234],[-127.00381350671957,53.249774523895674],[-127.00387975740854,53.24959917156188],[-127.00390742399419,53.24942022859386],[-127.00393696734245,53.249241260753266],[-127.00396556454362,53.24906230985796],[-127.00399510739526,53.24888334196926],[-127.00402371912531,53.24870439089923],[-127.00405231538254,53.248525430970716],[-127.00408657134528,53.24834698781977],[-127.00413492485487,53.24816954576014],[-127.00421343236988,53.24799689493349],[-127.00433343611616,53.24783229166156],[-127.00438851028574,53.24766151529683],[-127.00443108374563,53.247477954961674],[-127.00443807161304,53.2472980662848],[-127.00443191939969,53.24711827989826],[-127.00443139877419,53.24693845476984],[-127.00444966235906,53.24675902630445],[-127.00446229451427,53.24657964550755],[-127.00447211844522,53.246400288473275],[-127.00447270171317,53.24622773244638],[-127.00449442595212,53.24603594951639],[-127.00449125659645,53.24586286052326],[-127.00443823155574,53.24568572083997],[-127.00436650299486,53.245511536173716],[-127.00424432128419,53.245347298090074],[-127.00414173553352,53.24517842109098],[-127.00406252759373,53.24500541999504],[-127.0040001467667,53.24482947075962],[-127.00391906305461,53.24465648542506],[-127.00376335253094,53.24450317947651],[-127.00353209821289,53.24437012510181],[-127.00345210792861,53.24420385295401],[-127.00345256390084,53.2440251308182],[-127.0034811462127,53.24384561494995],[-127.00344219925576,53.24366779086542],[-127.00328570773617,53.24352121364119],[-127.003002794765,53.24346590714787],[-127.00270386713503,53.243447701689966],[-127.00240673718979,53.24342612786214],[-127.00213109444526,53.24336066472638],[-127.00207909473811,53.243186311877714],[-127.00209642071597,53.243006891413636],[-127.00212033668625,53.24282797996057],[-127.00212545649237,53.242648097877776],[-127.00213809728588,53.242468716941076],[-127.00213570957835,53.242288907222665],[-127.00209113903706,53.24211113012657],[-127.00198952887756,53.24194279862482],[-127.00178832240807,53.24181004272162],[-127.00155475740165,53.24169772809475],[-127.00132856837254,53.241579748417884],[-127.0011468545603,53.24143729843025],[-127.00106113094716,53.241265470618906],[-127.00103716978741,53.24108639865111],[-127.00105544525621,53.240906970156615],[-127.00109158453151,53.24072851131413],[-127.00114092589303,53.2405533023872],[-127.00125336010383,53.2403865244807],[-127.00137143723865,53.24022026351267],[-127.00149989626033,53.24005614669782],[-127.00164069211593,53.23989809256257],[-127.00180044073124,53.23974772139229],[-127.00198671564209,53.23960777476708],[-127.00219005291252,53.23947496218158],[-127.00240097571752,53.239345446506384],[-127.00260904799286,53.239214834070246],[-127.00282283063603,53.239086969643516],[-127.00304514305252,53.23896295877836],[-127.00325986737467,53.23883565027477],[-127.00345092419458,53.23870014261643],[-127.00359655381453,53.23854820312629],[-127.00368444248925,53.2383760280035],[-127.0037581012845,53.238197815157086],[-127.00386202797242,53.23802886550714],[-127.00400471156114,53.23787191275127],[-127.00415683082336,53.237717120837],[-127.00431652219422,53.237565061262146],[-127.00447903335728,53.23741354228061],[-127.0046434484698,53.23726257163977],[-127.00480595729738,53.237111052186165],[-127.00496374073515,53.236957887351245],[-127.00509128355885,53.236796023825],[-127.00520840452978,53.23662975765016],[-127.00526239649618,53.236453386555],[-127.00525906323,53.23627413998774],[-127.00524540284002,53.23609442519718],[-127.00534480592472,53.235933355589225],[-127.0056025255532,53.23583872725097],[-127.0058354333219,53.235727510742485],[-127.0060226095153,53.23558698485744],[-127.00620503211675,53.23544425805529],[-127.00649126617294,53.235325855919264],[-127.00667523065682,53.23520888604309],[-127.0069186609262,53.23510597701988],[-127.00722694620447,53.23500699848727],[-127.00736223669348,53.23489548752361],[-127.00757090341848,53.23483040366992],[-127.00776416970386,53.2347492080053],[-127.0079921813654,53.234629620706805],[-127.00822988198566,53.234522840449614],[-127.00849293879509,53.2344561719887],[-127.00873923975969,53.234395256789995],[-127.00895855136851,53.23434352551771],[-127.00921632429883,53.234291475457134],[-127.00951546495753,53.23428220625609],[-127.00981462049732,53.234272936172474],[-127.01011385450879,53.234267581827496],[-127.01041331795702,53.23427119749612],[-127.01071214369912,53.23428769876886],[-127.0110091868291,53.234308131652995],[-127.01130375665956,53.234343159965796],[-127.01158297359177,53.2344029599087],[-127.01182850213888,53.23450563350184],[-127.0120426652895,53.23463153945125],[-127.01225591225084,53.234758008590894],[-127.01248578141353,53.23487313968385],[-127.01274697623768,53.23496390820572],[-127.0130034345394,53.23505247568064],[-127.01327766974356,53.23506077259947],[-127.01353829891602,53.235049581433024],[-127.01380106340604,53.23501035967732],[-127.01406366778916,53.234963860127344],[-127.01437639633973,53.234933729310185],[-127.01460458773444,53.234861752105985],[-127.01474627639892,53.23470422952902],[-127.01488130806723,53.23454341128774],[-127.01509323267727,53.23441946594233],[-127.01537031933496,53.23435098579404],[-127.01564737651239,53.23428194052319],[-127.01590610170106,53.23419177166385],[-127.01613990547057,53.234079962117725],[-127.01638612848458,53.233977009413934],[-127.01664966857048,53.2338923910114],[-127.0169218886956,53.23381722606154],[-127.01719991278426,53.233749298235495],[-127.01748479438993,53.233693071377786],[-127.01777967672004,53.23366308459972],[-127.01807886665316,53.23365547850661],[-127.01837670466767,53.23367028374914],[-127.01867300565745,53.233698556080796],[-127.0189709658468,53.233718405392494],[-127.01926976399915,53.2337337648651],[-127.019559841864,53.23377664566026],[-127.01982644497724,53.23385783267718],[-127.02013036303593,53.23392972533495],[-127.02042713790716,53.23393894119575],[-127.02071946846536,53.23388040149801],[-127.02099678447762,53.23382254610934],[-127.02130420679117,53.233767236422246],[-127.02158657441925,53.233763127790446],[-127.02189184079249,53.23377394304776],[-127.02219102919813,53.23376688234808],[-127.0224902730658,53.2337614966421],[-127.02278913592156,53.23374099156093],[-127.02307895156639,53.23369535761787],[-127.02332520968939,53.23359463096424],[-127.02357714886259,53.23349665144488],[-127.02383970020657,53.233410349198714],[-127.02410512702332,53.23332626247054],[-127.0243696070321,53.233242183315014],[-127.0246330996044,53.23315643586038],[-127.02489178503589,53.233065682742854],[-127.0251475806167,53.23297159260931],[-127.0254023749508,53.23287526961965],[-127.02565623586798,53.232779509896915],[-127.02591298593765,53.23268653028653],[-127.02617361032152,53.23259856319364],[-127.02644009416679,53.232520064344286],[-127.02673552664841,53.23247436374133],[-127.02703206779246,53.23243538460606],[-127.02729393207669,53.232360285246884],[-127.02751616452812,53.23223734831683],[-127.02769743314988,53.23208899507671],[-127.02783529584103,53.23193148929039],[-127.02794856121736,53.23176524173247],[-127.02805233311574,53.2315951502109],[-127.0281598992633,53.23142614615019],[-127.02828354274885,53.23126260491887],[-127.02842513982876,53.23110451019275],[-127.02857620085409,53.23094912988378],[-127.02873198522883,53.230795393574695],[-127.02888776847021,53.23064165704846],[-127.02903881134772,53.230486285204265],[-127.02915962789892,53.23032220273963],[-127.0292728687425,53.2301559539054],[-127.02939839408492,53.229992950752006],[-127.02953620424964,53.229833211164824],[-127.02968820106291,53.22967838585444],[-127.02985249455749,53.229527935426155],[-127.03003197625117,53.22938407566356],[-127.03022187816208,53.229244606974056],[-127.03040230158969,53.229101294181895],[-127.03056849391436,53.22895194664923],[-127.03076410295566,53.22881578885265],[-127.03099881065363,53.22870506171371],[-127.03125646863236,53.22861262684169],[-127.03152284944272,53.228531311322435],[-127.03180081528963,53.228463349075206],[-127.03207207022292,53.22838927747171],[-127.03229528061163,53.228269683946756],[-127.03247854211101,53.22812746359146],[-127.03262956280425,53.2279720869665],[-127.03275035822931,53.22780800062495],[-127.03282775160888,53.22763477265722],[-127.03277278182559,53.22745878053652],[-127.03271403246116,53.22728169185772],[-127.03274910817758,53.22710435058007],[-127.03285382229969,53.22693536644064],[-127.03301146632347,53.22678217243849],[-127.03323563855608,53.226663689043214],[-127.03350782360421,53.22659016161364],[-127.03379756483362,53.226543936700644],[-127.03409134570357,53.22650944535965],[-127.03438713914296,53.22648052916324],[-127.03468063102993,53.22643426934988],[-127.03496575564328,53.22639088753186],[-127.03523592255222,53.22631177129887],[-127.03546771436265,53.226198263685816],[-127.0356429698884,53.226037059865455],[-127.03574550828928,53.2258944277402],[-127.03581038257468,53.225708416873466],[-127.0358175214505,53.225540282350686],[-127.03581518360389,53.225368313411174],[-127.03581057146678,53.225180112867186],[-127.03580257763115,53.225007063867814],[-127.03581804161632,53.22483437461659],[-127.03590394932758,53.22466443126101],[-127.03610431531786,53.224532148622124],[-127.03632081139511,53.22440755902904],[-127.0365163672521,53.224270835774895],[-127.03670718280945,53.22413246842666],[-127.03687049923273,53.223982015969895],[-127.03698181785346,53.22381521089122],[-127.03705351706321,53.2236403441868],[-127.0370707154397,53.22346148125276],[-127.03710386617801,53.223283034497435],[-127.03718028906431,53.223109246811525],[-127.0373114324253,53.22294787027511],[-127.03750604644806,53.222811709196506],[-127.03766093735841,53.2227005461277],[-127.0377715011107,53.22257968655904],[-127.03780416126125,53.2224578326785],[-127.03786141074171,53.22230606620457],[-127.03791273039822,53.22214146156417],[-127.0379921057787,53.2219738144931],[-127.03801064262873,53.221811746760025],[-127.03793083563913,53.22165613359691],[-127.03784078198463,53.221465884046495],[-127.03784962299719,53.22129101113858],[-127.03792228732028,53.22111725563943],[-127.03806003634107,53.22095750539408],[-127.03823185242742,53.2208103376782],[-127.03840083341076,53.22066207404261],[-127.03853857891981,53.220502314240555],[-127.0386423219587,53.22033389728298],[-127.0387341202601,53.22002271857026],[-127.03876724740647,53.219843706420605],[-127.03877409825184,53.21966436875598],[-127.03875654900578,53.2194846891418],[-127.03873620726456,53.219305589741225],[-127.03867184419671,53.21912967280813],[-127.03861684727212,53.21895311799892],[-127.038581498492,53.218774714749],[-127.0385592681271,53.218595067083214],[-127.03855485103381,53.21841527228517],[-127.0385626054339,53.21823480609922],[-127.03860426313022,53.218059080531994],[-127.03872022767084,53.217891676628135],[-127.03880983367505,53.21772057741746],[-127.0388768193633,53.21754519443526],[-127.03892404622654,53.217367743612805],[-127.03891588981838,53.217188537235565],[-127.0388983271225,53.217008292801594],[-127.03888359936995,53.21682857926234],[-127.03888951773013,53.2166498141931],[-127.03897909288582,53.216477594495274],[-127.03912911749028,53.216322207823474],[-127.0393094419181,53.21617832485228],[-127.03949262763165,53.216036101703914],[-127.03967960341714,53.215896077016176],[-127.03987226154028,53.2157576873717],[-127.04006779346383,53.2156220778764],[-127.04026806078295,53.215488658487665],[-127.04047213469217,53.215356890537315],[-127.04068952905256,53.21523341339908],[-127.04093943030814,53.215134292130685],[-127.04120279010276,53.21504906267706],[-127.0414699979776,53.21496716027718],[-127.04174207971465,53.214893057844805],[-127.04201121535732,53.214813942960205],[-127.04225729077807,53.214712055737564],[-127.0424641883437,53.214581379873515],[-127.04262461248723,53.21443037893376],[-127.04268125490813,53.214254528536785],[-127.04262249631479,53.214078008129505],[-127.04248998864884,53.21391613804115],[-127.0423193709339,53.213768057808736],[-127.0421255926514,53.213631376915565],[-127.04190405320931,53.21351063558235],[-127.04165123806558,53.21341425477233],[-127.04138014973522,53.21333820280582],[-127.04109819608759,53.213277367798426],[-127.04080733298423,53.213236223417574],[-127.04050856159455,53.213216437058215],[-127.04021167997148,53.21319719808819],[-127.03991552326578,53.2131689791371],[-127.0396211036964,53.21313570649097],[-127.0393355818597,53.2130821862805],[-127.03906722445768,53.213002187885834],[-127.03882453435257,53.212897868908264],[-127.03860207767363,53.212777120548395],[-127.03839532337552,53.21264671451753],[-127.03820061785171,53.212510044370184],[-127.03800962334236,53.212371656184786],[-127.03782789786074,53.21222870456555],[-127.03766752995634,53.21207660175199],[-127.03755934707864,53.21191115174617],[-127.03752681559249,53.211732158210076],[-127.03752238975146,53.21155179810941],[-127.03752923089829,53.21137190407981],[-127.03754171214564,53.21119251641671],[-127.03755606878707,53.211013112315136],[-127.03757230079873,53.210833691774226],[-127.03758946406121,53.21065369833225],[-127.03760662602933,53.210474269607566],[-127.0376256783236,53.210294824310736],[-127.03764471545253,53.210115379125014],[-127.0376468883539,53.209936081582185],[-127.03764435148868,53.20975626949746],[-127.03764181442509,53.20957644843334],[-127.0376383323872,53.20939664459026],[-127.0376357953708,53.209216823491495],[-127.03763983004059,53.2090369537969],[-127.03765418553394,53.208857549476505],[-127.0376760561269,53.208678635093875],[-127.03769509231446,53.208499189744764],[-127.03769162514173,53.20831938566824],[-127.03767315365133,53.20814026872646],[-127.03767436729129,53.207960414663624],[-127.03767838782156,53.20777998024005],[-127.03762997987954,53.20760393109781],[-127.03751150171419,53.20743857090298],[-127.03736951745479,53.207232522875465],[-127.03739534956611,53.20710007863016],[-127.0375188176029,53.206933729502744],[-127.0376073087942,53.20675647260743],[-127.03773865766449,53.20656707961159],[-127.03792745016106,53.20646402598417],[-127.03815623665066,53.206347731506675],[-127.03838313408771,53.20623033262982],[-127.038578626515,53.206094715938015],[-127.0387257680465,53.205938242343784],[-127.03883703185282,53.205771433916844],[-127.0389303622222,53.20560030062545],[-127.03902463561374,53.2054297147344],[-127.03913589690329,53.20526290598123],[-127.03927831147834,53.20510478781807],[-127.03944817003061,53.20495707789484],[-127.03963319555649,53.204815392870785],[-127.03981821850368,53.20467426332398],[-127.04000800473332,53.20453589737759],[-127.0402120266007,53.204404129102706],[-127.04041699118692,53.20427291690789],[-127.04062289827073,53.204142251826205],[-127.04082883275952,53.20401214189127],[-127.04103569629233,53.203882032379724],[-127.04124350232107,53.20375246997007],[-127.04145133576182,53.203623462700705],[-127.04166009823719,53.20349445584321],[-127.04186599769024,53.20336378854694],[-127.0420776052335,53.203235867428596],[-127.04232169536694,53.20313287581114],[-127.04260646171691,53.20308163330696],[-127.04290627779388,53.20307058654343],[-127.04320554945328,53.20307579549003],[-127.04352373979386,53.203087004276206],[-127.043801472573,53.203055425032716],[-127.04406635101262,53.20295840487865],[-127.04430665676675,53.202854321950404],[-127.04450017040338,53.20271591562066],[-127.04465486283222,53.202562164279975],[-127.04476042635022,53.202394279466276],[-127.04482454419957,53.20221836077478],[-127.04484074200086,53.202038938393585],[-127.04479696442066,53.20186116537188],[-127.04470460107848,53.20169054371183],[-127.0445842506879,53.201525771205084],[-127.0444471499995,53.20136618398565],[-127.04429793814751,53.201210073808255],[-127.044140379899,53.20105738952322],[-127.04396703085771,53.2009104556166],[-127.0437751385542,53.2007726398351],[-127.04355460677601,53.200651892429555],[-127.04331194883399,53.20054646169579],[-127.04310750272886,53.20043116534127],[-127.0430095185886,53.20029868872896],[-127.04296666788764,53.200119786290855],[-127.04295526683394,53.199999993372465],[-127.04295005264593,53.19994065287802],[-127.043067061082,53.19977995630885],[-127.04329579728406,53.19966365149167],[-127.04350168803516,53.199532980952064],[-127.04367246816463,53.19938581185519],[-127.04383469162124,53.19923423588435],[-127.04395251389793,53.1990690402034],[-127.0439687141923,53.19888961763744],[-127.04392401356057,53.19871185218693],[-127.04382885463497,53.19854181901138],[-127.04378790483196,53.19836402043737],[-127.04388124018887,53.19819455846871],[-127.04410232760766,53.198072716797206],[-127.04433681607141,53.19796140579185],[-127.04454824972606,53.19782844335209],[-127.0447704580239,53.19771386926013],[-127.04481759085574,53.197609811845446],[-127.0447162245518,53.19756812677341],[-127.04441899094918,53.197567941768675],[-127.04412335124901,53.197594642928216],[-127.04383381961067,53.19764089379063],[-127.04354323182605,53.19768267124367],[-127.04324453699871,53.197699303648314],[-127.04294621962731,53.197693530951376],[-127.04265451801724,53.19765183433715],[-127.04236819343491,53.197600014169694],[-127.04208543983749,53.19754087417687],[-127.04179009247625,53.19746559253898],[-127.04166239261816,53.1974583161539],[-127.041500428273,53.19746813938598],[-127.04121301773661,53.19752444967422],[-127.04095555611457,53.19761691681114],[-127.04071338306748,53.19772044509714],[-127.04048749659445,53.197838405282745],[-127.04036284176448,53.19787871745937],[-127.04016198992376,53.19794714625385],[-127.03991111417241,53.198002576784994],[-127.03969071315072,53.19803868190482],[-127.03935239333236,53.198045576671426],[-127.0390182576281,53.19803225584346],[-127.03876731496659,53.198008684914576],[-127.03857509637689,53.19797059692781],[-127.03843228593988,53.19795895856234],[-127.03815720010485,53.19790646501268],[-127.03783844209464,53.1978319434515],[-127.03760709598758,53.19776561948043],[-127.03732252798115,53.197708725062135],[-127.03703003803837,53.197673188772114],[-127.03673237821837,53.197655624972136],[-127.03643722153728,53.19762571305093],[-127.03614376190308,53.1975885068013],[-127.035850357438,53.197553531377814],[-127.03555351918867,53.19753147545235],[-127.03525495726866,53.19751560106718],[-127.03495583417758,53.19751540883676],[-127.03465816313478,53.19753593685669],[-127.03436860796238,53.19758160894182],[-127.03409477714582,53.19765683175953],[-127.03390690473917,53.197796292642444],[-127.0337276262223,53.197941836472786],[-127.03348053361533,53.19803699346572],[-127.03319900698841,53.19810443781016],[-127.03291245632754,53.19815847931633],[-127.03261178341222,53.19817118483473],[-127.03231414774073,53.19819339182667],[-127.03201755084613,53.19822006204139],[-127.03172791971134,53.198262922529004],[-127.03143850654831,53.19831474437568],[-127.03115497707795,53.19837716349437],[-127.03088775981618,53.198454562203175],[-127.03064373573994,53.198560891431555],[-127.03044075264806,53.198696551849835],[-127.03030485565994,53.198852926894695],[-127.0302134483624,53.19902683387267],[-127.03011351376973,53.199197462377306],[-127.02995144578448,53.19935741701739],[-127.0297060342266,53.19944527256917],[-127.02941456107742,53.19945172271438],[-127.02910746243847,53.19943198071476],[-127.0288047852851,53.19940155930595],[-127.02852388635692,53.19934125046663],[-127.02826291841056,53.199252190880735],[-127.02801661112588,53.1991490018095],[-127.02777951656812,53.19903900934032],[-127.02754607802842,53.19892506744125],[-127.02730991593123,53.19881506595324],[-127.02705726258347,53.19872032916425],[-127.02676891174896,53.19866176602804],[-127.02650904480343,53.198579416043266],[-127.02628381233758,53.198455316124004],[-127.02610397968377,53.19830896844265],[-127.02599593160367,53.19814574718184],[-127.02592138999769,53.19797159544561],[-127.02587014212708,53.19779163947247],[-127.02583293554326,53.19761100611667],[-127.02581172756915,53.197432466234524],[-127.02581956118442,53.197252563337955],[-127.02583486558557,53.197072031003614],[-127.02584364245203,53.196892675667364],[-127.02585428042043,53.19671273946684],[-127.02586587692319,53.1965333596768],[-127.02587556999734,53.19635344058409],[-127.02588433284777,53.19617352056389],[-127.02589217939813,53.19599417319004],[-127.02590094232086,53.19581426209579],[-127.02591345459689,53.19563430954957],[-127.02606546418221,53.19548453171161],[-127.02629994335624,53.195372127158166],[-127.02649171561804,53.195238246973446],[-127.02647335315132,53.19506081177249],[-127.02627049960319,53.19493147112424],[-127.02605839706578,53.19480669222871],[-127.02602034371822,53.19462941851904],[-127.02603192394754,53.19445003864113],[-127.02599010802948,53.19427224171324],[-127.0259081151197,53.19409983942799],[-127.02579437280151,53.193933305533236],[-127.02566485309903,53.19377307534787],[-127.02545178613168,53.193647183206565],[-127.02519541856687,53.19355248360283],[-127.02494552454237,53.19345435698141],[-127.02470941342688,53.19334491459832],[-127.02444758777484,53.19325697462784],[-127.0241757568221,53.19318201079491],[-127.02389396093822,53.193121698946136],[-127.02361305649303,53.19305913773368],[-127.02334304879253,53.19298191525535],[-127.02309225989536,53.192884921953215],[-127.02287364858364,53.19276186986697],[-127.022668888207,53.192630298551585],[-127.02244661152247,53.19251064778377],[-127.02220497066483,53.19240404494649],[-127.02198455751584,53.19228381250662],[-127.02180944514485,53.192137417450326],[-127.02164736339668,53.19198642775763],[-127.02149483045437,53.19184319898303],[-127.02148957227229,53.191663964643666],[-127.02148052280513,53.191483642482844],[-127.02147047586088,53.19130052317835],[-127.02142405726426,53.191125005216456],[-127.02125835176538,53.19097964869414],[-127.02103962065154,53.19085100073233],[-127.02080811983829,53.19073701993428],[-127.02058399716738,53.19061793735613],[-127.0203617099312,53.19049716228077],[-127.02014774544686,53.19037126838703],[-127.01994951964647,53.1902373950983],[-127.01976514430253,53.19009499401635],[-127.01958821609573,53.18994973177939],[-127.01941866439014,53.189799923797665],[-127.01925096306243,53.18964842338277],[-127.01908141375863,53.1894986148939],[-127.01890450377671,53.18935390724121],[-127.01871650822389,53.189216582391175],[-127.0185036467096,53.18909739904595],[-127.01822806361285,53.189020777715314],[-127.01795156511834,53.188944719383315],[-127.01773404026954,53.1888266952444],[-127.01755612569167,53.188679197455585],[-127.01736527936256,53.188539653966856],[-127.01716241911798,53.18840693633675],[-127.01695585001015,53.18827649120276],[-127.01674283664069,53.18815058302523],[-127.01651967028985,53.188030919866236],[-127.01627802804542,53.1879231845421],[-127.0160208516779,53.187831833703136],[-127.01572927151595,53.187791190847],[-127.015430826008,53.1877769423446],[-127.01513161224749,53.18776942267002],[-127.01483316709437,53.18775517266155],[-127.01453802792318,53.187722409835786],[-127.01424291585185,53.1876907575807],[-127.01394556239111,53.187683218986926],[-127.01364770876725,53.18769361190717],[-127.01335004283528,53.18771184596176],[-127.01280064241438,53.18774791907266],[-127.01283015893154,53.18757119263931],[-127.0130076175312,53.187426806960346],[-127.01320026007517,53.18728957883],[-127.01341187240698,53.1871622725484],[-127.0136722155029,53.187073210521284],[-127.01394511124421,53.18699916270616],[-127.01422285909624,53.18693235146555],[-127.01447839802543,53.18683884676964],[-127.01471574649293,53.186729245627404],[-127.01491161855397,53.18657069742541],[-127.01512002423641,53.18646638120904],[-127.01540475155966,53.18641687954231],[-127.01569520230377,53.18645024509753],[-127.01598669703229,53.18640964798977],[-127.01622789564762,53.186304492711386],[-127.01635903175206,53.18614425644229],[-127.0162598744256,53.18595742798318],[-127.01626729956689,53.185798253216035],[-127.01655936173448,53.18562543070506],[-127.01667667145117,53.18547539717591],[-127.01676474664856,53.18531777098419],[-127.01680419781668,53.1851258266377],[-127.01654640559741,53.184969484203584],[-127.0163181462022,53.184832501037675],[-127.01630043628748,53.184680264862145],[-127.01627169717412,53.1844984345131],[-127.01635340593678,53.184349262446986],[-127.01635940302693,53.184169374990184],[-127.01631107033032,53.18399163001994],[-127.01626836237972,53.183813272017645],[-127.01627437167,53.183634504912355],[-127.0163207391744,53.18345762350055],[-127.01635489071695,53.18327917061541],[-127.01638997160983,53.18310070972484],[-127.01644947145158,53.182924280230026],[-127.01641519086151,53.18274585881522],[-127.01640338796437,53.18256667973202],[-127.01641782451748,53.182387275431985],[-127.01643317700314,53.182207298517234],[-127.01643636796709,53.18202799069554],[-127.01643299329852,53.181848183438525],[-127.01643522607206,53.18166831907224],[-127.01646279514392,53.181489366693185],[-127.01648285365222,53.18130991402062],[-127.01647573026095,53.181130129906144],[-127.0164779630302,53.18095027443107],[-127.01649052454798,53.18077088605146],[-127.01651716300275,53.18059193258944],[-127.01651752141576,53.180412093148426],[-127.01651320174746,53.18023228488182],[-127.01652763703856,53.180052880340945],[-127.01658439571972,53.179879279716864],[-127.01682365458298,53.1797730186679],[-127.0170762598512,53.17967616229657],[-127.01730211483768,53.179558254555154],[-127.01747194733308,53.17941056513997],[-127.01753429663736,53.179235795419224],[-127.01749160027639,53.179058557799564],[-127.0173435110729,53.17890240369138],[-127.01712405916894,53.178779348048934],[-127.01688067490517,53.178674990331366],[-127.0166936509749,53.17853653309066],[-127.01662381958477,53.17836065756724],[-127.01659702460377,53.17818160678797],[-127.01659832696033,53.17800175004021],[-127.0166052649815,53.17782240962679],[-127.01662064357095,53.177642996730775],[-127.01664444762902,53.17746351147743],[-127.01667106857427,53.177284566749904],[-127.01670145208159,53.177105580727485],[-127.01672152106595,53.17692669220529],[-127.01671438240663,53.1767469078054],[-127.0166913226771,53.17656726905275],[-127.01664489958335,53.176390062922074],[-127.01656949030045,53.17621591136109],[-127.01647728339516,53.17604470968742],[-127.0163822855054,53.1758746434318],[-127.01627143472308,53.1757075189011],[-127.01612802718526,53.1755502024392],[-127.01596322418354,53.17539978345431],[-127.01578729992826,53.175254506406894],[-127.01560117038264,53.175113798657165],[-127.01539839357281,53.1749816416577],[-127.01519189543075,53.17485119249658],[-127.01499838296571,53.17471446439237],[-127.01483174041978,53.17456518906649],[-127.01470786257185,53.174401536207974],[-127.01462500946981,53.17422912338936],[-127.01457856928015,53.17405136069403],[-127.01456397328452,53.17387220460099],[-127.01458309181108,53.17369275959892],[-127.0145722302928,53.17351301570055],[-127.0145473208994,53.17333394792824],[-127.0145167902233,53.173154928300754],[-127.01451715685843,53.1729750791755],[-127.01457291617737,53.17279924638307],[-127.01470493424162,53.172637882398405],[-127.01488988630899,53.172496233668404],[-127.01501217041695,53.17231982138778],[-127.01508035408848,53.17215452210466],[-127.01510837949209,53.171994613843765],[-127.01499010254796,53.17182979257723],[-127.01479196636213,53.17169534468954],[-127.01456979503546,53.17157455750438],[-127.0143365701754,53.17146169920148],[-127.0141383170958,53.17132221341955],[-127.01399518722356,53.17117553216719],[-127.01379134223164,53.17103721420411],[-127.01364329474528,53.17088105478652],[-127.01349338793361,53.170725466868674],[-127.01334718931642,53.17056816177299],[-127.01318614971473,53.1704171507812],[-127.0130130186488,53.170270169290916],[-127.01279371802758,53.1701510305058],[-127.01251298244199,53.17008844219306],[-127.01225042195354,53.17000216713304],[-127.01202828005401,53.16988193072654],[-127.01183571658929,53.169744633480015],[-127.0116375869027,53.169609624501845],[-127.01141821155052,53.16948767807165],[-127.0112163906021,53.169354940944494],[-127.01105721011436,53.16920279067265],[-127.01093802741629,53.169037973043935],[-127.0108793837119,53.168858071762216],[-127.01077885726069,53.16869029786424],[-127.01070874545384,53.16850096557105],[-127.01053868947919,53.168364038784325],[-127.0104390696288,53.16819457158871],[-127.01035717709712,53.16802159148064],[-127.010293023439,53.167846218905815],[-127.0102213892147,53.167671465890926],[-127.01014230146396,53.167498461666916],[-127.01002963715291,53.167331911138625],[-127.00988439241866,53.167174593547145],[-127.00977080069819,53.16700805067037],[-127.00969077175773,53.16683505413627],[-127.00960143070704,53.166663813237484],[-127.00949808500006,53.166494941671004],[-127.00938821523224,53.166327801917504],[-127.00927836132023,53.16616066191904],[-127.00916661977143,53.16599353790229],[-127.00902513159728,53.16583563141067],[-127.00884275954981,53.165692639809826],[-127.00864192225443,53.16556044563257],[-127.00843826869587,53.1654282840707],[-127.00823278284315,53.16529781405003],[-127.008017120016,53.16517303288899],[-127.00782867124309,53.16504969593569],[-127.00756227128036,53.16495784072102],[-127.00729546319762,53.164887842834865],[-127.00706504759044,53.164811923239945],[-127.00672962582065,53.16473297895236],[-127.00650815025347,53.16459984514809],[-127.0063928782988,53.164440592094856],[-127.00626720247183,53.16427750109052],[-127.0061322271191,53.16411729474819],[-127.00597308459997,53.163965137205295],[-127.00579259113849,53.16382156917723],[-127.00557233340486,53.16369961942487],[-127.00531221860342,53.163595380174556],[-127.00506479352993,53.163512887072045],[-127.00480869206116,53.16342037353838],[-127.0045325578022,53.16335156916315],[-127.00424916824338,53.16329346607801],[-127.0039766494479,53.163219018222065],[-127.00375546928052,53.163097637681346],[-127.003581963343,53.16301058840732],[-127.00327519400695,53.16291458383509],[-127.00303549785566,53.162801767210276],[-127.00280297617884,53.162675998960275],[-127.00264763747037,53.162525481034926],[-127.00258296635612,53.16236579564293],[-127.0025632041849,53.16212505300095],[-127.002393772944,53.161972422021016],[-127.00244436696028,53.161933331422084],[-127.00246953497772,53.161848524109146],[-127.00234883878383,53.161657373933096],[-127.00228751727401,53.16148141701594],[-127.00224115785986,53.161303648118434],[-127.00222285687651,53.16112452110785],[-127.00219333126198,53.160945489115655],[-127.00219375014365,53.160765638829936],[-127.00227173215882,53.16057729715624],[-127.00224136868165,53.16040275426966],[-127.00203875686344,53.160272804945926],[-127.00188803916731,53.1601194500027],[-127.00179219333732,53.15994882276646],[-127.00170663210625,53.15977698789232],[-127.00157911515106,53.15961391630969],[-127.0014092981632,53.15944503516628],[-127.00141183392466,53.159274695698365],[-127.00148326607719,53.15908696558643],[-127.00165976788153,53.15894484310749],[-127.00175410274184,53.15877429140583],[-127.00181740227953,53.15859895550337],[-127.00181872716004,53.15841742104325],[-127.00188397860836,53.15824543008486],[-127.00194914998576,53.15807007820511],[-127.0019365372934,53.157893699504356],[-127.00189224201692,53.15772375629263],[-127.00175892553573,53.15755289025773],[-127.00165190021899,53.15738459837118],[-127.00154015893168,53.15721522577192],[-127.00162427341017,53.15704867778798],[-127.0017393142776,53.156882423747426],[-127.00179038869672,53.156705514834364],[-127.00182839227034,53.15652982807042],[-127.00183811195171,53.156347101827684],[-127.00188542761775,53.1561691041144],[-127.00205429102195,53.15602144278818],[-127.00220326569043,53.15590421250192],[-127.00226872039775,53.15582017532297],[-127.00214595105547,53.155738861517335],[-127.00193634682093,53.15562914036701],[-127.00180437656086,53.15547562635584],[-127.00188425012045,53.15528838882642],[-127.00190446404602,53.15511341722232],[-127.00174927858724,53.154928160459875],[-127.00148369747399,53.15486765922545],[-127.0011753688071,53.154821529961346],[-127.00088759088534,53.154772976105484],[-127.00059537520436,53.15473510845709],[-127.00030316190208,53.15469668429486],[-127.00000131758074,53.15464769141089],[-126.99948046376124,53.15448681070964],[-126.99922166683396,53.154395993214386],[-126.99898953482435,53.1542836602787],[-126.99875461348556,53.15417247094664],[-126.99848670616142,53.15409237812437],[-126.99824540914284,53.153989085192016],[-126.99802246202567,53.15386882928988],[-126.99783556962505,53.153728655470964],[-126.99761635600437,53.15360836732895],[-126.99735030098239,53.153527135827446],[-126.99708970737404,53.15343912565958],[-126.9968401021562,53.15334038194724],[-126.9965959851279,53.15323598891669],[-126.99634363304679,53.153139508329474],[-126.99610965398566,53.153028305856374],[-126.99589041117702,53.1529057737567],[-126.99566104540075,53.152791170033254],[-126.99544272102857,53.15266807360641],[-126.99525675837752,53.1525273321424],[-126.99508748392132,53.15237860645085],[-126.99486921577832,53.15225774056536],[-126.9946196096497,53.15215843643942],[-126.99436999143191,53.15205856715292],[-126.99415171394001,53.151937144256486],[-126.99394353378942,53.15180722779899],[-126.99370773677813,53.15169715639573],[-126.9934326127122,53.15162775325696],[-126.99313705873105,53.15156580877483],[-126.99287961625247,53.15149177390643],[-126.99301073289237,53.15133156044704],[-126.99307027225862,53.15115457501147],[-126.9930689114324,53.15097642430682],[-126.99303379806297,53.15079743630723],[-126.99301180986697,53.15061833814489],[-126.99298886491779,53.15043869221431],[-126.99300340274701,53.15025984329084],[-126.99305544957413,53.15008292958234],[-126.99308122386218,53.14990398631553],[-126.99306951582012,53.14972424602866],[-126.9930512191226,53.149543431533466],[-126.9931127732063,53.149372596300566],[-126.99328915770727,53.14922601331769],[-126.99349304518246,53.149093756913274],[-126.99370074101824,53.14896483867428],[-126.9939027401456,53.14883204160395],[-126.99408293081676,53.148688222196675],[-126.99421402096732,53.1485274425264],[-126.9942895149918,53.148352572077705],[-126.99429376732682,53.14817437390385],[-126.9942044998776,53.14800256409147],[-126.99413208934358,53.147830047839925],[-126.99412691115474,53.14764968781747],[-126.99416112734157,53.14747123784194],[-126.99423946253721,53.14729746395748],[-126.99433285729084,53.14712691604474],[-126.99442812418224,53.14695636126647],[-126.99452810385547,53.14678744307558],[-126.99463089921858,53.14661850110951],[-126.99473652329013,53.14645009102908],[-126.99485344660363,53.14628495635418],[-126.99497695685507,53.1461208777084],[-126.9950938933032,53.14595574263987],[-126.99518352334417,53.145784669758186],[-126.99523742797354,53.14560772994046],[-126.9952772406856,53.145429232313916],[-126.99531332283534,53.14525076603474],[-126.99534001366092,53.14507182294761],[-126.99536014442276,53.14489237027819],[-126.99537934621434,53.14471292540108],[-126.99539760406688,53.14453348844278],[-126.99541491799245,53.144354059403696],[-126.99543224675175,53.14417463021828],[-126.99546551086695,53.14399618746279],[-126.99552317039546,53.14381978046177],[-126.99557145350737,53.14364288756559],[-126.99558313569577,53.14346295001317],[-126.9955705031108,53.14328377281795],[-126.99553913056478,53.14310475328835],[-126.99550207676054,53.14292241997067],[-126.99538995647389,53.142773769108956],[-126.99509363602537,53.14271687402145],[-126.99481767884615,53.14264916650167],[-126.99453428328937,53.14258431769241],[-126.99428245953153,53.14250743292893],[-126.99427434862706,53.14232149441675],[-126.99427575792971,53.14214219901431],[-126.9942808990929,53.14196231645283],[-126.9942635838475,53.14178317837153],[-126.99424905666822,53.141603452097975],[-126.99423641723705,53.141423718906054],[-126.99421161269174,53.141244643703935],[-126.99415501657045,53.14106751193014],[-126.99411432914042,53.14089025540613],[-126.99411665646863,53.140709831631575],[-126.99417901693775,53.14053450599638],[-126.99427517375031,53.140362257854015],[-126.9943300698314,53.140188115350625],[-126.99430245128941,53.14000849895436],[-126.99425985234171,53.139829573177224],[-126.9942088488925,53.13965128274312],[-126.99418501546202,53.13947331973204],[-126.9942117204571,53.139294931997114],[-126.99425527794831,53.13911583786192],[-126.99428947172227,53.138937387132025],[-126.99432273653882,53.138758944179926],[-126.9943456845632,53.13857946738753],[-126.99434988135721,53.138399592399054],[-126.99436721219199,53.1382201627775],[-126.99441542809919,53.138040473525706],[-126.99444027198915,53.13786265700594],[-126.99438375854292,53.13768889488372],[-126.99427769048698,53.137517781309896],[-126.99421834904356,53.13734347810868],[-126.99422536211475,53.1371635793359],[-126.9941828339215,53.13698689373159],[-126.99418235795049,53.13680704890041],[-126.99415285524883,53.136627456954734],[-126.99417303961566,53.136450244256785],[-126.99425411737872,53.13627419606487],[-126.99426220325766,53.13610044657473],[-126.99411893267121,53.13593973912202],[-126.99393955542025,53.13579669854512],[-126.99374809460552,53.13565767656449],[-126.99355757883347,53.13551865530071],[-126.99338467327738,53.13537163319943],[-126.99321454361669,53.13522347597438],[-126.99298991422314,53.1351071417778],[-126.99275143641941,53.13499877602757],[-126.99256834973077,53.134856885026196],[-126.99236207998142,53.13472415243932],[-126.99221157995458,53.134574699603],[-126.99212422369553,53.13440231542546],[-126.99205082262195,53.134226443593555],[-126.99197177980325,53.134049507452744],[-126.99195922902577,53.13387368998241],[-126.99203655385571,53.13369711878404],[-126.99217892985125,53.13354017138549],[-126.99242057887066,53.13342497098816],[-126.99259146668524,53.13328626805655],[-126.9926557095835,53.13311092666649],[-126.99270105885009,53.132929020616444],[-126.99279632663908,53.1327595861163],[-126.99295932845513,53.132604140838346],[-126.99317273376212,53.132481896922215],[-126.99344721002956,53.13240955450401],[-126.99374006858041,53.13236227337439],[-126.99404291756112,53.132341800236716],[-126.99430828312822,53.13227962607906],[-126.99451868306556,53.13214955226529],[-126.99474624577518,53.13203278903175],[-126.9949557522715,53.13190496297233],[-126.9951500860853,53.13176830890736],[-126.99532168948589,53.13162119626616],[-126.99548385445067,53.131470236455094],[-126.99565451391896,53.13132257544845],[-126.99584694257672,53.13118537144284],[-126.99606593505821,53.131062510293425],[-126.99630685472566,53.130956827753046],[-126.99657940436607,53.13088281779318],[-126.99685389271838,53.130811031915016],[-126.99713421837225,53.130749280949814],[-126.99742339654182,53.13070538314309],[-126.99772165194027,53.130688865527446],[-126.99802014275403,53.130682985726764],[-126.99831753328526,53.130669826529505],[-126.99860076382537,53.13061197387865],[-126.99886753455688,53.13053071943864],[-126.99913237781439,53.1304478043525],[-126.99940881025441,53.13037935763813],[-126.99970197868322,53.13034607002004],[-127.00000079725996,53.1303541845816],[-127.00023716470962,53.13037347605299],[-127.00053360670583,53.130399546829004],[-127.00083467229491,53.13038355334468],[-127.00104522808398,53.130261309936124],[-127.00118564761993,53.130102691261776],[-127.00134211714214,53.1299495302132],[-127.00151841879173,53.12980405369348],[-127.00172407053837,53.12967288626729],[-127.0019975857493,53.129600540722706],[-127.00221653884479,53.12947710344351],[-127.00221047953039,53.129300110728494],[-127.00227749027854,53.12912530463168],[-127.00241413095362,53.12896558685328],[-127.00250181047147,53.128793967007056],[-127.00259980335535,53.128623371217024],[-127.00279223875415,53.128487275888304],[-127.00303213074926,53.12837935584464],[-127.00327206281473,53.1282725465264],[-127.00348627853779,53.128147470583556],[-127.00368434938619,53.12801301119265],[-127.00386348988313,53.12786918311093],[-127.00405870466815,53.12773249726131],[-127.00425865675183,53.12759857665972],[-127.00439622864131,53.12743885740759],[-127.00441821103334,53.12726050585238],[-127.00441486336975,53.127080128325325],[-127.00449118051183,53.12690355633198],[-127.00477081963965,53.126853553778275],[-127.0050691779409,53.1268426191433],[-127.00536032822598,53.126883280640634],[-127.00565058908438,53.12692619902081],[-127.00594922686214,53.126927020921315],[-127.00624774324618,53.12692336096286],[-127.0065448950457,53.12694043727069],[-127.00684292245904,53.12695527327459],[-127.00714173191034,53.126963934447154],[-127.00744035655669,53.126964187947536],[-127.00773415048498,53.12699810686196],[-127.00799368838686,53.12708665846726],[-127.00821098745209,53.12721030616256],[-127.00851325916015,53.12728504592341],[-127.00872166915971,53.127192505273214],[-127.00897814628968,53.12707378188156],[-127.00926100844721,53.127041669746184],[-127.00955311084907,53.127003884344084],[-127.00985164070764,53.12700077096255],[-127.01014962952956,53.12701391369195],[-127.01044683718766,53.12703322977256],[-127.01074482642248,53.12704637100222],[-127.01104276237288,53.1270572708672],[-127.01134155992321,53.12706535679433],[-127.01164027904244,53.127069525246085],[-127.01193649601197,53.12704794203244],[-127.01223362929677,53.12702522969596],[-127.01253163252348,53.1270389310586],[-127.01283032479154,53.127041976198164],[-127.01312763158136,53.127026539127094],[-127.01341674096837,53.12698148182497],[-127.0137038306333,53.12693028265456],[-127.01396575502194,53.12684455294557],[-127.01419798805094,53.1267310728157],[-127.01435344140641,53.12657734668783],[-127.0145136341841,53.12642582075111],[-127.01462571290014,53.126259019843246],[-127.0146976522386,53.12605782655301],[-127.01484251488735,53.12593108344172],[-127.0150121410064,53.1257833931891],[-127.0151458961658,53.125622573095],[-127.01522223296642,53.125448790322054],[-127.0152778999713,53.12527183227681],[-127.01536363450546,53.125099653978914],[-127.01548418854236,53.12493557617164],[-127.01561888091241,53.12477530316741],[-127.01572436732735,53.12460688127816],[-127.01581478372768,53.12443521813762],[-127.01590711311364,53.12426466797476],[-127.01603141953284,53.12410112201165],[-127.0161510264763,53.123936495736224],[-127.01625932199887,53.12376860490464],[-127.01642043900604,53.12361762384268],[-127.01660424304418,53.123475976577986],[-127.01675496393099,53.12332061119214],[-127.016866082315,53.123153815982086],[-127.0169320810129,53.12297844433376],[-127.01693525185406,53.12279856600998],[-127.01692250683534,53.122618833497555],[-127.01696118407718,53.12243640872279],[-127.01693431490176,53.122291534370554],[-127.0169478413807,53.122075153858844],[-127.01696790993515,53.121897371207325],[-127.01696374231099,53.12172372333414],[-127.01693314519748,53.12150211949795],[-127.01700488795021,53.121371519841034],[-127.01719531882854,53.12123317600803],[-127.01741515315133,53.121111386981],[-127.01764354866592,53.12099569130794],[-127.01788243193577,53.12088773972207],[-127.01813468398208,53.12079088690818],[-127.01840812719652,53.12071905873301],[-127.01868835606733,53.12065669157741],[-127.01895789282885,53.12057817251473],[-127.01922745553844,53.12050077314348],[-127.0195028204346,53.12043116691302],[-127.01977333643617,53.120354878597304],[-127.02004289623599,53.12027747735763],[-127.02031440746471,53.120203420279395],[-127.02059169409301,53.12013603597231],[-127.020870932291,53.12007199578291],[-127.02114048828663,53.11999459202907],[-127.02135936320214,53.11987224792837],[-127.02156870228129,53.119743253566135],[-127.02179804931318,53.119628661941604],[-127.02203788452847,53.11952181403816],[-127.02230163134112,53.119436613975175],[-127.02260001243542,53.11942955180298],[-127.02288757521085,53.11947805381664],[-127.02313957219927,53.1195649523675],[-127.02346763660904,53.119507771494376],[-127.02371604336226,53.11940756920741],[-127.02394536912722,53.119292408761154],[-127.02415471111692,53.119163974415024],[-127.02430350390439,53.11900805060815],[-127.02443531602164,53.11884723574108],[-127.02463421990537,53.11871272344027],[-127.02486640821263,53.11859977739193],[-127.02510237733259,53.11848903918085],[-127.0252814185342,53.11834574253683],[-127.02543868576831,53.11819254056675],[-127.0255215366824,53.11801982296008],[-127.02554434134731,53.117840338057135],[-127.02559339774832,53.117663422315026],[-127.02565169558305,53.11759736926508],[-127.02576579517853,53.11751682081771],[-127.02604988407147,53.11746056982183],[-127.02634494899766,53.11743279227837],[-127.02648534756923,53.11739516030167],[-127.02657913149427,53.117325992856216],[-127.0266018770275,53.117144267060304],[-127.0266125054369,53.11696488753658],[-127.02666529903415,53.116787938767416],[-127.02676600872263,53.11661842665506],[-127.02683852555356,53.11644411233734],[-127.02687726306323,53.11626616493062],[-127.02691601392985,53.11608878212975],[-127.02698484292965,53.11599405845661],[-127.02711399620046,53.11595540278386],[-127.02738931860985,53.115885778012824],[-127.02761113018117,53.11577067527015],[-127.02782600317424,53.11563994476008],[-127.02808300913385,53.1155480666248],[-127.0283573298122,53.115476207163944],[-127.02861591438034,53.115411207236136],[-127.02892644144917,53.11536535981425],[-127.02922258151686,53.11534429780434],[-127.0295059774626,53.115337348371845],[-127.02981655367373,53.115332402621284],[-127.03011512247039,53.11533428395082],[-127.03041391044924,53.115344562238626],[-127.03070847633245,53.11537393484641],[-127.03100354673056,53.11542402796747],[-127.03133057691356,53.11551866348242],[-127.03144633040178,53.11535293328594],[-127.03153480708713,53.115181273435525],[-127.03158570687629,53.11500434758094],[-127.03155328852921,53.11482589857179],[-127.03144069362544,53.11465991923743],[-127.0312834899331,53.114506654920284],[-127.03106711682797,53.11438304064683],[-127.03081215781962,53.114288896644155],[-127.0306004454847,53.1141641203403],[-127.03044603248954,53.1140102747919],[-127.03031577036185,53.113848365780065],[-127.03021992845657,53.113678321826924],[-127.03014644616053,53.113504156568084],[-127.03000689754069,53.11334568975186],[-127.02982933876947,53.11320156519277],[-127.0295973377761,53.11308873405092],[-127.02933782675217,53.112999664523855],[-127.02908931415455,53.112900422728615],[-127.02886850133687,53.11278636327146],[-127.02876514214242,53.11261469822218],[-127.02858957055564,53.11247503670835],[-127.02835013295187,53.11236394417612],[-127.02812457325635,53.11224657194384],[-127.02790175945879,53.11212692534907],[-127.02767250065871,53.11201126076252],[-127.02742672894519,53.11190918582315],[-127.02716448503634,53.11182238538074],[-127.02689497469146,53.11174460290251],[-127.02664282782936,53.111649305013884],[-127.02643477333578,53.111520572085055],[-127.02629058854279,53.11136270589135],[-127.02614364625327,53.11120653979226],[-127.0259305861433,53.11106383807989],[-127.025768236305,53.11092853985004],[-127.02568729279471,53.11075443648838],[-127.02571479012755,53.110576030615924],[-127.02562920316679,53.110403652780946],[-127.0255529597723,53.110230064306144],[-127.0254841592955,53.11005529962389],[-127.02542188815384,53.10987934874153],[-127.02537363079267,53.10970216468144],[-127.02531228865162,53.10952620565714],[-127.02531536340352,53.10930487488801],[-127.02550882928325,53.10921859079532],[-127.02580277382596,53.109185229914445],[-127.02609473690812,53.10914795908893],[-127.02637779916651,53.10909059491059],[-127.02663860540223,53.109002603708504],[-127.02691875709688,53.10894134604715],[-127.02717476774995,53.10884891309248],[-127.02740307183466,53.10873263300631],[-127.02758393352569,53.108589871636376],[-127.02769591364917,53.10842305667703],[-127.0277515333862,53.10824721138814],[-127.027724722031,53.10806759153867],[-127.02768018529932,53.10788981106978],[-127.02770578798058,53.10771086503482],[-127.02771265381281,53.10753095235189],[-127.02773731319796,53.10735201447153],[-127.02771424428805,53.107172361997854],[-127.02772767932595,53.10699295690501],[-127.02772051945384,53.106813730843044],[-127.0277761098133,53.10663676506705],[-127.02777465888853,53.10646085099159],[-127.02786841292316,53.10631436401987],[-127.02782400390558,53.10610352155022],[-127.02779817608837,53.10592614302715],[-127.0278209509174,53.1057460918249],[-127.02782123357751,53.10556512458136],[-127.02780387295815,53.10538934873289],[-127.02784819530862,53.105210795423844],[-127.02775617856727,53.105042947783225],[-127.02758234952603,53.10489654600991],[-127.02738541566005,53.10476155032888],[-127.02718015210034,53.10463055312246],[-127.02696382768843,53.10450636601302],[-127.02669967833029,53.10441621947834],[-127.02645041477035,53.104322572472114],[-127.0263508954764,53.104153677278994],[-127.0261734282051,53.1040112224793],[-127.02597556007285,53.103876232567565],[-127.02577677744762,53.10374237081485],[-127.02556783649442,53.1036136438392],[-127.0253718292358,53.103478072014816],[-127.02517212249602,53.10334421726437],[-127.02495951147942,53.103218317950024],[-127.0247644374091,53.10308218123443],[-127.02454261067534,53.10296196383896],[-127.02432630272035,53.10283778074859],[-127.02410170544194,53.10271926288903],[-127.0239018168738,53.10257756369971],[-127.02367611855595,53.10245177545643],[-127.02349346124402,53.10232617885722],[-127.0233094849182,53.10218434088186],[-127.02310054550821,53.10205504479075],[-127.02291566929182,53.10191489034044],[-127.02278820414728,53.101750151394526],[-127.02278196842138,53.10156924034585],[-127.02283073381629,53.10138056524612],[-127.02281903457427,53.10120586000696],[-127.0226826511457,53.10105912694967],[-127.02249603171973,53.100924033874236],[-127.02227963188069,53.10079535664971],[-127.02205114940872,53.100669589381326],[-127.02182823818194,53.10054265295421],[-127.02161562414705,53.10041562710516],[-127.02136535976902,53.10031750486199],[-127.02108328428314,53.100258311569696],[-127.02078799520532,53.10023340416291],[-127.020485562842,53.100222013315175],[-127.02024621736396,53.1001893424046],[-127.02013408226378,53.09999981603925],[-127.0201559706382,53.09982089417114],[-127.0201993901903,53.09964291594875],[-127.02023251512544,53.09946446179401],[-127.02023848353421,53.099284556717],[-127.02019491521487,53.09910676453853],[-127.02005638056424,53.098947720875216],[-127.01994385946685,53.09878117342919],[-127.01987044520143,53.09860700032243],[-127.01982687912161,53.098429207940065],[-127.01971714501803,53.09826207144025],[-127.019523954156,53.09812478923337],[-127.01931137250855,53.09799831474615],[-127.01914873036823,53.09784788654423],[-127.01898699000589,53.09769632082051],[-127.0188012052771,53.09755561190808],[-127.01869613424408,53.09738731367862],[-127.01854462517045,53.09723286224209],[-127.01832559107937,53.09711036801858],[-127.01820658277182,53.096945551094535],[-127.01817237764558,53.09676767736029],[-127.01795702079244,53.09664235386296],[-127.01776015590958,53.096507341518134],[-127.01759472519234,53.09635749095803],[-127.01753065002829,53.0961821153078],[-127.01749550707449,53.096003684644664],[-127.01749493289822,53.095823844743215],[-127.01749622891639,53.095643979757234],[-127.01742841444405,53.09546863618787],[-127.01736713941328,53.095293236271125],[-127.01734133645806,53.09511416928241],[-127.01734637406788,53.09493428098588],[-127.01733737619753,53.0947545045318],[-127.017301292795,53.09457609074399],[-127.01742081152727,53.094411460446985],[-127.01763007874283,53.09428359140286],[-127.01788121689584,53.094186181150036],[-127.01812568069623,53.094083225061034],[-127.0182395436058,53.09391696622271],[-127.01826329380994,53.09373747229115],[-127.01828050520109,53.09355803467852],[-127.0182836681223,53.09337815333664],[-127.01826906927876,53.093198989787666],[-127.01827223243691,53.093019117372066],[-127.01827820825508,53.092839211736866],[-127.01825707114666,53.09266010447306],[-127.0181334060076,53.0924958920577],[-127.01791812453742,53.09237279987746],[-127.01768540725003,53.09226331313754],[-127.01738433631635,53.09226758193498],[-127.01709084257996,53.09223649162878],[-127.01679559838186,53.092211018452325],[-127.01649643837624,53.09221695386809],[-127.016212674248,53.09216281072459],[-127.0159496879238,53.092077668427514],[-127.01568580019799,53.09199420965358],[-127.0154209576028,53.0919102027034],[-127.01516892764313,53.09181375894962],[-127.01493614007622,53.09170090577634],[-127.01476799385287,53.09155331553837],[-127.01461927745949,53.091397149558325],[-127.01448635944305,53.091236374485526],[-127.01436551233724,53.09107156920065],[-127.01422609651017,53.0909130817542],[-127.01410246536388,53.09074942064132],[-127.01399928673675,53.0905805458535],[-127.0139473584983,53.09040337833146],[-127.01388890462928,53.09022739628832],[-127.01376899031979,53.09006258233992],[-127.01362958003904,53.089904094098806],[-127.01344383394277,53.089762820459796],[-127.01326087332258,53.08962095788047],[-127.01310938502499,53.089465378466045],[-127.0128867600459,53.089346822366544],[-127.01262468542193,53.08925998856858],[-127.0123553718811,53.0891832922867],[-127.01209787517672,53.08909193586992],[-127.01188444515151,53.08896657578107],[-127.01165997128274,53.088848042186136],[-127.01145576068089,53.088716999593714],[-127.01127558387807,53.088573433764594],[-127.01110836364583,53.08842470978749],[-127.01096154349466,53.088267967111825],[-127.0108212220476,53.088109483332154],[-127.01065393859558,53.08795796232485],[-127.01062361931088,53.08778453483556],[-127.01050846060292,53.087621917962124],[-127.01042945412024,53.087446100889416],[-127.01021527010893,53.087327476555814],[-127.00993332326595,53.08726937655169],[-127.00966674478572,53.087189289146394],[-127.00944907737829,53.08708133404349],[-127.00945040746488,53.086901477216195],[-127.00948451016373,53.08672301673281],[-127.00952793420616,53.08654391181373],[-127.00945833733694,53.08637026372394],[-127.00929020464756,53.08622154491179],[-127.00912858547328,53.086071084903374],[-127.00898547912976,53.08591318741442],[-127.00887210858266,53.08574663611811],[-127.0087792001946,53.08557598355421],[-127.00865186571072,53.085412348173925],[-127.00862428890262,53.085235534909145],[-127.00864620499621,53.08505605798916],[-127.00868686009777,53.084878097424834],[-127.0087593837447,53.0847032353853],[-127.00886198516507,53.08453483085725],[-127.0089843191782,53.084370748914914],[-127.00913584305019,53.08421481723994],[-127.0093736534473,53.08410857350386],[-127.00965558866493,53.08404957161882],[-127.00994341473583,53.084001733285135],[-127.01023520494367,53.08396393644577],[-127.01053098983037,53.08393619874143],[-127.0108148857421,53.08388110374227],[-127.01106121713762,53.08377982168528],[-127.01128468159973,53.083660814790456],[-127.01149581086354,53.08353406015562],[-127.011701220876,53.08340343660971],[-127.01190948209634,53.08327447359288],[-127.01210637576749,53.08313943998992],[-127.01232601378724,53.08301709315279],[-127.01259154342901,53.08293694295337],[-127.01286280188451,53.08286178108619],[-127.01314086542878,53.082797201102935],[-127.01342473704904,53.08274154411128],[-127.01371054605765,53.08268810196972],[-127.01399441620022,53.08263244360586],[-127.01427438664237,53.0825695298811],[-127.01452165639135,53.082469352906266],[-127.01472708039684,53.082339288540695],[-127.01493437129454,53.082209763559575],[-127.01518548592561,53.08211347857186],[-127.01540609081655,53.0819933586371],[-127.01562952015533,53.081873778755174],[-127.01581315946784,53.08173269402753],[-127.01598544444818,53.081586094847324],[-127.01615581830481,53.081437835465486],[-127.01633092657069,53.08129177621729],[-127.01643628706111,53.081123349684255],[-127.0163993182772,53.080946053588406],[-127.01643808069385,53.08076867067616],[-127.01655472492922,53.08060294382094],[-127.0166591418976,53.080433960354114],[-127.01666891615925,53.080256270963105],[-127.01666086661177,53.08007648484586],[-127.01664252646022,53.07989679623338],[-127.01666349181619,53.07971788094808],[-127.01665170321911,53.079538135918646],[-127.01667632574951,53.07935639218384],[-127.01692428440887,53.079285338601146],[-127.01720703452048,53.0793400531964],[-127.01750509562281,53.07933076291907],[-127.01771154349733,53.07920572217348],[-127.01785077583314,53.07904652261711],[-127.01793359614209,53.07887380637098],[-127.01795264404612,53.07869378665587],[-127.01786533848147,53.07852309208884],[-127.01777519479602,53.07835130133123],[-127.01764694542672,53.078189368075456],[-127.0175112736864,53.0780291749764],[-127.01743136750216,53.07785561041346],[-127.01729201215379,53.077697689910835],[-127.01714147897592,53.07754210662179],[-127.01700768081405,53.07738189678686],[-127.0168868619603,53.07721765755742],[-127.01681909278335,53.07704286748566],[-127.01674945480258,53.07686810241207],[-127.01663980355356,53.07670096087544],[-127.01654873976022,53.07652973279988],[-127.01664121690321,53.07636981616988],[-127.01670918630201,53.07620226640681],[-127.01675169570235,53.076025415378204],[-127.01676140131977,53.075844920205085],[-127.01668432761532,53.07567189536775],[-127.01652826231174,53.07551915575407],[-127.01640285132237,53.07535775237608],[-127.01627740113433,53.07519467282347],[-127.01617425146567,53.0750257894736],[-127.01603489678294,53.07486731154426],[-127.01586585771582,53.07471916490507],[-127.01567555644057,53.07458073017547],[-127.01547601632814,53.07444685684486],[-127.01530051238217,53.074301570877715],[-127.01515002702585,53.074146549271276],[-127.01502926467995,53.073983983865936],[-127.01478829078289,53.073876238527724],[-127.01489515322837,53.07377110737512],[-127.01499704466839,53.07361390783435],[-127.0150114232874,53.073433372459306],[-127.01518091956244,53.073289047560074],[-127.01542981838797,53.07314178970225],[-127.01542830336574,53.07307849496716],[-127.0150873404139,53.07312904546167],[-127.01479241545405,53.07315007357024],[-127.01450072423603,53.07311055339791],[-127.01421980673281,53.073053019837296],[-127.01401199395642,53.072924253136954],[-127.01389768271494,53.07275714886353],[-127.01379269254944,53.072588843896796],[-127.01358330693493,53.07247298098331],[-127.01328008806975,53.07249855881179],[-127.0129843847212,53.07252630357968],[-127.01268854014359,53.07250867019542],[-127.0124031100423,53.07245732969478],[-127.01212217446404,53.07239810600272],[-127.0118261440928,53.07237262806794],[-127.01153011407712,53.07234714939075],[-127.01124471316979,53.072296926427825],[-127.01098913560901,53.07220386584322],[-127.01075096542,53.072095532532224],[-127.0105192265058,53.07198209667348],[-127.01029667382451,53.07186241416861],[-127.01005943603137,53.07175350673074],[-127.00979296824312,53.0716739835525],[-127.0095346678326,53.07158374903392],[-127.00927262962145,53.07149353693042],[-127.00900873661494,53.07140390486329],[-127.00880297712084,53.07128184392695],[-127.0086608640135,53.07112393666279],[-127.00853536278048,53.0709569228116],[-127.00839416551553,53.07079844262692],[-127.00824184851307,53.070643427869065],[-127.00807840814363,53.07049298116913],[-127.00786972445076,53.070365896512],[-127.00763797607809,53.07025133454438],[-127.00740712951907,53.070135643862415],[-127.00722620959905,53.069996559746215],[-127.00716123499082,53.06981949887594],[-127.00698116615834,53.06967648063922],[-127.00682885657919,53.069522019777715],[-127.00669789246396,53.06936065334808],[-127.00656971410632,53.06919814245355],[-127.00644804500232,53.06903445537231],[-127.00627627967312,53.06888688299994],[-127.00610083022762,53.06874158290242],[-127.00593834707328,53.06859113401434],[-127.0057851312315,53.06843723529869],[-127.00567368736179,53.06827121916856],[-127.00548806245776,53.068129931278335],[-127.00530243700317,53.067989198903724],[-127.00512052618387,53.06784674928252],[-127.00491183782957,53.06771853886058],[-127.00465086675395,53.067632798762176],[-127.00435919639239,53.06759213307567],[-127.00405955877082,53.06757059309138],[-127.00379760899655,53.067522394110696],[-127.00377544613121,53.067336002816745],[-127.00380951551406,53.06715642175462],[-127.00377450752235,53.0669802337145],[-127.00361291324138,53.06682752393893],[-127.00340791973329,53.06669703832242],[-127.0031743872939,53.06658472393072],[-127.00290341880465,53.066510270647434],[-127.00261176935473,53.06647072109359],[-127.00231581251522,53.06644633958516],[-127.0020278116269,53.066402284306804],[-127.0017759486667,53.066305810712656],[-127.00159038490331,53.06616619257732],[-127.00149566624175,53.06599498357138],[-127.0014382396636,53.065818984927176],[-127.00141250689991,53.0656399115775],[-127.00128992750366,53.06547566205427],[-127.00103750159114,53.06539432387725],[-127.00073374258521,53.06539577775936],[-127.00043683648254,53.065410054904184],[-127.00000125343196,53.065370041835536],[-126.99986539467713,53.06535662474914],[-126.99960960849764,53.06525121521079],[-126.99931779582181,53.0652435997621],[-126.99901819803041,53.065262943180194],[-126.99871955526952,53.06528284252741],[-126.99843087434004,53.06524942524853],[-126.99814467540321,53.06520197465869],[-126.99784572956331,53.065208983301055],[-126.99754911374026,53.06523558599103],[-126.99724496837965,53.06526000140826],[-126.9969457117332,53.0652939041089],[-126.99667231315155,53.065353925727216],[-126.99644292852884,53.06545726865309],[-126.99624899665133,53.06559729985673],[-126.99606744162615,53.0657473025035],[-126.99588383235533,53.06588948713875],[-126.99570777694758,53.06603496052542],[-126.9955326476236,53.06618043478509],[-126.99538457404789,53.06632343061989],[-126.99515513434426,53.06646431497052],[-126.9949000528884,53.06654883055503],[-126.99462005610138,53.06660665276745],[-126.99433047485357,53.06665503464169],[-126.99403995283424,53.066702867914834],[-126.99375235932183,53.06675571390641],[-126.99347629280093,53.06682246486215],[-126.99321084112074,53.066903137495174],[-126.99295217390647,53.06699383760296],[-126.9926973207916,53.067088431545635],[-126.99244151302194,53.067181903412234],[-126.99218473782635,53.06727370646634],[-126.99192891481918,53.06736662151955],[-126.99167882913626,53.06746509067338],[-126.99143448071938,53.06756911396316],[-126.99118647126014,53.067676529163464],[-126.99095641967526,53.06779275769588],[-126.9907688235584,53.06792543813186],[-126.99065676601472,53.06809054589317],[-126.99059181696383,53.06827150216583],[-126.990546475448,53.06845117336172],[-126.99053022982322,53.06863620333554],[-126.9905083240483,53.06881903962096],[-126.99044968569704,53.0689904134912],[-126.9903034937613,53.06913507205216],[-126.99005559003827,53.06924753082965],[-126.9898180647657,53.069363819592674],[-126.9896804694986,53.06951680504746],[-126.98961269153814,53.06969666371811],[-126.98958512115998,53.069877306012636],[-126.98962105404382,53.070055175071055],[-126.98965889582955,53.070234713440016],[-126.98966682888127,53.07041449343445],[-126.98963504923799,53.070575000737726],[-126.98964066755333,53.070776099819135],[-126.98963828771296,53.07095428980356],[-126.9895610018185,53.07112806034521],[-126.98943299693174,53.071291059008814],[-126.98924285644722,53.07143608412398],[-126.98899921240147,53.07153113147143],[-126.98869565698698,53.071543193202174],[-126.98840758344507,53.07149686414622],[-126.98814292283234,53.07141279508691],[-126.98787821289928,53.07132591995552],[-126.98759811585494,53.071261028409396],[-126.98731243772575,53.071197303422835],[-126.98702407929989,53.07113920297666],[-126.98673695044049,53.07109341777992],[-126.98645406894451,53.07106945192454],[-126.98608995810838,53.071170537387566],[-126.98588072481319,53.07129835213218],[-126.98568935380902,53.071350374792736],[-126.9854123990725,53.07138069989877],[-126.98510632042895,53.07140454387269],[-126.9847631073543,53.07139899721512],[-126.98449536839291,53.07142364050037],[-126.9842307870127,53.071503164535294],[-126.98398839636363,53.0716127583414],[-126.98376837196898,53.07171936841559],[-126.98394969792642,53.07200024023101],[-126.98398934774751,53.07217807963952],[-126.98400018574262,53.072362882436394],[-126.98402952095746,53.072539687164344],[-126.98405238583742,53.072719342703024],[-126.98396935084178,53.0728875632349],[-126.9837840603064,53.0730409385567],[-126.98363690258721,53.07318616103184],[-126.98340691928429,53.073306855755064],[-126.9831838206535,53.07344261582645],[-126.9829675755529,53.07355143386949],[-126.98276876420118,53.07368643519741],[-126.98262085496341,53.07383949753375],[-126.98252291927726,53.07401120252003],[-126.98238354497026,53.07416924053354],[-126.98220834924818,53.07431525004573],[-126.98202086540584,53.0744551938617],[-126.98182392936461,53.0745907426417],[-126.98161467920741,53.074719105270596],[-126.98139213182567,53.07483916929068],[-126.98113883460547,53.074963414738676],[-126.98089711995111,53.07502257086187],[-126.9805825166394,53.075042556130235],[-126.9802856398119,53.07506126392264],[-126.98000673571076,53.075089351110975],[-126.97969188557839,53.07509868623129],[-126.97942153046435,53.075132303934154],[-126.9790940050867,53.07516023629693],[-126.97882286390335,53.07520001774091],[-126.97855165887358,53.07527790712656],[-126.97830522153744,53.07537575188425],[-126.97809029466694,53.07550247874791],[-126.97786472976648,53.07561359645235],[-126.9775880019766,53.07569544676937],[-126.97732656502279,53.0757917372001],[-126.97706336055359,53.07589252389844],[-126.97680108285802,53.07595240636494],[-126.97658776165461,53.07598610165926],[-126.97639188416179,53.0760062146239],[-126.9762516029015,53.07608581327571],[-126.97607231811904,53.07617693964567],[-126.9759900307803,53.0762577351084],[-126.97587138377298,53.07630241718011],[-126.9757324419423,53.07635903712825],[-126.9754776246133,53.07637795006812],[-126.97528374513072,53.07636274256196],[-126.9750719430909,53.07630061917853],[-126.97478185363053,53.07624866175334],[-126.97451140078772,53.07619710638535],[-126.97412097078063,53.07621377342569],[-126.97390239422747,53.07630409990644],[-126.97364693197194,53.07633534036338],[-126.97333213149368,53.07638835983822],[-126.97303351622031,53.07653593686844],[-126.97288752154469,53.07669289706276],[-126.97273190796531,53.07683816591274],[-126.97267992232426,53.07697642270459],[-126.97273497009664,53.07721633372309],[-126.97260172533979,53.07735862122521],[-126.97248228551904,53.07740946492641],[-126.97233703328854,53.07743587765359],[-126.97204735271752,53.0774842045898],[-126.97176253268468,53.07754033473168],[-126.97149605804836,53.07762152138064],[-126.97123245652122,53.07770605443252],[-126.97095731547141,53.07777667027761],[-126.97068011148359,53.077838893757985],[-126.97038369789331,53.07787887219101],[-126.97009109968705,53.0779221712509],[-126.96980711191961,53.07797437231563],[-126.96954238532922,53.078050502108084],[-126.96930747473748,53.07816336503607],[-126.96906969974121,53.07827400986293],[-126.96880701873683,53.0783579650865],[-126.96853476876339,53.0784330337127],[-126.96825771037729,53.078501973568],[-126.96797865379149,53.078565335318025],[-126.96768999221226,53.07861756055036],[-126.96738981813701,53.07865699742989],[-126.96709628435279,53.07870030560996],[-126.96693180655126,53.07874535369376],[-126.96689219304524,53.07881234654394],[-126.96685785586966,53.0789874343442],[-126.96684699970787,53.079208837496395],[-126.96675860186289,53.079350750983934],[-126.96677198496603,53.079527689279836],[-126.96682936516703,53.07970650860131],[-126.96685399258602,53.079884475386386],[-126.9667766226237,53.08005935046898],[-126.96674884612172,53.08023550496635],[-126.96680712904272,53.08041319629105],[-126.96684124613739,53.08059725288352],[-126.96677588257353,53.080765306293166],[-126.96656640323897,53.080886919734404],[-126.96631733611079,53.080995409943796],[-126.96606912086871,53.08109997518572],[-126.96581413782313,53.081194501263596],[-126.96555913888685,53.081289035870945],[-126.96532506564373,53.081398521931646],[-126.96510343047964,53.081520787794695],[-126.96489601420988,53.081651910489896],[-126.9647131356829,53.081792352659896],[-126.96457369261405,53.08195204511139],[-126.96445314026293,53.082119436002195],[-126.96429625530506,53.08225237718119],[-126.96404989756351,53.0823569228441],[-126.96378541332956,53.08244536334603],[-126.9635206202417,53.082520914918064],[-126.9632420899077,53.08260891293583],[-126.963036800599,53.08271031571991],[-126.96277776760398,53.08283344661442],[-126.96253230691661,53.082936296398884],[-126.96225887090438,53.083043290963964],[-126.9621977991449,53.0831950629439],[-126.96227666120855,53.083373709031875],[-126.96241187491627,53.0835631015544],[-126.96241120948571,53.083740154218454],[-126.9622548610886,53.08389662864832],[-126.96200352676917,53.0839888753241],[-126.96172934825177,53.084062822784524],[-126.96145136318798,53.084134559471075],[-126.96118770116618,53.08421906979485],[-126.9609593243786,53.08433353845574],[-126.96075480802719,53.08446966786642],[-126.96054165258165,53.08459634693432],[-126.96029118952406,53.08468578588826],[-126.96001196613184,53.08474408256312],[-126.95971840783822,53.084788483643436],[-126.95942485951768,53.08483401342251],[-126.95915354450277,53.08491129318853],[-126.95889458057356,53.08499687172822],[-126.95862210594254,53.08506463946502],[-126.95832929426606,53.08510118714591],[-126.95803355828261,53.08513216402117],[-126.95772817858371,53.08515088330746],[-126.95742660429093,53.08517182103011],[-126.95716247246918,53.0852361471464],[-126.95694725551287,53.085354992407524],[-126.95675316537114,53.085497753521615],[-126.95654861717038,53.0856333109074],[-126.9563125992125,53.08574223840973],[-126.95605471626047,53.08583508990133],[-126.95578817217311,53.08591680538662],[-126.95548958217002,53.08598812971367],[-126.95525560223435,53.08606285733413],[-126.95507466893004,53.08620887083676],[-126.95492389197337,53.086365845809276],[-126.95478438694887,53.08652441478631],[-126.95465053896665,53.08668573475849],[-126.95452422280943,53.086848670050834],[-126.95440449399464,53.08701380203744],[-126.9542903869155,53.087179444268],[-126.95417817421442,53.08734619161548],[-126.95406878345942,53.08751403659562],[-126.95396127687599,53.087681866239535],[-126.95385657958667,53.08785022887588],[-126.95375470452161,53.08801969812821],[-126.95365564107023,53.088189135613284],[-126.95356032973758,53.08835910746862],[-126.9534753611297,53.088531236860725],[-126.95343075580263,53.08871032852733],[-126.95337955928059,53.08888778803381],[-126.9532663981969,53.08905397718447],[-126.95307973186156,53.08919611604502],[-126.95282066668118,53.08927888468613],[-126.95254552056322,53.08935393855623],[-126.95230856897804,53.08946397668822],[-126.95205153192276,53.0895545710835],[-126.95178780480131,53.0896384955171],[-126.95152122858781,53.08972020120003],[-126.95124985544682,53.08979690691189],[-126.95097653557546,53.089870257054685],[-126.9507060880973,53.0899469540459],[-126.95044900943188,53.090035304123255],[-126.9502523644969,53.0901915209239],[-126.94998161227977,53.09025476315879],[-126.94969096634077,53.09030640340801],[-126.94944812814508,53.09040472171108],[-126.94938842921546,53.090578885846924],[-126.94937096758441,53.09075943386836],[-126.94937405084576,53.090939261018924],[-126.94940611753786,53.09111829053708],[-126.94948933315733,53.09132604321648],[-126.9493222028999,53.09138060737283],[-126.9490061571892,53.09142572661861],[-126.94877661590468,53.09153346573648],[-126.94858809084496,53.09167728835027],[-126.94837208977502,53.091805078782635],[-126.9481021670666,53.091863836679906],[-126.94781318227746,53.09182300948203],[-126.94745282797665,53.09176931626016],[-126.94724414040341,53.09172224113331],[-126.9471400000144,53.09166592813746],[-126.94700800627828,53.09161880261972],[-126.94670761521054,53.09156966454754],[-126.94641675111714,53.09152829322104],[-126.9461220097125,53.091480793717786],[-126.94602114133549,53.091487203994745],[-126.9458012267692,53.09152370119795],[-126.94556791684455,53.091462817885215],[-126.9453077871989,53.091373570321785],[-126.94505776527663,53.091275841758815],[-126.94482515477476,53.09116228584693],[-126.94462485534413,53.09102998670439],[-126.94446973173793,53.090909643174484],[-126.9443801028365,53.090875066865095],[-126.94411359067811,53.090792590962465],[-126.94401167611646,53.09075194506025],[-126.94376614690438,53.09068835895754],[-126.94363374331785,53.09066419963638],[-126.94334063650643,53.090648055414945],[-126.94303687573262,53.09069921914304],[-126.94274596921784,53.090739638850955],[-126.94246094670036,53.09079233688602],[-126.94217695328885,53.0908489524048],[-126.94185951643739,53.090916474477545],[-126.94167817109752,53.09083667589492],[-126.94169479734684,53.090616361132504],[-126.94159777475267,53.090164434732436],[-126.94134159088226,53.08995693419051],[-126.94105417676873,53.08964883286897],[-126.94093835740607,53.08944525145849],[-126.94066553804609,53.08928887112694],[-126.94042827811121,53.08913331874406],[-126.94013570555967,53.08892946679784],[-126.93988524703006,53.08876898036982],[-126.93961363579396,53.08858233331283],[-126.93948342697294,53.08844609751078],[-126.93938017005266,53.08834439313313],[-126.93934215925796,53.08827465681335],[-126.9395322782038,53.087991332820515],[-126.93964079750579,53.087824064534146],[-126.93973896106101,53.08765408160732],[-126.93982211623342,53.08748142107286],[-126.93991184562381,53.087310384496945],[-126.94001564191066,53.08714147701043],[-126.94013187337683,53.08698479646662],[-126.94020071941645,53.086799914465075],[-126.94023045567768,53.0866226316524],[-126.94024852983833,53.08650987747436],[-126.94027933907759,53.08646536626306],[-126.94031268772335,53.086408517794275],[-126.9403217551437,53.086269497958625],[-126.94035332317706,53.086090515175414],[-126.94041020567913,53.085914136729954],[-126.94047269525745,53.08573827835996],[-126.94051646202819,53.08556088367217],[-126.94053585403773,53.08538144188938],[-126.94053373615975,53.08520160655749],[-126.94051386131721,53.08502192152327],[-126.94015381846637,53.08493738437757],[-126.93986121077444,53.08489937268695],[-126.93956689488022,53.08486865292953],[-126.93927516871501,53.08482783589981],[-126.93898105217757,53.08480607747598],[-126.93868041089004,53.084827515678384],[-126.93850735806119,53.084825528780044],[-126.9383882514756,53.08480966662681],[-126.9381016509092,53.0847475156216],[-126.93781786339002,53.084685332632795],[-126.93753417710406,53.08466965531522],[-126.93725339922457,53.08474359793936],[-126.93711816670758,53.08476035826914],[-126.93696117729566,53.08476552973119],[-126.93666072296574,53.08475278017185],[-126.93635817392466,53.08477255124726],[-126.93607877162071,53.084739463541204],[-126.9358213153165,53.08464177444785],[-126.93552810732456,53.08461832391799],[-126.9352245668499,53.084635858854476],[-126.93493170499272,53.084628091747916],[-126.9346549213476,53.084543999619555],[-126.9343934703558,53.084434568828236],[-126.93422626835927,53.08440059833124],[-126.9339806727549,53.08458574476495],[-126.9338760371295,53.084633078989185],[-126.93371193777531,53.084655101550446],[-126.93341321416182,53.08467875227598],[-126.9331141082471,53.08468504129271],[-126.93283304229486,53.08461834271505],[-126.93254645342913,53.08464133964913],[-126.93226071632974,53.084702418734544],[-126.93198259118607,53.08477016931106],[-126.93168428419763,53.084812861627356],[-126.93138520148793,53.0848202576551],[-126.93114480923035,53.08473195305354],[-126.93093051632499,53.084597491021874],[-126.93069244420131,53.08448731211726],[-126.93042509331802,53.084406497477495],[-126.93014772159869,53.08433808712212],[-126.92986052813072,53.084290487982436],[-126.92956885202095,53.08425132302117],[-126.92928247671249,53.08419866911287],[-126.92899519917019,53.08414714215346],[-126.92870472218877,53.084120291633425],[-126.92840692963476,53.084143357643974],[-126.92810909747665,53.08416531163172],[-126.92781289245765,53.08417548188871],[-126.92751941979719,53.08414024341849],[-126.92724390274925,53.08407013539196],[-126.92696570882508,53.08400620624195],[-126.92667751743933,53.0839558013884],[-126.9263858342371,53.08391606390451],[-126.92609087391989,53.08389820648842],[-126.92579089385617,53.08390672494476],[-126.92549390645969,53.08392417458535],[-126.9251979808175,53.08394778263785],[-126.92490022431389,53.083972524822975],[-126.92460380951874,53.083973724330995],[-126.92431310464598,53.08393622414096],[-126.92402221712331,53.08389031610578],[-126.92363739813372,53.083781826505245],[-126.9233655659141,53.083709439594706],[-126.92310186388633,53.08362353304979],[-126.92283003626828,53.0835505801256],[-126.92255817025624,53.083476506336304],[-126.92229541393579,53.08339059958392],[-126.92203540713585,53.083302420741475],[-126.92177081680025,53.08321876823137],[-126.92150349091357,53.08313793334704],[-126.92122622984411,53.08307286294497],[-126.9209363154388,53.08302861610793],[-126.92064290796283,53.082995045431225],[-126.92034603796571,53.082974947526786],[-126.9200500134561,53.082950360119256],[-126.919754871067,53.08292296822833],[-126.91945975043461,53.082897251766546],[-126.91916270240246,53.08286818793436],[-126.91886600389897,53.08285592879248],[-126.91857097591176,53.082877272222454],[-126.91825080877146,53.08290329247623],[-126.91802594771677,53.08296946668802],[-126.91774695967493,53.082954270240975],[-126.91740855012424,53.08300227601632],[-126.91712054496513,53.08304541634799],[-126.91685643308395,53.08306987711242],[-126.91667725027821,53.08321581753596],[-126.91649100745524,53.083381982201175],[-126.91625456310193,53.083474580069435],[-126.91601277120064,53.08358010066849],[-126.91571701497102,53.08361097165179],[-126.91543988535531,53.08368202812679],[-126.9152435003776,53.083811856173384],[-126.91520710020605,53.08398806325544],[-126.91519143528203,53.08417250927361],[-126.9151391447696,53.084349404133775],[-126.91507655220242,53.08452524923385],[-126.91514022589227,53.08478920388105],[-126.91508720593438,53.08488934272864],[-126.91502034957247,53.08495429612998],[-126.91480613961588,53.08508145550801],[-126.9145824093455,53.08520084438515],[-126.9143927240577,53.08533789800448],[-126.91421066242104,53.085481615556475],[-126.91397097845442,53.08555518448806],[-126.91364518745851,53.085582356087514],[-126.91335240589403,53.085622153353796],[-126.91307131424017,53.08568371457475],[-126.91279508521129,53.08575364608776],[-126.91250088922013,53.08577160609738],[-126.9121997095294,53.0857688848123],[-126.91208126069279,53.08578324571536],[-126.91189853007003,53.08576617172255],[-126.91179152114793,53.08570368255358],[-126.91154329604917,53.08564117126846],[-126.91141466376361,53.085617511701784],[-126.91133092657272,53.08559350572246],[-126.91123910401276,53.08558524960484],[-126.911081446437,53.08555957244698],[-126.91080579347984,53.085613242539615],[-126.91054175663471,53.08568530689197],[-126.91023781904481,53.08577225402364],[-126.90998905284421,53.08585876649322],[-126.90977629735285,53.085836317763956],[-126.90955201439148,53.08571309984971],[-126.90933060536389,53.085592665224404],[-126.90907518652342,53.08549938482052],[-126.90880242853862,53.085426406955044],[-126.90852146505951,53.08536357641802],[-126.90825238898874,53.085287772112096],[-126.9080365238558,53.085163930841816],[-126.90784744636979,53.08502419579313],[-126.90766670558084,53.08488103477621],[-126.90745116035835,53.08472861172741],[-126.90732559336408,53.08458502641033],[-126.9071191561575,53.084464472681475],[-126.90687188085838,53.08435824329125],[-126.90660714601424,53.08426670541909],[-126.9063702250509,53.08416319240032],[-126.9061534168182,53.084038799143464],[-126.90586530701816,53.08394688310647],[-126.90567752845583,53.08382394272927],[-126.90544122878114,53.08370585607212],[-126.90518568639028,53.08360584501823],[-126.90495804731788,53.083499452237234],[-126.90480416908997,53.08334319935026],[-126.9046215876921,53.083200603555866],[-126.90443808917945,53.08305914400256],[-126.90425827476808,53.08291428537923],[-126.90408466452605,53.08275370039987],[-126.90382869002407,53.082677221084055],[-126.90371756767887,53.08264052854573],[-126.90361395746989,53.08256176265835],[-126.90324377125634,53.082522577613126],[-126.9029194824388,53.08244381276731],[-126.9026331435519,53.08238997374538],[-126.90245312219078,53.08232356077212],[-126.90239347817845,53.082288714844715],[-126.90223963448493,53.0821341346807],[-126.9019951005638,53.082067648914304],[-126.90171862679709,53.08194986156083],[-126.90143410002808,53.08189376474287],[-126.90114690774895,53.0818438550305],[-126.9008606345566,53.081792808110734],[-126.90058247156355,53.08172769640396],[-126.90031064430475,53.08165301565244],[-126.90001864505686,53.08159640763782],[-126.89971829263632,53.081587489971746],[-126.89945466993672,53.08163431893136],[-126.89918824209884,53.08172599025763],[-126.89890707270322,53.08178360114203],[-126.8986092566407,53.081805471721175],[-126.89832134418347,53.08185416816754],[-126.8980294689399,53.08189167966471],[-126.89773250815749,53.08191018886689],[-126.89743653372686,53.081931486695325],[-126.8971369171167,53.08195672884393],[-126.89684119089986,53.08198979343885],[-126.89656760243798,53.082052379107026],[-126.89632293695735,53.08215620466403],[-126.89610207704848,53.082280018847015],[-126.89591236878147,53.08241816338224],[-126.89573403220561,53.08256350039824],[-126.89561139355605,53.082645673697584],[-126.89550821434764,53.08267446928737],[-126.89521249358616,53.08270808549039],[-126.89492719644157,53.08265925791108],[-126.89462828530827,53.08262959085976],[-126.89446048085622,53.082653827967285],[-126.89437655165978,53.082709369749594],[-126.89425189764414,53.08287279142712],[-126.89376513693773,53.08271568195971],[-126.89349517639562,53.08263984198857],[-126.89321346816506,53.08258370412756],[-126.89292363371,53.082541638229216],[-126.89262930938249,53.08250800510214],[-126.89233411690023,53.082477174665804],[-126.89203804143618,53.082449155989444],[-126.89174048525388,53.08243964111409],[-126.89154431404596,53.08244896539714],[-126.89128759246456,53.082602730834545],[-126.89104555532772,53.082699246465616],[-126.89071862253296,53.08275997969753],[-126.89044014971002,53.08281362356515],[-126.89015019012446,53.08276481963001],[-126.8898541964592,53.08274072122935],[-126.88953215394915,53.082722976692885],[-126.8892768138236,53.0827204167584],[-126.88896964552056,53.08278771958652],[-126.88873737719217,53.082903761849614],[-126.88847921104147,53.082989179140235],[-126.88818054438529,53.08301607660879],[-126.88789258185997,53.082973984322116],[-126.88758673293526,53.08297011501088],[-126.88732783916817,53.082976541848275],[-126.88706551817074,53.08308664800377],[-126.8868438671656,53.08312977186016],[-126.88653127322583,53.08329571624215],[-126.8862844511864,53.08334294529921],[-126.88582757753171,53.08349596777482],[-126.88553866447893,53.08354239029291],[-126.88524506027609,53.08358773567614],[-126.88498289771161,53.083661414006016],[-126.88482248567274,53.08381668468809],[-126.88464028364845,53.083958116067855],[-126.88439634530852,53.084053511531046],[-126.88413835026142,53.0841478821676],[-126.8840574856506,53.08421628415762],[-126.88395558411595,53.08426242380452],[-126.88369513632952,53.08437418457766],[-126.88342461731371,53.08445072768207],[-126.8831617486624,53.084536168289006],[-126.88290081071062,53.08462384390612],[-126.8826303085899,53.084702061352665],[-126.88240461811557,53.08477601715014],[-126.88219282224317,53.08493391783956],[-126.88213511039406,53.084992051796725],[-126.88196977695034,53.085045951211285],[-126.88169166567683,53.08511750004938],[-126.88146646818323,53.08517072492367],[-126.8812071256362,53.08533625746858],[-126.88099741352566,53.085459403808564],[-126.88072694909799,53.08553985758177],[-126.88045734521761,53.08557100081379],[-126.88015412295024,53.08546960609931],[-126.87987661624136,53.085390994542855],[-126.87961112208258,53.08530501392052],[-126.87933758133575,53.08532665489442],[-126.8790073231159,53.08536441363937],[-126.87866298614347,53.08544484747597],[-126.87851379016298,53.085555769204376],[-126.87836941250457,53.08571876420498],[-126.87821831858865,53.085873956228376],[-126.87810678770713,53.08604230938132],[-126.87798957278781,53.086207898828285],[-126.87780157675057,53.08634207433031],[-126.87754851408677,53.086449848957834],[-126.87734921422548,53.086580190273615],[-126.87713766907268,53.086706695791634],[-126.87694127198823,53.086841496963466],[-126.8767590655243,53.08698460096749],[-126.87656266247483,53.087119957298505],[-126.8763530438166,53.08724869707237],[-126.8761960953238,53.08739272438068],[-126.87598386985687,53.087531567579305],[-126.8758271539265,53.08768624216747],[-126.87570424582569,53.087848509696656],[-126.87563586276607,53.088023819405926],[-126.8756180847302,53.088204912503265],[-126.87561896511082,53.08838307046798],[-126.87572078361379,53.088558804072036],[-126.87576280773501,53.088736657073426],[-126.87577773057563,53.088915831442456],[-126.87579172245508,53.08909556847559],[-126.87581600807484,53.08927523815841],[-126.87592048011516,53.08944309917654],[-126.87600727476746,53.0896150174829],[-126.87609218496566,53.089786949685426],[-126.87613889155723,53.089965332480354],[-126.87616223985411,53.09014444422028],[-126.87613411500556,53.09032225231337],[-126.87607511220226,53.09049973352524],[-126.87603296765204,53.090677654456634],[-126.87599924284217,53.09085606871885],[-126.8759730102331,53.091034983195456],[-126.87593273149844,53.091213445981495],[-126.87588496317697,53.091390843717285],[-126.8758221710146,53.09156611170447],[-126.8757340329726,53.091736529571925],[-126.87563093171771,53.09190704926319],[-126.87553813540987,53.09207805723948],[-126.8754528277419,53.09225013017216],[-126.87537784836826,53.09242381178903],[-126.87531226605172,53.09259965582599],[-126.87525042403301,53.09277548106689],[-126.87520111596972,53.092969132917254],[-126.87511359962078,53.09312497867531],[-126.87503958290316,53.09329976440476],[-126.87496177530917,53.09347290182351],[-126.87487835947654,53.093645524906265],[-126.87478460201133,53.0938159744411],[-126.87467111650508,53.09398265253044],[-126.87454141577635,53.09413376310135],[-126.87438594445106,53.0943052336777],[-126.87431178424957,53.0944733056596],[-126.87414473018471,53.09462748890863],[-126.87397602396193,53.0947923336052],[-126.87379815321002,53.094921388939284],[-126.87356384886344,53.09503461799109],[-126.87334468782764,53.09515725464902],[-126.8731226812055,53.09527767085293],[-126.87289592387377,53.09539419538725],[-126.87266536349982,53.095508515463365],[-126.87248225821281,53.0956555357823],[-126.87233629239839,53.0957899558806],[-126.87215147560292,53.095944831960054],[-126.87192211780602,53.09607202320255],[-126.87174832191695,53.09621785309298],[-126.87160644163694,53.09636848521699],[-126.87141764504369,53.096512748902065],[-126.87122818404946,53.09666989871974],[-126.87114935787793,53.09683967907046],[-126.87107912842048,53.097017795441715],[-126.87099380431839,53.09719042933214],[-126.87092255042285,53.0973646357613],[-126.87086913099152,53.097541507542985],[-126.87083163789801,53.0977199472014],[-126.87080912053263,53.097898841232244],[-126.87078848495409,53.098078277154805],[-126.87075848474574,53.09825721730413],[-126.8707247317127,53.09843562929342],[-126.87069004721565,53.09861461285898],[-126.8706562936101,53.09879302479269],[-126.87062536451892,53.09897197167051],[-126.87059442038586,53.0991509275951],[-126.87056160874293,53.09932933250313],[-126.87052411277418,53.099507771883346],[-126.87045566293287,53.099682512886496],[-126.87036471096779,53.09985406692793],[-126.87023954249113,53.10000009181978],[-126.87022765531025,53.10001306983674],[-126.87009061002927,53.10017262826766],[-126.869962031786,53.10033492998624],[-126.86983439537639,53.10049722461166],[-126.86970206579429,53.10065843308762],[-126.86956691029766,53.10081910640439],[-126.86942702342763,53.10097756433879],[-126.86931708184709,53.10113581081366],[-126.86913219278489,53.10128956146005],[-126.86894050977257,53.10143103600107],[-126.86880062211996,53.10158893733438],[-126.86870308120022,53.101759408777724],[-126.86862420111278,53.101927510907664],[-126.86846659997249,53.102088903514364],[-126.86831825958582,53.10224574577306],[-126.8681548257795,53.10239653133374],[-126.86797058323062,53.10253627320554],[-126.86775895340978,53.10266388113937],[-126.86754544376451,53.10279039091625],[-126.86735555068347,53.10292848797988],[-126.86715625660608,53.10306441264526],[-126.86697859379066,53.1032063366792],[-126.86674990655115,53.10332287158264],[-126.8669961344425,53.10342358893404],[-126.86728956135829,53.10354413780295],[-126.86740569482859,53.103687832740555],[-126.86752492929651,53.10384550681672],[-126.86770468742492,53.10398873448446],[-126.86785196358491,53.10414509081728],[-126.86798529362903,53.104306022481595],[-126.86807767612981,53.10447678359959],[-126.86811126919869,53.104655264253125],[-126.86809246683224,53.104833564929166],[-126.86805120229826,53.10501146579108],[-126.86807263886571,53.10519059145004],[-126.8680678981726,53.105369909322114],[-126.86805474249446,53.105549853711004],[-126.86804436244886,53.10572864821451],[-126.86803963313872,53.10590853068747],[-126.86806481194697,53.106087628780585],[-126.86812641267342,53.106263097827906],[-126.86815627687673,53.1064421614616],[-126.8681655723564,53.10662193190776],[-126.86813272176397,53.10679921503873],[-126.8681204709676,53.106978032125475],[-126.86807078122428,53.10715543885834],[-126.86803867428266,53.10732375230077],[-126.86806600121969,53.10742495401868],[-126.86800725404673,53.10761699391248],[-126.86760560929493,53.10774152294571],[-126.86730271190532,53.10779977142086],[-126.86704235400553,53.10787899695005],[-126.8667803303199,53.107968318763405],[-126.86662341363102,53.108118497957435],[-126.86640411907165,53.10823888013949],[-126.86617256601349,53.108354304906776],[-126.86591791874663,53.10843853286066],[-126.86569198788915,53.108554480215446],[-126.86552902875268,53.1086839680736],[-126.86540702062969,53.10884902141099],[-126.86517154801429,53.10895607343629],[-126.86489128540256,53.10902366986057],[-126.86459091495192,53.10906844657204],[-126.86430451862252,53.10906438238835],[-126.86398147298178,53.10905217700611],[-126.863701560848,53.10904525820313],[-126.86340748648898,53.10903171907567],[-126.86311597908862,53.10905233172647],[-126.86281774794567,53.10906403756703],[-126.8625192622015,53.10906397461517],[-126.86221995088009,53.109068954769036],[-126.86192394891496,53.10905262920575],[-126.86163223364566,53.10901665815657],[-126.86133523225632,53.10899753263654],[-126.86103993508202,53.10896942983635],[-126.86074468011698,53.108944122800075],[-126.86045116377937,53.108911523506634],[-126.86015672762244,53.108880050694964],[-126.85986179189896,53.10882392944984],[-126.85958571511857,53.10877495818102],[-126.85932474016583,53.10868664950021],[-126.85904482056637,53.10863265810777],[-126.85875749709028,53.10858264612419],[-126.85847023092767,53.108535429835676],[-126.85819655192803,53.10846570391523],[-126.85790235854324,53.10844598468061],[-126.85761422967083,53.10849513688133],[-126.8573201282076,53.108525847671466],[-126.85702161219332,53.10852408583238],[-126.8567231225848,53.10852288778778],[-126.8564250933901,53.1085452164655],[-126.85613876926732,53.108544493552046],[-126.85594889426473,53.10845454203075],[-126.85580336197238,53.108429823807796],[-126.85573816315255,53.108397800844536],[-126.85570090171531,53.108359973056416],[-126.85564516004602,53.10833292838674],[-126.8553987685928,53.108224901015916],[-126.85518112653249,53.10810377476401],[-126.85499953723459,53.1079605418108],[-126.85475607653534,53.10785809448363],[-126.85451074601686,53.10775566017333],[-126.8542654280638,53.10765379000532],[-126.85401643685168,53.10755529844801],[-126.85372461080793,53.107513706205715],[-126.85342771752482,53.10749848641005],[-126.85313077557369,53.10748158096713],[-126.85283145178413,53.107485417004646],[-126.85253208305467,53.10748702054261],[-126.85227560849378,53.10743452041688],[-126.85194396328714,53.107459885967266],[-126.85164792015446,53.10744072929899],[-126.85135884367352,53.107395749884596],[-126.85107700428385,53.10733839200459],[-126.85078899566646,53.10729956186356],[-126.85052991927748,53.10721122919345],[-126.85031163802324,53.10710354481928],[-126.85005043440005,53.10700233600599],[-126.8497559182518,53.10696580015073],[-126.84945826669876,53.106959531022156],[-126.84916019230708,53.10697848023855],[-126.84886307939064,53.10699910705094],[-126.84859022127019,53.107016188500204],[-126.84827300809773,53.106967486227866],[-126.84789954347306,53.10691301927671],[-126.84767626981252,53.10693030770135],[-126.84747823832522,53.10703985267551],[-126.8473548311856,53.1072317894244],[-126.84708940569699,53.10752726626828],[-126.84688560698237,53.10739482056014],[-126.84666526925145,53.107278189110666],[-126.84641637629404,53.10718360724519],[-126.8461436873104,53.107115522776034],[-126.84594267031349,53.106981943986646],[-126.84568365437063,53.10689527662288],[-126.84543012566584,53.10680296688321],[-126.84515097813055,53.106738852608046],[-126.84488093667079,53.106662902719506],[-126.84460543242027,53.10659372329492],[-126.8443235739394,53.10653466427619],[-126.84403628205725,53.10648461645752],[-126.84373862366888,53.106477777230644],[-126.84343947340025,53.106489996631325],[-126.84314693764347,53.10645846806652],[-126.84285518542106,53.10641964537358],[-126.84256168928408,53.10638644592507],[-126.84226419869177,53.1063880011652],[-126.84196637445807,53.106372759295475],[-126.84166785200556,53.106369838331325],[-126.84136951143104,53.106375323651086],[-126.8410702500553,53.10638193528206],[-126.84077172777772,53.10637902101781],[-126.84047484691936,53.1063637597211],[-126.8401754078391,53.106361406244986],[-126.8398628722191,53.10635914505766],[-126.83982601019518,53.10619861779619],[-126.83984289456521,53.106011927911524],[-126.839802874938,53.105834050608266],[-126.83972832909845,53.10566034482123],[-126.83963696777832,53.105487869963405],[-126.83953724022084,53.10531770443259],[-126.83943376772962,53.105148121175596],[-126.83931722588802,53.10497918638896],[-126.83917753574856,53.10482275042934],[-126.83892127913228,53.10473268720564],[-126.83875191233042,53.104589342776755],[-126.8386381403818,53.10441871135451],[-126.83860662009329,53.10424413477535],[-126.83864887987389,53.104063432172275],[-126.83866964322526,53.103883437826724],[-126.83865019138405,53.10370373774887],[-126.83863540908287,53.103523995557644],[-126.8386355492079,53.10334191541155],[-126.83856571520045,53.10316985157262],[-126.83846228896273,53.103001387511135],[-126.83834579740497,53.10283525704428],[-126.83821905811126,53.10267087541483],[-126.83808490334509,53.102509916728636],[-126.83790248603391,53.102368339807654],[-126.83772572666793,53.102228972497805],[-126.83765587985815,53.102055222888104],[-126.83760460441911,53.101875183270195],[-126.83749768714881,53.10171906870053],[-126.83730536854752,53.101549557061446],[-126.83694217435442,53.101348751241375],[-126.83667108831798,53.101264390726996],[-126.83639101459234,53.10119858618379],[-126.8361070859752,53.101174823103776],[-126.83581160172572,53.101228456630736],[-126.83551707814833,53.10123669726316],[-126.83521984901633,53.10120182091696],[-126.83493798438465,53.10113994292437],[-126.83468177015176,53.10105043498445],[-126.83444290203633,53.10093950527745],[-126.83422159399274,53.100817254963594],[-126.83400864652108,53.10069157473272],[-126.83379845496479,53.10056364261],[-126.83359011315164,53.100434567587996],[-126.83338453818844,53.10030379639833],[-126.83318082810906,53.1001718911888],[-126.83298081272602,53.10003828329732],[-126.83292393339497,53.10000002186413],[-126.8327826731336,53.0999040971098],[-126.83258822804035,53.09976819930808],[-126.83241230780511,53.09962209504132],[-126.83224657075165,53.099470872002],[-126.83207345121555,53.09932473853828],[-126.83185872012233,53.09920355801073],[-126.83160521655354,53.09910785703379],[-126.83146371449648,53.09895198030169],[-126.83135559882798,53.09878130184913],[-126.83126430835677,53.09860994021312],[-126.83124394754246,53.09843024501256],[-126.83122360869005,53.09825166118937],[-126.83113697795791,53.09807971086734],[-126.8310242518757,53.097911870247664],[-126.83088735900134,53.09775259880397],[-126.83072999382088,53.097597953160914],[-126.83054943797124,53.0974535549268],[-126.83033931661095,53.097327848181365],[-126.83009218073498,53.09722257931089],[-126.82983952201923,53.09712182180823],[-126.82961556543003,53.097006304538716],[-126.82944905230097,53.09686180604511],[-126.82932608447194,53.09669626770794],[-126.82920865252848,53.096526773065015],[-126.82906062469861,53.09637150387719],[-126.82887271814774,53.09623331298631],[-126.82866437984961,53.096102552901726],[-126.82844032632495,53.095980866750196],[-126.8282033846071,53.095870475667965],[-126.82795085884882,53.095775880535484],[-126.82767899708,53.0956965517538],[-126.82739975964608,53.095623432352106],[-126.82712697885151,53.095545220295364],[-126.82687357337991,53.095452870065955],[-126.8266514931339,53.09533676932008],[-126.8264386284669,53.0952127600908],[-126.82622666012642,53.09508706791732],[-126.82601558795517,53.09495968384115],[-126.82580452101818,53.09483173461026],[-126.82559526736627,53.0947015402632],[-126.82538788939439,53.09457076770394],[-126.82518233536356,53.09443829678565],[-126.82497956310657,53.094304129795155],[-126.82477958343048,53.09416882244789],[-126.82458238136154,53.09403237486218],[-126.82438887778513,53.093893660109615],[-126.82419909447307,53.09375379857411],[-126.824013031404,53.093612790273106],[-126.8238325371639,53.093469501818916],[-126.82365576311906,53.09332506663894],[-126.82348549651633,53.093178909549984],[-126.82331988174184,53.09303103454326],[-126.82316263771688,53.09288029521467],[-126.82301466649962,53.092726138501014],[-126.8228750549529,53.09256855286602],[-126.82274195477443,53.092408689653055],[-126.8226144079595,53.09224653762361],[-126.82249150209931,53.09208212107359],[-126.8223732585398,53.09191654245847],[-126.82225683874101,53.09174927472941],[-126.82214230511549,53.09158199375378],[-126.82202868928262,53.09141415049558],[-126.82191414249995,53.091246869370984],[-126.82179866896684,53.09107959457074],[-126.82167947752745,53.0909134660198],[-126.82155752159095,53.090749032856486],[-126.82143091613759,53.09058631714063],[-126.82129407217884,53.09042647822241],[-126.82113680162325,53.09027349523733],[-126.82096466403546,53.090126226890256],[-126.82078604347195,53.08998180013702],[-126.82060281017925,53.089840201961216],[-126.82041770386274,53.089699181244654],[-126.82022981187403,53.089558744313884],[-126.82004287445525,53.089418856235284],[-126.8198587034996,53.08927726340166],[-126.81967731008913,53.089134539454896],[-126.8195024167941,53.08898896436378],[-126.81933959080796,53.08883825851291],[-126.819186958015,53.08868300864964],[-126.81903711319153,53.0885271745163],[-126.81888171724236,53.08837361969822],[-126.81871333531497,53.08822631302879],[-126.81852175846494,53.088088139921766],[-126.8183088890976,53.08796075442729],[-126.81808033356084,53.08784468236021],[-126.81783981044333,53.08773877737257],[-126.81758825556399,53.087641912396485],[-126.81732931437108,53.0875507005841],[-126.8170667569556,53.0874651158173],[-126.81680327964342,53.08738065735014],[-126.81653704458452,53.08729901417603],[-126.81626898784226,53.08721906825335],[-126.81599911172262,53.08714249585292],[-126.81572648201455,53.0870681828911],[-126.81545206933994,53.08699836369193],[-126.81517310835511,53.086934742584305],[-126.81489141085719,53.08687505703508],[-126.8146088146699,53.086817618055086],[-126.8143262018536,53.08675849325403],[-126.81404448521296,53.08669768530726],[-126.81376459646155,53.08663462306181],[-126.8134983827669,53.086553537674625],[-126.81325418554871,53.0864493339636],[-126.81305247038634,53.086317935968744],[-126.81287480318969,53.08617181438159],[-126.81271107988532,53.0860216703085],[-126.81255756028476,53.085867529527256],[-126.81241334273066,53.08570997198258],[-126.81227654831895,53.08555011321689],[-126.81215371258217,53.085386240996236],[-126.81204018496744,53.08522006362425],[-126.81192759008776,53.08505332394529],[-126.81181778280553,53.08488600025316],[-126.81171077389932,53.08471865722389],[-126.81160562934339,53.084550180759436],[-126.81150419981529,53.08438111393184],[-126.81141210384375,53.08421030660676],[-126.81133956082031,53.08403544758458],[-126.81129221227904,53.083858165497006],[-126.81127008384404,53.08367903390289],[-126.8112628936816,53.08349867919317],[-126.81126132417543,53.08331885061402],[-126.81126350515898,53.08313955204292],[-126.81126661776086,53.08295968231287],[-126.81127345536403,53.082779795949946],[-126.8112803076969,53.082599900502515],[-126.81128996813078,53.0824205504965],[-126.81129867543194,53.08224065123643],[-126.81130552757077,53.08206075573214],[-126.81131517714559,53.08188084996232],[-126.81132762377787,53.08170091600018],[-126.81134757547362,53.08152149522061],[-126.8113768826955,53.08134313069028],[-126.81141556461421,53.081165266490494],[-126.81146359102455,53.08098789385458],[-126.81151725208628,53.08081103825354],[-126.81157559055816,53.080634715219745],[-126.81163766815563,53.08045836644779],[-126.8117016258402,53.08028256944855],[-126.81176652104547,53.08010732173167],[-126.81183705065483,53.07993259101909],[-126.8119131848564,53.07975838646956],[-126.81199121396686,53.07958473356965],[-126.8120682892695,53.07941052240841],[-126.81213975468526,53.07923634974103],[-126.81220371908714,53.0790611080547],[-126.81225362019649,53.07888427773701],[-126.81228199440163,53.07870591908991],[-126.81229819057054,53.07852596784725],[-126.8123125017608,53.07834602058029],[-126.81233805682514,53.07816656071977],[-126.8123860653406,53.0779886316972],[-126.81243034886246,53.07781071928802],[-126.81243906102453,53.07763137517796],[-126.81241502922188,53.07745057993317],[-126.8123555811058,53.07727562188884],[-126.81222530120503,53.0771123650681],[-126.81204030387215,53.0769718858114],[-126.8118164163714,53.07685185197599],[-126.81159070752106,53.07673350653802],[-126.81133923864294,53.07663774813291],[-126.81107765597542,53.07655045810566],[-126.81083907754694,53.0764434048665],[-126.8106198455711,53.07632165154136],[-126.81038491903915,53.07621065496584],[-126.81013251786963,53.07611433565362],[-126.80987094108366,53.076027051891195],[-126.80964156698872,53.07591208944996],[-126.80945841670993,53.07577047296143],[-126.80932725724007,53.07560889524791],[-126.80919515649838,53.075447323828705],[-126.80900276882396,53.07531138149872],[-126.8087964640992,53.07518057203384],[-126.80860959562148,53.07503897966946],[-126.80840333613429,53.07491041025989],[-126.8081712136861,53.07479826956795],[-126.80792893030606,53.0746929121191],[-126.80768112918659,53.07459151823133],[-126.80742963918135,53.07449351062354],[-126.80716985147617,53.074401161820916],[-126.80690359293635,53.07431221823499],[-126.80663826280087,53.074223267712114],[-126.8063794164925,53.074131475497076],[-126.80613169678504,53.074033995182276],[-126.80590153979055,53.07392631874427],[-126.80570561132313,53.073799915204646],[-126.80557727957247,53.07363886977812],[-126.80547391814868,53.07346309603545],[-126.8053501482036,53.07329641659753],[-126.80516700668677,53.07315311704905],[-126.80499225032553,53.07300863953986],[-126.80490859985886,53.0728372130433],[-126.80483141123706,53.072661816115186],[-126.80474392747077,53.07248536873753],[-126.80461103290708,53.07232940013819],[-126.80438451098772,53.072215528578475],[-126.8041310988311,53.07211360072157],[-126.80389529586724,53.07200315299611],[-126.8036696561322,53.07188591248001],[-126.80345415417064,53.07176132362118],[-126.80324236040939,53.07163502387642],[-126.80303240542763,53.07150702597505],[-126.80283263065644,53.07137392060795],[-126.8026393334205,53.07123685351545],[-126.80244602675317,53.07109922142201],[-126.80225182581682,53.070963271394945],[-126.80205668412506,53.07082733639888],[-126.8018550567403,53.07069479773172],[-126.80164974933471,53.07056453371793],[-126.80144256936578,53.0704348378347],[-126.80123262575275,53.07030683664613],[-126.80102176686725,53.07017940603754],[-126.80080720854643,53.07005480593948],[-126.8005760219535,53.06993983817753],[-126.80035038740877,53.06982259128341],[-126.80015063328788,53.06968891647577],[-126.8000008962085,53.069580683688685],[-126.79995729949681,53.06954903941497],[-126.79977042829594,53.06940520090363],[-126.79960032316878,53.06925732225215],[-126.79945256200567,53.06910536577539],[-126.7994370941409,53.06892899156672],[-126.79942246896508,53.06874812055247],[-126.79934534220713,53.068574404690196],[-126.79925889511505,53.06840130762148],[-126.79915197731651,53.06823395164232],[-126.79899206812115,53.06808152095085],[-126.79875081971748,53.06797782296136],[-126.79850860317174,53.0678718899666],[-126.79829589082024,53.067745022765095],[-126.79807768188124,53.06762323919064],[-126.79781711983439,53.06753647776104],[-126.7975620447082,53.06744239974196],[-126.79731524828892,53.06734153313992],[-126.79703639713233,53.06727618353836],[-126.79678599088676,53.06718207234253],[-126.79656774710877,53.06705804516237],[-126.79633541494263,53.06693075098417],[-126.79614403857094,53.066794216022075],[-126.79610911922752,53.066626927646496],[-126.79619991128534,53.06643470487538],[-126.79617082039631,53.0662791472435],[-126.79590850033804,53.06619687559241],[-126.7956255213515,53.066110260418526],[-126.79542761633965,53.06597376825451],[-126.7952825669505,53.06581507396698],[-126.79521389157118,53.06564185413489],[-126.79520486156608,53.06545926839591],[-126.7952641422258,53.06528126056078],[-126.79529731163792,53.0651056785453],[-126.79519316594407,53.064934938564356],[-126.79508344513847,53.06476591233044],[-126.79511668391974,53.06459481197505],[-126.79518361266172,53.064425161061706],[-126.79523710628528,53.06423767205395],[-126.79530407598051,53.06407026181834],[-126.79541588813042,53.0639025494966],[-126.79550802900943,53.0637321637481],[-126.79549718167362,53.063552395879945],[-126.79542381232557,53.063377522302275],[-126.79527601318337,53.06322164319986],[-126.79524649753006,53.06304312151573],[-126.79526182838177,53.062863733054165],[-126.79528182856468,53.0626837483768],[-126.7952924791134,53.06250439139223],[-126.79529095706268,53.0623234400496],[-126.79529033483921,53.06214023259763],[-126.7952719812723,53.061958829823325],[-126.79521545311924,53.06178552784208],[-126.79510028054206,53.0616243907829],[-126.7949376462192,53.06147364895532],[-126.79475731350469,53.06132639658125],[-126.79458904930262,53.06117513636995],[-126.79445520162702,53.061014680099866],[-126.79433991859901,53.060847375586036],[-126.79424232540052,53.06067602561666],[-126.79416710344837,53.0605022929957],[-126.79413951560655,53.06032655468679],[-126.79416884296441,53.06014538669587],[-126.79418135608769,53.05996546126438],[-126.79416864626687,53.05978569649059],[-126.79416901896394,53.059605852674],[-126.79419464986502,53.05942695052775],[-126.79419390061524,53.05918716112293],[-126.7941839869648,53.05900738642859],[-126.79413861142085,53.058829526540826],[-126.79403359621237,53.05866158775846],[-126.79388490221646,53.058506277403374],[-126.79369996288585,53.05836128635058],[-126.79350941393406,53.058216897452745],[-126.79335345756338,53.058072840571576],[-126.79321118025814,53.057910198268914],[-126.79308481277761,53.05774912524657],[-126.79304129703736,53.057571252356034],[-126.79304258487683,53.05738971691265],[-126.79303644541602,53.05721159294342],[-126.79295566408675,53.05703901715315],[-126.79286090184718,53.0568687672857],[-126.79276145060199,53.05669799302761],[-126.7926685379013,53.05652661899223],[-126.79259335507338,53.056353440568785],[-126.79253305545197,53.05617735636039],[-126.7924811627303,53.056000659894124],[-126.79243579753657,53.055822799043256],[-126.79239321794975,53.05564436367808],[-126.79235064909562,53.055466483995886],[-126.79230808059833,53.05528860428004],[-126.79230472358354,53.05510877611924],[-126.79232753874832,53.054929337056926],[-126.79238311087092,53.05475303974473],[-126.79248343060598,53.05457028356489],[-126.79248869415467,53.05440216759422],[-126.79242467537796,53.054226108117355],[-126.7923224680391,53.05405703706915],[-126.79219794221972,53.05389370940341],[-126.79207340698802,53.05372982587359],[-126.79196376954955,53.05356304540741],[-126.79185876560808,53.05339454846252],[-126.79175470428052,53.05322604509193],[-126.79165158555568,53.0530575352983],[-126.7915475258768,53.05288903171233],[-126.79144067755699,53.0527216672564],[-126.79133790588233,53.052571639235104],[-126.79120279046091,53.052391582297325],[-126.7910940702514,53.05222310950304],[-126.7909834777522,53.05205520492958],[-126.79086084203215,53.05189242782634],[-126.79066598094111,53.051764871031516],[-126.79045422068361,53.05163294490641],[-126.79025089848835,53.05150208245711],[-126.79005401616907,53.05136613861556],[-126.7898625945739,53.05122230516939],[-126.78975302433007,53.05105831892636],[-126.789672232268,53.05088461997565],[-126.7896212891453,53.05070735073063],[-126.78960203353188,53.050526516857865],[-126.78962120405637,53.05035158443866],[-126.7897291762895,53.050178299065344],[-126.78992640325204,53.0500318651251],[-126.78998489336256,53.04986115164145],[-126.79002735819044,53.04968326632418],[-126.79006606934966,53.04950372079979],[-126.79001142662452,53.04932928217459],[-126.78993250966792,53.049155005941934],[-126.78987688899741,53.048977767935725],[-126.78985487962278,53.04879919342801],[-126.78987023845501,53.04862035990917],[-126.78989959235481,53.048440876936205],[-126.78992148737913,53.04826144384696],[-126.78992935151088,53.04808154883534],[-126.78993347865365,53.04790166984632],[-126.79016736318898,53.04771745626713],[-126.79014996445645,53.04753604498117],[-126.79017832715408,53.04735320682236],[-126.79039388048875,53.04723803322624],[-126.79065463340064,53.04714271727988],[-126.79092125577357,53.04706081688824],[-126.79119936437534,53.04699451752432],[-126.79147077346363,53.04691930704193],[-126.7917391356439,53.046830660888354],[-126.7919414007547,53.046705488628035],[-126.7920917705683,53.04655264171057],[-126.79222324726724,53.046388724915914],[-126.79234628106799,53.046222614574525],[-126.79247216124848,53.046059290813275],[-126.79259709884288,53.04589597322487],[-126.7927201717636,53.04573211221519],[-126.79284042330377,53.045567705251734],[-126.79295784311132,53.045402196622895],[-126.79307152988117,53.045236148182425],[-126.79318144354528,53.04506901338491],[-126.7932885299616,53.04490021216568],[-126.79338717405413,53.044729226483774],[-126.79346896739919,53.04455723342759],[-126.79352268887133,53.044382067380745],[-126.7935193275742,53.04420223811762],[-126.79350753113167,53.04402135396174],[-126.79351351091744,53.04384146186463],[-126.79352043238784,53.04366157238156],[-126.7935282908052,53.043482232370366],[-126.79353706521582,53.0433023214265],[-126.79354773321865,53.04312296248676],[-126.79355931735051,53.04294304157697],[-126.79356810207332,53.042763695258365],[-126.79357221328263,53.04258381558677],[-126.79356885208566,53.04240399510031],[-126.7935617544959,53.04222419075177],[-126.79355092089591,53.04204442046703],[-126.79353449344146,53.041865243562384],[-126.79350871505572,53.041685564748896],[-126.79349415601351,53.04150637524209],[-126.7935057503177,53.04132700988953],[-126.7935360462598,53.04114863932788],[-126.79357475574217,53.04097021216881],[-126.7936125130074,53.040791235587896],[-126.79363998800709,53.04061231915084],[-126.79365905364313,53.0404329034445],[-126.79367532453004,53.040253506508755],[-126.79368878575902,53.04007412844548],[-126.79369942697714,53.039894213534026],[-126.79370821486525,53.03971430210131],[-126.79371233574192,53.03953498679054],[-126.79370897419287,53.039355165988916],[-126.79370187651938,53.03917536132973],[-126.79369664705831,53.03899555305226],[-126.79369607994421,53.03881570443739],[-126.79369270796523,53.03863531887471],[-126.79369308249252,53.03845547285402],[-126.79370561657169,53.038276100831766],[-126.79374058227741,53.03809825426709],[-126.79381952508923,53.03792403828285],[-126.79389566243955,53.03774928530357],[-126.79391849289387,53.03757152025553],[-126.79389549949897,53.03739126655643],[-126.79386222989673,53.03721052616816],[-126.79385048021608,53.037031317340634],[-126.79390142318263,53.03685841006789],[-126.79402348139166,53.03669230339023],[-126.79413428964844,53.03652404013175],[-126.79421792146853,53.0363514684798],[-126.79429219689447,53.03617728337772],[-126.79435146162882,53.036000402352784],[-126.79440701551894,53.03582410204901],[-126.79452630147817,53.03566025447972],[-126.79469255941565,53.03551010182945],[-126.79487106500255,53.03536603393977],[-126.79505427324126,53.035224166214455],[-126.79532128760513,53.035018426775515],[-126.79562913906871,53.03479896475976],[-126.79582179081244,53.034662079055295],[-126.79601347894624,53.034524078965745],[-126.79620140926367,53.03438498334783],[-126.79638082082805,53.034240342142944],[-126.79651889258942,53.03408197727099],[-126.79661748360299,53.033910987913096],[-126.79663750644241,53.033733240803315],[-126.79659959323975,53.03355477319336],[-126.7965691660764,53.033376246057955],[-126.79652938575074,53.03319779099605],[-126.79648495435102,53.03301992309121],[-126.7964909305665,53.03284059437686],[-126.79655301136341,53.03266480438908],[-126.79663382125341,53.03249169377337],[-126.79681513759817,53.03234872413653],[-126.79682812054418,53.032144695846924],[-126.79687709375203,53.03196731776417],[-126.79693262736902,53.03179157168119],[-126.796873275503,53.03161492509446],[-126.79682791796391,53.031437063410024],[-126.79678814879428,53.031259163957145],[-126.79677357948934,53.031079973765046],[-126.79692015192444,53.030927709215135],[-126.79712688679977,53.03079632857985],[-126.79730913101795,53.03065390750873],[-126.7973198536216,53.0304784728288],[-126.79726801445345,53.030304016650426],[-126.79732725842955,53.030127124561034],[-126.79738090366102,53.029949714459946],[-126.79742239128235,53.02977183068056],[-126.79744610796291,53.0295929374493],[-126.79745767188918,53.029413014736996],[-126.7974617653321,53.02923313352897],[-126.79746212381598,53.02905328650895],[-126.79746248212852,53.02887343050675],[-126.79746003617728,53.02869303764289],[-126.79745293500842,53.02851379677811],[-126.79743742261304,53.02833461274143],[-126.7974032291831,53.028154434380376],[-126.79730851373068,53.02798419418551],[-126.79715524939066,53.02782947250256],[-126.79697968580582,53.027679939259215],[-126.79679946847686,53.02753156669794],[-126.79662855816515,53.02738144570259],[-126.79648556642177,53.02722608900771],[-126.79638631707678,53.02706315775806],[-126.79633639537876,53.02689092904574],[-126.79632277066979,53.0267117319874],[-126.79633147734393,53.02652902251952],[-126.79634669598194,53.02634459272575],[-126.79635356041761,53.026162451446176],[-126.79634363474642,53.025982108790664],[-126.79633747991349,53.0258028612216],[-126.79634810633657,53.02562294457098],[-126.79636997277626,53.02544406362468],[-126.79639462221216,53.0252646080724],[-126.79641553669542,53.02508517770682],[-126.79644109093366,53.02490459543906],[-126.79646571874586,53.02472401939925],[-126.79648102019617,53.02454407105708],[-126.79647583321328,53.02436705792347],[-126.79637923099459,53.024195144105015],[-126.79617140910358,53.02406768257031],[-126.79593130613034,53.02396116429709],[-126.79568006963689,53.02385921182171],[-126.79543531430274,53.02375384447728],[-126.79521459405744,53.02363543268672],[-126.79502714056075,53.023498311581015],[-126.79486651977248,53.02334755372898],[-126.79471509602273,53.02319001931372],[-126.79459049437916,53.02301829258504],[-126.79442143539868,53.02286591458408],[-126.79418228033138,53.022759951130155],[-126.79393118517764,53.02266415257382],[-126.79370491487612,53.02254801641678],[-126.79353870660312,53.02239841487852],[-126.79336510839411,53.022252233438614],[-126.79323601715502,53.022090055700744],[-126.7931143794801,53.02192615134766],[-126.79299458465825,53.02176167867508],[-126.7928757213023,53.02159663484913],[-126.7927596671578,53.021431572016105],[-126.7926519565176,53.02126364711848],[-126.79250616037281,53.02110662776569],[-126.79234647333594,53.02095530432176],[-126.79216269171737,53.020813671690405],[-126.7919456466771,53.02069074682661],[-126.79169912485833,53.02058931001977],[-126.79144253012221,53.02049802531489],[-126.79118866716581,53.02040336005404],[-126.7909531952508,53.0202934389053],[-126.79076386138512,53.02015408243614],[-126.7905819137883,53.02001018495637],[-126.79040739447319,53.0198640052659],[-126.79026536654807,53.0197080784145],[-126.79017161855869,53.019536695960056],[-126.79011508430439,53.01935890557534],[-126.79008467388824,53.019179263825976],[-126.79009252144218,53.01899880105534],[-126.79014524181667,53.018821399389054],[-126.7902194361655,53.01864440962744],[-126.79032647824648,53.01847617317987],[-126.79048904336078,53.01833108737139],[-126.7907192659551,53.01821020912805],[-126.79092601018645,53.0180816349482],[-126.79104528520377,53.017918353786264],[-126.7911073042988,53.0177392128245],[-126.79114039693583,53.01756137741239],[-126.79115665934906,53.01738142269283],[-126.79116917246697,53.01720148413344],[-126.79119197207015,53.017022041321866],[-126.79123439308626,53.01684303163551],[-126.79125440511699,53.01666472803123],[-126.79119977295207,53.01648804566421],[-126.79115630736824,53.016310167798814],[-126.79114644186261,53.016130943985],[-126.79114401887743,53.01595110547095],[-126.7911425370297,53.0157712695901],[-126.79113826206071,53.01559144345951],[-126.79111625416449,53.01541230100888],[-126.79109983692751,53.015232565241725],[-126.79109088739375,53.0150527704056],[-126.79109407599518,53.01487345890608],[-126.79110286990769,53.014693553993546],[-126.79111165915899,53.01451420489148],[-126.79111671895333,53.01433431601929],[-126.79111150349088,53.01415450500975],[-126.7910913633373,53.01397534988134],[-126.79105256492512,53.013796875667595],[-126.79100632038734,53.013619580889376],[-126.79095447548238,53.01344231466819],[-126.79089797743141,53.0132662091389],[-126.79083682003274,53.01309012584371],[-126.79077288086047,53.012914625916714],[-126.79070613450224,53.01273914475945],[-126.79063845832496,53.012564234547526],[-126.79057079747258,53.012389315215295],[-126.79050312240963,53.01221440488963],[-126.79043637826553,53.012038923507326],[-126.79037057553637,53.01186343576414],[-126.79029917890205,53.01168910601769],[-126.79022220779115,53.011515369363636],[-126.79014616339433,53.0113416354018],[-126.79007943242968,53.01116670945841],[-126.79006676506195,53.010987503818434],[-126.79006807009908,53.01080708399545],[-126.79008153722793,53.01062770324646],[-126.79010433789702,53.01044825994961],[-126.79013088232061,53.01026935631233],[-126.79015742635397,53.01009044368687],[-126.79017930052748,53.009911006521705],[-126.79018808235256,53.00973110125059],[-126.79018846095705,53.00955068749584],[-126.79021314811777,53.00937235198401],[-126.79028175109396,53.00919596331426],[-126.79036529275231,53.00902059503704],[-126.79042084875044,53.00884541424433],[-126.79040173359192,53.008671289673686],[-126.79031355732157,53.00849707209849],[-126.79022910011594,53.008322829524545],[-126.7902098968929,53.008143111592695],[-126.7902168219367,53.00796377437111],[-126.7902349301976,53.00778267686079],[-126.7903204297384,53.00761234237027],[-126.79043496204699,53.007446851282694],[-126.79055885760638,53.00728297366514],[-126.79068557006096,53.00711964177541],[-126.79081040003169,53.006956322350725],[-126.7909408645409,53.00679408555021],[-126.79107505676008,53.00663238834437],[-126.7912074066825,53.0064712591261],[-126.7913341096409,53.00630848229396],[-126.79144770868308,53.00614299630767],[-126.79153878914572,53.00597205849178],[-126.79159145609597,53.00579297865361],[-126.79160025637636,53.00561362847208],[-126.79157356743944,53.00543395172798],[-126.79151890664573,53.00525502747803],[-126.79143075968743,53.005083051345736],[-126.79130364078618,53.00492254235131],[-126.7911448925552,53.0047684130308],[-126.79097966182606,53.00461655914757],[-126.79083115759013,53.004460675342344],[-126.7907216729891,53.00429500934264],[-126.79066141788974,53.00411612212051],[-126.79064685237175,53.00393524318231],[-126.79070056088845,53.003762315206615],[-126.79081688521782,53.003593449563326],[-126.7909098441069,53.003422499358074],[-126.79099342404538,53.00324993559628],[-126.79107139799203,53.00307627982562],[-126.7911446874922,53.002902099607056],[-126.79121515899206,53.002727382425924],[-126.79129124382747,53.00255261854793],[-126.79127299565233,53.00237457012896],[-126.79117366796717,53.00220323335273],[-126.79096506437115,53.00207688763733],[-126.7907342487674,53.00196133145445],[-126.79049881785207,53.00184805586923],[-126.79026801968963,53.001732498658036],[-126.7900538696278,53.00160955021684],[-126.78987675010536,53.00146954475677],[-126.78975608928258,53.001304508313176],[-126.78964373710616,53.00113493380692],[-126.78950360386497,53.00097619511515],[-126.78935326177748,53.000820877343344],[-126.78920292095533,53.000665568328984],[-126.78905257074737,53.000509694410304],[-126.78891707906418,53.00034979439328],[-126.78883921449781,53.00017719136116],[-126.788781796213,52.999999960232174],[-126.78878419304299,52.99997865331636],[-126.788820015728,52.99979688087519],[-126.78885677869931,52.99961510211076],[-126.78888517737379,52.99943562042189],[-126.78892197690396,52.9992566472649],[-126.78893825202258,52.99907724663938],[-126.78895262505088,52.99889673814561],[-126.78895581559185,52.998716304456075],[-126.78893477207052,52.998538274051214],[-126.78888016236652,52.99836102401704],[-126.78879293935468,52.99818679804763],[-126.78866862206317,52.99802514644415],[-126.7884412865483,52.99789443913839],[-126.78844951128895,52.99773414203996],[-126.78854619921542,52.99756316814482],[-126.78833937352162,52.997431202878765],[-126.78818625662947,52.99727591092226],[-126.78807582906137,52.99710856291259],[-126.78801281969194,52.99693136850664],[-126.78797024488486,52.99674899937979],[-126.78790915462044,52.99657459798053],[-126.78777476584047,52.99642254200852],[-126.78752451718579,52.99631327690708],[-126.78726165319165,52.996228183393306],[-126.78698686074101,52.99615438363407],[-126.78670399016994,52.996097436800106],[-126.7864124119566,52.99607417358486],[-126.786111054443,52.99607673911285],[-126.78581580664229,52.99605686061681],[-126.78552220770526,52.99602519987977],[-126.78522687757354,52.99600082919761],[-126.78492991972301,52.99598935970583],[-126.78463210425606,52.99598237747329],[-126.7843342831395,52.995974273952115],[-126.78402811924208,52.99596958688253],[-126.783774822279,52.99589675730242],[-126.7835790094734,52.99575350474929],[-126.78330268489775,52.99569650628336],[-126.78300131511087,52.995699072926264],[-126.78271682534842,52.99575642592101],[-126.78245242103554,52.995839982904656],[-126.78220132125216,52.99593746267716],[-126.78195788500346,52.99604496727706],[-126.78183782242715,52.99616398856764],[-126.78182544923594,52.9963030217948],[-126.78189029865128,52.99637879077375],[-126.78203219759322,52.99643219300039],[-126.78223619219325,52.99656418802903],[-126.78244669142066,52.996695018961645],[-126.782634947446,52.99683328538133],[-126.78275741343158,52.996997196722916],[-126.78277658010705,52.99717691705442],[-126.78269016181545,52.99734893850872],[-126.78254378837794,52.99750847571232],[-126.78237290594062,52.9976547195053],[-126.78219074294441,52.99779656453941],[-126.78200391034748,52.99793787547446],[-126.78182175512926,52.998080275650985],[-126.78165182453431,52.9982281973473],[-126.7814941437725,52.99838219625195],[-126.78133927902971,52.99853674103175],[-126.78117686136542,52.9986874181066],[-126.78099274120571,52.99882478286088],[-126.7807350343616,52.998918941245925],[-126.78048317181853,52.99902649826781],[-126.78023418689665,52.999137962177976],[-126.78007150586723,52.99927462774997],[-126.78001954376884,52.99944305725503],[-126.7800248236842,52.999629037193905],[-126.78003478241212,52.99981610673108],[-126.78002509111224,52.99999994452755],[-126.78011122262309,53.00016690457259],[-126.78025832050878,53.00030039979867],[-126.78028246457407,53.00044591425518],[-126.78023815786058,53.00062549878415],[-126.78020322802575,53.00080669760459],[-126.78022609784863,53.00098528177515],[-126.78025366155016,53.001164946469736],[-126.78024205321057,53.00134599988285],[-126.78025278936325,53.00152409951418],[-126.78033714063831,53.001695544365376],[-126.78044755529743,53.00186401969877],[-126.780534762015,53.00203881615882],[-126.78057351572946,53.00221785080582],[-126.78049262588146,53.002387027504994],[-126.78039309225998,53.002557457048994],[-126.78027767001117,53.0027263062875],[-126.78014627211775,53.00288965823849],[-126.77999794177755,53.00304583384239],[-126.77983171780933,53.00319372778841],[-126.77964951222825,53.00333500373207],[-126.7794541480443,53.003471328275964],[-126.77924845269611,53.003603794275215],[-126.77903613390171,53.003731821379944],[-126.77882189596454,53.00385705485608],[-126.77860480872997,53.00398007456626],[-126.77838398157179,53.00410198901346],[-126.77815935408184,53.00422113117017],[-126.77793190241407,53.00433861514342],[-126.77770065486607,53.00445275302728],[-126.77746656266143,53.00456411225953],[-126.77722959039878,53.00467157248954],[-126.77698120283313,53.0047673370015],[-126.77669948778433,53.00482746233356],[-126.77641878421895,53.004891497828964],[-126.7761552364671,53.004975034142575],[-126.77589551281869,53.00506359172968],[-126.77563960273442,53.00515659695337],[-126.7753865398091,53.005251832986865],[-126.77513633950205,53.00535096714999],[-126.77489842636926,53.005458984563475],[-126.77470210108932,53.0055947424484],[-126.77462870883191,53.00576722703555],[-126.77457967295177,53.00594459860979],[-126.77453813355926,53.00612360623817],[-126.77449190967499,53.00630207983076],[-126.77443071671452,53.00647784578797],[-126.7743423587369,53.00664875199996],[-126.77423152976547,53.00681588815382],[-126.77411883317572,53.0069830274762],[-126.77402392223605,53.0071534205973],[-126.77395336259121,53.00732757130814],[-126.7738940278845,53.00750388942561],[-126.77383376684483,53.00768021356994],[-126.77377184376385,53.0074060814235],[-126.77372658354894,53.00722764373747],[-126.77368320539621,53.007049202634974],[-126.77364541224725,53.006870715897136],[-126.7736169673644,53.006692176771054],[-126.7736034401268,53.006513530799474],[-126.7736113860135,53.00633475291151],[-126.77363892776201,53.00615528168672],[-126.77367765358015,53.005975737061426],[-126.77371919645286,53.005796729720466],[-126.7737542137732,53.005617774124325],[-126.77377336807054,53.00543947838379],[-126.77375147943984,53.00526257249029],[-126.77365965097287,53.00508948714184],[-126.77356319500166,53.004918108432484],[-126.77345096388748,53.0047513243321],[-126.77329882102964,53.004597119118095],[-126.77312998311618,53.00444863495778],[-126.77294352960888,53.004306980453315],[-126.77284341678634,53.00413955154319],[-126.77276930271456,53.003964672959384],[-126.77261990106129,53.00380653136499],[-126.77240027375767,53.00368806944124],[-126.77214112730748,53.00360291814072],[-126.77186722350872,53.00352739217556],[-126.77159425127307,53.00345130368032],[-126.77132680318701,53.00337180775563],[-126.77106119695793,53.0032900670132],[-126.7708065821794,53.003197603955165],[-126.77056297875791,53.00309386272004],[-126.77031568970665,53.00299350676233],[-126.77004733138874,53.00291457866092],[-126.76978724833855,53.00282830775899],[-126.7695518887536,53.002716110851246],[-126.76934882975345,53.002584088321136],[-126.76926085383155,53.00241545656303],[-126.76926218608867,53.002231674756565],[-126.76915842075817,53.00206762817073],[-126.76899604555794,53.00191348406914],[-126.76880223276918,53.001776362197326],[-126.76855123776933,53.001676026700665],[-126.76832704523416,53.00156150444852],[-126.76818606983076,53.001403867035954],[-126.76806917539062,53.00123597851235],[-126.76797271037658,53.00106236293015],[-126.76784939960552,53.000901239366684],[-126.76763444358402,53.00078106175774],[-126.76739168628718,53.00067170561239],[-126.7671960732574,53.00053682495915],[-126.76701801201354,53.00039230945453],[-126.76685753274297,53.000239835349554],[-126.76665548516185,53.000110607445464],[-126.76641831284402,53.000000092411746],[-126.76625642255942,52.99997537149872],[-126.76595818838227,52.99994648910052],[-126.7656585071416,52.9999400356863],[-126.76537214955569,52.99989650729467],[-126.76509559582696,52.99982770628198],[-126.7648118046451,52.99977072202236],[-126.76451704339934,52.99972724607178],[-126.76422321336108,52.99968320754951],[-126.76394498282201,52.99962394403451],[-126.76369702539618,52.99953590480914],[-126.76348850165941,52.999409510393846],[-126.7632992501193,52.99926449698191],[-126.76310545246288,52.999125680295535],[-126.76290890959302,52.9989902427567],[-126.76270867573174,52.99885706990122],[-126.7625010586378,52.99872842672658],[-126.7623008272879,52.99859525315783],[-126.76210520511097,52.998459252514294],[-126.76188559938362,52.998337964956775],[-126.76167706683111,52.99821044680882],[-126.76152673600664,52.99804950008138],[-126.76134141023073,52.99791454326077],[-126.76109063622944,52.99782427561308],[-126.76082050161602,52.99774757919897],[-126.76054298346429,52.997675412074],[-126.76026820802691,52.99760042967213],[-126.76000722685872,52.997513587255455],[-126.75976003015916,52.99741432917515],[-126.75951738235202,52.99730887366079],[-126.75927382530965,52.99720510883996],[-126.75902478597266,52.997106981658256],[-126.75877388670975,52.997009986491555],[-126.75852207306188,52.996913561442405],[-126.75826841424482,52.99681825932928],[-126.75800737210636,52.996727495383745],[-126.7577509338861,52.99663277479753],[-126.75751388400703,52.99652672339135],[-126.75731192225479,52.99639971111267],[-126.7571459544076,52.99625062071496],[-126.75699105962684,52.996093614993754],[-126.75682137194885,52.99594511277775],[-126.75662394811914,52.995810226188134],[-126.75640527752114,52.99568781081457],[-126.75615531318832,52.995589683517785],[-126.75590351373593,52.995493243831326],[-126.75570332833819,52.99536062350656],[-126.75551790340056,52.995218378923106],[-126.75529651195063,52.99510045224226],[-126.75502635542536,52.99502094580462],[-126.7547320202018,52.99499817784862],[-126.75448684080193,52.994906739814645],[-126.75439606351082,52.99473418812991],[-126.75427649020652,52.99456855298436],[-126.75411977094723,52.99441379625483],[-126.75399374039606,52.994252675425095],[-126.75393091724999,52.99407771237616],[-126.7538922633037,52.99389754767667],[-126.75382665941017,52.99372315812635],[-126.75369965181888,52.99355980204167],[-126.75352535795079,52.99341300081855],[-126.7533067086086,52.99329057952386],[-126.75308344257668,52.99317041949145],[-126.75290270343997,52.99302870556198],[-126.7527404714036,52.99287734384596],[-126.75259305411141,52.992720284470074],[-126.75245865502642,52.99255978009709],[-126.75235208244875,52.99239068921281],[-126.75225573136673,52.99221873605049],[-126.75214362722134,52.99205248616278],[-126.75199165674962,52.99190105789872],[-126.7518026067476,52.99176331276606],[-126.75159317158051,52.99163354129758],[-126.7513772589596,52.99150717245649],[-126.75116599022718,52.9913790972525],[-126.75093812745484,52.99126232412948],[-126.75065170506033,52.99121092560692],[-126.75041589070604,52.99111885469481],[-126.75023974249085,52.99097150453724],[-126.7499816039075,52.990884057118286],[-126.74970049625026,52.99081636970661],[-126.74941416716749,52.9907700056912],[-126.74911712729218,52.99075116754483],[-126.74882006778469,52.99073119923975],[-126.74853728462857,52.99067416962589],[-126.74825545241303,52.99061768910438],[-126.74795784813955,52.990620133530534],[-126.74765922975685,52.990617545545646],[-126.74736147301375,52.990610469054694],[-126.7470637605165,52.99060675324716],[-126.74676616141507,52.990608638828725],[-126.74646671108009,52.99061222072098],[-126.74617217860705,52.99062977338741],[-126.74588568928316,52.990680326805],[-126.74560017914284,52.99073312343488],[-126.74530976023145,52.99077249458067],[-126.74501393229569,52.99076988224751],[-126.7447230594489,52.99072970321195],[-126.7444393608635,52.990673781193024],[-126.74415660358147,52.99061786151678],[-126.74387383716133,52.990561376454885],[-126.74359015574339,52.99050545229252],[-126.7433092175052,52.990446713207675],[-126.7430254542003,52.990386870691275],[-126.7427527060109,52.990315752379324],[-126.74251571907169,52.99020911468055],[-126.74230909165924,52.990078188569974],[-126.74212745641317,52.98993533427794],[-126.74192458798586,52.9898049485912],[-126.74170318424274,52.98968251421323],[-126.74146466064451,52.989701388080114],[-126.74140161628829,52.98988443774571],[-126.74125219985409,52.99003777507227],[-126.74109249822315,52.990189491509604],[-126.7409422322532,52.99034731602627],[-126.74094342287982,52.9905226823729],[-126.74098203840822,52.990703972124905],[-126.74101507614083,52.99088641747876],[-126.74101537081977,52.991063465775575],[-126.74085183505098,52.99120960301341],[-126.74063473175723,52.99133422992174],[-126.7404326963435,52.99146604996299],[-126.74026646775755,52.991618926664586],[-126.74009643334516,52.99176678892111],[-126.73985070231146,52.991855179996904],[-126.73956050433864,52.99190798232143],[-126.73927412527895,52.99196580702281],[-126.73905769636822,52.992021516145385],[-126.73868893214504,52.99206360312499],[-126.73841841369321,52.99212189111226],[-126.73826138374352,52.99226686326344],[-126.73815807954473,52.9924434395014],[-126.73807710767369,52.99261651410399],[-126.73805874475745,52.9927953642923],[-126.73804888317034,52.99297975511544],[-126.73800599336491,52.99303493148195],[-126.73788830338563,52.99308217624785],[-126.73761344001997,52.99305139981518],[-126.73731327716825,52.99301405756185],[-126.73702411815032,52.99301978316147],[-126.7367220055557,52.993086108662645],[-126.73644605979791,52.993153946295635],[-126.73620415179228,52.99324846436159],[-126.73590487133153,52.99326209438687],[-126.73561531755752,52.99319162931197],[-126.73532787809815,52.993134588195005],[-126.73508010431499,52.99310587803376],[-126.73471830667448,52.993119903807234],[-126.73438954842769,52.993155569254],[-126.73417636924319,52.99318491122542],[-126.73388415604116,52.993175524948754],[-126.73358638808818,52.99316953421689],[-126.73329466566187,52.993134926167905],[-126.73300918271016,52.993082914285594],[-126.7327218872244,52.99303483944976],[-126.73242914436695,52.99299463276969],[-126.73214826300129,52.99293922851887],[-126.73189289839777,52.99284837178778],[-126.73165031695582,52.9927411824559],[-126.7314068636919,52.992637915539746],[-126.73116340741966,52.9925335365372],[-126.7309236306405,52.99242688411955],[-126.73069124720315,52.99231514731678],[-126.73048647341143,52.99218194818752],[-126.73027626245884,52.99205719112403],[-126.72999533236765,52.99199842036643],[-126.72972896507031,52.99191826800634],[-126.72949655339755,52.99180540845815],[-126.72932237907555,52.991660247501606],[-126.72917226112497,52.99150317600419],[-126.72902215396863,52.99134666900729],[-126.7289063800417,52.99128743001633],[-126.72876776508568,52.99125691109141],[-126.72847297122738,52.99125985368624],[-126.728168636671,52.99125052822455],[-126.72788035650481,52.9912528733014],[-126.72760219741676,52.99130053373402],[-126.72733588924149,52.991387340270315],[-126.72706286509413,52.99146298193491],[-126.7268125278645,52.99155584740769],[-126.72660859211372,52.991688210985096],[-126.72642252715295,52.991829428614594],[-126.7262486683061,52.99197561777235],[-126.72608984628566,52.99212730791364],[-126.7259516677667,52.99228672363678],[-126.72583130829888,52.992451067538354],[-126.72575138920396,52.992633647218106],[-126.72559654150989,52.99274553650233],[-126.72528425511004,52.99270823831271],[-126.72502245414519,52.992622444452735],[-126.72475698507634,52.99253947846342],[-126.72447694675232,52.99247844798437],[-126.72418260734592,52.992453362831874],[-126.72388471225408,52.99243950444719],[-126.72358776725964,52.99242619528045],[-126.72329084166913,52.99241401477905],[-126.72299297152396,52.99240070979234],[-126.72269686694652,52.99238235516305],[-126.72240073002367,52.992361203055495],[-126.7221030549747,52.99236022086044],[-126.72180554722938,52.992368210385905],[-126.72150946240954,52.99235097322405],[-126.72120410100489,52.99233603320355],[-126.72092419256595,52.99228227272238],[-126.72063782803302,52.992232477509],[-126.72034960779261,52.99218325770715],[-126.72005953168758,52.99213460433973],[-126.71980800538634,52.99204817143445],[-126.71960417904116,52.9919132714475],[-126.71936905973051,52.99180377032643],[-126.71911555713216,52.9917106246078],[-126.71885559876935,52.991621444176964],[-126.71859472956118,52.99153395405908],[-126.71833569886597,52.9914447668309],[-126.7180793943406,52.99135163596453],[-126.71782403150745,52.991258507773125],[-126.71763514369925,52.99117841221697],[-126.71735623413265,52.991072535355016],[-126.71701873791207,52.99103257182179],[-126.71672780862701,52.990988397750044],[-126.71644868517419,52.990924536816266],[-126.71617497161321,52.990849445656984],[-126.71592428799866,52.99075627597471],[-126.71571871797393,52.99062753850281],[-126.71552972526034,52.99048581801617],[-126.7153278234107,52.99035313112601],[-126.71512593232146,52.99022100858772],[-126.71493420302102,52.99008322123806],[-126.7147702892661,52.989934059250004],[-126.71462673533757,52.98977580906805],[-126.71446652735001,52.98962494781041],[-126.71427468042762,52.989479871912124],[-126.71411191329206,52.98934359304149],[-126.71404732030112,52.989164128782186],[-126.71396418281857,52.98899150916058],[-126.71380483965268,52.98883671525863],[-126.71359444021557,52.98869679759783],[-126.7133457950316,52.98861369519307],[-126.71306185611544,52.98859524288683],[-126.71275607273726,52.98860941844173],[-126.71244753548301,52.988625850981116],[-126.71214619292397,52.98862711606815],[-126.71184297126072,52.98862670639876],[-126.71155518879607,52.98860155027308],[-126.71130812342835,52.988501069744515],[-126.71109602732065,52.98837067823542],[-126.71088849596168,52.98823466494084],[-126.71074227398391,52.98808258471988],[-126.71066757796963,52.98791215299306],[-126.71062726595532,52.98773310518381],[-126.71060741187905,52.987550007546616],[-126.7105941331319,52.98736912034971],[-126.71059113657664,52.987189847518486],[-126.71060025034967,52.9870099368961],[-126.71061311055294,52.98683001263222],[-126.71064290622,52.98665950659715],[-126.71063212065235,52.98651613884474],[-126.71072854710373,52.98631329034027],[-126.71078871180228,52.986117392774545],[-126.71076617912776,52.98594103455443],[-126.71074830350022,52.985764657195745],[-126.71069962770476,52.98558790076275],[-126.71063511100998,52.98541179560089],[-126.71056778526616,52.98523459571779],[-126.7105079169989,52.98505790663037],[-126.7104629704739,52.984880006986295],[-126.71042546245415,52.98470149770757],[-126.71037958581681,52.98452416837142],[-126.71032252520506,52.984347462204],[-126.7102822273083,52.984168969642326],[-126.71034651534123,52.9839965791729],[-126.71048849404296,52.983839399379185],[-126.71052000389147,52.98365991816381],[-126.71048903381225,52.98348137833209],[-126.71041713382932,52.983309799643095],[-126.71048512296343,52.98313570135161],[-126.71049425139017,52.98295579917537],[-126.71050149912753,52.982775899351154],[-126.71008768178031,52.982741979123894],[-126.70979071531096,52.98272303283732],[-126.70949982257687,52.98273262828413],[-126.70922497543273,52.98280936071447],[-126.70899175788088,52.98292114454572],[-126.70881317234348,52.98306453114604],[-126.70866277439825,52.98322007425624],[-126.70852080953809,52.98337836340353],[-126.70838165885014,52.98353720021245],[-126.70822940148233,52.983693318648754],[-126.70806405583055,52.98384783015672],[-126.70790525526684,52.98400285790431],[-126.70777075677196,52.98416166596556],[-126.7076783527851,52.984326944540896],[-126.70764861221221,52.984501376147215],[-126.70766469282766,52.98468281184995],[-126.7076938702955,52.98486641003634],[-126.70770808560367,52.98504785689494],[-126.70771293549754,52.985227118826955],[-126.70771779468366,52.985406936486264],[-126.70772171376638,52.985586768735395],[-126.70772378198834,52.985766603113696],[-126.70772304439745,52.98594646328386],[-126.70772043171375,52.986125769926524],[-126.7077206193373,52.986305615538356],[-126.70772455344041,52.98648544760126],[-126.7077331442384,52.98666524272093],[-126.7077417352583,52.986845046784346],[-126.70774659475116,52.98702486426869],[-126.7077439821005,52.98720417079634],[-126.70773670701365,52.987384070064465],[-126.70772663130371,52.98756342136136],[-126.70771377358842,52.98774334514172],[-126.70770089158657,52.987922713245304],[-126.70768056131202,52.98810212604348],[-126.70766021593965,52.988281538908524],[-126.70765760284745,52.98846084529987],[-126.70765034210636,52.988640744338156],[-126.70766078957877,52.98881997228561],[-126.70768708907725,52.98899910504826],[-126.70771621364375,52.98917934139279],[-126.70774628808691,52.98936012781024],[-126.70775858332146,52.98953822401586],[-126.7076408780003,52.98969805103535],[-126.70739437110561,52.989798705109195],[-126.7071431964842,52.989898821889724],[-126.70693804345468,52.99001771175975],[-126.70685505521887,52.990189091178735],[-126.70680113829332,52.990369825506725],[-126.70676678285717,52.990548201379866],[-126.70675392032557,52.99072813369898],[-126.70672715838248,52.990914307950106],[-126.70664973739258,52.99108397737659],[-126.70643899815721,52.991204020301645],[-126.70616048918528,52.99128861073337],[-126.70587379903719,52.991330103262335],[-126.70557170682385,52.991343117359854],[-126.70527056787921,52.991357810308024],[-126.7049877011445,52.99140488062091],[-126.70472211939344,52.99148154636112],[-126.70446519156468,52.99157329188048],[-126.70421208157713,52.99167117264288],[-126.7039571008614,52.99176794345594],[-126.70369729828424,52.99185577797603],[-126.70342510815921,52.991928553733636],[-126.70313962962055,52.99198684974781],[-126.7028463472979,52.9920255772429],[-126.70255266262453,52.99203908923798],[-126.7022567730236,52.992033008254175],[-126.70195885678422,52.99201629772402],[-126.70165995403096,52.99199678642274],[-126.70136205100943,52.99198175067133],[-126.70106436639944,52.991979039067395],[-126.70076688855849,52.991989772243784],[-126.70047048940813,52.992008898002105],[-126.7001732384528,52.992032519290085],[-126.69987600898817,52.99205837186066],[-126.69957876650294,52.99208254739409],[-126.6992823847511,52.99210279958166],[-126.69898680839452,52.992115758104866],[-126.6986919972629,52.99211806152004],[-126.6983978596794,52.9921041165271],[-126.69810620092528,52.992071106552785],[-126.69781621551067,52.992026324525796],[-126.6975261570154,52.99197705100421],[-126.69723522315529,52.99193170840109],[-126.69694353900434,52.99189701934749],[-126.69663269260964,52.99188820679069],[-126.69638687964844,52.99197706299437],[-126.69615082328136,52.99209107820253],[-126.69592333827786,52.992216238985286],[-126.69571372705813,52.99235082309579],[-126.69553596089985,52.992491942312164],[-126.69543589901335,52.99264941132387],[-126.69545297534196,52.99283812978019],[-126.69543261844576,52.993019216136645],[-126.69529330489263,52.99317299901821],[-126.69510340649457,52.99331474483448],[-126.69489377817646,52.99344877165422],[-126.69468216003584,52.99357440111497],[-126.69445545109514,52.99369115458236],[-126.69422593103346,52.99380680359066],[-126.694008674452,52.99393022387351],[-126.69380747164165,52.99406587543529],[-126.69360627661585,52.99420208238743],[-126.6933917804807,52.99432380888291],[-126.69314604708127,52.99441881621087],[-126.69286816632803,52.99448712745923],[-126.69257501250799,52.994535348714194],[-126.69228254317706,52.99456788633526],[-126.69198593077405,52.99457523045605],[-126.69168530345726,52.99456522421882],[-126.69138733717867,52.994546246093265],[-126.69108999606841,52.99450876982562],[-126.69079660611337,52.994484716381486],[-126.69051343868615,52.994515509783135],[-126.69024041993198,52.99459666828728],[-126.6899596356999,52.9946593778736],[-126.68967973083046,52.99471928472256],[-126.68941037778396,52.994796502356955],[-126.68913551622074,52.99487934539914],[-126.68886633361058,52.99496720160906],[-126.68868925965575,52.995095979886045],[-126.68860995656419,52.99526957400645],[-126.68857752299401,52.99545633207047],[-126.68857017115519,52.99563566446907],[-126.6885917638898,52.995816513122286],[-126.68859746899142,52.995996325022396],[-126.688551808669,52.99617308418075],[-126.6884772211207,52.996349447460815],[-126.68838767069852,52.996524777476864],[-126.68829626831176,52.99670011821367],[-126.68821512160117,52.99687539899385],[-126.68815822529352,52.99704997339709],[-126.68813867036576,52.99722545934018],[-126.68815735547741,52.99740015731573],[-126.68819751843054,52.997575285706205],[-126.68825447766993,52.997750324986875],[-126.6883235660547,52.99792472865561],[-126.68840198016028,52.99809963361743],[-126.6884850680815,52.998274520185795],[-126.68857096335381,52.99844938132229],[-126.68865497830883,52.998624262328924],[-126.68873341915007,52.99879973161771],[-126.68880251443521,52.99897525543509],[-126.68885950521091,52.99915197047219],[-126.68889971819011,52.99932990404952],[-126.68892596004791,52.99950903978381],[-126.6889428739297,52.999689350553794],[-126.6889541858398,52.99986857347877],[-126.68896097827637,53.00000019467036],[-126.68895290527256,53.00025012586065],[-126.68894089008111,53.00043004978374],[-126.68889053483481,53.00060570649927],[-126.68881026926992,53.000777620438384],[-126.6887141045238,53.00094795081499],[-126.68861045531094,53.001117195280266],[-126.68850868077772,53.00128699344622],[-126.68841531475306,53.00145786296775],[-126.68833132206001,53.001630362992444],[-126.68824732275444,53.0018034187696],[-126.68816520408254,53.00197646348987],[-126.6880858858661,53.00215004758491],[-126.6880121844926,53.00232472835193],[-126.68794408159738,53.00249936742521],[-126.68788532851119,53.002675081414786],[-126.6878452844576,53.00285348312615],[-126.6878380039952,53.003038417020015],[-126.68784570620495,53.003225504606256],[-126.68784868947968,53.00340981383103],[-126.6878263776015,53.00358867677808],[-126.68776002058564,53.003756026298774],[-126.68763745130948,53.00391025692128],[-126.68747740656036,53.00405574145324],[-126.68729110307937,53.004193534922145],[-126.6870860700068,53.00432751078988],[-126.68686978247749,53.0044581991424],[-126.68665257681296,53.004589448220564],[-126.68644097249711,53.004721784828256],[-126.68624344555825,53.004858521329275],[-126.68606000504325,53.005000213535084],[-126.68588128552376,53.0051458043939],[-126.68570255581197,53.00529083922764],[-126.6855200465407,53.00543308987932],[-126.68532622835242,53.005568682638845],[-126.68511731393346,53.00569427779924],[-126.68488765841023,53.00580710220449],[-126.68464196610671,53.005909943251005],[-126.68438777211884,53.00600610083766],[-126.68413073956792,53.00609947743499],[-126.68387459564296,53.00619060720448],[-126.68360992646377,53.00627450672461],[-126.68334335947364,53.00635561077731],[-126.68307961989848,53.00643893894277],[-126.68282347167317,53.006530066411074],[-126.68258438258475,53.00663733807982],[-126.68235477828544,53.00675408353451],[-126.68212040881826,53.006865253335775],[-126.68186519673611,53.00695637325828],[-126.68158631103722,53.00702690374006],[-126.68130173460428,53.007091854713856],[-126.68103319579336,53.007167926847764],[-126.68079870080966,53.00727068607863],[-126.6805991606594,53.0074001452745],[-126.68042133818662,53.007545722308784],[-126.68025485482964,53.0076990774993],[-126.68008740250947,53.00785075271494],[-126.67991894552146,53.007998516023214],[-126.67975709094574,53.00815016742159],[-126.67959617587138,53.00830180419933],[-126.67943147567938,53.0084512304095],[-126.67925456770253,53.00859567972817],[-126.67905883938545,53.00873070797965],[-126.67885654821113,53.008863541531674],[-126.67867902676157,53.00902871913013],[-126.67857081516729,53.009149805246835],[-126.67847194537825,53.00927139330325],[-126.67832107531237,53.00941008857943],[-126.67843384580385,53.00963242904264],[-126.67852808873634,53.00980557185215],[-126.6784795997488,53.00998457374058],[-126.6784226818126,53.010161391941956],[-126.67835828736081,53.010337688340954],[-126.6783033156321,53.01051953323048],[-126.67819293229341,53.01067984155437],[-126.67795661888277,53.010788216927494],[-126.67772039054606,53.010901064549316],[-126.67754628613933,53.01104718019762],[-126.6773863228634,53.01120161397438],[-126.67721881078165,53.01135104391452],[-126.67701923156321,53.011479932037304],[-126.67676590117601,53.01157439129336],[-126.67650219666031,53.0116627509731],[-126.67627439747912,53.01177835309134],[-126.67606264473775,53.01190562403271],[-126.67579694512139,53.0119861497102],[-126.67556249996042,53.01209450045752],[-126.67537621164611,53.01223787666665],[-126.67530421832545,53.01240693553682],[-126.67527067441867,53.012587535468995],[-126.67520437854064,53.01276272013786],[-126.675148392987,53.012940086822745],[-126.67512048424446,53.01312289548396],[-126.6750578939111,53.01329637349687],[-126.67491563828476,53.01344958172614],[-126.67472931522572,53.01359128061588],[-126.67452986024448,53.01372912790148],[-126.67433317012308,53.013865273724974],[-126.6741655746435,53.01401078202497],[-126.67407870919983,53.01418440710555],[-126.67399555899718,53.014356881362396],[-126.67393113981596,53.01453317490762],[-126.67388171797226,53.014713309103065],[-126.67381540409342,53.01488792806865],[-126.67367591386889,53.01503999826167],[-126.67343117960016,53.01514896796789],[-126.67316358773984,53.01522949821818],[-126.67288206164913,53.0153734135729],[-126.67274076213212,53.01547002152449],[-126.67257226712003,53.015618894116315],[-126.67240567953141,53.01576944087159],[-126.6722343713913,53.015917208433784],[-126.67204993088416,53.01606112416553],[-126.67187204286604,53.01620668756427],[-126.67173256800088,53.016360440485606],[-126.67173079568079,53.01654309903989],[-126.67172803799592,53.01672295734716],[-126.67172807353121,53.01690280869353],[-126.67172251391051,53.017082127128994],[-126.67171602203076,53.017262006642525],[-126.67170858923434,53.01744190045858],[-126.67169369406979,53.017621271993576],[-126.6716713154984,53.01780068611719],[-126.67168161835109,53.01797991413357],[-126.67168913689349,53.018159713773244],[-126.67166298836885,53.0183369082198],[-126.67165576496491,53.01852912667885],[-126.67164510438043,53.0186815809899],[-126.67166857463098,53.01886689243908],[-126.67164165891973,53.01905417604128],[-126.67163059748617,53.019240813563755],[-126.67159792925649,53.019418600785045],[-126.67162944633351,53.01958089975102],[-126.67164842769759,53.01977800682259],[-126.67165226534506,53.01996119781776],[-126.67168584788402,53.02013693144405],[-126.67179848385251,53.020292600953475],[-126.67203108420874,53.02041734139781],[-126.67217259445508,53.020568928639356],[-126.67221002644422,53.02075079862281],[-126.67225297470061,53.020928163947936],[-126.67231924450282,53.021103711043004],[-126.6723892315946,53.02127811635948],[-126.6724610865075,53.021452510973134],[-126.67254505994975,53.021625151152435],[-126.67261132324644,53.02180014227419],[-126.67267479631768,53.021976260828275],[-126.67276254185178,53.022151129345225],[-126.67278212460448,53.02232637755136],[-126.67272145837626,53.02250488918747],[-126.6726092471836,53.0226719334756],[-126.67245210156331,53.022830825241826],[-126.67223835296666,53.022954182083545],[-126.671974311294,53.023026280223995],[-126.67168471302888,53.023076112503006],[-126.67139039396804,53.023123165103264],[-126.6711037117904,53.02318082311804],[-126.67082279898653,53.023249097219384],[-126.67061837129413,53.023371833307266],[-126.67045457528336,53.02352460161639],[-126.67029929456373,53.02368403556064],[-126.67012510332502,53.02382957445395],[-126.66990653188522,53.02394343423879],[-126.66964453287197,53.02402727662806],[-126.6693645973482,53.02409833849278],[-126.66909033629885,53.02417497019042],[-126.6688312222368,53.02426384128324],[-126.66857496248144,53.024356621983294],[-126.66831584003825,53.02444604775623],[-126.66804908582513,53.02452431975867],[-126.66777184988867,53.02458975982033],[-126.66749080788911,53.02465073860949],[-126.66721453169488,53.02471841299066],[-126.66694874388368,53.024799473865535],[-126.66668583397279,53.024885000015594],[-126.66641627414586,53.02496383991327],[-126.66613614510148,53.02502424553041],[-126.66583910474098,53.02501807849602],[-126.66554897226395,53.02497601458973],[-126.66526787032245,53.0249142941517],[-126.66498481394994,53.02484697241699],[-126.66470003459247,53.0248480213821],[-126.66442580403542,53.02492743881444],[-126.66418559496864,53.02503188062241],[-126.66397851233819,53.02516526943835],[-126.66383051844623,53.02519635667718],[-126.66370336809108,53.02518643140543],[-126.66341209151597,53.02513035751114],[-126.66314477982425,53.02505510806093],[-126.66291051139379,53.0249421299213],[-126.66264397681229,53.024856225401095],[-126.66234709538567,53.02486013351348],[-126.66208217123437,53.02493781690585],[-126.6618760148308,53.02507063205696],[-126.66167077471778,53.025202885906126],[-126.66144567366537,53.02531956323229],[-126.66118747165974,53.02540897698574],[-126.6609311795127,53.02550117632047],[-126.66067593201001,53.02560009244786],[-126.66046396786997,53.025721176424],[-126.66033295323254,53.02588270201947],[-126.66019914650737,53.02604537257077],[-126.66004370744078,53.0261986349412],[-126.65987324666042,53.026345813678816],[-126.65968020361966,53.02648304256801],[-126.65941670138535,53.02659264261045],[-126.65925883102395,53.026708939833775],[-126.6592196746932,53.02689404672861],[-126.65916823025512,53.027069137434026],[-126.65914954374496,53.027248527234406],[-126.65915232599971,53.02742779707887],[-126.65914859926512,53.02760934433389],[-126.65915323167849,53.02778748327147],[-126.65915136137822,53.027967343799546],[-126.65912248238264,53.0281523931029],[-126.6591129963036,53.02832388765376],[-126.65908687354495,53.02850555991244],[-126.6589153633972,53.028646584410446],[-126.6587066883469,53.02874018900059],[-126.65842261765431,53.02884934562375],[-126.65815589562088,53.02893263253428],[-126.65797878665082,53.02907425158633],[-126.65790677357809,53.02924833563769],[-126.65787967771625,53.029428327644254],[-126.6578432349733,53.029607815950634],[-126.65770462635413,53.029763786779085],[-126.65742622314974,53.02981688270679],[-126.65711933925394,53.029841002757856],[-126.65692114175047,53.029947992100524],[-126.65689510400507,53.03013583057558],[-126.65693709737104,53.0303148818237],[-126.65691838506733,53.03049427101287],[-126.65684262992913,53.03066837506508],[-126.65664577636096,53.03080169334876],[-126.65643672229184,53.03093171756604],[-126.6562248060223,53.03105839572084],[-126.65598926434018,53.03116671158032],[-126.65573198249072,53.03125778402581],[-126.65546519924207,53.03133938865014],[-126.65519178167133,53.03141429735152],[-126.65490410387345,53.03147248556433],[-126.6546750514464,53.03157852166733],[-126.65453279920611,53.031740667137974],[-126.65452232430385,53.03190936949392],[-126.65452898675537,53.0320992578811],[-126.65451307255438,53.032278630920615],[-126.65449622558393,53.03245857385878],[-126.65449064297049,53.03264125114187],[-126.6544597604283,53.03281902185652],[-126.65436521859081,53.03298706976281],[-126.65421448755127,53.033145335365255],[-126.654032679528,53.03328752980818],[-126.65380756408038,53.033406432793264],[-126.65355691445234,53.03350530723269],[-126.65328348825773,53.033580776116096],[-126.65302420855292,53.03366569505089],[-126.65283678864988,53.03380679809954],[-126.65270664648608,53.03396830933661],[-126.65257275917452,53.03412928533744],[-126.65243415940759,53.034288046162914],[-126.65223199772586,53.03401744006322],[-126.65211551516855,53.03385224560876],[-126.65202416145678,53.03368074479948],[-126.65196634493904,53.03350458547573],[-126.65192998122954,53.033326057572786],[-126.65190481588871,53.03314691199682],[-126.65188993089922,53.032967709607576],[-126.65187128706268,53.03278797218027],[-126.65181908189527,53.03261121695827],[-126.65173331178336,53.03243912919631],[-126.65160939030498,53.03227565152101],[-126.65146031472956,53.03211568312799],[-126.65119230291904,53.03205665384097],[-126.65089578129755,53.03202691497254],[-126.65060657423903,53.03198592973874],[-126.65031640925343,53.03194382854809],[-126.65003527469173,53.03188150737286],[-126.64979547964938,53.031774692504584],[-126.64963998822782,53.031622600848245],[-126.64953841244582,53.031453960054314],[-126.64944707430024,53.03128245700988],[-126.64938181816396,53.03110745772522],[-126.64933613766222,53.03092954486299],[-126.64927367422071,53.03075340062586],[-126.64914604045309,53.03059050545533],[-126.64892476667302,53.03047182581343],[-126.64865189543947,53.03039993588602],[-126.64836716647976,53.030346030002626],[-126.64807794772928,53.03030336235901],[-126.64778239029789,53.03027416620339],[-126.6475149969869,53.03019383512594],[-126.64735397633751,53.03004568810844],[-126.64724216602434,53.029878221931185],[-126.64713315054605,53.029710740308616],[-126.6470204177808,53.02954439948744],[-126.64690952796752,53.02937637212965],[-126.64669381188862,53.02925485201031],[-126.64655230401662,53.02909931794064],[-126.64640888041458,53.028941544162116],[-126.64623111993014,53.028797413595726],[-126.64603575397139,53.028661778649436],[-126.64586631574578,53.02851255508567],[-126.64579365727533,53.028339826253585],[-126.64577411496575,53.02816009244683],[-126.6457489786514,53.0279809450175],[-126.64575372306297,53.02780163403536],[-126.6457687313476,53.02762226685994],[-126.64576412946789,53.027442442243434],[-126.64574832271299,53.027262687895934],[-126.64574280326417,53.02708343301128],[-126.64574567152313,53.02690356745469],[-126.64572332138042,53.026723848860115],[-126.64561712867359,53.02655635015631],[-126.64543473862841,53.026414475690764],[-126.64521901426696,53.026290155966464],[-126.6450292080407,53.02615169198257],[-126.64486539209007,53.02600187135084],[-126.64473221274962,53.02584068671445],[-126.64463345539883,53.02567146116016],[-126.6445374905848,53.025501108687074],[-126.64444897909925,53.02532958591503],[-126.64435115681215,53.025159799194526],[-126.64422170831676,53.02499802880323],[-126.64410807323006,53.02483168979805],[-126.64403539641371,53.02465784811534],[-126.64394688028743,53.024485769143325],[-126.64378771015446,53.02433424524981],[-126.64362203821865,53.0241844329217],[-126.64353168291896,53.02401404892059],[-126.64348790190786,53.02383612287013],[-126.64344318011895,53.02365820191768],[-126.64333328635176,53.023491841667045],[-126.64320569718534,53.02332893937876],[-126.64308369402079,53.02316488595982],[-126.64293195032717,53.02300995875487],[-126.64274217462305,53.02287204656463],[-126.64254405557256,53.02273754110856],[-126.64239787485326,53.02257977708068],[-126.64215729323894,53.02247744188493],[-126.64186656172788,53.022516557423955],[-126.64159561885715,53.02244352016162],[-126.64138362009939,53.02231748776136],[-126.6412068369744,53.02217277924709],[-126.64103560813578,53.02202579921309],[-126.64086160394625,53.02187995453529],[-126.6407451905094,53.02171419194579],[-126.64056377024556,53.02157174869695],[-126.64036289601522,53.021438930825795],[-126.64016294082063,53.02130555183672],[-126.64005862751327,53.02113748180693],[-126.64003538669125,53.02095832229223],[-126.64000467716627,53.02077920327362],[-126.63992177859478,53.02060652579694],[-126.63978214928233,53.020448167100085],[-126.63963320379948,53.020292099812295],[-126.63949170939978,53.0201337508664],[-126.63933071277452,53.019982795398654],[-126.63913261800094,53.0198482839857],[-126.638893851002,53.019740885373274],[-126.63864770909242,53.019639684667865],[-126.63842741412348,53.01951873867763],[-126.63821451338275,53.01939271434185],[-126.6380053229133,53.01926498426711],[-126.6378044526527,53.01913216194046],[-126.63761100837952,53.018995381737014],[-126.63741940074344,53.01885747075189],[-126.63722965961597,53.01871842883234],[-126.63704177192231,53.01857937659407],[-126.63684092298753,53.01844656145623],[-126.63662248121344,53.01832391678059],[-126.63643552995029,53.01818430272486],[-126.63637406482383,53.018008145348944],[-126.63631354968207,53.017832547551485],[-126.63617300192443,53.01767418940083],[-126.6359971736242,53.017528911949825],[-126.63579448247938,53.01739721649756],[-126.63567438372402,53.017232589040916],[-126.63566701763676,53.01705277806741],[-126.6357147791595,53.01687547581839],[-126.63576909086524,53.016698702976804],[-126.63590487072308,53.01653885478133],[-126.63604720179988,53.01638064740847],[-126.63614081121618,53.016209820904095],[-126.6362054065259,53.01603466864361],[-126.6362812201407,53.015860576351955],[-126.63640667751766,53.0156979862929],[-126.6365030853349,53.0155277001052],[-126.63656206036426,53.015351457354456],[-126.63663787976076,53.01517792946918],[-126.63672866776285,53.01500655282672],[-126.63679232447535,53.014830849377056],[-126.63681017391389,53.01465146681666],[-126.63675617180952,53.014474713213566],[-126.63666584776986,53.014303193570285],[-126.63655227933228,53.01413741094887],[-126.63640616723697,53.013980759147934],[-126.63625540668828,53.01382581752321],[-126.63611394641293,53.01366746392335],[-126.63590293199269,53.01354030446448],[-126.63563385816309,53.01346387283006],[-126.63537579225489,53.013373379026106],[-126.63520555165758,53.01322582895859],[-126.63515715869929,53.013049044313036],[-126.63514047606988,53.012869283048346],[-126.63513218716493,53.01268948552899],[-126.63508006139753,53.01251272090128],[-126.63504006134086,53.01233477040924],[-126.63506819225428,53.01215533252572],[-126.63505991210124,53.011976090668846],[-126.6349537749193,53.011808016290495],[-126.63479932540172,53.0116542130759],[-126.63452933969202,53.01157779278394],[-126.63426487164313,53.01149573053729],[-126.63400496400205,53.01140692890609],[-126.63377827371349,53.01129104627617],[-126.63358578732696,53.011153133414076],[-126.63337571889164,53.01102596427152],[-126.63322219544138,53.010871589241034],[-126.63312631808759,53.01070178174916],[-126.6329542375079,53.010554793964644],[-126.6329189143094,53.01037626171779],[-126.63293304470645,53.01019689930845],[-126.63290797316033,53.010017747253805],[-126.63293237139688,53.00983888549362],[-126.63293902632871,53.00965900735404],[-126.63288225404463,53.0094822664439],[-126.63272225367893,53.00933073125403],[-126.63262916599908,53.00916034351361],[-126.63236930767054,53.00907265852802],[-126.63208745994665,53.00901366016006],[-126.63181018727622,53.00894791336043],[-126.63151930566816,53.00890801124577],[-126.63123294234593,53.00885855514508],[-126.63097951489284,53.008764109436065],[-126.63072608843325,53.00866965421354],[-126.63051881508214,53.00854022387568],[-126.63030970117502,53.008412479338],[-126.63011168890004,53.00827795186091],[-126.62993313758052,53.008134355764845],[-126.62976850352186,53.007984517611696],[-126.6295834703264,53.00784376142471],[-126.6293586529321,53.00772618389299],[-126.62910522803769,53.00763116938467],[-126.62887393869978,53.00751810762041],[-126.62864355986949,53.007403920005714],[-126.62842428102401,53.007281828995374],[-126.62823369680403,53.007143897125836],[-126.62808949783027,53.00698666868811],[-126.62793786658047,53.00683172072448],[-126.62777325294714,53.00668244437995],[-126.6276309072948,53.0065240849476],[-126.62753133711294,53.00635484808546],[-126.62738714341548,53.006197618715596],[-126.6271734179401,53.00607269892505],[-126.62700880159991,53.00592285673708],[-126.62680155296918,53.005793419656264],[-126.62653988540443,53.005707407774736],[-126.62627086982475,53.0056303986826],[-126.62605068271058,53.00550942858248],[-126.62582493838207,53.00539128443692],[-126.62557339367996,53.00529569655653],[-126.6253181498662,53.00520235987753],[-126.625064757364,53.005107901255094],[-126.6248427263315,53.00498805921184],[-126.62461054509033,53.004875549561696],[-126.62437374898681,53.00476699027205],[-126.62412862956838,53.00466407727638],[-126.6238550566727,53.00459325427586],[-126.62358513537582,53.00451679965073],[-126.62336404417249,53.00439639406057],[-126.62319665697021,53.00424768169892],[-126.62310082647335,53.004077309647315],[-126.62309167259303,53.00389807098849],[-126.62311610048233,53.003718654866475],[-126.6231601581591,53.003540811321834],[-126.62320982313905,53.00336350286044],[-126.62326136244253,53.00318674920516],[-126.62333533971395,53.00301267378036],[-126.62342897078096,53.0028418560172],[-126.62357318530145,53.0026847730081],[-126.6237822256803,53.00255649003277],[-126.62396964376195,53.00241710667129],[-126.62411197210442,53.00225892134527],[-126.62425524822038,53.00210128660004],[-126.62429743305341,53.00192345234079],[-126.62430693034743,53.001743558985396],[-126.62429962333621,53.001564310370064],[-126.62428018411039,53.001384561212056],[-126.62424956342824,53.00120600073803],[-126.62420869364782,53.00102805028539],[-126.6240942603446,53.000861694638516],[-126.62392411719378,53.00071468294624],[-126.62366889635908,53.0006207866965],[-126.62337543676252,53.00059208373906],[-126.6231552757126,53.00047054316044],[-126.6230148344027,53.00031216771069],[-126.62287253609333,53.00015436664925],[-126.62272001575982,52.99999997206702],[-126.62267748546084,52.99964498338957],[-126.62259565567086,52.99947341604425],[-126.62249331516419,52.99930418904296],[-126.62238445923441,52.999135561087336],[-126.62226817189618,52.99896921333264],[-126.62214166955422,52.998805725201144],[-126.62200217131922,52.99864789925316],[-126.62184228332109,52.998498589254595],[-126.62164526969359,52.99836404189169],[-126.62143342425001,52.998235175105144],[-126.62123083907105,52.99810234171033],[-126.6210356776282,52.99796554246304],[-126.62084885886931,52.9978253373161],[-126.62068894672433,52.99767490529771],[-126.62055502206864,52.99751368659497],[-126.62043408971937,52.997348481927595],[-126.62030389957563,52.99718725223159],[-126.62011802038867,52.99704759674129],[-126.6198941874647,52.99692831933669],[-126.61965190626093,52.99682369662544],[-126.6194077765368,52.996720212639865],[-126.61917933821387,52.99660431074955],[-126.61896753494649,52.996478245114815],[-126.618769622261,52.99634425339454],[-126.61858651778935,52.99620178401461],[-126.61840340645932,52.9960587585885],[-126.61819168011357,52.99593660857993],[-126.61790260494688,52.995886578699526],[-126.6176178555814,52.995876300443975],[-126.6173121815749,52.99583980265338],[-126.6170143210607,52.99582623890858],[-126.61671827123186,52.99580985908733],[-126.61642483329598,52.995780018286666],[-126.61614875789954,52.99572431340792],[-126.61583881801747,52.99571472726212],[-126.61554190054667,52.99570226646159],[-126.6152449265492,52.99568588777221],[-126.61503475267239,52.995671296666615],[-126.6147118727936,52.9956051918553],[-126.61435754383851,52.995623282200334],[-126.61412820900618,52.99550906052704],[-126.61415176866683,52.99533133536936],[-126.61418741783815,52.99515129714678],[-126.61421042244358,52.99506433926964],[-126.6142970198752,52.99498712603084],[-126.61441501790374,52.99482235524579],[-126.61450293204334,52.99464316502733],[-126.6146135368601,52.99448347052399],[-126.61472214641763,52.99431594245646],[-126.61481205278072,52.99414459436335],[-126.61483745854169,52.99396572976446],[-126.6148619155631,52.993786314295455],[-126.61491721808059,52.9936100995696],[-126.61492767876545,52.99343020125529],[-126.61494001342317,52.993250848938246],[-126.61492527386633,52.99306995251399],[-126.61476735577443,52.99292566934927],[-126.61462235354644,52.9927701041645],[-126.61454239620448,52.99259683569921],[-126.61452395095942,52.992417643789146],[-126.61451761105836,52.99223726820758],[-126.61459984867507,52.99205306920465],[-126.6146208721842,52.991893285602],[-126.61463778410538,52.991708306538484],[-126.61466879514691,52.99152997724604],[-126.61469513234431,52.991350551744475],[-126.61471025881119,52.99117118467425],[-126.61472072780846,52.99099184186848],[-126.61469855067935,52.990812669273964],[-126.61474449610205,52.99063481778149],[-126.61487653192465,52.99047445503819],[-126.61504982700508,52.9903284350796],[-126.61519308847075,52.99017025447657],[-126.6152942049919,52.99000164393321],[-126.61539907542577,52.98983356947912],[-126.61550767000779,52.98966604022395],[-126.61561815269526,52.98949906574589],[-126.61571360347202,52.9893260021356],[-126.6159029691568,52.989194464029644],[-126.61614585179262,52.989086742261264],[-126.61637460201509,52.98897012945116],[-126.61658266303607,52.98884129831601],[-126.61674468578055,52.988690861370145],[-126.61687669982595,52.98852993148467],[-126.61699839468577,52.98836569378293],[-126.61712665069894,52.988203097933535],[-126.61727273596527,52.98804714084892],[-126.61742723307643,52.98789281585222],[-126.61757329304403,52.98773629372823],[-126.61770998095592,52.9875758940939],[-126.61786074323767,52.987421588039915],[-126.61804808292618,52.9872811014084],[-126.61826082011905,52.98715448370248],[-126.6184961324115,52.987040629042035],[-126.61877434352428,52.9869893087387],[-126.61907065443042,52.986964221270306],[-126.61937077809425,52.986944715794806],[-126.61966994481637,52.98692409402929],[-126.6199557799753,52.98688392742711],[-126.62018169230137,52.9867656455345],[-126.62040571304773,52.98664568783494],[-126.62068183406956,52.98658036257052],[-126.62097738738078,52.98656703561912],[-126.62127511066909,52.98657555179842],[-126.62157359420043,52.986571737109124],[-126.62187007270336,52.98655841200328],[-126.62216825263735,52.986533862651605],[-126.62245490991043,52.98648697124601],[-126.62270921737485,52.986397104169974],[-126.6229445135619,52.98628324057832],[-126.62315255794756,52.986155518110586],[-126.6233605697287,52.986026674875774],[-126.62359589512288,52.985915059860766],[-126.62381241425854,52.98579344992158],[-126.62399880988234,52.985653514347014],[-126.62417111228459,52.98550637395458],[-126.62433965063708,52.985358123707606],[-126.6244922384947,52.98520324333358],[-126.62463732954801,52.98504615239237],[-126.6247861755983,52.98489072666582],[-126.62493502056033,52.98473530073681],[-126.62508385626309,52.984579318852596],[-126.62523269074194,52.98442332780199],[-126.62537028924346,52.98426459924692],[-126.62548725784266,52.98409870084769],[-126.62561080377893,52.98393556431213],[-126.62574931631791,52.98377626563992],[-126.62589346433992,52.983618622177886],[-126.62599111342976,52.983471875269785],[-126.62606284965823,52.983275396589114],[-126.62611729044428,52.983107579469696],[-126.62613603923685,52.982924273066814],[-126.62628871903175,52.98277666872047],[-126.62655053265763,52.982691791142905],[-126.62680675690906,52.982607507460436],[-126.62705216524827,52.9824851817551],[-126.62720518739172,52.982361106073604],[-126.62742171950846,52.98224229490591],[-126.62770630276331,52.98218363111273],[-126.62795493549804,52.98209098559882],[-126.62823360586601,52.98201106139448],[-126.62857076058856,52.9819750822446],[-126.6288316162817,52.981889648820136],[-126.62905079799086,52.981760735416266],[-126.62918320819942,52.98163116427883],[-126.62930669305186,52.98146634748346],[-126.62935348266818,52.98128680806284],[-126.62921316454167,52.98113404054287],[-126.62901338413829,52.980997278054744],[-126.62894274245146,52.98082564458641],[-126.62892237616092,52.98064646362832],[-126.62900563490237,52.980473453007995],[-126.6290384595171,52.98029622925875],[-126.62905819261195,52.98011683423556],[-126.62913771889556,52.979943843380575],[-126.6292865224097,52.979787855742714],[-126.6311222763345,52.97639618232344],[-126.63114943489724,52.97621506137895],[-126.63113372559275,52.976036420092186],[-126.63104164062074,52.97586490221112],[-126.63090682207601,52.975704827641444],[-126.6307321103248,52.975559524802094],[-126.63053333290462,52.97542556507145],[-126.63030128309245,52.975313064722734],[-126.6300453004431,52.97522087099447],[-126.62976644405096,52.97515904522097],[-126.62948758024291,52.97509666302958],[-126.62919337771845,52.97506966433099],[-126.62890542124018,52.97502301721171],[-126.62861927257234,52.9749724332907],[-126.6283358719882,52.974917916532064],[-126.62805517974545,52.97485778183913],[-126.62777722082143,52.97479371442631],[-126.62750107659534,52.974725145475965],[-126.6272222189558,52.97466275790758],[-126.62693972265367,52.97460655662473],[-126.62670400596387,52.97449743041283],[-126.62647381857805,52.97438268047706],[-126.6262390278782,52.974272427846294],[-126.62599684377811,52.97416670524462],[-126.62575097985852,52.97406435441389],[-126.625484971096,52.97398732717947],[-126.62519790172152,52.973937304629466],[-126.62491630356321,52.973877732053296],[-126.62468154444345,52.97376916148346],[-126.62440176532745,52.97370732794517],[-126.62412199378993,52.97364493790465],[-126.6238395164988,52.97358928491241],[-126.62354724243157,52.97356562365151],[-126.6232486614528,52.97355655339598],[-126.62295449660697,52.97353009477497],[-126.62267434123362,52.9735696746818],[-126.62241451492167,52.97365957192835],[-126.62213179739614,52.9737148519646],[-126.62184334444015,52.97376064127213],[-126.62155679690592,52.97380921674606],[-126.6212702732054,52.973859467756164],[-126.62098853388,52.97391754576232],[-126.62071348609169,52.973987349277564],[-126.62044508884253,52.97406608163519],[-126.62020789843376,52.97417378377968],[-126.61995250496109,52.97424796430049],[-126.61965554847184,52.974222632691074],[-126.6193648600093,52.97417989417651],[-126.61906985930537,52.97416071839515],[-126.61877236188727,52.974161716160836],[-126.61847393261601,52.974163282830126],[-126.61817637151154,52.97416092670024],[-126.61787880087645,52.97415688454225],[-126.61758113401606,52.97414723932197],[-126.61728434228543,52.97413310651404],[-126.61698683695553,52.974133544015174],[-126.6166894304382,52.97414182418878],[-126.61639211174497,52.97415514120277],[-126.61609453458003,52.97415165933818],[-126.61579690735516,52.97414368576805],[-126.61550158471687,52.97416708413252],[-126.61520307424058,52.97416304012802],[-126.61492027102167,52.97421325621248],[-126.6146915637963,52.9743276262742],[-126.61446850892831,52.974447013417546],[-126.61420865175505,52.974536327802184],[-126.6139217667585,52.97456247512781],[-126.61362335066492,52.97456514999086],[-126.61333675600179,52.97461146449674],[-126.61306249399378,52.97467172565034],[-126.6127691362732,52.974702386081425],[-126.61247675047079,52.97473528185196],[-126.61225644841315,52.97478628718688],[-126.61194603033812,52.97486242143475],[-126.61163648361406,52.97480519451545],[-126.61134120010607,52.974766386543216],[-126.611045281795,52.9747477512372],[-126.61074764453464,52.97474032971586],[-126.61045010272198,52.974738509757344],[-126.61015380761137,52.97475909382607],[-126.60989197796484,52.974841694426324],[-126.60967550678559,52.97496551158378],[-126.60940288683163,52.9750117441737],[-126.6092247045121,52.97487819811495],[-126.60917179967922,52.97470086709689],[-126.60908446981082,52.97452987258403],[-126.6088922699547,52.97439471312685],[-126.60867502715121,52.97426865616699],[-126.60844486665728,52.97415330635806],[-126.60823786936204,52.97402663092222],[-126.60808920114498,52.97386939896219],[-126.60789977376501,52.97373254719656],[-126.60767980406925,52.973611540499036],[-126.60745336305482,52.973493928434934],[-126.60723430497916,52.97337179563977],[-126.60702450884257,52.973244011911945],[-126.60681561503003,52.973114537835094],[-126.60661320310528,52.972982233092424],[-126.60642193421958,52.97284538840308],[-126.6062445437596,52.97270119282268],[-126.60608382071293,52.972548502539496],[-126.60594628541385,52.9723872840894],[-126.60584504035808,52.972219720274175],[-126.60579956541322,52.97203898765872],[-126.60576990352834,52.97185480306183],[-126.6057021679944,52.97168258455243],[-126.60555643512525,52.97153429868285],[-126.60535592369065,52.97140366727391],[-126.60513034621299,52.97128044343025],[-126.60490384497552,52.97115722389462],[-126.60469959116695,52.97102548104279],[-126.60450924637317,52.97088750785871],[-126.60432074403242,52.970747848549514],[-126.60412670348184,52.97061213481911],[-126.60392144220017,52.97047423714834],[-126.60369601695166,52.97036109483013],[-126.60340576737903,52.970345208348434],[-126.60311452001571,52.97039152202606],[-126.60283473919675,52.97045627009602],[-126.60254416055702,52.97048352935279],[-126.60224632449366,52.97045983486473],[-126.60197119848931,52.970392886393185],[-126.60174849671418,52.97027356784118],[-126.6015442727715,52.970142939932714],[-126.60137339756477,52.96999534197382],[-126.6011867743468,52.969855659093675],[-126.6009483760083,52.96974762474172],[-126.60071090378868,52.96963957622056],[-126.60047713817738,52.96952871140248],[-126.6002313784366,52.969427436496346],[-126.60002107804078,52.96932765687167],[-126.59999760816173,52.9693171265486],[-126.59972706034247,52.96924287034991],[-126.59945373218142,52.96917030404064],[-126.59917764740129,52.96910111280922],[-126.59889976863651,52.96903584754303],[-126.59862009764645,52.968976758313154],[-126.59832161739362,52.968972115772935],[-126.5980391891601,52.968915280297665],[-126.59774504843148,52.96888707346604],[-126.59746175248947,52.96883528803242],[-126.59718496043749,52.96878121886285],[-126.59688967179892,52.9688040058591],[-126.59659274355774,52.96877693980643],[-126.59632592788908,52.968703212723916],[-126.59616153346518,52.96855108317958],[-126.59609943690135,52.968378830500754],[-126.5960625170242,52.96820589460831],[-126.5958971306628,52.968049852189516],[-126.59563140427315,52.96811955024331],[-126.5954026700504,52.96823331855982],[-126.59518618255207,52.96835655383031],[-126.59496310425614,52.96847590447748],[-126.59474003173099,52.96859468989425],[-126.59448864767208,52.96869064168801],[-126.59421453803867,52.96876094354949],[-126.59396031489433,52.96885354682336],[-126.5937136444553,52.96895284382504],[-126.59341833784612,52.96897562219452],[-126.59313265967072,52.96901907729051],[-126.59285549086974,52.96907146234371],[-126.59255627345661,52.96908136726415],[-126.59227243531544,52.96912313464769],[-126.59202013326187,52.96922021524261],[-126.5917392005272,52.969270366471804],[-126.5914408357659,52.96927410565461],[-126.59116575786726,52.96920881711521],[-126.59089336171266,52.96913566158192],[-126.59062005715653,52.969063639501236],[-126.5903280419613,52.969053897290934],[-126.59002893289345,52.969071639187845],[-126.58973957576792,52.969052361907465],[-126.58947542756128,52.968967956195534],[-126.58918718207518,52.96896099819108],[-126.58906826676831,52.968993524326926],[-126.58894042216784,52.96905467380425],[-126.58882920678757,52.96910453440973],[-126.58868974524948,52.96913493067413],[-126.58839220537543,52.9691313698808],[-126.58809456433272,52.96911940910477],[-126.5877986574261,52.96909903919022],[-126.58749922139681,52.96909212391557],[-126.58712463827386,52.9690469274422],[-126.58702237882895,52.96900205866233],[-126.58670954935111,52.968971676301244],[-126.58641307444172,52.96897707867691],[-126.58616548374597,52.96907804071875],[-126.58588170926373,52.96912595096951],[-126.58585615026657,52.9693014505167],[-126.58578204737726,52.969473264939],[-126.58567058997917,52.96964133852574],[-126.58554692422815,52.96980275825041],[-126.58534920444565,52.96993708749569],[-126.5851580573883,52.97007530123371],[-126.58499224852572,52.97022460342624],[-126.58480015091543,52.97036114490717],[-126.58460054574688,52.97049436162263],[-126.58437835099323,52.97061255796298],[-126.58415428233094,52.970730207361655],[-126.58395938200667,52.970866205502325],[-126.58375881646822,52.970998304925494],[-126.58353099082319,52.971114286382864],[-126.58338485504758,52.971270212106674],[-126.58324433684702,52.97142890674216],[-126.58311500762309,52.971586425259424],[-126.58301941837489,52.97175722340029],[-126.58299389194215,52.97193607453657],[-126.58297677345138,52.9721154488117],[-126.58292043427193,52.97229222017648],[-126.5827817909984,52.972450904862455],[-126.58269180145385,52.97262223073528],[-126.58263451996262,52.97279788600066],[-126.582629530903,52.97297832070857],[-126.58261054530898,52.97315770404009],[-126.58253920512354,52.97332893750525],[-126.58257297730691,52.973479490198606],[-126.58254967389281,52.97368466766093],[-126.58254930872786,52.97386171773242],[-126.58256575362088,52.974041481595826],[-126.58256168883175,52.97422079103617],[-126.58246147432652,52.97439441715708],[-126.58235361391591,52.97455462529446],[-126.58221214825899,52.974712767198646],[-126.58206880859807,52.974870353408264],[-126.58194701788327,52.97503567691275],[-126.58175764036588,52.97516827301659],[-126.58153449625426,52.97528815350789],[-126.58136115499944,52.97543468125491],[-126.58123185256241,52.9755955587713],[-126.58095465053225,52.975718510603194],[-126.58056707425068,52.97574955514539],[-126.58042973315277,52.975800656751254],[-126.58022541776124,52.97593276806919],[-126.58002859312813,52.97606820381769],[-126.57983458020212,52.97620418118197],[-126.57961801471257,52.976327951977595],[-126.57939109702234,52.976444485157984],[-126.57912263832371,52.97652536423286],[-126.57888144644703,52.97662179653912],[-126.57871841825565,52.97677275177476],[-126.57845274638926,52.976852495049854],[-126.5781661513008,52.97690264115421],[-126.57788239184997,52.97695614328403],[-126.57761294852287,52.977033097265824],[-126.57735581895247,52.97712344593007],[-126.577136413242,52.97724554063786],[-126.57697801713502,52.9773953501273],[-126.57693193560732,52.97757374404173],[-126.57687184816977,52.97775052116129],[-126.5767780549497,52.9779190635141],[-126.57668709688633,52.97808983300811],[-126.57656620098197,52.97825402555097],[-126.57641720960189,52.978409955690154],[-126.57628320848747,52.978570850334805],[-126.57619411243581,52.978741610260144],[-126.57612654349501,52.97891730287605],[-126.57603558067983,52.97908807176511],[-126.57591841790182,52.97925281003189],[-126.57576847282678,52.97940817912992],[-126.57559883328892,52.97955523556986],[-126.57544233408812,52.97970839511629],[-126.57528770684304,52.97986211005679],[-126.5751208922607,52.98001083727489],[-126.57498026124192,52.980165595062225],[-126.57489211195931,52.98033746973256],[-126.57474309950632,52.98049283283906],[-126.57458284016633,52.98064433311549],[-126.57445979840789,52.98078891947503],[-126.57431850967107,52.980963858496075],[-126.57418914122407,52.98112416310263],[-126.57399792264648,52.98126236669807],[-126.57379072505819,52.98139223913397],[-126.5735788096066,52.98151877249243],[-126.57338194525383,52.98165363189211],[-126.57317191552767,52.98178184062332],[-126.57291753102902,52.981871601053655],[-126.57265091369602,52.981953011739364],[-126.57239688161711,52.98206910676287],[-126.57214751203036,52.98218573438444],[-126.57190133693324,52.98226144134913],[-126.57166658544398,52.982216637577665],[-126.5714425222604,52.98206420856513],[-126.57122260577894,52.98194257867751],[-126.57097869435057,52.98184010503765],[-126.57073478421819,52.98173763985058],[-126.5704715427416,52.98165375234992],[-126.570182696025,52.98160920745],[-126.56990479506355,52.98154499477891],[-126.56964798073757,52.98145379526016],[-126.5694455697614,52.981315824958145],[-126.5691762691299,52.98126725674594],[-126.56887040116733,52.98127433622355],[-126.56857105485362,52.981280262894046],[-126.56828623142256,52.98132645864267],[-126.56800052702859,52.98137714015107],[-126.56770711307551,52.98140825292662],[-126.56741069845498,52.981424803280554],[-126.56711430608091,52.981443038090134],[-126.56681892837109,52.98146799058191],[-126.56654562334087,52.981538778839145],[-126.56630859803568,52.98167214301224],[-126.56606897475349,52.98175061216204],[-126.56582402239415,52.98184927631983],[-126.56560458162329,52.98197191386125],[-126.5652917557452,52.98187704727487],[-126.56488078764986,52.98183755726963],[-126.56459099786257,52.98179131790468],[-126.56431589510335,52.98172708765795],[-126.56407012866259,52.98162405288263],[-126.56379404285917,52.98155645550773],[-126.56353910708725,52.98146523375531],[-126.56328758422437,52.9813498988101],[-126.5631448979668,52.98121106756552],[-126.56303383910567,52.981136521233594],[-126.56284716297606,52.98112789266359],[-126.56261264968093,52.98109987803496],[-126.5623159981333,52.98109848789298],[-126.56202147881484,52.98111726572072],[-126.56172903948695,52.98108111693168],[-126.56146769266907,52.980998885671895],[-126.56127372735837,52.980861981752724],[-126.5611048069215,52.98071375276491],[-126.56088215821177,52.98059491356437],[-126.56064011536228,52.98049016860817],[-126.56038609596911,52.98039612982053],[-126.56012932376083,52.98030602998065],[-126.55985417822042,52.98023729837399],[-126.55957810824194,52.98016970003137],[-126.55930480788201,52.98009928203919],[-126.55904801760077,52.980007494623294],[-126.55880507207661,52.97990387073236],[-126.55856120238987,52.97980138023571],[-126.55827152162107,52.97976184816778],[-126.55797514433247,52.97978062473576],[-126.55769418988265,52.979837417360855],[-126.55740562612283,52.97988304875064],[-126.55707917945304,52.97995686331642],[-126.55705026396457,52.98009875419784],[-126.55684088411961,52.980137277625936],[-126.55644920558075,52.98007245924054],[-126.55618228608668,52.979990798393125],[-126.55591630780398,52.979909132502435],[-126.55564215575325,52.97984374805803],[-126.55533793445915,52.979833420637355],[-126.55504756493463,52.97981293327332],[-126.55474995361512,52.979808175961665],[-126.55446029831867,52.97977031973175],[-126.55417966407043,52.979708888801376],[-126.55389539457346,52.97965475338893],[-126.55363036262959,52.97957419845698],[-126.55336439920346,52.97949309151013],[-126.55309570429523,52.979416470022926],[-126.55282422666687,52.97934154628609],[-126.55255551154423,52.97926436787087],[-126.5522886559661,52.97918550378529],[-126.55202269019897,52.97910382906837],[-126.55175673999301,52.97902327423039],[-126.55148251246595,52.97895227772946],[-126.55119114574796,52.97892562700713],[-126.55089604858435,52.97889899300358],[-126.55060453031227,52.9788605802368],[-126.55031844914122,52.97880980633473],[-126.55006083328288,52.978723606005445],[-126.54992161787878,52.97856177576023],[-126.5497827806378,52.97842795736012],[-126.54943319358928,52.97837076321008],[-126.5491254054541,52.978372197736014],[-126.54882053806755,52.97838370281809],[-126.54852200446504,52.97837948991403],[-126.54822537964321,52.97837862902836],[-126.54793266602279,52.97839175161922],[-126.54766126528828,52.97846641371764],[-126.54736672877246,52.97848290502268],[-126.54706820188314,52.97847925316022],[-126.5467718140677,52.97849687212146],[-126.54648707201413,52.97854973817013],[-126.54621662942431,52.97862606881928],[-126.54596128114912,52.978716896074694],[-126.54572578481907,52.97882780075398],[-126.5454638913168,52.978916980874445],[-126.54530158186651,52.97906171823265],[-126.54517780732291,52.979228697068805],[-126.54503434393374,52.97938847875076],[-126.54484860532546,52.979525479927325],[-126.5445744012453,52.97960014776776],[-126.54432855006226,52.97970492989691],[-126.54411558708829,52.979828053220835],[-126.54402450100021,52.97999936201639],[-126.54403239827349,52.98017916928303],[-126.54403563951287,52.980359006987136],[-126.54402394191088,52.98053890466498],[-126.54410544032496,52.98071109302323],[-126.54431965491817,52.98083112319255],[-126.54462096786726,52.98090537277048],[-126.54490071303691,52.980897912248594],[-126.54518972098411,52.98088537022605],[-126.54542247952025,52.980996348222476],[-126.54560155663323,52.98114007019647],[-126.54582415780988,52.98125950301401],[-126.5460532393275,52.981374414224796],[-126.54621469153994,52.98152494020048],[-126.54632782780043,52.98169137760041],[-126.5463366682177,52.98187062441317],[-126.54632124170519,52.982049983692086],[-126.54631889611053,52.98222984707348],[-126.54632961603322,52.982411326214006],[-126.54639620997159,52.98258413773219],[-126.54652138990262,52.98274323994427],[-126.54668658676185,52.98289542415841],[-126.5468508379122,52.98304593618073],[-126.54705583055379,52.983172727372875],[-126.54734020140886,52.98323360205299],[-126.54758679743871,52.98333050011662],[-126.54781224312866,52.9834515922264],[-126.54801637253713,52.983583988489954],[-126.54813505371783,52.98374423969794],[-126.54824167389107,52.9839101406486],[-126.54836226534607,52.98407486490898],[-126.54848472373018,52.98423845083487],[-126.54861275073083,52.98440089912051],[-126.54875100376958,52.984559929042526],[-126.54882694651435,52.98473326025814],[-126.54888892611741,52.98490946228239],[-126.54900020888385,52.985075340746306],[-126.54914033136458,52.98523437042173],[-126.5492692968815,52.985396248795354],[-126.54940106209246,52.98555754921213],[-126.54952267544186,52.985727870134994],[-126.54957515688542,52.98589066047331],[-126.54957467563956,52.986070514877184],[-126.54959100075395,52.98625028193866],[-126.54959145260166,52.98642956719854],[-126.54957790391015,52.98660891771578],[-126.5495802287586,52.986788758959506],[-126.54959655417228,52.9869685259431],[-126.54961658914829,52.987147719818836],[-126.54962263843997,52.98732697888431],[-126.54961844073814,52.98750685046337],[-126.54960583936088,52.98768675224087],[-126.5495848271327,52.987866137420895],[-126.54954141100062,52.988043385934056],[-126.54948491887669,52.9882206953639],[-126.54939663534188,52.988391429650086],[-126.54929432825243,52.9885605528617],[-126.54922847627091,52.988735664631136],[-126.54914674257869,52.98890860923964],[-126.54904442595688,52.989077167461986],[-126.5489346306157,52.98924463985653],[-126.54884073785145,52.989414834967484],[-126.5487533891874,52.989586684817965],[-126.54866603981712,52.98975853458603],[-126.54855998029237,52.989926553914906],[-126.54844736008356,52.990092918353305],[-126.5483487841008,52.99026257896711],[-126.54824927455552,52.99043167906557],[-126.54810673929356,52.990593700065105],[-126.54791435181623,52.99072402159429],[-126.54765044423536,52.990807047513734],[-126.5473752534614,52.99088340196774],[-126.54710758312466,52.99096420304038],[-126.5468408593531,52.991045554894946],[-126.5465845051562,52.99113583136384],[-126.5463602020912,52.99125172223732],[-126.5461585268393,52.99138600127115],[-126.54591444144035,52.99148798061918],[-126.54570331876178,52.99161333825554],[-126.5455269815791,52.99175870429124],[-126.54529420336526,52.99186959432665],[-126.54504353942211,52.99196768483426],[-126.54479189123764,52.99206128821529],[-126.5445440021702,52.99215824427429],[-126.54427631119371,52.99223847413758],[-126.54402089915864,52.99232986110094],[-126.54378906868689,52.99244186426194],[-126.5435657339611,52.99256222735946],[-126.5433395563462,52.99267868571021],[-126.54309832051389,52.99278512811447],[-126.542874975549,52.9929038135796],[-126.54269296741242,52.99304583968659],[-126.5425166212002,52.99319176581462],[-126.54239177539415,52.99335257755085],[-126.54231281091397,52.99352662457593],[-126.54223759282914,52.99370065429632],[-126.54213149794438,52.99386865848261],[-126.5420001171804,52.994030064525575],[-126.54186687706978,52.99419091419578],[-126.54172049410612,52.99434677717443],[-126.54151219428465,52.99447547561794],[-126.54128506035065,52.99459193421431],[-126.5411311887847,52.99474503392243],[-126.54095474393179,52.9948853552661],[-126.54071533427988,52.99499009889975],[-126.54049949972494,52.995113792088475],[-126.54032144140055,52.995274280570634],[-126.54004360812112,52.99543971694353],[-126.5398229625893,52.99547882572222],[-126.53952450893131,52.9954902767005],[-126.53923300557389,52.99553531129424],[-126.53897664360561,52.99562836768004],[-126.53873823644204,52.995738705320605],[-126.5385308819295,52.99587019982631],[-126.53834140317004,52.99601392928787],[-126.5380970533713,52.99609740877258],[-126.53779306015542,52.99611391856301],[-126.5375015011499,52.9961550316841],[-126.53722540271401,52.99623696878808],[-126.53701884632335,52.99635892787293],[-126.53688654101491,52.99652256417675],[-126.53681695771819,52.99670161124549],[-126.53682663719394,52.99687692681359],[-126.53689141192676,52.997055917857566],[-126.53693567379175,52.99723500226569],[-126.53696125187007,52.997413615943465],[-126.53698498588605,52.99759279378252],[-126.53701430388199,52.997771946166246],[-126.53705668660764,52.99794991848025],[-126.53710931947364,52.99812727931918],[-126.53716008663231,52.99830465758194],[-126.53719685676627,52.99848265536368],[-126.5372065807024,52.99866133213045],[-126.53719206433573,52.998841804604126],[-126.5371719419472,52.999021746809994],[-126.53716487634601,52.999201064760555],[-126.53723799107456,52.99937441471615],[-126.53730460295556,52.9995494705652],[-126.5373507063836,52.999727425644835],[-126.53737630263677,52.999906038900114],[-126.53737935190063,52.999999585233525],[-126.53739560882396,53.00017879680526],[-126.53740908096565,53.00035858579791],[-126.53742162036663,53.000537814271965],[-126.53743041923876,53.000717615559786],[-126.53742990136101,53.0008974682561],[-126.53736958755114,53.0010731023472],[-126.53729059606397,53.00124658938854],[-126.53720878973282,53.001419524430794],[-126.5371204215566,53.001590804001324],[-126.53703768813006,53.00176374310621],[-126.53697363874399,53.00193940286871],[-126.53694603398385,53.00211824926867],[-126.53693710761434,53.00229814009153],[-126.53699533053756,53.00247435455851],[-126.53707963474945,53.002646532808676],[-126.53718256173603,53.00281526455041],[-126.53730876412968,53.00297885221907],[-126.53726059354425,53.00315499544007],[-126.53723018201508,53.003333854567266],[-126.53716333165328,53.00350896227411],[-126.5371179812364,53.003686213062636],[-126.53709972274451,53.0038661462377],[-126.53711038043163,53.00404538294135],[-126.53713504457411,53.0042245558286],[-126.53717370118535,53.00440254442291],[-126.53720302467492,53.00458169603617],[-126.5371978318495,53.00476156064685],[-126.53709730335363,53.00493066312254],[-126.53692650232395,53.00507766585932],[-126.53673127844,53.005213583134854],[-126.53652666454491,53.005343931168454],[-126.53631734732119,53.00547206812196],[-126.53610707382957,53.005599079539955],[-126.53590151551722,53.00572943969947],[-126.53569878442941,53.005861462957185],[-126.5354960300327,53.00599292120851],[-126.53529517014567,53.00612549999144],[-126.53509617467864,53.00625918152343],[-126.53490188728244,53.006395647158406],[-126.53471323380869,53.00653489272134],[-126.53454992688263,53.00668521942292],[-126.5344044290297,53.00684219732815],[-126.53425142825742,53.00699640321549],[-126.53406933093821,53.00713841482066],[-126.5338834999477,53.00727932249925],[-126.53373892335026,53.007436286373206],[-126.53366551219912,53.00761030073945],[-126.53363041614337,53.00778862379829],[-126.53359251229881,53.00796695953027],[-126.53351162588271,53.00814045177734],[-126.53337548781468,53.008300182738516],[-126.53321402823079,53.008451063773364],[-126.53305633688841,53.00860360384852],[-126.53290050328235,53.00875670004663],[-126.53274749015856,53.008910903808356],[-126.53261696807434,53.009072293704236],[-126.53248926650627,53.00923478226591],[-126.53233905686086,53.009390093310785],[-126.53219073487912,53.00954596037367],[-126.5320423967629,53.009701818339444],[-126.53188657040998,53.00985491303115],[-126.53171947126303,53.010003576207204],[-126.53153455293702,53.01014504048579],[-126.53131297217139,53.0102653706267],[-126.53104702304687,53.01034669060773],[-126.53075721253617,53.010386648870785],[-126.53048175974125,53.01045456399815],[-126.53020442517409,53.010521357443096],[-126.52991850106883,53.01057251040095],[-126.52963253329533,53.010621412837956],[-126.52934661475211,53.01067312015692],[-126.52906354406386,53.01072929611282],[-126.52879093486756,53.010801676608985],[-126.52853160941665,53.01089024010355],[-126.52828171349275,53.01098772499997],[-126.52803844131998,53.0110919028639],[-126.52779233342403,53.01119273132328],[-126.5275424409252,53.011290770386466],[-126.52729538981464,53.01139160200534],[-126.5270841272121,53.0115180452791],[-126.52694698651264,53.011674411245394],[-126.52694268937267,53.01185539993962],[-126.52693465250093,53.01203472005003],[-126.52693407501056,53.01221456259709],[-126.52693630541528,53.012394401544974],[-126.52694881108329,53.01257418560447],[-126.52697249640872,53.01275336391574],[-126.52701763801058,53.01293077003039],[-126.52709727662388,53.013104095634674],[-126.52716852118382,53.01327857921226],[-126.527236965367,53.01345363102956],[-126.527305418152,53.0136281269726],[-126.52740389455514,53.01381593492075],[-126.5272311587247,53.013888420753105],[-126.52691760898792,53.0138976655273],[-126.52662200402149,53.013923081444986],[-126.52632937899301,53.013963605926726],[-126.52608694851239,53.014062728885875],[-126.5259273369131,53.01421471150049],[-126.52582392628224,53.01438325122639],[-126.52574018100745,53.014556185289514],[-126.5256452192857,53.014728048732614],[-126.52546678126107,53.014867788774815],[-126.52521686189058,53.014965831661996],[-126.52496789606835,53.01506498132493],[-126.52473966684187,53.01518029028347],[-126.52454624635766,53.01531673395228],[-126.52438286173663,53.01546761057373],[-126.52426072446173,53.01563119413786],[-126.52417789641142,53.01580412284893],[-126.524053869554,53.01596602928839],[-126.52389705730118,53.01611967278738],[-126.52376835335338,53.01628159965998],[-126.52368177409922,53.01645342407502],[-126.52360273955014,53.01663026175166],[-126.52340068548826,53.01674936911826],[-126.52312144552818,53.016817283369704],[-126.52283831872028,53.016872879468885],[-126.52255233489913,53.01692457019304],[-126.52226635848648,53.016975704407294],[-126.5219813280554,53.01702851003909],[-126.52169438161432,53.01707739714112],[-126.52143115767373,53.01715811804709],[-126.52139600930785,53.017337001170645],[-126.52131784150603,53.017509907035034],[-126.52118163438558,53.01767017878445],[-126.52099570776686,53.01781050952955],[-126.52077498326501,53.017930815237904],[-126.52054014364838,53.018042783375925],[-126.52034668983619,53.01817866417986],[-126.52025072279723,53.01834772143029],[-126.52023897022715,53.01853098296059],[-126.52001058610321,53.01863619838859],[-126.51977010475979,53.018745384006],[-126.51954090874104,53.01886013098778],[-126.51928151357488,53.0189497942495],[-126.51902213225112,53.019039456870416],[-126.51880041366437,53.019156401556344],[-126.51861165753324,53.01929617605921],[-126.51842385489878,53.01943706657322],[-126.5182266523033,53.01957408072578],[-126.51806321647175,53.0197227072296],[-126.51797474669269,53.01989509105544],[-126.5178797142999,53.02006470678601],[-126.51768250143662,53.020200034741364],[-126.5175124912105,53.020346448218845],[-126.51738830845024,53.02049994831654],[-126.5170881467079,53.02053936201214],[-126.51682387060644,53.02045872215432],[-126.51657430850096,53.020359524222364],[-126.51633493631644,53.02025300226807],[-126.51610201832875,53.0201402932151],[-126.51587003446642,53.020028135393204],[-126.51563249907315,53.01991879819535],[-126.51539490929079,53.01980610816007],[-126.51515366239006,53.019698471471415],[-126.51490139545132,53.01960712544312],[-126.51462251750002,53.019553436861216],[-126.51431892895292,53.01954019407002],[-126.51402008929942,53.01953421766681],[-126.5137203763047,53.019533837944586],[-126.51342173308771,53.019544102224444],[-126.51312796820737,53.01957115232311],[-126.51283240197522,53.019604932636625],[-126.51253599706745,53.01964600370969],[-126.51224716838526,53.01969599632888],[-126.51197157162713,53.01975938600955],[-126.51172335290057,53.01984729874553],[-126.51152145941525,53.019983757160034],[-126.5113383582536,53.02013021843136],[-126.511158956637,53.020273866555286],[-126.5109898767376,53.02042250753414],[-126.51083299410234,53.02057557751267],[-126.51069579796793,53.02073472041411],[-126.51057640640869,53.02089995341534],[-126.51046449644565,53.02106627442192],[-126.5103544663406,53.02123370768832],[-126.51025005066698,53.021402237067086],[-126.51015311677098,53.02157185449849],[-126.51007021970686,53.021744772695904],[-126.51001445913779,53.02192205557661],[-126.50999232992747,53.02210087829146],[-126.50999262847876,53.02228128032788],[-126.5099845247523,53.022461153925505],[-126.50994650854365,53.02263948050629],[-126.50989639544004,53.02282066511236],[-126.50982662162775,53.02299688782938],[-126.50972495275508,53.023162043120735],[-126.50953418751205,53.023293967626124],[-126.50929091302706,53.023407625481234],[-126.509072961787,53.023530146654025],[-126.50885500100838,53.02365322322725],[-126.5086370471434,53.02377573461346],[-126.508408706723,53.023889335175106],[-126.50818036497397,53.024002926323725],[-126.50799624019423,53.02414490428251],[-126.5077500158532,53.02424625485456],[-126.50746440315682,53.02425588305748],[-126.50722863130318,53.02413924274532],[-126.50700497290403,53.02401975309705],[-126.50677391967326,53.02390645314181],[-126.50654472169876,53.023792024250355],[-126.50631459200685,53.02367703416956],[-126.50608354248187,53.02356373283954],[-126.50585248757098,53.02344987530179],[-126.50563161680718,53.02332924160119],[-126.50540706761878,53.02321199375499],[-126.50514000849788,53.02313301608999],[-126.50484732851649,53.023096736045595],[-126.50455463398977,53.02306044637455],[-126.50426200151112,53.02302808200283],[-126.50396663415177,53.023001895911015],[-126.50367041890824,53.022983547350876],[-126.50337249098372,53.022976975258366],[-126.50307472072721,53.02298496845302],[-126.5027799910033,53.02301256145378],[-126.50249775069105,53.023069224977576],[-126.50224679060494,53.02316610220538],[-126.50202504402772,53.02328637645486],[-126.50181741494107,53.0234155633181],[-126.50161261291963,53.023546414072584],[-126.50139933281764,53.02367169790885],[-126.50116345773155,53.0237813901092],[-126.50089639858882,53.023860395566906],[-126.50060264870689,53.023891896244265],[-126.50030473953977,53.02388867785006],[-126.50000759357422,53.02387033299449],[-126.49971137574235,53.02385085398098],[-126.49941342740853,53.02384427195764],[-126.49911771045333,53.02386737787842],[-126.49884305895797,53.023936326148515],[-126.49859493343749,53.0240365450623],[-126.49835998183568,53.02414678346798],[-126.49811844147936,53.02425201137625],[-126.497855189246,53.024336605357185],[-126.49757579284648,53.02439884757046],[-126.4972897145107,53.02444935635869],[-126.49700175029113,53.02449707558875],[-126.49671853812387,53.02455260874311],[-126.49644484578184,53.02462379732247],[-126.49617589204978,53.02470167945423],[-126.49591356589542,53.024786820933045],[-126.49566919600325,53.02488981461164],[-126.49547186856007,53.025024549363025],[-126.49536457774734,53.025191956461676],[-126.49532462367173,53.02536972117052],[-126.49531738360632,53.02554959850588],[-126.49531481952738,53.02572944722751],[-126.49529355919722,53.02590881864089],[-126.49523771842144,53.02608497364213],[-126.49515944110065,53.026258981731345],[-126.49502779661735,53.02642033224576],[-126.4948191700714,53.02654782533498],[-126.49459268434752,53.02666474354995],[-126.49436526461834,53.026781109455996],[-126.4941350088146,53.02689524576249],[-126.49390380407573,53.02700882980476],[-126.49367165867535,53.02712128784048],[-126.49343763159284,53.027232641727686],[-126.49320172262348,53.02734287352825],[-126.49296579952856,53.02745199335584],[-126.49272800111596,53.02756055579274],[-126.49248926863028,53.0276685568991],[-126.49225051354875,53.02777600183101],[-126.49201082450728,53.0278828943885],[-126.49177020140432,53.02798922560246],[-126.49152955562039,53.02809499167071],[-126.49128892368223,53.02820076614303],[-126.49104734917798,53.02830653507164],[-126.49080576704813,53.028411747752244],[-126.49056419024413,53.02851752464236],[-126.49032353204741,53.02862273247139],[-126.49008006579078,53.02872683095006],[-126.48983188509388,53.02882646644234],[-126.48957991431388,53.02892275559491],[-126.48932606389452,53.0290168109726],[-126.48907031038121,53.029109188434106],[-126.48881456429983,53.02920100952772],[-126.48855881506097,53.02929395058107],[-126.48830496016163,53.02938800374154],[-126.48805298907786,53.02948485431223],[-126.48780573193064,53.02958503741392],[-126.48756412811781,53.0296896876322],[-126.48732819025632,53.02979990753059],[-126.48710073383562,53.02991625922071],[-126.48689772069679,53.030048196739735],[-126.48672476452909,53.03019402077261],[-126.48657525473553,53.03034926770529],[-126.48643792766305,53.03050894624709],[-126.48630623676911,53.0306702776644],[-126.48616984896738,53.030829951984956],[-126.4860212677514,53.030985759051106],[-126.48586988488618,53.03114101271065],[-126.48573911626336,53.031302339620986],[-126.48565610939087,53.03147468385973],[-126.48561237329646,53.031652459997794],[-126.48558640713448,53.03183184822285],[-126.48557164725915,53.03201119031089],[-126.48556436475154,53.03219106634662],[-126.4855580170799,53.03237037378007],[-126.48554886657575,53.03255024849878],[-126.4855322385096,53.032729598191665],[-126.48550066162538,53.0329084535937],[-126.48542325180296,53.03308188600639],[-126.48531964943824,53.03325038826809],[-126.48522633735682,53.03342108912285],[-126.48513956722654,53.03359288349721],[-126.48504812794711,53.03376414120727],[-126.48493983257376,53.03393154183745],[-126.48478656096442,53.03408623680647],[-126.48455810131408,53.034199790517],[-126.48432310398898,53.03431280586833],[-126.48418104235137,53.03446801873046],[-126.48411579845066,53.03464364119202],[-126.48407579483126,53.03482196581518],[-126.48402458575096,53.0349992158576],[-126.48390504398259,53.03516386473022],[-126.48370762504105,53.03529801428619],[-126.48354401422264,53.03544714732661],[-126.48345535890893,53.035618392167656],[-126.48339011023941,53.035794014110024],[-126.48328929403324,53.03596306758499],[-126.48314538066104,53.036120527606734],[-126.48297989676009,53.036269667440486],[-126.48279938959436,53.03641327492234],[-126.48256247550435,53.03652348864893],[-126.48237720160087,53.03665815090414],[-126.48232316107119,53.036834291048265],[-126.4822766047051,53.0370115210693],[-126.48220199008814,53.037185504181075],[-126.48214701941775,53.03736276848955],[-126.48206397329643,53.0375339801754],[-126.48194162003225,53.03769975874343],[-126.48185200148865,53.03786875607037],[-126.48192778558946,53.038043810014734],[-126.48204454374167,53.038209167784856],[-126.4821361554631,53.03838023067482],[-126.482137264548,53.038559506751795],[-126.48207574841348,53.03873567711154],[-126.48202545281946,53.038912922097275],[-126.48196767183497,53.03908907710575],[-126.48191550730037,53.03926632963654],[-126.48183620316458,53.03943976668041],[-126.4817353657081,53.03960825376114],[-126.48157736745284,53.03976016643531],[-126.48147184418396,53.03992811660183],[-126.48143464041716,53.040106984062405],[-126.48136843730506,53.04028149671985],[-126.48124137877312,53.04044448770501],[-126.48110587341732,53.040604707226926],[-126.48100316215877,53.040773201182645],[-126.48096128649136,53.04095153166493],[-126.48095024021558,53.04113085699549],[-126.48095320397749,53.0413106899518],[-126.4809561826083,53.041490513864716],[-126.48095448345131,53.041670365783816],[-126.4809639869907,53.041849607302694],[-126.48095668317326,53.04202947305812],[-126.48090637900565,53.042206717227],[-126.4808130294966,53.04237741370053],[-126.48070282094777,53.04254426146914],[-126.48059728719822,53.04271220161797],[-126.4805161116666,53.04288508923009],[-126.48046767927477,53.04306289022466],[-126.48043233048762,53.04324119369566],[-126.48040632896115,53.0434200148621],[-126.48038407012875,53.0435993855038],[-126.48036273777001,53.04377875235142],[-126.48033580905695,53.04395758618112],[-126.48029672240037,53.04413590472386],[-126.48022488840142,53.04431043023379],[-126.48015773213832,53.04448494561618],[-126.48014576115325,53.0446648300146],[-126.48016460353128,53.044844033287696],[-126.4801741108334,53.04502383924508],[-126.48013689084826,53.04520215002442],[-126.48006412140714,53.045376123355666],[-126.47996889319506,53.045546826445374],[-126.47984836424557,53.045711465062624],[-126.47970159733538,53.045867810905904],[-126.47952197992765,53.046011408746025],[-126.47932449669256,53.04614555012254],[-126.47912327137782,53.04627802111194],[-126.4789323767587,53.04641606128549],[-126.47876870400663,53.04656630724787],[-126.4786388089245,53.046728185725215],[-126.47852576408604,53.04689447772787],[-126.47842865160442,53.04706463125688],[-126.47835026034029,53.04723806135538],[-126.47829619599688,53.04741476327619],[-126.47826925617082,53.047593587293136],[-126.47829275556805,53.04777277166575],[-126.47836853004631,53.047946706440975],[-126.47846760281877,53.048116055773015],[-126.478568544951,53.04828540639422],[-126.4786489788229,53.048458757326834],[-126.47867715261746,53.048637357858425],[-126.47861934450255,53.0488135102317],[-126.47850161763161,53.0489787004728],[-126.47835013683849,53.04913338711729],[-126.47817894599623,53.04928086567804],[-126.47800118377268,53.04942500909211],[-126.47782342034192,53.04956915222643],[-126.47765504879145,53.049717739060796],[-126.47750731185592,53.04987352091852],[-126.47739520230664,53.05004037243024],[-126.47735516454337,53.05021812841287],[-126.47737587251773,53.05039788870218],[-126.47742271533423,53.05057529332941],[-126.47746674830317,53.050752718249406],[-126.47748092433687,53.0509324959206],[-126.4774735979466,53.051111804771374],[-126.47745786166844,53.05129171234392],[-126.47744400246266,53.051471047574644],[-126.47744415654084,53.05165088188056],[-126.47747326057473,53.051830043324394],[-126.47745193933173,53.05201052917241],[-126.47723747167579,53.05213297442729],[-126.47715251455713,53.05230475344453],[-126.47710592588056,53.05248253557205],[-126.47707709431394,53.052661375366974],[-126.47704266509989,53.05283967302401],[-126.47699513356297,53.053017458858214],[-126.47696537429852,53.05319630231517],[-126.47689913229547,53.053370802175934],[-126.4768160376672,53.05354369378271],[-126.47673108236201,53.0537160370593],[-126.47664611131655,53.0538883713545],[-126.47654290135219,53.054099440677305],[-126.47635384447027,53.0542385889551],[-126.47616290494157,53.05437661504979],[-126.47597009552858,53.05451465732164],[-126.47577915351005,53.05465268277374],[-126.47559009166004,53.05479182978404],[-126.47540478486789,53.05493263761257],[-126.47522510823974,53.05507566345746],[-126.4750529431193,53.055222020266854],[-126.47489204586012,53.05537336922064],[-126.4747395872206,53.05552805444762],[-126.47459089875227,53.055684400561084],[-126.47444218792565,53.05584018183085],[-126.4742887990408,53.05599487015862],[-126.4741269566781,53.05614510128446],[-126.47395102707186,53.05628979522515],[-126.47376288507792,53.05642949119599],[-126.47356723765411,53.05656529075231],[-126.47336970528791,53.056701106489605],[-126.47317781183291,53.056838575537874],[-126.47299530258452,53.05698104439365],[-126.47282219509192,53.05712740150228],[-126.47264910269908,53.05727656398794],[-126.47247977415769,53.05742682266785],[-126.47231606113975,53.057579308569586],[-126.47216173115346,53.057733988723015],[-126.47202049235925,53.05789086626921],[-126.47189703935615,53.05804990456561],[-126.47184480945809,53.05822715069454],[-126.47187584679826,53.05841247220998],[-126.47195437868336,53.0585835932761],[-126.4720627642361,53.05875011297296],[-126.47218887932037,53.05891487644559],[-126.47231687309505,53.059079076494506],[-126.47243646257408,53.05924443050729],[-126.47256537911608,53.059408070808814],[-126.47269336088317,53.05957227046273],[-126.4728026938231,53.05973878561476],[-126.47287750012991,53.059910476640056],[-126.47292432844881,53.06008732633852],[-126.47295250465157,53.060267612174194],[-126.47296292436599,53.06044853383175],[-126.47296027593215,53.06062949884726],[-126.47293983942943,53.06080830307365],[-126.47288296790006,53.0609889294376],[-126.47281115225466,53.061169050862944],[-126.47274865388798,53.06134802339952],[-126.472719781636,53.06152405557799],[-126.47274600149152,53.06169650573125],[-126.4728142493244,53.061867102383296],[-126.47290771901272,53.062035921730875],[-126.47302174315345,53.06220410289888],[-126.47315069582866,53.06236997419325],[-126.47328991212726,53.062533572190354],[-126.47343469055718,53.06269434201378],[-126.47357945372676,53.062852306010974],[-126.47373257159371,53.06300576332197],[-126.47389873679828,53.063155797643866],[-126.47407327554527,53.06330300137451],[-126.47425155620776,53.063449069325856],[-126.47442982314445,53.06359513705587],[-126.47460251134434,53.06374234741602],[-126.4747658650804,53.06389183601547],[-126.47491524634299,53.06404474203],[-126.4750236261568,53.06420846187679],[-126.47505837615805,53.06438984087291],[-126.47509684987489,53.064571204860876],[-126.47520991209335,53.064734896694596],[-126.47538172209651,53.06488715605058],[-126.4756019754541,53.06510924595291],[-126.47554307737671,53.065191278590426],[-126.47541404633587,53.06535370377937],[-126.47526162511636,53.06551342620572],[-126.47502240657634,53.065602351219894],[-126.4747247228966,53.06564388565491],[-126.4744753418248,53.06574292579977],[-126.47425895818695,53.06586816878888],[-126.4740717043213,53.06600674026237],[-126.47389293723289,53.06615144451882],[-126.47372166844644,53.06629947090234],[-126.47355604003269,53.06644915961319],[-126.47342983780219,53.06661549730634],[-126.47327819427595,53.066762888561904],[-126.47301279068861,53.06685022911621],[-126.47273044138426,53.0669281172593],[-126.47251579974166,53.067041580385464],[-126.47237917458692,53.06719507749003],[-126.47227732890168,53.067366918853516],[-126.47218020675172,53.06754265843631],[-126.47205960633883,53.0677078516468],[-126.47188927957787,53.06785700087217],[-126.47167382584936,53.067982790943496],[-126.47143572720029,53.06808963174372],[-126.47119102729259,53.06819200749109],[-126.47094162309608,53.06829104899265],[-126.47068939622194,53.06838785127613],[-126.47043527155957,53.068483549050725],[-126.47018115444808,53.06857868151516],[-126.46992890301918,53.06867492648312],[-126.46967572938918,53.06877173032913],[-126.46942066668318,53.06886686488828],[-126.46916275668329,53.06895752826648],[-126.46890009658962,53.069042051758174],[-126.46863077363852,53.069116507787676],[-126.4683529337493,53.06918092159129],[-126.46806562857803,53.06923472318179],[-126.46777447271396,53.06927845497876],[-126.46748040230625,53.069311548526976],[-126.46718529678431,53.06933624630034],[-126.46688826608788,53.06935591325703],[-126.46659024976468,53.069371657189734],[-126.46629034794276,53.06938460212607],[-126.46599041877553,53.06939643488983],[-126.46569049819817,53.06940770213446],[-126.46539151697432,53.06942008539747],[-126.46509348117307,53.069434140420995],[-126.46479641808759,53.06945099655042],[-126.4645022215965,53.06947288730828],[-126.46421087654622,53.06949980381115],[-126.46392152304247,53.06953791658843],[-126.46364004452006,53.069612408914054],[-126.46338693670526,53.069717051225595],[-126.46318640985325,53.06984333170287],[-126.46305729906994,53.07000406678658],[-126.46295640605013,53.07018093360801],[-126.46282918119296,53.07034334621528],[-126.4626164786141,53.07046855289008],[-126.46234063055302,53.07054582567753],[-126.46205123162997,53.07058057255083],[-126.46175228985553,53.07059742832606],[-126.46145241445227,53.07061372226873],[-126.46115643940774,53.070646251673615],[-126.46084282720437,53.070689498197815],[-126.46060074641963,53.07077783994782],[-126.46047712799178,53.07092902209169],[-126.46040523682453,53.071108579205095],[-126.46033619042483,53.07129260708804],[-126.46021830569158,53.07145553608413],[-126.4599980996944,53.07157964666707],[-126.4597788286158,53.07170319742841],[-126.45955673510575,53.071824508826516],[-126.45933274382246,53.07194471565785],[-126.45911158116492,53.07206658729418],[-126.4588988799431,53.072192342826774],[-126.45870026423883,53.07232477510465],[-126.45851856989776,53.072466096220346],[-126.45834909762645,53.07261465721189],[-126.45819279857746,53.07276988971924],[-126.45805149436903,53.072930110492784],[-126.457927066313,53.073093618128226],[-126.45781855145454,53.07325986961729],[-126.4577166020633,53.07342890122545],[-126.45762123305767,53.07360070394759],[-126.45753522932888,53.07377414653406],[-126.45745765776323,53.073948685825236],[-126.45739130633345,53.07412485783603],[-126.45733711434659,53.074300982713616],[-126.4572969636572,53.07447817366804],[-126.45727644229471,53.074655844361814],[-126.45727182339604,53.074835138674146],[-126.45727844938791,53.075015509916305],[-126.45728880588038,53.0751964314191],[-126.45729730765663,53.07537735111873],[-126.45729925217998,53.075557740427044],[-126.45728809687452,53.075737059950676],[-126.45727134448504,53.0759175215973],[-126.45725835550077,53.076100209608846],[-126.45724630585507,53.07628401444021],[-126.457231453024,53.07646727434409],[-126.4572100574326,53.07664999482884],[-126.45717926781639,53.07682994597285],[-126.45713442626385,53.07700659900115],[-126.45707271433294,53.077179391119344],[-126.45698944079264,53.077346099496836],[-126.45686677210445,53.07750232011874],[-126.4566897435302,53.077644749288375],[-126.45647802504021,53.07777890417453],[-126.45625505039543,53.077909740712094],[-126.45604051705462,53.07804390565462],[-126.45585787398196,53.078186346223745],[-126.45572679815992,53.078343162721296],[-126.45562948007067,53.07850936842156],[-126.45554903764668,53.07867999085041],[-126.45548172536536,53.078854479763294],[-126.45542378581747,53.0790311824003],[-126.45537147328378,53.07920953953006],[-126.45532384542864,53.079389554791504],[-126.45527623222422,53.07956957892101],[-126.45522580028862,53.079749049153484],[-126.45516880389242,53.07992742416151],[-126.4551033760211,53.08010359065364],[-126.45502482237725,53.08027644622233],[-126.45493033940846,53.08044543691859],[-126.45481709976312,53.08061058255285],[-126.45468793054685,53.08077187219136],[-126.45454751677546,53.08093095502197],[-126.45440148029151,53.08108894778338],[-126.45425263926522,53.0812463864105],[-126.45410660050099,53.08140436981553],[-126.45396898592726,53.08156400584411],[-126.45383232475828,53.0817247585044],[-126.45368817075844,53.08188441928798],[-126.45353934231164,53.08204354206665],[-126.45339237369558,53.082203213256356],[-126.45325009232596,53.08236342201739],[-126.45311717778803,53.0825252798561],[-126.45299924013815,53.082688765294414],[-126.45290097387276,53.082854971890576],[-126.45282517373047,53.08302500945456],[-126.4527802775451,53.083198854657944],[-126.45276160315802,53.08337652547849],[-126.45276073119824,53.08355692475686],[-126.45277202486811,53.08373895362269],[-126.4527879922896,53.08392152927592],[-126.45280023470764,53.084104119183856],[-126.45280403659214,53.08428506519414],[-126.45279286591919,53.084464939129774],[-126.45277514250613,53.08464484711975],[-126.45275461527133,53.084824201114635],[-126.45273222370469,53.08500411798388],[-126.45270983204377,53.085184043793724],[-126.4526874341656,53.08536340488708],[-126.45266690621214,53.08554275879325],[-126.45265011832909,53.085722098349194],[-126.45263894069384,53.085901416392545],[-126.45263243976262,53.08608015178429],[-126.45266238727423,53.086257636025394],[-126.45274933728619,53.08643209618579],[-126.45279517732804,53.08660839003164],[-126.45280087944215,53.08679212519488],[-126.45278976800094,53.08697760995452],[-126.45274490930127,53.08715537175334],[-126.4526427806781,53.0873126287134],[-126.4524036636467,53.08742559136207],[-126.45216927911552,53.08754470246667],[-126.45203817257848,53.08770262549417],[-126.4519314734905,53.08786942772594],[-126.45183698212956,53.08804177654284],[-126.45174156838056,53.0882146935067],[-126.45163488468772,53.08838317157461],[-126.45150759765681,53.088548931564006],[-126.45134556229794,53.08870024907523],[-126.4511128770662,53.08880422066827],[-126.4507958025796,53.088887224866426],[-126.45076403739472,53.089066065161106],[-126.45072666701529,53.08924548256002],[-126.45069303088967,53.08942432096961],[-126.4506687460431,53.08960313265099],[-126.45066129360895,53.08978187115268],[-126.45066789076473,53.08996336170538],[-126.45068480601833,53.09014705382244],[-126.45072040085779,53.09032843373972],[-126.45078396763401,53.09050186366026],[-126.45088764752283,53.0906650562849],[-126.4510501294197,53.090817940180635],[-126.4512582617561,53.09095496299753],[-126.45149141418943,53.09106948052034],[-126.45173471913697,53.0911705131721],[-126.45198638072223,53.09126647574195],[-126.4522436066683,53.09135792565085],[-126.45250732482607,53.09144487723747],[-126.45277382112992,53.091528447228114],[-126.4530430957241,53.091608653531026],[-126.4533132749978,53.09168660585374],[-126.45358435306461,53.09176175742511],[-126.45385820918631,53.091833536306595],[-126.45413390668037,53.091902510793865],[-126.45441238808525,53.091968668286114],[-126.45469270176858,53.09203257714042],[-126.45497393493756,53.092094240857925],[-126.45525513880492,53.09215309837235],[-126.45553820192086,53.092210836549185],[-126.45582581673803,53.09225622239891],[-126.4561262088948,53.09227355553849],[-126.45642356795437,53.09226904605279],[-126.45672080019565,53.09225276692917],[-126.45701794169337,53.09222808839095],[-126.4573131641064,53.09219893466412],[-126.45760623162542,53.09214346205846],[-126.45789647596304,53.092085749763186],[-126.45815074165203,53.09207468009034],[-126.45846363773984,53.092123331881034],[-126.45874496183906,53.09219282955908],[-126.4590171167333,53.092279169183406],[-126.45927345769859,53.09237396865798],[-126.45950103443865,53.09248905678354],[-126.4597119546699,53.09262045154602],[-126.45992565287975,53.092748473716625],[-126.4601643343319,53.09285230370955],[-126.4604298389723,53.092929146487855],[-126.46070922816075,53.092991924231654],[-126.46099509299032,53.0930473885424],[-126.4612837446644,53.093101729782575],[-126.46156684661369,53.0931616853623],[-126.46204396096222,53.0932601071864],[-126.4621828201575,53.093300456751884],[-126.4623437349569,53.093390029352676],[-126.46225956260213,53.093561789957235],[-126.46213797393678,53.093733132086996],[-126.4620129424615,53.093931943427734],[-126.46188756203831,53.09409882717942],[-126.46175463753718,53.0942601289622],[-126.46160857585471,53.0944175647419],[-126.46145311176085,53.09457055517347],[-126.461284504168,53.09471911482262],[-126.46110086424024,53.09486157478732],[-126.4609068728287,53.0949990282453],[-126.4607044458835,53.09513427332257],[-126.46048314188327,53.09525390508023],[-126.46023349873518,53.09534787607955],[-126.45996213187458,53.095421762723696],[-126.45968226622374,53.09548895900597],[-126.45940618323372,53.09556005706017],[-126.45912812568749,53.0956216426669],[-126.45883533932076,53.09570513833586],[-126.458594342283,53.09582148154507],[-126.4584179466911,53.095943176017336],[-126.45843954549505,53.096123486980524],[-126.45848552585817,53.09631098187634],[-126.45855944123906,53.09648548750111],[-126.45865109623927,53.09665768329736],[-126.45876233141281,53.096824765403454],[-126.45889595097573,53.096984472987415],[-126.45905101559549,53.09713849480169],[-126.45921632592696,53.097289115205015],[-126.45938256809518,53.09743861128358],[-126.45954603723888,53.09759035882883],[-126.45971694477267,53.097739271567605],[-126.4599008781005,53.09788029908879],[-126.46010803643021,53.09800722563717],[-126.4603365673916,53.098121743484626],[-126.46057812406463,53.09822836688847],[-126.46082432680726,53.09833273075652],[-126.46106587094346,53.09843935320912],[-126.46130185577191,53.09854935825277],[-126.46153782685936,53.09865936287673],[-126.46177382018934,53.09876992269025],[-126.46203612399952,53.09889271323817],[-126.46233425782924,53.098868573466326],[-126.4626314608103,53.098845566010795],[-126.46292700680243,53.09884216791539],[-126.46322382336253,53.0988701370634],[-126.46350879445274,53.09892616349328],[-126.46378551493333,53.098996787629595],[-126.46406227042313,53.09907189283283],[-126.46432793410482,53.0991576808782],[-126.46457038548567,53.099259810756884],[-126.46479901513813,53.09938160707063],[-126.46504090973059,53.09951735205163],[-126.46526887234248,53.0996626708257],[-126.46545385257107,53.09981208452333],[-126.46556959802591,53.09996009443878],[-126.46557189939277,53.099999301560175],[-126.4655795960731,53.10010459471099],[-126.46545781145339,53.10025857768834],[-126.46524621679771,53.100411793595235],[-126.46499424050026,53.10055003725055],[-126.46475128226201,53.100659121847166],[-126.46447108885515,53.1006988746544],[-126.46415591886097,53.10070459454239],[-126.46386077069005,53.10074553404779],[-126.46357456586017,53.10083517334174],[-126.46329401771848,53.10092758643437],[-126.46302607182973,53.10097626044916],[-126.46277871131886,53.10093913347025],[-126.46255483412097,53.1008251579796],[-126.46233717133516,53.100679793791905],[-126.46211028159706,53.10054734609912],[-126.46186132518461,53.10044859804666],[-126.46159935719409,53.10035886397734],[-126.46134390888787,53.10026574249503],[-126.46110980616429,53.100156286011256],[-126.46090349528649,53.10002319995715],[-126.46087143061078,53.09999923057128],[-126.46070925553668,53.09988109382842],[-126.4605094840229,53.099746296411816],[-126.46028564968152,53.09963512206502],[-126.45997872239786,53.099537716231914],[-126.45963278782583,53.09946735238783],[-126.45937040730104,53.09950982951002],[-126.4593160993824,53.09959183429548],[-126.45931413617204,53.099755994090785],[-126.45935461203736,53.09995135291611],[-126.45936728641537,53.099999483517635],[-126.45940923899593,53.100158426036664],[-126.45944881536201,53.10035771438186],[-126.45946014231855,53.10053974983415],[-126.45947051425846,53.10072065955416],[-126.45947433998087,53.100901038953076],[-126.45946225929073,53.101080359703104],[-126.4594258127462,53.101256978469436],[-126.45934723753197,53.10142983483365],[-126.45923681518718,53.10159888876635],[-126.4591151185534,53.101763513488244],[-126.4589708920545,53.10192093807256],[-126.45881447511555,53.102075048399506],[-126.45868150179257,53.10223522558386],[-126.45857106267329,53.10240316736783],[-126.45848125055603,53.10257550190278],[-126.45842514984871,53.10275107596009],[-126.45840555960018,53.10292986080652],[-126.45840564532065,53.103110819213185],[-126.458407601841,53.103291761382756],[-126.45843296437499,53.10347374218724],[-126.45844063679945,53.10366419053923],[-126.45844193532746,53.10387147047888],[-126.45846210454997,53.10400640311135],[-126.45854725285244,53.10418030872251],[-126.45876416237486,53.104341368970026],[-126.45898350866496,53.10446881454574],[-126.45918792778835,53.10459854964916],[-126.45939896198358,53.104734990403585],[-126.45957271173734,53.10488389181394],[-126.45972309246699,53.10503513372471],[-126.4598353271559,53.10520500690889],[-126.45992237267194,53.1053805802692],[-126.45997761520066,53.10555795350708],[-126.45999731202996,53.10573435352849],[-126.45998989609197,53.105913090983975],[-126.45996378215183,53.10609303059508],[-126.45992176280247,53.10627358780931],[-126.45986664866118,53.106453075470526],[-126.45980212740994,53.10662923830198],[-126.45972446850702,53.106800405627844],[-126.45957364665418,53.10695561517491],[-126.45939657090943,53.10710420379237],[-126.45923166053687,53.10725386532809],[-126.45906016847763,53.10740131125997],[-126.45888586395502,53.107547647386056],[-126.45871815701365,53.107697883719794],[-126.45853914062448,53.10784199667007],[-126.45832718025305,53.10796718929288],[-126.4580992066192,53.10808179475362],[-126.45786276195265,53.10819251545445],[-126.45762254362525,53.10830045361889],[-126.45738044685937,53.108407833841326],[-126.45714116015577,53.10851632314707],[-126.45690658768501,53.10862759039635],[-126.45667954691011,53.10874331886271],[-126.45646944768218,53.108868500863245],[-126.45630170881098,53.10901704856169],[-126.45614620211352,53.10917282729077],[-126.4559718802467,53.10931915897438],[-126.45578629401976,53.10946217244491],[-126.45558467971361,53.109594607528855],[-126.4553481658304,53.109700276784565],[-126.45499755673664,53.10981087549155],[-126.45474665524799,53.10970875894545],[-126.45455620619411,53.10957335154247],[-126.45440666586445,53.109413701291814],[-126.45417911418174,53.10930813241826],[-126.4538976900256,53.109239189230365],[-126.45362270638256,53.109160692308855],[-126.45335696267463,53.10906983430608],[-126.45320852443496,53.108925864670255],[-126.45312992705249,53.10875025441707],[-126.45305317146598,53.108571831417485],[-126.45294376921056,53.10840194133579],[-126.45281662669271,53.108236045167665],[-126.45264204553912,53.10809665672515],[-126.45239771914164,53.10799618618403],[-126.45213013223237,53.10790701762137],[-126.45188483529662,53.1078037530716],[-126.45164233572412,53.10769879215854],[-126.45140353781548,53.10758989949759],[-126.45117404292974,53.107475933277556],[-126.45096033571562,53.10735013711413],[-126.45076242507116,53.10721475196942],[-126.45056171952051,53.10708106230643],[-126.45034151943743,53.10696089203912],[-126.45010825891409,53.10684413245518],[-126.44986663499981,53.106731886060714],[-126.44961208432771,53.106637059894005],[-126.44934005831031,53.10656974630856],[-126.4490551851253,53.10652601048851],[-126.44876202483208,53.10649406575463],[-126.44846426296908,53.10646998991117],[-126.44816374066062,53.1064509613564],[-126.4478622964591,53.1064324912775],[-126.44756177195838,53.10641178499944],[-126.44726490978744,53.10638489710939],[-126.44697357559757,53.10634845921171],[-126.4466905183413,53.10629910855428],[-126.44641294504262,53.10623741148983],[-126.44613993650681,53.10616561243853],[-126.44587153738237,53.10608651688635],[-126.4456068164724,53.10600123986711],[-126.44534485761818,53.1059109053131],[-126.44508659173526,53.10581720386765],[-126.44483112330421,53.10572180616401],[-126.4445775270244,53.105626400866925],[-126.44433505800089,53.10552142483681],[-126.44410739970441,53.105401270982235],[-126.44388438663391,53.10527718212626],[-126.44365676019376,53.105159823938074],[-126.44341435480908,53.10506045702026],[-126.44314880178608,53.10498469701424],[-126.44286562933651,53.10492301261619],[-126.44257137226623,53.10487481452482],[-126.44227258620099,53.104840078130884],[-126.44197579100369,53.104818223276986],[-126.44168386190148,53.10481371209899],[-126.44139041186689,53.10484281958753],[-126.441097171273,53.10489209378793],[-126.44080772432109,53.10494639068478],[-126.4405210557381,53.10499732410835],[-126.44023723189548,53.10505271910177],[-126.43995436443299,53.10511091547337],[-126.4396724566459,53.10517079276064],[-126.43939150255889,53.10523177731866],[-126.43909549525641,53.105286103343616],[-126.43879953111025,53.10534322512175],[-126.43854496218572,53.10542427792456],[-126.43837324675944,53.10555488774042],[-126.43828152702625,53.105732259893216],[-126.43820106736065,53.10591295158406],[-126.43811893867536,53.106113261843134],[-126.43803323681472,53.10624019092969],[-126.43775245840168,53.10631909815997],[-126.43744226582031,53.106358906579985],[-126.43715033814536,53.106355504623195],[-126.43685157148404,53.10632467157559],[-126.43664373100559,53.10631031776347],[-126.43629658686993,53.106304312012234],[-126.4359888118261,53.10630713266164],[-126.43570736123958,53.10632105108057],[-126.43541389666808,53.10635014370853],[-126.43511572941466,53.106377576713754],[-126.43482368687216,53.10636296488138],[-126.43453593911345,53.106310241060825],[-126.43424815984035,53.10625583149195],[-126.43396123263817,53.10619246341651],[-126.4336735959538,53.106150376936505],[-126.43338079574684,53.10615369161003],[-126.43307981805559,53.10618000933129],[-126.43278562475808,53.1062287015883],[-126.4325131745616,53.10630028737377],[-126.43226055606488,53.106390847748564],[-126.43201744368461,53.10649481829578],[-126.43178000250776,53.10660605505775],[-126.43154352015821,53.106718964031515],[-126.43130324883663,53.10682740452533],[-126.431056372347,53.106929701621745],[-126.43081046261341,53.10703592074202],[-126.43056457440791,53.10714438017026],[-126.43031773628073,53.10725228678843],[-126.43006900095456,53.10735627370998],[-126.42983914206543,53.107478118732715],[-126.42961017374127,53.107594913534],[-126.4293728144965,53.10771398822674],[-126.42903581126141,53.10778804122504],[-126.42868846919126,53.10776353080968],[-126.42839251859992,53.107733230892364],[-126.42808238063702,53.10768841570904],[-126.42778718181646,53.10763906384114],[-126.42749374371722,53.10758017653086],[-126.42722912950448,53.10750270132516],[-126.42694684441302,53.10743481768606],[-126.42664213170593,53.10737093142091],[-126.42639086584052,53.10731805615311],[-126.42610225222647,53.10727259343963],[-126.42581272810517,53.10722881846481],[-126.42552227280785,53.1071861665876],[-126.42523089197884,53.1071452024896],[-126.4248747650602,53.10708429325219],[-126.42464728618201,53.10706998893441],[-126.42435409757388,53.10703518718686],[-126.42406092997497,53.10700094038299],[-126.42376683667908,53.10696838133405],[-126.42347274947609,53.10693638624143],[-126.42317773643481,53.106906069931334],[-126.42288275550492,53.106877428970265],[-126.42258777680381,53.10685047242872],[-126.42229189275612,53.10682575929379],[-126.42199602582852,53.106802730520556],[-126.42169927014436,53.10678362128452],[-126.42140067877995,53.10676955540803],[-126.42110215271174,53.106760535069164],[-126.42080273385291,53.106756563678466],[-126.42050428746144,53.106757060921694],[-126.42020598379868,53.10677044660327],[-126.4199078481482,53.10680232290138],[-126.41960974360934,53.1068358745335],[-126.41931519950852,53.1068526059801],[-126.41902223110185,53.10683795840851],[-126.41872249085532,53.10680148077199],[-126.41842908229644,53.10674370031273],[-126.41816070904387,53.10666229208634],[-126.41793511137959,53.10655440585693],[-126.41775035758732,53.106413881713834],[-126.41758600980626,53.10625535793576],[-126.41742260625169,53.106096830585294],[-126.41723972170323,53.1059557432756],[-126.4170169346491,53.10584840109771],[-126.41674869648948,53.10577987888036],[-126.41645449620624,53.105734977051625],[-126.41590085606794,53.10565905906978],[-126.41561684170503,53.105604035237505],[-126.41533283207016,53.105547890253185],[-126.41504697012836,53.105495112452715],[-126.41475657586783,53.10545635105698],[-126.4144588570283,53.105433865693456],[-126.41418224104474,53.10536817264947],[-126.41390837013756,53.10529685811371],[-126.41363634936337,53.10522330452573],[-126.41336431852064,53.105148620929576],[-126.41309227780584,53.105072825251646],[-126.41282024347551,53.10499758467083],[-126.41254728894606,53.10492458758378],[-126.4122725065488,53.1048543928951],[-126.41199494927784,53.104788133310514],[-126.41171373259466,53.10473029370799],[-126.41142422025156,53.10468591879611],[-126.41113010926202,53.10464884660376],[-126.41083603136126,53.104615134928146],[-126.41054199194788,53.104585348459665],[-126.41024522980287,53.10456340492522],[-126.40994845308408,53.104541469660624],[-126.40965263583229,53.10452120652638],[-126.40935588541564,53.10450038117506],[-126.40905909878711,53.10447732326037],[-126.40876232736262,53.104454255585246],[-126.408465535939,53.10443063148967],[-126.40817059305354,53.104403083159774],[-126.40787928581547,53.104365993209186],[-126.40759071216068,53.10432048522933],[-126.4073048992933,53.10426937372678],[-126.40701997741078,53.10421433239526],[-126.40673690029362,53.10415647841354],[-126.40645382403503,53.10409863271538],[-126.40617166038898,53.10403909804138],[-126.40589129761942,53.103970592878156],[-126.4056127541575,53.103898154736555],[-126.40533424812563,53.10382796568263],[-126.40505300399433,53.10376561957083],[-126.4047700289216,53.10371785358554],[-126.40448163944366,53.103690829370926],[-126.40418785121355,53.10368623199651],[-126.40389049199246,53.10369957335912],[-126.4035904200036,53.10372356306677],[-126.40329042130686,53.1037537187401],[-126.40299133422972,53.10378219434328],[-126.40269594595031,53.10380616580816],[-126.40239960911377,53.10382958401731],[-126.40210329754443,53.10385412185007],[-126.40180697601679,53.10387922368118],[-126.4015106796323,53.103905436172695],[-126.40121533215664,53.10393389457038],[-126.4009209281197,53.103964025227256],[-126.40062844133269,53.10399751001212],[-126.40033596027712,53.1040332349589],[-126.4000482481448,53.10407790666901],[-126.40001744322066,53.104084168927145],[-126.39976439350984,53.10413488961876],[-126.39948339948211,53.104196899773925],[-126.39920238443173,53.104258353582296],[-126.39891757314452,53.10431254106417],[-126.39861567050197,53.10434157081034],[-126.39830806428392,53.10435941446973],[-126.39803632759171,53.10441299105602],[-126.39780534367162,53.104521887825335],[-126.39759991309555,53.10466151512645],[-126.39743673341677,53.104818371514355],[-126.3973306728641,53.10498174944122],[-126.39728179439304,53.105156704331634],[-126.39726012593918,53.10533941091448],[-126.39723470032199,53.10552213009899],[-126.39718117178084,53.10569934142089],[-126.39712014903424,53.105877142582294],[-126.39705445560637,53.10605495041658],[-126.39697658119096,53.106230002451525],[-126.39687804154681,53.10639784533948],[-126.39674949010853,53.10655626053169],[-126.39657870566036,53.10670137183123],[-126.39638070353054,53.10683816626278],[-126.39617709149815,53.10697386766001],[-126.39598942186812,53.10711455284111],[-126.39577653917195,53.10736064452365],[-126.39540650624853,53.107309777278125],[-126.39510891524819,53.10730125289091],[-126.39480950020157,53.10729777139435],[-126.39451012691339,53.10729877080433],[-126.39421174873416,53.1073053683927],[-126.39391339713963,53.10731644694289],[-126.39361508116512,53.1073297655228],[-126.39331675519087,53.10734363912604],[-126.39301935650825,53.1073558326986],[-126.39272099845552,53.10736466735693],[-126.39242257867657,53.10736846391998],[-126.39212228191474,53.107370016090314],[-126.3918191762361,53.10737214151449],[-126.39151602400155,53.10736922876942],[-126.39121652083651,53.10735621015189],[-126.39092436274963,53.10732804488601],[-126.39064230787929,53.107280242109965],[-126.39036757745149,53.10721335785108],[-126.39010018838732,53.10713244757737],[-126.3898355423115,53.10704368449823],[-126.38957273752243,53.106951553405885],[-126.38930902640718,53.106861665614574],[-126.38904162619896,53.10677907678684],[-126.38876780394214,53.106709389176444],[-126.38851196528826,53.106661486142784],[-126.38819632068765,53.10662275152775],[-126.38790047365173,53.10659962846108],[-126.38760003366694,53.10658492757692],[-126.38729589823696,53.10657696074143],[-126.38699086556471,53.10657235741334],[-126.38668491513722,53.10656887675128],[-126.38637988258951,53.10656427184668],[-126.38607761858863,53.10655629576166],[-126.38577904553676,53.10654102841175],[-126.38548506638631,53.10651733746653],[-126.3851975218104,53.10648185561093],[-126.38491827273558,53.106431789151316],[-126.38464639658494,53.10636936412208],[-126.38437725912657,53.1062985306646],[-126.38411179387734,53.10622152666531],[-126.38384908778771,53.10613834614954],[-126.38359007912528,53.106050106541595],[-126.38333289701526,53.105956822895244],[-126.3830784946569,53.10585961258415],[-126.38282591907881,53.10575902549175],[-126.38257613855991,53.105656196873994],[-126.38232727693801,53.10555055914513],[-126.38208121048744,53.10544434714865],[-126.38183606327397,53.105337020180876],[-126.38159280318266,53.10522967764701],[-126.38134953443519,53.10512289934547],[-126.38110816293789,53.10501723487553],[-126.38087049950293,53.10490931706088],[-126.38064027578446,53.10479465210226],[-126.3804156009815,53.104674366578074],[-126.38019744818233,53.104550142548376],[-126.37998395639454,53.10442309751842],[-126.37977603864374,53.10429322857957],[-126.37957186402062,53.10416167105503],[-126.37937328354712,53.104029539474965],[-126.3792380954977,53.10387086909984],[-126.37912805324217,53.103700348686125],[-126.37900403764368,53.103537160378636],[-126.37888189886603,53.103372845461465],[-126.37875974606791,53.10320853045066],[-126.37863574332965,53.1030447859351],[-126.37850799976624,53.10288272945252],[-126.37837280861247,53.102722937564636],[-126.37822827407827,53.10256597205712],[-126.37807442625228,53.10241184176407],[-126.37791590992522,53.10225941134761],[-126.37775739465815,53.10210697174205],[-126.37760353524291,53.10195284084404],[-126.37745715038601,53.1017958892172],[-126.37730980368922,53.101636690599065],[-126.37716993152584,53.101476356447115],[-126.37704780573361,53.10131371564181],[-126.37701161389518,53.101135123257066],[-126.377030109053,53.10100676786502],[-126.37735501636136,53.100936827652944],[-126.37766728601541,53.100918458822754],[-126.3779675226048,53.10091358205151],[-126.37826390754597,53.100898068051926],[-126.37855627047027,53.10084950832374],[-126.37880046948202,53.10075069077315],[-126.37901166051343,53.10062283778896],[-126.37921813076417,53.1004894062533],[-126.37943780538755,53.1003682479872],[-126.37970645009496,53.10028391595042],[-126.38001558383795,53.10022857597597],[-126.38027964259948,53.10015546191001],[-126.38039167562779,53.100026249169325],[-126.38039423303105,53.099999350033706],[-126.38041339893739,53.09984186002015],[-126.38043595440675,53.099645152131544],[-126.38035323243517,53.09949471271879],[-126.38013606947334,53.0993744022231],[-126.3798787698581,53.09926262822054],[-126.37963267083295,53.09914801206201],[-126.37941827006914,53.099021524380376],[-126.37921223118599,53.098887731002],[-126.37900618865307,53.098755057725256],[-126.3787899411421,53.09863082468386],[-126.37855607576758,53.09852288978829],[-126.37830085603416,53.09843350580611],[-126.37803636887847,53.09835367926458],[-126.37776445986528,53.09828059858376],[-126.37748697963734,53.09821201689193],[-126.37720670673762,53.09814568437199],[-126.37692551187817,53.098079918837485],[-126.3766461785344,53.098013017283236],[-126.37637055264798,53.097942186151414],[-126.37610048506947,53.09786517866731],[-126.37583783654141,53.097780859532584],[-126.37558260715535,53.09768922879568],[-126.37532921985532,53.097594239253844],[-126.37507861242366,53.09749531426941],[-126.37483077985047,53.097393574330845],[-126.37458666013939,53.0972884697002],[-126.37434531534588,53.09718055015314],[-126.37410862619323,53.09706925400687],[-126.37387752543388,53.09695513408458],[-126.37365014252336,53.09683820529555],[-126.37342929088744,53.09671845877161],[-126.37321495050058,53.09659532093859],[-126.37300710669105,53.096467124638835],[-126.37280578429024,53.096334990283395],[-126.3726100404339,53.096198911913696],[-126.37241801933321,53.096060580570175],[-126.37222972586096,53.0959205520015],[-126.37204423227473,53.0957788381092],[-126.37185872009017,53.09563656823044],[-126.37167415183688,53.09549428612073],[-126.37148866691948,53.09535313601679],[-126.37131248665875,53.095208030301464],[-126.37115586261659,53.09505221408073],[-126.37099738887069,53.094898653326005],[-126.37081286591182,53.09476085151644],[-126.37059111480329,53.09464389909001],[-126.37034517533293,53.09454158798473],[-126.3700899333482,53.09444490778176],[-126.36983840424097,53.09434485403568],[-126.36955904817377,53.09427122199492],[-126.36928345844876,53.094200374186336],[-126.36901343240959,53.0941239060774],[-126.36875732666839,53.09403394843108],[-126.3685141836866,53.09393050432205],[-126.36827939356793,53.0938186257699],[-126.36804646552834,53.09370562945533],[-126.36780704321855,53.09359769046669],[-126.36756297240457,53.09349368256712],[-126.36731983062026,53.093389680237266],[-126.36707670491478,53.093285668391154],[-126.36683263776558,53.093181667928384],[-126.36658857661787,53.093078222687424],[-126.36634451178236,53.09297421224087],[-126.36610045789466,53.092871330675315],[-126.36585545761442,53.09276788682252],[-126.36561048315312,53.09266556283741],[-126.36536549004518,53.09256267368901],[-126.36511958011583,53.09246091628458],[-126.36487274841602,53.09235971695936],[-126.36462590293097,53.092258517158974],[-126.36437814052358,53.092158440126035],[-126.36412760515843,53.09206116777894],[-126.36386775684043,53.09197009057552],[-126.36360421260851,53.09188238554552],[-126.36334065934186,53.09179524466551],[-126.36307897809327,53.091706412276096],[-126.3628247213839,53.091612509967426],[-126.36257977531814,53.091511864757884],[-126.36234968755667,53.09140052464459],[-126.36213355023284,53.09127905720552],[-126.36192856464312,53.09114914729267],[-126.36173287962947,53.091013050509346],[-126.3615418458666,53.09087302204206],[-126.36135451994531,53.09073073203951],[-126.36116627239653,53.09058900926052],[-126.36097524241472,53.09044897984346],[-126.36077862576863,53.09031344003853],[-126.36057365379834,53.09018409240081],[-126.36035660007884,53.09006262445853],[-126.36012744963041,53.08994903619211],[-126.35988619291423,53.08984220710274],[-126.35963565310745,53.08974157277765],[-126.35937861311061,53.08964711573176],[-126.35911601078269,53.089558277325395],[-126.35885063924735,53.089474484328875],[-126.35858345609476,53.08939574278173],[-126.35830603663004,53.08932375442464],[-126.35801005237434,53.08926807280492],[-126.35771054560446,53.08923816270948],[-126.35742256793434,53.0892446363951],[-126.35714238747629,53.089288625681654],[-126.35686522117572,53.089358366797114],[-126.35659193207599,53.08944267048969],[-126.35632239570282,53.089530314640676],[-126.3560584606231,53.08961514462643],[-126.35580488832615,53.08971002694419],[-126.35555508370946,53.08980825874973],[-126.35530998380676,53.08991095770728],[-126.35503576882341,53.08999805720315],[-126.35477077785922,53.09007000665411],[-126.35450211554061,53.09015036547602],[-126.35423060738705,53.090225129918885],[-126.35395527717426,53.090292061971184],[-126.35367142954199,53.09034612911586],[-126.3533809305024,53.090386778929634],[-126.35308663323754,53.090422392831535],[-126.35279423942903,53.090460241232144],[-126.35233564160312,53.09041791157904],[-126.35203709099645,53.090391910346],[-126.35173859750049,53.09037094576936],[-126.351443097396,53.09037351012188],[-126.35115344942818,53.090405179292866],[-126.35086487244189,53.09045421615398],[-126.35057917262947,53.090511086977294],[-126.3502934582053,53.09056628094396],[-126.35000772446855,53.09061922439378],[-126.34972294657452,53.0906738494889],[-126.34944003722786,53.0907301535369],[-126.34915714666843,53.090787012595264],[-126.34887424495946,53.090844426752135],[-126.34859041021474,53.09090128723304],[-126.34830657470884,53.09095814703038],[-126.34802368574319,53.09101556806487],[-126.34774079016263,53.09107409993126],[-126.34745978839415,53.091133754969036],[-126.34717973643852,53.09119620320512],[-126.34690157237111,53.09126088614568],[-126.34662719401643,53.09133115960822],[-126.34635660582376,53.09140757935206],[-126.34608884226773,53.091487360532575],[-126.34582109259424,53.091567132095626],[-126.34555143836417,53.09164467666439],[-126.34527800249658,53.09171549995601],[-126.34499703726344,53.09178242747375],[-126.34471037017911,53.09183649018013],[-126.34441879128269,53.09186254612312],[-126.34412318483841,53.09185332317147],[-126.34382371510436,53.091828989038156],[-126.34352524147255,53.091813050193906],[-126.34322499873655,53.09180775559021],[-126.34292480460873,53.09181031224254],[-126.34263040855934,53.09183413103246],[-126.34233891436587,53.091870830412915],[-126.34204649961023,53.09191033735952],[-126.34175504953605,53.09195263744945],[-126.34146550083662,53.091998848439566],[-126.34117785351019,53.092048979306654],[-126.34089305918233,53.09210414777536],[-126.34061296861425,53.09216377485774],[-126.34033668112701,53.092231242476025],[-126.34006514667335,53.09230933561675],[-126.33980212090506,53.09239804351193],[-126.33955134462484,53.092497364431985],[-126.33931653468643,53.09260616732523],[-126.33909207512511,53.09272389472567],[-126.33887328992084,53.09284777240526],[-126.3386638900186,53.09297778975969],[-126.33846390076225,53.09311337309184],[-126.33827515391198,53.09325341467694],[-126.33809954535074,53.093397335471245],[-126.33794457631933,53.09355128106739],[-126.3378065224532,53.09371357702566],[-126.33767783632322,53.09387977211281],[-126.33754916414854,53.094045967001456],[-126.33741295386356,53.09420714568895],[-126.33725984704131,53.09435884407527],[-126.33708137265084,53.0944971691495],[-126.33687283947718,53.094619328553826],[-126.33663893421867,53.09472755865518],[-126.33638718511179,53.09482575498611],[-126.33612415827969,53.09491726012233],[-126.33585643479918,53.095005416650125],[-126.33559151302133,53.09509412931714],[-126.33533316057758,53.095186739850256],[-126.33507768669801,53.09528774057067],[-126.3348203588009,53.095390995853144],[-126.33456016493943,53.095485850794816],[-126.3342942107269,53.0955639146458],[-126.3340214997227,53.09561454139671],[-126.33373815025081,53.09561982367406],[-126.33344417905442,53.09558367846244],[-126.33314448220247,53.095532982764915],[-126.33284392688729,53.09549293751538],[-126.33254167027263,53.09547249974295],[-126.33222814045733,53.09544761107423],[-126.33191751204849,53.095433917960534],[-126.33162769667862,53.09545041787423],[-126.33137378090588,53.09551275501376],[-126.33115671992623,53.09562260312568],[-126.33096139821741,53.09576265115341],[-126.3307727021304,53.095913875867495],[-126.33057554648923,53.09605896591607],[-126.33035576335514,53.0961811540681],[-126.330120042595,53.096297775089276],[-126.32987491771856,53.096409949029756],[-126.32961940604837,53.09650869702481],[-126.329353429567,53.0965839530817],[-126.329074099273,53.09662786408325],[-126.32877955781598,53.09663821212792],[-126.32847455532661,53.09662729095234],[-126.32816481262977,53.09660910369291],[-126.32785886972006,53.0965965073437],[-126.3275614844421,53.09660293417643],[-126.3272802340148,53.096640688248],[-126.3270094820979,53.096704747711584],[-126.32674541783577,53.096786150589324],[-126.32648705729711,53.09688153828456],[-126.3262362621427,53.09698587710449],[-126.32599017787807,53.09709579568552],[-126.32575064506561,53.097207380847074],[-126.32551862150257,53.097320629990776],[-126.32530353792552,53.09744950940509],[-126.32509883514886,53.09758957334152],[-126.3248997687182,53.09773297380587],[-126.32469880884804,53.097873582474655],[-126.32448935562965,53.09800357429964],[-126.32426385137623,53.09811511785112],[-126.32401663712307,53.098202070555374],[-126.32374866665008,53.09826386496079],[-126.32347124577652,53.0983150448157],[-126.32318816732045,53.0983583963296],[-126.32289847792367,53.09839448677456],[-126.32260499970927,53.098424419887216],[-126.32230774560692,53.0984498807629],[-126.32200672843364,53.09847254553289],[-126.32170475538571,53.09849353594248],[-126.32140184995635,53.09851397237137],[-126.32109894844369,53.09853496375577],[-126.32079701062675,53.09855874839213],[-126.32049789225802,53.098585330219166],[-126.3202006865315,53.0986175083591],[-126.31990819191846,53.09865527525148],[-126.31962044017389,53.09870087174578],[-126.3193374395924,53.098755418303625],[-126.31905824063647,53.09882003797139],[-126.31878377566181,53.098891366908916],[-126.31851029469388,53.098968294803214],[-126.31823963657351,53.099048575808844],[-126.31796899006576,53.099130541313976],[-126.3176992619342,53.09921137431066],[-126.31742766029039,53.09928997978054],[-126.31715508119302,53.099364096479846],[-126.3168796373634,53.09943150648975],[-126.31660040334278,53.099490518150255],[-126.31631733263113,53.09953889066086],[-126.31602950421639,53.099575514971725],[-126.31573785870167,53.099602064729595],[-126.31544240048903,53.09961910460197],[-126.31514502544547,53.099629981891404],[-126.31484573369916,53.09963469658358],[-126.31454455038322,53.0996366189094],[-126.3142433504314,53.09963629961303],[-126.31394122258934,53.09963598201359],[-126.31363909636242,53.09963790453663],[-126.31333888067117,53.09964318257078],[-126.31303963005958,53.09965350379038],[-126.31274230374632,53.09967109759949],[-126.31244784189528,53.099697646682664],[-126.31215344413606,53.099730917557295],[-126.31186093467566,53.099768664511586],[-126.3115684561278,53.09980865155681],[-126.3112759579163,53.09984807322131],[-126.31098344953813,53.09988414180275],[-126.31068901380982,53.09991460351547],[-126.31039453113756,53.0999366657305],[-126.31009711979326,53.09994304860811],[-126.30979771891255,53.09993319392319],[-126.30949731798563,53.099915488992366],[-126.3091978724657,53.09989946595445],[-126.30890037957069,53.09989464154514],[-126.30860489615165,53.09990885877252],[-126.30830301493793,53.0999427042856],[-126.30801439678714,53.10000172008155],[-126.30776249315646,53.100092012144614],[-126.30753600991876,53.1002040817943],[-126.30731990075496,53.10032901366812],[-126.30711508409149,53.100463444088504],[-126.30691966061323,53.10060344302892],[-126.30673548907984,53.10074733848418],[-126.30656817388942,53.100893995522625],[-126.30645244735824,53.10106124237895],[-126.30635174197474,53.10123405241363],[-126.3062163126439,53.10139238648194],[-126.30603779226786,53.10154242411175],[-126.3058386872994,53.101691958975444],[-126.30561320320926,53.101815791399645],[-126.30535459101706,53.1018870479352],[-126.30507324836778,53.10191747071831],[-126.3047814872238,53.10193110401949],[-126.30448214995218,53.101931875452635],[-126.30417714787598,53.10192538227897],[-126.30386930796757,53.10191552530832],[-126.30356054834387,53.10190679930905],[-126.30325463864807,53.10190310272317],[-126.30295347469257,53.10191003295011],[-126.30265802322536,53.10193095785545],[-126.30237298955595,53.10197090297512],[-126.30209272780735,53.10202316012844],[-126.30181251724544,53.10208270387118],[-126.30153516347858,53.102148397635084],[-126.30125878457397,53.10222081094084],[-126.30098618624625,53.10229881620317],[-126.30071548958269,53.1023812977803],[-126.30044949334835,53.102468248570936],[-126.3001863415689,53.10255967331927],[-126.2999278931483,53.10265388217515],[-126.29967413316325,53.10275088417032],[-126.29942600452885,53.10285067694602],[-126.29918443115578,53.10295268453038],[-126.29895697498789,53.10306586933601],[-126.29874081016584,53.1031885444694],[-126.29853311805319,53.103317920475035],[-126.29833200485132,53.1034528817297],[-126.2981318301385,53.103589516448885],[-126.29793166519735,53.10372559504955],[-126.29772772247577,53.10385888617986],[-126.29751719825325,53.1039865823183],[-126.29729538813388,53.10410590759384],[-126.29706231960124,53.104220778952836],[-126.29681705290315,53.10432952250291],[-126.29656046183297,53.10442652478744],[-126.29629346925663,53.10450674590044],[-126.29601604019498,53.104565139376945],[-126.2957310099447,53.10460899439199],[-126.29543937176007,53.104643336967555],[-126.295143012402,53.104670403234806],[-126.29484379201686,53.10469076218748],[-126.29454267308529,53.10470719907332],[-126.29424153444747,53.10472082964634],[-126.29394225889223,53.104733343337756],[-126.29364390334514,53.104744724577245],[-126.29334366451758,53.10475219266143],[-126.29304246327685,53.10475686573835],[-126.29273937544971,53.104759292866376],[-126.29243627219181,53.104759487329346],[-126.29213221817243,53.104758553956536],[-126.29182817148313,53.10475650830236],[-126.2915241097937,53.10475445293974],[-126.29122006698077,53.10475296145267],[-126.29091788789415,53.10475258504186],[-126.2906157314616,53.10475332824751],[-126.2903154463805,53.1047563069744],[-126.29001706640263,53.10476208585788],[-126.28971963726205,53.10477121402785],[-126.28942503379095,53.10478426056875],[-126.28913327466829,53.10480178119623],[-126.28884435980525,53.10482377593116],[-126.28855828561713,53.10485192995128],[-126.28827599490296,53.104886232013996],[-126.28800414655106,53.10494403729239],[-126.28774465653632,53.10502982296874],[-126.28749841061456,53.10513742004017],[-126.28726349583268,53.105260684236235],[-126.28704081696591,53.10539399327658],[-126.28682937440563,53.10553120065723],[-126.28662821726428,53.10566670652405],[-126.28644016356249,53.10580329176626],[-126.28626620949886,53.10594881506653],[-126.28610445766263,53.10610158696638],[-126.28595677159585,53.10626048256306],[-126.28582035220948,53.10642327675244],[-126.28569610131882,53.10658828224653],[-126.28558121237326,53.10675438542034],[-126.28547381439364,53.10692159081893],[-126.28537108960312,53.10708934952485],[-126.28527118560632,53.10725821279624],[-126.28517597365237,53.107428194053156],[-126.28508262455102,53.107599282202244],[-126.28499208891758,53.107770372440484],[-126.28490250307063,53.107942571781045],[-126.28481477272004,53.108114775528584],[-126.28472798465135,53.108286967959806],[-126.28464214272815,53.10845972273368],[-126.28455535331213,53.10863192396801],[-126.28446762006439,53.108804118427685],[-126.28437895806313,53.108976324001475],[-126.28428935966231,53.109147402337044],[-126.2841903859118,53.109317947384135],[-126.28407925236587,53.109487965809635],[-126.28397093215504,53.10965796839159],[-126.28388131947881,53.109829611081274],[-126.28382542172763,53.11000397833595],[-126.28380695175589,53.11018105232741],[-126.28380159894567,53.1103586505505],[-126.28380559488272,53.11053735571868],[-126.28381802267536,53.110716596366544],[-126.28383606806214,53.11089637924788],[-126.28385880302842,53.111076715551484],[-126.28388433761084,53.11125704511083],[-126.28390987241049,53.1114373746463],[-126.28393446429843,53.11161770642289],[-126.2839571963472,53.111797486905196],[-126.28397429964748,53.11197727192114],[-126.2839514089181,53.11233026535643],[-126.28394889726009,53.11251402344701],[-126.28394826069879,53.11269834171681],[-126.28394762034891,53.112882095275246],[-126.2839413584325,53.11306474187581],[-126.28392853171212,53.11324628378271],[-126.2839035259625,53.113424493596995],[-126.28386540158478,53.113599929304996],[-126.28380947628801,53.11377093492072],[-126.28373198828248,53.11393694578247],[-126.28360856419363,53.11409129768268],[-126.28343735102561,53.11423456858568],[-126.28323426654948,53.114369507807524],[-126.28301431559746,53.11450112572485],[-126.28279436698737,53.114633298951574],[-126.28259036903184,53.114771044788924],[-126.28241167511095,53.114916008190235],[-126.28223111598872,53.11506209619634],[-126.28204869532985,53.115209864526776],[-126.28187189896546,53.11535930429113],[-126.28170728069898,53.1155120760748],[-126.28156328468158,53.11566815982133],[-126.28144738194037,53.115829778697496],[-126.28136521713913,53.11599691935366],[-126.28131583619084,53.11617014882958],[-126.281290813982,53.11634779310735],[-126.28128358574061,53.116528765308566],[-126.2812857447871,53.11671194707042],[-126.28128789262807,53.11689569353997],[-126.28128256190678,53.11707833734412],[-126.28126129702733,53.117258222421675],[-126.28122692365768,53.11743700925316],[-126.28118973892921,53.11761636744094],[-126.28114695048923,53.11779518318523],[-126.28109665294976,53.117972887346326],[-126.28103792926504,53.11814893532158],[-126.28096890400897,53.11832276685519],[-126.28086895230703,53.11849106961254],[-126.28070809856366,53.11864943293427],[-126.28055099438487,53.11880666668958],[-126.28046786956861,53.11897268826358],[-126.28045031012638,53.119147517766486],[-126.28045710768939,53.11932621548976],[-126.28048169314077,53.119507102912465],[-126.28051939902446,53.119688523888634],[-126.28056551650143,53.11986936914336],[-126.28061441947831,53.1200479579207],[-126.28066707381596,53.12022542628694],[-126.28073375493726,53.12040229661689],[-126.2808097950342,53.12057914467035],[-126.28089145452424,53.120756535046944],[-126.28097590739085,53.120932807243946],[-126.28105850791233,53.12110963950241],[-126.28113641860249,53.12128591813777],[-126.28120496763921,53.12146166323161],[-126.28126133982087,53.121636881495604],[-126.28130181012133,53.12181212857883],[-126.28132168417237,53.121986313157805],[-126.28131909728411,53.12216054218452],[-126.28128280754505,53.12233317519117],[-126.28121750145647,53.122504201002485],[-126.2811269146265,53.122674722159395],[-126.28101947358222,53.12284416284605],[-126.28090172933926,53.12301362788928],[-126.28077931214463,53.1231831038913],[-126.2806597128483,53.123353128795536],[-126.28054946416447,53.12352426077523],[-126.28045513623819,53.12369591061518],[-126.28038235589709,53.123869750144],[-126.2803423394423,53.12404575281503],[-126.28033229440847,53.12422504571249],[-126.28034191108233,53.12440653285049],[-126.2803590339341,53.124588557910556],[-126.2803723982794,53.12477060082328],[-126.28037078781169,53.12495042939009],[-126.28034293746428,53.12512752354246],[-126.28029265029508,53.125306355973464],[-126.28023677275073,53.125491359498724],[-126.2801659306876,53.12567583372906],[-126.28007163717956,53.12585364981081],[-126.27994635607249,53.12601752928296],[-126.27978069439322,53.126160215953625],[-126.27957276892796,53.12628002898168],[-126.2793497927469,53.12639092270289],[-126.27911556545799,53.12649679612802],[-126.27887192905887,53.12659764484814],[-126.27861984943605,53.126694595924],[-126.27836120592025,53.1267887653095],[-126.27809878393991,53.12688013744939],[-126.27783262816767,53.12697095307383],[-126.27756457702719,53.12706066107355],[-126.27729746816811,53.12715035728613],[-126.27703131267307,53.12724173578157],[-126.27676889602678,53.12733479004803],[-126.27651118393344,53.127430629318575],[-126.27625911218718,53.12753037186719],[-126.2760164248084,53.12763401795567],[-126.27578220419655,53.12774324594277],[-126.27556018664714,53.12785916760237],[-126.27535036854361,53.12798122727744],[-126.2751518471827,53.12811109432999],[-126.27496365692785,53.12824766855791],[-126.2747848655425,53.128390378515256],[-126.27461451867383,53.128537550297516],[-126.2744526349321,53.128689739629834],[-126.27429639159269,53.128845841626344],[-126.27414765348165,53.12900473155801],[-126.27400267281638,53.12916584447501],[-126.2738633181538,53.12932862929546],[-126.27372678526474,53.129492527832504],[-126.27359398051378,53.12965641757138],[-126.27346211468317,53.12981974924095],[-126.27333210906446,53.1299813913246],[-126.27320492168641,53.13014358247126],[-126.27308146622603,53.130306329544155],[-126.27296270846634,53.1304707507535],[-126.27284677262458,53.13063627678122],[-126.27273456880755,53.13080235876846],[-126.27262425844137,53.130969556695],[-126.27251675157486,53.13113731273751],[-126.27241204817943,53.13130561794029],[-126.27230736250135,53.13147447872361],[-126.27220453324249,53.13164334408783],[-126.27210172171054,53.131812765035775],[-126.27199983796186,53.131982183743126],[-126.2718979533983,53.132151602346774],[-126.27179419581634,53.13232102514832],[-126.27169043021918,53.1324893274333],[-126.2715847951417,53.132658189633005],[-126.27147820849795,53.13282594244189],[-126.27136976013747,53.132993134713516],[-126.27126129950146,53.13316088262734],[-126.27115284942752,53.13332807466888],[-126.27104438713242,53.13349583131587],[-126.2709368675415,53.13366357672327],[-126.27082841490025,53.13383076842058],[-126.2707199500334,53.13399852472316],[-126.27061149567857,53.13416571619055],[-126.27050302903787,53.13433346329975],[-126.27039362933026,53.13450065669387],[-126.27028422875912,53.134667849971315],[-126.2701738986563,53.13483504525294],[-126.27006355270402,53.13500224045032],[-126.26995322085932,53.13516943549506],[-126.2698428696251,53.135336074733196],[-126.26973253603991,53.135503269541125],[-126.26962218660502,53.13567046426464],[-126.26951185127788,53.13583765883564],[-126.2694014965097,53.136004288636975],[-126.26929115944205,53.13617148297112],[-126.26918080652436,53.13633867722085],[-126.2690713964195,53.136505869205855],[-126.2689619890364,53.13667362575929],[-126.26885352089413,53.13684081536629],[-126.26874503691637,53.137008004892294],[-126.26863749930541,53.13717574788223],[-126.26853090460216,53.13734349757998],[-126.26842429759672,53.1375118029218],[-126.26831862987733,53.13767954132663],[-126.26821390861042,53.13784784216683],[-126.26811011524933,53.13801614079383],[-126.2680081935265,53.138184435072404],[-126.26791283489499,53.138355519920815],[-126.26784656301562,53.13853549324039],[-126.26779529528544,53.13871935850118],[-126.26774308775798,53.1389015496958],[-126.26767395914605,53.13907537148775],[-126.26757011108911,53.13923582668744],[-126.26741092082922,53.13937903586272],[-126.26718232167475,53.13950503952404],[-126.26690955482132,53.1396042522688],[-126.26662063439039,53.13966485072811],[-126.26633238823716,53.13968510283253],[-126.26603369117137,53.13968241358053],[-126.26572742060246,53.13966405468759],[-126.26541640532439,53.13963674227662],[-126.26510443620367,53.139607755035655],[-126.26479530827407,53.139582677606306],[-126.2644918682442,53.139568790866576],[-126.26419789932496,53.13957224424662],[-126.26391719166895,53.13960032554442],[-126.26365071289219,53.13965694072432],[-126.26338992658735,53.13972810810197],[-126.26313201834061,53.13980935228787],[-126.2628769810309,53.139899552894136],[-126.26262572481498,53.139998143225334],[-126.2623782692035,53.14010345607466],[-126.26213458403521,53.14021547360449],[-126.26189656143556,53.14033252446257],[-126.26166229535322,53.14045404820569],[-126.26143461364144,53.14057948287794],[-126.2612116332731,53.1407071385984],[-126.26099521196643,53.140837029221956],[-126.26078533931722,53.140967460731865],[-126.26058202693977,53.14109787740913],[-126.26038246881097,53.1412299616111],[-126.26018666846629,53.14136428700371],[-126.2599936935743,53.14150028199878],[-126.25980352915855,53.141637946642945],[-126.25961617874006,53.14177785459613],[-126.25943165032552,53.14191886750767],[-126.25924900023021,53.14206100538488],[-126.25906823180283,53.1422048149935],[-126.25888933819272,53.14234917593751],[-126.25871232631056,53.142495217592725],[-126.25853718931562,53.14264181956309],[-126.25836299832262,53.14278897492178],[-126.25818973835322,53.142936683705464],[-126.258018353296,53.14308495282341],[-126.25784696703884,53.14323322168091],[-126.25767651187336,53.143382052938485],[-126.25750699929644,53.14353087292106],[-126.2573374821517,53.14367913692841],[-126.25716796724889,53.14382796536406],[-126.25699751543249,53.1439756661955],[-126.2568289235964,53.144123927420274],[-126.25667441415317,53.144277204205316],[-126.25653399393295,53.14443660804427],[-126.25640013334727,53.14459823832181],[-126.25626815127421,53.14476098478048],[-126.25613333800074,53.144921496368575],[-126.2559891545254,53.145078666806356],[-126.25583087941816,53.14522970074355],[-126.25564348981607,53.14536791704264],[-126.25543170015519,53.14549498153514],[-126.25521050326917,53.1456175842587],[-126.25499684166212,53.14574521667723],[-126.25480288959355,53.14588176062968],[-126.25461550722322,53.14602221605521],[-126.25443282999869,53.146165466576704],[-126.25425203103451,53.146309824219585],[-126.2540712308915,53.146454190537966],[-126.25388761426532,53.14659631281299],[-126.25369834614355,53.14673565034718],[-126.2535025024709,53.14687051998777],[-126.25329632413553,53.14699868891785],[-126.25307792667365,53.14712072580453],[-126.252850123438,53.147236050917186],[-126.25261292793333,53.14734692293207],[-126.25237009247932,53.147454436280206],[-126.25212442233307,53.147559158603464],[-126.25187594247404,53.14766276597298],[-126.25162840869011,53.14776693548988],[-126.25138273489698,53.14787165625525],[-126.2511427134979,53.147979725751846],[-126.25090925511014,53.14809057739352],[-126.25068424930721,53.148207021698305],[-126.2504714567735,53.14832903282709],[-126.2502736993876,53.14845998404799],[-126.25009661568414,53.14860320683582],[-126.24993738736002,53.14875591964119],[-126.24979316939942,53.148915887710324],[-126.24965928541441,53.149080306480954],[-126.24953384610332,53.14924639238],[-126.24941307744666,53.1494119125597],[-126.24929980299183,53.149577972537315],[-126.24919683798109,53.14974680723436],[-126.24910326855412,53.149918427564145],[-126.24901625625535,53.15009171910726],[-126.24893111951022,53.150265562348274],[-126.24884503807066,53.15043940749643],[-126.24875709131229,53.15061213607117],[-126.24866162360577,53.15078263953871],[-126.24855678849976,53.150950357071345],[-126.2484397473515,53.15111418315374],[-126.24830769140827,53.15127300323084],[-126.24815967647795,53.15142681026997],[-126.24799947666142,53.15157783712922],[-126.24782895841881,53.15172496840171],[-126.24764998632764,53.15186932055465],[-126.24746443660841,53.15201143638842],[-126.24727420064141,53.15215188557185],[-126.24708021069713,53.15229122186095],[-126.24688621294375,53.15242943742285],[-126.24669221392391,53.15256765265616],[-126.24650103079087,53.15270586169339],[-126.24630513658256,53.15284071897733],[-126.24610266469327,53.152973348778715],[-126.24589737632786,53.15310374324957],[-126.24568833071146,53.15323246901634],[-126.24547928377208,53.15336118544153],[-126.24527023883265,53.15349046616895],[-126.24506401309914,53.15362030536512],[-126.24497040659182,53.15379247780873],[-126.24492366287913,53.153967923388336],[-126.24495185977315,53.154148251223695],[-126.24502873238141,53.15432119111991],[-126.24512243639002,53.15449186423489],[-126.24521334529258,53.15466365449972],[-126.2452911555551,53.15483772161186],[-126.24534369855613,53.15501407289453],[-126.24534661699334,53.15519445293403],[-126.24528861895485,53.15536992185105],[-126.24522969453065,53.15554594836451],[-126.2451857652487,53.155723619902126],[-126.2451409097361,53.15590185801022],[-126.24509322998229,53.15607898152157],[-126.24507459090523,53.15625828568795],[-126.24507283259356,53.15643867529195],[-126.24507668239069,53.15661961795248],[-126.24508054393839,53.15679999588433],[-126.2450768940782,53.1569798246648],[-126.24505919546428,53.15715857106887],[-126.2450190007184,53.15733455851795],[-126.24493194344727,53.15750559659562],[-126.2448177103366,53.1576733385399],[-126.24470440544295,53.157841069474436],[-126.24459110291369,53.158009364964265],[-126.2444693522394,53.158176001645685],[-126.24435886214913,53.15834372638395],[-126.24428209619872,53.158514751596286],[-126.2442690683257,53.1586906825815],[-126.24430663568465,53.15887154648774],[-126.24434327421575,53.159052421245285],[-126.24431994493246,53.15923004957864],[-126.2442151137442,53.15940504953053],[-126.244188943526,53.15957876671826],[-126.24424427111587,53.1597517600281],[-126.24431833663303,53.15992527034526],[-126.2444055167988,53.160098753523364],[-126.24450112919209,53.160271098798276],[-126.24460234446296,53.16044286771862],[-126.2447026184203,53.160612406632936],[-126.2448131885074,53.16077911865584],[-126.24493497234498,53.16094356654581],[-126.24506051258923,53.16110688611434],[-126.24518323929716,53.16127076708627],[-126.24529754177587,53.16143691515167],[-126.24540811635916,53.16160362654345],[-126.24551775078794,53.16177089548997],[-126.24562644188313,53.16193817524196],[-126.24573420779546,53.162106012522635],[-126.24584291882175,53.162273847728756],[-126.2460187328306,53.162544620734906],[-126.24607128646451,53.162723211763705],[-126.24613602944878,53.162902342093616],[-126.24619514905008,53.1630809283455],[-126.24623085368233,53.16325899857213],[-126.24622718536935,53.16343490986043],[-126.24618042641889,53.16360866993766],[-126.24610648591477,53.16378136608502],[-126.24601473478405,53.163953534498425],[-126.24591268230407,53.164125168501066],[-126.24581062899652,53.164296802399505],[-126.24571701695861,53.164468983355825],[-126.2456412059272,53.16464280341121],[-126.24559631489173,53.1648188000681],[-126.24559361085142,53.16499862611431],[-126.24561246791632,53.165179536779966],[-126.24563599853921,53.16535987304447],[-126.24570553418752,53.16555859600136],[-126.24560900662559,53.165714532458324],[-126.24575237569483,53.165881175123346],[-126.24599537115971,53.165940051866976],[-126.24629820302877,53.16598032145981],[-126.24658603149665,53.166015575230176],[-126.24691301989581,53.166021051451544],[-126.24721558354888,53.16601257720846],[-126.247491933106,53.16600975901481],[-126.24780030129307,53.16603264245198],[-126.24809376373909,53.16607236238207],[-126.24838261572152,53.16612329529681],[-126.24866311336335,53.16618601377666],[-126.24893429088246,53.166259390543765],[-126.24920177648666,53.16633949688288],[-126.24946553037246,53.166424647814836],[-126.24972836589659,53.16651148518183],[-126.24999120249907,53.16659832196125],[-126.25025589737233,53.166682357699784],[-126.25052431088888,53.166761338678164],[-126.25080201770142,53.16682741023714],[-126.25109179922217,53.166874417638574],[-126.25133458989959,53.166899107063045],[-126.25152950827905,53.16690710061664],[-126.25135282070947,53.16712931576058],[-126.2512828421967,53.16733561852723],[-126.25123897928673,53.167522254274175],[-126.25134859226333,53.16767944274005],[-126.25151434941517,53.16782474312097],[-126.25169977323104,53.167967195963286],[-126.25189921759578,53.16810514602894],[-126.2521061417282,53.168240274335524],[-126.25231397318497,53.168371474448584],[-126.25252927272227,53.16849538012585],[-126.25276230369515,53.168608608209645],[-126.2529990700984,53.168719578079966],[-126.25322836932749,53.168835054017066],[-126.25343619043905,53.168963455628834],[-126.25362535994901,53.16910365656858],[-126.25381451238914,53.16924330151505],[-126.25402422278292,53.169371142304506],[-126.2542563416851,53.16948828629523],[-126.25450156350136,53.16960035537074],[-126.2547458388466,53.16971187025133],[-126.25497889254336,53.1698267699967],[-126.25518763114005,53.16994900878167],[-126.25536084837944,53.170084759668335],[-126.25546682344486,53.1702565172171],[-126.25549608141718,53.17044692237318],[-126.25545311262744,53.170625158937554],[-126.25534351911608,53.17078561274536],[-126.25519079433526,53.17094111311577],[-126.25502026358599,53.171094975505675],[-126.25485817026573,53.171251060275736],[-126.2547307731484,53.17141323685609],[-126.25464184548315,53.17158316439967],[-126.25457450537007,53.171758091732414],[-126.25452123209767,53.1719363499742],[-126.25447920890558,53.17211570439621],[-126.25444093330418,53.172295050731904],[-126.2544073281013,53.17247326660199],[-126.25439248762775,53.17265312721314],[-126.25438607919996,53.17283408112651],[-126.25437591602675,53.17301393165106],[-126.25434793201875,53.17319213535655],[-126.25429747785361,53.173370943015094],[-126.25423391704163,53.173554269337046],[-126.25413751030962,53.17372813822708],[-126.2539894227423,53.17387690441667],[-126.25379059218962,53.17400450054976],[-126.253563604141,53.174122064079754],[-126.25331499534897,53.17422959878913],[-126.25305225527337,53.17432595021304],[-126.25278289202193,53.17441055547702],[-126.25251157677445,53.17448228417773],[-126.25223177798777,53.17454450245043],[-126.25194629110749,53.1745983246875],[-126.25165609584924,53.174647118926345],[-126.2513630829893,53.1746936776348],[-126.2510709990294,53.1747402336462],[-126.250780805135,53.17478959041003],[-126.25049531809844,53.17484397381556],[-126.25021644350488,53.17490618534764],[-126.2499460718371,53.174979017576376],[-126.24968796596033,53.17506751786203],[-126.2494411960049,53.1751716703145],[-126.249201987284,53.175287019278656],[-126.24896843581845,53.17540851356411],[-126.24873581915911,53.175531125812455],[-126.24850131570696,53.17564925996027],[-126.24826299511723,53.17575843845224],[-126.24801523227242,53.17585307105908],[-126.24775703826532,53.175928113521515],[-126.24748463896887,53.17597910103383],[-126.24719993371814,53.17600770565117],[-126.24690669736401,53.17601840100686],[-126.24660494139373,53.176015668605814],[-126.24629939154097,53.176005100542795],[-126.24599100036997,53.17599062068365],[-126.24568262762917,53.17597669570073],[-126.24537709777651,53.17596948641049],[-126.24507630426655,53.17597235010903],[-126.24477563587227,53.17599425954478],[-126.24447409379503,53.17602849439376],[-126.24417441564886,53.17606103955189],[-126.24388118899387,53.176076208983126],[-126.24366180473355,53.176057613843255],[-126.24336696539481,53.175954023178186],[-126.24310864838812,53.17584475481371],[-126.24292889923437,53.17571236105663],[-126.24282953473221,53.175541699718174],[-126.24275820667145,53.17536034151063],[-126.24269908447128,53.17518176370407],[-126.24264559466313,53.17500485042597],[-126.24260053976617,53.174826799428715],[-126.24256108607058,53.17464761652594],[-126.2425235217724,53.17446842972348],[-126.24248688732744,53.17428924098818],[-126.24244743461416,53.17411005799501],[-126.24240238150342,53.17393200683547],[-126.24235077173644,53.17375564517869],[-126.24228885419598,53.173580433937396],[-126.24221477951447,53.17340804403285],[-126.2421247966138,53.17323792739582],[-126.24201889708606,53.17307120440722],[-126.2418998931888,53.17290674888122],[-126.24177058532581,53.172743990379836],[-126.24163660743284,53.172582370617874],[-126.2415007565317,53.17242074554909],[-126.2413658512017,53.172259127348084],[-126.24119030114772,53.17203652550682],[-126.24103855269966,53.17188109893002],[-126.24088774983663,53.171725670223985],[-126.24072667117035,53.171574179125884],[-126.24055156668847,53.17142888297705],[-126.24037085118877,53.171285283033086],[-126.24018732804568,53.171143364619],[-126.23999727077471,53.171004255676024],[-126.23980255021634,53.170867405628776],[-126.23960221638254,53.17073448353346],[-126.23939907411581,53.17060044636974],[-126.23919218848839,53.17046697213148],[-126.23898156909233,53.17033575482562],[-126.23876536090575,53.17021014144981],[-126.23854264717903,53.17009239254976],[-126.23831248093514,53.16998473287169],[-126.23801879263144,53.16990801596665],[-126.23771237921822,53.16990359422763],[-126.2375039878036,53.16999980223182],[-126.23734375194672,53.17016370207211],[-126.23720228512221,53.17033316608196],[-126.2370682657076,53.17049421647076],[-126.2369417628098,53.17065916857022],[-126.23681994247394,53.17082523155258],[-126.23670001635651,53.170992411006026],[-126.23657819411304,53.17115847370938],[-126.2364516810608,53.17132230483785],[-126.23631765250519,53.171482789614785],[-126.23617235109762,53.17163825042859],[-126.23601296403596,53.171787025690676],[-126.23583572199487,53.17192798452721],[-126.23563780906721,53.17205890959097],[-126.23542298864733,53.1721825808517],[-126.23519501487425,53.17230011116106],[-126.23495857459689,53.17241318518818],[-126.23471744624347,53.17252458294633],[-126.23447725798347,53.172635413661425],[-126.23423987821288,53.17274736768644],[-126.2340090641534,53.172862104766686],[-126.23377826071545,53.17297627668534],[-126.2335455608966,53.17308934044922],[-126.23331192720993,53.17320184090554],[-126.23307735348716,53.17331265766228],[-126.23284088646119,53.17342292195058],[-126.23260348252646,53.173532067199446],[-126.23236326460855,53.173639541369425],[-126.23212209476056,53.17374588754799],[-126.23188092065587,53.173851677517646],[-126.23163786516427,53.17395635026978],[-126.23139386394737,53.174061024362814],[-126.23114987039675,53.17416457753179],[-126.2309049280925,53.17426757632243],[-126.23065904001717,53.17437056747733],[-126.23041315968668,53.174472446663934],[-126.23016633056686,53.17457376249577],[-126.22991855572842,53.17467507964142],[-126.22967078861618,53.17477527584814],[-126.229421128187,53.17487491051669],[-126.22916959840462,53.17497287215419],[-126.22891335047429,53.17506636078153],[-126.22865144278475,53.17515313739231],[-126.22838292183148,53.1752315276748],[-126.22811159317233,53.17530935807166],[-126.22783934297871,53.17538886572877],[-126.22756614725577,53.17546838353481],[-126.22729199689974,53.1755462174604],[-126.22701596837506,53.17562069315592],[-126.22673802272355,53.175690125606465],[-126.22645817807867,53.175752282933985],[-126.22617639860253,53.175806044797845],[-126.22589270243314,53.175849161393884],[-126.22560326971463,53.17587379721018],[-126.22530621200343,53.17587156626856],[-126.22500436613541,53.175851408369624],[-126.2247006018307,53.175822854848384],[-126.22439684093003,53.17579486522172],[-126.2240959404663,53.175777508690075],[-126.22380171086166,53.17577974124708],[-126.22351325453184,53.17581053677237],[-126.22322589008715,53.175869339450415],[-126.2229479956554,53.17594997581269],[-126.22268988042973,53.17604849170348],[-126.22245806392036,53.176158726266465],[-126.22223379872881,53.17627959444188],[-126.22201614336566,53.17640884828007],[-126.22180882818533,53.17654592511175],[-126.22161746395189,53.17668857369746],[-126.22144581114462,53.176836222401604],[-126.22130041333907,53.17698719193191],[-126.22121974304935,53.17714980004424],[-126.22122162730544,53.17733242101666],[-126.22124979476483,53.1775205948458],[-126.22125167621485,53.177702651107104],[-126.2212394968308,53.17788250179245],[-126.22122918862301,53.17806178428404],[-126.22122545056882,53.178241610199606],[-126.22122545774525,53.178423678854145],[-126.22125263446046,53.17860289126453],[-126.22135939305825,53.178766269398785],[-126.2215223098502,53.17891889415954],[-126.2216880438178,53.17907095769637],[-126.22184348379,53.179224160669094],[-126.22199985453551,53.17937736168243],[-126.22215996912473,53.179529435061156],[-126.22232382466562,53.17967982508052],[-126.2224923507891,53.17982852101575],[-126.22266369117355,53.17997609101605],[-126.22283223466574,53.18012478641546],[-126.22299702159295,53.18027460903261],[-126.22315434208417,53.180427241982414],[-126.22329949369939,53.18058382351717],[-126.22343342101671,53.180744351898454],[-126.22355986669464,53.180907690741606],[-126.22368444192153,53.18107158868497],[-126.22381181629558,53.18123436976463],[-126.22395324807323,53.18139543904202],[-126.22410029815289,53.18155537711432],[-126.22424267679584,53.18171644423044],[-126.2243709999089,53.181879213899904],[-126.22447497753451,53.18204595542017],[-126.22454242116471,53.18221724767745],[-126.22458178182903,53.182391954314504],[-126.22460052397318,53.18256950548804],[-126.22460522437683,53.182748759378605],[-126.2245996317563,53.182929708878355],[-126.22458934844956,53.18311123193253],[-126.22457812332216,53.183293321431194],[-126.22457253351074,53.183474835548076],[-126.22457629805488,53.18365576723247],[-126.22459411988697,53.183834996137435],[-126.2246269408288,53.18401476125457],[-126.22467007926706,53.184194497811745],[-126.22471694914653,53.18437367154256],[-126.22476101514255,53.18455285055909],[-126.22479852521319,53.1847314862714],[-126.22482289586027,53.184909582219305],[-126.22482758255873,53.18508603044271],[-126.22479952578374,53.1852726332803],[-126.22472276873539,53.185469403054384],[-126.22460466356553,53.18564328764295],[-126.22445157016463,53.18576066315785],[-126.2241946112456,53.18573426043515],[-126.22387915562757,53.185635142344005],[-126.22358922556953,53.18557855007539],[-126.22329464396435,53.18552700314281],[-126.22302246037768,53.1854569313401],[-126.22280442449859,53.1853458672844],[-126.22263400075485,53.18519717576209],[-126.22247288582106,53.185038938695634],[-126.22228937513707,53.18489643787015],[-126.22209650741038,53.18475954729035],[-126.22189897096115,53.184624350203876],[-126.22170143577425,53.18448915277813],[-126.2215029750486,53.184354521423415],[-126.22130357374219,53.1842204472003],[-126.22099036697523,53.184011518799686],[-126.22069128433489,53.18399134473586],[-126.22038940902543,53.18397622135706],[-126.22009125088847,53.183954932629945],[-126.21980143923909,53.183917933219114],[-126.21952369194291,53.18385627108839],[-126.21925429232454,53.18377610191043],[-126.21899138600541,53.18368415151873],[-126.21873034376875,53.183589965278316],[-126.21846650657997,53.18350025621905],[-126.2181971343417,53.18342456614538],[-126.21791848251195,53.18336962426127],[-126.21763057489969,53.18333430110356],[-126.21733615429332,53.183309628438174],[-126.217038957962,53.183293367547535],[-126.21673806236204,53.18328383503169],[-126.21643530898189,53.18328047178265],[-126.21613258776843,53.18328045991316],[-126.2158298687498,53.183283817404316],[-126.21552904197311,53.18328772639244],[-126.21523008883376,53.18329442770922],[-126.2149313156824,53.18333362826565],[-126.21463352850003,53.18338402123269],[-126.2143412562305,53.18341312499152],[-126.21405902773263,53.18339122757879],[-126.21378504400225,53.18333010090686],[-126.21351563879757,53.183245992836866],[-126.21324899937306,53.18315404539375],[-126.21297957292273,53.183068260032535],[-126.21270739123787,53.18299199785297],[-126.2124352133691,53.18291629971713],[-126.2121583971848,53.18284845200583],[-126.21187413083733,53.18279294128475],[-126.21153738471911,53.18273528284184],[-126.21109656445708,53.18267053091874],[-126.21069695515035,53.18260009312589],[-126.21038472632715,53.1825748791518],[-126.21006225162147,53.1825608864466],[-126.20971659580879,53.18259567544027],[-126.20923703999493,53.18265702478021],[-126.20887758515445,53.182746170215566],[-126.20850690695619,53.18284037159276],[-126.20817655888463,53.182942352625254],[-126.20787624572394,53.18305043768744],[-126.20761453684162,53.18319654762193],[-126.207323638157,53.183316939063296],[-126.20709365465491,53.18343498250094],[-126.20681374908577,53.1835010099948],[-126.20642038561715,53.1835582804505],[-126.2061128486655,53.18353360275664],[-126.2060794785561,53.18341882521379],[-126.20608087553855,53.183320784071206],[-126.20602043985275,53.183227896738195],[-126.20578486730811,53.183159406692965],[-126.2056045354327,53.18308072780946],[-126.20540405273312,53.182906859290114],[-126.20531696918147,53.182729988427916],[-126.20517363166832,53.18254873338448],[-126.20504543462535,53.18239713784042],[-126.20489303928532,53.18228032512187],[-126.2047618637563,53.18209232614918],[-126.20456905468698,53.18195316605903],[-126.20437813359624,53.18181344667423],[-126.20419281386229,53.18167204120929],[-126.2040075130412,53.18153119112768],[-126.20382032675485,53.181390899706955],[-126.2036294160648,53.1812522994556],[-126.20343277428603,53.1810941063463],[-126.2032285653928,53.1809179906406],[-126.2030211159572,53.18085056717236],[-126.20281338455477,53.18091814664732],[-126.20260589654909,53.18103669871417],[-126.20239761436751,53.1811838262523],[-126.20218655985335,53.18134104167311],[-126.20197169617515,53.18148593888402],[-126.201751103706,53.18160900228655],[-126.20152298031242,53.18172534676721],[-126.20129109888961,53.181840021079935],[-126.20106014591525,53.18195469335314],[-126.20083484587002,53.18207271675635],[-126.20062080530761,53.182196887284725],[-126.20042745546054,53.18233333774723],[-126.20025382876302,53.182480402735976],[-126.20008864688543,53.18263137904131],[-126.2000149239651,53.1826970419797],[-126.19992252614398,53.1827806716182],[-126.1997611084295,53.18293219679813],[-126.19960813296858,53.1830870686893],[-126.19946641901008,53.183245282575406],[-126.1993256363468,53.18340405042323],[-126.19918579740566,53.18356282546425],[-126.19904503289922,53.18372271330777],[-126.19890707161015,53.18388260522381],[-126.19877191613864,53.18404304796835],[-126.19864146127286,53.18420515876355],[-126.19851570183687,53.1843678262061],[-126.19839650265726,53.184532167577295],[-126.19828668304369,53.18469816921379],[-126.19821344784393,53.184872507956975],[-126.19816274518645,53.185051855177164],[-126.19811202450073,53.18523064667437],[-126.19803880005503,53.185404429525285],[-126.19792239781214,53.18556820096624],[-126.1977844209838,53.18572696207088],[-126.19763425278452,53.18588294685037],[-126.19747562987985,53.18603670474223],[-126.1973123092481,53.186189914519574],[-126.19714805236931,53.18634199626326],[-126.19698567417493,53.186495203992365],[-126.19682892123188,53.18664895784963],[-126.19668249547942,53.18680493511423],[-126.1965491890368,53.18696368690397],[-126.19646558777343,53.18712684661271],[-126.19641300036194,53.187306195974095],[-126.19636977596336,53.18748665016042],[-126.19636783469609,53.1876726378217],[-126.19633771938346,53.18785026477505],[-126.19623817792424,53.1880112098851],[-126.19604571463753,53.18814709551548],[-126.19569324712555,53.18834598698167],[-126.19539503955055,53.18831790489914],[-126.19509679624721,53.188281988373944],[-126.19479761840667,53.18824494328404],[-126.19450032141992,53.18821238486437],[-126.19420308613246,53.18818990012408],[-126.19390873529802,53.18818478040796],[-126.19361635921959,53.18820150877474],[-126.19332402894493,53.18822831087063],[-126.19303077394646,53.18825960426474],[-126.19273755645936,53.18829593413337],[-126.19244340891423,53.18833562594837],[-126.19215021354167,53.18838035274899],[-126.19185892252281,53.18842844586295],[-126.19156858094244,53.18848100930951],[-126.19128106093827,53.188537493322954],[-126.19099637489,53.18859733322817],[-126.19071545764548,53.18866164792734],[-126.1904383015881,53.18872876135961],[-126.1901658565302,53.188799783450264],[-126.18989811498577,53.18887639930556],[-126.1896331996262,53.18895804728696],[-126.18937300514698,53.18904585373371],[-126.18911564672244,53.18913758091105],[-126.18886111174237,53.1892337756059],[-126.18860939523051,53.18933333538279],[-126.18836145693275,53.189436240806934],[-126.18811445479383,53.189540829279416],[-126.18787120841147,53.18964709633387],[-126.18762889561339,53.189754472825456],[-126.18738847384155,53.18986241049651],[-126.18715085548676,53.18997034324231],[-126.18691417324868,53.19007995908715],[-126.18668031928883,53.19019180180289],[-126.18644741146852,53.19030420723377],[-126.18621637205727,53.190418850032934],[-126.18598722366157,53.19053405407786],[-126.18575900879486,53.19065036762943],[-126.18553172752554,53.1907678086187],[-126.18530539232897,53.19088580339395],[-126.18508000320413,53.19100435196039],[-126.18485554519086,53.1911234633097],[-126.18463108591364,53.191242574226116],[-126.18440662537245,53.19136168470957],[-126.18418216356731,53.191480794760125],[-126.18395770049823,53.191599904377526],[-126.18373228883247,53.19171845932034],[-126.18350406623652,53.191835888830745],[-126.18327396511599,53.19195276508737],[-126.18304198786876,53.19206964378649],[-126.18281095426939,53.19218652056592],[-126.18258178409565,53.192304514398145],[-126.18235543971305,53.19242418848648],[-126.18213379595635,53.19254553100101],[-126.1819177726002,53.192669660940105],[-126.18170927457555,53.19279658437504],[-126.18150827429496,53.192926857098065],[-126.18131760904785,53.19306103947768],[-126.18115700102997,53.193209175900364],[-126.18103396443438,53.19337461615509],[-126.18093346429764,53.19354899388297],[-126.18083953783365,53.19372447289444],[-126.18073085699343,53.19396103971661],[-126.18045361692148,53.194020286959834],[-126.18032391398488,53.19394261330774],[-126.1801133365291,53.19380569112059],[-126.17989253679939,53.1936878216359],[-126.17965394523064,53.19357614530916],[-126.17941723223387,53.193465030325505],[-126.17918800110924,53.19334941304861],[-126.17897466491654,53.1932253729117],[-126.17878940932182,53.193087289688194],[-126.17863876197988,53.19293233925849],[-126.17850213918366,53.19277008947825],[-126.17835897468527,53.192610654819646],[-126.17818868498817,53.192463576045654],[-126.17799405538966,53.19232774639921],[-126.17778821404355,53.19219697050112],[-126.17758048644852,53.19206675277644],[-126.17738305818382,53.19193148200886],[-126.17717348973622,53.1918051921406],[-126.17699660283479,53.191649723061246],[-126.1768469111827,53.19149813894036],[-126.17667475171798,53.19134994032258],[-126.17650258081686,53.191202306135615],[-126.17632948121131,53.191054673070916],[-126.17615545992744,53.19090872617333],[-126.17597675463423,53.19076501777669],[-126.17579336773468,53.19062412149388],[-126.17560438665028,53.190486594367975],[-126.17538168526335,53.19035864462049],[-126.17512442300647,53.1902581905144],[-126.17485331936251,53.19020872934723],[-126.17455534597055,53.19023717844559],[-126.1742527285011,53.19027795786714],[-126.1739464058515,53.19032602894273],[-126.17367450544435,53.19031241859104],[-126.17346585381794,53.1901782780374],[-126.17328713783769,53.19002897259438],[-126.17311779460245,53.18987908849967],[-126.1729549906514,53.18972526877266],[-126.17279407766398,53.18957145501546],[-126.1726294082111,53.18941932260075],[-126.17245820641399,53.18927223671318],[-126.1722748572634,53.18913245522761],[-126.17207561227825,53.18900390040541],[-126.17182214284226,53.188910155886056],[-126.17156676801362,53.18880857087592],[-126.17131891821028,53.18871314103539],[-126.17104021773251,53.18863959827951],[-126.17076435358317,53.18856996764892],[-126.17048288206772,53.18850427027964],[-126.17019580987645,53.18844418222073],[-126.16990597222322,53.188393625200064],[-126.16961429494692,53.18835538539405],[-126.16932174890285,53.18833227581302],[-126.16900116117388,53.18832881676886],[-126.16870701348638,53.18837405153896],[-126.16841097930802,53.1884164828108],[-126.16813000002232,53.188473465961344],[-126.16787633506338,53.188561771592795],[-126.16764433167528,53.188678064643156],[-126.16743677360003,53.18881336028252],[-126.16726111764119,53.18895701788221],[-126.16711926749396,53.18911631292478],[-126.1670121377882,53.18928732736903],[-126.16693877857922,53.18946109059505],[-126.16691323503387,53.18963926793582],[-126.16692332710095,53.189821311911636],[-126.16691282340024,53.19001011616722],[-126.16700349541469,53.19018308344838],[-126.16707543587118,53.19036000289582],[-126.16683298449806,53.1904466142713],[-126.16660924206462,53.19051975421044],[-126.16633217875342,53.19062321900348],[-126.16603533327786,53.19070430316787],[-126.16574680785439,53.19075400416127],[-126.16545543544207,53.19079306924992],[-126.16516026723714,53.19082428725473],[-126.16486227646237,53.190851035874374],[-126.16456335101509,53.19087665569397],[-126.16426629374754,53.19090452190076],[-126.16397207747495,53.19093797639046],[-126.16368351768962,53.19097982970022],[-126.1634081740649,53.1910457568299],[-126.16315264143527,53.19114246213117],[-126.16290744616171,53.19124811573631],[-126.162651002851,53.191354339981274],[-126.16243305145518,53.19147788133139],[-126.1623305376631,53.19163487567306],[-126.16230968736947,53.191818091562574],[-126.16230570414109,53.19200351612707],[-126.16232514052291,53.19218275095374],[-126.16231082728567,53.19236147629548],[-126.16225620509901,53.19253857177702],[-126.16224470054112,53.19271840464958],[-126.16227913400739,53.19289706316429],[-126.16233794144527,53.19307567929129],[-126.1623967451131,53.19325318395744],[-126.16242836831098,53.1934301611745],[-126.16240936240962,53.193609448551726],[-126.16233225273021,53.19378993592267],[-126.16219222770451,53.19394529627832],[-126.16198928263286,53.19407441798795],[-126.1617459659879,53.1941862330129],[-126.16148382791536,53.194279582389136],[-126.16121411411152,53.19435333030959],[-126.16093216635686,53.19441309392959],[-126.16064267317003,53.194465024428894],[-126.16035318577796,53.194514713445336],[-126.15990341861867,53.19457470163719],[-126.15979061462657,53.19474403159074],[-126.15966467870743,53.194907777207284],[-126.15947486311623,53.195041358359475],[-126.15925030316112,53.19515818017236],[-126.15901071670542,53.19526829942722],[-126.15876831979197,53.195377301573814],[-126.15853624766977,53.195491891310155],[-126.15831168903715,53.195610396361516],[-126.1580890104294,53.195730574560315],[-126.15786726264245,53.19585130680019],[-126.1576455265188,53.19597148289075],[-126.15742096701433,53.19609110659906],[-126.15719452077373,53.1962079269406],[-126.15696243567356,53.19632139316695],[-126.15672564380759,53.196432059721694],[-126.15648698030226,53.196539931795556],[-126.15624928908092,53.19665957058206],[-126.15600971315176,53.196776961638804],[-126.1557597288978,53.19687084684839],[-126.15548988974831,53.196917692620914],[-126.15519171428433,53.19690744443307],[-126.15488592377837,53.19686582582056],[-126.1545951016909,53.19681523280328],[-126.15433412394263,53.19672146104795],[-126.15415079831834,53.19658053170056],[-126.15399740056696,53.1964233131546],[-126.15375609966136,53.19632335691781],[-126.15345973676918,53.19629461124929],[-126.15316075299489,53.19632076690878],[-126.1528588645705,53.1963194717393],[-126.1525560118121,53.19630865828349],[-126.15226990468108,53.19626589614934],[-126.15199684176397,53.19619621847662],[-126.15172935169467,53.196115893895126],[-126.15146560164678,53.196028285929025],[-126.15120370467824,53.19593842528216],[-126.15094275786481,53.195849692187366],[-126.15068649120187,53.1957564620734],[-126.15043394677191,53.19565930982182],[-126.15017674336,53.19556776484182],[-126.14989807728155,53.19550201523534],[-126.149610069588,53.195449721348915],[-126.14936222646259,53.19535312553758],[-126.14912932912823,53.1952408160843],[-126.14890484843528,53.19512009720762],[-126.14868222507295,53.194998255186476],[-126.14845213184307,53.19488034791939],[-126.14822108702474,53.194760191662986],[-126.14804247803514,53.194621487614505],[-126.14794252665459,53.194456360589186],[-126.14783452411753,53.19413326064159],[-126.14805074580853,53.194039443178596],[-126.1482611466219,53.193885687653406],[-126.14844720200088,53.193744842167256],[-126.14863139230987,53.19360288729682],[-126.14881368749148,53.19345980516239],[-126.14899692642743,53.19331673051096],[-126.14918111299606,53.193174765790076],[-126.14936716221689,53.19303392776806],[-126.14955885976619,53.19289587878742],[-126.14975430074047,53.19276062122924],[-126.14995727090965,53.19262984430319],[-126.15017525364931,53.1925074463828],[-126.1504064021092,53.19239287402123],[-126.15064504974303,53.192282773198315],[-126.15088464304704,53.19217322639242],[-126.15112047940882,53.19206200779245],[-126.15134504338957,53.19194464548701],[-126.15154612384393,53.191812183126714],[-126.15170681014348,53.191658484854955],[-126.15184309630231,53.19149753065092],[-126.15198780261774,53.19133433366673],[-126.15212689027321,53.1911688939737],[-126.1522397064721,53.19100125606114],[-126.15230753141776,53.190830870436905],[-126.15232190253346,53.190656627675594],[-126.15231001644727,53.1904796221789],[-126.15227750186007,53.19030096708799],[-126.15222903843268,53.190120647409024],[-126.1521674690756,53.189940900240444],[-126.1520965175273,53.18976285012929],[-126.15201996538474,53.18958704791733],[-126.1519368608863,53.18941573558595],[-126.15181722043144,53.18925231271102],[-126.15167042297635,53.18909397069353],[-126.15152175186967,53.188935621915476],[-126.15139463254997,53.18877277281592],[-126.151300289956,53.18860315042779],[-126.15122280638306,53.18842958955883],[-126.15115374605597,53.18825434177793],[-126.15108657396227,53.18807852685777],[-126.15101283757319,53.18790384063871],[-126.1509269209628,53.18773253103739],[-126.15082602476674,53.1875617961451],[-126.15070919936683,53.18739445154341],[-126.1505539850278,53.18724059128893],[-126.15035195676818,53.18709688269497],[-126.15013877043997,53.18698230898436],[-126.14989769524209,53.18692828003285],[-126.14959788129157,53.18696451144595],[-126.14929152578821,53.187008593051026],[-126.14899907908203,53.187007840898126],[-126.14871206921269,53.186953858345824],[-126.14842965198214,53.18687074824917],[-126.14817527937957,53.18677023191971],[-126.1479977039437,53.18664721137094],[-126.1480317045682,53.18645501803574],[-126.14809576643992,53.18627791679628],[-126.14820296178915,53.1861102893161],[-126.14838897851973,53.185963841398284],[-126.14860312719942,53.18582576527123],[-126.14873664143224,53.18567603044066],[-126.14877063004081,53.18548159602679],[-126.14875299085064,53.18526314257667],[-126.14866613929306,53.185086230343565],[-126.14849060918347,53.185010264154776],[-126.14823093408398,53.18499826515296],[-126.14791891422227,53.185022748053115],[-126.14758823121174,53.1850752541209],[-126.14727076028548,53.18514959487989],[-126.14700113247885,53.18523844045566],[-126.14680938548739,53.18535464288558],[-126.14668341951051,53.18551613476591],[-126.14658187883302,53.18569831895828],[-126.14646721083362,53.18587492630455],[-126.14630746113659,53.18602973718367],[-126.14612148091304,53.18618458019489],[-126.1459025954572,53.18631312985945],[-126.1456413123164,53.186380674639054],[-126.1453593245059,53.186419678863615],[-126.14506979197988,53.18644971959742],[-126.14477555894617,53.18647360772147],[-126.14447662742273,53.18649189891047],[-126.14417486287836,53.186506275920465],[-126.14387026725304,53.18651728547639],[-126.14356568269473,53.186527182811574],[-126.14326202588978,53.18653651356632],[-126.14295930254455,53.18654696280249],[-126.14266035082902,53.18655964749584],[-126.14236042207038,53.18656280483944],[-126.14205952215883,53.186558128844],[-126.14175957273471,53.1865551270452],[-126.1414624858358,53.186565001034445],[-126.14117016010768,53.18659952607505],[-126.14088164840774,53.18665364814214],[-126.14059407507403,53.186710564875256],[-126.14030458748256,53.18675124205085],[-126.14000937148403,53.18676503601081],[-126.13970661816772,53.186762597001184],[-126.13940379817849,53.186744462921084],[-126.13911030395703,53.186707279505875],[-126.13882705798234,53.1866532685901],[-126.13854003784867,53.186591427667175],[-126.13825486750966,53.18652173221883],[-126.13797716734562,53.186443073250196],[-126.13771443220536,53.186354303786],[-126.13747321036888,53.18625374918905],[-126.1372703609618,53.186132982668596],[-126.13713766843033,53.185966198721474],[-126.13703864270119,53.18578032908461],[-126.1369228106608,53.18560960848521],[-126.13674246612668,53.18549049110546],[-126.13646958093197,53.185451036565425],[-126.13614810236274,53.18545196224165],[-126.13583406031164,53.18543832244594],[-126.13554990082115,53.1853854251059],[-126.13527130776835,53.1853190850415],[-126.13499645822091,53.18524600876678],[-126.13472253942952,53.18517293975678],[-126.13445326662217,53.18508921667564],[-126.13418774830733,53.185002127563706],[-126.1339147728738,53.18493240781009],[-126.13361283718196,53.18489017407483],[-126.13327816163932,53.184865902615215],[-126.13301114151976,53.18490093479133],[-126.13287570575194,53.18504785756407],[-126.13277782072522,53.1852188308889],[-126.13273428583305,53.185381335835906],[-126.13265871688539,53.18549569998863],[-126.13228220038843,53.18558294660774],[-126.13199935167923,53.18565105005878],[-126.13174642375753,53.18569614713938],[-126.13144368202097,53.18569479842842],[-126.13114378114635,53.18570521434302],[-126.13085523328299,53.1857497932391],[-126.13057329018056,53.185811160989964],[-126.13029326173096,53.185880933343334],[-126.13001321565348,53.18595014933855],[-126.12973128328747,53.186010959352004],[-126.1294446029875,53.1860544034051],[-126.12915315801914,53.186074888512906],[-126.12885509435856,53.18607409275694],[-126.12855418546853,53.18605985469895],[-126.12827960457498,53.18607807857919],[-126.12796286952647,53.1861019493038],[-126.12764432374692,53.186147108477535],[-126.12739249663973,53.18624653828275],[-126.12710681115848,53.18631294800223],[-126.12696264655264,53.186373038812306],[-126.1268211733602,53.18639056084255],[-126.12667700642042,53.186450095592505],[-126.12655155503569,53.18649952669316],[-126.12639135191094,53.18652770740654],[-126.12628187512973,53.186588325034776],[-126.1261733261616,53.186648376896486],[-126.12607624664122,53.18678292661171],[-126.12591365615506,53.18695172215092],[-126.12580917816108,53.18712044677822],[-126.12568405827705,53.18728247984925],[-126.12554486003373,53.18744115757519],[-126.12539629914697,53.18759873361204],[-126.12523928866348,53.18775463332217],[-126.12507382355352,53.187907180580986],[-126.12490179344314,53.188056373361526],[-126.12472319333624,53.18820052658159],[-126.12445569972635,53.18840023649776],[-126.12432931487072,53.18845638847512],[-126.12403421830298,53.188511596710526],[-126.12374944237237,53.18857296002593],[-126.12346935631382,53.18863823463125],[-126.12318927948213,53.18870182350258],[-126.12290731048421,53.18876485796106],[-126.12262535403308,53.18882733602143],[-126.12234338335843,53.188890369133226],[-126.12206235993526,53.188954520979436],[-126.12178321360844,53.18901979061072],[-126.12150594596054,53.18908673374934],[-126.12123150506747,53.18915647878575],[-126.12095987589083,53.1892290257545],[-126.12069106156174,53.189305486092785],[-126.12043166524317,53.18939257541279],[-126.12019201679993,53.189504857253475],[-126.11997866602533,53.189635602790645],[-126.11979721809588,53.1897780752258],[-126.11963546547265,53.18992724978589],[-126.11948216833196,53.190080897119465],[-126.11933732355693,53.19023789687774],[-126.1191962185912,53.190397133448975],[-126.11905888186213,53.19055804214421],[-126.11892059762752,53.190718395906075],[-126.11878043597822,53.19087819566384],[-126.11863557242904,53.191035750220074],[-126.11849260078264,53.19119443203854],[-126.11835524537015,53.19135590453515],[-126.11821790390778,53.19151737684347],[-126.11807866842946,53.19167773048226],[-126.11793381452758,53.19183528409733],[-126.1177786278899,53.191988375226096],[-126.11761122888188,53.19213531167654],[-126.11742600008162,53.19227330249171],[-126.11721824053949,53.19240011147642],[-126.11699358414934,53.192519094097946],[-126.11675953661313,53.19263248362915],[-126.11652173648899,53.19274531170794],[-126.11628768951631,53.19285982067224],[-126.11606490604075,53.1929799200418],[-126.11585714663161,53.19310953202016],[-126.11544050139238,53.193298162927555],[-126.1152994341392,53.19348035787847],[-126.11532988649158,53.19364670941007],[-126.11523473207377,53.19381822039916],[-126.11514427479408,53.1939908471115],[-126.11503878843881,53.19415844213496],[-126.11490329409025,53.19431766777852],[-126.1147518403485,53.19447187147818],[-126.11459288104834,53.194624397177165],[-126.11442546963494,53.194774690050934],[-126.114251493004,53.194921627863565],[-126.1140709526271,53.19506576629448],[-126.11388570547889,53.19520599211144],[-126.1136891935383,53.195341191205934],[-126.11348141674331,53.19547135456011],[-126.1132623720642,53.19559536173808],[-126.11303674108193,53.19571378184684],[-126.11280173075676,53.19582547920261],[-126.11255262661464,53.19592879110413],[-126.11229413121035,53.19602650947558],[-126.11203188009486,53.19612255473956],[-126.11177150280781,53.19621858868617],[-126.11151863487781,53.196318540797805],[-126.11127890733906,53.19642464659309],[-126.11105795561765,53.19654080875306],[-126.11086234085073,53.196669279927384],[-126.11069020446028,53.196810608720845],[-126.11053403158122,53.19695920034601],[-126.11039098574919,53.19711451076222],[-126.11025921898481,53.197275403429614],[-126.11013494538064,53.19743965907129],[-126.11001537479186,53.19760726237484],[-126.10989955641405,53.1977759914034],[-126.10978280849518,53.197945276871906],[-126.10966416660884,53.19811344358306],[-126.10953990757334,53.19827937459528],[-126.10940719322996,53.19844195213335],[-126.10926414401105,53.19859949285379],[-126.1091117243018,53.198753689844494],[-126.10895085052341,53.198905088972026],[-126.10878527583633,53.19905480713506],[-126.10861408372071,53.19920229840972],[-126.1084400686897,53.19934922733741],[-126.10826510448692,53.19949503648604],[-126.10808827888444,53.19964084706183],[-126.10791331226257,53.19978665566805],[-126.10772897483572,53.19992911139066],[-126.10762319770105,53.19999979131262],[-126.10752585193536,53.20006486159769],[-126.10733305462713,53.20020284284742],[-126.10718061499051,53.200354231802116],[-126.10709760387644,53.200529641445264],[-126.1070521459706,53.200718470580384],[-126.10699634924826,53.2009005777892],[-126.10688140312993,53.20105473786021],[-126.10668387050586,53.201173675837346],[-126.1064365810912,53.201271371021356],[-126.10615924681791,53.20135340732933],[-126.10586781416832,53.20142537218994],[-126.10558106082757,53.201491165607116],[-126.1052980432302,53.201551362086946],[-126.10500750282394,53.20160315724877],[-126.10471132198386,53.20164935479759],[-126.10441138023278,53.201691629118855],[-126.10411143514622,53.20173279126872],[-126.10381336887957,53.20177562709515],[-126.1035209374712,53.20182237408375],[-126.10323509287649,53.201875845832035],[-126.10295957598673,53.2019382619635],[-126.10269626745752,53.20201187959793],[-126.1024489408521,53.20210003875554],[-126.10222135209197,53.20220499497266],[-126.10201441752507,53.20232729431462],[-126.10182346184862,53.20246302406916],[-126.10164377978097,53.202608262549404],[-126.10147068244173,53.20275966165511],[-126.10130039742275,53.20291441921776],[-126.1011272879564,53.20306805855658],[-126.10094855682404,53.20321778558503],[-126.10075853855471,53.203359670337385],[-126.10055255928107,53.20349037352699],[-126.10033155181803,53.20361099673263],[-126.10010490769331,53.203727707447136],[-126.09987357476116,53.20384162521523],[-126.09963847083665,53.20395386065045],[-126.09939962329074,53.20406329333259],[-126.09915888150353,53.20417161569892],[-126.09891533024178,53.204278810576206],[-126.09867084495107,53.20438489431151],[-126.09842541320619,53.20449096935865],[-126.09818091045678,53.20459705208353],[-126.09793642146334,53.204703125322595],[-126.09769473818294,53.2048097604058],[-126.09745398777964,53.20491807926513],[-126.09721700456973,53.20502750594893],[-126.09698376116727,53.20513917880236],[-126.09675428753073,53.205253079896686],[-126.0965304304059,53.205369781380696],[-126.09631222106765,53.20548983896582],[-126.09610150496496,53.20561325118606],[-126.09591709092975,53.20575065089222],[-126.09575707099768,53.20590091040929],[-126.09561584252704,53.206061237900485],[-126.09548774029571,53.206227712206385],[-126.09536528234426,53.206395866858024],[-126.09524187564246,53.206562901756136],[-126.09511283135707,53.20672545954151],[-126.0949837860796,53.20688801717212],[-126.09485849337112,53.20705169201677],[-126.09473883006171,53.20721704725467],[-126.09462572518683,53.20738350852977],[-126.09452014037682,53.20755164872454],[-126.09442391999289,53.207720901721125],[-126.09433240150223,53.20789295629427],[-126.094248389517,53.2080672365928],[-126.09417375723852,53.20824263869714],[-126.09411132438036,53.20841858675506],[-126.09406388197412,53.208595078570596],[-126.09405021500301,53.20877155251399],[-126.09410125386417,53.208950206859974],[-126.09415885033081,53.20912886492025],[-126.09416299947904,53.209307556450675],[-126.09413808761929,53.20948795609027],[-126.09409159445336,53.209666696767115],[-126.09402163906304,53.209841530242414],[-126.09391979453555,53.21000854633544],[-126.0937888577376,53.21017053919926],[-126.09355967033822,53.21043681298376],[-126.09332642098073,53.21055687658958],[-126.09309315775977,53.21067806010944],[-126.09284294827565,53.210763404569676],[-126.09253821490547,53.210797254022566],[-126.09221930602047,53.21077845629206],[-126.09198652188222,53.21068732248557],[-126.09181366326375,53.210551335933594],[-126.09166420937862,53.21039235893234],[-126.09152035163368,53.21022553481044],[-126.09136339373048,53.21006487815989],[-126.09117552356567,53.20992385605438],[-126.09097359909444,53.209791807401835],[-126.09077074677906,53.20966032377481],[-126.09056602128129,53.209529396928076],[-126.09036036792709,53.209399026131294],[-126.09015282762118,53.209269785739615],[-126.08994435825885,53.209140536718685],[-126.08973496226429,53.209012417359496],[-126.08952462221443,53.20888428937267],[-126.08931333932954,53.20875672638277],[-126.0891020727241,53.208629162996196],[-126.0888907923886,53.208501599235525],[-126.08867858303866,53.20837403578555],[-126.08846732025994,53.20824647124134],[-126.08825511464624,53.208119471682494],[-126.08804383823657,53.20799134171025],[-126.08783350956244,53.20786377531892],[-126.08762412628533,53.207735652142546],[-126.0874147281054,53.20760696393158],[-126.08720722058301,53.20747770928362],[-126.08699969818161,53.207347898570255],[-126.08679499671334,53.20721752971443],[-126.08663523452321,53.20705071104901],[-126.08647366909712,53.20691862503533],[-126.08618770455426,53.20694067615039],[-126.08585485036461,53.20696949175557],[-126.08557367528024,53.207045315821354],[-126.0853628616028,53.20713230124659],[-126.08512486125022,53.207227704138695],[-126.085076476083,53.207415961514016],[-126.0850102753945,53.207609268826715],[-126.08488489921801,53.2077516460144],[-126.08461096949027,53.20770254551477],[-126.08434254304258,53.207591264266554],[-126.08414254269955,53.20745975816959],[-126.0839612561663,53.207314238291474],[-126.08376874492251,53.20717489259265],[-126.0835687300167,53.20704170943302],[-126.08336029066692,53.20691189297248],[-126.0831508959073,53.20676863233045],[-126.08290505229547,53.206691498829215],[-126.08260498625786,53.20669955098325],[-126.08230406206961,53.20675241789733],[-126.08204822749646,53.20683774365408],[-126.0818149427113,53.20695385906308],[-126.08158072315109,53.20706829857033],[-126.08133710851845,53.20717434574086],[-126.08109631774798,53.20728262225397],[-126.08085363199596,53.20738922348598],[-126.08060813387578,53.2074930296771],[-126.08035794038977,53.20759010733864],[-126.08009928130544,53.20767823617143],[-126.07983123383563,53.20776132460199],[-126.07955472514526,53.207837695867795],[-126.0792697577236,53.20790062767489],[-126.07898007350879,53.20794507131313],[-126.07868657773484,53.20796543324997],[-126.07838837639024,53.207972917772366],[-126.07808828280669,53.207971430850066],[-126.07778537104991,53.20796323174688],[-126.07748150589835,53.20795054204079],[-126.07717669361661,53.20793674076311],[-126.07687282680142,53.20792292912519],[-126.07656991054802,53.20791192150614],[-126.07626793383224,53.207905958665066],[-126.07596972239932,53.20790782628388],[-126.07567527911554,53.20791921839197],[-126.07538460977675,53.20794349613011],[-126.07521397028952,53.20796432695708],[-126.07481646445927,53.208029004457295],[-126.07453615727854,53.20808463502751],[-126.0742586830182,53.2081475500578],[-126.07398309429682,53.20821662978642],[-126.07370938903466,53.20829074489237],[-126.07343663588951,53.208369340260354],[-126.07316669438515,53.208451850081104],[-126.07289768599853,53.20853660841541],[-126.07262962471177,53.20862304163031],[-126.07236343984471,53.20871059346025],[-126.07209725387546,53.20879814468825],[-126.07183201020624,53.20888457437083],[-126.07156769385914,53.2089698825235],[-126.0713052520592,53.20905518895431],[-126.07104562170476,53.20914440993267],[-126.07078976402008,53.20923811853253],[-126.07053671486064,53.20933405668277],[-126.07028554484621,53.20943279858233],[-126.07003718239937,53.20953322332283],[-126.0697897668613,53.20963532305434],[-126.06954329545299,53.20973742170909],[-126.06929775408683,53.20984007500523],[-126.06905784948064,53.209949455690555],[-126.06882450913307,53.21006386925882],[-126.068592115576,53.21017995788662],[-126.06835971713492,53.210293814275126],[-126.06812262763127,53.21040262674723],[-126.06787800389445,53.21050191542199],[-126.06760709595606,53.21057713509719],[-126.06730421407924,53.21060755749115],[-126.06700784557414,53.21060100320099],[-126.0667142628338,53.210572039191106],[-126.06641971668182,53.21053131558439],[-126.06598071333308,53.210471060788784],[-126.06572640100899,53.21037428555769],[-126.0654786552639,53.21027303362883],[-126.06526276325611,53.21014991192952],[-126.0650599891685,53.210018375366225],[-126.06486378176183,53.20988236233297],[-126.06466943367971,53.20974466291311],[-126.06447510271573,53.20960751885978],[-126.06427513537479,53.209473182944876],[-126.06406861975996,53.209343896375735],[-126.06384618365199,53.209223572023866],[-126.06361061798951,53.20911222622929],[-126.06336944676158,53.209004235109184],[-126.06313107934133,53.20889401021921],[-126.0629067626615,53.2087770461943],[-126.06272836944765,53.2086348535594],[-126.0625780888912,53.20847752526779],[-126.06238938901468,53.208334772875574],[-126.06219411263469,53.208188106804045],[-126.06197916537646,53.20806106168026],[-126.06172771800358,53.20797828538984],[-126.06145100216204,53.20792520704593],[-126.06116023225982,53.20788558873645],[-126.06086103069087,53.20785661309665],[-126.06055715936635,53.20783548169226],[-126.0602523644536,53.207818831466525],[-126.05995130906985,53.20780441930935],[-126.05965307473024,53.20779000496747],[-126.05935296818174,53.207777831556825],[-126.05905193622345,53.207769018963766],[-126.05875089561238,53.207764687098816],[-126.05845080885457,53.207766511563726],[-126.05815167660784,53.20777506599593],[-126.0578562926013,53.20779257185689],[-126.05755998876019,53.20781792899544],[-126.05726181961109,53.20785111993522],[-126.05696553613278,53.20789216078465],[-126.05667396049238,53.20794215265365],[-126.05638988338941,53.20800111217447],[-126.05611708728713,53.208070140054694],[-126.0558658837144,53.20816324960341],[-126.05564755534948,53.20830284309153],[-126.05544331756225,53.20845586507208],[-126.05522779474107,53.208585928811345],[-126.05497843188854,53.20865607245833],[-126.05469430248687,53.20866852801432],[-126.05440639301838,53.20867033661352],[-126.05411473658859,53.2086637479195],[-126.05381930549663,53.208650437992894],[-126.05352200620634,53.20863097061163],[-126.0532218806442,53.20860701330472],[-126.05291987632941,53.20858025962915],[-126.05261692501297,53.20855182952837],[-126.05231304241393,53.208522269729464],[-126.05200916162869,53.20849383848473],[-126.05170528398091,53.20846763823944],[-126.0514014101198,53.20844424262372],[-126.0510994189501,53.20842644727491],[-126.05079837939147,53.20841369690246],[-126.05049920994972,53.20840877860684],[-126.05020381673391,53.20841226522499],[-126.04998813498403,53.20842131936914],[-126.04962055628313,53.20845228854486],[-126.04933269186179,53.208491621729095],[-126.04904765883411,53.20854047171775],[-126.04876451108765,53.20859829217836],[-126.04848324457575,53.20866170408526],[-126.04820105204142,53.20872960614709],[-126.04792072109815,53.20879918285711],[-126.04763852925734,53.20886931535325],[-126.04735631897633,53.208937215402244],[-126.04707224281186,53.20900118973676],[-126.04678721365522,53.20905899724107],[-126.04649935355643,53.20910840686626],[-126.04620867890631,53.20915053895738],[-126.04591707092638,53.20919042099077],[-126.04562451588383,53.209229191262075],[-126.04533195909413,53.209266831476896],[-126.04503845528474,53.20930335992033],[-126.04474401887438,53.209338202950164],[-126.04444958020753,53.20937136021056],[-126.04415420960609,53.20940340567785],[-126.04385882238061,53.20943432108055],[-126.04356250268289,53.20946356001428],[-126.043266181429,53.20949167783609],[-126.04296985807788,53.2095181188424],[-126.04267353265571,53.20954287407025],[-126.04237627544786,53.209566508519146],[-126.04207994710929,53.209589021521346],[-126.04178267146818,53.209609849078525],[-126.04148633756792,53.20962732341065],[-126.04118811959331,53.209636390394124],[-126.04088801935033,53.20963873505154],[-126.04058886009517,53.209636597143785],[-126.04028780702286,53.209631098012316],[-126.03998769881723,53.209625033130465],[-126.03968666091053,53.209619532466895],[-126.03938655601225,53.20961683613704],[-126.03908738612539,53.20961917592588],[-126.03878916717605,53.20962767220607],[-126.03849190159644,53.20964513935514],[-126.03819369246388,53.20966483784102],[-126.03789453874185,53.20968566521199],[-126.03759352407907,53.20970648345478],[-126.03729156528131,53.209728986267244],[-126.03698960763614,53.20975317334738],[-126.03668858093049,53.209778470777096],[-126.03638757080569,53.20980601714098],[-126.03608842236288,53.209835238247344],[-126.03579116700692,53.209867819138125],[-126.03549671904912,53.209902639182985],[-126.03520414858798,53.20994025438282],[-126.03491626202472,53.20998123755405],[-126.03463119909979,53.21002613601527],[-126.03435176572968,53.2100749489731],[-126.03407703199031,53.21012825036408],[-126.03384358168799,53.21022466911313],[-126.03365332230685,53.21036701032298],[-126.03348276429195,53.21052894764884],[-126.03330374982453,53.210681933093646],[-126.03310128092302,53.21081643422154],[-126.03289225154857,53.210948696074624],[-126.03270009153124,53.21108655474539],[-126.03254734510344,53.21123728204769],[-126.03246682501454,53.2114137668424],[-126.03234033586956,53.21158297723447],[-126.03225133822252,53.2117034367267],[-126.03204697728088,53.211827297464865],[-126.03181633745652,53.21192819284671],[-126.03157444707323,53.2120358129873],[-126.03132317213351,53.212137268596145],[-126.03106062911567,53.21222193004566],[-126.03077648225914,53.21227354115093],[-126.0304895253413,53.21232067081996],[-126.03019975924413,53.21236443940156],[-126.02990810019291,53.21240596701301],[-126.02961550861993,53.212445253400745],[-126.02932103918286,53.21248229879182],[-126.02902656846071,53.212518223081766],[-126.02873209647683,53.212553026270704],[-126.02843762362845,53.21258726406149],[-126.02814314993334,53.21262094541712],[-126.02784962115922,53.21265462581832],[-126.02755420113567,53.21268830593162],[-126.02725879528946,53.212721429601686],[-126.02696337289966,53.2127528675039],[-126.02666701862103,53.212782619844035],[-126.02637160757487,53.212809574792345],[-126.02607430363915,53.21283373297986],[-126.02577794270383,53.212854520147],[-126.02548157911663,53.21287138976429],[-126.02518427923434,53.212878740186596],[-126.02488507988078,53.21287151650557],[-126.02458588944943,53.21285365304586],[-126.02428668137138,53.21283075165653],[-126.02398936344859,53.21280616409445],[-126.02369484921036,53.212776529084906],[-126.02340126205556,53.2127401799102],[-126.02282160554647,53.21266410786056],[-126.02306071167455,53.21254921928801],[-126.02327448125229,53.212425381214935],[-126.02340194205186,53.212260661868065],[-126.02341872364532,53.212079714455534],[-126.02331827338223,53.21191616035142],[-126.02316437543111,53.211757098083716],[-126.02300110243918,53.211602518900584],[-126.02281439677664,53.21145747161577],[-126.02261737025478,53.211315778141916],[-126.022452228533,53.21116736503854],[-126.02236023203405,53.21100324377556],[-126.02233200214518,53.21082455458243],[-126.02230469603604,53.210632976454626],[-126.02230835076156,53.210449790772095],[-126.02229419706802,53.210272219237105],[-126.02222377191617,53.21011986210057],[-126.02203521119357,53.20999665656504],[-126.0218222490569,53.209865612623545],[-126.02158960747792,53.209746331286745],[-126.02138134373632,53.209613609605356],[-126.02117870539207,53.20947527572704],[-126.02097513889848,53.20933862669425],[-126.02076313005152,53.20921038604467],[-126.0205351793231,53.209096703630266],[-126.02028567827536,53.20900487617802],[-126.02001930553028,53.20892930090939],[-126.01974918435546,53.20885764248128],[-126.01947531443894,53.20878934516443],[-126.01919864103587,53.20872440878014],[-126.01891914858719,53.20866171294023],[-126.01863683706105,53.208601257625176],[-126.0183526667276,53.208543042666165],[-126.01806755259571,53.20848650324354],[-126.01778056434797,53.208431648453015],[-126.01749263178381,53.208377357772584],[-126.01720377012245,53.208324177934585],[-126.01691490919119,53.208271006353854],[-126.01662604898284,53.208217825104605],[-126.01633813479432,53.208164651982415],[-126.01605115118525,53.20811034869874],[-126.01576604367632,53.208055488764764],[-126.0154809367037,53.20800007243906],[-126.01519395632033,53.20794857248532],[-126.01490415697356,53.20790043330479],[-126.01461342858742,53.20785396960513],[-126.01432364631329,53.20780806974411],[-126.01403384929198,53.207761048803455],[-126.01374594274625,53.20771178619025],[-126.01346084127177,53.20765804107061],[-126.01317949005251,53.207599257654785],[-126.01290376386176,53.20753262139087],[-126.01263928728515,53.207450862744324],[-126.01238324071457,53.207357343199135],[-126.01213095990336,53.20725877655515],[-126.01165455319754,53.20718319476895],[-125.99989777619953,53.20711206399207],[-125.99333343314163,53.207071543127086],[-125.98666688122763,53.20707154525851],[-125.98000125937045,53.20707172822795],[-125.97333281672287,53.20707153564381],[-125.96666626428775,53.20707152405976],[-125.96000064164235,53.20707170243355],[-125.9533321982084,53.20707150477749],[-125.94666564471406,53.20707149740337],[-125.94000002075359,53.20707167118102],[-125.93333345065636,53.20707202521197],[-125.9266668954953,53.20707201318976],[-125.9200003254099,53.207071617170456],[-125.91333376819823,53.207071975470825],[-125.90666626568789,53.20707194903971],[-125.89999969217004,53.20707211293007],[-125.8933331336638,53.20707190180801],[-125.88666750402996,53.20707188121818],[-125.87999905209685,53.207072038556014],[-125.87333249070109,53.207071822677335],[-125.86666685793995,53.20707178852419],[-125.86000027811575,53.20707194300082],[-125.85333371330611,53.2070717224693],[-125.84666712955865,53.20707224726293],[-125.83999961754854,53.20707184007027],[-125.83333304660844,53.207072170481595],[-125.82666646058244,53.20707213480823],[-125.81999988726558,53.20707227983318],[-125.81333424422013,53.207072051297395],[-125.80666577798375,53.20707199894113],[-125.77073987252979,53.20707797116679],[-125.77197532391953,53.09430355309072],[-125.77293182037958,53.006502661943415],[-125.77336966133988,52.96640688951577],[-125.77160159393753,52.966081882741385],[-125.76699598145957,52.96527056341096],[-125.7626038974968,52.96365439486978],[-125.75832628794033,52.96295376323778],[-125.75252946600547,52.96186153314781],[-125.7458568545473,52.96009256711597],[-125.73928604020765,52.95884113420576],[-125.72859888960917,52.95522230318949],[-125.71955744626558,52.95336119225156],[-125.7094308413976,52.953275580117776],[-125.7003809942764,52.95490234730392],[-125.69228476473846,52.95657180972955],[-125.67951365811419,52.95697028439055],[-125.67173307380335,52.956237877350034],[-125.66471309458612,52.95555081514545],[-125.65948371367644,52.95479849411988],[-125.65560545649839,52.95482924335388],[-125.65087693754175,52.954869109036956],[-125.6459559261833,52.95473843905052],[-125.63952398443256,52.95513970041212],[-125.6329424531932,52.95730556285516],[-125.62739411012019,52.95894822851811],[-125.62183290673867,52.9603110196273],[-125.61464218395466,52.96037063695313],[-125.59716651804813,52.95799712000445],[-125.59072974721823,52.95724825936788],[-125.57849158332402,52.95642407746858],[-125.56585477879025,52.95378297529258],[-125.55989314259148,52.9490287356346],[-125.55425490080779,52.94627055664693],[-125.54749042240756,52.94432075128978],[-125.54160897263553,52.94350912595475],[-125.52835149485975,52.94360468563679],[-125.52382780681069,52.9440924198411],[-125.5200886422695,52.94640857285867],[-125.51096928117627,52.94967672220763],[-125.50185878296139,52.95334144609715],[-125.49563260879756,52.955154347307925],[-125.49005362066482,52.95519588302645],[-125.48305754721001,52.95524326098111],[-125.47273771122458,52.95508994288182],[-125.46591633232566,52.95547830116769],[-125.46053893067841,52.9560835533239],[-125.45417940573387,52.95533036981896],[-125.44972733436616,52.954729201021735],[-125.44186602422886,52.95478633953679],[-125.4368539362112,52.95481739054179],[-125.43278159158693,52.95484379303369],[-125.42758580179702,52.9552237475317],[-125.42283659923383,52.95456296694392],[-125.41848162684097,52.95453370226043],[-125.41306762338131,52.953424930662834],[-125.40927872162231,52.95345529384998],[-125.40588629561762,52.9539318477313],[-125.40238085139127,52.95395388937664],[-125.39688391653968,52.953468675406505],[-125.38876518068363,52.95484098878864],[-125.3814093480903,52.95602737592229],[-125.37848372488459,52.957188023445525],[-125.37605426967112,52.95908855652225],[-125.37314975196082,52.960817313895376],[-125.36861810822751,52.961592637615965],[-125.36320832884253,52.96122286440989],[-125.35610474874613,52.96040657152966],[-125.35306900729455,52.95991369393932],[-125.34765866609035,52.959602591927364],[-125.34348152519081,52.95865042580812],[-125.33959057692635,52.957531627824665],[-125.33411353032609,52.958648267747556],[-125.32975635952994,52.95873281748091],[-125.32399999465319,52.95956389204887],[-125.31797054849125,52.96159548922488],[-125.31532713482056,52.962700736280624],[-125.30967729967396,52.96427075125802],[-125.30560207552601,52.964409285810575],[-125.30088423120043,52.96551989412239],[-125.29785615581878,52.96548171593609],[-125.29464051980753,52.965957804716325],[-125.290785462125,52.96809066019365],[-125.28597918656925,52.969088083556066],[-125.28107684474644,52.97134146109329],[-125.27626097433786,52.97199048650034],[-125.2727671328465,52.97298478598018],[-125.27022439162904,52.97420001874588],[-125.26590972178337,52.976907433499086],[-125.26338765689411,52.97948864088498],[-125.25960637776073,52.980651638121884],[-125.2548736698112,52.9807338692498],[-125.25117698194846,52.98046391231647],[-125.24445125965427,52.98015484474709],[-125.24007246295564,52.97880776726595],[-125.23628385359515,52.9778531928507],[-125.23286903772183,52.977696543577416],[-125.22774294066994,52.97726637664375],[-125.22414247442414,52.97665554050273],[-125.21920077005248,52.975134761895106],[-125.21454299935435,52.9744191279697],[-125.210465413901,52.9730051518427],[-125.20722476894898,52.97153558883904],[-125.20210602816513,52.971560985339224],[-125.19869719545262,52.971119315435374],[-125.19566787347075,52.971128366629046],[-125.18969849989165,52.9711597496466],[-125.1856266400842,52.97106387672671],[-125.18052181622814,52.971142784960826],[-125.17588677048658,52.97161920938709],[-125.16973761782101,52.972446190687656],[-125.16538959381033,52.97349124878647],[-125.16303670671489,52.974757645701914],[-125.1588869001715,52.97632383052148],[-125.15654295091905,52.97787422892332],[-125.15504521686266,52.9803938076787],[-125.15127116443136,52.981039047203076],[-125.14805969363036,52.98190787134177],[-125.14532917683688,52.98409007368732],[-125.1432713566997,52.98621043240077],[-125.13958935602201,52.98817322375354],[-125.13857155384882,52.990516238932436],[-125.13536488504968,52.991100679770646],[-125.12949018901675,52.991469823360234],[-125.12492809991954,52.989715377724806],[-125.12064879434317,52.98802000232843],[-125.1172281246867,52.987404443899756],[-125.11410794544022,52.9874168943633],[-125.10880993105059,52.9880633206477],[-125.10360608349664,52.98848387355935],[-125.10038377054921,52.98838031853997],[-125.0961084016241,52.98725334796999],[-125.0916567436153,52.986702528553565],[-125.0880643374089,52.98785366601076],[-125.08513712509985,52.98860811813181],[-125.07775458660883,52.98966167455163],[-125.07549389754118,52.991331032543144],[-125.07342608511443,52.99304781674742],[-125.06830348002892,52.99312230081466],[-125.06776803203242,52.9957526079493],[-125.06424923879145,52.9948517810227],[-125.06246923967439,52.997030105845596],[-125.05734965812125,52.99761849917016],[-125.05366378305578,52.99751837412395],[-125.05015977590666,52.997298573595],[-125.04607512751272,52.996339974464085],[-125.0409624808398,52.99727566699836],[-125.0366930950386,52.997230220023134],[-125.03500050401108,52.998780183385335],[-125.03102514129593,52.99827580335042],[-125.02781250337044,52.999028180684824],[-125.02459085036449,52.99886709937594],[-125.02088297170208,52.99842342563181],[-125.01869365172314,52.99688398856686],[-125.01241764127728,52.99387764272291],[-125.00862055928286,52.992801357518005],[-125.00434706423326,52.99167610010729],[-124.99865661387707,52.989236494505406],[-124.99257893701493,52.988675945865396],[-124.98833864098121,52.99120866568725],[-124.98693373465574,52.99315208785018],[-124.98485798632444,52.99567132018233],[-124.98232190610256,52.99744972945102],[-124.97966496845825,52.99865553093638],[-124.97368825801261,53.00005093519339],[-124.96901430922664,53.002513626427906],[-124.96788139037535,53.003659639547124],[-124.96636006312917,53.00480783170821],[-124.96372095501721,53.00646952488543],[-124.95824525848545,53.00990247842174],[-124.95492682781403,53.01122234355153],[-124.95228940208024,53.01156986816967],[-124.94943646140408,53.01157026403435],[-124.94650803462272,53.012205307820594],[-124.94574479579018,53.013467593276474],[-124.94499943732549,53.01460956228817],[-124.94367348041342,53.015068910130765],[-124.94263708579636,53.015296639125495],[-124.94073980637341,53.01530202814425],[-124.93875497787502,53.015822083604455],[-124.93714169147245,53.015819884212526],[-124.93505377946128,53.0162778707115],[-124.93364162125945,53.01599896984184],[-124.93277636448235,53.01416845049953],[-124.92897701830996,53.01200258712021],[-124.92529603622091,53.013439361134324],[-124.92415789822667,53.015322837966615],[-124.92349523378786,53.01612476053077],[-124.92322914328437,53.01955031130815],[-124.9234300034588,53.022235471084635],[-124.92334006026053,53.02755197462297],[-124.92241961516234,53.0332049081376],[-124.92241764044647,53.03446052987262],[-124.92045418783712,53.04114942605791],[-124.92198379063144,53.04742870381241],[-124.92702419148776,53.05324739674878],[-124.92827124167287,53.05478329052435],[-124.93415446546075,53.059860730718285],[-124.9456492203256,53.06607056019942],[-124.94783677606802,53.06892570949198],[-124.93740848103266,53.06905534126877],[-124.92678861463602,53.06906801237862],[-124.91853575595319,53.07010490934386],[-124.91124908333823,53.07194520548848],[-124.90755429723498,53.07543478396932],[-124.90680093409767,53.080287795308315],[-124.90606271397185,53.086287284657026],[-124.90568922363413,53.09148331335946],[-124.90503951561352,53.09520097048481],[-124.90334100837315,53.100112385570775],[-124.9036308418915,53.10279603774534],[-124.90734181862005,53.106333299050746],[-124.91039636845058,53.11038656584581],[-124.9067861425173,53.112787102598254],[-124.89938680507679,53.114626773945616],[-124.89559719591094,53.11525369029029],[-124.8875262178015,53.112981157118774],[-124.87877481498971,53.11099351520381],[-124.86757929387596,53.10917736402987],[-124.86007271953358,53.1088385212473],[-124.86454058429365,53.11083524832092],[-124.8725236097867,53.11522809533028],[-124.8799290113676,53.119440654227986],[-124.8840289641409,53.12183708684193],[-124.89258084962685,53.126968966811916],[-124.89629168304481,53.13170774925537],[-124.89468327163381,53.13421957939298],[-124.8925157236679,53.137481969464204],[-124.89194370738174,53.14044943483222],[-124.89184633096235,53.14073538357575],[-124.88977578445393,53.14599207089179],[-124.88701843716228,53.14999117001816],[-124.88294938177653,53.151994463250745],[-124.87913937014463,53.15325602975728],[-124.87173515125122,53.15440426978555],[-124.86317708431672,53.15441257074814],[-124.85196772447291,53.15436487321811],[-124.84180264324112,53.15339851922151],[-124.83619325437711,53.15300508021406],[-124.82735777570129,53.15437906759004],[-124.8143390888975,53.15792703255366],[-124.80606760090072,53.16049960980135],[-124.80216175802401,53.16026965138028],[-124.79836189647875,53.15947587621576],[-124.78629456243232,53.15793411077716],[-124.7805942980648,53.15496596487796],[-124.77375593327353,53.15251128360883],[-124.7584492529547,53.15114145889179],[-124.73013896712095,53.14965266519722],[-124.71988028264903,53.14793632213387],[-124.71342190162939,53.14496169439543],[-124.70003967089372,53.1391328511378],[-124.69386159116807,53.13833023954113],[-124.67808190382415,53.14083209429046],[-124.6664971259412,53.14139125503449],[-124.65111064119226,53.140867189297126],[-124.6094318384434,53.13476802072757],[-124.5774428267003,53.129069612274755],[-124.57003026599885,53.128999826440754],[-124.53088374192195,53.13172287123595],[-124.50626305104254,53.13447671384087],[-124.5006611654642,53.13486250452133],[-124.49580000001427,53.137590693510724],[-124.49120769771986,53.140324913205156],[-124.48099990796803,53.14669416057232],[-124.47852259171118,53.14765579683743],[-124.48251064707168,53.148865224776195],[-124.48457913663964,53.15053238705741],[-124.4866537284305,53.152871984450414],[-124.48920656018225,53.15567767187388],[-124.49221323764323,53.16048104765864],[-124.49530779278008,53.16494028240734],[-124.4996623066729,53.169405306391326],[-124.50116341921468,53.17232118956878],[-124.50142826076532,53.175005121346565],[-124.5013988099957,53.17837732399394],[-124.50138582075658,53.18128465482136],[-124.50185756307765,53.18151643720348],[-124.49945923374763,53.1831675844966],[-124.49783380923554,53.18459035946147],[-124.495148493929,53.187552853008675],[-124.49455985762332,53.190183350473546],[-124.49674509292778,53.19201253000515],[-124.50072949097546,53.19218742102234],[-124.50300593623398,53.193569371579706],[-124.50557228100212,53.19396934412432],[-124.5109049099566,53.193355725107644],[-124.51642042577363,53.19308369954828],[-124.52326825400989,53.1933222401182],[-124.52839782635819,53.19379118029823],[-124.53297048737772,53.19431519979321],[-124.53818715597656,53.19444077072992],[-124.5418104772662,53.19421984348247],[-124.54495440872421,53.193541309530204],[-124.54676962906342,53.19354397830479],[-124.54847007297985,53.193830978809046],[-124.54979539805919,53.19412007737971],[-124.55045613694259,53.194977590713826],[-124.55035259783082,53.19668525978636],[-124.5503518093289,53.19845918020279],[-124.55033149523949,53.200802695195065],[-124.55032438076033,53.20188567374101],[-124.54946121238105,53.20473938703146],[-124.54676831967375,53.2093014473952],[-124.54254198491482,53.213917424271166],[-124.53939321906631,53.21642860125682],[-124.53852714641776,53.217165368195396],[-124.53425229123648,53.21750366886967],[-124.52797120475071,53.217257167496],[-124.5252100172607,53.21594198408084],[-124.52102731130255,53.21536261786873],[-124.51646462461916,53.21534872970101],[-124.51482734814985,53.21666287371736],[-124.51435088282928,53.21740659208443],[-124.5131009058199,53.219228721554764],[-124.51138449976665,53.22065108994491],[-124.50793842979073,53.22258564092527],[-124.50611949832286,53.224351227418964],[-124.50361931123089,53.22754312621807],[-124.50246895453388,53.22822730526553],[-124.50017992047043,53.23010956455229],[-124.49825818196032,53.23221439624868],[-124.4948191107323,53.23306559749155],[-124.49090979139136,53.233624395507746],[-124.4879443600301,53.235500618790034],[-124.48728161480771,53.23681392112977],[-124.48639917715064,53.238808551925594],[-124.48277020934442,53.24074341334377],[-124.47876297624687,53.24107700968854],[-124.4755244692737,53.24174980690137],[-124.47418114132796,53.243178683978634],[-124.46930107858518,53.24562148435735],[-124.46786502935365,53.24669833440598],[-124.4664244740145,53.24789726469086],[-124.46367934208436,53.24737594845001],[-124.46081626130838,53.24679532991184],[-124.45805913602844,53.247017822783334],[-124.45603885849634,53.24804043546324],[-124.45508747636163,53.24940864368327],[-124.45430961325158,53.250549379662814],[-124.45314823823163,53.25231545003925],[-124.45161778834361,53.25431034386222],[-124.4506520729367,53.254423243134056],[-124.44852863937716,53.25823918928654],[-124.44544591525477,53.26320236041727],[-124.44185915509539,53.26958592839332],[-124.44164015431676,53.27266863629287],[-124.44848014402835,53.274691294689084],[-124.46142417053193,53.27712116743051],[-124.47219077688689,53.27869292726364],[-124.48132894359838,53.279165982154055],[-124.49381305104434,53.27982652045864],[-124.50362369845814,53.28127344368726],[-124.50321440767279,53.284760004180484],[-124.49793574600055,53.29028837211711],[-124.48969757683582,53.295688135517366],[-124.48222411405953,53.299840950496765],[-124.4777046064073,53.304628470392004],[-124.4771961013055,53.30788057903149],[-124.47718815009794,53.309767520205845],[-124.47810497085268,53.314794940074655],[-124.48100597849039,53.322393641896326],[-124.481650079955,53.324566244523176],[-124.48406869432254,53.33222140480224],[-124.48791009235252,53.342625918494484],[-124.49015218099011,53.34896421443746],[-124.49251320882105,53.351997229324965],[-124.49697263693147,53.35532117714603],[-124.50077253373969,53.357728996461525],[-124.50096303069071,53.358301195056605],[-124.50095937303274,53.35967380526541],[-124.50092381684013,53.36321256057797],[-124.50224189536443,53.36681207170925],[-124.5037534066177,53.369213896785965],[-124.50716308505571,53.37247545429085],[-124.51181236798871,53.37734242671581],[-124.51427111186045,53.38025737481735],[-124.51815668583113,53.38460413209768],[-124.5216462058739,53.391238391532674],[-124.5201854139356,53.395060227950204],[-124.5188248238958,53.39859755992952],[-124.52062190935517,53.40151249955463],[-124.52421483942885,53.40825882172928],[-124.52484663028166,53.41174356236266],[-124.52612886283802,53.41991160761801],[-124.52702383647365,53.43053597200369],[-124.52736120962116,53.437273710842916],[-124.52712611113238,53.44355447431677],[-124.52711323910003,53.44435265364446],[-124.52708976061503,53.447607358468474],[-124.5270466444709,53.453145347954845],[-124.52702226987103,53.45685606162984],[-124.52727432318764,53.46388005727471],[-124.52780603174335,53.46982119275792],[-124.52778231798126,53.471359857145785],[-124.52547820595437,53.47375720018525],[-124.52038408037198,53.47602916076972],[-124.51691558039131,53.4780174868439],[-124.5166203553985,53.48081722210906],[-124.51765236063024,53.482819997322025],[-124.51917894630975,53.48408043193895],[-124.52547247771415,53.488550039656936],[-124.52966970953412,53.48992453751871],[-124.5335053178975,53.49084570146478],[-124.53503030468855,53.491307580577526],[-124.53979519670773,53.493320060927545],[-124.54256244442728,53.49543400624018],[-124.54321763839415,53.49789018772789],[-124.54319809089199,53.500631128159895],[-124.54461808405956,53.50326300965193],[-124.54500444503373,53.50388901168541],[-124.54901489368649,53.50635687292999],[-124.5534986476963,53.50870091257989],[-124.55750616780014,53.51128160017634],[-124.56207347809118,53.51562796910614],[-124.56406911866588,53.518717490723645],[-124.5640622660998,53.5198014293617],[-124.56386463909544,53.52248360185418],[-124.56653082679698,53.524548652329926],[-124.56978911638555,53.52477764037549],[-124.57706293263914,53.525649394098906],[-124.58050971255581,53.52656827281301],[-124.58155367339103,53.52834029467752],[-124.58164140526942,53.52977099272833],[-124.58173541840833,53.53056872752587],[-124.58198143909985,53.53268587902582],[-124.58417608190678,53.533083339213384],[-124.58619289964558,53.53337332549038],[-124.5895498244767,53.533840459718355],[-124.59051009943545,53.53406859203377],[-124.59366304265774,53.53475840499112],[-124.5964339820154,53.53556744588502],[-124.6002638066872,53.53592217928371],[-124.6038275525592,53.53563897152947],[-124.60757435965279,53.53485136745334],[-124.61083138258934,53.534234975951264],[-124.61418888673568,53.53423645130758],[-124.61791691187871,53.53538604587047],[-124.62030839497851,53.536250637234254],[-124.62089463622186,53.53682097085584],[-124.62250760810208,53.538367257642314],[-124.62527565294315,53.539288181465224],[-124.62824090250322,53.54112051306923],[-124.62927796250213,53.5431760248393],[-124.63147772552554,53.544837024881616],[-124.63358076499321,53.54575741401875],[-124.63683981879103,53.54741921641576],[-124.63932711630632,53.54816126010122],[-124.64584250096098,53.549259885497],[-124.64927865582489,53.551553002612565],[-124.65023137103249,53.55297825326828],[-124.6515520424904,53.555667525603525],[-124.65441103827011,53.55852424043788],[-124.65756837550296,53.56058315806166],[-124.66168769293527,53.56191051602847],[-124.66830643679342,53.5631748435977],[-124.67060509559903,53.56466196753268],[-124.67031575196111,53.56471812888415],[-124.6721222814684,53.565978466917144],[-124.67817072201642,53.56615866543717],[-124.67913284377887,53.56684656158399],[-124.68229875747784,53.566283226303035],[-124.68566675379274,53.565547252497375],[-124.68844884252123,53.565152071761396],[-124.69152026459012,53.564698374264474],[-124.69737882584023,53.56465313489377],[-124.70312795022919,53.56472013380015],[-124.7091816185231,53.56472740494453],[-124.71589830382527,53.56433535862885],[-124.72080898264106,53.56211928370674],[-124.72657411245754,53.55915699430111],[-124.73099955578688,53.55893518081568],[-124.73635972557211,53.55882728445286],[-124.74029766634405,53.55820729087724],[-124.74500376954657,53.558208064316275],[-124.75018524124883,53.55901356739812],[-124.75689003507635,53.55999714026601],[-124.76486315318688,53.561088121632906],[-124.78433121103377,53.562418719667974],[-124.80410769744995,53.56305740672589],[-124.81974233316943,53.56192946986956],[-124.84058454551715,53.55577615714168],[-124.87023669290441,53.55538236715284],[-124.88165828890735,53.55886532803123],[-124.93971238258075,53.55913959456831],[-124.94259406143655,53.56667675992944],[-124.94720775630162,53.57460438566401],[-124.94960408514449,53.57985611962933],[-124.95066142240461,53.582370942336745],[-124.95210983719815,53.58499447765966],[-124.95363789531697,53.58807408961946],[-124.95411929098083,53.590020324333906],[-124.9513610985988,53.5938880516961],[-124.95284153129965,53.59388533719959],[-124.95565660730935,53.593880821034794],[-124.9555929294892,53.59400517239895],[-124.95549786570031,53.59417350541547],[-124.95544461366754,53.59425930236987],[-124.95528960516731,53.59447808918843],[-124.95518698248458,53.594645791302014],[-124.95501769545422,53.59498151835072],[-124.95498750283947,53.59505351745216],[-124.95490803699194,53.59520349704904],[-124.95489779108384,53.5952347755112],[-124.95488607797206,53.59532486059483],[-124.95487790527218,53.59550067391979],[-124.95489400157199,53.59584193678736],[-124.95489544718508,53.59585987397259],[-124.95493341246262,53.596007527575054],[-124.95497048406648,53.596191013489126],[-124.95499318230648,53.596343570470225],[-124.95501210249026,53.596419915094025],[-124.95502736285952,53.59649119094268],[-124.9550305895415,53.59651362481674],[-124.95504082842925,53.596558525632155],[-124.95504594788133,53.596580976039185],[-124.95505095557576,53.596607906606714],[-124.95507120994036,53.59670666855016],[-124.95507645526952,53.59672407429361],[-124.95522879177875,53.59706821181769],[-124.9552944947706,53.59724242965291],[-124.95536487110968,53.59745701846263],[-124.95577206159038,53.599045774523375],[-124.95578798050617,53.599090724793946],[-124.95587006866268,53.59929141626239],[-124.9558734998078,53.599381624493894],[-124.95586834830914,53.59958827617778],[-124.95586197418956,53.59976802142816],[-124.95586907353253,53.59993893096207],[-124.95583598671178,53.599975046881916],[-124.95580277406893,53.60001620744665],[-124.95561512578318,53.60017645473824],[-124.95542256555781,53.60030584660039],[-124.95522077707462,53.6004256306827],[-124.95497585498677,53.60052879804261],[-124.95471679445433,53.600591511207],[-124.95469963210523,53.60059640700497],[-124.95414072195501,53.600762925470555],[-124.95383966425656,53.60083926865351],[-124.95352933636228,53.60090769698217],[-124.953508388063,53.600912550532165],[-124.95321088988166,53.60099789450713],[-124.95288639912619,53.601102601965295],[-124.95283659407202,53.601125691971035],[-124.95261562637991,53.601254830725445],[-124.9525982396616,53.60126867755977],[-124.95257695472895,53.6012869803554],[-124.95256123687048,53.60130980405647],[-124.95246146193801,53.601513942184404],[-124.95245332974878,53.601536276630036],[-124.95244005280041,53.601612904210995],[-124.95243569265578,53.60163582734335],[-124.95242945341526,53.6016581783616],[-124.95242700014241,53.60168056253026],[-124.95242263975949,53.60170349462169],[-124.95241806937416,53.60173482251154],[-124.95238114001681,53.60192438253304],[-124.95235758733428,53.602109022878075],[-124.95235264228768,53.60230671387609],[-124.95231582420146,53.6024917936843],[-124.95229371564673,53.60269437113672],[-124.95227338784312,53.60290144529186],[-124.9522663250976,53.60310807993397],[-124.9522613656044,53.60330632638251],[-124.9522171981299,53.6034823794791],[-124.95210494948196,53.603655040056104],[-124.95195527255663,53.603810012784116],[-124.95181294285013,53.60397400298294],[-124.95164832931275,53.60412043787455],[-124.95146486771316,53.60426334651842],[-124.95145127948264,53.60427667081198],[-124.9512630206022,53.604459867238646],[-124.9510973933654,53.60464662262114],[-124.95095528167886,53.60480166041875],[-124.9507879691474,53.60497999400237],[-124.95062334807245,53.60512642742162],[-124.9504091390606,53.60528698927957],[-124.95002204266409,53.605621362195784],[-124.94984135833315,53.60580405823759],[-124.94983154127685,53.605817980068565],[-124.94957336903462,53.60614563210811],[-124.94937095954135,53.60628837121172],[-124.94935936141826,53.60629779624018],[-124.94916965493901,53.60646248754811],[-124.9490045726318,53.60662683919375],[-124.94884258656595,53.60681866917585],[-124.94864875181719,53.60699676676349],[-124.94863124870089,53.60701510208308],[-124.94849043666657,53.607193109644015],[-124.94835008764638,53.607352631992256],[-124.94821485446109,53.607534613720446],[-124.9480757212701,53.607721033166335],[-124.94804450066032,53.60775772795324],[-124.94802689859763,53.607779978814854],[-124.94801128814369,53.60779833068272],[-124.94798988556444,53.60782110378436],[-124.94797238181516,53.607839439001204],[-124.94792377001389,53.60788997987551],[-124.94777539289369,53.608067364405954],[-124.94776356899719,53.608085740576975],[-124.94775543302646,53.608108074641144],[-124.94772983642565,53.608297741570965],[-124.94772520676395,53.608481982505175],[-124.94772464387067,53.60850438316239],[-124.94772597427156,53.60852680046941],[-124.9477291979696,53.608549234425666],[-124.94773052837432,53.60857165173202],[-124.94774820250038,53.60869727855099],[-124.9477722116458,53.60887225339613],[-124.94778089018187,53.608903697556336],[-124.94787990070853,53.609108459144835],[-124.94800041414615,53.60928652295433],[-124.94811157446205,53.609460023281],[-124.94820768729056,53.609629474722134],[-124.94830726421976,53.6098118352474],[-124.9484064905357,53.6100081915995],[-124.94852489043626,53.610195198432024],[-124.94853782049047,53.610208199742154],[-124.9486869936601,53.6103764320385],[-124.94877932437232,53.61054584072554],[-124.94878845389337,53.61055936427643],[-124.94891322593494,53.61071898427466],[-124.94900756416756,53.61088392926408],[-124.94902405649682,53.61090592403306],[-124.94919752532351,53.611087247708284],[-124.94935394071442,53.61126898599949],[-124.94948962799468,53.61144662560232],[-124.94954732358956,53.611562520768985],[-124.94955634118928,53.61158052438275],[-124.94956535879675,53.611598527995746],[-124.94957415163357,53.61162549186243],[-124.94965970157952,53.611763472409976],[-124.94966884558539,53.6117764403509],[-124.94968521230085,53.61180347068336],[-124.9496905696596,53.611816396424565],[-124.94969212597248,53.611829853424275],[-124.9497810139301,53.611985796577564],[-124.94984660530133,53.61216449643081],[-124.9498970355549,53.61234361884805],[-124.94993564181388,53.61254112654185],[-124.94993090880942,53.61272985631752],[-124.94985629918006,53.612910686621206],[-124.9497725445783,53.61307854893962],[-124.94960443826947,53.613211506848444],[-124.94937391510395,53.61334112035151],[-124.94911420470108,53.61342622166376],[-124.94907585646374,53.61344492962655],[-124.94904888347175,53.613463172854814],[-124.94885746055449,53.61361945079088],[-124.94869347369887,53.613739000285655],[-124.94846017036649,53.6138282576307],[-124.94816780079223,53.613931550041855],[-124.94811796369585,53.61395520245359],[-124.94789668859939,53.61409329203527],[-124.94786769436534,53.61411656296155],[-124.94770848262893,53.614272001989875],[-124.94769099024717,53.61428977262047],[-124.94758259370073,53.614457981347606],[-124.947430390754,53.61463588719031],[-124.94728766860106,53.61481331161483],[-124.94710491223054,53.615001030773605],[-124.94699163340121,53.615137272573556],[-124.94697401370492,53.6151600787458],[-124.94695450016867,53.61518287721354],[-124.94694267390263,53.61520125324826],[-124.94692884112186,53.61522410169772],[-124.9469189224037,53.615241938857515],[-124.94685132839818,53.61536905567195],[-124.94668976368233,53.61554239706912],[-124.94667615629605,53.61555627629158],[-124.94656195881235,53.61572891412245],[-124.94646526794861,53.615883225860465],[-124.94633980566246,53.616051838855505],[-124.94620989249503,53.61624674351791],[-124.94609936573377,53.616423894319766],[-124.9459471493387,53.61660179812927],[-124.94582513150827,53.616783893192306],[-124.94572597796785,53.61696057919328],[-124.94560005793372,53.617147120749905],[-124.94548718115647,53.61734217468726],[-124.94536127313066,53.61752815146865],[-124.94534933264573,53.61755100744012],[-124.94521664795982,53.61793073219275],[-124.94521252190329,53.617944139147774],[-124.94517755200636,53.61812924118791],[-124.94511215513731,53.61831911179441],[-124.9451079161239,53.6183369988541],[-124.94508754518647,53.61854407042203],[-124.94509399130116,53.618588938287616],[-124.94517841192413,53.61877172273105],[-124.9452456623026,53.61895940150486],[-124.94527127206517,53.61899547602235],[-124.94543930230768,53.61916780320503],[-124.94556397462155,53.619331897266264],[-124.94557878636918,53.61934547106357],[-124.94576944617131,53.619521913574424],[-124.94578984060188,53.619539461961715],[-124.9459984487258,53.61968021334688],[-124.94611341595385,53.61985374812563],[-124.94636788839011,53.6202043941231],[-124.94644339821185,53.62036525814898],[-124.94647878582612,53.62053976792119],[-124.94650257097284,53.62072370236468],[-124.94651702254693,53.62082689485036],[-124.94652024654428,53.620849328723345],[-124.94652536439759,53.62087177926466],[-124.94652646906883,53.62090315668226],[-124.94652613084791,53.620916597003095],[-124.94651960040528,53.62110082920495],[-124.94654327331057,53.62128924370329],[-124.94656283701434,53.62171624047849],[-124.94658784067948,53.621927072113095],[-124.94662812281227,53.62213299246337],[-124.9466699468701,53.62235293425513],[-124.94667328379543,53.622370888005385],[-124.94674268000654,53.62254906658062],[-124.94674991755815,53.62256257355358],[-124.94686065710485,53.62275399448989],[-124.94692647828738,53.62292373492912],[-124.94693182201695,53.62293722522671],[-124.94702061080824,53.623097640846424],[-124.94704261851847,53.623277078222024],[-124.94704606836841,53.623290551851866],[-124.94709983701398,53.62348763730337],[-124.94718738817019,53.623697333888],[-124.94723793338538,53.62387198541751],[-124.94724623377068,53.62406922650186],[-124.94724957107996,53.62408718022313],[-124.94730345459837,53.62427977645603],[-124.94734051757106,53.62446327150651],[-124.94736385809031,53.62466512587994],[-124.94736897686255,53.62468757634938],[-124.9474381405994,53.624875270082164],[-124.94750597414715,53.62504054660668],[-124.94755830394661,53.62521968569568],[-124.94759692501303,53.62541663754558],[-124.94765225537823,53.6256271705629],[-124.94772487221519,53.62582833765446],[-124.94781053708587,53.62603802588897],[-124.94787781093854,53.62622570261369],[-124.94794731730734,53.626399955638014],[-124.94801592348576,53.626610049391125],[-124.94806970118655,53.626807125173734],[-124.94810532597658,53.626972682761675],[-124.94811539865405,53.627174975802916],[-124.94811873658372,53.62719292947663],[-124.94817063532945,53.62738943299065],[-124.94817937694732,53.6275693178289],[-124.94818616550799,53.62760074507067],[-124.94826872364197,53.62778351000374],[-124.94833755883221,53.62798464326071],[-124.948439941181,53.628207920900024],[-124.94850755898825,53.628382156816805],[-124.9485147981179,53.62839566365004],[-124.94862377950129,53.628582585757904],[-124.94867457585079,53.6287477116446],[-124.94867802667689,53.62876118519669],[-124.9487621317201,53.62895797110933],[-124.94877306112744,53.62897542679243],[-124.94890288168797,53.629162531563],[-124.94904666615189,53.62932175199541],[-124.94915542735747,53.62951763373365],[-124.94927199153594,53.62970462167188],[-124.94940561905649,53.629891203559254],[-124.94941664726167,53.62990474357573],[-124.94959197835972,53.63009056195241],[-124.94960859099896,53.6301080763714],[-124.9498130264251,53.630266707617345],[-124.95002349759554,53.63041138357474],[-124.95026808141384,53.63055580259609],[-124.95063503570442,53.6308827773528],[-124.9506517614202,53.63089581152909],[-124.95087159792244,53.631045049065904],[-124.95110471016471,53.631193846832346],[-124.95132063479143,53.63134809491714],[-124.95134482597018,53.631365675456806],[-124.95158418582622,53.631492121588366],[-124.95179489369127,53.63162783417481],[-124.95203759638201,53.63177223292316],[-124.95221596268132,53.63191327193925],[-124.95224763395785,53.63193483420645],[-124.95249635947089,53.632065841466186],[-124.95258984420857,53.632115951145124],[-124.95268726776749,53.63458306794128],[-124.95062192535008,53.634579547908956],[-124.94802674411943,53.634622314937],[-124.94802188530582,53.63466484243319],[-124.94789436587234,53.63483791917383],[-124.94772112386781,53.63502068532694],[-124.94762371696588,53.63520186828732],[-124.9474945248662,53.63536597671055],[-124.94708593507563,53.63571414850118],[-124.94685149132789,53.635843713648434],[-124.9466298565754,53.63599132427477],[-124.94660948457505,53.6361983945784],[-124.94646702377308,53.63636237619372],[-124.94621550922982,53.63649235452408],[-124.94591583470097,53.63657821794323],[-124.9455576249232,53.63665572328884],[-124.94527357010624,53.63672324272929],[-124.94498784592184,53.63678177568923],[-124.9446433466494,53.636841474839954],[-124.94428178096001,53.63690158715201],[-124.94393851015592,53.63698761693587],[-124.94362388267187,53.637064945265216],[-124.9432803686578,53.637160497793836],[-124.94302807641601,53.63724565193248],[-124.9427437873615,53.63732211654151],[-124.94240049567998,53.637408706390644],[-124.94214776118012,53.63751122342548],[-124.9419583236552,53.63765854535297],[-124.94173690290536,53.637796622180566],[-124.94157757830949,53.63795205151764],[-124.94140308143277,53.63810790216532],[-124.94119870820342,53.638246128717455],[-124.94100616905332,53.63836597964346],[-124.94071223444345,53.638523578100525],[-124.94047540682588,53.638671034126155],[-124.94022408672485,53.63879203961184],[-124.94001947928919,53.63893922424717],[-124.9398603709703,53.63908569109207],[-124.93968540865605,53.63925946838993],[-124.93958818416293,53.639431684362734],[-124.93956633508846,53.639620816132094],[-124.93955987054512,53.63980112198338],[-124.93967429872515,53.63999706181776],[-124.93984962861938,53.64018290264234],[-124.93998089910801,53.64038738875983],[-124.94007993166042,53.64059271859774],[-124.94008848533115,53.640778758648324],[-124.93999370534183,53.6407795956352],[-124.93942136277846,53.640779573708464],[-124.93858938282605,53.64077947960612],[-124.92878372853977,53.640779546673805],[-124.92525111846375,53.64077926154913],[-124.92524974383649,53.647989864797346],[-124.9252491644384,53.64808620258322],[-124.92949715126447,53.64719161947508],[-124.9296999631019,53.647191756124506],[-124.95185900110536,53.6472258440526],[-124.95234421746856,53.647226728557776],[-124.95223464286045,53.6472879490107],[-124.95210642754141,53.647412296551565],[-124.95192962840899,53.64758439005551],[-124.95179086956446,53.647751214918635],[-124.95162884954637,53.64793855636351],[-124.9515861754183,53.64797739196339],[-124.951532242989,53.64801164795086],[-124.95151880898985,53.64801825191705],[-124.95138449683827,53.64808317147987],[-124.95132892169335,53.64810733064548],[-124.95105929934758,53.64820131210752],[-124.9510420889584,53.64820732729867],[-124.95086438489712,53.64826402442787],[-124.95079189380107,53.64828243386742],[-124.95049283271494,53.64834086347573],[-124.95041483856149,53.64835194725222],[-124.95029325732749,53.648362640021396],[-124.95027802244326,53.64851654688759],[-124.95025621694865,53.64870567989747],[-124.95023169105126,53.6487765970342],[-124.95016837720016,53.648882466893426],[-124.95022270141126,53.648983766519336],[-124.95024035986671,53.64903545328782],[-124.95026040342348,53.649143173997494],[-124.95026364554971,53.64916505197916],[-124.95027731165042,53.64945139388889],[-124.95030380145162,53.649453310915426],[-124.95035377622764,53.64950135547067],[-124.95050755020081,53.649492064957144],[-124.94183916794356,53.65331206843236],[-124.94185952076147,53.65333184830493],[-124.94194571420701,53.65374655049455],[-124.94204871028684,53.654246531765004],[-124.94859122423247,53.65823736025953],[-124.95657174485076,53.662400542150905],[-124.95985883989863,53.665025867381836],[-124.96351062727805,53.669480256742425],[-124.96755115771732,53.67358499223719],[-124.9731370985146,53.67843770676878],[-124.97941036232008,53.68254263802803],[-124.98201414210699,53.68842081244411],[-124.97585291984956,53.692704773367595],[-124.97103593476257,53.69413608703554],[-124.96141462895167,53.695227146011334],[-124.95303446442645,53.69523492647517],[-124.94244894146563,53.69660338448636],[-124.93186363678478,53.699123089689465],[-124.92733607690587,53.702202553903795],[-124.9303150549783,53.70683110949531],[-124.93523318304008,53.71048203477714],[-124.9420745503183,53.71139114921905],[-124.94447406127895,53.71139267846662],[-124.9501540455581,53.71139099267262],[-124.95488377367263,53.71355625180816],[-124.96086280465656,53.71680756500698],[-124.97010474467122,53.71960044286691],[-124.97540293041517,53.720964871642785],[-124.98464960188936,53.723015063510516],[-124.99390680485314,53.724034577799586],[-124.99968777795682,53.723691398027256],[-125.00622726161737,53.72402634468566],[-125.01172399607482,53.72670200109424],[-125.01463308006318,53.72960991079799],[-125.01020274351501,53.731273368619235],[-125.00616054530724,53.73321265514595],[-125.0077868766339,53.73447066419359],[-125.01097250665835,53.73726275094062],[-125.01223710178549,53.73840737831336],[-125.01840533693294,53.73782897720539],[-125.02630766022897,53.7378205254687],[-125.0338221126363,53.73946857174164],[-125.03681217614181,53.74094774174127],[-125.03990296596794,53.743342842924754],[-125.04173518496701,53.745624206858906],[-125.04502766649344,53.74853214118793],[-125.05255581979131,53.75103212726688],[-125.05871960771539,53.752054606150175],[-125.06374610930479,53.75296317072558],[-125.06586937499345,53.75318582167206],[-125.0752136820949,53.75340377343813],[-125.08601554414037,53.755097301344804],[-125.09220995352138,53.75896858892639],[-125.09393612778891,53.75999426753561],[-125.10080729794372,53.76569160456471],[-125.10758310297281,53.770246922054696],[-125.11462658158379,53.77229294460854],[-125.12215834674731,53.77501869813811],[-125.12382513856656,53.78038526338737],[-125.11564651725021,53.78587689383405],[-125.10813843466765,53.78766184245194],[-125.10196820471977,53.78875958579002],[-125.09203428941468,53.78939793120062],[-125.0822954356969,53.791528458011996],[-125.07940466068419,53.79358538657275],[-125.07535701842396,53.79701732629353],[-125.07257571656766,53.80096129710963],[-125.07161046893692,53.80193342917381],[-125.06690394844907,53.807535359271526],[-125.06383379664129,53.8141053446726],[-125.06189949487806,53.81684755963339],[-125.05671367542365,53.82062003524564],[-125.04571080640622,53.82634520891094],[-125.03809312520424,53.82846942197743],[-125.0295934132973,53.831156765429164],[-125.0269913595516,53.832360089412575],[-125.02294872176242,53.836530740820045],[-125.02188397980315,53.84035697402235],[-125.02285592182635,53.841784115688796],[-125.02586414412715,53.84669183843491],[-125.02509702479702,53.85017212545474],[-125.02480798125262,53.85080267321574],[-125.02761845097403,53.855080320047826],[-125.03139913783984,53.85633121268307],[-125.03864278753815,53.85678188638458],[-125.04888723670364,53.85796996847287],[-125.05662631482255,53.85944393280044],[-125.06232889773321,53.86000654554802],[-125.06860950473701,53.86062657128501],[-125.06976666385397,53.86067864765346],[-125.07460584237712,53.86170110159086],[-125.07654668909976,53.863528393568174],[-125.07840030591973,53.86723738461829],[-125.08082209913725,53.87008480206127],[-125.08565780346957,53.87202081219643],[-125.08759677190153,53.87258718053512],[-125.09377789131796,53.87297829692731],[-125.10306325109225,53.87364707992653],[-125.11061189383146,53.8756935341499],[-125.1160530430635,53.8786509616718],[-125.11886316881571,53.88275441349222],[-125.1157836416196,53.88630449413138],[-125.11009932885283,53.88967790231684],[-125.10323944843203,53.893059103666054],[-125.09888845121864,53.89535202318198],[-125.0949395688792,53.896669374367264],[-125.08874155179163,53.89828045001463],[-125.08313695393325,53.89993941085678],[-125.07589542149177,53.90109552148992],[-125.06882532409449,53.90139058078123],[-125.05847656856761,53.90094444812111],[-125.05015438353549,53.90061423591676],[-125.04714894264741,53.90061627348831],[-125.03380497157525,53.90171921118601],[-125.02211141829521,53.90332470905698],[-125.01997864441842,53.90383664604827],[-125.01543254945078,53.90510343576822],[-125.00721567841045,53.90545104881966],[-125.00130093476854,53.904597356773124],[-124.99628240228067,53.90328542405923],[-124.99308376026332,53.90180591454423],[-124.98310651150712,53.89742077107672],[-124.97420720201009,53.8939428862147],[-124.97024349816314,53.89200481510356],[-124.96066770941593,53.887611108209676],[-124.94316549516694,53.885561843347546],[-124.93020213078196,53.88379573933625],[-124.92942444298983,53.883793310966645],[-124.92924211972732,53.88139732832095],[-124.9278782188781,53.87751669773456],[-124.92460180970491,53.8727261954925],[-124.92015045249352,53.86918357954221],[-124.91213354974207,53.86678201720438],[-124.90632257051246,53.8668990796265],[-124.90333104061312,53.869354187924706],[-124.90352565825351,53.87238212574236],[-124.90420209581484,53.8750632649328],[-124.90468231867793,53.87882973811167],[-124.90487197543426,53.88436848082361],[-124.90225249693273,53.88596664891971],[-124.89596637634895,53.88779389993539],[-124.89431775073669,53.88842231562881],[-124.88579790365722,53.89161697290054],[-124.87990053928223,53.89480855930639],[-124.87408736539194,53.89823757020715],[-124.87303299969584,53.89886452920335],[-124.87331272399344,53.90149059325336],[-124.87388839861322,53.90445771180442],[-124.87387549418929,53.906624004275145],[-124.87301468840394,53.906857359963716],[-124.86903957271282,53.907707302295144],[-124.86575639469396,53.90947656906277],[-124.86507127265918,53.91221397800974],[-124.86757033968536,53.91627009494933],[-124.86873401084307,53.91781453181742],[-124.87007991240091,53.92164188957561],[-124.87434380368184,53.924267114836155],[-124.87781297946422,53.92637959531956],[-124.87917401242119,53.92968720711709],[-124.8787765271295,53.93197032651234],[-124.87809701727316,53.93225636935802],[-124.87790271243378,53.9337975789574],[-124.8783862592863,53.935681150040125],[-124.88050355837947,53.938137722030994],[-124.88156754010554,53.94002218096851],[-124.88369765482281,53.94144882923982],[-124.88438159874951,53.94213900732728],[-124.88651051828839,53.94247848588184],[-124.89221612274949,53.943848872179835],[-124.89385962255542,53.94579061550808],[-124.89560406748483,53.947388251301874],[-124.89657253946078,53.94772812181649],[-124.8992822088713,53.948645068551116],[-124.9014193139119,53.94984686868407],[-124.90345270544955,53.95093174705913],[-124.90538832102293,53.951673493376674],[-124.90819505368576,53.95298261077848],[-124.91071273268068,53.95367073158992],[-124.91371161433811,53.95406965399516],[-124.91613647082931,53.95480835096111],[-124.91942604886498,53.95578213354765],[-124.9239715283713,53.95663821358261],[-124.92533622265327,53.9570329069846],[-124.93105495422193,53.95920579715226],[-124.93366791604655,53.960971847039154],[-124.93366593879128,53.9634282895101],[-124.93269755959719,53.96662500371296],[-124.93307952663996,53.966626695870566],[-124.93453333786337,53.96713744190421],[-124.93830523889432,53.96902393373121],[-124.94228427039833,53.972390700954605],[-124.94441239164328,53.97524381259844],[-124.94634938560323,53.977810145711956],[-124.94945811758862,53.97878150211349],[-124.95323525797106,53.97992267631975],[-124.95614556943615,53.98089493268752],[-124.96022322336516,53.9840888626934],[-124.96166842431477,53.99047926874498],[-124.97146943750339,53.99846835905917],[-124.95799152009474,54.07295805024351],[-124.95604527725651,54.07541444344953],[-124.95185320477677,54.08002883845821],[-124.94900900885396,54.08402754864303],[-124.94413152126275,54.08961244705502],[-124.94236567186218,54.093942987481185],[-124.93909442228025,54.10615470569125],[-124.94041259673256,54.11335271683854],[-124.94137653401529,54.11523392560684],[-124.9439734019685,54.12043585306722],[-124.95036759378617,54.125930522455455],[-124.95580566268993,54.12986641212972],[-124.95899289619523,54.132447603827416],[-124.9658711550097,54.14021258465142],[-124.97342314367485,54.147525856311916],[-124.98429745002193,54.15342385388989],[-124.99206843636611,54.15765532190167],[-124.99428913317827,54.161652206935024],[-124.99418755304251,54.164563514425566],[-124.99513985530642,54.16833479738912],[-124.99551861332417,54.17107086965558],[-124.99938857982912,54.17866545057145],[-125.00422287328418,54.189009676591084],[-125.00704202877971,54.190600840669816],[-125.00947063777801,54.19054900266482],[-125.01872120265435,54.18981771497983],[-125.03041087308863,54.188567615164445],[-125.03188093654322,54.18811341332667],[-125.0419066135186,54.187037093888954],[-125.05993482258116,54.186640464691266],[-125.06732359917376,54.186643713194826],[-125.07453830776898,54.18755913183133],[-125.08154231809638,54.189673198279365],[-125.08776345044149,54.191789932690874],[-125.09721412914007,54.19590165246127],[-125.10411629646207,54.20070169268121],[-125.10596601705933,54.20469364927564],[-125.10295505793758,54.20817486988652],[-125.09992146429974,54.209147000116715],[-125.0902679502251,54.211996080186246],[-125.07925867790539,54.21285392520435],[-125.06747835225153,54.21107951174348],[-125.06299012908589,54.21108080252553],[-125.05811804166737,54.21375806185772],[-125.05197354037878,54.218262051699774],[-125.04455609348831,54.21991533319338],[-125.03988323316283,54.220541542614],[-125.02828102997935,54.221623069287425],[-125.02397127732499,54.225728159634194],[-125.02347571630779,54.229774216405104],[-125.01967063822268,54.23200155744868],[-125.01419906297343,54.23251282037339],[-125.00737686443209,54.23290528734645],[-124.99704829828623,54.2339225794212],[-124.98971680864571,54.2368814610578],[-124.98434333865767,54.23898713851786],[-124.98092719334171,54.24029362365005],[-124.9767214701285,54.243035979001846],[-124.9667821839694,54.24250386311937],[-124.95664387207268,54.2425516465022],[-124.94874839334902,54.24271657113172],[-124.93003017998724,54.241433153357],[-124.92293108837296,54.238789836666115],[-124.92212566913797,54.23841531723263],[-124.91553072635301,54.235354887641456],[-124.90698131194273,54.231801616089044],[-124.89762182826979,54.22984430700153],[-124.8900393338232,54.22817133294471],[-124.88722999402827,54.22400586974074],[-124.88822957978607,54.221147653975606],[-124.88776525685542,54.21841043962857],[-124.88310935283928,54.21377990857723],[-124.87309637972041,54.21004940600171],[-124.86443926779545,54.20905477135992],[-124.85226275293073,54.20806214074965],[-124.84465983505122,54.207873545408255],[-124.83823614020908,54.207292532558604],[-124.82965701159097,54.20738935345292],[-124.81990235012711,54.2093558955218],[-124.81628045297902,54.21237623928062],[-124.8105622348056,54.219838391559456],[-124.80701680020604,54.22388073487492],[-124.80231247377586,54.22809077095098],[-124.79749071780323,54.23207545042254],[-124.79014159809364,54.23724449827702],[-124.78935370510374,54.237362100183255],[-124.78622096435005,54.239804000466386],[-124.78250101408807,54.24128114472447],[-124.77762027345135,54.241949002496675],[-124.77322258903989,54.241886763736645],[-124.76689571516445,54.24100729827374],[-124.76036548590186,54.241272403137195],[-124.75294094306334,54.24262119745553],[-124.74529261002259,54.24625223189878],[-124.73941752171481,54.24971302394124],[-124.73471136729272,54.25215522233442],[-124.7325501286049,54.252885411685924],[-124.72437577056522,54.2520113469109],[-124.71600224958286,54.249638164867974],[-124.71049045593257,54.24630909808652],[-124.70272736900095,54.242686929957216],[-124.69959030307723,54.24313728762072],[-124.69623836316626,54.24648858981061],[-124.68908762632081,54.24977200578779],[-124.68325738048999,54.247809266499495],[-124.67899491264168,54.24494927727972],[-124.67424565962577,54.24241537553169],[-124.6642295755371,54.2405582954899],[-124.65722660447489,54.239728385927755],[-124.64532388636427,54.239623149967194],[-124.62042545005133,54.23530155401061],[-124.61109423552357,54.23286534678066],[-124.60573321018241,54.23221250284684],[-124.59968954898598,54.232644814604605],[-124.59207535364197,54.232673305762376],[-124.58964776460653,54.23260034171709],[-124.58811689197996,54.23014511708109],[-124.58572593682923,54.226765816218155],[-124.58198678161445,54.22280617146466],[-124.57761823235049,54.22062231587381],[-124.56624127928737,54.219260845442285],[-124.55637471831632,54.22133051676777],[-124.54734359770345,54.22584686740419],[-124.54062565901663,54.23186899285841],[-124.5335885370292,54.23902499647307],[-124.52804099459202,54.245329414379036],[-124.52714812960375,54.24663590905419],[-124.52445351332678,54.24970383637623],[-124.52367518050441,54.25038440531973],[-124.52196255796545,54.25351797227907],[-124.51995740155952,54.25664795449132],[-124.51884943021103,54.25921531612425],[-124.51705021089948,54.2621685352314],[-124.51637151697076,54.264346813025085],[-124.5162323053757,54.264793179284275],[-124.51881575081727,54.267432416682205],[-124.52047195954329,54.26846520660217],[-124.52367245229802,54.26979453187692],[-124.52832959672521,54.27129374951783],[-124.53502275786899,54.273561112002255],[-124.53736312141622,54.27442267782957],[-124.54346643526675,54.27685272950869],[-124.55120330591699,54.281452618127986],[-124.555451561371,54.285015922709555],[-124.55980571790143,54.287773818439106],[-124.56728858531746,54.29048778552928],[-124.57379305885866,54.292571498393045],[-124.58342445725016,54.29467337897452],[-124.5863465856501,54.29525399017069],[-124.59375638231683,54.296137388203405],[-124.59980292210025,54.29725555985208],[-124.60565180105749,54.29785142386296],[-124.61326656126744,54.29770545833498],[-124.61894961332872,54.29636321987334],[-124.62031274893559,54.29613673787606],[-124.62665839345013,54.29662073016779],[-124.62702277241037,54.298166126394264],[-124.62856434513218,54.300907638369615],[-124.63401216263222,54.30247434891973],[-124.6390729933099,54.30317623589132],[-124.64814553203598,54.304639410426354],[-124.6535727825832,54.30734303254802],[-124.65879651179412,54.31158542714649],[-124.66199107465201,54.314281953902544],[-124.66595461355092,54.31704058470097],[-124.67305297199024,54.32106091584163],[-124.67993968518915,54.3245139915745],[-124.68225749419832,54.32674344639854],[-124.68409766037783,54.328008891839346],[-124.68800469938881,54.32875894886978],[-124.69417930787986,54.327526011100474],[-124.70093713884131,54.325384993666894],[-124.70799647041655,54.32392782143474],[-124.71629845835136,54.32412315943465],[-124.72566225695923,54.32587028274553],[-124.72790374610399,54.326162540094394],[-124.73454505334539,54.32624070098122],[-124.74098940846255,54.32671073092165],[-124.74498096842048,54.32724476962313],[-124.75367415570113,54.3277820846774],[-124.76137736514401,54.32997537908427],[-124.76614406637226,54.33295387268621],[-124.77051043898034,54.33593709096344],[-124.77333034134963,54.33754257882196],[-124.77681718838299,54.34057942146794],[-124.77708545116661,54.34348532372306],[-124.77365192255768,54.34485760944876],[-124.76817626229285,54.34489197059641],[-124.76531661486074,54.34665512963011],[-124.7670557436486,54.34883223080588],[-124.77105026868833,54.350897666272665],[-124.77766413527777,54.35410933261461],[-124.78323601516631,54.355034265617554],[-124.78782679812392,54.35471264039918],[-124.79183721240351,54.35471662723564],[-124.79426984096155,54.35592350274438],[-124.79486443706612,54.35616235645947],[-124.79885170372037,54.356963361931854],[-124.80149065586578,54.358512619516134],[-124.80538145221811,54.36052211636069],[-124.81044080800861,54.363214926380785],[-124.81385544024933,54.364646028475086],[-124.8176623758287,54.36585682848474],[-124.81656026252139,54.368767219955274],[-124.81301553237537,54.370757802981984],[-124.80467634462944,54.37416191540885],[-124.80318523810446,54.37661139751145],[-124.80335553581612,54.38083341669241],[-124.80282976092182,54.38351637360528],[-124.80291935530043,54.38573942964346],[-124.79908424732199,54.38755652375001],[-124.79417273032426,54.38869083194327],[-124.7919069117365,54.39119524150673],[-124.7890404267447,54.39363988596935],[-124.78461779641283,54.39648114859761],[-124.78312278110971,54.39847337501478],[-124.77810564577337,54.401541447365766],[-124.77767822711917,54.40604425228473],[-124.78008661667292,54.40919553621959],[-124.78399348191161,54.41183304620118],[-124.78876701264147,54.413385864854206],[-124.79384888162001,54.41392005985729],[-124.79904473305267,54.41478669650574],[-124.79922477234771,54.41655365606019],[-124.79803157495347,54.418262296120155],[-124.79801869548439,54.419229886226724],[-124.80103598240136,54.421186036397366],[-124.80591501193014,54.42342018507853],[-124.80913287187403,54.425942588175324],[-124.81185684874164,54.4268562021592],[-124.81498725388597,54.42761241483939],[-124.81497773666342,54.42954774509825],[-124.8132039546376,54.43103584284613],[-124.8070059018108,54.43426386280839],[-124.79639792250157,54.43709873276939],[-124.7927648599297,54.43765424718224],[-124.77911587055614,54.441326683568654],[-124.76896332953632,54.44688770665678],[-124.76875528562753,54.44763827970878],[-124.76561918622237,54.449103004464874],[-124.7596363691643,54.44908719359014],[-124.75462918481199,54.44901831898353],[-124.74609902470525,54.449388022620354],[-124.7421594153689,54.451309844199606],[-124.73704770489161,54.453120863847786],[-124.73115183330006,54.45527298767246],[-124.72120259702879,54.458950547029396],[-124.71576594570061,54.46366944005818],[-124.71475573225042,54.46629319107178],[-124.71305910250491,54.46959070093539],[-124.70832399893476,54.4711177813376],[-124.69918221639266,54.473538704153675],[-124.69326234093033,54.476773007688294],[-124.69386572246572,54.48357150176927],[-124.69814835039021,54.486609982242165],[-124.70380343694443,54.48982415136603],[-124.709182129063,54.492013641485734],[-124.71250071137595,54.49328517084791],[-124.71884477846983,54.495815921087775],[-124.72529432733096,54.49846391756239],[-124.73232418660696,54.50139535223145],[-124.73857263382949,54.50409430538273],[-124.74177865145607,54.50707528081601],[-124.74302718289722,54.51078873335894],[-124.74698996976288,54.516393744485086],[-124.74863939187506,54.5176561093063],[-124.75215892306221,54.519555798993956],[-124.75911877112436,54.520889984685674],[-124.76655242354083,54.522963287902726],[-124.76949344040322,54.524569903628944],[-124.77114899313216,54.52566177015916],[-124.78493462069602,54.53192821645481],[-124.79296700040359,54.53377285647999],[-124.79924674406077,54.53465000246394],[-124.80797753660933,54.534896628092426],[-124.81701747349389,54.534634890873456],[-124.82359746972408,54.534250306372186],[-124.8316538820805,54.534784442196965],[-124.84324469395975,54.53470637464336],[-124.85218339152023,54.53307019705275],[-124.86299821813576,54.53246330173307],[-124.8710443177054,54.53225106591849],[-124.87713030294368,54.53346289556016],[-124.8882994747611,54.53576901276445],[-124.89803301581753,54.53619751054036],[-124.9058755993227,54.53666210380277],[-124.91413383603162,54.53548125364779],[-124.91866840880336,54.53331725696698],[-124.92271582853834,54.52904322673784],[-124.9247014303568,54.5253960810547],[-124.92835870284779,54.52118116168068],[-124.93537661577393,54.5151407243217],[-124.94441130859441,54.512468323442775],[-124.95550903435569,54.51020713295467],[-124.96652011907896,54.50764853761282],[-124.96986720800405,54.506915183887884],[-124.97488535751134,54.50497721569838],[-124.99078796063779,54.500432435658674],[-125.00346054087633,54.49936262174984],[-125.00866279088501,54.499306345971796],[-125.01277889361366,54.49743120594979],[-125.02073569370853,54.495443391376426],[-125.0277122495526,54.49299032504689],[-125.02918861126236,54.49207919857868],[-125.02949092594433,54.489115910627284],[-125.0326513914938,54.484374353472376],[-125.04392520927017,54.483307234503684],[-125.05794903519873,54.485082623547875],[-125.06530495027963,54.48685039499927],[-125.07687424127627,54.489142388102024],[-125.08814219406011,54.49251515039581],[-125.09460481363399,54.49770602411104],[-125.09676416284206,54.5008578725447],[-125.0967575154326,54.50747900507946],[-125.0982134345967,54.51518607669443],[-125.09929035423272,54.518320920586255],[-125.1061462079723,54.52774295120811],[-125.1140963848027,54.5347086020826],[-125.12479101254456,54.54098555649763],[-125.1308735947398,54.542758084209304],[-125.14285212874776,54.54493010716897],[-125.15740195055292,54.54646462760805],[-125.17231784024499,54.54680827611828],[-125.18911820452597,54.546687750002064],[-125.18961526022426,54.54662832479161],[-125.19913886026356,54.546171342333096],[-125.20553107884594,54.54496762713344],[-125.21368500930468,54.5439899341609],[-125.21858805601205,54.54364503125236],[-125.2225159828032,54.543239987294314],[-125.22684621225082,54.54203997218031],[-125.23321828991425,54.54100492139061],[-125.23714528343608,54.541459506172934],[-125.24275102438563,54.5416287002745],[-125.24717427066967,54.54122593066214],[-125.25296302547719,54.54070591091433],[-125.25619823880777,54.540017820472],[-125.26455651022223,54.53875129436203],[-125.27201749999244,54.53999644430477],[-125.27565376427928,54.541137931891065],[-125.27801033921942,54.541931315078656],[-125.28027404808522,54.542724106358975],[-125.28283059994924,54.54449513765054],[-125.28911993468495,54.54637743695789],[-125.29265571058485,54.54442686621925],[-125.29569337464586,54.54258980121905],[-125.29961643829367,54.54151031268459],[-125.30424351766797,54.5418413134216],[-125.30728546608998,54.544286533394356],[-125.31044962084907,54.54685779322708],[-125.31614884712094,54.547982790004674],[-125.3206583328495,54.5479810152196],[-125.32635310512111,54.547519719340585],[-125.33196238460172,54.546591811183475],[-125.34060393234607,54.54594879337738],[-125.34462555272721,54.54543283146216],[-125.3474749642531,54.544570044679254],[-125.35040698664274,54.54239958055814],[-125.35178143035124,54.54170804455676],[-125.35767286679605,54.54147032027168],[-125.36121396155475,54.5419188918403],[-125.3641499349593,54.542426933786295],[-125.37310705373123,54.54435456358245],[-125.37861818525535,54.545708621890384],[-125.38540632998887,54.54769599081055],[-125.38618891694954,54.54821059086413],[-125.39001663339805,54.54820284197043],[-125.39415252856638,54.548312968158434],[-125.39730768495879,54.54977992728534],[-125.4008452305941,54.55160704247123],[-125.40546202244936,54.55171017765303],[-125.40859871133357,54.550211266840435],[-125.4121282183318,54.548319959561994],[-125.41800625302355,54.54579467752603],[-125.4227135506273,54.544930005790015],[-125.43008222590608,54.54543040430328],[-125.43667853809191,54.54689439530974],[-125.44109492311154,54.54688775724111],[-125.44846026975429,54.546526954708426],[-125.4539686083477,54.547133987333346],[-125.45949413655737,54.549971668746316],[-125.46394197925018,54.55350319425002],[-125.46679439714543,54.554635535908794],[-125.46993993025845,54.5558855476259],[-125.47122719732441,54.55701995921666],[-125.47308715524252,54.55701901649208],[-125.4761429209039,54.556835025319835],[-125.47821265404933,54.55739932485171],[-125.48155876390075,54.5587663577819],[-125.48186375962673,54.559161848352026],[-125.4847177448252,54.5602400199758],[-125.48775674078007,54.56017213583474],[-125.49160105281574,54.56016127622852],[-125.4955299676105,54.560831534095975],[-125.49917206968456,54.56088231709105],[-125.50090790820389,54.55836294477969],[-125.50187844603751,54.55630630930243],[-125.50381810709939,54.55356374761996],[-125.50457534811139,54.54990255094929],[-125.50366670368648,54.54687966055593],[-125.50097675556107,54.54255044577109],[-125.49996978769204,54.540001954274054],[-125.49887251951719,54.53724702408632],[-125.49914752352723,54.53376305859546],[-125.50069342072047,54.53021260941464],[-125.50794500468658,54.528709971879564],[-125.51747096418741,54.52999321485758],[-125.5217304200679,54.53397880983679],[-125.5250004931935,54.53785290698799],[-125.5292674753164,54.54131863229008],[-125.53282234700166,54.544790448243695],[-125.53629266456997,54.54757198955183],[-125.54310914196314,54.5518889982729],[-125.54734616451965,54.552728965356835],[-125.5530513184084,54.553968349685086],[-125.5539482982245,54.55556632775105],[-125.55961545677178,54.561831276273615],[-125.5706372567127,54.56326801363038],[-125.57546691644826,54.56542604952714],[-125.57767364808242,54.56941147239146],[-125.57740199104629,54.5716950790452],[-125.57556360149474,54.57553213138449],[-125.57217942868672,54.580340297822836],[-125.57095761134985,54.58593539090294],[-125.57164663638696,54.586788904102725],[-125.57432478598271,54.58877816870314],[-125.57512554403644,54.59083255188832],[-125.572574234117,54.59153144058296],[-125.56786531874921,54.592348114595104],[-125.5613002273072,54.59408971309206],[-125.5567876772882,54.596779092540345],[-125.55553714477115,54.599068063521116],[-125.55556255229997,54.60101225346077],[-125.55636820504607,54.603980591293116],[-125.56153566065227,54.60829948213831],[-125.56694043144577,54.6093668865827],[-125.57056974689338,54.60809851919625],[-125.5749825493664,54.606080211014984],[-125.57694498072327,54.60538819909189],[-125.58203641708707,54.60371241832077],[-125.59050156106353,54.602880923648264],[-125.59777745148408,54.60303043346079],[-125.6035998588161,54.60425885206347],[-125.6086172628155,54.60532316526029],[-125.61383826532371,54.606217693936685],[-125.61718971996964,54.60626403847792],[-125.62053206950291,54.605620426248976],[-125.62689526057117,54.60382129297545],[-125.63248861741796,54.601293853227055],[-125.63325869302135,54.60020317101463],[-125.63861861344071,54.595900888390105],[-125.64535214816834,54.592274273453405],[-125.65350673345577,54.591043347184005],[-125.66386367872923,54.59356276359895],[-125.67639212540121,54.59630206569812],[-125.68279963773308,54.598280810049054],[-125.69013831604954,54.60235795321521],[-125.69886666978114,54.60757584885011],[-125.7071615494961,54.61078529472489],[-125.71687575799015,54.61542191785118],[-125.72015961335293,54.61866359957119],[-125.72030576688468,54.622256430558174],[-125.71454251508825,54.62502935570018],[-125.70640457262665,54.627581338829145],[-125.70143542904697,54.63194126378397],[-125.70179280671846,54.63616174752277],[-125.70519109112695,54.64082855346897],[-125.71328734952728,54.642388653755894],[-125.72305009961369,54.643369666609495],[-125.73736894038979,54.646043992323015],[-125.77139018530771,54.6564326017938],[-125.78537394286361,54.66224521501737],[-125.80006854778301,54.66969683823234],[-125.8063308328344,54.67320974809512],[-125.81303246613821,54.67945542419167],[-125.81507525679608,54.684923351645814],[-125.81660452719774,54.694054599311166],[-125.82211549232215,54.699850040555226],[-125.82913289733965,54.70660591562221],[-125.83504978606058,54.712911975306845],[-125.83984263876721,54.716654094705866],[-125.840814402736,54.71883232269482],[-125.84518048671521,54.7287283044363],[-125.84940430608685,54.739779616816996],[-125.84707028513792,54.747732050856804],[-125.83950588925076,54.750804204357074],[-125.82492341345457,54.75225354622342],[-125.81287292028907,54.75151911705802],[-125.80562651098523,54.74927716979801],[-125.79117287631776,54.74672713632312],[-125.77536135082214,54.74509567681984],[-125.76678931338478,54.7465131218965],[-125.76307920263574,54.74990138594492],[-125.76028199810392,54.754196149688624],[-125.75910179180015,54.76151310879164],[-125.76128553045096,54.7689799611553],[-125.76198195636634,54.76977863367156],[-125.76497783521091,54.77170155005891],[-125.76768923472252,54.77437638649114],[-125.76384701556847,54.775936848648826],[-125.7615015716098,54.777311966859145],[-125.7577918918077,54.78008192094975],[-125.75664697027926,54.78390502528348],[-125.75511755275683,54.78683148558675],[-125.75485408024144,54.78916917933615],[-125.75565741873567,54.79037123971662],[-125.75912625904587,54.7916054118105],[-125.77054960448307,54.794915055173874],[-125.77749284918845,54.796710568023876],[-125.78404783401885,54.7983347935529],[-125.79197403028736,54.80022975207274],[-125.8011968027583,54.801785868866816],[-125.80655370405049,54.80323674011348],[-125.80874513950835,54.80476313310102],[-125.81263653318669,54.8062831245517],[-125.81920217237882,54.80967930346758],[-125.82947531805681,54.8144151541198],[-125.83394435696083,54.81622194382443],[-125.8390088447197,54.817447038202],[-125.84290126804314,54.81930649921973],[-125.84338373482487,54.81959378963348],[-125.84380405219838,54.81981828893477],[-125.84904364311217,54.82029962464703],[-125.8528023654941,54.82051021896847],[-125.8532077593221,54.82056445420728],[-125.85986240953481,54.82241767774309],[-125.86671903999034,54.824709732604646],[-125.86732602300319,54.82515831885129],[-125.87117889765386,54.82536845347999],[-125.87562628592558,54.82505050977609],[-125.87799786986375,54.82499016913625],[-125.8806793416176,54.825655732014894],[-125.8815020699125,54.827080947178445],[-125.88340146210905,54.82849822095913],[-125.88857742910542,54.82999909738777],[-125.89434579004713,54.83185860994813],[-125.89664999721982,54.83389416963994],[-125.89988581998581,54.83793717611543],[-125.90420114667995,54.84116570556292],[-125.90560440509432,54.841775973373686],[-125.91075351638898,54.84243378564039],[-125.91374847881029,54.84326906744052],[-125.91555609934004,54.844685778979084],[-125.91600297730132,54.84748117075204],[-125.91495206844365,54.84989031674561],[-125.91183964053442,54.85259363169259],[-125.90636631592156,54.85656722125661],[-125.90384562347496,54.85949474728274],[-125.90597691235648,54.86290961870975],[-125.90867464547604,54.86460482104312],[-125.91287248416954,54.86600539841168],[-125.91853755005675,54.86796224321574],[-125.91995539583553,54.86967426374767],[-125.9211047553556,54.87297176857987],[-125.91251130742631,54.874175387570006],[-125.90768224956838,54.87523794375812],[-125.90354002841069,54.87639939440687],[-125.89887320238336,54.881116841943545],[-125.89744256103404,54.884663267167376],[-125.9002382373977,54.88509557050527],[-125.90717410839044,54.885692247357625],[-125.91632615851802,54.88762488684572],[-125.9232120585503,54.89020943608235],[-125.92712888390835,54.893212937984245],[-125.93114016747377,54.896153657567815],[-125.93504425894348,54.89807291078497],[-125.9402590645869,54.90174856437757],[-125.94640995523902,54.90753863270969],[-125.94743952985425,54.90924120616269],[-125.94948335916342,54.912601527778214],[-125.94574458573679,54.91410498455553],[-125.94596203941843,54.91518906842819],[-125.94958663566965,54.91756462484477],[-125.95342835347924,54.92188416872015],[-125.957380503182,54.926078210389385],[-125.96128822161612,54.9285162296557],[-125.96766824135952,54.93047103328926],[-125.97296945725185,54.93254173766113],[-125.97615986737424,54.93372492631039],[-125.9797724472232,54.935696457072076],[-125.98501179298235,54.93937021941472],[-125.99992177230757,54.939962393886276],[-126.00318881614355,54.94082237599367],[-126.02816252138666,54.95483042015552],[-126.04361481186253,54.96989425687683],[-126.0591663947497,54.98608489807535],[-126.0681297930238,54.99541512264914],[-126.06996387781477,54.99999193092791],[-126.06966048052102,55.00180173387273],[-126.0692066310745,55.00500019914084],[-126.06919067103651,55.00597669258047],[-126.07108808137238,55.01112679786371],[-126.07361302195754,55.01468187683596],[-126.07901963131154,55.01814551415904],[-126.08634371762825,55.02024589093278],[-126.09011317158763,55.02078072087715],[-126.10144725193354,55.02106759082199],[-126.114183999213,55.02045628086634],[-126.13112321923538,55.018208821538416],[-126.1393096290311,55.01613045183562],[-126.15147974616048,55.013625678426294],[-126.15628706535952,55.01141589228265],[-126.15657868328708,55.011594695774676],[-126.15922284927392,55.0144043225965],[-126.16281825347151,55.0200256450752],[-126.16522979004024,55.02489592724786],[-126.16695872349283,55.02902352166831],[-126.16692203588653,55.031531977753694],[-126.16669806564337,55.033073157649476],[-126.1665879457228,55.03370040741161],[-126.16485840873959,55.03643509186877],[-126.1623244607124,55.039564986300206],[-126.15597112292565,55.045082679393914],[-126.15550884751391,55.049535681231625],[-126.15657163147554,55.051541068617],[-126.15881103620478,55.05474539728045],[-126.1614367549375,55.05881816763995],[-126.16324787264085,55.06409241056673],[-126.16382130303927,55.06569524353633],[-126.16376818870037,55.069287711902135],[-126.16341390772104,55.07288953623451],[-126.16287351662638,55.07585554361883],[-126.16173811857051,55.07824897546285],[-126.16011173263723,55.08058927989488],[-126.15808072867546,55.083145085502856],[-126.15755978363904,55.08468662746047],[-126.15752505958011,55.08685465300377],[-126.1586618898701,55.09069644486256],[-126.16186444199025,55.09630935370681],[-126.1663613952477,55.10204587446208],[-126.17147414173392,55.106589890786985],[-126.17720193411799,55.11004883027009],[-126.18265538377474,55.11212828431888],[-126.19047854121087,55.11553872143366],[-126.19392576782583,55.11840910290571],[-126.195673859277,55.12161354763472],[-126.19295584499,55.12343640083309],[-126.18710930607891,55.127691733435896],[-126.18681119798862,55.12780864424598],[-126.1821615408701,55.13195443358086],[-126.18096974621119,55.13852284638205],[-126.18206230766404,55.14567023389095],[-126.18457838255436,55.15082669264833],[-126.1881899186791,55.156330835635146],[-126.18929111517403,55.16285105050578],[-126.19281214953453,55.167781849832416],[-126.20016277297472,55.170332405447915],[-126.20829288935049,55.17414439461824],[-126.21371952738396,55.17868618192822],[-126.21637295065827,55.18171857799646],[-126.22146841308768,55.18866152936714],[-126.22576781296452,55.19565051842771],[-126.22798782526833,55.20120980421078],[-126.22887515260447,55.202175711878695],[-126.23200747743981,55.20671195944589],[-126.23312533038589,55.212604680941965],[-126.23331208781308,55.213742083462066],[-126.23406221414878,55.21711809841777],[-126.23411632028346,55.220665635743636],[-126.23255077762434,55.22545250855072],[-126.23239565232295,55.229627547384936],[-126.23482492534178,55.234783197259574],[-126.23977971006538,55.23811535050064],[-126.2417798656279,55.23818315333412],[-126.24819026048222,55.23712237590269],[-126.25292856641181,55.23400417326851],[-126.25576223388447,55.23149890780079],[-126.25841493644478,55.22739930447824],[-126.25847197292681,55.22293775389825],[-126.25848510893525,55.22191643511628],[-126.2636104713609,55.227478000404986],[-126.26675516179733,55.23165501871788],[-126.27189830775372,55.23614116821601],[-126.27696351425652,55.23872803453207],[-126.28373185893098,55.24132874628285],[-126.29069473694966,55.24427802930826],[-126.30282139261769,55.25032316279331],[-126.31642423919133,55.25888975553275],[-126.31978647643531,55.2622765407179],[-126.32364326275761,55.26628906764535],[-126.32341088471169,55.26926398007205],[-126.31918911842293,55.27084264608985],[-126.3173726084189,55.27215526368547],[-126.3162257879222,55.27614482804078],[-126.31597759626358,55.28032024257631],[-126.314937649276,55.283521154335276],[-126.31662976294618,55.28449337498648],[-126.32130340095364,55.287312392647955],[-126.3261727894438,55.29047115945175],[-126.33205344217308,55.29295514163278],[-126.33882703401224,55.295723107881706],[-126.3422784029016,55.300649982086945],[-126.34323608554274,55.30453547098981],[-126.3463038879192,55.307976133710376],[-126.34875844986418,55.31244870285573],[-126.35550032747963,55.31915775212475],[-126.3629576012356,55.324377203264596],[-126.36355894574798,55.324608382822774],[-126.37003960794605,55.3276622201536],[-126.3766371297657,55.329174450383135],[-126.37880576429163,55.332778305341854],[-126.37548819475083,55.33385443119613],[-126.36875392999458,55.335487096761256],[-126.36260224586447,55.33935741904388],[-126.36379135828543,55.34067091106889],[-126.36727914591775,55.342452471453974],[-126.37415266403224,55.34693837247711],[-126.38521861770703,55.35320281703035],[-126.39299179439755,55.357855139586654],[-126.4074621854034,55.36538800819727],[-126.41982041209437,55.37410891687057],[-126.41856253859662,55.38011561694338],[-126.40960334918779,55.38345114226727],[-126.39887164132298,55.382796011765414],[-126.3942719987165,55.3809471510248],[-126.37010557442264,55.369840351414844],[-126.35972172899356,55.36528373195697],[-126.3381066217918,55.36075716037307],[-126.3191529933273,55.36068159563139],[-126.31473792110359,55.36078238532992],[-126.31171169887885,55.36248319368417],[-126.30696619972701,55.36514676041777],[-126.2990094949101,55.36745951847515],[-126.29489628988013,55.36772910028482],[-126.28587104975635,55.36769632219908],[-126.27966689161978,55.36617840301623],[-126.27609998084073,55.362970118047876],[-126.27156807987953,55.35637740287333],[-126.26671714801407,55.35149634508533],[-126.2620751963053,55.35393400793996],[-126.25842641226004,55.35695176952732],[-126.25708506479664,55.35963322122604],[-126.25545778860277,55.361508950885835],[-126.25377400997755,55.36744311737099],[-126.24921667589196,55.37056099975866],[-126.24208380998907,55.3713902742755],[-126.23303771831844,55.37266170554655],[-126.2316753891117,55.37688384060951],[-126.23447893230295,55.37741614124954],[-126.24280547105329,55.37745399496218],[-126.25273486334923,55.37772099242898],[-126.25903689396606,55.37912358482996],[-126.26613906334292,55.38081084221466],[-126.27311123739044,55.38495270491725],[-126.28329169361648,55.38911383154551],[-126.28669684291015,55.38976006541925],[-126.29541024425457,55.39121799190279],[-126.30079545657156,55.39409886558793],[-126.30745294594779,55.399896982567064],[-126.3127190215942,55.404488791068964],[-126.31691068621012,55.40667316794467],[-126.32730307682577,55.410713744117416],[-126.33581202914824,55.413378862182334],[-126.34088172299145,55.417790854664354],[-126.34442299152111,55.424554103506395],[-126.34710065700091,55.4278167150892],[-126.35124572979026,55.43457810944231],[-126.35507897150532,55.44241533677319],[-126.35831123515572,55.450433360457346],[-126.3580382321912,55.45700107059876],[-126.3570014265252,55.45991569958737],[-126.35612184626342,55.46670911610791],[-126.35624931965346,55.473571344818566],[-126.36094253981024,55.476899620154676],[-126.36705702050529,55.478745330477274],[-126.37648505240065,55.481414021435576],[-126.38752976370739,55.48344988609216],[-126.39353491123119,55.48654891701123],[-126.39701917736556,55.49045303135284],[-126.40009166389487,55.4951467657711],[-126.40137502665551,55.49766015959937],[-126.40573149687155,55.505162797433286],[-126.4091793522523,55.51317893478718],[-126.4113305770006,55.51981059003921],[-126.41040826959721,55.52157855527391],[-126.40845027501756,55.52608241947249],[-126.40509058041785,55.52979342767777],[-126.39821751040157,55.53234190267614],[-126.39155830769806,55.5334110786418],[-126.38628238099913,55.53727089191578],[-126.3875445537816,55.5418451093204],[-126.39062033989364,55.54648536000599],[-126.39342637761413,55.54816091237305],[-126.3990362048423,55.551314738574085],[-126.4036237528745,55.556191767512544],[-126.40337729310717,55.56098571011619],[-126.40266276406439,55.56201830764057],[-126.40029349737813,55.5670967724373],[-126.40065839360027,55.571091400648],[-126.4028494567854,55.57372734971849],[-126.40503446565583,55.57710689512981],[-126.40600453298272,55.58105476822238],[-126.40568476595615,55.58282972294647],[-126.41111719168187,55.58420969750884],[-126.4195776253772,55.58566895415598],[-126.42843765525924,55.587359221266766],[-126.43095616453483,55.587762731705624],[-126.43930370402369,55.590296161734734],[-126.4467389768522,55.593808847251346],[-126.45758131877916,55.59995172384656],[-126.45868437174187,55.600700281529946],[-126.46864154799613,55.604892327483945],[-126.47807581430385,55.61115518537918],[-126.4812428989751,55.61899146250445],[-126.48071928280395,55.62167230414811],[-126.47765770721838,55.62555440217505],[-126.47267689173523,55.62988266201215],[-126.47102160561388,55.63485234670632],[-126.4751318334334,55.6384564653819],[-126.47986907753356,55.639612158968774],[-126.48188663636614,55.63990906472105],[-126.49046642833288,55.64067328936015],[-126.49590933980168,55.64194210090648],[-126.50740285883604,55.64522916239256],[-126.51093452073188,55.64575243346774],[-126.51557994606672,55.646047061537246],[-126.5236538708982,55.64686486015889],[-126.52737075586587,55.650074726673914],[-126.52795413394583,55.6531632824198],[-126.52813817724349,55.65630727099734],[-126.52961600648187,55.661963427981036],[-126.53119455507033,55.66722493503994],[-126.53129552097198,55.667627684643875],[-126.5324101260591,55.667282515889376],[-126.53857600110885,55.6673010837323],[-126.54767616366665,55.66629419677417],[-126.55294493538534,55.664246320987644],[-126.55700143025008,55.661907931175584],[-126.56114708814972,55.66105628511333],[-126.56902731088567,55.66204228602651],[-126.57154988555484,55.66250570920965],[-126.57538108447059,55.663885934853255],[-126.58053520006833,55.66413105364904],[-126.58446576349206,55.66607499623027],[-126.58879546527113,55.669396718506654],[-126.59292780335262,55.67192182900416],[-126.59514905820417,55.672153255328695],[-126.59828048767855,55.67238032057332],[-126.6037361479945,55.673250230474196],[-126.61009554026867,55.6754325837538],[-126.613314874085,55.678239204932034],[-126.61532589390731,55.68081870911161],[-126.61865740386797,55.68207464542492],[-126.62360673871977,55.68344792810904],[-126.62814541872402,55.686489552271276],[-126.62854336692561,55.687464163151255],[-126.63025083235695,55.69003599634379],[-126.63124685049374,55.69403595524335],[-126.63244634545178,55.69747043310618],[-126.63678895340794,55.69901649196125],[-126.64366245429518,55.70051365967739],[-126.64688620694949,55.704116847136326],[-126.65578069024211,55.70630182415733],[-126.6605392704307,55.70493301698401],[-126.66641177748672,55.70380005315333],[-126.67065820673034,55.704368860273185],[-126.67358193909301,55.70763251039748],[-126.67599703116707,55.7122607024082],[-126.67942710415885,55.716041175047415],[-126.68387203656152,55.71849897863298],[-126.68457990387184,55.718844565343154],[-126.69216551719315,55.721195387629756],[-126.69843073987181,55.72388459344283],[-126.709963872012,55.727556391940325],[-126.71856028733951,55.730697374189496],[-126.72553751106801,55.73521795977745],[-126.73363128605892,55.73836978762343],[-126.74101857928851,55.74122958398368],[-126.74587610299648,55.7450626478187],[-126.74698566211178,55.74803971768242],[-126.74738508184177,55.752723368030225],[-126.74758513514095,55.75529367009742],[-126.74768300490722,55.75752410323324],[-126.7477806049422,55.76186011616143],[-126.74807822488546,55.76695654100403],[-126.74898040485947,55.77324105647896],[-126.74887931357605,55.77523972154792],[-126.74765909989301,55.77889365041497],[-126.74491347089864,55.783121056580434],[-126.7443034703058,55.784728485492394],[-126.74420319965648,55.78529355358022],[-126.74420308706135,55.78560715259709],[-126.74419994773997,55.78666444573564],[-126.74480566024224,55.78860518496763],[-126.74672911927225,55.791299733753874],[-126.7513892787586,55.79432744130394],[-126.75605183737892,55.79775816898667],[-126.76324757095323,55.800958409031864],[-126.77024395949665,55.8027348198287],[-126.77937180923897,55.80428267277856],[-126.78840001775292,55.806511457798344],[-126.79874454218626,55.809940900233485],[-126.79945553127546,55.81006184394329],[-126.80280077705322,55.812056650384896],[-126.80696155869195,55.81702988180886],[-126.81112452465406,55.82171625125594],[-126.8182275120303,55.825370997769994],[-126.82208459394444,55.826627268255464],[-126.83111855136003,55.82776884314185],[-126.83923809479454,55.82857536416341],[-126.84167746321434,55.83120240018723],[-126.84361065560053,55.83554417271821],[-126.84523723292382,55.83754039557597],[-126.84899529783192,55.83930725759947],[-126.85153603837702,55.84067900555856],[-126.8554959045984,55.84296401481788],[-126.858853807244,55.846390948227466],[-126.86190821453938,55.85193449448654],[-126.86333256397259,55.85421861172827],[-126.86729936390716,55.85718420939971],[-126.87167406542979,55.86101602963261],[-126.87289719079135,55.86330143758007],[-126.87432703008751,55.86764628526061],[-126.87646524537794,55.87056152294382],[-126.88094346613877,55.873765110684005],[-126.88481044185404,55.87673089327813],[-126.88583626284127,55.880388514024524],[-126.88645363970393,55.88466726093278],[-126.88717281405052,55.88780732502359],[-126.88880424446455,55.89089618431855],[-126.89359491691657,55.895638368058044],[-126.89746326663952,55.898263297547025],[-126.90255538670947,55.90089731767804],[-126.90510623879216,55.904427458355904],[-126.90714987496939,55.90757588770713],[-126.91387758455916,55.91362066480969],[-126.9165296773372,55.91642406796971],[-126.91816905900609,55.920310031125034],[-126.91624922229458,55.92408736364043],[-126.90943814052106,55.92632281546877],[-126.90201395612429,55.927639327488876],[-126.89927572833311,55.93135053655902],[-126.89541418669319,55.93307142687355],[-126.87283458313672,55.94039738934935],[-126.87131302940853,55.94137559639876],[-126.86633982934805,55.95126628018112],[-126.87082892349953,55.95800075165331],[-126.87674759592929,55.96280764439006],[-126.88541003015168,55.96542668123684],[-126.89070721396932,55.9665723898353],[-126.90160654430719,55.96758857037001],[-126.9083316209909,55.96861586208432],[-126.91333178080961,55.97066779022376],[-126.9223010716992,55.97339862262633],[-126.93443502576147,55.97647294924164],[-126.93922383590979,55.97738742103921],[-126.9498278842772,55.97909165709659],[-126.95717383172239,55.98170675620877],[-126.9612579668612,55.98422074313886],[-126.95871019399435,55.984338589375675],[-126.95137679373514,55.98451924202552],[-126.94180046723797,55.98544196173877],[-126.93538722886686,55.987102341383405],[-126.93039896892752,55.9884204051951],[-126.9236756745884,55.989741951797924],[-126.91899075268907,55.99049282748419],[-126.91827731346488,55.99055175677921],[-126.91328860401931,55.99180642020541],[-126.91329270401762,55.994154106133266],[-126.91391082390021,55.9956998664979],[-126.91720360080627,56.00004000534153],[-126.91977450902856,56.00207341978249],[-126.92056470154358,56.00361790755975],[-126.92234257838938,56.00676816293932],[-126.92477033579775,56.00797813122514],[-126.92830758398473,56.00976240001316],[-126.93021770354791,56.01149577985165],[-126.93178376556706,56.015328495079466],[-126.93399896000763,56.01698789851122],[-126.93539869485421,56.01865327510117],[-126.93697128383702,56.022261871453225],[-126.93467911712399,56.025047671980694],[-126.93331663871339,56.0272172632909],[-126.93513141729089,56.02835986908974],[-126.93817222037788,56.02958300951759],[-126.94254028699758,56.030742471913904],[-126.946491566991,56.03253215699723],[-126.94952080120704,56.03437342282378],[-126.95224511911204,56.03627067124668],[-126.95518606021311,56.03743143802972],[-126.95741069627378,56.038642343282355],[-126.95900602437975,56.040879512802505],[-126.9605901179423,56.043968043162046],[-126.96187398035032,56.04648532853114],[-126.96387667623773,56.04895234919096],[-126.96677787531118,56.052622247345916],[-126.96834696660443,56.05657107474972],[-126.9698303106058,56.05959755724845],[-126.97254175403572,56.06253398837159],[-126.97666710329909,56.06637354327011],[-126.98040566127713,56.06890763913916],[-126.98425453281892,56.07080453874697],[-126.9884961352713,56.074024519215506],[-126.99112137052474,56.07603826073295],[-126.99601907696913,56.07634947849839],[-127.00019974510255,56.07671095572138],[-127.00150798736713,56.07802691038991],[-127.00350082755993,56.08140748276384],[-127.00568983114727,56.085127004942684],[-127.00552216910212,56.0895193158019],[-127.00149552524779,56.09230216884727],[-126.99747103812074,56.09491461296861],[-126.99642637940858,56.09627594093982],[-126.99412006956595,56.10010249632224],[-126.99344612070091,56.10391627873755],[-126.99423706128661,56.105693386585294],[-126.99469174835568,56.109462515957034],[-126.99526880773935,56.11181481397461],[-126.99617617769006,56.112730725207776],[-126.9976675359996,56.11530885068397],[-127.00090646580605,56.117604395544674],[-127.00610370897192,56.118710470926366],[-127.00849202337294,56.12300196284528],[-127.01025728469607,56.12815865416897],[-127.00868531974479,56.130662368707924],[-127.00628408873953,56.13396121871943],[-127.00612845054938,56.137331917921536],[-127.00632715868748,56.137733609283046],[-127.0063230419146,56.137966637243956],[-127.00401742452206,56.141443920480924],[-127.0006957202999,56.14461550129055],[-126.99543301551502,56.147622948942136],[-126.98779290533312,56.151930107897925],[-126.98363028859927,56.15619208299295],[-126.98356201317497,56.16047615551112],[-126.98278035624254,56.16470300807385],[-126.9773366383608,56.165703739735385],[-126.9758521229122,56.166593332547656],[-126.97299628535431,56.168308871786394],[-126.9709109516459,56.17064577846454],[-126.96556034111873,56.17215609194984],[-126.95912733872248,56.17115617403183],[-126.95576557907475,56.169944753504836],[-126.94955167585843,56.16813619153347],[-126.94600636855374,56.16589533062157],[-126.94340768324506,56.16211498333016],[-126.9388213938641,56.16083153681996],[-126.93145547212451,56.16056298112321],[-126.92993611242342,56.159758598451546],[-126.92840873724937,56.15912452147325],[-126.92368629681948,56.15406883011269],[-126.9222088417758,56.15069217320206],[-126.91878308397393,56.14765217649498],[-126.91227934934673,56.14498366311183],[-126.90761974456754,56.14240027321754],[-126.90454465844873,56.136955818211085],[-126.90329681438614,56.13237655234313],[-126.90167649469807,56.13140230725146],[-126.89867045670864,56.127892862683716],[-126.89579865028186,56.122688758236805],[-126.89474159752973,56.118905639262216],[-126.89256933767746,56.114610599578135],[-126.888545223761,56.110875100046954],[-126.88662751572828,56.109607040619046],[-126.87973037740159,56.10666191026144],[-126.8754927213679,56.10355477107556],[-126.87466795872238,56.09847058384989],[-126.87361214322158,56.09480382611915],[-126.87032043880234,56.09056095725928],[-126.86541446776074,56.08504759102138],[-126.8652169938398,56.0847621839695],[-126.8646722498109,56.081217354053315],[-126.86614182230878,56.07894919817381],[-126.8657513226232,56.078028881055324],[-126.86592661530926,56.0741476071239],[-126.8652560623027,56.07174168575756],[-126.86378377483854,56.068597458053596],[-126.86066505949633,56.06600202798251],[-126.86027399776559,56.06509066469236],[-126.85992363615554,56.061894002375276],[-126.85671669469549,56.05890480598163],[-126.85176704769778,56.05607955978507],[-126.84867373593536,56.0522918989125],[-126.84649511309635,56.048793788858596],[-126.84329287375051,56.04540997508067],[-126.8386785887429,56.04121102515193],[-126.83412807503863,56.039126240307915],[-126.8307307199644,56.035456670507166],[-126.82906337611699,56.03201767894495],[-126.82698752297419,56.028635096121704],[-126.82339783751439,56.024437924398065],[-126.81743407084434,56.0216090289421],[-126.81289470709442,56.01912021746837],[-126.80905367142695,56.01744222176182],[-126.80475997097916,56.01793545994719],[-126.79903003902244,56.01875122031983],[-126.79247267146252,56.02019913209144],[-126.78614763450996,56.02022052387901],[-126.78245881997046,56.02104976281109],[-126.78131827437782,56.02195284811297],[-126.7812864504899,56.023440509212115],[-126.77912862354152,56.024224379958184],[-126.7743592834443,56.023115548991896],[-126.76968026259352,56.02240026075974],[-126.76608061410813,56.02386468454678],[-126.76609690913467,56.02786102411207],[-126.76139250360052,56.03314024122324],[-126.75540142816087,56.03664377460877],[-126.7547356768328,56.03904022339085],[-126.75517125006739,56.04252332947039],[-126.75602926712334,56.045278111786814],[-126.75830958289812,56.04848140722469],[-126.7551359422705,56.048921456935446],[-126.75176733144178,56.04884286139267],[-126.74929432490232,56.04996858997327],[-126.74280804024902,56.04787402955818],[-126.74237532668819,56.044328139523486],[-126.74090315875742,56.04157685433884],[-126.7399543006678,56.038311753467475],[-126.74152728802311,56.03638500868975],[-126.74084029018869,56.035179333113064],[-126.74081202137494,56.031747583536],[-126.73873705552984,56.02870410306643],[-126.73383832227184,56.0242253268803],[-126.73201377045503,56.02358173438976],[-126.72408836907857,56.02227412292056],[-126.7160156709661,56.022785841568286],[-126.71536261459353,56.02467123711799],[-126.7153253216906,56.026382913119036],[-126.70969587479571,56.0270865345028],[-126.70151168771287,56.02811766001623],[-126.69345269163502,56.02806334788733],[-126.68919772443218,56.02666178276112],[-126.6862755237416,56.02520808036601],[-126.68504955762853,56.02525950139579],[-126.67789125599154,56.02595202666962],[-126.67104529490639,56.02647224798398],[-126.66947964499367,56.028003795665974],[-126.67085414763764,56.0302993947745],[-126.6714874005819,56.03367416485712],[-126.66606115502584,56.034374770122746],[-126.66137647214875,56.03405874603939],[-126.6556969872982,56.032538020054446],[-126.64904612435456,56.03339654114057],[-126.64767398073184,56.035213565087986],[-126.64825231025843,56.03670701964894],[-126.64938599566183,56.04042880378849],[-126.64605729251153,56.042909916038994],[-126.64314272321312,56.04529027993412],[-126.63946601124321,56.049547166068116],[-126.63684661651058,56.052329125422204],[-126.6324205986131,56.05377595195463],[-126.62606756788556,56.054649694820306],[-126.62288845302318,56.0553104728806],[-126.62294231373738,56.057191922072384],[-126.6249460337619,56.05875018210431],[-126.62842663675785,56.062541260012146],[-126.62622492786303,56.064810187169286],[-126.62258794190014,56.067354930291835],[-126.62223111260882,56.06934592498821],[-126.62347675549124,56.07267316103775],[-126.62355536241277,56.074080708852456],[-126.62355391760877,56.07411655832037],[-126.62353289920279,56.074251070323626],[-126.62349845124994,56.07442597086081],[-126.62347750336926,56.07456496282075],[-126.6234751097378,56.07466802142612],[-126.62347853366985,56.07482033480137],[-126.62348569403741,56.075018552933464],[-126.62352604379477,56.07521660835077],[-126.62361861497008,56.07540768724485],[-126.62363097039206,56.07542554785507],[-126.62372274646776,56.07556734728746],[-126.62379892719508,56.0756767409849],[-126.62386173702144,56.07576715895966],[-126.62391758577347,56.07586321143624],[-126.62397398457172,56.07599398352767],[-126.62402048332972,56.07613488485962],[-126.62404869691173,56.07626467515843],[-126.62407470354334,56.07638215545806],[-126.62408669709401,56.07650418482888],[-126.62405116461473,56.07667461067827],[-126.6239540742321,56.076896862044116],[-126.62386157093934,56.077218777586864],[-126.62389397925206,56.077740573957584],[-126.62401526167466,56.078219371484074],[-126.62408841748258,56.078391504252686],[-126.62411845447728,56.07844624058926],[-126.62416121910687,56.078541237204306],[-126.62419793143766,56.07863626351437],[-126.62425004469378,56.0787502555236],[-126.62435517975489,56.07897151457707],[-126.62447678772261,56.07921733436957],[-126.62461989412856,56.07935888135534],[-126.62481551541295,56.07944864667663],[-126.62492972499145,56.07954441214492],[-126.62494205806071,56.0797515657671],[-126.62493668182461,56.08017386121654],[-126.62492950640409,56.080609606496516],[-126.62492618425983,56.08084371897834],[-126.62492377133762,56.08107222662474],[-126.6249174709997,56.08143628277577],[-126.6249120975891,56.08179585410828],[-126.62489947252143,56.0822047445418],[-126.6248737411761,56.08261257934455],[-126.62486344170287,56.08278848220482],[-126.62486164251041,56.08280193198132],[-126.62485489154408,56.08281988639709],[-126.62485912939775,56.08283330651552],[-126.62487284110276,56.082873561966935],[-126.62489073406581,56.08298660195808],[-126.62489451947427,56.083161315567445],[-126.624892786297,56.08330581418478],[-126.62473415837272,56.08345556383229],[-126.62433833348241,56.083623278967714],[-126.62398197271861,56.083741515822126],[-126.62354164389761,56.08383216137196],[-126.62294630302975,56.08391908434876],[-126.62256024477603,56.08406882483282],[-126.62228323012054,56.08436924129337],[-126.62193654400068,56.08465543682034],[-126.62141046869381,56.08486074218039],[-126.62079997025609,56.08507317788082],[-126.62047898845799,56.08520243297966],[-126.62032401900223,56.08526703329703],[-126.62014596647039,56.085335106200375],[-126.62006793810723,56.085364608632695],[-126.62007110590152,56.08537355381856],[-126.62015614965686,56.08547058605497],[-126.62030607666085,56.08566138845326],[-126.62037731476354,56.08577528906153],[-126.62037752640539,56.08578872897383],[-126.6202707311738,56.08584525371689],[-126.61996510914061,56.085992353876335],[-126.61962231409544,56.08614299461451],[-126.61939198359373,56.086214681336735],[-126.61920940720549,56.086251412746705],[-126.61899749998682,56.086279325996834],[-126.61878961603439,56.08630609924277],[-126.61866113076114,56.08632688561943],[-126.61856570338314,56.086338550486694],[-126.6184241268973,56.086358280203655],[-126.61825535544911,56.08637702186415],[-126.61820229648299,56.08639520099706],[-126.61813023187763,56.08642019293648],[-126.61808970827619,56.08653127763763],[-126.61809294600396,56.08654470284965],[-126.61812970733102,56.08670693563579],[-126.61825822564539,56.08688104335423],[-126.61842728991807,56.08700903060978],[-126.61856850776934,56.08709346998372],[-126.61868014889589,56.08715341132047],[-126.61875010232706,56.087186673446794],[-126.6188058959828,56.08721440402247],[-126.61894729284641,56.08731116298918],[-126.61913320119044,56.08748611071437],[-126.61924182260789,56.087609910792125],[-126.61926452455093,56.087645642815396],[-126.61928939759501,56.08769144497965],[-126.61934631928119,56.08779085491604],[-126.61942244105072,56.08789577173867],[-126.61950386852155,56.08801858395492],[-126.61974668635042,56.08810028709257],[-126.62003868151317,56.088172789448436],[-126.62000765095964,56.08831183056888],[-126.6198689266649,56.08838531180008],[-126.61985296656938,56.08839435020692],[-126.61989351889072,56.08841319395715],[-126.61993601338641,56.08842754791104],[-126.61995628076617,56.08843640977774],[-126.61997261101145,56.08845089122798],[-126.62001416171734,56.08846973007498],[-126.62007921846731,56.08851085592736],[-126.62009999719676,56.088552197592826],[-126.6200904276166,56.0885836064745],[-126.62010387046618,56.08860594254253],[-126.62012527729561,56.0886237594675],[-126.62013348656454,56.08863380016718],[-126.6201469999819,56.088660616206624],[-126.62020037755066,56.088791405327214],[-126.62025669204823,56.08904426883144],[-126.62020781882282,56.089264042805205],[-126.62010424159378,56.08939671719082],[-126.62003827173059,56.089490005396854],[-126.61999121868901,56.08956976041624],[-126.61992173248628,56.08969442794821],[-126.61985826786692,56.089819066105505],[-126.61982293788397,56.0898763623412],[-126.61978426196337,56.08991239334334],[-126.61970728144057,56.09000909527091],[-126.6196218870747,56.09014728110769],[-126.61954123253504,56.09026640244152],[-126.61945535997592,56.09037322825031],[-126.6194338785978,56.090479740490764],[-126.61950987057476,56.09063954196734],[-126.61959423281911,56.09082058417695],[-126.61962662642786,56.090960436487975],[-126.61962329386131,56.09106798046802],[-126.61958968304238,56.091171191595755],[-126.61953873056882,56.091322650645125],[-126.61950861173167,56.09151993154759],[-126.61948741735475,56.091708208351235],[-126.6194681651349,56.09189199538231],[-126.61948179770795,56.092054340758594],[-126.61954237154801,56.09219405593551],[-126.61963151314123,56.09235827374573],[-126.61972265070293,56.09252136170286],[-126.619797051739,56.092644208214],[-126.61984570283201,56.09273021745997],[-126.61987065026472,56.09278049957692],[-126.6199142775783,56.092866533279604],[-126.6199596006441,56.09293239723989],[-126.62001421901739,56.09301277694761],[-126.62011384534088,56.09313998069635],[-126.62015899271564,56.09319464463495],[-126.62017446769396,56.093218090916594],[-126.62023477437023,56.093277161260936],[-126.62034493421002,56.093369590960634],[-126.6204296415303,56.093443103303635],[-126.62048068723331,56.09348877771933],[-126.62051750161487,56.09352556087182],[-126.62056739185947,56.09356228023556],[-126.62062766281281,56.09361799033494],[-126.620657335995,56.09364920787579],[-126.62067065735403,56.093663703953894],[-126.6207042152197,56.09368594187765],[-126.62079282614418,56.09375159437544],[-126.62090275910053,56.093829463661464],[-126.62094855363289,56.0938617225432],[-126.62096877106482,56.09386722427833],[-126.62100803095575,56.093867032653485],[-126.62107965798391,56.09387788383665],[-126.62125750115078,56.09392181882935],[-126.62148115594469,56.093998012187164],[-126.62162763264953,56.0940320191438],[-126.62170524430957,56.094038360408],[-126.62175248691885,56.09403476929951],[-126.62179988707057,56.09404013806137],[-126.62187769486911,56.094059919249034],[-126.62195975692649,56.09409312058017],[-126.62204085767014,56.094129686806276],[-126.62215339860012,56.094181780394685],[-126.62230851065767,56.09425158698483],[-126.62251654539094,56.0943592172605],[-126.62273529956907,56.09450711771082],[-126.6229181603641,56.09467759519323],[-126.62305584539597,56.094855014163954],[-126.62316601016803,56.09501016614126],[-126.62324898076368,56.09510160652608],[-126.62333355542813,56.09516615701319],[-126.62349736528817,56.09527736266545],[-126.62366406173639,56.0953795933022],[-126.62376869667506,56.09543956484799],[-126.62385218740614,56.095499639987544],[-126.62389504581402,56.09553639257866],[-126.62409037773993,56.09553991493724],[-126.62448501442219,56.09554357900602],[-126.62470147488203,56.09554699672188],[-126.62472363564409,56.09554800799592],[-126.62475663953056,56.09566097435195],[-126.62475841064477,56.09589954341093],[-126.62467925570532,56.096050023241304],[-126.62461043604058,56.09608956402576],[-126.62461079127691,56.09611196395123],[-126.62463719156285,56.0961263954314],[-126.62465853347753,56.09613973165689],[-126.62468910197373,56.09616310333084],[-126.62474900965488,56.09619529160792],[-126.62482495230184,56.09622404086353],[-126.62487759327496,56.09624282376407],[-126.62495886110008,56.09628946812549],[-126.62509004324299,56.09637282998431],[-126.62517231005793,56.09641946930628],[-126.62520884709643,56.096438331198776],[-126.62530010982863,56.09648044590148],[-126.62541287352369,56.09654485653184],[-126.62543970124806,56.09658616776017],[-126.62544221229986,56.09661751776299],[-126.62552779229051,56.09668206191884],[-126.62565874733765,56.09675198332538],[-126.6257489416203,56.09678962263504],[-126.62586135267333,56.09683275302246],[-126.62609085845872,56.09689546869405],[-126.62639458313336,56.09694213741866],[-126.62670787442025,56.09702012065832],[-126.62691484817199,56.097122148786276],[-126.62694239100912,56.09720825956228],[-126.62681141689552,56.097327633776736],[-126.62664892744101,56.09749084636225],[-126.62669558590089,56.09763958778125],[-126.62695860906636,56.09772117828339],[-126.62717575772692,56.09776603158797],[-126.62723832475118,56.09777580393511],[-126.62723666838313,56.097798213790725],[-126.62721650608074,56.097986487387004],[-126.62715923576317,56.09830935406294],[-126.62708874235152,56.09849675565125],[-126.62704226338163,56.09854962869092],[-126.62701578929492,56.09859344245845],[-126.62700916314779,56.09862035714593],[-126.62698960216449,56.09865629624918],[-126.62693644144565,56.098731603873134],[-126.62687702709614,56.09879350126654],[-126.62676539495344,56.09886349644809],[-126.62661880725322,56.0989504649508],[-126.62653190249736,56.09905618087134],[-126.62647434073716,56.09917183303507],[-126.62643019229301,56.099243735827024],[-126.62641089768844,56.099296474809236],[-126.6264021143563,56.099377164171074],[-126.6264072816371,56.09951266902829],[-126.62642310118262,56.09968396417786],[-126.62642990767375,56.09979593919047],[-126.6264327046759,56.09997177880742],[-126.62642409859245,56.09999982330718],[-126.62634852256093,56.10024885428605],[-126.62613387023671,56.10036079913702],[-126.62582839272861,56.10033317967574],[-126.62544040658732,56.1003070851364],[-126.62507622293298,56.10032231564888],[-126.62482137614516,56.10037621127512],[-126.62468849985282,56.10044070852103],[-126.62456821389172,56.100600351080196],[-126.62441149741267,56.10100211074375],[-126.62433920095908,56.10158490996363],[-126.62425776327193,56.10216327375595],[-126.62409268222126,56.1025460327798],[-126.62392180157443,56.102754086627215],[-126.62372955607744,56.102947683850836],[-126.6235124824086,56.10322652899138],[-126.62334070114734,56.10369556660976],[-126.62326729227415,56.1043366156455],[-126.62325875724558,56.10500646933946],[-126.62324892185582,56.10565728808178],[-126.62324486087807,56.10629127738716],[-126.62327403785403,56.10686237915656],[-126.62335907472158,56.10727303489032],[-126.62344140009394,56.10751233045544],[-126.62346540230854,56.10775639206637],[-126.62343492455186,56.108056724982916],[-126.62345867476333,56.108348951676895],[-126.62356359676677,56.108616138789735],[-126.62365343096137,56.10882067482213],[-126.62366913215102,56.10904909595618],[-126.62358715929108,56.1092768756079],[-126.62351023893069,56.10937918052742],[-126.62344914411344,56.10946348646373],[-126.6234160184651,56.10966078435108],[-126.62346308304272,56.10989913275321],[-126.62351222299581,56.11001314111228],[-126.62353091424886,56.11004889239498],[-126.62360801266296,56.110212047675915],[-126.62374271769883,56.11051605187324],[-126.62386584240451,56.11078763014126],[-126.62396200849412,56.111010056547215],[-126.62407421041556,56.111290648939615],[-126.62419020061385,56.111747076788255],[-126.62426191722044,56.1123325321193],[-126.62430357665714,56.11280052548957],[-126.62432685922363,56.112998667279435],[-126.62432475391783,56.11305692230442],[-126.6243281380447,56.11307930751362],[-126.62440972831546,56.11308114748248],[-126.62465062799694,56.11309452670561],[-126.6250057139566,56.11313310693562],[-126.62536007025963,56.113189611212945],[-126.62568564342357,56.113272018080615],[-126.6260061912312,56.11335444883961],[-126.62629328893303,56.11342360229699],[-126.62649653468706,56.113476366481464],[-126.62661597966708,56.1135149817207],[-126.62667871420918,56.113533714424506],[-126.62678628999568,56.11358582903195],[-126.62703724713671,56.11366187933165],[-126.6272797390791,56.113712208765165],[-126.62750034618655,56.113779446994236],[-126.62779037442134,56.113905707318764],[-126.62800437154144,56.113999859479044],[-126.62816762959919,56.114070739770135],[-126.62833556394307,56.114307370304],[-126.62866035107874,56.11471796039297],[-126.6292358978204,56.115128430551394],[-126.62960273882763,56.115459284017035],[-126.6296553464181,56.115600155421],[-126.62960145141265,56.11563066448255],[-126.62949061414263,56.11569057751382],[-126.62943571992676,56.1157210914461],[-126.62940018366129,56.115766070842575],[-126.62932000385429,56.115853834446064],[-126.62925826692312,56.11589782323694],[-126.62917148423016,56.115887051269894],[-126.6289970631883,56.11587447212472],[-126.6288527114681,56.11585390355624],[-126.62879113038564,56.11584412692422],[-126.62878746010354,56.11586654689684],[-126.62878111849069,56.115911381907964],[-126.62873750724789,56.1159552809115],[-126.6286835394983,56.11598130957306],[-126.62864828390482,56.11598036359215],[-126.62853113382421,56.11602350557575],[-126.6283785154885,56.11611498650146],[-126.62828899149295,56.11618487410156],[-126.62822128221578,56.11623337223223],[-126.62813844140057,56.11628082490008],[-126.62807354648794,56.116315867957994],[-126.62804561766495,56.116332807135265],[-126.62801863418929,56.11634638136587],[-126.6279836641555,56.116363355266465],[-126.62793962274615,56.11638037390492],[-126.6278706832478,56.11641543681009],[-126.62780159898317,56.116440419561386],[-126.62775244274049,56.11645298299034],[-126.62771617165672,56.11645204175683],[-126.62761974638525,56.116468198487105],[-126.627403884654,56.11650958587969],[-126.62718820264442,56.11656329303365],[-126.62703579311443,56.11660548725523],[-126.62688835516592,56.11664317644194],[-126.62667894575283,56.11671141303798],[-126.62641426326556,56.11678664183818],[-126.62623169417877,56.1168323437729],[-126.62611131206911,56.116862058310595],[-126.62595681489859,56.11689978113259],[-126.62584030030517,56.11691939556593],[-126.62570371587094,56.11694358890866],[-126.6254346636646,56.116997555388345],[-126.62511493509827,56.117094333655736],[-126.62488673207412,56.11718394132376],[-126.62474381748393,56.11725408848301],[-126.6246069430662,56.11732308575306],[-126.62452805275635,56.11736603630607],[-126.62450028157723,56.11739305475724],[-126.62444263615154,56.11744150149667],[-126.62438181757297,56.117479882943634],[-126.62434786173277,56.11749797095782],[-126.6243048164874,56.117514983446384],[-126.62420881345359,56.11755801772217],[-126.62408466569208,56.11760455018049],[-126.62395247886883,56.117652242011616],[-126.62381243043143,56.11771229324291],[-126.62369648022286,56.11776774588864],[-126.62359350544997,56.11781529422351],[-126.62344222814086,56.11786643931143],[-126.62325216147691,56.11794801661911],[-126.62307750958324,56.11804855976519],[-126.62288914921616,56.118174931868545],[-126.6227070057036,56.11831135411485],[-126.62260192017146,56.118417156770946],[-126.62252079162757,56.118509401086584],[-126.62242959180705,56.11860169459308],[-126.62231140449673,56.118707561070075],[-126.62219323266417,56.11881342736267],[-126.6221465107063,56.11885285893682],[-126.62209087444074,56.11890129479411],[-126.62196564367618,56.119007195370784],[-126.62186811567943,56.11908159791588],[-126.62183162176636,56.1191299401536],[-126.62183361163169,56.11919265561737],[-126.62186174930228,56.11925188308352],[-126.62190728296031,56.119328947048444],[-126.6219582867128,56.11943398659354],[-126.6219828741288,56.11952347388795],[-126.62198116076091,56.11954252383521],[-126.62197637459668,56.11962207380373],[-126.62198082139314,56.11971277959449],[-126.62204607343034,56.119762864961544],[-126.62216230738181,56.11978805911645],[-126.62225139428334,56.11981674613373],[-126.62228190891223,56.11983563856351],[-126.62230427806215,56.11984897033785],[-126.62233579180648,56.11986785787141],[-126.62237120851447,56.119877765573925],[-126.62243120512036,56.11991443532675],[-126.6225108589262,56.11998349163246],[-126.62258700366704,56.120021202447134],[-126.62265657588452,56.120026462664754],[-126.6227173755418,56.12004968724281],[-126.6227876904921,56.120100867572205],[-126.62286282053925,56.1201385831897],[-126.62296714943936,56.120176155889915],[-126.62311828365573,56.12024262185145],[-126.62322613906333,56.12031153969323],[-126.62327405151613,56.12034826821656],[-126.62332061025889,56.120362601485056],[-126.62337401418621,56.120363460100805],[-126.62343749108727,56.120365389461114],[-126.62352831062378,56.12037614562464],[-126.62367403014635,56.12041911549873],[-126.62385652171058,56.12049438773103],[-126.62398107924786,56.120600186188305],[-126.62405864716476,56.12072749664891],[-126.62413743234428,56.120805516986145],[-126.62422853728108,56.12083419275599],[-126.62430525806012,56.12084501750022],[-126.6243596617531,56.12084587080334],[-126.62440716561528,56.1208557186726],[-126.62444256761914,56.1208656258816],[-126.62454000014147,56.12091219189406],[-126.62472803719572,56.12101879833093],[-126.62495213560773,56.121176751804434],[-126.62512489821586,56.12133719716193],[-126.62519347112247,56.121405186176524],[-126.6252017596814,56.12141970669602],[-126.62519808683497,56.121442126611456],[-126.62517380698144,56.1214993706316],[-126.625145674609,56.12156671441084],[-126.62513825766725,56.12160707421423],[-126.62514809680498,56.121656310040414],[-126.62515750610177,56.121741390988184],[-126.62516866294328,56.12180966194517],[-126.62518167406247,56.121867842950465],[-126.62521167174783,56.1219808251567],[-126.62525772831621,56.1221530934932],[-126.62530052436395,56.122310816612895],[-126.62532346436107,56.12242383347714],[-126.62534194698117,56.122508869874544],[-126.62537850742041,56.12259157728815],[-126.6254652116682,56.12272332252866],[-126.62556623088253,56.12286843852134],[-126.62564042266895,56.122973362867064],[-126.62569072722795,56.123032480683555],[-126.62572181577983,56.12308721254257],[-126.62575096123321,56.1231464343244],[-126.62576714748101,56.123214680553346],[-126.62576541601457,56.123295335889516],[-126.62577511195381,56.123398336961074],[-126.62580259945247,56.123479968786214],[-126.62581921351686,56.12351124978257],[-126.6258174127895,56.12352469977269],[-126.6258182854088,56.123579580135605],[-126.62581883729106,56.12367814578054],[-126.62582796357805,56.12374530662287],[-126.62584078040913,56.12379116752008],[-126.62585897983098,56.12385828376511],[-126.6258698356143,56.1239713600078],[-126.6258611169065,56.12405653009564],[-126.62580310532628,56.124145302757405],[-126.6256856226481,56.12429597289317],[-126.62555014949703,56.12445457198039],[-126.62543901175535,56.124560406911115],[-126.62534363341594,56.12464376244003],[-126.62524925386059,56.12472711299339],[-126.62516195049112,56.12481154882952],[-126.62507880026548,56.12490380488553],[-126.62496197216528,56.12503206924905],[-126.62483909976062,56.1251603631695],[-126.62475480660723,56.125243663863316],[-126.6246723870664,56.1253191146416],[-126.62458413526372,56.125406915027206],[-126.62450183945771,56.1254902057583],[-126.6244225198556,56.12557012155505],[-126.62437192129839,56.12561853379221],[-126.62433713854543,56.12564894693037],[-126.62428438311278,56.12568840894408],[-126.6242097356996,56.12574589978985],[-126.62409313613799,56.12582487804103],[-126.62394758338337,56.12592079950187],[-126.62382829019091,56.12602107252814],[-126.62373313565536,56.126118987009896],[-126.62368287440768,56.12618979923794],[-126.62366659282469,56.12624252348677],[-126.62362052017231,56.126323396038515],[-126.62355248053943,56.126415577109505],[-126.62349474580232,56.12652338902878],[-126.62347549925104,56.12664333352955],[-126.62346691271495,56.12680130909979],[-126.62346292147578,56.12699398515591],[-126.62346546837942,56.127027575567055],[-126.62304240020434,56.12702964634746],[-126.60271189982407,56.127127500497686],[-126.60000042709856,56.13250555630207],[-126.59186445852556,56.14863270844461],[-126.59185857988156,56.148643936763506],[-126.60000012152531,56.153168033674326],[-126.60091615490299,56.15367672452053],[-126.60743870723385,56.16492751996414],[-126.60302344126039,56.17244314929009],[-126.60000015574035,56.173455435018724],[-126.56428289118715,56.18541106212802],[-126.56424558568776,56.18548291445319],[-126.56411938416309,56.18568733343193],[-126.56398056109221,56.18585596448657],[-126.56389492759287,56.185934751125785],[-126.56367510737745,56.186083577951095],[-126.56330944664234,56.18626441188712],[-126.56295272168428,56.186293989996166],[-126.56262237015214,56.186333531771695],[-126.56256293727144,56.186339394539],[-126.56240620262712,56.186526024714915],[-126.562352991632,56.186614748347445],[-126.56240601442123,56.186794852812234],[-126.56252514073336,56.18694106228529],[-126.56251697622352,56.18707551195323],[-126.56248293178287,56.187093583940396],[-126.56209651731984,56.187094167619485],[-126.56183339907243,56.18717933563144],[-126.56181386251114,56.1872242262523],[-126.56185074188942,56.18740440210225],[-126.56187487462617,56.18753982955958],[-126.5617756136612,56.18758283118759],[-126.56175856697187,56.18759074707734],[-126.56166257278181,56.1875799687579],[-126.56136093907169,56.18751184981581],[-126.56116314467705,56.18757992716591],[-126.56101707523693,56.18759513131873],[-126.56100002838947,56.187603047107075],[-126.56098225256424,56.187630008035484],[-126.56099512647693,56.18768371686956],[-126.56120875516122,56.18787655664856],[-126.56131350004483,56.18800490877227],[-126.5613213452376,56.18813032702079],[-126.56126549485498,56.18824706470679],[-126.56106771273643,56.188315141857636],[-126.56089034106311,56.188329363454194],[-126.56086989780371,56.18838209873063],[-126.5609142152494,56.18844687044029],[-126.56117879723824,56.18860476268286],[-126.56144325332735,56.188753694034624],[-126.56177643665144,56.188840715831624],[-126.56193113444093,56.18893412391237],[-126.56196638259264,56.18914118979911],[-126.5620542302699,56.18928641758099],[-126.56183538517435,56.18943523702113],[-126.56173183530416,56.189532023030175],[-126.56178500330314,56.18972220835979],[-126.56205186321067,56.18982632337063],[-126.56237544667482,56.18980585495011],[-126.5625555867096,56.18977257714015],[-126.56290883736442,56.18977997937367],[-126.56309029741843,56.189980799039404],[-126.5628085137939,56.190101895179936],[-126.56276968057303,56.190208477488504],[-126.56262108031152,56.19025953830875],[-126.56226606397009,56.190270064885496],[-126.5619212890491,56.190362313757575],[-126.56185595650925,56.19037940332292],[-126.56148466784973,56.190381038484404],[-126.5612927778931,56.190368441765926],[-126.56104193131459,56.190255293773525],[-126.56089496278277,56.190279462633995],[-126.56096163578535,56.190496471717964],[-126.56102458984284,56.190524197680894],[-126.56105362382205,56.19057895560205],[-126.56104031142524,56.19077727455864],[-126.56101182455971,56.19097342004823],[-126.56099417514862,56.191009341374325],[-126.56061294641233,56.191163353381945],[-126.56052907283876,56.191225328378444],[-126.56052656533475,56.19126118309192],[-126.56058863111802,56.191297874109885],[-126.56092261131487,56.191368093076264],[-126.56105015634868,56.19139665506758],[-126.56135020145527,56.191492784860685],[-126.56151941837611,56.19161301245184],[-126.56144742023059,56.191728701335826],[-126.56121239963497,56.191876470870206],[-126.56107755557039,56.19197227398913],[-126.5609369351187,56.19215883175462],[-126.56088018887468,56.1922834141791],[-126.5610384222581,56.192340964261085],[-126.56140884042743,56.19234829523869],[-126.56160086816388,56.19236985215686],[-126.56159836156488,56.192405706907564],[-126.56149567615155,56.192493528066564],[-126.56113083483294,56.19266539137079],[-126.56079108323688,56.19268592764041],[-126.56040199421373,56.192714520605065],[-126.56004355770632,56.192769860573456],[-126.55973358408124,56.19282722709025],[-126.5593615102597,56.1928467812717],[-126.55906693312414,56.19292200049416],[-126.55875027059624,56.193076844022436],[-126.55871143935377,56.19318454526702],[-126.55878979400259,56.19323124688428],[-126.55888152896947,56.193295811683264],[-126.55923593928695,56.19331105996782],[-126.55940930153197,56.193368545766994],[-126.55948414783954,56.19345110607368],[-126.55946649591881,56.193487027223625],[-126.55911766926341,56.193650973695966],[-126.55901422907628,56.193756718031835],[-126.55901717725719,56.19396392664062],[-126.55921628921335,56.19412883105344],[-126.55924281447173,56.19421944419459],[-126.55884300515723,56.1944183370709],[-126.55881780826286,56.194561822395315],[-126.55880088539185,56.19457869828654],[-126.55859728561688,56.19473752655815],[-126.558576979482,56.194799221906116],[-126.55870987848688,56.19499129992511],[-126.55884352508433,56.19516433256255],[-126.55894589994183,56.195337502117056],[-126.55914338299324,56.195529296711996],[-126.5592447429773,56.19570247051055],[-126.55937852192773,56.19588446301562],[-126.55939761752566,56.19609160098561],[-126.55948548719893,56.1962379509844],[-126.55973457253171,56.19636791194685],[-126.55973828655134,56.19655719552796],[-126.5596891998,56.196583173626806],[-126.5593485239746,56.19661267093033],[-126.55914729766585,56.19672556493892],[-126.5591569008292,56.19683305414153],[-126.55933915226264,56.19701707452822],[-126.55931141443018,56.19719529489564],[-126.55929985410035,56.19737568457271],[-126.55927225934073,56.19756398539045],[-126.55925357223869,56.1975987909812],[-126.55921964472539,56.19762582255806],[-126.55914270586575,56.197821060387064],[-126.55904785665984,56.19803541868703],[-126.55877975075077,56.19820125079178],[-126.55859566198916,56.19831406888687],[-126.55846153576265,56.19839194432355],[-126.55815076901008,56.198467232282894],[-126.55788666015805,56.19856023732777],[-126.5577049825456,56.19862935897442],[-126.55768216217494,56.19872802915909],[-126.55787018316536,56.19882129697233],[-126.55788469305948,56.19884811635833],[-126.55786691000809,56.198875076972755],[-126.55761808626426,56.198978095681596],[-126.55760028707321,56.19900393621118],[-126.5576462478505,56.19904181933038],[-126.5576938133772,56.19905169245483],[-126.55804814787496,56.19905798368253],[-126.55836779060391,56.19910923052811],[-126.55842988269144,56.19914704276001],[-126.5584095740144,56.199208738189526],[-126.55832555243894,56.19926175154296],[-126.55814547670353,56.19930286384679],[-126.55781273961999,56.199466736480524],[-126.5576998079418,56.19947395096749],[-126.55749398478886,56.19940652339771],[-126.55723655920963,56.1994020475668],[-126.55715340991371,56.19944497526553],[-126.55713222479552,56.19951675538551],[-126.55731269919113,56.199717588419716],[-126.55732155094697,56.19984412317276],[-126.55720520096239,56.19989503678627],[-126.55704381133988,56.19990134222225],[-126.55697593336795,56.199954284191676],[-126.55697416908802,56.19997221379633],[-126.55697860283462,56.200000197409224],[-126.55698410148798,56.20003153672935],[-126.55699791011503,56.20022301677258],[-126.55686635367839,56.20923944478546],[-126.55688375610328,56.209541802062176],[-126.56469190794182,56.22145811811559],[-126.56508409975598,56.221625521922],[-126.56530953403644,56.2217835820708],[-126.56537628831153,56.22186057534762],[-126.56547241422595,56.221944159249546],[-126.56561973800008,56.222076801927706],[-126.56589684326873,56.2223164015938],[-126.56621177351016,56.222587196554706],[-126.56635083017322,56.22270643355489],[-126.56647500778271,56.22284365853413],[-126.56678014034257,56.22320522624379],[-126.56709343770396,56.22357123755064],[-126.56725570313411,56.22375869850814],[-126.56733768436936,56.2238412238367],[-126.56745902581149,56.22399190213137],[-126.56758153406501,56.224223224575965],[-126.56761991130551,56.22436307031841],[-126.56761328798825,56.22439446344522],[-126.56765712277344,56.22442227179273],[-126.56777641263933,56.224501270555194],[-126.56790082494592,56.2245847269462],[-126.56795892719543,56.22462143276748],[-126.56799575050384,56.22465375272644],[-126.56804892542847,56.22469944148534],[-126.56811436417877,56.224755156824386],[-126.56818597551089,56.22481868557652],[-126.56825039675356,56.224874405379396],[-126.56830539735535,56.2249066443323],[-126.56837361491577,56.22494442506934],[-126.5684774279043,56.22499996935634],[-126.56859040265986,56.225061073409826],[-126.56865684446461,56.22511566388528],[-126.56870315482581,56.225175944679506],[-126.5687382029986,56.22522507432135],[-126.56878323599157,56.2252663185417],[-126.56885353922155,56.225308570266286],[-126.56894706071697,56.22535071846792],[-126.56912400594412,56.22543505969226],[-126.56936700572345,56.225548229493334],[-126.5695684489437,56.22565038295508],[-126.5697160544344,56.225730373762964],[-126.56983488094316,56.22577688891609],[-126.56988870349086,56.22579681101535],[-126.56988277448879,56.22580579854232],[-126.56988025716133,56.225841654009834],[-126.56990559915431,56.225917709858535],[-126.56994819809475,56.22599928931615],[-126.56997303620513,56.226040623306616],[-126.57001800637852,56.2260773868664],[-126.5701077517898,56.22613747322384],[-126.57017117614693,56.22619319656139],[-126.57020125104181,56.22624794870994],[-126.5702224243293,56.22631506207392],[-126.57023527476117,56.2263654106294],[-126.57032265053344,56.22647031273268],[-126.5704928920942,56.226648773221974],[-126.57058921970251,56.2267446740922],[-126.57059742890277,56.22675359845922],[-126.57060969386939,56.22676362482902],[-126.57064758828729,56.22680041981289],[-126.57069592331409,56.2268595707645],[-126.57063870200831,56.22695279758913],[-126.57047566304391,56.227062179187605],[-126.57043713958848,56.227191166615974],[-126.57051802647166,56.2273364224128],[-126.57055847821681,56.22740905025918],[-126.57056885383814,56.22742804614483],[-126.57079354551584,56.227531214027714],[-126.57128796185309,56.22770710351391],[-126.57190528045453,56.22786227816703],[-126.57253178281738,56.228023009345904],[-126.57287359463972,56.22819173618324],[-126.57296615378172,56.22830557441362],[-126.57311692865575,56.22839450829633],[-126.57332028520277,56.22848768640499],[-126.5734127681482,56.22852647570781],[-126.57345442840462,56.228544210713224],[-126.5735784728174,56.22860078025868],[-126.57373706764639,56.22867175615182],[-126.57388474211518,56.22875510241921],[-126.57401941115211,56.22884746807381],[-126.57407450395804,56.22888530489524],[-126.57401945774535,56.22892027657993],[-126.5739136829018,56.22900812261372],[-126.57386005786732,56.22920886769893],[-126.57386231163436,56.22950121261529],[-126.57386232215335,56.22964010923133],[-126.57386158227635,56.22965803470787],[-126.57397324940251,56.229696737400175],[-126.574343348373,56.22972643664432],[-126.57475359979254,56.22973915203326],[-126.5750572729413,56.2297848301399],[-126.57538383880168,56.22987632987375],[-126.57559067338626,56.22993028408805],[-126.57569915721332,56.22995891842551],[-126.57584928738466,56.23000304671134],[-126.57592937757927,56.230022847849305],[-126.57594768821988,56.230031726321236],[-126.57596189331427,56.2300361427739],[-126.57601974847071,56.23005604416943],[-126.57625230225132,56.23014124505381],[-126.57664622223267,56.23027948322598],[-126.57690927541282,56.23037910692338],[-126.57696752636738,56.230424769217],[-126.57696749611458,56.23049197746488],[-126.576967320062,56.23061743340653],[-126.57696841168564,56.2308291340464],[-126.57703309073963,56.2310371869071],[-126.57720515274482,56.231130500475146],[-126.57752508164036,56.23118169998065],[-126.57808437398671,56.23130014333318],[-126.57862097637576,56.23145453144283],[-126.57888486229459,56.23154070577048],[-126.57906580399944,56.23168774314497],[-126.57925986517223,56.23197025722648],[-126.57940463847785,56.232198108072126],[-126.57952585362942,56.232335334672534],[-126.57968270949007,56.23249144166896],[-126.57982412692856,56.232628576282146],[-126.57987537256919,56.232678749682705],[-126.57989154946438,56.2326797963436],[-126.57998934798965,56.23266815073168],[-126.58026995991825,56.23272288247896],[-126.58065912685767,56.232879052388284],[-126.58097449664984,56.23296162793848],[-126.58131227134878,56.23305754235062],[-126.58167792922308,56.233330310505295],[-126.58185437883579,56.23351320897738],[-126.58188112148895,56.23354557107855],[-126.58189641306737,56.23355446248334],[-126.58198686356708,56.23359213487383],[-126.58213053387604,56.233675490186954],[-126.58248127807974,56.23369181268453],[-126.5831922212725,56.23361127772175],[-126.5838920429925,56.233530789652086],[-126.58441664970404,56.2334197360408],[-126.58481610907269,56.23324764601145],[-126.58508354274508,56.23309520216763],[-126.5854629953679,56.23286943519669],[-126.58593714961202,56.232559222206795],[-126.58622115091565,56.2323674951393],[-126.58629221744333,56.232323483450486],[-126.58631720869744,56.23230656662306],[-126.58637420179302,56.23226710006846],[-126.58640019433278,56.232249058488726],[-126.58653436693561,56.23223836091357],[-126.58681693518831,56.23222138051474],[-126.58701227704209,56.23224736579605],[-126.58712086266236,56.232348798982706],[-126.58722019981953,56.232440193385685],[-126.587313690988,56.23247784801129],[-126.58743117129558,56.232498590132],[-126.58749596321246,56.23250837323529],[-126.58753733166976,56.23250482245239],[-126.58755888602482,56.23252824614546],[-126.58762327973814,56.23257835596861],[-126.58786510672509,56.232673574527944],[-126.58823059412337,56.23279734652762],[-126.58851917063389,56.232911390811445],[-126.58863535510031,56.23298030373783],[-126.5887381555589,56.23309968448752],[-126.58891275140165,56.233291542986265],[-126.58912022777817,56.233385797535696],[-126.58940003408388,56.23338674639972],[-126.5896481915462,56.23343152621171],[-126.58981073220257,56.233560711466104],[-126.58992256891636,56.233675569015915],[-126.58998803684105,56.23373015328281],[-126.59006038199003,56.23377238421183],[-126.5901346961936,56.23381012544628],[-126.59016411428189,56.23381895057479],[-126.590205888096,56.233842280380046],[-126.59039583770517,56.233913091016696],[-126.59065006997939,56.234026169274884],[-126.59076250785161,56.23411414001924],[-126.5907966739341,56.23416886872156],[-126.59086927368385,56.23422790011052],[-126.59098064318441,56.23431139506416],[-126.59111126377883,56.23439928135458],[-126.59118671712994,56.23444597783359],[-126.5911999748738,56.234454877556],[-126.59122032804005,56.23446486456001],[-126.59138710963445,56.234539141459095],[-126.59166925954314,56.2348279502692],[-126.59186107564125,56.23522247038242],[-126.59198093167633,56.23540001689025],[-126.59207509854443,56.235415262207],[-126.59232019501128,56.235523899082864],[-126.59271631016045,56.235733767239346],[-126.59292852582287,56.23587279938651],[-126.59302856513101,56.2359417834496],[-126.59318420255279,56.23601274943135],[-126.59332734750164,56.236060250342135],[-126.5934077298272,56.236097961543535],[-126.59342711702388,56.23611131311827],[-126.5935602454477,56.23616334088625],[-126.59377751038036,56.23623513979542],[-126.59389116828446,56.236269335528526],[-126.59400333166604,56.23633826245835],[-126.59425436360785,56.2365051153927],[-126.59450108573417,56.23665406567628],[-126.59463932784028,56.23671054909782],[-126.59468197366458,56.236724912308766],[-126.59470297452616,56.23671137281169],[-126.59476731691745,56.23669091058579],[-126.59483366251133,56.23666931885466],[-126.59485785452584,56.23666584572905],[-126.5948850680073,56.236661238381245],[-126.59490662903008,56.23668466087371],[-126.59492698397543,56.236760735582536],[-126.59495287394844,56.23686926857418],[-126.594987100031,56.236928476538175],[-126.5949871847128,56.2370001651381],[-126.59493949693976,56.23712024238749],[-126.59490705344422,56.23717864086349],[-126.59499260125357,56.23715807972181],[-126.59516989246848,56.23712476937117],[-126.59530766149149,56.23714989035851],[-126.59540173237667,56.23722450116308],[-126.59549115188481,56.2373248968329],[-126.59560758429407,56.237475572782316],[-126.59572496781963,56.23762176363779],[-126.59582233422208,56.237713160895616],[-126.59589834375794,56.23779569662762],[-126.59599448864874,56.23787365777211],[-126.59614324707539,56.23795697392502],[-126.59627760866293,56.23802355502367],[-126.59645648579382,56.238094408616696],[-126.59676203712657,56.23825764173731],[-126.59706409561359,56.238456735009784],[-126.59727671278208,56.238554313110484],[-126.5974704308238,56.23860381320731],[-126.59763097611483,56.23866466969402],[-126.59771250647267,56.23871133403057],[-126.59786031619568,56.238731924746396],[-126.59810595142278,56.238741975835175],[-126.59828097600425,56.2387579580203],[-126.59841505362087,56.23880549584063],[-126.5986011551034,56.2388863939074],[-126.59879540623574,56.23897061391832],[-126.59890394906964,56.23900034870408],[-126.59892415271274,56.23900025394216],[-126.59894442473174,56.239004639424444],[-126.59909629403516,56.239026329820526],[-126.59938660905017,56.2391168190539],[-126.59959677780705,56.239251369547524],[-126.59969515937857,56.239342759207936],[-126.59978896996861,56.239399445857],[-126.5998480576017,56.23943165242771],[-126.59986435765549,56.23944053699418],[-126.59988580237145,56.23945499810135],[-126.59993067895432,56.239482790826955],[-126.5999601719901,56.23949609396657],[-126.6000005969059,56.23949702416722],[-126.60011319905415,56.239526738868776],[-126.6003151793517,56.23958851744613],[-126.6005872241105,56.239738457450535],[-126.60081823230809,56.23998044168487],[-126.60084773880578,56.240192009832256],[-126.60078580105271,56.24030319539597],[-126.60078156494927,56.240356982183876],[-126.60082678616432,56.240407175849484],[-126.60090657791349,56.24047176868269],[-126.60107707686896,56.240587461112405],[-126.60129243964067,56.240730945657475],[-126.60144636520079,56.240819832219394],[-126.60162821833278,56.24088618416342],[-126.6018737876943,56.241021684442096],[-126.60195886038545,56.24116690208215],[-126.6019548319671,56.24123412967763],[-126.60205752720101,56.24127621099436],[-126.6022712763352,56.24137937640358],[-126.60245665373918,56.241477074601676],[-126.6025632545806,56.241511296089925],[-126.60265441756479,56.2415265479053],[-126.60272658324013,56.24155421090344],[-126.60274694302149,56.241564196099134],[-126.6027654027465,56.24158203126634],[-126.60280686219888,56.24165016433094],[-126.60282832323458,56.24173183351774],[-126.60282980717469,56.24176319053904],[-126.60291490932853,56.24177847078434],[-126.60308877236494,56.24184933900663],[-126.60319203600318,56.24199446999324],[-126.60324749653505,56.242184632496986],[-126.60333257683072,56.242329849291636],[-126.6033988528618,56.24243482970245],[-126.60344134774705,56.2425701663571],[-126.60346443288512,56.2426921529976],[-126.60346689811718,56.24278623347321],[-126.60347685787538,56.24290828214711],[-126.60349179213783,56.24302582674066],[-126.60351822873861,56.243101871632504],[-126.603580778492,56.24316206381811],[-126.60368684792559,56.24322653083433],[-126.60380405623675,56.243292065244965],[-126.60389663974341,56.24333419296245],[-126.60393627335583,56.24334856741598],[-126.60395870668046,56.243361903059764],[-126.60401296827399,56.24340869250557],[-126.60409095769145,56.2434867337447],[-126.60414319793924,56.243532412555986],[-126.60418404100464,56.24356022295153],[-126.60423592035318,56.243583500537746],[-126.60428990552252,56.24361124871836],[-126.60440414600934,56.243681277221924],[-126.60454607116623,56.243778058053415],[-126.6045984503914,56.24383269719056],[-126.60463114260567,56.243856065457564],[-126.60468397196028,56.24387485778971],[-126.604781427519,56.243904640222176],[-126.60499326449091,56.243948442652766],[-126.60523112702386,56.243975319219366],[-126.6053797035489,56.24397909557685],[-126.60551608613333,56.24397732885302],[-126.60563930931332,56.243974504246445],[-126.60568789060697,56.243979874570634],[-126.60570528254513,56.243994353970926],[-126.60586980095798,56.244113429110705],[-126.60626619788182,56.24439606484601],[-126.60660406875596,56.244618489551286],[-126.60673431060556,56.24474220702142],[-126.60681643955428,56.24489191634119],[-126.60689101979874,56.245010297408115],[-126.60704846561381,56.245129404726335],[-126.60727010937822,56.24528293114053],[-126.60736911011138,56.24534742882275],[-126.6074506659343,56.24539408707016],[-126.60760847921493,56.24553671505475],[-126.60767465448299,56.24569882140555],[-126.6076696331197,56.24576605407623],[-126.60771865059417,56.24579942522682],[-126.60782956945371,56.24585042410626],[-126.6079324218975,56.24590146128936],[-126.60798446276048,56.24593481794989],[-126.60804112967976,56.24594014890407],[-126.6081457950397,56.245977735530566],[-126.6082686878202,56.246083564199886],[-126.60839374093057,56.246198343640515],[-126.60848062140472,56.24626289824222],[-126.6085040937612,56.24627734831525],[-126.60852349112368,56.24629069765373],[-126.60862372339481,56.24636863030518],[-126.60877311430781,56.24648889414738],[-126.60885185969184,56.246549006699894],[-126.6088927092344,56.246576815624145],[-126.60897116067555,56.24661900715806],[-126.60905128410533,56.24663766758645],[-126.60918331137785,56.24668072363514],[-126.60938094258664,56.24678395448322],[-126.60948224971389,56.246866361950644],[-126.60948180415627,56.24690220878371],[-126.60948301523666,56.246915644769444],[-126.60949039178635,56.24693465206801],[-126.60951250654519,56.24699279418032],[-126.60954510681906,56.24707440933827],[-126.60960202745095,56.24716150914697],[-126.60967922457782,56.24725187258512],[-126.60971731465519,56.24729761678973],[-126.60970539877913,56.24731111544282],[-126.60967666233985,56.247347097337546],[-126.60961525336236,56.24742692092765],[-126.60959435535544,56.24757824057286],[-126.60968238830492,56.24771559850399],[-126.60975079102793,56.24776119800482],[-126.60978402067124,56.247753198324105],[-126.60989868465892,56.2477190463921],[-126.61004758029311,56.24767688982157],[-126.61018996952187,56.247671729030706],[-126.6103311032526,56.247714740426545],[-126.61040745057808,56.2477513404332],[-126.61041266751816,56.247761396828366],[-126.61044353734137,56.24779709401152],[-126.61047431235879,56.24789215946811],[-126.61038726072947,56.248012431333564],[-126.61033073011909,56.2481459990707],[-126.61041201698107,56.2483046715962],[-126.61041547505482,56.248461475777006],[-126.61038623478505,56.24859603327836],[-126.61046045786411,56.248754739565996],[-126.61055381945422,56.24890999389275],[-126.61059962082143,56.24899602635151],[-126.61060898558202,56.24901390395309],[-126.61060529245252,56.24903632457368],[-126.61058661757264,56.24913498689859],[-126.61060447547194,56.249243555913495],[-126.61070308942706,56.24928116947926],[-126.61079367358015,56.249323301963926],[-126.61085752452341,56.249400286845606],[-126.61092954652422,56.249482833358094],[-126.61096663785702,56.24952858202705],[-126.61099773632948,56.24957883994902],[-126.61104650912378,56.24966037747097],[-126.61106829627438,56.249697238141756],[-126.61106597077732,56.2497420552125],[-126.61108221059935,56.249876395356885],[-126.61111593437205,56.25003081453306],[-126.61112729517308,56.25011141088939],[-126.61110650215986,56.25013839394673],[-126.61113681618298,56.25013824890603],[-126.6112231515139,56.25016695965583],[-126.61131396386197,56.25022253249419],[-126.61142735722235,56.25030152030528],[-126.61159056914977,56.25039931201957],[-126.61170287386949,56.250472704064336],[-126.61180994257454,56.25053379945476],[-126.61196389678099,56.250621553711774],[-126.61204762977823,56.25067715996705],[-126.61214132803227,56.25072375721755],[-126.61234093843309,56.250822493711254],[-126.61250798691765,56.250906824110515],[-126.61255383416069,56.25093012738491],[-126.61258646707243,56.25094901342204],[-126.6126943834332,56.25100002268568],[-126.61283182366604,56.25106545215515],[-126.61294879068441,56.25111305733653],[-126.61304040005587,56.25115518337193],[-126.61316571546858,56.25122067068425],[-126.61333601711937,56.25131842621067],[-126.6134513511494,56.25139180222831],[-126.61348918557778,56.25141962425897],[-126.61353111595862,56.25145190720398],[-126.61360886000723,56.251512021840064],[-126.61367953884975,56.25157217037621],[-126.61371879654511,56.2516268691015],[-126.61378951216498,56.2516903778545],[-126.61395333367824,56.25176128013363],[-126.61412205998994,56.251823197425544],[-126.61420254856837,56.25186537612114],[-126.61425602461443,56.251924486923286],[-126.61432178484436,56.25199361997694],[-126.61436176428012,56.252029272496664],[-126.6143720272985,56.25203930448511],[-126.61434875980693,56.252038296245495],[-126.61418324264807,56.25211638257785],[-126.61391477244452,56.252267773314856],[-126.61378282046502,56.25236025975408],[-126.61381464684116,56.25239259117585],[-126.61384617183896,56.252469730049796],[-126.61375419848157,56.25259786914436],[-126.61354551194042,56.252760173346815],[-126.61329963442724,56.252934977437185],[-126.6130306603198,56.253118853107544],[-126.61280159958801,56.25327117252528],[-126.6126946335667,56.25334561557223],[-126.61264269717051,56.2533850699457],[-126.61255167334782,56.253445994605094],[-126.61238157536685,56.25355546478639],[-126.61211823662613,56.25371242791042],[-126.61188593564118,56.2538513194095],[-126.61176777213562,56.25392133471675],[-126.61163572221867,56.2540082186666],[-126.6113787738245,56.25418755268402],[-126.61113389637174,56.25436234783437],[-126.61103182945034,56.254427804848646],[-126.61096256247146,56.25445838023312],[-126.6108188425841,56.25450947432894],[-126.6106381934611,56.25459098887298],[-126.61045616730993,56.2547139553233],[-126.61026443488609,56.25486273135674],[-126.61004958862645,56.25502057869762],[-126.60986370779162,56.255155884376975],[-126.60977397279171,56.25523472332524],[-126.60973041171005,56.25529317910812],[-126.60968118726348,56.25537742538143],[-126.60964092688042,56.25545266764925],[-126.60962624709997,56.25548410193716],[-126.60958643206278,56.25552349722813],[-126.609477711014,56.25561586838643],[-126.60933164095017,56.255711778064445],[-126.60922248513539,56.255777267452196],[-126.60914431824298,56.25582020595702],[-126.60905115654627,56.25587329726685],[-126.60892683125559,56.255937738573415],[-126.6087542739593,56.256020332031376],[-126.60856364638411,56.256110852400276],[-126.60844220434332,56.25616631828847],[-126.6083920032443,56.256187840256196],[-126.6083618929807,56.25620142546865],[-126.60833689601174,56.25621834677801],[-126.60828728049007,56.256212982285],[-126.60804324761212,56.25624886875016],[-126.60743311882824,56.25646572025567],[-126.60664043431164,56.25677416813102],[-126.60603393418361,56.25696523221401],[-126.6057229688604,56.25705295869384],[-126.60559339900055,56.25710509994673],[-126.60551285840374,56.257125644447676],[-126.60545139094789,56.25713825744488],[-126.6051637624001,56.25723147271022],[-126.60438215541367,56.25734158725309],[-126.60346393025814,56.257310083226585],[-126.60281307385006,56.257248187324784],[-126.60249721723505,56.257214952691086],[-126.60240783274432,56.25718625029433],[-126.60237226168012,56.25717297621521],[-126.60234083745928,56.25716752363046],[-126.60230039427834,56.25716659416387],[-126.6022417594076,56.25716575044596],[-126.60216902702788,56.25716833360582],[-126.6019392004684,56.25720862200925],[-126.60152398030553,56.2572867480594],[-126.6012311828421,56.257307168959706],[-126.60113216201803,56.257242666198074],[-126.60090068680792,56.25717542601222],[-126.60047955343036,56.25713148004758],[-126.60019640035998,56.257121609177496],[-126.60003901329746,56.257140270933256],[-126.59999970981933,56.25714829659025],[-126.5997820945837,56.25719412450232],[-126.59944194954741,56.25729093382703],[-126.59893898301313,56.25744787369446],[-126.59834953979339,56.257634340551704],[-126.59805069612614,56.25772199150003],[-126.59796719560413,56.25774814583419],[-126.59787856436863,56.257768723372486],[-126.59763816671392,56.257844898303254],[-126.59723985232236,56.25797221791666],[-126.59699133357965,56.25804730944028],[-126.59676859639647,56.258088675529116],[-126.59644608335142,56.258149549657716],[-126.59622337991593,56.25819427508659],[-126.59597448258698,56.25824360292688],[-126.59560573087657,56.25832149288234],[-126.59526940451867,56.258404831439314],[-126.59487759990319,56.258496268504814],[-126.59435988994605,56.25861629394904],[-126.59402755028746,56.25869625022365],[-126.59395603682674,56.25871226483227],[-126.5938139452965,56.258740929129495],[-126.59347538679152,56.2588108315128],[-126.59309867471238,56.25889771238566],[-126.59267767643344,56.25899711925754],[-126.59219312834473,56.25910466038207],[-126.59180596559477,56.25916918286043],[-126.5915235431988,56.259208575935524],[-126.59127839002936,56.25923995484775],[-126.59111501039337,56.25926423405344],[-126.5910284610563,56.259289277788795],[-126.59098916975296,56.25929730060596],[-126.59076908229278,56.25938232980303],[-126.59031789521299,56.25955803869148],[-126.58998828519802,56.25968613827194],[-126.58982335306384,56.25974178720061],[-126.58975392544785,56.259763390569745],[-126.58971631805454,56.259749002211244],[-126.58955277635803,56.25969598977848],[-126.58933330046929,56.259619712014185],[-126.58924285020102,56.25958652471206],[-126.58916060420404,56.259562260714986],[-126.58902848827854,56.259514703447316],[-126.58893999266292,56.259477026321626],[-126.58891957664916,56.259463678632144],[-126.58888748615398,56.25948062880888],[-126.58880357843456,56.259547104412704],[-126.5886896582059,56.25970221013157],[-126.58859886309808,56.25991545703579],[-126.58859301272257,56.260064463995434],[-126.58863047460773,56.260135981031],[-126.58874730750651,56.260377395209574],[-126.58893510891095,56.26076746224594],[-126.58902259208467,56.261006771240545],[-126.58902637972338,56.26112436963181],[-126.58903190951388,56.26129012649341],[-126.58899510574602,56.26146503974309],[-126.58869467798614,56.26158516040195],[-126.58819922333575,56.261845077115915],[-126.5879715029256,56.262231457337776],[-126.5879730524336,56.26240171322539],[-126.58797547698885,56.2624285857033],[-126.58797325929623,56.262483483332744],[-126.58797507747865,56.26267166042772],[-126.58797708448665,56.26314323506414],[-126.58815977796831,56.263731594144026],[-126.58859931126104,56.26412162340059],[-126.58894790177354,56.26424547416356],[-126.58905616998636,56.26425169598476],[-126.58906885514901,56.264288602535416],[-126.5890694512361,56.26439613443091],[-126.58907276539568,56.26461678921671],[-126.58889769578722,56.26494132035667],[-126.58854619578483,56.26523081917375],[-126.58837584526964,56.265331297320365],[-126.58837874078661,56.26538953193934],[-126.58838291340821,56.2655328923061],[-126.58839977105409,56.26571315932063],[-126.58842619984567,56.2658575373701],[-126.58844037445839,56.265925801438186],[-126.58844455241301,56.265934743423486],[-126.5884533116749,56.26597950921347],[-126.58847980244879,56.26606115840035],[-126.5886308753264,56.266157915884286],[-126.58891774397772,56.26627645046877],[-126.58908250012304,56.2663417800733],[-126.58910011391802,56.26636970270666],[-126.58907637414566,56.266404536910784],[-126.58894060246386,56.266452209209994],[-126.58885175126946,56.26652654883159],[-126.58899481413847,56.26669615281482],[-126.58911738761968,56.26698122695909],[-126.58912231081739,56.267242200108896],[-126.58912150717234,56.267390064135434],[-126.58912446180472,56.26751998837928],[-126.58907431391094,56.26781594025492],[-126.58897508210867,56.26820957181477],[-126.58891650123364,56.268414830061815],[-126.58890531186599,56.2684776102787],[-126.58887962298701,56.268585263495844],[-126.58878746978658,56.268777234563416],[-126.58866785984144,56.268958130515344],[-126.58860650875738,56.26904690534214],[-126.58858978511206,56.26907834670425],[-126.58858487289856,56.26908733056762],[-126.58860766877547,56.269124190674624],[-126.58866860193928,56.26921016191048],[-126.58872545724454,56.26929279144416],[-126.58879131930782,56.26936977868322],[-126.58890735013878,56.26948910058946],[-126.5890484621622,56.269594864929346],[-126.58918823548602,56.2696782321922],[-126.58924076320245,56.26974295899183],[-126.58921433326229,56.26980020876962],[-126.58919660689335,56.26983165484532],[-126.58924399693667,56.269823595250685],[-126.58935976240427,56.26978945674436],[-126.58946050647823,56.26976546881979],[-126.58949474495506,56.26975634964074],[-126.58956446050092,56.26975378771296],[-126.58974258586073,56.269698078194125],[-126.5899134997931,56.26956735132212],[-126.59000308843841,56.26947396484783],[-126.59008023320575,56.26942656213191],[-126.59015958581857,56.26939259103403],[-126.59029064921361,56.26943455157644],[-126.59052704894178,56.26955667643083],[-126.59080954991822,56.26965170400231],[-126.59106273202379,56.269679657250315],[-126.59119918845535,56.26967790587167],[-126.59124268528342,56.269678824787825],[-126.5913609272941,56.26967603735244],[-126.5915823554174,56.26967613263016],[-126.59186774272607,56.269627764624616],[-126.59222291130988,56.26958019276106],[-126.59253596937563,56.26962242761156],[-126.59274283402313,56.26966291400369],[-126.5929207652248,56.269662088556835],[-126.59313016401426,56.26967007805502],[-126.59329509624894,56.26967827366568],[-126.59335866083045,56.269670137445566],[-126.59338083443974,56.269665553863305],[-126.59343559646803,56.269676501124145],[-126.5936237730897,56.269684588365365],[-126.59388401047104,56.26964417376267],[-126.59406430384912,56.26959852951742],[-126.59417216417214,56.26957786524962],[-126.59433689252805,56.26957261859405],[-126.59459167400364,56.269572553526565],[-126.59484451848913,56.26957809774651],[-126.59503464888752,56.269581693191085],[-126.59521553649235,56.269576370157694],[-126.59541813869207,56.26960231005736],[-126.59564699328567,56.269691976160836],[-126.59586592722957,56.26979512999396],[-126.59602082126874,56.26987505888635],[-126.59612883626932,56.2699305628568],[-126.5962040914926,56.269959335835544],[-126.59630292908136,56.269943192485385],[-126.59643979196896,56.26990110799571],[-126.596516166302,56.26987050729177],[-126.59652411781668,56.26986150892523],[-126.59655952715353,56.26986246378544],[-126.59673348704004,56.26993334156854],[-126.59701690954887,56.270087719495976],[-126.59718645903376,56.27026615229596],[-126.5971980743815,56.27043188117105],[-126.59717753827903,56.27054399279114],[-126.5971688611199,56.27063812649122],[-126.59717267411821,56.270755725118356],[-126.5971798317963,56.27082738169701],[-126.59718739451505,56.27085871074339],[-126.59719696307758,56.270890030416176],[-126.597218696946,56.27092241339369],[-126.59724850271844,56.27095475864395],[-126.59727310805455,56.27097704678261],[-126.59731815535126,56.271013801409254],[-126.59741312562399,56.271074966099604],[-126.59758918273015,56.27115031361021],[-126.59782809314544,56.2712354482808],[-126.59796941858778,56.27128743445387],[-126.59806496639217,56.27132059204642],[-126.59820124546262,56.27137260158434],[-126.598286615143,56.27140132602869],[-126.59853774631327,56.271492002968536],[-126.59902271491602,56.271667835670634],[-126.59930250059305,56.27178077996563],[-126.59932833310418,56.27181762401601],[-126.59932456290059,56.271835564216325],[-126.59933408110705,56.27186240335743],[-126.59936234664734,56.27192611977213],[-126.59938649872316,56.271984254687915],[-126.5993991961097,56.272021160333246],[-126.59941801108815,56.27206139775699],[-126.59944924961141,56.272120619584214],[-126.59948278428402,56.27219775315706],[-126.59951793853516,56.272315204803434],[-126.59954056563913,56.27240583143013],[-126.59955222704929,56.272441621770575],[-126.59955647673623,56.27245504372683],[-126.59956167705384,56.27246398059192],[-126.59959439013667,56.27248735042889],[-126.59963916728888,56.272506183021626],[-126.59967295192827,56.27253402844266],[-126.59973149758301,56.27259312207944],[-126.59981330658579,56.27265322666712],[-126.59987657422325,56.272691015079225],[-126.59997737988434,56.27273758850097],[-126.59999970870395,56.27274308446188],[-126.60009106329021,56.27276617884932],[-126.60013470089368,56.272776055360175],[-126.60012984325552,56.27278952006719],[-126.60013560945892,56.272835419468535],[-126.60015793067521,56.27290700476329],[-126.60017326837952,56.27298422364338],[-126.60019001961382,56.27308719952362],[-126.60025236355088,56.273196682224594],[-126.60033013035323,56.27325680549174],[-126.60036459229363,56.273262244397266],[-126.60036377893415,56.27327569011732],[-126.60035537340724,56.27332053593457],[-126.60034114251326,56.27338221149136],[-126.60032296921624,56.273449506358425],[-126.6003033651485,56.273489924144265],[-126.60027470474888,56.273533744939776],[-126.60024546995672,56.273605572387495],[-126.60029518467334,56.273682629815525],[-126.60040877706368,56.27377058873488],[-126.6004779863373,56.273866597209555],[-126.60050573249477,56.27396168032249],[-126.60054020421917,56.27403320849897],[-126.60058648411639,56.2740845183231],[-126.60065702924496,56.27413459393268],[-126.60072952907214,56.27418129984119],[-126.60075679555031,56.27424502072467],[-126.60076207552204,56.27432564733951],[-126.60078368747855,56.27441627861449],[-126.6008294285487,56.274497835185855],[-126.60089743114223,56.27458040723912],[-126.60100117400057,56.27468521437823],[-126.60109855987413,56.27477212879343],[-126.60113134448687,56.27479997857315],[-126.60115085549003,56.274818929506885],[-126.60125714397005,56.274892360024566],[-126.60142461476991,56.27499910734052],[-126.60156536795381,56.27507797622206],[-126.60173479385575,56.275180233307864],[-126.60191837627305,56.27528242350721],[-126.6019908109376,56.27532464840916],[-126.6020162345476,56.27533348993367],[-126.6020712132923,56.27535787446187],[-126.60214335583973,56.27538105794451],[-126.6022644957154,56.27543313465576],[-126.60243451497848,56.27550850421832],[-126.60266684480074,56.27555781608359],[-126.60291559841062,56.275557763027365],[-126.6030108162814,56.27556851541299],[-126.60300009924968,56.2755954498099],[-126.60299525842419,56.27560891456573],[-126.60297377158027,56.275658302966924],[-126.60293603474875,56.275769376814104],[-126.60297006170269,56.275877871791955],[-126.60309837365018,56.27600160413513],[-126.60322625664946,56.2760984545441],[-126.60338368051583,56.27614251785224],[-126.6036236743756,56.276164907991046],[-126.60398320975746,56.27606911601527],[-126.60441454518033,56.27584304493115],[-126.60462399799304,56.27572107696337],[-126.60462942444006,56.275744574652755],[-126.60463146382726,56.27581177460717],[-126.60463256926914,56.27588345962225],[-126.60463191167733,56.27590586593502],[-126.60463289607529,56.27603579985316],[-126.60477160069243,56.27630846270345],[-126.6049736040781,56.27655506215495],[-126.60505240461806,56.276812326062476],[-126.60516079766774,56.27702128293447],[-126.60536131991728,56.27710658573327],[-126.605569100846,56.2771369659534],[-126.605779647913,56.27715053031457],[-126.60600179458937,56.277195403837894],[-126.606233169036,56.2771819848416],[-126.60651943698848,56.27705740901603],[-126.60675135941035,56.27694877280044],[-126.60677626859244,56.276990100502424],[-126.60666885172063,56.27717207647848],[-126.60659050591642,56.27733711199304],[-126.60665655521792,56.27742305091594],[-126.6068389671802,56.27751291803817],[-126.6070061695706,56.277600616817956],[-126.60714405780415,56.27768957479812],[-126.60735439054322,56.27781963438401],[-126.60765837365952,56.27792348472754],[-126.60800203723083,56.27791288913518],[-126.60827733502886,56.27786341233691],[-126.60837618757029,56.27784725959508],[-126.60839444598649,56.27791550254197],[-126.6084242602132,56.27807778405822],[-126.60841920626551,56.27820774687049],[-126.60842814751382,56.27826259223355],[-126.60851286809469,56.278313716362966],[-126.60866996568275,56.27840146113681],[-126.60887288909849,56.278509150350466],[-126.60920189246737,56.27859607547929],[-126.60961450558918,56.2786624381133],[-126.60985887561641,56.2787038385434],[-126.60993999845071,56.27871801356413],[-126.60996940241309,56.27872347405779],[-126.60997016917024,56.27877275753455],[-126.6099729311054,56.278884760576176],[-126.60997520635975,56.27896652156364],[-126.60997476088805,56.27900236888293],[-126.6099768793132,56.27907404916186],[-126.60998054840596,56.279114357496816],[-126.6099823183107,56.2791636361946],[-126.60998219540473,56.27928573448389],[-126.60998826181954,56.27941564438024],[-126.60998858314922,56.279500775198514],[-126.60996745151381,56.279572566445225],[-126.60992377655228,56.27962542249809],[-126.60990173864266,56.27963896960565],[-126.60992454326973,56.279674705994225],[-126.60996923788841,56.27975290410198],[-126.60999204264326,56.27978864048026],[-126.61001646905851,56.279798605374026],[-126.6100978905324,56.279831821653104],[-126.61018842133754,56.27986499439614],[-126.61022092028804,56.27987380055248],[-126.6102477179778,56.27990615733776],[-126.61032679555535,56.27998419117712],[-126.61043629655147,56.28006656033501],[-126.61063761347843,56.28020113847083],[-126.61094822538145,56.28040464407262],[-126.61117274281848,56.28053462985761],[-126.61125916129336,56.280563340873925],[-126.61135562383791,56.28058864330485],[-126.61151594329817,56.280622601492134],[-126.61162867229213,56.28065230655203],[-126.61165301228527,56.28065667073812],[-126.61177179282924,56.28068634671593],[-126.61200507431509,56.280793885861314],[-126.61212148942322,56.28093110853969],[-126.61215443321534,56.28109785514713],[-126.61222457012474,56.28131483099478],[-126.61226376202747,56.28142777981787],[-126.6122856379516,56.28146912109509],[-126.6123272960903,56.28154621285135],[-126.61236651192995,56.28159643236427],[-126.61240053958704,56.281637715411534],[-126.61244617326196,56.28171030743458],[-126.61252504884665,56.281774899012575],[-126.61264699790834,56.281812400175795],[-126.612732050773,56.28181871349508],[-126.61283843626629,56.28183052530626],[-126.61302158834906,56.2819013376019],[-126.6131377508496,56.28195678867966],[-126.61317445502034,56.281975655411145],[-126.61322943249878,56.28199891512825],[-126.61348455486873,56.282080583134324],[-126.61386266665295,56.28220086582951],[-126.61403029255501,56.28224822781448],[-126.61407718056098,56.28227152603161],[-126.6142145923415,56.28232799423592],[-126.61435383265693,56.28237101153363],[-126.61446041463145,56.28239626303744],[-126.61457811156434,56.282420340850976],[-126.61469589645667,56.28245001895714],[-126.6148025477452,56.28247863033908],[-126.61490443326484,56.282526307357465],[-126.61504812582643,56.282596186445915],[-126.6153059462691,56.28265543459726],[-126.61566167881884,56.28270188889188],[-126.61591401390491,56.28273427828808],[-126.6159748507224,56.28274406663441],[-126.61607413485794,56.282754789828076],[-126.61652750093123,56.28283549626404],[-126.61712739845312,56.28297374237257],[-126.61732229949412,56.28314754708852],[-126.61727496326559,56.28341661535869],[-126.61732678761426,56.28362471587933],[-126.61738954671014,56.28369274289026],[-126.61745334309012,56.28376188502887],[-126.6176115413357,56.28391682384377],[-126.61786225764168,56.28410155982513],[-126.61808674853405,56.284227053349035],[-126.61817128264333,56.284264730239826],[-126.61822229156766,56.28429248771655],[-126.6183437630271,56.28436247067381],[-126.6184397133458,56.284418014828105],[-126.61853777500775,56.284479149527954],[-126.61870199112788,56.284566847987335],[-126.61882641954232,56.28463233552645],[-126.61885901279986,56.28464673990753],[-126.6188740497638,56.28463770578289],[-126.61897349381675,56.28459465800726],[-126.61912716003991,56.2845255837388],[-126.61919547202763,56.28449612855663],[-126.61927481221257,56.28446101908374],[-126.61957408362463,56.28445396814963],[-126.61997608432489,56.28454723331101],[-126.62020161485745,56.28460998882915],[-126.62027842465679,56.28460625566367],[-126.62036024612827,56.284599137632505],[-126.62049047229188,56.28458394344786],[-126.62064584841777,56.28455966569856],[-126.62078389754025,56.28452651057037],[-126.62096906377954,56.28446736260056],[-126.6211984625953,56.28439119693189],[-126.62130708470389,56.28435258339626],[-126.62138258139284,56.284393662604586],[-126.62166692455563,56.28453006064421],[-126.6220938434465,56.28466352399859],[-126.6224477396159,56.284720050013945],[-126.62264011101512,56.284732555202105],[-126.62278624479013,56.28476320803526],[-126.62303172343005,56.28480793874146],[-126.62329556741156,56.28486266094018],[-126.62346334242581,56.28491897132922],[-126.62361011901626,56.28498994610808],[-126.62379259235367,56.285015939860315],[-126.62398627518095,56.28498362994991],[-126.62410941192864,56.284967346512346],[-126.62414700097999,56.28497724449986],[-126.62422951980176,56.2850149272723],[-126.6244312152557,56.28510467578429],[-126.6246369392625,56.28519328413471],[-126.6247843814171,56.28524185099029],[-126.62495404007808,56.285289188905494],[-126.62509237253798,56.28533779994473],[-126.62513203852674,56.28535104799396],[-126.62519014318498,56.28537988820351],[-126.62537875652252,56.28547305973364],[-126.62565444042148,56.28557252590158],[-126.6258921940472,56.28563969233133],[-126.6259987369728,56.285660453850134],[-126.62601701338679,56.28566484502511],[-126.62606888986413,56.28568363383357],[-126.62617571928199,56.285722316487416],[-126.62632739155192,56.28578318271974],[-126.62647822210845,56.28585413441165],[-126.62658329818328,56.28590962784282],[-126.62665780182657,56.28595182903995],[-126.62671388399326,56.28597955832032],[-126.62673634946292,56.28599289020189],[-126.6267926483946,56.28603518056995],[-126.62686049283003,56.286103178167586],[-126.62690161132709,56.28614442275802],[-126.62693023488993,56.28616332524985],[-126.62697577363097,56.28616422209007],[-126.62710550086476,56.28618038832357],[-126.62736848369757,56.28624406779139],[-126.62767881496835,56.28635792183405],[-126.6279304346613,56.28646982319038],[-126.62802585246146,56.286617216718405],[-126.63022606534581,56.28814102101144],[-126.62954901504159,56.287804945427204],[-126.62312990219831,56.28570359390723],[-126.61890549003763,56.28618114314727],[-126.6186464090053,56.28835104133789],[-126.61763280278822,56.291877752405156],[-126.61427643119895,56.29460025148995],[-126.61544189041396,56.29711279214122],[-126.6166798193442,56.30100502993454],[-126.61610769372838,56.30323021323329],[-126.61271936477135,56.303201683726755],[-126.6078679711898,56.30403135867337],[-126.60240291366127,56.30484581790109],[-126.59869036334224,56.3053292417999],[-126.59072955664922,56.307095803844916],[-126.58309822934436,56.30806280382994],[-126.57807930791861,56.30756582464652],[-126.57291773478032,56.30837764832032],[-126.56804403802988,56.31000346990276],[-126.56301208652106,56.309729990924396],[-126.55698808675517,56.30836735206771],[-126.55123500469782,56.30832058310708],[-126.54573495649097,56.31016332079904],[-126.53910370696302,56.31221670454037],[-126.53703613216226,56.31260177778267],[-126.53488722819073,56.31229713347608],[-126.52832169641918,56.31178673620591],[-126.52238897566919,56.31082535351713],[-126.5174262425113,56.31186711500025],[-126.51192077731393,56.313995177695766],[-126.50772295827494,56.31326811595135],[-126.50289582742076,56.30963096498981],[-126.50080042755972,56.30738093698798],[-126.50090223187277,56.30378705993304],[-126.49764364957332,56.30273338781211],[-126.48960692493127,56.303517153103655],[-126.47862448136573,56.30308377620494],[-126.47260102754463,56.301770948492475],[-126.46628850790155,56.29976887800508],[-126.46331857175649,56.29940330023965],[-126.45686646244967,56.298718575715164],[-126.45424604319254,56.296980471893],[-126.44874932329238,56.29521659796247],[-126.44484234941775,56.29193252806414],[-126.43959782163822,56.28874256344206],[-126.43842390298934,56.286793059047454],[-126.43624255807977,56.28419282318016],[-126.4337089263368,56.28309026123461],[-126.43082094383358,56.28009804438405],[-126.42541856497864,56.278789891356794],[-126.4214496529889,56.28098059341297],[-126.41738520450161,56.28288472841355],[-126.4150300955977,56.282632523438934],[-126.41218142032695,56.281700821787666],[-126.40869716478109,56.28148798103065],[-126.40390335453218,56.28373453826216],[-126.39484877769362,56.28427360999219],[-126.38744538741464,56.28448444577007],[-126.37614406327685,56.28786965641007],[-126.36990476361564,56.29339895740037],[-126.36348641478139,56.29813988908029],[-126.3591478301176,56.302095058766945],[-126.35751978338315,56.30476108898263],[-126.35228902542609,56.30756253069283],[-126.34879451367145,56.31073540782493],[-126.3489306686578,56.31284091890468],[-126.3511304088248,56.31468987079702],[-126.35300256341706,56.31722970546625],[-126.35284079880559,56.31904928119272],[-126.34862175070802,56.31918630352871],[-126.34384209078257,56.32073160770112],[-126.34217148842342,56.32151571343681],[-126.33483345770622,56.322646318625374],[-126.32659673984969,56.323017094397414],[-126.32425035864776,56.32550532390305],[-126.32416124346562,56.32819392355161],[-126.3209010983746,56.33044245327514],[-126.31638273063012,56.330166942267795],[-126.3123394001394,56.32812474763689],[-126.30566999587079,56.32463700837221],[-126.29960882103951,56.32149699423895],[-126.29453986643138,56.31327342676906],[-126.29187776410612,56.30999077930264],[-126.28972978375086,56.30665315177851],[-126.28446794295947,56.30420064858502],[-126.27335282480183,56.30168888837235],[-126.2633835975458,56.30175461295536],[-126.25979532071229,56.304459249122225],[-126.25798839322859,56.30912269559165],[-126.25544938778172,56.31411915195047],[-126.2532684533519,56.314786613970426],[-126.24770397343411,56.31518283852841],[-126.24302108272975,56.31673313937234],[-126.24166952574699,56.320140944512964],[-126.23969612394103,56.32354990637174],[-126.23665522048627,56.325285076486885],[-126.23358741478621,56.32764750849568],[-126.2304102326539,56.330243057255466],[-126.22876386982115,56.333203212682925],[-126.22540067734776,56.33510895955397],[-126.22291971872576,56.3383393492909],[-126.2243584507677,56.34126716425213],[-126.22941279319154,56.34371359248276],[-126.23454521258478,56.34691242954991],[-126.23012411926491,56.346857722890135],[-126.22477613915878,56.34680449412402],[-126.21887127883295,56.34788111607802],[-126.21465853505839,56.34778071253515],[-126.20687620635225,56.34678089901821],[-126.20169020226862,56.345122377809496],[-126.1953731637927,56.343456418185696],[-126.19477193945829,56.34293758165342],[-126.18845934059907,56.341217509312266],[-126.18141755795936,56.34244641065135],[-126.17463371448753,56.34505460560339],[-126.16601715548299,56.34712715676436],[-126.15798018543916,56.347442007961796],[-126.15198029461703,56.34828266708188],[-126.14727414536941,56.35028652784289],[-126.14625700351073,56.352725159191486],[-126.1487548587182,56.3547027248903],[-126.15063739552072,56.35654654976589],[-126.15086004393909,56.3588403796646],[-126.14832160631083,56.360689373200984],[-126.14873200823111,56.360688897298076],[-126.1484894773234,56.36166596152318],[-126.14386188867574,56.36429690834794],[-126.13963073742092,56.36458835267237],[-126.13995713848911,56.36687313479088],[-126.14239627898968,56.36759631476263],[-126.14615932931312,56.36889147079453],[-126.14917471476049,56.37075195505781],[-126.15081849556412,56.37356389632982],[-126.15195659493249,56.376098618553804],[-126.15372955629257,56.3809714961078],[-126.15242980368073,56.385408942734465],[-126.15051175360497,56.38710491688932],[-126.14405044567889,56.38908385412479],[-126.1385136223007,56.3911331625214],[-126.13372244511002,56.395188820682336],[-126.13124396794042,56.398014239653435],[-126.1300529588623,56.39948513303995],[-126.1203182120731,56.40348249269759],[-126.11428970138793,56.40746690780754],[-126.11304965850178,56.41019230307951],[-126.11489649089599,56.41301353815668],[-126.11726318894847,56.41584323795001],[-126.11875596095315,56.41985663431179],[-126.12001383156489,56.42461405131776],[-126.12365435824482,56.42642979344103],[-126.12626585873376,56.42822852781748],[-126.12588226558486,56.4301556465763],[-126.12291624749456,56.43218384332893],[-126.11914067553796,56.43385426302387],[-126.11201038057185,56.43416537981818],[-126.10382589792432,56.43515803996534],[-126.10426086085906,56.43721885889187],[-126.10433961953918,56.44047186552301],[-126.10371356056359,56.44332217456574],[-126.10830985805984,56.444465469400555],[-126.11383078632052,56.445670515460655],[-126.118986147404,56.44578234161911],[-126.12651367778106,56.4458199513036],[-126.13312817199831,56.44554441156017],[-126.13790922688021,56.44720623384373],[-126.1412505983007,56.4488963571023],[-126.1463138996232,56.45140891949957],[-126.15229039633249,56.45427867420993],[-126.15548700798934,56.45706193513917],[-126.1597014013273,56.4601844048401],[-126.16166502795838,56.46283462255268],[-126.16494604861181,56.46338607837731],[-126.17073601502292,56.465851955462476],[-126.17168321780538,56.46820763741894],[-126.18010714476844,56.4719510873844],[-126.1871265398333,56.47197689989247],[-126.19350963554342,56.47238864629305],[-126.20111864019088,56.47321936686041],[-126.20869486362271,56.47489210118412],[-126.21418751657964,56.4771862480573],[-126.21282381520403,56.48059401146759],[-126.20874628380975,56.482034596492696],[-126.20510200095906,56.482793261159124],[-126.20142474680765,56.481723657548464],[-126.20136067229336,56.48348924169586],[-126.2015590253483,56.48646426716406],[-126.2010368361925,56.48949419737122],[-126.20093049315447,56.492335280715245],[-126.20007551086253,56.495930335589286],[-126.19967626045175,56.49838652012864],[-126.20387165525945,56.49945536430544],[-126.20689672755863,56.501484888247546],[-126.20316619976643,56.50459166969108],[-126.19975947083519,56.507285594035295],[-126.19484365833968,56.508951100965305],[-126.19086903152849,56.50742456849532],[-126.1859634937625,56.50599784621858],[-126.17926367743794,56.505577190268966],[-126.17297345801872,56.50528110208221],[-126.17076840401992,56.506225053966006],[-126.16817336805705,56.50922176580513],[-126.16806310453731,56.51219728142544],[-126.16301923291695,56.51436361090664],[-126.15441176077822,56.51523458552765],[-126.14523859010612,56.514564164063614],[-126.13980032104095,56.51358437520642],[-126.13038767159412,56.51381831406144],[-126.12013174349781,56.51444668091718],[-126.10957869135267,56.5173508242626],[-126.10469386739851,56.520715638417634],[-126.10075121860238,56.526320040612816],[-126.10374430787445,56.5290421166119],[-126.10554006676121,56.530716556230225],[-126.10627316798228,56.533064008261285],[-126.10785596097573,56.53491783618828],[-126.1112673928547,56.537576664291805],[-126.11356474594832,56.539609048357036],[-126.11682585878812,56.54347775198955],[-126.11933255521126,56.545500887541415],[-126.12279081469423,56.54696742080499],[-126.12861308237507,56.54886170372007],[-126.1338091949566,56.55091769670681],[-126.13348842185286,56.55388450007622],[-126.13091272113178,56.55625315531552],[-126.12398991827342,56.55868875751517],[-126.11820589222133,56.56107813814198],[-126.11664289564646,56.56397435114277],[-126.11641882615412,56.567048589870595],[-126.11539578840333,56.569379687128276],[-126.11083174044175,56.57229642073252],[-126.10774060543913,56.574548566365536],[-126.1069114105809,56.57722000831886],[-126.11065149244553,56.57949326412073],[-126.11378748839232,56.581354684676846],[-126.11443440228327,56.5833616630707],[-126.11588080796069,56.58548443354928],[-126.11639163997312,56.58623680625397],[-126.12037784404762,56.58754163952011],[-126.12387943762607,56.58798643531034],[-126.12703461760789,56.589390446193946],[-126.12929032999938,56.58998867762632],[-126.13371758318718,56.59066529509034],[-126.13879458774275,56.590552377357604],[-126.14517737020093,56.591540161494414],[-126.14670114650886,56.592300234009734],[-126.14975351821994,56.59370380999904],[-126.15269587620949,56.59533150428746],[-126.16112936538731,56.59960524528121],[-126.16424786906263,56.60192256564677],[-126.168488164187,56.60488364528686],[-126.17107796640892,56.60759584465637],[-126.17707367986304,56.616173766777145],[-126.17613894813,56.61901615054218],[-126.17490720298179,56.62140184805711],[-126.17448949161668,56.62425248772969],[-126.17316180165079,56.62645905459538],[-126.17098986101028,56.62907004612593],[-126.17062242407843,56.63322914938751],[-126.17121949033785,56.636723754467155],[-126.17624688978194,56.63809721801961],[-126.17923080270356,56.63869359858744],[-126.18023581095402,56.6395077927529],[-126.18033713632305,56.63957038919018],[-126.18119741303023,56.64151406463953],[-126.18396261043812,56.64240641003261],[-126.18663591928548,56.64305683953655],[-126.19004675472816,56.64338347582788],[-126.19530907484693,56.644074699039024],[-126.19881104588165,56.644625031297295],[-126.2038479509221,56.64587193670946],[-126.2052047166362,56.64840620909634],[-126.21044065280385,56.64989453546624],[-126.2153605649053,56.64863164708438],[-126.21956599344462,56.64708298516635],[-126.22699634035422,56.64807394062716],[-126.23053580430759,56.650505504561806],[-126.23395160615618,56.653519773242444],[-126.23867289241265,56.65487345315343],[-126.24001569015924,56.655059178705585],[-126.24756271439028,56.655770897500666],[-126.25369243647398,56.655499073872356],[-126.26298553793325,56.65661873093435],[-126.26652680736906,56.65916583662483],[-126.26640760999899,56.66248228969298],[-126.26628214354724,56.66607660690816],[-126.26662085069401,56.66825385682313],[-126.26914179683452,56.670336949397694],[-126.27156696734887,56.67212442547477],[-126.27547922300954,56.67297656341026],[-126.2825097288441,56.673732169409355],[-126.28375337468225,56.67379218143332],[-126.2893454354115,56.67408450415192],[-126.29640185710569,56.67415812378325],[-126.30090939349114,56.6757968531567],[-126.30199989426661,56.67730006048407],[-126.3073455292324,56.67877527540726],[-126.31333485505789,56.67969301447417],[-126.32091249312653,56.67965647713084],[-126.32634854084797,56.678513532946454],[-126.33288527107494,56.678523733438055],[-126.33609864977798,56.678667776897264],[-126.34388808995539,56.67845904483891],[-126.35149088711496,56.677730505267036],[-126.3599615261641,56.67884545009672],[-126.36847028214083,56.678866261889084],[-126.37647165516908,56.678610144268305],[-126.38204910992982,56.679454197248695],[-126.39285997985203,56.67887501899451],[-126.39224396180906,56.67544410947805],[-126.39232877885058,56.672817732867195],[-126.39200862717371,56.66984303970848],[-126.39632027916957,56.668055231509456],[-126.40021829042523,56.66620582333806],[-126.40336967094744,56.664977068631856],[-126.4073629706483,56.66341395824287],[-126.40809359336366,56.66325928214735],[-126.41321606397894,56.661988188399796],[-126.41883296111287,56.66152194096256],[-126.42205347076904,56.66138596954818],[-126.42448683685167,56.65987223523753],[-126.42787048137362,56.65778168870518],[-126.4319962392771,56.65845807938777],[-126.43609037957735,56.66030857550031],[-126.43903359527782,56.66239589915428],[-126.44218933975517,56.66437487703834],[-126.44413223771868,56.66530034272174],[-126.44907110847159,56.66660079420669],[-126.45513180197038,56.668596212762615],[-126.45699077146298,56.672327171226186],[-126.45619771713785,56.67786009572888],[-126.45770123309025,56.6796473616477],[-126.45898465170586,56.68182080188055],[-126.46049012409476,56.68349151488671],[-126.46344180194664,56.685345252675276],[-126.46595268992768,56.68816851996535],[-126.46791278825499,56.69206930223981],[-126.47035837488573,56.693575169200265],[-126.47795666751352,56.696325816341435],[-126.4788873009568,56.696447852025585],[-126.4848783599706,56.69752795698996],[-126.4889056424456,56.698247747849514],[-126.49695873202081,56.6998572596536],[-126.50076129372832,56.701267705662644],[-126.506318640578,56.70285043853703],[-126.51198860833286,56.704333895051924],[-126.51319224813987,56.705825960541574],[-126.51562814962516,56.707788150789405],[-126.51775719688456,56.70957226531299],[-126.52155071838317,56.711322750406715],[-126.52359021224613,56.71265001408951],[-126.52699853518439,56.71325461796675],[-126.53359129453882,56.71519050100936],[-126.53557268826319,56.71863313762781],[-126.53664364156228,56.72115632301592],[-126.53877090318525,56.723056641692125],[-126.54172257071436,56.72530304277022],[-126.54393723905187,56.72778552902209],[-126.5472080217157,56.72968986606151],[-126.55130993945303,56.73167125189641],[-126.5547093802669,56.73272334361705],[-126.55767937906496,56.73435085260277],[-126.55818523401314,56.73480579888874],[-126.5608281147143,56.73699934052876],[-126.56336131823569,56.73930087034667],[-126.56210510639825,56.74334881146179],[-126.56380757031394,56.74570773163696],[-126.56802927233994,56.74716821764941],[-126.5725553124273,56.74897679453973],[-126.57737722265078,56.75124103113846],[-126.57819451548514,56.75182000315083],[-126.58106387247113,56.75333092936422],[-126.58401211750972,56.75591705274788],[-126.58364871174922,56.75768449489122],[-126.58098445435441,56.76011662448286],[-126.57903812125993,56.76278750446298],[-126.57832913366911,56.76598168053085],[-126.5779006392606,56.77020541142723],[-126.58257964225405,56.77407460961384],[-126.58615374233501,56.77655034259057],[-126.59250014261534,56.780429570106044],[-126.60077370379993,56.78231861135301],[-126.60680604015525,56.782478710470336],[-126.61191442388086,56.78212300906724],[-126.62348112668928,56.781413468972104],[-126.62943400982151,56.78065860438714],[-126.63892980017557,56.77964400701303],[-126.64114637878066,56.778458809110056],[-126.64670625900614,56.77672805684966],[-126.65401989570555,56.775526032995934],[-126.66270123736268,56.77365328874942],[-126.66909860566446,56.771585625268024],[-126.68134702238346,56.76852786042095],[-126.69655045984753,56.76778360520656],[-126.71128505311957,56.7693079477882],[-126.71593076871314,56.77082408278601],[-126.72306715385302,56.77258610992864],[-126.72753155672571,56.772964456542326],[-126.73556136229209,56.7721571497434],[-126.74267890516587,56.77015344260769],[-126.75332955699798,56.76845151577576],[-126.76424321410452,56.76886259792209],[-126.76719589198048,56.76711512319673],[-126.77568693597523,56.764025791936554],[-126.78352566969461,56.76236508672528],[-126.7891893888489,56.76017040235177],[-126.78855082865824,56.75611373056372],[-126.78353448133429,56.752424279318795],[-126.7780030268069,56.74867500144484],[-126.77629174315166,56.74147852257703],[-126.77517828642063,56.74009584266623],[-126.77788880985848,56.735033060541134],[-126.77921824701941,56.73133206227063],[-126.77812066864452,56.729151565085715],[-126.77927865009104,56.72853506818589],[-126.78553196564728,56.7276008643687],[-126.79145493838574,56.727636444276456],[-126.79265267990586,56.72507449146148],[-126.79221383187627,56.721420057267444],[-126.7937067666712,56.71960026499842],[-126.7978867111256,56.7185437214815],[-126.80038572354479,56.718214545430925],[-126.80059696181861,56.71804293002597],[-126.80611395879657,56.71756045857222],[-126.8141143468699,56.717384817771034],[-126.82470043023221,56.717846546161475],[-126.8314432057423,56.71840390093599],[-126.83489323719557,56.71722535796993],[-126.83452987206677,56.714646198530325],[-126.83125661426355,56.712229211275215],[-126.83120908802572,56.70948667606593],[-126.83777163851359,56.70342080656669],[-126.84040250110218,56.70178132470608],[-126.83919838861875,56.699664804976585],[-126.83788519889622,56.69793441446685],[-126.83461807993166,56.69517689233548],[-126.82937426971343,56.6926381628055],[-126.82483603576024,56.691286858619826],[-126.81592951075599,56.69020508261296],[-126.81210016106456,56.689727269276695],[-126.81247520534403,56.686650468348276],[-126.8144944085674,56.684549281301685],[-126.81569644522556,56.681646526285284],[-126.81449218834916,56.679574630957475],[-126.80947634608498,56.676289743569946],[-126.80789680007683,56.67250815758299],[-126.81270222366317,56.67094526825542],[-126.82045217583226,56.67247378519019],[-126.82737271518984,56.67412368397466],[-126.83223304417477,56.674719876055306],[-126.83655466681567,56.67657424878981],[-126.84110289195947,56.67750377752141],[-126.8451434232672,56.67781799882932],[-126.84899153294771,56.67727287440636],[-126.85388236272348,56.67666696195714],[-126.8576925003214,56.67806688559712],[-126.85953687601895,56.6792736431628],[-126.86344952199337,56.68089680523722],[-126.86600909380674,56.68268131315686],[-126.86816204083698,56.68400240882724],[-126.87012771433994,56.684302898552964],[-126.87281363711455,56.68500184791202],[-126.87983485175391,56.68692616331489],[-126.88364775855116,56.68831635999369],[-126.88425573099782,56.689118913332095],[-126.89173302942622,56.68881651946584],[-126.89239698457689,56.68653520225794],[-126.8973325113858,56.68359682526337],[-126.90524662088082,56.68226876615047],[-126.91137229932505,56.68212707488751],[-126.91841762660982,56.68267770912308],[-126.92393358924042,56.68173303983545],[-126.93049688396805,56.680457902568286],[-126.93467450167876,56.678993561491524],[-126.93772319116714,56.67678435274613],[-126.93777515872547,56.67369156171284],[-126.93768792111528,56.67278688119679],[-126.94166666432717,56.67075009265915],[-126.94602906702339,56.670431361865326],[-126.94885251285582,56.669299162542025],[-126.94920180920732,56.66695712064684],[-126.95047253659288,56.66554050058906],[-126.9538077443545,56.664762962091025],[-126.95649521986759,56.66522710134321],[-126.96135192729228,56.66633834525239],[-126.97181877307071,56.666959112850094],[-126.97607037336567,56.666971847703714],[-126.9842869134748,56.6657621135458],[-126.98973132848587,56.662645979215185],[-126.99248394891102,56.659173876762274],[-126.99522976175247,56.65621269169742],[-126.99862042524077,56.65165991954141],[-126.99998089620813,56.650923338127676],[-127.00029974923532,56.65041891022374],[-127.00344592746835,56.648261164750295],[-127.00707971629556,56.64787430871867],[-127.01174218734317,56.648178439839164],[-127.01598081208525,56.64894288129852],[-127.01907889699503,56.649698272520745],[-127.02345136302412,56.648632852596386],[-127.02595190528314,56.647788345377315],[-127.03002491051663,56.64580183793389],[-127.03346306728709,56.64456426166134],[-127.03380292027371,56.64279572342496],[-127.03186167147038,56.6409647833673],[-127.03136874736519,56.639238769326596],[-127.03408974301485,56.6375408069962],[-127.03898412581177,56.635905967151956],[-127.0414922518661,56.634550174926794],[-127.04316827262039,56.63341619125225],[-127.04724153976824,56.631375353763374],[-127.05386804661181,56.631796433236765],[-127.06038554784368,56.63263039188348],[-127.06775191944709,56.63225588396437],[-127.07097651987792,56.63124315403572],[-127.07870541892633,56.626992757242355],[-127.08291360087482,56.62237711974751],[-127.08470928886399,56.6198163861694],[-127.0885619135171,56.61840353063861],[-127.09331667260932,56.61922378875594],[-127.09816507486,56.6207870493147],[-127.10394618267122,56.62252141988088],[-127.10951283069842,56.62448147251038],[-127.11187188095752,56.62637039341601],[-127.11360860161194,56.62843496000372],[-127.11595053468284,56.63152508740396],[-127.11602534086698,56.633810165906475],[-127.11352091943999,56.63534666997203],[-127.11102000785672,56.636085330806914],[-127.11140528378938,56.63842152232465],[-127.11263035803206,56.63985410815819],[-127.11415674329467,56.6420370303008],[-127.11525914557944,56.64494966379402],[-127.11605992678801,56.64723744448419],[-127.1169684057312,56.649183670310016],[-127.11725147025916,56.651180128889216],[-127.1174235501552,56.654038069483775],[-127.11885239873008,56.655926001300195],[-127.12028926453326,56.657025039729916],[-127.12214372381028,56.65794115725422],[-127.12731448182095,56.659213762458876],[-127.13187476312883,56.65939793696874],[-127.13766744138778,56.66079016975307],[-127.14148066061374,56.662513405643146],[-127.1459376987027,56.662644217696624],[-127.15423319623135,56.66301848128474],[-127.15680701474317,56.664626859579265],[-127.1601016141718,56.66686514920696],[-127.16452155186842,56.670133026815684],[-127.1673861828699,56.67390785761361],[-127.16859934347534,56.676433679113785],[-127.16992183912245,56.6787164762401],[-127.17300034399277,56.68158390962758],[-127.17504947250202,56.68432619015403],[-127.17668013862003,56.68674058993737],[-127.17913088118041,56.69016939031562],[-127.1809743265182,56.69257284155904],[-127.18197126296303,56.696005927246446],[-127.18205951389874,56.697493158709015],[-127.18410292649925,56.70046845341943],[-127.1863575306857,56.70321768109938],[-127.18697291647855,56.70384848180314],[-127.19047806632246,56.706084158055],[-127.19191674227523,56.7075141231219],[-127.19314109615163,56.70951976123194],[-127.19467408982605,56.71174664275775],[-127.19671721832566,56.71495485061355],[-127.19866298102484,56.71718683681275],[-127.20568040990548,56.721720219567885],[-127.20835151414114,56.72458177297864],[-127.20989381184548,56.72601059707697],[-127.21217521359854,56.72659879477713],[-127.21382102842486,56.72802660498507],[-127.21484356630816,56.72973814998231],[-127.2176225660548,56.732607487200525],[-127.2200998153777,56.733874999054386],[-127.22206065171551,56.73524595652358],[-127.22247432169726,56.73570819342385],[-127.22568504949048,56.736341159052024],[-127.23015953302047,56.73606558775384],[-127.23526845027793,56.73431363823722],[-127.24172707926881,56.732674028596996],[-127.24557842096353,56.73200050451994],[-127.2495444028439,56.73034863529866],[-127.25269400629807,56.726588957117805],[-127.26372159732115,56.725074197114594],[-127.26829389053952,56.72508319794561],[-127.27193716198488,56.72452745900531],[-127.27433310198467,56.723562592467054],[-127.2754974932109,56.72105003070126],[-127.27821300079728,56.7195171781583],[-127.2832073957512,56.71860709746309],[-127.28706381380785,56.71679378916364],[-127.29040470037997,56.71474347395856],[-127.29195468724382,56.71589336182384],[-127.2935017161043,56.71725840905114],[-127.29493702474518,56.71944032507217],[-127.29492023681111,56.72166368060352],[-127.29501814539688,56.722236425800645],[-127.29562728816836,56.723781175558216],[-127.29592107434654,56.72623450059083],[-127.2969358834572,56.72892263837614],[-127.2982663716544,56.73150002950734],[-127.29970869192984,56.732982613958676],[-127.30094371072244,56.73441348365242],[-127.30259795070108,56.73567875838194],[-127.30530200299485,56.735508052352806],[-127.31040219724235,56.73426416917618],[-127.31580849057838,56.73387756701682],[-127.32027500323439,56.73417268357195],[-127.32567213518548,56.73480772689499],[-127.3301440041878,56.73453767838715],[-127.3351416251227,56.73340144147626],[-127.33763540751825,56.733402555870406],[-127.34201219038906,56.731752524062934],[-127.34379203819685,56.72969906252939],[-127.3446462049314,56.72650773916781],[-127.34685562213542,56.722459626130245],[-127.34926226401947,56.71988857774359],[-127.34886496274886,56.71743642957873],[-127.34908958208996,56.714690926461856],[-127.34744935977182,56.711669058463485],[-127.34663177506528,56.70983088789906],[-127.34737608537782,56.70720548622878],[-127.3495657721716,56.70589173949309],[-127.35299060217083,56.706133816199554],[-127.3582857313011,56.70625754169028],[-127.36119868820371,56.70551868251667],[-127.36557475553188,56.70300724757277],[-127.3696430398312,56.700221025359745],[-127.37038787002317,56.697254829953415],[-127.36988400462353,56.694624607508544],[-127.37176494959533,56.69268623776031],[-127.37436697187408,56.69183383783761],[-127.37446260701311,56.69291752552856],[-127.37746352316064,56.69475017287062],[-127.37964200774778,56.69480760021493],[-127.38421107447417,56.69482146182071],[-127.38628640075545,56.69470955640385],[-127.39200418250873,56.69306132777544],[-127.39481908019282,56.69134561902421],[-127.39514391553452,56.688894788426445],[-127.39422336306663,56.68626019384489],[-127.39465341006489,56.68380823539773],[-127.39621610969938,56.68278732017877],[-127.40161226950873,56.682791603860586],[-127.40451788259676,56.68279588592248],[-127.41095135872253,56.6827436679485],[-127.41374994407438,56.683035777684495],[-127.41457082347837,56.685088636596156],[-127.4154983715111,56.687149288936574],[-127.41746168846556,56.68829314830484],[-127.42222928095936,56.689782638076856],[-127.42440259212476,56.69104062450476],[-127.42615670978165,56.69315484765582],[-127.4254231909584,56.69464211227942],[-127.42375262092497,56.696587939304955],[-127.423743832983,56.69835407382725],[-127.42518646601799,56.7005255433579],[-127.42611506011592,56.70167173826759],[-127.42943579274454,56.70246874947325],[-127.43098763337368,56.703679732014194],[-127.43326345230224,56.70533090339401],[-127.43492133641145,56.70636137206988],[-127.43761293825435,56.70790924200315],[-127.44010158802912,56.70916348492719],[-127.44186393882262,56.7099685869265],[-127.44590878140696,56.71123224058946],[-127.44871181666329,56.71089603796297],[-127.45380640457782,56.70929686625626],[-127.45880057401236,56.70724141958374],[-127.46264297133662,56.70735934017539],[-127.46502639481888,56.708730845298575],[-127.46532668919261,56.711130014137275],[-127.46708822367296,56.712275453337256],[-127.46905632888316,56.71382194064187],[-127.47061020087995,56.71496073221076],[-127.4728904109524,56.716853244805755],[-127.47631091643892,56.71867891022453],[-127.47891110314536,56.718514704797094],[-127.48057223115163,56.718056402419286],[-127.48555999659882,56.71725506974886],[-127.48940381147622,56.717381156177545],[-127.49449321849181,56.71725964009624],[-127.50197602344294,56.71647361328558],[-127.50716728694165,56.7164759219778],[-127.51298523634625,56.71641689589334],[-127.51620985492987,56.71533019406811],[-127.51943408111838,56.712880735933325],[-127.52203270948924,56.71190882566737],[-127.52618985810223,56.709403377014034],[-127.5312811388188,56.70808803184993],[-127.53242320791131,56.70940131034086],[-127.53252288263059,56.71088831992179],[-127.53251955974436,56.71277101360226],[-127.53334341577894,56.71694791190696],[-127.53406321592546,56.719395794262375],[-127.53363927662787,56.723910258866844],[-127.53270018093878,56.72665575217638],[-127.53269728362271,56.72813502842453],[-127.53269013596427,56.731783915336756],[-127.53174709192555,56.73596388078031],[-127.5322629955398,56.738476975145154],[-127.53194402414108,56.74138546904602],[-127.53297762547007,56.743838644019704],[-127.5352632949909,56.74510251473944],[-127.53889952946525,56.74600960400406],[-127.53889450138837,56.74750685591065],[-127.53546555765058,56.74749382424201],[-127.53172412419278,56.7472154472697],[-127.52912648193623,56.746762069167005],[-127.52496701174167,56.74675739629381],[-127.52049661730778,56.74715071351467],[-127.51748337595605,56.74703370024732],[-127.51207980420862,56.74686390277217],[-127.5066736774476,56.74725871340435],[-127.50313244582337,56.74896743845319],[-127.503227582375,56.7517096666971],[-127.50405117715071,56.75456894294101],[-127.5037371970737,56.75576496148221],[-127.50226975109699,56.75987910139142],[-127.4981088270402,56.76090456146439],[-127.49456832103701,56.76187789360657],[-127.48863792162025,56.76243935657757],[-127.488218336948,56.763753099257805],[-127.48955946573233,56.7666692808361],[-127.49007535099256,56.768151563681464],[-127.4912124109142,56.77044252354699],[-127.4939118582673,56.77289475475436],[-127.49567543415023,56.77421020453339],[-127.4976452236357,56.77598047493386],[-127.50180677442323,56.77741151863871],[-127.50385758177293,56.778407505861345],[-127.50354467189493,56.77834390181491],[-127.50325757853423,56.77825870458197],[-127.50297434883335,56.77816785855316],[-127.50268128762623,56.77808721203365],[-127.50238219735236,56.77800999684336],[-127.50207459541703,56.77795081034932],[-127.50175486322269,56.77792202174652],[-127.50142578695187,56.77791687464539],[-127.50109847120879,56.777903861662594],[-127.50075902439268,56.77789547117396],[-127.50046997172531,56.7778652029806],[-127.50007448878047,56.77783840915097],[-127.4997915906638,56.77783496396533],[-127.49943644508714,56.77781778666695],[-127.49917917472747,56.77778826803336],[-127.49897993164667,56.778093154183445],[-127.4989869583029,56.778274619769775],[-127.49899189351734,56.77845498894002],[-127.49894033956542,56.77863152976063],[-127.49887542059491,56.778807104701016],[-127.49885670657171,56.77898550649798],[-127.49885135704675,56.77916487419415],[-127.49870693953955,56.77932455983724],[-127.49843198605987,56.7794207583773],[-127.49815608563037,56.779519208606764],[-127.49793576952334,56.779650634745614],[-127.49770824806139,56.77978102322357],[-127.49754101681432,56.77993424757988],[-127.49744113955876,56.78010686434842],[-127.4974491050113,56.7802860779761],[-127.4974683709972,56.78046628153687],[-127.49734244744081,56.78062799300621],[-127.4971805565483,56.78078675844094],[-127.49704871894397,56.780954141350016],[-127.49690120672206,56.78111386078417],[-127.49667856913159,56.78123858763536],[-127.49640381353483,56.78134038278327],[-127.49619098832939,56.78148068459493],[-127.4961751248071,56.78165344987517],[-127.49623490203727,56.78171551590859],[-127.49654761061588,56.78177353694992],[-127.49682781426516,56.781865553028354],[-127.4971060142517,56.78195871235918],[-127.49737636893957,56.7820609271745],[-127.49761630348577,56.78217133807465],[-127.49787249604601,56.78227819841646],[-127.49810685192892,56.7824032416317],[-127.49831710610356,56.78254089074921],[-127.4985334201095,56.78267622806871],[-127.49874969225505,56.78281044487669],[-127.49892970253173,56.78296077058457],[-127.49910160745756,56.783113431275865],[-127.49927957212279,56.78326378024919],[-127.4994878301418,56.78340257142579],[-127.4996899878511,56.783542553641254],[-127.49990831725468,56.7836767448506],[-127.50010547892316,56.78382014636249],[-127.50024295985374,56.78398329065024],[-127.50046146735521,56.784121961608875],[-127.50071805445789,56.7842646733938],[-127.50072541150304,56.784428205199866],[-127.50091710261106,56.78458847902675],[-127.50117706964082,56.78468632418556],[-127.50133950003104,56.78475280088533],[-127.50128652248904,56.78505151241868],[-127.50117547058632,56.78527917487905],[-127.5011413650199,56.785456635628094],[-127.50107340706899,56.785633368290846],[-127.5010208205956,56.785809922682546],[-127.50100114044513,56.78598945749331],[-127.50096912543397,56.78616801468191],[-127.50092272684492,56.786345617992275],[-127.50085883640216,56.786521182778614],[-127.5007444432345,56.7866894883986],[-127.50066824356752,56.78686519581933],[-127.50054659984022,56.78703134399978],[-127.50043420897521,56.78719850548726],[-127.50032082806688,56.7873667990247],[-127.50021057070593,56.787536176936165],[-127.50008170111987,56.787701287775285],[-127.50001148507319,56.78787244285126],[-127.50000003716667,56.7880530029444],[-127.49955358170477,56.788035762126576],[-127.49922728393501,56.78802497289001],[-127.49884819894277,56.78802712138285],[-127.4985656168307,56.78803375497864],[-127.49831123855873,56.788027734181135],[-127.49796240617187,56.78801720258535],[-127.49775853140278,56.788018440946466],[-127.49761182875609,56.78801453490611],[-127.49729432541083,56.78799243239861],[-127.49701407630057,56.7879004169869],[-127.49671539802321,56.787835510058954],[-127.49639075463594,56.787787712596945],[-127.49608147526887,56.7877666327467],[-127.49576993364518,56.78779264626464],[-127.49543536417308,56.787806597732164],[-127.49511276249363,56.787838340756984],[-127.49477874900113,56.78783995677884],[-127.49440375728443,56.78781514904163],[-127.49418475887674,56.78771681717038],[-127.49393211887629,56.78759645989912],[-127.49368638300935,56.78746929850685],[-127.49343482189583,56.78735004853538],[-127.49316584572779,56.78725789493322],[-127.49286476226945,56.78720981698889],[-127.49253562461317,56.787204647067654],[-127.49219585937497,56.78721640878273],[-127.49186407244233,56.78722247433475],[-127.49153761456024,56.78723408095233],[-127.49118646016414,56.78724260924969],[-127.4908837416405,56.78725842339903],[-127.49056278186005,56.787253154273266],[-127.49023401327939,56.78723116429642],[-127.48985189519539,56.78720754618979],[-127.48958544766614,56.78720725055421],[-127.48925366040324,56.78721330941649],[-127.48893759554724,56.787148584810055],[-127.48865592701631,56.78707225726062],[-127.48833833263498,56.78702099676467],[-127.48801929344275,56.786985441386406],[-127.48769330914894,56.786982464261236],[-127.48737558004751,56.78703430392219],[-127.48712680494782,56.78714698708453],[-127.48690132130459,56.78727957414932],[-127.4866883163058,56.78741650015008],[-127.48647850360722,56.7875567511245],[-127.48629014886758,56.78766873881846],[-127.48622353875466,56.787882429489585],[-127.48610707229541,56.78805186600173],[-127.48582788520126,56.78814696514607],[-127.48562716359719,56.7882837483867],[-127.48557847141645,56.78845688925608],[-127.48555466393319,56.78863758919435],[-127.48554215882073,56.788819280108235],[-127.48552352388388,56.7890010413817],[-127.48499362734411,56.78913263530867],[-127.48469521779724,56.78920778052005],[-127.4843978232541,56.789282913395056],[-127.48409830931519,56.78935582854856],[-127.48379873491048,56.789427623029646],[-127.48348047757976,56.789519802836494],[-127.4831846140943,56.78955457147823],[-127.48286289160296,56.789582911669896],[-127.48254696886286,56.78962911523989],[-127.48223436769386,56.78968200397598],[-127.48191481774289,56.78974057480642],[-127.4816036795607,56.789777755981895],[-127.48128488679106,56.7898295926011],[-127.4809589736096,56.789882630546124],[-127.4806579485479,56.789916331749275],[-127.48033602546916,56.78988639347743],[-127.48001244413256,56.789839663440226],[-127.47969096687189,56.78982092510027],[-127.47937021296794,56.78984812483058],[-127.47905236357646,56.789897703810446],[-127.47874009787765,56.789959545499364],[-127.4784415842295,56.790032435989474],[-127.47816557371263,56.79013084405406],[-127.47792843972121,56.790254582914855],[-127.47769967040807,56.79038270850131],[-127.47744468288094,56.790495443632274],[-127.47720327573994,56.79061474726145],[-127.47686506735853,56.790694810957724],[-127.47664132703396,56.79079374006948],[-127.4763674289381,56.79081367383726],[-127.47617181167334,56.791032192178236],[-127.47597718555059,56.791115098882095],[-127.47561719177753,56.79113489192112],[-127.47531250803898,56.79118094953466],[-127.47505149840758,56.79132400635021],[-127.47478139480764,56.79138984059549],[-127.47448294803385,56.79146496237229],[-127.47418117900729,56.79153339731486],[-127.47387785563363,56.791615297174],[-127.47360019243648,56.79169802490015],[-127.47331126755414,56.79178088018228],[-127.47301374586884,56.79185374667407],[-127.47276181649272,56.791966437623074],[-127.47248351575946,56.79205925611794],[-127.47226704706227,56.792161456813595],[-127.4719710744543,56.792220855323684],[-127.47181112404618,56.7922462076924],[-127.47168017234439,56.79227907484965],[-127.47142443669223,56.7923996510437],[-127.47110846667611,56.79247272276217],[-127.47082247365756,56.792579072965374],[-127.4704659486682,56.792663810428564],[-127.47025443148921,56.79276146881639],[-127.46999198829334,56.79286754971313],[-127.46964900934587,56.79293083853335],[-127.46934025639563,56.79292425704826],[-127.46903581832116,56.79295012502094],[-127.46877017776632,56.793052877699566],[-127.46845062212111,56.793112535597416],[-127.46813712359129,56.79314298684338],[-127.46780946493702,56.79315118465927],[-127.46751948414806,56.793234038798396],[-127.46722831289334,56.793285527286564],[-127.4669031717042,56.79333291736437],[-127.46656461589262,56.79335132141619],[-127.466232432824,56.793348359871366],[-127.46593061623494,56.79330807187758],[-127.46563456329542,56.7932307361764],[-127.4653753481015,56.79312496638866],[-127.46511913108407,56.793016920857696],[-127.4647784721669,56.792952415284645],[-127.46452916778867,56.7928644622803],[-127.46421489372358,56.79281982864567],[-127.46389483863399,56.79278534555264],[-127.46357782331022,56.79274970665355],[-127.46325688017936,56.79271859401229],[-127.46294157611696,56.7926739689625],[-127.46262128573004,56.79263276146102],[-127.46243177048274,56.792608006548484],[-127.46224211129811,56.792633682597135],[-127.46209936509874,56.79265322528137],[-127.4620532834969,56.79246435450184],[-127.46185077444196,56.79236690274118],[-127.46163174921688,56.79223937939256],[-127.46148523229199,56.79207741747223],[-127.46128944171359,56.79194066604879],[-127.46110846097218,56.7917891786731],[-127.46091518720237,56.791664725560906],[-127.46066186387189,56.7915241398568],[-127.46048238517365,56.791384961969676],[-127.46027120132035,56.79124726214152],[-127.45979734880059,56.791074421796765],[-127.45964573517179,56.790967427661286],[-127.4595346571687,56.79076696193387],[-127.45934200374853,56.790631293114814],[-127.45909883341818,56.790515244552466],[-127.45885243065099,56.790394749362484],[-127.4585982787413,56.790231756141736],[-127.45860427781268,56.790091606658635],[-127.45858727896079,56.78991249338114],[-127.45859490753077,56.78973422330125],[-127.45860555873355,56.789554798528144],[-127.45857225466705,56.789378110333026],[-127.4585921755545,56.7891997018124],[-127.45862438855507,56.78902115480523],[-127.45864734805426,56.78884159141819],[-127.45867136571374,56.7886631367751],[-127.45869639930088,56.78848467069681],[-127.45874094551603,56.78830710540594],[-127.4587968094183,56.78813053322876],[-127.45887835730939,56.78795591289836],[-127.4589630114726,56.78778237817129],[-127.45905902505667,56.78761095667141],[-127.45915708642245,56.78743951202595],[-127.45925309829663,56.78726809041788],[-127.45928021707509,56.78700891379959],[-127.45908057386612,56.78687780653241],[-127.45894270453798,56.78672695166976],[-127.45884260304067,56.786545413428726],[-127.45872756854757,56.78637524994828],[-127.45858828997636,56.78621432479906],[-127.45845298305032,56.7860499928234],[-127.4582740441354,56.78592425445906],[-127.45810541425593,56.78574572910273],[-127.45786216813268,56.78562631784926],[-127.45774030015151,56.785465195841994],[-127.45757764790949,56.78530901560928],[-127.45735352142731,56.785180422972445],[-127.45709622042575,56.78506901318544],[-127.45683659365422,56.784949784530426],[-127.4565978164478,56.784840406620035],[-127.45632264777085,56.784743764892035],[-127.45603751662176,56.784655079219775],[-127.45577225601967,56.78454935970635],[-127.45551001926268,56.78444248501995],[-127.45523906303016,56.78434915565674],[-127.45495927716647,56.78426601084572],[-127.45465294101359,56.784212300721435],[-127.45440295828992,56.7841041655113],[-127.4541465791031,56.78398937780455],[-127.45397991844149,56.78383547975525],[-127.45379931509582,56.78369182396404],[-127.45357504226138,56.78355874420643],[-127.4533160509596,56.78345631143241],[-127.452996225531,56.78342516194357],[-127.45266818348729,56.78342099945305],[-127.45234712740056,56.78343917071582],[-127.4520205454328,56.78341930112316],[-127.45173188322501,56.783345214298116],[-127.45153186440464,56.783202893914066],[-127.45136122110574,56.78305127868026],[-127.4511093746532,56.78294764086297],[-127.45074473311821,56.782786993200695],[-127.45043108580464,56.78283869613683],[-127.45011739568753,56.78288927813739],[-127.44980271431402,56.7829409911207],[-127.44948893865168,56.782989331246775],[-127.44916596206448,56.78301087808695],[-127.4488389563391,56.78300669433532],[-127.44851367932338,56.78302154141083],[-127.44819213703605,56.783054276230395],[-127.44786580146156,56.7830680128682],[-127.44753869522427,56.7830615856589],[-127.44721202430135,56.783066359222964],[-127.44688402779353,56.78306330225441],[-127.44655782856776,56.78305350049087],[-127.44623188062803,56.78305041897708],[-127.44590502587491,56.7830507087115],[-127.44560595679793,56.78299913757923],[-127.44527874242766,56.782989343940294],[-127.44495209726504,56.78299523216317],[-127.44462563561811,56.783005600095294],[-127.44429953358686,56.7830260490001],[-127.44397645792198,56.783017326534186],[-127.44364943631665,56.78301312985623],[-127.44332135700313,56.78300782350221],[-127.4429993257081,56.78302710308603],[-127.44267425503512,56.78304753638717],[-127.44234719157478,56.78304221623973],[-127.44201952950915,56.78304810838489],[-127.44169671516522,56.78307411731048],[-127.44137160169711,56.783093427161056],[-127.44104882824357,56.783120554651966],[-127.44073139204322,56.78315322514802],[-127.44041652924753,56.78320043460069],[-127.44018300948052,56.783203033100214],[-127.43997397149565,56.78323001299597],[-127.43990420953934,56.783255443255314],[-127.43982351340023,56.78326194415311],[-127.43964951780012,56.78340508072057],[-127.43938500575865,56.783511121751346],[-127.43916032894805,56.78364137350223],[-127.43894291168088,56.78377378544208],[-127.43868671391608,56.783883094524626],[-127.43838250125715,56.78394138702531],[-127.43809146884298,56.78402306589792],[-127.43784580065665,56.78414010081158],[-127.43769068778124,56.78429535202966],[-127.43747022249345,56.784428915951004],[-127.43723086170773,56.78455036220891],[-127.4370435852645,56.78469476332148],[-127.4367737778754,56.78479637513364],[-127.4365374772067,56.784917786120445],[-127.43626450282991,56.785017190711294],[-127.4360271831481,56.78513861205709],[-127.43579834697746,56.78526778337094],[-127.4355631974766,56.785392541712696],[-127.43534062851364,56.7855250046317],[-127.43509494247891,56.78564203443188],[-127.43483782997959,56.785754707838414],[-127.43465523678589,56.78588784708153],[-127.43445811656298,56.78604355993756],[-127.43422504811905,56.786169413390795],[-127.43395205897794,56.786268813181344],[-127.43370116775127,56.78638365666261],[-127.43352424147896,56.78655931601332],[-127.43328694065801,56.78665383657157],[-127.4331039024635,56.78680266754493],[-127.43293532763259,56.78695470008885],[-127.4328112449936,56.787118567047045],[-127.43277272712409,56.7872960552516],[-127.43268381785113,56.78746849795146],[-127.43256498672885,56.787635668508834],[-127.43244307338482,56.78780287306936],[-127.43232322405296,56.787970054683065],[-127.4321723368571,56.78812973506146],[-127.43199654891086,56.78828072555703],[-127.43179267952355,56.78842081995297],[-127.43155327623964,56.78854225600817],[-127.43129816648968,56.78865490010965],[-127.43107761289262,56.78878733331108],[-127.43091636586938,56.788943764801196],[-127.43074785594531,56.78909803507048],[-127.43054815803468,56.78924032266653],[-127.4303691945828,56.78938910472879],[-127.43025759283304,56.78955843460192],[-127.43014395772661,56.789727786848495],[-127.43002924764906,56.789896030230636],[-127.42996497203318,56.790070440315276],[-127.42994295272779,56.79025110751916],[-127.42992294063508,56.79043063192066],[-127.4298761695682,56.79060708995155],[-127.42968163230702,56.79075043986806],[-127.42946224296492,56.79088734002174],[-127.42928535793507,56.791037218302364],[-127.4291581816771,56.7912011160062],[-127.42905277373436,56.79137149718382],[-127.4289535777991,56.79154405101097],[-127.42885127450047,56.791715518419025],[-127.42873864315457,56.79188485843929],[-127.42861462603958,56.79205096206786],[-127.42844814231528,56.79220520702755],[-127.42828902697715,56.79236497371826],[-127.4280963999041,56.79250493823045],[-127.42775965141333,56.792572529211505],[-127.42758074404001,56.79269553193759],[-127.42752137666953,56.79286428357846],[-127.42749524647284,56.79304499585775],[-127.4274888208604,56.79323221477606],[-127.42748748447777,56.79341825695529],[-127.42748082722454,56.79359875458422],[-127.4274874388021,56.79377798528844],[-127.42750125505331,56.793958257224546],[-127.42751196479755,56.79413744278392],[-127.427479521361,56.794313742206306],[-127.4273534420352,56.7944798674647],[-127.42723046829556,56.79464707901938],[-127.42710641946378,56.7948131816646],[-127.4269803369094,56.79497930661047],[-127.42685005615085,56.7951432364074],[-127.42668667518946,56.79529856562502],[-127.42637744670716,56.79536248764239],[-127.42616186997208,56.79549261628128],[-127.42600479715861,56.795652357735385],[-127.42591168266833,56.79582372178625],[-127.42583719079666,56.795999363298506],[-127.42575543560264,56.79617284346247],[-127.42567268819025,56.79634745515903],[-127.42558786602102,56.79652096900786],[-127.42549996118177,56.79669451674955],[-127.42542644087807,56.79686902673469],[-127.42540841230586,56.797047408411075],[-127.42539452317325,56.79722686518315],[-127.42518282625518,56.79749030675011],[-127.42580476090322,56.79751147601915],[-127.42612952299031,56.79753479507271],[-127.4264514925677,56.79756598862903],[-127.42676799238367,56.79761517206187],[-127.42707760183815,56.797672275223384],[-127.42735972183719,56.797762179546815],[-127.42764285955127,56.797852072054006],[-127.4279190825917,56.797948764118644],[-127.42820321442501,56.798037523826764],[-127.42849624637914,56.79811721953648],[-127.4287705069529,56.798216172797375],[-127.42901075952314,56.798337913842175],[-127.42922187081571,56.7984756652411],[-127.42943095076394,56.79861343874863],[-127.42962285373082,56.79875812550351],[-127.42976418902751,56.79892130079711],[-127.42991658128862,56.7990787506057],[-127.43011258692498,56.79922339141667],[-127.43029139038661,56.79937382523246],[-127.43045800735524,56.79952775541197],[-127.43061553626801,56.79968514777016],[-127.43076093632432,56.79984715659172],[-127.43087425000631,56.800000554614954],[-127.4308839194239,56.80001277494956],[-127.43097334652298,56.80018548796038],[-127.43105772575728,56.80036049802862],[-127.4310878728621,56.8005383487342],[-127.43108942858512,56.800718756742356],[-127.43108272904847,56.80089813534933],[-127.43108629269824,56.801077400553325],[-127.43109327609923,56.801321625909516],[-127.43108661791102,56.80150212477917],[-127.43106554736725,56.80168054163162],[-127.43105888898793,56.80186104053965],[-127.43103990897677,56.8020405549759],[-127.43096946944966,56.80221503479923],[-127.43089600475497,56.80239066867724],[-127.43082767121548,56.80256624583147],[-127.43075932066017,56.802741823149724],[-127.43068684551855,56.80291632535663],[-127.43067707771615,56.80309573805722],[-127.43057781754536,56.80326717417129],[-127.43053407496988,56.8034424795794],[-127.43051921578459,56.80362306921346],[-127.43046833245957,56.8037995741637],[-127.4303815901869,56.803976475178665],[-127.43037587835254,56.804154722500954],[-127.43032081175578,56.80432903232863],[-127.4302215468425,56.80450046829977],[-127.43013360324777,56.804672899838486],[-127.42995444260234,56.804818322138495],[-127.42974946209168,56.80495842596134],[-127.42954237272114,56.805097432077716],[-127.42932906670696,56.80523426515734],[-127.42931881516584,56.80545626820886],[-127.42929875092484,56.80563467398813],[-127.42921908189984,56.80580925494494],[-127.42913108947937,56.805980565742104],[-127.42906682447497,56.80615609730121],[-127.42901388154249,56.80633262457179],[-127.42893416841683,56.80650608522816],[-127.42889463820086,56.80668470580454],[-127.42888587777671,56.80686410757],[-127.42885970312172,56.8070437014772],[-127.42885300854938,56.807223080486],[-127.42881136974601,56.80740060370894],[-127.42871308194754,56.8075709072508],[-127.42861914095542,56.80774788672452],[-127.42851056138828,56.80791718299428],[-127.42829365703271,56.80804060619088],[-127.42800287691475,56.8081345858053],[-127.42774758628948,56.808246104062455],[-127.4274966167994,56.80836317747024],[-127.42724345563364,56.80847691256213],[-127.42697763883834,56.80858070066668],[-127.42668646322862,56.80866459571664],[-127.4263768800734,56.80872179704293],[-127.42605971699382,56.80876787450496],[-127.42574249547242,56.80881283116943],[-127.4254286450455,56.8088655945507],[-127.42511475249245,56.80891723697019],[-127.42479758630746,56.80896331134752],[-127.42447589086304,56.80899822818369],[-127.42415084168857,56.80899732006768],[-127.42382397601111,56.808975138624525],[-127.42349120866976,56.80895974516378],[-127.42316893508332,56.8089789759023],[-127.42284023975975,56.80899043178567],[-127.4225142811771,56.808992891523786],[-127.4221906065236,56.80897403289202],[-127.42187128252158,56.808933833225616],[-127.42155183568266,56.808890272160255],[-127.4212286604039,56.80885683713238],[-127.42090335360078,56.80882118337734],[-127.4205772775348,56.80879226118411],[-127.42025300010192,56.808784610909335],[-127.41993393260367,56.80880716040582],[-127.41961662142145,56.808849861660136],[-127.41930178674544,56.808903741546374],[-127.41898600028095,56.808959872397836],[-127.41867000748255,56.80901040145509],[-127.41835494841115,56.809058678198596],[-127.41803998708262,56.80910919440889],[-127.41772386866022,56.809156360546226],[-127.41740541232816,56.80919570690485],[-127.41708260949962,56.8092283760999],[-127.41675751014294,56.80925434567675],[-127.41643129520575,56.80927808532363],[-127.41610611297499,56.80930181285412],[-127.41578204545335,56.809327768688654],[-127.41546021587125,56.80935930252357],[-127.41515771117291,56.809414158153736],[-127.4148407175259,56.80946580937849],[-127.41454747550853,56.80954969939894],[-127.41424982945993,56.809625792253506],[-127.41394141713613,56.80968743344095],[-127.41362446056428,56.80974020190531],[-127.413303577055,56.80976947869997],[-127.41297872626443,56.80977414358661],[-127.41265140005392,56.809767628117484],[-127.41232285272959,56.80975552186867],[-127.41199426471992,56.80974229457896],[-127.4116668735804,56.80973353602769],[-127.41133991578268,56.80973709911648],[-127.41102181594447,56.809786511668676],[-127.41072602311442,56.80985697288668],[-127.41043800817964,56.80994415852335],[-127.41013383390717,56.81001022702696],[-127.40981778014165,56.81005961431393],[-127.40949599682887,56.81009225337559],[-127.40916859040205,56.81011150497368],[-127.40884215958143,56.81012962447636],[-127.40850204844831,56.81016582236473],[-127.40820411388732,56.81020604342408],[-127.40789128575568,56.81025987351408],[-127.40758182511017,56.81032151081415],[-127.40727666700883,56.81038870388294],[-127.40698253144087,56.810477068890265],[-127.40674230270011,56.810581657553264],[-127.40642110852707,56.81065910861378],[-127.4061981315332,56.81078704263025],[-127.40594805639208,56.81090294321806],[-127.40569905361825,56.81101995232995],[-127.40544794231741,56.81113586318128],[-127.40521799630011,56.81126947436391],[-127.40498890222116,56.81137057696641],[-127.404647117273,56.81144600559706],[-127.40438018629553,56.811549758719146],[-127.40415159275747,56.8116643022198],[-127.40384534392592,56.81175839456499],[-127.4035721368205,56.81185885205852],[-127.40330834814023,56.81196481019196],[-127.40309688017875,56.81209933800856],[-127.40288137564998,56.8122361504981],[-127.40259312221583,56.81231771775787],[-127.40228351482958,56.812375981841235],[-127.40198149571177,56.81244536956931],[-127.40168376207467,56.81252031347272],[-127.40139278325316,56.81244165424796],[-127.4011101491446,56.81239540303344],[-127.40067255247003,56.81228919111492],[-127.40022923607593,56.81259095682744],[-127.40000091105425,56.81268531824095],[-127.39997363326442,56.81269681957736],[-127.39969760899494,56.8127479905425],[-127.39937226575476,56.81276831547458],[-127.3990469221727,56.81278863958982],[-127.39872178079818,56.81281456395915],[-127.39841417311845,56.8128716764624],[-127.39810676699143,56.81293438930953],[-127.39778379523,56.81296364984371],[-127.3974564041246,56.81295597575216],[-127.39712894862143,56.812946060226814],[-127.39680208370234,56.812952947273565],[-127.39647507328709,56.81295535245899],[-127.39615177663138,56.812975647205114],[-127.39589521845186,56.81299858391832],[-127.39574560721776,56.81300131673501],[-127.39552996190558,56.81304958684088],[-127.39528365736622,56.81315758132314],[-127.39495704913904,56.81317118483188],[-127.39463006075587,56.81317470575263],[-127.39430429071729,56.813154679073584],[-127.39398881903017,56.813107645145614],[-127.39366664917999,56.81307413032754],[-127.39334457699705,56.813042854964564],[-127.39302478860631,56.81307543129578],[-127.39270972117906,56.8131247658235],[-127.39240979333483,56.81319634983617],[-127.39209902580691,56.813251239891564],[-127.39177604685693,56.8132804854541],[-127.39144950055825,56.81329632073061],[-127.39112224516657,56.81329199110432],[-127.390794933167,56.81328654061057],[-127.39046808064491,56.813293411501604],[-127.39014161422563,56.813311483915854],[-127.38981610021825,56.81332730398726],[-127.38948833468483,56.813337544144176],[-127.38916876915776,56.8133476955315],[-127.38884428767099,56.81336350208096],[-127.38851408174132,56.81339169631347],[-127.38818690628243,56.81338959970766],[-127.38785975465458,56.81338862266918],[-127.3875329811219,56.813397726591454],[-127.38720646089612,56.81338553465529],[-127.38689207900538,56.81342588240907],[-127.38658996752963,56.81349411425549],[-127.38627156430063,56.813536744831794],[-127.38594837785841,56.813560374777786],[-127.38562136163732,56.81356275256733],[-127.3852948004994,56.81354943559307],[-127.38495856489529,56.813523894108855],[-127.38464654096916,56.81354403951005],[-127.38434975843707,56.81361781236101],[-127.38402902105979,56.81365261780338],[-127.38370378221433,56.813676264055594],[-127.38337846283825,56.81369766905255],[-127.38305882087366,56.81373470167454],[-127.38273927479366,56.81377397377344],[-127.38241224016942,56.81377634363794],[-127.38208341200823,56.81378545569484],[-127.38175942053604,56.813786670794244],[-127.3814692894934,56.81370235481418],[-127.38120401724765,56.813596480856255],[-127.38094278297733,56.813488322037074],[-127.38067850687838,56.81338131578208],[-127.38043719985754,56.81325725454151],[-127.38020689797892,56.813125231094766],[-127.37994401930953,56.813028294337045],[-127.37962096535001,56.81299811608479],[-127.37928903808323,56.81297811732782],[-127.378961805119,56.81294574064979],[-127.37864102361229,56.81295027578828],[-127.37833133518559,56.81300736242751],[-127.37802409498883,56.813075628727205],[-127.37772859955857,56.81315721711715],[-127.37745835814505,56.813256466603946],[-127.37722595719403,56.81338220869068],[-127.37701037043396,56.81351897806878],[-127.376807185787,56.81365897720171],[-127.37663733561317,56.813813190150135],[-127.37646235067228,56.81396745743816],[-127.37626543154657,56.81411075107369],[-127.37597280858324,56.81418670164198],[-127.37565233785689,56.81422932791348],[-127.37532832146464,56.81425854328646],[-127.3750028332612,56.81427544636922],[-127.37467497614973,56.81428340860919],[-127.37438149469955,56.814306694334604],[-127.37402356071077,56.81430488822332],[-127.37369819090766,56.81432514869746],[-127.37337069110232,56.81434318964385],[-127.37305218678512,56.81438354730615],[-127.3727371066014,56.81443395369559],[-127.37243718780879,56.814506611573954],[-127.372157331964,56.81459586590214],[-127.37192585952708,56.81471934719284],[-127.3716766334419,56.81483405089728],[-127.3714473670745,56.81496199053898],[-127.37121704260164,56.815088820324604],[-127.37123983811875,56.815269002829595],[-127.37107089613828,56.81542095742054],[-127.3709589597321,56.815590238830744],[-127.37089134772555,56.81576577496802],[-127.37086794156974,56.8159442052289],[-127.37082090996438,56.81612176486018],[-127.37065389372218,56.81627033661719],[-127.37060574802813,56.81644566668843],[-127.37069896498483,56.81661613917405],[-127.37074731033387,56.81667838378841],[-127.37076153190988,56.81679029787381],[-127.37075968363506,56.81696962075267],[-127.3707445168747,56.81714908457431],[-127.37072318277238,56.81732861366788],[-127.3707018648742,56.81750814260446],[-127.3706795134343,56.81768768249055],[-127.370666379913,56.81786712486385],[-127.37067273236335,56.81804636109118],[-127.37069753769796,56.81822540210282],[-127.37074585077141,56.81840195311382],[-127.37085340898336,56.81857227401196],[-127.37101988844601,56.81872628225878],[-127.37123394841731,56.818862977014625],[-127.37142067944447,56.81901004656993],[-127.3715404417186,56.81917687588029],[-127.37157755403506,56.8193557866107],[-127.37155208208655,56.81953423927317],[-127.3714762643086,56.81970986297088],[-127.37140659704669,56.81988542153104],[-127.37133893983881,56.82005983814208],[-127.37125278851778,56.82023332982605],[-127.37120473645045,56.82041090083348],[-127.37119673874052,56.8205902892245],[-127.3712113356114,56.82077055915297],[-127.37128416385318,56.82094460954346],[-127.37140904949341,56.821111385006766],[-127.37156843669989,56.82126770930028],[-127.37175724749572,56.82141475670984],[-127.37196019803454,56.82155605089876],[-127.37214293973382,56.821705403368796],[-127.37230840436357,56.821859421204714],[-127.37238854386739,56.82203675567681],[-127.37226705689659,56.8221971747334],[-127.37211690121654,56.82235901794088],[-127.3720492826322,56.82253455542027],[-127.37206076043392,56.82271373790008],[-127.37215415791593,56.82288869092014],[-127.37213997263731,56.82306702456438],[-127.3720807539819,56.823248076422125],[-127.37196039825825,56.82341184523095],[-127.37176331154626,56.823551771999824],[-127.37151852659537,56.82367763491016],[-127.37126416297723,56.82379351286761],[-127.37100971839716,56.82390714987337],[-127.37074999512592,56.824016359612926],[-127.37048607332143,56.82412337193084],[-127.37021900291762,56.824228175698096],[-127.36994976136258,56.824329639909635],[-127.36967536030787,56.82443003744256],[-127.36939037079853,56.82452158108517],[-127.36909450845334,56.82459530856718],[-127.36877267243355,56.82463120762759],[-127.36844319097783,56.82465373882236],[-127.36813958539221,56.82471185677211],[-127.36786820509184,56.82481109787802],[-127.36760653507132,56.82492368372346],[-127.36733837818241,56.82502737228239],[-127.36706703321764,56.8251277319625],[-127.366796759989,56.82522920041117],[-127.36653606157344,56.82534065316252],[-127.36625185397911,56.82542545765735],[-127.36593675411392,56.825478088320004],[-127.36562809886075,56.82553849483954],[-127.3653237254324,56.82560445875008],[-127.36501178620875,56.825659295137825],[-127.36469874987044,56.825711901021954],[-127.36439228324517,56.825776764116355],[-127.36408366271574,56.825838287202544],[-127.36377392861668,56.82589757996615],[-127.36354763840708,56.82602547421819],[-127.36318007461527,56.82584107242397],[-127.36297311121669,56.82570204771752],[-127.36277521135885,56.82555844478803],[-127.36256323440278,56.82542283415889],[-127.36232901706018,56.82529642223599],[-127.36214688824522,56.82516385910383],[-127.36193728964916,56.82500805085032],[-127.36175351517576,56.824857574137646],[-127.36152155179136,56.82473674041768],[-127.36121079725892,56.82470862721862],[-127.3609123781457,56.82471064122214],[-127.36064114820688,56.82461039005246],[-127.36038386372334,56.824498785444376],[-127.36011960868368,56.82439285675771],[-127.3598563492188,56.82428579645824],[-127.35958708045189,56.82418328129149],[-127.35932985763745,56.82407279468244],[-127.35908460864795,56.823953216814346],[-127.3588264340192,56.82384498053061],[-127.3585352997848,56.8237617435689],[-127.35821785254645,56.823718004433374],[-127.35791200158127,56.8236539713607],[-127.35760417968356,56.82359219952315],[-127.35728956666715,56.823541704569706],[-127.35696648189104,56.82351258986385],[-127.35663910464604,56.823507052869324],[-127.35632170093585,56.8234644293304],[-127.35600418007448,56.82341844431113],[-127.35587456035319,56.82340747367686],[-127.35570944810952,56.8233498071658],[-127.35559723613922,56.82327925989768],[-127.35547239438708,56.8232290162854],[-127.35514646506084,56.82320665071981],[-127.35482808762065,56.82316515440281],[-127.35450682298712,56.82312929072044],[-127.35418749183867,56.82309004410559],[-127.35387288736878,56.823039540872784],[-127.35356997617849,56.82297098441303],[-127.3532651951048,56.82290805001251],[-127.35296658114459,56.82281591375322],[-127.35271339448126,56.822732267715374],[-127.35245020440385,56.822597175984676],[-127.35221541188862,56.82248195897415],[-127.35195820504644,56.822371458021614],[-127.3516859420967,56.82227007880424],[-127.35139589130154,56.822187935509334],[-127.3510841861171,56.82213179219157],[-127.35076281614847,56.822092558544384],[-127.35045419664475,56.82203638156263],[-127.35016407199255,56.82195199505177],[-127.34986412615949,56.82188003730304],[-127.3495760153868,56.82179450788492],[-127.34930380183106,56.821694243934296],[-127.34906767807058,56.82157007016434],[-127.34883454522173,56.82144362356758],[-127.34861148741501,56.82131146849633],[-127.34835634913834,56.82120093913142],[-127.34807515827862,56.82110748999105],[-127.34781394954747,56.82099926404787],[-127.34754900907105,56.82090116218774],[-127.34722890410733,56.82086863064099],[-127.34690233356704,56.820856337068264],[-127.34657784988451,56.82087427829726],[-127.34625938084358,56.82091793095886],[-127.34593712536122,56.82094145062765],[-127.34560945962298,56.82092692388935],[-127.34528292807589,56.820915746470895],[-127.34495756555056,56.82093817531842],[-127.34465311517974,56.821001850015506],[-127.34440034971566,56.82110645139506],[-127.34413863645884,56.82121898958808],[-127.34382705294166,56.821283856961365],[-127.3435048707702,56.8213096110604],[-127.34329777101368,56.821311758426525],[-127.34319214530018,56.82128259621323],[-127.34289916912961,56.82120382646319],[-127.34260215456831,56.82112733919559],[-127.3422793343271,56.82110490933859],[-127.34205358686948,56.82110164471825],[-127.34197036245776,56.821067766924806],[-127.34164960294788,56.82110470807642],[-127.34134465708684,56.8211538117498],[-127.34110910146059,56.82128176187975],[-127.34088493035073,56.821412955673686],[-127.34066491397445,56.82154522672356],[-127.34040199810127,56.8216532871413],[-127.34012638942865,56.82175027190585],[-127.339864550817,56.82183030407817],[-127.33963185166874,56.821981755380754],[-127.33935202125313,56.82207542020472],[-127.33906260472298,56.82215909773042],[-127.33878068231692,56.82225166228429],[-127.33847066674734,56.82230305276186],[-127.33814616701758,56.82232097289228],[-127.33781940625359,56.8223333123554],[-127.33748859933017,56.82234681339982],[-127.33727841500833,56.82246777071155],[-127.33709169288265,56.82261426026663],[-127.33686648333729,56.82274545771326],[-127.33664545086727,56.822878852951185],[-127.33637714774348,56.822980236820676],[-127.33608993982561,56.823068367396324],[-127.33581005427132,56.82316090439408],[-127.33558274790087,56.82329100055443],[-127.33536059700667,56.82342216381765],[-127.33511022799152,56.82353792850753],[-127.33483459261781,56.823634902130074],[-127.33459353400161,56.82375281117006],[-127.3344047284616,56.82389931826107],[-127.33423667624524,56.824052335212635],[-127.33415468280805,56.82423248185657],[-127.33407648073589,56.82440362430589],[-127.33398087771333,56.82457606650631],[-127.33386564600484,56.82474422814958],[-127.3336893465926,56.82489620866992],[-127.33356993399752,56.82506217181351],[-127.33350110216853,56.82523770008413],[-127.33343539262282,56.825414316840806],[-127.33333562194059,56.82558456022577],[-127.33316033377785,56.825736529639556],[-127.33295594767753,56.825877591741964],[-127.33271284081198,56.82599663895611],[-127.33249158240508,56.826124426160725],[-127.33228301309359,56.82626328892533],[-127.3320962537181,56.82640977162819],[-127.33191369384248,56.826559572817736],[-127.33173630630274,56.82671044123285],[-127.33159314947302,56.82687216405859],[-127.33146448496363,56.82703822038452],[-127.33141927117924,56.82721462559322],[-127.33142442604183,56.82739387521133],[-127.33147874591805,56.827571499043],[-127.33163086715088,56.82772906698029],[-127.33180436097246,56.827881932545324],[-127.33193718637597,56.82804530169999],[-127.33204327447284,56.82820670430571],[-127.33216519997583,56.82838139174486],[-127.33229290961717,56.828544813209795],[-127.33237788266156,56.82871875977166],[-127.33251987339908,56.82887979294829],[-127.33270646691027,56.829025798946894],[-127.33291142061375,56.82916825392928],[-127.3331152649095,56.82930847874249],[-127.33328773801699,56.82946135310597],[-127.33351577145295,56.82958900139513],[-127.33383528986845,56.82963278009125],[-127.33413006953803,56.82970258749936],[-127.33434618810767,56.82984156349025],[-127.33442084111269,56.830013373950855],[-127.33442520856677,56.83019935588227],[-127.33452429741544,56.83036531149053],[-127.33473837012127,56.830504308005814],[-127.33493922075495,56.83064680233013],[-127.3350466716967,56.83081715406097],[-127.33513982747846,56.8309898942963],[-127.33521051666328,56.83116510725622],[-127.33527708802258,56.83134036263118],[-127.33535289786157,56.831515522804764],[-127.33548272107201,56.831680040559164],[-127.33561361261806,56.831875925278176],[-127.33574538408543,56.83200792402562],[-127.33591383260801,56.83216195751015],[-127.33603145362382,56.832329962547284],[-127.33613788030607,56.832500324209605],[-127.33626466403193,56.83266599333332],[-127.33638939773682,56.832831683500444],[-127.33643761112022,56.833009369138395],[-127.33649911033469,56.83318579712816],[-127.3365493593904,56.83336346178115],[-127.33659552302704,56.83354116857227],[-127.33668052640971,56.8337151128563],[-127.3368195072066,56.83387729389001],[-127.33699707398594,56.834027870280806],[-127.33719998008654,56.83416921983881],[-127.3373866555544,56.83431633982998],[-127.3375267140359,56.834479629746795],[-127.33766972600868,56.83463952711383],[-127.33786859648814,56.834783158686],[-127.33807450080887,56.83492223476967],[-127.33830869714726,56.835048691282594],[-127.3385075497264,56.83519120149351],[-127.33870437491713,56.835334853017],[-127.3388799432846,56.83548656840118],[-127.33900979483832,56.83565108303173],[-127.33915490735019,56.835812077934136],[-127.33930916596682,56.83597073689431],[-127.33942579588953,56.83613874976534],[-127.3395169491802,56.83631150845882],[-127.33959786919911,56.83648549353105],[-127.33967474256319,56.83666064105575],[-127.33974442880523,56.8368358628508],[-127.33975576112316,56.837015049774784],[-127.33975790956141,56.837195452298936],[-127.33976412188595,56.837374692186586],[-127.33977853969279,56.83755384727889],[-127.33965543847982,56.83773218249678],[-127.3395320112885,56.837871298190095],[-127.33926632288977,56.83799171203947],[-127.33899485287974,56.83809313399587],[-127.33873076350888,56.83820008240117],[-127.33851576451194,56.83833229830568],[-127.33836019057937,56.83849191655392],[-127.33818072203107,56.83864281609782],[-127.33806132503511,56.83880990505795],[-127.33793262621413,56.838974848625604],[-127.33780600009703,56.839140891330274],[-127.33769693473354,56.83931011464555],[-127.33757343066664,56.839477245568354],[-127.33750662046566,56.83965163595985],[-127.33745837284077,56.83982919675676],[-127.33740603820924,56.84000679971902],[-127.33738658816027,56.84018630469982],[-127.33737637791684,56.84036571436657],[-127.33737745912386,56.84054500755579],[-127.3373507977767,56.84072346633553],[-127.33720034645219,56.840883030433076],[-127.33703340403964,56.84104052315181],[-127.33695100010668,56.8412094709518],[-127.33689438674827,56.8413826353373],[-127.33671175242391,56.841531324268296],[-127.33658302237107,56.84169626694754],[-127.33648117194038,56.841866535643554],[-127.33643398958048,56.84204520589957],[-127.33641142605454,56.8422236223523],[-127.3364063703138,56.84240409963433],[-127.33637970320108,56.84258255842303],[-127.33635817313458,56.84276096426723],[-127.33637769806762,56.84294006755394],[-127.33635675933633,56.84310614014891],[-127.3364049197422,56.84331184396879],[-127.3364299193417,56.84347071910454],[-127.33651289213412,56.84364468573439],[-127.33660913238317,56.843816274236495],[-127.33668907612633,56.84399139269264],[-127.33676591249038,56.844165422513704],[-127.33682537923535,56.844341872741396],[-127.33687525678728,56.84450833596056],[-127.3370704127944,56.84475062609111],[-127.33634936488573,56.8449104698813],[-127.33605615926612,56.84497848994848],[-127.33576441260846,56.84505882151632],[-127.3354511242529,56.845110237299316],[-127.33517431822176,56.84520722343866],[-127.33489536522912,56.84530198977604],[-127.33458855496131,56.845362301984785],[-127.3342590702761,56.845390347838126],[-127.3339409390108,56.84542051733911],[-127.33364473313603,56.84549080407145],[-127.3333752861424,56.84559331388802],[-127.33309739869775,56.84568918600152],[-127.33281417900416,56.845779509057415],[-127.33257100156517,56.845899677580185],[-127.332298115378,56.84599213458576],[-127.33197151653368,56.846014541635824],[-127.33164432188768,56.84602014416382],[-127.33131618663099,56.84602799683304],[-127.33098927826165,56.8460414393455],[-127.33066246896682,56.8460582419769],[-127.33034016505759,56.84608620409003],[-127.33001918681104,56.846123117029414],[-127.32969717383492,56.84616003978153],[-127.32938490260155,56.84621143033568],[-127.32908362166384,56.846283999883596],[-127.32879401804635,56.8463676555745],[-127.32852877127871,56.84647347409236],[-127.32829814031784,56.84660135047965],[-127.32807588563509,56.84673362326127],[-127.32784939382827,56.8468625770931],[-127.3276187747127,56.84699045213515],[-127.3273754801315,56.84710837065355],[-127.32712288188783,56.84722414263744],[-127.32705013780814,56.8473470385283],[-127.32712552314199,56.847540140025316],[-127.32721018484364,56.847704009538056],[-127.32738773922875,56.84785348014062],[-127.32757448192342,56.84800173578882],[-127.32772670614062,56.84816043059051],[-127.3278809671265,56.84831910438181],[-127.32804326107096,56.84847209246059],[-127.32811161218602,56.848639490577774],[-127.32809976670089,56.84883236461884],[-127.32812748072841,56.84901138558728],[-127.32816403568708,56.8491791094515],[-127.32817775495573,56.84936948037069],[-127.32816544753796,56.84954891136991],[-127.32820752644425,56.84972778525927],[-127.32821675703345,56.84990699566573],[-127.32819213745927,56.85008655285463],[-127.32812944766592,56.8502631380606],[-127.32804850346879,56.850446634164314],[-127.32798412371481,56.85060418547614],[-127.32786606487863,56.8507824583349],[-127.32778580614605,56.850955861380555],[-127.32771484984346,56.85113141044576],[-127.32765313552227,56.8513068648529],[-127.32771352892362,56.85148106893817],[-127.32789718194343,56.85162823563428],[-127.32817961884487,56.85172284001686],[-127.3285064827691,56.85173630127727],[-127.32882571632682,56.851766649779115],[-127.32910978477226,56.85184890822188],[-127.32930769414038,56.85199256491815],[-127.32947823983211,56.85214658783349],[-127.32965791409433,56.85229715496908],[-127.32976942915452,56.85246523078124],[-127.32990334832297,56.85262859410686],[-127.33002409196621,56.85279657510371],[-127.3301529296843,56.85296111100934],[-127.33027873699436,56.853126798563906],[-127.33040354964793,56.853293616889445],[-127.3305334085327,56.85345814202516],[-127.33063986916436,56.85362851046843],[-127.33066451185401,56.85380756311125],[-127.33067893218524,56.85398784133494],[-127.33059971374786,56.85416123585969],[-127.33049368317847,56.85433154347796],[-127.33039898589185,56.85450285540198],[-127.33029193557444,56.85467317333588],[-127.33015273509886,56.854833735042],[-127.33005080528994,56.85500400026718],[-127.32985252559591,56.85514835771467],[-127.32969160996632,56.85530465899116],[-127.3295834978123,56.85547386659981],[-127.32948259817698,56.85564412084181],[-127.32937344978308,56.855813338916626],[-127.3292767301002,56.8559857914873],[-127.32917688428104,56.85615715537769],[-127.3290180526102,56.85631455514801],[-127.32884880369329,56.85646757883151],[-127.32852894270012,56.85647982143813],[-127.32820132875824,56.85647533275071],[-127.3278762077072,56.85645400779999],[-127.32755756921884,56.85641244378454],[-127.32724080778068,56.856365256480856],[-127.32691488463864,56.856350661307715],[-127.32658754122927,56.8563540104103],[-127.32626482443669,56.856373000609494],[-127.32594711272547,56.856417714006966],[-127.32564513076072,56.85647235176189],[-127.32533737511012,56.856538254414694],[-127.32501465616446,56.85655724150522],[-127.3246873108405,56.85656058581221],[-127.32436222941182,56.85654037231875],[-127.32405815037579,56.8564739965328],[-127.32373523751802,56.856457121316055],[-127.32340937137336,56.85647389521749],[-127.32308072368315,56.85646940415149],[-127.32275309404456,56.85646490186895],[-127.32242630715778,56.85645478687022],[-127.32209857913567,56.85644692196294],[-127.3217762809356,56.85647822394356],[-127.32145056702466,56.85649947399657],[-127.32113574978264,56.856448890060356],[-127.3208228544213,56.8563949238193],[-127.32050522011251,56.856352211674775],[-127.32021593763017,56.856267745764754],[-127.3199062848478,56.85621822696708],[-127.31957767800057,56.856214847293444],[-127.31925008918031,56.85621145643114],[-127.31892171189936,56.856214796708166],[-127.31859553984991,56.8562225963607],[-127.31826823502968,56.856227044734176],[-127.31794361570516,56.85625051616605],[-127.31762361378532,56.85628850841268],[-127.3173035948173,56.85632650003762],[-127.3169790668617,56.85635220942877],[-127.31665459840798,56.856380158714316],[-127.31633348341843,56.856415917743995],[-127.31601236783456,56.85645167597945],[-127.31570873882384,56.85651863439623],[-127.31542221433334,56.856605590419214],[-127.31505165513228,56.85669675998114],[-127.31470237955962,56.85671935262264],[-127.31462621327812,56.85680417405532],[-127.31452000182595,56.85700136571133],[-127.31426083831032,56.85710821360838],[-127.31414847249708,56.857275209598484],[-127.31396654114202,56.85741937657262],[-127.31372739646996,56.85754170975207],[-127.31343667889338,56.85762646248609],[-127.31311354261139,56.85763309682283],[-127.31278369957262,56.8576241090483],[-127.31245372088378,56.85761063918168],[-127.31212577844082,56.857597147875175],[-127.311798718507,56.85757916418816],[-127.31147060284333,56.85756006969953],[-127.31114459955279,56.85754319434023],[-127.310818841016,56.8575330396289],[-127.31050507635358,56.85757431308684],[-127.31018011550798,56.85758768248972],[-127.30985864415804,56.85755282761679],[-127.30954374115132,56.85749997512986],[-127.30921884955819,56.8574853250301],[-127.30889122934663,56.857480787561165],[-127.30856280244377,56.85748298133969],[-127.30823550730963,56.85748852483553],[-127.30790871557325,56.85747837325052],[-127.30758546583812,56.85748163299456],[-127.30725707675899,56.85748494373969],[-127.30693156858463,56.85748262134296],[-127.30660470146874,56.85747022592581],[-127.3062773468282,56.8574735237679],[-127.30595112373942,56.85748017135267],[-127.30562277239034,56.85748459823334],[-127.30529536327674,56.85748677348861],[-127.30501730462571,56.857490692610426],[-127.30464848149275,56.85745181876617],[-127.30433655982911,56.85739556176313],[-127.30401987790887,56.857350558430795],[-127.30372164716194,56.85730424818616],[-127.30337064479735,56.85730665578408],[-127.30304461153092,56.85731889742863],[-127.30271750586193,56.85733002837052],[-127.30239060524251,56.85734675969532],[-127.30206722782516,56.85737690266322],[-127.30177429665068,56.8573966533144],[-127.30142777554515,56.857410217196254],[-127.30110309833405,56.857432526218346],[-127.30078534881481,56.85747717800375],[-127.30047306082002,56.85753186011567],[-127.30015107535813,56.85757319085316],[-127.29986098529724,56.85764670003234],[-127.29961977979781,56.857770148062315],[-127.29936915652335,56.85788808673399],[-127.29908369489243,56.85797723692159],[-127.29876187251419,56.85799278751256],[-127.29844125614868,56.85801392849302],[-127.29813880707228,56.85808643686441],[-127.29784477612834,56.85816558419442],[-127.29753236553736,56.858216898420196],[-127.2972122520475,56.85825259979672],[-127.29690211802719,56.858310613636895],[-127.29659740685119,56.858377537732984],[-127.29629376666202,56.8584455710531],[-127.29598040886967,56.85849913227981],[-127.29566262824028,56.85854377170899],[-127.29533795459658,56.85856606615087],[-127.29500959280752,56.85857046616517],[-127.29468187356761,56.858563652408655],[-127.29435679101306,56.858543363681335],[-127.29403244307646,56.858514101595205],[-127.29371199662963,56.85847919652269],[-127.29339053272653,56.8584443008124],[-127.29307097191446,56.85840490272913],[-127.29275039372074,56.858365514007616],[-127.29243079673705,56.858324994071005],[-127.29211990384859,56.85826869751055],[-127.2918207812866,56.85819547319914],[-127.29150499204471,56.85814594786961],[-127.29121205003395,56.85807378128073],[-127.2909615983375,56.85795188243272],[-127.29069833940022,56.85784579970407],[-127.29039558788705,56.857787176760624],[-127.29007405792257,56.857750032289154],[-127.28974565237925,56.85772192061119],[-127.28941928334667,56.85769378785815],[-127.28909413611746,56.85767124539469],[-127.28876636723002,56.85766217597459],[-127.2884386941555,56.857656466725714],[-127.28811198091292,56.85764850581638],[-127.28778396216512,56.85766297004494],[-127.28745992600878,56.857704289496425],[-127.2871933045329,56.85780555334799],[-127.2870635789295,56.85794804276334],[-127.28701820090986,56.858126676438616],[-127.28697384050382,56.85830530001544],[-127.28693759414026,56.858480481123294],[-127.28680548731221,56.85864428629341],[-127.28677036985106,56.85882281813102],[-127.28674134603436,56.85890715488201],[-127.2867721974857,56.85900098340725],[-127.28679458777843,56.85918006532799],[-127.28689591831397,56.85935612266615],[-127.2869027101964,56.859436742125006],[-127.28690893184574,56.8595308150567],[-127.28683557226412,56.85970188192384],[-127.28678392147926,56.85987721597284],[-127.28680936209882,56.86005514707994],[-127.2869013546059,56.86022793523388],[-127.2870554960855,56.860386658781984],[-127.28708508082671,56.860565669434145],[-127.28710952609218,56.86074473110826],[-127.28719946895858,56.86091753949725],[-127.28730267188051,56.86108797493208],[-127.2874446310099,56.86125018102918],[-127.28758452225905,56.86141240752898],[-127.28777015960578,56.86156073186229],[-127.28793549580519,56.86171598147487],[-127.28810996651976,56.86186777822547],[-127.28828526993951,56.86201396323324],[-127.28845177774005,56.86217368324766],[-127.28857329342345,56.86233833270449],[-127.28869791836601,56.8625040718346],[-127.28880216670579,56.86267449596891],[-127.28888291353266,56.86284851555567],[-127.28897591916314,56.86302017198189],[-127.28909446456686,56.86318821256902],[-127.28921802251142,56.863352841289206],[-127.28939147106547,56.863504646758095],[-127.2895720390894,56.86365413992853],[-127.28973635688874,56.863809397739196],[-127.28986407895627,56.863975105203984],[-127.28997342277566,56.86414435731934],[-127.29009502597049,56.86431124612348],[-127.29023186842592,56.86447350062965],[-127.29037278025005,56.864634593880425],[-127.29048007533495,56.864803866062246],[-127.29055776312352,56.86497791539697],[-127.29065590523076,56.865149519869746],[-127.29075610106689,56.86532110385854],[-127.29089398452015,56.865483347474814],[-127.29104311428486,56.86564435837793],[-127.29114429390836,56.86581481170239],[-127.29127811242078,56.86597821611479],[-127.291408919411,56.8661438917142],[-127.29147228116777,56.8663192040056],[-127.29153464628632,56.866495646872046],[-127.2916134143645,56.866670805744626],[-127.29171049331816,56.866841299623275],[-127.29181476665258,56.867011721807685],[-127.2919170254213,56.86718328465839],[-127.29198673744172,56.86736413689739],[-127.29206715009737,56.86752695201065],[-127.29212450806592,56.86770680662574],[-127.29218380712707,56.86788327993],[-127.29228017320442,56.868062745939206],[-127.2923348052592,56.86822245584144],[-127.29239465434182,56.86850762755039],[-127.29215645123793,56.86847750146927],[-127.2918493957389,56.868415561567744],[-127.29153553847135,56.868364895258765],[-127.29121582258264,56.86832325178463],[-127.29089614482434,56.868282727809365],[-127.29057742759137,56.868239952181455],[-127.290256716475,56.868199436927306],[-127.28993400686016,56.86816006141941],[-127.28961429439333,56.86811841400386],[-127.28930044247174,56.86806774229731],[-127.28900134511083,56.867997872047354],[-127.28874486395893,56.867881630779934],[-127.28859539877226,56.8677105344315],[-127.28842155145196,56.867577782464735],[-127.2881196611183,56.86754716099124],[-127.28779480521652,56.86753581798833],[-127.28745598942093,56.86753693995434],[-127.28711432633652,56.86754481322779],[-127.28677782466615,56.86755375505526],[-127.28645066496532,56.86756596532905],[-127.2861239691055,56.8675916180536],[-127.28580390013875,56.86763177279465],[-127.28549261812603,56.867688649505425],[-127.28519332665138,56.86776669913195],[-127.28492139370488,56.86786464887115],[-127.28470934035367,56.86800346928209],[-127.28452332887953,56.86815323802978],[-127.28433306092224,56.868298566028855],[-127.28407275708403,56.86840648473123],[-127.2837776377063,56.86848673105736],[-127.28346307193183,56.868538032048285],[-127.28314325287334,56.86858602226542],[-127.28284223765388,56.86851951880243],[-127.28255685008158,56.86842932636492],[-127.28226356570482,56.86834817662493],[-127.28195946611267,56.868281701646154],[-127.28164562290742,56.8682310114157],[-127.2813211868398,56.86820171752368],[-127.28099870924024,56.86816904151939],[-127.28067527175725,56.86813861550666],[-127.28035187191887,56.86810930897674],[-127.28002934236089,56.86807551043829],[-127.27970781096664,56.868040580602184],[-127.279385373184,56.868009020879505],[-127.27906193831164,56.86797859084775],[-127.27873854103703,56.86794928029896],[-127.2784132395664,56.86792447033394],[-127.27809646448416,56.867878283115665],[-127.27777589706999,56.86784109772268],[-127.27745440671542,56.86780728259593],[-127.27713979785932,56.8677644336945],[-127.27681545961616,56.867737368959986],[-127.27648833030979,56.86771929611527],[-127.27616146040197,56.86770906447219],[-127.27583897485643,56.86767637581413],[-127.27551463826401,56.86764930782896],[-127.27518845462424,56.86762898111529],[-127.27486158582498,56.86761874619759],[-127.27453288600712,56.86761525236755],[-127.27420679350823,56.86759716360441],[-127.27388149791392,56.86757234228161],[-127.27356576584167,56.86752613384932],[-127.2732607637749,56.86746300954465],[-127.27296852454107,56.86738182884699],[-127.27267632344729,56.86730176778531],[-127.27240703973105,56.86720018888835],[-127.27215677269655,56.86708385447348],[-127.27189045242048,56.8669788835272],[-127.27163820918886,56.866864808838606],[-127.27138593057313,56.866749613377614],[-127.27111660080946,56.86664691170869],[-127.27083430520464,56.86655554304562],[-127.27054901345281,56.86646644443666],[-127.2702587298586,56.86638187670713],[-127.26994586203088,56.86632890768315],[-127.26964694004123,56.866262353601265],[-127.26937347565733,56.86615856824403],[-127.26906450815781,56.8661302132723],[-127.26875317681106,56.86618592947086],[-127.2684295888304,56.866212627862716],[-127.26810126934008,56.866220320645944],[-127.26781972665957,56.86630824221615],[-127.26761272417387,56.86644586400433],[-127.26743183123676,56.86659667814751],[-127.26717650554941,56.866701151885515],[-127.26683274422265,56.866770628034594],[-127.26661579735304,56.86685567476965],[-127.26634907451209,56.8669568961966],[-127.26602555184934,56.86698582918851],[-127.26573135069499,56.867063783864666],[-127.26540442513364,56.86708266265012],[-127.2650831371326,56.86711717472722],[-127.26479007782204,56.8671984780609],[-127.26449587255516,56.86727642994577],[-127.26417674510337,56.86731428064686],[-127.26386648875591,56.867372215821014],[-127.26358544967125,56.867444434085556],[-127.2633066900097,56.86755473162977],[-127.26302843419012,56.86764933456344],[-127.26273631155821,56.86772838278382],[-127.26246337689527,56.86782853593994],[-127.26218184627086,56.867917565657834],[-127.26189346640639,56.86801674723515],[-127.26158584964251,56.86806120341792],[-127.26127018657355,56.868111340350204],[-127.26095223007786,56.86815365425455],[-127.26062993103086,56.86818928567865],[-127.26031197319233,56.86823159801588],[-127.25999756107494,56.86828844357019],[-127.25970117519199,56.86836304369375],[-127.25950543271813,56.86850054299043],[-127.25950595419607,56.868674238603916],[-127.25947778578266,56.86884933344576],[-127.25935497682364,56.86901974387528],[-127.25917194999474,56.869169446384106],[-127.25896181352806,56.86930708459141],[-127.25872452716182,56.86943041745218],[-127.25845129813777,56.869522720365566],[-127.25816345706569,56.86960731986859],[-127.25787772438417,56.86969413958069],[-127.25757499833388,56.86976319299847],[-127.2572967125693,56.869857783771494],[-127.25705511252808,56.869975552097415],[-127.25685853642115,56.87011977934901],[-127.25668169056914,56.87027053906994],[-127.25648821951779,56.87041585633006],[-127.25629985166717,56.87056000323036],[-127.25577281408829,56.87039476736739],[-127.25549254411814,56.87030222493037],[-127.25523024398932,56.870193818936386],[-127.25496696338163,56.870086542568494],[-127.25473391875256,56.86996216350055],[-127.25447269421906,56.86985486628702],[-127.2541824567424,56.86977138270013],[-127.25391429553295,56.86967199600848],[-127.25362208025663,56.86959077161753],[-127.2533541035101,56.86949698526528],[-127.25305693151147,56.86942141076722],[-127.25275672558793,56.86934698555097],[-127.25245072483087,56.86928382208403],[-127.25213783803504,56.86922968955869],[-127.25182299153566,56.86917893714378],[-127.25150720013514,56.869130434385944],[-127.25119629640017,56.869074039192796],[-127.25089319034716,56.86900524095121],[-127.25058514227415,56.868942092895544],[-127.2502810925513,56.86887554364202],[-127.24998096872831,56.86880335262386],[-127.24968084602706,56.86873116091484],[-127.24938464937163,56.86865332747849],[-127.24909942784315,56.86856530188014],[-127.24882614725759,56.86846595425075],[-127.24854385488356,56.86837341668235],[-127.24828162355817,56.868266117071684],[-127.24801837538665,56.86815882673561],[-127.24773710549259,56.86806627763279],[-127.24744195257438,56.867988429841255],[-127.24713197374842,56.86792865426353],[-127.24682008751628,56.86787337887227],[-127.2465101828826,56.86781584240891],[-127.24621296491777,56.867738011719965],[-127.2459109129381,56.86766919195615],[-127.24560684516007,56.867601511504205],[-127.24530575780217,56.86753043980557],[-127.24500759839378,56.86745485674104],[-127.24469377433643,56.86740295685332],[-127.24437800640673,56.867354436797406],[-127.2440612406469,56.86730704619603],[-127.2437426555394,56.867266396139655],[-127.24341825636208,56.86723700748131],[-127.2430930917754,56.867215469859815],[-127.24276612687963,56.86720179318235],[-127.24243919825011,56.8671892359796],[-127.24211032492794,56.867180058507806],[-127.24176271297463,56.86719459310522],[-127.24149441988638,56.86728120946615],[-127.24118504009081,56.86733571974884],[-127.24089289157104,56.867414718606035],[-127.24038126186117,56.86747004092878],[-127.2400643779974,56.867514534481806],[-127.23976474444623,56.867584637181544],[-127.2395084824585,56.86769466790952],[-127.23916918475972,56.86771247799119],[-127.23887849094642,56.8677735280766],[-127.23866632503102,56.86791339333311],[-127.23839016708293,56.868011284732745],[-127.23810022389473,56.86809585939373],[-127.23777558045596,56.86812249107099],[-127.23745206254797,56.868152473124205],[-127.23713183077157,56.868189146884355],[-127.23680340265416,56.86822589799759],[-127.23649011246776,56.868254659478815],[-127.23616882476769,56.86829022026982],[-127.23587965843926,56.868366938013914],[-127.23556647393099,56.86839905817114],[-127.23524291616515,56.86842791441914],[-127.23492605434437,56.86847351574969],[-127.2346047633843,56.8685090726721],[-127.23429664937508,56.86857139883392],[-127.23399603399903,56.86864373870639],[-127.23369111309283,56.868709394967865],[-127.23338083562106,56.86876837758159],[-127.23307589626084,56.86883403255844],[-127.23278063199851,56.86891304257363],[-127.2324885258597,56.86899426318844],[-127.23220175743492,56.86908215628964],[-127.23196224604435,56.86920321922796],[-127.2317437092986,56.86933753026916],[-127.2315178340614,56.869467428038],[-127.23132218354952,56.86961160687355],[-127.23110781993081,56.86974811850962],[-127.23092466376868,56.86989778138142],[-127.23078708436852,56.87005933865319],[-127.23065989591852,56.8702252797803],[-127.23055236235717,56.870395516919956],[-127.23043552543007,56.87056360093595],[-127.23031970586135,56.87073167520646],[-127.23017903297148,56.87089326120577],[-127.2300248979018,56.871051612772284],[-127.22986974318043,56.87120997382652],[-127.22971872927643,56.87136941609103],[-127.22956878461338,56.87152996869326],[-127.22937418686524,56.87167525527871],[-127.22917448200906,56.87182171060443],[-127.22897163269096,56.871965954123645],[-127.22875394575735,56.872095769495026],[-127.22846204154791,56.8721523248325],[-127.22814517679522,56.87219903001575],[-127.22785625020168,56.87228469251706],[-127.22757480183232,56.87237924875279],[-127.22728930031957,56.87247608400095],[-127.22703825412033,56.87259052302661],[-127.22693873320165,56.87275507821316],[-127.226925143143,56.872941233564],[-127.22696056670316,56.873119080893034],[-127.22701038021265,56.87329679213924],[-127.22702941349908,56.873475915155105],[-127.22693421047195,56.87364715343602],[-127.22688953522241,56.87382463770447],[-127.22689008804555,56.87400393556158],[-127.22696040038831,56.87418033243865],[-127.22705692801938,56.87434191298408],[-127.22704276845171,56.87451014360694],[-127.2271564719137,56.87469509522116],[-127.22730770969848,56.87486512332304],[-127.22742921824808,56.87503655318547],[-127.22751687392213,56.87520942390362],[-127.22761985162478,56.875379908321904],[-127.22773916728144,56.87554687614539],[-127.22788091292098,56.87570914902938],[-127.22800228417377,56.87587609721263],[-127.2280725885769,56.87605249385431],[-127.22804434353013,56.876229823299674],[-127.22798631456942,56.876407434652464],[-127.2279499809795,56.87658932325158],[-127.22790952085697,56.876770130265136],[-127.22783070604874,56.87694009378218],[-127.22761407701437,56.877072138636024],[-127.22735812556118,56.87719446928296],[-127.22706748410462,56.877259974512704],[-127.22673577691161,56.877260869849955],[-127.22640575100932,56.877250541981724],[-127.22607949306378,56.87722897120542],[-127.22575516589644,56.87720401943307],[-127.22543074892421,56.87717570576404],[-127.22510731543204,56.87714626135648],[-127.22478381136928,56.877114575522235],[-127.22446107772409,56.87707503709515],[-127.22413739722283,56.87703774809767],[-127.22381428540503,56.87701838326609],[-127.22348997226064,56.877025924455374],[-127.22316524368892,56.87705251972307],[-127.22284074657028,56.877086956511036],[-127.22251731931289,56.877122503047715],[-127.22219601589529,56.877160270058084],[-127.2218768362684,56.87720025755804],[-127.2215566728699,56.87724137417499],[-127.22123533209492,56.87727801849779],[-127.22091277863197,56.87730907020581],[-127.22058686928371,56.87733118751756],[-127.22026088876042,56.87735106338706],[-127.21993490790159,56.87737093843792],[-127.21960794353579,56.87739194255653],[-127.21926939317183,56.87740408956641],[-127.21892771871323,56.87741514439577],[-127.21860294837504,56.877440607940514],[-127.21831413169316,56.87749935241182],[-127.21810360872217,56.87763020312068],[-127.21793860558014,56.87780433134765],[-127.21773752447226,56.87794181669974],[-127.21744633127848,56.87799049571346],[-127.21710529769942,56.877989212591565],[-127.21676345737325,56.87799466000575],[-127.21645176212989,56.87804464967843],[-127.2161510913093,56.878118068797214],[-127.21585582727133,56.87820040170181],[-127.21556572298717,56.87828380623301],[-127.21528204144819,56.87837499446213],[-127.21501205121697,56.87847726030121],[-127.21474941515496,56.87858505994389],[-127.21449414963972,56.87869839328182],[-127.21424723799099,56.8788161305133],[-127.21400560798479,56.878938300431244],[-127.21376301184985,56.879062720220766],[-127.21353291199108,56.879192625903435],[-127.21332104694385,56.87931451615344],[-127.21316819615278,56.87948404202069],[-127.21310240512943,56.879646029946166],[-127.21300238630347,56.879829630075484],[-127.21280191044131,56.87998727364379],[-127.21261240336166,56.88013472859434],[-127.21235921019664,56.88024915896966],[-127.21209420091135,56.88034688954878],[-127.21203811094733,56.88052335473458],[-127.21201196694548,56.880705143432216],[-127.21198987624862,56.88088465299441],[-127.2120161453827,56.88106707281774],[-127.21206295220622,56.88124930082489],[-127.21204570627387,56.8814198000403],[-127.21180528263281,56.881548678454465],[-127.2115257296333,56.88164206109278],[-127.21123934673238,56.881746713330415],[-127.21101557525155,56.88181716125435],[-127.2107511677718,56.881967553787106],[-127.21047059051202,56.88206094368243],[-127.21015767691927,56.88207282739934],[-127.20984804691068,56.88205890489897],[-127.2095211436132,56.8820507458931],[-127.20919350244806,56.88205155810349],[-127.20886563439122,56.882045647728745],[-127.2085394509364,56.88202739374103],[-127.20821219762601,56.88200802825271],[-127.20788582079703,56.88201666990725],[-127.20755854885968,56.882029801648834],[-127.20723161126533,56.882020516557034],[-127.20690542879531,56.88200225846266],[-127.20657828154205,56.88198624981132],[-127.20647193927255,56.88219904039674],[-127.2065278151931,56.882376703403956],[-127.20655600833167,56.882555744452986],[-127.20656777112494,56.88273493828942],[-127.20656006581503,56.88291543380519],[-127.2066230698291,56.883090789300034],[-127.20673617553994,56.88325895502212],[-127.20684422582947,56.883429408979616],[-127.20696960311345,56.88359521913627],[-127.20715907502986,56.88374138200558],[-127.20739022444185,56.88387370910846],[-127.20754532775294,56.88400450218144],[-127.20768429735568,56.88417802979989],[-127.20776691761185,56.88435656433417],[-127.2077777028736,56.8845368880706],[-127.20771463542962,56.88472126108965],[-127.20764935466454,56.884900051456455],[-127.20755800527006,56.88506675726064],[-127.20748521078639,56.885235531663106],[-127.2073257636702,56.885392785093664],[-127.20711524907706,56.8855269797559],[-127.20687899642931,56.885659172138865],[-127.20666247335392,56.88579790452795],[-127.20645263937959,56.885920885306405],[-127.20625589813608,56.886068398292565],[-127.20609856658204,56.886227871852796],[-127.2059701299925,56.88639155931311],[-127.20586658560867,56.88656285989906],[-127.20578577469271,56.886738431788736],[-127.20572659231146,56.88691604399842],[-127.20569207451581,56.88709342705942],[-127.20568740214065,56.88727277416022],[-127.20570535955913,56.88745303169543],[-127.20573049823284,56.88763322253433],[-127.2057504751271,56.887812340698545],[-127.20576741425442,56.88799260775349],[-127.20579046446261,56.888171697403706],[-127.20582174781738,56.88835071057921],[-127.20587759465496,56.888527254247826],[-127.20596823889228,56.88869899198868],[-127.20607321157047,56.888869475893706],[-127.20613523922688,56.88904596209175],[-127.20622693970135,56.88921881056543],[-127.20629200666883,56.889394147843554],[-127.2063437837951,56.88957184993959],[-127.20639043411707,56.88974959969353],[-127.20644735591117,56.889927253978335],[-127.20646012075979,56.890105318728644],[-127.20649344658003,56.890284313024154],[-127.20649904872653,56.89046356504697],[-127.20649236045921,56.89064405198856],[-127.20648358285963,56.89082343772057],[-127.20647480517852,56.89100282347277],[-127.20646602741581,56.89118220924524],[-127.2064551952867,56.891361614132734],[-127.2064062968039,56.89153913155638],[-127.20638515776638,56.891717511622936],[-127.20642666687121,56.89189530942118],[-127.20643641260021,56.89207564377147],[-127.20645639506839,56.89225476234202],[-127.20648254074763,56.892433823644616],[-127.20650868666942,56.89261288496278],[-127.20653277847282,56.89279196539251],[-127.20654968842072,56.89297111259936],[-127.20657643377119,56.89313672056884],[-127.20650361627513,56.89333799426428],[-127.20643227575444,56.89352132376428],[-127.20637164680842,56.8936855025878],[-127.20632897827535,56.89386520362455],[-127.20623029822545,56.894028615378566],[-127.20597409659429,56.89414866452301],[-127.20570711481807,56.894253124144605],[-127.20555793044062,56.89441140123394],[-127.20551418688224,56.894589991375646],[-127.20549411249131,56.89476948236222],[-127.20542046515013,56.89494498825481],[-127.20534990708535,56.89512046543335],[-127.20529069130122,56.89529695792657],[-127.20524591003286,56.89547555769501],[-127.2052316476607,56.89564378822388],[-127.20525006161357,56.89583861108226],[-127.2051996267004,56.896000453566955],[-127.20509803770838,56.896169494871366],[-127.20510164963508,56.896351007371514],[-127.20482941718075,56.89645215195472],[-127.20463728132924,56.896518933061536],[-127.20427575099129,56.896623146422165],[-127.20392728415428,56.89661965477792],[-127.20362746390191,56.89669303630743],[-127.2033425484429,56.896783088789434],[-127.20307134384076,56.8968842201154],[-127.20278956915664,56.89697648357093],[-127.20251839665107,56.897078734085596],[-127.20223445994169,56.897167654387054],[-127.20193145387195,56.8972376994979],[-127.20160394622879,56.897247455358205],[-127.20127645485684,56.897257210240426],[-127.20095824591695,56.897301618698805],[-127.200670106642,56.89738721246012],[-127.20041774915993,56.89750049105419],[-127.20016969005681,56.89761933268392],[-127.20000062884647,56.89770158267808],[-127.1999236676167,56.89773815500938],[-127.1996735160091,56.897855894368604],[-127.19940642191332,56.897958100618254],[-127.19912991468651,56.89805478999131],[-127.19887345545574,56.89816810343865],[-127.19861481924956,56.89827807451135],[-127.19834780543495,56.898382519125605],[-127.19810804086111,56.89850464216924],[-127.1978954887895,56.89864220282724],[-127.19767977542794,56.898777550992165],[-127.19745257774015,56.89890740145608],[-127.19722539496132,56.8990372513819],[-127.19701901923588,56.89917587429171],[-127.1968095681777,56.89931452522363],[-127.1965949175643,56.899450982432676],[-127.19638021426726,56.89958631911589],[-127.19616449031614,56.89972166484632],[-127.19593208390715,56.899849319313844],[-127.19570071155425,56.899976963837936],[-127.19565927513908,56.899999758563716],[-127.19547141069086,56.90010570952589],[-127.19523269660802,56.90022893819544],[-127.19494968617038,56.90031559254126],[-127.19465622720871,56.900396739138294],[-127.19436276701317,56.90047788507625],[-127.19407351913085,56.90056235356504],[-127.19378958843434,56.900652375782784],[-127.19352147487743,56.900755699818816],[-127.19323647121587,56.90084461002263],[-127.19293659782299,56.900917967063194],[-127.19262924629217,56.90098242686404],[-127.19233253032931,56.90105799479959],[-127.19206019661488,56.901157992577716],[-127.19178894987222,56.901260221109226],[-127.1915250401529,56.901366864349185],[-127.19128003743138,56.90148678141642],[-127.19105383790499,56.901616611408684],[-127.19083497531108,56.90175085632613],[-127.19060240080744,56.901874020071084],[-127.19034482096222,56.901986206111694],[-127.19008717052415,56.90209615097348],[-127.18979898945157,56.90218284136219],[-127.1895246208936,56.902283973064876],[-127.18925316881833,56.902379474192735],[-127.18902177728869,56.90250822751371],[-127.18882882210735,56.90265007633385],[-127.18859000207057,56.90277105231613],[-127.18839289967204,56.90291181779794],[-127.18830574129096,56.90308519641009],[-127.18812733753055,56.90323251428335],[-127.18783393260408,56.903216147800286],[-127.18757366025775,56.90330818112976],[-127.18734849130718,56.90343911583767],[-127.18711380609793,56.90356117192178],[-127.18692097646918,56.90370749936419],[-127.18675199234653,56.90386033249692],[-127.18661300239302,56.90401961522277],[-127.18663498846993,56.904199839787985],[-127.18672560189883,56.904372713199784],[-127.18683156792024,56.904543204929304],[-127.186950797254,56.90471021338368],[-127.18705063461711,56.90488188167161],[-127.18715556774082,56.90505238266243],[-127.18726253879542,56.90522174430484],[-127.18735008309307,56.90539464550772],[-127.18739255495763,56.90557244149614],[-127.1873970693275,56.90575282593178],[-127.18739847488197,56.90593211816188],[-127.1873885857335,56.90611151370077],[-127.1873817709061,56.90629088114558],[-127.18732452893961,56.90646846842097],[-127.1872641775351,56.90664496346134],[-127.18720486135763,56.90682144902366],[-127.18718467900631,56.90700093875277],[-127.18720150536254,56.907180090130026],[-127.1872152409356,56.90735926978706],[-127.18720431477135,56.90753867494971],[-127.18719955400041,56.90771802376188],[-127.18719967482696,56.907989221939815],[-127.18733829457466,56.90815157060766],[-127.18748201078166,56.908312751889895],[-127.18766037276889,56.90846353023573],[-127.1878438314716,56.90861314108221],[-127.18801708448296,56.90876508638758],[-127.18817612475206,56.908922764835374],[-127.18833920778829,56.90907816480093],[-127.18852267204483,56.90922777474858],[-127.18870510187662,56.90937739393402],[-127.18890274867768,56.90952014961138],[-127.18909841072505,56.90966516450935],[-127.18926863323793,56.909818256748714],[-127.18941849503251,56.90997825925025],[-127.1895601878809,56.91013945709995],[-127.18966720169152,56.91030993781938],[-127.18973428428716,56.91048526697024],[-127.18978602990374,56.91066297795499],[-127.18986335575326,56.91083709257871],[-127.18996729805107,56.91100760130202],[-127.19006407388378,56.91117929630608],[-127.19010951845154,56.911386202209066],[-127.19030344922234,56.91150769756726],[-127.19059950984445,56.91157446457961],[-127.19096312211624,56.91163164613391],[-127.19107358018418,56.91171356206367],[-127.19080930365027,56.91184374117106],[-127.19076032536682,56.91202237556116],[-127.19098414361713,56.912179457145356],[-127.19113909926524,56.9123371700172],[-127.19130120732696,56.912493696457595],[-127.19141944463779,56.91266071118003],[-127.19149469182764,56.91283372357174],[-127.19154126726785,56.913010361005874],[-127.19158171137319,56.91318817536873],[-127.19165295320236,56.91336458648561],[-127.19173848017552,56.91353750451158],[-127.19185368218662,56.91370566751679],[-127.19194551026034,56.913783271206135],[-127.19215270748168,56.91390128040476],[-127.19218104040482,56.91398619077834],[-127.19218965453786,56.91416541795553],[-127.19219215326835,56.914345821956864],[-127.19219116063415,56.91448031078933],[-127.19204659568784,56.91469232270032],[-127.19195322587018,56.91486464135077],[-127.1918649858777,56.915036912868636],[-127.19169706049053,56.915191984907324],[-127.19145820641606,56.915314087504996],[-127.19119951976992,56.91542628558083],[-127.1909123122284,56.91551409004203],[-127.19065370993819,56.9156296482397],[-127.19057154189814,56.91579850123554],[-127.19052770472423,56.91597708881656],[-127.190491122711,56.91615785122734],[-127.19043906226669,56.91633651419009],[-127.1903497579856,56.91650767384195],[-127.19021505599152,56.91667364615365],[-127.19006171375254,56.91683530647036],[-127.18991971912592,56.916997983313706],[-127.18981797334672,56.917165894626756],[-127.1898161951691,56.91734185544598],[-127.18987116388617,56.91752402042178],[-127.18988296351216,56.917706580892606],[-127.18983509510588,56.91778770738388],[-127.18954873125534,56.91780377841379],[-127.18933381520884,56.91783600457098],[-127.18901129330081,56.917879301491446],[-127.18870229715549,56.917928077146456],[-127.18860852435216,56.91812168989435],[-127.18862700316876,56.918320999368134],[-127.18864670942101,56.9184934016404],[-127.18864425139621,56.918680575434735],[-127.18863552251109,56.91886444463934],[-127.18865344948203,56.919045828592374],[-127.18862499177105,56.91922315438476],[-127.18853988788742,56.91939763654452],[-127.18843007916844,56.91957122403799],[-127.18833153365358,56.91974358773699],[-127.18821850947639,56.91991272182191],[-127.18808888325289,56.92007752500719],[-127.1879374709018,56.92023580331784],[-127.18776218189555,56.920386455122596],[-127.18757238066598,56.92053387737429],[-127.18737741208484,56.9206802259184],[-127.18718762438647,56.92082764748614],[-127.1870133839505,56.92097940937188],[-127.186853705656,56.92113664130994],[-127.18669412945911,56.92129723412719],[-127.18654386417212,56.92145998303721],[-127.18640810878247,56.92162596125631],[-127.18629501975494,56.921793973673864],[-127.18622614033818,56.921961582281284],[-127.18623144618641,56.92213411675748],[-127.18623001240633,56.922321281492],[-127.18624079452218,56.92250497268667],[-127.18630791720776,56.92268142536607],[-127.1863955313086,56.92285544954727],[-127.18651289722354,56.92302696060515],[-127.18666691088056,56.923186930111136],[-127.1868615795952,56.92333083864246],[-127.1870704184701,56.92346789340065],[-127.18728231658447,56.92360379921808],[-127.18749727395166,56.92373855607968],[-127.18771629392496,56.923872154796044],[-127.18793735339104,56.92400461384771],[-127.18816045396622,56.92413705387956],[-127.18838559404973,56.924268354225404],[-127.18861175546823,56.924399644861296],[-127.18883890370036,56.924529805427056],[-127.18906708972301,56.92465995612164],[-127.18929429201803,56.9247912361179],[-127.18952144485914,56.92492139552395],[-127.18974761397236,56.92505268423907],[-127.18997276480238,56.92518398191365],[-127.19021994744313,56.925329646101325],[-127.19133198388866,56.92564220633829],[-127.19193213015713,56.92596169631555],[-127.19264957436883,56.92718112839746],[-127.19295239561444,56.92909133968258],[-127.19267791509016,56.930325482414936],[-127.19329835003845,56.93159735702299],[-127.19398314389153,56.93268708881704],[-127.19428541081298,56.93424429595628],[-127.19416164698848,56.93552861205925],[-127.19300063977201,56.936668922691105],[-127.19064024421793,56.93854529902121],[-127.18932702788976,56.939192750979814],[-127.18753466028699,56.93941534784004],[-127.18619661471814,56.93962592886793],[-127.18606896902688,56.93999131542875],[-127.18566165377352,56.94032787472423],[-127.18481613900668,56.94093403016691],[-127.18352744693152,56.941782922137534],[-127.18266717471228,56.94305040082719],[-127.18223955968351,56.944169371301676],[-127.18272535928791,56.94477908628494],[-127.18355263750801,56.94545181114299],[-127.18411580290778,56.94616728241277],[-127.1845146842908,56.946893214528316],[-127.18449758888951,56.94791095391427],[-127.18434099075687,56.9490431546059],[-127.18434616390574,56.95102000235066],[-127.18368507204343,56.95170852379226],[-127.18312705240788,56.95233670734844],[-127.18296071562222,56.95325382519274],[-127.18263317492135,56.95374766793456],[-127.18234265009653,56.95430729408115],[-127.1825260109553,56.9551181278315],[-127.18295437112002,56.955729490867135],[-127.18297962469336,56.95628400403104],[-127.18293461929375,56.95793631598562],[-127.18287158280052,56.95923577472493],[-127.18284240782728,56.95982776734851],[-127.18285455622967,56.960659213257415],[-127.18281845441612,56.96139471863543],[-127.18222894469228,56.96200749771295],[-127.18172868467789,56.962577997307314],[-127.18165536118599,56.96337547975887],[-127.18096967458655,56.96414378383197],[-127.18035895794984,56.96446984866441],[-127.17999952145787,56.96466587099446],[-127.17939077480203,56.96532588160958],[-127.179317990871,56.966815951297185],[-127.17932227218866,56.967426694113364],[-127.17924682259292,56.9682578175946],[-127.17914856736253,56.96884819739971],[-127.17872687788558,56.969299180066585],[-127.17834764963266,56.969320547897574],[-127.17801784170194,56.96934258767636],[-127.17762138146854,56.969373075082814],[-127.17725738273299,56.96942119865391],[-127.17684569049467,56.96942492473463],[-127.1764332001897,56.9694365016394],[-127.17603750160515,56.9694580117006],[-127.1757076911766,56.96948004562343],[-127.1753601567815,56.969528015014305],[-127.17499391205321,56.96960417004029],[-127.1746286527225,56.969679194424785],[-127.17429809178435,56.96971019713787],[-127.17424865416729,56.9697095228199],[-127.17399898789917,56.96975996695909],[-127.17354563348557,56.96981561087616],[-127.17245011510083,56.97015049495436],[-127.1721343344342,56.97022730760861],[-127.17180176125933,56.970294184485475],[-127.17143626717385,56.970361357035486],[-127.17105700795737,56.97038270377256],[-127.17084103453746,56.970423872806336],[-127.17077388654431,56.970450253411364],[-127.17048950608903,56.97054471057206],[-127.17018817946217,56.97065725078863],[-127.16990381251145,56.97075170653382],[-127.16960372476616,56.97083733742524],[-127.1693025981803,56.970922976957155],[-127.16898600537067,56.97100763409969],[-127.16865370835504,56.97108346597421],[-127.16832064433191,56.971168269485545],[-127.16800304380087,56.97125405396509],[-127.16768644541543,56.97133870796331],[-127.16731919606823,56.971450712612345],[-127.16695191064854,56.971561595836995],[-127.16666679692416,56.97166613743556],[-127.16638268526188,56.971769548715756],[-127.16609753454144,56.97187296868494],[-127.16554085422328,56.97195192482245],[-127.16517125466387,56.97198661608774],[-127.16455968221123,56.97208847375288],[-127.1643799801058,56.972376981933145],[-127.16437262787224,56.972508169698294],[-127.16416523919189,56.97269830384258],[-127.16391028456452,56.972847397407435],[-127.16367310554172,56.97300529703883],[-127.16341814697834,56.973154389670185],[-127.16316572496046,56.97328552790356],[-127.16287980384323,56.97339791324263],[-127.16259568658872,56.97350243691786],[-127.16231051287737,56.9736058487063],[-127.16224283941828,56.97364904006876],[-127.16202159483991,56.973789983770025],[-127.16181460960676,56.97399355897259],[-127.16114590193197,56.97414858364243],[-127.16065792712088,56.97432216481951],[-127.16053946625222,56.97449132697804],[-127.16066468112389,56.97495642136383],[-127.16047361262642,56.97514192121968],[-127.16034826323386,56.97535597278774],[-127.16029007658933,56.97554364901686],[-127.16007427107085,56.97589971565508],[-127.15983947301793,56.97593318916925],[-127.15968333482282,56.97577432097877],[-127.15952117366736,56.975621109828595],[-127.15930803251254,56.975484042708594],[-127.15908066716995,56.975353826227064],[-127.15885434098938,56.975223600114894],[-127.1585936237492,56.97511385259042],[-127.15834100830838,56.97499954961146],[-127.1580893646177,56.97488299611091],[-127.1578519152182,56.974759591589844],[-127.15762862570234,56.97462709503334],[-127.15739825853993,56.97449914389923],[-127.15714056291064,56.9743871253095],[-127.15687610886584,56.974289735441026],[-127.15675508876197,56.9741339138203],[-127.15663266201258,56.973965776925894],[-127.15636302350619,56.97386731148325],[-127.15605419132021,56.97380057344584],[-127.15573093656225,56.97376758381729],[-127.15541845932304,56.973716566467026],[-127.15511567169465,56.973645289742024],[-127.15483286756364,56.97355366231929],[-127.15454608171498,56.97346655243819],[-127.15425929716314,56.973379441929985],[-127.15395276613785,56.97332052345931],[-127.15365299701014,56.9732469752234],[-127.15333836744246,56.973192609952676],[-127.15303466728156,56.97312469866533],[-127.15274485950904,56.97303985308805],[-127.15243322859492,56.97298209699202],[-127.15212364080605,56.97292432206172],[-127.1518061372678,56.97287670278192],[-127.15148388150423,56.97284257317654],[-127.15115687318954,56.972821933209026],[-127.15083532132259,56.97281133041735],[-127.15041169110202,56.97276128466399],[-127.15019934942073,56.97271833478006],[-127.1498770295218,56.97268196039523],[-127.14954926979954,56.97267028862506],[-127.14922070667592,56.97266646800596],[-127.14889108911514,56.97266153517523],[-127.14856264281106,56.972661073952665],[-127.14822110761062,56.97267081372016],[-127.14798736465653,56.972601152476436],[-127.1479109413561,56.97242027421758],[-127.14768768311741,56.97228776095375],[-127.14740611101111,56.97220171032047],[-127.14707874336172,56.972168735694105],[-127.14680875235902,56.97226413434657],[-127.14659542704942,56.972396015853086],[-127.14633426791006,56.97251150817481],[-127.14601655848561,56.97245715251041],[-127.14572176612367,56.9723768182076],[-127.14541423505244,56.97231788865074],[-127.14508716783965,56.97229499262754],[-127.14475934627605,56.9722810679867],[-127.14443335059664,56.972259281589956],[-127.14410626765977,56.972235262554015],[-127.14382957613535,56.97214019576366],[-127.14352300440939,56.97207901196035],[-127.14320158424944,56.97203813046327],[-127.14286553827476,56.97198953183783],[-127.14259924431299,56.971897733205765],[-127.14229078396534,56.971842166605335],[-127.14196966598793,56.9718113656925],[-127.14164922084187,56.97176823045189],[-127.1414169648328,56.971643630544385],[-127.14111376250176,56.97159137713141],[-127.14078726801176,56.9715875171508],[-127.14050793655043,56.97164600162307],[-127.14022740356901,56.971629409554915],[-127.13993560981132,56.9715456739764],[-127.13961444637212,56.971512626305284],[-127.13928931550114,56.971485216066554],[-127.13898096260135,56.97143300284139],[-127.13867331691571,56.97136957577317],[-127.13835582635033,56.97132192385741],[-127.13803738170773,56.97127652090888],[-127.13747088315212,56.97119854539867],[-127.13715489599007,56.97116656712745],[-127.13702841401086,56.970997327721506],[-127.13688464203041,56.97083496351459],[-127.13674600939524,56.970672554257376],[-127.13660734487482,56.97050902446735],[-127.13650250683494,56.97034071619988],[-127.13637713402056,56.970173707994334],[-127.13627840734574,56.970003104819156],[-127.13621554836236,56.96982658478737],[-127.1361218786417,56.96965257529414],[-127.13590386446852,56.96952111742848],[-127.13566749059977,56.96939542300071],[-127.13545855267475,56.96925716103671],[-127.13527201179643,56.96911085841958],[-127.13509774051583,56.96896108640136],[-127.13495301281975,56.968800970142134],[-127.13482766826446,56.96863508116268],[-127.13473002283868,56.96846558833871],[-127.13447842034358,56.96820666275057],[-127.1344040517964,56.968163604595006],[-127.13411990536277,56.96809323807004],[-127.13390979787305,56.96805472538664],[-127.13353231797375,56.9680311196082],[-127.13336853450836,56.96802806432868],[-127.13304048990088,56.96800514697879],[-127.13269522097693,56.96799134433828],[-127.13233496722813,56.967958619549385],[-127.13195920312872,56.9678531840154],[-127.13152801063612,56.96782331583436],[-127.13112527323517,56.96781561250296],[-127.13074932967952,56.96777405431194],[-127.13035484293111,56.96776739755001],[-127.1299758353716,56.9677617257834],[-127.1296488324802,56.96773879086882],[-127.12932001783585,56.96772483637142],[-127.12899070774866,56.967728816349585],[-127.12882697522116,56.96772687561119],[-127.12854683679537,56.967722582825274],[-127.12825125224927,56.96771842344363],[-127.1281029495186,56.96771634792908],[-127.12775713943556,56.96771934722534],[-127.12658590782124,56.96776424007319],[-127.12639466645373,56.96812451655354],[-127.1262645121052,56.96870840133366],[-127.12643572701913,56.969317693453384],[-127.12672034035519,56.969967468759535],[-127.12654766515573,56.970540516012264],[-127.12622738087761,56.97088958291221],[-127.12548250860269,56.971083186084364],[-127.12457828377445,56.971567300791236],[-127.12318140001958,56.972387388745105],[-127.12135035217831,56.97417611986396],[-127.1196365407176,56.974973125765956],[-127.11875072833529,56.97513988580138],[-127.11808175021514,56.97515012074826],[-127.1178457260425,56.97524852876359],[-127.11687739430458,56.97587210621245],[-127.11587547686108,56.97661699921519],[-127.1157503933244,56.976813072471764],[-127.11564816368697,56.97687446664723],[-127.11522483007224,56.97711904544028],[-127.11492907823771,56.977217960189044],[-127.11426595987955,56.9775744186208],[-127.11339490314433,56.97807610214449],[-127.11307218548743,56.978382571410414],[-127.11287302338825,56.9785815171898],[-127.11278663413431,56.978763808330825],[-127.11255053601208,56.978967552365674],[-127.1123071559031,56.979169116860085],[-127.11200353023929,56.97931740268211],[-127.11168315545098,56.97945574469476],[-127.11138030425582,56.97959505689416],[-127.11098461949359,56.979693695629216],[-127.11065425713831,56.979771602997104],[-127.11030470754298,56.97989898374514],[-127.10999447603882,56.97999689006361],[-127.1097091131141,56.98010018695923],[-127.10942324370646,56.980221418619706],[-127.10907195490311,56.98032415562607],[-127.10870596039831,56.98041693077696],[-127.10838764552344,56.980520505581026],[-127.10806826905367,56.98065883010301],[-127.10771645042021,56.9807794990054],[-127.10738239793292,56.98090898125504],[-127.10709499433797,56.98101341042696],[-127.10674391746342,56.98112398413131],[-127.10647608045899,56.98122824546051],[-127.10622213298981,56.98135031920453],[-127.10591924714898,56.98148961887055],[-127.10559985377999,56.98162793742428],[-127.10517150838774,56.981738042798426],[-127.10438696540452,56.98206746468676],[-127.1039318627361,56.982394086744726],[-127.10369386542921,56.98253395125365],[-127.10323618906905,56.982699212963546],[-127.10296201454507,56.98283490013545],[-127.10279774669735,56.98299655175442],[-127.1024757826925,56.98318979831999],[-127.10272631583348,56.98348690006299],[-127.10289241825845,56.98364126843129],[-127.10299720979658,56.98381184613477],[-127.10314395240427,56.9839731025305],[-127.1032456487983,56.98414370633357],[-127.1034005345751,56.98430153136085],[-127.10360233602123,56.98444326855758],[-127.10370489655874,56.98460826128274],[-127.10369459737757,56.98478765974621],[-127.1036853195263,56.98496704956601],[-127.10380635160513,56.98512964419932],[-127.103957642691,56.985233705868296],[-127.10418921696129,56.985335965351794],[-127.10437757513401,56.985511436460314],[-127.10440125012455,56.98569054672905],[-127.10443316283227,56.98586958709055],[-127.10445066015005,56.98604874983785],[-127.10446713617152,56.98622792127564],[-127.10449904963076,56.986406961686704],[-127.1045525147097,56.98658357776357],[-127.10461423444144,56.98676012376363],[-127.10467697621691,56.98693666108306],[-127.10473559968636,56.987113233365655],[-127.1048055102874,56.98728858911048],[-127.10489397313422,56.98746378730264],[-127.10510685825741,56.9875964629631],[-127.10533820010522,56.987725619416345],[-127.10545204788323,56.98788827398965],[-127.10542009090481,56.98806673635875],[-127.10540566331072,56.988246170515154],[-127.10534065717397,56.988421551578476],[-127.10536949547021,56.98860061821784],[-127.10546406168056,56.9887735229817],[-127.10550006879635,56.98895140803855],[-127.10555153109321,56.989129161795276],[-127.1056142810248,56.98930569894858],[-127.10568523762846,56.98948104566347],[-127.10576336298337,56.98965521074732],[-127.10585279282684,56.98982815903924],[-127.10594837007827,56.98999993434899],[-127.10603371452717,56.99017403799353],[-127.10612314678959,56.99034698616109],[-127.10620537941635,56.99051999550075],[-127.10627736252603,56.990695333353756],[-127.10633703711417,56.990871896543474],[-127.10639979348637,56.99104843352861],[-127.10652408265224,56.99121548167594],[-127.10661248146265,56.99138843845778],[-127.10664231729464,56.99156637606422],[-127.10664952904159,56.99174562679484],[-127.10666807742822,56.991924781135545],[-127.10673185864827,56.99210130939944],[-127.10681515158086,56.99227543029979],[-127.10690665195806,56.9924483606587],[-127.10694164754557,56.992626254454315],[-127.10697357781245,56.99280529504194],[-127.10700135665728,56.992983250260345],[-127.1070332874978,56.9931622908772],[-127.10706212073721,56.99334135786274],[-127.10708375324621,56.99352048612566],[-127.10710436429974,56.993699623098806],[-127.10715170426703,56.993877411988024],[-127.10720008281608,56.99405519204909],[-127.10721141726623,56.99423440800391],[-127.1072073113368,56.994413755350436],[-127.10718980817285,56.99459321670223],[-127.10715788590169,56.99477280074639],[-127.10710217006798,56.994949225111945],[-127.10703407877949,56.995124634041744],[-127.10698872568378,56.99530321164657],[-127.10696916120952,56.99548269060019],[-127.10696093422501,56.995662073135485],[-127.106951668971,56.995841464523195],[-127.10695482755284,56.996022991664645],[-127.10681514267628,56.99618107826593],[-127.10662785276277,56.99633172460369],[-127.10645713750802,56.99648559187184],[-127.10628538267439,56.9966394677578],[-127.10611570290534,56.9967933257853],[-127.10595119564012,56.99694826034497],[-127.10578881138545,56.99710541807243],[-127.10562744755681,56.997262566934],[-127.10547336496347,56.99742189516262],[-127.10532961326317,56.99758225618006],[-127.10521704997446,56.997752438536644],[-127.10519844991971,56.9979296678456],[-127.1053135742221,56.99810015802377],[-127.10533310906463,56.99827818422624],[-127.10532075376622,56.998457601993536],[-127.10533081732035,56.99862898444596],[-127.10510704870354,56.9987653693271],[-127.10485066392052,56.99887849589153],[-127.1045805895784,56.99898165178074],[-127.10431049813113,56.99908368654418],[-127.10404358353486,56.99918905591029],[-127.10376823436896,56.99928777202194],[-127.10349602992761,56.99938870229431],[-127.10324695118864,56.99950512584515],[-127.1030512301827,56.99965023506288],[-127.10294994110325,56.99981919930858],[-127.10296438800329,56.99999951051966],[-127.10297657689951,57.00013725405888],[-127.10295290307026,57.00031788835554],[-127.10291889613245,57.000497489523895],[-127.10286003848226,57.0006728184492],[-127.10276812119118,57.00084506535134],[-127.10265031415285,57.0010130487081],[-127.1025149064128,57.001177818938906],[-127.1023691002474,57.00133931498679],[-127.10221406222811,57.0015020097636],[-127.10203187073442,57.00165260649241],[-127.10180046900754,57.00177560186842],[-127.10152734818271,57.00188101858912],[-127.10122899018621,57.00196871694284],[-127.10092478353002,57.00203180852248],[-127.1006053821837,57.00203226828185],[-127.10023269993407,57.002007401390145],[-127.09994212403545,57.00197063254119],[-127.09961609440964,57.00195545599837],[-127.09930324382715,57.00200516831275],[-127.09898635240606,57.00205715540136],[-127.0986661057046,57.00210020438294],[-127.09834237606452,57.00212983348516],[-127.09801524421431,57.002148283415714],[-127.09768592400776,57.00216226815171],[-127.09735767386671,57.002177363737566],[-127.09702940698627,57.00219245863473],[-127.09670070945332,57.00219186644578],[-127.09637068637244,57.00218119823861],[-127.0960405677728,57.002167167883],[-127.09571270100898,57.00215984197087],[-127.09538623883152,57.002165951881906],[-127.0950658915833,57.00220563069712],[-127.09474690067265,57.00225650436771],[-127.09442449175457,57.002296198935035],[-127.09409882432016,57.00233031656184],[-127.09377539540243,57.00233415551187],[-127.09345272184001,57.00229203839289],[-127.09312712592038,57.002255548549996],[-127.09279565143532,57.00223031430487],[-127.09248409686566,57.00218025651673],[-127.09221242826212,57.002083914404096],[-127.09196270918306,57.001961611393234],[-127.0917059950488,57.00184721152938],[-127.09139949204003,57.001793746713304],[-127.0911741327841,57.0017676185623],[-127.09087356835988,57.00192367444783],[-127.09064872276194,57.00206116391967],[-127.09041113319299,57.00218531131049],[-127.09016935811198,57.00230725191216],[-127.0899256164012,57.00243257064371],[-127.0896617213893,57.00253788494969],[-127.08934580275738,57.00258871959366],[-127.08901136488343,57.002603845865046],[-127.0886940902142,57.00257063743197],[-127.08838799044368,57.00249474802721],[-127.08807723967567,57.00243682806241],[-127.0877512424433,57.00242274223719],[-127.08741846937272,57.00242440206099],[-127.0870860607973,57.002438385732404],[-127.0867621928828,57.00246350428311],[-127.08647409811776,57.00255108284172],[-127.08622716580776,57.00267305907618],[-127.08596838638135,57.002777202419665],[-127.0856357365631,57.00278333944721],[-127.0853150968393,57.002740064519394],[-127.0849935622538,57.00270127908276],[-127.0846816420561,57.00271172369346],[-127.08441969000971,57.00273968252369],[-127.08401511955901,57.00275313879865],[-127.08371094158792,57.00281843106341],[-127.08341222041456,57.00289488422587],[-127.08311461453798,57.00297468952647],[-127.08281589096794,57.00305114132876],[-127.08251611279131,57.00312648050705],[-127.08221741835403,57.00320405138525],[-127.0819197446297,57.0032816130882],[-127.0816210163053,57.00335806216462],[-127.08131907865683,57.00343005439735],[-127.08101385235994,57.00349534901658],[-127.08070324577099,57.003552842662025],[-127.08038606493506,57.00359582098654],[-127.08006246584391,57.003631006867906],[-127.07973666517022,57.00366060668786],[-127.07941091034849,57.00369244671455],[-127.07908841078265,57.00372986245086],[-127.07877132088338,57.00377619817398],[-127.07845540910313,57.00382812687346],[-127.07814267289666,57.00388339060703],[-127.07783001501912,57.003940894341035],[-127.0775183781442,57.003998388866805],[-127.07720570191738,57.00405589124231],[-127.07689088684236,57.004110048448084],[-127.07657712415856,57.00416531688591],[-127.07626653686542,57.00422392041505],[-127.07596239676907,57.004291435527],[-127.07566786346105,57.0043711982646],[-127.07538185216816,57.00446097624992],[-127.07509898446585,57.00455296904296],[-127.07481297049583,57.00464274578961],[-127.07451950183444,57.004723617818286],[-127.07421859342277,57.004796705657654],[-127.07391552968768,57.00486644846961],[-127.07360927225096,57.004932854803386],[-127.07330303024088,57.00499926028382],[-127.07299677069099,57.0050656651828],[-127.07269268065714,57.00513541358487],[-127.07239491038112,57.00521071271919],[-127.07209934067625,57.005290475852696],[-127.07179944521313,57.00536354971176],[-127.07148895102955,57.00542550309185],[-127.07119012299725,57.00549968745204],[-127.07090093162648,57.00558724027108],[-127.07061277740648,57.00567478391228],[-127.07027317284037,57.00576499134523],[-127.06999338713598,57.005782981250555],[-127.06967848551939,57.005834880185695],[-127.06936469842387,57.005890131305236],[-127.06905196353595,57.00594649372422],[-127.068740328426,57.006005087761636],[-127.0684307839382,57.00606478459066],[-127.06812133176395,57.006127842027446],[-127.06781500861675,57.00619199375794],[-127.06750454700203,57.00625617869994],[-127.06719300022282,57.00631813038797],[-127.06688676718082,57.00638564128517],[-127.0665776514101,57.00646101999022],[-127.06636068622464,57.00658943681898],[-127.06619394764071,57.0067454594754],[-127.06606872835663,57.00691234893641],[-127.06599117935627,57.007088934258185],[-127.06586786347872,57.00725020445034],[-127.06565110861952,57.00738646330651],[-127.06544583208124,57.00752823137186],[-127.06526865889117,57.007679855470705],[-127.06511018443058,57.007836929858605],[-127.0649610825109,57.007997289495684],[-127.06480469706884,57.00815546713863],[-127.06462651091904,57.00830821937346],[-127.06436988168116,57.008419026026445],[-127.06408178433719,57.00850991673173],[-127.06390226190992,57.00865147186699],[-127.06377606635579,57.008820608595535],[-127.06362385588201,57.008980992134525],[-127.06343726388957,57.00912820791889],[-127.06311043931021,57.00927208586191],[-127.06291974010553,57.009382351232205],[-127.0627283106068,57.0095038293191],[-127.06246330156272,57.00961021778704],[-127.06219096326925,57.0097121826968],[-127.06191442387198,57.00981193989312],[-127.06163996020635,57.009911679570216],[-127.06137076217964,57.010015858549615],[-127.06111202060269,57.01012555525979],[-127.06086794949893,57.010244097536265],[-127.06063658076125,57.01037486360856],[-127.06042191224132,57.010513338168494],[-127.06023120999883,57.01066170353631],[-127.06006746654379,57.010815452639434],[-127.05992658939742,57.01097686030964],[-127.05980027619012,57.0111426320976],[-127.05968434173435,57.011311681409175],[-127.05957774963719,57.01148289600457],[-127.05941935966399,57.011644445691296],[-127.05920126735296,57.01180872232965],[-127.05906793344393,57.01194429154957],[-127.05905933987785,57.01211919137045],[-127.05890038071423,57.01222246844245],[-127.05871488605791,57.01237303070345],[-127.05853778732049,57.01252912796687],[-127.05828185729115,57.01262983054258],[-127.0579628854125,57.01268621670393],[-127.05764290473101,57.012743730978244],[-127.05737761305186,57.01284114569469],[-127.05716384889769,57.01297624545293],[-127.05696797800225,57.01312464806057],[-127.05676059450289,57.013266419589634],[-127.05652387943022,57.013391618234465],[-127.0562777433617,57.01351128935283],[-127.05601908675067,57.013625458029765],[-127.0557739863044,57.013745119790705],[-127.05557269979745,57.01388459857584],[-127.05540176407095,57.01404064161216],[-127.05525780315133,57.01420319003881],[-127.05516767072518,57.01437426773893],[-127.05516028192541,57.014555881918994],[-127.05517347174278,57.014736208646475],[-127.05519905810813,57.01491755563834],[-127.05521637015127,57.01509784900183],[-127.05520992800305,57.01527609348608],[-127.05515907433436,57.015451335782174],[-127.05505660333527,57.01562363422107],[-127.05491371872002,57.01578841507787],[-127.05474374919324,57.015942208125],[-127.05454782316659,57.01608948693914],[-127.05432479538429,57.01622577784616],[-127.0540754731854,57.01634322921974],[-127.05379544429363,57.016430669546715],[-127.05348274013964,57.016491476674595],[-127.05316053743002,57.01654451492597],[-127.05285199825346,57.01660752825446],[-127.05255156871625,57.016702975785776],[-127.05227582846801,57.01683408571187],[-127.05224312190626,57.01695762776557],[-127.05234898577211,57.0171349646245],[-127.05252646742254,57.01729267052444],[-127.05272671444263,57.017453554284025],[-127.05291044371253,57.01761345062481],[-127.05306632718325,57.01777245122769],[-127.05322323425399,57.01793144339277],[-127.05337605105049,57.01809158919327],[-127.05351552488266,57.01825408421212],[-127.05363345822086,57.018420115530425],[-127.05370527045363,57.01859548565664],[-127.05373599711592,57.018776791791524],[-127.05374194518171,57.01895605704259],[-127.05371178377914,57.0191344938076],[-127.0536816527783,57.01931405104854],[-127.0536865618311,57.01949332477498],[-127.05371620539856,57.01967239837818],[-127.05374893282004,57.019851447044545],[-127.0537631260118,57.0200306457103],[-127.05375360689405,57.02021003628081],[-127.05373895701624,57.02039058909971],[-127.05372223155346,57.02057003802369],[-127.0536993363374,57.02075065759951],[-127.05368572488078,57.02093120207427],[-127.05369164236222,57.021109347134164],[-127.05374898365898,57.021283713984836],[-127.05387523387063,57.02145191964041],[-127.05401886110019,57.02161438100346],[-127.05418603296675,57.02177104808869],[-127.0543449915923,57.02192890219505],[-127.0544547251376,57.02209612041239],[-127.05451938643853,57.02227378994773],[-127.05457070270833,57.022453808967825],[-127.05463942644957,57.02262920417652],[-127.0547573473309,57.02279411451924],[-127.0549122819253,57.02295536282655],[-127.05509386225548,57.023110791542955],[-127.05529882032161,57.023253702763945],[-127.0555259777919,57.02337962307592],[-127.05580866539866,57.023462505751986],[-127.05613387497291,57.02351702517746],[-127.05643690216216,57.02358965515216],[-127.0566874414304,57.02370305599645],[-127.05691683791233,57.023834559379814],[-127.05714925829565,57.02396379641098],[-127.0574110701865,57.024074862998575],[-127.05769939085238,57.02417450665454],[-127.05798560425886,57.02427304609616],[-127.05823716069698,57.0243853151094],[-127.0584243907725,57.02452052073833],[-127.0585423028448,57.02468430740742],[-127.05861222531618,57.02486529480095],[-127.05865342737988,57.02505099850544],[-127.05867793634613,57.02523011363181],[-127.05865920113477,57.02541070101617],[-127.0586209038853,57.025592568142024],[-127.05859697532786,57.02577207705713],[-127.05862243101494,57.025947822444586],[-127.05871373317399,57.0261185497452],[-127.05884510492828,57.02628446839093],[-127.05898167081972,57.02645146541563],[-127.05908943752895,57.02662093794734],[-127.05917365944661,57.02679620547385],[-127.05925168085582,57.026971523401805],[-127.05934301908896,57.02714337084865],[-127.05946410548727,57.02730937269488],[-127.05962203873152,57.02746610895595],[-127.05980660573415,57.027615904035585],[-127.06000241231192,57.027762245257385],[-127.06020631256429,57.02790291674341],[-127.06042957555397,57.028035585270466],[-127.06065282568511,57.02816713282682],[-127.06078498214913,57.02839804511675],[-127.06089070057514,57.02856753317951],[-127.0609984816208,57.02873700438216],[-127.06111756379835,57.028905262737716],[-127.06124384032627,57.02907234167679],[-127.06137115705532,57.02923941204569],[-127.06149128152667,57.029407661651234],[-127.06159700583855,57.02957714926033],[-127.0616811363894,57.02974905426086],[-127.06173959682123,57.02992453064037],[-127.06177854115654,57.030102407547545],[-127.06180306789066,57.03028152271753],[-127.0618194260812,57.03046294593557],[-127.06183265256593,57.0306432739856],[-127.06184690182728,57.03082359372021],[-127.0618621594451,57.03100278453709],[-127.06187227090518,57.0311820173278],[-127.06187824230794,57.031361283891464],[-127.06188322202478,57.03154167928253],[-127.06188817085791,57.031720954227694],[-127.06189518159455,57.031900212386724],[-127.0619012006415,57.03208059937369],[-127.06190821150436,57.032259857577074],[-127.06191418324195,57.032439124274305],[-127.06192020246232,57.032619511328456],[-127.06192617431161,57.032798778070216],[-127.06193318542175,57.03297803636242],[-127.06194022753024,57.033158415146346],[-127.0619482779863,57.033337665011025],[-127.06195837396582,57.03351689822254],[-127.06197366410554,57.033697209834145],[-127.06199408660946,57.033876358903925],[-127.06201556297803,57.034056620125405],[-127.06203910153042,57.034236864555176],[-127.06206054737368,57.0344160053442],[-127.06207892310435,57.034596291907434],[-127.06209212128802,57.034775499982096],[-127.06209707151078,57.03495477532555],[-127.06209481292076,57.03513410946541],[-127.06208013463333,57.03531242416087],[-127.06205412318455,57.0354908312714],[-127.06201780119795,57.035669322452314],[-127.06197220781253,57.03584788922275],[-127.06191625618007,57.03602541970749],[-127.06185103288352,57.03620302575898],[-127.06177856896076,57.0363795700845],[-127.06169777759067,57.03655394080369],[-127.06161078470993,57.03672724129969],[-127.06151025528682,57.03689616915266],[-127.06138384729219,57.03706194560617],[-127.06124188763472,57.03722448645843],[-127.06109374032215,57.037387077562514],[-127.06094869324659,57.03754964325918],[-127.06081606327167,57.03771434914523],[-127.06070518598472,57.03788223997784],[-127.06060784379031,57.038054503440726],[-127.0605198032577,57.0382278118521],[-127.06044007254465,57.03840329403105],[-127.06037068307575,57.03857981273489],[-127.06031163498778,57.038757367980445],[-127.06026495976556,57.0389348225249],[-127.0602337426987,57.039112151275106],[-127.06022941292245,57.039291502688194],[-127.0602498755521,57.0394728938189],[-127.06029091582957,57.039651876053966],[-127.06034428279774,57.03982963725353],[-127.06042435298359,57.040002698210536],[-127.06053838182083,57.04017324127137],[-127.06065749739348,57.04034150139627],[-127.06074991306775,57.04051334100471],[-127.06080943943373,57.04068993127382],[-127.06086491998386,57.04086879593998],[-127.06091523693027,57.041047702655256],[-127.0609562963965,57.04122780548939],[-127.06098602147586,57.0414080006354],[-127.06100127928165,57.04158719288361],[-127.06099895336762,57.04176428688669],[-127.06097817301686,57.04194601410201],[-127.06093596183268,57.042135760941925],[-127.06086062792917,57.04232129456664],[-127.06074148785314,57.04248925314289],[-127.0605699824521,57.0426284989219],[-127.06033573755789,57.042736874653755],[-127.06005241442153,57.04282323468102],[-127.05973773538858,57.0428952796425],[-127.05940838757685,57.04295847727654],[-127.05908305451962,57.0430182792527],[-127.05877113467716,57.043077971417546],[-127.05845478054886,57.04312649156411],[-127.05813306190242,57.043167209401695],[-127.05781024145071,57.04320569392834],[-127.05748745116435,57.0432452981347],[-127.05716459860913,57.04328266058526],[-127.05683852029883,57.04331556548165],[-127.05651138766066,57.04334735737875],[-127.05618640927771,57.04338249317396],[-127.05586681009478,57.0434254296634],[-127.05555469742683,57.043478391271044],[-127.05525225653113,57.04354584326575],[-127.05495519421079,57.04362109610408],[-127.05466247081998,57.043704158238235],[-127.05437399404506,57.04379166825924],[-127.05408979452787,57.043884746676234],[-127.05380878776202,57.04398116083177],[-127.05353092650158,57.044079790400595],[-127.05325721954358,57.04417950652009],[-127.05298560437217,57.04428032588458],[-127.05271614232706,57.04438448946838],[-127.05244874135862,57.04448863584345],[-127.05218242327864,57.04459501437842],[-127.0519171432495,57.044701383984986],[-127.05165296256531,57.044809985632085],[-127.05138873325357,57.04491746640375],[-127.05112451896541,57.04502494651451],[-127.05086028669986,57.04513242623096],[-127.05059499930674,57.045238793186364],[-127.05032868740484,57.04534516785595],[-127.05006023374641,57.04544931777953],[-127.04978970195106,57.04555236315971],[-127.04950966468834,57.04564763943317],[-127.04921387309885,57.04573295539625],[-127.04891280966982,57.045813830204295],[-127.0486180244801,57.04589801597413],[-127.04834105342916,57.04599214431242],[-127.04809136727106,57.04610398425922],[-127.04786481257018,57.046231327917255],[-127.04764664305856,57.04636420740973],[-127.0474358826785,57.04650375135488],[-127.04723453302482,57.04664770224657],[-127.04704051497023,57.04679607683578],[-127.04685483761415,57.04694774632136],[-127.04667640041826,57.04710047812158],[-127.04650629004456,57.04725538426969],[-127.04634441258159,57.04741022409503],[-127.04619101453291,57.04757284075569],[-127.04605329065835,57.04774317653044],[-127.04594047063145,57.04791891593259],[-127.04586480923695,57.04809547775864],[-127.04583649878892,57.04826829735988],[-127.04587204194198,57.04843724232559],[-127.04597571744787,57.0486078819163],[-127.04612674611059,57.048774779135485],[-127.04629930504085,57.048937020424205],[-127.0464737312495,57.04909140140522],[-127.04661654329344,57.04925948485817],[-127.04689655767555,57.049389481927854],[-127.04714998719813,57.049490553034246],[-127.04731601547165,57.04963939681927],[-127.04737767918252,57.0498204597242],[-127.04737331875866,57.05000093254685],[-127.04734310345086,57.05017937171908],[-127.04730051074228,57.05035791037427],[-127.04725481509222,57.05053647396987],[-127.0472153241385,57.050714987710215],[-127.04719132670044,57.05089449769493],[-127.04719104404323,57.051073817141834],[-127.0472010923939,57.05125305359798],[-127.04720394291614,57.05143346864711],[-127.04719025958046,57.05161289584107],[-127.04717451318665,57.05179233963221],[-127.04715772692411,57.051971791798216],[-127.04713785433214,57.052151268781564],[-127.04711591859531,57.05233076235947],[-127.04708982619994,57.05250916861719],[-127.04705963812054,57.052688728528786],[-127.0470232302804,57.05286721768797],[-127.04697853959824,57.05304465266187],[-127.04692457322314,57.05322216215027],[-127.04686334702897,57.05339860921409],[-127.04680005724666,57.053575072841134],[-127.0467357271134,57.053751544810254],[-127.04667553898437,57.053927983501275],[-127.04662155346608,57.05410549310771],[-127.04658202540394,57.05428288661715],[-127.04656214893004,57.05446236380624],[-127.04654642893942,57.05464292837369],[-127.04651826923913,57.05482135137494],[-127.04646944774966,57.0549988195507],[-127.04641130305347,57.05517524184344],[-127.0463469849634,57.055351713688154],[-127.04628264977785,57.055528185655696],[-127.04622141696538,57.05570463270625],[-127.04616744336087,57.05588214221566],[-127.04612170539208,57.056059585620964],[-127.04608220350396,57.056238099716005],[-127.04604372458581,57.05641660560909],[-127.04600214227466,57.056595136415325],[-127.04595537934841,57.056772588064476],[-127.04591553083769,57.05686256676552],[-127.04580081265243,57.0571212567202],[-127.04571059848257,57.05729457400731],[-127.04563384723261,57.057470024720864],[-127.04552182330023,57.05763791317902],[-127.0453838775819,57.05780152650211],[-127.04523758624102,57.057961844399955],[-127.04508612724956,57.0581222035752],[-127.04493674678041,57.05828254592003],[-127.04478109778749,57.058440696871095],[-127.04462340072355,57.05859886405734],[-127.04447190621602,57.05875810209755],[-127.04433601532408,57.05892169790867],[-127.0442146882858,57.05908965987161],[-127.04409024300843,57.05925652597189],[-127.04394600407693,57.05941682605872],[-127.04378316337096,57.05957615421081],[-127.04361727886517,57.05973774801288],[-127.04344411860272,57.05989715837546],[-127.0432573099355,57.06004771183903],[-127.04305459051656,57.06018270201263],[-127.0428180347045,57.0602877026198],[-127.04248643694277,57.06031276972897],[-127.04213662336144,57.06031332537377],[-127.04180259712786,57.06032496129124],[-127.0414740929822,57.06031189598667],[-127.04116407658952,57.0602572148735],[-127.04085993132152,57.06019127877009],[-127.0405586781004,57.060117473715955],[-127.0402584053322,57.0600414186786],[-127.03995808693128,57.05996424258943],[-127.03965680691567,57.0598893149672],[-127.03935256246605,57.05981889324892],[-127.03904934255807,57.059748462666285],[-127.03874502327254,57.05967579867688],[-127.03844180560628,57.05960536668825],[-127.0381365257013,57.0595349504307],[-127.03783034450089,57.05946902359426],[-127.03752217522826,57.05940647408461],[-127.03721107136855,57.059349550891135],[-127.03689311769112,57.05930613029182],[-127.03656647575686,57.05928519274389],[-127.03623487901858,57.05927213892425],[-127.03590426203645,57.059256835004135],[-127.03557753050276,57.05923253349],[-127.03524968544055,57.05920487779616],[-127.03492185450992,57.05917834190585],[-127.03459524489209,57.05915851991696],[-127.03426899738004,57.059152143069475],[-127.03394817257445,57.05919391403103],[-127.03362525360733,57.059234580068726],[-127.03329772537388,57.05925735006941],[-127.03297126678463,57.05928123150363],[-127.03264822564944,57.05931741313545],[-127.03223213603653,57.05938571143194],[-127.03200644937642,57.059358359301335],[-127.03167696347728,57.059346397917615],[-127.0313475514637,57.05933779732434],[-127.03101818615704,57.05933031626557],[-127.03068880447185,57.05932283450523],[-127.03035946945519,57.05931647227987],[-127.03003008801687,57.05930898885507],[-127.02969971330405,57.059302633180515],[-127.02937037862421,57.059296268456414],[-127.02904099755155,57.059288782532676],[-127.02871169308499,57.059283536642546],[-127.02838240217753,57.05927941054883],[-127.02805208792407,57.05927529169479],[-127.0277227237946,57.05926780231009],[-127.02739328339257,57.059258071226836],[-127.02706479326767,57.05924496962217],[-127.02673716372144,57.05922513600814],[-127.02641298647397,57.05918061824027],[-127.0260921824126,57.05914615972585],[-127.02578199435754,57.05920015486175],[-127.02546337272572,57.05924749119846],[-127.02513927151082,57.059282541773975],[-127.02481506358224,57.059314230177435],[-127.02448871869292,57.05934257236543],[-127.02416232696265,57.059369793367644],[-127.02383373871118,57.05939142713376],[-127.0235047755765,57.05939961421014],[-127.02317744479264,57.05939097664031],[-127.02284889534,57.059375623412144],[-127.02252025673435,57.05935690785753],[-127.02219158865314,57.05933707097535],[-127.02186397411621,57.059318345741374],[-127.02153440239013,57.05930299722402],[-127.0212060627132,57.05929548335392],[-127.02087677251092,57.05929133830086],[-127.02054654820374,57.059290561928215],[-127.02021739357336,57.05929089707978],[-127.01988725846842,57.05929348053686],[-127.0195571530378,57.05929718365807],[-127.01922707725271,57.05930200644355],[-127.01889802480429,57.05930682039364],[-127.0185679488538,57.05931164151021],[-127.0182357501136,57.05931423690802],[-127.01790361066965,57.059319072460276],[-127.01757362347213,57.0593272525608],[-127.01724581808767,57.05933989772652],[-127.01692135290004,57.05936148186417],[-127.01660792841601,57.059410997384944],[-127.01631409705395,57.05949846427365],[-127.01603812045747,57.059598119377526],[-127.01577263692245,57.05970441651805],[-127.0155113970724,57.059815162982325],[-127.0152480331495,57.059923683999095],[-127.01497617750846,57.060023304743765],[-127.01466405126149,57.06008289203278],[-127.01436155587473,57.060155852410695],[-127.01405474213901,57.060221000550904],[-127.01374151380507,57.060278352725135],[-127.01342275025257,57.060321177658956],[-127.01309254678256,57.06032150290575],[-127.01276263852182,57.060333032341],[-127.01243502956292,57.0603535089358],[-127.01210750876228,57.060377346215716],[-127.0117798990768,57.06039782116489],[-127.0114745147909,57.06040019112822],[-127.01112277099439,57.060405161445104],[-127.01079230160664,57.060395396339295],[-127.01046285583674,57.06038562246244],[-127.01013363285588,57.06038369114698],[-127.00980468775404,57.0603929641598],[-127.00947480732006,57.06040560577832],[-127.00914501491745,57.06042160807219],[-127.0088163504189,57.060440962994136],[-127.00848982068518,57.060463662762494],[-127.0081643599138,57.06048747417386],[-127.00786498176784,57.060561515999865],[-127.00757094549898,57.060642240229335],[-127.00726092489819,57.06070403487777],[-127.00694771184654,57.06076249125177],[-127.00663768927413,57.06082428442324],[-127.00633403201932,57.06089275209817],[-127.00604420486161,57.06097680255737],[-127.0057703131143,57.06107866111192],[-127.00549639060519,57.06117939859365],[-127.00519264060794,57.06124450211264],[-127.00489642565711,57.06132187487256],[-127.00461932432606,57.061419272809886],[-127.00434011233587,57.06151556568481],[-127.00406091545462,57.061611857841115],[-127.00378382266936,57.06171037465529],[-127.00351198319268,57.06181221262916],[-127.00325060596359,57.06191957316989],[-127.0030197117909,57.06204799253235],[-127.00280870345996,57.062187465824465],[-127.00257354576179,57.062311434270335],[-127.00227529952541,57.06238993738274],[-127.00198764526529,57.06247956570713],[-127.00170739547144,57.062575860882845],[-127.0014544373086,57.06268987749651],[-127.00121633104588,57.06281946978854],[-127.00101056660677,57.06296226208355],[-127.00087645193724,57.06312243568127],[-127.00079111345923,57.063293442025156],[-127.00073069951318,57.06346986065822],[-127.00068273753678,57.06364954589581],[-127.00063375156833,57.06382923899501],[-127.00057130162135,57.0640067939689],[-127.00049433094885,57.0641822189058],[-127.0004100868136,57.064355458164385],[-127.00032377828529,57.06452871322424],[-127.00023746897891,57.06470196824838],[-127.00015635543751,57.06487630410305],[-127.00008248487758,57.06505170509446],[-127.00001274098612,57.065227074407076],[-127.00000120440212,57.06525966415223],[-126.99994611287646,57.065403540534426],[-126.99988255879525,57.065578862335826],[-126.99982007338724,57.0657552966614],[-126.99975966375195,57.06593283579027],[-126.99969924092319,57.066109254277016],[-126.99963984114905,57.06628566490939],[-126.99959285239876,57.066463101110685],[-126.99954795610316,57.0666416420058],[-126.99948129426822,57.06681698756291],[-126.99939913269536,57.066991331183075],[-126.99930868613984,57.06716461753591],[-126.99920683794303,57.06733574975468],[-126.99909147853703,57.06750362324173],[-126.99896370618042,57.06767047101356],[-126.99881930573571,57.0678329631196],[-126.9986477541284,57.06798333496086],[-126.99837749160382,57.06810868559132],[-127.0000006552701,57.07237858182163],[-127.0105063798752,57.100000338488464],[-127.02563497944791,57.13970596011405],[-127.02584764252805,57.13988585955906],[-127.02611320472847,57.139994732758026],[-127.02639190032815,57.140092294237846],[-127.02667967031715,57.14018081741548],[-127.02697148703358,57.140265945758124],[-127.0272634250715,57.14035555571123],[-127.02755637658174,57.14044403625539],[-127.02785616784648,57.1405178919295],[-127.02816672375585,57.1405692461828],[-127.02849003793419,57.14059472083193],[-127.02882017708271,57.140604449716704],[-127.02915422485145,57.140606301366105],[-127.02948931478026,57.14060814394783],[-127.02982047988397,57.14061786222133],[-127.03014583319457,57.140642195907134],[-127.03045950302294,57.14069352018793],[-127.03076642668657,57.140762829782695],[-127.03107336503568,57.1408332593543],[-127.03138820031198,57.14088905544124],[-127.03171290656235,57.1409279607866],[-127.03204054246069,57.140960117372636],[-127.03236517604743,57.14099565927691],[-127.03267882156938,57.14104585767832],[-127.03297147255832,57.141123120617735],[-127.03324314604876,57.14122744810982],[-127.0335118182306,57.14133516121143],[-127.03379458729995,57.14142931258133],[-127.03408439174551,57.14151556204112],[-127.03437620482887,57.141599553361864],[-127.03466801919,57.14168354403602],[-127.03496187237039,57.141766397116314],[-127.0352556965788,57.14184812897697],[-127.03554955228907,57.14193098074543],[-127.03584238364625,57.14201383999106],[-127.03613423463572,57.14209894797938],[-127.03642401912421,57.14218407172771],[-127.0367118279506,57.142272572940925],[-127.03699461178283,57.142366717449285],[-127.03727336882642,57.14246425575216],[-127.03755214105391,57.14256291416238],[-127.03783189626279,57.14265932257734],[-127.03811566722784,57.142751215278075],[-127.03840540037203,57.14283409354464],[-127.03871028768197,57.14290340102238],[-127.03903723800457,57.1429478745951],[-127.03937322936694,57.14298218817266],[-127.03970110183283,57.14302216953934],[-127.04000574993069,57.14308250949408],[-127.04027197464563,57.14317565810718],[-127.04050886337333,57.143292576792696],[-127.04072657317927,57.14342645996052],[-127.04093110876548,57.1435705350266],[-127.0411305895828,57.14371913331237],[-127.0413321563732,57.143867714693634],[-127.04154176676593,57.144008386013496],[-127.04175750763885,57.14414564571428],[-127.04197122648442,57.14428516282759],[-127.04218496342784,57.14442467947372],[-127.04240476733877,57.14455966415551],[-127.04263370399295,57.144687850756846],[-127.04287788576556,57.144805828008174],[-127.04314550687127,57.14491128877231],[-127.04343958598216,57.14500084636659],[-127.04375068690975,57.14507009277038],[-127.04406836403638,57.1451146281088],[-127.0443916355449,57.14513670179255],[-127.04472175676699,57.14514414939284],[-127.04505578376724,57.14514371925595],[-127.04539076138792,57.14513991823254],[-127.0457248048874,57.1451394862527],[-127.04605601321484,57.14514916339865],[-127.04637934729557,57.145173473292175],[-127.04669595550254,57.14521689002919],[-127.04700582424242,57.14527829296419],[-127.04731180282097,57.1453486928351],[-127.04761684862716,57.145422461909895],[-127.04792286009118,57.14549398092105],[-127.04823483162914,57.145556484928576],[-127.04857517381313,57.145597465099925],[-127.04891144205708,57.14564071872203],[-127.04919780358814,57.14571239256554],[-127.0493844150078,57.14584202842029],[-127.04948654669495,57.1460216583826],[-127.04957234992438,57.14620926515688],[-127.04971403484679,57.146360556958676],[-127.05004706392558,57.1463982297212],[-127.05036208966507,57.14634526073365],[-127.05065027389941,57.14625664091806],[-127.05093721615283,57.146160184779326],[-127.05123390118766,57.14607934095353],[-127.05155284361818,57.1460184918812],[-127.05187761117422,57.14601923970659],[-127.05220405000097,57.146043510289424],[-127.05253174675657,57.146075615601355],[-127.05285756061308,57.14611446013754],[-127.05317942373345,57.14616006058452],[-127.05349529904547,57.14621355421236],[-127.05380014811453,57.146279464955214],[-127.05409315871776,57.14636676593951],[-127.05436800627814,57.14646990423962],[-127.05462039860763,57.146584431378315],[-127.0548524676678,57.14671145108613],[-127.05507439729566,57.14684639797984],[-127.055294276983,57.14698136108201],[-127.05552533921485,57.14710950861488],[-127.05577674429587,57.147225162425265],[-127.05604748071272,57.147329451381246],[-127.05632327360546,57.147429215659606],[-127.05658992421083,57.14753465738052],[-127.0568140254238,57.14767294636616],[-127.0570449424866,57.14779548845976],[-127.0573554275659,57.14784005007729],[-127.05769299002408,57.14785412977966],[-127.05802738049573,57.14786599267355],[-127.05835762061128,57.1478767675225],[-127.05868781343712,57.14788642110771],[-127.05901789921316,57.1478915914719],[-127.0593489799029,57.147895632121426],[-127.05967892546455,57.14789631869758],[-127.06001080083048,57.14789138471195],[-127.06034157183448,57.1478842172174],[-127.06067243568036,57.147880410573755],[-127.06100241213284,57.147882214370505],[-127.06132960482718,57.14789524809354],[-127.06165626824576,57.147926218333346],[-127.06197815702657,57.1479717971647],[-127.06229205349901,57.148027527531845],[-127.0625969776433,57.14809565909612],[-127.06289796952456,57.148170546843964],[-127.06319897709882,57.14824655459964],[-127.06350395221168,57.1483158044861],[-127.06381289271417,57.148379417306636],[-127.06412385672807,57.148440771294865],[-127.0644347740929,57.14850100411825],[-127.06474673477042,57.14856122770949],[-127.06505866531029,57.14862032999626],[-127.06536963326998,57.14868168103051],[-127.06567959101896,57.148744160391956],[-127.06598455802155,57.14881340464878],[-127.06627550180386,57.14889845408929],[-127.06655744354474,57.14899478455457],[-127.06683640087486,57.14909562206714],[-127.06711630849117,57.149193088791094],[-127.06740324607824,57.149282651778954],[-127.06770111493611,57.14935643337848],[-127.0680119205239,57.14941217548112],[-127.06832771844395,57.149461151126346],[-127.06864552290186,57.149507867969014],[-127.0689652713845,57.14955008486987],[-127.06928702626892,57.14959004293836],[-127.06961078750454,57.1496277421595],[-127.06993451811603,57.14966432001746],[-127.07026028626134,57.149699759570055],[-127.070586023729,57.149734077749414],[-127.07091179306873,57.149769515679445],[-127.0712365684861,57.14980608177105],[-127.07156132797715,57.149842647192024],[-127.07188515621563,57.149882581908045],[-127.07220694825801,57.14992365335772],[-127.07252676679941,57.14996810267907],[-127.07284762845595,57.150012542659624],[-127.07316847431036,57.15005698198952],[-127.07349036328439,57.15010141196828],[-127.07381122717253,57.15014584958683],[-127.0741331176369,57.15019027798512],[-127.07445399786052,57.1502358347257],[-127.07477388441376,57.1502825196799],[-127.07509380315753,57.150330324413964],[-127.07541272828247,57.15037925737148],[-127.07572960088264,57.15042932727886],[-127.07604655373544,57.15048163740577],[-127.07636042828585,57.150535092953675],[-127.07667332423885,57.150590797462144],[-127.07698426381403,57.15064987981949],[-127.07729215667037,57.15071122821047],[-127.07760537026896,57.150778136105664],[-127.07791882196965,57.150852887044245],[-127.07822630562951,57.15093665306578],[-127.07851860212531,57.15103175196064],[-127.07878636463896,57.15113714018911],[-127.07902239405226,57.15125399818139],[-127.07921645850753,57.151386893915294],[-127.07935734822443,57.15154152429637],[-127.07945941467531,57.15171328764317],[-127.07953797220222,57.15189533258333],[-127.07960522613074,57.15207971255348],[-127.07967756513841,57.1522606880318],[-127.07976004063306,57.152434854796],[-127.0798394226416,57.15260904710345],[-127.07991574267672,57.15278438552211],[-127.07998994694796,57.15295862059006],[-127.08006318910189,57.1531351052438],[-127.08013537445345,57.15331047779808],[-127.08020651799855,57.15348585895384],[-127.08027766219435,57.15366124009379],[-127.08034883860905,57.15383774178084],[-127.08041998410843,57.15401312288931],[-127.08049319868243,57.15418848687758],[-127.08056743986894,57.154363842363345],[-127.0806437351472,57.15453806002271],[-127.08072312552298,57.15471225206657],[-127.08080561103823,57.15488641848924],[-127.08089015073615,57.15505944707094],[-127.08097985412302,57.155232432908456],[-127.08107262118848,57.15540427254063],[-127.08116954263016,57.15557607776183],[-127.08126858009321,57.155750107082014],[-127.08137174043769,57.15592298141167],[-127.08147905381988,57.15609694214369],[-127.081592527118,57.15626861017836],[-127.08171320145449,57.15643909770712],[-127.08184101368609,57.15660616357975],[-127.08197909153824,57.15676978187644],[-127.08212634437406,57.15692884076913],[-127.08228588339841,57.157083314457466],[-127.08245764543724,57.157230961764135],[-127.08265701017115,57.15736717190603],[-127.08289121099712,57.157490763984214],[-127.08315094612,57.15760293573873],[-127.08342911030925,57.157708229236185],[-127.08371539214866,57.157807850700756],[-127.08400266983413,57.15790634246882],[-127.08427965409047,57.15800603986332],[-127.08456766035088,57.15809331609732],[-127.08487480443698,57.1581624995728],[-127.0851849022999,57.158226053665906],[-127.08549992729316,57.15828059947466],[-127.08581591576724,57.15833289486983],[-127.0861309577275,57.158388559864775],[-127.08644003344928,57.158452119518344],[-127.08674317351323,57.15852581528018],[-127.08706110728801,57.15857360820922],[-127.08738486650184,57.158607901942744],[-127.087710631381,57.158639936526],[-127.08803737581654,57.15866972048678],[-127.08836511501033,57.1586983745206],[-127.08869285469392,57.1587270277332],[-127.08901958408508,57.158756809378076],[-127.08934432553541,57.158788848443336],[-127.08966815229749,57.158825377655695],[-127.08998899581054,57.15886641427741],[-127.09030587852833,57.15891308731824],[-127.09062290483152,57.158965362554305],[-127.09093909722567,57.15902436897758],[-127.09125128079121,57.159087891446944],[-127.09155748263208,57.15915930896555],[-127.09185560230384,57.15923751829639],[-127.09214464575986,57.159323648635905],[-127.09242259171916,57.159419958607096],[-127.09268854197516,57.15953093912142],[-127.09294756441376,57.15965318537653],[-127.09319957990077,57.15978333558397],[-127.09344856619512,57.15991575234302],[-127.0936954369618,57.160047065527905],[-127.09394420288571,57.16017163741359],[-127.09419673960996,57.16028384811818],[-127.0944540101669,57.16038032705094],[-127.09472104991558,57.16045654866555],[-127.0950043713748,57.16048667916521],[-127.09531449460809,57.160441488597705],[-127.09563579737814,57.16035249106832],[-127.09595570368387,57.160251175289],[-127.09625852836142,57.160167935344724],[-127.09654571630173,57.16008034256796],[-127.09682751499682,57.15998494855554],[-127.09710932780303,57.15989067464524],[-127.09739431471915,57.159798615133944],[-127.09767607715331,57.15970209874831],[-127.09795775744439,57.15960334077412],[-127.09823951702552,57.15950682318783],[-127.09852449837554,57.159414761238516],[-127.09881486660049,57.159330499199],[-127.09911283556441,57.15925850174504],[-127.09942053845596,57.15920099254414],[-127.09974012413178,57.15916131594396],[-127.10006830535927,57.15913277453224],[-127.10040091288523,57.15911428252007],[-127.10073464266024,57.159099142706204],[-127.10106632004242,57.15908401933101],[-127.10139685798659,57.159065542215096],[-127.1017304259575,57.15904479704792],[-127.10206413894508,57.159028533138176],[-127.10239599194327,57.15902012990077],[-127.1027241107133,57.159025207336086],[-127.10304655500431,57.159049386022026],[-127.10337557698236,57.15908583755225],[-127.10370801688242,57.15913346773391],[-127.1040335638567,57.15919348448985],[-127.10433991943687,57.159269354311],[-127.10461573008988,57.15936229414184],[-127.10485071704997,57.159474632753565],[-127.10504911460956,57.15960969707016],[-127.10522110480349,57.159761796976476],[-127.10537480091365,57.15992525978001],[-127.10552038495545,57.160094395235824],[-127.10566698061322,57.16026240116727],[-127.10582371084288,57.16042359619491],[-127.10597941628656,57.160584799737876],[-127.1061229367328,57.160753952113986],[-127.10626245021956,57.16092762162907],[-127.10640090651711,57.161100179142295],[-127.10654443075174,57.16126933112081],[-127.10670011031513,57.16142941334442],[-127.10687205052085,57.161579270159265],[-127.1070662637433,57.161712125544405],[-127.10728885934114,57.1618245651201],[-127.10755208833056,57.16191088072443],[-127.10785287130435,57.161972219046305],[-127.10818001603943,57.16201427891363],[-127.10852434953927,57.162042742119155],[-127.10887466319866,57.16206330781675],[-127.10922183328442,57.16208277842218],[-127.10955466812385,57.16210685316878],[-127.10988725976249,57.16212308327015],[-127.11022781910826,57.16212803645815],[-127.11057131123351,57.1621273596456],[-127.11091576455378,57.162124432082884],[-127.1112571553182,57.16212265049161],[-127.11159150832268,57.16212765290067],[-127.11191683584548,57.16214281879352],[-127.11222916298843,57.162173786262464],[-127.11252446651787,57.16222395217035],[-127.11279272781147,57.1623046103352],[-127.11302891303166,57.16242140800011],[-127.1132430745947,57.16256305133012],[-127.11344417233275,57.16271825571264],[-127.11364119904123,57.16287573618716],[-127.11384420614309,57.16302531954875],[-127.11405418719285,57.163165876457164],[-127.1142560735662,57.16331210627108],[-127.11445183592086,57.16346175054471],[-127.11464460243985,57.163614782627256],[-127.11483834806708,57.16376556442282],[-127.11503515775173,57.16391519897894],[-127.11523900641211,57.16405804815751],[-127.1154519795181,57.16419409412429],[-127.11567707438158,57.16431994872168],[-127.11591940638685,57.16443332652408],[-127.11617995248139,57.16453309824681],[-127.11646203660845,57.16462596043345],[-127.11676155346305,57.164713068863904],[-127.11707527678031,57.164791088465364],[-127.11739913422196,57.164861174791774],[-127.11772885655694,57.164920001748456],[-127.11806037132838,57.16496872496788],[-127.11839147811902,57.16500400073412],[-127.11871699623035,57.16502475254811],[-127.11903381352036,57.16503100709371],[-127.1193407071038,57.16501604984643],[-127.11964373599255,57.164975345595224],[-127.119945034042,57.164911117765534],[-127.12024378750377,57.164830098400785],[-127.12054222838387,57.16473899344011],[-127.12083944507349,57.164641173232496],[-127.12113662747743,57.16454223179434],[-127.12143397223615,57.164448892496615],[-127.12173265337717,57.1643656286336],[-127.12229740982453,57.16442915167106],[-127.1226233189187,57.164463340486094],[-127.12294919577204,57.164496407928034],[-127.12327507318747,57.16452947455824],[-127.12360098400616,57.164563660938136],[-127.12392588549798,57.164598976034696],[-127.12424982710077,57.16463654027441],[-127.12457176610803,57.164676362636975],[-127.12489173544941,57.16471956369836],[-127.12520874187996,57.16476727286957],[-127.12552379516123,57.164819481477714],[-127.12583095190638,57.164884086645955],[-127.12613118912242,57.164959959171455],[-127.12642644432516,57.16504259902805],[-127.12672077337865,57.165128608752724],[-127.1270150708112,57.165213497259025],[-127.1273123495248,57.16529387602438],[-127.12761449709124,57.16536412451507],[-127.12792455914995,57.165421974719585],[-127.12824687132351,57.165474114224224],[-127.1285773284786,57.16552169923004],[-127.12891169350499,57.16556140373469],[-127.12924675538599,57.16558989291106],[-127.12957720102987,57.16560160843919],[-127.12989675681797,57.16559548373933],[-127.13020308908344,57.16556145145242],[-127.13049166258904,57.165487221588435],[-127.1307690802121,57.16538506644591],[-127.13104408021243,57.16527172317042],[-127.13132336539324,57.16516282560368],[-127.13161464857863,57.16507511962978],[-127.13192104192149,57.165008578214575],[-127.13223499829455,57.16495317901816],[-127.13255540896779,57.164905569055826],[-127.13287907959564,57.16486353427699],[-127.13320390821274,57.164825972036475],[-127.13353285755652,57.1647872523992],[-127.13387810944612,57.16474054457076],[-127.13422564492302,57.164700541085764],[-127.13455437843496,57.1646898418982],[-127.1348461544312,57.16472429665523],[-127.13508998427517,57.164816330365696],[-127.13530089667621,57.1649501209139],[-127.13549491286123,57.16510759573104],[-127.13569007299928,57.16526842289415],[-127.13590342420066,57.16541452068559],[-127.13614809118891,57.165534566444684],[-127.13641103214458,57.1656432444046],[-127.13668623915217,57.16574621094164],[-127.13696240740992,57.16584692686199],[-127.13723146019217,57.16595218752423],[-127.13748628047482,57.16606541745813],[-127.13770861283938,57.166200225840164],[-127.1378945186174,57.166362251376725],[-127.1380741689592,57.166523210301804],[-127.13835044020227,57.16669677772522],[-127.13854503823686,57.166733191616565],[-127.13885745755009,57.166765216116445],[-127.13919902150886,57.16676784377118],[-127.13954933837518,57.16675133977916],[-127.13989016923696,57.166729313327764],[-127.14021540673413,57.16670518031797],[-127.14053931752062,57.16667097042561],[-127.14086203473425,57.1666311658961],[-127.14118357504174,57.1665868874417],[-127.14150614086154,57.16654259923493],[-127.14182771305789,57.166499439757374],[-127.14215152051251,57.166461864200514],[-127.14247853937549,57.16642762231583],[-127.14280771036796,57.16639672334155],[-127.14313578775267,57.16636359139901],[-127.14345959277786,57.166326012605516],[-127.14377695599909,57.16628064342676],[-127.14408464819056,57.166223028774766],[-127.14436866032015,57.16613535777174],[-127.14463119439067,57.166020973839906],[-127.14489265064071,57.16590547796802],[-127.14517129345644,57.16581112713761],[-127.14547566709244,57.16574681315568],[-127.14579285567983,57.16569583631864],[-127.14611655196042,57.16565488929245],[-127.14644347682724,57.16561839654129],[-127.14676831509651,57.16558080042565],[-127.14709327029108,57.16554768587361],[-127.14742051170927,57.16552127554166],[-127.14768800340582,57.16550435587594],[-127.14804549325392,57.16541715242216],[-127.14831351128213,57.16531392135117],[-127.14861631231541,57.16523168020698],[-127.14888965959453,57.16513400536138],[-127.14911032356775,57.16500428848392],[-127.14932543582442,57.164862290699645],[-127.14952582857279,57.164712576074564],[-127.14970325966308,57.164556338034245],[-127.14984534923826,57.16439480644372],[-127.14993971769556,57.164229211198176],[-127.14997798909074,57.16405626355802],[-127.14997570635555,57.16387694766995],[-127.1499515739736,57.163693340661865],[-127.14992434675614,57.163509760907175],[-127.14991161905165,57.16332717444832],[-127.14991651879119,57.16314555376556],[-127.1499077774834,57.16295732803726],[-127.14991671407819,57.16277230933885],[-127.14997774142508,57.16259916164762],[-127.15012005789154,57.16244547386512],[-127.1503020171615,57.162302645495856],[-127.15050792637706,57.16216521027847],[-127.1507305357099,57.162032111084635],[-127.15096353826087,57.16190116167522],[-127.15120175314173,57.16177128678286],[-127.15143786396347,57.161640309144786],[-127.15166769949657,57.16150714468346],[-127.15188288365827,57.16136850471688],[-127.15208242407581,57.16122551891633],[-127.15228187910247,57.16108029187022],[-127.15247921304972,57.16093284153177],[-127.15267232406146,57.160783186450296],[-127.15285710777732,57.16063136285336],[-127.15303043634566,57.16047739837522],[-127.15318813873083,57.160320209022196],[-127.15332819662851,57.16016093351365],[-127.15344119166643,57.15999629249721],[-127.15347924078326,57.159816621081994],[-127.1534673040267,57.15962618242478],[-127.15344502402213,57.15943583509034],[-127.15345512017161,57.15925528963225],[-127.15353817565138,57.15909315457286],[-127.15370887186333,57.158954904375506],[-127.15393797804748,57.1588329508824],[-127.15420362944539,57.158721882669674],[-127.1544880319138,57.158615131639436],[-127.15477239905192,57.15850725945051],[-127.15503688472512,57.15839171644536],[-127.15527523281581,57.15826743720983],[-127.15550727224978,57.15813985078368],[-127.15573507162523,57.1580089389058],[-127.1559597582889,57.15787805416564],[-127.15618232381176,57.157744946113425],[-127.1564038114348,57.157610726374706],[-127.15662425495007,57.15747651550214],[-127.15683946618724,57.157340108886764],[-127.15703568700246,57.157191540764444],[-127.15723828101264,57.15704852013844],[-127.1574746465579,57.156927616974585],[-127.15777021508859,57.15684878098369],[-127.15809324857874,57.156788755286875],[-127.15839095099332,57.1567121406592],[-127.158635720333,57.15659564425838],[-127.15886760301207,57.15646356984297],[-127.15907736663604,57.15631824107164],[-127.15925160895843,57.15616201864861],[-127.1593780879681,57.1559994947255],[-127.15946188281522,57.15582838268777],[-127.15951651508449,57.155650804327955],[-127.15955449754287,57.15547001118369],[-127.15958620653369,57.15528703203358],[-127.15962415441763,57.155105118373974],[-127.15967984473215,57.15492865148063],[-127.1597646783758,57.15475753013319],[-127.159911029447,57.15460267532983],[-127.16012506869302,57.154462911220186],[-127.16036313853185,57.15433077926651],[-127.16059086479312,57.1541987387539],[-127.16081759748928,57.154067827515036],[-127.16104959307546,57.15394023164869],[-127.1612836554842,57.15381261699937],[-127.16151775027494,57.15368612248545],[-127.16174970727636,57.15355740487006],[-127.16197644963151,57.15342761237244],[-127.16219262759496,57.15329006754138],[-127.1624045828707,57.15315031823246],[-127.16262079170704,57.153013893263214],[-127.16284966417219,57.15288632198156],[-127.1631016089215,57.152768632505364],[-127.1633763888861,57.152654101746506],[-127.16367051245689,57.152562935845026],[-127.16397631996375,57.152516498940614],[-127.16429187929113,57.15251817070488],[-127.16461661406747,57.152550022710486],[-127.16494697090724,57.15259639476204],[-127.16527826882383,57.15263939506088],[-127.1656079801258,57.15266447517157],[-127.16594227518728,57.15267045919359],[-127.16628351098312,57.15266629280491],[-127.16661375753097,57.152640927597844],[-127.16691826344807,57.152585528643556],[-127.16719589994383,57.15249674367013],[-127.16745629006653,57.152385695311786],[-127.16770700438158,57.15226240361568],[-127.1679587936207,57.1521402226709],[-127.16821177778448,57.15202363477644],[-127.1684594790643,57.151903731100866],[-127.16871035774456,57.151786040219335],[-127.16898143799912,57.151686101617635],[-127.1692833180348,57.15161278707523],[-127.16968419900795,57.15152961879061],[-127.16968091864531,57.1513884217551],[-127.16954622906567,57.15121141326964],[-127.16948015106551,57.15104611982725],[-127.16937465763247,57.150876695791794],[-127.1692670462275,57.15070616981226],[-127.16915948648501,57.15053676415546],[-127.16905187699041,57.15036623804193],[-127.16894842133306,57.15019567470437],[-127.16885009456848,57.15002394458566],[-127.16875173453677,57.149851093877494],[-127.16863879598064,57.14967501100382],[-127.16853206285194,57.14949887256197],[-127.16845531018116,57.14932246593107],[-127.16843661842543,57.14915002339097],[-127.16849984757339,57.14898469407929],[-127.16863559602099,57.148823199438986],[-127.16880969706828,57.14866472407294],[-127.1689900174508,57.1485061928302],[-127.16914017029933,57.14834232711395],[-127.16923733897555,57.14817108956031],[-127.16931273221759,57.147997805170405],[-127.16937458830195,57.14782127940246],[-127.16942812098833,57.14764370728967],[-127.16947649140089,57.14746618138656],[-127.16952272501945,57.14728643293255],[-127.169572136816,57.14710889771047],[-127.16962667569065,57.14693019574435],[-127.16968958849978,57.146754781318414],[-127.16976176416216,57.14657816309689],[-127.16983915151435,57.14640261902254],[-127.16991761458505,57.1462281861253],[-127.16999395827439,57.146052651338806],[-127.170064114006,57.14587717194895],[-127.17012594666964,57.14570064625167],[-127.17017437977321,57.14552536141356],[-127.17016998655554,57.145347187273956],[-127.17012105697722,57.14516717041829],[-127.1700825014711,57.14498818148965],[-127.17004269902998,57.144802478711256],[-127.17000393917876,57.144616766611584],[-127.17001412439224,57.1444418245358],[-127.17014605652682,57.14429157123833],[-127.17044129639278,57.144172358980505],[-127.17068581232668,57.14405135897047],[-127.17068326331335,57.14390006861763],[-127.17051161403495,57.14373123940447],[-127.17037593952085,57.14355536265233],[-127.17039437741131,57.143380346724435],[-127.17046755145431,57.14320259868626],[-127.17056550398657,57.143023507741326],[-127.17066656553091,57.14284438887528],[-127.17074387281198,57.14266660368968],[-127.17077478350495,57.1424937176873],[-127.17073757756778,57.14232480474174],[-127.17063839180959,57.142158688966],[-127.1704907262285,57.14199637008915],[-127.17031108894038,57.141836579208125],[-127.17011200673505,57.14168368732301],[-127.16990795363985,57.14153756470614],[-127.1696990486483,57.14140157277417],[-127.16946767388046,57.141274748403376],[-127.16922097208366,57.14115366502708],[-127.16896815472039,57.141035998448245],[-127.16871838040251,57.140916062505205],[-127.16847781799694,57.14079268119556],[-127.1682484503431,57.14066359516577],[-127.16802111776194,57.14053336972605],[-127.16779578614171,57.140400884357675],[-127.16757255781542,57.14026950066064],[-127.16734926282206,57.14013587553549],[-127.16712702901454,57.14000336140763],[-127.1669027797559,57.1398719857686],[-127.16667234675509,57.13974178583987],[-127.16644088978958,57.139611594675756],[-127.16621353551326,57.13948024566239],[-127.1659974606038,57.13934543308746],[-127.16579770697611,57.139203749505086],[-127.16561820444942,57.13904731408927],[-127.16548070562663,57.13887817449032],[-127.16541253075265,57.13871065789634],[-127.16556755613391,57.13846941634355],[-127.16578634446215,57.13842150953876],[-127.16612402358219,57.13837254091867],[-127.16642938162258,57.1384168891903],[-127.16672335749992,57.13849496341929],[-127.16701571016125,57.138587622335315],[-127.16731110563504,57.138678011754756],[-127.16761627804765,57.13875037978838],[-127.16793208092885,57.138797993728176],[-127.16825601832463,57.1388410508192],[-127.16858392089858,57.138878467469496],[-127.1689147630083,57.13891025282649],[-127.16924741761979,57.138934175287964],[-127.16957873967688,57.13894802133268],[-127.16990659301283,57.13894956843392],[-127.17022988454013,57.13893770557462],[-127.17055068037297,57.138911293434745],[-127.17087002331874,57.13887144351646],[-127.1711879814643,57.138820396886764],[-127.17150467373165,57.13876151499094],[-127.17182020261451,57.138698159421345],[-127.1721325181618,57.13863146941738],[-127.1724428335752,57.13856703828369],[-127.17275424195273,57.13850483826173],[-127.17307086068423,57.13844371152875],[-127.17338852044125,57.13838257466956],[-127.17370189046768,57.13831699224231],[-127.17400673155181,57.13824251904486],[-127.17429680790283,57.138159211202904],[-127.17456680391427,57.13806151244633],[-127.17481357559475,57.13794833034701],[-127.17504129216663,57.137820748364796],[-127.1752541915232,57.1376820909718],[-127.17545755361256,57.13753567322731],[-127.17565459217376,57.137385949586935],[-127.17585270554355,57.137237336809726],[-127.17605399553389,57.13709093679839],[-127.1762647853753,57.13695117592508],[-127.17648832195528,57.13682250822988],[-127.17673091075595,57.136708239335015],[-127.17700302654374,57.13661275806863],[-127.17730256768525,57.13653496235481],[-127.17762225578025,57.13647379679833],[-127.17795166736876,57.13642599276295],[-127.1782824642549,57.136389383735],[-127.17860731710788,57.13636179418013],[-127.17893456334525,57.136344269717775],[-127.1792673139783,57.1363379030753],[-127.17960244198825,57.13634160162216],[-127.17993676932112,57.13635315238578],[-127.18026827977576,57.13637369442975],[-127.18059172780208,57.13640103352598],[-127.18089953368371,57.13645765497067],[-127.1811929470334,57.13655027259264],[-127.18148728372196,57.13663951871597],[-127.18179695317066,57.136689396214265],[-127.18212453981673,57.13671669410569],[-127.18246008584572,57.1367338315972],[-127.18279837959702,57.13673973498834],[-127.18313217500528,57.136733349061274],[-127.18345820753046,57.13671022008628],[-127.18376917987108,57.136668172588635],[-127.18407108640045,57.136600427312565],[-127.18436413411015,57.13651370745799],[-127.18464959026385,57.136415847441235],[-127.18493188289723,57.136315773824926],[-127.18520694640637,57.13621576519698],[-127.18546184055556,57.136099126524435],[-127.18570931585649,57.135976950526334],[-127.1859718320332,57.13587257084465],[-127.18628995311266,57.13582821069566],[-127.18662014546625,57.13580615680689],[-127.18694820072528,57.135781879831086],[-127.18727635959738,57.13576096359426],[-127.18760458748295,57.135742287574615],[-127.18793392639807,57.13572584229406],[-127.18826331790162,57.13571163737477],[-127.18859276041468,57.13569855199478],[-127.18892322812138,57.135685456448975],[-127.18925155876032,57.13567013785257],[-127.18958081032467,57.135651447530456],[-127.18990783697079,57.13562717246399],[-127.1902356452825,57.13559504359453],[-127.1905622720042,57.135558441322644],[-127.19088898420432,57.13552407912351],[-127.19121382066126,57.13549645823289],[-127.19153905599258,57.13548116209801],[-127.1918681844665,57.135491608873465],[-127.19219528320797,57.13553681930218],[-127.19249941730766,57.135608017870055],[-127.19273611523684,57.135738115188815],[-127.19296350327562,57.13586829714706],[-127.19327295218959,57.135877799342616],[-127.1936152663597,57.13584665027818],[-127.19394261011811,57.13586607487756],[-127.19426924270918,57.135895592705324],[-127.1946899074082,57.135856999291555],[-127.1949908161135,57.13579147938596],[-127.1952721215805,57.13569363388883],[-127.19552698166143,57.13557697562012],[-127.19573779701598,57.13544054503786],[-127.19590453286045,57.135283221843096],[-127.19603273379074,57.13511728465258],[-127.19611518936594,57.13494279962616],[-127.19617478229775,57.13476516145883],[-127.19623751885312,57.134588615324944],[-127.19630025483119,57.134412069183895],[-127.19635986262027,57.1342344308502],[-127.19640911689793,57.13405688735937],[-127.19644494170345,57.13387946690525],[-127.19643422603956,57.13370135201608],[-127.19637902127242,57.13352252389372],[-127.196352758462,57.1333434306419],[-127.19633778755029,57.133161992294085],[-127.19631755217054,57.13297723968868],[-127.19629632658318,57.13279361701409],[-127.19628335348683,57.13260991876487],[-127.19628497223594,57.13242944937669],[-127.19630528392422,57.13225217127612],[-127.19635368527899,57.132080240035684],[-127.19644577626116,57.13191687519794],[-127.19661273850784,57.131767395113776],[-127.19682962567919,57.13162754478154],[-127.19706522045358,57.13149088510499],[-127.19728830582721,57.131350977191346],[-127.19748121463186,57.13120462061351],[-127.19766680881872,57.13105608916999],[-127.19784922266875,57.13090534496958],[-127.19803165162246,57.130754600379426],[-127.19821616469433,57.130604957249005],[-127.19840385522178,57.130457526369796],[-127.19859889236533,57.130313390293495],[-127.19880336163729,57.13017365067424],[-127.19902667811432,57.1300415835181],[-127.19927311593985,57.129921632809015],[-127.19952999257762,57.12980494824202],[-127.19978375881425,57.12968829174435],[-127.2000004384347,57.12957533807739],[-127.2000217836713,57.12956393357321],[-127.2002325500131,57.12942749634166],[-127.20042860029763,57.129283348218436],[-127.20062048001508,57.129138117315605],[-127.2008091959041,57.12899067356002],[-127.20099476650293,57.12884213762963],[-127.2011771918322,57.128692509538155],[-127.20135645336839,57.12854066863586],[-127.20153364650963,57.12838884652458],[-127.2017087010994,57.12823480219113],[-127.20188069720774,57.128081906613254],[-127.20205053825791,57.12792678898559],[-127.20221832752779,57.12777169003349],[-127.2023840319716,57.12761661006914],[-127.20254764957122,57.127460428286234],[-127.20271022411272,57.12730425591154],[-127.202870660175,57.1271458613746],[-127.20302584913894,57.12698527332564],[-127.20317587784334,57.1268247326501],[-127.20331650717971,57.12666091593499],[-127.20344674927293,57.12649607398367],[-127.2035655253302,57.126327975107344],[-127.20366979721392,57.126158889012665],[-127.20376263849558,57.125987666567084],[-127.20384715991645,57.12581539994805],[-127.20392542632509,57.12564094930133],[-127.20399743987939,57.12546543545164],[-127.20406533569299,57.125289959552546],[-127.20412904559535,57.12511340140797],[-127.20418966299495,57.12493687177193],[-127.20424921955252,57.12475923107873],[-127.20430669225468,57.12458160959797],[-127.20436418095893,57.124403987962474],[-127.20442269423947,57.1242263568683],[-127.20448226724989,57.124049836820646],[-127.20454494807682,57.12387328809104],[-127.20460969504927,57.12369672028568],[-127.20467237471337,57.12352017154064],[-127.2047350538008,57.12334362278849],[-127.20479773231163,57.12316707402905],[-127.20485938517055,57.12299053472251],[-127.20491999585838,57.12281400502267],[-127.2049816310545,57.1226374658567],[-127.20504328221685,57.12246092653203],[-127.20510491627893,57.12228438735356],[-127.20516660149313,57.122108968521054],[-127.20522927600277,57.12193241971455],[-127.2052940165532,57.12175585182138],[-127.205360858307,57.121580385342824],[-127.20542973085497,57.12140377926693],[-127.20549966299215,57.12122828421651],[-127.20556961102245,57.121052788998654],[-127.2056395418806,57.120877293918575],[-127.20570634532447,57.12070070687267],[-127.20577009179584,57.12052526887293],[-127.20582965286572,57.12034874868999],[-127.20587679552433,57.12017122237953],[-127.20586798429775,57.11998972961778],[-127.20587082887327,57.11981709583827],[-127.20589285984883,57.11959721008724],[-127.2060031226832,57.11945496722317],[-127.20608449299463,57.11928160803946],[-127.20618131765,57.119106985201526],[-127.20628856071195,57.11893450768986],[-127.20640198564537,57.1187619729739],[-127.20651749253693,57.118589418929844],[-127.20662992569429,57.118418014033786],[-127.20673405690856,57.11824556497041],[-127.20682575344662,57.118072109966974],[-127.20690091788498,57.11789880776079],[-127.20695434094985,57.11772458572026],[-127.20697984029434,57.117549501037935],[-127.20698154905999,57.11737351551837],[-127.20697290942351,57.117197625704314],[-127.20695388412183,57.117019590287995],[-127.20692765373194,57.11684274233683],[-127.20689312298221,57.11666485032245],[-127.20685239355379,57.11648701563443],[-127.20680438887717,57.11630812739526],[-127.20675122712893,57.11612928684165],[-127.20669396849274,57.11595160499206],[-127.20663254257433,57.11577284084243],[-127.20656802606563,57.11559410526025],[-127.20650043769832,57.11541651889259],[-127.20643177334165,57.11523782163916],[-127.20636211997555,57.11506025434342],[-127.20629250246603,57.114883807532124],[-127.20622285038642,57.11470624020813],[-127.20615427553787,57.11452978374535],[-127.20608778621421,57.11435442882831],[-127.20601197261841,57.11417803923398],[-127.20591443768774,57.11400072948192],[-127.2057923040277,57.11383037186819],[-127.20564263818962,57.113671476710444],[-127.20545938260565,57.11352858314645],[-127.20521184499152,57.1134120618346],[-127.20492351320067,57.113312729002814],[-127.20463414155833,57.11321340515203],[-127.20438561882483,57.11309801225601],[-127.20420434997283,57.11295285708263],[-127.2040669152142,57.11278824336038],[-127.2039529340754,57.11261332579541],[-127.20385013365791,57.112432700933546],[-127.20374230121861,57.112256605716006],[-127.20361620760518,57.11209076622816],[-127.20345550193942,57.111942058102194],[-127.20324502966314,57.11182070829981],[-127.20297260500129,57.11173355381022],[-127.20265852084985,57.11166919904793],[-127.20232615894113,57.111615099297445],[-127.2019967484748,57.11155648825037],[-127.20169165729808,57.11148196099963],[-127.2013812886888,57.11140411916828],[-127.20106671910905,57.111324073634215],[-127.20076640293148,57.111237171311934],[-127.20050181522606,57.111136489860755],[-127.20029345777715,57.11101623686413],[-127.20018514633182,57.11085695576713],[-127.20015243799631,57.11067007977648],[-127.20013922525338,57.11047854126428],[-127.20011695256134,57.1102949318167],[-127.20012966185325,57.11010651745166],[-127.20012598326959,57.10992273707645],[-127.20004342197008,57.10976097760198],[-127.20000044732954,57.10974119801197],[-127.19983171190118,57.109665412891935],[-127.19957643348457,57.10953101968694],[-127.19932499220653,57.10938762421097],[-127.19903393016607,57.10929839152603],[-127.19873219824404,57.10923167255754],[-127.19841342324706,57.109181921659406],[-127.19808671654548,57.10914233015805],[-127.1977591091156,57.10910722938033],[-127.1973873209713,57.109080378851054],[-127.19697675121265,57.10906845357365],[-127.19674275307781,57.109020162714124],[-127.19684896414677,57.108913831995885],[-127.19723206267716,57.108905834967125],[-127.19762585127111,57.108876443198795],[-127.1979586861767,57.10884760974601],[-127.19824350678587,57.108769900338956],[-127.19849614819088,57.10865437804494],[-127.1987349830848,57.10852665308765],[-127.19896650748568,57.1083967532178],[-127.19919282232156,57.10826577998729],[-127.19941173824579,57.10812927027832],[-127.19962855172255,57.107991658710624],[-127.19984640484459,57.10785403722419],[-127.20000060932018,57.107762954105745],[-127.2000695879226,57.10772197044429],[-127.20030117301766,57.107594309271654],[-127.2005454670161,57.107476618122305],[-127.2008067068176,57.10737222038753],[-127.20108902423601,57.10728107793733],[-127.20138615178148,57.10720100669735],[-127.20169178690958,57.10712870215106],[-127.20199952179424,57.10705749835903],[-127.20230411344983,57.10698520197607],[-127.20261408735674,57.10691958017605],[-127.20293263943158,57.106863965911714],[-127.20324901942169,57.10680500844077],[-127.2035495267536,57.10673386759854],[-127.20382242318577,57.10663944360881],[-127.20408244804493,57.106529446371134],[-127.2043349165515,57.106409430995576],[-127.2045747426885,57.10628168610605],[-127.20479986065978,57.10614623084567],[-127.20500414350947,57.1060053635002],[-127.20518759138048,57.10585908416906],[-127.20534898741205,57.10570180010184],[-127.2054873940136,57.10553576167831],[-127.2056018240992,57.105363219728],[-127.20568825204059,57.1051875739595],[-127.20574577569344,57.10501219521557],[-127.20577639292227,57.10483594426247],[-127.20578626386131,57.10465652257271],[-127.20578266429084,57.10447610455744],[-127.20577080204451,57.10429576291303],[-127.20575683905513,57.10411431988782],[-127.20574700751352,57.10393283871237],[-127.2057485640533,57.10375237315149],[-127.2057677571413,57.10357398628123],[-127.20582527801392,57.10339860770807],[-127.20592527606505,57.1032273198437],[-127.2060377020817,57.10305703786793],[-127.20613662203606,57.102884639017084],[-127.20623864775258,57.10271221139544],[-127.20634070775527,57.10254090420401],[-127.20643340961918,57.1023674418389],[-127.20650127214631,57.10219308827612],[-127.20653499025399,57.10201680878241],[-127.20653761925506,57.10183745432535],[-127.20652571907154,57.101655992607654],[-127.20651282970626,57.10147566087317],[-127.20651129253616,57.101295224196605],[-127.20650352365686,57.10111372435146],[-127.20649158865344,57.10093114223893],[-127.20648791570856,57.100748483757705],[-127.20650609806611,57.10057122728027],[-127.20655850955282,57.100398137561726],[-127.20670232888102,57.10024101471023],[-127.2069188251798,57.10009554841789],[-127.2070377282651,57.1000003003325],[-127.20710829296742,57.099944727755876],[-127.20719182328425,57.09977583318435],[-127.20723277334602,57.09959948686097],[-127.2072518870124,57.09941885933905],[-127.20725857284492,57.099237226014466],[-127.20726109259853,57.09905451044865],[-127.20726774309809,57.09887175668636],[-127.20728788066393,57.09869111977578],[-127.20732775295629,57.09851366270811],[-127.2073966807825,57.09834042001997],[-127.20749780528627,57.09817248340064],[-127.2076238373831,57.09800879942466],[-127.2077695677765,57.09784717461619],[-127.20792673495751,57.09768768539176],[-127.20808909110141,57.097529268748694],[-127.20825141065262,57.097369731437986],[-127.2084054324175,57.097209149973864],[-127.20854909120138,57.09704754351673],[-127.20869890934269,57.09688475903843],[-127.20885185112604,57.09672306626371],[-127.20899757147322,57.09656144023426],[-127.20912869272414,57.096395466109534],[-127.20923289413548,57.09622749974917],[-127.2092738663246,57.096052273721284],[-127.20930382513279,57.095855854406956],[-127.20937130918402,57.09570279882917],[-127.20942117719578,57.09551516145046],[-127.209422697367,57.095333576313074],[-127.20940466058639,57.095154414110006],[-127.20936604279761,57.09497768432728],[-127.20929551288985,57.09480461278746],[-127.2092012425846,57.094631761277036],[-127.20909255237581,57.094460164176326],[-127.20897770299693,57.09428974489959],[-127.20886802571921,57.09411927762733],[-127.20873672792855,57.09395125222595],[-127.20858380988362,57.093785668629245],[-127.20847011135884,57.093618600788595],[-127.20844812591966,57.09344507933647],[-127.20847462661833,57.093269987967254],[-127.20852894331546,57.09309239732267],[-127.20859669068642,57.09291468224897],[-127.20859777327139,57.09275215526273],[-127.20868594041437,57.09260002954795],[-127.20869657371121,57.09238025298569],[-127.20870521072719,57.09219523994146],[-127.20871345812664,57.09203040503801],[-127.20871674789731,57.09183983755344],[-127.20876387748785,57.09166343436299],[-127.20884613017152,57.091487826515596],[-127.20894085902462,57.09131434462311],[-127.20902311015169,57.09113873670846],[-127.20907129696604,57.09096344448209],[-127.2090594939949,57.09078534585902],[-127.20900533285953,57.090606519033656],[-127.20894393671342,57.090427759264436],[-127.20891457441307,57.09024982343493],[-127.20896685516232,57.090073372609446],[-127.20907495831284,57.08989864600368],[-127.20913143817558,57.089724397833855],[-127.20910479314621,57.08953410810282],[-127.20907276497402,57.08936964678008],[-127.20897942595263,57.08922592818726],[-127.20893601632018,57.08902794825022],[-127.20902966275109,57.08885335576946],[-127.20910156527165,57.08867672317781],[-127.2090897275931,57.088497504374985],[-127.2090479419242,57.088318563180835],[-127.20907641187137,57.08814009161791],[-127.20914822578187,57.08796121829271],[-127.20921492058598,57.087783513202936],[-127.20915705665234,57.08761817081651],[-127.20912430663694,57.087463803659226],[-127.20904064368618,57.08726619714764],[-127.20890629843984,57.08709932200739],[-127.20877306550872,57.08693467805549],[-127.20862954530597,57.08677125012125],[-127.208485037471,57.08660895201145],[-127.20834977857581,57.08644544728977],[-127.2082340215675,57.086278399408734],[-127.20814291750601,57.08610663990753],[-127.20807230368159,57.08593020739141],[-127.20801714862368,57.08575251089429],[-127.2079753874535,57.08557356955761],[-127.20794500927754,57.085395643616884],[-127.20795585392706,57.085215094329314],[-127.2079770569122,57.08503556993153],[-127.20796935486355,57.084856313254456],[-127.20793477757458,57.084676184698594],[-127.20786217318351,57.084502012317884],[-127.20770721320604,57.08433532731599],[-127.20759457049925,57.084168250369224],[-127.2076128455717,57.0839943572806],[-127.20764850151323,57.083814699284],[-127.2076985386315,57.08363266653732],[-127.20776722672979,57.08345270267939],[-127.20785564131722,57.08327591851611],[-127.20796905963931,57.0831067483218],[-127.20811070870808,57.08294852452983],[-127.2082752777737,57.08279681304888],[-127.2084586023776,57.082650531576085],[-127.20865752338118,57.08250746770919],[-127.20886789515032,57.082367659799985],[-127.20908551810696,57.08222890512746],[-127.20930631501254,57.08209236225775],[-127.20952711034883,57.081955819027534],[-127.20974373989905,57.08181819326507],[-127.2099530799698,57.08167839317299],[-127.2101613780335,57.081538602413595],[-127.21036967458149,57.08139881133564],[-127.21057902888079,57.08126013090443],[-127.2107904979257,57.081122551301746],[-127.21100508914952,57.080986063162364],[-127.21122177858777,57.08085067598029],[-127.21144368992088,57.08071748152646],[-127.2116907424097,57.08059526108768],[-127.21196916687086,57.080486198210046],[-127.21223613781133,57.08037387880162],[-127.21244673239698,57.08024190861643],[-127.21257910641094,57.080084887053935],[-127.21269263598454,57.079920195014346],[-127.21279467741311,57.07975112653286],[-127.21288632547292,57.07957991305128],[-127.21297064967413,57.07940540524725],[-127.21304869286266,57.07922871423356],[-127.21312258783597,57.07905094097991],[-127.21319436592354,57.07887206659719],[-127.21326619523964,57.07869431251152],[-127.2133411474502,57.07851765014362],[-127.21342026291484,57.0783420698072],[-127.21350357697204,57.07816869196098],[-127.21358994301868,57.07799416487811],[-127.21367636018836,57.07782075807271],[-127.2137627246682,57.077646230918994],[-127.21384704064593,57.07747172279057],[-127.21392721090007,57.077297253214056],[-127.21400323311217,57.07712170142393],[-127.2140720570664,57.076947337416506],[-127.2141336120552,57.07677192027156],[-127.2141661073822,57.07659116971172],[-127.21409061154812,57.07639125032974],[-127.21406624142776,57.07617516383713],[-127.21421501320356,57.076113255753754],[-127.21447445643253,57.076058162391526],[-127.21485646681076,57.07605908723194],[-127.2151892918502,57.076071677259065],[-127.2155174966594,57.07610112143009],[-127.21584589819012,57.07613728771689],[-127.21617189804327,57.07616226763015],[-127.21649387149158,57.07615814361651],[-127.2168058850351,57.07610031356835],[-127.21707158790342,57.07604739818524],[-127.21742367627247,57.076048594770796],[-127.21775154648584,57.076067949297],[-127.21808049288396,57.07608841374528],[-127.21840943963244,57.07610887736421],[-127.21873831565199,57.076127099226284],[-127.21906708533574,57.07614195886827],[-127.21939574859721,57.076153456291],[-127.21972419864488,57.07615823010456],[-127.22005243530624,57.07615628031056],[-127.22038042282149,57.07614648644746],[-127.22070927251876,57.07613107970491],[-127.2210379274057,57.07611006997259],[-127.22136555811318,57.07608906900151],[-127.22169422879519,57.07606805746117],[-127.22202295387525,57.07604928617312],[-127.22235183772695,57.076034995752586],[-127.22268188777005,57.07602517675349],[-127.22301093297772,57.076016487138624],[-127.22334098269341,57.076006666471635],[-127.22367110360712,57.07599908589395],[-127.22400118869757,57.075990384018496],[-127.2243313450437,57.075983922231806],[-127.22466051317467,57.075978589686436],[-127.22499077647396,57.07597548761627],[-127.22532003512222,57.07597351494709],[-127.22565040554774,57.0759737725919],[-127.22597881908466,57.075977410191],[-127.2263083445333,57.075983278102704],[-127.2266370086024,57.07599475727511],[-127.22696581598554,57.076010717464825],[-127.2272936906787,57.0760300480008],[-127.22762168961064,57.07605273894102],[-127.22794970822493,57.076076549673296],[-127.2282767392448,57.076101489685605],[-127.22860377068916,57.07612642887825],[-127.22892977873813,57.076151376899894],[-127.22925580654356,57.076177444723655],[-127.2295818871604,57.0762046320379],[-127.22990798759083,57.07623293915391],[-127.23023410501496,57.07626124529924],[-127.23055918258315,57.07628956044697],[-127.23088532034818,57.07631898558161],[-127.23121043478817,57.07634841956764],[-127.23153554972619,57.07637785274397],[-127.23186166957892,57.076406154822415],[-127.23218678550423,57.07643558637638],[-127.23251288981326,57.076463886983554],[-127.23283800672579,57.07649331691538],[-127.23316312413627,57.07652274603733],[-127.23348931835763,57.07655328496877],[-127.23381443677427,57.07658271246828],[-127.23413955568888,57.076612139157916],[-127.23446467510142,57.07664156503777],[-127.23479078283592,57.07666985995319],[-127.23511687154632,57.07669703343774],[-127.23544387646949,57.07672083502886],[-127.23577378962835,57.07673900423914],[-127.23610264321844,57.07675606186064],[-127.23643054537817,57.07677536927942],[-127.23675665569559,57.07680365928184],[-127.23707691512577,57.076842091191914],[-127.23739531100136,57.07688726481535],[-127.2377137963264,57.076934678424614],[-127.23803023783391,57.07698323147054],[-127.23834673276684,57.077032904052565],[-127.2386632842475,57.077084816943184],[-127.2389788488706,57.077137859253945],[-127.2392944143649,57.07719090080316],[-127.23960899303334,57.07724507178218],[-127.2399235560751,57.077299242161544],[-127.24023919653416,57.077354522348635],[-127.24055377787398,57.077408691055226],[-127.240868343587,57.07746285916214],[-127.24118391435837,57.077515896151716],[-127.24149846214642,57.077568942127186],[-127.24181303050298,57.077623107961905],[-127.24212761626019,57.077677272882504],[-127.2424411987642,57.07773256741712],[-127.24275481841217,57.07778898165837],[-127.24306743485634,57.07784652552312],[-127.24338003249092,57.077902948025155],[-127.24369265079858,57.07796049039604],[-127.2440053228346,57.07801915232066],[-127.24431691915676,57.078076702967],[-127.24462855270873,57.07813537332944],[-127.24494121108259,57.078194033175414],[-127.24525281022456,57.07825158159294],[-127.245565487011,57.078310239789516],[-127.24587708803028,57.07836778672029],[-127.24618975020121,57.078426443582956],[-127.24650239348944,57.078483979082606],[-127.24681399732074,57.07854152378219],[-127.24712666233556,57.07860017840604],[-127.24743930844025,57.078657711667],[-127.24775095147156,57.07871637459309],[-127.24806358294217,57.078773906520325],[-127.24837623186322,57.07883143754255],[-127.24868886520619,57.0788889679757],[-127.24900147957494,57.078945377046026],[-127.24931511875221,57.079001775560705],[-127.24962771844372,57.079058183292744],[-127.24994232696417,57.079112329419175],[-127.25025691985687,57.079166474947],[-127.2505735215157,57.07921835884946],[-127.2508910749667,57.07926799124951],[-127.25121054759173,57.07931312124332],[-127.25153089887128,57.079353758800885],[-127.25185510390689,57.079385392125225],[-127.2521831294512,57.079408021504],[-127.25251212274252,57.0794283991517],[-127.2528391982134,57.07945327762903],[-127.25316048316162,57.079490539822146],[-127.25347800564758,57.07953904547633],[-127.25379262353053,57.07959318233373],[-127.25410530775443,57.079651820271636],[-127.25441804603074,57.07971157776019],[-127.25473169941174,57.079767963280084],[-127.2550472350409,57.079818725898505],[-127.25536856179725,57.079857103118734],[-127.25569962496213,57.07987745286126],[-127.25603359357737,57.07989216973816],[-127.25636255641538,57.07991141722396],[-127.25667982987419,57.07995207190323],[-127.25698239950225,57.080016404541674],[-127.25727713623623,57.08009426172191],[-127.2575669782661,57.08018001112016],[-127.25785287629179,57.08027140198218],[-127.2581388490626,57.080365033135884],[-127.25842474982524,57.080456422756434],[-127.2587146705671,57.08054441053911],[-127.25901049202594,57.080623374246294],[-127.25931427841101,57.08069329390252],[-127.25962507908906,57.08075642025261],[-127.25993980932151,57.0808139038567],[-127.26025853877235,57.080866864822475],[-127.26057825627655,57.080918694658166],[-127.26089801141683,57.08097164416807],[-127.26121573982314,57.08102573331596],[-127.26152841024019,57.081083233061776],[-127.26183611284588,57.08114638419417],[-127.26213581650181,57.0812174577083],[-127.26242545693688,57.08129647364376],[-127.26270315398487,57.0813890543352],[-127.26296379188932,57.08149637021662],[-127.26321343705366,57.08161500019968],[-127.26345305637459,57.08174269335898],[-127.26368869582681,57.081874907919534],[-127.26392329641827,57.08200713215041],[-127.26415990585697,57.08213709488945],[-127.26440351299772,57.08226026450507],[-127.26465809917842,57.082372119095595],[-127.26492667507722,57.082469266951584],[-127.26521322571377,57.082548306881655],[-127.26551774691562,57.082608117987704],[-127.2658362239885,57.08265322235991],[-127.26616366789285,57.08268815158331],[-127.26649712115996,57.08271741756407],[-127.26683161543689,57.082746672586445],[-127.26716108857408,57.082780458799604],[-127.2674836240532,57.0828232781275],[-127.26779322999425,57.082880792943904],[-127.26809096767086,57.08295411384204],[-127.26838388643132,57.08303756827709],[-127.26866886494078,57.08313118664732],[-127.26894692338746,57.08323383826719],[-127.26921285533895,57.08334445303432],[-127.26946662383,57.08346191056919],[-127.26970510331279,57.0835851205564],[-127.26992628677195,57.08371634425512],[-127.27012723379028,57.083860093655495],[-127.27031505086524,57.084012937189996],[-127.2704937724457,57.08417147316869],[-127.27066741645571,57.08433230003597],[-127.27084201181711,57.08449087580116],[-127.27102371520161,57.08464601964584],[-127.27121546292469,57.08479209883402],[-127.2714223546123,57.08492794279],[-127.27165147628598,57.08504899908136],[-127.27190580525887,57.08515187609951],[-127.27217724784069,57.08524113590677],[-127.27246078250607,57.08532131065408],[-127.27275545932191,57.0853946511661],[-127.27305811934119,57.08546006737911],[-127.2733689068763,57.08552092028205],[-127.27368576133567,57.08557835075646],[-127.27400557331858,57.085631268309356],[-127.27432947829608,57.08568302428107],[-127.2746533841463,57.0857347794505],[-127.27497729086922,57.08578653381759],[-127.27530024879522,57.085840538306584],[-127.2756191734302,57.08589794391086],[-127.2759330945057,57.085959880972396],[-127.27623998467536,57.086027490185266],[-127.27654088882828,57.08610188219482],[-127.27683874264841,57.08617742420599],[-127.27713568531976,57.08625633693516],[-127.2774295612006,57.08633639986028],[-127.27772351284536,57.086418703039094],[-127.27801543834403,57.08650214624581],[-127.27830740239756,57.08658670925986],[-127.27859832713139,57.08667128182607],[-127.27888826636028,57.086756984245106],[-127.27917824419512,57.08684380648038],[-127.27946818601981,57.086929507621186],[-127.27975816646752,57.08701632857821],[-127.28004811088796,57.08710202844062],[-127.28033905987404,57.087186596994066],[-127.28062999362331,57.08727116506581],[-127.2809229725356,57.08735459160047],[-127.28121589883021,57.08743689718894],[-127.2815118569816,57.087516930704815],[-127.2818117962877,57.08759244115259],[-127.28211476735058,57.087665679480686],[-127.28242071620816,57.087735525374946],[-127.28272769029488,57.08780536048422],[-127.28303364137926,57.08787520494803],[-127.28333860689068,57.08794617922889],[-127.28363950237379,57.088019434511324],[-127.28393643579977,57.0880972114089],[-127.28422734690342,57.088180651058124],[-127.28451122816382,57.08826976342278],[-127.28478608983237,57.0883668097971],[-127.28505691925665,57.088467257810066],[-127.28532374951361,57.08857110716196],[-127.28558758826254,57.08867834794742],[-127.28584839803946,57.08878785973014],[-127.28610723604655,57.088899632105615],[-127.28636403175125,57.089012544956745],[-127.2866188181955,57.08912659797],[-127.28687159988606,57.08924291193862],[-127.28712439962601,57.08935922526413],[-127.28737619777223,57.089476668835424],[-127.2876279974581,57.089594111930744],[-127.28787979868362,57.08971155454991],[-127.28813156387241,57.08982787623764],[-127.28838539544917,57.08994417705528],[-127.2886402151467,57.09005934681607],[-127.28889600187132,57.09017226489514],[-127.28942258183841,57.090321735040554],[-127.28971588757736,57.09041410581693],[-127.29000921124603,57.0905064757766],[-127.29030344759299,57.0905954735866],[-127.29059948666074,57.0906766071224],[-127.29090034206091,57.090747604890716],[-127.29120692014682,57.09080397457135],[-127.29152003988841,57.09084010386959],[-127.2918388650413,57.090861605154934],[-127.29216151881472,57.09087410111373],[-127.29248803868995,57.09087871217211],[-127.2928163972705,57.0908765792202],[-127.29314663210677,57.09086882269885],[-127.29347980498115,57.09085655289299],[-127.2938128431895,57.090839800254585],[-127.2941468297958,57.090820795696715],[-127.29448074054656,57.09079954937567],[-127.29481357244376,57.090777192076],[-127.29514541754341,57.09075596455023],[-127.2954752351658,57.09073587714098],[-127.29580302534352,57.09071692986363],[-127.29613073957672,57.09069574085553],[-127.29645735361873,57.090672320296264],[-127.29678391291371,57.09064777863047],[-127.29711041263243,57.090620995076776],[-127.29743685752815,57.09059309041745],[-127.29776223990532,57.09056407467788],[-127.29808758392342,57.0905339376743],[-127.29841396813454,57.090503789501554],[-127.2987393111307,57.09047365087422],[-127.29906469151226,57.0904446318887],[-127.29939109558401,57.090415601890435],[-127.29971651289631,57.090387701733036],[-127.30004511116323,57.0903620107188],[-127.30038119334314,57.09034409008121],[-127.30072155674024,57.09033060920762],[-127.30106409863726,57.09032046820735],[-127.30140762656778,57.090309195638234],[-127.30174802726945,57.090296832538876],[-127.302085148781,57.090278897127426],[-127.30241484469637,57.09025543082666],[-127.3027348980051,57.09022197250886],[-127.3030442628153,57.09017741186022],[-127.30333870008812,57.090119549647056],[-127.3036170878482,57.090045034689325],[-127.30386989750434,57.08994723734642],[-127.3040991936408,57.089826137129435],[-127.30431037471239,57.08968840517341],[-127.30450873015835,57.089538471997265],[-127.30470063968583,57.08938075717666],[-127.30489249305434,57.08922192180694],[-127.30508756451655,57.08906641645232],[-127.3052943036599,57.08891976069869],[-127.3055170139708,57.088787515569514],[-127.30576204224923,57.08867410076876],[-127.30603472777563,57.088583946031086],[-127.30633183459008,57.08851372109675],[-127.3066480187699,57.08845787517707],[-127.30697382835922,57.08841201951731],[-127.30730382135957,57.08836724194132],[-127.3076316560194,57.08832024349954],[-127.30794883920449,57.0882632635543],[-127.30824899075674,57.08819188284898],[-127.30851810360271,57.08808830872039],[-127.30876477988524,57.08796254253189],[-127.30900823463523,57.08783344570911],[-127.30926789060243,57.08772548159518],[-127.30956081720997,57.087654170352316],[-127.30987087186043,57.0876006197383],[-127.31019056911543,57.087557059003935],[-127.31051778972545,57.087522388540854],[-127.31084944507674,57.08749663933327],[-127.3111833559336,57.08747647076158],[-127.31151543125925,57.0874630447753],[-127.31184559469907,57.08745412049531],[-127.31217575798543,57.08744519537964],[-127.31250690693233,57.087435138677414],[-127.31284013693825,57.08742506018722],[-127.31317439086747,57.08741497053579],[-127.3135097070331,57.08740599016137],[-127.3138451162076,57.08739924965046],[-127.31417952298317,57.087393639207306],[-127.31451296573316,57.087390279285316],[-127.31484657835522,57.0873914001268],[-127.31517818649306,57.08739478199078],[-127.31550789998498,57.08740266545021],[-127.31583466181301,57.087415061183606],[-127.31615955109639,57.087433079158444],[-127.31648148895812,57.087455609446465],[-127.31679958315593,57.087486023576844],[-127.3171137624216,57.08752320146673],[-127.31742429051646,57.087573865480984],[-127.31773003373965,57.08763578543688],[-127.31803091544401,57.087706720479886],[-127.31832901706348,57.08778664961004],[-127.3186242618624,57.087873331958264],[-127.31891551588514,57.08796453734475],[-127.31920383635575,57.08806025510558],[-127.31948914637526,57.088158244371535],[-127.31977237657667,57.088256254078374],[-127.32005454559587,57.088353153096584],[-127.32033358863471,57.08844896233248],[-127.32061981298108,57.088543577452135],[-127.32091020681972,57.08863927057733],[-127.32120174185597,57.088738314024],[-127.32148824033483,57.08884077037202],[-127.32176557270905,57.088946681500445],[-127.32202966999319,57.08905833037875],[-127.32227541701182,57.089176889776276],[-127.32249970825283,57.089302391283226],[-127.32269640427809,57.08943601810129],[-127.3228593876276,57.08958007406711],[-127.32298362556493,57.08973909369621],[-127.32307621509935,57.08990852177126],[-127.3231453381006,57.09008603369624],[-127.32319811932675,57.09026931556406],[-127.32324277389172,57.0904560423875],[-127.32328634958768,57.090641659332256],[-127.32333600456776,57.09082385210793],[-127.32339685429262,57.091001447973454],[-127.32343913690265,57.09117923220777],[-127.32346905247162,57.09135826276226],[-127.32350104976884,57.09153727221551],[-127.32353303084479,57.0917162818517],[-127.32355572820727,57.09189538569833],[-127.32355269927957,57.092076992261184],[-127.32351474238936,57.092264557407724],[-127.32348903708188,57.092447514914504],[-127.32353091907326,57.09261409500001],[-127.32371964598643,57.09275564752778],[-127.32401256927793,57.0928636380058],[-127.32431809478113,57.09291769962606],[-127.32465882036676,57.09291424030312],[-127.32498800336195,57.0929052931261],[-127.3253168217069,57.09288626126407],[-127.32566756253479,57.09287373083766],[-127.32597613363122,57.09286611145558],[-127.32630767393009,57.09286610370164],[-127.32663581536897,57.092857162948604],[-127.32696345339804,57.09283365556714],[-127.32728875497907,57.09280232524931],[-127.32761057948952,57.09275982109818],[-127.3279247801594,57.092706185348696],[-127.32823461748337,57.09264586821917],[-127.32854219506136,57.09257996915772],[-127.32884651078805,57.09250961922808],[-127.32914972362137,57.09243703813688],[-127.32945083155343,57.0923633569436],[-127.32974535550268,57.092278533754715],[-127.3300311138927,57.09217922833518],[-127.33031810558846,57.09208551390774],[-127.33061629692548,57.09201746393813],[-127.33093039495671,57.091990722096966],[-127.33125577168414,57.09199188541641],[-127.33158798133879,57.092010911631604],[-127.33192343591422,57.092034387237696],[-127.33225663161812,57.09205228084928],[-127.33258602218675,57.092050037341544],[-127.33291009390527,57.092013101268115],[-127.33323668015944,57.09198958878154],[-127.33356795708211,57.0919817193027],[-127.33389862118376,57.091986184504535],[-127.33422379113077,57.0920108802114],[-127.33454354529108,57.092058047352616],[-127.33485251885004,57.092122136661544],[-127.33514667666317,57.09220543120357],[-127.33544473192623,57.09228196014893],[-127.3357645677789,57.09233136519371],[-127.33609327631487,57.092368349324005],[-127.33640396904318,57.09242232983378],[-127.33666675758619,57.09252387586107],[-127.33689158340542,57.09266279824586],[-127.33716236177,57.092756415541174],[-127.3374679927151,57.09278354522471],[-127.33779245969474,57.09281720609827],[-127.33812094937569,57.092818320448146],[-127.33842985692559,57.092880160434134],[-127.33873002801866,57.09295778116831],[-127.33900814938433,57.09305468189806],[-127.33922252196665,57.093189224353964],[-127.33937785367215,57.093349031238404],[-127.33958113685587,57.0934915329276],[-127.33979459036804,57.09362944650299],[-127.34002521557969,57.09375597492878],[-127.3403193971219,57.09383925790637],[-127.34053071194752,57.09397495064162],[-127.34072688409809,57.094120886293275],[-127.34094750297253,57.09425648279406],[-127.34116793471343,57.09435733465969],[-127.34154414596318,57.09439381699108],[-127.34185503584816,57.09445226620242],[-127.34212916322427,57.094552564194686],[-127.34243626108105,57.09462113867715],[-127.34271119694574,57.09471470208916],[-127.34293690235924,57.09484800134756],[-127.34322100820135,57.094938106796185],[-127.34353200611554,57.09499991353459],[-127.34384500824616,57.09505945720614],[-127.34410972623776,57.09515648556035],[-127.34431606404338,57.09529670717231],[-127.34461365157908,57.095358649579225],[-127.34484540582622,57.09548739997248],[-127.34513754594629,57.095570693478464],[-127.34541271418597,57.095670974092194],[-127.3457393989291,57.09567881321891],[-127.34606525908983,57.09566312222517],[-127.34638120287957,57.095718146193526],[-127.34669118788288,57.09577995600757],[-127.34699548933169,57.09585639481069],[-127.34717332467969,57.09597897281511],[-127.34745087864282,57.096117333474325],[-127.34774933917456,57.096350749790076],[-127.34806611870535,57.09640015690902],[-127.34811896579451,57.09646349926281],[-127.34840010772722,57.096556986963485],[-127.3486863435676,57.09664817972188],[-127.34896249093572,57.096746201281654],[-127.3492356289042,57.096846495100635],[-127.34951280344247,57.09694450491659],[-127.34980000691418,57.09703344360513],[-127.35010308665606,57.09710428378369],[-127.35026488247361,57.097151926829774],[-127.35073001326981,57.09721884665609],[-127.35104001738367,57.09728064620562],[-127.3512300112313,57.097425510127785],[-127.35135071175924,57.09759687111139],[-127.35158206830907,57.09771328487362],[-127.3518723719373,57.09780218704407],[-127.35242976464224,57.09770225888319],[-127.35272880393408,57.09762854509786],[-127.35299679906244,57.09752376870645],[-127.35325096563815,57.097407926672425],[-127.35349142203809,57.0972843804058],[-127.35368777345857,57.09713999513118],[-127.35385686418599,57.09698468392969],[-127.35400504155591,57.09682174359439],[-127.3541075299547,57.096652552199025],[-127.35415189288932,57.096474997239696],[-127.35416712898102,57.09629214035305],[-127.35419591525014,57.09611250539356],[-127.35429027537444,57.09594676083537],[-127.35451055542124,57.095807730219946],[-127.354684887099,57.095654605288274],[-127.354869701131,57.09550585466939],[-127.35507630781312,57.095360239990015],[-127.35531271090323,57.09523897415798],[-127.35561204188457,57.09517421741489],[-127.35594221747913,57.095134918967204],[-127.35625517585436,57.09507562335206],[-127.35655946057129,57.0950052086611],[-127.35683810867793,57.094910401165635],[-127.35709537533675,57.094795640171135],[-127.35736658655095,57.09469530463885],[-127.35766226594507,57.09461488921864],[-127.3579676248471,57.09454558087445],[-127.35827520622436,57.094480732072036],[-127.3585859948091,57.09441921169014],[-127.3588957581275,57.094357701239815],[-127.35920333643317,57.09429285025823],[-127.35950333730467,57.09421798984835],[-127.3597989523591,57.09413644934851],[-127.36010113493346,57.09406492736061],[-127.36041538025401,57.09401345419619],[-127.36073716169844,57.09397086847287],[-127.3610568144965,57.093926062455246],[-127.361373082718,57.09387344500804],[-127.3616860853617,57.09381637746687],[-127.36200327338689,57.09376038632281],[-127.3623001588463,57.093685551936325],[-127.36250073126573,57.09354559256699],[-127.36268745062492,57.09339344822707],[-127.36294681093004,57.09327977451459],[-127.36322832113626,57.09317931903647],[-127.36340196312769,57.0930373979825],[-127.36347312364924,57.09285955975793],[-127.3635410584614,57.092678392673676],[-127.36369044105616,57.092522153754054],[-127.36388031947365,57.09237221639677],[-127.36409423008985,57.09222987342522],[-127.3643293059063,57.092101879807046],[-127.36458364127763,57.09199273876154],[-127.36487511508646,57.09191122991943],[-127.3651952922047,57.091852957903264],[-127.36552222081342,57.09181030633423],[-127.36584577591618,57.09178898543039],[-127.36617738656682,57.091791117230756],[-127.36651007783841,57.09179435772004],[-127.36684233054942,57.09178527259203],[-127.36717538451855,57.09176945311027],[-127.36749098481447,57.09172803615638],[-127.36777172687673,57.09163542475706],[-127.36804050371099,57.091526125454344],[-127.36833736013915,57.09145127745163],[-127.36865157303896,57.09139978454808],[-127.36897436416245,57.0913571676716],[-127.3692982586472,57.09131678011185],[-127.36961894351076,57.09127306288549],[-127.36995127253631,57.09123706854293],[-127.370273980903,57.09119220759178],[-127.37055724048304,57.09111301390086],[-127.37078402843228,57.09098509553497],[-127.37098627727659,57.0908350176392],[-127.3712108372948,57.09070263853302],[-127.37148635249264,57.09060895312724],[-127.3717947035992,57.090538459716484],[-127.37211395469305,57.09048354284256],[-127.37243390900196,57.09044879311659],[-127.37276726944478,57.09044192282102],[-127.37309784468663,57.09044404780732],[-127.37342761967341,57.09045290549556],[-127.37375653094769,57.0904662548574],[-127.37408552261883,57.09048184425062],[-127.37441365076847,57.09050192532596],[-127.37474180284575,57.090523126180464],[-127.37507155529619,57.09053085910962],[-127.37539852332894,57.09054758738875],[-127.37572414917443,57.09058450436194],[-127.37603993308389,57.09063497458853],[-127.37633603287541,57.09071255222946],[-127.37661832237474,57.090808208613666],[-127.37690458234512,57.09089933908449],[-127.37719286836914,57.09098932670384],[-127.37750472871222,57.09104543914774],[-127.37783725370001,57.09104416903223],[-127.37812348154924,57.090961564832064],[-127.37839960381191,57.09085664969636],[-127.3786823780598,57.09076399305965],[-127.37896621533712,57.09067244541853],[-127.37925001102663,57.09057977673722],[-127.37953065958105,57.09048601985872],[-127.37984464244101,57.09039975574414],[-127.38005301306579,57.09027762004827],[-127.38011407283827,57.0901088459312],[-127.38012811841301,57.089924877274626],[-127.38013899438971,57.08973870046754],[-127.38013862097924,57.08964231099852],[-127.3802740168556,57.08938644461724],[-127.38038047551142,57.089216069207765],[-127.38049938582999,57.08904780364981],[-127.38062565082906,57.088882822708456],[-127.38075600395975,57.08871667752563],[-127.38089160662672,57.08855271835279],[-127.38102095714808,57.088387704387785],[-127.38112843382424,57.08821731764799],[-127.38120688273628,57.08804387565051],[-127.3812521345671,57.08786630175081],[-127.38128491725178,57.08768661819384],[-127.38130841682342,57.0875070329564],[-127.38132570564362,57.087327513508285],[-127.38131921865829,57.08714712501773],[-127.38129208521288,57.086966955197376],[-127.38134886034238,57.08679374275919],[-127.3814645896391,57.08662326847623],[-127.38157622895851,57.08645395827434],[-127.38163703416193,57.08627846136253],[-127.38165742605996,57.08609890913686],[-127.38166538989331,57.085918367730216],[-127.38168269284719,57.085738848265365],[-127.38170721339783,57.085559252360284],[-127.38173173371925,57.085379656473734],[-127.38176042322763,57.08520113728569],[-127.38179530611139,57.08502255249699],[-127.38183423713777,57.08484168312915],[-127.38187196605494,57.084656343105024],[-127.38195040433905,57.08448290110535],[-127.38211978504326,57.084339879187375],[-127.38237892956965,57.084223926922874],[-127.38267820172162,57.08413220743641],[-127.38298036749606,57.084063994422195],[-127.38329441965489,57.084010225683635],[-127.38361602774636,57.083965342825685],[-127.38393976378678,57.08392267828903],[-127.3842592655331,57.08387669533247],[-127.38457660475079,57.08382849284337],[-127.38489614534403,57.08378362875163],[-127.38521905646033,57.08374657402591],[-127.38554423348462,57.083715098676336],[-127.38587063605848,57.0836892137418],[-127.38619936176188,57.083670028399446],[-127.38652943463394,57.0836597947103],[-127.38686193584738,57.08365962202055],[-127.38719443705781,57.083659448483196],[-127.38752350954981,57.08365034376612],[-127.38784583829637,57.083625618061276],[-127.38815677510533,57.08357187067328],[-127.38845870028443,57.08349692229889],[-127.38876156724685,57.08341972148609],[-127.38907225802572,57.083359249404005],[-127.38939158685076,57.08330877221567],[-127.38971655408837,57.0832716843763],[-127.39004237207908,57.0832581245375],[-127.39037090311099,57.08326246858707],[-127.39069983982857,57.08327801600218],[-127.39102992249153,57.08329691292441],[-127.39135894093147,57.083314699516336],[-127.39168867543893,57.08332351082361],[-127.39201910926774,57.08332334701693],[-127.3923485838295,57.083325434318695],[-127.3926786029884,57.08334208605547],[-127.3929991368542,57.083382376175145],[-127.39331402283153,57.083437296938264],[-127.39362799116242,57.08349558931725],[-127.39394278113886,57.08354826790621],[-127.39426499237484,57.08357732849444],[-127.39459724878701,57.08357041357626],[-127.394921549336,57.08360057106303],[-127.39524320958887,57.08364308538385],[-127.39555115193531,57.08370592107098],[-127.39586314280832,57.08376647100775],[-127.39616014801273,57.0838406308785],[-127.3964293348165,57.0839453510011],[-127.39674406735834,57.083995781833615],[-127.39706767517941,57.08403490830428],[-127.3973912836596,57.084074033973216],[-127.39772344093953,57.08409289184855],[-127.39795900728504,57.08398276508516],[-127.39814347525555,57.08383059320105],[-127.39835003475832,57.08368939274646],[-127.39855980354466,57.0835515201124],[-127.39876953002886,57.08341252673772],[-127.3989792549956,57.08327353303966],[-127.39918583272484,57.083133451912005],[-127.39939344941948,57.08299335930717],[-127.39960421030894,57.08285435348215],[-127.39982135052992,57.08272088311466],[-127.4000000790053,57.082638263160845],[-127.40007321353906,57.08260497329955],[-127.40036977523609,57.08252557123764],[-127.40068260312667,57.08246729002824],[-127.40096207531083,57.08237237818086],[-127.40123410815988,57.08227194138426],[-127.4015039690938,57.08216816478946],[-127.4017706419816,57.082062180185865],[-127.40203727250781,57.081955074630585],[-127.40230394244551,57.08184908895293],[-127.40256309105908,57.081735337630604],[-127.40283636021319,57.08164048842049],[-127.40316242263536,57.08160559676481],[-127.40346136203277,57.08153512883237],[-127.40372564559274,57.081646611657106],[-127.40401574365927,57.081729794696585],[-127.4043207850006,57.081798245088315],[-127.4046189791,57.08187685622354],[-127.4049402668746,57.081909262853955],[-127.40524432834411,57.081978842538874],[-127.4055483909149,57.08204842151848],[-127.40586034307847,57.08210782705713],[-127.40617523698904,57.08216271672143],[-127.40649107369195,57.082215353758144],[-127.40680397054415,57.08227250517741],[-127.40711196184701,57.08233643392261],[-127.40741202498856,57.082409414362324],[-127.40770816575966,57.08248804074741],[-127.4080023665374,57.08257004999179],[-127.40829558569995,57.08265319004752],[-127.40858878961626,57.082736329627444],[-127.4088849764063,57.08281607377251],[-127.40918410491031,57.08289130204878],[-127.40948524138267,57.08296538709771],[-127.40978837772128,57.083037208135],[-127.41009249802316,57.083107896987656],[-127.4103946372831,57.08318084828604],[-127.41069475439897,57.083254941631274],[-127.41099189121424,57.08333242912006],[-127.41128408218441,57.08341557375976],[-127.41157024575438,57.08350326643306],[-127.41184848224401,57.08360001118016],[-127.4121217731777,57.083702413197],[-127.41238799646212,57.083809374638335],[-127.41264917540148,57.08391975277493],[-127.41290528532828,57.084032427045976],[-127.41314537549991,57.08415872472907],[-127.41335697662636,57.084296539322985],[-127.41348480063839,57.084458799624045],[-127.41359537428679,57.084629092817],[-127.41376530856509,57.08478529219467],[-127.41399405965142,57.084911711375746],[-127.41425220341401,57.08502324028716],[-127.41452248833528,57.085127911874466],[-127.4147907514555,57.085233725717785],[-127.41505999879413,57.08533840749417],[-127.41533020557003,57.085440836604874],[-127.41559542581378,57.085547802745694],[-127.41584961456397,57.08566385501543],[-127.41607135000966,57.08579595123037],[-127.41623816959954,57.08595106063697],[-127.41639379231118,57.08611077490226],[-127.41660026261779,57.08624864038892],[-127.41685758900827,57.08636577762137],[-127.41709242949607,57.08648876298926],[-127.4171814209384,57.08666152983364],[-127.41703046209241,57.086824574206425],[-127.41713712850986,57.08702853327372],[-127.4173554034761,57.08706651265124],[-127.4176965647232,57.08707625534562],[-127.41802557649919,57.08706483282877],[-127.41835419087981,57.087042205166],[-127.41868059957945,57.08701623807107],[-127.41900694157357,57.08698802915352],[-127.41933215971483,57.08695758991662],[-127.41965741875026,57.08692827028284],[-127.42000014694688,57.08692453952217],[-127.42030557584762,57.08688982982948],[-127.4206390920611,57.08686041782123],[-127.42096836631649,57.08685571018094],[-127.42129878891606,57.08685435178838],[-127.42162821238941,57.08685412431272],[-127.42195867642859,57.08685388466127],[-127.4222890574912,57.086851403347964],[-127.42261935551944,57.08684668037382],[-127.42295332614772,57.08682958698311],[-127.42328717193298,57.086809131501994],[-127.42361730337542,57.08679992435354],[-127.42393798378868,57.08681435771297],[-127.42424157841704,57.08686932800281],[-127.42453200964346,57.0869591881913],[-127.42481856232703,57.08705581531564],[-127.4251178797448,57.08713436851394],[-127.42543593106014,57.087189178128924],[-127.42573085545482,57.08726105276567],[-127.42595680498655,57.087394207603744],[-127.42619993951236,57.087517086379926],[-127.4264561131615,57.08762973433483],[-127.4267522499076,57.08770607695181],[-127.42706242425248,57.08777105666384],[-127.42732256493726,57.087879176113724],[-127.42757680453748,57.08799520572513],[-127.42786810955997,57.088080565704644],[-127.42816343679641,57.088162518411025],[-127.42842654701415,57.08826724063622],[-127.42866763026412,57.088390137500966],[-127.42890267113968,57.08851758361238],[-127.42914375748394,57.088640479619464],[-127.42939292095434,57.08875880322355],[-127.42965315829348,57.08886915892616],[-127.4299572361715,57.088936440522765],[-127.43026730070811,57.08899805143774],[-127.4305754266941,57.08906304549727],[-127.43121159735274,57.089200659012945],[-127.43140011852623,57.089243425174175],[-127.43146675301101,57.089285286980314],[-127.4317649772285,57.08936159565021],[-127.43208572759212,57.0894051511227],[-127.43241222984165,57.089436313083425],[-127.43272407455464,57.089490052629706],[-127.43303022748717,57.08955730441505],[-127.43335189612469,57.08959748411505],[-127.43367360725641,57.08963878343394],[-127.43399238099222,57.08968459774277],[-127.43431117200655,57.08973041109268],[-127.43463188648713,57.08977283990586],[-127.43495541408437,57.089807390896055],[-127.43527998291034,57.089841929634375],[-127.43559588072848,57.089893376072325],[-127.43590892528385,57.08995157839416],[-127.436235148763,57.09000290964284],[-127.43654825360339,57.090062230663705],[-127.43681515205213,57.090156806941266],[-127.43702778602609,57.09029121103078],[-127.43720816466033,57.09044726676337],[-127.4373751736523,57.09060459047376],[-127.43749830177626,57.09077584804601],[-127.43764871084738,57.09093111265462],[-127.43792512780412,57.09103118627828],[-127.43835990970163,57.09111270013917],[-127.4386847277259,57.09107100846097],[-127.43871016887468,57.090950794431805],[-127.43877474039957,57.090771863415256],[-127.43900051025874,57.090650560497046],[-127.43923536867345,57.09052355254147],[-127.43949365222548,57.090415340497145],[-127.43980746710062,57.09035583341957],[-127.44012042490438,57.09030081853357],[-127.44040621904199,57.09021023490151],[-127.44067498922337,57.090106388177986],[-127.44094160910367,57.090000322899535],[-127.44120822751162,57.08989425708423],[-127.44147910013201,57.08979150632344],[-127.44175043392927,57.08970107949941],[-127.44199804456433,57.08958401340234],[-127.44232058494912,57.089509832386845],[-127.4426160463764,57.089429224808136],[-127.44290348593597,57.08930050773803],[-127.4431482219419,57.089272020208995],[-127.44349235977221,57.08925027835813],[-127.4436997191896,57.08921659903562],[-127.44415184126578,57.08923737430127],[-127.44448191706321,57.08925389522117],[-127.44480611007066,57.089223403770035],[-127.44513251940018,57.08919737044925],[-127.4454589869696,57.089172456535955],[-127.44578522672776,57.08914193995629],[-127.44611039967828,57.089110313508755],[-127.44643711903122,57.08909211958783],[-127.44676781316053,57.08909741911966],[-127.44709772003128,57.0891094517946],[-127.44742668744655,57.08912373581149],[-127.44775738198454,57.08912903283496],[-127.44809174141925,57.08912195871272],[-127.44841089267011,57.08914979972642],[-127.44870712701096,57.08922721299025],[-127.4489976332774,57.089317018856626],[-127.44930085128853,57.08938762797885],[-127.44961197459348,57.0894491815554],[-127.44992405493868,57.089508482014466],[-127.45023221826479,57.08957342966841],[-127.4505315226228,57.089649683882286],[-127.45081200879521,57.089747443376176],[-127.45101856330442,57.089884134509724],[-127.45124759432578,57.0900138500254],[-127.45146787558018,57.09007640993016],[-127.45181507558264,57.09019023815575],[-127.45203593666983,57.090322285050085],[-127.45227611004506,57.090446270451125],[-127.45250613043605,57.090574852002256],[-127.45273110921451,57.09070685195665],[-127.45295808610597,57.09083658754174],[-127.45319624324065,57.09096171469947],[-127.45342118425755,57.0910925930951],[-127.45362587658423,57.091233784678494],[-127.45382444417878,57.09137728598873],[-127.4540291395048,57.09151847696843],[-127.45423283806845,57.09166079964892],[-127.4544130384562,57.091810109307595],[-127.45453409666028,57.09197913315595],[-127.4546998879432,57.09212972402477],[-127.45495634569468,57.09224679800374],[-127.45514985440634,57.09239259569816],[-127.45531079306511,57.09255108617152],[-127.45540397290186,57.09272042037993],[-127.45540241646603,57.09292443792713],[-127.45550933032533,57.09307456392928],[-127.45570580706003,57.09321696519944],[-127.45584313412766,57.09321543271648],[-127.45621688600146,57.09302071144326],[-127.45644537972663,57.09289038022513],[-127.45666969956694,57.092758974328426],[-127.45685518774592,57.09261118850578],[-127.45703954877456,57.09246117324784],[-127.4572428750227,57.09232103379573],[-127.45747660010254,57.092192884073505],[-127.45770616785416,57.092063659503104],[-127.4579336101365,57.091933337398046],[-127.45816317479947,57.09180411204767],[-127.45840012684744,57.091679287218575],[-127.4586762901474,57.09158092461948],[-127.45897718497082,57.09150806506674],[-127.45931997158291,57.0914504284961],[-127.45959299703738,57.09137787927862],[-127.45990359793042,57.09131611776301],[-127.46020883100807,57.09124881118447],[-127.46050967771731,57.091174827711306],[-127.46080262280331,57.091082997934414],[-127.46109086502211,57.09100354985142],[-127.46137333891606,57.09090847341773],[-127.46166674893563,57.090828966149644],[-127.46198641161027,57.09078839480489],[-127.46231490391189,57.09076229513785],[-127.462632218523,57.090687001217184],[-127.46292011258316,57.09059858589732],[-127.46320051417732,57.090503528691876],[-127.46346605046878,57.09039742884353],[-127.46372094597415,57.090283601682906],[-127.4639758137814,57.09016865344674],[-127.46422120949116,57.090049327507096],[-127.46444646754281,57.089916776613094],[-127.46467393348944,57.08978756317591],[-127.46488829556877,57.089694364679175],[-127.4652018219357,57.08957427172548],[-127.46542287537015,57.08943952458967],[-127.46565768175883,57.089313589588926],[-127.46608887288899,57.08908344688421],[-127.46616944907096,57.089002958691445],[-127.46645504632251,57.08893585799297],[-127.46667494057009,57.08887958338013],[-127.46675945533545,57.088712742727935],[-127.46685197138726,57.0885390867711],[-127.46724385601604,57.088226437079804],[-127.46729110712789,57.08811157577107],[-127.46737885718746,57.08805678638032],[-127.46755189346933,57.08809855396922],[-127.46790885069267,57.0882234385589],[-127.46822369544297,57.08827369723821],[-127.4685501316736,57.088302527929336],[-127.4688552543788,57.08836858689425],[-127.46915165244594,57.08844931488296],[-127.46945296454682,57.08852326157015],[-127.469763089044,57.08858477858571],[-127.47008224008908,57.088639467856446],[-127.47040518950331,57.088658245326734],[-127.47073361496643,57.08863100410444],[-127.47104968898888,57.088578121066675],[-127.47133324683337,57.08848525229561],[-127.47165503032714,57.088446874835306],[-127.47197889437159,57.0884084730962],[-127.47230287009079,57.088373431932474],[-127.47262952779288,57.08835405202886],[-127.4729587918729,57.08834921334045],[-127.47328837321413,57.08835221641318],[-127.4736190646542,57.08835744787733],[-127.4739497131898,57.088361558106506],[-127.47428108484414,57.08835781314636],[-127.47460627067025,57.08838103846316],[-127.47491446666277,57.08844592775747],[-127.47522400551834,57.08851864733298],[-127.47552919207551,57.08855890980967],[-127.47587033816369,57.088567379976354],[-127.47619935466851,57.08858271182855],[-127.47652665131211,57.088607029391774],[-127.47685407760883,57.0886347073223],[-127.47717478678244,57.08867591111372],[-127.47748781467944,57.088731772625664],[-127.47779606146023,57.08879777552459],[-127.47809639544064,57.08887283445166],[-127.4783857977244,57.088959225449955],[-127.47866321778389,57.08905583962052],[-127.47893164176111,57.08916040141681],[-127.47919511288873,57.08927062327621],[-127.47944840789435,57.0893843227031],[-127.47967755856311,57.08951510883449],[-127.47992487824892,57.08963447960072],[-127.48015188093387,57.08976304755629],[-127.48030878221586,57.0899215537413],[-127.48041351668165,57.09009298157958],[-127.48051819237583,57.09026328914634],[-127.48069337787035,57.090413741235785],[-127.48086147583862,57.09056763624308],[-127.48100001619105,57.0907319546337],[-127.48116109774631,57.09089153341558],[-127.4813678131304,57.09100239566224],[-127.48172360877422,57.091015167982874],[-127.48205061659017,57.09097782647817],[-127.48236002425303,57.090912661968595],[-127.48267725493658,57.09086310022245],[-127.48300026071578,57.09082916446747],[-127.48331190344744,57.09076845581579],[-127.48361489651111,57.090697756799926],[-127.48390817229591,57.09061595873663],[-127.48419175738711,57.090524182276575],[-127.48447099504959,57.09042685022669],[-127.48475134204743,57.0903317467185],[-127.48503381226172,57.090237739314496],[-127.48533929602051,57.09017821675982],[-127.48567163619484,57.09017219022291],[-127.48599243871469,57.09013490941042],[-127.486307376746,57.09007976041621],[-127.48662241712312,57.09002685126339],[-127.48693852412423,57.089975050071445],[-127.48725574115682,57.089925477226],[-127.48757404139607,57.08987701213696],[-127.48789588023507,57.08983971478443],[-127.48822602209874,57.08983034411369],[-127.48855492408063,57.089842283638696],[-127.48888399999421,57.08985870390662],[-127.48921392653659,57.08987063008108],[-127.48954597799774,57.089883652047384],[-127.48987792624432,57.08989443257213],[-127.4902052835295,57.089892934921664],[-127.49052203679028,57.08985793094039],[-127.49082577258082,57.08978048116775],[-127.49114084777692,57.08972868150753],[-127.4914695557044,57.08970923099617],[-127.49179952150774,57.08969536971523],[-127.49212494686921,57.08972415334467],[-127.49244191683906,57.089774329818695],[-127.4927472664811,57.08984481453616],[-127.49300962716846,57.0899516590928],[-127.49310171674892,57.0900088913123],[-127.49355758307041,57.09015162997901],[-127.49381688628068,57.09025962888438],[-127.49403280909301,57.090393904656665],[-127.49423360455826,57.09053732051585],[-127.49441921253789,57.09068875633207],[-127.49458941497181,57.09084261021314],[-127.49472792783041,57.091004673271414],[-127.49483479440825,57.09117606600271],[-127.49494879333042,57.091345135156196],[-127.49512610510479,57.09149554431628],[-127.49531265814917,57.09164472644296],[-127.49547582420759,57.09180314359091],[-127.4956572262328,57.091952384342704],[-127.4958923093908,57.09207410787815],[-127.4961749498713,57.09217062592276],[-127.49646643886487,57.092255832939124],[-127.49676585584436,57.092331981212126],[-127.49706818837167,57.09240361178218],[-127.49736759117702,57.09247975887195],[-127.49766507787798,57.09255928997253],[-127.49795648572723,57.09264225289892],[-127.49824404381842,57.09273198477439],[-127.49852960926974,57.0928239807161],[-127.49880211228121,57.092925093290994],[-127.49903823555324,57.093046799476056],[-127.49922993814039,57.09319479636057],[-127.4994490457646,57.09333014815363],[-127.49968835021448,57.093454058475366],[-127.49997376597494,57.09354156954472],[-127.50027431167634,57.09361993884498],[-127.50050245426868,57.093695777598846],[-127.50065898399193,57.093868836824385],[-127.50100342321232,57.093960150334],[-127.50131854997235,57.09401481072287],[-127.50163950552759,57.09406043609768],[-127.50196390720285,57.0940880866723],[-127.50229460807697,57.09409212507578],[-127.50262522134572,57.094093921857414],[-127.5029567554346,57.094119246027944],[-127.50323907787121,57.094206785776834],[-127.50350660784873,57.094312429775776],[-127.50376620299605,57.09442601099829],[-127.50401465338692,57.094545324706424],[-127.50424378682703,57.09467270699158],[-127.50443857945709,57.0948195401936],[-127.50460583886753,57.094975657874244],[-127.50471472127094,57.095144778593195],[-127.50483901279146,57.09531147971322],[-127.50500517826119,57.09543958713252],[-127.50518768842073,57.09561570443858],[-127.505418092526,57.095748674713604],[-127.5056747289739,57.09586564927312],[-127.50595693863208,57.09594982207455],[-127.5062912891649,57.09596725920835],[-127.50661380453434,57.09599940386227],[-127.5068968085909,57.096103741697384],[-127.50700384321439,57.09619890274094],[-127.50709672070911,57.09643321886867],[-127.50714203998314,57.09661428117824],[-127.5072754721215,57.0967763911345],[-127.50743964565571,57.09693254128685],[-127.50761816093348,57.0970851628342],[-127.50780070338286,57.09723549582585],[-127.50801478115898,57.097373134177055],[-127.50825635211449,57.09750036626265],[-127.50849284156159,57.09762989848855],[-127.50863112944701,57.09778410482838],[-127.50867938748698,57.09796064929352],[-127.50870415229386,57.09814419085397],[-127.50875973557811,57.0983228924418],[-127.50882869087103,57.098500318491055],[-127.50892534271082,57.098672940606974],[-127.50907207306666,57.098831532631046],[-127.5092555823068,57.098979610951275],[-127.50945548267094,57.09912413670411],[-127.50965440423047,57.09926979441231],[-127.50983181018293,57.09942018444569],[-127.50997557317018,57.099582172665535],[-127.51008966369811,57.099751229613865],[-127.51018327877185,57.099925007107984],[-127.51021514496843,57.09999973884037],[-127.51025835122853,57.10010012010513],[-127.5103015968988,57.10028008511873],[-127.51029508296246,57.100456142519896],[-127.51013194129926,57.100616078371964],[-127.5099276957359,57.10075519251132],[-127.50969305271404,57.100883449000186],[-127.50949718107928,57.101025828281095],[-127.50936838430212,57.10119209126758],[-127.50925622480139,57.10136152440549],[-127.50915341072408,57.10153197027031],[-127.50905687990634,57.101704585206456],[-127.50887258969763,57.10185243414049],[-127.50860294144395,57.10195755443816],[-127.50846672447109,57.10211941873628],[-127.50880117670286,57.10240138267322],[-127.50898697171888,57.10252813829926],[-127.50934141112938,57.1026350085316],[-127.5096370239768,57.102716777603206],[-127.50994526199767,57.102778223613946],[-127.51027472231974,57.10280131245695],[-127.51059815674196,57.1027762712535],[-127.51091631357573,57.10272214678383],[-127.5112403642933,57.10271278953486],[-127.5115701876579,57.10271905730187],[-127.51187828834884,57.10272445502725],[-127.51223595924284,57.10272927754119],[-127.51253245272102,57.102780765439135],[-127.51283173725365,57.10287705660876],[-127.51314662841496,57.10292384620497],[-127.5134234064066,57.10297331893],[-127.51374619044964,57.10306261005072],[-127.51402882413299,57.10315572899631],[-127.51432358674069,57.103241981143164],[-127.51461224271125,57.10333054534487],[-127.5148706696502,57.10343851532149],[-127.51505233464367,57.103591091545134],[-127.51531683577645,57.10366984653666],[-127.51554068459473,57.103791667715925],[-127.51566110750178,57.103884425368356],[-127.51607669509637,57.10399505113638],[-127.51628346998469,57.10412939949862],[-127.51645603437196,57.10428656333658],[-127.5166863524833,57.10441503296647],[-127.51693180111042,57.10453435904781],[-127.51707256744213,57.104697496366825],[-127.51724787343804,57.104845660132334],[-127.51749845438714,57.10496380465204],[-127.51773997164462,57.10508765869307],[-127.5179499977179,57.105225329576214],[-127.51814892227743,57.105369854776136],[-127.51835091063857,57.105513223145024],[-127.518559097233,57.10565651910427],[-127.51872117259872,57.10580931872412],[-127.51877046732763,57.105984728164486],[-127.51878492973505,57.10616726849424],[-127.5188949473914,57.10633636663361],[-127.51902140231967,57.10650303155162],[-127.51906867801267,57.10667958540926],[-127.51910779677466,57.10685847605784],[-127.51917779543892,57.1070347654129],[-127.51924672584204,57.107209946284215],[-127.5192816702998,57.107387764649125],[-127.5192753736883,57.10756830499563],[-127.51930425456321,57.10774955673902],[-127.51946030549577,57.10790690960348],[-127.5197267292064,57.108006931334096],[-127.52004419668444,57.10806488418757],[-127.52034569975969,57.108137594154634],[-127.52064326659766,57.10821483296631],[-127.52093988228845,57.108294324032144],[-127.52123348115876,57.10837609143885],[-127.52152907471827,57.10845559311864],[-127.52182865118881,57.10853168495672],[-127.52213413160418,57.10859986085767],[-127.52244252571387,57.108663518407056],[-127.52274903287407,57.108731680922226],[-127.52305351983158,57.10880098722653],[-127.52335701121221,57.10887142537391],[-127.52365661107574,57.1089475128466],[-127.52394331018942,57.10903720129142],[-127.52417772440273,57.109163369105204],[-127.52439897135051,57.10929641583183],[-127.52461421702166,57.10943401599066],[-127.52482329486723,57.109572808808196],[-127.52502426112098,57.10971505886189],[-127.52520491048404,57.10986651341807],[-127.52535588247122,57.11002504013296],[-127.5255400691424,57.11023922433699],[-127.525657919242,57.11034433388837],[-127.52587519659538,57.11048078752568],[-127.52605585291808,57.110632240988735],[-127.52620378546814,57.11079192334643],[-127.52628824025217,57.11099270101253],[-127.52637464470438,57.11113853084402],[-127.52644159399091,57.11131485299745],[-127.52648186561527,57.11149597085081],[-127.52655792605161,57.111667702761835],[-127.52672832223375,57.11182039645012],[-127.52693046570329,57.11196599301012],[-127.52714873687806,57.11210131230237],[-127.52740195129572,57.11220595748783],[-127.52769843432371,57.112306732984905],[-127.52780815208608,57.1124668611797],[-127.52783747635524,57.112606632949884],[-127.528186281398,57.11272360872663],[-127.52844296684214,57.1128371787461],[-127.52861228984936,57.11298876190062],[-127.5287552920286,57.11315410422217],[-127.52885792618011,57.11329189625764],[-127.52906662574458,57.1134721616217],[-127.52923406656306,57.11362824983886],[-127.52936882431553,57.11376790701734],[-127.52933427484841,57.113964473190194],[-127.5293091323129,57.11411160858206],[-127.52930199092076,57.11429552350092],[-127.52951384999997,57.114476872273514],[-127.52967214200447,57.11463643009366],[-127.52984470259202,57.11479133682418],[-127.5300265254798,57.114945013862496],[-127.53018877503402,57.115100041074086],[-127.5302524740439,57.11522035400385],[-127.53023576842634,57.11544921824425],[-127.53029550333652,57.115625623850924],[-127.53037793790048,57.115800642390674],[-127.53048394666116,57.115970900796775],[-127.53062885542234,57.11613173559854],[-127.53078607286606,57.11629018407183],[-127.53115126436995,57.116350914331136],[-127.53143983420804,57.1164338401549],[-127.53170361503861,57.11654283752715],[-127.53198741633733,57.116635906466165],[-127.5322741476055,57.11672445671473],[-127.53256492305508,57.116810717020485],[-127.53286258170597,57.11688792846213],[-127.53316921778875,57.116957187316366],[-127.5334041983682,57.1170698824488],[-127.53360510822093,57.11715719618564],[-127.53396401793795,57.11726731332653],[-127.53424582519453,57.11736152189253],[-127.53452761730475,57.11745573005117],[-127.53480942732772,57.11754993741352],[-127.53508722422038,57.11764755416706],[-127.53535897487043,57.11774860425248],[-127.53561058614564,57.11786334185035],[-127.53584113948378,57.11799401974433],[-127.53608373306925,57.11811558815413],[-127.53633743168656,57.11823029987258],[-127.53660819322239,57.11833248005769],[-127.53684979484926,57.11845517973326],[-127.53708737177601,57.11858016823996],[-127.53732395373055,57.11870628899053],[-127.53756151722524,57.11883127685218],[-127.53780309667647,57.11895285421335],[-127.5380527466666,57.11906985234837],[-127.53831858577057,57.11917769181814],[-127.53858738279907,57.119282133120315],[-127.53887270354238,57.11941216048599],[-127.53908768985374,57.11951499330099],[-127.53931521868026,57.119646822064425],[-127.53953051438471,57.11978327845773],[-127.5397305471663,57.11992551920961],[-127.53991742823872,57.12007464041682],[-127.54010631561646,57.120222616788844],[-127.54031448332977,57.1203613979755],[-127.54054597420807,57.12048869430978],[-127.54078962337826,57.12061024210181],[-127.54104137615394,57.12072721007936],[-127.54129311393297,57.120844177776796],[-127.54156422213217,57.12095419068312],[-127.54185258936836,57.121056152682],[-127.54210115040833,57.12117091456016],[-127.54225478767428,57.121315941710044],[-127.54231662486882,57.12149119756294],[-127.54233554655272,57.12167929071345],[-127.54235937259465,57.12186060034793],[-127.54237179666818,57.12204092378378],[-127.54237280208008,57.122220261219105],[-127.54234703356659,57.1224021568675],[-127.54247543952634,57.122562054185586],[-127.5427691483602,57.122642653596934],[-127.54305294802171,57.12273345789687],[-127.54331072431178,57.12284586699392],[-127.54356347934817,57.12296169778156],[-127.54383258758905,57.123072850983675],[-127.54402120579456,57.123212979010425],[-127.5441160567072,57.12338672299439],[-127.54417804098925,57.12356533943744],[-127.54418834601005,57.12374456716272],[-127.54416249490932,57.123924222568746],[-127.54415835062497,57.12410362124774],[-127.54416052470653,57.12428630802426],[-127.54418215916114,57.1244642809085],[-127.54430056239002,57.12463214170793],[-127.54456011033275,57.12471089964961],[-127.54488475271815,57.12476310529943],[-127.54510366018013,57.12488493867622],[-127.54540431781555,57.124957603778746],[-127.54573574050202,57.12497273618907],[-127.54605278421053,57.12501606146059],[-127.54635946388164,57.12508416934279],[-127.54666516476291,57.125153409053745],[-127.54697952587662,57.12520685232694],[-127.54730263722534,57.12524673990205],[-127.54762476939229,57.125287759231675],[-127.54793231481563,57.125351369478444],[-127.54823405170862,57.12542513633896],[-127.54851720667872,57.12549912291807],[-127.54861269162565,57.12555964195308],[-127.54911251140994,57.125623210548675],[-127.5494401247251,57.12564622541895],[-127.54976864426655,57.12566586589905],[-127.55009778185963,57.125675409769514],[-127.55042830721347,57.12566812224845],[-127.55075985749087,57.12566082171522],[-127.5510879989448,57.12564571426343],[-127.55141114622612,57.125609367484536],[-127.55172966126757,57.125560744623705],[-127.55205267127691,57.12552103505727],[-127.55251089075229,57.12555257799056],[-127.55269913376354,57.12552904152964],[-127.5530292039148,57.12551054342172],[-127.55334892254524,57.1254663860224],[-127.55366438765012,57.12541891563144],[-127.55399513698158,57.12541722108329],[-127.55432947714976,57.12542781328747],[-127.55465516148352,57.125454200873364],[-127.55496047166582,57.12551333758439],[-127.55524957051153,57.12560629492767],[-127.55555132347133,57.12568004489305],[-127.55586184057282,57.12574023844643],[-127.55617442528363,57.12580040663108],[-127.55647910798832,57.1258696358169],[-127.55676816774174,57.1259614694228],[-127.55707630413735,57.12601384194729],[-127.55740832740038,57.12601772832705],[-127.55774235536076,57.12602046900293],[-127.55806234754361,57.12605924646573],[-127.55836928436575,57.126132928187616],[-127.55863203019963,57.12623852315227],[-127.55885063085174,57.12637715203283],[-127.55908324455984,57.12650440381856],[-127.55937101706687,57.126589521551864],[-127.55968868154538,57.12664737895303],[-127.56001263208273,57.126681620681225],[-127.56034007872725,57.12670012662648],[-127.56067134006616,57.1267107395521],[-127.5610034608799,57.12671685758985],[-127.56133358976169,57.12672524049214],[-127.56166471479712,57.126732489702775],[-127.56199570313368,57.126736376879265],[-127.5623253927573,57.12673355309464],[-127.56265349319894,57.12671729616915],[-127.56297973029609,57.12668088372846],[-127.56329501088538,57.12662890843797],[-127.56365977441612,57.12654831614783],[-127.56387487749268,57.1264739993498],[-127.56410167378073,57.12661027964866],[-127.56430587521453,57.12675019314064],[-127.56458678495054,57.126844349339386],[-127.56488656112145,57.12691922276398],[-127.56518641333143,57.12699633649741],[-127.56547329857611,57.12708481449208],[-127.5657916979353,57.12713480179703],[-127.566102918657,57.127185995391315],[-127.56639380363754,57.1272710606041],[-127.56668078521047,57.12736177675818],[-127.56696273034149,57.127455915587625],[-127.56723166328328,57.127560298541894],[-127.5674612658923,57.12768869302322],[-127.5676908992793,57.12781820770855],[-127.56795885741995,57.127923721898625],[-127.56824875625783,57.128009915931635],[-127.56854266903166,57.12809269827935],[-127.56882759507278,57.12818343459907],[-127.56906774098077,57.12829152268284],[-127.56931110059669,57.12842759541756],[-127.56961578201975,57.128495673686835],[-127.56987439557788,57.12860017550716],[-127.5700889167225,57.12873883551309],[-127.57030446454613,57.1288774828519],[-127.57054910323181,57.129019142796174],[-127.57085766594126,57.129055785026424],[-127.57113433738304,57.12914661583923],[-127.57129774639532,57.12929934041696],[-127.57143799305074,57.129466915931296],[-127.57162488956953,57.12961263179077],[-127.571893988008,57.12972036650055],[-127.57215693334004,57.129829295719944],[-127.57245359256676,57.12995351173101],[-127.57270793762179,57.1300289149601],[-127.57299763336347,57.130109496598216],[-127.5733961087424,57.13011926792353],[-127.57361423246701,57.130193984943695],[-127.5738671733073,57.13031087808217],[-127.57412006972217,57.13042665034382],[-127.57437301363689,57.130543542522574],[-127.57462689230475,57.130658181064746],[-127.57489384763363,57.13076369380692],[-127.57513966224964,57.13088291247697],[-127.57537338246503,57.13101012329583],[-127.57560208325363,57.13114075715142],[-127.57583182732563,57.13127137804723],[-127.57601264058808,57.131419403447644],[-127.57613224624099,57.13158722365173],[-127.57624774854852,57.13175621426569],[-127.5763684275215,57.131925142316895],[-127.57643241250017,57.13209811761153],[-127.57640055185982,57.13227897574514],[-127.57618635753784,57.13252705021821],[-127.57601269709721,57.132679354080715],[-127.57578118861917,57.132807694824095],[-127.5755718800282,57.132948097783135],[-127.57534917204252,57.13308978300854],[-127.57520971189624,57.13324391510542],[-127.57522838659285,57.13342192150387],[-127.57527211253458,57.13360523049663],[-127.5751944019911,57.13377767391413],[-127.57508559282115,57.13394825049916],[-127.57501219887462,57.134125125585555],[-127.57495538689537,57.134302921611265],[-127.57494607148057,57.134479023847426],[-127.57502877966192,57.13465513718172],[-127.57506194051017,57.13483296906794],[-127.57506107792938,57.13501345325423],[-127.57505292612096,57.135192904425836],[-127.57505615176751,57.135372218395204],[-127.57510998484443,57.135549801041236],[-127.57512147941905,57.135729015324465],[-127.57512370958086,57.13590946233067],[-127.5751217759441,57.136088838626385],[-127.57510742263037,57.13626836474319],[-127.57507343908337,57.13644812764121],[-127.5750302070586,57.13662912304922],[-127.57510442138397,57.13679973433223],[-127.57527544440076,57.13696021024425],[-127.5755248656409,57.137065934238315],[-127.57585172190028,57.13711803842727],[-127.57617125992581,57.13716798822121],[-127.57648288164474,57.13722700046782],[-127.57676278051028,57.13731890277343],[-127.5770187783996,57.13743351228009],[-127.5772828330379,57.13754241921707],[-127.57755491129988,57.13764562393374],[-127.57783297894063,57.13774315095525],[-127.57812095297655,57.137830469073705],[-127.57841693735101,57.137910964012306],[-127.57871794456278,57.13798803470502],[-127.5790228108341,57.1380583323094],[-127.57933346492527,57.13811847059314],[-127.57965178935439,57.138163942902985],[-127.57998563761119,57.13818456552918],[-127.58032427692257,57.13819616165416],[-127.58065399124459,57.138216832603554],[-127.58096207395329,57.13826466762897],[-127.58124480668816,57.13834980055543],[-127.58150590898286,57.13846209787717],[-127.58174910002819,57.138591426045515],[-127.58197693474024,57.13872430268963],[-127.58218553911215,57.138867500588034],[-127.58233802466424,57.13902931350216],[-127.58240406952672,57.139201141329785],[-127.58242180131703,57.1393802803082],[-127.58241481739829,57.13956196069654],[-127.58240679145922,57.139743653733454],[-127.58240182856285,57.139924188719625],[-127.58238752441996,57.140103715944456],[-127.58238044776839,57.14028315562394],[-127.58239611254035,57.14046231979739],[-127.58242831680084,57.14064128360314],[-127.58246770286532,57.1408190394495],[-127.58254620223396,57.140991837538465],[-127.58243978373993,57.141119795749255],[-127.5821738586718,57.141417830664544],[-127.5816718494944,57.141558426496424],[-127.58144118201363,57.14163296128689],[-127.58115507065655,57.141692473392744],[-127.58095137203124,57.14184402726285],[-127.58071686407045,57.14202621968785],[-127.5805124430909,57.14218562835268],[-127.5805037712612,57.142402079187605],[-127.58039797846395,57.142570382849364],[-127.58030828324827,57.14267795964167],[-127.58044429843399,57.14284109554977],[-127.58069312629682,57.14300622903331],[-127.58105494361362,57.143202502394495],[-127.58164037115053,57.14347901867366],[-127.58221057710341,57.143787103895],[-127.58254647619218,57.14390634076909],[-127.58265898924098,57.14422669460573],[-127.58270256153021,57.144405521154226],[-127.58272231851564,57.14458351532389],[-127.58268202166711,57.14475999525102],[-127.58258782687663,57.144933765319095],[-127.58250717174101,57.14510961322848],[-127.5824051206635,57.145293567067235],[-127.58230822953271,57.14547745833421],[-127.58227094719743,57.14565165976744],[-127.58234551370165,57.14580432894301],[-127.58254640417648,57.145935290307236],[-127.5828201993638,57.146053037362904],[-127.58311035296344,57.146166101750914],[-127.58337353538914,57.146277250523575],[-127.58364772999765,57.14637929754558],[-127.58391782033192,57.14648251475228],[-127.58415765306874,57.14660403386541],[-127.58462506152271,57.146876364728556],[-127.58473631905717,57.14691536989372],[-127.5849754770675,57.146920315050956],[-127.58523798924881,57.146914887638204],[-127.58569714654283,57.14693733890955],[-127.5859651779116,57.1469901334269],[-127.586101134828,57.147051256955756],[-127.58635881780488,57.147203942607646],[-127.58658154193017,57.14733687494706],[-127.58680638173954,57.14747090220835],[-127.58704451639109,57.14760140468418],[-127.58727551638823,57.147734235391454],[-127.58747986842174,57.14787299441576],[-127.58762576139289,57.14802367335484],[-127.58763016529946,57.14820521706521],[-127.58761197878587,57.14839039826312],[-127.58761949270341,57.148571904226294],[-127.58764348894329,57.148676983864775],[-127.5876497313001,57.148777795396846],[-127.58751341736874,57.14900813013641],[-127.58711720943859,57.1492079933929],[-127.58694046968759,57.14936147165931],[-127.58677518638113,57.14951705247397],[-127.58662972394893,57.14967687623647],[-127.58653009534875,57.14984399001803],[-127.58646739379718,57.15000392946466],[-127.58640379905862,57.15019190403683],[-127.58635349799295,57.150376354255556],[-127.5862976938733,57.15055302449072],[-127.58627513216526,57.150732653998965],[-127.58627327973699,57.150913153040875],[-127.586271397489,57.15109253149624],[-127.58614844312919,57.15124647665041],[-127.58607365331244,57.15136396582857],[-127.58596042294582,57.151602986698755],[-127.5858505390182,57.151772466547094],[-127.58574693431312,57.15194411204212],[-127.58566514397094,57.15211773464737],[-127.58567383068981,57.15230258980862],[-127.58551220242016,57.15244691505368],[-127.58524078724412,57.152563426975355],[-127.5851012960406,57.15271757185956],[-127.58500892918713,57.152885717551754],[-127.58496575528827,57.15306783906807],[-127.5849006890108,57.153245742273796],[-127.58478868128303,57.15341412611252],[-127.58465476389549,57.15357829171384],[-127.58452507420331,57.153744647858865],[-127.58439542968073,57.15391212430869],[-127.58429069430125,57.15408154053671],[-127.58426496432689,57.15426008747502],[-127.58433534900111,57.154436347968684],[-127.5845086109977,57.15457324769121],[-127.58463154349874,57.15469394302133],[-127.58467210467356,57.15492437194076],[-127.5847058371223,57.15511452860443],[-127.58469156785875,57.15529517872373],[-127.58483375846586,57.15545599550982],[-127.58455361528377,57.15536186843361],[-127.58446982201518,57.15533710219411],[-127.58436689840838,57.15532489861497],[-127.58421396590354,57.155354777420925],[-127.58405970739274,57.15535216383647],[-127.5839331300464,57.155343609617546],[-127.5836066524819,57.15538007537984],[-127.58321522439189,57.15549691660855],[-127.58299506814286,57.15547716465629],[-127.58265623761115,57.155439793340875],[-127.58232476828057,57.15543035637686],[-127.58200665377105,57.155468958783835],[-127.58170019036585,57.1555388066542],[-127.5813847432654,57.15559194791041],[-127.5810682694499,57.15564510082102],[-127.58075504394742,57.15570157658011],[-127.58045167048289,57.155771384100674],[-127.58015712294703,57.15585453585995],[-127.57985927883634,57.15593324290855],[-127.5795606653974,57.15599290200564],[-127.5792164323583,57.156000426021535],[-127.57889658124355,57.1560468885874],[-127.57844094605764,57.156112926387515],[-127.57816426109038,57.15612747838745],[-127.57792833500669,57.15607652108766],[-127.57760856148872,57.156024333856465],[-127.57727949111063,57.15599804047639],[-127.57698055058948,57.156049850760326],[-127.5766351746146,57.15613024502722],[-127.57647761560861,57.15624872741058],[-127.57638519784527,57.156366423695964],[-127.57598999498526,57.156442933479426],[-127.57566328684375,57.15647377713671],[-127.57533718652843,57.15644408008962],[-127.57500842292315,57.15645028547784],[-127.57467930700915,57.156473308878205],[-127.57435705614297,57.15651194234667],[-127.57404830166061,57.156577315772076],[-127.57373726445276,57.15663711108902],[-127.57340937249722,57.156664600414544],[-127.57309592697229,57.15671657638093],[-127.57276431108679,57.15670375389994],[-127.57244538026524,57.156747947512926],[-127.57211969356565,57.156728326205695],[-127.57179086710636,57.15670762088914],[-127.5714602776068,57.156694782758265],[-127.57113007215867,57.15669090695101],[-127.57080030923942,57.15669823470808],[-127.57021870289529,57.156745580489094],[-127.56960195878149,57.15686957183664],[-127.56929639575911,57.15693713752485],[-127.56899308336239,57.15700915934897],[-127.5686897239867,57.15708006005208],[-127.56838420351072,57.15714874403906],[-127.56806756136871,57.157198504261856],[-127.56774307544399,57.15723378519765],[-127.56741639973679,57.15726572867679],[-127.56709200423063,57.157303248841146],[-127.5667917039976,57.157372987423045],[-127.56655158835527,57.1574980522965],[-127.5662525861252,57.15757449988319],[-127.5659675843517,57.15766423063534],[-127.56569665779612,57.157769485691006],[-127.56547003445297,57.157895507839086],[-127.5653539117747,57.158067286625595],[-127.56514203859619,57.15819985731862],[-127.56488176800686,57.1583128298119],[-127.56461835585294,57.15842471842469],[-127.56439181652553,57.15855297961219],[-127.56425679711305,57.15871825783659],[-127.56416973226412,57.15889192966151],[-127.56398119722212,57.1590387917054],[-127.56389613657873,57.15921131840598],[-127.56376004106713,57.15937548805286],[-127.56359880314652,57.159532111620365],[-127.56333942441009,57.159641707405044],[-127.56307675051083,57.15974685819639],[-127.56286922547957,57.1598849780119],[-127.56260348330517,57.15999128550501],[-127.56238340738031,57.160126191709146],[-127.56218344535723,57.16027206679539],[-127.56214167540422,57.160440711923215],[-127.56196896658464,57.16059522865741],[-127.56177730369247,57.16074212489596],[-127.56158245354834,57.160886816996154],[-127.5613855334029,57.16103153353771],[-127.56118861177106,57.16117624979825],[-127.56099375719947,57.16132094106779],[-127.56084913947227,57.161479604644875],[-127.56074643918313,57.16165121909818],[-127.56056737674557,57.16180244695487],[-127.56029090720618,57.16189990999059],[-127.56002313747571,57.162007357326594],[-127.5598449597824,57.162155210700355],[-127.55971202227143,57.162321580411316],[-127.55954229867172,57.16247381636309],[-127.55933381126123,57.16261418394906],[-127.55911473481595,57.16274907267064],[-127.55887871428037,57.16287407439041],[-127.55860875749828,57.162979302922274],[-127.55834295307062,57.16308448137142],[-127.55802179284281,57.163126423801856],[-127.55756948765861,57.163149751085534],[-127.55738197326595,57.163195703827014],[-127.55708065356069,57.163241891367036],[-127.55675708226134,57.16332645634291],[-127.5564471713607,57.16339068030646],[-127.55614025973784,57.16342684350299],[-127.55581075432515,57.163441976487256],[-127.55547981344296,57.163447036974844],[-127.55514927875845,57.1634363981818],[-127.5548188185919,57.16342799961237],[-127.55448912858323,57.16341286521764],[-127.55416671418527,57.16337298209311],[-127.55383918439463,57.163360062320365],[-127.55350726330666,57.1633662504447],[-127.55317780131601,57.163356714900914],[-127.55285070805766,57.16332921484439],[-127.55252286146161,57.163308448750904],[-127.55219578563398,57.16328094685979],[-127.55186784909442,57.16325793826014],[-127.55154631756302,57.163290901327514],[-127.55123278824658,57.16334282510922],[-127.55091729662094,57.163397013360054],[-127.55064394765719,57.16349553961338],[-127.55032709415566,57.16354189578785],[-127.55003455044566,57.16352406754321],[-127.54966596435533,57.1635194710665],[-127.54933875180367,57.163514383046206],[-127.54902973605698,57.16344742517233],[-127.54889041092397,57.16343114104988],[-127.54869770792075,57.16342557809028],[-127.54861411456216,57.16345683489494],[-127.54857293382331,57.16353915367857],[-127.54854202233349,57.16361910882691],[-127.54854348383788,57.163706527159185],[-127.5485866679095,57.163750854238316],[-127.5486266502513,57.16379297730686],[-127.54856137232333,57.163841952554804],[-127.5484249101192,57.16394781972486],[-127.54817187394373,57.16406291459917],[-127.54790903768291,57.16416579438268],[-127.54750532286207,57.16416272879],[-127.54733423362046,57.16425667415817],[-127.54705564403157,57.16435413386834],[-127.5467684330144,57.16444272725689],[-127.54657195698833,57.16452352043984],[-127.546192495894,57.164608720338066],[-127.54599015422792,57.16474899343367],[-127.54589339108938,57.16489025931725],[-127.54551581662243,57.16494516870914],[-127.54522539588227,57.16503155467024],[-127.5449892994671,57.165156531715844],[-127.54478704080985,57.16529904387884],[-127.54458364769378,57.165439327194214],[-127.54431147456093,57.16554230997334],[-127.54405816128414,57.165650674205494],[-127.54384851211516,57.16578990930299],[-127.54343970955217,57.1659438268472],[-127.5433274251239,57.166007927177674],[-127.54311565742603,57.166146065129915],[-127.54289331858796,57.16627872268311],[-127.54270366812747,57.16642668758482],[-127.5425652972439,57.16658861958492],[-127.54244581536051,57.16675705434078],[-127.54232835620729,57.16692434415563],[-127.54221094110679,57.16709275432454],[-127.54209766273327,57.16726111558733],[-127.54199172289348,57.16743163212119],[-127.54188055652244,57.16760108926852],[-127.54175161492303,57.16776627213117],[-127.5415986626524,57.167926133229884],[-127.54141008683877,57.16807520457831],[-127.54123401325057,57.16822637016778],[-127.54113215973669,57.168395716893755],[-127.54105538644961,57.16857149366689],[-127.54096296840304,57.16874409194812],[-127.54084149387263,57.1689147907845],[-127.54068853322462,57.169074650956084],[-127.54046167079936,57.16919838991461],[-127.54015538216164,57.169277104588794],[-127.53983248627445,57.1693291108697],[-127.53950603546876,57.169344166155796],[-127.53920804612764,57.16926920774058],[-127.53892770571953,57.16916937949488],[-127.53865540125484,57.16906385121662],[-127.53837433579987,57.16897187716551],[-127.5380576487541,57.16892067666665],[-127.53772850247172,57.16892006567343],[-127.537431737264,57.169004266717046],[-127.53716272122541,57.16910943916667],[-127.53687113405226,57.16919357801977],[-127.53656982262156,57.16926774179963],[-127.53626414750137,57.16933635131362],[-127.53594879333617,57.16939610608375],[-127.53562809440665,57.16945143899872],[-127.53531909650805,57.16951448046324],[-127.53504323586247,57.16960403529849],[-127.53482187526966,57.16973666741354],[-127.53461869130093,57.16988365835025],[-127.53445892176016,57.17000323600837],[-127.53410176878683,57.17010495286131],[-127.53381237087427,57.17019242200219],[-127.53351000287606,57.170266591021964],[-127.53322594602251,57.170358480062],[-127.53295263639355,57.17046033116198],[-127.53269102706264,57.17056989127379],[-127.53244847334445,57.17071621945993],[-127.53234288018773,57.17087103035031],[-127.53208454081022,57.17098503477544],[-127.5317864357323,57.17106251268398],[-127.53149266326993,57.17114442302006],[-127.5312075522495,57.171236319953444],[-127.53093207238673,57.17133595024299],[-127.53067472376748,57.17144881926177],[-127.53042487570345,57.17156832576719],[-127.53015887312887,57.17167232731651],[-127.52985852734918,57.171745343110366],[-127.52954418622564,57.17180507033269],[-127.52923104923006,57.171869266583464],[-127.52889826263404,57.171933691912656],[-127.52870175833546,57.17206714372152],[-127.52852910021673,57.17227990526647],[-127.52802974956849,57.1723462760075],[-127.52819783230831,57.17269405376219],[-127.52830710078766,57.17286428474272],[-127.52838135601343,57.17303940894401],[-127.52841535997729,57.17321724572649],[-127.52839354002428,57.173396856228585],[-127.52833749650779,57.173574624951286],[-127.52824189700128,57.17374725127251],[-127.52825313922106,57.173925354300245],[-127.52830369743447,57.17410299769347],[-127.52836464713222,57.17428164057189],[-127.5284358097292,57.17445680112305],[-127.52851210978176,57.1746307806219],[-127.52856990438184,57.17480833941678],[-127.52857709920438,57.174988731853055],[-127.52856782895411,57.175171558790915],[-127.52852626892223,57.17534915845226],[-127.5284106132873,57.17551193084088],[-127.5282031014014,57.17565559948169],[-127.52800498109883,57.175801399960974],[-127.5277952181011,57.175940610369885],[-127.5275676042972,57.17607330319391],[-127.5273036320763,57.17617727510537],[-127.52698602091273,57.17623367119038],[-127.5265407485803,57.176229903797584],[-127.52661309946068,57.176331067446114],[-127.5268154488018,57.17647330980006],[-127.5270086576737,57.17662014253639],[-127.52718653438974,57.17677163802935],[-127.52733372859515,57.17693245958017],[-127.52746864149599,57.17709678741975],[-127.52759231596325,57.17726460939987],[-127.5277005071209,57.17743373320915],[-127.52778709577203,57.17760647234575],[-127.52785107175441,57.177782838656604],[-127.52790886804513,57.17796039816583],[-127.5279810784049,57.178135547260574],[-127.52809341270498,57.17830462248027],[-127.52821600609865,57.17847133576183],[-127.52829338430311,57.17864642436953],[-127.52834497540874,57.178824056379895],[-127.52841407682823,57.17899924173671],[-127.52851715565176,57.17916954593513],[-127.52863979835061,57.17933737938201],[-127.5288007651958,57.17950588557696],[-127.52896722856671,57.17968217416669],[-127.52874753067246,57.179754243891125],[-127.52841071442414,57.179823198578404],[-127.52811689572064,57.17990622251723],[-127.52783500275939,57.180002558138334],[-127.52757754216034,57.1801143013431],[-127.52720787341737,57.18034617833878],[-127.52707467360374,57.18043292844102],[-127.52689166841097,57.180491114691975],[-127.52664359602007,57.180604988338544],[-127.52643264135857,57.18074084768647],[-127.52622918836876,57.18088334497914],[-127.52598551845136,57.18100389182596],[-127.52571211366552,57.18110572860533],[-127.52543227547933,57.18120203498194],[-127.52515455013034,57.18129943708007],[-127.5248833444457,57.18140460937607],[-127.52469130161398,57.181548092136865],[-127.5245456090414,57.181711211736896],[-127.52432984157828,57.18188299502925],[-127.52406418979272,57.18191972125503],[-127.52377886368681,57.182008241168184],[-127.52351079002025,57.18211449504586],[-127.52325864676034,57.18223065156018],[-127.5229873847493,57.182334699539894],[-127.5227321421657,57.182450891125185],[-127.52253483097584,57.18259219008096],[-127.52251927635277,57.182773969485446],[-127.52241719588591,57.182941062756214],[-127.5221660425138,57.1830560846311],[-127.52185609213613,57.183124709357784],[-127.52154483053812,57.18318662273675],[-127.52124130967863,57.18326077605184],[-127.52097310334509,57.18336366325648],[-127.52077793968063,57.18350717650159],[-127.52059343469948,57.183658412336925],[-127.5203930409085,57.18380086485305],[-127.5201642227079,57.18393131678563],[-127.51992690151715,57.184056262269536],[-127.51967163818814,57.18417244803225],[-127.51951739627941,57.18433005646659],[-127.51931997470312,57.18446910985027],[-127.5190837350456,57.184595162194576],[-127.5188801898509,57.184736528006304],[-127.51868405697653,57.18488229131699],[-127.51849630739348,57.1850301989303],[-127.51833373334894,57.18518678175983],[-127.51817535867254,57.1853444366104],[-127.51796019158418,57.18548033103384],[-127.51774210395737,57.185620742910736],[-127.51753302688579,57.18575320300147],[-127.51735575730704,57.18587856778695],[-127.5172411451043,57.185965092055596],[-127.51718596020909,57.18606213648529],[-127.51725591829167,57.18618126940607],[-127.51746147706457,57.186247263728426],[-127.51763885649318,57.18633376241311],[-127.51775242982583,57.186404186818045],[-127.5177262914445,57.18647623283602],[-127.51756398756572,57.18648260050401],[-127.51739720088713,57.18642848715353],[-127.5172918252268,57.18632994286448],[-127.51718415834652,57.18622582019789],[-127.51702894359578,57.186176056051394],[-127.51692536694523,57.186096547259076],[-127.51680261270876,57.18600380912186],[-127.5165662593687,57.18589221088448],[-127.51631038470578,57.18578420155509],[-127.51609271443499,57.1856477243543],[-127.51587001227911,57.18551466808975],[-127.51565038043799,57.18538045491107],[-127.51543785344165,57.18524279612106],[-127.51522735352182,57.18510399255098],[-127.51501892497906,57.18496516467384],[-127.51481045364898,57.18482521601622],[-127.51460202813278,57.184686387503994],[-127.51439251664742,57.18454645029359],[-127.51418409416142,57.18440762114459],[-127.51397562891312,57.184267671215245],[-127.51376720945356,57.18412884143122],[-127.5135556508228,57.183988926710335],[-127.51334719014709,57.183848975823494],[-127.51314084502685,57.183710121128954],[-127.5129344571607,57.18357014566079],[-127.51272900893844,57.18342791707919],[-127.51251852879875,57.18328910933979],[-127.51229184591234,57.18315945649299],[-127.51202667938557,57.183051546829454],[-127.51175044847443,57.18295161139928],[-127.51154307082327,57.18281276633906],[-127.51132553935142,57.18267852224426],[-127.51105330329588,57.18257517632569],[-127.51073758350466,57.18252389706358],[-127.51043043604942,57.182480364829885],[-127.51017438066418,57.18236674146256],[-127.50985577166759,57.18232109834639],[-127.50952661040569,57.18229687476825],[-127.50920314568133,57.1822591329463],[-127.5088786825824,57.1822225228265],[-127.50855031679077,57.18221846512281],[-127.50822333478531,57.182249140757555],[-127.50790209146017,57.18229432201741],[-127.50756944081218,57.182312730693894],[-127.50724801814813,57.182300742854295],[-127.50693117444743,57.18224722551124],[-127.5066251340284,57.18217901029874],[-127.5063379282737,57.18208927894155],[-127.50603879009387,57.18201201510287],[-127.5057556382919,57.181919993870046],[-127.50551571778827,57.18179496610438],[-127.50523463852797,57.1817029199262],[-127.50493635612801,57.18162115991552],[-127.50462401259166,57.18157655307235],[-127.50429057484777,57.18157478505136],[-127.50384066657571,57.18150709771353],[-127.50371318853558,57.18142449120729],[-127.50338565344416,57.18141480622089],[-127.50305582910146,57.18139954188693],[-127.5027260330324,57.181411179660444],[-127.50240483418231,57.18145746785096],[-127.50209895678795,57.18152487763287],[-127.50183825422639,57.18163548557668],[-127.50158077813278,57.18174941884474],[-127.50128348301152,57.18182457490818],[-127.50100448966128,57.181917455681855],[-127.50078087046592,57.18205005513076],[-127.5005730879811,57.18219031922018],[-127.50035050883912,57.18232290598864],[-127.50013108489043,57.18245657714184],[-127.49994748622485,57.182606651476476],[-127.49974492416041,57.18274797531993],[-127.49950543013817,57.18287178690089],[-127.49908522367843,57.18314003321107],[-127.49914478648665,57.183498060573804],[-127.49917042872313,57.18367712174517],[-127.49919304589639,57.1838584595641],[-127.49911682943528,57.18402747895896],[-127.49887314192027,57.18415021649617],[-127.4985866540235,57.18423757307512],[-127.49839460274225,57.184383258259956],[-127.49819309601168,57.18452568859296],[-127.49798843092823,57.18466703382687],[-127.49779430536583,57.18481274189074],[-127.49763269087263,57.18496928700321],[-127.49747839891293,57.185127989999955],[-127.49729159294779,57.18527585543359],[-127.49708477964424,57.185414981907385],[-127.49691267890653,57.18556828328683],[-127.49674269046652,57.185722681233955],[-127.4965842081954,57.185880310183215],[-127.49642992478468,57.18603901186293],[-127.4962704132333,57.18619665221917],[-127.49611404075083,57.18635537743975],[-127.49591247142642,57.18649668400071],[-127.49572992388141,57.18664786140885],[-127.49554207705836,57.18679573625768],[-127.49529502860813,57.18691290063468],[-127.49502051713887,57.18701580590044],[-127.49474285308078,57.18714452896047],[-127.4945547154871,57.18725877655544],[-127.49439730484484,57.18741751158592],[-127.49423675247012,57.18757516136002],[-127.4940193305723,57.18770879932473],[-127.49377555963292,57.187830407232475],[-127.49353930259518,57.18795865468979],[-127.49338379752986,57.188060197179645],[-127.49348041379302,57.18828104618712],[-127.49347963192751,57.18834046663184],[-127.49350595757436,57.18837827901468],[-127.49353990828577,57.18839918972417],[-127.49351343939857,57.18843760508356],[-127.49346005479032,57.188449424508065],[-127.49350485782193,57.18850944531112],[-127.49351423501386,57.18856426585015],[-127.493518663752,57.18862474776961],[-127.49352358239886,57.1888040471671],[-127.49348912584324,57.18898267531995],[-127.49344013464292,57.189160348503805],[-127.49339011621775,57.189338033419055],[-127.49334112410396,57.1895157066138],[-127.49330045569434,57.18969440573236],[-127.49325874355948,57.18987311677643],[-127.49320035545759,57.19004865531925],[-127.49309943312959,57.19022243754702],[-127.49292082239626,57.1903690822896],[-127.4926357814434,57.19046873974826],[-127.49242188335246,57.19058664124938],[-127.49240424338896,57.190771803209245],[-127.49239466576927,57.19095126831518],[-127.49238818507804,57.19113069810236],[-127.49237344005168,57.19131022222263],[-127.49232651092028,57.19148787167914],[-127.49224735359749,57.191662525959806],[-127.49216195775875,57.19183613041355],[-127.49207970187675,57.1920108199761],[-127.49199847209194,57.192185497795286],[-127.49189322360789,57.19235484470327],[-127.49176818396451,57.19252105436472],[-127.49163584533267,57.192686226189565],[-127.49149720743132,57.192849227777856],[-127.49135334069413,57.19301116787688],[-127.49119584953819,57.19316877926958],[-127.49101006717358,57.19331774521337],[-127.49083483646581,57.19347219549093],[-127.49067424405995,57.19362984161669],[-127.49058864574735,57.193798963576725],[-127.49057086464735,57.19398076430466],[-127.49046978924498,57.19415118358563],[-127.49033857003815,57.194318583369714],[-127.4902322648846,57.194487941106466],[-127.49025059114103,57.19466596751243],[-127.49029378941168,57.19484483151195],[-127.49035243726131,57.19502127752445],[-127.49066223946942,57.19526436184396],[-127.48991789033451,57.195085640258235],[-127.4895538856515,57.195179464518354],[-127.48938986193048,57.195329301373135],[-127.48910041623188,57.195423396254604],[-127.48885339611194,57.195542790003934],[-127.48859574439622,57.19565557842402],[-127.48832636367234,57.195759531985544],[-127.48804848201782,57.19585797681799],[-127.48776516994344,57.195949756963174],[-127.48747756847929,57.19603822233845],[-127.4871846672798,57.19612338440357],[-127.4868895203248,57.19620408742787],[-127.48659005722197,57.19628035492828],[-127.48628623457304,57.19635106639214],[-127.48597918294767,57.1964184508974],[-127.4856720702195,57.19648471439084],[-127.48536717383912,57.196554314913385],[-127.48506666143554,57.196630590797646],[-127.48477479388279,57.1967157356567],[-127.48448717976316,57.19680419450893],[-127.48419849392337,57.196891543904705],[-127.4839033781675,57.196973360722275],[-127.48359847468492,57.19704295714837],[-127.48328147967464,57.19709475436097],[-127.482956534588,57.197128705319145],[-127.48262805770561,57.197151485739816],[-127.48229829328343,57.197167554068315],[-127.48196846866917,57.19718250126884],[-127.48163977402979,57.19719967678602],[-127.48105273876955,57.197232107735665],[-127.48100189412109,57.1973100307636],[-127.48098272289127,57.19745709563467],[-127.48104500919432,57.19764807721796],[-127.48103123550452,57.19782758931916],[-127.48100292431637,57.198006145070885],[-127.48096425992667,57.198184818061],[-127.48091934006275,57.1983624409081],[-127.48087337619647,57.19854007557899],[-127.48082954240488,57.1987188071145],[-127.48081472372483,57.198898331154275],[-127.48080820401456,57.19907776126367],[-127.48079752638687,57.19925723846756],[-127.48078686522432,57.199436715507616],[-127.48077516034674,57.1996162043857],[-127.48076345535945,57.19979569328718],[-127.4807517502625,57.19997518221239],[-127.48074958896534,57.19999986818834],[-127.48073900142602,57.200154682974976],[-127.48072936680863,57.20033414850683],[-127.48071351996026,57.20051368438281],[-127.48066342767757,57.20069136596404],[-127.48058626889227,57.200865990970605],[-127.48054138744534,57.20104473453966],[-127.48053072458521,57.20122421180378],[-127.48053351329376,57.20140353684423],[-127.48053630202844,57.20158286190914],[-127.48052873688333,57.201762304184655],[-127.48049734928884,57.201942016101725],[-127.48045863525536,57.202119568990035],[-127.4804386447789,57.202299151949575],[-127.48046628297392,57.20247819590761],[-127.48052184259471,57.20265580290378],[-127.48059490994441,57.20283096979088],[-127.48066797796243,57.203006136660655],[-127.48069250316912,57.20318521592042],[-127.48069115104245,57.203364588105714],[-127.48067841736082,57.203544089139704],[-127.48066566699279,57.203723590384755],[-127.48066328755661,57.203902974269475],[-127.48068574240911,57.20408207709265],[-127.48076192788672,57.20425720882422],[-127.48086484621435,57.2044275540082],[-127.48106739644737,57.20481648366053],[-127.48104123788343,57.204997257911],[-127.48101813390457,57.20517687661607],[-127.48099504627679,57.205356495154156],[-127.48097811148774,57.20553492307558],[-127.48096847663736,57.205714389363216],[-127.48097959507167,57.20589474172528],[-127.48099378508307,57.206073938358095],[-127.48098931944575,57.20625334620354],[-127.48097451516772,57.206432871107744],[-127.48095141000994,57.20661248999844],[-127.48093043558846,57.20679320577169],[-127.48090008957145,57.20697290666151],[-127.48082697469647,57.20714524477578],[-127.48066786574073,57.20726362791674],[-127.48076990705957,57.20746425015067],[-127.48089768722221,57.207634314431914],[-127.48103885233111,57.20780198513507],[-127.48120349807057,57.20796042201233],[-127.48138448086547,57.2081130688134],[-127.481450148495,57.208283835961446],[-127.481476708532,57.20846177185153],[-127.48148575900467,57.208642148002376],[-127.48148656826353,57.2088237384822],[-127.4814894053517,57.20900418503998],[-127.48150157106993,57.20918452599214],[-127.48152926255534,57.20936469116448],[-127.48156415186789,57.20954365386687],[-127.4815959863294,57.2097237721673],[-127.48161846552651,57.20990287544134],[-127.48162017270468,57.21008109297529],[-127.48159497034884,57.210259615253],[-127.48151140937345,57.21042983046248],[-127.48148533577579,57.210612846571735],[-127.48141757644362,57.21078960875741],[-127.48135293168858,57.21096633566266],[-127.48129866955387,57.21114406599718],[-127.48125482332046,57.2113227993992],[-127.48121403200831,57.211500377235545],[-127.48117642569699,57.21168016100025],[-127.48113981963768,57.21185881246429],[-127.48110425719037,57.21203745212569],[-127.48106765045286,57.212216103618594],[-127.48102999941044,57.2123947669422],[-127.4809902932221,57.212573453536564],[-127.48094742797593,57.21275105490498],[-127.4809004195626,57.21292870317006],[-127.48084818060498,57.21310528964387],[-127.48072108386205,57.21327487631756],[-127.48059362278684,57.213435499086046],[-127.4805007497384,57.21363272304724],[-127.48039439500857,57.213776291993966],[-127.48020206648407,57.213920833427885],[-127.47999615045117,57.21406216529136],[-127.4797797024003,57.2141991319746],[-127.47955695181565,57.21433392758046],[-127.47933101415781,57.214466516854664],[-127.4791050150764,57.21459798543915],[-127.47887691625093,57.21472835637],[-127.47864138427379,57.21485432693336],[-127.47840057718382,57.214978114685955],[-127.47815551232107,57.21509858711639],[-127.47790624307041,57.215217985576636],[-127.4776398977593,57.21532412450197],[-127.47736714688372,57.21542585123629],[-127.47711145888128,57.215539715678666],[-127.47686534231488,57.21566019753033],[-127.47662345371484,57.21578287318378],[-127.47647430530957,57.21583836362581],[-127.47613755710776,57.21602712604958],[-127.475896734548,57.216150909306805],[-127.47565272498794,57.21627248607364],[-127.4754055284394,57.216391856331576],[-127.47515840012461,57.21651346732722],[-127.47491348790214,57.21663841584291],[-127.47466644275279,57.21676226694004],[-127.4744139663698,57.216879452817224],[-127.47415074209252,57.21698667036376],[-127.473874439601,57.217077219818634],[-127.47357219817584,57.217140036015586],[-127.47324833405918,57.21717955414491],[-127.47291472417287,57.21720797126002],[-127.47258329813921,57.21723972591481],[-127.47225659154581,57.21728599949669],[-127.47189569400594,57.217332656825135],[-127.4716105698998,57.21743675253404],[-127.47143154354616,57.21747015333653],[-127.47143244055638,57.2176820103131],[-127.47150236609698,57.21801864204925],[-127.47136688645313,57.21813338536747],[-127.47131538681288,57.21824942637784],[-127.47129279369969,57.21838980418033],[-127.47148407350234,57.218459396939416],[-127.47158161282778,57.21859730299808],[-127.47139531423298,57.21881911193665],[-127.4711516609096,57.21895076512158],[-127.47088841325741,57.219057976278],[-127.47060613118245,57.21915531187431],[-127.4703184448755,57.21924710261531],[-127.47003284550127,57.21933886927305],[-127.46974620059936,57.2194306470405],[-127.46945410860333,57.21951575938826],[-127.46915442844764,57.21959198833387],[-127.46884370043347,57.21965040473026],[-127.46852196792715,57.21969212900441],[-127.46816881828217,57.21975214078368],[-127.46784979687195,57.2197837440627],[-127.46756255527568,57.21983292603901],[-127.4672552658159,57.21990026799013],[-127.46671079723137,57.22002519606041],[-127.46703371583152,57.220338816985],[-127.46722278969484,57.22048578919422],[-127.46743230881914,57.22062580597566],[-127.46763674413796,57.22076812144667],[-127.4678360956314,57.22091273563177],[-127.46806077962239,57.22104249249794],[-127.46834118599872,57.22113911509099],[-127.4686428405539,57.22122204676614],[-127.46889266155307,57.22133134234851],[-127.4690531119219,57.22148872234306],[-127.46921469384037,57.2216483314575],[-127.46944478984719,57.22178363033174],[-127.46966141198548,57.22191908013506],[-127.4697630426105,57.222082724841236],[-127.4697711259469,57.22226647694666],[-127.46981318898882,57.222444242517284],[-127.46997469205087,57.22260160979041],[-127.47018324818038,57.222742754449506],[-127.47043342784177,57.22286101130345],[-127.4707119107446,57.222961013762735],[-127.47101022681221,57.22303725186577],[-127.47133681308802,57.22306721073233],[-127.47166447063653,57.223098277739666],[-127.47195384542006,57.22318470322331],[-127.47224322151006,57.223271128072874],[-127.47256114183575,57.22331799632868],[-127.47288786106532,57.22335131286244],[-127.47321552230389,57.223382375994134],[-127.47354025696416,57.22341795524304],[-127.47386503537179,57.223454654197035],[-127.47418882986302,57.22349248443125],[-127.47451260841852,57.223530314052404],[-127.474837345539,57.223565890087606],[-127.47516204008109,57.223600344808666],[-127.47548769309613,57.223632545933995],[-127.47581514284535,57.22365800001824],[-127.47614455194295,57.22368006820095],[-127.47647381518327,57.22369877421464],[-127.47680986339857,57.223705071882236],[-127.4771536374819,57.22369670853497],[-127.47747177330636,57.223722263610995],[-127.47775270498185,57.22380428783751],[-127.47801797060843,57.2239100293346],[-127.47827245589187,57.22403158604342],[-127.47851881136444,57.22415771811473],[-127.47876095445926,57.224281655348854],[-127.4790103861536,57.22440663080242],[-127.47924963261896,57.22453620491548],[-127.47945710256515,57.224675105793075],[-127.47960920889415,57.224829205220075],[-127.4797068756403,57.2249962509455],[-127.47977178034685,57.22517375601696],[-127.47982438327074,57.225354763168205],[-127.47988625938542,57.2255345444846],[-127.47997690178681,57.225707274550444],[-127.4800799176175,57.22587874367194],[-127.48019123932868,57.22605011881898],[-127.48031382031539,57.22621800357008],[-127.48045073381039,57.226381242133925],[-127.48060603750095,57.22653754656575],[-127.48081352321539,57.226676445508375],[-127.48105374761016,57.226803763715935],[-127.48127868443595,57.22693798052311],[-127.48144832534304,57.22708963783399],[-127.48157907368886,57.22725406619464],[-127.48169241832508,57.22742429647007],[-127.48181095270266,57.22759446793136],[-127.4819529794894,57.22775540533734],[-127.4821247856662,57.22790927942935],[-127.48230893964919,57.228060771498036],[-127.48250431035233,57.228207652296646],[-127.48271294322169,57.228348777602456],[-127.48293573588862,57.228480774172574],[-127.48317373274493,57.228603630098426],[-127.48343429202087,57.228720624917244],[-127.48371415655244,57.22882731139848],[-127.48400787668356,57.22891702517426],[-127.48431001904572,57.22898310173093],[-127.48462094240845,57.22900872187168],[-127.48495090979415,57.22899040608469],[-127.48528958491892,57.228956296601176],[-127.48562476735849,57.228939040938855],[-127.48595292211785,57.228954373318544],[-127.48628064191475,57.22898540388099],[-127.48660742145218,57.229018686317396],[-127.4869340709598,57.22904860640811],[-127.4872607209781,57.2290785256845],[-127.48758737150699,57.229108444146625],[-127.48791406610799,57.22913948230448],[-127.48824067409663,57.22916827862787],[-127.48856828341525,57.22919594175043],[-127.48889583303901,57.22922248373271],[-127.48922348689493,57.22925126572686],[-127.4895491832296,57.22928343219963],[-127.48987199809659,57.22932123569476],[-127.49019797392108,57.229360123424236],[-127.49052502189211,57.229400119149126],[-127.49084814424067,57.22944576380709],[-127.49116531247783,57.2294982015431],[-127.4914704845777,57.22956198527073],[-127.4917628783696,57.22964385003333],[-127.4920406132081,57.22974830138767],[-127.49229008018797,57.22987213155469],[-127.49249962786014,57.23000874750095],[-127.49266210915951,57.23016159393823],[-127.4927929598738,57.23032713199793],[-127.49291366862725,57.230498390664735],[-127.49304663763134,57.230665025390174],[-127.4931858248314,57.23083158908808],[-127.4933231157755,57.2310026583393],[-127.49348575234178,57.23115886521297],[-127.49370000289727,57.23128309475102],[-127.49398728570019,57.23136613418571],[-127.49431695216472,57.231419542969896],[-127.49464816679401,57.23145948114688],[-127.4949747121021,57.23148601970287],[-127.49530694964083,57.231499040314446],[-127.49563918740557,57.231512060083126],[-127.49596667415122,57.23153634340334],[-127.49628857407191,57.23157638390838],[-127.49660873625106,57.231625411579415],[-127.49692503401955,57.23168120872997],[-127.49723636262584,57.23174266701511],[-127.49753875277648,57.23181431592188],[-127.49783226509697,57.23189727583304],[-127.49812388173893,57.23198474084439],[-127.49841536809697,57.232068843684814],[-127.49870794411359,57.232154054433245],[-127.4989984324349,57.232239288453435],[-127.49929001044929,57.23232563038153],[-127.49958056185505,57.23241198344083],[-127.49986911339077,57.23250060081285],[-127.5001566383339,57.23258922933421],[-127.50044623705014,57.23267783347738],[-127.50073773378931,57.232761931192776],[-127.50103428937554,57.23284260723745],[-127.50133471078887,57.23291651221832],[-127.50163920692215,57.23298812776269],[-127.50194562814639,57.23305635749016],[-127.50225409552156,57.23312344202359],[-127.50256245940851,57.23318828500669],[-127.50287286938713,57.23325198277639],[-127.5032003159626,57.23330091102744],[-127.50350950729647,57.23336013725249],[-127.50370563467412,57.23349689043504],[-127.5037603026256,57.23367450379387],[-127.50378811660799,57.23385466765118],[-127.50385422001709,57.23403327069138],[-127.50394922382716,57.2342081786904],[-127.50412908518021,57.234352965359896],[-127.50436821454936,57.23447577149993],[-127.50462680603604,57.234592748483436],[-127.50487215614774,57.234715482268406],[-127.50508596442987,57.23485315144416],[-127.50529692157652,57.23499757918166],[-127.50549457664016,57.23514664364297],[-127.50566138156364,57.23530166771689],[-127.50577978235577,57.23546509544798],[-127.50584870637168,57.23563581828487],[-127.50588368925807,57.23581365761202],[-127.50589602254425,57.23599512052756],[-127.50589906492871,57.23617781135043],[-127.50590417997977,57.236360478359856],[-127.50592059815585,57.23654077335158],[-127.50593184313456,57.236721127870986],[-127.50593998750963,57.236901518079364],[-127.50595123268572,57.23708187264761],[-127.50597068051444,57.23725989085631],[-127.50601288407755,57.23743652632494],[-127.50617567140881,57.23759495942662],[-127.50641888479812,57.23771547342052],[-127.5066814899754,57.23782791670905],[-127.50692073750413,57.237952959541964],[-127.50718319679635,57.238062040501624],[-127.50746694400279,57.23815854465171],[-127.50777299206429,57.23821555571031],[-127.50810904038107,57.23821841156394],[-127.50845043899133,57.238225688995904],[-127.50871455202909,57.23832353772669],[-127.50880210486348,57.238492923920404],[-127.50874599097057,57.2386740548231],[-127.50865537485794,57.23884773612504],[-127.50860634605841,57.23902430128475],[-127.5085926867669,57.23920382199658],[-127.50844111821294,57.239356906057665],[-127.50814059726925,57.239439960343155],[-127.50788085483681,57.23955841699503],[-127.50782736681879,57.23972718611407],[-127.50787394812019,57.239909376145654],[-127.50795447502509,57.24008444913122],[-127.5080639176193,57.240256947027945],[-127.50820929113179,57.24042006283135],[-127.50844920699987,57.240535006471774],[-127.50875731992264,57.240617775293764],[-127.50902269936272,57.240721214304486],[-127.50918529213963,57.24087404150365],[-127.509305167771,57.241047539333664],[-127.50945559091343,57.2412072326759],[-127.50968550464327,57.241331257707834],[-127.5099591831798,57.241434599280495],[-127.51024205033347,57.24153447125867],[-127.51050179646504,57.2416525457454],[-127.51076145570981,57.24176837870094],[-127.51106713926542,57.241815297600034],[-127.51141209669247,57.241806832301826],[-127.51172505677891,57.2417494104366],[-127.51199708056456,57.2416532246642],[-127.51225591258994,57.24153813325895],[-127.51250825856174,57.24141639010973],[-127.51276073583647,57.24129800802278],[-127.51300794898538,57.241177444219915],[-127.51325095390182,57.24105580755308],[-127.51349604673699,57.24093414629554],[-127.51373320970235,57.240795760885554],[-127.51397585518795,57.24066515881825],[-127.51424286913101,57.24057351032963],[-127.51455039468982,57.24053632288288],[-127.51488727020727,57.24053354689986],[-127.51523131269201,57.240554228624426],[-127.51556361195259,57.24059298176416],[-127.51588199554568,57.24064646849159],[-127.51620225182627,57.24072123224387],[-127.51648923133277,57.24081992215701],[-127.51671074076016,57.24094066931323],[-127.51686317842812,57.24109808910084],[-127.51695337968316,57.24128089232716],[-127.51698148344205,57.24146665699972],[-127.51694998451154,57.24163965988513],[-127.51687286434053,57.24181319127531],[-127.51676669453543,57.241985938103454],[-127.51665009804596,57.2421576845977],[-127.51653869118721,57.24232937089548],[-127.51643553077123,57.242499840584664],[-127.51632719529594,57.24267037013078],[-127.51621672488325,57.242839803292114],[-127.51610834306746,57.24300921218964],[-127.51600310590085,57.24317970562964],[-127.5158937217766,57.24335024700315],[-127.51578951093333,57.24352072841404],[-127.51570513440001,57.243694343260955],[-127.51564473850249,57.243871043596],[-127.51559261765442,57.244047648148204],[-127.51554682085781,57.244226421563454],[-127.51550827107663,57.24440511111318],[-127.51547701279887,57.2445848373182],[-127.51545199007259,57.24476449137704],[-127.51543425904234,57.2449451821005],[-127.51543736809066,57.24515477841923],[-127.51550006845724,57.24529754446979],[-127.5157897274754,57.24527961865041],[-127.51614094394262,57.245192596764376],[-127.5164478673751,57.24524397338295],[-127.51669561893273,57.24537226459622],[-127.51684679431949,57.24557566196915],[-127.51698317758824,57.24571981600738],[-127.51715374339028,57.245653941404846],[-127.51733947855956,57.24547354581757],[-127.51755909297187,57.2453106938388],[-127.51780955166227,57.24519344619724],[-127.51807164148532,57.245081668384145],[-127.51834430102612,57.244975372634734],[-127.51862566830742,57.24487906459183],[-127.5189147265508,57.244793877021635],[-127.51921684493793,57.24472423170164],[-127.51953423036012,57.24467346602257],[-127.51985917401718,57.24463045905096],[-127.52018299965091,57.244585222185826],[-127.5204992207952,57.244531104572445],[-127.52080543581542,57.24446028694859],[-127.52094030188601,57.24438361163442],[-127.52133452135573,57.24423105646558],[-127.52158253184702,57.244104861696954],[-127.52185864604417,57.244033270294715],[-127.52217698359463,57.24403293340307],[-127.52251468936953,57.24407609071673],[-127.5228426550892,57.24413505485891],[-127.52314714690739,57.24420325947235],[-127.52344188261843,57.24428727131877],[-127.52373568064142,57.24437353549435],[-127.5240372812446,57.24444737688692],[-127.52435475321839,57.24450309635829],[-127.52468508418161,57.24454297092172],[-127.52501225420725,57.24455597672418],[-127.52533435744898,57.24451971535493],[-127.52563579173231,57.24443324758159],[-127.52586729428441,57.244309478914694],[-127.52606243611623,57.24415810779479],[-127.52631295061063,57.24404308501918],[-127.52662389472961,57.243960988215335],[-127.5269438574593,57.243949410470535],[-127.52727062118342,57.24397810975279],[-127.52759919079774,57.24402584469618],[-127.52791602239633,57.24409165229236],[-127.52820757692226,57.24417344857248],[-127.52847528571107,57.244281306292784],[-127.52871798654925,57.244411876081024],[-127.52892282160386,57.24455521891369],[-127.52906099152004,57.24471727641025],[-127.52906013338347,57.24490337786807],[-127.52888744540915,57.24504552322641],[-127.52864304827825,57.245209805071035],[-127.5284569338301,57.245327443862266],[-127.5283047950993,57.24549064823577],[-127.52820676358827,57.2456588262048],[-127.52823168950111,57.24584126375402],[-127.52833871918219,57.24600256455533],[-127.5285994172623,57.246116109316596],[-127.52890666339708,57.24620108430798],[-127.52922448523243,57.246238851674526],[-127.52964596131696,57.24622384001924],[-127.5298745038111,57.24625928550782],[-127.5302348968017,57.24635036276598],[-127.53050128168542,57.2464246012024],[-127.53080980061833,57.246489378326146],[-127.5311251813764,57.246543985197945],[-127.53145007664507,57.246577180392286],[-127.53178263705851,57.246594590638175],[-127.53211610802798,57.2466086262847],[-127.5324447022058,57.24663056540051],[-127.53276472237897,57.24667166165448],[-127.53309237141004,57.24674741993826],[-127.53333550318318,57.24686228223941],[-127.53339380046486,57.24702302885615],[-127.53336311810818,57.24721508530652],[-127.53339941911445,57.247396268171094],[-127.53345736290137,57.247573834528396],[-127.53352043710804,57.24775021977912],[-127.5335928332135,57.24792649587075],[-127.53367759626268,57.24810038505531],[-127.53377776650068,57.24827073066659],[-127.53389749065386,57.24843748410252],[-127.53403471224749,57.24860066939883],[-127.53418428488405,57.24876146782608],[-127.53434310703437,57.248919915678435],[-127.53450706052956,57.24907718221261],[-127.53467199878405,57.24923331599877],[-127.53483793838181,57.249388316838385],[-127.53500902598705,57.24954213612669],[-127.53518524505924,57.24969477403748],[-127.53536556726208,57.24984624260548],[-127.53554994764737,57.24999542130108],[-127.53573640283615,57.25014457544275],[-127.53592379788861,57.250291476251604],[-127.53611228436172,57.25043948506544],[-127.53630181728137,57.25058748136755],[-127.53649238007237,57.25073546534794],[-127.5366838827172,57.25088119597694],[-127.53687850523357,57.25102688975056],[-127.53707620263013,57.25117142614189],[-127.53727695833634,57.25131480533148],[-127.53748072732975,57.2514559067921],[-127.5376906446529,57.251594693702614],[-127.53790663210802,57.251730045909376],[-127.53812979636947,57.251863071427096],[-127.53835603560822,57.251994939438134],[-127.53858533324767,57.25212565012093],[-127.53881354234248,57.252255252180646],[-127.5390408147059,57.25238710696655],[-127.53926398674413,57.2525201306206],[-127.53948202997927,57.25265433525197],[-127.53969298959818,57.25279310699583],[-127.53989677537699,57.25293420486151],[-127.540092465629,57.25307988180764],[-127.54028301037599,57.25322674004881],[-127.54046747135855,57.253377032730484],[-127.54064678676573,57.25352850675556],[-127.54082201821264,57.25368114965649],[-127.54098695694704,57.25383615553937],[-127.54113965277834,57.25399578947858],[-127.5412851292151,57.2541566292707],[-127.54143065203289,57.25431858943541],[-127.5415813066183,57.25447936803153],[-127.54173503600555,57.254638989252705],[-127.54188169800763,57.25480317770498],[-127.54202731616272,57.25496737831773],[-127.54217703765086,57.25513040944759],[-127.5423369026902,57.25528771577297],[-127.54251407042669,57.25543697085628],[-127.54271365958024,57.25557587224603],[-127.54294375088902,57.25569984046489],[-127.5432003206458,57.25581116484645],[-127.54347622174595,57.2559132925898],[-127.54376126666652,57.25601082782445],[-127.54404731294068,57.25610722961223],[-127.54432629202073,57.25620819831132],[-127.54460210848475,57.25630808268606],[-127.54488296655848,57.25640454390028],[-127.54515978576924,57.25650329427545],[-127.54542446450516,57.256610034663595],[-127.5456659392701,57.25673274302964],[-127.54611729253021,57.25694041577685],[-127.54634776139795,57.25727849438528],[-127.54642948422658,57.25745241340669],[-127.54648438479231,57.25763001221668],[-127.54653420035054,57.25780991316838],[-127.54656745482852,57.2579911307064],[-127.54657677866223,57.25817038869649],[-127.54655180249728,57.25834780955937],[-127.54649034483484,57.25852117692094],[-127.54640188161808,57.25869374201507],[-127.54629361729664,57.25886429869148],[-127.54617395418062,57.259034989828834],[-127.54604797784863,57.25920351327244],[-127.54592507419552,57.25937087929256],[-127.54580841977301,57.259539292518],[-127.54569501930213,57.259711030411054],[-127.54558478222516,57.25988385194679],[-127.54547349890814,57.2600566857442],[-127.54536112405685,57.260228411282846],[-127.54524457168033,57.26039906495988],[-127.54512168935179,57.26056755109753],[-127.54499043625772,57.2607338937444],[-127.54484961465539,57.2608947438404],[-127.54469512184399,57.26105127077924],[-127.5445279743187,57.26120234147299],[-127.54434287169234,57.2613457762474],[-127.54413666596204,57.26148049107428],[-127.54391043097976,57.261607594247664],[-127.54366837648158,57.261728157110596],[-127.5434126216615,57.26184327565983],[-127.5431484170536,57.261955130073396],[-127.54287898896878,57.26206592440921],[-127.54260844020926,57.26217448927243],[-127.54233900901492,57.262285282517055],[-127.54207593389512,57.26239936354252],[-127.54182231759134,57.26251669587301],[-127.54158143158888,57.26264060422848],[-127.54134900427894,57.26276889683028],[-127.54111992057983,57.262902754947305],[-127.54089828339711,57.2630410092893],[-127.54069132708882,57.26318357482151],[-127.54050120415279,57.26333154735937],[-127.54033510397875,57.263483721401485],[-127.54019523629067,57.263643434225536],[-127.54008157279785,57.26380956520062],[-127.53998789144552,57.26398218753594],[-127.53991201149108,57.264159084803936],[-127.53984973976783,57.26433918526868],[-127.53979578062028,57.264519188029105],[-127.53974793658645,57.26469687681372],[-127.53970633118608,57.26487449228594],[-127.53967719895245,57.26505308224223],[-127.53965642488279,57.26523269504977],[-127.5396418565969,57.26541223495267],[-127.53963045289011,57.26559285874557],[-127.53962004935947,57.26577234975435],[-127.53960652610415,57.26595187744541],[-127.53958780885034,57.266131466190835],[-127.53956915313198,57.26631217528921],[-127.5395598681802,57.266493895356696],[-127.53955265739957,57.26667559107699],[-127.53954444623601,57.26685841963227],[-127.53952681880057,57.26703911673954],[-127.5394966552323,57.26721771904899],[-127.53944561305187,57.267393203509165],[-127.53937054370682,57.26756448602491],[-127.53925470044038,57.26772840011317],[-127.53909912825509,57.26788493338256],[-127.5389184823884,57.26803727673246],[-127.53872637280898,57.26818863339995],[-127.53853842700423,57.26833994089595],[-127.53836832888668,57.268496643868595],[-127.53822957029188,57.268658584006666],[-127.53811389913092,57.26882697933919],[-127.53800764354108,57.26899750617917],[-127.5379087007579,57.26916906817378],[-127.53781504153618,57.26934281021362],[-127.53772551369738,57.269516503717846],[-127.53763812112949,57.26969129317636],[-127.5375496822481,57.2698660948687],[-127.53746019703871,57.27004090879246],[-127.5373654430622,57.270213542368516],[-127.53726542026334,57.27038399558447],[-127.53715808257357,57.270553413486496],[-127.53704023638471,57.270719591398475],[-127.53691188158969,57.27088252929076],[-127.53674888281967,57.27103578382457],[-127.53654710736674,57.27117940332254],[-127.5363221955523,57.27131544635055],[-127.53609092351104,57.27144820036835],[-127.53594096803327,57.27161587476651],[-127.53566549744212,57.27173345124701],[-127.53560018826524,57.27181269069066],[-127.53560670601257,57.27207830527281],[-127.53566775599207,57.27225471719778],[-127.53573605924576,57.272431044123365],[-127.53578160432052,57.2726087588205],[-127.53581370167898,57.272787752194816],[-127.53583754594163,57.27296796337486],[-127.53584577751775,57.2731472364973],[-127.53583742878756,57.27332670396231],[-127.53581869022037,57.27350629321547],[-127.53578647460212,57.27368604043004],[-127.53573549678624,57.27386376540811],[-127.53566575651914,57.27403946812695],[-127.53559827032318,57.27421962865684],[-127.5355319191476,57.27440201799343],[-127.53545928166167,57.27458335990732],[-127.5353709115117,57.27476040187368],[-127.53525935871994,57.27492874688588],[-127.5351172348483,57.275085118240064],[-127.53493608917566,57.27522625162176],[-127.5347212515761,57.27535544763072],[-127.53448106584786,57.27547372946303],[-127.5342208454418,57.27558439795802],[-127.5339469660839,57.27569074155454],[-127.53366574193745,57.275794928398106],[-127.53338445471282,57.27589799430549],[-127.53310746692681,57.27600437248981],[-127.53284210522457,57.27611621940988],[-127.5325914900669,57.27623349864705],[-127.5323462317148,57.27635519901233],[-127.53210310810604,57.27647799501832],[-127.53186317664772,57.27660299537951],[-127.53162531843033,57.276727971066634],[-127.53138750354785,57.27685406687179],[-127.5311496870967,57.276980162258084],[-127.53091186907685,57.27710625722549],[-127.53067291403103,57.277230122911405],[-127.53043085346941,57.27735402441958],[-127.53018658192086,57.27747458810272],[-127.52993911514737,57.27759294649948],[-127.5296863168578,57.27770800346281],[-127.52940089992312,57.27781222994952],[-127.529045084936,57.277894855882295],[-127.52867429613659,57.2779664448679],[-127.52835051273172,57.27804533209734],[-127.52801012821462,57.27822867081179],[-127.52802774319534,57.278305818718756],[-127.52811111366874,57.27841807397465],[-127.52820142735025,57.278573969663526],[-127.52833570172498,57.278739442269476],[-127.52850129704166,57.27890903376189],[-127.52868465695153,57.27908178107958],[-127.52887319759036,57.279254467751954],[-127.52905444105495,57.279426118263146],[-127.52921580294142,57.27959351627748],[-127.52935519135934,57.27975668627193],[-127.52949358001308,57.279920988883624],[-127.52962991146302,57.280085315392704],[-127.52976727328605,57.28024962976941],[-127.5299056206446,57.28041281146937],[-127.53004709001381,57.28057595661405],[-127.53019059075943,57.28073795686147],[-127.53033819793139,57.28089878797735],[-127.5304909125223,57.28105731719455],[-127.53064979206793,57.28121465321053],[-127.53082613973639,57.28136730079661],[-127.53103434650674,57.28151172859025],[-127.53127399197466,57.28163785175684],[-127.5315417023825,57.28173898314092],[-127.53182655015131,57.28182758199744],[-127.53212449137504,57.28190593761152],[-127.53243055449218,57.28197971334719],[-127.53273960493107,57.28205009025371],[-127.53304660975031,57.28212161144102],[-127.5333545716636,57.282190878596246],[-127.5336746256385,57.28225103502296],[-127.53399762169651,57.28230667198161],[-127.53431357240673,57.28236799596503],[-127.53461034210737,57.28244299658157],[-127.53487572186309,57.2825374222691],[-127.53508863477434,57.28266945715397],[-127.5352651419112,57.2828254605688],[-127.53543462085455,57.28298715145213],[-127.53562429592924,57.283135152728754],[-127.53583447053593,57.28327618716617],[-127.5360486453293,57.2834138112175],[-127.53625570196695,57.283554881584145],[-127.53644535459291,57.283701761003584],[-127.53661348115607,57.28385561894224],[-127.53678069834042,57.284012850571365],[-127.53694594841473,57.284172347227745],[-127.53710504774195,57.284334157977334],[-127.53725283310554,57.284498343392926],[-127.53738401784405,57.2846627233732],[-127.53749661665648,57.284829563393245],[-127.53758540440353,57.28499780371667],[-127.5376214908112,57.28517226755381],[-127.53760081479138,57.28535524472039],[-127.5375386044098,57.285537588000786],[-127.53745229385929,57.28571460856891],[-127.53734482379622,57.2858817875974],[-127.53719660547694,57.28604271794852],[-127.53702534865283,57.286198312904204],[-127.53684780278361,57.28635286029697],[-127.53668388864313,57.28651061087458],[-127.53653274059381,57.28667605912663],[-127.53637739547646,57.286840435327235],[-127.53620184588564,57.28699271631772],[-127.53598911187314,57.28712413238193],[-127.53573599857961,57.28723247861392],[-127.5354637551818,57.287329837690194],[-127.53517666758422,57.28741952251779],[-127.53487996104005,57.287502592893006],[-127.53457690862903,57.287582373653606],[-127.5342717179608,57.28766105765655],[-127.53396969242523,57.28774082497609],[-127.53367295239707,57.28782277190076],[-127.53335594682012,57.28789150231211],[-127.53305476715266,57.28796677331242],[-127.53283755142584,57.28809038907816],[-127.53270740448126,57.28826231374113],[-127.53252862239667,57.28841238538559],[-127.53228975329893,57.28853961658],[-127.53203408265476,57.28866255938898],[-127.53176119444588,57.288770007847184],[-127.5314717424352,57.28885298562806],[-127.53116324752106,57.28890143192424],[-127.53083704243696,57.288922057478445],[-127.53049985961283,57.28892823643573],[-127.53015943716701,57.28893108912033],[-127.52982356934244,57.28894397742027],[-127.52950209715935,57.28897911834792],[-127.52919752737262,57.28904769348443],[-127.52890202056503,57.28913522043387],[-127.52860646758097,57.28922162617423],[-127.52829972913283,57.28928798233964],[-127.52797950612485,57.28932871029044],[-127.5276535926386,57.28935717197241],[-127.52732430500595,57.289378945718326],[-127.5269917777215,57.28939739315252],[-127.52665914397984,57.28941359883685],[-127.52632760076588,57.28943091204924],[-127.52599831174255,57.28945268246666],[-127.52566902234412,57.2894744520573],[-127.5253397325706,57.28949622082138],[-127.52501039770404,57.28951686820831],[-127.52468115189822,57.28953975586994],[-127.52435195039672,57.28956376325641],[-127.52402053890204,57.28958443229048],[-127.523688097594,57.289605112451824],[-127.52336001370077,57.289631346487184],[-127.52303870843572,57.28967095379317],[-127.52272758241632,57.289731742412194],[-127.5224330849653,57.28981924287302],[-127.5221674622045,57.28992770775373],[-127.52191667909949,57.290043847315275],[-127.52167131473949,57.29016552884902],[-127.52143338340383,57.29029160794075],[-127.52120288508394,57.29042208463223],[-127.5209819119482,57.29055693469253],[-127.52077041942657,57.29069503761767],[-127.52056631538048,57.29083641771994],[-127.52036747966525,57.2909799785506],[-127.52017397348894,57.291126840495856],[-127.5199867372186,57.29127475053676],[-127.51980275492632,57.29142598580367],[-127.51962395193434,57.29157716078285],[-127.51945141898085,57.2917293839266],[-127.51929471097102,57.291888149894746],[-127.51915268145713,57.29205010881802],[-127.51901487454153,57.29221426081516],[-127.5188137668839,57.29237914597485],[-127.51881051825771,57.29274128971089],[-127.51880211318178,57.29292187962952],[-127.51879372463205,57.29310246938148],[-127.5187894708308,57.29328301126243],[-127.51879249033503,57.29346346891762],[-127.51880689017962,57.293642673700475],[-127.51883571469125,57.293819469270744],[-127.51888219169346,57.2939960603744],[-127.51896386803693,57.29417000157453],[-127.5190776833769,57.29434244933861],[-127.51921219641774,57.29451353615295],[-127.51935393968179,57.29468341801247],[-127.51949050300536,57.294853359784575],[-127.51961044445122,57.29502349409102],[-127.51970129752381,57.29519284438875],[-127.5197496331733,57.295363808530986],[-127.51974917874901,57.29553533818653],[-127.51971867740096,57.29570833718933],[-127.51966538591505,57.295882721411274],[-127.51959345570738,57.29605844271061],[-127.51950384362655,57.29623324781596],[-127.5193996829162,57.296408221456865],[-127.51928511382252,57.296582194550325],[-127.51916005844303,57.29675404689417],[-127.51902977590508,57.2969248386077],[-127.51889417705459,57.29709232855576],[-127.51875842677711,57.29725645689888],[-127.51861845097844,57.29741839189453],[-127.51846899030647,57.297577073355214],[-127.51830910406771,57.297734754290396],[-127.51814082358686,57.29789029006679],[-127.51796517847374,57.29804366873158],[-127.51778218527735,57.29819489006216],[-127.51759499413677,57.29834503864596],[-127.51740253081665,57.29849300581832],[-127.51720685468932,57.298638767728164],[-127.51700905655831,57.29878343281751],[-127.51680804561185,57.29892589261736],[-127.51659752139554,57.29906397782535],[-127.51637748387856,57.29919768839429],[-127.51615215746088,57.29932921758651],[-127.51592158658943,57.299459685936775],[-127.51568993996065,57.29958904523419],[-127.51545829176344,57.299718404135874],[-127.51522876251643,57.29984885921691],[-127.515004519087,57.299981494979455],[-127.51497511855261,57.29999977186624],[-127.51478661905449,57.300117420312226],[-127.51457717174597,57.30025661088638],[-127.51437087318456,57.300396885839575],[-127.51416573609906,57.300540510287234],[-127.51396371995858,57.3006840983825],[-127.51376491360156,57.300829891269125],[-127.51357133216342,57.30097674462723],[-127.51338302007879,57.30112577904556],[-127.51320099598283,57.30127586171677],[-127.51302627310208,57.301426980978064],[-127.51285994227493,57.30158024535356],[-127.51274388214823,57.30174414043128],[-127.51270534996719,57.301925078420126],[-127.51267309039166,57.30210706514688],[-127.51260846347444,57.302284940901515],[-127.51253653312537,57.30246177979728],[-127.51246980098776,57.30263855872148],[-127.51242385837296,57.30281621895831],[-127.51241733629413,57.302992303520114],[-127.51248658925753,57.30316751423642],[-127.51257872616426,57.303343582100496],[-127.51262621566525,57.30352016489055],[-127.51262783893321,57.30353472019889],[-127.51263954392883,57.30369938386278],[-127.51264045891197,57.30387986711178],[-127.51263614707167,57.304059289591365],[-127.51263809190004,57.30423976101472],[-127.51264934414476,57.30441900403684],[-127.51266271720384,57.30459934370462],[-127.51266671076742,57.304778670497974],[-127.51265092631819,57.30495710434666],[-127.51260395188068,57.30513477685538],[-127.51254762501681,57.305312557225115],[-127.51250692318344,57.30549127848122],[-127.51248702927563,57.30567088087237],[-127.51247648730215,57.30585037543947],[-127.51246597298758,57.30603099079314],[-127.51244500433147,57.306209484562345],[-127.51240633312729,57.306387061401686],[-127.51234174209402,57.306566058206705],[-127.51224787491674,57.30673978714093],[-127.51211505172179,57.30690051215759],[-127.51185901587166,57.30701893514569],[-127.51160074119117,57.30713289910031],[-127.51133920893075,57.30724353682894],[-127.51108939783623,57.307361886567094],[-127.51085128015355,57.307486827620664],[-127.51061740254795,57.307613961567746],[-127.51038568851376,57.30774331234331],[-127.51015821454762,57.30787485605147],[-127.50993598292406,57.30800746009458],[-127.50971801907825,57.30814337788222],[-127.5095116600841,57.30828364608072],[-127.50943393583835,57.30834059467422],[-127.50931482945336,57.3084282886408],[-127.50912543406041,57.30857732969008],[-127.50891938042483,57.30872544101945],[-127.50871652026566,57.30887575745776],[-127.50855230480968,57.3090312345499],[-127.50846013688621,57.30919597264331],[-127.5084493813845,57.30937098528981],[-127.50848874650217,57.309552148063645],[-127.50853684090738,57.30969173037572],[-127.50855211755878,57.309736398021975],[-127.5086144426066,57.309920660014406],[-127.50864852065047,57.31009964147569],[-127.50862726635374,57.31027141176915],[-127.5084920291857,57.3104243134323],[-127.50826163069013,57.310561492929935],[-127.50801874288985,57.310697694518076],[-127.50781461748835,57.310842418763706],[-127.50773669194798,57.3108948843568],[-127.50760213956467,57.31098611760376],[-127.50742215007772,57.31113729034358],[-127.50731438861887,57.311302206992416],[-127.50723605397624,57.311475754123066],[-127.507170267395,57.31165139921999],[-127.50711499652455,57.311830286739735],[-127.50707115552251,57.31200904294077],[-127.5070367396188,57.312189933038646],[-127.50700958374688,57.31237073974522],[-127.50698966040797,57.31255034229672],[-127.50698007657013,57.31272870500437],[-127.5069829976024,57.31290804516783],[-127.50699734937118,57.313087254042344],[-127.5070179150903,57.31326639155671],[-127.50704269547523,57.313446601763424],[-127.50706741525964,57.31362569160415],[-127.50708804243251,57.313805949573016],[-127.50710237841672,57.31398515875679],[-127.50712936919184,57.3141687069287],[-127.50715951144568,57.31435334000573],[-127.50714888120172,57.31453171501102],[-127.507053570313,57.31469648873288],[-127.50688816027417,57.31484861456663],[-127.50668300585555,57.31499447013958],[-127.50646739351612,57.315138203307434],[-127.50626855509238,57.315286227877124],[-127.50611468675481,57.3154415834876],[-127.50602682349046,57.31561075535665],[-127.50598918728434,57.315789440403414],[-127.50597251367913,57.315972369179896],[-127.5059485180292,57.316154260941595],[-127.50588794579211,57.31633096713092],[-127.50579085728639,57.31650360808605],[-127.50567922892878,57.31667641585583],[-127.50556963238736,57.31684807913728],[-127.50548189600454,57.3170206125799],[-127.50543474085188,57.317194922500555],[-127.50542925847974,57.31737211751413],[-127.50544977497441,57.31755013531136],[-127.50548904593758,57.31772905901491],[-127.50553868596909,57.317907863747806],[-127.50559046433658,57.31808776504426],[-127.50563699799321,57.31826660545046],[-127.50567209976845,57.31844557706709],[-127.50569480006118,57.31862581211948],[-127.50571437659157,57.318806083046546],[-127.50573810755056,57.31898630632025],[-127.50577316627292,57.31916415743005],[-127.50582896916076,57.31934064938486],[-127.50590237584407,57.31951581820534],[-127.50598418023097,57.31969313280945],[-127.50607735730468,57.31986919575884],[-127.50618495950557,57.3200417298053],[-127.50631305271317,57.32020730199708],[-127.50646261222893,57.32036365889041],[-127.50666430989712,57.320498116182854],[-127.50693253709878,57.32060714506319],[-127.50721823692167,57.32071148833657],[-127.5074702033578,57.32082967171002],[-127.50766701537592,57.32097203136711],[-127.50784133327058,57.32112361801602],[-127.50800341035952,57.32128095062371],[-127.50816043674105,57.32144170440316],[-127.50832251649464,57.32159903665724],[-127.50851028953113,57.32174934678835],[-127.50872377266859,57.32189263449267],[-127.5087978459661,57.32205770474641],[-127.50876970535573,57.32223964569275],[-127.50875302563516,57.322422575968055],[-127.50880676973988,57.322599091007966],[-127.50888850564989,57.32277416307158],[-127.50899606783136,57.32294557482357],[-127.50915098360085,57.32310523093805],[-127.50938022574375,57.32325282097913],[-127.50945635381512,57.323443652682606],[-127.5095146069013,57.3235763930043],[-127.50941695667603,57.32376137615461],[-127.50924671366818,57.323923651197696],[-127.50901657481822,57.3240428920798],[-127.50875141293213,57.32414347661353],[-127.50743146327552,57.324849242317235],[-127.50720126725925,57.32491466798588],[-127.50686979307395,57.3250204946993],[-127.50643640320177,57.325151033643],[-127.5060514247293,57.32532361719464],[-127.50571889676134,57.325429453053424],[-127.50539586984404,57.32556544867345],[-127.50519364415288,57.32570790556758],[-127.50496379109782,57.3258349836464],[-127.50471381106942,57.32595220223938],[-127.50445320455911,57.32606393669586],[-127.50418515693615,57.32617127153512],[-127.50391391155308,57.3262764002735],[-127.50364269219023,57.3263826492419],[-127.50337573125381,57.326491091049256],[-127.50311723880682,57.32660391969213],[-127.50287144727648,57.32672220784669],[-127.50264477661503,57.32685148755792],[-127.50243621297184,57.32699177053613],[-127.50224033366788,57.327137513462425],[-127.50205186495833,57.32728653456596],[-127.50186337815703,57.327435555607096],[-127.50167490650519,57.32758457620537],[-127.50149901458171,57.32773681589286],[-127.5013241683705,57.32788904338397],[-127.50113357069633,57.328036966434915],[-127.50093127195672,57.328178296453245],[-127.50072372527653,57.32831856507505],[-127.50051199436709,57.32845776011207],[-127.50024528583437,57.32867942346148],[-127.4999116904058,57.32873256498113],[-127.4996015914556,57.328722655679584],[-127.49933232505248,57.32861474365582],[-127.49906471441555,57.3284956012195],[-127.4987590908148,57.32844079494459],[-127.49843252425204,57.32840864904345],[-127.49809904660734,57.32838555000681],[-127.49776069132993,57.3283703534741],[-127.49742271528434,57.328365241614904],[-127.49708830353484,57.32837129919062],[-127.49676264157648,57.32838846708215],[-127.49644828995469,57.32842904821416],[-127.49614126850231,57.32849757242624],[-127.4960086738831,57.32853495911323],[-127.49584113750886,57.328582833815894],[-127.49554426166489,57.3286714207027],[-127.49524931381099,57.32875662165277],[-127.4949596548773,57.328844003874316],[-127.49467329492794,57.32893583225925],[-127.49438899465505,57.329027636556724],[-127.49410154094797,57.32911835503529],[-127.49380975510935,57.32920463780211],[-127.49351363721149,57.329286484827456],[-127.49320548539947,57.32935277275317],[-127.49287964259749,57.32939235488741],[-127.49254976650536,57.32938153275893],[-127.49231526665216,57.32925863680309],[-127.4921142262029,57.3291140592187],[-127.4918552080376,57.32900153112799],[-127.49161045576093,57.328882113836734],[-127.4912263200801,57.32862638535919],[-127.49279492736989,57.33272746266905],[-127.49142463450585,57.33378230006058],[-127.48945481112614,57.335297973523225],[-127.48355012292598,57.33838733073836],[-127.47032426889281,57.346410751378855],[-127.46081689965219,57.352283836168795],[-127.45710622209509,57.357751225598086],[-127.45680116303654,57.36095650473165],[-127.45503889442125,57.36490442429749],[-127.45414292351799,57.36942572498322],[-127.45895157123165,57.37377618342823],[-127.46088574674089,57.37472334474147],[-127.46681441090709,57.38072037207297],[-127.46977420894265,57.38663381893392],[-127.46476515292852,57.39130884512785],[-127.4544213449213,57.394840948651535],[-127.44410172791332,57.396093799621106],[-127.43466796058573,57.395506471212876],[-127.43362876801868,57.395751005092535],[-127.4252276582951,57.39777071008003],[-127.41528844232333,57.40090066794012],[-127.40678336769125,57.402642257721716],[-127.39524257294026,57.405563581125904],[-127.38982812150158,57.408006696154374],[-127.38878397828788,57.40847515094049],[-127.37810598068816,57.414919661450796],[-127.37553018356707,57.42008593296626],[-127.37201421014947,57.42566559064852],[-127.37068236389408,57.42698897353644],[-127.36304168596244,57.42963353891296],[-127.35482437789993,57.43080367949389],[-127.34154265099268,57.43577414589991],[-127.33331131167024,57.43653945947875],[-127.32491399026097,57.435539005019486],[-127.31099878513788,57.43743631630496],[-127.30594209855715,57.441540637666826],[-127.30423885486641,57.444580129703624],[-127.30265809448603,57.45151102290218],[-127.30182424310057,57.45864981246057],[-127.30424354990421,57.464796743078864],[-127.31166262630224,57.47146801468316],[-127.31709896535719,57.47570114480017],[-127.32252538881083,57.479584368297274],[-127.3206045645928,57.485774648197136],[-127.3134834128346,57.48858152950506],[-127.30469919859966,57.489063454750195],[-127.29851077259951,57.49117859688963],[-127.29942847846857,57.493447808737756],[-127.30051800469526,57.49429813673572],[-127.30184543602711,57.49599821429798],[-127.30658784753167,57.501718729137195],[-127.31381979387183,57.505656275728455],[-127.31848625997226,57.50560968657789],[-127.32342388492033,57.50744384449677],[-127.32333405109125,57.51122099375495],[-127.32335712710581,57.515212296363295],[-127.32525659674558,57.51817118377924],[-127.32668913648418,57.519744432824034],[-127.32688108986014,57.52568949469381],[-127.32473058133806,57.53136212637584],[-127.32175914567921,57.54126781521603],[-127.31952989314087,57.547909973630546],[-127.32035430509185,57.55373224968631],[-127.32209110893206,57.55485406252958],[-127.32665717039708,57.558073362438094],[-127.33064773032255,57.56322690588386],[-127.32921219323899,57.56478423457523],[-127.32168426898049,57.56851066614314],[-127.32177898227852,57.57146988137731],[-127.323235337901,57.57706168941749],[-127.32032337603644,57.57908222968634],[-127.31648242253952,57.578609266569785],[-127.31113957762554,57.577747450994565],[-127.30340059171144,57.57838020662638],[-127.29800288153275,57.57911510087698],[-127.2893002725742,57.57954120812669],[-127.2870607148257,57.57932982615537],[-127.28573920010098,57.57780879705128],[-127.28065882920401,57.57853091977954],[-127.2771991635435,57.58004449821779],[-127.26954826246188,57.58011826028694],[-127.26624911188222,57.58003331856003],[-127.26230670416086,57.57966739957952],[-127.25788853737288,57.58119859271968],[-127.25406544333285,57.58482300315107],[-127.24777322257529,57.587681277283096],[-127.23971070554921,57.58820569131386],[-127.23545108664239,57.588012371606446],[-127.23101914923461,57.589085309913195],[-127.22725368491116,57.59116553524993],[-127.22072205031414,57.593280209572804],[-127.21593096093832,57.592974552742476],[-127.20924057517949,57.593322998578216],[-127.20334746531591,57.59548478124855],[-127.19797729182146,57.597291724033724],[-127.19422113811814,57.59978354194542],[-127.18860349941998,57.604112952952825],[-127.18307783973911,57.60438678658981],[-127.17644834708496,57.603127353992676],[-127.17344184160922,57.60206869752562],[-127.16823412671393,57.5984550356495],[-127.16460493629317,57.594208352709806],[-127.1605803306986,57.59086206798423],[-127.15900833713809,57.58790680136121],[-127.1553657826858,57.58308596518248],[-127.15101885523241,57.579634621024645],[-127.14696473254982,57.57522083481158],[-127.14450062033478,57.574497715379735],[-127.13886494549097,57.57048311174493],[-127.14135564921276,57.564523616898136],[-127.14313454203077,57.5596017828053],[-127.14366825342624,57.555767098683276],[-127.14356211379764,57.552000757602784],[-127.14010010990627,57.54963581452819],[-127.13847060999296,57.548277529209976],[-127.13889133643818,57.54421964129771],[-127.14206755541638,57.54002134063379],[-127.14497525559315,57.53771787536399],[-127.14556546735196,57.53594575375775],[-127.1434812213006,57.53356000468341],[-127.13845467236796,57.53206072493108],[-127.12667737270188,57.53238607143942],[-127.11066544304457,57.532961350660834],[-127.10462339821142,57.53335291793936],[-127.09762445770087,57.533572784096],[-127.09041751431147,57.533973385732374],[-127.08373974903405,57.534360277317866],[-127.07788110254118,57.53360999848867],[-127.0771145889834,57.53270138317298],[-127.0745118692942,57.53055202445347],[-127.07155583658565,57.52275483347207],[-127.06982671245207,57.51739628894098],[-127.06694870770525,57.51279149501147],[-127.05958082654729,57.51073418430188],[-127.05032553859948,57.50983060072434],[-127.04234052322143,57.508629323844495],[-127.0354622480274,57.50936517443633],[-127.03071838580301,57.51054142046647],[-127.03081938471725,57.51476508593862],[-127.0283757945937,57.519008634172025],[-127.02169311181473,57.52344649975712],[-127.01552601529545,57.52737778808587],[-127.01265170953396,57.53139118780228],[-127.00970456374209,57.53701059105032],[-127.00182704853863,57.54060453480857],[-126.99147011307203,57.54267394162047],[-126.97800743202565,57.54361751695681],[-126.97268056460304,57.54291243955368],[-126.96542563647941,57.54125259179268],[-126.95539764760376,57.539199876980156],[-126.94667279942993,57.53828512193315],[-126.9357591613292,57.53926885801605],[-126.93088366916814,57.53969798699769],[-126.92549809307573,57.54098258382283],[-126.91798924229049,57.542461130834454],[-126.9128011147506,57.54312496121678],[-126.90532754471354,57.54625286625853],[-126.90337542864232,57.54928885655163],[-126.90054249343568,57.55107514771666],[-126.89232177936435,57.554099785622434],[-126.88311541084217,57.55574924911296],[-126.87515159889115,57.555963732383205],[-126.86498017132989,57.557107075978074],[-126.85681832976317,57.558012375686936],[-126.85077735687578,57.55873310361509],[-126.8421916425966,57.5596940419288],[-126.8336142880468,57.561102825996336],[-126.82983320559656,57.5634676025849],[-126.82734408895477,57.56650584396916],[-126.82439699761647,57.5681207970846],[-126.82080484418918,57.56917463503016],[-126.81762182924628,57.56947242753179],[-126.80636841678023,57.570043900864114],[-126.79334181451459,57.57240098037057],[-126.78625996786052,57.57443449794297],[-126.78386589681219,57.57589725816288],[-126.78353332710809,57.576101039157315],[-126.78347186466257,57.576214640269775],[-126.78336493878766,57.57650677446503],[-126.78335004938572,57.5766974589404],[-126.78336066082541,57.5768061479477],[-126.78295065474317,57.57690724064916],[-126.78280192405191,57.57694736262949],[-126.78246859960122,57.57711526858486],[-126.78182377997733,57.577445343010716],[-126.78144995347256,57.57767851312741],[-126.78135009543074,57.57780691553585],[-126.7812783885922,57.57788021477554],[-126.78104647010068,57.57789391910681],[-126.78077694798282,57.577910087633136],[-126.78070479461239,57.57791051413693],[-126.7805908146791,57.577912308955014],[-126.78017154046277,57.5779192707921],[-126.77944376299368,57.57792917336668],[-126.77905915801766,57.57799534826544],[-126.7789826399382,57.57808885540494],[-126.7789854036943,57.57817292570796],[-126.77890192412012,57.578284412346854],[-126.77863375357657,57.5784171686208],[-126.77826810267372,57.578540408375225],[-126.77796991512817,57.57863858436554],[-126.77782030203798,57.57868767516626],[-126.77766620301746,57.57877266917266],[-126.77734058880908,57.57896181879165],[-126.77706284494086,57.57913835329747],[-126.77689764455137,57.57929516568225],[-126.77674485236041,57.579342031658335],[-126.77655680494011,57.57940480091165],[-126.77635574251774,57.579495675285976],[-126.77623873773183,57.579553541883485],[-126.77609778387823,57.579617154875656],[-126.77580854527055,57.57974442346933],[-126.77547127984877,57.579875336868966],[-126.77516148663864,57.57996909004551],[-126.77500984160798,57.580021553062366],[-126.77480339705535,57.58010572972666],[-126.77462715331221,57.58018300202573],[-126.77445428372945,57.580271465868705],[-126.77433217312047,57.58033608765995],[-126.77417206489447,57.580435687890066],[-126.77397689239314,57.58055903767516],[-126.77379393256992,57.5806666194466],[-126.77358229751704,57.580803518975635],[-126.77357752804902,57.58092911644196],[-126.77367189975588,57.58104292171437],[-126.7737788829717,57.581210468590136],[-126.77381270709867,57.5813302342487],[-126.77381203054604,57.58145132318245],[-126.77387153123374,57.58154739413299],[-126.77393970534155,57.58160753721286],[-126.77405049444609,57.58170554990543],[-126.77422752244979,57.58171796631978],[-126.77446513961954,57.58172554264798],[-126.77481889238642,57.58173467970337],[-126.77499690636904,57.58174372583276],[-126.77498908074094,57.58187270488841],[-126.77487303442183,57.58197877451225],[-126.77451954492436,57.58208511530696],[-126.77453286677569,57.582173608678666],[-126.77454221706614,57.582273336925304],[-126.77456137840545,57.5823920673435],[-126.77462179810608,57.58253297900616],[-126.77470450282097,57.58263900405384],[-126.77482621442046,57.582759375334156],[-126.77488659702676,57.58284759268442],[-126.77492431225814,57.582952760374646],[-126.77494540676112,57.583063631365924],[-126.77495192653414,57.583177951346016],[-126.77496672251246,57.58328773814836],[-126.77500641583772,57.583387288459654],[-126.77506270757453,57.58348001442656],[-126.77512527546229,57.58357270355239],[-126.77517484986895,57.583694619057965],[-126.77519792239589,57.58385144603781],[-126.7752122086413,57.58398702255729],[-126.77523157863072,57.584167415666776],[-126.77523197665585,57.58439164539706],[-126.77511972651357,57.58463223243475],[-126.7750396724597,57.5847078198949],[-126.77497046755941,57.58480240339911],[-126.77497317008678,57.584934684529756],[-126.77505363772207,57.58513490028557],[-126.7751278826694,57.58528694260672],[-126.77515999594112,57.58537420476765],[-126.77512456093493,57.58548316534923],[-126.77507408494324,57.58562360670396],[-126.77506377656537,57.58578511447616],[-126.7751127574051,57.58592945698892],[-126.77517206164354,57.58606701195765],[-126.77520726966686,57.58620246599228],[-126.77524429462704,57.58637602889712],[-126.77527014857172,57.58656647481708],[-126.7754316775184,57.5865868289003],[-126.77568468097493,57.58662906898362],[-126.77586644414295,57.58666724233882],[-126.77619549942575,57.58674491200615],[-126.77661587699698,57.58683774034478],[-126.77709757604316,57.586911146901684],[-126.77760021515026,57.58698442846812],[-126.77805244098012,57.587099488105665],[-126.7783897618794,57.5872230714261],[-126.77859748389324,57.58725099765336],[-126.77876352607015,57.58723656502122],[-126.77903047361549,57.58729553403381],[-126.7794845870423,57.5873489136855],[-126.7799650302774,57.58736065326378],[-126.78027411738488,57.58738237257219],[-126.78051973806114,57.58747285716648],[-126.78073215499896,57.587525417944846],[-126.78091649717294,57.58753554008129],[-126.78121550242487,57.58762682901055],[-126.78143024432549,57.58769058658562],[-126.78164971754317,57.587729650197204],[-126.78192359446791,57.587769512633685],[-126.78208041852545,57.58781455214053],[-126.78217515396048,57.58789359402801],[-126.78232695082686,57.58799920594349],[-126.78253735982908,57.588106712876],[-126.78268522535618,57.588174228065604],[-126.78286980606892,57.588246010204294],[-126.78300367153032,57.58829454819252],[-126.78317625564593,57.58839330899863],[-126.78341732654874,57.58856678163151],[-126.78355791495966,57.58868703385827],[-126.78363522738017,57.58878299561954],[-126.78374111821591,57.58889448414969],[-126.78386728994928,57.58897558078398],[-126.78405652478985,57.589069757075535],[-126.78432822303863,57.58920604793223],[-126.78454696066918,57.58931013891168],[-126.78467748240745,57.589399057160826],[-126.78477817286279,57.58946124447443],[-126.78494490141429,57.58952976639554],[-126.78524764238003,57.589649053511245],[-126.78560108151129,57.589790461867366],[-126.7859072446729,57.58987272863426],[-126.7862691512773,57.58991766443675],[-126.78668179216946,57.589988084048684],[-126.78691331838223,57.59005285421317],[-126.78706973139327,57.59012816197723],[-126.78730867634306,57.59024782452925],[-126.78759308183201,57.59038963906046],[-126.78785746414285,57.590524845397496],[-126.78801401039966,57.590556425712855],[-126.78821731679642,57.590572030527156],[-126.78850409492095,57.59062637782256],[-126.78883768149159,57.59071856480007],[-126.78919129536851,57.59081735834605],[-126.78934748274212,57.590881453164265],[-126.78960195400875,57.59099204960584],[-126.79006099882466,57.591028546418976],[-126.79059823206879,57.59095133564944],[-126.79105652012133,57.59100128757337],[-126.79153511289482,57.59117220265699],[-126.79208551417786,57.59132474686461],[-126.79256155474644,57.591473250218435],[-126.79275564789874,57.591548325422025],[-126.79256214937506,57.59165151281291],[-126.79236381588409,57.59172445730289],[-126.79221733937968,57.59182511985434],[-126.79219698479966,57.59200238693297],[-126.79222348971574,57.592219735253586],[-126.79215898208057,57.592437629293734],[-126.79214288964398,57.59256890286288],[-126.79217699351061,57.59264830160002],[-126.79227631425785,57.592794579620914],[-126.79231077658886,57.59289191494764],[-126.79238171730971,57.59308208882372],[-126.79244617817857,57.59316242665603],[-126.79254315112073,57.59329638574135],[-126.79252132097369,57.59345348085367],[-126.79234288054967,57.59362721161449],[-126.79224938861522,57.59376007061684],[-126.79217444772559,57.59387936427146],[-126.79211389649647,57.593986238726735],[-126.79205122897953,57.594092004675],[-126.7919607650057,57.59421923949902],[-126.79186623903703,57.59435322565658],[-126.79180975425872,57.59445446977141],[-126.79171179245422,57.59457390117018],[-126.79156539849987,57.59462859456401],[-126.791429263052,57.59467425696284],[-126.79129627449882,57.59471990037652],[-126.79097642978148,57.594786843439614],[-126.79079023490146,57.59484065304226],[-126.791136106645,57.594967517701036],[-126.79126913222348,57.59502390106569],[-126.79152074701274,57.5951468444536],[-126.79162693460624,57.595321111551],[-126.79161695312153,57.595444500551885],[-126.79161174182948,57.59559589035857],[-126.79160858624236,57.595645240954866],[-126.79159940188649,57.595756292290254],[-126.79158500092832,57.595868496060966],[-126.7915853653515,57.59598621726692],[-126.7916152374132,57.596113852297215],[-126.79167297765419,57.59622338157293],[-126.79174646833829,57.596335058818106],[-126.79182214575002,57.59645120763618],[-126.79186471674484,57.596535040719836],[-126.79205798274447,57.5966695447252],[-126.79235679778914,57.596847141499296],[-126.79248478776286,57.59706276102744],[-126.79249648535429,57.597221897944856],[-126.7926110613905,57.59729632960498],[-126.79272566131161,57.59737188220712],[-126.79288181139705,57.59748306308502],[-126.79304764592989,57.59760651862493],[-126.79317193125267,57.59769434569712],[-126.7933053446639,57.59776866373779],[-126.79350109596864,57.59787175796382],[-126.79372320376628,57.59798366303446],[-126.79388803401861,57.59805891299449],[-126.79403170262592,57.59812307813363],[-126.79427883266894,57.5982303472516],[-126.79447159697179,57.598289732121366],[-126.79459316755498,57.59834842363356],[-126.79472463425073,57.59842947909136],[-126.79482971519656,57.59849948134638],[-126.79494194837729,57.59856159225205],[-126.79508061540052,57.598636998174534],[-126.79527108187962,57.59873675817662],[-126.79546735740047,57.59881405937668],[-126.79585969253651,57.59870854873203],[-126.79602768282447,57.5986851133518],[-126.79621248349102,57.59871427187867],[-126.79647485889724,57.59874968970194],[-126.79659753091804,57.598760162088944],[-126.79705044525473,57.59879891479842],[-126.79772470134425,57.59881278526558],[-126.79827181640967,57.59880275442017],[-126.79876130225826,57.598888369898646],[-126.79922371718277,57.59893042130144],[-126.79941870189135,57.59894605962657],[-126.79960891918338,57.598984150105345],[-126.7999533119236,57.5991861205787],[-126.80000011062484,57.59922171504544],[-126.80057456660687,57.599663344859394],[-126.80109552615355,57.599999905709666],[-126.8014743460407,57.60024538988941],[-126.8022420157942,57.600666781080996],[-126.80266162933283,57.60091089327436],[-126.80291551440548,57.60108761905768],[-126.80307079029635,57.601204399772755],[-126.80318505669102,57.601312460098875],[-126.80336444921252,57.601480668350064],[-126.80363865104592,57.60172678273812],[-126.80394314850928,57.601970469981744],[-126.80416188602815,57.6021182566424],[-126.80405977928383,57.602436172929586],[-126.80393299736282,57.602824873934736],[-126.80379614467996,57.603231575146324],[-126.80371075251793,57.60354826861361],[-126.80367508615323,57.60379178269808],[-126.8036546762894,57.60391523720198],[-126.80360867413093,57.60401642361194],[-126.80355596480682,57.6040974694495],[-126.80354077400743,57.60412110670457],[-126.80352057015135,57.6042053184659],[-126.8034669409877,57.60429197580078],[-126.8033390834914,57.60443290123214],[-126.80327797684153,57.60451287683595],[-126.80335228765618,57.60461108956212],[-126.80354262780337,57.604850987570074],[-126.80377308942833,57.605106338002855],[-126.80398446357664,57.60515326344675],[-126.80420348175058,57.605214717478134],[-126.80448831589888,57.60531949686883],[-126.80480504868191,57.605447626370896],[-126.80505228075,57.605555997105505],[-126.80528579795657,57.605658845019065],[-126.80552316237885,57.60579530472412],[-126.80566925904702,57.60587289742255],[-126.80579294063381,57.605930445238464],[-126.80598554762541,57.60597972434803],[-126.80609884179471,57.605991366516236],[-126.8061796356017,57.60600096444601],[-126.80635066779747,57.60602010254094],[-126.80651671551294,57.60610093618418],[-126.80668826768635,57.60619406910721],[-126.80694291616862,57.60630575474461],[-126.80725966548616,57.60643387848107],[-126.80746390854485,57.6065873549871],[-126.80751308736687,57.60673393031045],[-126.80760005167079,57.60683654839513],[-126.80775772554244,57.60691631055237],[-126.8078985896304,57.606993932897915],[-126.80812124739332,57.607127114533405],[-126.80836038981846,57.60724786191874],[-126.80855925971613,57.607345310263305],[-126.80875884810035,57.60747638963015],[-126.8088444080466,57.607659741289254],[-126.80882250777647,57.607859447192716],[-126.80886803312922,57.608030710776454],[-126.8089903653157,57.60817123216562],[-126.8091095500671,57.60831177273122],[-126.80918723039723,57.6084200527532],[-126.80925732966926,57.608516046052145],[-126.8093269099565,57.60858849748345],[-126.80941532330532,57.60865971237235],[-126.80950903376703,57.608734258343425],[-126.8096211760411,57.608838963537735],[-126.80985458087221,57.60898440986834],[-126.81000457400897,57.60904739876457],[-126.81026777736585,57.609068209487205],[-126.81042981218269,57.609058246613756],[-126.81066907797738,57.60903659799941],[-126.8108718693411,57.60902302104765],[-126.81103212224343,57.60902764386247],[-126.81123252545481,57.60904883796599],[-126.81139768505115,57.609087065992576],[-126.81157837921988,57.609165561363916],[-126.81185253848238,57.609209846718905],[-126.8121969102619,57.60915951994841],[-126.8125436387953,57.60912151090793],[-126.81284955720625,57.60913308438688],[-126.81319139954068,57.60916013286102],[-126.81350386316201,57.60918399768361],[-126.81365802216463,57.60919650317456],[-126.81381254957854,57.60922694530337],[-126.8139807165447,57.60925842445737],[-126.81417407639739,57.6092931118107],[-126.81431931324886,57.609329216542875],[-126.81454431518065,57.609374920361],[-126.81485300433042,57.609417865558555],[-126.81506168881867,57.60943451806795],[-126.81525327223402,57.60943557901384],[-126.81541960725578,57.60943006827422],[-126.81558062807109,57.609421226533335],[-126.81574619740331,57.6094291744271],[-126.81608645847848,57.609431558953176],[-126.816451687797,57.60942594003495],[-126.8167321029527,57.60941972297609],[-126.81696656050052,57.60941827414107],[-126.81714977040349,57.609419384089634],[-126.81751999391238,57.60954827459708],[-126.81782660353926,57.60964055828258],[-126.81807668378569,57.60968385859206],[-126.81832866439164,57.609718177115916],[-126.81851798902268,57.609759610315166],[-126.81865398937848,57.609803615890094],[-126.81881536038847,57.609859797315394],[-126.81898322257202,57.6099249078891],[-126.81913958747319,57.609991210698],[-126.81926645142302,57.610048726613535],[-126.8194197415411,57.61011841174578],[-126.81958923880806,57.61016220874097],[-126.81976898124117,57.61014763985343],[-126.82006778109832,57.61011999902728],[-126.82028266244888,57.610133241314685],[-126.82037649984466,57.610260475217856],[-126.82044483425412,57.6105156836268],[-126.82059252117348,57.610713218521994],[-126.8207893715179,57.61081178281666],[-126.82097182262123,57.61087343679721],[-126.82119701173622,57.61092697667242],[-126.82137612117236,57.61097968129982],[-126.8215665001828,57.61106931512303],[-126.82176698288285,57.61114206793243],[-126.82195472849828,57.611158839828214],[-126.82211293937385,57.61116458317684],[-126.82230970081102,57.61116223816153],[-126.82252629311907,57.61115752707036],[-126.8227664655375,57.611177335185495],[-126.82290684079005,57.61123027884793],[-126.82304735488462,57.61128882748513],[-126.82318878605369,57.611341764284404],[-126.82337115381198,57.611400051952245],[-126.82362737095002,57.61148366680869],[-126.8239610896696,57.61161725200951],[-126.82425961131433,57.61176899502294],[-126.82450974085879,57.61190982725676],[-126.82465689597822,57.61193693929651],[-126.82492158055312,57.61197677219324],[-126.82510112846826,57.61200143920724],[-126.82541196888606,57.61204546783034],[-126.82573546880005,57.61209390144599],[-126.82602133507083,57.612144811832074],[-126.82641120638154,57.61221188944207],[-126.82676399388393,57.61225901627492],[-126.82694125515913,57.61227472552573],[-126.82709540670008,57.61228609433613],[-126.82735434024322,57.612302413219204],[-126.82763644194281,57.61232419254341],[-126.82781054748371,57.61233879919208],[-126.82796157536477,57.61235130775541],[-126.82813358762562,57.612365927090956],[-126.82839237516566,57.61237551767043],[-126.82865728862764,57.61237722095294],[-126.82887216125894,57.61238932826048],[-126.82921285884827,57.6124096156237],[-126.82957669158681,57.61243536292816],[-126.82986278627904,57.61244814286828],[-126.83002894381045,57.612434766520686],[-126.83032701049682,57.61242056150705],[-126.83068817894699,57.61246762527886],[-126.83102540555348,57.61256865615107],[-126.83128879440855,57.61264436292377],[-126.8315491308291,57.6128198751624],[-126.83173658593974,57.612965573090406],[-126.83190426036784,57.61311588005996],[-126.83194410984224,57.613214294909085],[-126.83200571228727,57.613302482050806],[-126.83210986793311,57.61342067374943],[-126.83221826850544,57.61354220226259],[-126.8323209518226,57.61364134268396],[-126.83235518341847,57.61372185362224],[-126.83242648806937,57.61382231274472],[-126.83253870869355,57.61392699898308],[-126.83268375914244,57.613952994276715],[-126.83265432500565,57.61404287576584],[-126.8327303108789,57.61416572930732],[-126.83294442818776,57.61438077233156],[-126.83325655295772,57.61438665383454],[-126.83344364787813,57.61446732220295],[-126.83364171286092,57.61457146638576],[-126.83383356403829,57.61467789188468],[-126.83396955840267,57.61472076096065],[-126.83418631539763,57.61476984754045],[-126.83447336712634,57.61482521730427],[-126.83468446315364,57.614855278369134],[-126.83493791879114,57.614906374434106],[-126.83514111027009,57.61495778754908],[-126.83544262285575,57.615004094263185],[-126.83564278268315,57.615012920068494],[-126.83581898955957,57.61497929129868],[-126.8359914618215,57.614966988762845],[-126.83617486398613,57.614927708003194],[-126.83644994178125,57.6148676653432],[-126.83668045877906,57.614828085778555],[-126.83690945894948,57.614815424281154],[-126.83733523033938,57.61479927384829],[-126.8375629191697,57.61477428629002],[-126.83773753314586,57.614764210306596],[-126.83789697338507,57.614777775525816],[-126.8381544962117,57.614823233651705],[-126.83834554015077,57.6148455675926],[-126.83854685422776,57.61485886649245],[-126.8387563446455,57.614863143587044],[-126.83902983238615,57.614873741429456],[-126.8393269631255,57.614911097489134],[-126.83953133553005,57.61492101186825],[-126.83970289203998,57.61491431631491],[-126.83996178623248,57.614880156783194],[-126.84029226748797,57.614910571561595],[-126.84052119801436,57.61494163118843],[-126.84075419192226,57.61496705856241],[-126.8410639449963,57.61500769407657],[-126.84143170619772,57.61506702015296],[-126.84160446759455,57.61506704168872],[-126.84176929287712,57.61513438577441],[-126.84190670167823,57.615192934624176],[-126.84206197356201,57.61525473317535],[-126.8423077397067,57.615336136706595],[-126.84262906249445,57.615426027884936],[-126.84279057603516,57.61543845282074],[-126.84302723829582,57.61544030754637],[-126.84319571425013,57.61543586952137],[-126.84338324116067,57.61544140059386],[-126.84370749887499,57.61547408901118],[-126.84400928387532,57.61553270781936],[-126.84422202092574,57.615588530988326],[-126.84444288366328,57.61563308986977],[-126.84470183929707,57.61564825367297],[-126.84488586045754,57.61563698694384],[-126.84496769546286,57.61573849362337],[-126.8449398523591,57.61585191331761],[-126.84514379810933,57.61584164009907],[-126.84553306731145,57.61578533324],[-126.84575963558062,57.61566279383688],[-126.84593906876262,57.615633615703544],[-126.84618696815731,57.61557596899161],[-126.8464227051647,57.61553633896707],[-126.84668316190803,57.61552570155292],[-126.84701621319759,57.61548320479513],[-126.84729823286528,57.615500458154166],[-126.8478616647808,57.615459846190504],[-126.84830080947098,57.61529333313532],[-126.84844633977711,57.615199339201645],[-126.84866720521238,57.615243891010216],[-126.84893660252811,57.61530494890947],[-126.84921778421163,57.61533117319497],[-126.84958284765176,57.61531649446208],[-126.84979395000839,57.6153454102632],[-126.85006438758134,57.615359368550195],[-126.85020411797186,57.6152407434136],[-126.85038786000193,57.61526422818446],[-126.8505455402178,57.61529236519684],[-126.85073240487036,57.61526761754659],[-126.85096319278975,57.61519437506347],[-126.85121822492484,57.61512882452113],[-126.8514069553702,57.615093973046825],[-126.85165385756125,57.61508565551939],[-126.85166659295702,57.615186482017926],[-126.85170997788295,57.61539362566547],[-126.85181503211258,57.6155487965195],[-126.85196308073292,57.615661084411116],[-126.85205283075625,57.61574123289619],[-126.85222948203032,57.61586791186617],[-126.85222294722908,57.6159498020941],[-126.85253273737487,57.61599041066678],[-126.85273729119886,57.616054121473525],[-126.85298950126324,57.616142191069954],[-126.85319993410711,57.61618792393134],[-126.85340814751638,57.616228064752136],[-126.85363137099614,57.616283805240776],[-126.85378236946752,57.61634001179463],[-126.8540028998338,57.61641595080078],[-126.85418964467851,57.61647865324359],[-126.85436161605261,57.61653696606785],[-126.85466843917779,57.61663140686584],[-126.85484113854088,57.61667513867109],[-126.85498069216713,57.61673478152231],[-126.85510336965264,57.616788927342],[-126.85537034768993,57.616881381841736],[-126.85555028435735,57.61692058108561],[-126.85583254577836,57.61699387522734],[-126.85606020097448,57.61710676467079],[-126.85616898442771,57.617194635768975],[-126.85634370589018,57.617234988940396],[-126.85648458886705,57.617167925026884],[-126.85671557996082,57.6171036407327],[-126.85707273961049,57.61715514393795],[-126.85711578238677,57.61725241010187],[-126.85718238438173,57.61751209888823],[-126.85718151395791,57.617843982597805],[-126.85709927210014,57.61823581807381],[-126.85701018065299,57.618601910183465],[-126.85699220274536,57.618918208149466],[-126.85704820491424,57.6193113902634],[-126.857111687973,57.619664160386876],[-126.85715432274122,57.61988252031362],[-126.85718128515455,57.6200101636929],[-126.85720993701531,57.62016582643653],[-126.85721009980638,57.620265613277795],[-126.85721662158461,57.62041469225256],[-126.8572308950197,57.62058278160843],[-126.85719918664542,57.62080162367511],[-126.85714171699304,57.62103857218525],[-126.85712864145253,57.62120123286671],[-126.85714611396077,57.62132557429027],[-126.85725279266318,57.62141233736502],[-126.85736353309176,57.621493467959006],[-126.8575221082751,57.621605682245175],[-126.8577190453574,57.621747920300216],[-126.8578183804122,57.62183360939037],[-126.85796925068702,57.62197614596393],[-126.8580622032086,57.62205739145216],[-126.85826867557256,57.62215808196092],[-126.85844809277609,57.62221970529884],[-126.85859620115697,57.62228601655898],[-126.85882515503572,57.62240786334107],[-126.85889177364953,57.62248255204192],[-126.85901032765102,57.62263090353606],[-126.85913241332715,57.62279605023482],[-126.85924453442955,57.62293771607691],[-126.85937162021514,57.623092739182475],[-126.85946672288907,57.623269273180654],[-126.85959261943128,57.62341757656753],[-126.85963898662845,57.62352266946517],[-126.85967132688246,57.623609914089215],[-126.85977110362329,57.62371465972874],[-126.85983714591266,57.623902594694506],[-126.85985903753681,57.624128938134824],[-126.8598898231265,57.624285708326184],[-126.85988882708374,57.62437989704063],[-126.85983005444238,57.62446661293093],[-126.85975004718132,57.624587103380925],[-126.85966333245976,57.62478051653475],[-126.85958161514415,57.624963806217096],[-126.85951238228692,57.62509768114421],[-126.85943282167553,57.62523722925976],[-126.85936550406313,57.625363243163534],[-126.85931770835812,57.625472311916525],[-126.85924362769738,57.62562303653058],[-126.85917175573182,57.625732261687766],[-126.85910276220564,57.62583025592925],[-126.85903046605713,57.62592154428325],[-126.8588967811123,57.6260760195789],[-126.8587626464105,57.62621143695455],[-126.85866047257116,57.62632422230585],[-126.85853589586377,57.62646518350609],[-126.85842469676528,57.62664193677984],[-126.85856928287987,57.62669033180872],[-126.85878619101084,57.62674162070712],[-126.85905946834986,57.62678469455717],[-126.85920626048423,57.62683868067247],[-126.85921402127681,57.62694963099492],[-126.8592076134523,57.627083097780606],[-126.85946048812922,57.627195819029104],[-126.86010894956597,57.62729587658803],[-126.86070877732672,57.62737494434549],[-126.8609452745587,57.62741264763869],[-126.86109448290141,57.627434100596005],[-126.86141903691065,57.627474593319846],[-126.86175629396467,57.627521729802],[-126.86191932889737,57.627552061504836],[-126.8620594114127,57.62758702751161],[-126.86221003376386,57.627624167098666],[-126.86238117504882,57.62764323317893],[-126.86257234893124,57.62766777448499],[-126.86292747068548,57.627717033929876],[-126.863172008952,57.6277389837147],[-126.86335548755436,57.627747877025016],[-126.86357338712915,57.6277957880672],[-126.86384148432008,57.62784112843228],[-126.86405297220539,57.62779153430026],[-126.864221697933,57.62784200799928],[-126.86438916395151,57.62788351994856],[-126.86463750244549,57.62793459396668],[-126.86486753598955,57.627963362798546],[-126.86517264364045,57.62797818545439],[-126.8653697201128,57.62798586580259],[-126.86558458166279,57.62799230823098],[-126.86584126289996,57.62799623407621],[-126.86603407397203,57.628000577695595],[-126.86621434443431,57.628006124396755],[-126.86637995428444,57.62801176689733],[-126.86656260564165,57.6279836608603],[-126.86687711281067,57.62790535655341],[-126.86715958371825,57.62784632234097],[-126.86731780045213,57.62798655881369],[-126.86750413668696,57.62802794309367],[-126.86776825977348,57.62803630127583],[-126.86801682082434,57.62805148840937],[-126.86823832597884,57.62807358004319],[-126.86840316347974,57.62809155853457],[-126.86860060098154,57.62811492882483],[-126.8689177786902,57.6281532092639],[-126.86918119845531,57.62817614515184],[-126.86936183031463,57.62819738231843],[-126.86950202498535,57.62823682467839],[-126.86981897300899,57.62826501347521],[-126.87018468473445,57.62827269864795],[-126.87050124723629,57.62828407000313],[-126.87073719311293,57.62829709263466],[-126.87092909629656,57.62830704122725],[-126.87132501572603,57.628353767136865],[-126.87165031789151,57.628380775298204],[-126.87210772257045,57.62841363893402],[-126.87248556656137,57.62844814712411],[-126.87273158977041,57.628443160145515],[-126.87291584550796,57.628439701644126],[-126.87307983437415,57.628420679548995],[-126.8732677361898,57.62839365078298],[-126.87358096063284,57.62839606703059],[-126.87400687357847,57.628425768454804],[-126.87429962905827,57.62844962153502],[-126.87447281890232,57.628511265026596],[-126.87464088517763,57.628577427081204],[-126.87497289487992,57.62866829254129],[-126.87530345297961,57.62874122719816],[-126.8754569671267,57.62876712046697],[-126.8757499266837,57.628753968598005],[-126.8759940664818,57.62871310883689],[-126.8762042598763,57.628744231923676],[-126.87641541304863,57.62881683364308],[-126.87664046798467,57.62881085713214],[-126.87685763918155,57.628781386783096],[-126.87702242364861,57.62875114226471],[-126.8773154090382,57.628694258974974],[-126.87754379512249,57.62865125839682],[-126.87771088063687,57.628629967548676],[-126.87789829604033,57.62862760236344],[-126.87824942997989,57.628638725716534],[-126.87849486594054,57.62865391397316],[-126.87877210828962,57.62868570881347],[-126.87898137826096,57.62872243976293],[-126.87913083606611,57.62875396187014],[-126.87931173641753,57.628786395984285],[-126.87952224521403,57.628830966431],[-126.87978982455196,57.6288975814175],[-126.88012494734707,57.6289861709103],[-126.88041601044063,57.62907168921176],[-126.88057235336221,57.62912895208277],[-126.88081237012646,57.62918117262054],[-126.88097304628259,57.62919916325029],[-126.88112816526456,57.62920373599485],[-126.88131364530632,57.62920810623853],[-126.88150031139617,57.62921807444908],[-126.88175415627155,57.629234321877455],[-126.88202016987113,57.62932336739299],[-126.88220702467851,57.62938603100833],[-126.88235954819275,57.629459014463386],[-126.88248062930124,57.62953108633266],[-126.88257968452014,57.62960218386117],[-126.88274441664717,57.62970423733028],[-126.88299391522158,57.62980348223961],[-126.88320702498912,57.629869332885704],[-126.88336293109157,57.62990753460013],[-126.88346557341458,57.63004251752308],[-126.88370033349375,57.63022819415564],[-126.88405055912908,57.63024491444313],[-126.8843098581862,57.63022524128002],[-126.88449007134044,57.63027224899239],[-126.8846533289455,57.63031152128286],[-126.88486597318314,57.63035719033042],[-126.88506623421091,57.63041079050961],[-126.88547733680817,57.630612102342404],[-126.8859392201829,57.630879225324506],[-126.88621174855211,57.63097718888231],[-126.88642080885784,57.63095896944425],[-126.88679760937268,57.630992322848826],[-126.88708035675387,57.63103415465641],[-126.88726417195184,57.631056467464965],[-126.88744559447763,57.631065341320465],[-126.88763015052353,57.631074193897554],[-126.88761430830134,57.63115839243904],[-126.88757324438328,57.63137282290253],[-126.88752048441266,57.63157948326836],[-126.88747395838688,57.63169528217118],[-126.8874064767453,57.6318101004416],[-126.8872609587622,57.63199271603343],[-126.88704680667983,57.6321959739661],[-126.88679954760899,57.63237254401763],[-126.886827637513,57.632454205524695],[-126.88666792605129,57.63252255014899],[-126.88655792235241,57.632700442037326],[-126.88657525430052,57.63285954068138],[-126.88670042296403,57.632970824739346],[-126.88676425337866,57.633057852856226],[-126.88688523875027,57.63325886334615],[-126.88688804084238,57.63342366562831],[-126.88676380369779,57.633486166372876],[-126.88671713234287,57.633595238766056],[-126.88672794514437,57.63374429014428],[-126.88657462116417,57.63390677538772],[-126.88623070690372,57.63416135743621],[-126.88600362356377,57.63448467251484],[-126.88587482985339,57.63471090298137],[-126.88566759251837,57.634852444908674],[-126.88553001263625,57.63492736743763],[-126.88520803232377,57.63508985898397],[-126.88497339301088,57.63526970515813],[-126.88480520012486,57.6354692886771],[-126.88467875291776,57.635617016057054],[-126.8845883620061,57.63569386447676],[-126.88447779056459,57.635758514208185],[-126.88428526903891,57.635813620624766],[-126.88410097492319,57.635996492437975],[-126.88389335319329,57.63630173442498],[-126.88381298614956,57.63644915312646],[-126.88369959777557,57.636618095860584],[-126.88372669207487,57.63688140500701],[-126.88377598638365,57.63706383696843],[-126.8837709284359,57.6372062676221],[-126.88370413186247,57.63735135322888],[-126.88362062096482,57.63745394352271],[-126.88355187852082,57.63756092006911],[-126.88349747630848,57.63769919540885],[-126.8833243372959,57.637776595708836],[-126.88291272129035,57.63796098387665],[-126.88259360291023,57.63811335904649],[-126.88244167068784,57.63820182906163],[-126.88230334650649,57.6382902081423],[-126.88204908809165,57.63843878568309],[-126.88191552133944,57.63850695039222],[-126.88174357107292,57.63859106812775],[-126.88157782666636,57.638671780574846],[-126.881400358924,57.63874360103717],[-126.8812567971574,57.63878716448115],[-126.8810431793117,57.638881650012955],[-126.88083927569217,57.63889870520409],[-126.88061890211219,57.63897305277758],[-126.88046336799397,57.63904248349549],[-126.88031647379415,57.63912306890092],[-126.88014997143303,57.63921611820979],[-126.87994225462594,57.63933971485839],[-126.87970877379749,57.639481422308045],[-126.87955988540007,57.63956650509309],[-126.87944399609192,57.63962894360192],[-126.87928992938893,57.6397163029861],[-126.87910408313961,57.63983414678366],[-126.87892470293052,57.63995979602511],[-126.87876800290076,57.64006959705122],[-126.87858026626498,57.64019642258525],[-126.8784423677655,57.6403038558933],[-126.87831825997026,57.640419046165086],[-126.87809982211999,57.64062231902669],[-126.87789289651245,57.64082551515525],[-126.87772132554521,57.64101726404046],[-126.87763903733506,57.641128812540146],[-126.87755244532103,57.64123478335513],[-126.87747175781587,57.64132501762161],[-126.87736171182227,57.64145917484721],[-126.8772560370544,57.64160115167635],[-126.87718134717757,57.64172386193557],[-126.87708824104058,57.64191060487082],[-126.87699627701049,57.64210182515194],[-126.87694520409644,57.64220419645938],[-126.87686999188685,57.64234933484404],[-126.87681653765222,57.642439388272095],[-126.8766914812175,57.64260391799047],[-126.87653657983726,57.64279219138084],[-126.87644781709214,57.64289593349463],[-126.87631240547397,57.64297531727868],[-126.85902834659046,57.64735610792356],[-126.85848264577614,57.64787542062842],[-126.85098780122547,57.654996641808914],[-126.8489706182728,57.65562179871177],[-126.84515364817867,57.65680672085013],[-126.84733306933761,57.660896563409025],[-126.84733768830809,57.66091559514125],[-126.84736199027574,57.66101747359666],[-126.84743403781904,57.66123902048559],[-126.84750258454399,57.661397799599044],[-126.84757236030103,57.6614713555507],[-126.84763124517458,57.66152591990277],[-126.84765071377801,57.661552705316836],[-126.8476585442738,57.66157508024586],[-126.84765461732277,57.66163341059441],[-126.84764384712135,57.66171420984904],[-126.84765785542453,57.661778031617395],[-126.84768848102553,57.66188211211586],[-126.84772935170615,57.6620220071408],[-126.84776545482748,57.66208905117164],[-126.84781316491657,57.66211341318491],[-126.84786829573977,57.662141091411364],[-126.8478885200458,57.66215441691457],[-126.84791809389792,57.66216431875896],[-126.84797196745791,57.662183034962254],[-126.84799752458173,57.66220081130376],[-126.84796185252786,57.662245890016635],[-126.84788329666048,57.662342821142],[-126.84782638323509,57.66242279478257],[-126.84780442871676,57.662472270614344],[-126.84779740134881,57.66248577068237],[-126.84777711625654,57.66251617448701],[-126.8477405879456,57.66257022867328],[-126.84772020234624,57.66259614809511],[-126.84775331424656,57.66262396740218],[-126.8478293984397,57.662697482917324],[-126.84792663014258,57.662779832969136],[-126.8480140001728,57.66288915626462],[-126.84804558374249,57.66298874564275],[-126.84804323451782,57.66302464086664],[-126.84803441217122,57.66305160751956],[-126.84801756443011,57.663095444420165],[-126.84800864159699,57.66311792669463],[-126.84805109558337,57.66314120107257],[-126.84814648537898,57.6631876826282],[-126.84821020430104,57.66322427576825],[-126.84823023669836,57.66322975367746],[-126.84826096851519,57.66324413306357],[-126.84834848567104,57.66326711856135],[-126.84843624583525,57.66330019374679],[-126.84847440710013,57.66331901048771],[-126.84848728666944,57.66333238299911],[-126.84851276942706,57.66334679597608],[-126.84854507843855,57.663338740071765],[-126.84860031210371,57.663370902404395],[-126.84862633842218,57.66345595100062],[-126.84862527246247,57.6635019293311],[-126.84864548099115,57.663515254843375],[-126.84868919344318,57.66354749101109],[-126.8486970249653,57.663569865920785],[-126.84870151927878,57.66358329217847],[-126.84868021966477,57.66361482391466],[-126.84864126850708,57.66365431761021],[-126.8486116671141,57.66369038758595],[-126.84859557475554,57.66372076467111],[-126.84858675264017,57.66374773137846],[-126.84858839556931,57.66377463099723],[-126.84863121823267,57.66386069320459],[-126.84866505041977,57.66401408844048],[-126.84864785751206,57.66413529438616],[-126.84868283229434,57.66419898178733],[-126.84879041679362,57.6643216302303],[-126.84882485334987,57.664501931794284],[-126.84881094860026,57.66458275147325],[-126.84881784113992,57.664609617449486],[-126.84883175194034,57.664668954883325],[-126.84883874506474,57.664700305245105],[-126.84880937009224,57.664699372351855],[-126.84874968923728,57.66470311880122],[-126.84870793684091,57.66471123530563],[-126.84869136657525,57.664720311603844],[-126.84864791985599,57.664746379069605],[-126.84861485465315,57.66476789493846],[-126.84859335324953,57.66479045792571],[-126.84853583453135,57.66484352574345],[-126.84842792472048,57.66494064556522],[-126.84841253521454,57.665002413366636],[-126.84843582212605,57.665012355431486],[-126.848480374935,57.66503561627646],[-126.84850014748955,57.665075854813324],[-126.84849117301262,57.66514318780123],[-126.84848419443529,57.66520602296797],[-126.84847501887369,57.6652643871885],[-126.84837311233673,57.66534801342107],[-126.84813031403355,57.66546057380294],[-126.84790365628614,57.66559209174577],[-126.84778619144168,57.66568366600042],[-126.84771599096351,57.66573232967612],[-126.8476542766298,57.66578542400892],[-126.84759980777916,57.66583398688897],[-126.84760010901084,57.66584744005995],[-126.8475551661964,57.66590042696171],[-126.84744221880467,57.66600654836266],[-126.8473508740694,57.666094591259395],[-126.84732838980939,57.66612052412671],[-126.84732595610332,57.66615193494467],[-126.84732326878705,57.666219227663426],[-126.84732187493596,57.66625063182829],[-126.8473012110331,57.666264219196464],[-126.84727330133606,57.66628233797299],[-126.8472599584615,57.66629475721836],[-126.84724558403146,57.666308304323316],[-126.84721271739926,57.66633878865899],[-126.84719834293561,57.66635233575955],[-126.84719758738792,57.66636579570036],[-126.84718581123356,57.6664017513473],[-126.8471637532099,57.666446742865254],[-126.84712196223477,57.66649970947107],[-126.84701275029704,57.66663271685896],[-126.84683562284373,57.66682222160338],[-126.8467615369543,57.666978550552194],[-126.8468438005202,57.667047542415716],[-126.84692917058156,57.667067178941636],[-126.8469761224528,57.66710388011341],[-126.84699030722297,57.66717554997059],[-126.84686668252296,57.66722679756408],[-126.84663492100985,57.66722379494766],[-126.84652352768269,57.66721217345606],[-126.84648290021285,57.66727073874512],[-126.84639760217142,57.66739462270182],[-126.84634906429712,57.66747454246943],[-126.84634421554715,57.667492513625696],[-126.8463346350711,57.667532940229876],[-126.84619416086508,57.667673995714736],[-126.84594495920226,57.66787629393802],[-126.84582156397788,57.66803181630212],[-126.84581962992631,57.66808564915476],[-126.84581697765836,57.66810809130785],[-126.8458101566333,57.66822474597378],[-126.84583156412903,57.66843204241202],[-126.84584835269277,57.668620306964826],[-126.84578014832667,57.66875865782555],[-126.84570559131299,57.66884771375659],[-126.84565750569521,57.66890072020131],[-126.84561015933367,57.66894026677359],[-126.84557393537322,57.6689618021099],[-126.84553553131532,57.668978866315456],[-126.84548978054069,57.66899597742997],[-126.84541631743258,57.66904017577196],[-126.84531219716196,57.66911932892966],[-126.84524638074365,57.669176933490874],[-126.84523521621638,57.66919382369309],[-126.84517664615096,57.66924689691144],[-126.84506911564841,57.66936195202726],[-126.84502582253505,57.66944183794565],[-126.8450432217133,57.66946975842807],[-126.84505849920363,57.66949657119068],[-126.84507893495066,57.66951998724043],[-126.84509516909291,57.669542308846744],[-126.84510519654324,57.66956915511937],[-126.84508972464103,57.66962755949823],[-126.84505933682932,57.669721939471074],[-126.84504298326401,57.66978819831386],[-126.84503815037118,57.66980616935448],[-126.8449941002826,57.66989951526937],[-126.84491355480742,57.67009625022294],[-126.84488336638066,57.67019959901884],[-126.84490148044429,57.67021293856763],[-126.84493840673208,57.67022279426581],[-126.84496985759199,57.67022259353811],[-126.84499608328322,57.67022354741551],[-126.8450362464244,57.67023786747713],[-126.84510512428491,57.67026994443304],[-126.84520166854385,57.670320906196054],[-126.84528489313568,57.67038540808838],[-126.84533550179006,57.670444511880554],[-126.84535593822025,57.67046792790856],[-126.84537636640972,57.67049022272379],[-126.84543433059844,57.67055040078058],[-126.84549866033802,57.670613901953246],[-126.84553267922477,57.670682081737596],[-126.84552359796224,57.670744930468004],[-126.8455115183266,57.67076743287641],[-126.8454816997737,57.67079341235826],[-126.84542301063874,57.670842001459846],[-126.84539003843994,57.67086800106037],[-126.84541123140603,57.67087795710106],[-126.84545147052573,57.670895640355695],[-126.84547172370156,57.67091008744172],[-126.84552830633433,57.67095569788538],[-126.8456421149857,57.671074946186124],[-126.84573932549146,57.67120214928329],[-126.84581047331274,57.67128915333804],[-126.84592111403666,57.67131311426013],[-126.8461643660408,57.67131268106807],[-126.84642838530513,57.67130314454989],[-126.84652804934774,57.67130587112939],[-126.84655560843628,57.67131915008125],[-126.84661410593078,57.67135577773502],[-126.84664169016378,57.67137017777333],[-126.84665886571433,57.671388008161614],[-126.84669438226939,57.67142926779975],[-126.84671158295163,57.67144821928596],[-126.84669548576987,57.67147859636273],[-126.84666563891257,57.67155054814206],[-126.84665006829493,57.671604468397206],[-126.84664932922182,57.67161792829442],[-126.84666544810038,57.67163576544411],[-126.84670108198902,57.67168150939871],[-126.84673606046854,57.67174519776817],[-126.84675813213681,57.671794392242816],[-126.8467208125089,57.67186078552543],[-126.84666049120189,57.67197666153867],[-126.84668548735878,57.67206283907045],[-126.84672271688531,57.67208614754054],[-126.8467021248221,57.67210309820342],[-126.84668006290089,57.67214808988326],[-126.84667601625233,57.6722019364744],[-126.84666254221756,57.672255843355074],[-126.84661180151754,57.67233129257685],[-126.84650408279312,57.67243738024838],[-126.84640033982174,57.67253447230127],[-126.84636167795094,57.672587418918425],[-126.8463577850858,57.67260089898642],[-126.84638622637469,57.67260632349914],[-126.84648217654082,57.672630377920584],[-126.84656677803245,57.672662353695735],[-126.84654577244235,57.67270733861963],[-126.84648005195851,57.67276942841028],[-126.84645910465142,57.672817776747756],[-126.8464608635312,57.672849160937126],[-126.84645727155586,57.672876094274464],[-126.84645502050483,57.67291647422656],[-126.8464554096415,57.672980383879775],[-126.84647269546947,57.673096885003694],[-126.84650063769072,57.67326826003982],[-126.84650713839304,57.67337137495301],[-126.84649831254022,57.67339834176722],[-126.84647465420687,57.67346576899157],[-126.84643330206707,57.673586008846414],[-126.8464129439018,57.67370723575986],[-126.84641429403858,57.673814868711574],[-126.84641465804283,57.67387765731302],[-126.84639553117191,57.67391366011605],[-126.84631716441181,57.67401956012513],[-126.8462037340644,57.67415259459843],[-126.84611468102332,57.674249592665454],[-126.84601901915654,57.674333177702394],[-126.84593492357202,57.6744178100449],[-126.8458682592523,57.674484390705786],[-126.84574267466614,57.674589470788554],[-126.84557029990991,57.67471278985481],[-126.84550215176391,57.674760318272895],[-126.8454268359657,57.67476864806472],[-126.84527797572916,57.67477071973517],[-126.84508645585593,57.674834733225225],[-126.84488700899601,57.67496607306686],[-126.84477256978371,57.675054262117804],[-126.84474484433929,57.67508022816017],[-126.84471755840451,57.6750792809711],[-126.84461050563642,57.6751225720587],[-126.84440390363281,57.675168740488516],[-126.84419266353633,57.67514766211142],[-126.84407379974408,57.67513160088685],[-126.84400936791552,57.67515780076472],[-126.84399066994919,57.67516576882296],[-126.84393168889346,57.67520090405939],[-126.843845929878,57.675258635282255],[-126.84378816362981,57.67530161158738],[-126.84372842521356,57.675350206773494],[-126.84364288225991,57.675416906633835],[-126.84359866277508,57.67545643274235],[-126.84357882449572,57.67545992293731],[-126.84349531872103,57.675477273944686],[-126.84338544186882,57.675488065267366],[-126.84330708694696,57.675500898275715],[-126.84321297097185,57.67551271034112],[-126.84300783782763,57.67553083553783],[-126.84272910907359,57.67554045870075],[-126.84265860090825,57.67552969476124],[-126.84197145573032,57.68169208528309],[-126.84642342306662,57.68589764790492],[-126.85445884554684,57.68796303166427],[-126.86132634612038,57.69020597301933],[-126.86630017008143,57.6938334263937],[-126.87297417974689,57.697162467646365],[-126.88377525797439,57.69864273295929],[-126.89166754874525,57.69870646616307],[-126.89348343350055,57.69881981820064],[-126.90137577744508,57.69888297312128],[-126.90672457075725,57.699644844062576],[-126.91770792066322,57.69964098501333],[-126.92996836135342,57.699510641145956],[-126.93223297577956,57.70075059503003],[-126.93175611383248,57.70337333822553],[-126.93356465243878,57.708106026025874],[-126.93672341704516,57.71105299817011],[-126.9425944913628,57.71616051036088],[-126.9470906074885,57.721726164646974],[-126.94892258833403,57.72736462502619],[-126.94893280106785,57.72793868054682],[-126.94706543928272,57.73513763553553],[-126.94697091146654,57.74062846797187],[-126.94793289297473,57.74547484846903],[-126.94847107893841,57.75054855127466],[-126.95161738092126,57.75281361747386],[-126.95599642101601,57.752782134714536],[-126.96637676689238,57.7537385949421],[-126.97208645119164,57.7558768445478],[-126.97333210809246,57.759070381430256],[-126.97396470971007,57.76334495241089],[-126.97520089987832,57.77075501470497],[-126.97839300010789,57.7749031338923],[-126.98086577730963,57.78019586655324],[-126.9781049168145,57.78569769753126],[-126.96995422037915,57.78922939027641],[-126.95572778131996,57.79349524123354],[-126.94124161716714,57.796038903574875],[-126.93214428373456,57.79563655432506],[-126.9206763281814,57.79434393650617],[-126.90603602466611,57.794650959965466],[-126.89259778613241,57.79632986967173],[-126.8793625133619,57.79737808254279],[-126.86734338260574,57.80065088089219],[-126.864631155146,57.80419427709238],[-126.8638419715713,57.807455997392324],[-126.86386462599378,57.80872080789597],[-126.8689827149842,57.81330768437552],[-126.87107062490391,57.81598543389933],[-126.87306573025617,57.819507085340554],[-126.87280409764413,57.82271161621053],[-126.87132805879938,57.8235735917776],[-126.86945556840192,57.82637598854513],[-126.86741521679325,57.83141337339206],[-126.86922679408131,57.83631796228427],[-126.87316153685606,57.84046398245955],[-126.87736977223682,57.842158838681776],[-126.88264149983297,57.84337101328346],[-126.88435943105216,57.843592863038815],[-126.88951801279951,57.84459020115619],[-126.8917025549668,57.84680952781823],[-126.89078806465811,57.849211109848774],[-126.88644146631633,57.851456173949636],[-126.8819951128143,57.85382736403674],[-126.87661815640834,57.85802581820449],[-126.87520522883001,57.86243131471349],[-126.87645433336539,57.86602080797112],[-126.88017063105588,57.86976447411762],[-126.8850428697419,57.87219943980034],[-126.89120764987786,57.87501138315369],[-126.89534935492874,57.87841088956504],[-126.89735685885526,57.88217459942512],[-126.89765943679407,57.886506073957605],[-126.89912938069307,57.89021061140608],[-126.90293546304565,57.892930332149],[-126.90810131624471,57.89392699979645],[-126.9146413209347,57.89377456820995],[-126.91667201849843,57.89352732588056],[-126.92287849721039,57.89298200794562],[-126.92875024188913,57.89294117884732],[-126.93059781408398,57.892928278205176],[-126.93318801001529,57.892919121244326],[-126.93488372461466,57.892907225380064],[-126.93926631813822,57.892364963473746],[-126.94482122524667,57.89130282579111],[-126.95512868135913,57.88735327958257],[-126.9622423221096,57.884278419364655],[-126.96856472068754,57.879387591680874],[-126.97305901628853,57.8743932181642],[-126.97501070714023,57.87061962326584],[-126.97784619597344,57.86814046780559],[-126.9806382446919,57.863723615311024],[-126.98202358034024,57.858689071991776],[-126.98663881331771,57.85449192519099],[-126.99247561301627,57.852232428678086],[-126.99927142564937,57.84973220358621],[-127.00101726365945,57.8465250700232],[-126.9936547467613,57.84309022468669],[-126.99259590750222,57.83904285928638],[-127.00040715880603,57.83413953458597],[-127.00141747555352,57.83173646121718],[-127.00030410972577,57.8251775276319],[-127.00416804949198,57.82126364402915],[-127.00897698470104,57.82094909886407],[-127.01368449828345,57.82097607736394],[-127.01860293031426,57.820821838588],[-127.02382260030194,57.81993838846323],[-127.02678417224257,57.81848006616666],[-127.02783908667232,57.817790061864265],[-127.03174632628895,57.815705265061226],[-127.03941443202416,57.81429077902626],[-127.04883118112805,57.814387245029586],[-127.05588567480487,57.81416988307605],[-127.06067081921144,57.81305516522392],[-127.06972811793446,57.81161885183635],[-127.07518142774335,57.81152100366722],[-127.08288353535187,57.81152125480229],[-127.09226336294745,57.81025123175831],[-127.09778093801103,57.808608784016066],[-127.09948314294563,57.80819097903614],[-127.10411849864228,57.80547895658299],[-127.11061674191893,57.804518642286624],[-127.1229793453221,57.80293436952466],[-127.13564677782779,57.800673452562584],[-127.14954506480215,57.80056286894255],[-127.15039922402988,57.80055547386898],[-127.15660995709425,57.80085143782835],[-127.1637288575698,57.80302324153417],[-127.1667869919519,57.80497022081174],[-127.1662663547529,57.80593141707703],[-127.1687365862537,57.80594335190999],[-127.1734911995487,57.80790777461671],[-127.17760740346723,57.80970162167756],[-127.1806412657888,57.81110123287755],[-127.18794343291795,57.81206791828921],[-127.19962705049393,57.812779392013226],[-127.20550757091426,57.81284280380245],[-127.21962855801016,57.81283954096741],[-127.22470692116757,57.81445265814572],[-127.22941040370189,57.81795319728697],[-127.2351565557748,57.82047491193393],[-127.24170134261374,57.82110477669638],[-127.24277275716577,57.82109476155342],[-127.24768002303577,57.82059119923353],[-127.25419208572504,57.82019792919389],[-127.26033759001267,57.821629172452724],[-127.26246917983272,57.824856886204536],[-127.26086176993012,57.82829954611814],[-127.25760343701553,57.83021459162816],[-127.25318832826032,57.83288516829995],[-127.25006349682424,57.83570497501306],[-127.2500556733743,57.8389620032229],[-127.25214908464858,57.84094313939048],[-127.25424736019372,57.84303187142046],[-127.2562774771824,57.846323524800766],[-127.25697673033088,57.84821010030071],[-127.26057734519011,57.85040118849238],[-127.26829493055786,57.85067774007464],[-127.27654190745226,57.85071547946742],[-127.28560981628013,57.84961423640572],[-127.29174910199629,57.85081090160455],[-127.29499098034653,57.85500545505634],[-127.29150548106779,57.85658263032875],[-127.28642367877177,57.85845331203762],[-127.28341940444618,57.861739389780254],[-127.28332886315037,57.86567028092228],[-127.28415447633019,57.8681208273325],[-127.28426701707703,57.868299194831536],[-127.28557059907916,57.872333297621324],[-127.28437184806226,57.87508155840851],[-127.28311877939066,57.876179349417676],[-127.27822866950282,57.87741978461722],[-127.27559582941302,57.878880687446184],[-127.27526261576247,57.88196154376022],[-127.27312808205734,57.88569671952979],[-127.26717353754417,57.887287888985206],[-127.26574747344154,57.88976001224263],[-127.26885244663322,57.89304144170914],[-127.27144213275231,57.8970724889848],[-127.27382404815192,57.90127598207408],[-127.27117911602849,57.90586850544525],[-127.27054582380454,57.9062693608114],[-127.26563268083399,57.910309132964805],[-127.26153095542831,57.913084821073404],[-127.25768406886051,57.91712318297631],[-127.258143130174,57.92150669507971],[-127.26021852943256,57.92623387664462],[-127.2618391099706,57.930103932790495],[-127.26397048618155,57.933107712934834],[-127.27066820615013,57.934416932996214],[-127.2759852809201,57.93625949891643],[-127.28229079961197,57.938828169501704],[-127.28909473326108,57.940198279244946],[-127.2943918534,57.941349380283086],[-127.302381358555,57.942707307142506],[-127.30931787310558,57.941383076996644],[-127.31520966440146,57.93768186613458],[-127.31603825678616,57.93670455993381],[-127.32172581168406,57.93339093747036],[-127.32795200045297,57.93333801781163],[-127.3362504755382,57.93445751048814],[-127.34526767826321,57.93442961179097],[-127.35387352989875,57.93177605988091],[-127.3532033050993,57.927735853663584],[-127.3526792549004,57.92162133394027],[-127.35713891802575,57.91701752804254],[-127.35850180454212,57.916088359041886],[-127.36514830097428,57.91271823591097],[-127.37694469152346,57.91255194906259],[-127.38226539109277,57.91448892258044],[-127.38727912357136,57.916787825567255],[-127.3926286410698,57.91941505867668],[-127.39566574127659,57.92041522133802],[-127.40449727467208,57.92135435953884],[-127.41481946036126,57.921945077316565],[-127.42552996648186,57.92143607451101],[-127.43346742139936,57.921297067954086],[-127.43775687797036,57.92125084700399],[-127.44737277461257,57.92006990028436],[-127.45522695338117,57.917705051592485],[-127.46318672822902,57.915230892347395],[-127.47257697874929,57.913871115392155],[-127.4787464261455,57.91535520100712],[-127.48592643559017,57.91801226110876],[-127.49266947195473,57.92051232311042],[-127.49963902285951,57.92324282814501],[-127.50278370196887,57.926985348969566],[-127.50128934170438,57.930017387293894],[-127.50150821387588,57.93303909792381],[-127.50394097387363,57.93495899111624],[-127.50691560708476,57.9369804076978],[-127.511537742554,57.940015093493926],[-127.51617686524727,57.943399428740136],[-127.52091955946192,57.946764494559076],[-127.52213607486067,57.947665960580466],[-127.52556771641314,57.950381768789214],[-127.52985658384488,57.95301587653849],[-127.53359085361559,57.955198559483286],[-127.53924214138954,57.95691032558574],[-127.54604042338039,57.95774704607869],[-127.54915999612551,57.957827506469584],[-127.5547896772622,57.95896453184502],[-127.55920656407099,57.96206292386613],[-127.55853652271112,57.964125864451375],[-127.55665772873682,57.96551189736805],[-127.55580234205746,57.968438526406864],[-127.55667624234897,57.971569347520536],[-127.56133879803436,57.97540076325674],[-127.56662510515373,57.975913154029264],[-127.57394230795494,57.976168057885616],[-127.57480406067027,57.9762207096552],[-127.5783553056645,57.97629541144761],[-127.58969015496417,57.977596750584894],[-127.59343141056084,57.979777801575466],[-127.59393392899784,57.98160260580732],[-127.5925040742837,57.983441513618615],[-127.58790856017693,57.98407065102431],[-127.5824407583243,57.98453048486605],[-127.57828682734447,57.985432261656825],[-127.57503348447453,57.98746304897031],[-127.57298500277848,57.99006290882967],[-127.57168250494144,57.99247446696552],[-127.56974862179499,57.995297301092194],[-127.5688531080769,57.99712967757246],[-127.56877172397526,58.00037048078202],[-127.56742380245981,58.00163379217908],[-127.56519680388901,58.00252148883255],[-127.5599737613166,58.00372240399025],[-127.55459327958211,58.00365951892685],[-127.55089581835841,58.002616590796116],[-127.54765647434701,58.00231314688995],[-127.54249020836664,58.00225626791023],[-127.537367448695,58.003338461943045],[-127.53405989279246,58.00400473015056],[-127.53020344583356,58.00449771577148],[-127.52372593461068,58.006626979335095],[-127.52340711616827,58.00680113467821],[-127.51461259156618,58.01032050663936],[-127.5074011109397,58.01313936355165],[-127.5032757354545,58.01500771329021],[-127.50100456802865,58.017546155357486],[-127.50088316093455,58.0233732016744],[-127.50049202820507,58.02351894741575],[-127.49170674176801,58.02869926905401],[-127.48421875186789,58.03640671356574],[-127.48507880227916,58.04077013081225],[-127.4851513623096,58.04078390853306],[-127.48462961003747,58.04322637402463],[-127.48374586674834,58.04409777407366],[-127.48182334460404,58.045994849497774],[-127.4774214356734,58.04930145993871],[-127.47631543817158,58.05147663025523],[-127.47614582494943,58.05558902012384],[-127.47716572728932,58.05700477284728],[-127.47752162739003,58.05786243708128],[-127.4766402803146,58.060259519928245],[-127.47360583429014,58.06268932334669],[-127.47096864451206,58.06426206341624],[-127.46746865495415,58.065781397769825],[-127.46644612762826,58.06727349513578],[-127.46662368009372,58.06921015831114],[-127.46678684607612,58.07075208007856],[-127.46577993990738,58.072701736920266],[-127.46311022930001,58.073359224918036],[-127.46099088645215,58.074351701893896],[-127.45707049060545,58.07621641152348],[-127.4528723782014,58.076369778228724],[-127.4476222682151,58.07722548381988],[-127.44206423510002,58.078542030831265],[-127.44125647632765,58.08008547714808],[-127.44095979133324,58.08083360682327],[-127.4410455514833,58.0832828904286],[-127.44068902446362,58.08534203743881],[-127.43848447892596,58.086909484835],[-127.43714064869651,58.08858433178933],[-127.43657722033136,58.09092393020712],[-127.43328405936035,58.092323474791804],[-127.42761274152387,58.093577801064356],[-127.42219980343104,58.09603181638299],[-127.41870336565172,58.09777421793209],[-127.41166034693133,58.10001171883078],[-127.40429199231818,58.10208173029171],[-127.4024426539276,58.10473086390384],[-127.40459099607367,58.10756247299732],[-127.40538589073692,58.10875681899975],[-127.40678595187977,58.11176679454136],[-127.41060811029533,58.11309980551487],[-127.41278403499733,58.11359743328804],[-127.41749884761708,58.1157106670416],[-127.42179026404827,58.11806160300832],[-127.42461885695664,58.11865981957629],[-127.43437276102848,58.11988406149598],[-127.4382850555833,58.12058706330463],[-127.44328184253258,58.12150265690659],[-127.44599310785911,58.1218773069596],[-127.4489308972311,58.12253666955893],[-127.45321497102667,58.124599507125566],[-127.45685581894323,58.12673204522053],[-127.45942704208868,58.12921722750976],[-127.4595274476976,58.13195370826961],[-127.4624963850062,58.13351899715589],[-127.4652129449327,58.133947071238936],[-127.46738305031396,58.134273369624964],[-127.47315707517228,58.13563713723004],[-127.47579290901811,58.13686473098716],[-127.47717487610343,58.13919217761197],[-127.4813747756945,58.1418295722284],[-127.48468267691544,58.143624029828835],[-127.4865772268501,58.145200727828104],[-127.48773473565625,58.144451859228646],[-127.49359240139367,58.14221453019335],[-127.49956842886935,58.14027182154531],[-127.50811502282474,58.13784216216261],[-127.51323240841181,58.138933368603745],[-127.51686430384254,58.14077723575743],[-127.523106791237,58.14298630272135],[-127.52800408720091,58.14401663418843],[-127.53259876426098,58.14550802870772],[-127.53663887630022,58.146727376236434],[-127.53707429164041,58.14683009465878],[-127.54176718926934,58.14803282727025],[-127.54467890502613,58.1478915818675],[-127.54978470777982,58.148694331596666],[-127.54903214779459,58.14875688951039],[-127.54812759044715,58.15053563215832],[-127.5486741127269,58.15344655436171],[-127.54952076334598,58.155779541442676],[-127.55069100887252,58.15809981108091],[-127.55179817580579,58.158769187752],[-127.55431194756538,58.15953894353016],[-127.55803095977467,58.16069858075214],[-127.564467815268,58.16228421615418],[-127.5671830990323,58.16260257374287],[-127.569432294732,58.16211846943604],[-127.57173243748495,58.16014366892163],[-127.57551642642002,58.15748715454064],[-127.57957669842561,58.156353239468494],[-127.58612392488531,58.15525262485593],[-127.59310290332307,58.154146555760406],[-127.60009787754983,58.15349771867104],[-127.6042080629686,58.153628108318046],[-127.60984571761965,58.15412601415441],[-127.61395668891821,58.1542471204439],[-127.61802972388085,58.153515807617595],[-127.6219465686919,58.1515385511565],[-127.62706324519351,58.14987874044852],[-127.6301079501018,58.15035338832684],[-127.63264039838596,58.15152538862613],[-127.6355786957527,58.15206404644267],[-127.64091320608652,58.153031118334376],[-127.649251578927,58.15350325278277],[-127.6540618217045,58.154925082621745],[-127.65637741313331,58.15604547091222],[-127.6598053921561,58.157834264490326],[-127.66195936908031,58.16025816070673],[-127.6620109761023,58.1615142351327],[-127.66218260530427,58.16305607285278],[-127.66358473147258,58.16555211924189],[-127.66708411357644,58.1665319804749],[-127.67491231730715,58.16763727503151],[-127.68067709676296,58.16848074928609],[-127.68354818797796,58.169934855438974],[-127.68464202626416,58.17272184793588],[-127.68245532891295,58.174742137113704],[-127.6774017595702,58.177830610312355],[-127.67447628372487,58.18283132500599],[-127.67562116639014,58.18429819892862],[-127.67649162441208,58.18445788077098],[-127.6792380012801,58.18545585929393],[-127.6837378570676,58.18699732679721],[-127.68575664356436,58.18868655403044],[-127.68520799146853,58.19109028029118],[-127.68197085562214,58.193752167518895],[-127.67877092938903,58.19481561818453],[-127.67291408143336,58.196944494987505],[-127.67102745182824,58.19839533926718],[-127.67200433692392,58.20106728083939],[-127.67458218477374,58.20314472747222],[-127.6744608564532,58.2053725417244],[-127.66981117897957,58.20806074853808],[-127.66422938388155,58.20909062527664],[-127.65796464575635,58.20933872752468],[-127.65172485346991,58.21015178091858],[-127.65017915147654,58.21205596813336],[-127.65300884890026,58.21492971186918],[-127.65641643915933,58.21626119783767],[-127.66078543132976,58.217239581022675],[-127.66639482962653,58.219396394034945],[-127.66960820367646,58.22369244650726],[-127.67004599781473,58.2288848201495],[-127.67392320057765,58.23352269091963],[-127.67973892969876,58.23784898011994],[-127.68370422032802,58.244532402694745],[-127.68139192487301,58.248726917693865],[-127.6789010988233,58.25126279445145],[-127.67882070619514,58.254468781330395],[-127.68029578463228,58.25604835035671],[-127.6828418487795,58.257327216162345],[-127.68503923718256,58.25798197730957],[-127.68810655602341,58.2588143086618],[-127.69532885768666,58.260491984892255],[-127.69763842206771,58.26126184235545],[-127.70677654978202,58.26457558759009],[-127.7135689540231,58.26877156335797],[-127.71512340716677,58.274578363126246],[-127.7130636053454,58.27956940767958],[-127.7075888594688,58.28328409295603],[-127.70288361247594,58.284825125805995],[-127.69081756602009,58.28913417480474],[-127.68452433748205,58.29418694804702],[-127.68125690485572,58.2989053771231],[-127.68078222287097,58.30050940175725],[-127.67494915422715,58.303652651760906],[-127.66935318521101,58.30475468281773],[-127.66477283445627,58.30417399661147],[-127.66245127359349,58.30317920794734],[-127.65773293111782,58.30186379552274],[-127.65370669442548,58.301572185438964],[-127.65045309347948,58.30160316389074],[-127.64405407304184,58.301627650692005],[-127.6308812860613,58.30052210347916],[-127.62491460423571,58.300477594777746],[-127.61568465718675,58.30023862989503],[-127.60983665371631,58.30047034112162],[-127.60723370517371,58.30050146514369],[-127.60181479640234,58.30061996546753],[-127.5947202845272,58.299564073348876],[-127.59079460286515,58.29903597610342],[-127.58645861097068,58.300088203951454],[-127.58641533806306,58.301075148046486],[-127.5880008897868,58.30256920022572],[-127.59194278725272,58.30376828594889],[-127.59250729029789,58.305097058896635],[-127.59253391457088,58.305719582191074],[-127.59409706833935,58.306679657820176],[-127.59628010238495,58.30629802732781],[-127.59917337353879,58.306709196897685],[-127.59956846275838,58.30684365764032],[-127.60295036168147,58.30799859235702],[-127.60536427346082,58.30903818547919],[-127.60692018284631,58.30981977143445],[-127.6086457400233,58.31060043514038],[-127.60920706406428,58.31183941560894],[-127.60992923194144,58.31289915667042],[-127.61218561954074,58.31420649745304],[-127.6151182715777,58.31550681210599],[-127.61871277278621,58.3164422309456],[-127.61927451991757,58.31768117815447],[-127.6158073010359,58.31968119007549],[-127.6180643548798,58.320989564698685],[-127.62288594154501,58.32288874399265],[-127.6263428817146,58.32453827769708],[-127.62793491148057,58.32612051406499],[-127.6301927820654,58.32742869553004],[-127.63196642313953,58.32927579605475],[-127.63370512782717,58.330323117337315],[-127.63660847433118,58.33091071987445],[-127.6388081528375,58.33088396152636],[-127.64037461522757,58.3318435157239],[-127.64061379098236,58.33344322548135],[-127.63932659346919,58.33497174793486],[-127.63684323571611,58.336247701151926],[-127.63264409445821,58.33701021357847],[-127.62968088129337,58.3389158439218],[-127.62908898673163,58.34088028241719],[-127.62857603802884,58.344624852221926],[-127.62855045152436,58.34791798990205],[-127.62924054280607,58.34967951700162],[-127.63193229869765,58.34964693083627],[-127.63595409491144,58.34972384142754],[-127.64066181850637,58.35058238495429],[-127.64282269209761,58.352890457667456],[-127.64611217010885,58.356271124499884],[-127.64965119597257,58.35772725690765],[-127.65442841513905,58.35766867521278],[-127.65518330470549,58.357542680862],[-127.6593878785822,58.35669186105437],[-127.66415114969169,58.356300895865814],[-127.67048306158335,58.35702162698847],[-127.67433916194416,58.358284640982454],[-127.67595258471225,58.360500271981365],[-127.67257956181744,58.36293052238554],[-127.67079901851984,58.36443410176471],[-127.67354630240024,58.36520809411072],[-127.67769796478814,58.36573110678632],[-127.68424292268365,58.366277973283374],[-127.68892352414896,58.36644385865702],[-127.69395990521535,58.36735933107266],[-127.69726978530771,58.36845799531825],[-127.70236197461955,58.36806154448691],[-127.70433324320055,58.365917617331306],[-127.70422627323038,58.3634677500166],[-127.70409021321514,58.36033587051405],[-127.70699006844518,58.35453479879869],[-127.7176579850802,58.35000859424597],[-127.73020921748748,58.34642705457678],[-127.74094229008199,58.345956526540014],[-127.7439240154418,58.34705825080909],[-127.7478268740798,58.349351119904924],[-127.74928444590589,58.350301908300764],[-127.75081203237451,58.350515509622845],[-127.75244071779335,58.350494329186766],[-127.75589420362897,58.3499914323816],[-127.7592695231302,58.35011798565121],[-127.76106523840075,58.35141441012207],[-127.76220594313004,58.352656532954406],[-127.76293868925018,58.354415785815696],[-127.76455339442091,58.35650468885372],[-127.76585867531305,58.356550437660744],[-127.76726644596009,58.356415250677486],[-127.77063105796303,58.35637106895964],[-127.77401449226271,58.356676734538475],[-127.77577566429476,58.35716533152575],[-127.77724070890261,58.35834021605963],[-127.77815579487792,58.35936072536357],[-127.77957718217237,58.35957541160575],[-127.78120838290727,58.35955385494839],[-127.78599273411398,58.35966111625167],[-127.78938695800808,58.3601817567203],[-127.79272392684459,58.361861374994156],[-127.79277201035276,58.362947203989016],[-127.79039458016423,58.36560071252781],[-127.78846114168952,58.36847276959992],[-127.78759441550315,58.370890680885374],[-127.7872793650767,58.37351677772998],[-127.7868037572361,58.37500465103916],[-127.78733343249078,58.37710774318318],[-127.78567014960863,58.37879094692466],[-127.7847327175931,58.379656390552135],[-127.7840308399582,58.38097665267898],[-127.78407716899675,58.382008654904396],[-127.7850242947044,58.383702180076696],[-127.78624920003111,58.38665810736476],[-127.78676062965039,58.38831250801421],[-127.78852588748077,58.38891765702129],[-127.79315215204633,58.39016719721726],[-127.79873832668292,58.39100868803886],[-127.80294458205631,58.39266758108102],[-127.8023531719185,58.39398648809757],[-127.80284688180204,58.39523701391134],[-127.80355403088774,58.39636795241623],[-127.80384209893786,58.4002522293348],[-127.80419171275749,58.403156928189155],[-127.80643025679828,58.40450084117374],[-127.80833839632437,58.40577731459444],[-127.81147072978438,58.40756712870275],[-127.81382239553469,58.40902615002496],[-127.8152606525559,58.41186234370605],[-127.81486664873847,58.412774595333296],[-127.81845805130827,58.41273521271195],[-127.82215375577071,58.412685345912976],[-127.82635021102587,58.41165878726274],[-127.82886956278385,58.40968503312442],[-127.8339245234561,58.40842210000127],[-127.83770360236832,58.407795964870196],[-127.83898758338988,58.407329479245284],[-127.84383970348605,58.40641016459359],[-127.84735375544184,58.404763688530494],[-127.84758812448611,58.40287473713381],[-127.84853637813022,58.40217928587176],[-127.85144776971357,58.40162750666314],[-127.85326162981151,58.40085727782749],[-127.8527665789342,58.39961590191575],[-127.85437351062572,58.39907299332025],[-127.85661460407914,58.39818908752016],[-127.85900831077694,58.398156110718354],[-127.86842449432493,58.39946273346596],[-127.8838027558846,58.400227591572104],[-127.89116214575121,58.40166912183041],[-127.89602018131957,58.403145448777636],[-127.90381427814933,58.40680721972543],[-127.91374818783912,58.41625731038582],[-127.91583994862475,58.41897553476592],[-127.91686164438194,58.41976025480833],[-127.91816436664172,58.419687860342584],[-127.92107178376455,58.419071766987706],[-127.9234502273454,58.41875949687201],[-127.92789095061579,58.41829201019529],[-127.93512506947854,58.41716470813018],[-127.94417832078926,58.41750152305333],[-127.94856684242791,58.42034780796262],[-127.95027885498234,58.42409478870546],[-127.95180524398182,58.426299837356346],[-127.95372327710847,58.42764607470162],[-127.95557692163607,58.42772699086697],[-127.95720415785057,58.42753277425085],[-127.961833903685,58.42655853248318],[-127.96539391004212,58.42594096791566],[-127.97365129520368,58.42553307973064],[-127.978358212494,58.426038902497915],[-127.9844501275344,58.428005978382416],[-127.98811126348228,58.42937998919813],[-127.9951035652679,58.431908096510895],[-127.99877728572766,58.43346126173857],[-128.0001981525995,58.43523633060743],[-128.00242431021587,58.4401875758114],[-128.00455110863805,58.442535892725225],[-128.00649922405876,58.443000891465225],[-128.01207746305607,58.442010816435165],[-128.0181076303827,58.440043834372325],[-128.02152281125402,58.43811576498816],[-128.02767042855018,58.435634689283596],[-128.03215453276349,58.434633259245714],[-128.0379343268389,58.43415096359805],[-128.0471039698546,58.43288960655137],[-128.05987014192198,58.431465005844636],[-128.06868298841584,58.43168046257004],[-128.07704185748423,58.43280939855688],[-128.07975640527835,58.43334237152479],[-128.0822996481761,58.431183673724],[-128.08901261555476,58.42738880021584],[-128.09603996918224,58.423992843427506],[-128.09801366305896,58.423315550616245],[-128.11108896251682,58.422464991100824],[-128.11866676050425,58.4245644997111],[-128.11963984080776,58.424962340030916],[-128.1271575506639,58.424538687513035],[-128.13935336396747,58.42413931520565],[-128.14392581567327,58.42416553327978],[-128.15739529412127,58.425594382449994],[-128.16193096826146,58.42766827376583],[-128.1626812527741,58.4283657603084],[-128.17184229158602,58.42732051769504],[-128.1782613070689,58.427342790819324],[-128.18795756505727,58.42681769502138],[-128.20088261239812,58.4286372732596],[-128.20163586349472,58.42904710663512],[-128.2104794701346,58.427357750370845],[-128.22422729477927,58.425129006965165],[-128.22609995885958,58.42348148563558],[-128.2315942806327,58.42002272943642],[-128.24555166202524,58.4180667235622],[-128.25881516278986,58.418869179017825],[-128.2619710417875,58.41887019161267],[-128.273131232627,58.41451522713407],[-128.28308297992297,58.41061088723344],[-128.28647325373657,58.409529577353155],[-128.28998389457746,58.40708994469108],[-128.30410808962446,58.39999656545219],[-128.30678067952286,58.3950829750876],[-128.30158988523146,58.392845529232616],[-128.29499806586801,58.38985039149274],[-128.293294639269,58.38687067744251],[-128.2913541562413,58.38578102999365],[-128.28420899519486,58.38357618839187],[-128.28065070649257,58.38151690652528],[-128.28036698392972,58.3782526033924],[-128.27844826782894,58.37544705526716],[-128.27834792255675,58.37487396822209],[-128.27761302357723,58.372928538204505],[-128.27536096723648,58.37064051986601],[-128.27062711744807,58.367415406092704],[-128.26889684794472,58.36690570296624],[-128.26761950052568,58.36478078530803],[-128.26572231187012,58.36060070744883],[-128.26240011377251,58.35750430010439],[-128.2608116876255,58.354468547630425],[-128.2614288828169,58.34915959263473],[-128.2620249751594,58.34533281822901],[-128.26512954822172,58.340718492777015],[-128.2781677259367,58.332128624858896],[-128.2862512852528,58.328156887533154],[-128.29009636296385,58.32485853746366],[-128.2962610267422,58.31808100325486],[-128.30143683002032,58.312155299961084],[-128.30736540977233,58.30657571622916],[-128.30923993359866,58.30423559864116],[-128.31404583246731,58.30144992249956],[-128.31658278236347,58.29826313710116],[-128.31630293677142,58.29443337379587],[-128.31234161634802,58.290361660425795],[-128.30752267830252,58.28572087764634],[-128.30456319186314,58.279647214502845],[-128.299321810898,58.27437590097292],[-128.29827008293208,58.27203215753635],[-128.30231343872117,58.269242029132045],[-128.30678371629972,58.267091005331714],[-128.30812462794984,58.26377234934809],[-128.30403433687613,58.26182207312761],[-128.29723712631775,58.25973839702287],[-128.29636930674906,58.25962751451475],[-128.29772087802522,58.25579697328036],[-128.30026627293282,58.25151496599962],[-128.3005415319868,58.24689467642552],[-128.30156914244816,58.24278233878076],[-128.3017312916332,58.23855913187545],[-128.30162860654116,58.23832742204154],[-128.2916252740788,58.233317307904436],[-128.28992272043808,58.231029645349636],[-128.286549200426,58.22438848207557],[-128.2892062203343,58.21947637081014],[-128.29044827586367,58.215486311461994],[-128.29423178771714,58.207555823358646],[-128.30273823969378,58.20221111634966],[-128.3033928920468,58.20175091661075],[-128.316961974282,58.19751250921422],[-128.33172864945476,58.192587418495485],[-128.3350962670274,58.19122683905505],[-128.3449630696522,58.18869314146834],[-128.3513947135557,58.18413579014287],[-128.35735938274075,58.182262151808516],[-128.36613861898383,58.18006024607843],[-128.3759842725234,58.179176773985404],[-128.38246298746338,58.179708321494346],[-128.38937555164333,58.18018693224253],[-128.3917476129862,58.18064748596491],[-128.3992055099401,58.18072077287396],[-128.40256637436232,58.17987040392795],[-128.404846912511,58.17862627676635],[-128.40681335123872,58.17645389009485],[-128.40890534327633,58.172456405076346],[-128.41207915379533,58.16829576515321],[-128.4137339879908,58.164638325302455],[-128.41790418830246,58.15790949878367],[-128.41966295809874,58.15470807610742],[-128.42445273902732,58.15055390164838],[-128.4266121815524,58.150559703573926],[-128.43036457801085,58.153885847801504],[-128.43830876504114,58.15904830517608],[-128.44433301009238,58.16202747183714],[-128.45080539869426,58.16295986199929],[-128.4660400498799,58.162590606090035],[-128.47069065607334,58.16208291225444],[-128.4813951619942,58.16056514097647],[-128.48832902301484,58.15776963442167],[-128.48844595701155,58.156860526646064],[-128.49311230131113,58.15378359154964],[-128.49454969823148,58.149383804025405],[-128.49457945844082,58.14532451908808],[-128.4945618499224,58.14509250318451],[-128.52504245892186,58.13149996825234],[-128.52775903234541,58.130288118867576],[-128.53869057828965,58.136564548325694],[-128.54466407546352,58.13999364410144],[-128.54845832952907,58.14569319935894],[-128.55419930438137,58.154314457161156],[-128.55503658369605,58.15557138625817],[-128.5557601279364,58.15496267206446],[-128.55550715918875,58.15479126760561],[-128.55559526879284,58.15460325532039],[-128.55568089410426,58.15454998802358],[-128.55570393671064,58.15454505858273],[-128.55585640897675,58.15456796724753],[-128.56534694354858,58.157376901628794],[-128.5678172689098,58.15954762947709],[-128.57038684917327,58.16389855787779],[-128.57350465780118,58.16744869961036],[-128.57543619672606,58.169791319130276],[-128.57790781361354,58.17265336396841],[-128.57939395466755,58.17808471653368],[-128.580231400173,58.18351061895554],[-128.57900713418695,58.190484912909625],[-128.5779090308425,58.19379282768997],[-128.57887715503966,58.19482491819116],[-128.58243690517762,58.19694764146023],[-128.58651940885244,58.20203273683213],[-128.58984288247333,58.20826396279743],[-128.59307031149788,58.212269833997944],[-128.59738801110117,58.214449448042295],[-128.60213271294086,58.21770732506588],[-128.60525173287982,58.22217311000394],[-128.60761996141062,58.225423074288656],[-128.61302148250246,58.228173944097726],[-128.61625196533063,58.23182911725364],[-128.6220999297787,58.23092470111363],[-128.63292166192974,58.23155710749269],[-128.63735151526066,58.233796242304656],[-128.63831086268388,58.23842959062792],[-128.6352704324206,58.24116566600926],[-128.63450833046306,58.242078731802415],[-128.63753130034175,58.244650866900415],[-128.6406577786638,58.24882855199991],[-128.64335321537612,58.25271829987698],[-128.64625677649678,58.258660650221984],[-128.64701501528083,58.25946301601276],[-128.65578437939078,58.26043956372929],[-128.66531655698176,58.26164291821805],[-128.67484261226812,58.26410314818945],[-128.67765075314998,58.2674781762937],[-128.6806773382928,58.27188170204242],[-128.68273323859898,58.27176882220143],[-128.6914035617369,58.27124516799176],[-128.6985542752935,58.27142510503246],[-128.71144883943532,58.27366249030083],[-128.7134003489039,58.27113513759672],[-128.71709134000022,58.26691096525282],[-128.7231613836517,58.262800167563746],[-128.72630369815133,58.26188317034287],[-128.73388558864698,58.26050757245914],[-128.74179678833747,58.25919667158714],[-128.7512195503926,58.25913875233757],[-128.7539270179843,58.258508436108926],[-128.75620146433099,58.25571333778357],[-128.7610735921982,58.25342170339223],[-128.77006401908199,58.25387430579274],[-128.7767806197005,58.25495716391367],[-128.78317174359927,58.25610033192668],[-128.78707091725002,58.25421410336457],[-128.78804197633087,58.250897564461425],[-128.78977054630218,58.248095228318626],[-128.79345368348467,58.24791986593546],[-128.80179228056383,58.24842879010754],[-128.81121492298303,58.24985763089476],[-128.81479049095284,58.25082466169424],[-128.82172231155837,58.25161334610784],[-128.82735397813119,58.25218653689298],[-128.8366749170002,58.2543523236822],[-128.84469503064773,58.257766642179014],[-128.84871127248516,58.26022353493028],[-128.85532295140226,58.26193354166126],[-128.85998453779624,58.26289431103113],[-128.86713753505572,58.264089218374686],[-128.87732415228402,58.26470681565242],[-128.8780833052555,58.264708520128885],[-128.87763586339705,58.26099933160489],[-128.87643191384691,58.25733330927443],[-128.8751213306132,58.25391210553355],[-128.87370098774542,58.25070883404917],[-128.87379652072926,58.2467096337556],[-128.87487020048044,58.24362367412989],[-128.87756581038553,58.2409880070486],[-128.88080949675887,58.23852915519647],[-128.88307401736003,58.23669306783429],[-128.88371319356898,58.233787045281204],[-128.88283444619444,58.22955731950848],[-128.88281375369695,58.22435707585962],[-128.87641751399073,58.22047032735132],[-128.87489278271585,58.21779041574324],[-128.87304026823074,58.213851055536416],[-128.87206449879397,58.213566557893984],[-128.8742270746287,58.212936419331925],[-128.88039781452756,58.21372923717493],[-128.88689090168995,58.21469448426649],[-128.895547054081,58.21501994428099],[-128.89900693915152,58.21444223548008],[-128.9002980056147,58.21295922752486],[-128.90028791812549,58.20976181191154],[-128.89962903734855,58.207871851625086],[-128.90080740423736,58.20484636636796],[-128.9008064184885,58.204505069789064],[-128.90501933363504,58.20294982333733],[-128.91161575577416,58.203453510756226],[-128.91303155347296,58.20551560362781],[-128.914451241351,58.20853869612005],[-128.91488686731455,58.20940050194224],[-128.9177020955489,58.20996805827447],[-128.92257157510826,58.21006865921472],[-128.92754151711375,58.20914291636472],[-128.93110814500727,58.20833747596811],[-128.93457235569582,58.20924979132398],[-128.9367459176212,58.21135797969336],[-128.938923211154,58.213699602589124],[-128.9389238653582,58.213924146884246],[-128.9447684640791,58.21432595858511],[-128.95267158557817,58.21539184615071],[-128.95993354045396,58.21754932383584],[-128.96546485531195,58.219879427342214],[-128.97251970882044,58.223639753460304],[-128.97719931593605,58.22768601592048],[-128.97872133131995,58.22928709925881],[-128.98435080864252,58.229332721605225],[-128.99106439631777,58.2299468179737],[-129.00212102484133,58.23209839852736],[-129.00906224094,58.23401803074175],[-129.0117731509881,58.23487349651854],[-129.0174175278443,58.236920626908905],[-129.0223080922733,58.23947857905232],[-129.02317530061345,58.23970159677366],[-129.02848217337598,58.239977247912435],[-129.03758399957692,58.24075977186878],[-129.0490893315654,58.24421803170778],[-129.05845160577795,58.25007783672402],[-129.06324635796096,58.25366971742411],[-129.06368025632625,58.25383948884966],[-129.06723530523777,58.25165621827536],[-129.07455514830883,58.246772525722726],[-129.08708295470603,58.243143238839366],[-129.0941146909035,58.242720855416806],[-129.11816767386168,58.24390721108919],[-129.1399529617963,58.246184466454835],[-129.14831953641718,58.2487825273573],[-129.1574536134239,58.25207179019928],[-129.1612614620255,58.25359932105755],[-129.17037841862046,58.255055433861564],[-129.17969891267808,58.25587724092442],[-129.1917789326797,58.26046013244447],[-129.19943683274036,58.266369297186635],[-129.20458272995202,58.27075680445551],[-129.2154177587437,58.27906017372795],[-129.22786451471964,58.285751846287475],[-129.23678179867312,58.287891398975376],[-129.2464658568953,58.2904790863597],[-129.25343296748576,58.292511940431005],[-129.26202023105105,58.293966053533275],[-129.27080614877892,58.294381522804855],[-129.27795948899103,58.29411743427537],[-129.28978241072517,58.29435874348362],[-129.29815687287373,58.295977539452885],[-129.30044085757797,58.29642465932066],[-129.30478941746543,58.29715346088805],[-129.30805824815198,58.29816028764769],[-129.31036806273465,58.30032281033013],[-129.312012057199,58.30140549246956],[-129.31714589038853,58.303606151858254],[-129.31758419032704,58.303828959287515],[-129.3202248921562,58.30638753185669],[-129.3232981061184,58.30854900447916],[-129.32756240585118,58.31065399859388],[-129.33356622477493,58.312958380964105],[-129.33967999532655,58.315277761590444],[-129.34447673285527,58.31684788532914],[-129.3493759459901,58.31757063695408],[-129.35645876532604,58.319424873168565],[-129.35819925049321,58.319812752162804],[-129.3677824868908,58.321765720771204],[-129.37399646217688,58.323335311559816],[-129.37736299216868,58.32354737149655],[-129.38407516981553,58.32254298705511],[-129.39153084159705,58.32078265966092],[-129.40480698909946,58.31694268376506],[-129.41992054328043,58.31280302301405],[-129.42778154778335,58.30967339649109],[-129.4313037746794,58.30662711995664],[-129.43921133840587,58.30046727222865],[-129.44135148143837,58.29896573956282],[-129.44439981459865,58.29398125225589],[-129.44689959045866,58.288705248612175],[-129.44785135472702,58.287332928609764],[-129.45480873984255,58.28289486766376],[-129.4594289435309,58.28080806027197],[-129.46999429154081,58.27800155970977],[-129.4742676029758,58.27489876313982],[-129.475646607897,58.273398365807836],[-129.47677676016627,58.27042169698132],[-129.48104067977877,58.26695947791313],[-129.48618819533198,58.264309886178744],[-129.48907628918616,58.26245565700198],[-129.49444711601615,58.26031213456119],[-129.49820854008112,58.25892021797839],[-129.4988289008841,58.25743034528424],[-129.50725820210417,58.25651853084745],[-129.51470890492118,58.25544308690156],[-129.5217157130561,58.25380374940422],[-129.52657260117434,58.252975355778496],[-129.53159399745044,58.2499138829388],[-129.53500510193444,58.24737088901003],[-129.54115683209682,58.24647189837279],[-129.54550616419726,58.24724673892775],[-129.54967503981797,58.24957185375857],[-129.55144435963518,58.25126840463213],[-129.55364161430822,58.25257618860506],[-129.5608252513802,58.2542370655797],[-129.5651856245119,58.25546932649239],[-129.56900532556423,58.25669785367784],[-129.5764198974575,58.25888201267054],[-129.58372755049098,58.26094283197365],[-129.59047696457986,58.26232623161981],[-129.59331094180783,58.26310417230594],[-129.59969767899034,58.262834286896414],[-129.60218139636493,58.262480116484454],[-129.6032760667138,58.26298096979928],[-129.60367151004246,58.2659000503644],[-129.60580695676214,58.26914090382895],[-129.6066008928366,58.27062039417441],[-129.60881604726305,58.27266383328872],[-129.61495189061003,58.27541961811957],[-129.61778960627277,58.276143072731095],[-129.62116840979374,58.277031628480984],[-129.624439981899,58.27786907509811],[-129.6290619725728,58.280584231568355],[-129.63138359951407,58.28250766358159],[-129.63438947272493,58.28574266733713],[-129.63431992744864,58.28722743899185],[-129.63004478025678,58.28977852372376],[-129.6258596600605,58.29157210934744],[-129.62241359318514,58.292518818065005],[-129.61776997885323,58.29323704593863],[-129.61107423843808,58.29442366723318],[-129.60701612134295,58.296914223514],[-129.60720692731732,58.30051295930269],[-129.60766652133722,58.30599182013129],[-129.60791559215912,58.30736018784854],[-129.6067049163151,58.31114036637089],[-129.60343254200603,58.314939854609875],[-129.59635649782012,58.318589381007136],[-129.58865867220106,58.32355826569655],[-129.580985791371,58.329550577199406],[-129.57767738895654,58.33197530504398],[-129.5686734863371,58.3369507454304],[-129.55985556759208,58.34077923947581],[-129.55392885952736,58.34276030922581],[-129.5540183225036,58.346703385099154],[-129.55408086816843,58.34955971685122],[-129.54981990216342,58.3532401450683],[-129.54641368084307,58.356295763205445],[-129.54513825967075,58.35750670536836],[-129.54423372605615,58.36093675596494],[-129.54069770101265,58.367995073132626],[-129.53857406055295,58.3702887791329],[-129.53299475759272,58.37346404409832],[-129.5265298492788,58.37608705399925],[-129.52267163345698,58.37861463420792],[-129.5215483331198,58.381942423652255],[-129.52235099042647,58.38381781292082],[-129.52317319166667,58.386789179270025],[-129.52299095774433,58.38833082526858],[-129.52240885435558,58.39159057870917],[-129.52134379327686,58.39765813356249],[-129.52125944042362,58.40388884407705],[-129.52126613313052,58.40423020490898],[-129.5213778616898,58.409323375486466],[-129.52275807215239,58.4128555003835],[-129.52498642488038,58.41517905607546],[-129.52774099835182,58.41676079742225],[-129.5345417960162,58.41924315084105],[-129.5314364547352,58.4215984826743],[-129.52789633085496,58.42390219763325],[-129.52499724293125,58.425640791171595],[-129.5209025382933,58.427662201135256],[-129.51810134464625,58.42894868097109],[-129.5171360717723,58.429692897913064],[-129.5116061994023,58.430753755409995],[-129.50216141879005,58.43183518662118],[-129.49791770462645,58.43203517778227],[-129.49373484652307,58.42966291604943],[-129.48839190360292,58.42928889292954],[-129.48114049088807,58.43116594595931],[-129.47528357567992,58.43239550518889],[-129.47427241700353,58.430749821789966],[-129.47177952233773,58.425906698874996],[-129.469052651016,58.42026070756503],[-129.46891615138549,58.4188351863285],[-129.46260572407488,58.41887154475805],[-129.45693575678007,58.41833396325953],[-129.44996107071358,58.41768573508714],[-129.4485264648862,58.41677874634835],[-129.44881664483177,58.41494687048373],[-129.44820927994272,58.41163705602522],[-129.44631011539073,58.40907927355375],[-129.44463806007968,58.40702795415963],[-129.44094714246708,58.4017298437742],[-129.43970352511454,58.39939794298514],[-129.4387807253883,58.39659950979173],[-129.43555651348288,58.39284422816907],[-129.43377664854106,58.39080458502663],[-129.43355062763692,58.39039693845297],[-129.42821690067927,58.39002946365867],[-129.42168890403713,58.389844890875366],[-129.41235405230069,58.39057588515998],[-129.41045977367745,58.38812547437456],[-129.40661932705797,58.38637132485232],[-129.40104487472786,58.38457997953342],[-129.3923441727741,58.384394921712016],[-129.3894074568293,58.38440592320549],[-129.38290224228302,58.38524341547796],[-129.37474889442288,58.38527713005534],[-129.37191913419153,58.38512331023449],[-129.36096500654298,58.38661018836681],[-129.3570699162302,58.387713785519445],[-129.34926413097128,58.38906729441165],[-129.33742099125865,58.38957680737347],[-129.32514436529584,58.390158874438505],[-129.31276192937307,58.39084126586005],[-129.29389224711295,58.394071572412415],[-129.27945354431347,58.395672763604864],[-129.25973849132987,58.4011293371954],[-129.25184973132866,58.40464474053592],[-129.24915183152422,58.406201489989556],[-129.24669954690043,58.40981010066116],[-129.24286778182912,58.415941034139344],[-129.24129500649698,58.42029224145391],[-129.24135614876002,58.42469405367919],[-129.24206731510395,58.4289724333293],[-129.24396264955118,58.432287780327975],[-129.24672050975082,58.434953317068064],[-129.25001890885952,58.43729126912908],[-129.25376069842775,58.44018461957053],[-129.2562970511182,58.442459948494836],[-129.25511977785544,58.44389026207513],[-129.25144998520983,58.44619842299753],[-129.24548730055034,58.44804939986343],[-129.2397276157285,58.449041505426855],[-129.2388563956991,58.44905342865906],[-129.23265416953288,58.449471719065286],[-129.23014129475155,58.4487949865859],[-129.2270672160984,58.446864534986695],[-129.2211485866273,58.44403141747144],[-129.21918979945622,58.44397930718627],[-129.21832847456335,58.444844572897374],[-129.2150033937206,58.448967713016685],[-129.21023936679438,58.45098623109693],[-129.20502575338344,58.452260390378235],[-129.19904670099913,58.452914450613875],[-129.19380375267062,58.451852405853366],[-129.19195195580332,58.451914181906496],[-129.19034205051435,58.453803428511264],[-129.18580946635677,58.45719049301412],[-129.18515946473536,58.45742150337721],[-129.1780972987569,58.45910663208572],[-129.17103620078976,58.46089919086699],[-129.16779327839203,58.46279953997412],[-129.1654283893239,58.46572164212097],[-129.1637290782135,58.469436886773465],[-129.16050902042463,58.4739066285101],[-129.15858256440748,58.47723173833346],[-129.1512765503575,58.47673739722922],[-129.14178825221373,58.476086760124616],[-129.13579286216753,58.47610926388954],[-129.13067529135853,58.47674918286045],[-129.12951363968926,58.479957247871155],[-129.12770311731688,58.48413288746642],[-129.12568058093515,58.48876273968574],[-129.12395231788005,58.49037532743591],[-129.12257124093065,58.49374120715912],[-129.1212951030075,58.49700580682615],[-129.11935839473563,58.49975544863145],[-129.11687219929894,58.50193361665852],[-129.11720408135008,58.50244717916616],[-129.11907363483584,58.50387783634299],[-129.1196311336773,58.50506916534512],[-129.12084622729907,58.50661376279005],[-129.12424678713865,58.508314553787216],[-129.12556429241886,58.50911086572461],[-129.12689835967086,58.51139856660551],[-129.127573478396,58.513279136218436],[-129.12879409592728,58.515389727164695],[-129.1292604513054,58.518074952302605],[-129.12926846529857,58.51898242835724],[-129.1295991204028,58.519325259212486],[-129.13051281671483,58.52309653227857],[-129.13043152006816,58.52595622430386],[-129.12893965675528,58.529100198899485],[-129.12832051925668,58.53270028856334],[-129.12922296810302,58.53544738814923],[-129.13185077594184,58.53629425794455],[-129.13261550563854,58.53629452506075],[-129.13578774301274,58.53679619526766],[-129.1443182761445,58.53796421630048],[-129.1478180062937,58.538700651838305],[-129.1523060343829,58.53982738375905],[-129.15462063206513,58.54165174614077],[-129.15442134832563,58.54353471132046],[-129.15164511453273,58.54902767647778],[-129.15026318863917,58.55217842775594],[-129.15030534428954,58.556293622526894],[-129.1504488859229,58.559327997854496],[-129.15025006893057,58.56109414666593],[-129.14697946258664,58.561673515042536],[-129.14065376610955,58.56266523713852],[-129.13498935496776,58.56451311394208],[-129.13216916668614,58.566241047265656],[-129.1309834221951,58.567724422269436],[-129.12718582664834,58.570598266029066],[-129.11019258930628,58.57602256288759],[-129.1096477854852,58.5760260873901],[-129.10091343635352,58.57708016874292],[-129.09580602406334,58.580234720795346],[-129.09615789256546,58.58268919785567],[-129.0968524935582,58.586807496248234],[-129.09491979342718,58.59058143271057],[-129.09166408093915,58.593217183892705],[-129.0862225906998,58.59609139853375],[-129.08187725539253,58.59912919498142],[-129.0749062052491,58.602298354659425],[-129.06421053770268,58.60534469878296],[-129.0625751251406,58.605696225830584],[-129.05645840919564,58.606688116400235],[-129.0483812779326,58.60893712710355],[-129.04292317789262,58.61020117146953],[-129.03570939026133,58.611306601520816],[-129.0305785681338,58.612922298044644],[-129.02227344399583,58.61419518866375],[-129.01439222250883,58.61393030192545],[-129.00946952681804,58.613994745749665],[-129.00761515180218,58.61479981554209],[-128.9997541356529,58.61772408132334],[-128.99517269813288,58.61928130455265],[-128.99978301556996,58.62172276069307],[-129.00505288377366,58.62405959252394],[-129.0095548879853,58.62588303218506],[-129.01405512615662,58.62787713676055],[-129.0193231671643,58.629458567112934],[-129.02327469996175,58.63088042492732],[-129.02437644378224,58.632132084600734],[-129.02493773592116,58.63396200945007],[-129.02702987503042,58.635667904406034],[-129.02956357286035,58.63748973976091],[-129.03089222051764,58.63954518574232],[-129.03222228872212,58.641537682254956],[-129.03333196002256,58.6433104101723],[-129.03490093124785,58.64816464634743],[-129.03579720262746,58.65050838169424],[-129.03558030225403,58.65079185640969],[-129.02670276348937,58.650298125346815],[-129.02243255730465,58.650312427181674],[-129.0143318646915,58.65089708348935],[-129.0063441968904,58.652170796469],[-128.99836369958564,58.65436061010931],[-128.99541586988926,58.65579183500652],[-128.98688898034916,58.65900861486643],[-128.984279276186,58.661645479688644],[-128.98418148066062,58.66393948585293],[-128.98277368324287,58.66622634107466],[-128.97566668020488,58.669384215299424],[-128.96757898790216,58.67265302195315],[-128.96124573703614,58.677006540906596],[-128.95972207457032,58.67861261459755],[-128.95928306146175,58.67883788889265],[-128.9540296751779,58.680048781670536],[-128.95106825246071,58.679996334411875],[-128.9428470439394,58.679662460082326],[-128.9395528240564,58.679329370671255],[-128.93143735154004,58.67813870228387],[-128.92441812308007,58.67718459391945],[-128.91652354948695,58.67719262316519],[-128.9115983784283,58.67868239639198],[-128.91117021065014,58.680686799653245],[-128.90975729999673,58.68326054859637],[-128.9077879462484,58.6846328846589],[-128.90143727326435,58.68646735227288],[-128.89551967904922,58.68761821884464],[-128.89398559527726,58.68796547827299],[-128.89080953961633,58.689911502947375],[-128.88632639848413,58.69260423349465],[-128.88107317040436,58.69587037365473],[-128.87855644215477,58.6980447837188],[-128.8777975139757,58.70021787564872],[-128.87900908110058,58.701863897972046],[-128.88142802996754,58.70387078434478],[-128.88538854144966,58.706438099997605],[-128.88615648241193,58.706835224923346],[-128.891649750404,58.70860586172366],[-128.89439274085277,58.70928446165195],[-128.8981368678568,58.71259306647098],[-128.89803617001013,58.71430290297254],[-128.8970544106288,58.71641800421708],[-128.89760964394594,58.71767345947272],[-128.90069174181568,58.72001648167384],[-128.90223229432397,58.7212688747641],[-128.9034448166239,58.72241141773063],[-128.90520758393924,58.72423427151708],[-128.90873876743947,58.72846403963183],[-128.91061425386275,58.73125515572765],[-128.91061823123124,58.73194715650284],[-128.90425845496227,58.733781898873964],[-128.90283246980687,58.73412693213128],[-128.89658204186694,58.73585111334077],[-128.8894518979646,58.7379711934644],[-128.88506575154764,58.73992484926964],[-128.88078956871763,58.74181311331037],[-128.8772695477733,58.73970352462311],[-128.87166321415484,58.737709834738034],[-128.86836594226375,58.736853658473514],[-128.8640830241705,58.73674619287633],[-128.85859475401745,58.73766159564712],[-128.85310839370868,58.73870256328036],[-128.84805976843157,58.74012960666202],[-128.84422201858652,58.74247487193082],[-128.84192247036157,58.745740618910624],[-128.84115992772286,58.74807544261758],[-128.83644013632752,58.74905475842578],[-128.83325539618272,58.75065806640834],[-128.8336998924562,58.752320572800514],[-128.83556859830654,58.75351299394301],[-128.8367825825938,58.755626838976106],[-128.83315723231476,58.756088863847495],[-128.82722528116133,58.75569095032067],[-128.8241456122524,58.75569199332139],[-128.81953147823276,58.75472711067972],[-128.8145869729308,58.75323862626007],[-128.81216962130836,58.752560595283214],[-128.8045872982846,58.751018411279055],[-128.79525076397002,58.75142627310732],[-128.78690435373568,58.75280186464634],[-128.78525483307874,58.7527996929209],[-128.78635442767128,58.75451181681044],[-128.7871250669672,58.75691375031007],[-128.78690751016703,58.75914718762034],[-128.78657673751283,58.760627968959035],[-128.78713125378883,58.76331297582943],[-128.78812102211745,58.764739754564644],[-128.78977136389815,58.76668328032206],[-128.79251790754194,58.76982667573035],[-128.79285202932203,58.773316162828486],[-128.78977511456605,58.774511751007275],[-128.78504767278594,58.77468045700759],[-128.779994851863,58.774577015232566],[-128.7762553967785,58.773889352814344],[-128.77284908407836,58.77366217890815],[-128.7686710465244,58.77372025726306],[-128.76273343575727,58.77337352275452],[-128.75712959622595,58.771725520044654],[-128.7522926796887,58.77155377261825],[-128.74756627915025,58.77229637976518],[-128.74657954625033,58.772469085859825],[-128.73954288545312,58.77263784837509],[-128.73547591093765,58.77253089475822],[-128.73239988758965,58.77166693814222],[-128.72327947457933,58.76949494089482],[-128.71547798128591,58.768356589678284],[-128.70899534548334,58.768584632048345],[-128.70239946702105,58.768580936529624],[-128.6983324188915,58.76777186044991],[-128.69537012529716,58.76561064657966],[-128.68977066948347,58.76434634659923],[-128.68284770496297,58.76423134703678],[-128.67779205870926,58.76474433371726],[-128.67460708865755,58.76342290980343],[-128.67098580703356,58.76239757640994],[-128.66922465268632,58.76217149865532],[-128.66351496712386,58.76130375457718],[-128.65780236636405,58.761020004280084],[-128.65340530227542,58.76164504230961],[-128.65098267461576,58.76330096872261],[-128.64822742730524,58.76563736728802],[-128.6460209484,58.768322534576946],[-128.64304058615434,58.7713552282736],[-128.64226794411277,58.77215212284859],[-128.64138320639563,58.77444308277075],[-128.6410474262808,58.77684022950713],[-128.6412519482017,58.779748170632665],[-128.64113972712488,58.780954658987625],[-128.63969447176092,58.785575262154566],[-128.6382531689513,58.78861399657052],[-128.63483216267846,58.792544852293574],[-128.63053039108772,58.79540514901165],[-128.6297590709269,58.79562675639813],[-128.62204329784004,58.79973900500373],[-128.61498314214379,58.80424266593993],[-128.61012639262006,58.80829932340361],[-128.60394127985268,58.81337882837917],[-128.6013944786933,58.81633946860741],[-128.59862980775424,58.81948397399497],[-128.59597885843235,58.82119721583173],[-128.5916723910994,58.82421814878963],[-128.58802179132758,58.82775677269394],[-128.58780005520472,58.828219357563476],[-128.58107449519562,58.829919714006664],[-128.57600125417017,58.831453705582504],[-128.57235808323523,58.83316724858513],[-128.5720181816588,58.83505210302985],[-128.572007986696,58.83682288884272],[-128.5716654383623,58.83899541146429],[-128.57164797877903,58.84179095896611],[-128.57086635689762,58.84407962698222],[-128.56920054642669,58.846762446855145],[-128.56709203236215,58.84887835698918],[-128.56565573291962,58.84989405343606],[-128.5608004005446,58.85132449353367],[-128.5555038152234,58.85286189088307],[-128.5514167219104,58.85434051050059],[-128.55019779258703,58.85582833529319],[-128.55106767319322,58.85742091560843],[-128.55248948961915,58.85925483452255],[-128.55379997198366,58.86102791385095],[-128.55511221520223,58.862917799236186],[-128.55554212085897,58.864860159341575],[-128.55509508448498,58.86600102977518],[-128.55309490250625,58.8686270406278],[-128.55087483171386,58.87085267048604],[-128.54976289851973,58.87256322024729],[-128.5497539799381,58.873884647050104],[-128.55172211839874,58.876679148615956],[-128.55302878182727,58.87943208204355],[-128.55344880199516,58.88257012490033],[-128.5532073686007,58.885765495170496],[-128.55032458634165,58.88862374017341],[-128.54944152771955,58.88890988233297],[-128.54657098245647,58.889017380183525],[-128.54149798617215,58.889237736883665],[-128.5404970357693,58.8900922795422],[-128.541474142049,58.89272566378371],[-128.54101629353042,58.89558350640124],[-128.53735973630413,58.89797050528279],[-128.53481191199936,58.89950989635969],[-128.5320432814636,58.90121512505584],[-128.52729278503557,58.902237905583156],[-128.52276141285796,58.90326545912658],[-128.51878424063818,58.90388715032851],[-128.5185498865617,58.90565320488577],[-128.51842705310878,58.907543045871044],[-128.51840763556598,58.910401743602726],[-128.51828160279817,58.91262423193777],[-128.51209060488614,58.91433816073544],[-128.5041209964769,58.91728887297381],[-128.49692168401978,58.92030593408775],[-128.49360665169877,58.92122037653698],[-128.48851994189303,58.9218344341902],[-128.48476266207146,58.922567951260255],[-128.48055441031434,58.92404660744954],[-128.47467768706272,58.927397999230564],[-128.4716762032599,58.92974438775083],[-128.47000031811908,58.93173418808561],[-128.46954780802085,58.933054696680976],[-128.4704174392602,58.93454008025498],[-128.47194765994726,58.93659778164869],[-128.47346644122467,58.939914098724365],[-128.4752074038629,58.94294774720334],[-128.47498520803228,58.94311356670237],[-128.476283732458,58.9462630934498],[-128.47681562997212,58.94842875278204],[-128.4767954245195,58.951404426554866],[-128.4753398933253,58.95351619695924],[-128.47532607458524,58.95506253736352],[-128.47574592956184,58.957401047779655],[-128.47727328065304,58.959863337868725],[-128.47793364051066,58.96026487081933],[-128.4816829028086,58.961356487159456],[-128.4863183304717,58.96217122134964],[-128.49293856535436,58.96343506031],[-128.49823588045388,58.964533981563086],[-128.4994496953349,58.964700583076564],[-128.50308965341645,58.96562284266411],[-128.50506741134066,58.96734852570932],[-128.5054943697955,58.969237432947935],[-128.50558818972064,58.97179765099459],[-128.50534956331362,58.97397742606761],[-128.50365829561395,58.978143464779436],[-128.49977209222467,58.98036295587201],[-128.49600437859905,58.98126772822291],[-128.4919117829441,58.98137825876218],[-128.48869860400123,58.982227782352574],[-128.48459650431388,58.983479908725094],[-128.48270618578715,58.98489856569048],[-128.48281497068183,58.98507637939355],[-128.4846797310928,58.986849405154004],[-128.4839716803295,58.99221994253877],[-128.48395421943698,58.99439570842457],[-128.48304135679433,58.9978102950049],[-128.48169610159036,58.9999831795406],[-128.48136054154025,59.00050166436066],[-128.46910777046585,59.007177627606964],[-128.46613928205198,59.01127642851499],[-128.46805306845422,59.01500862517847],[-128.47057592448695,59.021372831161806],[-128.46494337193545,59.02557362208503],[-128.44448263292895,59.032943189177686],[-128.43858407320823,59.033767452451094],[-128.43252620564144,59.031843414890254],[-128.4242504538643,59.029904439784055],[-128.41281750525232,59.03978812562087],[-128.41264792842122,59.04236219170555],[-128.41633790819526,59.045983041074265],[-128.4325609310829,59.064907951466296],[-128.43282721241522,59.06782505372159],[-128.42933953714294,59.069855727203766],[-128.4230821799115,59.07153968567791],[-128.4190281645868,59.074029607484945],[-128.41861426879032,59.0775161498133],[-128.42039731718586,59.082042822060004],[-128.42683593609388,59.09203441856338],[-128.42969414632063,59.09834022052622],[-128.45587473999842,59.110911120729],[-128.48631797079136,59.106569099484766],[-128.501808727147,59.09927472250628],[-128.50932462113929,59.09594574678492],[-128.51592349074792,59.093927863249924],[-128.51925376864943,59.093992657069926],[-128.52332366347503,59.09619263264331],[-128.52765043431324,59.10221799297453],[-128.52598449555146,59.107760246910935],[-128.52132341750107,59.11288100157042],[-128.51413099541324,59.11668129490004],[-128.503933672755,59.12050904133955],[-128.4955272087138,59.12361116362205],[-128.4776286153223,59.13889672032137],[-128.48998210606945,59.14416727335827],[-128.49723813916214,59.14844152967424],[-128.5041460656975,59.15356702925864],[-128.50673154338045,59.157755051388044],[-128.5109254143082,59.159665729122764],[-128.51262602803482,59.163627074331075],[-128.5090751409373,59.16858353776182],[-128.517071117806,59.17514552262041],[-128.52543216611346,59.174848398082034],[-128.53525947785255,59.1793076157101],[-128.5434469147918,59.18220488479527],[-128.555889376724,59.18415945343041],[-128.56274281529124,59.187053443168395],[-128.56470441931273,59.18940890756565],[-128.5675141141929,59.19411359397748],[-128.56993227386556,59.20190109678681],[-128.55737464115717,59.20566911738955],[-128.55566510649345,59.20760732907105],[-128.55314401246596,59.21119726356229],[-128.5493916555306,59.21495385082158],[-128.53815181062808,59.21953200774221],[-128.52860849520866,59.22268419738371],[-128.52075984340485,59.22458167797051],[-128.51012891218681,59.22618770658043],[-128.50519132096107,59.22764450880336],[-128.50291403407687,59.22992512370329],[-128.5045011940082,59.23415890522941],[-128.50985538453583,59.23973603760091],[-128.51196761017133,59.240147197739866],[-128.52089085832026,59.24037093319513],[-128.5398813742517,59.23943762628123],[-128.54876908522093,59.24160274599379],[-128.55518333615447,59.24472153006718],[-128.55836674669328,59.247477379334825],[-128.57841916154393,59.26800477702049],[-128.58779084939812,59.274799434278926],[-128.59499053468218,59.27815379830297],[-128.60648682739796,59.27883641516109],[-128.62070882812327,59.27695696547015],[-128.64306919175078,59.27608053674673],[-128.651333573466,59.2763536217703],[-128.66418718010638,59.276006972716985],[-128.67641043155137,59.27302703135331],[-128.68774991189704,59.26946958913795],[-128.69279861285472,59.26788702343306],[-128.70622210628989,59.266571865258854],[-128.71930023634638,59.26581984865346],[-128.72625402999637,59.26378469830372],[-128.73353281203322,59.26238134733501],[-128.73999922764685,59.263035489968516],[-128.7446977877918,59.270830223721696],[-128.75020809051037,59.27651298383211],[-128.7603646284447,59.28570064345354],[-128.76662223621005,59.28578215922362],[-128.77153439412413,59.28631319422959],[-128.7765130888828,59.29016187410412],[-128.7819393852845,59.29424426321864],[-128.79042516307624,59.29512533050043],[-128.79306162262023,59.298912937696166],[-128.7932296603424,59.30348812976937],[-128.7877290046476,59.30523650072596],[-128.77810447472373,59.305781394838455],[-128.7774232468393,59.306694632967044],[-128.79338881924446,59.31812944394599],[-128.7937811360567,59.32253832417768],[-128.80055589778527,59.326674007479106],[-128.80051636761888,59.330111171089676],[-128.80338298451127,59.33377725955641],[-128.80277723307296,59.33766675778898],[-128.8043111432763,59.34046932823647],[-128.80876374949426,59.34260085997626],[-128.8125507082576,59.34409810728538],[-128.813861232086,59.34702211879722],[-128.81776504595214,59.35818775195705],[-128.82322583610556,59.36037934852015],[-128.82353873347634,59.362604044173565],[-128.82091536948826,59.36671496986311],[-128.82156119384678,59.36894189373106],[-128.82591626381793,59.37032834955485],[-128.83217200013337,59.37206260278374],[-128.83494613151763,59.37453377432491],[-128.8352393235778,59.378306336605334],[-128.83981250011192,59.380434662778086],[-128.84640574393745,59.3819994778782],[-128.84880031752706,59.3888147324257],[-128.85135679017463,59.39082233767747],[-128.85378978227064,59.39414601208485],[-128.85406502109376,59.41073997571223],[-128.85604121160674,59.41497290381507],[-128.86268937254496,59.42323011508765],[-128.861085247189,59.42635841033885],[-128.8661562576749,59.43547604540775],[-128.8564803904567,59.437736443534234],[-128.84669788751157,59.439188555448],[-128.83670037104238,59.43978959800649],[-128.82804154345004,59.441199354516456],[-128.82039015438875,59.442606042571754],[-128.8126369830607,59.44315060508986],[-128.80565651758266,59.44490273741104],[-128.7917982249753,59.4488627250657],[-128.7825480458682,59.452377910935084],[-128.7730549774529,59.45686905743189],[-128.7662554242265,59.46153073490577],[-128.75968524155786,59.465800617291315],[-128.75447450198445,59.4688644899285],[-128.749069805515,59.46970960128819],[-128.7395404228603,59.46824273864886],[-128.73382027728556,59.46752791925204],[-128.72515582937714,59.4684723419438],[-128.7154660420941,59.470318057099455],[-128.70272347802705,59.47336531306726],[-128.68894455402557,59.47788006323549],[-128.681936145414,59.480652067991834],[-128.6770592622239,59.48326560530083],[-128.67553452697516,59.48743387843511],[-128.67545038878504,59.49275305731087],[-128.67437219434393,59.496930755754015],[-128.6682413295445,59.50055791957668],[-128.6656310614963,59.501994873072064],[-128.6388425239995,59.51673126763908],[-128.63126952098753,59.518872572034816],[-128.6220108554261,59.52065840551799],[-128.59390797917257,59.52516345654868],[-128.5868962481493,59.527129840782706],[-128.5605710748092,59.53232369581557],[-128.55347208058637,59.53257141384763],[-128.5435635357502,59.532798287821365],[-128.53304895987586,59.53503297304395],[-128.51641588716225,59.539123395060074],[-128.50115563954836,59.54207137010233],[-128.48740469152202,59.54267825157035],[-128.47435882827818,59.5419215865267],[-128.46941408998973,59.54137978285236],[-128.45609970454566,59.54267759100409],[-128.43268110154926,59.547399495665296],[-128.42966682140377,59.551150170897934],[-128.43165338957795,59.55785449707632],[-128.43435614710017,59.56279180889092],[-128.42732698658946,59.56469630040782],[-128.41258680684768,59.563747335532774],[-128.4100243300929,59.5721415452937],[-128.39760841064154,59.577610899035726],[-128.38239221661348,59.57751261705575],[-128.37773094920055,59.57914001426769],[-128.37172632371636,59.584884103721244],[-128.36863675817477,59.59126216409573],[-128.36860114933958,59.597273306587276],[-128.3722076976714,59.60187275312531],[-128.38048360172223,59.60478168496089],[-128.3893059890434,59.6086075838814],[-128.39149573372222,59.611197419653934],[-128.38951975978713,59.613759862899535],[-128.38356380097255,59.61732633598521],[-128.39321236733267,59.619671249781966],[-128.399482315876,59.621767876628304],[-128.4059107688569,59.62678600322761],[-128.41530947046078,59.635135890708796],[-128.42235022274846,59.64313043709419],[-128.39868026843547,59.645789894331415],[-128.38773598503343,59.650009428361365],[-128.3671336720687,59.66074573466424],[-128.35132127069576,59.660410605334285],[-128.3480849806605,59.65878242167896],[-128.3376731788782,59.6506517800204],[-128.32957532709042,59.64065518813711],[-128.31482440003987,59.63048123594191],[-128.30221096105038,59.62501263894195],[-128.2794567526169,59.61913363015349],[-128.26763818021877,59.61802204030142],[-128.2575487302636,59.61960773189267],[-128.24648098157508,59.62381782675202],[-128.23309826708984,59.625949713433194],[-128.21513334634574,59.63026776146352],[-128.19706370829843,59.63418920824639],[-128.17992728510816,59.63703193526954],[-128.1698459040089,59.63803519982485],[-128.16116142990816,59.6376214132097],[-128.14783889466347,59.6340305893384],[-128.12663602331364,59.6296774191301],[-128.1099139168369,59.62312993173052],[-128.09424069158484,59.61572809716023],[-128.08202937333638,59.609622463576585],[-128.07498137227722,59.59096956306662],[-128.07473804302967,59.584846553720965],[-128.0674015341083,59.5784334360298],[-128.05736782477874,59.57177211263944],[-128.0465067294648,59.56641782006556],[-128.03541262727958,59.56460161438421],[-128.02377321926122,59.56551826647551],[-128.01167969206656,59.56655745835637],[-128.00263682734197,59.56321563652372],[-127.99937820800666,59.561949162506785],[-127.99295915083493,59.561798482897686],[-127.97239154825134,59.562244859605],[-127.9606874297383,59.56488431425666],[-127.94964583363941,59.5700862720284],[-127.94076951805935,59.57605777456817],[-127.93420679263018,59.58359784519917],[-127.9327680744472,59.58988806686134],[-127.93023175610553,59.594016509919044],[-127.92438588891258,59.59710222126872],[-127.91761611431099,59.5996246751556],[-127.90899492033482,59.60376454098096],[-127.8997082804711,59.608254820354325],[-127.88305221820521,59.61168389019142],[-127.86157381764315,59.61269258702114],[-127.84859259803997,59.61202900356474],[-127.83555510793258,59.60981763691261],[-127.83067493265008,59.60575276752255],[-127.82433674560721,59.5988012378242],[-127.81328263725923,59.59211800377617],[-127.80819968876624,59.59304776647183],[-127.80601323829339,59.593444998123424],[-127.80318183640972,59.59609948347737],[-127.803010963044,59.597585994152375],[-127.80063324187572,59.60039648315273],[-127.7976135050132,59.60407883692075],[-127.7954618231223,59.60689533428758],[-127.79440500838433,59.60884308226432],[-127.79283818452018,59.60914215247832],[-127.78866642416608,59.60906990074309],[-127.78552057421773,59.60933520202138],[-127.78132554290387,59.61176388344852],[-127.77838129495335,59.614527304449275],[-127.77476773855872,59.61747013135564],[-127.76598625281585,59.620919344014226],[-127.75703416261562,59.622651917939386],[-127.75101574246608,59.62465290232361],[-127.74991011832421,59.62522455864278],[-127.74965329339614,59.62762972856931],[-127.74970441562152,59.629113437151084],[-127.75113748030842,59.634744987607505],[-127.75140956594767,59.639311641332014],[-127.75036771709027,59.64177172546984],[-127.74815829550988,59.64315791800615],[-127.74472767714568,59.6450091966643],[-127.73816655956638,59.647754147529014],[-127.73442112873659,59.65030182430793],[-127.73515795361182,59.65206493665335],[-127.73864826476152,59.655224149321484],[-127.74088708676588,59.658057075944704],[-127.74405019945819,59.661454200046194],[-127.74520833608784,59.665542158411924],[-127.7472447328789,59.66906133541563],[-127.75216866294427,59.67106876646764],[-127.76140554540503,59.673903287363906],[-127.76505326767439,59.67494576106605],[-127.7700763804654,59.676501501910764],[-127.77512060291717,59.67867759307699],[-127.77794338156163,59.681898531442194],[-127.78008519032981,59.684957189711994],[-127.78283605571045,59.689321634484784],[-127.79076427383195,59.69325079003012],[-127.79191411794176,59.69380284646865],[-127.79169403130265,59.69705369690985],[-127.79047017684142,59.700776321287464],[-127.78740840276338,59.70360478364319],[-127.7875193759672,59.706680485489485],[-127.79089761723468,59.709615326934944],[-127.79530868697442,59.71288772863819],[-127.79461777398096,59.715631891546984],[-127.79246393802303,59.71861080775633],[-127.79188712344433,59.72147048651272],[-127.79089956842363,59.72547816568702],[-127.79090608250523,59.73192053432963],[-127.79229758804689,59.73613170176348],[-127.79593303127899,59.742878495300594],[-127.80062189024207,59.74746114775587],[-127.80576127273493,59.75197488472555],[-127.81012185091058,59.75677753148329],[-127.80913072502233,59.76060569231501],[-127.80301509642126,59.763573259267076],[-127.79949948816763,59.76651609605509],[-127.8037624669143,59.771788266709095],[-127.80609188843701,59.77359389559072],[-127.8104221457231,59.77747928268749],[-127.81517631320237,59.78370776178548],[-127.81545587075264,59.79135319576014],[-127.8145960577135,59.79256122181431],[-127.81077941184722,59.79664226117126],[-127.80494741750123,59.801433175296985],[-127.79856648713894,59.806743882001406],[-127.79389601816949,59.80917964804138],[-127.78505724373612,59.81234345893785],[-127.77119622948757,59.817838199307],[-127.76392029189363,59.82371667448951],[-127.76063816951142,59.827114775043185],[-127.75654026262008,59.82994709062469],[-127.74643131424013,59.83266544307303],[-127.73776608040762,59.83468118431382],[-127.72858006048665,59.83807073627243],[-127.719870630428,59.84208379727895],[-127.7177081897127,59.84867103420253],[-127.71426818713815,59.85434698422047],[-127.70465545791721,59.85876619778226],[-127.69591582170438,59.85866530720397],[-127.68881063568581,59.856618238696164],[-127.68260554950638,59.85421802985628],[-127.67186579948626,59.851916780458296],[-127.66218068125498,59.85068215626707],[-127.66133472066458,59.85616391397257],[-127.66204253748612,59.86054733114407],[-127.66658595842095,59.864273217899395],[-127.6744854920875,59.866257954441686],[-127.67878006716373,59.86931149458199],[-127.67994215431366,59.87357251667778],[-127.6778966139526,59.87696301419065],[-127.67467480345593,59.8792155578433],[-127.67179429327199,59.881463961021694],[-127.67209139631822,59.88722047985109],[-127.67520348865654,59.89204342504615],[-127.67654087520629,59.89830064440764],[-127.67742365388689,59.900918195547035],[-127.68851194889334,59.89603288903639],[-127.7022557111261,59.89597468012933],[-127.71834967799971,59.898172451895846],[-127.73890582305498,59.907801673534586],[-127.7427978629373,59.91529601532871],[-127.74410994009436,59.923605564133986],[-127.74525599269201,59.933753544662565],[-127.7425382878244,59.93748681496175],[-127.73445019499954,59.940521414165865],[-127.72780524158581,59.94246663755033],[-127.72545239505156,59.94362074203644],[-127.72119212629603,59.948857812220176],[-127.72161969666331,59.95466748820463],[-127.7232004876454,59.97124709027911],[-127.72785486102738,59.98084891782212],[-127.73015237781816,59.99480088072238],[-127.72921450744029,60.00008774269539],[-127.83695030774581,60.00039669357853],[-128.21274421336733,60.00082850831405],[-128.60000443831964,60.000222043389314],[-129.04946329943564,59.99818170561853],[-130.5757127976026,59.99849900310536],[-131.10858430939257,59.99832095540589],[-131.64519199267133,59.99793065931641],[-132.401868786655,59.99820120570144],[-133.8152138884425,59.99823536432027],[-134.61141543137754,59.99825384329495],[-134.88893986000426,60.00223207902473],[-136.85245544825068,59.998100714803826],[-136.8525138428472,59.99813259695702],[-136.85271877549943,59.998273737209786],[-136.8528867023421,59.998388160867286],[-136.8531101813402,59.99853810251911],[-136.85327931637147,59.99867861285752],[-136.8534302856142,59.99881143020442],[-136.853581255982,59.99894424742384],[-136.85374971038604,59.99906773603051],[-136.85388336289992,59.99921783693228],[-136.85396495228864,59.99938792525693],[-136.85400399452462,59.99945432379811],[-136.8547873274981,59.99945256023924],[-136.86748476713188,59.99944397466532],[-136.8772832921283,59.9994360781467],[-136.882708045242,59.99943413323806],[-136.90077714143783,59.99950308115904],[-136.90252164489766,59.999505619172865],[-136.91751899623156,59.99956203895059],[-136.92958339463783,59.99961561349746],[-136.95238665457555,59.99969396945919],[-136.96619141476282,59.999758020127445],[-136.98475988989935,59.999830446396906],[-137.01673478839737,59.99995223986842],[-137.06582308380894,60.000145865483084],[-137.06690498883847,60.000146558926154],[-137.08479579599586,60.00021630792415],[-137.09759933578044,60.00026507475413],[-137.10149914809526,60.00028379815265],[-137.10344087382023,60.000288645607135],[-137.1168001750727,60.00034949847624],[-137.13880671148306,60.00043842103358],[-137.1641956182461,60.00054586460544],[-137.1658554347975,60.00055078158205],[-137.17895085049213,60.00060409540123],[-137.19977086208326,60.00069889005438],[-137.2106221797305,60.00074268678734],[-137.2407236960236,60.00075579690932],[-137.24773340968153,60.000762360205584],[-137.25806237106804,60.000766031301424],[-137.26687673496278,60.000768310577506],[-137.31323635056742,60.000772638919905],[-137.32212457264953,60.000768878942395],[-137.34487931241839,60.0007625453201],[-137.36368674266646,60.00075416257739],[-137.38337315103658,60.000742138789995],[-137.38585615720567,60.00074218948078],[-137.3991645781273,60.00075192009021],[-137.41984840134376,60.000756924118505],[-137.46049753065793,60.0007690176007],[-137.53143872767154,60.00074781059956],[-137.59338718041136,60.000776849419246],[-137.691473784337,60.00078075667107],[-137.73632080576837,60.00072112486642],[-137.7950257749444,60.00073949169065],[-137.8572857946129,60.000741072278934],[-137.90044106285703,60.000720590239084],[-137.94490249655576,60.0007243192707],[-138.00055589632382,60.000894630848805],[-139.06222268537968,59.99960626795072],[-139.05474258161965,59.99477494149259],[-138.79946803276445,59.92458414530065],[-138.70829136507103,59.90626090861531],[-138.68035425358914,59.845302064853946],[-138.66954084133107,59.80959169152114],[-138.62707311555823,59.76851112390613],[-138.03533359143978,59.46682692316017],[-138.02337320526902,59.46063863363388],[-138.00054763550798,59.44883147336357],[-137.9640030559676,59.42990691385635],[-137.95810132920448,59.42684636993442],[-137.60786433361432,59.24377693667323],[-137.54260385795482,59.106405444137856],[-137.50551571115636,58.999985876057416],[-137.5004445446074,58.98538057427455],[-137.52655512722964,58.90635443654343],[-137.45214973220433,58.908340410692624],[-137.28327152730355,58.999985476058846],[-137.28324224286112,58.999999282880815],[-137.17601874133885,59.03215159278435],[-137.08495190982785,59.062768332828796],[-137.037322165369,59.07873034018619],[-136.97000636449678,59.10124436247577],[-136.87705120067898,59.136163900292914],[-136.8290371263821,59.1599655723572],[-136.5847225717385,59.16585737008533],[-136.4899878644698,59.259764237909735],[-136.4960456867097,59.27511668086155],[-136.46953352199088,59.284063443822426],[-136.47261627039612,59.31800599873637],[-136.47298534444522,59.32199462417102],[-136.4776805124054,59.37620804775663],[-136.4774407607405,59.46580504207704],[-136.37407408466976,59.44980548184178],[-136.37271732863843,59.44959536648623],[-136.36851764091554,59.44894402909803],[-136.3627780882405,59.45035559261219],[-136.36221559441748,59.45049110010231],[-136.3623108203597,59.45050892048723],[-136.36259648657995,59.45058169355219],[-136.36288188003223,59.45064199105563],[-136.36311252056282,59.45071095529952],[-136.36341791710402,59.45084244727605],[-136.36357898325727,59.4508996111184],[-136.3637784929015,59.45101862965542],[-136.36395915439874,59.45113793159531],[-136.36410663477568,59.45128472376667],[-136.36416655858366,59.45144606205861],[-136.3642082605997,59.451615588604646],[-136.36426818540951,59.451776926943914],[-136.36430797359068,59.45192047044157],[-136.36431288608765,59.452028017652495],[-136.36431569420571,59.4520993723114],[-136.3643554273462,59.45222928840775],[-136.36439811991883,59.45237715719652],[-136.3644558317993,59.45252503082678],[-136.36449757666963,59.45266388331471],[-136.36457352680287,59.45279788771966],[-136.36464993895302,59.452948896956386],[-136.36476197858846,59.453109718623196],[-136.36485531370326,59.45324809362235],[-136.3649679124609,59.45340887323259],[-136.36513278944534,59.45356003550519],[-136.3653330842931,59.45369717031682],[-136.3655322448857,59.45382075869471],[-136.36573092307145,59.45395801498315],[-136.36587723007258,59.4540776322878],[-136.36605871439406,59.45421504747443],[-136.366245319727,59.45432594928827],[-136.36189988808908,59.45375464570929],[-136.35807850433844,59.44907137901812],[-136.3026977496212,59.46231532333996],[-136.23514495155558,59.522651343601225],[-136.23741285937822,59.55750336257711],[-136.35021194464335,59.598007902500015],[-136.189658443117,59.637820749186865],[-135.99977759373894,59.655017969533844],[-135.95166352642403,59.661800937542154],[-135.47918744185603,59.798042326359976],[-135.35946664518593,59.737873191800006],[-135.25239871785215,59.69793726221047],[-135.23160740782694,59.69817055355993],[-135.21730755799103,59.66205765879292],[-135.15352870993618,59.62487439624885],[-135.13595965726796,59.62374043228242],[-135.11483288041728,59.62233983913796],[-135.02601209550545,59.5629164317576],[-135.02510658766454,59.473847062776436],[-135.07345617219872,59.451765071034586],[-135.09829681868501,59.427093232690005],[-134.9878357066885,59.386192673211895],[-135.0279429463674,59.34506857696497],[-134.95753453982277,59.280240145567596],[-134.69963878409402,59.24792887746274],[-134.67665517333154,59.19041823064389],[-134.56497670144446,59.1306837967488],[-134.48106764027096,59.131159940000366],[-134.44448000153199,59.08875317450023],[-134.37949529177146,59.03876228615348],[-134.3949814723213,59.00010837792467],[-134.40458790687333,58.97962097512302],[-134.31301156910575,58.96311994193226],[-134.33395513513713,58.924309001674146],[-134.256701642706,58.86164813048936],[-134.2552517326845,58.861202650751686],[-133.83822434244593,58.73047840560437],[-133.70110560709114,58.611450493152816],[-133.37602599366943,58.431746589500555],[-133.45931869469968,58.38876209830661],[-133.34411122954677,58.27790778844444],[-133.27874158166418,58.234863225377495],[-133.2427411108601,58.209218109392665],[-133.17789164221466,58.16053797750495],[-133.16936441999837,58.15352706329963],[-133.1559448984228,58.134059997519586],[-133.12235308739957,58.08342777360582],[-133.0672290699981,58.00005130516571],[-132.8678144049678,57.84038436864562],[-132.86727271202,57.83973643345486],[-132.7464001319254,57.69424777162892],[-132.66905249038552,57.62644326205541],[-132.55553558559913,57.5006660928158],[-132.4648849672236,57.42832171998007],[-132.39776957355082,57.37393992626353],[-132.36849243099815,57.35059751926746],[-132.31959906902458,57.2966455241741],[-132.24624552704958,57.21165039817932],[-132.3658302975748,57.091269141778746],[-132.04392870784048,57.04510602145448],[-132.06377874364034,57.00005695155241],[-132.12103474800978,56.87398370178612],[-131.87053621491495,56.80697288576414],[-131.8980498617292,56.754469536049264],[-131.85766612741858,56.70424364112611],[-131.84775027538234,56.66208294778403],[-131.84168290579927,56.636224102208324],[-131.83230200949464,56.60063284536978],[-131.57930218801826,56.61344953599196],[-131.47021636680918,56.55387107774184],[-131.17240029734697,56.451095929781],[-131.0866648953095,56.40713289114635],[-130.78096686398786,56.3673379532281],[-130.62754710582792,56.27003836876449],[-130.62372665969028,56.26730322747155],[-130.59422614772757,56.26056529372383],[-130.5392615639207,56.24752816244836],[-130.46394751177232,56.242769743303825],[-130.44754072085865,56.20296675581036],[-130.43640910289554,56.17463338790889],[-130.4226295289504,56.1417413912501],[-130.34702762808254,56.12851094675459],[-130.2438234285662,56.096763543403625],[-130.22619792063782,56.09996298977128],[-130.101719308489,56.122494251296345],[-130.00960189287036,56.0173321785347],[-130.00364249813993,56.011031906251795],[-130.0060630740834,56.00713237375398],[-130.00200814391937,56.00005398077717],[-130.01606807897338,55.912746865870666],[-130.00213154096645,55.912667976844446],[-130.00208342156438,55.91021059330933],[-130.08426164900303,55.82097046468687],[-130.12388881420884,55.80525061366311],[-130.15038005648228,55.766822105320465],[-130.14573501482155,55.71485862352811],[-130.11131191314666,55.682315554519526],[-130.126413423329,55.58077848820747],[-130.09091655404714,55.50156101528003],[-130.04062910337365,55.453911167758875],[-130.01805266591808,55.33852466824567],[-129.97393551132407,55.29978458772338],[-129.97330100309944,55.28178740534525],[-130.1007971471309,55.19313130931442],[-130.14447838121436,55.14205602935251],[-130.15066638782005,55.124807582502314],[-130.17851266108593,55.09213097220891],[-130.18625990405022,55.061778863389115],[-130.24718731071385,54.9998701209583],[-130.2827703849277,54.96487901003696],[-130.3271729064141,54.92121064708908],[-130.39250949911718,54.89081708803368],[-130.42939669233388,54.8697681172053],[-130.5296170983689,54.80152722687031],[-130.59195732799412,54.790795477474596],[-130.60592337191994,54.78465331398684],[-130.64779917509634,54.766226176895344],[-130.64164839934043,54.755155345805676],[-130.6306488949593,54.744330012781255],[-130.62905663578167,54.73033966795039],[-130.6226096332751,54.716550159431335],[-130.60159594480288,54.703289486062594],[-131.00117036830275,54.69889821675219],[-131.19577543340597,54.69298417012296],[-131.42156012724843,54.705358629863],[-132.01702263385448,54.67788821529675],[-132.68203042833042,54.66131374571547],[-133.93440246777618,54.23025496692671],[-133.45536254987877,53.10081314458159],[-133.45531205825955,53.100689594047275],[-132.60854119189614,52.372665204212055],[-131.71801038202236,51.6633007910513],[-131.20198261399824,51.617099631335044],[-130.7226837922304,51.717999603985405],[-130.15839615122493,51.83362586752288],[-129.63165632846273,51.98932669673295],[-129.63158949604681,51.98934621540206],[-129.00168771616853,52.32941358139882],[-128.99374004154558,52.33342772372428],[-128.9930582666909,52.33378080406584],[-128.98637334773383,52.33699378349214],[-128.9841062896663,52.33816348668521],[-128.9826245055809,52.33890677638553],[-128.9800010980401,52.34024655790885],[-128.9752515063529,52.342727488361476],[-128.97114913640146,52.34519779746835],[-128.9699428517159,52.34598097668286],[-128.96558706864082,52.34853384927774],[-128.96325449051196,52.34994488386951],[-128.96214281483503,52.35059597138537],[-128.95897311423536,52.352561211080285],[-128.9574341193696,52.353650618229445],[-128.9563537154437,52.35445175675288],[-128.95515332613883,52.355194222038726],[-128.9528298667091,52.35686957475345],[-128.95200822243,52.35750138749574],[-128.94705708079698,52.36116310764871],[-128.9431957805596,52.36430160487256],[-128.94200587407886,52.365339846339516],[-128.93863812784693,52.367911974301656],[-128.93476091378253,52.37106401028182],[-128.93392435935556,52.37175495818318],[-128.9322179477675,52.37344676454046],[-128.93141297894556,52.37429228638305],[-128.93040609862896,52.37506547536098],[-128.92963590787434,52.37565149306827],[-128.92765507693196,52.377631192965644],[-128.92368772028564,52.38175890152651],[-128.92289015196255,52.38269110942193],[-128.92195879783324,52.38361938896105],[-128.9209976085986,52.3844883824024],[-128.91993270622027,52.38549852740858],[-128.91815935195095,52.38748235174638],[-128.91547486439794,52.390917775681935],[-128.91399775444805,52.39263154396733],[-128.91321229159442,52.39329915780438],[-128.91213258416568,52.39434156482912],[-128.91172637625291,52.39480331346405],[-128.91129070010055,52.39530619665248],[-128.9107739763521,52.39595919186112],[-128.9104042386007,52.39637515326427],[-128.91005846752014,52.396927941913695],[-128.90980290357163,52.39756204690262],[-128.9096191332789,52.39792286017349],[-128.9092064246179,52.39846665917651],[-128.90874984316838,52.39917928410661],[-128.90842541577754,52.39980333302506],[-128.90797664054904,52.40041366489172],[-128.90756124978256,52.40112300813717],[-128.9071013374667,52.40189628981706],[-128.9065216025321,52.402709589501015],[-128.90571558597858,52.403950944666214],[-128.9055033937668,52.40443754618624],[-128.9051450572958,52.405516232262],[-128.90452414545047,52.406894860773875],[-128.9039544443717,52.408282300630134],[-128.90354472364217,52.40932412576346],[-128.90322408153736,52.41025264615116],[-128.90270006420116,52.411594622565126],[-128.90231056289954,52.41281430549108],[-128.90143510191152,52.41434230758998],[-128.90035644028444,52.41704044426483],[-128.89946939894122,52.41904213710549],[-128.89807211083786,52.42243140948442],[-128.89735237885662,52.42393696267672],[-128.89680779689468,52.42492376826041],[-128.89551678451346,52.4280354779768],[-128.8948096713099,52.429909785426275],[-128.8941425747615,52.431310781799446],[-128.89368598987284,52.432525911582495],[-128.89341076172374,52.43338144934746],[-128.89231921662133,52.43573760099882],[-128.89194492698994,52.436807071875705],[-128.89151188837158,52.43792175386847],[-128.89110899487056,52.43890891305825],[-128.8906836662795,52.43985063122111],[-128.89030956503603,52.44095149898758],[-128.88981813752676,52.44279066115],[-128.88948920614,52.44386459749867],[-128.8890406563618,52.444983568505435],[-128.88721479965554,52.45055795676075],[-128.8866333288515,52.452377997464346],[-128.88627086159417,52.45391663268198],[-128.88572877281908,52.45550009810635],[-128.88487773009962,52.458349368989445],[-128.884275723297,52.4609529430424],[-128.88386823125362,52.46242759795925],[-128.88323219369133,52.46453894921073],[-128.88289558440925,52.46554459991529],[-128.88210130854887,52.46788366799557],[-128.88148610745554,52.4692894075709],[-128.8810442717905,52.471314593657326],[-128.88076063831866,52.47315411316792],[-128.88039876115047,52.474555819913974],[-128.87792117526317,52.484683742631425],[-128.8766619243775,52.48900691791759],[-128.87620652548856,52.48999414361118],[-128.8759493832758,52.49126870390471],[-128.8756488516199,52.49248823456345],[-128.87531992403694,52.49339380260041],[-128.87485739234538,52.49433071294723],[-128.8742617746824,52.495900236779356],[-128.87373106973237,52.497889392971004],[-128.87332651174768,52.498962842543],[-128.87308499580817,52.499271687628486],[-128.87294750011327,52.49960376696997],[-128.87289933147537,52.49969806463778],[-128.8728900397086,52.499807664676716],[-128.87284495757098,52.50029339343721],[-128.87282536270703,52.500607980057524],[-128.87275353727003,52.50119084273828],[-128.87269577879093,52.50152825011146],[-128.87258273779017,52.502489052226906],[-128.8722727257554,52.50312714789545],[-128.8718654627094,52.503788389276735],[-128.87152753698595,52.504672286471866],[-128.87121256249773,52.50570649243962],[-128.87061547192343,52.508253648996096],[-128.87026498544213,52.509738560791504],[-128.86983414822245,52.51127873848671],[-128.86960039177143,52.51223071966337],[-128.8683961726758,52.51696009447519],[-128.86805379316218,52.51855472136358],[-128.86705703476068,52.52181670621122],[-128.8666770887807,52.52332026020828],[-128.86643037456426,52.52455074203174],[-128.86610280669726,52.52594026787561],[-128.86570691134312,52.52728883511284],[-128.86531583672368,52.529374848168445],[-128.86512372186232,52.53105100629074],[-128.86477684672502,52.53821975492851],[-128.86488853591393,52.539353918688825],[-128.86488187558749,52.54084714469569],[-128.8648140651811,52.54194981309348],[-128.86469643486984,52.54356635686412],[-128.86448097432333,52.54510172720228],[-128.86382019031927,52.54849556343428],[-128.86356654387143,52.54993034035064],[-128.86308130594466,52.55130181927236],[-128.86249495195935,52.55333368632255],[-128.8617953149073,52.55652315869593],[-128.86155855235629,52.55818521968989],[-128.86130083736933,52.56019890596853],[-128.8612859633807,52.56148758580768],[-128.8609615310876,52.56481701425674],[-128.86084202547607,52.56626979515419],[-128.86064177093417,52.56774585877816],[-128.86046271630448,52.570441854890596],[-128.86035063511162,52.57188154221145],[-128.86015208273258,52.57373053602501],[-128.85978254715815,52.57581703787113],[-128.85943330107716,52.577597927751775],[-128.85923393663748,52.57928315898203],[-128.85878259024423,52.582836056086656],[-128.85871735556918,52.58448041940818],[-128.8584430273515,52.58616578911189],[-128.85822891858032,52.588019625273624],[-128.85802757456165,52.58945418915675],[-128.8572571601811,52.592206108145476],[-128.85690719705872,52.59291013792722],[-128.8016803061475,52.59283119861739],[-128.79224889010317,52.592839071004946],[-128.77949482916188,52.59284852305203],[-128.773922550294,52.59285210914261],[-128.76599980456504,52.59285675524154],[-128.7550467669257,52.592862904326914],[-128.75493129492975,52.597676372509405],[-128.75433477176466,52.59769381550548],[-128.75323079871035,52.59773275583545],[-128.752476635867,52.59784532602209],[-128.75160303023063,52.5979853742086],[-128.75062431795408,52.59827539302051],[-128.7496603946645,52.59865198651909],[-128.7489363819301,52.598860274999474],[-128.74750273730578,52.59896693601606],[-128.74609276866983,52.599010210515196],[-128.7440474364482,52.59921590591904],[-128.74315958918012,52.599351181425895],[-128.74238976671228,52.59959584075594],[-128.74175529923755,52.59968589482959],[-128.73948133305637,52.59980377440781],[-128.73944739579773,52.599808501082244],[-128.7392465574508,52.59983620333476],[-128.73871300707023,52.5998840588802],[-128.7378648128871,52.59998863524553],[-128.73721202225448,52.60005274015737],[-128.73658236541604,52.60013143656379],[-128.73563575411865,52.60030335831649],[-128.7347513624569,52.60034820092003],[-128.73400996528594,52.60035771674572],[-128.73332676870655,52.60039502741078],[-128.73143517840612,52.60070680921873],[-128.73041515922608,52.60080133525806],[-128.72959121059122,52.60083687319414],[-128.72853249492232,52.600963127698165],[-128.72712009500532,52.60126028045564],[-128.72668423663805,52.60138991079058],[-128.72614341359122,52.601454702318044],[-128.72512318317388,52.60159012110022],[-128.7246655258971,52.60160977716241],[-128.72370476294898,52.60176399347985],[-128.7226616418831,52.60190328933903],[-128.7215739056597,52.60201053255874],[-128.72095140524786,52.60205701470026],[-128.71979751735464,52.602054742722565],[-128.71904119070214,52.60207740472306],[-128.71834989731678,52.60219165075556],[-128.71785516075826,52.60222503746666],[-128.71720191282634,52.60231202826806],[-128.71629367193418,52.60243411104873],[-128.71558872073388,52.60249369898007],[-128.71514106806913,52.60252542242897],[-128.71477584954755,52.60257317297497],[-128.71432073858367,52.60261852608351],[-128.70951279267376,52.60309474402618],[-128.70881441646316,52.60320011508981],[-128.70788403948498,52.60329460476467],[-128.7074406600865,52.60336489930502],[-128.70673581212878,52.60345582685477],[-128.70491107517785,52.603731981372796],[-128.7038594052061,52.60389878856043],[-128.7031013998388,52.604012800787864],[-128.70240276922792,52.604158516496284],[-128.70188150621044,52.60438817365869],[-128.70004059405932,52.60480538164041],[-128.6996271541392,52.6048665368155],[-128.69881676111922,52.60495705662116],[-128.6973460811074,52.605112178966195],[-128.69638628183904,52.605151740306646],[-128.69598819974644,52.605222056812856],[-128.69518599223284,52.60528095718036],[-128.69413964587562,52.60560738470962],[-128.69368023333223,52.60579126855172],[-128.69298867274094,52.60593284211931],[-128.6924619406309,52.606061637451916],[-128.69172632028005,52.60619412504125],[-128.69104983248184,52.60628094620891],[-128.6901944779483,52.60640776728961],[-128.68944294754908,52.60656696881224],[-128.68887904959723,52.60666407733353],[-128.68809835506167,52.606786363663424],[-128.68676186590753,52.60698761067093],[-128.6858320621533,52.60700451815681],[-128.68509567921672,52.607154926115115],[-128.68424916995264,52.60717214840162],[-128.68325926328274,52.607234159271215],[-128.68247208468296,52.60729766824286],[-128.68188677506305,52.60734869271897],[-128.68093536710134,52.60736044930556],[-128.67922526869654,52.6074770952547],[-128.6781975318082,52.60757077025657],[-128.67698950586424,52.607681472831565],[-128.67625338663376,52.60777742537343],[-128.67614912968264,52.607767477676624],[-128.67506071271072,52.607897284842984],[-128.6742491632152,52.608074585514004],[-128.67331052512012,52.60817290557465],[-128.672281290226,52.608376486512014],[-128.67164382475264,52.608422479535484],[-128.6705051108171,52.60842834217784],[-128.6698001370801,52.60846016697725],[-128.66763869524877,52.60871537814405],[-128.66716607065405,52.608748607416594],[-128.66647553443883,52.60878962009134],[-128.65712026004672,52.60916104329642],[-128.65596641267223,52.60916205653924],[-128.65588394265956,52.609175148277885],[-128.65448273320192,52.60921598587342],[-128.65361368241176,52.609228454794945],[-128.65073480541506,52.608867086257284],[-128.64895371185185,52.60874993264049],[-128.648017963407,52.60871620205414],[-128.64701504365266,52.608673327476886],[-128.64633253666366,52.6087095523521],[-128.64477880733628,52.60891803594647],[-128.64363097284777,52.60900123105641],[-128.64244507959307,52.60915762173688],[-128.64008980477414,52.60909257249341],[-128.639038005298,52.6090675671228],[-128.63731441025405,52.60907230010201],[-128.63628163533403,52.60901038491059],[-128.63375112953474,52.60892449927119],[-128.63121227038667,52.60889818106292],[-128.62922515004934,52.60852853329109],[-128.62848001593844,52.60831314757259],[-128.6276148826337,52.60810213577221],[-128.62655596392526,52.60783940835512],[-128.62551825831252,52.60759020955259],[-128.6233984123339,52.60719708831875],[-128.62218052602805,52.606996771294476],[-128.62138950128613,52.60683172069037],[-128.61994723124877,52.60663866169646],[-128.61845791427942,52.606523462401874],[-128.61729337629527,52.60628713056816],[-128.61576186801435,52.60607134694717],[-128.61442481778013,52.60584278196539],[-128.6132604173218,52.60563836742556],[-128.6114430980612,52.60543846288554],[-128.61086077432432,52.60531129289928],[-128.6082752947463,52.604955231537616],[-128.60595274903008,52.60455566862642],[-128.60507878747336,52.60444003127576],[-128.60417221433397,52.60444231231515],[-128.60362554506804,52.60442926587713],[-128.60306511750827,52.60435709056523],[-128.60274421544406,52.604313775564876],[-128.60229462600836,52.604314825522515],[-128.60167197561748,52.604162713860795],[-128.60105870076285,52.603814119256356],[-128.60064113978504,52.603626029396445],[-128.59832580596563,52.60317513110208],[-128.5946410089049,52.60288809671879],[-128.59064971239488,52.60349937518793],[-128.58886914786117,52.60483986056005],[-128.5881162236078,52.60726561849775],[-128.5875349757273,52.609363437504285],[-128.58704341123564,52.611583752523934],[-128.58679315631153,52.614506958060666],[-128.5864893533969,52.61711059411217],[-128.58593080645875,52.6200793092668],[-128.58487186543036,52.623316474222186],[-128.58366973382772,52.626622399428996],[-128.5825272277637,52.629937641326435],[-128.58138482845575,52.633503511850655],[-128.58017389512818,52.63654936964893],[-128.579075433592,52.63931290170612],[-128.57780409570682,52.64160639772159],[-128.57643487900236,52.64372203470361],[-128.57550757237834,52.64584248184332],[-128.57381634746378,52.64861451916289],[-128.57344217563266,52.64926201180569],[-128.572746343606,52.65083060218419],[-128.57144440625314,52.65352055600222],[-128.5705023937013,52.655928363843984],[-128.56926800666494,52.65947136463626],[-128.56844623910015,52.66242098252954],[-128.5677807413045,52.665243791418774],[-128.56672661851792,52.66861791594861],[-128.5657685774989,52.67113927740094],[-128.56435331971664,52.673811391408364],[-128.5626224692282,52.67632329639498],[-128.5610107180691,52.67828864788215],[-128.55922632824303,52.67991121646411],[-128.55726142019114,52.68110537180779],[-128.5553790023112,52.68209919910421],[-128.55439648046683,52.68259559409658],[-128.55464365323544,52.68297878620311],[-128.55471901570627,52.68348067548767],[-128.5549225135796,52.68445190001659],[-128.55514078423568,52.686120903984786],[-128.5553749369221,52.68793142779504],[-128.55573607875553,52.689896744081494],[-128.55631535526666,52.692067559370074],[-128.5567366995727,52.693704645516874],[-128.55754860584724,52.695701584845],[-128.55823978003195,52.69712025474324],[-128.55881889249406,52.69829239991021],[-128.55954792758902,52.69927286809453],[-128.55998883048434,52.69980768250489],[-128.56052247884324,52.70086923384128],[-128.5614744043291,52.702628705609975],[-128.56216431366644,52.70450212121968],[-128.56107671407497,52.70668975313149],[-128.5606179708853,52.70889557849862],[-128.56011535869558,52.71225968429807],[-128.55930420888745,52.71510401413275],[-128.55844831171856,52.71876851222709],[-128.55742000678023,52.721631004911856],[-128.5562867812733,52.72502228616784],[-128.55503244383118,52.72898307249383],[-128.55407794059073,52.7322190159068],[-128.5534838792782,52.735774537638825],[-128.55285243395483,52.73923385362942],[-128.55209320489922,52.74279351207952],[-128.55124355457136,52.74661303896735],[-128.55071641400542,52.74927497105632],[-128.5501140338751,52.753026285875556],[-128.54949757150928,52.75599852737438],[-128.5490084395758,52.75841400795507],[-128.54854915753984,52.761486536324],[-128.54809603454058,52.76477255147224],[-128.54715574434601,52.76808203584404],[-128.54617836540294,52.77147304792439],[-128.5449593592876,52.77508290620315],[-128.5433123092333,52.77912086577076],[-128.54203271602046,52.78251668420032],[-128.54122697895264,52.785228817977384],[-128.5403312106297,52.78813183646378],[-128.53943539300215,52.79128603693443],[-128.5383964327787,52.793879262644175],[-128.5373277084832,52.79631781136306],[-128.5365519454712,52.79846462639959],[-128.53573655127704,52.79980489914421],[-128.53531501328425,52.800515983276256],[-128.5352111664333,52.80095836635368],[-128.53518920123219,52.801746592215586],[-128.53512474230433,52.80333751674897],[-128.5351279068042,52.80520618724915],[-128.53492928866032,52.80726144045321],[-128.5345877813182,52.8090714016284],[-128.53449280512228,52.810712307368306],[-128.53419705560393,52.81338751339944],[-128.5340666988133,52.81607708329023],[-128.53418391366498,52.8188022356917],[-128.53400816886793,52.82146362086957],[-128.53364510238313,52.82363341102252],[-128.53314724601495,52.82661907774527],[-128.53272424584313,52.829691705756524],[-128.532518731632,52.83208907404937],[-128.5320497473452,52.834655270425],[-128.53158254709697,52.83769126821505],[-128.5312726372496,52.84077655951502],[-128.5310741783156,52.84342044542736],[-128.53086764767414,52.84548982495511],[-128.53043668226732,52.848042277555976],[-128.52993805098598,52.85063149816221],[-128.52967875087396,52.85308324972785],[-128.52938977386648,52.85509831226366],[-128.52863408426816,52.85720023369838],[-128.5279997886685,52.85927879358106],[-128.52755327901306,52.86158989374639],[-128.52715039914258,52.86369597964238],[-128.52647831893486,52.86561105561556],[-128.52624094776647,52.867479774772384],[-128.52586873383808,52.869649657141515],[-128.52522500425985,52.87149570649921],[-128.52500203411512,52.873027713926],[-128.5247415349893,52.87458631538666],[-128.5246614783619,52.87595378061838],[-128.52416727238187,52.877057099764095],[-128.5239880260515,52.87802358980457],[-128.5236150240117,52.87920896369735],[-128.52299281931914,52.88052639163561],[-128.522311207318,52.88161185982663],[-128.52106662429836,52.883035131025814],[-128.49736381056712,52.88308984237852],[-128.49707341990828,52.88255219105271],[-128.49701455197822,52.8823897347122],[-128.49691249041413,52.88223716621408],[-128.4966469731121,52.88209198990136],[-128.49627906909575,52.881883962345235],[-128.49616080948655,52.881756961596956],[-128.49596873560532,52.88165732675776],[-128.49585095577478,52.88152246655752],[-128.4956884376502,52.8813868788072],[-128.49554226304306,52.88125991406549],[-128.49532113041266,52.88120462517761],[-128.49509742577362,52.88116900841449],[-128.49478634192337,52.88116776318767],[-128.49453489271863,52.881103581001604],[-128.49443015415056,52.88111196655957],[-128.49416148630465,52.881119354818296],[-128.4941045054287,52.88110038098242],[-128.49404377628485,52.88106522361178],[-128.49395533383972,52.88093815315239],[-128.49386961378846,52.880794205655896],[-128.4938722392931,52.88063212941603],[-128.49387184560624,52.88049814026788],[-128.49381620646,52.88032720880402],[-128.49371336635332,52.88012923784723],[-128.4937730336908,52.880066866481066],[-128.49377600790737,52.879958595288535],[-128.4937467894333,52.879777567762304],[-128.49367278758388,52.879706254700324],[-128.49360106113636,52.87956257517583],[-128.4934987938813,52.87939038130771],[-128.49342654424743,52.87923774252319],[-128.49333906247028,52.87911120734787],[-128.49314657579424,52.8790199820076],[-128.4931031820263,52.87886728703129],[-128.4930901194746,52.87872348397565],[-128.49309239964737,52.87857149749169],[-128.49305027669843,52.87840868397406],[-128.49294788600346,52.87828190861585],[-128.49287338198823,52.87813828754169],[-128.4927726481451,52.87797615203121],[-128.49266895657686,52.87785893940821],[-128.49255212018244,52.8777240560161],[-128.49237646466793,52.877570245870025],[-128.49237729470477,52.87748893085267],[-128.49225950526431,52.87735351123622],[-128.49217242981672,52.877218005296896],[-128.4920093377173,52.87705607025448],[-128.49195138079247,52.87702029693133],[-128.4918318854794,52.87698302972599],[-128.49162671840824,52.876802368373674],[-128.49145000212582,52.87669398682674],[-128.49124386261553,52.87657613723649],[-128.49121426858338,52.876531913324676],[-128.49108307975052,52.87642200098989],[-128.49100901645252,52.87626995532731],[-128.49074420558878,52.876151671116816],[-128.49068316505367,52.876142873317384],[-128.49052185602847,52.876043134143245],[-128.49037402088183,52.87601487125277],[-128.49015190747443,52.87594220961392],[-128.48994574220592,52.87582379326507],[-128.48978345455967,52.87570725463129],[-128.48974022345544,52.8755091475529],[-128.48968391851403,52.87537410024164],[-128.48950539742253,52.87528257336852],[-128.48931458031913,52.87515599081674],[-128.48928562741193,52.875074750563854],[-128.48916814415654,52.87491241074494],[-128.48905247762264,52.87473321310241],[-128.4889351379349,52.87458936668033],[-128.48875720163605,52.874444004811856],[-128.48851963265037,52.8743615760447],[-128.4884780777617,52.87427163221203],[-128.48843410109953,52.87423612630551],[-128.48821077959406,52.874126484467084],[-128.48787150216066,52.87392847342783],[-128.48763697759745,52.8738185026041],[-128.48738309118943,52.87372744680863],[-128.487250649986,52.87362765741074],[-128.48722424136292,52.873494218738436],[-128.48721101148047,52.87333135675039],[-128.48715192045682,52.87319636724362],[-128.4871393116333,52.873044139773555],[-128.487096973715,52.872908804602055],[-128.4870697890255,52.872746228943875],[-128.4870557522939,52.87266523756164],[-128.48689274609944,52.872584026241036],[-128.48677434570675,52.872565227645794],[-128.48664092929832,52.872448639000716],[-128.48651050360775,52.872303389744445],[-128.48642247607836,52.872151071665485],[-128.4863059918804,52.872005527183454],[-128.48621831543716,52.87184311895197],[-128.48617592344618,52.871690956371225],[-128.48608654389872,52.8715470807444],[-128.4860135671708,52.87149312574156],[-128.48601382590476,52.871465644361415],[-128.4859400777966,52.87136628920838],[-128.4858671015635,52.871312334108474],[-128.4857669617231,52.871095802518525],[-128.48551664554432,52.8709059945677],[-128.48529558351007,52.87077106635148],[-128.48510315170202,52.870679827365606],[-128.4849404496732,52.87057170523235],[-128.48488354636692,52.87042602061781],[-128.48473507709855,52.870290677466784],[-128.48463410074774,52.87015546011422],[-128.48453063521282,52.86999337555625],[-128.48441289140555,52.86985794744154],[-128.4842811943646,52.869722814230244],[-128.48414818720966,52.86967685504001],[-128.4839864281125,52.86956870274435],[-128.4837804836931,52.869469342230204],[-128.48360303379053,52.869315548529094],[-128.4835451577858,52.869153064602955],[-128.48348884849216,52.8690174583135],[-128.48344553238493,52.868865323246304],[-128.48344644373387,52.86872121463875],[-128.48353855938038,52.86856061051475],[-128.48352470061795,52.86837084146056],[-128.4835123993901,52.86819169614001],[-128.4833064447139,52.868091769963115],[-128.48308396945046,52.86802807365075],[-128.4830386482295,52.86800099937296],[-128.48308432791754,52.86793836340891],[-128.48308444933937,52.86789238822443],[-128.48307120462164,52.867856787068206],[-128.48296923699826,52.867784381133056],[-128.48270085570934,52.867747443768614],[-128.48249347840942,52.86763913217658],[-128.48248172743334,52.86748520849594],[-128.48243798316818,52.86734148720662],[-128.4823949335537,52.86716187014495],[-128.48239867786495,52.867018266735776],[-128.48228016653744,52.86683743629077],[-128.48217790087818,52.86671177053834],[-128.48207723522543,52.86654963366068],[-128.48198707126136,52.86650387939009],[-128.4819590604523,52.866422617408126],[-128.4819297053079,52.86627018677604],[-128.48188723660135,52.86611634673537],[-128.4818756592277,52.86598147209312],[-128.48181523850525,52.865918835251236],[-128.48177469514178,52.8657660757648],[-128.4816559675624,52.86569345765442],[-128.48152342570222,52.86557515856278],[-128.48149414386117,52.8655040148584],[-128.48142140626075,52.86534184367666],[-128.48140868177603,52.865171121057],[-128.48129237215286,52.86504406475239],[-128.48115925609085,52.86489998785109],[-128.4809975260777,52.864727926802644],[-128.48089686907545,52.86456577975209],[-128.4805724232023,52.864348938871025],[-128.48042544725448,52.86422252924008],[-128.48024865877096,52.86409563651711],[-128.48010067486587,52.86395187235348],[-128.47996872918227,52.86384365055932],[-128.4798226466516,52.86371666519205],[-128.47970724735995,52.863508855680294],[-128.47958696100665,52.8634732708765],[-128.47927783911393,52.863407476559026],[-128.47921785923677,52.86333641501571],[-128.4791142020197,52.863282538260606],[-128.4788934471993,52.86319973634526],[-128.47868737532897,52.86308130826418],[-128.47843400549718,52.86298180926227],[-128.47836032260975,52.86296318059786],[-128.4780359961213,52.86290779542677],[-128.47782663559715,52.86284493433964],[-128.47772318025667,52.86276245491749],[-128.47763829751065,52.862583162249074],[-128.47752045878684,52.8624292238199],[-128.4773303205848,52.86231269999678],[-128.477224413985,52.862284093484696],[-128.47713622135325,52.86223998051197],[-128.47687094136813,52.86217549818245],[-128.47675078641828,52.8621741024795],[-128.4765001486054,52.86213734272586],[-128.4763377658981,52.86200172658141],[-128.47619036175544,52.86188373504244],[-128.47613073053782,52.861866486282594],[-128.4759089762676,52.861846491917746],[-128.47580502881434,52.86181952928258],[-128.47575930215416,52.86180143114231],[-128.4757459294681,52.86174733519453],[-128.47559942114498,52.86169267211003],[-128.47534599092418,52.86165596880978],[-128.4752724474469,52.86165583202514],[-128.47518237565032,52.86169136835631],[-128.47494460537658,52.861635828585825],[-128.4746946730312,52.86156316914387],[-128.47444295274596,52.861507922248585],[-128.47423660186575,52.86141639437025],[-128.47405867976985,52.86123737247314],[-128.4739873168994,52.861066197786045],[-128.47386833128525,52.861020488378635],[-128.4738092214519,52.86094829359355],[-128.473661810065,52.86082973405461],[-128.47344087674333,52.86077552322236],[-128.47323456430757,52.86068455797943],[-128.47293801624318,52.86067453795084],[-128.47271354331025,52.86073589241743],[-128.47251965205706,52.8609070446159],[-128.47245715587874,52.86104907644124],[-128.4723955610798,52.86123874821919],[-128.47233443627331,52.8613723459383],[-128.47221555903337,52.86148921848718],[-128.47208031259527,52.86151617666136],[-128.4717829066929,52.8615235560095],[-128.47154634764166,52.86150498627577],[-128.4714875760569,52.86148659583936],[-128.4712954499886,52.86128712961013],[-128.47111928464457,52.861170293202726],[-128.47089684637302,52.86110601775491],[-128.47074922470358,52.86109622345161],[-128.47049721090283,52.86106788517749],[-128.47018543624293,52.86100380073238],[-128.47008347417952,52.86093081886898],[-128.46998052203438,52.86076030627969],[-128.4698170103845,52.860669000382465],[-128.46953682639236,52.86058798703706],[-128.4693153666844,52.86054050732916],[-128.469255808928,52.860540637959794],[-128.4691072319002,52.86059477472809],[-128.46906258000246,52.86059515708383],[-128.46898612403845,52.86057658097215],[-128.46900208817195,52.860530829087466],[-128.46903314138953,52.86042421986084],[-128.46906436647774,52.860288444727125],[-128.4690685909493,52.86013642683801],[-128.4689961793895,52.8599467658783],[-128.4689528266425,52.85979294024667],[-128.4688938924321,52.85965906897998],[-128.46873361884812,52.85955927949902],[-128.46849617149792,52.85947680949745],[-128.46827239029346,52.85942151878184],[-128.46805217298206,52.859411569140775],[-128.46778550082726,52.85933868200452],[-128.46759359423118,52.85923899941504],[-128.46738696300199,52.8591581224611],[-128.46713461509705,52.85907539764429],[-128.46697227383373,52.858939768298406],[-128.4668095150883,52.85881311775174],[-128.46669423593934,52.8586865912568],[-128.46641366727562,52.858469912836505],[-128.46635601824997,52.858325912908015],[-128.46616503184782,52.85814547654335],[-128.46601946074856,52.85801005000811],[-128.46597471300132,52.85784784752006],[-128.46590162030103,52.85777481228085],[-128.46581558153053,52.85755853375381],[-128.46569868674155,52.85738774513911],[-128.4655685105101,52.857260974127534],[-128.46540576234048,52.85713432150228],[-128.4652431292929,52.857025606744905],[-128.4652156075693,52.8569359167299],[-128.46508387992984,52.85678226701348],[-128.46484791999643,52.85662855290932],[-128.46477632947983,52.85648485372418],[-128.46468833023843,52.85633084214104],[-128.46468934433594,52.85626802910318],[-128.4646154101409,52.856115964892595],[-128.4645745336194,52.855972177263155],[-128.46465044922994,52.85583658670996],[-128.4648441414823,52.85569404847618],[-128.46487501241302,52.8556485493755],[-128.4648461767578,52.85548768987869],[-128.46480378041224,52.85533384262212],[-128.46477541572338,52.855181378334706],[-128.46465923040225,52.85505486890101],[-128.46460157756306,52.854910877072115],[-128.46451423121326,52.85478431852034],[-128.464500210598,52.85470275908964],[-128.4644272508701,52.85456749347195],[-128.46438358069594,52.85442376429536],[-128.4643727048801,52.85423561700305],[-128.46425359661106,52.85409067181952],[-128.4639439935979,52.85391831797738],[-128.4638274277101,52.85380135111563],[-128.46359103755614,52.853656057768454],[-128.46344496261815,52.85365631392066],[-128.46338523638227,52.85363738350783],[-128.4633718625722,52.85350255392988],[-128.4635222934563,52.85336820871389],[-128.46353786457465,52.853170536319105],[-128.46333262606706,52.85301674009871],[-128.4631416946541,52.852917021232436],[-128.4629476628935,52.852844286842945],[-128.462755651123,52.85272609334636],[-128.46256472236013,52.852626373524124],[-128.4625076620403,52.852492459786454],[-128.46242063327597,52.85233898226895],[-128.46228889730435,52.85218476452907],[-128.46215472390844,52.85214945374198],[-128.46196379964917,52.85204974186624],[-128.46183179150933,52.85192299629133],[-128.46163935024228,52.85181322416302],[-128.4614770861642,52.85167814208676],[-128.46127231499526,52.851596659865436],[-128.4610650059999,52.85148718943791],[-128.46084379737562,52.85137857502323],[-128.46063582841265,52.851306128997344],[-128.46056337204004,52.85109852329614],[-128.46037360580772,52.850954489528945],[-128.46035931923075,52.85090041108551],[-128.4602566068133,52.850765201122776],[-128.46017001002198,52.8506027516712],[-128.460052704996,52.8504403802621],[-128.45992007870612,52.850286734788575],[-128.45981879078835,52.850159908721906],[-128.45974591828568,52.850025759738145],[-128.45974821908354,52.84987209575162],[-128.45961494753746,52.849755474770916],[-128.4593637364639,52.84969121610436],[-128.45918676191485,52.84959119883416],[-128.45898084254762,52.84947329066967],[-128.4587294906632,52.849390536953706],[-128.45852154933692,52.84931807782338],[-128.4583313605577,52.84918246385818],[-128.4581835022679,52.84903867074819],[-128.45791790318398,52.848902383021525],[-128.45781702994648,52.84876657636848],[-128.45786469270945,52.84856038405246],[-128.45786493438095,52.84837088213072],[-128.45786730642234,52.84821833795194],[-128.45783950308982,52.84807483941044],[-128.45784187520567,52.84792229520354],[-128.45775484053468,52.847768258298785],[-128.45768266090778,52.84759764734613],[-128.45746320346367,52.84738976112783],[-128.45725660144507,52.847308301619535],[-128.45703291403342,52.84725299772365],[-128.45684126073866,52.84718860912423],[-128.45665007821563,52.847116361389006],[-128.45638110133544,52.84711469504512],[-128.45614452429487,52.84715888818856],[-128.45587661172235,52.84717570408004],[-128.45584590568663,52.84717579006322],[-128.45577398576847,52.84705787292852],[-128.45562662744143,52.846922480394184],[-128.45537664111353,52.84681445791392],[-128.4553626405886,52.84673289698114],[-128.45525936475065,52.846652081328905],[-128.45521774351863,52.84646233339186],[-128.4551434067362,52.846318676894846],[-128.45505744925748,52.8461831212461],[-128.45493945873102,52.8460566403356],[-128.45485376777788,52.84587733994555],[-128.45457189652544,52.84581315628017],[-128.45454178166517,52.84575884286095],[-128.45451339816563,52.84568598758496],[-128.45456145027487,52.84555099431709],[-128.4545629121533,52.84539846919999],[-128.45453297168262,52.84536321394672],[-128.45440100631276,52.84523645948577],[-128.45426916885484,52.845128207874396],[-128.4540628139766,52.845018149577804],[-128.45403273280914,52.844964400448745],[-128.45391529624115,52.8448474333946],[-128.4536944063518,52.84479206495569],[-128.45365005027875,52.84476495968901],[-128.4535485458039,52.84458543263203],[-128.4535052020132,52.84441421672766],[-128.4534769621792,52.84427913142893],[-128.45343461797472,52.84412527897798],[-128.45336352517674,52.84397314842946],[-128.4533355662162,52.8438105902323],[-128.45312973775475,52.843612494107134],[-128.45305806708853,52.843450283879704],[-128.45294177509908,52.84330470371027],[-128.4528522102364,52.84317089925924],[-128.45281132135,52.84302598641965],[-128.45272316260755,52.84290056661311],[-128.4526358760873,52.8427739982683],[-128.45260885731201,52.84261142021046],[-128.4525345360246,52.842467761710985],[-128.45244798548035,52.842305305712244],[-128.45236110752,52.84216975834726],[-128.4523038411976,52.841998841632346],[-128.45224521679563,52.84183691455181],[-128.45221832581527,52.84169283039834],[-128.4521314652137,52.84155729145963],[-128.45205883588588,52.84137828130588],[-128.45195652977745,52.84123296424666],[-128.4518849760654,52.84108869135529],[-128.4517828941172,52.840963561568635],[-128.45166533439308,52.840828098176246],[-128.45150197026916,52.840737321135414],[-128.4514739085434,52.8406375475055],[-128.45146171796443,52.840457840211435],[-128.45144879215232,52.84031402041444],[-128.45143514697813,52.84020610573289],[-128.45142309691516,52.84004489218637],[-128.45136669401512,52.839872826638484],[-128.45123486736261,52.839683282797324],[-128.45114840884315,52.83952250129668],[-128.45113504568775,52.8393871046677],[-128.4510903735456,52.839224885637776],[-128.45103420691146,52.83908926124424],[-128.45093027401313,52.83896416934852],[-128.45084470154274,52.838818501988314],[-128.45086105977768,52.838666230716846],[-128.45086198734631,52.83850418098172],[-128.45084906466252,52.83836036989918],[-128.4507936671907,52.83818940428519],[-128.45067611825098,52.8380539396633],[-128.45057301380191,52.83792714373599],[-128.45053157932392,52.837756451675986],[-128.45050373149036,52.83759556759722],[-128.4504600936756,52.83745127620598],[-128.45034417274513,52.83727933095926],[-128.45027234956882,52.8371625386177],[-128.4501980285927,52.83701832233834],[-128.4501115150443,52.836856419856694],[-128.4500101480436,52.836711081450105],[-128.4499362681453,52.83655845062404],[-128.4498650752363,52.83638781410955],[-128.44977854718866,52.83622535551446],[-128.44966100688254,52.836089889706855],[-128.4495289452714,52.83594463517314],[-128.4494286156318,52.835800961039546],[-128.4493557360049,52.83566568444087],[-128.44923805880077,52.83551171534534],[-128.4491651202101,52.83535906438073],[-128.4490632779521,52.835205329900326],[-128.44897611474224,52.8350804426148],[-128.44887424142271,52.83492614348999],[-128.4488320198018,52.83477397286305],[-128.4487284462779,52.83463877096934],[-128.44856862886948,52.83451203491954],[-128.44842073027004,52.834349733999495],[-128.44840781655782,52.83420591330752],[-128.4483211591032,52.8340249505774],[-128.4482493469417,52.833908156756166],[-128.44819041675953,52.83377258850891],[-128.44817881587096,52.83361921391391],[-128.4481802251185,52.83344930482293],[-128.4481686073356,52.833295374390936],[-128.4481407070437,52.83313336934531],[-128.44812779464337,52.83298954851085],[-128.44820381830166,52.83285565100731],[-128.44829378361206,52.832721462677384],[-128.448356222044,52.83257775675081],[-128.44840176723775,52.83241534117982],[-128.44843296737773,52.832245940860666],[-128.4484200691243,52.832102119666665],[-128.44836381335938,52.83194855497425],[-128.44828908576724,52.83181331613013],[-128.44817390259374,52.83168621380403],[-128.44801131845767,52.83155953472114],[-128.44789529656035,52.83143412707279],[-128.4478219894841,52.83130726350482],[-128.4477350572592,52.831153782002055],[-128.44763329445126,52.831001165818634],[-128.44750183381637,52.83086598808577],[-128.44733880007993,52.83074772267667],[-128.44732559671414,52.83071211665754],[-128.4473112846507,52.830559919571904],[-128.4473297441943,52.83037900698879],[-128.44743504155693,52.83023665037097],[-128.44755593455918,52.83007435035677],[-128.44761749951218,52.82993178405383],[-128.44763470555566,52.82977780843729],[-128.44766559073508,52.82963531664259],[-128.44769676994792,52.82948161474964],[-128.44769855648855,52.829302170893484],[-128.4477152521781,52.82912297229028],[-128.44749608942675,52.82895037805121],[-128.44727263442178,52.828913549171354],[-128.44721434104312,52.828886176039354],[-128.44718613714963,52.82883237691327],[-128.44712827766043,52.828715291381904],[-128.4471431450999,52.82855295032592],[-128.44721916394417,52.82841905307968],[-128.44723738889564,52.82826674256983],[-128.44723829813117,52.828104136290065],[-128.4472119044283,52.82795219084811],[-128.44718446098003,52.827798024690466],[-128.44716922895827,52.82764584651409],[-128.44724664913463,52.82752032512919],[-128.44730768044596,52.82736824332503],[-128.44732532588347,52.827205844161554],[-128.44728161777422,52.82704361185859],[-128.44716411068143,52.82690814275683],[-128.44704797997622,52.8267642306656],[-128.44691547459698,52.8266105771543],[-128.44659281631175,52.826384074137394],[-128.4464469613249,52.82625704427404],[-128.4464462819054,52.82621276288207],[-128.44634584753769,52.826050591248524],[-128.44619724720934,52.82592417446669],[-128.44605198774823,52.82580722335778],[-128.44605216644536,52.82576181175413],[-128.44617287346315,52.825644924306886],[-128.44615853484515,52.82549216212955],[-128.44605736416847,52.8253658869626],[-128.4459551810868,52.825221683145045],[-128.44579306826603,52.82508658608054],[-128.44573679884178,52.824932454982275],[-128.44569278232746,52.824797139495814],[-128.44557563514968,52.82463530646081],[-128.44545963923187,52.82450989585011],[-128.44538772769485,52.82437459630529],[-128.44524050724397,52.82425600763376],[-128.44512260642796,52.82412951509362],[-128.44500649016672,52.823985600727084],[-128.44482997367564,52.82385865149361],[-128.44469682360884,52.8237420026975],[-128.44459518925134,52.82362358501963],[-128.44449165620685,52.82348837842469],[-128.44437554433057,52.823344472334675],[-128.44430301962512,52.823182273854194],[-128.44421717499463,52.82304726377097],[-128.44419584379034,52.823032009883896],[-128.43554564683384,52.82833387240265],[-128.43599336229929,52.828422133851554],[-128.4360281864025,52.828429260156916],[-128.43604537029464,52.82859989509992],[-128.43607909072563,52.82894623760453],[-128.43609303933124,52.82912535375781],[-128.43607510074986,52.829136938887565],[-128.43602407298025,52.829155373282916],[-128.4359702663849,52.82917387429145],[-128.43586349520734,52.82920972850303],[-128.43554113001335,52.82923211545845],[-128.4351210521701,52.82918813022456],[-128.43485334265117,52.829125285127766],[-128.4346394965262,52.82911009366805],[-128.4344568566429,52.82915257038687],[-128.43440294337876,52.829185640599285],[-128.434538008292,52.82927086475935],[-128.43510806733426,52.829498430249586],[-128.43575632675126,52.82982472988953],[-128.43587826379067,52.83015242239129],[-128.43571171082752,52.830330233556325],[-128.4354097950742,52.830450312467605],[-128.435003284978,52.830628059254295],[-128.43479838638652,52.83078592509492],[-128.43476013477974,52.8308814624143],[-128.43474891940446,52.83091309095681],[-128.43474574722606,52.83092269214141],[-128.43473767230645,52.83094416399883],[-128.43482424874463,52.830945732171216],[-128.435007638451,52.830981173197216],[-128.43510758853606,52.831119260304604],[-128.43511651664787,52.83125923549117],[-128.43512482232174,52.83138856690405],[-128.43513317513245,52.83151846245544],[-128.4351364997502,52.831576700199406],[-128.43509187407759,52.83160958693562],[-128.43500959265535,52.83171612913995],[-128.43497049257817,52.831878404860106],[-128.4349921024115,52.83204502771534],[-128.4350526601765,52.83219346728516],[-128.43512689315133,52.83230461186553],[-128.4351731748435,52.832365887479085],[-128.4352215794278,52.832415341088556],[-128.43527500153326,52.832503935472765],[-128.43531518136976,52.83263765582723],[-128.43533183351528,52.832749994753684],[-128.43533294323973,52.83278585275969],[-128.43533684736158,52.83282165279593],[-128.43533431263387,52.83292374204187],[-128.43531091517298,52.83303523432319],[-128.43530061752068,52.833099361007555],[-128.43531928990177,52.8331331772418],[-128.43531919592093,52.833180273027274],[-128.43526623364315,52.83326266012721],[-128.43521024944857,52.83337370704544],[-128.43518032789058,52.83345226126885],[-128.43517039470666,52.83347377166201],[-128.43516238345657,52.833496363468825],[-128.43511874275273,52.83357912224032],[-128.43501801107334,52.83370455256693],[-128.43485599068254,52.83381555600226],[-128.43464545586104,52.8338911191911],[-128.4344192523404,52.833936741286166],[-128.43427925682758,52.83396094853337],[-128.43424336915987,52.833967855222795],[-128.4342185171887,52.83397229948934],[-128.4341506649718,52.8339894042888],[-128.43404451931644,52.8340364562899],[-128.43393361278012,52.83409761841182],[-128.43385254794805,52.83416041329371],[-128.4337526736064,52.834300957405794],[-128.4336560627522,52.834514882078075],[-128.43362925351374,52.834697085154346],[-128.4336273976718,52.83484401126905],[-128.43361508442436,52.834970414954476],[-128.43359898065287,52.83506324984512],[-128.43358426608063,52.83513139675288],[-128.43356516877722,52.8352041106495],[-128.4335325072184,52.83531635944657],[-128.43349317938507,52.835442192779816],[-128.4334492778669,52.835520471009396],[-128.4333971821803,52.83555294661461],[-128.4333753644895,52.83556181290229],[-128.43339326455782,52.8355659270085],[-128.43342331821052,52.83558716454462],[-128.4334247458858,52.8356286222768],[-128.4333926367584,52.835685351748005],[-128.43335979760965,52.83574546017395],[-128.43332691181214,52.8358050133991],[-128.4332723127618,52.83590761625534],[-128.43319830847346,52.836061643908586],[-128.4331341524592,52.836225002742886],[-128.4330932418667,52.83637217291657],[-128.4330816610578,52.8365114514161],[-128.43308241160628,52.83662244239837],[-128.43308282176739,52.83666224375571],[-128.43296891626747,52.836703848963786],[-128.43270059608443,52.83681032395601],[-128.43248830217152,52.836904424762196],[-128.4324373811988,52.83694136063478],[-128.43238673048705,52.83698277599322],[-128.43208025872536,52.83713825480059],[-128.4316131748463,52.837364335865026],[-128.43138706352332,52.83747721728638],[-128.4313546377602,52.83749582920376],[-128.43107047860136,52.83761832609876],[-128.43049621515496,52.83785727823458],[-128.43010607876846,52.83801391831054],[-128.42980559989883,52.83812777953343],[-128.42912262880628,52.83832019428698],[-128.42837590678602,52.838471315048515],[-128.42809546479856,52.83851243959718],[-128.4280991746825,52.838561133811076],[-128.42811125041385,52.83865900004056],[-128.42814474416207,52.83872446253941],[-128.428301171858,52.838808686803006],[-128.42853161024416,52.83895136374756],[-128.42863224826186,52.83905243934663],[-128.4286354403494,52.839124699972956],[-128.42863459909103,52.839273281673066],[-128.42863672367437,52.83947394572324],[-128.42864059908132,52.83968915008916],[-128.4286457736896,52.83989423609318],[-128.4285917815513,52.84000804531387],[-128.4284740562141,52.84008055533293],[-128.42841035709753,52.84018727244753],[-128.42838734337568,52.84033856411246],[-128.4283432639764,52.84054466866539],[-128.42825635576315,52.84071745559475],[-128.4281191722826,52.84079149781646],[-128.4279671849151,52.84086695828134],[-128.42782673256966,52.840965170593535],[-128.42768243295274,52.84104496575918],[-128.42753914030789,52.8411589342208],[-128.42739893129792,52.84129414289797],[-128.4272851916124,52.841387873315625],[-128.42723953944562,52.84145217334574],[-128.42719768196318,52.84151750721405],[-128.42701609451498,52.841563312831454],[-128.42670529135773,52.84159440451682],[-128.42662407622012,52.84167120810297],[-128.42685194353135,52.841768534428674],[-128.4269838385224,52.84184653987226],[-128.42697655407704,52.84188200598719],[-128.42697171216417,52.84189500516616],[-128.42682567426783,52.84196081469125],[-128.4264603084482,52.84209562510299],[-128.42594626525653,52.842200998222694],[-128.42523697472075,52.84230815031029],[-128.42454474359042,52.84243738014987],[-128.42403534972505,52.842444533180846],[-128.4235048638073,52.84230971818625],[-128.4229584061806,52.84222120243761],[-128.42241180112165,52.842261067968096],[-128.4220072608774,52.84231258618737],[-128.42186076446941,52.84230495125834],[-128.42170274753244,52.84222523645139],[-128.42144313749137,52.84209323949786],[-128.42128043666574,52.8420130556152],[-128.4211935347781,52.841973360621544],[-128.42108274554653,52.841939208284614],[-128.4209845834736,52.84193057568953],[-128.42088537519055,52.84193655003307],[-128.420608840187,52.84193215962731],[-128.42022442367102,52.84191205193218],[-128.4200563427759,52.84190093972012],[-128.42003783916726,52.84191926135342],[-128.42000877207158,52.84194789209731],[-128.41993491421593,52.84202341788154],[-128.41986499505668,52.842102782390285],[-128.41980314527822,52.84217693934099],[-128.41973470325092,52.842249554683036],[-128.41968883108822,52.84229366425096],[-128.4196475492388,52.842336566912],[-128.41958188635977,52.84240911590902],[-128.41950454857133,52.84252171487018],[-128.41942192058985,52.84265572682549],[-128.41934926767888,52.84275253139316],[-128.4192770115464,52.84282353860649],[-128.41920056206718,52.842886227148796],[-128.4191367396823,52.84294191893021],[-128.41907339386344,52.843006014833186],[-128.41901354299029,52.84304985591243],[-128.41889703285196,52.84307861025488],[-128.41872286309726,52.843124240914825],[-128.4186086722678,52.84316135219533],[-128.4185859893439,52.84317135463589],[-128.41859545621125,52.84319077731038],[-128.41863600721055,52.84328245097089],[-128.41868500733295,52.84345748037458],[-128.41867131267293,52.84360968941869],[-128.41861474742282,52.84369494938981],[-128.41854517266978,52.843780477270876],[-128.41846560603543,52.843870139800515],[-128.4184046879337,52.84394427664039],[-128.41831103164165,52.84404824054182],[-128.41816719461653,52.84416949157454],[-128.41804318246287,52.84424661383569],[-128.41794944630223,52.84428330317805],[-128.41784308234148,52.84431071721545],[-128.41773991069184,52.84436162094627],[-128.4176167235265,52.84443703935347],[-128.4174634347858,52.844490086914256],[-128.41731086191723,52.84452294574895],[-128.4171810667206,52.84456374051664],[-128.41706863262627,52.844615390426554],[-128.41698129555385,52.844666523667506],[-128.41693649871246,52.84471341749192],[-128.41688577569457,52.8447705246373],[-128.41675775483716,52.84485893159693],[-128.41656179506055,52.84494705910444],[-128.416410218551,52.845014090246984],[-128.41635199552903,52.84508649299426],[-128.41630581333723,52.84515808283254],[-128.41625918677107,52.84522183294978],[-128.41623300537898,52.84526889957561],[-128.41621893058877,52.84528320944346],[-128.41620321910383,52.84530147291953],[-128.41615261936144,52.845377073505006],[-128.416086831126,52.845496724766214],[-128.4160018370692,52.84562236844985],[-128.41590076694112,52.84574330158499],[-128.41580829110762,52.84585172392869],[-128.41575429223283,52.845916746709946],[-128.4157357364559,52.84593394735607],[-128.41572707810343,52.84594533808836],[-128.41566952235317,52.84599697884689],[-128.4154942194731,52.84610486214354],[-128.4152239847338,52.846228717876606],[-128.41502511008008,52.84629839720048],[-128.41496661886794,52.846316984088865],[-128.4149579602323,52.846328374761676],[-128.41492583770682,52.846352581823055],[-128.414864453226,52.84638579558101],[-128.4147746656263,52.84642688603577],[-128.4146711680967,52.84647218721787],[-128.4145891144879,52.84651815968554],[-128.41450831465943,52.84658654050121],[-128.41441185025099,52.846657476861736],[-128.41433656483483,52.846691541230946],[-128.4143006951886,52.846699006228626],[-128.41425190801883,52.84672467694676],[-128.41396678488815,52.846815753991415],[-128.41349611413946,52.84693251281533],[-128.41319466130332,52.84699813453369],[-128.41306539623972,52.84703218600156],[-128.4129609235675,52.8470931942953],[-128.4128796098419,52.84716886815118],[-128.4128415581198,52.84720328775103],[-128.4128317718723,52.84721133763448],[-128.41281330966592,52.847230222220844],[-128.41280355483948,52.84723882760067],[-128.41278150210238,52.84726002846945],[-128.41270544677653,52.847329987851325],[-128.41247446259305,52.84737509844366],[-128.41212366411597,52.84734137380658],[-128.41191672635543,52.84731815769794],[-128.411778469448,52.84734117978634],[-128.41144425240103,52.84741980359207],[-128.41107160071525,52.84752612571304],[-128.41088883969138,52.847584819422345],[-128.41077022183111,52.84765901499408],[-128.41063678819398,52.84778397116508],[-128.4105688779348,52.84784983296947],[-128.41054531718538,52.84786097301397],[-128.41051921375472,52.84787664130509],[-128.4104741402723,52.84790223413458],[-128.41023216717417,52.84790103803278],[-128.40970781951725,52.84784228023377],[-128.4091613274339,52.84778677305743],[-128.408827047122,52.84776559865219],[-128.40872345659017,52.84775987459158],[-128.40871751327052,52.84777008780436],[-128.4086819489541,52.84781566751498],[-128.40861179038086,52.847907928256696],[-128.40850986713434,52.848030558183126],[-128.40837585147642,52.848161685959106],[-128.40823001904036,52.84828128716382],[-128.40811558660593,52.8483638079681],[-128.40803006298276,52.84839807802791],[-128.40786000591208,52.84838530210268],[-128.40764010610312,52.848346646594926],[-128.40754711375286,52.84833116903984],[-128.4075155481266,52.84833238124969],[-128.40745367598822,52.84848893905132],[-128.40741845967347,52.848820996475546],[-128.40745817835113,52.84909601111529],[-128.40753363061222,52.8492951690888],[-128.407527467416,52.849466282358165],[-128.40730236155179,52.84961553857481],[-128.4068592928447,52.84976085643882],[-128.40651380024548,52.84983801023255],[-128.4064206996647,52.849853372936465],[-128.40640306034882,52.849870553174895],[-128.40643362814185,52.849917584635364],[-128.40673694358804,52.8499999484271],[-128.4071747438075,52.850123840178725],[-128.40736487449925,52.85024496744329],[-128.40736907930398,52.850319440189104],[-128.40732273822806,52.85037196776538],[-128.40725180743794,52.850417715660576],[-128.40719670946206,52.850479948840764],[-128.4071518773437,52.85059243698876],[-128.40710190583462,52.85072913291529],[-128.40703040707015,52.85086346237547],[-128.40693806742541,52.85099150032757],[-128.4068476003893,52.851119490840254],[-128.40678631666376,52.85125361972393],[-128.40675688469778,52.85139157189938],[-128.40673661428607,52.85149402132471],[-128.4067198077017,52.851542579606935],[-128.40667860985272,52.85160397147713],[-128.40657956806587,52.85171196381331],[-128.40645051628437,52.85181607694904],[-128.4063345281371,52.851904233707295],[-128.40624125041043,52.85201546239889],[-128.40618453398312,52.8521152945703],[-128.40616893683801,52.85215205929364],[-128.40615149729928,52.85218941789863],[-128.40610104102632,52.852284636752664],[-128.40606056814826,52.852358903408515],[-128.40604944107497,52.85237595013554],[-128.4060727643698,52.852377158708926],[-128.4064354304505,52.85237309246377],[-128.40722831484808,52.852424119769076],[-128.40784208106504,52.85254945288259],[-128.40814182921972,52.85268346412619],[-128.40842039180689,52.852854345296436],[-128.4085527996841,52.85310615461143],[-128.40856713051312,52.853359829021535],[-128.4085934114361,52.85347926414765],[-128.40861798381948,52.853502306559356],[-128.4086287697841,52.85351217664907],[-128.40864347824464,52.85352533005778],[-128.40874805050206,52.853663342154306],[-128.4090267488067,52.85396821336761],[-128.4092670574733,52.85423574880412],[-128.40935338792107,52.85439655960047],[-128.40947160615974,52.854496168566726],[-128.40959353838718,52.854611954905515],[-128.40962842562615,52.854768214557645],[-128.40971154700986,52.85493806093866],[-128.40998885497956,52.855201472122616],[-128.4103937804284,52.85548356771512],[-128.41075895159227,52.855638655116316],[-128.41100928788558,52.8556716395488],[-128.41122563772058,52.85571261375757],[-128.41147518422915,52.85581400984196],[-128.41159906010463,52.85586528674257],[-128.41157720521517,52.85590665668224],[-128.41152707341664,52.85600747740157],[-128.4114935809405,52.856090016444256],[-128.4114800492999,52.85614692198401],[-128.41146498492506,52.85624253770948],[-128.41146098940345,52.85636932125255],[-128.4114645151796,52.8564645553137],[-128.41146613037066,52.856493109601594],[-128.41156849201363,52.85655884836561],[-128.41177702547893,52.85670817847242],[-128.41189449185416,52.856810599185984],[-128.41195138217702,52.85686212989644],[-128.41205069598,52.85692344583238],[-128.41214517926647,52.85698148815629],[-128.4122339594188,52.85703741399154],[-128.412297174458,52.857085450901955],[-128.41233693559911,52.85714685936238],[-128.4124081683432,52.85723790425424],[-128.4125367743775,52.857356358216855],[-128.41266045262446,52.85748612577939],[-128.41271368291302,52.85758818765689],[-128.41273235865452,52.85765507918921],[-128.41275210095193,52.85770792867426],[-128.4127761958414,52.85777191024305],[-128.4128415705162,52.85784176244357],[-128.41291112538613,52.85790312383803],[-128.41289840795446,52.85794150763573],[-128.41289666875647,52.857993120950496],[-128.41297308033506,52.85810984792024],[-128.4130525693711,52.85826462521524],[-128.41309781673974,52.858422913481675],[-128.41313418469784,52.85855559534141],[-128.4131691432359,52.85866363860176],[-128.41320405342427,52.85877056158981],[-128.4132407625862,52.85886007269332],[-128.41327005534026,52.858917210881515],[-128.41327961863863,52.8589383181936],[-128.4132881619153,52.858974022728866],[-128.4133053085424,52.859079633214606],[-128.41332156070038,52.85921889063778],[-128.41333663468356,52.85936994987574],[-128.41336467354108,52.859536440262424],[-128.41340815961482,52.85969645087945],[-128.41344912406578,52.85981165426998],[-128.41347590467572,52.859890156740384],[-128.41350503399707,52.85999383460736],[-128.41354553484854,52.860133714995705],[-128.4135850182174,52.86028875763738],[-128.41358165421343,52.86049233822338],[-128.4135613321466,52.86070859197656],[-128.41358668039211,52.86081122621822],[-128.41361424912645,52.860821316165264],[-128.41357562924583,52.86086247464191],[-128.41349260352027,52.86095780031155],[-128.41344054767694,52.86105753977475],[-128.4134133387056,52.86120161875478],[-128.41337778448232,52.86136268789915],[-128.4133439892188,52.86143962714857],[-128.41331841771606,52.86146481995737],[-128.41331164676544,52.86147673665865],[-128.41326054997006,52.86152767744322],[-128.41313557024614,52.861621631074435],[-128.41297632748436,52.86171852184654],[-128.4128515890055,52.861783873845],[-128.41279884356234,52.86180570475259],[-128.41277588040455,52.86181121751022],[-128.41271820865964,52.861828099450506],[-128.41264327874165,52.86185262839628],[-128.4126004027202,52.86186808516745],[-128.41257260580508,52.86188659600114],[-128.4125025032307,52.8619306430881],[-128.41240428195755,52.86202067363785],[-128.41237680506325,52.86212720036052],[-128.41238772824218,52.86218864473684],[-128.41238638342813,52.86224697728274],[-128.412380808384,52.862329499051796],[-128.41237039949752,52.862425018918564],[-128.41235150031625,52.86255155193523],[-128.41232762792217,52.8626725718441],[-128.41228478674972,52.86275418140448],[-128.41220490315516,52.86283935913391],[-128.41211422957977,52.862914658134834],[-128.41206422893444,52.862952129776644],[-128.41204293122885,52.86297050701464],[-128.41202916555886,52.86299040699432],[-128.4120136992546,52.863013149492204],[-128.41200484328286,52.863037442628276],[-128.41199735617855,52.86305329381526],[-128.4119960457804,52.86309592813712],[-128.41198816388982,52.86318691103005],[-128.41199246981603,52.8632793210797],[-128.41205760867874,52.86337777476257],[-128.4121322980185,52.863480517312034],[-128.41213679791335,52.86356003350149],[-128.41208378505675,52.86364297300643],[-128.4120418682029,52.863708309818655],[-128.41203255006346,52.86374101730282],[-128.41198283229298,52.86388219395251],[-128.41196153088217,52.864196580476666],[-128.41207830601437,52.86446720219106],[-128.41222754137857,52.8646042940398],[-128.41230545569422,52.864731081529555],[-128.4122500429028,52.86490320493154],[-128.41211001993986,52.865077074393504],[-128.41201865124773,52.86518938851515],[-128.41199952772112,52.86531199696682],[-128.41197594870602,52.86547114185775],[-128.41185432102913,52.865575107025855],[-128.41169951526913,52.86565228706151],[-128.41139986013803,52.8657520661996],[-128.4109528510075,52.86583019204858],[-128.41052949186582,52.86589886994717],[-128.41010994072377,52.86598539912176],[-128.40989922677815,52.866028408796346],[-128.4098734792403,52.866033978029506],[-128.4097671554566,52.866046815124676],[-128.4095692984603,52.86608675289583],[-128.40938885314938,52.866154920507704],[-128.4092859156383,52.866227669793496],[-128.4091280678944,52.86630042366968],[-128.40884369311254,52.866324759376496],[-128.40858960408713,52.866308664892216],[-128.40850179788882,52.86630317233443],[-128.40838660661487,52.86630721998561],[-128.40808888579866,52.86637554695238],[-128.40781067081085,52.86654215177112],[-128.4076561862052,52.86674041387038],[-128.4075163997918,52.86700116412663],[-128.4073971241495,52.867278868656136],[-128.40727878019896,52.867408558896],[-128.40693584744307,52.867483980330576],[-128.4064602725471,52.867600795865656],[-128.4062228461361,52.86769872149936],[-128.40614491015782,52.86778553189743],[-128.40605749234572,52.86785291916341],[-128.4060050833966,52.867880902164565],[-128.40593814560066,52.867915344987374],[-128.40583585630637,52.867966774109554],[-128.40573611063797,52.868013666091294],[-128.4055749999932,52.86806181436362],[-128.40538393579695,52.86809039328579],[-128.40524689870247,52.86810328979615],[-128.40512344712474,52.86812599921852],[-128.4050207982285,52.86815445400996],[-128.4049489501212,52.86818451178508],[-128.40495503815148,52.86827577275199],[-128.40504209243272,52.86844946050196],[-128.40510570527576,52.868570373590835],[-128.4051155195053,52.86859596122482],[-128.40511124032795,52.868701445396],[-128.40498442720857,52.86902752333273],[-128.4046455545872,52.86935681082601],[-128.40429098078457,52.86944087604838],[-128.40408970784458,52.869420883203645],[-128.40391691670484,52.86944347950295],[-128.40368185314276,52.86946791456159],[-128.4033883159795,52.8693634725348],[-128.4029878203089,52.86916143598622],[-128.4025172409907,52.86907014743095],[-128.40206832347363,52.86906587077774],[-128.40183521233885,52.86905885861846],[-128.40180908372776,52.869057715346194],[-128.4018091489223,52.869091907291384],[-128.4018084205763,52.86916143894086],[-128.4018069564286,52.869284248917396],[-128.4018102090647,52.869490490204576],[-128.4018118302024,52.86968443120012],[-128.4018117833405,52.86979935453254],[-128.40151540291427,52.869809341209525],[-128.4007747338441,52.869715716825496],[-128.40009934438248,52.86965719014758],[-128.3997566485212,52.8696714821528],[-128.39961471080946,52.869679987086],[-128.3995855953384,52.86967553163182],[-128.39957434366556,52.86970715603288],[-128.39950304960013,52.869796633502105],[-128.399378794686,52.86988774852137],[-128.39930122682446,52.869931939404616],[-128.39932717674498,52.87004577560953],[-128.3991575425097,52.87030655848484],[-128.39870000701166,52.870513236948966],[-128.39833900552463,52.87053293942435],[-128.3980680963238,52.87048297193308],[-128.3978517467109,52.87047617475876],[-128.397787383336,52.87049037790116],[-128.3977340205531,52.87050155793104],[-128.39763470226168,52.87052321063993],[-128.39758127639072,52.87053327065107],[-128.39753797638974,52.87054143769262],[-128.39745797874147,52.8705755857429],[-128.3974255121792,52.870627268826084],[-128.39742379985856,52.87067943668897],[-128.3973922782095,52.870747918996855],[-128.39730944905068,52.87084771243353],[-128.39720432750715,52.87093170717242],[-128.39713506846257,52.8709746057704],[-128.39710260227318,52.87099320783489],[-128.3970610030539,52.87103162228436],[-128.39698140286885,52.871122379702506],[-128.39692097538472,52.87120658366197],[-128.39690234558364,52.87123947946372],[-128.3968916047295,52.871263809572305],[-128.3968667959184,52.87131925608407],[-128.3968343575351,52.87140456642361],[-128.39680919305144,52.87147011127368],[-128.3968019195259,52.871489885709224],[-128.39679391204336,52.871513029845794],[-128.39676808448908,52.87159989164402],[-128.39674298893573,52.87171645567326],[-128.39673305547186,52.87180467062708],[-128.39673299863458,52.87185344992662],[-128.39673664435662,52.87190158860387],[-128.396742125565,52.87196594324108],[-128.39660302877,52.87205847890652],[-128.39621528594503,52.87218243848162],[-128.39584395852467,52.872250556533096],[-128.3956967250822,52.87224795217755],[-128.39553266219642,52.87221093251669],[-128.39518894223784,52.87214113021163],[-128.39473807386702,52.872102671595506],[-128.39430017912218,52.872112716026066],[-128.394076452314,52.872124001778076],[-128.39399943817503,52.8721283694116],[-128.39391969040864,52.872133922886505],[-128.39380962665354,52.87214681231121],[-128.39366932561632,52.872168175166706],[-128.39354669879873,52.87218916887372],[-128.3934535615601,52.87220508584327],[-128.39329860219442,52.872230666637925],[-128.39300831162737,52.87228310524665],[-128.3927488560091,52.87233772281783],[-128.3926069138997,52.87236303761815],[-128.3924799175639,52.872356097355784],[-128.39236784087427,52.8723331470076],[-128.39232903213244,52.87232160357269],[-128.39224029945294,52.87233294497038],[-128.3920362370006,52.87236288739491],[-128.39183152371402,52.87241414608412],[-128.39168755263205,52.87250284608253],[-128.39166450176182,52.872606468419846],[-128.39170457731643,52.872673491669005],[-128.3917149446262,52.872692341572915],[-128.39182918057634,52.872720845781465],[-128.3920963036791,52.87278604588726],[-128.39228132609685,52.87283161346375],[-128.39234369931276,52.872881364115216],[-128.3924217058714,52.8729941414828],[-128.39252142202395,52.87311208294541],[-128.39261480938842,52.87318361764343],[-128.39270951667157,52.87322878096766],[-128.39277734453,52.87327617787316],[-128.3927504129321,52.87336025342384],[-128.39263780084755,52.87347691183089],[-128.39254334590348,52.87358535182224],[-128.39250009543568,52.87366079866609],[-128.3924885542532,52.873687378055855],[-128.39251131194393,52.87369476332933],[-128.39256526675044,52.87371048326619],[-128.39266160023425,52.873751693707504],[-128.39306625465557,52.873928456855765],[-128.39373325341387,52.87418452344134],[-128.39422051080598,52.874306902289476],[-128.39449053776312,52.874324390193784],[-128.39461362217497,52.87434430675201],[-128.39463210120013,52.87435850619688],[-128.39467987706345,52.874396775711084],[-128.39471802431754,52.87442963526669],[-128.3947227821871,52.87444803412939],[-128.39474534895874,52.87448513996739],[-128.39478930788198,52.87455488167563],[-128.3948301550553,52.874619080629024],[-128.3948649193085,52.87467443368964],[-128.39488780053188,52.8747171302741],[-128.39490142438729,52.87474432725834],[-128.39490897957037,52.87476266910447],[-128.3949154720175,52.87477879911717],[-128.39491991529474,52.87479159822987],[-128.3949692066585,52.87490664551104],[-128.39510291323626,52.8751489048427],[-128.39523346038968,52.87530153896764],[-128.39539422943872,52.87527975727604],[-128.39566088984895,52.87518743065169],[-128.39585126082684,52.875129165479194],[-128.3959663829228,52.87512345469517],[-128.39610484044252,52.87511895433308],[-128.39616791779784,52.875114860636984],[-128.39624243618414,52.87514866443606],[-128.3964479206705,52.87524314260986],[-128.39668201327825,52.87534992666851],[-128.39688394651728,52.87543102176105],[-128.39702531779727,52.875478037533796],[-128.397077307023,52.875492109222904],[-128.3971030619449,52.87548654282605],[-128.39715066251767,52.87547211709413],[-128.39727627410699,52.87547067600084],[-128.39749278357058,52.87546345159092],[-128.39764960417105,52.875421009062826],[-128.39776627949772,52.87542647715344],[-128.39793035627275,52.87549657444576],[-128.39805149068204,52.875547921764785],[-128.3981716882456,52.87556620726482],[-128.3983357982171,52.87557070679546],[-128.39843942366912,52.87557588442178],[-128.39844776818543,52.87567438250645],[-128.39842737903885,52.875858115511186],[-128.39855437828078,52.87598054532589],[-128.39880136531357,52.876034929346815],[-128.3989305889323,52.87606480727681],[-128.39894835968124,52.87606612188164],[-128.39896595817567,52.87606464140575],[-128.3990233859374,52.87607580264328],[-128.3991621615362,52.87610997025712],[-128.39931100844606,52.87615738687388],[-128.39942455796006,52.87622290756688],[-128.3995586610981,52.87628968584794],[-128.39970499534897,52.87634219434508],[-128.3998549241278,52.8763923957687],[-128.39997961039026,52.87644086107487],[-128.40005693142191,52.876474605301695],[-128.4001208393169,52.87650188705554],[-128.40019018445142,52.87652625913278],[-128.40025560570132,52.876547347616345],[-128.4003126017553,52.87656748691451],[-128.4003566415489,52.876589012050296],[-128.40043210424233,52.876655865855994],[-128.40054718007323,52.87676508238033],[-128.40060331827343,52.8768194321585],[-128.40073231410747,52.8767954936806],[-128.40099761881376,52.87674522441755],[-128.40118462623968,52.87671000912704],[-128.40131359011158,52.876685514517895],[-128.40141767305198,52.87666544801281],[-128.40149989515973,52.876654232894886],[-128.40163138112925,52.87664145484923],[-128.40176195399127,52.87664551380743],[-128.40183982055672,52.87667251834806],[-128.4018898415317,52.8766843857213],[-128.40197281206085,52.876669800246006],[-128.40217945900554,52.876652677798674],[-128.4025149039695,52.87662451722644],[-128.40282801962553,52.876579993735135],[-128.4030607363811,52.876562901795594],[-128.40324240097294,52.87656479313688],[-128.40339872850373,52.87656328253372],[-128.40362538840432,52.87658723388753],[-128.40386866559345,52.876641683322724],[-128.40402030861483,52.87667278350469],[-128.4041316189199,52.87666545643192],[-128.40424332971273,52.87664859505489],[-128.40439382499443,52.876642717513946],[-128.4046127679227,52.87664552141545],[-128.40485783401954,52.87663265816638],[-128.40506721422548,52.876614362419026],[-128.40523098101352,52.87661268816668],[-128.40541933228297,52.87663406539028],[-128.4056372109691,52.87668398103061],[-128.40583430414614,52.876761240397336],[-128.40601751509365,52.876856714446085],[-128.40621055306397,52.876944703473505],[-128.40643318664823,52.876996206662966],[-128.4067074445512,52.877021985070805],[-128.40699259442445,52.87704305482302],[-128.40724192628937,52.877072706217234],[-128.40742706694132,52.877103115928634],[-128.4075193425509,52.87712140786951],[-128.40775367386692,52.87713286061713],[-128.40816349175358,52.877135676021815],[-128.4083897340688,52.87713552476691],[-128.40842680609404,52.87713252256665],[-128.4084759558462,52.87714553524312],[-128.4085688453209,52.877191279588914],[-128.40868360246034,52.87726125183845],[-128.40884054914477,52.87733652154747],[-128.40904966181284,52.877379327122725],[-128.4092159564663,52.877389373025146],[-128.4093022417696,52.877400493872415],[-128.40940189527157,52.877417511872835],[-128.40952305742522,52.87743633128072],[-128.40961956121163,52.87746350480516],[-128.40969275990307,52.87749003486747],[-128.40972413826654,52.8775017250803],[-128.4097450096176,52.87750858964731],[-128.40979069315713,52.877526148837084],[-128.40982871550898,52.8775399452614],[-128.40987827761802,52.87756023246351],[-128.41002645368425,52.877628396934945],[-128.41018653474833,52.87770976294604],[-128.41029867576006,52.877766332492584],[-128.41040385578182,52.87781518707992],[-128.4105389540748,52.877866235500825],[-128.41073972168473,52.87792602786043],[-128.4109903606633,52.87797863447502],[-128.4112351982844,52.87802743077835],[-128.41141040692153,52.87807989775196],[-128.4114905539298,52.8781141328196],[-128.41156054204168,52.87814969752888],[-128.41166349438328,52.878224950292214],[-128.41173799031174,52.87830751435099],[-128.41176743971002,52.87835063825578],[-128.41177668966694,52.87836614575157],[-128.41184679844542,52.87835461586887],[-128.41198199299657,52.878324931641004],[-128.41207925411337,52.87831620807357],[-128.4121350819644,52.878331880808226],[-128.41220170293522,52.878357423123376],[-128.41231483719875,52.87839882923985],[-128.41245591778423,52.87844021773031],[-128.4125732979924,52.87847425289095],[-128.41272241464677,52.87857546678684],[-128.41295279096002,52.878730508931945],[-128.41320809088126,52.87881608726946],[-128.41336289452636,52.87885327307984],[-128.41341857930723,52.87888296811512],[-128.41347776189141,52.87890866247959],[-128.41356008932007,52.87894845759607],[-128.41364597565203,52.87900163441812],[-128.41378462264382,52.879082314658675],[-128.41421942791914,52.879147950563734],[-128.41491807550645,52.87915377929501],[-128.41554778686304,52.87920811276516],[-128.416176856599,52.87936616617571],[-128.41669883125883,52.87949110397799],[-128.416860604317,52.879519737163356],[-128.41685484740657,52.879549563894024],[-128.4168969241662,52.87961821542792],[-128.41701892066712,52.8796678486777],[-128.4171437795548,52.879702281726125],[-128.41724611013055,52.879766330205626],[-128.41727787011786,52.87985032603809],[-128.41716324180283,52.87994686765637],[-128.41698998242174,52.88004405877108],[-128.41686279387227,52.880149263163204],[-128.41681687439646,52.88025896755629],[-128.4168171552616,52.880345862234996],[-128.41683172834234,52.880438625338606],[-128.41686615620708,52.88056965838294],[-128.41689959698778,52.88071585290806],[-128.41690388156812,52.880857040791014],[-128.4168864185149,52.880992513550055],[-128.41686202498636,52.881087755276795],[-128.41685116429304,52.881126100692406],[-128.41682996885132,52.88117923471006],[-128.41678334816913,52.88129288223024],[-128.41671771172912,52.88143270021333],[-128.4166501345894,52.88157088067093],[-128.41659920616502,52.88167452550899],[-128.41656889827985,52.881747463973404],[-128.41652804854428,52.88184809396024],[-128.4164223800043,52.881955106612054],[-128.41632030556752,52.882043540370006],[-128.4163153855949,52.88213726030269],[-128.41628312066715,52.882241642485404],[-128.4161804702469,52.882352512657796],[-128.41609437164712,52.8824434163598],[-128.41602554109465,52.882510428040966],[-128.41595949262026,52.8825773735195],[-128.4158970206387,52.88264144683585],[-128.41581357716356,52.88273006221483],[-128.41570768000443,52.88284940340776],[-128.41562744592895,52.88294523621304],[-128.41547802868405,52.882937659671995],[-128.4152707887784,52.88291220117112],[-128.41521762916358,52.88300916365694],[-128.41526960867878,52.883121340339805],[-128.41525292402147,52.88318839221303],[-128.4151907675243,52.88325806478348],[-128.41515742397812,52.88329407332069],[-128.41514808488776,52.88335929686407],[-128.41509909914555,52.88353016603868],[-128.41501145957287,52.88372538426914],[-128.41494609708087,52.88388649868648],[-128.4149095948081,52.88401451326905],[-128.41488766062758,52.88410409757884],[-128.41486542433802,52.884188090881736],[-128.41480221586767,52.88427236082051],[-128.41472510687632,52.88439055331205],[-128.4146939544988,52.884580116769705],[-128.41467371453777,52.88473246426581],[-128.41464413344275,52.88480202334993],[-128.41463415847406,52.88485604749134],[-128.41464596482996,52.88491635159056],[-128.41467616858495,52.88497291405275],[-128.4147132890696,52.88501980841307],[-128.41473866130113,52.88505684403596],[-128.41475671745943,52.88511253479385],[-128.41478181454667,52.885193869279355],[-128.414810219916,52.88526785225836],[-128.41483953292487,52.88532498910698],[-128.41487597024562,52.885376382385495],[-128.41493132744566,52.885432984148785],[-128.41500954816772,52.88549865112087],[-128.41511543248362,52.885592345607456],[-128.41522513053377,52.88570389241044],[-128.41527163387067,52.88575227117358],[-128.4151216269182,52.88581646505641],[-128.41481722346856,52.885949974484305],[-128.41463256743893,52.886027213078954],[-128.41454306241752,52.88605820370804],[-128.41443458775353,52.88609967500398],[-128.41435221817042,52.88615798463774],[-128.41426254626018,52.88625176750453],[-128.41417368462805,52.886343291182676],[-128.4141113142572,52.88642586596625],[-128.41405658921266,52.88652845691203],[-128.4140105463745,52.88661966616636],[-128.41397759377543,52.88667920309899],[-128.41393891653215,52.886736058982024],[-128.41388815144316,52.88682624390892],[-128.41388230222634,52.8869368009016],[-128.41389494735427,52.88702848226041],[-128.41384530982302,52.88712200768444],[-128.41384666580976,52.887211678391225],[-128.413906710959,52.88730182128299],[-128.41388389134906,52.88744132262312],[-128.41382084407286,52.88757773016898],[-128.4137989377527,52.8876678785202],[-128.41379824003516,52.887770481042736],[-128.4137958693015,52.88790956241627],[-128.41378878917382,52.888063881585424],[-128.41376932306895,52.88821340504108],[-128.4137290773325,52.88834148665861],[-128.41368344695027,52.8884237173107],[-128.41362658989098,52.88850504824451],[-128.41356247882857,52.888606154101105],[-128.41349153124887,52.888701794116834],[-128.4133833252604,52.8888138962218],[-128.41327834689642,52.88891696210507],[-128.41323259070356,52.88898069032034],[-128.4131929727124,52.88903756512518],[-128.41313257245932,52.88908926037388],[-128.4131141237108,52.88910869999386],[-128.41313652653258,52.88912617980112],[-128.41316315523395,52.88916880501903],[-128.41318076387014,52.88923290979686],[-128.41318697054106,52.88930959113074],[-128.41319157004514,52.88939078140312],[-128.41320626830202,52.889469530874216],[-128.41322870862695,52.889553162459734],[-128.41324903733963,52.88961609014908],[-128.4132720544647,52.88967728528482],[-128.41329883304365,52.889788302407545],[-128.41331086579294,52.88993493648353],[-128.41331989300193,52.8900777034581],[-128.41334065734495,52.89021406719419],[-128.4133809471587,52.890366292390134],[-128.41343367187844,52.890524424558635],[-128.41347925807247,52.89067149095612],[-128.41350679631145,52.89081220047907],[-128.41362689315707,52.89100874852513],[-128.4138169396506,52.89123974853322],[-128.41387348655354,52.89136640758471],[-128.41385040982237,52.89138649843405],[-128.41380818838195,52.89139745640255],[-128.41370534213945,52.89145619456147],[-128.41361888233746,52.89157401235263],[-128.41359909673668,52.89171793582416],[-128.413604914759,52.89185348503084],[-128.4136087365087,52.89193749870352],[-128.41361203642347,52.89199573483271],[-128.41362724111633,52.892099696912986],[-128.41366235003449,52.89224249333135],[-128.41372039183258,52.89237921275789],[-128.41377640312055,52.89248009454083],[-128.413805065465,52.8925585571266],[-128.41382727132014,52.89263826452523],[-128.4138521171963,52.89271511912763],[-128.41388368742153,52.892812017760996],[-128.4139331749632,52.89294554901739],[-128.4139664592567,52.893072685579575],[-128.41397882101936,52.893159331397804],[-128.41397786051672,52.89320812004219],[-128.41397720584513,52.893229436811325],[-128.4139768193728,52.89327205139972],[-128.41397549006683,52.89334720094779],[-128.41397515046648,52.89339037966925],[-128.41399604182374,52.89343031490606],[-128.41404542565044,52.893512827877025],[-128.41410048706962,52.893596910571695],[-128.41416655415827,52.89367796866518],[-128.41424801403983,52.89376767148586],[-128.41431840846394,52.89384303449834],[-128.41438182189734,52.8939101271402],[-128.41443222789616,52.893961224591216],[-128.41445501472055,52.8939854236367],[-128.41447182206602,52.894002461982716],[-128.4144876276569,52.89401839070189],[-128.41453822694925,52.89405659450879],[-128.414669052605,52.89414641340532],[-128.41481368230504,52.8942331410832],[-128.41492092782389,52.894284757197816],[-128.4150734963497,52.89434721062654],[-128.41526502560671,52.894439701738236],[-128.4154048547241,52.89452372875339],[-128.41549217374904,52.89458527969039],[-128.41556820236718,52.89464482904873],[-128.41563430702752,52.89471017942777],[-128.4157058973279,52.89479000198762],[-128.41586194754038,52.89489723200142],[-128.41608032668685,52.894986927671695],[-128.41627385176622,52.895032284631036],[-128.4165167894433,52.8950951304331],[-128.41677217743344,52.89518013541039],[-128.41690463548258,52.89523291784971],[-128.41702856893983,52.89528306783668],[-128.41720485546904,52.89535287960489],[-128.41751273088823,52.895411024635436],[-128.41797708223078,52.89545248723226],[-128.41827145539258,52.89553500991878],[-128.4186274560797,52.89571886105012],[-128.41936798020808,52.895801172219116],[-128.41996478146228,52.895681808221724],[-128.42012394391048,52.895597803635525],[-128.42016647084122,52.895624958992386],[-128.42033498633202,52.89565624821847],[-128.42053931838626,52.89571146689311],[-128.42079147653428,52.89585427765504],[-128.42114807556678,52.8959663503809],[-128.42142958847472,52.895953825624275],[-128.42176870309788,52.89592217405834],[-128.42217429928112,52.895962031889354],[-128.42237171533537,52.895993844090064],[-128.42242119100183,52.89597936997539],[-128.4224756165161,52.896019169043264],[-128.4226137306815,52.89608920327424],[-128.42270006285273,52.896165910509765],[-128.42272214150384,52.89621030478055],[-128.42277254187405,52.89622832715034],[-128.42282491557057,52.8962485512966],[-128.4228313128395,52.89629551114719],[-128.42282099600223,52.89635963387178],[-128.42281600490915,52.896386646248196],[-128.422811443055,52.89642094226052],[-128.42280946462276,52.896533662183],[-128.42284553201358,52.89669269874525],[-128.42288847355553,52.89689082771247],[-128.42288001938834,52.89715169236203],[-128.42285016817885,52.89736365480706],[-128.4228410467276,52.8974490562159],[-128.4228410656428,52.897482136583264],[-128.4228407976047,52.897510172845216],[-128.4228414663133,52.89752192749096],[-128.4228428415648,52.89761159751227],[-128.42284287200948,52.89779211481912],[-128.4228457625638,52.89792492541304],[-128.4228644277149,52.8980400274086],[-128.42290704682236,52.898166969314595],[-128.42294194896317,52.89825650456248],[-128.4229984667782,52.898349523151914],[-128.42309279016453,52.89845185369261],[-128.42316279353318,52.89851992725872],[-128.423203274538,52.89856002234985],[-128.42326603963033,52.89861534640953],[-128.42337210215453,52.89871127252654],[-128.4234885388331,52.89884229895885],[-128.42356758111703,52.89895447005141],[-128.42362193567962,52.89902567345747],[-128.42368785155844,52.89908710360137],[-128.4237515410522,52.89914240835858],[-128.42379091324787,52.89921223419189],[-128.42379965789098,52.89933314664898],[-128.42378483018499,52.89944893885673],[-128.42376506863638,52.89952727607991],[-128.42374222208406,52.899616880200554],[-128.42373165558425,52.899709603842204],[-128.4237251439176,52.8998078410688],[-128.42371589765688,52.89990726485303],[-128.42370763197138,52.8999584466315],[-128.42370225859605,52.89997873949802],[-128.42369974777014,52.900000094588826],[-128.42369203661266,52.90002828423864],[-128.42368111350163,52.90006550991765],[-128.4236645122607,52.900101175273804],[-128.42359965537028,52.90015633102396],[-128.42346800019908,52.900249298894856],[-128.4233208539038,52.900364454282574],[-128.42319217384977,52.90047698646267],[-128.42309720912996,52.900559671805695],[-128.42302401912133,52.900632382421946],[-128.4229252538507,52.90073027800287],[-128.4228454305291,52.90081713602417],[-128.4228083939869,52.90090311240348],[-128.4227778464966,52.90098839893566],[-128.42275884191503,52.90103083203094],[-128.42274836317168,52.901059643704755],[-128.42273233367243,52.901105379176336],[-128.42271539937542,52.90116796065917],[-128.42268472461566,52.901267260618155],[-128.4226530663305,52.90139853130052],[-128.42262078897917,52.901535429816605],[-128.4226136417188,52.9016718016084],[-128.42262316244322,52.901789899339704],[-128.42261045888938,52.901861354451064],[-128.42256988578598,52.901901433251986],[-128.42250583806174,52.901971147523085],[-128.42242407333165,52.90208943945273],[-128.4223642296299,52.90223306794098],[-128.4223426536882,52.90236133215327],[-128.42245867819636,52.90241948825616],[-128.42269868743074,52.902429684761],[-128.42281874865571,52.90244402953707],[-128.42281742897654,52.9024535826639],[-128.42281694330893,52.90254329075445],[-128.42268883425922,52.90273149753369],[-128.42243136617725,52.90283995442021],[-128.42229040457073,52.902851262845324],[-128.42227209904144,52.902889761581925],[-128.4222482142774,52.90297770915612],[-128.42223317117165,52.90304080763924],[-128.42218842857244,52.90307312355555],[-128.4220822082675,52.90312184674164],[-128.421973092892,52.90316894312942],[-128.42189652090215,52.90319855080002],[-128.42181414245204,52.90322434922706],[-128.4217259901625,52.90324691179405],[-128.42165455522584,52.90326856493386],[-128.42155417114435,52.90330539008325],[-128.42144752045277,52.90334682907952],[-128.42140920228772,52.90336107279173],[-128.42139086419465,52.90341526917368],[-128.4213514060454,52.903540537570585],[-128.42131323562384,52.90365568840551],[-128.42124966103097,52.903750059013845],[-128.4211106409778,52.90386111492995],[-128.4209389487705,52.903987428157464],[-128.42080726120298,52.904112908624796],[-128.42074109180476,52.90419444272148],[-128.42072567885708,52.90421830569284],[-128.42071887109594,52.9042296580659],[-128.420699926908,52.90425695739343],[-128.42067870751882,52.904277011111546],[-128.42064426988483,52.90429398220972],[-128.42060318331727,52.90432510096656],[-128.4205930349948,52.90435950268968],[-128.42060178476035,52.9043823121556],[-128.4205937524494,52.90440490196002],[-128.42055422517848,52.90446345408903],[-128.42049055246395,52.904556148849906],[-128.4204182735888,52.90466134518303],[-128.42036147188108,52.90474380742372],[-128.42031920849425,52.90480353698451],[-128.42028542326136,52.904864778358736],[-128.42027362169705,52.904919405043415],[-128.42026776851696,52.90494755607944],[-128.42026169228498,52.90497178293995],[-128.42021175996757,52.90499467888987],[-128.4200713012479,52.905064277718274],[-128.41991320070986,52.90515106669985],[-128.41980514414573,52.90524971530979],[-128.41974639960424,52.90536360241697],[-128.41971092788472,52.90544450415549],[-128.41969425707433,52.90547903996012],[-128.41963056454475,52.90553865399537],[-128.41944236521678,52.9056697891943],[-128.4191577489524,52.90584214124619],[-128.41879138133768,52.90605149694496],[-128.4184178684077,52.90623353290763],[-128.4181981981437,52.906286262528056],[-128.41808797517933,52.90626498326752],[-128.4179456012234,52.90626791057447],[-128.41778222790663,52.90632788658963],[-128.417665224549,52.906400372734886],[-128.41759376505667,52.90645453911437],[-128.41752788899998,52.90650859066951],[-128.41748185023206,52.90655102220563],[-128.4174606281851,52.90657107531488],[-128.4174460234243,52.90659267871244],[-128.41742518334047,52.906619460253935],[-128.41737548379655,52.906712421898625],[-128.4173397811588,52.90682191411296],[-128.41732164378303,52.9068800252668],[-128.41730004053045,52.90689336782328],[-128.41728281140925,52.90690157049419],[-128.4172907805605,52.90692719475475],[-128.41731602427694,52.90696143370747],[-128.4173338387692,52.90701264365858],[-128.41731940534504,52.907119456220286],[-128.417286423054,52.907227771246184],[-128.4172661542596,52.907264623006135],[-128.41726604271958,52.90727920115516],[-128.41726979284996,52.90736153820829],[-128.4172694843481,52.907503939440865],[-128.41725158240345,52.90761530812368],[-128.41720776583063,52.90771318969533],[-128.41716169195072,52.90780439928821],[-128.41725880516813,52.907922929905304],[-128.41740072965715,52.90812519591417],[-128.41725261439387,52.908322776251936],[-128.41699380954367,52.90844133832646],[-128.41690941349617,52.90848119414785],[-128.4169006471327,52.908490900171735],[-128.41686596407706,52.90853646165262],[-128.4167952449918,52.908636582126],[-128.4167202296304,52.90874296201182],[-128.416686118269,52.90879860264221],[-128.4166737716906,52.908827442923304],[-128.41662187215923,52.90891428702566],[-128.41652561726767,52.909040719998615],[-128.41640559237584,52.90917492467301],[-128.41627993632542,52.90930868876309],[-128.41616073805142,52.90944119881009],[-128.41606085473464,52.90953631175882],[-128.4160109614515,52.9095765792887],[-128.41603368720848,52.909681506892575],[-128.41607713422806,52.909905422951496],[-128.41609490978107,52.91003791755397],[-128.41605101485948,52.91006909211881],[-128.41596621678184,52.9101016719715],[-128.41592518628173,52.91011764673103],[-128.4158969465214,52.91012888284658],[-128.4158212174886,52.910157347559505],[-128.41566807123962,52.91021711006174],[-128.41547519866884,52.91028273818276],[-128.41536259708516,52.910252535354005],[-128.4153115709843,52.91014146155733],[-128.4152627984272,52.910086402294624],[-128.41520040144516,52.91010338065606],[-128.415131958894,52.91012889673379],[-128.41504684186222,52.9101558674029],[-128.41487854999716,52.91021146395044],[-128.41467976970793,52.91032093947352],[-128.4145022376424,52.91047650441575],[-128.41434074639255,52.910586335019374],[-128.4141810918194,52.91062997595064],[-128.41407053433696,52.91066868918328],[-128.41404776473715,52.91069437939223],[-128.41407884625994,52.91073298399513],[-128.41411320337272,52.91079675319328],[-128.41412447889954,52.910831279442775],[-128.41406377497137,52.91091101047923],[-128.41393999704857,52.911061551352276],[-128.4138682824618,52.9111443067936],[-128.41375927033485,52.91114430156594],[-128.41353900300552,52.91115442777123],[-128.41329935408467,52.91118401189051],[-128.41311325552718,52.91122146657742],[-128.4129688380062,52.91127096432552],[-128.41279910374152,52.91135068893234],[-128.412582829885,52.91144762102457],[-128.4123624199712,52.911537354116774],[-128.41216714941945,52.91161031809253],[-128.41199830494975,52.911672639921775],[-128.41187518828312,52.91172001313645],[-128.41179587262846,52.91175079109096],[-128.41170013816387,52.911788076804584],[-128.41155164132587,52.91184773831733],[-128.41140400442555,52.91190626975825],[-128.4112972269253,52.911946014982526],[-128.41120311422196,52.911978782169435],[-128.4111464874781,52.91199900362114],[-128.41113011496205,52.912006066525514],[-128.41108440317,52.91202157934455],[-128.4109985004266,52.91205137054701],[-128.4108791678833,52.912099786308865],[-128.41071030116603,52.912178368718905],[-128.41052181349616,52.91227248486803],[-128.41036985740894,52.91235352770354],[-128.41028840531476,52.91239611660992],[-128.41027126797465,52.91240600257558],[-128.41024776628532,52.91241881750008],[-128.41014887610672,52.912466248483845],[-128.40996203606838,52.91250707681538],[-128.40979810829091,52.91254127324441],[-128.40972049442257,52.91263535884736],[-128.40965142305888,52.91273207689697],[-128.40956489264536,52.912783747962656],[-128.40942604564316,52.91284938009022],[-128.40923853884314,52.912944595144864],[-128.4090495019617,52.91304545624172],[-128.4089011360783,52.913124172104915],[-128.40884410738633,52.91315393539187],[-128.40882690553343,52.91316269226975],[-128.4087712265512,52.91319971126464],[-128.40867154906326,52.91326622659184],[-128.40857630562627,52.91334497537941],[-128.40847120108555,52.91341440018845],[-128.4083806550489,52.913477364633536],[-128.40836035131886,52.913546730320135],[-128.40835681385303,52.91363257984064],[-128.40830479622457,52.91371773566631],[-128.4082225548871,52.913779399746275],[-128.40812776295854,52.913833481205856],[-128.4079967799172,52.91392305202453],[-128.40785215941636,52.91401851686536],[-128.40772647976837,52.914086675799936],[-128.40761965724408,52.91414212427932],[-128.40752560671132,52.91420907946082],[-128.40744848497238,52.914279051709855],[-128.40741857987737,52.91431049254557],[-128.40740195946532,52.91434615529112],[-128.40737234592478,52.91441571126641],[-128.40730481126738,52.91450679016694],[-128.40719061722328,52.914629661623835],[-128.40713194103984,52.914728963698074],[-128.4071520199715,52.91478742076496],[-128.40709135940386,52.91481893475266],[-128.4068896388497,52.91482754732373],[-128.40664280855606,52.91484605215678],[-128.40641309153386,52.91488718666184],[-128.40620318734224,52.91496548038852],[-128.40604077153492,52.91505962050609],[-128.40593731384382,52.915125089378115],[-128.4058368934359,52.91519497189216],[-128.405725156202,52.91527910534336],[-128.40564615146764,52.915348558656014],[-128.4055643257251,52.91543432262542],[-128.4054673101798,52.915547862251394],[-128.40539738135075,52.91564628116638],[-128.4053617044402,52.91570755591085],[-128.40533533553418,52.91576864030948],[-128.4053031333664,52.915858430278014],[-128.4052701403621,52.91593422579482],[-128.40523152571464,52.91597650002695],[-128.4051995982257,52.916005183026925],[-128.40518984150702,52.916013796058934],[-128.40519812145985,52.916045020560865],[-128.4052035944686,52.91614188858543],[-128.4051928560264,52.91628170291072],[-128.40517586792768,52.916409867847754],[-128.40517177956534,52.91650244651972],[-128.40517064486662,52.916564701181706],[-128.40516812845974,52.916619126675265],[-128.40516707351821,52.91668305702699],[-128.40511947129772,52.916764201061184],[-128.4050260483346,52.91687542427821],[-128.404983819723,52.9169693477638],[-128.40498543336972,52.91699791002095],[-128.40490844509577,52.91702078690339],[-128.40460209981168,52.91710777621929],[-128.40419988789426,52.91722979512917],[-128.4040075202041,52.91730548368918],[-128.4039640351762,52.917343937215044],[-128.403880431437,52.91739834234127],[-128.40376894829762,52.91745387320905],[-128.40355145726613,52.91756315438062],[-128.40320845712975,52.91774394883801],[-128.4029698132755,52.917858136833026],[-128.40282776729802,52.91790084555965],[-128.40261959847624,52.917960592506624],[-128.40229490917653,52.918053000090374],[-128.4019556400974,52.918151301487754],[-128.40171971055673,52.91823123915325],[-128.40150425922624,52.91831075827821],[-128.4012919306576,52.91837956629757],[-128.4011175383232,52.91844367091451],[-128.40096616429858,52.918519073616416],[-128.40082465256415,52.91860437463353],[-128.40071657906947,52.91867104486681],[-128.40067865097302,52.91869256561167],[-128.40063804119376,52.918732636429475],[-128.40055586614267,52.91881223242711],[-128.40048260627833,52.91888492819438],[-128.4004154590414,52.918950206880396],[-128.40033801617145,52.91901457439103],[-128.40023850084123,52.9190844331181],[-128.40013502445157,52.9191498967263],[-128.40004843762597,52.91920099615223],[-128.39994746913592,52.9192450966048],[-128.39982516105414,52.919290762455454],[-128.3997061025098,52.91932794838774],[-128.39957873630922,52.919366424850786],[-128.39945725598398,52.919410387129204],[-128.39933894591104,52.91947726476628],[-128.3992005747879,52.91956866171865],[-128.39909281240477,52.919640938951005],[-128.39891865567762,52.91969270206841],[-128.39866819598,52.91974657683142],[-128.3985641875914,52.91978626217421],[-128.39860770283164,52.91983077911073],[-128.39862235281907,52.91990896448076],[-128.3985050815243,52.91999432432286],[-128.39830656091155,52.92007685562248],[-128.39813050755666,52.92016117098352],[-128.39803243790058,52.920223714880045],[-128.39799838818828,52.92024795414462],[-128.3979764879386,52.92025624894823],[-128.39796470898153,52.92026209504316],[-128.3979232128345,52.92025341514131],[-128.39783100534757,52.92023791146557],[-128.39775962520022,52.92022815431543],[-128.3977112177973,52.92022914091854],[-128.39764546282728,52.920236652140574],[-128.39755461194454,52.92024523089042],[-128.3974712083233,52.92025365780203],[-128.3974369612465,52.92025771931795],[-128.39719284637175,52.920341733914114],[-128.3966860738247,52.92051126944319],[-128.39637885798751,52.920599940329936],[-128.39625803480334,52.92062258296365],[-128.39605282217536,52.92061947037581],[-128.3958278837087,52.92054725377891],[-128.39568926839385,52.92048560315489],[-128.395650446634,52.920474625599475],[-128.39560254313224,52.92048457065875],[-128.395455780189,52.9205099830739],[-128.39529599909383,52.920535660356826],[-128.39520436602683,52.92054705170568],[-128.39504333437554,52.920534077233974],[-128.39470450760868,52.92049164191609],[-128.39439282792932,52.92045145163276],[-128.39427272551785,52.92043707800641],[-128.39423994697208,52.92043438150588],[-128.39422129737474,52.92043420493559],[-128.39418667189386,52.920431546007784],[-128.39415947886323,52.92042873581429],[-128.39412655749902,52.92042323470873],[-128.39407838038562,52.92041188194519],[-128.3940367901517,52.920401516319686],[-128.39399362179483,52.920396232669866],[-128.3939181302401,52.92039608256649],[-128.39383905783092,52.92039881275785],[-128.3937377593458,52.920420499386694],[-128.39353623212736,52.92048290200453],[-128.39326126938616,52.920565293462644],[-128.39301798264475,52.920630787060205],[-128.39284820982968,52.92067796696821],[-128.39276805127722,52.9207109908449],[-128.3927519871345,52.920723650737976],[-128.39271025562167,52.92076037780166],[-128.39249527825237,52.920848839643014],[-128.3920544175517,52.920981135958655],[-128.3915341175812,52.92110943944786],[-128.390979703378,52.9212277870046],[-128.39061107095085,52.9213019849083],[-128.39053077863196,52.92131594958198],[-128.39051407844588,52.92135048986982],[-128.39046258679983,52.92146253448856],[-128.39042227123466,52.921591169923055],[-128.3904067902562,52.921680615015156],[-128.39035693995368,52.92178870650354],[-128.39027978926237,52.92190855560518],[-128.39021428349548,52.92198669281156],[-128.3901572808776,52.92203381987895],[-128.39008636923953,52.92208235067601],[-128.3900015202879,52.92214798247803],[-128.38995647449894,52.92220887698595],[-128.38992371868144,52.922355862771454],[-128.38993828288665,52.92258204820958],[-128.39004082599047,52.922681993824256],[-128.39010309885808,52.92267904248354],[-128.39011277936973,52.92271865271024],[-128.39006829878588,52.92290567459521],[-128.38994072406572,52.92317342409559],[-128.3897313518871,52.92334529995701],[-128.3894768496213,52.92344408422092],[-128.38933898158163,52.92349509548051],[-128.3891996452134,52.92355342862939],[-128.388897270456,52.92369578905096],[-128.3886337296532,52.923832884437545],[-128.3883611159812,52.923990900943565],[-128.38777537700997,52.924332420289346],[-128.38715983064614,52.924724429763685],[-128.3868982285621,52.92507899268718],[-128.38656028689152,52.92540202372317],[-128.38597680417897,52.92550186639172],[-128.38567661395427,52.925467590612136],[-128.38563076650405,52.925464600530105],[-128.38555566371815,52.92550479984257],[-128.38548734319824,52.925582991026374],[-128.38542660639288,52.92563019120303],[-128.38536758504532,52.92564147849014],[-128.38534458390947,52.92564698566861],[-128.3852903195432,52.925659862746066],[-128.38512843393528,52.92569845748887],[-128.38497027268676,52.92573698547914],[-128.38491879325628,52.925749796959956],[-128.38490349183166,52.925759641707586],[-128.38486292322034,52.92580082682437],[-128.3848203424092,52.925889142665746],[-128.38476643600845,52.92610830210015],[-128.38458284337287,52.926474732155086],[-128.38430415828196,52.926757869448984],[-128.38415513728705,52.9268433009217],[-128.38392786372393,52.926846219563394],[-128.38346494488962,52.92685223408066],[-128.38316769458697,52.92687058805676],[-128.3830178993392,52.926908943825936],[-128.3828061852268,52.92697321048938],[-128.3826223880953,52.92703692042834],[-128.38251606224037,52.927085598202915],[-128.38244907555946,52.92712115525737],[-128.38241382217464,52.9271409292411],[-128.3823556296387,52.92718359140996],[-128.38224370585883,52.927282279572744],[-128.38213045372467,52.92740733791395],[-128.3820349304528,52.92753260229739],[-128.38196254915545,52.92763833793727],[-128.38191448279574,52.927712188088925],[-128.38189292537066,52.92779334990815],[-128.38191942646858,52.92790044735635],[-128.38197839957522,52.92802146287837],[-128.38202895294722,52.92812527491169],[-128.38197431495408,52.92821495469957],[-128.38175276901683,52.92832034605967],[-128.38150263075954,52.92841453872497],[-128.381343688903,52.9284558757859],[-128.38125499411245,52.92848682156876],[-128.38116002612642,52.92855545843164],[-128.38102678177825,52.928656253962636],[-128.3809019272204,52.92879052409603],[-128.38082619368197,52.92891987157387],[-128.38079807554905,52.92898378296707],[-128.3807941481918,52.92899676054277],[-128.38078804606582,52.92902098500159],[-128.3807629182565,52.92910502617794],[-128.38073638465448,52.929247388433446],[-128.3807190533563,52.92940414885839],[-128.38071347188222,52.9295208649999],[-128.38071253508843,52.92957077218848],[-128.38070033107329,52.929619230039336],[-128.38066294983616,52.92971752938268],[-128.38062184391111,52.9298159040589],[-128.38058006421562,52.92988570662403],[-128.38053313450015,52.929946634910195],[-128.3804656735652,52.93002368406149],[-128.38036553798761,52.930133343398104],[-128.38025548102442,52.930265626998505],[-128.38014741397518,52.93048363629861],[-128.3800701620909,52.930785676031924],[-128.38005724661818,52.93110491842291],[-128.3800897347152,52.931568987263994],[-128.38012916312653,52.93220726399188],[-128.3801647246833,52.9327598527375],[-128.3801832318313,52.933007259671676],[-128.3801852363668,52.93304309695413],[-128.380160070823,52.933059858596955],[-128.380107909346,52.93309399292944],[-128.3800809129095,52.93311135665903],[-128.38011274941974,52.9332138615049],[-128.38018100884744,52.933417657216715],[-128.38021682124122,52.933524566337624],[-128.3802212662308,52.93353736553944],[-128.3802368138689,52.93371531896075],[-128.38026847611334,52.93414801968692],[-128.3802971930697,52.93451125767864],[-128.380304631124,52.93461089235142],[-128.3803093137496,52.93467806850128],[-128.38012598802726,52.934983939002954],[-128.37966411848743,52.935443993531415],[-128.37930525307752,52.935711919105024],[-128.37914919498724,52.935838968847506],[-128.37900961596884,52.93599370575867],[-128.37894026525944,52.93607079170154],[-128.37880982486206,52.936005592475084],[-128.37847846698864,52.93589849440267],[-128.37820699211704,52.935878749528676],[-128.37813731177457,52.93589978269079],[-128.3781202986735,52.93589564175565],[-128.3780728903049,52.93588145931456],[-128.37786925073323,52.93582447418813],[-128.37742786759895,52.93570052719157],[-128.37697878464124,52.93562214631517],[-128.3766914850665,52.935686249881826],[-128.3765753314237,52.93579343016621],[-128.3765600843753,52.935837464009204],[-128.37655363508216,52.93585553309394],[-128.37652656929868,52.93593848175076],[-128.37642160414688,52.936062253583074],[-128.37627687100314,52.93612515451004],[-128.37614653916992,52.93614516870378],[-128.37596702888257,52.93618634781918],[-128.37574528895294,52.93623903479559],[-128.37552788476773,52.93628602794016],[-128.37531512902103,52.936332926854256],[-128.3750688986968,52.93631435146789],[-128.37481508591364,52.936210163018664],[-128.37457349300118,52.936157857730194],[-128.37419080941268,52.93618351713732],[-128.3737659426283,52.93622179398362],[-128.37346213938622,52.93627445447132],[-128.37324235189237,52.93632877456393],[-128.37312395892027,52.93636255483492],[-128.37307110069892,52.93638436689867],[-128.37303010613255,52.93640144605525],[-128.37296657214847,52.9364324427339],[-128.37281646573916,52.936482558566844],[-128.37257439381855,52.93650537762896],[-128.37236605742265,52.93648098289988],[-128.37229586307222,52.936459418211356],[-128.37207336760417,52.9363983095857],[-128.37136530543978,52.93629037042579],[-128.37037862211858,52.93631866038025],[-128.36961777971374,52.936467957653086],[-128.3692286856736,52.93657950416131],[-128.3689141118469,52.93667328790789],[-128.36856400294138,52.936781796113884],[-128.36831831431144,52.93685681816292],[-128.3679096559983,52.93693510967871],[-128.3673196050931,52.93702097706826],[-128.3670501804953,52.93705499044381],[-128.36688294605094,52.93703200172196],[-128.36654954152237,52.93698825348702],[-128.3663823081089,52.93696527301244],[-128.36635510635335,52.93696245642336],[-128.36621235509404,52.93687675393639],[-128.36599124503135,52.936706296329895],[-128.36587676590372,52.936609369470375],[-128.36586596879792,52.936599495968565],[-128.3657489027661,52.936623716533724],[-128.36536057486782,52.93669879205163],[-128.36490307118828,52.93680440674746],[-128.3646571053949,52.936891194404794],[-128.36451447326138,52.93697534047006],[-128.36435560647783,52.937069346925355],[-128.36425626590403,52.93711058352858],[-128.36409732462636,52.93705211188723],[-128.36382729022364,52.936940933998386],[-128.36367990275184,52.93692259189914],[-128.36367034304658,52.93700238700252],[-128.36367339703844,52.93704044546676],[-128.36364707194622,52.937036489477954],[-128.36359001227876,52.937016333161395],[-128.3635624374138,52.93700679640034],[-128.36350336925415,52.937000699494035],[-128.36336646731024,52.93698663111331],[-128.363218047585,52.93696662292548],[-128.36301834356362,52.936929714486915],[-128.36277859230557,52.936876783181575],[-128.36258224114312,52.93683307968535],[-128.36247265693055,52.9368072501959],[-128.36244428297314,52.93679997155986],[-128.3624501787727,52.9367718239616],[-128.36246361504195,52.93671156716838],[-128.36247189329896,52.93667608862211],[-128.3624739792781,52.936663148808066],[-128.36246667580852,52.93664928527054],[-128.3622014734042,52.936523987656784],[-128.36167714605457,52.936315882176736],[-128.36138163757585,52.936215865627894],[-128.36110591197274,52.93611937108688],[-128.36062657531332,52.93591539924841],[-128.36036113370702,52.93575199163253],[-128.36024623401906,52.935613584706836],[-128.36009750751214,52.935487076696745],[-128.3600126748715,52.93541982145397],[-128.35995452447847,52.93536325177519],[-128.35989784064623,52.93531617811933],[-128.35984528543455,52.93527630477008],[-128.35977537792476,52.935226132704514],[-128.35971087958137,52.93518930617904],[-128.35965351373028,52.93516354830975],[-128.35949315003325,52.935062494728335],[-128.35924453507582,52.93488305097223],[-128.35911781408834,52.9346322068962],[-128.3591062956294,52.93432355100602],[-128.35910107976565,52.934162207076994],[-128.3590904948668,52.93413943975781],[-128.35907200174842,52.934125235254164],[-128.3590502342201,52.93411950067598],[-128.35888605814168,52.934084115664554],[-128.35854367590034,52.933995678461784],[-128.3582653946439,52.93388633083544],[-128.3581084608009,52.933796418418986],[-128.35800546097755,52.93373793907516],[-128.35795446923584,52.933709254258474],[-128.35788903609307,52.93367244550834],[-128.35778309527362,52.933611217493635],[-128.35768344892477,52.933545943674055],[-128.35758931227204,52.93347888212611],[-128.35749625454923,52.933414597332074],[-128.357385248377,52.93334618732732],[-128.3572171990464,52.93324080005585],[-128.3570209429723,52.933114110207484],[-128.35682492177182,52.932991908989834],[-128.35652946217166,52.93289187080139],[-128.3561713270009,52.932788045997924],[-128.355954079251,52.93265281434035],[-128.3558540125778,52.93256288172164],[-128.35580826098928,52.93254473773427],[-128.3557215453671,52.93251059620998],[-128.35554964331652,52.93245349406079],[-128.3553902574072,52.93240342427193],[-128.35527324825787,52.93236091939888],[-128.35503781544918,52.93231798595279],[-128.35469910255293,52.93231243099692],[-128.35442669441977,52.93234254709994],[-128.35424874666563,52.93237805599032],[-128.354147523434,52.932401948238805],[-128.3540729563753,52.93241913625987],[-128.3539746266702,52.932444647741306],[-128.35389153100945,52.93245919883628],[-128.35380473626324,52.932457571401095],[-128.3536681618528,52.93244909135145],[-128.35347875907692,52.93242933481343],[-128.3532841198213,52.93239903607572],[-128.35314273690125,52.932371026651346],[-128.35306160120945,52.932353589159376],[-128.3529943953613,52.932335316989395],[-128.3529118713803,52.93230949390963],[-128.35281769410233,52.93227549948667],[-128.35272887136563,52.932236913267346],[-128.35264152478183,52.93219157046405],[-128.35252849142714,52.932103015551206],[-128.35240093606802,52.93198784279612],[-128.3522719884164,52.93189792850482],[-128.35217111118777,52.93184388648452],[-128.35213659806772,52.93182663764137],[-128.35213254272253,52.93180373026937],[-128.3521245107417,52.93175960915709],[-128.35212053361045,52.931738386457496],[-128.35212152935512,52.93172267020171],[-128.3521513786056,52.931638542069955],[-128.35221279082384,52.93148483566602],[-128.35226048484031,52.93136952314762],[-128.35227231959433,52.93131379322917],[-128.35227142692642,52.93126391459159],[-128.35227327381605,52.93121286899182],[-128.35226855900896,52.931144571956324],[-128.35225122525583,52.93103335768395],[-128.35222908387237,52.93090262353554],[-128.35220461102674,52.93079716676067],[-128.35217299803017,52.93069744957294],[-128.35213655694022,52.93056083927575],[-128.35210597652784,52.930412335057554],[-128.35208466652045,52.93027989799158],[-128.35207093966505,52.93018319572317],[-128.352059926339,52.93010212660987],[-128.35204190780203,52.93001223712718],[-128.35202494583623,52.929958194966794],[-128.35201963300076,52.92994653336565],[-128.35206881076314,52.92990855181938],[-128.35213312472712,52.92984111729443],[-128.35216032627946,52.92981030199359],[-128.35215191745854,52.92979308746608],[-128.35212218337827,52.92974435035847],[-128.35207414620513,52.92968476739717],[-128.3520273572329,52.92963076531531],[-128.35197385729322,52.92957353384237],[-128.35191827884964,52.929512424280496],[-128.35187483324248,52.92946844584151],[-128.35185366280967,52.92943971855924],[-128.35184503781522,52.929418588721724],[-128.3518407562666,52.92940858376884],[-128.3518685774985,52.92933851520569],[-128.35190980753038,52.92907253002715],[-128.3519167543093,52.92872594967612],[-128.351876720564,52.92855801822828],[-128.35177240460342,52.92855953808937],[-128.35162327188397,52.9285597201577],[-128.35152426561453,52.928505640256034],[-128.35147965025888,52.928457200369174],[-128.35144153495517,52.9284254481224],[-128.35143360141586,52.928399819752016],[-128.35142760777876,52.92837582988551],[-128.35134871981055,52.9283314383393],[-128.3511952568299,52.92825322451495],[-128.35100138826172,52.92815226426544],[-128.35059143672515,52.928088143370424],[-128.34999814508043,52.92809663021252],[-128.34965179366222,52.92812092045655],[-128.3494827034316,52.92813102381503],[-128.34928204849712,52.928143443369166],[-128.34901654368204,52.92811230146922],[-128.34868806889858,52.928038134207505],[-128.34852081511963,52.92799719083798],[-128.34839884472802,52.92798280763467],[-128.34800609375705,52.92794299129048],[-128.34740157181446,52.92788329790921],[-128.34685574944763,52.9278229957879],[-128.3465855854595,52.92779194139994],[-128.34652833296764,52.92778467886988],[-128.346506819935,52.92780023916227],[-128.3464609318194,52.927830304608975],[-128.34643657163318,52.92784480946498],[-128.34640360518486,52.92783873984481],[-128.34636866795339,52.92783046717877],[-128.34633725500785,52.92781876072387],[-128.34629034195274,52.92779615165663],[-128.34622420528086,52.92776327030336],[-128.34618017105007,52.92774229002791],[-128.3461448941322,52.927727853163546],[-128.34609524227434,52.92770641979748],[-128.3460732639449,52.92769676749855],[-128.34599074111722,52.92768776621776],[-128.34582362687087,52.92763223215648],[-128.34564652604968,52.92747992043412],[-128.34547103963223,52.927306274091386],[-128.3453871088144,52.92723787858543],[-128.34534227272897,52.92720232984346],[-128.3452309759365,52.92711093517209],[-128.34513644743387,52.92696874468573],[-128.3450989607979,52.92676207577959],[-128.34503835966174,52.92655867491982],[-128.34488028641078,52.92639644845602],[-128.3446751238171,52.926242452223015],[-128.3444656981239,52.92607845007953],[-128.34421284464878,52.925904666197965],[-128.34384705931578,52.925677064112485],[-128.34340829738687,52.92539374381478],[-128.34304462064273,52.925238417148776],[-128.342691571429,52.92517424847611],[-128.3423446318233,52.925085856518365],[-128.34211439013035,52.92501756400115],[-128.341958080521,52.924971909070244],[-128.3418898131962,52.92495084453029],[-128.3418363674981,52.92496199880359],[-128.34170279138763,52.924990444202486],[-128.34160601053745,52.92501030900106],[-128.34158574304323,52.92501463195303],[-128.34155530364822,52.92502028746982],[-128.34144844243363,52.92504315117804],[-128.34127323893142,52.92507747419647],[-128.3410051147203,52.925100182794424],[-128.3406851894729,52.92509590109995],[-128.34051136853125,52.92508758216479],[-128.34047235734803,52.9250900444087],[-128.3404215122008,52.92511460029587],[-128.34031377322955,52.92513860158203],[-128.3400878744338,52.92508143044314],[-128.3398043283367,52.924976073963556],[-128.33968346243938,52.92493083238319],[-128.33961681213387,52.92490524972854],[-128.33948264973213,52.924855222610994],[-128.33941606122298,52.92483075978359],[-128.3393411321462,52.924841218899495],[-128.33919947570843,52.924875427919176],[-128.33909835394834,52.92490098277074],[-128.3390569569996,52.92491077507092],[-128.3388410476677,52.924967761910146],[-128.33847342783685,52.92519818080993],[-128.33831543462531,52.92551188354455],[-128.33832831196986,52.92564448120504],[-128.33822858806656,52.92567842069242],[-128.33801850538885,52.925756592237775],[-128.33787895124456,52.925846250959964],[-128.33782019135666,52.925930384647934],[-128.33779255042015,52.92597017459691],[-128.33774261156796,52.92597733769034],[-128.33761827960868,52.92598765602341],[-128.33745468887548,52.925995946738325],[-128.33721010340707,52.92600585507064],[-128.33689748065433,52.92601598406445],[-128.336651710482,52.92602143010529],[-128.33648696597578,52.9260258227926],[-128.33631571142584,52.926030344512384],[-128.33615104322072,52.92603585637679],[-128.33607118647416,52.926041361461344],[-128.33603368149798,52.926054438875134],[-128.3359117626211,52.926091615407124],[-128.33573396287812,52.92614671856258],[-128.33565142691154,52.92617134528677],[-128.33549749606613,52.926219803380874],[-128.3349065945203,52.926407553227314],[-128.33412178447176,52.926662496865426],[-128.333663797519,52.92680948398449],[-128.33346013873935,52.92685219858092],[-128.33324488141218,52.926853103736995],[-128.33301760761378,52.926839115562686],[-128.33285309189915,52.92683060071516],[-128.33276253860973,52.92682791136019],[-128.33269083765612,52.92682933283863],[-128.33261448872355,52.9268308464156],[-128.3325447262061,52.926833350538274],[-128.332447384502,52.92684312828375],[-128.33223644729043,52.92687197498483],[-128.33200514862367,52.926903467167385],[-128.3318971089571,52.926921869663964],[-128.33182229707472,52.92693456386929],[-128.33166313176952,52.92695565656726],[-128.33144015811865,52.92698586149151],[-128.3311069940092,52.92701264324542],[-128.33061656635567,52.92701002543853],[-128.3301555536064,52.92698271366464],[-128.3299167043206,52.92697847411424],[-128.32979314560922,52.92702016123823],[-128.32967910829998,52.927082405647994],[-128.32958096749442,52.92714544740754],[-128.32951580594323,52.92721512819165],[-128.3294905821474,52.927282341022845],[-128.32944848315708,52.92731344576389],[-128.3293837045854,52.9273220112167],[-128.32935691011383,52.927326470190316],[-128.32933654857507,52.92732911558801],[-128.3292887940105,52.92732501122823],[-128.32924324750286,52.92729339922598],[-128.32919795415668,52.92723207596268],[-128.32910698473128,52.92710270103593],[-128.3288986108197,52.926957146212],[-128.32865481189998,52.92693057889003],[-128.32851149244988,52.92696873614767],[-128.32843997036736,52.92699033235031],[-128.32825998868412,52.927039861302994],[-128.32792095659076,52.92712953498099],[-128.3276453036745,52.927202257701495],[-128.32750021677603,52.92722530852718],[-128.32740069360815,52.92721213697816],[-128.3273274452799,52.92718500072959],[-128.3272376006455,52.92717836456202],[-128.32701348612292,52.92725623727676],[-128.32668837803985,52.927396084040005],[-128.32649349979312,52.927480095582666],[-128.32643788918642,52.927503062146705],[-128.32642420534847,52.92750837341733],[-128.32636587002645,52.927532514973734],[-128.3261807147401,52.9276751989804],[-128.3259842254491,52.92788313381151],[-128.3259165869276,52.927975840628456],[-128.32579522730717,52.927904243081315],[-128.32545537828528,52.927774743855565],[-128.32505139179315,52.92771657882557],[-128.3247446328085,52.92768059194388],[-128.32459760291854,52.92761679236703],[-128.32456909448788,52.92758988274557],[-128.32445839929397,52.92766214627749],[-128.3242268650622,52.927809106705574],[-128.3240357257165,52.92787622283217],[-128.32384702972553,52.92786873799632],[-128.3236156344358,52.92788172076647],[-128.32344250229394,52.92790307798956],[-128.32329475371623,52.927911601062995],[-128.32314912673772,52.92792456668507],[-128.32305193296557,52.92793713204571],[-128.3229675147822,52.927944404400726],[-128.322848668736,52.92795292138701],[-128.3227267157494,52.927955884836045],[-128.32254106489628,52.92795282241583],[-128.3223049357075,52.92794739248572],[-128.32211183601402,52.9279444763994],[-128.32194979195043,52.9279471180194],[-128.3217442527637,52.92795565834523],[-128.3215058567949,52.92795979687008],[-128.32126485862764,52.92796735867778],[-128.32108175733143,52.927977132453194],[-128.32098335705015,52.92800149649545],[-128.32091662293956,52.92804261824715],[-128.32081494157717,52.92810965071906],[-128.32065056937333,52.92818913102473],[-128.32046471184816,52.92819952323647],[-128.32025169134792,52.92813925301016],[-128.3200040062255,52.92809256362452],[-128.3197661364405,52.928089405218614],[-128.3195880332808,52.92810524894711],[-128.3194953794984,52.928115488507345],[-128.319402939052,52.92812964334112],[-128.31928851788288,52.928150958267366],[-128.31918107936613,52.92818053962243],[-128.31907365655985,52.92821068562741],[-128.31901329397553,52.92821468262502],[-128.3189523372784,52.92817383620367],[-128.31881459479658,52.928109281468736],[-128.31863749922036,52.92810940775168],[-128.31847804704972,52.92815963801959],[-128.31840096190493,52.92818190263813],[-128.31836889847247,52.92819205968215],[-128.31817479697384,52.92822223535011],[-128.31771259077317,52.92829300360176],[-128.31723163858317,52.928361896859435],[-128.31674085511705,52.92842144740535],[-128.31618411674344,52.92860506469925],[-128.3157270171927,52.92888986433294],[-128.31546469931365,52.92900265681696],[-128.3152903231992,52.928950030394624],[-128.31506038388713,52.92890410263027],[-128.3147740145517,52.92890021097839],[-128.31454545201848,52.92889685885578],[-128.31432114028843,52.92878298489503],[-128.31381347167638,52.928600695671655],[-128.31321452921526,52.928539596647646],[-128.31297955444154,52.92855542712524],[-128.3129586490798,52.92851379044287],[-128.31291769210367,52.928394632457774],[-128.31286814572152,52.92825490649387],[-128.31281068324577,52.92812374023617],[-128.31274274282785,52.927988295286575],[-128.31269181584784,52.92789175616564],[-128.3126781666508,52.92786343061581],[-128.31253506567313,52.92782027589602],[-128.31212771506424,52.9276825313201],[-128.31172662870003,52.92745441422371],[-128.3115596820325,52.92721216213771],[-128.31146798678907,52.927051396691986],[-128.31134200606772,52.92697987551146],[-128.3112296430349,52.926936115471364],[-128.31111889915954,52.926887838925],[-128.3110117884489,52.92683780471162],[-128.3108844793299,52.92677639949953],[-128.31074717553577,52.926702301693005],[-128.3106493274193,52.926634146861296],[-128.3105556565873,52.92655694969323],[-128.3104557186437,52.92648435114464],[-128.31035634039236,52.926405023594505],[-128.31022897699887,52.92629092471944],[-128.31009361855627,52.9261668923286],[-128.30997403927026,52.9260588022037],[-128.30989249761342,52.92598192249951],[-128.3098285814117,52.92592039284088],[-128.30972964304604,52.92583208694753],[-128.30960096787476,52.92572810351989],[-128.30942966457235,52.92564569344053],[-128.30928296849083,52.92558747444264],[-128.30923161781502,52.92551728474859],[-128.30913105900734,52.925416112466095],[-128.30896583957423,52.92530836095159],[-128.3088101903031,52.92520547108415],[-128.3086418557538,52.92510899175883],[-128.30846189674807,52.92502170946914],[-128.30833306845523,52.92496649325324],[-128.30829206874716,52.924949359201506],[-128.30827776167126,52.92494347803962],[-128.30820172834228,52.92491637583544],[-128.30805481102936,52.92487104844137],[-128.30787166691061,52.9248281176602],[-128.3077248741761,52.92480240305621],[-128.30766383251924,52.92479407498861],[-128.30759190617314,52.92479100105287],[-128.30739214779763,52.924802766650124],[-128.30712570486975,52.924839383633824],[-128.306903800025,52.924872319423734],[-128.30680454901335,52.92488099223238],[-128.3067869122557,52.92488245915868],[-128.30673589387558,52.92488682283109],[-128.30663101147357,52.92489504980515],[-128.30656436988713,52.924903639217],[-128.30653206381575,52.92490932217987],[-128.30649415602974,52.92491510597448],[-128.30647938054875,52.92491763791383],[-128.3064547656504,52.92492765468226],[-128.30640738254598,52.92494764303448],[-128.30638461434083,52.92495761461905],[-128.30631744370774,52.92497350621035],[-128.30617109758333,52.92500776686918],[-128.30597317303327,52.925053128544725],[-128.30574394121527,52.92510583028367],[-128.30548318902748,52.92516139148028],[-128.30512687703788,52.925208177825205],[-128.30484572667973,52.925214241632595],[-128.30477426883263,52.92520275266392],[-128.3047112887442,52.92519277483106],[-128.3045862373708,52.92517280126543],[-128.30441887140117,52.92514580827966],[-128.3041434105514,52.925101872401235],[-128.30389969538757,52.925024801008476],[-128.30382659573098,52.92489673530517],[-128.30381701897113,52.924737163761954],[-128.3037984493182,52.9245833650561],[-128.3037293622533,52.92444345314303],[-128.30359979671476,52.924322663650436],[-128.3034789542905,52.92424262962645],[-128.3033735094047,52.92418863654165],[-128.30325283460346,52.92412877070535],[-128.30316190871338,52.9240845835481],[-128.303097764342,52.92405332586712],[-128.30304318771803,52.92402636546526],[-128.30302588367914,52.92401661384246],[-128.3030134397154,52.92401069558944],[-128.3029433005976,52.92398908043835],[-128.30282535320222,52.92396223913869],[-128.30276128568516,52.92394948319823],[-128.30264966694057,52.92393652772558],[-128.30235453650988,52.923942303253746],[-128.30198707388757,52.92400667175604],[-128.3015027686319,52.924047538304926],[-128.30094652379117,52.924016379096955],[-128.30070562026486,52.92399081903481],[-128.3007137959184,52.92395254018079],[-128.30072984476317,52.92383562709959],[-128.3007445011331,52.923692954857664],[-128.3007564469563,52.923586212305985],[-128.3007321053225,52.92348073542511],[-128.30066118264503,52.92337561330165],[-128.30056435780568,52.923308560520084],[-128.30041300323134,52.92326723010309],[-128.30026644815638,52.92322861301436],[-128.30017413514202,52.92317604662477],[-128.3001236644432,52.92313891431969],[-128.30010931299503,52.9231319029437],[-128.3000787941862,52.9231190458025],[-128.29996798234913,52.92306908318643],[-128.29977581808538,52.92297978432153],[-128.2995675026869,52.92286725674479],[-128.29939320479042,52.92274621596847],[-128.29927447924533,52.92265323874796],[-128.29920856937284,52.92260631746497],[-128.2991901029911,52.922557903962634],[-128.2991231959976,52.92247512542029],[-128.2989602065233,52.92240824315291],[-128.29883643806107,52.92237702712109],[-128.29866551368414,52.922352894103874],[-128.29826921467918,52.92229729584311],[-128.2978671970233,52.92220480115625],[-128.29756796429857,52.92216916261948],[-128.29706355193838,52.922113429282284],[-128.296511784847,52.92195714996689],[-128.29630858178828,52.921870303381766],[-128.29624924171094,52.92185856388754],[-128.29612685372663,52.92183573120053],[-128.29606752929982,52.92182455636836],[-128.29605969073387,52.92180004413669],[-128.29604201593065,52.921748816365124],[-128.29603077286214,52.92171315911351],[-128.29583183955248,52.92163631871961],[-128.29534388269926,52.921418803116936],[-128.29488533556852,52.9211592384823],[-128.29450923353153,52.920993917702084],[-128.29417264579726,52.920904619214014],[-128.29397035193938,52.92086876759454],[-128.29383724559074,52.92087191895322],[-128.2937710638139,52.92087153205764],[-128.29376502511465,52.9208632367178],[-128.29375555261765,52.92084324078442],[-128.29374747141665,52.920831630798716],[-128.2937293076327,52.920823015764086],[-128.29369098255452,52.92080358233964],[-128.29364757556976,52.920759017725864],[-128.29360228632814,52.920662361021854],[-128.2935593148722,52.92055668995107],[-128.2935252999254,52.92047887289202],[-128.29349630941377,52.920407684745584],[-128.2934763119848,52.92033071554978],[-128.29348593042891,52.920215050059454],[-128.2935309738445,52.920082441830466],[-128.29360750260489,52.920032740618566],[-128.2936921271045,52.919994649060996],[-128.2937273048771,52.919834760506795],[-128.29372906512342,52.91964245413732],[-128.29373443409588,52.91949996390524],[-128.2937399294141,52.919411842303845],[-128.29365793757754,52.919377564193454],[-128.29348150337202,52.91935466143174],[-128.29336863577274,52.919300804409694],[-128.29332564443874,52.91922932406315],[-128.2932934714714,52.91918567043776],[-128.29326202211038,52.919155447482936],[-128.2932177845117,52.91911258510197],[-128.293137707443,52.91904463493396],[-128.29301849332532,52.91894213592429],[-128.29288233032557,52.91881922144467],[-128.2927250391562,52.91868438596824],[-128.2925757658897,52.91857742269601],[-128.29251792021765,52.91854155212583],[-128.29250191408292,52.91857325612929],[-128.29248210052958,52.91856859258967],[-128.2924254915936,52.918555685856006],[-128.292172767289,52.91862170819988],[-128.29175400187032,52.91877113105685],[-128.29154510782377,52.91885480154512],[-128.29153741559614,52.91886784903612],[-128.2914652089481,52.91894604946813],[-128.29131599765054,52.919099754211715],[-128.29120937539147,52.9192139453047],[-128.29118847967118,52.91924125973978],[-128.29116908109535,52.91920968041538],[-128.29111554491007,52.91913280793844],[-128.29106791031245,52.91906141726351],[-128.2910409333367,52.91901036994827],[-128.29102737044715,52.91894897109319],[-128.2910376047046,52.918879260788934],[-128.29106738094902,52.918809169910155],[-128.29109624910248,52.91873966176109],[-128.2911109794332,52.91866705652979],[-128.29111187436436,52.91859697199813],[-128.2911084385274,52.918533133620926],[-128.29110553412764,52.91846199296113],[-128.29109672784125,52.91838480542186],[-128.29108799734863,52.91830930260573],[-128.29107967333815,52.91824107483205],[-128.2910737990493,52.91818401080414],[-128.29104319347624,52.91811733809929],[-128.29095310209553,52.91798455507961],[-128.2907854625452,52.917743965881606],[-128.29059385670803,52.91747358112873],[-128.29047507275675,52.91732678152265],[-128.29041608106849,52.91728700377697],[-128.29036479303764,52.91725156957133],[-128.29019186380054,52.91712039874735],[-128.28978539726478,52.91682279436503],[-128.28938536989838,52.916523386085736],[-128.2892090592093,52.916381068222826],[-128.28915466181394,52.916322706041484],[-128.28910634647013,52.91627319465288],[-128.2889665703842,52.91615203233749],[-128.28863844466747,52.915872524315084],[-128.28830584708686,52.9155790835923],[-128.28816326560505,52.91544003659452],[-128.28813470333506,52.91539406012089],[-128.28812572177765,52.915365650081405],[-128.28811460308694,52.91529747643759],[-128.288092636443,52.91516616454767],[-128.28807336926735,52.915067878439515],[-128.28806796048042,52.915036591548194],[-128.2880103351718,52.914952505273],[-128.28788969058246,52.91480573932938],[-128.2878308364555,52.91473345338899],[-128.28785349812378,52.91472180117704],[-128.2878907368204,52.91470369465582],[-128.28794261884275,52.914663445439125],[-128.28803464098516,52.91457252890937],[-128.2881258101703,52.91444855057275],[-128.28817372819933,52.91435175594382],[-128.28820427912657,52.91427885217209],[-128.2882629154764,52.91417344487426],[-128.28835853377242,52.91404545124917],[-128.28846447362383,52.91391894292821],[-128.28855082292884,52.9138090767576],[-128.28860157963607,52.91373073007388],[-128.28863418604513,52.913661140621805],[-128.28870496901052,52.91357400011803],[-128.28882891022394,52.913470120181096],[-128.28894133529914,52.913360302359656],[-128.2890296592143,52.91321788403589],[-128.28909563302798,52.91305851828583],[-128.28916611247197,52.91296576863037],[-128.28925652271215,52.91293149580718],[-128.2892987073879,52.91291890723119],[-128.2891854704682,52.91285776165731],[-128.28892995036247,52.91269792534076],[-128.2887294468382,52.912538704219216],[-128.2885996287018,52.912411732978036],[-128.28844383529045,52.912252197564435],[-128.28829155573166,52.912088674057635],[-128.28822840948587,52.91200581635875],[-128.28824632818163,52.91195781447719],[-128.28824778542486,52.91184623632878],[-128.28815186579757,52.91169114148727],[-128.28801886548393,52.911591704153516],[-128.2879654481062,52.91156863403611],[-128.28788666158377,52.91155895504505],[-128.28773890810618,52.9115489401671],[-128.28766072344357,52.911550460805636],[-128.2876057288731,52.91158459977722],[-128.28747770223166,52.911647075557276],[-128.28735650056916,52.91166288632966],[-128.2872762039629,52.91164258090221],[-128.2871963082212,52.9116469418566],[-128.2870484128896,52.911651494824476],[-128.28686690755873,52.911602894924464],[-128.28676646220114,52.91155439609893],[-128.28673820801018,52.91154877459708],[-128.28669821655177,52.911567490438244],[-128.28659019623373,52.91158585151887],[-128.2864226482726,52.911571726232154],[-128.28624625029445,52.911548812513324],[-128.2861359079768,52.91154142293966],[-128.28608072960537,52.91153745469431],[-128.2860351442445,52.911538896751374],[-128.28598158566618,52.911617296846536],[-128.28581949948088,52.91177404403142],[-128.28558266839363,52.91187506484816],[-128.28539605553803,52.911887659980465],[-128.285245666663,52.91188049155066],[-128.2851330951764,52.911883799714786],[-128.28502917885183,52.91189198927795],[-128.2848944638404,52.911899090821144],[-128.28476618820557,52.911887563722836],[-128.28461879343647,52.91184950928458],[-128.28444668770013,52.911802400361495],[-128.28419729847587,52.91177360921823],[-128.28387888262074,52.91177810603265],[-128.28359905696186,52.91178970978103],[-128.28337251080066,52.91182213645601],[-128.28313273128524,52.911937784353825],[-128.28292109162837,52.912074187351614],[-128.28283905493626,52.91212566602364],[-128.28280135084822,52.91210005532889],[-128.2826975758842,52.91205890069303],[-128.28258819423922,52.91203468092299],[-128.28242210265847,52.911943162630315],[-128.28219886018775,52.91179389733248],[-128.2820171803485,52.911707174489685],[-128.28183274534373,52.911655816422815],[-128.28165833153855,52.91160033519042],[-128.28153514063024,52.91156180744901],[-128.28140758822278,52.911528960934454],[-128.28126698250298,52.91151319359788],[-128.2809653891132,52.91153585967333],[-128.28056019382782,52.91157286630163],[-128.28031958059685,52.91158593530231],[-128.280196268842,52.91157992172217],[-128.28012159678204,52.911577440760475],[-128.28006172738193,52.91157299558048],[-128.27995327784907,52.911566128595105],[-128.27981599715662,52.911560385383325],[-128.27961342710645,52.91155310002642],[-128.27936955819519,52.91154044385906],[-128.27916424850463,52.9115343319663],[-128.27903994455855,52.91154458851095],[-128.27898457774822,52.911554630418465],[-128.27896617233594,52.911558915513915],[-128.278942280746,52.911547601914066],[-128.2788800345802,52.91151629472805],[-128.27878927194598,52.91149171075552],[-128.27864935639042,52.91148881561191],[-128.2784390581934,52.91152876599714],[-128.2782518772707,52.91158284311125],[-128.27812394911425,52.91157747286703],[-128.27801309329547,52.911543178201185],[-128.2779188476953,52.91152314559479],[-128.27786171844798,52.91151752509154],[-128.2777903410463,52.91152451305617],[-128.27768949333196,52.91153767736597],[-128.27761569047092,52.91155143905074],[-128.27757926807976,52.911567275262016],[-128.27756674672705,52.911577051918044],[-128.27753560003018,52.91160456245037],[-128.27740399987343,52.91166989454763],[-128.27711049376865,52.91175685533418],[-128.27674676633413,52.91178519793218],[-128.27641956148412,52.911729868016835],[-128.27625698322998,52.91163435377511],[-128.27622802760231,52.91156316098895],[-128.2762129911399,52.91152589817401],[-128.27620322958103,52.9115003007933],[-128.2761602442931,52.91148038699228],[-128.27606382835677,52.9114721624309],[-128.27594060709626,52.9114678198866],[-128.27577451044002,52.91146318562825],[-128.27553687146494,52.91146217749222],[-128.27531720900643,52.911466426851106],[-128.27521293271516,52.911467887840196],[-128.27519428708496,52.91146768344784],[-128.27516229937478,52.911531651198466],[-128.27508816671894,52.91166145138118],[-128.27503474807096,52.91172526854202],[-128.2749740307741,52.911722523377165],[-128.2748685906682,52.91171951302114],[-128.2745676289556,52.91178923833548],[-128.2740976423735,52.911956406687864],[-128.27381757038725,52.912085711679886],[-128.2737335865074,52.91213554420372],[-128.27369716217333,52.91215137920758],[-128.27355534209124,52.91216533190062],[-128.27323934805855,52.91223254588232],[-128.27300242479367,52.91233242136302],[-128.27288098693904,52.91239643067837],[-128.27275078705011,52.912435944070054],[-128.27262399934585,52.91248715887424],[-128.272533789151,52.91254271648363],[-128.27246487498974,52.9125956203165],[-128.27237304186383,52.9126556937041],[-128.27221670985043,52.91272934549712],[-128.27198295511346,52.91283644948046],[-128.27174535025887,52.9129060646705],[-128.2715682549479,52.91288761806819],[-128.27147606211003,52.912853521950744],[-128.27145354352743,52.9128505933799],[-128.27145290708924,52.912873593510994],[-128.27145376399525,52.912924584318496],[-128.27142175723836,52.91300592440649],[-128.27135971068282,52.91308280389766],[-128.27130378353056,52.9131522732998],[-128.27126473033198,52.91322365913361],[-128.27124427263047,52.91325936553724],[-128.27122588587966,52.91329896041996],[-128.2711806109235,52.9133934541768],[-128.27114437486387,52.9134827237791],[-128.27113306355858,52.91353282836176],[-128.2711337112248,52.91357990368273],[-128.27112928203408,52.9136366111863],[-128.27112566869533,52.913673678525306],[-128.27111950639264,52.91369789749831],[-128.27108337895004,52.91371934056302],[-128.27099718853353,52.913797798107595],[-128.27092324856943,52.913931519911856],[-128.27088721110567,52.91405946930612],[-128.2708512424501,52.914153774233526],[-128.27079467624785,52.91424624345619],[-128.27074108621028,52.914324636481375],[-128.27072068727657,52.91436146275444],[-128.27068834442017,52.91440132690914],[-128.27059910080254,52.91449274059422],[-128.2705126271523,52.914583544649695],[-128.27045069347497,52.91464528148981],[-128.27038243032376,52.91471050386642],[-128.27031385344205,52.91477012656452],[-128.27022314733514,52.914851477902936],[-128.27009241134422,52.914968356915864],[-128.26994418776405,52.91507211956922],[-128.26977220234733,52.91513205111266],[-128.26961455624672,52.91516368628334],[-128.26955365707542,52.915174951473844],[-128.26954166969463,52.91519479815776],[-128.26948420369908,52.915270466919196],[-128.26947969018738,52.91539555624719],[-128.26959727500608,52.915503724121876],[-128.26966685166386,52.91556796373197],[-128.2696522757171,52.91560917092844],[-128.26962252617446,52.91568037650837],[-128.26954508780872,52.91576595577824],[-128.26939043307777,52.915801452368],[-128.26917267640488,52.91587684069525],[-128.2689628229085,52.916047937771154],[-128.26877752528793,52.916190532444155],[-128.2686724466567,52.91633438709875],[-128.26862925628407,52.91652076345895],[-128.268514418222,52.916639020014635],[-128.26840485992614,52.91668149352283],[-128.26834454321894,52.91673871333682],[-128.268260072204,52.91684964827589],[-128.26815683709822,52.91699346680068],[-128.2680513958954,52.91713059196442],[-128.2679437493845,52.917261597768714],[-128.26784734764092,52.917393507812875],[-128.26777928758173,52.91749796419218],[-128.26772760938272,52.91757743978145],[-128.26765223565127,52.91768427931439],[-128.2675453759714,52.91781247114185],[-128.2674536314277,52.91790953585548],[-128.26740043071965,52.9179604472092],[-128.26734794481288,52.91800742527483],[-128.26729282284128,52.91805726143625],[-128.26723335134807,52.9181127780914],[-128.2671241194428,52.91821410797253],[-128.26702693638728,52.918314075449295],[-128.26700683102587,52.91835650986758],[-128.26699691316205,52.91839761786552],[-128.26695857954635,52.91850037967003],[-128.26691944274285,52.918622781242156],[-128.2669000982839,52.91869714877375],[-128.26687524149332,52.91875536160127],[-128.2667942779076,52.91886230813525],[-128.2666481938825,52.91898901245152],[-128.26647811189048,52.91910271633024],[-128.26635538027662,52.91919533636766],[-128.266313854127,52.919238174306145],[-128.26630794121104,52.91924949953449],[-128.26629510245314,52.919271048370355],[-128.2662891895276,52.919282373597596],[-128.26628311287757,52.919290903632096],[-128.26626799527511,52.919322021502126],[-128.2662984751347,52.91942178017257],[-128.26635293878766,52.91958721463697],[-128.26629885992767,52.919726720689624],[-128.266146215693,52.91981766541371],[-128.26602678661072,52.91986761839431],[-128.2536075053442,52.92323578426477],[-128.25360853664603,52.92339608511409],[-128.25362550267013,52.923575704872654],[-128.25363261993385,52.92376279606768],[-128.25377647477094,52.92389233309864],[-128.25407185053044,52.923943852067566],[-128.2543421658511,52.92401490955348],[-128.25452488655282,52.924156589471686],[-128.25470665542971,52.92429773127995],[-128.25486476681243,52.924449981345894],[-128.25504385608932,52.924593416251064],[-128.25522841431805,52.924734503825285],[-128.25545531735662,52.92484787247673],[-128.25567899834274,52.92505884017387],[-128.2558526251531,52.925204620861],[-128.25601895264697,52.925353339577704],[-128.25618347897046,52.925503222696825],[-128.2562542519991,52.925677881910474],[-128.25637810861582,52.92583414125518],[-128.2565160444044,52.9259923816861],[-128.2565812329955,52.926167147786586],[-128.2566205292903,52.9263457737774],[-128.25672357496416,52.92651364309274],[-128.25682574275052,52.92668265924518],[-128.25691033097485,52.92685424576518],[-128.2569329284924,52.92703431302237],[-128.25701747382723,52.92720478811957],[-128.2570928119699,52.927377673035615],[-128.25713488291453,52.927555689486006],[-128.25723245062835,52.92772590564712],[-128.25721570448275,52.92790224300712],[-128.25706264305038,52.92805653041534],[-128.25686275904184,52.92818929319339],[-128.25670010189805,52.92833872353556],[-128.25659812075523,52.92850716126562],[-128.25644216515673,52.92865982602924],[-128.25626146341196,52.92880286597777],[-128.25604418931422,52.928924193342816],[-128.25582895392824,52.929048835583515],[-128.25564821902955,52.929191319045536],[-128.2555027303912,52.92934826623121],[-128.25533151238136,52.929494486158426],[-128.25533692345073,52.929825112734754],[-128.25521885880528,52.929989381683214],[-128.25503244147754,52.930130286739036],[-128.25481719750638,52.93025493599759],[-128.2545499803495,52.93033124238098],[-128.2542626745218,52.93036253214166],[-128.25408878114382,52.930511052466024],[-128.25393376237932,52.93066425153575],[-128.2537319640664,52.93079647998527],[-128.253540682355,52.93093355617876],[-128.25334461730273,52.93106848138276],[-128.25315124849163,52.93120167741056],[-128.25287121257196,52.93126477179197],[-128.25272998455623,52.93141434170937],[-128.2527172989178,52.93159732661877],[-128.25268089554345,52.931772361621384],[-128.2525486909004,52.93193409078707],[-128.2524117179754,52.932093668799325],[-128.25229460383898,52.93225847213156],[-128.2521013742779,52.93239446181219],[-128.2519196590346,52.93253639246495],[-128.25172163031337,52.93266967497989],[-128.2514623757317,52.93275591153331],[-128.2512295752676,52.93286631495361],[-128.25096747293972,52.9329514837246],[-128.25069738687947,52.93302672350797],[-128.25042004793175,52.933088082922716],[-128.25024114029927,52.93323052211459],[-128.25006513624572,52.93337514771438],[-128.2498170434065,52.933478548813156],[-128.24939265791392,52.93368565422868],[-128.2491352848049,52.933772414475534],[-128.24891979775015,52.9338931282546],[-128.2486666065392,52.933988220345285],[-128.24840481788172,52.93407954773544],[-128.2483209573459,52.93423922676135],[-128.2482358994039,52.934411260814436],[-128.24811877717187,52.934576615554384],[-128.2480035613378,52.93474249877034],[-128.24797757955804,52.93492125190663],[-128.24797493181313,52.93510068043576],[-128.24798070306522,52.935280513178625],[-128.24798088603652,52.935460443671985],[-128.2480061632243,52.93563878269237],[-128.24805735444235,52.93581381945006],[-128.2480752402895,52.93599341175039],[-128.24810147141227,52.93617228855612],[-128.24816945740366,52.93634756946934],[-128.24819479460902,52.93652701937375],[-128.24812741952653,52.9366987152377],[-128.24794659701968,52.93684063069671],[-128.2476836729982,52.93692861431218],[-128.24747670305146,52.93705196047241],[-128.24735681382364,52.93721793186864],[-128.2472736529857,52.93739104961181],[-128.24720086213392,52.93756621149358],[-128.2470826854712,52.93772935152247],[-128.2469219529766,52.9378809626338],[-128.24675360589666,52.93802992055385],[-128.24658238251666,52.93817725591826],[-128.2464206485949,52.93832776424277],[-128.24625183983343,52.93850308069438],[-128.24604159155925,52.93856482556856],[-128.24574203499486,52.93859464979136],[-128.24544772607413,52.93861820255088],[-128.2451513916785,52.938638429879155],[-128.24485445120746,52.938647456933545],[-128.24455365205014,52.93865374956666],[-128.24429786679983,52.93857678618358],[-128.24394298683956,52.938742193600106],[-128.24362465537277,52.93882281118035],[-128.24336413064668,52.93886813682884],[-128.24310391225006,52.93886636955228],[-128.24279252840407,52.938848760051016],[-128.24258466895165,52.93883198458057],[-128.24222071647392,52.93886077549029],[-128.24188311227903,52.93885880250553],[-128.24159782216537,52.93884124891387],[-128.24128965879663,52.938849359564095],[-128.24100868432222,52.93878968537713],[-128.24071623932764,52.938777880389],[-128.2404817954343,52.93878738378217],[-128.24016923344712,52.938800624691815],[-128.23993495636606,52.93883086875418],[-128.23959607320074,52.93887543494677],[-128.23931047283796,52.93890496815136],[-128.23894550952332,52.93895002861984],[-128.23863233652474,52.93905800590977],[-128.23842206401923,52.939137118960986],[-128.238157387081,52.93920998344517],[-128.23791883982324,52.93931878191399],[-128.23764251242292,52.9393828889039],[-128.23735394777682,52.93942705693526],[-128.2370608320609,52.93945560632265],[-128.23678811080626,52.939517409485056],[-128.2364985461649,52.9395604643133],[-128.23620020257368,52.93956052721471],[-128.2359054257594,52.93957509594593],[-128.23562108359843,52.93962870434652],[-128.23532852454593,52.93966789375657],[-128.23504303650085,52.939717603119554],[-128.2347857890516,52.9398076913476],[-128.23454356299527,52.93991767365952],[-128.23427683482672,52.939987195833595],[-128.23398457881854,52.94001460898889],[-128.23368403321794,52.94002591826318],[-128.23338361929297,52.94004002253805],[-128.23309359277204,52.94007411776826],[-128.2330149032639,52.94012045466646],[-128.2328038460374,52.940291502506824],[-128.23277500504244,52.94041704786341],[-128.23271951916135,52.94062101959922],[-128.23269135527676,52.94077738680916],[-128.232583938696,52.940933580039044],[-128.23239901477228,52.94110525238889],[-128.23224439349153,52.94126793701354],[-128.23218463317232,52.94144396188452],[-128.2320910172004,52.941614467124964],[-128.23199832401102,52.941784945792925],[-128.23193105152808,52.941959991789275],[-128.23184780444274,52.94213254233667],[-128.23173535043287,52.94229947600702],[-128.23149196208303,52.94247673942421],[-128.23139531569234,52.9425895602881],[-128.23121736085156,52.942734191910425],[-128.23099472123457,52.942844916080354],[-128.23078111720852,52.94296780064901],[-128.23053758647498,52.943071072107436],[-128.23027039234648,52.943150127218416],[-128.22999027348712,52.94321373117968],[-128.22970327353127,52.943252800650924],[-128.2293648866402,52.94325416027756],[-128.22912702732648,52.94323456564665],[-128.22884056901108,52.943248393573555],[-128.22845172076703,52.94322997019931],[-128.22819169690453,52.94319677508714],[-128.22798624422597,52.94310145127437],[-128.22772726345627,52.94305254006112],[-128.22754550004277,52.943035800008346],[-128.22723409213623,52.94301814940613],[-128.2269490016833,52.94296916547961],[-128.22666795903245,52.94296159383211],[-128.22639338733356,52.942917459023676],[-128.2260981723939,52.942942100818016],[-128.22580502492215,52.94297062212337],[-128.22550093800055,52.94295058633998],[-128.22505549584898,52.94299096266222],[-128.22483716539273,52.94311280434296],[-128.22457686870192,52.943198998597595],[-128.22430868010565,52.94327693764878],[-128.22403411141374,52.94333986631551],[-128.22375572789204,52.94340118026372],[-128.22351898332127,52.943509914084984],[-128.22329870937418,52.94363066835737],[-128.22312639922794,52.94377685760393],[-128.22298833891904,52.94393641794668],[-128.22285594004953,52.944096992281935],[-128.22274338706384,52.94426279717549],[-128.22255388115883,52.944401471445566],[-128.22233751635054,52.944525513189255],[-128.22213080158548,52.944656098900445],[-128.22201629326685,52.94482025374774],[-128.22198179085973,52.94499860262708],[-128.22199955562135,52.945178198151986],[-128.2220188770087,52.94535160275327],[-128.22200153648748,52.94553747528379],[-128.2220127881974,52.94571719368633],[-128.22200623150422,52.94589501498664],[-128.22195870055904,52.94607416569625],[-128.22199493621028,52.94625004921083],[-128.2220645592989,52.94644044173473],[-128.22208799347843,52.94658574129457],[-128.22219215149508,52.94677660295828],[-128.22230153683927,52.94694270184326],[-128.22242015125485,52.947106949249616],[-128.22253131349058,52.94727132825596],[-128.2226287884528,52.947441579989416],[-128.22275020726354,52.94760576514978],[-128.22275157214986,52.94770327429416],[-128.22285861809956,52.94794957930244],[-128.22282960871925,52.94809026337276],[-128.22280155232065,52.94823148548849],[-128.22269363130076,52.94845045853234],[-128.22255959462535,52.94866935941856],[-128.22245281978473,52.94885691101294],[-128.22218772846128,52.949137702994314],[-128.22179180521167,52.94944899054926],[-128.22124476683842,52.949813020661765],[-128.2210926428043,52.949953784520275],[-128.22088075334418,52.950056993507985],[-128.2206498937604,52.95015439839127],[-128.22046427167243,52.950296358188595],[-128.2202718560547,52.95043339639073],[-128.22006793765053,52.95056448067672],[-128.21979878472382,52.950642991288014],[-128.21960148080115,52.95077563611013],[-128.21935682226936,52.95087666168722],[-128.21908961678534,52.95095681103769],[-128.21879331925172,52.95096183016922],[-128.2184956011681,52.95095735056906],[-128.21814950413022,52.95091959302185],[-128.2178718163384,52.950959577936544],[-128.21763865717028,52.95088773594891],[-128.2173464178286,52.95091678284327],[-128.21705250905927,52.95093184238253],[-128.21679434944016,52.95091708883548],[-128.21653153334182,52.95092035079068],[-128.21626137163943,52.950908064201684],[-128.21600219670333,52.95085576719203],[-128.2157158507714,52.95080117376202],[-128.21542106190938,52.95081737585157],[-128.21514846924683,52.950883599452254],[-128.21489200746575,52.950973070699334],[-128.2146599805203,52.95108393841115],[-128.2145163619724,52.95124526876063],[-128.21426188292654,52.95131900607776],[-128.21396400194746,52.95131171085447],[-128.2136665943739,52.9512954462758],[-128.21338282252722,52.95134393850524],[-128.21308963802213,52.951372992483854],[-128.2127965990074,52.951404850183216],[-128.2125089090697,52.95145005065818],[-128.21229437055325,52.951502853579434],[-128.21198097931494,52.95160963916151],[-128.21170823086914,52.95167305927598],[-128.21143795613037,52.951748199161855],[-128.21115442604219,52.95180173071876],[-128.21086158669675,52.95180162443503],[-128.21057719189918,52.95174866801758],[-128.21029119657047,52.95170079032456],[-128.20999938539396,52.95166646512662],[-128.20970107326664,52.95166870086327],[-128.20940380168298,52.95167315848104],[-128.2091118089074,52.95165341753602],[-128.2088324839204,52.95159027210494],[-128.20853566612183,52.9515672480525],[-128.20824061341108,52.95159632490862],[-128.20800066158137,52.95169892408005],[-128.2077852865726,52.95182571669767],[-128.20759955614915,52.951966536082345],[-128.20738105663074,52.95208722501797],[-128.2071117400553,52.95216290182561],[-128.20687487492165,52.952271037127225],[-128.20660863442467,52.95235226048038],[-128.20639205160867,52.952474032621986],[-128.206167680305,52.9525892237912],[-128.20587206733836,52.95260765926198],[-128.20557461457008,52.95260874723916],[-128.2052779603635,52.95262494958945],[-128.20484602216905,52.952676204831114],[-128.2045526192573,52.95270131308452],[-128.204255379691,52.95268838472991],[-128.2039596198943,52.95270401094016],[-128.2036772160449,52.95276142237802],[-128.2033917192334,52.9528132945819],[-128.20311223249342,52.95287289219957],[-128.20285106740673,52.952962424423525],[-128.2025872658301,52.953018929097404],[-128.202314322219,52.952934904486604],[-128.20204639404096,52.95285752089229],[-128.20175791690946,52.95281583040544],[-128.20145995578915,52.952806827775596],[-128.20116177988527,52.95281183738495],[-128.2008798906054,52.952861393840784],[-128.20064216863756,52.952971218307844],[-128.20032049179954,52.95309886230007],[-128.20003194002211,52.953145733993026],[-128.2000004067208,52.95314913035529],[-128.19973879191215,52.953175874698694],[-128.19945116323615,52.95322272769933],[-128.19916464682018,52.95327292243681],[-128.19888122184096,52.95332866410737],[-128.19860486092767,52.95339492787432],[-128.198334667886,52.953472277599545],[-128.19806336151066,52.953546293210984],[-128.19778056818703,52.953596414998444],[-128.19748201197294,52.95361207696823],[-128.19718426410296,52.953625480944496],[-128.19688631334836,52.95363495970627],[-128.1965916420608,52.953653910145206],[-128.19631013246564,52.95371073084751],[-128.1960277699018,52.95376925286393],[-128.19574217004623,52.953819422021056],[-128.19545561610073,52.953869043240225],[-128.1951690619493,52.953918672720704],[-128.19488044114294,52.953964411774436],[-128.1946040407449,52.95403010165064],[-128.19433765025792,52.95410905718651],[-128.19407329558746,52.95419133738],[-128.19380996551178,52.9542752749915],[-128.19354761691113,52.954360323746975],[-128.19328432759818,52.95444538044825],[-128.19302096575132,52.95452876076468],[-128.19275468468427,52.95460995268865],[-128.19248040034478,52.95468064731562],[-128.19220207035386,52.95474524622886],[-128.19193567093205,52.95482419629794],[-128.19168212618067,52.95491748039774],[-128.1914345606456,52.95501793512158],[-128.19119087964555,52.95512168919037],[-128.1909481939083,52.955226536309446],[-128.19070739958514,52.955331912730024],[-128.1904685543619,52.95543893846026],[-128.19022976515035,52.95554707473593],[-128.18999188535088,52.955654637534074],[-128.18975306511663,52.955762217310905],[-128.18951522565695,52.955870899406314],[-128.1892725029224,52.95597518750698],[-128.18900112208902,52.956048061857246],[-128.1887207990269,52.95611044713996],[-128.18846812117474,52.95620258679366],[-128.18821063153658,52.95629200814251],[-128.18798246370886,52.95640723366023],[-128.18776976457312,52.956533381989296],[-128.1876030151521,52.956682218693594],[-128.18748556742887,52.95684695529443],[-128.1873044856452,52.95698933134692],[-128.1874298220401,52.95717758458308],[-128.18746604006762,52.95735572647006],[-128.18756617167273,52.957525389617224],[-128.1876699737502,52.95769386342105],[-128.18770804150242,52.95787196187294],[-128.18781473457955,52.95804206791569],[-128.18789454173273,52.95821547156832],[-128.18797341024586,52.95838889260072],[-128.1880021478207,52.95856660822189],[-128.18801698672436,52.95874625917662],[-128.18802996251878,52.958925953697815],[-128.18803359086425,52.959105256859964],[-128.18798578686213,52.959282152411205],[-128.18802200854844,52.95946028494052],[-128.1880934826068,52.95963496426744],[-128.1881538473826,52.95981097102924],[-128.1881779774886,52.959989893162216],[-128.18818349934264,52.96016972605151],[-128.18817967341013,52.960349167594906],[-128.18816931681044,52.96052873046222],[-128.18812999241788,52.96070714545753],[-128.18809253193783,52.960885534751725],[-128.1880578161966,52.96106274297991],[-128.1879081550086,52.96121798829464],[-128.18777070156025,52.961374692684124],[-128.18773045026362,52.961553124628246],[-128.18769112354437,52.96173154832657],[-128.18768732397217,52.96191154520146],[-128.18765936365438,52.96211161396054],[-128.187700979073,52.9622677898533],[-128.18765476081342,52.96243905006599],[-128.1875127506141,52.96259808071818],[-128.18730468624233,52.96272414104803],[-128.18707653906176,52.96284048435618],[-128.18686767657957,52.96296935684363],[-128.18664360018948,52.96309235003724],[-128.1864308926794,52.96321905991554],[-128.1862816676971,52.96336476109886],[-128.18626507406483,52.96355004439966],[-128.18616124348358,52.96370779939979],[-128.18606038818675,52.9638688622398],[-128.18600331608678,52.964083488303],[-128.185799583531,52.96416686490491],[-128.1855310006237,52.96425929198222],[-128.18529704686955,52.96437181104493],[-128.1850462915688,52.96446614830021],[-128.18475200031938,52.96449402894077],[-128.18446033945057,52.96451849687013],[-128.18417882827444,52.96457697267442],[-128.18389099033405,52.96462154736577],[-128.18360947723315,52.964680012846046],[-128.1833259984647,52.96473683697047],[-128.1830369465375,52.96477582673985],[-128.18273576197902,52.96479654763963],[-128.18249368598097,52.96487838678257],[-128.18230888284313,52.96502194353848],[-128.182060124506,52.96511903536929],[-128.1817877620395,52.9651924656196],[-128.18150719576147,52.965251473407235],[-128.18125267040944,52.965345316069616],[-128.18105782279756,52.965475039014144],[-128.18086612255445,52.965611438643904],[-128.18060752056672,52.96569861999398],[-128.1803251427394,52.96575877945351],[-128.18003066136777,52.96580122532439],[-128.17976144491266,52.965863381910324],[-128.17957866451215,52.96601025978585],[-128.17954528646507,52.96605067946394],[-128.17953824519617,52.96618645767696],[-128.1794894159409,52.96636224613678],[-128.17945486379622,52.966452570047664],[-128.17935511972635,52.966526719345076],[-128.17908874369024,52.966589942763626],[-128.17879117978282,52.96662683713299],[-128.1785046060893,52.96667810119979],[-128.1782241691212,52.96673990558368],[-128.17794361614634,52.96679946034757],[-128.17766212336275,52.96685904077092],[-128.1773825656504,52.96691969682009],[-128.17709691285833,52.966970940362216],[-128.1768092097813,52.96701830188026],[-128.176536969184,52.96709451541663],[-128.17624798864568,52.96711723593273],[-128.17594815443871,52.967109878797764],[-128.17565008375647,52.967100811229365],[-128.1753527807935,52.96708836556688],[-128.1750555925861,52.967078159146986],[-128.17475776636053,52.967073569031086],[-128.1744645043689,52.967103646576746],[-128.17411596136142,52.96709270875588],[-128.17392716314117,52.96723184099988],[-128.17372875701864,52.967365544952834],[-128.1734819439722,52.96746482412588],[-128.17318810595933,52.96748369851895],[-128.1728921788601,52.96746169676306],[-128.172595437486,52.96747838112841],[-128.17229853330886,52.96747376774312],[-128.17200195283814,52.96745737210532],[-128.1717054735421,52.96744265992264],[-128.17140722038545,52.96744815864027],[-128.17110989173685,52.96745363956035],[-128.1708155572392,52.96748092954432],[-128.17054502432725,52.96755429934361],[-128.17028550703841,52.96764259524584],[-128.1700079408782,52.967706003896964],[-128.1697212350274,52.96775500656981],[-128.169433360435,52.96779954585307],[-128.16914662495216,52.96784799160551],[-128.1688589354276,52.96789588920425],[-128.16856902350904,52.96793710069984],[-128.16827575118828,52.967967162825914],[-128.16798986688107,52.96801390398505],[-128.16764804401737,52.96815303497745],[-128.16735458739257,52.9681063107281],[-128.16706178972757,52.96809095405985],[-128.16676475630814,52.96810202373632],[-128.16646710885644,52.96810133741977],[-128.16618119290243,52.96814750970684],[-128.16590872658477,52.96821978311322],[-128.1656211017806,52.96826935754965],[-128.1653575143436,52.96835099083058],[-128.16507384438714,52.9684049753901],[-128.1647779881245,52.96840256578771],[-128.16448096431768,52.96839569270447],[-128.16423908902573,52.96848252968226],[-128.16402722735077,52.9686091814303],[-128.16384889100536,52.968753144692585],[-128.16361319562566,52.96894301212073],[-128.16339348257674,52.96897058965889],[-128.16310360121253,52.969012342926206],[-128.16281478655807,52.96905688298448],[-128.1625391632096,52.96912248003346],[-128.16230209080786,52.969230533527146],[-128.16208445580563,52.96935391542327],[-128.16190088774783,52.96948677002796],[-128.16165030666605,52.969567599935196],[-128.161290861317,52.969672847722684],[-128.1609638172384,52.969607657054446],[-128.16070737119122,52.969518193560525],[-128.16051926089844,52.96937815013382],[-128.16030491059811,52.96925428230306],[-128.16002315203622,52.96919891296417],[-128.15975267914564,52.96912708536083],[-128.1594619960356,52.96917165137784],[-128.1591782275829,52.96922393723289],[-128.15888115553972,52.969234422546116],[-128.15858338657262,52.969231476308885],[-128.158286130571,52.96922010760116],[-128.15798840485343,52.969217715108556],[-128.15769072109234,52.969216442140194],[-128.15739273947824,52.96920900364748],[-128.15709853044427,52.969184123615804],[-128.156811481804,52.9691350137825],[-128.15653573445255,52.969069436734074],[-128.1562738502495,52.968982861480164],[-128.15600765537746,52.96890309979175],[-128.1557352415903,52.968829612588074],[-128.1554645225657,52.96875273062478],[-128.1551947005258,52.968675266635756],[-128.155034233669,52.96852798272693],[-128.15487342735707,52.96837397855494],[-128.15463081974715,52.96828088584386],[-128.15433405402015,52.96827903168569],[-128.1540378153025,52.96826931087141],[-128.15374754501073,52.96822977702262],[-128.15347253455317,52.96816026032284],[-128.15319934686255,52.96808957966281],[-128.1529075116656,52.968056242604085],[-128.1526123319236,52.96803024824663],[-128.15232371514332,52.96798675258668],[-128.1520366950105,52.967937630813324],[-128.15175057157722,52.967887926965304],[-128.15163371895693,52.968067742298295],[-128.1515047324868,52.96822873036382],[-128.1513302536355,52.9683759666304],[-128.15114533013625,52.96851947418774],[-128.15100470225354,52.96867170587096],[-128.1510148905325,52.96885480562794],[-128.15104540157893,52.969033615083006],[-128.15101974604,52.9692089660316],[-128.15093241716193,52.969382080022],[-128.150887279607,52.96955947268361],[-128.1508963729757,52.96973922921792],[-128.15088026406397,52.96991888988555],[-128.15085947383287,52.970098079971145],[-128.15083492642535,52.97027677362904],[-128.1507785735748,52.97045380590447],[-128.15068823882928,52.97062304627761],[-128.15059609622392,52.97079344956531],[-128.15049833156883,52.970963390382096],[-128.15032277195604,52.971107846261454],[-128.15019285980722,52.971269405270725],[-128.1500068252987,52.971409567653296],[-128.1498035997107,52.97154219616966],[-128.14971133785733,52.97171034970026],[-128.14957284171493,52.97186814538802],[-128.14940882884164,52.97201967126685],[-128.14916260217976,52.97211384679632],[-128.148925422512,52.97222075317424],[-128.14869612321124,52.97233591860899],[-128.1484512289385,52.97243791553403],[-128.14819354375194,52.972526692722624],[-128.1479240622527,52.97260390903298],[-128.1476684090226,52.97269601108847],[-128.1474482778139,52.97282670132785],[-128.1472000230159,52.97291754640696],[-128.14695902017496,52.973022832249455],[-128.14669741505728,52.973108314344735],[-128.14642494040126,52.9731816624834],[-128.14624153306792,52.973318972407114],[-128.14609416895786,52.97346794782977],[-128.14595974965837,52.973632946734554],[-128.14592955843682,52.97381118535289],[-128.14585428197057,52.97398351000342],[-128.14567688624626,52.974129112664315],[-128.14550419937808,52.97427575030051],[-128.14535908986093,52.97443253976346],[-128.1452309281165,52.9745923745381],[-128.14505412875988,52.97476823319897],[-128.14494689764396,52.974936098729565],[-128.14483310465909,52.975103527563064],[-128.1449043860026,52.975277111138475],[-128.14494687444355,52.97545346096285],[-128.1449026863057,52.97563194489197],[-128.14486698035856,52.97581196038697],[-128.1448295226442,52.97599424980571],[-128.1448449558723,52.97617053611707],[-128.14494018000426,52.97633807853057],[-128.14507807726193,52.97650035976703],[-128.14523613112777,52.97665554761959],[-128.14542967528158,52.97679270847909],[-128.14564147061893,52.9769216983754],[-128.14576606614338,52.977079171949505],[-128.1458264071258,52.97725800328163],[-128.1459144204636,52.97743016037967],[-128.146043156949,52.97759597046744],[-128.1462164525781,52.977738548044584],[-128.14647580660474,52.97782966706664],[-128.14669726382826,52.97794670377588],[-128.146911787996,52.97807395571983],[-128.14704581929337,52.97821500553923],[-128.1470392966521,52.97840009488305],[-128.14699702225155,52.97857910951235],[-128.14709785404852,52.978746548005645],[-128.14726403893746,52.97889597987447],[-128.14742110019657,52.97904950590632],[-128.14768190524583,52.9791321926856],[-128.14792420062798,52.979236515970904],[-128.14817812846596,52.979331093419034],[-128.14840153434392,52.97944921255271],[-128.14864326172747,52.97956083596156],[-128.14891245568936,52.97964336710914],[-128.14917060987844,52.9797104045661],[-128.14941291220777,52.979814724754675],[-128.14964804033352,52.97992478051929],[-128.14988497768272,52.98003368178393],[-128.15013713519153,52.98012997346955],[-128.15041173623402,52.980189981938956],[-128.15070502025034,52.98015828001968],[-128.1509714848789,52.980076064420594],[-128.15125018519683,52.98001436840777],[-128.1515472027599,52.98001959031711],[-128.15183760818562,52.98006024930533],[-128.15211697876106,52.98012240880117],[-128.15239892774946,52.98018003640668],[-128.15269332355425,52.98020716800522],[-128.1529869501288,52.980237676035195],[-128.153254037067,52.98031519579404],[-128.1534892346425,52.98042636386029],[-128.15375023017924,52.98051239713571],[-128.15404284938307,52.9805412349594],[-128.15433966955166,52.98056103593802],[-128.15463619244588,52.980574671431704],[-128.15492979433554,52.98060461013618],[-128.15519872317608,52.980681526888866],[-128.1554419574576,52.980785261912615],[-128.15567354758164,52.98089873380524],[-128.15592123948173,52.98099845820683],[-128.1561671528414,52.981099891719374],[-128.15638710179934,52.98122310857146],[-128.1566410909351,52.98129973053931],[-128.1569409494517,52.98132395360809],[-128.15723860427443,52.981322988470474],[-128.15753559018123,52.98130913842865],[-128.15783227833018,52.981289131871804],[-128.15812897994184,52.98126968931859],[-128.15842592323204,52.981254716764624],[-128.15895125603794,52.98123500281157],[-128.15926980519578,52.98124149693822],[-128.1595664482194,52.98125736001138],[-128.15986008697624,52.98128785089887],[-128.16015139190253,52.98132735214905],[-128.16044698219457,52.98134099024709],[-128.16074504955054,52.98132991935066],[-128.1610441421986,52.981320514933856],[-128.16134223750208,52.981309998043955],[-128.1616171727605,52.98124778149608],[-128.1618825411304,52.98116276302112],[-128.1621661293407,52.98110542657869],[-128.16246177336893,52.9810652487619],[-128.16273970956672,52.98100690257117],[-128.1629673808715,52.980896224612906],[-128.1631694135977,52.98075854694605],[-128.16334139964266,52.98067243236332],[-128.1636655042873,52.98056782961634],[-128.16394092882646,52.980497195169825],[-128.16421828859214,52.98042763658484],[-128.16448579644705,52.9803481779198],[-128.16475034221835,52.98026540095789],[-128.16502893798463,52.980201987901935],[-128.16531366907105,52.98014911578825],[-128.1655973887701,52.98009457551585],[-128.16587693531957,52.980031698966],[-128.16615251008514,52.979963854554846],[-128.166428097823,52.97989657424686],[-128.1667066315825,52.97983203721923],[-128.16699112926685,52.979774672113926],[-128.16735186493756,52.979729921423626],[-128.16752588604396,52.979811919335106],[-128.16779383576122,52.97988770468141],[-128.1680827205111,52.97993452210829],[-128.16837723888057,52.97996385451615],[-128.1686734405012,52.97993486100047],[-128.1688731466648,52.97980674922471],[-128.16905514072815,52.979661026468186],[-128.16921576921646,52.97959024164251],[-128.1693205238773,52.97963147758701],[-128.16958897171102,52.97962541357456],[-128.16988656051447,52.97964178917341],[-128.17018692557264,52.97965755685061],[-128.17048471521576,52.97967785538478],[-128.17077731164872,52.97970609615919],[-128.17106047526073,52.97975076965037],[-128.1713004424946,52.97986293616225],[-128.17155586179408,52.97994903339719],[-128.17184662455597,52.97997786139375],[-128.1721485711887,52.97998798975097],[-128.17244843830716,52.97999423650903],[-128.17274680772476,52.9799892907115],[-128.1730424252168,52.97996702320431],[-128.1733356051425,52.97993358946482],[-128.1736290709595,52.97990575493746],[-128.17392451557404,52.979880125251505],[-128.17422388153454,52.979876287322696],[-128.17450098905474,52.9799300237818],[-128.17472273511487,52.98005093210979],[-128.1749127467324,52.98018979755356],[-128.1751524111651,52.980295791781536],[-128.17540279167386,52.980392628287795],[-128.17563531537863,52.98050492364027],[-128.17587858312194,52.980608607810474],[-128.17612457072394,52.980710564175844],[-128.1763516761094,52.980826321370294],[-128.17659230149718,52.980932860019415],[-128.17683190249002,52.9810377400341],[-128.17708055569935,52.98113683811995],[-128.17734433550993,52.9812216475769],[-128.1776285991282,52.98126908336431],[-128.17792416557523,52.98124568364421],[-128.1782205922265,52.9812026534472],[-128.17847869374975,52.98124944980654],[-128.17871952755468,52.98135989955367],[-128.17889676380867,52.98150404423682],[-128.17913820946274,52.98160832057206],[-128.1794185124829,52.981669277925],[-128.17969446274336,52.98173647641924],[-128.17999046422028,52.98175790538956],[-128.18026346805289,52.98182235895604],[-128.18048711999577,52.98194322152079],[-128.18073571464097,52.98204119213388],[-128.18099391319774,52.982126096912566],[-128.18147999761192,52.98206889343472],[-128.18176672893756,52.98201874258781],[-128.182060002621,52.98198697164174],[-128.18235752235364,52.98196520177578],[-128.18263568007623,52.98202058608827],[-128.18292027151804,52.982074173474494],[-128.18321446978214,52.9820967488727],[-128.18351105523737,52.982111431965855],[-128.18380400731323,52.98209142915454],[-128.18409437115116,52.98213032415446],[-128.1843694649096,52.982198657770574],[-128.18464198480572,52.98227151370675],[-128.1849133935622,52.98234103545288],[-128.1850987943276,52.98247997058967],[-128.18531922681615,52.982592471609465],[-128.18557859313916,52.98268182908628],[-128.18586398832335,52.982732587479184],[-128.18615432985243,52.98277092187909],[-128.18644721699505,52.98280415913014],[-128.18673844175035,52.98284135466974],[-128.18695380483203,52.98296403624862],[-128.1871174142094,52.98311458327736],[-128.18735434999863,52.98322116903338],[-128.18758842472562,52.98332668639588],[-128.18778304709105,52.98346320416806],[-128.18798442305356,52.98358614363119],[-128.18827445306712,52.98363625422252],[-128.1885584544462,52.98369600052339],[-128.18879172519232,52.98380377260268],[-128.18885477247997,52.983976920201876],[-128.18887995954782,52.984158062366596],[-128.18879615701252,52.9843972815449],[-128.18868431854946,52.98456359712328],[-128.18860552436854,52.98473713719417],[-128.18849086540922,52.98490293990243],[-128.1883515880254,52.98506191732975],[-128.18816657255417,52.985202677109875],[-128.18796329971184,52.98533313009013],[-128.18778115831142,52.98547552188817],[-128.18757694308982,52.98560599163107],[-128.18737162871759,52.98573311824644],[-128.18717786232097,52.98586732142536],[-128.18698037939242,52.98600158425966],[-128.18682110056739,52.98615308347832],[-128.18664172759148,52.98629485692648],[-128.1864325620586,52.98641981110893],[-128.18620113484857,52.98652948324146],[-128.18593085624266,52.98659167058879],[-128.18583486005582,52.98675768905691],[-128.18563659489442,52.98685889754487],[-128.1854477175745,52.98699748212921],[-128.18521456393987,52.98710999129793],[-128.18498240611896,52.987223593588325],[-128.18488663510996,52.987394091133126],[-128.18466592956526,52.98767620219161],[-128.1845455372792,52.98783986453702],[-128.18437485134797,52.987987643313886],[-128.18410983482303,52.98806149515627],[-128.18381958489806,52.98809826348911],[-128.18354788819732,52.98816943969841],[-128.18333787946975,52.988296645621865],[-128.18323905027776,52.98846214902927],[-128.18314892202534,52.98863366135994],[-128.18310013944955,52.988810568927775],[-128.18309161947911,52.98899009373073],[-128.1830502963573,52.98916686304403],[-128.18302782435092,52.989347202286815],[-128.18287226390555,52.98949862649451],[-128.18274241926886,52.989660219593084],[-128.1825916554061,52.98981435264507],[-128.18268756299594,52.98993701212369],[-128.18279315056594,52.990084711211026],[-128.1826626663741,52.9902519211844],[-128.18244527570857,52.99036301120841],[-128.18218040863175,52.99045815530448],[-128.18196757941243,52.990585410553095],[-128.18174879504372,52.99070549334288],[-128.18160500422655,52.99086846414497],[-128.18143999216383,52.991017810038215],[-128.18129495805718,52.99117464216102],[-128.1811432435538,52.99132879061991],[-128.18102571850636,52.99149407258421],[-128.18094501553716,52.99166765029176],[-128.18080359226389,52.991822163805665],[-128.180587818385,52.991946672628735],[-128.18032744927848,52.99203893087391],[-128.1801970126076,52.99218932115457],[-128.18006152512163,52.992350450082085],[-128.17996945317486,52.99252087410827],[-128.17999910549304,52.99269857092851],[-128.18011490736825,52.99286346378925],[-128.18022424687476,52.99302959712117],[-128.18031883799506,52.99319936630574],[-128.18044206077502,52.99336300052309],[-128.18057725705447,52.99352360600499],[-128.18072892549597,52.9936777453269],[-128.18089793388359,52.993824281332195],[-128.18094627189586,52.994002188140385],[-128.18092749038985,52.9941819019256],[-128.1808297647043,52.9943513100066],[-128.18069039874132,52.994509713017685],[-128.1806246678472,52.994684125121296],[-128.18061804541102,52.99486417879867],[-128.1806141844181,52.995043616362615],[-128.18062527424493,52.995223333336526],[-128.1806549886666,52.99540214968066],[-128.1806893591488,52.995580879859254],[-128.18078860004562,52.9957500064865],[-128.18090724725508,52.99591540186998],[-128.18100277272953,52.99608515309515],[-128.18107335432018,52.99625984996498],[-128.18110957900902,52.99643798962976],[-128.18108330672692,52.99661727678255],[-128.18115469976848,52.996789716480805],[-128.18125297621646,52.996958295526326],[-128.18130409628728,52.99713559443176],[-128.18133938253592,52.99731375133155],[-128.1813858609725,52.99749169211154],[-128.1814453405563,52.997668280182374],[-128.18148152410052,52.997845855393685],[-128.1814440025241,52.998024229644145],[-128.18141680588224,52.998203542785404],[-128.18141481338935,52.99838294549706],[-128.1814128493999,52.99856290369569],[-128.18140808022173,52.99874292275629],[-128.1814061451677,52.998923445382204],[-128.1814228072229,52.99910250279417],[-128.18150077094603,52.99927537656757],[-128.18160008120532,52.99944562211216],[-128.18171693391494,52.99961217081435],[-128.18185577130626,52.999770474196715],[-128.18201946991695,52.999922147041275],[-128.18210190480846,53.000000214612655],[-128.18230844513937,53.00013147139159],[-128.1824425725773,53.000288740266534],[-128.18253360127457,53.00046137146483],[-128.18262182541608,53.00063406348516],[-128.1827164715777,53.00080438548393],[-128.18285066019106,53.00096277380187],[-128.1830344851629,53.001106225345005],[-128.18318251601568,53.001261549881335],[-128.18332603516322,53.001419755904095],[-128.18346764633586,53.00157744106377],[-128.1836120643863,53.001735074065024],[-128.18375657008886,53.00189439130769],[-128.183952871459,53.00202583499619],[-128.1841864328918,53.00213753938312],[-128.18442909274276,53.002244581617994],[-128.18461097052077,53.00234995167637],[-128.18432967923857,53.002435878680785],[-128.18403643932342,53.00247102375173],[-128.18373940031108,53.00248661586568],[-128.18345167905974,53.00253846378847],[-128.1831615838427,53.0025438365113],[-128.18286664007357,53.00250950606282],[-128.18256651156003,53.00250161069775],[-128.1822824488646,53.00255171093632],[-128.18203649184636,53.002653228749224],[-128.1818245413976,53.00278046541315],[-128.18163977270592,53.002927942238436],[-128.18142606025995,53.00303895125853],[-128.1811208488606,53.003041235506394],[-128.18084633618102,53.00296840684318],[-128.1805619523389,53.002921534934174],[-128.18026329956558,53.002905759136226],[-128.17996761858453,53.00291179225351],[-128.17967559890232,53.002952499972785],[-128.17938537237706,53.00299206174326],[-128.17909413355716,53.003029955467944],[-128.17879847368513,53.003054477788616],[-128.17850065313803,53.003054932619996],[-128.17820307628912,53.0030604313231],[-128.1779057796097,53.00305303671868],[-128.17760825294832,53.003041152520616],[-128.17730920566592,53.003036030816176],[-128.17700920417388,53.00303036097621],[-128.1767102713462,53.00302746873585],[-128.17641461747237,53.00303404844976],[-128.17613218013773,53.003079619527576],[-128.17586875513686,53.003168559196055],[-128.17561005797458,53.003258532029626],[-128.17536895347348,53.00336387406035],[-128.17512205033253,53.0034654034375],[-128.17487795151172,53.00356687156615],[-128.1747005033157,53.003711959829936],[-128.17450084546678,53.00384287510514],[-128.17424423626034,53.00393729038171],[-128.1740503887613,53.00407202575704],[-128.17386430331007,53.00421278779399],[-128.17363102410238,53.004325263938995],[-128.17340159012005,53.00443991972821],[-128.17317122904979,53.00455458316207],[-128.17294280368245,53.004670896463246],[-128.17272205557697,53.00479099588339],[-128.1725340107096,53.0049301057077],[-128.1724409270503,53.005099975167866],[-128.17239122634092,53.00527856937696],[-128.17231229880994,53.00545154090772],[-128.17220128076687,53.00561782143308],[-128.17207802686778,53.00578207623108],[-128.1719509687449,53.00594528889205],[-128.1718096658846,53.006103714687086],[-128.17169296070378,53.006268413342795],[-128.1715895441754,53.00643735118762],[-128.17148709558398,53.00660682711081],[-128.17137607129357,53.006773106745804],[-128.17123000544288,53.00692993337714],[-128.1710677719051,53.00708089635988],[-128.17089887142012,53.00722918376493],[-128.17072613708507,53.00737585545874],[-128.17055548238986,53.007526407682384],[-128.17037511060337,53.0076698563232],[-128.17016765788043,53.0077947457071],[-128.16990137146678,53.00788316766993],[-128.1696150622385,53.007927107525255],[-128.16931752224355,53.00793370348739],[-128.16899811699102,53.00793285377952],[-128.16870810358688,53.007977424549004],[-128.1684181045012,53.008021994329596],[-128.16812664993964,53.00805650093803],[-128.16783225405857,53.00805182507987],[-128.16754050184946,53.00800730804402],[-128.16725821953997,53.00794691292931],[-128.16696523125015,53.00791474846719],[-128.16666853048244,53.00791963629749],[-128.166380609058,53.00796864694744],[-128.166089438756,53.008008748388654],[-128.165797056924,53.008043266243135],[-128.16550683980697,53.00808391371041],[-128.16522803317838,53.008146762377066],[-128.16495251740997,53.008219083109644],[-128.16467996327822,53.008294711868125],[-128.16442007131064,53.008380761717135],[-128.16421162844807,53.00850509336842],[-128.1640246508636,53.00864753197709],[-128.16382317176408,53.00878014720414],[-128.16362077974046,53.008913343800955],[-128.1634259924771,53.00904919854512],[-128.16324647354605,53.00919149892412],[-128.16308903146137,53.00934572520013],[-128.16295815372862,53.009507867084146],[-128.16287533400356,53.0096786603774],[-128.1628462276914,53.00985912246757],[-128.16281237793405,53.010037985523596],[-128.16278225982308,53.010216780096485],[-128.16275027548508,53.01039560886963],[-128.16270517198362,53.01057355722515],[-128.16268251699918,53.010752214811475],[-128.16268887755177,53.010932017221116],[-128.1626989556965,53.011111760393],[-128.162710886127,53.01129090457867],[-128.16272469603544,53.011470570298144],[-128.16273944699532,53.011650227706525],[-128.16275419762374,53.011829876134236],[-128.16276894883313,53.01200953350085],[-128.162783699711,53.012189181886825],[-128.16279565954378,53.012368890415914],[-128.16280573802487,53.012548624466454],[-128.16281396590009,53.01272840141087],[-128.1628100280923,53.01290783648732],[-128.16279584756887,53.01308801543892],[-128.16278071305305,53.013267655840444],[-128.16277211725028,53.01344717628952],[-128.16276723867696,53.013626628538965],[-128.16276332933154,53.01380662798429],[-128.16276128562808,53.01398658422371],[-128.16275921362038,53.01416598493846],[-128.1627590364855,53.01434591587253],[-128.16276261994634,53.01452633383933],[-128.16278124680375,53.01470871791131],[-128.16280742382543,53.01489264052629],[-128.16283078098132,53.0150760588154],[-128.1628418865902,53.01525745976014],[-128.1628312671627,53.0154342190598],[-128.16278862322307,53.01560539562],[-128.16268179976456,53.015763732005716],[-128.16250519954943,53.01590878362169],[-128.1622994073947,53.01604932115997],[-128.16210877177002,53.01619406447589],[-128.16196077308462,53.01635091297037],[-128.1618365936102,53.01651685770074],[-128.16174536504903,53.01668780331232],[-128.1617150667145,53.01686323700277],[-128.16174391882436,53.01704487746245],[-128.16174671482048,53.017228107585275],[-128.16183060137675,53.01740817415292],[-128.16199146091603,53.01754086795143],[-128.1622187816959,53.017657769813816],[-128.16245420946782,53.017768917525096],[-128.16269322872114,53.01787720086647],[-128.16293317442484,53.01798545777915],[-128.16316951820787,53.01809603128556],[-128.16339768508638,53.0182112294262],[-128.16361310300198,53.01833283110301],[-128.16382255318115,53.01846575204288],[-128.16401669069265,53.01860960773097],[-128.1641207939605,53.01881956917051],[-128.16421377872678,53.01893948840516],[-128.16429495660532,53.019102787784654],[-128.16431132614005,53.019277365607095],[-128.16428898742356,53.019462186882144],[-128.16429631057082,53.01964253575693],[-128.1643018244722,53.01982403882961],[-128.16430917604748,53.02000494316856],[-128.16432489071897,53.02018513799005],[-128.1643554375758,53.02036281856933],[-128.16440822429445,53.02053729292969],[-128.16448450762897,53.02073262631808],[-128.16466405236673,53.020864973671074],[-128.16483594894228,53.02101203432187],[-128.16505648723142,53.02114195159614],[-128.1652492431623,53.021276853617564],[-128.16532579959457,53.021440802053675],[-128.1653147195939,53.021626528688564],[-128.16530812734715,53.021808818837584],[-128.16530700642042,53.0219882015006],[-128.16530310661088,53.022168191184576],[-128.16530013300738,53.022348172812684],[-128.1653018326491,53.02252805965773],[-128.165311910751,53.02270723664304],[-128.16532946886988,53.022886841275415],[-128.16535450772503,53.02306629958176],[-128.16538604387412,53.02324508256028],[-128.16543616028497,53.023421847357625],[-128.16552711232268,53.023593369359304],[-128.1655948974564,53.02376868865623],[-128.16565058626543,53.02394478603203],[-128.16569889469253,53.02412269592078],[-128.16573973765318,53.0243007518263],[-128.16577127634028,53.02447953457238],[-128.16579353942853,53.024659608627395],[-128.16573875776388,53.02483100824728],[-128.16556419658738,53.02497994478427],[-128.16540942588964,53.025132436757495],[-128.16538496500206,53.02531224756296],[-128.16521400472107,53.025458875353245],[-128.16506503104182,53.025615188382716],[-128.164968053457,53.02578344293613],[-128.16494264953147,53.02596327084916],[-128.16494245281675,53.026142636077836],[-128.16499073245322,53.02631999052614],[-128.1650631651066,53.0264946595956],[-128.16513651038252,53.02666874687303],[-128.16520056542365,53.02684413460871],[-128.1652265319513,53.02702357553007],[-128.16525804217167,53.027201802627204],[-128.16527937861886,53.02738189348799],[-128.16532847273518,53.02755699075126],[-128.16546101398222,53.02771934600538],[-128.16554727267385,53.0278903978692],[-128.16558444179284,53.02806963297714],[-128.16557019745488,53.028248134921796],[-128.16551385789595,53.02842573260854],[-128.16546025297808,53.02860215006326],[-128.165460087226,53.02878207947536],[-128.16549343772868,53.02895970759696],[-128.16553985607368,53.02913709579769],[-128.16560022616702,53.02931310682964],[-128.16568191456193,53.02948591943633],[-128.16578302680304,53.02965502130855],[-128.16591000420087,53.029818034181616],[-128.16607183770793,53.029968640793285],[-128.16621442089354,53.03012632673912],[-128.16635151889744,53.030286355265545],[-128.16649410418816,53.03044404084415],[-128.16663120427157,53.03060406901583],[-128.1667572185121,53.03076654266848],[-128.16687036590199,53.03093318054519],[-128.166965016415,53.03110351214248],[-128.16704858115222,53.03127629828861],[-128.16709127473436,53.031453754227144],[-128.16710791755327,53.03163336572515],[-128.16712829479246,53.031812917570335],[-128.167165416847,53.03199103181187],[-128.16719790817825,53.03216979608613],[-128.16724526315113,53.032347166271634],[-128.16729452921322,53.03252506630523],[-128.16734564724516,53.03270292331558],[-128.1675847058414,53.03281007584125],[-128.16782826848507,53.03291377314409],[-128.16809500163578,53.032995753970084],[-128.16835982612542,53.03307663931441],[-128.1685791248069,53.03319928218829],[-128.16879124292532,53.033327661710615],[-128.16904777683578,53.033410948951264],[-128.1693381243182,53.03346109569937],[-128.16962238892995,53.03352033064035],[-128.16990132568256,53.03358470295457],[-128.17015002645326,53.033679333037846],[-128.17037202686453,53.033799680975385],[-128.17058961147703,53.033925158773584],[-128.17081791239573,53.03404090595007],[-128.17105345349998,53.03415203543151],[-128.17128989300653,53.03426258293586],[-128.171519978965,53.03437661891941],[-128.1717117128198,53.03454460384746],[-128.1718898063562,53.03464670012386],[-128.17210601961366,53.034781724555124],[-128.17227434994143,53.03493051736622],[-128.17243450196582,53.03508395353935],[-128.17261004516797,53.03522757302132],[-128.17284291906938,53.03534099019451],[-128.17308568273035,53.03544693372751],[-128.1732161095784,53.0356037144263],[-128.17332288256634,53.035772705781454],[-128.17352218765393,53.03590579716706],[-128.17373339322188,53.0360341849389],[-128.17393367028802,53.036167813767435],[-128.1741284475479,53.036303794601196],[-128.17418461816595,53.03648828180673],[-128.1743311255147,53.03663019187943],[-128.17443010633127,53.03679315583737],[-128.17445657157037,53.036963061241764],[-128.17448499862246,53.03711668034589],[-128.17460543188793,53.03727868377929],[-128.17476122767025,53.037437802230826],[-128.1749159583459,53.03764906247617],[-128.17539616309298,53.03764693558945],[-128.17579792574176,53.03762775222704],[-128.17609761881235,53.03764072626212],[-128.1763967300232,53.03766042735305],[-128.17669435511428,53.03766951001406],[-128.1769928779557,53.03767801934197],[-128.17733714678872,53.03766718259444],[-128.17759441253156,53.03769101590801],[-128.17788663795181,53.03770412324398],[-128.1781843496408,53.03771487758961],[-128.1784790173331,53.03773914846762],[-128.17876906064186,53.037782552198834],[-128.179057410313,53.03782935850229],[-128.17934984561515,53.03786486958355],[-128.1796437614211,53.037892514499624],[-128.1799394143512,53.0379178756078],[-128.18023180887516,53.0379522732385],[-128.1805119526936,53.038003146717905],[-128.18079568194545,53.03806908242263],[-128.18105979430334,53.03815332521908],[-128.18132479075643,53.03823642111666],[-128.18156461166865,53.03833904806836],[-128.18175683124886,53.038478983117564],[-128.18200288036442,53.0385753240009],[-128.18227756764855,53.03864702850229],[-128.18255497798512,53.038717004976036],[-128.18282344142014,53.03879499340535],[-128.18308970797318,53.03886629582325],[-128.18331589016407,53.0389579615664],[-128.1836314551387,53.03904292368392],[-128.18392823240325,53.03907161719972],[-128.18421918242416,53.03907800659889],[-128.18451821900703,53.03904163817368],[-128.18481300833085,53.03903169587658],[-128.18510125784064,53.03907624749217],[-128.18538731980212,53.03913260506794],[-128.185671558033,53.03919011675744],[-128.18595489949846,53.0392482004106],[-128.18622677582883,53.03931939195238],[-128.18649636396998,53.039400714391384],[-128.1867599010184,53.03949168146246],[-128.18699628205547,53.039599401498734],[-128.18719637190136,53.039728528048045],[-128.1873766311991,53.03987148301127],[-128.18754056185264,53.040024264557],[-128.1876916686796,53.04018176769745],[-128.1878343950796,53.04033998206341],[-128.18795506207263,53.04050534035115],[-128.18804249393193,53.040678596915875],[-128.18809269614272,53.04085478582848],[-128.1881215328285,53.04103361294085],[-128.18813920948858,53.04121320300881],[-128.18814666679324,53.04139411254796],[-128.18815125750862,53.041573945248224],[-128.1881306472235,53.04175425422685],[-128.18809221767634,53.04193320761268],[-128.18813958398786,53.042108884005884],[-128.18823262196526,53.04228203638461],[-128.1883634007558,53.04244384364803],[-128.18852808369664,53.04259268187021],[-128.18871202169439,53.042734445625136],[-128.1888987981079,53.04287671247338],[-128.18906900035043,53.04302377055467],[-128.18923894164132,53.04318372038072],[-128.18933983370258,53.04334608107384],[-128.18952276454695,53.04348617630014],[-128.1897368647928,53.04361448274905],[-128.189961013447,53.04373811829743],[-128.19017689678915,53.0438647048858],[-128.1903643203363,53.04400135244019],[-128.19050867709214,53.0441544933173],[-128.19062005680442,53.044320577328456],[-128.19071037384882,53.044494899330616],[-128.19079148416682,53.04467219919528],[-128.19087534555422,53.04484831794416],[-128.19097293253583,53.045018585707886],[-128.19109520297178,53.04517829701894],[-128.1912615714305,53.045323181217576],[-128.19147933466434,53.04544973958964],[-128.191728904902,53.04555888271162],[-128.19198969761004,53.04564988966743],[-128.19226139365287,53.04571658729928],[-128.1925092603421,53.04581063130871],[-128.1927420856171,53.04592120447197],[-128.19300360587582,53.04602620388183],[-128.19322711168547,53.046119022102296],[-128.1934450154407,53.04621193507026],[-128.1936542055949,53.046298848548105],[-128.19385311771532,53.046368016565225],[-128.194024045897,53.04652850641781],[-128.1941151633971,53.046700013013485],[-128.19419236909206,53.04687345523127],[-128.19426866288939,53.04704747036964],[-128.19435607608108,53.04721960166422],[-128.1944491218907,53.047392193141015],[-128.19454955168078,53.04756296123094],[-128.19467107538762,53.047726045905726],[-128.19483022734187,53.04787554351732],[-128.19503436233734,53.04800907510412],[-128.19526198022837,53.04812703141029],[-128.1955048442077,53.04823237254667],[-128.19575945073083,53.04832964764801],[-128.19601679442422,53.04842575027291],[-128.19626590139305,53.048525368670234],[-128.1964977382811,53.04863427607259],[-128.19668229331032,53.048768725353646],[-128.1968031921879,53.048937424619886],[-128.19694692374182,53.049095618598486],[-128.19716816819272,53.04921648804868],[-128.19738036603528,53.049343139559866],[-128.19757438124998,53.04947965338325],[-128.19776474914423,53.049617911853176],[-128.1979569571824,53.0497555797365],[-128.19815462471252,53.04989034759174],[-128.1983586776544,53.05002218917741],[-128.19856817581214,53.0501505659545],[-128.19878759192724,53.050272031533126],[-128.1990322285577,53.050375090626325],[-128.1992894759753,53.05046894614429],[-128.1995059994583,53.05058877833693],[-128.1997302401637,53.05069502314755],[-128.19989489828458,53.05087804191706],[-128.19999320018937,53.051043240200514],[-128.2000011063443,53.051051495924376],[-128.20014149603654,53.05119909438133],[-128.2002861448231,53.05135670237361],[-128.200494559772,53.05151817036251],[-128.20065067862996,53.05168060413598],[-128.2007987011641,53.05181293035785],[-128.20096337715384,53.05196007500732],[-128.20111195021724,53.052085099530935],[-128.20130245436357,53.05220765582812],[-128.20148409242893,53.05237522660351],[-128.20168218965196,53.052517818876915],[-128.2018801316067,53.05267555185721],[-128.202020570528,53.05278783988964],[-128.2021515678843,53.0529703626082],[-128.2023924633024,53.053072919833],[-128.20263377852027,53.05316538861846],[-128.20289924865202,53.05327309128484],[-128.20309519280784,53.05339218920404],[-128.2032425349904,53.05360130994405]]]}' + )), 4326)))); + +INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Cariboo','5','5- Cariboo','AR10100000','WHSE Admin Boundary',3 + , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-120.28144716490331,52.699982277216726],[-120.28166686600646,52.70011896334786],[-120.2828756256696,52.701201315825905],[-120.28407887503646,52.70254761120022],[-120.28522032845889,52.70335566367774],[-120.28751046571567,52.70414004606085],[-120.28965042825898,52.70482428295139],[-120.29240122405507,52.70539101976941],[-120.29252745630977,52.70567097398517],[-120.28939316354857,52.70541324522477],[-120.28599549824204,52.705567562471295],[-120.28430391282484,52.70597954066127],[-120.28109902884427,52.70691559824003],[-120.28083291217072,52.70745857213733],[-120.27977185580527,52.708938031039374],[-120.27978189189712,52.70908525826075],[-120.27979267736787,52.709226891266205],[-120.27978935429807,52.709362778321],[-120.27964278064515,52.70945736295711],[-120.27942529333349,52.70952597887767],[-120.27922385804065,52.70958582765892],[-120.27900764078449,52.709644952325824],[-120.27880620434767,52.70970480038374],[-120.27859118315975,52.70975498786757],[-120.2783755628213,52.70980964315706],[-120.27815994193219,52.709864298047606],[-120.27794499342299,52.70991393028236],[-120.27773019529164,52.70996243613495],[-120.27751509610646,52.71001318462698],[-120.27730014729923,52.7100628067367],[-120.27707228707438,52.71009774579993],[-120.27684382766677,52.71013715261249],[-120.27663007392854,52.710177846037546],[-120.27640168914233,52.71021668899316],[-120.27618786032522,52.71025793566452],[-120.27597350645614,52.7103030960774],[-120.27575870413729,52.71035159830088],[-120.2755282201043,52.71040608713984],[-120.27532744966409,52.71046089800538],[-120.27511174612788,52.710516110250055],[-120.27489559396797,52.71057466429583],[-120.27469347288381,52.71063953641421],[-120.27447672046252,52.71070255786268],[-120.27427444836745,52.71076854629712],[-120.27408568486955,52.710844749175585],[-120.27392341428335,52.71094529549888],[-120.2738037651921,52.71106086533794],[-120.27366873445949,52.71118017878129],[-120.27353430214654,52.71129502388634],[-120.2734140518401,52.7114150614727],[-120.2732649104536,52.71152862772448],[-120.27310428320678,52.71161688539678],[-120.27290088169079,52.711691244768055],[-120.27268456955544,52.711750920664564],[-120.27248259058557,52.71181466293728],[-120.27227971084793,52.71188511604265],[-120.27206339806516,52.71194478184764],[-120.27184918123481,52.711988817618526],[-120.27162190568818,52.71201927786795],[-120.27139410593674,52.712053642847486],[-120.27118146197438,52.712085944006105],[-120.27095373584665,52.71211975407567],[-120.27072518447761,52.71215971188456],[-120.27051036689257,52.712208204419625],[-120.27028114077055,52.712253183565494],[-120.27006677067553,52.712298333104975],[-120.26985375036311,52.712333419974286],[-120.26962632166737,52.71236499338135],[-120.26938800798413,52.71236679840094],[-120.26916687502872,52.712351455353655],[-120.26892976073758,52.712344323145466],[-120.26869099737041,52.71234947785639],[-120.26845088458002,52.712364685404424],[-120.26825114423333,52.712411673749315],[-120.26813200110911,52.71252332358602],[-120.26803297434833,52.71270680574982],[-120.2683216362544,52.71388189379666],[-120.26953134658105,52.71495767180443],[-120.27062374477461,52.71557737021681],[-120.27147408511172,52.716559601479396],[-120.27230740808518,52.717447108578234],[-120.27338131166643,52.71842735221519],[-120.27596892965518,52.71921750517063],[-120.2820285784541,52.7208633853572],[-120.28365914405965,52.72135635842112],[-120.28512865746933,52.72194093332705],[-120.28718246354575,52.72271932955358],[-120.28924567727223,52.72353917983902],[-120.29094147552749,52.72399081239386],[-120.2924367140561,52.72416165650734],[-120.29348358054588,52.72423525953055],[-120.29498540604138,52.72435692048751],[-120.29654608888399,52.724483682500015],[-120.29834025516872,52.724756734146396],[-120.29961374458527,52.72491666656982],[-120.29888095500658,52.725723058148695],[-120.2979963988474,52.726662585439655],[-120.29751974760514,52.72711099869403],[-120.29678383489107,52.7280515817626],[-120.2961182592231,52.7291338963917],[-120.29569119237547,52.72999060173554],[-120.29452889990687,52.730556765287005],[-120.29280042041259,52.73157200038862],[-120.29177055322471,52.732371722606295],[-120.29181350123712,52.73305236637745],[-120.2921249137554,52.7340631734056],[-120.2925471109942,52.73457962086514],[-120.29232429684427,52.73557784504068],[-120.29144918109127,52.73633283569501],[-120.29051539952746,52.73685840538675],[-120.28829489653417,52.7375426125683],[-120.28719489351067,52.738197208590854],[-120.28698980615032,52.739061929472385],[-120.2869384640395,52.73922301771431],[-120.28689026313428,52.73936063915329],[-120.28682719469862,52.739498100783685],[-120.28673543935182,52.739627414584604],[-120.28661499688609,52.73974858049065],[-120.28648110776106,52.739858970109076],[-120.28636021524687,52.73998348684981],[-120.28622647429127,52.740092759121914],[-120.28602348305364,52.74016323470566],[-120.28581996823772,52.7402376150972],[-120.28564469073017,52.74032349429609],[-120.2854821858882,52.74042517169166],[-120.28534769337305,52.740540028112314],[-120.28519982843193,52.74064355402443],[-120.28499563731049,52.74072295515544],[-120.2847934644648,52.74078728041323],[-120.28459046756917,52.74085775348203],[-120.28441451239202,52.7409486529962],[-120.28426664377909,52.74105217770264],[-120.28411817716218,52.74116016141728],[-120.28392750154481,52.74124978302589],[-120.28373757328752,52.7413338191494],[-120.28363288202392,52.74144844875393],[-120.28361320555634,52.74159533420679],[-120.28357940915238,52.74173647428704],[-120.28351692512892,52.74186946578541],[-120.28345459035839,52.74200134020577],[-120.28337686392445,52.74213695951473],[-120.28328449389507,52.7422707385175],[-120.28319332048613,52.74239558117631],[-120.28310162216219,52.74252433783469],[-120.28299528126303,52.74265124519605],[-120.28287541832165,52.74276793888733],[-120.2827404624476,52.74288614323175],[-120.28260595482922,52.74300099631786],[-120.28247144648833,52.7431158492408],[-120.28235173048999,52.7432314253297],[-120.2822312654534,52.743352586439535],[-120.28209660531817,52.74346855593593],[-120.28196224382471,52.74358229120874],[-120.28181376140745,52.74369028075849],[-120.28165198313764,52.74378636746684],[-120.28144829377537,52.74386185711611],[-120.28124527677237,52.74393232424607],[-120.28104315856727,52.74399607991392],[-120.28082729325746,52.74405130145031],[-120.2806115783111,52.744105396623056],[-120.28039653600052,52.74415446924085],[-120.28016722330582,52.74419891273304],[-120.27995090781603,52.74425747479309],[-120.27977739899568,52.74432994066428],[-120.2796430286275,52.74444367321295],[-120.27952240274819,52.74456594846703],[-120.27938728217435,52.74468526583489],[-120.2792530594132,52.74479788088386],[-120.27910434188463,52.74490753798379],[-120.27896989242771,52.745021832697724],[-120.2788347688717,52.745141149392445],[-120.27871563648141,52.74525225351226],[-120.27856631687045,52.74536637799452],[-120.27841797066608,52.74547323715341],[-120.2782693984368,52.74558177612087],[-120.27814966417779,52.74569734772758],[-120.27798622110875,52.745805725441635],[-120.27782442623524,52.7459018067311],[-120.27756562627206,52.74605498942275],[-120.27736334273281,52.74611985567672],[-120.27716053360842,52.74618863562351],[-120.27694270447184,52.74625837120834],[-120.2767815048654,52.74634998294319],[-120.27666041592197,52.746475606160566],[-120.27662786571906,52.746607253568364],[-120.27663790102596,52.74675446841954],[-120.27664928373164,52.74689163900525],[-120.2766898810864,52.747033045746214],[-120.27673107805091,52.74716998437735],[-120.27680208939213,52.74730669103944],[-120.27692077956884,52.74742100417152],[-120.27708520342006,52.747527427032246],[-120.27723535737174,52.74762922057867],[-120.2773840138364,52.74774218413646],[-120.2775178009955,52.74785498654088],[-120.27765114061688,52.74797113091161],[-120.27776961078996,52.74808711419738],[-120.27790235138748,52.74820773528532],[-120.2780050550039,52.74833025059697],[-120.27812262831156,52.74845293562608],[-120.27820948849448,52.74858255496404],[-120.278295901003,52.748715516354814],[-120.27836759340775,52.74884719980027],[-120.27845385594776,52.7489812870088],[-120.27855663730048,52.749103247731554],[-120.27867473918647,52.749222018101],[-120.2787763234321,52.749352914783664],[-120.27886378657566,52.74947806547338],[-120.27890439370991,52.74961947120505],[-120.27897616499634,52.74975059122059],[-120.2791093635097,52.749867859744214],[-120.27925855753453,52.74997690671317],[-120.27940827593577,52.750082048375866],[-120.27955747027214,52.750191103885],[-120.27966018339524,52.75031361758533],[-120.27976177325121,52.75044451331934],[-120.27986456185208,52.75056647277718],[-120.28001301023347,52.75068111278173],[-120.28017737884025,52.75078809405374],[-120.28035946474596,52.75087401225751],[-120.28055911684174,52.75093999327311],[-120.28077865654386,52.75096871868881],[-120.28100238918006,52.7509661670414],[-120.28124091751131,52.750964338432254],[-120.28148064361814,52.75095357314649],[-120.28170811909598,52.750923094554025],[-120.28192661149357,52.75095963698929],[-120.28214323232456,52.75101014629334],[-120.28235813269416,52.75107349651407],[-120.28255831334386,52.751135560060334],[-120.28275564922902,52.751218855679824],[-120.28293878996331,52.75129695067522],[-120.28313657638267,52.751376894568175],[-120.28333571183893,52.75144677595388],[-120.28353514609428,52.75151443188198],[-120.28375311983875,52.75155487602128],[-120.28398746082654,52.75158431856126],[-120.28420461165047,52.7516309099735],[-120.2844202664457,52.75168867125321],[-120.28463569675779,52.75174811214306],[-120.28485359731644,52.751789117211395],[-120.28507321967881,52.75181727158521],[-120.28530995705452,52.75182883903064],[-120.28553788332327,52.75179500193869],[-120.28576057268968,52.75180026040944],[-120.28598026991307,52.751827859037306],[-120.28621341709879,52.75186623335329],[-120.28649095311154,52.75190677561694],[-120.28706664413683,52.752056325443014],[-120.28740932687744,52.75227769263884],[-120.28771360676014,52.75245220963747],[-120.28823429244889,52.75279020356582],[-120.28861770390756,52.75315241522759],[-120.28899768370732,52.753540308339076],[-120.28961405205266,52.75383124731745],[-120.29044288940646,52.75420395377302],[-120.29104806773003,52.75446735399589],[-120.29193320492449,52.75486471632208],[-120.29260513698544,52.75496327362673],[-120.29308747389803,52.75514308945989],[-120.29232447862232,52.75873068819226],[-120.2897655068513,52.7604884921862],[-120.28850931084419,52.76219404417509],[-120.28809988342852,52.764361437383684],[-120.28786263808905,52.76824619834096],[-120.28828691787076,52.77052904712322],[-120.28930911091484,52.77201919262032],[-120.29285421750008,52.773808355134584],[-120.29725538462382,52.77577233903188],[-120.30062931294853,52.77795482227044],[-120.3018303083873,52.779449589198244],[-120.30642044020901,52.78089845366951],[-120.30690286448622,52.780968583010896],[-120.31019439662825,52.781429949378904],[-120.31339589050344,52.78144950002766],[-120.3199062642525,52.78079425229202],[-120.32660358271652,52.779740163875296],[-120.33161832564346,52.77833722268069],[-120.33662328607828,52.77790271575189],[-120.33772853935741,52.77945426411749],[-120.33855823815112,52.78162260562137],[-120.33881419371782,52.7835107888517],[-120.34029936281834,52.78545784898121],[-120.34129851106611,52.78803569692282],[-120.33759421132042,52.789554189085884],[-120.33409882265306,52.790283912513864],[-120.32946310719878,52.79151705480249],[-120.32519703847422,52.793554366151405],[-120.32139160369707,52.79615914735961],[-120.32016183067142,52.79632604090371],[-120.31842062693174,52.79954632839427],[-120.31620242987793,52.80022060855412],[-120.31509329521631,52.801465850398706],[-120.31498690143239,52.80159279080771],[-120.31486636436841,52.80171398081484],[-120.31474590173278,52.80183460770588],[-120.31461136845533,52.80194893902904],[-120.31444854904743,52.802051769503045],[-120.31428647289238,52.80214902353921],[-120.31411092460363,52.80223549586729],[-120.3139342570902,52.80233035010369],[-120.31377210477264,52.80242815745766],[-120.31360935545281,52.80253043268986],[-120.3134748169403,52.802644762658566],[-120.3133402037673,52.802759646509806],[-120.31322040411783,52.80287524960195],[-120.31311385336811,52.80300329628704],[-120.31299338095221,52.80312393021467],[-120.31288817067771,52.803241923441824],[-120.31276717573304,52.80336646224007],[-120.31266129272099,52.80348948632759],[-120.3125548127138,52.80361697840969],[-120.31244892846875,52.803740002285615],[-120.31234244720285,52.803867494154304],[-120.31225070477215,52.80399626842212],[-120.31217362853701,52.804126870231045],[-120.31215454264625,52.80426984931284],[-120.31225807459103,52.80438787093999],[-120.31243978202328,52.80447876736336],[-120.31265618917811,52.80453312362102],[-120.31287431203022,52.80457462922565],[-120.31309131656708,52.804624516578926],[-120.31330712896872,52.80468333973084],[-120.31350641210204,52.80475429337874],[-120.31368872003442,52.804840719745535],[-120.31387110383426,52.80492658284338],[-120.31405266793057,52.80501859376352],[-120.31421911965299,52.80511211917431],[-120.31456721242458,52.805297100405916],[-120.31473307017772,52.80539509317596],[-120.31488307021442,52.805500185700694],[-120.31504840844458,52.80560208313699],[-120.3151988570877,52.80570382416408],[-120.31534841226278,52.805812267153335],[-120.31546595306196,52.805937144144714],[-120.31556897720729,52.80605906784994],[-120.31568674226975,52.80618227352782],[-120.31582096390832,52.806293901916824],[-120.3159708207634,52.80640011001724],[-120.31613668602219,52.80649810073398],[-120.31631796366638,52.806592342110804],[-120.31650184908007,52.806667039683674],[-120.31671760260025,52.806726410532214],[-120.31695063016569,52.806768073414894],[-120.31716988541301,52.80680119773196],[-120.31740648936261,52.80681605102265],[-120.31762991650402,52.80681789767202],[-120.31786696761174,52.80682939894689],[-120.31808331851097,52.806884308097345],[-120.31828262104455,52.80695524459781],[-120.31844961032475,52.80704485875535],[-120.31858324609414,52.80716095204256],[-120.31859403489156,52.80730369825801],[-120.31844661638604,52.80740278452457],[-120.31821886627088,52.80743333328443],[-120.31798300345585,52.807412896491634],[-120.31789507575681,52.80740132743855],[-120.31776314854405,52.80738424182216],[-120.31752728621834,52.807363804112974],[-120.31730623998553,52.80734408481562],[-120.31706911107989,52.80733314539416],[-120.31684255232815,52.807354755260576],[-120.31661495032482,52.8073841838814],[-120.31638965824646,52.80739629367177],[-120.31615141226678,52.80739372563203],[-120.31592500175054,52.80741421669965],[-120.31569724977047,52.80744476056629],[-120.31546949746455,52.80747530399027],[-120.31524107355855,52.807510878055105],[-120.3150134696193,52.807540303567365],[-120.31478698385013,52.80756134648226],[-120.3145617642512,52.807572898718206],[-120.31432292114084,52.807574795065875],[-120.3141005336696,52.807565122953314],[-120.31386407579522,52.807549145981625],[-120.31362642544254,52.807542104721456],[-120.31340239833388,52.80754471854472],[-120.31316221348278,52.80755666573949],[-120.31293758986924,52.807563746767165],[-120.31271117690935,52.8075842316329],[-120.31247106560232,52.807595623369956],[-120.31224509960461,52.80761275627018],[-120.31201928254983,52.80762877171382],[-120.31179160179344,52.80765874501859],[-120.31156324900692,52.80769374894278],[-120.31134725030324,52.80774790736592],[-120.31113065565225,52.807806524533994],[-120.3109557483042,52.80788796970356],[-120.3107929714274,52.80799024066884],[-120.31058902732228,52.80806577778618],[-120.31040079353374,52.808135332189266],[-120.3101827026816,52.80820512671903],[-120.30999499034183,52.808270766431804],[-120.30977712250944,52.80833888020623],[-120.30958866181167,52.80841011328958],[-120.30938493796154,52.80848396829967],[-120.309181735016,52.808553917860685],[-120.30899275074829,52.80862905506914],[-120.3088170898935,52.808716082092246],[-120.30863956251567,52.80881707601902],[-120.30847752265618,52.80891375863064],[-120.3083013378846,52.809004689953554],[-120.30813914731627,52.80910248910197],[-120.30796161672818,52.80920348197814],[-120.30780024604628,52.80929513259483],[-120.3076232368117,52.8093922109269],[-120.30746126649609,52.80948833806046],[-120.30729914739057,52.809585573042426],[-120.30713635528316,52.80968783882426],[-120.30696001400275,52.80977989403807],[-120.30678389646265,52.809870268993734],[-120.30658008555935,52.80994468204034],[-120.30637888694632,52.809999542542236],[-120.30616212357191,52.81005927640477],[-120.30594551007718,52.810117883916725],[-120.30573061231429,52.810163649861494],[-120.30550216591313,52.81019920491047],[-120.30527394369354,52.81023307952962],[-120.30506106098869,52.810263760129544],[-120.30483194214415,52.810304335951635],[-120.30460364356965,52.81033877223836],[-120.30438881852074,52.810383972747005],[-120.30418686713222,52.81044442346039],[-120.30399659687762,52.81052904264418],[-120.30380684799492,52.81060975645209],[-120.30360243095238,52.81068863232787],[-120.30341342741733,52.81076376044918],[-120.30322375047434,52.810843919266155],[-120.30303340124759,52.810929099838745],[-120.30285719656501,52.81102002287112],[-120.30270912999349,52.811123566096036],[-120.30257431173614,52.81123955397442],[-120.30248267458444,52.81136719404909],[-120.30239081220269,52.81149651401926],[-120.30231301940391,52.8116321397145],[-120.30226456162076,52.81177144092581],[-120.30223151830063,52.81190699486818],[-120.30219765249142,52.812048696789006],[-120.30216393705062,52.81218927274538],[-120.3021301460905,52.81233041165016],[-120.30205294855193,52.812461569078586],[-120.30191961834487,52.81256638605323],[-120.30174138688983,52.81267239134933],[-120.30159338718657,52.81277537008611],[-120.30144538676933,52.81287834862945],[-120.30128197038896,52.812985074090506],[-120.30111974861993,52.81308286328781],[-120.30094420282529,52.81316876127421],[-120.30074021655821,52.81324428102542],[-120.30055074833962,52.813322755422206],[-120.30036157832343,52.813398995504464],[-120.30015706623506,52.8134784282073],[-120.29996804428635,52.8135535506457],[-120.29976472764827,52.813624037707],[-120.2995622318337,52.813688385374405],[-120.29934611343833,52.81374307553408],[-120.29913006863282,52.81379721126168],[-120.29891462243094,52.813846869652714],[-120.29869977251062,52.81389206858292],[-120.29847197365535,52.81392257889612],[-120.29823130022805,52.81393784648616],[-120.29800537030556,52.81395438893358],[-120.29777831821703,52.81397931290442],[-120.29753592408075,52.814007429021316],[-120.29732032543238,52.8140582014779],[-120.29724610066768,52.81416701563881],[-120.29731624121317,52.814311531802396],[-120.29743278131807,52.81444368218246],[-120.2976149485578,52.814531249972674],[-120.29781559725853,52.814592176828214],[-120.29803248559944,52.81464320870001],[-120.29825012200506,52.81468865517528],[-120.29846768472024,52.81473465527736],[-120.29869939270064,52.814786407171106],[-120.29891658206941,52.814835203404535],[-120.29911693508181,52.81489836202282],[-120.29929993046957,52.81497977920639],[-120.29946519287735,52.81508226093752],[-120.29961503988747,52.815188489316334],[-120.29977978011219,52.8152948845592],[-120.29991436187666,52.81540374244722],[-120.30006383806918,52.81551275826387],[-120.30022910437408,52.815615238884476],[-120.30041255212878,52.81569331223009],[-120.30062788053377,52.81575606331086],[-120.3008443298138,52.815810440952276],[-120.30106070432757,52.8158653811616],[-120.3012623361401,52.81591903709565],[-120.30147931065461,52.815969499586586],[-120.30171237379787,52.81601119247434],[-120.3019306187658,52.81605216407716],[-120.30214931238896,52.816089784264896],[-120.30238222743712,52.816132592822264],[-120.30260099597297,52.81616965813317],[-120.30282028836866,52.81620280905504],[-120.30305499737372,52.81623221223228],[-120.30327682995795,52.81624637323541],[-120.30351333204176,52.81626237144661],[-120.30373628581646,52.8162681495804],[-120.30397398311341,52.81627521082615],[-120.30421287535921,52.81627333554856],[-120.30443694883526,52.81627073928013],[-120.30467584103572,52.81626886306046],[-120.30489991446014,52.816266265908354],[-120.30513880661519,52.816264388746546],[-120.30536362663096,52.8162562056771],[-120.30560371328764,52.816245391515224],[-120.30582778653238,52.81624279259202],[-120.30606563334415,52.81624873259546],[-120.30628731770828,52.81626400491724],[-120.30652322382446,52.81628446509623],[-120.30696427886572,52.816332325695456],[-120.3074272448933,52.816327842356884],[-120.30788976303548,52.81632670822227],[-120.30835332590722,52.81631775319193],[-120.30881756075414,52.8163037653131],[-120.3092830631221,52.81628028546687],[-120.30974662519732,52.816271324934476],[-120.31021093308676,52.816256777507064],[-120.31068931355793,52.81624853302798],[-120.31113626601267,52.81625225145272],[-120.3116111402787,52.81627025751593],[-120.31206813901673,52.81631043646129],[-120.3125227523497,52.81636848587885],[-120.31297334040747,52.81645669297331],[-120.31337499974516,52.816576250712885],[-120.31375617607989,52.81673753439064],[-120.31410384038047,52.81692642070051],[-120.31442261481023,52.81710828238357],[-120.31476916752963,52.817305539841115],[-120.31489642869167,52.81735781031479],[-120.31499613864904,52.817393004053436],[-120.31509517732337,52.81743322875681],[-120.31517895080175,52.81747607634637],[-120.31527761775344,52.81751908897144],[-120.3153766569855,52.817559313434124],[-120.31547644294007,52.81759394378291],[-120.31557540859633,52.81763472211717],[-120.31567526882398,52.817668798254026],[-120.31577550126782,52.81770008622596],[-120.31587506369073,52.81773639622922],[-120.3159759677887,52.817762652974935],[-120.31609161755252,52.81779018270981],[-120.31619416146779,52.817804152055395],[-120.31631152493611,52.81781884031798],[-120.31642769612856,52.81784246462049],[-120.31652979315344,52.81785978473133],[-120.3166459645781,52.81788340881726],[-120.31674746564367,52.81790519681787],[-120.3168630411783,52.81793328876827],[-120.31697980910967,52.81795244444223],[-120.3170812353997,52.81797479513152],[-120.31719800354254,52.817993950587926],[-120.31729995221991,52.818012387047794],[-120.3174168695831,52.8180304252654],[-120.31753304196306,52.81805404847092],[-120.31763387392081,52.818080857828726],[-120.3177500465581,52.81810448081879],[-120.31785035664586,52.81813520403177],[-120.31795185892489,52.818156990987546],[-120.31806683992217,52.81818954983375],[-120.3181682673447,52.81821189958048],[-120.31828384464471,52.818239990126635],[-120.31838519839928,52.81826289372802],[-120.31850152093966,52.81828539894985],[-120.31860347087607,52.81830383427426],[-120.31871912380052,52.818331361411126],[-120.31881988207036,52.81835873272468],[-120.31893501325402,52.81839017369398],[-120.31903532486598,52.81842089588892],[-120.31911954997474,52.818460398507895],[-120.3192175533854,52.81850842992789],[-120.3193174185643,52.81854250294752],[-120.31941705985334,52.81857825588389],[-120.31951662742193,52.818614562778265],[-120.31961701505762,52.818644721492156],[-120.31971673191278,52.818679911192206],[-120.31981644893234,52.81871510080677],[-120.31991668686818,52.81874638522194],[-120.32003167095164,52.8187789421314],[-120.32013317587466,52.818800727192276],[-120.32024883113179,52.81882825281338],[-120.32035137890107,52.81884221851832],[-120.32046874665377,52.81885690261528],[-120.32049756671296,52.8188644876735],[-120.32058551872959,52.818876054691486],[-120.3207034824014,52.818886270456694],[-120.32080543472381,52.81890470386181],[-120.3209228028045,52.818919387504216],[-120.32104017096592,52.8189340710292],[-120.32114227247301,52.8189513871165],[-120.32125964079795,52.81896607042174],[-120.32137760487981,52.818976285508974],[-120.32149452660605,52.81899431965456],[-120.32159647952813,52.819012752371385],[-120.32171444381962,52.81902296711994],[-120.32183419505508,52.8190197774418],[-120.32195335065619,52.819021055744905],[-120.322057090658,52.81902608375174],[-120.3221762462834,52.81902736182854],[-120.32229540191592,52.81902863978436],[-120.32241396198712,52.81903438572499],[-120.32253371320233,52.819031195333395],[-120.32263812268984,52.81903120067533],[-120.32275727834688,52.81903247816247],[-120.32287643401108,52.81903375552869],[-120.32299320765088,52.81905290520795],[-120.32309575685767,52.81906686851381],[-120.32321253068643,52.81908601797443],[-120.32332870914627,52.81910963542877],[-120.32339737637673,52.819153993041816],[-120.323464033474,52.81921343495413],[-120.32353076459331,52.81927232278068],[-120.32359764594983,52.819330084603095],[-120.3236650479041,52.819383941256376],[-120.32373125915593,52.81944673409128],[-120.32376708591347,52.819513675901],[-120.32378801753525,52.81958046261841],[-120.32380850384008,52.81965059147618],[-120.32384410700882,52.819719213263284],[-120.32386504004273,52.81978599102197],[-120.32388612080779,52.81985166068251],[-120.32392179929231,52.81991971945526],[-120.32397222442678,52.81998905029878],[-120.32400849857929,52.8200526409286],[-120.32402824001376,52.820128363801075],[-120.32406451436809,52.82019195440783],[-120.32414726030689,52.82024261471483],[-120.32419880196765,52.82030357220714],[-120.32424974838078,52.82036899778544],[-120.32430129034056,52.82042995522774],[-120.32436854607334,52.82048492846678],[-120.3244506963739,52.820540065597726],[-120.32451862285919,52.82059000765348],[-120.32460181543925,52.820637325479616],[-120.32469938350259,52.820688703340124],[-120.32476730932468,52.820738654183394],[-120.32484946181935,52.82079378209013],[-120.32494911299709,52.820829530279504],[-120.32504764871514,52.82087365162853],[-120.32513143893549,52.82091649202101],[-120.32521463283123,52.82096380940299],[-120.32531383943305,52.821002899428265],[-120.32541356649351,52.82103808423619],[-120.32549735621335,52.821080933299164],[-120.32558010557604,52.82113159256737],[-120.32566270513006,52.821183377740766],[-120.32574590132539,52.821230685801936],[-120.3258445876033,52.82127368944172],[-120.3259277829858,52.821321006307514],[-120.32601112854934,52.82136719714737],[-120.32610899639442,52.82141634869012],[-120.32617692621449,52.82146628975834],[-120.32626012234078,52.821513606382624],[-120.32635992636851,52.82154822739245],[-120.32647365756316,52.82159027715321],[-120.32658872929966,52.821622264598076],[-120.32668801248984,52.821660799399],[-120.3267722510736,52.821700296445215],[-120.32687198096565,52.82173547999865],[-120.3269710420964,52.82177568563429],[-120.3270703259886,52.821814220108074],[-120.3271687911886,52.8218589026322],[-120.32725377567571,52.8218928052399],[-120.3273529113226,52.821932456502246],[-120.32745264223574,52.82196763955717],[-120.32755289340619,52.82199891738695],[-120.32766685071975,52.822039285965595],[-120.32775124090942,52.82207765633278],[-120.3278344399726,52.82212497182306],[-120.32790192666089,52.82217826296348],[-120.32798341597092,52.822238419734155],[-120.32805075307857,52.82229283675251],[-120.3281176452847,52.822350595887926],[-120.32818431394756,52.82241003499804],[-120.32825180033338,52.822463334863805],[-120.32831802310977,52.822526124987654],[-120.3283853622879,52.82258053286777],[-120.32846759677871,52.822635104129965],[-120.32853493512947,52.82268952085683],[-120.32861754247324,52.82274129496328],[-120.3287020086809,52.82277911058213],[-120.32880285762522,52.82280591920176],[-120.32892023918397,52.82282059481214],[-120.32903702589525,52.82283973843337],[-120.3291532177949,52.822863350066896],[-120.32926955854924,52.822885844552836],[-120.32937092922965,52.82290873860142],[-120.32948719645704,52.822931786919156],[-120.3295879724911,52.82295914890989],[-120.32970475988097,52.82297829186523],[-120.32980568487682,52.82300453663544],[-120.32992143152157,52.82303149860503],[-120.33002168699988,52.82306277430557],[-120.33010489168983,52.823110079220676],[-120.33018698069627,52.82316576629327],[-120.33023912932042,52.82322225288621],[-120.33027415100206,52.82329534069861],[-120.33030991749624,52.82336283439449],[-120.33033093618846,52.8234290567952],[-120.33035188000115,52.82349584217412],[-120.33037185792645,52.82356988379446],[-120.33037768391952,52.82363817706338],[-120.33036801841837,52.82371078421845],[-120.33035924508886,52.82377668917101],[-120.33033557497302,52.82384243987269],[-120.33028211359967,52.823907864188065],[-120.33022842841032,52.82397496849363],[-120.33017563529091,52.82403537057584],[-120.33010802012436,52.82409505537142],[-120.33004159445157,52.82414580386668],[-120.329959305702,52.82420365426927],[-120.32989243353956,52.82425775377318],[-120.3298112591542,52.824307230795284],[-120.32972956465822,52.82436061290308],[-120.32964794491356,52.82441343196824],[-120.32956743980088,52.82445787770616],[-120.32948626465817,52.82450735449731],[-120.32940464433182,52.824560173388406],[-120.32932369249684,52.8246079700488],[-120.32922784344152,52.82465561226421],[-120.32916149081237,52.82470579725964],[-120.3290790510525,52.82476476405539],[-120.32901277185356,52.82481439491607],[-120.32893048042041,52.82487224457278],[-120.32886353093939,52.824926906450926],[-120.32878242905669,52.824975819757235],[-120.3287006582149,52.82502975517331],[-120.3286337831627,52.825083853931666],[-120.32855268071846,52.82513276707445],[-120.3284715031158,52.82518224314255],[-120.32838988024295,52.825235061305385],[-120.32832359951222,52.825284691762036],[-120.32824130623817,52.82534254091833],[-120.32815953281985,52.82539648488102],[-120.32809325157059,52.82544611520257],[-120.3279972516811,52.82549486448047],[-120.32793052377896,52.82554784579345],[-120.32784934466558,52.82559732141833],[-120.32776764524633,52.82565070211688],[-120.3276858718291,52.825704636802826],[-120.32761884565376,52.82575985198803],[-120.32756664175707,52.825815784715516],[-120.32751302369448,52.8258823336514],[-120.32747497307089,52.82594400607858],[-120.32742128090672,52.826011109013024],[-120.32738248491228,52.826078375479774],[-120.32734368998581,52.82614563299461],[-120.3272906663193,52.82620771370495],[-120.32725187113061,52.82627497118395],[-120.32719817819927,52.82634207400204],[-120.32714530287102,52.826403037611676],[-120.32709309756703,52.82645897010554],[-120.3270260694401,52.82651418492569],[-120.32694369823184,52.8265725871723],[-120.32687726494042,52.82662333379671],[-120.32679511592887,52.82668006486327],[-120.3267280870692,52.82673527950545],[-120.32666113184489,52.82678994006246],[-120.32659350739937,52.826849622728716],[-120.32652647801258,52.82690483724985],[-120.32645885319673,52.82696451983414],[-120.32640597723174,52.827025474150396],[-120.32633894732615,52.827080688558276],[-120.32627191724713,52.8271359029259],[-120.32619013790335,52.827189845454996],[-120.32609442956652,52.82723635907223],[-120.3259997616198,52.82727506237105],[-120.3259059876697,52.82730705450689],[-120.32579657145293,52.82734447686819],[-120.32570264717212,52.8273775948012],[-120.32559345444878,52.82741333696654],[-120.3254988606709,52.82745147687685],[-120.32540367135046,52.827494084806446],[-120.32532330485228,52.827537410522574],[-120.32522811516489,52.82758001830749],[-120.32516346446711,52.82761735964383],[-120.32514692905316,52.82762949199958],[-120.3250652973854,52.827682307768434],[-120.32499826471364,52.82773752138774],[-120.32494538451401,52.827798483952286],[-120.32490658418317,52.82786574058773],[-120.32488290339886,52.82793149001775],[-120.32493385996665,52.827996914979025],[-120.3249853382832,52.8280584258662],[-120.32505171379046,52.82812010058369],[-120.3251032662569,52.82818105737084],[-120.32515526542808,52.828238663063125],[-120.32522089720631,52.828305922794016],[-120.32527304553827,52.828362411406275],[-120.32533979345945,52.82842129785885],[-120.32542211032903,52.82847530806989],[-120.32548878480547,52.82853474847719],[-120.32559076224432,52.82855317761252],[-120.32570830734534,52.82856673935638],[-120.32582570368496,52.82858141800629],[-120.3259436954377,52.8285916284425],[-120.32604805449554,52.828592184795895],[-120.32616619515855,52.82860127798442],[-120.32628478234456,52.82860701998081],[-120.32640322074135,52.82861387888183],[-120.3265029664854,52.82864906259273],[-120.32658677224222,52.828691910669086],[-120.32668540280918,52.82873546744059],[-120.32676920891885,52.82877831538437],[-120.32686724463285,52.828826340100434],[-120.32695053087185,52.82887309303168],[-120.32703433751797,52.82891594078244],[-120.32713237384647,52.82896396527286],[-120.32721618085363,52.82900681289141],[-120.32731473779619,52.829050932106306],[-120.32739914153453,52.82908930255415],[-120.3274807921272,52.82914834238166],[-120.32754813949691,52.82920275944714],[-120.3276002182044,52.82925980103819],[-120.32766600419698,52.829325942332886],[-120.32770221679971,52.8293900944214],[-120.3277379093445,52.82945815161791],[-120.32778887211212,52.8295235752763],[-120.32783983503599,52.82958899890979],[-120.32789198840243,52.82964548631256],[-120.32794295162995,52.82971090989622],[-120.32799391501375,52.82977633345499],[-120.3280459200307,52.82983393780834],[-120.32811230272266,52.82989561072574],[-120.32817980204645,52.829948901440964],[-120.32826242182134,52.83000068449263],[-120.32834519176227,52.830051341522186],[-120.32842840702943,52.83009865634975],[-120.32851117735741,52.83014931325914],[-120.3285948393075,52.83019327688739],[-120.32869347539399,52.8302368319305],[-120.3287773614457,52.830279115418634],[-120.3288758479644,52.83032379626876],[-120.32895966058265,52.83036663366947],[-120.32905837122608,52.830409634356066],[-120.32914158798266,52.830456948667326],[-120.32922540112918,52.83049978587479],[-120.32932403737767,52.830543349315874],[-120.32940725587953,52.83059065449865],[-120.3294905483446,52.830637405575644],[-120.32957384099213,52.83068415659215],[-120.32967195801716,52.83073162486258],[-120.3297556223047,52.830775587647466],[-120.32985426092185,52.8308191416993],[-120.32993874421408,52.83085695623272],[-120.33003782821824,52.83089716798202],[-120.3301381772215,52.83092788044348],[-120.33025327688372,52.830959864105346],[-120.33035407236748,52.83098722529776],[-120.33045501670398,52.83101346937519],[-120.33057123164342,52.83103707948177],[-120.33068759542898,52.83105957244486],[-120.33079017600583,52.83107352892221],[-120.33090817583671,52.83108373435402],[-120.33102558088888,52.83109840778186],[-120.3311429860218,52.83111308109212],[-120.33124437725081,52.831135973402525],[-120.33136126151682,52.83115456056363],[-120.33146265296149,52.83117745268494],[-120.331578868905,52.83120106179197],[-120.3316956797439,52.83122020266595],[-120.33179722021303,52.83124197746808],[-120.33191403126189,52.831261118124345],[-120.33201549819272,52.83128344678395],[-120.33213230945299,52.831302587222545],[-120.33224912081803,52.831321727544804],[-120.33234947241114,52.831352438108354],[-120.33245041883863,52.83137868046442],[-120.33256485184184,52.83141569295565],[-120.33266453428644,52.8314514343529],[-120.33274954224298,52.83148533277409],[-120.33283231920068,52.831535995529066],[-120.33289908370602,52.83159486862873],[-120.33298074670192,52.83165390453729],[-120.33304810503928,52.8317083183611],[-120.33311605936325,52.83175825508478],[-120.3332312372291,52.83178968176365],[-120.33333203658228,52.83181704038558],[-120.33343231520068,52.831848312997685],[-120.33353207429997,52.831883490665035],[-120.33363131390622,52.83192257338847],[-120.3337145386833,52.83196988441336],[-120.33381370374353,52.83200952996432],[-120.33391338981038,52.83204526135174],[-120.33401374430268,52.83207597047894],[-120.3341283291628,52.832111864398506],[-120.3341815343461,52.83216052969381],[-120.3341866981795,52.832233853509294],[-120.33416206376376,52.832306860864826],[-120.33412319894984,52.83237468333499],[-120.33407032604019,52.83243564982725],[-120.3340167109917,52.83250219251429],[-120.33397903486181,52.83256107867709],[-120.33393957497404,52.83263336920072],[-120.33393065668778,52.832700391074596],[-120.33395064513195,52.83277443164933],[-120.33395677419644,52.83284049921198],[-120.3339772835786,52.83291062569855],[-120.33399779183908,52.83298076111467],[-120.33400355000666,52.83304961677568],[-120.33400878855524,52.83312237757381],[-120.33401454675966,52.83319123322804],[-120.33402030498266,52.83326008887892],[-120.33402539375851,52.83333397563363],[-120.33403182148443,52.83339780017089],[-120.3340369852103,52.83347112393512],[-120.33404274350727,52.83353997957258],[-120.33404842690908,52.83360939819028],[-120.33405366560291,52.833682158960336],[-120.3340441527206,52.8337536489203],[-120.3340198881888,52.833823868066844],[-120.33396708825124,52.83388427147271],[-120.33390005735558,52.83393948995403],[-120.33383243170476,52.833999176515746],[-120.33376540045435,52.8340543949162],[-120.33368436176218,52.834102748339255],[-120.33360339661773,52.83415054765818],[-120.33350753090592,52.83419819307595],[-120.33341166616928,52.83424582947775],[-120.33333114642662,52.834290277516416],[-120.33326418780634,52.83434494157399],[-120.33319715527742,52.834400159637795],[-120.33312893325149,52.83446431389297],[-120.33307613126021,52.83452471687369],[-120.33300902446568,52.83458048887011],[-120.33295622216092,52.83464089179243],[-120.33290267634554,52.83470687983092],[-120.33284972505997,52.834768399728944],[-120.33281145061846,52.834831753545075],[-120.3327865887412,52.834906440501165],[-120.33275414543519,52.835038086943854],[-120.33270111859031,52.83510016974392],[-120.33266247252497,52.835166311599735],[-120.33260937164123,52.83522894839904],[-120.33257057544458,52.83529621618298],[-120.3325176978859,52.83535717292629],[-120.33247882767996,52.83542499472007],[-120.33244003109928,52.835492262452526],[-120.33240168165075,52.835556170151406],[-120.33236281107915,52.83562399189825],[-120.33233928616899,52.83568862547815],[-120.33230049031816,52.835755884217],[-120.33226154446254,52.835824268903174],[-120.33222274836582,52.83589152761055],[-120.33218439704343,52.8359554441584],[-120.33215953460343,52.836030121991975],[-120.33215076150799,52.836096026558735],[-120.33212656747187,52.836165682227666],[-120.3321177193538,52.8362321497675],[-120.33210812890484,52.836304193499245],[-120.33212856196968,52.83637488313476],[-120.33214906885644,52.83644501871852],[-120.33219997297894,52.836510994215196],[-120.33220632350968,52.83657538170413],[-120.33219636079467,52.83665022246097],[-120.33214400087536,52.836707273859844],[-120.33203463978083,52.8367441477636],[-120.33194010602202,52.83678172965377],[-120.3318454971482,52.83681987444799],[-120.3317509618653,52.83685746512039],[-120.33164160123587,52.83689432971844],[-120.33154706560839,52.836931920224934],[-120.33145253100408,52.83696950171825],[-120.33134368975846,52.83700246091691],[-120.33124915362896,52.83704005118105],[-120.33114053573111,52.837071330184834],[-120.33104652041715,52.837105006230296],[-120.33093790101556,52.837136293981644],[-120.33082920768204,52.837168135675775],[-120.33072177905444,52.837190478097234],[-120.33061368038535,52.837217851495254],[-120.330506771528,52.83723628860424],[-120.33039874638325,52.83726310775994],[-120.33029124232135,52.837286012766015],[-120.33018381311526,52.837308354693725],[-120.33007571380236,52.83733572759455],[-120.3299804320272,52.83737890194444],[-120.32988530000999,52.83742095025682],[-120.32980424933655,52.837469309834844],[-120.32970837311592,52.837516943114345],[-120.32962799211035,52.83756027149888],[-120.32954619702949,52.83761421600569],[-120.32947855946396,52.83767389992031],[-120.3294262696364,52.83773038709132],[-120.32937286325995,52.83779525636846],[-120.3293339108506,52.83786363999478],[-120.32929570339614,52.83792642956103],[-120.32927142867658,52.83799664753928],[-120.3292478239806,52.83806183444471],[-120.3292383770546,52.838132760836615],[-120.32921358198493,52.838206883900256],[-120.32918997708425,52.83827207078532],[-120.32918045502922,52.838343560141816],[-120.3291567750156,52.838409309993175],[-120.32911797167402,52.83847656756389],[-120.32907976216262,52.8385393659716],[-120.32901197369033,52.83860016660312],[-120.32895916075236,52.838660567573335],[-120.32890508353749,52.83873045872402],[-120.32885197270187,52.83879309368207],[-120.32881376251548,52.83885589199041],[-120.32877570220194,52.838917564327545],[-120.32872199575715,52.83898466730007],[-120.3286979432827,52.839053205114254],[-120.32865958383798,52.83911712038203],[-120.32862063026896,52.8391854947781],[-120.32858167538468,52.83925387809434],[-120.3285430191709,52.83932001841929],[-120.32848990706985,52.839382653190015],[-120.32845124940665,52.839448802415426],[-120.32841303923368,52.83951159163109],[-120.32841864046303,52.83958156429801],[-120.32846902114458,52.83965145531517],[-120.32852118764428,52.83970794207549],[-120.32860278511467,52.839767543700155],[-120.32867074707181,52.83981748273901],[-120.32875353535171,52.83986814809935],[-120.3288209024565,52.83992255512616],[-120.32887247456905,52.83998350979884],[-120.32889290403493,52.84005419983123],[-120.32886914882553,52.840120503594655],[-120.32883049108179,52.84018665291375],[-120.32879168560937,52.840253910300575],[-120.32875273002375,52.84032229362697],[-120.32871392430536,52.84038955098219],[-120.32867556368306,52.84045346620092],[-120.32863675772374,52.840520723525096],[-120.3286124804436,52.84059094125098],[-120.32858835307995,52.84066003301379],[-120.3285647458667,52.84072521967137],[-120.32853994812004,52.840799342470305],[-120.32850166186834,52.840862694638076],[-120.32846344931276,52.840925492749776],[-120.32840981485033,52.84099203251645],[-120.32837160204373,52.84105483059298],[-120.32834687877211,52.84112839035848],[-120.32832327093075,52.841193576947965],[-120.3282997368298,52.84125820948919],[-120.32828961735217,52.841334166708954],[-120.32829529362176,52.84140357632347],[-120.3283010437227,52.841472431893884],[-120.32832214203141,52.841538099846595],[-120.32832722311672,52.84161197752158],[-120.32834824772213,52.84167819950457],[-120.32836815568139,52.84175280358195],[-120.32835915292364,52.84182037868331],[-120.32834970249743,52.84189131377004],[-120.32832594542091,52.841957617345926],[-120.32831664491746,52.84202742647012],[-120.32829169716408,52.842102666172565],[-120.32828291684493,52.84216857019514],[-120.32824395869554,52.842236953269435],[-120.32822042508941,52.84230157681561],[-120.32816678732738,52.84236812534907],[-120.3281139685283,52.84242852579429],[-120.32804632132641,52.84248820870101],[-120.32797926924914,52.84254342349986],[-120.32791162167665,52.84260310632471],[-120.32785813307649,52.84266852875195],[-120.32780531346852,52.84272892904677],[-120.32775219604048,52.8427915633479],[-120.3276993011164,52.84285252656646],[-120.3276462583934,52.842914597838714],[-120.32759343818078,52.84297499802885],[-120.32752638475229,52.843030212552115],[-120.32745880960093,52.843089341057826],[-120.32737752273378,52.84313936984186],[-120.32730927798131,52.84320352035872],[-120.32725705233342,52.84325945232534],[-120.3271893287846,52.843319688746476],[-120.32713635857009,52.84338120573058],[-120.3270976213529,52.8434479083814],[-120.32704457582335,52.84350998829456],[-120.32700576451238,52.84357724494899],[-120.32695279371336,52.84363876184025],[-120.32691398094966,52.84370602739493],[-120.32686108488484,52.84376698126449],[-120.32680736932346,52.84383408315433],[-120.32676915161228,52.84389688059594],[-120.32670150020063,52.843956562672375],[-120.32663384859967,52.84401624470768],[-120.32656679229257,52.84407145864665],[-120.32649914032095,52.84413114060003],[-120.32643290306513,52.844180206415544],[-120.32633693296387,52.844228399714076],[-120.32625586533463,52.844276756633626],[-120.32617479871266,52.844325104559765],[-120.32607897687848,52.844372180630046],[-120.32599775979669,52.844421654379985],[-120.32591669260682,52.844470002123465],[-120.32583629464922,52.8445133277212],[-120.3257410675951,52.84455593546018],[-120.32563227643442,52.84458833516878],[-120.32553771965323,52.844625911718055],[-120.32542833254914,52.84466277928451],[-120.3253344449012,52.844695333582905],[-120.32522624990013,52.84472325592946],[-120.32513117067887,52.8447647461569],[-120.3250365380129,52.84480288527227],[-120.32494130951366,52.84484549235515],[-120.32484608082417,52.84488809935969],[-120.32476560593514,52.84493198718664],[-120.32467045193457,52.844974031072994],[-120.32457581839243,52.84501216981211],[-120.32448058896586,52.8450547765159],[-120.32438468856162,52.84510241415559],[-120.32430436291887,52.84514517571424],[-120.32419489954475,52.84518259615707],[-120.32410153050337,52.84521124439251],[-120.32399229079103,52.84524698466214],[-120.32389825181662,52.84528065481036],[-120.32380302111395,52.84532326095756],[-120.32369355684311,52.84536068092894],[-120.3235997402161,52.84539267978991],[-120.32349161619311,52.84542004649001],[-120.32338416294233,52.845442382082716],[-120.32327544280776,52.845474216617916],[-120.32318073183077,52.84551291719343],[-120.3231859534501,52.845585677895365],[-120.32320637617573,52.84565636866453],[-120.32327329726638,52.84571413863358],[-120.32335653865316,52.84576144764612],[-120.32345751364463,52.845787697490934],[-120.32357495660129,52.84580237822958],[-120.32369299544727,52.84581259081525],[-120.32381043855351,52.84582727131828],[-120.32391364817701,52.8458367656346],[-120.3239877949205,52.84584035577857],[-120.32403228297257,52.845842509842505],[-120.32415091780004,52.84584825393054],[-120.32427014840798,52.84584952986036],[-120.32437514540042,52.84584561965587],[-120.32449504560245,52.84584187328166],[-120.32461546762724,52.84583421278181],[-120.32473529390937,52.84583102019937],[-120.32484088650199,52.84582264153774],[-120.32496011705896,52.84582391676736],[-120.32507756063245,52.84583859600351],[-120.32519500428673,52.8458532751222],[-120.32529702299912,52.84587170430909],[-120.32541402009824,52.84588973424113],[-120.32551551842158,52.84591206830836],[-120.32563058000068,52.84594461916876],[-120.32573140792574,52.845971984067276],[-120.32584736320933,52.84599783264599],[-120.32594819139919,52.84602519735755],[-120.32604849800349,52.846056475991084],[-120.32617652934718,52.84610370225491],[-120.3262756452187,52.84614391678743],[-120.32637483631424,52.846183568261274],[-120.3264592731056,52.84622193896518],[-120.32655786903862,52.84626605833082],[-120.32665653901823,52.84630962357434],[-120.3267245091196,52.84635956353137],[-120.3267915111098,52.846416768496105],[-120.32682706757566,52.846485942242694],[-120.32689347441854,52.846547615194034],[-120.32694445630746,52.84661303850578],[-120.3269964804331,52.846670642705305],[-120.32700215411775,52.8467400610828],[-120.32699270153606,52.84681098690217],[-120.32696923735047,52.84687505597153],[-120.32694435822546,52.846949741117704],[-120.3269207450192,52.847014927184006],[-120.32689661128201,52.847084018316906],[-120.32684296544127,52.84715056604353],[-120.32678998997021,52.84721208272158],[-120.32672292884143,52.84726729663751],[-120.32665527201983,52.847326978559465],[-120.32657420005384,52.84737532666742],[-120.32649305286634,52.84742423769162],[-120.32639714938261,52.847471876902375],[-120.32630273577298,52.847508336987424],[-120.32620742745702,52.84755150799689],[-120.32611346019374,52.84758461689552],[-120.32601822656012,52.84762722477601],[-120.32590942777702,52.847659624678066],[-120.32581501333499,52.8476960843667],[-120.32572029972887,52.84773478693497],[-120.32561217112975,52.84776215554616],[-120.32550538259575,52.847779470969044],[-120.3253830944007,52.847801090523944],[-120.32527690134675,52.84781393770029],[-120.32515572924783,52.84782718391513],[-120.32505251453199,52.84781769070205],[-120.32493506551822,52.84780301145924],[-120.3248164251487,52.84779726817018],[-120.32469838054183,52.84778705672622],[-120.32457854876228,52.84779024926705],[-120.32447295124751,52.84779862768244],[-120.3243535662438,52.847798468968335],[-120.32423254284708,52.847810597222825],[-120.32412694521399,52.84781897532703],[-120.32400465501547,52.84784060238261],[-120.3239119509151,52.84786421941579],[-120.32380270424989,52.84789995944891],[-120.3236932333665,52.84793737935874],[-120.32359807041315,52.84797943123224],[-120.32351758959979,52.84802330918189],[-120.3234498520154,52.84808355220086],[-120.32339701946036,52.84814395030542],[-120.32330170797529,52.84818711000418],[-120.32320699099863,52.84822581053415],[-120.32311197709015,52.848266736063664],[-120.32301733484971,52.84830487346754],[-120.3229085320589,52.848337270576444],[-120.32281470948827,52.848369259813985],[-120.3227058324818,52.84840221076886],[-120.32259702920615,52.84843460758727],[-120.32248897192167,52.84846141034084],[-120.32239507366961,52.84849396221152],[-120.3222869410127,52.848521327748905],[-120.32217932912552,52.84854478813664],[-120.3220707491887,52.8485755044893],[-120.32196328724513,52.848597838737504],[-120.32185500503782,52.8486263208803],[-120.32174702071185,52.84865256891392],[-120.32163940819665,52.84867602880526],[-120.32153075362362,52.84870729869034],[-120.32142261987137,52.84873466342852],[-120.32132872020406,52.84876721444125],[-120.32121991495153,52.848799609976794],[-120.32112609009758,52.84883159785642],[-120.32101721060664,52.8488645472367],[-120.3209232352302,52.848897660892305],[-120.3208139834141,52.848933398122774],[-120.3207199338039,52.84896706564785],[-120.32061112757921,52.84899946061554],[-120.32051730182917,52.849031448004894],[-120.3204078251599,52.849068864826464],[-120.3202990184385,52.84910125950303],[-120.3202051922305,52.84913324664109],[-120.32009631125821,52.84916619516162],[-120.32000173825998,52.84920377608149],[-120.31989367739627,52.849230576434934],[-120.31979962640443,52.84926424321685],[-120.31969037151552,52.84929998833018],[-120.3195821611404,52.84932790539689],[-120.3194882587627,52.84936045492628],[-120.31937952573425,52.84939228577674],[-120.31927071740692,52.84942467949437],[-120.31917748604864,52.849452197802215],[-120.3190686034684,52.849485145363744],[-120.31895919831207,52.84952200679247],[-120.3188659665401,52.8495495248515],[-120.31875723256528,52.84958135512221],[-120.31864842328307,52.84961374825965],[-120.31855451956356,52.84964629703689],[-120.31844571115458,52.849678681049234],[-120.31833697653691,52.84971051092843],[-120.31824299721602,52.8497436224223],[-120.31813493387968,52.84977042114903],[-120.3180408803094,52.84980408651154],[-120.31793221903199,52.84983536198212],[-120.31782340966825,52.84986774541428],[-120.31772950476004,52.84990029352689],[-120.31762069388375,52.84993268570592],[-120.31751195800294,52.84996451481646],[-120.31741797867504,52.84999761670915],[-120.31732340147367,52.85003519545318],[-120.31721399459146,52.850072046308],[-120.31713357723572,52.85011536579514],[-120.31703832898242,52.850157966327735],[-120.3169424839621,52.850205034770696],[-120.31684723531771,52.850247635145976],[-120.31675191131174,52.85029079840918],[-120.31667156824676,52.85033355460774],[-120.31657624387101,52.85037671772611],[-120.31648106965262,52.85041875483355],[-120.3164005757226,52.850462636775696],[-120.31630525197743,52.8505057907347],[-120.31620992684604,52.85054895355116],[-120.31611490104956,52.85058987336136],[-120.31602024739871,52.850628005072295],[-120.31592559357864,52.850666136706046],[-120.31581610868601,52.85070354921008],[-120.3157209317958,52.85074559462898],[-120.31564043766039,52.850789467105365],[-120.31555942062344,52.85083725347586],[-120.31547758229097,52.850891187728855],[-120.31541109748267,52.85094192707865],[-120.3153440157609,52.850997134367866],[-120.31527574033888,52.85106127757276],[-120.31522281852163,52.85112222591621],[-120.31516997055338,52.85118262020422],[-120.31510214216087,52.851243412318],[-120.31504914467398,52.85130492354123],[-120.31499562424004,52.85137034868479],[-120.31492779530049,52.851431140690686],[-120.31487494653176,52.851491534834274],[-120.31482202360796,52.85155248298051],[-120.31476902533309,52.85161399406529],[-120.31471602690533,52.8516755051238],[-120.314647749453,52.851739647936185],[-120.31458066548859,52.85179485476154],[-120.3145135813505,52.85185006154669],[-120.31444590017661,52.85190973626302],[-120.31437881568338,52.85196494296729],[-120.31431128335814,52.852023500608944],[-120.31424494461879,52.85207312227005],[-120.31417726271509,52.8521327968232],[-120.31411017752333,52.85218800336619],[-120.31404249524877,52.8522476778373],[-120.31397481278483,52.852307352267204],[-120.3139225585045,52.85236327798119],[-120.31386881176259,52.85243037358725],[-120.31382989634496,52.85249818847015],[-120.31379098080357,52.85256600333729],[-120.31375273610458,52.85262879619502],[-120.31367096726622,52.85268216616466],[-120.31360395577228,52.85273680943585],[-120.31355087905108,52.852798882888415],[-120.31351263498374,52.8528616667229],[-120.31347304640859,52.85293451239622],[-120.31344888753843,52.853003600505865],[-120.3134106419434,52.85306639323494],[-120.31337165119,52.853134761966075],[-120.31331872288506,52.853195718307624],[-120.31326572040022,52.8532572286502],[-120.31319803524744,52.85331690259447],[-120.31313169320119,52.85336652358627],[-120.31304984813971,52.85342044712579],[-120.31296822616383,52.853472699589595],[-120.312886976546,52.85352216398866],[-120.31280520491156,52.85357553332562],[-120.31272335903623,52.85362945663055],[-120.31265701595154,52.85367907734454],[-120.31258873219527,52.853743218878925],[-120.3125216424143,52.8537984244586],[-120.31246863803098,52.85385993441815],[-120.31241555825977,52.85392200731377],[-120.31236270284721,52.853982400231935],[-120.31230917612667,52.85404781510478],[-120.31227085387435,52.85411116144755],[-120.31221777350261,52.854173234243966],[-120.31216424632031,52.85423864904285],[-120.31212592368122,52.85430199533072],[-120.31208707783044,52.854369255529804],[-120.31204823305143,52.85443650677733],[-120.31200923766716,52.854504883932925],[-120.31195630690902,52.85456583067199],[-120.31191798366712,52.85462917687891],[-120.31186430496551,52.85469571744587],[-120.31181137376345,52.85475666411222],[-120.31177245295179,52.8548244782137],[-120.31173360606768,52.854891738273714],[-120.31170996521651,52.85495692095279],[-120.31168580234471,52.85502600861148],[-120.31164680584038,52.855094385621264],[-120.3116226427884,52.855163473260866],[-120.31159915091875,52.855227538919564],[-120.31156000478825,52.85529703287867],[-120.31152115833308,52.855364283912444],[-120.31148231056099,52.85543154386635],[-120.31144406108773,52.85549432692277],[-120.31140506376761,52.85556270383203],[-120.31136606751691,52.855631071789546],[-120.31134190251161,52.85570016828387],[-120.31131766336975,52.85576981879537],[-120.31129394733748,52.85583555537968],[-120.31128454067586,52.855905925499286],[-120.31126089857615,52.855971108046134],[-120.31126617519939,52.856043314769074],[-120.31125646981852,52.856115918848836],[-120.31126219439388,52.85618477460808],[-120.31126724647744,52.85625866126771],[-120.31127364360006,52.856322486116746],[-120.31129345446661,52.85639764641699],[-120.3112992531992,52.85646594813732],[-120.31131973668613,52.856536077523316],[-120.31132531210632,52.85660605024669],[-120.31134579450887,52.85667618855788],[-120.31135159455768,52.85674448132768],[-120.31135672211651,52.856817804996695],[-120.3113630442028,52.85688219277891],[-120.31136809654372,52.856956079401634],[-120.3113733734703,52.85702828607478],[-120.31136434055995,52.85709585921649],[-120.31136991612652,52.85716583191309],[-120.31137579034058,52.85723357063589],[-120.3113808427452,52.85730745724165],[-120.31138604567668,52.85738021792279],[-120.31139236789065,52.85744460568047],[-120.31141210423307,52.85752032886781],[-120.31144846683398,52.85758335889493],[-120.31149943822061,52.85764878844979],[-120.31155160425705,52.8577052820994],[-120.31160257594763,52.857770711604445],[-120.31166890309255,52.85783295567946],[-120.31170511703128,52.857897102599765],[-120.31175608918666,52.857962532030385],[-120.31180765872271,52.85802349349545],[-120.311889865093,52.8580786380949],[-120.31197371519325,52.858121486860554],[-120.31205704231478,52.85816824948217],[-120.31213917523473,52.858223947926824],[-120.31222197960449,52.85827462434521],[-120.3122898025767,52.85832568925926],[-120.31237260732301,52.85837636556832],[-120.31245586133186,52.858423681924386],[-120.3125392636196,52.858469890170205],[-120.31263735156273,52.85851792585746],[-120.31272068018657,52.85856468799667],[-120.31280393375502,52.85861201303636],[-120.31288718870248,52.858659329079856],[-120.31297044264045,52.858706653998745],[-120.31305325012947,52.858757320880066],[-120.31313650444305,52.85880464567851],[-120.31320291066827,52.858866325885735],[-120.31328616655487,52.85891364163898],[-120.3133695707005,52.858959849281185],[-120.31343739613669,52.859010913510794],[-120.31351915872321,52.85906940789542],[-120.31355477943836,52.85913802214176],[-120.3135604329011,52.85920744061869],[-120.31350749852311,52.85926838787513],[-120.31339933284376,52.8592957450455],[-120.31329489881671,52.859295177462364],[-120.31317682514322,52.859284954516546],[-120.31306039358012,52.85926244460741],[-120.31295954236423,52.85923506906482],[-120.31285921316999,52.859203788453435],[-120.31276112459368,52.859155744036315],[-120.31267779477056,52.85910898194318],[-120.31259506228646,52.859057751847935],[-120.31251233000113,52.85900652169271],[-120.3124290007424,52.85895975941879],[-120.31234462660078,52.8589208159809],[-120.31224601611648,52.8588766850415],[-120.31214733058908,52.858833116978595],[-120.31206392801565,52.858786908465284],[-120.31198067373253,52.858739591842394],[-120.31188213929438,52.85869489763223],[-120.31179821410169,52.85865260284111],[-120.3117143631335,52.85860975396443],[-120.3116162772133,52.85856170857373],[-120.31153287455157,52.85851550861138],[-120.31144917463108,52.85847153362157],[-120.3113510140706,52.85842405096538],[-120.31126768722343,52.85837728785077],[-120.31118436055905,52.85833052467562],[-120.31110170544461,52.8582787394796],[-120.31101890239809,52.858228062271984],[-120.31091917431614,52.858192312048175],[-120.31083532633086,52.85814945359589],[-120.31075200058572,52.85810269010754],[-120.31065331837574,52.858059120768836],[-120.31055478690094,52.85801442542641],[-120.31047026700018,52.857976597603106],[-120.31037098799636,52.857937495957785],[-120.31027126233182,52.85790173624166],[-120.31016981873056,52.857878826214765],[-120.31005234713365,52.85786413218772],[-120.30993487561769,52.8578494380431],[-120.30981740418268,52.85783474378087],[-120.30969993282862,52.85782004940122],[-120.30959669737064,52.857810542669945],[-120.30947982362417,52.85779138013989],[-120.30936220313666,52.85777780240449],[-120.30926016283124,52.8577593595194],[-120.30914314000142,52.85774131363608],[-120.30902566913706,52.857726618581445],[-120.30890819835365,52.85771192340915],[-120.30880556086812,52.85769794805552],[-120.30868749269321,52.85768772058871],[-120.30857002213347,52.85767302507816],[-120.30845135651329,52.85766726529911],[-120.30833209334189,52.85766597332427],[-120.30822885856182,52.85765646539049],[-120.3081095954274,52.85765517318981],[-120.30799033230016,52.85765388086814],[-120.30787166681156,52.85764812050372],[-120.30776716159022,52.85764811096573],[-120.30764789849314,52.857646818296544],[-120.30752923307041,52.857641057586235],[-120.30740937232065,52.857644232594865],[-120.30730554010852,52.85763919176928],[-120.30718747245605,52.85762896279499],[-120.3070688071452,52.85762320161968],[-120.30694939470706,52.85762302522099],[-120.30683072944491,52.857617263805324],[-120.30672570186513,52.85762115830015],[-120.30660584111149,52.85762433248921],[-120.3064871758921,52.857618570726665],[-120.30636731512799,52.85762174467249],[-120.30624924774888,52.85761151475539],[-120.30614481794188,52.85761094081757],[-120.30602555499797,52.85760964650172],[-120.30590688989787,52.85760388415315],[-120.30578762698089,52.85760258959584],[-120.30566836407117,52.85760129491755],[-120.30556453216938,52.85759625255336],[-120.30544526928416,52.857594957648665],[-120.30531132275895,52.857591825270326],[-120.30508329521354,52.857622347561716],[-120.30485661272301,52.85764281662071],[-120.30462865992394,52.85767277507272],[-120.30440122945276,52.85769882813397],[-120.30417320068388,52.857729348657266],[-120.30394584379025,52.857754846816285],[-120.30371781439595,52.85778536645481],[-120.30348926194216,52.857819790593915],[-120.30327546693499,52.85785549787705],[-120.30304624024241,52.85789495200573],[-120.30281693775692,52.85793496864105],[-120.30260261879323,52.85797457963768],[-120.30237383949742,52.85801068153136],[-120.30216019215815,52.85804526980784],[-120.30193148629279,52.8580808168202],[-120.30170352909784,52.85811076958965],[-120.30147504746454,52.85814463578597],[-120.30124686463478,52.85817626759413],[-120.30101830689493,52.8582106958546],[-120.30080331109882,52.85825533440142],[-120.30058689424239,52.858310579307286],[-120.30038418748568,52.858374926556984],[-120.30018207856523,52.85843480557424],[-120.29996633267504,52.85848502743356],[-120.29973650104155,52.85852894296935],[-120.29952082836677,52.85857860999098],[-120.29930575492918,52.85862379980419],[-120.2990757722258,52.858668831012615],[-120.29886009807404,52.858718496817254],[-120.2986445742706,52.85876703632087],[-120.29842822625199,52.858821723217325],[-120.2982131492332,52.858866919959645],[-120.29798398785546,52.85890580123679],[-120.29776943441001,52.8589470833125],[-120.29754012131635,52.85898708962452],[-120.29732459465309,52.85903562669904],[-120.2971088423583,52.859085843293194],[-120.29689316380689,52.85913550547478],[-120.29667673741864,52.859190743148815],[-120.2964610578335,52.85924040453411],[-120.29624552866186,52.85928893962176],[-120.29603037271045,52.859334686370175],[-120.29581341954072,52.85939383628943],[-120.29561070043259,52.85945817526101],[-120.2954078309719,52.85952363084345],[-120.29520443617702,52.859592999911015],[-120.29500096644342,52.85966292263707],[-120.29479682273245,52.85973786687022],[-120.2946083351132,52.85980739364924],[-120.29440411453733,52.85988290014227],[-120.29421420218821,52.85996304188636],[-120.29402361571918,52.860048205176504],[-120.29383437654683,52.8601233155058],[-120.29364446325464,52.860203447381224],[-120.29330808638639,52.86037370353305],[-120.29318732157321,52.86049486671119],[-120.29306655607377,52.86061602975601],[-120.29294526495518,52.86074110649248],[-120.29282509732344,52.860857801433646],[-120.29269024476673,52.86097265731775],[-120.29254198126503,52.86107617547959],[-120.29235138648144,52.861161335997934],[-120.29216154009629,52.86124091141307],[-120.29197169300262,52.86132048651769],[-120.29178169535797,52.86140117826888],[-120.29157753646902,52.86147612576307],[-120.29138828665145,52.861551232085624],[-120.29119836240342,52.86163135993586],[-120.29100776245512,52.861716518245295],[-120.29083117120875,52.861808546168675],[-120.29065540410494,52.86189442609811],[-120.29046555129118,52.861973998736865],[-120.29027554788466,52.86205468801976],[-120.2900855437591,52.862135376991425],[-120.28989501488255,52.862219970523974],[-120.2896915239085,52.862289883941045],[-120.28947582051408,52.86233953240878],[-120.2892471566024,52.86237449169319],[-120.28901916754792,52.86240441977524],[-120.28879185223342,52.862429325594974],[-120.28857847160272,52.86246165517642],[-120.288336321189,52.862485837627],[-120.28810892947061,52.862511305068395],[-120.2878820629004,52.86253285827136],[-120.2876559458736,52.86254882627998],[-120.28743095398087,52.862556412253674],[-120.28719060198031,52.86256718893127],[-120.28695084975065,52.862573497316056],[-120.28672593199194,52.8625805279326],[-120.28650101415907,52.86258755811862],[-120.28626051175668,52.862599449843614],[-120.28603559374727,52.86260647913887],[-120.28579509110837,52.862618369911225],[-120.28556957288465,52.862629866109764],[-120.28534465460093,52.86263689408252],[-120.28510550179304,52.86263873090977],[-120.28488050777217,52.86264632093594],[-120.28464075475598,52.86265262460782],[-120.28441568615936,52.862660767749986],[-120.28417593299324,52.86266707047358],[-120.28394981386722,52.862683031350265],[-120.28372369457193,52.86269899179185],[-120.28348326639919,52.862710314891885],[-120.28325834734737,52.86271733887154],[-120.28301799338561,52.86272810701468],[-120.282792473833,52.862739597883426],[-120.28256740442441,52.86274773748558],[-120.2823262996425,52.862764088936764],[-120.28195093337547,52.86277951478567],[-120.28155607873732,52.86282884130553],[-120.2813286066812,52.86285484962635],[-120.28111409171034,52.86289554718601],[-120.28089702527112,52.862955223436806],[-120.28072123343487,52.86304108844596],[-120.280557647424,52.86314722763464],[-120.28042275458583,52.86326206927433],[-120.28031625477011,52.86338784734457],[-120.28023889770627,52.86351898614998],[-120.28016154016657,52.86365012489361],[-120.28006942178227,52.86377998601427],[-120.28003619312594,52.86391608320774],[-120.2800623785006,52.86405452063406],[-120.28005829342797,52.86419597868626],[-120.2800097776898,52.86433471203113],[-120.27997587207904,52.864475839858166],[-120.27992795761249,52.86461009644948],[-120.27982122711843,52.864737553841564],[-120.2797139697881,52.86486892488232],[-120.2795668626371,52.8649634909037],[-120.27933689939195,52.86500792929856],[-120.27911016529293,52.865028348595715],[-120.27886859570918,52.865048043745496],[-120.27864178667363,52.86506901613994],[-120.27841565273897,52.86508496634471],[-120.27818936842367,52.86510203305171],[-120.27794960061125,52.8651083230639],[-120.27772586978858,52.86510640094891],[-120.2774879046421,52.865099286778396],[-120.27726161987948,52.86511635169894],[-120.27703225437554,52.86515631783587],[-120.27681667319321,52.8652048171075],[-120.27660026452436,52.8652594635935],[-120.27638332879137,52.86531802341898],[-120.27618167979577,52.865373947153294],[-120.27596534398907,52.86542803846489],[-120.27575021104951,52.865473184969446],[-120.27550923852611,52.865488405473386],[-120.27527247393154,52.86547235134995],[-120.27510662349613,52.86537318965762],[-120.27510869555722,52.86524681495018],[-120.2752017339575,52.86511025623724],[-120.27526397364267,52.86498063058195],[-120.27539948694658,52.86486132725216],[-120.27551956326758,52.86474576736157],[-120.27565514964695,52.86462590972006],[-120.27576053985763,52.8645085085142],[-120.27583896438331,52.86436955419473],[-120.2758569967841,52.864235522006666],[-120.27567338516243,52.86415741270954],[-120.27545379152569,52.864124775029275],[-120.27523367282753,52.86409604174025],[-120.27499811839985,52.864071051575856],[-120.27477965355388,52.86403003116147],[-120.27456246730134,52.863979511937664],[-120.27434475488397,52.86393290604491],[-120.27412734356976,52.86388406588162],[-120.27389359479716,52.863845670303874],[-120.27367167468756,52.863830337277285],[-120.27343672396887,52.86380087624942],[-120.27321999028266,52.863747012676335],[-120.27301884475315,52.863688279558346],[-120.27280263898446,52.863630501482874],[-120.27260209478644,52.86356730885671],[-120.27238604055373,52.86350841307922],[-120.27216946124756,52.86345342169247],[-120.27195100228731,52.863412396004286],[-120.27173194224927,52.86337583763008],[-120.27149879994188,52.86333296955591],[-120.27128041683552,52.863291388620816],[-120.2710625611274,52.8632458935578],[-120.27084658644985,52.86318643200586],[-120.27066238571432,52.86311279148168],[-120.2704810445348,52.86301792008025],[-120.27031446273826,52.86292433611764],[-120.27014968664186,52.86281734876946],[-120.26999966986521,52.86271164894711],[-120.26986554224557,52.86259884634089],[-120.26973186540357,52.862482701723884],[-120.26962891183071,52.86236017927273],[-120.26954169434467,52.862231688977865],[-120.2694398695485,52.86210079384661],[-120.26936854142257,52.861965200869356],[-120.26926566475818,52.86184212406356],[-120.26910014328648,52.861740719812325],[-120.26891783294174,52.86165311041742],[-120.26871888409767,52.86157817887505],[-120.26851820515147,52.86151609612633],[-120.26831873165072,52.861445068678876],[-120.2681197089971,52.8613706990438],[-120.26793672575089,52.86128810981076],[-120.26777075817806,52.86119005443269],[-120.267620753023,52.86108435146522],[-120.26745644222905,52.86097400943664],[-120.26730591252924,52.86087221082833],[-120.26715591084832,52.86076649831093],[-120.26700688748599,52.86065353004273],[-120.26687277305261,52.86054073280986],[-120.26675394547053,52.86042530094528],[-120.26663624665883,52.86030149647535],[-120.26651854853054,52.860177691877944],[-120.26641553390195,52.86005572936434],[-120.26629776123838,52.85993248745719],[-120.2661641036759,52.85981632965128],[-120.26604603137913,52.859695321324665],[-120.26591177319125,52.859583630917164],[-120.26577766501927,52.859470832358255],[-120.26564401032041,52.859354673926866],[-120.26550990357669,52.859241875046166],[-120.26539221164286,52.85911806923781],[-120.26528980490653,52.858991637954645],[-120.26518739877739,52.85886520657225],[-120.2650855953846,52.858734307390286],[-120.26496662713848,52.8586199905119],[-120.26481724012815,52.85850981609421],[-120.26466777922084,52.85840019547366],[-120.2645023579168,52.858298221596364],[-120.26435124251519,52.85820088673013],[-120.26418649962999,52.85809389070252],[-120.26383804276611,52.85790989220235],[-120.2636716460665,52.857815181598525],[-120.26348974068412,52.85772476678844],[-120.26332274318223,52.8576345233746],[-120.26314151631321,52.85753908632649],[-120.26297497202428,52.85744549163743],[-120.2627930684911,52.85735508466316],[-120.26261063925988,52.85726858216459],[-120.26244417309275,52.8571744237781],[-120.26226189594242,52.857086803805444],[-120.26206335600652,52.8570090729414],[-120.26188055381343,52.856925357129015],[-120.26169699806144,52.85684723457345],[-120.26149981704857,52.856759441511215],[-120.26131754361208,52.85667182005073],[-120.26113504437987,52.85658587815263],[-120.26098447054467,52.856484625158366],[-120.26083502658656,52.856374999522835],[-120.26068558339674,52.85626537368959],[-120.26055262989867,52.85614418755453],[-120.26046507646377,52.85601847785517],[-120.26039303261415,52.85588847245129],[-120.26035238567457,52.855747070040444],[-120.26031113641945,52.855610135287385],[-120.26027049001664,52.85546873282328],[-120.26022924129369,52.855331798017446],[-120.26018859542768,52.855190395500045],[-120.26013191316854,52.855057202247394],[-120.2600760604411,52.85491786142116],[-120.2600195295466,52.85478355116988],[-120.25996307373156,52.85464868688697],[-120.25990699550864,52.85451102579425],[-120.25988110799946,52.85437090319797],[-120.25985499407777,52.8542324604336],[-120.25984438879588,52.85408972208951],[-120.25983303152559,52.85395255940478],[-120.25982182377588,52.85381428872051],[-120.25976589775966,52.85367551056581],[-120.25972510435396,52.85353522466168],[-120.25971389826903,52.85339694499524],[-120.25970314301323,52.853255323484966],[-120.25966204890686,52.853117271365875],[-120.25957548417897,52.852984296300875],[-120.25944133878804,52.85287204403378],[-120.25927602614979,52.85276950844964],[-120.25909377433301,52.852681883318446],[-120.25889367921417,52.85261587009246],[-120.25866158743936,52.85256572073979],[-120.25844214245187,52.852532488108096],[-120.25822330056623,52.85249478738324],[-120.25800679545021,52.85243976951554],[-120.25776950707898,52.852428147683014],[-120.25754192529287,52.85245522705429],[-120.25731404179034,52.85248453982335],[-120.25710015895243,52.85252072613795],[-120.25688401607884,52.85257365691073],[-120.25669459396192,52.852649824697785],[-120.25654491422762,52.852763359179704],[-120.25638191164595,52.85286498879336],[-120.25626166618234,52.852981646913484],[-120.25619848178613,52.85311796499025],[-120.256149826271,52.853257243440694],[-120.25608709335626,52.853390210681596],[-120.25602375704563,52.85352764554636],[-120.25596109811373,52.85366005870642],[-120.25586907958883,52.85378877581925],[-120.255806345017,52.853921742865516],[-120.25575768730437,52.85406102108265],[-120.25570902927393,52.85420029926738],[-120.2555882499232,52.854320870273796],[-120.25544067336084,52.85441875747051],[-120.25530498663781,52.85453915548581],[-120.25515597567738,52.85464765747556],[-120.25499364050252,52.85474426339146],[-120.25481647328444,52.85484014232704],[-120.2547224333833,52.85487320289035],[-120.25462718820154,52.85491518975722],[-120.25453179083057,52.854958302395225],[-120.25445062264014,52.85500660047365],[-120.25435530088957,52.85504915004124],[-120.25427413111996,52.85509745693024],[-120.25417888499607,52.85513944342774],[-120.25408348667032,52.85518255569568],[-120.25398884341062,52.85522007438317],[-120.25389352072224,52.85526262357038],[-120.25379880110664,52.85530070502713],[-120.25370347804842,52.855343254058006],[-120.25360883289129,52.85538078137091],[-120.25351403795054,52.85541941658391],[-120.25341878915275,52.855461411392014],[-120.2533241446895,52.85549892953752],[-120.25322889552714,52.85554092418962],[-120.25311941918498,52.85557771521618],[-120.25302605571213,52.85560574383516],[-120.25291786056536,52.855633045389965],[-120.25280958925525,52.855660909768055],[-120.25270214805904,52.85568262656602],[-120.25257980036231,52.85570417022119],[-120.25247281149602,52.85572253607533],[-120.25236521911825,52.85574536947532],[-120.25225838091391,52.85576261822293],[-120.25213663500051,52.855779702708176],[-120.25203024920911,52.855793600516385],[-120.2519079756847,52.85581458948302],[-120.25180174060168,52.85582737017389],[-120.25168059902002,52.855839977610394],[-120.25157376030178,52.85585722573449],[-120.25145269340402,52.855869278948546],[-120.2513463071663,52.85588317613684],[-120.2512252401306,52.85589522911631],[-120.25111885375402,52.855909126098446],[-120.25099778658036,52.855921178843396],[-120.25089215453544,52.855929491075194],[-120.25077108723988,52.85594154358645],[-120.25065115102588,52.8559452236267],[-120.25054491524084,52.855958003180206],[-120.2504230932337,52.85597563987443],[-120.25031746094187,52.85598395158934],[-120.25019639332933,52.85599600350805],[-120.25009008242749,52.85600933663631],[-120.24996901467864,52.856021388320585],[-120.24986338218501,52.85602969962696],[-120.24974231431429,52.856041751077534],[-120.24962185008627,52.85604933477481],[-120.24950183860824,52.85605356762764],[-120.24939560220892,52.85606634614126],[-120.24928861106294,52.85608470909202],[-120.24918048717468,52.85611145321152],[-120.24907168451337,52.8561432188421],[-120.24896280682104,52.85617553835681],[-120.24886883551574,52.85620803128665],[-120.2487599562966,52.85624035954723],[-120.24865183288985,52.85626709424249],[-120.2485571063632,52.85630517144965],[-120.24844837761928,52.856336382514],[-120.24835493453875,52.856364961393076],[-120.2482461306158,52.856396726254175],[-120.24813853427445,52.85641955577434],[-120.24803101269943,52.856441831210795],[-120.2479216044439,52.85647806338891],[-120.2478127250252,52.8565103818311],[-120.24771935602321,52.85653840621715],[-120.24761047508932,52.85657073340583],[-120.24751597403976,52.85660712994253],[-120.24740762183765,52.85663554331036],[-120.24729889141025,52.8566667533046],[-120.24719189785529,52.85668511433932],[-120.2470702233816,52.856701630645944],[-120.24696511774117,52.85670602571405],[-120.246845934063,52.85670411735237],[-120.24672780864464,52.85669438161412],[-120.24662579805765,52.85667588433584],[-120.24652710980047,52.8566328151091],[-120.24644393246986,52.85658545201191],[-120.2463613605917,52.856533612309086],[-120.24627863668928,52.856482898384215],[-120.24621134998,52.8564284356919],[-120.24612930665585,52.856372691129614],[-120.246061868081,52.856319354185636],[-120.24599518600061,52.856260423754335],[-120.24592797491273,52.856205406908536],[-120.24584510113523,52.85615580957021],[-120.2457619267006,52.85610843704094],[-120.2456787512425,52.8560610733865],[-120.24559557717741,52.85601370073654],[-120.24551285519405,52.85596298625593],[-120.24537564176966,52.8558736101671],[-120.24517547678757,52.855808136632696],[-120.24507588572808,52.855771767573145],[-120.24495897168715,52.85575309483908],[-120.24485575570704,52.85574353122399],[-120.24473770832668,52.85573323949623],[-120.24461966100333,52.85572294764986],[-120.24450161373692,52.85571265568474],[-120.24438175376224,52.855715766408494],[-120.24427672520348,52.855719605092],[-120.24415746947176,52.85571824798505],[-120.2440370051648,52.85572582595849],[-120.2439312211719,52.85573524883391],[-120.24380954814552,52.855751761774236],[-120.24370255538392,52.855770119642386],[-120.24358148650961,52.85578216474736],[-120.24347335980991,52.85580890362067],[-120.2433787058274,52.85584641374699],[-120.24328329500374,52.85588951722681],[-120.24320286778082,52.85593222301132],[-120.2431074565875,52.85597532634598],[-120.24301219751085,52.85601730376827],[-120.24291678593448,52.85606040694592],[-120.24283545138817,52.856109813865025],[-120.2427685698407,52.85616274571162],[-120.24268662927878,52.8562166290525],[-120.24260536911963,52.856265481826114],[-120.24252403382147,52.856314888523286],[-120.24244292440571,52.856362624283676],[-120.24236098304833,52.856416507390676],[-120.24227979830056,52.85646479701659],[-120.24219793270719,52.85651811709011],[-120.24213014297324,52.856577749942886],[-120.24206310868875,52.85663179826931],[-120.24199531858561,52.85669143103993],[-120.24192881230803,52.85674157461462],[-120.24183271851625,52.856789698459835],[-120.24175092791315,52.85684245529513],[-120.24166966548968,52.856891307402286],[-120.24158908241132,52.856935137886595],[-120.24150789580224,52.85698342696334],[-120.24141248054407,52.85702652889319],[-120.24131721745108,52.85706850491338],[-120.24122240641586,52.857107139103775],[-120.24112729410984,52.857147998072406],[-120.24103255890884,52.857186069192316],[-120.24092306661431,52.857222857752326],[-120.24084248335146,52.857266678780306],[-120.24074653831535,52.85731368482634],[-120.24065119773712,52.857356223214],[-120.24055646164857,52.85739429394514],[-120.24046172539086,52.857432364598935],[-120.24036706394689,52.85746988119594],[-120.24025832744981,52.8575010757239],[-120.2401641954117,52.857534678559105],[-120.24005530620786,52.85756699872688],[-120.2399614012484,52.85759892159021],[-120.23985183198002,52.85763626312164],[-120.2397565647794,52.85767824679565],[-120.23967590325559,52.857722629925235],[-120.23959395699859,52.857776502121176],[-120.23951223672807,52.85782870338639],[-120.23944572575736,52.85787884551955],[-120.23936385390618,52.85793216357096],[-120.23928190685241,52.8579860355422],[-120.23920018579838,52.85803823658347],[-120.2391342789726,52.858083910964666],[-120.23903765036444,52.858135937138265],[-120.23895713844135,52.85817920286962],[-120.23884817167314,52.85821207588405],[-120.23874003584498,52.858238810360625],[-120.23863242976813,52.858261631149674],[-120.2385236899835,52.85829282405685],[-120.23841668857159,52.858311177082584],[-120.2383096870676,52.85832953001072],[-120.23818800446317,52.85834603710302],[-120.23808115401151,52.85836327293182],[-120.23796060492805,52.85837140757609],[-120.23785375432092,52.858388643197884],[-120.2377325251138,52.85840179914693],[-120.23762567433833,52.85841903456102],[-120.23751874845493,52.85843682385514],[-120.23739767026393,52.85844886256843],[-120.237277197043,52.858456433598775],[-120.23717216109551,52.85846026592549],[-120.23696852544498,52.85853065111299],[-120.2367785874863,52.85861013716978],[-120.2365884975411,52.85869073980413],[-120.2363976504586,52.858776926567806],[-120.23622178628268,52.85886272522616],[-120.23603184545311,52.85894221005943],[-120.23582760163147,52.85901705186348],[-120.23562418866602,52.85908575489826],[-120.23541994223098,52.859160604922174],[-120.23524467976824,52.85924193455106],[-120.2350417950204,52.85930672299828],[-120.23482354686367,52.85937469538878],[-120.23466235829441,52.85946233783818],[-120.23455542914165,52.85959031742277],[-120.23453605820926,52.85973327872519],[-120.23454673151876,52.85987490194976],[-120.23458744815781,52.86001519602361],[-120.23464375454957,52.86015063494203],[-120.23472972701643,52.860287532393414],[-120.23481547243337,52.86042610956514],[-120.23487185636226,52.860560985429096],[-120.23492846703611,52.86069419039469],[-120.23489691147599,52.86081688138043],[-120.2346631418838,52.86088914565841],[-120.23444125130047,52.86087373853011],[-120.2342087655861,52.86082632888436],[-120.23402539510417,52.860747046419114],[-120.23384240430298,52.86066496698742],[-120.23366115547292,52.86057003864002],[-120.2334948154306,52.86047528547393],[-120.23331424874101,52.860375335072675],[-120.2331471533578,52.860286165818614],[-120.23296469544484,52.86020018037343],[-120.23276604426074,52.86012350811747],[-120.23252690334975,52.86012523795516],[-120.23233740419569,52.86020136610689],[-120.23218702751846,52.86031933653796],[-120.23209492286902,52.86044803448316],[-120.23203202806626,52.86058155117685],[-120.23199819437981,52.86072098567574],[-120.2319250794183,52.86092988729041],[-120.23187187363969,52.86099192348381],[-120.23183365340522,52.86105356348511],[-120.23177976658636,52.861120621127284],[-120.23172656035838,52.861182657247504],[-120.23168773407939,52.86124876471554],[-120.23164920930293,52.86131264734247],[-120.23162491313532,52.86138171821613],[-120.2315857824676,52.861450068337575],[-120.23156148611898,52.86151913919209],[-120.2315378704806,52.86158318854637],[-120.23149873948844,52.86165153863013],[-120.23145976100582,52.8617187628831],[-120.23140647845909,52.86178135280727],[-120.23135281658327,52.86184673937104],[-120.23129968514806,52.86190821236223],[-120.23124662988037,52.86196912241987],[-120.23119334670798,52.86203171223752],[-120.23115451761781,52.86209782842897],[-120.23110138558387,52.86215930132079],[-120.23104832972052,52.862220211279265],[-120.23099519738102,52.8622816841183],[-120.23094145913099,52.86234762444552],[-120.23087356806232,52.862407813490876],[-120.23082043523713,52.862469286243524],[-120.23075262013218,52.86252891230767],[-120.23070024421436,52.862584800610314],[-120.23063182296359,52.862648894112866],[-120.23057937162082,52.86270533632877],[-120.23049679727525,52.86276367845743],[-120.2304295870673,52.86281883681313],[-120.23036237668552,52.86287399512851],[-120.23029456029643,52.86293362091314],[-120.23022750101939,52.86298766227001],[-120.23014553270802,52.86304152769756],[-120.2300784730724,52.86309556896572],[-120.22999718536066,52.863144412807316],[-120.22991582112222,52.86319381949701],[-120.22983400349239,52.863246567823566],[-120.22975286668661,52.86329429461495],[-120.22965681952009,52.86334185433264],[-120.2295760616376,52.863386784340996],[-120.22949492427632,52.86343451095008],[-120.22939895285407,52.86348150754735],[-120.22931842105852,52.86352476652848],[-120.22922297884314,52.86356785838196],[-120.2291276891381,52.8636098243464],[-120.22903292886842,52.863647885636524],[-120.22893824357186,52.863685392879255],[-120.22882811936911,52.86372662858348],[-120.22873403972633,52.863759668160185],[-120.2286399611498,52.863792698725916],[-120.2285311235914,52.86382444518213],[-120.22842289191361,52.86385172403969],[-120.22831518978879,52.86387509820495],[-120.22820771542665,52.863896792492525],[-120.22808661910415,52.86390882157087],[-120.22797967547572,52.863926602123655],[-120.22785857900423,52.8639386309668],[-120.22775095272102,52.86396144170945],[-120.22764332632264,52.86398425235328],[-120.22753516883236,52.864010976421355],[-120.22741331430733,52.86402858917037],[-120.22730644526189,52.86404581514022],[-120.22720078847745,52.864054106031865],[-120.22707961625703,52.864066688040246],[-120.22695912533302,52.864074248465826],[-120.2268534684106,52.86408253904502],[-120.22673237117854,52.86409456672657],[-120.2266112738782,52.86410659428326],[-120.22650485899887,52.864120468907984],[-120.22639662527341,52.86414774589443],[-120.22628770874844,52.86418005316926],[-120.22619377891976,52.86421196489683],[-120.22608478689669,52.8642448259504],[-120.2259900976814,52.86428233080386],[-120.22589556109067,52.864318709774444],[-120.22578596223893,52.86435603803167],[-120.2256918788503,52.86438907516002],[-120.22559719018174,52.86442657075861],[-120.22550234854465,52.86446519208508],[-120.22540644680456,52.86451162248903],[-120.22532583260958,52.86455544160865],[-120.22522977887735,52.864602988735584],[-120.2251486343371,52.86465071230746],[-120.22506665520015,52.864704583071045],[-120.22498596509566,52.86474895591946],[-120.22490413838332,52.86480170076218],[-120.22482162862366,52.86485947592416],[-120.2247683324084,52.864922062714335],[-120.22474417343614,52.86499002407407],[-120.22472039402311,52.86505518878658],[-120.22471076725697,52.86512610548021],[-120.22468622965053,52.86519685452328],[-120.22467713283744,52.86526386663542],[-120.22466742953863,52.865335346217954],[-120.2246725606752,52.8654075563482],[-120.22466346379571,52.86547456845038],[-120.22465376042602,52.865546048022274],[-120.22464405702381,52.86561752759003],[-120.22464911174028,52.86569030061005],[-120.22463986314708,52.865758429566675],[-120.22464552555256,52.86582672617318],[-120.22466640104821,52.86589296562637],[-120.22471664269995,52.86596289990305],[-120.22476749097316,52.86602836668295],[-120.2248183394025,52.866093833438036],[-120.22486994604763,52.86615371582785],[-120.22490596002922,52.86621845201333],[-120.22495696050795,52.86628280183259],[-120.22500780953165,52.86634826849529],[-120.22504382388688,52.866413004630566],[-120.22509527962785,52.866474003777526],[-120.22514620428855,52.86653891640574],[-120.22518221901497,52.86660365249092],[-120.22520256571357,52.86667379638753],[-120.22522298767511,52.866743386310866],[-120.22521320854564,52.86681542877325],[-120.22518935363479,52.866881147472256],[-120.2251209172056,52.866945237592674],[-120.22503976808586,52.86699296101899],[-120.22493091967782,52.86702470407714],[-120.22482389050352,52.86704304462468],[-120.22470278429061,52.8670550701926],[-120.22459651305365,52.867067826196376],[-120.224475936789,52.867075946962935],[-120.22436905891875,52.86709317022884],[-120.2242478008036,52.867106312194316],[-120.22414031622722,52.86712800271841],[-120.22403336287877,52.867145779644176],[-120.2239104364638,52.867171206791014],[-120.22372035924343,52.86725123420793],[-120.2235153709727,52.86733108458344],[-120.22333944559304,52.86741686349875],[-120.22317706616477,52.86751286177054],[-120.22307068900585,52.86763636279397],[-120.22300783178007,52.86776931115184],[-120.22292907717326,52.86790934674696],[-120.22286629554567,52.868041732106725],[-120.22281751411981,52.868180995426364],[-120.22272604613974,52.868304663969205],[-120.22260505834076,52.86842575395042],[-120.22249882892979,52.8685481375217],[-120.22240607051849,52.86868129465761],[-120.2222984747014,52.868813729796],[-120.22217884947409,52.86892476753386],[-120.22198929273378,52.86900087857623],[-120.22177226423301,52.86905932851416],[-120.22160911526689,52.86916091776559],[-120.22147472797491,52.86927066092768],[-120.22135305055386,52.869396779890586],[-120.22126089359149,52.86952546860671],[-120.22119734458754,52.86966344618024],[-120.22116392342565,52.86979952617759],[-120.22117455362141,52.869941158650086],[-120.22121508414847,52.87008257332472],[-120.22125622182858,52.870219520530405],[-120.22123740835977,52.87035801123825],[-120.22118945405043,52.87049112647955],[-120.22112537294207,52.870633008473774],[-120.22104766896128,52.87076522453548],[-120.22095558337776,52.870893358938986],[-120.22084926782286,52.871016294791886],[-120.22072834226007,52.871136828672455],[-120.22060734074962,52.87125791638157],[-120.22048641503149,52.87137844106005],[-120.22036617089265,52.871493944208986],[-120.22024440857744,52.87162061580964],[-120.22013816442896,52.87174299700158],[-120.22003207264356,52.87186425229515],[-120.21992575200433,52.87198718723781],[-120.21981943075194,52.87211012207476],[-120.21969720974514,52.872240143631565],[-120.2195908107096,52.872363641138186],[-120.21948471582286,52.87248489589053],[-120.21940654804428,52.8726204612835],[-120.21931437702317,52.87274915714747],[-120.21917913708891,52.87286504461409],[-120.21907303978342,52.8729862989567],[-120.21899547693867,52.87311739661055],[-120.2189460698905,52.873261125300964],[-120.21889795215229,52.873395365154614],[-120.21877762272905,52.87351142049234],[-120.21864260601271,52.87362563647109],[-120.21850683075941,52.87374542762471],[-120.21840065283888,52.87386724418811],[-120.21827902971701,52.873992796709835],[-120.21817277401429,52.87411517594287],[-120.21805183330801,52.87423569790048],[-120.21790318947784,52.87434024676624],[-120.21769959920763,52.87440947206887],[-120.21746952060226,52.87445378913442],[-120.21725572212043,52.87448822266679],[-120.21701520990834,52.87449940970248],[-120.21679143262936,52.87449737160818],[-120.21655403275594,52.87448566670498],[-120.21631602555046,52.874478428727194],[-120.21609164092911,52.87448085670576],[-120.21586467436539,52.87450227071698],[-120.21563649250497,52.874532619092435],[-120.21541935057991,52.8745916199898],[-120.21522861675506,52.87467610070013],[-120.21503978153257,52.874746616011734],[-120.21482332187568,52.87480058551073],[-120.2146067851072,52.87485511750104],[-120.21439024778473,52.8749096490907],[-120.21418725556799,52.874974409826955],[-120.21399644223222,52.875059442474594],[-120.2138480906648,52.875161743528366],[-120.2136841397733,52.87526890562743],[-120.21350740214206,52.87536025363408],[-120.21335889640756,52.87546367089813],[-120.21319562751356,52.87556580201829],[-120.21304658785448,52.87567313230427],[-120.21288331741,52.875775262977236],[-120.21273480749993,52.87587868836083],[-120.21258584217887,52.87598545515143],[-120.21245133354894,52.87609575041576],[-120.21233029445148,52.876216829226884],[-120.21222340820927,52.876343670290446],[-120.21210229237684,52.87646530280288],[-120.21195377816775,52.87656872715508],[-120.21178997031062,52.876674760739114],[-120.21160096854884,52.876746387282274],[-120.21136538161639,52.876721269794814],[-120.2111464572337,52.876683481972904],[-120.21096290942853,52.87660528116173],[-120.21078103571024,52.87651478585633],[-120.21061514038122,52.87641665073405],[-120.21044985391954,52.876314048002165],[-120.21030054584722,52.87620380554282],[-120.21015055500723,52.87609858420854],[-120.21001654368683,52.87598571429019],[-120.20989835857625,52.87586632161753],[-120.20979607622536,52.87573984334848],[-120.20967842395832,52.875616545956696],[-120.20954487154344,52.875500324940646],[-120.20941147069013,52.87538299585756],[-120.20927731152342,52.8752712418876],[-120.20914330389964,52.87515837984994],[-120.20900929820192,52.87504550871687],[-120.20887590024596,52.874928178992505],[-120.20872645024897,52.874819042344846],[-120.20857646816665,52.87471381891082],[-120.20841012870176,52.874619031089665],[-120.20821221367572,52.87453674275962],[-120.20802822546521,52.87446187884911],[-120.20784590964341,52.874374738337806],[-120.20766351912953,52.8742881514918],[-120.20746576039414,52.87420473611305],[-120.20729988168692,52.874106596170485],[-120.20718117642497,52.873991114032684],[-120.20706361320859,52.873867251001464],[-120.2069453667956,52.87374840915405],[-120.20679554498835,52.87364206653753],[-120.20661376820863,52.87355101066458],[-120.20643138372165,52.87346442186218],[-120.206248466928,52.87338174617587],[-120.2060139666644,52.873348800038784],[-120.20579263015043,52.873328871587],[-120.20555645695384,52.87330820975919],[-120.2053190667904,52.87329648215946],[-120.20509651363078,52.873285487099174],[-120.2048572977821,52.873287160617686],[-120.20464281082312,52.87332659253663],[-120.20441386640256,52.873362503335706],[-120.20418454053859,52.87340121024622],[-120.20396936694057,52.87344567116419],[-120.20374065020927,52.87347990092814],[-120.20351368277407,52.873501291107104],[-120.20327750972697,52.8734806247031],[-120.2030578481106,52.87344840591784],[-120.20283894790084,52.87341060254875],[-120.20260582010172,52.87336759810242],[-120.20238912738141,52.8733136042635],[-120.2022051546764,52.87323873118216],[-120.20200680132919,52.8731597828359],[-120.2018256457956,52.873064252196976],[-120.20165925226486,52.87297000867543],[-120.20150921739919,52.872865338987424],[-120.20137539137328,52.872751342157336],[-120.20122589147361,52.87264275870988],[-120.20109252245844,52.872525419977244],[-120.20095839409268,52.87241365631411],[-120.20080958101872,52.8723000510334],[-120.20066031315324,52.87218978711939],[-120.2005099034172,52.87208790371893],[-120.20035995122429,52.87198266962251],[-120.20021060888477,52.87187296799897],[-120.20007656041531,52.87176064933503],[-120.19992767643737,52.87164759684005],[-120.19977727036508,52.8715457124676],[-120.1995691320251,52.87131954149876],[-120.19836402950924,52.870956358503825],[-120.19749264780539,52.87055570326119],[-120.19681321417401,52.86984296912915],[-120.1964531705147,52.869197755769086],[-120.19596653356436,52.86860474284256],[-120.19560123320875,52.868107682027755],[-120.19502518246479,52.86773230613001],[-120.19391009316242,52.86725771472156],[-120.19263662246203,52.866849477277164],[-120.19162539019983,52.86648962672554],[-120.19075961216973,52.86593964796982],[-120.19028419238614,52.86559339935719],[-120.18961422402081,52.864922124834145],[-120.18852414144756,52.86404674253874],[-120.1874205551773,52.86337982267376],[-120.186155521844,52.86269250876893],[-120.18461779211604,52.86192475845396],[-120.18333526531588,52.86125678963697],[-120.18198715299931,52.860413509044],[-120.18051077137429,52.85930749022414],[-120.17893523292544,52.85816278447559],[-120.17752817002233,52.85786073463595],[-120.17622770784965,52.85787091511526],[-120.17558737822712,52.85796728973118],[-120.1742330170867,52.857825791503586],[-120.17295443350828,52.85745810637779],[-120.1717572311076,52.85682345985377],[-120.17059726642802,52.85646220059233],[-120.16881250638855,52.85630205142659],[-120.16773395485575,52.85665431734459],[-120.1672501778233,52.85724249077404],[-120.16662476813639,52.85842799409702],[-120.16612929509127,52.859210115047865],[-120.16491676224767,52.86064750147244],[-120.1637468979167,52.861446641873876],[-120.16136919727808,52.86277652399305],[-120.15988668453116,52.863458874616796],[-120.15838654584115,52.86372540963486],[-120.1571248631098,52.86399537953415],[-120.15609003994102,52.86457068425537],[-120.15523792126018,52.86533780222359],[-120.15416050311288,52.866440007554985],[-120.1526560422527,52.86858405433791],[-120.15121605004937,52.87058401059423],[-120.15020274257616,52.87176134827239],[-120.14897734416684,52.87263405632304],[-120.1481905614669,52.87314127657074],[-120.14709528325966,52.873719121783125],[-120.1349396777323,52.876507162425675],[-120.13549258661033,52.87748103138881],[-120.1359455747684,52.87885469079408],[-120.13665824546464,52.88051232471764],[-120.13785424717925,52.88234926630599],[-120.13869055263727,52.88332770803692],[-120.14131569286015,52.8847704880479],[-120.1437414804113,52.88592607318498],[-120.14581037284735,52.88685295988595],[-120.14982621487314,52.88916042421994],[-120.15307627246156,52.89204069205163],[-120.15725868256816,52.89651331076293],[-120.1612397287914,52.900934671574085],[-120.16270093290196,52.90357321157164],[-120.16499857334205,52.90741591436758],[-120.16653387898785,52.9115872120535],[-120.16749617591847,52.915360081268844],[-120.17064722040432,52.919093756924816],[-120.1743860770838,52.92214362080175],[-120.17662883320699,52.92323755008589],[-120.1770904606114,52.923470137890476],[-120.1806816879196,52.92378250891051],[-120.18652615224094,52.924787060303785],[-120.18690540245512,52.925075675803576],[-120.18941067352364,52.927315104570525],[-120.19336626427331,52.92813755084759],[-120.19876150886579,52.92805675130887],[-120.20426293501352,52.927635779721726],[-120.20520676534976,52.927185403615255],[-120.21093032849019,52.92436456679762],[-120.21751735331073,52.92068712795092],[-120.22453173334137,52.91924693853725],[-120.23058289270777,52.91928075209569],[-120.23530991992138,52.9195961031566],[-120.24079160480107,52.919970202851395],[-120.24652890196613,52.92176976178433],[-120.24981234519129,52.92269957696943],[-120.25415721854039,52.92330067275709],[-120.25955127163479,52.92333117096378],[-120.26664346969267,52.922855800623346],[-120.27403476640254,52.92226755595138],[-120.27629937639706,52.92210645337745],[-120.28322073020483,52.921229980869406],[-120.29023016301818,52.92069691817159],[-120.29614896638438,52.921046931891915],[-120.29850197587582,52.921005495395455],[-120.29873680994208,52.92103825603949],[-120.29895903720565,52.921053541191924],[-120.29919731862113,52.921060611643576],[-120.29942134439099,52.92106249282049],[-120.29966269836903,52.92104666088957],[-120.29988852216216,52.92103513806746],[-120.30012680362898,52.92104220663732],[-120.30034963072252,52.9210530214584],[-120.3005861145089,52.921073492218234],[-120.3008084924358,52.9210876569512],[-120.30104557587325,52.921103659078504],[-120.30128385791555,52.92111072530545],[-120.30150788404113,52.92111260251054],[-120.3017455670453,52.921124135515065],[-120.3019838493183,52.92113120032468],[-120.302207426245,52.92113642698432],[-120.30244570866343,52.92114349085876],[-120.30267093314886,52.921136430415736],[-120.30290981468723,52.921139025632264],[-120.30313384103333,52.921140899742376],[-120.30337152463575,52.92115242946293],[-120.30359674901491,52.92114536724827],[-120.30383750176642,52.92113400341514],[-120.30406272597085,52.92112694030859],[-120.30430100864386,52.921134000426875],[-120.30452323840373,52.92114927507192],[-120.30476212012695,52.92115186652876],[-120.30500160070297,52.92114998977068],[-120.30522562719871,52.92115185989903],[-120.30546331142858,52.92116338539513],[-120.30568434425385,52.92118759331219],[-120.30592038230549,52.92121140415197],[-120.30614081693453,52.92124007894562],[-120.30637730454302,52.92126053806654],[-120.30660073302329,52.92126687331399],[-120.30683849369503,52.92127783309718],[-120.30705952789614,52.9213020384298],[-120.30729302336182,52.92134483441029],[-120.30751076606998,52.921393611470805],[-120.30772880854778,52.92144015425538],[-120.30794804854077,52.921477761146356],[-120.30816676463789,52.92151928137281],[-120.3083855565693,52.921560238255694],[-120.30861965323393,52.92159856385133],[-120.30883897023119,52.92163560614282],[-120.30907426452569,52.92166499533598],[-120.30929350686456,52.92170259971536],[-120.30951289918033,52.92173908674758],[-120.3097471474265,52.9217762931585],[-120.30996579262055,52.921818364035396],[-120.31018391414467,52.92186434825795],[-120.31040196195472,52.921910886076674],[-120.31062023518169,52.92195574361362],[-120.31083708748989,52.92201121613627],[-120.31102101305818,52.922089267676796],[-120.31120329548217,52.92217959632748],[-120.31138565285256,52.92226937068879],[-120.31155225797339,52.92236512684429],[-120.31173401873849,52.922459368415346],[-120.31190129767242,52.922550102302765],[-120.31208305999965,52.922644343324066],[-120.31224989303615,52.92273841859158],[-120.31243210548955,52.922829308241134],[-120.31259841612885,52.9229272967643],[-120.3127488249275,52.9230323842272],[-120.31286727970537,52.92315278682658],[-120.31298543614528,52.92327542318032],[-120.31308806373322,52.923402370745556],[-120.31319076728087,52.923528755272976],[-120.31335708239811,52.92362674268197],[-120.3135398989803,52.923713162801384],[-120.31372219369986,52.92380348746065],[-120.31393973152613,52.92385393243352],[-120.31416257683838,52.923864721083454],[-120.31440207225617,52.9238628252004],[-120.31462611343628,52.92386467743183],[-120.31486560883314,52.92386278060552],[-120.31509263904817,52.923842293084675],[-120.31531922071073,52.923825155957],[-120.31554752133277,52.923795169068015],[-120.31577529802178,52.92376909550888],[-120.31600367213751,52.92373855372962],[-120.31623070114252,52.92371806401195],[-120.31647266037696,52.923697738789954],[-120.31669909130683,52.92368171594982],[-120.31702041256429,52.92362699903186],[-120.3171023134444,52.92357362909453],[-120.31716950722573,52.923518423303136],[-120.31725133241615,52.92346561619958],[-120.31731852583381,52.92341041031946],[-120.31740050121539,52.92335647722649],[-120.31746754488096,52.923302388204384],[-120.31754884703957,52.92325348573343],[-120.31764425829034,52.92321088673168],[-120.31773966935019,52.923168287651464],[-120.31783508021914,52.92312568849276],[-120.31794332991016,52.92309889126965],[-120.31804911545062,52.923090519117174],[-120.31816736722443,52.92310073676115],[-120.31828442413997,52.92311988987076],[-120.31838557945206,52.92314614280533],[-120.31850091956079,52.92317813613493],[-120.31860088029353,52.92321332446975],[-120.31868479013733,52.92325672964896],[-120.31876825209518,52.92330348561282],[-120.31888351764556,52.92333604150647],[-120.31898422579981,52.92336564476904],[-120.31908403802774,52.92340194963813],[-120.31918332713167,52.92344216821098],[-120.31928276695741,52.92348126081447],[-120.31938213169987,52.92352091627534],[-120.31946731169589,52.92355483128855],[-120.31956712477918,52.92359113574374],[-120.31968261631064,52.923622010957224],[-120.31978183242693,52.923662783026685],[-120.31988254197857,52.92369238551468],[-120.31998355031413,52.92371975401634],[-120.32009948925888,52.92374728690455],[-120.3202028869262,52.923756784018444],[-120.3203205438141,52.92377146729507],[-120.32043820078317,52.923786150454006],[-120.32054040415962,52.92380458287363],[-120.32065746407756,52.92382373361486],[-120.32077452410081,52.923842884239264],[-120.32089173352797,52.92386091779627],[-120.32099281815721,52.9238877224858],[-120.32110928133496,52.92391134058036],[-120.32120924594457,52.92394652668399],[-120.32130921071939,52.923981712701966],[-120.32139424388622,52.92401674326227],[-120.32149308994963,52.92406030178988],[-120.3216089567546,52.92408838719333],[-120.32171116136335,52.924106818592975],[-120.3218288197386,52.92412150035877],[-120.32194603037927,52.924139532862775],[-120.32204883233386,52.924153496160656],[-120.32216649095456,52.92416817758842],[-120.32228310481369,52.92419067756518],[-120.32238471291714,52.92421357618836],[-120.32248520109688,52.924244856335825],[-120.32260106905846,52.924272940759515],[-120.32270267752921,52.92429583910698],[-120.32281988901987,52.92431387073876],[-120.32293695136319,52.92433301920688],[-120.323039157134,52.92435144945059],[-120.32315510096855,52.924378970382605],[-120.32325670999028,52.92440186825025],[-120.32337213118142,52.924433302772535],[-120.32347329275058,52.92445955131332],[-120.32357370829226,52.92449138453573],[-120.32369024856956,52.92451444605863],[-120.3237906644029,52.92454627909492],[-120.32389122960883,52.92457699509079],[-120.32400717460831,52.924604515179645],[-120.32410878462652,52.924627412308546],[-120.32422584841152,52.92464655949099],[-120.32434350914532,52.92466123873807],[-120.32446191599935,52.92467033309325],[-120.32456412323991,52.92468876200896],[-120.32468178420699,52.924703440917526],[-120.32478235042697,52.924734156148986],[-120.32489822123526,52.92476223830278],[-120.32499811577979,52.92479798411553],[-120.32509868245128,52.92482869907493],[-120.32519857851355,52.924864435780414],[-120.3252981011801,52.92490296925741],[-120.32539799639052,52.924938714727624],[-120.3254973702295,52.92497836499015],[-120.32558136576847,52.92502120225964],[-120.3256807399707,52.925060852365455],[-120.3257806358728,52.92509659750738],[-120.3258812038141,52.92512731179253],[-120.32599834495181,52.925145894260275],[-120.32610115066507,52.92515985401013],[-120.32621881346385,52.9251745313779],[-120.32633587970197,52.9251936764554],[-120.32643689574687,52.92522103939348],[-120.3265529181264,52.92524800295302],[-120.32665348698244,52.92527871657552],[-120.32675450343322,52.925306079239625],[-120.32686925789984,52.925342541090586],[-120.32696930579827,52.925377159324526],[-120.32705442157639,52.92541162281892],[-120.32716865519261,52.925451989259344],[-120.32726974635752,52.92547879746728],[-120.32737195675409,52.925497223935565],[-120.32748962092327,52.92551190003],[-120.32760728517354,52.92552657600661],[-120.32772614250665,52.92553231619852],[-120.32784440338341,52.925542524104486],[-120.32794840361504,52.92554754656944],[-120.32806785751781,52.925548818581724],[-120.32818790788022,52.92554562263692],[-120.32829369748418,52.9255372412894],[-120.32841449333264,52.92552846031798],[-120.32853573644296,52.9255163283444],[-120.3286416010526,52.925507383736516],[-120.32876403682077,52.92548631585107],[-120.32887176439809,52.92546341350719],[-120.32897889549156,52.925444978904515],[-120.32908587740312,52.92542766116423],[-120.3292071200351,52.925415528498306],[-120.32931298306039,52.92540659222169],[-120.32943422556765,52.925394459321666],[-120.32955487169909,52.92538679413979],[-120.32967372890448,52.925392532365606],[-120.3297777289855,52.92539755321467],[-120.32989375396158,52.925424513478134],[-120.32999544423097,52.9254468425652],[-120.33011072416716,52.92547938742043],[-120.33021293579458,52.92549781142167],[-120.33033060094456,52.925512484676],[-120.33044766996059,52.9255316256599],[-120.3305665276906,52.9255373629836],[-120.33067306204505,52.925523394687595],[-120.33078138486896,52.925496022747964],[-120.3308890362685,52.925473681506965],[-120.33099862625495,52.925436810718075],[-120.33110694864928,52.92540943847733],[-120.33120100986355,52.92537688120781],[-120.33129581608833,52.9253387390475],[-120.33140473415368,52.925306898678976],[-120.33151365205613,52.92527505820896],[-120.33162130251276,52.92525271629517],[-120.331729027962,52.92522981133293],[-120.33183667938333,52.925207460285854],[-120.33194425558894,52.92518567208983],[-120.33206639077757,52.925166834693066],[-120.33217396676297,52.92514504628656],[-120.33228102052736,52.925127171624766],[-120.33238859630274,52.92510538302157],[-120.33250998607384,52.9250921299865],[-120.33261763673708,52.925069778223225],[-120.3327388773434,52.92505764191675],[-120.33284585675224,52.9250403207549],[-120.33296709720963,52.92502818421306],[-120.33307303357005,52.92501868160201],[-120.33319442288094,52.92500542786039],[-120.33330080606514,52.924992574147154],[-120.3334226421521,52.92497596927251],[-120.33352842930995,52.92496758321726],[-120.33364914738254,52.924959359821585],[-120.33376859980504,52.92496062604881],[-120.33386902422471,52.924992450477795],[-120.33396788531397,52.92503599850219],[-120.33403598847349,52.925085940708314],[-120.33411835429801,52.92514105851542],[-120.33420131496071,52.925191717331515],[-120.33426941983475,52.92524165046207],[-120.33435230699371,52.92529286318416],[-120.33443459855795,52.92534854371419],[-120.33450203309935,52.925403507524535],[-120.33456954169179,52.92545791727872],[-120.33465205787003,52.92551191773268],[-120.33471949295094,52.925566881412905],[-120.3347865552595,52.92562464193863],[-120.33485406575767,52.9256790425865],[-120.33493695447136,52.9257302548831],[-120.33503589223744,52.925773247974824],[-120.33511915308814,52.92582167218954],[-120.33520271318014,52.92586785347294],[-120.3353015764747,52.92591140928939],[-120.33538498801492,52.92595870740847],[-120.33546906930145,52.926000983579655],[-120.33556897562622,52.926036720393135],[-120.3356848570926,52.92606479190539],[-120.33578603012751,52.92609102983699],[-120.33590250753574,52.92611463326131],[-120.33600360696379,52.92614142502131],[-120.33612008463051,52.9261650282296],[-120.33622066255326,52.92619573366005],[-120.3363218362295,52.92622197112896],[-120.33642114819015,52.92626217508935],[-120.336520014838,52.926305720936185],[-120.33660335346111,52.92635358113276],[-120.33670281488727,52.92639266788317],[-120.33678742005208,52.92643102924162],[-120.33688665909149,52.92647178682082],[-120.33698619609225,52.926510310376514],[-120.33708670041818,52.92654157801308],[-120.33718608888245,52.92658121836751],[-120.3372865947136,52.926612476896324],[-120.33738598352947,52.92665211708024],[-120.3374860418643,52.92668673528262],[-120.33758587765128,52.926723024386185],[-120.33768593750622,52.926757633481316],[-120.33780003594711,52.92679910654011],[-120.33798239414622,52.9268894023842],[-120.33811735246857,52.92699876284195],[-120.33822028783992,52.92712400827131],[-120.33829179550906,52.92726067087046],[-120.33836345368074,52.92739620750839],[-120.33840487463884,52.927534225624655],[-120.33844644471695,52.92767112674412],[-120.33847285921622,52.92780954562028],[-120.33848382028887,52.92795171620352],[-120.33847999702172,52.92809261659913],[-120.33847632377268,52.92823239107659],[-120.33847257547751,52.92837272849489],[-120.33846882715764,52.928513065900844],[-120.33844977381037,52.92865603804356],[-120.33844617424576,52.92879525845473],[-120.33844294620198,52.92893169089777],[-120.33845383363101,52.929074415403],[-120.33848024902498,52.92921283415837],[-120.33850644071173,52.929352932818055],[-120.33851807274095,52.92949007243391],[-120.33852895937379,52.929632805818976],[-120.33853954955781,52.92977776419312],[-120.33853624790578,52.9299147505733],[-120.33853242463584,52.93005565080103],[-120.33852882522315,52.930194871095395],[-120.33851036676096,52.9303333752255],[-120.33847719796552,52.930470046216115],[-120.338457623351,52.93061692311046],[-120.33843916447415,52.9307554271937],[-120.33843548967037,52.93089521037748],[-120.33843233646034,52.931031079692765],[-120.33841268640535,52.93117851948113],[-120.33837959166624,52.931314627421656],[-120.33833111567053,52.93145393302218],[-120.33829801926557,52.931590049852474],[-120.33827941057748,52.931729670795555],[-120.3383358439069,52.93186728778284],[-120.33842281618165,52.932000189273424],[-120.33852598724711,52.93212376306833],[-120.33866007038961,52.93223982435776],[-120.33879519508292,52.93234807564803],[-120.33894451098506,52.93246206476151],[-120.3391103998891,52.932563920155935],[-120.33927680995644,52.932661870389694],[-120.33944314577266,52.93276038333435],[-120.33961000389071,52.932854982180764],[-120.33977641624543,52.93295293169082],[-120.339942382873,52.93305423186588],[-120.34006109127156,52.93317348937934],[-120.34014903837787,52.93329913365978],[-120.34023601923883,52.933432033694295],[-120.34027700566926,52.93357340154751],[-120.34031799237192,52.933714769374276],[-120.34035957463819,52.93385166929986],[-120.340400561883,52.933993037073755],[-120.34044273997311,52.9341254690726],[-120.34049895964625,52.93426476474176],[-120.34057138073207,52.934394714611756],[-120.34064290816303,52.93453137517402],[-120.34071518132554,52.93466244190284],[-120.34078730492769,52.934794634481115],[-120.3408741420242,52.93492865089107],[-120.34096120228914,52.93506099624084],[-120.341049155952,52.935186639703964],[-120.3411678733981,52.93530589594579],[-120.34131668462295,52.93542379570235],[-120.34148363233977,52.93551782878686],[-120.34168364991287,52.935588165796574],[-120.34188530482723,52.93564621580041],[-120.34210241638694,52.935700513276785],[-120.34232004862855,52.935750905424435],[-120.34253656618662,52.93580966997588],[-120.34275301055403,52.93586898814432],[-120.34295422197108,52.93593038721822],[-120.34317126137041,52.935985245667226],[-120.34338785626613,52.93604344569147],[-120.34360541800505,52.93609438947007],[-120.34382327774469,52.936143098902136],[-120.3440414354517,52.93618957398616],[-120.34425966740459,52.93623549464652],[-120.3444784209546,52.93627750103044],[-120.34469851339477,52.93630945425459],[-120.34493391353094,52.936338771489304],[-120.34517057858196,52.936358589514],[-120.34539468684969,52.9363603831636],[-120.34563425115917,52.936358423744366],[-120.34585776469628,52.936364684406996],[-120.34609613956002,52.93637165983906],[-120.34633451450189,52.93637863478852],[-120.34655683889558,52.936393829919695],[-120.34679164612608,52.93642761133739],[-120.34699464990427,52.93647559978494],[-120.34721050807114,52.936539386571106],[-120.34740927699822,52.9366192036326],[-120.3475927381521,52.936701665215075],[-120.34777634984435,52.93678300059571],[-120.34794264771243,52.93688205530246],[-120.34812395649251,52.93698070772965],[-120.34829040456793,52.937078644956955],[-120.34845789376291,52.93716876310671],[-120.34865622092818,52.937251937897884],[-120.34885618478995,52.93732281666769],[-120.34905681745467,52.93738867316513],[-120.34925782165064,52.93745174134236],[-120.34947324355858,52.93751886593834],[-120.34967268937021,52.9375936571994],[-120.34985727410563,52.937667733402556],[-120.35003955586183,52.93775912694345],[-120.3502220618621,52.93784884026153],[-120.3503884444672,52.93794732849206],[-120.35055438094383,52.93804917635337],[-120.3507053825658,52.93815086338666],[-120.35087124690736,52.93825326481024],[-120.35102180433407,52.93835830236152],[-120.35117169459957,52.93846836165196],[-120.35130694575497,52.938576035209884],[-120.35145639069061,52.938689453996666],[-120.35157566756953,52.93880478559177],[-120.3517091383037,52.938925862417996],[-120.35181251326951,52.93904830706418],[-120.35193067749181,52.939172020088584],[-120.35203412855464,52.93929390156411],[-120.35215177483212,52.93942151930879],[-120.35223925008634,52.939551067972694],[-120.35232687559042,52.93967949064579],[-120.35238373560523,52.93981431224628],[-120.35244015158712,52.93995247581164],[-120.35249708718258,52.940086734377296],[-120.35253797221985,52.94022921436481],[-120.35257974868043,52.940364992447826],[-120.35262122835897,52.94050300446402],[-120.35266300535388,52.94063878249495],[-120.35268932561227,52.94077831405988],[-120.35271557118752,52.940918408564805],[-120.35274189179117,52.94105794009434],[-120.35279823572907,52.941196666340915],[-120.35288527222691,52.94132955638664],[-120.35295751977964,52.94146117801174],[-120.35306045894532,52.94158697231091],[-120.35314727369395,52.94172154206822],[-120.35325028890051,52.94184677322382],[-120.35336846507178,52.94197048459414],[-120.35347244742464,52.94208845070191],[-120.35357531597089,52.94221479852465],[-120.35366280129942,52.94234434591028],[-120.35378046089284,52.942471961790275],[-120.3538845192681,52.942589373476174],[-120.35400210536187,52.94271755207338],[-120.35410542248167,52.94284054844532],[-120.35422375238893,52.942963141902624],[-120.35434237995419,52.94308350127173],[-120.35452536330794,52.943169856688],[-120.35472536356131,52.94324073416953],[-120.35494141728734,52.943303380601975],[-120.35514431458289,52.94335247177672],[-120.35538035471619,52.943377300075134],[-120.35578064004869,52.943404396748555],[-120.35587993685252,52.943445137890315],[-120.35597886213624,52.94348867586975],[-120.35601521573577,52.94355280571281],[-120.35603640740815,52.94361846450748],[-120.35604154878683,52.943692336280584],[-120.35604676381249,52.94376565402729],[-120.35605324005215,52.94382948189414],[-120.35607324554428,52.943904067588285],[-120.35607905443314,52.943972917397694],[-120.35606955389535,52.94404440421879],[-120.35604593142827,52.94410959219582],[-120.35602164027964,52.944179811049715],[-120.35601228804762,52.94425018087586],[-120.35598799795082,52.944320390781],[-120.35596437520563,52.944385578730724],[-120.3559395647802,52.944459702522025],[-120.35591586706373,52.94452545341491],[-120.3559063661285,52.94459694019883],[-120.35589745897272,52.94466395905523],[-120.35588810642896,52.94473432885074],[-120.35586381585095,52.94480453870965],[-120.3558397472816,52.944873077557276],[-120.35580073939595,52.94494146539217],[-120.35576188103016,52.94500872729488],[-120.35572413538884,52.945067616296846],[-120.35565576992047,52.945131779205404],[-120.35560278777284,52.945192751099135],[-120.35553560963567,52.94524797809188],[-120.35549675057095,52.945315239894555],[-120.35545774172881,52.94538362759743],[-120.35543404394117,52.94544936942047],[-120.35540938044048,52.94552237607238],[-120.3553710399764,52.945585732861396],[-120.35534682170088,52.945655388555394],[-120.35532327087435,52.94572002230168],[-120.35529831008179,52.945795262877105],[-120.35528955019059,52.945861164659256],[-120.35527989943155,52.945933768313814],[-120.35527039711357,52.94600525498517],[-120.35524684716519,52.94606987976657],[-120.35522218298372,52.946142886351694],[-120.35518376684952,52.94620680601329],[-120.35514550026592,52.946269599745165],[-120.35509244232463,52.946331125388596],[-120.35503879030435,52.946397118920416],[-120.35498565721439,52.94645920746821],[-120.35493274729023,52.946519616054076],[-120.35486497224251,52.94657931053326],[-120.354782480501,52.946637173901934],[-120.3547294215766,52.94669869936813],[-120.35476592452532,52.94676171249351],[-120.35483289895245,52.94682057782573],[-120.35490061718636,52.94687384929113],[-120.35499999489139,52.946914037067735],[-120.35510004154594,52.94694919388897],[-120.35521599283796,52.94697724581335],[-120.35531656008041,52.94700848855682],[-120.35541883432394,52.94702689042668],[-120.35553493450851,52.947053825057054],[-120.35563720895544,52.94707222673681],[-120.3557533094019,52.94709916115115],[-120.35585499020223,52.947122030557445],[-120.35597213013918,52.947141145901035],[-120.35608874998975,52.947164175023964],[-120.35619161875697,52.94717810830312],[-120.3563087589995,52.94719722331128],[-120.35642827451211,52.947198466524966],[-120.35654838381004,52.9471952416974],[-120.35665244033798,52.94720023873379],[-120.35677195586906,52.94720148159868],[-120.35689028392216,52.94721166018583],[-120.35700742457088,52.9472307744986],[-120.35712456532484,52.94724988869466],[-120.35722639564926,52.94727163993407],[-120.35732755876136,52.947298413031376],[-120.35744291878704,52.947330930680785],[-120.35754356211609,52.94736161749317],[-120.35764420559028,52.94739230421888],[-120.35776023337986,52.947419799608],[-120.35786072873688,52.94745160312904],[-120.35796196628651,52.94747782165561],[-120.35806194310415,52.9475135299714],[-120.35817789788625,52.947541578969854],[-120.35827869064397,52.94757114816821],[-120.35837918674588,52.9476029512438],[-120.35847916302043,52.9476386681385],[-120.35857810189917,52.94768219488746],[-120.35866165558112,52.94772892185722],[-120.35874520944657,52.94777564876628],[-120.35882816994778,52.947826843544625],[-120.35891164940236,52.947874133292096],[-120.35901058927094,52.947917659671354],[-120.35909466262804,52.94796048135614],[-120.3591941216139,52.948000102607494],[-120.3592781965056,52.9480429152232],[-120.35937706236129,52.9480870042496],[-120.35947585364289,52.94813165615114],[-120.35956007744687,52.94817335157914],[-120.35964296492686,52.94822510873062],[-120.35971113651333,52.9482750264347],[-120.35980948349327,52.94832302900099],[-120.35989415308545,52.94836137323526],[-120.35999316867758,52.948404344752475],[-120.36007709562871,52.94844828270666],[-120.36017603802429,52.948491808091624],[-120.3602750542046,52.94853477936842],[-120.3603595751015,52.94857424918271],[-120.3604585180789,52.94861777432702],[-120.36054266904209,52.94866003199987],[-120.36064146287713,52.94870468290815],[-120.36072613397836,52.94874302653537],[-120.36082500296087,52.94878711432742],[-120.36088164795073,52.94881119032923],[-120.36096616995927,52.948850659701534],[-120.36106511419983,52.94889418432898],[-120.36116457720267,52.948933803893794],[-120.36124865473501,52.94897662401436],[-120.36134759955738,52.94902014840106],[-120.36144706311767,52.94905976772432],[-120.36153114118314,52.9491025876399],[-120.36163119837879,52.94913773886573],[-120.3617305889135,52.949177911971184],[-120.3618302015121,52.94921641398192],[-120.36193018447399,52.94925212791184],[-120.3620141898447,52.94929550150236],[-120.36211313619158,52.949339025237535],[-120.36219721547907,52.94938184467024],[-120.36229556900794,52.94942983619232],[-120.36237913020352,52.949476560474906],[-120.36246209839275,52.949527752640435],[-120.36253020063207,52.94957823163408],[-120.36262862854394,52.94962566884725],[-120.36271219048982,52.949672392887926],[-120.36279671590687,52.94971186092584],[-120.3628962571698,52.94975091604746],[-120.36299616873325,52.94978718308604],[-120.36311287437026,52.94980964225488],[-120.36321412076587,52.949835856228894],[-120.3633306783756,52.94985943216786],[-120.36343007101428,52.94989961275738],[-120.36349824972596,52.94994952821841],[-120.36356531597833,52.95000782550859],[-120.36361647819311,52.95007322869285],[-120.36363709176663,52.9501433538066],[-120.36365755832574,52.95021458696485],[-120.36369355798139,52.95028151110994],[-120.36371469131205,52.95034772227933],[-120.36372043871779,52.95041713440297],[-120.36374046074631,52.950491718495364],[-120.36374687600971,52.950556099703185],[-120.3637371638894,52.95062926680449],[-120.36372782299956,52.95069963696709],[-120.3637190016128,52.95076609320483],[-120.36369405270601,52.950841335328555],[-120.36367058641693,52.95090540757888],[-120.36364645224278,52.950974510728784],[-120.36362217090407,52.9510447219213],[-120.36361327455126,52.95111174109827],[-120.36360378507737,52.95118322821668],[-120.36360908759494,52.951255991269065],[-120.36361490968093,52.951324840398534],[-120.36362065824208,52.95139424354998],[-120.36362648036572,52.95146309267323],[-120.36363163468317,52.951536972698165],[-120.36365299154428,52.951601503881264],[-120.36365807238086,52.95167593792395],[-120.36366396814734,52.95174423300849],[-120.36368443552145,52.951815466092846],[-120.3637203618444,52.95188295312559],[-120.36375688255521,52.951945963265246],[-120.36379273556072,52.95201400429554],[-120.36379796496234,52.95208732132768],[-120.36384972311595,52.952148256384895],[-120.3639018514973,52.95220640342037],[-120.36396847705748,52.95226805135856],[-120.36403562233457,52.95232578533794],[-120.36410313786169,52.952380731279966],[-120.36418618732613,52.95243136811564],[-120.364269089914,52.95248311294139],[-120.3643360864935,52.95254197266396],[-120.36437260868179,52.95260498258745],[-120.36443960559637,52.952663842246864],[-120.36452280545437,52.952713352914294],[-120.36459024750613,52.952768861525264],[-120.36467329949384,52.952819489069554],[-120.36475627696178,52.952870679515],[-120.36483984761692,52.95291740195409],[-120.3649239367195,52.95296021934725],[-120.36502274632258,52.95300485752763],[-120.36512237085954,52.95304335666436],[-120.36520631225754,52.95308729083938],[-120.36530527068734,52.95313081179257],[-120.36537286265542,52.953185202954295],[-120.36547122855777,52.953233191713565],[-120.36557144695077,52.95326722251649],[-120.36567136905134,52.953303487208245],[-120.36575545975371,52.95334630399764],[-120.36583792136567,52.953401398652666],[-120.36589027692405,52.9534578648147],[-120.36594144686114,52.95352326685201],[-120.36599261695555,52.95358866886452],[-120.36602899309149,52.95365280415779],[-120.36607957060778,52.953722674077476],[-120.36611602169042,52.953786246377014],[-120.36615239936701,52.9538503726887],[-120.3662037183936,52.9539146576089],[-120.36623957697093,52.95398269781312],[-120.3662600485482,52.95405393928901],[-120.36628126244595,52.95411958688461],[-120.36628634818119,52.95419402070018],[-120.36630756100367,52.954259677221266],[-120.36632862686459,52.95432644178755],[-120.36634924696878,52.95439656624572],[-120.36638518088367,52.954464043424025],[-120.36640513478923,52.95453918984199],[-120.36642619975599,52.954605963315416],[-120.36644741418533,52.95467161085903],[-120.36646788644208,52.95474285226916],[-120.3664885081633,52.954812967749405],[-120.36649418718521,52.95488293357531],[-120.36651480783196,52.954953057980845],[-120.36652078333599,52.95502078982514],[-120.36651122436301,52.955092831033916],[-120.36651705167029,52.955161679859756],[-120.36650756617209,52.95523316703657],[-120.36649808064199,52.955304654209414],[-120.36648933614072,52.95537055644349],[-120.36646498228524,52.95544133099631],[-120.36644070186284,52.95551155151552],[-120.36643136437272,52.955581921684185],[-120.36640782607653,52.955646548321155],[-120.36638302727913,52.95572067380515],[-120.36634461926495,52.95578459673516],[-120.36632033963375,52.95585480827911],[-120.3662962816582,52.95592334880349],[-120.3662725935622,52.95598910132226],[-120.36624838721296,52.95605875881752],[-120.36623897576688,52.95612968297277],[-120.36620004898087,52.95619751082339],[-120.3661617149661,52.9562608707144],[-120.36612286145655,52.95632814450903],[-120.36608386078362,52.95639652633801],[-120.36606039502954,52.956460598848764],[-120.36603626158573,52.956529702255594],[-120.3660119810204,52.95659991370436],[-120.3659730534423,52.95666774146059],[-120.36596364021666,52.95673867450356],[-120.36593987762976,52.95680498094772],[-120.36591515205099,52.95687854332055],[-120.36590625809035,52.956945562433795],[-120.36588205059712,52.95701521981339],[-120.36585791654905,52.95708432316058],[-120.36584842951461,52.9571558102009],[-120.36585492368337,52.95721962807344],[-120.36589011684015,52.957292699147835],[-120.36592597776313,52.95736073930828],[-120.3659936519541,52.95741456701409],[-120.36607775229243,52.957457374530975],[-120.36617560947734,52.95750927649329],[-120.36625911609713,52.95755656075448],[-120.36634277231207,52.95760271903411],[-120.36642613107935,52.95765112015954],[-120.36651023232045,52.957693927361504],[-120.36661046205246,52.95772795718843],[-120.36672585745252,52.95776046553872],[-120.36682764314351,52.957782771298085],[-120.36694303885822,52.95781527943445],[-120.36704430666558,52.95784148998855],[-120.36714490827431,52.957872722424824],[-120.3672454353374,52.95790451773555],[-120.36734507335922,52.95794301487797],[-120.36744448867438,52.957983191882704],[-120.3675446463311,52.9580177749341],[-120.36764398850661,52.958058505793986],[-120.36772816528024,52.95810075809054],[-120.36779599111603,52.958153467750044],[-120.36786233526045,52.95821734723681],[-120.36791410669315,52.958278280281576],[-120.36801942819342,52.95838674245371],[-120.36813835946965,52.958505415783264],[-120.36825714441781,52.9586251970356],[-120.36837541083192,52.958748892081985],[-120.36849427062046,52.95886811905192],[-120.36861305639806,52.95898790885478],[-120.3687473062768,52.9591039339691],[-120.36888200019062,52.95921661689592],[-120.3690320836333,52.9593260980257],[-120.36918327960767,52.95942719708184],[-120.36934867876671,52.959534039099346],[-120.3694989126782,52.95964240262564],[-120.36963405472218,52.959751733692464],[-120.3697681616542,52.9598688745776],[-120.36991839781668,52.95997723754696],[-120.3700684119501,52.96008728026809],[-120.3702195384346,52.960188940909724],[-120.37038627630041,52.960285728525974],[-120.37053681175618,52.960391856702365],[-120.37070288519472,52.96049366583945],[-120.3708694772393,52.96059156974271],[-120.37103643973633,52.96068668539972],[-120.37120318141163,52.96078347183059],[-120.37136918332975,52.96088584296674],[-120.3715197980034,52.96099140688599],[-120.37167033878417,52.9610975335686],[-120.37183649114402,52.961198787037254],[-120.37198718153716,52.961303796312066],[-120.37213720570006,52.9614138363105],[-120.37228834184108,52.96151549421655],[-120.37245434922714,52.961617863778365],[-120.37262154199792,52.96171129717656],[-120.37280412493006,52.961801528208895],[-120.37298767046181,52.96188450298131],[-120.3731855685673,52.96197210316331],[-120.37338568948734,52.962042939204984],[-120.37360223570995,52.96210276267317],[-120.37383779847725,52.96213202165647],[-120.3740374089568,52.96209380564985],[-120.37421482851136,52.96199719050272],[-120.37437907833254,52.9618870225258],[-120.37456936797389,52.96180620231148],[-120.37478606713002,52.961751941723016],[-120.37501637883187,52.96170788224265],[-120.37524365656303,52.961686716214544],[-120.37546730751745,52.961692920569114],[-120.37570227732867,52.96172664380741],[-120.37592119298789,52.96176859111646],[-120.37615586761542,52.9618045474375],[-120.37637360032168,52.96185542986202],[-120.37659140694177,52.96190575785287],[-120.37680928865109,52.96195552247374],[-120.3770282811508,52.961996904754116],[-120.37724779131976,52.96203438160818],[-120.37746789366427,52.96206739006739],[-120.37770419859953,52.962091056338885],[-120.37793976412296,52.96212030712027],[-120.37816045916611,52.96214884629658],[-120.37838130242898,52.96217626806161],[-120.37861746055975,52.962201049497075],[-120.37885302732023,52.962230298450315],[-120.37907372354671,52.96225883591388],[-120.37929390182772,52.96229128692594],[-120.37952887797725,52.96232500251972],[-120.37974839204213,52.962362474707064],[-120.37996731496294,52.96240441448119],[-120.3801858692141,52.96244914187804],[-120.38040361003974,52.96250001683436],[-120.38062164711828,52.9625486573869],[-120.3808387975324,52.962603999535304],[-120.38105498686237,52.96266660625198],[-120.38125571555281,52.96273296089351],[-120.3814399463009,52.96281090041561],[-120.3816378673033,52.962898477413425],[-120.38182084345345,52.962985906371614],[-120.38200507633243,52.963063844998146],[-120.38218827628043,52.96314959340707],[-120.38238782525933,52.96322489104754],[-120.38258914993106,52.9632867753882],[-120.38280475406113,52.96335384687545],[-120.38300600545526,52.96341629346804],[-120.38322279448934,52.963474419230764],[-120.38342404706762,52.9635368651047],[-120.38363965378167,52.96360393505391],[-120.38384039092688,52.963670285253855],[-120.38405769903409,52.963724504428406],[-120.38427670650901,52.96376588212628],[-120.38449623219144,52.96380334543429],[-120.38473122081624,52.96383705062082],[-120.38495192932172,52.9638655770447],[-120.38518765740555,52.96389369629755],[-120.38540777553052,52.96392668988528],[-120.38564453842754,52.96394698918812],[-120.38586709537253,52.96396154686203],[-120.386105040499,52.96397290919483],[-120.3863281141705,52.96398356094535],[-120.38656724126274,52.96398598629588],[-120.38680577754764,52.96399287918767],[-120.38702885149932,52.96400352961119],[-120.3872673879574,52.96401042156836],[-120.38751998322054,52.96402417100515],[-120.38796506881243,52.96394031409972],[-120.38841103746438,52.96384976239192],[-120.38885685774483,52.96376031706439],[-120.38929038777822,52.96365061710931],[-120.38970904409207,52.96354020587659],[-120.39012946966581,52.96341638901405],[-120.39054871192843,52.96330150673659],[-120.39096979629274,52.96317266477178],[-120.391363645569,52.96302340420236],[-120.39172988876732,52.96285653123416],[-120.39211100031818,52.96269036648481],[-120.3924778279359,52.96251902310069],[-120.39283125692747,52.962335799121455],[-120.3931974884486,52.962168921521666],[-120.39360427264864,52.962034892751326],[-120.39403954299276,52.96191177100689],[-120.39445757986572,52.96180581085302],[-120.39490469340288,52.9617062893692],[-120.39534981333168,52.961621850406935],[-120.39578072360933,52.96153167872888],[-120.39621296031498,52.9614314433518],[-120.39660684820385,52.9612816110553],[-120.39698792659465,52.96111543037156],[-120.39738180882797,52.96096559545545],[-120.39781337208011,52.960870385239446],[-120.39827150510631,52.96080061109969],[-120.39872845873448,52.96073976242976],[-120.39960231719967,52.960581315648454],[-120.40006507464948,52.96058987172148],[-120.40052783228538,52.96059842597675],[-120.40099184177565,52.96059748815508],[-120.40145636742734,52.96059263444195],[-120.40192266057198,52.96057437456213],[-120.4023796065469,52.96051351172149],[-120.40280011259962,52.960388532389096],[-120.40319330434707,52.96024370907644],[-120.40358664185,52.96009775847233],[-120.4039946986996,52.95995364038421],[-120.40438876693345,52.95980210192102],[-120.4047826109386,52.959652242142106],[-120.40516217068424,52.95949720517582],[-120.40555615634251,52.95934622575021],[-120.40593644648726,52.95918560109349],[-120.40631680676115,52.95902442114444],[-120.40667007411584,52.95884170931401],[-120.40700964447106,52.95864936156235],[-120.4073906586441,52.958483146964966],[-120.40778396546918,52.95833718219091],[-120.40820443413298,52.95821218340333],[-120.40862357628814,52.958097236447166],[-120.40904330459406,52.95797781983736],[-120.40947657654085,52.95786916226001],[-120.40990999335487,52.9577593860421],[-120.41031682980022,52.957624182170576],[-120.41069642540121,52.95746856419455],[-120.41107726754689,52.95730345459536],[-120.41143057309735,52.957120174246164],[-120.4118249555787,52.95696582251119],[-120.41222994123432,52.95684457053434],[-120.41266378151947,52.956731432986],[-120.41311079794967,52.95663185103836],[-120.41354103328203,52.95654607336953],[-120.4140108770225,52.95650040245866],[-120.41447609122778,52.95648991216486],[-120.41493821938046,52.95650287801938],[-120.4154003478148,52.95651584206082],[-120.41586130117159,52.9565377406734],[-120.41633661090049,52.95656424900256],[-120.41679639009928,52.9565950803443],[-120.4172538198257,52.956643782686335],[-120.41771066311178,52.95669695145159],[-120.41818237712317,52.956750824528875],[-120.41863863532735,52.95680845789475],[-120.41910858972066,52.956875731874824],[-120.41954719118297,52.95695387973284],[-120.41998293080769,52.95705381295284],[-120.42038746609934,52.957163494543124],[-120.42070605643575,52.957357902107226],[-120.42097402277074,52.95759598186836],[-120.42124206490926,52.95783350692678],[-120.42154249221166,52.95805233569154],[-120.42184350968,52.95826669544379],[-120.42214386916719,52.95848608561288],[-120.42244540696255,52.95869652961215],[-120.4227309021724,52.958915212680765],[-120.42303156546966,52.959132357454195],[-120.42331714057123,52.95935047604865],[-120.42361758925999,52.95956929932027],[-120.42393445174481,52.95977710253612],[-120.42425183140232,52.959980990708715],[-120.42455339022123,52.96019142912166],[-120.42483810004944,52.96041624622689],[-120.42502947913013,52.960668108926065],[-120.4252040084212,52.96093435081472],[-120.42531773585091,52.961207816263304],[-120.42543161025503,52.96148017343667],[-120.42556131159945,52.96174597027119],[-120.42567460345239,52.96202278641037],[-120.42578833564382,52.9622962601613],[-120.42591855566035,52.962558142305916],[-120.4260930255207,52.962824936633574],[-120.42629988147144,52.96307303375918],[-120.42655318858873,52.96330928682742],[-120.42683727048923,52.96353912096437],[-120.42709058336663,52.96377537281066],[-120.42728213754289,52.96402611428229],[-120.42742724442354,52.96428869941764],[-120.42754106784827,52.964561608105654],[-120.42765423227202,52.96483954786424],[-120.42776813253208,52.96511189324544],[-120.4278818864428,52.965385364465405],[-120.42799622952028,52.96565435836595],[-120.42812485930499,52.965928534102815],[-120.42826983125067,52.9661922349559],[-120.42847561601606,52.966448710151845],[-120.42869789047134,52.96669359313731],[-120.42895123246959,52.96692984053358],[-120.42918919133795,52.96716928789457],[-120.42944195366799,52.96740999346086],[-120.42968006458058,52.967648322703795],[-120.42991759180171,52.96789111966303],[-120.43015512173466,52.96813391610783],[-120.43040789409099,52.968374628398436],[-120.43066191576467,52.968605840647676],[-120.43094656763911,52.96883175890631],[-120.43126580717771,52.969022222366526],[-120.43166462345938,52.9691765467841],[-120.43206468762675,52.969321379298954],[-120.43246416840466,52.96947067868297],[-120.43286467761693,52.96961215727622],[-120.4332657755276,52.96974916625286],[-120.4336822626124,52.96988297273007],[-120.4340993394396,52.970012300541306],[-120.43451758944681,52.97013269930565],[-120.4349186975911,52.97026970261273],[-120.43528529974776,52.97044159678368],[-120.43557035400887,52.970664715433315],[-120.43585511954363,52.97089005855352],[-120.43615681194953,52.97110047481329],[-120.43645748350212,52.971318700783485],[-120.43675808434314,52.97153748895818],[-120.43702842494851,52.97175878313535],[-120.43734376065328,52.971979390520325],[-120.43759791535102,52.97221002431346],[-120.43768236722921,52.97247928051288],[-120.4376748581348,52.97276498509819],[-120.43766749651492,52.9730495636334],[-120.43766013362527,52.97333415105598],[-120.43765394306051,52.97360979298355],[-120.43763163146446,52.973894230751746],[-120.43761012423712,52.974172529087575],[-120.43757330257108,52.97445346599723],[-120.43752167684747,52.97473314514983],[-120.4374701230672,52.97501227017005],[-120.43740427907164,52.97528621428603],[-120.43733740810576,52.97556798669049],[-120.43727126954637,52.97584416476427],[-120.43720432419404,52.97612649106141],[-120.43712315953086,52.976403091281234],[-120.43704214141641,52.97667856540193],[-120.43696119488463,52.97695348535939],[-120.43687951510975,52.97723399051733],[-120.4367984200269,52.97751002733157],[-120.436673204131,52.97778004758726],[-120.43647550502718,52.97803201814993],[-120.4362490001551,52.9782753243427],[-120.4359935426918,52.978511083061406],[-120.4357232786529,52.978745574335946],[-120.43548196185574,52.978987612091444],[-120.43529890749275,52.97924196444241],[-120.43517367697454,52.97951198282459],[-120.43506259147628,52.97978828132009],[-120.43493735784843,52.98005829936282],[-120.43478317278561,52.98032076100005],[-120.43462854628939,52.98058657356013],[-120.43445969948294,52.980846650641254],[-120.43426131307137,52.981103648240804],[-120.4340481923364,52.98135882434257],[-120.43384994758189,52.981614704117206],[-120.43372528702648,52.98188025236305],[-120.43365882210443,52.98215866147064],[-120.43365201697462,52.9824387788769],[-120.43370487516006,52.982720586718564],[-120.43378859055954,52.982995429273736],[-120.43391782362647,52.98326568167879],[-120.43406237715594,52.98353328681055],[-120.43422225141028,52.98379824461364],[-120.43439737279584,52.98406111802179],[-120.43457249751911,52.984323982192045],[-120.43474776975633,52.9845857379445],[-120.43487759982682,52.98485152083007],[-120.4349915999688,52.985123855955],[-120.43507547493333,52.98539758014884],[-120.43512863808928,52.98567716168503],[-120.43518136357464,52.98596008537119],[-120.43521928225152,52.986241751007505],[-120.43524246766546,52.986521595614704],[-120.43525099219401,52.986799065144496],[-120.43524346540308,52.98708475818773],[-120.4352520638956,52.987361664630285],[-120.43524460968527,52.98764680352028],[-120.4352677960322,52.98792664788767],[-120.43530564319049,52.98820887615923],[-120.43546620268093,52.9884688003383],[-120.43570387927612,52.98871158260191],[-120.4359727859064,52.98894460149249],[-120.43625811434036,52.98916659895458],[-120.4365757725099,52.989370450324266],[-120.4369254675122,52.98955838945117],[-120.43729151059227,52.98973586959123],[-120.43764165115374,52.98992045539575],[-120.43791174770607,52.99014453327435],[-120.43816520802257,52.99038131159486],[-120.43843421134311,52.99061377058026],[-120.43870424384494,52.990838400608965],[-120.43902192623713,52.991042245183955],[-120.43937157200983,52.99123073986237],[-120.43973705405057,52.99141268044763],[-120.44010488285544,52.991576738068204],[-120.44050401543754,52.99173047642298],[-120.44088936595449,52.99187513676192],[-120.44128894329874,52.99202552126574],[-120.44168984074958,52.99216585089519],[-120.44209066825559,52.99230673320979],[-120.44250645347867,52.992447763089324],[-120.44292487546086,52.99256868445482],[-120.44334505569532,52.99267619963044],[-120.44378107110734,52.99277715972873],[-120.44423387431307,52.99286429028717],[-120.44467186924835,52.99295016231597],[-120.44510957339833,52.993038266833125],[-120.4455634047993,52.993117581788795],[-120.44601906665541,52.99318292726313],[-120.44647582731466,52.99323988854425],[-120.44693193057597,52.99330187930123],[-120.44763804618199,52.99339871277767],[-120.442665498624,53.0020927309927],[-120.44335477979303,53.0058630081444],[-120.44450883714619,53.00803053083985],[-120.45580101088828,53.0111446893542],[-120.45725638322341,53.0159410785913],[-120.4574931690191,53.024215381538006],[-120.45414583773189,53.03376459285127],[-120.4498142660667,53.04074414761551],[-120.4433220919037,53.049438524586584],[-120.43388712322522,53.058821434172266],[-120.4223472283608,53.065246516184544],[-120.4157558832078,53.07325501514711],[-120.41570117462646,53.084020959184485],[-120.41606537389583,53.09741364493472],[-120.41732438184032,53.10300410743055],[-120.41820062823379,53.107514863102146],[-120.42097831162921,53.110362766345276],[-120.43705730057367,53.11689879898301],[-120.44514694358502,53.11728268996732],[-120.45302621516699,53.11720994471486],[-120.45769217928364,53.11873623590527],[-120.45732472396423,53.12016484015962],[-120.45535883650263,53.12668196841566],[-120.45349010415396,53.131766766785105],[-120.45446761292611,53.13519552032072],[-120.45676092398368,53.13901869664365],[-120.46079232050036,53.145062598911416],[-120.4656898441216,53.15161720062951],[-120.4696109163248,53.15702949324633],[-120.4707696844726,53.158857707131325],[-120.47352886252554,53.15937004755062],[-120.48999977579764,53.1626376588545],[-120.5047564377638,53.16499996175401],[-120.50932188827322,53.165385845430954],[-120.51254234640315,53.162005691632714],[-120.51603133712356,53.15794231926725],[-120.52056424740815,53.15347329470969],[-120.52308937533648,53.149413921364484],[-120.5263889647906,53.14540445747242],[-120.53249881320889,53.14824066542282],[-120.53832281067756,53.15096890281284],[-120.53995376204371,53.15381659131023],[-120.54210561217452,53.16101190365096],[-120.54057228963772,53.17066812577],[-120.5404908910253,53.174206372181544],[-120.54233729645235,53.178886015721396],[-120.54581971521432,53.18487607598207],[-120.55124925510161,53.1867429247635],[-120.55918042669143,53.189861285607385],[-120.56822652397976,53.190519407062624],[-120.57421707751148,53.19072537043344],[-120.58076621161376,53.18927506047958],[-120.58781471736822,53.18897093596365],[-120.59221871888215,53.19169732574339],[-120.60283747121177,53.197826591540974],[-120.61087412701715,53.20334328536866],[-120.61806918834202,53.20863113233548],[-120.62638761696813,53.212202058672986],[-120.634995424694,53.21599330946712],[-120.64351620167582,53.22024452196074],[-120.65202165869977,53.22415446806657],[-120.65977223739611,53.22737968190713],[-120.66522876876229,53.2295869352177],[-120.67060973842965,53.23442240109647],[-120.67178227574063,53.23682113360805],[-120.67344092813225,53.239664168266145],[-120.67691985697525,53.24491022934825],[-120.68449874942222,53.25001893526254],[-120.69064422341509,53.253366314887366],[-120.69313850553216,53.25592847386119],[-120.69995894724619,53.2596706672675],[-120.7068552571565,53.26329783248027],[-120.71214100052282,53.26716105062752],[-120.71560547733729,53.26897219401078],[-120.72311546576704,53.26808126616526],[-120.73101666488385,53.26610686597198],[-120.7352832949626,53.264999549237004],[-120.73735292253714,53.26242109545427],[-120.74226759509685,53.25937464447085],[-120.74548926486598,53.25769934170088],[-120.75280589297229,53.255434226582814],[-120.75792937706544,53.25432649470572],[-120.76070219619297,53.25431551294853],[-120.7683355075092,53.25519108481407],[-120.77875830435404,53.25811297422093],[-120.78881494452231,53.261204818946105],[-120.79466568672892,53.264207607637545],[-120.80039748336753,53.27172301636122],[-120.80439492448805,53.278042582436164],[-120.80714224716293,53.28448689914986],[-120.8153412787644,53.28375397397772],[-120.82848020935961,53.28243298093601],[-120.83344461272418,53.28275285341829],[-120.84282153507144,53.28470131644295],[-120.84666077486872,53.28633646589936],[-120.85400239553161,53.28595450884366],[-120.86087339371512,53.28596956031592],[-120.867398602657,53.28845168058016],[-120.87432222143997,53.2928686139334],[-120.87811382735673,53.29701837511626],[-120.87995593572536,53.299351192733525],[-120.89981741288653,53.299924148900494],[-120.90530090315828,53.30257707137162],[-120.91059615713904,53.30591971210804],[-120.91414836555538,53.30709535545066],[-120.91880046304182,53.30615527683244],[-120.92268940340604,53.30441464725941],[-120.93095575336103,53.30225290545569],[-120.93627376806562,53.30090709389989],[-120.94110745141248,53.29882099900886],[-120.93944865390824,53.29694300345075],[-120.93463041244097,53.29388714861078],[-120.93172693351782,53.2913335772234],[-120.93072482104813,53.28813733456719],[-120.93070933737175,53.28751441782314],[-120.93278661223034,53.285781403881025],[-120.93561931879125,53.28428169278531],[-120.9391320952084,53.28288958612274],[-120.9457762628533,53.28101770196503],[-120.95032472993842,53.2799053208636],[-120.95083729025951,53.27902299487773],[-120.95941682502863,53.277084575114635],[-120.96208556612068,53.27719525352489],[-120.96498800482287,53.27812447411363],[-120.96768618886082,53.27836768454969],[-120.97627568443474,53.276589675916],[-120.97624261613947,53.27762551482514],[-120.97448776635255,53.282612619321746],[-120.97940428442612,53.28776452736009],[-120.9771296524557,53.2910426649518],[-120.97676190820115,53.292736515486936],[-120.97629803638985,53.29776428375855],[-120.97598045906217,53.30282856506842],[-120.97691071689596,53.304509450096724],[-120.98324499463861,53.30702385180509],[-120.98513421323024,53.30799888835838],[-120.98572170092699,53.31370226242645],[-120.9871318264602,53.31477772665343],[-120.99124393214159,53.315198521601594],[-120.99274272954122,53.31654439915016],[-120.99390177705959,53.319226465070365],[-120.99536702070634,53.31996832742897],[-120.99659844279562,53.32026679667177],[-120.99813385088812,53.3216882570749],[-120.99812893490899,53.323380006277034],[-121.00010388225371,53.32491205556288],[-121.0048010087032,53.32613192098167],[-121.01313007390779,53.32763737766385],[-121.01303879763546,53.33007905869866],[-121.01245687935894,53.33039097052558],[-121.01224927121449,53.33051981809078],[-121.01207894541925,53.33066821083009],[-121.01191223978121,53.33081786963958],[-121.01174378796556,53.330966340748994],[-121.01156628471358,53.33111161894919],[-121.01137811848183,53.33125139028056],[-121.01118814031057,53.331390528130555],[-121.01099460625385,53.33152783608497],[-121.01080281593306,53.33166633118331],[-121.01063254717859,53.3318141585353],[-121.01047843581097,53.33196884650974],[-121.01035529616173,53.33213268921219],[-121.01031171530317,53.3323094277756],[-121.01032623679178,53.33248917537435],[-121.0103672946216,53.332667783539115],[-121.01042369506862,53.33284423351885],[-121.01048391461333,53.33302028695764],[-121.01054607789482,53.33319585601568],[-121.0106312892816,53.33336790167027],[-121.01073767255215,53.33353634498173],[-121.01086549286721,53.333698950859194],[-121.01099519066565,53.33386163547275],[-121.0110707577796,53.33403552135509],[-121.01103468400554,53.33421257555791],[-121.01092615472245,53.33438040230934],[-121.01081581375344,53.33454759576924],[-121.01071465534181,53.3347168643152],[-121.01058601143635,53.33487935284046],[-121.01041579465644,53.33502662535609],[-121.0102508756601,53.33517692363322],[-121.01012960231742,53.33534084473756],[-121.01003762387958,53.335512178945955],[-121.0099548950791,53.33568502510075],[-121.00987585198838,53.33585859221988],[-121.00980056249026,53.33603230814278],[-121.00972889200511,53.33620730827161],[-121.00966841484373,53.33638333607641],[-121.00964158373698,53.336561901701685],[-121.00960905680923,53.336740784866386],[-121.00952826619724,53.336913155239706],[-121.00941603641701,53.33708026827879],[-121.00930749330708,53.33724809331172],[-121.0092545852343,53.337423882181184],[-121.0092464525872,53.33760379105237],[-121.00922705879874,53.33778323535943],[-121.00917395146094,53.337960695945924],[-121.00906366096538,53.3381273242538],[-121.00887907490417,53.338268375426054],[-121.0086364014109,53.33837440502262],[-121.00835237523592,53.33843153434459],[-121.00807137315746,53.33849496269702],[-121.00784975856985,53.3386142304977],[-121.00767576373065,53.338761340942234],[-121.00751082035357,53.33891163513751],[-121.00735311753421,53.3390644798912],[-121.00720446629101,53.33922050846314],[-121.0070503152664,53.339375191420196],[-121.00689442001992,53.339528668764],[-121.00677493102664,53.339693228265865],[-121.00672569706926,53.33986972798656],[-121.00668008363068,53.34004750309039],[-121.00659545538946,53.340220267560994],[-121.0064924564701,53.340388889853536],[-121.00637289663479,53.34055401210522],[-121.00622973427812,53.34071139372994],[-121.00606658807534,53.3408623279615],[-121.00590344176517,53.341013253017756],[-121.00574746944089,53.34116729195622],[-121.00559705958877,53.34132213081768],[-121.0054465170574,53.341478078044055],[-121.00531783114795,53.34164056925957],[-121.00525739462122,53.341816031119436],[-121.00518958178023,53.341990068453846],[-121.00503735694245,53.34214426434219],[-121.00486514878104,53.342292003678104],[-121.00470018156608,53.342442293709304],[-121.00452803786743,53.34258946931204],[-121.00432732118357,53.34272309717109],[-121.00410695308716,53.342847469978494],[-121.00395693031298,53.34299894518092],[-121.00389816351878,53.34317616595568],[-121.00390689799815,53.34335679387124],[-121.00400583881954,53.343524363150934],[-121.00416890748599,53.34367610480839],[-121.00435401606282,53.34381698580884],[-121.00456310948745,53.343946512877146],[-121.00478446026693,53.34406813665989],[-121.00500949935751,53.34419048120791],[-121.00514704681207,53.34435068904121],[-121.00504220105799,53.34450295241778],[-121.00478835289364,53.34460738244166],[-121.00452536331812,53.34469346685663],[-121.00425197377683,53.3447718084829],[-121.0040360789872,53.34489018827614],[-121.0038835740791,53.345046617472065],[-121.00373126654692,53.345201374675376],[-121.00356809507842,53.345352296201035],[-121.00341203127992,53.34550689496443],[-121.00334252745844,53.34567917119568],[-121.00338557826294,53.34585674210088],[-121.00348807734694,53.34602615033965],[-121.00360806716299,53.34619124521331],[-121.00372611506171,53.346356815232404],[-121.00382486263508,53.34652606513642],[-121.00390430967651,53.34669899497242],[-121.00397404085508,53.34687431904099],[-121.00404383842806,53.34704908877225],[-121.00413092835956,53.34722121689391],[-121.00424321725083,53.347387666832965],[-121.00434578931659,53.34755651992225],[-121.00440412845249,53.347732487217954],[-121.00443190251656,53.34791166958384],[-121.00445210253167,53.34809109025004],[-121.00446472840142,53.348270749220475],[-121.00447742018955,53.34844985389236],[-121.00449567664143,53.34862975873513],[-121.00451594414447,53.34880861610553],[-121.0045361449473,53.34898803667771],[-121.00455252471619,53.34916786247536],[-121.00455382141512,53.3493476106326],[-121.00455511812511,53.34952735877376],[-121.00457531943924,53.34970677927525],[-121.00460698367559,53.34988499295833],[-121.00464810002515,53.35006304726929],[-121.00469297115193,53.35024125952197],[-121.0047436728193,53.3504180369148],[-121.0048038948088,53.350594082749396],[-121.00487557922294,53.35076893065391],[-121.00495309445847,53.35094234366298],[-121.00501713838901,53.35111799302643],[-121.00504686142253,53.351296690707805],[-121.00505191483668,53.35147659663016],[-121.00504945917957,53.35165618661611],[-121.00505632412616,53.35183672576685],[-121.00514570341136,53.35200557921371],[-121.00526967089223,53.352169149156495],[-121.00536642830403,53.352339435816795],[-121.005457421876,53.35251060296439],[-121.00556188860187,53.35267953354951],[-121.00566441303047,53.35284893933897],[-121.00568307551319,53.35302548216411],[-121.00565226269411,53.353205568192486],[-121.00566858306262,53.35338594774106],[-121.00580890218548,53.353538973763335],[-121.00599768271431,53.35368111801228],[-121.00608894706203,53.35385004956111],[-121.00611478913827,53.354029706307585],[-121.00611421525659,53.35420937505171],[-121.00607602646444,53.3543880277307],[-121.00600994258198,53.35456325197165],[-121.00593829169854,53.354737684982794],[-121.00586094108239,53.35491244425456],[-121.00570175984261,53.355061290915586],[-121.00549206518834,53.35519060934601],[-121.00528585876528,53.3553223203496],[-121.00511017391082,53.35546711184387],[-121.00499237751602,53.3556328647301],[-121.00494311746759,53.35580936231601],[-121.0049292635712,53.35598959552305],[-121.00488362510335,53.356167368515244],[-121.00477675955972,53.356336384300995],[-121.00457476421633,53.35646434519197],[-121.00432305157857,53.35656606331613],[-121.0041299114523,53.356698879443584],[-121.00399366394576,53.35686105202124],[-121.00379689912876,53.356992592098486],[-121.00359074442399,53.35712374576742],[-121.00349707979377,53.35729275906486],[-121.00350782681387,53.3574723383142],[-121.00352809331514,53.357651204010246],[-121.0035180547619,53.357831031678714],[-121.00350043898726,53.358011106531215],[-121.00345465956056,53.35818999629342],[-121.00327579919798,53.35832959366246],[-121.00315622366826,53.35847842404984],[-121.0032333477667,53.358655190004185],[-121.00335920498281,53.358818840409384],[-121.00351448878509,53.35897305505649],[-121.00369168789634,53.35911752676771],[-121.00386674514127,53.35926415419738],[-121.00401425543113,53.35942029609497],[-121.00414407284732,53.359582422886774],[-121.00428562108944,53.3597411167101],[-121.00444694171298,53.35989222349791],[-121.0046180509599,53.36004036356096],[-121.0047793080964,53.36019202415363],[-121.00493051452486,53.36034887708949],[-121.00501971177307,53.36051941063513],[-121.00493019881615,53.3606852302501],[-121.00473624543066,53.36082475206783],[-121.0045318867612,53.3609565403826],[-121.00431866923344,53.36108346340151],[-121.00410551625657,53.361209831752824],[-121.00389753106917,53.36134034346877],[-121.00373818586291,53.36149030452406],[-121.00366805911906,53.36166761277675],[-121.0035380248592,53.361824988246745],[-121.00326240772297,53.3618734718681],[-121.00295954312683,53.36184949726811],[-121.00266038631423,53.36184196706488],[-121.0023606043451,53.36187146246541],[-121.00210635954917,53.3619624058748],[-121.00195573034398,53.36211834708685],[-121.00198228969515,53.3622918622631],[-121.00211754168721,53.36245590882884],[-121.00221605495788,53.362627393705054],[-121.00216582685607,53.36279598806483],[-121.0019768239504,53.36294132977165],[-121.00184302387656,53.3630985452336],[-121.00183686415076,53.36327742178662],[-121.00189119338292,53.36345546586917],[-121.00198802892724,53.36362520005384],[-121.00220178449521,53.363763907017415],[-121.00221293567682,53.363892407359266],[-121.00197468647148,53.36402333185355],[-121.00173178031116,53.3641299092183],[-121.00148564850477,53.36423185804898],[-121.00125488915421,53.364347364385345],[-121.00099176912912,53.364433440144545],[-121.00072858214365,53.36452006959284],[-121.00046707319395,53.36460844927036],[-120.99998984960197,53.3647809715493],[-120.99969757406552,53.36482650032776],[-120.9994392842319,53.36491951475174],[-120.99932197058226,53.36508079129929],[-120.99921874889189,53.36525052270184],[-120.99905554950915,53.36540088226567],[-120.99886718861379,53.365540631411626],[-120.99868587238572,53.365684612241836],[-120.99850113083136,53.365825645374755],[-120.99831269921509,53.36596595682649],[-120.99816022966259,53.36612125956637],[-120.9980792699366,53.36629417392115],[-120.9979235082154,53.36644540248544],[-120.99776191167471,53.36659807424813],[-120.99771508405698,53.36676962276975],[-120.99785274342139,53.36692928298047],[-120.99802975774527,53.3670754343175],[-120.99818129548993,53.36722950605943],[-120.99828382564898,53.367398916995676],[-120.99842738895725,53.367556578781205],[-120.99856887653924,53.36771583305713],[-120.99869681950922,53.36787789499011],[-120.99881101998878,53.36804442744101],[-120.99891167665896,53.36821375869052],[-120.99905323419243,53.3683724580664],[-120.99917327134365,53.36853754665368],[-120.99924684094933,53.36871247547589],[-120.99918828424121,53.36888745670073],[-120.99906311364968,53.369051214573304],[-120.99889802093713,53.36920149456658],[-120.99879854355345,53.369371383414105],[-120.99871751428151,53.36954485219964],[-120.99864023942204,53.36971848801635],[-120.9985944936157,53.369896811665576],[-120.99848635340484,53.3700601630967],[-120.99834480647786,53.3702187294975],[-120.99819970113107,53.370375465787816],[-120.99807452227435,53.370539222500824],[-120.99798241794255,53.37071054439489],[-120.99792372027659,53.370886642308534],[-120.9977514366533,53.37103380603202],[-120.9975120357041,53.37114221329571],[-120.9972245500706,53.371194678042414],[-120.99701481501755,53.37132342622818],[-120.99686775682244,53.37148063597374],[-120.9967298883232,53.37163992177013],[-120.99659926549221,53.371801758806505],[-120.99650903056715,53.371973158566654],[-120.99647641945717,53.37215204394239],[-120.99649471902515,53.37233138470092],[-120.99657995218956,53.3725034370921],[-120.99671367067663,53.372664611696344],[-120.99686898012885,53.37281884290945],[-120.99699297672511,53.372982419803066],[-120.99707814729561,53.37315502605283],[-120.9971116746041,53.37333332771759],[-120.99715466039582,53.37351146166687],[-120.99726310236241,53.37367887531248],[-120.99738120235969,53.37384444938665],[-120.99745873027071,53.37401785637005],[-120.99748273558238,53.37419687983966],[-120.99746891072002,53.3743765473379],[-120.99744569325098,53.37455582826283],[-120.99749639483355,53.37473259768908],[-120.99754890813584,53.374910009385914],[-120.99759196332901,53.37508758876997],[-120.99761214723974,53.37526700819599],[-120.99761153679681,53.375446675022125],[-120.997569603023,53.3756246017006],[-120.99749781540675,53.37579958208986],[-120.99741871270457,53.37597257427377],[-120.99729170283221,53.37613568740573],[-120.9971428164562,53.37629226375019],[-120.99704338119614,53.37646159627123],[-120.99697910347459,53.376636892697796],[-120.99692408310477,53.376813711029904],[-120.99687463149517,53.37699132091494],[-120.99682148968785,53.3771682093373],[-120.99676089975907,53.37734422701217],[-120.99665407979994,53.377512125203445],[-120.996539879348,53.37767858041448],[-120.99652611528163,53.377857693229],[-120.99653495832231,53.378037201121266],[-120.99653622169028,53.37821694681232],[-120.99653366219775,53.378397088529304],[-120.996534925571,53.378576834188806],[-120.9965380674257,53.37875665894598],[-120.99653557387117,53.378936246347116],[-120.99647122323076,53.37911210549582],[-120.99636627612615,53.37928008239839],[-120.99625206974228,53.379446537189736],[-120.99614893346923,53.3796151472591],[-120.99607719911762,53.379789572182574],[-120.99598687791612,53.379961534085865],[-120.99591514230325,53.38013595888221],[-120.99589567318608,53.380315388307146],[-120.99589317679971,53.380494975558456],[-120.99589068039205,53.38067456279394],[-120.9958787241095,53.380854317602775],[-120.99586864735997,53.38103414257874],[-120.99586990797377,53.38121388801434],[-120.99589008748372,53.38139330719626],[-120.99596567751881,53.381567198597445],[-120.99609164094201,53.38173030058694],[-120.99621955098671,53.381892918341165],[-120.99635329791036,53.38205409261195],[-120.99650079420441,53.38221079635075],[-120.99667404378086,53.382357353592795],[-120.9968572197251,53.3824998362135],[-120.9970244368306,53.382649508025025],[-120.99716804741767,53.38280717015529],[-120.99732936490717,53.38295883915634],[-120.99752649420905,53.38309516955808],[-120.99776458845896,53.383204590349095],[-120.99804128788068,53.38327519620171],[-120.9983278291446,53.38332656638468],[-120.99861839436602,53.38337585908433],[-120.9989143304364,53.38342762325427],[-120.99917639354057,53.38336734287557],[-120.99946101882468,53.38332372553741],[-120.99999511376316,53.38335743323024],[-121.00028946838724,53.38337487819447],[-121.00058136520329,53.3834129913167],[-121.0008579378279,53.383484708092205],[-121.00111072248843,53.38358182000493],[-121.00135928531648,53.383682688949925],[-121.00164422043709,53.38373173714211],[-121.0019465400757,53.383729854737375],[-121.00224731364865,53.38372509437075],[-121.00254896898642,53.38372879783771],[-121.00284708467453,53.38374639450961],[-121.00314119769367,53.383781782187675],[-121.00343772014173,53.38381278715585],[-121.00372915852383,53.383854799265436],[-121.0039948838898,53.383938414977905],[-121.00423695689116,53.38404630007289],[-121.0044544944768,53.384169999052965],[-121.00466787750227,53.384296892106725],[-121.0048793830747,53.38442370578867],[-121.00510081476762,53.384546444044815],[-121.00534738238623,53.384648334178465],[-121.0056024614431,53.38474216301987],[-121.00585312031276,53.38484142079715],[-121.00611008043057,53.38493532750796],[-121.00636262041591,53.38503466316494],[-121.00655326862486,53.38516228598244],[-121.00655826669863,53.385342743124134],[-121.00649401397028,53.38551805287048],[-121.00640378992959,53.385689458986754],[-121.0063283300989,53.385863731657444],[-121.00630708973954,53.38604252905341],[-121.00623189438652,53.386214566666],[-121.00613240639957,53.3863844602344],[-121.00602929269884,53.386553078296146],[-121.00594282223605,53.38672464190334],[-121.0058360820087,53.38689198435766],[-121.00576806725384,53.38706712670778],[-121.00568152775323,53.387239253293465],[-121.00560988682223,53.387413120103865],[-121.00554368224611,53.38758890446223],[-121.0053775236468,53.387731853954136],[-121.00518002080571,53.38786842746941],[-121.0050040680528,53.38801432504123],[-121.00487349209416,53.38817561559838],[-121.00473553334531,53.38833546364494],[-121.00466945647244,53.3885101299578],[-121.00464075788875,53.38868805661765],[-121.00467043997631,53.388867305372905],[-121.00477311480876,53.3890361546576],[-121.00496030484983,53.389177101619076],[-121.00518390632156,53.38929768345682],[-121.00544250553357,53.389393905343496],[-121.00560533867473,53.389533270351805],[-121.00563301264378,53.389713566244424],[-121.00571630657586,53.38988664914454],[-121.0058876080487,53.390034230939435],[-121.0060548871808,53.39018388951414],[-121.0062442970099,53.390322124107975],[-121.00646992001344,53.39044166494144],[-121.00669970060102,53.390558010800476],[-121.006893071935,53.39069472154957],[-121.00706022451766,53.39084549614536],[-121.0071651910336,53.39101106970605],[-121.00721199550293,53.39118935637808],[-121.00727034017775,53.391365881714194],[-121.00732103635302,53.391543208717856],[-121.0073641508373,53.39172077418796],[-121.00739391249873,53.39189946772974],[-121.00740844208413,53.39207921041172],[-121.00741351048532,53.39225911264146],[-121.00741864583249,53.392438451644686],[-121.00743693392879,53.39261835215843],[-121.00744965173116,53.39279745262145],[-121.00745666642365,53.392976870516975],[-121.00745428444557,53.39315590263411],[-121.0074349243307,53.39333477854011],[-121.00747421592729,53.39351274914501],[-121.00753639014007,53.393688868822196],[-121.00760044297675,53.39386507633011],[-121.00774030724652,53.394023121237936],[-121.00786440853966,53.394186685113745],[-121.0080119901897,53.39434337366206],[-121.00823797105437,53.3944601216791],[-121.00852875744407,53.394508272435615],[-121.00879743467321,53.39458357033577],[-121.00901477469424,53.394709495312306],[-121.00920206998521,53.39484988094491],[-121.00939533646137,53.39498770482741],[-121.00958652540508,53.395127130173655],[-121.00976778869402,53.395270630614476],[-121.00992926515035,53.39542172734695],[-121.01006699872242,53.395581925465855],[-121.01018916752606,53.395745971106905],[-121.01030744714166,53.39591096736184],[-121.0104178783872,53.39607844608887],[-121.01052059386161,53.396247289826256],[-121.01061170330186,53.396418449355785],[-121.01069315167864,53.396591449321186],[-121.01076111447797,53.396766686236994],[-121.01081183186274,53.396944011291026],[-121.01089387854513,53.39711198687299],[-121.01105939114001,53.397260995805006],[-121.01115225163653,53.397433351203404],[-121.01116699870136,53.39761141225169],[-121.01115510284308,53.397791167115514],[-121.01116965158396,53.397970899886786],[-121.01115587627184,53.39815057583784],[-121.01104744795371,53.398316162464944],[-121.01088241592069,53.39846533946553],[-121.01081090897745,53.398638099919914],[-121.0107003333017,53.39880584226822],[-121.01051568619178,53.398945211091245],[-121.01030934695407,53.39907637372076],[-121.01008903377318,53.39919795600952],[-121.00984963711909,53.39930526913236],[-121.00967902558945,53.39945364447616],[-121.00949403994801,53.39959580984145],[-121.00929844111582,53.39973190510516],[-121.00909202839819,53.39986361984508],[-121.00886998104508,53.39999973600189],[-121.0086565788234,53.40012666438228],[-121.0084380020822,53.40024943995436],[-121.0082477027745,53.400388568388756],[-121.00811522139261,53.40054978260981],[-121.00797360820793,53.400708358116134],[-121.00779586368327,53.40085307143988],[-121.007591254397,53.40098541671036],[-121.00743869222588,53.40114072869587],[-121.00732634875054,53.4013072802308],[-121.00721769753774,53.40147454380265],[-121.00708339620276,53.40163511463934],[-121.00689483288294,53.40177543724072],[-121.00670445570977,53.40191511737432],[-121.00656289848324,53.40207313683062],[-121.00630963544278,53.402169753774956],[-121.00604609062603,53.40225751087257],[-121.00580129433467,53.40236233492086],[-121.00560211031465,53.40249659425678],[-121.00547693167115,53.40265979299693],[-121.00534987249557,53.40282291261931],[-121.00513651123124,53.40294928025117],[-121.00485655459639,53.4030161303972],[-121.0045881598464,53.40309694245153],[-121.00432467259569,53.40318413249371],[-121.00406803717316,53.4032772342228],[-121.00383189660738,53.403388599703135],[-121.0036237691102,53.403518545056485],[-121.00336040904563,53.40360462441571],[-121.00308683454378,53.403681280430874],[-121.00283026033374,53.40377381626482],[-121.00259754011324,53.40388813544205],[-121.00241076542821,53.40402908407169],[-121.0022437337759,53.404178732871394],[-121.00207851462844,53.404329014715685],[-121.00191692063125,53.40448057184378],[-121.00176076550989,53.40463403756446],[-121.00165570993987,53.404802571321156],[-121.00158952743091,53.40497779774018],[-121.00151408008381,53.40515150253107],[-121.00140351618174,53.40531868145382],[-121.00129113767053,53.40548522695924],[-121.00119896995417,53.40565654843963],[-121.00111606697227,53.40582938250267],[-121.0010443085253,53.40600380820847],[-121.00099484000468,53.406181417296125],[-121.00096228846562,53.40635973773183],[-121.00092221777498,53.40653774197108],[-121.00089335915722,53.40671677470689],[-121.00091545204693,53.40689626986847],[-121.00101627605699,53.407065041882525],[-121.00115790626265,53.4072242900267],[-121.00130557460761,53.40738043164161],[-121.001462975776,53.40753417009831],[-121.00157930753284,53.40769965825645],[-121.0016820169733,53.40786849973464],[-121.00179640372555,53.40803447182628],[-121.00192045729726,53.40819859505839],[-121.00203679268981,53.40836408271682],[-121.00213171941344,53.408534851524685],[-121.00222282133643,53.4087060164615],[-121.0023293614004,53.4088744610814],[-121.00244570026936,53.40903994828679],[-121.00255425483769,53.40920735423069],[-121.00264341415603,53.409378994036906],[-121.00268646018313,53.40955712287941],[-121.00266512539743,53.409736480785575],[-121.00264191162022,53.40991575071712],[-121.00266595945988,53.41009477003099],[-121.0027186056788,53.41027161320804],[-121.0027865563003,53.41044686246273],[-121.00286028118799,53.410621222294864],[-121.00292829995603,53.410795908236345],[-121.00292012501932,53.410975819160136],[-121.00289133778782,53.411154297736104],[-121.00294391928685,53.41133170392687],[-121.00301771230545,53.41150550932458],[-121.00310103861591,53.41167859223878],[-121.00319020540067,53.411850231432666],[-121.00329293037244,53.412019080125674],[-121.00340337597278,53.412186564062274],[-121.00351972822286,53.41235204995613],[-121.00363024258519,53.412518970452666],[-121.00373297095528,53.41268781871218],[-121.00382402246309,53.412859536347206],[-121.00387855595976,53.41303646671427],[-121.00392933093269,53.413213230110976],[-121.00398003935014,53.41339055667418],[-121.00402504109688,53.413568209422344],[-121.00407192433366,53.413745932191745],[-121.00412652700246,53.413922299167474],[-121.00418489025462,53.414098824086054],[-121.00422989362374,53.41427647669655],[-121.00425771193284,53.41445564435723],[-121.00427988915477,53.41463458396648],[-121.00431536119004,53.414812950076104],[-121.00435271256586,53.41499140408831],[-121.00437294444671,53.41517081890888],[-121.00435537530487,53.4153503256733],[-121.00430033530945,53.41552714411074],[-121.00422488023723,53.41570084974192],[-121.00415493100097,53.415875918691206],[-121.00410741113883,53.416053044022135],[-121.00408419895855,53.416232322633185],[-121.00407226863945,53.41641206624342],[-121.00406221732912,53.41659189776986],[-121.00404464626817,53.41677140436684],[-121.00400833908199,53.41694956674479],[-121.00396639099505,53.41712749211268],[-121.00393753700399,53.417306533619154],[-121.00391808489896,53.417485961141175],[-121.00390615245136,53.41766571356693],[-121.0039112759495,53.41784505053346],[-121.00395816240821,53.418022781924684],[-121.00402425152915,53.41819794189],[-121.00407691253365,53.41837479272184],[-121.00412192108399,53.4185524360712],[-121.00414403396286,53.41873192961803],[-121.00415291809716,53.418911433406315],[-121.0041542152384,53.41909117547407],[-121.00415739268462,53.41927099651813],[-121.0041643307619,53.419450975529685],[-121.00416186734856,53.41963055956832],[-121.00413301353602,53.41980959196896],[-121.00407615343771,53.419985767733664],[-121.00402856160957,53.42016345588749],[-121.00398473006221,53.4203413019959],[-121.00387050828733,53.42050720654418],[-121.00368722486576,53.42064999471155],[-121.00344233383362,53.42077054539576],[-121.00351685790433,53.42092247572519],[-121.00367767976745,53.42107972064865],[-121.00382534016477,53.42123641236677],[-121.00392621021582,53.421405180760964],[-121.00399230451731,53.42158034046194],[-121.00406800024885,53.42175422335338],[-121.00418236824017,53.42192074631403],[-121.00436775521462,53.42206217619231],[-121.00459152977534,53.42218275723955],[-121.00483187695666,53.42229112335756],[-121.00506806686718,53.422402674479656],[-121.00528372492131,53.42252797135044],[-121.00547717162915,53.422665245504454],[-121.00564873862281,53.42281170785901],[-121.00576895699113,53.4229767854518],[-121.00588917523991,53.42314187184988],[-121.00600946140291,53.42330639491221],[-121.00615720527023,53.42346252037247],[-121.00631683057648,53.42361409526651],[-121.00640026034857,53.42378662061155],[-121.00649342604441,53.42395674252833],[-121.0065538265326,53.42413222693354],[-121.006670158316,53.42429826306943],[-121.00679817172379,53.424461429326335],[-121.00686817672307,53.42463562761308],[-121.00689413150981,53.42481472376539],[-121.00689920165564,53.424994623195],[-121.0068835197539,53.42517420844112],[-121.00690564789737,53.425353700910215],[-121.00696605211107,53.42552918499003],[-121.00711790011763,53.42568267780006],[-121.0073749127342,53.425778260603714],[-121.00763004698598,53.425873754972535],[-121.00788967366765,53.42596326507322],[-121.00815104922867,53.42605397099694],[-121.00840853187512,53.42614563595936],[-121.00866796213471,53.42623682501902],[-121.0089273945816,53.42632800457],[-121.00921109962616,53.42638988895917],[-121.0095004269547,53.42643627702747],[-121.00976824754626,53.426520511310414],[-121.00998998096478,53.426642683726996],[-121.0100949166214,53.42680936039089],[-121.0102429524484,53.42696325453202],[-121.01041032807815,53.427113458600765],[-121.01057777075691,53.42726310816041],[-121.0108693388763,53.427417963969894],[-121.01117044487489,53.427428913510454],[-121.01146880803734,53.42744704248137],[-121.0117664419261,53.42747131230655],[-121.01206374380067,53.42749837952742],[-121.01236044827381,53.42753047908267],[-121.01265120256714,53.42758085394432],[-121.01294739857076,53.427585411875185],[-121.01324536372574,53.427559155350636],[-121.01354029642012,53.42752659878208],[-121.01381832214794,53.42746133083755],[-121.01412088972154,53.427459971813356],[-121.0144208230643,53.42744896033282],[-121.01471967153103,53.42743116444758],[-121.015019893367,53.4274336399336],[-121.0153208679137,53.427445696455905],[-121.01562204211754,53.42745607154021],[-121.01591974424959,53.427479776723516],[-121.01621410720753,53.42751569455908],[-121.0165126298807,53.427548416840914],[-121.01681175027049,53.42757610527542],[-121.01709237693441,53.42763222591139],[-121.01732823157207,53.42774710486117],[-121.01757890920615,53.427848570841746],[-121.01786650660634,53.42789375124719],[-121.01816576291299,53.42792031880364],[-121.01846287270433,53.42794905073191],[-121.01875932119029,53.427983360354474],[-121.01905382264353,53.428018153690225],[-121.01935040357708,53.42805135330536],[-121.01964523785328,53.42808334701915],[-121.01994221728336,53.428113192732006],[-121.0202396614693,53.42813912206624],[-121.02053931854331,53.428162331228044],[-121.02083702844445,53.4281860241164],[-121.02113480439697,53.42820916199174],[-121.02144185288755,53.42823380125301],[-121.02172813448466,53.428210412584555],[-121.02196664514065,53.42809573920993],[-121.02215158149747,53.42795467388262],[-121.02230257080402,53.42779703137407],[-121.02246424661597,53.427644894003585],[-121.02260945910095,53.427488132455366],[-121.0227088453055,53.42731934594846],[-121.02279364934978,53.42714601411918],[-121.02289329888967,53.426974992470875],[-121.02304926171621,53.42682317243068],[-121.02323593601764,53.42668331044859],[-121.02343174856124,53.42654606762245],[-121.02362755876773,53.42640883340538],[-121.02381973988304,53.42627031507437],[-121.02401010476977,53.426131163475304],[-121.02418433713412,53.42598459859445],[-121.02434774740006,53.425833654694756],[-121.02452735442452,53.425689560274165],[-121.02471596611763,53.425549211356405],[-121.0249045108902,53.42540941640231],[-121.02508417985548,53.425264766841565],[-121.0252403275232,53.425111263114744],[-121.02539109596609,53.42495529717544],[-121.02554549314797,53.424800596885724],[-121.02568705554295,53.42464255658325],[-121.02579381258748,53.424475199365745],[-121.02587678327463,53.42430123218603],[-121.02594101340404,53.424125924187635],[-121.0259959736864,53.42394909648199],[-121.0260787434505,53.42377680981614],[-121.02618193472603,53.42360761419293],[-121.02627430470393,53.423434039883034],[-121.02642090526476,53.423281267689305],[-121.02664162871837,53.42315685839775],[-121.02686927795905,53.42303778744199],[-121.02710714931887,53.42292813665589],[-121.02736560180622,53.42283618226243],[-121.02762896645153,53.422750613819375],[-121.02788477970797,53.422649006874074],[-121.0281492288843,53.42257022081866],[-121.02844849085521,53.42258048489017],[-121.02874960478005,53.42257510336352],[-121.02903760111238,53.42252088304681],[-121.0293060061458,53.42244057985178],[-121.02955623868452,53.422338170303846],[-121.0297748685499,53.4222153572659],[-121.03000929786934,53.422102745271864],[-121.03025246710428,53.42199611316364],[-121.03049718553726,53.42189234838767],[-121.03074384879864,53.421788107399784],[-121.0309833856591,53.42168019914817],[-121.03121962257822,53.42156822652771],[-121.03145054793224,53.42145321954941],[-121.0316762939051,53.42133406075072],[-121.03190015710892,53.42121483190392],[-121.03213114528019,53.421099260370234],[-121.03235507255978,53.42097946743844],[-121.03256144942497,53.42084827692403],[-121.03276607780761,53.420715881069526],[-121.03298287607014,53.42059242029222],[-121.03321916816115,53.42047988043117],[-121.03347571079217,53.42038784308198],[-121.0337475913294,53.420309912906696],[-121.03402115253681,53.420233741342244],[-121.03429982545578,53.42016227468008],[-121.03455125106625,53.42006552946732],[-121.03475062455027,53.419929542128436],[-121.0348776213859,53.419766392481904],[-121.03494375402894,53.419590594541134],[-121.03495360747745,53.4194113239015],[-121.03494096216473,53.419230556901226],[-121.03491113074884,53.41905130938582],[-121.03487935267646,53.418872546559854],[-121.03489860785929,53.4186936683963],[-121.03492732998605,53.41851462846514],[-121.0349221407752,53.41833472968815],[-121.03490553770476,53.4181554773568],[-121.03490981667451,53.41797540786025],[-121.03492349597857,53.417795739818224],[-121.0349106536701,53.417616644453474],[-121.03487317035673,53.41743820026439],[-121.03483575287974,53.41725920176879],[-121.03482855186871,53.41708034187145],[-121.03485733976655,53.41690073860009],[-121.03485967200358,53.41672115371003],[-121.03484877604129,53.41654158247436],[-121.03484734785229,53.41636184053924],[-121.03485538731526,53.41618192790506],[-121.0348577195208,53.41600234295345],[-121.03483729067786,53.41582349661873],[-121.03481699515427,53.415643523825786],[-121.034781890548,53.41544497338802],[-121.03476680876902,53.4152528650748],[-121.03487505170978,53.415120376988526],[-121.03512584759147,53.41506066483868],[-121.03544627215396,53.41503529466805],[-121.03577279850543,53.41500625233017],[-121.0360526537171,53.414940447386414],[-121.03630625489606,53.4148409784937],[-121.03654755154456,53.41473370040169],[-121.03677855685933,53.41461756521872],[-121.03700425106868,53.41449839593539],[-121.03723518729257,53.414382823074995],[-121.03746074693505,53.4142647704162],[-121.03767588207259,53.41413898724577],[-121.03788032867503,53.414007708626386],[-121.03808315893484,53.41387410724352],[-121.0382841067401,53.41374043599367],[-121.038486867909,53.413607397128416],[-121.03868599957624,53.41347308351117],[-121.03887988561252,53.413335181705904],[-121.03906295226908,53.4131928931925],[-121.03923714407797,53.41304575111518],[-121.03940401283398,53.41289661430219],[-121.03956194243051,53.41274316933853],[-121.03972524610711,53.41259220339845],[-121.03990830667269,53.41244991353516],[-121.04009680771489,53.41230953938505],[-121.04028524100526,53.412169728150886],[-121.04046681358402,53.41202400645652],[-121.04064818649398,53.41187996520705],[-121.04085422904113,53.41175099477288],[-121.04110021413018,53.411651756154825],[-121.0413724852304,53.411569901442085],[-121.04163265031758,53.411478557228264],[-121.04186685619636,53.411367038833696],[-121.04209258397452,53.41124730543867],[-121.04232705109817,53.411133551107],[-121.0425666294705,53.411024501506255],[-121.04281468353278,53.41092366590239],[-121.0430813066169,53.410841572109284],[-121.04336300268845,53.41077582823546],[-121.04364456604073,53.41071120120506],[-121.04392438037672,53.41064537763076],[-121.04420729467948,53.41058529767905],[-121.04449660712615,53.41053503380393],[-121.04478888904269,53.41049162206528],[-121.04508090570154,53.41045045357568],[-121.04537305463558,53.410408157915164],[-121.04566836937316,53.41037105149475],[-121.0459658622201,53.410347511180966],[-121.04626619230206,53.410331949382936],[-121.04656497106254,53.41031351918672],[-121.04686292466126,53.41028606085773],[-121.04715784199512,53.41025230328868],[-121.04745166930417,53.410211761582275],[-121.0477422630239,53.41016659247557],[-121.04803305317398,53.41011975085342],[-121.04832364563427,53.410074580326174],[-121.04861760228408,53.410032918222264],[-121.04890479248049,53.40996851360281],[-121.04919141873093,53.40989285482339],[-121.04940303629874,53.40978038214989],[-121.04951282917659,53.40961818342067],[-121.04957047208913,53.40943360820831],[-121.04962000275727,53.40925374422146],[-121.04964301709092,53.409074456175226],[-121.04966797645386,53.408894692093114],[-121.04970220346827,53.40871643687537],[-121.04972145630565,53.408537001161896],[-121.04972567090081,53.40835693030937],[-121.0497636570005,53.408178831573295],[-121.04981292203252,53.40800120243822],[-121.0498433879708,53.407822790560836],[-121.04985700021805,53.40764311993596],[-121.04985745444031,53.40746289246036],[-121.0498370323564,53.40728348474149],[-121.04977842071727,53.40710754488503],[-121.04971034512329,53.40693176791055],[-121.04968032785308,53.406753640564986],[-121.0496940721162,53.406572852345796],[-121.04965445812718,53.40639601434783],[-121.04957665658142,53.406222635199484],[-121.04949127016393,53.40604950611084],[-121.04942118603026,53.405874768126345],[-121.04937412006603,53.405697062574944],[-121.04932524109803,53.40551871548015],[-121.04927468082438,53.40533860931858],[-121.04915569526136,53.40517812263615],[-121.04898599488487,53.4050312367885],[-121.04879871860845,53.40488924264673],[-121.04860949855014,53.40474772420054],[-121.04843604237287,53.40460068095795],[-121.04827653453358,53.404447489340924],[-121.04812085364624,53.4042938908652],[-121.04795336888024,53.40414429245092],[-121.04778186250265,53.4039967722235],[-121.04760834592886,53.403850290952285],[-121.04743295088362,53.40370373110877],[-121.0472594367323,53.40355724930852],[-121.0470859901781,53.40341020401518],[-121.04691650121958,53.40326164328417],[-121.04675096983316,53.40311156713196],[-121.046591343088,53.402959481727244],[-121.0464337942173,53.40280580261365],[-121.04627805972834,53.40265276483705],[-121.04611655680895,53.40250060043503],[-121.04594901990019,53.40235156230227],[-121.04576974590395,53.402205960757236],[-121.04559034138774,53.402061476450825],[-121.04541684041943,53.401914991849864],[-121.04525722303306,53.4017629045691],[-121.04511524725021,53.40160538029484],[-121.04497937193615,53.40144418403906],[-121.0448532254655,53.40128058109964],[-121.04473304862927,53.40111441480349],[-121.04462434719456,53.40094704668691],[-121.04452718745323,53.40077791355181],[-121.04444935099228,53.40060509381504],[-121.04438513259139,53.400428915670986],[-121.04433051053442,53.400251448521004],[-121.04424686504893,53.3999997754583],[-121.04415950188623,53.39982768118786],[-121.04406630379842,53.39965702355966],[-121.04396539030799,53.39948773313633],[-121.04386642247768,53.39931796669017],[-121.04377517154822,53.39914683286848],[-121.04368975797321,53.39897425332044],[-121.04363514073567,53.39879678572714],[-121.04367851871253,53.39862115825843],[-121.04375767101426,53.39844646545304],[-121.04388631575918,53.398284500410085],[-121.04411843104214,53.39817401603465],[-121.04436478979814,53.39807086317974],[-121.04460583905431,53.39796467647899],[-121.04487587185855,53.39788496990443],[-121.04515869903932,53.39782488732415],[-121.04543855709748,53.39775794226403],[-121.0457247462081,53.397701367579366],[-121.04601545249133,53.39765453060299],[-121.04630144305916,53.39759962634142],[-121.0465647430262,53.3975128974823],[-121.04682804190824,53.39742616803724],[-121.04706914658493,53.39731942202489],[-121.04724492708218,53.39717401724427],[-121.04743669892709,53.397037139641796],[-121.04762147878252,53.39689547840156],[-121.04781875455912,53.3967599526079],[-121.04807020735848,53.39666149702087],[-121.04836556056671,53.396655276654265],[-121.04866395570593,53.39668735562284],[-121.0489578015809,53.396725991364356],[-121.0492433116444,53.396787296341486],[-121.04953596097936,53.39677196736571],[-121.04982691986545,53.396722886009904],[-121.05012233262867,53.39668408754129],[-121.05040112228323,53.39662607099198],[-121.05066124069442,53.39653415210642],[-121.05093913678301,53.39646767011001],[-121.05123151124188,53.39642257044468],[-121.05151854733275,53.396390723910095],[-121.05181215963971,53.396415300793926],[-121.0521033112871,53.39636453310322],[-121.05237991612356,53.39629294509232],[-121.05264972562405,53.396214901586106],[-121.0529472460684,53.39619022614272],[-121.05324869422297,53.39618031250196],[-121.05354876169011,53.39618212769929],[-121.0538488661686,53.39619967472179],[-121.05414630350245,53.39622383903176],[-121.05444597574555,53.396229013501625],[-121.05474683260547,53.39622412048966],[-121.05504801759693,53.39621643735685],[-121.0553473231191,53.396208675277606],[-121.05564804720204,53.396204906460945],[-121.05594999430812,53.396206793785566],[-121.05625025874299,53.396206930344],[-121.0565497606266,53.39619749341146],[-121.05684998583838,53.39618190481687],[-121.05715014563606,53.39616686976218],[-121.05744958184506,53.39615798486291],[-121.05775043679655,53.39615309320056],[-121.05805007042305,53.39614252601781],[-121.05835062266907,53.396124144269514],[-121.05864767977216,53.39610336148496],[-121.05894982283905,53.39610356936692],[-121.05925067722725,53.39609867391314],[-121.05955028404586,53.39610438983321],[-121.05985035124229,53.3961061891474],[-121.0601481945583,53.396078706333014],[-121.06044885213403,53.396075479688065],[-121.06074778722014,53.396054769766614],[-121.06104685229256,53.39603295049562],[-121.06134294732156,53.39600426011743],[-121.06163510991412,53.39596081567185],[-121.06192106859568,53.39590587384567],[-121.06221012769414,53.39585668412538],[-121.06249156231198,53.39579201207465],[-121.06277718999317,53.395739866509494],[-121.06307972429968,53.395736711286965],[-121.06336520662197,53.395782258784074],[-121.0636286561265,53.39587068724978],[-121.06389879487155,53.39595040893977],[-121.06418257330819,53.39601048251992],[-121.06448021156895,53.39603294916997],[-121.06477850630812,53.396049827360315],[-121.0650792055543,53.39606231266023],[-121.06537572984568,53.39609427171957],[-121.06567389416989,53.39611226520956],[-121.06597367572323,53.39613257105806],[-121.06627238773889,53.396129814931754],[-121.06657422587128,53.396116514915214],[-121.06687462086985,53.39611550713239],[-121.06717263489664,53.39610260389621],[-121.06746621299116,53.39606313008016],[-121.06774595774561,53.395996695772624],[-121.06800752136661,53.39590816064924],[-121.06827756169838,53.39582784661886],[-121.06854720865536,53.395750875674686],[-121.06878851089898,53.395641850500695],[-121.0690208084738,53.395529082345384],[-121.06925161878851,53.39541288312069],[-121.06946999296972,53.39528999566486],[-121.06966725694768,53.39515387032397],[-121.06985914279,53.395015284623256],[-121.06998955594221,53.39485336907309],[-121.07007954068533,53.39468191558551],[-121.07014911444445,53.39450736945935],[-121.07022244623293,53.394332979177086],[-121.07028275342549,53.39415692564476],[-121.07033560902637,53.39397999703034],[-121.07040893912367,53.39380560658874],[-121.0704803893411,53.393631138141735],[-121.07057587619705,53.39346103556514],[-121.07068069251117,53.393291885856236],[-121.07078537796797,53.393123844652095],[-121.07089926168952,53.392957873834995],[-121.07108595497057,53.39281513629192],[-121.07134392937978,53.39272476597246],[-121.07162028048907,53.39265481393342],[-121.07190465150772,53.3925969807007],[-121.07219671456345,53.39255406457079],[-121.07249336657145,53.39252032189295],[-121.07279098027122,53.392494479261316],[-121.07309097707692,53.39248052154281],[-121.07339077667125,53.39246824387007],[-121.07368825846756,53.39244351654898],[-121.07398322521749,53.39240802039955],[-121.07427508891432,53.39236677102905],[-121.07456572657343,53.39231986422215],[-121.0748548122711,53.392270080467284],[-121.07514680510258,53.39222771140058],[-121.07544157322884,53.39219388349846],[-121.07574208968218,53.39217545780946],[-121.07604208323588,53.39216149265156],[-121.07634192613229,53.392164931208605],[-121.07664139474447,53.392155443712404],[-121.07693229114959,53.392106287065765],[-121.07717833711148,53.39200474682768],[-121.07736837063368,53.39186550772342],[-121.07748961091372,53.39170095940787],[-121.07763630875941,53.391544760283786],[-121.0777520403858,53.39137886061744],[-121.07788254278628,53.391215818576946],[-121.07806518459302,53.39107514943142],[-121.07828532480866,53.39095287768444],[-121.07852132939682,53.39084024638113],[-121.0787977221542,53.39076971436556],[-121.07904718754939,53.39067111526108],[-121.07930034414218,53.39057323449333],[-121.07956191465493,53.39048411944205],[-121.07981836988601,53.39039030016657],[-121.08005773307427,53.39028117407122],[-121.08031916936797,53.390193174906436],[-121.08057743539872,53.390099986084195],[-121.08080267745282,53.38998241323788],[-121.08102474799556,53.389859659831075],[-121.08116760216458,53.38970386390992],[-121.08122980197714,53.389527318964056],[-121.08133268659196,53.38935808177989],[-121.08153292287473,53.38922824301503],[-121.08177771667187,53.3891210185909],[-121.08205557952152,53.38905390941623],[-121.08235283546351,53.38903084122075],[-121.08265290199346,53.3890483067522],[-121.08295063160983,53.38906960973246],[-121.08325104076675,53.38906800631102],[-121.08354991486664,53.389047239064126],[-121.08384025786667,53.389002544673254],[-121.08412465329806,53.388944118892994],[-121.08439630178624,53.38886551764421],[-121.08468535213885,53.38881570993318],[-121.0849843220124,53.388826395394844],[-121.08528582549522,53.38883156102923],[-121.08557816299441,53.38886667610487],[-121.08584174651783,53.38895393813605],[-121.08609897582356,53.38904710864881],[-121.08636282283129,53.3891321343779],[-121.0866330920045,53.389210687166106],[-121.08689025879549,53.38930441921304],[-121.08714120108647,53.38940295119312],[-121.08736698392404,53.38952289298105],[-121.087615918902,53.38962246384215],[-121.08786686583167,53.38972098533667],[-121.08805829060991,53.389860284927735],[-121.08825386671134,53.38999638681532],[-121.08846117549881,53.39012904731148],[-121.08875744301811,53.39013061844645],[-121.0890250052716,53.39005464976709],[-121.08930350205505,53.38999821383005],[-121.08960540507734,53.390000024740665],[-121.08988398575262,53.39007217524747],[-121.09009798289539,53.390196116274666],[-121.09035509762957,53.390290404048365],[-121.09065349256215,53.39030609987702],[-121.09094558478083,53.39034342795362],[-121.09122209456692,53.390417178526825],[-121.09150139907491,53.390483174100105],[-121.09176954633632,53.39056387271094],[-121.09201836738886,53.39066455189035],[-121.09227795617639,53.39075387953299],[-121.09253086466596,53.39085191442441],[-121.0927630252947,53.39096593648535],[-121.09298507412946,53.39108571233757],[-121.09321496668538,53.391203008644005],[-121.09339883329658,53.39134255245765],[-121.09361854960362,53.39146616551239],[-121.09377836836705,53.3916176254223],[-121.09397792577471,53.39175219210831],[-121.09418364288356,53.39188252979542],[-121.09439733528141,53.392009261398705],[-121.09458691282099,53.392148472767616],[-121.09478252065777,53.392284563777075],[-121.09499621689913,53.39241129428062],[-121.09520998015536,53.392537461133315],[-121.09540144203648,53.392676748724675],[-121.09559497955115,53.392814441650096],[-121.09580680163968,53.392941093116924],[-121.09602860876566,53.39306309833488],[-121.09625054652189,53.39318399449367],[-121.09648072039833,53.39329904921557],[-121.09670655073882,53.393418973060605],[-121.09694094155516,53.3935302748845],[-121.0971505665803,53.39365963586743],[-121.09738081017547,53.39377413450272],[-121.09760891602431,53.39389078138915],[-121.09781659986128,53.39402062691991],[-121.09802817401564,53.39414950952091],[-121.09828559132966,53.39424154482244],[-121.09857486027514,53.39428716292673],[-121.09887438402582,53.39430962110586],[-121.09917391880896,53.39431579163211],[-121.0994712374398,53.39434096924138],[-121.09977134891327,53.3943583915733],[-121.10006262992333,53.3944029659606],[-121.10036314214113,53.39440075609411],[-121.10066384921774,53.394396873564375],[-121.10096275255134,53.39437606264979],[-121.10126052910336,53.39439731977621],[-121.10153319459914,53.394472008916644],[-121.10182454390369,53.39451601572795],[-121.1021157625392,53.39456114835086],[-121.10239965174125,53.39462056760224],[-121.10265059742692,53.39471962095187],[-121.10289337567075,53.394823951960696],[-121.10309479117852,53.39495914385023],[-121.10335261513467,53.39504781540179],[-121.10362074960867,53.395129041459086],[-121.10388213975645,53.39521953861016],[-121.10409808264477,53.395343540516095],[-121.1042480360125,53.39549906935582],[-121.10441380696231,53.395648511753606],[-121.10458554334208,53.39579538769356],[-121.10474327821841,53.39594899033003],[-121.10495507799878,53.396076188589305],[-121.10517893776763,53.396197136386064],[-121.10541336645278,53.39630842137799],[-121.10564967688028,53.39641977435193],[-121.10590258495597,53.39651834382709],[-121.1061473266935,53.39662218223118],[-121.10639829312996,53.39672122758498],[-121.10666443349582,53.39680349587181],[-121.10694367446627,53.396870572594494],[-121.10722311096826,53.39693597674657],[-121.1074931433886,53.397017280313925],[-121.10775708355453,53.397102258288406],[-121.10803172316119,53.39717644653842],[-121.10831583295055,53.39723417969182],[-121.10859961885807,53.39729470167154],[-121.10887912526084,53.397359547598576],[-121.10916096776135,53.3974205541629],[-121.10945474516353,53.39746014920815],[-121.10975585780261,53.39746916887824],[-121.11005522108817,53.39747699287407],[-121.1103568540825,53.39748154065611],[-121.11065855790123,53.397469246472866],[-121.11095009516526,53.39743070574083],[-121.11114885346272,53.397296833261905],[-121.11128287384878,53.3971350272885],[-121.1113929797337,53.39696774588465],[-121.11151040823067,53.396802445477164],[-121.1116259552831,53.39663707658555],[-121.11174895485533,53.39647257107151],[-121.11189197770553,53.396314503601154],[-121.11205495920501,53.396163428430825],[-121.11223945218637,53.396022230165265],[-121.11242945335356,53.39588237210887],[-121.11245659599433,53.395713924318976],[-121.11254654932564,53.39571986905201],[-121.11243370341595,53.39555352551729],[-121.11233440429586,53.3953843700696],[-121.11223322655378,53.39521513723892],[-121.11213010470709,53.39504639028852],[-121.11203865107592,53.394874745244934],[-121.11197214920769,53.394699643454615],[-121.1119401278048,53.39452033593686],[-121.11198146698219,53.39434348841499],[-121.1121099011098,53.39418089508106],[-121.11226924479769,53.39402854728878],[-121.11242495753189,53.39387493604947],[-121.1125752920195,53.39371884861776],[-121.11273100249143,53.39356523695518],[-121.11289759907142,53.393415432584845],[-121.11306957154682,53.39326810392623],[-121.1132451725784,53.39312203820683],[-121.11341889202977,53.392975903891084],[-121.11359630446378,53.392830478170204],[-121.11377734437099,53.392686324297635],[-121.11396000251102,53.39254448259674],[-121.11415536034077,53.39240708852634],[-121.11435946279751,53.392275677329366],[-121.11457950385021,53.39215333854852],[-121.11482397067945,53.39204828152604],[-121.11508210622083,53.39195558120448],[-121.11534024062537,53.39186288031905],[-121.11559500495781,53.3917666715994],[-121.11580953182194,53.39164298121312],[-121.11597066632767,53.39149126878085],[-121.11610277044656,53.39132937970048],[-121.11620921335512,53.39116082132051],[-121.11626368597061,53.39098451259014],[-121.11626372484534,53.39080541003712],[-121.11622786423749,53.39062651216094],[-121.11619388314888,53.39044769148256],[-121.11616936382545,53.390268693629835],[-121.11614108527493,53.39008955024765],[-121.11608986816762,53.389912824004334],[-121.1160195345164,53.38973812393441],[-121.1159414894506,53.389564795770696],[-121.11586739866316,53.38938994112534],[-121.11580089057367,53.3892148320685],[-121.11573632659758,53.389039245860126],[-121.11567558585554,53.38886325973535],[-121.115616725795,53.38868734185684],[-121.11555987417499,53.38851039250651],[-121.11550678230942,53.38833358864296],[-121.11545181073998,53.38815671644543],[-121.11540059887703,53.38797998973998],[-121.1153494518566,53.38780270866622],[-121.11531547677771,53.38762388749234],[-121.11530236613126,53.387444243981136],[-121.11525873645833,53.38726727177497],[-121.11517110950946,53.38709522863809],[-121.11505639729073,53.38692880965472],[-121.11491239686774,53.38677072704099],[-121.11473469997992,53.38662642315367],[-121.11454514511772,53.38648668917347],[-121.11435358363866,53.38634798629068],[-121.11416396686903,53.386208806015595],[-121.11397260223325,53.38606843056734],[-121.11384597401455,53.38590713479102],[-121.11387777183575,53.38573101716863],[-121.11393224718901,53.38555470904101],[-121.11395316015958,53.38537477499987],[-121.11396266920298,53.38519549498619],[-121.11395902538969,53.38501567414019],[-121.11394592134245,53.38483603025211],[-121.11392329379477,53.38465710870921],[-121.11388174606941,53.384478541084455],[-121.1138305452696,53.38430181338792],[-121.11378517600498,53.384123645506584],[-121.11376442740378,53.383944810074624],[-121.11377400239408,53.38376496667927],[-121.1138173321062,53.38358707725681],[-121.1139126211012,53.3834169391223],[-121.11401898731329,53.38324894532609],[-121.11409211779613,53.383074527101705],[-121.11414477540151,53.3828975781192],[-121.11419555265935,53.382720560783056],[-121.11424633052931,53.38254353446927],[-121.11431576556232,53.38236840720546],[-121.11441292862882,53.38219834582341],[-121.11447854031387,53.3820236182624],[-121.11449938478182,53.38184423814858],[-121.11455935909723,53.38166927875938],[-121.11466759712721,53.38150136149088],[-121.11477032877704,53.38133208582307],[-121.11485828789411,53.3811599658184],[-121.11496276688138,53.38099188480791],[-121.11510021858918,53.38083246295905],[-121.11525956535237,53.38067955584468],[-121.11542422215082,53.38052967870339],[-121.11559082197802,53.38037931528322],[-121.11576992277126,53.38023508027509],[-121.11598283670223,53.38010851316303],[-121.11620805625454,53.379989755156],[-121.1164175341522,53.379860243252594],[-121.11664430485696,53.37974436011811],[-121.11690236097144,53.3796516552954],[-121.11717045584267,53.37957002598294],[-121.11744981840003,53.379505146308816],[-121.11774316817977,53.37946611147628],[-121.11804305721483,53.37945204038627],[-121.11834339639121,53.37945034839077],[-121.11864529041343,53.37945152238039],[-121.11894459265639,53.37945876081578],[-121.1192449942843,53.37947279028626],[-121.11954390760013,53.37948338004952],[-121.11984489553531,53.37947609620409],[-121.12013649491105,53.37943585175119],[-121.1204194143902,53.3793728003156],[-121.12069067396699,53.379296351106774],[-121.12095059714966,53.37920371463888],[-121.12116336061256,53.379078255808835],[-121.12128069983663,53.378912953272454],[-121.12143399176388,53.378763159158694],[-121.12168017710805,53.3786587277924],[-121.12192623157019,53.37855541352665],[-121.12210867131684,53.378414675964834],[-121.12221693622521,53.37824618828651],[-121.12225270990301,53.37806798679828],[-121.12223005070034,53.377889066246304],[-121.122192231745,53.37771065519373],[-121.12216393704433,53.37753150320836],[-121.12214510009672,53.377352182516255],[-121.1221395433917,53.37717228410456],[-121.12211306255757,53.37699377246931],[-121.12203708964547,53.37681884346465],[-121.12187903868822,53.37666806083084],[-121.1216278960225,53.37657128238161],[-121.12134799037555,53.376494658095],[-121.12118864740128,53.37635504173719],[-121.12114539350517,53.37617471788711],[-121.12111710325203,53.375995574459424],[-121.12109069284753,53.375816499215745],[-121.12106998267402,53.375637101056014],[-121.12104739412244,53.3754576257289],[-121.121019040449,53.37527903655281],[-121.12099262987338,53.37509997016557],[-121.12096622055974,53.37492089481583],[-121.12093793191089,53.374741751235845],[-121.12090387932126,53.37456348485815],[-121.12084125935708,53.3743874229795],[-121.12073621119787,53.37421915896378],[-121.12062151205951,53.37405274430069],[-121.12052611739752,53.37388263061259],[-121.12044620572831,53.37370921796793],[-121.1203892897117,53.37353282397166],[-121.1203552393841,53.37335456627254],[-121.12030609740857,53.37317624560866],[-121.1201930872373,53.37301157956169],[-121.12004328474843,53.37285495149408],[-121.11993429167889,53.372688213211376],[-121.119819599878,53.372521797650684],[-121.11963793005806,53.372379580979484],[-121.11941616451608,53.372257609590676],[-121.1191798235446,53.372147400253006],[-121.11892897347691,53.3720483806623],[-121.11865856015264,53.37197157250916],[-121.11837551473646,53.37190604002519],[-121.11812842476975,53.37180717311541],[-121.11794099885772,53.37166583983569],[-121.11782618796803,53.37150053988491],[-121.11777887183321,53.3713228584924],[-121.11779781859428,53.371143399664135],[-121.11787460371696,53.37096969576191],[-121.11798830735589,53.37080311486461],[-121.11812396576714,53.37064249391832],[-121.11827594377375,53.370487601273865],[-121.11843336155236,53.370334611945324],[-121.11858358975752,53.37017851513819],[-121.11871373868436,53.37001654429277],[-121.11882374417058,53.3698492538115],[-121.11891716791091,53.36967847900795],[-121.11899763798115,53.36950548295783],[-121.11906515452816,53.369330265686756],[-121.1191140164837,53.36915316790008],[-121.11914798267553,53.36897432609502],[-121.11916692150974,53.36879487578322],[-121.11917264812814,53.368615439546886],[-121.11916140622377,53.368435863032126],[-121.11911978795975,53.368257850160475],[-121.11904371352847,53.36808403611489],[-121.11894840308987,53.36791336632617],[-121.11884337863648,53.3677451001059],[-121.11872669669287,53.367579723523384],[-121.1186022434702,53.36741627330098],[-121.11847202694376,53.36725370898631],[-121.11835340530139,53.36708880914716],[-121.11824262105151,53.36692142837355],[-121.11812400020501,53.36675653721966],[-121.11798789364516,53.36659597597414],[-121.11784194384796,53.36643893575643],[-121.1176842063228,53.36628591154977],[-121.11748650761844,53.36615201448535],[-121.11725448222901,53.366037475992535],[-121.11704078743065,53.36591134710255],[-121.11684931129751,53.365772646842856],[-121.11665576315613,53.3656355499431],[-121.1164582649026,53.365499979172675],[-121.11626679255717,53.3653612779474],[-121.11608535975421,53.36521738339851],[-121.11593741396551,53.36506138112745],[-121.1158517085084,53.36488941385486],[-121.11580058762405,53.36471213097606],[-121.11575523112478,53.36453396213967],[-121.11570974522691,53.364356910886485],[-121.11567390948551,53.3641780105346],[-121.11566074023509,53.36399891934319],[-121.1156759356355,53.363819314681884],[-121.11571366815767,53.363640627855375],[-121.11577743190534,53.36346526642118],[-121.11587085487552,53.36329448453369],[-121.11598642267971,53.36312799109296],[-121.11612381223043,53.3629685666677],[-121.11629027575326,53.36281875531362],[-121.11648898354369,53.36268375404403],[-121.11671236029675,53.36256379923062],[-121.11695146978732,53.362454597477196],[-121.11719912508354,53.36235304133623],[-121.11745182876102,53.36225675004746],[-121.11771650947138,53.36217105720151],[-121.1179957558156,53.36210617569266],[-121.11828924335447,53.36206490394125],[-121.1185853842993,53.362033281144384],[-121.11888281966014,53.36200675961632],[-121.11917980023762,53.361984153489075],[-121.11947839909641,53.36196385903659],[-121.11977686800057,53.361944681456414],[-121.12007540094386,53.36192494878643],[-121.1203740642957,53.36190408880338],[-121.12067305094064,53.361880438483354],[-121.1209687998943,53.361852162618945],[-121.1212633186397,53.361818220755445],[-121.12155667135211,53.36177805856035],[-121.12184872933048,53.36173278472521],[-121.1221373553234,53.36168455737722],[-121.12242313090785,53.3616283606402],[-121.12270094254518,53.361559474783505],[-121.122973831644,53.36148421445067],[-121.12324341689204,53.361404892040824],[-121.12351623975589,53.36133018480047],[-121.12379883877315,53.361268796740084],[-121.12408441551378,53.361214267970034],[-121.1243715450635,53.36116261414788],[-121.12466042333199,53.36111214540952],[-121.12494917034513,53.361062802537454],[-121.12523804723732,53.361012332393884],[-121.12552685816364,53.36096242483228],[-121.1258201366187,53.360922806449906],[-121.12611619861575,53.36089172817196],[-121.12641219595017,53.360861203500974],[-121.126708063376,53.360831795723215],[-121.12700541988575,53.36080581715482],[-121.12730413608553,53.36078438541571],[-121.12760388894863,53.36077029010316],[-121.12790422401021,53.36076745633091],[-121.12820287734958,53.360779142072545],[-121.1285023722779,53.360799854092896],[-121.12879979596613,53.36082216031089],[-121.12909987438442,53.36083783701007],[-121.1293991103741,53.360844494871145],[-121.12970048317804,53.36084899372457],[-121.13000095029979,53.36086131525024],[-121.13029526865697,53.36089415377038],[-121.1305787109328,53.36095575100232],[-121.13083191774516,53.361050353025874],[-121.1310395420649,53.36118014266158],[-121.1312190654115,53.361324500985845],[-121.13140655505403,53.361465250776355],[-121.13161023273193,53.36159656634223],[-121.13186312286534,53.361693955757694],[-121.13213984006373,53.36176481374072],[-121.1324238734011,53.36182137271913],[-121.13271729405521,53.361862037622416],[-121.1330150512793,53.361881534728],[-121.13331669050244,53.36188378914427],[-121.13361722758314,53.36187926002319],[-121.13391782872783,53.36187417579461],[-121.13421836567532,53.361869645154655],[-121.1345174124121,53.361861683905545],[-121.13481820774128,53.36185491647397],[-121.13511777552387,53.36185876137894],[-121.13541501579392,53.36188273197291],[-121.13570339239674,53.36193440311439],[-121.13598471312145,53.361998145794075],[-121.13626862396333,53.36205581322496],[-121.13655913922983,53.362105323915934],[-121.13684790536995,53.36215364829791],[-121.13713686650013,53.36220029104613],[-121.13742764218252,53.362247564331064],[-121.13771848259671,53.36229428255404],[-121.13801217002293,53.362332699104286],[-121.1383091579636,53.36235888880266],[-121.13860672701628,53.36238005283991],[-121.13890636759758,53.36239962100588],[-121.13920400233113,53.36242022025678],[-121.13950105568561,53.362445852627424],[-121.13979998741131,53.36247156110834],[-121.14009813857508,53.36248769648866],[-121.14039971847137,53.362490487294316],[-121.14069838110498,53.36248586344084],[-121.14100001856637,53.362471820161176],[-121.14129135092776,53.36243264118203],[-121.14154743277399,53.362339250954975],[-121.14174955622175,53.36220658746487],[-121.14191054874213,53.36205428339623],[-121.14204064793748,53.36189172310189],[-121.14217793485638,53.36173226849862],[-121.14237117876247,53.36159475819293],[-121.14260147167626,53.361479532541836],[-121.14286272755727,53.36139027715819],[-121.143145105726,53.36133051514007],[-121.14343986101873,53.36129428306608],[-121.14373831425507,53.36127504535762],[-121.14404033676995,53.361273919636226],[-121.14433166477318,53.36125102035047],[-121.14459926635753,53.361172127108],[-121.14486427201396,53.361083020868065],[-121.14511722678887,53.36098388110023],[-121.14536143658447,53.36087875977364],[-121.14560570913456,53.360773083585585],[-121.14585198737095,53.360666365996174],[-121.14609295244736,53.360556627974375],[-121.14632873434319,53.360442742959],[-121.14655195027711,53.36032328634491],[-121.14676279213873,53.36019659513539],[-121.14695575718805,53.360061303641416],[-121.14713440634796,53.359919255312796],[-121.14730236655316,53.35977172133386],[-121.14746326574948,53.35961996392384],[-121.147618852934,53.35946517749312],[-121.14777081109357,53.35930912868123],[-121.14792102019398,53.359151876343596],[-121.14807304107372,53.358995263823765],[-121.14822862268,53.35884048548897],[-121.14839139284071,53.35868880347332],[-121.14856135151402,53.358540217747766],[-121.14873299298533,53.358393389433736],[-121.14890838893639,53.358246714279],[-121.14908365478856,53.3581011565108],[-121.14926079725547,53.35795567517728],[-121.14943975136947,53.357810833568585],[-121.1496168274706,53.35766590604153],[-121.1497939662667,53.35752042388262],[-121.14997110383958,53.35737494144941],[-121.15014454850743,53.3572287510053],[-121.15031812184434,53.35708143369863],[-121.15048800230585,53.356933408401886],[-121.15065425485363,53.356784111830784],[-121.15082244789122,53.35663433733629],[-121.15099064076365,53.35648455365165],[-121.15115889633371,53.35633421535903],[-121.15132352401459,53.356182605816514],[-121.1514845238306,53.356029725038866],[-121.15163814033201,53.35587541970898],[-121.15178631519919,53.35571921215922],[-121.15192717177906,53.35556101680689],[-121.15205514086364,53.35540004934063],[-121.15217216519375,53.355235823157486],[-121.15227817893296,53.35506891053153],[-121.15237324812757,53.354898739248966],[-121.1524609994854,53.354726580302255],[-121.15254324483085,53.354553082601356],[-121.15262186395682,53.354378304925135],[-121.15269672607099,53.354203382825006],[-121.15277346625086,53.35402852836926],[-121.15285383129785,53.35385495374584],[-121.15292111708591,53.35368027923293],[-121.1529791429058,53.35350410378124],[-121.15307057924343,53.35333266085735],[-121.15316382859396,53.353161848851265],[-121.15324781685169,53.352989544833825],[-121.15332630138927,53.35281588422007],[-121.15341035318123,53.35264301675597],[-121.15351279394427,53.35247426857336],[-121.15363731376704,53.352310356197066],[-121.15374713437579,53.35214303198603],[-121.15380696834079,53.35196748699058],[-121.15385009635602,53.351789580245836],[-121.15393407907277,53.35161727562667],[-121.15405309184604,53.35145200625024],[-121.15418485925356,53.351290635058824],[-121.15433126077579,53.35113322075186],[-121.15449572801307,53.350982724094],[-121.15467994582549,53.350840893658244],[-121.15487666147847,53.35070518756293],[-121.15507331100181,53.35057004443706],[-121.15526290018914,53.350430678237636],[-121.15543642763353,53.3502833529664],[-121.15559544764768,53.350130952876],[-121.15574540130683,53.349975370916425],[-121.15588810130181,53.34981724702471],[-121.1560290514253,53.349657928684536],[-121.15613691434734,53.34949107981364],[-121.15620055331566,53.34931513220958],[-121.15626788179924,53.349139901046954],[-121.15635554041283,53.34896830204106],[-121.1564542704305,53.34879883452924],[-121.15655494088826,53.34862888914564],[-121.15665548188666,53.34846006133202],[-121.15675796329576,53.348290755640264],[-121.15686038007554,53.34812200421022],[-121.15696286086859,53.347952689372065],[-121.15826433454053,53.346903633593904],[-121.16681044277392,53.343701769778235],[-121.1696254142913,53.343232429844846],[-121.17803527761347,53.34199497037214],[-121.18381726471003,53.33906313313641],[-121.18948170332135,53.335964583041736],[-121.19806133428646,53.33520314326185],[-121.20059205372027,53.33668888548102],[-121.20099282257196,53.33833382507764],[-121.20909593646637,53.33884473179366],[-121.21745139565223,53.338994711338124],[-121.22611857863349,53.336795278825775],[-121.22559763665055,53.32915297460155],[-121.26952541325035,53.29094362812431],[-121.33815957556234,53.28369622825333],[-121.3442233512123,53.283896338779584],[-121.41517316925447,53.28375514630432],[-121.41528590122901,53.27080877568252],[-121.41531148887603,53.26724971822006],[-121.40352340177944,53.26709567978848],[-121.3986558421037,53.266856826920225],[-121.39828786196347,53.25974252091877],[-121.40342003639044,53.259341639725996],[-121.40361425141643,53.2593553441324],[-121.40531966941668,53.25890167461051],[-121.40508334573752,53.25885995192493],[-121.40475126470147,53.25845356959942],[-121.40974089435863,53.25479554020456],[-121.40993775079951,53.25436980358848],[-121.41203105852749,53.2509009008489],[-121.42008630030669,53.251152528472446],[-121.42560893147136,53.24977560726528],[-121.42721516934269,53.24884236089632],[-121.42846843965765,53.24824911170084],[-121.42857830235506,53.247790804018095],[-121.42808184069136,53.24640028415969],[-121.428084396867,53.245404557178155],[-121.43190186855624,53.24197608117264],[-121.44345205131333,53.24161882594079],[-121.4544065668613,53.241619866244825],[-121.46160416002043,53.24045494728477],[-121.471054599017,53.23778216802382],[-121.47654922789044,53.23326357126498],[-121.47753200640723,53.23125227637445],[-121.4812377870477,53.22755149069467],[-121.48993945570938,53.22551168869642],[-121.50226839167316,53.223721950489484],[-121.50901790318548,53.223190642183425],[-121.52213956825445,53.22241854385827],[-121.52784945924786,53.22218363571966],[-121.53356520319753,53.22246114562267],[-121.54058202372079,53.22124270648139],[-121.54360595854035,53.22023510506967],[-121.54853242537824,53.21943818495457],[-121.55262510646665,53.219559448849],[-121.55704894094043,53.221106885660895],[-121.55709065774845,53.222139530480476],[-121.55842766195214,53.22515552823107],[-121.56059349917307,53.233593130546836],[-121.56678826986494,53.24278765706047],[-121.57187853260051,53.24690191301837],[-121.57760364480778,53.253295889483326],[-121.58287015921357,53.257186024212245],[-121.58740859129709,53.256102377782184],[-121.59565317574447,53.25440373080037],[-121.60051745220923,53.25177648027734],[-121.60547749156419,53.24851276190605],[-121.61318818248738,53.248308553527245],[-121.62729686734366,53.248366534288884],[-121.6314755754086,53.24826476307597],[-121.63592729749219,53.2471233833089],[-121.64038939565778,53.24369461728675],[-121.64398537464466,53.24005032660888],[-121.6561070693716,53.238189371654656],[-121.66708592597311,53.238510677232256],[-121.68438021835892,53.251217746550346],[-121.70183279934612,53.251688253371114],[-121.7089777607934,53.25423019255195],[-121.71312698495662,53.25812189745025],[-121.71432700455802,53.259938688411616],[-121.71880824649847,53.25730701596232],[-121.72093434734086,53.25533768284739],[-121.72401330222043,53.2534672379739],[-121.7292438540952,53.25323105045415],[-121.73412468579386,53.25362516069206],[-121.75224365708178,53.26168363621593],[-121.76184436523108,53.266193490806465],[-121.7743252448046,53.27397914000325],[-121.78101626105256,53.27692167791684],[-121.7892805262753,53.28402116629989],[-121.79389267762086,53.28744906373916],[-121.80704183403783,53.30014313087531],[-121.81232689686621,53.30350136606875],[-121.81963739772362,53.30740879332144],[-121.83482693904114,53.31057969398396],[-121.83847640190403,53.311157189049],[-121.84814205950534,53.31153896239955],[-121.85910107020976,53.311333255155],[-121.87117622061912,53.310190735540324],[-121.8832168837376,53.30785122632712],[-121.8871714871287,53.306540145519755],[-121.89517844458503,53.30367972930983],[-121.90025956344837,53.301774294143314],[-121.90866916170711,53.299711905341695],[-121.9186591709659,53.29905107857855],[-121.92531493689934,53.29844439223738],[-121.93003158051111,53.297172156369385],[-121.93797813899644,53.295512138244085],[-121.94545461029912,53.294035286833164],[-121.94562298512237,53.2979214704296],[-121.94574821936729,53.30335250184838],[-121.94608394195461,53.30941462429332],[-121.946437116381,53.31341705506624],[-121.94721387612977,53.316149646141845],[-121.94778195031122,53.3163530741606],[-121.94827676592502,53.31653492200527],[-121.95243327106445,53.31561686988145],[-121.9539541497233,53.31295931844379],[-121.95412354343911,53.31009689501318],[-121.95534767483039,53.307388804667774],[-121.96071377877043,53.305312714973354],[-121.96325949060113,53.3045268872258],[-121.96457023888684,53.304052478267145],[-121.96824781399782,53.30308509871047],[-121.9724386096383,53.302734807630266],[-121.97614912679755,53.30268115819791],[-121.97946449694778,53.30171686042596],[-121.97993205320692,53.30171026031883],[-121.98458715298037,53.30106838298163],[-121.98618844641234,53.30070232558517],[-121.9875560964581,53.30136631551704],[-121.98725511080987,53.30326205056303],[-121.98834765567987,53.30444355261681],[-121.99023702580253,53.30390034944746],[-121.99020096004094,53.305387620223364],[-121.99023407968089,53.30630606301949],[-121.99284447995623,53.30689358079954],[-121.99494029312903,53.30703166047943],[-121.99596630872288,53.30622133684496],[-121.99711290050676,53.30620279248392],[-121.99855366780847,53.30657623883188],[-121.99960348534687,53.306625099482424],[-122.00366397285865,53.307966484860444],[-122.00498979466933,53.30796456303332],[-122.01166472333988,53.30922140950868],[-122.01720116972477,53.31025452088837],[-122.02597795615966,53.31127584847557],[-122.02912101381699,53.31133448064467],[-122.03427261244559,53.31150112116572],[-122.04029275313702,53.3099601246038],[-122.04439139097948,53.307219832483156],[-122.0464876719855,53.30687228092438],[-122.05192501939278,53.30607317931614],[-122.05506201247822,53.30538757756766],[-122.05801870420095,53.30372981786636],[-122.06088359711818,53.30321288075699],[-122.062792225187,53.30309669707544],[-122.06488682059621,53.302924372223394],[-122.0694556700278,53.30109202392011],[-122.06975022423154,53.299548312292764],[-122.07202798330655,53.297892981008985],[-122.07250559201523,53.29777751279436],[-122.0779465814341,53.29692017700614],[-122.08204756960507,53.296057617198606],[-122.08423285422303,53.295714609475],[-122.08518873024262,53.2953130489502],[-122.08727937041479,53.29177075216683],[-122.08794426993963,53.28817523566679],[-122.08916798285975,53.282286739148034],[-122.0903025699275,53.27800541466003],[-122.0946649289495,53.26389417474027],[-122.09759738932065,53.255779614058106],[-122.09996126084175,53.24892260861735],[-122.10109559258903,53.244296694074464],[-122.10147126233574,53.24332332790619],[-122.10194463469215,53.24178037188577],[-122.10270812877621,53.24035243023938],[-122.10346946369486,53.23943606913724],[-122.10659499035476,53.236691055561806],[-122.10812492756178,53.23640695375257],[-122.11050002235238,53.23543640390898],[-122.11429984372866,53.23434198926676],[-122.11668008306339,53.23331257998558],[-122.11973393303032,53.23296888504888],[-122.12221181744276,53.23267469591213],[-122.12372079317811,53.231305824659785],[-122.12629855118766,53.23090487140832],[-122.12962180365025,53.230899608382344],[-122.13333904295123,53.23003979198667],[-122.1341826280445,53.22837979032019],[-122.1368554555523,53.226607788141],[-122.13941665809176,53.2252320919775],[-122.14246319862279,53.22397202286528],[-122.14435436573264,53.223510173553144],[-122.14940553227153,53.22350676541733],[-122.15120953159769,53.22350537013558],[-122.15473488037736,53.222759291422896],[-122.15929800187831,53.22200525576819],[-122.16319763807208,53.22011427704931],[-122.16442370582958,53.219026936739645],[-122.16633219124958,53.21754091599658],[-122.1678550734547,53.21765303921594],[-122.17089660022035,53.21759266493115],[-122.17309261499233,53.21707684292907],[-122.17621796077054,53.2157579021056],[-122.17859248494595,53.21409769508664],[-122.17973229513224,53.213292972548395],[-122.18164120434565,53.21328946843771],[-122.18373422553012,53.213576855083915],[-122.18667512542132,53.2136284083954],[-122.19020564130028,53.21430753676696],[-122.19363164693023,53.214646600040425],[-122.19572562283433,53.21492482473484],[-122.19695799288776,53.21275465274611],[-122.19856717989593,53.21023641913698],[-122.20179630566837,53.209085104786006],[-122.20446162245321,53.20885529987599],[-122.20655531710173,53.208966722245414],[-122.20817291126345,53.20936017646821],[-122.21026942861037,53.21044549913811],[-122.21331077773321,53.210379552311366],[-122.21568570744476,53.21020415965955],[-122.21759948242698,53.210144137920615],[-122.21940406218164,53.20962507907154],[-122.22100775633419,53.20916746611882],[-122.22320169542782,53.209334515432516],[-122.22616267883234,53.209325707994076],[-122.2287276866594,53.20903943165522],[-122.2305258933817,53.20943160393998],[-122.23443268519524,53.20993793900184],[-122.23586406787503,53.21056911333169],[-122.23796620762803,53.212105681157105],[-122.23825144862491,53.21244628478352],[-122.24063600017658,53.2126689900762],[-122.24349234422145,53.21231814838945],[-122.24577730588956,53.21180159334177],[-122.24938990022736,53.21122495952923],[-122.25100416815454,53.210306165838126],[-122.25069631715714,53.20801830626182],[-122.24964643899436,53.205965552151746],[-122.25029949216628,53.204193931642735],[-122.25095197912765,53.20276671864654],[-122.25331728814224,53.20167589896571],[-122.2571300275824,53.200694203231954],[-122.25931447792073,53.19977649802544],[-122.26139467376032,53.19765891617139],[-122.26299859433254,53.196338551680626],[-122.26394152286308,53.194508139071154],[-122.26477887739898,53.192851654792676],[-122.26553662952306,53.190905436148846],[-122.26609314775946,53.1895362743041],[-122.26856235171722,53.188956695637444],[-122.27321458528291,53.188145154292386],[-122.27567908644339,53.18625318403855],[-122.27662607044638,53.1843678375695],[-122.27766252723553,53.184023474741615],[-122.27841925071942,53.18293319358258],[-122.28125812573086,53.18172941119525],[-122.2835512017311,53.181779017187395],[-122.28582409519007,53.18086196207206],[-122.28658037856452,53.18011549802836],[-122.28839257200248,53.18051061580561],[-122.29009466923561,53.18010737098516],[-122.29267292354922,53.18032842343021],[-122.29408952027583,53.18026958329784],[-122.29608731439971,53.18060364384523],[-122.29847012459332,53.181514041004625],[-122.30085805011542,53.18150906087082],[-122.30008195570377,53.18042570343374],[-122.30168900542769,53.17956270223989],[-122.30492747789354,53.178586285003924],[-122.30500240058021,53.1766981932567],[-122.30517749297248,53.175038168494616],[-122.30537251142792,53.17486811756858],[-122.30583768232366,53.17332429758857],[-122.30800434469273,53.1710336614849],[-122.3100862310569,53.170228009832165],[-122.31246881262389,53.17096535714737],[-122.3134406954799,53.17290402491085],[-122.31354105576668,53.173474840552046],[-122.31686491602228,53.173922238385515],[-122.31953829033661,53.17459948256333],[-122.32183117052077,53.175164428697656],[-122.32544012746176,53.17527040809087],[-122.32885887630017,53.17531932403661],[-122.33295434264082,53.17604767086528],[-122.33620513846105,53.17820873419065],[-122.33773354675462,53.17997703141677],[-122.33862767758283,53.18300238661811],[-122.33967011174506,53.18414305941091],[-122.34282581296927,53.18515777178837],[-122.34492475691715,53.186412368637725],[-122.34588197771696,53.186978187043984],[-122.34758950756873,53.187203110728035],[-122.34959839190468,53.188112108251254],[-122.35189234773053,53.188503132537114],[-122.35474923535212,53.190551633245235],[-122.35694859379578,53.19134519939801],[-122.35914785077333,53.19196650801642],[-122.36162850877338,53.193157920536486],[-122.36591548011806,53.1936059844002],[-122.36866488950204,53.19359557381236],[-122.37189875191889,53.19301545524271],[-122.37665648879027,53.1930534973361],[-122.38008743034779,53.19332675251028],[-122.38028423766366,53.194185374491504],[-122.38355083554276,53.197433678670436],[-122.38862989869294,53.202154043584535],[-122.39169283204849,53.20357961495993],[-122.39636527934148,53.20515954129312],[-122.39981192209017,53.207376786705744],[-122.40182543987696,53.20913699272791],[-122.4043292964301,53.212905505830705],[-122.4050161620038,53.214898508715365],[-122.40837196288254,53.216431203299685],[-122.41028926158201,53.217741270418394],[-122.4134399743852,53.21903929889269],[-122.41554228044131,53.22012041627876],[-122.42088742799665,53.22124174917639],[-122.42364194228648,53.22083584782824],[-122.42423990679369,53.22069572826227],[-122.42649142175607,53.2201949290035],[-122.42877100760182,53.22007242219802],[-122.43305037036306,53.22011499514747],[-122.43304207142367,53.21914552011323],[-122.4346623258992,53.218109535676625],[-122.43502009514458,53.217075355051406],[-122.4362505293474,53.21638378897275],[-122.43615853785789,53.21587116374719],[-122.43679659194954,53.213472908504684],[-122.43867576152842,53.21060941930541],[-122.43968157725203,53.20723166803632],[-122.44088419012448,53.204369116237544],[-122.44114462467135,53.20145524220952],[-122.44122877272211,53.19974254986488],[-122.44330573546208,53.19933661379949],[-122.44521785100426,53.19892570156909],[-122.44795246770099,53.197484950233914],[-122.44794231630084,53.19617608192593],[-122.45020572917088,53.19462018292273],[-122.45133383009438,53.19370553938156],[-122.45295417025852,53.19300923796243],[-122.45703821724858,53.1924820375471],[-122.45654682037954,53.190998909560825],[-122.45671565013026,53.18934315333543],[-122.459659268769,53.18915976818138],[-122.46211066039731,53.18732154966898],[-122.46515820030001,53.18679114292331],[-122.46647079025782,53.18581849231954],[-122.46570086581913,53.184790384434],[-122.46625764194229,53.18387761805029],[-122.46693115273463,53.18444234845065],[-122.46903247398365,53.185350329320535],[-122.46988276767195,53.1839785138686],[-122.47016782258173,53.18380136644356],[-122.47203891186689,53.182250773126434],[-122.47554966815567,53.18138056117241],[-122.47888774719387,53.182221426756904],[-122.47968021156164,53.18370330902992],[-122.48263024028007,53.183977796613206],[-122.48557365341445,53.18397101466785],[-122.48805309774201,53.18412707450331],[-122.49053137261323,53.18520176276061],[-122.49204033882725,53.183483088794205],[-122.49430231605638,53.18227803958239],[-122.49552905882972,53.18124421379765],[-122.49551331278731,53.17998513009508],[-122.4948369633246,53.17872667058588],[-122.49520335505964,53.177928731482325],[-122.49557233675678,53.176555968127246],[-122.4965938267911,53.17546052269066],[-122.49982974677116,53.174995411563906],[-122.50117618974843,53.174143434645146],[-122.50247464843329,53.17332648688211],[-122.50321903313463,53.17194853159228],[-122.50500445159365,53.170686584584296],[-122.50469643053285,53.169146836314916],[-122.50488824158982,53.168460376016625],[-122.50686426116054,53.167250593182416],[-122.51197406705984,53.16425426951604],[-122.5156408008429,53.161096898704386],[-122.51998163137333,53.158676064236175],[-122.52435416024741,53.15860272299354],[-122.52806303150898,53.158753725895814],[-122.53318451752857,53.158329622100524],[-122.53656970350153,53.15528622728513],[-122.53986639375131,53.15258509657716],[-122.54298986369527,53.15199891373674],[-122.5444152788365,53.1519968270004],[-122.54858166650963,53.15094628381244],[-122.55017064096769,53.14893762507056],[-122.55329612714513,53.14795302312976],[-122.55654755215006,53.14873706455341],[-122.55920095985276,53.149128389397696],[-122.56225646723439,53.1497411071895],[-122.56481536217092,53.14926525937156],[-122.56593198052794,53.1478910463621],[-122.5678119529865,53.14616657082194],[-122.5702719378209,53.14524185942185],[-122.57329993916409,53.1439695681268],[-122.57367284012973,53.1436247884715],[-122.57574133368679,53.14178843618128],[-122.57856598044691,53.14080009024992],[-122.58160590061985,53.13993007703772],[-122.58158869944438,53.13884319733816],[-122.58157018550891,53.137586889981954],[-122.58021181817314,53.13565188929197],[-122.58000431998484,53.13450790081084],[-122.5836624012484,53.13117503246024],[-122.58942461113217,53.12851694632306],[-122.59292731966481,53.12747157304475],[-122.59593814529323,53.125455673318655],[-122.59754152230774,53.124533237429354],[-122.59942644967367,53.123837627168086],[-122.60197238803346,53.122563678758716],[-122.60300162324818,53.12113335187107],[-122.6049687254056,53.11940972109419],[-122.60591140296636,53.11905710547059],[-122.6090275746716,53.1179564336595],[-122.61411972613362,53.121760904324454],[-122.62376211899546,53.12548208496813],[-122.63347682328941,53.127371635023934],[-122.63956520184328,53.1271668916252],[-122.65002665919737,53.12853731751206],[-122.655549246201,53.129421679558504],[-122.66478178774584,53.13022600878065],[-122.6757307500431,53.131707130836375],[-122.6842251547109,53.134287713253926],[-122.69265441142323,53.13886627685169],[-122.69909443951549,53.143397068042994],[-122.70832607837245,53.15043014086324],[-122.71559878274552,53.1583854791399],[-122.72065069952646,53.165213210645646],[-122.72700029251166,53.17546207644144],[-122.73112749370931,53.183038617907656],[-122.73790699005507,53.19031290112207],[-122.74382538685487,53.19690410983467],[-122.750066908756,53.20498089721799],[-122.75704169944851,53.212537880515484],[-122.75947545858607,53.22115343583116],[-122.76122014263069,53.227597263716554],[-122.76457931045006,53.23455391845708],[-122.76964582374325,53.24160743660431],[-122.77681414357333,53.24813184778062],[-122.78388582350087,53.25437442432177],[-122.78731693882828,53.26006708263483],[-122.7889701156933,53.262057652941806],[-122.79464145046227,53.2640172392638],[-122.80062814948155,53.26380769151989],[-122.80339464394116,53.26361986873441],[-122.80910861582694,53.26363413366452],[-122.81635899126344,53.26381609692146],[-122.82265748044348,53.26405679119587],[-122.82802493409615,53.266080049389075],[-122.83622536199387,53.271449937010466],[-122.84018674677016,53.27399020191006],[-122.84230695016211,53.27500662035415],[-122.84722589991269,53.278230398124855],[-122.85100114654516,53.281064179775285],[-122.85229494964987,53.28368678788084],[-122.85426300473114,53.28715711123111],[-122.85589462659402,53.2921167024107],[-122.858867474461,53.29786702616002],[-122.86124589837652,53.30231133426542],[-122.86252357788999,53.304358620647136],[-122.8657639649935,53.308964069726265],[-122.86673773853089,53.31004165620476],[-122.87119135283643,53.313325401965784],[-122.8752507606393,53.3156392213354],[-122.87923006343624,53.319040779969704],[-122.88138637347818,53.32205397850907],[-122.88238566879639,53.32422095250514],[-122.88365811786487,53.326157910988],[-122.88629034175602,53.32396286353913],[-122.88713055653976,53.3229862878183],[-122.88708485863958,53.32115834709992],[-122.88562545061261,53.31950976602264],[-122.88272812789246,53.31775894884357],[-122.87896539568933,53.31549749262093],[-122.87508961335695,53.31232908711991],[-122.8736203525079,53.31062063709349],[-122.87728373931827,53.30791297323286],[-122.87970331696012,53.30491909016454],[-122.88540329115241,53.303564977716206],[-122.88794437888785,53.30645922359998],[-122.88887745484642,53.310339038133066],[-122.89000169005347,53.31387508740918],[-122.89382686685532,53.314477597903384],[-122.89932293087362,53.3128359998249],[-122.90359253541699,53.311487944834894],[-122.90651105264998,53.309467592848755],[-122.90739003818264,53.306310249858825],[-122.90782434135438,53.30408327973487],[-122.90966469900445,53.30115504886441],[-122.91499719755306,53.300481877085225],[-122.92012020460196,53.29958324429461],[-122.92619445551767,53.29822684211448],[-122.92951840575516,53.29722458678662],[-122.93273777662493,53.296002549376475],[-122.93778939842485,53.296073558446004],[-122.94112801894607,53.296107501121526],[-122.94414360878095,53.29436856988369],[-122.94848829856632,53.29713518502099],[-122.94877991650138,53.29747291824432],[-122.95288281927901,53.297553649880584],[-122.95467251657921,53.296112662515235],[-122.95791262393149,53.29626023513601],[-122.96026129850567,53.298753179847544],[-122.96334654677759,53.300218138275575],[-122.96501026192453,53.29780549985495],[-122.96704783465944,53.2952139985115],[-122.96874663231121,53.29440125253281],[-122.9700456150145,53.293078146656654],[-122.9693507241616,53.29164919007986],[-122.96750433185832,53.290121275231975],[-122.96743886672698,53.28726463786933],[-122.96596936178553,53.285730065281854],[-122.96222899814703,53.284391903127904],[-122.96397316529179,53.281689780390536],[-122.96847677254415,53.28245363491451],[-122.97353610883016,53.28281323497206],[-122.97782379527834,53.282604616512536],[-122.98221945926268,53.2831992408344],[-122.98519347074111,53.283688618998525],[-122.98965197403032,53.283194606732096],[-122.99199940766093,53.28128955211866],[-122.99550368082403,53.280458843723125],[-122.9966334992235,53.279592064830176],[-122.99763266151571,53.27781255512242],[-123.00113762985787,53.27675464038529],[-123.00496805507521,53.27746645064199],[-123.00754092942118,53.277670420317804],[-123.01032008646534,53.27793559852957],[-123.01102065778227,53.27930053227718],[-123.01123661787459,53.28049906620901],[-123.01325610017383,53.28151033204351],[-123.0158203532232,53.28120201747629],[-123.01822963376641,53.281808673550664],[-123.01747352464083,53.28250226597363],[-123.01391795641185,53.285337251937925],[-123.01452750997672,53.28692861311011],[-123.01645493231635,53.2875450332309],[-123.01818719401922,53.28815596063227],[-123.01906259798673,53.28918209859586],[-123.02126988289324,53.289673149731016],[-123.02386306592324,53.29045360890921],[-123.02447983774641,53.29216225722909],[-123.02734843238893,53.29288113858006],[-123.03015448889744,53.29406204832819],[-123.03137566449716,53.29381619224549],[-123.03319427100945,53.29363404079643],[-123.03704179845653,53.29520186982656],[-123.0396581378085,53.29694741829672],[-123.04187573966549,53.2977293069174],[-123.04401723770795,53.29959803463989],[-123.0465975912575,53.300146105644394],[-123.04822301036376,53.30036145669197],[-123.05233311056281,53.30055777656868],[-123.05357618139207,53.300429970558504],[-123.05400522999174,53.298597220523135],[-123.05527538431728,53.296356449305044],[-123.0568303617964,53.29348246285608],[-123.05850171842093,53.291525758637896],[-123.06162818344623,53.290925948227695],[-123.06381329103182,53.290446296106545],[-123.06646252249891,53.28956656630769],[-123.07177955731225,53.28883505545957],[-123.07466169673418,53.289148888607166],[-123.08174796603821,53.29046089202415],[-123.0863371076782,53.29133330507024],[-123.0893968517641,53.2914756590836],[-123.09643401557565,53.2943867249903],[-123.09879334785644,53.29355805578925],[-123.10389481100661,53.291800049523744],[-123.10721699268916,53.29096893080155],[-123.11159477579417,53.2907604822551],[-123.11596229623684,53.29026121928689],[-123.11930884598789,53.29016925844901],[-123.12549670054679,53.29011242736134],[-123.12646020229005,53.29010436511991],[-123.1281659548207,53.289801986966424],[-123.13207328896539,53.28964867837386],[-123.1370957638221,53.28880399763328],[-123.13875969842492,53.29044693304099],[-123.13955123303315,53.29186531808849],[-123.14597742599804,53.303409476669735],[-123.16147431313466,53.31578471912617],[-123.17395472321763,53.32252366572792],[-123.19893992797411,53.32833404811629],[-123.21791105419905,53.33112140647047],[-123.24619059419801,53.33208747219923],[-123.29275938435212,53.33507933761528],[-123.31655840744332,53.33928689847357],[-123.33326771046707,53.34253135772542],[-123.34293562052336,53.343050044906825],[-123.35824518062614,53.341282606706166],[-123.36784139617077,53.339571786704425],[-123.37761268368327,53.34060059041298],[-123.39322474885255,53.34534309087677],[-123.40823979460816,53.348825516611946],[-123.41488686912844,53.350977490454206],[-123.42514511539194,53.35223148904437],[-123.43732841581803,53.35379851215729],[-123.45266007414052,53.355389171096775],[-123.46103653248588,53.35739952201064],[-123.46526758497033,53.36095258265368],[-123.47234686448918,53.369789328867505],[-123.48015517913556,53.374554999505314],[-123.48459687511685,53.378674466764316],[-123.48575515828304,53.387297423496605],[-123.48558207672197,53.39347537444597],[-123.48713613014057,53.39952277268096],[-123.48653075905513,53.404102028493845],[-123.4868548020961,53.40827270041919],[-123.48995886227297,53.41212423642297],[-123.49640248840073,53.41336518490678],[-123.51377488022068,53.41503178911675],[-123.5313916955192,53.41538267790686],[-123.55270979401446,53.41539403693425],[-123.5720208193485,53.41514824936341],[-123.58624468917345,53.41415570661772],[-123.59774429003429,53.40960428777966],[-123.60518597582137,53.40687127263076],[-123.62449611788976,53.40896194272359],[-123.64544948089033,53.414336973770986],[-123.6664922511104,53.42200043270141],[-123.6832895677855,53.42331082281638],[-123.7020309943176,53.42551156181574],[-123.71529430309722,53.42469354239014],[-123.72791894355477,53.422279829794526],[-123.74075887370927,53.42032394274371],[-123.74790102368888,53.42416465436188],[-123.7577145508426,53.43255079012237],[-123.76679570792365,53.43945179780214],[-123.77228140971967,53.44274988746133],[-123.78155161823234,53.4467273762448],[-123.79105927210556,53.45225237604869],[-123.79587762502446,53.455385618307524],[-123.79947063085373,53.461168507997705],[-123.8056851206809,53.465651819627816],[-123.80866415868934,53.467899395102435],[-123.81455270919649,53.466780807706975],[-123.82815183383902,53.46463035470799],[-123.83947695872332,53.46291293519462],[-123.84397239729539,53.463012814347756],[-123.84960427217327,53.46687576103613],[-123.85013547264208,53.468301404855296],[-123.85514299001363,53.4687373408077],[-123.86655704508198,53.46913265901437],[-123.87563004502381,53.473111870602956],[-123.88956507580399,53.4762731997495],[-123.908240585757,53.47620776445569],[-123.92395541997081,53.474299254894454],[-123.92661811360259,53.47391187107251],[-123.93455219300111,53.471383983179145],[-123.94571791608645,53.46823103345428],[-123.9524945380113,53.465544188038585],[-123.95752145487494,53.462485182456604],[-123.95998618574161,53.45993185687624],[-123.96269665870273,53.460401279432936],[-123.96989959358089,53.4610301540956],[-123.98048424196784,53.460112235372435],[-123.9898361656515,53.4593844026177],[-123.99555527540532,53.458833521774764],[-123.99688376223106,53.458523567953506],[-123.99991231397826,53.45707495544681],[-124.02066234855158,53.44898771958581],[-124.03288631223654,53.44552777194568],[-124.04059586709162,53.4423762714204],[-124.04701644558894,53.43608154738383],[-124.0524536403699,53.43142957243442],[-124.05983637594328,53.43102108995824],[-124.06843199322033,53.431470081308646],[-124.07387993333722,53.43178858543686],[-124.07702973698503,53.432205928243135],[-124.08536807397196,53.43168521838997],[-124.08920593037955,53.43091026824812],[-124.09160601315473,53.42989420832692],[-124.09756372149168,53.42861558850053],[-124.11225462867604,53.43075328986046],[-124.11654298694452,53.43203427005257],[-124.12846772018908,53.43398272892627],[-124.13649352228116,53.435056031080805],[-124.13867366079597,53.43557815173918],[-124.14410981433922,53.43652639810476],[-124.14909884646126,53.435980941658315],[-124.15236017916735,53.4352560916889],[-124.15562891562335,53.43401578146276],[-124.16263877784928,53.4327972827657],[-124.1685775007589,53.432257263865864],[-124.18236620635957,53.43198097863008],[-124.19068848847743,53.43179445221615],[-124.20531959928472,53.43192275980073],[-124.21256774423064,53.43321789454838],[-124.22008337521332,53.43604674891428],[-124.23337999426734,53.44318782732464],[-124.24193496296473,53.44722574317171],[-124.24936748773716,53.45650483983974],[-124.25792756262946,53.460885054369854],[-124.26054314678308,53.465180281394446],[-124.26492363159608,53.46771047053935],[-124.26832853853234,53.47120457327289],[-124.27106150026604,53.47379013816944],[-124.27534742627728,53.475349261484155],[-124.27842237910296,53.47513596368133],[-124.28180933798964,53.47172510562935],[-124.28275024574397,53.46607256636757],[-124.28475449645362,53.45951701888168],[-124.29593991910906,53.45288237650285],[-124.30862372905267,53.44830796824185],[-124.32261559715732,53.445680242315994],[-124.3374570582116,53.445566619604904],[-124.35376470548013,53.45001968367617],[-124.37054098876689,53.45687928222409],[-124.38427744704313,53.46086146933132],[-124.39227674588031,53.464886943727436],[-124.39559058631487,53.46826511383925],[-124.39715869001814,53.474662478848764],[-124.39622619466319,53.4816805683321],[-124.39488359353506,53.48242277697987],[-124.39598680805,53.48636666517029],[-124.3963107177429,53.49173150585608],[-124.39292005472507,53.49623287665008],[-124.38596625090219,53.50140929907503],[-124.38133325824718,53.50476071341688],[-124.38543178243968,53.507053866336555],[-124.39797067326853,53.50921282711073],[-124.41557235151144,53.51103942501628],[-124.4230437019854,53.511744546642596],[-124.43243459657667,53.51205984357704],[-124.44240649133556,53.51220158620829],[-124.46326772239154,53.515919095291146],[-124.48789990116298,53.52711549063481],[-124.52390039693253,53.53456474205967],[-124.52972177686728,53.53806227633034],[-124.57051597215495,53.54693817243736],[-124.57272831116715,53.54505655699108],[-124.57802850823137,53.54266829611914],[-124.58168452809421,53.54102049050741],[-124.58466356235927,53.53925476402782],[-124.5849637571996,53.53708191102132],[-124.58325424867022,53.53485330605995],[-124.58201922067862,53.53291041122529],[-124.58198143909985,53.53268587902582],[-124.58173541840833,53.53056872752587],[-124.58164140526942,53.52977099272833],[-124.58155367339103,53.52834029467752],[-124.58050971255581,53.52656827281301],[-124.57706293263914,53.525649394098906],[-124.56978911638555,53.52477764037549],[-124.56653082679698,53.524548652329926],[-124.56386463909544,53.52248360185418],[-124.5640622660998,53.5198014293617],[-124.56406911866588,53.518717490723645],[-124.56207347809118,53.51562796910614],[-124.55750616780014,53.51128160017634],[-124.5534986476963,53.50870091257989],[-124.54901489368649,53.50635687292999],[-124.54500444503373,53.50388901168541],[-124.54461808405956,53.50326300965193],[-124.54319809089199,53.500631128159895],[-124.54321763839415,53.49789018772789],[-124.54256244442728,53.49543400624018],[-124.53979519670773,53.493320060927545],[-124.53503030468855,53.491307580577526],[-124.5335053178975,53.49084570146478],[-124.52966970953412,53.48992453751871],[-124.52547247771415,53.488550039656936],[-124.51917894630975,53.48408043193895],[-124.51765236063024,53.482819997322025],[-124.5166203553985,53.48081722210906],[-124.51691558039131,53.4780174868439],[-124.52038408037198,53.47602916076972],[-124.52547820595437,53.47375720018525],[-124.52778231798126,53.471359857145785],[-124.52780603174335,53.46982119275792],[-124.52727432318764,53.46388005727471],[-124.52702226987103,53.45685606162984],[-124.5270466444709,53.453145347954845],[-124.52708976061503,53.447607358468474],[-124.52711323910003,53.44435265364446],[-124.52712611113238,53.44355447431677],[-124.52736120962116,53.437273710842916],[-124.52702383647365,53.43053597200369],[-124.52612886283802,53.41991160761801],[-124.52484663028166,53.41174356236266],[-124.52421483942885,53.40825882172928],[-124.52062190935517,53.40151249955463],[-124.5188248238958,53.39859755992952],[-124.5201854139356,53.395060227950204],[-124.5216462058739,53.391238391532674],[-124.51815668583113,53.38460413209768],[-124.51427111186045,53.38025737481735],[-124.51181236798871,53.37734242671581],[-124.50716308505571,53.37247545429085],[-124.5037534066177,53.369213896785965],[-124.50224189536443,53.36681207170925],[-124.50092381684013,53.36321256057797],[-124.50095937303274,53.35967380526541],[-124.50096303069071,53.358301195056605],[-124.50077253373969,53.357728996461525],[-124.49697263693147,53.35532117714603],[-124.49251320882105,53.351997229324965],[-124.49015218099011,53.34896421443746],[-124.48791009235252,53.342625918494484],[-124.48406869432254,53.33222140480224],[-124.481650079955,53.324566244523176],[-124.48100597849039,53.322393641896326],[-124.47810497085268,53.314794940074655],[-124.47718815009794,53.309767520205845],[-124.4771961013055,53.30788057903149],[-124.4777046064073,53.304628470392004],[-124.48222411405953,53.299840950496765],[-124.48969757683582,53.295688135517366],[-124.49793574600055,53.29028837211711],[-124.50321440767279,53.284760004180484],[-124.50362369845814,53.28127344368726],[-124.49381305104434,53.27982652045864],[-124.48132894359838,53.279165982154055],[-124.47219077688689,53.27869292726364],[-124.46142417053193,53.27712116743051],[-124.44848014402835,53.274691294689084],[-124.44164015431676,53.27266863629287],[-124.44185915509539,53.26958592839332],[-124.44544591525477,53.26320236041727],[-124.44852863937716,53.25823918928654],[-124.4506520729367,53.254423243134056],[-124.45161778834361,53.25431034386222],[-124.45314823823163,53.25231545003925],[-124.45430961325158,53.250549379662814],[-124.45508747636163,53.24940864368327],[-124.45603885849634,53.24804043546324],[-124.45805913602844,53.247017822783334],[-124.46081626130838,53.24679532991184],[-124.46367934208436,53.24737594845001],[-124.4664244740145,53.24789726469086],[-124.46786502935365,53.24669833440598],[-124.46930107858518,53.24562148435735],[-124.47418114132796,53.243178683978634],[-124.4755244692737,53.24174980690137],[-124.47876297624687,53.24107700968854],[-124.48277020934442,53.24074341334377],[-124.48639917715064,53.238808551925594],[-124.48728161480771,53.23681392112977],[-124.4879443600301,53.235500618790034],[-124.49090979139136,53.233624395507746],[-124.4948191107323,53.23306559749155],[-124.49825818196032,53.23221439624868],[-124.50017992047043,53.23010956455229],[-124.50246895453388,53.22822730526553],[-124.50361931123089,53.22754312621807],[-124.50611949832286,53.224351227418964],[-124.50793842979073,53.22258564092527],[-124.51138449976665,53.22065108994491],[-124.5131009058199,53.219228721554764],[-124.51435088282928,53.21740659208443],[-124.51482734814985,53.21666287371736],[-124.51646462461916,53.21534872970101],[-124.52102731130255,53.21536261786873],[-124.5252100172607,53.21594198408084],[-124.52797120475071,53.217257167496],[-124.53425229123648,53.21750366886967],[-124.53852714641776,53.217165368195396],[-124.53939321906631,53.21642860125682],[-124.54254198491482,53.213917424271166],[-124.54676831967375,53.2093014473952],[-124.54946121238105,53.20473938703146],[-124.55032438076033,53.20188567374101],[-124.55033149523949,53.200802695195065],[-124.5503518093289,53.19845918020279],[-124.55035259783082,53.19668525978636],[-124.55045613694259,53.194977590713826],[-124.54979539805919,53.19412007737971],[-124.54847007297985,53.193830978809046],[-124.54676962906342,53.19354397830479],[-124.54495440872421,53.193541309530204],[-124.5418104772662,53.19421984348247],[-124.53818715597656,53.19444077072992],[-124.53297048737772,53.19431519979321],[-124.52839782635819,53.19379118029823],[-124.52326825400989,53.1933222401182],[-124.51642042577363,53.19308369954828],[-124.5109049099566,53.193355725107644],[-124.50557228100212,53.19396934412432],[-124.50300593623398,53.193569371579706],[-124.50072949097546,53.19218742102234],[-124.49674509292778,53.19201253000515],[-124.49455985762332,53.190183350473546],[-124.495148493929,53.187552853008675],[-124.49783380923554,53.18459035946147],[-124.49945923374763,53.1831675844966],[-124.50185756307765,53.18151643720348],[-124.50138582075658,53.18128465482136],[-124.5013988099957,53.17837732399394],[-124.50142826076532,53.175005121346565],[-124.50116341921468,53.17232118956878],[-124.4996623066729,53.169405306391326],[-124.49530779278008,53.16494028240734],[-124.49221323764323,53.16048104765864],[-124.48920656018225,53.15567767187388],[-124.4866537284305,53.152871984450414],[-124.48457913663964,53.15053238705741],[-124.48251064707168,53.148865224776195],[-124.47852259171118,53.14765579683743],[-124.48099990796803,53.14669416057232],[-124.49120769771986,53.140324913205156],[-124.49580000001427,53.137590693510724],[-124.5006611654642,53.13486250452133],[-124.50626305104254,53.13447671384087],[-124.53088374192195,53.13172287123595],[-124.57003026599885,53.128999826440754],[-124.5774428267003,53.129069612274755],[-124.6094318384434,53.13476802072757],[-124.65111064119226,53.140867189297126],[-124.6664971259412,53.14139125503449],[-124.67808190382415,53.14083209429046],[-124.69386159116807,53.13833023954113],[-124.70003967089372,53.1391328511378],[-124.71342190162939,53.14496169439543],[-124.71988028264903,53.14793632213387],[-124.73013896712095,53.14965266519722],[-124.7584492529547,53.15114145889179],[-124.77375593327353,53.15251128360883],[-124.7805942980648,53.15496596487796],[-124.78629456243232,53.15793411077716],[-124.79836189647875,53.15947587621576],[-124.80216175802401,53.16026965138028],[-124.80606760090072,53.16049960980135],[-124.8143390888975,53.15792703255366],[-124.82735777570129,53.15437906759004],[-124.83619325437711,53.15300508021406],[-124.84180264324112,53.15339851922151],[-124.85196772447291,53.15436487321811],[-124.86317708431672,53.15441257074814],[-124.87173515125122,53.15440426978555],[-124.87913937014463,53.15325602975728],[-124.88294938177653,53.151994463250745],[-124.88701843716228,53.14999117001816],[-124.88977578445393,53.14599207089179],[-124.89184633096235,53.14073538357575],[-124.89194370738174,53.14044943483222],[-124.8925157236679,53.137481969464204],[-124.89468327163381,53.13421957939298],[-124.89629168304481,53.13170774925537],[-124.89258084962685,53.126968966811916],[-124.8840289641409,53.12183708684193],[-124.8799290113676,53.119440654227986],[-124.8725236097867,53.11522809533028],[-124.86454058429365,53.11083524832092],[-124.86007271953358,53.1088385212473],[-124.86757929387596,53.10917736402987],[-124.87877481498971,53.11099351520381],[-124.8875262178015,53.112981157118774],[-124.89559719591094,53.11525369029029],[-124.89938680507679,53.114626773945616],[-124.9067861425173,53.112787102598254],[-124.91039636845058,53.11038656584581],[-124.90734181862005,53.106333299050746],[-124.9036308418915,53.10279603774534],[-124.90334100837315,53.100112385570775],[-124.90503951561352,53.09520097048481],[-124.90568922363413,53.09148331335946],[-124.90606271397185,53.086287284657026],[-124.90680093409767,53.080287795308315],[-124.90755429723498,53.07543478396932],[-124.91124908333823,53.07194520548848],[-124.91853575595319,53.07010490934386],[-124.92678861463602,53.06906801237862],[-124.93740848103266,53.06905534126877],[-124.94783677606802,53.06892570949198],[-124.9456492203256,53.06607056019942],[-124.93415446546075,53.059860730718285],[-124.92827124167287,53.05478329052435],[-124.92702419148776,53.05324739674878],[-124.92198379063144,53.04742870381241],[-124.92045418783712,53.04114942605791],[-124.92241764044647,53.03446052987262],[-124.92241961516234,53.0332049081376],[-124.92334006026053,53.02755197462297],[-124.9234300034588,53.022235471084635],[-124.92322914328437,53.01955031130815],[-124.92349523378786,53.01612476053077],[-124.92415789822667,53.015322837966615],[-124.92529603622091,53.013439361134324],[-124.92897701830996,53.01200258712021],[-124.93277636448235,53.01416845049953],[-124.93364162125945,53.01599896984184],[-124.93505377946128,53.0162778707115],[-124.93714169147245,53.015819884212526],[-124.93875497787502,53.015822083604455],[-124.94073980637341,53.01530202814425],[-124.94263708579636,53.015296639125495],[-124.94367348041342,53.015068910130765],[-124.94499943732549,53.01460956228817],[-124.94574479579018,53.013467593276474],[-124.94650803462272,53.012205307820594],[-124.94943646140408,53.01157026403435],[-124.95228940208024,53.01156986816967],[-124.95492682781403,53.01122234355153],[-124.95824525848545,53.00990247842174],[-124.96372095501721,53.00646952488543],[-124.96636006312917,53.00480783170821],[-124.96788139037535,53.003659639547124],[-124.96901430922664,53.002513626427906],[-124.97368825801261,53.00005093519339],[-124.97966496845825,52.99865553093638],[-124.98232190610256,52.99744972945102],[-124.98485798632444,52.99567132018233],[-124.98693373465574,52.99315208785018],[-124.98833864098121,52.99120866568725],[-124.99257893701493,52.988675945865396],[-124.99865661387707,52.989236494505406],[-125.00434706423326,52.99167610010729],[-125.00862055928286,52.992801357518005],[-125.01241764127728,52.99387764272291],[-125.01869365172314,52.99688398856686],[-125.02088297170208,52.99842342563181],[-125.02459085036449,52.99886709937594],[-125.02781250337044,52.999028180684824],[-125.03102514129593,52.99827580335042],[-125.03500050401108,52.998780183385335],[-125.0366930950386,52.997230220023134],[-125.0409624808398,52.99727566699836],[-125.04607512751272,52.996339974464085],[-125.05015977590666,52.997298573595],[-125.05366378305578,52.99751837412395],[-125.05734965812125,52.99761849917016],[-125.06246923967439,52.997030105845596],[-125.06424923879145,52.9948517810227],[-125.06776803203242,52.9957526079493],[-125.06830348002892,52.99312230081466],[-125.07342608511443,52.99304781674742],[-125.07549389754118,52.991331032543144],[-125.07775458660883,52.98966167455163],[-125.08513712509985,52.98860811813181],[-125.0880643374089,52.98785366601076],[-125.0916567436153,52.986702528553565],[-125.0961084016241,52.98725334796999],[-125.10038377054921,52.98838031853997],[-125.10360608349664,52.98848387355935],[-125.10880993105059,52.9880633206477],[-125.11410794544022,52.9874168943633],[-125.1172281246867,52.987404443899756],[-125.12064879434317,52.98802000232843],[-125.12492809991954,52.989715377724806],[-125.12949018901675,52.991469823360234],[-125.13536488504968,52.991100679770646],[-125.13857155384882,52.990516238932436],[-125.13958935602201,52.98817322375354],[-125.1432713566997,52.98621043240077],[-125.14532917683688,52.98409007368732],[-125.14805969363036,52.98190787134177],[-125.15127116443136,52.981039047203076],[-125.15504521686266,52.9803938076787],[-125.15654295091905,52.97787422892332],[-125.1588869001715,52.97632383052148],[-125.16303670671489,52.974757645701914],[-125.16538959381033,52.97349124878647],[-125.16973761782101,52.972446190687656],[-125.17588677048658,52.97161920938709],[-125.18052181622814,52.971142784960826],[-125.1856266400842,52.97106387672671],[-125.18969849989165,52.9711597496466],[-125.19566787347075,52.971128366629046],[-125.19869719545262,52.971119315435374],[-125.20210602816513,52.971560985339224],[-125.20722476894898,52.97153558883904],[-125.210465413901,52.9730051518427],[-125.21454299935435,52.9744191279697],[-125.21920077005248,52.975134761895106],[-125.22414247442414,52.97665554050273],[-125.22774294066994,52.97726637664375],[-125.23286903772183,52.977696543577416],[-125.23628385359515,52.9778531928507],[-125.24007246295564,52.97880776726595],[-125.24445125965427,52.98015484474709],[-125.25117698194846,52.98046391231647],[-125.2548736698112,52.9807338692498],[-125.25960637776073,52.980651638121884],[-125.26338765689411,52.97948864088498],[-125.26590972178337,52.976907433499086],[-125.27022439162904,52.97420001874588],[-125.2727671328465,52.97298478598018],[-125.27626097433786,52.97199048650034],[-125.28107684474644,52.97134146109329],[-125.28597918656925,52.969088083556066],[-125.290785462125,52.96809066019365],[-125.29464051980753,52.965957804716325],[-125.29785615581878,52.96548171593609],[-125.30088423120043,52.96551989412239],[-125.30560207552601,52.964409285810575],[-125.30967729967396,52.96427075125802],[-125.31532713482056,52.962700736280624],[-125.31797054849125,52.96159548922488],[-125.32399999465319,52.95956389204887],[-125.32975635952994,52.95873281748091],[-125.33411353032609,52.958648267747556],[-125.33959057692635,52.957531627824665],[-125.34348152519081,52.95865042580812],[-125.34765866609035,52.959602591927364],[-125.35306900729455,52.95991369393932],[-125.35610474874613,52.96040657152966],[-125.36320832884253,52.96122286440989],[-125.36861810822751,52.961592637615965],[-125.37314975196082,52.960817313895376],[-125.37605426967112,52.95908855652225],[-125.37848372488459,52.957188023445525],[-125.3814093480903,52.95602737592229],[-125.38876518068363,52.95484098878864],[-125.39688391653968,52.953468675406505],[-125.40238085139127,52.95395388937664],[-125.40588629561762,52.9539318477313],[-125.40927872162231,52.95345529384998],[-125.41306762338131,52.953424930662834],[-125.41848162684097,52.95453370226043],[-125.42283659923383,52.95456296694392],[-125.42758580179702,52.9552237475317],[-125.43278159158693,52.95484379303369],[-125.4368539362112,52.95481739054179],[-125.44186602422886,52.95478633953679],[-125.44972733436616,52.954729201021735],[-125.45417940573387,52.95533036981896],[-125.46053893067841,52.9560835533239],[-125.46591633232566,52.95547830116769],[-125.47273771122458,52.95508994288182],[-125.48305754721001,52.95524326098111],[-125.49005362066482,52.95519588302645],[-125.49563260879756,52.955154347307925],[-125.50185878296139,52.95334144609715],[-125.51096928117627,52.94967672220763],[-125.5200886422695,52.94640857285867],[-125.52382780681069,52.9440924198411],[-125.52835149485975,52.94360468563679],[-125.54160897263553,52.94350912595475],[-125.54749042240756,52.94432075128978],[-125.55425490080779,52.94627055664693],[-125.55989314259148,52.9490287356346],[-125.56585477879025,52.95378297529258],[-125.57849158332402,52.95642407746858],[-125.59072974721823,52.95724825936788],[-125.59716651804813,52.95799712000445],[-125.61464218395466,52.96037063695313],[-125.62183290673867,52.9603110196273],[-125.62739411012019,52.95894822851811],[-125.6329424531932,52.95730556285516],[-125.63952398443256,52.95513970041212],[-125.6459559261833,52.95473843905052],[-125.65087693754175,52.954869109036956],[-125.65560545649839,52.95482924335388],[-125.65948371367644,52.95479849411988],[-125.66471309458612,52.95555081514545],[-125.67173307380335,52.956237877350034],[-125.67951365811419,52.95697028439055],[-125.69228476473846,52.95657180972955],[-125.7003809942764,52.95490234730392],[-125.7094308413976,52.953275580117776],[-125.71955744626558,52.95336119225156],[-125.72859888960917,52.95522230318949],[-125.73928604020765,52.95884113420576],[-125.7458568545473,52.96009256711597],[-125.75252946600547,52.96186153314781],[-125.75832628794033,52.96295376323778],[-125.7626038974968,52.96365439486978],[-125.76699598145957,52.96527056341096],[-125.77160159393753,52.966081882741385],[-125.77336966133988,52.96640688951577],[-125.77293182037958,53.006502661943415],[-125.77197532391953,53.09430355309072],[-125.77073987252979,53.20707797116679],[-125.80666577798375,53.20707199894113],[-125.81333424422013,53.207072051297395],[-125.81999988726558,53.20707227983318],[-125.82666646058244,53.20707213480823],[-125.83333304660844,53.207072170481595],[-125.83999961754854,53.20707184007027],[-125.84666712955865,53.20707224726293],[-125.85333371330611,53.2070717224693],[-125.86000027811575,53.20707194300082],[-125.86666685793995,53.20707178852419],[-125.87333249070109,53.207071822677335],[-125.87999905209685,53.207072038556014],[-125.88666750402996,53.20707188121818],[-125.8933331336638,53.20707190180801],[-125.89999969217004,53.20707211293007],[-125.90666626568789,53.20707194903971],[-125.91333376819823,53.207071975470825],[-125.9200003254099,53.207071617170456],[-125.9266668954953,53.20707201318976],[-125.93333345065636,53.20707202521197],[-125.94000002075359,53.20707167118102],[-125.94666564471406,53.20707149740337],[-125.9533321982084,53.20707150477749],[-125.96000064164235,53.20707170243355],[-125.96666626428775,53.20707152405976],[-125.97333281672287,53.20707153564381],[-125.98000125937045,53.20707172822795],[-125.98666688122763,53.20707154525851],[-125.99333343314163,53.207071543127086],[-125.99989777619953,53.20711206399207],[-126.01165455319754,53.20718319476895],[-126.01213095990336,53.20725877655515],[-126.01238324071457,53.207357343199135],[-126.01263928728515,53.207450862744324],[-126.01290376386176,53.20753262139087],[-126.01317949005251,53.207599257654785],[-126.01346084127177,53.20765804107061],[-126.01374594274625,53.20771178619025],[-126.01403384929198,53.207761048803455],[-126.01432364631329,53.20780806974411],[-126.01461342858742,53.20785396960513],[-126.01490415697356,53.20790043330479],[-126.01519395632033,53.20794857248532],[-126.0154809367037,53.20800007243906],[-126.01576604367632,53.208055488764764],[-126.01605115118525,53.20811034869874],[-126.01633813479432,53.208164651982415],[-126.01662604898284,53.208217825104605],[-126.01691490919119,53.208271006353854],[-126.01720377012245,53.208324177934585],[-126.01749263178381,53.208377357772584],[-126.01778056434797,53.208431648453015],[-126.01806755259571,53.20848650324354],[-126.0183526667276,53.208543042666165],[-126.01863683706105,53.208601257625176],[-126.01891914858719,53.20866171294023],[-126.01919864103587,53.20872440878014],[-126.01947531443894,53.20878934516443],[-126.01974918435546,53.20885764248128],[-126.02001930553028,53.20892930090939],[-126.02028567827536,53.20900487617802],[-126.0205351793231,53.209096703630266],[-126.02076313005152,53.20921038604467],[-126.02097513889848,53.20933862669425],[-126.02117870539207,53.20947527572704],[-126.02138134373632,53.209613609605356],[-126.02158960747792,53.209746331286745],[-126.0218222490569,53.209865612623545],[-126.02203521119357,53.20999665656504],[-126.02222377191617,53.21011986210057],[-126.02229419706802,53.210272219237105],[-126.02230835076156,53.210449790772095],[-126.02230469603604,53.210632976454626],[-126.02233200214518,53.21082455458243],[-126.02236023203405,53.21100324377556],[-126.022452228533,53.21116736503854],[-126.02261737025478,53.211315778141916],[-126.02281439677664,53.21145747161577],[-126.02300110243918,53.211602518900584],[-126.02316437543111,53.211757098083716],[-126.02331827338223,53.21191616035142],[-126.02341872364532,53.212079714455534],[-126.02340194205186,53.212260661868065],[-126.02327448125229,53.212425381214935],[-126.02306071167455,53.21254921928801],[-126.02282160554647,53.21266410786056],[-126.02340126205556,53.2127401799102],[-126.02369484921036,53.212776529084906],[-126.02398936344859,53.21280616409445],[-126.02428668137138,53.21283075165653],[-126.02458588944943,53.21285365304586],[-126.02488507988078,53.21287151650557],[-126.02518427923434,53.212878740186596],[-126.02548157911663,53.21287138976429],[-126.02577794270383,53.212854520147],[-126.02607430363915,53.21283373297986],[-126.02637160757487,53.212809574792345],[-126.02666701862103,53.212782619844035],[-126.02696337289966,53.2127528675039],[-126.02725879528946,53.212721429601686],[-126.02755420113567,53.21268830593162],[-126.02784962115922,53.21265462581832],[-126.02814314993334,53.21262094541712],[-126.02843762362845,53.21258726406149],[-126.02873209647683,53.212553026270704],[-126.02902656846071,53.212518223081766],[-126.02932103918286,53.21248229879182],[-126.02961550861993,53.212445253400745],[-126.02990810019291,53.21240596701301],[-126.03019975924413,53.21236443940156],[-126.0304895253413,53.21232067081996],[-126.03077648225914,53.21227354115093],[-126.03106062911567,53.21222193004566],[-126.03132317213351,53.212137268596145],[-126.03157444707323,53.2120358129873],[-126.03181633745652,53.21192819284671],[-126.03204697728088,53.211827297464865],[-126.03225133822252,53.2117034367267],[-126.03234033586956,53.21158297723447],[-126.03246682501454,53.2114137668424],[-126.03254734510344,53.21123728204769],[-126.03270009153124,53.21108655474539],[-126.03289225154857,53.210948696074624],[-126.03310128092302,53.21081643422154],[-126.03330374982453,53.210681933093646],[-126.03348276429195,53.21052894764884],[-126.03365332230685,53.21036701032298],[-126.03384358168799,53.21022466911313],[-126.03407703199031,53.21012825036408],[-126.03435176572968,53.2100749489731],[-126.03463119909979,53.21002613601527],[-126.03491626202472,53.20998123755405],[-126.03520414858798,53.20994025438282],[-126.03549671904912,53.209902639182985],[-126.03579116700692,53.209867819138125],[-126.03608842236288,53.209835238247344],[-126.03638757080569,53.20980601714098],[-126.03668858093049,53.209778470777096],[-126.03698960763614,53.20975317334738],[-126.03729156528131,53.209728986267244],[-126.03759352407907,53.20970648345478],[-126.03789453874185,53.20968566521199],[-126.03819369246388,53.20966483784102],[-126.03849190159644,53.20964513935514],[-126.03878916717605,53.20962767220607],[-126.03908738612539,53.20961917592588],[-126.03938655601225,53.20961683613704],[-126.03968666091053,53.209619532466895],[-126.03998769881723,53.209625033130465],[-126.04028780702286,53.209631098012316],[-126.04058886009517,53.209636597143785],[-126.04088801935033,53.20963873505154],[-126.04118811959331,53.209636390394124],[-126.04148633756792,53.20962732341065],[-126.04178267146818,53.209609849078525],[-126.04207994710929,53.209589021521346],[-126.04237627544786,53.209566508519146],[-126.04267353265571,53.20954287407025],[-126.04296985807788,53.2095181188424],[-126.043266181429,53.20949167783609],[-126.04356250268289,53.20946356001428],[-126.04385882238061,53.20943432108055],[-126.04415420960609,53.20940340567785],[-126.04444958020753,53.20937136021056],[-126.04474401887438,53.209338202950164],[-126.04503845528474,53.20930335992033],[-126.04533195909413,53.209266831476896],[-126.04562451588383,53.209229191262075],[-126.04591707092638,53.20919042099077],[-126.04620867890631,53.20915053895738],[-126.04649935355643,53.20910840686626],[-126.04678721365522,53.20905899724107],[-126.04707224281186,53.20900118973676],[-126.04735631897633,53.208937215402244],[-126.04763852925734,53.20886931535325],[-126.04792072109815,53.20879918285711],[-126.04820105204142,53.20872960614709],[-126.04848324457575,53.20866170408526],[-126.04876451108765,53.20859829217836],[-126.04904765883411,53.20854047171775],[-126.04933269186179,53.208491621729095],[-126.04962055628313,53.20845228854486],[-126.04998813498403,53.20842131936914],[-126.05020381673391,53.20841226522499],[-126.05049920994972,53.20840877860684],[-126.05079837939147,53.20841369690246],[-126.0510994189501,53.20842644727491],[-126.0514014101198,53.20844424262372],[-126.05170528398091,53.20846763823944],[-126.05200916162869,53.20849383848473],[-126.05231304241393,53.208522269729464],[-126.05261692501297,53.20855182952837],[-126.05291987632941,53.20858025962915],[-126.0532218806442,53.20860701330472],[-126.05352200620634,53.20863097061163],[-126.05381930549663,53.208650437992894],[-126.05411473658859,53.2086637479195],[-126.05440639301838,53.20867033661352],[-126.05469430248687,53.20866852801432],[-126.05497843188854,53.20865607245833],[-126.05522779474107,53.208585928811345],[-126.05544331756225,53.20845586507208],[-126.05564755534948,53.20830284309153],[-126.0558658837144,53.20816324960341],[-126.05611708728713,53.208070140054694],[-126.05638988338941,53.20800111217447],[-126.05667396049238,53.20794215265365],[-126.05696553613278,53.20789216078465],[-126.05726181961109,53.20785111993522],[-126.05755998876019,53.20781792899544],[-126.0578562926013,53.20779257185689],[-126.05815167660784,53.20777506599593],[-126.05845080885457,53.207766511563726],[-126.05875089561238,53.207764687098816],[-126.05905193622345,53.207769018963766],[-126.05935296818174,53.207777831556825],[-126.05965307473024,53.20779000496747],[-126.05995130906985,53.20780441930935],[-126.0602523644536,53.207818831466525],[-126.06055715936635,53.20783548169226],[-126.06086103069087,53.20785661309665],[-126.06116023225982,53.20788558873645],[-126.06145100216204,53.20792520704593],[-126.06172771800358,53.20797828538984],[-126.06197916537646,53.20806106168026],[-126.06219411263469,53.208188106804045],[-126.06238938901468,53.208334772875574],[-126.0625780888912,53.20847752526779],[-126.06272836944765,53.2086348535594],[-126.0629067626615,53.2087770461943],[-126.06313107934133,53.20889401021921],[-126.06336944676158,53.209004235109184],[-126.06361061798951,53.20911222622929],[-126.06384618365199,53.209223572023866],[-126.06406861975996,53.209343896375735],[-126.06427513537479,53.209473182944876],[-126.06447510271573,53.20960751885978],[-126.06466943367971,53.20974466291311],[-126.06486378176183,53.20988236233297],[-126.0650599891685,53.210018375366225],[-126.06526276325611,53.21014991192952],[-126.0654786552639,53.21027303362883],[-126.06572640100899,53.21037428555769],[-126.06598071333308,53.210471060788784],[-126.06641971668182,53.21053131558439],[-126.0667142628338,53.210572039191106],[-126.06700784557414,53.21060100320099],[-126.06730421407924,53.21060755749115],[-126.06760709595606,53.21057713509719],[-126.06787800389445,53.21050191542199],[-126.06812262763127,53.21040262674723],[-126.06835971713492,53.210293814275126],[-126.068592115576,53.21017995788662],[-126.06882450913307,53.21006386925882],[-126.06905784948064,53.209949455690555],[-126.06929775408683,53.20984007500523],[-126.06954329545299,53.20973742170909],[-126.0697897668613,53.20963532305434],[-126.07003718239937,53.20953322332283],[-126.07028554484621,53.20943279858233],[-126.07053671486064,53.20933405668277],[-126.07078976402008,53.20923811853253],[-126.07104562170476,53.20914440993267],[-126.0713052520592,53.20905518895431],[-126.07156769385914,53.2089698825235],[-126.07183201020624,53.20888457437083],[-126.07209725387546,53.20879814468825],[-126.07236343984471,53.20871059346025],[-126.07262962471177,53.20862304163031],[-126.07289768599853,53.20853660841541],[-126.07316669438515,53.208451850081104],[-126.07343663588951,53.208369340260354],[-126.07370938903466,53.20829074489237],[-126.07398309429682,53.20821662978642],[-126.0742586830182,53.2081475500578],[-126.07453615727854,53.20808463502751],[-126.07481646445927,53.208029004457295],[-126.07521397028952,53.20796432695708],[-126.07538460977675,53.20794349613011],[-126.07567527911554,53.20791921839197],[-126.07596972239932,53.20790782628388],[-126.07626793383224,53.207905958665066],[-126.07656991054802,53.20791192150614],[-126.07687282680142,53.20792292912519],[-126.07717669361661,53.20793674076311],[-126.07748150589835,53.20795054204079],[-126.07778537104991,53.20796323174688],[-126.07808828280669,53.207971430850066],[-126.07838837639024,53.207972917772366],[-126.07868657773484,53.20796543324997],[-126.07898007350879,53.20794507131313],[-126.0792697577236,53.20790062767489],[-126.07955472514526,53.207837695867795],[-126.07983123383563,53.20776132460199],[-126.08009928130544,53.20767823617143],[-126.08035794038977,53.20759010733864],[-126.08060813387578,53.2074930296771],[-126.08085363199596,53.20738922348598],[-126.08109631774798,53.20728262225397],[-126.08133710851845,53.20717434574086],[-126.08158072315109,53.20706829857033],[-126.0818149427113,53.20695385906308],[-126.08204822749646,53.20683774365408],[-126.08230406206961,53.20675241789733],[-126.08260498625786,53.20669955098325],[-126.08290505229547,53.206691498829215],[-126.0831508959073,53.20676863233045],[-126.08336029066692,53.20691189297248],[-126.0835687300167,53.20704170943302],[-126.08376874492251,53.20717489259265],[-126.0839612561663,53.207314238291474],[-126.08414254269955,53.20745975816959],[-126.08434254304258,53.207591264266554],[-126.08461096949027,53.20770254551477],[-126.08488489921801,53.2077516460144],[-126.0850102753945,53.207609268826715],[-126.085076476083,53.207415961514016],[-126.08512486125022,53.207227704138695],[-126.0853628616028,53.20713230124659],[-126.08557367528024,53.207045315821354],[-126.08585485036461,53.20696949175557],[-126.08618770455426,53.20694067615039],[-126.08647366909712,53.20691862503533],[-126.08663523452321,53.20705071104901],[-126.08679499671334,53.20721752971443],[-126.08699969818161,53.207347898570255],[-126.08720722058301,53.20747770928362],[-126.0874147281054,53.20760696393158],[-126.08762412628533,53.207735652142546],[-126.08783350956244,53.20786377531892],[-126.08804383823657,53.20799134171025],[-126.08825511464624,53.208119471682494],[-126.08846732025994,53.20824647124134],[-126.08867858303866,53.20837403578555],[-126.0888907923886,53.208501599235525],[-126.0891020727241,53.208629162996196],[-126.08931333932954,53.20875672638277],[-126.08952462221443,53.20888428937267],[-126.08973496226429,53.209012417359496],[-126.08994435825885,53.209140536718685],[-126.09015282762118,53.209269785739615],[-126.09036036792709,53.209399026131294],[-126.09056602128129,53.209529396928076],[-126.09077074677906,53.20966032377481],[-126.09097359909444,53.209791807401835],[-126.09117552356567,53.20992385605438],[-126.09136339373048,53.21006487815989],[-126.09152035163368,53.21022553481044],[-126.09166420937862,53.21039235893234],[-126.09181366326375,53.210551335933594],[-126.09198652188222,53.21068732248557],[-126.09221930602047,53.21077845629206],[-126.09253821490547,53.210797254022566],[-126.09284294827565,53.210763404569676],[-126.09309315775977,53.21067806010944],[-126.09332642098073,53.21055687658958],[-126.09355967033822,53.21043681298376],[-126.0937888577376,53.21017053919926],[-126.09391979453555,53.21000854633544],[-126.09402163906304,53.209841530242414],[-126.09409159445336,53.209666696767115],[-126.09413808761929,53.20948795609027],[-126.09416299947904,53.209307556450675],[-126.09415885033081,53.20912886492025],[-126.09410125386417,53.208950206859974],[-126.09405021500301,53.20877155251399],[-126.09406388197412,53.208595078570596],[-126.09411132438036,53.20841858675506],[-126.09417375723852,53.20824263869714],[-126.094248389517,53.2080672365928],[-126.09433240150223,53.20789295629427],[-126.09442391999289,53.207720901721125],[-126.09452014037682,53.20755164872454],[-126.09462572518683,53.20738350852977],[-126.09473883006171,53.20721704725467],[-126.09485849337112,53.20705169201677],[-126.0949837860796,53.20688801717212],[-126.09511283135707,53.20672545954151],[-126.09524187564246,53.206562901756136],[-126.09536528234426,53.206395866858024],[-126.09548774029571,53.206227712206385],[-126.09561584252704,53.206061237900485],[-126.09575707099768,53.20590091040929],[-126.09591709092975,53.20575065089222],[-126.09610150496496,53.20561325118606],[-126.09631222106765,53.20548983896582],[-126.0965304304059,53.205369781380696],[-126.09675428753073,53.205253079896686],[-126.09698376116727,53.20513917880236],[-126.09721700456973,53.20502750594893],[-126.09745398777964,53.20491807926513],[-126.09769473818294,53.2048097604058],[-126.09793642146334,53.204703125322595],[-126.09818091045678,53.20459705208353],[-126.09842541320619,53.20449096935865],[-126.09867084495107,53.20438489431151],[-126.09891533024178,53.204278810576206],[-126.09915888150353,53.20417161569892],[-126.09939962329074,53.20406329333259],[-126.09963847083665,53.20395386065045],[-126.09987357476116,53.20384162521523],[-126.10010490769331,53.203727707447136],[-126.10033155181803,53.20361099673263],[-126.10055255928107,53.20349037352699],[-126.10075853855471,53.203359670337385],[-126.10094855682404,53.20321778558503],[-126.1011272879564,53.20306805855658],[-126.10130039742275,53.20291441921776],[-126.10147068244173,53.20275966165511],[-126.10164377978097,53.202608262549404],[-126.10182346184862,53.20246302406916],[-126.10201441752507,53.20232729431462],[-126.10222135209197,53.20220499497266],[-126.1024489408521,53.20210003875554],[-126.10269626745752,53.20201187959793],[-126.10295957598673,53.2019382619635],[-126.10323509287649,53.201875845832035],[-126.1035209374712,53.20182237408375],[-126.10381336887957,53.20177562709515],[-126.10411143514622,53.20173279126872],[-126.10441138023278,53.201691629118855],[-126.10471132198386,53.20164935479759],[-126.10500750282394,53.20160315724877],[-126.1052980432302,53.201551362086946],[-126.10558106082757,53.201491165607116],[-126.10586781416832,53.20142537218994],[-126.10615924681791,53.20135340732933],[-126.1064365810912,53.201271371021356],[-126.10668387050586,53.201173675837346],[-126.10688140312993,53.20105473786021],[-126.10699634924826,53.2009005777892],[-126.1070521459706,53.200718470580384],[-126.10709760387644,53.200529641445264],[-126.10718061499051,53.200354231802116],[-126.10733305462713,53.20020284284742],[-126.10752585193536,53.20006486159769],[-126.10762319770105,53.19999979131262],[-126.10772897483572,53.19992911139066],[-126.10791331226257,53.19978665566805],[-126.10808827888444,53.19964084706183],[-126.10826510448692,53.19949503648604],[-126.1084400686897,53.19934922733741],[-126.10861408372071,53.19920229840972],[-126.10878527583633,53.19905480713506],[-126.10895085052341,53.198905088972026],[-126.1091117243018,53.198753689844494],[-126.10926414401105,53.19859949285379],[-126.10940719322996,53.19844195213335],[-126.10953990757334,53.19827937459528],[-126.10966416660884,53.19811344358306],[-126.10978280849518,53.197945276871906],[-126.10989955641405,53.1977759914034],[-126.11001537479186,53.19760726237484],[-126.11013494538064,53.19743965907129],[-126.11025921898481,53.197275403429614],[-126.11039098574919,53.19711451076222],[-126.11053403158122,53.19695920034601],[-126.11069020446028,53.196810608720845],[-126.11086234085073,53.196669279927384],[-126.11105795561765,53.19654080875306],[-126.11127890733906,53.19642464659309],[-126.11151863487781,53.196318540797805],[-126.11177150280781,53.19621858868617],[-126.11203188009486,53.19612255473956],[-126.11229413121035,53.19602650947558],[-126.11255262661464,53.19592879110413],[-126.11280173075676,53.19582547920261],[-126.11303674108193,53.19571378184684],[-126.1132623720642,53.19559536173808],[-126.11348141674331,53.19547135456011],[-126.1136891935383,53.195341191205934],[-126.11388570547889,53.19520599211144],[-126.1140709526271,53.19506576629448],[-126.114251493004,53.194921627863565],[-126.11442546963494,53.194774690050934],[-126.11459288104834,53.194624397177165],[-126.1147518403485,53.19447187147818],[-126.11490329409025,53.19431766777852],[-126.11503878843881,53.19415844213496],[-126.11514427479408,53.1939908471115],[-126.11523473207377,53.19381822039916],[-126.11532988649158,53.19364670941007],[-126.1152994341392,53.19348035787847],[-126.11544050139238,53.193298162927555],[-126.11585714663161,53.19310953202016],[-126.11606490604075,53.1929799200418],[-126.11628768951631,53.19285982067224],[-126.11652173648899,53.19274531170794],[-126.11675953661313,53.19263248362915],[-126.11699358414934,53.192519094097946],[-126.11721824053949,53.19240011147642],[-126.11742600008162,53.19227330249171],[-126.11761122888188,53.19213531167654],[-126.1177786278899,53.191988375226096],[-126.11793381452758,53.19183528409733],[-126.11807866842946,53.19167773048226],[-126.11821790390778,53.19151737684347],[-126.11835524537015,53.19135590453515],[-126.11849260078264,53.19119443203854],[-126.11863557242904,53.191035750220074],[-126.11878043597822,53.19087819566384],[-126.11892059762752,53.190718395906075],[-126.11905888186213,53.19055804214421],[-126.1191962185912,53.190397133448975],[-126.11933732355693,53.19023789687774],[-126.11948216833196,53.190080897119465],[-126.11963546547265,53.18992724978589],[-126.11979721809588,53.1897780752258],[-126.11997866602533,53.189635602790645],[-126.12019201679993,53.189504857253475],[-126.12043166524317,53.18939257541279],[-126.12069106156174,53.189305486092785],[-126.12095987589083,53.1892290257545],[-126.12123150506747,53.18915647878575],[-126.12150594596054,53.18908673374934],[-126.12178321360844,53.18901979061072],[-126.12206235993526,53.188954520979436],[-126.12234338335843,53.188890369133226],[-126.12262535403308,53.18882733602143],[-126.12290731048421,53.18876485796106],[-126.12318927948213,53.18870182350258],[-126.12346935631382,53.18863823463125],[-126.12374944237237,53.18857296002593],[-126.12403421830298,53.188511596710526],[-126.12432931487072,53.18845638847512],[-126.12445569972635,53.18840023649776],[-126.12472319333624,53.18820052658159],[-126.12490179344314,53.188056373361526],[-126.12507382355352,53.187907180580986],[-126.12523928866348,53.18775463332217],[-126.12539629914697,53.18759873361204],[-126.12554486003373,53.18744115757519],[-126.12568405827705,53.18728247984925],[-126.12580917816108,53.18712044677822],[-126.12591365615506,53.18695172215092],[-126.12607624664122,53.18678292661171],[-126.1261733261616,53.186648376896486],[-126.12628187512973,53.186588325034776],[-126.12639135191094,53.18652770740654],[-126.12655155503569,53.18649952669316],[-126.12667700642042,53.186450095592505],[-126.1268211733602,53.18639056084255],[-126.12696264655264,53.186373038812306],[-126.12710681115848,53.18631294800223],[-126.12739249663973,53.18624653828275],[-126.12764432374692,53.186147108477535],[-126.12796286952647,53.1861019493038],[-126.12827960457498,53.18607807857919],[-126.12855418546853,53.18605985469895],[-126.12885509435856,53.18607409275694],[-126.12915315801914,53.186074888512906],[-126.1294446029875,53.1860544034051],[-126.12973128328747,53.186010959352004],[-126.13001321565348,53.18595014933855],[-126.13029326173096,53.185880933343334],[-126.13057329018056,53.185811160989964],[-126.13085523328299,53.1857497932391],[-126.13114378114635,53.18570521434302],[-126.13144368202097,53.18569479842842],[-126.13174642375753,53.18569614713938],[-126.13199935167923,53.18565105005878],[-126.13228220038843,53.18558294660774],[-126.13265871688539,53.18549569998863],[-126.13273428583305,53.185381335835906],[-126.13277782072522,53.1852188308889],[-126.13287570575194,53.18504785756407],[-126.13301114151976,53.18490093479133],[-126.13327816163932,53.184865902615215],[-126.13361283718196,53.18489017407483],[-126.1339147728738,53.18493240781009],[-126.13418774830733,53.185002127563706],[-126.13445326662217,53.18508921667564],[-126.13472253942952,53.18517293975678],[-126.13499645822091,53.18524600876678],[-126.13527130776835,53.1853190850415],[-126.13554990082115,53.1853854251059],[-126.13583406031164,53.18543832244594],[-126.13614810236274,53.18545196224165],[-126.13646958093197,53.185451036565425],[-126.13674246612668,53.18549049110546],[-126.1369228106608,53.18560960848521],[-126.13703864270119,53.18578032908461],[-126.13713766843033,53.185966198721474],[-126.1372703609618,53.186132982668596],[-126.13747321036888,53.18625374918905],[-126.13771443220536,53.186354303786],[-126.13797716734562,53.186443073250196],[-126.13825486750966,53.18652173221883],[-126.13854003784867,53.186591427667175],[-126.13882705798234,53.1866532685901],[-126.13911030395703,53.186707279505875],[-126.13940379817849,53.186744462921084],[-126.13970661816772,53.186762597001184],[-126.14000937148403,53.18676503601081],[-126.14030458748256,53.18675124205085],[-126.14059407507403,53.186710564875256],[-126.14088164840774,53.18665364814214],[-126.14117016010768,53.18659952607505],[-126.1414624858358,53.186565001034445],[-126.14175957273471,53.1865551270452],[-126.14205952215883,53.186558128844],[-126.14236042207038,53.18656280483944],[-126.14266035082902,53.18655964749584],[-126.14295930254455,53.18654696280249],[-126.14326202588978,53.18653651356632],[-126.14356568269473,53.186527182811574],[-126.14387026725304,53.18651728547639],[-126.14417486287836,53.186506275920465],[-126.14447662742273,53.18649189891047],[-126.14477555894617,53.18647360772147],[-126.14506979197988,53.18644971959742],[-126.1453593245059,53.186419678863615],[-126.1456413123164,53.186380674639054],[-126.1459025954572,53.18631312985945],[-126.14612148091304,53.18618458019489],[-126.14630746113659,53.18602973718367],[-126.14646721083362,53.18587492630455],[-126.14658187883302,53.18569831895828],[-126.14668341951051,53.18551613476591],[-126.14680938548739,53.18535464288558],[-126.14700113247885,53.18523844045566],[-126.14727076028548,53.18514959487989],[-126.14758823121174,53.1850752541209],[-126.14791891422227,53.185022748053115],[-126.14823093408398,53.18499826515296],[-126.14849060918347,53.185010264154776],[-126.14866613929306,53.185086230343565],[-126.14875299085064,53.18526314257667],[-126.14877063004081,53.18548159602679],[-126.14873664143224,53.18567603044066],[-126.14860312719942,53.18582576527123],[-126.14838897851973,53.185963841398284],[-126.14820296178915,53.1861102893161],[-126.14809576643992,53.18627791679628],[-126.1480317045682,53.18645501803574],[-126.1479977039437,53.18664721137094],[-126.14817527937957,53.18677023191971],[-126.14842965198214,53.18687074824917],[-126.14871206921269,53.186953858345824],[-126.14899907908203,53.187007840898126],[-126.14929152578821,53.187008593051026],[-126.14959788129157,53.18696451144595],[-126.14989769524209,53.18692828003285],[-126.15013877043997,53.18698230898436],[-126.15035195676818,53.18709688269497],[-126.1505539850278,53.18724059128893],[-126.15070919936683,53.18739445154341],[-126.15082602476674,53.1875617961451],[-126.1509269209628,53.18773253103739],[-126.15101283757319,53.18790384063871],[-126.15108657396227,53.18807852685777],[-126.15115374605597,53.18825434177793],[-126.15122280638306,53.18842958955883],[-126.151300289956,53.18860315042779],[-126.15139463254997,53.18877277281592],[-126.15152175186967,53.188935621915476],[-126.15167042297635,53.18909397069353],[-126.15181722043144,53.18925231271102],[-126.1519368608863,53.18941573558595],[-126.15201996538474,53.18958704791733],[-126.1520965175273,53.18976285012929],[-126.1521674690756,53.189940900240444],[-126.15222903843268,53.190120647409024],[-126.15227750186007,53.19030096708799],[-126.15231001644727,53.1904796221789],[-126.15232190253346,53.190656627675594],[-126.15230753141776,53.190830870436905],[-126.1522397064721,53.19100125606114],[-126.15212689027321,53.1911688939737],[-126.15198780261774,53.19133433366673],[-126.15184309630231,53.19149753065092],[-126.15170681014348,53.191658484854955],[-126.15154612384393,53.191812183126714],[-126.15134504338957,53.19194464548701],[-126.15112047940882,53.19206200779245],[-126.15088464304704,53.19217322639242],[-126.15064504974303,53.192282773198315],[-126.1504064021092,53.19239287402123],[-126.15017525364931,53.1925074463828],[-126.14995727090965,53.19262984430319],[-126.14975430074047,53.19276062122924],[-126.14955885976619,53.19289587878742],[-126.14936716221689,53.19303392776806],[-126.14918111299606,53.193174765790076],[-126.14899692642743,53.19331673051096],[-126.14881368749148,53.19345980516239],[-126.14863139230987,53.19360288729682],[-126.14844720200088,53.193744842167256],[-126.1482611466219,53.193885687653406],[-126.14805074580853,53.194039443178596],[-126.14783452411753,53.19413326064159],[-126.14794252665459,53.194456360589186],[-126.14804247803514,53.194621487614505],[-126.14822108702474,53.194760191662986],[-126.14845213184307,53.19488034791939],[-126.14868222507295,53.194998255186476],[-126.14890484843528,53.19512009720762],[-126.14912932912823,53.1952408160843],[-126.14936222646259,53.19535312553758],[-126.149610069588,53.195449721348915],[-126.14989807728155,53.19550201523534],[-126.15017674336,53.19556776484182],[-126.15043394677191,53.19565930982182],[-126.15068649120187,53.1957564620734],[-126.15094275786481,53.195849692187366],[-126.15120370467824,53.19593842528216],[-126.15146560164678,53.196028285929025],[-126.15172935169467,53.196115893895126],[-126.15199684176397,53.19619621847662],[-126.15226990468108,53.19626589614934],[-126.1525560118121,53.19630865828349],[-126.1528588645705,53.1963194717393],[-126.15316075299489,53.19632076690878],[-126.15345973676918,53.19629461124929],[-126.15375609966136,53.19632335691781],[-126.15399740056696,53.1964233131546],[-126.15415079831834,53.19658053170056],[-126.15433412394263,53.19672146104795],[-126.1545951016909,53.19681523280328],[-126.15488592377837,53.19686582582056],[-126.15519171428433,53.19690744443307],[-126.15548988974831,53.196917692620914],[-126.1557597288978,53.19687084684839],[-126.15600971315176,53.196776961638804],[-126.15624928908092,53.19665957058206],[-126.15648698030226,53.196539931795556],[-126.15672564380759,53.196432059721694],[-126.15696243567356,53.19632139316695],[-126.15719452077373,53.1962079269406],[-126.15742096701433,53.19609110659906],[-126.1576455265188,53.19597148289075],[-126.15786726264245,53.19585130680019],[-126.1580890104294,53.195730574560315],[-126.15831168903715,53.195610396361516],[-126.15853624766977,53.195491891310155],[-126.15876831979197,53.195377301573814],[-126.15901071670542,53.19526829942722],[-126.15925030316112,53.19515818017236],[-126.15947486311623,53.195041358359475],[-126.15966467870743,53.194907777207284],[-126.15979061462657,53.19474403159074],[-126.15990341861867,53.19457470163719],[-126.16035318577796,53.194514713445336],[-126.16064267317003,53.194465024428894],[-126.16093216635686,53.19441309392959],[-126.16121411411152,53.19435333030959],[-126.16148382791536,53.194279582389136],[-126.1617459659879,53.1941862330129],[-126.16198928263286,53.19407441798795],[-126.16219222770451,53.19394529627832],[-126.16233225273021,53.19378993592267],[-126.16240936240962,53.193609448551726],[-126.16242836831098,53.1934301611745],[-126.1623967451131,53.19325318395744],[-126.16233794144527,53.19307567929129],[-126.16227913400739,53.19289706316429],[-126.16224470054112,53.19271840464958],[-126.16225620509901,53.19253857177702],[-126.16231082728567,53.19236147629548],[-126.16232514052291,53.19218275095374],[-126.16230570414109,53.19200351612707],[-126.16230968736947,53.191818091562574],[-126.1623305376631,53.19163487567306],[-126.16243305145518,53.19147788133139],[-126.162651002851,53.191354339981274],[-126.16290744616171,53.19124811573631],[-126.16315264143527,53.19114246213117],[-126.1634081740649,53.1910457568299],[-126.16368351768962,53.19097982970022],[-126.16397207747495,53.19093797639046],[-126.16426629374754,53.19090452190076],[-126.16456335101509,53.19087665569397],[-126.16486227646237,53.190851035874374],[-126.16516026723714,53.19082428725473],[-126.16545543544207,53.19079306924992],[-126.16574680785439,53.19075400416127],[-126.16603533327786,53.19070430316787],[-126.16633217875342,53.19062321900348],[-126.16660924206462,53.19051975421044],[-126.16683298449806,53.1904466142713],[-126.16707543587118,53.19036000289582],[-126.16700349541469,53.19018308344838],[-126.16691282340024,53.19001011616722],[-126.16692332710095,53.189821311911636],[-126.16691323503387,53.18963926793582],[-126.16693877857922,53.18946109059505],[-126.1670121377882,53.18928732736903],[-126.16711926749396,53.18911631292478],[-126.16726111764119,53.18895701788221],[-126.16743677360003,53.18881336028252],[-126.16764433167528,53.188678064643156],[-126.16787633506338,53.188561771592795],[-126.16813000002232,53.188473465961344],[-126.16841097930802,53.1884164828108],[-126.16870701348638,53.18837405153896],[-126.16900116117388,53.18832881676886],[-126.16932174890285,53.18833227581302],[-126.16961429494692,53.18835538539405],[-126.16990597222322,53.188393625200064],[-126.17019580987645,53.18844418222073],[-126.17048288206772,53.18850427027964],[-126.17076435358317,53.18856996764892],[-126.17104021773251,53.18863959827951],[-126.17131891821028,53.18871314103539],[-126.17156676801362,53.18880857087592],[-126.17182214284226,53.188910155886056],[-126.17207561227825,53.18900390040541],[-126.1722748572634,53.18913245522761],[-126.17245820641399,53.18927223671318],[-126.1726294082111,53.18941932260075],[-126.17279407766398,53.18957145501546],[-126.1729549906514,53.18972526877266],[-126.17311779460245,53.18987908849967],[-126.17328713783769,53.19002897259438],[-126.17346585381794,53.1901782780374],[-126.17367450544435,53.19031241859104],[-126.1739464058515,53.19032602894273],[-126.1742527285011,53.19027795786714],[-126.17455534597055,53.19023717844559],[-126.17485331936251,53.19020872934723],[-126.17512442300647,53.1902581905144],[-126.17538168526335,53.19035864462049],[-126.17560438665028,53.190486594367975],[-126.17579336773468,53.19062412149388],[-126.17597675463423,53.19076501777669],[-126.17615545992744,53.19090872617333],[-126.17632948121131,53.191054673070916],[-126.17650258081686,53.191202306135615],[-126.17667475171798,53.19134994032258],[-126.1768469111827,53.19149813894036],[-126.17699660283479,53.191649723061246],[-126.17717348973622,53.1918051921406],[-126.17738305818382,53.19193148200886],[-126.17758048644852,53.19206675277644],[-126.17778821404355,53.19219697050112],[-126.17799405538966,53.19232774639921],[-126.17818868498817,53.192463576045654],[-126.17835897468527,53.192610654819646],[-126.17850213918366,53.19277008947825],[-126.17863876197988,53.19293233925849],[-126.17878940932182,53.193087289688194],[-126.17897466491654,53.1932253729117],[-126.17918800110924,53.19334941304861],[-126.17941723223387,53.193465030325505],[-126.17965394523064,53.19357614530916],[-126.17989253679939,53.1936878216359],[-126.1801133365291,53.19380569112059],[-126.18032391398488,53.19394261330774],[-126.18045361692148,53.194020286959834],[-126.18073085699343,53.19396103971661],[-126.18083953783365,53.19372447289444],[-126.18093346429764,53.19354899388297],[-126.18103396443438,53.19337461615509],[-126.18115700102997,53.193209175900364],[-126.18131760904785,53.19306103947768],[-126.18150827429496,53.192926857098065],[-126.18170927457555,53.19279658437504],[-126.1819177726002,53.192669660940105],[-126.18213379595635,53.19254553100101],[-126.18235543971305,53.19242418848648],[-126.18258178409565,53.192304514398145],[-126.18281095426939,53.19218652056592],[-126.18304198786876,53.19206964378649],[-126.18327396511599,53.19195276508737],[-126.18350406623652,53.191835888830745],[-126.18373228883247,53.19171845932034],[-126.18395770049823,53.191599904377526],[-126.18418216356731,53.191480794760125],[-126.18440662537245,53.19136168470957],[-126.18463108591364,53.191242574226116],[-126.18485554519086,53.1911234633097],[-126.18508000320413,53.19100435196039],[-126.18530539232897,53.19088580339395],[-126.18553172752554,53.1907678086187],[-126.18575900879486,53.19065036762943],[-126.18598722366157,53.19053405407786],[-126.18621637205727,53.190418850032934],[-126.18644741146852,53.19030420723377],[-126.18668031928883,53.19019180180289],[-126.18691417324868,53.19007995908715],[-126.18715085548676,53.18997034324231],[-126.18738847384155,53.18986241049651],[-126.18762889561339,53.189754472825456],[-126.18787120841147,53.18964709633387],[-126.18811445479383,53.189540829279416],[-126.18836145693275,53.189436240806934],[-126.18860939523051,53.18933333538279],[-126.18886111174237,53.1892337756059],[-126.18911564672244,53.18913758091105],[-126.18937300514698,53.18904585373371],[-126.1896331996262,53.18895804728696],[-126.18989811498577,53.18887639930556],[-126.1901658565302,53.188799783450264],[-126.1904383015881,53.18872876135961],[-126.19071545764548,53.18866164792734],[-126.19099637489,53.18859733322817],[-126.19128106093827,53.188537493322954],[-126.19156858094244,53.18848100930951],[-126.19185892252281,53.18842844586295],[-126.19215021354167,53.18838035274899],[-126.19244340891423,53.18833562594837],[-126.19273755645936,53.18829593413337],[-126.19303077394646,53.18825960426474],[-126.19332402894493,53.18822831087063],[-126.19361635921959,53.18820150877474],[-126.19390873529802,53.18818478040796],[-126.19420308613246,53.18818990012408],[-126.19450032141992,53.18821238486437],[-126.19479761840667,53.18824494328404],[-126.19509679624721,53.188281988373944],[-126.19539503955055,53.18831790489914],[-126.19569324712555,53.18834598698167],[-126.19604571463753,53.18814709551548],[-126.19623817792424,53.1880112098851],[-126.19633771938346,53.18785026477505],[-126.19636783469609,53.1876726378217],[-126.19636977596336,53.18748665016042],[-126.19641300036194,53.187306195974095],[-126.19646558777343,53.18712684661271],[-126.1965491890368,53.18696368690397],[-126.19668249547942,53.18680493511423],[-126.19682892123188,53.18664895784963],[-126.19698567417493,53.186495203992365],[-126.19714805236931,53.18634199626326],[-126.1973123092481,53.186189914519574],[-126.19747562987985,53.18603670474223],[-126.19763425278452,53.18588294685037],[-126.1977844209838,53.18572696207088],[-126.19792239781214,53.18556820096624],[-126.19803880005503,53.185404429525285],[-126.19811202450073,53.18523064667437],[-126.19816274518645,53.185051855177164],[-126.19821344784393,53.184872507956975],[-126.19828668304369,53.18469816921379],[-126.19839650265726,53.184532167577295],[-126.19851570183687,53.1843678262061],[-126.19864146127286,53.18420515876355],[-126.19877191613864,53.18404304796835],[-126.19890707161015,53.18388260522381],[-126.19904503289922,53.18372271330777],[-126.19918579740566,53.18356282546425],[-126.1993256363468,53.18340405042323],[-126.19946641901008,53.183245282575406],[-126.19960813296858,53.1830870686893],[-126.1997611084295,53.18293219679813],[-126.19992252614398,53.1827806716182],[-126.2000149239651,53.1826970419797],[-126.20008864688543,53.18263137904131],[-126.20025382876302,53.182480402735976],[-126.20042745546054,53.18233333774723],[-126.20062080530761,53.182196887284725],[-126.20083484587002,53.18207271675635],[-126.20106014591525,53.18195469335314],[-126.20129109888961,53.181840021079935],[-126.20152298031242,53.18172534676721],[-126.201751103706,53.18160900228655],[-126.20197169617515,53.18148593888402],[-126.20218655985335,53.18134104167311],[-126.20239761436751,53.1811838262523],[-126.20260589654909,53.18103669871417],[-126.20281338455477,53.18091814664732],[-126.2030211159572,53.18085056717236],[-126.2032285653928,53.1809179906406],[-126.20343277428603,53.1810941063463],[-126.2036294160648,53.1812522994556],[-126.20382032675485,53.181390899706955],[-126.2040075130412,53.18153119112768],[-126.20419281386229,53.18167204120929],[-126.20437813359624,53.18181344667423],[-126.20456905468698,53.18195316605903],[-126.2047618637563,53.18209232614918],[-126.20489303928532,53.18228032512187],[-126.20504543462535,53.18239713784042],[-126.20517363166832,53.18254873338448],[-126.20531696918147,53.182729988427916],[-126.20540405273312,53.182906859290114],[-126.2056045354327,53.18308072780946],[-126.20578486730811,53.183159406692965],[-126.20602043985275,53.183227896738195],[-126.20608087553855,53.183320784071206],[-126.2060794785561,53.18341882521379],[-126.2061128486655,53.18353360275664],[-126.20642038561715,53.1835582804505],[-126.20681374908577,53.1835010099948],[-126.20709365465491,53.18343498250094],[-126.207323638157,53.183316939063296],[-126.20761453684162,53.18319654762193],[-126.20787624572394,53.18305043768744],[-126.20817655888463,53.182942352625254],[-126.20850690695619,53.18284037159276],[-126.20887758515445,53.182746170215566],[-126.20923703999493,53.18265702478021],[-126.20971659580879,53.18259567544027],[-126.21006225162147,53.1825608864466],[-126.21038472632715,53.1825748791518],[-126.21069695515035,53.18260009312589],[-126.21109656445708,53.18267053091874],[-126.21153738471911,53.18273528284184],[-126.21187413083733,53.18279294128475],[-126.2121583971848,53.18284845200583],[-126.2124352133691,53.18291629971713],[-126.21270739123787,53.18299199785297],[-126.21297957292273,53.183068260032535],[-126.21324899937306,53.18315404539375],[-126.21351563879757,53.183245992836866],[-126.21378504400225,53.18333010090686],[-126.21405902773263,53.18339122757879],[-126.2143412562305,53.18341312499152],[-126.21463352850003,53.18338402123269],[-126.2149313156824,53.18333362826565],[-126.21523008883376,53.18329442770922],[-126.21552904197311,53.18328772639244],[-126.2158298687498,53.183283817404316],[-126.21613258776843,53.18328045991316],[-126.21643530898189,53.18328047178265],[-126.21673806236204,53.18328383503169],[-126.217038957962,53.183293367547535],[-126.21733615429332,53.183309628438174],[-126.21763057489969,53.18333430110356],[-126.21791848251195,53.18336962426127],[-126.2181971343417,53.18342456614538],[-126.21846650657997,53.18350025621905],[-126.21873034376875,53.183589965278316],[-126.21899138600541,53.18368415151873],[-126.21925429232454,53.18377610191043],[-126.21952369194291,53.18385627108839],[-126.21980143923909,53.183917933219114],[-126.22009125088847,53.183954932629945],[-126.22038940902543,53.18397622135706],[-126.22069128433489,53.18399134473586],[-126.22099036697523,53.184011518799686],[-126.22130357374219,53.1842204472003],[-126.2215029750486,53.184354521423415],[-126.22170143577425,53.18448915277813],[-126.22189897096115,53.184624350203876],[-126.22209650741038,53.18475954729035],[-126.22228937513707,53.18489643787015],[-126.22247288582106,53.185038938695634],[-126.22263400075485,53.18519717576209],[-126.22280442449859,53.1853458672844],[-126.22302246037768,53.1854569313401],[-126.22329464396435,53.18552700314281],[-126.22358922556953,53.18557855007539],[-126.22387915562757,53.185635142344005],[-126.2241946112456,53.18573426043515],[-126.22445157016463,53.18576066315785],[-126.22460466356553,53.18564328764295],[-126.22472276873539,53.185469403054384],[-126.22479952578374,53.1852726332803],[-126.22482758255873,53.18508603044271],[-126.22482289586027,53.184909582219305],[-126.22479852521319,53.1847314862714],[-126.22476101514255,53.18455285055909],[-126.22471694914653,53.18437367154256],[-126.22467007926706,53.184194497811745],[-126.2246269408288,53.18401476125457],[-126.22459411988697,53.183834996137435],[-126.22457629805488,53.18365576723247],[-126.22457253351074,53.183474835548076],[-126.22457812332216,53.183293321431194],[-126.22458934844956,53.18311123193253],[-126.2245996317563,53.182929708878355],[-126.22460522437683,53.182748759378605],[-126.22460052397318,53.18256950548804],[-126.22458178182903,53.182391954314504],[-126.22454242116471,53.18221724767745],[-126.22447497753451,53.18204595542017],[-126.2243709999089,53.181879213899904],[-126.22424267679584,53.18171644423044],[-126.22410029815289,53.18155537711432],[-126.22395324807323,53.18139543904202],[-126.22381181629558,53.18123436976463],[-126.22368444192153,53.18107158868497],[-126.22355986669464,53.180907690741606],[-126.22343342101671,53.180744351898454],[-126.22329949369939,53.18058382351717],[-126.22315434208417,53.180427241982414],[-126.22299702159295,53.18027460903261],[-126.22283223466574,53.18012478641546],[-126.22266369117355,53.17997609101605],[-126.2224923507891,53.17982852101575],[-126.22232382466562,53.17967982508052],[-126.22215996912473,53.179529435061156],[-126.22199985453551,53.17937736168243],[-126.22184348379,53.179224160669094],[-126.2216880438178,53.17907095769637],[-126.2215223098502,53.17891889415954],[-126.22135939305825,53.178766269398785],[-126.22125263446046,53.17860289126453],[-126.22122545774525,53.178423678854145],[-126.22122545056882,53.178241610199606],[-126.22122918862301,53.17806178428404],[-126.2212394968308,53.17788250179245],[-126.22125167621485,53.177702651107104],[-126.22124979476483,53.1775205948458],[-126.22122162730544,53.17733242101666],[-126.22121974304935,53.17714980004424],[-126.22130041333907,53.17698719193191],[-126.22144581114462,53.176836222401604],[-126.22161746395189,53.17668857369746],[-126.22180882818533,53.17654592511175],[-126.22201614336566,53.17640884828007],[-126.22223379872881,53.17627959444188],[-126.22245806392036,53.176158726266465],[-126.22268988042973,53.17604849170348],[-126.2229479956554,53.17594997581269],[-126.22322589008715,53.175869339450415],[-126.22351325453184,53.17581053677237],[-126.22380171086166,53.17577974124708],[-126.2240959404663,53.175777508690075],[-126.22439684093003,53.17579486522172],[-126.2247006018307,53.175822854848384],[-126.22500436613541,53.175851408369624],[-126.22530621200343,53.17587156626856],[-126.22560326971463,53.17587379721018],[-126.22589270243314,53.175849161393884],[-126.22617639860253,53.175806044797845],[-126.22645817807867,53.175752282933985],[-126.22673802272355,53.175690125606465],[-126.22701596837506,53.17562069315592],[-126.22729199689974,53.1755462174604],[-126.22756614725577,53.17546838353481],[-126.22783934297871,53.17538886572877],[-126.22811159317233,53.17530935807166],[-126.22838292183148,53.1752315276748],[-126.22865144278475,53.17515313739231],[-126.22891335047429,53.17506636078153],[-126.22916959840462,53.17497287215419],[-126.229421128187,53.17487491051669],[-126.22967078861618,53.17477527584814],[-126.22991855572842,53.17467507964142],[-126.23016633056686,53.17457376249577],[-126.23041315968668,53.174472446663934],[-126.23065904001717,53.17437056747733],[-126.2309049280925,53.17426757632243],[-126.23114987039675,53.17416457753179],[-126.23139386394737,53.174061024362814],[-126.23163786516427,53.17395635026978],[-126.23188092065587,53.173851677517646],[-126.23212209476056,53.17374588754799],[-126.23236326460855,53.173639541369425],[-126.23260348252646,53.173532067199446],[-126.23284088646119,53.17342292195058],[-126.23307735348716,53.17331265766228],[-126.23331192720993,53.17320184090554],[-126.2335455608966,53.17308934044922],[-126.23377826071545,53.17297627668534],[-126.2340090641534,53.172862104766686],[-126.23423987821288,53.17274736768644],[-126.23447725798347,53.172635413661425],[-126.23471744624347,53.17252458294633],[-126.23495857459689,53.17241318518818],[-126.23519501487425,53.17230011116106],[-126.23542298864733,53.1721825808517],[-126.23563780906721,53.17205890959097],[-126.23583572199487,53.17192798452721],[-126.23601296403596,53.171787025690676],[-126.23617235109762,53.17163825042859],[-126.23631765250519,53.171482789614785],[-126.2364516810608,53.17132230483785],[-126.23657819411304,53.17115847370938],[-126.23670001635651,53.170992411006026],[-126.23681994247394,53.17082523155258],[-126.2369417628098,53.17065916857022],[-126.2370682657076,53.17049421647076],[-126.23720228512221,53.17033316608196],[-126.23734375194672,53.17016370207211],[-126.2375039878036,53.16999980223182],[-126.23771237921822,53.16990359422763],[-126.23801879263144,53.16990801596665],[-126.23831248093514,53.16998473287169],[-126.23854264717903,53.17009239254976],[-126.23876536090575,53.17021014144981],[-126.23898156909233,53.17033575482562],[-126.23919218848839,53.17046697213148],[-126.23939907411581,53.17060044636974],[-126.23960221638254,53.17073448353346],[-126.23980255021634,53.170867405628776],[-126.23999727077471,53.171004255676024],[-126.24018732804568,53.171143364619],[-126.24037085118877,53.171285283033086],[-126.24055156668847,53.17142888297705],[-126.24072667117035,53.171574179125884],[-126.24088774983663,53.171725670223985],[-126.24103855269966,53.17188109893002],[-126.24119030114772,53.17203652550682],[-126.2413658512017,53.172259127348084],[-126.2415007565317,53.17242074554909],[-126.24163660743284,53.172582370617874],[-126.24177058532581,53.172743990379836],[-126.2418998931888,53.17290674888122],[-126.24201889708606,53.17307120440722],[-126.2421247966138,53.17323792739582],[-126.24221477951447,53.17340804403285],[-126.24228885419598,53.173580433937396],[-126.24235077173644,53.17375564517869],[-126.24240238150342,53.17393200683547],[-126.24244743461416,53.17411005799501],[-126.24248688732744,53.17428924098818],[-126.2425235217724,53.17446842972348],[-126.24256108607058,53.17464761652594],[-126.24260053976617,53.174826799428715],[-126.24264559466313,53.17500485042597],[-126.24269908447128,53.17518176370407],[-126.24275820667145,53.17536034151063],[-126.24282953473221,53.175541699718174],[-126.24292889923437,53.17571236105663],[-126.24310864838812,53.17584475481371],[-126.24336696539481,53.175954023178186],[-126.24366180473355,53.176057613843255],[-126.24388118899387,53.176076208983126],[-126.24417441564886,53.17606103955189],[-126.24447409379503,53.17602849439376],[-126.24477563587227,53.17599425954478],[-126.24507630426655,53.17597235010903],[-126.24537709777651,53.17596948641049],[-126.24568262762917,53.17597669570073],[-126.24599100036997,53.17599062068365],[-126.24629939154097,53.176005100542795],[-126.24660494139373,53.176015668605814],[-126.24690669736401,53.17601840100686],[-126.24719993371814,53.17600770565117],[-126.24748463896887,53.17597910103383],[-126.24775703826532,53.175928113521515],[-126.24801523227242,53.17585307105908],[-126.24826299511723,53.17575843845224],[-126.24850131570696,53.17564925996027],[-126.24873581915911,53.175531125812455],[-126.24896843581845,53.17540851356411],[-126.249201987284,53.175287019278656],[-126.2494411960049,53.1751716703145],[-126.24968796596033,53.17506751786203],[-126.2499460718371,53.174979017576376],[-126.25021644350488,53.17490618534764],[-126.25049531809844,53.17484397381556],[-126.250780805135,53.17478959041003],[-126.2510709990294,53.1747402336462],[-126.2513630829893,53.1746936776348],[-126.25165609584924,53.174647118926345],[-126.25194629110749,53.1745983246875],[-126.25223177798777,53.17454450245043],[-126.25251157677445,53.17448228417773],[-126.25278289202193,53.17441055547702],[-126.25305225527337,53.17432595021304],[-126.25331499534897,53.17422959878913],[-126.253563604141,53.174122064079754],[-126.25379059218962,53.17400450054976],[-126.2539894227423,53.17387690441667],[-126.25413751030962,53.17372813822708],[-126.25423391704163,53.173554269337046],[-126.25429747785361,53.173370943015094],[-126.25434793201875,53.17319213535655],[-126.25437591602675,53.17301393165106],[-126.25438607919996,53.17283408112651],[-126.25439248762775,53.17265312721314],[-126.2544073281013,53.17247326660199],[-126.25444093330418,53.172295050731904],[-126.25447920890558,53.17211570439621],[-126.25452123209767,53.1719363499742],[-126.25457450537007,53.171758091732414],[-126.25464184548315,53.17158316439967],[-126.2547307731484,53.17141323685609],[-126.25485817026573,53.171251060275736],[-126.25502026358599,53.171094975505675],[-126.25519079433526,53.17094111311577],[-126.25534351911608,53.17078561274536],[-126.25545311262744,53.170625158937554],[-126.25549608141718,53.17044692237318],[-126.25546682344486,53.1702565172171],[-126.25536084837944,53.170084759668335],[-126.25518763114005,53.16994900878167],[-126.25497889254336,53.1698267699967],[-126.2547458388466,53.16971187025133],[-126.25450156350136,53.16960035537074],[-126.2542563416851,53.16948828629523],[-126.25402422278292,53.169371142304506],[-126.25381451238914,53.16924330151505],[-126.25362535994901,53.16910365656858],[-126.25343619043905,53.168963455628834],[-126.25322836932749,53.168835054017066],[-126.2529990700984,53.168719578079966],[-126.25276230369515,53.168608608209645],[-126.25252927272227,53.16849538012585],[-126.25231397318497,53.168371474448584],[-126.2521061417282,53.168240274335524],[-126.25189921759578,53.16810514602894],[-126.25169977323104,53.167967195963286],[-126.25151434941517,53.16782474312097],[-126.25134859226333,53.16767944274005],[-126.25123897928673,53.167522254274175],[-126.2512828421967,53.16733561852723],[-126.25135282070947,53.16712931576058],[-126.25152950827905,53.16690710061664],[-126.25133458989959,53.166899107063045],[-126.25109179922217,53.166874417638574],[-126.25080201770142,53.16682741023714],[-126.25052431088888,53.166761338678164],[-126.25025589737233,53.166682357699784],[-126.24999120249907,53.16659832196125],[-126.24972836589659,53.16651148518183],[-126.24946553037246,53.166424647814836],[-126.24920177648666,53.16633949688288],[-126.24893429088246,53.166259390543765],[-126.24866311336335,53.16618601377666],[-126.24838261572152,53.16612329529681],[-126.24809376373909,53.16607236238207],[-126.24780030129307,53.16603264245198],[-126.247491933106,53.16600975901481],[-126.24721558354888,53.16601257720846],[-126.24691301989581,53.166021051451544],[-126.24658603149665,53.166015575230176],[-126.24629820302877,53.16598032145981],[-126.24599537115971,53.165940051866976],[-126.24575237569483,53.165881175123346],[-126.24560900662559,53.165714532458324],[-126.24570553418752,53.16555859600136],[-126.24563599853921,53.16535987304447],[-126.24561246791632,53.165179536779966],[-126.24559361085142,53.16499862611431],[-126.24559631489173,53.1648188000681],[-126.2456412059272,53.16464280341121],[-126.24571701695861,53.164468983355825],[-126.24581062899652,53.164296802399505],[-126.24591268230407,53.164125168501066],[-126.24601473478405,53.163953534498425],[-126.24610648591477,53.16378136608502],[-126.24618042641889,53.16360866993766],[-126.24622718536935,53.16343490986043],[-126.24623085368233,53.16325899857213],[-126.24619514905008,53.1630809283455],[-126.24613602944878,53.162902342093616],[-126.24607128646451,53.162723211763705],[-126.2460187328306,53.162544620734906],[-126.24584291882175,53.162273847728756],[-126.24573420779546,53.162106012522635],[-126.24562644188313,53.16193817524196],[-126.24551775078794,53.16177089548997],[-126.24540811635916,53.16160362654345],[-126.24529754177587,53.16143691515167],[-126.24518323929716,53.16127076708627],[-126.24506051258923,53.16110688611434],[-126.24493497234498,53.16094356654581],[-126.2448131885074,53.16077911865584],[-126.2447026184203,53.160612406632936],[-126.24460234446296,53.16044286771862],[-126.24450112919209,53.160271098798276],[-126.2444055167988,53.160098753523364],[-126.24431833663303,53.15992527034526],[-126.24424427111587,53.1597517600281],[-126.244188943526,53.15957876671826],[-126.2442151137442,53.15940504953053],[-126.24431994493246,53.15923004957864],[-126.24434327421575,53.159052421245285],[-126.24430663568465,53.15887154648774],[-126.2442690683257,53.1586906825815],[-126.24428209619872,53.158514751596286],[-126.24435886214913,53.15834372638395],[-126.2444693522394,53.158176001645685],[-126.24459110291369,53.158009364964265],[-126.24470440544295,53.157841069474436],[-126.2448177103366,53.1576733385399],[-126.24493194344727,53.15750559659562],[-126.2450190007184,53.15733455851795],[-126.24505919546428,53.15715857106887],[-126.2450768940782,53.1569798246648],[-126.24508054393839,53.15679999588433],[-126.24507668239069,53.15661961795248],[-126.24507283259356,53.15643867529195],[-126.24507459090523,53.15625828568795],[-126.24509322998229,53.15607898152157],[-126.2451409097361,53.15590185801022],[-126.2451857652487,53.155723619902126],[-126.24522969453065,53.15554594836451],[-126.24528861895485,53.15536992185105],[-126.24534661699334,53.15519445293403],[-126.24534369855613,53.15501407289453],[-126.2452911555551,53.15483772161186],[-126.24521334529258,53.15466365449972],[-126.24512243639002,53.15449186423489],[-126.24502873238141,53.15432119111991],[-126.24495185977315,53.154148251223695],[-126.24492366287913,53.153967923388336],[-126.24497040659182,53.15379247780873],[-126.24506401309914,53.15362030536512],[-126.24527023883265,53.15349046616895],[-126.24547928377208,53.15336118544153],[-126.24568833071146,53.15323246901634],[-126.24589737632786,53.15310374324957],[-126.24610266469327,53.152973348778715],[-126.24630513658256,53.15284071897733],[-126.24650103079087,53.15270586169339],[-126.24669221392391,53.15256765265616],[-126.24688621294375,53.15242943742285],[-126.24708021069713,53.15229122186095],[-126.24727420064141,53.15215188557185],[-126.24746443660841,53.15201143638842],[-126.24764998632764,53.15186932055465],[-126.24782895841881,53.15172496840171],[-126.24799947666142,53.15157783712922],[-126.24815967647795,53.15142681026997],[-126.24830769140827,53.15127300323084],[-126.2484397473515,53.15111418315374],[-126.24855678849976,53.150950357071345],[-126.24866162360577,53.15078263953871],[-126.24875709131229,53.15061213607117],[-126.24884503807066,53.15043940749643],[-126.24893111951022,53.150265562348274],[-126.24901625625535,53.15009171910726],[-126.24910326855412,53.149918427564145],[-126.24919683798109,53.14974680723436],[-126.24929980299183,53.149577972537315],[-126.24941307744666,53.1494119125597],[-126.24953384610332,53.14924639238],[-126.24965928541441,53.149080306480954],[-126.24979316939942,53.148915887710324],[-126.24993738736002,53.14875591964119],[-126.25009661568414,53.14860320683582],[-126.2502736993876,53.14845998404799],[-126.2504714567735,53.14832903282709],[-126.25068424930721,53.148207021698305],[-126.25090925511014,53.14809057739352],[-126.2511427134979,53.147979725751846],[-126.25138273489698,53.14787165625525],[-126.25162840869011,53.14776693548988],[-126.25187594247404,53.14766276597298],[-126.25212442233307,53.147559158603464],[-126.25237009247932,53.147454436280206],[-126.25261292793333,53.14734692293207],[-126.252850123438,53.147236050917186],[-126.25307792667365,53.14712072580453],[-126.25329632413553,53.14699868891785],[-126.2535025024709,53.14687051998777],[-126.25369834614355,53.14673565034718],[-126.25388761426532,53.14659631281299],[-126.2540712308915,53.146454190537966],[-126.25425203103451,53.146309824219585],[-126.25443282999869,53.146165466576704],[-126.25461550722322,53.14602221605521],[-126.25480288959355,53.14588176062968],[-126.25499684166212,53.14574521667723],[-126.25521050326917,53.1456175842587],[-126.25543170015519,53.14549498153514],[-126.25564348981607,53.14536791704264],[-126.25583087941816,53.14522970074355],[-126.2559891545254,53.145078666806356],[-126.25613333800074,53.144921496368575],[-126.25626815127421,53.14476098478048],[-126.25640013334727,53.14459823832181],[-126.25653399393295,53.14443660804427],[-126.25667441415317,53.144277204205316],[-126.2568289235964,53.144123927420274],[-126.25699751543249,53.1439756661955],[-126.25716796724889,53.14382796536406],[-126.2573374821517,53.14367913692841],[-126.25750699929644,53.14353087292106],[-126.25767651187336,53.143382052938485],[-126.25784696703884,53.14323322168091],[-126.258018353296,53.14308495282341],[-126.25818973835322,53.142936683705464],[-126.25836299832262,53.14278897492178],[-126.25853718931562,53.14264181956309],[-126.25871232631056,53.142495217592725],[-126.25888933819272,53.14234917593751],[-126.25906823180283,53.1422048149935],[-126.25924900023021,53.14206100538488],[-126.25943165032552,53.14191886750767],[-126.25961617874006,53.14177785459613],[-126.25980352915855,53.141637946642945],[-126.2599936935743,53.14150028199878],[-126.26018666846629,53.14136428700371],[-126.26038246881097,53.1412299616111],[-126.26058202693977,53.14109787740913],[-126.26078533931722,53.140967460731865],[-126.26099521196643,53.140837029221956],[-126.2612116332731,53.1407071385984],[-126.26143461364144,53.14057948287794],[-126.26166229535322,53.14045404820569],[-126.26189656143556,53.14033252446257],[-126.26213458403521,53.14021547360449],[-126.2623782692035,53.14010345607466],[-126.26262572481498,53.139998143225334],[-126.2628769810309,53.139899552894136],[-126.26313201834061,53.13980935228787],[-126.26338992658735,53.13972810810197],[-126.26365071289219,53.13965694072432],[-126.26391719166895,53.13960032554442],[-126.26419789932496,53.13957224424662],[-126.2644918682442,53.139568790866576],[-126.26479530827407,53.139582677606306],[-126.26510443620367,53.139607755035655],[-126.26541640532439,53.13963674227662],[-126.26572742060246,53.13966405468759],[-126.26603369117137,53.13968241358053],[-126.26633238823716,53.13968510283253],[-126.26662063439039,53.13966485072811],[-126.26690955482132,53.1396042522688],[-126.26718232167475,53.13950503952404],[-126.26741092082922,53.13937903586272],[-126.26757011108911,53.13923582668744],[-126.26767395914605,53.13907537148775],[-126.26774308775798,53.1389015496958],[-126.26779529528544,53.13871935850118],[-126.26784656301562,53.13853549324039],[-126.26791283489499,53.138355519920815],[-126.2680081935265,53.138184435072404],[-126.26811011524933,53.13801614079383],[-126.26821390861042,53.13784784216683],[-126.26831862987733,53.13767954132663],[-126.26842429759672,53.1375118029218],[-126.26853090460216,53.13734349757998],[-126.26863749930541,53.13717574788223],[-126.26874503691637,53.137008004892294],[-126.26885352089413,53.13684081536629],[-126.2689619890364,53.13667362575929],[-126.2690713964195,53.136505869205855],[-126.26918080652436,53.13633867722085],[-126.26929115944205,53.13617148297112],[-126.2694014965097,53.136004288636975],[-126.26951185127788,53.13583765883564],[-126.26962218660502,53.13567046426464],[-126.26973253603991,53.135503269541125],[-126.2698428696251,53.135336074733196],[-126.26995322085932,53.13516943549506],[-126.27006355270402,53.13500224045032],[-126.2701738986563,53.13483504525294],[-126.27028422875912,53.134667849971315],[-126.27039362933026,53.13450065669387],[-126.27050302903787,53.13433346329975],[-126.27061149567857,53.13416571619055],[-126.2707199500334,53.13399852472316],[-126.27082841490025,53.13383076842058],[-126.2709368675415,53.13366357672327],[-126.27104438713242,53.13349583131587],[-126.27115284942752,53.13332807466888],[-126.27126129950146,53.13316088262734],[-126.27136976013747,53.132993134713516],[-126.27147820849795,53.13282594244189],[-126.2715847951417,53.132658189633005],[-126.27169043021918,53.1324893274333],[-126.27179419581634,53.13232102514832],[-126.2718979533983,53.132151602346774],[-126.27199983796186,53.131982183743126],[-126.27210172171054,53.131812765035775],[-126.27220453324249,53.13164334408783],[-126.27230736250135,53.13147447872361],[-126.27241204817943,53.13130561794029],[-126.27251675157486,53.13113731273751],[-126.27262425844137,53.130969556695],[-126.27273456880755,53.13080235876846],[-126.27284677262458,53.13063627678122],[-126.27296270846634,53.1304707507535],[-126.27308146622603,53.130306329544155],[-126.27320492168641,53.13014358247126],[-126.27333210906446,53.1299813913246],[-126.27346211468317,53.12981974924095],[-126.27359398051378,53.12965641757138],[-126.27372678526474,53.129492527832504],[-126.2738633181538,53.12932862929546],[-126.27400267281638,53.12916584447501],[-126.27414765348165,53.12900473155801],[-126.27429639159269,53.128845841626344],[-126.2744526349321,53.128689739629834],[-126.27461451867383,53.128537550297516],[-126.2747848655425,53.128390378515256],[-126.27496365692785,53.12824766855791],[-126.2751518471827,53.12811109432999],[-126.27535036854361,53.12798122727744],[-126.27556018664714,53.12785916760237],[-126.27578220419655,53.12774324594277],[-126.2760164248084,53.12763401795567],[-126.27625911218718,53.12753037186719],[-126.27651118393344,53.127430629318575],[-126.27676889602678,53.12733479004803],[-126.27703131267307,53.12724173578157],[-126.27729746816811,53.12715035728613],[-126.27756457702719,53.12706066107355],[-126.27783262816767,53.12697095307383],[-126.27809878393991,53.12688013744939],[-126.27836120592025,53.1267887653095],[-126.27861984943605,53.126694595924],[-126.27887192905887,53.12659764484814],[-126.27911556545799,53.12649679612802],[-126.2793497927469,53.12639092270289],[-126.27957276892796,53.12628002898168],[-126.27978069439322,53.126160215953625],[-126.27994635607249,53.12601752928296],[-126.28007163717956,53.12585364981081],[-126.2801659306876,53.12567583372906],[-126.28023677275073,53.125491359498724],[-126.28029265029508,53.125306355973464],[-126.28034293746428,53.12512752354246],[-126.28037078781169,53.12495042939009],[-126.2803723982794,53.12477060082328],[-126.2803590339341,53.124588557910556],[-126.28034191108233,53.12440653285049],[-126.28033229440847,53.12422504571249],[-126.2803423394423,53.12404575281503],[-126.28038235589709,53.123869750144],[-126.28045513623819,53.12369591061518],[-126.28054946416447,53.12352426077523],[-126.2806597128483,53.123353128795536],[-126.28077931214463,53.1231831038913],[-126.28090172933926,53.12301362788928],[-126.28101947358222,53.12284416284605],[-126.2811269146265,53.122674722159395],[-126.28121750145647,53.122504201002485],[-126.28128280754505,53.12233317519117],[-126.28131909728411,53.12216054218452],[-126.28132168417237,53.121986313157805],[-126.28130181012133,53.12181212857883],[-126.28126133982087,53.121636881495604],[-126.28120496763921,53.12146166323161],[-126.28113641860249,53.12128591813777],[-126.28105850791233,53.12110963950241],[-126.28097590739085,53.120932807243946],[-126.28089145452424,53.120756535046944],[-126.2808097950342,53.12057914467035],[-126.28073375493726,53.12040229661689],[-126.28066707381596,53.12022542628694],[-126.28061441947831,53.1200479579207],[-126.28056551650143,53.11986936914336],[-126.28051939902446,53.119688523888634],[-126.28048169314077,53.119507102912465],[-126.28045710768939,53.11932621548976],[-126.28045031012638,53.119147517766486],[-126.28046786956861,53.11897268826358],[-126.28055099438487,53.11880666668958],[-126.28070809856366,53.11864943293427],[-126.28086895230703,53.11849106961254],[-126.28096890400897,53.11832276685519],[-126.28103792926504,53.11814893532158],[-126.28109665294976,53.117972887346326],[-126.28114695048923,53.11779518318523],[-126.28118973892921,53.11761636744094],[-126.28122692365768,53.11743700925316],[-126.28126129702733,53.117258222421675],[-126.28128256190678,53.11707833734412],[-126.28128789262807,53.11689569353997],[-126.2812857447871,53.11671194707042],[-126.28128358574061,53.116528765308566],[-126.281290813982,53.11634779310735],[-126.28131583619084,53.11617014882958],[-126.28136521713913,53.11599691935366],[-126.28144738194037,53.115829778697496],[-126.28156328468158,53.11566815982133],[-126.28170728069898,53.1155120760748],[-126.28187189896546,53.11535930429113],[-126.28204869532985,53.115209864526776],[-126.28223111598872,53.11506209619634],[-126.28241167511095,53.114916008190235],[-126.28259036903184,53.114771044788924],[-126.28279436698737,53.114633298951574],[-126.28301431559746,53.11450112572485],[-126.28323426654948,53.114369507807524],[-126.28343735102561,53.11423456858568],[-126.28360856419363,53.11409129768268],[-126.28373198828248,53.11393694578247],[-126.28380947628801,53.11377093492072],[-126.28386540158478,53.113599929304996],[-126.2839035259625,53.113424493596995],[-126.28392853171212,53.11324628378271],[-126.2839413584325,53.11306474187581],[-126.28394762034891,53.112882095275246],[-126.28394826069879,53.11269834171681],[-126.28394889726009,53.11251402344701],[-126.2839514089181,53.11233026535643],[-126.28397429964748,53.11197727192114],[-126.2839571963472,53.111797486905196],[-126.28393446429843,53.11161770642289],[-126.28390987241049,53.1114373746463],[-126.28388433761084,53.11125704511083],[-126.28385880302842,53.111076715551484],[-126.28383606806214,53.11089637924788],[-126.28381802267536,53.110716596366544],[-126.28380559488272,53.11053735571868],[-126.28380159894567,53.1103586505505],[-126.28380695175589,53.11018105232741],[-126.28382542172763,53.11000397833595],[-126.28388131947881,53.109829611081274],[-126.28397093215504,53.10965796839159],[-126.28407925236587,53.109487965809635],[-126.2841903859118,53.109317947384135],[-126.28428935966231,53.109147402337044],[-126.28437895806313,53.108976324001475],[-126.28446762006439,53.108804118427685],[-126.28455535331213,53.10863192396801],[-126.28464214272815,53.10845972273368],[-126.28472798465135,53.108286967959806],[-126.28481477272004,53.108114775528584],[-126.28490250307063,53.107942571781045],[-126.28499208891758,53.107770372440484],[-126.28508262455102,53.107599282202244],[-126.28517597365237,53.107428194053156],[-126.28527118560632,53.10725821279624],[-126.28537108960312,53.10708934952485],[-126.28547381439364,53.10692159081893],[-126.28558121237326,53.10675438542034],[-126.28569610131882,53.10658828224653],[-126.28582035220948,53.10642327675244],[-126.28595677159585,53.10626048256306],[-126.28610445766263,53.10610158696638],[-126.28626620949886,53.10594881506653],[-126.28644016356249,53.10580329176626],[-126.28662821726428,53.10566670652405],[-126.28682937440563,53.10553120065723],[-126.28704081696591,53.10539399327658],[-126.28726349583268,53.105260684236235],[-126.28749841061456,53.10513742004017],[-126.28774465653632,53.10502982296874],[-126.28800414655106,53.10494403729239],[-126.28827599490296,53.104886232013996],[-126.28855828561713,53.10485192995128],[-126.28884435980525,53.10482377593116],[-126.28913327466829,53.10480178119623],[-126.28942503379095,53.10478426056875],[-126.28971963726205,53.10477121402785],[-126.29001706640263,53.10476208585788],[-126.2903154463805,53.1047563069744],[-126.2906157314616,53.10475332824751],[-126.29091788789415,53.10475258504186],[-126.29122006698077,53.10475296145267],[-126.2915241097937,53.10475445293974],[-126.29182817148313,53.10475650830236],[-126.29213221817243,53.104758553956536],[-126.29243627219181,53.104759487329346],[-126.29273937544971,53.104759292866376],[-126.29304246327685,53.10475686573835],[-126.29334366451758,53.10475219266143],[-126.29364390334514,53.104744724577245],[-126.29394225889223,53.104733343337756],[-126.29424153444747,53.10472082964634],[-126.29454267308529,53.10470719907332],[-126.29484379201686,53.10469076218748],[-126.295143012402,53.104670403234806],[-126.29543937176007,53.104643336967555],[-126.2957310099447,53.10460899439199],[-126.29601604019498,53.104565139376945],[-126.29629346925663,53.10450674590044],[-126.29656046183297,53.10442652478744],[-126.29681705290315,53.10432952250291],[-126.29706231960124,53.104220778952836],[-126.29729538813388,53.10410590759384],[-126.29751719825325,53.1039865823183],[-126.29772772247577,53.10385888617986],[-126.29793166519735,53.10372559504955],[-126.2981318301385,53.103589516448885],[-126.29833200485132,53.1034528817297],[-126.29853311805319,53.103317920475035],[-126.29874081016584,53.1031885444694],[-126.29895697498789,53.10306586933601],[-126.29918443115578,53.10295268453038],[-126.29942600452885,53.10285067694602],[-126.29967413316325,53.10275088417032],[-126.2999278931483,53.10265388217515],[-126.3001863415689,53.10255967331927],[-126.30044949334835,53.102468248570936],[-126.30071548958269,53.1023812977803],[-126.30098618624625,53.10229881620317],[-126.30125878457397,53.10222081094084],[-126.30153516347858,53.102148397635084],[-126.30181251724544,53.10208270387118],[-126.30209272780735,53.10202316012844],[-126.30237298955595,53.10197090297512],[-126.30265802322536,53.10193095785545],[-126.30295347469257,53.10191003295011],[-126.30325463864807,53.10190310272317],[-126.30356054834387,53.10190679930905],[-126.30386930796757,53.10191552530832],[-126.30417714787598,53.10192538227897],[-126.30448214995218,53.101931875452635],[-126.3047814872238,53.10193110401949],[-126.30507324836778,53.10191747071831],[-126.30535459101706,53.1018870479352],[-126.30561320320926,53.101815791399645],[-126.3058386872994,53.101691958975444],[-126.30603779226786,53.10154242411175],[-126.3062163126439,53.10139238648194],[-126.30635174197474,53.10123405241363],[-126.30645244735824,53.10106124237895],[-126.30656817388942,53.100893995522625],[-126.30673548907984,53.10074733848418],[-126.30691966061323,53.10060344302892],[-126.30711508409149,53.100463444088504],[-126.30731990075496,53.10032901366812],[-126.30753600991876,53.1002040817943],[-126.30776249315646,53.100092012144614],[-126.30801439678714,53.10000172008155],[-126.30830301493793,53.0999427042856],[-126.30860489615165,53.09990885877252],[-126.30890037957069,53.09989464154514],[-126.3091978724657,53.09989946595445],[-126.30949731798563,53.099915488992366],[-126.30979771891255,53.09993319392319],[-126.31009711979326,53.09994304860811],[-126.31039453113756,53.0999366657305],[-126.31068901380982,53.09991460351547],[-126.31098344953813,53.09988414180275],[-126.3112759579163,53.09984807322131],[-126.3115684561278,53.09980865155681],[-126.31186093467566,53.099768664511586],[-126.31215344413606,53.099730917557295],[-126.31244784189528,53.099697646682664],[-126.31274230374632,53.09967109759949],[-126.31303963005958,53.09965350379038],[-126.31333888067117,53.09964318257078],[-126.31363909636242,53.09963790453663],[-126.31394122258934,53.09963598201359],[-126.3142433504314,53.09963629961303],[-126.31454455038322,53.0996366189094],[-126.31484573369916,53.09963469658358],[-126.31514502544547,53.099629981891404],[-126.31544240048903,53.09961910460197],[-126.31573785870167,53.099602064729595],[-126.31602950421639,53.099575514971725],[-126.31631733263113,53.09953889066086],[-126.31660040334278,53.099490518150255],[-126.3168796373634,53.09943150648975],[-126.31715508119302,53.099364096479846],[-126.31742766029039,53.09928997978054],[-126.3176992619342,53.09921137431066],[-126.31796899006576,53.099130541313976],[-126.31823963657351,53.099048575808844],[-126.31851029469388,53.098968294803214],[-126.31878377566181,53.098891366908916],[-126.31905824063647,53.09882003797139],[-126.3193374395924,53.098755418303625],[-126.31962044017389,53.09870087174578],[-126.31990819191846,53.09865527525148],[-126.3202006865315,53.0986175083591],[-126.32049789225802,53.098585330219166],[-126.32079701062675,53.09855874839213],[-126.32109894844369,53.09853496375577],[-126.32140184995635,53.09851397237137],[-126.32170475538571,53.09849353594248],[-126.32200672843364,53.09847254553289],[-126.32230774560692,53.0984498807629],[-126.32260499970927,53.098424419887216],[-126.32289847792367,53.09839448677456],[-126.32318816732045,53.0983583963296],[-126.32347124577652,53.0983150448157],[-126.32374866665008,53.09826386496079],[-126.32401663712307,53.098202070555374],[-126.32426385137623,53.09811511785112],[-126.32448935562965,53.09800357429964],[-126.32469880884804,53.097873582474655],[-126.3248997687182,53.09773297380587],[-126.32509883514886,53.09758957334152],[-126.32530353792552,53.09744950940509],[-126.32551862150257,53.097320629990776],[-126.32575064506561,53.097207380847074],[-126.32599017787807,53.09709579568552],[-126.3262362621427,53.09698587710449],[-126.32648705729711,53.09688153828456],[-126.32674541783577,53.096786150589324],[-126.3270094820979,53.096704747711584],[-126.3272802340148,53.096640688248],[-126.3275614844421,53.09660293417643],[-126.32785886972006,53.0965965073437],[-126.32816481262977,53.09660910369291],[-126.32847455532661,53.09662729095234],[-126.32877955781598,53.09663821212792],[-126.329074099273,53.09662786408325],[-126.329353429567,53.0965839530817],[-126.32961940604837,53.09650869702481],[-126.32987491771856,53.096409949029756],[-126.330120042595,53.096297775089276],[-126.33035576335514,53.0961811540681],[-126.33057554648923,53.09605896591607],[-126.3307727021304,53.095913875867495],[-126.33096139821741,53.09576265115341],[-126.33115671992623,53.09562260312568],[-126.33137378090588,53.09551275501376],[-126.33162769667862,53.09545041787423],[-126.33191751204849,53.095433917960534],[-126.33222814045733,53.09544761107423],[-126.33254167027263,53.09547249974295],[-126.33284392688729,53.09549293751538],[-126.33314448220247,53.095532982764915],[-126.33344417905442,53.09558367846244],[-126.33373815025081,53.09561982367406],[-126.3340214997227,53.09561454139671],[-126.3342942107269,53.0955639146458],[-126.33456016493943,53.095485850794816],[-126.3348203588009,53.095390995853144],[-126.33507768669801,53.09528774057067],[-126.33533316057758,53.095186739850256],[-126.33559151302133,53.09509412931714],[-126.33585643479918,53.095005416650125],[-126.33612415827969,53.09491726012233],[-126.33638718511179,53.09482575498611],[-126.33663893421867,53.09472755865518],[-126.33687283947718,53.094619328553826],[-126.33708137265084,53.0944971691495],[-126.33725984704131,53.09435884407527],[-126.33741295386356,53.09420714568895],[-126.33754916414854,53.094045967001456],[-126.33767783632322,53.09387977211281],[-126.3378065224532,53.09371357702566],[-126.33794457631933,53.09355128106739],[-126.33809954535074,53.093397335471245],[-126.33827515391198,53.09325341467694],[-126.33846390076225,53.09311337309184],[-126.3386638900186,53.09297778975969],[-126.33887328992084,53.09284777240526],[-126.33909207512511,53.09272389472567],[-126.33931653468643,53.09260616732523],[-126.33955134462484,53.092497364431985],[-126.33980212090506,53.09239804351193],[-126.34006514667335,53.09230933561675],[-126.34033668112701,53.092231242476025],[-126.34061296861425,53.09216377485774],[-126.34089305918233,53.09210414777536],[-126.34117785351019,53.092048979306654],[-126.34146550083662,53.091998848439566],[-126.34175504953605,53.09195263744945],[-126.34204649961023,53.09191033735952],[-126.34233891436587,53.091870830412915],[-126.34263040855934,53.09183413103246],[-126.34292480460873,53.09181031224254],[-126.34322499873655,53.09180775559021],[-126.34352524147255,53.091813050193906],[-126.34382371510436,53.091828989038156],[-126.34412318483841,53.09185332317147],[-126.34441879128269,53.09186254612312],[-126.34471037017911,53.09183649018013],[-126.34499703726344,53.09178242747375],[-126.34527800249658,53.09171549995601],[-126.34555143836417,53.09164467666439],[-126.34582109259424,53.091567132095626],[-126.34608884226773,53.091487360532575],[-126.34635660582376,53.09140757935206],[-126.34662719401643,53.09133115960822],[-126.34690157237111,53.09126088614568],[-126.34717973643852,53.09119620320512],[-126.34745978839415,53.091133754969036],[-126.34774079016263,53.09107409993126],[-126.34802368574319,53.09101556806487],[-126.34830657470884,53.09095814703038],[-126.34859041021474,53.09090128723304],[-126.34887424495946,53.090844426752135],[-126.34915714666843,53.090787012595264],[-126.34944003722786,53.0907301535369],[-126.34972294657452,53.0906738494889],[-126.35000772446855,53.09061922439378],[-126.3502934582053,53.09056628094396],[-126.35057917262947,53.090511086977294],[-126.35086487244189,53.09045421615398],[-126.35115344942818,53.090405179292866],[-126.351443097396,53.09037351012188],[-126.35173859750049,53.09037094576936],[-126.35203709099645,53.090391910346],[-126.35233564160312,53.09041791157904],[-126.35279423942903,53.090460241232144],[-126.35308663323754,53.090422392831535],[-126.3533809305024,53.090386778929634],[-126.35367142954199,53.09034612911586],[-126.35395527717426,53.090292061971184],[-126.35423060738705,53.090225129918885],[-126.35450211554061,53.09015036547602],[-126.35477077785922,53.09007000665411],[-126.35503576882341,53.08999805720315],[-126.35530998380676,53.08991095770728],[-126.35555508370946,53.08980825874973],[-126.35580488832615,53.08971002694419],[-126.3560584606231,53.08961514462643],[-126.35632239570282,53.089530314640676],[-126.35659193207599,53.08944267048969],[-126.35686522117572,53.089358366797114],[-126.35714238747629,53.089288625681654],[-126.35742256793434,53.0892446363951],[-126.35771054560446,53.08923816270948],[-126.35801005237434,53.08926807280492],[-126.35830603663004,53.08932375442464],[-126.35858345609476,53.08939574278173],[-126.35885063924735,53.089474484328875],[-126.35911601078269,53.089558277325395],[-126.35937861311061,53.08964711573176],[-126.35963565310745,53.08974157277765],[-126.35988619291423,53.08984220710274],[-126.36012744963041,53.08994903619211],[-126.36035660007884,53.09006262445853],[-126.36057365379834,53.09018409240081],[-126.36077862576863,53.09031344003853],[-126.36097524241472,53.09044897984346],[-126.36116627239653,53.09058900926052],[-126.36135451994531,53.09073073203951],[-126.3615418458666,53.09087302204206],[-126.36173287962947,53.091013050509346],[-126.36192856464312,53.09114914729267],[-126.36213355023284,53.09127905720552],[-126.36234968755667,53.09140052464459],[-126.36257977531814,53.091511864757884],[-126.3628247213839,53.091612509967426],[-126.36307897809327,53.091706412276096],[-126.36334065934186,53.09179524466551],[-126.36360421260851,53.09188238554552],[-126.36386775684043,53.09197009057552],[-126.36412760515843,53.09206116777894],[-126.36437814052358,53.092158440126035],[-126.36462590293097,53.092258517158974],[-126.36487274841602,53.09235971695936],[-126.36511958011583,53.09246091628458],[-126.36536549004518,53.09256267368901],[-126.36561048315312,53.09266556283741],[-126.36585545761442,53.09276788682252],[-126.36610045789466,53.092871330675315],[-126.36634451178236,53.09297421224087],[-126.36658857661787,53.093078222687424],[-126.36683263776558,53.093181667928384],[-126.36707670491478,53.093285668391154],[-126.36731983062026,53.093389680237266],[-126.36756297240457,53.09349368256712],[-126.36780704321855,53.09359769046669],[-126.36804646552834,53.09370562945533],[-126.36827939356793,53.0938186257699],[-126.3685141836866,53.09393050432205],[-126.36875732666839,53.09403394843108],[-126.36901343240959,53.0941239060774],[-126.36928345844876,53.094200374186336],[-126.36955904817377,53.09427122199492],[-126.36983840424097,53.09434485403568],[-126.3700899333482,53.09444490778176],[-126.37034517533293,53.09454158798473],[-126.37059111480329,53.09464389909001],[-126.37081286591182,53.09476085151644],[-126.37099738887069,53.094898653326005],[-126.37115586261659,53.09505221408073],[-126.37131248665875,53.095208030301464],[-126.37148866691948,53.09535313601679],[-126.37167415183688,53.09549428612073],[-126.37185872009017,53.09563656823044],[-126.37204423227473,53.0957788381092],[-126.37222972586096,53.0959205520015],[-126.37241801933321,53.096060580570175],[-126.3726100404339,53.096198911913696],[-126.37280578429024,53.096334990283395],[-126.37300710669105,53.096467124638835],[-126.37321495050058,53.09659532093859],[-126.37342929088744,53.09671845877161],[-126.37365014252336,53.09683820529555],[-126.37387752543388,53.09695513408458],[-126.37410862619323,53.09706925400687],[-126.37434531534588,53.09718055015314],[-126.37458666013939,53.0972884697002],[-126.37483077985047,53.097393574330845],[-126.37507861242366,53.09749531426941],[-126.37532921985532,53.097594239253844],[-126.37558260715535,53.09768922879568],[-126.37583783654141,53.097780859532584],[-126.37610048506947,53.09786517866731],[-126.37637055264798,53.097942186151414],[-126.3766461785344,53.098013017283236],[-126.37692551187817,53.098079918837485],[-126.37720670673762,53.09814568437199],[-126.37748697963734,53.09821201689193],[-126.37776445986528,53.09828059858376],[-126.37803636887847,53.09835367926458],[-126.37830085603416,53.09843350580611],[-126.37855607576758,53.09852288978829],[-126.3787899411421,53.09863082468386],[-126.37900618865307,53.098755057725256],[-126.37921223118599,53.098887731002],[-126.37941827006914,53.099021524380376],[-126.37963267083295,53.09914801206201],[-126.3798787698581,53.09926262822054],[-126.38013606947334,53.0993744022231],[-126.38035323243517,53.09949471271879],[-126.38043595440675,53.099645152131544],[-126.38041339893739,53.09984186002015],[-126.38039423303105,53.099999350033706],[-126.38039167562779,53.100026249169325],[-126.38027964259948,53.10015546191001],[-126.38001558383795,53.10022857597597],[-126.37970645009496,53.10028391595042],[-126.37943780538755,53.1003682479872],[-126.37921813076417,53.1004894062533],[-126.37901166051343,53.10062283778896],[-126.37880046948202,53.10075069077315],[-126.37855627047027,53.10084950832374],[-126.37826390754597,53.100898068051926],[-126.3779675226048,53.10091358205151],[-126.37766728601541,53.100918458822754],[-126.37735501636136,53.100936827652944],[-126.377030109053,53.10100676786502],[-126.37701161389518,53.101135123257066],[-126.37704780573361,53.10131371564181],[-126.37716993152584,53.101476356447115],[-126.37730980368922,53.101636690599065],[-126.37745715038601,53.1017958892172],[-126.37760353524291,53.10195284084404],[-126.37775739465815,53.10210697174205],[-126.37791590992522,53.10225941134761],[-126.37807442625228,53.10241184176407],[-126.37822827407827,53.10256597205712],[-126.37837280861247,53.102722937564636],[-126.37850799976624,53.10288272945252],[-126.37863574332965,53.1030447859351],[-126.37875974606791,53.10320853045066],[-126.37888189886603,53.103372845461465],[-126.37900403764368,53.103537160378636],[-126.37912805324217,53.103700348686125],[-126.3792380954977,53.10387086909984],[-126.37937328354712,53.104029539474965],[-126.37957186402062,53.10416167105503],[-126.37977603864374,53.10429322857957],[-126.37998395639454,53.10442309751842],[-126.38019744818233,53.104550142548376],[-126.3804156009815,53.104674366578074],[-126.38064027578446,53.10479465210226],[-126.38087049950293,53.10490931706088],[-126.38110816293789,53.10501723487553],[-126.38134953443519,53.10512289934547],[-126.38159280318266,53.10522967764701],[-126.38183606327397,53.105337020180876],[-126.38208121048744,53.10544434714865],[-126.38232727693801,53.10555055914513],[-126.38257613855991,53.105656196873994],[-126.38282591907881,53.10575902549175],[-126.3830784946569,53.10585961258415],[-126.38333289701526,53.105956822895244],[-126.38359007912528,53.106050106541595],[-126.38384908778771,53.10613834614954],[-126.38411179387734,53.10622152666531],[-126.38437725912657,53.1062985306646],[-126.38464639658494,53.10636936412208],[-126.38491827273558,53.106431789151316],[-126.3851975218104,53.10648185561093],[-126.38548506638631,53.10651733746653],[-126.38577904553676,53.10654102841175],[-126.38607761858863,53.10655629576166],[-126.38637988258951,53.10656427184668],[-126.38668491513722,53.10656887675128],[-126.38699086556471,53.10657235741334],[-126.38729589823696,53.10657696074143],[-126.38760003366694,53.10658492757692],[-126.38790047365173,53.10659962846108],[-126.38819632068765,53.10662275152775],[-126.38851196528826,53.106661486142784],[-126.38876780394214,53.106709389176444],[-126.38904162619896,53.10677907678684],[-126.38930902640718,53.106861665614574],[-126.38957273752243,53.106951553405885],[-126.3898355423115,53.10704368449823],[-126.39010018838732,53.10713244757737],[-126.39036757745149,53.10721335785108],[-126.39064230787929,53.107280242109965],[-126.39092436274963,53.10732804488601],[-126.39121652083651,53.10735621015189],[-126.39151602400155,53.10736922876942],[-126.3918191762361,53.10737214151449],[-126.39212228191474,53.107370016090314],[-126.39242257867657,53.10736846391998],[-126.39272099845552,53.10736466735693],[-126.39301935650825,53.1073558326986],[-126.39331675519087,53.10734363912604],[-126.39361508116512,53.1073297655228],[-126.39391339713963,53.10731644694289],[-126.39421174873416,53.1073053683927],[-126.39451012691339,53.10729877080433],[-126.39480950020157,53.10729777139435],[-126.39510891524819,53.10730125289091],[-126.39540650624853,53.107309777278125],[-126.39577653917195,53.10736064452365],[-126.39598942186812,53.10711455284111],[-126.39617709149815,53.10697386766001],[-126.39638070353054,53.10683816626278],[-126.39657870566036,53.10670137183123],[-126.39674949010853,53.10655626053169],[-126.39687804154681,53.10639784533948],[-126.39697658119096,53.106230002451525],[-126.39705445560637,53.10605495041658],[-126.39712014903424,53.105877142582294],[-126.39718117178084,53.10569934142089],[-126.39723470032199,53.10552213009899],[-126.39726012593918,53.10533941091448],[-126.39728179439304,53.105156704331634],[-126.3973306728641,53.10498174944122],[-126.39743673341677,53.104818371514355],[-126.39759991309555,53.10466151512645],[-126.39780534367162,53.104521887825335],[-126.39803632759171,53.10441299105602],[-126.39830806428392,53.10435941446973],[-126.39861567050197,53.10434157081034],[-126.39891757314452,53.10431254106417],[-126.39920238443173,53.104258353582296],[-126.39948339948211,53.104196899773925],[-126.39976439350984,53.10413488961876],[-126.40001744322066,53.104084168927145],[-126.4000482481448,53.10407790666901],[-126.40033596027712,53.1040332349589],[-126.40062844133269,53.10399751001212],[-126.4009209281197,53.103964025227256],[-126.40121533215664,53.10393389457038],[-126.4015106796323,53.103905436172695],[-126.40180697601679,53.10387922368118],[-126.40210329754443,53.10385412185007],[-126.40239960911377,53.10382958401731],[-126.40269594595031,53.10380616580816],[-126.40299133422972,53.10378219434328],[-126.40329042130686,53.1037537187401],[-126.4035904200036,53.10372356306677],[-126.40389049199246,53.10369957335912],[-126.40418785121355,53.10368623199651],[-126.40448163944366,53.103690829370926],[-126.4047700289216,53.10371785358554],[-126.40505300399433,53.10376561957083],[-126.40533424812563,53.10382796568263],[-126.4056127541575,53.103898154736555],[-126.40589129761942,53.103970592878156],[-126.40617166038898,53.10403909804138],[-126.40645382403503,53.10409863271538],[-126.40673690029362,53.10415647841354],[-126.40701997741078,53.10421433239526],[-126.4073048992933,53.10426937372678],[-126.40759071216068,53.10432048522933],[-126.40787928581547,53.104365993209186],[-126.40817059305354,53.104403083159774],[-126.408465535939,53.10443063148967],[-126.40876232736262,53.104454255585246],[-126.40905909878711,53.10447732326037],[-126.40935588541564,53.10450038117506],[-126.40965263583229,53.10452120652638],[-126.40994845308408,53.104541469660624],[-126.41024522980287,53.10456340492522],[-126.41054199194788,53.104585348459665],[-126.41083603136126,53.104615134928146],[-126.41113010926202,53.10464884660376],[-126.41142422025156,53.10468591879611],[-126.41171373259466,53.10473029370799],[-126.41199494927784,53.104788133310514],[-126.4122725065488,53.1048543928951],[-126.41254728894606,53.10492458758378],[-126.41282024347551,53.10499758467083],[-126.41309227780584,53.105072825251646],[-126.41336431852064,53.105148620929576],[-126.41363634936337,53.10522330452573],[-126.41390837013756,53.10529685811371],[-126.41418224104474,53.10536817264947],[-126.4144588570283,53.105433865693456],[-126.41475657586783,53.10545635105698],[-126.41504697012836,53.105495112452715],[-126.41533283207016,53.105547890253185],[-126.41561684170503,53.105604035237505],[-126.41590085606794,53.10565905906978],[-126.41645449620624,53.105734977051625],[-126.41674869648948,53.10577987888036],[-126.4170169346491,53.10584840109771],[-126.41723972170323,53.1059557432756],[-126.41742260625169,53.106096830585294],[-126.41758600980626,53.10625535793576],[-126.41775035758732,53.106413881713834],[-126.41793511137959,53.10655440585693],[-126.41816070904387,53.10666229208634],[-126.41842908229644,53.10674370031273],[-126.41872249085532,53.10680148077199],[-126.41902223110185,53.10683795840851],[-126.41931519950852,53.1068526059801],[-126.41960974360934,53.1068358745335],[-126.4199078481482,53.10680232290138],[-126.42020598379868,53.10677044660327],[-126.42050428746144,53.106757060921694],[-126.42080273385291,53.106756563678466],[-126.42110215271174,53.106760535069164],[-126.42140067877995,53.10676955540803],[-126.42169927014436,53.10678362128452],[-126.42199602582852,53.106802730520556],[-126.42229189275612,53.10682575929379],[-126.42258777680381,53.10685047242872],[-126.42288275550492,53.106877428970265],[-126.42317773643481,53.106906069931334],[-126.42347274947609,53.10693638624143],[-126.42376683667908,53.10696838133405],[-126.42406092997497,53.10700094038299],[-126.42435409757388,53.10703518718686],[-126.42464728618201,53.10706998893441],[-126.4248747650602,53.10708429325219],[-126.42523089197884,53.1071452024896],[-126.42552227280785,53.1071861665876],[-126.42581272810517,53.10722881846481],[-126.42610225222647,53.10727259343963],[-126.42639086584052,53.10731805615311],[-126.42664213170593,53.10737093142091],[-126.42694684441302,53.10743481768606],[-126.42722912950448,53.10750270132516],[-126.42749374371722,53.10758017653086],[-126.42778718181646,53.10763906384114],[-126.42808238063702,53.10768841570904],[-126.42839251859992,53.107733230892364],[-126.42868846919126,53.10776353080968],[-126.42903581126141,53.10778804122504],[-126.4293728144965,53.10771398822674],[-126.42961017374127,53.107594913534],[-126.42983914206543,53.107478118732715],[-126.43006900095456,53.10735627370998],[-126.43031773628073,53.10725228678843],[-126.43056457440791,53.10714438017026],[-126.43081046261341,53.10703592074202],[-126.431056372347,53.106929701621745],[-126.43130324883663,53.10682740452533],[-126.43154352015821,53.106718964031515],[-126.43178000250776,53.10660605505775],[-126.43201744368461,53.10649481829578],[-126.43226055606488,53.106390847748564],[-126.4325131745616,53.10630028737377],[-126.43278562475808,53.1062287015883],[-126.43307981805559,53.10618000933129],[-126.43338079574684,53.10615369161003],[-126.4336735959538,53.106150376936505],[-126.43396123263817,53.10619246341651],[-126.43424815984035,53.10625583149195],[-126.43453593911345,53.106310241060825],[-126.43482368687216,53.10636296488138],[-126.43511572941466,53.106377576713754],[-126.43541389666808,53.10635014370853],[-126.43570736123958,53.10632105108057],[-126.4359888118261,53.10630713266164],[-126.43629658686993,53.106304312012234],[-126.43664373100559,53.10631031776347],[-126.43685157148404,53.10632467157559],[-126.43715033814536,53.106355504623195],[-126.43744226582031,53.106358906579985],[-126.43775245840168,53.10631909815997],[-126.43803323681472,53.10624019092969],[-126.43811893867536,53.106113261843134],[-126.43820106736065,53.10591295158406],[-126.43828152702625,53.105732259893216],[-126.43837324675944,53.10555488774042],[-126.43854496218572,53.10542427792456],[-126.43879953111025,53.10534322512175],[-126.43909549525641,53.105286103343616],[-126.43939150255889,53.10523177731866],[-126.4396724566459,53.10517079276064],[-126.43995436443299,53.10511091547337],[-126.44023723189548,53.10505271910177],[-126.4405210557381,53.10499732410835],[-126.44080772432109,53.10494639068478],[-126.441097171273,53.10489209378793],[-126.44139041186689,53.10484281958753],[-126.44168386190148,53.10481371209899],[-126.44197579100369,53.104818223276986],[-126.44227258620099,53.104840078130884],[-126.44257137226623,53.10487481452482],[-126.44286562933651,53.10492301261619],[-126.44314880178608,53.10498469701424],[-126.44341435480908,53.10506045702026],[-126.44365676019376,53.105159823938074],[-126.44388438663391,53.10527718212626],[-126.44410739970441,53.105401270982235],[-126.44433505800089,53.10552142483681],[-126.4445775270244,53.105626400866925],[-126.44483112330421,53.10572180616401],[-126.44508659173526,53.10581720386765],[-126.44534485761818,53.1059109053131],[-126.4456068164724,53.10600123986711],[-126.44587153738237,53.10608651688635],[-126.44613993650681,53.10616561243853],[-126.44641294504262,53.10623741148983],[-126.4466905183413,53.10629910855428],[-126.44697357559757,53.10634845921171],[-126.44726490978744,53.10638489710939],[-126.44756177195838,53.10641178499944],[-126.4478622964591,53.1064324912775],[-126.44816374066062,53.1064509613564],[-126.44846426296908,53.10646998991117],[-126.44876202483208,53.10649406575463],[-126.4490551851253,53.10652601048851],[-126.44934005831031,53.10656974630856],[-126.44961208432771,53.106637059894005],[-126.44986663499981,53.106731886060714],[-126.45010825891409,53.10684413245518],[-126.45034151943743,53.10696089203912],[-126.45056171952051,53.10708106230643],[-126.45076242507116,53.10721475196942],[-126.45096033571562,53.10735013711413],[-126.45117404292974,53.107475933277556],[-126.45140353781548,53.10758989949759],[-126.45164233572412,53.10769879215854],[-126.45188483529662,53.1078037530716],[-126.45213013223237,53.10790701762137],[-126.45239771914164,53.10799618618403],[-126.45264204553912,53.10809665672515],[-126.45281662669271,53.108236045167665],[-126.45294376921056,53.10840194133579],[-126.45305317146598,53.108571831417485],[-126.45312992705249,53.10875025441707],[-126.45320852443496,53.108925864670255],[-126.45335696267463,53.10906983430608],[-126.45362270638256,53.109160692308855],[-126.4538976900256,53.109239189230365],[-126.45417911418174,53.10930813241826],[-126.45440666586445,53.109413701291814],[-126.45455620619411,53.10957335154247],[-126.45474665524799,53.10970875894545],[-126.45499755673664,53.10981087549155],[-126.4553481658304,53.109700276784565],[-126.45558467971361,53.109594607528855],[-126.45578629401976,53.10946217244491],[-126.4559718802467,53.10931915897438],[-126.45614620211352,53.10917282729077],[-126.45630170881098,53.10901704856169],[-126.45646944768218,53.108868500863245],[-126.45667954691011,53.10874331886271],[-126.45690658768501,53.10862759039635],[-126.45714116015577,53.10851632314707],[-126.45738044685937,53.108407833841326],[-126.45762254362525,53.10830045361889],[-126.45786276195265,53.10819251545445],[-126.4580992066192,53.10808179475362],[-126.45832718025305,53.10796718929288],[-126.45853914062448,53.10784199667007],[-126.45871815701365,53.107697883719794],[-126.45888586395502,53.107547647386056],[-126.45906016847763,53.10740131125997],[-126.45923166053687,53.10725386532809],[-126.45939657090943,53.10710420379237],[-126.45957364665418,53.10695561517491],[-126.45972446850702,53.106800405627844],[-126.45980212740994,53.10662923830198],[-126.45986664866118,53.106453075470526],[-126.45992176280247,53.10627358780931],[-126.45996378215183,53.10609303059508],[-126.45998989609197,53.105913090983975],[-126.45999731202996,53.10573435352849],[-126.45997761520066,53.10555795350708],[-126.45992237267194,53.1053805802692],[-126.4598353271559,53.10520500690889],[-126.45972309246699,53.10503513372471],[-126.45957271173734,53.10488389181394],[-126.45939896198358,53.104734990403585],[-126.45918792778835,53.10459854964916],[-126.45898350866496,53.10446881454574],[-126.45876416237486,53.104341368970026],[-126.45854725285244,53.10418030872251],[-126.45846210454997,53.10400640311135],[-126.45844193532746,53.10387147047888],[-126.45844063679945,53.10366419053923],[-126.45843296437499,53.10347374218724],[-126.458407601841,53.103291761382756],[-126.45840564532065,53.103110819213185],[-126.45840555960018,53.10292986080652],[-126.45842514984871,53.10275107596009],[-126.45848125055603,53.10257550190278],[-126.45857106267329,53.10240316736783],[-126.45868150179257,53.10223522558386],[-126.45881447511555,53.102075048399506],[-126.4589708920545,53.10192093807256],[-126.4591151185534,53.101763513488244],[-126.45923681518718,53.10159888876635],[-126.45934723753197,53.10142983483365],[-126.4594258127462,53.101256978469436],[-126.45946225929073,53.101080359703104],[-126.45947433998087,53.100901038953076],[-126.45947051425846,53.10072065955416],[-126.45946014231855,53.10053974983415],[-126.45944881536201,53.10035771438186],[-126.45940923899593,53.100158426036664],[-126.45936728641537,53.099999483517635],[-126.45935461203736,53.09995135291611],[-126.45931413617204,53.099755994090785],[-126.4593160993824,53.09959183429548],[-126.45937040730104,53.09950982951002],[-126.45963278782583,53.09946735238783],[-126.45997872239786,53.099537716231914],[-126.46028564968152,53.09963512206502],[-126.4605094840229,53.099746296411816],[-126.46070925553668,53.09988109382842],[-126.46087143061078,53.09999923057128],[-126.46090349528649,53.10002319995715],[-126.46110980616429,53.100156286011256],[-126.46134390888787,53.10026574249503],[-126.46159935719409,53.10035886397734],[-126.46186132518461,53.10044859804666],[-126.46211028159706,53.10054734609912],[-126.46233717133516,53.100679793791905],[-126.46255483412097,53.1008251579796],[-126.46277871131886,53.10093913347025],[-126.46302607182973,53.10097626044916],[-126.46329401771848,53.10092758643437],[-126.46357456586017,53.10083517334174],[-126.46386077069005,53.10074553404779],[-126.46415591886097,53.10070459454239],[-126.46447108885515,53.1006988746544],[-126.46475128226201,53.100659121847166],[-126.46499424050026,53.10055003725055],[-126.46524621679771,53.100411793595235],[-126.46545781145339,53.10025857768834],[-126.4655795960731,53.10010459471099],[-126.46557189939277,53.099999301560175],[-126.46556959802591,53.09996009443878],[-126.46545385257107,53.09981208452333],[-126.46526887234248,53.0996626708257],[-126.46504090973059,53.09951735205163],[-126.46479901513813,53.09938160707063],[-126.46457038548567,53.099259810756884],[-126.46432793410482,53.0991576808782],[-126.46406227042313,53.09907189283283],[-126.46378551493333,53.098996787629595],[-126.46350879445274,53.09892616349328],[-126.46322382336253,53.0988701370634],[-126.46292700680243,53.09884216791539],[-126.4626314608103,53.098845566010795],[-126.46233425782924,53.098868573466326],[-126.46203612399952,53.09889271323817],[-126.46177382018934,53.09876992269025],[-126.46153782685936,53.09865936287673],[-126.46130185577191,53.09854935825277],[-126.46106587094346,53.09843935320912],[-126.46082432680726,53.09833273075652],[-126.46057812406463,53.09822836688847],[-126.4603365673916,53.098121743484626],[-126.46010803643021,53.09800722563717],[-126.4599008781005,53.09788029908879],[-126.45971694477267,53.097739271567605],[-126.45954603723888,53.09759035882883],[-126.45938256809518,53.09743861128358],[-126.45921632592696,53.097289115205015],[-126.45905101559549,53.09713849480169],[-126.45889595097573,53.096984472987415],[-126.45876233141281,53.096824765403454],[-126.45865109623927,53.09665768329736],[-126.45855944123906,53.09648548750111],[-126.45848552585817,53.09631098187634],[-126.45843954549505,53.096123486980524],[-126.4584179466911,53.095943176017336],[-126.458594342283,53.09582148154507],[-126.45883533932076,53.09570513833586],[-126.45912812568749,53.0956216426669],[-126.45940618323372,53.09556005706017],[-126.45968226622374,53.09548895900597],[-126.45996213187458,53.095421762723696],[-126.46023349873518,53.09534787607955],[-126.46048314188327,53.09525390508023],[-126.4607044458835,53.09513427332257],[-126.4609068728287,53.0949990282453],[-126.46110086424024,53.09486157478732],[-126.461284504168,53.09471911482262],[-126.46145311176085,53.09457055517347],[-126.46160857585471,53.0944175647419],[-126.46175463753718,53.0942601289622],[-126.46188756203831,53.09409882717942],[-126.4620129424615,53.093931943427734],[-126.46213797393678,53.093733132086996],[-126.46225956260213,53.093561789957235],[-126.4623437349569,53.093390029352676],[-126.4621828201575,53.093300456751884],[-126.46204396096222,53.0932601071864],[-126.46156684661369,53.0931616853623],[-126.4612837446644,53.093101729782575],[-126.46099509299032,53.0930473885424],[-126.46070922816075,53.092991924231654],[-126.4604298389723,53.092929146487855],[-126.4601643343319,53.09285230370955],[-126.45992565287975,53.092748473716625],[-126.4597119546699,53.09262045154602],[-126.45950103443865,53.09248905678354],[-126.45927345769859,53.09237396865798],[-126.4590171167333,53.092279169183406],[-126.45874496183906,53.09219282955908],[-126.45846363773984,53.092123331881034],[-126.45815074165203,53.09207468009034],[-126.45789647596304,53.092085749763186],[-126.45760623162542,53.09214346205846],[-126.4573131641064,53.09219893466412],[-126.45701794169337,53.09222808839095],[-126.45672080019565,53.09225276692917],[-126.45642356795437,53.09226904605279],[-126.4561262088948,53.09227355553849],[-126.45582581673803,53.09225622239891],[-126.45553820192086,53.092210836549185],[-126.45525513880492,53.09215309837235],[-126.45497393493756,53.092094240857925],[-126.45469270176858,53.09203257714042],[-126.45441238808525,53.091968668286114],[-126.45413390668037,53.091902510793865],[-126.45385820918631,53.091833536306595],[-126.45358435306461,53.09176175742511],[-126.4533132749978,53.09168660585374],[-126.4530430957241,53.091608653531026],[-126.45277382112992,53.091528447228114],[-126.45250732482607,53.09144487723747],[-126.4522436066683,53.09135792565085],[-126.45198638072223,53.09126647574195],[-126.45173471913697,53.0911705131721],[-126.45149141418943,53.09106948052034],[-126.4512582617561,53.09095496299753],[-126.4510501294197,53.090817940180635],[-126.45088764752283,53.0906650562849],[-126.45078396763401,53.09050186366026],[-126.45072040085779,53.09032843373972],[-126.45068480601833,53.09014705382244],[-126.45066789076473,53.08996336170538],[-126.45066129360895,53.08978187115268],[-126.4506687460431,53.08960313265099],[-126.45069303088967,53.08942432096961],[-126.45072666701529,53.08924548256002],[-126.45076403739472,53.089066065161106],[-126.4507958025796,53.088887224866426],[-126.4511128770662,53.08880422066827],[-126.45134556229794,53.08870024907523],[-126.45150759765681,53.088548931564006],[-126.45163488468772,53.08838317157461],[-126.45174156838056,53.0882146935067],[-126.45183698212956,53.08804177654284],[-126.4519314734905,53.08786942772594],[-126.45203817257848,53.08770262549417],[-126.45216927911552,53.08754470246667],[-126.4524036636467,53.08742559136207],[-126.4526427806781,53.0873126287134],[-126.45274490930127,53.08715537175334],[-126.45278976800094,53.08697760995452],[-126.45280087944215,53.08679212519488],[-126.45279517732804,53.08660839003164],[-126.45274933728619,53.08643209618579],[-126.45266238727423,53.086257636025394],[-126.45263243976262,53.08608015178429],[-126.45263894069384,53.085901416392545],[-126.45265011832909,53.085722098349194],[-126.45266690621214,53.08554275879325],[-126.4526874341656,53.08536340488708],[-126.45270983204377,53.085184043793724],[-126.45273222370469,53.08500411798388],[-126.45275461527133,53.084824201114635],[-126.45277514250613,53.08464484711975],[-126.45279286591919,53.084464939129774],[-126.45280403659214,53.08428506519414],[-126.45280023470764,53.084104119183856],[-126.4527879922896,53.08392152927592],[-126.45277202486811,53.08373895362269],[-126.45276073119824,53.08355692475686],[-126.45276160315802,53.08337652547849],[-126.4527802775451,53.083198854657944],[-126.45282517373047,53.08302500945456],[-126.45290097387276,53.082854971890576],[-126.45299924013815,53.082688765294414],[-126.45311717778803,53.0825252798561],[-126.45325009232596,53.08236342201739],[-126.45339237369558,53.082203213256356],[-126.45353934231164,53.08204354206665],[-126.45368817075844,53.08188441928798],[-126.45383232475828,53.0817247585044],[-126.45396898592726,53.08156400584411],[-126.45410660050099,53.08140436981553],[-126.45425263926522,53.0812463864105],[-126.45440148029151,53.08108894778338],[-126.45454751677546,53.08093095502197],[-126.45468793054685,53.08077187219136],[-126.45481709976312,53.08061058255285],[-126.45493033940846,53.08044543691859],[-126.45502482237725,53.08027644622233],[-126.4551033760211,53.08010359065364],[-126.45516880389242,53.07992742416151],[-126.45522580028862,53.079749049153484],[-126.45527623222422,53.07956957892101],[-126.45532384542864,53.079389554791504],[-126.45537147328378,53.07920953953006],[-126.45542378581747,53.0790311824003],[-126.45548172536536,53.078854479763294],[-126.45554903764668,53.07867999085041],[-126.45562948007067,53.07850936842156],[-126.45572679815992,53.078343162721296],[-126.45585787398196,53.078186346223745],[-126.45604051705462,53.07804390565462],[-126.45625505039543,53.077909740712094],[-126.45647802504021,53.07777890417453],[-126.4566897435302,53.077644749288375],[-126.45686677210445,53.07750232011874],[-126.45698944079264,53.077346099496836],[-126.45707271433294,53.077179391119344],[-126.45713442626385,53.07700659900115],[-126.45717926781639,53.07682994597285],[-126.4572100574326,53.07664999482884],[-126.457231453024,53.07646727434409],[-126.45724630585507,53.07628401444021],[-126.45725835550077,53.076100209608846],[-126.45727134448504,53.0759175215973],[-126.45728809687452,53.075737059950676],[-126.45729925217998,53.075557740427044],[-126.45729730765663,53.07537735111873],[-126.45728880588038,53.0751964314191],[-126.45727844938791,53.075015509916305],[-126.45727182339604,53.074835138674146],[-126.45727644229471,53.074655844361814],[-126.4572969636572,53.07447817366804],[-126.45733711434659,53.074300982713616],[-126.45739130633345,53.07412485783603],[-126.45745765776323,53.073948685825236],[-126.45753522932888,53.07377414653406],[-126.45762123305767,53.07360070394759],[-126.4577166020633,53.07342890122545],[-126.45781855145454,53.07325986961729],[-126.457927066313,53.073093618128226],[-126.45805149436903,53.072930110492784],[-126.45819279857746,53.07276988971924],[-126.45834909762645,53.07261465721189],[-126.45851856989776,53.072466096220346],[-126.45870026423883,53.07232477510465],[-126.4588988799431,53.072192342826774],[-126.45911158116492,53.07206658729418],[-126.45933274382246,53.07194471565785],[-126.45955673510575,53.071824508826516],[-126.4597788286158,53.07170319742841],[-126.4599980996944,53.07157964666707],[-126.46021830569158,53.07145553608413],[-126.46033619042483,53.07129260708804],[-126.46040523682453,53.071108579205095],[-126.46047712799178,53.07092902209169],[-126.46060074641963,53.07077783994782],[-126.46084282720437,53.070689498197815],[-126.46115643940774,53.070646251673615],[-126.46145241445227,53.07061372226873],[-126.46175228985553,53.07059742832606],[-126.46205123162997,53.07058057255083],[-126.46234063055302,53.07054582567753],[-126.4626164786141,53.07046855289008],[-126.46282918119296,53.07034334621528],[-126.46295640605013,53.07018093360801],[-126.46305729906994,53.07000406678658],[-126.46318640985325,53.06984333170287],[-126.46338693670526,53.069717051225595],[-126.46364004452006,53.069612408914054],[-126.46392152304247,53.06953791658843],[-126.46421087654622,53.06949980381115],[-126.4645022215965,53.06947288730828],[-126.46479641808759,53.06945099655042],[-126.46509348117307,53.069434140420995],[-126.46539151697432,53.06942008539747],[-126.46569049819817,53.06940770213446],[-126.46599041877553,53.06939643488983],[-126.46629034794276,53.06938460212607],[-126.46659024976468,53.069371657189734],[-126.46688826608788,53.06935591325703],[-126.46718529678431,53.06933624630034],[-126.46748040230625,53.069311548526976],[-126.46777447271396,53.06927845497876],[-126.46806562857803,53.06923472318179],[-126.4683529337493,53.06918092159129],[-126.46863077363852,53.069116507787676],[-126.46890009658962,53.069042051758174],[-126.46916275668329,53.06895752826648],[-126.46942066668318,53.06886686488828],[-126.46967572938918,53.06877173032913],[-126.46992890301918,53.06867492648312],[-126.47018115444808,53.06857868151516],[-126.47043527155957,53.068483549050725],[-126.47068939622194,53.06838785127613],[-126.47094162309608,53.06829104899265],[-126.47119102729259,53.06819200749109],[-126.47143572720029,53.06808963174372],[-126.47167382584936,53.067982790943496],[-126.47188927957787,53.06785700087217],[-126.47205960633883,53.0677078516468],[-126.47218020675172,53.06754265843631],[-126.47227732890168,53.067366918853516],[-126.47237917458692,53.06719507749003],[-126.47251579974166,53.067041580385464],[-126.47273044138426,53.0669281172593],[-126.47301279068861,53.06685022911621],[-126.47327819427595,53.066762888561904],[-126.47342983780219,53.06661549730634],[-126.47355604003269,53.06644915961319],[-126.47372166844644,53.06629947090234],[-126.47389293723289,53.06615144451882],[-126.4740717043213,53.06600674026237],[-126.47425895818695,53.06586816878888],[-126.4744753418248,53.06574292579977],[-126.4747247228966,53.06564388565491],[-126.47502240657634,53.065602351219894],[-126.47526162511636,53.06551342620572],[-126.47541404633587,53.06535370377937],[-126.47554307737671,53.065191278590426],[-126.4756019754541,53.06510924595291],[-126.47538172209651,53.06488715605058],[-126.47520991209335,53.064734896694596],[-126.47509684987489,53.064571204860876],[-126.47505837615805,53.06438984087291],[-126.4750236261568,53.06420846187679],[-126.47491524634299,53.06404474203],[-126.4747658650804,53.06389183601547],[-126.47460251134434,53.06374234741602],[-126.47442982314445,53.06359513705587],[-126.47425155620776,53.063449069325856],[-126.47407327554527,53.06330300137451],[-126.47389873679828,53.063155797643866],[-126.47373257159371,53.06300576332197],[-126.47357945372676,53.062852306010974],[-126.47343469055718,53.06269434201378],[-126.47328991212726,53.062533572190354],[-126.47315069582866,53.06236997419325],[-126.47302174315345,53.06220410289888],[-126.47290771901272,53.062035921730875],[-126.4728142493244,53.061867102383296],[-126.47274600149152,53.06169650573125],[-126.472719781636,53.06152405557799],[-126.47274865388798,53.06134802339952],[-126.47281115225466,53.061169050862944],[-126.47288296790006,53.0609889294376],[-126.47293983942943,53.06080830307365],[-126.47296027593215,53.06062949884726],[-126.47296292436599,53.06044853383175],[-126.47295250465157,53.060267612174194],[-126.47292432844881,53.06008732633852],[-126.47287750012991,53.059910476640056],[-126.4728026938231,53.05973878561476],[-126.47269336088317,53.05957227046273],[-126.47256537911608,53.059408070808814],[-126.47243646257408,53.05924443050729],[-126.47231687309505,53.059079076494506],[-126.47218887932037,53.05891487644559],[-126.4720627642361,53.05875011297296],[-126.47195437868336,53.0585835932761],[-126.47187584679826,53.05841247220998],[-126.47184480945809,53.05822715069454],[-126.47189703935615,53.05804990456561],[-126.47202049235925,53.05789086626921],[-126.47216173115346,53.057733988723015],[-126.47231606113975,53.057579308569586],[-126.47247977415769,53.05742682266785],[-126.47264910269908,53.05727656398794],[-126.47282219509192,53.05712740150228],[-126.47299530258452,53.05698104439365],[-126.47317781183291,53.056838575537874],[-126.47336970528791,53.056701106489605],[-126.47356723765411,53.05656529075231],[-126.47376288507792,53.05642949119599],[-126.47395102707186,53.05628979522515],[-126.4741269566781,53.05614510128446],[-126.4742887990408,53.05599487015862],[-126.47444218792565,53.05584018183085],[-126.47459089875227,53.055684400561084],[-126.4747395872206,53.05552805444762],[-126.47489204586012,53.05537336922064],[-126.4750529431193,53.055222020266854],[-126.47522510823974,53.05507566345746],[-126.47540478486789,53.05493263761257],[-126.47559009166004,53.05479182978404],[-126.47577915351005,53.05465268277374],[-126.47597009552858,53.05451465732164],[-126.47616290494157,53.05437661504979],[-126.47635384447027,53.0542385889551],[-126.47654290135219,53.054099440677305],[-126.47664611131655,53.0538883713545],[-126.47673108236201,53.0537160370593],[-126.4768160376672,53.05354369378271],[-126.47689913229547,53.053370802175934],[-126.47696537429852,53.05319630231517],[-126.47699513356297,53.053017458858214],[-126.47704266509989,53.05283967302401],[-126.47707709431394,53.052661375366974],[-126.47710592588056,53.05248253557205],[-126.47715251455713,53.05230475344453],[-126.47723747167579,53.05213297442729],[-126.47745193933173,53.05201052917241],[-126.47747326057473,53.051830043324394],[-126.47744415654084,53.05165088188056],[-126.47744400246266,53.051471047574644],[-126.47745786166844,53.05129171234392],[-126.4774735979466,53.051111804771374],[-126.47748092433687,53.0509324959206],[-126.47746674830317,53.050752718249406],[-126.47742271533423,53.05057529332941],[-126.47737587251773,53.05039788870218],[-126.47735516454337,53.05021812841287],[-126.47739520230664,53.05004037243024],[-126.47750731185592,53.04987352091852],[-126.47765504879145,53.049717739060796],[-126.47782342034192,53.04956915222643],[-126.47800118377268,53.04942500909211],[-126.47817894599623,53.04928086567804],[-126.47835013683849,53.04913338711729],[-126.47850161763161,53.0489787004728],[-126.47861934450255,53.0488135102317],[-126.47867715261746,53.048637357858425],[-126.4786489788229,53.048458757326834],[-126.478568544951,53.04828540639422],[-126.47846760281877,53.048116055773015],[-126.47836853004631,53.047946706440975],[-126.47829275556805,53.04777277166575],[-126.47826925617082,53.047593587293136],[-126.47829619599688,53.04741476327619],[-126.47835026034029,53.04723806135538],[-126.47842865160442,53.04706463125688],[-126.47852576408604,53.04689447772787],[-126.4786388089245,53.046728185725215],[-126.47876870400663,53.04656630724787],[-126.4789323767587,53.04641606128549],[-126.47912327137782,53.04627802111194],[-126.47932449669256,53.04614555012254],[-126.47952197992765,53.046011408746025],[-126.47970159733538,53.045867810905904],[-126.47984836424557,53.045711465062624],[-126.47996889319506,53.045546826445374],[-126.48006412140714,53.045376123355666],[-126.48013689084826,53.04520215002442],[-126.4801741108334,53.04502383924508],[-126.48016460353128,53.044844033287696],[-126.48014576115325,53.0446648300146],[-126.48015773213832,53.04448494561618],[-126.48022488840142,53.04431043023379],[-126.48029672240037,53.04413590472386],[-126.48033580905695,53.04395758618112],[-126.48036273777001,53.04377875235142],[-126.48038407012875,53.0435993855038],[-126.48040632896115,53.0434200148621],[-126.48043233048762,53.04324119369566],[-126.48046767927477,53.04306289022466],[-126.4805161116666,53.04288508923009],[-126.48059728719822,53.04271220161797],[-126.48070282094777,53.04254426146914],[-126.4808130294966,53.04237741370053],[-126.48090637900565,53.042206717227],[-126.48095668317326,53.04202947305812],[-126.4809639869907,53.041849607302694],[-126.48095448345131,53.041670365783816],[-126.4809561826083,53.041490513864716],[-126.48095320397749,53.0413106899518],[-126.48095024021558,53.04113085699549],[-126.48096128649136,53.04095153166493],[-126.48100316215877,53.040773201182645],[-126.48110587341732,53.040604707226926],[-126.48124137877312,53.04044448770501],[-126.48136843730506,53.04028149671985],[-126.48143464041716,53.040106984062405],[-126.48147184418396,53.03992811660183],[-126.48157736745284,53.03976016643531],[-126.4817353657081,53.03960825376114],[-126.48183620316458,53.03943976668041],[-126.48191550730037,53.03926632963654],[-126.48196767183497,53.03908907710575],[-126.48202545281946,53.038912922097275],[-126.48207574841348,53.03873567711154],[-126.482137264548,53.038559506751795],[-126.4821361554631,53.03838023067482],[-126.48204454374167,53.038209167784856],[-126.48192778558946,53.038043810014734],[-126.48185200148865,53.03786875607037],[-126.48194162003225,53.03769975874343],[-126.48206397329643,53.0375339801754],[-126.48214701941775,53.03736276848955],[-126.48220199008814,53.037185504181075],[-126.4822766047051,53.0370115210693],[-126.48232316107119,53.036834291048265],[-126.48237720160087,53.03665815090414],[-126.48256247550435,53.03652348864893],[-126.48279938959436,53.03641327492234],[-126.48297989676009,53.036269667440486],[-126.48314538066104,53.036120527606734],[-126.48328929403324,53.03596306758499],[-126.48339011023941,53.035794014110024],[-126.48345535890893,53.035618392167656],[-126.48354401422264,53.03544714732661],[-126.48370762504105,53.03529801428619],[-126.48390504398259,53.03516386473022],[-126.48402458575096,53.0349992158576],[-126.48407579483126,53.03482196581518],[-126.48411579845066,53.03464364119202],[-126.48418104235137,53.03446801873046],[-126.48432310398898,53.03431280586833],[-126.48455810131408,53.034199790517],[-126.48478656096442,53.03408623680647],[-126.48493983257376,53.03393154183745],[-126.48504812794711,53.03376414120727],[-126.48513956722654,53.03359288349721],[-126.48522633735682,53.03342108912285],[-126.48531964943824,53.03325038826809],[-126.48542325180296,53.03308188600639],[-126.48550066162538,53.0329084535937],[-126.4855322385096,53.032729598191665],[-126.48554886657575,53.03255024849878],[-126.4855580170799,53.03237037378007],[-126.48556436475154,53.03219106634662],[-126.48557164725915,53.03201119031089],[-126.48558640713448,53.03183184822285],[-126.48561237329646,53.031652459997794],[-126.48565610939087,53.03147468385973],[-126.48573911626336,53.031302339620986],[-126.48586988488618,53.03114101271065],[-126.4860212677514,53.030985759051106],[-126.48616984896738,53.030829951984956],[-126.48630623676911,53.0306702776644],[-126.48643792766305,53.03050894624709],[-126.48657525473553,53.03034926770529],[-126.48672476452909,53.03019402077261],[-126.48689772069679,53.030048196739735],[-126.48710073383562,53.02991625922071],[-126.48732819025632,53.02979990753059],[-126.48756412811781,53.0296896876322],[-126.48780573193064,53.02958503741392],[-126.48805298907786,53.02948485431223],[-126.48830496016163,53.02938800374154],[-126.48855881506097,53.02929395058107],[-126.48881456429983,53.02920100952772],[-126.48907031038121,53.029109188434106],[-126.48932606389452,53.0290168109726],[-126.48957991431388,53.02892275559491],[-126.48983188509388,53.02882646644234],[-126.49008006579078,53.02872683095006],[-126.49032353204741,53.02862273247139],[-126.49056419024413,53.02851752464236],[-126.49080576704813,53.028411747752244],[-126.49104734917798,53.02830653507164],[-126.49128892368223,53.02820076614303],[-126.49152955562039,53.02809499167071],[-126.49177020140432,53.02798922560246],[-126.49201082450728,53.0278828943885],[-126.49225051354875,53.02777600183101],[-126.49248926863028,53.0276685568991],[-126.49272800111596,53.02756055579274],[-126.49296579952856,53.02745199335584],[-126.49320172262348,53.02734287352825],[-126.49343763159284,53.027232641727686],[-126.49367165867535,53.02712128784048],[-126.49390380407573,53.02700882980476],[-126.4941350088146,53.02689524576249],[-126.49436526461834,53.026781109455996],[-126.49459268434752,53.02666474354995],[-126.4948191700714,53.02654782533498],[-126.49502779661735,53.02642033224576],[-126.49515944110065,53.026258981731345],[-126.49523771842144,53.02608497364213],[-126.49529355919722,53.02590881864089],[-126.49531481952738,53.02572944722751],[-126.49531738360632,53.02554959850588],[-126.49532462367173,53.02536972117052],[-126.49536457774734,53.025191956461676],[-126.49547186856007,53.025024549363025],[-126.49566919600325,53.02488981461164],[-126.49591356589542,53.024786820933045],[-126.49617589204978,53.02470167945423],[-126.49644484578184,53.02462379732247],[-126.49671853812387,53.02455260874311],[-126.49700175029113,53.02449707558875],[-126.4972897145107,53.02444935635869],[-126.49757579284648,53.02439884757046],[-126.497855189246,53.024336605357185],[-126.49811844147936,53.02425201137625],[-126.49835998183568,53.02414678346798],[-126.49859493343749,53.0240365450623],[-126.49884305895797,53.023936326148515],[-126.49911771045333,53.02386737787842],[-126.49941342740853,53.02384427195764],[-126.49971137574235,53.02385085398098],[-126.50000759357422,53.02387033299449],[-126.50030473953977,53.02388867785006],[-126.50060264870689,53.023891896244265],[-126.50089639858882,53.023860395566906],[-126.50116345773155,53.0237813901092],[-126.50139933281764,53.02367169790885],[-126.50161261291963,53.023546414072584],[-126.50181741494107,53.0234155633181],[-126.50202504402772,53.02328637645486],[-126.50224679060494,53.02316610220538],[-126.50249775069105,53.023069224977576],[-126.5027799910033,53.02301256145378],[-126.50307472072721,53.02298496845302],[-126.50337249098372,53.022976975258366],[-126.50367041890824,53.022983547350876],[-126.50396663415177,53.023001895911015],[-126.50426200151112,53.02302808200283],[-126.50455463398977,53.02306044637455],[-126.50484732851649,53.023096736045595],[-126.50514000849788,53.02313301608999],[-126.50540706761878,53.02321199375499],[-126.50563161680718,53.02332924160119],[-126.50585248757098,53.02344987530179],[-126.50608354248187,53.02356373283954],[-126.50631459200685,53.02367703416956],[-126.50654472169876,53.023792024250355],[-126.50677391967326,53.02390645314181],[-126.50700497290403,53.02401975309705],[-126.50722863130318,53.02413924274532],[-126.50746440315682,53.02425588305748],[-126.5077500158532,53.02424625485456],[-126.50799624019423,53.02414490428251],[-126.50818036497397,53.024002926323725],[-126.508408706723,53.023889335175106],[-126.5086370471434,53.02377573461346],[-126.50885500100838,53.02365322322725],[-126.509072961787,53.023530146654025],[-126.50929091302706,53.023407625481234],[-126.50953418751205,53.023293967626124],[-126.50972495275508,53.023162043120735],[-126.50982662162775,53.02299688782938],[-126.50989639544004,53.02282066511236],[-126.50994650854365,53.02263948050629],[-126.5099845247523,53.022461153925505],[-126.50999262847876,53.02228128032788],[-126.50999232992747,53.02210087829146],[-126.51001445913779,53.02192205557661],[-126.51007021970686,53.021744772695904],[-126.51015311677098,53.02157185449849],[-126.51025005066698,53.021402237067086],[-126.5103544663406,53.02123370768832],[-126.51046449644565,53.02106627442192],[-126.51057640640869,53.02089995341534],[-126.51069579796793,53.02073472041411],[-126.51083299410234,53.02057557751267],[-126.5109898767376,53.02042250753414],[-126.511158956637,53.020273866555286],[-126.5113383582536,53.02013021843136],[-126.51152145941525,53.019983757160034],[-126.51172335290057,53.01984729874553],[-126.51197157162713,53.01975938600955],[-126.51224716838526,53.01969599632888],[-126.51253599706745,53.01964600370969],[-126.51283240197522,53.019604932636625],[-126.51312796820737,53.01957115232311],[-126.51342173308771,53.019544102224444],[-126.5137203763047,53.019533837944586],[-126.51402008929942,53.01953421766681],[-126.51431892895292,53.01954019407002],[-126.51462251750002,53.019553436861216],[-126.51490139545132,53.01960712544312],[-126.51515366239006,53.019698471471415],[-126.51539490929079,53.01980610816007],[-126.51563249907315,53.01991879819535],[-126.51587003446642,53.020028135393204],[-126.51610201832875,53.0201402932151],[-126.51633493631644,53.02025300226807],[-126.51657430850096,53.020359524222364],[-126.51682387060644,53.02045872215432],[-126.5170881467079,53.02053936201214],[-126.51738830845024,53.02049994831654],[-126.5175124912105,53.020346448218845],[-126.51768250143662,53.020200034741364],[-126.5178797142999,53.02006470678601],[-126.51797474669269,53.01989509105544],[-126.51806321647175,53.0197227072296],[-126.5182266523033,53.01957408072578],[-126.51842385489878,53.01943706657322],[-126.51861165753324,53.01929617605921],[-126.51880041366437,53.019156401556344],[-126.51902213225112,53.019039456870416],[-126.51928151357488,53.0189497942495],[-126.51954090874104,53.01886013098778],[-126.51977010475979,53.018745384006],[-126.52001058610321,53.01863619838859],[-126.52023897022715,53.01853098296059],[-126.52025072279723,53.01834772143029],[-126.52034668983619,53.01817866417986],[-126.52054014364838,53.018042783375925],[-126.52077498326501,53.017930815237904],[-126.52099570776686,53.01781050952955],[-126.52118163438558,53.01767017878445],[-126.52131784150603,53.017509907035034],[-126.52139600930785,53.017337001170645],[-126.52143115767373,53.01715811804709],[-126.52169438161432,53.01707739714112],[-126.5219813280554,53.01702851003909],[-126.52226635848648,53.016975704407294],[-126.52255233489913,53.01692457019304],[-126.52283831872028,53.016872879468885],[-126.52312144552818,53.016817283369704],[-126.52340068548826,53.01674936911826],[-126.52360273955014,53.01663026175166],[-126.52368177409922,53.01645342407502],[-126.52376835335338,53.01628159965998],[-126.52389705730118,53.01611967278738],[-126.524053869554,53.01596602928839],[-126.52417789641142,53.01580412284893],[-126.52426072446173,53.01563119413786],[-126.52438286173663,53.01546761057373],[-126.52454624635766,53.01531673395228],[-126.52473966684187,53.01518029028347],[-126.52496789606835,53.01506498132493],[-126.52521686189058,53.014965831661996],[-126.52546678126107,53.014867788774815],[-126.5256452192857,53.014728048732614],[-126.52574018100745,53.014556185289514],[-126.52582392628224,53.01438325122639],[-126.5259273369131,53.01421471150049],[-126.52608694851239,53.014062728885875],[-126.52632937899301,53.013963605926726],[-126.52662200402149,53.013923081444986],[-126.52691760898792,53.0138976655273],[-126.5272311587247,53.013888420753105],[-126.52740389455514,53.01381593492075],[-126.527305418152,53.0136281269726],[-126.527236965367,53.01345363102956],[-126.52716852118382,53.01327857921226],[-126.52709727662388,53.013104095634674],[-126.52701763801058,53.01293077003039],[-126.52697249640872,53.01275336391574],[-126.52694881108329,53.01257418560447],[-126.52693630541528,53.012394401544974],[-126.52693407501056,53.01221456259709],[-126.52693465250093,53.01203472005003],[-126.52694268937267,53.01185539993962],[-126.52694698651264,53.011674411245394],[-126.5270841272121,53.0115180452791],[-126.52729538981464,53.01139160200534],[-126.5275424409252,53.011290770386466],[-126.52779233342403,53.01119273132328],[-126.52803844131998,53.0110919028639],[-126.52828171349275,53.01098772499997],[-126.52853160941665,53.01089024010355],[-126.52879093486756,53.010801676608985],[-126.52906354406386,53.01072929611282],[-126.52934661475211,53.01067312015692],[-126.52963253329533,53.010621412837956],[-126.52991850106883,53.01057251040095],[-126.53020442517409,53.010521357443096],[-126.53048175974125,53.01045456399815],[-126.53075721253617,53.010386648870785],[-126.53104702304687,53.01034669060773],[-126.53131297217139,53.0102653706267],[-126.53153455293702,53.01014504048579],[-126.53171947126303,53.010003576207204],[-126.53188657040998,53.00985491303115],[-126.5320423967629,53.009701818339444],[-126.53219073487912,53.00954596037367],[-126.53233905686086,53.009390093310785],[-126.53248926650627,53.00923478226591],[-126.53261696807434,53.009072293704236],[-126.53274749015856,53.008910903808356],[-126.53290050328235,53.00875670004663],[-126.53305633688841,53.00860360384852],[-126.53321402823079,53.008451063773364],[-126.53337548781468,53.008300182738516],[-126.53351162588271,53.00814045177734],[-126.53359251229881,53.00796695953027],[-126.53363041614337,53.00778862379829],[-126.53366551219912,53.00761030073945],[-126.53373892335026,53.007436286373206],[-126.5338834999477,53.00727932249925],[-126.53406933093821,53.00713841482066],[-126.53425142825742,53.00699640321549],[-126.5344044290297,53.00684219732815],[-126.53454992688263,53.00668521942292],[-126.53471323380869,53.00653489272134],[-126.53490188728244,53.006395647158406],[-126.53509617467864,53.00625918152343],[-126.53529517014567,53.00612549999144],[-126.5354960300327,53.00599292120851],[-126.53569878442941,53.005861462957185],[-126.53590151551722,53.00572943969947],[-126.53610707382957,53.005599079539955],[-126.53631734732119,53.00547206812196],[-126.53652666454491,53.005343931168454],[-126.53673127844,53.005213583134854],[-126.53692650232395,53.00507766585932],[-126.53709730335363,53.00493066312254],[-126.5371978318495,53.00476156064685],[-126.53720302467492,53.00458169603617],[-126.53717370118535,53.00440254442291],[-126.53713504457411,53.0042245558286],[-126.53711038043163,53.00404538294135],[-126.53709972274451,53.0038661462377],[-126.5371179812364,53.003686213062636],[-126.53716333165328,53.00350896227411],[-126.53723018201508,53.003333854567266],[-126.53726059354425,53.00315499544007],[-126.53730876412968,53.00297885221907],[-126.53718256173603,53.00281526455041],[-126.53707963474945,53.002646532808676],[-126.53699533053756,53.00247435455851],[-126.53693710761434,53.00229814009153],[-126.53694603398385,53.00211824926867],[-126.53697363874399,53.00193940286871],[-126.53703768813006,53.00176374310621],[-126.5371204215566,53.001590804001324],[-126.53720878973282,53.001419524430794],[-126.53729059606397,53.00124658938854],[-126.53736958755114,53.0010731023472],[-126.53742990136101,53.0008974682561],[-126.53743041923876,53.000717615559786],[-126.53742162036663,53.000537814271965],[-126.53740908096565,53.00035858579791],[-126.53739560882396,53.00017879680526],[-126.53737935190063,52.999999585233525],[-126.53737630263677,52.999906038900114],[-126.5373507063836,52.999727425644835],[-126.53730460295556,52.9995494705652],[-126.53723799107456,52.99937441471615],[-126.53716487634601,52.999201064760555],[-126.5371719419472,52.999021746809994],[-126.53719206433573,52.998841804604126],[-126.5372065807024,52.99866133213045],[-126.53719685676627,52.99848265536368],[-126.53716008663231,52.99830465758194],[-126.53710931947364,52.99812727931918],[-126.53705668660764,52.99794991848025],[-126.53701430388199,52.997771946166246],[-126.53698498588605,52.99759279378252],[-126.53696125187007,52.997413615943465],[-126.53693567379175,52.99723500226569],[-126.53689141192676,52.997055917857566],[-126.53682663719394,52.99687692681359],[-126.53681695771819,52.99670161124549],[-126.53688654101491,52.99652256417675],[-126.53701884632335,52.99635892787293],[-126.53722540271401,52.99623696878808],[-126.5375015011499,52.9961550316841],[-126.53779306015542,52.99611391856301],[-126.5380970533713,52.99609740877258],[-126.53834140317004,52.99601392928787],[-126.5385308819295,52.99587019982631],[-126.53873823644204,52.995738705320605],[-126.53897664360561,52.99562836768004],[-126.53923300557389,52.99553531129424],[-126.53952450893131,52.9954902767005],[-126.5398229625893,52.99547882572222],[-126.54004360812112,52.99543971694353],[-126.54032144140055,52.995274280570634],[-126.54049949972494,52.995113792088475],[-126.54071533427988,52.99499009889975],[-126.54095474393179,52.9948853552661],[-126.5411311887847,52.99474503392243],[-126.54128506035065,52.99459193421431],[-126.54151219428465,52.99447547561794],[-126.54172049410612,52.99434677717443],[-126.54186687706978,52.99419091419578],[-126.5420001171804,52.994030064525575],[-126.54213149794438,52.99386865848261],[-126.54223759282914,52.99370065429632],[-126.54231281091397,52.99352662457593],[-126.54239177539415,52.99335257755085],[-126.5425166212002,52.99319176581462],[-126.54269296741242,52.99304583968659],[-126.542874975549,52.9929038135796],[-126.54309832051389,52.99278512811447],[-126.5433395563462,52.99267868571021],[-126.5435657339611,52.99256222735946],[-126.54378906868689,52.99244186426194],[-126.54402089915864,52.99232986110094],[-126.54427631119371,52.99223847413758],[-126.5445440021702,52.99215824427429],[-126.54479189123764,52.99206128821529],[-126.54504353942211,52.99196768483426],[-126.54529420336526,52.99186959432665],[-126.5455269815791,52.99175870429124],[-126.54570331876178,52.99161333825554],[-126.54591444144035,52.99148798061918],[-126.5461585268393,52.99138600127115],[-126.5463602020912,52.99125172223732],[-126.5465845051562,52.99113583136384],[-126.5468408593531,52.991045554894946],[-126.54710758312466,52.99096420304038],[-126.5473752534614,52.99088340196774],[-126.54765044423536,52.990807047513734],[-126.54791435181623,52.99072402159429],[-126.54810673929356,52.990593700065105],[-126.54824927455552,52.99043167906557],[-126.5483487841008,52.99026257896711],[-126.54844736008356,52.990092918353305],[-126.54855998029237,52.989926553914906],[-126.54866603981712,52.98975853458603],[-126.5487533891874,52.989586684817965],[-126.54884073785145,52.989414834967484],[-126.5489346306157,52.98924463985653],[-126.54904442595688,52.989077167461986],[-126.54914674257869,52.98890860923964],[-126.54922847627091,52.988735664631136],[-126.54929432825243,52.9885605528617],[-126.54939663534188,52.988391429650086],[-126.54948491887669,52.9882206953639],[-126.54954141100062,52.988043385934056],[-126.5495848271327,52.987866137420895],[-126.54960583936088,52.98768675224087],[-126.54961844073814,52.98750685046337],[-126.54962263843997,52.98732697888431],[-126.54961658914829,52.987147719818836],[-126.54959655417228,52.9869685259431],[-126.5495802287586,52.986788758959506],[-126.54957790391015,52.98660891771578],[-126.54959145260166,52.98642956719854],[-126.54959100075395,52.98625028193866],[-126.54957467563956,52.986070514877184],[-126.54957515688542,52.98589066047331],[-126.54952267544186,52.985727870134994],[-126.54940106209246,52.98555754921213],[-126.5492692968815,52.985396248795354],[-126.54914033136458,52.98523437042173],[-126.54900020888385,52.985075340746306],[-126.54888892611741,52.98490946228239],[-126.54882694651435,52.98473326025814],[-126.54875100376958,52.984559929042526],[-126.54861275073083,52.98440089912051],[-126.54848472373018,52.98423845083487],[-126.54836226534607,52.98407486490898],[-126.54824167389107,52.9839101406486],[-126.54813505371783,52.98374423969794],[-126.54801637253713,52.983583988489954],[-126.54781224312866,52.9834515922264],[-126.54758679743871,52.98333050011662],[-126.54734020140886,52.98323360205299],[-126.54705583055379,52.983172727372875],[-126.5468508379122,52.98304593618073],[-126.54668658676185,52.98289542415841],[-126.54652138990262,52.98274323994427],[-126.54639620997159,52.98258413773219],[-126.54632961603322,52.982411326214006],[-126.54631889611053,52.98222984707348],[-126.54632124170519,52.982049983692086],[-126.5463366682177,52.98187062441317],[-126.54632782780043,52.98169137760041],[-126.54621469153994,52.98152494020048],[-126.5460532393275,52.981374414224796],[-126.54582415780988,52.98125950301401],[-126.54560155663323,52.98114007019647],[-126.54542247952025,52.980996348222476],[-126.54518972098411,52.98088537022605],[-126.54490071303691,52.980897912248594],[-126.54462096786726,52.98090537277048],[-126.54431965491817,52.98083112319255],[-126.54410544032496,52.98071109302323],[-126.54402394191088,52.98053890466498],[-126.54403563951287,52.980359006987136],[-126.54403239827349,52.98017916928303],[-126.54402450100021,52.97999936201639],[-126.54411558708829,52.979828053220835],[-126.54432855006226,52.97970492989691],[-126.5445744012453,52.97960014776776],[-126.54484860532546,52.979525479927325],[-126.54503434393374,52.97938847875076],[-126.54517780732291,52.979228697068805],[-126.54530158186651,52.97906171823265],[-126.5454638913168,52.978916980874445],[-126.54572578481907,52.97882780075398],[-126.54596128114912,52.978716896074694],[-126.54621662942431,52.97862606881928],[-126.54648707201413,52.97854973817013],[-126.5467718140677,52.97849687212146],[-126.54706820188314,52.97847925316022],[-126.54736672877246,52.97848290502268],[-126.54766126528828,52.97846641371764],[-126.54793266602279,52.97839175161922],[-126.54822537964321,52.97837862902836],[-126.54852200446504,52.97837948991403],[-126.54882053806755,52.97838370281809],[-126.5491254054541,52.978372197736014],[-126.54943319358928,52.97837076321008],[-126.5497827806378,52.97842795736012],[-126.54992161787878,52.97856177576023],[-126.55006083328288,52.978723606005445],[-126.55031844914122,52.97880980633473],[-126.55060453031227,52.9788605802368],[-126.55089604858435,52.97889899300358],[-126.55119114574796,52.97892562700713],[-126.55148251246595,52.97895227772946],[-126.55175673999301,52.97902327423039],[-126.55202269019897,52.97910382906837],[-126.5522886559661,52.97918550378529],[-126.55255551154423,52.97926436787087],[-126.55282422666687,52.97934154628609],[-126.55309570429523,52.979416470022926],[-126.55336439920346,52.97949309151013],[-126.55363036262959,52.97957419845698],[-126.55389539457346,52.97965475338893],[-126.55417966407043,52.979708888801376],[-126.55446029831867,52.97977031973175],[-126.55474995361512,52.979808175961665],[-126.55504756493463,52.97981293327332],[-126.55533793445915,52.979833420637355],[-126.55564215575325,52.97984374805803],[-126.55591630780398,52.979909132502435],[-126.55618228608668,52.979990798393125],[-126.55644920558075,52.98007245924054],[-126.55684088411961,52.980137277625936],[-126.55705026396457,52.98009875419784],[-126.55707917945304,52.97995686331642],[-126.55740562612283,52.97988304875064],[-126.55769418988265,52.979837417360855],[-126.55797514433247,52.97978062473576],[-126.55827152162107,52.97976184816778],[-126.55856120238987,52.97980138023571],[-126.55880507207661,52.97990387073236],[-126.55904801760077,52.980007494623294],[-126.55930480788201,52.98009928203919],[-126.55957810824194,52.98016970003137],[-126.55985417822042,52.98023729837399],[-126.56012932376083,52.98030602998065],[-126.56038609596911,52.98039612982053],[-126.56064011536228,52.98049016860817],[-126.56088215821177,52.98059491356437],[-126.5611048069215,52.98071375276491],[-126.56127372735837,52.980861981752724],[-126.56146769266907,52.980998885671895],[-126.56172903948695,52.98108111693168],[-126.56202147881484,52.98111726572072],[-126.5623159981333,52.98109848789298],[-126.56261264968093,52.98109987803496],[-126.56284716297606,52.98112789266359],[-126.56303383910567,52.981136521233594],[-126.5631448979668,52.98121106756552],[-126.56328758422437,52.9813498988101],[-126.56353910708725,52.98146523375531],[-126.56379404285917,52.98155645550773],[-126.56407012866259,52.98162405288263],[-126.56431589510335,52.98172708765795],[-126.56459099786257,52.98179131790468],[-126.56488078764986,52.98183755726963],[-126.5652917557452,52.98187704727487],[-126.56560458162329,52.98197191386125],[-126.56582402239415,52.98184927631983],[-126.56606897475349,52.98175061216204],[-126.56630859803568,52.98167214301224],[-126.56654562334087,52.981538778839145],[-126.56681892837109,52.98146799058191],[-126.56711430608091,52.981443038090134],[-126.56741069845498,52.981424803280554],[-126.56770711307551,52.98140825292662],[-126.56800052702859,52.98137714015107],[-126.56828623142256,52.98132645864267],[-126.56857105485362,52.981280262894046],[-126.56887040116733,52.98127433622355],[-126.5691762691299,52.98126725674594],[-126.5694455697614,52.981315824958145],[-126.56964798073757,52.98145379526016],[-126.56990479506355,52.98154499477891],[-126.570182696025,52.98160920745],[-126.5704715427416,52.98165375234992],[-126.57073478421819,52.98173763985058],[-126.57097869435057,52.98184010503765],[-126.57122260577894,52.98194257867751],[-126.5714425222604,52.98206420856513],[-126.57166658544398,52.982216637577665],[-126.57190133693324,52.98226144134913],[-126.57214751203036,52.98218573438444],[-126.57239688161711,52.98206910676287],[-126.57265091369602,52.981953011739364],[-126.57291753102902,52.981871601053655],[-126.57317191552767,52.98178184062332],[-126.57338194525383,52.98165363189211],[-126.5735788096066,52.98151877249243],[-126.57379072505819,52.98139223913397],[-126.57399792264648,52.98126236669807],[-126.57418914122407,52.98112416310263],[-126.57431850967107,52.980963858496075],[-126.57445979840789,52.98078891947503],[-126.57458284016633,52.98064433311549],[-126.57474309950632,52.98049283283906],[-126.57489211195931,52.98033746973256],[-126.57498026124192,52.980165595062225],[-126.5751208922607,52.98001083727489],[-126.57528770684304,52.97986211005679],[-126.57544233408812,52.97970839511629],[-126.57559883328892,52.97955523556986],[-126.57576847282678,52.97940817912992],[-126.57591841790182,52.97925281003189],[-126.57603558067983,52.97908807176511],[-126.57612654349501,52.97891730287605],[-126.57619411243581,52.978741610260144],[-126.57628320848747,52.978570850334805],[-126.57641720960189,52.978409955690154],[-126.57656620098197,52.97825402555097],[-126.57668709688633,52.97808983300811],[-126.5767780549497,52.9779190635141],[-126.57687184816977,52.97775052116129],[-126.57693193560732,52.97757374404173],[-126.57697801713502,52.9773953501273],[-126.577136413242,52.97724554063786],[-126.57735581895247,52.97712344593007],[-126.57761294852287,52.977033097265824],[-126.57788239184997,52.97695614328403],[-126.5781661513008,52.97690264115421],[-126.57845274638926,52.976852495049854],[-126.57871841825565,52.97677275177476],[-126.57888144644703,52.97662179653912],[-126.57912263832371,52.97652536423286],[-126.57939109702234,52.976444485157984],[-126.57961801471257,52.976327951977595],[-126.57983458020212,52.97620418118197],[-126.58002859312813,52.97606820381769],[-126.58022541776124,52.97593276806919],[-126.58042973315277,52.975800656751254],[-126.58056707425068,52.97574955514539],[-126.58095465053225,52.975718510603194],[-126.58123185256241,52.9755955587713],[-126.58136115499944,52.97543468125491],[-126.58153449625426,52.97528815350789],[-126.58175764036588,52.97516827301659],[-126.58194701788327,52.97503567691275],[-126.58206880859807,52.974870353408264],[-126.58221214825899,52.974712767198646],[-126.58235361391591,52.97455462529446],[-126.58246147432652,52.97439441715708],[-126.58256168883175,52.97422079103617],[-126.58256575362088,52.974041481595826],[-126.58254930872786,52.97386171773242],[-126.58254967389281,52.97368466766093],[-126.58257297730691,52.973479490198606],[-126.58253920512354,52.97332893750525],[-126.58261054530898,52.97315770404009],[-126.582629530903,52.97297832070857],[-126.58263451996262,52.97279788600066],[-126.58269180145385,52.97262223073528],[-126.5827817909984,52.972450904862455],[-126.58292043427193,52.97229222017648],[-126.58297677345138,52.9721154488117],[-126.58299389194215,52.97193607453657],[-126.58301941837489,52.97175722340029],[-126.58311500762309,52.971586425259424],[-126.58324433684702,52.97142890674216],[-126.58338485504758,52.971270212106674],[-126.58353099082319,52.971114286382864],[-126.58375881646822,52.970998304925494],[-126.58395938200667,52.970866205502325],[-126.58415428233094,52.970730207361655],[-126.58437835099323,52.97061255796298],[-126.58460054574688,52.97049436162263],[-126.58480015091543,52.97036114490717],[-126.58499224852572,52.97022460342624],[-126.5851580573883,52.97007530123371],[-126.58534920444565,52.96993708749569],[-126.58554692422815,52.96980275825041],[-126.58567058997917,52.96964133852574],[-126.58578204737726,52.969473264939],[-126.58585615026657,52.9693014505167],[-126.58588170926373,52.96912595096951],[-126.58616548374597,52.96907804071875],[-126.58641307444172,52.96897707867691],[-126.58670954935111,52.968971676301244],[-126.58702237882895,52.96900205866233],[-126.58712463827386,52.9690469274422],[-126.58749922139681,52.96909212391557],[-126.5877986574261,52.96909903919022],[-126.58809456433272,52.96911940910477],[-126.58839220537543,52.9691313698808],[-126.58868974524948,52.96913493067413],[-126.58882920678757,52.96910453440973],[-126.58894042216784,52.96905467380425],[-126.58906826676831,52.968993524326926],[-126.58918718207518,52.96896099819108],[-126.58947542756128,52.968967956195534],[-126.58973957576792,52.969052361907465],[-126.59002893289345,52.969071639187845],[-126.5903280419613,52.969053897290934],[-126.59062005715653,52.969063639501236],[-126.59089336171266,52.96913566158192],[-126.59116575786726,52.96920881711521],[-126.5914408357659,52.96927410565461],[-126.5917392005272,52.969270366471804],[-126.59202013326187,52.96922021524261],[-126.59227243531544,52.96912313464769],[-126.59255627345661,52.96908136726415],[-126.59285549086974,52.96907146234371],[-126.59313265967072,52.96901907729051],[-126.59341833784612,52.96897562219452],[-126.5937136444553,52.96895284382504],[-126.59396031489433,52.96885354682336],[-126.59421453803867,52.96876094354949],[-126.59448864767208,52.96869064168801],[-126.59474003173099,52.96859468989425],[-126.59496310425614,52.96847590447748],[-126.59518618255207,52.96835655383031],[-126.5954026700504,52.96823331855982],[-126.59563140427315,52.96811955024331],[-126.5958971306628,52.968049852189516],[-126.5960625170242,52.96820589460831],[-126.59609943690135,52.968378830500754],[-126.59616153346518,52.96855108317958],[-126.59632592788908,52.968703212723916],[-126.59659274355774,52.96877693980643],[-126.59688967179892,52.9688040058591],[-126.59718496043749,52.96878121886285],[-126.59746175248947,52.96883528803242],[-126.59774504843148,52.96888707346604],[-126.5980391891601,52.968915280297665],[-126.59832161739362,52.968972115772935],[-126.59862009764645,52.968976758313154],[-126.59889976863651,52.96903584754303],[-126.59917764740129,52.96910111280922],[-126.59945373218142,52.96917030404064],[-126.59972706034247,52.96924287034991],[-126.59999760816173,52.9693171265486],[-126.60002107804078,52.96932765687167],[-126.6002313784366,52.969427436496346],[-126.60047713817738,52.96952871140248],[-126.60071090378868,52.96963957622056],[-126.6009483760083,52.96974762474172],[-126.6011867743468,52.969855659093675],[-126.60137339756477,52.96999534197382],[-126.6015442727715,52.970142939932714],[-126.60174849671418,52.97027356784118],[-126.60197119848931,52.970392886393185],[-126.60224632449366,52.97045983486473],[-126.60254416055702,52.97048352935279],[-126.60283473919675,52.97045627009602],[-126.60311452001571,52.97039152202606],[-126.60340576737903,52.970345208348434],[-126.60369601695166,52.97036109483013],[-126.60392144220017,52.97047423714834],[-126.60412670348184,52.97061213481911],[-126.60432074403242,52.970747848549514],[-126.60450924637317,52.97088750785871],[-126.60469959116695,52.97102548104279],[-126.60490384497552,52.97115722389462],[-126.60513034621299,52.97128044343025],[-126.60535592369065,52.97140366727391],[-126.60555643512525,52.97153429868285],[-126.6057021679944,52.97168258455243],[-126.60576990352834,52.97185480306183],[-126.60579956541322,52.97203898765872],[-126.60584504035808,52.972219720274175],[-126.60594628541385,52.9723872840894],[-126.60608382071293,52.972548502539496],[-126.6062445437596,52.97270119282268],[-126.60642193421958,52.97284538840308],[-126.60661320310528,52.972982233092424],[-126.60681561503003,52.973114537835094],[-126.60702450884257,52.973244011911945],[-126.60723430497916,52.97337179563977],[-126.60745336305482,52.973493928434934],[-126.60767980406925,52.973611540499036],[-126.60789977376501,52.97373254719656],[-126.60808920114498,52.97386939896219],[-126.60823786936204,52.97402663092222],[-126.60844486665728,52.97415330635806],[-126.60867502715121,52.97426865616699],[-126.6088922699547,52.97439471312685],[-126.60908446981082,52.97452987258403],[-126.60917179967922,52.97470086709689],[-126.6092247045121,52.97487819811495],[-126.60940288683163,52.9750117441737],[-126.60967550678559,52.97496551158378],[-126.60989197796484,52.974841694426324],[-126.61015380761137,52.97475909382607],[-126.61045010272198,52.974738509757344],[-126.61074764453464,52.97474032971586],[-126.611045281795,52.9747477512372],[-126.61134120010607,52.974766386543216],[-126.61163648361406,52.97480519451545],[-126.61194603033812,52.97486242143475],[-126.61225644841315,52.97478628718688],[-126.61247675047079,52.97473528185196],[-126.6127691362732,52.974702386081425],[-126.61306249399378,52.97467172565034],[-126.61333675600179,52.97461146449674],[-126.61362335066492,52.97456514999086],[-126.6139217667585,52.97456247512781],[-126.61420865175505,52.974536327802184],[-126.61446850892831,52.974447013417546],[-126.6146915637963,52.9743276262742],[-126.61492027102167,52.97421325621248],[-126.61520307424058,52.97416304012802],[-126.61550158471687,52.97416708413252],[-126.61579690735516,52.97414368576805],[-126.61609453458003,52.97415165933818],[-126.61639211174497,52.97415514120277],[-126.6166894304382,52.97414182418878],[-126.61698683695553,52.974133544015174],[-126.61728434228543,52.97413310651404],[-126.61758113401606,52.97414723932197],[-126.61787880087645,52.97415688454225],[-126.61817637151154,52.97416092670024],[-126.61847393261601,52.974163282830126],[-126.61877236188727,52.974161716160836],[-126.61906985930537,52.97416071839515],[-126.6193648600093,52.97417989417651],[-126.61965554847184,52.974222632691074],[-126.61995250496109,52.97424796430049],[-126.62020789843376,52.97417378377968],[-126.62044508884253,52.97406608163519],[-126.62071348609169,52.973987349277564],[-126.62098853388,52.97391754576232],[-126.6212702732054,52.973859467756164],[-126.62155679690592,52.97380921674606],[-126.62184334444015,52.97376064127213],[-126.62213179739614,52.9737148519646],[-126.62241451492167,52.97365957192835],[-126.62267434123362,52.9735696746818],[-126.62295449660697,52.97353009477497],[-126.6232486614528,52.97355655339598],[-126.62354724243157,52.97356562365151],[-126.6238395164988,52.97358928491241],[-126.62412199378993,52.97364493790465],[-126.62440176532745,52.97370732794517],[-126.62468154444345,52.97376916148346],[-126.62491630356321,52.973877732053296],[-126.62519790172152,52.973937304629466],[-126.625484971096,52.97398732717947],[-126.62575097985852,52.97406435441389],[-126.62599684377811,52.97416670524462],[-126.6262390278782,52.974272427846294],[-126.62647381857805,52.97438268047706],[-126.62670400596387,52.97449743041283],[-126.62693972265367,52.97460655662473],[-126.6272222189558,52.97466275790758],[-126.62750107659534,52.974725145475965],[-126.62777722082143,52.97479371442631],[-126.62805517974545,52.97485778183913],[-126.6283358719882,52.974917916532064],[-126.62861927257234,52.9749724332907],[-126.62890542124018,52.97502301721171],[-126.62919337771845,52.97506966433099],[-126.62948758024291,52.97509666302958],[-126.62976644405096,52.97515904522097],[-126.6300453004431,52.97522087099447],[-126.63030128309245,52.975313064722734],[-126.63053333290462,52.97542556507145],[-126.6307321103248,52.975559524802094],[-126.63090682207601,52.975704827641444],[-126.63104164062074,52.97586490221112],[-126.63113372559275,52.976036420092186],[-126.63114943489724,52.97621506137895],[-126.6311222763345,52.97639618232344],[-126.6292865224097,52.979787855742714],[-126.62913771889556,52.979943843380575],[-126.62905819261195,52.98011683423556],[-126.6290384595171,52.98029622925875],[-126.62900563490237,52.980473453007995],[-126.62892237616092,52.98064646362832],[-126.62894274245146,52.98082564458641],[-126.62901338413829,52.980997278054744],[-126.62921316454167,52.98113404054287],[-126.62935348266818,52.98128680806284],[-126.62930669305186,52.98146634748346],[-126.62918320819942,52.98163116427883],[-126.62905079799086,52.981760735416266],[-126.6288316162817,52.981889648820136],[-126.62857076058856,52.9819750822446],[-126.62823360586601,52.98201106139448],[-126.62795493549804,52.98209098559882],[-126.62770630276331,52.98218363111273],[-126.62742171950846,52.98224229490591],[-126.62720518739172,52.982361106073604],[-126.62705216524827,52.9824851817551],[-126.62680675690906,52.982607507460436],[-126.62655053265763,52.982691791142905],[-126.62628871903175,52.98277666872047],[-126.62613603923685,52.982924273066814],[-126.62611729044428,52.983107579469696],[-126.62606284965823,52.983275396589114],[-126.62599111342976,52.983471875269785],[-126.62589346433992,52.983618622177886],[-126.62574931631791,52.98377626563992],[-126.62561080377893,52.98393556431213],[-126.62548725784266,52.98409870084769],[-126.62537028924346,52.98426459924692],[-126.62523269074194,52.98442332780199],[-126.62508385626309,52.984579318852596],[-126.62493502056033,52.98473530073681],[-126.6247861755983,52.98489072666582],[-126.62463732954801,52.98504615239237],[-126.6244922384947,52.98520324333358],[-126.62433965063708,52.985358123707606],[-126.62417111228459,52.98550637395458],[-126.62399880988234,52.985653514347014],[-126.62381241425854,52.98579344992158],[-126.62359589512288,52.985915059860766],[-126.6233605697287,52.986026674875774],[-126.62315255794756,52.986155518110586],[-126.6229445135619,52.98628324057832],[-126.62270921737485,52.986397104169974],[-126.62245490991043,52.98648697124601],[-126.62216825263735,52.986533862651605],[-126.62187007270336,52.98655841200328],[-126.62157359420043,52.986571737109124],[-126.62127511066909,52.98657555179842],[-126.62097738738078,52.98656703561912],[-126.62068183406956,52.98658036257052],[-126.62040571304773,52.98664568783494],[-126.62018169230137,52.9867656455345],[-126.6199557799753,52.98688392742711],[-126.61966994481637,52.98692409402929],[-126.61937077809425,52.986944715794806],[-126.61907065443042,52.986964221270306],[-126.61877434352428,52.9869893087387],[-126.6184961324115,52.987040629042035],[-126.61826082011905,52.98715448370248],[-126.61804808292618,52.9872811014084],[-126.61786074323767,52.987421588039915],[-126.61770998095592,52.9875758940939],[-126.61757329304403,52.98773629372823],[-126.61742723307643,52.98789281585222],[-126.61727273596527,52.98804714084892],[-126.61712665069894,52.988203097933535],[-126.61699839468577,52.98836569378293],[-126.61687669982595,52.98852993148467],[-126.61674468578055,52.988690861370145],[-126.61658266303607,52.98884129831601],[-126.61637460201509,52.98897012945116],[-126.61614585179262,52.989086742261264],[-126.6159029691568,52.989194464029644],[-126.61571360347202,52.9893260021356],[-126.61561815269526,52.98949906574589],[-126.61550767000779,52.98966604022395],[-126.61539907542577,52.98983356947912],[-126.6152942049919,52.99000164393321],[-126.61519308847075,52.99017025447657],[-126.61504982700508,52.9903284350796],[-126.61487653192465,52.99047445503819],[-126.61474449610205,52.99063481778149],[-126.61469855067935,52.990812669273964],[-126.61472072780846,52.99099184186848],[-126.61471025881119,52.99117118467425],[-126.61469513234431,52.991350551744475],[-126.61466879514691,52.99152997724604],[-126.61463778410538,52.991708306538484],[-126.6146208721842,52.991893285602],[-126.61459984867507,52.99205306920465],[-126.61451761105836,52.99223726820758],[-126.61452395095942,52.992417643789146],[-126.61454239620448,52.99259683569921],[-126.61462235354644,52.9927701041645],[-126.61476735577443,52.99292566934927],[-126.61492527386633,52.99306995251399],[-126.61494001342317,52.993250848938246],[-126.61492767876545,52.99343020125529],[-126.61491721808059,52.9936100995696],[-126.6148619155631,52.993786314295455],[-126.61483745854169,52.99396572976446],[-126.61481205278072,52.99414459436335],[-126.61472214641763,52.99431594245646],[-126.6146135368601,52.99448347052399],[-126.61450293204334,52.99464316502733],[-126.61441501790374,52.99482235524579],[-126.6142970198752,52.99498712603084],[-126.61421042244358,52.99506433926964],[-126.61418741783815,52.99515129714678],[-126.61415176866683,52.99533133536936],[-126.61412820900618,52.99550906052704],[-126.61435754383851,52.995623282200334],[-126.6147118727936,52.9956051918553],[-126.61503475267239,52.995671296666615],[-126.6152449265492,52.99568588777221],[-126.61554190054667,52.99570226646159],[-126.61583881801747,52.99571472726212],[-126.61614875789954,52.99572431340792],[-126.61642483329598,52.995780018286666],[-126.61671827123186,52.99580985908733],[-126.6170143210607,52.99582623890858],[-126.6173121815749,52.99583980265338],[-126.6176178555814,52.995876300443975],[-126.61790260494688,52.995886578699526],[-126.61819168011357,52.99593660857993],[-126.61840340645932,52.9960587585885],[-126.61858651778935,52.99620178401461],[-126.618769622261,52.99634425339454],[-126.61896753494649,52.996478245114815],[-126.61917933821387,52.99660431074955],[-126.6194077765368,52.996720212639865],[-126.61965190626093,52.99682369662544],[-126.6198941874647,52.99692831933669],[-126.62011802038867,52.99704759674129],[-126.62030389957563,52.99718725223159],[-126.62043408971937,52.997348481927595],[-126.62055502206864,52.99751368659497],[-126.62068894672433,52.99767490529771],[-126.62084885886931,52.9978253373161],[-126.6210356776282,52.99796554246304],[-126.62123083907105,52.99810234171033],[-126.62143342425001,52.998235175105144],[-126.62164526969359,52.99836404189169],[-126.62184228332109,52.998498589254595],[-126.62200217131922,52.99864789925316],[-126.62214166955422,52.998805725201144],[-126.62226817189618,52.99896921333264],[-126.62238445923441,52.999135561087336],[-126.62249331516419,52.99930418904296],[-126.62259565567086,52.99947341604425],[-126.62267748546084,52.99964498338957],[-126.62272001575982,52.99999997206702],[-126.62287253609333,53.00015436664925],[-126.6230148344027,53.00031216771069],[-126.6231552757126,53.00047054316044],[-126.62337543676252,53.00059208373906],[-126.62366889635908,53.0006207866965],[-126.62392411719378,53.00071468294624],[-126.6240942603446,53.000861694638516],[-126.62420869364782,53.00102805028539],[-126.62424956342824,53.00120600073803],[-126.62428018411039,53.001384561212056],[-126.62429962333621,53.001564310370064],[-126.62430693034743,53.001743558985396],[-126.62429743305341,53.00192345234079],[-126.62425524822038,53.00210128660004],[-126.62411197210442,53.00225892134527],[-126.62396964376195,53.00241710667129],[-126.6237822256803,53.00255649003277],[-126.62357318530145,53.0026847730081],[-126.62342897078096,53.0028418560172],[-126.62333533971395,53.00301267378036],[-126.62326136244253,53.00318674920516],[-126.62320982313905,53.00336350286044],[-126.6231601581591,53.003540811321834],[-126.62311610048233,53.003718654866475],[-126.62309167259303,53.00389807098849],[-126.62310082647335,53.004077309647315],[-126.62319665697021,53.00424768169892],[-126.62336404417249,53.00439639406057],[-126.62358513537582,53.00451679965073],[-126.6238550566727,53.00459325427586],[-126.62412862956838,53.00466407727638],[-126.62437374898681,53.00476699027205],[-126.62461054509033,53.004875549561696],[-126.6248427263315,53.00498805921184],[-126.625064757364,53.005107901255094],[-126.6253181498662,53.00520235987753],[-126.62557339367996,53.00529569655653],[-126.62582493838207,53.00539128443692],[-126.62605068271058,53.00550942858248],[-126.62627086982475,53.0056303986826],[-126.62653988540443,53.005707407774736],[-126.62680155296918,53.005793419656264],[-126.62700880159991,53.00592285673708],[-126.6271734179401,53.00607269892505],[-126.62738714341548,53.006197618715596],[-126.62753133711294,53.00635484808546],[-126.6276309072948,53.0065240849476],[-126.62777325294714,53.00668244437995],[-126.62793786658047,53.00683172072448],[-126.62808949783027,53.00698666868811],[-126.62823369680403,53.007143897125836],[-126.62842428102401,53.007281828995374],[-126.62864355986949,53.007403920005714],[-126.62887393869978,53.00751810762041],[-126.62910522803769,53.00763116938467],[-126.6293586529321,53.00772618389299],[-126.6295834703264,53.00784376142471],[-126.62976850352186,53.007984517611696],[-126.62993313758052,53.008134355764845],[-126.63011168890004,53.00827795186091],[-126.63030970117502,53.008412479338],[-126.63051881508214,53.00854022387568],[-126.63072608843325,53.00866965421354],[-126.63097951489284,53.008764109436065],[-126.63123294234593,53.00885855514508],[-126.63151930566816,53.00890801124577],[-126.63181018727622,53.00894791336043],[-126.63208745994665,53.00901366016006],[-126.63236930767054,53.00907265852802],[-126.63262916599908,53.00916034351361],[-126.63272225367893,53.00933073125403],[-126.63288225404463,53.0094822664439],[-126.63293902632871,53.00965900735404],[-126.63293237139688,53.00983888549362],[-126.63290797316033,53.010017747253805],[-126.63293304470645,53.01019689930845],[-126.6329189143094,53.01037626171779],[-126.6329542375079,53.010554793964644],[-126.63312631808759,53.01070178174916],[-126.63322219544138,53.010871589241034],[-126.63337571889164,53.01102596427152],[-126.63358578732696,53.011153133414076],[-126.63377827371349,53.01129104627617],[-126.63400496400205,53.01140692890609],[-126.63426487164313,53.01149573053729],[-126.63452933969202,53.01157779278394],[-126.63479932540172,53.0116542130759],[-126.6349537749193,53.011808016290495],[-126.63505991210124,53.011976090668846],[-126.63506819225428,53.01215533252572],[-126.63504006134086,53.01233477040924],[-126.63508006139753,53.01251272090128],[-126.63513218716493,53.01268948552899],[-126.63514047606988,53.012869283048346],[-126.63515715869929,53.013049044313036],[-126.63520555165758,53.01322582895859],[-126.63537579225489,53.013373379026106],[-126.63563385816309,53.01346387283006],[-126.63590293199269,53.01354030446448],[-126.63611394641293,53.01366746392335],[-126.63625540668828,53.01382581752321],[-126.63640616723697,53.013980759147934],[-126.63655227933228,53.01413741094887],[-126.63666584776986,53.014303193570285],[-126.63675617180952,53.014474713213566],[-126.63681017391389,53.01465146681666],[-126.63679232447535,53.014830849377056],[-126.63672866776285,53.01500655282672],[-126.63663787976076,53.01517792946918],[-126.63656206036426,53.015351457354456],[-126.6365030853349,53.0155277001052],[-126.63640667751766,53.0156979862929],[-126.6362812201407,53.015860576351955],[-126.6362054065259,53.01603466864361],[-126.63614081121618,53.016209820904095],[-126.63604720179988,53.01638064740847],[-126.63590487072308,53.01653885478133],[-126.63576909086524,53.016698702976804],[-126.6357147791595,53.01687547581839],[-126.63566701763676,53.01705277806741],[-126.63567438372402,53.017232589040916],[-126.63579448247938,53.01739721649756],[-126.6359971736242,53.017528911949825],[-126.63617300192443,53.01767418940083],[-126.63631354968207,53.017832547551485],[-126.63637406482383,53.018008145348944],[-126.63643552995029,53.01818430272486],[-126.63662248121344,53.01832391678059],[-126.63684092298753,53.01844656145623],[-126.63704177192231,53.01857937659407],[-126.63722965961597,53.01871842883234],[-126.63741940074344,53.01885747075189],[-126.63761100837952,53.018995381737014],[-126.6378044526527,53.01913216194046],[-126.6380053229133,53.01926498426711],[-126.63821451338275,53.01939271434185],[-126.63842741412348,53.01951873867763],[-126.63864770909242,53.019639684667865],[-126.638893851002,53.019740885373274],[-126.63913261800094,53.0198482839857],[-126.63933071277452,53.019982795398654],[-126.63949170939978,53.0201337508664],[-126.63963320379948,53.020292099812295],[-126.63978214928233,53.020448167100085],[-126.63992177859478,53.02060652579694],[-126.64000467716627,53.02077920327362],[-126.64003538669125,53.02095832229223],[-126.64005862751327,53.02113748180693],[-126.64016294082063,53.02130555183672],[-126.64036289601522,53.021438930825795],[-126.64056377024556,53.02157174869695],[-126.6407451905094,53.02171419194579],[-126.64086160394625,53.02187995453529],[-126.64103560813578,53.02202579921309],[-126.6412068369744,53.02217277924709],[-126.64138362009939,53.02231748776136],[-126.64159561885715,53.02244352016162],[-126.64186656172788,53.022516557423955],[-126.64215729323894,53.02247744188493],[-126.64239787485326,53.02257977708068],[-126.64254405557256,53.02273754110856],[-126.64274217462305,53.02287204656463],[-126.64293195032717,53.02300995875487],[-126.64308369402079,53.02316488595982],[-126.64320569718534,53.02332893937876],[-126.64333328635176,53.023491841667045],[-126.64344318011895,53.02365820191768],[-126.64348790190786,53.02383612287013],[-126.64353168291896,53.02401404892059],[-126.64362203821865,53.0241844329217],[-126.64378771015446,53.02433424524981],[-126.64394688028743,53.024485769143325],[-126.64403539641371,53.02465784811534],[-126.64410807323006,53.02483168979805],[-126.64422170831676,53.02499802880323],[-126.64435115681215,53.025159799194526],[-126.64444897909925,53.02532958591503],[-126.6445374905848,53.025501108687074],[-126.64463345539883,53.02567146116016],[-126.64473221274962,53.02584068671445],[-126.64486539209007,53.02600187135084],[-126.6450292080407,53.02615169198257],[-126.64521901426696,53.026290155966464],[-126.64543473862841,53.026414475690764],[-126.64561712867359,53.02655635015631],[-126.64572332138042,53.026723848860115],[-126.64574567152313,53.02690356745469],[-126.64574280326417,53.02708343301128],[-126.64574832271299,53.027262687895934],[-126.64576412946789,53.027442442243434],[-126.6457687313476,53.02762226685994],[-126.64575372306297,53.02780163403536],[-126.6457489786514,53.0279809450175],[-126.64577411496575,53.02816009244683],[-126.64579365727533,53.028339826253585],[-126.64586631574578,53.02851255508567],[-126.64603575397139,53.028661778649436],[-126.64623111993014,53.028797413595726],[-126.64640888041458,53.028941544162116],[-126.64655230401662,53.02909931794064],[-126.64669381188862,53.02925485201031],[-126.64690952796752,53.02937637212965],[-126.6470204177808,53.02954439948744],[-126.64713315054605,53.029710740308616],[-126.64724216602434,53.029878221931185],[-126.64735397633751,53.03004568810844],[-126.6475149969869,53.03019383512594],[-126.64778239029789,53.03027416620339],[-126.64807794772928,53.03030336235901],[-126.64836716647976,53.030346030002626],[-126.64865189543947,53.03039993588602],[-126.64892476667302,53.03047182581343],[-126.64914604045309,53.03059050545533],[-126.64927367422071,53.03075340062586],[-126.64933613766222,53.03092954486299],[-126.64938181816396,53.03110745772522],[-126.64944707430024,53.03128245700988],[-126.64953841244582,53.031453960054314],[-126.64963998822782,53.031622600848245],[-126.64979547964938,53.031774692504584],[-126.65003527469173,53.03188150737286],[-126.65031640925343,53.03194382854809],[-126.65060657423903,53.03198592973874],[-126.65089578129755,53.03202691497254],[-126.65119230291904,53.03205665384097],[-126.65146031472956,53.03211568312799],[-126.65160939030498,53.03227565152101],[-126.65173331178336,53.03243912919631],[-126.65181908189527,53.03261121695827],[-126.65187128706268,53.03278797218027],[-126.65188993089922,53.032967709607576],[-126.65190481588871,53.03314691199682],[-126.65192998122954,53.033326057572786],[-126.65196634493904,53.03350458547573],[-126.65202416145678,53.03368074479948],[-126.65211551516855,53.03385224560876],[-126.65223199772586,53.03401744006322],[-126.65243415940759,53.034288046162914],[-126.65257275917452,53.03412928533744],[-126.65270664648608,53.03396830933661],[-126.65283678864988,53.03380679809954],[-126.65302420855292,53.03366569505089],[-126.65328348825773,53.033580776116096],[-126.65355691445234,53.03350530723269],[-126.65380756408038,53.033406432793264],[-126.654032679528,53.03328752980818],[-126.65421448755127,53.033145335365255],[-126.65436521859081,53.03298706976281],[-126.6544597604283,53.03281902185652],[-126.65449064297049,53.03264125114187],[-126.65449622558393,53.03245857385878],[-126.65451307255438,53.032278630920615],[-126.65452898675537,53.0320992578811],[-126.65452232430385,53.03190936949392],[-126.65453279920611,53.031740667137974],[-126.6546750514464,53.03157852166733],[-126.65490410387345,53.03147248556433],[-126.65519178167133,53.03141429735152],[-126.65546519924207,53.03133938865014],[-126.65573198249072,53.03125778402581],[-126.65598926434018,53.03116671158032],[-126.6562248060223,53.03105839572084],[-126.65643672229184,53.03093171756604],[-126.65664577636096,53.03080169334876],[-126.65684262992913,53.03066837506508],[-126.65691838506733,53.03049427101287],[-126.65693709737104,53.0303148818237],[-126.65689510400507,53.03013583057558],[-126.65692114175047,53.029947992100524],[-126.65711933925394,53.029841002757856],[-126.65742622314974,53.02981688270679],[-126.65770462635413,53.029763786779085],[-126.6578432349733,53.029607815950634],[-126.65787967771625,53.029428327644254],[-126.65790677357809,53.02924833563769],[-126.65797878665082,53.02907425158633],[-126.65815589562088,53.02893263253428],[-126.65842261765431,53.02884934562375],[-126.6587066883469,53.02874018900059],[-126.6589153633972,53.028646584410446],[-126.65908687354495,53.02850555991244],[-126.6591129963036,53.02832388765376],[-126.65912248238264,53.0281523931029],[-126.65915136137822,53.027967343799546],[-126.65915323167849,53.02778748327147],[-126.65914859926512,53.02760934433389],[-126.65915232599971,53.02742779707887],[-126.65914954374496,53.027248527234406],[-126.65916823025512,53.027069137434026],[-126.6592196746932,53.02689404672861],[-126.65925883102395,53.026708939833775],[-126.65941670138535,53.02659264261045],[-126.65968020361966,53.02648304256801],[-126.65987324666042,53.026345813678816],[-126.66004370744078,53.0261986349412],[-126.66019914650737,53.02604537257077],[-126.66033295323254,53.02588270201947],[-126.66046396786997,53.025721176424],[-126.66067593201001,53.02560009244786],[-126.6609311795127,53.02550117632047],[-126.66118747165974,53.02540897698574],[-126.66144567366537,53.02531956323229],[-126.66167077471778,53.025202885906126],[-126.6618760148308,53.02507063205696],[-126.66208217123437,53.02493781690585],[-126.66234709538567,53.02486013351348],[-126.66264397681229,53.024856225401095],[-126.66291051139379,53.0249421299213],[-126.66314477982425,53.02505510806093],[-126.66341209151597,53.02513035751114],[-126.66370336809108,53.02518643140543],[-126.66383051844623,53.02519635667718],[-126.66397851233819,53.02516526943835],[-126.66418559496864,53.02503188062241],[-126.66442580403542,53.02492743881444],[-126.66470003459247,53.0248480213821],[-126.66498481394994,53.02484697241699],[-126.66526787032245,53.0249142941517],[-126.66554897226395,53.02497601458973],[-126.66583910474098,53.02501807849602],[-126.66613614510148,53.02502424553041],[-126.66641627414586,53.02496383991327],[-126.66668583397279,53.024885000015594],[-126.66694874388368,53.024799473865535],[-126.66721453169488,53.02471841299066],[-126.66749080788911,53.02465073860949],[-126.66777184988867,53.02458975982033],[-126.66804908582513,53.02452431975867],[-126.66831584003825,53.02444604775623],[-126.66857496248144,53.024356621983294],[-126.6688312222368,53.02426384128324],[-126.66909033629885,53.02417497019042],[-126.6693645973482,53.02409833849278],[-126.66964453287197,53.02402727662806],[-126.66990653188522,53.02394343423879],[-126.67012510332502,53.02382957445395],[-126.67029929456373,53.02368403556064],[-126.67045457528336,53.02352460161639],[-126.67061837129413,53.023371833307266],[-126.67082279898653,53.023249097219384],[-126.6711037117904,53.02318082311804],[-126.67139039396804,53.023123165103264],[-126.67168471302888,53.023076112503006],[-126.671974311294,53.023026280223995],[-126.67223835296666,53.022954182083545],[-126.67245210156331,53.022830825241826],[-126.6726092471836,53.0226719334756],[-126.67272145837626,53.02250488918747],[-126.67278212460448,53.02232637755136],[-126.67276254185178,53.022151129345225],[-126.67267479631768,53.021976260828275],[-126.67261132324644,53.02180014227419],[-126.67254505994975,53.021625151152435],[-126.6724610865075,53.021452510973134],[-126.6723892315946,53.02127811635948],[-126.67231924450282,53.021103711043004],[-126.67225297470061,53.020928163947936],[-126.67221002644422,53.02075079862281],[-126.67217259445508,53.020568928639356],[-126.67203108420874,53.02041734139781],[-126.67179848385251,53.020292600953475],[-126.67168584788402,53.02013693144405],[-126.67165226534506,53.01996119781776],[-126.67164842769759,53.01977800682259],[-126.67162944633351,53.01958089975102],[-126.67159792925649,53.019418600785045],[-126.67163059748617,53.019240813563755],[-126.67164165891973,53.01905417604128],[-126.67166857463098,53.01886689243908],[-126.67164510438043,53.0186815809899],[-126.67165576496491,53.01852912667885],[-126.67166298836885,53.0183369082198],[-126.67168913689349,53.018159713773244],[-126.67168161835109,53.01797991413357],[-126.6716713154984,53.01780068611719],[-126.67169369406979,53.017621271993576],[-126.67170858923434,53.01744190045858],[-126.67171602203076,53.017262006642525],[-126.67172251391051,53.017082127128994],[-126.67172807353121,53.01690280869353],[-126.67172803799592,53.01672295734716],[-126.67173079568079,53.01654309903989],[-126.67173256800088,53.016360440485606],[-126.67187204286604,53.01620668756427],[-126.67204993088416,53.01606112416553],[-126.6722343713913,53.015917208433784],[-126.67240567953141,53.01576944087159],[-126.67257226712003,53.015618894116315],[-126.67274076213212,53.01547002152449],[-126.67288206164913,53.0153734135729],[-126.67316358773984,53.01522949821818],[-126.67343117960016,53.01514896796789],[-126.67367591386889,53.01503999826167],[-126.67381540409342,53.01488792806865],[-126.67388171797226,53.014713309103065],[-126.67393113981596,53.01453317490762],[-126.67399555899718,53.014356881362396],[-126.67407870919983,53.01418440710555],[-126.6741655746435,53.01401078202497],[-126.67433317012308,53.013865273724974],[-126.67452986024448,53.01372912790148],[-126.67472931522572,53.01359128061588],[-126.67491563828476,53.01344958172614],[-126.6750578939111,53.01329637349687],[-126.67512048424446,53.01312289548396],[-126.675148392987,53.012940086822745],[-126.67520437854064,53.01276272013786],[-126.67527067441867,53.012587535468995],[-126.67530421832545,53.01240693553682],[-126.67537621164611,53.01223787666665],[-126.67556249996042,53.01209450045752],[-126.67579694512139,53.0119861497102],[-126.67606264473775,53.01190562403271],[-126.67627439747912,53.01177835309134],[-126.67650219666031,53.0116627509731],[-126.67676590117601,53.01157439129336],[-126.67701923156321,53.011479932037304],[-126.67721881078165,53.01135104391452],[-126.6773863228634,53.01120161397438],[-126.67754628613933,53.01104718019762],[-126.67772039054606,53.010901064549316],[-126.67795661888277,53.010788216927494],[-126.67819293229341,53.01067984155437],[-126.6783033156321,53.01051953323048],[-126.67835828736081,53.010337688340954],[-126.6784226818126,53.010161391941956],[-126.6784795997488,53.00998457374058],[-126.67852808873634,53.00980557185215],[-126.67843384580385,53.00963242904264],[-126.67832107531237,53.00941008857943],[-126.67847194537825,53.00927139330325],[-126.67857081516729,53.009149805246835],[-126.67867902676157,53.00902871913013],[-126.67885654821113,53.008863541531674],[-126.67905883938545,53.00873070797965],[-126.67925456770253,53.00859567972817],[-126.67943147567938,53.0084512304095],[-126.67959617587138,53.00830180419933],[-126.67975709094574,53.00815016742159],[-126.67991894552146,53.007998516023214],[-126.68008740250947,53.00785075271494],[-126.68025485482964,53.0076990774993],[-126.68042133818662,53.007545722308784],[-126.6805991606594,53.0074001452745],[-126.68079870080966,53.00727068607863],[-126.68103319579336,53.007167926847764],[-126.68130173460428,53.007091854713856],[-126.68158631103722,53.00702690374006],[-126.68186519673611,53.00695637325828],[-126.68212040881826,53.006865253335775],[-126.68235477828544,53.00675408353451],[-126.68258438258475,53.00663733807982],[-126.68282347167317,53.006530066411074],[-126.68307961989848,53.00643893894277],[-126.68334335947364,53.00635561077731],[-126.68360992646377,53.00627450672461],[-126.68387459564296,53.00619060720448],[-126.68413073956792,53.00609947743499],[-126.68438777211884,53.00600610083766],[-126.68464196610671,53.005909943251005],[-126.68488765841023,53.00580710220449],[-126.68511731393346,53.00569427779924],[-126.68532622835242,53.005568682638845],[-126.6855200465407,53.00543308987932],[-126.68570255581197,53.00529083922764],[-126.68588128552376,53.0051458043939],[-126.68606000504325,53.005000213535084],[-126.68624344555825,53.004858521329275],[-126.68644097249711,53.004721784828256],[-126.68665257681296,53.004589448220564],[-126.68686978247749,53.0044581991424],[-126.6870860700068,53.00432751078988],[-126.68729110307937,53.004193534922145],[-126.68747740656036,53.00405574145324],[-126.68763745130948,53.00391025692128],[-126.68776002058564,53.003756026298774],[-126.6878263776015,53.00358867677808],[-126.68784868947968,53.00340981383103],[-126.68784570620495,53.003225504606256],[-126.6878380039952,53.003038417020015],[-126.6878452844576,53.00285348312615],[-126.68788532851119,53.002675081414786],[-126.68794408159738,53.00249936742521],[-126.6880121844926,53.00232472835193],[-126.6880858858661,53.00215004758491],[-126.68816520408254,53.00197646348987],[-126.68824732275444,53.0018034187696],[-126.68833132206001,53.001630362992444],[-126.68841531475306,53.00145786296775],[-126.68850868077772,53.00128699344622],[-126.68861045531094,53.001117195280266],[-126.6887141045238,53.00094795081499],[-126.68881026926992,53.000777620438384],[-126.68889053483481,53.00060570649927],[-126.68894089008111,53.00043004978374],[-126.68895290527256,53.00025012586065],[-126.68896097827637,53.00000019467036],[-126.6889541858398,52.99986857347877],[-126.6889428739297,52.999689350553794],[-126.68892596004791,52.99950903978381],[-126.68889971819011,52.99932990404952],[-126.68885950521091,52.99915197047219],[-126.68880251443521,52.99897525543509],[-126.68873341915007,52.99879973161771],[-126.68865497830883,52.998624262328924],[-126.68857096335381,52.99844938132229],[-126.6884850680815,52.998274520185795],[-126.68840198016028,52.99809963361743],[-126.6883235660547,52.99792472865561],[-126.68825447766993,52.997750324986875],[-126.68819751843054,52.997575285706205],[-126.68815735547741,52.99740015731573],[-126.68813867036576,52.99722545934018],[-126.68815822529352,52.99704997339709],[-126.68821512160117,52.99687539899385],[-126.68829626831176,52.99670011821367],[-126.68838767069852,52.996524777476864],[-126.6884772211207,52.996349447460815],[-126.688551808669,52.99617308418075],[-126.68859746899142,52.995996325022396],[-126.6885917638898,52.995816513122286],[-126.68857017115519,52.99563566446907],[-126.68857752299401,52.99545633207047],[-126.68860995656419,52.99526957400645],[-126.68868925965575,52.995095979886045],[-126.68886633361058,52.99496720160906],[-126.68913551622074,52.99487934539914],[-126.68941037778396,52.994796502356955],[-126.68967973083046,52.99471928472256],[-126.6899596356999,52.9946593778736],[-126.69024041993198,52.99459666828728],[-126.69051343868615,52.994515509783135],[-126.69079660611337,52.994484716381486],[-126.69108999606841,52.99450876982562],[-126.69138733717867,52.994546246093265],[-126.69168530345726,52.99456522421882],[-126.69198593077405,52.99457523045605],[-126.69228254317706,52.99456788633526],[-126.69257501250799,52.994535348714194],[-126.69286816632803,52.99448712745923],[-126.69314604708127,52.99441881621087],[-126.6933917804807,52.99432380888291],[-126.69360627661585,52.99420208238743],[-126.69380747164165,52.99406587543529],[-126.694008674452,52.99393022387351],[-126.69422593103346,52.99380680359066],[-126.69445545109514,52.99369115458236],[-126.69468216003584,52.99357440111497],[-126.69489377817646,52.99344877165422],[-126.69510340649457,52.99331474483448],[-126.69529330489263,52.99317299901821],[-126.69543261844576,52.993019216136645],[-126.69545297534196,52.99283812978019],[-126.69543589901335,52.99264941132387],[-126.69553596089985,52.992491942312164],[-126.69571372705813,52.99235082309579],[-126.69592333827786,52.992216238985286],[-126.69615082328136,52.99209107820253],[-126.69638687964844,52.99197706299437],[-126.69663269260964,52.99188820679069],[-126.69694353900434,52.99189701934749],[-126.69723522315529,52.99193170840109],[-126.6975261570154,52.99197705100421],[-126.69781621551067,52.992026324525796],[-126.69810620092528,52.992071106552785],[-126.6983978596794,52.9921041165271],[-126.6986919972629,52.99211806152004],[-126.69898680839452,52.992115758104866],[-126.6992823847511,52.99210279958166],[-126.69957876650294,52.99208254739409],[-126.69987600898817,52.99205837186066],[-126.7001732384528,52.992032519290085],[-126.70047048940813,52.992008898002105],[-126.70076688855849,52.991989772243784],[-126.70106436639944,52.991979039067395],[-126.70136205100943,52.99198175067133],[-126.70165995403096,52.99199678642274],[-126.70195885678422,52.99201629772402],[-126.7022567730236,52.992033008254175],[-126.70255266262453,52.99203908923798],[-126.7028463472979,52.9920255772429],[-126.70313962962055,52.99198684974781],[-126.70342510815921,52.991928553733636],[-126.70369729828424,52.99185577797603],[-126.7039571008614,52.99176794345594],[-126.70421208157713,52.99167117264288],[-126.70446519156468,52.99157329188048],[-126.70472211939344,52.99148154636112],[-126.7049877011445,52.99140488062091],[-126.70527056787921,52.991357810308024],[-126.70557170682385,52.991343117359854],[-126.70587379903719,52.991330103262335],[-126.70616048918528,52.99128861073337],[-126.70643899815721,52.991204020301645],[-126.70664973739258,52.99108397737659],[-126.70672715838248,52.990914307950106],[-126.70675392032557,52.99072813369898],[-126.70676678285717,52.990548201379866],[-126.70680113829332,52.990369825506725],[-126.70685505521887,52.990189091178735],[-126.70693804345468,52.99001771175975],[-126.7071431964842,52.989898821889724],[-126.70739437110561,52.989798705109195],[-126.7076408780003,52.98969805103535],[-126.70775858332146,52.98953822401586],[-126.70774628808691,52.98936012781024],[-126.70771621364375,52.98917934139279],[-126.70768708907725,52.98899910504826],[-126.70766078957877,52.98881997228561],[-126.70765034210636,52.988640744338156],[-126.70765760284745,52.98846084529987],[-126.70766021593965,52.988281538908524],[-126.70768056131202,52.98810212604348],[-126.70770089158657,52.987922713245304],[-126.70771377358842,52.98774334514172],[-126.70772663130371,52.98756342136136],[-126.70773670701365,52.987384070064465],[-126.7077439821005,52.98720417079634],[-126.70774659475116,52.98702486426869],[-126.7077417352583,52.986845046784346],[-126.7077331442384,52.98666524272093],[-126.70772455344041,52.98648544760126],[-126.7077206193373,52.986305615538356],[-126.70772043171375,52.986125769926524],[-126.70772304439745,52.98594646328386],[-126.70772378198834,52.985766603113696],[-126.70772171376638,52.985586768735395],[-126.70771779468366,52.985406936486264],[-126.70771293549754,52.985227118826955],[-126.70770808560367,52.98504785689494],[-126.7076938702955,52.98486641003634],[-126.70766469282766,52.98468281184995],[-126.70764861221221,52.984501376147215],[-126.7076783527851,52.984326944540896],[-126.70777075677196,52.98416166596556],[-126.70790525526684,52.98400285790431],[-126.70806405583055,52.98384783015672],[-126.70822940148233,52.983693318648754],[-126.70838165885014,52.98353720021245],[-126.70852080953809,52.98337836340353],[-126.70866277439825,52.98322007425624],[-126.70881317234348,52.98306453114604],[-126.70899175788088,52.98292114454572],[-126.70922497543273,52.98280936071447],[-126.70949982257687,52.98273262828413],[-126.70979071531096,52.98272303283732],[-126.71008768178031,52.982741979123894],[-126.71050149912753,52.982775899351154],[-126.71049425139017,52.98295579917537],[-126.71048512296343,52.98313570135161],[-126.71041713382932,52.983309799643095],[-126.71048903381225,52.98348137833209],[-126.71052000389147,52.98365991816381],[-126.71048849404296,52.983839399379185],[-126.71034651534123,52.9839965791729],[-126.7102822273083,52.984168969642326],[-126.71032252520506,52.984347462204],[-126.71037958581681,52.98452416837142],[-126.71042546245415,52.98470149770757],[-126.7104629704739,52.984880006986295],[-126.7105079169989,52.98505790663037],[-126.71056778526616,52.98523459571779],[-126.71063511100998,52.98541179560089],[-126.71069962770476,52.98558790076275],[-126.71074830350022,52.985764657195745],[-126.71076617912776,52.98594103455443],[-126.71078871180228,52.986117392774545],[-126.71072854710373,52.98631329034027],[-126.71063212065235,52.98651613884474],[-126.71064290622,52.98665950659715],[-126.71061311055294,52.98683001263222],[-126.71060025034967,52.9870099368961],[-126.71059113657664,52.987189847518486],[-126.7105941331319,52.98736912034971],[-126.71060741187905,52.987550007546616],[-126.71062726595532,52.98773310518381],[-126.71066757796963,52.98791215299306],[-126.71074227398391,52.98808258471988],[-126.71088849596168,52.98823466494084],[-126.71109602732065,52.98837067823542],[-126.71130812342835,52.988501069744515],[-126.71155518879607,52.98860155027308],[-126.71184297126072,52.98862670639876],[-126.71214619292397,52.98862711606815],[-126.71244753548301,52.988625850981116],[-126.71275607273726,52.98860941844173],[-126.71306185611544,52.98859524288683],[-126.7133457950316,52.98861369519307],[-126.71359444021557,52.98869679759783],[-126.71380483965268,52.98883671525863],[-126.71396418281857,52.98899150916058],[-126.71404732030112,52.989164128782186],[-126.71411191329206,52.98934359304149],[-126.71427468042762,52.989479871912124],[-126.71446652735001,52.98962494781041],[-126.71462673533757,52.98977580906805],[-126.7147702892661,52.989934059250004],[-126.71493420302102,52.99008322123806],[-126.71512593232146,52.99022100858772],[-126.7153278234107,52.99035313112601],[-126.71552972526034,52.99048581801617],[-126.71571871797393,52.99062753850281],[-126.71592428799866,52.99075627597471],[-126.71617497161321,52.990849445656984],[-126.71644868517419,52.990924536816266],[-126.71672780862701,52.990988397750044],[-126.71701873791207,52.99103257182179],[-126.71735623413265,52.991072535355016],[-126.71763514369925,52.99117841221697],[-126.71782403150745,52.991258507773125],[-126.7180793943406,52.99135163596453],[-126.71833569886597,52.9914447668309],[-126.71859472956118,52.99153395405908],[-126.71885559876935,52.991621444176964],[-126.71911555713216,52.9917106246078],[-126.71936905973051,52.99180377032643],[-126.71960417904116,52.9919132714475],[-126.71980800538634,52.99204817143445],[-126.72005953168758,52.99213460433973],[-126.72034960779261,52.99218325770715],[-126.72063782803302,52.992232477509],[-126.72092419256595,52.99228227272238],[-126.72120410100489,52.99233603320355],[-126.72150946240954,52.99235097322405],[-126.72180554722938,52.992368210385905],[-126.7221030549747,52.99236022086044],[-126.72240073002367,52.992361203055495],[-126.72269686694652,52.99238235516305],[-126.72299297152396,52.99240070979234],[-126.72329084166913,52.99241401477905],[-126.72358776725964,52.99242619528045],[-126.72388471225408,52.99243950444719],[-126.72418260734592,52.992453362831874],[-126.72447694675232,52.99247844798437],[-126.72475698507634,52.99253947846342],[-126.72502245414519,52.992622444452735],[-126.72528425511004,52.99270823831271],[-126.72559654150989,52.99274553650233],[-126.72575138920396,52.992633647218106],[-126.72583130829888,52.992451067538354],[-126.7259516677667,52.99228672363678],[-126.72608984628566,52.99212730791364],[-126.7262486683061,52.99197561777235],[-126.72642252715295,52.991829428614594],[-126.72660859211372,52.991688210985096],[-126.7268125278645,52.99155584740769],[-126.72706286509413,52.99146298193491],[-126.72733588924149,52.991387340270315],[-126.72760219741676,52.99130053373402],[-126.72788035650481,52.9912528733014],[-126.728168636671,52.99125052822455],[-126.72847297122738,52.99125985368624],[-126.72876776508568,52.99125691109141],[-126.7289063800417,52.99128743001633],[-126.72902215396863,52.99134666900729],[-126.72917226112497,52.99150317600419],[-126.72932237907555,52.991660247501606],[-126.72949655339755,52.99180540845815],[-126.72972896507031,52.99191826800634],[-126.72999533236765,52.99199842036643],[-126.73027626245884,52.99205719112403],[-126.73048647341143,52.99218194818752],[-126.73069124720315,52.99231514731678],[-126.7309236306405,52.99242688411955],[-126.73116340741966,52.9925335365372],[-126.7314068636919,52.992637915539746],[-126.73165031695582,52.9927411824559],[-126.73189289839777,52.99284837178778],[-126.73214826300129,52.99293922851887],[-126.73242914436695,52.99299463276969],[-126.7327218872244,52.99303483944976],[-126.73300918271016,52.993082914285594],[-126.73329466566187,52.993134926167905],[-126.73358638808818,52.99316953421689],[-126.73388415604116,52.993175524948754],[-126.73417636924319,52.99318491122542],[-126.73438954842769,52.993155569254],[-126.73471830667448,52.993119903807234],[-126.73508010431499,52.99310587803376],[-126.73532787809815,52.993134588195005],[-126.73561531755752,52.99319162931197],[-126.73590487133153,52.99326209438687],[-126.73620415179228,52.99324846436159],[-126.73644605979791,52.993153946295635],[-126.7367220055557,52.993086108662645],[-126.73702411815032,52.99301978316147],[-126.73731327716825,52.99301405756185],[-126.73761344001997,52.99305139981518],[-126.73788830338563,52.99308217624785],[-126.73800599336491,52.99303493148195],[-126.73804888317034,52.99297975511544],[-126.73805874475745,52.9927953642923],[-126.73807710767369,52.99261651410399],[-126.73815807954473,52.9924434395014],[-126.73826138374352,52.99226686326344],[-126.73841841369321,52.99212189111226],[-126.73868893214504,52.99206360312499],[-126.73905769636822,52.992021516145385],[-126.73927412527895,52.99196580702281],[-126.73956050433864,52.99190798232143],[-126.73985070231146,52.991855179996904],[-126.74009643334516,52.99176678892111],[-126.74026646775755,52.991618926664586],[-126.7404326963435,52.99146604996299],[-126.74063473175723,52.99133422992174],[-126.74085183505098,52.99120960301341],[-126.74101537081977,52.991063465775575],[-126.74101507614083,52.99088641747876],[-126.74098203840822,52.990703972124905],[-126.74094342287982,52.9905226823729],[-126.7409422322532,52.99034731602627],[-126.74109249822315,52.990189491509604],[-126.74125219985409,52.99003777507227],[-126.74140161628829,52.98988443774571],[-126.74146466064451,52.989701388080114],[-126.74170318424274,52.98968251421323],[-126.74192458798586,52.9898049485912],[-126.74212745641317,52.98993533427794],[-126.74230909165924,52.990078188569974],[-126.74251571907169,52.99020911468055],[-126.7427527060109,52.990315752379324],[-126.7430254542003,52.990386870691275],[-126.7433092175052,52.990446713207675],[-126.74359015574339,52.99050545229252],[-126.74387383716133,52.990561376454885],[-126.74415660358147,52.99061786151678],[-126.7444393608635,52.990673781193024],[-126.7447230594489,52.99072970321195],[-126.74501393229569,52.99076988224751],[-126.74530976023145,52.99077249458067],[-126.74560017914284,52.99073312343488],[-126.74588568928316,52.990680326805],[-126.74617217860705,52.99062977338741],[-126.74646671108009,52.99061222072098],[-126.74676616141507,52.990608638828725],[-126.7470637605165,52.99060675324716],[-126.74736147301375,52.990610469054694],[-126.74765922975685,52.990617545545646],[-126.74795784813955,52.990620133530534],[-126.74825545241303,52.99061768910438],[-126.74853728462857,52.99067416962589],[-126.74882006778469,52.99073119923975],[-126.74911712729218,52.99075116754483],[-126.74941416716749,52.9907700056912],[-126.74970049625026,52.99081636970661],[-126.7499816039075,52.990884057118286],[-126.75023974249085,52.99097150453724],[-126.75041589070604,52.99111885469481],[-126.75065170506033,52.99121092560692],[-126.75093812745484,52.99126232412948],[-126.75116599022718,52.9913790972525],[-126.7513772589596,52.99150717245649],[-126.75159317158051,52.99163354129758],[-126.7518026067476,52.99176331276606],[-126.75199165674962,52.99190105789872],[-126.75214362722134,52.99205248616278],[-126.75225573136673,52.99221873605049],[-126.75235208244875,52.99239068921281],[-126.75245865502642,52.99255978009709],[-126.75259305411141,52.992720284470074],[-126.7527404714036,52.99287734384596],[-126.75290270343997,52.99302870556198],[-126.75308344257668,52.99317041949145],[-126.7533067086086,52.99329057952386],[-126.75352535795079,52.99341300081855],[-126.75369965181888,52.99355980204167],[-126.75382665941017,52.99372315812635],[-126.7538922633037,52.99389754767667],[-126.75393091724999,52.99407771237616],[-126.75399374039606,52.994252675425095],[-126.75411977094723,52.99441379625483],[-126.75427649020652,52.99456855298436],[-126.75439606351082,52.99473418812991],[-126.75448684080193,52.994906739814645],[-126.7547320202018,52.99499817784862],[-126.75502635542536,52.99502094580462],[-126.75529651195063,52.99510045224226],[-126.75551790340056,52.995218378923106],[-126.75570332833819,52.99536062350656],[-126.75590351373593,52.995493243831326],[-126.75615531318832,52.995589683517785],[-126.75640527752114,52.99568781081457],[-126.75662394811914,52.995810226188134],[-126.75682137194885,52.99594511277775],[-126.75699105962684,52.996093614993754],[-126.7571459544076,52.99625062071496],[-126.75731192225479,52.99639971111267],[-126.75751388400703,52.99652672339135],[-126.7577509338861,52.99663277479753],[-126.75800737210636,52.996727495383745],[-126.75826841424482,52.99681825932928],[-126.75852207306188,52.996913561442405],[-126.75877388670975,52.997009986491555],[-126.75902478597266,52.997106981658256],[-126.75927382530965,52.99720510883996],[-126.75951738235202,52.99730887366079],[-126.75976003015916,52.99741432917515],[-126.76000722685872,52.997513587255455],[-126.76026820802691,52.99760042967213],[-126.76054298346429,52.997675412074],[-126.76082050161602,52.99774757919897],[-126.76109063622944,52.99782427561308],[-126.76134141023073,52.99791454326077],[-126.76152673600664,52.99804950008138],[-126.76167706683111,52.99821044680882],[-126.76188559938362,52.998337964956775],[-126.76210520511097,52.998459252514294],[-126.7623008272879,52.99859525315783],[-126.7625010586378,52.99872842672658],[-126.76270867573174,52.99885706990122],[-126.76290890959302,52.9989902427567],[-126.76310545246288,52.999125680295535],[-126.7632992501193,52.99926449698191],[-126.76348850165941,52.999409510393846],[-126.76369702539618,52.99953590480914],[-126.76394498282201,52.99962394403451],[-126.76422321336108,52.99968320754951],[-126.76451704339934,52.99972724607178],[-126.7648118046451,52.99977072202236],[-126.76509559582696,52.99982770628198],[-126.76537214955569,52.99989650729467],[-126.7656585071416,52.9999400356863],[-126.76595818838227,52.99994648910052],[-126.76625642255942,52.99997537149872],[-126.76641831284402,53.000000092411746],[-126.76665548516185,53.000110607445464],[-126.76685753274297,53.000239835349554],[-126.76701801201354,53.00039230945453],[-126.7671960732574,53.00053682495915],[-126.76739168628718,53.00067170561239],[-126.76763444358402,53.00078106175774],[-126.76784939960552,53.000901239366684],[-126.76797271037658,53.00106236293015],[-126.76806917539062,53.00123597851235],[-126.76818606983076,53.001403867035954],[-126.76832704523416,53.00156150444852],[-126.76855123776933,53.001676026700665],[-126.76880223276918,53.001776362197326],[-126.76899604555794,53.00191348406914],[-126.76915842075817,53.00206762817073],[-126.76926218608867,53.002231674756565],[-126.76926085383155,53.00241545656303],[-126.76934882975345,53.002584088321136],[-126.7695518887536,53.002716110851246],[-126.76978724833855,53.00282830775899],[-126.77004733138874,53.00291457866092],[-126.77031568970665,53.00299350676233],[-126.77056297875791,53.00309386272004],[-126.7708065821794,53.003197603955165],[-126.77106119695793,53.0032900670132],[-126.77132680318701,53.00337180775563],[-126.77159425127307,53.00345130368032],[-126.77186722350872,53.00352739217556],[-126.77214112730748,53.00360291814072],[-126.77240027375767,53.00368806944124],[-126.77261990106129,53.00380653136499],[-126.77276930271456,53.003964672959384],[-126.77284341678634,53.00413955154319],[-126.77294352960888,53.004306980453315],[-126.77312998311618,53.00444863495778],[-126.77329882102964,53.004597119118095],[-126.77345096388748,53.0047513243321],[-126.77356319500166,53.004918108432484],[-126.77365965097287,53.00508948714184],[-126.77375147943984,53.00526257249029],[-126.77377336807054,53.00543947838379],[-126.7737542137732,53.005617774124325],[-126.77371919645286,53.005796729720466],[-126.77367765358015,53.005975737061426],[-126.77363892776201,53.00615528168672],[-126.7736113860135,53.00633475291151],[-126.7736034401268,53.006513530799474],[-126.7736169673644,53.006692176771054],[-126.77364541224725,53.006870715897136],[-126.77368320539621,53.007049202634974],[-126.77372658354894,53.00722764373747],[-126.77377184376385,53.0074060814235],[-126.77383376684483,53.00768021356994],[-126.7738940278845,53.00750388942561],[-126.77395336259121,53.00732757130814],[-126.77402392223605,53.0071534205973],[-126.77411883317572,53.0069830274762],[-126.77423152976547,53.00681588815382],[-126.7743423587369,53.00664875199996],[-126.77443071671452,53.00647784578797],[-126.77449190967499,53.00630207983076],[-126.77453813355926,53.00612360623817],[-126.77457967295177,53.00594459860979],[-126.77462870883191,53.00576722703555],[-126.77470210108932,53.0055947424484],[-126.77489842636926,53.005458984563475],[-126.77513633950205,53.00535096714999],[-126.7753865398091,53.005251832986865],[-126.77563960273442,53.00515659695337],[-126.77589551281869,53.00506359172968],[-126.7761552364671,53.004975034142575],[-126.77641878421895,53.004891497828964],[-126.77669948778433,53.00482746233356],[-126.77698120283313,53.0047673370015],[-126.77722959039878,53.00467157248954],[-126.77746656266143,53.00456411225953],[-126.77770065486607,53.00445275302728],[-126.77793190241407,53.00433861514342],[-126.77815935408184,53.00422113117017],[-126.77838398157179,53.00410198901346],[-126.77860480872997,53.00398007456626],[-126.77882189596454,53.00385705485608],[-126.77903613390171,53.003731821379944],[-126.77924845269611,53.003603794275215],[-126.7794541480443,53.003471328275964],[-126.77964951222825,53.00333500373207],[-126.77983171780933,53.00319372778841],[-126.77999794177755,53.00304583384239],[-126.78014627211775,53.00288965823849],[-126.78027767001117,53.0027263062875],[-126.78039309225998,53.002557457048994],[-126.78049262588146,53.002387027504994],[-126.78057351572946,53.00221785080582],[-126.780534762015,53.00203881615882],[-126.78044755529743,53.00186401969877],[-126.78033714063831,53.001695544365376],[-126.78025278936325,53.00152409951418],[-126.78024205321057,53.00134599988285],[-126.78025366155016,53.001164946469736],[-126.78022609784863,53.00098528177515],[-126.78020322802575,53.00080669760459],[-126.78023815786058,53.00062549878415],[-126.78028246457407,53.00044591425518],[-126.78025832050878,53.00030039979867],[-126.78011122262309,53.00016690457259],[-126.78002509111224,52.99999994452755],[-126.78003478241212,52.99981610673108],[-126.7800248236842,52.999629037193905],[-126.78001954376884,52.99944305725503],[-126.78007150586723,52.99927462774997],[-126.78023418689665,52.999137962177976],[-126.78048317181853,52.99902649826781],[-126.7807350343616,52.998918941245925],[-126.78099274120571,52.99882478286088],[-126.78117686136542,52.9986874181066],[-126.78133927902971,52.99853674103175],[-126.7814941437725,52.99838219625195],[-126.78165182453431,52.9982281973473],[-126.78182175512926,52.998080275650985],[-126.78200391034748,52.99793787547446],[-126.78219074294441,52.99779656453941],[-126.78237290594062,52.9976547195053],[-126.78254378837794,52.99750847571232],[-126.78269016181545,52.99734893850872],[-126.78277658010705,52.99717691705442],[-126.78275741343158,52.996997196722916],[-126.782634947446,52.99683328538133],[-126.78244669142066,52.996695018961645],[-126.78223619219325,52.99656418802903],[-126.78203219759322,52.99643219300039],[-126.78189029865128,52.99637879077375],[-126.78182544923594,52.9963030217948],[-126.78183782242715,52.99616398856764],[-126.78195788500346,52.99604496727706],[-126.78220132125216,52.99593746267716],[-126.78245242103554,52.995839982904656],[-126.78271682534842,52.99575642592101],[-126.78300131511087,52.995699072926264],[-126.78330268489775,52.99569650628336],[-126.7835790094734,52.99575350474929],[-126.783774822279,52.99589675730242],[-126.78402811924208,52.99596958688253],[-126.7843342831395,52.995974273952115],[-126.78463210425606,52.99598237747329],[-126.78492991972301,52.99598935970583],[-126.78522687757354,52.99600082919761],[-126.78552220770526,52.99602519987977],[-126.78581580664229,52.99605686061681],[-126.786111054443,52.99607673911285],[-126.7864124119566,52.99607417358486],[-126.78670399016994,52.996097436800106],[-126.78698686074101,52.99615438363407],[-126.78726165319165,52.996228183393306],[-126.78752451718579,52.99631327690708],[-126.78777476584047,52.99642254200852],[-126.78790915462044,52.99657459798053],[-126.78797024488486,52.99674899937979],[-126.78801281969194,52.99693136850664],[-126.78807582906137,52.99710856291259],[-126.78818625662947,52.99727591092226],[-126.78833937352162,52.997431202878765],[-126.78854619921542,52.99756316814482],[-126.78844951128895,52.99773414203996],[-126.7884412865483,52.99789443913839],[-126.78866862206317,52.99802514644415],[-126.78879293935468,52.99818679804763],[-126.78888016236652,52.99836102401704],[-126.78893477207052,52.998538274051214],[-126.78895581559185,52.998716304456075],[-126.78895262505088,52.99889673814561],[-126.78893825202258,52.99907724663938],[-126.78892197690396,52.9992566472649],[-126.78888517737379,52.99943562042189],[-126.78885677869931,52.99961510211076],[-126.788820015728,52.99979688087519],[-126.78878419304299,52.99997865331636],[-126.788781796213,52.999999960232174],[-126.78883921449781,53.00017719136116],[-126.78891707906418,53.00034979439328],[-126.78905257074737,53.000509694410304],[-126.78920292095533,53.000665568328984],[-126.78935326177748,53.000820877343344],[-126.78950360386497,53.00097619511515],[-126.78964373710616,53.00113493380692],[-126.78975608928258,53.001304508313176],[-126.78987675010536,53.00146954475677],[-126.7900538696278,53.00160955021684],[-126.79026801968963,53.001732498658036],[-126.79049881785207,53.00184805586923],[-126.7907342487674,53.00196133145445],[-126.79096506437115,53.00207688763733],[-126.79117366796717,53.00220323335273],[-126.79127299565233,53.00237457012896],[-126.79129124382747,53.00255261854793],[-126.79121515899206,53.002727382425924],[-126.7911446874922,53.002902099607056],[-126.79107139799203,53.00307627982562],[-126.79099342404538,53.00324993559628],[-126.7909098441069,53.003422499358074],[-126.79081688521782,53.003593449563326],[-126.79070056088845,53.003762315206615],[-126.79064685237175,53.00393524318231],[-126.79066141788974,53.00411612212051],[-126.7907216729891,53.00429500934264],[-126.79083115759013,53.004460675342344],[-126.79097966182606,53.00461655914757],[-126.7911448925552,53.0047684130308],[-126.79130364078618,53.00492254235131],[-126.79143075968743,53.005083051345736],[-126.79151890664573,53.00525502747803],[-126.79157356743944,53.00543395172798],[-126.79160025637636,53.00561362847208],[-126.79159145609597,53.00579297865361],[-126.79153878914572,53.00597205849178],[-126.79144770868308,53.00614299630767],[-126.7913341096409,53.00630848229396],[-126.7912074066825,53.0064712591261],[-126.79107505676008,53.00663238834437],[-126.7909408645409,53.00679408555021],[-126.79081040003169,53.006956322350725],[-126.79068557006096,53.00711964177541],[-126.79055885760638,53.00728297366514],[-126.79043496204699,53.007446851282694],[-126.7903204297384,53.00761234237027],[-126.7902349301976,53.00778267686079],[-126.7902168219367,53.00796377437111],[-126.7902098968929,53.008143111592695],[-126.79022910011594,53.008322829524545],[-126.79031355732157,53.00849707209849],[-126.79040173359192,53.008671289673686],[-126.79042084875044,53.00884541424433],[-126.79036529275231,53.00902059503704],[-126.79028175109396,53.00919596331426],[-126.79021314811777,53.00937235198401],[-126.79018846095705,53.00955068749584],[-126.79018808235256,53.00973110125059],[-126.79017930052748,53.009911006521705],[-126.79015742635397,53.01009044368687],[-126.79013088232061,53.01026935631233],[-126.79010433789702,53.01044825994961],[-126.79008153722793,53.01062770324646],[-126.79006807009908,53.01080708399545],[-126.79006676506195,53.010987503818434],[-126.79007943242968,53.01116670945841],[-126.79014616339433,53.0113416354018],[-126.79022220779115,53.011515369363636],[-126.79029917890205,53.01168910601769],[-126.79037057553637,53.01186343576414],[-126.79043637826553,53.012038923507326],[-126.79050312240963,53.01221440488963],[-126.79057079747258,53.012389315215295],[-126.79063845832496,53.012564234547526],[-126.79070613450224,53.01273914475945],[-126.79077288086047,53.012914625916714],[-126.79083682003274,53.01309012584371],[-126.79089797743141,53.0132662091389],[-126.79095447548238,53.01344231466819],[-126.79100632038734,53.013619580889376],[-126.79105256492512,53.013796875667595],[-126.7910913633373,53.01397534988134],[-126.79111150349088,53.01415450500975],[-126.79111671895333,53.01433431601929],[-126.79111165915899,53.01451420489148],[-126.79110286990769,53.014693553993546],[-126.79109407599518,53.01487345890608],[-126.79109088739375,53.0150527704056],[-126.79109983692751,53.015232565241725],[-126.79111625416449,53.01541230100888],[-126.79113826206071,53.01559144345951],[-126.7911425370297,53.0157712695901],[-126.79114401887743,53.01595110547095],[-126.79114644186261,53.016130943985],[-126.79115630736824,53.016310167798814],[-126.79119977295207,53.01648804566421],[-126.79125440511699,53.01666472803123],[-126.79123439308626,53.01684303163551],[-126.79119197207015,53.017022041321866],[-126.79116917246697,53.01720148413344],[-126.79115665934906,53.01738142269283],[-126.79114039693583,53.01756137741239],[-126.7911073042988,53.0177392128245],[-126.79104528520377,53.017918353786264],[-126.79092601018645,53.0180816349482],[-126.7907192659551,53.01821020912805],[-126.79048904336078,53.01833108737139],[-126.79032647824648,53.01847617317987],[-126.7902194361655,53.01864440962744],[-126.79014524181667,53.018821399389054],[-126.79009252144218,53.01899880105534],[-126.79008467388824,53.019179263825976],[-126.79011508430439,53.01935890557534],[-126.79017161855869,53.019536695960056],[-126.79026536654807,53.0197080784145],[-126.79040739447319,53.0198640052659],[-126.7905819137883,53.02001018495637],[-126.79076386138512,53.02015408243614],[-126.7909531952508,53.0202934389053],[-126.79118866716581,53.02040336005404],[-126.79144253012221,53.02049802531489],[-126.79169912485833,53.02058931001977],[-126.7919456466771,53.02069074682661],[-126.79216269171737,53.020813671690405],[-126.79234647333594,53.02095530432176],[-126.79250616037281,53.02110662776569],[-126.7926519565176,53.02126364711848],[-126.7927596671578,53.021431572016105],[-126.7928757213023,53.02159663484913],[-126.79299458465825,53.02176167867508],[-126.7931143794801,53.02192615134766],[-126.79323601715502,53.022090055700744],[-126.79336510839411,53.022252233438614],[-126.79353870660312,53.02239841487852],[-126.79370491487612,53.02254801641678],[-126.79393118517764,53.02266415257382],[-126.79418228033138,53.022759951130155],[-126.79442143539868,53.02286591458408],[-126.79459049437916,53.02301829258504],[-126.79471509602273,53.02319001931372],[-126.79486651977248,53.02334755372898],[-126.79502714056075,53.023498311581015],[-126.79521459405744,53.02363543268672],[-126.79543531430274,53.02375384447728],[-126.79568006963689,53.02385921182171],[-126.79593130613034,53.02396116429709],[-126.79617140910358,53.02406768257031],[-126.79637923099459,53.024195144105015],[-126.79647583321328,53.02436705792347],[-126.79648102019617,53.02454407105708],[-126.79646571874586,53.02472401939925],[-126.79644109093366,53.02490459543906],[-126.79641553669542,53.02508517770682],[-126.79639462221216,53.0252646080724],[-126.79636997277626,53.02544406362468],[-126.79634810633657,53.02562294457098],[-126.79633747991349,53.0258028612216],[-126.79634363474642,53.025982108790664],[-126.79635356041761,53.026162451446176],[-126.79634669598194,53.02634459272575],[-126.79633147734393,53.02652902251952],[-126.79632277066979,53.0267117319874],[-126.79633639537876,53.02689092904574],[-126.79638631707678,53.02706315775806],[-126.79648556642177,53.02722608900771],[-126.79662855816515,53.02738144570259],[-126.79679946847686,53.02753156669794],[-126.79697968580582,53.027679939259215],[-126.79715524939066,53.02782947250256],[-126.79730851373068,53.02798419418551],[-126.7974032291831,53.028154434380376],[-126.79743742261304,53.02833461274143],[-126.79745293500842,53.02851379677811],[-126.79746003617728,53.02869303764289],[-126.79746248212852,53.02887343050675],[-126.79746212381598,53.02905328650895],[-126.7974617653321,53.02923313352897],[-126.79745767188918,53.029413014736996],[-126.79744610796291,53.0295929374493],[-126.79742239128235,53.02977183068056],[-126.79738090366102,53.029949714459946],[-126.79732725842955,53.030127124561034],[-126.79726801445345,53.030304016650426],[-126.7973198536216,53.0304784728288],[-126.79730913101795,53.03065390750873],[-126.79712688679977,53.03079632857985],[-126.79692015192444,53.030927709215135],[-126.79677357948934,53.031079973765046],[-126.79678814879428,53.031259163957145],[-126.79682791796391,53.031437063410024],[-126.796873275503,53.03161492509446],[-126.79693262736902,53.03179157168119],[-126.79687709375203,53.03196731776417],[-126.79682812054418,53.032144695846924],[-126.79681513759817,53.03234872413653],[-126.79663382125341,53.03249169377337],[-126.79655301136341,53.03266480438908],[-126.7964909305665,53.03284059437686],[-126.79648495435102,53.03301992309121],[-126.79652938575074,53.03319779099605],[-126.7965691660764,53.033376246057955],[-126.79659959323975,53.03355477319336],[-126.79663750644241,53.033733240803315],[-126.79661748360299,53.033910987913096],[-126.79651889258942,53.03408197727099],[-126.79638082082805,53.034240342142944],[-126.79620140926367,53.03438498334783],[-126.79601347894624,53.034524078965745],[-126.79582179081244,53.034662079055295],[-126.79562913906871,53.03479896475976],[-126.79532128760513,53.035018426775515],[-126.79505427324126,53.035224166214455],[-126.79487106500255,53.03536603393977],[-126.79469255941565,53.03551010182945],[-126.79452630147817,53.03566025447972],[-126.79440701551894,53.03582410204901],[-126.79435146162882,53.036000402352784],[-126.79429219689447,53.03617728337772],[-126.79421792146853,53.0363514684798],[-126.79413428964844,53.03652404013175],[-126.79402348139166,53.03669230339023],[-126.79390142318263,53.03685841006789],[-126.79385048021608,53.037031317340634],[-126.79386222989673,53.03721052616816],[-126.79389549949897,53.03739126655643],[-126.79391849289387,53.03757152025553],[-126.79389566243955,53.03774928530357],[-126.79381952508923,53.03792403828285],[-126.79374058227741,53.03809825426709],[-126.79370561657169,53.038276100831766],[-126.79369308249252,53.03845547285402],[-126.79369270796523,53.03863531887471],[-126.79369607994421,53.03881570443739],[-126.79369664705831,53.03899555305226],[-126.79370187651938,53.03917536132973],[-126.79370897419287,53.039355165988916],[-126.79371233574192,53.03953498679054],[-126.79370821486525,53.03971430210131],[-126.79369942697714,53.039894213534026],[-126.79368878575902,53.04007412844548],[-126.79367532453004,53.040253506508755],[-126.79365905364313,53.0404329034445],[-126.79363998800709,53.04061231915084],[-126.7936125130074,53.040791235587896],[-126.79357475574217,53.04097021216881],[-126.7935360462598,53.04114863932788],[-126.7935057503177,53.04132700988953],[-126.79349415601351,53.04150637524209],[-126.79350871505572,53.041685564748896],[-126.79353449344146,53.041865243562384],[-126.79355092089591,53.04204442046703],[-126.7935617544959,53.04222419075177],[-126.79356885208566,53.04240399510031],[-126.79357221328263,53.04258381558677],[-126.79356810207332,53.042763695258365],[-126.79355931735051,53.04294304157697],[-126.79354773321865,53.04312296248676],[-126.79353706521582,53.0433023214265],[-126.7935282908052,53.043482232370366],[-126.79352043238784,53.04366157238156],[-126.79351351091744,53.04384146186463],[-126.79350753113167,53.04402135396174],[-126.7935193275742,53.04420223811762],[-126.79352268887133,53.044382067380745],[-126.79346896739919,53.04455723342759],[-126.79338717405413,53.044729226483774],[-126.7932885299616,53.04490021216568],[-126.79318144354528,53.04506901338491],[-126.79307152988117,53.045236148182425],[-126.79295784311132,53.045402196622895],[-126.79284042330377,53.045567705251734],[-126.7927201717636,53.04573211221519],[-126.79259709884288,53.04589597322487],[-126.79247216124848,53.046059290813275],[-126.79234628106799,53.046222614574525],[-126.79222324726724,53.046388724915914],[-126.7920917705683,53.04655264171057],[-126.7919414007547,53.046705488628035],[-126.7917391356439,53.046830660888354],[-126.79147077346363,53.04691930704193],[-126.79119936437534,53.04699451752432],[-126.79092125577357,53.04706081688824],[-126.79065463340064,53.04714271727988],[-126.79039388048875,53.04723803322624],[-126.79017832715408,53.04735320682236],[-126.79014996445645,53.04753604498117],[-126.79016736318898,53.04771745626713],[-126.78993347865365,53.04790166984632],[-126.78992935151088,53.04808154883534],[-126.78992148737913,53.04826144384696],[-126.78989959235481,53.048440876936205],[-126.78987023845501,53.04862035990917],[-126.78985487962278,53.04879919342801],[-126.78987688899741,53.048977767935725],[-126.78993250966792,53.049155005941934],[-126.79001142662452,53.04932928217459],[-126.79006606934966,53.04950372079979],[-126.79002735819044,53.04968326632418],[-126.78998489336256,53.04986115164145],[-126.78992640325204,53.0500318651251],[-126.7897291762895,53.050178299065344],[-126.78962120405637,53.05035158443866],[-126.78960203353188,53.050526516857865],[-126.7896212891453,53.05070735073063],[-126.789672232268,53.05088461997565],[-126.78975302433007,53.05105831892636],[-126.7898625945739,53.05122230516939],[-126.79005401616907,53.05136613861556],[-126.79025089848835,53.05150208245711],[-126.79045422068361,53.05163294490641],[-126.79066598094111,53.051764871031516],[-126.79086084203215,53.05189242782634],[-126.7909834777522,53.05205520492958],[-126.7910940702514,53.05222310950304],[-126.79120279046091,53.052391582297325],[-126.79133790588233,53.052571639235104],[-126.79144067755699,53.0527216672564],[-126.7915475258768,53.05288903171233],[-126.79165158555568,53.0530575352983],[-126.79175470428052,53.05322604509193],[-126.79185876560808,53.05339454846252],[-126.79196376954955,53.05356304540741],[-126.79207340698802,53.05372982587359],[-126.79219794221972,53.05389370940341],[-126.7923224680391,53.05405703706915],[-126.79242467537796,53.054226108117355],[-126.79248869415467,53.05440216759422],[-126.79248343060598,53.05457028356489],[-126.79238311087092,53.05475303974473],[-126.79232753874832,53.054929337056926],[-126.79230472358354,53.05510877611924],[-126.79230808059833,53.05528860428004],[-126.79235064909562,53.055466483995886],[-126.79239321794975,53.05564436367808],[-126.79243579753657,53.055822799043256],[-126.7924811627303,53.056000659894124],[-126.79253305545197,53.05617735636039],[-126.79259335507338,53.056353440568785],[-126.7926685379013,53.05652661899223],[-126.79276145060199,53.05669799302761],[-126.79286090184718,53.0568687672857],[-126.79295566408675,53.05703901715315],[-126.79303644541602,53.05721159294342],[-126.79304258487683,53.05738971691265],[-126.79304129703736,53.057571252356034],[-126.79308481277761,53.05774912524657],[-126.79321118025814,53.057910198268914],[-126.79335345756338,53.058072840571576],[-126.79350941393406,53.058216897452745],[-126.79369996288585,53.05836128635058],[-126.79388490221646,53.058506277403374],[-126.79403359621237,53.05866158775846],[-126.79413861142085,53.058829526540826],[-126.7941839869648,53.05900738642859],[-126.79419390061524,53.05918716112293],[-126.79419464986502,53.05942695052775],[-126.79416901896394,53.059605852674],[-126.79416864626687,53.05978569649059],[-126.79418135608769,53.05996546126438],[-126.79416884296441,53.06014538669587],[-126.79413951560655,53.06032655468679],[-126.79416710344837,53.0605022929957],[-126.79424232540052,53.06067602561666],[-126.79433991859901,53.060847375586036],[-126.79445520162702,53.061014680099866],[-126.79458904930262,53.06117513636995],[-126.79475731350469,53.06132639658125],[-126.7949376462192,53.06147364895532],[-126.79510028054206,53.0616243907829],[-126.79521545311924,53.06178552784208],[-126.7952719812723,53.061958829823325],[-126.79529033483921,53.06214023259763],[-126.79529095706268,53.0623234400496],[-126.7952924791134,53.06250439139223],[-126.79528182856468,53.0626837483768],[-126.79526182838177,53.062863733054165],[-126.79524649753006,53.06304312151573],[-126.79527601318337,53.06322164319986],[-126.79542381232557,53.063377522302275],[-126.79549718167362,53.063552395879945],[-126.79550802900943,53.0637321637481],[-126.79541588813042,53.0639025494966],[-126.79530407598051,53.06407026181834],[-126.79523710628528,53.06423767205395],[-126.79518361266172,53.064425161061706],[-126.79511668391974,53.06459481197505],[-126.79508344513847,53.06476591233044],[-126.79519316594407,53.064934938564356],[-126.79529731163792,53.0651056785453],[-126.7952641422258,53.06528126056078],[-126.79520486156608,53.06545926839591],[-126.79521389157118,53.06564185413489],[-126.7952825669505,53.06581507396698],[-126.79542761633965,53.06597376825451],[-126.7956255213515,53.066110260418526],[-126.79590850033804,53.06619687559241],[-126.79617082039631,53.0662791472435],[-126.79619991128534,53.06643470487538],[-126.79610911922752,53.066626927646496],[-126.79614403857094,53.066794216022075],[-126.79633541494263,53.06693075098417],[-126.79656774710877,53.06705804516237],[-126.79678599088676,53.06718207234253],[-126.79703639713233,53.06727618353836],[-126.79731524828892,53.06734153313992],[-126.7975620447082,53.06744239974196],[-126.79781711983439,53.06753647776104],[-126.79807768188124,53.06762323919064],[-126.79829589082024,53.067745022765095],[-126.79850860317174,53.0678718899666],[-126.79875081971748,53.06797782296136],[-126.79899206812115,53.06808152095085],[-126.79915197731651,53.06823395164232],[-126.79925889511505,53.06840130762148],[-126.79934534220713,53.068574404690196],[-126.79942246896508,53.06874812055247],[-126.7994370941409,53.06892899156672],[-126.79945256200567,53.06910536577539],[-126.79960032316878,53.06925732225215],[-126.79977042829594,53.06940520090363],[-126.79995729949681,53.06954903941497],[-126.8000008962085,53.069580683688685],[-126.80015063328788,53.06968891647577],[-126.80035038740877,53.06982259128341],[-126.8005760219535,53.06993983817753],[-126.80080720854643,53.07005480593948],[-126.80102176686725,53.07017940603754],[-126.80123262575275,53.07030683664613],[-126.80144256936578,53.0704348378347],[-126.80164974933471,53.07056453371793],[-126.8018550567403,53.07069479773172],[-126.80205668412506,53.07082733639888],[-126.80225182581682,53.070963271394945],[-126.80244602675317,53.07109922142201],[-126.8026393334205,53.07123685351545],[-126.80283263065644,53.07137392060795],[-126.80303240542763,53.07150702597505],[-126.80324236040939,53.07163502387642],[-126.80345415417064,53.07176132362118],[-126.8036696561322,53.07188591248001],[-126.80389529586724,53.07200315299611],[-126.8041310988311,53.07211360072157],[-126.80438451098772,53.072215528578475],[-126.80461103290708,53.07232940013819],[-126.80474392747077,53.07248536873753],[-126.80483141123706,53.072661816115186],[-126.80490859985886,53.0728372130433],[-126.80499225032553,53.07300863953986],[-126.80516700668677,53.07315311704905],[-126.8053501482036,53.07329641659753],[-126.80547391814868,53.07346309603545],[-126.80557727957247,53.07363886977812],[-126.80570561132313,53.073799915204646],[-126.80590153979055,53.07392631874427],[-126.80613169678504,53.074033995182276],[-126.8063794164925,53.074131475497076],[-126.80663826280087,53.074223267712114],[-126.80690359293635,53.07431221823499],[-126.80716985147617,53.074401161820916],[-126.80742963918135,53.07449351062354],[-126.80768112918659,53.07459151823133],[-126.80792893030606,53.0746929121191],[-126.8081712136861,53.07479826956795],[-126.80840333613429,53.07491041025989],[-126.80860959562148,53.07503897966946],[-126.8087964640992,53.07518057203384],[-126.80900276882396,53.07531138149872],[-126.80919515649838,53.075447323828705],[-126.80932725724007,53.07560889524791],[-126.80945841670993,53.07577047296143],[-126.80964156698872,53.07591208944996],[-126.80987094108366,53.076027051891195],[-126.81013251786963,53.07611433565362],[-126.81038491903915,53.07621065496584],[-126.8106198455711,53.07632165154136],[-126.81083907754694,53.0764434048665],[-126.81107765597542,53.07655045810566],[-126.81133923864294,53.07663774813291],[-126.81159070752106,53.07673350653802],[-126.8118164163714,53.07685185197599],[-126.81204030387215,53.0769718858114],[-126.81222530120503,53.0771123650681],[-126.8123555811058,53.07727562188884],[-126.81241502922188,53.07745057993317],[-126.81243906102453,53.07763137517796],[-126.81243034886246,53.07781071928802],[-126.8123860653406,53.0779886316972],[-126.81233805682514,53.07816656071977],[-126.8123125017608,53.07834602058029],[-126.81229819057054,53.07852596784725],[-126.81228199440163,53.07870591908991],[-126.81225362019649,53.07888427773701],[-126.81220371908714,53.0790611080547],[-126.81213975468526,53.07923634974103],[-126.8120682892695,53.07941052240841],[-126.81199121396686,53.07958473356965],[-126.8119131848564,53.07975838646956],[-126.81183705065483,53.07993259101909],[-126.81176652104547,53.08010732173167],[-126.8117016258402,53.08028256944855],[-126.81163766815563,53.08045836644779],[-126.81157559055816,53.080634715219745],[-126.81151725208628,53.08081103825354],[-126.81146359102455,53.08098789385458],[-126.81141556461421,53.081165266490494],[-126.8113768826955,53.08134313069028],[-126.81134757547362,53.08152149522061],[-126.81132762377787,53.08170091600018],[-126.81131517714559,53.08188084996232],[-126.81130552757077,53.08206075573214],[-126.81129867543194,53.08224065123643],[-126.81128996813078,53.0824205504965],[-126.8112803076969,53.082599900502515],[-126.81127345536403,53.082779795949946],[-126.81126661776086,53.08295968231287],[-126.81126350515898,53.08313955204292],[-126.81126132417543,53.08331885061402],[-126.8112628936816,53.08349867919317],[-126.81127008384404,53.08367903390289],[-126.81129221227904,53.083858165497006],[-126.81133956082031,53.08403544758458],[-126.81141210384375,53.08421030660676],[-126.81150419981529,53.08438111393184],[-126.81160562934339,53.084550180759436],[-126.81171077389932,53.08471865722389],[-126.81181778280553,53.08488600025316],[-126.81192759008776,53.08505332394529],[-126.81204018496744,53.08522006362425],[-126.81215371258217,53.085386240996236],[-126.81227654831895,53.08555011321689],[-126.81241334273066,53.08570997198258],[-126.81255756028476,53.085867529527256],[-126.81271107988532,53.0860216703085],[-126.81287480318969,53.08617181438159],[-126.81305247038634,53.086317935968744],[-126.81325418554871,53.0864493339636],[-126.8134983827669,53.086553537674625],[-126.81376459646155,53.08663462306181],[-126.81404448521296,53.08669768530726],[-126.8143262018536,53.08675849325403],[-126.8146088146699,53.086817618055086],[-126.81489141085719,53.08687505703508],[-126.81517310835511,53.086934742584305],[-126.81545206933994,53.08699836369193],[-126.81572648201455,53.0870681828911],[-126.81599911172262,53.08714249585292],[-126.81626898784226,53.08721906825335],[-126.81653704458452,53.08729901417603],[-126.81680327964342,53.08738065735014],[-126.8170667569556,53.0874651158173],[-126.81732931437108,53.0875507005841],[-126.81758825556399,53.087641912396485],[-126.81783981044333,53.08773877737257],[-126.81808033356084,53.08784468236021],[-126.8183088890976,53.08796075442729],[-126.81852175846494,53.088088139921766],[-126.81871333531497,53.08822631302879],[-126.81888171724236,53.08837361969822],[-126.81903711319153,53.0885271745163],[-126.819186958015,53.08868300864964],[-126.81933959080796,53.08883825851291],[-126.8195024167941,53.08898896436378],[-126.81967731008913,53.089134539454896],[-126.8198587034996,53.08927726340166],[-126.82004287445525,53.089418856235284],[-126.82022981187403,53.089558744313884],[-126.82041770386274,53.089699181244654],[-126.82060281017925,53.089840201961216],[-126.82078604347195,53.08998180013702],[-126.82096466403546,53.090126226890256],[-126.82113680162325,53.09027349523733],[-126.82129407217884,53.09042647822241],[-126.82143091613759,53.09058631714063],[-126.82155752159095,53.090749032856486],[-126.82167947752745,53.0909134660198],[-126.82179866896684,53.09107959457074],[-126.82191414249995,53.091246869370984],[-126.82202868928262,53.09141415049558],[-126.82214230511549,53.09158199375378],[-126.82225683874101,53.09174927472941],[-126.8223732585398,53.09191654245847],[-126.82249150209931,53.09208212107359],[-126.8226144079595,53.09224653762361],[-126.82274195477443,53.092408689653055],[-126.8228750549529,53.09256855286602],[-126.82301466649962,53.092726138501014],[-126.82316263771688,53.09288029521467],[-126.82331988174184,53.09303103454326],[-126.82348549651633,53.093178909549984],[-126.82365576311906,53.09332506663894],[-126.8238325371639,53.093469501818916],[-126.824013031404,53.093612790273106],[-126.82419909447307,53.09375379857411],[-126.82438887778513,53.093893660109615],[-126.82458238136154,53.09403237486218],[-126.82477958343048,53.09416882244789],[-126.82497956310657,53.094304129795155],[-126.82518233536356,53.09443829678565],[-126.82538788939439,53.09457076770394],[-126.82559526736627,53.0947015402632],[-126.82580452101818,53.09483173461026],[-126.82601558795517,53.09495968384115],[-126.82622666012642,53.09508706791732],[-126.8264386284669,53.0952127600908],[-126.8266514931339,53.09533676932008],[-126.82687357337991,53.095452870065955],[-126.82712697885151,53.095545220295364],[-126.82739975964608,53.095623432352106],[-126.82767899708,53.0956965517538],[-126.82795085884882,53.095775880535484],[-126.8282033846071,53.095870475667965],[-126.82844032632495,53.095980866750196],[-126.82866437984961,53.096102552901726],[-126.82887271814774,53.09623331298631],[-126.82906062469861,53.09637150387719],[-126.82920865252848,53.096526773065015],[-126.82932608447194,53.09669626770794],[-126.82944905230097,53.09686180604511],[-126.82961556543003,53.097006304538716],[-126.82983952201923,53.09712182180823],[-126.83009218073498,53.09722257931089],[-126.83033931661095,53.097327848181365],[-126.83054943797124,53.0974535549268],[-126.83072999382088,53.097597953160914],[-126.83088735900134,53.09775259880397],[-126.8310242518757,53.097911870247664],[-126.83113697795791,53.09807971086734],[-126.83122360869005,53.09825166118937],[-126.83124394754246,53.09843024501256],[-126.83126430835677,53.09860994021312],[-126.83135559882798,53.09878130184913],[-126.83146371449648,53.09895198030169],[-126.83160521655354,53.09910785703379],[-126.83185872012233,53.09920355801073],[-126.83207345121555,53.09932473853828],[-126.83224657075165,53.099470872002],[-126.83241230780511,53.09962209504132],[-126.83258822804035,53.09976819930808],[-126.8327826731336,53.0999040971098],[-126.83292393339497,53.10000002186413],[-126.83298081272602,53.10003828329732],[-126.83318082810906,53.1001718911888],[-126.83338453818844,53.10030379639833],[-126.83359011315164,53.100434567587996],[-126.83379845496479,53.10056364261],[-126.83400864652108,53.10069157473272],[-126.83422159399274,53.100817254963594],[-126.83444290203633,53.10093950527745],[-126.83468177015176,53.10105043498445],[-126.83493798438465,53.10113994292437],[-126.83521984901633,53.10120182091696],[-126.83551707814833,53.10123669726316],[-126.83581160172572,53.101228456630736],[-126.8361070859752,53.101174823103776],[-126.83639101459234,53.10119858618379],[-126.83667108831798,53.101264390726996],[-126.83694217435442,53.101348751241375],[-126.83730536854752,53.101549557061446],[-126.83749768714881,53.10171906870053],[-126.83760460441911,53.101875183270195],[-126.83765587985815,53.102055222888104],[-126.83772572666793,53.102228972497805],[-126.83790248603391,53.102368339807654],[-126.83808490334509,53.102509916728636],[-126.83821905811126,53.10267087541483],[-126.83834579740497,53.10283525704428],[-126.83846228896273,53.103001387511135],[-126.83856571520045,53.10316985157262],[-126.8386355492079,53.10334191541155],[-126.83863540908287,53.103523995557644],[-126.83865019138405,53.10370373774887],[-126.83866964322526,53.103883437826724],[-126.83864887987389,53.104063432172275],[-126.83860662009329,53.10424413477535],[-126.8386381403818,53.10441871135451],[-126.83875191233042,53.104589342776755],[-126.83892127913228,53.10473268720564],[-126.83917753574856,53.10482275042934],[-126.83931722588802,53.10497918638896],[-126.83943376772962,53.105148121175596],[-126.83953724022084,53.10531770443259],[-126.83963696777832,53.105487869963405],[-126.83972832909845,53.10566034482123],[-126.839802874938,53.105834050608266],[-126.83984289456521,53.106011927911524],[-126.83982601019518,53.10619861779619],[-126.8398628722191,53.10635914505766],[-126.8401754078391,53.106361406244986],[-126.84047484691936,53.1063637597211],[-126.84077172777772,53.10637902101781],[-126.8410702500553,53.10638193528206],[-126.84136951143104,53.106375323651086],[-126.84166785200556,53.106369838331325],[-126.84196637445807,53.106372759295475],[-126.84226419869177,53.1063880011652],[-126.84256168928408,53.10638644592507],[-126.84285518542106,53.10641964537358],[-126.84314693764347,53.10645846806652],[-126.84343947340025,53.106489996631325],[-126.84373862366888,53.106477777230644],[-126.84403628205725,53.10648461645752],[-126.8443235739394,53.10653466427619],[-126.84460543242027,53.10659372329492],[-126.84488093667079,53.106662902719506],[-126.84515097813055,53.106738852608046],[-126.84543012566584,53.10680296688321],[-126.84568365437063,53.10689527662288],[-126.84594267031349,53.106981943986646],[-126.8461436873104,53.107115522776034],[-126.84641637629404,53.10718360724519],[-126.84666526925145,53.107278189110666],[-126.84688560698237,53.10739482056014],[-126.84708940569699,53.10752726626828],[-126.8473548311856,53.1072317894244],[-126.84747823832522,53.10703985267551],[-126.84767626981252,53.10693030770135],[-126.84789954347306,53.10691301927671],[-126.84827300809773,53.106967486227866],[-126.84859022127019,53.107016188500204],[-126.84886307939064,53.10699910705094],[-126.84916019230708,53.10697848023855],[-126.84945826669876,53.106959531022156],[-126.8497559182518,53.10696580015073],[-126.85005043440005,53.10700233600599],[-126.85031163802324,53.10710354481928],[-126.85052991927748,53.10721122919345],[-126.85078899566646,53.10729956186356],[-126.85107700428385,53.10733839200459],[-126.85135884367352,53.107395749884596],[-126.85164792015446,53.10744072929899],[-126.85194396328714,53.107459885967266],[-126.85227560849378,53.10743452041688],[-126.85253208305467,53.10748702054261],[-126.85283145178413,53.107485417004646],[-126.85313077557369,53.10748158096713],[-126.85342771752482,53.10749848641005],[-126.85372461080793,53.107513706205715],[-126.85401643685168,53.10755529844801],[-126.8542654280638,53.10765379000532],[-126.85451074601686,53.10775566017333],[-126.85475607653534,53.10785809448363],[-126.85499953723459,53.1079605418108],[-126.85518112653249,53.10810377476401],[-126.8553987685928,53.108224901015916],[-126.85564516004602,53.10833292838674],[-126.85570090171531,53.108359973056416],[-126.85573816315255,53.108397800844536],[-126.85580336197238,53.108429823807796],[-126.85594889426473,53.10845454203075],[-126.85613876926732,53.108544493552046],[-126.8564250933901,53.1085452164655],[-126.8567231225848,53.10852288778778],[-126.85702161219332,53.10852408583238],[-126.8573201282076,53.108525847671466],[-126.85761422967083,53.10849513688133],[-126.85790235854324,53.10844598468061],[-126.85819655192803,53.10846570391523],[-126.85847023092767,53.108535429835676],[-126.85875749709028,53.10858264612419],[-126.85904482056637,53.10863265810777],[-126.85932474016583,53.10868664950021],[-126.85958571511857,53.10877495818102],[-126.85986179189896,53.10882392944984],[-126.86015672762244,53.108880050694964],[-126.86045116377937,53.108911523506634],[-126.86074468011698,53.108944122800075],[-126.86103993508202,53.10896942983635],[-126.86133523225632,53.10899753263654],[-126.86163223364566,53.10901665815657],[-126.86192394891496,53.10905262920575],[-126.86221995088009,53.109068954769036],[-126.8625192622015,53.10906397461517],[-126.86281774794567,53.10906403756703],[-126.86311597908862,53.10905233172647],[-126.86340748648898,53.10903171907567],[-126.863701560848,53.10904525820313],[-126.86398147298178,53.10905217700611],[-126.86430451862252,53.10906438238835],[-126.86459091495192,53.10906844657204],[-126.86489128540256,53.10902366986057],[-126.86517154801429,53.10895607343629],[-126.86540702062969,53.10884902141099],[-126.86552902875268,53.1086839680736],[-126.86569198788915,53.108554480215446],[-126.86591791874663,53.10843853286066],[-126.86617256601349,53.108354304906776],[-126.86640411907165,53.10823888013949],[-126.86662341363102,53.108118497957435],[-126.8667803303199,53.107968318763405],[-126.86704235400553,53.10787899695005],[-126.86730271190532,53.10779977142086],[-126.86760560929493,53.10774152294571],[-126.86800725404673,53.10761699391248],[-126.86806600121969,53.10742495401868],[-126.86803867428266,53.10732375230077],[-126.86807078122428,53.10715543885834],[-126.8681204709676,53.106978032125475],[-126.86813272176397,53.10679921503873],[-126.8681655723564,53.10662193190776],[-126.86815627687673,53.1064421614616],[-126.86812641267342,53.106263097827906],[-126.86806481194697,53.106087628780585],[-126.86803963313872,53.10590853068747],[-126.86804436244886,53.10572864821451],[-126.86805474249446,53.105549853711004],[-126.8680678981726,53.105369909322114],[-126.86807263886571,53.10519059145004],[-126.86805120229826,53.10501146579108],[-126.86809246683224,53.104833564929166],[-126.86811126919869,53.104655264253125],[-126.86807767612981,53.10447678359959],[-126.86798529362903,53.104306022481595],[-126.86785196358491,53.10414509081728],[-126.86770468742492,53.10398873448446],[-126.86752492929651,53.10384550681672],[-126.86740569482859,53.103687832740555],[-126.86728956135829,53.10354413780295],[-126.8669961344425,53.10342358893404],[-126.86674990655115,53.10332287158264],[-126.86697859379066,53.1032063366792],[-126.86715625660608,53.10306441264526],[-126.86735555068347,53.10292848797988],[-126.86754544376451,53.10279039091625],[-126.86775895340978,53.10266388113937],[-126.86797058323062,53.10253627320554],[-126.8681548257795,53.10239653133374],[-126.86831825958582,53.10224574577306],[-126.86846659997249,53.102088903514364],[-126.86862420111278,53.101927510907664],[-126.86870308120022,53.101759408777724],[-126.86880062211996,53.10158893733438],[-126.86894050977257,53.10143103600107],[-126.86913219278489,53.10128956146005],[-126.86931708184709,53.10113581081366],[-126.86942702342763,53.10097756433879],[-126.86956691029766,53.10081910640439],[-126.86970206579429,53.10065843308762],[-126.86983439537639,53.10049722461166],[-126.869962031786,53.10033492998624],[-126.87009061002927,53.10017262826766],[-126.87022765531025,53.10001306983674],[-126.87023954249113,53.10000009181978],[-126.87036471096779,53.09985406692793],[-126.87045566293287,53.099682512886496],[-126.87052411277418,53.099507771883346],[-126.87056160874293,53.09932933250313],[-126.87059442038586,53.0991509275951],[-126.87062536451892,53.09897197167051],[-126.8706562936101,53.09879302479269],[-126.87069004721565,53.09861461285898],[-126.8707247317127,53.09843562929342],[-126.87075848474574,53.09825721730413],[-126.87078848495409,53.098078277154805],[-126.87080912053263,53.097898841232244],[-126.87083163789801,53.0977199472014],[-126.87086913099152,53.097541507542985],[-126.87092255042285,53.0973646357613],[-126.87099380431839,53.09719042933214],[-126.87107912842048,53.097017795441715],[-126.87114935787793,53.09683967907046],[-126.87122818404946,53.09666989871974],[-126.87141764504369,53.096512748902065],[-126.87160644163694,53.09636848521699],[-126.87174832191695,53.09621785309298],[-126.87192211780602,53.09607202320255],[-126.87215147560292,53.095944831960054],[-126.87233629239839,53.0957899558806],[-126.87248225821281,53.0956555357823],[-126.87266536349982,53.095508515463365],[-126.87289592387377,53.09539419538725],[-126.8731226812055,53.09527767085293],[-126.87334468782764,53.09515725464902],[-126.87356384886344,53.09503461799109],[-126.87379815321002,53.094921388939284],[-126.87397602396193,53.0947923336052],[-126.87414473018471,53.09462748890863],[-126.87431178424957,53.0944733056596],[-126.87438594445106,53.0943052336777],[-126.87454141577635,53.09413376310135],[-126.87467111650508,53.09398265253044],[-126.87478460201133,53.0938159744411],[-126.87487835947654,53.093645524906265],[-126.87496177530917,53.09347290182351],[-126.87503958290316,53.09329976440476],[-126.87511359962078,53.09312497867531],[-126.87520111596972,53.092969132917254],[-126.87525042403301,53.09277548106689],[-126.87531226605172,53.09259965582599],[-126.87537784836826,53.09242381178903],[-126.8754528277419,53.09225013017216],[-126.87553813540987,53.09207805723948],[-126.87563093171771,53.09190704926319],[-126.8757340329726,53.091736529571925],[-126.8758221710146,53.09156611170447],[-126.87588496317697,53.091390843717285],[-126.87593273149844,53.091213445981495],[-126.8759730102331,53.091034983195456],[-126.87599924284217,53.09085606871885],[-126.87603296765204,53.090677654456634],[-126.87607511220226,53.09049973352524],[-126.87613411500556,53.09032225231337],[-126.87616223985411,53.09014444422028],[-126.87613889155723,53.089965332480354],[-126.87609218496566,53.089786949685426],[-126.87600727476746,53.0896150174829],[-126.87592048011516,53.08944309917654],[-126.87581600807484,53.08927523815841],[-126.87579172245508,53.08909556847559],[-126.87577773057563,53.088915831442456],[-126.87576280773501,53.088736657073426],[-126.87572078361379,53.088558804072036],[-126.87561896511082,53.08838307046798],[-126.8756180847302,53.088204912503265],[-126.87563586276607,53.088023819405926],[-126.87570424582569,53.087848509696656],[-126.8758271539265,53.08768624216747],[-126.87598386985687,53.087531567579305],[-126.8761960953238,53.08739272438068],[-126.8763530438166,53.08724869707237],[-126.87656266247483,53.087119957298505],[-126.8767590655243,53.08698460096749],[-126.87694127198823,53.086841496963466],[-126.87713766907268,53.086706695791634],[-126.87734921422548,53.086580190273615],[-126.87754851408677,53.086449848957834],[-126.87780157675057,53.08634207433031],[-126.87798957278781,53.086207898828285],[-126.87810678770713,53.08604230938132],[-126.87821831858865,53.085873956228376],[-126.87836941250457,53.08571876420498],[-126.87851379016298,53.085555769204376],[-126.87866298614347,53.08544484747597],[-126.8790073231159,53.08536441363937],[-126.87933758133575,53.08532665489442],[-126.87961112208258,53.08530501392052],[-126.87987661624136,53.085390994542855],[-126.88015412295024,53.08546960609931],[-126.88045734521761,53.08557100081379],[-126.88072694909799,53.08553985758177],[-126.88099741352566,53.085459403808564],[-126.8812071256362,53.08533625746858],[-126.88146646818323,53.08517072492367],[-126.88169166567683,53.08511750004938],[-126.88196977695034,53.085045951211285],[-126.88213511039406,53.084992051796725],[-126.88219282224317,53.08493391783956],[-126.88240461811557,53.08477601715014],[-126.8826303085899,53.084702061352665],[-126.88290081071062,53.08462384390612],[-126.8831617486624,53.084536168289006],[-126.88342461731371,53.08445072768207],[-126.88369513632952,53.08437418457766],[-126.88395558411595,53.08426242380452],[-126.8840574856506,53.08421628415762],[-126.88413835026142,53.0841478821676],[-126.88439634530852,53.084053511531046],[-126.88464028364845,53.083958116067855],[-126.88482248567274,53.08381668468809],[-126.88498289771161,53.083661414006016],[-126.88524506027609,53.08358773567614],[-126.88553866447893,53.08354239029291],[-126.88582757753171,53.08349596777482],[-126.8862844511864,53.08334294529921],[-126.88653127322583,53.08329571624215],[-126.8868438671656,53.08312977186016],[-126.88706551817074,53.08308664800377],[-126.88732783916817,53.082976541848275],[-126.88758673293526,53.08297011501088],[-126.88789258185997,53.082973984322116],[-126.88818054438529,53.08301607660879],[-126.88847921104147,53.082989179140235],[-126.88873737719217,53.082903761849614],[-126.88896964552056,53.08278771958652],[-126.8892768138236,53.0827204167584],[-126.88953215394915,53.082722976692885],[-126.8898541964592,53.08274072122935],[-126.89015019012446,53.08276481963001],[-126.89044014971002,53.08281362356515],[-126.89071862253296,53.08275997969753],[-126.89104555532772,53.082699246465616],[-126.89128759246456,53.082602730834545],[-126.89154431404596,53.08244896539714],[-126.89174048525388,53.08243964111409],[-126.89203804143618,53.082449155989444],[-126.89233411690023,53.082477174665804],[-126.89262930938249,53.08250800510214],[-126.89292363371,53.082541638229216],[-126.89321346816506,53.08258370412756],[-126.89349517639562,53.08263984198857],[-126.89376513693773,53.08271568195971],[-126.89425189764414,53.08287279142712],[-126.89437655165978,53.082709369749594],[-126.89446048085622,53.082653827967285],[-126.89462828530827,53.08262959085976],[-126.89492719644157,53.08265925791108],[-126.89521249358616,53.08270808549039],[-126.89550821434764,53.08267446928737],[-126.89561139355605,53.082645673697584],[-126.89573403220561,53.08256350039824],[-126.89591236878147,53.08241816338224],[-126.89610207704848,53.082280018847015],[-126.89632293695735,53.08215620466403],[-126.89656760243798,53.082052379107026],[-126.89684119089986,53.08198979343885],[-126.8971369171167,53.08195672884393],[-126.89743653372686,53.081931486695325],[-126.89773250815749,53.08191018886689],[-126.8980294689399,53.08189167966471],[-126.89832134418347,53.08185416816754],[-126.8986092566407,53.081805471721175],[-126.89890707270322,53.08178360114203],[-126.89918824209884,53.08172599025763],[-126.89945466993672,53.08163431893136],[-126.89971829263632,53.081587489971746],[-126.90001864505686,53.08159640763782],[-126.90031064430475,53.08165301565244],[-126.90058247156355,53.08172769640396],[-126.9008606345566,53.081792808110734],[-126.90114690774895,53.0818438550305],[-126.90143410002808,53.08189376474287],[-126.90171862679709,53.08194986156083],[-126.9019951005638,53.082067648914304],[-126.90223963448493,53.0821341346807],[-126.90239347817845,53.082288714844715],[-126.90245312219078,53.08232356077212],[-126.9026331435519,53.08238997374538],[-126.9029194824388,53.08244381276731],[-126.90324377125634,53.082522577613126],[-126.90361395746989,53.08256176265835],[-126.90371756767887,53.08264052854573],[-126.90382869002407,53.082677221084055],[-126.90408466452605,53.08275370039987],[-126.90425827476808,53.08291428537923],[-126.90443808917945,53.08305914400256],[-126.9046215876921,53.083200603555866],[-126.90480416908997,53.08334319935026],[-126.90495804731788,53.083499452237234],[-126.90518568639028,53.08360584501823],[-126.90544122878114,53.08370585607212],[-126.90567752845583,53.08382394272927],[-126.90586530701816,53.08394688310647],[-126.9061534168182,53.084038799143464],[-126.9063702250509,53.08416319240032],[-126.90660714601424,53.08426670541909],[-126.90687188085838,53.08435824329125],[-126.9071191561575,53.084464472681475],[-126.90732559336408,53.08458502641033],[-126.90745116035835,53.08472861172741],[-126.90766670558084,53.08488103477621],[-126.90784744636979,53.08502419579313],[-126.9080365238558,53.085163930841816],[-126.90825238898874,53.085287772112096],[-126.90852146505951,53.08536357641802],[-126.90880242853862,53.085426406955044],[-126.90907518652342,53.08549938482052],[-126.90933060536389,53.085592665224404],[-126.90955201439148,53.08571309984971],[-126.90977629735285,53.085836317763956],[-126.90998905284421,53.08585876649322],[-126.91023781904481,53.08577225402364],[-126.91054175663471,53.08568530689197],[-126.91080579347984,53.085613242539615],[-126.911081446437,53.08555957244698],[-126.91123910401276,53.08558524960484],[-126.91133092657272,53.08559350572246],[-126.91141466376361,53.085617511701784],[-126.91154329604917,53.08564117126846],[-126.91179152114793,53.08570368255358],[-126.91189853007003,53.08576617172255],[-126.91208126069279,53.08578324571536],[-126.9121997095294,53.0857688848123],[-126.91250088922013,53.08577160609738],[-126.91279508521129,53.08575364608776],[-126.91307131424017,53.08568371457475],[-126.91335240589403,53.085622153353796],[-126.91364518745851,53.085582356087514],[-126.91397097845442,53.08555518448806],[-126.91421066242104,53.085481615556475],[-126.9143927240577,53.08533789800448],[-126.9145824093455,53.08520084438515],[-126.91480613961588,53.08508145550801],[-126.91502034957247,53.08495429612998],[-126.91508720593438,53.08488934272864],[-126.91514022589227,53.08478920388105],[-126.91507655220242,53.08452524923385],[-126.9151391447696,53.084349404133775],[-126.91519143528203,53.08417250927361],[-126.91520710020605,53.08398806325544],[-126.9152435003776,53.083811856173384],[-126.91543988535531,53.08368202812679],[-126.91571701497102,53.08361097165179],[-126.91601277120064,53.08358010066849],[-126.91625456310193,53.083474580069435],[-126.91649100745524,53.083381982201175],[-126.91667725027821,53.08321581753596],[-126.91685643308395,53.08306987711242],[-126.91712054496513,53.08304541634799],[-126.91740855012424,53.08300227601632],[-126.91774695967493,53.082954270240975],[-126.91802594771677,53.08296946668802],[-126.91825080877146,53.08290329247623],[-126.91857097591176,53.082877272222454],[-126.91886600389897,53.08285592879248],[-126.91916270240246,53.08286818793436],[-126.91945975043461,53.082897251766546],[-126.919754871067,53.08292296822833],[-126.9200500134561,53.082950360119256],[-126.92034603796571,53.082974947526786],[-126.92064290796283,53.082995045431225],[-126.9209363154388,53.08302861610793],[-126.92122622984411,53.08307286294497],[-126.92150349091357,53.08313793334704],[-126.92177081680025,53.08321876823137],[-126.92203540713585,53.083302420741475],[-126.92229541393579,53.08339059958392],[-126.92255817025624,53.083476506336304],[-126.92283003626828,53.0835505801256],[-126.92310186388633,53.08362353304979],[-126.9233655659141,53.083709439594706],[-126.92363739813372,53.083781826505245],[-126.92402221712331,53.08389031610578],[-126.92431310464598,53.08393622414096],[-126.92460380951874,53.083973724330995],[-126.92490022431389,53.083972524822975],[-126.9251979808175,53.08394778263785],[-126.92549390645969,53.08392417458535],[-126.92579089385617,53.08390672494476],[-126.92609087391989,53.08389820648842],[-126.9263858342371,53.08391606390451],[-126.92667751743933,53.0839558013884],[-126.92696570882508,53.08400620624195],[-126.92724390274925,53.08407013539196],[-126.92751941979719,53.08414024341849],[-126.92781289245765,53.08417548188871],[-126.92810909747665,53.08416531163172],[-126.92840692963476,53.084143357643974],[-126.92870472218877,53.084120291633425],[-126.92899519917019,53.08414714215346],[-126.92928247671249,53.08419866911287],[-126.92956885202095,53.08425132302117],[-126.92986052813072,53.084290487982436],[-126.93014772159869,53.08433808712212],[-126.93042509331802,53.084406497477495],[-126.93069244420131,53.08448731211726],[-126.93093051632499,53.084597491021874],[-126.93114480923035,53.08473195305354],[-126.93138520148793,53.0848202576551],[-126.93168428419763,53.084812861627356],[-126.93198259118607,53.08477016931106],[-126.93226071632974,53.084702418734544],[-126.93254645342913,53.08464133964913],[-126.93283304229486,53.08461834271505],[-126.9331141082471,53.08468504129271],[-126.93341321416182,53.08467875227598],[-126.93371193777531,53.084655101550446],[-126.9338760371295,53.084633078989185],[-126.9339806727549,53.08458574476495],[-126.93422626835927,53.08440059833124],[-126.9343934703558,53.084434568828236],[-126.9346549213476,53.084543999619555],[-126.93493170499272,53.084628091747916],[-126.9352245668499,53.084635858854476],[-126.93552810732456,53.08461832391799],[-126.9358213153165,53.08464177444785],[-126.93607877162071,53.084739463541204],[-126.93635817392466,53.08477255124726],[-126.93666072296574,53.08475278017185],[-126.93696117729566,53.08476552973119],[-126.93711816670758,53.08476035826914],[-126.93725339922457,53.08474359793936],[-126.93753417710406,53.08466965531522],[-126.93781786339002,53.084685332632795],[-126.9381016509092,53.0847475156216],[-126.9383882514756,53.08480966662681],[-126.93850735806119,53.084825528780044],[-126.93868041089004,53.084827515678384],[-126.93898105217757,53.08480607747598],[-126.93927516871501,53.08482783589981],[-126.93956689488022,53.08486865292953],[-126.93986121077444,53.08489937268695],[-126.94015381846637,53.08493738437757],[-126.94051386131721,53.08502192152327],[-126.94053373615975,53.08520160655749],[-126.94053585403773,53.08538144188938],[-126.94051646202819,53.08556088367217],[-126.94047269525745,53.08573827835996],[-126.94041020567913,53.085914136729954],[-126.94035332317706,53.086090515175414],[-126.9403217551437,53.086269497958625],[-126.94031268772335,53.086408517794275],[-126.94027933907759,53.08646536626306],[-126.94024852983833,53.08650987747436],[-126.94023045567768,53.0866226316524],[-126.94020071941645,53.086799914465075],[-126.94013187337683,53.08698479646662],[-126.94001564191066,53.08714147701043],[-126.93991184562381,53.087310384496945],[-126.93982211623342,53.08748142107286],[-126.93973896106101,53.08765408160732],[-126.93964079750579,53.087824064534146],[-126.9395322782038,53.087991332820515],[-126.93934215925796,53.08827465681335],[-126.93938017005266,53.08834439313313],[-126.93948342697294,53.08844609751078],[-126.93961363579396,53.08858233331283],[-126.93988524703006,53.08876898036982],[-126.94013570555967,53.08892946679784],[-126.94042827811121,53.08913331874406],[-126.94066553804609,53.08928887112694],[-126.94093835740607,53.08944525145849],[-126.94105417676873,53.08964883286897],[-126.94134159088226,53.08995693419051],[-126.94159777475267,53.090164434732436],[-126.94169479734684,53.090616361132504],[-126.94167817109752,53.09083667589492],[-126.94185951643739,53.090916474477545],[-126.94217695328885,53.0908489524048],[-126.94246094670036,53.09079233688602],[-126.94274596921784,53.090739638850955],[-126.94303687573262,53.09069921914304],[-126.94334063650643,53.090648055414945],[-126.94363374331785,53.09066419963638],[-126.94376614690438,53.09068835895754],[-126.94401167611646,53.09075194506025],[-126.94411359067811,53.090792590962465],[-126.9443801028365,53.090875066865095],[-126.94446973173793,53.090909643174484],[-126.94462485534413,53.09102998670439],[-126.94482515477476,53.09116228584693],[-126.94505776527663,53.091275841758815],[-126.9453077871989,53.091373570321785],[-126.94556791684455,53.091462817885215],[-126.9458012267692,53.09152370119795],[-126.94602114133549,53.091487203994745],[-126.9461220097125,53.091480793717786],[-126.94641675111714,53.09152829322104],[-126.94670761521054,53.09156966454754],[-126.94700800627828,53.09161880261972],[-126.9471400000144,53.09166592813746],[-126.94724414040341,53.09172224113331],[-126.94745282797665,53.09176931626016],[-126.94781318227746,53.09182300948203],[-126.9481021670666,53.091863836679906],[-126.94837208977502,53.091805078782635],[-126.94858809084496,53.09167728835027],[-126.94877661590468,53.09153346573648],[-126.9490061571892,53.09142572661861],[-126.9493222028999,53.09138060737283],[-126.94948933315733,53.09132604321648],[-126.94940611753786,53.09111829053708],[-126.94937405084576,53.090939261018924],[-126.94937096758441,53.09075943386836],[-126.94938842921546,53.090578885846924],[-126.94944812814508,53.09040472171108],[-126.94969096634077,53.09030640340801],[-126.94998161227977,53.09025476315879],[-126.9502523644969,53.0901915209239],[-126.95044900943188,53.090035304123255],[-126.9507060880973,53.0899469540459],[-126.95097653557546,53.089870257054685],[-126.95124985544682,53.08979690691189],[-126.95152122858781,53.08972020120003],[-126.95178780480131,53.0896384955171],[-126.95205153192276,53.0895545710835],[-126.95230856897804,53.08946397668822],[-126.95254552056322,53.08935393855623],[-126.95282066668118,53.08927888468613],[-126.95307973186156,53.08919611604502],[-126.9532663981969,53.08905397718447],[-126.95337955928059,53.08888778803381],[-126.95343075580263,53.08871032852733],[-126.9534753611297,53.088531236860725],[-126.95356032973758,53.08835910746862],[-126.95365564107023,53.088189135613284],[-126.95375470452161,53.08801969812821],[-126.95385657958667,53.08785022887588],[-126.95396127687599,53.087681866239535],[-126.95406878345942,53.08751403659562],[-126.95417817421442,53.08734619161548],[-126.9542903869155,53.087179444268],[-126.95440449399464,53.08701380203744],[-126.95452422280943,53.086848670050834],[-126.95465053896665,53.08668573475849],[-126.95478438694887,53.08652441478631],[-126.95492389197337,53.086365845809276],[-126.95507466893004,53.08620887083676],[-126.95525560223435,53.08606285733413],[-126.95548958217002,53.08598812971367],[-126.95578817217311,53.08591680538662],[-126.95605471626047,53.08583508990133],[-126.9563125992125,53.08574223840973],[-126.95654861717038,53.0856333109074],[-126.95675316537114,53.085497753521615],[-126.95694725551287,53.085354992407524],[-126.95716247246918,53.0852361471464],[-126.95742660429093,53.08517182103011],[-126.95772817858371,53.08515088330746],[-126.95803355828261,53.08513216402117],[-126.95832929426606,53.08510118714591],[-126.95862210594254,53.08506463946502],[-126.95889458057356,53.08499687172822],[-126.95915354450277,53.08491129318853],[-126.95942485951768,53.08483401342251],[-126.95971840783822,53.084788483643436],[-126.96001196613184,53.08474408256312],[-126.96029118952406,53.08468578588826],[-126.96054165258165,53.08459634693432],[-126.96075480802719,53.08446966786642],[-126.9609593243786,53.08433353845574],[-126.96118770116618,53.08421906979485],[-126.96145136318798,53.084134559471075],[-126.96172934825177,53.084062822784524],[-126.96200352676917,53.0839888753241],[-126.9622548610886,53.08389662864832],[-126.96241120948571,53.083740154218454],[-126.96241187491627,53.0835631015544],[-126.96227666120855,53.083373709031875],[-126.9621977991449,53.0831950629439],[-126.96225887090438,53.083043290963964],[-126.96253230691661,53.082936296398884],[-126.96277776760398,53.08283344661442],[-126.963036800599,53.08271031571991],[-126.9632420899077,53.08260891293583],[-126.9635206202417,53.082520914918064],[-126.96378541332956,53.08244536334603],[-126.96404989756351,53.0823569228441],[-126.96429625530506,53.08225237718119],[-126.96445314026293,53.082119436002195],[-126.96457369261405,53.08195204511139],[-126.9647131356829,53.081792352659896],[-126.96489601420988,53.081651910489896],[-126.96510343047964,53.081520787794695],[-126.96532506564373,53.081398521931646],[-126.96555913888685,53.081289035870945],[-126.96581413782313,53.081194501263596],[-126.96606912086871,53.08109997518572],[-126.96631733611079,53.080995409943796],[-126.96656640323897,53.080886919734404],[-126.96677588257353,53.080765306293166],[-126.96684124613739,53.08059725288352],[-126.96680712904272,53.08041319629105],[-126.96674884612172,53.08023550496635],[-126.9667766226237,53.08005935046898],[-126.96685399258602,53.079884475386386],[-126.96682936516703,53.07970650860131],[-126.96677198496603,53.079527689279836],[-126.96675860186289,53.079350750983934],[-126.96684699970787,53.079208837496395],[-126.96685785586966,53.0789874343442],[-126.96689219304524,53.07881234654394],[-126.96693180655126,53.07874535369376],[-126.96709628435279,53.07870030560996],[-126.96738981813701,53.07865699742989],[-126.96768999221226,53.07861756055036],[-126.96797865379149,53.078565335318025],[-126.96825771037729,53.078501973568],[-126.96853476876339,53.0784330337127],[-126.96880701873683,53.0783579650865],[-126.96906969974121,53.07827400986293],[-126.96930747473748,53.07816336503607],[-126.96954238532922,53.078050502108084],[-126.96980711191961,53.07797437231563],[-126.97009109968705,53.0779221712509],[-126.97038369789331,53.07787887219101],[-126.97068011148359,53.077838893757985],[-126.97095731547141,53.07777667027761],[-126.97123245652122,53.07770605443252],[-126.97149605804836,53.07762152138064],[-126.97176253268468,53.07754033473168],[-126.97204735271752,53.0774842045898],[-126.97233703328854,53.07743587765359],[-126.97248228551904,53.07740946492641],[-126.97260172533979,53.07735862122521],[-126.97273497009664,53.07721633372309],[-126.97267992232426,53.07697642270459],[-126.97273190796531,53.07683816591274],[-126.97288752154469,53.07669289706276],[-126.97303351622031,53.07653593686844],[-126.97333213149368,53.07638835983822],[-126.97364693197194,53.07633534036338],[-126.97390239422747,53.07630409990644],[-126.97412097078063,53.07621377342569],[-126.97451140078772,53.07619710638535],[-126.97478185363053,53.07624866175334],[-126.9750719430909,53.07630061917853],[-126.97528374513072,53.07636274256196],[-126.9754776246133,53.07637795006812],[-126.9757324419423,53.07635903712825],[-126.97587138377298,53.07630241718011],[-126.9759900307803,53.0762577351084],[-126.97607231811904,53.07617693964567],[-126.9762516029015,53.07608581327571],[-126.97639188416179,53.0760062146239],[-126.97658776165461,53.07598610165926],[-126.97680108285802,53.07595240636494],[-126.97706336055359,53.07589252389844],[-126.97732656502279,53.0757917372001],[-126.9775880019766,53.07569544676937],[-126.97786472976648,53.07561359645235],[-126.97809029466694,53.07550247874791],[-126.97830522153744,53.07537575188425],[-126.97855165887358,53.07527790712656],[-126.97882286390335,53.07520001774091],[-126.9790940050867,53.07516023629693],[-126.97942153046435,53.075132303934154],[-126.97969188557839,53.07509868623129],[-126.98000673571076,53.075089351110975],[-126.9802856398119,53.07506126392264],[-126.9805825166394,53.075042556130235],[-126.98089711995111,53.07502257086187],[-126.98113883460547,53.074963414738676],[-126.98139213182567,53.07483916929068],[-126.98161467920741,53.074719105270596],[-126.98182392936461,53.0745907426417],[-126.98202086540584,53.0744551938617],[-126.98220834924818,53.07431525004573],[-126.98238354497026,53.07416924053354],[-126.98252291927726,53.07401120252003],[-126.98262085496341,53.07383949753375],[-126.98276876420118,53.07368643519741],[-126.9829675755529,53.07355143386949],[-126.9831838206535,53.07344261582645],[-126.98340691928429,53.073306855755064],[-126.98363690258721,53.07318616103184],[-126.9837840603064,53.0730409385567],[-126.98396935084178,53.0728875632349],[-126.98405238583742,53.072719342703024],[-126.98402952095746,53.072539687164344],[-126.98400018574262,53.072362882436394],[-126.98398934774751,53.07217807963952],[-126.98394969792642,53.07200024023101],[-126.98376837196898,53.07171936841559],[-126.98398839636363,53.0716127583414],[-126.9842307870127,53.071503164535294],[-126.98449536839291,53.07142364050037],[-126.9847631073543,53.07139899721512],[-126.98510632042895,53.07140454387269],[-126.9854123990725,53.07138069989877],[-126.98568935380902,53.071350374792736],[-126.98588072481319,53.07129835213218],[-126.98608995810838,53.071170537387566],[-126.98645406894451,53.07106945192454],[-126.98673695044049,53.07109341777992],[-126.98702407929989,53.07113920297666],[-126.98731243772575,53.071197303422835],[-126.98759811585494,53.071261028409396],[-126.98787821289928,53.07132591995552],[-126.98814292283234,53.07141279508691],[-126.98840758344507,53.07149686414622],[-126.98869565698698,53.071543193202174],[-126.98899921240147,53.07153113147143],[-126.98924285644722,53.07143608412398],[-126.98943299693174,53.071291059008814],[-126.9895610018185,53.07112806034521],[-126.98963828771296,53.07095428980356],[-126.98964066755333,53.070776099819135],[-126.98963504923799,53.070575000737726],[-126.98966682888127,53.07041449343445],[-126.98965889582955,53.070234713440016],[-126.98962105404382,53.070055175071055],[-126.98958512115998,53.069877306012636],[-126.98961269153814,53.06969666371811],[-126.9896804694986,53.06951680504746],[-126.9898180647657,53.069363819592674],[-126.99005559003827,53.06924753082965],[-126.9903034937613,53.06913507205216],[-126.99044968569704,53.0689904134912],[-126.9905083240483,53.06881903962096],[-126.99053022982322,53.06863620333554],[-126.990546475448,53.06845117336172],[-126.99059181696383,53.06827150216583],[-126.99065676601472,53.06809054589317],[-126.9907688235584,53.06792543813186],[-126.99095641967526,53.06779275769588],[-126.99118647126014,53.067676529163464],[-126.99143448071938,53.06756911396316],[-126.99167882913626,53.06746509067338],[-126.99192891481918,53.06736662151955],[-126.99218473782635,53.06727370646634],[-126.99244151302194,53.067181903412234],[-126.9926973207916,53.067088431545635],[-126.99295217390647,53.06699383760296],[-126.99321084112074,53.066903137495174],[-126.99347629280093,53.06682246486215],[-126.99375235932183,53.06675571390641],[-126.99403995283424,53.066702867914834],[-126.99433047485357,53.06665503464169],[-126.99462005610138,53.06660665276745],[-126.9949000528884,53.06654883055503],[-126.99515513434426,53.06646431497052],[-126.99538457404789,53.06632343061989],[-126.9955326476236,53.06618043478509],[-126.99570777694758,53.06603496052542],[-126.99588383235533,53.06588948713875],[-126.99606744162615,53.0657473025035],[-126.99624899665133,53.06559729985673],[-126.99644292852884,53.06545726865309],[-126.99667231315155,53.065353925727216],[-126.9969457117332,53.0652939041089],[-126.99724496837965,53.06526000140826],[-126.99754911374026,53.06523558599103],[-126.99784572956331,53.065208983301055],[-126.99814467540321,53.06520197465869],[-126.99843087434004,53.06524942524853],[-126.99871955526952,53.06528284252741],[-126.99901819803041,53.065262943180194],[-126.99931779582181,53.0652435997621],[-126.99960960849764,53.06525121521079],[-126.99986539467713,53.06535662474914],[-127.00000125343196,53.065370041835536],[-127.00043683648254,53.065410054904184],[-127.00073374258521,53.06539577775936],[-127.00103750159114,53.06539432387725],[-127.00128992750366,53.06547566205427],[-127.00141250689991,53.0656399115775],[-127.0014382396636,53.065818984927176],[-127.00149566624175,53.06599498357138],[-127.00159038490331,53.06616619257732],[-127.0017759486667,53.066305810712656],[-127.0020278116269,53.066402284306804],[-127.00231581251522,53.06644633958516],[-127.00261176935473,53.06647072109359],[-127.00290341880465,53.066510270647434],[-127.0031743872939,53.06658472393072],[-127.00340791973329,53.06669703832242],[-127.00361291324138,53.06682752393893],[-127.00377450752235,53.0669802337145],[-127.00380951551406,53.06715642175462],[-127.00377544613121,53.067336002816745],[-127.00379760899655,53.067522394110696],[-127.00405955877082,53.06757059309138],[-127.00435919639239,53.06759213307567],[-127.00465086675395,53.067632798762176],[-127.00491183782957,53.06771853886058],[-127.00512052618387,53.06784674928252],[-127.00530243700317,53.067989198903724],[-127.00548806245776,53.068129931278335],[-127.00567368736179,53.06827121916856],[-127.0057851312315,53.06843723529869],[-127.00593834707328,53.06859113401434],[-127.00610083022762,53.06874158290242],[-127.00627627967312,53.06888688299994],[-127.00644804500232,53.06903445537231],[-127.00656971410632,53.06919814245355],[-127.00669789246396,53.06936065334808],[-127.00682885657919,53.069522019777715],[-127.00698116615834,53.06967648063922],[-127.00716123499082,53.06981949887594],[-127.00722620959905,53.069996559746215],[-127.00740712951907,53.070135643862415],[-127.00763797607809,53.07025133454438],[-127.00786972445076,53.070365896512],[-127.00807840814363,53.07049298116913],[-127.00824184851307,53.070643427869065],[-127.00839416551553,53.07079844262692],[-127.00853536278048,53.0709569228116],[-127.0086608640135,53.07112393666279],[-127.00880297712084,53.07128184392695],[-127.00900873661494,53.07140390486329],[-127.00927262962145,53.07149353693042],[-127.0095346678326,53.07158374903392],[-127.00979296824312,53.0716739835525],[-127.01005943603137,53.07175350673074],[-127.01029667382451,53.07186241416861],[-127.0105192265058,53.07198209667348],[-127.01075096542,53.072095532532224],[-127.01098913560901,53.07220386584322],[-127.01124471316979,53.072296926427825],[-127.01153011407712,53.07234714939075],[-127.0118261440928,53.07237262806794],[-127.01212217446404,53.07239810600272],[-127.0124031100423,53.07245732969478],[-127.01268854014359,53.07250867019542],[-127.0129843847212,53.07252630357968],[-127.01328008806975,53.07249855881179],[-127.01358330693493,53.07247298098331],[-127.01379269254944,53.072588843896796],[-127.01389768271494,53.07275714886353],[-127.01401199395642,53.072924253136954],[-127.01421980673281,53.073053019837296],[-127.01450072423603,53.07311055339791],[-127.01479241545405,53.07315007357024],[-127.0150873404139,53.07312904546167],[-127.01542830336574,53.07307849496716],[-127.01542981838797,53.07314178970225],[-127.01518091956244,53.073289047560074],[-127.0150114232874,53.073433372459306],[-127.01499704466839,53.07361390783435],[-127.01489515322837,53.07377110737512],[-127.01478829078289,53.073876238527724],[-127.01502926467995,53.073983983865936],[-127.01515002702585,53.074146549271276],[-127.01530051238217,53.074301570877715],[-127.01547601632814,53.07444685684486],[-127.01567555644057,53.07458073017547],[-127.01586585771582,53.07471916490507],[-127.01603489678294,53.07486731154426],[-127.01617425146567,53.0750257894736],[-127.01627740113433,53.07519467282347],[-127.01640285132237,53.07535775237608],[-127.01652826231174,53.07551915575407],[-127.01668432761532,53.07567189536775],[-127.01676140131977,53.075844920205085],[-127.01675169570235,53.076025415378204],[-127.01670918630201,53.07620226640681],[-127.01664121690321,53.07636981616988],[-127.01654873976022,53.07652973279988],[-127.01663980355356,53.07670096087544],[-127.01674945480258,53.07686810241207],[-127.01681909278335,53.07704286748566],[-127.0168868619603,53.07721765755742],[-127.01700768081405,53.07738189678686],[-127.01714147897592,53.07754210662179],[-127.01729201215379,53.077697689910835],[-127.01743136750216,53.07785561041346],[-127.0175112736864,53.0780291749764],[-127.01764694542672,53.078189368075456],[-127.01777519479602,53.07835130133123],[-127.01786533848147,53.07852309208884],[-127.01795264404612,53.07869378665587],[-127.01793359614209,53.07887380637098],[-127.01785077583314,53.07904652261711],[-127.01771154349733,53.07920572217348],[-127.01750509562281,53.07933076291907],[-127.01720703452048,53.0793400531964],[-127.01692428440887,53.079285338601146],[-127.01667632574951,53.07935639218384],[-127.01665170321911,53.079538135918646],[-127.01666349181619,53.07971788094808],[-127.01664252646022,53.07989679623338],[-127.01666086661177,53.08007648484586],[-127.01666891615925,53.080256270963105],[-127.0166591418976,53.080433960354114],[-127.01655472492922,53.08060294382094],[-127.01643808069385,53.08076867067616],[-127.0163993182772,53.080946053588406],[-127.01643628706111,53.081123349684255],[-127.01633092657069,53.08129177621729],[-127.01615581830481,53.081437835465486],[-127.01598544444818,53.081586094847324],[-127.01581315946784,53.08173269402753],[-127.01562952015533,53.081873778755174],[-127.01540609081655,53.0819933586371],[-127.01518548592561,53.08211347857186],[-127.01493437129454,53.082209763559575],[-127.01472708039684,53.082339288540695],[-127.01452165639135,53.082469352906266],[-127.01427438664237,53.0825695298811],[-127.01399441620022,53.08263244360586],[-127.01371054605765,53.08268810196972],[-127.01342473704904,53.08274154411128],[-127.01314086542878,53.082797201102935],[-127.01286280188451,53.08286178108619],[-127.01259154342901,53.08293694295337],[-127.01232601378724,53.08301709315279],[-127.01210637576749,53.08313943998992],[-127.01190948209634,53.08327447359288],[-127.011701220876,53.08340343660971],[-127.01149581086354,53.08353406015562],[-127.01128468159973,53.083660814790456],[-127.01106121713762,53.08377982168528],[-127.0108148857421,53.08388110374227],[-127.01053098983037,53.08393619874143],[-127.01023520494367,53.08396393644577],[-127.00994341473583,53.084001733285135],[-127.00965558866493,53.08404957161882],[-127.0093736534473,53.08410857350386],[-127.00913584305019,53.08421481723994],[-127.0089843191782,53.084370748914914],[-127.00886198516507,53.08453483085725],[-127.0087593837447,53.0847032353853],[-127.00868686009777,53.084878097424834],[-127.00864620499621,53.08505605798916],[-127.00862428890262,53.085235534909145],[-127.00865186571072,53.085412348173925],[-127.0087792001946,53.08557598355421],[-127.00887210858266,53.08574663611811],[-127.00898547912976,53.08591318741442],[-127.00912858547328,53.086071084903374],[-127.00929020464756,53.08622154491179],[-127.00945833733694,53.08637026372394],[-127.00952793420616,53.08654391181373],[-127.00948451016373,53.08672301673281],[-127.00945040746488,53.086901477216195],[-127.00944907737829,53.08708133404349],[-127.00966674478572,53.087189289146394],[-127.00993332326595,53.08726937655169],[-127.01021527010893,53.087327476555814],[-127.01042945412024,53.087446100889416],[-127.01050846060292,53.087621917962124],[-127.01062361931088,53.08778453483556],[-127.01065393859558,53.08795796232485],[-127.0108212220476,53.088109483332154],[-127.01096154349466,53.088267967111825],[-127.01110836364583,53.08842470978749],[-127.01127558387807,53.088573433764594],[-127.01145576068089,53.088716999593714],[-127.01165997128274,53.088848042186136],[-127.01188444515151,53.08896657578107],[-127.01209787517672,53.08909193586992],[-127.0123553718811,53.0891832922867],[-127.01262468542193,53.08925998856858],[-127.0128867600459,53.089346822366544],[-127.01310938502499,53.089465378466045],[-127.01326087332258,53.08962095788047],[-127.01344383394277,53.089762820459796],[-127.01362958003904,53.089904094098806],[-127.01376899031979,53.09006258233992],[-127.01388890462928,53.09022739628832],[-127.0139473584983,53.09040337833146],[-127.01399928673675,53.0905805458535],[-127.01410246536388,53.09074942064132],[-127.01422609651017,53.0909130817542],[-127.01436551233724,53.09107156920065],[-127.01448635944305,53.091236374485526],[-127.01461927745949,53.091397149558325],[-127.01476799385287,53.09155331553837],[-127.01493614007622,53.09170090577634],[-127.01516892764313,53.09181375894962],[-127.0154209576028,53.0919102027034],[-127.01568580019799,53.09199420965358],[-127.0159496879238,53.092077668427514],[-127.016212674248,53.09216281072459],[-127.01649643837624,53.09221695386809],[-127.01679559838186,53.092211018452325],[-127.01709084257996,53.09223649162878],[-127.01738433631635,53.09226758193498],[-127.01768540725003,53.09226331313754],[-127.01791812453742,53.09237279987746],[-127.0181334060076,53.0924958920577],[-127.01825707114666,53.09266010447306],[-127.01827820825508,53.092839211736866],[-127.01827223243691,53.093019117372066],[-127.01826906927876,53.093198989787666],[-127.0182836681223,53.09337815333664],[-127.01828050520109,53.09355803467852],[-127.01826329380994,53.09373747229115],[-127.0182395436058,53.09391696622271],[-127.01812568069623,53.094083225061034],[-127.01788121689584,53.094186181150036],[-127.01763007874283,53.09428359140286],[-127.01742081152727,53.094411460446985],[-127.017301292795,53.09457609074399],[-127.01733737619753,53.0947545045318],[-127.01734637406788,53.09493428098588],[-127.01734133645806,53.09511416928241],[-127.01736713941328,53.095293236271125],[-127.01742841444405,53.09546863618787],[-127.01749622891639,53.095643979757234],[-127.01749493289822,53.095823844743215],[-127.01749550707449,53.096003684644664],[-127.01753065002829,53.0961821153078],[-127.01759472519234,53.09635749095803],[-127.01776015590958,53.096507341518134],[-127.01795702079244,53.09664235386296],[-127.01817237764558,53.09676767736029],[-127.01820658277182,53.096945551094535],[-127.01832559107937,53.09711036801858],[-127.01854462517045,53.09723286224209],[-127.01869613424408,53.09738731367862],[-127.0188012052771,53.09755561190808],[-127.01898699000589,53.09769632082051],[-127.01914873036823,53.09784788654423],[-127.01931137250855,53.09799831474615],[-127.019523954156,53.09812478923337],[-127.01971714501803,53.09826207144025],[-127.01982687912161,53.098429207940065],[-127.01987044520143,53.09860700032243],[-127.01994385946685,53.09878117342919],[-127.02005638056424,53.098947720875216],[-127.02019491521487,53.09910676453853],[-127.02023848353421,53.099284556717],[-127.02023251512544,53.09946446179401],[-127.0201993901903,53.09964291594875],[-127.0201559706382,53.09982089417114],[-127.02013408226378,53.09999981603925],[-127.02024621736396,53.1001893424046],[-127.020485562842,53.100222013315175],[-127.02078799520532,53.10023340416291],[-127.02108328428314,53.100258311569696],[-127.02136535976902,53.10031750486199],[-127.02161562414705,53.10041562710516],[-127.02182823818194,53.10054265295421],[-127.02205114940872,53.100669589381326],[-127.02227963188069,53.10079535664971],[-127.02249603171973,53.100924033874236],[-127.0226826511457,53.10105912694967],[-127.02281903457427,53.10120586000696],[-127.02283073381629,53.10138056524612],[-127.02278196842138,53.10156924034585],[-127.02278820414728,53.101750151394526],[-127.02291566929182,53.10191489034044],[-127.02310054550821,53.10205504479075],[-127.0233094849182,53.10218434088186],[-127.02349346124402,53.10232617885722],[-127.02367611855595,53.10245177545643],[-127.0239018168738,53.10257756369971],[-127.02410170544194,53.10271926288903],[-127.02432630272035,53.10283778074859],[-127.02454261067534,53.10296196383896],[-127.0247644374091,53.10308218123443],[-127.02495951147942,53.103218317950024],[-127.02517212249602,53.10334421726437],[-127.0253718292358,53.103478072014816],[-127.02556783649442,53.1036136438392],[-127.02577677744762,53.10374237081485],[-127.02597556007285,53.103876232567565],[-127.0261734282051,53.1040112224793],[-127.0263508954764,53.104153677278994],[-127.02645041477035,53.104322572472114],[-127.02669967833029,53.10441621947834],[-127.02696382768843,53.10450636601302],[-127.02718015210034,53.10463055312246],[-127.02738541566005,53.10476155032888],[-127.02758234952603,53.10489654600991],[-127.02775617856727,53.105042947783225],[-127.02784819530862,53.105210795423844],[-127.02780387295815,53.10538934873289],[-127.02782123357751,53.10556512458136],[-127.0278209509174,53.1057460918249],[-127.02779817608837,53.10592614302715],[-127.02782400390558,53.10610352155022],[-127.02786841292316,53.10631436401987],[-127.02777465888853,53.10646085099159],[-127.0277761098133,53.10663676506705],[-127.02772051945384,53.106813730843044],[-127.02772767932595,53.10699295690501],[-127.02771424428805,53.107172361997854],[-127.02773731319796,53.10735201447153],[-127.02771265381281,53.10753095235189],[-127.02770578798058,53.10771086503482],[-127.02768018529932,53.10788981106978],[-127.027724722031,53.10806759153867],[-127.0277515333862,53.10824721138814],[-127.02769591364917,53.10842305667703],[-127.02758393352569,53.108589871636376],[-127.02740307183466,53.10873263300631],[-127.02717476774995,53.10884891309248],[-127.02691875709688,53.10894134604715],[-127.02663860540223,53.109002603708504],[-127.02637779916651,53.10909059491059],[-127.02609473690812,53.10914795908893],[-127.02580277382596,53.109185229914445],[-127.02550882928325,53.10921859079532],[-127.02531536340352,53.10930487488801],[-127.02531228865162,53.10952620565714],[-127.02537363079267,53.10970216468144],[-127.02542188815384,53.10987934874153],[-127.0254841592955,53.11005529962389],[-127.0255529597723,53.110230064306144],[-127.02562920316679,53.110403652780946],[-127.02571479012755,53.110576030615924],[-127.02568729279471,53.11075443648838],[-127.025768236305,53.11092853985004],[-127.0259305861433,53.11106383807989],[-127.02614364625327,53.11120653979226],[-127.02629058854279,53.11136270589135],[-127.02643477333578,53.111520572085055],[-127.02664282782936,53.111649305013884],[-127.02689497469146,53.11174460290251],[-127.02716448503634,53.11182238538074],[-127.02742672894519,53.11190918582315],[-127.02767250065871,53.11201126076252],[-127.02790175945879,53.11212692534907],[-127.02812457325635,53.11224657194384],[-127.02835013295187,53.11236394417612],[-127.02858957055564,53.11247503670835],[-127.02876514214242,53.11261469822218],[-127.02886850133687,53.11278636327146],[-127.02908931415455,53.112900422728615],[-127.02933782675217,53.112999664523855],[-127.0295973377761,53.11308873405092],[-127.02982933876947,53.11320156519277],[-127.03000689754069,53.11334568975186],[-127.03014644616053,53.113504156568084],[-127.03021992845657,53.113678321826924],[-127.03031577036185,53.113848365780065],[-127.03044603248954,53.1140102747919],[-127.0306004454847,53.1141641203403],[-127.03081215781962,53.114288896644155],[-127.03106711682797,53.11438304064683],[-127.0312834899331,53.114506654920284],[-127.03144069362544,53.11465991923743],[-127.03155328852921,53.11482589857179],[-127.03158570687629,53.11500434758094],[-127.03153480708713,53.115181273435525],[-127.03144633040178,53.11535293328594],[-127.03133057691356,53.11551866348242],[-127.03100354673056,53.11542402796747],[-127.03070847633245,53.11537393484641],[-127.03041391044924,53.115344562238626],[-127.03011512247039,53.11533428395082],[-127.02981655367373,53.115332402621284],[-127.0295059774626,53.115337348371845],[-127.02922258151686,53.11534429780434],[-127.02892644144917,53.11536535981425],[-127.02861591438034,53.115411207236136],[-127.0283573298122,53.115476207163944],[-127.02808300913385,53.1155480666248],[-127.02782600317424,53.11563994476008],[-127.02761113018117,53.11577067527015],[-127.02738931860985,53.115885778012824],[-127.02711399620046,53.11595540278386],[-127.02698484292965,53.11599405845661],[-127.02691601392985,53.11608878212975],[-127.02687726306323,53.11626616493062],[-127.02683852555356,53.11644411233734],[-127.02676600872263,53.11661842665506],[-127.02666529903415,53.116787938767416],[-127.0266125054369,53.11696488753658],[-127.0266018770275,53.117144267060304],[-127.02657913149427,53.117325992856216],[-127.02648534756923,53.11739516030167],[-127.02634494899766,53.11743279227837],[-127.02604988407147,53.11746056982183],[-127.02576579517853,53.11751682081771],[-127.02565169558305,53.11759736926508],[-127.02559339774832,53.117663422315026],[-127.02554434134731,53.117840338057135],[-127.0255215366824,53.11801982296008],[-127.02543868576831,53.11819254056675],[-127.0252814185342,53.11834574253683],[-127.02510237733259,53.11848903918085],[-127.02486640821263,53.11859977739193],[-127.02463421990537,53.11871272344027],[-127.02443531602164,53.11884723574108],[-127.02430350390439,53.11900805060815],[-127.02415471111692,53.119163974415024],[-127.02394536912722,53.119292408761154],[-127.02371604336226,53.11940756920741],[-127.02346763660904,53.119507771494376],[-127.02313957219927,53.1195649523675],[-127.02288757521085,53.11947805381664],[-127.02260001243542,53.11942955180298],[-127.02230163134112,53.119436613975175],[-127.02203788452847,53.11952181403816],[-127.02179804931318,53.119628661941604],[-127.02156870228129,53.119743253566135],[-127.02135936320214,53.11987224792837],[-127.02114048828663,53.11999459202907],[-127.020870932291,53.12007199578291],[-127.02059169409301,53.12013603597231],[-127.02031440746471,53.120203420279395],[-127.02004289623599,53.12027747735763],[-127.01977333643617,53.120354878597304],[-127.0195028204346,53.12043116691302],[-127.01922745553844,53.12050077314348],[-127.01895789282885,53.12057817251473],[-127.01868835606733,53.12065669157741],[-127.01840812719652,53.12071905873301],[-127.01813468398208,53.12079088690818],[-127.01788243193577,53.12088773972207],[-127.01764354866592,53.12099569130794],[-127.01741515315133,53.121111386981],[-127.01719531882854,53.12123317600803],[-127.01700488795021,53.121371519841034],[-127.01693314519748,53.12150211949795],[-127.01696374231099,53.12172372333414],[-127.01696790993515,53.121897371207325],[-127.0169478413807,53.122075153858844],[-127.01693431490176,53.122291534370554],[-127.01696118407718,53.12243640872279],[-127.01692250683534,53.122618833497555],[-127.01693525185406,53.12279856600998],[-127.0169320810129,53.12297844433376],[-127.016866082315,53.123153815982086],[-127.01675496393099,53.12332061119214],[-127.01660424304418,53.123475976577986],[-127.01642043900604,53.12361762384268],[-127.01625932199887,53.12376860490464],[-127.0161510264763,53.123936495736224],[-127.01603141953284,53.12410112201165],[-127.01590711311364,53.12426466797476],[-127.01581478372768,53.12443521813762],[-127.01572436732735,53.12460688127816],[-127.01561888091241,53.12477530316741],[-127.01548418854236,53.12493557617164],[-127.01536363450546,53.125099653978914],[-127.0152778999713,53.12527183227681],[-127.01522223296642,53.125448790322054],[-127.0151458961658,53.125622573095],[-127.0150121410064,53.1257833931891],[-127.01484251488735,53.12593108344172],[-127.0146976522386,53.12605782655301],[-127.01462571290014,53.126259019843246],[-127.0145136341841,53.12642582075111],[-127.01435344140641,53.12657734668783],[-127.01419798805094,53.1267310728157],[-127.01396575502194,53.12684455294557],[-127.0137038306333,53.12693028265456],[-127.01341674096837,53.12698148182497],[-127.01312763158136,53.127026539127094],[-127.01283032479154,53.127041976198164],[-127.01253163252348,53.1270389310586],[-127.01223362929677,53.12702522969596],[-127.01193649601197,53.12704794203244],[-127.01164027904244,53.127069525246085],[-127.01134155992321,53.12706535679433],[-127.01104276237288,53.1270572708672],[-127.01074482642248,53.12704637100222],[-127.01044683718766,53.12703322977256],[-127.01014962952956,53.12701391369195],[-127.00985164070764,53.12700077096255],[-127.00955311084907,53.127003884344084],[-127.00926100844721,53.127041669746184],[-127.00897814628968,53.12707378188156],[-127.00872166915971,53.127192505273214],[-127.00851325916015,53.12728504592341],[-127.00821098745209,53.12721030616256],[-127.00799368838686,53.12708665846726],[-127.00773415048498,53.12699810686196],[-127.00744035655669,53.126964187947536],[-127.00714173191034,53.126963934447154],[-127.00684292245904,53.12695527327459],[-127.0065448950457,53.12694043727069],[-127.00624774324618,53.12692336096286],[-127.00594922686214,53.126927020921315],[-127.00565058908438,53.12692619902081],[-127.00536032822598,53.126883280640634],[-127.0050691779409,53.1268426191433],[-127.00477081963965,53.126853553778275],[-127.00449118051183,53.12690355633198],[-127.00441486336975,53.127080128325325],[-127.00441821103334,53.12726050585238],[-127.00439622864131,53.12743885740759],[-127.00425865675183,53.12759857665972],[-127.00405870466815,53.12773249726131],[-127.00386348988313,53.12786918311093],[-127.00368434938619,53.12801301119265],[-127.00348627853779,53.128147470583556],[-127.00327206281473,53.1282725465264],[-127.00303213074926,53.12837935584464],[-127.00279223875415,53.128487275888304],[-127.00259980335535,53.128623371217024],[-127.00250181047147,53.128793967007056],[-127.00241413095362,53.12896558685328],[-127.00227749027854,53.12912530463168],[-127.00221047953039,53.129300110728494],[-127.00221653884479,53.12947710344351],[-127.0019975857493,53.129600540722706],[-127.00172407053837,53.12967288626729],[-127.00151841879173,53.12980405369348],[-127.00134211714214,53.1299495302132],[-127.00118564761993,53.130102691261776],[-127.00104522808398,53.130261309936124],[-127.00083467229491,53.13038355334468],[-127.00053360670583,53.130399546829004],[-127.00023716470962,53.13037347605299],[-127.00000079725996,53.1303541845816],[-126.99970197868322,53.13034607002004],[-126.99940881025441,53.13037935763813],[-126.99913237781439,53.1304478043525],[-126.99886753455688,53.13053071943864],[-126.99860076382537,53.13061197387865],[-126.99831753328526,53.130669826529505],[-126.99802014275403,53.130682985726764],[-126.99772165194027,53.130688865527446],[-126.99742339654182,53.13070538314309],[-126.99713421837225,53.130749280949814],[-126.99685389271838,53.130811031915016],[-126.99657940436607,53.13088281779318],[-126.99630685472566,53.130956827753046],[-126.99606593505821,53.131062510293425],[-126.99584694257672,53.13118537144284],[-126.99565451391896,53.13132257544845],[-126.99548385445067,53.131470236455094],[-126.99532168948589,53.13162119626616],[-126.9951500860853,53.13176830890736],[-126.9949557522715,53.13190496297233],[-126.99474624577518,53.13203278903175],[-126.99451868306556,53.13214955226529],[-126.99430828312822,53.13227962607906],[-126.99404291756112,53.132341800236716],[-126.99374006858041,53.13236227337439],[-126.99344721002956,53.13240955450401],[-126.99317273376212,53.132481896922215],[-126.99295932845513,53.132604140838346],[-126.99279632663908,53.1327595861163],[-126.99270105885009,53.132929020616444],[-126.9926557095835,53.13311092666649],[-126.99259146668524,53.13328626805655],[-126.99242057887066,53.13342497098816],[-126.99217892985125,53.13354017138549],[-126.99203655385571,53.13369711878404],[-126.99195922902577,53.13387368998241],[-126.99197177980325,53.134049507452744],[-126.99205082262195,53.134226443593555],[-126.99212422369553,53.13440231542546],[-126.99221157995458,53.134574699603],[-126.99236207998142,53.13472415243932],[-126.99256834973077,53.134856885026196],[-126.99275143641941,53.13499877602757],[-126.99298991422314,53.1351071417778],[-126.99321454361669,53.13522347597438],[-126.99338467327738,53.13537163319943],[-126.99355757883347,53.13551865530071],[-126.99374809460552,53.13565767656449],[-126.99393955542025,53.13579669854512],[-126.99411893267121,53.13593973912202],[-126.99426220325766,53.13610044657473],[-126.99425411737872,53.13627419606487],[-126.99417303961566,53.136450244256785],[-126.99415285524883,53.136627456954734],[-126.99418235795049,53.13680704890041],[-126.9941828339215,53.13698689373159],[-126.99422536211475,53.1371635793359],[-126.99421834904356,53.13734347810868],[-126.99427769048698,53.137517781309896],[-126.99438375854292,53.13768889488372],[-126.99444027198915,53.13786265700594],[-126.99441542809919,53.138040473525706],[-126.99436721219199,53.1382201627775],[-126.99434988135721,53.138399592399054],[-126.9943456845632,53.13857946738753],[-126.99432273653882,53.138758944179926],[-126.99428947172227,53.138937387132025],[-126.99425527794831,53.13911583786192],[-126.9942117204571,53.139294931997114],[-126.99418501546202,53.13947331973204],[-126.9942088488925,53.13965128274312],[-126.99425985234171,53.139829573177224],[-126.99430245128941,53.14000849895436],[-126.9943300698314,53.140188115350625],[-126.99427517375031,53.140362257854015],[-126.99417901693775,53.14053450599638],[-126.99411665646863,53.140709831631575],[-126.99411432914042,53.14089025540613],[-126.99415501657045,53.14106751193014],[-126.99421161269174,53.141244643703935],[-126.99423641723705,53.141423718906054],[-126.99424905666822,53.141603452097975],[-126.9942635838475,53.14178317837153],[-126.9942808990929,53.14196231645283],[-126.99427575792971,53.14214219901431],[-126.99427434862706,53.14232149441675],[-126.99428245953153,53.14250743292893],[-126.99453428328937,53.14258431769241],[-126.99481767884615,53.14264916650167],[-126.99509363602537,53.14271687402145],[-126.99538995647389,53.142773769108956],[-126.99550207676054,53.14292241997067],[-126.99553913056478,53.14310475328835],[-126.9955705031108,53.14328377281795],[-126.99558313569577,53.14346295001317],[-126.99557145350737,53.14364288756559],[-126.99552317039546,53.14381978046177],[-126.99546551086695,53.14399618746279],[-126.99543224675175,53.14417463021828],[-126.99541491799245,53.144354059403696],[-126.99539760406688,53.14453348844278],[-126.99537934621434,53.14471292540108],[-126.99536014442276,53.14489237027819],[-126.99534001366092,53.14507182294761],[-126.99531332283534,53.14525076603474],[-126.9952772406856,53.145429232313916],[-126.99523742797354,53.14560772994046],[-126.99518352334417,53.145784669758186],[-126.9950938933032,53.14595574263987],[-126.99497695685507,53.1461208777084],[-126.99485344660363,53.14628495635418],[-126.99473652329013,53.14645009102908],[-126.99463089921858,53.14661850110951],[-126.99452810385547,53.14678744307558],[-126.99442812418224,53.14695636126647],[-126.99433285729084,53.14712691604474],[-126.99423946253721,53.14729746395748],[-126.99416112734157,53.14747123784194],[-126.99412691115474,53.14764968781747],[-126.99413208934358,53.147830047839925],[-126.9942044998776,53.14800256409147],[-126.99429376732682,53.14817437390385],[-126.9942895149918,53.148352572077705],[-126.99421402096732,53.1485274425264],[-126.99408293081676,53.148688222196675],[-126.9939027401456,53.14883204160395],[-126.99370074101824,53.14896483867428],[-126.99349304518246,53.149093756913274],[-126.99328915770727,53.14922601331769],[-126.9931127732063,53.149372596300566],[-126.9930512191226,53.149543431533466],[-126.99306951582012,53.14972424602866],[-126.99308122386218,53.14990398631553],[-126.99305544957413,53.15008292958234],[-126.99300340274701,53.15025984329084],[-126.99298886491779,53.15043869221431],[-126.99301180986697,53.15061833814489],[-126.99303379806297,53.15079743630723],[-126.9930689114324,53.15097642430682],[-126.99307027225862,53.15115457501147],[-126.99301073289237,53.15133156044704],[-126.99287961625247,53.15149177390643],[-126.99313705873105,53.15156580877483],[-126.9934326127122,53.15162775325696],[-126.99370773677813,53.15169715639573],[-126.99394353378942,53.15180722779899],[-126.99415171394001,53.151937144256486],[-126.99436999143191,53.15205856715292],[-126.9946196096497,53.15215843643942],[-126.99486921577832,53.15225774056536],[-126.99508748392132,53.15237860645085],[-126.99525675837752,53.1525273321424],[-126.99544272102857,53.15266807360641],[-126.99566104540075,53.152791170033254],[-126.99589041117702,53.1529057737567],[-126.99610965398566,53.153028305856374],[-126.99634363304679,53.153139508329474],[-126.9965959851279,53.15323598891669],[-126.9968401021562,53.15334038194724],[-126.99708970737404,53.15343912565958],[-126.99735030098239,53.153527135827446],[-126.99761635600437,53.15360836732895],[-126.99783556962505,53.153728655470964],[-126.99802246202567,53.15386882928988],[-126.99824540914284,53.153989085192016],[-126.99848670616142,53.15409237812437],[-126.99875461348556,53.15417247094664],[-126.99898953482435,53.1542836602787],[-126.99922166683396,53.154395993214386],[-126.99948046376124,53.15448681070964],[-127.00000131758074,53.15464769141089],[-127.00030316190208,53.15469668429486],[-127.00059537520436,53.15473510845709],[-127.00088759088534,53.154772976105484],[-127.0011753688071,53.154821529961346],[-127.00148369747399,53.15486765922545],[-127.00174927858724,53.154928160459875],[-127.00190446404602,53.15511341722232],[-127.00188425012045,53.15528838882642],[-127.00180437656086,53.15547562635584],[-127.00193634682093,53.15562914036701],[-127.00214595105547,53.155738861517335],[-127.00226872039775,53.15582017532297],[-127.00220326569043,53.15590421250192],[-127.00205429102195,53.15602144278818],[-127.00188542761775,53.1561691041144],[-127.00183811195171,53.156347101827684],[-127.00182839227034,53.15652982807042],[-127.00179038869672,53.156705514834364],[-127.0017393142776,53.156882423747426],[-127.00162427341017,53.15704867778798],[-127.00154015893168,53.15721522577192],[-127.00165190021899,53.15738459837118],[-127.00175892553573,53.15755289025773],[-127.00189224201692,53.15772375629263],[-127.0019365372934,53.157893699504356],[-127.00194914998576,53.15807007820511],[-127.00188397860836,53.15824543008486],[-127.00181872716004,53.15841742104325],[-127.00181740227953,53.15859895550337],[-127.00175410274184,53.15877429140583],[-127.00165976788153,53.15894484310749],[-127.00148326607719,53.15908696558643],[-127.00141183392466,53.159274695698365],[-127.0014092981632,53.15944503516628],[-127.00157911515106,53.15961391630969],[-127.00170663210625,53.15977698789232],[-127.00179219333732,53.15994882276646],[-127.00188803916731,53.1601194500027],[-127.00203875686344,53.160272804945926],[-127.00224136868165,53.16040275426966],[-127.00227173215882,53.16057729715624],[-127.00219375014365,53.160765638829936],[-127.00219333126198,53.160945489115655],[-127.00222285687651,53.16112452110785],[-127.00224115785986,53.161303648118434],[-127.00228751727401,53.16148141701594],[-127.00234883878383,53.161657373933096],[-127.00246953497772,53.161848524109146],[-127.00244436696028,53.161933331422084],[-127.002393772944,53.161972422021016],[-127.0025632041849,53.16212505300095],[-127.00258296635612,53.16236579564293],[-127.00264763747037,53.162525481034926],[-127.00280297617884,53.162675998960275],[-127.00303549785566,53.162801767210276],[-127.00327519400695,53.16291458383509],[-127.003581963343,53.16301058840732],[-127.00375546928052,53.163097637681346],[-127.0039766494479,53.163219018222065],[-127.00424916824338,53.16329346607801],[-127.0045325578022,53.16335156916315],[-127.00480869206116,53.16342037353838],[-127.00506479352993,53.163512887072045],[-127.00531221860342,53.163595380174556],[-127.00557233340486,53.16369961942487],[-127.00579259113849,53.16382156917723],[-127.00597308459997,53.163965137205295],[-127.0061322271191,53.16411729474819],[-127.00626720247183,53.16427750109052],[-127.0063928782988,53.164440592094856],[-127.00650815025347,53.16459984514809],[-127.00672962582065,53.16473297895236],[-127.00706504759044,53.164811923239945],[-127.00729546319762,53.164887842834865],[-127.00756227128036,53.16495784072102],[-127.00782867124309,53.16504969593569],[-127.008017120016,53.16517303288899],[-127.00823278284315,53.16529781405003],[-127.00843826869587,53.1654282840707],[-127.00864192225443,53.16556044563257],[-127.00884275954981,53.165692639809826],[-127.00902513159728,53.16583563141067],[-127.00916661977143,53.16599353790229],[-127.00927836132023,53.16616066191904],[-127.00938821523224,53.166327801917504],[-127.00949808500006,53.166494941671004],[-127.00960143070704,53.166663813237484],[-127.00969077175773,53.16683505413627],[-127.00977080069819,53.16700805067037],[-127.00988439241866,53.167174593547145],[-127.01002963715291,53.167331911138625],[-127.01014230146396,53.167498461666916],[-127.0102213892147,53.167671465890926],[-127.010293023439,53.167846218905815],[-127.01035717709712,53.16802159148064],[-127.0104390696288,53.16819457158871],[-127.01053868947919,53.168364038784325],[-127.01070874545384,53.16850096557105],[-127.01077885726069,53.16869029786424],[-127.0108793837119,53.168858071762216],[-127.01093802741629,53.169037973043935],[-127.01105721011436,53.16920279067265],[-127.0112163906021,53.169354940944494],[-127.01141821155052,53.16948767807165],[-127.0116375869027,53.169609624501845],[-127.01183571658929,53.169744633480015],[-127.01202828005401,53.16988193072654],[-127.01225042195354,53.17000216713304],[-127.01251298244199,53.17008844219306],[-127.01279371802758,53.1701510305058],[-127.0130130186488,53.170270169290916],[-127.01318614971473,53.1704171507812],[-127.01334718931642,53.17056816177299],[-127.01349338793361,53.170725466868674],[-127.01364329474528,53.17088105478652],[-127.01379134223164,53.17103721420411],[-127.01399518722356,53.17117553216719],[-127.0141383170958,53.17132221341955],[-127.0143365701754,53.17146169920148],[-127.01456979503546,53.17157455750438],[-127.01479196636213,53.17169534468954],[-127.01499010254796,53.17182979257723],[-127.01510837949209,53.171994613843765],[-127.01508035408848,53.17215452210466],[-127.01501217041695,53.17231982138778],[-127.01488988630899,53.172496233668404],[-127.01470493424162,53.172637882398405],[-127.01457291617737,53.17279924638307],[-127.01451715685843,53.1729750791755],[-127.0145167902233,53.173154928300754],[-127.0145473208994,53.17333394792824],[-127.0145722302928,53.17351301570055],[-127.01458309181108,53.17369275959892],[-127.01456397328452,53.17387220460099],[-127.01457856928015,53.17405136069403],[-127.01462500946981,53.17422912338936],[-127.01470786257185,53.174401536207974],[-127.01483174041978,53.17456518906649],[-127.01499838296571,53.17471446439237],[-127.01519189543075,53.17485119249658],[-127.01539839357281,53.1749816416577],[-127.01560117038264,53.175113798657165],[-127.01578729992826,53.175254506406894],[-127.01596322418354,53.17539978345431],[-127.01612802718526,53.1755502024392],[-127.01627143472308,53.1757075189011],[-127.0163822855054,53.1758746434318],[-127.01647728339516,53.17604470968742],[-127.01656949030045,53.17621591136109],[-127.01664489958335,53.176390062922074],[-127.0166913226771,53.17656726905275],[-127.01671438240663,53.1767469078054],[-127.01672152106595,53.17692669220529],[-127.01670145208159,53.177105580727485],[-127.01667106857427,53.177284566749904],[-127.01664444762902,53.17746351147743],[-127.01662064357095,53.177642996730775],[-127.0166052649815,53.17782240962679],[-127.01659832696033,53.17800175004021],[-127.01659702460377,53.17818160678797],[-127.01662381958477,53.17836065756724],[-127.0166936509749,53.17853653309066],[-127.01688067490517,53.178674990331366],[-127.01712405916894,53.178779348048934],[-127.0173435110729,53.17890240369138],[-127.01749160027639,53.179058557799564],[-127.01753429663736,53.179235795419224],[-127.01747194733308,53.17941056513997],[-127.01730211483768,53.179558254555154],[-127.0170762598512,53.17967616229657],[-127.01682365458298,53.1797730186679],[-127.01658439571972,53.179879279716864],[-127.01652763703856,53.180052880340945],[-127.01651320174746,53.18023228488182],[-127.01651752141576,53.180412093148426],[-127.01651716300275,53.18059193258944],[-127.01649052454798,53.18077088605146],[-127.0164779630302,53.18095027443107],[-127.01647573026095,53.181130129906144],[-127.01648285365222,53.18130991402062],[-127.01646279514392,53.181489366693185],[-127.01643522607206,53.18166831907224],[-127.01643299329852,53.181848183438525],[-127.01643636796709,53.18202799069554],[-127.01643317700314,53.182207298517234],[-127.01641782451748,53.182387275431985],[-127.01640338796437,53.18256667973202],[-127.01641519086151,53.18274585881522],[-127.01644947145158,53.182924280230026],[-127.01638997160983,53.18310070972484],[-127.01635489071695,53.18327917061541],[-127.0163207391744,53.18345762350055],[-127.01627437167,53.183634504912355],[-127.01626836237972,53.183813272017645],[-127.01631107033032,53.18399163001994],[-127.01635940302693,53.184169374990184],[-127.01635340593678,53.184349262446986],[-127.01627169717412,53.1844984345131],[-127.01630043628748,53.184680264862145],[-127.0163181462022,53.184832501037675],[-127.01654640559741,53.184969484203584],[-127.01680419781668,53.1851258266377],[-127.01676474664856,53.18531777098419],[-127.01667667145117,53.18547539717591],[-127.01655936173448,53.18562543070506],[-127.01626729956689,53.185798253216035],[-127.0162598744256,53.18595742798318],[-127.01635903175206,53.18614425644229],[-127.01622789564762,53.186304492711386],[-127.01598669703229,53.18640964798977],[-127.01569520230377,53.18645024509753],[-127.01540475155966,53.18641687954231],[-127.01512002423641,53.18646638120904],[-127.01491161855397,53.18657069742541],[-127.01471574649293,53.186729245627404],[-127.01447839802543,53.18683884676964],[-127.01422285909624,53.18693235146555],[-127.01394511124421,53.18699916270616],[-127.0136722155029,53.187073210521284],[-127.01341187240698,53.1871622725484],[-127.01320026007517,53.18728957883],[-127.0130076175312,53.187426806960346],[-127.01283015893154,53.18757119263931],[-127.01280064241438,53.18774791907266],[-127.01335004283528,53.18771184596176],[-127.01364770876725,53.18769361190717],[-127.01394556239111,53.187683218986926],[-127.01424291585185,53.1876907575807],[-127.01453802792318,53.187722409835786],[-127.01483316709437,53.18775517266155],[-127.01513161224749,53.18776942267002],[-127.015430826008,53.1877769423446],[-127.01572927151595,53.187791190847],[-127.0160208516779,53.187831833703136],[-127.01627802804542,53.1879231845421],[-127.01651967028985,53.188030919866236],[-127.01674283664069,53.18815058302523],[-127.01695585001015,53.18827649120276],[-127.01716241911798,53.18840693633675],[-127.01736527936256,53.188539653966856],[-127.01755612569167,53.188679197455585],[-127.01773404026954,53.1888266952444],[-127.01795156511834,53.188944719383315],[-127.01822806361285,53.189020777715314],[-127.0185036467096,53.18909739904595],[-127.01871650822389,53.189216582391175],[-127.01890450377671,53.18935390724121],[-127.01908141375863,53.1894986148939],[-127.01925096306243,53.18964842338277],[-127.01941866439014,53.189799923797665],[-127.01958821609573,53.18994973177939],[-127.01976514430253,53.19009499401635],[-127.01994951964647,53.1902373950983],[-127.02014774544686,53.19037126838703],[-127.0203617099312,53.19049716228077],[-127.02058399716738,53.19061793735613],[-127.02080811983829,53.19073701993428],[-127.02103962065154,53.19085100073233],[-127.02125835176538,53.19097964869414],[-127.02142405726426,53.191125005216456],[-127.02147047586088,53.19130052317835],[-127.02148052280513,53.191483642482844],[-127.02148957227229,53.191663964643666],[-127.02149483045437,53.19184319898303],[-127.02164736339668,53.19198642775763],[-127.02180944514485,53.192137417450326],[-127.02198455751584,53.19228381250662],[-127.02220497066483,53.19240404494649],[-127.02244661152247,53.19251064778377],[-127.022668888207,53.192630298551585],[-127.02287364858364,53.19276186986697],[-127.02309225989536,53.192884921953215],[-127.02334304879253,53.19298191525535],[-127.02361305649303,53.19305913773368],[-127.02389396093822,53.193121698946136],[-127.0241757568221,53.19318201079491],[-127.02444758777484,53.19325697462784],[-127.02470941342688,53.19334491459832],[-127.02494552454237,53.19345435698141],[-127.02519541856687,53.19355248360283],[-127.02545178613168,53.193647183206565],[-127.02566485309903,53.19377307534787],[-127.02579437280151,53.193933305533236],[-127.0259081151197,53.19409983942799],[-127.02599010802948,53.19427224171324],[-127.02603192394754,53.19445003864113],[-127.02602034371822,53.19462941851904],[-127.02605839706578,53.19480669222871],[-127.02627049960319,53.19493147112424],[-127.02647335315132,53.19506081177249],[-127.02649171561804,53.195238246973446],[-127.02629994335624,53.195372127158166],[-127.02606546418221,53.19548453171161],[-127.02591345459689,53.19563430954957],[-127.02590094232086,53.19581426209579],[-127.02589217939813,53.19599417319004],[-127.02588433284777,53.19617352056389],[-127.02587556999734,53.19635344058409],[-127.02586587692319,53.1965333596768],[-127.02585428042043,53.19671273946684],[-127.02584364245203,53.196892675667364],[-127.02583486558557,53.197072031003614],[-127.02581956118442,53.197252563337955],[-127.02581172756915,53.197432466234524],[-127.02583293554326,53.19761100611667],[-127.02587014212708,53.19779163947247],[-127.02592138999769,53.19797159544561],[-127.02599593160367,53.19814574718184],[-127.02610397968377,53.19830896844265],[-127.02628381233758,53.198455316124004],[-127.02650904480343,53.198579416043266],[-127.02676891174896,53.19866176602804],[-127.02705726258347,53.19872032916425],[-127.02730991593123,53.19881506595324],[-127.02754607802842,53.19892506744125],[-127.02777951656812,53.19903900934032],[-127.02801661112588,53.1991490018095],[-127.02826291841056,53.199252190880735],[-127.02852388635692,53.19934125046663],[-127.0288047852851,53.19940155930595],[-127.02910746243847,53.19943198071476],[-127.02941456107742,53.19945172271438],[-127.0297060342266,53.19944527256917],[-127.02995144578448,53.19935741701739],[-127.03011351376973,53.199197462377306],[-127.0302134483624,53.19902683387267],[-127.03030485565994,53.198852926894695],[-127.03044075264806,53.198696551849835],[-127.03064373573994,53.198560891431555],[-127.03088775981618,53.198454562203175],[-127.03115497707795,53.19837716349437],[-127.03143850654831,53.19831474437568],[-127.03172791971134,53.198262922529004],[-127.03201755084613,53.19822006204139],[-127.03231414774073,53.19819339182667],[-127.03261178341222,53.19817118483473],[-127.03291245632754,53.19815847931633],[-127.03319900698841,53.19810443781016],[-127.03348053361533,53.19803699346572],[-127.0337276262223,53.197941836472786],[-127.03390690473917,53.197796292642444],[-127.03409477714582,53.19765683175953],[-127.03436860796238,53.19758160894182],[-127.03465816313478,53.19753593685669],[-127.03495583417758,53.19751540883676],[-127.03525495726866,53.19751560106718],[-127.03555351918867,53.19753147545235],[-127.035850357438,53.197553531377814],[-127.03614376190308,53.1975885068013],[-127.03643722153728,53.19762571305093],[-127.03673237821837,53.197655624972136],[-127.03703003803837,53.197673188772114],[-127.03732252798115,53.197708725062135],[-127.03760709598758,53.19776561948043],[-127.03783844209464,53.1978319434515],[-127.03815720010485,53.19790646501268],[-127.03843228593988,53.19795895856234],[-127.03857509637689,53.19797059692781],[-127.03876731496659,53.198008684914576],[-127.0390182576281,53.19803225584346],[-127.03935239333236,53.198045576671426],[-127.03969071315072,53.19803868190482],[-127.03991111417241,53.198002576784994],[-127.04016198992376,53.19794714625385],[-127.04036284176448,53.19787871745937],[-127.04048749659445,53.197838405282745],[-127.04071338306748,53.19772044509714],[-127.04095555611457,53.19761691681114],[-127.04121301773661,53.19752444967422],[-127.041500428273,53.19746813938598],[-127.04166239261816,53.1974583161539],[-127.04179009247625,53.19746559253898],[-127.04208543983749,53.19754087417687],[-127.04236819343491,53.197600014169694],[-127.04265451801724,53.19765183433715],[-127.04294621962731,53.197693530951376],[-127.04324453699871,53.197699303648314],[-127.04354323182605,53.19768267124367],[-127.04383381961067,53.19764089379063],[-127.04412335124901,53.197594642928216],[-127.04441899094918,53.197567941768675],[-127.0447162245518,53.19756812677341],[-127.04481759085574,53.197609811845446],[-127.0447704580239,53.19771386926013],[-127.04454824972606,53.19782844335209],[-127.04433681607141,53.19796140579185],[-127.04410232760766,53.198072716797206],[-127.04388124018887,53.19819455846871],[-127.04378790483196,53.19836402043737],[-127.04382885463497,53.19854181901138],[-127.04392401356057,53.19871185218693],[-127.0439687141923,53.19888961763744],[-127.04395251389793,53.1990690402034],[-127.04383469162124,53.19923423588435],[-127.04367246816463,53.19938581185519],[-127.04350168803516,53.199532980952064],[-127.04329579728406,53.19966365149167],[-127.043067061082,53.19977995630885],[-127.04295005264593,53.19994065287802],[-127.04295526683394,53.199999993372465],[-127.04296666788764,53.200119786290855],[-127.0430095185886,53.20029868872896],[-127.04310750272886,53.20043116534127],[-127.04331194883399,53.20054646169579],[-127.04355460677601,53.200651892429555],[-127.0437751385542,53.2007726398351],[-127.04396703085771,53.2009104556166],[-127.044140379899,53.20105738952322],[-127.04429793814751,53.201210073808255],[-127.0444471499995,53.20136618398565],[-127.0445842506879,53.201525771205084],[-127.04470460107848,53.20169054371183],[-127.04479696442066,53.20186116537188],[-127.04484074200086,53.202038938393585],[-127.04482454419957,53.20221836077478],[-127.04476042635022,53.202394279466276],[-127.04465486283222,53.202562164279975],[-127.04450017040338,53.20271591562066],[-127.04430665676675,53.202854321950404],[-127.04406635101262,53.20295840487865],[-127.043801472573,53.203055425032716],[-127.04352373979386,53.203087004276206],[-127.04320554945328,53.20307579549003],[-127.04290627779388,53.20307058654343],[-127.04260646171691,53.20308163330696],[-127.04232169536694,53.20313287581114],[-127.0420776052335,53.203235867428596],[-127.04186599769024,53.20336378854694],[-127.04166009823719,53.20349445584321],[-127.04145133576182,53.203623462700705],[-127.04124350232107,53.20375246997007],[-127.04103569629233,53.203882032379724],[-127.04082883275952,53.20401214189127],[-127.04062289827073,53.204142251826205],[-127.04041699118692,53.20427291690789],[-127.0402120266007,53.204404129102706],[-127.04000800473332,53.20453589737759],[-127.03981821850368,53.20467426332398],[-127.03963319555649,53.204815392870785],[-127.03944817003061,53.20495707789484],[-127.03927831147834,53.20510478781807],[-127.03913589690329,53.20526290598123],[-127.03902463561374,53.2054297147344],[-127.0389303622222,53.20560030062545],[-127.03883703185282,53.205771433916844],[-127.0387257680465,53.205938242343784],[-127.038578626515,53.206094715938015],[-127.03838313408771,53.20623033262982],[-127.03815623665066,53.206347731506675],[-127.03792745016106,53.20646402598417],[-127.03773865766449,53.20656707961159],[-127.0376073087942,53.20675647260743],[-127.0375188176029,53.206933729502744],[-127.03739534956611,53.20710007863016],[-127.03736951745479,53.207232522875465],[-127.03751150171419,53.20743857090298],[-127.03762997987954,53.20760393109781],[-127.03767838782156,53.20777998024005],[-127.03767436729129,53.207960414663624],[-127.03767315365133,53.20814026872646],[-127.03769162514173,53.20831938566824],[-127.03769509231446,53.208499189744764],[-127.0376760561269,53.208678635093875],[-127.03765418553394,53.208857549476505],[-127.03763983004059,53.2090369537969],[-127.0376357953708,53.209216823491495],[-127.0376383323872,53.20939664459026],[-127.03764181442509,53.20957644843334],[-127.03764435148868,53.20975626949746],[-127.0376468883539,53.209936081582185],[-127.03764471545253,53.210115379125014],[-127.0376256783236,53.210294824310736],[-127.03760662602933,53.210474269607566],[-127.03758946406121,53.21065369833225],[-127.03757230079873,53.210833691774226],[-127.03755606878707,53.211013112315136],[-127.03754171214564,53.21119251641671],[-127.03752923089829,53.21137190407981],[-127.03752238975146,53.21155179810941],[-127.03752681559249,53.211732158210076],[-127.03755934707864,53.21191115174617],[-127.03766752995634,53.21207660175199],[-127.03782789786074,53.21222870456555],[-127.03800962334236,53.212371656184786],[-127.03820061785171,53.212510044370184],[-127.03839532337552,53.21264671451753],[-127.03860207767363,53.212777120548395],[-127.03882453435257,53.212897868908264],[-127.03906722445768,53.213002187885834],[-127.0393355818597,53.2130821862805],[-127.0396211036964,53.21313570649097],[-127.03991552326578,53.2131689791371],[-127.04021167997148,53.21319719808819],[-127.04050856159455,53.213216437058215],[-127.04080733298423,53.213236223417574],[-127.04109819608759,53.213277367798426],[-127.04138014973522,53.21333820280582],[-127.04165123806558,53.21341425477233],[-127.04190405320931,53.21351063558235],[-127.0421255926514,53.213631376915565],[-127.0423193709339,53.213768057808736],[-127.04248998864884,53.21391613804115],[-127.04262249631479,53.214078008129505],[-127.04268125490813,53.214254528536785],[-127.04262461248723,53.21443037893376],[-127.0424641883437,53.214581379873515],[-127.04225729077807,53.214712055737564],[-127.04201121535732,53.214813942960205],[-127.04174207971465,53.214893057844805],[-127.0414699979776,53.21496716027718],[-127.04120279010276,53.21504906267706],[-127.04093943030814,53.215134292130685],[-127.04068952905256,53.21523341339908],[-127.04047213469217,53.215356890537315],[-127.04026806078295,53.215488658487665],[-127.04006779346383,53.2156220778764],[-127.03987226154028,53.2157576873717],[-127.03967960341714,53.215896077016176],[-127.03949262763165,53.216036101703914],[-127.0393094419181,53.21617832485228],[-127.03912911749028,53.216322207823474],[-127.03897909288582,53.216477594495274],[-127.03888951773013,53.2166498141931],[-127.03888359936995,53.21682857926234],[-127.0388983271225,53.217008292801594],[-127.03891588981838,53.217188537235565],[-127.03892404622654,53.217367743612805],[-127.0388768193633,53.21754519443526],[-127.03880983367505,53.21772057741746],[-127.03872022767084,53.217891676628135],[-127.03860426313022,53.218059080531994],[-127.0385626054339,53.21823480609922],[-127.03855485103381,53.21841527228517],[-127.0385592681271,53.218595067083214],[-127.038581498492,53.218774714749],[-127.03861684727212,53.21895311799892],[-127.03867184419671,53.21912967280813],[-127.03873620726456,53.219305589741225],[-127.03875654900578,53.2194846891418],[-127.03877409825184,53.21966436875598],[-127.03876724740647,53.219843706420605],[-127.0387341202601,53.22002271857026],[-127.0386423219587,53.22033389728298],[-127.03853857891981,53.220502314240555],[-127.03840083341076,53.22066207404261],[-127.03823185242742,53.2208103376782],[-127.03806003634107,53.22095750539408],[-127.03792228732028,53.22111725563943],[-127.03784962299719,53.22129101113858],[-127.03784078198463,53.221465884046495],[-127.03793083563913,53.22165613359691],[-127.03801064262873,53.221811746760025],[-127.0379921057787,53.2219738144931],[-127.03791273039822,53.22214146156417],[-127.03786141074171,53.22230606620457],[-127.03780416126125,53.2224578326785],[-127.0377715011107,53.22257968655904],[-127.03766093735841,53.2227005461277],[-127.03750604644806,53.222811709196506],[-127.0373114324253,53.22294787027511],[-127.03718028906431,53.223109246811525],[-127.03710386617801,53.223283034497435],[-127.0370707154397,53.22346148125276],[-127.03705351706321,53.2236403441868],[-127.03698181785346,53.22381521089122],[-127.03687049923273,53.223982015969895],[-127.03670718280945,53.22413246842666],[-127.0365163672521,53.224270835774895],[-127.03632081139511,53.22440755902904],[-127.03610431531786,53.224532148622124],[-127.03590394932758,53.22466443126101],[-127.03581804161632,53.22483437461659],[-127.03580257763115,53.225007063867814],[-127.03581057146678,53.225180112867186],[-127.03581518360389,53.225368313411174],[-127.0358175214505,53.225540282350686],[-127.03581038257468,53.225708416873466],[-127.03574550828928,53.2258944277402],[-127.0356429698884,53.226037059865455],[-127.03546771436265,53.226198263685816],[-127.03523592255222,53.22631177129887],[-127.03496575564328,53.22639088753186],[-127.03468063102993,53.22643426934988],[-127.03438713914296,53.22648052916324],[-127.03409134570357,53.22650944535965],[-127.03379756483362,53.226543936700644],[-127.03350782360421,53.22659016161364],[-127.03323563855608,53.226663689043214],[-127.03301146632347,53.22678217243849],[-127.03285382229969,53.22693536644064],[-127.03274910817758,53.22710435058007],[-127.03271403246116,53.22728169185772],[-127.03277278182559,53.22745878053652],[-127.03282775160888,53.22763477265722],[-127.03275035822931,53.22780800062495],[-127.03262956280425,53.2279720869665],[-127.03247854211101,53.22812746359146],[-127.03229528061163,53.228269683946756],[-127.03207207022292,53.22838927747171],[-127.03180081528963,53.228463349075206],[-127.03152284944272,53.228531311322435],[-127.03125646863236,53.22861262684169],[-127.03099881065363,53.22870506171371],[-127.03076410295566,53.22881578885265],[-127.03056849391436,53.22895194664923],[-127.03040230158969,53.229101294181895],[-127.03022187816208,53.229244606974056],[-127.03003197625117,53.22938407566356],[-127.02985249455749,53.229527935426155],[-127.02968820106291,53.22967838585444],[-127.02953620424964,53.229833211164824],[-127.02939839408492,53.229992950752006],[-127.0292728687425,53.2301559539054],[-127.02915962789892,53.23032220273963],[-127.02903881134772,53.230486285204265],[-127.02888776847021,53.23064165704846],[-127.02873198522883,53.230795393574695],[-127.02857620085409,53.23094912988378],[-127.02842513982876,53.23110451019275],[-127.02828354274885,53.23126260491887],[-127.0281598992633,53.23142614615019],[-127.02805233311574,53.2315951502109],[-127.02794856121736,53.23176524173247],[-127.02783529584103,53.23193148929039],[-127.02769743314988,53.23208899507671],[-127.02751616452812,53.23223734831683],[-127.02729393207669,53.232360285246884],[-127.02703206779246,53.23243538460606],[-127.02673552664841,53.23247436374133],[-127.02644009416679,53.232520064344286],[-127.02617361032152,53.23259856319364],[-127.02591298593765,53.23268653028653],[-127.02565623586798,53.232779509896915],[-127.0254023749508,53.23287526961965],[-127.0251475806167,53.23297159260931],[-127.02489178503589,53.233065682742854],[-127.0246330996044,53.23315643586038],[-127.0243696070321,53.233242183315014],[-127.02410512702332,53.23332626247054],[-127.02383970020657,53.233410349198714],[-127.02357714886259,53.23349665144488],[-127.02332520968939,53.23359463096424],[-127.02307895156639,53.23369535761787],[-127.02278913592156,53.23374099156093],[-127.0224902730658,53.2337614966421],[-127.02219102919813,53.23376688234808],[-127.02189184079249,53.23377394304776],[-127.02158657441925,53.233763127790446],[-127.02130420679117,53.233767236422246],[-127.02099678447762,53.23382254610934],[-127.02071946846536,53.23388040149801],[-127.02042713790716,53.23393894119575],[-127.02013036303593,53.23392972533495],[-127.01982644497724,53.23385783267718],[-127.019559841864,53.23377664566026],[-127.01926976399915,53.2337337648651],[-127.0189709658468,53.233718405392494],[-127.01867300565745,53.233698556080796],[-127.01837670466767,53.23367028374914],[-127.01807886665316,53.23365547850661],[-127.01777967672004,53.23366308459972],[-127.01748479438993,53.233693071377786],[-127.01719991278426,53.233749298235495],[-127.0169218886956,53.23381722606154],[-127.01664966857048,53.2338923910114],[-127.01638612848458,53.233977009413934],[-127.01613990547057,53.234079962117725],[-127.01590610170106,53.23419177166385],[-127.01564737651239,53.23428194052319],[-127.01537031933496,53.23435098579404],[-127.01509323267727,53.23441946594233],[-127.01488130806723,53.23454341128774],[-127.01474627639892,53.23470422952902],[-127.01460458773444,53.234861752105985],[-127.01437639633973,53.234933729310185],[-127.01406366778916,53.234963860127344],[-127.01380106340604,53.23501035967732],[-127.01353829891602,53.235049581433024],[-127.01327766974356,53.23506077259947],[-127.0130034345394,53.23505247568064],[-127.01274697623768,53.23496390820572],[-127.01248578141353,53.23487313968385],[-127.01225591225084,53.234758008590894],[-127.0120426652895,53.23463153945125],[-127.01182850213888,53.23450563350184],[-127.01158297359177,53.2344029599087],[-127.01130375665956,53.234343159965796],[-127.0110091868291,53.234308131652995],[-127.01071214369912,53.23428769876886],[-127.01041331795702,53.23427119749612],[-127.01011385450879,53.234267581827496],[-127.00981462049732,53.234272936172474],[-127.00951546495753,53.23428220625609],[-127.00921632429883,53.234291475457134],[-127.00895855136851,53.23434352551771],[-127.00873923975969,53.234395256789995],[-127.00849293879509,53.2344561719887],[-127.00822988198566,53.234522840449614],[-127.0079921813654,53.234629620706805],[-127.00776416970386,53.2347492080053],[-127.00757090341848,53.23483040366992],[-127.00736223669348,53.23489548752361],[-127.00722694620447,53.23500699848727],[-127.0069186609262,53.23510597701988],[-127.00667523065682,53.23520888604309],[-127.00649126617294,53.235325855919264],[-127.00620503211675,53.23544425805529],[-127.0060226095153,53.23558698485744],[-127.0058354333219,53.235727510742485],[-127.0056025255532,53.23583872725097],[-127.00534480592472,53.235933355589225],[-127.00524540284002,53.23609442519718],[-127.00525906323,53.23627413998774],[-127.00526239649618,53.236453386555],[-127.00520840452978,53.23662975765016],[-127.00509128355885,53.236796023825],[-127.00496374073515,53.236957887351245],[-127.00480595729738,53.237111052186165],[-127.0046434484698,53.23726257163977],[-127.00447903335728,53.23741354228061],[-127.00431652219422,53.237565061262146],[-127.00415683082336,53.237717120837],[-127.00400471156114,53.23787191275127],[-127.00386202797242,53.23802886550714],[-127.0037581012845,53.238197815157086],[-127.00368444248925,53.2383760280035],[-127.00359655381453,53.23854820312629],[-127.00345092419458,53.23870014261643],[-127.00325986737467,53.23883565027477],[-127.00304514305252,53.23896295877836],[-127.00282283063603,53.239086969643516],[-127.00260904799286,53.239214834070246],[-127.00240097571752,53.239345446506384],[-127.00219005291252,53.23947496218158],[-127.00198671564209,53.23960777476708],[-127.00180044073124,53.23974772139229],[-127.00164069211593,53.23989809256257],[-127.00149989626033,53.24005614669782],[-127.00137143723865,53.24022026351267],[-127.00125336010383,53.2403865244807],[-127.00114092589303,53.2405533023872],[-127.00109158453151,53.24072851131413],[-127.00105544525621,53.240906970156615],[-127.00103716978741,53.24108639865111],[-127.00106113094716,53.241265470618906],[-127.0011468545603,53.24143729843025],[-127.00132856837254,53.241579748417884],[-127.00155475740165,53.24169772809475],[-127.00178832240807,53.24181004272162],[-127.00198952887756,53.24194279862482],[-127.00209113903706,53.24211113012657],[-127.00213570957835,53.242288907222665],[-127.00213809728588,53.242468716941076],[-127.00212545649237,53.242648097877776],[-127.00212033668625,53.24282797996057],[-127.00209642071597,53.243006891413636],[-127.00207909473811,53.243186311877714],[-127.00213109444526,53.24336066472638],[-127.00240673718979,53.24342612786214],[-127.00270386713503,53.243447701689966],[-127.003002794765,53.24346590714787],[-127.00328570773617,53.24352121364119],[-127.00344219925576,53.24366779086542],[-127.0034811462127,53.24384561494995],[-127.00345256390084,53.2440251308182],[-127.00345210792861,53.24420385295401],[-127.00353209821289,53.24437012510181],[-127.00376335253094,53.24450317947651],[-127.00391906305461,53.24465648542506],[-127.0040001467667,53.24482947075962],[-127.00406252759373,53.24500541999504],[-127.00414173553352,53.24517842109098],[-127.00424432128419,53.245347298090074],[-127.00436650299486,53.245511536173716],[-127.00443823155574,53.24568572083997],[-127.00449125659645,53.24586286052326],[-127.00449442595212,53.24603594951639],[-127.00447270171317,53.24622773244638],[-127.00447211844522,53.246400288473275],[-127.00446229451427,53.24657964550755],[-127.00444966235906,53.24675902630445],[-127.00443139877419,53.24693845476984],[-127.00443191939969,53.24711827989826],[-127.00443807161304,53.2472980662848],[-127.00443108374563,53.247477954961674],[-127.00438851028574,53.24766151529683],[-127.00433343611616,53.24783229166156],[-127.00421343236988,53.24799689493349],[-127.00413492485487,53.24816954576014],[-127.00408657134528,53.24834698781977],[-127.00405231538254,53.248525430970716],[-127.00402371912531,53.24870439089923],[-127.00399510739526,53.24888334196926],[-127.00396556454362,53.24906230985796],[-127.00393696734245,53.249241260753266],[-127.00390742399419,53.24942022859386],[-127.00387975740854,53.24959917156188],[-127.00381350671957,53.249774523895674],[-127.00378582630054,53.24995291117234],[-127.00377790431367,53.25013281640145],[-127.00374930399096,53.25031233187598],[-127.00363681318522,53.25047742644742],[-127.00350359187799,53.25063934384987],[-127.00343262569403,53.25081361528036],[-127.00342749705246,53.25099293205105],[-127.00346461503565,53.25117189144369],[-127.00346041762916,53.251351200305606],[-127.00349376802987,53.25152962681835],[-127.00352243131715,53.251708657668935],[-127.00352294834494,53.25188849131364],[-127.0034651747166,53.25206489194668],[-127.00335081420175,53.25223056657298],[-127.00322231193898,53.25239411974644],[-127.00311360825735,53.25256086671896],[-127.00304922871999,53.252735637755215],[-127.00300841492523,53.25291470028583],[-127.00298332657701,53.25304432074551],[-127.0030657261005,53.253272197341246],[-127.00307179358569,53.25344862252259],[-127.00297359101764,53.25362312365534],[-127.00278145257133,53.253755841382045],[-127.0025275598799,53.25385770786846],[-127.00225710218191,53.253934498987846],[-127.00197407409443,53.253996273967445],[-127.00172093663002,53.25409085382271],[-127.00147650620634,53.25419599947472],[-127.001209945456,53.25427892225296],[-127.00095007992228,53.25436739021137],[-127.0007428325473,53.254496870611064],[-127.00070008990306,53.25467426319077],[-127.00072030242056,53.254853365624164],[-127.00070203265854,53.25503334838955],[-127.00069594566439,53.25521267262792],[-127.00067766247888,53.25539209972097],[-127.00068286868141,53.25557189337791],[-127.0006824271943,53.25575172569122],[-127.00067540876915,53.25593105771587],[-127.00064584692232,53.25611002411774],[-127.00049094839629,53.25623009870333],[-127.00025119431373,53.256136881640884],[-127.0000010278834,53.2560403904988],[-126.99969875945175,53.25592472543375],[-126.99940155641923,53.25590369985385],[-126.99910544016446,53.255928603025524],[-126.99882817412293,53.25599592403344],[-126.9985202489851,53.25599796031648],[-126.99841320430069,53.25599774074717],[-126.99823494007464,53.256043494271324],[-126.99796277987605,53.256049145281146],[-126.99780993368047,53.25601793770329],[-126.99770132766734,53.25595162381207],[-126.99760720770983,53.255901994830054],[-126.99745580340162,53.25585229165943],[-126.997170613133,53.255823316325596],[-126.99686354279036,53.255821415062485],[-126.99656409963629,53.25582505120822],[-126.99626681959312,53.25580065707833],[-126.99596727257597,53.25579924606535],[-126.99567422786271,53.25583531941903],[-126.9953911265351,53.25589428240683],[-126.99509615037336,53.25592812961846],[-126.99481984866543,53.25599710931627],[-126.99455229276985,53.25607834899898],[-126.99429147097156,53.25616681009591],[-126.99403737010188,53.256261937015324],[-126.9937601068689,53.25632980180325],[-126.99346504730792,53.256360284254406],[-126.99318966025395,53.256428140945594],[-126.99296746019796,53.2565224337602],[-126.99278272500449,53.25669204770297],[-126.99260109654884,53.25683474447196],[-126.99238809983582,53.256960896537],[-126.99216844588811,53.25708318677114],[-126.9919877203974,53.25722418982894],[-126.99182601948141,53.25737568233117],[-126.99165578186341,53.257523884587094],[-126.99149028408767,53.25767373212722],[-126.99133993717032,53.25782904611855],[-126.99121704549002,53.25799365884931],[-126.9910846446224,53.258153869057566],[-126.99088593662702,53.25828886249966],[-126.99071285682616,53.25843596655898],[-126.99048257991943,53.25854657295498],[-126.99019943815065,53.258605523596806],[-126.98993183037649,53.258685623555614],[-126.98964473464827,53.25873619798054],[-126.98928786555197,53.25873413655981],[-126.98898988703834,53.258720369723854],[-126.98870501334834,53.25866504522007],[-126.98843554197406,53.25858605329198],[-126.98816517972578,53.25850875333479],[-126.98790760818679,53.258416224661765],[-126.98766385225493,53.258311811212664],[-126.9874320849817,53.25819833388533],[-126.98719845433241,53.25808542735692],[-126.98694732070892,53.25798724079631],[-126.98668244079455,53.257903169181105],[-126.98640387992023,53.25783601748534],[-126.9861154564572,53.25778911522836],[-126.98581659163321,53.257777588748596],[-126.98551735596085,53.257790723475985],[-126.98521803038439,53.25779936742775],[-126.98491995344058,53.25778167415245],[-126.98463323993595,53.257727475666194],[-126.98435289716552,53.2576642510688],[-126.98407540336484,53.25760268734104],[-126.98380937901054,53.257671000109326],[-126.98367142470387,53.25783517395367],[-126.98355698386783,53.258001384629715],[-126.9834226894535,53.25816216644951],[-126.98323548345401,53.25830825603644],[-126.98299377104401,53.258372439368884],[-126.98272958223708,53.25827714876812],[-126.98245996836546,53.25819143081191],[-126.98217871863417,53.25812989376083],[-126.98189835082258,53.25806554314318],[-126.98160823544538,53.25802648711376],[-126.98130776597112,53.25802673175339],[-126.98100952548927,53.25804208775226],[-126.98071347435022,53.25807086133254],[-126.98042446814618,53.25812030874987],[-126.98015585969837,53.2581987186291],[-126.97991036662215,53.258302151566575],[-126.97968781942923,53.25842331273509],[-126.97950614142394,53.25856543356678],[-126.97938317336661,53.258729469501304],[-126.97930551692481,53.25890322430054],[-126.97924951021437,53.25907959698644],[-126.97920573920027,53.259257544836686],[-126.97916386071874,53.259435485996576],[-126.97914829324063,53.25961488618688],[-126.97912990351864,53.25979374494108],[-126.97912091521168,53.25997309079945],[-126.97913070387004,53.260152281690964],[-126.97909729235036,53.260331273311614],[-126.97906009892876,53.260509166699016],[-126.9790257423855,53.260687601353695],[-126.97896313967364,53.260863472393524],[-126.97888640873295,53.26103721007912],[-126.97880497741524,53.26121043072671],[-126.97869898973099,53.26137825161174],[-126.97855240311772,53.26153632318398],[-126.97832880001107,53.261653017310934],[-126.97812327342366,53.261780201751954],[-126.97805121144418,53.26195334454321],[-126.97808917578082,53.262132858798026],[-126.97822434513047,53.26229253307577],[-126.97831751880506,53.26246319320797],[-126.97840134104557,53.262636171258045],[-126.97853001311243,53.2627986953755],[-126.97873859984057,53.262925261680635],[-126.97895569772628,53.26305400725946],[-126.97901596725008,53.26322325311935],[-126.97907353209534,53.26339701200149],[-126.97921713895904,53.26355605078463],[-126.97933366819568,53.26372147083874],[-126.97941375637795,53.263894478933004],[-126.9794705332274,53.2640749667609],[-126.97966497449237,53.26419828685069],[-126.9799409392734,53.264273318961],[-126.98020948459043,53.264352337764336],[-126.98045973305973,53.26445223090705],[-126.98070626583583,53.264553830421825],[-126.98097150097142,53.26465192244921],[-126.98101276751694,53.264811240320654],[-126.98098505900153,53.26499298155909],[-126.98098360228992,53.265172829571384],[-126.98097651155355,53.26535271517787],[-126.98097221725091,53.26553202190897],[-126.98097831120195,53.265713483637796],[-126.98088552072207,53.265882882113544],[-126.98064945241727,53.26598959027956],[-126.98037214100611,53.26605967298253],[-126.9801073808068,53.26614420818167],[-126.97987717717174,53.266260959295245],[-126.97974374988998,53.26642004361882],[-126.97973850566069,53.266598793300474],[-126.97972388449433,53.26677818508328],[-126.97967258471421,53.266955083018864],[-126.97962599781,53.26713305348839],[-126.97960855143508,53.26731246852362],[-126.9796005100879,53.267491805903575],[-126.97959341327808,53.26767170017267],[-126.97959758447799,53.26785149244876],[-126.97958577184852,53.26803086090629],[-126.97955705869187,53.268209813105685],[-126.97953680198596,53.26838925122066],[-126.97953814838597,53.26856906674603],[-126.97950758256296,53.26874915461335],[-126.97958286118835,53.26891715544753],[-126.97952115607265,53.269091333393256],[-126.97937069870213,53.269245520027376],[-126.97924108116104,53.26940736863115],[-126.97912846985301,53.26957356750037],[-126.97902335708906,53.26973913968052],[-126.97886626244834,53.26989113049415],[-126.9787536612552,53.27005788459904],[-126.9787022624364,53.27023085653609],[-126.97866223408475,53.27040878113981],[-126.97858929282505,53.2705847272517],[-126.97871780806196,53.270739408902294],[-126.97890515489966,53.27087960413697],[-126.97914805612399,53.270985162809254],[-126.979434761761,53.27103545786188],[-126.97972236056711,53.271084059709025],[-126.97999464007019,53.27116024266211],[-126.98027686800548,53.27121953620093],[-126.98055550743045,53.271286701813445],[-126.980818620042,53.271372486863584],[-126.98109358492742,53.27144247821237],[-126.98137130865501,53.271510214197015],[-126.98164993861188,53.27157681263601],[-126.98191086440067,53.27164916807117],[-126.98200409967919,53.271820944705645],[-126.98207298187849,53.27199628409662],[-126.98220633256,53.272156524194386],[-126.98230137021336,53.27232492432927],[-126.98233276762176,53.272503935097916],[-126.98235480194977,53.27268357907955],[-126.98237493024203,53.27286268307925],[-126.98238308882345,53.27293040672375],[-126.98240416400607,53.273109502860244],[-126.98243275251615,53.273288536787696],[-126.98250162575063,53.27346331120332],[-126.98258643363675,53.27363627747341],[-126.98267122928465,53.27380868803589],[-126.98271330661565,53.27400217589468],[-126.98275563985808,53.274165965448105],[-126.98284693861179,53.2743355164245],[-126.98294857648813,53.27450498169961],[-126.98302725764134,53.27465670996627],[-126.98303038757822,53.27487180856924],[-126.98306432808762,53.27503847304685],[-126.98313415369984,53.2752132480582],[-126.98320585806174,53.27538799849153],[-126.98327849678317,53.275562185392204],[-126.98333895826306,53.27573815826195],[-126.98339098580354,53.275915312439835],[-126.9834007962821,53.27609450149659],[-126.9833654725835,53.27627182358512],[-126.98347273953961,53.276440685925046],[-126.98360146004818,53.27660263878766],[-126.98366568124833,53.27677858026501],[-126.98369239914291,53.27695762911622],[-126.98372653962437,53.27713269041409],[-126.98371893668113,53.277290179580255],[-126.98380161080233,53.27749229383805],[-126.98383396517004,53.27767129588473],[-126.98386913190147,53.27784970989692],[-126.98387707952067,53.27802947889719],[-126.98385267466273,53.2781915800546],[-126.98375440046892,53.27836886806592],[-126.98356886696862,53.27850989560011],[-126.98344961386391,53.278673911883196],[-126.98343315184927,53.27885443878677],[-126.98356462471433,53.27901357213204],[-126.98376595118869,53.279146356372166],[-126.98399876832922,53.27926038753344],[-126.98419637951248,53.279394886983326],[-126.98434003397496,53.27955279802801],[-126.98442767383385,53.27972517441868],[-126.98447033112124,53.279902970243654],[-126.98445948263254,53.28008233021595],[-126.98437707767506,53.28025500520006],[-126.98421242471767,53.28040538860017],[-126.98401452179482,53.28054036125174],[-126.98386120143162,53.280694011495],[-126.98378729321325,53.2808682917386],[-126.9837792649575,53.28104818389825],[-126.98375714139861,53.28122763711078],[-126.98370207050696,53.28140400201115],[-126.983614942561,53.281576150738026],[-126.98348341182165,53.281737462880024],[-126.983323478307,53.28188949089585],[-126.98315785521693,53.28203931595875],[-126.98304052328753,53.28220499169832],[-126.9829439324195,53.28237442157658],[-126.98290205970048,53.282552917553645],[-126.98289683998858,53.282732230474416],[-126.98294511686399,53.282909415317725],[-126.98303275820429,53.28308180140197],[-126.98329234881214,53.283335666605126],[-126.98356590320816,53.283624158002674],[-126.98375682068232,53.28383377368907],[-126.9840025050251,53.28409560455575],[-126.98419417789533,53.28429681448206],[-126.98443988060596,53.284559200009575],[-126.9847002265945,53.28480409234504],[-126.98490598955011,53.285005184237775],[-126.98509711612704,53.285223203734],[-126.98524682252248,53.285397869703615],[-126.9853225557645,53.28562301323841],[-126.98533710958408,53.28588450940233],[-126.9853751004881,53.28606290784818],[-126.98542341978987,53.28624065584483],[-126.98544544643912,53.28641974247734],[-126.98543649227092,53.286599641970184],[-126.98540214144683,53.28677807606225],[-126.98543148779709,53.28694870312734],[-126.98543477999188,53.28712962136],[-126.98550279564623,53.28730608532775],[-126.98557924650758,53.28748192348986],[-126.9856669210782,53.28765486285161],[-126.98577044193154,53.28782262414411],[-126.98589450131355,53.28798462159496],[-126.98604377586045,53.28814024264263],[-126.98621640186175,53.288289502675674],[-126.98640671663478,53.2884313371699],[-126.98660996090867,53.288564100458366],[-126.98681692704749,53.28869459160151],[-126.98702390563393,53.28882620271524],[-126.98723279273324,53.28895836229965],[-126.98744353188717,53.28908994141797],[-126.98765799294236,53.28921924833917],[-126.98787520063443,53.28934572645956],[-126.98809795494952,53.289468240994],[-126.9883252693952,53.28958511499228],[-126.98855902494992,53.28969577703376],[-126.98880012709762,53.28979909014398],[-126.98904948351827,53.289893370550715],[-126.98930802409794,53.28997916618925],[-126.98957484521888,53.29005705819237],[-126.98984902559899,53.2901281566906],[-126.99012965984423,53.290193607542584],[-126.99041486663019,53.29025397316624],[-126.99070374016695,53.29031038151872],[-126.99099440155447,53.290362857218184],[-126.99128690334562,53.290413640678366],[-126.99157936625319,53.29046273861602],[-126.99186992446175,53.290510731315315],[-126.9921576572367,53.290558746916886],[-126.99244897939447,53.2905988887923],[-126.9927438870699,53.29063227738003],[-126.99304057057373,53.290660603955565],[-126.99333812067297,53.2906861259415],[-126.99363565804953,53.290711091556105],[-126.99393416726227,53.290737724461124],[-126.9942299316517,53.29076717620365],[-126.99452396269697,53.290802808596624],[-126.9948144473723,53.2908474334454],[-126.99510315925725,53.290896554179334],[-126.99539187181426,53.29094567420986],[-126.99567886455696,53.29100153056627],[-126.99596920651587,53.29103999590059],[-126.9962699769506,53.29104251018674],[-126.99657077408713,53.29104615288452],[-126.99687615728561,53.29104470988455],[-126.99717973889973,53.29104719826595],[-126.9974735096028,53.29107162123375],[-126.99775205763387,53.29112754354548],[-126.99802443286247,53.291200888301425],[-126.99829144993836,53.29128603756195],[-126.99855208247216,53.29137963869234],[-126.99880720019156,53.2914777763444],[-126.99905577442391,53.291577644677915],[-126.99928960883422,53.29168996131675],[-126.99951236875108,53.291810769492855],[-126.99973422278613,53.29193327001407],[-126.9999755642679,53.292044966373616],[-127.00000023168258,53.29205484254464],[-127.00024205686532,53.292146922216666],[-127.00042372018326,53.29227815877607],[-127.00051783590457,53.2924426342997],[-127.00059239959263,53.29261510856987],[-127.00065113167798,53.2927933273275],[-127.00069678964717,53.29297500856079],[-127.00073119980021,53.29315791395124],[-127.00075804021373,53.293338633282225],[-127.00077827149595,53.29351773212468],[-127.00078440151805,53.29369694979244],[-127.0007802018839,53.2938768191984],[-127.00076756648708,53.29405731541566],[-127.00074834786439,53.29423730239556],[-127.00072628955255,53.29441675755028],[-127.00070045941871,53.29459568873318],[-127.00065956839423,53.29477361740833],[-127.00060832048679,53.29495107758417],[-127.00055614003904,53.295128545575416],[-127.00051524810219,53.295306483114175],[-127.000492256123,53.295485945980545],[-127.00049088128485,53.295665782437524],[-127.00050829949231,53.29584546951019],[-127.00054355022166,53.29602444162424],[-127.00060505997173,53.29620038690245],[-127.00070959352483,53.29636813554035],[-127.00083846754288,53.296531188257376],[-127.00091906315346,53.296719861938115],[-127.00107281092107,53.296861981240085],[-127.00120441980799,53.297021658158634],[-127.00134822614436,53.29718010268542],[-127.00139399841976,53.29736627303334],[-127.00147209381166,53.29752863275961],[-127.00164205465973,53.29768014273046],[-127.00175448877256,53.297823730001845],[-127.0017085860159,53.29802803564053],[-127.00179366818253,53.29820714265328],[-127.00186174350571,53.29838247603847],[-127.00193636319213,53.298556633731465],[-127.00205118554146,53.29872148872044],[-127.00210060159718,53.298902581526335],[-127.00219113942784,53.29907380811935],[-127.00228637068703,53.29924443032824],[-127.00240391466446,53.2994053359891],[-127.00249177623219,53.299582187068246],[-127.00262623704933,53.299742949700196],[-127.00271082094655,53.29990078095844],[-127.00272915997586,53.299999779708784],[-127.00274424659378,53.30008088799494],[-127.00286515392925,53.300264173367836],[-127.00297533157769,53.300431307469005],[-127.00307893938371,53.300598496948545],[-127.00322097878417,53.300760879989845],[-127.00337405495586,53.300913650446375],[-127.00357833337009,53.301045255632594],[-127.00374315634241,53.301177749655196],[-127.00393924017787,53.301320072040056],[-127.00413821689015,53.301465721969706],[-127.0042540014509,53.30163113128564],[-127.00436514869017,53.30179881159266],[-127.00445362223475,53.30196164609271],[-127.00456670426152,53.302131559656395],[-127.00468729203581,53.30230084491887],[-127.00473579132759,53.30248194418387],[-127.00472407587286,53.30266131193948],[-127.00470279063916,53.30283291762494],[-127.00460999853149,53.303002322572546],[-127.00444452839909,53.303158905885034],[-127.00428223043563,53.3033300187302],[-127.00427352643912,53.30351720388198],[-127.00432824986204,53.30368368500337],[-127.00459787716754,53.303756473533],[-127.00484109875268,53.303864782824114],[-127.00511792798623,53.303923499419575],[-127.0054205104819,53.30391926235292],[-127.00572144016385,53.30392455767066],[-127.00602008957885,53.3039130651112],[-127.00631957750183,53.30389763871321],[-127.00661920063125,53.303887256823366],[-127.00691767585323,53.3038684851732],[-127.00721717661104,53.30385362109371],[-127.00751758425875,53.30383706343938],[-127.00781723342409,53.30382779872944],[-127.00811537604005,53.30383479675312],[-127.00841953408724,53.30385686427039],[-127.00871385582995,53.30390030270169],[-127.00892734390052,53.3039836420834],[-127.00920073246526,53.304095038614776],[-127.00941537678209,53.30422599002618],[-127.00963369958339,53.30435410423006],[-127.00986371274136,53.304459710061074],[-127.01012836081821,53.30455885406878],[-127.01038894084186,53.30464571633982],[-127.01067152929511,53.30470885280451],[-127.0109666037037,53.304744436296644],[-127.01126331832891,53.30476936549835],[-127.01156679819383,53.30476342005763],[-127.01186639931082,53.30475190473637],[-127.01216682507548,53.3047358999126],[-127.0124661283959,53.304712616620584],[-127.01276047100747,53.30467817953516],[-127.01315204063661,53.304660274616054],[-127.01341291524015,53.304602583382675],[-127.01362397742786,53.304505545881916],[-127.01387364494013,53.3044115397605],[-127.01414721704288,53.30433470015119],[-127.01442280394743,53.30426288014742],[-127.01470237667446,53.304201109316985],[-127.01499075130724,53.304153263504425],[-127.01528986188364,53.30412157594154],[-127.01559224241021,53.304108906982954],[-127.01589037470484,53.30411532091009],[-127.0161869528971,53.30413463682123],[-127.01648370504694,53.30416178455764],[-127.01677966048419,53.30419454949363],[-127.01707479188605,53.304231793511946],[-127.01736904410899,53.304271849890284],[-127.01766144425825,53.30431304184273],[-127.01795330308815,53.30437104418447],[-127.01828436681545,53.30441694967308],[-127.01852524722145,53.30450451885423],[-127.0188484951904,53.304499505702395],[-127.01901549883439,53.30436977921568],[-127.01926674910483,53.30426398801616],[-127.0195442335532,53.30419326019745],[-127.01982748980366,53.304128640055396],[-127.0201030793436,53.30405737144633],[-127.0203556093318,53.303966123546985],[-127.02055631937876,53.30383051204345],[-127.02074844022039,53.30368992756933],[-127.02095287823072,53.3035537186188],[-127.02114027786014,53.30341205361849],[-127.02126810855069,53.30325633488923],[-127.02130618877351,53.30308234042043],[-127.02149611568204,53.30296754344872],[-127.0216407477562,53.3027685386175],[-127.02178516913749,53.302637890762206],[-127.02191993229403,53.30249723295421],[-127.02206271244567,53.302338023322775],[-127.022232076763,53.30218978903143],[-127.0224261455454,53.30205254614877],[-127.0226401458943,53.30192297435044],[-127.02279948741763,53.301788270688256],[-127.02291455440503,53.301610251203606],[-127.02301497663157,53.3014491642336],[-127.02316448446308,53.301296062046426],[-127.02334806540695,53.30115330571271],[-127.02353163296814,53.301009428755236],[-127.02368095903165,53.30084959585092],[-127.02382656741844,53.300690924182234],[-127.02405237572339,53.30058421228991],[-127.02435925160113,53.30052554416746],[-127.02461976039565,53.30045383005061],[-127.02486143985975,53.300342506878415],[-127.02508881026384,53.300222898957294],[-127.025329690853,53.30011717490454],[-127.02560634049554,53.30005260653522],[-127.0259227573509,53.30000000982583],[-127.02616845476649,53.2999385041044],[-127.02646705023652,53.29988718930867],[-127.02676510644075,53.29985267598778],[-127.02706730305134,53.2998338211719],[-127.02736473847334,53.29981275693589],[-127.02766214781519,53.29979001600578],[-127.0279775543055,53.29977328543312],[-127.0282463603151,53.29973453980523],[-127.02853901308677,53.29967094641424],[-127.02883848996755,53.29965658340715],[-127.02912687237185,53.299610952527416],[-127.029409192087,53.29954800224445],[-127.02969254021217,53.29948840367432],[-127.02996906945127,53.29941933536289],[-127.03023780675305,53.29933913858662],[-127.03050360671755,53.2992544759666],[-127.0307762923687,53.29918208674606],[-127.03106752323728,53.29913753784787],[-127.03136177058171,53.29910136979358],[-127.03165803379223,53.29907078568017],[-127.03195651858276,53.29905419146755],[-127.0322550715457,53.29904039252164],[-127.03254533905347,53.29899529261083],[-127.03283058443482,53.298937346146296],[-127.03310034273574,53.29886049523322],[-127.03335939893492,53.2987691621621],[-127.03363683602782,53.29869952155622],[-127.03389211767272,53.298607664411364],[-127.03412525744892,53.29849415544766],[-127.03436796987519,53.29838839673833],[-127.03464058836009,53.29831375821582],[-127.0348938074032,53.29821462949833],[-127.03514537959846,53.29812504278941],[-127.03540088825525,53.298042708547506],[-127.0356614838613,53.29793791164331],[-127.0359013504331,53.29783106305142],[-127.03617359111067,53.29774129382091],[-127.03645046988304,53.297687337525545],[-127.03671159751764,53.297604386659614],[-127.03693807000985,53.29748812462435],[-127.03713112330371,53.29735030094858],[-127.03734036267977,53.297221308034615],[-127.03758882177891,53.29712053880352],[-127.03784788513421,53.297030316060386],[-127.03809617789872,53.296922268813574],[-127.03835338720519,53.296833181585555],[-127.03859909919733,53.296735239781576],[-127.03872770972454,53.296690973498166],[-127.03886998547519,53.296667320156544],[-127.03903608979056,53.296657468145725],[-127.0391867377394,53.29666847482021],[-127.03948682576457,53.29667929376668],[-127.03960622311034,53.29668104522253],[-127.03977536931608,53.29664146939355],[-127.04004696455732,53.29656458629037],[-127.04031956099237,53.296489925701636],[-127.04059894882026,53.29642361275372],[-127.04087836229711,53.29635898405679],[-127.0411616588746,53.29629879344904],[-127.04142844809392,53.29621746750328],[-127.04170005131137,53.29614113622164],[-127.04196877287846,53.296062024006446],[-127.04222686080185,53.29597068860435],[-127.04249106833758,53.295899457889824],[-127.04264550671883,53.295873452318716],[-127.04279541928155,53.29585477363926],[-127.04309283275511,53.2958342345542],[-127.04323140002904,53.29581284938814],[-127.04336068700094,53.29575793234163],[-127.04354702962745,53.29561623975645],[-127.04373433082037,53.295475658874764],[-127.04383814162445,53.295417039167226],[-127.04398090015854,53.29537489256676],[-127.04411828260955,53.295343988519136],[-127.04427008563465,53.295325847068476],[-127.04456970795985,53.29531817438505],[-127.04486285202775,53.2953531257931],[-127.04515516169957,53.2953920098552],[-127.04544926789492,53.29542751605846],[-127.04559728231018,53.29544582512707],[-127.04574500397261,53.29545292320122],[-127.04604142552992,53.2954301445399],[-127.04632864766563,53.29537719423913],[-127.04661389144655,53.29532089934373],[-127.04690015119756,53.29526740038724],[-127.0471943717673,53.29523174865639],[-127.04746452514243,53.295172788140896],[-127.04773785087363,53.29509082544522],[-127.04801531072711,53.29502339138592],[-127.04829080574783,53.2949531684229],[-127.04859042469533,53.294945485594006],[-127.04888973663137,53.29496356595845],[-127.04917852572333,53.295011999482924],[-127.04947260479375,53.295046375531946],[-127.04976580677166,53.295083555237284],[-127.05004832048154,53.29514380231182],[-127.05033352096913,53.295198987440365],[-127.05062761611794,53.29523391624369],[-127.0509208764393,53.295273342449434],[-127.05120960010203,53.29531896605408],[-127.05148308412096,53.295393855443464],[-127.05176652039378,53.29545352558862],[-127.05205261532268,53.2955070135488],[-127.05221288228094,53.29552688203487],[-127.05234743790437,53.295532977086054],[-127.05244035538766,53.29552822760577],[-127.05251584395282,53.29550235305441],[-127.0526095089473,53.29545222330973],[-127.0528177313145,53.29532208211009],[-127.05301833678034,53.29518865569826],[-127.0532256653764,53.29506076255769],[-127.05345781438099,53.29494834404015],[-127.05369280236873,53.29483645560136],[-127.05390378780359,53.29470461169708],[-127.05411896397794,53.294590092612765],[-127.05438326428302,53.294485785665],[-127.0546327117914,53.294388897399315],[-127.05491389936817,53.29432141395324],[-127.05519916760375,53.29426621847042],[-127.05549434840142,53.29423222265195],[-127.05579271939426,53.29421276352402],[-127.0560924156021,53.2942084133931],[-127.05639072254631,53.294224251851325],[-127.0566883359671,53.29424961504117],[-127.05698749221631,53.29426151840475],[-127.05728746932844,53.29426836721913],[-127.05758734750073,53.29427186378329],[-127.05788695969105,53.29426414853586],[-127.05818640234473,53.29425027607022],[-127.05847769678003,53.294210705214425],[-127.05876691386287,53.29416387374087],[-127.0590652968082,53.294144962007245],[-127.0594226796432,53.294155219476835],[-127.05971939045479,53.29418170358266],[-127.06001689301362,53.29420257764945],[-127.06032290841299,53.29415111063054],[-127.06044292293318,53.293990370788194],[-127.06058651839083,53.29383279049754],[-127.06069035348091,53.29366435173784],[-127.06085480057475,53.293513863246176],[-127.06102493944371,53.29336612924747],[-127.0611363456083,53.293199307534586],[-127.06119675962705,53.29302341312564],[-127.06137260409193,53.29287786846874],[-127.06146508863509,53.29270673371693],[-127.0615311671537,53.29253135314471],[-127.06157462446329,53.29235393385718],[-127.06161901426898,53.29217594149148],[-127.06173041494331,53.29200911911966],[-127.06184085369841,53.29184174948071],[-127.06197116928466,53.291680359933295],[-127.06212516289311,53.29152603685935],[-127.06229529012114,53.29137773617677],[-127.0624246565373,53.29121579881397],[-127.06251430790289,53.29104412367235],[-127.06259545315011,53.29087084837125],[-127.06263607925416,53.29069289808281],[-127.06265848088901,53.290499980316795],[-127.06272736199898,53.290324573723105],[-127.06282110680108,53.29016630700108],[-127.06286831425176,53.28998885338685],[-127.06291176435965,53.28981087762648],[-127.06297876430848,53.28963548764558],[-127.06306935625743,53.28946436818172],[-127.06310715385048,53.289285878191585],[-127.06312423931017,53.28910645317549],[-127.06311970996767,53.28892665697023],[-127.06313681026009,53.288747231784626],[-127.06317083402175,53.288568775491385],[-127.06323312711878,53.288392871631366],[-127.06332087627953,53.288220656839684],[-127.06340297375928,53.28804792787336],[-127.06351530265121,53.287881659707196],[-127.06368539527344,53.28773335689056],[-127.06389259844302,53.28760320424408],[-127.06409218604462,53.28746920237131],[-127.0642623042459,53.28732146314223],[-127.0644571138931,53.28718469783209],[-127.06469012236569,53.28707168383555],[-127.064943260122,53.286974739848084],[-127.06519064681702,53.286873356131025],[-127.06542651893179,53.286762555850686],[-127.06563467238644,53.286633520896586],[-127.0658781988264,53.28652825324274],[-127.06614003330816,53.286440747911264],[-127.06641054039223,53.28636212771168],[-127.06668591995239,53.286290741567996],[-127.06696425189303,53.28622437476187],[-127.0672385703622,53.28614795929426],[-127.06747127039515,53.28606071285487],[-127.06774008977192,53.28595241721345],[-127.06797496049313,53.28583993555592],[-127.06819648081245,53.2857191746158],[-127.06840460636116,53.2855895701567],[-127.06855762256987,53.2854352556071],[-127.0686189557522,53.28525991278006],[-127.06856564025277,53.28508391669823],[-127.06846737671054,53.28491393634539],[-127.06834669627857,53.28474919519229],[-127.0682418936494,53.284580949681995],[-127.0681342953082,53.2844132849707],[-127.06804164294259,53.284242133297745],[-127.06801273779432,53.284027821853044],[-127.06804296562885,53.283848841915294],[-127.06812694234716,53.28367721259287],[-127.06826572710294,53.28351797972911],[-127.06843200065317,53.28336802763749],[-127.06859034593171,53.28320245132161],[-127.06872948204585,53.28305722485513],[-127.06888911226835,53.28290508198841],[-127.0690781947243,53.28276556337764],[-127.0692663150054,53.282625497364805],[-127.06941352416544,53.28246562241437],[-127.06954766773278,53.282308670593906],[-127.06967981737768,53.28214781945308],[-127.06985557297641,53.28200169684265],[-127.07003703342791,53.28185888389673],[-127.07023466733077,53.281723768036834],[-127.07038575557975,53.28156833859909],[-127.07051400043152,53.281401919344674],[-127.07068510283335,53.28125807827078],[-127.07085059668444,53.28111540797906],[-127.07096457152929,53.28094182944382],[-127.07113842474546,53.28079515721044],[-127.07133223611739,53.280657832950034],[-127.07151083290809,53.28051336719549],[-127.07166191143143,53.28035850075353],[-127.07179972584046,53.28019870731742],[-127.07194893796225,53.280044422027544],[-127.07208954645255,53.27988404723177],[-127.07226529839906,53.27973847650322],[-127.07242394243181,53.27958578155643],[-127.0725664830428,53.27942762958865],[-127.0727355780574,53.27927932158267],[-127.07290857127128,53.27913658037184],[-127.07309303369347,53.279001578415695],[-127.07324503363908,53.278846145659735],[-127.0734433761677,53.278702609699025],[-127.07364002350236,53.278566940892475],[-127.0738509649444,53.27843897667687],[-127.07406190533567,53.278311021039656],[-127.07427665817566,53.278185262459125],[-127.07449812030106,53.278064489286294],[-127.07476583842619,53.2779528252587],[-127.07492082390002,53.27780464165655],[-127.07496608887195,53.27762663440007],[-127.0749839803631,53.277443837425395],[-127.07500400686985,53.277271105233105],[-127.07500873495317,53.27708787168465],[-127.07500695224144,53.276907493752915],[-127.07502401129304,53.276728621368186],[-127.07507681614199,53.276552230840835],[-127.07519276818523,53.276383676215076],[-127.07532582425142,53.27622280076147],[-127.0754816197993,53.27606957128906],[-127.07562888321706,53.27591304856272],[-127.07572505807093,53.275742987373924],[-127.07579292915156,53.27556758031566],[-127.07584101243958,53.275390111633314],[-127.07587497173604,53.2752116504753],[-127.07588135990778,53.27501999367045],[-127.07596171625248,53.27485567787679],[-127.07613350618425,53.27470342284284],[-127.07621931012802,53.27453176995828],[-127.07625609209569,53.27435328299699],[-127.076281589845,53.27417434258137],[-127.07628935018914,53.27400003587225],[-127.076189892719,53.27381998755889],[-127.07598564816173,53.27369354192005],[-127.07572505244192,53.273604590898124],[-127.07546428230846,53.27354532865746],[-127.07518015628402,53.2734907592771],[-127.0749463776755,53.27338474773111],[-127.07469109275951,53.2732828565656],[-127.0744867556169,53.273152492079056],[-127.0743250776386,53.27300045232863],[-127.07414111854739,53.2728586981685],[-127.07392659076295,53.27273347151271],[-127.07370826406458,53.27260714941405],[-127.07345870783625,53.272508009438695],[-127.07323400268726,53.27238903165345],[-127.07301575113297,53.27226551325161],[-127.0727892272506,53.272148792000124],[-127.07253964720374,53.27204852090205],[-127.07228823225405,53.2719505157512],[-127.07203590099833,53.27185307409948],[-127.07179095556097,53.2717505186557],[-127.07156624504066,53.27163098204462],[-127.07136933862742,53.27149661904817],[-127.07127674401481,53.27132714458704],[-127.07126651919438,53.27114628666086],[-127.0712422583725,53.27096723162253],[-127.07119829817684,53.27078947483311],[-127.0711580802953,53.27061111952456],[-127.07114038616909,53.27043200515411],[-127.0711405127052,53.27025217417679],[-127.07113877592779,53.27007235103629],[-127.07112387765402,53.2698926556321],[-127.07109867159794,53.26971360899127],[-127.07107436957112,53.269532868994375],[-127.0710219954494,53.26935687314126],[-127.07094896369402,53.269180498958185],[-127.07087793764626,53.26900970893963],[-127.07079461277914,53.26883510373505],[-127.07071039981412,53.268662191652794],[-127.07059629430276,53.26849627195902],[-127.07046353798664,53.26833500224148],[-127.07032612281654,53.26817545956775],[-127.07018683043881,53.268015924695995],[-127.07005314498694,53.26785522759978],[-127.06992037773662,53.26769395735643],[-127.06979694544292,53.26752979716528],[-127.06977082829836,53.267351878764245],[-127.06988971428004,53.267187783889156],[-127.07003126172498,53.26702907789906],[-127.07016526878417,53.26686876350197],[-127.07027844617883,53.26670247872042],[-127.07037274436142,53.266531873273905],[-127.07047363570497,53.266362337684384],[-127.07054152689938,53.26618805312159],[-127.07056985402514,53.26600852311076],[-127.07055844552325,53.26581814690348],[-127.07027625574867,53.265763548624264],[-127.07001617934127,53.26561854833083],[-127.06994300655944,53.26547354759091],[-127.06989808365272,53.265294122377846],[-127.06986163227636,53.26511573225876],[-127.06981206464108,53.26493858979432],[-127.06970638798838,53.26477090787518],[-127.06954292411635,53.26462056267474],[-127.0693478638837,53.26448338286529],[-127.0691639586017,53.264341620365414],[-127.06902376518363,53.26418321254914],[-127.06893675876465,53.26401088882088],[-127.06887876763096,53.26383437754419],[-127.06887328436582,53.26365515232366],[-127.0688950510765,53.26347623737158],[-127.06889050014048,53.26329644796833],[-127.06889252883289,53.26311659031479],[-127.06891334900337,53.262937692796314],[-127.06894262631684,53.262758710105295],[-127.06893995303322,53.26257890372058],[-127.06892976846713,53.262399156021715],[-127.06894683333343,53.262219727540554],[-127.06898363531377,53.26204124169382],[-127.06903079972403,53.26186434763882],[-127.06909772992412,53.26168895167345],[-127.06916842909585,53.261514077439884],[-127.06922594119473,53.26133764575683],[-127.06929006068886,53.261162274948255],[-127.06936924301485,53.26098900926597],[-127.0694267535598,53.26081257743732],[-127.0694503943786,53.260633654156415],[-127.06945898493815,53.26045373707634],[-127.06947322274704,53.26027433379206],[-127.06949686306768,53.26009541045176],[-127.06949876147623,53.259910516010464],[-127.06958109074225,53.25975010258825],[-127.06979163858347,53.259609830954396],[-127.07003366922595,53.259489434479505],[-127.07023215909881,53.259354873110766],[-127.07043444450119,53.25922250912096],[-127.07064529926757,53.259094558279635],[-127.07088770881487,53.258988722667304],[-127.07113491754266,53.25888733405892],[-127.07141806102862,53.258833235906586],[-127.071717646707,53.258834447329114],[-127.07200471491632,53.25878703513373],[-127.07226646438464,53.258703440262565],[-127.07248860481866,53.25857649554868],[-127.07274057912687,53.2584784218493],[-127.07299355526395,53.2583825705162],[-127.07324749090324,53.25828727466613],[-127.07349947584702,53.25818975496613],[-127.07374379345967,53.2580855812812],[-127.07396893468174,53.25796645878795],[-127.07421611566913,53.257864499118774],[-127.07447099084159,53.25776974781836],[-127.07476662482509,53.25768975757959],[-127.07497982108826,53.257580825548],[-127.07515260377492,53.25743359860789],[-127.07525629128925,53.25726514394752],[-127.07531189464144,53.25708872594083],[-127.07534301853761,53.256909733070515],[-127.07534338448353,53.256739418021674],[-127.07536579476428,53.256550410875995],[-127.07533870118982,53.25637138091121],[-127.07528818961048,53.25619424836838],[-127.0752181426243,53.25602457143083],[-127.07513663173194,53.25584715502536],[-127.0750673745843,53.25567186845833],[-127.07501686475123,53.25549472677362],[-127.07499258200143,53.25531567118037],[-127.07498425110225,53.25513591527077],[-127.07499095390592,53.254956578874676],[-127.07500986744651,53.25477713181385],[-127.07504286811151,53.25459811283214],[-127.07509469987643,53.25442117308062],[-127.07516064689106,53.25424578159008],[-127.0752256621692,53.254070398486604],[-127.07528031588566,53.25389342405168],[-127.07532932221018,53.25371650972542],[-127.07537080490167,53.25353853412189],[-127.07540192593235,53.253359540904164],[-127.07542364553835,53.25318006816769],[-127.07544725645603,53.253001134018206],[-127.07548026825553,53.25282267933727],[-127.0755320960098,53.25264573923042],[-127.07560180723661,53.252470868917655],[-127.07567717923615,53.25229651193181],[-127.07574878097502,53.25212218906666],[-127.07582132828324,53.25194785756172],[-127.07590682679091,53.25180254087801],[-127.0759899946853,53.251602906694664],[-127.07607573813553,53.25143069622361],[-127.07614921403353,53.25125635600846],[-127.07621513820597,53.25107984328872],[-127.07631410609909,53.25091087402738],[-127.07641116740577,53.25074080148634],[-127.07654849544863,53.250567001985964],[-127.07662605144657,53.250404949572456],[-127.07672500172364,53.2502354153193],[-127.07685229521798,53.250072911240245],[-127.0770127741613,53.249923551416785],[-127.07723216036192,53.24980111256781],[-127.07745249055475,53.24967922047571],[-127.07767281947609,53.2495573279665],[-127.0779084504956,53.24944650074638],[-127.07812973656218,53.24932571912998],[-127.07837493675856,53.249222082591544],[-127.07862013598071,53.249118454502344],[-127.07887593763287,53.24902536951008],[-127.07916655659338,53.24897286013945],[-127.07962508991248,53.248877928909465],[-127.0797750197743,53.248867044617036],[-127.07969063725011,53.248687971569616],[-127.07969660284066,53.24851704888777],[-127.07961518771526,53.24834355114225],[-127.07951419921818,53.24817584282267],[-127.07934632252248,53.24803506983375],[-127.07918381992408,53.24788471916698],[-127.07908001165326,53.24771647139694],[-127.07895380781012,53.247553473882775],[-127.0788354994332,53.24740552639209],[-127.07869021166502,53.24723036793715],[-127.07855191722615,53.247071397127314],[-127.07841545729201,53.24691128899483],[-127.07829858658174,53.24674596494569],[-127.07817425130592,53.24658238486449],[-127.07800247395811,53.246435478296746],[-127.07780655276619,53.24629943990572],[-127.07761249632175,53.246162263772305],[-127.07741556093208,53.246022872517],[-127.07735019316513,53.24585259774775],[-127.0773379999549,53.24566894996239],[-127.07737008120958,53.24549105815532],[-127.0774087100396,53.24531255108593],[-127.07744922994135,53.24513459152703],[-127.07749255725165,53.24495659746664],[-127.07753589944127,53.24477861219898],[-127.07757641806666,53.24460064358502],[-127.07761981584312,53.24442545445936],[-127.07758044204607,53.24424317398927],[-127.07748316818959,53.244073189032626],[-127.07735417325192,53.24391020605225],[-127.07720844346308,53.24375410676564],[-127.0770256907985,53.243617947425626],[-127.07694869532676,53.24343320265253],[-127.07693680450376,53.24326132139365],[-127.07699047694541,53.24308379812801],[-127.07710078425414,53.24291864153136],[-127.0772602043489,53.242765372973444],[-127.0773657679315,53.24259801821199],[-127.07739969443165,53.24241955356663],[-127.07739605551764,53.24223975391725],[-127.07738301707973,53.24206003067569],[-127.07736250074726,53.24188094007003],[-127.07733540811894,53.241701909184705],[-127.07730456204324,53.24152291237384],[-127.07726527737974,53.24134455691536],[-127.0772092450688,53.241171391235945],[-127.07718206786421,53.24098899958196],[-127.07713155170298,53.240811857569994],[-127.07706887306362,53.240635955429546],[-127.07702398902367,53.240458206436784],[-127.0770250790475,53.240280039900796],[-127.07701096283056,53.24016811989158],[-127.0766933262097,53.240042704433286],[-127.07695096832335,53.239950170701256],[-127.07712940217418,53.239806804691604],[-127.07732302046784,53.2396700323109],[-127.07751662310977,53.23953269501173],[-127.07769502470582,53.2393882078965],[-127.07786868298089,53.23924208736065],[-127.07806324216638,53.23910530513372],[-127.07827301316918,53.23897678339524],[-127.07850954366376,53.238866501395336],[-127.07876912213293,53.238777307394734],[-127.07905101859345,53.2387164775862],[-127.0793443461997,53.23866226595851],[-127.07961393547876,53.238597064873765],[-127.07988703327962,53.23852286734699],[-127.08017686280685,53.238478769841734],[-127.08047368293433,53.238450850464865],[-127.08077061671175,53.23842797596537],[-127.08108511413644,53.23839430048717],[-127.08137020099646,53.238421389544506],[-127.08163349965143,53.23851422945937],[-127.08193112167173,53.23851823739871],[-127.08222400112948,53.23848307091977],[-127.08250099050373,53.238414434228794],[-127.08276538607672,53.23833022508471],[-127.08301145718151,53.23822657868945],[-127.08315479244499,53.23807007795095],[-127.08330663686496,53.237915749218025],[-127.08349925246819,53.237777290306994],[-127.08364298959833,53.23767289228285],[-127.08401798629951,53.2375831875738],[-127.08431577165656,53.23755693487388],[-127.08467386851326,53.23754021415013],[-127.0851226055225,53.237544507954176],[-127.08540743596839,53.2374892384197],[-127.08570621295529,53.23750163437862],[-127.08599734431974,53.23754490848361],[-127.08625770998471,53.23763328313483],[-127.08648799768493,53.23775610313619],[-127.08664996875679,53.237886280604776],[-127.08685451866138,53.238030069211455],[-127.0870656308515,53.238173797312],[-127.08725086896082,53.23829647303685],[-127.08746859733654,53.23840483998437],[-127.08764192873072,53.238502417843804],[-127.08795085274714,53.23858081484096],[-127.08827785321455,53.23863159773685],[-127.08852542537673,53.23873297493651],[-127.088772082194,53.23883491578954],[-127.08899829145109,53.2389807428492],[-127.08901018693805,53.23915094743388],[-127.08900168372553,53.23933085896893],[-127.08909336230786,53.23950145133616],[-127.0892698059721,53.23964661440142],[-127.0895082053459,53.2397553524971],[-127.08978500617543,53.239825084974804],[-127.09007436766863,53.239871726924086],[-127.09035747162321,53.239930751045776],[-127.09063786937914,53.23999428132687],[-127.09091103623254,53.240067961836665],[-127.09116776096721,53.240159720776994],[-127.09143184966432,53.240245244243134],[-127.09165164881799,53.240360872170996],[-127.09174892782158,53.24052916998904],[-127.09193926528741,53.24066692255028],[-127.09213890154744,53.24080066299426],[-127.0923376221229,53.24093553202385],[-127.09253078583241,53.241073248645435],[-127.0926961028437,53.24122299110436],[-127.09285398628053,53.24137560752701],[-127.09303602322471,53.241518472524774],[-127.09319948130674,53.2416687871728],[-127.0933796728276,53.24181278913931],[-127.09355519493637,53.241957954372964],[-127.09372238151366,53.24210712239788],[-127.09392018236358,53.242241997268074],[-127.09413462920281,53.24236775436426],[-127.09431704038674,53.24248820424955],[-127.09459673048093,53.2425959865006],[-127.09482039199615,53.24271437865283],[-127.0950863368905,53.24279875646233],[-127.0953449067003,53.242887692698815],[-127.09559988285893,53.24298337552073],[-127.09584835687524,53.243081367812934],[-127.09616005208437,53.24311938062161],[-127.09643557868245,53.24310226746105],[-127.0967424307525,53.2430624542811],[-127.09704205040026,53.24306976758218],[-127.09734021548083,53.24305692484939],[-127.09763744947566,53.243080510240475],[-127.0979369970859,53.2430844604936],[-127.09823645682094,53.24308560510872],[-127.09853594626777,53.24308731341745],[-127.09883542072365,53.24308902110905],[-127.09913499764983,53.243094088552525],[-127.09943461793583,53.243101395809575],[-127.09973339486176,53.24311207158861],[-127.10003057224542,53.24313341055079],[-127.10034202104505,53.24312603949032],[-127.10064508956174,53.243120986354626],[-127.10093902121616,53.24312610163495],[-127.10122936015262,53.24313685197789],[-127.10152892268967,53.24314191351415],[-127.10182852952875,53.243148094369346],[-127.10212781448158,53.243142507869884],[-127.1024258471066,53.24312461586695],[-127.10272377702641,53.24310279788241],[-127.10301768962502,53.243070932128035],[-127.1032985756132,53.24300724846667],[-127.10356295846455,53.242922993164576],[-127.10382827119697,53.242838728605115],[-127.10410627327126,53.24277283782806],[-127.10440010920725,53.242738163625106],[-127.1046959534665,53.24270851665758],[-127.1049887991769,53.242671618198834],[-127.10528369661125,53.24264197857771],[-127.10556264083105,53.242576066602936],[-127.10583568944334,53.24250068926941],[-127.10606931580848,53.2423892675853],[-127.10629143033427,53.242268424176636],[-127.106492854068,53.24214608816064],[-127.10673373459159,53.24202506880031],[-127.10695299363731,53.241902574490254],[-127.10715782991683,53.24176732429931],[-127.10739149266534,53.24165757580898],[-127.10761358476223,53.24153616528965],[-127.10783376962351,53.241413660625746],[-127.10805110086356,53.2412900527421],[-127.1082627568831,53.24116426546061],[-127.10843290097912,53.24103101338645],[-127.10860322592153,53.24086863559764],[-127.10883968782345,53.24075829322784],[-127.10909532784689,53.240664022597095],[-127.10936163491073,53.24058254173179],[-127.10963082222925,53.24050326532194],[-127.1098999789276,53.24042343281179],[-127.11016628292347,53.24034195012944],[-127.11043059112335,53.240255994598776],[-127.11069486903537,53.24016892722225],[-127.11095338291146,53.24007686655051],[-127.11119565612749,53.239973752569426],[-127.11140534525927,53.239845727927495],[-127.11158073649112,53.23969786451057],[-127.11172490217731,53.23954076488389],[-127.11185390556588,53.239378204760264],[-127.11202079618798,53.23922873510296],[-127.11223811880407,53.23910568399338],[-127.11246306512456,53.238986478187286],[-127.11268801003025,53.238867836676185],[-127.11290342301997,53.238743125950315],[-127.11309785122805,53.2386062774097],[-127.1133075281843,53.238477693544944],[-127.11354684586473,53.238370120312496],[-127.1137880538879,53.23826309355325],[-127.11403791961158,53.2381643841638],[-127.11431682061692,53.23809845144596],[-127.11461485670883,53.23808220460982],[-127.1148994606914,53.238126034143505],[-127.11507229302039,53.23827343463405],[-127.11522653710598,53.2384277326382],[-127.11538914587932,53.238579146052004],[-127.11559528911165,53.23870830458676],[-127.11583281997088,53.23881756329946],[-127.11607864188476,53.238920576321576],[-127.11632628218167,53.23902188650217],[-127.116579421047,53.23911755090134],[-127.11682802448921,53.23921941570552],[-127.11706968494613,53.239342634751054],[-127.1172560370949,53.23950390640375],[-127.11738728407947,53.23963993462989],[-127.11757773050213,53.239778757352845],[-127.11779315148257,53.23990334270303],[-127.11805485540793,53.24000340522786],[-127.11847513686108,53.240243144759454],[-127.11872188967571,53.24034558782072],[-127.11896861378183,53.240446901189046],[-127.11921811729398,53.24054707629111],[-127.11948040334353,53.24063311957694],[-127.11975362430947,53.240707289391665],[-127.12004036565963,53.240760050502566],[-127.12033238140744,53.240799306227075],[-127.120627027382,53.240831257664446],[-127.12092594219564,53.24084748113035],[-127.12122543139417,53.240850252503776],[-127.12152466802516,53.240842941075954],[-127.12182054647782,53.240815491789114],[-127.1221173554326,53.240788032955926],[-127.12241120753411,53.24075499889606],[-127.1227019240722,53.240709668363664],[-127.12298479032941,53.240652086023445],[-127.12326564514329,53.24058891958502],[-127.12354064525564,53.24051796448514],[-127.12378472247636,53.24041313119693],[-127.12397984563096,53.24026785887193],[-127.1242225798496,53.240183762025296],[-127.1245166348044,53.24015856421664],[-127.1248233579684,53.24015060869355],[-127.1251263275226,53.240143252717004],[-127.12542675789044,53.24014600450854],[-127.12572326511574,53.240177369861335],[-127.126015666161,53.2401605832511],[-127.12629448715018,53.240092391118516],[-127.12657599534373,53.24001912608524],[-127.12686450165064,53.239926745468225],[-127.12706223122491,53.23984419084701],[-127.12723891058558,53.23964137830652],[-127.12738429257253,53.23949713770098],[-127.1276111199292,53.23937957014665],[-127.12784941546016,53.23927029230298],[-127.12809445037675,53.23916711705941],[-127.12836068144566,53.23908447326214],[-127.1286464414474,53.239030211145796],[-127.12893824985977,53.238991577691486],[-127.12923196438012,53.23895404585851],[-127.12952476238833,53.23891707778793],[-127.12981957158064,53.238885701271265],[-127.1301174574468,53.23886381443101],[-127.13041439537484,53.23887667125323],[-127.13067397608945,53.2389666330201],[-127.13084219772259,53.239114619707586],[-127.13099741819774,53.23926832366614],[-127.1311869919168,53.23940769802365],[-127.13141998757598,53.239520886410475],[-127.13169766671825,53.23958546661658],[-127.13199581116807,53.239608392477855],[-127.13228152429306,53.2396572076951],[-127.13253048419213,53.239736070853716],[-127.1327628398687,53.23989520308447],[-127.13288618058601,53.240049773836986],[-127.13299297683987,53.24021682797444],[-127.1330259194832,53.24039522785419],[-127.13301949534707,53.2405756890471],[-127.13299706606786,53.24075462686873],[-127.13295585344127,53.240932614651165],[-127.13290521167013,53.24110958094264],[-127.13285647619226,53.2412870847481],[-127.13280867120412,53.24146457962519],[-127.13277308767678,53.24164307822453],[-127.1327670226841,53.24183698178155],[-127.13267462287679,53.24199640983207],[-127.1325806759756,53.242168742735544],[-127.13241940208837,53.24231539128527],[-127.13222877287279,53.24245222643181],[-127.13211025892153,53.24261863518977],[-127.13204545226468,53.24279236567012],[-127.13201803283695,53.24296014573812],[-127.1320119041594,53.24315180870731],[-127.13200640610108,53.24333169597024],[-127.13201496238192,53.24351089330688],[-127.13199725709346,53.24369090601221],[-127.13198422131921,53.243870309400315],[-127.13197025447795,53.24404972165527],[-127.13195723349382,53.24422912486331],[-127.13194233532667,53.24440910173219],[-127.13193024508146,53.24458849601827],[-127.13194257034117,53.244768221999514],[-127.1319417418022,53.244947508772405],[-127.13189957464395,53.24512550482373],[-127.13183953839334,53.2453019951057],[-127.13178983271283,53.24547895148675],[-127.13177586451428,53.24565836356727],[-127.13178631218166,53.245838098412825],[-127.1318080071456,53.24601717015178],[-127.1318607257002,53.246198186808584],[-127.13187390711575,53.24637454300063],[-127.13185223561254,53.24654674083799],[-127.13199108906117,53.246719091970846],[-127.13220573208933,53.246846464565046],[-127.1324092189225,53.24697841628909],[-127.13261733222916,53.24710752674178],[-127.1328346819541,53.24723094615968],[-127.13306036710773,53.247349803591604],[-127.13328324555005,53.24746925214344],[-127.13347377949525,53.24760804876618],[-127.13365134061854,53.24775258049558],[-127.13381313542509,53.247904541382205],[-127.13394231510497,53.2480657777814],[-127.13400432565925,53.24824222260634],[-127.13404196412642,53.24842057665834],[-127.13410863085741,53.24859585639768],[-127.1341837226894,53.24876993503889],[-127.13427281113773,53.24894108303518],[-127.13437965041703,53.249109255490616],[-127.1344911608684,53.249276262676],[-127.13458772996839,53.249446209410905],[-127.13466001718119,53.24962087925983],[-127.13472855038661,53.24979557600199],[-127.13481205665708,53.249968453196665],[-127.13488904619382,53.250143077889504],[-127.13496136570281,53.250318858732],[-127.13503183894193,53.25049578664028],[-127.13510509075053,53.2506715584534],[-127.13518392990377,53.25084504472516],[-127.1352730116065,53.251015627202385],[-127.13537511429385,53.251181603017734],[-127.13552003318263,53.25133372301016],[-127.13573660241545,53.25146218232101],[-127.13596428597889,53.25158437659579],[-127.1361973465817,53.25169755501709],[-127.13643042345147,53.25181073283003],[-127.13663023817712,53.251944397720756],[-127.13678372512732,53.2521003602775],[-127.13694457154769,53.25225120541286],[-127.13715644912688,53.25237915135937],[-127.1374070121579,53.25247926953582],[-127.13768116692428,53.2525489166761],[-127.13796352133237,53.25260895588615],[-127.13825042634018,53.25266390407976],[-127.13853640114827,53.25271942523976],[-127.13881697120647,53.252782841031305],[-127.13907573955238,53.25287392199636],[-127.13927836095642,53.25300643504136],[-127.13935810731626,53.253178224603985],[-127.13938359282571,53.25335725820629],[-127.1393555664563,53.25353624101658],[-127.13926722299394,53.253707403881315],[-127.1391108254302,53.253861292311115],[-127.13891163472977,53.25399542254373],[-127.13868668313617,53.254114677567046],[-127.13848652851934,53.25424769580681],[-127.13833296487041,53.254402676413825],[-127.13822759816134,53.25456951975833],[-127.13820052746783,53.25474961344704],[-127.13817625022077,53.25492856878553],[-127.13815572755497,53.255108043841844],[-127.13814272943348,53.25528744668875],[-127.13814479601805,53.255468945968595],[-127.13814497001202,53.25564934290004],[-127.13812063159259,53.25582661350858],[-127.1379747215968,53.25598712247155],[-127.13793615789031,53.2561589270118],[-127.13796010867712,53.256350856447526],[-127.13809111698768,53.256508153250735],[-127.13834850724815,53.256581877008045],[-127.13865115926527,53.25659297426681],[-127.13894953339022,53.25661980761644],[-127.13920475163933,53.256717080628206],[-127.13943793405443,53.256798313180965],[-127.13962142273239,53.25691700769751],[-127.13974043907228,53.257082252350166],[-127.13984644993496,53.257252668506],[-127.13994682909612,53.25742313867182],[-127.14002107488619,53.257599462299595],[-127.14011112162737,53.257770031592926],[-127.14026728493543,53.25791979661357],[-127.14059033746703,53.258129583937134],[-127.14087722311264,53.25818229418852],[-127.14116502525079,53.25823386548525],[-127.1414553949463,53.2582764564514],[-127.14175208665245,53.25831001300879],[-127.14204871824079,53.258340772669925],[-127.14234170132102,53.25837604867273],[-127.14260749128266,53.25844688568741],[-127.1428434161384,53.258559458872334],[-127.14308573960844,53.258665811746],[-127.14330959176338,53.25878299124345],[-127.14348262280198,53.258930904340275],[-127.14367232597338,53.25907025730269],[-127.14380655200233,53.25924151845287],[-127.1439475612995,53.25938582234651],[-127.14413914565891,53.2595251564263],[-127.14427954459752,53.259681791170905],[-127.1443369138183,53.259858274864555],[-127.1444755280027,53.260017732281426],[-127.14466894894278,53.260155362576114],[-127.14487159245986,53.26028674537025],[-127.14500930917013,53.260447887069496],[-127.14518290470879,53.26058179062797],[-127.14547781394673,53.2606176051558],[-127.14574548567225,53.26068840811463],[-127.1459454326182,53.26082374132159],[-127.14611190187907,53.26097171397097],[-127.14621323111574,53.26114104916958],[-127.14629859329706,53.26131053853337],[-127.14620934569808,53.261482279447115],[-127.1461991584677,53.26166053525014],[-127.146335892622,53.26181999966626],[-127.14645665962595,53.26197906243861],[-127.14656525673482,53.26217409825059],[-127.14666063820715,53.26233172985431],[-127.14675005261388,53.2624776494556],[-127.14686663806118,53.26265523574399],[-127.14686486529244,53.262832289703546],[-127.1469194708864,53.263009919202275],[-127.1469721690538,53.263187011340584],[-127.14702959980914,53.26336516921709],[-127.14706153651991,53.26353798004008],[-127.1471003423235,53.26372192033018],[-127.14700906294581,53.26388807882566],[-127.14686224288864,53.26404972738255],[-127.1468105174927,53.264219976360145],[-127.14698825495935,53.264366727252614],[-127.14714460387204,53.26452151908584],[-127.14723565591507,53.264692637783426],[-127.1472883572648,53.264869720664684],[-127.1473176391603,53.265048715158436],[-127.14734035629563,53.265227773104584],[-127.14736589825927,53.265407368442524],[-127.14740359335946,53.26558516103954],[-127.14745724298211,53.26576223461221],[-127.14751089329823,53.26593931710602],[-127.1475401919787,53.26611886705951],[-127.14755072714873,53.26629916316739],[-127.1476883214518,53.266454700304074],[-127.14787811810274,53.26659573076198],[-127.14806971768397,53.266733937783115],[-127.14827606783086,53.266861917408434],[-127.14852671268781,53.26696089115398],[-127.1487746256304,53.267062696515175],[-127.1489893618151,53.2671883527651],[-127.14898950610062,53.26736595258603],[-127.1489559231944,53.26754723142796],[-127.14892980619763,53.26772620595444],[-127.14894877574265,53.26790585546647],[-127.14898466261963,53.26808535013091],[-127.14908502808562,53.26825300665176],[-127.14922648188373,53.26841186604345],[-127.14938283885402,53.26856609898927],[-127.1495504040721,53.26871798219084],[-127.14975858541635,53.26884370053907],[-127.15004018045232,53.268905960042936],[-127.15031824928006,53.26897666117271],[-127.15059963214495,53.26906581302257],[-127.15087408417367,53.26914158562386],[-127.15102212833968,53.26930037898486],[-127.15114246087484,53.26944206898748],[-127.151223248795,53.269649139475504],[-127.15128255379628,53.26982615629054],[-127.15127516502265,53.27000326431347],[-127.15113857021608,53.270160901197016],[-127.15120906787394,53.27033501271427],[-127.15122241387446,53.270514160515255],[-127.15119460993331,53.27070043035966],[-127.15114185553816,53.270866773501794],[-127.15104408706453,53.271036349913636],[-127.1510355517477,53.271205625542116],[-127.1510750079062,53.27130889196649],[-127.15131055212508,53.271197355691825],[-127.15154995840224,53.27108970762869],[-127.15179218852363,53.270982596382666],[-127.1520411968799,53.27088269748375],[-127.15232327828627,53.27082449055448],[-127.15262146954416,53.27080590811622],[-127.15292037951968,53.270813653778866],[-127.15321751650639,53.27079059814879],[-127.15351589296831,53.27081346953802],[-127.15380060459901,53.27085159507277],[-127.15410316656254,53.270889555308024],[-127.15440320791221,53.2709045649027],[-127.15468848469133,53.27092868126079],[-127.15500324498623,53.270932341299265],[-127.15529949640802,53.27091153004122],[-127.15558163483563,53.27085555573952],[-127.15585963307798,53.2707856195147],[-127.15614253268053,53.27072292250721],[-127.15643349632927,53.27068087071133],[-127.15673035424675,53.2706477246194],[-127.15702331768331,53.27061013381086],[-127.1573054211058,53.27055303521785],[-127.15757261657978,53.27046583723881],[-127.1578369553412,53.270377537065436],[-127.15811539236743,53.270323842702325],[-127.15841399234027,53.27032036372154],[-127.15871871865343,53.27033476089626],[-127.1590185884464,53.2703435933311],[-127.15931760385513,53.27035523905024],[-127.15953713859405,53.27041416521749],[-127.15974630459321,53.270539856686405],[-127.15996750184708,53.27072761263261],[-127.16005892026635,53.27080739399249],[-127.1601765933101,53.27098776226837],[-127.16038283178544,53.2710412144507],[-127.16073207653493,53.27106860808059],[-127.16105551307383,53.27108001062203],[-127.1615071909278,53.27100724136735],[-127.16182558733506,53.27107415963792],[-127.16201171762717,53.27118214491315],[-127.16222837646728,53.271306638218796],[-127.16245651199407,53.271404682837726],[-127.16260760502469,53.27146819095875],[-127.16267408373247,53.2715627809537],[-127.16293402691814,53.27165604007804],[-127.1631791927376,53.27175839838875],[-127.16335095302368,53.27178753270023],[-127.16346939980247,53.271790853536885],[-127.16376920332031,53.27179631326753],[-127.1640674272863,53.271778822265034],[-127.16436692240052,53.27177364338035],[-127.16466638623697,53.27176678779966],[-127.16496609756221,53.27176944867939],[-127.16528492993137,53.271783681681555],[-127.1654846212676,53.27190609475257],[-127.16557757986779,53.272074939908244],[-127.16563409244948,53.27225030112826],[-127.16572893033245,53.272419118727605],[-127.16595833653629,53.272528913796805],[-127.16625320745715,53.27255963117034],[-127.16653930751828,53.27261340845996],[-127.16677995447509,53.27272140626619],[-127.16716412008861,53.272856569159856],[-127.16738838411862,53.27288181988615],[-127.16756051748204,53.272754067527806],[-127.1677263651844,53.272603411266644],[-127.16791889304766,53.272465938037286],[-127.168135245825,53.27234112005327],[-127.16835727819314,53.272217921990006],[-127.16860541644144,53.272121913878514],[-127.16889620625211,53.272073110327106],[-127.16917819493653,53.27201206740553],[-127.16942996149457,53.271979333767845],[-127.16972450624905,53.27186270619402],[-127.16996965898682,53.27176056639022],[-127.17021283925227,53.27165508405046],[-127.17045219992409,53.271547397889734],[-127.17069151265822,53.27143802648829],[-127.17092891520934,53.27132756190853],[-127.17116633193099,53.27121765245737],[-127.17139992902848,53.27110553923816],[-127.17164842540812,53.2709887964986],[-127.17184410021127,53.27086416665088],[-127.17207168608725,53.270738665549665],[-127.17227390886282,53.27061341452315],[-127.17249695995166,53.27049355979946],[-127.17271903210693,53.270372593821634],[-127.17294014100419,53.270251081166016],[-127.17316030141876,53.27012901272794],[-127.17337951335008,53.270006388512655],[-127.17359489084086,53.269881569776935],[-127.17380644799509,53.2697539827114],[-127.17401131405077,53.26962253524586],[-127.1742142698858,53.26948999478005],[-127.17441627766793,53.26935745436358],[-127.17463262647514,53.26923374451711],[-127.17483744080467,53.26910061979889],[-127.17503756631208,53.26896754113141],[-127.17520906885376,53.26881905869766],[-127.17536723636877,53.268663420398994],[-127.17552541913109,53.26850891116853],[-127.17569699550276,53.268362668208596],[-127.17590112080147,53.268239068033914],[-127.17617895906044,53.268165167970125],[-127.17644714103383,53.26808183431753],[-127.17667106716067,53.26796084217669],[-127.17693203599627,53.26782098963737],[-127.17697343226394,53.26765474638607],[-127.17699567470395,53.267475811909215],[-127.17706882352661,53.26730308646827],[-127.17728040470914,53.2671777335524],[-127.17756442970419,53.26712393758397],[-127.17786360817838,53.26710807827514],[-127.17816295919434,53.26709894841173],[-127.17847208320163,53.26706954292004],[-127.17874608181435,53.26702648386047],[-127.17905311569133,53.26702343365325],[-127.17940766873849,53.26700646447467],[-127.17964611892677,53.26693518855111],[-127.17987790133063,53.266826993219695],[-127.18012293765503,53.266722591816624],[-127.18037186963053,53.26662319783924],[-127.18065220789236,53.26650499824213],[-127.18090063765341,53.2664549008415],[-127.18118449649289,53.266395495283355],[-127.18145860447194,53.26632329596481],[-127.18168206126938,53.266219661859964],[-127.18188269117697,53.26607256439261],[-127.18214731237161,53.26599709644424],[-127.18244565479698,53.26601933058991],[-127.1827426740149,53.266027575488124],[-127.18303659144516,53.265992151311224],[-127.18332339406895,53.2659371931891],[-127.18358488909487,53.26585110399507],[-127.18377831319647,53.265715280024764],[-127.18393080391743,53.26555968626393],[-127.18409752722815,53.26540956169824],[-127.18424910065039,53.26525509712888],[-127.18435611215229,53.265085954922654],[-127.18447456192843,53.26492230089488],[-127.1846669382072,53.264783124314356],[-127.1849033980007,53.26467487210362],[-127.1851871290742,53.264611531801954],[-127.18540340616296,53.264487237446986],[-127.18560920511656,53.26435800962375],[-127.18585716299478,53.26425804875371],[-127.18600601188719,53.26410753518738],[-127.18612145514521,53.26393774218291],[-127.18622649864682,53.26376525625061],[-127.18641919422242,53.263637834169806],[-127.18667006540423,53.263541768591715],[-127.18693240657889,53.263452866477095],[-127.18719853366756,53.2633650463847],[-127.1875114461032,53.26327115498277],[-127.18769821668467,53.26316675572728],[-127.18789439200039,53.263029211837946],[-127.18812316600491,53.26291599212187],[-127.188334423706,53.26278053743181],[-127.1886572078547,53.262670857085254],[-127.18887589230262,53.26266586940081],[-127.18918112566257,53.26269978711148],[-127.18948037962093,53.26268837935684],[-127.18977800754581,53.26268539536353],[-127.19008848047378,53.26270525647313],[-127.19037605763558,53.262712456265795],[-127.19068441629294,53.26272392881688],[-127.19097732661872,53.26272042442645],[-127.19127997342288,53.26272915600077],[-127.19158254120232,53.262735081871234],[-127.19188010673346,53.26273040800503],[-127.19216951242242,53.262702293880736],[-127.19243174190916,53.262610019028926],[-127.19270285543489,53.26253334125774],[-127.19300420347761,53.26249613208075],[-127.19331183320267,53.26248183365966],[-127.1935924527296,53.26250870882912],[-127.1938147616599,53.26263196817874],[-127.1940507672716,53.26274164330269],[-127.19435193303967,53.26276438370522],[-127.19464855574095,53.26279277158073],[-127.19495955006298,53.26279748351054],[-127.19524797582383,53.26276824226931],[-127.19550830553536,53.26267542392796],[-127.19567007238922,53.262551094806504],[-127.19590640791728,53.26240697437696],[-127.1961140420491,53.26227770031119],[-127.19632547732874,53.26214951699911],[-127.19646655912805,53.26205788975868],[-127.19663832245388,53.26192169765747],[-127.19672925957295,53.26175046453074],[-127.19684099341481,53.26158406826933],[-127.19693573182649,53.261414472863045],[-127.19688104493909,53.26124134699618],[-127.19670507197975,53.261095780679526],[-127.19654954868086,53.26094327591092],[-127.19640237246547,53.26078676950107],[-127.19623754194946,53.26063660813532],[-127.19606897379617,53.26048759575531],[-127.19592274727196,53.260331079173774],[-127.19581000270502,53.260163584689316],[-127.1956387241886,53.2600179605142],[-127.19548320800143,53.25986489850112],[-127.1954209395469,53.25968905152373],[-127.19540647820821,53.25950991710277],[-127.19542202655585,53.25932935980292],[-127.19539939316465,53.25915982746371],[-127.19527606508974,53.258982910313954],[-127.19516894337877,53.25881479378485],[-127.19505811414089,53.258647834998904],[-127.1949053822122,53.258493623644924],[-127.19474179468598,53.25832103762009],[-127.19470520235481,53.258156127665465],[-127.19462238104983,53.25798328390441],[-127.19451247168568,53.25781575954889],[-127.19434502553388,53.25767233588684],[-127.19422653512167,53.257500415636265],[-127.19413530822446,53.25732933238965],[-127.19406463962564,53.257154689613124],[-127.1939874393718,53.25698122405744],[-127.19389433734958,53.256810168435635],[-127.19380696687517,53.25667602266327],[-127.19370537494673,53.256470316744156],[-127.19359925945281,53.25630386485158],[-127.19338832742417,53.256182731595686],[-127.19318640494909,53.256048626061926],[-127.19303345180553,53.25588600622803],[-127.19286866808358,53.25573639541031],[-127.19271035406763,53.25558335781267],[-127.19258368839247,53.255420482070654],[-127.19251678394811,53.25524579149109],[-127.19248731731668,53.255066807272286],[-127.1924625211969,53.25488722031611],[-127.19242463005214,53.25470887650309],[-127.19240172746245,53.254529826242106],[-127.19238447216429,53.254350719200055],[-127.19236250043889,53.25417110377577],[-127.19234991536511,53.25399138502379],[-127.19236175169901,53.25381198552865],[-127.19238202839725,53.2536325011779],[-127.1924023358803,53.25345358122946],[-127.19241792646417,53.2532741439383],[-127.1924429034339,53.25309461227558],[-127.1925027132178,53.25291864771789],[-127.19256723917296,53.252743200430956],[-127.19264495312466,53.25256930573681],[-127.19276612814681,53.25240504955692],[-127.1929460828804,53.25226093594459],[-127.19307580619787,53.25209996391304],[-127.19315258643283,53.25192663395611],[-127.19320940933336,53.25174454063687],[-127.19325345489207,53.25157545712277],[-127.19329727106972,53.251497701519654],[-127.19342707913567,53.251439814615345],[-127.19365015003349,53.25139330572927],[-127.19397525486896,53.25136874429694],[-127.19426508876823,53.251359103643075],[-127.19460471985035,53.25131703087956],[-127.19495112346576,53.251315782882095],[-127.19520336872861,53.25133789273087],[-127.19534696791891,53.2513358810508],[-127.19549544312795,53.25134055205353],[-127.19566947954775,53.25138585920165],[-127.19575888251107,53.25142641673247],[-127.19603950897313,53.25155580726397],[-127.19614983738118,53.25153956349895],[-127.19629405671698,53.251460238492555],[-127.1963644713251,53.25142703368316],[-127.19648734207341,53.25132326364357],[-127.19659201640533,53.251272905537526],[-127.19674430416141,53.25124671812027],[-127.19698679703292,53.25115631618938],[-127.19697576895443,53.25096594141688],[-127.1969486343094,53.250770682389536],[-127.19714242260623,53.25065163836348],[-127.19740163113248,53.25055489954591],[-127.19762753559303,53.25044280930418],[-127.19786476545855,53.250332845259884],[-127.19809528938224,53.25021846642683],[-127.19830378723864,53.250088622538726],[-127.19845525374164,53.24993413859305],[-127.198626691304,53.24978842564923],[-127.19885432237115,53.24967126873906],[-127.19905619011627,53.24953981417058],[-127.19923800409639,53.249396227435696],[-127.19939325102011,53.24924283342784],[-127.19955892367607,53.24909268631877],[-127.1997626793614,53.24896176713748],[-127.1999797637226,53.24883688002255],[-127.20000104055337,53.248826015461304],[-127.20033159136507,53.2485974487001],[-127.20042907898215,53.248427265324445],[-127.20055701227494,53.24827078453349],[-127.20082304724134,53.248184053378274],[-127.20104682992411,53.248064134183075],[-127.20120966896825,53.24791401326205],[-127.20139339361029,53.24777208885288],[-127.20159519645716,53.2476389450722],[-127.20178937736948,53.24750139611446],[-127.20190864132108,53.247337713754426],[-127.20197405070002,53.24716225140549],[-127.20208903016096,53.24707873317833],[-127.20238381424656,53.24711215733392],[-127.20266157201853,53.24717377511652],[-127.20292047438336,53.247265272517076],[-127.20319568194407,53.2473364347792],[-127.2034790094294,53.24739574418384],[-127.20376588444753,53.247447738080766],[-127.2040383504095,53.24752116725196],[-127.20433206452194,53.247549559652605],[-127.20463292001241,53.247564997414834],[-127.20492482167916,53.24759564778244],[-127.20519650327712,53.24767412010057],[-127.2054333858962,53.24778376398207],[-127.20567487400382,53.2478899990518],[-127.20591082804755,53.24799965143119],[-127.20614959057399,53.24810871901553],[-127.20641025618707,53.24819626469094],[-127.20670168046442,53.248242602735544],[-127.20694218045188,53.248347169027774],[-127.20718827977197,53.248449992604286],[-127.20745174077365,53.248536387058415],[-127.207682215986,53.24865113851234],[-127.20792369856245,53.24875680438277],[-127.20817893301816,53.24885113355556],[-127.2084414836512,53.24893809984948],[-127.20871038928652,53.24901771301055],[-127.20897655302824,53.249100159274064],[-127.20924637496195,53.24917865034849],[-127.20952523159222,53.24924527884657],[-127.20980225907377,53.24931304586243],[-127.21007848564605,53.249385858224734],[-127.21031531042155,53.24949269628136],[-127.2105356904002,53.24961482411034],[-127.21080826225008,53.249691033624806],[-127.21107988925802,53.24976726113075],[-127.2113542279183,53.24983953405999],[-127.21163039634529,53.24991010242317],[-127.21191543751085,53.24996266028889],[-127.2122135687671,53.24998033890011],[-127.21251333758592,53.24999016541249],[-127.21280887118075,53.250015712662766],[-127.21309758829011,53.25006542436301],[-127.21338972266044,53.25010333952469],[-127.21364943636107,53.25018920293284],[-127.21384030993107,53.2503295547827],[-127.21404867225891,53.25045795748652],[-127.2143075884217,53.250548874418804],[-127.21459271762528,53.25060422180689],[-127.21488663733545,53.250638744544965],[-127.21518145541737,53.25067158107099],[-127.21547879212326,53.25069430645804],[-127.21577821210607,53.25069180272446],[-127.21607307020051,53.250660767475324],[-127.21635089981052,53.25059292921654],[-127.21660539579133,53.250497316819796],[-127.21683397642686,53.25038235626924],[-127.21699104024204,53.25022892005879],[-127.21707715202791,53.25005659818943],[-127.21709356761522,53.249877147794244],[-127.21707149290214,53.249697527574895],[-127.21707290632212,53.24951823107651],[-127.21711752714639,53.24934017647135],[-127.2172225206322,53.24917157795862],[-127.2173862377656,53.249021434329734],[-127.2175870651271,53.24888827298989],[-127.21782134529177,53.248775492843414],[-127.21808651511306,53.248692657827306],[-127.21836726464727,53.24862870193954],[-127.21864803088967,53.248565874682384],[-127.21893977401113,53.24852533525488],[-127.21923679903203,53.24850491902168],[-127.21953477084138,53.248485048082],[-127.21983158592961,53.248457900464096],[-127.22011729160825,53.248403418265205],[-127.22039705799392,53.24833835607566],[-127.22064772840133,53.24824108876763],[-127.22089931158135,53.24814269996745],[-127.22118386517784,53.248113434107054],[-127.2214769891148,53.24815356016849],[-127.22177360724918,53.24818412066255],[-127.22206759461254,53.24815644076078],[-127.22234345623048,53.24808636735666],[-127.22262124249997,53.248017949750626],[-127.2229079699149,53.24796681176362],[-127.22319663749633,53.24791733832164],[-127.22348027955027,53.24785670189072],[-127.22371080185106,53.247745078072796],[-127.2239730804188,53.247660009501686],[-127.22426691673249,53.247627287809735],[-127.22456378660789,53.24760181293569],[-127.22486289154801,53.24758919568344],[-127.22516181278854,53.24760236040162],[-127.22546735999661,53.24761713220235],[-127.22569256117777,53.2477106048928],[-127.22593029706019,53.247815161731566],[-127.22620647659546,53.24788569623525],[-127.22648535031618,53.24795172914425],[-127.22677044540964,53.248005927158296],[-127.22705474148931,53.24806517059937],[-127.2273493883309,53.248092376032645],[-127.22764599526609,53.24812292199922],[-127.22791032826083,53.248205345089126],[-127.22818466940892,53.2482770235451],[-127.22847331114959,53.24832389294041],[-127.22875666456444,53.24838258632664],[-127.22903030655762,53.248462669480936],[-127.22917925864033,53.248612960459795],[-127.22926223413657,53.248786336378856],[-127.22936664291807,53.24895445225061],[-127.22947111773826,53.249124808372116],[-127.22945193183502,53.24930428981032],[-127.22926339889545,53.249439585194],[-127.229074113087,53.2495810553759],[-127.2290584514139,53.24975265656137],[-127.22921604196374,53.24990901628669],[-127.22938372229339,53.25005742762097],[-127.2294909264973,53.250224949596905],[-127.22957762842614,53.250397175019074],[-127.2296820586189,53.25056584607932],[-127.2297808745372,53.250735139986524],[-127.22985822652308,53.25090913840504],[-127.22992999518948,53.25108431517001],[-127.23005672685879,53.25124491999561],[-127.23029090189048,53.25135509875527],[-127.2305761553746,53.251413768232695],[-127.23086309100987,53.25146569648519],[-127.23112472581234,53.251551502092894],[-127.2313654030475,53.251659379211084],[-127.23161065117628,53.25176271736536],[-127.23186321367464,53.2518592649356],[-127.23211760541751,53.25195410772035],[-127.23237292795893,53.252048375557045],[-127.23260899099105,53.2521585391536],[-127.23281097228106,53.252291457827624],[-127.23297589902195,53.25244101326051],[-127.23311575448179,53.252600357944324],[-127.23326676001174,53.25275566025775],[-127.23344561490873,53.25290002343627],[-127.23366696171124,53.253020422606276],[-127.23391862274026,53.25311808678999],[-127.23417945754056,53.253207820363684],[-127.23444479897866,53.25329133916006],[-127.23469368772865,53.25339015108476],[-127.23493797539773,53.25349238090191],[-127.23522049032974,53.25355274416326],[-127.23550932351023,53.253604641572345],[-127.23580109263827,53.25362849481837],[-127.23609174444057,53.25358233126564],[-127.23638059864126,53.2535384177951],[-127.23667959462246,53.25352073448584],[-127.23696941200029,53.25347793900833],[-127.23725312096822,53.25341895456408],[-127.23754809705073,53.253391782111585],[-127.23784867796432,53.25339593384778],[-127.23814521466731,53.25342252838976],[-127.2384241107563,53.25348741286646],[-127.23868221593989,53.25357996195081],[-127.23891277036836,53.253693523279594],[-127.23911850086283,53.25382528068436],[-127.23935547158341,53.25393317156398],[-127.23964325133564,53.25398115266002],[-127.23994390215647,53.253987530470184],[-127.24023986110055,53.25396202634],[-127.24053059116638,53.25391809210874],[-127.24082434286667,53.25388140442757],[-127.24112258917512,53.253869876130764],[-127.24142247447607,53.253882425521226],[-127.24171810229238,53.253909585437114],[-127.2420095554046,53.25395416082009],[-127.24227757709171,53.254032587407224],[-127.24251002124748,53.254146131020676],[-127.24268706924532,53.254291619995215],[-127.24283068918477,53.25444979356826],[-127.24300677542863,53.2545941716266],[-127.2432263633076,53.2547173684718],[-127.24346615831539,53.254825230619126],[-127.24371783639096,53.254922318318584],[-127.24398505182846,53.255004675849484],[-127.24425584141025,53.255080827975085],[-127.24452031636645,53.25516545409163],[-127.24477568761552,53.25526025979969],[-127.24501731737884,53.25536641434642],[-127.24524512331202,53.25548112186951],[-127.24552766790282,53.25554202524665],[-127.24582078212764,53.25557872136719],[-127.24609428839418,53.255651488231706],[-127.24633962878752,53.255755915889395],[-127.24656102730599,53.25587629082109],[-127.24672320950435,53.25602641213302],[-127.24684358868473,53.256191548257604],[-127.24697977043417,53.25635147134921],[-127.24712618874636,53.256508480900074],[-127.24724469343849,53.256673636312016],[-127.247341716591,53.256842934783606],[-127.24738828089484,53.25702060733175],[-127.2474095418544,53.25720022219325],[-127.2474373652351,53.257379212259146],[-127.24747175111914,53.25755757752495],[-127.24748925773423,53.257737231804356],[-127.24753485931856,53.25791379383572],[-127.24762723499337,53.25808482613147],[-127.24771867990769,53.258255859172486],[-127.24784000058195,53.25842098430033],[-127.24799103127441,53.258574582664856],[-127.24823998310971,53.258673374858546],[-127.24852526113656,53.25873031621999],[-127.24880962537188,53.2587878312603],[-127.24909043578317,53.25885267087601],[-127.24938164896714,53.25888770213299],[-127.24967956366885,53.25886383051882],[-127.24997345799282,53.25883104534468],[-127.25027504298687,53.25883626698036],[-127.25055921129415,53.25888705682422],[-127.25075840635891,53.259017742705375],[-127.25084245531683,53.25919221292762],[-127.2508871761042,53.259370468243105],[-127.25090655910527,53.259549546450444],[-127.2509109531747,53.25972933844851],[-127.25091249048607,53.259908048997815],[-127.25086517708465,53.26008614508251],[-127.25084606066326,53.2602650733423],[-127.25085419473604,53.26044482584444],[-127.25086046655274,53.26062460692708],[-127.25095372485502,53.26079282152023],[-127.25115680140438,53.26092738310806],[-127.25136722380208,53.26105626430178],[-127.25158949587811,53.26117325023835],[-127.25187396388621,53.2612335627547],[-127.25214931167417,53.26130349074258],[-127.25238733891729,53.26141303006937],[-127.25260881729022,53.26153450456349],[-127.25281366415514,53.26166512734625],[-127.25300744547252,53.2618025807645],[-127.25322616867886,53.261925768472544],[-127.25344753591231,53.26204332527529],[-127.2535128419476,53.26221855625018],[-127.25347120350786,53.2623977227741],[-127.25343423468915,53.262576275194576],[-127.25339821192125,53.26275481759015],[-127.25335748531981,53.26293284490248],[-127.25331297142067,53.26311035640932],[-127.25328823081445,53.263289344281716],[-127.25326255837504,53.26346833300793],[-127.25323876519667,53.26364786660038],[-127.25321874234388,53.26382736034836],[-127.25320340621211,53.26400680457575],[-127.25318054238524,53.26418577251019],[-127.25316520596098,53.264365216699275],[-127.25315174719127,53.26454464103839],[-127.25312230280227,53.26472366943838],[-127.25310791234679,53.26490310357518],[-127.25314419109431,53.265081446825974],[-127.25313167842663,53.26526086110124],[-127.25308812403638,53.26543891791469],[-127.25303326930768,53.26561598247071],[-127.2529896976489,53.265793483614836],[-127.2529800098624,53.26597342374459],[-127.25304435710783,53.26614810901243],[-127.25332892736141,53.266179274884195],[-127.25362712414345,53.26619461790499],[-127.2539105991498,53.266252130495744],[-127.25417614461409,53.26633840051441],[-127.25426161778284,53.26649660994608],[-127.25423290703978,53.26666835187],[-127.25439806737882,53.26682180159783],[-127.25450918418016,53.26698925962996],[-127.25465739561932,53.26714120292151],[-127.25489461419784,53.26725355161675],[-127.25513814933565,53.26735742470826],[-127.25540744356415,53.267443096597745],[-127.25560159168494,53.26756037262872],[-127.25561273863187,53.267745703999715],[-127.25562558026073,53.2679248501212],[-127.25564877471426,53.26810444245679],[-127.2556672504549,53.268283528928535],[-127.25567636987675,53.268463834895904],[-127.25570044647466,53.26864174155644],[-127.25579384171633,53.26881331212266],[-127.25592915156703,53.2689732339067],[-127.25612478816493,53.269108430479996],[-127.25634538616949,53.269229907373756],[-127.25648438876937,53.269387548409156],[-127.2565825081764,53.26955963305927],[-127.25651481447039,53.269715536203854],[-127.25638341620305,53.2698766047454],[-127.25624254484359,53.270035523408986],[-127.25609123423611,53.27019063506552],[-127.25592948430642,53.270341939676214],[-127.25577531354797,53.270495960639025],[-127.25563254148788,53.27065377808269],[-127.25550589120199,53.27081703629468],[-127.25540855888352,53.270987263054],[-127.25535744604684,53.271163723881386],[-127.25535998219125,53.27134353449538],[-127.25539253631797,53.27152247179302],[-127.25543072352983,53.27170079370687],[-127.2554510945514,53.27188041560957],[-127.25541221437483,53.27205786747725],[-127.25528933179582,53.27222164120383],[-127.25511141628212,53.27236694812337],[-127.25491631340738,53.272502916638985],[-127.25472411710149,53.27264165087419],[-127.25456232108056,53.27279238902909],[-127.25445646963263,53.27296046377927],[-127.2543987843582,53.27313699341475],[-127.25437592038782,53.27331595177072],[-127.2543953413635,53.27349559267037],[-127.25446253046076,53.27367023767152],[-127.25456151658868,53.27384007345049],[-127.25465117880331,53.27401223975835],[-127.25472776111216,53.27418679424985],[-127.25490671357389,53.27432888314611],[-127.25517129714471,53.2744123645167],[-127.25545487953322,53.274471557888944],[-127.25574195234216,53.274521740627925],[-127.25603264924625,53.274567411255596],[-127.25632241668536,53.27461364678754],[-127.25660952483516,53.274664947580526],[-127.25689219587382,53.274724702971746],[-127.2571604774,53.27480646451722],[-127.25737554015132,53.274930239131976],[-127.25758327662231,53.275060823005965],[-127.25782960473137,53.275161855354554],[-127.25807779751963,53.275262876398195],[-127.25832600625462,53.27536388779721],[-127.25857877101554,53.27546037730159],[-127.25883610805326,53.27555289151864],[-127.25909437603097,53.27564483057328],[-127.25934164305794,53.275745858831996],[-127.25955307753107,53.275873594319854],[-127.25974787763911,53.27601102583098],[-127.25985525008427,53.27617740673829],[-127.25992715428964,53.27635199864054],[-127.26003270001446,53.27652007504632],[-127.26014576169311,53.276688636294146],[-127.26034608372333,53.276821526167026],[-127.26063894237915,53.27684475255289],[-127.26086818246391,53.27693923712674],[-127.26106226116387,53.27708340618223],[-127.261268141021,53.27721399445697],[-127.26153278872815,53.27729858167587],[-127.26182344404857,53.277341997750675],[-127.26211848663766,53.277375272925426],[-127.26241176713313,53.277411936602896],[-127.26270157770146,53.27745871208991],[-127.26299223532628,53.27750212529923],[-127.26328980329791,53.277525286129226],[-127.26358940880085,53.277522097043985],[-127.26388538427614,53.277492053634],[-127.26415744369041,53.277416323315926],[-127.2644314644946,53.27734337722248],[-127.26473068442043,53.27732786374435],[-127.26503045625903,53.2773302717815],[-127.26505887842009,53.27715012257535],[-127.26515327722676,53.27697712265834],[-127.26534286713655,53.276845678311815],[-127.26561663017237,53.27676432383978],[-127.2658965309833,53.27669971091502],[-127.26616756781502,53.27662174575151],[-127.26642603246808,53.276531588481944],[-127.26667092784892,53.27642757354236],[-127.26689756530679,53.276309742094284],[-127.26709166690026,53.27617264410834],[-127.26725341445844,53.27602133354489],[-127.26743035692522,53.27587601881067],[-127.2676292422239,53.275741674553174],[-127.26786355462248,53.27562936173908],[-127.26812392149483,53.275540300814754],[-127.26839792299955,53.275467336533545],[-127.26868374871702,53.27541273814481],[-127.26898181974494,53.27539050298207],[-127.26927834540858,53.27541086304776],[-127.2695759697337,53.27543625740978],[-127.26987606537858,53.27544985472937],[-127.27016704905589,53.27541088473201],[-127.2704459516118,53.27534458629674],[-127.27072082900415,53.27526993092776],[-127.27093120652945,53.27514330150197],[-127.27104836848385,53.27497845202414],[-127.27112392183564,53.2748045281545],[-127.2711429421718,53.2746250423902],[-127.27108690113242,53.27444860152549],[-127.27107869494976,53.2742694073196],[-127.27111558436074,53.27409085065169],[-127.2711862789586,53.27391136714825],[-127.27139035403339,53.27379433308136],[-127.27168058058209,53.273730151276006],[-127.27196987015768,53.27376011090516],[-127.2722572785876,53.2738208996433],[-127.27254703992283,53.273865975272265],[-127.2728431005184,53.27387119992016],[-127.27314234155054,53.27385678520209],[-127.2734432598342,53.27383619338613],[-127.27374346579191,53.273822887308455],[-127.27404422921569,53.273828058487815],[-127.27433013797192,53.27377680691093],[-127.27462208505902,53.27376975458996],[-127.27492169747991,53.27379903144789],[-127.27521122641157,53.2738368152724],[-127.27547688014917,53.27392360184297],[-127.27576023369275,53.27397434110523],[-127.27605526195771,53.27400702594195],[-127.27634941180223,53.27404196052578],[-127.27664769131674,53.27405836595224],[-127.27694767779548,53.274068584952246],[-127.27724592356874,53.27408385976364],[-127.2775442865503,53.27410250307544],[-127.2778433269475,53.274112730000965],[-127.27814390654353,53.27411173444678],[-127.2784641318488,53.274108285483074],[-127.2787321323023,53.274024156489276],[-127.2789521420197,53.2739063727875],[-127.27914045523796,53.2737653994429],[-127.27932113763225,53.27362114648225],[-127.27949516797213,53.27347416812797],[-127.27966919682869,53.27332718054624],[-127.27985660955319,53.273187900935405],[-127.2801005037657,53.273083303602185],[-127.28036275809112,53.27299587120404],[-127.28061047628465,53.27289403730718],[-127.28085629591254,53.27279109388407],[-127.28110015347127,53.27268593904306],[-127.28133732474788,53.272576929578456],[-127.28155144726125,53.272451360751326],[-127.28175311304875,53.27231751768706],[-127.2819662695708,53.27219140272313],[-127.28218329784322,53.27206859811405],[-127.2823725407622,53.27192817399958],[-127.28258770741199,53.27180650924008],[-127.28287042521909,53.27174351030759],[-127.28315157236494,53.271691168111865],[-127.28343150793809,53.27159849968912],[-127.2836967649048,53.27145612181331],[-127.28383261877539,53.27132075479247],[-127.28382946272843,53.2711863267131],[-127.28395578772043,53.270954133250925],[-127.28412412244532,53.270806079751075],[-127.28430286115518,53.270660163400244],[-127.28448161741254,53.270515358120846],[-127.28465559980924,53.27036780740889],[-127.28486975252255,53.27024391715809],[-127.2851173733477,53.2701392686913],[-127.28534017143255,53.2700219980833],[-127.28549228638535,53.269865718735005],[-127.28564917310945,53.269712193253966],[-127.28579847822277,53.26955649968205],[-127.28594018513685,53.26939809141387],[-127.2861208597346,53.269254947927465],[-127.28633879257855,53.26913213439976],[-127.28660397045041,53.26904913801987],[-127.28681076960584,53.268930926376406],[-127.28694435374223,53.268783810081615],[-127.28702237418577,53.26863169363038],[-127.28705355523681,53.268452627874495],[-127.28708568468902,53.268274116547325],[-127.28712250117437,53.268095554354936],[-127.28716310541989,53.26791751578924],[-127.28720464049354,53.26773945812865],[-127.28724805339289,53.26756138902766],[-127.28729148286537,53.26738387548921],[-127.28733015837827,53.26720472822238],[-127.28736318106921,53.267024530690406],[-127.2874056289043,53.266845907177014],[-127.28747077932302,53.26667207518324],[-127.28757272788127,53.26650401121328],[-127.28770773542927,53.2663423115249],[-127.28785409234385,53.26618272952928],[-127.2879900614368,53.266021583777665],[-127.28809490087916,53.265856284709635],[-127.28811563757625,53.26567397911502],[-127.28804737341397,53.265498798012445],[-127.28790733633652,53.26534175950824],[-127.28774111390378,53.265188375545215],[-127.28759076085348,53.265032013361306],[-127.28744133810586,53.264875076148954],[-127.28730125426223,53.26471636113008],[-127.28716910951277,53.26457157084799],[-127.28710965941279,53.26437724465665],[-127.28708242392494,53.26419265370582],[-127.2870950119205,53.26401995652868],[-127.28711564932654,53.26383428151345],[-127.2871584023088,53.263665739173724],[-127.28716466652493,53.263501518947784],[-127.28715045380277,53.26331230456492],[-127.28709060548542,53.26313591096352],[-127.28707856317682,53.26295675771606],[-127.28710691575368,53.26277772205163],[-127.28721829612739,53.26261124091522],[-127.28740749686388,53.26247136368056],[-127.28761770922216,53.262343019131926],[-127.287823148384,53.26221192916566],[-127.28801518847175,53.262073140599036],[-127.28814554493557,53.26191317562739],[-127.2882492886192,53.261742849967],[-127.28835497745247,53.26157474412125],[-127.28845877059021,53.261406093998666],[-127.28856048899418,53.261261562078055],[-127.28868339487182,53.26119635726002],[-127.28882922284615,53.26114322910259],[-127.28900254188504,53.26109876630765],[-127.28872618813273,53.26102893411562],[-127.28842868828444,53.26100471669641],[-127.28813475761278,53.261035921325536],[-127.28784516247673,53.26108612709739],[-127.2875634528129,53.26114857236186],[-127.28729247147899,53.26122434685334],[-127.2870351596654,53.261316780313145],[-127.28678559808691,53.261417528601385],[-127.28658580749712,53.261548555582394],[-127.28648674417971,53.26171882899068],[-127.2864084516168,53.26189223867332],[-127.28626487706262,53.26205011287668],[-127.28606516918842,53.26218449956445],[-127.28582617361899,53.26229297485407],[-127.28555912270048,53.262374305256024],[-127.28527635243225,53.26243339483828],[-127.28499482642192,53.26247118030634],[-127.284704948401,53.26245078829051],[-127.28441285227012,53.26241921434218],[-127.2841159867528,53.262385450248374],[-127.28382809953385,53.26233758620692],[-127.28356710291845,53.26224796223728],[-127.28329991782653,53.26217073935824],[-127.28300232782694,53.26214370347967],[-127.28270328573184,53.26213068461819],[-127.2824041248947,53.26211374893851],[-127.28211103347498,53.26207993907308],[-127.28182660175183,53.262022503946355],[-127.28169087781842,53.261975231851146],[-127.28163773326332,53.26189512823678],[-127.28157041625848,53.261719368446606],[-127.2815784398672,53.26151982860486],[-127.28157420758016,53.26138037361755],[-127.28152466614074,53.26129518418133],[-127.2813758523575,53.26124972942195],[-127.28099685776677,53.26123253188851],[-127.2806986674203,53.26121614624338],[-127.28041426028174,53.261159263303206],[-127.28015605132963,53.26106792554664],[-127.27993818350824,53.26094422162344],[-127.27974712530487,53.26080621711419],[-127.27954444832103,53.260657132368415],[-127.27947901959254,53.260481351029775],[-127.27942199727637,53.26030380269162],[-127.27930991877952,53.260138053210596],[-127.27914941469106,53.25998571622177],[-127.27895004255154,53.259852282164196],[-127.27873676889234,53.259725156003604],[-127.27853550491294,53.25959118586888],[-127.27837410807075,53.25943996902055],[-127.27826107288197,53.2592736730717],[-127.27818257672922,53.25910027280746],[-127.2781312113834,53.25892322759938],[-127.27812389249105,53.2587434578444],[-127.27814287584683,53.258563969462564],[-127.27814401528966,53.2583846732962],[-127.27814515292742,53.25820482135218],[-127.27818106720156,53.258026271032065],[-127.27824712248793,53.25785075751415],[-127.27833675659605,53.25767890723316],[-127.27848134316538,53.25752271678661],[-127.27869059495711,53.25739384231999],[-127.27893920583386,53.2572931210464],[-127.27919268602098,53.257197940394065],[-127.27933544318512,53.257044009592],[-127.27938452739109,53.25686643723988],[-127.27939410059979,53.256686494113836],[-127.27938865413508,53.256506703980676],[-127.27938508539525,53.25632690254536],[-127.27938998932207,53.2561475655031],[-127.27939956207311,53.25596761334781],[-127.27940631142991,53.25578770058718],[-127.2794065142567,53.25560841419118],[-127.27940294524528,53.25542860371077],[-127.27940595480212,53.2552487312306],[-127.27941554438364,53.25506934355065],[-127.27942699412459,53.254889371045024],[-127.27944409287588,53.25470990234083],[-127.27947529786043,53.25453140200225],[-127.27951872976904,53.25435333450474],[-127.27954994919325,53.25417483395124],[-127.27955294274491,53.253994952550194],[-127.27953342401659,53.25381532291763],[-127.27950078308682,53.253636946365],[-127.2794484727105,53.253459911427235],[-127.27936531391711,53.25328712651788],[-127.27925135989608,53.25312083205886],[-127.27910946854848,53.252962126642764],[-127.27892951123248,53.252817842540544],[-127.278687912588,53.25271511741605],[-127.27840968568526,53.25264304080331],[-127.278195637721,53.25251984827541],[-127.27800545274063,53.25237846983416],[-127.27772284862806,53.252316523542866],[-127.27744968421867,53.25225671598582],[-127.27730332024834,53.25210477977421],[-127.27721709539273,53.25192361793325],[-127.27719858639064,53.251746218023435],[-127.2772353625196,53.2515654170351],[-127.27732317618296,53.251395271731845],[-127.27751712945921,53.25125815492356],[-127.27773594056711,53.25113534585268],[-127.2779432519313,53.25100537233044],[-127.27814770280094,53.250873743970395],[-127.27834168310976,53.2507371901772],[-127.27849661372291,53.25058257268765],[-127.27868015802588,53.25044276918729],[-127.2789248378014,53.25033759843197],[-127.27916190631774,53.250229156608256],[-127.2793873883758,53.25011018974839],[-127.2796282423433,53.2500028176894],[-127.27989038857493,53.24991651440905],[-127.28017205151666,53.249854642596134],[-127.2804577397879,53.24980169985517],[-127.28074339310751,53.24974762729999],[-127.28103396903853,53.2497013535606],[-127.28132166794691,53.249652860154846],[-127.28160038320894,53.24958654358409],[-127.28186445078497,53.249501891405735],[-127.28209188330995,53.24938569500235],[-127.28226170995232,53.24922754968176],[-127.28228450970437,53.24914381917007],[-127.28228794175064,53.2490401374323],[-127.28208009871854,53.24896674382529],[-127.28182665336062,53.24893698760339],[-127.2815440347944,53.248874494864054],[-127.28127052850067,53.24880237403312],[-127.28101306933681,53.24870262178464],[-127.28079899978154,53.24857831353551],[-127.28070759459163,53.24841234140086],[-127.28067011508254,53.24822897899347],[-127.28064306899788,53.248048865504835],[-127.28052082286779,53.24788770830941],[-127.28040503606316,53.247722563878625],[-127.28026505236849,53.24756439473496],[-127.28014647628014,53.24739983593491],[-127.27998874057629,53.24724466386676],[-127.27997328257574,53.2470750746467],[-127.28003549143276,53.24689735930826],[-127.28013740474154,53.24672873542831],[-127.28027430558498,53.24656870699835],[-127.28042070682238,53.246411928456496],[-127.28055286960715,53.24625026552526],[-127.28072965875644,53.246105493279515],[-127.28092357486135,53.24596781475749],[-127.28112222536437,53.245831761072864],[-127.28132182267098,53.245696261551934],[-127.28151384118577,53.24555804671027],[-127.28169539165513,53.24541545356141],[-127.28186079280816,53.24526687620268],[-127.28200818285276,53.24511233482579],[-127.28214320921553,53.24495231526738],[-127.28226875020994,53.24478960123071],[-127.28238858972286,53.244624151832454],[-127.28250367744876,53.24445706838972],[-127.28261969519225,53.24428997475309],[-127.28273763790835,53.244123980692585],[-127.28286222608794,53.24396071146161],[-127.28297262765037,53.243794242904166],[-127.28301885627806,53.24361613362611],[-127.2830303047124,53.24343672425657],[-127.28302577565981,53.24325693193309],[-127.28301843865599,53.24307716100572],[-127.28300171794372,53.2428975005409],[-127.28300941265485,53.242718131712934],[-127.28305565709584,53.24254058688389],[-127.28311979113865,53.24236508953448],[-127.28320183144507,53.24219219523908],[-127.28330464978374,53.24202300238362],[-127.28343301740301,53.241860820884376],[-127.28357937559372,53.24170403821884],[-127.2837304832668,53.241548889222315],[-127.28388062492614,53.24139262993081],[-127.28403364115803,53.24123858037256],[-127.28418946385858,53.24108450020206],[-127.2843443717316,53.24093099446004],[-127.2845011720847,53.24077802377893],[-127.2846579541361,53.240624488313806],[-127.28481475221655,53.24047151719358],[-127.28496774480936,53.24031691075229],[-127.2851179115878,53.24016176996092],[-127.28528960031547,53.24000471040884],[-127.2854020631268,53.2398449399117],[-127.28552852223677,53.239682211735634],[-127.28564928222946,53.23951730411155],[-127.28576816462976,53.23935241669762],[-127.28588515227764,53.239186984934825],[-127.28600213928226,53.23902156200363],[-127.28612196473127,53.23885666393503],[-127.28624934891502,53.238693924810505],[-127.28637864065921,53.23853172061883],[-127.28648995999374,53.238365238051955],[-127.2865663148426,53.23819128197343],[-127.28659842334415,53.238012767952895],[-127.2865891957429,53.23783302607215],[-127.28654248776576,53.23765536714726],[-127.28650609161193,53.23747703156575],[-127.28649216561867,53.23729734060606],[-127.2865185587,53.237116082695955],[-127.2864982257223,53.23694149916036],[-127.28648974910766,53.23678640089814],[-127.2863788484469,53.236596547566265],[-127.28625181056788,53.236431530004495],[-127.28619479224814,53.23625398268289],[-127.2862137312207,53.23607449089323],[-127.2863071420351,53.2359059524293],[-127.28643353485381,53.23574154717573],[-127.28656465923342,53.23557820200034],[-127.28669203182997,53.23541546211894],[-127.28682413623291,53.23525379126499],[-127.28696004385696,53.235093764253556],[-127.28709972028139,53.2349342519402],[-127.28729878420464,53.234783059035486],[-127.28738855454385,53.234618485425614],[-127.28752824470916,53.23445952817201],[-127.28765755299781,53.234298451355606],[-127.28771786845242,53.23412187134184],[-127.28780930733365,53.23395055595297],[-127.28789888408339,53.23377926069642],[-127.28792530307544,53.23359912230749],[-127.28797532293025,53.23342377444881],[-127.28810175291781,53.23326104297776],[-127.28824329534683,53.2331015087785],[-127.28835553871978,53.23293501370841],[-127.28843943287016,53.23276265910872],[-127.28851482196252,53.23258815576953],[-127.28859776689424,53.23241524657367],[-127.28868733719416,53.23224395058238],[-127.28876744180714,53.2320705163034],[-127.28882776666346,53.23189450008373],[-127.28886268279817,53.231715954181055],[-127.28890042253069,53.231537933342416],[-127.28889473414888,53.23135142920052],[-127.28890066212305,53.231176559983666],[-127.28906790961683,53.23102962684085],[-127.28932897102963,53.23094274739312],[-127.28960643378016,53.230870820782144],[-127.28984319447062,53.23075674668056],[-127.2900540016128,53.230622793656046],[-127.29017876111807,53.2304673567832],[-127.29021837071112,53.23028932395149],[-127.29021553246756,53.230103900251954],[-127.29020159313286,53.22992420902787],[-127.29016985428328,53.22974526727404],[-127.29013062781104,53.229566962767066],[-127.29009138470893,53.22938810262457],[-127.29005871613458,53.229209170916484],[-127.29005698049757,53.22902934680743],[-127.29006760324717,53.22885498196606],[-127.29017382346838,53.22867622414219],[-127.29023997103813,53.22850685771405],[-127.29021386156491,53.22832785458248],[-127.29018024771182,53.22814893309801],[-127.2900501123586,53.22803605358382],[-127.29000827388019,53.22792557482015],[-127.28996485654048,53.22788682814537],[-127.28993032212848,53.22783117661744],[-127.28985079700429,53.227777699883895],[-127.2896903608671,53.22777832476312],[-127.28938690558218,53.22779731317416],[-127.28923110080356,53.22779620175981],[-127.2890988660386,53.22776794972399],[-127.28900909892349,53.227716815930435],[-127.28897506045813,53.22761633691822],[-127.28898816762835,53.22743074858261],[-127.28899394078945,53.22725083373264],[-127.28901570271928,53.227071874529074],[-127.28901958267338,53.22689142443605],[-127.28901693989582,53.22671272158512],[-127.28905628944361,53.226618167843576],[-127.28913670174221,53.226547263790884],[-127.28934485411509,53.22641893416083],[-127.28955680876474,53.226292248084306],[-127.28976110420341,53.226160606957926],[-127.28995775711502,53.2260245574656],[-127.2901773831251,53.22590338947174],[-127.29042187527756,53.22579763803706],[-127.29065499037247,53.22568809251122],[-127.29076440060494,53.22561462150005],[-127.29082209044837,53.22553724033541],[-127.29091449487896,53.22536758725973],[-127.29098986056417,53.22519308166338],[-127.29110489560401,53.22502710833668],[-127.29115767941468,53.22485060743456],[-127.29120762207424,53.22467301688599],[-127.29128489552158,53.224499610779326],[-127.29139424837317,53.224332022633035],[-127.2915319965311,53.22417252462699],[-127.29166972639628,53.22401246187883],[-127.29182833069632,53.22386002427049],[-127.29193810759666,53.223706433280576],[-127.29197877191196,53.223624745817],[-127.29203076049745,53.22354518496856],[-127.29208773325739,53.223505900563254],[-127.29217795559244,53.22348026503432],[-127.29237126338148,53.22348096354215],[-127.29265962179987,53.22349070124666],[-127.29295063270014,53.22349537133065],[-127.29310664951167,53.22347349963299],[-127.29323871030397,53.22343508084246],[-127.29334120445142,53.223380741008995],[-127.29341344810527,53.22328862350851],[-127.29341902018238,53.22319500130989],[-127.29337049664409,53.22311148953697],[-127.2932757800175,53.22305201326285],[-127.29321825942102,53.2229506707909],[-127.2932054302046,53.22286844587197],[-127.2932309298865,53.22278188535371],[-127.29325663510629,53.22270204588101],[-127.29335392103435,53.22260069972395],[-127.29350729736494,53.22246175430821],[-127.29373164348684,53.22234221298858],[-127.29397806763089,53.22223922950605],[-127.29423898105992,53.222150098654986],[-127.29449799821161,53.222059867371584],[-127.29475605179803,53.22196909023768],[-127.2950150174104,53.22187773780398],[-127.29525663355798,53.22177088665621],[-127.29547212724573,53.22163854781733],[-127.29562530441531,53.22149344310347],[-127.29575161762767,53.22132901770307],[-127.29589312557786,53.22117059354026],[-127.29604220448249,53.22101432750645],[-127.29620838811417,53.220865162282884],[-127.29644058478596,53.22072703612187],[-127.29664707100012,53.22057686466103],[-127.29678359860611,53.22043978427929],[-127.29695006936767,53.22030013498786],[-127.29716293299724,53.220173980165555],[-127.29738915180332,53.22005553159164],[-127.29761152934788,53.21993375399437],[-127.2977977352496,53.219795572682195],[-127.29785858911289,53.21960777403921],[-127.29791555366798,53.219446346444016],[-127.29787816277667,53.21926746737849],[-127.2978211381653,53.21909104437471],[-127.29773423774712,53.21891887485851],[-127.29765947105646,53.21874488711645],[-127.29761457898351,53.21856609004427],[-127.29757448569724,53.218482487460136],[-127.2974756265661,53.21841016894616],[-127.29731984346277,53.2182555614223],[-127.29727486508251,53.21816584467502],[-127.2972741111223,53.218080135054144],[-127.29731162722658,53.21798783902407],[-127.29738724349623,53.21791473114234],[-127.29754296389551,53.217761195932404],[-127.29767591903043,53.217600056900764],[-127.29779938957392,53.217435104091415],[-127.29791059105166,53.217268044375416],[-127.29799820086625,53.21709676067903],[-127.29802542587792,53.2169138121297],[-127.29803098744327,53.216728303906336],[-127.29809526094466,53.2165606373109],[-127.29816600268138,53.21648142365228],[-127.29828167388332,53.2164297316676],[-127.29853250818083,53.21631884570004],[-127.29874906620074,53.21619209121849],[-127.2989199178523,53.216042870345504],[-127.29906322006885,53.21588273664862],[-127.29916880303735,53.21571630185812],[-127.29921402186405,53.21553931416464],[-127.29927427964236,53.215363291086405],[-127.29971945772797,53.21513597501863],[-127.30024453948072,53.21485343809356],[-127.30054130759447,53.214437261205745],[-127.30111710864779,53.214034819740284],[-127.30159359495813,53.21378923252698],[-127.30200676063956,53.213589717086684],[-127.30256416663143,53.213260871262605],[-127.30369224543502,53.21266969411378],[-127.3040825288852,53.212245755193656],[-127.30506443544063,53.21202595726134],[-127.30541635500457,53.211970535485605],[-127.30616025853976,53.211850282709825],[-127.30643456059708,53.21180243669275],[-127.306717172862,53.21175058092201],[-127.30695473272098,53.21166728088651],[-127.30715782420322,53.21156138458944],[-127.3072884495666,53.21147814276547],[-127.30743601501655,53.211366144080635],[-127.30788919359138,53.21121826745343],[-127.30805808503551,53.21106848930693],[-127.30814854825012,53.210899971336744],[-127.30820685191821,53.2107228348444],[-127.3082500657004,53.21054306796969],[-127.30828393701537,53.21036452476147],[-127.30830184045574,53.21018503725284],[-127.30831879857458,53.210005560159445],[-127.30834418802624,53.20982598995684],[-127.30837241521469,53.20964695316083],[-127.30839596110664,53.20946795906152],[-127.30840916792923,53.20928852329795],[-127.30841298096314,53.20910863543761],[-127.30841116782138,53.20892880071683],[-127.308405604411,53.20874901635217],[-127.30839909563319,53.208569233444365],[-127.30838978179197,53.20838949045619],[-127.30837578711174,53.20820979016962],[-127.30841668920489,53.20801604592582],[-127.30842344582781,53.20784059872587],[-127.30841332311022,53.20766478209056],[-127.30841180480168,53.20749447324587],[-127.30843345938693,53.2073155087659],[-127.30842602060761,53.20713573599185],[-127.30839516684746,53.20695678651415],[-127.30839307790306,53.20691983098129],[-127.30847776667596,53.206746893778906],[-127.3085984124527,53.206584200271735],[-127.30877682965206,53.20643935335218],[-127.30896283562083,53.20629779296403],[-127.30914983731088,53.20615789762232],[-127.30933778284388,53.206017991531745],[-127.30952282003736,53.20587531136752],[-127.30974622660364,53.20576022985556],[-127.31002947908144,53.205699949732455],[-127.31031479666925,53.20564580470938],[-127.31059116461094,53.205575514269626],[-127.31085202466218,53.20548858626052],[-127.31108869040415,53.20537783770413],[-127.31129851234353,53.20524832715824],[-127.31141922998383,53.20508843558226],[-127.31147088958481,53.204909693862795],[-127.31162663243526,53.204760055240214],[-127.31187285855569,53.204655357805336],[-127.31213753224168,53.204571181540274],[-127.31240999864198,53.20449589184735],[-127.3126863903602,53.20442671665903],[-127.3129647928525,53.20436143603209],[-127.313249065779,53.20430449840554],[-127.3135404301557,53.20426428997126],[-127.31383280862481,53.204226310702424],[-127.31412406747353,53.20418274028865],[-127.31441744452957,53.20414698962227],[-127.31471528532697,53.204134164802284],[-127.31501231319687,53.20415552107208],[-127.31530607901598,53.20419260075449],[-127.3155971470721,53.20423362717171],[-127.31588477697002,53.20428422036823],[-127.31617149738106,53.2043359435432],[-127.31645644803024,53.20439104739658],[-127.31673962897897,53.20444953194081],[-127.31702013013165,53.20451252787258],[-127.31729072805786,53.204588524258725],[-127.31754229151299,53.20468545771454],[-127.3177710033137,53.204801694444825],[-127.31797302594607,53.20493447136452],[-127.31814826991979,53.20508043686358],[-127.31830868876209,53.205232169890074],[-127.31845798038142,53.2053879529848],[-127.3185859085449,53.20555013227125],[-127.31869058292243,53.2057187288526],[-127.31878872282951,53.20588852759591],[-127.31889152369705,53.206057144839484],[-127.318993412914,53.206226336901636],[-127.31909435786005,53.206395539382044],[-127.31919623370244,53.206564731406225],[-127.31929903811823,53.20673335719657],[-127.31941488218297,53.206899031796674],[-127.31952888691183,53.207065847328415],[-127.31959155891519,53.20724051361886],[-127.31960654604408,53.20742020214677],[-127.31960371088982,53.20760008016968],[-127.31959526529637,53.20778002961881],[-127.3195839816504,53.20795944588873],[-127.31956425179114,53.20813895619586],[-127.31954453676639,53.208318466315426],[-127.31953418289248,53.20849787217122],[-127.31954915260394,53.20867699601651],[-127.3195884834613,53.20885528379768],[-127.31962781493002,53.20903358051021],[-127.31964937360496,53.209213186722494],[-127.31965964829722,53.209392362778416],[-127.31966525991993,53.20957215551189],[-127.31967181647174,53.20975192874084],[-127.31968492950419,53.20993163790149],[-127.31971020720573,53.2101106468074],[-127.3197542185925,53.2102883264939],[-127.31982532788116,53.210462898457536],[-127.3199300196415,53.210631502461744],[-127.32006168741599,53.210793073521614],[-127.32020823454815,53.21095000537438],[-127.32035846591046,53.211105210666894],[-127.32050687297894,53.211261556660936],[-127.32065805174233,53.21141675101544],[-127.32081941619049,53.2115679051938],[-127.32098451288856,53.211717905950096],[-127.32114682486103,53.2118690491222],[-127.32129892098943,53.21202367663234],[-127.32143152617908,53.21218467990508],[-127.32153622832708,53.212353273373864],[-127.32161108196104,53.212527246639624],[-127.32166725175327,53.21270366934854],[-127.3217159552046,53.21288129585416],[-127.32176839262509,53.21305832488223],[-127.32183858465365,53.21323290575437],[-127.3219377172585,53.21340324626975],[-127.32210918898386,53.21354700674364],[-127.32236541055657,53.21364108132064],[-127.3226388469248,53.2137159046822],[-127.32290953123542,53.213792443468826],[-127.32318565034055,53.21386276234732],[-127.32345451353744,53.21394099660094],[-127.32368234400798,53.21405667612879],[-127.32384932081105,53.21420664295337],[-127.32396239739953,53.21437234378715],[-127.32401390080777,53.21454938224054],[-127.32401299214986,53.21472980312862],[-127.32398575806951,53.214908832766575],[-127.32394725063794,53.21508687671528],[-127.32390969056041,53.21526546584771],[-127.32389558468768,53.21544434875419],[-127.32389558839277,53.215624203558605],[-127.32388056973011,53.21580366138692],[-127.3238965231414,53.21598332902884],[-127.32391338958685,53.216162430654734],[-127.32392839824631,53.21634211777884],[-127.3239387102058,53.216521848385526],[-127.32393871409444,53.216701703086564],[-127.32392369523207,53.21688116081721],[-127.32390587028222,53.21706064987189],[-127.3238992840738,53.21724001336825],[-127.32391429277523,53.21741969142958],[-127.32394335919771,53.217598656646075],[-127.32397241086092,53.21777762200599],[-127.32400521173638,53.21795598966454],[-127.32404176666415,53.218134871162164],[-127.32408485925727,53.21831255903943],[-127.3241345069984,53.21848960889344],[-127.32419257095547,53.218666008889414],[-127.3242618546284,53.21884116293104],[-127.32437769881595,53.219005155834985],[-127.32457800453794,53.21914018178209],[-127.32476993101385,53.21927698637294],[-127.32489513940548,53.21944030934356],[-127.32497001941026,53.21961427983013],[-127.32500284333562,53.21979320264158],[-127.32501973368508,53.21997286831124],[-127.32503099656219,53.220152587906966],[-127.32504413560228,53.220332295476624],[-127.32509186381697,53.220508245708274],[-127.32523383653295,53.22066746337727],[-127.32538785237723,53.220821499209976],[-127.32554555313422,53.220973808311854],[-127.32567728987048,53.22113538103462],[-127.32578203111947,53.22130396994776],[-127.32586717510908,53.221476148613945],[-127.3259598027554,53.22164711397291],[-127.32607852006635,53.221812749347734],[-127.32626394068207,53.221950744856905],[-127.32651932959301,53.22204649638033],[-127.32678740862482,53.22212753804152],[-127.32705270254709,53.22220973084466],[-127.32729073880007,53.22232024227684],[-127.32749927251015,53.22244733624324],[-127.32763752648563,53.22260714848745],[-127.32774135148327,53.22277631069015],[-127.32781905273033,53.22294968290289],[-127.32787806863983,53.22312607025233],[-127.32793240275386,53.223302510008914],[-127.3280026375311,53.22347709523849],[-127.3280607244806,53.22365349287151],[-127.32811881191488,53.223829890459506],[-127.3281927849445,53.224004424698705],[-127.32829380916725,53.22417361773624],[-127.32841254026457,53.2243386947814],[-127.32854426569227,53.22449969963441],[-127.32868810529847,53.22465776267836],[-127.32884306128842,53.22481122766442],[-127.32901842520025,53.2249571755385],[-127.32920488763034,53.22509795171443],[-127.32939597862598,53.22523644354153],[-127.32960458577034,53.22536520937259],[-127.32987264151035,53.22544512391903],[-127.33016821503541,53.225474859747024],[-127.33046735840817,53.22546870585293],[-127.33076188790456,53.22543570061333],[-127.33105768023027,53.22541277445471],[-127.33132491437145,53.22549605665278],[-127.33156383744333,53.22560374380539],[-127.33178167442134,53.225727364167035],[-127.33201053922733,53.22584357210719],[-127.33224762807566,53.225952963834395],[-127.33240912226482,53.22610466545431],[-127.3325362386435,53.226267394113236],[-127.33269121450549,53.22642085393838],[-127.33290997171139,53.22654389715093],[-127.33314892255275,53.22665214561097],[-127.3334224093047,53.2267252678144],[-127.33368958570584,53.226806304301206],[-127.33394133652789,53.22690375739251],[-127.33418669182703,53.22700689369476],[-127.3344448269289,53.227098671086864],[-127.33473431916252,53.22714359615776],[-127.33503456330601,53.227142456512524],[-127.33532916913695,53.227111124509285],[-127.3356046877196,53.22704023142528],[-127.33585009164796,53.226937171833576],[-127.33609165129603,53.226830802325765],[-127.33632551308727,53.226718907314556],[-127.33656321189936,53.2266092186463],[-127.33679803460458,53.226497876590635],[-127.33703764500184,53.22638984173317],[-127.33728886201953,53.2262923162861],[-127.33755653089035,53.22621085727854],[-127.3378330234286,53.22614162424417],[-127.33811154796443,53.22607684985983],[-127.33839294913517,53.22601428345436],[-127.33867833229293,53.22595895953349],[-127.3389688052329,53.225916459400324],[-127.3392542045821,53.22586168969001],[-127.33954365686817,53.22581639377668],[-127.33982903718375,53.22576106708026],[-127.34012573657695,53.225736978494126],[-127.34042022515642,53.22570283806707],[-127.34071804988635,53.22568490283822],[-127.34101469506781,53.225659136266906],[-127.34131403616749,53.22565966717437],[-127.34161358799183,53.22566636251586],[-127.3419125026483,53.22565345895544],[-127.34219793198031,53.225599802311244],[-127.34246465650487,53.22551834272848],[-127.34273038097257,53.22543520853152],[-127.34301279065943,53.225375425480195],[-127.34331178875917,53.22536474957779],[-127.34360901584829,53.22538715408401],[-127.3439053869352,53.225412373442545],[-127.34420184435079,53.22543982324682],[-127.34444910986674,53.22554347271777],[-127.3447139386853,53.22546202951876],[-127.34497771136688,53.22537668020593],[-127.34522506306085,53.225276384543264],[-127.34546846829424,53.22517053031926],[-127.34574695675317,53.2251051734047],[-127.34603639718547,53.22505987058331],[-127.34633298404778,53.22503297070837],[-127.34663085494037,53.22501669637782],[-127.34692988557195,53.22500714046872],[-127.3472300247993,53.22500316506211],[-127.34752936161618,53.225003689238505],[-127.34782805344143,53.22501317554423],[-127.34812613676597,53.225032762064814],[-127.34842331032243,53.22505346978759],[-127.34871978917766,53.22508203759006],[-127.34901915931302,53.22508311343274],[-127.34931483168955,53.2250567722859],[-127.34960827031188,53.225019259142314],[-127.34989667093882,53.22497115278384],[-127.35017515123687,53.2249057854608],[-127.35043592675542,53.22481541092451],[-127.35073427795876,53.224814252891974],[-127.35102809346715,53.22484732753391],[-127.3513261590542,53.22486634145131],[-127.35162335106237,53.22488760571405],[-127.35191377383616,53.22493191355048],[-127.3522025007149,53.22498185181989],[-127.35249926233207,53.22496053730373],[-127.3527767394082,53.22489349890205],[-127.35305024850098,53.224819781731625],[-127.3533316550527,53.22475829998623],[-127.35361904743215,53.224707954875235],[-127.35391249761044,53.22467098666934],[-127.35420499870924,53.22463346380697],[-127.35449440875203,53.22458757576682],[-127.35478278306309,53.224538901913974],[-127.3550671681269,53.224482420018646],[-127.35534556846416,53.224415364951504],[-127.35561812169242,53.22434109687943],[-127.35588867491838,53.2242634803763],[-127.35615927838764,53.22418699219845],[-127.35643474267701,53.224116041641565],[-127.35671710604139,53.224055661346796],[-127.35701271262987,53.22402762523432],[-127.35731044656421,53.22400740799739],[-127.3576019229134,53.223967656215805],[-127.35789125273483,53.2239195195554],[-127.35817362771333,53.22385913561345],[-127.35842960722344,53.22376599222163],[-127.35866255262593,53.223656868508016],[-127.35892626772359,53.22357092352351],[-127.35918707047215,53.22348221438962],[-127.35943241124382,53.223379105626044],[-127.35969129981197,53.223289296731195],[-127.35995501052489,53.223203349441555],[-127.36021973771211,53.223119631023856],[-127.3604863786712,53.22303756640653],[-127.36075110376787,53.222953846794915],[-127.36100800284184,53.22286069607145],[-127.36125814415982,53.222761454761766],[-127.36151802448522,53.22267330674403],[-127.3617846751155,53.22259123901483],[-127.36205423958197,53.22251250786428],[-127.36232675345829,53.2224382155059],[-127.3626080584395,53.2223744713538],[-127.3628984976807,53.22233191234215],[-127.36319589171576,53.222301598907876],[-127.36348438494831,53.22225738445215],[-127.3637480271552,53.222169743964656],[-127.36395405580419,53.22204131366349],[-127.36412932857154,53.22189026073744],[-127.36424244465223,53.221732078919146],[-127.36417304468283,53.221558624294985],[-127.3640633410178,53.22138619820427],[-127.36395471323077,53.221218241913135],[-127.3638284032862,53.2210549712556],[-127.36366592139996,53.22090444290013],[-127.36347096532948,53.22076493779299],[-127.36332154403044,53.220612017588714],[-127.36324089504755,53.22043869176402],[-127.36317977233055,53.220260103220326],[-127.36308613908297,53.2200914178532],[-127.36289592457864,53.21995353365296],[-127.36270102945699,53.21981570296383],[-127.3625468631455,53.21966115098833],[-127.36237881828457,53.219512370161134],[-127.362167352036,53.2193842494569],[-127.3619577298821,53.21925555138778],[-127.36180921076452,53.21910094253573],[-127.36172948331641,53.21892704925599],[-127.3617105255971,53.21874629013231],[-127.36173951416698,53.21856835082638],[-127.36178911969691,53.218390165652714],[-127.36182373471298,53.21821216164044],[-127.36182071256715,53.21803121936579],[-127.36186758360465,53.21785531562676],[-127.3619520573327,53.217681776710165],[-127.36199049425974,53.21750596083145],[-127.36206844884491,53.2173341820425],[-127.3621199964572,53.217157659604325],[-127.36214612490056,53.21697862334822],[-127.36216473277617,53.21679911769699],[-127.36217112366955,53.216619196632124],[-127.36216345476043,53.21643942817712],[-127.36215673150106,53.216259657801245],[-127.3621612646706,53.21608031384054],[-127.36216484932713,53.21590041599424],[-127.36214780304864,53.215720764213145],[-127.36211391272276,53.215542417614145],[-127.36206598177036,53.215364797126306],[-127.3619900113906,53.21519086056521],[-127.36187026281979,53.215026391612156],[-127.36171148996218,53.214873576670136],[-127.3615333035204,53.214729393340996],[-127.36135140622623,53.21458692875272],[-127.36116672228832,53.214445051699386],[-127.36097559131076,53.21430661908739],[-127.36077985534074,53.21417103600145],[-127.36058410245661,53.21403488802134],[-127.36039204787573,53.21389702088981],[-127.36020830069533,53.2137551405739],[-127.36003657234296,53.21360751020925],[-127.35989540178561,53.21344721159399],[-127.359884994505,53.213269715377905],[-127.35995535494727,53.213094663014694],[-127.36007955344937,53.212931310087534],[-127.36024546116708,53.212781489950174],[-127.36044184313006,53.212645887207806],[-127.36067747377498,53.21253505091814],[-127.36094602781087,53.2124557679843],[-127.36122142581819,53.21238537042361],[-127.361493713704,53.2123060433312],[-127.3617854559754,53.21230605296684],[-127.36207926390298,53.21228306184353],[-127.36236345168999,53.21222376632668],[-127.36263787952241,53.2121522559981],[-127.3628966021236,53.212059634681694],[-127.36308916741534,53.21192239487528],[-127.3631360443179,53.21174704566132],[-127.36311336916361,53.211567449375245],[-127.36309165759035,53.21138840675719],[-127.36306337493087,53.2112094397025],[-127.3630126243684,53.21103185162897],[-127.36294133583753,53.21085730566296],[-127.36285699244739,53.210685141975226],[-127.36276982953403,53.21051301960851],[-127.36268361220478,53.21034087733181],[-127.36260019814773,53.21016814694433],[-127.3625644532495,53.209990386070594],[-127.36255955350988,53.2098094735447],[-127.36247808849453,53.20963896178537],[-127.36236201394095,53.20947164482923],[-127.36234132713955,53.20929539606838],[-127.36237775627163,53.209116240518],[-127.36239244690164,53.20893174094168],[-127.3625514251861,53.20880048171623],[-127.36284430598411,53.20874949352457],[-127.36313709564763,53.208695699718334],[-127.3632872784579,53.20855333484138],[-127.36341048771546,53.20838943329956],[-127.363603853159,53.20824825645946],[-127.36365746026804,53.20807843207112],[-127.36364317679153,53.20789706257075],[-127.36363082589463,53.20771791197175],[-127.3636119014872,53.2075382811952],[-127.3635752062577,53.20735996651671],[-127.36351790572776,53.20718301846896],[-127.36341213685638,53.207015027953375],[-127.36323210547037,53.20687142392271],[-127.36310037512358,53.20671269644516],[-127.3630515049574,53.206535086389074],[-127.36303260145002,53.206356011008054],[-127.36302961108758,53.20617618778272],[-127.36304633532855,53.205996702526626],[-127.36308843540202,53.20581861068306],[-127.36315971815583,53.20564410062234],[-127.36326684405505,53.20547590159117],[-127.36335793281106,53.2053050810336],[-127.363400978844,53.205127533913675],[-127.36341677105216,53.2049480592062],[-127.36342972509651,53.204768061328636],[-127.36344550204791,53.20458858675539],[-127.36345941880514,53.20440913356727],[-127.36347426547046,53.204229669657934],[-127.36349098705453,53.2040501841517],[-127.36351522655913,53.2038711679162],[-127.36354321620523,53.20369211746282],[-127.36356745528353,53.20351310118219],[-127.36358510619526,53.20333360489051],[-127.36360277195718,53.2031541084062],[-127.36362324256466,53.20297457961865],[-127.36364183800936,53.20279507239041],[-127.36365105839072,53.20261567304361],[-127.36363681611336,53.202435987914875],[-127.36357394793117,53.20226021519995],[-127.36344492725357,53.20209809492849],[-127.36325199077594,53.20196080698883],[-127.36300853085311,53.201856032123764],[-127.36279263661447,53.20173356617474],[-127.36263476520256,53.201577944573025],[-127.36255808564515,53.201410174230894],[-127.36261609434082,53.20123133435168],[-127.36261028334069,53.201050987277185],[-127.36252696327651,53.20088106105143],[-127.36231741064846,53.20075124200316],[-127.36207761945184,53.20064361713681],[-127.36184788165194,53.20052804111092],[-127.3616062901625,53.20042267716725],[-127.36135464823654,53.2003252812756],[-127.36114055148657,53.200199994729616],[-127.36088184882439,53.200000141106514],[-127.36082496178668,53.19995148887934],[-127.36067547942092,53.19979408295886],[-127.36055949321634,53.19962844808857],[-127.36049009070967,53.19945331348359],[-127.36046836329918,53.1992737048283],[-127.36048507780612,53.19909366366401],[-127.3605375036703,53.19891600934038],[-127.36062860432035,53.19874519010658],[-127.36074417009358,53.198577460488],[-127.36084867385637,53.1983863165651],[-127.36088210440231,53.198230171300004],[-127.36087253376952,53.198049311317455],[-127.3608255756173,53.19787223358519],[-127.36075521213284,53.197696554219156],[-127.36066715436984,53.197524430825865],[-127.36056606431144,53.19735526298074],[-127.36045751212613,53.19718730132464],[-127.36034246091877,53.197021099553446],[-127.36021903860694,53.19685722599073],[-127.36008447728443,53.19669685090506],[-127.35991185589788,53.19654867425153],[-127.3596839276402,53.196429702605016],[-127.35948206963596,53.19630539319287],[-127.35939780563325,53.19613435483191],[-127.35934883708312,53.19595281715565],[-127.3593252747787,53.19577379385919],[-127.35931105318039,53.19559410754947],[-127.35924817714285,53.19541721171978],[-127.3592415084714,53.1952391151025],[-127.35928075838616,53.19505993576077],[-127.35926373246679,53.1948802725954],[-127.35918596890563,53.19470691823178],[-127.35903379971268,53.194552902665606],[-127.35887323932766,53.194400103750205],[-127.35874518730759,53.19423740226981],[-127.35864131151978,53.19406882939035],[-127.35854953884889,53.193897311656386],[-127.35845310579073,53.19372640310103],[-127.3583362361085,53.193561896522],[-127.35818776633745,53.19340559626117],[-127.35802350018997,53.193253959261554],[-127.3578610919461,53.1931017449266],[-127.35771916086954,53.19294480434677],[-127.3576237531419,53.19277668928862],[-127.35757113703613,53.19259799843652],[-127.3575232183268,53.19241981848948],[-127.35746969115637,53.192241693820584],[-127.35742835941423,53.19206399413273],[-127.35745074348489,53.19188500842629],[-127.35740778930105,53.191715171407246],[-127.357217613069,53.19157391547111],[-127.35694617194433,53.19150082548232],[-127.35666748218303,53.19143509723905],[-127.35638699374913,53.19137219489539],[-127.35610559450525,53.19130986709897],[-127.35582506873183,53.19124527850405],[-127.35554907920984,53.191176163954125],[-127.35527932045437,53.19109688322735],[-127.35501957493489,53.19100796683631],[-127.35479087127125,53.190892921327595],[-127.35462387681743,53.19074299622901],[-127.3544624557551,53.190591877611],[-127.35433259393146,53.19043032160036],[-127.35423804525487,53.1902593880327],[-127.35416591599959,53.19008540107794],[-127.35412363774611,53.189907155223004],[-127.35405895329313,53.18973139770394],[-127.35399802126778,53.18955616201857],[-127.35398851788153,53.189376420812145],[-127.3539733911153,53.18919673490796],[-127.353972330137,53.189016897156485],[-127.35396750513516,53.188837093451916],[-127.35395987640752,53.188657330746054],[-127.35395224745785,53.18847755906073],[-127.35395118658747,53.188297721239124],[-127.35395387720138,53.18811839632606],[-127.35395843905295,53.187938485227],[-127.35396298615794,53.187758583243145],[-127.35396662134464,53.18757924747816],[-127.35395336962567,53.187399539969505],[-127.35393449539482,53.18721990568355],[-127.35391936962907,53.187040219562725],[-127.3539248614447,53.18686030669388],[-127.35400846571304,53.18668957714516],[-127.35413259187868,53.18652567252089],[-127.35424820367231,53.186359623921255],[-127.35436097480651,53.18619248707849],[-127.3543683747463,53.18601367285282],[-127.35425434303885,53.185848564754316],[-127.35408924463204,53.185698617060915],[-127.35391672496343,53.185551550972406],[-127.35384551660218,53.18537698818075],[-127.35381541622618,53.18519803783975],[-127.35378345996466,53.18501967346908],[-127.35378332921401,53.18483981572123],[-127.35383680764974,53.18457755097428],[-127.35383552184133,53.18444925355865],[-127.3537970191269,53.18430065513606],[-127.35387351435023,53.184113206761566],[-127.3538370986274,53.18394217264775],[-127.35383235904969,53.18373547329271],[-127.35378969664059,53.18357404005438],[-127.35377118296377,53.18340559822429],[-127.35383964491227,53.18323056810192],[-127.3538239450462,53.183003823318394],[-127.35386558494216,53.18286944106307],[-127.35390963116322,53.18269356040821],[-127.35383717577162,53.18250893529119],[-127.35382960236207,53.18233084775296],[-127.35389717141994,53.1821575040863],[-127.35399479677032,53.18198605789],[-127.35410281067172,53.18181728979712],[-127.35422404688117,53.18165117633726],[-127.35438614044448,53.18150252492299],[-127.35462630613601,53.18139164513379],[-127.3548092447251,53.18125003400937],[-127.35491637793177,53.181082960496326],[-127.35494719242848,53.18090387779354],[-127.35495547951697,53.180723367455926],[-127.35495346979056,53.180543530732926],[-127.35494958636866,53.180363724396614],[-127.35495225416737,53.180183834117074],[-127.35497839039434,53.18000480484002],[-127.35502144584888,53.179827258339536],[-127.35507483305538,53.179650149385495],[-127.35513669909787,53.17947462872638],[-127.35520324201205,53.179299054486975],[-127.35525288018955,53.17912199725694],[-127.35529404157393,53.178943907447135],[-127.35534930354677,53.17876734158026],[-127.35539986995417,53.17859027359861],[-127.35543537258036,53.17841112785389],[-127.35555857536683,53.17824835182245],[-127.35567226725222,53.17808176692777],[-127.35575955901687,53.17790987223657],[-127.35582329355793,53.17773432959703],[-127.35586068563903,53.17755572675766],[-127.35590748263392,53.177378136783986],[-127.3559702713356,53.17720260482937],[-127.35602365154728,53.177025504156184],[-127.35612320208868,53.17685627463717],[-127.35618598912133,53.17668074251829],[-127.35625066445176,53.17650518871419],[-127.35632472926169,53.17633064789197],[-127.35641483608542,53.176159285016105],[-127.35650683379583,53.17598845620018],[-127.35658375074794,53.17581500306502],[-127.3566324165732,53.175637391167825],[-127.35666418204246,53.17545885227927],[-127.3566950000384,53.17527976840218],[-127.35674555636112,53.17510269054829],[-127.35685030785072,53.17492051817042],[-127.35698093912308,53.17475653444362],[-127.35718400811407,53.17462982055548],[-127.3574715045368,53.174593462590686],[-127.35774651686121,53.17466483344611],[-127.35801159119066,53.1747475146713],[-127.35826945947817,53.174839251726176],[-127.35851819370966,53.17493837243577],[-127.35876423386574,53.175040885341964],[-127.35902208744037,53.175132056169964],[-127.35926263757173,53.17523911346348],[-127.35948761107338,53.175356990326335],[-127.35963045196203,53.1755144750513],[-127.35974358625772,53.17568126554194],[-127.35981851423034,53.17585466248254],[-127.35997034888894,53.17600027273942],[-127.36025338208319,53.176058098571275],[-127.36053554339689,53.17611816598306],[-127.36081326278035,53.176185572149315],[-127.36109895429432,53.17623831825676],[-127.36139253060192,53.17627416405415],[-127.36168858620884,53.1762998952335],[-127.36197604523839,53.176349257121736],[-127.3622465616475,53.17642570760082],[-127.36250894606165,53.17651178061374],[-127.36277950054894,53.17658935005179],[-127.36306872839451,53.17663532716401],[-127.36335086146077,53.176694267665894],[-127.36362230906703,53.176770148503],[-127.36389643439331,53.17684207130502],[-127.36415250838209,53.176935492821016],[-127.36439490126608,53.17704083324081],[-127.36461167263442,53.17716496281407],[-127.36478785574596,53.17730973060502],[-127.36498345227406,53.17744587433767],[-127.36524747387837,53.17749493378667],[-127.36554951457084,53.177472965459096],[-127.36583056988961,53.17741088790984],[-127.36611260821152,53.17735048372117],[-127.36639366218022,53.1772884137929],[-127.36667775039459,53.17723302279332],[-127.36696880516006,53.17719044204789],[-127.36726195036523,53.17715456003614],[-127.36755831483802,53.17713153148567],[-127.3678571831333,53.17712751449063],[-127.3681524461221,53.17715716534934],[-127.36843462597388,53.17721721390325],[-127.36870108045716,53.17731219111959],[-127.3689963428987,53.17737096652526],[-127.36925883933445,53.17743068489429],[-127.36953117716493,53.177504856656974],[-127.36977631448693,53.177607357461426],[-127.37002694782154,53.17770587655895],[-127.37029570411424,53.177785126244686],[-127.37058700359799,53.177836664178194],[-127.37086271321668,53.17789903207435],[-127.37115541917937,53.17793654035835],[-127.37145316338093,53.17795550415163],[-127.37175163770749,53.1779682999225],[-127.37205031490667,53.1779586716233],[-127.37234786284803,53.17794289683796],[-127.37262796420848,53.17790939394267],[-127.37294490464072,53.17791356365454],[-127.37324385094712,53.17791178238599],[-127.37354260013313,53.17790439068086],[-127.37384111110137,53.17791830136468],[-127.3741402753834,53.17792322994464],[-127.37443860474895,53.17793153822874],[-127.37474443128932,53.177968885381766],[-127.37502192862026,53.177999281301844],[-127.37529875732841,53.178067228962966],[-127.3755827694349,53.17812499815857],[-127.37586227250343,53.178188431044326],[-127.37614357715,53.17824959217273],[-127.37642754049465,53.1783062482943],[-127.37671151929922,53.17836289459761],[-127.37699548416454,53.1784195493539],[-127.37727320840011,53.178485796654066],[-127.37753474286374,53.178572958302496],[-127.37780981148367,53.17864371766074],[-127.37809368834827,53.17869756485159],[-127.37839182309807,53.17869969771904],[-127.37868495096481,53.178663231852546],[-127.37897600348094,53.17862062162969],[-127.3792630701035,53.178570768716305],[-127.37954807982575,53.17851534501594],[-127.37983015744365,53.17845602819652],[-127.38012022639856,53.178412305985795],[-127.38041777451932,53.17839651092813],[-127.38071559921123,53.17841769178157],[-127.38115133747615,53.17847200200925],[-127.38145006765271,53.1784634700071],[-127.38174026316152,53.17842366892558],[-127.38202716069327,53.17836877299504],[-127.3823216116835,53.178344044464865],[-127.38262094798633,53.178354552674215],[-127.38291539180275,53.17838697351532],[-127.38318856115527,53.178457186840475],[-127.38344199401195,53.178553959832676],[-127.38369355729698,53.178651309957345],[-127.38395150502973,53.1787429908844],[-127.3842265303673,53.17881205058809],[-127.38452183475172,53.17884221621156],[-127.38482037412525,53.17885665481934],[-127.38510676816762,53.178900935226565],[-127.38527280286624,53.17904803321939],[-127.38534412991896,53.179222568738275],[-127.38548431357475,53.17943889046594],[-127.38553523378681,53.17956268164594],[-127.38564287732979,53.17973006840079],[-127.3857876860748,53.17988694365315],[-127.3859686086813,53.18003050462278],[-127.38614580276742,53.18017466478403],[-127.38631841601364,53.18032224908642],[-127.38652513760987,53.18045205993951],[-127.38674384684812,53.18057556225372],[-127.3869780752157,53.180686564730465],[-127.38723882746625,53.180777640991884],[-127.38749133898405,53.180874416260885],[-127.3877034866913,53.1809979937143],[-127.38789368039727,53.1811380813328],[-127.38807094095195,53.18128392326611],[-127.38822782745281,53.18143729218777],[-127.38833643093061,53.18160466525121],[-127.38841527140382,53.1817791197544],[-127.3885572235728,53.18193433975352],[-127.38872337394207,53.182084228614734],[-127.38887840994893,53.182238174190225],[-127.38904363340362,53.18238808244061],[-127.38923558298808,53.182524220735885],[-127.38952920847247,53.18255944104859],[-127.38982634327387,53.18258733105114],[-127.39010758692746,53.18264509834938],[-127.39034270975772,53.18275439839835],[-127.3905633346872,53.18287843606758],[-127.39077377490318,53.1830065195364],[-127.39097408517456,53.18314031567183],[-127.39119462202801,53.18326155619425],[-127.391411488877,53.183385636458056],[-127.39163477652875,53.183505158467504],[-127.39185071635092,53.18362924883425],[-127.39204182474325,53.18376763375422],[-127.39222738928434,53.18390888953409],[-127.39242401229352,53.184043856171485],[-127.39262247712895,53.18417823604476],[-127.39282005052264,53.18431374667761],[-127.39305704190029,53.184421898851696],[-127.39331688207585,53.18451240791563],[-127.39357668675947,53.184601805197836],[-127.39376305705107,53.184738566718394],[-127.39389307054375,53.18490064454054],[-127.39403048604264,53.185059273280146],[-127.39426477665775,53.18517081667839],[-127.39452278674436,53.1852624652929],[-127.39479611192667,53.185335447519265],[-127.3950694530455,53.18540842893536],[-127.39528168285914,53.18553312163823],[-127.39544412275325,53.18568304493962],[-127.39558156856758,53.18584279215629],[-127.39575607148711,53.185988655254384],[-127.39596561661212,53.18611729601752],[-127.39617057748124,53.186248796447934],[-127.39645983365779,53.18629245142664],[-127.39675873055661,53.18628780608552],[-127.39705825742301,53.186273622951006],[-127.39734848815617,53.186233219051346],[-127.39763148487718,53.186172728946524],[-127.39791555846806,53.186116707856236],[-127.39820775424127,53.186079084621696],[-127.39850601992069,53.18605539204381],[-127.39880381848128,53.18604570729018],[-127.39910317292974,53.18605449784856],[-127.39940174978366,53.1860683440395],[-127.39972883233602,53.18606559933904],[-127.39996715307481,53.18609976233962],[-127.40000025955808,53.1861088916374],[-127.40026899572275,53.18618415683243],[-127.40053144010096,53.18626734005834],[-127.40081014521758,53.186332400716616],[-127.40110465848174,53.186364776191944],[-127.40140381513379,53.186367960285814],[-127.40170012917316,53.18634148573662],[-127.40198215707069,53.18628043185753],[-127.40220613439078,53.18616459917213],[-127.40237557353066,53.186015793713445],[-127.40255729781668,53.18587020431039],[-127.4027659249706,53.18574391102048],[-127.40302942556899,53.185661226693085],[-127.40330637899173,53.1855884678059],[-127.40357936007013,53.1855090317032],[-127.40384655010737,53.18542461639471],[-127.4040658248131,53.185308835769064],[-127.40424386623665,53.185165528492576],[-127.40440750448082,53.18501175045281],[-127.40458071679862,53.18486401746104],[-127.40477207474396,53.18472615440614],[-127.4049681649995,53.18458991130223],[-127.40515664605502,53.18445040527873],[-127.40533748013696,53.1843064982836],[-127.40548222081706,53.184148460426],[-127.40557307475221,53.183977049881996],[-127.40552876383768,53.1837999551012],[-127.40546384176035,53.18362366969309],[-127.40537750583893,53.18345156497438],[-127.40512859768049,53.183182766860625],[-127.40510392300877,53.18300432724078],[-127.40515144513078,53.18282614260521],[-127.40511932992665,53.18264946767112],[-127.40498089549737,53.182489186850624],[-127.40480364600359,53.18234561065922],[-127.40463188956709,53.18219804244075],[-127.4045474524306,53.18202647035754],[-127.40450686249429,53.18184877512675],[-127.40451870515331,53.181668781568106],[-127.40455684312829,53.181490708355284],[-127.40462885836978,53.181316159885284],[-127.4047442764918,53.18115062613571],[-127.40484458636473,53.18098134487428],[-127.40489964422949,53.18080475612421],[-127.40499522300306,53.180634410207794],[-127.40509363792141,53.180464586358326],[-127.40521664064468,53.18030175906486],[-127.40537845699592,53.18015024185133],[-127.40559942528574,53.18002995514355],[-127.40588145770401,53.17997001176075],[-127.40616557195023,53.17991677559578],[-127.40629066251635,53.179760081148395],[-127.40629218284687,53.179580209700504],[-127.40630307251845,53.17940021799693],[-127.40638261369706,53.17922726415087],[-127.4065368885663,53.179074705163316],[-127.4067101063902,53.17892808874925],[-127.40689189358199,53.17878529685875],[-127.40707557540514,53.178643593795286],[-127.40724403785835,53.17849479180974],[-127.40742960990387,53.17835363046914],[-127.4076525113917,53.17823555787618],[-127.40790419062972,53.17813731367331],[-127.40816070998389,53.17804349380137],[-127.4083672996142,53.17791440767105],[-127.40851015175511,53.17775694345613],[-127.40859346200895,53.177584498815044],[-127.40868335982465,53.17741309633073],[-127.40875722874578,53.17723908741378],[-127.40882450857085,53.17706402724934],[-127.4088691904333,53.176885883040526],[-127.40890732078222,53.1767078077858],[-127.40895202042014,53.176530219114966],[-127.40900046727091,53.176352585813916],[-127.40906963726663,53.1761780676926],[-127.40916988455858,53.17600822688486],[-127.40929096255768,53.17584429691865],[-127.40941579066264,53.17568087798693],[-127.40950662547735,53.17550946345856],[-127.40957482913066,53.17533440060031],[-127.40960824475769,53.17515582522258],[-127.40960319995445,53.17497602230827],[-127.40958036611994,53.17479699595191],[-127.40953321147116,53.17461937973162],[-127.40946179242445,53.17444485835438],[-127.40935034273971,53.17427864877178],[-127.40919062199018,53.174125905168594],[-127.40901243040248,53.17398179025849],[-127.40882776392122,53.17383998439344],[-127.4086329876878,53.17370391056277],[-127.4084317404204,53.17357071044921],[-127.40822682164271,53.173439794897554],[-127.40802184807676,53.173307194244735],[-127.40788574965244,53.17324493772185],[-127.40741101621651,53.172891429686544],[-127.40678469910308,53.172432133103186],[-127.40637237234756,53.17195349118976],[-127.40605862471763,53.17173421551354],[-127.40570787457939,53.171557396940976],[-127.40563287557947,53.17155661098311],[-127.4055826324021,53.1714826821554],[-127.40542024829753,53.171333891774864],[-127.40513554401545,53.171170299639684],[-127.40490579733849,53.17113772240128],[-127.40463859847426,53.17110615387365],[-127.40452126658391,53.17107225104415],[-127.40441284144867,53.17079842196012],[-127.40434052413381,53.17062446393866],[-127.40424210441493,53.170454177324416],[-127.40413719497786,53.17028620882404],[-127.4040127371298,53.17012239869885],[-127.4038521626637,53.169971334528135],[-127.40366662043365,53.16983009589155],[-127.4034607902594,53.1696991830207],[-127.40323388805491,53.169582531741376],[-127.4029923330789,53.16947613025883],[-127.40275172385236,53.169369726050085],[-127.40250926418896,53.16926445493324],[-127.40226500306171,53.16916089007165],[-127.40200280789567,53.16905361943825],[-127.40182866849943,53.168917281211804],[-127.40179192025911,53.16874122397882],[-127.40186394732733,53.16856779633099],[-127.40199823907855,53.16840651381779],[-127.40216762656796,53.16825827178695],[-127.40238848607673,53.16813630554585],[-127.40264993012296,53.16805140311183],[-127.40294396681817,53.16801710633084],[-127.40324267466153,53.16801020405202],[-127.40354127440138,53.16800049627744],[-127.40383732833035,53.1679700910213],[-127.40406215163192,53.16785480722096],[-127.4042182483947,53.167701672480526],[-127.40433172012771,53.16753503099022],[-127.40445279262688,53.167371105213185],[-127.40456154968861,53.16720340773471],[-127.4046476762791,53.16703148723084],[-127.40471119168342,53.16685591727983],[-127.40474742369399,53.16667730919093],[-127.40477241178456,53.16649827867685],[-127.40481053502413,53.166320203909734],[-127.40488910980417,53.16614669629094],[-127.40499407813306,53.165977922592695],[-127.40510663176234,53.16581185579993],[-127.40522578581943,53.165646831137856],[-127.40535627543085,53.165485033605535],[-127.4054934025093,53.16532539832985],[-127.40561160954596,53.165160384445926],[-127.40571469895809,53.16499162330089],[-127.40582722868389,53.16482500012557],[-127.40593127930471,53.16465679211709],[-127.40597974369844,53.16447971450796],[-127.40597935432989,53.16429874363765],[-127.40582717988737,53.164146461448425],[-127.40569351235195,53.163986679742145],[-127.40564265832089,53.163809669985],[-127.40572782950684,53.1636377595875],[-127.40584321011819,53.163472222992276],[-127.40596423140627,53.16330773091334],[-127.40606355002339,53.16313845818549],[-127.40606033924377,53.16295695590137],[-127.40607677108555,53.16277466443493],[-127.40607590221252,53.162607702357015],[-127.40613944226835,53.16243325139269],[-127.40626427673617,53.1622703989773],[-127.40640895707553,53.162112913696426],[-127.40656120341586,53.16195757954316],[-127.40671821694204,53.1618049855799],[-127.40689516576194,53.161660007736245],[-127.40708259053619,53.1615199433766],[-127.40726999908523,53.16137987888759],[-127.40743553773244,53.16122998854308],[-127.4075925603936,53.16107739318106],[-127.40774481744275,53.16092262198732],[-127.40788284979676,53.16076297249471],[-127.4080057622762,53.16059902019552],[-127.40810412233888,53.16042975673463],[-127.40816666567532,53.1602536307776],[-127.40820285897446,53.16007446537625],[-127.40829003088308,53.15990645542681],[-127.40852232845799,53.159792184716714],[-127.40879928961176,53.15972501285468],[-127.40907821630891,53.15966062297078],[-127.40935808968965,53.15959677697332],[-127.40963797721062,53.159532930133466],[-127.40991586392917,53.15946574458423],[-127.41017913088638,53.1593813584168],[-127.4104520793828,53.15930638605423],[-127.41074317229533,53.159269862774494],[-127.41104241012636,53.159252848101545],[-127.411342207918,53.159252635350384],[-127.4116363167279,53.15927826404539],[-127.41192728116202,53.1593224153392],[-127.41222002241653,53.159363191815395],[-127.41251678508388,53.15938430417382],[-127.41281506577387,53.159394747257586],[-127.41311512631783,53.159402371262104],[-127.41341257577379,53.1594161936064],[-127.41370945163597,53.15944066350742],[-127.41400734669031,53.15946736174043],[-127.41430354121759,53.15949968267209],[-127.4145953231044,53.15953989998123],[-127.41487809583867,53.159590865730394],[-127.41512685436528,53.15968931271795],[-127.41537487198228,53.15979336221077],[-127.41564982934692,53.15986291439481],[-127.41594921927364,53.15985036803046],[-127.4162473730737,53.159856886324626],[-127.41654662092785,53.15986787327537],[-127.41684501879696,53.159881675692326],[-127.41714260394052,53.15989940479658],[-127.41742997867237,53.15994751232178],[-127.41772258310682,53.159984350257616],[-127.41802027798424,53.16000487293457],[-127.41831932469971,53.16001025470258],[-127.41861559383308,53.15998821815989],[-127.41890647772759,53.15994550937134],[-127.41918342340576,53.15987831321921],[-127.4194494389834,53.15979275267841],[-127.41973254686106,53.159741734872945],[-127.42002753086815,53.159709615575046],[-127.42032463192916,53.159684758685124],[-127.42062288356802,53.159666055163285],[-127.42092348151448,53.159661881899886],[-127.42121589530285,53.15969255454333],[-127.42149279093388,53.159763746449116],[-127.42175430103042,53.159850820276674],[-127.42198403815019,53.15996796740334],[-127.42220556605709,53.1600919364974],[-127.42241504438805,53.16021996770796],[-127.42263822207426,53.16033719241825],[-127.42288325686538,53.16043566809301],[-127.42312386220965,53.160541476120244],[-127.42335138219319,53.160620545984756],[-127.42368605197248,53.160682073030564],[-127.4239457178461,53.160769720109776],[-127.42418638442703,53.160877210698935],[-127.42442336612123,53.160986977442995],[-127.42459314513462,53.16107626965486],[-127.42461041726307,53.161227346400665],[-127.42483736033859,53.16112207278062],[-127.42513830914197,53.16109996364384],[-127.42543554883208,53.16107901007006],[-127.42572855183639,53.16104354758963],[-127.42599968587427,53.16097080235514],[-127.42622426037516,53.160850986380794],[-127.42645176802101,53.16073506128678],[-127.42670331861503,53.16063734076198],[-127.42695876495925,53.16054404626222],[-127.42722588314473,53.160463502154194],[-127.42750775488382,53.16040351559251],[-127.42779560759428,53.16035465351655],[-127.42808548011712,53.16030969304294],[-127.42837641351325,53.160268645730746],[-127.42867041279806,53.1602353961246],[-127.42896665905764,53.16021276911061],[-127.42926390968582,53.160192370480544],[-127.42955998902424,53.160165261472855],[-127.42986607276708,53.16015652572176],[-127.43013496387215,53.160212105497806],[-127.43035182295644,53.1603355602151],[-127.43062408203426,53.16040735180162],[-127.43091670112223,53.160444157113],[-127.43120322691236,53.160494482941495],[-127.4314800650144,53.16056285532388],[-127.43177676990732,53.16058167903888],[-127.4320744007361,53.160572475067916],[-127.43232499305007,53.160474745049356],[-127.43257077648204,53.16037315496451],[-127.43283788291166,53.16029259818531],[-127.433132936961,53.160262695542364],[-127.43349138093743,53.16011267280237],[-127.43363322639573,53.15995742835363],[-127.43391336824749,53.15990248568108],[-127.43421303752316,53.15989828992567],[-127.4345116070359,53.159889068383855],[-127.43480987786072,53.159898900435024],[-127.43510928149276,53.1598868701771],[-127.43539925073034,53.159928179076665],[-127.43569587693388,53.15994475263405],[-127.43599079338983,53.15991091778484],[-127.43628322367488,53.159942108988716],[-127.43654214446664,53.15997930935778],[-127.43687278797503,53.15997697218255],[-127.43716594475397,53.15994651765552],[-127.43746428573223,53.159930567646995],[-127.43775977851055,53.15994154664864],[-127.43804381137392,53.160000851329656],[-127.43833020957128,53.16004724380634],[-127.43864746026891,53.16006411518166],[-127.43892305523339,53.1600960693326],[-127.43920873531471,53.16014862742623],[-127.43948823381598,53.16021246634278],[-127.43977208433166,53.160266721809094],[-127.44006733695234,53.16029786938942],[-127.44035821975297,53.16033803447706],[-127.44064561396773,53.16041354572666],[-127.4405405276617,53.160243923846764],[-127.44052281789291,53.16008164766022],[-127.4407165582183,53.15993808973705],[-127.44093156814506,53.15981388808209],[-127.44116568826121,53.15970065068278],[-127.44140862500409,53.15959852072113],[-127.44168248674478,53.15952458521541],[-127.44194860330258,53.15944289898886],[-127.44220595819009,53.15935178904493],[-127.44245553376908,53.15925237306412],[-127.44268202118445,53.159135307831754],[-127.44287978238283,53.15900010637679],[-127.44304991776951,53.158851784829174],[-127.44315668418523,53.1586857497479],[-127.4432228443392,53.15851012400886],[-127.4433399412985,53.15834508337158],[-127.44349302074835,53.158190810076604],[-127.44367075750387,53.158045765662216],[-127.44385043813972,53.15790237370962],[-127.44406237073059,53.15774345487534],[-127.44422403041075,53.15762157425842],[-127.44441702831539,53.15748418683228],[-127.44461192083737,53.157347887609994],[-127.44480873855198,53.15721269413903],[-127.4450074319129,53.15707803324949],[-127.44520805014963,53.156944469131346],[-127.44540963432978,53.1568120134868],[-127.44561405736397,53.1566806434334],[-127.44582135319996,53.15655091437754],[-127.44602963027134,53.156422302546254],[-127.44623406848086,53.15629148699785],[-127.44643466013815,53.156157365138974],[-127.44663052226385,53.15602217112589],[-127.44682538194259,53.155885312545394],[-127.44699745571594,53.15573921129],[-127.447118294999,53.155574676468426],[-127.44723347249912,53.15540853426211],[-127.44737419300968,53.15524992398362],[-127.44752969823057,53.15511298959277],[-127.4477088170811,53.1549539091771],[-127.44790515807715,53.15480582413091],[-127.44811655250669,53.15465923099935],[-127.44824782162365,53.154525954053014],[-127.44838003864783,53.15436520520772],[-127.44848575231232,53.15419693612311],[-127.44858769622151,53.154027592425095],[-127.44872653429218,53.15386900334309],[-127.44889140409187,53.153759403479555],[-127.44906855944309,53.15370792617994],[-127.44923137972599,53.15367511023357],[-127.44952130315029,53.15363402236323],[-127.44980230708374,53.1535784657706],[-127.4500583355526,53.153477277274355],[-127.45026950108291,53.153351974982606],[-127.45041209547446,53.153193902526894],[-127.45047161649991,53.15301723246622],[-127.45050970442418,53.15295344494666],[-127.45062395616608,53.152870237690784],[-127.45093588483357,53.15281542881079],[-127.4512206653294,53.152760943071264],[-127.45145477668869,53.152649369618985],[-127.45171012060236,53.152556030263604],[-127.4519519124665,53.152449964767165],[-127.45220632491085,53.15235662676672],[-127.45251123960836,53.15228845202728],[-127.45263446241465,53.15222137743066],[-127.45270480535348,53.152169529189294],[-127.4528350869688,53.15200767797893],[-127.45285984779643,53.15182862713665],[-127.45271179695244,53.15166346915767],[-127.45261544536119,53.15150327956183],[-127.45255135904004,53.151328125473846],[-127.45251540151239,53.1511537467026],[-127.45244838439098,53.15097526658601],[-127.45240854797076,53.15079701760373],[-127.45235189631356,53.1506200866612],[-127.45230848813327,53.15044691986732],[-127.45225824563417,53.1502654365879],[-127.45221559397127,53.150087213075885],[-127.45217110441028,53.14990957689506],[-127.45212567143567,53.14973195226247],[-127.45207836625701,53.149554350575066],[-127.45203293405251,53.1493767258721],[-127.4519856296596,53.149199124112855],[-127.45192247822105,53.14902395806418],[-127.45185278085577,53.14884887229107],[-127.45179522470109,53.14867251685486],[-127.45173672526634,53.14849617295281],[-127.45167355685724,53.14832045109782],[-127.4516076067252,53.14814531916472],[-127.45152047629729,53.14798053281212],[-127.45146308935252,53.14786412504602],[-127.45143750181279,53.14780056223401],[-127.45135198086417,53.14762847629654],[-127.45132700793896,53.14758283621966],[-127.45128228815415,53.147453390052554],[-127.45127874869372,53.14737722967495],[-127.4512929976952,53.14727395564612],[-127.45133924734631,53.1471747716593],[-127.45141674688048,53.14711330621174],[-127.45156673073386,53.147034697647136],[-127.45163646388005,53.14699237827846],[-127.45189443991379,53.14689507877891],[-127.45217396548975,53.146852425798805],[-127.45230486534773,53.14684578071086],[-127.4524689122367,53.14682247473865],[-127.45276076897373,53.1467841515592],[-127.45305262926861,53.14674638344896],[-127.45332256167153,53.14666967034548],[-127.4535643734148,53.1465652769888],[-127.45378115021254,53.14644102807687],[-127.45398839029444,53.14631184855291],[-127.4541946469362,53.14618156008282],[-127.45439520366266,53.146048535197366],[-127.45447644155287,53.14598702167404],[-127.45457003158262,53.145902943313416],[-127.45471540506229,53.14574538619179],[-127.4548589200313,53.14558785171781],[-127.4550213933039,53.14543737258013],[-127.45519428625788,53.14529011801105],[-127.45537862423834,53.14514889041646],[-127.45558010136558,53.14501586098416],[-127.45579020265184,53.14488831933643],[-127.45600600124932,53.14476351327787],[-127.4562314259233,53.14464587700998],[-127.45645970803298,53.14452988160213],[-127.45666977016856,53.14440178293696],[-127.45689038678724,53.14428083363318],[-127.45715348512692,53.1441969068688],[-127.4574422145352,53.1441502099523],[-127.45773094299832,53.1441035033688],[-127.45800872510895,53.14403788891563],[-127.45813168526126,53.14399154760071],[-127.45823711479453,53.14392525055885],[-127.45840240479953,53.14377528753763],[-127.45859434965395,53.14363787861909],[-127.45870041855719,53.14359062427843],[-127.45883852645566,53.14357603839961],[-127.45900795881813,53.143627740187526],[-127.4591314155791,53.143677202668975],[-127.45925468220169,53.1436941775165],[-127.4594148118343,53.14369332297257],[-127.45971515505006,53.1436576746848],[-127.4599871043339,53.143613419798235],[-127.4602747668024,53.14356335812078],[-127.46056883351562,53.14353563862504],[-127.4608650082013,53.14351517210345],[-127.46102540879443,53.14349526098213],[-127.46119505483983,53.14347187350434],[-127.4612711420271,53.143478213485935],[-127.46145744900898,53.14347647699502],[-127.46175609013308,53.143472787511904],[-127.46205342000226,53.143458462821734],[-127.46222142922801,53.14346927839916],[-127.46248876715492,53.14353545425577],[-127.46275657444376,53.14361562735678],[-127.46302880044536,53.14368790963232],[-127.46332381894665,53.1437150744062],[-127.46363668534454,53.14368935604834],[-127.46380804237316,53.14360710502163],[-127.46407513191933,53.14344971510029],[-127.4642894867224,53.14333779431192],[-127.4645613118473,53.143263272782605],[-127.46484400282259,53.143204861034285],[-127.46513271667708,53.14315813636543],[-127.46542998520542,53.14314212741194],[-127.4657284493112,53.14313339161298],[-127.46602813263779,53.14313304035467],[-127.46632474998495,53.14315233325737],[-127.46662152309115,53.14317611506055],[-127.46692049589102,53.143182494264366],[-127.46722168578874,53.14319836627575],[-127.46751535249425,53.14321377499973],[-127.46781123686607,53.143238685507804],[-127.46810639137911,53.14326976344065],[-127.46839722692734,53.14331153596054],[-127.4686931901999,53.1433386846019],[-127.46897011709682,53.14341145080875],[-127.4692370267921,53.14349218534387],[-127.46950129201194,53.143577434742234],[-127.46976008188427,53.14366723419002],[-127.47001616892145,53.14375986381276],[-127.47027225738992,53.143852501837785],[-127.47055773047612,53.14390105966614],[-127.47085297421438,53.1438805796917],[-127.4711314101006,53.14380763730072],[-127.47140444230044,53.143740929518664],[-127.4716763157298,53.14366806743372],[-127.47181497697807,53.14358845263134],[-127.47196105950927,53.14353396450173],[-127.4721037644354,53.14340948186653],[-127.47221396669828,53.14337337031417],[-127.47232581464642,53.14327727873504],[-127.47243875906223,53.14323945634047],[-127.47261554513442,53.14317898196191],[-127.47282432615062,53.143150043151905],[-127.47297638450593,53.14313302570967],[-127.47308956795762,53.14312881035141],[-127.47323082106038,53.143124254312426],[-127.47334799583463,53.14310038204339],[-127.47350125882251,53.143063732992545],[-127.47365574239637,53.14303546895781],[-127.47395361131599,53.14303680568138],[-127.47424140933822,53.14299119070805],[-127.47452112820027,53.14292831006116],[-127.47481384743575,53.142889365231966],[-127.47510886730363,53.142862709221156],[-127.47540601290471,53.14284331469776],[-127.47570426269338,53.14282895308079],[-127.47599632448988,53.14279784912213],[-127.47611685089305,53.142762725710824],[-127.47623441146983,53.142696260839266],[-127.47642436289009,53.1425571705107],[-127.47664203917314,53.14243454363228],[-127.47683749654061,53.14231891763141],[-127.47719312397143,53.14207017472411],[-127.47718123620947,53.14189046237825],[-127.4771282374348,53.141713495680705],[-127.47713977962731,53.14153404659539],[-127.47716630410805,53.14135497522619],[-127.47718251905533,53.141175467751346],[-127.47716036139572,53.1409964394],[-127.47709244510467,53.14082134434854],[-127.47695297027175,53.140662267048135],[-127.476856200467,53.14049201470202],[-127.47674549990438,53.14032529814156],[-127.47668131134365,53.14014960044375],[-127.47669001960766,53.13996962182903],[-127.47671000000855,53.13979063210716],[-127.4767205998944,53.13961119464979],[-127.47669188508215,53.139432247944455],[-127.47663794788102,53.139255292564364],[-127.4764781363057,53.139103201416034],[-127.47641769459764,53.13892744776191],[-127.47634604050516,53.138752398811675],[-127.47624928220503,53.138582710541606],[-127.47608115952211,53.13843407557575],[-127.47591218785428,53.13828770124676],[-127.47591337170327,53.13810669576195],[-127.47598031210946,53.1379316027168],[-127.47595814625133,53.137752574005084],[-127.47593130796245,53.1375736035724],[-127.47592691464169,53.137393788259814],[-127.4759262657237,53.137213935175346],[-127.47593030403367,53.13703401462394],[-127.47594652256466,53.136854506888085],[-127.47596556114837,53.136675528754786],[-127.47603155089287,53.13649988256065],[-127.47610507146557,53.13632581883485],[-127.47612503294346,53.136146264282864],[-127.4761459574018,53.135967262502334],[-127.47617622621263,53.135788135118176],[-127.47622154410575,53.13561050536287],[-127.47629882592778,53.1354369592727],[-127.4763921238662,53.13526601933183],[-127.47650807917435,53.135100390801796],[-127.47668185742879,53.134954776962026],[-127.4769176949155,53.13484369324555],[-127.47714779790837,53.13472930970428],[-127.47730254550765,53.134575532064595],[-127.47747531667251,53.13442824406047],[-127.47768531921434,53.134301227360275],[-127.47794727337319,53.134214469735156],[-127.47824288124339,53.134179397179764],[-127.4780521447634,53.13405346062287],[-127.47778627994643,53.13397441850295],[-127.47760153835199,53.13383216123125],[-127.47740394871327,53.133697343972024],[-127.477213711216,53.13355851673519],[-127.47702530776311,53.133418545633326],[-127.47683509244266,53.13328028233348],[-127.47663565565192,53.133146051689224],[-127.47641605936501,53.133024399632056],[-127.47616183635496,53.13293007520582],[-127.47590489666034,53.13283858131234],[-127.47566249906384,53.13273402231918],[-127.47537950077374,53.13267367507744],[-127.47510030560719,53.13261496520999],[-127.47491372648874,53.13247328258455],[-127.47475950814587,53.13231999852817],[-127.47468974388373,53.13214492459267],[-127.47457627345088,53.13197824014333],[-127.47448048078029,53.131808529064664],[-127.4743827977574,53.13163828561877],[-127.47441966892528,53.13146020562941],[-127.4743928411217,53.131281234221476],[-127.47432122766533,53.131106738907974],[-127.47432151404796,53.13092687361293],[-127.47425269724774,53.130751787524396],[-127.47421465952947,53.13057351159954],[-127.47421588971089,53.13039363449268],[-127.47426306679736,53.13021598181035],[-127.47424747070569,53.13003687025625],[-127.47425902191881,53.12985742028738],[-127.47427150139458,53.12967795872704],[-127.47428208942976,53.12949795591015],[-127.47428708198734,53.12931858763878],[-127.47428362516143,53.12913876882816],[-127.47426988139433,53.12895906926851],[-127.47425426640085,53.12877940198199],[-127.4742461378156,53.12859963238952],[-127.47425113041953,53.12842026402983],[-127.47426359016985,53.12824024671842],[-127.47430985566956,53.12806316098459],[-127.47428488276043,53.12788361027285],[-127.47423006164318,53.127707228800254],[-127.47421351865464,53.12752756399358],[-127.47421100556922,53.12734773324245],[-127.47421410694437,53.12716782351987],[-127.47425097493102,53.12698974313924],[-127.47425781924595,53.12680978671699],[-127.47427029782918,53.12663032485161],[-127.47427903320276,53.1264509096304],[-127.47431211822204,53.12627175564404],[-127.4743414792249,53.126093203904645],[-127.47436707727613,53.125914134236425],[-127.47438984100836,53.12573454402935],[-127.47440702463075,53.12555558818501],[-127.47441199654686,53.12537565494338],[-127.47440386825727,53.12519589398166],[-127.47438731054038,53.12501622913396],[-127.47436984435672,53.1248371404097],[-127.47435797340384,53.124657426056984],[-127.47435453131716,53.12447759763237],[-127.47435668897046,53.124297708338865],[-127.47436449525871,53.124118304450725],[-127.47438164371422,53.12393878406426],[-127.47440631206338,53.1237597257452],[-127.47444408485623,53.1235810688208],[-127.47451477055809,53.12340648412847],[-127.47464204648817,53.123244085821796],[-127.47477782791306,53.123083813641564],[-127.47484662067441,53.12290869643241],[-127.47485535284063,53.12272928079546],[-127.474796793258,53.12255294575936],[-127.47460292991074,53.12241583593136],[-127.47435783923473,53.12231299350751],[-127.4740838988351,53.12224187994768],[-127.4737948831857,53.12219505248121],[-127.47350158682696,53.12215948432822],[-127.4732075381935,53.122128972309504],[-127.47291266333119,53.12210182289135],[-127.47261520823577,53.1220814378418],[-127.47231638345531,53.122075072952335],[-127.4720193042366,53.12209221957693],[-127.4717267457064,53.122131722515434],[-127.47143401141346,53.12216617942864],[-127.47113777200812,53.12215362020287],[-127.47089539343641,53.12204793082177],[-127.47071257872727,53.1219050739954],[-127.47047206967414,53.12179880465991],[-127.47020614471309,53.1217158200294],[-127.4699520226458,53.12162203727352],[-127.46971695610584,53.12151065129064],[-127.46950016178754,53.121386710442614],[-127.46927790584321,53.12126676388364],[-127.46904010625595,53.121157651872316],[-127.46879684927147,53.12105308984664],[-127.46855268917145,53.120949659211874],[-127.46831035815798,53.12084451988697],[-127.4680662004471,53.12074108823587],[-127.46779046783048,53.12067166802648],[-127.467499749463,53.12062877330424],[-127.46721254580967,53.12057966611612],[-127.46694939097803,53.120494954425425],[-127.46667815362632,53.12041987255664],[-127.46640780662587,53.120343658366764],[-127.46614371205195,53.12025896552995],[-127.46589140148218,53.12016291039867],[-127.46564090536465,53.120065155731446],[-127.4653913147823,53.11996626865427],[-127.46514354292671,53.11986623785749],[-127.46489488282242,53.11976733822074],[-127.46459661647047,53.119749740459305],[-127.46430593845756,53.11978920191336],[-127.46415214535251,53.11994351689934],[-127.46394986698974,53.120076018662495],[-127.46370732755696,53.12018156664069],[-127.46344639784174,53.120269402109756],[-127.46321922817422,53.120385965465715],[-127.46300641309863,53.12051187192111],[-127.46275516526077,53.12060911614273],[-127.46246042772205,53.12063965785203],[-127.4621622913832,53.12062597013012],[-127.46187160270512,53.12058418194261],[-127.46158355499472,53.120537312930914],[-127.46129290162781,53.12049607874624],[-127.46099596405541,53.12051711386737],[-127.46070940620079,53.120567722087316],[-127.46043675759559,53.12064169174565],[-127.46015023683371,53.120693418793856],[-127.45986061161447,53.120736782973225],[-127.45958402487756,53.12080519593141],[-127.45931038658259,53.12087748967917],[-127.45903177242727,53.12094144368737],[-127.45874015735141,53.120981467646075],[-127.45844641515833,53.12101366350955],[-127.45815171025156,53.121045314660606],[-127.45785688927646,53.12107360451462],[-127.45756519511148,53.121111385198354],[-127.45727363067083,53.12115251657839],[-127.45698295563196,53.121192524575775],[-127.45669233765825,53.12123420765847],[-127.45641078720605,53.12129482958867],[-127.45614884973698,53.121380984532514],[-127.45589179361943,53.12147323793416],[-127.45563664652141,53.12156659688477],[-127.45538925274018,53.1216676955018],[-127.45517258830634,53.12179139345887],[-127.45495208387031,53.1219123410737],[-127.45468431825113,53.121992961067306],[-127.45440670985518,53.122059132911694],[-127.45412906624497,53.12212473971145],[-127.45383647175726,53.1221636427783],[-127.45354164012127,53.12219192185677],[-127.45326007440491,53.12225197149457],[-127.45296165892731,53.122257879954404],[-127.45266681550844,53.122231244633916],[-127.4523721362167,53.122264001548984],[-127.45208958710347,53.122322948755304],[-127.45181592622333,53.122395225100085],[-127.45154712758817,53.122473053374684],[-127.45127740381548,53.12255144822424],[-127.45100468762163,53.1226242758656],[-127.45072608780352,53.122689330431854],[-127.45043234701187,53.12272207093363],[-127.45013373612949,53.122722371312626],[-127.44983429270512,53.122725478309825],[-127.44953608000803,53.122736978885435],[-127.44923756495844,53.122740081954944],[-127.44893871975373,53.12273309342305],[-127.44864217666274,53.12271151633901],[-127.44834492013811,53.122696662238525],[-127.44804675490309,53.12268238333308],[-127.44774866642291,53.122670344054995],[-127.44744987951228,53.12266503652598],[-127.44715119248869,53.12266308899467],[-127.44685242498369,53.12265834453187],[-127.44655352753249,53.122650229965835],[-127.44625288878588,53.12264550688149],[-127.44597121456323,53.122593474543514],[-127.44573896706254,53.122480886542526],[-127.44554423196116,53.12234262920623],[-127.44530035047079,53.122245871788905],[-127.44502458791304,53.122174713794294],[-127.44474978870633,53.12210410820629],[-127.44447049544556,53.12203916017427],[-127.44418581802164,53.12198100119454],[-127.44389261662542,53.12197506067745],[-127.44359401768803,53.12200279608459],[-127.44332503457314,53.122075560346346],[-127.44310071393052,53.122195411335625],[-127.44284933414639,53.122290372788214],[-127.44255649902198,53.12232251783319],[-127.4422575626892,53.12231271641909],[-127.4419602733828,53.12229673503767],[-127.44166087048463,53.12230094153272],[-127.4413645816737,53.12228662296162],[-127.44107824517033,53.12223464485714],[-127.44078686630645,53.122199528384655],[-127.4404879693353,53.122190842689065],[-127.44018982949942,53.12217710854803],[-127.43989184182739,53.12216784546369],[-127.43959447830792,53.12214961774895],[-127.43929709165786,53.12213025994981],[-127.43900090805867,53.12214675671601],[-127.43870057772149,53.122150967012615],[-127.43842688869766,53.12208538078761],[-127.43819454995642,53.121969417360546],[-127.43792099579389,53.12190774615353],[-127.4376249649448,53.121928711287445],[-127.43734145020457,53.12198706997573],[-127.43705071264063,53.12202590876785],[-127.43675261922921,53.12204129349201],[-127.43645419907587,53.122046604501264],[-127.43615583951281,53.1220541463654],[-127.43585791270081,53.12207401838874],[-127.43557123840515,53.12212232526092],[-127.43527745574544,53.12215446373559],[-127.43497922430485,53.12216537199255],[-127.43468107241559,53.1221790756837],[-127.43438405312786,53.12219836815311],[-127.4340891324491,53.122224358346635],[-127.43379328319995,53.12225035905895],[-127.43349531982813,53.12226966073191],[-127.4332065615654,53.1223118190029],[-127.4329170263583,53.122358477555736],[-127.43262223608285,53.12238838028904],[-127.43232582086841,53.122398139167395],[-127.43202781381716,53.12241575218723],[-127.43173500777705,53.12244899959092],[-127.43144335626346,53.122488947241116],[-127.43114962104369,53.122522204430425],[-127.43085271123395,53.12254484861247],[-127.43055568763991,53.12256413146308],[-127.43025787184531,53.122587905756895],[-127.42997007043732,53.12263060928829],[-127.42970519951771,53.12271505485458],[-127.42943265322035,53.12279399829668],[-127.42915823418677,53.122872954763494],[-127.42891438039265,53.122970036477916],[-127.42875267799542,53.12311599860388],[-127.42862447226244,53.12328395987526],[-127.42847053655102,53.12343822813626],[-127.42832134262848,53.1235941243557],[-127.42814320774515,53.12375260222274],[-127.42792689336429,53.12380620857902],[-127.42778578394147,53.12364653865043],[-127.42793569670444,53.123483910548586],[-127.42804991898156,53.123317795448244],[-127.42817164511914,53.12315215439232],[-127.42831900437558,53.12299740112345],[-127.42853673431428,53.122874861257266],[-127.42876110004337,53.12275504690223],[-127.42893021110297,53.12260675388738],[-127.429115485186,53.12246611879631],[-127.42931787978131,53.12233311205039],[-127.42956335485422,53.12222873005347],[-127.42983128692724,53.12215208333831],[-127.43012700164947,53.12212161157218],[-127.43042629096611,53.12211407368977],[-127.43072503402482,53.12211830403347],[-127.43102388654869,53.12212532944884],[-127.43132257313442,53.12212788247079],[-127.4316235621607,53.12214272508551],[-127.43183793624836,53.12206000722708],[-127.4320165420804,53.12191607722102],[-127.43219892760351,53.121773230758585],[-127.43239274820178,53.12163640458312],[-127.43256751311783,53.121489723041186],[-127.43263462514967,53.121315208549376],[-127.43280188344727,53.121168052747244],[-127.43300237426935,53.12103507141767],[-127.43323635831642,53.12092353204109],[-127.43344157000777,53.120791604385985],[-127.43356823769147,53.120634297722695],[-127.43354338478547,53.120453052918975],[-127.43351112268394,53.12027413923005],[-127.4336094200725,53.120108775967736],[-127.43384332159343,53.119994994940704],[-127.43408894243376,53.11989563981439],[-127.43427700164234,53.119754953328155],[-127.4344660597595,53.11961593986449],[-127.43467129952256,53.11948513913636],[-127.43489566759102,53.119366424150556],[-127.43513154663752,53.119255978407345],[-127.43538284982105,53.11915879280717],[-127.43564774397802,53.11907601017003],[-127.43589520767598,53.118976072903266],[-127.43612049775447,53.118857344288514],[-127.43634007423275,53.11873533162362],[-127.43656539976274,53.11861772234104],[-127.43680416057536,53.11850947941331],[-127.43705059916411,53.118407310765775],[-127.43727408388628,53.11829028725081],[-127.43745834498557,53.11814852087552],[-127.43765029883197,53.11801282875099],[-127.43776255908357,53.11784560631902],[-127.43787954609485,53.117680011741044],[-127.43800788796399,53.117517631929516],[-127.43816840426267,53.11736607614534],[-127.4383450596254,53.11722103876798],[-127.43852267600849,53.11707655421962],[-127.43869267751022,53.116928800061636],[-127.43880685912588,53.11676323854309],[-127.43885792670224,53.11658555292633],[-127.43889306260944,53.116407496344365],[-127.43893005047434,53.11622886134407],[-127.43895953471265,53.11604976178885],[-127.43898620425713,53.11587068749804],[-127.43901383578067,53.11569216628425],[-127.43904144820343,53.115513089428525],[-127.43906906008849,53.115334003586824],[-127.43909387292037,53.11515496075372],[-127.43911678033665,53.1149753762757],[-127.43913034724505,53.11479590547174],[-127.4391046259195,53.1146174687356],[-127.43903970430638,53.11444175941658],[-127.439005571413,53.11426342501613],[-127.43898353608205,53.11408326683697],[-127.43899619831419,53.11390492763415],[-127.4391283617486,53.11374530569121],[-127.43935168704331,53.1136249175314],[-127.43959039373986,53.1135161130566],[-127.43977564964577,53.11337713636632],[-127.4398756400056,53.1132072545338],[-127.43991918105854,53.11302910381764],[-127.43993178179446,53.11284907963071],[-127.43993411879843,53.11266974524994],[-127.43995327940303,53.11249020593595],[-127.43999591028278,53.11231262204152],[-127.44002912916996,53.11213347624675],[-127.44002863265926,53.11195361148775],[-127.43994137440485,53.11178153647462],[-127.43992598707099,53.111604094385385],[-127.44001658426158,53.11143377076889],[-127.44014866001656,53.11127190706512],[-127.44030819785796,53.11111979456884],[-127.44050479967528,53.11098460496071],[-127.44073006852578,53.110866431429585],[-127.44098034701385,53.11076868038775],[-127.44123931772374,53.11067867643532],[-127.4414983062319,53.110589227529935],[-127.44175628948257,53.11049754897169],[-127.44197868115965,53.1103777225666],[-127.44213537639898,53.11022508623192],[-127.44222030686288,53.11005314430204],[-127.44227229919446,53.109876009800374],[-127.44231208478838,53.109697894558586],[-127.44235094242529,53.1095197995692],[-127.44241984682557,53.10934469094581],[-127.442516075768,53.10917486111205],[-127.44262831232999,53.109008188849884],[-127.44275186824285,53.10884418444829],[-127.44288581943849,53.10868341500069],[-127.44303586940745,53.10852805217749],[-127.44319634865418,53.108376488619925],[-127.44335588358307,53.108224927382615],[-127.44351159985808,53.108071180168714],[-127.44366542502266,53.107916891002915],[-127.44382115797063,53.10776369897388],[-127.44398257833065,53.107612678569566],[-127.44415726425522,53.10746653436633],[-127.44436145320503,53.10733516286642],[-127.44460306293958,53.10723079449217],[-127.44486395112727,53.10714299099808],[-127.44513557401179,53.10706794782774],[-127.44541400333962,53.10700066546034],[-127.44565464648481,53.10689574186544],[-127.44583127111764,53.10675182161285],[-127.4459642568998,53.10659049525634],[-127.4460793058313,53.10642434963896],[-127.44619811846833,53.10625927850245],[-127.4463207247066,53.10609528146944],[-127.4464480566608,53.10593291193849],[-127.44659334222048,53.10577591689803],[-127.44675948674308,53.105626519988526],[-127.44694938772062,53.10548802972828],[-127.44713358009218,53.105346811838665],[-127.44731679018996,53.10520448499415],[-127.44749430667277,53.10505943037459],[-127.44768707766958,53.10492314501617],[-127.4478988173653,53.104793915791745],[-127.44809067732257,53.104658205701675],[-127.44815202976179,53.10448207368872],[-127.44821430919693,53.1043059212969],[-127.44828038282111,53.104130851992785],[-127.44835490396582,53.10395679081808],[-127.4484897612355,53.103796003025934],[-127.44863030572458,53.10363738668967],[-127.44878978440222,53.10348526209505],[-127.44894548255374,53.10333206293316],[-127.44907561347472,53.10317021163386],[-127.44918312051146,53.103003034206296],[-127.44927362383072,53.102831582470436],[-127.44937168104921,53.1026617234972],[-127.44947726185265,53.10249344867375],[-127.4495989017833,53.102329459453934],[-127.4497574443005,53.102177344820454],[-127.44994633899299,53.10203774083811],[-127.45014573849207,53.10190417581719],[-127.45036038814544,53.10177883281789],[-127.45049052386113,53.10161697963533],[-127.45066990799091,53.101473008421785],[-127.45087500992723,53.10134217823869],[-127.45111647345368,53.10123499121409],[-127.45127321268966,53.101085137823354],[-127.4513910430744,53.100919507780624],[-127.4514919045751,53.10075016812257],[-127.4515889860669,53.10057975410586],[-127.45165118810345,53.100401923692225],[-127.45154448984067,53.10023681865583],[-127.4511340694745,53.09999979322472],[-127.45108509713386,53.09996284747517],[-127.45099141821369,53.09979534073659],[-127.45092917212075,53.099616797137614],[-127.45087622075262,53.09943645389369],[-127.45081310968152,53.09926016217683],[-127.45075651453034,53.09908266975387],[-127.45072330669602,53.09890489020496],[-127.45074615607494,53.09872530183093],[-127.45076902022294,53.098545713250644],[-127.45072648450166,53.098369168836115],[-127.45065313470806,53.09819412331577],[-127.45057606421827,53.098019688229556],[-127.45050080702075,53.09784354533269],[-127.45035892867362,53.09768894802143],[-127.45015415156972,53.09755530350114],[-127.44992015982359,53.097442745074794],[-127.4496605982724,53.0973484306561],[-127.44945697812456,53.097220929986165],[-127.44927706403286,53.09707576330532],[-127.44910999025278,53.09692260314268],[-127.44896517334703,53.096764122331685],[-127.44885203256842,53.09660132614318],[-127.44882261775712,53.09642518492388],[-127.44883409499488,53.0962406886515],[-127.44879432519232,53.096062432996895],[-127.448698640304,53.09589045721384],[-127.4485973841445,53.09571967928155],[-127.44853997523202,53.0955455576155],[-127.4485367215498,53.09536796591745],[-127.44855959757346,53.095188942190575],[-127.44859459846292,53.0950086401645],[-127.44860405334794,53.09481969482588],[-127.44863803463173,53.09463716388971],[-127.44868002807911,53.09446966831068],[-127.44869914342885,53.09429012573524],[-127.44869862964248,53.09411082378558],[-127.44867567429249,53.093931796943764],[-127.44864149839954,53.09375290763857],[-127.44860919290986,53.09357399537946],[-127.44857501758574,53.09339510601868],[-127.44852501174651,53.0932180961913],[-127.44846564060032,53.09304119216561],[-127.4483839972785,53.09286905277437],[-127.44827904740548,53.09269943136821],[-127.44814265184404,53.092540290311085],[-127.4479793248898,53.09238707354056],[-127.4477884225442,53.09224765151346],[-127.44755924874762,53.092138391509984],[-127.4472844487777,53.09206218957077],[-127.4470088219814,53.09198935915901],[-127.44672872361393,53.091922742104344],[-127.44646134952373,53.09184477082344],[-127.44623393673177,53.09173212470425],[-127.44603656659328,53.09159501145391],[-127.44582637526074,53.09146590846901],[-127.44560334317784,53.091344242135264],[-127.44539321153384,53.0912168141959],[-127.4452152981556,53.09107385820045],[-127.44505304474231,53.09092399532386],[-127.44489815762573,53.09077067114915],[-127.44474693557031,53.09061506956831],[-127.44459939718446,53.0904577372577],[-127.44443247315593,53.090335382755065],[-127.4442888409114,53.090210501958914],[-127.44418462798583,53.08997923065646],[-127.44404256306727,53.08979045176581],[-127.44391707603819,53.0896485385821],[-127.44375631305465,53.08951490105983],[-127.44356085865903,53.089350873011185],[-127.44337304852851,53.08921924195656],[-127.44323762896109,53.08906063921908],[-127.44313191520871,53.088894949428806],[-127.44316402648367,53.0887118866668],[-127.443227406888,53.088512752426226],[-127.4432612224324,53.08835208234198],[-127.44328149102353,53.0881781295716],[-127.44328485434312,53.08800214193177],[-127.4433105797503,53.087823639743895],[-127.44330538779218,53.08764383868346],[-127.44333281101318,53.0874602681714],[-127.44330810754482,53.08728406746778],[-127.4433150767488,53.08710410882484],[-127.44331737911656,53.08692421613923],[-127.44331779638466,53.086744337498494],[-127.44331849580398,53.086572309115574],[-127.44334108378273,53.08638431483063],[-127.44338988283066,53.086196565120986],[-127.44346826571409,53.086026384800554],[-127.44364936341691,53.08587904844231],[-127.44395335665554,53.08574252833055],[-127.44425126935393,53.08561953886693],[-127.4444030067787,53.085516257761796],[-127.44431889872806,53.08543604115959],[-127.44410443793556,53.085372542630694],[-127.44380709032328,53.0853195780015],[-127.44346596855429,53.085272195018604],[-127.44311644115257,53.0852249137348],[-127.44272616118107,53.085189335897674],[-127.44235704852815,53.08514341223334],[-127.44201879918192,53.08509767553931],[-127.44174280776029,53.08501251018869],[-127.44152907077182,53.084942829987035],[-127.44138533222865,53.08481402900489],[-127.44115748631509,53.08474172306088],[-127.44086704510318,53.084699317807434],[-127.4405740165018,53.084663102653394],[-127.44027921394138,53.08462971458728],[-127.43998378876206,53.08460529881845],[-127.43968842502444,53.08458312292561],[-127.43939624566934,53.08454409730464],[-127.43910106472227,53.084499504132054],[-127.43882985306364,53.08455492361065],[-127.4386438344581,53.08469558840568],[-127.43847872399063,53.084846093385835],[-127.43828888747369,53.08498456269729],[-127.43807328796119,53.085108220595565],[-127.43783764446982,53.08521979455461],[-127.43758731962896,53.085311939275414],[-127.43729094889069,53.08528752825008],[-127.43700413589202,53.08526915948069],[-127.43669668892616,53.08530427764858],[-127.43640316245308,53.08533642854949],[-127.43610872695027,53.08536914562132],[-127.43581268088667,53.0853817093227],[-127.4354909856085,53.085355360205746],[-127.43523003949207,53.08527223834131],[-127.43495970886192,53.08521556134102],[-127.43483966559738,53.085205812549844],[-127.4346784298736,53.08516742624894],[-127.43438424889003,53.08512449467223],[-127.43409915589767,53.085074163165075],[-127.43385526464644,53.08496953840324],[-127.43358877154148,53.0848881568198],[-127.43332826721223,53.08479045664392],[-127.43306315407048,53.084721949425045],[-127.43278146418751,53.08466148740116],[-127.4325006796107,53.084599893058744],[-127.4321951354391,53.08452515008649],[-127.4319294799264,53.08449587063811],[-127.43164086277432,53.08445174419067],[-127.43134457708858,53.08442955867657],[-127.43104592917464,53.08442028434093],[-127.43075918158796,53.08440358521346],[-127.43064527904902,53.08435397827646],[-127.43054729700557,53.08427727323857],[-127.43050750339225,53.08420659658062],[-127.43039426200154,53.084121110768706],[-127.43032073853892,53.08404860107862],[-127.43026166275719,53.08396078280718],[-127.43013104763334,53.08385926174502],[-127.43000742285739,53.08377110405184],[-127.42978951690539,53.08371546628548],[-127.42955648565275,53.08368298054854],[-127.42927569351131,53.08362082287873],[-127.42899144577093,53.08356710694313],[-127.42871509521481,53.08349816120381],[-127.42844238697843,53.08342581772048],[-127.42814224110023,53.08334427507251],[-127.42797036802949,53.083239323573586],[-127.42772612937276,53.0831240486135],[-127.42745992356109,53.083050494669706],[-127.42717373688689,53.08299455649257],[-127.42690511300367,53.08296026317752],[-127.42660565190315,53.082870863672184],[-127.42634219025989,53.082795597571206],[-127.42615648802797,53.082612927905394],[-127.42589559132578,53.082557802041514],[-127.42562895934351,53.082471365875435],[-127.42536999417521,53.08241845690899],[-127.42510859136532,53.082348201818704],[-127.42482517186245,53.08229110396689],[-127.42454441453248,53.08222949063451],[-127.4242610304998,53.08217295583739],[-127.42396979032479,53.08213331624432],[-127.42367579533972,53.08209539463543],[-127.42337898527983,53.08205695036366],[-127.42308225063486,53.082020736830266],[-127.42278564818021,53.08198844781359],[-127.42249019526638,53.0819623124155],[-127.4221968789656,53.08194455114639],[-127.42187585271455,53.08193664393896],[-127.42163133531412,53.08200739210574],[-127.42134520085128,53.082148113398084],[-127.42106485095313,53.0821542923062],[-127.42074069257816,53.08213689841881],[-127.42043055781666,53.082063301266935],[-127.42014792830771,53.08197368320565],[-127.4198870330687,53.081890527298775],[-127.41967088295814,53.0817748893804],[-127.41949441704405,53.08164364959766],[-127.4192814500782,53.08151172742162],[-127.41905413713023,53.081425924882666],[-127.41876980462276,53.08136882361464],[-127.41850009239958,53.08130146003751],[-127.41825820582959,53.08119902085975],[-127.41801806268977,53.08109319824189],[-127.41778154393985,53.080983413764685],[-127.41754680584656,53.080871357138676],[-127.41731478738308,53.08075647021912],[-127.41708552600296,53.08063987324754],[-127.41685900645541,53.080521557457345],[-127.41660668177119,53.080442774325796],[-127.41636953403093,53.08031393417007],[-127.41616559452838,53.08017181215795],[-127.41602428197884,53.08000036636],[-127.4158334318349,53.079858086874836],[-127.41563275676104,53.07972937292966],[-127.4153816429875,53.079658417444456],[-127.41508917570604,53.07963726653496],[-127.41478678869014,53.07962687564199],[-127.4144892178767,53.07962091797112],[-127.41419299151738,53.0796552787836],[-127.4139367817444,53.079740155050274],[-127.41369228228584,53.07981144250785],[-127.41336084734344,53.079911786494186],[-127.41314730687525,53.07995804754199],[-127.41285801990392,53.08000409350559],[-127.41257073612408,53.080054597494126],[-127.41229720633929,53.080124552613576],[-127.41202860280416,53.0802022839521],[-127.41174433372585,53.0802589180495],[-127.41146495367057,53.0803222081112],[-127.41120862713562,53.08043173452466],[-127.4109618023388,53.08048959590128],[-127.41068534349492,53.08055622017214],[-127.41039086532878,53.08058718842256],[-127.41009753398764,53.08062431042731],[-127.40980368462697,53.08064631327936],[-127.40950641643182,53.08062127897216],[-127.40923650034422,53.08054717284815],[-127.40895150518807,53.080497900764726],[-127.4086576430924,53.08046274662556],[-127.40836470848645,53.08042757173753],[-127.40807193186687,53.080453475371534],[-127.40779843276172,53.080525096100075],[-127.40751711640287,53.080586167422304],[-127.4072307645842,53.080636647181976],[-127.406936097532,53.08066200567404],[-127.40666068843937,53.08073252579763],[-127.40639208944829,53.08081080888977],[-127.40612643145015,53.08089298318162],[-127.40586856969743,53.08098514115412],[-127.40559304189591,53.081051742276166],[-127.40531064653274,53.08110889425408],[-127.4050263065951,53.08116382733248],[-127.40474002212008,53.081216541497696],[-127.4044536998373,53.08126813473782],[-127.40416735816532,53.0813191626868],[-127.40387792596545,53.081361826114325],[-127.40358654600259,53.08140171477403],[-127.40329618533153,53.08144438779236],[-127.40301084251871,53.081497642377386],[-127.40272547719191,53.08154978482576],[-127.40243193231511,53.08158128680539],[-127.40213632850477,53.081606644321546],[-127.40183967126981,53.081628660550564],[-127.40154297641108,53.081649546842286],[-127.4012452652466,53.08166821206672],[-127.40094736510737,53.081680710614805],[-127.40064915386718,53.081684246744416],[-127.40035075395127,53.081681616194395],[-127.40005237639159,53.08168011426062],[-127.40000098776132,53.08168127913287],[-127.39951509088631,53.08169320468306],[-127.39921673160602,53.081692256273314],[-127.3989206113645,53.08167390574867],[-127.39862593630316,53.08164265416821],[-127.39833216702677,53.081610270467145],[-127.39803591864369,53.08158800139538],[-127.39773698368701,53.08159770690301],[-127.39746142388825,53.08166428025294],[-127.39718600749528,53.08173477807221],[-127.39689240202736,53.081764590418736],[-127.39659438926209,53.08177371729538],[-127.39629614012455,53.08177612220585],[-127.3959970187827,53.081780213188864],[-127.39569900571503,53.08178933780701],[-127.3954010512773,53.08180070231433],[-127.39510305650974,53.081810390026234],[-127.39480491755532,53.08181615186893],[-127.39450653563927,53.08181407115579],[-127.3942087310916,53.08180133205498],[-127.39391248353947,53.081779052646546],[-127.39361703494245,53.08175284522156],[-127.39332160137309,53.08172662791918],[-127.39302537335324,53.08170491088273],[-127.39272835020127,53.08168767618282],[-127.3924298039327,53.08168055365699],[-127.39213197793539,53.081695826255974],[-127.39183636746665,53.08172116696177],[-127.39154177572001,53.08174929210666],[-127.39124823938737,53.0817813219317],[-127.39095575541776,53.08181670959425],[-127.3906643966217,53.08185767764557],[-127.39037598142434,53.08190310195498],[-127.39009457888172,53.08196300272307],[-127.38982693904207,53.082042921841285],[-127.38956607288738,53.082130040505035],[-127.38929747020161,53.082209404902365],[-127.38901206798313,53.08226150542049],[-127.38871399515756,53.08226893654757],[-127.38841778390014,53.082247763601536],[-127.38812235362042,53.08222209807952],[-127.38782541711258,53.08220709135141],[-127.38752753880678,53.08219210390628],[-127.38722971552804,53.082178791580816],[-127.38693122474518,53.08217388684557],[-127.38663333530253,53.082186913896464],[-127.38634188159477,53.08222563098598],[-127.38606150519433,53.08228831614655],[-127.38580353341503,53.08237819856585],[-127.38557633819777,53.08249460641091],[-127.38534343821054,53.08260772766854],[-127.38506688846151,53.082673162711096],[-127.38476885181497,53.08268225993009],[-127.38447339910495,53.082655464880155],[-127.3841918472648,53.082596571793445],[-127.38391740584117,53.082525823298205],[-127.3836483216465,53.082447722632594],[-127.38339368094584,53.08235320708943],[-127.38311287383583,53.08228813461033],[-127.38282893165287,53.08232788467028],[-127.38254061413197,53.082376641585405],[-127.382243630866,53.08238908211556],[-127.38194433973618,53.08238810093899],[-127.38164600932075,53.08238767258261],[-127.38134760907778,53.082385558812625],[-127.3810491873428,53.08238232387794],[-127.3807507506961,53.082379088364306],[-127.3804523106747,53.0823752873229],[-127.38015383766768,53.08237093006516],[-127.37985537967923,53.08236657187855],[-127.3795569067949,53.08236221311286],[-127.37925844892915,53.08235785341835],[-127.3789599581013,53.082352937507125],[-127.37866146394626,53.082347456067644],[-127.37836295491111,53.08234197404872],[-127.37806449731056,53.082337611338176],[-127.37776607925697,53.08233492392311],[-127.3774677492583,53.082334485016574],[-127.37716867688385,53.08234021316677],[-127.37687069529224,53.08235096633962],[-127.37657274683261,53.082362283186264],[-127.3762744924335,53.08236463755417],[-127.37597592585337,53.082356908854685],[-127.37567587447418,53.082361523963705],[-127.37540499335563,53.082429120521304],[-127.37517400862853,53.08254443148213],[-127.37492563616301,53.08264314339285],[-127.37464914273508,53.08271079452493],[-127.37435974093054,53.08275507026649],[-127.37406513042374,53.0827831518178],[-127.37376848640999,53.082806208822916],[-127.37347378460336,53.082831492784386],[-127.3731782486501,53.082860138716654],[-127.3728846877434,53.0828915670846],[-127.37259827917842,53.08294196283249],[-127.37233644806155,53.08302961895581],[-127.37205757090138,53.083081602388916],[-127.37175763762998,53.083089568087374],[-127.3714607548923,53.083105342224385],[-127.37116305651745,53.08312505186907],[-127.37086535842465,53.08311561465598],[-127.37058568883323,53.08305610269273],[-127.37031028861706,53.08298421330408],[-127.37002183629161,53.082942732437125],[-127.36972386852429,53.08292489503326],[-127.36942610010097,53.082913222675856],[-127.36912831361458,53.08290098496709],[-127.36883121652427,53.08288089391163],[-127.36853668165087,53.082853483667584],[-127.36824294817153,53.08282214558965],[-127.3679491398947,53.08278801048875],[-127.367656241245,53.08275329931961],[-127.36736506828208,53.08271408482235],[-127.36707738244019,53.082666984652455],[-127.36678966113456,53.08261876354047],[-127.36649932687271,53.0825767310953],[-127.36620385036194,53.082548770118656],[-127.36590650031488,53.08254996717537],[-127.3656129754626,53.0825830624965],[-127.36532460036219,53.08263065715076],[-127.36503321152652,53.082671570935],[-127.36473618502143,53.08268284721505],[-127.36444252761343,53.082653740168126],[-127.36415649890372,53.08259988984338],[-127.36387230456793,53.08254489699784],[-127.36358291601734,53.0825028465055],[-127.36328916757421,53.082470375691805],[-127.36299458527442,53.08244127574429],[-127.36269833182409,53.08241836243953],[-127.3624005867409,53.082407228012805],[-127.36210197145888,53.08239834418473],[-127.3618082608441,53.08236698992923],[-127.36152318260385,53.082313678170834],[-127.36124342354248,53.082250783340584],[-127.36096541216713,53.08218450575132],[-127.36068747067313,53.08211991217802],[-127.36040415735549,53.08206321544921],[-127.36011384846981,53.082021176089434],[-127.35981500277477,53.08200500041947],[-127.35952733413154,53.082045292994934],[-127.35927509896321,53.08214120997588],[-127.35904403634947,53.082255378137575],[-127.3588072046772,53.08236512059308],[-127.35854527372781,53.082449940921244],[-127.35826188149196,53.082507555823675],[-127.35797445905324,53.08255568630828],[-127.35768303061249,53.08259601753626],[-127.35739054862222,53.0826324333672],[-127.35709803056986,53.08266773719191],[-127.35680552980668,53.082703595932486],[-127.35651195785985,53.08273498362269],[-127.35621412961952,53.08275073027247],[-127.35591476492942,53.08274744267252],[-127.35562812327731,53.08270309993932],[-127.35539635224218,53.08259089667729],[-127.35521130290103,53.08244845517181],[-127.3550327703243,53.082304817976436],[-127.35485145969449,53.0821617682188],[-127.35467661532198,53.08201641169109],[-127.35450451533205,53.081869337974965],[-127.35433243149275,53.08172226382427],[-127.35415664812815,53.08157690833157],[-127.35397441929601,53.081434432573495],[-127.35378298660494,53.08129654463198],[-127.35357868235263,53.08116552779871],[-127.35338550780843,53.081031585954456],[-127.35325871067158,53.080867737431674],[-127.35310700436999,53.08071426894961],[-127.3529073000438,53.08058095696839],[-127.35270205662066,53.080449384581975],[-127.35253185741983,53.080302851056516],[-127.3524134148733,53.08013666465374],[-127.35224601175118,53.07998953389448],[-127.35203618128033,53.079860818993055],[-127.35180639395091,53.079751383244755],[-127.3516814408739,53.07958640023022],[-127.35149924661188,53.07944447613514],[-127.35132259108158,53.07930025605522],[-127.35120228957338,53.079134654505516],[-127.35096962217311,53.07902244397612],[-127.3506891009267,53.078964015804004],[-127.3504040598191,53.07891068607574],[-127.3501377650637,53.07882911605105],[-127.3498652030509,53.07875602645107],[-127.34959349796411,53.07868068512866],[-127.34932004921069,53.07860928988318],[-127.34902792583465,53.078568356013484],[-127.34876629943815,53.078486173776874],[-127.34848941692456,53.07842433692544],[-127.34820003641684,53.07838113737081],[-127.34793734580776,53.07829503869152],[-127.34766742774612,53.07821687544494],[-127.34739044183256,53.07815167526103],[-127.34710099286177,53.07810622354708],[-127.34681859587621,53.078047251830114],[-127.34652352221782,53.07803099987347],[-127.34623159854199,53.077995669115175],[-127.3459331599004,53.07799122539801],[-127.34563384722631,53.0779884673839],[-127.345365055241,53.077915889379184],[-127.34507993891496,53.07785974166749],[-127.3447864675185,53.07783450191152],[-127.34448804805902,53.07783061914952],[-127.34418871900336,53.07782730182958],[-127.34389108200048,53.07781836122982],[-127.34359297918093,53.077823993684646],[-127.34329480796741,53.077827940700296],[-127.34299665193794,53.07783189575528],[-127.34269810840074,53.077824083113285],[-127.34241851323323,53.077764504302195],[-127.3421335436142,53.077712830478724],[-127.34183594328728,53.07770500495173],[-127.34153935272951,53.07772910135442],[-127.34126080937526,53.07779165911707],[-127.34099114575255,53.07786868389883],[-127.34071952589231,53.07794348894767],[-127.34060285015319,53.07765400812466],[-127.34048738250621,53.077491703137504],[-127.34026842977732,53.07736867448834],[-127.3400928542185,53.07722777872002],[-127.33996521038723,53.07706449070374],[-127.33984406770247,53.07690000814934],[-127.3397479788567,53.076729638033335],[-127.33961763238109,53.076569742242484],[-127.33944097601338,53.07642381930108],[-127.3392459450965,53.07628819031605],[-127.33903711456045,53.07615944137445],[-127.33883010437674,53.076029550781676],[-127.33865165428284,53.0758858883102],[-127.33848055936116,53.07573822441775],[-127.33825259268696,53.07562538010749],[-127.33800719365753,53.07552281872157],[-127.33777451316264,53.07540890624553],[-127.33751380213447,53.07532500357869],[-127.337233182611,53.07526206231726],[-127.33695085358616,53.07520418717117],[-127.33666410623003,53.07515419696909],[-127.3363871397217,53.07508841522718],[-127.33614358492282,53.07498526434911],[-127.33586838383704,53.07491609947409],[-127.33557668432624,53.074886899244476],[-127.33527865657686,53.0748947514074],[-127.33498000105473,53.07491213098438],[-127.33468849618971,53.0748890944451],[-127.3344313217042,53.074798421172474],[-127.3341904616345,53.074691318074166],[-127.33394689698318,53.07458760699691],[-127.33370696400694,53.07447993661274],[-127.33347894635996,53.07436484249781],[-127.33325821344573,53.0742434976433],[-127.33303931618909,53.074121019976516],[-127.33280854349276,53.07400763217758],[-127.33257960364502,53.07389254675795],[-127.33234881596806,53.07377860239876],[-127.33209437683375,53.07368509610632],[-127.3318462805685,53.07358535863926],[-127.3315990949142,53.073485045583],[-127.33133919196932,53.07339608189976],[-127.33109565915976,53.07329292051428],[-127.33086580341336,53.073178406953275],[-127.33063320504598,53.07306560034752],[-127.33040061038763,53.07295334909271],[-127.33017166533783,53.072837703289096],[-127.32995004284449,53.07271748301486],[-127.32973942396033,53.07258985868139],[-127.3295453337193,53.07245308268799],[-127.32936693010974,53.07230940589792],[-127.32919682402111,53.07216171765426],[-127.32902853801224,53.072012879066875],[-127.32885750960914,53.07186575655895],[-127.3286818696058,53.07172037114747],[-127.32851267770882,53.07157210682807],[-127.32833237702198,53.071427329169374],[-127.32818556509903,53.071277127209264],[-127.32821165936028,53.07109528783095],[-127.3282481316276,53.07091669367236],[-127.3282602842468,53.07073725234208],[-127.32824810529681,53.070557528794794],[-127.32823499906857,53.0703778066922],[-127.32821724523771,53.07019870164954],[-127.3282088049027,53.07001893600032],[-127.32823311670354,53.06983991367655],[-127.32828177965399,53.069662302915596],[-127.32834728191459,53.069485067520226],[-127.32834188016311,53.069312547400635],[-127.32817266398399,53.06916316212861],[-127.32792633193519,53.06905890514427],[-127.32766817527565,53.06896487544848],[-127.32747447620841,53.068839854028205],[-127.32744177359453,53.068660916784964],[-127.32743602511405,53.06847719392856],[-127.32743324805891,53.06829904093089],[-127.32728714709656,53.06814099412694],[-127.32704926145796,53.06803776106863],[-127.32678582111544,53.067953874753485],[-127.32654046156817,53.067850724653134],[-127.32627438745698,53.06777247007464],[-127.3260037716148,53.06769818371165],[-127.32577670334136,53.06758194361055],[-127.32558727618235,53.06744342330537],[-127.32533738004354,53.0673442484406],[-127.32506580923302,53.06726941483163],[-127.32478801984477,53.06720472730009],[-127.32449351765655,53.06717385519421],[-127.32419824845877,53.06714858527],[-127.32390166938607,53.06717096162315],[-127.32360604959956,53.06719389128622],[-127.32331050175563,53.06721961655414],[-127.32301910814479,53.067258177585735],[-127.32272872849464,53.06729953265409],[-127.32243731913346,53.06733810137805],[-127.3221418194396,53.0673649438154],[-127.32184939466079,53.06740071632606],[-127.32155267300585,53.06741860572263],[-127.32125602087581,53.067438734901295],[-127.32095778105966,53.06743814450714],[-127.32065758283873,53.067434222264104],[-127.32037891926217,53.06749168548853],[-127.3201257551092,53.067587530039496],[-127.31985608574466,53.06766395154084],[-127.31956772593144,53.06771031464645],[-127.31927323610356,53.067739944683915],[-127.31898181797628,53.067777940092135],[-127.3186893876874,53.06781370477027],[-127.31839700898487,53.06785114463937],[-127.31811952783586,53.06791699863394],[-127.31786246147654,53.068007843323805],[-127.31762946030703,53.06812082302668],[-127.31743074736242,53.068254721113604],[-127.31724249417296,53.0683940964721],[-127.31703617825637,53.06852359603963],[-127.31682034409474,53.068648153937225],[-127.31660258499717,53.06877049157333],[-127.31638294059586,53.06889284980004],[-127.3161651962195,53.06901574226367],[-127.31595124361735,53.069140842320635],[-127.31574491985073,53.0692703306149],[-127.31553955692343,53.069400937438566],[-127.31532561776166,53.069526591985706],[-127.31509543244039,53.06964065571273],[-127.31488625800942,53.0697690624712],[-127.31471419736795,53.069918339085305],[-127.31443931741273,53.06997799608916],[-127.31415694260737,53.07003717103293],[-127.31394870769066,53.07016612143676],[-127.31384265251295,53.07033371338343],[-127.31377796356055,53.070509254416685],[-127.31372459094653,53.07068747562142],[-127.31346531677308,53.07076824005026],[-127.31317076678302,53.07079673455585],[-127.3128762825107,53.07076694484846],[-127.31257795037334,53.070764101728855],[-127.31228125313125,53.0707836437136],[-127.31198568837236,53.070809340423146],[-127.31170229326692,53.07086627940666],[-127.31152159061295,53.07100893215335],[-127.31136836105205,53.07116304188715],[-127.31121607467779,53.07131769676666],[-127.31104866067135,53.071466925073246],[-127.31087647828477,53.07161339993767],[-127.31069293842359,53.07175495316618],[-127.31047516536538,53.07187839971685],[-127.31026311750259,53.072005144273206],[-127.31010230149566,53.07215653921099],[-127.30994242616569,53.072307914505686],[-127.30972274204271,53.07242970428113],[-127.30950592195748,53.072553694200884],[-127.30932045493525,53.072694154809426],[-127.30911220723203,53.072823096323994],[-127.30890678926856,53.07295312673557],[-127.30867945108561,53.073069951884555],[-127.30845403044749,53.07318787597814],[-127.30826003176105,53.07332450257038],[-127.30810393601497,53.07347751874148],[-127.30794216213636,53.07362835626619],[-127.30773389070407,53.07375729544733],[-127.3075265772699,53.07388677947315],[-127.3072742880631,53.07398258569427],[-127.30698685065526,53.074030592529816],[-127.30668832098456,53.07402156844237],[-127.30639020787925,53.07402655154708],[-127.30609226473696,53.07403657044142],[-127.30579423753004,53.07404434822121],[-127.30549815976107,53.074024087567544],[-127.30522035599117,53.07395935426615],[-127.30498597173768,53.07384763830305],[-127.30479656740233,53.07370852950566],[-127.30463669423085,53.073556767117324],[-127.30448330333084,53.073402691627884],[-127.30431695131921,53.07325324165203],[-127.30412664202234,53.07311470658559],[-127.30392345773127,53.07298359306792],[-127.30370832109949,53.072858770204334],[-127.30347668944708,53.07274477961246],[-127.30321868487995,53.0726546131313],[-127.3029534476022,53.07257293520802],[-127.30267829896441,53.07250312830913],[-127.30241575452027,53.07241749275101],[-127.30219330307133,53.07229779521798],[-127.30199748307578,53.07216211465809],[-127.3018025741496,53.072025858929536],[-127.30159295347819,53.07189761849735],[-127.30136134980225,53.07178417934705],[-127.30116553720177,53.07164906214736],[-127.30097893215645,53.0715087958144],[-127.30078310473229,53.071373113344734],[-127.30057993675834,53.07124142916559],[-127.30037217555203,53.0711126013106],[-127.30014971968095,53.070992344186735],[-127.2998998791416,53.07089367136195],[-127.29961764717304,53.070836262505864],[-127.29931989710924,53.070821608238184],[-127.29902219884323,53.07080863810321],[-127.29872417573092,53.07081583344477],[-127.2984265289817,53.07080453772985],[-127.29812706475954,53.0707949466936],[-127.29785474684796,53.070725097588344],[-127.2975580793421,53.07071546541814],[-127.29726139279428,53.07073553429026],[-127.29696328237792,53.07073937318077],[-127.29666630680582,53.07071965635096],[-127.29637185191834,53.07069039011052],[-127.29607911274263,53.070656065892805],[-127.29578467567346,53.070627353841026],[-127.29548850693496,53.07060315159774],[-127.2951899696279,53.07059297816458],[-127.29489304345822,53.07060519920304],[-127.29459637337747,53.070625817036124],[-127.2942983852512,53.0706341304434],[-127.29400001886404,53.070629555351395],[-127.2937041900241,53.07064736459206],[-127.29346987777734,53.070750788963565],[-127.29317897529772,53.070715307856155],[-127.29290382064983,53.070644357845275],[-127.29261533822014,53.070595965946794],[-127.2923372020427,53.07064215901434],[-127.29208585907374,53.07073904309803],[-127.29183451495692,53.07083592664149],[-127.29160537200437,53.07095553554483],[-127.29132219174504,53.07098945426239],[-127.29101835390533,53.07098996985016],[-127.29072180357979,53.070983690121224],[-127.29047201909735,53.07088611762582],[-127.29028360269173,53.07074697519448],[-127.29003195169767,53.07064943113814],[-127.28978031875404,53.07055244219465],[-127.28952868696082,53.070455452709666],[-127.28927525523608,53.070360723630785],[-127.28900743278759,53.07028463720696],[-127.28870709816833,53.07027670833022],[-127.28841205001247,53.07025863523465],[-127.288141399741,53.07018146603835],[-127.287905280191,53.07007197687569],[-127.28770490380593,53.06993856403469],[-127.28748343177672,53.069818263742974],[-127.2872610192263,53.069697982257956],[-127.28706620293482,53.06956282229592],[-127.28696291724138,53.0693941749453],[-127.28692383564422,53.069215297939984],[-127.28688571326576,53.06903696629372],[-127.28681219938947,53.06886351179164],[-127.28664414122235,53.06871629729206],[-127.28639614665883,53.06861533486762],[-127.28619579901515,53.06848248397257],[-127.28605542623582,53.06832376068507],[-127.28596143973218,53.068152760896275],[-127.28582756735031,53.06799229006309],[-127.28561623055974,53.067866837538396],[-127.28534194910095,53.06779305453817],[-127.28507500722297,53.067714152628646],[-127.2848544476559,53.06759272585382],[-127.28467158649855,53.067450708035366],[-127.28452660872203,53.067293718478645],[-127.28439087517222,53.06713325730537],[-127.28421544105998,53.066988925682345],[-127.28398662207668,53.06687262553566],[-127.28375800559759,53.066762481808084],[-127.28366118719688,53.06659039927999],[-127.28359696769502,53.06641459143898],[-127.28354582982742,53.066238085527154],[-127.28351516850488,53.06605911573662],[-127.28349945741176,53.06587942759309],[-127.28351085585834,53.065700000621554],[-127.28351381932029,53.06552010050459],[-127.28344684025096,53.06534545210156],[-127.28331020709548,53.065185564201],[-127.28314396187575,53.06503608370893],[-127.2829721937231,53.06488890427665],[-127.2828142836991,53.064736526667055],[-127.28268228584896,53.064575467031524],[-127.2825697528751,53.064409157412825],[-127.28248043708408,53.06423754814575],[-127.28242742051997,53.06406049720614],[-127.28240890396079,53.06388083923692],[-127.28239693796753,53.063701665949054],[-127.28239337242465,53.06352183660833],[-127.282406643782,53.06334238920376],[-127.28242833236965,53.06316285036364],[-127.28244813697157,53.0629833319602],[-127.28246608751309,53.06280383366982],[-127.28247654760965,53.06262441671018],[-127.28248045740158,53.06244451503305],[-127.2824787604302,53.06226466526725],[-127.28246773647886,53.062085481589776],[-127.28244644167381,53.06190640944494],[-127.2824737378621,53.06172737433993],[-127.28254416607116,53.06155234434485],[-127.28254438857229,53.061374159088786],[-127.28247274062878,53.061199560543514],[-127.28247946065719,53.061019619229285],[-127.28245815138744,53.06084054713897],[-127.2824583403882,53.060661241530326],[-127.28241930288375,53.060482926756904],[-127.28244755690581,53.06030443694041],[-127.28243277908051,53.06012472902993],[-127.28244978664418,53.05994524067567],[-127.28247426890297,53.0597656711112],[-127.28246137691792,53.05958650747233],[-127.28238974728343,53.05941190853437],[-127.28232372613964,53.05923780447203],[-127.2823369625985,53.05905723635162],[-127.282364289157,53.05887875647463],[-127.28239439394264,53.058699681588465],[-127.2824132868154,53.058520737417375],[-127.28235746722746,53.05834371638872],[-127.28222460010885,53.05818435077981],[-127.28198679335625,53.058077665383045],[-127.28169571693205,53.05803320244684],[-127.28145602877761,53.05792653641916],[-127.28124746397162,53.05779768400185],[-127.28116948060172,53.05762931226636],[-127.28120608864573,53.05744905534659],[-127.28120439727428,53.057269205044214],[-127.28120177936586,53.05708937374294],[-127.28120663764489,53.05691001713607],[-127.28119371805707,53.05672973278091],[-127.28124821911899,53.05655375520712],[-127.28146983714821,53.05643368174745],[-127.28104874771145,53.05638558099604],[-127.28075699373488,53.05634896773792],[-127.28046692459264,53.056306723277714],[-127.28018304874615,53.056252648618205],[-127.27990089027176,53.05619351622471],[-127.2796160891021,53.05613945024586],[-127.27932864721772,53.056091015447876],[-127.27903773900509,53.056051582702935],[-127.27874508079802,53.05601608599026],[-127.27845247383797,53.05598227345811],[-127.27815722575693,53.05595409204391],[-127.27786377736221,53.055923093276135],[-127.27757283793653,53.055882536634265],[-127.27728021583758,53.055848156571365],[-127.27698422820954,53.05582614829261],[-127.27668657429021,53.05581087222119],[-127.27638988134322,53.05579671462621],[-127.27609722710825,53.05576121134539],[-127.27581958800981,53.055696417187406],[-127.27554191784056,53.05563105791219],[-127.2752484396568,53.05559892339174],[-127.27495242116487,53.0555757897316],[-127.27466413066824,53.05553014996397],[-127.27437430693206,53.055495176689554],[-127.27407669017488,53.055481023283455],[-127.27378208735473,53.055474116341685],[-127.27348637062443,53.055491874938845],[-127.27318784578985,53.0554788407737],[-127.27289103687497,53.05546019308085],[-127.2725957455949,53.055430312842034],[-127.27232633001823,53.05535925385019],[-127.27208481028912,53.05525203295013],[-127.27183605471878,53.055153298854044],[-127.27157548122446,53.055065333198996],[-127.27132948768924,53.05496488284647],[-127.27111820815618,53.05483771852942],[-127.27091979140675,53.05470313564121],[-127.27070667972832,53.05457711993209],[-127.27050466268918,53.05444705769607],[-127.27034399087061,53.05429301662909],[-127.27026141208171,53.0541258079817],[-127.27030274178199,53.05394549477622],[-127.27031230772651,53.05376553228858],[-127.27016119920447,53.05361866777482],[-127.26992510098938,53.05350522510095],[-127.26972581764825,53.053372326022235],[-127.26954582836011,53.05322857744887],[-127.26936030203764,53.05308712943532],[-127.26915368470203,53.05295935565725],[-127.26892499757044,53.05284302523066],[-127.26871464592165,53.05271529083219],[-127.26855780779785,53.05256401222361],[-127.26848996877426,53.05238935519272],[-127.26844726079018,53.05221107510374],[-127.26836637597273,53.05203712295885],[-127.26821790804291,53.05188462433397],[-127.26799928038233,53.05176090432684],[-127.26777334760816,53.051642856651014],[-127.26753009445622,53.05153957192398],[-127.26726234626071,53.051460639128216],[-127.26698377342207,53.05139470488939],[-127.26672153188689,53.0513123498333],[-127.26647733964333,53.05120850823509],[-127.26623133052493,53.05110637108269],[-127.2659889921559,53.05100194379532],[-127.26574663840842,53.05089696033996],[-127.26550064942134,53.050795377310834],[-127.26524919023866,53.0506983350015],[-127.26499774903377,53.05060185677776],[-127.26476270634909,53.05049118973897],[-127.26456803329786,53.050355435512955],[-127.26437613803984,53.05021853056725],[-127.26413746260928,53.050111263155706],[-127.26387693602048,53.0500232802545],[-127.26362184860882,53.04992963531728],[-127.26339688122864,53.04981213384893],[-127.26320772046073,53.04967295646327],[-127.26304069666219,53.04952401192053],[-127.26288569214692,53.049370464923214],[-127.26273345006733,53.049215758556116],[-127.26258767411049,53.04905875049611],[-127.26245395004337,53.04889824244726],[-127.26232300376078,53.048736592853594],[-127.26217817228738,53.0485795652127],[-127.26204630297656,53.0484184810157],[-127.26200369266502,53.048242438773244],[-127.26203197428248,53.04806226766371],[-127.26203224950268,53.04788296077002],[-127.26193658877303,53.047714209538434],[-127.26176770895844,53.04756528299793],[-127.26158408496511,53.047423246666064],[-127.26139956861316,53.047282331270765],[-127.26122609786844,53.04713625912494],[-127.2610581313809,53.04698621012685],[-127.26094402773124,53.046825490687574],[-127.26090506004118,53.0466460470879],[-127.26083726039957,53.04647082923573],[-127.2607666849284,53.04629676163253],[-127.26072588336051,53.04611844920543],[-127.2606981424129,53.04593944140956],[-127.26065920984608,53.04576111793193],[-127.260589546093,53.045586475625846],[-127.26048549734632,53.04541781269375],[-127.2603629013977,53.045253821351935],[-127.2602236270282,53.04509449952331],[-127.26002811642317,53.04496042324228],[-127.25977128310632,53.04486959487393],[-127.25949813666283,53.044795740831745],[-127.25921965311476,53.04473091727722],[-127.25892651349206,53.04470770451678],[-127.25862836637967,53.04470416030218],[-127.25833239970869,53.0446798645322],[-127.25804686136063,53.044629117097074],[-127.25780368852483,53.044526367577944],[-127.25761365955616,53.0443877463438],[-127.25745773520556,53.044233637164155],[-127.25728709999977,53.04408752903935],[-127.25706125456857,53.04397002496986],[-127.25684646939025,53.04384736425028],[-127.2566794743782,53.04369785453687],[-127.25653649936768,53.043539123660636],[-127.25635484433606,53.0433992906097],[-127.25610075654973,53.04330618382969],[-127.25582761011202,53.043231765559135],[-127.2555863168849,53.0431284267233],[-127.25537972321317,53.04299838750749],[-127.25515848359953,53.04287803370576],[-127.25491893126603,53.042770757213184],[-127.25468122994646,53.04266233991197],[-127.25444716793501,53.04255107734692],[-127.25421494053985,53.042438118333386],[-127.25397904638727,53.04232800393768],[-127.253733118531,53.0422258312548],[-127.25350641608863,53.04211001502939],[-127.25334501041661,53.04195932063037],[-127.25326703450575,53.041786447734296],[-127.25325329672513,53.04160616875217],[-127.25325919605818,53.04142623707076],[-127.25324550644214,53.04124707819172],[-127.25320748621998,53.04106705700067],[-127.25307868199,53.04091265405751],[-127.2528868020554,53.040774053876206],[-127.25274758683129,53.0406152784821],[-127.25263429150087,53.04044838324894],[-127.25253215454906,53.04027968401575],[-127.25243838180347,53.040109219427514],[-127.25235014898401,53.039937019472795],[-127.25227403202672,53.0397635612642],[-127.25222117224835,53.03958650323361],[-127.25219813352257,53.03940744329361],[-127.25218349100001,53.0392277294371],[-127.25217260087885,53.03904854055618],[-127.25216823924768,53.038868726543406],[-127.25215265566804,53.03868902261491],[-127.2521324268722,53.03850993276256],[-127.25211872656304,53.03833021777846],[-127.25211621780012,53.03815037506736],[-127.25212960918286,53.037970928443826],[-127.25215233923731,53.03779138271152],[-127.25216573035416,53.037611936046325],[-127.25214923749871,53.037432806448315],[-127.25212524081017,53.03725263579562],[-127.25205378998248,53.03707857188035],[-127.2518584595318,53.036948971778614],[-127.25159341035037,53.03686213085541],[-127.25134755290865,53.03676107318072],[-127.25113361503401,53.03663391051238],[-127.25100936153575,53.03647497427069],[-127.25099655973897,53.036294119855704],[-127.25099965746959,53.03611366167938],[-127.25093661024403,53.035939507953124],[-127.25080665749883,53.03577726991524],[-127.25065173246178,53.03562370578781],[-127.25048480796681,53.0354747422664],[-127.25031880957539,53.035325212850935],[-127.2501592922864,53.03517393803967],[-127.25000250389162,53.0350203838298],[-127.24986796188074,53.0348604346625],[-127.24977232923435,53.03468998735751],[-127.24967206876252,53.03452070963121],[-127.24951718370558,53.034367699415355],[-127.24932904720934,53.03422793306328],[-127.24913633269514,53.034091012030494],[-127.24894269309917,53.0339541004765],[-127.24876102183882,53.03381145867381],[-127.2486209199476,53.033653243401154],[-127.24852532656782,53.03348335944203],[-127.24845199773449,53.0333087482474],[-127.24840195578672,53.033131658279956],[-127.24836401123942,53.032952754826304],[-127.24827865125845,53.03278163273831],[-127.24813113396208,53.03262518075724],[-127.24797254291504,53.0324727724881],[-127.24782687874497,53.03231573571173],[-127.24770808819873,53.032151134806114],[-127.24763572283742,53.03197707765077],[-127.24758940426474,53.03179938307292],[-127.2475375002047,53.03162231232824],[-127.24748931494989,53.03144463741899],[-127.2474085884429,53.0312717891301],[-127.24722979334909,53.03113135582868],[-127.24698391367107,53.031028048108034],[-127.24675087740992,53.03091676854245],[-127.24654805426806,53.03078443270315],[-127.2463792957432,53.03063548268295],[-127.24629117293361,53.03046551786603],[-127.24629898421693,53.03028613027457],[-127.24635543047015,53.03010902608737],[-127.24641096658794,53.02993249627558],[-127.24645149886136,53.02975444841579],[-127.24648080819698,53.02957538946244],[-127.24650730899339,53.02939636911742],[-127.24653194192078,53.02921735951416],[-127.24653600089734,53.02903745555984],[-127.24652885537614,53.028857660997865],[-127.24654226743633,53.02867821403466],[-127.24657717933496,53.02849966055156],[-127.24663552254715,53.02832366558879],[-127.24673421753053,53.02815395916831],[-127.24682068452505,53.02798158469982],[-127.24681264631562,53.02780348493727],[-127.2467142648966,53.02763362860882],[-127.24658061908251,53.02747142459355],[-127.24652794618142,53.027299399662446],[-127.24653377336838,53.02711610588013],[-127.24640417692905,53.02696450959964],[-127.2461573165261,53.02685896922355],[-127.24590514996235,53.026763014456726],[-127.24565381212457,53.02666368843069],[-127.24546492772302,53.026528406316054],[-127.24539537455094,53.0263543177248],[-127.24539195251317,53.02617392771432],[-127.24540723577053,53.02599446088711],[-127.24542061881219,53.02581389343774],[-127.24537993419905,53.02563669389235],[-127.2452408460561,53.02547959319143],[-127.24506196607626,53.0253346747192],[-127.24488956568075,53.02518800213092],[-127.24471624195553,53.025041903844986],[-127.24454108371259,53.02489638946974],[-127.24436868689472,53.024749716082674],[-127.24419997653027,53.024601327057425],[-127.24403956371307,53.02444948831227],[-127.24385890716026,53.024307392884474],[-127.24366899922458,53.024168747724886],[-127.24352342744409,53.02401283399245],[-127.24341112221653,53.023845353887396],[-127.24333042674765,53.02367250203936],[-127.24330184926478,53.02349406237157],[-127.24328351561853,53.0233143850957],[-127.24325959730567,53.0231353314686],[-127.24324782287006,53.02295614983908],[-127.24324629385497,53.02277630436878],[-127.24324849877644,53.02259641056288],[-127.2432478958456,53.02241655529474],[-127.24323237097673,53.022236848302946],[-127.24324111973088,53.02205745028916],[-127.24320978337748,53.02188016018247],[-127.24307803610169,53.02171793197625],[-127.2428615858143,53.02159693988416],[-127.2425921886447,53.02151740479649],[-127.24234277314811,53.021418616384544],[-127.24222145408552,53.02126131589699],[-127.24209156328148,53.02109851119234],[-127.24194402732017,53.02093924513312],[-127.24182532413788,53.02077575752575],[-127.24176797106048,53.020602658692056],[-127.24175339565346,53.02042350620591],[-127.24175742476794,53.020241916531006],[-127.24175771988357,53.02006036614365],[-127.2417328838148,53.019881321612864],[-127.2416791680061,53.019704822385485],[-127.24161428363824,53.01952956134104],[-127.24154287451243,53.01935493373718],[-127.24146682232315,53.01918091079373],[-127.24139075425524,53.019006323143124],[-127.24131655400289,53.01883172474136],[-127.24124889578894,53.01865704847512],[-127.24118959929886,53.018481172474594],[-127.2411684526878,53.01830096820798],[-127.24116780782751,53.01811886271763],[-127.24113739251112,53.0179409972657],[-127.24105304920884,53.01777042318606],[-127.24095474678244,53.01760168137466],[-127.24084806923149,53.01743413927644],[-127.24073397300185,53.01726780473977],[-127.24061614525445,53.01710206518307],[-127.24049646651562,53.01693634496903],[-127.24037771466227,53.016770614880144],[-127.24026175651474,53.016604855289295],[-127.24014766454619,53.016438511141786],[-127.24003264907823,53.01627274140089],[-127.23991576769849,53.01610699115587],[-127.23979426193476,53.01594297487606],[-127.23966720409055,53.01578012851818],[-127.23953459756365,53.01561959062453],[-127.23939921554681,53.01545963759184],[-127.23926104185524,53.01529971373138],[-127.2391191696227,53.01514150507533],[-127.23897546308855,53.014983880328785],[-127.23882804185037,53.01482741508542],[-127.23867695226905,53.01467267366049],[-127.2385221477753,53.01451908274887],[-127.2383654602042,53.014364399703645],[-127.23820135697952,53.01421202666447],[-127.23802808331591,53.01406479713193],[-127.23784010716753,53.01392613112335],[-127.23762737963524,53.013802849044964],[-127.23735292555382,53.01370766600106],[-127.23705825054972,53.01362391003585],[-127.23680344081099,53.013530205164585],[-127.2366438612394,53.01340412265504],[-127.23657947998299,53.013245098400034],[-127.2365705780551,53.01306757074961],[-127.23659775886058,53.01287901395546],[-127.236643539306,53.01268745596187],[-127.23668669139305,53.01250209362986],[-127.23673570394564,53.012325635131816],[-127.23682120589069,53.01215215593007],[-127.23691704630167,53.011980809545676],[-127.23700446098746,53.01180843076643],[-127.23709745987362,53.01163599332219],[-127.23721121780643,53.011470626824405],[-127.237364566249,53.01131884867392],[-127.23755659402624,53.01118066827849],[-127.23774858817623,53.0110413761971],[-127.23791884524306,53.01089278179233],[-127.23807113266079,53.010736531090664],[-127.2381764282726,53.01056956686242],[-127.23826740606457,53.01039210202317],[-127.23833775180665,53.01021093587834],[-127.23836437279874,53.010035276300265],[-127.23828048206751,53.00987981950877],[-127.23805155635606,53.0097443808312],[-127.2379478807091,53.00958241645318],[-127.23791185279198,53.00940348772877],[-127.23790744017556,53.00921974444351],[-127.23791896685312,53.009038631011634],[-127.23793229490018,53.008855266276974],[-127.23796055443971,53.00867173581101],[-127.23801702318723,53.00849519800709],[-127.23812155244735,53.008334409758234],[-127.23829764150685,53.00819415374712],[-127.23851891776862,53.00806743573066],[-127.23874398966993,53.00794236289181],[-127.23896066997919,53.00781793361694],[-127.23917168435067,53.007691322120195],[-127.23938628314296,53.007559625054],[-127.23960461372292,53.00742789731076],[-127.23980507344724,53.00729186538019],[-127.23996988900605,53.00714949283123],[-127.24003242057502,53.0069891352824],[-127.23994949719784,53.006802855267836],[-127.23997346426373,53.00663226132152],[-127.24016336735654,53.00648626259853],[-127.2402601726401,53.006317143842644],[-127.24034941200212,53.006144177732864],[-127.24021223992285,53.00598592934176],[-127.24001322475202,53.00585185625601],[-127.23980044974233,53.005725781171364],[-127.23956299422039,53.00561733107045],[-127.23932644914804,53.00550830611006],[-127.23911184422855,53.00538336970043],[-127.2389404548109,53.005236121285364],[-127.23881250808563,53.00507384750564],[-127.23870401904247,53.004906321679684],[-127.23860387293185,53.0047370315878],[-127.23850559392221,53.0045677217916],[-127.23839988316442,53.00439961062776],[-127.23828119097529,53.004234441847146],[-127.23814860925904,53.0040733366548],[-127.23800956933395,53.00391454045853],[-127.23786960477919,53.003755753801045],[-127.23773517604215,53.00359522337372],[-127.23761187932865,53.00343177875062],[-127.2375312312805,53.003258921012595],[-127.23751760408352,53.00307920061438],[-127.23755439910005,53.00290062752332],[-127.2376080699975,53.002724118614616],[-127.23765984285893,53.002547064762126],[-127.23771724528581,53.00237051658896],[-127.23777745551692,53.00219450370828],[-127.23786767104153,53.002023214314285],[-127.23790073130532,53.0018446801876],[-127.23804925401352,53.00168846786284],[-127.23832644283246,53.0016233551698],[-127.23861342035372,53.001574393235444],[-127.23890856273603,53.00154887895188],[-127.23920564316897,53.00155808444567],[-127.2394906223563,53.0015046586659],[-127.23969778989999,53.00137528864515],[-127.23982559674592,53.00121312357055],[-127.2400384745885,53.00108761073515],[-127.24028856590958,53.000989722903306],[-127.24054055647878,53.00089350003503],[-127.24077535658579,53.00078344459745],[-127.24097586314483,53.00065021544947],[-127.24121924721516,53.000546792788164],[-127.24149929740629,53.00048444851147],[-127.24179131270019,53.00044830892753],[-127.24203087966872,53.00034212754198],[-127.2420995065961,53.00016713507096],[-127.24220941798372,53.00000011712874],[-127.24226585820914,52.99988745489799],[-127.24236981767459,52.99974011578657],[-127.2425060074131,52.99960980290724],[-127.24269513317716,52.999438587572484],[-127.24293107295907,52.99927248177385],[-127.24321729622254,52.9991024832303],[-127.24349755076165,52.99895159840764],[-127.24365076874363,52.99886144885048],[-127.24384464400312,52.99875685721124],[-127.24397845507488,52.99867308015074],[-127.24412000842082,52.99859874250275],[-127.24418183366564,52.99844735451509],[-127.24417658580069,52.998268101522555],[-127.24418813212354,52.9980886712821],[-127.24420620057256,52.99790861633458],[-127.24423267467382,52.997729028510605],[-127.24426757085331,52.99755047245176],[-127.24431184439139,52.99737293806739],[-127.2443616677587,52.997194224388686],[-127.24441989503012,52.99701542195988],[-127.24449410463329,52.996840368661935],[-127.24459276947812,52.99667234601772],[-127.2447234320513,52.996512950867505],[-127.24487755822713,52.9963583553264],[-127.24505237238247,52.996209135505865],[-127.24524235904329,52.99606816471715],[-127.24544380261159,52.99593603799814],[-127.24566624625079,52.99581994335717],[-127.24591624584612,52.99572092310878],[-127.24617864293191,52.99563073670186],[-127.24644017912944,52.995542800155995],[-127.24671342053188,52.99547267010943],[-127.2469129413763,52.99533887558579],[-127.24705671810302,52.995181580240484],[-127.24716565533771,52.995014011289015],[-127.24734524467,52.99486922001086],[-127.24751923379495,52.99472393183875],[-127.2476131916975,52.99455483540631],[-127.24768925135437,52.99438032490062],[-127.24780477116545,52.994214362100976],[-127.24790055974853,52.99404412530568],[-127.24798320465199,52.99387123033069],[-127.24801717277917,52.99369323823523],[-127.24802308789073,52.993513310704465],[-127.2480243307123,52.99333342365305],[-127.24801718516088,52.99315363435411],[-127.24793215608378,52.99295897103473],[-127.24798211645462,52.992849180121794],[-127.24799921162442,52.992795762259185],[-127.24814403275113,52.99264293688845],[-127.24841812723832,52.99257055214586],[-127.24870600527778,52.99252267576182],[-127.24899487252944,52.992476473692165],[-127.24928078472996,52.99242525466877],[-127.24957079006965,52.99238631906621],[-127.24986695221709,52.99236636907453],[-127.25016420426529,52.992352010192015],[-127.25046051408357,52.99233709572855],[-127.25085771818111,52.9924208597277],[-127.25115076043178,52.99239028863943],[-127.2514268788565,52.99232347875489],[-127.2517129026136,52.99224423551487],[-127.25184723854488,52.99221142986535],[-127.2519949961402,52.9922221881728],[-127.25223673571378,52.992192168188716],[-127.25254623584303,52.9920863329533],[-127.25280037486282,52.99200238721759],[-127.2530508297101,52.99188821264491],[-127.25330988597987,52.9918126141571],[-127.25358304091243,52.99174022720995],[-127.25385040116349,52.991661741971214],[-127.25412357060196,52.991589909450326],[-127.25440123275632,52.99154436904882],[-127.25470305008133,52.991526588002316],[-127.25500688186479,52.991513832298146],[-127.2552944308693,52.9914552921537],[-127.25544649447278,52.99145367273081],[-127.25559268247683,52.99147452939827],[-127.25589012496853,52.991466878066795],[-127.25615744436969,52.99138670244414],[-127.2564374621072,52.99132600733139],[-127.25671452382564,52.99126029548948],[-127.2569158922532,52.991127584146085],[-127.25709452326807,52.99098335219887],[-127.25730351792724,52.99085617121068],[-127.25752294553483,52.990734472995065],[-127.25777003023715,52.990633216423944],[-127.25797235119649,52.99050162264767],[-127.25817235247082,52.990322975458064],[-127.25820627854766,52.99017636820945],[-127.25836152665617,52.98993600468784],[-127.25844694493306,52.98976418353174],[-127.25853891642718,52.98959285714661],[-127.25861216454695,52.989419489213184],[-127.25862455463714,52.98923892624461],[-127.2587024915429,52.98906662882949],[-127.2588217018517,52.988901179515814],[-127.25888462947235,52.98872623602062],[-127.25892695072967,52.98854815945901],[-127.25896739085988,52.988370093986134],[-127.25898349382655,52.988188935328786],[-127.259031644647,52.98801919707571],[-127.25921269616639,52.98786260800662],[-127.2593790061515,52.98771290027135],[-127.25953684434528,52.98756047660054],[-127.25965885449708,52.98739555215433],[-127.25975652277994,52.987196146359494],[-127.25978099874902,52.987046277233915],[-127.25977562011727,52.986864783054024],[-127.25970968637895,52.98668617744346],[-127.25977307188032,52.98652691792929],[-127.25999040560457,52.986398521699535],[-127.26022788254724,52.98628895243417],[-127.2604539495638,52.986172224687714],[-127.26063157433039,52.98602687667457],[-127.2608358445938,52.985898618515016],[-127.26107523201848,52.98579071253784],[-127.2613146014746,52.9856822414187],[-127.2615586261598,52.98557372893102],[-127.26173929954561,52.98543674719683],[-127.26184055914123,52.98526476225645],[-127.26188382281819,52.985087785731814],[-127.26189184277737,52.98491791962995],[-127.26193455728836,52.98472246199833],[-127.26192451368642,52.9845410175177],[-127.26192030074817,52.98436791129305],[-127.26192990301503,52.98418849780772],[-127.26192179145997,52.98400927396742],[-127.26190245626452,52.98382961441737],[-127.26188033036694,52.98364997576077],[-127.26186566638681,52.98347026615521],[-127.26185554010841,52.98328601621077],[-127.2618820169574,52.98304646937336],[-127.26207871275535,52.98300962170457],[-127.26236160698741,52.98295391936655],[-127.2626464140154,52.982899316539786],[-127.2629244344254,52.982836376060696],[-127.26304303683588,52.98268325563776],[-127.2630096649854,52.98250206099078],[-127.2629772018415,52.98232029175013],[-127.26291054631045,52.9821176046857],[-127.26277255055668,52.98199468640077],[-127.262570736296,52.981859003350245],[-127.26238643651347,52.98171640818739],[-127.26223996781523,52.981559394401366],[-127.26201894213494,52.98134210553567],[-127.26197114940094,52.98124063419393],[-127.26173199207217,52.98113505245496],[-127.26147552389357,52.981043659724804],[-127.26121724128056,52.980953962419264],[-127.26095983521361,52.98086257861784],[-127.2606970487551,52.98077797598077],[-127.2604216734341,52.98070976194773],[-127.26013099965628,52.98066019782492],[-127.25984214186771,52.98060892805417],[-127.25957594417282,52.98053501048412],[-127.25933869671691,52.98043108009481],[-127.25911686428573,52.980311850690256],[-127.2589031689468,52.98018357736527],[-127.25869314052726,52.9800535789682],[-127.25848134587324,52.97992639631336],[-127.25828148664168,52.97979292651135],[-127.25807700806115,52.979661191211115],[-127.25791493125233,52.979511627721415],[-127.25778693967683,52.97934768705631],[-127.2576377738707,52.97919350260169],[-127.25744344998834,52.97905773092331],[-127.2572233793905,52.978934561244294],[-127.25697779395426,52.978831835807945],[-127.25674259158322,52.97873292604752],[-127.2566081949032,52.97866767347904],[-127.25650930306469,52.97860429254373],[-127.25647772808053,52.97841971469486],[-127.25644536218863,52.97824018389402],[-127.25642420254408,52.97806054255265],[-127.25639373538023,52.9778821121544],[-127.25634370890151,52.97770445509379],[-127.25629181773279,52.97752681787717],[-127.25623434837955,52.97734980492044],[-127.25616760355766,52.97717456735898],[-127.25608509613248,52.97700229502308],[-127.25597849417832,52.97683589187489],[-127.25584594576213,52.97667480379436],[-127.255704107607,52.97651549111453],[-127.25556690779979,52.976355017108055],[-127.25544083290578,52.97619217405519],[-127.25533606572031,52.9760240652197],[-127.25527117531105,52.97584825145205],[-127.25524538459786,52.97566977077094],[-127.25524284990418,52.97548936577046],[-127.25521889173118,52.97530975379682],[-127.25518841344405,52.97513020228994],[-127.25514029330347,52.97495364490254],[-127.25501239253991,52.97479195042681],[-127.25488846981962,52.97460723468624],[-127.25473188617389,52.97445312540367],[-127.25459106565526,52.974296041851474],[-127.2545466458037,52.974118324074375],[-127.2545310761653,52.97393862253846],[-127.25451738625719,52.97375889200332],[-127.25449623846058,52.973579805682796],[-127.25448160915597,52.9734000940749],[-127.25436665421411,52.97323433406963],[-127.25421294990325,52.973082990651335],[-127.25401861544971,52.97294553679159],[-127.25383901965134,52.97280175745691],[-127.25365117261158,52.97266254843024],[-127.25343855598557,52.972537606841904],[-127.25320758917415,52.97242295529156],[-127.25296663976233,52.972317930894455],[-127.2527211191865,52.97221575187208],[-127.25250967867409,52.97209864996861],[-127.25226657102905,52.97198356082495],[-127.25204475314081,52.97186264146702],[-127.25183671589197,52.97173428626645],[-127.2516608459287,52.971589908188186],[-127.2514996978167,52.97143864032417],[-127.25134313981316,52.97128509105901],[-127.25118199398612,52.97113382273287],[-127.25101340662232,52.97098319803003],[-127.25089857059511,52.97082079544415],[-127.25085878998478,52.97064135028947],[-127.25079021303868,52.97046612877514],[-127.2507160752275,52.97029208693821],[-127.25063822479352,52.970118640318475],[-127.25055664570166,52.969945242178575],[-127.2504713870162,52.96977355958972],[-127.25036385067976,52.96960547545295],[-127.25025446677391,52.96943796668265],[-127.2501952345994,52.96926321040797],[-127.25019739101873,52.969082755056455],[-127.2502191525891,52.96890321234147],[-127.25018408026189,52.9687253934037],[-127.24999626318841,52.9685861782095],[-127.24983973744297,52.96843318237679],[-127.24975484683318,52.96827382296079],[-127.2497621874953,52.968079299312215],[-127.24976530208812,52.9678993985268],[-127.2497372466327,52.96770637101631],[-127.24970773840404,52.967527372117075],[-127.24965682883114,52.96735028573909],[-127.24960118307145,52.9671704433288],[-127.24953537182907,52.96699350596404],[-127.2494455199465,52.966824112551464],[-127.24928919871634,52.96667728207859],[-127.24904713635085,52.96656441665386],[-127.24879530581137,52.96646846478324],[-127.24853169271147,52.9663838442531],[-127.24825462958162,52.96631729685234],[-127.24799643140055,52.966226449430806],[-127.2477912565249,52.966099186417054],[-127.24763469843337,52.96594450241665],[-127.2474873153416,52.965784126514386],[-127.24731523022236,52.96564025763834],[-127.24705908354933,52.96555555480265],[-127.24678364788973,52.96548114186237],[-127.24657744034617,52.96534996074994],[-127.24633667869318,52.96524940376022],[-127.24605149093985,52.96519190280421],[-127.24576123529222,52.96515238595677],[-127.24546835482649,52.96511849964965],[-127.24517899224712,52.96507785123545],[-127.24489217218964,52.96502820964837],[-127.24460975938987,52.96496955520686],[-127.24433632747945,52.96489959823378],[-127.24406553691053,52.96482400923987],[-127.24379925232985,52.96474276855604],[-127.24353747514847,52.96465643206522],[-127.24328664081446,52.96456157874433],[-127.24305302213499,52.964449732741265],[-127.24282121866197,52.96433562573032],[-127.24235303071013,52.96417470065454],[-127.24209487462932,52.96408440484158],[-127.24184401417415,52.963988428061775],[-127.24159944296468,52.963883983701734],[-127.24137223489817,52.96376758404008],[-127.24119465049077,52.963626005704405],[-127.24106858675097,52.96346034962478],[-127.24093033196965,52.9632925804285],[-127.24086764622344,52.9631256916285],[-127.24099066374059,52.96296301490474],[-127.24112386205796,52.96279798936118],[-127.24123180004307,52.962630432541964],[-127.24133879592931,52.962462320692566],[-127.24144956878234,52.962295845483304],[-127.24156877116909,52.96213041096372],[-127.24170958589704,52.96197090785181],[-127.24190810758431,52.9618399343893],[-127.2421454450507,52.96172872388804],[-127.24238573248448,52.96162252044848],[-127.24262123580677,52.961512448994554],[-127.242842436542,52.96139188577281],[-127.24303237325023,52.96125427667328],[-127.2432090287531,52.96110896250147],[-127.2433743657256,52.960959284705034],[-127.24351800658816,52.9608008700769],[-127.243654108459,52.96064029343963],[-127.24382236058271,52.960494502134246],[-127.24405491887615,52.96037997592108],[-127.24431335694905,52.96028927543854],[-127.24458236660516,52.96020910486914],[-127.24482753881965,52.9601112543403],[-127.24502021965534,52.95997249209716],[-127.24517516825962,52.95981843854599],[-127.24529715452171,52.95965352621989],[-127.24536662707905,52.95947851780655],[-127.24539766009154,52.95929663567105],[-127.24548600459956,52.95912928149339],[-127.24565043398188,52.95898073045851],[-127.24583926345113,52.95883808048036],[-127.24600832745756,52.958688924004306],[-127.24613223717067,52.95852623169422],[-127.24624761633281,52.95835858183271],[-127.24635451600396,52.958188224279326],[-127.24644922403374,52.95801575421037],[-127.2465299240506,52.95784231158454],[-127.24659295339924,52.95767017660748],[-127.24658291758583,52.95748705197435],[-127.24646051385471,52.95731912087281],[-127.24621557150002,52.95723317704692],[-127.24592010972448,52.957172978524035],[-127.2456567076995,52.957093397180614],[-127.24554641866415,52.95692533701401],[-127.24552348397916,52.95674682252125],[-127.24551818653303,52.95656588904946],[-127.24547197517535,52.95638874136508],[-127.24541180846745,52.95621287088569],[-127.24535164064044,52.95603643553819],[-127.2453137134405,52.955855838035205],[-127.24527119948347,52.95567753937812],[-127.24514720432056,52.95551858931536],[-127.24496861880729,52.95537366465818],[-127.24478355162017,52.95523048481246],[-127.24512992664168,52.955183115894016],[-127.24541763753487,52.95513805184572],[-127.24568682564478,52.95506515636264],[-127.24593557921466,52.954963347011926],[-127.24617487946313,52.95485714534827],[-127.24641028642971,52.95474538981088],[-127.24664765449728,52.95463696618056],[-127.24689460483383,52.95453741522965],[-127.24715595401439,52.95445227150285],[-127.24742690061512,52.95437600015606],[-127.2476978476292,52.954300284039014],[-127.24796112217696,52.95421680362845],[-127.24820809960974,52.95411836129527],[-127.24844164937473,52.954007177102916],[-127.24867227938964,52.953892105386515],[-127.2489077236595,52.9537820208509],[-127.24915080376792,52.953678014250265],[-127.2493957799144,52.953575116689066],[-127.24964555384456,52.9534766415617],[-127.24990110161761,52.95338483782977],[-127.25016535659034,52.95330358335332],[-127.25044115704759,52.95323453348822],[-127.25072081644136,52.953169924821296],[-127.25099663147088,52.95310142934842],[-127.25126089919844,52.9530207370614],[-127.25152115758843,52.952930556256355],[-127.25178316339628,52.952836429318026],[-127.25203753074253,52.95273622356268],[-127.2522767375437,52.95262777760274],[-127.2524913644987,52.95250782060787],[-127.2526606932777,52.95236929294984],[-127.2527628666925,52.952197858091296],[-127.25284234291841,52.95201601334262],[-127.2529502386815,52.95184900023571],[-127.25314798500344,52.951725859388944],[-127.25342233585219,52.951640007071965],[-127.25365303687727,52.9515277216982],[-127.25383807877914,52.951385106902755],[-127.25401650371737,52.95123919115087],[-127.25422160084331,52.95111260798165],[-127.25449345441491,52.95103686607771],[-127.25477211926457,52.950970581495035],[-127.2550508341678,52.950906528166655],[-127.25530165273932,52.950813077134974],[-127.25552939232377,52.95069578077266],[-127.25578583345417,52.95060338944113],[-127.25605952824284,52.95052705936116],[-127.25629320318534,52.95042146115943],[-127.25649160792116,52.95028934168923],[-127.25667472124736,52.95014505719578],[-127.25684935394536,52.9499975007643],[-127.2570155227454,52.94984723709308],[-127.25716456917057,52.94968593985144],[-127.25731560926523,52.94952854808847],[-127.25749045257038,52.94938827747567],[-127.25772626294822,52.94929217503714],[-127.25802601165533,52.94924638605276],[-127.25832044810048,52.949209618776834],[-127.25861216377086,52.94917568610734],[-127.25890585872735,52.94914564956831],[-127.2591996028716,52.949117288354934],[-127.25949427136419,52.94908892548369],[-127.25978794838046,52.94905832208171],[-127.26008068404398,52.949027172140696],[-127.26037340436811,52.94899602163114],[-127.2606670636461,52.948964860336794],[-127.26095978155446,52.94893315251035],[-127.26125348965219,52.94890366581088],[-127.26154912789498,52.948876408092936],[-127.26184181288092,52.94884413357108],[-127.26212949617614,52.94880013992687],[-127.26241222781877,52.94874612117939],[-127.26269291348414,52.9486865111369],[-127.26297257439855,52.948623558222984],[-127.26325129325872,52.94856004989872],[-127.26353098552002,52.948498207050484],[-127.26381265740247,52.94844026927126],[-127.26409918034055,52.94838900303229],[-127.26438670854121,52.94833996672675],[-127.26467324502289,52.94828869892794],[-127.2649539745981,52.9482307685002],[-127.26522691338025,52.94816115805543],[-127.26549303710017,52.94808208962688],[-127.26575526557004,52.94799745886622],[-127.2660145396919,52.94790781155774],[-127.26627000027064,52.94781485148361],[-127.26652349752162,52.94771910567783],[-127.26677417204344,52.94762226895697],[-127.26702293146083,52.9475237667311],[-127.26727069882119,52.947423042167514],[-127.26751557831612,52.94731954187085],[-127.26775473177581,52.94721161981983],[-127.26798627857352,52.94709873145702],[-127.26820738246323,52.94697979561978],[-127.26841233348449,52.94685039099736],[-127.26860210575684,52.94671217480678],[-127.26878522778115,52.9465695560322],[-127.26897115330385,52.94642746261145],[-127.2691665967497,52.946291990600194],[-127.26937340500146,52.946162555200104],[-127.26959159515853,52.94603972997665],[-127.26982699187653,52.945931279162],[-127.27008238391161,52.94583719050781],[-127.27031675351932,52.94572538759358],[-127.27053676896207,52.945601420120646],[-127.27081114122795,52.94554970343523],[-127.27111574825055,52.945543053378834],[-127.27141309954084,52.94554264932497],[-127.27171067003083,52.9455500782317],[-127.2720082892933,52.94555863554712],[-127.2723050695996,52.94557055437352],[-127.27260269083457,52.9455796660457],[-127.27289997533728,52.94557701751998],[-127.27319887366765,52.94556649678006],[-127.27349447862434,52.9455700243962],[-127.27378340219668,52.94559996498061],[-127.27409106357976,52.94560167511243],[-127.27437212833816,52.94561768579454],[-127.27467047163675,52.94561950422747],[-127.27498483209337,52.94565812331628],[-127.27525673201951,52.94567983473863],[-127.27554417820967,52.94572211496104],[-127.27579233830909,52.94582253283465],[-127.27590561843385,52.94555905651824],[-127.27588907798598,52.94538047612169],[-127.27578799965663,52.94521122159837],[-127.27568042540085,52.94504315807933],[-127.27554474598357,52.94487036015307],[-127.27550884985494,52.94469927850462],[-127.27546437354437,52.94452156544018],[-127.27547669571666,52.9443415515187],[-127.27546668974087,52.944163465013865],[-127.2753971297867,52.94398826503677],[-127.27533405204883,52.943811874071486],[-127.27531670889134,52.94373081399532],[-127.27540770698072,52.943594776724936],[-127.27560677743872,52.94336399266708],[-127.27570727548223,52.94320264040071],[-127.27575132975471,52.9430245328868],[-127.27579632263352,52.94284640619686],[-127.27581519181904,52.94266745078382],[-127.27581633059117,52.94248755778342],[-127.27583704615982,52.94230801747284],[-127.27583660819411,52.94216905243182],[-127.27599836491659,52.941968375425965],[-127.27611272643718,52.94180351020302],[-127.27622987490649,52.94163861463331],[-127.27635833596182,52.94147751433763],[-127.27655749379511,52.94134310960912],[-127.27675859804364,52.94121148970716],[-127.27694266032987,52.94107107950621],[-127.27715225792026,52.94094328482087],[-127.27736091328165,52.94081494408173],[-127.27756864282776,52.94068660402962],[-127.27777920947713,52.94055991836764],[-127.27799449338907,52.940435422551985],[-127.27821170502612,52.94031259096275],[-127.2784326944673,52.94019195041452],[-127.27865561164674,52.940072974064925],[-127.27888042675924,52.93995566222735],[-127.27910904950903,52.93984054105787],[-127.27934050938329,52.93972707416635],[-127.2795710288519,52.939613617019326],[-127.27980345912107,52.93950125935544],[-127.28003682940574,52.93938945583782],[-127.28026440571206,52.93927098151364],[-127.28049095745176,52.93914972053502],[-127.28073500152222,52.93905180408785],[-127.28101004135596,52.93899334017677],[-127.28130354903898,52.93895988651509],[-127.28160387227226,52.93893587962716],[-127.28189942823492,52.93890857065942],[-127.28219500056028,52.93888181664808],[-127.28249079183043,52.93886233975627],[-127.28278695456498,52.938855195048816],[-127.28308370816872,52.93886765142107],[-127.2833806646573,52.93888682920662],[-127.28367731727626,52.93889592300181],[-127.28398320239663,52.93890210905469],[-127.28429076519318,52.93890211648702],[-127.28457693455933,52.938872661715095],[-127.28483373168434,52.93879644721596],[-127.2850688467946,52.938681252260835],[-127.28527716241057,52.9385428051146],[-127.28544981879415,52.938396345947645],[-127.28560456143259,52.93824335774633],[-127.28574699545196,52.938083779365115],[-127.28587341126816,52.93791821621351],[-127.28598295626675,52.93775003088074],[-127.28607285797237,52.93757925370238],[-127.28614776776219,52.937405842874654],[-127.28621047118632,52.93722920314527],[-127.2862609705412,52.93704989935733],[-127.28629839215294,52.93686960872072],[-127.28632278738283,52.936690025233354],[-127.28633135399883,52.936511179524736],[-127.28632130229059,52.93633252826908],[-127.28628511623822,52.93615305078876],[-127.28622658584896,52.93597380845297],[-127.2861486028439,52.93579870564703],[-127.28605308134232,52.93562939803929],[-127.28592063219511,52.93547114516659],[-127.2857566967704,52.9353199514697],[-127.28558535857441,52.93516996808533],[-127.28543250338221,52.935015290733176],[-127.28530178634735,52.93485253530964],[-127.28519322781727,52.93468336931094],[-127.2851255571382,52.93450982978961],[-127.28512328740963,52.93434230960368],[-127.28514067313223,52.9341773721654],[-127.28515984610966,52.93397879322218],[-127.28516749265886,52.9337999484284],[-127.28523178951681,52.933614890408585],[-127.28530285725778,52.93346841919548],[-127.2854406449216,52.93331001202319],[-127.28558875401448,52.93315373340536],[-127.28574434843497,52.93299849354753],[-127.28590462380178,52.9328437582053],[-127.28606676328876,52.93268956710075],[-127.28622703659138,52.93253484025331],[-127.28638167034687,52.93237904509148],[-127.28653072881983,52.932223319601114],[-127.28668445330257,52.93206809877555],[-127.28684379982035,52.93191393699424],[-127.28700596623911,52.93176086487258],[-127.28716812932122,52.93160722768654],[-127.28732748943949,52.93145362987067],[-127.28748120823775,52.93129840793148],[-127.28762650079739,52.93114215720639],[-127.28775960502021,52.93098323330034],[-127.28787865824198,52.930821665601314],[-127.28797988571728,52.93065637472192],[-127.28805016124198,52.93048468906184],[-127.28809327737191,52.93030826172735],[-127.2881167033114,52.93012756689497],[-127.288127005283,52.929944774190545],[-127.2881335792535,52.929761466377606],[-127.28814297383578,52.9295792394447],[-127.28815990516927,52.92939973633002],[-127.28817124743014,52.92922029436063],[-127.28817790790548,52.92904034772379],[-127.28818085703519,52.9288604327192],[-127.28818474725207,52.92868107224617],[-127.28819048356516,52.9285011356621],[-127.2881943566213,52.92832121048469],[-127.28819729099952,52.92814130452643],[-127.28820023998504,52.92796138942229],[-127.28820411322206,52.92778147314787],[-127.28821265305523,52.92760206166242],[-127.28822585751281,52.9274225991002],[-127.28824465052925,52.92724307534608],[-127.28826438227982,52.92706354129224],[-127.28828314107065,52.92688289712532],[-127.2883028405009,52.926702798523486],[-127.28832440070876,52.92652212364157],[-127.2883487646467,52.92634198289453],[-127.28837967451189,52.92616288223534],[-127.2884152657449,52.925984295149576],[-127.28845929785076,52.92580730121366],[-127.28851267951379,52.92563188150313],[-127.28858012391892,52.925459105139986],[-127.28868126809365,52.925291572377745],[-127.28880583928388,52.92512825695161],[-127.288943485163,52.92496648376532],[-127.28908116199608,52.9248052749044],[-127.28920944087905,52.92464191835841],[-127.28932836907723,52.92447698745962],[-127.28945197973948,52.92431312585059],[-127.2895944206129,52.92415578219112],[-127.28975943415585,52.9240054802521],[-127.28991880725697,52.92385355428397],[-127.29005646162531,52.923692335372465],[-127.29018456171482,52.92352281994141],[-127.29025018434257,52.92335174785351],[-127.29021978461031,52.9231789311032],[-127.29012598308665,52.923004003059916],[-127.29000255086564,52.92283555933084],[-127.2898580797895,52.92267968318523],[-127.28968313735359,52.92253254187702],[-127.28951558089706,52.922383633780925],[-127.2893710281772,52.92222495158793],[-127.28924124213526,52.92206162447329],[-127.28915040324293,52.92189226685598],[-127.28910779039117,52.921715656433946],[-127.28909580031451,52.92153479242118],[-127.28909867939812,52.921353200653286],[-127.28909776317049,52.92116884410129],[-127.28908157508828,52.92097289150859],[-127.28907476610644,52.920778521747685],[-127.28910100300753,52.920598915509785],[-127.28918678586214,52.920447796228544],[-127.28936712016473,52.92034214726433],[-127.28964387277948,52.92028307743965],[-127.28996595248482,52.920243683465245],[-127.29028037976929,52.92019821290297],[-127.29055971062847,52.920131823309966],[-127.29083900692191,52.920064321643316],[-127.29111633756514,52.91999346967086],[-127.29138698611455,52.919917095608774],[-127.29164430866844,52.91983189226388],[-127.29187960658523,52.919726765709136],[-127.29205764963226,52.919576872706656],[-127.29217656951742,52.919412494120586],[-127.29225330216829,52.91923962169176],[-127.29230842048618,52.91906081798411],[-127.29235890635225,52.91888262099209],[-127.29241222729645,52.91870552252699],[-127.2924636532503,52.918527879972075],[-127.29251229247659,52.91835026798026],[-127.292556265378,52.91817214234648],[-127.29259184955853,52.91799411778822],[-127.29261991524407,52.917813925331444],[-127.29262354767455,52.91762672088909],[-127.29252545900432,52.917464169487005],[-127.29234976012133,52.91732264384327],[-127.29214262191586,52.91718875251857],[-127.29192714742449,52.917056628997],[-127.29172462426682,52.9169210006701],[-127.291558157347,52.91677656615523],[-127.2914526081533,52.916613539839815],[-127.29140891646408,52.91643245848616],[-127.29140607710202,52.916246445755355],[-127.29142674815863,52.91606802019267],[-127.29147257073672,52.915889874436004],[-127.29153986890579,52.91571317851453],[-127.29162308925964,52.91553911409776],[-127.29172042205067,52.91536993354675],[-127.29183931659126,52.91520555503887],[-127.29197320906589,52.91504381805286],[-127.29211463700257,52.914885360378044],[-127.29226738882869,52.914731261127216],[-127.29244648650041,52.91458640309602],[-127.29258138332055,52.914427451664196],[-127.29269276977566,52.91426092208482],[-127.29279568233407,52.9140916791284],[-127.2928986109464,52.91392299177006],[-127.29299115285623,52.91374994441115],[-127.29307808775006,52.913575828860374],[-127.29317725568163,52.91340607072649],[-127.29330280063279,52.91324610031912],[-127.29347354980632,52.9131024530023],[-127.2936847883717,52.91297348584997],[-127.29391023832912,52.91285220725184],[-127.29413486546741,52.91273429949803],[-127.29437280151414,52.912625766766375],[-127.29460979578214,52.912516688003855],[-127.29483156744695,52.91239713363299],[-127.29504954498759,52.912275370118415],[-127.29526747030319,52.91215193010958],[-127.29548163583108,52.912027410322516],[-127.29569482545259,52.91190122422692],[-127.29590331647158,52.911773959758335],[-127.2961098761164,52.9116444836377],[-127.29630307499869,52.9115045027237],[-127.29644643958557,52.91134938010508],[-127.2964969161884,52.91117174516002],[-127.29651190871243,52.910991138957606],[-127.29652131460725,52.91081059429766],[-127.29652419312212,52.910629556690864],[-127.29652801243037,52.91044907355453],[-127.29653463466387,52.91026912436708],[-127.29655153987277,52.91009017362004],[-127.29658153113631,52.90991276424036],[-127.29666574549944,52.90974204658482],[-127.29681362910478,52.909582390451924],[-127.29697953306037,52.90943317810956],[-127.29716231662945,52.90928827136973],[-127.29734982962346,52.909145544704636],[-127.29752984194549,52.90900122379471],[-127.29768925080688,52.90885321170098],[-127.29777646376056,52.90868917554481],[-127.29775123741986,52.90850340873725],[-127.29774111055724,52.908323643968785],[-127.29772538246003,52.908143932002666],[-127.29771804140734,52.90796413646355],[-127.29772747565924,52.90778471174682],[-127.29774157234638,52.90760523557521],[-127.29775005075659,52.90742525649904],[-127.29773155459037,52.90724613983348],[-127.29771025609114,52.90706649816621],[-127.29771875173145,52.90688708370287],[-127.29773471014569,52.90670758689193],[-127.29775251550915,52.90652806968215],[-127.29776474970323,52.90634861390923],[-127.29776297747998,52.90616819187842],[-127.29775469791018,52.9059883975114],[-127.29776320804385,52.90580898276081],[-127.29780530361684,52.905632003833986],[-127.29787071431174,52.905455879422504],[-127.29793800359793,52.9052802990826],[-127.2980005939062,52.90510309387805],[-127.29810510381532,52.904957363097374],[-127.29831524479752,52.9048244713646],[-127.29856316798576,52.904739363645795],[-127.29879020031377,52.90467185329384],[-127.29905522156474,52.904628579618986],[-127.29932061894088,52.90456736907676],[-127.299614232788,52.9044845518059],[-127.29987188808809,52.90441333871809],[-127.29997569062665,52.904305719684935],[-127.29955932756813,52.90421112882349],[-127.29927082073716,52.90409495969122],[-127.29901265085215,52.9040266384361],[-127.29872319007164,52.90400125983305],[-127.29842848529266,52.903987137009324],[-127.29813033041037,52.90398202654475],[-127.29783045000879,52.90398140842423],[-127.29753063814827,52.90398303926269],[-127.29723173255425,52.90398409448119],[-127.29693369709935,52.9039828978333],[-127.29663678749053,52.90398784769758],[-127.29633991420171,52.903994482029056],[-127.29604208324241,52.90400000540559],[-127.29574432037133,52.90400776878956],[-127.29544720627416,52.90400600233034],[-127.29515318756623,52.90398401846592],[-127.29486067154414,52.90394969797907],[-127.29456738759852,52.903920980034],[-127.29426976548848,52.90390296075714],[-127.29397215852515,52.90388494056337],[-127.29368161006761,52.90385451367848],[-127.29339965492399,52.903799899829906],[-127.29312735478206,52.90372611736155],[-127.29286132685849,52.9036444290093],[-127.29260163675168,52.903556501779036],[-127.29234736329745,52.903462910694024],[-127.29209218434289,52.903369884907455],[-127.29183073759435,52.90328533755886],[-127.29156473175998,52.90320420196194],[-127.2912969479298,52.90312532679996],[-127.29102557948151,52.903051538261295],[-127.29075068980471,52.90298394741462],[-127.2904704721752,52.90292538042763],[-127.2901849222904,52.90287471655354],[-127.28989674254524,52.90282968460761],[-127.28960678625464,52.90278746884344],[-127.28931686472265,52.90274638170996],[-127.28901980135544,52.902715449961576],[-127.28872183423258,52.902685657089805],[-127.28843201564388,52.90264791996108],[-127.2881620169436,52.902588114832746],[-127.28788940931784,52.902380398002165],[-127.28793374227331,52.90227568236978],[-127.28800532506311,52.90208717654593],[-127.2879110147047,52.90198622048984],[-127.2878433171469,52.90181043826713],[-127.2877478312493,52.90164000810629],[-127.28762998598272,52.901468701874855],[-127.28746446609868,52.90132257398436],[-127.28723495209627,52.90121525190856],[-127.2869826000051,52.901122749102846],[-127.28671646475007,52.90103656518213],[-127.28644945776658,52.90095206685113],[-127.28618972964841,52.900861884549265],[-127.28593910836442,52.90076487758369],[-127.2856902990923,52.90066616466786],[-127.28544149124363,52.900567460182685],[-127.28519000055017,52.90047213779286],[-127.28493217353655,52.900383052731556],[-127.2846545953335,52.90031828356456],[-127.28438147887695,52.90024729638986],[-127.28413544247013,52.90014742919122],[-127.28389567962485,52.900039656681884],[-127.28383395125478,52.899999983277404],[-127.28327087680742,52.899637955345746],[-127.28283959872883,52.89932380953856],[-127.28241754825153,52.899099213039925],[-127.28167335427374,52.89878230579247],[-127.28098495512982,52.89846310957532],[-127.28052640531499,52.898324646192265],[-127.28011096446417,52.89822605905592],[-127.27974943241776,52.89815545868567],[-127.27936356948521,52.89792598355091],[-127.2788705143561,52.897568221007035],[-127.2781511247014,52.89720731255851],[-127.2775914876805,52.89677125049133],[-127.27650723079886,52.89597832097553],[-127.27566576846993,52.89570614137785],[-127.2750585296109,52.8955132318668],[-127.27443710806847,52.89534400882594],[-127.27383587635117,52.895351643292315],[-127.27326604517302,52.89522612965445],[-127.2724422133977,52.89513754030504],[-127.27250971775572,52.894810105129565],[-127.27254815094423,52.894632053932135],[-127.27259218282728,52.89445393314947],[-127.27263988916314,52.8942746607733],[-127.2727579255069,52.894111994466385],[-127.27293322761908,52.89396495466741],[-127.27311788803642,52.89382006375045],[-127.27327163988643,52.893668773661354],[-127.27334197892377,52.89349877777588],[-127.27334857910975,52.89331490214827],[-127.27337952634865,52.89313524589829],[-127.27342541659404,52.89295766932233],[-127.27345731998686,52.89277912340944],[-127.27346126888642,52.892599759427576],[-127.27345310965309,52.89241997064764],[-127.27343935122937,52.892240233514535],[-127.27342466995555,52.892060515320225],[-127.27341464936089,52.89188073767024],[-127.27341762675397,52.89170026335246],[-127.27346817607916,52.89152263613028],[-127.27358616814784,52.89135884831744],[-127.27372285638734,52.891197664233346],[-127.2738793124347,52.891043546272144],[-127.27405374384385,52.890899320156194],[-127.27424323201872,52.89076053439685],[-127.27444029818936,52.89062614921588],[-127.27464016423114,52.89049228922756],[-127.2748371943874,52.890356782962854],[-127.27502575440438,52.89021800590432],[-127.27519543423652,52.8900710320459],[-127.27534715314518,52.889914721772215],[-127.275496069596,52.88975787681035],[-127.27565917195443,52.889608732028194],[-127.27585059414247,52.8894727198857],[-127.27606094638826,52.8893471536914],[-127.27628261594678,52.88922651216908],[-127.27650807356868,52.88910806163996],[-127.27673163541169,52.88898851944496],[-127.27694568818413,52.88886234653304],[-127.27714542068261,52.88872456523277],[-127.27735091832929,52.88859232474853],[-127.27758042822339,52.88848504461123],[-127.2778454029633,52.888412113256145],[-127.2781315372333,52.88836137549974],[-127.27842533573856,52.888318390079355],[-127.27871430332935,52.8882692967432],[-127.27900120728636,52.88821350056082],[-127.27929188345432,52.88815934825477],[-127.2795729835392,52.888096324361726],[-127.27982844284331,52.8880162115304],[-127.28002373546926,52.887885762890846],[-127.28014702318937,52.88771349988677],[-127.28021533124323,52.88753960277824],[-127.28025268459747,52.88735763243785],[-127.28031631230462,52.88718265645164],[-127.28044558448549,52.88702378598984],[-127.2806049028593,52.88687354526879],[-127.28078016509328,52.88672705779139],[-127.2809601051482,52.88658163982902],[-127.28113345527778,52.88643405183883],[-127.28128802291305,52.88628050852272],[-127.28143315100833,52.8861231406943],[-127.28157168729095,52.88596303811352],[-127.2817017879808,52.88580079473355],[-127.28182062195471,52.88563586761562],[-127.28192451395114,52.88546886173029],[-127.2819983940631,52.88529489350658],[-127.28204326644584,52.885115646650526],[-127.28207232675395,52.88493656320564],[-127.28208366609407,52.88475656116768],[-127.28206984003883,52.884575703787654],[-127.28202912115461,52.88439794602575],[-127.28194660468098,52.884222885504194],[-127.28180598227216,52.8840658347631],[-127.28161647474906,52.88392387772811],[-127.28138418614431,52.88381377706853],[-127.28112921613356,52.8837229671625],[-127.28086331909624,52.88364068598095],[-127.28059559395795,52.88355898898271],[-127.28033424092101,52.88347272996123],[-127.2800864855867,52.88337455875867],[-127.279847781957,52.88326732237862],[-127.27961632361328,52.88315384693406],[-127.27939125250028,52.883035809504086],[-127.27917255222567,52.882912663368955],[-127.27896302553295,52.88278549884052],[-127.27876084095973,52.88265432692055],[-127.27856504569411,52.88251915800769],[-127.27837475058487,52.88238113153309],[-127.2781890343767,52.88224081343846],[-127.2780051449366,52.882098798527544],[-127.27782217946739,52.88195676432114],[-127.27764013849743,52.88181472874991],[-127.27746267434786,52.881669836767486],[-127.27729257090944,52.8815220581482],[-127.27712429623455,52.88137314761569],[-127.27695146176076,52.8812270838015],[-127.27676944345743,52.881085602536835],[-127.27657004064962,52.88095383179448],[-127.27634866112784,52.88083407184395],[-127.27611722329225,52.88072002449438],[-127.2758875991239,52.880604836244565],[-127.27566558534278,52.880339382215624],[-127.27552674223243,52.88017837749976],[-127.27536318871405,52.880031089889926],[-127.27515932018292,52.87990553391665],[-127.27492431988286,52.879796570817675],[-127.27467193688565,52.87969787366684],[-127.27441499635384,52.87960259665371],[-127.27416088885741,52.87950840018165],[-127.27389870108703,52.87942382172862],[-127.27363557651229,52.87933925284699],[-127.27338784402957,52.879240511555956],[-127.27314825916514,52.879133827177405],[-127.27289060325931,52.87904527922256],[-127.27262300577104,52.878966360367606],[-127.27238798538832,52.87885682761221],[-127.27216563867687,52.87873482880784],[-127.27194059494663,52.87861622106927],[-127.27169570235101,52.878518557330324],[-127.27141463196412,52.87845603710704],[-127.27112048459809,52.87842335345787],[-127.27082234452398,52.87841256271001],[-127.27052301209014,52.87842420839604],[-127.27024055515392,52.87847097064328],[-127.26997220979838,52.87855456505461],[-127.26969276875396,52.87860913875076],[-127.26939338444292,52.87861909646885],[-127.26909782532093,52.87860099297258],[-127.26880553950319,52.87856828344682],[-127.26851489636454,52.878527710110355],[-127.26827475066936,52.878464175958854],[-127.26796565738711,52.87839802270341],[-127.2676953744705,52.878322484006176],[-127.2674233317064,52.87825032596581],[-127.26714765149468,52.878181003942586],[-127.26687577707673,52.87811444666388],[-127.2665687195018,52.878116634553585],[-127.26627954045352,52.878156735098464],[-127.26600225757039,52.87822136365767],[-127.26572601337298,52.878289907530295],[-127.26560575313019,52.87806368688331],[-127.2655048917674,52.87789497221906],[-127.26536435081613,52.87773790119732],[-127.26517864764901,52.877595877053984],[-127.2649292971979,52.87744109727308],[-127.26481597334161,52.877322950564206],[-127.26472236210124,52.877147997465656],[-127.26461129859231,52.87698052149177],[-127.26436778556763,52.87689684188984],[-127.26411376638292,52.876804308639116],[-127.26387601267004,52.87669534437732],[-127.26362463000206,52.87659774277135],[-127.26340429694426,52.876479624174905],[-127.26322046673214,52.87633758579206],[-127.26300732996006,52.87621098786352],[-127.2627768426196,52.876095783601],[-127.2626071753636,52.87602307066209],[-127.26251753162992,52.87601282581919],[-127.26221723486329,52.875991393806316],[-127.26192245404127,52.875967660283216],[-127.2615412045078,52.875915158208635],[-127.26149920696352,52.875785600052666],[-127.26140113432537,52.87561629603182],[-127.26133439493388,52.87543656881515],[-127.26124561020131,52.875266600114955],[-127.26105654019477,52.87513525739201],[-127.26081411173402,52.875025225357795],[-127.26058541437723,52.87490719124723],[-127.26041547939568,52.87476219309898],[-127.26027582231933,52.874602300120976],[-127.26012325972567,52.87444702838864],[-127.25995051158971,52.87430093895374],[-127.2597703903347,52.87415773468381],[-127.25958845744053,52.87401566135179],[-127.25945068470263,52.87385686795279],[-127.25933225774465,52.873691142523946],[-127.2592443895159,52.8735200506307],[-127.25924652620783,52.87327737717556],[-127.25927004487805,52.87309724655274],[-127.25924434936618,52.87292044058387],[-127.25906242350541,52.87277836632723],[-127.25883925869765,52.87265803700285],[-127.25858417366655,52.872559899534856],[-127.25837773926646,52.87243882533425],[-127.25828143133896,52.87226557250775],[-127.25821011629051,52.872087577953835],[-127.25802940142498,52.871955020145364],[-127.25777881582084,52.87185122895494],[-127.2575365133887,52.87174454221395],[-127.25739707528946,52.8715913679988],[-127.25731466987158,52.87141628895604],[-127.25723694037072,52.87124172469503],[-127.25713336319144,52.87107415247212],[-127.25698452740173,52.87091771595114],[-127.25680258635026,52.87077508245178],[-127.25661789633878,52.87063359882945],[-127.25648200452255,52.870474225838215],[-127.25640146543864,52.870299126143905],[-127.25639809177652,52.87012151590594],[-127.25643467481162,52.8699418018506],[-127.25646938226178,52.869762107810864],[-127.25646691323475,52.8695833760386],[-127.25643095892345,52.8694055581117],[-127.25637919920743,52.86922790911227],[-127.25631909211059,52.86905090520342],[-127.25626178524416,52.868874436186346],[-127.2561970541034,52.86869861134731],[-127.25612861919214,52.86852338194542],[-127.25606946986503,52.86834748838566],[-127.25603536220441,52.868169094590684],[-127.25601980659081,52.867988252000146],[-127.25598757610629,52.86781039399692],[-127.25591639347856,52.867636314532234],[-127.2558220163328,52.8674647243963],[-127.25570638785382,52.867298409184244],[-127.25556958886065,52.86713960054843],[-127.25540694502973,52.86698779244799],[-127.25522502428164,52.86684459130437],[-127.255027565587,52.86671108684049],[-127.25481634663751,52.86658445359034],[-127.25459508648264,52.86646409587792],[-127.25436745575713,52.86634827986496],[-127.25411887113599,52.86624782190846],[-127.25386485539119,52.8661524693286],[-127.25363912321392,52.86603831730466],[-127.25343984593295,52.865905950368365],[-127.253255188171,52.86576446102907],[-127.2530815116688,52.86561668558983],[-127.25291983664515,52.86546542859731],[-127.25276461651619,52.865312416932206],[-127.25261397470976,52.86515711471849],[-127.25246794240714,52.865000077543],[-127.25232651983849,52.864841314385636],[-127.2521906310561,52.86468137131891],[-127.25206030577158,52.86452024804453],[-127.25194845316929,52.86435500961114],[-127.25187077482731,52.86418099675497],[-127.25179586188068,52.86400583360651],[-127.25175199938506,52.86371602093863],[-127.25165861950248,52.86354609335922],[-127.25153470400294,52.86338153885827],[-127.25139233647056,52.863222228669784],[-127.2511986101883,52.863088113160224],[-127.25096374724576,52.86297853633127],[-127.25071884474617,52.86287579052379],[-127.25047664410394,52.8627702180138],[-127.25024446889456,52.86265724884691],[-127.25000859104487,52.86254487451491],[-127.24977452538411,52.862430803766664],[-127.2495523947041,52.862311001788356],[-127.2493486212441,52.86218315882313],[-127.24918343277123,52.8620380937611],[-127.24907610756547,52.861867756436645],[-127.24897428143353,52.861694563109765],[-127.24882101485858,52.861543766950824],[-127.2486291315107,52.861408506872756],[-127.2484271595478,52.86127840162474],[-127.24821598572068,52.86115120019151],[-127.24800023752665,52.86102684441263],[-127.24778170939743,52.8609030736636],[-127.24756504116239,52.860778726862584],[-127.2473520302778,52.86065266416681],[-127.24714543949905,52.86052316166553],[-127.2469443319075,52.86039024726608],[-127.24674414648992,52.860256757870786],[-127.24654213646967,52.86012496416877],[-127.2463337399899,52.85999716504852],[-127.24611622514638,52.859875630994104],[-127.24588957515965,52.859759788298064],[-127.24565746122373,52.85964793028081],[-127.24542077151428,52.859538361854305],[-127.24518227363096,52.859431053663535],[-127.24494287090299,52.85932431945031],[-127.24470439029879,52.859217010117455],[-127.2444640196005,52.85910915545408],[-127.24421918767605,52.85900751627865],[-127.24396265086402,52.85891889388802],[-127.24369526723407,52.85884158451519],[-127.24342065606673,52.85877108462701],[-127.24314158430064,52.85870734696713],[-127.24286078434359,52.85864811898839],[-127.24257830469624,52.85859506787524],[-127.2422895859515,52.8585516041378],[-127.241999137116,52.85851208517109],[-127.24170957870636,52.85847143530876],[-127.24124566271186,52.858448882398356],[-127.2409503382952,52.85843406935488],[-127.24065414033832,52.85842094147034],[-127.24035710165879,52.85841062812988],[-127.2400577871569,52.858418270415534],[-127.2397644535726,52.85840791647694],[-127.23947977763099,52.85834311751288],[-127.2392092776371,52.8583179512922],[-127.23892564562084,52.85838482622588],[-127.23863274054787,52.85842097250249],[-127.23832835040854,52.858446040329824],[-127.23804351946904,52.85840812909882],[-127.23752920967168,52.858379923772596],[-127.23723244849016,52.8583791306637],[-127.23693618705745,52.85836375254887],[-127.23664159104237,52.85834164049923],[-127.23634783650083,52.85831671244842],[-127.23606830182817,52.85833253775036],[-127.23579199212612,52.858395965725876],[-127.23551186316777,52.85845551498378],[-127.2352309255975,52.85851954618151],[-127.23494914739317,52.85858695680974],[-127.23466480928076,52.85862972772708],[-127.23437362737626,52.85862942465886],[-127.23407683033243,52.858595556725945],[-127.23378960628067,52.85853861621836],[-127.23352052955029,52.85846634962378],[-127.23325945797579,52.85838110505687],[-127.23300375670087,52.85828852303826],[-127.23274892914358,52.85819368976205],[-127.23249413654644,52.85810054121167],[-127.23223756454557,52.858009643350336],[-127.23198190008705,52.85791817951748],[-127.23172895438397,52.85782444509369],[-127.23147689876588,52.85772902413028],[-127.23123299444272,52.857625662859306],[-127.23099268308935,52.857518345232194],[-127.23074700225203,52.857417807984696],[-127.23048602359714,52.85733536276098],[-127.23021063589475,52.85726932348167],[-127.22992801954003,52.8572106397543],[-127.2296463101679,52.8571513809932],[-127.22937349606197,52.85707746744466],[-127.2290843306825,52.85704966692801],[-127.22878656070732,52.85704605673214],[-127.22849969434007,52.85700142815353],[-127.22821620790822,52.85694442611167],[-127.2279398888836,52.856878391292746],[-127.2276778674483,52.85679146771323],[-127.22741853264792,52.85670115318002],[-127.22714072726038,52.85664801640057],[-127.22684700481915,52.85662306441827],[-127.22654888351553,52.856607123783846],[-127.22625241271419,52.85658387568285],[-127.22596642503926,52.8565369902571],[-127.22568121542102,52.85648504807726],[-127.22538838523425,52.85645896238967],[-127.22509129954136,52.85644636958162],[-127.22479588184893,52.85642758992126],[-127.22449116420947,52.85640835053878],[-127.22419173816837,52.85637953317916],[-127.2239321177364,52.856311064527475],[-127.22372490709282,52.85618938227533],[-127.22354483787758,52.85604050959252],[-127.22336017751375,52.855893934941236],[-127.22315735416908,52.85576267498905],[-127.22294995535327,52.855634259754176],[-127.22274161939748,52.855505298006605],[-127.22253423822026,52.855376890825546],[-127.22232682722763,52.855247918723336],[-127.22213227402838,52.85511264379814],[-127.2219762488038,52.8549590444996],[-127.22178527322605,52.85481869281005],[-127.22157854776844,52.85468074610532],[-127.22135218458357,52.854571578329235],[-127.22107337500144,52.854547577812646],[-127.22076630006885,52.85457542573461],[-127.22047141802143,52.85460707337056],[-127.22017694478696,52.85462077473664],[-127.2198834167877,52.854601972199724],[-127.21959055488502,52.85457418689616],[-127.21929756548063,52.854541928077936],[-127.2190036550933,52.854510233990126],[-127.21870899868827,52.85448470665716],[-127.21841369243002,52.85446871634896],[-127.21811762523174,52.854458901903094],[-127.21782070072126,52.8544518930384],[-127.21752377506424,52.85444431856873],[-127.21722675481163,52.854433946890595],[-127.2169296536636,52.85442021299457],[-127.21662886642017,52.85440820215516],[-127.21632985783948,52.85439280086166],[-127.21603615848231,52.85436838667616],[-127.21575316949502,52.85432760530606],[-127.21547820332165,52.85424246542056],[-127.21527630162737,52.854109505856385],[-127.21520653364492,52.85394603040217],[-127.21516672585832,52.853757032212435],[-127.21512006911777,52.85358827866589],[-127.21508734968504,52.85338687864307],[-127.21499952509815,52.85320958462381],[-127.21498650472628,52.85304665183629],[-127.21527184532698,52.85277807830438],[-127.21544439483696,52.852631714056514],[-127.21562260185264,52.85248808843312],[-127.21580645076374,52.852346654634566],[-127.21599123668543,52.85220576672684],[-127.21617319131073,52.85206322217369],[-127.21634575094123,52.85191742123741],[-127.21651168004165,52.85176719663113],[-127.21667285584869,52.85161366764381],[-127.21681904157482,52.851456366486794],[-127.21694186168139,52.851295379974474],[-127.21697778545753,52.85112016755836],[-127.21696326033342,52.85093707640675],[-127.21698607072626,52.85075863746834],[-127.21704896514447,52.850583145570624],[-127.21708291627792,52.85040402628415],[-127.21712619715328,52.85022594004373],[-127.21720871985436,52.85005416284776],[-127.21731740368448,52.849886606542796],[-127.21740269096352,52.84971424460891],[-127.21745903435429,52.849537699456505],[-127.21755275961932,52.84936749146108],[-127.21767642829467,52.849203697633],[-127.217820726429,52.8490458495611],[-127.21796127275445,52.84888692837634],[-127.21807187388835,52.84872158388974],[-127.21815807709798,52.848548655823585],[-127.21822280678496,52.84837257906672],[-127.21826703514054,52.84819560305366],[-127.21826188266934,52.84801521192652],[-127.21824652655216,52.84783548249982],[-127.2182330153917,52.84765574288524],[-127.21821114405131,52.847476080981075],[-127.21815213239816,52.84729848984244],[-127.2181555314886,52.84712417867728],[-127.21826040516902,52.846953854163864],[-127.21834661991616,52.846781481504856],[-127.21840111200045,52.84660551059649],[-127.21843133576027,52.84642643800326],[-127.21845316846351,52.84624688754632],[-127.21847035997676,52.84606738520525],[-127.21848197323635,52.845887940702895],[-127.21852060246583,52.84570989261525],[-127.21857038875517,52.84553229362152],[-127.21860993978545,52.84535424486059],[-127.21864947435215,52.84517563136252],[-127.21869835313136,52.84499859756224],[-127.21876027903585,52.84482255808864],[-127.218837142727,52.84464859614575],[-127.21893927423031,52.84447998476845],[-127.21907789388499,52.84431939593291],[-127.21919598007317,52.84415621361016],[-127.21921402577473,52.84397446046065],[-127.21910518265648,52.843810280056886],[-127.218970390489,52.843649166297304],[-127.21882361759727,52.84349153902674],[-127.2186713171614,52.8433362104723],[-127.21850341366542,52.84318776824442],[-127.21832817035802,52.84304276423799],[-127.21817039034832,52.84289028932159],[-127.21803010703113,52.84273203783143],[-127.21789626037285,52.842571468906975],[-127.21824509740436,52.84241318404587],[-127.2184345517201,52.84227448401239],[-127.21862398892809,52.842135227919975],[-127.21877301111832,52.84198069100634],[-127.21889195038538,52.84181526724886],[-127.21902499988624,52.841655291825795],[-127.21920403811816,52.841509973856155],[-127.21944090959182,52.841403847291645],[-127.21968539262838,52.841303800990104],[-127.21985034781983,52.84115414509102],[-127.22000681593487,52.84100064988068],[-127.22016423608709,52.840847709417645],[-127.2203470976457,52.84070627704798],[-127.22056681256208,52.84058574723944],[-127.22080834797424,52.840480690078245],[-127.22103184282058,52.84036236162771],[-127.22125913498958,52.840246799678745],[-127.22152751136714,52.8401694813873],[-127.22177576484466,52.84007163287855],[-127.22200683585913,52.83995827167585],[-127.22221323960062,52.83982779011097],[-127.22238572910277,52.839681979170535],[-127.22243738346467,52.83950547895453],[-127.22249836360714,52.839329437528995],[-127.2225723901865,52.8391549458958],[-127.22264644721689,52.838981018747056],[-127.22271955049276,52.838806536581586],[-127.22278798192,52.83863153811175],[-127.22287325565966,52.83845973552374],[-127.22302971920719,52.83830680072887],[-127.22322765724853,52.838173042940255],[-127.22343122077194,52.8380414767236],[-127.22362324196556,52.83789601612386],[-127.22368266240578,52.83773119790369],[-127.22363007519597,52.837550743906455],[-127.22358033350115,52.83737249282287],[-127.22349452755911,52.83720135108254],[-127.22356594194412,52.83703304554251],[-127.22369192495172,52.83688715190293],[-127.22370390433957,52.83668864844975],[-127.22370432334472,52.83650876283638],[-127.22370474208927,52.836328868238716],[-127.2236698249755,52.8361487859019],[-127.2236201171405,52.835971664088206],[-127.2235324387336,52.83579997688486],[-127.2234836525771,52.83562228050651],[-127.22341810555173,52.835444193826234],[-127.22331570117736,52.83527714296895],[-127.22327900810946,52.83509988536488],[-127.22323209995088,52.834923290044046],[-127.22316201164418,52.834748612820036],[-127.22314144874571,52.83458239496371],[-127.22312381772873,52.83438923875027],[-127.22312892585909,52.83421042484563],[-127.22319267642261,52.83403435350085],[-127.22329193748507,52.83386464586843],[-127.2233510164,52.83368806714127],[-127.2233635585496,52.83350916672492],[-127.22332681848752,52.833330223777324],[-127.2232567326667,52.83315555539559],[-127.22316422920875,52.832977193230946],[-127.22308510733355,52.83281157616157],[-127.2230372646031,52.832634434363435],[-127.22302095708133,52.832454713556864],[-127.22305486898037,52.83227559944084],[-127.22314854994183,52.83210594085423],[-127.22325435297189,52.83193784155349],[-127.2233545616572,52.831768679626016],[-127.22345475467812,52.83159951774968],[-127.2235558837083,52.83143034600818],[-127.22365235660922,52.83126066676255],[-127.2237217089067,52.83108565714335],[-127.22383127291211,52.83091920363315],[-127.22398206364521,52.830763519180685],[-127.22416097634233,52.83061651660343],[-127.2241876558601,52.83054170158965],[-127.22418449541004,52.8304963471136],[-127.22413750343532,52.83044640155926],[-127.22380927594945,52.83015224919861],[-127.22364785499049,52.83000150429026],[-127.2234873411369,52.82985019379471],[-127.22331121483178,52.829705761493734],[-127.22312775038351,52.82956421182035],[-127.22295161054815,52.82941922320851],[-127.22278927481729,52.82926905151453],[-127.22263337250659,52.829116006151345],[-127.22248206217832,52.82896122710367],[-127.22233996595577,52.82880355444947],[-127.22221813918898,52.82863951077882],[-127.22209815579538,52.82847488291068],[-127.22197725250635,52.82831082039692],[-127.22184621564116,52.82814966965777],[-127.22169951751103,52.82799316487593],[-127.22153534893691,52.827843566395536],[-127.22135556859882,52.8277008548124],[-127.22115745923739,52.82756674398466],[-127.2209694534586,52.82742860051449],[-127.22076795101754,52.82730628811971],[-127.22051809400202,52.82718279236956],[-127.2203944041175,52.82708320702665],[-127.22022637489947,52.826961110662296],[-127.22015612697854,52.826812210834035],[-127.22011979008725,52.82671171739159],[-127.21999540682722,52.826555543439184],[-127.21979246090292,52.82641474686126],[-127.21958796213346,52.826284618048376],[-127.2193807324325,52.826156202911434],[-127.21917166236057,52.82602891834452],[-127.21896167197636,52.82590165192907],[-127.21876450004545,52.8257675183756],[-127.21855638651792,52.825640787669066],[-127.21832714915102,52.825522686201644],[-127.21810165607103,52.825373154361785],[-127.21802718055834,52.825238876309015],[-127.21819909180091,52.82504207525832],[-127.21835460111477,52.82488915494345],[-127.21855789109303,52.824749187980565],[-127.21859217177378,52.82468046395981],[-127.2186516054057,52.82458065262224],[-127.21873764538856,52.82440379537942],[-127.21879407784024,52.82423172857026],[-127.21888211908066,52.82405989843621],[-127.21898324837045,52.82389072981563],[-127.21911247696262,52.82372911484435],[-127.21923983004606,52.823566954302194],[-127.21932974238825,52.82339566020743],[-127.21941590523039,52.82322328417032],[-127.21954139753315,52.8230611515143],[-127.21964906659825,52.82289359093145],[-127.21977725594901,52.82272806757421],[-127.21991294278982,52.82256526364088],[-127.22007417213408,52.82241788517363],[-127.22028829887547,52.82230021804518],[-127.22054876218935,52.8222100885972],[-127.22081105171648,52.82211937468484],[-127.22105062241107,52.822013770242435],[-127.22128539452409,52.82190317612416],[-127.22152019723259,52.82179369302459],[-127.22176259262314,52.821689743352934],[-127.22200975324212,52.82159021776827],[-127.22226072453329,52.82149345843875],[-127.22251649347835,52.82140225256466],[-127.22277707632549,52.82131716482721],[-127.22305198781298,52.821245367784435],[-127.22332885327049,52.82117692107304],[-127.22359618535211,52.8211001626191],[-127.2238406066122,52.82100234728918],[-127.2240583519602,52.82088182880259],[-127.22426181318667,52.820749139075254],[-127.22446522587981,52.82061531971555],[-127.224676310515,52.82048927447727],[-127.22488737878025,52.82036322004079],[-127.22509180476237,52.82023219542195],[-127.22529435529164,52.82010063408348],[-127.22551205976315,52.81997899237101],[-127.22575538763704,52.81987558030618],[-127.22601981587152,52.819795484071086],[-127.22629383884127,52.819725374164996],[-127.22656786227368,52.819655828483164],[-127.22684288551193,52.81958850432714],[-127.22711398218743,52.819513939865246],[-127.22737071389976,52.81942439868259],[-127.22751689484194,52.81927211857157],[-127.2275824472102,52.81909546797983],[-127.22763497571601,52.81891839761058],[-127.22783916867515,52.81910287028509],[-127.2280368954398,52.81912714523347],[-127.2283231737005,52.81909613017953],[-127.22862283089563,52.819045355962245],[-127.2289218077993,52.81900299855666],[-127.22921580777069,52.81898198764984],[-127.22951193872036,52.8189699200653],[-127.22980905573375,52.81896008299721],[-127.23010630177784,52.81895472701478],[-127.23040251432013,52.8189460187177],[-127.23069651201122,52.81892444819854],[-127.2310008841309,52.81887642491176],[-127.23126660408771,52.81884113502304],[-127.23156467274286,52.818799901163736],[-127.23185351458807,52.81876100496086],[-127.23209979405266,52.818664273250455],[-127.23235930606943,52.81857524768151],[-127.23261788048627,52.81848623136749],[-127.23289190026624,52.81841666175037],[-127.23318322677311,52.818367648939535],[-127.23348072480205,52.81833874493425],[-127.2337639267679,52.818362112071945],[-127.23400413645547,52.818441405556165],[-127.23430817093534,52.8185104961994],[-127.23457725640507,52.81859172649952],[-127.23484619836911,52.81866847450188],[-127.23512917859051,52.8187159334078],[-127.23538852594088,52.818814076318226],[-127.23566637244014,52.81887727915872],[-127.23594778877734,52.81893483976572],[-127.2362317749129,52.81898509192839],[-127.23652110881032,52.81902743251674],[-127.23680945818033,52.81906810605357],[-127.23710239606805,52.819106488932576],[-127.23739887234568,52.81913867387283],[-127.23769269891234,52.81917536023761],[-127.23797573579037,52.81922505333785],[-127.23823901447282,52.819297935050244],[-127.23847082452845,52.819407569683314],[-127.23868648079618,52.819536983827064],[-127.23890755066883,52.81966074541288],[-127.23916130525016,52.81975781830518],[-127.23946480430321,52.81980784777849],[-127.23970177102407,52.81974258079146],[-127.23988883873318,52.81959153875446],[-127.24007505009675,52.819443311920516],[-127.24027455906398,52.81930446659096],[-127.2404375639796,52.819157040225775],[-127.24049107474158,52.81898387149138],[-127.2404856526436,52.81879731098673],[-127.24059630037608,52.81863922957551],[-127.24078654562905,52.818501601948256],[-127.2409992356027,52.81836934071711],[-127.2411903838376,52.818231146921626],[-127.24137398405597,52.81808910532116],[-127.24156327141984,52.81795092157976],[-127.24176955798984,52.81782208898351],[-127.24198521560615,52.817695963341315],[-127.24220943633503,52.817576462509244],[-127.2424451322498,52.817468612677935],[-127.24269907369049,52.817380743643184],[-127.24297790382577,52.817317833043944],[-127.2432634395154,52.81726156660054],[-127.2435412989106,52.81719754411988],[-127.2438172486695,52.81713129063248],[-127.24409610818518,52.81706949782429],[-127.24438091671124,52.817020526031065],[-127.24466860231661,52.81697488544179],[-127.24494828154786,52.81690915459248],[-127.24522493653701,52.816835609521945],[-127.24550855422495,52.816809619578855],[-127.24579844472747,52.816839611523896],[-127.24609258978533,52.816887481485864],[-127.24638519387685,52.81691463669183],[-127.246679416432,52.816901989929654],[-127.24697303148776,52.81686804463988],[-127.24726258788567,52.81682294266086],[-127.24754053503094,52.816761707197585],[-127.2478048210712,52.816678756117554],[-127.2480652902543,52.816591926677056],[-127.24833445648852,52.816516777084125],[-127.24861034676687,52.81644939200329],[-127.2488921368204,52.81639259562092],[-127.2491809958976,52.81635534189435],[-127.24947677639054,52.81633257527561],[-127.24977071362792,52.81630983649949],[-127.25006562124226,52.81628876337438],[-127.25035949363632,52.81626433811619],[-127.25065234560722,52.81623656057406],[-127.25094504930011,52.81620373576886],[-127.2512366341413,52.81616420628714],[-127.25148740433545,52.81625455981008],[-127.2517129989346,52.81637320140784],[-127.25199446989947,52.816496285761964],[-127.25227595880563,52.81658799566597],[-127.25245765524515,52.8166359285142],[-127.25275049122162,52.81657564256029],[-127.25299778163392,52.81680052672039],[-127.25368023104144,52.817064475046244],[-127.25390096951237,52.81720726615709],[-127.254290829569,52.81728659659792],[-127.25467690981996,52.81739511607208],[-127.25526978753248,52.81755129445637],[-127.25568165407618,52.817620297740916],[-127.25579434017031,52.817596676166374],[-127.2558612415404,52.8175012568182],[-127.25590937855618,52.817368486696445],[-127.25615548333519,52.81729972579766],[-127.25630141106683,52.81720569311447],[-127.25649807883987,52.81706741463657],[-127.25668917080256,52.816929186530274],[-127.25688596801832,52.816795389192286],[-127.25712402109662,52.816674034472946],[-127.25735536664169,52.81657740885106],[-127.25761964733117,52.816494435507344],[-127.25787914258025,52.816407038571185],[-127.25810145575882,52.81628809206965],[-127.25836196767504,52.81620348066998],[-127.25862815336005,52.81612272618365],[-127.25887606639735,52.81602088066357],[-127.25912884549963,52.81592626317246],[-127.25940706884157,52.81587563956606],[-127.25970379367288,52.815853401834424],[-127.26000045204674,52.81582892244576],[-127.26028817753459,52.815784928548375],[-127.26057086924756,52.815728094214556],[-127.26083716375808,52.815651260763154],[-127.26108321049375,52.81554942154543],[-127.26133118056207,52.815449811709755],[-127.26157437913052,52.815345760411496],[-127.26178634905008,52.81522299949833],[-127.26196513239807,52.81507816982354],[-127.26214677549166,52.81493555968545],[-127.26233126136565,52.81479459539929],[-127.26252612322651,52.814659123242485],[-127.26273512660244,52.81453077938728],[-127.26298124536349,52.81443174173371],[-127.26325129142288,52.81435598305183],[-127.26352716090108,52.81428912753131],[-127.26382232071283,52.81424560067094],[-127.264101513855,52.814196640963225],[-127.2641965189639,52.814141262917175],[-127.26423434128799,52.81403774095201],[-127.2642522488752,52.813858218322636],[-127.26427761941795,52.813679171205344],[-127.26455734667469,52.81349178888511],[-127.2647512407941,52.81335520239554],[-127.2649169179164,52.81320771153691],[-127.26504875103568,52.813046570562435],[-127.2651683667435,52.81288108682387],[-127.2653001830419,52.81271994569324],[-127.26546110237202,52.81256858688956],[-127.26563415397524,52.812418773750125],[-127.26581945577608,52.81227498819912],[-127.26602000161904,52.81214393172958],[-127.26613701157201,52.8120787832138],[-127.26624541325859,52.812036708592366],[-127.2665347003084,52.81198427150502],[-127.26683004062139,52.81194745974334],[-127.26712680079963,52.81192744410143],[-127.2674127029512,52.81188624950337],[-127.26768275831843,52.8118116009572],[-127.26794889898851,52.811730825108675],[-127.26822378936382,52.81166284793872],[-127.26849966529578,52.811596545164946],[-127.26876777761558,52.81151967344035],[-127.26903103515205,52.811435563805794],[-127.26929819069959,52.811357580371165],[-127.26957603732335,52.81129517206974],[-127.26985681257352,52.8112377795618],[-127.27013954464634,52.811183718672815],[-127.27042326444266,52.81113189699768],[-127.27070887278481,52.81108061010496],[-127.27099357745477,52.81103045310908],[-127.27127826463916,52.810979730712496],[-127.27156490935835,52.810932357820505],[-127.27185444944247,52.810888871214615],[-127.27215192393598,52.8107993444527],[-127.27245903996896,52.81069065852216],[-127.27266226251196,52.810681730162905],[-127.27300592138417,52.81070770033267],[-127.27329672900436,52.810675404540845],[-127.2735882570976,52.810636375309166],[-127.27388440128172,52.810627001353254],[-127.27417187488182,52.810669834247165],[-127.27444264558322,52.81074478659132],[-127.27468273592551,52.81084977764202],[-127.27489554755604,52.81097523921408],[-127.2750892122016,52.81111268147133],[-127.27530018336537,52.81123816231055],[-127.27552576927718,52.811355638233955],[-127.27575496965306,52.81146914710123],[-127.2759859976227,52.81158207973245],[-127.27622157839042,52.81169159996118],[-127.2764662486393,52.81179429597332],[-127.2767191037069,52.811890742444874],[-127.2769843465445,52.811966869946176],[-127.27728055169123,52.81199054644947],[-127.27756644826948,52.81204235481973],[-127.2778544550949,52.81210255012872],[-127.27812525621061,52.812177493746645],[-127.27835140550438,52.81228207326972],[-127.2785055881482,52.812435066506126],[-127.27864803864432,52.81259939550769],[-127.27883526082421,52.81273801368535],[-127.27904173312625,52.81286802015665],[-127.27926005754402,52.81299061627063],[-127.27948748587917,52.813106378879255],[-127.27972676628715,52.81321473100933],[-127.27998144659563,52.81331002982053],[-127.28024939757698,52.81338275805345],[-127.28054193211676,52.81340758728509],[-127.28084162975142,52.81342337109589],[-127.28112474410544,52.81347464533961],[-127.28140267382294,52.8135394163351],[-127.28167973344503,52.81360588188767],[-127.28196112667487,52.813661656191094],[-127.28225351253214,52.81368143465211],[-127.28255204067052,52.81368938118307],[-127.28284640291682,52.813713063916786],[-127.28314079916952,52.81373786636024],[-127.28343434160108,52.81376491903793],[-127.28372703237514,52.81379478682438],[-127.2840179834415,52.8138285912915],[-127.28430592700145,52.813885965100326],[-127.28446810041254,52.81402541340967],[-127.2845754969877,52.8141973997786],[-127.28468366437043,52.8143643384124],[-127.28474022888346,52.81454529155972],[-127.28480133022552,52.81472283255578],[-127.28494973473695,52.814868034969294],[-127.28518453627099,52.81498090840593],[-127.28542399361343,52.81509429528349],[-127.28560939287665,52.815233487648186],[-127.28575631300423,52.815390469386735],[-127.28586924176159,52.815560717176034],[-127.28600317696379,52.815718970623124],[-127.28622133122651,52.81583426602099],[-127.28647977447592,52.81593006559409],[-127.28670631861934,52.8160463889648],[-127.28692469589627,52.81616896144516],[-127.2871448670662,52.81628983711238],[-127.28737593232466,52.816401626365696],[-127.28762330085512,52.81649978654364],[-127.28788427535139,52.81658658876986],[-127.2881488150125,52.81666831211127],[-127.28841337246153,52.81675059059282],[-127.28867789710273,52.81683174802933],[-127.28894424698986,52.81691176401845],[-127.28921235442827,52.81698839765959],[-127.2894831558365,52.81706163865396],[-127.28976676355211,52.81712856935027],[-127.2900545560585,52.817148943998035],[-127.29034900920287,52.817113203921934],[-127.29062277588355,52.8170390268713],[-127.29086033786324,52.816934976305454],[-127.29108346444505,52.81681483665648],[-127.29131035687992,52.81669634084114],[-127.29155923537245,52.816598333282634],[-127.2918385515006,52.816522962468724],[-127.29211130528401,52.816445986469894],[-127.29233762960553,52.81633982383139],[-127.29250714040198,52.81619841120996],[-127.29264636401075,52.81603940774207],[-127.29277419863452,52.81587211889871],[-127.29290958522493,52.81570922997604],[-127.29307326315066,52.81555947902684],[-127.29326707738261,52.81542340153323],[-127.29347222328728,52.815292811882145],[-127.29366886342034,52.815157823352536],[-127.2938532312861,52.81501680972583],[-127.29403384601616,52.814874160414995],[-127.29421631950252,52.81473204623134],[-127.29440637442703,52.81459433140786],[-127.29461151485374,52.81446429560046],[-127.29482890813664,52.814339728341075],[-127.29504255024928,52.81421408122337],[-127.2952383100382,52.81408078528732],[-127.29540008360948,52.81393048689924],[-127.29552234446234,52.813763821055154],[-127.2955998460749,52.813592600951075],[-127.29559713131741,52.813411058040245],[-127.29561301483979,52.81323043063505],[-127.29562792556104,52.81304812822935],[-127.29564844412089,52.812866893682546],[-127.29569512583551,52.81269040950088],[-127.29578482736173,52.8125229728382],[-127.29592412653993,52.81236676157493],[-127.29609238429481,52.81221583444675],[-127.29626156235881,52.81206489688559],[-127.29640639783193,52.811907503001926],[-127.29652406497561,52.81174312817337],[-127.29663048181042,52.81157550605556],[-127.2967321948836,52.811406259033404],[-127.29683765481582,52.81123753538974],[-127.2969543649567,52.81107260569991],[-127.29707950985711,52.81090982429493],[-127.29720840345499,52.810748122118646],[-127.29734010708972,52.81058694463956],[-127.29747366981911,52.810426311327575],[-127.29760724640573,52.81026567768254],[-127.29774174344332,52.81010503368002],[-127.2978743817015,52.80994441005086],[-127.29800514430435,52.80978325105989],[-127.29812932794059,52.8096199140503],[-127.29825444720315,52.80945657549837],[-127.29838708151807,52.809295951222666],[-127.29852627531082,52.80913693094649],[-127.29867768936091,52.80898282344605],[-127.29884316412642,52.80883304341041],[-127.29901620290012,52.80868710676105],[-127.29919394524545,52.808543350443664],[-127.29937543616704,52.808400682118815],[-127.29955598932564,52.80825801490445],[-127.2997403228157,52.808116991240134],[-127.29991899895353,52.80797378827286],[-127.30007130600028,52.80781854804053],[-127.30015435157846,52.80764726253572],[-127.30016557696275,52.80746668521139],[-127.30011176755929,52.80728627242871],[-127.30019494609215,52.80711890375842],[-127.30031631765293,52.80695503920083],[-127.30045539658322,52.806793219922085],[-127.30059830696102,52.806634720467294],[-127.30075435847199,52.80648112335866],[-127.30093583514135,52.80633844346738],[-127.30113053590165,52.80620290650979],[-127.30133750520513,52.806073402190435],[-127.3015615352283,52.80595547246613],[-127.30180645645304,52.80585188130231],[-127.30206269492369,52.80575432410802],[-127.30231519802369,52.80565569592742],[-127.302547880081,52.80554719077198],[-127.30274843555273,52.805421117501815],[-127.30290742239312,52.8052725239329],[-127.30303712986112,52.80510856364059],[-127.30315180258981,52.804938601095564],[-127.30326467068107,52.80477090907583],[-127.30334859951591,52.80459849012717],[-127.30342598232319,52.80442445807405],[-127.30352299809893,52.8042547001413],[-127.30362466641529,52.80408544634695],[-127.30372822325721,52.80391672738691],[-127.30383084337713,52.803748027682424],[-127.30393065177955,52.80357879420607],[-127.30402578890103,52.80340849169831],[-127.30411253984533,52.80323716145613],[-127.30418153407565,52.80306266598422],[-127.3042318504956,52.80288501555276],[-127.30427749819393,52.80270685206919],[-127.30433623118988,52.80253079372088],[-127.30441449328355,52.80235563009192],[-127.30452647951667,52.802189623013696],[-127.30469754817676,52.80204201301917],[-127.3049272548602,52.801927940499326],[-127.30519051900752,52.8018482310592],[-127.30546806512953,52.80178013533591],[-127.30574085449794,52.80170817344794],[-127.30599630919552,52.801616219908226],[-127.3062307490078,52.80150545455754],[-127.3064422645645,52.80137420407633],[-127.30668273679446,52.80127849736595],[-127.3069743222331,52.80124386661824],[-127.30727399064543,52.80123099683868],[-127.30757064546398,52.80124058549251],[-127.30783443207548,52.800935576766705],[-127.30799522485965,52.800786399429064],[-127.30820226926859,52.8006613555547],[-127.3084470926581,52.80055607398443],[-127.30869866554502,52.80045911837128],[-127.30895889703343,52.80037215311139],[-127.3092220066502,52.80028795274491],[-127.30947749703412,52.80019767670053],[-127.30972889363694,52.800095116603735],[-127.30991271019819,52.80000003542396],[-127.30995479300734,52.799978834662305],[-127.3100072828355,52.79981236517065],[-127.30996199793852,52.79963857652149],[-127.3101897119569,52.7993698402856],[-127.31033821906496,52.79921406263873],[-127.31051878286385,52.79907418332299],[-127.31072282701194,52.798942452153966],[-127.31094198595798,52.798818953511194],[-127.31117445416854,52.79870539322532],[-127.31141755645717,52.7986051636274],[-127.31168267968741,52.79852653914424],[-127.31196019386965,52.79845842792051],[-127.31223197809658,52.79838477593144],[-127.31248648023897,52.798293383242495],[-127.31273138282396,52.79819145392567],[-127.31297245126729,52.79808619550751],[-127.31321544244219,52.797982600791734],[-127.31346612222363,52.797887886175445],[-127.3137379346927,52.79781535112214],[-127.31400969690354,52.79774169515131],[-127.31427670198636,52.797664173378095],[-127.31454368871638,52.79758608628625],[-127.31480873086933,52.7975052137865],[-127.31506986795219,52.79741822431919],[-127.31533492546085,52.79733791532933],[-127.31562054303987,52.79729156522003],[-127.3159164321708,52.79727759453807],[-127.31621259511273,52.79727203080444],[-127.31650976564597,52.79726926159502],[-127.31681129505034,52.797257467039316],[-127.31711198964766,52.7972484876573],[-127.31738554685506,52.797293056517816],[-127.31763016441434,52.79739342676641],[-127.31786962641334,52.79750730448058],[-127.31812516472178,52.79760026111181],[-127.31838606854136,52.79768644083965],[-127.31865148781979,52.79776864182813],[-127.31892044696824,52.79784463333652],[-127.31919465267518,52.79791048666665],[-127.31948658064618,52.797948110131344],[-127.31978023044822,52.797981795055136],[-127.32003907488509,52.79806126928357],[-127.32026571954842,52.79818089056809],[-127.32054504818923,52.798231547325564],[-127.32084041939613,52.798260726892366],[-127.32113051143241,52.79829893187266],[-127.32140565924156,52.79836476051333],[-127.32167016734853,52.79844696501216],[-127.32194889299333,52.79850827770193],[-127.32222577938562,52.79857016639921],[-127.32247954567033,52.798665375308964],[-127.32273501431325,52.79875552519381],[-127.32301367407216,52.79881459444712],[-127.32330387834405,52.79885671129245],[-127.32359309279913,52.798896605879975],[-127.32388411282574,52.7989347936452],[-127.32417662569028,52.79896119055169],[-127.32447337278631,52.798974097831994],[-127.32477071090833,52.79897634523397],[-127.32506673054387,52.798966277539655],[-127.32535950194195,52.798941109971715],[-127.32565103901408,52.79890587702509],[-127.32594160447076,52.79886952452151],[-127.32623423577348,52.798839881946854],[-127.32653105095613,52.798825318191],[-127.32682692987285,52.79881076426966],[-127.3271166596707,52.79877722486918],[-127.32740317773434,52.79873027099957],[-127.32768671010342,52.79867718110168],[-127.32797020449891,52.798622414161215],[-127.32825172149738,52.79856430638899],[-127.328530302552,52.79850119187397],[-127.32881389929561,52.798449784227294],[-127.32910769076207,52.798427958204705],[-127.3294085481175,52.79842399380748],[-127.3297034496033,52.79840775791637],[-127.32998432080734,52.79835861998588],[-127.33026199407861,52.7982960675346],[-127.33053662886698,52.798225702980304],[-127.33080640271677,52.79814866785462],[-127.33107325747017,52.79806718184284],[-127.33133441739126,52.7979818413641],[-127.33159925550399,52.797895328734086],[-127.33187053064064,52.797806509701054],[-127.33213040153184,52.79770996464197],[-127.33236386588604,52.797600277715794],[-127.33255492241769,52.79747145272826],[-127.33269798230606,52.797322997427464],[-127.33280804051783,52.79715866011547],[-127.33289645053999,52.796985045927286],[-127.33297540184876,52.79680649979678],[-127.33305809904458,52.796628466962396],[-127.33315489173732,52.79645587809439],[-127.33327983818722,52.796292491870425],[-127.3334376088622,52.79613938492979],[-127.33362080716277,52.79599719715642],[-127.33380662240283,52.79584937509784],[-127.3339971067533,52.795702620471474],[-127.33419814659622,52.79556695391573],[-127.33441845404808,52.79545292879728],[-127.33466298203273,52.79537112324596],[-127.33494204049616,52.79532423537189],[-127.33524327109141,52.79530343882902],[-127.33555339114585,52.79529934402581],[-127.3358572466327,52.79530260971023],[-127.33615195964204,52.795311027017775],[-127.33644613706032,52.795331770020425],[-127.33674057794079,52.79536092011138],[-127.33703332010471,52.795395137114795],[-127.33732515901092,52.79542991962795],[-127.33761344477179,52.7954703461584],[-127.33790011683821,52.79551807140164],[-127.33818590636055,52.795567491768594],[-127.33847343089892,52.7956129731746],[-127.33876550348327,52.79565559538608],[-127.33905757380074,52.795697651995475],[-127.33934786069833,52.79574253484105],[-127.33963183141418,52.795793093324754],[-127.33990769921536,52.79585158959061],[-127.34016285391033,52.79593106195452],[-127.34035674806822,52.796071194435335],[-127.34057045647579,52.79619148090873],[-127.34068583220147,52.79637510213577],[-127.34077533840428,52.79653380432677],[-127.3408866358971,52.79667600064815],[-127.3410611799188,52.79685053441994],[-127.34118652029437,52.797026195303296],[-127.34126072597253,52.79720019892708],[-127.34131365227898,52.797376687454424],[-127.34135269547367,52.79755502041337],[-127.34139366631868,52.79773556402766],[-127.34117288277453,52.79798187626584],[-127.34112453011105,52.7981578367015],[-127.34108274062123,52.79833597273185],[-127.34104655484039,52.79851460061339],[-127.34101221115557,52.79869320740585],[-127.34099183928247,52.79887277532459],[-127.34100211966148,52.799051992893226],[-127.34102540368238,52.79923161775856],[-127.34105627689054,52.7995047508018],[-127.34110462490882,52.79968353319682],[-127.3410542897115,52.799855597575025],[-127.34096592815767,52.80000007541473],[-127.34095000415493,52.80002548086089],[-127.34088583326383,52.80020050085987],[-127.34086174547991,52.800380111030655],[-127.34087851892943,52.8005592542333],[-127.34093608375406,52.80073568956877],[-127.3410241471999,52.80090729293237],[-127.34109835896044,52.801081296220886],[-127.34114295901131,52.801259000433944],[-127.34116254521632,52.80143867626712],[-127.34116539999042,52.80161853434905],[-127.3411543143246,52.8017979958077],[-127.34110786759112,52.801975619713374],[-127.34097354186652,52.8021357584833],[-127.34092058275934,52.80231289178193],[-127.34085920474689,52.80248844445496],[-127.3407351904529,52.80265182756593],[-127.34061868989167,52.80281735739093],[-127.34056569615935,52.80299393488313],[-127.34058529817989,52.80317416634843],[-127.34077814971738,52.803309826414115],[-127.34104180443748,52.803391997507575],[-127.34130903718942,52.803470208657345],[-127.34154036517758,52.8036177569263],[-127.3417359976516,52.80375281874003],[-127.34189957316772,52.80390226181298],[-127.34203560733694,52.80406267210795],[-127.34213119735186,52.80423643000365],[-127.34230919857313,52.8043722574172],[-127.34254586322618,52.80448219002542],[-127.3427862117847,52.80459152407156],[-127.34301926986055,52.80470486849505],[-127.34322032608102,52.804834826477574],[-127.34334444239845,52.80499984606026],[-127.34336315612272,52.805181207981434],[-127.34343629013146,52.8053501825439],[-127.34362202729399,52.80549488612885],[-127.34385778311525,52.8056053914308],[-127.3441300739358,52.80569585861493],[-127.34437657198441,52.805793354668275],[-127.34450181216668,52.80593482249007],[-127.34449298510182,52.80612658727367],[-127.34459711787619,52.806305849422316],[-127.34473899552026,52.806385489115485],[-127.3450293442267,52.80640009510863],[-127.34524151879317,52.806381406433935],[-127.34566654318391,52.806512155170935],[-127.34595896557998,52.8065043182948],[-127.34625759670976,52.80648688680443],[-127.34655100534005,52.806509855762314],[-127.34684293091647,52.8065451792219],[-127.34709754360877,52.80660502386639],[-127.34738180789994,52.806662285845775],[-127.34769314106536,52.806694012891214],[-127.34799072886106,52.80670236831688],[-127.34828421067172,52.80672757380726],[-127.34857351931433,52.806767962357135],[-127.34885202098923,52.80684882468253],[-127.34915091795244,52.806868926479034],[-127.3493805885298,52.80684498989001],[-127.34974422120725,52.80688508584799],[-127.35004009456325,52.80689793021266],[-127.35035171519327,52.8069094807619],[-127.35063100905796,52.80686815809411],[-127.3509365037123,52.80683269328794],[-127.35128453217234,52.80684942644668],[-127.35152018282761,52.80686744387379],[-127.35225193133685,52.80697166341709],[-127.35287392732808,52.80692582109715],[-127.35323978059307,52.80685995661054],[-127.35385145820167,52.80681087449924],[-127.35451101394597,52.806806626216655],[-127.35487186319635,52.806905013315394],[-127.35528906016565,52.80687610233393],[-127.35555790469525,52.80679845668388],[-127.35570829300602,52.806648212238706],[-127.3558367914067,52.806481398866936],[-127.35599644480176,52.80632992610923],[-127.35617301363334,52.8061849737195],[-127.35632233388876,52.80603025734644],[-127.35645470348352,52.80586844672011],[-127.35657392679522,52.80570230451191],[-127.35667262701733,52.805533592827224],[-127.35672092396106,52.80535762682968],[-127.35673746417169,52.805176414759934],[-127.35680440688793,52.805002474792474],[-127.35690586267731,52.80483261010093],[-127.35699051428773,52.80466070689278],[-127.3570592767684,52.804485615845415],[-127.357146720743,52.80431368017847],[-127.35726130073654,52.804147590724874],[-127.3574040121235,52.803990142486924],[-127.35755705285794,52.803835937085346],[-127.35769509025148,52.80367742166429],[-127.35782183934543,52.803514553289254],[-127.35795419545991,52.803352740708384],[-127.35810052446813,52.803191887078654],[-127.35817129799145,52.80302182015006],[-127.35818144759621,52.80284460893471],[-127.35816923368189,52.802664849944605],[-127.35814488593972,52.802483554587845],[-127.35811960227208,52.80230227003946],[-127.358100880738,52.802122595270916],[-127.35807754099291,52.801943529871075],[-127.35805232920272,52.80176448611458],[-127.35802897189683,52.801584855964286],[-127.35800561788825,52.80140579065968],[-127.35798040390169,52.80122619091751],[-127.35795519294224,52.80104714705688],[-127.35793461502219,52.8008674846475],[-127.35792056333561,52.800688311595806],[-127.35791576587162,52.800508475484605],[-127.35791466202929,52.80032746679183],[-127.35791909759935,52.800145838029486],[-127.35793211740453,52.79999997705131],[-127.35793566662362,52.79996575457905],[-127.35796810093058,52.79978772021805],[-127.35802482534703,52.79961445299462],[-127.35813657829138,52.79944783877499],[-127.35828480382428,52.79928863918349],[-127.35843966411822,52.79913385492417],[-127.35859627332124,52.798975678666096],[-127.35877460684073,52.798829023993385],[-127.35899109736238,52.79871331086585],[-127.35924666935706,52.798629093279544],[-127.35952320478712,52.79856143599996],[-127.3598073646742,52.79849985885094],[-127.36008763083692,52.7984327218864],[-127.36034878839027,52.798348993033805],[-127.36060019468005,52.79825080560586],[-127.3608428421128,52.79814038985126],[-127.361061869954,52.798017362269555],[-127.36124608094238,52.797880158174536],[-127.36138318508267,52.797722769100666],[-127.36149010579848,52.797550603086336],[-127.361587599668,52.797374618881165],[-127.36170113629946,52.79720629433495],[-127.36185242296106,52.79705658595747],[-127.36204996709137,52.79692987825025],[-127.36227581730445,52.796817412603254],[-127.36251960276326,52.79671370503403],[-127.3627728515917,52.796615491279454],[-127.36302891014866,52.7965178002592],[-127.36327923844865,52.79641570080048],[-127.3635144725641,52.79630592127233],[-127.36373167969269,52.796184586318226],[-127.36393558163725,52.79605388284873],[-127.36413001747154,52.79591767582991],[-127.36431686265634,52.79577651737526],[-127.3644999565821,52.79563428137063],[-127.36467931731794,52.79549153253373],[-127.36485301589109,52.79534604264777],[-127.36502294523197,52.79519891056751],[-127.36519002676127,52.79505013455365],[-127.36535616824742,52.794900813270324],[-127.36552326230645,52.79475203658032],[-127.36569410808022,52.79460489275019],[-127.36586590669586,52.79445830246103],[-127.36603674719444,52.794310602193676],[-127.36620290062211,52.794161835376855],[-127.36636155303539,52.79401091394839],[-127.36649388319725,52.793850211178395],[-127.3665868562794,52.793678758139244],[-127.36665181213685,52.7935025920154],[-127.36665063881375,52.79332102701874],[-127.36660563603616,52.793133803387065],[-127.36661037143573,52.792962257224126],[-127.36681078621821,52.79283943482036],[-127.36710050435568,52.79277889531389],[-127.36739407592196,52.79275193586531],[-127.36769047590259,52.79272606355958],[-127.36797596957504,52.79267845648469],[-127.36825737512365,52.79261969678376],[-127.36853203629968,52.792553160107154],[-127.36877396116752,52.792450581357954],[-127.36882967504079,52.79227619839639],[-127.36880811674472,52.7920959918824],[-127.36883669947257,52.791915765203306],[-127.36891289246239,52.791742819972754],[-127.369015225844,52.791574062009154],[-127.36912595764102,52.791406317802064],[-127.36924698413777,52.79124125993119],[-127.36938304461079,52.79108163070426],[-127.36953509589628,52.790928539757374],[-127.36970309899246,52.79078031067977],[-127.36988146471505,52.79063643479178],[-127.37006731409429,52.790494721886816],[-127.37025416971292,52.79035522965796],[-127.37046932675518,52.79022942169487],[-127.3706817227775,52.79010421048687],[-127.37082255283728,52.789949007075414],[-127.3709417296331,52.789784524736945],[-127.37105243138639,52.7896162227782],[-127.37116501022189,52.78944901960561],[-127.37129449438602,52.78928722297475],[-127.37144096195632,52.789134194498594],[-127.37170515350387,52.78885818033381],[-127.37184871425062,52.7887012577662],[-127.37201013720299,52.788550860206215],[-127.3721922387171,52.78840862247654],[-127.37237339990769,52.78826583052414],[-127.37253761497001,52.78811595543552],[-127.37266710804253,52.787954721851335],[-127.37274136782315,52.78778011923792],[-127.37282685743398,52.787608182793136],[-127.3729393520035,52.78743873681779],[-127.37308005400875,52.78727961319206],[-127.37327553996118,52.78714954636824],[-127.37351540382696,52.78704193275388],[-127.37376377362271,52.7869387114261],[-127.37398474345824,52.786821230324264],[-127.37411880729856,52.786658255572505],[-127.37417447392075,52.786483313677046],[-127.37420115538468,52.7863025420828],[-127.37421022334033,52.78612253276526],[-127.37421651390608,52.78594256493168],[-127.37421905804216,52.78576207605394],[-127.37421511123829,52.785581663202905],[-127.37420099629804,52.78540249032505],[-127.37417296701925,52.78522403639267],[-127.37411797341463,52.78504478643807],[-127.37402510651363,52.78487157547477],[-127.37386363340484,52.78473056122488],[-127.37365430628269,52.784603548613404],[-127.37342758422365,52.78448402942506],[-127.37322189778939,52.784354175741605],[-127.37304828185928,52.78421106081339],[-127.37306919797263,52.783995045015665],[-127.37335189160564,52.783920564823546],[-127.37357383687228,52.78380475845447],[-127.37374174374912,52.78365483775902],[-127.37389553749071,52.78349947778834],[-127.37403436610012,52.78334036539358],[-127.3741722582547,52.78318127274452],[-127.3743374043637,52.78303250429424],[-127.3745232746709,52.78289245963795],[-127.3747109854541,52.7827523930879],[-127.37488365905186,52.78260633323723],[-127.37505253170605,52.78245808490093],[-127.3752157760303,52.78230765158831],[-127.37536963170969,52.78215453043599],[-127.37551034333843,52.78199652379108],[-127.3756369601942,52.78183363388453],[-127.37575326755963,52.78166805809431],[-127.37586302974299,52.781500882125854],[-127.3759643903243,52.78133212777749],[-127.37605448782931,52.78116013389314],[-127.37614741312082,52.78098923656602],[-127.37625626911634,52.780822626700555],[-127.37640542800132,52.780667882231654],[-127.37657048441193,52.78051686950394],[-127.37669995714334,52.78035618640965],[-127.37679940401928,52.7801863237717],[-127.37689416243973,52.78001483924607],[-127.37700955739992,52.779849837528204],[-127.37715308660037,52.77969347225208],[-127.37730973616364,52.77954088021164],[-127.37747294347628,52.7793898877301],[-127.37763615270511,52.77923945092188],[-127.37779373449716,52.779086847199046],[-127.37793911464392,52.77893045907345],[-127.37806385678262,52.77876758803276],[-127.37817079228549,52.7785998776913],[-127.37827397500965,52.77843053450718],[-127.37838463976337,52.77826334500404],[-127.37851689415392,52.77810319173102],[-127.37866976596447,52.777948956206785],[-127.3788357573952,52.7777984847651],[-127.37900645028179,52.77764964356536],[-127.37917152201011,52.77749974732554],[-127.37932440753013,52.777346075592106],[-127.37945391441778,52.77718706531233],[-127.37954961243497,52.77701668792098],[-127.3796107045828,52.77683831549317],[-127.37964202309526,52.77665804258124],[-127.37964093666513,52.77648040159305],[-127.37960081737847,52.776302089956914],[-127.37954584528141,52.77612339706945],[-127.37950295006823,52.775945126990315],[-127.37946463398201,52.775765117219386],[-127.37946538631267,52.77558688958424],[-127.37950229142955,52.775407115759116],[-127.37956527357969,52.7752298328145],[-127.37966662599547,52.77506219519733],[-127.37981102873434,52.77490469472412],[-127.37997783466844,52.774751413894876],[-127.38014188049736,52.77459872123808],[-127.38028072961242,52.77444185038469],[-127.3803626308418,52.77427555288927],[-127.3803586953587,52.774096259339366],[-127.3803267547666,52.773912255981436],[-127.38032554183147,52.773731244545914],[-127.38033924734897,52.7735517432705],[-127.3803594418043,52.77337216558411],[-127.38041519212067,52.77320113629787],[-127.3804407372609,52.77301477030891],[-127.3804442804616,52.77283707436273],[-127.38040879097716,52.77265815211807],[-127.38035290266913,52.77248002593804],[-127.38027766352373,52.77230661997528],[-127.38014612936462,52.77214339954106],[-127.38000726222775,52.771983062963635],[-127.3799794349089,52.771811340516656],[-127.38004042720839,52.7716301616496],[-127.3799738067493,52.771349605831475],[-127.37997635849722,52.77116967067556],[-127.37999840938492,52.77099007092661],[-127.3800204783251,52.77081103585955],[-127.38002211264921,52.77063167635605],[-127.38000794521497,52.770451937892645],[-127.37998636902944,52.770272295573065],[-127.37996385731478,52.770092655274034],[-127.37994507599853,52.76991353596962],[-127.37993555678624,52.76973375167966],[-127.37993811198713,52.769554381216125],[-127.37994996182937,52.76937490133804],[-127.37996920230894,52.76919476952833],[-127.37999498233921,52.76901569056679],[-127.38002542737374,52.76883711262294],[-127.3800660903033,52.7686589703313],[-127.38011979878746,52.768482360240164],[-127.38017813919528,52.76830569557291],[-127.38023182882256,52.76812852964505],[-127.38027436435854,52.76795093005814],[-127.38031037514698,52.76777228636837],[-127.38034080313088,52.76759370837157],[-127.38036843622653,52.76741459832599],[-127.3803802836684,52.76723511815218],[-127.38037818667027,52.767055246179],[-127.380377009904,52.76687535438301],[-127.38037028074454,52.766695536906205],[-127.38035333681617,52.76651583070829],[-127.38032898794675,52.76633677659514],[-127.38030183017335,52.76615719957227],[-127.38027005846256,52.76597823280214],[-127.38023181706335,52.7657998981296],[-127.38018525393588,52.765622791243665],[-127.38011372088998,52.765448775990585],[-127.38001539551159,52.76527843870517],[-127.3799124930185,52.76510983203972],[-127.37980035204592,52.764943019812364],[-127.37969010078903,52.764776750154375],[-127.37959361617152,52.76460582589069],[-127.37951187010293,52.764431374430636],[-127.37943194398828,52.764255771638574],[-127.37934654188147,52.764083039896406],[-127.37924465588931,52.7639172273042],[-127.37908216481682,52.76377174748136],[-127.37882107476058,52.76367730189197],[-127.37853820946069,52.76362738212278],[-127.37824725476293,52.763585411918456],[-127.37795891070724,52.76353779693804],[-127.37768215272497,52.763475482607696],[-127.37742133826478,52.76338943282781],[-127.37716847122,52.76329096838627],[-127.37694293204845,52.76317592516494],[-127.37675382517435,52.763039712870416],[-127.37658749019127,52.76288979126265],[-127.37642295778,52.76273816244753],[-127.37623655537305,52.762599119847394],[-127.37599172870566,52.76249046161047],[-127.37576625117046,52.76237710123405],[-127.37567739060053,52.762211688658795],[-127.37561315994907,52.76203310133036],[-127.37547805422916,52.761872723737554],[-127.37531543923963,52.76172274769998],[-127.37513448571343,52.76157972081831],[-127.37495996311445,52.76143436749766],[-127.37479639850432,52.76128384591855],[-127.37462096119883,52.76113906774478],[-127.37442725731121,52.76100347053849],[-127.37422715769544,52.76087075468138],[-127.3740197480401,52.760742042773714],[-127.3738041588414,52.76061846585028],[-127.37357949117641,52.76050116424964],[-127.3733475464497,52.76038843100911],[-127.37311106157414,52.760278557187206],[-127.3728764004978,52.7601680966099],[-127.37264631499468,52.76005534022533],[-127.37238491993517,52.75995023121164],[-127.37222071965392,52.759808124607865],[-127.37204347755056,52.75966448461932],[-127.37187807116207,52.759513415625875],[-127.3716693592885,52.759372385138214],[-127.371500136319,52.75924714953673],[-127.37131614557958,52.75909574123409],[-127.37109419344215,52.75897559646816],[-127.37085597745022,52.75886965700855],[-127.37060873363097,52.75877111285271],[-127.37035605300044,52.75867710630591],[-127.37009974944486,52.75858539230051],[-127.36984348586482,52.758495354115254],[-127.3695835990281,52.758407599476946],[-127.36931106894315,52.75833120079266],[-127.36907757887141,52.75822744432512],[-127.36891309104307,52.75807580450621],[-127.36876874532364,52.75791551814664],[-127.36860988014249,52.75776549804744],[-127.36837273760266,52.75766345968021],[-127.36811464257363,52.757573439148544],[-127.36784925539943,52.75748798668362],[-127.36759026323462,52.75739909636411],[-127.36733491135388,52.75730792124954],[-127.3670804779306,52.75721617891606],[-127.36682601269824,52.757123871483614],[-127.36657156340823,52.75703156332012],[-127.36631981931001,52.75693698131261],[-127.36607344551263,52.756836166844714],[-127.36582168590927,52.756741028004434],[-127.36554926251569,52.75666741717289],[-127.36526330777414,52.756605737077585],[-127.36499373055874,52.75653377762519],[-127.36476202689963,52.756427194149246],[-127.36456340460342,52.756280985238405],[-127.36444581626435,52.75611534262657],[-127.36443574889279,52.75594508564563],[-127.36448574170768,52.755766848220134],[-127.36456349286851,52.75558603685126],[-127.36463484977054,52.75540867146566],[-127.36470723046605,52.755234091813406],[-127.36478706774096,52.75506054614752],[-127.3648659660874,52.75488644640805],[-127.36493557256415,52.75471246376441],[-127.36498467710402,52.7545353482014],[-127.3649872225677,52.754353735337624],[-127.36498140878722,52.75417166384601],[-127.36506868192431,52.75399858718975],[-127.365142154691,52.75382904280269],[-127.36529788857204,52.75367870707671],[-127.36549504310496,52.75354638763004],[-127.365733749413,52.75343712222804],[-127.36592319397836,52.75329592477191],[-127.36607782421726,52.75314000530457],[-127.36614385534648,52.75297053790056],[-127.36614830169228,52.75279002349347],[-127.36613780184668,52.752606885553035],[-127.36615894528899,52.752426176472],[-127.36626031397275,52.7522591036807],[-127.36643950462994,52.752116903848155],[-127.36663464993562,52.75198012210325],[-127.3668147044828,52.751836225755625],[-127.36697217001301,52.7516819486387],[-127.36712868161605,52.751527126449034],[-127.36730415594037,52.75138496850793],[-127.36753365910177,52.751278604194475],[-127.36780960643189,52.75120252625246],[-127.36805408924167,52.75109991364098],[-127.36827287313982,52.750977424560894],[-127.3684229486913,52.7508249174029],[-127.36854195392867,52.75065819234073],[-127.36872584732986,52.7505181755553],[-127.3689673008176,52.75040831501067],[-127.36920893220442,52.7503040473427],[-127.36930956131984,52.75014314949338],[-127.36938901151011,52.74995839541563],[-127.3694789975703,52.74978416209564],[-127.3695676095394,52.74962452526106],[-127.36961831393872,52.74944066283697],[-127.36975229531015,52.74927825379065],[-127.36992027732572,52.74913449326554],[-127.37013711891974,52.74900978129189],[-127.37039183313928,52.7489087296401],[-127.37066343501506,52.748842218517616],[-127.37095491945344,52.74881751201839],[-127.3712581778955,52.74881228708239],[-127.37155544268089,52.748794236787326],[-127.37183487590501,52.74874052598244],[-127.37210988208375,52.74866500448638],[-127.37236950427305,52.74857229316645],[-127.3726016980881,52.74846365408335],[-127.37276115041384,52.74831494963957],[-127.37288933501624,52.748145870295374],[-127.37308184964802,52.7480152772087],[-127.37331493728699,52.74790549628435],[-127.37356504627515,52.74780616832],[-127.3738246960989,52.74771457419365],[-127.37408636504668,52.74762856025758],[-127.37434995697085,52.74754420898922],[-127.3746173148053,52.747462045753366],[-127.37488947884677,52.7473848740013],[-127.37516380338839,52.74731720831806],[-127.37544034223954,52.747260715948386],[-127.37572647928525,52.74724278551767],[-127.37602643320541,52.747279615890704],[-127.37631543794309,52.74732217856124],[-127.37660194193518,52.7473737370445],[-127.37688671469883,52.74742867785375],[-127.37717220992143,52.74747744905963],[-127.37745997522067,52.7475104914229],[-127.37775238236283,52.74751434425656],[-127.37804858874928,52.747492362172906],[-127.37834459630245,52.747464221245686],[-127.37863892910501,52.74744170373568],[-127.3789322364724,52.747416399798496],[-127.37922555804354,52.7473910859885],[-127.37951895495463,52.74736857727102],[-127.37981445659375,52.747353333326544],[-127.38011015990408,52.747344802655974],[-127.38040591440216,52.747337400496136],[-127.38070844308237,52.74733887596004],[-127.38100805532683,52.74733646636663],[-127.38128493061839,52.74729060913309],[-127.38154299542171,52.74720798348412],[-127.38179216113744,52.74710864876502],[-127.38203833673025,52.74700318832267],[-127.38229045287059,52.74690885725036],[-127.38263982474146,52.7470106646498],[-127.38292099734475,52.747040408728125],[-127.38321787924774,52.747010568231964],[-127.3835068543053,52.746966239722404],[-127.38378899936222,52.74691134712232],[-127.3840720423345,52.74685532233153],[-127.38435728749997,52.746810479787634],[-127.38465544974605,52.746791829447176],[-127.3849503465564,52.74675808035963],[-127.38522051423057,52.74670612357977],[-127.385500225413,52.746661908572094],[-127.38573869689918,52.74654812006989],[-127.38594047593968,52.7464185075498],[-127.38608099458531,52.746259364043645],[-127.38623181568119,52.746103452188116],[-127.38640711354932,52.74595846845724],[-127.38658713084858,52.745816226351025],[-127.38677088967681,52.74567449562684],[-127.3869565420372,52.7455344280045],[-127.38714312806026,52.745394349008365],[-127.38734759644281,52.74526190425496],[-127.38755491122289,52.745131667209186],[-127.3877115241904,52.744982974959534],[-127.38781464591223,52.744815860744964],[-127.38789056940284,52.74463954540632],[-127.38795815244617,52.74446331981578],[-127.38800526210922,52.7442856598117],[-127.38802726541306,52.74410605536885],[-127.3880316367936,52.74392610379664],[-127.38802949042297,52.74374566447709],[-127.38803107178884,52.743565736944085],[-127.38804567362212,52.743386785016256],[-127.38807687766204,52.74320482965775],[-127.38812929526641,52.74301926025554],[-127.3882409646066,52.742858204575434],[-127.3884496364314,52.74274140029053],[-127.38872226515073,52.742651860116055],[-127.38899209990244,52.742561796442544],[-127.38917651035734,52.74244079479732],[-127.3891740680168,52.74225139156896],[-127.38917651002257,52.742069776713144],[-127.38917055823471,52.74188657551766],[-127.38916745080022,52.74170502641235],[-127.3891811488505,52.74152720567454],[-127.38925654105994,52.74136321617595],[-127.389481534876,52.741235572208325],[-127.3897049056522,52.74111466347491],[-127.3899188777273,52.74099051204703],[-127.39008483182353,52.74084450289951],[-127.39022348008791,52.74068593159587],[-127.39034991859347,52.74052302137789],[-127.39047536686219,52.74035844587629],[-127.39060929508027,52.74019768823969],[-127.3907760875453,52.740048870248266],[-127.39096261875623,52.739908219944155],[-127.39108537925375,52.73974647335577],[-127.39116318945626,52.73957180950704],[-127.39121117871137,52.73939301606795],[-127.39123860253935,52.739209427205935],[-127.39126136374018,52.73902532874432],[-127.39129726782512,52.738845557796765],[-127.39136130424306,52.73867554086207],[-127.39148815160584,52.73852551013402],[-127.39172191459143,52.738411208068406],[-127.39197818663713,52.738304475448],[-127.39222874797105,52.73819333545498],[-127.39246906025579,52.73808063087493],[-127.39256635634597,52.737934877726296],[-127.3924982000392,52.73775073851578],[-127.3924273609346,52.737569428914355],[-127.39240677848578,52.73739313546206],[-127.3924781319487,52.73721966799518],[-127.39256803363041,52.737046535956885],[-127.3926532875389,52.73687290310087],[-127.39270972984635,52.73669737085081],[-127.39271412052115,52.73651909462123],[-127.39268505350515,52.736338418325374],[-127.39265876079742,52.73615770005683],[-127.3926761515709,52.735979834164056],[-127.39278848303407,52.73581148369558],[-127.39295716346054,52.73566488123995],[-127.39313803191845,52.73552205226765],[-127.39332829948599,52.735383038859425],[-127.39352708281245,52.73524897238481],[-127.39373251228939,52.7351198660768],[-127.39394833337676,52.73499679624324],[-127.39416984130499,52.73487703],[-127.39439322385044,52.73475835294137],[-127.3946241292762,52.734642392629105],[-127.39473811843477,52.734383226715266],[-127.39482433298325,52.73421126621263],[-127.39491987003724,52.73404030655395],[-127.39498652771434,52.73386577199057],[-127.39500568918888,52.73368564245122],[-127.39501553837552,52.7335039379323],[-127.39505709815842,52.733328016277],[-127.39520851997717,52.7331642460469],[-127.39547829105915,52.733131324162834],[-127.39577681004094,52.733126646800265],[-127.39608507634095,52.733136424336195],[-127.3963851003912,52.73314966204033],[-127.39667773867461,52.73319213068768],[-127.39696779118876,52.73321221125075],[-127.3972580510996,52.73318184768254],[-127.3975468966915,52.733136372461644],[-127.39783556189407,52.733085850093225],[-127.39812438776305,52.733039808727185],[-127.39841271803556,52.73300722348062],[-127.39870045754466,52.7330133114989],[-127.39898632122238,52.733075475705185],[-127.39927503286958,52.733111259322],[-127.39957171510294,52.73310715019475],[-127.39986784746169,52.73308624219277],[-127.40000092255809,52.7330712009566],[-127.4001598487906,52.73305248785569],[-127.40044773732764,52.73300645193192],[-127.40072670421047,52.73294314336476],[-127.40098447987175,52.73285543647818],[-127.40121396354755,52.732725463822696],[-127.40144506346704,52.73261677764145],[-127.40170834542684,52.7326125066654],[-127.4019975504018,52.73269142828853],[-127.40229063330125,52.732719305783995],[-127.40259127620845,52.73269440917525],[-127.4028559518757,52.732619501481736],[-127.40309064547982,52.73250740621695],[-127.4033175491356,52.73238362971601],[-127.40355139372834,52.73227377650921],[-127.40381277951435,52.73221180097863],[-127.4041174609782,52.73222551899984],[-127.40441641420111,52.73223426528269],[-127.40471448830695,52.73224470719911],[-127.40501055727005,52.7322501238165],[-127.40530322977517,52.732237080882996],[-127.40558721449973,52.73218547443935],[-127.40587215511918,52.732134976738465],[-127.40616541134222,52.732111280438126],[-127.40646078322875,52.73209596933306],[-127.40675626172514,52.732083454000836],[-127.40705172521395,52.732070938101444],[-127.4073482337194,52.7320617716415],[-127.40764400673467,52.732058217837356],[-127.40793993069938,52.73205970110118],[-127.4082359618977,52.73206398909759],[-127.408532052121,52.73207051746542],[-127.4088274627359,52.73208434368618],[-127.40912302090898,52.73210264207937],[-127.40941769346934,52.73209405740514],[-127.40971085497206,52.73206754657206],[-127.41000067341955,52.73202427048658],[-127.41028974113578,52.73198659832096],[-127.41058274310679,52.73198363539056],[-127.41087918062031,52.73200024187768],[-127.41117549262147,52.73201348638406],[-127.41147450112193,52.732023890880654],[-127.4117658251844,52.7319979619642],[-127.41194108965811,52.73185630009916],[-127.4120504899487,52.73168627913642],[-127.41209750411986,52.731509172665],[-127.4121146787406,52.731326812320475],[-127.41212271521177,52.73114905474257],[-127.41217821464897,52.73100378750066],[-127.41221498081089,52.730825118573826],[-127.4122387111616,52.73064492091541],[-127.41225038151347,52.73046487759585],[-127.41223987094253,52.7302867785663],[-127.41214147982454,52.7301158995552],[-127.4121222300452,52.72992614069171],[-127.412258508757,52.729783818140305],[-127.41249800850181,52.72967780595012],[-127.41276479291783,52.7295837942622],[-127.41303388940023,52.72950320506638],[-127.41329175235238,52.72941995296455],[-127.41348291719245,52.72928257121654],[-127.41362697064076,52.729123348309564],[-127.41372154237179,52.72895406921245],[-127.41380017502638,52.72877937780634],[-127.41392087031198,52.72861482282385],[-127.41400145198591,52.728443470454714],[-127.41404751618315,52.72826580920198],[-127.41408983464721,52.72808707220794],[-127.41412846313466,52.72790894466594],[-127.41417267209023,52.72773130568599],[-127.41425515710173,52.72756105094819],[-127.4144436147128,52.72742650679493],[-127.41473133883797,52.727377074184496],[-127.41500359921828,52.72730877203604],[-127.41523933300239,52.727201678392724],[-127.41546351440576,52.72708182879642],[-127.41568677877429,52.72696255477415],[-127.41592794157539,52.726851475319314],[-127.4161700559873,52.72674093981538],[-127.41637648139877,52.726617384320896],[-127.41650959066695,52.72646388532954],[-127.41656287308871,52.7262805307987],[-127.41656152688397,52.726100078774074],[-127.41646945794346,52.725924086702086],[-127.41646640650255,52.725748138946926],[-127.41657657790772,52.72557418459071],[-127.41680859011825,52.72546713251376],[-127.4170741900129,52.72539442216111],[-127.41734727580348,52.72532330646909],[-127.41762231098332,52.72525552033037],[-127.41789447896805,52.72518497042071],[-127.41815986721994,52.725105534576514],[-127.4184267964478,52.72501711207158],[-127.41868138361376,52.72491987105646],[-127.41888945756752,52.724790130227895],[-127.4189257019367,52.72462491544862],[-127.41891419343408,52.724445707171604],[-127.41889154238068,52.72426606891905],[-127.4188680926415,52.72406234494779],[-127.41910196362575,52.723955830478246],[-127.41930821452678,52.72382722279589],[-127.41951349290842,52.723697514554964],[-127.41973380606294,52.723573784272205],[-127.41996164531957,52.723453325074026],[-127.42017824803114,52.723329638890604],[-127.42036582684881,52.72319789286213],[-127.4203849099779,52.72301831347571],[-127.42054072836844,52.7228796707747],[-127.42076397148573,52.72276038656101],[-127.4209939179534,52.72264774611491],[-127.42122669264477,52.72253675674452],[-127.42144049485432,52.72241253708903],[-127.42162971502118,52.722274608330636],[-127.42180855878028,52.72213120058406],[-127.42200533739498,52.72199710712488],[-127.42221342794987,52.72186903654723],[-127.42242248886687,52.72174207471443],[-127.42262774750517,52.7216123518711],[-127.42283395802774,52.72148318202395],[-127.42304393473155,52.72135620787755],[-127.42325956112913,52.721231406521824],[-127.42350098871975,52.72112983059861],[-127.42376439815591,52.721048163607406],[-127.42403454501964,52.72097370459387],[-127.42430562497866,52.7208992246263],[-127.42457964537674,52.72082975690573],[-127.42487319090569,52.720817783237315],[-127.42516340274878,52.7207890265139],[-127.4254450791794,52.720726754083906],[-127.42569029958298,52.72062792518701],[-127.42592596980869,52.72052080956095],[-127.42615967298411,52.72041035460798],[-127.4263905269376,52.72029769201223],[-127.42661947367633,52.720183931243234],[-127.42684931614339,52.720069038160474],[-127.4270791762133,52.719954709336626],[-127.42731002528733,52.719842044894165],[-127.42754372118257,52.719731587129324],[-127.4277821736339,52.71962498965273],[-127.42802541664919,52.719522825937865],[-127.4282753222953,52.719425620137486],[-127.42852809342362,52.71933117667031],[-127.42878281089708,52.7192395157004],[-127.42903848416961,52.71914896342427],[-127.42929701927264,52.719060617503025],[-127.42955845366792,52.71897559839179],[-127.42982282888838,52.71889559144509],[-127.4300930262254,52.718823350334354],[-127.43037000331228,52.718760002190784],[-127.4306518458474,52.71870331055878],[-127.43093473464405,52.718649977214206],[-127.43121854188769,52.71859662298317],[-127.43150425853992,52.718544930594085],[-127.43179431941853,52.71851224022198],[-127.43208801565204,52.71850528610089],[-127.43238393687248,52.71850895736391],[-127.4326809838078,52.71851877474989],[-127.43297717165667,52.718530843761],[-127.43327329942979,52.718540670895834],[-127.43357021523471,52.71854655988972],[-127.43386634734907,52.71855695042479],[-127.43415751526614,52.718584770978744],[-127.43444284535451,52.7186322741585],[-127.43472561380557,52.71868654259684],[-127.43501191706913,52.71873515341252],[-127.43530161321637,52.71877476345529],[-127.43558868679145,52.718818879700976],[-127.43586608059859,52.71887825101388],[-127.43613473713422,52.71895398683858],[-127.4363972335186,52.719039321060585],[-127.43665256034876,52.719132024239016],[-127.43689996804096,52.71923716326713],[-127.43714814556036,52.719337799633706],[-127.43740210873047,52.71941763169212],[-127.43769076206509,52.71937037190089],[-127.43791967379562,52.71925658897364],[-127.4381628715265,52.719153839463395],[-127.43841561952448,52.719059383604545],[-127.43867222430919,52.718969354565516],[-127.43893367720148,52.7188854349934],[-127.43919977499617,52.718802022685495],[-127.43946873903666,52.71872137237449],[-127.43974081042327,52.71865020668257],[-127.44001617818785,52.71859413690615],[-127.44053390557815,52.718631485724266],[-127.4407351795581,52.71849561838382],[-127.44094986241748,52.71837248090767],[-127.44118928365212,52.718268085484794],[-127.44143913333751,52.71817029576299],[-127.44168997652947,52.71807472615925],[-127.44194557776096,52.71798302516743],[-127.442203140999,52.71789410625754],[-127.44245111735879,52.717796328401164],[-127.44268762650273,52.71768804686945],[-127.44292127093337,52.71757755826473],[-127.44315111246635,52.71746431818145],[-127.44337807020709,52.717348306344604],[-127.44359936712529,52.71722900102086],[-127.44381495450189,52.717105837890074],[-127.44402109840159,52.71697719507435],[-127.44422059427943,52.71684414114681],[-127.44441817868298,52.71670943350857],[-127.44461671907918,52.71657583465286],[-127.44482096654495,52.71644609278083],[-127.4450346549908,52.71632182974074],[-127.44525399389072,52.71619974738808],[-127.44547994412152,52.716081501785645],[-127.4457106899367,52.71596823625246],[-127.4459491100679,52.715862166057924],[-127.4462067510101,52.7157765998125],[-127.44650656742805,52.71573142176037],[-127.44675984479372,52.71565374577523],[-127.44692563940232,52.71551157983443],[-127.44705813527213,52.71534460850031],[-127.44721137506798,52.71518746008859],[-127.44739669726162,52.7150472939218],[-127.44759517876521,52.71491201345992],[-127.44780411126838,52.71478444102216],[-127.44802924565745,52.71467012807053],[-127.44829443688567,52.7145883824582],[-127.44856436735468,52.71450994041895],[-127.44882294793057,52.714424912536934],[-127.44902618112509,52.71429348951463],[-127.44917297223192,52.714138103988084],[-127.44924671581025,52.71396120357838],[-127.4493917082394,52.713807516909405],[-127.44960338401917,52.713679351089354],[-127.44983977638039,52.71356881387321],[-127.45010625638893,52.71349825742662],[-127.4504050391104,52.71347830754718],[-127.4506993088755,52.71346176667385],[-127.4509244242515,52.71334688315374],[-127.45117141615394,52.71324854217423],[-127.45143846923779,52.71316788704726],[-127.45171541179477,52.713105043755995],[-127.45200234770009,52.71306393873017],[-127.45229531437569,52.713036200533246],[-127.4525892572058,52.713010135385666],[-127.45288010768668,52.71297514032506],[-127.45316984810546,52.71293455359793],[-127.4534497688872,52.712877838852236],[-127.45371893094274,52.71280443388966],[-127.45398412298654,52.712723795945635],[-127.45424930997079,52.71264260145909],[-127.45451837817308,52.712566953890544],[-127.45479527422376,52.712502982819785],[-127.45508113141217,52.712457399774344],[-127.45537421064827,52.71243358017594],[-127.45567091584547,52.712406907915636],[-127.4559625413459,52.71236741169039],[-127.45614623612714,52.71223509775245],[-127.45632110096652,52.712088321050594],[-127.45656816870743,52.71199277426316],[-127.45683516123724,52.7119104213896],[-127.45709932733652,52.71182699108723],[-127.45736253904744,52.711743007094654],[-127.45764653469877,52.71169743186977],[-127.45794038872144,52.71166911232667],[-127.45823332305977,52.71164080349517],[-127.45852920173652,52.71161750598628],[-127.45881911860077,52.711582507594095],[-127.4590816161203,52.711504689279934],[-127.4593265152237,52.71140019597388],[-127.45957626822972,52.71130235833307],[-127.45981554728317,52.71119624811827],[-127.46001508209993,52.71106653714586],[-127.46018522637641,52.710917571306204],[-127.46038179906031,52.71078284785244],[-127.46058494121756,52.710650283980705],[-127.46079186535206,52.71051991443625],[-127.46100641192656,52.71039561010734],[-127.4612305876735,52.71028183866604],[-127.46149303486897,52.71020290337203],[-127.4617804164031,52.710148308043834],[-127.46206219918048,52.71009266993538],[-127.46234697910027,52.71004315443285],[-127.46263275421492,52.709995867691525],[-127.462919543565,52.70995136545716],[-127.46320736233652,52.70990965650112],[-127.46349823620835,52.709875755279874],[-127.4637480284244,52.709779593827484],[-127.46397870704259,52.7096663006032],[-127.46420554764248,52.709549683085534],[-127.46444104141696,52.70944193342803],[-127.46470135546039,52.70935516182965],[-127.46498171131651,52.709284962061744],[-127.46525740623032,52.70921425498282],[-127.46550277567545,52.709124305739394],[-127.46566926779988,52.70897818397603],[-127.4657530964386,52.70880002439234],[-127.4657868899396,52.708623047166014],[-127.46579457957617,52.70844135694169],[-127.4658032460901,52.70826134037253],[-127.46580356514154,52.70808141932646],[-127.46581689112402,52.70790190036408],[-127.4658403833894,52.70772169809549],[-127.46586662855529,52.70754089636908],[-127.46590780995277,52.70736270548302],[-127.46597696671579,52.70718977797234],[-127.46608437056284,52.707023653127784],[-127.46621884442861,52.70686279388347],[-127.46636075364968,52.706702962274534],[-127.4664886741348,52.70654049883314],[-127.46658856578338,52.70637166961496],[-127.46666883273424,52.70619803738027],[-127.46673139034638,52.706021820078014],[-127.46677815005391,52.70584468866937],[-127.4668044623835,52.705665562544105],[-127.46681868352901,52.70548547590482],[-127.4668282639872,52.70530543842074],[-127.46683787854502,52.70512596544616],[-127.46684283375278,52.70494599483806],[-127.46684687399646,52.70476659166518],[-127.46685738814159,52.70458654238852],[-127.46687814037267,52.70440749471939],[-127.46690164530085,52.7042278475681],[-127.46691865682305,52.70404828175805],[-127.46691900533494,52.70386892473087],[-127.46690359534384,52.703689765155],[-127.46688075388099,52.70351013371989],[-127.46686161902433,52.703330464781615],[-127.46685452140701,52.70315063601636],[-127.46685670417116,52.70297069990556],[-127.46686815629143,52.70279120361141],[-127.46688978799675,52.70261101476835],[-127.46690858995966,52.702429184409176],[-127.4669338698743,52.70224727284233],[-127.4669769186228,52.702070187346635],[-127.4670498982337,52.701900564414544],[-127.46722577554839,52.70175880550734],[-127.46742870002402,52.70162174705947],[-127.46757725290135,52.70146686966904],[-127.46771640554873,52.701308191064996],[-127.46785085532728,52.70114732932645],[-127.46798437020782,52.700986479128105],[-127.46812071389311,52.700827279186676],[-127.46825799013737,52.7006680583913],[-127.468396199545,52.70050883466627],[-127.46853347374342,52.70034961351362],[-127.46867166627501,52.700190389615145],[-127.46883290287647,52.700000045530494],[-127.46891847768117,52.69990088335127],[-127.46893468374549,52.699752157532565],[-127.46895818619286,52.69970758025751],[-127.46896212981451,52.699660450528164],[-127.46933478026533,52.69944615400001],[-127.46953690705018,52.69931358530912],[-127.46973719453365,52.699181039337255],[-127.46993557460856,52.69904739599062],[-127.47013020497458,52.69891212242242],[-127.47031918343869,52.69877466861502],[-127.47047515157949,52.69864716183184],[-127.47054276915152,52.69856504725062],[-127.47057131762938,52.698452027661965],[-127.47076165039955,52.69819181543487],[-127.47078607402197,52.69801271992231],[-127.47074476815952,52.69783556233004],[-127.47066739823114,52.69766054378506],[-127.47055788640486,52.697494340704516],[-127.47039783931548,52.69734109399001],[-127.47030213628317,52.697171910292795],[-127.47023399934132,52.69699621943735],[-127.47017972735416,52.69681922444043],[-127.470143887388,52.696639199962455],[-127.47016651325904,52.69646124795502],[-127.47023832537732,52.696285475977355],[-127.47031569512362,52.69610963410928],[-127.47035597111557,52.695933137213736],[-127.47033784007428,52.6957562530926],[-127.47028542194596,52.69557923472066],[-127.4702200162029,52.695401823463364],[-127.47016478918141,52.695223728297755],[-127.47013827164649,52.69504526349537],[-127.47013396747288,52.6948659636421],[-127.4701435319214,52.694685933559704],[-127.47015866881269,52.69450582448652],[-127.47017287214278,52.694325736082874],[-127.47019912928243,52.69414605223],[-127.47026635166041,52.693971458529354],[-127.47038000919281,52.69380020025496],[-127.47041869952172,52.69363156969514],[-127.47026952887309,52.69347034816307],[-127.4700839844518,52.69332975172057],[-127.46990928335572,52.693180616053716],[-127.4697593939076,52.69302556370882],[-127.46963333946667,52.69286293007982],[-127.46952103824209,52.69269619575729],[-127.46943268247574,52.692524676805206],[-127.46935997061493,52.69235015446552],[-127.4693325439016,52.692172265579],[-127.46932631391616,52.69199074764463],[-127.46925368061223,52.69181847510217],[-127.46909277899321,52.69166635803241],[-127.46886376148176,52.69155433843433],[-127.46862468317661,52.69144636354407],[-127.46841281760355,52.69132123225448],[-127.46820546189863,52.69119268111269],[-127.46797583097094,52.691035819960575],[-127.46777758264372,52.69090211396959],[-127.46758936300009,52.690763789052994],[-127.46742028151299,52.69061626510729],[-127.46727680504493,52.6904583222285],[-127.4671562866611,52.690294495484316],[-127.46706603962565,52.69012187739451],[-127.46702475676649,52.689944717543476],[-127.46700102265457,52.68976566070479],[-127.46698559835284,52.68958594367122],[-127.46697294514017,52.689406182909146],[-127.46695658292434,52.689225912622305],[-127.46692633952006,52.689046381291206],[-127.46691742996161,52.6888676944984],[-127.46696046079703,52.68869004249586],[-127.46702299193811,52.68851383191602],[-127.46708366985266,52.68833763554192],[-127.4671415615699,52.68816148300977],[-127.46720038610792,52.6879853097581],[-127.4672592104691,52.687809145419784],[-127.46712476264774,52.687454919808076],[-127.46706589242413,52.68727798915652],[-127.46704038827556,52.687101752143626],[-127.46705836438616,52.68692329301394],[-127.46711331027471,52.68674212840098],[-127.46720276154818,52.68656725688574],[-127.46732884347338,52.6864070634763],[-127.46751315236551,52.68626967101195],[-127.4677396292512,52.68614633085042],[-127.46796331442388,52.68602246027963],[-127.468136428997,52.68588296525336],[-127.46820280946679,52.685711189170874],[-127.4682270206517,52.68552536060967],[-127.46828673677341,52.685348619207126],[-127.4683529621122,52.685172361030496],[-127.46843134897422,52.68499930410327],[-127.46853588279701,52.68483265371639],[-127.46868337785023,52.68467554371838],[-127.46885436363875,52.68452823630662],[-127.46903651915537,52.684382465348776],[-127.46925572624811,52.68426368809998],[-127.46950938303993,52.684176429885554],[-127.4697772691864,52.68409908109178],[-127.47005281342919,52.68402892624308],[-127.4703303625773,52.68396322045063],[-127.47060802663002,52.68390088442138],[-127.47088869141025,52.6838452268542],[-127.47117322898805,52.68379401275872],[-127.47145784717593,52.68374559489074],[-127.47174341733185,52.68369772034815],[-127.47203171493129,52.68364813381212],[-127.47232185520978,52.68362542668061],[-127.47261050669955,52.683667197903766],[-127.47289313083972,52.68372248698522],[-127.47317222062648,52.68378231274496],[-127.47345570264912,52.68383534773758],[-127.47374508253064,52.6838715021572],[-127.47403864542513,52.68386723921971],[-127.47433447792821,52.683848383280655],[-127.47462935721086,52.683828973633986],[-127.47492442456992,52.68381460076007],[-127.4752194963694,52.683800792053596],[-127.47551448642295,52.683784185684495],[-127.47580737720652,52.683760870245514],[-127.47609397283,52.68371577900727],[-127.47638343547665,52.68367345779692],[-127.47667480755447,52.683632788739054],[-127.47696369197398,52.68362745651145],[-127.47724899151707,52.68367934741872],[-127.47753845056505,52.683717724467364],[-127.47783604528959,52.683722933825905],[-127.47813270657808,52.683728154220766],[-127.47841311867649,52.68377281324648],[-127.47867825013915,52.68385746375552],[-127.47896613037607,52.68390370406535],[-127.47925828607448,52.68391234149536],[-127.47954170619695,52.683856072196534],[-127.4798066703371,52.6837753742011],[-127.48009703285292,52.68370556404161],[-127.48033293141778,52.6837485396288],[-127.48049779928793,52.683907873850494],[-127.48065961143556,52.68405939969104],[-127.4807508387168,52.68423256110321],[-127.48088371837724,52.68437772693251],[-127.48116332715811,52.684452090922974],[-127.48144241843337,52.68451189711636],[-127.48173100693299,52.684551395887425],[-127.4820245712466,52.684574025288846],[-127.48232063055195,52.684588210561],[-127.48261603491962,52.68458390283054],[-127.4829106564938,52.68458353216784],[-127.48320416327627,52.6846044734043],[-127.48350050150374,52.684600160571506],[-127.48379847819287,52.68458965636661],[-127.48409553602833,52.68457916305569],[-127.4843918736801,52.68457483900175],[-127.48468495375798,52.68458345122459],[-127.48497405657078,52.684611169763],[-127.48525825932877,52.684657450360454],[-127.48554094520293,52.684713829338754],[-127.48582370511735,52.68477189264768],[-127.4861080894882,52.68482377377003],[-127.486396723289,52.6848643815077],[-127.4866861358626,52.68490050371165],[-127.48697640911512,52.684934928320686],[-127.48726662429921,52.684967667006106],[-127.48755773933469,52.68499983753289],[-127.48784974940678,52.685030874983745],[-127.48814082186983,52.68506136763172],[-127.48843283278407,52.68509240362634],[-127.48872392990874,52.68512400652739],[-127.48901508155836,52.6851567379588],[-127.48930631611213,52.685192265570926],[-127.4895976632634,52.6852305889859],[-127.48988809704755,52.68526948828311],[-127.49017939174259,52.68530669892091],[-127.49047062344226,52.68534165872162],[-127.49076166540384,52.68537158031168],[-127.49105344621793,52.685395886886184],[-127.49134495417593,52.685412349380854],[-127.49163879942525,52.68541589461173],[-127.49193484944354,52.68540315235051],[-127.49223131035937,52.68537583140196],[-127.49252460933819,52.685337340262606],[-127.4928102056094,52.685290534842714],[-127.49308386751508,52.68522034945631],[-127.49334426515261,52.685115017440346],[-127.49360010165537,52.68501198499866],[-127.4938610096348,52.68494812143793],[-127.49414171467407,52.68494733523263],[-127.49444344027255,52.68499112795045],[-127.49473159988206,52.68507095551643],[-127.49496889527198,52.68518002168212],[-127.49514865541225,52.685312807107145],[-127.49530034465691,52.68546444263656],[-127.49543575587248,52.68562749578471],[-127.4955648734214,52.68579623410126],[-127.49569669954437,52.68596269569168],[-127.49584305129474,52.68612055962268],[-127.49602116154442,52.68625896968549],[-127.49628816094737,52.68634299193809],[-127.49654433652704,52.68643499886492],[-127.4967234276942,52.686575072311406],[-127.49687805474613,52.68673115212479],[-127.49704816086039,52.68687918685593],[-127.49722824772464,52.68702092377531],[-127.4974120062001,52.68716205742934],[-127.49759578070555,52.68730319059169],[-127.49777138998364,52.68744947686174],[-127.49794335439543,52.68759748650961],[-127.49812528478651,52.68773919845665],[-127.49833259593524,52.687864335457036],[-127.49857247158113,52.687967200497134],[-127.49883137394453,52.68805748163373],[-127.49908846456641,52.688148915360706],[-127.49933563048303,52.688247757562486],[-127.49958461532941,52.688346010968225],[-127.49984069221945,52.6884346491328],[-127.50010850904037,52.68851473340291],[-127.50038671466586,52.68857394130857],[-127.50067965740043,52.688604370170324],[-127.5009804921724,52.68862181032063],[-127.50127772077263,52.688642102892885],[-127.50156079819102,52.688681623946145],[-127.50182844274782,52.688756657657045],[-127.50208067452597,52.68886775988054],[-127.5022890985757,52.688997924590815],[-127.50236111294542,52.689148887969175],[-127.50228893884409,52.68933646172082],[-127.50227855761518,52.68951595129522],[-127.50228763905396,52.68969574699389],[-127.502303211875,52.68987546830306],[-127.5023243418912,52.69005510927899],[-127.502352862452,52.6902340993461],[-127.502384208694,52.69041417408652],[-127.50241012071187,52.69059824646781],[-127.50245995304745,52.69077696283853],[-127.50256848055345,52.690938666917276],[-127.5027220291789,52.691089147990496],[-127.50289488031761,52.691234897066494],[-127.5030851667729,52.691375938045425],[-127.50328729174299,52.69151122176501],[-127.50349849869744,52.691640783580304],[-127.50371316103879,52.69176357476657],[-127.5039395784591,52.69187781166495],[-127.50417593742827,52.691984629526104],[-127.50442048865621,52.69208741370521],[-127.50466775355935,52.69218848551111],[-127.5049140812261,52.69228901285107],[-127.50515682279989,52.692392939762414],[-127.50527247305999,52.69265096258992],[-127.50534274221201,52.692831091780626],[-127.5054185060447,52.693008917251014],[-127.5055125054724,52.69317865227867],[-127.50563481473468,52.69333625725588],[-127.50580005782611,52.69347593906449],[-127.50601369881963,52.69359537629849],[-127.50626113389107,52.69370092650567],[-127.5065221962191,52.693798453953605],[-127.5067795150513,52.693894908050375],[-127.50702852519505,52.6939920245852],[-127.50728020953369,52.69408630820334],[-127.50753548187598,52.69417718214549],[-127.5077934479191,52.69426577888492],[-127.5080541224598,52.69435209821341],[-127.50831471909342,52.694436176023686],[-127.50857714981484,52.69451967361693],[-127.50883954175097,52.694602041187416],[-127.50910376776089,52.694683828524916],[-127.50936705626572,52.69476507136157],[-127.50963216369635,52.69484572518055],[-127.50989724742617,52.69492525773805],[-127.51016325106491,52.695004777833695],[-127.51042923576613,52.69508373260614],[-127.51069520183552,52.69516213101926],[-127.51096206819149,52.69523996120976],[-127.51122893040285,52.69531722588226],[-127.51149581831918,52.695395610598204],[-127.51176364096796,52.69547398264013],[-127.51203148422762,52.69555290981543],[-127.51229932879151,52.69563184533725],[-127.51256713443478,52.695709650814436],[-127.51283583553128,52.695786332104845],[-127.51310541660938,52.69586187146672],[-127.51337491972984,52.695935178240696],[-127.51364617727556,52.69600565478934],[-127.5139173564599,52.69607388977974],[-127.51419025034605,52.69613817406671],[-127.51447984902285,52.696150685643744],[-127.51478116775719,52.69612772959106],[-127.515148833725,52.69606804262424],[-127.5154364088742,52.69602339927006],[-127.51572306479761,52.69597877607273],[-127.51600968530221,52.69593358765093],[-127.51629528687846,52.69588560479322],[-127.51657893602977,52.69583484857037],[-127.51685965405436,52.695779645730504],[-127.51713637316212,52.695716647203774],[-127.51740816940506,52.69564530899],[-127.51767793313014,52.69556894760443],[-127.51794580347462,52.6954914891601],[-127.5182156247213,52.69541680273905],[-127.51848938918044,52.69534879935371],[-127.51876719586807,52.69529026668722],[-127.51905193093573,52.69524397418273],[-127.51934160780553,52.69520658464851],[-127.51963331567339,52.69517420793764],[-127.51992600185889,52.69514350373964],[-127.52021772890977,52.69511169028369],[-127.5205074038664,52.69507429786116],[-127.52079402808675,52.69502909750432],[-127.52107959851912,52.69498054719526],[-127.52136508866167,52.69492975526492],[-127.52164862605747,52.69487619005229],[-127.5219301705043,52.69481872214631],[-127.52220784951912,52.694756819908754],[-127.52248162318236,52.694689362905066],[-127.52274864508202,52.69461470224224],[-127.5230077323025,52.6945250154656],[-127.52325514970512,52.69442035123717],[-127.52348558770271,52.69430693068381],[-127.52368124512073,52.69417995470307],[-127.52376199723714,52.69400123239694],[-127.52355868083366,52.69373091611875],[-127.52344295725999,52.693551944678845],[-127.52346209340476,52.69338635536264],[-127.52359834597698,52.69323100717567],[-127.52377744087704,52.69308126189597],[-127.52398098223209,52.692941851774464],[-127.52419342472369,52.692818019083944],[-127.52442954910445,52.692708450264725],[-127.52468468201009,52.69261265005652],[-127.52494863630692,52.69253017714174],[-127.52521954015873,52.692460508821675],[-127.52550011043965,52.692402488654544],[-127.52578655176528,52.692352794142785],[-127.5260750298587,52.692308677273374],[-127.52636591387758,52.692279657088804],[-127.52666387366389,52.692267367582474],[-127.52694975855967,52.69222832230464],[-127.52722841231942,52.692168636982714],[-127.52750307537057,52.69210060018254],[-127.52777676356723,52.69203144549851],[-127.52805336239794,52.69196618008154],[-127.52832900153258,52.69189980554646],[-127.52860768621568,52.691840681446635],[-127.52889639804317,52.69180328037672],[-127.52919136213207,52.691784853619936],[-127.52948647126954,52.69177090815784],[-127.52978165493232,52.69175863796752],[-127.53007676369685,52.69174469101678],[-127.53037188708925,52.69173074312806],[-127.53066693553723,52.691715118479564],[-127.53096092452016,52.691695579013576],[-127.53125267983143,52.69166541419092],[-127.5315403692705,52.69162522194784],[-127.53182693854545,52.691579429757866],[-127.53211357290658,52.69153588694343],[-127.53240532631763,52.69150571924426],[-127.53269195419952,52.691461610105065],[-127.53297450057364,52.691407464848965],[-127.53325508816803,52.69134998160552],[-127.53352782893924,52.691280834635236],[-127.53379759646559,52.691206112085],[-127.53407618878128,52.6911447340166],[-127.53432670681723,52.69105008480081],[-127.53456666654874,52.69094549357108],[-127.53480751826518,52.690839760173006],[-127.53504826851473,52.69073122960349],[-127.53530571534654,52.69064882714359],[-127.53559548743033,52.69061531439805],[-127.53589209736934,52.69059180903795],[-127.53587517035545,52.690791566946594],[-127.53585633937499,52.690963881143716],[-127.53585751502932,52.69115163552967],[-127.53592005821378,52.69131951872732],[-127.53599439519722,52.69150574784699],[-127.53608004308586,52.69167165067774],[-127.5362242797789,52.691843510261094],[-127.53636514308853,52.691998599151354],[-127.5365537109078,52.69214017466063],[-127.5367458238412,52.69227721040251],[-127.53694341550016,52.692411940874486],[-127.53714733848113,52.6925420949425],[-127.53735759855768,52.69266824644366],[-127.53757604828503,52.692790371005124],[-127.53780260138574,52.69290565379815],[-127.53803389533623,52.69302368080368],[-127.53826704860627,52.69314224789725],[-127.53850899733817,52.69324723810274],[-127.5387628736601,52.693323490320175],[-127.53904946728635,52.6933298105809],[-127.53935497411183,52.69329552585185],[-127.53965147417007,52.69326808473236],[-127.53994693954658,52.693237858488146],[-127.54023194757016,52.693252043621335],[-127.54050440792801,52.69332916850251],[-127.54076693461725,52.69341370547239],[-127.54102229432334,52.69350507112507],[-127.54126867422666,52.693604392432945],[-127.5415069736002,52.693711110565296],[-127.54173987257938,52.693821827302415],[-127.54196375709013,52.69393994428664],[-127.5421822005769,52.694060930532025],[-127.54239250329361,52.694187637567865],[-127.54257841511841,52.69433203653729],[-127.54275707367563,52.69448044979848],[-127.54296860664132,52.69458975981583],[-127.54327439220066,52.694588534887046],[-127.54356948600511,52.69459921605467],[-127.54386572095419,52.694616042371855],[-127.5441520476193,52.694666072279496],[-127.54439107165186,52.69476661412943],[-127.54452673963961,52.6949307298611],[-127.54454059826497,52.69510933991382],[-127.54433856754683,52.6952381215006],[-127.5441741692873,52.6953820910373],[-127.54417499740154,52.695559195989404],[-127.54441593962854,52.69566138948147],[-127.5447066355677,52.69570407851199],[-127.54497898344945,52.695777831686236],[-127.54520907543784,52.695887448732464],[-127.5454094764547,52.69602156308556],[-127.54560709226745,52.69615571388149],[-127.54580106476344,52.69629159843158],[-127.54598237285387,52.696436052865685],[-127.54616091575491,52.696581099560426],[-127.54638272605006,52.69669195369742],[-127.54666394187976,52.696754375990615],[-127.5469415689657,52.69681964303219],[-127.54721565902608,52.69689000510511],[-127.54749402466955,52.69695022113403],[-127.54778662762254,52.69696821571344],[-127.5480786208965,52.6969951765549],[-127.54836972161371,52.69702327843506],[-127.54866646308767,52.69702775526445],[-127.5489615954844,52.69703898752776],[-127.54925784414137,52.69705524423115],[-127.54955261151132,52.697056381987686],[-127.54984115780657,52.69701389184295],[-127.55008312245644,52.69691316158996],[-127.55030864052918,52.696793591877444],[-127.55053234520943,52.69667516671585],[-127.55074941451049,52.69655290107702],[-127.55095418366287,52.69642351606805],[-127.55113814570123,52.69628264054406],[-127.55130702086576,52.69613467376634],[-127.55146274313677,52.695981832139246],[-127.55161752522142,52.69582844672854],[-127.55177980378205,52.69567776864377],[-127.5519439483652,52.695527056591324],[-127.55209406786653,52.69537317627587],[-127.55220389955957,52.695207490218635],[-127.55227817958003,52.695032195631875],[-127.5523655342171,52.69486008154666],[-127.55245569498982,52.69468849512225],[-127.55256271168851,52.69452173392858],[-127.55271469821673,52.69436838387932],[-127.55288447361308,52.694219837538775],[-127.5530289255521,52.694063224024234],[-127.55316773733684,52.69390444317203],[-127.55330652792665,52.6937451063942],[-127.5535539894819,52.69356694703658],[-127.55379774317709,52.6934656197669],[-127.55405490580544,52.69337588880448],[-127.55431882871434,52.693293914413424],[-127.55458568480776,52.69321638441318],[-127.55484866666082,52.69313386528067],[-127.5551077644258,52.69304690421538],[-127.55537467308076,52.69297049265778],[-127.5556611706408,52.69292353086564],[-127.55594619876834,52.69286145001479],[-127.55620547039923,52.692778968111476],[-127.55642105889405,52.69266792974394],[-127.5565504888878,52.69250646231019],[-127.5566609447858,52.69233292513496],[-127.55679690483947,52.69217249149829],[-127.55699613851243,52.69204485462792],[-127.55724445310919,52.69194178216403],[-127.55750241613207,52.69184922569727],[-127.55776534859815,52.69176613542487],[-127.55803503641651,52.691690245551584],[-127.55830282967256,52.69161325030591],[-127.55856099271082,52.69152630270591],[-127.55880571795217,52.69142663759147],[-127.55904466002276,52.69132087903394],[-127.55927977385494,52.69121181695754],[-127.5595129520587,52.69110052922168],[-127.55974612937695,52.69098924997647],[-127.559981198447,52.69087905705164],[-127.56021919548567,52.690772752561585],[-127.56046289724341,52.690670855476505],[-127.56071233339382,52.690573365366404],[-127.56096655552312,52.69048029484703],[-127.56122466546147,52.690392220853674],[-127.561487602027,52.690309677881466],[-127.5617592900031,52.69023823643867],[-127.56204365877505,52.69018399604749],[-127.562331513447,52.690149321376055],[-127.56262857713166,52.69016385585506],[-127.56320975805299,52.69019364255005],[-127.56349398559264,52.6902374922391],[-127.56378736571658,52.690252629019476],[-127.56407342023203,52.69029532293287],[-127.56436379209897,52.69032955544092],[-127.56464565996902,52.690384643877174],[-127.56490543017901,52.690469164122284],[-127.56515457279731,52.690566721899806],[-127.56542535755322,52.69064829567955],[-127.56566717453693,52.69074819237539],[-127.5658491991013,52.69088588158556],[-127.56601042072228,52.69103730087495],[-127.56616531086841,52.69119273265382],[-127.56633021905974,52.69134353718026],[-127.56652146971234,52.691479980865715],[-127.56673189310966,52.69160832057623],[-127.56692678401636,52.69174247287722],[-127.56709992348429,52.69189036810393],[-127.56724841151829,52.69204812617934],[-127.56734071382252,52.69221503957272],[-127.56736303670745,52.692394656139825],[-127.56737248925164,52.69257669602136],[-127.56762260101449,52.692852474154726],[-127.56781367217215,52.69298331315557],[-127.56807366961051,52.69307342845432],[-127.56831562961409,52.69317668085413],[-127.56851877963787,52.693308477849286],[-127.56870741846866,52.69344888097021],[-127.5688576265226,52.69360268596164],[-127.56892146239882,52.69377670564553],[-127.56895219856018,52.693957895008786],[-127.56894504100413,52.69411660745524],[-127.56874742986719,52.694262744001946],[-127.56849342815482,52.69436199811595],[-127.56823626364275,52.69445064009469],[-127.56797429495246,52.6945348618718],[-127.56824657268011,52.69460575536874],[-127.5685170959464,52.694678922714104],[-127.56878953973705,52.6947542967225],[-127.56902681054369,52.694855933532544],[-127.56918991098847,52.69500732319742],[-127.569331047711,52.69516628913933],[-127.56947218581024,52.69532526385746],[-127.56960416422162,52.695487159251485],[-127.56971588759482,52.6956526891465],[-127.56980556452257,52.695823554633414],[-127.56988054434399,52.695997989136806],[-127.56994263783315,52.6961748294604],[-127.5699927174491,52.69635239587816],[-127.57002518940672,52.696530198460536],[-127.57002156749243,52.69670960619984],[-127.57000224596071,52.69689034551226],[-127.56999124855484,52.69707041712308],[-127.56997198821092,52.69725283256902],[-127.56995087529103,52.6974352818051],[-127.569938964127,52.69761592160964],[-127.56994916265126,52.69779290184009],[-127.57001276262982,52.697960197780894],[-127.57019516065067,52.69810684309835],[-127.57036660179759,52.69825755413635],[-127.57053171677559,52.69841284275316],[-127.57069962511746,52.69856864966339],[-127.57085276825684,52.69872577549119],[-127.5709707766939,52.698885614685835],[-127.57102405514392,52.699049120603206],[-127.57094609848728,52.699223364861766],[-127.57081438264478,52.69939720056434],[-127.57067287296233,52.69955715958515],[-127.57051260198361,52.69971064418476],[-127.57044197120541,52.699882547703965],[-127.57040735718961,52.70000015133338],[-127.57038925753429,52.70006261372507],[-127.5703459103346,52.70024535202883],[-127.57031928003028,52.70042899597781],[-127.5703166132584,52.70060894646352],[-127.5703452195852,52.70078231640087],[-127.57043368256811,52.700944794325665],[-127.57059402442776,52.701096218800124],[-127.57078297150126,52.701243896213164],[-127.57095538777955,52.70139572313951],[-127.57107368595308,52.701562840117326],[-127.57115450695748,52.70174447689133],[-127.5712516144534,52.70191525004607],[-127.57141869566317,52.70204808207799],[-127.5716711122607,52.70213157446644],[-127.57196349761587,52.70219322177053],[-127.57224417667024,52.70226400248756],[-127.57250588132823,52.70234792435934],[-127.5727658220025,52.70243466735055],[-127.57302128304025,52.702525397925896],[-127.57326774822523,52.70262353978854],[-127.57348817744918,52.7027444419836],[-127.57372658757099,52.7028505381137],[-127.57397938392357,52.702944100452754],[-127.57423483013241,52.70303427261211],[-127.57449210962713,52.70312385458454],[-127.57474847674098,52.70321400428656],[-127.57500127780352,52.70330757335954],[-127.57525050332892,52.70340510899795],[-127.57550530381398,52.70350256908013],[-127.5757501745026,52.70360744424576],[-127.5759623319027,52.703730139184614],[-127.57613815249309,52.70387294484181],[-127.57630941649563,52.704018044610585],[-127.57647797160291,52.70416486658272],[-127.57664473691247,52.704313398390276],[-127.57680783824887,52.70446309133824],[-127.5769691292948,52.70461393840536],[-127.57712863019354,52.704766486371],[-127.57728538053297,52.704919627191586],[-127.57744121886273,52.70507334507059],[-127.57759431259197,52.70522822071984],[-127.57774648830134,52.705383108540595],[-127.5778977668017,52.70553857323503],[-127.57804717815237,52.70569405393421],[-127.57819475264382,52.70584956817261],[-127.57834326784473,52.70600562555115],[-127.57849180462676,52.70616223845983],[-127.57863945018491,52.706319993154764],[-127.57878527903162,52.70647832817332],[-127.5789265100494,52.70663784601124],[-127.57906316370439,52.70679910241941],[-127.57919244146255,52.70696102314174],[-127.57931343578055,52.70712474143472],[-127.57942520623793,52.707289696063235],[-127.57952592074278,52.70745648571797],[-127.57960727383146,52.70762634348041],[-127.57965824340222,52.707801651123766],[-127.57968620050718,52.707981188230384],[-127.57970031364616,52.708162598085224],[-127.57970797462792,52.7083452159698],[-127.57971748320064,52.70852725289118],[-127.5797343068654,52.70870694013736],[-127.57974835856938,52.70888667373337],[-127.57975778437746,52.70906646076054],[-127.57976534252354,52.70924628193598],[-127.5797719606719,52.70942555079598],[-127.57978230591563,52.70960532535225],[-127.57980566582827,52.709786054224736],[-127.57982435846156,52.709965716097805],[-127.57981332198197,52.71014410211555],[-127.57975303595677,52.71031923368653],[-127.57967044762671,52.71049298015099],[-127.57960274696325,52.710668202662816],[-127.5795490565878,52.71084604304194],[-127.57949632637241,52.711024991402965],[-127.57945656903384,52.711203764702844],[-127.57943995017247,52.71138166981105],[-127.5794650385518,52.71155900328366],[-127.57953366785996,52.71173519332115],[-127.57961523592239,52.71191065273182],[-127.57967922557629,52.712086905254516],[-127.57969410868445,52.71226382029335],[-127.5796682026286,52.7124412856416],[-127.57961823760117,52.7126196315614],[-127.57955896981449,52.71279754692639],[-127.57950434246816,52.7129753996325],[-127.57945340098482,52.71315264655525],[-127.57939873138886,52.71332937874218],[-127.57934218706689,52.71350557118776],[-127.57928566312225,52.71368232828057],[-127.57923286644542,52.713859600022936],[-127.57918100314116,52.71403685015778],[-127.57912725060764,52.714213569714126],[-127.57906980551925,52.714390339017214],[-127.57900580351543,52.714565519695974],[-127.57893339070746,52.71473912777103],[-127.57884047969328,52.71490964922139],[-127.57872887325509,52.715076494713664],[-127.57861353275334,52.71524227839602],[-127.57849821753517,52.71540917360892],[-127.57836707156737,52.71557404907477],[-127.57823777778658,52.71573889042902],[-127.57812986823689,52.715905129360394],[-127.57806476063253,52.716075840233806],[-127.5780712487359,52.71625174709003],[-127.57812424115474,52.7164315111071],[-127.57817727534758,52.71661239550396],[-127.57819688349865,52.716792044421936],[-127.57819895236283,52.71697361566818],[-127.57819177979758,52.71715643242886],[-127.57818183418905,52.717339286539946],[-127.5781718884955,52.71752214062767],[-127.57816746222768,52.71770379932206],[-127.57817409582015,52.717883631947984],[-127.57819549633865,52.7180615795762],[-127.57823624363772,52.71823590348754],[-127.57830280345287,52.7184065165191],[-127.5783924383458,52.71857401153677],[-127.57850144158257,52.718738447426205],[-127.57862798621169,52.718900969747075],[-127.57876740397371,52.719060511434705],[-127.57891790349645,52.719218782554485],[-127.57907482241865,52.71937528096124],[-127.57923446856789,52.719530065390686],[-127.57939594905424,52.71968426885553],[-127.5795536815955,52.71983739270344],[-127.57971135337286,52.719988840171325],[-127.57987635838472,52.72013794653203],[-127.58004684295659,52.720284736766786],[-127.58022282797573,52.72042977554486],[-127.58040062620245,52.720573659642234],[-127.58057933937896,52.7207169751167],[-127.58075899407781,52.720860842585836],[-127.58102392950055,52.721079220139416],[-127.58175814213739,52.721273323880666],[-127.58350517684023,52.72152154718082],[-127.58419666530192,52.72198861183208],[-127.5849329409051,52.72208738469133],[-127.58534275645184,52.72261094052856],[-127.58585983471227,52.72307531645117],[-127.58669903479483,52.72359809224681],[-127.58718427517194,52.72380394729837],[-127.58760930257831,52.723886178853625],[-127.5882958933253,52.72411956616567],[-127.58884035571234,52.72447089476067],[-127.58966096106433,52.72486611021573],[-127.59032399237492,52.72511325739075],[-127.59110041956849,52.7254171424239],[-127.59142100493172,52.725533296613264],[-127.59188947897258,52.72573598842333],[-127.59232702426436,52.72602934230466],[-127.59301098116568,52.72656371702067],[-127.59357559083512,52.726856458980095],[-127.59390381955255,52.72695344584036],[-127.59451691032596,52.72692940708671],[-127.59504001105182,52.72690490472396],[-127.59587857563008,52.72700782178688],[-127.59701608163321,52.72729218399329],[-127.59794089005553,52.727568218564684],[-127.59913091845394,52.72801662821657],[-127.60000118006805,52.7281230023096],[-127.60029755866621,52.72813633296156],[-127.60057871529486,52.72816443467674],[-127.60086536277268,52.728240106886105],[-127.60113165854936,52.72831717759689],[-127.60139270787602,52.728402731290615],[-127.6016510952598,52.72849167479063],[-127.60191128984616,52.72857891602466],[-127.60217863514393,52.72865933298463],[-127.60245228940816,52.72873462309473],[-127.60272506665953,52.728811036589775],[-127.60298601704243,52.728893781204384],[-127.60322707743869,52.728990249283136],[-127.603406160585,52.72914081644534],[-127.60345814577794,52.72931497799165],[-127.60340357553409,52.72949227518413],[-127.6033361311874,52.729672555489294],[-127.60333726806479,52.72985134097228],[-127.60338974303293,52.730038947546625],[-127.60350364634935,52.73020721248568],[-127.6036982402494,52.73032561437415],[-127.60395101873685,52.73041295271667],[-127.60423381084429,52.730484185725864],[-127.60452114178452,52.730552557918315],[-127.60479204448121,52.730628436388464],[-127.60506308911206,52.730707675241064],[-127.60533817398674,52.73077116436252],[-127.60562874825153,52.73080248806477],[-127.60593262090121,52.73079271737935],[-127.60620024845156,52.73073187775645],[-127.60642949619935,52.730612151829504],[-127.6066703938428,52.73050628239146],[-127.60691704199212,52.730405373481226],[-127.607163731079,52.73030558444974],[-127.60741425361377,52.73020910521773],[-127.60766964922935,52.73011871946563],[-127.60793346451275,52.73003046848887],[-127.60821473787,52.72993804927438],[-127.60849614375927,52.72987365212597],[-127.60876415618735,52.72987221331801],[-127.60901905655211,52.729941575977755],[-127.60926624687391,52.730052520408975],[-127.6095065488007,52.73017756679129],[-127.60973814281787,52.73029320848633],[-127.60995698477666,52.7304146299239],[-127.61016947883361,52.730540066147455],[-127.61038649647652,52.73066263285821],[-127.61061256877679,52.73077890477782],[-127.6108431862449,52.730892880764415],[-127.6110774076029,52.73100399979444],[-127.61131606808111,52.73111000839034],[-127.6115705459576,52.731192267205245],[-127.61183536301168,52.731278302162714],[-127.61211854462664,52.73133493821106],[-127.6123998241105,52.73138991380722],[-127.61268377273494,52.73144205401269],[-127.61296770109341,52.73149363780882],[-127.61325246495419,52.73154295848216],[-127.61353291859149,52.73160074970652],[-127.61380560741888,52.73167378501235],[-127.6140875572783,52.7317220214648],[-127.6143854662287,52.731726327886065],[-127.61467864516737,52.731703230155546],[-127.6149729550069,52.73168572101638],[-127.61526949963593,52.731678269177195],[-127.61556542689699,52.73167922800103],[-127.61586266999896,52.731690265755574],[-127.61614726298852,52.7317345418601],[-127.61642083413257,52.73180642901948],[-127.61671352012254,52.731819769485035],[-127.61701076674235,52.73180613365746],[-127.61730846714273,52.73178016893964],[-127.61760222330314,52.73177274970044],[-127.61788744164075,52.73180916607491],[-127.6181680728487,52.73187142779255],[-127.61844520845283,52.731939342071485],[-127.61871426284492,52.73201409329119],[-127.61898334575623,52.73208996449359],[-127.61926118511597,52.73215169723875],[-127.61954248569859,52.73220722054197],[-127.6198229946227,52.732266117082155],[-127.62009642696626,52.732334078718964],[-127.62036638536786,52.73240825768709],[-127.6206337192065,52.73248639132021],[-127.62089125155725,52.73257530486171],[-127.62113983248945,52.73267275360782],[-127.62138575320482,52.732773601614966],[-127.62163073430278,52.732873906113994],[-127.62187933972965,52.73297190898879],[-127.622142716747,52.73306802979559],[-127.62239428935753,52.733146377738166],[-127.62262676273187,52.7332591842686],[-127.62285111278861,52.733377698847804],[-127.62306451514145,52.733501413613986],[-127.62321653080271,52.7336450354045],[-127.62333367221656,52.73382276985914],[-127.62343805381153,52.73400685092915],[-127.62346242359725,52.73416008822187],[-127.62349853084892,52.734353518301766],[-127.62355134588417,52.7344009886949],[-127.62372513154428,52.73445799220844],[-127.62402858056764,52.73446106763422],[-127.62425808325045,52.73454420157121],[-127.62439396636591,52.73472672400829],[-127.6245809888513,52.73486368870022],[-127.62487283908534,52.73500088508224],[-127.62471173780895,52.735155573547104],[-127.62454786126132,52.7353103002452],[-127.6244352902524,52.73547272712451],[-127.62439642610872,52.73564645371075],[-127.62438741699361,52.73582425919453],[-127.62439706409272,52.736005159951546],[-127.62441510633164,52.7361870742302],[-127.62443131543867,52.73636956991323],[-127.62443539336378,52.7365499918216],[-127.62443199628599,52.73672939637513],[-127.62442584607965,52.73690939509014],[-127.62441782028573,52.73708886378152],[-127.62441075050931,52.737268884169694],[-127.62440178994599,52.73744836577662],[-127.62439098969357,52.73762787286891],[-127.62437369133222,52.73780747003655],[-127.62435360371015,52.73798710585181],[-127.62434094864658,52.73816663858762],[-127.62434867792804,52.738345888671574],[-127.62438147139542,52.73852534722385],[-127.62443093449262,52.73870401860884],[-127.62446089056799,52.738881839457015],[-127.62442963317572,52.739060509049416],[-127.62437891048717,52.73923944849598],[-127.62430390828418,52.739414240586136],[-127.6241951408359,52.73957941186584],[-127.62404329256664,52.73973397039041],[-127.62387835516404,52.73988591213995],[-127.6237349637672,52.74004315095567],[-127.62363184129245,52.740210485318265],[-127.62354839627118,52.74038315178632],[-127.6234771192617,52.74055845649222],[-127.62341330220372,52.74073476977244],[-127.6233578591421,52.74091153193686],[-127.62333591119486,52.74109119290366],[-127.62336497220332,52.74127014709174],[-127.62337452487078,52.741448250577264],[-127.6233405079855,52.74162752269379],[-127.62328880042605,52.74180535392388],[-127.62320152886859,52.74197470997649],[-127.62306192892714,52.742134702024785],[-127.62295048134854,52.742302706779654],[-127.62286416987246,52.74247317017289],[-127.6228682269306,52.74265359160924],[-127.62290376473578,52.74283189999862],[-127.62282504083548,52.743006742103944],[-127.62269123388229,52.74317281419767],[-127.62253141733878,52.743313472750316],[-127.62232757509324,52.743442965892775],[-127.62211239707705,52.74356756670232],[-127.62189442207465,52.74369164980078],[-127.62168401358737,52.74381955564831],[-127.62149935097044,52.74396559644556],[-127.62129250054971,52.744089524387874],[-127.62102602817507,52.74415822794493],[-127.62050756536621,52.7442371421074],[-127.62022373988037,52.74428870417503],[-127.6199389578644,52.74433972276394],[-127.61965806926784,52.74439517073743],[-127.61938227618283,52.74446287834315],[-127.61913355190197,52.74455935662184],[-127.61890311804325,52.744673517261305],[-127.61868796007363,52.74479867615271],[-127.61849827831432,52.744935257453385],[-127.61833038399988,52.74508385926836],[-127.61817569919916,52.74523789223385],[-127.6180313340731,52.745395136420754],[-127.6179095225733,52.7455599247817],[-127.61776886498976,52.74571711739088],[-127.6175981268584,52.74586408028695],[-127.61741700909813,52.746006702278954],[-127.61722458548589,52.746144440099464],[-127.61702449324478,52.74627611355857],[-127.61681117654744,52.74640124327489],[-127.6165902335944,52.74652142892172],[-127.61636643017296,52.746639420603245],[-127.61614070696767,52.74675575236496],[-127.61590926958505,52.74686823457477],[-127.61567876617313,52.746980712392514],[-127.61545210444324,52.74709705569142],[-127.61522362244337,52.74721397961954],[-127.61499510336272,52.74733034758456],[-127.61477420799964,52.74745165888149],[-127.61457120024784,52.74758000510895],[-127.61440876196554,52.74772628359401],[-127.61430291546716,52.74789645257718],[-127.61418110345512,52.74806179250245],[-127.61402162099368,52.74821251353102],[-127.61385275723451,52.7483605655675],[-127.61367449079775,52.74850538389621],[-127.6134895543244,52.748645809877694],[-127.61329231326559,52.74877967911137],[-127.61307144785845,52.74890210747146],[-127.61284675060506,52.74902178121622],[-127.61264093329783,52.74914959748388],[-127.61247664878503,52.74929646334181],[-127.6123557819245,52.74946235302835],[-127.61226487436107,52.74963566820203],[-127.61219999328216,52.74980975515658],[-127.61216221256899,52.749989065109034],[-127.61213558283777,52.750168786590756],[-127.61211172797549,52.750348469869415],[-127.6120971841288,52.750528590002176],[-127.61208448000556,52.75070867583463],[-127.61206622585753,52.7508888469567],[-127.61203674163949,52.751066921624734],[-127.61198397105062,52.751242518633404],[-127.61188183726034,52.75141318971313],[-127.61174212190318,52.75157204688641],[-127.61158261808828,52.75172277320911],[-127.61141279061657,52.75187026936403],[-127.61123542140214,52.7520150709947],[-127.6110533362379,52.75215769522121],[-127.6108702875122,52.752299211411646],[-127.61068534669498,52.75244019729082],[-127.61049568955387,52.75257899675825],[-127.61029844224754,52.752713425280156],[-127.61009168584022,52.752841814281005],[-127.60986968618596,52.75295975861275],[-127.60963436223814,52.75306892673717],[-127.60939526338062,52.75317646027024],[-127.60916187618143,52.753287833765896],[-127.60894276737655,52.753408543446646],[-127.60873223015962,52.7535353048282],[-127.60852740454882,52.75366590630877],[-127.60832449591062,52.75379815806066],[-127.60812156511085,52.753929853737844],[-127.60791577983407,52.75405991123323],[-127.6077052151265,52.754186106040606],[-127.60748701777604,52.75430680030596],[-127.60725830695353,52.75441922660003],[-127.60701525268429,52.75452064841958],[-127.6067616911173,52.75461435804475],[-127.60650238835996,52.75470310594166],[-127.60624119359744,52.75479132317666],[-127.60598476914664,52.75488282836723],[-127.6057369311308,52.754980385121186],[-127.6054996882078,52.75508844982963],[-127.60526098841491,52.75520717865551],[-127.60504126028592,52.7553368567924],[-127.60486183161099,52.755477192305115],[-127.60481978860169,52.75561788835671],[-127.60481451537309,52.7557989915689],[-127.60480155303271,52.755997579444404],[-127.60479167013688,52.75617931069013],[-127.60475566626857,52.75635748067342],[-127.60471040655615,52.7565363333432],[-127.60465580675826,52.756713627915985],[-127.6045899909426,52.75688884303057],[-127.60451110300349,52.75706198614048],[-127.60443048561822,52.75723852469492],[-127.60434619864515,52.757416225387175],[-127.60424971175021,52.7575901740897],[-127.60413248534351,52.75775600380102],[-127.60398689581636,52.75790764005002],[-127.60380632243475,52.75804238437538],[-127.60359837548265,52.75816517233854],[-127.6033696761565,52.758278720107434],[-127.60312494513455,52.75838575194582],[-127.60287258167084,52.75848729179043],[-127.6026182984535,52.75858717139348],[-127.60236772480032,52.75868699970999],[-127.60212083957161,52.7587862120895],[-127.60186913968616,52.75888101485584],[-127.60161268134516,52.75897251023538],[-127.60135523883326,52.75906234152409],[-127.60109873666958,52.75915272434589],[-127.60084319532862,52.75924420545505],[-127.60059244584842,52.75933954839144],[-127.60035028291577,52.759440943292276],[-127.60000053521846,52.759668788623046],[-127.599778703089,52.759792879912496],[-127.59969493462476,52.759960480931156],[-127.59964501874326,52.760139394422964],[-127.59961653768143,52.760320822233446],[-127.59961025878997,52.76050026111207],[-127.59962995634598,52.76067934548068],[-127.59965989367605,52.760859411044386],[-127.59967775692557,52.76103907639468],[-127.59968261111152,52.76121836326239],[-127.5996828551572,52.7613982779854],[-127.59968216369583,52.761578196486084],[-127.59968147256413,52.761758123928644],[-127.59968449212887,52.761937991743444],[-127.59969305749851,52.762117227861225],[-127.59970256442138,52.762297016070974],[-127.59971486182428,52.762476757211154],[-127.59972809486332,52.762656494529345],[-127.59974316839157,52.7628361977419],[-127.59976009165473,52.76301531969552],[-127.59978444364653,52.763194905208785],[-127.59983297484877,52.76337527270381],[-127.59985165556138,52.76355212869372],[-127.59976239114994,52.76372149017125],[-127.59961894238606,52.76388206730298],[-127.59939965781432,52.764049839688745],[-127.59937769390528,52.76420707300047],[-127.59939618423957,52.76437888276398],[-127.59943639964536,52.764560493655544],[-127.59944594167588,52.764740837104014],[-127.59949528893863,52.764918395524326],[-127.59962198703495,52.76507920511811],[-127.59980920990759,52.765220132408665],[-127.60000070062905,52.76532625158275],[-127.60002818764164,52.76534156978531],[-127.60008950227724,52.76551615772295],[-127.60007211166032,52.765696312652295],[-127.6000099742653,52.765871464539785],[-127.60000130423911,52.76588784117973],[-127.59991608011329,52.766041453966054],[-127.59989047850735,52.76615109182508],[-127.59982583353893,52.76620970759759],[-127.59970002103854,52.76629605190832],[-127.59969029423935,52.76635840201576],[-127.5997729003481,52.76653157852166],[-127.59985179601034,52.76670481456126],[-127.59987979886942,52.766882663918345],[-127.59987078587656,52.767063260301974],[-127.59987658281351,52.76724308959862],[-127.59989816149137,52.76742271247456],[-127.59992622180808,52.767601681913874],[-127.5999838340218,52.767776885172104],[-127.6000005592238,52.76780187385654],[-127.60009963832985,52.76794400351072],[-127.6001241352648,52.7681269493069],[-127.6001059550807,52.76831103354343],[-127.60015036229328,52.768480247165805],[-127.60026081185465,52.76865305211245],[-127.60042272131395,52.768811694108905],[-127.60066127586902,52.7689345489643],[-127.60080181760742,52.769092926174956],[-127.6009359563386,52.769253632550736],[-127.60107472195065,52.769413710625365],[-127.60119137183044,52.769578583342955],[-127.60126471096001,52.76975188515809],[-127.6013233089026,52.76992819511372],[-127.60137638169999,52.7701057014421],[-127.60143036947468,52.77028263924269],[-127.60149360112435,52.770458885780286],[-127.60157248984675,52.77063155554515],[-127.60166338683422,52.770802375296554],[-127.60176167250907,52.77097253803701],[-127.6018627294329,52.77114210683408],[-127.60196284544948,52.771311123432845],[-127.60205742162307,52.77148133658374],[-127.60214371709496,52.77165333974256],[-127.60221525004889,52.77182779542658],[-127.60227295504518,52.77200467295315],[-127.60231953107468,52.772182267482734],[-127.60235871963619,52.772360527894875],[-127.6023895700424,52.772539458220265],[-127.60241208219009,52.77271905846533],[-127.60242622914024,52.772898217019595],[-127.60242279364313,52.77307873679155],[-127.60240266036666,52.773260049695345],[-127.60238437660698,52.773440772338326],[-127.6023836543063,52.77361956905685],[-127.6024217829539,52.773794480940346],[-127.60252282799128,52.77396348418614],[-127.6026561579337,52.77412699731909],[-127.60278942002137,52.774288278295074],[-127.60293092270933,52.77444663961106],[-127.60307883118044,52.77460267128135],[-127.60322582011926,52.77475871533648],[-127.60336549075663,52.77491765716182],[-127.6035042841996,52.77507774072976],[-127.60365676050075,52.775231467304486],[-127.60383572334574,52.7753736219298],[-127.60403482494904,52.77550765416668],[-127.60424214666963,52.77563821076757],[-127.6044466780577,52.775768805187596],[-127.60463750760347,52.77590519149769],[-127.60476233820495,52.77606433473766],[-127.60485334400933,52.7762374011145],[-127.60499580232467,52.77639630284111],[-127.60505803201575,52.77656976290428],[-127.6050843058843,52.77674987581293],[-127.60511425624334,52.7769293734161],[-127.60515715195068,52.7771070168569],[-127.60520098989743,52.77728521232558],[-127.60523461140446,52.77746353864696],[-127.60524516477719,52.777645552530565],[-127.60530919018763,52.777817301872226],[-127.60544424546755,52.77797630432796],[-127.60559863741756,52.77813112304389],[-127.60575760062554,52.77828420202557],[-127.60593935379096,52.778425750262485],[-127.60611383080457,52.77857132567227],[-127.6062809895156,52.77871980791669],[-127.60644364224166,52.77887170552247],[-127.60659624816151,52.779028233298],[-127.60663433550874,52.77920145815752],[-127.60662072126016,52.779382672983864],[-127.60660712813223,52.77956445245287],[-127.60661758236316,52.779743660560165],[-127.60663454752857,52.77992334440336],[-127.60664967104638,52.78010304448817],[-127.60666571575896,52.78028274089872],[-127.60668822906086,52.78046178370974],[-127.60673036782796,52.780643920453805],[-127.60677340040635,52.78082492397493],[-127.60678377136067,52.78100189118471],[-127.6067138558019,52.781167627960286],[-127.60644835776928,52.78139264713389],[-127.60670783746995,52.78130390070887],[-127.60696533969325,52.78121238290793],[-127.6072248172253,52.78112363532878],[-127.60749020604888,52.7810443296795],[-127.60776460860005,52.780982278975486],[-127.60805658214494,52.78094297055092],[-127.60835588214576,52.780925414867035],[-127.60864949983153,52.78092979031564],[-127.60894131745988,52.78096053643348],[-127.60923009202938,52.78100870273005],[-127.60951551929098,52.781066993807336],[-127.60979881198242,52.78116679746355],[-127.61006470634089,52.78119957358657],[-127.61032414996238,52.78113492435092],[-127.61058906235048,52.78104273175718],[-127.61084295360678,52.78092939194498],[-127.61106648710889,52.78079908944608],[-127.61124129028808,52.78065713456597],[-127.61137011890145,52.78050291573411],[-127.61146877425416,52.780336215976746],[-127.6115466355613,52.78016027829102],[-127.61161600255743,52.77998053842622],[-127.61168536863181,52.77980078953634],[-127.61176601991613,52.77962481327444],[-127.61187301783599,52.77945800733946],[-127.61206551805091,52.77931748468646],[-127.61231467630031,52.77927594711151],[-127.61256388089954,52.77928485103307],[-127.61286208854804,52.77931269259094],[-127.6131605194007,52.779322039160064],[-127.61345063057985,52.779307403527916],[-127.61374394731871,52.77935324532201],[-127.61396393031877,52.7794735223047],[-127.61417648944935,52.77959390106844],[-127.61448949095242,52.77954644030107],[-127.61470359771154,52.779412897433616],[-127.61491234644572,52.77928504164291],[-127.61510624353186,52.77915738103151],[-127.61532832248196,52.7790383084479],[-127.6155590146068,52.77892583348822],[-127.6157980091453,52.77881213167231],[-127.61604760674838,52.778708927766075],[-127.61631333951979,52.77863912941629],[-127.61659895419376,52.778604361816406],[-127.61689736253591,52.77858848223762],[-127.6172010544985,52.778589334320635],[-127.61750062888748,52.77860425877719],[-127.6177886821061,52.778633913771465],[-127.61807198813472,52.77868493162782],[-127.61835024197639,52.77875003489747],[-127.61862684612878,52.77882020008068],[-127.6189042231173,52.778886426140254],[-127.61917626594986,52.7789588949171],[-127.61944653839845,52.77903362942247],[-127.61972383342552,52.77909762176875],[-127.6200088162988,52.77914412804102],[-127.62029731468523,52.77918498029939],[-127.62058660682274,52.77922245803209],[-127.6208776707081,52.77925766866613],[-127.62116963434958,52.77929230118579],[-127.62146072062349,52.7793280750346],[-127.62175097140249,52.779366092656474],[-127.62203857993579,52.77940807392719],[-127.62232127988692,52.779467501638884],[-127.62259879446698,52.779537080021996],[-127.62287946953141,52.779592050615946],[-127.62316998441993,52.779612690837695],[-127.62346647819228,52.77961979615057],[-127.62376644394779,52.779620126929075],[-127.62406707486063,52.779613722015974],[-127.62436653564728,52.77960116281778],[-127.62466210699863,52.77958361693453],[-127.62495096065867,52.77956055862365],[-127.62517725939847,52.7794554160265],[-127.62539421599656,52.779324620539796],[-127.62562953786365,52.779212626239605],[-127.62590752576719,52.77917234585985],[-127.62620717500904,52.77916482806871],[-127.6265093777521,52.77917520934783],[-127.62680273233858,52.77919747812254],[-127.62709213711624,52.77923774519448],[-127.62738249916117,52.77927855426757],[-127.62767436166901,52.77931037417303],[-127.6279662394616,52.7793421931454],[-127.62825895298792,52.77937175788525],[-127.62855239525649,52.77939626300284],[-127.62884736756853,52.77941178747415],[-127.62914537534225,52.7794098897642],[-127.62944324820029,52.77940406534763],[-127.62973707162716,52.779413998778274],[-127.63001943998954,52.77946443608945],[-127.63029869542167,52.77953061833499],[-127.63058959835097,52.7795613234206],[-127.63088619433574,52.77954654546894],[-127.63117852179677,52.77951726269276],[-127.63146967780128,52.77948182574323],[-127.63175877794,52.77944081189444],[-127.63204487170186,52.77939423438793],[-127.63232889453748,52.77934208022279],[-127.63260988921242,52.779283797777104],[-127.63288791363463,52.77922051618717],[-127.63315814835494,52.779147818767775],[-127.63341852246069,52.779060120667204],[-127.63367795320985,52.77897187014871],[-127.63394820626766,52.778899726595455],[-127.6342317736467,52.77883580851491],[-127.63452289334977,52.77877513836986],[-127.63481461280448,52.77873016148893],[-127.63510179178213,52.7787121411785],[-127.6353805339101,52.778740762015566],[-127.6356529256445,52.77882159975317],[-127.63592227076968,52.7789198497187],[-127.6361918232015,52.77899903991496],[-127.6364626708829,52.77901543782992],[-127.63673249026941,52.77893208428072],[-127.63700979775246,52.778850302513725],[-127.6373030730897,52.77882154709791],[-127.63760457409138,52.77881397427074],[-127.637896989981,52.7788356724621],[-127.6381829264187,52.77888212151603],[-127.63846577424668,52.778944871407205],[-127.63873623058359,52.77902347823065],[-127.63898499347916,52.779117525052385],[-127.63919783626635,52.7792434602777],[-127.63939540420212,52.779382504162605],[-127.63960639326098,52.77950846457458],[-127.63985947139973,52.779594037576466],[-127.64015104853029,52.77964208895367],[-127.64044571484771,52.77967383802464],[-127.64074304433562,52.77970218622567],[-127.64104197875209,52.77972434146493],[-127.6413376846915,52.77973477555363],[-127.64162134905023,52.77972183733621],[-127.64185635085008,52.77960253268004],[-127.64206399070672,52.779471836110545],[-127.6422937009342,52.77935988636669],[-127.64257822231265,52.779297046626],[-127.64285130244042,52.77934702735273],[-127.64310690395052,52.77944938144009],[-127.64331157234129,52.7795799077366],[-127.64355680843796,52.77967847827181],[-127.6437652280701,52.77980950721368],[-127.64397542590385,52.77993883390912],[-127.64422145040199,52.78003347315626],[-127.6444871684398,52.78010933542706],[-127.64476006859107,52.78017837061938],[-127.64503832931557,52.78024228118953],[-127.64530843934732,52.780311354262786],[-127.64557516152402,52.780388885941505],[-127.64584841053902,52.7804668814194],[-127.64612257362292,52.780520758326226],[-127.64641291233973,52.78058450511321],[-127.64668238657407,52.78066086574851],[-127.64696058869738,52.780723095689886],[-127.6471807359037,52.78079679401379],[-127.64747324327865,52.78084424935199],[-127.64791764731021,52.78078532035514],[-127.6481325900401,52.78077221116014],[-127.64843746541523,52.78080323188315],[-127.64873177852047,52.78082544159846],[-127.64902447331619,52.78085383413308],[-127.64931465760137,52.78088954300889],[-127.64960144778877,52.780933154606295],[-127.64988747571834,52.78098125110814],[-127.65017177815744,52.781032743049266],[-127.65045610275193,52.78108478999401],[-127.6507395139267,52.781137405111224],[-127.65102468889354,52.7811871968022],[-127.65131067716337,52.78123417843711],[-127.65159409038144,52.781286791484284],[-127.6518822395428,52.781341588036405],[-127.65215966292499,52.78140717964004],[-127.652391361521,52.78151489042339],[-127.65248890976346,52.781683902033535],[-127.6524985995167,52.78186255429225],[-127.65248615824876,52.78204489021881],[-127.65251039562627,52.782215490728085],[-127.6525186993288,52.78240593702564],[-127.65252034681075,52.78259255821263],[-127.65253766126303,52.78275204660606],[-127.65251691993221,52.78296028146431],[-127.65248744551346,52.783134445575016],[-127.65248945716911,52.783354681368415],[-127.65263218894901,52.78346700808819],[-127.65296133588154,52.7835010471442],[-127.65326771056527,52.78349840564973],[-127.65355411162682,52.7834596182454],[-127.65371884187714,52.783324466277136],[-127.65381543692544,52.78310900075529],[-127.65395416332811,52.78295010994678],[-127.65406650876794,52.78278150236763],[-127.65420817685451,52.78262648858752],[-127.65441084150534,52.782487993541935],[-127.65464429173792,52.7823770878064],[-127.65479866233514,52.782358660271456],[-127.65522740994689,52.782374464091866],[-127.65550292383898,52.78243839790243],[-127.65572022636343,52.78255807106288],[-127.65592778361481,52.78268965600887],[-127.65615513278165,52.78280471164562],[-127.65640773381324,52.782900344890614],[-127.65667542632545,52.783001934195234],[-127.65687995893059,52.78310329425197],[-127.65708952304098,52.7832623168746],[-127.65725823359656,52.78339781126744],[-127.6574638778598,52.783527734653404],[-127.65768040141361,52.7836507871143],[-127.65790061716281,52.78377322202558],[-127.65812446006785,52.783893363328154],[-127.65835365607583,52.784007823712514],[-127.65859180910022,52.78411374529421],[-127.65884239318528,52.784204927045934],[-127.65912340626797,52.7842665238486],[-127.65941658872569,52.78430665850123],[-127.65971254852234,52.7843226479627],[-127.660016071435,52.784318352318735],[-127.66030228554001,52.78434624385293],[-127.66051572442453,52.784461488122346],[-127.66075265961136,52.784559575905696],[-127.66104477423696,52.78464399516994],[-127.66131692516709,52.784716365920325],[-127.66159434136475,52.78478081471977],[-127.66184954080101,52.78487080380516],[-127.6620781215325,52.784993112508324],[-127.6624015285948,52.78518918121242],[-127.66256026598064,52.785186931167004],[-127.66285223639267,52.78519567861279],[-127.66315818672618,52.78518181681218],[-127.66345494391032,52.78519442273336],[-127.66374852681098,52.785220524486526],[-127.6640413269881,52.78525055550054],[-127.66433325756068,52.78528228405712],[-127.6646252470812,52.78531513201889],[-127.66491658540659,52.785355279246716],[-127.66520783657464,52.78539317610139],[-127.66549955056115,52.78541930003803],[-127.66579329262531,52.78542578207653],[-127.6660891273898,52.785414289271955],[-127.6663854897901,52.78539270851846],[-127.6666817861416,52.785369442021114],[-127.6670139903617,52.78529073718297],[-127.66728973257148,52.78533557510555],[-127.66756172582137,52.7853799096912],[-127.66784974807602,52.78543018550189],[-127.6681377052016,52.785478775609604],[-127.66842378442422,52.785526826766],[-127.66872540788452,52.7855208587571],[-127.66902141911925,52.785490299650846],[-127.66920328287543,52.78560485679676],[-127.66933832164204,52.78578060323943],[-127.66953307224188,52.785915709819946],[-127.66976870560022,52.78602725877833],[-127.67001323546059,52.786129147919276],[-127.67026403063622,52.78622477755058],[-127.67051666173603,52.78631982450878],[-127.67078755257377,52.78640676407244],[-127.67106023548313,52.786492000526216],[-127.67129096383296,52.78659688161592],[-127.67143865272644,52.78673938147322],[-127.67151696232581,52.78691313593573],[-127.6715697121826,52.78709790824678],[-127.67163891548721,52.7872762762382],[-127.67171997533607,52.78744887036955],[-127.67180105759098,52.787622020113595],[-127.671882118751,52.787794614093976],[-127.67195951121211,52.78796838126768],[-127.67203229230137,52.78814277908091],[-127.67210599451795,52.7883171547386],[-127.67218153220811,52.7884909481741],[-127.67226445319002,52.78866351532409],[-127.67235749121545,52.78883369623463],[-127.6724625400045,52.789002028847726],[-127.67257309360664,52.78916859693667],[-127.67268550473565,52.78933513842698],[-127.67279424727836,52.78950285308514],[-127.67288645609662,52.78967528729018],[-127.6729722624541,52.78985005465496],[-127.67309097025819,52.79001145710876],[-127.6732805551947,52.790156163885605],[-127.67352340691932,52.790261432718715],[-127.67381164323677,52.790292625913594],[-127.67411301264774,52.79025581720398],[-127.67436395506861,52.790164800345444],[-127.6745999243377,52.79004709357639],[-127.67483687930232,52.78993105815989],[-127.6750879940385,52.78984452107776],[-127.67536734267752,52.78981474932357],[-127.67566699385796,52.78982896045127],[-127.67597241330853,52.78984813721984],[-127.67627022789618,52.78983939777724],[-127.67656639595006,52.789812189687844],[-127.67686330127266,52.789779921482314],[-127.6771594681844,52.78975270293206],[-127.67745155798981,52.78974012343982],[-127.67773729166842,52.78975452831276],[-127.67801279880109,52.78981616827143],[-127.67828451590684,52.78989971614611],[-127.67855952198147,52.78997200668964],[-127.67883878877335,52.790034702932694],[-127.67911897765757,52.79009739428832],[-127.67939909375572,52.79015783512855],[-127.67968181237129,52.790213763149886],[-127.67996516602109,52.79026239064703],[-127.68025658451327,52.79027951492004],[-127.68055664246668,52.79025671594501],[-127.68083352859044,52.79030599898876],[-127.6810987851606,52.79039018901673],[-127.68136138295893,52.79047778842964],[-127.68162094461216,52.79058223630514],[-127.68189571067205,52.790554200652835],[-127.68217515655644,52.79050311295907],[-127.68245606829953,52.79044247086999],[-127.68273675149108,52.79037567054414],[-127.68301634367988,52.79030496628737],[-127.68329219929367,52.790233750002194],[-127.68355343664179,52.79014536339997],[-127.68379912788097,52.79003927285943],[-127.68407648250117,52.79000614602677],[-127.68437524633416,52.79002146867798],[-127.68467370852004,52.790052497408695],[-127.68496406639004,52.79008980263712],[-127.68525203017795,52.79013723025326],[-127.68554069444583,52.79017904226898],[-127.6858330574587,52.79019669514266],[-127.68612975267199,52.79018290689825],[-127.68642640310071,52.790167988609255],[-127.68672670051176,52.790151340156875],[-127.68701718518281,52.79016846109428],[-127.68729653224081,52.790232822174524],[-127.68757090786107,52.79031239167249],[-127.68784678663769,52.7903829621993],[-127.68812872068911,52.79041870390305],[-127.68842214586316,52.790416157649226],[-127.68872195694573,52.790387180456115],[-127.68901539999474,52.790338116754434],[-127.68929059078522,52.790273621610275],[-127.68954054320982,52.79018203008593],[-127.68977378893288,52.79006712936797],[-127.68999744002436,52.789944528580946],[-127.69022779496659,52.78982687061665],[-127.69045229771152,52.7897025706964],[-127.69059578005512,52.789549171908824],[-127.69069690262526,52.789381810884315],[-127.69079706629857,52.789213898596536],[-127.69089626429026,52.789044888112166],[-127.69099360450882,52.788875895328935],[-127.69108997906572,52.78870580435502],[-127.6911854167646,52.7885357178122],[-127.6912789750877,52.78836510225954],[-127.69137251065752,52.78819393092914],[-127.69146416651984,52.78802222163186],[-127.69155488592476,52.787850525738435],[-127.69164468373631,52.787678843036886],[-127.69173351559016,52.78750605319788],[-127.69182049731845,52.78733384595019],[-127.6919065354802,52.78716109621744],[-127.69199165209697,52.78698835968607],[-127.69207581031331,52.786815080887784],[-127.69215905416844,52.78664237119365],[-127.69224135414116,52.786469110059585],[-127.69232181929833,52.78629644028299],[-127.69240136297469,52.78612378371882],[-127.69244024798311,52.78595676264185],[-127.69246510863984,52.7857635965545],[-127.6924997249933,52.78558262035958],[-127.69253433353053,52.7854010792711],[-127.69257319498614,52.7852334934236],[-127.69260697843676,52.78505477108875],[-127.69264820981448,52.78487650620133],[-127.69269411142197,52.78469872987364],[-127.69274744558967,52.78452140223099],[-127.69280922985503,52.78434620348819],[-127.6928717492669,52.784165945205714],[-127.69293031844437,52.783980139009444],[-127.69300869769167,52.78380189360986],[-127.69312876092076,52.7836443448824],[-127.69331233001068,52.783518943388],[-127.69355275225617,52.78342243094385],[-127.69382731411052,52.783343360528576],[-127.69411322059014,52.78326973045544],[-127.69438778042587,52.78319065872043],[-127.69464809783399,52.7831039452936],[-127.69490747857179,52.78301724480556],[-127.69516779386848,52.7829305302156],[-127.69542815257603,52.78284493537647],[-127.69569423517257,52.78276318508072],[-127.69596889985289,52.782686905971104],[-127.6962435490575,52.78261063539201],[-127.69650870752699,52.78252888759083],[-127.69675573306247,52.782435079738875],[-127.69697223241606,52.78232097049473],[-127.69713636057391,52.78217454539772],[-127.69727472266648,52.78201056626986],[-127.69741967693699,52.7818487245198],[-127.69759502905444,52.781704387156566],[-127.69778455447197,52.781566005209754],[-127.69797978117661,52.781430903314025],[-127.6981797214493,52.781297409792685],[-127.69837966807208,52.78116448078209],[-127.69860402733437,52.78103792367883],[-127.69886213994319,52.780919844987714],[-127.6990612956447,52.78079028912117],[-127.6991236945972,52.78063132698348],[-127.69912338095453,52.78045982168479],[-127.6990903305188,52.78028262977823],[-127.6990385392916,52.780101216481874],[-127.69897827678736,52.779917127912256],[-127.69892268526115,52.77973353660082],[-127.69888292373234,52.7795508279305],[-127.69887022635746,52.77937165506756],[-127.69890136531656,52.77919745201984],[-127.69898753669307,52.77902917751689],[-127.69911002215807,52.778863183698434],[-127.69924552932966,52.7786981130432],[-127.699370767225,52.77853151402972],[-127.69946520646741,52.7783608772785],[-127.69954374889164,52.7781876728491],[-127.69961198489568,52.778012366787685],[-127.69967276637907,52.77783605669385],[-127.6997279416246,52.77765926282847],[-127.69977846103988,52.77748197142375],[-127.69979635005028,52.77732477464354],[-127.6997538172987,52.777119130480415],[-127.69977887024567,52.77693212827428],[-127.6997932472328,52.7767800222806],[-127.69988520073092,52.77659372719248],[-127.69983245302286,52.77641177168328],[-127.6997903892226,52.77621789542648],[-127.69974832603732,52.77604755079986],[-127.69975045246736,52.77586760669319],[-127.69975908975557,52.77568812419194],[-127.69977650927581,52.775495618567966],[-127.69995177586578,52.775373132522326],[-127.70021762494005,52.77528689021741],[-127.70051135868495,52.7752248955712],[-127.70080378712888,52.77519992054552],[-127.70109482110402,52.775209706553106],[-127.70138847735463,52.775239075497346],[-127.70168433974895,52.775276823560425],[-127.70198003142886,52.77531064543286],[-127.70224074152745,52.7753517003119],[-127.70255917863426,52.77535044001578],[-127.70284807598853,52.77528346975368],[-127.70315385290972,52.77519719684683],[-127.70343668904648,52.77518803938038],[-127.7037330284564,52.77516804015409],[-127.70402802561708,52.77516095549465],[-127.7043237152396,52.77517123081481],[-127.70462557637481,52.77519654449148],[-127.70493492923502,52.77522343442686],[-127.70523949303829,52.775292990649376],[-127.7054094467897,52.77543344906403],[-127.7054884736357,52.775598761514],[-127.7053891373344,52.77578516887748],[-127.70537798194353,52.77594787397094],[-127.70562521888536,52.7760468525826],[-127.70586654933686,52.77616048044935],[-127.70604225578845,52.776305338198554],[-127.70619975283765,52.77645886355125],[-127.70634806740546,52.77661532029396],[-127.7064872072804,52.77677416130585],[-127.70661349707154,52.776937108134625],[-127.70672600868576,52.777103618318506],[-127.70679804463614,52.77727968541368],[-127.70688660727437,52.777451027951656],[-127.7070322631202,52.777610329460124],[-127.70719386118985,52.777773317652894],[-127.70737623924803,52.77792199524514],[-127.70758608286751,52.778037764063264],[-127.70783894754418,52.77809125181814],[-127.70814315538135,52.77808178099134],[-127.70845912151353,52.77806428220282],[-127.70876230171605,52.77807555847303],[-127.709073198203,52.77809401238693],[-127.7093446714575,52.77814834669803],[-127.7095462658901,52.778266474302285],[-127.70969493544335,52.778431333593524],[-127.7098030990284,52.77860463019702],[-127.70985929776884,52.77877924041339],[-127.70987682347709,52.778961705374975],[-127.70988679776357,52.779141482445205],[-127.7098828576533,52.77932145341385],[-127.7100037997586,52.77951249920014],[-127.71007984743628,52.77960275495183],[-127.71039420275258,52.779683921231346],[-127.71062031403383,52.779764696950785],[-127.71084201842893,52.779828165761224],[-127.71107247885756,52.779948111628315],[-127.71135734139924,52.780011769944906],[-127.71161863499202,52.78008978837344],[-127.71180143515204,52.78022500125412],[-127.71195805442194,52.78037909678202],[-127.71211020600406,52.780537732297695],[-127.7122777854909,52.7806871834484],[-127.71245084477839,52.780834303407936],[-127.71263119597333,52.7809779626407],[-127.7128250959092,52.781111890865915],[-127.7130928209105,52.78118812619764],[-127.71338662214175,52.78115020452664],[-127.71361445559543,52.781042068032846],[-127.71376708439304,52.78088793978063],[-127.71388017664184,52.78072094626575],[-127.71400552055292,52.780558248516485],[-127.71412054935006,52.78039290339716],[-127.71420274858292,52.780219635120126],[-127.71428499174854,52.78004747813155],[-127.71440091647689,52.779881563540165],[-127.71459702592801,52.77974697606502],[-127.71481695157556,52.77962717776557],[-127.71507899472432,52.77953871564485],[-127.71536677491632,52.779536183425876],[-127.71565760590131,52.77949381533209],[-127.7158844215669,52.77938400302539],[-127.71614218799232,52.77930456893337],[-127.716408298565,52.7792250031581],[-127.71663618145489,52.77911853666984],[-127.71681507977075,52.77897187532066],[-127.71701218068132,52.77883895500472],[-127.7171866459968,52.77869739789451],[-127.71734298856755,52.77854377503653],[-127.71748900092057,52.77838749628368],[-127.71758495443251,52.778279597023136],[-127.71764806631681,52.77811725030498],[-127.71768327082059,52.77797661109889],[-127.71777971845228,52.77788103526446],[-127.71789752491561,52.77771621012074],[-127.7180598125057,52.77757202294474],[-127.71833557253714,52.77750184400764],[-127.71862151365707,52.77745393497169],[-127.71891609570463,52.777436165271986],[-127.71919308968101,52.777373813116505],[-127.71944260173406,52.77727431460561],[-127.71972500826728,52.77723093861908],[-127.71999637663475,52.77728244300393],[-127.72030445786906,52.77730034345773],[-127.72059504908306,52.77732186270994],[-127.72088768302892,52.77730187463587],[-127.72118050760061,52.77726339117484],[-127.72145539257245,52.77719489462978],[-127.72174350030562,52.777154793017964],[-127.7220868572133,52.777149195008086],[-127.72234659866776,52.77714257322484],[-127.72264177386198,52.77711638244979],[-127.72295576559422,52.777096631428186],[-127.72324886831103,52.777134366059904],[-127.72353235185466,52.77716382943316],[-127.72382621247932,52.77715109791863],[-127.72412045135015,52.77712491717431],[-127.72441459080461,52.77711947100821],[-127.72472152762357,52.77708581108305],[-127.72500840877754,52.77706141331903],[-127.72533496979608,52.77700784123991],[-127.72564313419642,52.77702741242566],[-127.72588485608568,52.777080460552135],[-127.72617747860042,52.77708344420968],[-127.72647147371042,52.777074067044424],[-127.72675944007148,52.77703059213046],[-127.72704853045775,52.776992148895715],[-127.7273324664098,52.776940884966905],[-127.72761527700517,52.77688458796678],[-127.7278852220846,52.776808866955996],[-127.72813098358577,52.77670940484483],[-127.72829014686621,52.77655796692566],[-127.72843294186603,52.77636921226202],[-127.72852256736664,52.776197500068164],[-127.72852273906341,52.776018138514345],[-127.7285219676787,52.77583823482852],[-127.72858263441498,52.775662465417156],[-127.72873407952301,52.77548087364147],[-127.72893972395775,52.77539992800087],[-127.72921164936793,52.775327537474894],[-127.72951968290722,52.77525237172315],[-127.72976856685682,52.775207223610934],[-127.73007243578253,52.775235814348335],[-127.73032807552504,52.775311632842055],[-127.73033009565101,52.775132243792555],[-127.73032831300438,52.774950668848426],[-127.73025194496881,52.77478476745985],[-127.73002141319354,52.77466373855027],[-127.72988988882943,52.77451153767784],[-127.7298628143562,52.774370135651324],[-127.73030085649435,52.774295847567046],[-127.73059731326494,52.77427914142907],[-127.73088032924628,52.77422844705163],[-127.73116301157715,52.774169900963535],[-127.7314397997445,52.77410303822846],[-127.73170495980338,52.77402458058034],[-127.7319639979761,52.77393219579833],[-127.73220847203586,52.7738243316268],[-127.7324141407556,52.77369853934637],[-127.73253955268912,52.773539746671396],[-127.73262425074736,52.7733613775185],[-127.73275990651553,52.77320355416872],[-127.73295954075807,52.77306608399884],[-127.73319555741409,52.772956100603366],[-127.73346193778328,52.772884902736045],[-127.73375062233289,52.7728369154038],[-127.7340412382328,52.772791140783134],[-127.73432987602153,52.772742031696],[-127.73462522880527,52.77269842753632],[-127.73490711219756,52.77264325592366],[-127.73515999600264,52.77255992283053],[-127.73539009506013,52.77244161045335],[-127.73559045576305,52.77229964080825],[-127.73574301994626,52.77214661237383],[-127.73577699918826,52.77197739439893],[-127.73573040268354,52.77179032124841],[-127.73578741334259,52.77161684324619],[-127.73590506462229,52.77145031437319],[-127.73600495536618,52.771280685325905],[-127.73606274006626,52.77110326765856],[-127.73608797182868,52.770924654951905],[-127.73606208479359,52.77074455716188],[-127.73597158621774,52.77057382803931],[-127.73588106542535,52.770402534183035],[-127.7358107315368,52.77022533636901],[-127.73577570369547,52.770048736793996],[-127.73586157487898,52.76987707323181],[-127.73593704104664,52.76970051465092],[-127.73609335949185,52.76954910677392],[-127.73633149242181,52.76944581107933],[-127.73662629488341,52.769412298585976],[-127.73690730169194,52.769358811690964],[-127.7371569156368,52.769264312187104],[-127.7373986192433,52.76915759832928],[-127.73764227662112,52.76905366198068],[-127.73788888314303,52.768953600409795],[-127.73813551111414,52.768854093996154],[-127.73838406221671,52.76875624451296],[-127.73863646038708,52.768661700437185],[-127.73889567903117,52.76857490165642],[-127.739163627701,52.76849750579007],[-127.73943851867391,52.76843120735993],[-127.73971335540195,52.768363232052835],[-127.73998125564361,52.7682847139803],[-127.7402541743888,52.768215644834314],[-127.74054634869718,52.76818608033094],[-127.74083343470997,52.768145389572275],[-127.74109247096006,52.76805466050103],[-127.741206540348,52.76789210666452],[-127.74119550167994,52.76771234484049],[-127.74110306468785,52.76753996192781],[-127.7411088192102,52.76736220163302],[-127.74113035384488,52.76718419798457],[-127.74104346257216,52.767011176602274],[-127.74088773083963,52.76685766955209],[-127.74073946026178,52.76670460752634],[-127.74071894052346,52.76651994629172],[-127.74056923495542,52.76637755938926],[-127.7403324453599,52.766262248262464],[-127.7402070019506,52.76609988760279],[-127.74018304733235,52.765922003263874],[-127.74016832527722,52.76574286084634],[-127.74015912449163,52.76556251544279],[-127.74015363494676,52.76538211492782],[-127.74014908065736,52.765201700508776],[-127.7401473249611,52.76502180054487],[-127.74015487006312,52.76484232748246],[-127.74016331282658,52.764662285052744],[-127.74016251527897,52.764482935788756],[-127.74014126901922,52.76430332506894],[-127.74012095848856,52.76412370940446],[-127.74010346145637,52.76394460797303],[-127.74009520429195,52.763764804373146],[-127.7400934492464,52.76358491320097],[-127.74005277405655,52.76340671178721],[-127.74007996916058,52.76323087486325],[-127.74024845418718,52.763082642652144],[-127.74037264258435,52.76291825272336],[-127.7405553908334,52.76277821131866],[-127.74076363591375,52.76264901001657],[-127.74098720243236,52.76253134686378],[-127.74123568723486,52.76243292628261],[-127.74149578312958,52.762346107727744],[-127.74176662342153,52.76227258103433],[-127.74203752329292,52.762200173821725],[-127.74230936556434,52.762128316947276],[-127.7425802030768,52.76205478836378],[-127.7428510771626,52.761981814614394],[-127.74312099252225,52.761908298457975],[-127.74339185027874,52.761835332635464],[-127.74366364187759,52.76176234331058],[-127.74393455834314,52.76169049633693],[-127.7442073828733,52.761620297359904],[-127.74448024403324,52.76155065320765],[-127.74476099153333,52.761492666115664],[-127.74504580720517,52.76144302984084],[-127.74532460632041,52.761382828357],[-127.74560033134502,52.761315380917814],[-127.7458711959553,52.76124240911786],[-127.74613618089873,52.76116223320282],[-127.74639724000552,52.76107651010163],[-127.74665832900969,52.76099190696524],[-127.7469213330007,52.760908395699374],[-127.74718342357035,52.76082545346106],[-127.74744544459423,52.76074083461917],[-127.7477055633946,52.76065512252156],[-127.74796565842442,52.760568854158535],[-127.74824188183528,52.76049130378051],[-127.74851148076388,52.76041049748101],[-127.7487014803343,52.760289956638594],[-127.74876638965942,52.760106819063544],[-127.74883326404347,52.759903482824136],[-127.74893926949447,52.759749443266784],[-127.7491738665647,52.759766120808074],[-127.74945447899483,52.75984095983718],[-127.74974444345466,52.75994032987596],[-127.75001093443707,52.76003331462619],[-127.7502474862306,52.760143005034244],[-127.75047501503806,52.76025899978783],[-127.75069438659712,52.76037959103447],[-127.75083475004925,52.76004455324338],[-127.75092512567869,52.7598716880218],[-127.75104162771207,52.759701795439994],[-127.7512303146683,52.75957230177943],[-127.7514759603563,52.75947334509001],[-127.75174447391544,52.75938918428745],[-127.75201215766818,52.759307268315695],[-127.75228100550201,52.75923094835607],[-127.75255577059671,52.759163498442994],[-127.75284053853981,52.759113278510455],[-127.75312434794955,52.75906251618755],[-127.75340009166209,52.7589961706308],[-127.75366596082583,52.75891540790733],[-127.75394385706706,52.75885631992379],[-127.75423575118961,52.758821684131746],[-127.75453002884332,52.7587998991342],[-127.75482836194661,52.75878646478655],[-127.75512214116138,52.75879776024269],[-127.75541480997359,52.75887241354499],[-127.75567510247284,52.75885954676755],[-127.7559023875478,52.75874347531193],[-127.75612437331878,52.75861123251762],[-127.75625998298183,52.758319978038145],[-127.75636157148841,52.758149182064926],[-127.75651216355386,52.75799670889935],[-127.75673188301157,52.75787739496203],[-127.75696387478146,52.75776293671772],[-127.7571730577804,52.75763592374547],[-127.75737650480188,52.757504521269176],[-127.75758093968372,52.75737478064019],[-127.75778725139487,52.75724556750255],[-127.75799450526821,52.757116904833914],[-127.75820367402697,52.756989334063164],[-127.75840904734379,52.756860142787495],[-127.75859634116908,52.75672000323458],[-127.7587931866773,52.7565864551031],[-127.75904832702344,52.75649350047786],[-127.75926123121441,52.75636699263081],[-127.75939767191895,52.75629936928644],[-127.7594803036106,52.756299805859236],[-127.75964031535098,52.75655692432224],[-127.75970877807765,52.75673189662613],[-127.75977172188871,52.756908072763615],[-127.75973529197204,52.757105354293955],[-127.75989219623119,52.75724144884226],[-127.76005251007962,52.75741559769316],[-127.76018088371335,52.757557725396275],[-127.7603118745916,52.75771830599344],[-127.76047311620897,52.757869463911064],[-127.7606325811771,52.758022890336775],[-127.76074976048831,52.75818591995251],[-127.7608191505755,52.75836087759599],[-127.76086643129348,52.75853953040643],[-127.76088309288477,52.758718643194335],[-127.76086915785926,52.758898771654074],[-127.76084591529803,52.759077927866414],[-127.76088014880473,52.75925565558937],[-127.7609237201475,52.759434364016776],[-127.76094876999639,52.75961447169543],[-127.76089270538246,52.75978570881292],[-127.7608923926161,52.75995835035814],[-127.7609091933496,52.760140823949214],[-127.76095185351662,52.760320101991155],[-127.7610018435091,52.76049703681136],[-127.7610740288464,52.76067195211385],[-127.76114898198422,52.76084626078139],[-127.76124785650069,52.76101573485129],[-127.76137691425173,52.76117410112302],[-127.76155835108582,52.76131934889635],[-127.76170946767446,52.76147233422901],[-127.76180275636857,52.76164132677557],[-127.7618713055558,52.761817982196106],[-127.76194443181352,52.76199288275472],[-127.76201935306267,52.76216663525701],[-127.76209706549555,52.76234034574215],[-127.76217754586318,52.76251344956172],[-127.76225615695847,52.76268659038668],[-127.76232647238365,52.76286096791785],[-127.76237278302315,52.76303851332827],[-127.76241909404739,52.76321605869976],[-127.76246357326262,52.763394196572136],[-127.76251265241622,52.76357113526463],[-127.7625626755907,52.763748624719966],[-127.76261453176477,52.76392553055368],[-127.76266824350976,52.76410239948027],[-127.76271918828958,52.76427987496797],[-127.7627719809414,52.76445676660765],[-127.76282754953982,52.76463360749681],[-127.76288955972548,52.76480923942715],[-127.76297834428185,52.76498109663655],[-127.76310040756297,52.765194495821326],[-127.76307690025703,52.76532208910015],[-127.76292172859496,52.76547631583546],[-127.76275709343645,52.765626209544386],[-127.76267136174359,52.76579844894767],[-127.7626388301758,52.76597774442945],[-127.7626943539874,52.76615346488518],[-127.76278778736287,52.766325261184335],[-127.76288761591272,52.76649471023479],[-127.76298834271691,52.766663589661526],[-127.7630807969276,52.76683427941521],[-127.76319074879935,52.76700133390976],[-127.76331635169045,52.76716535483495],[-127.76339678537369,52.76733734613556],[-127.76344037547841,52.76751605267708],[-127.76345057203199,52.76769581752704],[-127.76337414065586,52.76786848228316],[-127.76323213587764,52.768027004020425],[-127.76308923255266,52.76818609508906],[-127.76298656468249,52.768352984010555],[-127.76296614821132,52.768533218099066],[-127.7630004672602,52.768712620092394],[-127.76305878748276,52.76888830705143],[-127.7631272839588,52.76906327593832],[-127.76320132489774,52.76923759639733],[-127.76327907829354,52.76941186993113],[-127.76335497620457,52.769586162342684],[-127.76343186472987,52.769762125796674],[-127.76355091973556,52.769924567763056],[-127.76372125164322,52.77006997906545],[-127.763915400895,52.77020718470389],[-127.7641159233823,52.77034148711575],[-127.76431546592276,52.77047469189476],[-127.76451862028848,52.77060503496832],[-127.7647254263715,52.77073420172002],[-127.76493133617957,52.77086393762899],[-127.76513184198498,52.77099768256945],[-127.76535754354613,52.77111199059539],[-127.76563115998276,52.77119475328484],[-127.76588645890392,52.77128395232382],[-127.76605102000566,52.77142384217119],[-127.76612813114508,52.77160484057827],[-127.7661586998159,52.771782620982925],[-127.7661559645505,52.77196371006248],[-127.76615785299053,52.77214416448047],[-127.76616443484623,52.77232566918856],[-127.7662622730156,52.772491226037765],[-127.76640896112427,52.77264819977417],[-127.76641463173051,52.77283027417553],[-127.76640916738077,52.773012525278155],[-127.76654253374835,52.77316128746049],[-127.76679840226467,52.77326392815432],[-127.76707239976996,52.77333322973969],[-127.76735342770816,52.77339289164444],[-127.76763000947224,52.77345710395946],[-127.76789249460083,52.77354002038226],[-127.76815327913899,52.773626333875434],[-127.76841400314069,52.77371151773339],[-127.76867476640403,52.77379726542009],[-127.7689275196708,52.77389154545156],[-127.76917040673162,52.77399437691942],[-127.76941509596695,52.77409549469764],[-127.76966615891776,52.77419371773403],[-127.76993391887461,52.77426926797282],[-127.77021728411817,52.774317677734345],[-127.77050681342178,52.77435814666091],[-127.77079712452222,52.774395240037805],[-127.77108844137709,52.77443400351246],[-127.77137709818969,52.77447560450257],[-127.771666606247,52.7745155059254],[-127.77195613826349,52.77455597126868],[-127.77224304230434,52.77460040365191],[-127.77252566287567,52.77465330320229],[-127.77280134822041,52.774718073082035],[-127.77306917834817,52.77479473622145],[-127.77333445056406,52.774877042507406],[-127.77359878839016,52.77495936233801],[-127.77386850088375,52.77503656020177],[-127.77413645964367,52.77511658203852],[-127.77437743200448,52.77521718987998],[-127.77456426965539,52.77535616597331],[-127.77474395552997,52.77550142007474],[-127.77496162642336,52.7756225576509],[-127.77519383560777,52.775735627643606],[-127.77541515134652,52.775855032181255],[-127.7756074849421,52.77599168140717],[-127.77578892507738,52.776134665352096],[-127.77598215861826,52.7762707443245],[-127.7762007492801,52.77639130969936],[-127.77643113298616,52.77650496097249],[-127.77666512235152,52.776616324114606],[-127.7768945965415,52.7767305532685],[-127.77710412137866,52.776856294449274],[-127.77726643833594,52.77700796908393],[-127.77741980275482,52.77716763525312],[-127.77761520818562,52.77728854052133],[-127.77788956354169,52.77734323872202],[-127.77815591505637,52.77736162027328],[-127.77846479316163,52.77737542821066],[-127.77875288181095,52.77738059156652],[-127.77904823373883,52.77735929573464],[-127.77934046720151,52.77733019938421],[-127.77963253673595,52.777297176757074],[-127.77992346049835,52.777259130711634],[-127.78021040634427,52.77721441824736],[-127.78049332129562,52.777162484172685],[-127.78077118215595,52.77710052806658],[-127.78104505022407,52.77703191481888],[-127.78131785629415,52.77695994503837],[-127.78159165231578,52.77688964557008],[-127.78186845772716,52.77682490478664],[-127.78214732013605,52.7767646161292],[-127.78242813999782,52.776707104059945],[-127.78270991773714,52.77665013276514],[-127.78298979192779,52.77659206870971],[-127.78326954826052,52.7765311987432],[-127.78354443765151,52.776464806015305],[-127.78381534180967,52.776392303185084],[-127.78408715690671,52.77631922085975],[-127.78436199687118,52.77625170590263],[-127.7846408371728,52.77619141151975],[-127.78492465180862,52.77613888785071],[-127.78521262233158,52.776096945379685],[-127.78550359462332,52.77606000554033],[-127.78579471565529,52.77602699074703],[-127.78608789407271,52.775998418983],[-127.78638220366989,52.77597487830579],[-127.78667677082053,52.775957503036885],[-127.78697244537953,52.77594458524758],[-127.78726921941474,52.77593557799525],[-127.78756514324624,52.775928268961216],[-127.78786205769468,52.77592262111656],[-127.78815941734749,52.77592761091166],[-127.78844526252324,52.77596809211666],[-127.78872194833797,52.77603393973788],[-127.7890046689669,52.77608847549719],[-127.78928908229665,52.776139065675956],[-127.78957610003549,52.77618513135363],[-127.78986392182526,52.77622838600273],[-127.79015172053782,52.77627107531239],[-127.79043956677728,52.776314884215815],[-127.79072565150062,52.77636096135842],[-127.7910092271776,52.77641380224451],[-127.79129195323891,52.77646833247642],[-127.79157726026284,52.77651778250267],[-127.79186584226015,52.77655709263059],[-127.79215791671962,52.776590743584094],[-127.79244985946669,52.776621597767296],[-127.79274269068904,52.77665130765889],[-127.79303469614068,52.776683280458066],[-127.79332499555179,52.77671919771051],[-127.79361747188321,52.776762363091954],[-127.79388890827087,52.776835561126404],[-127.79408929747758,52.776963654523755],[-127.79424908705717,52.77711983828235],[-127.79435695794331,52.77725607298291],[-127.79408419998781,52.77741718915925],[-127.79390750033379,52.77756562496104],[-127.79388977470455,52.777740775023275],[-127.79389915784618,52.77791999441955],[-127.79389240071087,52.77811291293108],[-127.79390647868205,52.778293181480606],[-127.79392100695004,52.778462232940946],[-127.79393577056327,52.77863688587125],[-127.79395937325957,52.7788231697593],[-127.79400115267028,52.77899965137821],[-127.79401704935259,52.7791793359729],[-127.7940320251402,52.7793590256669],[-127.7940451452691,52.77953875269748],[-127.79405548830336,52.77971851322576],[-127.79406116022112,52.77989778917211],[-127.79405571879342,52.78007780011192],[-127.79403820426876,52.7802579867636],[-127.7940197692975,52.780438196438624],[-127.79405278706236,52.780627143099345],[-127.79407685637976,52.780802209444566],[-127.79411112807527,52.780977128650626],[-127.79414447898435,52.781152052950134],[-127.79418781200233,52.781321228392095],[-127.79420671369296,52.78150590682585],[-127.79426614707795,52.781682674021994],[-127.79432647831885,52.78185887141363],[-127.79438499235725,52.78203566155837],[-127.79443611360853,52.78221367682751],[-127.79447996656707,52.7823951752908],[-127.79453480122939,52.78257313366683],[-127.79462083213103,52.78274165546992],[-127.7947710427204,52.782890693789284],[-127.79497996503524,52.78302201808855],[-127.79518254870321,52.78315735812021],[-127.79534852553623,52.78330559834985],[-127.79550907543162,52.78345727551093],[-127.79566412829024,52.78361072262761],[-127.7958146048185,52.78376592562225],[-127.79596326430479,52.78392171227385],[-127.79607245311468,52.78408874837552],[-127.79605120935564,52.78426843604889],[-127.79541357010096,52.78445531955581],[-127.7950356257912,52.7847665855817],[-127.79458766803148,52.78513552826472],[-127.79403960922862,52.78566461910912],[-127.79368369575852,52.7861913335963],[-127.79358833151214,52.78666306100649],[-127.79357427604978,52.78716885218311],[-127.79361586338361,52.78765025106216],[-127.7936311846674,52.78808160597496],[-127.79341361056947,52.78851876404651],[-127.79324424822526,52.78873265945765],[-127.79294066318302,52.788824739267625],[-127.79214288151748,52.78898266275691],[-127.79163460733866,52.789111496691156],[-127.7914029051037,52.78927870300168],[-127.79117033466069,52.78953616775648],[-127.79119390589385,52.78985473027407],[-127.79114587942647,52.79041484680138],[-127.79088314566518,52.79099450047257],[-127.7905854801292,52.79127257056335],[-127.79046888470485,52.79143857340563],[-127.79035886484608,52.79160616173163],[-127.7902591573028,52.791775834549036],[-127.79017348440432,52.791948100064666],[-127.79011117644241,52.792123927962415],[-127.790088085037,52.79230419738645],[-127.79004065368024,52.79248036315574],[-127.78994467958994,52.79265053460556],[-127.78982434114285,52.792816037659165],[-127.7896794800023,52.792972390632656],[-127.7895044250393,52.79311798498927],[-127.78934073572583,52.79326845469221],[-127.78919604417864,52.793429288405875],[-127.7891409605856,52.793599956329246],[-127.78918570004133,52.793780876752976],[-127.78917553995458,52.793959836461816],[-127.78914027311323,52.79413804909901],[-127.78909665815085,52.794316397988446],[-127.78904555340166,52.79449373108846],[-127.78898793349899,52.794670607479006],[-127.78891813400993,52.79484487152185],[-127.78883901125737,52.795018712678015],[-127.7887617359083,52.79519196059623],[-127.78869756054982,52.79536781568586],[-127.7886501818363,52.795545100603654],[-127.78858978942307,52.79572257492125],[-127.78856568358658,52.795901181942256],[-127.78871130820156,52.79605086203119],[-127.78896343351546,52.79614790778994],[-127.78920480259195,52.796254641109414],[-127.78941450639579,52.79638147898321],[-127.78961701860152,52.796514031213306],[-127.78982312867176,52.796643730186986],[-127.79004456116435,52.79676197601299],[-127.79030104674396,52.796852226413804],[-127.7905611532916,52.796940178993],[-127.79080243724594,52.797044677361406],[-127.79103017839155,52.79715834105696],[-127.79130086593048,52.797232678454925],[-127.79156621862931,52.79731270172525],[-127.79183338224942,52.797391575744165],[-127.79210402564587,52.79746479099292],[-127.7923738196528,52.79753970459429],[-127.79264186019745,52.79761744240425],[-127.79290721779945,52.79769746262203],[-127.79316462723982,52.79778712778239],[-127.79340956549896,52.797889879058616],[-127.79367217193489,52.797970504622405],[-127.79395511489065,52.798026712575826],[-127.79417826688587,52.79814156147493],[-127.79448759144302,52.79829489202718],[-127.794634533811,52.79838680864612],[-127.79463575809449,52.79848207522762],[-127.7945897010435,52.79864644626766],[-127.79453500932463,52.798826087371936],[-127.79454367556683,52.79901035536351],[-127.79451867169546,52.79918897731468],[-127.79449555686493,52.79936869134578],[-127.79447429037326,52.799547821060266],[-127.79445300847027,52.79972694201514],[-127.79442897197738,52.79990667005848],[-127.7944152452798,52.79999992320653],[-127.79440303114636,52.800085306196266],[-127.79437525676568,52.80026453533194],[-127.79434653731664,52.800443213905375],[-127.79431782612255,52.80062244833812],[-127.79428910619254,52.800801126855994],[-127.79420623300533,52.800973907479],[-127.7941261759524,52.80114720993534],[-127.79406106888416,52.80132251674226],[-127.79401001494763,52.80150041559271],[-127.79398127828229,52.80167909416085],[-127.79399076121389,52.80186055131934],[-127.79405748601516,52.80203328619434],[-127.79420925848333,52.80210719343713],[-127.79408124214585,52.80235521512394],[-127.79393735580372,52.802513234241104],[-127.79375082749797,52.80265172705954],[-127.79353297948327,52.802774439323244],[-127.79331127507002,52.80289385606361],[-127.79312013088034,52.80303297435402],[-127.7929049786039,52.803153411135945],[-127.792640906575,52.803237592966326],[-127.79236091790669,52.80329679932491],[-127.79207188197817,52.80333989318154],[-127.79183070479876,52.8034382964391],[-127.79168778952669,52.80359741867364],[-127.7915476985949,52.80375761857603],[-127.7915254108069,52.80393507663681],[-127.79159222290231,52.80411005324235],[-127.79170239112172,52.80427764177585],[-127.79179045287327,52.80444949575819],[-127.79185369341391,52.80462788971896],[-127.79186326176247,52.80476730336471],[-127.79189457696172,52.80498205673477],[-127.7919484619985,52.805158916458176],[-127.7920153010668,52.80533444834288],[-127.79209780285107,52.80550694295655],[-127.7921895596233,52.805678175150014],[-127.79227022917394,52.80585126259196],[-127.79231673426622,52.80602934683795],[-127.79229259116707,52.806206833153034],[-127.79224618362066,52.80638522448495],[-127.7922155938085,52.80656393019719],[-127.79219058424367,52.806743106663724],[-127.79216841533444,52.80692336968048],[-127.79217779766402,52.80710258581358],[-127.79229067531513,52.80726789025037],[-127.79244587344196,52.80742301518372],[-127.79263746798875,52.807559656933925],[-127.79283554832928,52.80769563430463],[-127.79302721573983,52.807833951329336],[-127.79313354322984,52.80799823404597],[-127.79315693822498,52.80817891292889],[-127.79314686175583,52.80835954724592],[-127.7931711549456,52.80853965634891],[-127.79320675781997,52.80872352057438],[-127.79328550016844,52.80889438561944],[-127.79345035191055,52.80903591870641],[-127.79367933558449,52.80915516345105],[-127.79390289828095,52.8092784185969],[-127.79406800382935,52.80942555193262],[-127.7942021071241,52.809587167001915],[-127.7943426258416,52.809746441832125],[-127.79449148796567,52.8099050239288],[-127.79469922863028,52.81002739854063],[-127.79495319850288,52.81012216182135],[-127.7952090418568,52.810216895904304],[-127.79542099211403,52.810306696007764],[-127.79564682157732,52.81046130109895],[-127.79579975787946,52.8105620924623],[-127.79602277062207,52.81073803885932],[-127.79620623716043,52.810879839281604],[-127.79640693454623,52.811011286706325],[-127.79662312332931,52.81113521464961],[-127.79684742869009,52.811253403986186],[-127.79707799381742,52.81136590103983],[-127.79732207427868,52.81146809273768],[-127.79757692417044,52.81156115998716],[-127.79782906685949,52.8116559451765],[-127.79808039224797,52.81175354036226],[-127.79834048779743,52.81183867864926],[-127.79862002591364,52.81189996852306],[-127.79890833370135,52.811948801332726],[-127.79918865304616,52.812006714909714],[-127.79942712265324,52.81210787631265],[-127.79960526086175,52.81225479325463],[-127.79974491952855,52.812415195970296],[-127.7999328680855,52.812552437998775],[-127.79999993043573,52.81257775732604],[-127.80018685602107,52.81264663391852],[-127.80046372657561,52.81271076738251],[-127.80074956999341,52.81276691555576],[-127.80103445410685,52.81282251278236],[-127.80131311395438,52.812884939803915],[-127.80157841701791,52.812961014195636],[-127.80182232858529,52.813058724312704],[-127.80204573706638,52.8131769177146],[-127.8022575143672,52.813305943261525],[-127.80246564884133,52.81343671036055],[-127.8026664009865,52.81356870251908],[-127.80286412540669,52.813716999776894],[-127.8025703566779,52.81369348725006],[-127.80227655583029,52.813668853490135],[-127.80198198479626,52.81364815879375],[-127.8016856271526,52.813629167798574],[-127.8013882151338,52.81360738527025],[-127.80109096047474,52.81358897153162],[-127.80079498175472,52.81357894044557],[-127.80050246723337,52.81358510541346],[-127.80021195217446,52.81361646585047],[-127.79999993000972,52.81365783167909],[-127.79992619128947,52.813672414532945],[-127.79964840361801,52.81374113616606],[-127.79938890752236,52.81382470562298],[-127.79914613745517,52.81393043796586],[-127.7988945505619,52.81402565099462],[-127.79862743178384,52.81410485156491],[-127.79837389101486,52.81419786035759],[-127.79813776717386,52.81430685165875],[-127.79790072926507,52.81441641247417],[-127.79764614550753,52.81450662863425],[-127.79735096914389,52.814559917088346],[-127.7971549344773,52.81460607278645],[-127.79714389235909,52.81471890613794],[-127.7973857329784,52.81498816000457],[-127.79754474065737,52.815144349756],[-127.79769171373857,52.815301835651525],[-127.79784648918289,52.81544575890324],[-127.79801781983643,52.81558550037884],[-127.79824403396117,52.815704222863914],[-127.79842841831515,52.8158448847443],[-127.79860278256895,52.81599018386308],[-127.79880264568803,52.81612331702925],[-127.79901430994033,52.81624955199124],[-127.7992177880616,52.81637983105948],[-127.79941311240422,52.81651527477192],[-127.7995920490797,52.81665882534729],[-127.79977279711693,52.816801217919384],[-127.80000063760268,52.81698044575047],[-127.80034459358117,52.817267749385],[-127.80049063939013,52.81742469004248],[-127.80063482846214,52.81758165900336],[-127.80083265885101,52.81771034497192],[-127.80111226282344,52.817772193293386],[-127.80139873146996,52.81782048369555],[-127.80167736821114,52.81788122454261],[-127.80196042983897,52.81793684785614],[-127.8022484510672,52.81797783040818],[-127.80254225770877,52.81800189955606],[-127.80283781925449,52.818023143020525],[-127.80313249207927,52.8180455203907],[-127.80342625272527,52.818068476021494],[-127.80372181517188,52.818089717259554],[-127.80402088929625,52.81810641981146],[-127.80429574473533,52.81816552666255],[-127.80455417601655,52.81825404018357],[-127.80480205332042,52.81835672336163],[-127.80503540071676,52.818467476426946],[-127.8052570210747,52.81858681236899],[-127.80546962910248,52.8187124564769],[-127.80568137330685,52.818839799471654],[-127.80589577944397,52.81896429417115],[-127.80610747837952,52.8190905071508],[-127.80630010539406,52.81922711116017],[-127.80648819986,52.81936658261719],[-127.80667357223612,52.819507772683295],[-127.80685440376854,52.819651283315814],[-127.80696694453633,52.81980648993082],[-127.80712050245741,52.819964427942374],[-127.80729099606813,52.82012714498352],[-127.80745585759668,52.82026641661923],[-127.80756798772546,52.82043395990088],[-127.8076764412595,52.820602115702805],[-127.8077821016787,52.820770323383975],[-127.80787301777013,52.82094155604867],[-127.80796398205209,52.82111390888576],[-127.8080613711361,52.82128447671075],[-127.80818443168927,52.82144624604809],[-127.80833597607378,52.82160029449063],[-127.80850678522583,52.8217484320056],[-127.80869876717722,52.82186934819457],[-127.80889228872621,52.82200480428455],[-127.80912803696657,52.822149707180046],[-127.80928437739496,52.822285179647686],[-127.80949457732487,52.8224192567088],[-127.80971631698554,52.822540268571565],[-127.80994800847118,52.82265496560937],[-127.81019213677709,52.822756009541926],[-127.81045839145584,52.82283093787177],[-127.81074685773315,52.82288141716853],[-127.8110282013883,52.82293928761881],[-127.81127853556832,52.823032951628726],[-127.81150663653526,52.82315049905879],[-127.8117301577328,52.82326980271125],[-127.81195362350162,52.82338742083101],[-127.81221915353495,52.823466831433976],[-127.8125064282135,52.82351116390518],[-127.81279456837623,52.82355379634298],[-127.81307683209592,52.823611091750095],[-127.81336656954792,52.82364752818545],[-127.81366039901171,52.823627295025325],[-127.8139542362412,52.82358520612109],[-127.8141176104995,52.82355745465093],[-127.81416689539334,52.823667115327595],[-127.81415731009096,52.82376982985709],[-127.81411000560307,52.82394712179301],[-127.81409253411596,52.82412675066541],[-127.81408157324503,52.824306278902526],[-127.81404266911919,52.824484552948675],[-127.81398042685738,52.82466038958734],[-127.8139340422741,52.82483766710988],[-127.8138856083157,52.82501048331682],[-127.81385508089646,52.82518919274713],[-127.81384311873168,52.82534519546039],[-127.81383247297737,52.82555386443074],[-127.81385773727132,52.825732832755634],[-127.81390804680886,52.825910293091695],[-127.81392683946254,52.82608992634225],[-127.81395304099229,52.826268880114796],[-127.81399128077025,52.82644652686314],[-127.81392344598339,52.82662244961607],[-127.81383875880935,52.8267952697029],[-127.81378952856683,52.82697146088788],[-127.81373127708031,52.82713210649666],[-127.81371850331126,52.827312783316685],[-127.81372879792752,52.827489175780954],[-127.81371604804123,52.82767041716761],[-127.81362522758106,52.827852299611195],[-127.81345693224952,52.828005111966085],[-127.81325625952607,52.828139923297364],[-127.81303245347279,52.82825547866747],[-127.8127962032246,52.828362822795775],[-127.81255234280721,52.828465790989334],[-127.81230467859963,52.82856714036919],[-127.81205893394478,52.82866958056377],[-127.81181893839839,52.82877641545214],[-127.81159232151248,52.82889145528587],[-127.8113887487256,52.829024065965925],[-127.81119375867803,52.82916159278904],[-127.81098528368099,52.829288117383165],[-127.81073252114987,52.82937889700417],[-127.81044407860837,52.829439394617566],[-127.81019976373535,52.82953227579301],[-127.81002170656197,52.829674588382474],[-127.80986947956956,52.829833873310854],[-127.80972457492004,52.82999080316807],[-127.80959100029126,52.83015147715763],[-127.80944797584337,52.830308942607445],[-127.80927661427793,52.8304556256966],[-127.80909109274542,52.83059748673211],[-127.80892724281495,52.830746304445974],[-127.80881815429107,52.83091444704157],[-127.808715609722,52.831083618648975],[-127.80855552052311,52.83123348983281],[-127.80836149536881,52.831372117585126],[-127.80814446490817,52.83149484946609],[-127.80789464427843,52.83158949621476],[-127.8076922048188,52.83168341293738],[-127.80744919997204,52.83180765536991],[-127.80718373037519,52.831950187758416],[-127.8069991400092,52.83204831242507],[-127.806773793699,52.83217228160304],[-127.80655509735689,52.83227765624949],[-127.80629965487344,52.83237182992333],[-127.80604707732454,52.83246763594251],[-127.80579640451802,52.8325645330846],[-127.8055524557892,52.832666366210326],[-127.80532295880953,52.83278031638638],[-127.80509826506325,52.83289811120112],[-127.80539373795209,52.83311271608229],[-127.80534394687932,52.833298443825605],[-127.8053041001276,52.83347729272971],[-127.80525487471964,52.83365460879764],[-127.8051756901366,52.833826771528614],[-127.80507688857274,52.833997002752106],[-127.80499304887682,52.83416923686363],[-127.80491391869721,52.83434308445113],[-127.80484600140745,52.834517880588024],[-127.80478929128992,52.83469419035829],[-127.80474381783537,52.834872004358445],[-127.80471420529847,52.83505125153132],[-127.8047032495544,52.83523189788877],[-127.80470165791644,52.835414086260315],[-127.80469815990187,52.83559517396092],[-127.80468155725211,52.835774230050355],[-127.80464065000814,52.835950287731336],[-127.80456134941984,52.8361202184819],[-127.80443992842507,52.836283505550256],[-127.8042960607981,52.83644377442325],[-127.80414559954018,52.836601902431674],[-127.80400634503202,52.83676153503425],[-127.80386719947221,52.83692341669285],[-127.80371189138565,52.83707713458336],[-127.8035231955943,52.837211187397806],[-127.80328783209461,52.83731905303899],[-127.80302864936324,52.83741326718935],[-127.80277112030184,52.83750298041037],[-127.8025028776298,52.83758108273637],[-127.8022375475699,52.837661937692175],[-127.80197513944685,52.837746119094234],[-127.80170291598301,52.83781811075734],[-127.80141687688393,52.83787126605144],[-127.80116298792385,52.8379592338353],[-127.8009432406812,52.83808479068968],[-127.8007039354321,52.8381876624878],[-127.8004265241062,52.838246843892406],[-127.80013537702663,52.83828942053012],[-127.80000054186213,52.83831166495378],[-127.79984726120864,52.83833755486144],[-127.79957589647402,52.83840785131208],[-127.79931454219825,52.83849537335961],[-127.79905891926107,52.83858616096236],[-127.7988052573861,52.838679724872634],[-127.79855356247069,52.838775500039716],[-127.79830185155537,52.83887127488927],[-127.79804724096684,52.83896429561808],[-127.79779262889043,52.83905730682744],[-127.79754961687804,52.83916079365325],[-127.79730422438634,52.83927384915779],[-127.7971371885564,52.839414841421686],[-127.79705032216823,52.83958263999921],[-127.79699836869064,52.83976222600938],[-127.79696050506968,52.839944968265534],[-127.79692060209734,52.84012381379284],[-127.7968890942449,52.84030308683278],[-127.79687158221095,52.84048327563842],[-127.79687539143671,52.840662008251606],[-127.7969358878335,52.84083988245613],[-127.79707456646328,52.84099693876181],[-127.79725460541809,52.841142152210146],[-127.79734446760936,52.84131060002197],[-127.79739108011775,52.841489807417766],[-127.79746171621977,52.84166527520925],[-127.79754251349257,52.84183891044678],[-127.79764999821452,52.84200597625714],[-127.79777497028896,52.84216884638443],[-127.79790915819962,52.84232933334736],[-127.79805346916986,52.84248742322684],[-127.79820597335198,52.84264145959214],[-127.79837583889102,52.84278794807407],[-127.79855946595075,52.84292974167799],[-127.79874399282379,52.84307096521709],[-127.79891850180562,52.8432173818119],[-127.79905176041282,52.843377881712954],[-127.79909089894856,52.843556072888354],[-127.7990677707739,52.84373522682675],[-127.79897932734882,52.84390976737584],[-127.79894864433494,52.844086230043985],[-127.79896661026997,52.844269794339745],[-127.79901788771677,52.84444892945351],[-127.79912602294259,52.84460924906001],[-127.79934253167085,52.84473653007251],[-127.7995816334524,52.844848326917],[-127.7998141514388,52.84495853823417],[-127.79999042769033,52.84510212820717],[-127.80000102303711,52.845110933605916],[-127.80015584331042,52.84525316621518],[-127.80030292118121,52.84541008993657],[-127.80043066204748,52.845571793781964],[-127.80054736770575,52.84573646460227],[-127.80065859210453,52.84590347024732],[-127.800766122732,52.84607108841653],[-127.80087184244856,52.84623985522003],[-127.80097753915952,52.84640805730615],[-127.80108783002062,52.846575076840374],[-127.80120364270195,52.84674032564754],[-127.80132223747546,52.846905531670444],[-127.8014408804862,52.847071857801964],[-127.80155861090648,52.84723875380937],[-127.80167723229238,52.847404524025244],[-127.80179865033222,52.847570242249795],[-127.80192277975517,52.84773424177798],[-127.80205145585055,52.8478959294758],[-127.8021856305272,52.848055290724204],[-127.80232618760486,52.848211755942515],[-127.8024813344541,52.84836126231425],[-127.80270875166437,52.84848220004564],[-127.80297301165281,52.848572305618134],[-127.80325144907304,52.84862352394333],[-127.80355271450541,52.84864299494898],[-127.80385308194967,52.848663043946125],[-127.80414815653624,52.8486898993032],[-127.8043865821038,52.84878488243712],[-127.80459588064612,52.8489167486405],[-127.80480786661582,52.84904632227709],[-127.80503067744971,52.849167891365035],[-127.80528023887896,52.84926213663467],[-127.8055539448547,52.849333599795365],[-127.80583905591901,52.849388628421224],[-127.80612982833844,52.849423391826434],[-127.80643295992843,52.8494428268493],[-127.80673226669263,52.84943766751254],[-127.80700841987249,52.84939082266812],[-127.80725815683047,52.849291697911156],[-127.80750663811092,52.84918474511529],[-127.8077771122475,52.84911388041506],[-127.8080692477325,52.84907127093457],[-127.80836614604335,52.849053248793254],[-127.80865383697089,52.84908132755907],[-127.8089416754671,52.84913462972819],[-127.80924106435273,52.849153559133335],[-127.8094752196287,52.84925700071487],[-127.80970703162394,52.84937113167062],[-127.80996747484258,52.849458482626346],[-127.81023671562059,52.84953392273462],[-127.8105168507767,52.849603024481034],[-127.8108045427561,52.8496748159929],[-127.81106311831385,52.849630474499904],[-127.81130522014928,52.84952697485647],[-127.8115448102806,52.84940781979234],[-127.81179344825458,52.84930478325904],[-127.81205692545872,52.84922280679582],[-127.81232618486419,52.84914523337322],[-127.81259159084391,52.84906491185807],[-127.81285991087745,52.84898734270209],[-127.81313514948265,52.84891919888927],[-127.813423607586,52.84887775372559],[-127.81371942233872,52.8488563718016],[-127.81401679327425,52.84884953777252],[-127.81431144661887,52.84886628544703],[-127.81460159538244,52.84890832840528],[-127.81488758059314,52.84896163577241],[-127.81517117580921,52.849024512161975],[-127.8154222128185,52.84910918961839],[-127.81558209741914,52.849259736081564],[-127.81583728428974,52.84935443730953],[-127.81609061310505,52.849449166722486],[-127.81634661979791,52.849541047269604],[-127.81660872191557,52.849623309193504],[-127.81688848654426,52.84968344280426],[-127.81717432173168,52.84973338409633],[-127.81745063186534,52.84979973071253],[-127.81772694285854,52.849866076676236],[-127.81800497064901,52.84992903250138],[-127.81824327603661,52.8500419255001],[-127.81835059959867,52.85020280570854],[-127.81839361531505,52.85038261694784],[-127.81859753943756,52.85051846099174],[-127.81887579311385,52.85056459667955],[-127.81917591864068,52.85057844965965],[-127.8194765837914,52.85058331674035],[-127.819778286739,52.850568554373744],[-127.82006803592137,52.85057920290007],[-127.82033608776052,52.85066976731669],[-127.82045452844794,52.8508293524313],[-127.82051450234549,52.851013949035405],[-127.82060101267243,52.85118803656387],[-127.82077608864351,52.851323203054456],[-127.82099321144088,52.85144090284571],[-127.82123132693671,52.851549308967876],[-127.82148313270373,52.851651341451735],[-127.82173853841182,52.851750510655044],[-127.82198932826236,52.85185030691299],[-127.82224089826792,52.85194673658425],[-127.8225049574569,52.852030632256145],[-127.82277600017305,52.85210377419152],[-127.82305600508785,52.852168929590675],[-127.82334249008595,52.85221156421953],[-127.82363782923181,52.85222211735244],[-127.82393688968405,52.85221074843322],[-127.82423194383375,52.85219271510353],[-127.82452564414496,52.85216461326231],[-127.82481928125651,52.852135390684914],[-127.82511378294119,52.85210446798422],[-127.82540934136034,52.85207633504494],[-127.82569979946929,52.85208135394884],[-127.82598331124996,52.85214139905319],[-127.82626226447415,52.852203765276926],[-127.82653507807096,52.85227462916311],[-127.82680175217283,52.85235399075324],[-127.82706927768085,52.8524316615244],[-127.82735269809154,52.852489471810195],[-127.82761921614659,52.85256547107195],[-127.82785459741774,52.852674471565095],[-127.8280819561524,52.852791434322754],[-127.828306616146,52.852910689577676],[-127.82854731468929,52.8530134360961],[-127.82882545083899,52.853078042054115],[-127.82911127508132,52.85312684292872],[-127.82940428769837,52.853169361307636],[-127.82967675199616,52.85323181165052],[-127.82978984897467,52.85339595489176],[-127.82980973901101,52.853577808543164],[-127.82999508791846,52.85371280168418],[-127.83025647296867,52.85379896386268],[-127.83050283166705,52.853903304234905],[-127.83070557612682,52.85403185536026],[-127.83078936189649,52.854206543227455],[-127.83075605465892,52.854384176842565],[-127.83064615117173,52.854554601199276],[-127.83046143686114,52.85469423875172],[-127.83026250364577,52.854827927648536],[-127.83015890525108,52.854993769312465],[-127.83008647446408,52.85517032613423],[-127.82999897566135,52.85534264266026],[-127.8298823733799,52.85550867758593],[-127.82977886799846,52.85567675929934],[-127.82969892473099,52.85585175578999],[-127.8296358359821,52.85602928766512],[-127.82961551499142,52.85620616240492],[-127.82959359853483,52.85638922285061],[-127.82966243616875,52.85654060355459],[-127.82975202614159,52.856698942864064],[-127.82969535630023,52.85687414170423],[-127.82969883953001,52.85710725042337],[-127.82972633663972,52.8572710406327],[-127.8297422836647,52.85744735040463],[-127.82977789278883,52.85764857139362],[-127.82978401323615,52.85781269447045],[-127.82979989775004,52.85798788417936],[-127.82983270137832,52.85816672928802],[-127.82986270849304,52.85834561792701],[-127.829865768434,52.858525482247785],[-127.82986044387047,52.85870492113211],[-127.82984775320956,52.858886160664944],[-127.82984336576274,52.85906558491057],[-127.82991597602248,52.85923988202366],[-127.83001640914529,52.85941206874356],[-127.83014983538632,52.859572531703776],[-127.83033799342617,52.859707480456926],[-127.8305691493361,52.859825509359396],[-127.83077109597889,52.85995631471033],[-127.83091274339769,52.86011328579511],[-127.83103433547095,52.86027953704988],[-127.83117417338964,52.86043765699261],[-127.83137629339971,52.86057238651791],[-127.83158378631352,52.860702548051684],[-127.83170777972565,52.860859793390055],[-127.83176290976198,52.86103828973182],[-127.83181988507316,52.86121675726605],[-127.83190180595152,52.861390916909045],[-127.83201314544311,52.86155676201155],[-127.8322070659622,52.861695545873964],[-127.8324838364802,52.861748399343284],[-127.83278655479533,52.861777306978226],[-127.83300978180523,52.861861816706195],[-127.83304564912915,52.862046782780446],[-127.83304968434288,52.862227196567005],[-127.83303239717522,52.86240961994893],[-127.83314574619497,52.86255694105749],[-127.83340640997316,52.86247328496178],[-127.8335777929096,52.86232600506453],[-127.83384709589134,52.86224838296773],[-127.83413657035045,52.86220742853428],[-127.83443347697487,52.862187664819416],[-127.83472014439143,52.862146196753265],[-127.83499881491959,52.86207010266245],[-127.83521544469454,52.86195798477126],[-127.8353215574296,52.861785939185694],[-127.83547404454833,52.86163222561794],[-127.83567962995018,52.86150122273935],[-127.83591692858418,52.861393820428475],[-127.83620465733344,52.86124752531315],[-127.83641577285405,52.86124534681954],[-127.83668866116567,52.86131618672431],[-127.83695978722437,52.86138929550927],[-127.83723274958008,52.86146180999487],[-127.83750566496828,52.86153321258425],[-127.83777770676039,52.86160574022292],[-127.83804794753156,52.86167998136484],[-127.8383164410188,52.8617564911859],[-127.83858137044638,52.86183698407478],[-127.83884643635295,52.86192027219848],[-127.83911170568568,52.86200859646063],[-127.83936614699951,52.862104380472296],[-127.83960156261067,52.86221223655446],[-127.83980512742349,52.86233684057405],[-127.83997250445256,52.86248498646362],[-127.84011534923165,52.86264697699254],[-127.84024798299154,52.862809683274534],[-127.8403547894139,52.86297727783399],[-127.84044595027059,52.86314903628455],[-127.84056653012291,52.863312495973425],[-127.8407284888858,52.86346465356791],[-127.84090599820343,52.86361039746321],[-127.8411023427202,52.863739596312755],[-127.84126352493627,52.86385197519892],[-127.84152804046985,52.86396553241603],[-127.84182230773521,52.86405675919738],[-127.84213934766363,52.864136427454625],[-127.84239248213117,52.86415879717264],[-127.8427372866883,52.86410575332742],[-127.84303000318226,52.86411797711382],[-127.84326029745203,52.86421468764661],[-127.84345368328414,52.86436130870197],[-127.84367748545391,52.864479983809204],[-127.84391480894874,52.864588357535595],[-127.84415304658232,52.8646961514757],[-127.84438853707745,52.86480511800812],[-127.8446231395003,52.864915210029714],[-127.84485686951699,52.86502644523551],[-127.84509148924558,52.86513653607322],[-127.84532971842584,52.865244336786205],[-127.84557158602853,52.86534982896221],[-127.8458052964556,52.865460497663165],[-127.84602186549603,52.86558376594052],[-127.84620756049297,52.86572433355122],[-127.84635848628137,52.86587889890989],[-127.8464911202738,52.866040477366376],[-127.8465823127866,52.86621223968655],[-127.84674215294488,52.86635769666095],[-127.84695435366896,52.866487192800186],[-127.84712443310818,52.866632488330985],[-127.84723772988539,52.86679885380962],[-127.84735568481383,52.86696514594661],[-127.84750120946667,52.86712372266009],[-127.84771858359885,52.86724361230639],[-127.84794778876365,52.86735714566059],[-127.84818154084029,52.867468374083444],[-127.84841894099274,52.867577858722825],[-127.84865810516177,52.867685073191765],[-127.84889997996555,52.867790558590045],[-127.84914182263962,52.867894931999786],[-127.84940347912394,52.86798441144473],[-127.84967751539902,52.86805856676787],[-127.84984997989707,52.868194297101404],[-127.84992330911324,52.868361289196194],[-127.84998913660029,52.86854857690031],[-127.85002588403096,52.86873071747692],[-127.8500773809057,52.86890926289851],[-127.85027330059353,52.86902779975076],[-127.85054580137691,52.86910926813277],[-127.8508238691669,52.869276398387],[-127.85107719946912,52.869366570319976],[-127.85134847417753,52.86944132137121],[-127.85159033220951,52.869545689634585],[-127.85170631442863,52.86964475003243],[-127.85201530519416,52.86979513165911],[-127.85225719101054,52.869900054150726],[-127.85250710004628,52.86999700285202],[-127.85276148270816,52.87008996157312],[-127.85301769233827,52.87018176100504],[-127.85327115462047,52.8702747331595],[-127.85352469088284,52.87036938059292],[-127.85377011823708,52.870470316286195],[-127.85401379939242,52.87057352994713],[-127.85426282761892,52.87067160987177],[-127.85453049351435,52.87074865262957],[-127.85480528409242,52.87081830048124],[-127.85509030980869,52.87086648758799],[-127.85538696731503,52.87088254702813],[-127.8557183988622,52.87082070027289],[-127.85597140919687,52.87073207560611],[-127.85618149610292,52.87059815930107],[-127.85644299325836,52.87053349605347],[-127.85674923758815,52.870534827884676],[-127.85704333016106,52.87055596356013],[-127.85733694907674,52.87058775079318],[-127.85763315622039,52.87061502144468],[-127.85792501355616,52.87064907702142],[-127.85820296778944,52.87070578023588],[-127.8584547551589,52.87080268683191],[-127.85856410184918,52.87087718410884],[-127.85865894753032,52.87089641773576],[-127.85898810195634,52.87091083317915],[-127.85930742405404,52.87093436211809],[-127.85961113301731,52.87094133154297],[-127.85991129277743,52.870952275295046],[-127.86020455008689,52.87097565830217],[-127.86048295761388,52.8710211302668],[-127.86074860587392,52.87109427206052],[-127.86100132393656,52.87119115857039],[-127.86124083351565,52.87130506841598],[-127.86146404364028,52.87142932476289],[-127.86167068541978,52.87155777106233],[-127.86186638768889,52.87169143023634],[-127.86205484640902,52.87182968777386],[-127.8622369744131,52.871971964270934],[-127.86241640426336,52.872116534174666],[-127.86259399945997,52.872261688892394],[-127.86277065834648,52.87240685818801],[-127.8629510046821,52.87255084779479],[-127.86311776058207,52.87270345543089],[-127.8633277174019,52.87282231353827],[-127.86359174219568,52.872900523705816],[-127.86386745940594,52.87296957106658],[-127.86414771311891,52.87303574787448],[-127.86442255884594,52.873105937724944],[-127.86469836732266,52.87317666767486],[-127.86497599732125,52.87324680311125],[-127.86524191228003,52.87332553565333],[-127.86547264044346,52.87342948764743],[-127.86562755558649,52.873587893639204],[-127.86566252297577,52.87379135672836],[-127.8657003037662,52.87397403253668],[-127.86571745089189,52.874153116920695],[-127.86568501502703,52.87432626249757],[-127.86559003271948,52.87449536093943],[-127.86538925103346,52.874650435825835],[-127.86524054575139,52.87480412789059],[-127.86506958119755,52.874938560329504],[-127.86486012902932,52.87506574735265],[-127.86464214045994,52.875189150462994],[-127.86441559077484,52.875308205033306],[-127.86418421036157,52.87542341682092],[-127.86394891174704,52.875534197387154],[-127.86371150706933,52.87563941493462],[-127.86344795071864,52.875721497121354],[-127.86316494835454,52.87578427435161],[-127.86288357043466,52.87584198522932],[-127.86259913926494,52.87589357395219],[-127.8623117039072,52.875940160698896],[-127.86202320816155,52.8759839655748],[-127.86173360314604,52.87602386837189],[-127.86144198071035,52.87605987449807],[-127.86115031824383,52.87609531555466],[-127.8608596664586,52.87613242582453],[-127.86057104585322,52.876173431110615],[-127.86028360639207,52.87622001289056],[-127.85999718719627,52.87626882872824],[-127.85971071807107,52.87631651470391],[-127.8594232375804,52.876362538991884],[-127.85913282680609,52.87640524599215],[-127.85883948020117,52.87642333726422],[-127.85854133793438,52.87641684220293],[-127.85824533450486,52.87639518390914],[-127.85794892541364,52.876364554529026],[-127.85766545167344,52.876310188487736],[-127.85743005897469,52.87620573015609],[-127.85721958955581,52.87607510412464],[-127.85696134320109,52.87597997377816],[-127.85669234078438,52.875915844045316],[-127.85639811381766,52.87589246715728],[-127.8561072153429,52.875923964668615],[-127.85586243159842,52.87600966101309],[-127.85555947422297,52.876085065499296],[-127.85530757152112,52.87613556687408],[-127.8550063129401,52.87618571671511],[-127.85473337318848,52.87624495165647],[-127.85447088004065,52.876330368462085],[-127.85450165831942,52.87663142438801],[-127.85450694250514,52.87681685741265],[-127.85442858026471,52.876983997613834],[-127.8542383481654,52.87712599925427],[-127.8539956706651,52.877239126538825],[-127.85372472932009,52.877301690363616],[-127.85343690957535,52.87733985832983],[-127.85313926086627,52.87736640586519],[-127.85283974213057,52.877392426117034],[-127.8525471410355,52.87742786930749],[-127.85226508273189,52.877491725891154],[-127.85205999482477,52.8776132154776],[-127.85193090393747,52.87776994335174],[-127.85187908685437,52.877948438004466],[-127.8518701317024,52.87812793430436],[-127.85182950061014,52.87830680865227],[-127.8517085054051,52.87847853723237],[-127.85160003000578,52.8785099562085],[-127.8514415039545,52.87850348550703],[-127.85113849510815,52.878492564245185],[-127.85085610034959,52.87852727735851],[-127.8506455925871,52.87865277747376],[-127.85056395287013,52.87883061093743],[-127.85031462863718,52.87891972952507],[-127.85006304018901,52.879021213854394],[-127.84987290922406,52.87912285142081],[-127.84968245791362,52.879260364686345],[-127.84949704276737,52.87938491172284],[-127.84929160802845,52.87952041810893],[-127.84909548928479,52.87965577755798],[-127.84889742082439,52.87978948138043],[-127.8486831314743,52.879913916206384],[-127.8484506390609,52.88002630621698],[-127.84822293499695,52.88014198335479],[-127.84802486192875,52.880275694628146],[-127.84783062029756,52.88041157827436],[-127.84763838404031,52.88052950355106],[-127.84742594782233,52.88065390678451],[-127.8471869619907,52.88081011386112],[-127.84704421286577,52.88093173533096],[-127.84689691613265,52.881076977306165],[-127.84669467615197,52.881200653935274],[-127.84647157134518,52.88131513420478],[-127.84626517077129,52.881450094013786],[-127.84603586730732,52.88161511418749],[-127.84580707383797,52.881641682201064],[-127.84550838784425,52.88162339645787],[-127.84521631937636,52.88158594071565],[-127.84493635429126,52.88152700493655],[-127.84466066050697,52.88145902478952],[-127.84463335944022,52.88164553332637],[-127.84459748410904,52.88182769251729],[-127.84457643552815,52.88200794205948],[-127.844594323001,52.88218477372732],[-127.84466502688132,52.88235572777546],[-127.8447672166272,52.882522833753335],[-127.84488890222666,52.88268850374587],[-127.84501890603057,52.88285293106232],[-127.84514523769084,52.883018527867115],[-127.84525579634723,52.88318550204956],[-127.84534141417242,52.88335678651897],[-127.84539467272181,52.88353306274201],[-127.84542387375377,52.88371307947238],[-127.84543639239463,52.88389447902182],[-127.8454385729327,52.88407379891085],[-127.84539039346518,52.8842511024182],[-127.84534412319341,52.88442950584196],[-127.84533724242954,52.88461457271434],[-127.845332635636,52.88478782927879],[-127.84535800962185,52.884965108042785],[-127.84546847673714,52.885129832458695],[-127.84559476876011,52.88529431730565],[-127.84573492730526,52.88545633342172],[-127.84588884133746,52.88561365851442],[-127.846054600895,52.88576518362619],[-127.84623396091577,52.885908092196104],[-127.84642958357571,52.88603953546442],[-127.84665163790922,52.886157676665015],[-127.84688916232409,52.88626771872972],[-127.84713307203253,52.88637486208294],[-127.8473742722854,52.88648373344437],[-127.84760273932586,52.88659952123613],[-127.84780752760341,52.8867274553445],[-127.84798322453993,52.88687153985101],[-127.84814075192453,52.88702599838241],[-127.84829460742064,52.887181635393695],[-127.84845936185474,52.88733094004238],[-127.84870375750158,52.88742741895976],[-127.84899903146687,52.88745192061763],[-127.84929690912813,52.88745059844943],[-127.84959185610583,52.88742466045575],[-127.84988125853057,52.8873780756305],[-127.85015287616666,52.88730822076946],[-127.85041556740717,52.88722561916581],[-127.85067419540985,52.8871352341731],[-127.85093091284678,52.88704375770477],[-127.85119152132475,52.88695614724256],[-127.85145316353825,52.88687075286164],[-127.85171476566948,52.886784802510796],[-127.85197640617206,52.88669941591805],[-127.85223901688381,52.88661512543329],[-127.85250264730321,52.88653306917026],[-127.85276919690097,52.8864537642192],[-127.853038641548,52.88637665494315],[-127.85331285132281,52.886302267841664],[-127.8535921923347,52.88623901779929],[-127.85387602421328,52.886193066738706],[-127.85417362133822,52.88616426836487],[-127.85447580789818,52.88615501821715],[-127.8547708813097,52.88617502461635],[-127.85504873752272,52.88622725395259],[-127.85531911572066,52.886300334034615],[-127.85558715020026,52.8863835391899],[-127.85585516113495,52.8864661791514],[-127.85612920567141,52.886537522565476],[-127.85641264786558,52.886589651572294],[-127.85670198605754,52.88662767919974],[-127.8569965560279,52.88665722072337],[-127.8572919024732,52.88668337738187],[-127.85758720083327,52.886708422065055],[-127.85788489211551,52.88672445149754],[-127.85818337528637,52.886737113731826],[-127.85847842984191,52.88675654624248],[-127.85876319998174,52.886796326985994],[-127.8590622234466,52.88688519523924],[-127.85928423785269,52.88698032947091],[-127.85947461068359,52.887097262116],[-127.85963012417083,52.88724725388919],[-127.85969671686568,52.8874289181364],[-127.85988820203114,52.88754976040151],[-127.86017442136287,52.88762257892443],[-127.8604448903791,52.88769732296575],[-127.86071801265751,52.88776867047172],[-127.86099023714637,52.887840587565236],[-127.86125914175965,52.887922080332956],[-127.86152888776878,52.88800132620943],[-127.86180869824278,52.88805518585726],[-127.86212504086454,52.888092772705484],[-127.86240789644731,52.88806699403166],[-127.86271121358607,52.888062188878266],[-127.86298088904557,52.88809714988666],[-127.86320186508034,52.88816818805331],[-127.86341461585701,52.88826402643481],[-127.86371868918073,52.88838306917594],[-127.86390171885117,52.888523095567464],[-127.86407204203607,52.88867060494487],[-127.86423417127334,52.88882216290685],[-127.86439355231282,52.888974894163624],[-127.86455288507815,52.88912649603809],[-127.86470214841867,52.889282185269906],[-127.86484775497004,52.88943905328208],[-127.86499247373298,52.889597056165364],[-127.86513168458556,52.88975683218043],[-127.86528460032599,52.889910776806644],[-127.86546860393892,52.89005134136061],[-127.86568288992753,52.89018190138521],[-127.8659158261255,52.890291978678164],[-127.86619668395076,52.89032675506775],[-127.86649852408235,52.89033037558491],[-127.86679497739873,52.890338555758625],[-127.86664883842832,52.89002084414447],[-127.86670727622007,52.88984560137403],[-127.86683477333717,52.889674310899984],[-127.86701997675483,52.88954470072144],[-127.86730318776219,52.8894847197044],[-127.86758810169457,52.889420783066576],[-127.86782924625052,52.88931437928396],[-127.86806558298264,52.88920469743031],[-127.86829908510236,52.88909393018133],[-127.86854513170942,52.88899306076977],[-127.86879790367827,52.88889712379949],[-127.86905159750002,52.88880117160747],[-127.86930723945751,52.88870686484142],[-127.86956588552731,52.888617558575504],[-127.86982949496303,52.888535463572836],[-127.87009725771865,52.88846282566049],[-127.87038102254013,52.88841571487564],[-127.87067692561514,52.888390264708036],[-127.87097571094445,52.8883670188323],[-127.87126435491881,52.88832486812826],[-127.87154462040104,52.88826156059498],[-127.87183566530229,52.88823170093033],[-127.8721322652677,52.88822249453744],[-127.8724311102575,52.888221663410356],[-127.8727284485975,52.88822925832565],[-127.87302418731868,52.88824248283294],[-127.87331919900222,52.88821816114234],[-127.87359970703515,52.8881604496427],[-127.87387609809787,52.88809382633198],[-127.87416315930277,52.88803712998441],[-127.87436902397236,52.887912218165475],[-127.87448566458195,52.887748938497694],[-127.87443138231231,52.8875732552194],[-127.87435538816979,52.88739062724295],[-127.87436288256632,52.88722236181931],[-127.87459625888366,52.88710934155552],[-127.87481415656842,52.88698312492241],[-127.8750111651642,52.88684770824603],[-127.87520532460304,52.88671121567895],[-127.87539565268625,52.886571976958315],[-127.87557936119136,52.88643061052254],[-127.8757526292276,52.8862849174807],[-127.87590698310653,52.88613224410366],[-127.87603093280525,52.88596604797044],[-127.87614353432963,52.885795539907114],[-127.87626755592169,52.88563101929031],[-127.87642398849857,52.88548336080151],[-127.87662505183341,52.88535572321128],[-127.87685556408147,52.88524162281609],[-127.87710422823572,52.88513788586506],[-127.87736065498771,52.88504131522709],[-127.87761633024577,52.884948674939906],[-127.8779082958036,52.88489805147676],[-127.87816283409477,52.884822242766376],[-127.87828386395913,52.884653283643445],[-127.87836936702202,52.884480964110615],[-127.87850847395704,52.88432068366954],[-127.87858097572119,52.884149136644375],[-127.87859344217078,52.88396733915719],[-127.87865651649822,52.88379314472415],[-127.8787785876409,52.883626966224526],[-127.8789424217859,52.88347862068076],[-127.87916998637257,52.883361208501015],[-127.87941109262707,52.883255345142985],[-127.87965998604501,52.88315720359901],[-127.87992036302174,52.883066159737915],[-127.88019217458083,52.88298110225812],[-127.8804449590238,52.88288682465713],[-127.88064910268355,52.88276641219503],[-127.88079861902924,52.882610446031435],[-127.88090355289256,52.88243558033466],[-127.88096753796138,52.882261360767906],[-127.88096986689702,52.8820819668107],[-127.88094970587329,52.88189956975584],[-127.88094826431437,52.881719115111146],[-127.88094590997467,52.881539240025454],[-127.88091106280568,52.88136156182005],[-127.88081602793802,52.88119100751454],[-127.88068048279263,52.88103063406808],[-127.88067796951842,52.88076276003449],[-127.88072115667576,52.8805810352448],[-127.88093468200704,52.88048345640591],[-127.8812306326544,52.88046078474909],[-127.8815081543381,52.88052639982486],[-127.88176015162645,52.88062549627714],[-127.88193108156386,52.88076512441822],[-127.88206198672222,52.88092557080109],[-127.88226787292554,52.881055670937755],[-127.88248831308105,52.88117769078914],[-127.88273754320491,52.88127739449259],[-127.88292968458174,52.88141219756499],[-127.88309825871146,52.88156138563891],[-127.8832914146865,52.88169785783679],[-127.88349822113753,52.88182737615864],[-127.88370321820106,52.88195805306906],[-127.88391092544211,52.88208700024339],[-127.8841231442174,52.8822125118089],[-127.88434441943983,52.882332272927556],[-127.88457561431626,52.88244458375585],[-127.88481404006717,52.8825523032502],[-127.88505695229631,52.882656022413826],[-127.88530256491619,52.882757455818606],[-127.8855499748494,52.88285773891359],[-127.88580182160564,52.882952901428325],[-127.8860563690695,52.88304578709246],[-127.88630911633379,52.88314037809132],[-127.88656463808663,52.88323435905959],[-127.88678492840303,52.88335245452246],[-127.88697813862537,52.883490031973025],[-127.88715216859838,52.8836357728505],[-127.88743473144635,52.883730438864575],[-127.88769827766134,52.883816450696465],[-127.88797372234126,52.88387647933019],[-127.88827906596234,52.883876059072094],[-127.88857114242673,52.8838915448969],[-127.88880114622575,52.883997705842944],[-127.889007480017,52.88413675515597],[-127.8892500391713,52.88423206866034],[-127.88954196531525,52.884264925259856],[-127.88984198436656,52.88429149012821],[-127.89012289308732,52.88434862799938],[-127.8903995907476,52.884415921760564],[-127.89067535150639,52.884483229949666],[-127.89095628766354,52.884540930395026],[-127.89125095107825,52.884572617789615],[-127.89153865975537,52.88461507016746],[-127.89182846089692,52.88468383574126],[-127.89202012390106,52.88480685728187],[-127.89212159206642,52.88497449251363],[-127.89219387710764,52.88515549314509],[-127.89226775943851,52.88533085413441],[-127.89232958028661,52.88550697418913],[-127.89239787184421,52.88568186906055],[-127.89247827630223,52.88585713387068],[-127.89257622633714,52.88602930922818],[-127.89273269070027,52.8861770018509],[-127.89294125901965,52.886303112702315],[-127.89317359542896,52.88641931659603],[-127.89340494550602,52.886534414946134],[-127.89362813000825,52.88665412830181],[-127.89385672398133,52.88676983515352],[-127.89409963245753,52.886872415182374],[-127.89435859177267,52.886959042352544],[-127.89462655713822,52.88703879793996],[-127.89489183942268,52.88712083813702],[-127.89515630926203,52.887205688814795],[-127.89541904415319,52.88729337381967],[-127.89564744705876,52.88740459643068],[-127.89584330351789,52.88753763312769],[-127.89602557182495,52.88767930049105],[-127.89620247322776,52.88782553806587],[-127.89637843799456,52.88797179048852],[-127.89656167292237,52.88811400642457],[-127.8967576603701,52.88824984646372],[-127.89696734848131,52.888379860221264],[-127.89719860943073,52.888492145803575],[-127.89745833345339,52.888574835028344],[-127.89774045307765,52.88863754053602],[-127.89801812847884,52.888704801051055],[-127.89827445790968,52.88879482520853],[-127.89852116018444,52.88889845606114],[-127.89874712024674,52.88901699415554],[-127.89893748629521,52.88915180046561],[-127.89910515926748,52.889299859837436],[-127.89925915913102,52.88945430973303],[-127.89941321005217,52.889609879587205],[-127.89957817770761,52.88975966795914],[-127.89976324194633,52.88990072850787],[-127.89997105138059,52.89002964642847],[-127.90018795186825,52.89015393314054],[-127.9004183430009,52.890267347598915],[-127.90067460183808,52.89035512584805],[-127.9009505672056,52.89042577021223],[-127.9014773257556,52.89056578713604],[-127.90175309380216,52.89063194891364],[-127.90203071331551,52.89069751512971],[-127.90230737096448,52.89076254025656],[-127.90258497769422,52.890828114361156],[-127.90286078886223,52.89089482889536],[-127.90313573824166,52.89096324270073],[-127.90341068850394,52.891031655860324],[-127.9036865126225,52.891098933257595],[-127.9039640884908,52.891163383679725],[-127.90424414835886,52.891221058363364],[-127.90453291321347,52.891265148560436],[-127.90482247628454,52.89130641818409],[-127.90519761605901,52.891303703125836],[-127.90549435522325,52.89129720855586],[-127.9057854222907,52.891267829495455],[-127.90606977864982,52.89121334084773],[-127.90635204757068,52.891153836432416],[-127.90663972749873,52.891111058339646],[-127.90693382717777,52.89108723214397],[-127.907229140058,52.89106954645716],[-127.90752556635447,52.89105576989032],[-127.907822990932,52.89104366233577],[-127.90812041493916,52.89103154506747],[-127.90841680090652,52.89101721089115],[-127.90875409159256,52.89100108197324],[-127.90900707325613,52.890973999097476],[-127.90930073372787,52.890940085208285],[-127.90958829394451,52.8908950597989],[-127.90986442066375,52.890823315743205],[-127.91013202272656,52.89072760383459],[-127.91040103046603,52.89066326502448],[-127.91068429238365,52.89066763010147],[-127.91097670642537,52.890709959275036],[-127.91126553151817,52.890775886779146],[-127.9115371738565,52.89085330280138],[-127.9117818582933,52.89095245527915],[-127.91201243542041,52.8910692074728],[-127.91224748294366,52.89118196755366],[-127.91250648039043,52.89126799892062],[-127.9127885896878,52.891329548053044],[-127.91306263477664,52.89139795364735],[-127.91331192052684,52.89149590716483],[-127.91354165742418,52.89161435607315],[-127.9137348658818,52.89174909290075],[-127.91388805490249,52.89190465859159],[-127.9139925505256,52.89207502457922],[-127.91404603872864,52.89225014874097],[-127.91407738666817,52.89242956121879],[-127.91409760388999,52.89261026688584],[-127.9141196722184,52.89279038638896],[-127.91415651333486,52.89296802341136],[-127.91435951991176,52.893092510853016],[-127.91463286765942,52.8931659732128],[-127.91491052349684,52.893231508920266],[-127.9151934212574,52.89328967667841],[-127.91547185113599,52.89335184448478],[-127.91573997157239,52.89343322740733],[-127.9159867431726,52.893536821317994],[-127.91615515368412,52.8936786842598],[-127.91624596459144,52.893854885177056],[-127.91628194279478,52.89403365662373],[-127.91629755028784,52.894215001997324],[-127.91637682840613,52.894383534861404],[-127.91654839541843,52.89453319269884],[-127.91669603195663,52.8946894102685],[-127.91684911614364,52.894842166926615],[-127.91678575722871,52.895048340110165],[-127.91669648949764,52.895216822033895],[-127.91649190365108,52.89534739289078],[-127.91634408244548,52.8954977720327],[-127.91644278671345,52.89566319019719],[-127.91668944672946,52.89576397760015],[-127.91694156552194,52.89586187753258],[-127.91719289870302,52.89596315270117],[-127.91734002783441,52.896107602888804],[-127.91736408420853,52.896290496175155],[-127.91734703326112,52.89647013176749],[-127.917333493003,52.89662448345529],[-127.91740736621259,52.89690016214535],[-127.91755596794896,52.896973966008844],[-127.91783097527752,52.897000868847236],[-127.91805892877402,52.89712045928417],[-127.91824678452487,52.897259204114214],[-127.91838614420588,52.89741723155965],[-127.91850633288549,52.89758397450543],[-127.91860249323983,52.89775448127477],[-127.91874185586023,52.89791250825015],[-127.91890965756033,52.898061103133124],[-127.9190875028474,52.8982050499434],[-127.91926628740659,52.89834898116219],[-127.9194395754696,52.89849524379817],[-127.91961568910183,52.89864201607037],[-127.91978720911038,52.89878999302736],[-127.91994211500867,52.89894159496858],[-127.92001038996587,52.89911311184775],[-127.92007050965107,52.89928981074136],[-127.92019159780088,52.89945541629543],[-127.92037662088688,52.89959308307156],[-127.92059549089251,52.89971730100667],[-127.92073665266946,52.8998736103093],[-127.92082152489978,52.90000001626921],[-127.92084848937215,52.90004049624585],[-127.92095940332683,52.90020738817756],[-127.92104538513831,52.90037918016969],[-127.92104227526276,52.90055802336704],[-127.92102899645616,52.90073871860858],[-127.92104176643241,52.90091843232493],[-127.92112686200254,52.901091350702345],[-127.92134109590246,52.901215643027825],[-127.92160470705261,52.90129877280135],[-127.92188241213219,52.90136430092288],[-127.92215839775466,52.90143265447741],[-127.92241933851486,52.901518624081376],[-127.92266428671877,52.90162167828906],[-127.92288028802253,52.90174369702673],[-127.923065531641,52.90188583104268],[-127.92324705408306,52.902028034594714],[-127.92342039586958,52.90217484662935],[-127.92356070388551,52.90233229652115],[-127.92365499336789,52.9025022647863],[-127.92387920857188,52.90262021946887],[-127.92414189520174,52.90270335883081],[-127.92441172493619,52.90277965483901],[-127.92468155563715,52.902855950224605],[-127.92495225995383,52.90293110972145],[-127.92522204194655,52.90300628370537],[-127.92548921760984,52.903085427679166],[-127.92574129865473,52.903181067994616],[-127.92598892235713,52.90328126471029],[-127.92622753322925,52.903387769454746],[-127.92646362452444,52.903500484892746],[-127.92668887780626,52.903620668292625],[-127.92687026729081,52.9037594966786],[-127.92700962954216,52.90391639311499],[-127.92712706037372,52.904082616608775],[-127.92723533667797,52.90425235294042],[-127.92734723547923,52.90441978784026],[-127.9274591607111,52.90458778717321],[-127.9275229402683,52.90476217137823],[-127.92755059066553,52.90494107556839],[-127.92755969148075,52.905121404718685],[-127.92755385994512,52.90530142255832],[-127.92753496125263,52.90548052457207],[-127.92750487852888,52.905659818809376],[-127.92747012351606,52.905838624606325],[-127.92743630644772,52.906017414998274],[-127.92740247420281,52.90619620560477],[-127.92736213353565,52.906375102825834],[-127.92731903271556,52.90655460124206],[-127.92727405543357,52.90673413933096],[-127.92723092873527,52.90691308208002],[-127.92718964840867,52.907091994535755],[-127.92715489090405,52.90727080008094],[-127.92712665630374,52.90744949872161],[-127.92710862754987,52.90762746514949],[-127.92710269238324,52.90780524238629],[-127.92711350150654,52.907982180299456],[-127.92715502088946,52.90815861504814],[-127.92722260415552,52.90833462273389],[-127.92730781588168,52.908509220550535],[-127.92740319883146,52.90868196568138],[-127.92750133226062,52.90885355364582],[-127.92759845191725,52.909023472181424],[-127.92770389192708,52.90919213329757],[-127.92781945272901,52.9093578215119],[-127.92794424722446,52.90952168128483],[-127.92807730136228,52.9096826075743],[-127.9282167633208,52.90984117774794],[-127.92836082293337,52.90999856037502],[-127.92851043264828,52.910154721888816],[-127.92866551280233,52.91030856053116],[-127.92882701584547,52.91046004272863],[-127.92899489188737,52.910608066229976],[-127.92917098703305,52.9107525827976],[-127.92935711317257,52.91089245963455],[-127.92955147338785,52.9110288292141],[-127.92975406852217,52.91116170941867],[-127.92996022092728,52.91129115901478],[-127.93017184818599,52.91141772046205],[-127.93039340457099,52.911537392723666],[-127.93062220634586,52.911652461749654],[-127.93085282039173,52.911766379616765],[-127.93107981360457,52.9118825984425],[-127.93129596746726,52.91200628565141],[-127.93150125598355,52.912136867786884],[-127.93171195365142,52.912263441805266],[-127.9319434213682,52.912375666589796],[-127.93219202587694,52.91247526971425],[-127.93245129476149,52.912563496309325],[-127.93271851818562,52.912642058843346],[-127.93289592767509,52.91287679178983],[-127.93297718298803,52.91304528067371],[-127.93291939032797,52.913208772359525],[-127.93276547344597,52.91336880337279],[-127.93259083473596,52.9135235607019],[-127.93240054763685,52.91366232506448],[-127.93221119770377,52.913801073694586],[-127.93208244465049,52.91396124637727],[-127.93197926637272,52.914130531694084],[-127.93187892315267,52.91430088234412],[-127.93176348068044,52.91446700586908],[-127.93161687547331,52.914624108119135],[-127.93138926328734,52.914741063894915],[-127.93115394796777,52.91485254075964],[-127.93102878449068,52.915009846216634],[-127.9309605210335,52.91518920212924],[-127.93092952232831,52.915368511324644],[-127.93095445918074,52.915548579404245],[-127.93096541307374,52.9157283119952],[-127.93093625040262,52.91590702601912],[-127.93089589018439,52.91608536778719],[-127.9308583404147,52.916264219395586],[-127.93085998391987,52.91644410471493],[-127.93080646138567,52.91661985547256],[-127.93071458137813,52.9167923167222],[-127.93058961375044,52.9169541020948],[-127.93043921044047,52.917109587769495],[-127.9302878671429,52.917265079673506],[-127.93014310893587,52.917422149265825],[-127.9300087764977,52.917582975518606],[-127.92988293104705,52.9177458953553],[-127.92979283060482,52.917916640527146],[-127.92973470477096,52.9180935870148],[-127.92965495361335,52.91826640422634],[-127.92955456616893,52.91843619686946],[-127.92947856348256,52.91860951739849],[-127.9294278942263,52.91878689734242],[-127.92939311139519,52.9189651466676],[-127.92936865350218,52.91914490362516],[-127.92935535346717,52.919324477587544],[-127.92936720003836,52.91950363917305],[-127.9293827962405,52.91968329525531],[-127.92938629623431,52.91986315864123],[-127.92939536752911,52.9200429216811],[-127.92940631640371,52.92022266288062],[-127.92942281150874,52.92040174814194],[-127.92944865790678,52.92058123604086],[-127.92946517891605,52.92076088580762],[-127.92945855634555,52.920943713021025],[-127.92947040380143,52.92112287441757],[-127.92953248035539,52.92127934865536],[-127.92969370798154,52.921403374538215],[-127.92982459677842,52.921515567102205],[-127.93006708822679,52.92170551800417],[-127.93025345764794,52.92184930824254],[-127.93035710325643,52.92201856074718],[-127.93043670819668,52.9222123039998],[-127.93055325356416,52.9223779728003],[-127.9306634271513,52.922547117916274],[-127.93076720289706,52.92271916585355],[-127.93087464259513,52.92288946762873],[-127.93099576386257,52.923053383917505],[-127.93114148669987,52.92320513060508],[-127.93132723980486,52.92331473515701],[-127.93158613372746,52.92343435750034],[-127.93185038515756,52.92352810000191],[-127.93211097462539,52.92362358799503],[-127.93238617387088,52.92371210966821],[-127.93258977028077,52.92382479114219],[-127.93260994330907,52.92400212945544],[-127.93260736360939,52.92419161612851],[-127.9326857370488,52.92435791873019],[-127.93292910606398,52.924463776559975],[-127.9331525748332,52.92458284752346],[-127.9333188986754,52.92473649508948],[-127.93342337475079,52.92490292435094],[-127.93339434310138,52.92508443383445],[-127.9334004431526,52.925259770183075],[-127.9335436755692,52.9254177157338],[-127.93372913431571,52.925561515563764],[-127.93395354975112,52.925680569501395],[-127.9341896580698,52.92579047202627],[-127.93443738224124,52.925889529425774],[-127.93468780686308,52.92598629997577],[-127.93491036476527,52.92610538267806],[-127.93512843875503,52.92622846659222],[-127.93535095899463,52.926346993102186],[-127.93558436456482,52.9264586143283],[-127.9358204814078,52.92656851352933],[-127.93605206299507,52.926681284829804],[-127.93627567972783,52.92680315451618],[-127.93644535530946,52.92694776589055],[-127.93655819753627,52.92711349876434],[-127.9366582471612,52.927284481945215],[-127.93676654381242,52.927452522395164],[-127.93687300449042,52.92762115792964],[-127.93698130325348,52.92778920710833],[-127.9370996860078,52.9279537183148],[-127.93724105338529,52.92811113417761],[-127.93744837702037,52.92824335866115],[-127.9377238271235,52.928316170545905],[-127.93801889918207,52.92836960214559],[-127.93821043321063,52.92848246386298],[-127.93827563981651,52.92866579422025],[-127.93836190160083,52.928840921967044],[-127.93846005974788,52.92901137877385],[-127.93858319225806,52.92917749621994],[-127.9387396993133,52.92933970081871],[-127.93898339255169,52.929410791071525],[-127.93928401006988,52.929422087336036],[-127.9395936601787,52.92942707310874],[-127.93988596073378,52.929460368344614],[-127.94017333774082,52.92950831666451],[-127.94045986835208,52.929557964189385],[-127.94074117978784,52.92961609990062],[-127.94101230183834,52.92969570147313],[-127.94114708603956,52.929851535444946],[-127.94125285056741,52.930024662524865],[-127.9414419016381,52.93016446341523],[-127.94172365018964,52.93019120241928],[-127.94202217884406,52.93015657536371],[-127.94231894247389,52.930144387150015],[-127.94261148035439,52.93018272066264],[-127.94288731323805,52.93024318371566],[-127.94308649494359,52.9303800168591],[-127.94331344158763,52.93049228582386],[-127.94358425221725,52.93056516090857],[-127.94386669260874,52.93062719853884],[-127.94414739888826,52.93069206209687],[-127.94441108355925,52.93077177886719],[-127.94466349878954,52.93087017283938],[-127.94490532808896,52.930981636894906],[-127.94512259416429,52.931106402108384],[-127.9452958374998,52.93124645826558],[-127.94540588780997,52.93141110815158],[-127.94548669883974,52.93158856300301],[-127.94558494305574,52.93176013370702],[-127.94571637269009,52.931923299926375],[-127.94588888776556,52.932067860125436],[-127.94611695417797,52.932184033214135],[-127.9463386888677,52.932304229503195],[-127.94653141556495,52.932442284708316],[-127.94669122924313,52.93259433566918],[-127.9468216248059,52.93275528481065],[-127.94694558586733,52.93291801722396],[-127.94706498604462,52.933083066902476],[-127.94718161098173,52.93324871837465],[-127.94729641479624,52.93341496482999],[-127.9474102806709,52.93358122669036],[-127.94752231049142,52.933748083789105],[-127.9476159438088,52.933920285086806],[-127.94772514784998,52.93408662377571],[-127.94790231712332,52.934230539101684],[-127.94810235500752,52.934365107886144],[-127.94822556606529,52.93453177028117],[-127.94825979884745,52.9347094381527],[-127.94812645554474,52.9348713882037],[-127.9478937206701,52.934979490421455],[-127.94760859676818,52.935043055227865],[-127.94732448797308,52.93510828847306],[-127.94703841297037,52.935171311599134],[-127.94679181390711,52.935261705356346],[-127.94661446465017,52.93539915504509],[-127.94648039388434,52.93556559893662],[-127.94635374771308,52.93573135489892],[-127.94622436492466,52.93589827691156],[-127.94617353996655,52.93607118168784],[-127.94619005002342,52.936248586903865],[-127.94623555552451,52.93642831061092],[-127.94628941120726,52.93660733124703],[-127.94633761686812,52.93678476830212],[-127.94638674693901,52.936962190039104],[-127.94644052728614,52.93713953484502],[-127.9464989216345,52.93731568234527],[-127.94656474282267,52.93749115098636],[-127.94664441582586,52.93766358359719],[-127.94673890116198,52.93783408523646],[-127.94684080318227,52.93800335212694],[-127.94694362963725,52.93817259466724],[-127.94704275678183,52.938342463271894],[-127.94714923415549,52.93850996826602],[-127.94727692431306,52.9386726383707],[-127.94742673004788,52.938829337617236],[-127.94757649655345,52.93898548132506],[-127.94770410213404,52.939145910432245],[-127.94775230166344,52.93932334687975],[-127.94776435921479,52.9395053002307],[-127.94772679786873,52.939682478702146],[-127.94757538619909,52.939836870562324],[-127.9474155313936,52.939990289873606],[-127.94734979139417,52.94016288546848],[-127.94733201296464,52.94034477630992],[-127.94730944088452,52.940523939521846],[-127.94728502084638,52.94070314224341],[-127.94725032031674,52.94088195002615],[-127.94721373056224,52.9410602240572],[-127.9471846445953,52.94123950386746],[-127.94716207142031,52.94141866695343],[-127.94714980434735,52.94159878947897],[-127.94716080791221,52.94177796210854],[-127.94718121487291,52.94195922111403],[-127.9472007491478,52.94214161549986],[-127.9472286493986,52.9423233065178],[-127.94727131232291,52.94250195539092],[-127.94733890535579,52.94267515198948],[-127.94743872726737,52.942839403672394],[-127.94758281542627,52.94299339025871],[-127.9477564233148,52.94314017144358],[-127.94794387050415,52.94328391648892],[-127.94812950704498,52.94342881217261],[-127.9482948547303,52.94357852720552],[-127.94841801647905,52.94374351276766],[-127.94862325411366,52.94386846190344],[-127.94880687837531,52.9440100269589],[-127.94899142802186,52.94415157641609],[-127.9491859775834,52.944287355198895],[-127.94937506716097,52.94442603097553],[-127.94954958537949,52.94457222954755],[-127.94968124989144,52.944719137565976],[-127.94983351369248,52.94488812358449],[-127.94998236029429,52.945043714423726],[-127.95013945672052,52.945196361527174],[-127.95030021893409,52.945347270734835],[-127.95046374430031,52.9454975779519],[-127.95062910823547,52.94564728951847],[-127.95079720947597,52.9457958345367],[-127.95096622511038,52.94594379920184],[-127.95113799338903,52.94609060601476],[-127.95131161085736,52.946237372967374],[-127.9514732798876,52.94638770958387],[-127.95158994786743,52.94655279952097],[-127.951698481179,52.94672362901558],[-127.95185068209811,52.94687075021306],[-127.95213080005131,52.94694065464936],[-127.9516842382211,52.946982243050655],[-127.95153578438635,52.947059252497645],[-127.95145311143223,52.947248944875845],[-127.95143315004167,52.94742358122253],[-127.95137903205486,52.947605518415806],[-127.95135184803519,52.94778532323289],[-127.95134774329645,52.94796026165901],[-127.95136445915256,52.948141580776706],[-127.95145073741683,52.94831502115931],[-127.95156190819176,52.94848244405668],[-127.95169607181742,52.94864275992977],[-127.95184131427669,52.948800650065046],[-127.95197639322961,52.94896038548249],[-127.95208386676697,52.94912843414401],[-127.95217476465713,52.94930067642003],[-127.95226748593151,52.949472323421354],[-127.95238317485484,52.949636307724624],[-127.95253932156508,52.94978785537663],[-127.952723035814,52.94993053392627],[-127.95290858886793,52.95007261673343],[-127.95307856844455,52.95022057136561],[-127.95325399601954,52.950365628490914],[-127.95345588731652,52.950497915722565],[-127.95367771265387,52.95061754127174],[-127.9539122751732,52.95073022927155],[-127.95412582566178,52.95083205590383],[-127.95436405117964,52.950902641629156],[-127.95464912341258,52.95097806299861],[-127.95493284970051,52.95108488404718],[-127.95511282496547,52.951227065062504],[-127.95526807354487,52.95137918011921],[-127.95541238832764,52.95153651640221],[-127.95555122753126,52.95169675034085],[-127.95568914345229,52.951856999452495],[-127.95583254812836,52.95201491530909],[-127.95598514320804,52.95216988040483],[-127.95614235389611,52.95232363869882],[-127.95629308761953,52.95247863432555],[-127.95638278398805,52.95262454625208],[-127.95650879421989,52.95280965340749],[-127.95656549118127,52.952988065412136],[-127.95665082459472,52.95316039672688],[-127.95674722251269,52.95333030218534],[-127.95684823621714,52.953499009891786],[-127.95695114033774,52.9536682510561],[-127.95705215565305,52.95383695855315],[-127.95715043527385,52.95400683239069],[-127.95725240212504,52.9541760798903],[-127.95735530949085,52.954345320632],[-127.9574609946712,52.95451395013967],[-127.95757676886842,52.95467904894462],[-127.95772468718359,52.95483352458144],[-127.95790754178527,52.95497676554698],[-127.95806654145187,52.95512881459503],[-127.95829985937378,52.95545673955932],[-127.95841844243844,52.95562179082895],[-127.95854162673022,52.955785644490376],[-127.95868132775189,52.95594361849612],[-127.95883027138504,52.956099761638725],[-127.9589388581217,52.95627058347003],[-127.95909939452318,52.95641531484872],[-127.95934571252499,52.95651882914247],[-127.95958839248195,52.95662464539584],[-127.95982560045107,52.95673279415194],[-127.96008428257898,52.95682152867199],[-127.960347452219,52.9569062690531],[-127.96061151021102,52.95698986413986],[-127.96087376820518,52.95707517454614],[-127.9611324695113,52.9571639064977],[-127.96138222559843,52.95726119857817],[-127.96162130547869,52.95736931263459],[-127.96185133658011,52.95748373777138],[-127.96203503799104,52.95762472545689],[-127.96219223902636,52.95777735506574],[-127.96234482626072,52.9579311912794],[-127.96249468871102,52.95808674966528],[-127.96264456716794,52.95824230759735],[-127.96279626960434,52.9583972699778],[-127.96311333756188,52.95867951629687],[-127.96328338660162,52.95882744646683],[-127.96344882181299,52.95897658324942],[-127.96360418019039,52.95912980670236],[-127.96374487604167,52.959288314289154],[-127.96386625364015,52.959452757627375],[-127.96397007243775,52.95962084757257],[-127.96406098914393,52.95979195947823],[-127.96414358931241,52.95996489593402],[-127.96422062404618,52.96013848114299],[-127.96429395720975,52.96031268402807],[-127.96433111802695,52.960491418028575],[-127.9644173968043,52.9606631719441],[-127.96448053913613,52.96083866562498],[-127.96453812735204,52.961015381836184],[-127.96459570488031,52.96119153322234],[-127.9646560713922,52.96136763804566],[-127.9647210648252,52.96154310067816],[-127.96480180708703,52.961716067584085],[-127.96483615664144,52.96189428326405],[-127.9648575106064,52.9620738456509],[-127.96487607577305,52.962253445574696],[-127.96489462659832,52.96243305468566],[-127.96489172261482,52.96261245674197],[-127.96485894225872,52.96279123623433],[-127.96481870544629,52.962970140083094],[-127.96479338071985,52.96314879513388],[-127.96483710345053,52.96332797527679],[-127.96496298307795,52.9634884144015],[-127.96514591043076,52.96363220815711],[-127.96533151339352,52.96377315907658],[-127.9655153309469,52.96391581646171],[-127.96568175895528,52.96406548953923],[-127.9657280422835,52.96423958676409],[-127.96574020988272,52.96442210004596],[-127.9658310921933,52.9645920899945],[-127.96592012187766,52.964762666784935],[-127.96593405101878,52.964942908686425],[-127.96594143756518,52.96512270377408],[-127.96594135226029,52.965302614585575],[-127.96591416670596,52.96548130073965],[-127.9658682875196,52.965659177902545],[-127.96586635306167,52.96583912848031],[-127.96592022503506,52.96601589674703],[-127.96599078688513,52.96619015346426],[-127.96607062926446,52.96636369026376],[-127.96615602802129,52.96653601329702],[-127.96624138645345,52.96670777197242],[-127.96632030617593,52.96688132398338],[-127.96638903256847,52.96705616705722],[-127.96638708533631,52.96723611774097],[-127.96623186305263,52.96738947315653],[-127.96601747592106,52.96751411495407],[-127.96582603522063,52.96779194448974],[-127.96587071784812,52.96797167284258],[-127.96598014740165,52.96813911099918],[-127.9661715466905,52.96828388271185],[-127.9663748765833,52.96842453609998],[-127.96650217517784,52.968574861138954],[-127.96645435290941,52.96875108470303],[-127.96635642730108,52.96893319338231],[-127.96635394222463,52.9690004922458],[-127.96646651922725,52.969074838011515],[-127.96667494368266,52.96920419628454],[-127.96671280285724,52.96937731243157],[-127.96671660489463,52.96956052080387],[-127.96671764402227,52.96974434024646],[-127.96673256961489,52.96992568591598],[-127.96680118408572,52.97009828849638],[-127.96692628126361,52.97026154526397],[-127.96707075506052,52.97041998555542],[-127.9672445011169,52.97056617129035],[-127.96740445455785,52.97071651495474],[-127.96751300938955,52.97088508719408],[-127.96758821325722,52.97105870019646],[-127.96761803214393,52.97123923196603],[-127.96757486549349,52.97141538693691],[-127.96749332940408,52.97158881086083],[-127.9674099286357,52.971762274807965],[-127.9673236857491,52.971934656206905],[-127.96726281241301,52.97211110665204],[-127.96726270697854,52.972290461143324],[-127.9672822376546,52.97247060866454],[-127.96725594101814,52.97264815857641],[-127.96717910681878,52.97282262453137],[-127.96714555889416,52.97300477926846],[-127.96726022218886,52.97316428196027],[-127.96743777584837,52.97331152473921],[-127.967607935771,52.97346057665965],[-127.96778365307514,52.97360840559489],[-127.96795197659742,52.97375804369832],[-127.96809444643846,52.97391316224475],[-127.96815103845245,52.97408764161144],[-127.96814081909326,52.974269971781766],[-127.96810894209254,52.97444817094979],[-127.96806684336939,52.974627105800124],[-127.96802096332028,52.97480498282237],[-127.96800963672801,52.974983403566945],[-127.96806541990384,52.97516070325765],[-127.96815915001066,52.97533120823924],[-127.96826212583817,52.975499872767166],[-127.9683632636051,52.97566912390283],[-127.96846624106044,52.97583778821822],[-127.96857383646136,52.97600525432777],[-127.96868882440945,52.97617147585744],[-127.96880288840086,52.976337712713175],[-127.96890400458335,52.97650640773729],[-127.9689829533574,52.976679956942185],[-127.96905633497046,52.97685416408788],[-127.96901987819538,52.97721515497719],[-127.96894073757043,52.97738013652356],[-127.9687460763583,52.977508379997204],[-127.96849651907245,52.97762016107175],[-127.96827181252495,52.97774441290431],[-127.96808705230276,52.97788537625326],[-127.96802215881125,52.97805572380856],[-127.96799977292365,52.97823713577506],[-127.96799330707749,52.9784199587482],[-127.9679913656992,52.9785998992689],[-127.96800435752442,52.97877959931281],[-127.96801454447001,52.97895933721947],[-127.9680343667989,52.97914564883815],[-127.96803817540376,52.97932885609319],[-127.96791606633727,52.97947270025647],[-127.9676404727487,52.97956641385012],[-127.96737076435943,52.97964602112236],[-127.96708778618809,52.97970118840352],[-127.96678913702253,52.97970001311759],[-127.96649727351796,52.979724496688995],[-127.96621851562672,52.97979024491736],[-127.96593052867742,52.97983820230515],[-127.96564040656246,52.979880033862436],[-127.96537443320003,52.97996013910506],[-127.96519717962752,52.98010209315346],[-127.96510900545111,52.98027394785741],[-127.9650818068271,52.9804526322121],[-127.96507429959163,52.98063323003897],[-127.96508820425002,52.980812905799084],[-127.96517444944169,52.98098297245423],[-127.96554412891642,52.98078456832296],[-127.96576145160232,52.980661557484204],[-127.9659855149623,52.98054292650852],[-127.96621049082488,52.9804237148926],[-127.96643151364685,52.98030008499432],[-127.9666881374414,52.98021957744808],[-127.96698833612697,52.98019382440599],[-127.96728406154647,52.98017207308497],[-127.96758090817968,52.98015423010047],[-127.96788359940747,52.98012170744113],[-127.9681655464083,52.98012484489893],[-127.96839167784945,52.98023260645407],[-127.96860049980396,52.98036923651464],[-127.96879732385159,52.98050886457808],[-127.96896104982058,52.980659142914774],[-127.96912664135591,52.98080938088598],[-127.96929673342511,52.98095618953269],[-127.96946870600911,52.98110295754177],[-127.96964160515766,52.98124971878635],[-127.96981447934031,52.981395915243056],[-127.96998738045836,52.98154266699397],[-127.97015476626122,52.98169119662163],[-127.9703221794,52.98184029051942],[-127.97049414418049,52.981987057203945],[-127.9706780058692,52.98212858489154],[-127.9708619726466,52.98227235244187],[-127.97105413239652,52.98241149887088],[-127.97126249119952,52.98253804356169],[-127.97149614362178,52.98264622952384],[-127.97175048305041,52.982737819599265],[-127.97201660006371,52.98282192138385],[-127.97228273304904,52.98290602231366],[-127.97254829101242,52.98299797892917],[-127.97264693218756,52.98309272933978],[-127.9726365128264,52.98333054506538],[-127.97265510521432,52.98351014171799],[-127.97267560382555,52.9836902713984],[-127.97265681965678,52.983868816769146],[-127.97261002381602,52.984046710077735],[-127.9725481889346,52.984222613186354],[-127.97246851396511,52.98439601696351],[-127.97238226596147,52.984568400758825],[-127.97231289164918,52.98474275291315],[-127.97227733539295,52.98492157878884],[-127.9722614059553,52.98510119709797],[-127.9722594823359,52.98528113696924],[-127.97226036411485,52.9854610388368],[-127.9722500295045,52.98564056344604],[-127.97222568826083,52.98581975748857],[-127.9721929208511,52.98599853652927],[-127.97215732234184,52.986176806925776],[-127.97210865680547,52.98635473100182],[-127.97207210637585,52.98653245229643],[-127.97207298697208,52.98671234507033],[-127.97205718613165,52.986894767832894],[-127.97192159250262,52.987050041505796],[-127.9717149470405,52.987182407907035],[-127.97146670125746,52.987282962399185],[-127.97128566658306,52.98742443207536],[-127.97112285007094,52.98757624123408],[-127.97097518693691,52.98773283647696],[-127.97085402433267,52.987897399905],[-127.97075925862444,52.98806769144369],[-127.97067866979768,52.988241664640874],[-127.97058387644563,52.988411391485016],[-127.97044563810086,52.988570070205206],[-127.97028284037152,52.98872244261837],[-127.97015303765104,52.98888210084767],[-127.97010438679735,52.989060588327455],[-127.97001253541025,52.98923362821438],[-127.96982186461781,52.98936852169794],[-127.96959214408751,52.98948669729671],[-127.96943278453332,52.98963284120974],[-127.96940844036591,52.98981259901133],[-127.96937100242477,52.98999145463723],[-127.96930837604062,52.9901707311095],[-127.96909872648169,52.99027904668861],[-127.96882987801757,52.99035864133329],[-127.96860773987326,52.990479486017605],[-127.96839329513864,52.99060525048985],[-127.96819032620029,52.99073699256934],[-127.96802641597458,52.990886008179395],[-127.96787683893865,52.991042074820484],[-127.96773390047017,52.99120027228924],[-127.96758905500636,52.991357945400644],[-127.96744514816187,52.99151559366547],[-127.96730977140321,52.991675906178536],[-127.9671979617651,52.991841429862184],[-127.96713049719841,52.992017422709665],[-127.96709394721701,52.99219570637818],[-127.967036774164,52.992372083343746],[-127.96697397890071,52.992547998094715],[-127.96694678026267,52.99272668156995],[-127.96694671449491,52.99290659811802],[-127.96702207746814,52.99310318194594],[-127.96695451346213,52.99325675736824],[-127.96694806696449,52.99344014316169],[-127.96687394851301,52.993653793680856],[-127.96681022544549,52.99382972364987],[-127.96674742709124,52.99400563812749],[-127.96668741887437,52.99418150599011],[-127.96663307318082,52.9943584002567],[-127.96658617382407,52.99453517023484],[-127.96655153666458,52.99471454241893],[-127.9665374966391,52.994895247856505],[-127.96654670414591,52.995073879523396],[-127.96658684027312,52.9952553669439],[-127.96667508990852,52.99542764005961],[-127.96683225124906,52.99557634448624],[-127.96704367508923,52.995707329119696],[-127.9672739693239,52.995822305303754],[-127.9675249064113,52.995919557451806],[-127.9677812597935,52.99601279985802],[-127.96802949762419,52.99611234686571],[-127.96828041241947,52.996209041832984],[-127.96854825363064,52.996288074566344],[-127.96882222863904,52.99635860169478],[-127.9690551663122,52.996470167524855],[-127.969250944723,52.996605893423755],[-127.96943486550954,52.99674742181671],[-127.96964169875362,52.99687959956842],[-127.96989946077801,52.99696272550051],[-127.9701858779324,52.99701959034394],[-127.9704465627714,52.997105473085355],[-127.97068681513474,52.99721355069113],[-127.97091833822626,52.99733466009346],[-127.97111138765793,52.997471549567216],[-127.97115743277398,52.99763892050473],[-127.97115701612597,52.99783117302482],[-127.97114636209308,52.99800397579354],[-127.97117998320252,52.99818556168256],[-127.97116858590834,52.99836230461506],[-127.97102745956254,52.998519909926614],[-127.97087888508337,52.99867764853106],[-127.97082445802579,52.99885285992141],[-127.97080018133944,52.99903373684426],[-127.9707411492538,52.999210155039506],[-127.97058866884578,52.999364586672606],[-127.97057172378743,52.99954254305313],[-127.9705660610549,52.99972254372226],[-127.97055385015916,52.99990209784459],[-127.97055839563126,53.00000010837264],[-127.97076347975127,53.00059750242299],[-127.9709577952534,53.00080162718149],[-127.97120300518398,53.001156783109856],[-127.97144599085007,53.001826402942854],[-127.97183222635005,53.00238377450923],[-127.97170221352205,53.002921756476866],[-127.9717923398302,53.00309343822051],[-127.97218171753795,53.00353697647831],[-127.97273858954634,53.00386786820493],[-127.97310859235121,53.0041553616257],[-127.97340568589372,53.004541595721406],[-127.97360644318115,53.004903660240636],[-127.97378838510372,53.005282853420525],[-127.97387345901055,53.00566703087326],[-127.97414922587078,53.00593535695657],[-127.97453228378254,53.00618171778094],[-127.97475186937224,53.00634618041457],[-127.97494411273662,53.0064645773629],[-127.9752690221495,53.006584679256385],[-127.97550825860353,53.00668940174782],[-127.97597709850791,53.006792517906284],[-127.97633918281318,53.00682848869269],[-127.97654710869084,53.0069023477645],[-127.97675398828207,53.00699415898843],[-127.97704890766113,53.00713157292464],[-127.97738615145155,53.007396062986366],[-127.9777941283274,53.00757529547711],[-127.9781129866892,53.00804634405264],[-127.97834252321398,53.0083036709044],[-127.9789947129601,53.00859369297619],[-127.97927178459805,53.00880874563109],[-127.97978183025383,53.009153842400856],[-127.98033995601553,53.009428622569786],[-127.98090345953362,53.00951836442259],[-127.98156260199933,53.00949607973399],[-127.98200950808926,53.00952835718411],[-127.98243158556141,53.00958851781554],[-127.98273852133715,53.00956262413371],[-127.98318814484752,53.00945305744352],[-127.98389464279805,53.00944509135655],[-127.98462729230575,53.00933748239049],[-127.98561452987936,53.00940269002085],[-127.98662175637007,53.00959590456378],[-127.98773307443844,53.009917940789435],[-127.98831486582517,53.01017827793626],[-127.98853870973016,53.0106912557903],[-127.98856943103884,53.011387396218275],[-127.98829628737833,53.01199563155997],[-127.98811747624332,53.01260450843603],[-127.98812725964372,53.013172658365995],[-127.98813514387204,53.013840047452234],[-127.98811506674984,53.014209173845224],[-127.98810311724793,53.01469193359338],[-127.98809233773332,53.01516011028503],[-127.98801059920397,53.01562835316435],[-127.9880719038505,53.016040388605155],[-127.98799676156982,53.016749520834956],[-127.98801045539281,53.017161793672],[-127.98809992769283,53.01723762983164],[-127.98812672982595,53.017730388790746],[-127.9883538659011,53.018073492941106],[-127.98886098716571,53.0185318062761],[-127.98897230638119,53.01863529669698],[-127.98898617626732,53.01873202799136],[-127.98902052198616,53.019285745640346],[-127.99007069411782,53.01969230776547],[-127.99034871786832,53.019865279619125],[-127.99158121313242,53.020135916574915],[-127.99258522041539,53.02027421233104],[-127.99336004333679,53.02038497821014],[-127.99421707381498,53.02063503083463],[-127.99461786482652,53.020716807287464],[-127.99494658695927,53.020814938522946],[-127.99514583952758,53.02092085475006],[-127.99531610158051,53.021026149132574],[-127.99576462268854,53.02138790390558],[-127.99556638545056,53.0218401967584],[-127.99477359478021,53.02250094209023],[-127.9941282960737,53.022921559195254],[-127.99343397713096,53.023412489750555],[-127.99369855204861,53.02365630895097],[-127.99432168745254,53.02421520818594],[-127.99445184672673,53.02469949183476],[-127.99446746482154,53.02501196766278],[-127.99474123539727,53.02541142957443],[-127.99525242501105,53.02571440280347],[-127.99561861880073,53.026171717681315],[-127.9959902868818,53.02638792963541],[-127.996455554473,53.02664740255692],[-127.99680186213756,53.026920087815846],[-127.99705752126329,53.02709231100201],[-127.99752386076504,53.02729515018253],[-127.99758655405113,53.02739664927593],[-127.99799956991245,53.027597591765904],[-127.99851543437869,53.0277009463312],[-127.99886536940974,53.02783177092533],[-127.99941947209852,53.02829092992949],[-127.99971769483902,53.02857338935867],[-127.99973097413067,53.028577647977436],[-128.00000045260055,53.028666116845876],[-128.00021018237703,53.02873542144624],[-128.00050665090643,53.02872254769134],[-128.00079951975334,53.02869292026377],[-128.00108651432407,53.02863761031202],[-128.00137532037024,53.028600768779896],[-128.00167645473138,53.02862760151749],[-128.00194345691477,53.02856422617774],[-128.00219944500532,53.02846572329595],[-128.00247991094307,53.02839089989162],[-128.00276941996376,53.02830976162251],[-128.00305845123626,53.02823816314859],[-128.00333929437457,53.02819135456946],[-128.00360165118934,53.02818801972077],[-128.00383146552957,53.02828724203552],[-128.00403331318094,53.02844691345336],[-128.00421133114602,53.028596336048686],[-128.00435975557176,53.02875242186096],[-128.00450549436755,53.02891080395969],[-128.00467410182307,53.029058699897625],[-128.0048582811648,53.0292001703084],[-128.00505067053513,53.0293375821155],[-128.0052405589371,53.02948119678061],[-128.0054457164982,53.02961165636039],[-128.00570083352284,53.02969251007768],[-128.00600475999462,53.02971872847578],[-128.0063020424694,53.02970302856294],[-128.00657628518493,53.02963502693423],[-128.00683644130177,53.02954541055795],[-128.00708973691852,53.029449184703225],[-128.00736195137122,53.029377861862024],[-128.00765325843565,53.02933479279179],[-128.00794856432861,53.02931687147325],[-128.00824732530003,53.029312906761895],[-128.00854648380516,53.02931734602056],[-128.0088439869903,53.02932628748282],[-128.00914172901005,53.02934027282146],[-128.00943855701098,53.02935483793281],[-128.00973629942663,53.02936882177098],[-128.01003396229177,53.029381120329546],[-128.01033165205686,53.029393982633216],[-128.01062841600637,53.02940685996837],[-128.01092613286735,53.0294202852681],[-128.01122224783623,53.02943933284317],[-128.01151787337977,53.029467920466224],[-128.0118139626234,53.02948641102036],[-128.01211400749776,53.02947008433713],[-128.01236668321954,53.02938058313239],[-128.0126003935803,53.02926562338039],[-128.01284004875944,53.02915785227556],[-128.01307878813893,53.02905065226926],[-128.01331946126226,53.02894453968698],[-128.01356495231158,53.0288417071621],[-128.01381420231132,53.02873936591537],[-128.0140755029376,53.02865476234413],[-128.01436156539964,53.02859999170421],[-128.01466166727965,53.02856516644098],[-128.01495284848488,53.02855907222294],[-128.01520149294026,53.02866074908316],[-128.0154784556657,53.02872887841108],[-128.01577296725375,53.02875355558106],[-128.01607448960044,53.02874895883186],[-128.01636428894537,53.028713740355784],[-128.01662836532338,53.02862851864168],[-128.01688258607265,53.0285328203804],[-128.01713201270934,53.028434396690926],[-128.01738043218398,53.02833430377975],[-128.0176298565011,53.02823587902646],[-128.01788420550182,53.02814297417884],[-128.01815230201333,53.028063849798784],[-128.01842532299224,53.02799023626229],[-128.01868636998873,53.02790057783143],[-128.01893648395526,53.02777747770002],[-128.0191795730204,53.027683641712436],[-128.019438642324,53.027729093261634],[-128.0195873596183,53.027890204605335],[-128.0195725814651,53.02807036412747],[-128.01953091277463,53.02825491176781],[-128.0194983117548,53.02843369943131],[-128.01946290266454,53.028612535134165],[-128.01943776865778,53.02879119490543],[-128.0194565942074,53.028970788010085],[-128.01948284576886,53.029149689015505],[-128.01951097940383,53.029328557780524],[-128.01953259799475,53.029508094043884],[-128.01955511634296,53.02968705889805],[-128.01958233655103,53.02986650819196],[-128.0196355872875,53.030043260978125],[-128.01966464816797,53.030222113759685],[-128.01966296513228,53.03040261380171],[-128.0196115603198,53.03057892530891],[-128.01953291615456,53.03075233129333],[-128.01954798214987,53.03093142360481],[-128.01954444350997,53.031112520280125],[-128.01953805810052,53.03129253576243],[-128.01965046914876,53.031455954308925],[-128.01978427909424,53.03161732049563],[-128.01979472470853,53.03179761275011],[-128.01985357984964,53.03197426934423],[-128.01990399989842,53.03215051433477],[-128.01989204156735,53.032331190119024],[-128.0198912321878,53.03251055406083],[-128.0199519826403,53.03268774305881],[-128.0200434147425,53.03286160881843],[-128.02017426263856,53.033019662435315],[-128.02039313258825,53.03314258041859],[-128.020601094242,53.033271845508516],[-128.02070537176448,53.0334410070105],[-128.02077148814416,53.033613054962515],[-128.0210173833539,53.03371477606906],[-128.02129208661376,53.033793575404275],[-128.02156765213326,53.033870682416214],[-128.02185214682595,53.033919612329804],[-128.0221449035184,53.03392636926658],[-128.022442209047,53.033910619770275],[-128.0227419609084,53.03388754596377],[-128.0230411719196,53.03387289218662],[-128.02333854992656,53.03387843701092],[-128.02363751011274,53.03389741418163],[-128.02393240914066,53.03392934658128],[-128.0242196198414,53.033976538354295],[-128.02449726425127,53.034038474767364],[-128.024769868773,53.03411226241005],[-128.02503903361176,53.03419226915712],[-128.02530635926433,53.03427287182947],[-128.025573659426,53.03435291836159],[-128.02583917341414,53.03443467189727],[-128.02610381577634,53.034517560757195],[-128.02636757159158,53.03460158520351],[-128.02663222760808,53.03468502865753],[-128.0268968730785,53.03476791572692],[-128.02716147811796,53.03485024692515],[-128.02742612565103,53.034933132799715],[-128.02768826001946,53.03502222197183],[-128.02795031544775,53.03510963500677],[-128.02823356368074,53.03515184555446],[-128.02843594334752,53.035007127849205],[-128.02868803077948,53.034964125585084],[-128.02899919404436,53.03500361241888],[-128.02928644462403,53.035051356321],[-128.02957384443653,53.03510189483446],[-128.02986106976473,53.03514908180547],[-128.03015169664266,53.03518891895705],[-128.03044566848422,53.035220851249406],[-128.0307396021288,53.03525166253278],[-128.03103302382002,53.03529144943355],[-128.0313267140212,53.03533683569686],[-128.03160817460582,53.03532190098899],[-128.03185525736436,53.03521339855437],[-128.03208526634805,53.035099584936184],[-128.0323132726842,53.03498299849871],[-128.03254225792762,53.034867524636866],[-128.0327751516132,53.03475533682068],[-128.03301094501066,53.03464534940228],[-128.03324865753484,53.03453644038639],[-128.03348444849044,53.03442645200794],[-128.0337098132337,53.03433289204401],[-128.03395213108732,53.03420316917921],[-128.03419084552542,53.034095926779244],[-128.03443239351364,53.033989190995555],[-128.0346758881259,53.03388410701801],[-128.03495343073675,53.03382663583294],[-128.03524898481837,53.033794078993964],[-128.0355455451833,53.033801849069455],[-128.0358408824784,53.03378442274242],[-128.03609838234286,53.033698715075495],[-128.03630028569316,53.03356407990287],[-128.03649172307476,53.03342569722059],[-128.0366774509432,53.033285179837094],[-128.03687080664577,53.0331478843033],[-128.03707087666666,53.033014400279086],[-128.03728925451583,53.03289237414804],[-128.0375221248284,53.03278017683477],[-128.03776076849354,53.03267180710705],[-128.03800137378425,53.03256508888527],[-128.03824004168806,53.032457273703436],[-128.03853521873626,53.032378191150336],[-128.03872337088785,53.03232730410815],[-128.03894935380512,53.03214965193716],[-128.0391406957028,53.0320095892976],[-128.03935609261896,53.03188423879323],[-128.03959967058975,53.031781384562],[-128.03985888298203,53.03169283178827],[-128.0401229578479,53.03160812213569],[-128.04038801108678,53.031524506928704],[-128.04067246152812,53.03147531393438],[-128.04096079462005,53.031428850957454],[-128.04124911214515,53.03138238753321],[-128.0415364491567,53.0313348194118],[-128.04182277848838,53.03128558211194],[-128.0421079778625,53.031232444826806],[-128.04239975736763,53.03118031386835],[-128.04267676015237,53.03111218875396],[-128.04290698738015,53.031003953854515],[-128.04311197269917,53.03087597854762],[-128.04330716359138,53.03073863994151],[-128.04349845802153,53.03059801459273],[-128.04369458732842,53.03046065902419],[-128.04390522239737,53.030333705286374],[-128.0442678757394,53.030162641764065],[-128.0445611131351,53.030199035099464],[-128.044852538038,53.03023658008223],[-128.04513895608758,53.03028654161344],[-128.04542106586368,53.03034386782451],[-128.04570242412282,53.030405125249395],[-128.04597937821995,53.030472063153795],[-128.04625194318095,53.030544681309124],[-128.04651032925943,53.03063323813818],[-128.04676173452444,53.03073200409384],[-128.04702014958974,53.030821115324116],[-128.04729095962065,53.03089600348871],[-128.04756704742155,53.03096407373203],[-128.04784578196424,53.03102873454274],[-128.04812536254587,53.031091703075184],[-128.04840662158557,53.031150713998144],[-128.0486896943398,53.0312085718135],[-128.0489718537174,53.03126700081726],[-128.04925311509422,53.03132600971656],[-128.04953613610277,53.031382745482446],[-128.0498252403684,53.03142985127073],[-128.05011584557386,53.03146963960287],[-128.05037864983518,53.03155250661029],[-128.05062923676527,53.031653520651766],[-128.05088157134878,53.031751696928794],[-128.05114857916786,53.03182496557454],[-128.0514415901887,53.03185629724287],[-128.0517431520548,53.031871230145356],[-128.05204020155492,53.03188960362831],[-128.05233792157358,53.03190235993731],[-128.05263488367547,53.031899435339405],[-128.05293205579707,53.031881377951194],[-128.05322899563546,53.031858831070906],[-128.05352544294382,53.03184526860846],[-128.05382361643808,53.03184792469361],[-128.05412210016667,53.03185730034829],[-128.0544204090577,53.031862750471575],[-128.05471693710282,53.03185086055144],[-128.05501267912038,53.031822734219915],[-128.05532357318017,53.03179881801331],[-128.05558803256946,53.03174209040363],[-128.05568477522067,53.03157898720008],[-128.05571006054592,53.03138741929108],[-128.05565830804832,53.03120617037339],[-128.05562089062175,53.03103138840021],[-128.05574027926744,53.030872939230214],[-128.0559283724913,53.03072505812656],[-128.0561330460211,53.03059146012955],[-128.0563683213901,53.03047245673752],[-128.05660082985057,53.030354066043685],[-128.05678586235462,53.030220253232514],[-128.05688643929923,53.03005932381962],[-128.0569253715703,53.02987929194822],[-128.05695188985834,53.02969387171481],[-128.05701244614758,53.029516825581865],[-128.05712089837178,53.02934510495932],[-128.05731457727956,53.02921618017949],[-128.05758299026965,53.029125750014686],[-128.0577814226307,53.028998418451444],[-128.0579184979045,53.028839093158396],[-128.05804592705894,53.028673210216084],[-128.05820580992196,53.02852189827933],[-128.0583857079987,53.02837863954426],[-128.0585465289947,53.02822730174165],[-128.05870631472044,53.028073748804694],[-128.058893034119,53.02793653093755],[-128.05914033008597,53.0278346909826],[-128.05938765224548,53.02773341498859],[-128.05962814782598,53.0276260878835],[-128.05987162488887,53.027522627070915],[-128.0601298281441,53.02743404598264],[-128.06040277270523,53.02736034426338],[-128.0606708119783,53.02728167878078],[-128.06092989860247,53.02719195948249],[-128.0611898282875,53.027100538935656],[-128.06144680145346,53.02700581554575],[-128.06169518988082,53.02690731376948],[-128.06193203524776,53.02680228745362],[-128.06208992662073,53.02661008497102],[-128.06198813056295,53.02643755054122],[-128.0618938027679,53.02626489444313],[-128.0618759847746,53.026090335938804],[-128.06200516022597,53.02592273158815],[-128.0622826956259,53.025866880362194],[-128.0625526975278,53.02579041792018],[-128.06281867802173,53.02570842035649],[-128.0630965801774,53.02564078616498],[-128.06333920543327,53.02553957455339],[-128.06355835576198,53.02541636281737],[-128.063774587988,53.025290950806266],[-128.0640299225093,53.02520128991747],[-128.06430479410844,53.02512922194649],[-128.06454735954372,53.02502689676993],[-128.0647674836249,53.0249047775955],[-128.0649953459392,53.02478813629275],[-128.06523294871673,53.02467972671936],[-128.06547538786717,53.02457459484119],[-128.06571669410076,53.02446555441985],[-128.06595992068588,53.02435760977282],[-128.06622705712635,53.024299680191504],[-128.06646466799594,53.024229945628214],[-128.0667300594123,53.0241552309769],[-128.0669943739787,53.02409679305676],[-128.06724176575932,53.02401679678808],[-128.06756161434296,53.02394785155299],[-128.06792618140489,53.02393417867182],[-128.0682543286815,53.023920578318574],[-128.06853627324415,53.023917311057616],[-128.06885437940463,53.023908368987925],[-128.06910964556542,53.02389436759885],[-128.06942815853694,53.02387476317684],[-128.06971855605224,53.02394925642604],[-128.06999211511317,53.02402292351904],[-128.07026495275062,53.02410108651976],[-128.07056657538953,53.02411821140272],[-128.07078071044444,53.024007960328674],[-128.07106574298354,53.02395307730259],[-128.0713430075319,53.02389216018521],[-128.07164156038831,53.023884674931885],[-128.07193706592167,53.023910306507055],[-128.0722200131474,53.02396586810427],[-128.07249617805013,53.024035564784924],[-128.07276525952807,53.0241132231167],[-128.07303788413705,53.02418689967322],[-128.0733156450457,53.024250961585885],[-128.07361270526474,53.024270400853375],[-128.07389908931955,53.024319728264075],[-128.07419270545003,53.02434483148088],[-128.07449116851348,53.024354720137886],[-128.07478950961956,53.02436180328264],[-128.0750875893785,53.024363841429754],[-128.0753858211682,53.024368683055215],[-128.07568190254807,53.02438701339672],[-128.0759774814331,53.02441431959542],[-128.0762713732627,53.024445017664156],[-128.0765499570583,53.02450681564483],[-128.0768462590181,53.02452962308265],[-128.07714245172312,53.0245501897669],[-128.07744054785007,53.024552221706315],[-128.0777378346592,53.02453801757239],[-128.0780303614921,53.02450259811801],[-128.07831219680784,53.02443990703243],[-128.0786068330275,53.024447601827376],[-128.07889541622583,53.02444644377833],[-128.07915219652435,53.024348877193894],[-128.07939365853952,53.024243733281395],[-128.0796109161706,53.02412108006858],[-128.07982135756973,53.02399294176066],[-128.0800240840797,53.02385989024213],[-128.0802151434272,53.023717520337954],[-128.08041987140595,53.02358723968666],[-128.0806627456955,53.02349215683401],[-128.08094172308643,53.023428388686334],[-128.0812335259979,53.02337840121987],[-128.0815205444405,53.02332625550871],[-128.08180667631817,53.023275245705825],[-128.08209287735679,53.023225354947044],[-128.08238005847878,53.023176567150024],[-128.0826672112562,53.02312721417103],[-128.08295336810468,53.02307676606275],[-128.08323848811403,53.0230240846457],[-128.08351946231375,53.022963072943895],[-128.08379939996007,53.02289983692226],[-128.08408248668746,53.02284383538962],[-128.08437194161678,53.02280340529036],[-128.08466871902272,53.02277910365637],[-128.0849671244459,53.022768789152686],[-128.08526429540743,53.02277138243824],[-128.08556190645507,53.02278293499036],[-128.08585886691182,53.02280010317327],[-128.08615592271988,53.02281951087592],[-128.08645562104695,53.0228355081647],[-128.08675715844163,53.02285090718717],[-128.0870535371167,53.02287537349483],[-128.087336859694,53.02291911773342],[-128.08761064797673,53.022997224286094],[-128.08785524294498,53.02310835527584],[-128.0880375865118,53.02324524929059],[-128.08813701873123,53.02342453099623],[-128.0881202935751,53.023597457280225],[-128.0879826002674,53.023760750307574],[-128.0878059320801,53.02391016932867],[-128.08758777334353,53.024032854032754],[-128.08745323196797,53.02418432480564],[-128.08742286369514,53.02432666103055],[-128.0874384184441,53.024453055850785],[-128.08754527967218,53.02461258492599],[-128.08771236031097,53.02476208026191],[-128.08789406000074,53.024904590750566],[-128.08809216053243,53.025038963810445],[-128.08832829351854,53.02514856673913],[-128.08855675301885,53.02525437718761],[-128.08871918048013,53.02540395354095],[-128.08893549929775,53.02552846985895],[-128.08914631499343,53.025655334178616],[-128.0893444379219,53.02578970481218],[-128.08951790514712,53.02593572163357],[-128.08965837889772,53.026094653429475],[-128.08977765446934,53.02625956549355],[-128.08986922049093,53.02643057324867],[-128.0899422424797,53.02660470744079],[-128.09001807310173,53.026778800783994],[-128.0901105393366,53.026949227415635],[-128.09021877146165,53.027117141621716],[-128.0903205179664,53.02728628266328],[-128.0904397721055,53.02745063842453],[-128.0905220919171,53.02762348648017],[-128.09059882487202,53.027796998458456],[-128.09068114644342,53.02796985532794],[-128.09079950531475,53.02813478258868],[-128.09092430854517,53.028297909558276],[-128.09104915546865,53.02846160059334],[-128.09116657625648,53.02862654411679],[-128.09128493884293,53.02879147082713],[-128.0913977847847,53.028958181168235],[-128.09150783835904,53.02912493194183],[-128.09163542761047,53.02928745276587],[-128.09174086395478,53.02945541513025],[-128.0918666155864,53.02961852429323],[-128.09194706403161,53.02979141346492],[-128.09203589378794,53.02996358897067],[-128.09209966637346,53.03013900673423],[-128.09212995845905,53.03031782514385],[-128.0921360788745,53.03049875815498],[-128.09204541057346,53.03066851196207],[-128.09194161786732,53.03083737743271],[-128.0918274383591,53.031004185014886],[-128.09170569476032,53.03116888462833],[-128.0915620865957,53.03132612493185],[-128.09140048531884,53.03147863515609],[-128.09126536675322,53.03163741046834],[-128.09117018314268,53.03181060634058],[-128.09114623471666,53.03198814428751],[-128.0911578264336,53.0321667292105],[-128.09118351114768,53.032346750245736],[-128.0912176050597,53.03252662219845],[-128.09125257012863,53.03270535771463],[-128.09132657736282,53.03288003820674],[-128.09134198711223,53.03306024129448],[-128.0913379387547,53.033243596204635],[-128.09134032169177,53.033424586180644],[-128.0913759933789,53.033598825182104],[-128.0917238805567,53.033870658295214],[-128.09219178021857,53.033866289477494],[-128.09248094395736,53.03381856428005],[-128.09277018964121,53.03377251387965],[-128.09305932470318,53.03372423174653],[-128.09334985436328,53.033685447916405],[-128.09364599755594,53.03366562025166],[-128.09395029896956,53.03365965469788],[-128.09424818227905,53.03367510971278],[-128.09451650834558,53.033735362621044],[-128.09475309266693,53.03385278310649],[-128.09501689737704,53.033934978612784],[-128.0953010056152,53.03399326357955],[-128.09559003992334,53.034037452710976],[-128.09589116195676,53.03406181388066],[-128.09619130252656,53.034085061786094],[-128.09647209503294,53.03413275813564],[-128.09671962643014,53.0342258838389],[-128.0969398588861,53.0343525674131],[-128.09714635825026,53.03448509059752],[-128.09731532329002,53.03463341829252],[-128.0974678325889,53.03478876414039],[-128.09761023248257,53.03494765245165],[-128.09776997611874,53.03509838541038],[-128.09797266466458,53.03522929798563],[-128.09818908856454,53.03535436109545],[-128.09838088156695,53.035491636590876],[-128.09855902449613,53.035636436415764],[-128.09872614684858,53.03578479493622],[-128.09888598043563,53.03593720181132],[-128.0990402844695,53.036090836792496],[-128.0991835928118,53.036249142134935],[-128.09932505043605,53.0364074892057],[-128.09949581459995,53.03655409592989],[-128.0996977554855,53.036688381869794],[-128.09989416448173,53.036824451874004],[-128.10004652486433,53.03697643423313],[-128.1001584579608,53.03714258767486],[-128.10025293800868,53.03731465654641],[-128.10035201098054,53.03748495763653],[-128.1004575575766,53.03765403139184],[-128.10055385178183,53.03782494674536],[-128.1006222490711,53.03799860062615],[-128.10065536305547,53.0381768015549],[-128.10066618159172,53.03835765031516],[-128.1006657407937,53.03853756957565],[-128.10065131595042,53.03871830275144],[-128.10062846822296,53.038898629856995],[-128.1006075150753,53.039079479208254],[-128.10059954943125,53.03925841138081],[-128.10061580362859,53.03943580035096],[-128.1006759746351,53.03961296345029],[-128.1007797988492,53.03978486543118],[-128.1009147861021,53.03994443778676],[-128.10113103394727,53.0400655799618],[-128.1013702160755,53.04017790155913],[-128.1015874905023,53.04030070161539],[-128.10180479369285,53.04042405677434],[-128.10202841991898,53.04054282399174],[-128.10226109142303,53.04065581582606],[-128.10249915971173,53.040764236140475],[-128.10274075458696,53.040868665263766],[-128.1029914249662,53.04096732730731],[-128.10324386547376,53.0410642713421],[-128.10349085893418,53.04116411886478],[-128.1037262077195,53.041274262230495],[-128.10394527890276,53.04139534908372],[-128.10415537506043,53.04152387741392],[-128.10436090758944,53.041654728711286],[-128.10456551515517,53.04178559616044],[-128.10476738588198,53.041917633055405],[-128.10496837223252,53.042050806364294],[-128.10516841866604,53.04218399611162],[-128.10536850884884,53.04231774075293],[-128.10556855779527,53.04245092980131],[-128.10585683031357,53.04249735032272],[-128.10614513147198,53.04254433460848],[-128.10643337724127,53.04259018924976],[-128.10672429350245,53.04263319757534],[-128.10701859669865,53.042669418887975],[-128.10728317067668,53.04274652536098],[-128.10752232857152,53.042857714337224],[-128.10772782231723,53.04298743969175],[-128.1079014230263,53.04313342801494],[-128.10806958942183,53.04328287608733],[-128.10825598663737,53.043423030446874],[-128.10846064277223,53.04355445547796],[-128.10866529972898,53.0436858711843],[-128.10885167307904,53.04382546906153],[-128.1090097487802,53.04397845908557],[-128.1091530933138,53.04413619608507],[-128.1092863420793,53.044297476284456],[-128.10940943933156,53.04446117974056],[-128.10950216130496,53.04463439383192],[-128.10962878541542,53.04479410613001],[-128.10985918008444,53.04491665692837],[-128.11008210593081,53.04503934084009],[-128.11017691679945,53.04519794443598],[-128.11019243909766,53.04537870823025],[-128.11018210859535,53.04556553017851],[-128.11017705972318,53.04574609680547],[-128.1101580114496,53.045926913735755],[-128.11014453814946,53.04610707495517],[-128.1101693297966,53.046285986978],[-128.11030629630272,53.04644663456887],[-128.11058219628558,53.0465067169132],[-128.11088586192972,53.046523705095524],[-128.11118339595637,53.04653015745132],[-128.1114825743473,53.04653208678556],[-128.11178169748246,53.04653290434732],[-128.11208007421274,53.04653765342578],[-128.1123785774396,53.04654464143028],[-128.11267809050128,53.0465532875771],[-128.11297515747498,53.046569267563164],[-128.11326817658178,53.04659764998222],[-128.11356105060946,53.046641727887675],[-128.1138408313644,53.04670454012594],[-128.11408680158667,53.04680157759517],[-128.11430883638994,53.04692483471834],[-128.11457545703402,53.047004686646886],[-128.11486160346215,53.0470640195456],[-128.11512170998787,53.04714455197297],[-128.11529928354443,53.04729437753955],[-128.11555289119218,53.04737559050169],[-128.11585035060503,53.04741789470558],[-128.11610329797364,53.04750472321285],[-128.11630997697895,53.047638331817254],[-128.1165562379839,53.04774097290391],[-128.11682967662188,53.047826302458574],[-128.11709846789978,53.04791227973434],[-128.11733171463374,53.048016273683466],[-128.1175086572173,53.04815322067148],[-128.11764308702058,53.04831838958696],[-128.11773332145927,53.0484972470763],[-128.11777679568567,53.048675266607475],[-128.11779309709814,53.048852087771145],[-128.1177927010589,53.04903145048778],[-128.11777928689727,53.04921216775777],[-128.117757460394,53.04939303595549],[-128.11773004545157,53.04957400440357],[-128.1177006917047,53.04975388663852],[-128.11766472400743,53.04993220157465],[-128.11757994310244,53.05010635240671],[-128.11751480864956,53.05028071563356],[-128.11752185433818,53.05045937969492],[-128.11755700081872,53.05063922550835],[-128.1175697064382,53.05081891792484],[-128.11755815855688,53.05099960147122],[-128.11754564103776,53.051179737423034],[-128.11755549663917,53.0513583599486],[-128.11754473504652,53.051536222415734],[-128.11759624583817,53.051706806763484],[-128.1176286552779,53.051887822526794],[-128.117606179756,53.052074306876655],[-128.11756150919135,53.052228125260974],[-128.1174833369096,53.052403834108695],[-128.11745051108625,53.05258882707129],[-128.11742840201612,53.05276409501782],[-128.11739749899343,53.05295016542567],[-128.11735539296998,53.053117945254826],[-128.11735221389193,53.05329792238564],[-128.11735747554434,53.053478304082546],[-128.11737109443004,53.0536574148738],[-128.11739596189085,53.05383744482982],[-128.1174376835732,53.054017728416824],[-128.1175154879833,53.054190647821066],[-128.11764208265967,53.05436716675259],[-128.11782184321888,53.05452256317551],[-128.11806365187982,53.05457258686361],[-128.1183543535709,53.05455336245711],[-128.11866202868273,53.05449963862061],[-128.11895801972926,53.05443659099302],[-128.11922919549065,53.05436334341789],[-128.11948718654082,53.05426959849178],[-128.1197267389845,53.05416216749756],[-128.11993112857857,53.05402453636254],[-128.12013972856104,53.05389636194436],[-128.12040153149002,53.05382272390962],[-128.12069283527603,53.05377825648295],[-128.12099437371285,53.053751539950575],[-128.12129281959827,53.05373776490395],[-128.12158932181848,53.053759904083364],[-128.12188682133325,53.05378313659872],[-128.12218251427117,53.0537705387312],[-128.12247839196078,53.053742799196286],[-128.12277415720723,53.05371281899124],[-128.1230705384318,53.05369515764932],[-128.12336853336146,53.05369091819451],[-128.12366779102453,53.05369338110082],[-128.12396738508036,53.05370256303043],[-128.12426447807854,53.05371795007915],[-128.12455676801,53.05374912542256],[-128.12484357833682,53.05380168820842],[-128.12513364865606,53.05384466782883],[-128.12543904504042,53.05383916893122],[-128.12573545336411,53.05384055695265],[-128.12598726506246,53.053922336600856],[-128.12621753202683,53.05404037497],[-128.12644344684276,53.05416466114798],[-128.12668085132518,53.054275844218274],[-128.12691912740925,53.054385890147394],[-128.12713375402896,53.054508692511],[-128.12729818501094,53.054655939599755],[-128.12749803555653,53.05489446788059],[-128.12769477159867,53.05508933401455],[-128.12785750729665,53.0552399738288],[-128.12805678905167,53.05537369596234],[-128.12827243496625,53.05549816390277],[-128.1284961863453,53.05561631546693],[-128.12875314086,53.0557069644688],[-128.12904231456307,53.05575050691809],[-128.12933870740727,53.055732829862485],[-128.12963470652136,53.055707312345305],[-128.12992654787624,53.05567346628246],[-128.13020459539467,53.055606795202316],[-128.13050087428206,53.05558687530915],[-128.13079590186905,53.055560807412],[-128.1310921522578,53.05554033053484],[-128.13139077621486,53.055529889854924],[-128.1316888678167,53.05552731382304],[-128.1319805713876,53.05556519855037],[-128.13226295131608,53.055622316534375],[-128.13253588149576,53.05569585423489],[-128.13280170634755,53.05577680155761],[-128.13307376823104,53.05585147470728],[-128.13334403281934,53.055927865674],[-128.13362300545802,53.055991202931956],[-128.1339129585909,53.05603135655527],[-128.13420631073419,53.056064731133354],[-128.13450286388624,53.056087393352094],[-128.13479700231477,53.05611794533477],[-128.135090327348,53.05615075325663],[-128.13537696989704,53.05619937501278],[-128.13566455458042,53.05624797903793],[-128.13594440294153,53.05631017407958],[-128.1362120218044,53.056389404439486],[-128.13646281826226,53.056487430312764],[-128.13671003599745,53.05658832737405],[-128.1369437168914,53.05669900178163],[-128.13716304682706,53.056821701340056],[-128.13737326349957,53.05694904942524],[-128.13757439488197,53.057081601582446],[-128.1377746429026,53.05721529935205],[-128.1379821531715,53.057344372387185],[-128.1382131728555,53.05745789052681],[-128.1384460203401,53.057570254140735],[-128.13874100048054,53.05759853930793],[-128.13903779262074,53.05762566993301],[-128.13933469310788,53.057636548169924],[-128.13965791116573,53.057575762089414],[-128.13992031977116,53.05755138379637],[-128.1400152648171,53.057691470714694],[-128.14002942291827,53.057898029890865],[-128.14003400947442,53.05808178701632],[-128.14007059071218,53.05830644024346],[-128.1400357064275,53.05843038013534],[-128.13994790826848,53.058598997336816],[-128.14000487332092,53.05878292583697],[-128.1400852867771,53.05898717175804],[-128.14014667098337,53.0591474795461],[-128.1402088596698,53.059324022386186],[-128.14025514904316,53.0595002974393],[-128.1403913459139,53.05966093463987],[-128.14052934007807,53.05982040915381],[-128.1406673506768,53.059979892180415],[-128.1408044202988,53.060139383146264],[-128.14094793757795,53.0602970800439],[-128.14109788902698,53.0604524181239],[-128.14126160639856,53.06060246642178],[-128.14143082957577,53.06075072867948],[-128.14160096702037,53.060898409145835],[-128.14177020750898,53.06104667062079],[-128.1419558809374,53.06118735184518],[-128.14215614857946,53.061320477141166],[-128.142355503939,53.06145417466956],[-128.14254939746004,53.061590777923826],[-128.14274329222937,53.061727380848964],[-128.14294267986207,53.06186164180938],[-128.14307000131282,53.061938919921005],[-128.14314109909228,53.06199536402132],[-128.1433368939435,53.06213248751914],[-128.1435335470134,53.06226791814162],[-128.14376549336654,53.062380288050385],[-128.14402908147602,53.062471349303394],[-128.14429262860227,53.0625612807841],[-128.14451687896567,53.06266930514022],[-128.1445949794229,53.06284556566753],[-128.14465258537027,53.06302331044877],[-128.14469524577314,53.06320133566511],[-128.144701494946,53.06338057831697],[-128.1446834708827,53.063560261899575],[-128.14466076835907,53.063740030445544],[-128.1446558074157,53.06391947668092],[-128.14468728671977,53.06409826093817],[-128.14470292080887,53.06427788901933],[-128.14475392623166,53.06445464154364],[-128.14481428843771,53.06463121508747],[-128.144896858799,53.064803466204246],[-128.14498965680826,53.06497441046849],[-128.1450815288411,53.06514537148039],[-128.14521127185512,53.06530724149225],[-128.1453769321513,53.065458360974475],[-128.14551214066003,53.06561732442999],[-128.14559107907002,53.06579132699589],[-128.14562066672192,53.06596958031348],[-128.14561013281028,53.06614969267494],[-128.1456126924328,53.06632955810443],[-128.1456180477388,53.06650938167881],[-128.14562806632028,53.06668911152366],[-128.145641837329,53.06686878212707],[-128.14556580003838,53.06702934222874],[-128.14544650379437,53.067185083445025],[-128.14530563438677,53.06735803109443],[-128.14529481513566,53.067532534601916],[-128.14524870000653,53.067693115694446],[-128.14511586803948,53.06784013460323],[-128.14498261017604,53.067978749287676],[-128.1449139937383,53.06815655354128],[-128.14481688025043,53.068325898627336],[-128.14473401449715,53.068499477663764],[-128.1446939544051,53.06866890722144],[-128.144673429422,53.06885480547334],[-128.1445556042225,53.069021163507735],[-128.14444629290122,53.06918961767978],[-128.14434451120286,53.0693590469812],[-128.1442476476878,53.069533435708564],[-128.14414289920813,53.069736556767204],[-128.14407772265432,53.069927184465136],[-128.1441165299979,53.070047544716395],[-128.1443806629321,53.0700371433585],[-128.14472026826513,53.06994745857117],[-128.14495709157708,53.06984114835456],[-128.1451694308997,53.06971286300341],[-128.1453652702926,53.06957254633147],[-128.14554790005542,53.069430227383855],[-128.14570189168967,53.06927609783747],[-128.14585012012967,53.069119274844816],[-128.1460135371173,53.06896665050816],[-128.1461466729886,53.06880729446319],[-128.14631051141907,53.06862608164847],[-128.14642620648547,53.06849170366668],[-128.14661563245767,53.06839130028379],[-128.1468054320026,53.068279671076105],[-128.14695833166934,53.068122761533594],[-128.14709251645516,53.06796562710827],[-128.14724813002616,53.067788481264145],[-128.14749427747978,53.06768199592619],[-128.14777202999528,53.067627064954884],[-128.14806611905797,53.06759929551058],[-128.14836844725468,53.067586504092205],[-128.14866837755775,53.0675816113278],[-128.1489678481132,53.067586249974916],[-128.14926615932973,53.067604916677276],[-128.14955693498726,53.06764109942569],[-128.1498302280899,53.06771964085922],[-128.15011141692418,53.06776944852672],[-128.15040916731687,53.06775842120677],[-128.15070957065146,53.06774453788536],[-128.15101625638022,53.06776249165226],[-128.15130321103914,53.06774156995951],[-128.15156558936363,53.06766000666889],[-128.15181158297682,53.06755070799221],[-128.15203363029295,53.06743007945963],[-128.15221912412937,53.067289383193675],[-128.15240165055462,53.06714536879812],[-128.15261502295115,53.06701985730235],[-128.15285258133076,53.06691015408368],[-128.15310478472546,53.066812514050596],[-128.15337566768272,53.06673302442554],[-128.15366690851835,53.06670473678256],[-128.15396991107673,53.066705370311574],[-128.15426570792567,53.06672968405353],[-128.1545580492792,53.0667781566731],[-128.15482853545691,53.066856728900625],[-128.15504851303223,53.06697153774607],[-128.15523623868626,53.067114403383776],[-128.15542211161699,53.06725729358869],[-128.1556026786412,53.06740645024788],[-128.15578939570838,53.06754764750146],[-128.15602508614606,53.06764031310319],[-128.1563311594954,53.067664425179736],[-128.15661569202555,53.06772481021487],[-128.15689742963087,53.067785236666076],[-128.15718881521698,53.067796172072825],[-128.15748747739192,53.06776660957686],[-128.1577847131085,53.067745484216736],[-128.1580847273406,53.06776074364118],[-128.15837959050603,53.067803555990594],[-128.1586335736673,53.06788802628152],[-128.15884497910278,53.06801812270311],[-128.15906180658584,53.0681441917007],[-128.15934340815576,53.068201816938725],[-128.15960678030098,53.06828723446911],[-128.15986911312066,53.06837043744685],[-128.16016633675014,53.06838573375211],[-128.1604487125473,53.06833012321901],[-128.160728635243,53.06826279107454],[-128.1610066160724,53.06819436383966],[-128.16128466847354,53.068127064570156],[-128.16156821109752,53.068075913860284],[-128.1618655461584,53.06805701838024],[-128.16216466559425,53.06807283989566],[-128.16245047795633,53.068121412835886],[-128.1627314710261,53.06818520213755],[-128.16301836952886,53.06823656076965],[-128.16331823366716,53.06828543023159],[-128.16361508792218,53.06831194342595],[-128.163889058582,53.06827497031324],[-128.16414067329734,53.0681661074403],[-128.16434133517674,53.068030153443644],[-128.16448374177077,53.067870605394276],[-128.16462038531034,53.067707799845095],[-128.16480799288783,53.06757264925305],[-128.16504759115494,53.06746680257711],[-128.16530544625724,53.067370718393654],[-128.1655537152591,53.067269760531346],[-128.16589528690173,53.06712841217486],[-128.16619038836032,53.06710226470134],[-128.16648762851125,53.067081673193165],[-128.1667852270238,53.0670678092285],[-128.16708301041896,53.067057860078634],[-128.16738115196122,53.06705462950864],[-128.16768007690817,53.06704857685652],[-128.16797785995854,53.06703862545047],[-128.1682758868039,53.06703315275395],[-128.16857648299688,53.06704164891207],[-128.16887496788706,53.067045134172815],[-128.16916217679946,53.067011268343414],[-128.16943397309666,53.06693173355744],[-128.16970287206976,53.0668505654037],[-128.16997493737455,53.06677662034686],[-128.17026331494174,53.066747223219124],[-128.17056567782805,53.06675343087118],[-128.17086408859174,53.06675579144743],[-128.1711624285816,53.066756475575716],[-128.1714604665226,53.06675155060394],[-128.17175903584553,53.0667567129548],[-128.17205670119813,53.06674451139847],[-128.17235148051287,53.066712184418726],[-128.17263796760824,53.06666431546015],[-128.17280714627034,53.06648015822387],[-128.17298722854215,53.06632663167122],[-128.17320095728465,53.06622741390949],[-128.17338834641882,53.06614325344731],[-128.17362021247646,53.066033056101766],[-128.17385083347534,53.066008067350744],[-128.17409758084722,53.066060694378784],[-128.174294924326,53.06620727277206],[-128.17437710075876,53.06636942372517],[-128.17441775464235,53.0661590501645],[-128.17443755123924,53.065979892363266],[-128.1744573336824,53.06580016981938],[-128.17447243750306,53.06562053341921],[-128.17447446250335,53.065441137877535],[-128.17449143450045,53.065261467026566],[-128.1745553736876,53.06508597106683],[-128.17460330943993,53.06490853680101],[-128.17465312763215,53.06473105884901],[-128.17471706581068,53.06455557170763],[-128.17481590426914,53.064386158584],[-128.17489021044057,53.06421215730346],[-128.1749795914146,53.06404068519242],[-128.17507936925648,53.063871254450845],[-128.17518577921774,53.063703387370886],[-128.17531301183033,53.06354074144996],[-128.175448802067,53.0633807446307],[-128.1755455517946,53.06320688520207],[-128.17565001758567,53.06303793241041],[-128.17581186672146,53.06289370473094],[-128.17606454689326,53.062788723286666],[-128.1763449388882,53.062731989075026],[-128.176648108003,53.06271798794182],[-128.17692493463724,53.062664681039536],[-128.17715932349233,53.062549380536765],[-128.17740271451027,53.06244568840907],[-128.1776450473076,53.062339764318146],[-128.17791019397046,53.062259210632824],[-128.17819336084966,53.06220185573315],[-128.17848492052224,53.06216229012469],[-128.17878236511746,53.062146147067885],[-128.1790800826272,53.062135612155345],[-128.17937624184154,53.062149202135444],[-128.17965888787668,53.062209001613475],[-128.17994533461209,53.06225191533909],[-128.1802231875154,53.06218232271106],[-128.1805032395122,53.06211885874392],[-128.18076936358088,53.06203940144464],[-128.1810019854638,53.06192636764651],[-128.18121233653528,53.061798606931916],[-128.18136333257294,53.061643926663],[-128.1815133569099,53.061488699141556],[-128.18164436756385,53.06132709680201],[-128.1817687444578,53.061163930907455],[-128.18188645954677,53.06099865495212],[-128.18201746726714,53.06083705215303],[-128.18213141511154,53.06067128053808],[-128.18226431762287,53.06051019838815],[-128.18241433465647,53.060354969620604],[-128.18255198465036,53.06019548529001],[-128.18266967990886,53.060029643739895],[-128.18276154221505,53.05985251372034],[-128.18295911799237,53.05973115564012],[-128.1832698025594,53.05968224716038],[-128.1835692161593,53.059650370258545],[-128.1838619540087,53.05961580911107],[-128.18405532808313,53.05948555885137],[-128.18413430824202,53.05931258492664],[-128.18422271450842,53.059141113521584],[-128.18433566495221,53.058974236830885],[-128.18443634916187,53.05880534499042],[-128.18455409086684,53.0586406213605],[-128.1846151402897,53.058464615794925],[-128.18468466062305,53.05828957439568],[-128.18474665049854,53.05811355130171],[-128.18481547384746,53.057943006664935],[-128.18509303123363,53.0578683671936],[-128.18536910973435,53.057801045407196],[-128.18564614252074,53.05773426130308],[-128.18592314535456,53.05766691210111],[-128.18619914857683,53.057598468711795],[-128.1864834745877,53.0575461205131],[-128.18673658691975,53.05745063084624],[-128.18697204867274,53.05733920863635],[-128.18722552840816,53.05719662903334],[-128.18736973288725,53.057074009847305],[-128.18756173894909,53.05693593158389],[-128.18779144755788,53.056821816214224],[-128.18803767560865,53.05671972517131],[-128.18830072616484,53.05663582272979],[-128.1885818293084,53.05657568201753],[-128.18885983333467,53.05650999307838],[-128.18914406186602,53.05645595406465],[-128.18942927444195,53.0564030260695],[-128.18971549928662,53.056351755611765],[-128.1900103950498,53.05632329964041],[-128.19030426247207,53.05629318498636],[-128.19058944336552,53.05623968973908],[-128.19085673728682,53.05622015587434],[-128.191170733529,53.05616332634093],[-128.1914624126864,53.056127079384446],[-128.19177787995102,53.05613523910281],[-128.19204120378754,53.056147164354925],[-128.1923638533564,53.056149575144936],[-128.19268023639225,53.05608485018871],[-128.1929707273393,53.05602564544054],[-128.19328684778114,53.055955874694554],[-128.19351705491104,53.055942063899785],[-128.19384823252955,53.05592862702937],[-128.19413095941925,53.05586395865023],[-128.19438941688858,53.05578180468286],[-128.19468071437285,53.05573827471401],[-128.194920171314,53.055632366724254],[-128.195198159923,53.05558459890543],[-128.1954994472914,53.055571713224545],[-128.19579362414805,53.05554774001935],[-128.19606958339938,53.05547870875377],[-128.19633747539328,53.055398616872075],[-128.1966033686843,53.05531576352313],[-128.1968712874032,53.05523622590686],[-128.1971454041907,53.055167791323655],[-128.19743920054844,53.05513653896485],[-128.19773167776304,53.05509801939751],[-128.19801174408332,53.05503619802224],[-128.1982425148553,53.05492540472543],[-128.19839048470783,53.05476794982015],[-128.19858497948263,53.05464269334127],[-128.19883315288496,53.054542784720255],[-128.1990823096302,53.05444397823747],[-128.19934032758027,53.05435397415573],[-128.199601269828,53.054266157006374],[-128.19986025626577,53.054176698678525],[-128.2000007749107,53.05412811826855],[-128.20011927041435,53.05408779526158],[-128.20038325098076,53.05400440371203],[-128.2006521538217,53.053925959832966],[-128.2009251691945,53.05385472967907],[-128.20119407055049,53.053776293518496],[-128.2014640131082,53.0537000703549],[-128.20175450811115,53.05365934445723],[-128.2020529850639,53.05364648520514],[-128.202350869675,53.05364037127795],[-128.20264903052092,53.05363929150601],[-128.20294537780728,53.053621429669285],[-128.2032425349904,53.05360130994405],[-128.20309519280784,53.05339218920404],[-128.20289924865202,53.05327309128484],[-128.20263377852027,53.05316538861846],[-128.2023924633024,53.053072919833],[-128.2021515678843,53.0529703626082],[-128.202020570528,53.05278783988964],[-128.2018801316067,53.05267555185721],[-128.20168218965196,53.052517818876915],[-128.20148409242893,53.05237522660351],[-128.20130245436357,53.05220765582812],[-128.20111195021724,53.052085099530935],[-128.20096337715384,53.05196007500732],[-128.2007987011641,53.05181293035785],[-128.20065067862996,53.05168060413598],[-128.200494559772,53.05151817036251],[-128.2002861448231,53.05135670237361],[-128.20014149603654,53.05119909438133],[-128.2000011063443,53.051051495924376],[-128.19999320018937,53.051043240200514],[-128.19989489828458,53.05087804191706],[-128.1997302401637,53.05069502314755],[-128.1995059994583,53.05058877833693],[-128.1992894759753,53.05046894614429],[-128.1990322285577,53.050375090626325],[-128.19878759192724,53.050272031533126],[-128.19856817581214,53.0501505659545],[-128.1983586776544,53.05002218917741],[-128.19815462471252,53.04989034759174],[-128.1979569571824,53.0497555797365],[-128.19776474914423,53.049617911853176],[-128.19757438124998,53.04947965338325],[-128.19738036603528,53.049343139559866],[-128.19716816819272,53.04921648804868],[-128.19694692374182,53.049095618598486],[-128.1968031921879,53.048937424619886],[-128.19668229331032,53.048768725353646],[-128.1964977382811,53.04863427607259],[-128.19626590139305,53.048525368670234],[-128.19601679442422,53.04842575027291],[-128.19575945073083,53.04832964764801],[-128.1955048442077,53.04823237254667],[-128.19526198022837,53.04812703141029],[-128.19503436233734,53.04800907510412],[-128.19483022734187,53.04787554351732],[-128.19467107538762,53.047726045905726],[-128.19454955168078,53.04756296123094],[-128.1944491218907,53.047392193141015],[-128.19435607608108,53.04721960166422],[-128.19426866288939,53.04704747036964],[-128.19419236909206,53.04687345523127],[-128.1941151633971,53.046700013013485],[-128.194024045897,53.04652850641781],[-128.19385311771532,53.046368016565225],[-128.1936542055949,53.046298848548105],[-128.1934450154407,53.04621193507026],[-128.19322711168547,53.046119022102296],[-128.19300360587582,53.04602620388183],[-128.1927420856171,53.04592120447197],[-128.1925092603421,53.04581063130871],[-128.19226139365287,53.04571658729928],[-128.19198969761004,53.04564988966743],[-128.191728904902,53.04555888271162],[-128.19147933466434,53.04544973958964],[-128.1912615714305,53.045323181217576],[-128.19109520297178,53.04517829701894],[-128.19097293253583,53.045018585707886],[-128.19087534555422,53.04484831794416],[-128.19079148416682,53.04467219919528],[-128.19071037384882,53.044494899330616],[-128.19062005680442,53.044320577328456],[-128.19050867709214,53.0441544933173],[-128.1903643203363,53.04400135244019],[-128.19017689678915,53.0438647048858],[-128.189961013447,53.04373811829743],[-128.1897368647928,53.04361448274905],[-128.18952276454695,53.04348617630014],[-128.18933983370258,53.04334608107384],[-128.18923894164132,53.04318372038072],[-128.18906900035043,53.04302377055467],[-128.1888987981079,53.04287671247338],[-128.18871202169439,53.042734445625136],[-128.18852808369664,53.04259268187021],[-128.1883634007558,53.04244384364803],[-128.18823262196526,53.04228203638461],[-128.18813958398786,53.042108884005884],[-128.18809221767634,53.04193320761268],[-128.1881306472235,53.04175425422685],[-128.18815125750862,53.041573945248224],[-128.18814666679324,53.04139411254796],[-128.18813920948858,53.04121320300881],[-128.1881215328285,53.04103361294085],[-128.18809269614272,53.04085478582848],[-128.18804249393193,53.040678596915875],[-128.18795506207263,53.04050534035115],[-128.1878343950796,53.04033998206341],[-128.1876916686796,53.04018176769745],[-128.18754056185264,53.040024264557],[-128.1873766311991,53.03987148301127],[-128.18719637190136,53.039728528048045],[-128.18699628205547,53.039599401498734],[-128.1867599010184,53.03949168146246],[-128.18649636396998,53.039400714391384],[-128.18622677582883,53.03931939195238],[-128.18595489949846,53.0392482004106],[-128.185671558033,53.03919011675744],[-128.18538731980212,53.03913260506794],[-128.18510125784064,53.03907624749217],[-128.18481300833085,53.03903169587658],[-128.18451821900703,53.03904163817368],[-128.18421918242416,53.03907800659889],[-128.18392823240325,53.03907161719972],[-128.1836314551387,53.03904292368392],[-128.18331589016407,53.0389579615664],[-128.18308970797318,53.03886629582325],[-128.18282344142014,53.03879499340535],[-128.18255497798512,53.038717004976036],[-128.18227756764855,53.03864702850229],[-128.18200288036442,53.0385753240009],[-128.18175683124886,53.038478983117564],[-128.18156461166865,53.03833904806836],[-128.18132479075643,53.03823642111666],[-128.18105979430334,53.03815332521908],[-128.18079568194545,53.03806908242263],[-128.1805119526936,53.038003146717905],[-128.18023180887516,53.0379522732385],[-128.1799394143512,53.0379178756078],[-128.1796437614211,53.037892514499624],[-128.17934984561515,53.03786486958355],[-128.179057410313,53.03782935850229],[-128.17876906064186,53.037782552198834],[-128.1784790173331,53.03773914846762],[-128.1781843496408,53.03771487758961],[-128.17788663795181,53.03770412324398],[-128.17759441253156,53.03769101590801],[-128.17733714678872,53.03766718259444],[-128.1769928779557,53.03767801934197],[-128.17669435511428,53.03766951001406],[-128.1763967300232,53.03766042735305],[-128.17609761881235,53.03764072626212],[-128.17579792574176,53.03762775222704],[-128.17539616309298,53.03764693558945],[-128.1749159583459,53.03764906247617],[-128.17476122767025,53.037437802230826],[-128.17460543188793,53.03727868377929],[-128.17448499862246,53.03711668034589],[-128.17445657157037,53.036963061241764],[-128.17443010633127,53.03679315583737],[-128.1743311255147,53.03663019187943],[-128.17418461816595,53.03648828180673],[-128.1741284475479,53.036303794601196],[-128.17393367028802,53.036167813767435],[-128.17373339322188,53.0360341849389],[-128.17352218765393,53.03590579716706],[-128.17332288256634,53.035772705781454],[-128.1732161095784,53.0356037144263],[-128.17308568273035,53.03544693372751],[-128.17284291906938,53.03534099019451],[-128.17261004516797,53.03522757302132],[-128.17243450196582,53.03508395353935],[-128.17227434994143,53.03493051736622],[-128.17210601961366,53.034781724555124],[-128.1718898063562,53.03464670012386],[-128.1717117128198,53.03454460384746],[-128.171519978965,53.03437661891941],[-128.17128989300653,53.03426258293586],[-128.17105345349998,53.03415203543151],[-128.17081791239573,53.03404090595007],[-128.17058961147703,53.033925158773584],[-128.17037202686453,53.033799680975385],[-128.17015002645326,53.033679333037846],[-128.16990132568256,53.03358470295457],[-128.16962238892995,53.03352033064035],[-128.1693381243182,53.03346109569937],[-128.16904777683578,53.033410948951264],[-128.16879124292532,53.033327661710615],[-128.1685791248069,53.03319928218829],[-128.16835982612542,53.03307663931441],[-128.16809500163578,53.032995753970084],[-128.16782826848507,53.03291377314409],[-128.1675847058414,53.03281007584125],[-128.16734564724516,53.03270292331558],[-128.16729452921322,53.03252506630523],[-128.16724526315113,53.032347166271634],[-128.16719790817825,53.03216979608613],[-128.167165416847,53.03199103181187],[-128.16712829479246,53.031812917570335],[-128.16710791755327,53.03163336572515],[-128.16709127473436,53.031453754227144],[-128.16704858115222,53.03127629828861],[-128.166965016415,53.03110351214248],[-128.16687036590199,53.03093318054519],[-128.1667572185121,53.03076654266848],[-128.16663120427157,53.03060406901583],[-128.16649410418816,53.03044404084415],[-128.16635151889744,53.030286355265545],[-128.16621442089354,53.03012632673912],[-128.16607183770793,53.029968640793285],[-128.16591000420087,53.029818034181616],[-128.16578302680304,53.02965502130855],[-128.16568191456193,53.02948591943633],[-128.16560022616702,53.02931310682964],[-128.16553985607368,53.02913709579769],[-128.16549343772868,53.02895970759696],[-128.165460087226,53.02878207947536],[-128.16546025297808,53.02860215006326],[-128.16551385789595,53.02842573260854],[-128.16557019745488,53.028248134921796],[-128.16558444179284,53.02806963297714],[-128.16554727267385,53.0278903978692],[-128.16546101398222,53.02771934600538],[-128.16532847273518,53.02755699075126],[-128.16527937861886,53.02738189348799],[-128.16525804217167,53.027201802627204],[-128.1652265319513,53.02702357553007],[-128.16520056542365,53.02684413460871],[-128.16513651038252,53.02666874687303],[-128.1650631651066,53.0264946595956],[-128.16499073245322,53.02631999052614],[-128.16494245281675,53.026142636077836],[-128.16494264953147,53.02596327084916],[-128.164968053457,53.02578344293613],[-128.16506503104182,53.025615188382716],[-128.16521400472107,53.025458875353245],[-128.16538496500206,53.02531224756296],[-128.16540942588964,53.025132436757495],[-128.16556419658738,53.02497994478427],[-128.16573875776388,53.02483100824728],[-128.16579353942853,53.024659608627395],[-128.16577127634028,53.02447953457238],[-128.16573973765318,53.0243007518263],[-128.16569889469253,53.02412269592078],[-128.16565058626543,53.02394478603203],[-128.1655948974564,53.02376868865623],[-128.16552711232268,53.023593369359304],[-128.16543616028497,53.023421847357625],[-128.16538604387412,53.02324508256028],[-128.16535450772503,53.02306629958176],[-128.16532946886988,53.022886841275415],[-128.165311910751,53.02270723664304],[-128.1653018326491,53.02252805965773],[-128.16530013300738,53.022348172812684],[-128.16530310661088,53.022168191184576],[-128.16530700642042,53.0219882015006],[-128.16530812734715,53.021808818837584],[-128.1653147195939,53.021626528688564],[-128.16532579959457,53.021440802053675],[-128.1652492431623,53.021276853617564],[-128.16505648723142,53.02114195159614],[-128.16483594894228,53.02101203432187],[-128.16466405236673,53.020864973671074],[-128.16448450762897,53.02073262631808],[-128.16440822429445,53.02053729292969],[-128.1643554375758,53.02036281856933],[-128.16432489071897,53.02018513799005],[-128.16430917604748,53.02000494316856],[-128.1643018244722,53.01982403882961],[-128.16429631057082,53.01964253575693],[-128.16428898742356,53.019462186882144],[-128.16431132614005,53.019277365607095],[-128.16429495660532,53.019102787784654],[-128.16421377872678,53.01893948840516],[-128.1641207939605,53.01881956917051],[-128.16401669069265,53.01860960773097],[-128.16382255318115,53.01846575204288],[-128.16361310300198,53.01833283110301],[-128.16339768508638,53.0182112294262],[-128.16316951820787,53.01809603128556],[-128.16293317442484,53.01798545777915],[-128.16269322872114,53.01787720086647],[-128.16245420946782,53.017768917525096],[-128.1622187816959,53.017657769813816],[-128.16199146091603,53.01754086795143],[-128.16183060137675,53.01740817415292],[-128.16174671482048,53.017228107585275],[-128.16174391882436,53.01704487746245],[-128.1617150667145,53.01686323700277],[-128.16174536504903,53.01668780331232],[-128.1618365936102,53.01651685770074],[-128.16196077308462,53.01635091297037],[-128.16210877177002,53.01619406447589],[-128.1622994073947,53.01604932115997],[-128.16250519954943,53.01590878362169],[-128.16268179976456,53.015763732005716],[-128.16278862322307,53.01560539562],[-128.1628312671627,53.0154342190598],[-128.1628418865902,53.01525745976014],[-128.16283078098132,53.0150760588154],[-128.16280742382543,53.01489264052629],[-128.16278124680375,53.01470871791131],[-128.16276261994634,53.01452633383933],[-128.1627590364855,53.01434591587253],[-128.16275921362038,53.01416598493846],[-128.16276128562808,53.01398658422371],[-128.16276332933154,53.01380662798429],[-128.16276723867696,53.013626628538965],[-128.16277211725028,53.01344717628952],[-128.16278071305305,53.013267655840444],[-128.16279584756887,53.01308801543892],[-128.1628100280923,53.01290783648732],[-128.16281396590009,53.01272840141087],[-128.16280573802487,53.012548624466454],[-128.16279565954378,53.012368890415914],[-128.162783699711,53.012189181886825],[-128.16276894883313,53.01200953350085],[-128.16275419762374,53.011829876134236],[-128.16273944699532,53.011650227706525],[-128.16272469603544,53.011470570298144],[-128.162710886127,53.01129090457867],[-128.1626989556965,53.011111760393],[-128.16268887755177,53.010932017221116],[-128.16268251699918,53.010752214811475],[-128.16270517198362,53.01057355722515],[-128.16275027548508,53.01039560886963],[-128.16278225982308,53.010216780096485],[-128.16281237793405,53.010037985523596],[-128.1628462276914,53.00985912246757],[-128.16287533400356,53.0096786603774],[-128.16295815372862,53.009507867084146],[-128.16308903146137,53.00934572520013],[-128.16324647354605,53.00919149892412],[-128.1634259924771,53.00904919854512],[-128.16362077974046,53.008913343800955],[-128.16382317176408,53.00878014720414],[-128.1640246508636,53.00864753197709],[-128.16421162844807,53.00850509336842],[-128.16442007131064,53.008380761717135],[-128.16467996327822,53.008294711868125],[-128.16495251740997,53.008219083109644],[-128.16522803317838,53.008146762377066],[-128.16550683980697,53.00808391371041],[-128.165797056924,53.008043266243135],[-128.166089438756,53.008008748388654],[-128.166380609058,53.00796864694744],[-128.16666853048244,53.00791963629749],[-128.16696523125015,53.00791474846719],[-128.16725821953997,53.00794691292931],[-128.16754050184946,53.00800730804402],[-128.16783225405857,53.00805182507987],[-128.16812664993964,53.00805650093803],[-128.1684181045012,53.008021994329596],[-128.16870810358688,53.007977424549004],[-128.16899811699102,53.00793285377952],[-128.16931752224355,53.00793370348739],[-128.1696150622385,53.007927107525255],[-128.16990137146678,53.00788316766993],[-128.17016765788043,53.0077947457071],[-128.17037511060337,53.0076698563232],[-128.17055548238986,53.007526407682384],[-128.17072613708507,53.00737585545874],[-128.17089887142012,53.00722918376493],[-128.1710677719051,53.00708089635988],[-128.17123000544288,53.00692993337714],[-128.17137607129357,53.006773106745804],[-128.17148709558398,53.00660682711081],[-128.1715895441754,53.00643735118762],[-128.17169296070378,53.006268413342795],[-128.1718096658846,53.006103714687086],[-128.1719509687449,53.00594528889205],[-128.17207802686778,53.00578207623108],[-128.17220128076687,53.00561782143308],[-128.17231229880994,53.00545154090772],[-128.17239122634092,53.00527856937696],[-128.1724409270503,53.005099975167866],[-128.1725340107096,53.0049301057077],[-128.17272205557697,53.00479099588339],[-128.17294280368245,53.004670896463246],[-128.17317122904979,53.00455458316207],[-128.17340159012005,53.00443991972821],[-128.17363102410238,53.004325263938995],[-128.17386430331007,53.00421278779399],[-128.1740503887613,53.00407202575704],[-128.17424423626034,53.00393729038171],[-128.17450084546678,53.00384287510514],[-128.1747005033157,53.003711959829936],[-128.17487795151172,53.00356687156615],[-128.17512205033253,53.0034654034375],[-128.17536895347348,53.00336387406035],[-128.17561005797458,53.003258532029626],[-128.17586875513686,53.003168559196055],[-128.17613218013773,53.003079619527576],[-128.17641461747237,53.00303404844976],[-128.1767102713462,53.00302746873585],[-128.17700920417388,53.00303036097621],[-128.17730920566592,53.003036030816176],[-128.17760825294832,53.003041152520616],[-128.1779057796097,53.00305303671868],[-128.17820307628912,53.0030604313231],[-128.17850065313803,53.003054932619996],[-128.17879847368513,53.003054477788616],[-128.17909413355716,53.003029955467944],[-128.17938537237706,53.00299206174326],[-128.17967559890232,53.002952499972785],[-128.17996761858453,53.00291179225351],[-128.18026329956558,53.002905759136226],[-128.1805619523389,53.002921534934174],[-128.18084633618102,53.00296840684318],[-128.1811208488606,53.003041235506394],[-128.18142606025995,53.00303895125853],[-128.18163977270592,53.002927942238436],[-128.1818245413976,53.00278046541315],[-128.18203649184636,53.002653228749224],[-128.1822824488646,53.00255171093632],[-128.18256651156003,53.00250161069775],[-128.18286664007357,53.00250950606282],[-128.1831615838427,53.0025438365113],[-128.18345167905974,53.00253846378847],[-128.18373940031108,53.00248661586568],[-128.18403643932342,53.00247102375173],[-128.18432967923857,53.002435878680785],[-128.18461097052077,53.00234995167637],[-128.18442909274276,53.002244581617994],[-128.1841864328918,53.00213753938312],[-128.183952871459,53.00202583499619],[-128.18375657008886,53.00189439130769],[-128.1836120643863,53.001735074065024],[-128.18346764633586,53.00157744106377],[-128.18332603516322,53.001419755904095],[-128.18318251601568,53.001261549881335],[-128.1830344851629,53.001106225345005],[-128.18285066019106,53.00096277380187],[-128.1827164715777,53.00080438548393],[-128.18262182541608,53.00063406348516],[-128.18253360127457,53.00046137146483],[-128.1824425725773,53.000288740266534],[-128.18230844513937,53.00013147139159],[-128.18210190480846,53.000000214612655],[-128.18201946991695,52.999922147041275],[-128.18185577130626,52.999770474196715],[-128.18171693391494,52.99961217081435],[-128.18160008120532,52.99944562211216],[-128.18150077094603,52.99927537656757],[-128.1814228072229,52.99910250279417],[-128.1814061451677,52.998923445382204],[-128.18140808022173,52.99874292275629],[-128.1814128493999,52.99856290369569],[-128.18141481338935,52.99838294549706],[-128.18141680588224,52.998203542785404],[-128.1814440025241,52.998024229644145],[-128.18148152410052,52.997845855393685],[-128.1814453405563,52.997668280182374],[-128.1813858609725,52.99749169211154],[-128.18133938253592,52.99731375133155],[-128.18130409628728,52.99713559443176],[-128.18125297621646,52.996958295526326],[-128.18115469976848,52.996789716480805],[-128.18108330672692,52.99661727678255],[-128.18110957900902,52.99643798962976],[-128.18107335432018,52.99625984996498],[-128.18100277272953,52.99608515309515],[-128.18090724725508,52.99591540186998],[-128.18078860004562,52.9957500064865],[-128.1806893591488,52.995580879859254],[-128.1806549886666,52.99540214968066],[-128.18062527424493,52.995223333336526],[-128.1806141844181,52.995043616362615],[-128.18061804541102,52.99486417879867],[-128.1806246678472,52.994684125121296],[-128.18069039874132,52.994509713017685],[-128.1808297647043,52.9943513100066],[-128.18092749038985,52.9941819019256],[-128.18094627189586,52.994002188140385],[-128.18089793388359,52.993824281332195],[-128.18072892549597,52.9936777453269],[-128.18057725705447,52.99352360600499],[-128.18044206077502,52.99336300052309],[-128.18031883799506,52.99319936630574],[-128.18022424687476,52.99302959712117],[-128.18011490736825,52.99286346378925],[-128.17999910549304,52.99269857092851],[-128.17996945317486,52.99252087410827],[-128.18006152512163,52.992350450082085],[-128.1801970126076,52.99218932115457],[-128.18032744927848,52.99203893087391],[-128.180587818385,52.991946672628735],[-128.18080359226389,52.991822163805665],[-128.18094501553716,52.99166765029176],[-128.18102571850636,52.99149407258421],[-128.1811432435538,52.99132879061991],[-128.18129495805718,52.99117464216102],[-128.18143999216383,52.991017810038215],[-128.18160500422655,52.99086846414497],[-128.18174879504372,52.99070549334288],[-128.18196757941243,52.990585410553095],[-128.18218040863175,52.99045815530448],[-128.18244527570857,52.99036301120841],[-128.1826626663741,52.9902519211844],[-128.18279315056594,52.990084711211026],[-128.18268756299594,52.98993701212369],[-128.1825916554061,52.98981435264507],[-128.18274241926886,52.989660219593084],[-128.18287226390555,52.98949862649451],[-128.18302782435092,52.989347202286815],[-128.1830502963573,52.98916686304403],[-128.18309161947911,52.98899009373073],[-128.18310013944955,52.988810568927775],[-128.18314892202534,52.98863366135994],[-128.18323905027776,52.98846214902927],[-128.18333787946975,52.988296645621865],[-128.18354788819732,52.98816943969841],[-128.18381958489806,52.98809826348911],[-128.18410983482303,52.98806149515627],[-128.18437485134797,52.987987643313886],[-128.1845455372792,52.98783986453702],[-128.18466592956526,52.98767620219161],[-128.18488663510996,52.987394091133126],[-128.18498240611896,52.987223593588325],[-128.18521456393987,52.98710999129793],[-128.1854477175745,52.98699748212921],[-128.18563659489442,52.98685889754487],[-128.18583486005582,52.98675768905691],[-128.18593085624266,52.98659167058879],[-128.18620113484857,52.98652948324146],[-128.1864325620586,52.98641981110893],[-128.18664172759148,52.98629485692648],[-128.18682110056739,52.98615308347832],[-128.18698037939242,52.98600158425966],[-128.18717786232097,52.98586732142536],[-128.18737162871759,52.98573311824644],[-128.18757694308982,52.98560599163107],[-128.18778115831142,52.98547552188817],[-128.18796329971184,52.98533313009013],[-128.18816657255417,52.985202677109875],[-128.1883515880254,52.98506191732975],[-128.18849086540922,52.98490293990243],[-128.18860552436854,52.98473713719417],[-128.18868431854946,52.98456359712328],[-128.18879615701252,52.9843972815449],[-128.18887995954782,52.984158062366596],[-128.18885477247997,52.983976920201876],[-128.18879172519232,52.98380377260268],[-128.1885584544462,52.98369600052339],[-128.18827445306712,52.98363625422252],[-128.18798442305356,52.98358614363119],[-128.18778304709105,52.98346320416806],[-128.18758842472562,52.98332668639588],[-128.18735434999863,52.98322116903338],[-128.1871174142094,52.98311458327736],[-128.18695380483203,52.98296403624862],[-128.18673844175035,52.98284135466974],[-128.18644721699505,52.98280415913014],[-128.18615432985243,52.98277092187909],[-128.18586398832335,52.982732587479184],[-128.18557859313916,52.98268182908628],[-128.18531922681615,52.982592471609465],[-128.1850987943276,52.98247997058967],[-128.1849133935622,52.98234103545288],[-128.18464198480572,52.98227151370675],[-128.1843694649096,52.982198657770574],[-128.18409437115116,52.98213032415446],[-128.18380400731323,52.98209142915454],[-128.18351105523737,52.982111431965855],[-128.18321446978214,52.9820967488727],[-128.18292027151804,52.982074173474494],[-128.18263568007623,52.98202058608827],[-128.18235752235364,52.98196520177578],[-128.182060002621,52.98198697164174],[-128.18176672893756,52.98201874258781],[-128.18147999761192,52.98206889343472],[-128.18099391319774,52.982126096912566],[-128.18073571464097,52.98204119213388],[-128.18048711999577,52.98194322152079],[-128.18026346805289,52.98182235895604],[-128.17999046422028,52.98175790538956],[-128.17969446274336,52.98173647641924],[-128.1794185124829,52.981669277925],[-128.17913820946274,52.98160832057206],[-128.17889676380867,52.98150404423682],[-128.17871952755468,52.98135989955367],[-128.17847869374975,52.98124944980654],[-128.1782205922265,52.9812026534472],[-128.17792416557523,52.98124568364421],[-128.1776285991282,52.98126908336431],[-128.17734433550993,52.9812216475769],[-128.17708055569935,52.98113683811995],[-128.17683190249002,52.9810377400341],[-128.17659230149718,52.980932860019415],[-128.1763516761094,52.980826321370294],[-128.17612457072394,52.980710564175844],[-128.17587858312194,52.980608607810474],[-128.17563531537863,52.98050492364027],[-128.17540279167386,52.980392628287795],[-128.1751524111651,52.980295791781536],[-128.1749127467324,52.98018979755356],[-128.17472273511487,52.98005093210979],[-128.17450098905474,52.9799300237818],[-128.17422388153454,52.979876287322696],[-128.17392451557404,52.979880125251505],[-128.1736290709595,52.97990575493746],[-128.1733356051425,52.97993358946482],[-128.1730424252168,52.97996702320431],[-128.17274680772476,52.9799892907115],[-128.17244843830716,52.97999423650903],[-128.1721485711887,52.97998798975097],[-128.17184662455597,52.97997786139375],[-128.17155586179408,52.97994903339719],[-128.1713004424946,52.97986293616225],[-128.17106047526073,52.97975076965037],[-128.17077731164872,52.97970609615919],[-128.17048471521576,52.97967785538478],[-128.17018692557264,52.97965755685061],[-128.16988656051447,52.97964178917341],[-128.16958897171102,52.97962541357456],[-128.1693205238773,52.97963147758701],[-128.16921576921646,52.97959024164251],[-128.16905514072815,52.979661026468186],[-128.1688731466648,52.97980674922471],[-128.1686734405012,52.97993486100047],[-128.16837723888057,52.97996385451615],[-128.1680827205111,52.97993452210829],[-128.16779383576122,52.97988770468141],[-128.16752588604396,52.979811919335106],[-128.16735186493756,52.979729921423626],[-128.16699112926685,52.979774672113926],[-128.1667066315825,52.97983203721923],[-128.166428097823,52.97989657424686],[-128.16615251008514,52.979963854554846],[-128.16587693531957,52.980031698966],[-128.1655973887701,52.98009457551585],[-128.16531366907105,52.98014911578825],[-128.16502893798463,52.980201987901935],[-128.16475034221835,52.98026540095789],[-128.16448579644705,52.9803481779198],[-128.16421828859214,52.98042763658484],[-128.16394092882646,52.980497195169825],[-128.1636655042873,52.98056782961634],[-128.16334139964266,52.98067243236332],[-128.1631694135977,52.98075854694605],[-128.1629673808715,52.980896224612906],[-128.16273970956672,52.98100690257117],[-128.16246177336893,52.9810652487619],[-128.1621661293407,52.98110542657869],[-128.1618825411304,52.98116276302112],[-128.1616171727605,52.98124778149608],[-128.16134223750208,52.981309998043955],[-128.1610441421986,52.981320514933856],[-128.16074504955054,52.98132991935066],[-128.16044698219457,52.98134099024709],[-128.16015139190253,52.98132735214905],[-128.15986008697624,52.98128785089887],[-128.1595664482194,52.98125736001138],[-128.15926980519578,52.98124149693822],[-128.15895125603794,52.98123500281157],[-128.15842592323204,52.981254716764624],[-128.15812897994184,52.98126968931859],[-128.15783227833018,52.981289131871804],[-128.15753559018123,52.98130913842865],[-128.15723860427443,52.981322988470474],[-128.1569409494517,52.98132395360809],[-128.1566410909351,52.98129973053931],[-128.15638710179934,52.98122310857146],[-128.1561671528414,52.981099891719374],[-128.15592123948173,52.98099845820683],[-128.15567354758164,52.98089873380524],[-128.1554419574576,52.980785261912615],[-128.15519872317608,52.980681526888866],[-128.15492979433554,52.98060461013618],[-128.15463619244588,52.980574671431704],[-128.15433966955166,52.98056103593802],[-128.15404284938307,52.9805412349594],[-128.15375023017924,52.98051239713571],[-128.1534892346425,52.98042636386029],[-128.153254037067,52.98031519579404],[-128.1529869501288,52.980237676035195],[-128.15269332355425,52.98020716800522],[-128.15239892774946,52.98018003640668],[-128.15211697876106,52.98012240880117],[-128.15183760818562,52.98006024930533],[-128.1515472027599,52.98001959031711],[-128.15125018519683,52.98001436840777],[-128.1509714848789,52.980076064420594],[-128.15070502025034,52.98015828001968],[-128.15041173623402,52.980189981938956],[-128.15013713519153,52.98012997346955],[-128.14988497768272,52.98003368178393],[-128.14964804033352,52.97992478051929],[-128.14941291220777,52.979814724754675],[-128.14917060987844,52.9797104045661],[-128.14891245568936,52.97964336710914],[-128.14864326172747,52.97956083596156],[-128.14840153434392,52.97944921255271],[-128.14817812846596,52.979331093419034],[-128.14792420062798,52.979236515970904],[-128.14768190524583,52.9791321926856],[-128.14742110019657,52.97904950590632],[-128.14726403893746,52.97889597987447],[-128.14709785404852,52.978746548005645],[-128.14699702225155,52.97857910951235],[-128.1470392966521,52.97840009488305],[-128.14704581929337,52.97821500553923],[-128.146911787996,52.97807395571983],[-128.14669726382826,52.97794670377588],[-128.14647580660474,52.97782966706664],[-128.1462164525781,52.977738548044584],[-128.146043156949,52.97759597046744],[-128.1459144204636,52.97743016037967],[-128.1458264071258,52.97725800328163],[-128.14576606614338,52.977079171949505],[-128.14564147061893,52.9769216983754],[-128.14542967528158,52.97679270847909],[-128.14523613112777,52.97665554761959],[-128.14507807726193,52.97650035976703],[-128.14494018000426,52.97633807853057],[-128.1448449558723,52.97617053611707],[-128.1448295226442,52.97599424980571],[-128.14486698035856,52.97581196038697],[-128.1449026863057,52.97563194489197],[-128.14494687444355,52.97545346096285],[-128.1449043860026,52.975277111138475],[-128.14483310465909,52.975103527563064],[-128.14494689764396,52.974936098729565],[-128.14505412875988,52.97476823319897],[-128.1452309281165,52.9745923745381],[-128.14535908986093,52.97443253976346],[-128.14550419937808,52.97427575030051],[-128.14567688624626,52.974129112664315],[-128.14585428197057,52.97398351000342],[-128.14592955843682,52.97381118535289],[-128.14595974965837,52.973632946734554],[-128.14609416895786,52.97346794782977],[-128.14624153306792,52.973318972407114],[-128.14642494040126,52.9731816624834],[-128.14669741505728,52.973108314344735],[-128.14695902017496,52.973022832249455],[-128.1472000230159,52.97291754640696],[-128.1474482778139,52.97282670132785],[-128.1476684090226,52.97269601108847],[-128.1479240622527,52.97260390903298],[-128.14819354375194,52.972526692722624],[-128.1484512289385,52.97243791553403],[-128.14869612321124,52.97233591860899],[-128.148925422512,52.97222075317424],[-128.14916260217976,52.97211384679632],[-128.14940882884164,52.97201967126685],[-128.14957284171493,52.97186814538802],[-128.14971133785733,52.97171034970026],[-128.1498035997107,52.97154219616966],[-128.1500068252987,52.971409567653296],[-128.15019285980722,52.971269405270725],[-128.15032277195604,52.971107846261454],[-128.15049833156883,52.970963390382096],[-128.15059609622392,52.97079344956531],[-128.15068823882928,52.97062304627761],[-128.1507785735748,52.97045380590447],[-128.15083492642535,52.97027677362904],[-128.15085947383287,52.970098079971145],[-128.15088026406397,52.96991888988555],[-128.1508963729757,52.96973922921792],[-128.150887279607,52.96955947268361],[-128.15093241716193,52.969382080022],[-128.15101974604,52.9692089660316],[-128.15104540157893,52.969033615083006],[-128.1510148905325,52.96885480562794],[-128.15100470225354,52.96867170587096],[-128.15114533013625,52.96851947418774],[-128.1513302536355,52.9683759666304],[-128.1515047324868,52.96822873036382],[-128.15163371895693,52.968067742298295],[-128.15175057157722,52.967887926965304],[-128.1520366950105,52.967937630813324],[-128.15232371514332,52.96798675258668],[-128.1526123319236,52.96803024824663],[-128.1529075116656,52.968056242604085],[-128.15319934686255,52.96808957966281],[-128.15347253455317,52.96816026032284],[-128.15374754501073,52.96822977702262],[-128.1540378153025,52.96826931087141],[-128.15433405402015,52.96827903168569],[-128.15463081974715,52.96828088584386],[-128.15487342735707,52.96837397855494],[-128.155034233669,52.96852798272693],[-128.1551947005258,52.968675266635756],[-128.1554645225657,52.96875273062478],[-128.1557352415903,52.968829612588074],[-128.15600765537746,52.96890309979175],[-128.1562738502495,52.968982861480164],[-128.15653573445255,52.969069436734074],[-128.156811481804,52.9691350137825],[-128.15709853044427,52.969184123615804],[-128.15739273947824,52.96920900364748],[-128.15769072109234,52.969216442140194],[-128.15798840485343,52.969217715108556],[-128.158286130571,52.96922010760116],[-128.15858338657262,52.969231476308885],[-128.15888115553972,52.969234422546116],[-128.1591782275829,52.96922393723289],[-128.1594619960356,52.96917165137784],[-128.15975267914564,52.96912708536083],[-128.16002315203622,52.96919891296417],[-128.16030491059811,52.96925428230306],[-128.16051926089844,52.96937815013382],[-128.16070737119122,52.969518193560525],[-128.1609638172384,52.969607657054446],[-128.161290861317,52.969672847722684],[-128.16165030666605,52.969567599935196],[-128.16190088774783,52.96948677002796],[-128.16208445580563,52.96935391542327],[-128.16230209080786,52.969230533527146],[-128.1625391632096,52.96912248003346],[-128.16281478655807,52.96905688298448],[-128.16310360121253,52.969012342926206],[-128.16339348257674,52.96897058965889],[-128.16361319562566,52.96894301212073],[-128.16384889100536,52.968753144692585],[-128.16402722735077,52.9686091814303],[-128.16423908902573,52.96848252968226],[-128.16448096431768,52.96839569270447],[-128.1647779881245,52.96840256578771],[-128.16507384438714,52.9684049753901],[-128.1653575143436,52.96835099083058],[-128.1656211017806,52.96826935754965],[-128.16590872658477,52.96821978311322],[-128.16618119290243,52.96814750970684],[-128.16646710885644,52.96810133741977],[-128.16676475630814,52.96810202373632],[-128.16706178972757,52.96809095405985],[-128.16735458739257,52.9681063107281],[-128.16764804401737,52.96815303497745],[-128.16798986688107,52.96801390398505],[-128.16827575118828,52.967967162825914],[-128.16856902350904,52.96793710069984],[-128.1688589354276,52.96789588920425],[-128.16914662495216,52.96784799160551],[-128.169433360435,52.96779954585307],[-128.1697212350274,52.96775500656981],[-128.1700079408782,52.967706003896964],[-128.17028550703841,52.96764259524584],[-128.17054502432725,52.96755429934361],[-128.1708155572392,52.96748092954432],[-128.17110989173685,52.96745363956035],[-128.17140722038545,52.96744815864027],[-128.1717054735421,52.96744265992264],[-128.17200195283814,52.96745737210532],[-128.17229853330886,52.96747376774312],[-128.172595437486,52.96747838112841],[-128.1728921788601,52.96746169676306],[-128.17318810595933,52.96748369851895],[-128.1734819439722,52.96746482412588],[-128.17372875701864,52.967365544952834],[-128.17392716314117,52.96723184099988],[-128.17411596136142,52.96709270875588],[-128.1744645043689,52.967103646576746],[-128.17475776636053,52.967073569031086],[-128.1750555925861,52.967078159146986],[-128.1753527807935,52.96708836556688],[-128.17565008375647,52.967100811229365],[-128.17594815443871,52.967109878797764],[-128.17624798864568,52.96711723593273],[-128.176536969184,52.96709451541663],[-128.1768092097813,52.96701830188026],[-128.17709691285833,52.966970940362216],[-128.1773825656504,52.96691969682009],[-128.17766212336275,52.96685904077092],[-128.17794361614634,52.96679946034757],[-128.1782241691212,52.96673990558368],[-128.1785046060893,52.96667810119979],[-128.17879117978282,52.96662683713299],[-128.17908874369024,52.966589942763626],[-128.17935511972635,52.966526719345076],[-128.17945486379622,52.966452570047664],[-128.1794894159409,52.96636224613678],[-128.17953824519617,52.96618645767696],[-128.17954528646507,52.96605067946394],[-128.17957866451215,52.96601025978585],[-128.17976144491266,52.965863381910324],[-128.18003066136777,52.96580122532439],[-128.1803251427394,52.96575877945351],[-128.18060752056672,52.96569861999398],[-128.18086612255445,52.965611438643904],[-128.18105782279756,52.965475039014144],[-128.18125267040944,52.965345316069616],[-128.18150719576147,52.965251473407235],[-128.1817877620395,52.9651924656196],[-128.182060124506,52.96511903536929],[-128.18230888284313,52.96502194353848],[-128.18249368598097,52.96487838678257],[-128.18273576197902,52.96479654763963],[-128.1830369465375,52.96477582673985],[-128.1833259984647,52.96473683697047],[-128.18360947723315,52.964680012846046],[-128.18389099033405,52.96462154736577],[-128.18417882827444,52.96457697267442],[-128.18446033945057,52.96451849687013],[-128.18475200031938,52.96449402894077],[-128.1850462915688,52.96446614830021],[-128.18529704686955,52.96437181104493],[-128.1855310006237,52.96425929198222],[-128.185799583531,52.96416686490491],[-128.18600331608678,52.964083488303],[-128.18606038818675,52.9638688622398],[-128.18616124348358,52.96370779939979],[-128.18626507406483,52.96355004439966],[-128.1862816676971,52.96336476109886],[-128.1864308926794,52.96321905991554],[-128.18664360018948,52.96309235003724],[-128.18686767657957,52.96296935684363],[-128.18707653906176,52.96284048435618],[-128.18730468624233,52.96272414104803],[-128.1875127506141,52.96259808071818],[-128.18765476081342,52.96243905006599],[-128.187700979073,52.9622677898533],[-128.18765936365438,52.96211161396054],[-128.18768732397217,52.96191154520146],[-128.18769112354437,52.96173154832657],[-128.18773045026362,52.961553124628246],[-128.18777070156025,52.961374692684124],[-128.1879081550086,52.96121798829464],[-128.1880578161966,52.96106274297991],[-128.18809253193783,52.960885534751725],[-128.18812999241788,52.96070714545753],[-128.18816931681044,52.96052873046222],[-128.18817967341013,52.960349167594906],[-128.18818349934264,52.96016972605151],[-128.1881779774886,52.959989893162216],[-128.1881538473826,52.95981097102924],[-128.1880934826068,52.95963496426744],[-128.18802200854844,52.95946028494052],[-128.18798578686213,52.959282152411205],[-128.18803359086425,52.959105256859964],[-128.18802996251878,52.958925953697815],[-128.18801698672436,52.95874625917662],[-128.1880021478207,52.95856660822189],[-128.18797341024586,52.95838889260072],[-128.18789454173273,52.95821547156832],[-128.18781473457955,52.95804206791569],[-128.18770804150242,52.95787196187294],[-128.1876699737502,52.95769386342105],[-128.18756617167273,52.957525389617224],[-128.18746604006762,52.95735572647006],[-128.1874298220401,52.95717758458308],[-128.1873044856452,52.95698933134692],[-128.18748556742887,52.95684695529443],[-128.1876030151521,52.956682218693594],[-128.18776976457312,52.956533381989296],[-128.18798246370886,52.95640723366023],[-128.18821063153658,52.95629200814251],[-128.18846812117474,52.95620258679366],[-128.1887207990269,52.95611044713996],[-128.18900112208902,52.956048061857246],[-128.1892725029224,52.95597518750698],[-128.18951522565695,52.955870899406314],[-128.18975306511663,52.955762217310905],[-128.18999188535088,52.955654637534074],[-128.19022976515035,52.95554707473593],[-128.1904685543619,52.95543893846026],[-128.19070739958514,52.955331912730024],[-128.1909481939083,52.955226536309446],[-128.19119087964555,52.95512168919037],[-128.1914345606456,52.95501793512158],[-128.19168212618067,52.95491748039774],[-128.19193567093205,52.95482419629794],[-128.19220207035386,52.95474524622886],[-128.19248040034478,52.95468064731562],[-128.19275468468427,52.95460995268865],[-128.19302096575132,52.95452876076468],[-128.19328432759818,52.95444538044825],[-128.19354761691113,52.954360323746975],[-128.19380996551178,52.9542752749915],[-128.19407329558746,52.95419133738],[-128.19433765025792,52.95410905718651],[-128.1946040407449,52.95403010165064],[-128.19488044114294,52.953964411774436],[-128.1951690619493,52.953918672720704],[-128.19545561610073,52.953869043240225],[-128.19574217004623,52.953819422021056],[-128.1960277699018,52.95376925286393],[-128.19631013246564,52.95371073084751],[-128.1965916420608,52.953653910145206],[-128.19688631334836,52.95363495970627],[-128.19718426410296,52.953625480944496],[-128.19748201197294,52.95361207696823],[-128.19778056818703,52.953596414998444],[-128.19806336151066,52.953546293210984],[-128.198334667886,52.953472277599545],[-128.19860486092767,52.95339492787432],[-128.19888122184096,52.95332866410737],[-128.19916464682018,52.95327292243681],[-128.19945116323615,52.95322272769933],[-128.19973879191215,52.953175874698694],[-128.2000004067208,52.95314913035529],[-128.20003194002211,52.953145733993026],[-128.20032049179954,52.95309886230007],[-128.20064216863756,52.952971218307844],[-128.2008798906054,52.952861393840784],[-128.20116177988527,52.95281183738495],[-128.20145995578915,52.952806827775596],[-128.20175791690946,52.95281583040544],[-128.20204639404096,52.95285752089229],[-128.202314322219,52.952934904486604],[-128.2025872658301,52.953018929097404],[-128.20285106740673,52.952962424423525],[-128.20311223249342,52.95287289219957],[-128.2033917192334,52.9528132945819],[-128.2036772160449,52.95276142237802],[-128.2039596198943,52.95270401094016],[-128.204255379691,52.95268838472991],[-128.2045526192573,52.95270131308452],[-128.20484602216905,52.952676204831114],[-128.2052779603635,52.95262494958945],[-128.20557461457008,52.95260874723916],[-128.20587206733836,52.95260765926198],[-128.206167680305,52.9525892237912],[-128.20639205160867,52.952474032621986],[-128.20660863442467,52.95235226048038],[-128.20687487492165,52.952271037127225],[-128.2071117400553,52.95216290182561],[-128.20738105663074,52.95208722501797],[-128.20759955614915,52.951966536082345],[-128.2077852865726,52.95182571669767],[-128.20800066158137,52.95169892408005],[-128.20824061341108,52.95159632490862],[-128.20853566612183,52.9515672480525],[-128.2088324839204,52.95159027210494],[-128.2091118089074,52.95165341753602],[-128.20940380168298,52.95167315848104],[-128.20970107326664,52.95166870086327],[-128.20999938539396,52.95166646512662],[-128.21029119657047,52.95170079032456],[-128.21057719189918,52.95174866801758],[-128.21086158669675,52.95180162443503],[-128.21115442604219,52.95180173071876],[-128.21143795613037,52.951748199161855],[-128.21170823086914,52.95167305927598],[-128.21198097931494,52.95160963916151],[-128.21229437055325,52.951502853579434],[-128.2125089090697,52.95145005065818],[-128.2127965990074,52.951404850183216],[-128.21308963802213,52.951372992483854],[-128.21338282252722,52.95134393850524],[-128.2136665943739,52.9512954462758],[-128.21396400194746,52.95131171085447],[-128.21426188292654,52.95131900607776],[-128.2145163619724,52.95124526876063],[-128.2146599805203,52.95108393841115],[-128.21489200746575,52.950973070699334],[-128.21514846924683,52.950883599452254],[-128.21542106190938,52.95081737585157],[-128.2157158507714,52.95080117376202],[-128.21600219670333,52.95085576719203],[-128.21626137163943,52.950908064201684],[-128.21653153334182,52.95092035079068],[-128.21679434944016,52.95091708883548],[-128.21705250905927,52.95093184238253],[-128.2173464178286,52.95091678284327],[-128.21763865717028,52.95088773594891],[-128.2178718163384,52.950959577936544],[-128.21814950413022,52.95091959302185],[-128.2184956011681,52.95095735056906],[-128.21879331925172,52.95096183016922],[-128.21908961678534,52.95095681103769],[-128.21935682226936,52.95087666168722],[-128.21960148080115,52.95077563611013],[-128.21979878472382,52.950642991288014],[-128.22006793765053,52.95056448067672],[-128.2202718560547,52.95043339639073],[-128.22046427167243,52.950296358188595],[-128.2206498937604,52.95015439839127],[-128.22088075334418,52.950056993507985],[-128.2210926428043,52.949953784520275],[-128.22124476683842,52.949813020661765],[-128.22179180521167,52.94944899054926],[-128.22218772846128,52.949137702994314],[-128.22245281978473,52.94885691101294],[-128.22255959462535,52.94866935941856],[-128.22269363130076,52.94845045853234],[-128.22280155232065,52.94823148548849],[-128.22282960871925,52.94809026337276],[-128.22285861809956,52.94794957930244],[-128.22275157214986,52.94770327429416],[-128.22275020726354,52.94760576514978],[-128.2226287884528,52.947441579989416],[-128.22253131349058,52.94727132825596],[-128.22242015125485,52.947106949249616],[-128.22230153683927,52.94694270184326],[-128.22219215149508,52.94677660295828],[-128.22208799347843,52.94658574129457],[-128.2220645592989,52.94644044173473],[-128.22199493621028,52.94625004921083],[-128.22195870055904,52.94607416569625],[-128.22200623150422,52.94589501498664],[-128.2220127881974,52.94571719368633],[-128.22200153648748,52.94553747528379],[-128.2220188770087,52.94535160275327],[-128.22199955562135,52.945178198151986],[-128.22198179085973,52.94499860262708],[-128.22201629326685,52.94482025374774],[-128.22213080158548,52.944656098900445],[-128.22233751635054,52.944525513189255],[-128.22255388115883,52.944401471445566],[-128.22274338706384,52.94426279717549],[-128.22285594004953,52.944096992281935],[-128.22298833891904,52.94393641794668],[-128.22312639922794,52.94377685760393],[-128.22329870937418,52.94363066835737],[-128.22351898332127,52.943509914084984],[-128.22375572789204,52.94340118026372],[-128.22403411141374,52.94333986631551],[-128.22430868010565,52.94327693764878],[-128.22457686870192,52.943198998597595],[-128.22483716539273,52.94311280434296],[-128.22505549584898,52.94299096266222],[-128.22550093800055,52.94295058633998],[-128.22580502492215,52.94297062212337],[-128.2260981723939,52.942942100818016],[-128.22639338733356,52.942917459023676],[-128.22666795903245,52.94296159383211],[-128.2269490016833,52.94296916547961],[-128.22723409213623,52.94301814940613],[-128.22754550004277,52.943035800008346],[-128.22772726345627,52.94305254006112],[-128.22798624422597,52.94310145127437],[-128.22819169690453,52.94319677508714],[-128.22845172076703,52.94322997019931],[-128.22884056901108,52.943248393573555],[-128.22912702732648,52.94323456564665],[-128.2293648866402,52.94325416027756],[-128.22970327353127,52.943252800650924],[-128.22999027348712,52.94321373117968],[-128.23027039234648,52.943150127218416],[-128.23053758647498,52.943071072107436],[-128.23078111720852,52.94296780064901],[-128.23099472123457,52.942844916080354],[-128.23121736085156,52.942734191910425],[-128.23139531569234,52.9425895602881],[-128.23149196208303,52.94247673942421],[-128.23173535043287,52.94229947600702],[-128.23184780444274,52.94213254233667],[-128.23193105152808,52.941959991789275],[-128.23199832401102,52.941784945792925],[-128.2320910172004,52.941614467124964],[-128.23218463317232,52.94144396188452],[-128.23224439349153,52.94126793701354],[-128.23239901477228,52.94110525238889],[-128.232583938696,52.940933580039044],[-128.23269135527676,52.94077738680916],[-128.23271951916135,52.94062101959922],[-128.23277500504244,52.94041704786341],[-128.2328038460374,52.940291502506824],[-128.2330149032639,52.94012045466646],[-128.23309359277204,52.94007411776826],[-128.23338361929297,52.94004002253805],[-128.23368403321794,52.94002591826318],[-128.23398457881854,52.94001460898889],[-128.23427683482672,52.939987195833595],[-128.23454356299527,52.93991767365952],[-128.2347857890516,52.9398076913476],[-128.23504303650085,52.939717603119554],[-128.23532852454593,52.93966789375657],[-128.23562108359843,52.93962870434652],[-128.2359054257594,52.93957509594593],[-128.23620020257368,52.93956052721471],[-128.2364985461649,52.9395604643133],[-128.23678811080626,52.939517409485056],[-128.2370608320609,52.93945560632265],[-128.23735394777682,52.93942705693526],[-128.23764251242292,52.9393828889039],[-128.23791883982324,52.93931878191399],[-128.238157387081,52.93920998344517],[-128.23842206401923,52.939137118960986],[-128.23863233652474,52.93905800590977],[-128.23894550952332,52.93895002861984],[-128.23931047283796,52.93890496815136],[-128.23959607320074,52.93887543494677],[-128.23993495636606,52.93883086875418],[-128.24016923344712,52.938800624691815],[-128.2404817954343,52.93878738378217],[-128.24071623932764,52.938777880389],[-128.24100868432222,52.93878968537713],[-128.24128965879663,52.938849359564095],[-128.24159782216537,52.93884124891387],[-128.24188311227903,52.93885880250553],[-128.24222071647392,52.93886077549029],[-128.24258466895165,52.93883198458057],[-128.24279252840407,52.938848760051016],[-128.24310391225006,52.93886636955228],[-128.24336413064668,52.93886813682884],[-128.24362465537277,52.93882281118035],[-128.24394298683956,52.938742193600106],[-128.24429786679983,52.93857678618358],[-128.24455365205014,52.93865374956666],[-128.24485445120746,52.938647456933545],[-128.2451513916785,52.938638429879155],[-128.24544772607413,52.93861820255088],[-128.24574203499486,52.93859464979136],[-128.24604159155925,52.93856482556856],[-128.24625183983343,52.93850308069438],[-128.2464206485949,52.93832776424277],[-128.24658238251666,52.93817725591826],[-128.24675360589666,52.93802992055385],[-128.2469219529766,52.9378809626338],[-128.2470826854712,52.93772935152247],[-128.24720086213392,52.93756621149358],[-128.2472736529857,52.93739104961181],[-128.24735681382364,52.93721793186864],[-128.24747670305146,52.93705196047241],[-128.2476836729982,52.93692861431218],[-128.24794659701968,52.93684063069671],[-128.24812741952653,52.9366987152377],[-128.24819479460902,52.93652701937375],[-128.24816945740366,52.93634756946934],[-128.24810147141227,52.93617228855612],[-128.2480752402895,52.93599341175039],[-128.24805735444235,52.93581381945006],[-128.2480061632243,52.93563878269237],[-128.24798088603652,52.935460443671985],[-128.24798070306522,52.935280513178625],[-128.24797493181313,52.93510068043576],[-128.24797757955804,52.93492125190663],[-128.2480035613378,52.93474249877034],[-128.24811877717187,52.934576615554384],[-128.2482358994039,52.934411260814436],[-128.2483209573459,52.93423922676135],[-128.24840481788172,52.93407954773544],[-128.2486666065392,52.933988220345285],[-128.24891979775015,52.9338931282546],[-128.2491352848049,52.933772414475534],[-128.24939265791392,52.93368565422868],[-128.2498170434065,52.933478548813156],[-128.25006513624572,52.93337514771438],[-128.25024114029927,52.93323052211459],[-128.25042004793175,52.933088082922716],[-128.25069738687947,52.93302672350797],[-128.25096747293972,52.9329514837246],[-128.2512295752676,52.93286631495361],[-128.2514623757317,52.93275591153331],[-128.25172163031337,52.93266967497989],[-128.2519196590346,52.93253639246495],[-128.2521013742779,52.93239446181219],[-128.25229460383898,52.93225847213156],[-128.2524117179754,52.932093668799325],[-128.2525486909004,52.93193409078707],[-128.25268089554345,52.931772361621384],[-128.2527172989178,52.93159732661877],[-128.25272998455623,52.93141434170937],[-128.25287121257196,52.93126477179197],[-128.25315124849163,52.93120167741056],[-128.25334461730273,52.93106848138276],[-128.253540682355,52.93093355617876],[-128.2537319640664,52.93079647998527],[-128.25393376237932,52.93066425153575],[-128.25408878114382,52.930511052466024],[-128.2542626745218,52.93036253214166],[-128.2545499803495,52.93033124238098],[-128.25481719750638,52.93025493599759],[-128.25503244147754,52.930130286739036],[-128.25521885880528,52.929989381683214],[-128.25533692345073,52.929825112734754],[-128.25533151238136,52.929494486158426],[-128.2555027303912,52.92934826623121],[-128.25564821902955,52.929191319045536],[-128.25582895392824,52.929048835583515],[-128.25604418931422,52.928924193342816],[-128.25626146341196,52.92880286597777],[-128.25644216515673,52.92865982602924],[-128.25659812075523,52.92850716126562],[-128.25670010189805,52.92833872353556],[-128.25686275904184,52.92818929319339],[-128.25706264305038,52.92805653041534],[-128.25721570448275,52.92790224300712],[-128.25723245062835,52.92772590564712],[-128.25713488291453,52.927555689486006],[-128.2570928119699,52.927377673035615],[-128.25701747382723,52.92720478811957],[-128.2569329284924,52.92703431302237],[-128.25691033097485,52.92685424576518],[-128.25682574275052,52.92668265924518],[-128.25672357496416,52.92651364309274],[-128.2566205292903,52.9263457737774],[-128.2565812329955,52.926167147786586],[-128.2565160444044,52.9259923816861],[-128.25637810861582,52.92583414125518],[-128.2562542519991,52.925677881910474],[-128.25618347897046,52.925503222696825],[-128.25601895264697,52.925353339577704],[-128.2558526251531,52.925204620861],[-128.25567899834274,52.92505884017387],[-128.25545531735662,52.92484787247673],[-128.25522841431805,52.924734503825285],[-128.25504385608932,52.924593416251064],[-128.25486476681243,52.924449981345894],[-128.25470665542971,52.92429773127995],[-128.25452488655282,52.924156589471686],[-128.2543421658511,52.92401490955348],[-128.25407185053044,52.923943852067566],[-128.25377647477094,52.92389233309864],[-128.25363261993385,52.92376279606768],[-128.25362550267013,52.923575704872654],[-128.25360853664603,52.92339608511409],[-128.2536075053442,52.92323578426477],[-128.26602678661072,52.91986761839431],[-128.266146215693,52.91981766541371],[-128.26629885992767,52.919726720689624],[-128.26635293878766,52.91958721463697],[-128.2662984751347,52.91942178017257],[-128.26626799527511,52.919322021502126],[-128.26628311287757,52.919290903632096],[-128.2662891895276,52.919282373597596],[-128.26629510245314,52.919271048370355],[-128.26630794121104,52.91924949953449],[-128.266313854127,52.919238174306145],[-128.26635538027662,52.91919533636766],[-128.26647811189048,52.91910271633024],[-128.2666481938825,52.91898901245152],[-128.2667942779076,52.91886230813525],[-128.26687524149332,52.91875536160127],[-128.2669000982839,52.91869714877375],[-128.26691944274285,52.918622781242156],[-128.26695857954635,52.91850037967003],[-128.26699691316205,52.91839761786552],[-128.26700683102587,52.91835650986758],[-128.26702693638728,52.918314075449295],[-128.2671241194428,52.91821410797253],[-128.26723335134807,52.9181127780914],[-128.26729282284128,52.91805726143625],[-128.26734794481288,52.91800742527483],[-128.26740043071965,52.9179604472092],[-128.2674536314277,52.91790953585548],[-128.2675453759714,52.91781247114185],[-128.26765223565127,52.91768427931439],[-128.26772760938272,52.91757743978145],[-128.26777928758173,52.91749796419218],[-128.26784734764092,52.917393507812875],[-128.2679437493845,52.917261597768714],[-128.2680513958954,52.91713059196442],[-128.26815683709822,52.91699346680068],[-128.268260072204,52.91684964827589],[-128.26834454321894,52.91673871333682],[-128.26840485992614,52.91668149352283],[-128.268514418222,52.916639020014635],[-128.26862925628407,52.91652076345895],[-128.2686724466567,52.91633438709875],[-128.26877752528793,52.916190532444155],[-128.2689628229085,52.916047937771154],[-128.26917267640488,52.91587684069525],[-128.26939043307777,52.915801452368],[-128.26954508780872,52.91576595577824],[-128.26962252617446,52.91568037650837],[-128.2696522757171,52.91560917092844],[-128.26966685166386,52.91556796373197],[-128.26959727500608,52.915503724121876],[-128.26947969018738,52.91539555624719],[-128.26948420369908,52.915270466919196],[-128.26954166969463,52.91519479815776],[-128.26955365707542,52.915174951473844],[-128.26961455624672,52.91516368628334],[-128.26977220234733,52.91513205111266],[-128.26994418776405,52.91507211956922],[-128.27009241134422,52.914968356915864],[-128.27022314733514,52.914851477902936],[-128.27031385344205,52.91477012656452],[-128.27038243032376,52.91471050386642],[-128.27045069347497,52.91464528148981],[-128.2705126271523,52.914583544649695],[-128.27059910080254,52.91449274059422],[-128.27068834442017,52.91440132690914],[-128.27072068727657,52.91436146275444],[-128.27074108621028,52.914324636481375],[-128.27079467624785,52.91424624345619],[-128.2708512424501,52.914153774233526],[-128.27088721110567,52.91405946930612],[-128.27092324856943,52.913931519911856],[-128.27099718853353,52.913797798107595],[-128.27108337895004,52.91371934056302],[-128.27111950639264,52.91369789749831],[-128.27112566869533,52.913673678525306],[-128.27112928203408,52.9136366111863],[-128.2711337112248,52.91357990368273],[-128.27113306355858,52.91353282836176],[-128.27114437486387,52.9134827237791],[-128.2711806109235,52.9133934541768],[-128.27122588587966,52.91329896041996],[-128.27124427263047,52.91325936553724],[-128.27126473033198,52.91322365913361],[-128.27130378353056,52.9131522732998],[-128.27135971068282,52.91308280389766],[-128.27142175723836,52.91300592440649],[-128.27145376399525,52.912924584318496],[-128.27145290708924,52.912873593510994],[-128.27145354352743,52.9128505933799],[-128.27147606211003,52.912853521950744],[-128.2715682549479,52.91288761806819],[-128.27174535025887,52.9129060646705],[-128.27198295511346,52.91283644948046],[-128.27221670985043,52.91272934549712],[-128.27237304186383,52.9126556937041],[-128.27246487498974,52.9125956203165],[-128.272533789151,52.91254271648363],[-128.27262399934585,52.91248715887424],[-128.27275078705011,52.912435944070054],[-128.27288098693904,52.91239643067837],[-128.27300242479367,52.91233242136302],[-128.27323934805855,52.91223254588232],[-128.27355534209124,52.91216533190062],[-128.27369716217333,52.91215137920758],[-128.2737335865074,52.91213554420372],[-128.27381757038725,52.912085711679886],[-128.2740976423735,52.911956406687864],[-128.2745676289556,52.91178923833548],[-128.2748685906682,52.91171951302114],[-128.2749740307741,52.911722523377165],[-128.27503474807096,52.91172526854202],[-128.27508816671894,52.91166145138118],[-128.27516229937478,52.911531651198466],[-128.27519428708496,52.91146768344784],[-128.27521293271516,52.911467887840196],[-128.27531720900643,52.911466426851106],[-128.27553687146494,52.91146217749222],[-128.27577451044002,52.91146318562825],[-128.27594060709626,52.9114678198866],[-128.27606382835677,52.9114721624309],[-128.2761602442931,52.91148038699228],[-128.27620322958103,52.9115003007933],[-128.2762129911399,52.91152589817401],[-128.27622802760231,52.91156316098895],[-128.27625698322998,52.91163435377511],[-128.27641956148412,52.911729868016835],[-128.27674676633413,52.91178519793218],[-128.27711049376865,52.91175685533418],[-128.27740399987343,52.91166989454763],[-128.27753560003018,52.91160456245037],[-128.27756674672705,52.911577051918044],[-128.27757926807976,52.911567275262016],[-128.27761569047092,52.91155143905074],[-128.27768949333196,52.91153767736597],[-128.2777903410463,52.91152451305617],[-128.27786171844798,52.91151752509154],[-128.2779188476953,52.91152314559479],[-128.27801309329547,52.911543178201185],[-128.27812394911425,52.91157747286703],[-128.2782518772707,52.91158284311125],[-128.2784390581934,52.91152876599714],[-128.27864935639042,52.91148881561191],[-128.27878927194598,52.91149171075552],[-128.2788800345802,52.91151629472805],[-128.278942280746,52.911547601914066],[-128.27896617233594,52.911558915513915],[-128.27898457774822,52.911554630418465],[-128.27903994455855,52.91154458851095],[-128.27916424850463,52.9115343319663],[-128.27936955819519,52.91154044385906],[-128.27961342710645,52.91155310002642],[-128.27981599715662,52.911560385383325],[-128.27995327784907,52.911566128595105],[-128.28006172738193,52.91157299558048],[-128.28012159678204,52.911577440760475],[-128.280196268842,52.91157992172217],[-128.28031958059685,52.91158593530231],[-128.28056019382782,52.91157286630163],[-128.2809653891132,52.91153585967333],[-128.28126698250298,52.91151319359788],[-128.28140758822278,52.911528960934454],[-128.28153514063024,52.91156180744901],[-128.28165833153855,52.91160033519042],[-128.28183274534373,52.911655816422815],[-128.2820171803485,52.911707174489685],[-128.28219886018775,52.91179389733248],[-128.28242210265847,52.911943162630315],[-128.28258819423922,52.91203468092299],[-128.2826975758842,52.91205890069303],[-128.28280135084822,52.91210005532889],[-128.28283905493626,52.91212566602364],[-128.28292109162837,52.912074187351614],[-128.28313273128524,52.911937784353825],[-128.28337251080066,52.91182213645601],[-128.28359905696186,52.91178970978103],[-128.28387888262074,52.91177810603265],[-128.28419729847587,52.91177360921823],[-128.28444668770013,52.911802400361495],[-128.28461879343647,52.91184950928458],[-128.28476618820557,52.911887563722836],[-128.2848944638404,52.911899090821144],[-128.28502917885183,52.91189198927795],[-128.2851330951764,52.911883799714786],[-128.285245666663,52.91188049155066],[-128.28539605553803,52.911887659980465],[-128.28558266839363,52.91187506484816],[-128.28581949948088,52.91177404403142],[-128.28598158566618,52.911617296846536],[-128.2860351442445,52.911538896751374],[-128.28608072960537,52.91153745469431],[-128.2861359079768,52.91154142293966],[-128.28624625029445,52.911548812513324],[-128.2864226482726,52.911571726232154],[-128.28659019623373,52.91158585151887],[-128.28669821655177,52.911567490438244],[-128.28673820801018,52.91154877459708],[-128.28676646220114,52.91155439609893],[-128.28686690755873,52.911602894924464],[-128.2870484128896,52.911651494824476],[-128.2871963082212,52.9116469418566],[-128.2872762039629,52.91164258090221],[-128.28735650056916,52.91166288632966],[-128.28747770223166,52.911647075557276],[-128.2876057288731,52.91158459977722],[-128.28766072344357,52.911550460805636],[-128.28773890810618,52.9115489401671],[-128.28788666158377,52.91155895504505],[-128.2879654481062,52.91156863403611],[-128.28801886548393,52.911591704153516],[-128.28815186579757,52.91169114148727],[-128.28824778542486,52.91184623632878],[-128.28824632818163,52.91195781447719],[-128.28822840948587,52.91200581635875],[-128.28829155573166,52.912088674057635],[-128.28844383529045,52.912252197564435],[-128.2885996287018,52.912411732978036],[-128.2887294468382,52.912538704219216],[-128.28892995036247,52.91269792534076],[-128.2891854704682,52.91285776165731],[-128.2892987073879,52.91291890723119],[-128.28925652271215,52.91293149580718],[-128.28916611247197,52.91296576863037],[-128.28909563302798,52.91305851828583],[-128.2890296592143,52.91321788403589],[-128.28894133529914,52.913360302359656],[-128.28882891022394,52.913470120181096],[-128.28870496901052,52.91357400011803],[-128.28863418604513,52.913661140621805],[-128.28860157963607,52.91373073007388],[-128.28855082292884,52.9138090767576],[-128.28846447362383,52.91391894292821],[-128.28835853377242,52.91404545124917],[-128.2882629154764,52.91417344487426],[-128.28820427912657,52.91427885217209],[-128.28817372819933,52.91435175594382],[-128.2881258101703,52.91444855057275],[-128.28803464098516,52.91457252890937],[-128.28794261884275,52.914663445439125],[-128.2878907368204,52.91470369465582],[-128.28785349812378,52.91472180117704],[-128.2878308364555,52.91473345338899],[-128.28788969058246,52.91480573932938],[-128.2880103351718,52.914952505273],[-128.28806796048042,52.915036591548194],[-128.28807336926735,52.915067878439515],[-128.288092636443,52.91516616454767],[-128.28811460308694,52.91529747643759],[-128.28812572177765,52.915365650081405],[-128.28813470333506,52.91539406012089],[-128.28816326560505,52.91544003659452],[-128.28830584708686,52.9155790835923],[-128.28863844466747,52.915872524315084],[-128.2889665703842,52.91615203233749],[-128.28910634647013,52.91627319465288],[-128.28915466181394,52.916322706041484],[-128.2892090592093,52.916381068222826],[-128.28938536989838,52.916523386085736],[-128.28978539726478,52.91682279436503],[-128.29019186380054,52.91712039874735],[-128.29036479303764,52.91725156957133],[-128.29041608106849,52.91728700377697],[-128.29047507275675,52.91732678152265],[-128.29059385670803,52.91747358112873],[-128.2907854625452,52.917743965881606],[-128.29095310209553,52.91798455507961],[-128.29104319347624,52.91811733809929],[-128.2910737990493,52.91818401080414],[-128.29107967333815,52.91824107483205],[-128.29108799734863,52.91830930260573],[-128.29109672784125,52.91838480542186],[-128.29110553412764,52.91846199296113],[-128.2911084385274,52.918533133620926],[-128.29111187436436,52.91859697199813],[-128.2911109794332,52.91866705652979],[-128.29109624910248,52.91873966176109],[-128.29106738094902,52.918809169910155],[-128.2910376047046,52.918879260788934],[-128.29102737044715,52.91894897109319],[-128.2910409333367,52.91901036994827],[-128.29106791031245,52.91906141726351],[-128.29111554491007,52.91913280793844],[-128.29116908109535,52.91920968041538],[-128.29118847967118,52.91924125973978],[-128.29120937539147,52.9192139453047],[-128.29131599765054,52.919099754211715],[-128.2914652089481,52.91894604946813],[-128.29153741559614,52.91886784903612],[-128.29154510782377,52.91885480154512],[-128.29175400187032,52.91877113105685],[-128.292172767289,52.91862170819988],[-128.2924254915936,52.918555685856006],[-128.29248210052958,52.91856859258967],[-128.29250191408292,52.91857325612929],[-128.29251792021765,52.91854155212583],[-128.2925757658897,52.91857742269601],[-128.2927250391562,52.91868438596824],[-128.29288233032557,52.91881922144467],[-128.29301849332532,52.91894213592429],[-128.293137707443,52.91904463493396],[-128.2932177845117,52.91911258510197],[-128.29326202211038,52.919155447482936],[-128.2932934714714,52.91918567043776],[-128.29332564443874,52.91922932406315],[-128.29336863577274,52.919300804409694],[-128.29348150337202,52.91935466143174],[-128.29365793757754,52.919377564193454],[-128.2937399294141,52.919411842303845],[-128.29373443409588,52.91949996390524],[-128.29372906512342,52.91964245413732],[-128.2937273048771,52.919834760506795],[-128.2936921271045,52.919994649060996],[-128.29360750260489,52.920032740618566],[-128.2935309738445,52.920082441830466],[-128.29348593042891,52.920215050059454],[-128.2934763119848,52.92033071554978],[-128.29349630941377,52.920407684745584],[-128.2935252999254,52.92047887289202],[-128.2935593148722,52.92055668995107],[-128.29360228632814,52.920662361021854],[-128.29364757556976,52.920759017725864],[-128.29369098255452,52.92080358233964],[-128.2937293076327,52.920823015764086],[-128.29374747141665,52.920831630798716],[-128.29375555261765,52.92084324078442],[-128.29376502511465,52.9208632367178],[-128.2937710638139,52.92087153205764],[-128.29383724559074,52.92087191895322],[-128.29397035193938,52.92086876759454],[-128.29417264579726,52.920904619214014],[-128.29450923353153,52.920993917702084],[-128.29488533556852,52.9211592384823],[-128.29534388269926,52.921418803116936],[-128.29583183955248,52.92163631871961],[-128.29603077286214,52.92171315911351],[-128.29604201593065,52.921748816365124],[-128.29605969073387,52.92180004413669],[-128.29606752929982,52.92182455636836],[-128.29612685372663,52.92183573120053],[-128.29624924171094,52.92185856388754],[-128.29630858178828,52.921870303381766],[-128.296511784847,52.92195714996689],[-128.29706355193838,52.922113429282284],[-128.29756796429857,52.92216916261948],[-128.2978671970233,52.92220480115625],[-128.29826921467918,52.92229729584311],[-128.29866551368414,52.922352894103874],[-128.29883643806107,52.92237702712109],[-128.2989602065233,52.92240824315291],[-128.2991231959976,52.92247512542029],[-128.2991901029911,52.922557903962634],[-128.29920856937284,52.92260631746497],[-128.29927447924533,52.92265323874796],[-128.29939320479042,52.92274621596847],[-128.2995675026869,52.92286725674479],[-128.29977581808538,52.92297978432153],[-128.29996798234913,52.92306908318643],[-128.3000787941862,52.9231190458025],[-128.30010931299503,52.9231319029437],[-128.3001236644432,52.92313891431969],[-128.30017413514202,52.92317604662477],[-128.30026644815638,52.92322861301436],[-128.30041300323134,52.92326723010309],[-128.30056435780568,52.923308560520084],[-128.30066118264503,52.92337561330165],[-128.3007321053225,52.92348073542511],[-128.3007564469563,52.923586212305985],[-128.3007445011331,52.923692954857664],[-128.30072984476317,52.92383562709959],[-128.3007137959184,52.92395254018079],[-128.30070562026486,52.92399081903481],[-128.30094652379117,52.924016379096955],[-128.3015027686319,52.924047538304926],[-128.30198707388757,52.92400667175604],[-128.30235453650988,52.923942303253746],[-128.30264966694057,52.92393652772558],[-128.30276128568516,52.92394948319823],[-128.30282535320222,52.92396223913869],[-128.3029433005976,52.92398908043835],[-128.3030134397154,52.92401069558944],[-128.30302588367914,52.92401661384246],[-128.30304318771803,52.92402636546526],[-128.303097764342,52.92405332586712],[-128.30316190871338,52.9240845835481],[-128.30325283460346,52.92412877070535],[-128.3033735094047,52.92418863654165],[-128.3034789542905,52.92424262962645],[-128.30359979671476,52.924322663650436],[-128.3037293622533,52.92444345314303],[-128.3037984493182,52.9245833650561],[-128.30381701897113,52.924737163761954],[-128.30382659573098,52.92489673530517],[-128.30389969538757,52.925024801008476],[-128.3041434105514,52.925101872401235],[-128.30441887140117,52.92514580827966],[-128.3045862373708,52.92517280126543],[-128.3047112887442,52.92519277483106],[-128.30477426883263,52.92520275266392],[-128.30484572667973,52.925214241632595],[-128.30512687703788,52.925208177825205],[-128.30548318902748,52.92516139148028],[-128.30574394121527,52.92510583028367],[-128.30597317303327,52.925053128544725],[-128.30617109758333,52.92500776686918],[-128.30631744370774,52.92497350621035],[-128.30638461434083,52.92495761461905],[-128.30640738254598,52.92494764303448],[-128.3064547656504,52.92492765468226],[-128.30647938054875,52.92491763791383],[-128.30649415602974,52.92491510597448],[-128.30653206381575,52.92490932217987],[-128.30656436988713,52.924903639217],[-128.30663101147357,52.92489504980515],[-128.30673589387558,52.92488682283109],[-128.3067869122557,52.92488245915868],[-128.30680454901335,52.92488099223238],[-128.306903800025,52.924872319423734],[-128.30712570486975,52.924839383633824],[-128.30739214779763,52.924802766650124],[-128.30759190617314,52.92479100105287],[-128.30766383251924,52.92479407498861],[-128.3077248741761,52.92480240305621],[-128.30787166691061,52.9248281176602],[-128.30805481102936,52.92487104844137],[-128.30820172834228,52.92491637583544],[-128.30827776167126,52.92494347803962],[-128.30829206874716,52.924949359201506],[-128.30833306845523,52.92496649325324],[-128.30846189674807,52.92502170946914],[-128.3086418557538,52.92510899175883],[-128.3088101903031,52.92520547108415],[-128.30896583957423,52.92530836095159],[-128.30913105900734,52.925416112466095],[-128.30923161781502,52.92551728474859],[-128.30928296849083,52.92558747444264],[-128.30942966457235,52.92564569344053],[-128.30960096787476,52.92572810351989],[-128.30972964304604,52.92583208694753],[-128.3098285814117,52.92592039284088],[-128.30989249761342,52.92598192249951],[-128.30997403927026,52.9260588022037],[-128.31009361855627,52.9261668923286],[-128.31022897699887,52.92629092471944],[-128.31035634039236,52.926405023594505],[-128.3104557186437,52.92648435114464],[-128.3105556565873,52.92655694969323],[-128.3106493274193,52.926634146861296],[-128.31074717553577,52.926702301693005],[-128.3108844793299,52.92677639949953],[-128.3110117884489,52.92683780471162],[-128.31111889915954,52.926887838925],[-128.3112296430349,52.926936115471364],[-128.31134200606772,52.92697987551146],[-128.31146798678907,52.927051396691986],[-128.3115596820325,52.92721216213771],[-128.31172662870003,52.92745441422371],[-128.31212771506424,52.9276825313201],[-128.31253506567313,52.92782027589602],[-128.3126781666508,52.92786343061581],[-128.31269181584784,52.92789175616564],[-128.31274274282785,52.927988295286575],[-128.31281068324577,52.92812374023617],[-128.31286814572152,52.92825490649387],[-128.31291769210367,52.928394632457774],[-128.3129586490798,52.92851379044287],[-128.31297955444154,52.92855542712524],[-128.31321452921526,52.928539596647646],[-128.31381347167638,52.928600695671655],[-128.31432114028843,52.92878298489503],[-128.31454545201848,52.92889685885578],[-128.3147740145517,52.92890021097839],[-128.31506038388713,52.92890410263027],[-128.3152903231992,52.928950030394624],[-128.31546469931365,52.92900265681696],[-128.3157270171927,52.92888986433294],[-128.31618411674344,52.92860506469925],[-128.31674085511705,52.92842144740535],[-128.31723163858317,52.928361896859435],[-128.31771259077317,52.92829300360176],[-128.31817479697384,52.92822223535011],[-128.31836889847247,52.92819205968215],[-128.31840096190493,52.92818190263813],[-128.31847804704972,52.92815963801959],[-128.31863749922036,52.92810940775168],[-128.31881459479658,52.928109281468736],[-128.3189523372784,52.92817383620367],[-128.31901329397553,52.92821468262502],[-128.31907365655985,52.92821068562741],[-128.31918107936613,52.92818053962243],[-128.31928851788288,52.928150958267366],[-128.319402939052,52.92812964334112],[-128.3194953794984,52.928115488507345],[-128.3195880332808,52.92810524894711],[-128.3197661364405,52.928089405218614],[-128.3200040062255,52.92809256362452],[-128.32025169134792,52.92813925301016],[-128.32046471184816,52.92819952323647],[-128.32065056937333,52.92818913102473],[-128.32081494157717,52.92810965071906],[-128.32091662293956,52.92804261824715],[-128.32098335705015,52.92800149649545],[-128.32108175733143,52.927977132453194],[-128.32126485862764,52.92796735867778],[-128.3215058567949,52.92795979687008],[-128.3217442527637,52.92795565834523],[-128.32194979195043,52.9279471180194],[-128.32211183601402,52.9279444763994],[-128.3223049357075,52.92794739248572],[-128.32254106489628,52.92795282241583],[-128.3227267157494,52.927955884836045],[-128.322848668736,52.92795292138701],[-128.3229675147822,52.927944404400726],[-128.32305193296557,52.92793713204571],[-128.32314912673772,52.92792456668507],[-128.32329475371623,52.927911601062995],[-128.32344250229394,52.92790307798956],[-128.3236156344358,52.92788172076647],[-128.32384702972553,52.92786873799632],[-128.3240357257165,52.92787622283217],[-128.3242268650622,52.927809106705574],[-128.32445839929397,52.92766214627749],[-128.32456909448788,52.92758988274557],[-128.32459760291854,52.92761679236703],[-128.3247446328085,52.92768059194388],[-128.32505139179315,52.92771657882557],[-128.32545537828528,52.927774743855565],[-128.32579522730717,52.927904243081315],[-128.3259165869276,52.927975840628456],[-128.3259842254491,52.92788313381151],[-128.3261807147401,52.9276751989804],[-128.32636587002645,52.927532514973734],[-128.32642420534847,52.92750837341733],[-128.32643788918642,52.927503062146705],[-128.32649349979312,52.927480095582666],[-128.32668837803985,52.927396084040005],[-128.32701348612292,52.92725623727676],[-128.3272376006455,52.92717836456202],[-128.3273274452799,52.92718500072959],[-128.32740069360815,52.92721213697816],[-128.32750021677603,52.92722530852718],[-128.3276453036745,52.927202257701495],[-128.32792095659076,52.92712953498099],[-128.32825998868412,52.927039861302994],[-128.32843997036736,52.92699033235031],[-128.32851149244988,52.92696873614767],[-128.32865481189998,52.92693057889003],[-128.3288986108197,52.926957146212],[-128.32910698473128,52.92710270103593],[-128.32919795415668,52.92723207596268],[-128.32924324750286,52.92729339922598],[-128.3292887940105,52.92732501122823],[-128.32933654857507,52.92732911558801],[-128.32935691011383,52.927326470190316],[-128.3293837045854,52.9273220112167],[-128.32944848315708,52.92731344576389],[-128.3294905821474,52.927282341022845],[-128.32951580594323,52.92721512819165],[-128.32958096749442,52.92714544740754],[-128.32967910829998,52.927082405647994],[-128.32979314560922,52.92702016123823],[-128.3299167043206,52.92697847411424],[-128.3301555536064,52.92698271366464],[-128.33061656635567,52.92701002543853],[-128.3311069940092,52.92701264324542],[-128.33144015811865,52.92698586149151],[-128.33166313176952,52.92695565656726],[-128.33182229707472,52.92693456386929],[-128.3318971089571,52.926921869663964],[-128.33200514862367,52.926903467167385],[-128.33223644729043,52.92687197498483],[-128.332447384502,52.92684312828375],[-128.3325447262061,52.926833350538274],[-128.33261448872355,52.9268308464156],[-128.33269083765612,52.92682933283863],[-128.33276253860973,52.92682791136019],[-128.33285309189915,52.92683060071516],[-128.33301760761378,52.926839115562686],[-128.33324488141218,52.926853103736995],[-128.33346013873935,52.92685219858092],[-128.333663797519,52.92680948398449],[-128.33412178447176,52.926662496865426],[-128.3349065945203,52.926407553227314],[-128.33549749606613,52.926219803380874],[-128.33565142691154,52.92617134528677],[-128.33573396287812,52.92614671856258],[-128.3359117626211,52.926091615407124],[-128.33603368149798,52.926054438875134],[-128.33607118647416,52.926041361461344],[-128.33615104322072,52.92603585637679],[-128.33631571142584,52.926030344512384],[-128.33648696597578,52.9260258227926],[-128.336651710482,52.92602143010529],[-128.33689748065433,52.92601598406445],[-128.33721010340707,52.92600585507064],[-128.33745468887548,52.925995946738325],[-128.33761827960868,52.92598765602341],[-128.33774261156796,52.92597733769034],[-128.33779255042015,52.92597017459691],[-128.33782019135666,52.925930384647934],[-128.33787895124456,52.925846250959964],[-128.33801850538885,52.925756592237775],[-128.33822858806656,52.92567842069242],[-128.33832831196986,52.92564448120504],[-128.33831543462531,52.92551188354455],[-128.33847342783685,52.92519818080993],[-128.3388410476677,52.924967761910146],[-128.3390569569996,52.92491077507092],[-128.33909835394834,52.92490098277074],[-128.33919947570843,52.924875427919176],[-128.3393411321462,52.924841218899495],[-128.33941606122298,52.92483075978359],[-128.33948264973213,52.924855222610994],[-128.33961681213387,52.92490524972854],[-128.33968346243938,52.92493083238319],[-128.3398043283367,52.924976073963556],[-128.3400878744338,52.92508143044314],[-128.34031377322955,52.92513860158203],[-128.3404215122008,52.92511460029587],[-128.34047235734803,52.9250900444087],[-128.34051136853125,52.92508758216479],[-128.3406851894729,52.92509590109995],[-128.3410051147203,52.925100182794424],[-128.34127323893142,52.92507747419647],[-128.34144844243363,52.92504315117804],[-128.34155530364822,52.92502028746982],[-128.34158574304323,52.92501463195303],[-128.34160601053745,52.92501030900106],[-128.34170279138763,52.924990444202486],[-128.3418363674981,52.92496199880359],[-128.3418898131962,52.92495084453029],[-128.341958080521,52.924971909070244],[-128.34211439013035,52.92501756400115],[-128.3423446318233,52.925085856518365],[-128.342691571429,52.92517424847611],[-128.34304462064273,52.925238417148776],[-128.34340829738687,52.92539374381478],[-128.34384705931578,52.925677064112485],[-128.34421284464878,52.925904666197965],[-128.3444656981239,52.92607845007953],[-128.3446751238171,52.926242452223015],[-128.34488028641078,52.92639644845602],[-128.34503835966174,52.92655867491982],[-128.3450989607979,52.92676207577959],[-128.34513644743387,52.92696874468573],[-128.3452309759365,52.92711093517209],[-128.34534227272897,52.92720232984346],[-128.3453871088144,52.92723787858543],[-128.34547103963223,52.927306274091386],[-128.34564652604968,52.92747992043412],[-128.34582362687087,52.92763223215648],[-128.34599074111722,52.92768776621776],[-128.3460732639449,52.92769676749855],[-128.34609524227434,52.92770641979748],[-128.3461448941322,52.927727853163546],[-128.34618017105007,52.92774229002791],[-128.34622420528086,52.92776327030336],[-128.34629034195274,52.92779615165663],[-128.34633725500785,52.92781876072387],[-128.34636866795339,52.92783046717877],[-128.34640360518486,52.92783873984481],[-128.34643657163318,52.92784480946498],[-128.3464609318194,52.927830304608975],[-128.346506819935,52.92780023916227],[-128.34652833296764,52.92778467886988],[-128.3465855854595,52.92779194139994],[-128.34685574944763,52.9278229957879],[-128.34740157181446,52.92788329790921],[-128.34800609375705,52.92794299129048],[-128.34839884472802,52.92798280763467],[-128.34852081511963,52.92799719083798],[-128.34868806889858,52.928038134207505],[-128.34901654368204,52.92811230146922],[-128.34928204849712,52.928143443369166],[-128.3494827034316,52.92813102381503],[-128.34965179366222,52.92812092045655],[-128.34999814508043,52.92809663021252],[-128.35059143672515,52.928088143370424],[-128.35100138826172,52.92815226426544],[-128.3511952568299,52.92825322451495],[-128.35134871981055,52.9283314383393],[-128.35142760777876,52.92837582988551],[-128.35143360141586,52.928399819752016],[-128.35144153495517,52.9284254481224],[-128.35147965025888,52.928457200369174],[-128.35152426561453,52.928505640256034],[-128.35162327188397,52.9285597201577],[-128.35177240460342,52.92855953808937],[-128.351876720564,52.92855801822828],[-128.3519167543093,52.92872594967612],[-128.35190980753038,52.92907253002715],[-128.3518685774985,52.92933851520569],[-128.3518407562666,52.92940858376884],[-128.35184503781522,52.929418588721724],[-128.35185366280967,52.92943971855924],[-128.35187483324248,52.92946844584151],[-128.35191827884964,52.929512424280496],[-128.35197385729322,52.92957353384237],[-128.3520273572329,52.92963076531531],[-128.35207414620513,52.92968476739717],[-128.35212218337827,52.92974435035847],[-128.35215191745854,52.92979308746608],[-128.35216032627946,52.92981030199359],[-128.35213312472712,52.92984111729443],[-128.35206881076314,52.92990855181938],[-128.35201963300076,52.92994653336565],[-128.35202494583623,52.929958194966794],[-128.35204190780203,52.93001223712718],[-128.352059926339,52.93010212660987],[-128.35207093966505,52.93018319572317],[-128.35208466652045,52.93027989799158],[-128.35210597652784,52.930412335057554],[-128.35213655694022,52.93056083927575],[-128.35217299803017,52.93069744957294],[-128.35220461102674,52.93079716676067],[-128.35222908387237,52.93090262353554],[-128.35225122525583,52.93103335768395],[-128.35226855900896,52.931144571956324],[-128.35227327381605,52.93121286899182],[-128.35227142692642,52.93126391459159],[-128.35227231959433,52.93131379322917],[-128.35226048484031,52.93136952314762],[-128.35221279082384,52.93148483566602],[-128.3521513786056,52.931638542069955],[-128.35212152935512,52.93172267020171],[-128.35212053361045,52.931738386457496],[-128.3521245107417,52.93175960915709],[-128.35213254272253,52.93180373026937],[-128.35213659806772,52.93182663764137],[-128.35217111118777,52.93184388648452],[-128.3522719884164,52.93189792850482],[-128.35240093606802,52.93198784279612],[-128.35252849142714,52.932103015551206],[-128.35264152478183,52.93219157046405],[-128.35272887136563,52.932236913267346],[-128.35281769410233,52.93227549948667],[-128.3529118713803,52.93230949390963],[-128.3529943953613,52.932335316989395],[-128.35306160120945,52.932353589159376],[-128.35314273690125,52.932371026651346],[-128.3532841198213,52.93239903607572],[-128.35347875907692,52.93242933481343],[-128.3536681618528,52.93244909135145],[-128.35380473626324,52.932457571401095],[-128.35389153100945,52.93245919883628],[-128.3539746266702,52.932444647741306],[-128.3540729563753,52.93241913625987],[-128.354147523434,52.932401948238805],[-128.35424874666563,52.93237805599032],[-128.35442669441977,52.93234254709994],[-128.35469910255293,52.93231243099692],[-128.35503781544918,52.93231798595279],[-128.35527324825787,52.93236091939888],[-128.3553902574072,52.93240342427193],[-128.35554964331652,52.93245349406079],[-128.3557215453671,52.93251059620998],[-128.35580826098928,52.93254473773427],[-128.3558540125778,52.93256288172164],[-128.355954079251,52.93265281434035],[-128.3561713270009,52.932788045997924],[-128.35652946217166,52.93289187080139],[-128.35682492177182,52.932991908989834],[-128.3570209429723,52.933114110207484],[-128.3572171990464,52.93324080005585],[-128.357385248377,52.93334618732732],[-128.35749625454923,52.933414597332074],[-128.35758931227204,52.93347888212611],[-128.35768344892477,52.933545943674055],[-128.35778309527362,52.933611217493635],[-128.35788903609307,52.93367244550834],[-128.35795446923584,52.933709254258474],[-128.35800546097755,52.93373793907516],[-128.3581084608009,52.933796418418986],[-128.3582653946439,52.93388633083544],[-128.35854367590034,52.933995678461784],[-128.35888605814168,52.934084115664554],[-128.3590502342201,52.93411950067598],[-128.35907200174842,52.934125235254164],[-128.3590904948668,52.93413943975781],[-128.35910107976565,52.934162207076994],[-128.3591062956294,52.93432355100602],[-128.35911781408834,52.9346322068962],[-128.35924453507582,52.93488305097223],[-128.35949315003325,52.935062494728335],[-128.35965351373028,52.93516354830975],[-128.35971087958137,52.93518930617904],[-128.35977537792476,52.935226132704514],[-128.35984528543455,52.93527630477008],[-128.35989784064623,52.93531617811933],[-128.35995452447847,52.93536325177519],[-128.3600126748715,52.93541982145397],[-128.36009750751214,52.935487076696745],[-128.36024623401906,52.935613584706836],[-128.36036113370702,52.93575199163253],[-128.36062657531332,52.93591539924841],[-128.36110591197274,52.93611937108688],[-128.36138163757585,52.936215865627894],[-128.36167714605457,52.936315882176736],[-128.3622014734042,52.936523987656784],[-128.36246667580852,52.93664928527054],[-128.3624739792781,52.936663148808066],[-128.36247189329896,52.93667608862211],[-128.36246361504195,52.93671156716838],[-128.3624501787727,52.9367718239616],[-128.36244428297314,52.93679997155986],[-128.36247265693055,52.9368072501959],[-128.36258224114312,52.93683307968535],[-128.36277859230557,52.936876783181575],[-128.36301834356362,52.936929714486915],[-128.363218047585,52.93696662292548],[-128.36336646731024,52.93698663111331],[-128.36350336925415,52.937000699494035],[-128.3635624374138,52.93700679640034],[-128.36359001227876,52.937016333161395],[-128.36364707194622,52.937036489477954],[-128.36367339703844,52.93704044546676],[-128.36367034304658,52.93700238700252],[-128.36367990275184,52.93692259189914],[-128.36382729022364,52.936940933998386],[-128.36409732462636,52.93705211188723],[-128.36425626590403,52.93711058352858],[-128.36435560647783,52.937069346925355],[-128.36451447326138,52.93697534047006],[-128.3646571053949,52.936891194404794],[-128.36490307118828,52.93680440674746],[-128.36536057486782,52.93669879205163],[-128.3657489027661,52.936623716533724],[-128.36586596879792,52.936599495968565],[-128.36587676590372,52.936609369470375],[-128.36599124503135,52.936706296329895],[-128.36621235509404,52.93687675393639],[-128.36635510635335,52.93696245642336],[-128.3663823081089,52.93696527301244],[-128.36654954152237,52.93698825348702],[-128.36688294605094,52.93703200172196],[-128.3670501804953,52.93705499044381],[-128.3673196050931,52.93702097706826],[-128.3679096559983,52.93693510967871],[-128.36831831431144,52.93685681816292],[-128.36856400294138,52.936781796113884],[-128.3689141118469,52.93667328790789],[-128.3692286856736,52.93657950416131],[-128.36961777971374,52.936467957653086],[-128.37037862211858,52.93631866038025],[-128.37136530543978,52.93629037042579],[-128.37207336760417,52.9363983095857],[-128.37229586307222,52.936459418211356],[-128.37236605742265,52.93648098289988],[-128.37257439381855,52.93650537762896],[-128.37281646573916,52.936482558566844],[-128.37296657214847,52.9364324427339],[-128.37303010613255,52.93640144605525],[-128.37307110069892,52.93638436689867],[-128.37312395892027,52.93636255483492],[-128.37324235189237,52.93632877456393],[-128.37346213938622,52.93627445447132],[-128.3737659426283,52.93622179398362],[-128.37419080941268,52.93618351713732],[-128.37457349300118,52.936157857730194],[-128.37481508591364,52.936210163018664],[-128.3750688986968,52.93631435146789],[-128.37531512902103,52.936332926854256],[-128.37552788476773,52.93628602794016],[-128.37574528895294,52.93623903479559],[-128.37596702888257,52.93618634781918],[-128.37614653916992,52.93614516870378],[-128.37627687100314,52.93612515451004],[-128.37642160414688,52.936062253583074],[-128.37652656929868,52.93593848175076],[-128.37655363508216,52.93585553309394],[-128.3765600843753,52.935837464009204],[-128.3765753314237,52.93579343016621],[-128.3766914850665,52.935686249881826],[-128.37697878464124,52.93562214631517],[-128.37742786759895,52.93570052719157],[-128.37786925073323,52.93582447418813],[-128.3780728903049,52.93588145931456],[-128.3781202986735,52.93589564175565],[-128.37813731177457,52.93589978269079],[-128.37820699211704,52.935878749528676],[-128.37847846698864,52.93589849440267],[-128.37880982486206,52.936005592475084],[-128.37894026525944,52.93607079170154],[-128.37900961596884,52.93599370575867],[-128.37914919498724,52.935838968847506],[-128.37930525307752,52.935711919105024],[-128.37966411848743,52.935443993531415],[-128.38012598802726,52.934983939002954],[-128.3803093137496,52.93467806850128],[-128.380304631124,52.93461089235142],[-128.3802971930697,52.93451125767864],[-128.38026847611334,52.93414801968692],[-128.3802368138689,52.93371531896075],[-128.3802212662308,52.93353736553944],[-128.38021682124122,52.933524566337624],[-128.38018100884744,52.933417657216715],[-128.38011274941974,52.9332138615049],[-128.3800809129095,52.93311135665903],[-128.380107909346,52.93309399292944],[-128.380160070823,52.933059858596955],[-128.3801852363668,52.93304309695413],[-128.3801832318313,52.933007259671676],[-128.3801647246833,52.9327598527375],[-128.38012916312653,52.93220726399188],[-128.3800897347152,52.931568987263994],[-128.38005724661818,52.93110491842291],[-128.3800701620909,52.930785676031924],[-128.38014741397518,52.93048363629861],[-128.38025548102442,52.930265626998505],[-128.38036553798761,52.930133343398104],[-128.3804656735652,52.93002368406149],[-128.38053313450015,52.929946634910195],[-128.38058006421562,52.92988570662403],[-128.38062184391111,52.9298159040589],[-128.38066294983616,52.92971752938268],[-128.38070033107329,52.929619230039336],[-128.38071253508843,52.92957077218848],[-128.38071347188222,52.9295208649999],[-128.3807190533563,52.92940414885839],[-128.38073638465448,52.929247388433446],[-128.3807629182565,52.92910502617794],[-128.38078804606582,52.92902098500159],[-128.3807941481918,52.92899676054277],[-128.38079807554905,52.92898378296707],[-128.38082619368197,52.92891987157387],[-128.3809019272204,52.92879052409603],[-128.38102678177825,52.928656253962636],[-128.38116002612642,52.92855545843164],[-128.38125499411245,52.92848682156876],[-128.381343688903,52.9284558757859],[-128.38150263075954,52.92841453872497],[-128.38175276901683,52.92832034605967],[-128.38197431495408,52.92821495469957],[-128.38202895294722,52.92812527491169],[-128.38197839957522,52.92802146287837],[-128.38191942646858,52.92790044735635],[-128.38189292537066,52.92779334990815],[-128.38191448279574,52.927712188088925],[-128.38196254915545,52.92763833793727],[-128.3820349304528,52.92753260229739],[-128.38213045372467,52.92740733791395],[-128.38224370585883,52.927282279572744],[-128.3823556296387,52.92718359140996],[-128.38241382217464,52.9271409292411],[-128.38244907555946,52.92712115525737],[-128.38251606224037,52.927085598202915],[-128.3826223880953,52.92703692042834],[-128.3828061852268,52.92697321048938],[-128.3830178993392,52.926908943825936],[-128.38316769458697,52.92687058805676],[-128.38346494488962,52.92685223408066],[-128.38392786372393,52.926846219563394],[-128.38415513728705,52.9268433009217],[-128.38430415828196,52.926757869448984],[-128.38458284337287,52.926474732155086],[-128.38476643600845,52.92610830210015],[-128.3848203424092,52.925889142665746],[-128.38486292322034,52.92580082682437],[-128.38490349183166,52.925759641707586],[-128.38491879325628,52.925749796959956],[-128.38497027268676,52.92573698547914],[-128.38512843393528,52.92569845748887],[-128.3852903195432,52.925659862746066],[-128.38534458390947,52.92564698566861],[-128.38536758504532,52.92564147849014],[-128.38542660639288,52.92563019120303],[-128.38548734319824,52.925582991026374],[-128.38555566371815,52.92550479984257],[-128.38563076650405,52.925464600530105],[-128.38567661395427,52.925467590612136],[-128.38597680417897,52.92550186639172],[-128.38656028689152,52.92540202372317],[-128.3868982285621,52.92507899268718],[-128.38715983064614,52.924724429763685],[-128.38777537700997,52.924332420289346],[-128.3883611159812,52.923990900943565],[-128.3886337296532,52.923832884437545],[-128.388897270456,52.92369578905096],[-128.3891996452134,52.92355342862939],[-128.38933898158163,52.92349509548051],[-128.3894768496213,52.92344408422092],[-128.3897313518871,52.92334529995701],[-128.38994072406572,52.92317342409559],[-128.39006829878588,52.92290567459521],[-128.39011277936973,52.92271865271024],[-128.39010309885808,52.92267904248354],[-128.39004082599047,52.922681993824256],[-128.38993828288665,52.92258204820958],[-128.38992371868144,52.922355862771454],[-128.38995647449894,52.92220887698595],[-128.3900015202879,52.92214798247803],[-128.39008636923953,52.92208235067601],[-128.3901572808776,52.92203381987895],[-128.39021428349548,52.92198669281156],[-128.39027978926237,52.92190855560518],[-128.39035693995368,52.92178870650354],[-128.3904067902562,52.921680615015156],[-128.39042227123466,52.921591169923055],[-128.39046258679983,52.92146253448856],[-128.39051407844588,52.92135048986982],[-128.39053077863196,52.92131594958198],[-128.39061107095085,52.9213019849083],[-128.390979703378,52.9212277870046],[-128.3915341175812,52.92110943944786],[-128.3920544175517,52.920981135958655],[-128.39249527825237,52.920848839643014],[-128.39271025562167,52.92076037780166],[-128.3927519871345,52.920723650737976],[-128.39276805127722,52.9207109908449],[-128.39284820982968,52.92067796696821],[-128.39301798264475,52.920630787060205],[-128.39326126938616,52.920565293462644],[-128.39353623212736,52.92048290200453],[-128.3937377593458,52.920420499386694],[-128.39383905783092,52.92039881275785],[-128.3939181302401,52.92039608256649],[-128.39399362179483,52.920396232669866],[-128.3940367901517,52.920401516319686],[-128.39407838038562,52.92041188194519],[-128.39412655749902,52.92042323470873],[-128.39415947886323,52.92042873581429],[-128.39418667189386,52.920431546007784],[-128.39422129737474,52.92043420493559],[-128.39423994697208,52.92043438150588],[-128.39427272551785,52.92043707800641],[-128.39439282792932,52.92045145163276],[-128.39470450760868,52.92049164191609],[-128.39504333437554,52.920534077233974],[-128.39520436602683,52.92054705170568],[-128.39529599909383,52.920535660356826],[-128.395455780189,52.9205099830739],[-128.39560254313224,52.92048457065875],[-128.395650446634,52.920474625599475],[-128.39568926839385,52.92048560315489],[-128.3958278837087,52.92054725377891],[-128.39605282217536,52.92061947037581],[-128.39625803480334,52.92062258296365],[-128.39637885798751,52.920599940329936],[-128.3966860738247,52.92051126944319],[-128.39719284637175,52.920341733914114],[-128.3974369612465,52.92025771931795],[-128.3974712083233,52.92025365780203],[-128.39755461194454,52.92024523089042],[-128.39764546282728,52.920236652140574],[-128.3977112177973,52.92022914091854],[-128.39775962520022,52.92022815431543],[-128.39783100534757,52.92023791146557],[-128.3979232128345,52.92025341514131],[-128.39796470898153,52.92026209504316],[-128.3979764879386,52.92025624894823],[-128.39799838818828,52.92024795414462],[-128.39803243790058,52.920223714880045],[-128.39813050755666,52.92016117098352],[-128.39830656091155,52.92007685562248],[-128.3985050815243,52.91999432432286],[-128.39862235281907,52.91990896448076],[-128.39860770283164,52.91983077911073],[-128.3985641875914,52.91978626217421],[-128.39866819598,52.91974657683142],[-128.39891865567762,52.91969270206841],[-128.39909281240477,52.919640938951005],[-128.3992005747879,52.91956866171865],[-128.39933894591104,52.91947726476628],[-128.39945725598398,52.919410387129204],[-128.39957873630922,52.919366424850786],[-128.3997061025098,52.91932794838774],[-128.39982516105414,52.919290762455454],[-128.39994746913592,52.9192450966048],[-128.40004843762597,52.91920099615223],[-128.40013502445157,52.9191498967263],[-128.40023850084123,52.9190844331181],[-128.40033801617145,52.91901457439103],[-128.4004154590414,52.918950206880396],[-128.40048260627833,52.91888492819438],[-128.40055586614267,52.91881223242711],[-128.40063804119376,52.918732636429475],[-128.40067865097302,52.91869256561167],[-128.40071657906947,52.91867104486681],[-128.40082465256415,52.91860437463353],[-128.40096616429858,52.918519073616416],[-128.4011175383232,52.91844367091451],[-128.4012919306576,52.91837956629757],[-128.40150425922624,52.91831075827821],[-128.40171971055673,52.91823123915325],[-128.4019556400974,52.918151301487754],[-128.40229490917653,52.918053000090374],[-128.40261959847624,52.917960592506624],[-128.40282776729802,52.91790084555965],[-128.4029698132755,52.917858136833026],[-128.40320845712975,52.91774394883801],[-128.40355145726613,52.91756315438062],[-128.40376894829762,52.91745387320905],[-128.403880431437,52.91739834234127],[-128.4039640351762,52.917343937215044],[-128.4040075202041,52.91730548368918],[-128.40419988789426,52.91722979512917],[-128.40460209981168,52.91710777621929],[-128.40490844509577,52.91702078690339],[-128.40498543336972,52.91699791002095],[-128.404983819723,52.9169693477638],[-128.4050260483346,52.91687542427821],[-128.40511947129772,52.916764201061184],[-128.40516707351821,52.91668305702699],[-128.40516812845974,52.916619126675265],[-128.40517064486662,52.916564701181706],[-128.40517177956534,52.91650244651972],[-128.40517586792768,52.916409867847754],[-128.4051928560264,52.91628170291072],[-128.4052035944686,52.91614188858543],[-128.40519812145985,52.916045020560865],[-128.40518984150702,52.916013796058934],[-128.4051995982257,52.916005183026925],[-128.40523152571464,52.91597650002695],[-128.4052701403621,52.91593422579482],[-128.4053031333664,52.915858430278014],[-128.40533533553418,52.91576864030948],[-128.4053617044402,52.91570755591085],[-128.40539738135075,52.91564628116638],[-128.4054673101798,52.915547862251394],[-128.4055643257251,52.91543432262542],[-128.40564615146764,52.915348558656014],[-128.405725156202,52.91527910534336],[-128.4058368934359,52.91519497189216],[-128.40593731384382,52.915125089378115],[-128.40604077153492,52.91505962050609],[-128.40620318734224,52.91496548038852],[-128.40641309153386,52.91488718666184],[-128.40664280855606,52.91484605215678],[-128.4068896388497,52.91482754732373],[-128.40709135940386,52.91481893475266],[-128.4071520199715,52.91478742076496],[-128.40713194103984,52.914728963698074],[-128.40719061722328,52.914629661623835],[-128.40730481126738,52.91450679016694],[-128.40737234592478,52.91441571126641],[-128.40740195946532,52.91434615529112],[-128.40741857987737,52.91431049254557],[-128.40744848497238,52.914279051709855],[-128.40752560671132,52.91420907946082],[-128.40761965724408,52.91414212427932],[-128.40772647976837,52.914086675799936],[-128.40785215941636,52.91401851686536],[-128.4079967799172,52.91392305202453],[-128.40812776295854,52.913833481205856],[-128.4082225548871,52.913779399746275],[-128.40830479622457,52.91371773566631],[-128.40835681385303,52.91363257984064],[-128.40836035131886,52.913546730320135],[-128.4083806550489,52.913477364633536],[-128.40847120108555,52.91341440018845],[-128.40857630562627,52.91334497537941],[-128.40867154906326,52.91326622659184],[-128.4087712265512,52.91319971126464],[-128.40882690553343,52.91316269226975],[-128.40884410738633,52.91315393539187],[-128.4089011360783,52.913124172104915],[-128.4090495019617,52.91304545624172],[-128.40923853884314,52.912944595144864],[-128.40942604564316,52.91284938009022],[-128.40956489264536,52.912783747962656],[-128.40965142305888,52.91273207689697],[-128.40972049442257,52.91263535884736],[-128.40979810829091,52.91254127324441],[-128.40996203606838,52.91250707681538],[-128.41014887610672,52.912466248483845],[-128.41024776628532,52.91241881750008],[-128.41027126797465,52.91240600257558],[-128.41028840531476,52.91239611660992],[-128.41036985740894,52.91235352770354],[-128.41052181349616,52.91227248486803],[-128.41071030116603,52.912178368718905],[-128.4108791678833,52.912099786308865],[-128.4109985004266,52.91205137054701],[-128.41108440317,52.91202157934455],[-128.41113011496205,52.912006066525514],[-128.4111464874781,52.91199900362114],[-128.41120311422196,52.911978782169435],[-128.4112972269253,52.911946014982526],[-128.41140400442555,52.91190626975825],[-128.41155164132587,52.91184773831733],[-128.41170013816387,52.911788076804584],[-128.41179587262846,52.91175079109096],[-128.41187518828312,52.91172001313645],[-128.41199830494975,52.911672639921775],[-128.41216714941945,52.91161031809253],[-128.4123624199712,52.911537354116774],[-128.412582829885,52.91144762102457],[-128.41279910374152,52.91135068893234],[-128.4129688380062,52.91127096432552],[-128.41311325552718,52.91122146657742],[-128.41329935408467,52.91118401189051],[-128.41353900300552,52.91115442777123],[-128.41375927033485,52.91114430156594],[-128.4138682824618,52.9111443067936],[-128.41393999704857,52.911061551352276],[-128.41406377497137,52.91091101047923],[-128.41412447889954,52.910831279442775],[-128.41411320337272,52.91079675319328],[-128.41407884625994,52.91073298399513],[-128.41404776473715,52.91069437939223],[-128.41407053433696,52.91066868918328],[-128.4141810918194,52.91062997595064],[-128.41434074639255,52.910586335019374],[-128.4145022376424,52.91047650441575],[-128.41467976970793,52.91032093947352],[-128.41487854999716,52.91021146395044],[-128.41504684186222,52.9101558674029],[-128.415131958894,52.91012889673379],[-128.41520040144516,52.91010338065606],[-128.4152627984272,52.910086402294624],[-128.4153115709843,52.91014146155733],[-128.41536259708516,52.910252535354005],[-128.41547519866884,52.91028273818276],[-128.41566807123962,52.91021711006174],[-128.4158212174886,52.910157347559505],[-128.4158969465214,52.91012888284658],[-128.41592518628173,52.91011764673103],[-128.41596621678184,52.9101016719715],[-128.41605101485948,52.91006909211881],[-128.41609490978107,52.91003791755397],[-128.41607713422806,52.909905422951496],[-128.41603368720848,52.909681506892575],[-128.4160109614515,52.9095765792887],[-128.41606085473464,52.90953631175882],[-128.41616073805142,52.90944119881009],[-128.41627993632542,52.90930868876309],[-128.41640559237584,52.90917492467301],[-128.41652561726767,52.909040719998615],[-128.41662187215923,52.90891428702566],[-128.4166737716906,52.908827442923304],[-128.416686118269,52.90879860264221],[-128.4167202296304,52.90874296201182],[-128.4167952449918,52.908636582126],[-128.41686596407706,52.90853646165262],[-128.4169006471327,52.908490900171735],[-128.41690941349617,52.90848119414785],[-128.41699380954367,52.90844133832646],[-128.41725261439387,52.908322776251936],[-128.41740072965715,52.90812519591417],[-128.41725880516813,52.907922929905304],[-128.41716169195072,52.90780439928821],[-128.41720776583063,52.90771318969533],[-128.41725158240345,52.90761530812368],[-128.4172694843481,52.907503939440865],[-128.41726979284996,52.90736153820829],[-128.41726604271958,52.90727920115516],[-128.4172661542596,52.907264623006135],[-128.417286423054,52.907227771246184],[-128.41731940534504,52.907119456220286],[-128.4173338387692,52.90701264365858],[-128.41731602427694,52.90696143370747],[-128.4172907805605,52.90692719475475],[-128.41728281140925,52.90690157049419],[-128.41730004053045,52.90689336782328],[-128.41732164378303,52.9068800252668],[-128.4173397811588,52.90682191411296],[-128.41737548379655,52.906712421898625],[-128.41742518334047,52.906619460253935],[-128.4174460234243,52.90659267871244],[-128.4174606281851,52.90657107531488],[-128.41748185023206,52.90655102220563],[-128.41752788899998,52.90650859066951],[-128.41759376505667,52.90645453911437],[-128.417665224549,52.906400372734886],[-128.41778222790663,52.90632788658963],[-128.4179456012234,52.90626791057447],[-128.41808797517933,52.90626498326752],[-128.4181981981437,52.906286262528056],[-128.4184178684077,52.90623353290763],[-128.41879138133768,52.90605149694496],[-128.4191577489524,52.90584214124619],[-128.41944236521678,52.9056697891943],[-128.41963056454475,52.90553865399537],[-128.41969425707433,52.90547903996012],[-128.41971092788472,52.90544450415549],[-128.41974639960424,52.90536360241697],[-128.41980514414573,52.90524971530979],[-128.41991320070986,52.90515106669985],[-128.4200713012479,52.905064277718274],[-128.42021175996757,52.90499467888987],[-128.42026169228498,52.90497178293995],[-128.42026776851696,52.90494755607944],[-128.42027362169705,52.904919405043415],[-128.42028542326136,52.904864778358736],[-128.42031920849425,52.90480353698451],[-128.42036147188108,52.90474380742372],[-128.4204182735888,52.90466134518303],[-128.42049055246395,52.904556148849906],[-128.42055422517848,52.90446345408903],[-128.4205937524494,52.90440490196002],[-128.42060178476035,52.9043823121556],[-128.4205930349948,52.90435950268968],[-128.42060318331727,52.90432510096656],[-128.42064426988483,52.90429398220972],[-128.42067870751882,52.904277011111546],[-128.420699926908,52.90425695739343],[-128.42071887109594,52.9042296580659],[-128.42072567885708,52.90421830569284],[-128.42074109180476,52.90419444272148],[-128.42080726120298,52.904112908624796],[-128.4209389487705,52.903987428157464],[-128.4211106409778,52.90386111492995],[-128.42124966103097,52.903750059013845],[-128.42131323562384,52.90365568840551],[-128.4213514060454,52.903540537570585],[-128.42139086419465,52.90341526917368],[-128.42140920228772,52.90336107279173],[-128.42144752045277,52.90334682907952],[-128.42155417114435,52.90330539008325],[-128.42165455522584,52.90326856493386],[-128.4217259901625,52.90324691179405],[-128.42181414245204,52.90322434922706],[-128.42189652090215,52.90319855080002],[-128.421973092892,52.90316894312942],[-128.4220822082675,52.90312184674164],[-128.42218842857244,52.90307312355555],[-128.42223317117165,52.90304080763924],[-128.4222482142774,52.90297770915612],[-128.42227209904144,52.902889761581925],[-128.42229040457073,52.902851262845324],[-128.42243136617725,52.90283995442021],[-128.42268883425922,52.90273149753369],[-128.42281694330893,52.90254329075445],[-128.42281742897654,52.9024535826639],[-128.42281874865571,52.90244402953707],[-128.42269868743074,52.902429684761],[-128.42245867819636,52.90241948825616],[-128.4223426536882,52.90236133215327],[-128.4223642296299,52.90223306794098],[-128.42242407333165,52.90208943945273],[-128.42250583806174,52.901971147523085],[-128.42256988578598,52.901901433251986],[-128.42261045888938,52.901861354451064],[-128.42262316244322,52.901789899339704],[-128.4226136417188,52.9016718016084],[-128.42262078897917,52.901535429816605],[-128.4226530663305,52.90139853130052],[-128.42268472461566,52.901267260618155],[-128.42271539937542,52.90116796065917],[-128.42273233367243,52.901105379176336],[-128.42274836317168,52.901059643704755],[-128.42275884191503,52.90103083203094],[-128.4227778464966,52.90098839893566],[-128.4228083939869,52.90090311240348],[-128.4228454305291,52.90081713602417],[-128.4229252538507,52.90073027800287],[-128.42302401912133,52.900632382421946],[-128.42309720912996,52.900559671805695],[-128.42319217384977,52.90047698646267],[-128.4233208539038,52.900364454282574],[-128.42346800019908,52.900249298894856],[-128.42359965537028,52.90015633102396],[-128.4236645122607,52.900101175273804],[-128.42368111350163,52.90006550991765],[-128.42369203661266,52.90002828423864],[-128.42369974777014,52.900000094588826],[-128.42370225859605,52.89997873949802],[-128.42370763197138,52.8999584466315],[-128.42371589765688,52.89990726485303],[-128.4237251439176,52.8998078410688],[-128.42373165558425,52.899709603842204],[-128.42374222208406,52.899616880200554],[-128.42376506863638,52.89952727607991],[-128.42378483018499,52.89944893885673],[-128.42379965789098,52.89933314664898],[-128.42379091324787,52.89921223419189],[-128.4237515410522,52.89914240835858],[-128.42368785155844,52.89908710360137],[-128.42362193567962,52.89902567345747],[-128.42356758111703,52.89895447005141],[-128.4234885388331,52.89884229895885],[-128.42337210215453,52.89871127252654],[-128.42326603963033,52.89861534640953],[-128.423203274538,52.89856002234985],[-128.42316279353318,52.89851992725872],[-128.42309279016453,52.89845185369261],[-128.4229984667782,52.898349523151914],[-128.42294194896317,52.89825650456248],[-128.42290704682236,52.898166969314595],[-128.4228644277149,52.8980400274086],[-128.4228457625638,52.89792492541304],[-128.42284287200948,52.89779211481912],[-128.4228428415648,52.89761159751227],[-128.4228414663133,52.89752192749096],[-128.4228407976047,52.897510172845216],[-128.4228410656428,52.897482136583264],[-128.4228410467276,52.8974490562159],[-128.42285016817885,52.89736365480706],[-128.42288001938834,52.89715169236203],[-128.42288847355553,52.89689082771247],[-128.42284553201358,52.89669269874525],[-128.42280946462276,52.896533662183],[-128.422811443055,52.89642094226052],[-128.42281600490915,52.896386646248196],[-128.42282099600223,52.89635963387178],[-128.4228313128395,52.89629551114719],[-128.42282491557057,52.8962485512966],[-128.42277254187405,52.89622832715034],[-128.42272214150384,52.89621030478055],[-128.42270006285273,52.896165910509765],[-128.4226137306815,52.89608920327424],[-128.4224756165161,52.896019169043264],[-128.42242119100183,52.89597936997539],[-128.42237171533537,52.895993844090064],[-128.42217429928112,52.895962031889354],[-128.42176870309788,52.89592217405834],[-128.42142958847472,52.895953825624275],[-128.42114807556678,52.8959663503809],[-128.42079147653428,52.89585427765504],[-128.42053931838626,52.89571146689311],[-128.42033498633202,52.89565624821847],[-128.42016647084122,52.895624958992386],[-128.42012394391048,52.895597803635525],[-128.41996478146228,52.895681808221724],[-128.41936798020808,52.895801172219116],[-128.4186274560797,52.89571886105012],[-128.41827145539258,52.89553500991878],[-128.41797708223078,52.89545248723226],[-128.41751273088823,52.895411024635436],[-128.41720485546904,52.89535287960489],[-128.41702856893983,52.89528306783668],[-128.41690463548258,52.89523291784971],[-128.41677217743344,52.89518013541039],[-128.4165167894433,52.8950951304331],[-128.41627385176622,52.895032284631036],[-128.41608032668685,52.894986927671695],[-128.41586194754038,52.89489723200142],[-128.4157058973279,52.89479000198762],[-128.41563430702752,52.89471017942777],[-128.41556820236718,52.89464482904873],[-128.41549217374904,52.89458527969039],[-128.4154048547241,52.89452372875339],[-128.41526502560671,52.894439701738236],[-128.4150734963497,52.89434721062654],[-128.41492092782389,52.894284757197816],[-128.41481368230504,52.8942331410832],[-128.414669052605,52.89414641340532],[-128.41453822694925,52.89405659450879],[-128.4144876276569,52.89401839070189],[-128.41447182206602,52.894002461982716],[-128.41445501472055,52.8939854236367],[-128.41443222789616,52.893961224591216],[-128.41438182189734,52.8939101271402],[-128.41431840846394,52.89384303449834],[-128.41424801403983,52.89376767148586],[-128.41416655415827,52.89367796866518],[-128.41410048706962,52.893596910571695],[-128.41404542565044,52.893512827877025],[-128.41399604182374,52.89343031490606],[-128.41397515046648,52.89339037966925],[-128.41397549006683,52.89334720094779],[-128.4139768193728,52.89327205139972],[-128.41397720584513,52.893229436811325],[-128.41397786051672,52.89320812004219],[-128.41397882101936,52.893159331397804],[-128.4139664592567,52.893072685579575],[-128.4139331749632,52.89294554901739],[-128.41388368742153,52.892812017760996],[-128.4138521171963,52.89271511912763],[-128.41382727132014,52.89263826452523],[-128.413805065465,52.8925585571266],[-128.41377640312055,52.89248009454083],[-128.41372039183258,52.89237921275789],[-128.41366235003449,52.89224249333135],[-128.41362724111633,52.892099696912986],[-128.41361203642347,52.89199573483271],[-128.4136087365087,52.89193749870352],[-128.413604914759,52.89185348503084],[-128.41359909673668,52.89171793582416],[-128.41361888233746,52.89157401235263],[-128.41370534213945,52.89145619456147],[-128.41380818838195,52.89139745640255],[-128.41385040982237,52.89138649843405],[-128.41387348655354,52.89136640758471],[-128.4138169396506,52.89123974853322],[-128.41362689315707,52.89100874852513],[-128.41350679631145,52.89081220047907],[-128.41347925807247,52.89067149095612],[-128.41343367187844,52.890524424558635],[-128.4133809471587,52.890366292390134],[-128.41334065734495,52.89021406719419],[-128.41331989300193,52.8900777034581],[-128.41331086579294,52.88993493648353],[-128.41329883304365,52.889788302407545],[-128.4132720544647,52.88967728528482],[-128.41324903733963,52.88961609014908],[-128.41322870862695,52.889553162459734],[-128.41320626830202,52.889469530874216],[-128.41319157004514,52.88939078140312],[-128.41318697054106,52.88930959113074],[-128.41318076387014,52.88923290979686],[-128.41316315523395,52.88916880501903],[-128.41313652653258,52.88912617980112],[-128.4131141237108,52.88910869999386],[-128.41313257245932,52.88908926037388],[-128.4131929727124,52.88903756512518],[-128.41323259070356,52.88898069032034],[-128.41327834689642,52.88891696210507],[-128.4133833252604,52.8888138962218],[-128.41349153124887,52.888701794116834],[-128.41356247882857,52.888606154101105],[-128.41362658989098,52.88850504824451],[-128.41368344695027,52.8884237173107],[-128.4137290773325,52.88834148665861],[-128.41376932306895,52.88821340504108],[-128.41378878917382,52.888063881585424],[-128.4137958693015,52.88790956241627],[-128.41379824003516,52.887770481042736],[-128.4137989377527,52.8876678785202],[-128.41382084407286,52.88757773016898],[-128.41388389134906,52.88744132262312],[-128.413906710959,52.88730182128299],[-128.41384666580976,52.887211678391225],[-128.41384530982302,52.88712200768444],[-128.41389494735427,52.88702848226041],[-128.41388230222634,52.8869368009016],[-128.41388815144316,52.88682624390892],[-128.41393891653215,52.886736058982024],[-128.41397759377543,52.88667920309899],[-128.4140105463745,52.88661966616636],[-128.41405658921266,52.88652845691203],[-128.4141113142572,52.88642586596625],[-128.41417368462805,52.886343291182676],[-128.41426254626018,52.88625176750453],[-128.41435221817042,52.88615798463774],[-128.41443458775353,52.88609967500398],[-128.41454306241752,52.88605820370804],[-128.41463256743893,52.886027213078954],[-128.41481722346856,52.885949974484305],[-128.4151216269182,52.88581646505641],[-128.41527163387067,52.88575227117358],[-128.41522513053377,52.88570389241044],[-128.41511543248362,52.885592345607456],[-128.41500954816772,52.88549865112087],[-128.41493132744566,52.885432984148785],[-128.41487597024562,52.885376382385495],[-128.41483953292487,52.88532498910698],[-128.414810219916,52.88526785225836],[-128.41478181454667,52.885193869279355],[-128.41475671745943,52.88511253479385],[-128.41473866130113,52.88505684403596],[-128.4147132890696,52.88501980841307],[-128.41467616858495,52.88497291405275],[-128.41464596482996,52.88491635159056],[-128.41463415847406,52.88485604749134],[-128.41464413344275,52.88480202334993],[-128.41467371453777,52.88473246426581],[-128.4146939544988,52.884580116769705],[-128.41472510687632,52.88439055331205],[-128.41480221586767,52.88427236082051],[-128.41486542433802,52.884188090881736],[-128.41488766062758,52.88410409757884],[-128.4149095948081,52.88401451326905],[-128.41494609708087,52.88388649868648],[-128.41501145957287,52.88372538426914],[-128.41509909914555,52.88353016603868],[-128.41514808488776,52.88335929686407],[-128.41515742397812,52.88329407332069],[-128.4151907675243,52.88325806478348],[-128.41525292402147,52.88318839221303],[-128.41526960867878,52.883121340339805],[-128.41521762916358,52.88300916365694],[-128.4152707887784,52.88291220117112],[-128.41547802868405,52.882937659671995],[-128.41562744592895,52.88294523621304],[-128.41570768000443,52.88284940340776],[-128.41581357716356,52.88273006221483],[-128.4158970206387,52.88264144683585],[-128.41595949262026,52.8825773735195],[-128.41602554109465,52.882510428040966],[-128.41609437164712,52.8824434163598],[-128.4161804702469,52.882352512657796],[-128.41628312066715,52.882241642485404],[-128.4163153855949,52.88213726030269],[-128.41632030556752,52.882043540370006],[-128.4164223800043,52.881955106612054],[-128.41652804854428,52.88184809396024],[-128.41656889827985,52.881747463973404],[-128.41659920616502,52.88167452550899],[-128.4166501345894,52.88157088067093],[-128.41671771172912,52.88143270021333],[-128.41678334816913,52.88129288223024],[-128.41682996885132,52.88117923471006],[-128.41685116429304,52.881126100692406],[-128.41686202498636,52.881087755276795],[-128.4168864185149,52.880992513550055],[-128.41690388156812,52.880857040791014],[-128.41689959698778,52.88071585290806],[-128.41686615620708,52.88056965838294],[-128.41683172834234,52.880438625338606],[-128.4168171552616,52.880345862234996],[-128.41681687439646,52.88025896755629],[-128.41686279387227,52.880149263163204],[-128.41698998242174,52.88004405877108],[-128.41716324180283,52.87994686765637],[-128.41727787011786,52.87985032603809],[-128.41724611013055,52.879766330205626],[-128.4171437795548,52.879702281726125],[-128.41701892066712,52.8796678486777],[-128.4168969241662,52.87961821542792],[-128.41685484740657,52.879549563894024],[-128.416860604317,52.879519737163356],[-128.41669883125883,52.87949110397799],[-128.416176856599,52.87936616617571],[-128.41554778686304,52.87920811276516],[-128.41491807550645,52.87915377929501],[-128.41421942791914,52.879147950563734],[-128.41378462264382,52.879082314658675],[-128.41364597565203,52.87900163441812],[-128.41356008932007,52.87894845759607],[-128.41347776189141,52.87890866247959],[-128.41341857930723,52.87888296811512],[-128.41336289452636,52.87885327307984],[-128.41320809088126,52.87881608726946],[-128.41295279096002,52.878730508931945],[-128.41272241464677,52.87857546678684],[-128.4125732979924,52.87847425289095],[-128.41245591778423,52.87844021773031],[-128.41231483719875,52.87839882923985],[-128.41220170293522,52.878357423123376],[-128.4121350819644,52.878331880808226],[-128.41207925411337,52.87831620807357],[-128.41198199299657,52.878324931641004],[-128.41184679844542,52.87835461586887],[-128.41177668966694,52.87836614575157],[-128.41176743971002,52.87835063825578],[-128.41173799031174,52.87830751435099],[-128.41166349438328,52.878224950292214],[-128.41156054204168,52.87814969752888],[-128.4114905539298,52.8781141328196],[-128.41141040692153,52.87807989775196],[-128.4112351982844,52.87802743077835],[-128.4109903606633,52.87797863447502],[-128.41073972168473,52.87792602786043],[-128.4105389540748,52.877866235500825],[-128.41040385578182,52.87781518707992],[-128.41029867576006,52.877766332492584],[-128.41018653474833,52.87770976294604],[-128.41002645368425,52.877628396934945],[-128.40987827761802,52.87756023246351],[-128.40982871550898,52.8775399452614],[-128.40979069315713,52.877526148837084],[-128.4097450096176,52.87750858964731],[-128.40972413826654,52.8775017250803],[-128.40969275990307,52.87749003486747],[-128.40961956121163,52.87746350480516],[-128.40952305742522,52.87743633128072],[-128.40940189527157,52.877417511872835],[-128.4093022417696,52.877400493872415],[-128.4092159564663,52.877389373025146],[-128.40904966181284,52.877379327122725],[-128.40884054914477,52.87733652154747],[-128.40868360246034,52.87726125183845],[-128.4085688453209,52.877191279588914],[-128.4084759558462,52.87714553524312],[-128.40842680609404,52.87713252256665],[-128.4083897340688,52.87713552476691],[-128.40816349175358,52.877135676021815],[-128.40775367386692,52.87713286061713],[-128.4075193425509,52.87712140786951],[-128.40742706694132,52.877103115928634],[-128.40724192628937,52.877072706217234],[-128.40699259442445,52.87704305482302],[-128.4067074445512,52.877021985070805],[-128.40643318664823,52.876996206662966],[-128.40621055306397,52.876944703473505],[-128.40601751509365,52.876856714446085],[-128.40583430414614,52.876761240397336],[-128.4056372109691,52.87668398103061],[-128.40541933228297,52.87663406539028],[-128.40523098101352,52.87661268816668],[-128.40506721422548,52.876614362419026],[-128.40485783401954,52.87663265816638],[-128.4046127679227,52.87664552141545],[-128.40439382499443,52.876642717513946],[-128.40424332971273,52.87664859505489],[-128.4041316189199,52.87666545643192],[-128.40402030861483,52.87667278350469],[-128.40386866559345,52.876641683322724],[-128.40362538840432,52.87658723388753],[-128.40339872850373,52.87656328253372],[-128.40324240097294,52.87656479313688],[-128.4030607363811,52.876562901795594],[-128.40282801962553,52.876579993735135],[-128.4025149039695,52.87662451722644],[-128.40217945900554,52.876652677798674],[-128.40197281206085,52.876669800246006],[-128.4018898415317,52.8766843857213],[-128.40183982055672,52.87667251834806],[-128.40176195399127,52.87664551380743],[-128.40163138112925,52.87664145484923],[-128.40149989515973,52.876654232894886],[-128.40141767305198,52.87666544801281],[-128.40131359011158,52.876685514517895],[-128.40118462623968,52.87671000912704],[-128.40099761881376,52.87674522441755],[-128.40073231410747,52.8767954936806],[-128.40060331827343,52.8768194321585],[-128.40054718007323,52.87676508238033],[-128.40043210424233,52.876655865855994],[-128.4003566415489,52.876589012050296],[-128.4003126017553,52.87656748691451],[-128.40025560570132,52.876547347616345],[-128.40019018445142,52.87652625913278],[-128.4001208393169,52.87650188705554],[-128.40005693142191,52.876474605301695],[-128.39997961039026,52.87644086107487],[-128.3998549241278,52.8763923957687],[-128.39970499534897,52.87634219434508],[-128.3995586610981,52.87628968584794],[-128.39942455796006,52.87622290756688],[-128.39931100844606,52.87615738687388],[-128.3991621615362,52.87610997025712],[-128.3990233859374,52.87607580264328],[-128.39896595817567,52.87606464140575],[-128.39894835968124,52.87606612188164],[-128.3989305889323,52.87606480727681],[-128.39880136531357,52.876034929346815],[-128.39855437828078,52.87598054532589],[-128.39842737903885,52.875858115511186],[-128.39844776818543,52.87567438250645],[-128.39843942366912,52.87557588442178],[-128.3983357982171,52.87557070679546],[-128.3981716882456,52.87556620726482],[-128.39805149068204,52.875547921764785],[-128.39793035627275,52.87549657444576],[-128.39776627949772,52.87542647715344],[-128.39764960417105,52.875421009062826],[-128.39749278357058,52.87546345159092],[-128.39727627410699,52.87547067600084],[-128.39715066251767,52.87547211709413],[-128.3971030619449,52.87548654282605],[-128.397077307023,52.875492109222904],[-128.39702531779727,52.875478037533796],[-128.39688394651728,52.87543102176105],[-128.39668201327825,52.87534992666851],[-128.3964479206705,52.87524314260986],[-128.39624243618414,52.87514866443606],[-128.39616791779784,52.875114860636984],[-128.39610484044252,52.87511895433308],[-128.3959663829228,52.87512345469517],[-128.39585126082684,52.875129165479194],[-128.39566088984895,52.87518743065169],[-128.39539422943872,52.87527975727604],[-128.39523346038968,52.87530153896764],[-128.39510291323626,52.8751489048427],[-128.3949692066585,52.87490664551104],[-128.39491991529474,52.87479159822987],[-128.3949154720175,52.87477879911717],[-128.39490897957037,52.87476266910447],[-128.39490142438729,52.87474432725834],[-128.39488780053188,52.8747171302741],[-128.3948649193085,52.87467443368964],[-128.3948301550553,52.874619080629024],[-128.39478930788198,52.87455488167563],[-128.39474534895874,52.87448513996739],[-128.3947227821871,52.87444803412939],[-128.39471802431754,52.87442963526669],[-128.39467987706345,52.874396775711084],[-128.39463210120013,52.87435850619688],[-128.39461362217497,52.87434430675201],[-128.39449053776312,52.874324390193784],[-128.39422051080598,52.874306902289476],[-128.39373325341387,52.87418452344134],[-128.39306625465557,52.873928456855765],[-128.39266160023425,52.873751693707504],[-128.39256526675044,52.87371048326619],[-128.39251131194393,52.87369476332933],[-128.3924885542532,52.873687378055855],[-128.39250009543568,52.87366079866609],[-128.39254334590348,52.87358535182224],[-128.39263780084755,52.87347691183089],[-128.3927504129321,52.87336025342384],[-128.39277734453,52.87327617787316],[-128.39270951667157,52.87322878096766],[-128.39261480938842,52.87318361764343],[-128.39252142202395,52.87311208294541],[-128.3924217058714,52.8729941414828],[-128.39234369931276,52.872881364115216],[-128.39228132609685,52.87283161346375],[-128.3920963036791,52.87278604588726],[-128.39182918057634,52.872720845781465],[-128.3917149446262,52.872692341572915],[-128.39170457731643,52.872673491669005],[-128.39166450176182,52.872606468419846],[-128.39168755263205,52.87250284608253],[-128.39183152371402,52.87241414608412],[-128.3920362370006,52.87236288739491],[-128.39224029945294,52.87233294497038],[-128.39232903213244,52.87232160357269],[-128.39236784087427,52.8723331470076],[-128.3924799175639,52.872356097355784],[-128.3926069138997,52.87236303761815],[-128.3927488560091,52.87233772281783],[-128.39300831162737,52.87228310524665],[-128.39329860219442,52.872230666637925],[-128.3934535615601,52.87220508584327],[-128.39354669879873,52.87218916887372],[-128.39366932561632,52.872168175166706],[-128.39380962665354,52.87214681231121],[-128.39391969040864,52.872133922886505],[-128.39399943817503,52.8721283694116],[-128.394076452314,52.872124001778076],[-128.39430017912218,52.872112716026066],[-128.39473807386702,52.872102671595506],[-128.39518894223784,52.87214113021163],[-128.39553266219642,52.87221093251669],[-128.3956967250822,52.87224795217755],[-128.39584395852467,52.872250556533096],[-128.39621528594503,52.87218243848162],[-128.39660302877,52.87205847890652],[-128.396742125565,52.87196594324108],[-128.39673664435662,52.87190158860387],[-128.39673299863458,52.87185344992662],[-128.39673305547186,52.87180467062708],[-128.39674298893573,52.87171645567326],[-128.39676808448908,52.87159989164402],[-128.39679391204336,52.871513029845794],[-128.3968019195259,52.871489885709224],[-128.39680919305144,52.87147011127368],[-128.3968343575351,52.87140456642361],[-128.3968667959184,52.87131925608407],[-128.3968916047295,52.871263809572305],[-128.39690234558364,52.87123947946372],[-128.39692097538472,52.87120658366197],[-128.39698140286885,52.871122379702506],[-128.3970610030539,52.87103162228436],[-128.39710260227318,52.87099320783489],[-128.39713506846257,52.8709746057704],[-128.39720432750715,52.87093170717242],[-128.39730944905068,52.87084771243353],[-128.3973922782095,52.870747918996855],[-128.39742379985856,52.87067943668897],[-128.3974255121792,52.870627268826084],[-128.39745797874147,52.8705755857429],[-128.39753797638974,52.87054143769262],[-128.39758127639072,52.87053327065107],[-128.39763470226168,52.87052321063993],[-128.3977340205531,52.87050155793104],[-128.397787383336,52.87049037790116],[-128.3978517467109,52.87047617475876],[-128.3980680963238,52.87048297193308],[-128.39833900552463,52.87053293942435],[-128.39870000701166,52.870513236948966],[-128.3991575425097,52.87030655848484],[-128.39932717674498,52.87004577560953],[-128.39930122682446,52.869931939404616],[-128.399378794686,52.86988774852137],[-128.39950304960013,52.869796633502105],[-128.39957434366556,52.86970715603288],[-128.3995855953384,52.86967553163182],[-128.39961471080946,52.869679987086],[-128.3997566485212,52.8696714821528],[-128.40009934438248,52.86965719014758],[-128.4007747338441,52.869715716825496],[-128.40151540291427,52.869809341209525],[-128.4018117833405,52.86979935453254],[-128.4018118302024,52.86968443120012],[-128.4018102090647,52.869490490204576],[-128.4018069564286,52.869284248917396],[-128.4018084205763,52.86916143894086],[-128.4018091489223,52.869091907291384],[-128.40180908372776,52.869057715346194],[-128.40183521233885,52.86905885861846],[-128.40206832347363,52.86906587077774],[-128.4025172409907,52.86907014743095],[-128.4029878203089,52.86916143598622],[-128.4033883159795,52.8693634725348],[-128.40368185314276,52.86946791456159],[-128.40391691670484,52.86944347950295],[-128.40408970784458,52.869420883203645],[-128.40429098078457,52.86944087604838],[-128.4046455545872,52.86935681082601],[-128.40498442720857,52.86902752333273],[-128.40511124032795,52.868701445396],[-128.4051155195053,52.86859596122482],[-128.40510570527576,52.868570373590835],[-128.40504209243272,52.86844946050196],[-128.40495503815148,52.86827577275199],[-128.4049489501212,52.86818451178508],[-128.4050207982285,52.86815445400996],[-128.40512344712474,52.86812599921852],[-128.40524689870247,52.86810328979615],[-128.40538393579695,52.86809039328579],[-128.4055749999932,52.86806181436362],[-128.40573611063797,52.868013666091294],[-128.40583585630637,52.867966774109554],[-128.40593814560066,52.867915344987374],[-128.4060050833966,52.867880902164565],[-128.40605749234572,52.86785291916341],[-128.40614491015782,52.86778553189743],[-128.4062228461361,52.86769872149936],[-128.4064602725471,52.867600795865656],[-128.40693584744307,52.867483980330576],[-128.40727878019896,52.867408558896],[-128.4073971241495,52.867278868656136],[-128.4075163997918,52.86700116412663],[-128.4076561862052,52.86674041387038],[-128.40781067081085,52.86654215177112],[-128.40808888579866,52.86637554695238],[-128.40838660661487,52.86630721998561],[-128.40850179788882,52.86630317233443],[-128.40858960408713,52.866308664892216],[-128.40884369311254,52.866324759376496],[-128.4091280678944,52.86630042366968],[-128.4092859156383,52.866227669793496],[-128.40938885314938,52.866154920507704],[-128.4095692984603,52.86608675289583],[-128.4097671554566,52.866046815124676],[-128.4098734792403,52.866033978029506],[-128.40989922677815,52.866028408796346],[-128.41010994072377,52.86598539912176],[-128.41052949186582,52.86589886994717],[-128.4109528510075,52.86583019204858],[-128.41139986013803,52.8657520661996],[-128.41169951526913,52.86565228706151],[-128.41185432102913,52.865575107025855],[-128.41197594870602,52.86547114185775],[-128.41199952772112,52.86531199696682],[-128.41201865124773,52.86518938851515],[-128.41211001993986,52.865077074393504],[-128.4122500429028,52.86490320493154],[-128.41230545569422,52.864731081529555],[-128.41222754137857,52.8646042940398],[-128.41207830601437,52.86446720219106],[-128.41196153088217,52.864196580476666],[-128.41198283229298,52.86388219395251],[-128.41203255006346,52.86374101730282],[-128.4120418682029,52.863708309818655],[-128.41208378505675,52.86364297300643],[-128.41213679791335,52.86356003350149],[-128.4121322980185,52.863480517312034],[-128.41205760867874,52.86337777476257],[-128.41199246981603,52.8632793210797],[-128.41198816388982,52.86318691103005],[-128.4119960457804,52.86309592813712],[-128.41199735617855,52.86305329381526],[-128.41200484328286,52.863037442628276],[-128.4120136992546,52.863013149492204],[-128.41202916555886,52.86299040699432],[-128.41204293122885,52.86297050701464],[-128.41206422893444,52.862952129776644],[-128.41211422957977,52.862914658134834],[-128.41220490315516,52.86283935913391],[-128.41228478674972,52.86275418140448],[-128.41232762792217,52.8626725718441],[-128.41235150031625,52.86255155193523],[-128.41237039949752,52.862425018918564],[-128.412380808384,52.862329499051796],[-128.41238638342813,52.86224697728274],[-128.41238772824218,52.86218864473684],[-128.41237680506325,52.86212720036052],[-128.41240428195755,52.86202067363785],[-128.4125025032307,52.8619306430881],[-128.41257260580508,52.86188659600114],[-128.4126004027202,52.86186808516745],[-128.41264327874165,52.86185262839628],[-128.41271820865964,52.861828099450506],[-128.41277588040455,52.86181121751022],[-128.41279884356234,52.86180570475259],[-128.4128515890055,52.861783873845],[-128.41297632748436,52.86171852184654],[-128.41313557024614,52.861621631074435],[-128.41326054997006,52.86152767744322],[-128.41331164676544,52.86147673665865],[-128.41331841771606,52.86146481995737],[-128.4133439892188,52.86143962714857],[-128.41337778448232,52.86136268789915],[-128.4134133387056,52.86120161875478],[-128.41344054767694,52.86105753977475],[-128.41349260352027,52.86095780031155],[-128.41357562924583,52.86086247464191],[-128.41361424912645,52.860821316165264],[-128.41358668039211,52.86081122621822],[-128.4135613321466,52.86070859197656],[-128.41358165421343,52.86049233822338],[-128.4135850182174,52.86028875763738],[-128.41354553484854,52.860133714995705],[-128.41350503399707,52.85999383460736],[-128.41347590467572,52.859890156740384],[-128.41344912406578,52.85981165426998],[-128.41340815961482,52.85969645087945],[-128.41336467354108,52.859536440262424],[-128.41333663468356,52.85936994987574],[-128.41332156070038,52.85921889063778],[-128.4133053085424,52.859079633214606],[-128.4132881619153,52.858974022728866],[-128.41327961863863,52.8589383181936],[-128.41327005534026,52.858917210881515],[-128.4132407625862,52.85886007269332],[-128.41320405342427,52.85877056158981],[-128.4131691432359,52.85866363860176],[-128.41313418469784,52.85855559534141],[-128.41309781673974,52.858422913481675],[-128.4130525693711,52.85826462521524],[-128.41297308033506,52.85810984792024],[-128.41289666875647,52.857993120950496],[-128.41289840795446,52.85794150763573],[-128.41291112538613,52.85790312383803],[-128.4128415705162,52.85784176244357],[-128.4127761958414,52.85777191024305],[-128.41275210095193,52.85770792867426],[-128.41273235865452,52.85765507918921],[-128.41271368291302,52.85758818765689],[-128.41266045262446,52.85748612577939],[-128.4125367743775,52.857356358216855],[-128.4124081683432,52.85723790425424],[-128.41233693559911,52.85714685936238],[-128.412297174458,52.857085450901955],[-128.4122339594188,52.85703741399154],[-128.41214517926647,52.85698148815629],[-128.41205069598,52.85692344583238],[-128.41195138217702,52.85686212989644],[-128.41189449185416,52.856810599185984],[-128.41177702547893,52.85670817847242],[-128.41156849201363,52.85655884836561],[-128.41146613037066,52.856493109601594],[-128.4114645151796,52.8564645553137],[-128.41146098940345,52.85636932125255],[-128.41146498492506,52.85624253770948],[-128.4114800492999,52.85614692198401],[-128.4114935809405,52.856090016444256],[-128.41152707341664,52.85600747740157],[-128.41157720521517,52.85590665668224],[-128.41159906010463,52.85586528674257],[-128.41147518422915,52.85581400984196],[-128.41122563772058,52.85571261375757],[-128.41100928788558,52.8556716395488],[-128.41075895159227,52.855638655116316],[-128.4103937804284,52.85548356771512],[-128.40998885497956,52.855201472122616],[-128.40971154700986,52.85493806093866],[-128.40962842562615,52.854768214557645],[-128.40959353838718,52.854611954905515],[-128.40947160615974,52.854496168566726],[-128.40935338792107,52.85439655960047],[-128.4092670574733,52.85423574880412],[-128.4090267488067,52.85396821336761],[-128.40874805050206,52.853663342154306],[-128.40864347824464,52.85352533005778],[-128.4086287697841,52.85351217664907],[-128.40861798381948,52.853502306559356],[-128.4085934114361,52.85347926414765],[-128.40856713051312,52.853359829021535],[-128.4085527996841,52.85310615461143],[-128.40842039180689,52.852854345296436],[-128.40814182921972,52.85268346412619],[-128.40784208106504,52.85254945288259],[-128.40722831484808,52.852424119769076],[-128.4064354304505,52.85237309246377],[-128.4060727643698,52.852377158708926],[-128.40604944107497,52.85237595013554],[-128.40606056814826,52.852358903408515],[-128.40610104102632,52.852284636752664],[-128.40615149729928,52.85218941789863],[-128.40616893683801,52.85215205929364],[-128.40618453398312,52.8521152945703],[-128.40624125041043,52.85201546239889],[-128.4063345281371,52.851904233707295],[-128.40645051628437,52.85181607694904],[-128.40657956806587,52.85171196381331],[-128.40667860985272,52.85160397147713],[-128.4067198077017,52.851542579606935],[-128.40673661428607,52.85149402132471],[-128.40675688469778,52.85139157189938],[-128.40678631666376,52.85125361972393],[-128.4068476003893,52.851119490840254],[-128.40693806742541,52.85099150032757],[-128.40703040707015,52.85086346237547],[-128.40710190583462,52.85072913291529],[-128.4071518773437,52.85059243698876],[-128.40719670946206,52.850479948840764],[-128.40725180743794,52.850417715660576],[-128.40732273822806,52.85037196776538],[-128.40736907930398,52.850319440189104],[-128.40736487449925,52.85024496744329],[-128.4071747438075,52.850123840178725],[-128.40673694358804,52.8499999484271],[-128.40643362814185,52.849917584635364],[-128.40640306034882,52.849870553174895],[-128.4064206996647,52.849853372936465],[-128.40651380024548,52.84983801023255],[-128.4068592928447,52.84976085643882],[-128.40730236155179,52.84961553857481],[-128.407527467416,52.849466282358165],[-128.40753363061222,52.8492951690888],[-128.40745817835113,52.84909601111529],[-128.40741845967347,52.848820996475546],[-128.40745367598822,52.84848893905132],[-128.4075155481266,52.84833238124969],[-128.40754711375286,52.84833116903984],[-128.40764010610312,52.848346646594926],[-128.40786000591208,52.84838530210268],[-128.40803006298276,52.84839807802791],[-128.40811558660593,52.8483638079681],[-128.40823001904036,52.84828128716382],[-128.40837585147642,52.848161685959106],[-128.40850986713434,52.848030558183126],[-128.40861179038086,52.847907928256696],[-128.4086819489541,52.84781566751498],[-128.40871751327052,52.84777008780436],[-128.40872345659017,52.84775987459158],[-128.408827047122,52.84776559865219],[-128.4091613274339,52.84778677305743],[-128.40970781951725,52.84784228023377],[-128.41023216717417,52.84790103803278],[-128.4104741402723,52.84790223413458],[-128.41051921375472,52.84787664130509],[-128.41054531718538,52.84786097301397],[-128.4105688779348,52.84784983296947],[-128.41063678819398,52.84778397116508],[-128.41077022183111,52.84765901499408],[-128.41088883969138,52.847584819422345],[-128.41107160071525,52.84752612571304],[-128.41144425240103,52.84741980359207],[-128.411778469448,52.84734117978634],[-128.41191672635543,52.84731815769794],[-128.41212366411597,52.84734137380658],[-128.41247446259305,52.84737509844366],[-128.41270544677653,52.847329987851325],[-128.41278150210238,52.84726002846945],[-128.41280355483948,52.84723882760067],[-128.41281330966592,52.847230222220844],[-128.4128317718723,52.84721133763448],[-128.4128415581198,52.84720328775103],[-128.4128796098419,52.84716886815118],[-128.4129609235675,52.8470931942953],[-128.41306539623972,52.84703218600156],[-128.41319466130332,52.84699813453369],[-128.41349611413946,52.84693251281533],[-128.41396678488815,52.846815753991415],[-128.41425190801883,52.84672467694676],[-128.4143006951886,52.846699006228626],[-128.41433656483483,52.846691541230946],[-128.41441185025099,52.846657476861736],[-128.41450831465943,52.84658654050121],[-128.4145891144879,52.84651815968554],[-128.4146711680967,52.84647218721787],[-128.4147746656263,52.84642688603577],[-128.414864453226,52.84638579558101],[-128.41492583770682,52.846352581823055],[-128.4149579602323,52.846328374761676],[-128.41496661886794,52.846316984088865],[-128.41502511008008,52.84629839720048],[-128.4152239847338,52.846228717876606],[-128.4154942194731,52.84610486214354],[-128.41566952235317,52.84599697884689],[-128.41572707810343,52.84594533808836],[-128.4157357364559,52.84593394735607],[-128.41575429223283,52.845916746709946],[-128.41580829110762,52.84585172392869],[-128.41590076694112,52.84574330158499],[-128.4160018370692,52.84562236844985],[-128.416086831126,52.845496724766214],[-128.41615261936144,52.845377073505006],[-128.41620321910383,52.84530147291953],[-128.41621893058877,52.84528320944346],[-128.41623300537898,52.84526889957561],[-128.41625918677107,52.84522183294978],[-128.41630581333723,52.84515808283254],[-128.41635199552903,52.84508649299426],[-128.416410218551,52.845014090246984],[-128.41656179506055,52.84494705910444],[-128.41675775483716,52.84485893159693],[-128.41688577569457,52.8447705246373],[-128.41693649871246,52.84471341749192],[-128.41698129555385,52.844666523667506],[-128.41706863262627,52.844615390426554],[-128.4171810667206,52.84456374051664],[-128.41731086191723,52.84452294574895],[-128.4174634347858,52.844490086914256],[-128.4176167235265,52.84443703935347],[-128.41773991069184,52.84436162094627],[-128.41784308234148,52.84431071721545],[-128.41794944630223,52.84428330317805],[-128.41804318246287,52.84424661383569],[-128.41816719461653,52.84416949157454],[-128.41831103164165,52.84404824054182],[-128.4184046879337,52.84394427664039],[-128.41846560603543,52.843870139800515],[-128.41854517266978,52.843780477270876],[-128.41861474742282,52.84369494938981],[-128.41867131267293,52.84360968941869],[-128.41868500733295,52.84345748037458],[-128.41863600721055,52.84328245097089],[-128.41859545621125,52.84319077731038],[-128.4185859893439,52.84317135463589],[-128.4186086722678,52.84316135219533],[-128.41872286309726,52.843124240914825],[-128.41889703285196,52.84307861025488],[-128.41901354299029,52.84304985591243],[-128.41907339386344,52.843006014833186],[-128.4191367396823,52.84294191893021],[-128.41920056206718,52.842886227148796],[-128.4192770115464,52.84282353860649],[-128.41934926767888,52.84275253139316],[-128.41942192058985,52.84265572682549],[-128.41950454857133,52.84252171487018],[-128.41958188635977,52.84240911590902],[-128.4196475492388,52.842336566912],[-128.41968883108822,52.84229366425096],[-128.41973470325092,52.842249554683036],[-128.41980314527822,52.84217693934099],[-128.41986499505668,52.842102782390285],[-128.41993491421593,52.84202341788154],[-128.42000877207158,52.84194789209731],[-128.42003783916726,52.84191926135342],[-128.4200563427759,52.84190093972012],[-128.42022442367102,52.84191205193218],[-128.420608840187,52.84193215962731],[-128.42088537519055,52.84193655003307],[-128.4209845834736,52.84193057568953],[-128.42108274554653,52.841939208284614],[-128.4211935347781,52.841973360621544],[-128.42128043666574,52.8420130556152],[-128.42144313749137,52.84209323949786],[-128.42170274753244,52.84222523645139],[-128.42186076446941,52.84230495125834],[-128.4220072608774,52.84231258618737],[-128.42241180112165,52.842261067968096],[-128.4229584061806,52.84222120243761],[-128.4235048638073,52.84230971818625],[-128.42403534972505,52.842444533180846],[-128.42454474359042,52.84243738014987],[-128.42523697472075,52.84230815031029],[-128.42594626525653,52.842200998222694],[-128.4264603084482,52.84209562510299],[-128.42682567426783,52.84196081469125],[-128.42697171216417,52.84189500516616],[-128.42697655407704,52.84188200598719],[-128.4269838385224,52.84184653987226],[-128.42685194353135,52.841768534428674],[-128.42662407622012,52.84167120810297],[-128.42670529135773,52.84159440451682],[-128.42701609451498,52.841563312831454],[-128.42719768196318,52.84151750721405],[-128.42723953944562,52.84145217334574],[-128.4272851916124,52.841387873315625],[-128.42739893129792,52.84129414289797],[-128.42753914030789,52.8411589342208],[-128.42768243295274,52.84104496575918],[-128.42782673256966,52.840965170593535],[-128.4279671849151,52.84086695828134],[-128.4281191722826,52.84079149781646],[-128.42825635576315,52.84071745559475],[-128.4283432639764,52.84054466866539],[-128.42838734337568,52.84033856411246],[-128.42841035709753,52.84018727244753],[-128.4284740562141,52.84008055533293],[-128.4285917815513,52.84000804531387],[-128.4286457736896,52.83989423609318],[-128.42864059908132,52.83968915008916],[-128.42863672367437,52.83947394572324],[-128.42863459909103,52.839273281673066],[-128.4286354403494,52.839124699972956],[-128.42863224826186,52.83905243934663],[-128.42853161024416,52.83895136374756],[-128.428301171858,52.838808686803006],[-128.42814474416207,52.83872446253941],[-128.42811125041385,52.83865900004056],[-128.4280991746825,52.838561133811076],[-128.42809546479856,52.83851243959718],[-128.42837590678602,52.838471315048515],[-128.42912262880628,52.83832019428698],[-128.42980559989883,52.83812777953343],[-128.43010607876846,52.83801391831054],[-128.43049621515496,52.83785727823458],[-128.43107047860136,52.83761832609876],[-128.4313546377602,52.83749582920376],[-128.43138706352332,52.83747721728638],[-128.4316131748463,52.837364335865026],[-128.43208025872536,52.83713825480059],[-128.43238673048705,52.83698277599322],[-128.4324373811988,52.83694136063478],[-128.43248830217152,52.836904424762196],[-128.43270059608443,52.83681032395601],[-128.43296891626747,52.836703848963786],[-128.43308282176739,52.83666224375571],[-128.43308241160628,52.83662244239837],[-128.4330816610578,52.8365114514161],[-128.4330932418667,52.83637217291657],[-128.4331341524592,52.836225002742886],[-128.43319830847346,52.836061643908586],[-128.4332723127618,52.83590761625534],[-128.43332691181214,52.8358050133991],[-128.43335979760965,52.83574546017395],[-128.4333926367584,52.835685351748005],[-128.4334247458858,52.8356286222768],[-128.43342331821052,52.83558716454462],[-128.43339326455782,52.8355659270085],[-128.4333753644895,52.83556181290229],[-128.4333971821803,52.83555294661461],[-128.4334492778669,52.835520471009396],[-128.43349317938507,52.835442192779816],[-128.4335325072184,52.83531635944657],[-128.43356516877722,52.8352041106495],[-128.43358426608063,52.83513139675288],[-128.43359898065287,52.83506324984512],[-128.43361508442436,52.834970414954476],[-128.4336273976718,52.83484401126905],[-128.43362925351374,52.834697085154346],[-128.4336560627522,52.834514882078075],[-128.4337526736064,52.834300957405794],[-128.43385254794805,52.83416041329371],[-128.43393361278012,52.83409761841182],[-128.43404451931644,52.8340364562899],[-128.4341506649718,52.8339894042888],[-128.4342185171887,52.83397229948934],[-128.43424336915987,52.833967855222795],[-128.43427925682758,52.83396094853337],[-128.4344192523404,52.833936741286166],[-128.43464545586104,52.8338911191911],[-128.43485599068254,52.83381555600226],[-128.43501801107334,52.83370455256693],[-128.43511874275273,52.83357912224032],[-128.43516238345657,52.833496363468825],[-128.43517039470666,52.83347377166201],[-128.43518032789058,52.83345226126885],[-128.43521024944857,52.83337370704544],[-128.43526623364315,52.83326266012721],[-128.43531919592093,52.833180273027274],[-128.43531928990177,52.8331331772418],[-128.43530061752068,52.833099361007555],[-128.43531091517298,52.83303523432319],[-128.43533431263387,52.83292374204187],[-128.43533684736158,52.83282165279593],[-128.43533294323973,52.83278585275969],[-128.43533183351528,52.832749994753684],[-128.43531518136976,52.83263765582723],[-128.43527500153326,52.832503935472765],[-128.4352215794278,52.832415341088556],[-128.4351731748435,52.832365887479085],[-128.43512689315133,52.83230461186553],[-128.4350526601765,52.83219346728516],[-128.4349921024115,52.83204502771534],[-128.43497049257817,52.831878404860106],[-128.43500959265535,52.83171612913995],[-128.43509187407759,52.83160958693562],[-128.4351364997502,52.831576700199406],[-128.43513317513245,52.83151846245544],[-128.43512482232174,52.83138856690405],[-128.43511651664787,52.83125923549117],[-128.43510758853606,52.831119260304604],[-128.435007638451,52.830981173197216],[-128.43482424874463,52.830945732171216],[-128.43473767230645,52.83094416399883],[-128.43474574722606,52.83092269214141],[-128.43474891940446,52.83091309095681],[-128.43476013477974,52.8308814624143],[-128.43479838638652,52.83078592509492],[-128.435003284978,52.830628059254295],[-128.4354097950742,52.830450312467605],[-128.43571171082752,52.830330233556325],[-128.43587826379067,52.83015242239129],[-128.43575632675126,52.82982472988953],[-128.43510806733426,52.829498430249586],[-128.434538008292,52.82927086475935],[-128.43440294337876,52.829185640599285],[-128.4344568566429,52.82915257038687],[-128.4346394965262,52.82911009366805],[-128.43485334265117,52.829125285127766],[-128.4351210521701,52.82918813022456],[-128.43554113001335,52.82923211545845],[-128.43586349520734,52.82920972850303],[-128.4359702663849,52.82917387429145],[-128.43602407298025,52.829155373282916],[-128.43607510074986,52.829136938887565],[-128.43609303933124,52.82912535375781],[-128.43607909072563,52.82894623760453],[-128.43604537029464,52.82859989509992],[-128.4360281864025,52.828429260156916],[-128.43599336229929,52.828422133851554],[-128.43554564683384,52.82833387240265],[-128.44419584379034,52.823032009883896],[-128.44421717499463,52.82304726377097],[-128.44430301962512,52.823182273854194],[-128.44437554433057,52.823344472334675],[-128.44449165620685,52.82348837842469],[-128.44459518925134,52.82362358501963],[-128.44469682360884,52.8237420026975],[-128.44482997367564,52.82385865149361],[-128.44500649016672,52.823985600727084],[-128.44512260642796,52.82412951509362],[-128.44524050724397,52.82425600763376],[-128.44538772769485,52.82437459630529],[-128.44545963923187,52.82450989585011],[-128.44557563514968,52.82463530646081],[-128.44569278232746,52.824797139495814],[-128.44573679884178,52.824932454982275],[-128.44579306826603,52.82508658608054],[-128.4459551810868,52.825221683145045],[-128.44605736416847,52.8253658869626],[-128.44615853484515,52.82549216212955],[-128.44617287346315,52.825644924306886],[-128.44605216644536,52.82576181175413],[-128.44605198774823,52.82580722335778],[-128.44619724720934,52.82592417446669],[-128.44634584753769,52.826050591248524],[-128.4464462819054,52.82621276288207],[-128.4464469613249,52.82625704427404],[-128.44659281631175,52.826384074137394],[-128.44691547459698,52.8266105771543],[-128.44704797997622,52.8267642306656],[-128.44716411068143,52.82690814275683],[-128.44728161777422,52.82704361185859],[-128.44732532588347,52.827205844161554],[-128.44730768044596,52.82736824332503],[-128.44724664913463,52.82752032512919],[-128.44716922895827,52.82764584651409],[-128.44718446098003,52.827798024690466],[-128.4472119044283,52.82795219084811],[-128.44723829813117,52.828104136290065],[-128.44723738889564,52.82826674256983],[-128.44721916394417,52.82841905307968],[-128.4471431450999,52.82855295032592],[-128.44712827766043,52.828715291381904],[-128.44718613714963,52.82883237691327],[-128.44721434104312,52.828886176039354],[-128.44727263442178,52.828913549171354],[-128.44749608942675,52.82895037805121],[-128.4477152521781,52.82912297229028],[-128.44769855648855,52.829302170893484],[-128.44769676994792,52.82948161474964],[-128.44766559073508,52.82963531664259],[-128.44763470555566,52.82977780843729],[-128.44761749951218,52.82993178405383],[-128.44755593455918,52.83007435035677],[-128.44743504155693,52.83023665037097],[-128.4473297441943,52.83037900698879],[-128.4473112846507,52.830559919571904],[-128.44732559671414,52.83071211665754],[-128.44733880007993,52.83074772267667],[-128.44750183381637,52.83086598808577],[-128.44763329445126,52.831001165818634],[-128.4477350572592,52.831153782002055],[-128.4478219894841,52.83130726350482],[-128.44789529656035,52.83143412707279],[-128.44801131845767,52.83155953472114],[-128.44817390259374,52.83168621380403],[-128.44828908576724,52.83181331613013],[-128.44836381335938,52.83194855497425],[-128.4484200691243,52.832102119666665],[-128.44843296737773,52.832245940860666],[-128.44840176723775,52.83241534117982],[-128.448356222044,52.83257775675081],[-128.44829378361206,52.832721462677384],[-128.44820381830166,52.83285565100731],[-128.44812779464337,52.83298954851085],[-128.4481407070437,52.83313336934531],[-128.4481686073356,52.833295374390936],[-128.4481802251185,52.83344930482293],[-128.44817881587096,52.83361921391391],[-128.44819041675953,52.83377258850891],[-128.4482493469417,52.833908156756166],[-128.4483211591032,52.8340249505774],[-128.44840781655782,52.83420591330752],[-128.44842073027004,52.834349733999495],[-128.44856862886948,52.83451203491954],[-128.4487284462779,52.83463877096934],[-128.4488320198018,52.83477397286305],[-128.44887424142271,52.83492614348999],[-128.44897611474224,52.8350804426148],[-128.4490632779521,52.835205329900326],[-128.4491651202101,52.83535906438073],[-128.44923805880077,52.83551171534534],[-128.4493557360049,52.83566568444087],[-128.4494286156318,52.835800961039546],[-128.4495289452714,52.83594463517314],[-128.44966100688254,52.836089889706855],[-128.44977854718866,52.83622535551446],[-128.4498650752363,52.83638781410955],[-128.4499362681453,52.83655845062404],[-128.4500101480436,52.836711081450105],[-128.4501115150443,52.836856419856694],[-128.4501980285927,52.83701832233834],[-128.45027234956882,52.8371625386177],[-128.45034417274513,52.83727933095926],[-128.4504600936756,52.83745127620598],[-128.45050373149036,52.83759556759722],[-128.45053157932392,52.837756451675986],[-128.45057301380191,52.83792714373599],[-128.45067611825098,52.8380539396633],[-128.4507936671907,52.83818940428519],[-128.45084906466252,52.83836036989918],[-128.45086198734631,52.83850418098172],[-128.45086105977768,52.838666230716846],[-128.45084470154274,52.838818501988314],[-128.45093027401313,52.83896416934852],[-128.45103420691146,52.83908926124424],[-128.4510903735456,52.839224885637776],[-128.45113504568775,52.8393871046677],[-128.45114840884315,52.83952250129668],[-128.45123486736261,52.839683282797324],[-128.45136669401512,52.839872826638484],[-128.45142309691516,52.84004489218637],[-128.45143514697813,52.84020610573289],[-128.45144879215232,52.84031402041444],[-128.45146171796443,52.840457840211435],[-128.4514739085434,52.8406375475055],[-128.45150197026916,52.840737321135414],[-128.45166533439308,52.840828098176246],[-128.4517828941172,52.840963561568635],[-128.4518849760654,52.84108869135529],[-128.45195652977745,52.84123296424666],[-128.45205883588588,52.84137828130588],[-128.4521314652137,52.84155729145963],[-128.45221832581527,52.84169283039834],[-128.45224521679563,52.84183691455181],[-128.4523038411976,52.841998841632346],[-128.45236110752,52.84216975834726],[-128.45244798548035,52.842305305712244],[-128.4525345360246,52.842467761710985],[-128.45260885731201,52.84261142021046],[-128.4526358760873,52.8427739982683],[-128.45272316260755,52.84290056661311],[-128.45281132135,52.84302598641965],[-128.4528522102364,52.84317089925924],[-128.45294177509908,52.84330470371027],[-128.45305806708853,52.843450283879704],[-128.45312973775475,52.843612494107134],[-128.4533355662162,52.8438105902323],[-128.45336352517674,52.84397314842946],[-128.45343461797472,52.84412527897798],[-128.4534769621792,52.84427913142893],[-128.4535052020132,52.84441421672766],[-128.4535485458039,52.84458543263203],[-128.45365005027875,52.84476495968901],[-128.4536944063518,52.84479206495569],[-128.45391529624115,52.8448474333946],[-128.45403273280914,52.844964400448745],[-128.4540628139766,52.845018149577804],[-128.45426916885484,52.845128207874396],[-128.45440100631276,52.84523645948577],[-128.45453297168262,52.84536321394672],[-128.4545629121533,52.84539846919999],[-128.45456145027487,52.84555099431709],[-128.45451339816563,52.84568598758496],[-128.45454178166517,52.84575884286095],[-128.45457189652544,52.84581315628017],[-128.45485376777788,52.84587733994555],[-128.45493945873102,52.8460566403356],[-128.45505744925748,52.8461831212461],[-128.4551434067362,52.846318676894846],[-128.45521774351863,52.84646233339186],[-128.45525936475065,52.846652081328905],[-128.4553626405886,52.84673289698114],[-128.45537664111353,52.84681445791392],[-128.45562662744143,52.846922480394184],[-128.45577398576847,52.84705787292852],[-128.45584590568663,52.84717579006322],[-128.45587661172235,52.84717570408004],[-128.45614452429487,52.84715888818856],[-128.45638110133544,52.84711469504512],[-128.45665007821563,52.847116361389006],[-128.45684126073866,52.84718860912423],[-128.45703291403342,52.84725299772365],[-128.45725660144507,52.847308301619535],[-128.45746320346367,52.84738976112783],[-128.45768266090778,52.84759764734613],[-128.45775484053468,52.847768258298785],[-128.45784187520567,52.84792229520354],[-128.45783950308982,52.84807483941044],[-128.45786730642234,52.84821833795194],[-128.45786493438095,52.84837088213072],[-128.45786469270945,52.84856038405246],[-128.45781702994648,52.84876657636848],[-128.45791790318398,52.848902383021525],[-128.4581835022679,52.84903867074819],[-128.4583313605577,52.84918246385818],[-128.45852154933692,52.84931807782338],[-128.4587294906632,52.849390536953706],[-128.45898084254762,52.84947329066967],[-128.45918676191485,52.84959119883416],[-128.4593637364639,52.84969121610436],[-128.45961494753746,52.849755474770916],[-128.45974821908354,52.84987209575162],[-128.45974591828568,52.850025759738145],[-128.45981879078835,52.850159908721906],[-128.45992007870612,52.850286734788575],[-128.460052704996,52.8504403802621],[-128.46017001002198,52.8506027516712],[-128.4602566068133,52.850765201122776],[-128.46035931923075,52.85090041108551],[-128.46037360580772,52.850954489528945],[-128.46056337204004,52.85109852329614],[-128.46063582841265,52.851306128997344],[-128.46084379737562,52.85137857502323],[-128.4610650059999,52.85148718943791],[-128.46127231499526,52.851596659865436],[-128.4614770861642,52.85167814208676],[-128.46163935024228,52.85181322416302],[-128.46183179150933,52.85192299629133],[-128.46196379964917,52.85204974186624],[-128.46215472390844,52.85214945374198],[-128.46228889730435,52.85218476452907],[-128.46242063327597,52.85233898226895],[-128.4625076620403,52.852492459786454],[-128.46256472236013,52.852626373524124],[-128.462755651123,52.85272609334636],[-128.4629476628935,52.852844286842945],[-128.4631416946541,52.852917021232436],[-128.46333262606706,52.85301674009871],[-128.46353786457465,52.853170536319105],[-128.4635222934563,52.85336820871389],[-128.4633718625722,52.85350255392988],[-128.46338523638227,52.85363738350783],[-128.46344496261815,52.85365631392066],[-128.46359103755614,52.853656057768454],[-128.4638274277101,52.85380135111563],[-128.4639439935979,52.85391831797738],[-128.46425359661106,52.85409067181952],[-128.4643727048801,52.85423561700305],[-128.46438358069594,52.85442376429536],[-128.4644272508701,52.85456749347195],[-128.464500210598,52.85470275908964],[-128.46451423121326,52.85478431852034],[-128.46460157756306,52.854910877072115],[-128.46465923040225,52.85505486890101],[-128.46477541572338,52.855181378334706],[-128.46480378041224,52.85533384262212],[-128.4648461767578,52.85548768987869],[-128.46487501241302,52.8556485493755],[-128.4648441414823,52.85569404847618],[-128.46465044922994,52.85583658670996],[-128.4645745336194,52.855972177263155],[-128.4646154101409,52.856115964892595],[-128.46468934433594,52.85626802910318],[-128.46468833023843,52.85633084214104],[-128.46477632947983,52.85648485372418],[-128.46484791999643,52.85662855290932],[-128.46508387992984,52.85678226701348],[-128.4652156075693,52.8569359167299],[-128.4652431292929,52.857025606744905],[-128.46540576234048,52.85713432150228],[-128.4655685105101,52.857260974127534],[-128.46569868674155,52.85738774513911],[-128.46581558153053,52.85755853375381],[-128.46590162030103,52.85777481228085],[-128.46597471300132,52.85784784752006],[-128.46601946074856,52.85801005000811],[-128.46616503184782,52.85814547654335],[-128.46635601824997,52.858325912908015],[-128.46641366727562,52.858469912836505],[-128.46669423593934,52.8586865912568],[-128.4668095150883,52.85881311775174],[-128.46697227383373,52.858939768298406],[-128.46713461509705,52.85907539764429],[-128.46738696300199,52.8591581224611],[-128.46759359423118,52.85923899941504],[-128.46778550082726,52.85933868200452],[-128.46805217298206,52.859411569140775],[-128.46827239029346,52.85942151878184],[-128.46849617149792,52.85947680949745],[-128.46873361884812,52.85955927949902],[-128.4688938924321,52.85965906897998],[-128.4689528266425,52.85979294024667],[-128.4689961793895,52.8599467658783],[-128.4690685909493,52.86013642683801],[-128.46906436647774,52.860288444727125],[-128.46903314138953,52.86042421986084],[-128.46900208817195,52.860530829087466],[-128.46898612403845,52.86057658097215],[-128.46906258000246,52.86059515708383],[-128.4691072319002,52.86059477472809],[-128.469255808928,52.860540637959794],[-128.4693153666844,52.86054050732916],[-128.46953682639236,52.86058798703706],[-128.4698170103845,52.860669000382465],[-128.46998052203438,52.86076030627969],[-128.47008347417952,52.86093081886898],[-128.47018543624293,52.86100380073238],[-128.47049721090283,52.86106788517749],[-128.47074922470358,52.86109622345161],[-128.47089684637302,52.86110601775491],[-128.47111928464457,52.861170293202726],[-128.4712954499886,52.86128712961013],[-128.4714875760569,52.86148659583936],[-128.47154634764166,52.86150498627577],[-128.4717829066929,52.8615235560095],[-128.47208031259527,52.86151617666136],[-128.47221555903337,52.86148921848718],[-128.47233443627331,52.8613723459383],[-128.4723955610798,52.86123874821919],[-128.47245715587874,52.86104907644124],[-128.47251965205706,52.8609070446159],[-128.47271354331025,52.86073589241743],[-128.47293801624318,52.86067453795084],[-128.47323456430757,52.86068455797943],[-128.47344087674333,52.86077552322236],[-128.473661810065,52.86082973405461],[-128.4738092214519,52.86094829359355],[-128.47386833128525,52.861020488378635],[-128.4739873168994,52.861066197786045],[-128.47405867976985,52.86123737247314],[-128.47423660186575,52.86141639437025],[-128.47444295274596,52.861507922248585],[-128.4746946730312,52.86156316914387],[-128.47494460537658,52.861635828585825],[-128.47518237565032,52.86169136835631],[-128.4752724474469,52.86165583202514],[-128.47534599092418,52.86165596880978],[-128.47559942114498,52.86169267211003],[-128.4757459294681,52.86174733519453],[-128.47575930215416,52.86180143114231],[-128.47580502881434,52.86181952928258],[-128.4759089762676,52.861846491917746],[-128.47613073053782,52.861866486282594],[-128.47619036175544,52.86188373504244],[-128.4763377658981,52.86200172658141],[-128.4765001486054,52.86213734272586],[-128.47675078641828,52.8621741024795],[-128.47687094136813,52.86217549818245],[-128.47713622135325,52.86223998051197],[-128.477224413985,52.862284093484696],[-128.4773303205848,52.86231269999678],[-128.47752045878684,52.8624292238199],[-128.47763829751065,52.862583162249074],[-128.47772318025667,52.86276245491749],[-128.47782663559715,52.86284493433964],[-128.4780359961213,52.86290779542677],[-128.47836032260975,52.86296318059786],[-128.47843400549718,52.86298180926227],[-128.47868737532897,52.86308130826418],[-128.4788934471993,52.86319973634526],[-128.4791142020197,52.863282538260606],[-128.47921785923677,52.86333641501571],[-128.47927783911393,52.863407476559026],[-128.47958696100665,52.8634732708765],[-128.47970724735995,52.863508855680294],[-128.4798226466516,52.86371666519205],[-128.47996872918227,52.86384365055932],[-128.48010067486587,52.86395187235348],[-128.48024865877096,52.86409563651711],[-128.48042544725448,52.86422252924008],[-128.4805724232023,52.864348938871025],[-128.48089686907545,52.86456577975209],[-128.4809975260777,52.864727926802644],[-128.48115925609085,52.86489998785109],[-128.48129237215286,52.86504406475239],[-128.48140868177603,52.865171121057],[-128.48142140626075,52.86534184367666],[-128.48149414386117,52.8655040148584],[-128.48152342570222,52.86557515856278],[-128.4816559675624,52.86569345765442],[-128.48177469514178,52.8657660757648],[-128.48181523850525,52.865918835251236],[-128.4818756592277,52.86598147209312],[-128.48188723660135,52.86611634673537],[-128.4819297053079,52.86627018677604],[-128.4819590604523,52.866422617408126],[-128.48198707126136,52.86650387939009],[-128.48207723522543,52.86654963366068],[-128.48217790087818,52.86671177053834],[-128.48228016653744,52.86683743629077],[-128.48239867786495,52.867018266735776],[-128.4823949335537,52.86716187014495],[-128.48243798316818,52.86734148720662],[-128.48248172743334,52.86748520849594],[-128.48249347840942,52.86763913217658],[-128.48270085570934,52.867747443768614],[-128.48296923699826,52.867784381133056],[-128.48307120462164,52.867856787068206],[-128.48308444933937,52.86789238822443],[-128.48308432791754,52.86793836340891],[-128.4830386482295,52.86800099937296],[-128.48308396945046,52.86802807365075],[-128.4833064447139,52.868091769963115],[-128.4835123993901,52.86819169614001],[-128.48352470061795,52.86837084146056],[-128.48353855938038,52.86856061051475],[-128.48344644373387,52.86872121463875],[-128.48344553238493,52.868865323246304],[-128.48348884849216,52.8690174583135],[-128.4835451577858,52.869153064602955],[-128.48360303379053,52.869315548529094],[-128.4837804836931,52.869469342230204],[-128.4839864281125,52.86956870274435],[-128.48414818720966,52.86967685504001],[-128.4842811943646,52.869722814230244],[-128.48441289140555,52.86985794744154],[-128.48453063521282,52.86999337555625],[-128.48463410074774,52.87015546011422],[-128.48473507709855,52.870290677466784],[-128.48488354636692,52.87042602061781],[-128.4849404496732,52.87057170523235],[-128.48510315170202,52.870679827365606],[-128.48529558351007,52.87077106635148],[-128.48551664554432,52.8709059945677],[-128.4857669617231,52.871095802518525],[-128.4858671015635,52.871312334108474],[-128.4859400777966,52.87136628920838],[-128.48601382590476,52.871465644361415],[-128.4860135671708,52.87149312574156],[-128.48608654389872,52.8715470807444],[-128.48617592344618,52.871690956371225],[-128.48621831543716,52.87184311895197],[-128.4863059918804,52.872005527183454],[-128.48642247607836,52.872151071665485],[-128.48651050360775,52.872303389744445],[-128.48664092929832,52.872448639000716],[-128.48677434570675,52.872565227645794],[-128.48689274609944,52.872584026241036],[-128.4870557522939,52.87266523756164],[-128.4870697890255,52.872746228943875],[-128.487096973715,52.872908804602055],[-128.4871393116333,52.873044139773555],[-128.48715192045682,52.87319636724362],[-128.48721101148047,52.87333135675039],[-128.48722424136292,52.873494218738436],[-128.487250649986,52.87362765741074],[-128.48738309118943,52.87372744680863],[-128.48763697759745,52.8738185026041],[-128.48787150216066,52.87392847342783],[-128.48821077959406,52.874126484467084],[-128.48843410109953,52.87423612630551],[-128.4884780777617,52.87427163221203],[-128.48851963265037,52.8743615760447],[-128.48875720163605,52.874444004811856],[-128.4889351379349,52.87458936668033],[-128.48905247762264,52.87473321310241],[-128.48916814415654,52.87491241074494],[-128.48928562741193,52.875074750563854],[-128.48931458031913,52.87515599081674],[-128.48950539742253,52.87528257336852],[-128.48968391851403,52.87537410024164],[-128.48974022345544,52.8755091475529],[-128.48978345455967,52.87570725463129],[-128.48994574220592,52.87582379326507],[-128.49015190747443,52.87594220961392],[-128.49037402088183,52.87601487125277],[-128.49052185602847,52.876043134143245],[-128.49068316505367,52.876142873317384],[-128.49074420558878,52.876151671116816],[-128.49100901645252,52.87626995532731],[-128.49108307975052,52.87642200098989],[-128.49121426858338,52.876531913324676],[-128.49124386261553,52.87657613723649],[-128.49145000212582,52.87669398682674],[-128.49162671840824,52.876802368373674],[-128.4918318854794,52.87698302972599],[-128.49195138079247,52.87702029693133],[-128.4920093377173,52.87705607025448],[-128.49217242981672,52.877218005296896],[-128.49225950526431,52.87735351123622],[-128.49237729470477,52.87748893085267],[-128.49237646466793,52.877570245870025],[-128.49255212018244,52.8777240560161],[-128.49266895657686,52.87785893940821],[-128.4927726481451,52.87797615203121],[-128.49287338198823,52.87813828754169],[-128.49294788600346,52.87828190861585],[-128.49305027669843,52.87840868397406],[-128.49309239964737,52.87857149749169],[-128.4930901194746,52.87872348397565],[-128.4931031820263,52.87886728703129],[-128.49314657579424,52.8790199820076],[-128.49333906247028,52.87911120734787],[-128.49342654424743,52.87923774252319],[-128.4934987938813,52.87939038130771],[-128.49360106113636,52.87956257517583],[-128.49367278758388,52.879706254700324],[-128.4937467894333,52.879777567762304],[-128.49377600790737,52.879958595288535],[-128.4937730336908,52.880066866481066],[-128.49371336635332,52.88012923784723],[-128.49381620646,52.88032720880402],[-128.49387184560624,52.88049814026788],[-128.4938722392931,52.88063212941603],[-128.49386961378846,52.880794205655896],[-128.49395533383972,52.88093815315239],[-128.49404377628485,52.88106522361178],[-128.4941045054287,52.88110038098242],[-128.49416148630465,52.881119354818296],[-128.49443015415056,52.88111196655957],[-128.49453489271863,52.881103581001604],[-128.49478634192337,52.88116776318767],[-128.49509742577362,52.88116900841449],[-128.49532113041266,52.88120462517761],[-128.49554226304306,52.88125991406549],[-128.4956884376502,52.8813868788072],[-128.49585095577478,52.88152246655752],[-128.49596873560532,52.88165732675776],[-128.49616080948655,52.881756961596956],[-128.49627906909575,52.881883962345235],[-128.4966469731121,52.88209198990136],[-128.49691249041413,52.88223716621408],[-128.49701455197822,52.8823897347122],[-128.49707341990828,52.88255219105271],[-128.49736381056712,52.88308984237852],[-128.52106662429836,52.883035131025814],[-128.522311207318,52.88161185982663],[-128.52299281931914,52.88052639163561],[-128.5236150240117,52.87920896369735],[-128.5239880260515,52.87802358980457],[-128.52416727238187,52.877057099764095],[-128.5246614783619,52.87595378061838],[-128.5247415349893,52.87458631538666],[-128.52500203411512,52.873027713926],[-128.52522500425985,52.87149570649921],[-128.52586873383808,52.869649657141515],[-128.52624094776647,52.867479774772384],[-128.52647831893486,52.86561105561556],[-128.52715039914258,52.86369597964238],[-128.52755327901306,52.86158989374639],[-128.5279997886685,52.85927879358106],[-128.52863408426816,52.85720023369838],[-128.52938977386648,52.85509831226366],[-128.52967875087396,52.85308324972785],[-128.52993805098598,52.85063149816221],[-128.53043668226732,52.848042277555976],[-128.53086764767414,52.84548982495511],[-128.5310741783156,52.84342044542736],[-128.5312726372496,52.84077655951502],[-128.53158254709697,52.83769126821505],[-128.5320497473452,52.834655270425],[-128.532518731632,52.83208907404937],[-128.53272424584313,52.829691705756524],[-128.53314724601495,52.82661907774527],[-128.53364510238313,52.82363341102252],[-128.53400816886793,52.82146362086957],[-128.53418391366498,52.8188022356917],[-128.5340666988133,52.81607708329023],[-128.53419705560393,52.81338751339944],[-128.53449280512228,52.810712307368306],[-128.5345877813182,52.8090714016284],[-128.53492928866032,52.80726144045321],[-128.5351279068042,52.80520618724915],[-128.53512474230433,52.80333751674897],[-128.53518920123219,52.801746592215586],[-128.5352111664333,52.80095836635368],[-128.53531501328425,52.800515983276256],[-128.53573655127704,52.79980489914421],[-128.5365519454712,52.79846462639959],[-128.5373277084832,52.79631781136306],[-128.5383964327787,52.793879262644175],[-128.53943539300215,52.79128603693443],[-128.5403312106297,52.78813183646378],[-128.54122697895264,52.785228817977384],[-128.54203271602046,52.78251668420032],[-128.5433123092333,52.77912086577076],[-128.5449593592876,52.77508290620315],[-128.54617836540294,52.77147304792439],[-128.54715574434601,52.76808203584404],[-128.54809603454058,52.76477255147224],[-128.54854915753984,52.761486536324],[-128.5490084395758,52.75841400795507],[-128.54949757150928,52.75599852737438],[-128.5501140338751,52.753026285875556],[-128.55071641400542,52.74927497105632],[-128.55124355457136,52.74661303896735],[-128.55209320489922,52.74279351207952],[-128.55285243395483,52.73923385362942],[-128.5534838792782,52.735774537638825],[-128.55407794059073,52.7322190159068],[-128.55503244383118,52.72898307249383],[-128.5562867812733,52.72502228616784],[-128.55742000678023,52.721631004911856],[-128.55844831171856,52.71876851222709],[-128.55930420888745,52.71510401413275],[-128.56011535869558,52.71225968429807],[-128.5606179708853,52.70889557849862],[-128.56107671407497,52.70668975313149],[-128.56216431366644,52.70450212121968],[-128.5614744043291,52.702628705609975],[-128.56052247884324,52.70086923384128],[-128.55998883048434,52.69980768250489],[-128.55954792758902,52.69927286809453],[-128.55881889249406,52.69829239991021],[-128.55823978003195,52.69712025474324],[-128.55754860584724,52.695701584845],[-128.5567366995727,52.693704645516874],[-128.55631535526666,52.692067559370074],[-128.55573607875553,52.689896744081494],[-128.5553749369221,52.68793142779504],[-128.55514078423568,52.686120903984786],[-128.5549225135796,52.68445190001659],[-128.55471901570627,52.68348067548767],[-128.55464365323544,52.68297878620311],[-128.55439648046683,52.68259559409658],[-128.5553790023112,52.68209919910421],[-128.55726142019114,52.68110537180779],[-128.55922632824303,52.67991121646411],[-128.5610107180691,52.67828864788215],[-128.5626224692282,52.67632329639498],[-128.56435331971664,52.673811391408364],[-128.5657685774989,52.67113927740094],[-128.56672661851792,52.66861791594861],[-128.5677807413045,52.665243791418774],[-128.56844623910015,52.66242098252954],[-128.56926800666494,52.65947136463626],[-128.5705023937013,52.655928363843984],[-128.57144440625314,52.65352055600222],[-128.572746343606,52.65083060218419],[-128.57344217563266,52.64926201180569],[-128.57381634746378,52.64861451916289],[-128.57550757237834,52.64584248184332],[-128.57643487900236,52.64372203470361],[-128.57780409570682,52.64160639772159],[-128.579075433592,52.63931290170612],[-128.58017389512818,52.63654936964893],[-128.58138482845575,52.633503511850655],[-128.5825272277637,52.629937641326435],[-128.58366973382772,52.626622399428996],[-128.58487186543036,52.623316474222186],[-128.58593080645875,52.6200793092668],[-128.5864893533969,52.61711059411217],[-128.58679315631153,52.614506958060666],[-128.58704341123564,52.611583752523934],[-128.5875349757273,52.609363437504285],[-128.5881162236078,52.60726561849775],[-128.58886914786117,52.60483986056005],[-128.59064971239488,52.60349937518793],[-128.5946410089049,52.60288809671879],[-128.59832580596563,52.60317513110208],[-128.60064113978504,52.603626029396445],[-128.60105870076285,52.603814119256356],[-128.60167197561748,52.604162713860795],[-128.60229462600836,52.604314825522515],[-128.60274421544406,52.604313775564876],[-128.60306511750827,52.60435709056523],[-128.60362554506804,52.60442926587713],[-128.60417221433397,52.60444231231515],[-128.60507878747336,52.60444003127576],[-128.60595274903008,52.60455566862642],[-128.6082752947463,52.604955231537616],[-128.61086077432432,52.60531129289928],[-128.6114430980612,52.60543846288554],[-128.6132604173218,52.60563836742556],[-128.61442481778013,52.60584278196539],[-128.61576186801435,52.60607134694717],[-128.61729337629527,52.60628713056816],[-128.61845791427942,52.606523462401874],[-128.61994723124877,52.60663866169646],[-128.62138950128613,52.60683172069037],[-128.62218052602805,52.606996771294476],[-128.6233984123339,52.60719708831875],[-128.62551825831252,52.60759020955259],[-128.62655596392526,52.60783940835512],[-128.6276148826337,52.60810213577221],[-128.62848001593844,52.60831314757259],[-128.62922515004934,52.60852853329109],[-128.63121227038667,52.60889818106292],[-128.63375112953474,52.60892449927119],[-128.63628163533403,52.60901038491059],[-128.63731441025405,52.60907230010201],[-128.639038005298,52.6090675671228],[-128.64008980477414,52.60909257249341],[-128.64244507959307,52.60915762173688],[-128.64363097284777,52.60900123105641],[-128.64477880733628,52.60891803594647],[-128.64633253666366,52.6087095523521],[-128.64701504365266,52.608673327476886],[-128.648017963407,52.60871620205414],[-128.64895371185185,52.60874993264049],[-128.65073480541506,52.608867086257284],[-128.65361368241176,52.609228454794945],[-128.65448273320192,52.60921598587342],[-128.65588394265956,52.609175148277885],[-128.65596641267223,52.60916205653924],[-128.65712026004672,52.60916104329642],[-128.66647553443883,52.60878962009134],[-128.66716607065405,52.608748607416594],[-128.66763869524877,52.60871537814405],[-128.6698001370801,52.60846016697725],[-128.6705051108171,52.60842834217784],[-128.67164382475264,52.608422479535484],[-128.672281290226,52.608376486512014],[-128.67331052512012,52.60817290557465],[-128.6742491632152,52.608074585514004],[-128.67506071271072,52.607897284842984],[-128.67614912968264,52.607767477676624],[-128.67625338663376,52.60777742537343],[-128.67698950586424,52.607681472831565],[-128.6781975318082,52.60757077025657],[-128.67922526869654,52.6074770952547],[-128.68093536710134,52.60736044930556],[-128.68188677506305,52.60734869271897],[-128.68247208468296,52.60729766824286],[-128.68325926328274,52.607234159271215],[-128.68424916995264,52.60717214840162],[-128.68509567921672,52.607154926115115],[-128.6858320621533,52.60700451815681],[-128.68676186590753,52.60698761067093],[-128.68809835506167,52.606786363663424],[-128.68887904959723,52.60666407733353],[-128.68944294754908,52.60656696881224],[-128.6901944779483,52.60640776728961],[-128.69104983248184,52.60628094620891],[-128.69172632028005,52.60619412504125],[-128.6924619406309,52.606061637451916],[-128.69298867274094,52.60593284211931],[-128.69368023333223,52.60579126855172],[-128.69413964587562,52.60560738470962],[-128.69518599223284,52.60528095718036],[-128.69598819974644,52.605222056812856],[-128.69638628183904,52.605151740306646],[-128.6973460811074,52.605112178966195],[-128.69881676111922,52.60495705662116],[-128.6996271541392,52.6048665368155],[-128.70004059405932,52.60480538164041],[-128.70188150621044,52.60438817365869],[-128.70240276922792,52.604158516496284],[-128.7031013998388,52.604012800787864],[-128.7038594052061,52.60389878856043],[-128.70491107517785,52.603731981372796],[-128.70673581212878,52.60345582685477],[-128.7074406600865,52.60336489930502],[-128.70788403948498,52.60329460476467],[-128.70881441646316,52.60320011508981],[-128.70951279267376,52.60309474402618],[-128.71432073858367,52.60261852608351],[-128.71477584954755,52.60257317297497],[-128.71514106806913,52.60252542242897],[-128.71558872073388,52.60249369898007],[-128.71629367193418,52.60243411104873],[-128.71720191282634,52.60231202826806],[-128.71785516075826,52.60222503746666],[-128.71834989731678,52.60219165075556],[-128.71904119070214,52.60207740472306],[-128.71979751735464,52.602054742722565],[-128.72095140524786,52.60205701470026],[-128.7215739056597,52.60201053255874],[-128.7226616418831,52.60190328933903],[-128.72370476294898,52.60176399347985],[-128.7246655258971,52.60160977716241],[-128.72512318317388,52.60159012110022],[-128.72614341359122,52.601454702318044],[-128.72668423663805,52.60138991079058],[-128.72712009500532,52.60126028045564],[-128.72853249492232,52.600963127698165],[-128.72959121059122,52.60083687319414],[-128.73041515922608,52.60080133525806],[-128.73143517840612,52.60070680921873],[-128.73332676870655,52.60039502741078],[-128.73400996528594,52.60035771674572],[-128.7347513624569,52.60034820092003],[-128.73563575411865,52.60030335831649],[-128.73658236541604,52.60013143656379],[-128.73721202225448,52.60005274015737],[-128.7378648128871,52.59998863524553],[-128.73871300707023,52.5998840588802],[-128.7392465574508,52.59983620333476],[-128.73944739579773,52.599808501082244],[-128.73948133305637,52.59980377440781],[-128.74175529923755,52.59968589482959],[-128.74238976671228,52.59959584075594],[-128.74315958918012,52.599351181425895],[-128.7440474364482,52.59921590591904],[-128.74609276866983,52.599010210515196],[-128.74750273730578,52.59896693601606],[-128.7489363819301,52.598860274999474],[-128.7496603946645,52.59865198651909],[-128.75062431795408,52.59827539302051],[-128.75160303023063,52.5979853742086],[-128.752476635867,52.59784532602209],[-128.75323079871035,52.59773275583545],[-128.75433477176466,52.59769381550548],[-128.75493129492975,52.597676372509405],[-128.7550467669257,52.592862904326914],[-128.76599980456504,52.59285675524154],[-128.773922550294,52.59285210914261],[-128.77949482916188,52.59284852305203],[-128.79224889010317,52.592839071004946],[-128.8016803061475,52.59283119861739],[-128.85690719705872,52.59291013792722],[-128.8572571601811,52.592206108145476],[-128.85802757456165,52.58945418915675],[-128.85822891858032,52.588019625273624],[-128.8584430273515,52.58616578911189],[-128.85871735556918,52.58448041940818],[-128.85878259024423,52.582836056086656],[-128.85923393663748,52.57928315898203],[-128.85943330107716,52.577597927751775],[-128.85978254715815,52.57581703787113],[-128.86015208273258,52.57373053602501],[-128.86035063511162,52.57188154221145],[-128.86046271630448,52.570441854890596],[-128.86064177093417,52.56774585877816],[-128.86084202547607,52.56626979515419],[-128.8609615310876,52.56481701425674],[-128.8612859633807,52.56148758580768],[-128.86130083736933,52.56019890596853],[-128.86155855235629,52.55818521968989],[-128.8617953149073,52.55652315869593],[-128.86249495195935,52.55333368632255],[-128.86308130594466,52.55130181927236],[-128.86356654387143,52.54993034035064],[-128.86382019031927,52.54849556343428],[-128.86448097432333,52.54510172720228],[-128.86469643486984,52.54356635686412],[-128.8648140651811,52.54194981309348],[-128.86488187558749,52.54084714469569],[-128.86488853591393,52.539353918688825],[-128.86477684672502,52.53821975492851],[-128.86512372186232,52.53105100629074],[-128.86531583672368,52.529374848168445],[-128.86570691134312,52.52728883511284],[-128.86610280669726,52.52594026787561],[-128.86643037456426,52.52455074203174],[-128.8666770887807,52.52332026020828],[-128.86705703476068,52.52181670621122],[-128.86805379316218,52.51855472136358],[-128.8683961726758,52.51696009447519],[-128.86960039177143,52.51223071966337],[-128.86983414822245,52.51127873848671],[-128.87026498544213,52.509738560791504],[-128.87061547192343,52.508253648996096],[-128.87121256249773,52.50570649243962],[-128.87152753698595,52.504672286471866],[-128.8718654627094,52.503788389276735],[-128.8722727257554,52.50312714789545],[-128.87258273779017,52.502489052226906],[-128.87269577879093,52.50152825011146],[-128.87275353727003,52.50119084273828],[-128.87282536270703,52.500607980057524],[-128.87284495757098,52.50029339343721],[-128.8728900397086,52.499807664676716],[-128.87289933147537,52.49969806463778],[-128.87294750011327,52.49960376696997],[-128.87308499580817,52.499271687628486],[-128.87332651174768,52.498962842543],[-128.87373106973237,52.497889392971004],[-128.8742617746824,52.495900236779356],[-128.87485739234538,52.49433071294723],[-128.87531992403694,52.49339380260041],[-128.8756488516199,52.49248823456345],[-128.8759493832758,52.49126870390471],[-128.87620652548856,52.48999414361118],[-128.8766619243775,52.48900691791759],[-128.87792117526317,52.484683742631425],[-128.88039876115047,52.474555819913974],[-128.88076063831866,52.47315411316792],[-128.8810442717905,52.471314593657326],[-128.88148610745554,52.4692894075709],[-128.88210130854887,52.46788366799557],[-128.88289558440925,52.46554459991529],[-128.88323219369133,52.46453894921073],[-128.88386823125362,52.46242759795925],[-128.884275723297,52.4609529430424],[-128.88487773009962,52.458349368989445],[-128.88572877281908,52.45550009810635],[-128.88627086159417,52.45391663268198],[-128.8866333288515,52.452377997464346],[-128.88721479965554,52.45055795676075],[-128.8890406563618,52.444983568505435],[-128.88948920614,52.44386459749867],[-128.88981813752676,52.44279066115],[-128.89030956503603,52.44095149898758],[-128.8906836662795,52.43985063122111],[-128.89110899487056,52.43890891305825],[-128.89151188837158,52.43792175386847],[-128.89194492698994,52.436807071875705],[-128.89231921662133,52.43573760099882],[-128.89341076172374,52.43338144934746],[-128.89368598987284,52.432525911582495],[-128.8941425747615,52.431310781799446],[-128.8948096713099,52.429909785426275],[-128.89551678451346,52.4280354779768],[-128.89680779689468,52.42492376826041],[-128.89735237885662,52.42393696267672],[-128.89807211083786,52.42243140948442],[-128.89946939894122,52.41904213710549],[-128.90035644028444,52.41704044426483],[-128.90143510191152,52.41434230758998],[-128.90231056289954,52.41281430549108],[-128.90270006420116,52.411594622565126],[-128.90322408153736,52.41025264615116],[-128.90354472364217,52.40932412576346],[-128.9039544443717,52.408282300630134],[-128.90452414545047,52.406894860773875],[-128.9051450572958,52.405516232262],[-128.9055033937668,52.40443754618624],[-128.90571558597858,52.403950944666214],[-128.9065216025321,52.402709589501015],[-128.9071013374667,52.40189628981706],[-128.90756124978256,52.40112300813717],[-128.90797664054904,52.40041366489172],[-128.90842541577754,52.39980333302506],[-128.90874984316838,52.39917928410661],[-128.9092064246179,52.39846665917651],[-128.9096191332789,52.39792286017349],[-128.90980290357163,52.39756204690262],[-128.91005846752014,52.396927941913695],[-128.9104042386007,52.39637515326427],[-128.9107739763521,52.39595919186112],[-128.91129070010055,52.39530619665248],[-128.91172637625291,52.39480331346405],[-128.91213258416568,52.39434156482912],[-128.91321229159442,52.39329915780438],[-128.91399775444805,52.39263154396733],[-128.91547486439794,52.390917775681935],[-128.91815935195095,52.38748235174638],[-128.91993270622027,52.38549852740858],[-128.9209976085986,52.3844883824024],[-128.92195879783324,52.38361938896105],[-128.92289015196255,52.38269110942193],[-128.92368772028564,52.38175890152651],[-128.92765507693196,52.377631192965644],[-128.92963590787434,52.37565149306827],[-128.93040609862896,52.37506547536098],[-128.93141297894556,52.37429228638305],[-128.9322179477675,52.37344676454046],[-128.93392435935556,52.37175495818318],[-128.93476091378253,52.37106401028182],[-128.93863812784693,52.367911974301656],[-128.94200587407886,52.365339846339516],[-128.9431957805596,52.36430160487256],[-128.94705708079698,52.36116310764871],[-128.95200822243,52.35750138749574],[-128.9528298667091,52.35686957475345],[-128.95515332613883,52.355194222038726],[-128.9563537154437,52.35445175675288],[-128.9574341193696,52.353650618229445],[-128.95897311423536,52.352561211080285],[-128.96214281483503,52.35059597138537],[-128.96325449051196,52.34994488386951],[-128.96558706864082,52.34853384927774],[-128.9699428517159,52.34598097668286],[-128.97114913640146,52.34519779746835],[-128.9752515063529,52.342727488361476],[-128.9800010980401,52.34024655790885],[-128.9826245055809,52.33890677638553],[-128.9841062896663,52.33816348668521],[-128.98637334773383,52.33699378349214],[-128.9930582666909,52.33378080406584],[-128.99374004154558,52.33342772372428],[-129.00168771616853,52.32941358139882],[-129.63158949604681,51.98934621540206],[-129.63165632846273,51.98932669673295],[-129.7033826955361,51.95010107803019],[-129.84802516851366,51.22938080102334],[-129.7084518691872,51.1497920793792],[-128.51015794216093,51.162322942706254],[-127.78919233803991,51.163730139475156],[-127.7041998503823,51.18444434253508],[-127.6897745383358,51.18483796850796],[-127.67696577675903,51.185347749934536],[-127.66983517412928,51.18758677723008],[-127.66327389110688,51.191011853894366],[-127.66161060275392,51.18982459606671],[-127.65683118779057,51.18764084276041],[-127.65026508656587,51.18672619713108],[-127.64388975817577,51.18626524443072],[-127.63853715713557,51.18682797295972],[-127.6325590659448,51.18779180829999],[-127.62722230740354,51.18903904296601],[-127.62207104125947,51.190567910221525],[-127.61898854201951,51.19098987141146],[-127.61679940220485,51.19067045695579],[-127.61397960386986,51.19063615721728],[-127.6112653242897,51.19128835518365],[-127.6083332490932,51.19028175741856],[-127.605026226241,51.18870739120069],[-127.60172379147848,51.18725352640495],[-127.59925796533811,51.18670029890265],[-127.59802416383734,51.188536191536926],[-127.59441666007943,51.18999646080576],[-127.58789737224518,51.19136066086164],[-127.58418399153375,51.19207788044313],[-127.58101771688072,51.192849618536165],[-127.57731448633159,51.194135566181124],[-127.57381359125625,51.19633561274263],[-127.56894453393737,51.19837216078536],[-127.56721780623533,51.19844160001704],[-127.56439769138319,51.19840998478873],[-127.56011919287417,51.19815937165803],[-127.5554841404271,51.19836249082219],[-127.55186018235938,51.19908132835135],[-127.54923659624977,51.19972851868387],[-127.5453262569349,51.199815764019306],[-127.54178015305374,51.199845146983186],[-127.53705005655799,51.1997670689793],[-127.53406131615873,51.200246580823055],[-127.53008434306558,51.20164914954096],[-127.52844664238634,51.201656166336456],[-127.5242623865372,51.201517973726155],[-127.52097865678826,51.20102796042187],[-127.5169701616416,51.20065814507168],[-127.51395446541186,51.199883162158756],[-127.51158307327248,51.19961747910735],[-127.51013226866506,51.19979851832343],[-127.50787994495492,51.200901095438745],[-127.50581572293474,51.20240351423769],[-127.50339685466746,51.204306273293774],[-127.5019614870117,51.20539841125806],[-127.49972348750917,51.20736264550547],[-127.49737985107295,51.20840560622185],[-127.49484576324998,51.20916929922173],[-127.49239743922641,51.20952941743815],[-127.48885148218135,51.209612124424645],[-127.48556859660775,51.20917943796423],[-127.48327379791161,51.20805294458861],[-127.48098238266154,51.20715813561393],[-127.47731400033271,51.20552309825296],[-127.47410206628645,51.20400546176587],[-127.47181940916892,51.20344371304527],[-127.46719370344213,51.20417116736471],[-127.46483459786583,51.20435612291834],[-127.46282985295728,51.2043703136165],[-127.46147189031316,51.2046067631443],[-127.45892443689077,51.20456730347914],[-127.45647021024469,51.20458438423531],[-127.45512049272588,51.205455936562785],[-127.45513886835809,51.20647989677295],[-127.4564392922543,51.20789757922771],[-127.46038805395706,51.20998703604118],[-127.46287120712162,51.21162505325486],[-127.46417129332899,51.213047703826746],[-127.46602769814514,51.215091659180366],[-127.46649042347498,51.21548579597557],[-127.46869403524603,51.216727734682394],[-127.47063021224058,51.21808703096134],[-127.47502250640714,51.21953773153236],[-127.47932757342934,51.2209972527366],[-127.48262430015801,51.222114609887676],[-127.48391947632125,51.2234153091609],[-127.48368544933973,51.22541794214012],[-127.47979071139227,51.22636411538057],[-127.47733151480507,51.226268902058564],[-127.47359148992368,51.225891220968606],[-127.46796645925195,51.22673494551137],[-127.46316668147298,51.22791059984426],[-127.4581741516177,51.22862779753912],[-127.45935973185708,51.228902627422016],[-127.45281789560225,51.2293522496411],[-127.44754503157993,51.22967187641658],[-127.44226660365851,51.229712420208855],[-127.43826000967375,51.22962374529765],[-127.43170358200388,51.22926981840978],[-127.42642757879815,51.22930061330087],[-127.42206302419761,51.22961488181281],[-127.41669417344055,51.229657056990085],[-127.41531947851914,51.22903620695219],[-127.41321360305761,51.22824547152606],[-127.41129367887595,51.22769256301585],[-127.40901178912601,51.227364120508064],[-127.40594019802381,51.22863585845923],[-127.40368665000989,51.22996693917148],[-127.40069096014834,51.23044631647034],[-127.39506023310688,51.23111080919459],[-127.38978514262949,51.231319457340135],[-127.38705609284258,51.23116330175432],[-127.38338749953328,51.229585894796394],[-127.3840057572978,51.228436882992305],[-127.3839854318419,51.22718288567037],[-127.38395165454476,51.22506763948545],[-127.3832819327626,51.22301517100427],[-127.37870582420402,51.221499220567395],[-127.3754109264736,51.220264917729416],[-127.37138615013396,51.21903265487048],[-127.36681367620191,51.217403936279695],[-127.36279209891082,51.216288614254225],[-127.36097229181375,51.216069804974175],[-127.35779774844832,51.21671800210533],[-127.35589849618835,51.21747483824238],[-127.35063982428552,51.218702835112126],[-127.34746329123541,51.21911956204985],[-127.3449152762818,51.219082576367086],[-127.3410640317183,51.21715748130884],[-127.3366646234225,51.215133795795694],[-127.33372763356715,51.213205487339536],[-127.33080796811686,51.21271128200443],[-127.32596189718949,51.21108527893198],[-127.32176513798788,51.21013723118878],[-127.31967140765236,51.21014823981222],[-127.3178662409058,51.21106889168619],[-127.31598188401381,51.21285521055819],[-127.31381571830015,51.213841717915884],[-127.31009185273557,51.21431706726126],[-127.30709706921064,51.21473167542383],[-127.30536770661263,51.214743246624096],[-127.30309376065027,51.21475547071938],[-127.29999566502566,51.21449092528916],[-127.29689700702538,51.214052902515974],[-127.29215500019846,51.21316165669167],[-127.28778047740532,51.21267343034968],[-127.28432070027306,51.212344681440705],[-127.28159436213036,51.212474407882965],[-127.27858841059248,51.21231991127548],[-127.2735045468857,51.2129783534997],[-127.27068149256257,51.21270486060878],[-127.2671259033833,51.212152751320446],[-127.26568409119496,51.21313413118708],[-127.2664247235751,51.21410227270014],[-127.26742718989082,51.21432672427687],[-127.26870153881482,51.214379762569784],[-127.26962682343894,51.21556803346943],[-127.2703664857624,51.21624771663904],[-127.27048493559204,51.21825594398225],[-127.26785976133854,51.219180492044124],[-127.26369886664251,51.22091790750502],[-127.25714742974448,51.220950577830145],[-127.24922718999701,51.22047724611878],[-127.24149237393715,51.22028470806732],[-127.23675439585728,51.21996966091018],[-127.23502696487803,51.21986397533197],[-127.2321891392742,51.218678350250556],[-127.22897054866215,51.215836310660166],[-127.22758445598564,51.21430255852276],[-127.22574458296643,51.212485828351994],[-127.22054466520173,51.211363114881],[-127.21899196698064,51.21092084338673],[-127.21605775966162,51.20922070014846],[-127.21422166263709,51.20774549588225],[-127.21374510708917,51.20597451064325],[-127.21344834681148,51.20403100210756],[-127.21315664205748,51.20266431084902],[-127.21222392236537,51.200777561566824],[-127.21075357658047,51.19953013593497],[-127.20674763840805,51.19920767923934],[-127.20413153855941,51.20070362735419],[-127.20124466548293,51.202722034537935],[-127.1999051994304,51.2047811735566],[-127.19728641392172,51.206164743317586],[-127.19465388850841,51.20657869742091],[-127.18946354281073,51.20609025878061],[-127.1811783565195,51.20550155052081],[-127.17698992687662,51.20506266609196],[-127.17125233476683,51.20428448722938],[-127.16742849116837,51.203909365529874],[-127.16754407704971,51.20602151683532],[-127.1674651841174,51.207107066039526],[-127.16447625970429,51.208148565059],[-127.15748229572787,51.20892525948612],[-127.15348969724563,51.209854416962],[-127.14868835904304,51.211413411083115],[-127.14434110079262,51.21308825018079],[-127.14116496166504,51.21385212228648],[-127.13663627510796,51.21552793089903],[-127.13191392559125,51.216227397520626],[-127.12648525608752,51.21917101539832],[-127.12230806218805,51.21969910185366],[-127.11731336109233,51.220459569295954],[-127.1114035864951,51.2208876481304],[-127.10021824560398,51.221502690582895],[-127.09469254564999,51.22363764387879],[-127.0893284886212,51.22416869182708],[-127.08514376154305,51.224132069332356],[-127.08196955527872,51.225231483227894],[-127.0822559773902,51.22643126251782],[-127.08626688699749,51.22755603414916],[-127.08954907216895,51.22800477823862],[-127.09083157276997,51.22896598279101],[-127.08875207913967,51.23028395439185],[-127.08248292133723,51.231286314566425],[-127.0773884381632,51.23119133672951],[-127.07411560857967,51.23154008839235],[-127.07112025745013,51.23247194202348],[-127.06684592875237,51.232653213735595],[-127.06266273923633,51.232899115011094],[-127.05648153545614,51.23360797057624],[-127.0525755393496,51.234476564771306],[-127.04757672128852,51.23518009005165],[-127.04330585312265,51.23605567263232],[-127.03939096744908,51.23572419036263],[-127.03893531780194,51.23555330615573],[-127.0357304891619,51.23339205965736],[-127.03380792974268,51.23202647377085],[-127.03016118945543,51.23118495829745],[-127.02425248980492,51.231830652207584],[-127.01981364085783,51.234017104397914],[-127.01681819526338,51.23488353690307],[-127.01173054016078,51.23615693226481],[-127.00946481924719,51.23736228605576],[-127.00602359236606,51.239256462729536],[-126.99975400473684,51.24053308346887],[-126.99375758869864,51.24169752771628],[-126.99039190429984,51.24216417815907],[-126.98747598619376,51.24166110684224],[-126.98410008131192,51.240297838529656],[-126.98272815518256,51.23961790444238],[-126.97907431911575,51.23791012776559],[-126.97479026056223,51.23695283943184],[-126.9723287021403,51.23638598148244],[-126.96677207093566,51.235204222867246],[-126.96240880397173,51.23618693954692],[-126.9587639011064,51.235173668112864],[-126.95611451326056,51.23415185484562],[-126.95011764740333,51.2351389329798],[-126.94576878627448,51.237946765780656],[-126.94204563841451,51.23927011054877],[-126.9371318368563,51.239393427771724],[-126.93258566208326,51.240038147605624],[-126.92932320099074,51.24215909355685],[-126.92386669010405,51.242920357965055],[-126.92077910050962,51.24378215949624],[-126.92052140222823,51.24686588396983],[-126.92008977857456,51.25029609931205],[-126.9202991363653,51.254635680814495],[-126.9193126141421,51.25703625796568],[-126.91486767381194,51.25990419297799],[-126.91333564161602,51.26230742422888],[-126.91335275932259,51.26487712564269],[-126.91528969592187,51.2688738914058],[-126.91740572869412,51.272580746139525],[-126.91606153088627,51.276014312692276],[-126.91380539956016,51.27973351801054],[-126.91172460942116,51.282139988113265],[-126.90919499370086,51.28493715998722],[-126.9034780052409,51.28929825511755],[-126.90003118543177,51.29164466746915],[-126.89713034590797,51.29434013060587],[-126.8947762425217,51.297198947317305],[-126.8933261826985,51.298401006856906],[-126.89152777176025,51.303029475711554],[-126.88998872955246,51.304863953024274],[-126.88580796776529,51.30664559577951],[-126.88043781633024,51.30785170474991],[-126.87560330929725,51.30729276658849],[-126.87305255544757,51.30729562898772],[-126.86948780633385,51.30548274354341],[-126.8645603117464,51.304002213419274],[-126.86174508835538,51.30617594204793],[-126.86049355814168,51.311094811528505],[-126.85868978937395,51.31532604001258],[-126.85569366633665,51.3176675876455],[-126.84694238504957,51.31757177630016],[-126.84129252466076,51.31797801504314],[-126.83546536539814,51.319934918584174],[-126.8267161199408,51.32006419469949],[-126.81814271021359,51.31921752739717],[-126.81622640667375,51.31904732508303],[-126.81302088069779,51.31477041803517],[-126.81191570745935,51.31231809615156],[-126.81298669120665,51.30597263348216],[-126.81477693859945,51.297914601647356],[-126.81339952697081,51.29488798710277],[-126.8119369906707,51.29317711486001],[-126.80956148840727,51.29158048067969],[-126.80791548000713,51.28992921627296],[-126.80518188775648,51.289984602926815],[-126.80045987714226,51.29399497822265],[-126.79591527645326,51.297139840088114],[-126.78598560408408,51.29795375470102],[-126.77587476232985,51.29950975796892],[-126.7726838559538,51.29905523898194],[-126.76712776004342,51.29866100056573],[-126.76448550055822,51.29946548689637],[-126.76403838758388,51.302830959426565],[-126.76495973229856,51.305979598049014],[-126.76816023623692,51.309342251951264],[-126.76761565525888,51.311114960457765],[-126.76543119551096,51.3118075043625],[-126.76188105062884,51.31357520944626],[-126.75960340017009,51.31392321935145],[-126.7554142873387,51.314779912652334],[-126.75423027829395,51.31541281920998],[-126.75159000190284,51.31735759702101],[-126.75104995374126,51.319125687581675],[-126.75069616287801,51.32330057819363],[-126.75006776248584,51.327753859775115],[-126.74961843747984,51.33112367079372],[-126.74807503962475,51.33352897679736],[-126.74634652823936,51.335353102567076],[-126.74115076306786,51.33662037581626],[-126.73504348964828,51.33747984062288],[-126.73294914931128,51.338678323177255],[-126.73030930761043,51.34068087949022],[-126.72885448521713,51.343366960910096],[-126.72721907544212,51.346170860272075],[-126.72503565261304,51.34931541876434],[-126.72430897981026,51.35091227539059],[-126.72221675703805,51.35411115974096],[-126.72413721491051,51.35622184591335],[-126.7265099980348,51.35713966152156],[-126.72824619206091,51.358789723759884],[-126.72697387395192,51.36125070019535],[-126.72469475882477,51.36227850301845],[-126.7216873637327,51.364335326892636],[-126.71932149535881,51.36656472408467],[-126.7161307908761,51.36960040621382],[-126.71239884460309,51.373768722270256],[-126.71030463309766,51.379257378073866],[-126.7115916923829,51.383481599924544],[-126.71333248293736,51.388338002306185],[-126.71133036803661,51.39176375028226],[-126.7081380985529,51.39462409983289],[-126.70531224316245,51.397365939630504],[-126.70157234854041,51.40062329989818],[-126.69956893176146,51.40434276059478],[-126.69920648534567,51.40570934453731],[-126.70176804935298,51.41027633272666],[-126.70460631709041,51.414728764004174],[-126.70872145365202,51.41746884925942],[-126.71229259664561,51.42204046118924],[-126.71531104318377,51.42483765754505],[-126.71915398657264,51.42883399545984],[-126.72336028042015,51.43123354675422],[-126.72839154381829,51.433798756920844],[-126.72921762074661,51.43580066058814],[-126.72748905305944,51.43905703806182],[-126.72639844755128,51.44236371014747],[-126.72521504703197,51.44425335383723],[-126.72211250110009,51.448427162423215],[-126.72047174085452,51.45116784343446],[-126.7167304127561,51.45488158957541],[-126.7108852840003,51.45779553234968],[-126.7075034484085,51.45986248864427],[-126.70851403052906,51.46328707518386],[-126.70961734857924,51.46608278155527],[-126.70980408255308,51.46962466992829],[-126.70907508247286,51.471570152539606],[-126.70460060054243,51.476141202018006],[-126.70167642047184,51.47831168174194],[-126.69893297755934,51.47917001611702],[-126.69463247113643,51.4788867215363],[-126.69334956333945,51.4761458566278],[-126.69389743827891,51.473633902293884],[-126.69197328619423,51.470431322657234],[-126.68776061668753,51.46723303968377],[-126.68163318273274,51.46586697430169],[-126.67733345444752,51.46489752765298],[-126.67468148544116,51.463644964430046],[-126.67120399669257,51.46004227409776],[-126.67047230474708,51.45912885181207],[-126.66855075078739,51.4570713248585],[-126.66681060274185,51.454671628861256],[-126.6642506489564,51.45187504219121],[-126.66223838191726,51.45039236191124],[-126.65757583413925,51.44844930981581],[-126.65163345208336,51.446508924827285],[-126.64779152782641,51.445823513350554],[-126.64194271479623,51.44530920210825],[-126.63490341299972,51.445140633060966],[-126.63006035118336,51.44461728574469],[-126.62530796189932,51.442161800749545],[-126.62430355602817,51.44141786476417],[-126.61973590395013,51.43873673724823],[-126.61680919194329,51.43730366456562],[-126.61470946734835,51.43467846103841],[-126.61242703792652,51.43119253623301],[-126.61051122120506,51.42868013341412],[-126.60868519318021,51.42541997615349],[-126.60832156660352,51.42182435000949],[-126.60960303902341,51.41805382860577],[-126.61143087528681,51.41594142379198],[-126.61444498159617,51.41445985227095],[-126.61800864294734,51.41343185197294],[-126.61792031388019,51.41245677750512],[-126.61362569782995,51.41228260405205],[-126.60951648228304,51.412112317421595],[-126.60476624207199,51.409999232026365],[-126.60184433021921,51.40874243592099],[-126.59654907081773,51.40731462221616],[-126.59298974158055,51.406052525822794],[-126.59098112067342,51.40531239532174],[-126.58787571394294,51.40467777154235],[-126.58468115859047,51.404505222707265],[-126.57737451304203,51.40421556345375],[-126.57454517711435,51.40438475420892],[-126.57052233066727,51.40484206241506],[-126.56824095712432,51.40523946787966],[-126.5660511755444,51.405978008541226],[-126.56412573669694,51.408262964270726],[-126.5618373543153,51.41003581410877],[-126.55991597769446,51.412600603203174],[-126.558544997542,51.41431275031572],[-126.55598415966001,51.41614121961056],[-126.55278687012495,51.41688274339844],[-126.54912952131353,51.41739247713204],[-126.54346955336428,51.41624669297691],[-126.54018243396307,51.415841087074405],[-126.53561317238736,51.41572024574524],[-126.53058820884387,51.41623357304709],[-126.52793935955714,51.41742903445955],[-126.5239137772482,51.41908293353013],[-126.52016388057977,51.42056320727466],[-126.51532012957807,51.4214761262645],[-126.5126686199488,51.4220401302876],[-126.51056761435927,51.422437236165635],[-126.50837155414393,51.42317860244657],[-126.50461775776489,51.42620272925392],[-126.50178676420201,51.425739567398495],[-126.5003282196888,51.42528151597867],[-126.4979509718365,51.42522521344648],[-126.49475241065105,51.4256761882868],[-126.49200758282372,51.42647179829459],[-126.49091006939935,51.427153638116664],[-126.49227384722381,51.42904326548021],[-126.48879841139879,51.43012243525948],[-126.48724370681228,51.430572848376976],[-126.48449385813876,51.43291824776021],[-126.48375324547801,51.4360499213984],[-126.48054634759704,51.43805104386413],[-126.47862063904678,51.439933355900784],[-126.47842721150562,51.44284894136417],[-126.4779640220985,51.445298932684175],[-126.47822326549216,51.44861648820519],[-126.47547148788928,51.451349811529724],[-126.47317943366875,51.45340350978498],[-126.46997342402155,51.45522926977143],[-126.4673226022092,51.45550777311922],[-126.46274730307296,51.456812205209985],[-126.45824113012388,51.463148480848055],[-126.4556633420928,51.46679996575201],[-126.45290552183316,51.470680969817124],[-126.45115768767222,51.473649147465764],[-126.45086392428496,51.478045310563125],[-126.45048630395416,51.48050148815652],[-126.45010807009936,51.4836964134962],[-126.4480875879455,51.48517853978089],[-126.4430447763051,51.487399981630794],[-126.43947376765186,51.48842183517912],[-126.43646002366823,51.48767337697011],[-126.43436228601023,51.48595427964902],[-126.43217272717006,51.484409946520266],[-126.42870529929237,51.48246427455337],[-126.42459667305808,51.480800238291714],[-126.42369860743561,51.4778266821769],[-126.42361156788473,51.476739336463126],[-126.4208780685152,51.47484677203135],[-126.41657969486805,51.47444526146388],[-126.41145980732453,51.47443249313671],[-126.40624085705429,51.47510644137755],[-126.40303845251418,51.47573038697037],[-126.39873304251458,51.47663409806185],[-126.39552740395987,51.477424445445365],[-126.39077234918709,51.477645625851416],[-126.38666127471674,51.47671898894934],[-126.38236207880753,51.47631113581853],[-126.37669375838324,51.47624255028436],[-126.37404172268113,51.47606395194309],[-126.37084345156396,51.47531323753585],[-126.3712280441948,51.47262787527193],[-126.37297730218594,51.47068858607383],[-126.37509721644352,51.467442721080815],[-126.37667155532695,51.4644717908216],[-126.37713726503881,51.46247776245484],[-126.37550344526598,51.46099105019274],[-126.37148465176303,51.4598913346639],[-126.3691092583083,51.45971957035751],[-126.36728383368698,51.458970446739805],[-126.36500951328887,51.45696733020439],[-126.36319715441489,51.454502152685656],[-126.36265810779251,51.452790726806484],[-126.3614793166525,51.45112957452385],[-126.35955499140253,51.452437647128754],[-126.3563368581113,51.45500348022954],[-126.35229257842354,51.45870040794604],[-126.34953287672293,51.46126741694245],[-126.34669130896668,51.462511881366865],[-126.3422174204123,51.461648119409766],[-126.33874880247231,51.46066844351975],[-126.33610397477665,51.45952017861106],[-126.32961958350973,51.45852778560503],[-126.32596808186055,51.45783207931487],[-126.32103483764062,51.45695926707374],[-126.3162770793817,51.457924531983465],[-126.3137963669766,51.45923225007221],[-126.30884521420057,51.46144527817743],[-126.3073756311719,51.462124640235565],[-126.30565279791513,51.46057546711159],[-126.30283437872484,51.458282009000214],[-126.30119552541952,51.45724973330367],[-126.29554354275895,51.455063411637205],[-126.29353209236395,51.45482853891053],[-126.28796220414145,51.454352520174965],[-126.28586223681022,51.45406445031492],[-126.28249248422425,51.45262618443927],[-126.28031270992427,51.45067274443778],[-126.27794068423512,51.4500407746617],[-126.27255020788576,51.449623021950764],[-126.26889077999948,51.450014865647546],[-126.26375923955761,51.451478075724154],[-126.2576306412435,51.45202728178526],[-126.25443824304445,51.45133272265555],[-126.2496030993276,51.45022940027164],[-126.24640447693197,51.44982633154285],[-126.24192829492283,51.44975124219018],[-126.23908469527927,51.450708631837394],[-126.2369597559456,51.45338880820795],[-126.23457509604798,51.454354098061174],[-126.23210684856595,51.45434402514226],[-126.22845693302814,51.45358684566115],[-126.22571988468698,51.45294779084682],[-126.22371559735211,51.45225617882821],[-126.22125236268381,51.451785317453854],[-126.21668054519482,51.45188667919412],[-126.21302791470279,51.451588429656844],[-126.21103094799538,51.449927259954016],[-126.20568047251253,51.445393373010184],[-126.20177860985407,51.44263263086898],[-126.1977003212021,51.43896106449866],[-126.19370101694092,51.43672413182785],[-126.19033083009441,51.435847448831574],[-126.1864827388974,51.43686355284824],[-126.18327177326161,51.43788186477485],[-126.17999020998795,51.437299230439734],[-126.17853770340105,51.436035440571445],[-126.17826957076485,51.435834482849],[-126.1767827882168,51.43655146469163],[-126.17586333672102,51.437117213464184],[-126.17457706701116,51.437798510115826],[-126.1721002964412,51.43904929662237],[-126.16870880568831,51.44006746725292],[-126.16429756798682,51.44262682559873],[-126.158792156716,51.4452335468267],[-126.15567139986976,51.44665538261195],[-126.15456851721892,51.44716623072172],[-126.14962115585453,51.44846303646472],[-126.14366505149506,51.449474821103635],[-126.14046118899562,51.450208624460615],[-126.12854840856319,51.45274081153638],[-126.12121944257574,51.4542550092764],[-126.11076917881635,51.45696886184911],[-126.1056174378828,51.46003371247955],[-126.10358233632431,51.46242462867718],[-126.1019092600112,51.465276835699584],[-126.09911115673289,51.470635138187276],[-126.09743305557215,51.473937694331774],[-126.09704558710636,51.4759366265006],[-126.09838826283293,51.47891065537065],[-126.09883385669823,51.48034288589551],[-126.10000504932202,51.482286044428236],[-126.10198586839306,51.485548331623335],[-126.10296177025447,51.488633670299144],[-126.10277448989473,51.48909267682491],[-126.10292051151224,51.492575320513296],[-126.10288592285227,51.49628865877946],[-126.10349551610794,51.49948535318163],[-126.1062163653211,51.50229585841471],[-126.10964932264115,51.50710190304629],[-126.11170953348365,51.511794751688605],[-126.11102406480614,51.516359000404165],[-126.10862281988851,51.518578589690975],[-126.10503378993135,51.52011211756016],[-126.09843194352096,51.52105978750395],[-126.09100854554102,51.52171717433506],[-126.08725043303393,51.52210546488721],[-126.08229589078645,51.52271324712994],[-126.07881140539581,51.5233888008515],[-126.06966739243508,51.52175411735039],[-126.02980966965389,51.51532052005944],[-126.00006220311604,51.509830853323486],[-125.3275214399127,51.38924948897171],[-125.32550962238986,51.389096173566564],[-125.32036426665728,51.38782845264813],[-125.32000459675356,51.38782909812466],[-125.31532542286567,51.38713280111982],[-125.3115600495445,51.3859655570411],[-125.30862213548876,51.38525147373671],[-125.30523300460676,51.38487845486784],[-125.30231503069618,51.38473432464558],[-125.29837922638279,51.38436895723279],[-125.29060052042362,51.38323950777682],[-125.28711373736746,51.382696473806675],[-125.28455840183767,51.38237799634351],[-125.2818082786497,51.3816559853445],[-125.28033391404433,51.38121185983969],[-125.27729987802212,51.38026801824495],[-125.27463812225749,51.37943531207339],[-125.27196683652166,51.37831411828013],[-125.27020003485038,51.377300787717644],[-125.26799025729231,51.376117943161496],[-125.266705096887,51.37555872146182],[-125.26486372943066,51.3747187374156],[-125.26256315760344,51.37382187960916],[-125.26236456677414,51.37365677029126],[-125.26059632390115,51.37189431437459],[-125.25874652987572,51.370715313756726],[-125.25598227516524,51.36919198365195],[-125.25440979974954,51.36863634127172],[-124.77208784980488,51.24185863850983],[-124.66792288856557,51.21303640219291],[-124.55405983507882,51.181294095442006],[-124.5351398902135,51.17654636241061],[-124.52275617730206,51.1742932753365],[-124.50993931533691,51.17260948024239],[-124.49503565969668,51.17042047959774],[-124.4949650312945,51.17039204172015],[-124.4727196688849,51.16315232131888],[-124.45586439823552,51.15959080789837],[-124.44136326126889,51.1493904249909],[-124.42532400486984,51.15249257045238],[-124.41864907212465,51.16107511592966],[-124.41415226211015,51.1683352370825],[-124.41309712122194,51.175822058724876],[-124.40929971890785,51.177887875241545],[-124.4093060070086,51.179310726225395],[-124.4064842280151,51.18091705626812],[-124.40032457680472,51.184522374039794],[-124.39731607280406,51.18572791238904],[-124.3945141827541,51.18715687370062],[-124.39078887335226,51.18915855533969],[-124.38889118408696,51.19013442959988],[-124.3850656363164,51.190940169362975],[-124.38016553660664,51.19174495443059],[-124.37680263619563,51.19203565337266],[-124.37561356518617,51.192035957167],[-124.37334579635592,51.19215203634311],[-124.37115890078827,51.190845363084186],[-124.37024782951785,51.189128274054035],[-124.3703320170793,51.18644617060112],[-124.37195388769092,51.18284445888212],[-124.37330915967398,51.17947572958226],[-124.37185267247327,51.176624329405435],[-124.37057489824272,51.1735908305702],[-124.36902051533244,51.17068576472747],[-124.36838695984007,51.16805440691773],[-124.36811140760776,51.16737074172144],[-124.36873387935572,51.164458375136064],[-124.37145879473806,51.16159937720684],[-124.37318453590628,51.159433100232626],[-124.37562468548235,51.156516007016684],[-124.37679958427069,51.15531104678099],[-124.37770436308912,51.15405391181685],[-124.37823775539155,51.15159874209531],[-124.37805544555056,51.14914450114258],[-124.37460405874984,51.14646583152189],[-124.36961004239576,51.14566859290309],[-124.36324087725154,51.14607644857415],[-124.3616110985545,51.146418171903214],[-124.35271970483353,51.147684000697886],[-124.34418062446248,51.14946675534477],[-124.34227436678918,51.14992257690956],[-124.33701222212584,51.15055625601306],[-124.33247057263546,51.15067555528522],[-124.32802416250411,51.1501652078677],[-124.32621018266249,51.14930649235558],[-124.32394019018224,51.14839719122681],[-124.3218371753369,51.14685889031835],[-124.3195657692517,51.144857776371154],[-124.31448247933349,51.142293193055885],[-124.31131116777772,51.14064104173134],[-124.30775485669899,51.13858393780491],[-124.30603357707201,51.13681753296084],[-124.30476161459461,51.135278444028],[-124.30294659213865,51.13447431579884],[-124.29895706487594,51.135160165630985],[-124.29586985378192,51.136192357024335],[-124.29359490107167,51.13768017933664],[-124.28896761069086,51.14042381701837],[-124.28452031247991,51.14145638747539],[-124.27770533412631,51.14191156741135],[-124.27081398922246,51.14248640603905],[-124.26518412431574,51.143001655679],[-124.2609995391881,51.14351646784111],[-124.25728833992575,51.145459082179705],[-124.25374666055356,51.14854193675932],[-124.2500141814717,51.149915946225114],[-124.24483821087469,51.15014256070315],[-124.23747884878566,51.15020293580942],[-124.2299482551726,51.149171785386486],[-124.22740437231751,51.14871760027237],[-124.22469062696483,51.147859359226565],[-124.22050680405188,51.14654453433848],[-124.21659903325913,51.14477645685914],[-124.21452229492942,51.14374729157153],[-124.21015766875317,51.14231918785255],[-124.20435589676246,51.14140296556879],[-124.2019969969093,51.141345175636744],[-124.19527067419193,51.141001988334935],[-124.18909301660607,51.14054147616305],[-124.18446988423148,51.13951291468298],[-124.1829311271503,51.13899866710647],[-124.17930664021779,51.136654536465024],[-124.17893717682989,51.13379933134314],[-124.17967746258049,51.12900191214069],[-124.18049582029178,51.126835521167],[-124.18049330798836,51.12654751861838],[-124.17877586452761,51.12237722802215],[-124.17679169874836,51.11844057572089],[-124.1755218593812,51.115924932552446],[-124.17480702753787,51.112783386629935],[-124.17309320505139,51.10889870283651],[-124.17155153961333,51.105702726392025],[-124.17046511827027,51.101873050550516],[-124.16974175835523,51.09964738292295],[-124.16766224515334,51.096333672510895],[-124.16441345144428,51.09364920776361],[-124.15834173816816,51.090105120456954],[-124.15789150926354,51.08993159947997],[-124.15262863549643,51.08827362972573],[-124.14746374797326,51.08633129273689],[-124.14438838804045,51.08501705706821],[-124.14384781343409,51.08461352221201],[-124.14357138412497,51.08336051417131],[-124.14385273521941,51.08141331495451],[-124.14403622370843,51.07941341947636],[-124.14359084111103,51.076730646409565],[-124.143507529248,51.07393314518517],[-124.14486952763828,51.07176853159196],[-124.1478604503799,51.070970673720154],[-124.15439490010154,51.07120035438402],[-124.15774799284856,51.07200244220666],[-124.16136564647562,51.07297490082091],[-124.16164158597826,51.07252133879198],[-124.16545066540536,51.069547643928075],[-124.16908941106236,51.06584015814982],[-124.17054530708427,51.063787359071654],[-124.17136250016452,51.06058795797782],[-124.17054867740771,51.057450747655444],[-124.16720507969684,51.05505208503595],[-124.1633936643262,51.05361572327356],[-124.16177482361557,51.05304307687298],[-124.15860851223118,51.051901699229624],[-124.15316191707953,51.04996047617776],[-124.15099345586893,51.0481857305366],[-124.14856288898007,51.044476610605756],[-124.14739198037748,51.04138771897591],[-124.1470371936604,51.038590692022034],[-124.14577112472642,51.03367906132495],[-124.14289239061122,51.02944980799342],[-124.13646944915384,51.02602014606013],[-124.12795445075224,51.02246995057627],[-124.11962986502408,51.02086413215758],[-124.11121472104928,51.02006122136955],[-124.10269466582528,51.02005253086527],[-124.09690041680346,51.0200472483414],[-124.09617510272557,51.01998725633648],[-124.09455830059605,51.01941474428977],[-124.09329176419796,51.018328852291916],[-124.0927528190278,51.015583418032406],[-124.09258422242716,51.01318840330197],[-124.09150135053846,51.01181758790473],[-124.08815282680632,51.01004277954308],[-124.0849039485546,51.00861146613917],[-124.08363054712143,51.007697675819955],[-124.08183035437298,51.0060961354172],[-124.07975886051426,51.003178456276956],[-124.07803958822961,51.001692753511854],[-124.07773892645567,51.0007253394263],[-124.08116885063525,50.99561438485762],[-124.08464650602008,50.993357278585634],[-124.08935999331463,50.99054394047651],[-124.09006368487108,50.98843428584908],[-124.09108344541913,50.98593586308376],[-124.09144639479173,50.98478661327623],[-124.09093267603595,50.982463124934874],[-124.09004758907771,50.981486916422924],[-124.08764412194121,50.98067181584182],[-124.08488798037344,50.98043398158634],[-124.08087929050177,50.98113754960013],[-124.07440304102282,50.98218159937648],[-124.07134763770422,50.98193830436804],[-124.06984813085728,50.9813303516599],[-124.06836771561048,50.9799535319537],[-124.06814370081261,50.97821259947198],[-124.06760615656486,50.97646851579144],[-124.06403918209236,50.97389634747737],[-124.06067668099105,50.97384396024804],[-124.05763898092883,50.973208698864276],[-124.05590223261225,50.97085877412662],[-124.04087902398027,50.950338842840324],[-124.03898906584216,50.94470638666277],[-124.03680328215833,50.93868464595095],[-124.03078116221049,50.9366538640399],[-124.02737937507496,50.937553681848925],[-123.99981479540835,50.95849206524224],[-123.99911841545969,50.95876488177187],[-123.99771466570334,50.96050734481203],[-123.99835239806687,50.96376564928804],[-123.9983086361717,50.963787884650564],[-123.9947538054329,50.96549363262791],[-123.99067128737052,50.96498328140762],[-123.9862306760413,50.963565781892676],[-123.98188646431566,50.9619140076917],[-123.97527088347175,50.95786801490397],[-123.97036801855488,50.954732398966954],[-123.96003205049784,50.94794772641249],[-123.9524998469395,50.94315983656207],[-123.94489591467999,50.93779848636789],[-123.94099386786029,50.93591223017454],[-123.93267373538372,50.93438304773564],[-123.92552463497506,50.93525451681699],[-123.92028811377465,50.936348524567684],[-123.91540928666842,50.9370991285095],[-123.90402310967235,50.93837839680277],[-123.89624236465546,50.93992798832311],[-123.89291723756895,50.943362058683036],[-123.88984842999554,50.94588504972316],[-123.88532374839511,50.947547845857926],[-123.87900346805445,50.94950333391833],[-123.87699828799879,50.94372523018924],[-123.87382536797912,50.939442103754175],[-123.86947359729723,50.93658854904306],[-123.86593899138457,50.93453252735847],[-123.85834808294405,50.93448505281553],[-123.84695332137161,50.93443995696843],[-123.84062790709602,50.934441951982784],[-123.83962525292638,50.9307278726212],[-123.8378225137443,50.92500888383088],[-123.83383573697783,50.92175263081372],[-123.8275934876016,50.91832565072078],[-123.81936903084151,50.91410113702231],[-123.813302982463,50.91089965044195],[-123.80662497963432,50.9114784695725],[-123.79071957897668,50.91205914231136],[-123.78619670555263,50.910229740776686],[-123.77752209165891,50.90857624912334],[-123.76406461846881,50.905491449404664],[-123.763968400337,50.90400084881232],[-123.7639720448351,50.90080005962185],[-123.76432822792853,50.898803529186374],[-123.76478785308981,50.894739150555516],[-123.76478435759057,50.88655936873921],[-123.76243325419564,50.885480868746065],[-123.75485698780588,50.88501994102562],[-123.74907060556149,50.88490782240891],[-123.74744829870713,50.88490723603936],[-123.73931971296032,50.88467844019241],[-123.73136758901481,50.88433863000838],[-123.72740823915733,50.88216205192268],[-123.72433583291445,50.87850335971254],[-123.72207387584295,50.873469432119414],[-123.72208834404536,50.873185564795556],[-123.71937272586797,50.87398618132257],[-123.71395552596826,50.87558526076773],[-123.70464358854386,50.8798696213592],[-123.69624474152502,50.883245948446095],[-123.69127560844706,50.881643141238264],[-123.6870415083248,50.87986713916745],[-123.67809863439746,50.87780200485891],[-123.67530570177904,50.877058401192585],[-123.6709712803902,50.8772272916764],[-123.66735676461896,50.878596534325574],[-123.66490425581013,50.88168814049419],[-123.66290887201949,50.885284545790135],[-123.66245737773363,50.88711377978723],[-123.66244473907945,50.889803530542345],[-123.66244122831166,50.89449495742425],[-123.66116194859468,50.899353504525344],[-123.65817105364299,50.902093373255774],[-123.65410064297386,50.90369303502094],[-123.65075125420024,50.902948446578726],[-123.64408325962837,50.9008817486704],[-123.63632394262513,50.89738933895648],[-123.63072298394795,50.895898016451774],[-123.6236857158817,50.89411932257448],[-123.62124057335733,50.894058480242],[-123.61355619073683,50.89427986114647],[-123.6095825783972,50.89644664925076],[-123.60785468922451,50.898673601318734],[-123.60621583063454,50.901361245439205],[-123.60394509068654,50.90467670263029],[-123.60104325575753,50.90913099888491],[-123.59731197823244,50.914961868801626],[-123.59704539387315,50.91541666147666],[-123.59430840223756,50.918900496540516],[-123.58939973775084,50.925927274437726],[-123.5855782426111,50.931527774431935],[-123.57994404708799,50.93900684350619],[-123.57489296092811,50.93677221267984],[-123.56876077245005,50.93372995455808],[-123.56035224305246,50.931948043960894],[-123.55149548519604,50.93107671630048],[-123.54661894891606,50.93140935740863],[-123.53783916074478,50.933797002799565],[-123.53376016162939,50.93567525136626],[-123.52578303981166,50.93897759882886],[-123.51553811212335,50.94485186713646],[-123.51452775593174,50.94559214122749],[-123.5113373192582,50.95015514199552],[-123.50587230660452,50.956379822353874],[-123.49824944529574,50.96139480570555],[-123.49242842819048,50.96527132404069],[-123.48881027291485,50.966981931241065],[-123.48345424321447,50.96890845371025],[-123.47802186267197,50.96889890230399],[-123.47224614840341,50.9673993261691],[-123.46908896027306,50.96624714184793],[-123.46266762176782,50.965830981023736],[-123.45875693968358,50.96764860108477],[-123.45711892437204,50.96936706650811],[-123.45366431558094,50.971928839343306],[-123.45057423722469,50.97409444471563],[-123.44638305057677,50.97705260771431],[-123.43958322341854,50.97898019424196],[-123.43232321883931,50.98096200531409],[-123.426797370833,50.98180262255237],[-123.42482482609694,50.98088582138205],[-123.41967501851123,50.97892391598538],[-123.41415721548215,50.978396038454534],[-123.41017234718561,50.97947179387559],[-123.4050781905163,50.98220266939028],[-123.40151112909078,50.98613397946442],[-123.39778598374086,50.98909667620091],[-123.39522886400286,50.99086318322363],[-123.39004134533938,50.99490592671236],[-123.38368215496865,50.99677137320732],[-123.37617532623827,50.997033818519455],[-123.36792572396607,50.997065525476415],[-123.36313201102014,50.9970514214135],[-123.35425671656927,50.99656479797193],[-123.34928541146068,50.99545864480949],[-123.34332918218553,50.994123421971956],[-123.34106090919822,50.99411581907337],[-123.33281735730438,50.99500604114952],[-123.33000762119799,50.99522292075524],[-123.3259733148203,50.99206728918151],[-123.32410474164037,50.987543314428876],[-123.31962961695412,50.982721792847464],[-123.3165708558871,50.98139970256801],[-123.31167903315857,50.98138270001094],[-123.30931539597647,50.98320138217208],[-123.30701815016468,50.98627909769725],[-123.30425538973905,50.99044301249217],[-123.3011414909311,50.99379923098185],[-123.29659374670673,50.99561402997481],[-123.29134064218752,50.99588008979418],[-123.28591317922994,50.99643037996825],[-123.27557788444537,50.99696035864114],[-123.26770289061609,50.99739087365076],[-123.25102973621894,50.99840233409775],[-123.24685365880548,50.999240840490444],[-123.24376134332996,51.000090613947584],[-123.24376198472181,51.00054162096628],[-123.2430947099364,51.00163841929981],[-123.24422091482509,51.00465844313977],[-123.24525739299767,51.007054518597116],[-123.24892552219436,51.01006204003611],[-123.2509693439603,51.0125646871889],[-123.25148238511593,51.01651142832836],[-123.253229890431,51.018501299168854],[-123.25621573279706,51.02380009892541],[-123.25574109739662,51.02872121717513],[-123.25433599881313,51.03159103292922],[-123.25231747202622,51.035603332532474],[-123.25056261429724,51.03950353704558],[-123.24618587441213,51.044677295574324],[-123.24325097880046,51.048239026186664],[-123.23959001970364,51.05198111802893],[-123.23688580633345,51.05388261167188],[-123.23060074065903,51.05798338673577],[-123.22537244666775,51.060244790623535],[-123.21887830185474,51.063314290617335],[-123.20857648441287,51.06646089461566],[-123.20605253081018,51.0672771880658],[-123.20126901238257,51.06901951177199],[-123.1949272103532,51.069625427041586],[-123.19466849436337,51.07146106117023],[-123.19041749528006,51.072226651148505],[-123.18643417369418,51.07327789120583],[-123.18111265858386,51.07536536577086],[-123.17388729703195,51.0783820227967],[-123.16866682226048,51.08200691158822],[-123.16234774742546,51.08513157250752],[-123.15768587056507,51.089386127589286],[-123.1538715956403,51.09535461487363],[-123.15155387453682,51.099829313451046],[-123.15107677009371,51.10526424568005],[-123.15185201224088,51.10834682602554],[-123.15210508232889,51.11355082923804],[-123.15046335343399,51.120185574490186],[-123.14858316834616,51.12294654005013],[-123.14428121657919,51.127085497964465],[-123.14248152310746,51.12880721669991],[-123.13923734481519,51.13139640647971],[-123.13418210299879,51.1334278703557],[-123.13019549730512,51.13464393844498],[-123.12275000141642,51.13577051342644],[-123.11785389997046,51.13665350402371],[-123.11596798201177,51.13791715585895],[-123.11061568141217,51.139204305704816],[-123.10307330419997,51.14003958763983],[-123.09935225668055,51.14045496245399],[-123.09451386664055,51.13825188120296],[-123.08738164502392,51.134795365403654],[-123.0805183406617,51.13031307417866],[-123.07705378256905,51.12901468954778],[-123.07241928446551,51.12983341944278],[-123.06826585238099,51.13225272106245],[-123.06974633785268,51.134765125665844],[-123.06977782856639,51.13710841815889],[-123.06707690864872,51.139634506135664],[-123.0645565018831,51.141591257548406],[-123.05983009190098,51.14161186575318],[-123.05401248099301,51.142324876998146],[-123.0493156089728,51.144915758953],[-123.04371842063121,51.148545420583396],[-123.04092337378609,51.15073147369066],[-123.03902885996497,51.15251034892002],[-123.04204432058421,51.1543271064752],[-123.04589288460937,51.156542432501254],[-123.05093784222915,51.16080618695564],[-123.0541675213375,51.165022269841124],[-123.05377054492301,51.17057002996794],[-123.05170870943917,51.172921472429834],[-123.0502722764338,51.17556160641255],[-123.0499493928016,51.178477938528694],[-123.05206943494255,51.18172542364921],[-123.05927506969138,51.183068052810704],[-123.06511161680827,51.184530732124735],[-123.06768810636838,51.18674856496651],[-123.06672314469012,51.190069949857765],[-123.06572923223605,51.19967627775731],[-123.06463383297674,51.20734358207308],[-123.06430916806025,51.210947150721786],[-123.05838325276817,51.21034705063561],[-123.05282473816293,51.2093996220876],[-123.04816849883048,51.20804197725037],[-123.0427735326851,51.205724695944966],[-123.03784041414131,51.20465811017063],[-123.0309865597728,51.20251479056419],[-123.02269071068554,51.19986295901613],[-123.01227470710305,51.19698760123611],[-123.00656070476002,51.198380607004026],[-122.99782349523761,51.19910273964078],[-122.9914440489583,51.19866950810596],[-122.98096275702855,51.19699466006434],[-122.97275853799997,51.195365871100904],[-122.96766545562338,51.19458050174594],[-122.96274008726402,51.19448851219844],[-122.953911054415,51.193831627110114],[-122.94580837949806,51.192830896157496],[-122.93904927744792,51.190853977180396],[-122.93731674497708,51.18937146867228],[-122.9324623484815,51.18618887861706],[-122.9275422135033,51.184999735009335],[-122.92262508425944,51.184390610960534],[-122.91732851318375,51.18326206380345],[-122.91077211119612,51.182939540933],[-122.90258027731858,51.18079192274414],[-122.89554181940201,51.177328601003886],[-122.89152701504685,51.17510795715073],[-122.8866013046547,51.1730086051871],[-122.8813946045614,51.170224455776385],[-122.8773686272663,51.16634886041285],[-122.87615790377538,51.164008607925176],[-122.8755106562543,51.16200969915388],[-122.86979455742154,51.16322559197802],[-122.86251969900046,51.16399007588501],[-122.85916070569941,51.164283013274336],[-122.8559527505998,51.16143247901001],[-122.85131533330053,51.160361188190144],[-122.8461211875149,51.15866021799481],[-122.84009828611681,51.15633141084787],[-122.83562905909062,51.15331511946225],[-122.83105842383347,51.15052382669076],[-122.8255858633882,51.14773500859345],[-122.82266343954983,51.14534302166333],[-122.81512297043008,51.1452448364981],[-122.81148047561207,51.14571030866479],[-122.80458406530462,51.146412637995454],[-122.79804533130591,51.147513971063425],[-122.79322696609789,51.149182878371654],[-122.78943797806303,51.153249586346966],[-122.78841851238815,51.15130348409453],[-122.78477578142888,51.14839902739957],[-122.78092317216087,51.14326014857831],[-122.77553264837377,51.13801475413773],[-122.77153738422398,51.13762178048563],[-122.76845724288994,51.13842832829588],[-122.76573514636503,51.13923270188955],[-122.75974491846051,51.14164736590877],[-122.75601372692698,51.142341057642405],[-122.75421038305204,51.14565550166009],[-122.75221822868976,51.14880607985904],[-122.7479781382969,51.154871683076124],[-122.74016508165127,51.158655017641514],[-122.73453235618875,51.15946550322991],[-122.72934272652483,51.158732048162605],[-122.72697775185873,51.15719229055955],[-122.7243314324434,51.15422596621024],[-122.72268404409132,51.15131556371121],[-122.72166932730002,51.14856901184736],[-122.71892711726863,51.14400497038018],[-122.7179212120814,51.1411445723864],[-122.71526706497588,51.13617569264165],[-122.71381053421764,51.13360542470033],[-122.70888946294008,51.13064526626222],[-122.69923353986623,51.12648288982566],[-122.69796012171514,51.12396939881102],[-122.6962254706705,51.11957565651345],[-122.69329049910183,51.11477531355584],[-122.68819860452516,51.11146415587918],[-122.68283139589455,51.109358599825335],[-122.67764558424393,51.10387684142185],[-122.67071955358307,51.09834052282772],[-122.6633475635964,51.09285958232891],[-122.65689615040448,51.09075814458836],[-122.65271895155898,51.09075762056401],[-122.64309488311108,51.09070926857649],[-122.63411056150736,51.090146643179665],[-122.62810216010679,51.08392416193689],[-122.6224636870278,51.08038430772428],[-122.61411836912345,51.07822118146577],[-122.61247913961718,51.080964602854806],[-122.61248884423352,51.086280689978224],[-122.60777101856874,51.08999427362531],[-122.60042145256445,51.09200406528107],[-122.59425124225076,51.09280411288906],[-122.58743823552723,51.09451919532845],[-122.57872473782606,51.098239109996186],[-122.57600135647544,51.101271562508494],[-122.57526820499571,51.1059566406868],[-122.57800054229607,51.10801499756058],[-122.58308409022777,51.110583399240994],[-122.5883600990048,51.11400792552271],[-122.59217170039928,51.1167524950465],[-122.59291190957296,51.12035236849101],[-122.59336398172064,51.127150184112864],[-122.59346632910217,51.133095267097005],[-122.59110444336345,51.140357885451806],[-122.59219492932559,51.142011026720375],[-122.59501026426966,51.14526676482059],[-122.59765352299388,51.148530140866676],[-122.59947799560354,51.15126650903453],[-122.59857010465241,51.1539535844339],[-122.59547862801051,51.159329638813034],[-122.5925792807528,51.16350024347859],[-122.59067176136773,51.16613288305565],[-122.58594938972621,51.17219132416688],[-122.57939927434289,51.17293664173573],[-122.57338986712841,51.17391541957693],[-122.56228591381256,51.17774363190497],[-122.55992763778546,51.180426647464394],[-122.55610291081953,51.185743915417206],[-122.55365463065411,51.18957454583412],[-122.55192445122279,51.192832162633124],[-122.5506376909531,51.19757567084036],[-122.54836682714262,51.2016919071808],[-122.5438163030341,51.20431820498586],[-122.53899107356095,51.20494446683022],[-122.53179875895765,51.2064898963089],[-122.52487856723228,51.207119152597265],[-122.51905207191932,51.20751825685317],[-122.51494754602034,51.206083821062954],[-122.50759086891225,51.20059826400439],[-122.50431358283127,51.1970519944147],[-122.50048594185397,51.197396278055976],[-122.49029265597403,51.19916283559818],[-122.48446616747334,51.20047359733543],[-122.48119369117285,51.20104520422999],[-122.47171707473743,51.20315661533988],[-122.46634347880422,51.205609262398475],[-122.46278263491558,51.207089844084976],[-122.45923898583167,51.20817254521872],[-122.45121467588721,51.21056660791135],[-122.4480228023082,51.211190936807114],[-122.4396399563307,51.21392517436137],[-122.43808855779707,51.21626891268227],[-122.43753477013085,51.21940927721908],[-122.43624238717197,51.22495156209024],[-122.43250325535098,51.22843512530242],[-122.43031588470059,51.22957610117728],[-122.41581006503883,51.23590313348321],[-122.39117069817073,51.24690286689373],[-122.36990960666981,51.255783593379455],[-122.36653226134902,51.25703685209779],[-122.36250910913368,51.2586310283421],[-122.35548591793712,51.26124522396721],[-122.3479927215999,51.26414831406005],[-122.34487435637546,51.26677225180464],[-122.34177792630767,51.267909736422574],[-122.33568023572809,51.26538579851172],[-122.3319542616369,51.26389076648897],[-122.32675953235379,51.26365352328019],[-122.31828114856437,51.26386419655524],[-122.312086173607,51.264253262066724],[-122.31059867772238,51.26744976185947],[-122.308401697302,51.26950393899086],[-122.30421657064545,51.26818007451042],[-122.30002693098979,51.266569360800936],[-122.29841290758971,51.26370966075552],[-122.29279212618724,51.25861283885363],[-122.2897764608687,51.25826217410776],[-122.28468313598654,51.25870780211904],[-122.27492711646471,51.25908612285839],[-122.26480190016429,51.2600919097353],[-122.26226685689029,51.25762252587447],[-122.26018631463997,51.25470683510872],[-122.25792399557614,51.25224579019432],[-122.25357582460698,51.24948966904223],[-122.24656534994921,51.248161947951004],[-122.23746461794218,51.24676417377108],[-122.2324545395627,51.24640730000344],[-122.21933290044159,51.24586051409547],[-122.21103855027835,51.24646364658424],[-122.2031974448451,51.24763934464566],[-122.19880712033282,51.24842779393202],[-122.19451551997471,51.25007064552477],[-122.19096152287044,51.251316238905474],[-122.18656309436837,51.25335861874409],[-122.18466990136321,51.25482694583358],[-122.18400155593199,51.25408236283749],[-122.18328353147874,51.253247886403315],[-122.18144262249685,51.25111180164555],[-122.17916796213842,51.249344201397896],[-122.17324470684116,51.24609326681938],[-122.16987365379623,51.24306226603301],[-122.16760008558721,51.23780789655003],[-122.16642327260574,51.234152737205655],[-122.16532239731757,51.230617564579155],[-122.16305079287642,51.22684535601189],[-122.16004788014708,51.2243939594232],[-122.15422838440348,51.22496121383772],[-122.15140420065119,51.22376365083619],[-122.14967642597904,51.220852495979294],[-122.1496670864904,51.217822355067334],[-122.15176155553347,51.21337150096527],[-122.15313306081777,51.21079748347758],[-122.15249302777944,51.20891404878899],[-122.15195137375409,51.20606352336105],[-122.14986678279203,51.198183978115466],[-122.14477455921694,51.193725988274416],[-122.14159133166814,51.191899919206755],[-122.13730985834991,51.18835989829592],[-122.13322574754842,51.1847022598355],[-122.13014041219613,51.18258864870767],[-122.1251288896536,51.18053127827481],[-122.11950108845771,51.17716448630118],[-122.1157728553807,51.176019575909656],[-122.1075788036333,51.17527851529753],[-122.0960395798113,51.174589130792846],[-122.08868011551687,51.172356569685505],[-122.08076909461721,51.170694964040344],[-122.07330607687844,51.16835153422724],[-122.07049106359557,51.166466384331464],[-122.06123098528334,51.16257975881871],[-122.05324692690651,51.15806258544744],[-122.0478899975213,51.153031647774895],[-122.0437226427172,51.14897676050155],[-122.03945635675778,51.14491481710129],[-122.03783003355242,51.13937696702392],[-122.04112156629732,51.134922414728074],[-122.04549156352121,51.13121825805472],[-122.04749388106214,51.12739267586427],[-122.04632927612167,51.12293832740225],[-122.03670034037891,51.12041929200425],[-122.03327115242455,51.11744405489664],[-122.03064563484565,51.112531615938316],[-122.02710217167956,51.109564475228055],[-122.0189396593329,51.10829879333536],[-122.01022872963217,51.105492198437155],[-122.00569686211568,51.10302993864934],[-121.99972818631892,51.10206206545997],[-121.99443255764636,51.101570819268325],[-121.98880469394538,51.101430577361974],[-121.9867984295714,51.10129443323607],[-121.98315447246809,51.10106274256119],[-121.97917791712851,51.09912837452106],[-121.97796046990234,51.09565688262554],[-121.9756250310232,51.0895182869044],[-121.97298313458793,51.086926522320006],[-121.96790026624231,51.08695136255805],[-121.96717820830614,51.08702272311236],[-121.96309373834976,51.087084811820084],[-121.95995104236471,51.085760756525126],[-121.95885776694512,51.08314719049617],[-121.9581616737703,51.07915728474438],[-121.9561425677409,51.07650028212393],[-121.95557623904712,51.07564804199231],[-121.95242398591071,51.071926085378536],[-121.95036376649949,51.06784311816712],[-121.95021843081203,51.066297755939324],[-121.94863894153846,51.063066172829224],[-121.94838684990064,51.06112348489076],[-121.94726636123318,51.05788085040046],[-121.94869169659039,51.05416727071185],[-121.94845959709205,51.05184867474672],[-121.94775318457565,51.0479874288918],[-121.94746253102456,51.04741090920934],[-121.94704468731061,51.04681800339177],[-121.94633414489562,51.04598520285392],[-121.94600889586032,51.04563171454185],[-121.9455429226435,51.0452534807445],[-121.94514009319373,51.04481006020094],[-121.94434293583762,51.04398705167617],[-121.94412687318686,51.04369089081136],[-121.9438069717985,51.0432791276334],[-121.94343885630916,51.04292577353812],[-121.94301875221129,51.04251544596751],[-121.94230650506331,51.0418596186066],[-121.94188852693665,51.04126948687643],[-121.94154522332377,51.040801225446636],[-121.9411138201546,51.04035844463869],[-121.94073369906013,51.03998047009745],[-121.94013207949091,51.039053175045495],[-121.93993197090936,51.03858276610837],[-121.93962104280263,51.03807350229738],[-121.93924048088942,51.03738746599639],[-121.9389677840589,51.03677277846951],[-121.9386299166742,51.03624567326009],[-121.93806131021223,51.03511438483852],[-121.93748902341588,51.03418026573852],[-121.93715610328607,51.033912463819156],[-121.93683462040161,51.03367599514532],[-121.93609525719619,51.033163035738674],[-121.93489627354218,51.03236137238278],[-121.93446810506467,51.03204121579542],[-121.93399300281972,51.031765453130774],[-121.93282305837673,51.03111602946266],[-121.93137861290887,51.03034254819471],[-121.93060723550613,51.02971202354904],[-121.93004936850323,51.02940401433649],[-121.92935760378569,51.029153543282845],[-121.92903327445464,51.028948990817064],[-121.92793392989994,51.02846676468887],[-121.92723677538308,51.02796313649641],[-121.92674030843598,51.027453277564625],[-121.92636548356464,51.027176057858945],[-121.92539312023632,51.026400478843385],[-121.9248931178357,51.025773567618245],[-121.92443925183986,51.025111217073274],[-121.92391240099138,51.02430962327055],[-121.92363842715108,51.02355599119494],[-121.92353021522581,51.0231771200162],[-121.92342287721911,51.0227887284884],[-121.92315143636723,51.02200763628667],[-121.9228815185908,51.02105402764307],[-121.9227474495296,51.02064555167442],[-121.92231520031427,51.019904147309035],[-121.9219797113515,51.01935457149158],[-121.92177923750833,51.01904711546394],[-121.92137811294896,51.01859015954922],[-121.92089549488703,51.01808695405074],[-121.92049173556369,51.017814836183526],[-121.9199094240535,51.01715228920227],[-121.91908935453695,51.01612190102708],[-121.91873585037591,51.01576952868668],[-121.91828059403049,51.015280235880006],[-121.91787357960122,51.01488824807062],[-121.91718990747246,51.014241120570404],[-121.91654784876505,51.013607858443116],[-121.91555795742855,51.012716860981726],[-121.91519705354644,51.01244571108781],[-121.91495799705223,51.01209243007594],[-121.91418502201627,51.011018167423934],[-121.91342234902132,51.010298988484855],[-121.91268023606065,51.009200541683825],[-121.91225092887419,51.008585673244504],[-121.91179649886054,51.007933352981205],[-121.91122318681145,51.00670892575971],[-121.9110064591445,51.00626874979115],[-121.91086106794616,51.00598518948756],[-121.9104738457031,51.00553486499252],[-121.91007995861463,51.00500166471077],[-121.90981082815806,51.00451009858112],[-121.90977195050554,51.00384478975567],[-121.90982940555982,51.00353038784706],[-121.90996924936819,51.00325215751576],[-121.91017400517326,51.00257828911848],[-121.91034206109444,51.00230390083273],[-121.91052342687648,51.00204010664144],[-121.9109277819393,51.00152585154091],[-121.91210916970935,51.00017191344924],[-121.91311204867154,50.995782038056745],[-121.91304987687923,50.991790733476265],[-121.91109165692671,50.98620861278771],[-121.91133102649214,50.98468993870348],[-121.91095300539698,50.98445243040201],[-121.91029812155155,50.98411995291889],[-121.91009395841154,50.98401075930826],[-121.90992504976599,50.98382865346199],[-121.90948038328067,50.98338408439224],[-121.90891482581237,50.98301211907056],[-121.90860129779792,50.98285003292445],[-121.90840244515987,50.98268313101958],[-121.90801979896045,50.98234088023076],[-121.90739935024347,50.98194498508902],[-121.90713161676867,50.98175083393625],[-121.90657881643793,50.98124046975287],[-121.90613680257026,50.980923030000824],[-121.90600046967197,50.98085284666423],[-121.90582129059902,50.980782791395434],[-121.90527757813732,50.98063984031426],[-121.90475391970051,50.98043409785921],[-121.90450724991243,50.98032165974704],[-121.90412116262877,50.98017265259645],[-121.9035733923247,50.98007396028778],[-121.90330615908083,50.98002991986397],[-121.90306754192888,50.979985232238846],[-121.90252065278436,50.97987700543161],[-121.90201898205352,50.979742884999865],[-121.90174009943736,50.97967030702748],[-121.90121425238141,50.97948863566107],[-121.90079559836084,50.97922824209132],[-121.90068547046445,50.97918374408361],[-121.9005112562488,50.979059892807875],[-121.9001753082327,50.978831749889835],[-121.89974754243613,50.97851535971132],[-121.8995712194209,50.978414474109755],[-121.89939701130461,50.978290621000376],[-121.89906850192082,50.97798179345179],[-121.89879072541711,50.97774227882741],[-121.8986605524758,50.97760540787394],[-121.89828627840386,50.97717347628636],[-121.89803817438793,50.976611799691135],[-121.89793038734683,50.97638692255993],[-121.89785718829641,50.97625157480786],[-121.8976202065656,50.97603435203555],[-121.89728914625395,50.97575353281773],[-121.89713160925065,50.97560385801772],[-121.8968223563578,50.97539635000945],[-121.8963692344655,50.975045852987144],[-121.89614928189863,50.974798891601424],[-121.8958956278861,50.974452870066905],[-121.89541398143058,50.97394728942727],[-121.89508429268055,50.97365189561009],[-121.89496162807072,50.973433782692354],[-121.8945762731926,50.97312285865426],[-121.89404908106631,50.97264708606317],[-121.8937243682013,50.972297900303175],[-121.8934462679455,50.97190769351989],[-121.89307454456193,50.9716040078528],[-121.89247606571573,50.97128246896522],[-121.89217850896364,50.971103482244615],[-121.89189254682655,50.97095359460557],[-121.89134188203884,50.970578138979704],[-121.89081149874622,50.97013765239799],[-121.89052387796762,50.969851086013875],[-121.88984213415566,50.96934939071486],[-121.88973369547944,50.9692869523103],[-121.88948142654577,50.96908151591025],[-121.8888584318984,50.968716888620136],[-121.88826432265789,50.96850341354246],[-121.88803209023033,50.96839033846495],[-121.88739323021007,50.96788851499314],[-121.8868027043195,50.967481772014494],[-121.88662774681151,50.96736686218169],[-121.88642195969169,50.9672766732702],[-121.88604349460692,50.96704692059042],[-121.88541145098871,50.9667808837837],[-121.88503087354651,50.966574103787245],[-121.88439516896888,50.96634783696771],[-121.88399670025001,50.96618030743926],[-121.88374581410775,50.966114885990855],[-121.88338842164823,50.965966293124985],[-121.88268875065991,50.96566008758182],[-121.88203103968235,50.965363296722934],[-121.88172320826094,50.965296338250255],[-121.88132144471028,50.965164657309124],[-121.88058283544814,50.964971136505866],[-121.87985617840975,50.96480278567484],[-121.87960359606092,50.964755848759246],[-121.8791877743802,50.96462195240296],[-121.87745401427638,50.96376839583782],[-121.873593288027,50.96106906690694],[-121.87117500738967,50.95897981398207],[-121.86979880650902,50.95796780437737],[-121.8694291722814,50.95779847188852],[-121.86819073786873,50.958841838227634],[-121.86659011110602,50.95994269431047],[-121.86382540257343,50.96159036052581],[-121.86354136483284,50.96142134963549],[-121.86323036386767,50.961389077522306],[-121.86200621753322,50.961661015219505],[-121.8607904518927,50.961996215362866],[-121.8592725368255,50.96251084211084],[-121.85825566823517,50.963009080579205],[-121.85671815808405,50.96388725587137],[-121.85547847875135,50.96447843863011],[-121.85401001408285,50.96522700836811],[-121.8527411747119,50.96597731649142],[-121.8510451312698,50.96702271690127],[-121.84995402908869,50.96785602632747],[-121.84893654570483,50.96851157882484],[-121.84760023622229,50.969064815947526],[-121.84632920744248,50.96952994475874],[-121.84480913717576,50.97052216851639],[-121.84337624141727,50.971497371810194],[-121.841971058013,50.972480888955474],[-121.84096925832188,50.97373063812845],[-121.84056727720268,50.97482496438231],[-121.84023756933615,50.975909589935256],[-121.83979585020866,50.97681747170807],[-121.8395495561206,50.97746723830264],[-121.83962188658616,50.978221582069104],[-121.83930046799924,50.978605454608754],[-121.83868723076037,50.979209008500696],[-121.83624970210883,50.983289547685644],[-121.8336401060426,50.987372650434565],[-121.82998792212105,50.98946727522235],[-121.82439299624369,50.99049503232222],[-121.81852397651275,50.99078819901062],[-121.81405703986468,50.98968736298602],[-121.80786379374625,50.988266091420506],[-121.80206065262614,50.987861464655204],[-121.79602388037655,50.9887223146393],[-121.7951384025614,50.989478497621924],[-121.79284405915328,50.99184322615537],[-121.78982402708596,50.99432686748948],[-121.78678952345102,50.99590304889067],[-121.7827382417009,50.997202034752014],[-121.7788975382458,50.998838812272275],[-121.77631340876388,50.99942472849545],[-121.77303052441302,51.00375843344189],[-121.77227917766498,51.0056523601396],[-121.77154334107493,51.00783358278299],[-121.77016133559084,51.00974647565459],[-121.76675955703016,51.011108734303775],[-121.76300378168568,51.01258461234618],[-121.76210362461764,51.01288348407989],[-121.75691148387624,51.01473224157925],[-121.75235986228735,51.01645376169837],[-121.7499434031459,51.01751378174162],[-121.74433186427196,51.02044863215185],[-121.73759470599252,51.02214412399099],[-121.73569997773241,51.02222739690607],[-121.7296346627611,51.0224265576504],[-121.71933626935518,51.023538040265734],[-121.71236664875589,51.02392109058709],[-121.7111049150623,51.024109069452365],[-121.70666815728588,51.0241656329887],[-121.70214784179522,51.0243470149781],[-121.69881218199261,51.024842323028786],[-121.69249937757023,51.0256709771918],[-121.68670938451942,51.02906686682533],[-121.68532278628504,51.03068685360794],[-121.68260588390662,51.03363826034474],[-121.67869327032113,51.03608878972835],[-121.6757725186332,51.03818716658294],[-121.67350337993021,51.04078733605419],[-121.67135057797255,51.044246542556095],[-121.66926776722993,51.04713042596393],[-121.66788069526312,51.04903637563244],[-121.66473644563781,51.052679326507096],[-121.66091867789832,51.05530274094617],[-121.65783076852762,51.057625878603154],[-121.6521099671459,51.06038915835702],[-121.64627863102476,51.06252043039969],[-121.64127172245969,51.06470136598947],[-121.6388004069891,51.0668477616423],[-121.6365853967441,51.06842157256311],[-121.63274925665718,51.07047215550663],[-121.63046435038424,51.07289831114781],[-121.62689005179992,51.07460804435208],[-121.62432237229251,51.076411932812334],[-121.61958256148056,51.07846910710551],[-121.61554387376071,51.08023407805941],[-121.61249236189397,51.081131073923565],[-121.6075077048456,51.08130988804006],[-121.60030348366406,51.0829422591976],[-121.59645282992904,51.08481963857312],[-121.59134911561605,51.086769805847176],[-121.5887296986077,51.08748633065119],[-121.58938341175443,51.090851717849944],[-121.58500739995404,51.0932490249073],[-121.57942030098866,51.09457361988398],[-121.57114046737121,51.09690695157427],[-121.56892156672646,51.098479379309026],[-121.56336525574272,51.101060505402906],[-121.55970927325096,51.1031068756624],[-121.55334611933041,51.10586711559781],[-121.54553923207563,51.10858958089504],[-121.54188127444004,51.110926018523],[-121.5341063875127,51.11787101579173],[-121.52223650300705,51.125044094639485],[-121.51095823557495,51.13100487461105],[-121.50186146969406,51.13351341896393],[-121.49604165928908,51.1335220481169],[-121.49491767217093,51.13513466365786],[-121.49557587833544,51.13924023833981],[-121.49726975680926,51.14133491759413],[-121.49937277045247,51.144626662580066],[-121.50066060708116,51.1483254699223],[-121.50140518507361,51.15540362950908],[-121.50446622352122,51.16976694339044],[-121.50806581894857,51.17812754538012],[-121.50923829655444,51.180857233409306],[-121.51248566873903,51.1829352137787],[-121.51975533760827,51.18610569728407],[-121.52481565299725,51.190843747471774],[-121.53318898409859,51.19732348313394],[-121.53647808379631,51.2038538555926],[-121.53322614170598,51.207775286429126],[-121.52305138286849,51.21469984465456],[-121.51319213889192,51.222871836075385],[-121.50196268465528,51.23134546011741],[-121.49098323257772,51.239013961811054],[-121.4812643197345,51.24597914011953],[-121.46791683466226,51.25733167575076],[-121.45725559304367,51.26373767436741],[-121.4467681387265,51.26968143423264],[-121.43242971901226,51.28183634321777],[-121.42284616229708,51.291199126546594],[-121.41527040290912,51.294481311272136],[-121.41110569957354,51.29538279825927],[-121.39894134989586,51.29739645381357],[-121.39502536081338,51.30115177613354],[-121.39471822960711,51.30478975643286],[-121.39474308463474,51.30593207221761],[-121.39246688842222,51.306233471139436],[-121.38918008876884,51.30642839723777],[-121.38463021398644,51.30645418476463],[-121.3821667701049,51.306756166769276],[-121.37825773526342,51.30780862936692],[-121.37508068892124,51.308740224939015],[-121.370991042137,51.308765746348975],[-121.36724573929364,51.308389167388846],[-121.36623764962734,51.308396216837096],[-121.3618794377684,51.31002063938538],[-121.35698577603317,51.312217758207474],[-121.35392727702546,51.31475152513109],[-121.34776023527353,51.31673010387151],[-121.3436963086356,51.31978112405626],[-121.34363416438025,51.322009518568336],[-121.34267797745044,51.324524951977466],[-121.34059303931653,51.326138739614706],[-121.33807208779766,51.328608230564726],[-121.33600706687739,51.33084796725989],[-121.33338954568303,51.33286359560313],[-121.33104369266685,51.334077954216085],[-121.32604186761087,51.335079140862646],[-121.32323154595011,51.336460825375426],[-121.32279757563762,51.33851866917275],[-121.32237548428674,51.34046399471463],[-121.32028816134464,51.34167814862595],[-121.31757929663027,51.34386284629166],[-121.31377157579998,51.345541516918125],[-121.31058114127906,51.34601659178607],[-121.30694399382267,51.34649273177435],[-121.30220136427644,51.347204567938626],[-121.28872723128467,51.3499612240278],[-121.28627228724952,51.35082721075777],[-121.28109509155954,51.35222684179409],[-121.27234216509821,51.35324645377222],[-121.26714044085905,51.35338949169777],[-121.2599208457083,51.35313801299874],[-121.25316823764626,51.3524294203366],[-121.2507871598113,51.35193089368543],[-121.24794322926725,51.351316182749486],[-121.24048137155363,51.352780010597684],[-121.23593707137707,51.35457199140796],[-121.23211691305566,51.35619244235008],[-121.22839378997152,51.35757901646542],[-121.22340136652936,51.35937468819862],[-121.2220402204597,51.360234889005625],[-121.21914008991138,51.362132163948495],[-121.21403767690987,51.36267454595807],[-121.20874622274819,51.36309849626546],[-121.20391349509752,51.363808726463226],[-121.19870638362475,51.36411714303784],[-121.18492877605546,51.36412133788748],[-121.17541727522199,51.363593852806986],[-121.17231767006,51.36360455349191],[-121.16856578929807,51.36259655538142],[-121.15858940763428,51.360924297783484],[-121.1540245353567,51.3599754907686],[-121.15153720740051,51.35861221894105],[-121.14674716768806,51.354866027034525],[-121.13897655003818,51.353072791791014],[-121.13167102646261,51.35281561181818],[-121.13120954194756,51.35281937991887],[-121.12829347025043,51.35300037417395],[-121.12419333999891,51.35398673538686],[-121.11725873340201,51.35350110986684],[-121.11130434978082,51.35249224516413],[-121.10491267205633,51.352180563229496],[-121.09880679295628,51.353058461642675],[-121.09415662246363,51.35393052811813],[-121.08677372414857,51.35527261462865],[-121.08049114785919,51.35643487174608],[-121.07356539076923,51.35754630925056],[-121.06800278737849,51.35922286359155],[-121.06208754016254,51.36147088762303],[-121.06036062647935,51.362220542778545],[-121.05545783741744,51.36520131273361],[-121.04964672247496,51.369847843911224],[-121.04539220327017,51.37345998715653],[-121.04303162212686,51.375351399241914],[-121.03822031893434,51.37890461952925],[-121.03366640155149,51.38029314275427],[-121.02727444693757,51.38173915088153],[-121.02189638842114,51.3830134309668],[-121.01953231437166,51.38415572315382],[-121.01433125576553,51.38526255213327],[-121.00439401419855,51.38705679511014],[-120.99992948727528,51.38827476440624],[-120.99692279892155,51.38947992286051],[-120.99418896518557,51.39120207832316],[-120.98991091410745,51.39343796572325],[-120.98681066656476,51.39419163727506],[-120.98316715208507,51.39642275057585],[-120.97933631061717,51.39763540529486],[-120.97396130260731,51.399990283595905],[-120.97122782827402,51.40182162295226],[-120.96657173834194,51.40229425453044],[-120.96310867483959,51.402299517444625],[-120.960821012084,51.402876052270315],[-120.95999540587685,51.40328306874693],[-120.95581075303754,51.40455010043803],[-120.95205907285107,51.40455400080064],[-120.94721073342984,51.40342624751812],[-120.94509532327476,51.40149170121699],[-120.94225130240473,51.400125233790476],[-120.93932183109688,51.39950456802496],[-120.9349428535601,51.39894444405433],[-120.9292727940098,51.39907438417383],[-120.92480512681581,51.399536304011555],[-120.91768115332312,51.40063820787361],[-120.91083623447754,51.40219371408719],[-120.90645591614584,51.40414198387652],[-120.90280987548772,51.40535203596405],[-120.89668952091937,51.40661986705435],[-120.89230702108586,51.40783018581483],[-120.88912068657496,51.4095493045733],[-120.88683849999536,51.41006559092779],[-120.87998324139886,51.41081683207095],[-120.87441368961342,51.41180243394979],[-120.869666766334,51.41414900787715],[-120.86530389672342,51.41814951225785],[-120.86265700913614,51.419930075766814],[-120.85334391221423,51.424280521305896],[-120.84676404876757,51.42697101032608],[-120.84403520091357,51.42857702960513],[-120.84148655638869,51.43086162986173],[-120.83910208507358,51.432235733601175],[-120.83683752987687,51.43566482294312],[-120.83354647466592,51.43823942926221],[-120.8323603528857,51.439610073665946],[-120.82917453003543,51.44263650744486],[-120.82817582951584,51.445606267233494],[-120.82846524251447,51.44965952506176],[-120.82773321040929,51.45183318754923],[-120.8239901080187,51.452462813787264],[-120.82014727864293,51.453325112138565],[-120.81722584145614,51.45458092410387],[-120.81410752872632,51.454072815551655],[-120.81109731823467,51.453506010036946],[-120.8054221537443,51.45385540058354],[-120.80066178302918,51.454775725189435],[-120.7974653150413,51.45615231697059],[-120.7923549949234,51.45758441896155],[-120.78549406306563,51.45964342612359],[-120.78101451581792,51.461475826692414],[-120.77295889039566,51.46336385758021],[-120.76692944201561,51.46291042349161],[-120.7631648053314,51.46297520949512],[-120.75795656582936,51.46217895757108],[-120.7519995877525,51.460756090230255],[-120.74971501482509,51.46052720520926],[-120.74569441791094,51.461042482663416],[-120.7439552710701,51.462417087490294],[-120.74076034924126,51.46424336998058],[-120.73992388640819,51.464471213708734],[-120.73709148780912,51.46555934629952],[-120.73188374487877,51.466932021334394],[-120.72784951656021,51.46876005819285],[-120.72547658081197,51.470471140978646],[-120.72283078084382,51.47578127856134],[-120.72236790780867,51.48012188643056],[-120.7200818148896,51.48086155083558],[-120.71550551747981,51.4818916882177],[-120.70863656795093,51.482749544729835],[-120.69884310007765,51.48303901295548],[-120.69307942961942,51.48383787412372],[-120.68566281161058,51.48515252867596],[-120.68237260900766,51.48498100416701],[-120.67852482526436,51.484638105892124],[-120.67468137101265,51.48509574546683],[-120.67082676989243,51.486241259575664],[-120.66662657071466,51.48749248556274],[-120.66451034167589,51.4892037904649],[-120.6602126464698,51.494112237438166],[-120.65608997948604,51.49947653892675],[-120.65096007535831,51.501816412149516],[-120.64995023577481,51.502270040946804],[-120.64435753146988,51.50329740194145],[-120.64087762791843,51.50455247619428],[-120.63831197497674,51.50495170967057],[-120.631168161691,51.50540791519946],[-120.62320294765165,51.50489041986656],[-120.62045497272982,51.50488628153334],[-120.6114715479663,51.50642194688169],[-120.6033239920769,51.50727095842774],[-120.59956385647115,51.50584784290313],[-120.59864927397851,51.50481425205494],[-120.59471550932494,51.50127648448422],[-120.58859769236412,51.49938909788402],[-120.58154255946117,51.49818682682708],[-120.5733950989554,51.49669674599667],[-120.56543143478433,51.49348941772516],[-120.56187809600704,51.49017835142679],[-120.56161146428654,51.48812452219791],[-120.56115895821884,51.48441677711876],[-120.55989551129508,51.48025214268191],[-120.55687506925395,51.47813767125371],[-120.55773533570282,51.67305372090504],[-120.55912583551252,51.87575393809824],[-120.55920031182822,51.8843736757376],[-120.56030957325369,51.88371437543922],[-120.5605701416977,51.88358502710081],[-120.56132421376391,51.88327215032187],[-120.56205023164236,51.88306703837676],[-120.56244671411767,51.882944703621966],[-120.56272198661036,51.882828978788055],[-120.56318751557885,51.88253333252663],[-120.56334624635295,51.88245988252398],[-120.56371273556398,51.88225625432268],[-120.56391114623827,51.88215713446379],[-120.56471203511622,51.88174635596129],[-120.5650414804683,51.88153253549671],[-120.56536018308434,51.88134632334164],[-120.56596376012827,51.88108420017541],[-120.56677158911879,51.880822204608414],[-120.56716232097408,51.88073107512671],[-120.56760319531811,51.88069124390873],[-120.56803060485171,51.88056922404844],[-120.56851205422957,51.88040871589818],[-120.56879349649407,51.88024322358228],[-120.5691151656513,51.87998910002527],[-120.56966429257773,51.879578161049146],[-120.5704411642865,51.87919826777003],[-120.57083926110742,51.879062476967675],[-120.57108283315168,51.878995854122905],[-120.5712123889361,51.87892213647751],[-120.57159380131546,51.8787006389987],[-120.57177669266744,51.87856477070088],[-120.57192241312515,51.8784198346567],[-120.5720898778866,51.87820282034475],[-120.57226583964817,51.8779322206986],[-120.57241844284538,51.877688074892134],[-120.57260018337179,51.877385688887],[-120.57273835131485,51.87715491363388],[-120.57279934139369,51.87701665213301],[-120.57286744241668,51.87686522154665],[-120.57302098969869,51.876481651494316],[-120.57323501690436,51.87586136669617],[-120.57364676091855,51.87546921451486],[-120.57389892357995,51.87524552935564],[-120.5740743172184,51.87503788609573],[-120.57431855774287,51.874628799962935],[-120.574560781948,51.87426516553784],[-120.57476076365907,51.87397714643854],[-120.57487597207191,51.873754837414154],[-120.57510451121215,51.87335457104699],[-120.57536296395907,51.87297764890532],[-120.57563882724763,51.87253406603263],[-120.57592737282931,51.87179808249343],[-120.57610998998801,51.87129778694622],[-120.57621072538764,51.87097188164477],[-120.57597374313008,51.870971340637254],[-120.57568398110735,51.87096999135197],[-120.57568331601274,51.869656822049365],[-120.5756919848216,51.86888396369627],[-120.57569841660062,51.863748654505244],[-120.58741836708133,51.863742470345464],[-120.58842497494284,51.86374055060043],[-120.59907466845488,51.86373377033149],[-120.599998880954,51.863734611748995],[-120.60791070078895,51.86363500307547],[-120.61175570394924,51.86366356334524],[-120.62223845725313,51.8637367559736],[-120.62222336309225,51.870966702447966],[-120.62939392956056,51.870972461569174],[-120.62912749128421,51.87109268174677],[-120.62885184379418,51.8712580236551],[-120.62861589873941,51.871397100635065],[-120.62841745545607,51.871483393178345],[-120.62779161250616,51.87181225976112],[-120.62750980764474,51.871968303564536],[-120.62726574775319,51.87214355416066],[-120.6270137998987,51.872264449546364],[-120.62668550011192,51.87238345453462],[-120.62634396999394,51.87256537813669],[-120.62613645219722,51.87265124142176],[-120.62599196106109,51.87268438479473],[-120.62566365533195,51.8728033868155],[-120.62547362436936,51.8728805050878],[-120.62509230056143,51.87313366278215],[-120.625015015151,51.87321326315389],[-120.62479487892273,51.87325354478245],[-120.62451896409465,51.87334688500509],[-120.62417654989866,51.87340279656116],[-120.62375629537806,51.87343930839517],[-120.62348881319257,51.873479048120736],[-120.62322967491215,51.873554610988265],[-120.62281800832562,51.87365450501977],[-120.62263489429547,51.873749380762504],[-120.62205515959681,51.874043826483394],[-120.62200961588475,51.87408780056059],[-120.62179553931364,51.87418234620936],[-120.62154427347386,51.87431226014992],[-120.62127739794165,51.874450438188866],[-120.62101659901607,51.8745984653374],[-120.62070386105964,51.87475360842468],[-120.62043084645353,51.874838069231814],[-120.62033022364733,51.874944130325666],[-120.62022328821337,51.875130863455816],[-120.62005568814534,51.87526245408281],[-120.61988131383316,51.87533074380597],[-120.61966745586118,51.875497276217054],[-120.61945351272,51.87570879182502],[-120.61922436869938,51.8758661749175],[-120.6189799271319,51.876058820119496],[-120.61882728913714,51.876172559092815],[-120.61854511216468,51.87630157308703],[-120.61825640463633,51.8763948564547],[-120.61767503143845,51.87659867239459],[-120.61733154919733,51.87678103793899],[-120.617096641551,51.876911153894106],[-120.61679886137027,51.877004007592284],[-120.61642503332169,51.877121962092254],[-120.61621857960435,51.877198861504624],[-120.61611210435835,51.87732263944411],[-120.6160206005749,51.87742855898241],[-120.6157224169975,51.87753938622108],[-120.6154246296092,51.87763223630207],[-120.61514276132284,51.87774382896517],[-120.61471547038116,51.878013915103956],[-120.61471456752858,51.87887706893617],[-120.6146614679392,51.878849271939345],[-120.61460136011503,51.878789645132045],[-120.61456354569086,51.8787119554552],[-120.61454016820159,51.87863550223216],[-120.61453214186407,51.87856764344439],[-120.61459322360471,51.87850134164352],[-120.61465430405427,51.87843504875181],[-120.61464620902939,51.87836774458488],[-120.61461635506512,51.878299426606354],[-120.61457918003909,51.87823132232046],[-120.61454019197996,51.8781631327877],[-120.61448607751547,51.87809928879298],[-120.61444165028955,51.87803084352368],[-120.61438815750091,51.87796197206745],[-120.61432623702818,51.877902268781256],[-120.61425045056592,51.877851469001314],[-120.61416615145268,51.87779577020375],[-120.61408855223077,51.87774488507543],[-120.6140055138042,51.87769374417471],[-120.61393035059872,51.8776379078215],[-120.61385275193223,51.877587022526605],[-120.61378539335992,51.877527063203544],[-120.61370834794114,51.877471705024405],[-120.61364043796296,51.87741620944598],[-120.61357907218023,51.87735203294633],[-120.61350983267592,51.8772925428278],[-120.61345704956112,51.877232701701864],[-120.61339568541169,51.87716851614806],[-120.61334944773981,51.877099985150345],[-120.61330440072759,51.87703657573153],[-120.6132654157264,51.87696838569317],[-120.61323611890832,51.87689558554347],[-120.61322802524924,51.8768282901298],[-120.61323512857858,51.876756076801584],[-120.61325122764211,51.876684853295465],[-120.61327471721083,51.87661285259062],[-120.61328175076075,51.87654120281631],[-120.61325057145856,51.8764688809625],[-120.6132279732697,51.87640090351197],[-120.61330307417693,51.87633920244017],[-120.61335028771668,51.87628181355377],[-120.6133202142971,51.87620054613293],[-120.6132499408149,51.87614943779505],[-120.61314372983198,51.876138262313205],[-120.61302869354928,51.87615422229364],[-120.61289915267788,51.87616950010467],[-120.61278529181635,51.87617595070515],[-120.61267782079616,51.87616021675189],[-120.61257981512688,51.87612692367566],[-120.61247928836322,51.87608452337183],[-120.61238844975522,51.876037512952415],[-120.61229754276992,51.87599105708394],[-120.61220489149977,51.87594396124889],[-120.6121218587048,51.87589281890342],[-120.61203882610437,51.87584167649553],[-120.61195342761279,51.87579492153287],[-120.61187094844384,51.875739306219394],[-120.61179335555194,51.87568841944614],[-120.61171819752164,51.8756325904902],[-120.61164841021098,51.875577571936795],[-120.61157979891375,51.87551304421073],[-120.61151969878499,51.87545342455798],[-120.61144998169976,51.875397842305006],[-120.61138256122106,51.87533843607943],[-120.6113050381952,51.87528699433333],[-120.61121413392532,51.87524053757564],[-120.61113055051175,51.8751938672593],[-120.61103065012433,51.87514642930332],[-120.61093138700139,51.87510858567085],[-120.61083157201084,51.8750752057827],[-120.6107257638742,51.87504605165524],[-120.61061940381816,51.87502136126001],[-120.61051248959835,51.875001152486966],[-120.61039699502734,51.87497659898093],[-120.61028283009622,51.874956039861516],[-120.61016804235562,51.87494051697196],[-120.61006238832545,51.874924865852634],[-120.60994822368717,51.87490430639942],[-120.60983398944741,51.87488431040174],[-120.6097174576561,51.8748681471314],[-120.60961235833719,51.874848013878776],[-120.6094968646775,51.87482345946362],[-120.60939121117116,51.874807807724764],[-120.6092757874582,51.87478268951704],[-120.60916155384459,51.87476269284795],[-120.60905464093297,51.874742482712215],[-120.60894047724608,51.87472192225339],[-120.60883411788255,51.874697239142186],[-120.60871933133741,51.87468171480037],[-120.60860516796734,51.87466115400687],[-120.60849770218226,51.87464541611851],[-120.60849695105769,51.87606643748543],[-120.60849788943656,51.87630941714006],[-120.60849785264111,51.876412887916985],[-120.60798672141823,51.87640232835651],[-120.60765958011851,51.8763638786135],[-120.60734684895874,51.876371085332515],[-120.60665878600496,51.87647872475947],[-120.60593418300546,51.8765132165485],[-120.60534742943956,51.87646534346292],[-120.60450004935754,51.876210051887114],[-120.60357022754232,51.87584009088769],[-120.6028441017538,51.87547466161941],[-120.60216445940712,51.87514627433937],[-120.60179877056692,51.875021637543796],[-120.6013953256222,51.87493682550571],[-120.60127998697024,51.874925766459405],[-120.60024279482619,51.87476047883551],[-120.59999953182633,51.8746927764397],[-120.59949543269161,51.87455204267922],[-120.59886871765592,51.874179457732005],[-120.59828149102138,51.87354722976134],[-120.5975723315429,51.87338388699539],[-120.5972587808184,51.87310366573234],[-120.596641343666,51.8730683527029],[-120.59648883038618,51.87303360749181],[-120.59643619796545,51.87304630396675],[-120.59539740470744,51.87289439042946],[-120.59485635025572,51.87269902889369],[-120.59465871636282,51.87264583909113],[-120.59429825172528,51.87255290586494],[-120.59382626288001,51.87240353770645],[-120.59308600031571,51.87206492309468],[-120.59262097731073,51.87166843876211],[-120.59193371109001,51.871079253787585],[-120.59175796197533,51.87042368002148],[-120.59174295857602,51.86994214602677],[-120.59162171900569,51.869831821789575],[-120.59136873044572,51.86975464183224],[-120.59105741325816,51.869721387624516],[-120.59078896144254,51.86966597067964],[-120.59030873284738,51.86953924897719],[-120.58972221981969,51.869225865326435],[-120.5896602924558,51.868946256282335],[-120.5896520939985,51.868747916260475],[-120.58946273504266,51.868613568477805],[-120.58891280641707,51.868490295994405],[-120.58869836073364,51.86849928531033],[-120.58803583129537,51.868489919417634],[-120.58740947969865,51.868468195617325],[-120.58616687707618,51.86840215349877],[-120.58605255281093,51.86842711760085],[-120.5857080237346,51.8684558214831],[-120.58557849615157,51.86847106856453],[-120.58530501483209,51.86851494403328],[-120.58478528582457,51.86854491842571],[-120.58445769389377,51.86856936257445],[-120.58422829150636,51.86865467650789],[-120.58400671893504,51.86879435670237],[-120.58393033288328,51.869012876111555],[-120.58382301476168,51.86928955293335],[-120.58380808192203,51.86958577768279],[-120.58399145885126,51.86978283775182],[-120.5845497353731,51.87001506083698],[-120.58452553028998,51.8704593120793],[-120.58427362733106,51.87093103876482],[-120.5840378820694,51.87121401541161],[-120.58385559037666,51.87144833913862],[-120.5835032826738,51.8717741579735],[-120.58293870055986,51.872193980078734],[-120.58284108228257,51.872524535043965],[-120.58314552614006,51.87293596381187],[-120.58319859716698,51.87330120501676],[-120.58310600610763,51.873649993381605],[-120.58265624745097,51.874099421635144],[-120.58229063879546,51.874370630117625],[-120.5818096626914,51.874733666119546],[-120.58120699176027,51.87506338343006],[-120.58066664162858,51.875375809885504],[-120.58027601186915,51.875745363713676],[-120.58017739173673,51.87587847363218],[-120.58005592129356,51.8760779955573],[-120.57993382442916,51.876282544546534],[-120.57986463726584,51.876442915701695],[-120.57976518844008,51.876611986655206],[-120.57952101953137,51.876903545761444],[-120.57942246347316,51.87703610028914],[-120.57923183140876,51.877293084728414],[-120.57899492586051,51.87764347282921],[-120.57885032922223,51.87795549764825],[-120.57873626218536,51.87822734277103],[-120.57865995771195,51.878400882303666],[-120.57850641751169,51.878667485083604],[-120.57832973890416,51.878988113721235],[-120.57820853947655,51.87921463141845],[-120.57804070536939,51.87950811771145],[-120.57784294519041,51.87977825965504],[-120.57766755043203,51.87998590779567],[-120.57741534235309,51.880327137832964],[-120.57707924550348,51.88069757195153],[-120.57670581146856,51.88098694854316],[-120.5761635573186,51.881357753264936],[-120.5757743352308,51.881583394613166],[-120.5753178840244,51.88182159803956],[-120.57507361650094,51.88193768560869],[-120.57442462455617,51.88225731491808],[-120.57368497870323,51.882660368086],[-120.57322593039451,51.88293387477189],[-120.57289093286677,51.88313395721907],[-120.57243285808276,51.88344348981922],[-120.57200622004832,51.88369096687666],[-120.57188417877427,51.88373354903553],[-120.57154190721535,51.88387479697713],[-120.57118268613269,51.884020306736055],[-120.57064108872538,51.88418022637702],[-120.5700383870843,51.884288884092996],[-120.56945046488933,51.88436674651274],[-120.5691062927688,51.88444996898532],[-120.56884002324209,51.88455207162153],[-120.56846565418635,51.884701912303036],[-120.56838168552902,51.884731674120644],[-120.56753482107734,51.885262337374904],[-120.56709258600749,51.88553211118353],[-120.5667279005063,51.88579432227951],[-120.56609267106174,51.88616348340173],[-120.56549188495602,51.88646116664125],[-120.56502598091335,51.88661340434015],[-120.56443843626167,51.88673175154856],[-120.56394930108199,51.88686544510803],[-120.56350660956254,51.88709470305792],[-120.56302708701877,51.88734132359522],[-120.56249189870675,51.887595432578806],[-120.56201927662585,51.88774284122163],[-120.56163787979526,51.887919322030534],[-120.56131792729667,51.88811502232102],[-120.56069999961424,51.888344951247845],[-120.55922880202529,51.888717134259544],[-120.5592969013895,51.91598113092819],[-120.55847653054127,51.91611878412022],[-120.5580290718513,51.916193717209076],[-120.55758217187058,51.91626416724991],[-120.55713415097759,51.91634356919914],[-120.5566872480162,51.91641401574971],[-120.55622575612392,51.916484334883],[-120.55577828981757,51.91655925918184],[-120.55533124261564,51.91663081853081],[-120.55488377327006,51.91670573933618],[-120.5544364433706,51.91677953136457],[-120.55398939059077,51.91685109442326],[-120.55352740067622,51.916925311512166],[-120.55307985582098,51.91700077984175],[-120.55263293845941,51.917071219525965],[-120.5521853211576,51.91714723893005],[-120.55173840085081,51.91721767512553],[-120.55127654317066,51.917290765059015],[-120.55082892013223,51.91736678810859],[-120.55038199650535,51.917437210069764],[-120.54993444095592,51.91751266611307],[-120.54948695329497,51.91758756584125],[-120.54903946521722,51.91766245487719],[-120.54859239453444,51.91773399688039],[-120.54813052611574,51.91780707413412],[-120.54768345245984,51.91787861259142],[-120.54723539808883,51.91795796688256],[-120.54678783175287,51.9180334106342],[-120.54634089365102,51.91810382577918],[-120.54589325478763,51.91817982060082],[-120.54544519294483,51.91825917683428],[-120.54498331369243,51.91833224140289],[-120.54453566899853,51.91840823986457],[-120.5440881640009,51.918483109562324],[-120.54364051619893,51.91855910452632],[-120.54319244748268,51.91863844300387],[-120.54274486717172,51.918713870961305],[-120.54229728531271,51.91878929717035],[-120.54184970190569,51.918864721630776],[-120.54140218649259,51.918939589781466],[-120.54095354892759,51.919023391767354],[-120.54050589011932,51.91909937448271],[-120.54005837111393,51.91917422843964],[-120.53961084945043,51.91924908959311],[-120.53916276631657,51.91932841230786],[-120.53871510125812,51.91940438802571],[-120.53826645374956,51.919488179485235],[-120.53781885620083,51.91956358819727],[-120.53737125710435,51.91963899516069],[-120.53692309516924,51.91971887261669],[-120.53647556253645,51.91979372152275],[-120.53602676637452,51.91987862226794],[-120.53557923056435,51.91995346767231],[-120.5351315539715,51.92002942044204],[-120.53468345355219,51.92010873457851],[-120.53423591419886,51.92018356579119],[-120.53378767016228,51.920263994479974],[-120.53333956601251,51.92034329441479],[-120.53289145910982,51.920422601540814],[-120.53244391346138,51.92049742575307],[-120.5319956628947,51.92057784742899],[-120.53154811411646,51.92065266814197],[-120.53109986030252,51.920733086312225],[-120.53065174644648,51.92081237573218],[-120.53020356014977,51.92089222689668],[-120.52975593425397,51.92096760410609],[-120.52930774472203,51.92104745176555],[-120.52885962325387,51.92112674311891],[-120.52841136073496,51.92120714182313],[-120.52797775416651,51.92128712242802],[-120.52753005064899,51.92136304549175],[-120.52708192270642,51.921442329890176],[-120.5266343566285,51.92151713140724],[-120.52618608487039,51.92159753034708],[-120.5257379532003,51.9216768005434],[-120.52528981877617,51.92175607793089],[-120.52484224640502,51.921830872446904],[-120.52439453072257,51.92190679220184],[-120.5239463926186,51.92198605538961],[-120.52349818198581,51.92206588031715],[-120.52304996971232,51.9221457034907],[-120.52260231858988,51.922221052748995],[-120.52215473571263,51.92229584571064],[-120.52170644881915,51.92237621817519],[-120.52125886281316,51.92245100763721],[-120.52081057267384,51.922531376595785],[-120.52036242051285,51.92261063470682],[-120.51991483092247,51.922685409973894],[-120.51946723867108,51.92276019243692],[-120.51901908284393,51.92283943634868],[-120.51900407096376,51.92284266005497],[-120.51855626489417,51.92291911154001],[-120.51812318762315,51.92299457375417],[-120.51767551927657,51.92306990376267],[-120.51721333076574,51.92314453790657],[-120.51677961454224,51.92322503066157],[-120.51631749272207,51.92329910664818],[-120.51586918476,51.923379456269146],[-120.51542157844898,51.9234542229279],[-120.51497340813953,51.92353345101294],[-120.51452565780286,51.92360933220146],[-120.51407804795663,51.92368408466764],[-120.51362987171684,51.92376331644094],[-120.51318225875477,51.923838065407644],[-120.51273400939078,51.92391784821772],[-120.51228632225926,51.923993157169804],[-120.51183863358156,51.92406846437276],[-120.51139044932329,51.92414768738513],[-120.51094268757464,51.924223545627676],[-120.51049506415524,51.924298293041026],[-120.51004687622257,51.92437750185315],[-120.50959910864907,51.92445336378921],[-120.50915105854573,51.92453145107447],[-120.50870328783327,51.924607309509724],[-120.50825509347061,51.92468651131201],[-120.50780731960762,51.92476236624566],[-120.50735968641283,51.92483709246639],[-120.50691141612964,51.92491685249357],[-120.50646314420675,51.924996610766556],[-120.50601543517368,51.92507189521646],[-120.50556779460229,51.925146623380954],[-120.50511944784698,51.92522693093246],[-120.50467180414891,51.925301655596535],[-120.50422359532907,51.925380841626705],[-120.50377524256093,51.92546115286144],[-120.5033277364878,51.925534745316405],[-120.5028799453456,51.925610580993634],[-120.50243173009714,51.92568976001362],[-120.50198344203714,51.925769500757646],[-120.50153515233772,51.92584923974731],[-120.50108742604485,51.925924504941484],[-120.5006396982065,51.92599976838622],[-120.50019140368302,51.92607950211784],[-120.4997431776034,51.92615867956303],[-120.4992948097182,51.92623896431814],[-120.49884714565242,51.92631366622643],[-120.498398915856,51.926392829468185],[-120.49795110733243,51.926468645882395],[-120.49750287431647,51.926547805618384],[-120.49705463854232,51.92662697254475],[-120.49660640227172,51.926706128773155],[-120.4961585874146,51.9267819381816],[-120.49571034792469,51.926861090904325],[-120.49526252991855,51.926936896810794],[-120.49481372150606,51.92702051803384],[-120.49436597158866,51.92709575696332],[-120.49391772448779,51.92717491161628],[-120.49346990127455,51.92725070157245],[-120.49302165095453,51.92732985271954],[-120.4925738245928,51.927405639173664],[-120.4921250050685,51.927489258805835],[-120.4916773170195,51.92756392375813],[-120.49122891870643,51.927644185888084],[-120.49078122753262,51.92771884733954],[-120.49033353369347,51.92779351598599],[-120.48988470701376,51.92787711789646],[-120.48943686844788,51.927952901034075],[-120.48898860472264,51.928032027457654],[-120.48854083437004,51.928107243624666],[-120.48809249606495,51.928186930010526],[-120.4876447225761,51.92826214267589],[-120.48719645128715,51.92834127103157],[-120.48674803786723,51.92842150667959],[-120.48630032990862,51.928496159568276],[-120.48585191324712,51.92857639170888],[-120.48540420216418,51.928651041096444],[-120.48495592394535,51.92873015174193],[-120.48450820974992,51.92880479762891],[-120.48405992832494,51.92888390476885],[-120.48361206929779,51.928959665141136],[-120.48316435157933,51.929034296834075],[-120.48271599391877,51.92911396218044],[-120.48226763461996,51.92919362577208],[-120.48181984074819,51.929268815675776],[-120.48137211565404,51.92934344931036],[-120.48092424837184,51.929419190234086],[-120.4804759529949,51.92949829229555],[-120.48002765712603,51.929577383659],[-120.47957992579626,51.92965201029153],[-120.47913162672185,51.92973109814927],[-120.47868375043187,51.929806839259896],[-120.47823601558103,51.9298814516981],[-120.47778764020687,51.92996109775847],[-120.47733990110373,51.93003571563935],[-120.47689201970803,51.930111440803685],[-120.47644427752856,51.93018605518564],[-120.47598201462401,51.93025995955406],[-120.47553483708603,51.930330098483076],[-120.47508765924496,51.93040022672406],[-120.47464040842061,51.930470916679425],[-120.47417870616867,51.93054035082725],[-120.47373223388055,51.93060488391891],[-120.47328554671842,51.930671096701374],[-120.4728238401895,51.93074052539433],[-120.4723777898868,51.93080169930092],[-120.4719172167329,51.930862180583176],[-120.47145614573859,51.930926568435744],[-120.47101023366302,51.93098661905612],[-120.47054958619678,51.931047649360316],[-120.47008957620146,51.93110365143528],[-120.46962970824619,51.93115852475611],[-120.46917033590442,51.931209487826074],[-120.46871153092432,51.93125597719699],[-120.46825222697466,51.931306382082276],[-120.46779455705763,51.93134392407282],[-120.46733638941527,51.93138537263949],[-120.46687942866252,51.93141732116686],[-120.46640823100698,51.9314463314229],[-120.46595240637791,51.9314693325661],[-120.4654831982374,51.93148268756715],[-120.4650145586272,51.93149156881121],[-120.46454648769188,51.931495976305186],[-120.46407898557564,51.93149591005622],[-120.46361262138379,51.931486898236706],[-120.46314739540266,51.93146894086024],[-120.462682738861,51.93144650977033],[-120.46221865190093,51.931419604973634],[-120.46175513466423,51.931388226476656],[-120.46129325396838,51.93134399408872],[-120.46083187286747,51.93129584252723],[-120.46037120439897,51.93124209933736],[-120.4599118180743,51.931178292709426],[-120.45945342951451,51.93110665856489],[-120.45899603896147,51.93102719691419],[-120.45855551999794,51.93092998426688],[-120.45811592789353,51.93082550770361],[-120.45769256675884,51.93070831565779],[-120.45730024176554,51.93057687408383],[-120.45692514498064,51.93042489180954],[-120.45655325463174,51.9302477588631],[-120.45621268714523,51.93005413217116],[-120.45587361766476,51.929848770427036],[-120.45556565578664,51.92962860564214],[-120.45525841039665,51.92940284129427],[-120.45495095393605,51.92917875747722],[-120.4546574503393,51.92895984661084],[-120.45436487516467,51.928733672750454],[-120.45408860392241,51.92849422134622],[-120.45382657005707,51.928257707249365],[-120.45356575074032,51.92801168546268],[-120.45331938168367,51.92776692866451],[-120.45305792635283,51.92752594086506],[-120.45281149106903,51.927281746320176],[-120.45254961392554,51.92704411111026],[-120.45227265077608,51.92681024473274],[-120.45197967596505,51.926587409277666],[-120.45168506448982,51.9263774339159],[-120.45134490461925,51.92618100174049],[-120.4509882336661,51.92599951732111],[-120.45058444646371,51.925843872877905],[-120.45016336314164,51.92570932886059],[-120.44972576913383,51.92558972296186],[-120.44928340025622,51.92550757107234],[-120.44883996298033,51.92543380654299],[-120.44838051210856,51.9253710714459],[-120.44793436906951,51.925318535440155],[-120.44747263857461,51.92527368383192],[-120.44701033844733,51.9252333021435],[-120.4465474685471,51.925197390368474],[-120.44606893990435,51.92516971716996],[-120.44560493000425,51.92514274514143],[-120.445139849909,51.92512416027525],[-120.44467527024848,51.9251016562599],[-120.44421004941253,51.92508417662806],[-120.44374432882812,51.925070612375336],[-120.44327803757079,51.92506151799395],[-120.44281231751827,51.92504794996386],[-120.44234488458159,51.92504779530922],[-120.44187745164821,51.925047638753234],[-120.44142510790714,51.92504371223772],[-120.44095653261994,51.9250524954353],[-120.4404878143318,51.925062394658504],[-120.44001923865513,51.925071174034166],[-120.43955051995353,51.925081069434135],[-120.43909589050864,51.92509502071134],[-120.43862674276114,51.92510826614679],[-120.4381575947287,51.925121509666766],[-120.43768901794803,51.92513027954035],[-120.43721929780904,51.92514799096031],[-120.43674900565499,51.925170172185894],[-120.4362775696581,51.925201294933636],[-120.43582057895794,51.92523368358267],[-120.43536115866965,51.92528506627452],[-120.43491503962883,51.925346658509575],[-120.43448000615602,51.92543578385994],[-120.43405405579296,51.92556809343397],[-120.43366615157598,51.92574556009698],[-120.43334726138148,51.92595448821532],[-120.43311233052228,51.92619224719604],[-120.43291880816268,51.92644887988603],[-120.4327521740396,51.92672369958424],[-120.4326135028226,51.92700830854522],[-120.43247568794493,51.92728620972312],[-120.43233801434002,51.927562992744186],[-120.43222844747991,51.92784844726709],[-120.43213261082657,51.928140759524574],[-120.43202318306604,51.928425104727694],[-120.43185832438557,51.928685944153735],[-120.4316378910053,51.92892439550192],[-120.43134650361274,51.9291464699749],[-120.43101255681604,51.92935860322217],[-120.43066551818936,51.9295588512171],[-120.43027692135117,51.929741331983145],[-120.42987802266855,51.929890132142084],[-120.42946753610697,51.93001530391569],[-120.42903058433114,51.930118941199666],[-120.42859484768991,51.930213070051956],[-120.42815968060405,51.93030273452464],[-120.42769733473386,51.930376444663025],[-120.4272356309911,51.930445126793316],[-120.4267757149912,51.93049983761315],[-120.4263157268132,51.930555101074944],[-120.42585759914024,51.930595829829166],[-120.42538545280797,51.93063193387964],[-120.42492904221254,51.93065924398629],[-120.4244596870627,51.93067354943152],[-120.42400542425055,51.930684087207645],[-120.42353850403882,51.93067938441698],[-120.42307273014441,51.93066573645684],[-120.42260752969727,51.93064761497485],[-120.42214175643367,51.93063396324142],[-120.42166203714157,51.930615131807926],[-120.42119683782073,51.930597004615215],[-120.4207316388867,51.930578875539275],[-120.42026472015527,51.93057415944819],[-120.41979722808206,51.930573913080586],[-120.41934368204411,51.93057884290693],[-120.4188738957755,51.93059647925562],[-120.41840410912688,51.93061411368368],[-120.41793374846358,51.93063621780211],[-120.41746338732341,51.93065831999514],[-120.416977358723,51.930688656699964],[-120.41651979470936,51.930724876622165],[-120.41604656274738,51.93076933103133],[-120.4156010053675,51.93082582191006],[-120.41515372621168,51.93089571690321],[-120.41471902747816,51.93098141331221],[-120.41429640708057,51.93108681944654],[-120.41389966660692,51.9312182320843],[-120.41351514703587,51.93136823689419],[-120.41315578886568,51.931549838104125],[-120.41279470517344,51.93174485290393],[-120.41244749154818,51.93194560888102],[-120.41210027587408,51.93214635483054],[-120.41175305585423,51.932347108638986],[-120.41140705366105,51.932538354803796],[-120.41103265496832,51.93272314986223],[-120.41067341889405,51.93290362520276],[-120.41032798199625,51.93309039646096],[-120.4099674473849,51.933280930552364],[-120.40960798628417,51.933463083781206],[-120.40926261278503,51.93364928832946],[-120.4089027871505,51.93383422954429],[-120.40854338944516,51.93401581593971],[-120.40817018655505,51.93419110386219],[-120.40779712434501,51.934365272659576],[-120.40741111911265,51.93452643549553],[-120.40702539843002,51.9346853612422],[-120.40662630389987,51.93483463451695],[-120.4062279252526,51.934978316967324],[-120.40580222716501,51.935107167055236],[-120.40539061617059,51.93524007743689],[-120.40496620686346,51.935358863457445],[-120.40454251408363,51.935472058492444],[-120.40410487328091,51.935580072034405],[-120.40366945849594,51.93567076123248],[-120.40321980967029,51.93575849556298],[-120.40277303417574,51.935823879497654],[-120.40231180881652,51.93588798965741],[-120.40186503178401,51.93595336111241],[-120.4010909497594,51.93606406688431],[-120.4002925911248,51.93590923120845],[-120.39978888886674,51.93584921069426],[-120.39904708394849,51.93593616394043],[-120.39449692818383,51.93575383415224],[-120.39373215039267,51.935678769089975],[-120.39278668410687,51.93575854498194],[-120.39133795688365,51.93577490194644],[-120.39034820040405,51.93608478224069],[-120.38965753158283,51.936454846874156],[-120.38864596592506,51.93716018328717],[-120.38759632705005,51.93770728621289],[-120.38673820179848,51.93801571310693],[-120.38567303797079,51.93811657408536],[-120.3830867728182,51.938453989408515],[-120.38163045879725,51.93864140289239],[-120.38051811304189,51.938994138718776],[-120.37990601350789,51.93965992060143],[-120.37978670935073,51.940357151320605],[-120.3799574792461,51.94095835051727],[-120.38004356556634,51.94142321791863],[-120.37975122169082,51.942215463262855],[-120.3792811692369,51.942573224096066],[-120.3786260674599,51.94289265925767],[-120.37773721410046,51.94321132718841],[-120.3768904721415,51.94354330204738],[-120.37588778959795,51.94395087103873],[-120.37429646601791,51.94484140956766],[-120.37337760924554,51.94539143482043],[-120.37247895492301,51.94601106491587],[-120.37193284332604,51.94650399250924],[-120.37190609499062,51.947275503409436],[-120.37197201408561,51.947782702682815],[-120.37190100487389,51.948218506559556],[-120.37176732702594,51.948799717057454],[-120.37171241795463,51.949336986389206],[-120.3717381746926,51.94970272451831],[-120.37169246294158,51.95005595751995],[-120.37156868556266,51.95056060029738],[-120.37140053236003,51.95106925767198],[-120.37109867831045,51.95159441253884],[-120.37090595023713,51.95206698215632],[-120.37063250002413,51.95248553697595],[-120.3702053170776,51.95296236139669],[-120.36968868873981,51.953226676535415],[-120.36914423113271,51.953480066695604],[-120.36808017347906,51.95390763258144],[-120.36652532552333,51.95451244915503],[-120.35647563757425,51.95816628492406],[-120.35632230820667,51.95822118310465],[-120.35613651409817,51.9583009159795],[-120.35594999385935,51.958386237537646],[-120.35576296563735,51.95847546660693],[-120.35556249651762,51.95855560184208],[-120.35537611917034,51.95863980465352],[-120.35519017643492,51.95872065376721],[-120.35500379766223,51.95880485596315],[-120.354816692565,51.95889464683032],[-120.35463081968658,51.95897494059503],[-120.35442976566165,51.95905954500284],[-120.35424323883363,51.959144863736554],[-120.35405685641663,51.95922906436688],[-120.35387040128667,51.95931381911489],[-120.35368387227494,51.95939913692259],[-120.35349734253276,51.959484454421386],[-120.35329700976656,51.959563467843594],[-120.35311047856347,51.95964878470279],[-120.35292351111323,51.95973745463108],[-120.35273755914316,51.95981829970214],[-120.35255102575377,51.95990361563505],[-120.35235061616984,51.959983190747046],[-120.35216408131694,51.960068506040216],[-120.35197769093146,51.96015270323331],[-120.351791227805,51.96023745454244],[-120.35160527160035,51.96031829774762],[-120.3514043507159,51.96040177897715],[-120.35121839309215,51.96048262154523],[-120.35103141821371,51.96057128833332],[-120.35084545917465,51.960652130286505],[-120.35064504303324,51.960731702374744],[-120.35045850163647,51.96081701484604],[-120.35027217795641,51.96090064585495],[-120.35007168758123,51.96098077134975],[-120.34988587026851,51.96106049393495],[-120.34970005227584,51.96114021621432],[-120.34949897868611,51.96122481184275],[-120.34931308606866,51.96130509685008],[-120.34911273734427,51.9613841028586],[-120.34892626337567,51.96146884943209],[-120.34872576791098,51.961548972541095],[-120.3485400910035,51.961627575127025],[-120.34833901291263,51.961712168691676],[-120.34815369728445,51.961787980651636],[-120.34795334423742,51.96186698460736],[-120.34776686594722,51.96195172926556],[-120.34756709271502,51.96202626140144],[-120.34738126636107,51.962105979867616],[-120.34718083720608,51.962185545818656],[-120.34697989923441,51.96226901918314],[-120.34679458003573,51.962344819974305],[-120.34659407662029,51.9624249393064],[-120.34640839213439,51.96250353839106],[-120.346207959374,51.962583102619234],[-120.34602198279943,51.962663936632005],[-120.34582169512294,51.962742373452755],[-120.34562118808905,51.96282249106108],[-120.34543608165333,51.96289661742741],[-120.34523506378807,51.962980651053265],[-120.34504966525289,51.96305701234702],[-120.34484879245622,51.963139918564394],[-120.34464886338841,51.963215563333776],[-120.34446317202399,51.96329415922405],[-120.34426273207443,51.96337372000782],[-120.34406221926848,51.963453834854455],[-120.34387703537142,51.9635285130889],[-120.34367608487675,51.96361198058417],[-120.34347629703451,51.96368650550712],[-120.34329096454802,51.96376230950188],[-120.3430900118523,51.96384577595619],[-120.34289014979552,51.96392085426293],[-120.34270430680404,51.964000565041346],[-120.34250393370172,51.964079559352314],[-120.34230406839892,51.96415464556769],[-120.34211822333793,51.964234355382935],[-120.34191777594475,51.96431390307293],[-120.34173192949774,51.96439361225312],[-120.34153155282479,51.96447260484315],[-120.34133110210048,51.96455216043653],[-120.34114590885397,51.9646268342026],[-120.34094538454984,51.96470694352843],[-120.3407451505113,51.96478481695444],[-120.3405597364298,51.96486117089114],[-120.34035870009549,51.96494519585096],[-120.34015897380608,51.96501915156862],[-120.33997297561064,51.96509997562923],[-120.3397727380277,51.965177847335845],[-120.33957286297974,51.96525292873369],[-120.33938686269896,51.96533375183005],[-120.33918655080437,51.96541217691442],[-120.33900069467569,51.96549188160558],[-120.33880089021577,51.96556639828569],[-120.33859984723522,51.96565042011996],[-120.33841457127468,51.96572565277256],[-120.3382141102582,51.965805193905226],[-120.33802766837434,51.96588936806925],[-120.33782786042727,51.96596388303345],[-120.33762681373595,51.96604790313811],[-120.33744138881409,51.966124251964274],[-120.337241069783,51.96620267360682],[-120.33705506112175,51.96628349286591],[-120.33685481288393,51.966361359413],[-120.33666880282864,51.96644217803644],[-120.33646833416307,51.96652172501921],[-120.33628188583992,51.966605896301225],[-120.33608141687957,51.96668543365629],[-120.3358955496385,51.966765133242035],[-120.3356945689247,51.96684858655781],[-120.33550862687576,51.96692884886],[-120.33530808161086,51.96700894819789],[-120.33512221157481,51.967088646511705],[-120.33492173827594,51.96716818181237],[-120.3347358668538,51.967247879490785],[-120.33453546436886,51.9673268596972],[-120.33434886319122,51.96741214554917],[-120.33414838582645,51.96749168842191],[-120.33396251160933,51.967571384828304],[-120.33376145121085,51.967655389117596],[-120.33357557558746,51.96773508488749],[-120.33338969928398,51.967814780351496],[-120.33318914604507,51.967894875933574],[-120.33300261207147,51.967979605150795],[-120.33280278594319,51.968054111250865],[-120.33261683458713,51.968134359852485],[-120.33241584127607,51.96821780734042],[-120.33221543012341,51.968296783438475],[-120.33203005843214,51.96837256898439],[-120.33182906289812,51.9684560154298],[-120.33164369102315,51.96853179140057],[-120.33144327702627,51.96861076613184],[-120.33124286230277,51.968689740508594],[-120.33105690419401,51.96876999548627],[-120.33085648803757,51.968848969178964],[-120.33065658194722,51.9689240259015],[-120.33047142412704,51.96899812779023],[-120.33027093238428,51.96907766379572],[-120.33007109654748,51.96915216507946],[-120.3298711877127,51.96922722041746],[-120.32967091310405,51.969305074259054],[-120.32948553269586,51.96938085563822],[-120.32928569412512,51.96945535553803],[-120.32908578254586,51.9695304094914],[-120.3288860884273,51.969603790934435],[-120.32868675762079,51.96967438211628],[-120.32847245874683,51.969747599332],[-120.3282733459529,51.9698165086898],[-120.32807357564911,51.969890452050976],[-120.32787438923013,51.96995991511439],[-120.32766059749446,51.97002922314214],[-120.32746199205587,51.97009422342256],[-120.32724783492395,51.97016632057993],[-120.32704849888881,51.97023690888864],[-120.32684989275707,51.97030189915865],[-120.32663631595284,51.97036953310922],[-120.32643712505156,51.970438993655165],[-120.32622464171683,51.97049823924725],[-120.32601091708037,51.970566989773644],[-120.32581245380001,51.97063086048591],[-120.32559931150192,51.97069513924885],[-120.3253861697421,51.97075940867131],[-120.32517302618604,51.97082368663727],[-120.32497514421381,51.9708830849039],[-120.3247619994461,51.970947362101434],[-120.3245490011548,51.97101051221278],[-120.3243358551348,51.97107478861366],[-120.32413782493161,51.97113530317254],[-120.32392540746686,51.97119399008049],[-120.32371240675688,51.97125713862928],[-120.3234998421591,51.97131694248971],[-120.32328800800273,51.97137114829309],[-120.3230755882431,51.9714298336198],[-120.32284922143323,51.97148331999689],[-120.3226373120799,51.971538087936786],[-120.32242547460692,51.971592301083454],[-120.32219983615596,51.9716401974627],[-120.3219885092465,51.97169049323134],[-120.3217627226266,51.971739515433015],[-120.32153766675539,51.97178293954134],[-120.32131253683956,51.97182692654918],[-120.32108740646908,51.971870913114834],[-120.3208773178705,51.97191171050858],[-120.32065284439106,51.97195066191858],[-120.3204281508557,51.97199129396972],[-120.32020425960722,51.972025782485154],[-120.31998029555915,51.972060824962476],[-120.31975647721521,51.97209474926403],[-120.31951863861772,51.97212403751395],[-120.31929525781905,51.97215460770143],[-120.31907246103617,51.97218070650348],[-120.31883527832339,51.972204967989754],[-120.31861196909293,51.97223498245061],[-120.31837405532562,51.97226483167022],[-120.31815140353342,51.972289810949306],[-120.31792867901424,51.972315344194065],[-120.31769091045818,51.97234407426271],[-120.31746752724854,51.9723746408955],[-120.3172296119343,51.97240448774478],[-120.31700637422736,51.97243393574539],[-120.31678174728462,51.97247400626119],[-120.3165572672458,51.972512949660825],[-120.3163322746824,51.97255580916078],[-120.31610757399586,51.972596432752],[-120.3158831652216,51.972634820436404],[-120.31564531990205,51.97266410960696],[-120.31542251832671,51.972690201328916],[-120.31518642777058,51.97270606781663],[-120.31496552616991,51.97271762813325],[-120.31473126215847,51.97271952650766],[-120.31449758293266,51.97271695347955],[-120.31426331890445,51.972718850901124],[-120.31402963970993,51.97271627692246],[-120.31379537566497,51.97271817339117],[-120.31356228140373,51.9727111275412],[-120.31332918721792,51.97270408121897],[-120.3130960931075,51.97269703442437],[-120.31286358404586,51.97268551624011],[-120.31263049011014,51.97267846850211],[-120.31239856629152,51.972662478461565],[-120.31216664264318,51.97264648795327],[-120.31193413409713,51.9726349678901],[-120.3117027958573,51.972614505533436],[-120.3114714578348,51.97259404271128],[-120.31124012002967,51.972573579423454],[-120.31100936760375,51.97254864476172],[-120.31077861544196,51.97252370963656],[-120.31054771724226,51.97249989177464],[-120.31033208253373,51.972471205039255],[-120.31010191642343,51.972441797649715],[-120.30987175062393,51.97241238979894],[-120.30964202411009,51.97237962831028],[-120.30941302959546,51.97234127773565],[-120.30918345013815,51.972307397603934],[-120.3089550417758,51.97226457521489],[-120.30874109169305,51.97222303612708],[-120.30851253785467,51.972181330581],[-120.30828413081294,51.972138506855174],[-120.30807076861737,51.97209248667808],[-120.30784353343577,51.9720407202833],[-120.30763068391262,51.971990791724295],[-120.3074178348774,51.97194086276922],[-120.30719096664265,51.971886305241654],[-120.30697936353495,51.97182687035479],[-120.30678221862662,51.97176871907867],[-120.3065709082796,51.97170705693121],[-120.30636047814225,51.97163867911791],[-120.30616494543821,51.97156823183079],[-120.30597058469627,51.9714888424332],[-120.30577563897911,51.97141392358799],[-120.30558127963516,51.971334533521954],[-120.30538743292013,51.971251235568765],[-120.30519300237773,51.971172399225374],[-120.30499974288561,51.97108462972272],[-120.30480531378845,51.971005792712646],[-120.30461103067262,51.97092584658992],[-120.30441718880313,51.97084253803058],[-120.30422283448425,51.970763145630194],[-120.30402789502052,51.97068822377629],[-120.30381849790403,51.97061202615395],[-120.30362290126843,51.97054212887268],[-120.30341291964918,51.970470401381505],[-120.30321703133387,51.970402738840654],[-120.3030220213829,51.970328378589436],[-120.3028120429553,51.97025664104627],[-120.30260140539119,51.97018993732061],[-120.30240595793464,51.97011892916763],[-120.30219554200654,51.97005054364207],[-120.30200002316651,51.96998008917921],[-120.30179004692855,51.96990835869086],[-120.30157948646111,51.96984108974406],[-120.30138345612306,51.969774550703605],[-120.30117289693021,51.96970728100476],[-120.30096226453229,51.96964057424612],[-120.30075126583414,51.969576665861105],[-120.30055523912337,51.96951011645242],[-120.30034402240992,51.96944787941762],[-120.30013302555203,51.96938396988801],[-120.29992195661745,51.96932061435504],[-120.29971022932125,51.96926228368215],[-120.299498575293,51.969203398229645],[-120.29928684796073,51.96914507571335],[-120.29907468261298,51.96909009700855],[-120.29886303028042,51.96903121037787],[-120.29863567541426,51.9689805433739],[-120.29842351051681,51.968925572402],[-120.29821127343801,51.96887115542251],[-120.29799852433479,51.968820645577615],[-120.2977717580426,51.968765506000175],[-120.29755893606712,51.968715558665565],[-120.29734604067916,51.968666174262594],[-120.29711942265048,51.96860991567824],[-120.29690667608901,51.968559403802615],[-120.2966932695355,51.968513925709935],[-120.29646591989258,51.968463254395026],[-120.29625317363181,51.96841275024619],[-120.29602523838548,51.968366548905465],[-120.29581249428118,51.96831603499555],[-120.29559982341925,51.968264966305135],[-120.29537232967034,51.96821541052968],[-120.29515848635641,51.96817328271052],[-120.2949312130337,51.96812205396274],[-120.29471781068486,51.96807657218801],[-120.29450506951265,51.96802605584753],[-120.29427728484787,51.967978733317395],[-120.2940493539679,51.96793252804417],[-120.29383654032968,51.96788257378695],[-120.29360817025704,51.96783972076513],[-120.29339484344881,51.96779368214111],[-120.29316691447295,51.96774747511199],[-120.2929535897566,51.967701426724204],[-120.29272580847454,51.96765410110861],[-120.29251182372674,51.96761308605752],[-120.29228389663233,51.96756687727158],[-120.29207064652635,51.967520272856],[-120.29184279318098,51.96747350880909],[-120.29162881015155,51.96743249210913],[-120.29140103171476,51.96738516385915],[-120.29118712351305,51.967343583009885],[-120.29095875887205,51.9673007247084],[-120.2907308350592,51.967254512832575],[-120.2905174413454,51.967209023231526],[-120.29028900407936,51.96716672691933],[-120.29007517082898,51.96712458961232],[-120.28984666161479,51.967082846800686],[-120.2896188869422,51.967035515007424],[-120.28940498215827,51.96699393083163],[-120.28917706159865,51.966947715864926],[-120.28896264315028,51.96691004730097],[-120.28873472349875,51.96686383145452],[-120.28852081922695,51.966822254569934],[-120.28829231308787,51.96678050865969],[-120.28806454168472,51.966733173776255],[-120.28785012525418,51.96669550313158],[-120.28762169444542,51.96665319256201],[-120.28740786629557,51.96661105027795],[-120.28717936233073,51.96656930214913],[-120.28695027125396,51.96653202437412],[-120.28673644434829,51.96648988083752],[-120.2865080145241,51.96644757699042],[-120.28627951227898,51.96640582706819],[-120.28606568664154,51.96636368228015],[-120.28583674451431,51.96632528457945],[-120.28560772991777,51.96628744080143],[-120.28539390551124,51.966245294760185],[-120.28516481766601,51.96620801341887],[-120.2849358771508,51.96616961392001],[-120.28472131925598,51.9661330551249],[-120.28449237952556,51.966094654740814],[-120.28426336613353,51.96605681722025],[-120.28403442720739,51.96601841592219],[-120.28381987081364,51.9659818554409],[-120.28359093267234,51.96594345325769],[-120.28336140702486,51.96590952141077],[-120.2831318088312,51.96587614348317],[-120.28291740088419,51.965838463615924],[-120.28268846429187,51.96580005963176],[-120.2824587931026,51.96576724367719],[-120.2822286812415,51.965737780354296],[-120.28201412774523,51.96570121649588],[-120.28178460460205,51.96566728149552],[-120.28155449372487,51.965637816821435],[-120.2813249712737,51.965603880902144],[-120.28109537507476,51.96557050784241],[-120.28088038223383,51.965537294951446],[-120.28064953742641,51.96551341694129],[-120.28042001633551,51.96547947921254],[-120.28018990737317,51.965450011803775],[-120.27995979872213,51.965420543933945],[-120.27974414626699,51.96539235406929],[-120.27951403822196,51.96536288530614],[-120.27928334216767,51.96533788685666],[-120.27905323472203,51.9653084171704],[-120.27882253922056,51.96528341779553],[-120.27859184398385,51.965258417957465],[-120.27836159032223,51.96523006457843],[-120.27813089563253,51.965205063814665],[-120.27789961274715,51.96518453335596],[-120.27768388864456,51.96515690293978],[-120.27745319473114,51.96513190081525],[-120.2772219125535,51.965111368992616],[-120.27699121914634,51.965086365940664],[-120.27676052600394,51.96506136242549],[-120.2765292445272,51.96504082920877],[-120.27629855189106,51.96501582476613],[-120.27606785951971,51.96499081986015],[-120.2758365787439,51.96497028524951],[-120.27560588687882,51.964945279416106],[-120.27537512110037,51.964920836434786],[-120.27514384102255,51.96490030042998],[-120.27491314992567,51.96487529320572],[-120.2746818703074,51.964854756271215],[-120.27446511946432,51.96483494362849],[-120.27423428189518,51.96481105272932],[-120.27400359179293,51.96478604367895],[-120.27377231307719,51.96476550491408],[-120.27354103457954,51.96474496568379],[-120.27331034522516,51.96471995524159],[-120.27307906718707,51.9646994150817],[-120.27284837833908,51.96467440371204],[-120.27261768975598,51.964649391879156],[-120.27238641241901,51.96462885032525],[-120.2721557243423,51.96460383756493],[-120.27192496348634,51.9645793787131],[-120.27156432962266,51.964541696200286],[-120.27878046741992,51.991049734228575],[-120.23830173679931,51.99096674699033],[-120.23819911274113,51.991188858874956],[-120.2381967411873,51.99120674072975],[-120.23819496252064,51.99122015212059],[-120.23817812772045,51.99123675031542],[-120.23817575615539,51.99125463216895],[-120.2381733845884,51.99127251402225],[-120.23815603157038,51.99129301939795],[-120.23815373469787,51.991310337971875],[-120.2381513631188,51.99132821982375],[-120.2381346029652,51.99134425473243],[-120.2381323796008,51.99136101896773],[-120.23813000801017,51.99137890081849],[-120.23811309960426,51.99139605333893],[-120.23811020862307,51.99141785131375],[-120.23809389309659,51.99143053336842],[-120.23809166971208,51.991447297601816],[-120.23808937280587,51.991464616172195],[-120.23807246435064,51.99148176868534],[-120.23807024095527,51.99149853291754],[-120.23805288779859,51.991519038273665],[-120.23805051616672,51.991536920120346],[-120.23804814453293,51.99155480196667],[-120.23803130954735,51.99157140013521],[-120.23802893790379,51.99158928198063],[-120.23802671448615,51.99160604621035],[-120.23801047357192,51.99161816497315],[-120.23800750900325,51.99164051727843],[-120.2379906004475,51.991657669776934],[-120.23798837701162,51.99167443400499],[-120.23798615357403,51.99169119823273],[-120.23796924499015,51.99170835072746],[-120.23796687331362,51.991726232569384],[-120.23796457515722,51.99174356007394],[-120.23794707362264,51.99176518302499],[-120.2379447019339,51.991783064865615],[-120.23794247847395,51.99179982909096],[-120.2379401814898,51.991817147653045],[-120.2379232728389,51.99183430013913],[-120.23792149406238,51.99184771151844],[-120.23791912235865,51.99186559335734],[-120.23791689888465,51.99188235758097],[-120.23789999019925,51.99189951006269],[-120.23789776671615,51.99191627428547],[-120.23789480206932,51.99193862658201],[-120.2378924303497,51.99195650841901],[-120.23789005862811,51.991974390255564],[-120.23788768690457,51.99199227209183],[-120.2378853887026,51.992009599590844],[-120.2378684799554,51.992026752066025],[-120.23786610822012,51.99204463390104],[-120.23786373648294,51.9920625157358],[-120.2378613647438,51.99208039757009],[-120.23785899300269,51.99209827940422],[-120.23785662125962,51.99211616123788],[-120.23785424951463,51.992134043071204],[-120.2378518777677,51.99215192490431],[-120.23784950601882,51.99216980673704],[-120.2378616713412,51.99218841793248],[-120.23785929959435,51.992206299764845],[-120.23785692784553,51.9922241815969],[-120.23785448257048,51.99224261776541],[-120.2378527037561,51.992256029139035],[-120.23786486910393,51.992274640332745],[-120.23786249735369,51.992292522163844],[-120.23786012560151,51.9923104039947],[-120.23785775384736,51.99232828582509],[-120.23785538209127,51.99234616765527],[-120.23786799216914,51.99236142600417],[-120.23786547218077,51.99238042544833],[-120.23786310042502,51.99239830727782],[-120.23787526581707,51.992416918468194],[-120.23787289406334,51.99243480029733],[-120.23787044759733,51.99245324540378],[-120.23788261300787,51.99247185659244],[-120.23788009301951,51.99249085603516],[-120.23787772126373,51.992508737863204],[-120.23788988669287,51.99252734905028],[-120.23788744141476,51.99254578521463],[-120.23788506965901,51.99256366704202],[-120.23789782804477,51.99257780777058],[-120.23789545629155,51.992595689597835],[-120.23789293630162,51.99261468903867],[-120.23790510176687,51.99263330022238],[-120.23790258177897,51.992652299662964],[-120.23790021002365,51.992670181489025],[-120.23791237550752,51.99268879267112],[-120.23790992904397,51.992707237774276],[-120.2379074090539,51.99272623721376],[-120.23791957455651,51.99274484839415],[-120.23791720280312,51.99276273021917],[-120.23791542398682,51.99277614158765],[-120.23792751598248,51.99279530710303],[-120.23792514422959,51.99281318892736],[-120.23792277247478,51.99283107075144],[-120.23792040071801,51.992848952575144],[-120.2379180289593,51.99286683439851],[-120.237930046271,51.99288656318955],[-120.2379276745142,51.99290444501259],[-120.23792530275544,51.99292232683528],[-120.23792278275963,51.99294132627155],[-120.2379205592321,51.992958090479725],[-120.2379325765701,51.99297781926882],[-120.23793020480939,51.992995701090514],[-120.23792783304671,51.99301358291188],[-120.23792546128207,51.9930314647329],[-120.23792308951548,51.99304934655361],[-120.23792071774697,51.99306722837395],[-120.23791834597648,51.99308511019401],[-120.23791597420406,51.9931029920137],[-120.23791360242967,51.99312087383312],[-120.23791123065335,51.993138755652204],[-120.23790900711128,51.993155519857275],[-120.23790663533119,51.99317340167574],[-120.23790426354914,51.99319128349382],[-120.23790189176516,51.9932091653117],[-120.23789951997921,51.993227047129146],[-120.23788275900192,51.99324308197485],[-120.23788038720629,51.9932609637914],[-120.23787801540868,51.99327884560764],[-120.23787564360916,51.99329672742351],[-120.23787327180764,51.99331460923918],[-120.23787090000421,51.993332491054375],[-120.23786793524718,51.99335484332299],[-120.23786556343934,51.993372725137526],[-120.23786326515572,51.9933900526155],[-120.23786089334406,51.993407934429364],[-120.23784398404412,51.99342508688026],[-120.23784161222264,51.99344296869324],[-120.23783924039921,51.99346085050588],[-120.23783686857384,51.993478732318195],[-120.23783464498577,51.99349549651696],[-120.2378322731566,51.99351337832861],[-120.2378299013255,51.99353126013993],[-120.2378276042052,51.99354857867396],[-120.23782523237026,51.99356646048465],[-120.23780832299472,51.99358361292798],[-120.23780654411134,51.99359702428533],[-120.23780357930325,51.99361937654717],[-120.23780135569518,51.99363614074326],[-120.2377989838447,51.99365402255211],[-120.23779661199224,51.993671904360646],[-120.23777985080581,51.993687939185165],[-120.23777747894364,51.993705820992794],[-120.23777510707957,51.99372370280002],[-120.23777273521351,51.99374158460691],[-120.23777043687345,51.99375891207749],[-120.23775352740158,51.993776064509966],[-120.23775115552382,51.993793946315655],[-120.23774878364412,51.99381182812097],[-120.23774596703444,51.99383306276447],[-120.23774359515046,51.993850944569076],[-120.2377267603469,51.99386753371938],[-120.23772438845316,51.99388541552313],[-120.23772201655748,51.993903297326526],[-120.23771964465985,51.993921179129565],[-120.23771742100405,51.993937943319644],[-120.23770051144176,51.99395509574168],[-120.23769828777685,51.99397185993087],[-120.23769591586573,51.99398974173242],[-120.23769354395267,51.99400762353365],[-120.23769057905861,51.99402997578461],[-120.23767374297965,51.99404657386549],[-120.23767137105438,51.99406445566538],[-120.23766899912718,51.994082337464974],[-120.23765223773573,51.99409837226522],[-120.2376498657988,51.99411625406386],[-120.23764756857604,51.99413357258551],[-120.23764519663527,51.994151454383534],[-120.23764341767846,51.994164865731825],[-120.23762650799885,51.99418201813962],[-120.23762369130559,51.99420325277323],[-120.23762131935123,51.99422113456969],[-120.23761909564226,51.99423789875354],[-120.23760218592473,51.99425505115664],[-120.23759981395872,51.994272932951866],[-120.2375975155218,51.99429026041101],[-120.23759514355196,51.994308142205576],[-120.23757823379768,51.99432529460413],[-120.23757586181802,51.99434317639773],[-120.23757304508963,51.99436441102724],[-120.2375707478232,51.99438172954364],[-120.23755383803076,51.99439888193756],[-120.23755146603705,51.994416763729525],[-120.2375490940414,51.994434645521146],[-120.23754687029373,51.99445140970052],[-120.23754449829428,51.99446929149154],[-120.237527736708,51.994485326268375],[-120.23752595770134,51.994498737611046],[-120.23752358569072,51.99451661940089],[-120.23750615635501,51.99453768789761],[-120.23750378433418,51.9945555696865],[-120.23750141231137,51.994573451475],[-120.23749918853822,51.99459021565147],[-120.23748235335567,51.994606804755456],[-120.23747998132127,51.99462468654273],[-120.23747760928494,51.99464256832973],[-120.23746084760732,51.994658603094365],[-120.2374580308024,51.99467983771535],[-120.23745565875406,51.99469771950095],[-120.23743874879354,51.99471487187333],[-120.2374370432839,51.99472772887657],[-120.2374201333044,51.994744881245715],[-120.2374179094912,51.994761645418116],[-120.2374155374219,51.994779527201636],[-120.23739810911466,51.994800586736446],[-120.23739573703513,51.99481846851901],[-120.23739351320879,51.99483523268984],[-120.237376751426,51.99485126743966],[-120.23737437933494,51.99486914922101],[-120.23737200724189,51.99488703100206],[-120.23735457768453,51.99490809946915],[-120.23735279860725,51.99492151080419],[-120.23733603677627,51.99493754554685],[-120.23733373938532,51.994954864049994],[-120.23733136727093,51.99497274582886],[-120.23731460541234,51.99498878056771],[-120.23731223328822,51.99500666234561],[-120.23729487837625,51.99502716752557],[-120.23729250624194,51.995045049302504],[-120.23729020764195,51.995062376744116],[-120.23727329747464,51.995079529086716],[-120.23727166662447,51.99509182280757],[-120.23725483116124,51.995108411871044],[-120.23725245900607,51.99512629364596],[-120.23724949380937,51.99514864586411],[-120.23723273185288,51.995164680588566],[-120.2372305079461,51.99518144475126],[-120.237213597709,51.99519859708344],[-120.23721129906949,51.9952159245211],[-120.23720892689059,51.99523380629344],[-120.23719157183939,51.9952543114537],[-120.23718979269776,51.99526772278223],[-120.23718749523121,51.99528504127753],[-120.23717058493693,51.99530219360183],[-120.23716836099919,51.99531895776132],[-120.23716598879703,51.99533683953118],[-120.23714922673734,51.99535287424097],[-120.23714685452546,51.99537075600985],[-120.23714396279658,51.99539255388577],[-120.23712705244337,51.99540970620197],[-120.23712468021931,51.995427587969616],[-120.23712245625747,51.99544435212647],[-120.23710562060108,51.99546094116315],[-120.23710384142451,51.99547435248794],[-120.23710146918738,51.99549223425407],[-120.23708470704409,51.99550826895227],[-120.23708174173527,51.99553062115876],[-120.23707951775164,51.99554738531326],[-120.23707714550052,51.99556526707774],[-120.23706023505393,51.99558241938166],[-120.23705793633313,51.995599746810605],[-120.23705556407032,51.99561762857377],[-120.23705319180554,51.995635510336726],[-120.23705081953884,51.99565339209932],[-120.23703405731484,51.995669426787906],[-120.23703168503842,51.99568730854958],[-120.23702938748686,51.995704627035536],[-120.23702701520662,51.99572250879657],[-120.23702464292438,51.9957403905573],[-120.2370077323891,51.995757542850846],[-120.23700536009704,51.99577542461062],[-120.2370029878031,51.99579330637006],[-120.2370007637757,51.995810070519255],[-120.23699839147795,51.99582795227815],[-120.23699601917824,51.99584583403659],[-120.23699364687657,51.99586371579478],[-120.23699142284201,51.995880479942834],[-120.23698905053658,51.995898361700384],[-120.2369866782292,51.995916243457565],[-120.23698430591988,51.995934125214525],[-120.23698193360859,51.995952006971144],[-120.23697956129537,51.99596988872735],[-120.23697718898019,51.99598777048329],[-120.2369602783301,51.99600492276624],[-120.2369579060051,51.99602280452123],[-120.23695553367814,51.99604068627593],[-120.23695256826672,51.99606303846879],[-120.23695019593538,51.99608092022275],[-120.23694789714445,51.99609824764202],[-120.2369599896369,51.99611741320412],[-120.23695761730565,51.99613529495737],[-120.23695531851482,51.99615262237602],[-120.23695294617971,51.9961705041286],[-120.23695050030021,51.99618894021521],[-120.23694820150371,51.99620626763289],[-120.23694575562016,51.99622470371881],[-120.23694338327722,51.99624258547011],[-120.23694101093233,51.996260467221134],[-120.23693863858547,51.99627834897178],[-120.23693626623667,51.996296230722166],[-120.23693389388595,51.99631411247213],[-120.23693152153326,51.99633199422178],[-120.23692914917862,51.99634987597119],[-120.23692677682205,51.99636775772024],[-120.236938942923,51.99638636894586],[-120.23693657056846,51.996404250694575],[-120.23693479130125,51.996417662005875],[-120.23693241894328,51.996435543754004],[-120.23693004658337,51.99645342550177],[-120.23692767422152,51.996471307249266],[-120.23692515358489,51.996490306605544],[-120.23692278121904,51.99650818835238],[-120.23693494735754,51.996526799576195],[-120.23693257499369,51.99654468132264],[-120.2369302026279,51.99656256306871],[-120.2369276819871,51.996581562423685],[-120.23692530961728,51.99659944416912],[-120.23692293724551,51.99661732591426],[-120.23693510341458,51.99663593713626],[-120.23693273104485,51.99665381888109],[-120.23693035867319,51.99667170062545],[-120.23692798629956,51.99668958236958],[-120.23692561392397,51.996707464113406],[-120.23693770538965,51.99672663860865],[-120.23693533301605,51.99674452035205],[-120.2369329606405,51.99676240209513],[-120.23693043998934,51.99678140144678],[-120.23692806760975,51.996799283189226],[-120.23692569522824,51.99681716493134],[-120.23693786145434,51.996835776149915],[-120.23693548907485,51.996853657891634],[-120.23693311669342,51.996871539633034],[-120.23693067076611,51.996889975708136],[-120.23692837192469,51.996907303114945],[-120.23694105772881,51.996921998230604],[-120.23693868534593,51.99693987997106],[-120.2369363129611,51.99695776171122],[-120.23693394057436,51.99697564345104],[-120.23693156818564,51.996993525190526],[-120.23694358618941,51.99701325401439],[-120.23694121380261,51.99703113575348],[-120.23693884141386,51.99704901749236],[-120.23693632074865,51.997068016839485],[-120.2369484870494,51.99708662805285],[-120.23694611466061,51.997104509790965],[-120.23694374226986,51.99712239152876],[-120.23694136987717,51.997140273266226],[-120.23695346147,51.997159447752644],[-120.23695108907928,51.99717732948975],[-120.23694871668663,51.99719521122649],[-120.23694619601727,51.99721421057144],[-120.23694382362059,51.997232092307506],[-120.23695658306875,51.99724623308352],[-120.2369542106746,51.997264114819345],[-120.23695176473416,51.99728255088866],[-120.23696393110146,51.99730116209693],[-120.23696155870732,51.99731904383208],[-120.23695918631122,51.997336925566906],[-120.23695666563826,51.99735592490971],[-120.23696883202814,51.997374536116446],[-120.23696631135721,51.99739353545893],[-120.23696393895901,51.99741141719259],[-120.23696156655886,51.997429298926015],[-120.23697373297136,51.997447910131015],[-120.23697136057326,51.99746579186407],[-120.23696891344255,51.99748423687141],[-120.23698167297277,51.99749837764153],[-120.23697915230026,51.99751737698223],[-120.23697677990059,51.997535258714315],[-120.23698894634921,51.997553869916025],[-120.23698650040723,51.99757230598137],[-120.23698412800756,51.99759018771285],[-120.23698175560598,51.99760806944392],[-120.23699392207708,51.99762668064389],[-120.23699140140248,51.9976456799828],[-120.23698902900084,51.997663561713146],[-120.23700104721564,51.99768329051962],[-120.23699867481591,51.99770117224959],[-120.23699689551485,51.99771458354687],[-120.23700906202217,51.99773319474353],[-120.23700661489244,51.99775163974735],[-120.23700424249128,51.997769521476435],[-120.23701626074221,51.99778925027951],[-120.23701388834297,51.99780713200818],[-120.23701151594179,51.99782501373657],[-120.23702360894185,51.997844179263474],[-120.23702123654266,51.997862060991494],[-120.23701945724196,51.997875472287184],[-120.23703162380392,51.99789408347896],[-120.23702969623015,51.99790861238248],[-120.23702717555484,51.9979276117175],[-120.23703934213465,51.997946222907586],[-120.23703696973632,51.997964104634356],[-120.23703452260544,51.99798254963517],[-120.23704668920374,51.99800116082349],[-120.23704416853049,51.998020160157395],[-120.23704179613011,51.99803804188311],[-120.23705396274704,51.99805665306991],[-120.23705151680433,51.99807508912866],[-120.23704973750426,51.9980885004224],[-120.23706190413868,51.99810711160756],[-120.23705938346595,51.998126110940035],[-120.23707155011499,51.99814472212355],[-120.2370690294443,51.998163721455654],[-120.23706665704631,51.99818160317962],[-120.237078823714,51.99820021436146],[-120.23707637658754,51.998218659359395],[-120.23707385591464,51.998237658690414],[-120.23708602260108,51.99825626987056],[-120.23708424330421,51.9982696811628],[-120.23709633645986,51.99828884667465],[-120.23709396406629,51.9983067283974],[-120.23709159167075,51.99832461011971],[-120.23710420321261,51.998339868473685],[-120.2371018308195,51.998357750195694],[-120.23711384927704,51.998377478978554],[-120.23711147688583,51.998395360700194],[-120.23710910449266,51.99841324242156],[-120.23712178961043,51.998427946439094],[-120.23711926894525,51.998446945767604],[-120.23713143570956,51.998465556939614],[-120.23712906332076,51.998483438660244],[-120.2371266173859,51.998501874713924],[-120.23713878416872,51.99852048588428],[-120.23713626350559,51.99853948521176],[-120.23714843030304,51.99855809638045],[-120.23714650273887,51.998572625277674],[-120.23715866954996,51.99859123644474],[-120.23715622243537,51.998609681438154],[-120.23716824098712,51.998629410211066],[-120.23716646170035,51.99864282150026],[-120.23717855499584,51.998661986997405],[-120.2371761826157,51.99867986871604],[-120.23718879429012,51.99869512705604],[-120.23718627363871,51.99871412638173],[-120.23719844050636,51.99873273754238],[-120.23719599340066,51.99875118253439],[-120.2372080120095,51.998770911300795],[-120.23722077199452,51.998785052028765],[-120.23721891917408,51.99879901765019],[-120.23723093780654,51.99881874641338],[-120.23724295644988,51.99883847517497],[-120.23724058408655,51.99885635689215],[-120.23725267628784,51.99887553131887],[-120.2372507487444,51.99889006021384],[-120.23726284214568,51.99890922569805],[-120.23727500910057,51.99892783684748],[-120.23727308156228,51.9989423657422],[-120.23728510025884,51.998962094497294],[-120.23728272790612,51.99897997621341],[-120.23729541324765,51.99899468020463],[-120.23730743196877,51.999014408956604],[-120.23730505962239,51.99903229067236],[-120.23731715308708,51.9990514561485],[-120.23731463247105,51.999070455471205],[-120.23732783739241,51.99908124336204],[-120.23734000442317,51.99909985450191],[-120.23733755735682,51.999118299491094],[-120.23734957613118,51.99913802823648],[-120.23734720379534,51.99915590995127],[-120.23735929731292,51.99917507542101],[-120.23735751806272,51.99918848670684],[-120.2373695368655,51.999208215448895],[-120.23736760934634,51.999222744341694],[-120.23737977643367,51.999241355475014],[-120.23737740410459,51.99925923718882],[-120.23738949647803,51.999278411594545],[-120.23738697588043,51.99929741091505],[-120.2373997360779,51.99931155161681],[-120.23739729021112,51.99932998766307],[-120.23739491788442,51.99934786937591],[-120.23740708501839,51.999366480504335],[-120.23740456442336,51.99938547982382],[-120.23740219209662,51.99940336153592],[-120.23741435924923,51.99942197266273],[-120.23741183865417,51.99944097198145],[-120.23740946632742,51.99945885369283],[-120.2374070939987,51.99947673540393],[-120.23741926117387,51.999495346529024],[-120.23741688884719,51.9995132282398],[-120.23741451651857,51.9995311099502],[-120.237412144188,51.999548991660205],[-120.23740977185547,51.999566873370085],[-120.23740739952098,51.99958475507946],[-120.23740502718455,51.99960263678862],[-120.23740258011749,51.99962108177113],[-120.23740028250585,51.99963840020588],[-120.2373979101636,51.999656281913985],[-120.23739553781937,51.999674163621755],[-120.2373931654732,51.99969204532928],[-120.23739079312509,51.99970992703647],[-120.23738842077502,51.999727808743316],[-120.237386048423,51.999745690449785],[-120.23738367606902,51.99976357215601],[-120.23738130371311,51.99978145386187],[-120.23737893135525,51.99979933556746],[-120.23737655899545,51.999817217272664],[-120.23737418663367,51.99983509897754],[-120.23737181426995,51.99985298068216],[-120.23736944190429,51.999870862386395],[-120.23736706953669,51.999888744090335],[-120.23706804255107,52.00390758999832],[-120.23921359731277,52.00472678473348],[-120.242503559746,52.00817680790828],[-120.24304199834219,52.00853229792919],[-120.24377026792786,52.00933324851675],[-120.2510514096021,52.011725641664],[-120.25750809869626,52.013826021539316],[-120.26430085142017,52.016268469355346],[-120.27083865083189,52.01865107222902],[-120.27473653146458,52.01884982518196],[-120.27947193292488,52.01824865712342],[-120.28093532448547,52.018032374442534],[-120.28569650824778,52.016232460791464],[-120.2936646007253,52.0154269467454],[-120.2954338927041,52.015443918594116],[-120.30247420177643,52.0182472633814],[-120.30996611163921,52.021074725679085],[-120.31300912389248,52.02165337722631],[-120.31392976524887,52.02211458275351],[-120.35149189421563,52.00913620259688],[-120.37413610340134,52.02303389270675],[-120.37255298319128,52.02485514053275],[-120.3715123347809,52.025879544398045],[-120.3697382963267,52.02781626976083],[-120.36813268098295,52.02992095192346],[-120.3659924684116,52.03162990103515],[-120.36338540855483,52.03298523175311],[-120.36057887991187,52.034859965185625],[-120.35943090906017,52.03862196097289],[-120.35819663461524,52.041018082699274],[-120.35679484786642,52.04312420241821],[-120.35676040178177,52.04575465871179],[-120.35730093178016,52.04666756043522],[-120.35903748697771,52.049875312665264],[-120.35974511473884,52.051983094663235],[-120.35990109387625,52.054728028427796],[-120.3600637352287,52.058098130002264],[-120.35955131169841,52.06237717446976],[-120.35702813736864,52.06453628379509],[-120.35440303928068,52.06601263903269],[-120.35262816051817,52.06748680550777],[-120.34954731778065,52.06987093218405],[-120.35037339005946,52.07050597188932],[-120.35072052704093,52.073129805219324],[-120.3503095482774,52.07707184058046],[-120.34842431139903,52.07848823132864],[-120.34638661773299,52.07893651198794],[-120.34637598036474,52.08036732956121],[-120.34673226459347,52.081682880134686],[-120.34753444353437,52.083739653833405],[-120.34982972722699,52.08637924519465],[-120.34952531801402,52.088489650473015],[-120.34811458639417,52.0905367376625],[-120.34679940702999,52.09218751000898],[-120.32341911401663,52.09243357611721],[-120.32457996700705,52.15424149108595],[-120.32826908047772,52.15466934997582],[-120.33725491237908,52.155924225808796],[-120.34581184402501,52.155856000890886],[-120.35152669038003,52.15246827714677],[-120.35595067756495,52.148612205791615],[-120.35980209288724,52.14474934829066],[-120.36451105916123,52.14083495955352],[-120.37077374567738,52.13704523497755],[-120.37943075839935,52.135835170647894],[-120.38719626536309,52.13742156170624],[-120.39412461790644,52.14026179912007],[-120.40049031716735,52.142577680420985],[-120.40678941620934,52.14564123578848],[-120.40805790229201,52.14718791898022],[-120.40631534262032,52.15215098127752],[-120.4028998516931,52.15766827451923],[-120.40078134112981,52.16314498833823],[-120.39784828286277,52.168214335412536],[-120.39698932988712,52.16951548337836],[-120.39064381541073,52.17324694975084],[-120.39039096299545,52.17531026486077],[-120.39130744556614,52.176740992268286],[-120.3935234101942,52.17857620787623],[-120.3962341740296,52.185440749051565],[-120.40045842366843,52.188229159958745],[-120.40067554387664,52.188368464116266],[-120.40373004506468,52.1902053044745],[-120.40369913819964,52.192147763503286],[-120.40192863584419,52.192653465098424],[-120.40015790791699,52.19282005128961],[-120.39829076541412,52.194071157622325],[-120.3971663479404,52.19492136090468],[-120.39325810174508,52.19490701880058],[-120.38758595124885,52.19557155877917],[-120.38532815044766,52.197676224084596],[-120.38504798415623,52.198475173904804],[-120.38520848400564,52.2000693220711],[-120.38350816050949,52.20240688976219],[-120.38331593470052,52.20354694739656],[-120.38459936981545,52.205438090066934],[-120.386058839136,52.20767291892942],[-120.3864168740939,52.20967141884407],[-120.3888112481055,52.21116326138498],[-120.39244153879456,52.21129126871007],[-120.39580142119644,52.2096487741184],[-120.39823523520099,52.208228937619864],[-120.4011069380819,52.20989774494813],[-120.40406784703768,52.21133349367428],[-120.4058323006975,52.211221059321275],[-120.40863936134117,52.21043763827065],[-120.41188798421203,52.21021872864031],[-120.41487918833909,52.20971567696418],[-120.41536873929319,52.20979614581929],[-120.4202282842702,52.2111079146876],[-120.42459256219664,52.212271277149],[-120.42513452634944,52.212629761616306],[-120.42661021510854,52.21315983747487],[-120.42910139687437,52.21493883716195],[-120.42852802816783,52.215850215214516],[-120.42730781394458,52.21664547526894],[-120.42655131415043,52.21795004787049],[-120.43134173306335,52.22209022348583],[-120.43432552000216,52.22758706799799],[-120.43632443263323,52.232740584986544],[-120.43981730780908,52.236807625289934],[-120.44364819769619,52.24088289810559],[-120.45077412247608,52.24440106096325],[-120.45706894016814,52.24752350801294],[-120.46279906207839,52.25058027488927],[-120.46750100907329,52.2545455907276],[-120.47015171507968,52.25878758418367],[-120.47542298440389,52.26291745432371],[-120.47564523658232,52.265667349109336],[-120.47629469031712,52.26680488102182],[-120.48175679280978,52.27002983913544],[-120.4874846661302,52.273716393931224],[-120.48960483053115,52.2751021426885],[-120.48904039245704,52.2764088682157],[-120.48631306101414,52.2789686096014],[-120.48639611611235,52.28039334130506],[-120.48756668837842,52.28114461565187],[-120.49462173315243,52.28448743508623],[-120.4933946732719,52.28579299307771],[-120.48490427142234,52.28826376343206],[-120.48274842677068,52.28945691654906],[-120.48145859350672,52.294819247724796],[-120.48052478043921,52.29613024899721],[-120.47349044486494,52.29940345337974],[-120.46741160221964,52.3024560258792],[-120.46627115525382,52.303764925015045],[-120.46633032896602,52.30514129388821],[-120.46782656932216,52.306458183773685],[-120.47310082927547,52.30876850426535],[-120.47724359276064,52.31312843027184],[-120.48326476121545,52.31744443409222],[-120.489735656703,52.32044226349477],[-120.49614691962111,52.32287463767185],[-120.50225781256607,52.32581801412572],[-120.50865785339197,52.3289282198648],[-120.51080990660456,52.329279312801184],[-120.51305618343568,52.32923790889235],[-120.52191512563432,52.32681601825389],[-120.5261354912362,52.32666817084152],[-120.53263296559614,52.32972085436557],[-120.53659838352367,52.33391242667719],[-120.53686480137343,52.334486049979766],[-120.52972592440098,52.33822209252032],[-120.5230840117425,52.340474594427846],[-120.51689250132814,52.34335409584496],[-120.5164291253499,52.34386624030519],[-120.51779897187596,52.34735760998022],[-120.52427120559213,52.351441562501286],[-120.53115338216132,52.353816307689485],[-120.53180262038501,52.35427982351029],[-120.53104686721228,52.35558493668085],[-120.52953834223155,52.35689274714939],[-120.52844413552658,52.36213901428213],[-120.5285065373346,52.367455041932644],[-120.52730886039656,52.37281557050943],[-120.52315179755831,52.37799977656454],[-120.52002772870804,52.383294516251894],[-120.51660731192923,52.38847567485202],[-120.51152306388808,52.39199270394468],[-120.50476236276644,52.39568029333545],[-120.49923301440097,52.3987367000178],[-120.49142270509235,52.40218435792321],[-120.48254589535466,52.4031117131441],[-120.47402988615174,52.404101137622895],[-120.46736831840738,52.40720567013114],[-120.46133276064569,52.411176857439344],[-120.45839718158422,52.41378244020073],[-120.45808117154587,52.41875794300641],[-120.45879934053532,52.420408535404675],[-120.4600840349909,52.42167633222297],[-120.4622261201832,52.42271236871135],[-120.47034126118429,52.42464250265957],[-120.47170963392873,52.427331951096555],[-120.47567849384814,52.43140725379036],[-120.48019524648976,52.435480307521],[-120.47980500185379,52.436792974138406],[-120.48092203588446,52.437993477167545],[-120.48296863820273,52.43863155720918],[-120.49156692810641,52.43970430163598],[-120.49592527584745,52.44064517846062],[-120.50150155440947,52.44524023380682],[-120.5030702087633,52.44661475777636],[-120.50938412820256,52.44938242139472],[-120.50937946386038,52.45069200455595],[-120.51003079969429,52.4520747633427],[-120.51455951528025,52.455747608430805],[-120.51511449819499,52.45614932794732],[-120.5188408400265,52.45754001943054],[-120.52754607898707,52.457458603895276],[-120.53613441118466,52.458295744394],[-120.54187770829597,52.461975035706466],[-120.5427766201174,52.46735629073441],[-120.54170200804248,52.472205801332244],[-120.5353768119665,52.47646281495497],[-120.5334950404477,52.47776499958578],[-120.53327167497118,52.48044986592182],[-120.53250781184562,52.48249883246095],[-120.52706561478232,52.485613178928425],[-120.52129754611958,52.48918749956401],[-120.5159293230941,52.493331316347145],[-120.51001707414414,52.49616533492059],[-120.50332019815959,52.498647200045],[-120.49665931124417,52.50061100350435],[-120.48803516671875,52.50125818865206],[-120.47906312276093,52.50173027092587],[-120.47051382178944,52.50385987095548],[-120.46169727248787,52.50438189221177],[-120.4530867464421,52.50525486842897],[-120.45064592223564,52.50604124077885],[-120.4461933394087,52.51001678048087],[-120.44321981255194,52.51434225156286],[-120.43960224586988,52.519633019180766],[-120.4345998756147,52.52303211674853],[-120.42783535603148,52.52482429442012],[-120.41901281618219,52.52660453685909],[-120.41093702048683,52.52821819401343],[-120.40368955128322,52.5297227490059],[-120.39487992620843,52.531273620100414],[-120.38615311816321,52.531620273779815],[-120.37850152377682,52.53009158515012],[-120.37180021563225,52.527307965843875],[-120.36478567337697,52.52590020719078],[-120.3638037092447,52.52852593385892],[-120.35999830175929,52.53358184726598],[-120.35628880417984,52.53778944939265],[-120.35199266756908,52.54284497351565],[-120.34609181049589,52.54949668013877],[-120.33947144577748,52.55327568716938],[-120.33527797633094,52.5571904712021],[-120.33211840107384,52.561689569330404],[-120.32923343077124,52.56623739732703],[-120.32531505348886,52.57152922016092],[-120.32303394628718,52.57408349772511],[-120.32049878750212,52.57486000559646],[-120.31957230058586,52.57435323742253],[-120.31962066408467,52.5737647117348],[-120.31934809728762,52.57380707202595],[-120.31881540785776,52.573686077791436],[-120.31867153710135,52.57365263077897],[-120.31855308193798,52.57320382516013],[-120.31851601708203,52.57247675672848],[-120.31828688472363,52.57174425737302],[-120.31808284703048,52.57126991041866],[-120.31787222178522,52.570845274246395],[-120.31784269925366,52.57050875150381],[-120.31782368224499,52.57031666925166],[-120.31767556871984,52.56964434161711],[-120.31733916738627,52.56916184170411],[-120.31696971354206,52.569152249722926],[-120.31674803212275,52.56925837257008],[-120.31668167940417,52.569423233462615],[-120.31653728517738,52.56961746092361],[-120.31617554190025,52.570220495912615],[-120.31568591010556,52.57089319178728],[-120.31475473379348,52.571093421460866],[-120.31373788484888,52.57126866322243],[-120.31350716483331,52.57267194487124],[-120.31375868223752,52.57323520163944],[-120.3139102806488,52.573545644489656],[-120.31403719658273,52.57404209655844],[-120.31406620647171,52.574158763401016],[-120.31398119477963,52.57468759702881],[-120.31390737462759,52.57513208628333],[-120.3135969476557,52.575683080552935],[-120.31348705183507,52.57617584115891],[-120.31337615215607,52.576452660487],[-120.31313189856334,52.57751064181821],[-120.31326953190802,52.578149853260136],[-120.31329872725854,52.57848860972837],[-120.31307698565199,52.57904169283102],[-120.31273018823973,52.57941943733163],[-120.3126262264899,52.579755623136194],[-120.31207943112297,52.580299012588576],[-120.31164728134311,52.580760859351116],[-120.31140334870736,52.58103398695369],[-120.31083725854839,52.58127564683816],[-120.31041619267687,52.58143049294895],[-120.3097765326986,52.581444224614025],[-120.30849773161448,52.581467762802205],[-120.30796919466074,52.58187316414874],[-120.30768780616867,52.581981410989755],[-120.30724801541176,52.582277011067305],[-120.30664936600236,52.58254010773045],[-120.3058330896311,52.58265482387586],[-120.30530478013345,52.582723450593036],[-120.30451760226067,52.58284238702905],[-120.30418455673662,52.58300432259579],[-120.3040329297723,52.58325215740277],[-120.30400038469494,52.583720026123395],[-120.30412945559824,52.583976521614645],[-120.3041630074464,52.584170442070445],[-120.30427351068205,52.58456659375761],[-120.30428850510796,52.58467695562057],[-120.30429978464744,52.584815255908964],[-120.30429959469544,52.584928248654165],[-120.30436628852031,52.58543076211442],[-120.30401512823184,52.58584032309023],[-120.30382268952685,52.58606030000087],[-120.30366733536043,52.58633606325126],[-120.3035111323771,52.586506644937415],[-120.3032168785024,52.58682284226116],[-120.3026025376594,52.587203220880305],[-120.30208900692655,52.587383320803795],[-120.30171194572532,52.587652735985664],[-120.30142678766526,52.58778889664987],[-120.30085901537063,52.588153554037476],[-120.30075679709685,52.58847576700217],[-120.3007695990732,52.58882553782247],[-120.30077076085689,52.58903979681408],[-120.30073686093576,52.58962903833421],[-120.300747216487,52.58966271150975],[-120.30055026134954,52.589804876521676],[-120.30010145150997,52.58994428210682],[-120.29959008898851,52.58999628315891],[-120.29931732441517,52.59003915923734],[-120.29891330641993,52.59006493429875],[-120.2984777259292,52.590104896649876],[-120.29793234137033,52.59018952579662],[-120.29717314855912,52.59031990945882],[-120.29608732839723,52.59022909039526],[-120.29499723150379,52.58961349067306],[-120.2947285279938,52.589180345197526],[-120.29470358593043,52.58914483246861],[-120.29402002075697,52.588930318447765],[-120.2933372739807,52.58848700922194],[-120.29243128884893,52.58827170979075],[-120.291474168349,52.58821751019168],[-120.290679471458,52.588725611311546],[-120.29026971102559,52.58923964713806],[-120.28929097292632,52.58934741766586],[-120.28833175697625,52.58919750251018],[-120.28720855647552,52.588942276653455],[-120.28678377994282,52.58890120614825],[-120.2866187954849,52.589025801795486],[-120.28636547625334,52.58947890598346],[-120.28582000065488,52.58956404163436],[-120.28475058637416,52.589572863523856],[-120.28387294129156,52.58958996931806],[-120.28384358141886,52.590143447961076],[-120.28424266444958,52.590710641938514],[-120.28490306610719,52.591321013128685],[-120.28503526795306,52.59144219316689],[-120.28508107746484,52.59176603645005],[-120.28527344323537,52.59232590060283],[-120.28523380794394,52.593957231623264],[-120.28518372171074,52.59477732207061],[-120.28489870976559,52.59568989766781],[-120.28560039458634,52.5966587365284],[-120.28621512868465,52.597167333854486],[-120.28664582709727,52.59816560426084],[-120.2870825322524,52.59889654583577],[-120.28753917073267,52.599255710133356],[-120.28764698453602,52.59933745804486],[-120.28798305556217,52.59993302474136],[-120.28800635902908,52.59998082725588],[-120.28836990664901,52.60070424409471],[-120.28804903589675,52.601552095458665],[-120.28766162711278,52.6018974284879],[-120.28725849929161,52.60224929434218],[-120.28688891426394,52.60290584752348],[-120.28650938970269,52.60374801364833],[-120.28624326623607,52.60463002968101],[-120.286149428037,52.60522194562822],[-120.28610434154625,52.60600460132014],[-120.28596403790681,52.60649979405804],[-120.28568103627401,52.60750804379002],[-120.28608610528923,52.60814297579626],[-120.28635299522227,52.60903481039827],[-120.28712870393913,52.609673286951015],[-120.28742362287939,52.60991038138299],[-120.28770045362144,52.61083924600956],[-120.28602210300396,52.611625056435756],[-120.28538732727972,52.61226579916084],[-120.28509108743317,52.61281687208186],[-120.2846829136297,52.61320559175057],[-120.28438563342928,52.61365316325592],[-120.28402485705547,52.61424267424669],[-120.28300448397913,52.61510231451188],[-120.28114616617673,52.615455321998496],[-120.27918493869493,52.61557836103313],[-120.27740240498262,52.61569721302971],[-120.27583934653408,52.61572897868563],[-120.27398663908825,52.61581734660549],[-120.27221056148298,52.61577675538297],[-120.27074188095396,52.616101519191005],[-120.26798899632077,52.61603815870739],[-120.26596594761128,52.616289501901605],[-120.26439851665445,52.616353519497274],[-120.26302049848694,52.61677653938093],[-120.2618658652988,52.61708348335969],[-120.26048719948278,52.61751094154851],[-120.25977966476994,52.61769425356785],[-120.25897974118685,52.61779149193227],[-120.25804309819375,52.61791178531397],[-120.2522571787399,52.617879106609855],[-120.25192219167948,52.617941304097975],[-120.25089326493368,52.61786414631371],[-120.2496941467307,52.61783817347953],[-120.24793632146434,52.61788189556265],[-120.24675478803765,52.618277328755596],[-120.2458880349228,52.61876081325271],[-120.24432830808567,52.619428791550874],[-120.24316505215448,52.620129265266534],[-120.24273045966031,52.62049013286669],[-120.2415337401793,52.62121817692793],[-120.24057774753248,52.621591516569175],[-120.24014083091973,52.62174872728975],[-120.23659310040512,52.62218175928463],[-120.2356995160989,52.622752685735996],[-120.23496081083124,52.6240475721871],[-120.23489325188959,52.62510013838043],[-120.23471941860676,52.62628014031776],[-120.2343387386405,52.62712155995037],[-120.23435139993217,52.628570541204354],[-120.23396730498065,52.62954729737981],[-120.23400991196829,52.63066378172816],[-120.23394555639545,52.63158212071056],[-120.2337835647486,52.63256366816737],[-120.23374810766506,52.63315734024909],[-120.23379620888568,52.63401264400877],[-120.23386463636585,52.63460695385611],[-120.23538233116753,52.636350727648505],[-120.23656821155393,52.63802241091399],[-120.23856502280657,52.63885760306696],[-120.23973824811775,52.63908029142343],[-120.24101224410629,52.639437249338116],[-120.24229452975882,52.6397327640431],[-120.24358615440872,52.63995899801619],[-120.24507872377893,52.64012710522303],[-120.24604734245902,52.640214814869964],[-120.24745131397209,52.64037907801461],[-120.24829287478265,52.64052797052409],[-120.24871959153965,52.64066876300831],[-120.24943722382385,52.64140806278389],[-120.249260866547,52.64238834339413],[-120.25041908898699,52.64294470128453],[-120.25182589710468,52.642978050496964],[-120.25319516153759,52.643401403939144],[-120.25501959963654,52.643643639178656],[-120.25651598421639,52.64400574383228],[-120.25862592063481,52.64477753483313],[-120.25967525343623,52.6452609646151],[-120.2611535963627,52.645758184569644],[-120.26330131057072,52.6461387413739],[-120.26565965547553,52.64638906370712],[-120.26648704066059,52.64686657176791],[-120.26772634242408,52.6478180296027],[-120.26832350967095,52.64868339494126],[-120.26860300744929,52.649480292856175],[-120.26940761499925,52.650350217592226],[-120.27130156435943,52.651185353674364],[-120.27396883850192,52.65190492001966],[-120.2753585371897,52.65206813116915],[-120.27584476135111,52.652320802546484],[-120.27642019821269,52.65246204099558],[-120.27728182889149,52.65290740616008],[-120.2782508068991,52.6532169174743],[-120.27925269471777,52.65372480727055],[-120.28060298387975,52.654072106728556],[-120.28158087924517,52.654093049430685],[-120.28320405400734,52.65384425697694],[-120.28422272271828,52.65389360367572],[-120.28515914805153,52.6540024382189],[-120.28701125714277,52.653819335925036],[-120.28834615832373,52.65350351211653],[-120.28994660372945,52.65331310998676],[-120.29056519718446,52.65335406669769],[-120.29157558712156,52.65346534444086],[-120.29227113125167,52.65382038320884],[-120.29261716083661,52.65434498197345],[-120.29251458050918,52.65511355403292],[-120.2917835233433,52.65546964408828],[-120.29042406386273,52.65552401147725],[-120.28751428140066,52.65617149165034],[-120.2871976171585,52.656873361985596],[-120.28639029755644,52.65768838689132],[-120.28543343438935,52.65806543532671],[-120.28407144918548,52.658804933771734],[-120.2831045692106,52.65981226950849],[-120.28195464688343,52.66018770587718],[-120.28070498438001,52.6606420171694],[-120.2801970865417,52.661216995760086],[-120.280093906991,52.66221041838777],[-120.2795318206043,52.66285695927506],[-120.27885240960315,52.66326948166943],[-120.27850649690558,52.66363314318652],[-120.27783450057707,52.6638790528644],[-120.27715950586102,52.664147300313296],[-120.27605457668649,52.66440738590463],[-120.27514969827438,52.66472731559686],[-120.27419651484067,52.664963910942646],[-120.27321296968556,52.665538026394835],[-120.27206300810072,52.66580093178158],[-120.2712981740587,52.666184485781876],[-120.27038204947654,52.66647684365494],[-120.26994802168677,52.666720900444616],[-120.26954205836884,52.66719908935117],[-120.26912060208936,52.66790364998794],[-120.26898126334916,52.66849949943484],[-120.26871892907758,52.66979094930868],[-120.26901933211307,52.67109822581561],[-120.26919742426567,52.6719873905269],[-120.2688728550166,52.673299395958374],[-120.26741385714486,52.67420206414738],[-120.26646541887574,52.6750662676483],[-120.26528302796414,52.67590098198686],[-120.26439493030382,52.67653650457893],[-120.26383467061372,52.677276959131845],[-120.26358538336743,52.677472728858454],[-120.2630785552409,52.67814721610142],[-120.26296234165176,52.6784591595409],[-120.26288698997234,52.67879896356595],[-120.26300005536743,52.679285772431584],[-120.26270688440947,52.68025130494538],[-120.26247368926076,52.680991517361925],[-120.26234921355984,52.68147564842548],[-120.26227047397906,52.68195134936766],[-120.26215326825942,52.68238129848031],[-120.26413841048416,52.68365441846714],[-120.26513635159536,52.68430668095866],[-120.26573326544059,52.684623288669314],[-120.26684545401189,52.68520018646475],[-120.26709443839388,52.68545022861521],[-120.26748290171281,52.68565820101713],[-120.26780604544824,52.68579887401356],[-120.26819712421951,52.68587654041304],[-120.26846305324808,52.68600034332774],[-120.26905469719338,52.68635658473854],[-120.26958690018793,52.68682347091802],[-120.2699862666895,52.687061203252036],[-120.27029928103947,52.68749933911687],[-120.2706025262686,52.68778857278657],[-120.27126822097614,52.688480133030446],[-120.27127308854132,52.689220230019124],[-120.2712185699633,52.68962683871387],[-120.2713227069073,52.68984839936137],[-120.27138758282246,52.69025186941735],[-120.2716527686683,52.69060332254585],[-120.27201536949548,52.690893770693826],[-120.27275368751913,52.69170975696125],[-120.27307549779485,52.691971781539124],[-120.2738077266119,52.69227866525526],[-120.27485914340016,52.69275635776706],[-120.27544307633099,52.693171206359274],[-120.27602709481194,52.693585497859964],[-120.2763296331884,52.69399161384022],[-120.2763748766436,52.694764040780875],[-120.27634733246697,52.69519165154673],[-120.27633475545856,52.695507547375165],[-120.27642987320284,52.69601875190461],[-120.27701872717519,52.6966193545049],[-120.2788651352884,52.698047830471424],[-120.28144716490331,52.699982277216726]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":39,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"5","REGION_NUMBER":5,"REGION_NAME":"Cariboo","REGION_NUMBER_NAME":"5- Cariboo","FEATURE_AREA_SQM":129902822539.641,"FEATURE_LENGTH_M":2590149.8606,"OBJECTID":3,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-120.28144716490331,52.699982277216726],[-120.28166686600646,52.70011896334786],[-120.2828756256696,52.701201315825905],[-120.28407887503646,52.70254761120022],[-120.28522032845889,52.70335566367774],[-120.28751046571567,52.70414004606085],[-120.28965042825898,52.70482428295139],[-120.29240122405507,52.70539101976941],[-120.29252745630977,52.70567097398517],[-120.28939316354857,52.70541324522477],[-120.28599549824204,52.705567562471295],[-120.28430391282484,52.70597954066127],[-120.28109902884427,52.70691559824003],[-120.28083291217072,52.70745857213733],[-120.27977185580527,52.708938031039374],[-120.27978189189712,52.70908525826075],[-120.27979267736787,52.709226891266205],[-120.27978935429807,52.709362778321],[-120.27964278064515,52.70945736295711],[-120.27942529333349,52.70952597887767],[-120.27922385804065,52.70958582765892],[-120.27900764078449,52.709644952325824],[-120.27880620434767,52.70970480038374],[-120.27859118315975,52.70975498786757],[-120.2783755628213,52.70980964315706],[-120.27815994193219,52.709864298047606],[-120.27794499342299,52.70991393028236],[-120.27773019529164,52.70996243613495],[-120.27751509610646,52.71001318462698],[-120.27730014729923,52.7100628067367],[-120.27707228707438,52.71009774579993],[-120.27684382766677,52.71013715261249],[-120.27663007392854,52.710177846037546],[-120.27640168914233,52.71021668899316],[-120.27618786032522,52.71025793566452],[-120.27597350645614,52.7103030960774],[-120.27575870413729,52.71035159830088],[-120.2755282201043,52.71040608713984],[-120.27532744966409,52.71046089800538],[-120.27511174612788,52.710516110250055],[-120.27489559396797,52.71057466429583],[-120.27469347288381,52.71063953641421],[-120.27447672046252,52.71070255786268],[-120.27427444836745,52.71076854629712],[-120.27408568486955,52.710844749175585],[-120.27392341428335,52.71094529549888],[-120.2738037651921,52.71106086533794],[-120.27366873445949,52.71118017878129],[-120.27353430214654,52.71129502388634],[-120.2734140518401,52.7114150614727],[-120.2732649104536,52.71152862772448],[-120.27310428320678,52.71161688539678],[-120.27290088169079,52.711691244768055],[-120.27268456955544,52.711750920664564],[-120.27248259058557,52.71181466293728],[-120.27227971084793,52.71188511604265],[-120.27206339806516,52.71194478184764],[-120.27184918123481,52.711988817618526],[-120.27162190568818,52.71201927786795],[-120.27139410593674,52.712053642847486],[-120.27118146197438,52.712085944006105],[-120.27095373584665,52.71211975407567],[-120.27072518447761,52.71215971188456],[-120.27051036689257,52.712208204419625],[-120.27028114077055,52.712253183565494],[-120.27006677067553,52.712298333104975],[-120.26985375036311,52.712333419974286],[-120.26962632166737,52.71236499338135],[-120.26938800798413,52.71236679840094],[-120.26916687502872,52.712351455353655],[-120.26892976073758,52.712344323145466],[-120.26869099737041,52.71234947785639],[-120.26845088458002,52.712364685404424],[-120.26825114423333,52.712411673749315],[-120.26813200110911,52.71252332358602],[-120.26803297434833,52.71270680574982],[-120.2683216362544,52.71388189379666],[-120.26953134658105,52.71495767180443],[-120.27062374477461,52.71557737021681],[-120.27147408511172,52.716559601479396],[-120.27230740808518,52.717447108578234],[-120.27338131166643,52.71842735221519],[-120.27596892965518,52.71921750517063],[-120.2820285784541,52.7208633853572],[-120.28365914405965,52.72135635842112],[-120.28512865746933,52.72194093332705],[-120.28718246354575,52.72271932955358],[-120.28924567727223,52.72353917983902],[-120.29094147552749,52.72399081239386],[-120.2924367140561,52.72416165650734],[-120.29348358054588,52.72423525953055],[-120.29498540604138,52.72435692048751],[-120.29654608888399,52.724483682500015],[-120.29834025516872,52.724756734146396],[-120.29961374458527,52.72491666656982],[-120.29888095500658,52.725723058148695],[-120.2979963988474,52.726662585439655],[-120.29751974760514,52.72711099869403],[-120.29678383489107,52.7280515817626],[-120.2961182592231,52.7291338963917],[-120.29569119237547,52.72999060173554],[-120.29452889990687,52.730556765287005],[-120.29280042041259,52.73157200038862],[-120.29177055322471,52.732371722606295],[-120.29181350123712,52.73305236637745],[-120.2921249137554,52.7340631734056],[-120.2925471109942,52.73457962086514],[-120.29232429684427,52.73557784504068],[-120.29144918109127,52.73633283569501],[-120.29051539952746,52.73685840538675],[-120.28829489653417,52.7375426125683],[-120.28719489351067,52.738197208590854],[-120.28698980615032,52.739061929472385],[-120.2869384640395,52.73922301771431],[-120.28689026313428,52.73936063915329],[-120.28682719469862,52.739498100783685],[-120.28673543935182,52.739627414584604],[-120.28661499688609,52.73974858049065],[-120.28648110776106,52.739858970109076],[-120.28636021524687,52.73998348684981],[-120.28622647429127,52.740092759121914],[-120.28602348305364,52.74016323470566],[-120.28581996823772,52.7402376150972],[-120.28564469073017,52.74032349429609],[-120.2854821858882,52.74042517169166],[-120.28534769337305,52.740540028112314],[-120.28519982843193,52.74064355402443],[-120.28499563731049,52.74072295515544],[-120.2847934644648,52.74078728041323],[-120.28459046756917,52.74085775348203],[-120.28441451239202,52.7409486529962],[-120.28426664377909,52.74105217770264],[-120.28411817716218,52.74116016141728],[-120.28392750154481,52.74124978302589],[-120.28373757328752,52.7413338191494],[-120.28363288202392,52.74144844875393],[-120.28361320555634,52.74159533420679],[-120.28357940915238,52.74173647428704],[-120.28351692512892,52.74186946578541],[-120.28345459035839,52.74200134020577],[-120.28337686392445,52.74213695951473],[-120.28328449389507,52.7422707385175],[-120.28319332048613,52.74239558117631],[-120.28310162216219,52.74252433783469],[-120.28299528126303,52.74265124519605],[-120.28287541832165,52.74276793888733],[-120.2827404624476,52.74288614323175],[-120.28260595482922,52.74300099631786],[-120.28247144648833,52.7431158492408],[-120.28235173048999,52.7432314253297],[-120.2822312654534,52.743352586439535],[-120.28209660531817,52.74346855593593],[-120.28196224382471,52.74358229120874],[-120.28181376140745,52.74369028075849],[-120.28165198313764,52.74378636746684],[-120.28144829377537,52.74386185711611],[-120.28124527677237,52.74393232424607],[-120.28104315856727,52.74399607991392],[-120.28082729325746,52.74405130145031],[-120.2806115783111,52.744105396623056],[-120.28039653600052,52.74415446924085],[-120.28016722330582,52.74419891273304],[-120.27995090781603,52.74425747479309],[-120.27977739899568,52.74432994066428],[-120.2796430286275,52.74444367321295],[-120.27952240274819,52.74456594846703],[-120.27938728217435,52.74468526583489],[-120.2792530594132,52.74479788088386],[-120.27910434188463,52.74490753798379],[-120.27896989242771,52.745021832697724],[-120.2788347688717,52.745141149392445],[-120.27871563648141,52.74525225351226],[-120.27856631687045,52.74536637799452],[-120.27841797066608,52.74547323715341],[-120.2782693984368,52.74558177612087],[-120.27814966417779,52.74569734772758],[-120.27798622110875,52.745805725441635],[-120.27782442623524,52.7459018067311],[-120.27756562627206,52.74605498942275],[-120.27736334273281,52.74611985567672],[-120.27716053360842,52.74618863562351],[-120.27694270447184,52.74625837120834],[-120.2767815048654,52.74634998294319],[-120.27666041592197,52.746475606160566],[-120.27662786571906,52.746607253568364],[-120.27663790102596,52.74675446841954],[-120.27664928373164,52.74689163900525],[-120.2766898810864,52.747033045746214],[-120.27673107805091,52.74716998437735],[-120.27680208939213,52.74730669103944],[-120.27692077956884,52.74742100417152],[-120.27708520342006,52.747527427032246],[-120.27723535737174,52.74762922057867],[-120.2773840138364,52.74774218413646],[-120.2775178009955,52.74785498654088],[-120.27765114061688,52.74797113091161],[-120.27776961078996,52.74808711419738],[-120.27790235138748,52.74820773528532],[-120.2780050550039,52.74833025059697],[-120.27812262831156,52.74845293562608],[-120.27820948849448,52.74858255496404],[-120.278295901003,52.748715516354814],[-120.27836759340775,52.74884719980027],[-120.27845385594776,52.7489812870088],[-120.27855663730048,52.749103247731554],[-120.27867473918647,52.749222018101],[-120.2787763234321,52.749352914783664],[-120.27886378657566,52.74947806547338],[-120.27890439370991,52.74961947120505],[-120.27897616499634,52.74975059122059],[-120.2791093635097,52.749867859744214],[-120.27925855753453,52.74997690671317],[-120.27940827593577,52.750082048375866],[-120.27955747027214,52.750191103885],[-120.27966018339524,52.75031361758533],[-120.27976177325121,52.75044451331934],[-120.27986456185208,52.75056647277718],[-120.28001301023347,52.75068111278173],[-120.28017737884025,52.75078809405374],[-120.28035946474596,52.75087401225751],[-120.28055911684174,52.75093999327311],[-120.28077865654386,52.75096871868881],[-120.28100238918006,52.7509661670414],[-120.28124091751131,52.750964338432254],[-120.28148064361814,52.75095357314649],[-120.28170811909598,52.750923094554025],[-120.28192661149357,52.75095963698929],[-120.28214323232456,52.75101014629334],[-120.28235813269416,52.75107349651407],[-120.28255831334386,52.751135560060334],[-120.28275564922902,52.751218855679824],[-120.28293878996331,52.75129695067522],[-120.28313657638267,52.751376894568175],[-120.28333571183893,52.75144677595388],[-120.28353514609428,52.75151443188198],[-120.28375311983875,52.75155487602128],[-120.28398746082654,52.75158431856126],[-120.28420461165047,52.7516309099735],[-120.2844202664457,52.75168867125321],[-120.28463569675779,52.75174811214306],[-120.28485359731644,52.751789117211395],[-120.28507321967881,52.75181727158521],[-120.28530995705452,52.75182883903064],[-120.28553788332327,52.75179500193869],[-120.28576057268968,52.75180026040944],[-120.28598026991307,52.751827859037306],[-120.28621341709879,52.75186623335329],[-120.28649095311154,52.75190677561694],[-120.28706664413683,52.752056325443014],[-120.28740932687744,52.75227769263884],[-120.28771360676014,52.75245220963747],[-120.28823429244889,52.75279020356582],[-120.28861770390756,52.75315241522759],[-120.28899768370732,52.753540308339076],[-120.28961405205266,52.75383124731745],[-120.29044288940646,52.75420395377302],[-120.29104806773003,52.75446735399589],[-120.29193320492449,52.75486471632208],[-120.29260513698544,52.75496327362673],[-120.29308747389803,52.75514308945989],[-120.29232447862232,52.75873068819226],[-120.2897655068513,52.7604884921862],[-120.28850931084419,52.76219404417509],[-120.28809988342852,52.764361437383684],[-120.28786263808905,52.76824619834096],[-120.28828691787076,52.77052904712322],[-120.28930911091484,52.77201919262032],[-120.29285421750008,52.773808355134584],[-120.29725538462382,52.77577233903188],[-120.30062931294853,52.77795482227044],[-120.3018303083873,52.779449589198244],[-120.30642044020901,52.78089845366951],[-120.30690286448622,52.780968583010896],[-120.31019439662825,52.781429949378904],[-120.31339589050344,52.78144950002766],[-120.3199062642525,52.78079425229202],[-120.32660358271652,52.779740163875296],[-120.33161832564346,52.77833722268069],[-120.33662328607828,52.77790271575189],[-120.33772853935741,52.77945426411749],[-120.33855823815112,52.78162260562137],[-120.33881419371782,52.7835107888517],[-120.34029936281834,52.78545784898121],[-120.34129851106611,52.78803569692282],[-120.33759421132042,52.789554189085884],[-120.33409882265306,52.790283912513864],[-120.32946310719878,52.79151705480249],[-120.32519703847422,52.793554366151405],[-120.32139160369707,52.79615914735961],[-120.32016183067142,52.79632604090371],[-120.31842062693174,52.79954632839427],[-120.31620242987793,52.80022060855412],[-120.31509329521631,52.801465850398706],[-120.31498690143239,52.80159279080771],[-120.31486636436841,52.80171398081484],[-120.31474590173278,52.80183460770588],[-120.31461136845533,52.80194893902904],[-120.31444854904743,52.802051769503045],[-120.31428647289238,52.80214902353921],[-120.31411092460363,52.80223549586729],[-120.3139342570902,52.80233035010369],[-120.31377210477264,52.80242815745766],[-120.31360935545281,52.80253043268986],[-120.3134748169403,52.802644762658566],[-120.3133402037673,52.802759646509806],[-120.31322040411783,52.80287524960195],[-120.31311385336811,52.80300329628704],[-120.31299338095221,52.80312393021467],[-120.31288817067771,52.803241923441824],[-120.31276717573304,52.80336646224007],[-120.31266129272099,52.80348948632759],[-120.3125548127138,52.80361697840969],[-120.31244892846875,52.803740002285615],[-120.31234244720285,52.803867494154304],[-120.31225070477215,52.80399626842212],[-120.31217362853701,52.804126870231045],[-120.31215454264625,52.80426984931284],[-120.31225807459103,52.80438787093999],[-120.31243978202328,52.80447876736336],[-120.31265618917811,52.80453312362102],[-120.31287431203022,52.80457462922565],[-120.31309131656708,52.804624516578926],[-120.31330712896872,52.80468333973084],[-120.31350641210204,52.80475429337874],[-120.31368872003442,52.804840719745535],[-120.31387110383426,52.80492658284338],[-120.31405266793057,52.80501859376352],[-120.31421911965299,52.80511211917431],[-120.31456721242458,52.805297100405916],[-120.31473307017772,52.80539509317596],[-120.31488307021442,52.805500185700694],[-120.31504840844458,52.80560208313699],[-120.3151988570877,52.80570382416408],[-120.31534841226278,52.805812267153335],[-120.31546595306196,52.805937144144714],[-120.31556897720729,52.80605906784994],[-120.31568674226975,52.80618227352782],[-120.31582096390832,52.806293901916824],[-120.3159708207634,52.80640011001724],[-120.31613668602219,52.80649810073398],[-120.31631796366638,52.806592342110804],[-120.31650184908007,52.806667039683674],[-120.31671760260025,52.806726410532214],[-120.31695063016569,52.806768073414894],[-120.31716988541301,52.80680119773196],[-120.31740648936261,52.80681605102265],[-120.31762991650402,52.80681789767202],[-120.31786696761174,52.80682939894689],[-120.31808331851097,52.806884308097345],[-120.31828262104455,52.80695524459781],[-120.31844961032475,52.80704485875535],[-120.31858324609414,52.80716095204256],[-120.31859403489156,52.80730369825801],[-120.31844661638604,52.80740278452457],[-120.31821886627088,52.80743333328443],[-120.31798300345585,52.807412896491634],[-120.31789507575681,52.80740132743855],[-120.31776314854405,52.80738424182216],[-120.31752728621834,52.807363804112974],[-120.31730623998553,52.80734408481562],[-120.31706911107989,52.80733314539416],[-120.31684255232815,52.807354755260576],[-120.31661495032482,52.8073841838814],[-120.31638965824646,52.80739629367177],[-120.31615141226678,52.80739372563203],[-120.31592500175054,52.80741421669965],[-120.31569724977047,52.80744476056629],[-120.31546949746455,52.80747530399027],[-120.31524107355855,52.807510878055105],[-120.3150134696193,52.807540303567365],[-120.31478698385013,52.80756134648226],[-120.3145617642512,52.807572898718206],[-120.31432292114084,52.807574795065875],[-120.3141005336696,52.807565122953314],[-120.31386407579522,52.807549145981625],[-120.31362642544254,52.807542104721456],[-120.31340239833388,52.80754471854472],[-120.31316221348278,52.80755666573949],[-120.31293758986924,52.807563746767165],[-120.31271117690935,52.8075842316329],[-120.31247106560232,52.807595623369956],[-120.31224509960461,52.80761275627018],[-120.31201928254983,52.80762877171382],[-120.31179160179344,52.80765874501859],[-120.31156324900692,52.80769374894278],[-120.31134725030324,52.80774790736592],[-120.31113065565225,52.807806524533994],[-120.3109557483042,52.80788796970356],[-120.3107929714274,52.80799024066884],[-120.31058902732228,52.80806577778618],[-120.31040079353374,52.808135332189266],[-120.3101827026816,52.80820512671903],[-120.30999499034183,52.808270766431804],[-120.30977712250944,52.80833888020623],[-120.30958866181167,52.80841011328958],[-120.30938493796154,52.80848396829967],[-120.309181735016,52.808553917860685],[-120.30899275074829,52.80862905506914],[-120.3088170898935,52.808716082092246],[-120.30863956251567,52.80881707601902],[-120.30847752265618,52.80891375863064],[-120.3083013378846,52.809004689953554],[-120.30813914731627,52.80910248910197],[-120.30796161672818,52.80920348197814],[-120.30780024604628,52.80929513259483],[-120.3076232368117,52.8093922109269],[-120.30746126649609,52.80948833806046],[-120.30729914739057,52.809585573042426],[-120.30713635528316,52.80968783882426],[-120.30696001400275,52.80977989403807],[-120.30678389646265,52.809870268993734],[-120.30658008555935,52.80994468204034],[-120.30637888694632,52.809999542542236],[-120.30616212357191,52.81005927640477],[-120.30594551007718,52.810117883916725],[-120.30573061231429,52.810163649861494],[-120.30550216591313,52.81019920491047],[-120.30527394369354,52.81023307952962],[-120.30506106098869,52.810263760129544],[-120.30483194214415,52.810304335951635],[-120.30460364356965,52.81033877223836],[-120.30438881852074,52.810383972747005],[-120.30418686713222,52.81044442346039],[-120.30399659687762,52.81052904264418],[-120.30380684799492,52.81060975645209],[-120.30360243095238,52.81068863232787],[-120.30341342741733,52.81076376044918],[-120.30322375047434,52.810843919266155],[-120.30303340124759,52.810929099838745],[-120.30285719656501,52.81102002287112],[-120.30270912999349,52.811123566096036],[-120.30257431173614,52.81123955397442],[-120.30248267458444,52.81136719404909],[-120.30239081220269,52.81149651401926],[-120.30231301940391,52.8116321397145],[-120.30226456162076,52.81177144092581],[-120.30223151830063,52.81190699486818],[-120.30219765249142,52.812048696789006],[-120.30216393705062,52.81218927274538],[-120.3021301460905,52.81233041165016],[-120.30205294855193,52.812461569078586],[-120.30191961834487,52.81256638605323],[-120.30174138688983,52.81267239134933],[-120.30159338718657,52.81277537008611],[-120.30144538676933,52.81287834862945],[-120.30128197038896,52.812985074090506],[-120.30111974861993,52.81308286328781],[-120.30094420282529,52.81316876127421],[-120.30074021655821,52.81324428102542],[-120.30055074833962,52.813322755422206],[-120.30036157832343,52.813398995504464],[-120.30015706623506,52.8134784282073],[-120.29996804428635,52.8135535506457],[-120.29976472764827,52.813624037707],[-120.2995622318337,52.813688385374405],[-120.29934611343833,52.81374307553408],[-120.29913006863282,52.81379721126168],[-120.29891462243094,52.813846869652714],[-120.29869977251062,52.81389206858292],[-120.29847197365535,52.81392257889612],[-120.29823130022805,52.81393784648616],[-120.29800537030556,52.81395438893358],[-120.29777831821703,52.81397931290442],[-120.29753592408075,52.814007429021316],[-120.29732032543238,52.8140582014779],[-120.29724610066768,52.81416701563881],[-120.29731624121317,52.814311531802396],[-120.29743278131807,52.81444368218246],[-120.2976149485578,52.814531249972674],[-120.29781559725853,52.814592176828214],[-120.29803248559944,52.81464320870001],[-120.29825012200506,52.81468865517528],[-120.29846768472024,52.81473465527736],[-120.29869939270064,52.814786407171106],[-120.29891658206941,52.814835203404535],[-120.29911693508181,52.81489836202282],[-120.29929993046957,52.81497977920639],[-120.29946519287735,52.81508226093752],[-120.29961503988747,52.815188489316334],[-120.29977978011219,52.8152948845592],[-120.29991436187666,52.81540374244722],[-120.30006383806918,52.81551275826387],[-120.30022910437408,52.815615238884476],[-120.30041255212878,52.81569331223009],[-120.30062788053377,52.81575606331086],[-120.3008443298138,52.815810440952276],[-120.30106070432757,52.8158653811616],[-120.3012623361401,52.81591903709565],[-120.30147931065461,52.815969499586586],[-120.30171237379787,52.81601119247434],[-120.3019306187658,52.81605216407716],[-120.30214931238896,52.816089784264896],[-120.30238222743712,52.816132592822264],[-120.30260099597297,52.81616965813317],[-120.30282028836866,52.81620280905504],[-120.30305499737372,52.81623221223228],[-120.30327682995795,52.81624637323541],[-120.30351333204176,52.81626237144661],[-120.30373628581646,52.8162681495804],[-120.30397398311341,52.81627521082615],[-120.30421287535921,52.81627333554856],[-120.30443694883526,52.81627073928013],[-120.30467584103572,52.81626886306046],[-120.30489991446014,52.816266265908354],[-120.30513880661519,52.816264388746546],[-120.30536362663096,52.8162562056771],[-120.30560371328764,52.816245391515224],[-120.30582778653238,52.81624279259202],[-120.30606563334415,52.81624873259546],[-120.30628731770828,52.81626400491724],[-120.30652322382446,52.81628446509623],[-120.30696427886572,52.816332325695456],[-120.3074272448933,52.816327842356884],[-120.30788976303548,52.81632670822227],[-120.30835332590722,52.81631775319193],[-120.30881756075414,52.8163037653131],[-120.3092830631221,52.81628028546687],[-120.30974662519732,52.816271324934476],[-120.31021093308676,52.816256777507064],[-120.31068931355793,52.81624853302798],[-120.31113626601267,52.81625225145272],[-120.3116111402787,52.81627025751593],[-120.31206813901673,52.81631043646129],[-120.3125227523497,52.81636848587885],[-120.31297334040747,52.81645669297331],[-120.31337499974516,52.816576250712885],[-120.31375617607989,52.81673753439064],[-120.31410384038047,52.81692642070051],[-120.31442261481023,52.81710828238357],[-120.31476916752963,52.817305539841115],[-120.31489642869167,52.81735781031479],[-120.31499613864904,52.817393004053436],[-120.31509517732337,52.81743322875681],[-120.31517895080175,52.81747607634637],[-120.31527761775344,52.81751908897144],[-120.3153766569855,52.817559313434124],[-120.31547644294007,52.81759394378291],[-120.31557540859633,52.81763472211717],[-120.31567526882398,52.817668798254026],[-120.31577550126782,52.81770008622596],[-120.31587506369073,52.81773639622922],[-120.3159759677887,52.817762652974935],[-120.31609161755252,52.81779018270981],[-120.31619416146779,52.817804152055395],[-120.31631152493611,52.81781884031798],[-120.31642769612856,52.81784246462049],[-120.31652979315344,52.81785978473133],[-120.3166459645781,52.81788340881726],[-120.31674746564367,52.81790519681787],[-120.3168630411783,52.81793328876827],[-120.31697980910967,52.81795244444223],[-120.3170812353997,52.81797479513152],[-120.31719800354254,52.817993950587926],[-120.31729995221991,52.818012387047794],[-120.3174168695831,52.8180304252654],[-120.31753304196306,52.81805404847092],[-120.31763387392081,52.818080857828726],[-120.3177500465581,52.81810448081879],[-120.31785035664586,52.81813520403177],[-120.31795185892489,52.818156990987546],[-120.31806683992217,52.81818954983375],[-120.3181682673447,52.81821189958048],[-120.31828384464471,52.818239990126635],[-120.31838519839928,52.81826289372802],[-120.31850152093966,52.81828539894985],[-120.31860347087607,52.81830383427426],[-120.31871912380052,52.818331361411126],[-120.31881988207036,52.81835873272468],[-120.31893501325402,52.81839017369398],[-120.31903532486598,52.81842089588892],[-120.31911954997474,52.818460398507895],[-120.3192175533854,52.81850842992789],[-120.3193174185643,52.81854250294752],[-120.31941705985334,52.81857825588389],[-120.31951662742193,52.818614562778265],[-120.31961701505762,52.818644721492156],[-120.31971673191278,52.818679911192206],[-120.31981644893234,52.81871510080677],[-120.31991668686818,52.81874638522194],[-120.32003167095164,52.8187789421314],[-120.32013317587466,52.818800727192276],[-120.32024883113179,52.81882825281338],[-120.32035137890107,52.81884221851832],[-120.32046874665377,52.81885690261528],[-120.32049756671296,52.8188644876735],[-120.32058551872959,52.818876054691486],[-120.3207034824014,52.818886270456694],[-120.32080543472381,52.81890470386181],[-120.3209228028045,52.818919387504216],[-120.32104017096592,52.8189340710292],[-120.32114227247301,52.8189513871165],[-120.32125964079795,52.81896607042174],[-120.32137760487981,52.818976285508974],[-120.32149452660605,52.81899431965456],[-120.32159647952813,52.819012752371385],[-120.32171444381962,52.81902296711994],[-120.32183419505508,52.8190197774418],[-120.32195335065619,52.819021055744905],[-120.322057090658,52.81902608375174],[-120.3221762462834,52.81902736182854],[-120.32229540191592,52.81902863978436],[-120.32241396198712,52.81903438572499],[-120.32253371320233,52.819031195333395],[-120.32263812268984,52.81903120067533],[-120.32275727834688,52.81903247816247],[-120.32287643401108,52.81903375552869],[-120.32299320765088,52.81905290520795],[-120.32309575685767,52.81906686851381],[-120.32321253068643,52.81908601797443],[-120.32332870914627,52.81910963542877],[-120.32339737637673,52.819153993041816],[-120.323464033474,52.81921343495413],[-120.32353076459331,52.81927232278068],[-120.32359764594983,52.819330084603095],[-120.3236650479041,52.819383941256376],[-120.32373125915593,52.81944673409128],[-120.32376708591347,52.819513675901],[-120.32378801753525,52.81958046261841],[-120.32380850384008,52.81965059147618],[-120.32384410700882,52.819719213263284],[-120.32386504004273,52.81978599102197],[-120.32388612080779,52.81985166068251],[-120.32392179929231,52.81991971945526],[-120.32397222442678,52.81998905029878],[-120.32400849857929,52.8200526409286],[-120.32402824001376,52.820128363801075],[-120.32406451436809,52.82019195440783],[-120.32414726030689,52.82024261471483],[-120.32419880196765,52.82030357220714],[-120.32424974838078,52.82036899778544],[-120.32430129034056,52.82042995522774],[-120.32436854607334,52.82048492846678],[-120.3244506963739,52.820540065597726],[-120.32451862285919,52.82059000765348],[-120.32460181543925,52.820637325479616],[-120.32469938350259,52.820688703340124],[-120.32476730932468,52.820738654183394],[-120.32484946181935,52.82079378209013],[-120.32494911299709,52.820829530279504],[-120.32504764871514,52.82087365162853],[-120.32513143893549,52.82091649202101],[-120.32521463283123,52.82096380940299],[-120.32531383943305,52.821002899428265],[-120.32541356649351,52.82103808423619],[-120.32549735621335,52.821080933299164],[-120.32558010557604,52.82113159256737],[-120.32566270513006,52.821183377740766],[-120.32574590132539,52.821230685801936],[-120.3258445876033,52.82127368944172],[-120.3259277829858,52.821321006307514],[-120.32601112854934,52.82136719714737],[-120.32610899639442,52.82141634869012],[-120.32617692621449,52.82146628975834],[-120.32626012234078,52.821513606382624],[-120.32635992636851,52.82154822739245],[-120.32647365756316,52.82159027715321],[-120.32658872929966,52.821622264598076],[-120.32668801248984,52.821660799399],[-120.3267722510736,52.821700296445215],[-120.32687198096565,52.82173547999865],[-120.3269710420964,52.82177568563429],[-120.3270703259886,52.821814220108074],[-120.3271687911886,52.8218589026322],[-120.32725377567571,52.8218928052399],[-120.3273529113226,52.821932456502246],[-120.32745264223574,52.82196763955717],[-120.32755289340619,52.82199891738695],[-120.32766685071975,52.822039285965595],[-120.32775124090942,52.82207765633278],[-120.3278344399726,52.82212497182306],[-120.32790192666089,52.82217826296348],[-120.32798341597092,52.822238419734155],[-120.32805075307857,52.82229283675251],[-120.3281176452847,52.822350595887926],[-120.32818431394756,52.82241003499804],[-120.32825180033338,52.822463334863805],[-120.32831802310977,52.822526124987654],[-120.3283853622879,52.82258053286777],[-120.32846759677871,52.822635104129965],[-120.32853493512947,52.82268952085683],[-120.32861754247324,52.82274129496328],[-120.3287020086809,52.82277911058213],[-120.32880285762522,52.82280591920176],[-120.32892023918397,52.82282059481214],[-120.32903702589525,52.82283973843337],[-120.3291532177949,52.822863350066896],[-120.32926955854924,52.822885844552836],[-120.32937092922965,52.82290873860142],[-120.32948719645704,52.822931786919156],[-120.3295879724911,52.82295914890989],[-120.32970475988097,52.82297829186523],[-120.32980568487682,52.82300453663544],[-120.32992143152157,52.82303149860503],[-120.33002168699988,52.82306277430557],[-120.33010489168983,52.823110079220676],[-120.33018698069627,52.82316576629327],[-120.33023912932042,52.82322225288621],[-120.33027415100206,52.82329534069861],[-120.33030991749624,52.82336283439449],[-120.33033093618846,52.8234290567952],[-120.33035188000115,52.82349584217412],[-120.33037185792645,52.82356988379446],[-120.33037768391952,52.82363817706338],[-120.33036801841837,52.82371078421845],[-120.33035924508886,52.82377668917101],[-120.33033557497302,52.82384243987269],[-120.33028211359967,52.823907864188065],[-120.33022842841032,52.82397496849363],[-120.33017563529091,52.82403537057584],[-120.33010802012436,52.82409505537142],[-120.33004159445157,52.82414580386668],[-120.329959305702,52.82420365426927],[-120.32989243353956,52.82425775377318],[-120.3298112591542,52.824307230795284],[-120.32972956465822,52.82436061290308],[-120.32964794491356,52.82441343196824],[-120.32956743980088,52.82445787770616],[-120.32948626465817,52.82450735449731],[-120.32940464433182,52.824560173388406],[-120.32932369249684,52.8246079700488],[-120.32922784344152,52.82465561226421],[-120.32916149081237,52.82470579725964],[-120.3290790510525,52.82476476405539],[-120.32901277185356,52.82481439491607],[-120.32893048042041,52.82487224457278],[-120.32886353093939,52.824926906450926],[-120.32878242905669,52.824975819757235],[-120.3287006582149,52.82502975517331],[-120.3286337831627,52.825083853931666],[-120.32855268071846,52.82513276707445],[-120.3284715031158,52.82518224314255],[-120.32838988024295,52.825235061305385],[-120.32832359951222,52.825284691762036],[-120.32824130623817,52.82534254091833],[-120.32815953281985,52.82539648488102],[-120.32809325157059,52.82544611520257],[-120.3279972516811,52.82549486448047],[-120.32793052377896,52.82554784579345],[-120.32784934466558,52.82559732141833],[-120.32776764524633,52.82565070211688],[-120.3276858718291,52.825704636802826],[-120.32761884565376,52.82575985198803],[-120.32756664175707,52.825815784715516],[-120.32751302369448,52.8258823336514],[-120.32747497307089,52.82594400607858],[-120.32742128090672,52.826011109013024],[-120.32738248491228,52.826078375479774],[-120.32734368998581,52.82614563299461],[-120.3272906663193,52.82620771370495],[-120.32725187113061,52.82627497118395],[-120.32719817819927,52.82634207400204],[-120.32714530287102,52.826403037611676],[-120.32709309756703,52.82645897010554],[-120.3270260694401,52.82651418492569],[-120.32694369823184,52.8265725871723],[-120.32687726494042,52.82662333379671],[-120.32679511592887,52.82668006486327],[-120.3267280870692,52.82673527950545],[-120.32666113184489,52.82678994006246],[-120.32659350739937,52.826849622728716],[-120.32652647801258,52.82690483724985],[-120.32645885319673,52.82696451983414],[-120.32640597723174,52.827025474150396],[-120.32633894732615,52.827080688558276],[-120.32627191724713,52.8271359029259],[-120.32619013790335,52.827189845454996],[-120.32609442956652,52.82723635907223],[-120.3259997616198,52.82727506237105],[-120.3259059876697,52.82730705450689],[-120.32579657145293,52.82734447686819],[-120.32570264717212,52.8273775948012],[-120.32559345444878,52.82741333696654],[-120.3254988606709,52.82745147687685],[-120.32540367135046,52.827494084806446],[-120.32532330485228,52.827537410522574],[-120.32522811516489,52.82758001830749],[-120.32516346446711,52.82761735964383],[-120.32514692905316,52.82762949199958],[-120.3250652973854,52.827682307768434],[-120.32499826471364,52.82773752138774],[-120.32494538451401,52.827798483952286],[-120.32490658418317,52.82786574058773],[-120.32488290339886,52.82793149001775],[-120.32493385996665,52.827996914979025],[-120.3249853382832,52.8280584258662],[-120.32505171379046,52.82812010058369],[-120.3251032662569,52.82818105737084],[-120.32515526542808,52.828238663063125],[-120.32522089720631,52.828305922794016],[-120.32527304553827,52.828362411406275],[-120.32533979345945,52.82842129785885],[-120.32542211032903,52.82847530806989],[-120.32548878480547,52.82853474847719],[-120.32559076224432,52.82855317761252],[-120.32570830734534,52.82856673935638],[-120.32582570368496,52.82858141800629],[-120.3259436954377,52.8285916284425],[-120.32604805449554,52.828592184795895],[-120.32616619515855,52.82860127798442],[-120.32628478234456,52.82860701998081],[-120.32640322074135,52.82861387888183],[-120.3265029664854,52.82864906259273],[-120.32658677224222,52.828691910669086],[-120.32668540280918,52.82873546744059],[-120.32676920891885,52.82877831538437],[-120.32686724463285,52.828826340100434],[-120.32695053087185,52.82887309303168],[-120.32703433751797,52.82891594078244],[-120.32713237384647,52.82896396527286],[-120.32721618085363,52.82900681289141],[-120.32731473779619,52.829050932106306],[-120.32739914153453,52.82908930255415],[-120.3274807921272,52.82914834238166],[-120.32754813949691,52.82920275944714],[-120.3276002182044,52.82925980103819],[-120.32766600419698,52.829325942332886],[-120.32770221679971,52.8293900944214],[-120.3277379093445,52.82945815161791],[-120.32778887211212,52.8295235752763],[-120.32783983503599,52.82958899890979],[-120.32789198840243,52.82964548631256],[-120.32794295162995,52.82971090989622],[-120.32799391501375,52.82977633345499],[-120.3280459200307,52.82983393780834],[-120.32811230272266,52.82989561072574],[-120.32817980204645,52.829948901440964],[-120.32826242182134,52.83000068449263],[-120.32834519176227,52.830051341522186],[-120.32842840702943,52.83009865634975],[-120.32851117735741,52.83014931325914],[-120.3285948393075,52.83019327688739],[-120.32869347539399,52.8302368319305],[-120.3287773614457,52.830279115418634],[-120.3288758479644,52.83032379626876],[-120.32895966058265,52.83036663366947],[-120.32905837122608,52.830409634356066],[-120.32914158798266,52.830456948667326],[-120.32922540112918,52.83049978587479],[-120.32932403737767,52.830543349315874],[-120.32940725587953,52.83059065449865],[-120.3294905483446,52.830637405575644],[-120.32957384099213,52.83068415659215],[-120.32967195801716,52.83073162486258],[-120.3297556223047,52.830775587647466],[-120.32985426092185,52.8308191416993],[-120.32993874421408,52.83085695623272],[-120.33003782821824,52.83089716798202],[-120.3301381772215,52.83092788044348],[-120.33025327688372,52.830959864105346],[-120.33035407236748,52.83098722529776],[-120.33045501670398,52.83101346937519],[-120.33057123164342,52.83103707948177],[-120.33068759542898,52.83105957244486],[-120.33079017600583,52.83107352892221],[-120.33090817583671,52.83108373435402],[-120.33102558088888,52.83109840778186],[-120.3311429860218,52.83111308109212],[-120.33124437725081,52.831135973402525],[-120.33136126151682,52.83115456056363],[-120.33146265296149,52.83117745268494],[-120.331578868905,52.83120106179197],[-120.3316956797439,52.83122020266595],[-120.33179722021303,52.83124197746808],[-120.33191403126189,52.831261118124345],[-120.33201549819272,52.83128344678395],[-120.33213230945299,52.831302587222545],[-120.33224912081803,52.831321727544804],[-120.33234947241114,52.831352438108354],[-120.33245041883863,52.83137868046442],[-120.33256485184184,52.83141569295565],[-120.33266453428644,52.8314514343529],[-120.33274954224298,52.83148533277409],[-120.33283231920068,52.831535995529066],[-120.33289908370602,52.83159486862873],[-120.33298074670192,52.83165390453729],[-120.33304810503928,52.8317083183611],[-120.33311605936325,52.83175825508478],[-120.3332312372291,52.83178968176365],[-120.33333203658228,52.83181704038558],[-120.33343231520068,52.831848312997685],[-120.33353207429997,52.831883490665035],[-120.33363131390622,52.83192257338847],[-120.3337145386833,52.83196988441336],[-120.33381370374353,52.83200952996432],[-120.33391338981038,52.83204526135174],[-120.33401374430268,52.83207597047894],[-120.3341283291628,52.832111864398506],[-120.3341815343461,52.83216052969381],[-120.3341866981795,52.832233853509294],[-120.33416206376376,52.832306860864826],[-120.33412319894984,52.83237468333499],[-120.33407032604019,52.83243564982725],[-120.3340167109917,52.83250219251429],[-120.33397903486181,52.83256107867709],[-120.33393957497404,52.83263336920072],[-120.33393065668778,52.832700391074596],[-120.33395064513195,52.83277443164933],[-120.33395677419644,52.83284049921198],[-120.3339772835786,52.83291062569855],[-120.33399779183908,52.83298076111467],[-120.33400355000666,52.83304961677568],[-120.33400878855524,52.83312237757381],[-120.33401454675966,52.83319123322804],[-120.33402030498266,52.83326008887892],[-120.33402539375851,52.83333397563363],[-120.33403182148443,52.83339780017089],[-120.3340369852103,52.83347112393512],[-120.33404274350727,52.83353997957258],[-120.33404842690908,52.83360939819028],[-120.33405366560291,52.833682158960336],[-120.3340441527206,52.8337536489203],[-120.3340198881888,52.833823868066844],[-120.33396708825124,52.83388427147271],[-120.33390005735558,52.83393948995403],[-120.33383243170476,52.833999176515746],[-120.33376540045435,52.8340543949162],[-120.33368436176218,52.834102748339255],[-120.33360339661773,52.83415054765818],[-120.33350753090592,52.83419819307595],[-120.33341166616928,52.83424582947775],[-120.33333114642662,52.834290277516416],[-120.33326418780634,52.83434494157399],[-120.33319715527742,52.834400159637795],[-120.33312893325149,52.83446431389297],[-120.33307613126021,52.83452471687369],[-120.33300902446568,52.83458048887011],[-120.33295622216092,52.83464089179243],[-120.33290267634554,52.83470687983092],[-120.33284972505997,52.834768399728944],[-120.33281145061846,52.834831753545075],[-120.3327865887412,52.834906440501165],[-120.33275414543519,52.835038086943854],[-120.33270111859031,52.83510016974392],[-120.33266247252497,52.835166311599735],[-120.33260937164123,52.83522894839904],[-120.33257057544458,52.83529621618298],[-120.3325176978859,52.83535717292629],[-120.33247882767996,52.83542499472007],[-120.33244003109928,52.835492262452526],[-120.33240168165075,52.835556170151406],[-120.33236281107915,52.83562399189825],[-120.33233928616899,52.83568862547815],[-120.33230049031816,52.835755884217],[-120.33226154446254,52.835824268903174],[-120.33222274836582,52.83589152761055],[-120.33218439704343,52.8359554441584],[-120.33215953460343,52.836030121991975],[-120.33215076150799,52.836096026558735],[-120.33212656747187,52.836165682227666],[-120.3321177193538,52.8362321497675],[-120.33210812890484,52.836304193499245],[-120.33212856196968,52.83637488313476],[-120.33214906885644,52.83644501871852],[-120.33219997297894,52.836510994215196],[-120.33220632350968,52.83657538170413],[-120.33219636079467,52.83665022246097],[-120.33214400087536,52.836707273859844],[-120.33203463978083,52.8367441477636],[-120.33194010602202,52.83678172965377],[-120.3318454971482,52.83681987444799],[-120.3317509618653,52.83685746512039],[-120.33164160123587,52.83689432971844],[-120.33154706560839,52.836931920224934],[-120.33145253100408,52.83696950171825],[-120.33134368975846,52.83700246091691],[-120.33124915362896,52.83704005118105],[-120.33114053573111,52.837071330184834],[-120.33104652041715,52.837105006230296],[-120.33093790101556,52.837136293981644],[-120.33082920768204,52.837168135675775],[-120.33072177905444,52.837190478097234],[-120.33061368038535,52.837217851495254],[-120.330506771528,52.83723628860424],[-120.33039874638325,52.83726310775994],[-120.33029124232135,52.837286012766015],[-120.33018381311526,52.837308354693725],[-120.33007571380236,52.83733572759455],[-120.3299804320272,52.83737890194444],[-120.32988530000999,52.83742095025682],[-120.32980424933655,52.837469309834844],[-120.32970837311592,52.837516943114345],[-120.32962799211035,52.83756027149888],[-120.32954619702949,52.83761421600569],[-120.32947855946396,52.83767389992031],[-120.3294262696364,52.83773038709132],[-120.32937286325995,52.83779525636846],[-120.3293339108506,52.83786363999478],[-120.32929570339614,52.83792642956103],[-120.32927142867658,52.83799664753928],[-120.3292478239806,52.83806183444471],[-120.3292383770546,52.838132760836615],[-120.32921358198493,52.838206883900256],[-120.32918997708425,52.83827207078532],[-120.32918045502922,52.838343560141816],[-120.3291567750156,52.838409309993175],[-120.32911797167402,52.83847656756389],[-120.32907976216262,52.8385393659716],[-120.32901197369033,52.83860016660312],[-120.32895916075236,52.838660567573335],[-120.32890508353749,52.83873045872402],[-120.32885197270187,52.83879309368207],[-120.32881376251548,52.83885589199041],[-120.32877570220194,52.838917564327545],[-120.32872199575715,52.83898466730007],[-120.3286979432827,52.839053205114254],[-120.32865958383798,52.83911712038203],[-120.32862063026896,52.8391854947781],[-120.32858167538468,52.83925387809434],[-120.3285430191709,52.83932001841929],[-120.32848990706985,52.839382653190015],[-120.32845124940665,52.839448802415426],[-120.32841303923368,52.83951159163109],[-120.32841864046303,52.83958156429801],[-120.32846902114458,52.83965145531517],[-120.32852118764428,52.83970794207549],[-120.32860278511467,52.839767543700155],[-120.32867074707181,52.83981748273901],[-120.32875353535171,52.83986814809935],[-120.3288209024565,52.83992255512616],[-120.32887247456905,52.83998350979884],[-120.32889290403493,52.84005419983123],[-120.32886914882553,52.840120503594655],[-120.32883049108179,52.84018665291375],[-120.32879168560937,52.840253910300575],[-120.32875273002375,52.84032229362697],[-120.32871392430536,52.84038955098219],[-120.32867556368306,52.84045346620092],[-120.32863675772374,52.840520723525096],[-120.3286124804436,52.84059094125098],[-120.32858835307995,52.84066003301379],[-120.3285647458667,52.84072521967137],[-120.32853994812004,52.840799342470305],[-120.32850166186834,52.840862694638076],[-120.32846344931276,52.840925492749776],[-120.32840981485033,52.84099203251645],[-120.32837160204373,52.84105483059298],[-120.32834687877211,52.84112839035848],[-120.32832327093075,52.841193576947965],[-120.3282997368298,52.84125820948919],[-120.32828961735217,52.841334166708954],[-120.32829529362176,52.84140357632347],[-120.3283010437227,52.841472431893884],[-120.32832214203141,52.841538099846595],[-120.32832722311672,52.84161197752158],[-120.32834824772213,52.84167819950457],[-120.32836815568139,52.84175280358195],[-120.32835915292364,52.84182037868331],[-120.32834970249743,52.84189131377004],[-120.32832594542091,52.841957617345926],[-120.32831664491746,52.84202742647012],[-120.32829169716408,52.842102666172565],[-120.32828291684493,52.84216857019514],[-120.32824395869554,52.842236953269435],[-120.32822042508941,52.84230157681561],[-120.32816678732738,52.84236812534907],[-120.3281139685283,52.84242852579429],[-120.32804632132641,52.84248820870101],[-120.32797926924914,52.84254342349986],[-120.32791162167665,52.84260310632471],[-120.32785813307649,52.84266852875195],[-120.32780531346852,52.84272892904677],[-120.32775219604048,52.8427915633479],[-120.3276993011164,52.84285252656646],[-120.3276462583934,52.842914597838714],[-120.32759343818078,52.84297499802885],[-120.32752638475229,52.843030212552115],[-120.32745880960093,52.843089341057826],[-120.32737752273378,52.84313936984186],[-120.32730927798131,52.84320352035872],[-120.32725705233342,52.84325945232534],[-120.3271893287846,52.843319688746476],[-120.32713635857009,52.84338120573058],[-120.3270976213529,52.8434479083814],[-120.32704457582335,52.84350998829456],[-120.32700576451238,52.84357724494899],[-120.32695279371336,52.84363876184025],[-120.32691398094966,52.84370602739493],[-120.32686108488484,52.84376698126449],[-120.32680736932346,52.84383408315433],[-120.32676915161228,52.84389688059594],[-120.32670150020063,52.843956562672375],[-120.32663384859967,52.84401624470768],[-120.32656679229257,52.84407145864665],[-120.32649914032095,52.84413114060003],[-120.32643290306513,52.844180206415544],[-120.32633693296387,52.844228399714076],[-120.32625586533463,52.844276756633626],[-120.32617479871266,52.844325104559765],[-120.32607897687848,52.844372180630046],[-120.32599775979669,52.844421654379985],[-120.32591669260682,52.844470002123465],[-120.32583629464922,52.8445133277212],[-120.3257410675951,52.84455593546018],[-120.32563227643442,52.84458833516878],[-120.32553771965323,52.844625911718055],[-120.32542833254914,52.84466277928451],[-120.3253344449012,52.844695333582905],[-120.32522624990013,52.84472325592946],[-120.32513117067887,52.8447647461569],[-120.3250365380129,52.84480288527227],[-120.32494130951366,52.84484549235515],[-120.32484608082417,52.84488809935969],[-120.32476560593514,52.84493198718664],[-120.32467045193457,52.844974031072994],[-120.32457581839243,52.84501216981211],[-120.32448058896586,52.8450547765159],[-120.32438468856162,52.84510241415559],[-120.32430436291887,52.84514517571424],[-120.32419489954475,52.84518259615707],[-120.32410153050337,52.84521124439251],[-120.32399229079103,52.84524698466214],[-120.32389825181662,52.84528065481036],[-120.32380302111395,52.84532326095756],[-120.32369355684311,52.84536068092894],[-120.3235997402161,52.84539267978991],[-120.32349161619311,52.84542004649001],[-120.32338416294233,52.845442382082716],[-120.32327544280776,52.845474216617916],[-120.32318073183077,52.84551291719343],[-120.3231859534501,52.845585677895365],[-120.32320637617573,52.84565636866453],[-120.32327329726638,52.84571413863358],[-120.32335653865316,52.84576144764612],[-120.32345751364463,52.845787697490934],[-120.32357495660129,52.84580237822958],[-120.32369299544727,52.84581259081525],[-120.32381043855351,52.84582727131828],[-120.32391364817701,52.8458367656346],[-120.3239877949205,52.84584035577857],[-120.32403228297257,52.845842509842505],[-120.32415091780004,52.84584825393054],[-120.32427014840798,52.84584952986036],[-120.32437514540042,52.84584561965587],[-120.32449504560245,52.84584187328166],[-120.32461546762724,52.84583421278181],[-120.32473529390937,52.84583102019937],[-120.32484088650199,52.84582264153774],[-120.32496011705896,52.84582391676736],[-120.32507756063245,52.84583859600351],[-120.32519500428673,52.8458532751222],[-120.32529702299912,52.84587170430909],[-120.32541402009824,52.84588973424113],[-120.32551551842158,52.84591206830836],[-120.32563058000068,52.84594461916876],[-120.32573140792574,52.845971984067276],[-120.32584736320933,52.84599783264599],[-120.32594819139919,52.84602519735755],[-120.32604849800349,52.846056475991084],[-120.32617652934718,52.84610370225491],[-120.3262756452187,52.84614391678743],[-120.32637483631424,52.846183568261274],[-120.3264592731056,52.84622193896518],[-120.32655786903862,52.84626605833082],[-120.32665653901823,52.84630962357434],[-120.3267245091196,52.84635956353137],[-120.3267915111098,52.846416768496105],[-120.32682706757566,52.846485942242694],[-120.32689347441854,52.846547615194034],[-120.32694445630746,52.84661303850578],[-120.3269964804331,52.846670642705305],[-120.32700215411775,52.8467400610828],[-120.32699270153606,52.84681098690217],[-120.32696923735047,52.84687505597153],[-120.32694435822546,52.846949741117704],[-120.3269207450192,52.847014927184006],[-120.32689661128201,52.847084018316906],[-120.32684296544127,52.84715056604353],[-120.32678998997021,52.84721208272158],[-120.32672292884143,52.84726729663751],[-120.32665527201983,52.847326978559465],[-120.32657420005384,52.84737532666742],[-120.32649305286634,52.84742423769162],[-120.32639714938261,52.847471876902375],[-120.32630273577298,52.847508336987424],[-120.32620742745702,52.84755150799689],[-120.32611346019374,52.84758461689552],[-120.32601822656012,52.84762722477601],[-120.32590942777702,52.847659624678066],[-120.32581501333499,52.8476960843667],[-120.32572029972887,52.84773478693497],[-120.32561217112975,52.84776215554616],[-120.32550538259575,52.847779470969044],[-120.3253830944007,52.847801090523944],[-120.32527690134675,52.84781393770029],[-120.32515572924783,52.84782718391513],[-120.32505251453199,52.84781769070205],[-120.32493506551822,52.84780301145924],[-120.3248164251487,52.84779726817018],[-120.32469838054183,52.84778705672622],[-120.32457854876228,52.84779024926705],[-120.32447295124751,52.84779862768244],[-120.3243535662438,52.847798468968335],[-120.32423254284708,52.847810597222825],[-120.32412694521399,52.84781897532703],[-120.32400465501547,52.84784060238261],[-120.3239119509151,52.84786421941579],[-120.32380270424989,52.84789995944891],[-120.3236932333665,52.84793737935874],[-120.32359807041315,52.84797943123224],[-120.32351758959979,52.84802330918189],[-120.3234498520154,52.84808355220086],[-120.32339701946036,52.84814395030542],[-120.32330170797529,52.84818711000418],[-120.32320699099863,52.84822581053415],[-120.32311197709015,52.848266736063664],[-120.32301733484971,52.84830487346754],[-120.3229085320589,52.848337270576444],[-120.32281470948827,52.848369259813985],[-120.3227058324818,52.84840221076886],[-120.32259702920615,52.84843460758727],[-120.32248897192167,52.84846141034084],[-120.32239507366961,52.84849396221152],[-120.3222869410127,52.848521327748905],[-120.32217932912552,52.84854478813664],[-120.3220707491887,52.8485755044893],[-120.32196328724513,52.848597838737504],[-120.32185500503782,52.8486263208803],[-120.32174702071185,52.84865256891392],[-120.32163940819665,52.84867602880526],[-120.32153075362362,52.84870729869034],[-120.32142261987137,52.84873466342852],[-120.32132872020406,52.84876721444125],[-120.32121991495153,52.848799609976794],[-120.32112609009758,52.84883159785642],[-120.32101721060664,52.8488645472367],[-120.3209232352302,52.848897660892305],[-120.3208139834141,52.848933398122774],[-120.3207199338039,52.84896706564785],[-120.32061112757921,52.84899946061554],[-120.32051730182917,52.849031448004894],[-120.3204078251599,52.849068864826464],[-120.3202990184385,52.84910125950303],[-120.3202051922305,52.84913324664109],[-120.32009631125821,52.84916619516162],[-120.32000173825998,52.84920377608149],[-120.31989367739627,52.849230576434934],[-120.31979962640443,52.84926424321685],[-120.31969037151552,52.84929998833018],[-120.3195821611404,52.84932790539689],[-120.3194882587627,52.84936045492628],[-120.31937952573425,52.84939228577674],[-120.31927071740692,52.84942467949437],[-120.31917748604864,52.849452197802215],[-120.3190686034684,52.849485145363744],[-120.31895919831207,52.84952200679247],[-120.3188659665401,52.8495495248515],[-120.31875723256528,52.84958135512221],[-120.31864842328307,52.84961374825965],[-120.31855451956356,52.84964629703689],[-120.31844571115458,52.849678681049234],[-120.31833697653691,52.84971051092843],[-120.31824299721602,52.8497436224223],[-120.31813493387968,52.84977042114903],[-120.3180408803094,52.84980408651154],[-120.31793221903199,52.84983536198212],[-120.31782340966825,52.84986774541428],[-120.31772950476004,52.84990029352689],[-120.31762069388375,52.84993268570592],[-120.31751195800294,52.84996451481646],[-120.31741797867504,52.84999761670915],[-120.31732340147367,52.85003519545318],[-120.31721399459146,52.850072046308],[-120.31713357723572,52.85011536579514],[-120.31703832898242,52.850157966327735],[-120.3169424839621,52.850205034770696],[-120.31684723531771,52.850247635145976],[-120.31675191131174,52.85029079840918],[-120.31667156824676,52.85033355460774],[-120.31657624387101,52.85037671772611],[-120.31648106965262,52.85041875483355],[-120.3164005757226,52.850462636775696],[-120.31630525197743,52.8505057907347],[-120.31620992684604,52.85054895355116],[-120.31611490104956,52.85058987336136],[-120.31602024739871,52.850628005072295],[-120.31592559357864,52.850666136706046],[-120.31581610868601,52.85070354921008],[-120.3157209317958,52.85074559462898],[-120.31564043766039,52.850789467105365],[-120.31555942062344,52.85083725347586],[-120.31547758229097,52.850891187728855],[-120.31541109748267,52.85094192707865],[-120.3153440157609,52.850997134367866],[-120.31527574033888,52.85106127757276],[-120.31522281852163,52.85112222591621],[-120.31516997055338,52.85118262020422],[-120.31510214216087,52.851243412318],[-120.31504914467398,52.85130492354123],[-120.31499562424004,52.85137034868479],[-120.31492779530049,52.851431140690686],[-120.31487494653176,52.851491534834274],[-120.31482202360796,52.85155248298051],[-120.31476902533309,52.85161399406529],[-120.31471602690533,52.8516755051238],[-120.314647749453,52.851739647936185],[-120.31458066548859,52.85179485476154],[-120.3145135813505,52.85185006154669],[-120.31444590017661,52.85190973626302],[-120.31437881568338,52.85196494296729],[-120.31431128335814,52.852023500608944],[-120.31424494461879,52.85207312227005],[-120.31417726271509,52.8521327968232],[-120.31411017752333,52.85218800336619],[-120.31404249524877,52.8522476778373],[-120.31397481278483,52.852307352267204],[-120.3139225585045,52.85236327798119],[-120.31386881176259,52.85243037358725],[-120.31382989634496,52.85249818847015],[-120.31379098080357,52.85256600333729],[-120.31375273610458,52.85262879619502],[-120.31367096726622,52.85268216616466],[-120.31360395577228,52.85273680943585],[-120.31355087905108,52.852798882888415],[-120.31351263498374,52.8528616667229],[-120.31347304640859,52.85293451239622],[-120.31344888753843,52.853003600505865],[-120.3134106419434,52.85306639323494],[-120.31337165119,52.853134761966075],[-120.31331872288506,52.853195718307624],[-120.31326572040022,52.8532572286502],[-120.31319803524744,52.85331690259447],[-120.31313169320119,52.85336652358627],[-120.31304984813971,52.85342044712579],[-120.31296822616383,52.853472699589595],[-120.312886976546,52.85352216398866],[-120.31280520491156,52.85357553332562],[-120.31272335903623,52.85362945663055],[-120.31265701595154,52.85367907734454],[-120.31258873219527,52.853743218878925],[-120.3125216424143,52.8537984244586],[-120.31246863803098,52.85385993441815],[-120.31241555825977,52.85392200731377],[-120.31236270284721,52.853982400231935],[-120.31230917612667,52.85404781510478],[-120.31227085387435,52.85411116144755],[-120.31221777350261,52.854173234243966],[-120.31216424632031,52.85423864904285],[-120.31212592368122,52.85430199533072],[-120.31208707783044,52.854369255529804],[-120.31204823305143,52.85443650677733],[-120.31200923766716,52.854504883932925],[-120.31195630690902,52.85456583067199],[-120.31191798366712,52.85462917687891],[-120.31186430496551,52.85469571744587],[-120.31181137376345,52.85475666411222],[-120.31177245295179,52.8548244782137],[-120.31173360606768,52.854891738273714],[-120.31170996521651,52.85495692095279],[-120.31168580234471,52.85502600861148],[-120.31164680584038,52.855094385621264],[-120.3116226427884,52.855163473260866],[-120.31159915091875,52.855227538919564],[-120.31156000478825,52.85529703287867],[-120.31152115833308,52.855364283912444],[-120.31148231056099,52.85543154386635],[-120.31144406108773,52.85549432692277],[-120.31140506376761,52.85556270383203],[-120.31136606751691,52.855631071789546],[-120.31134190251161,52.85570016828387],[-120.31131766336975,52.85576981879537],[-120.31129394733748,52.85583555537968],[-120.31128454067586,52.855905925499286],[-120.31126089857615,52.855971108046134],[-120.31126617519939,52.856043314769074],[-120.31125646981852,52.856115918848836],[-120.31126219439388,52.85618477460808],[-120.31126724647744,52.85625866126771],[-120.31127364360006,52.856322486116746],[-120.31129345446661,52.85639764641699],[-120.3112992531992,52.85646594813732],[-120.31131973668613,52.856536077523316],[-120.31132531210632,52.85660605024669],[-120.31134579450887,52.85667618855788],[-120.31135159455768,52.85674448132768],[-120.31135672211651,52.856817804996695],[-120.3113630442028,52.85688219277891],[-120.31136809654372,52.856956079401634],[-120.3113733734703,52.85702828607478],[-120.31136434055995,52.85709585921649],[-120.31136991612652,52.85716583191309],[-120.31137579034058,52.85723357063589],[-120.3113808427452,52.85730745724165],[-120.31138604567668,52.85738021792279],[-120.31139236789065,52.85744460568047],[-120.31141210423307,52.85752032886781],[-120.31144846683398,52.85758335889493],[-120.31149943822061,52.85764878844979],[-120.31155160425705,52.8577052820994],[-120.31160257594763,52.857770711604445],[-120.31166890309255,52.85783295567946],[-120.31170511703128,52.857897102599765],[-120.31175608918666,52.857962532030385],[-120.31180765872271,52.85802349349545],[-120.311889865093,52.8580786380949],[-120.31197371519325,52.858121486860554],[-120.31205704231478,52.85816824948217],[-120.31213917523473,52.858223947926824],[-120.31222197960449,52.85827462434521],[-120.3122898025767,52.85832568925926],[-120.31237260732301,52.85837636556832],[-120.31245586133186,52.858423681924386],[-120.3125392636196,52.858469890170205],[-120.31263735156273,52.85851792585746],[-120.31272068018657,52.85856468799667],[-120.31280393375502,52.85861201303636],[-120.31288718870248,52.858659329079856],[-120.31297044264045,52.858706653998745],[-120.31305325012947,52.858757320880066],[-120.31313650444305,52.85880464567851],[-120.31320291066827,52.858866325885735],[-120.31328616655487,52.85891364163898],[-120.3133695707005,52.858959849281185],[-120.31343739613669,52.859010913510794],[-120.31351915872321,52.85906940789542],[-120.31355477943836,52.85913802214176],[-120.3135604329011,52.85920744061869],[-120.31350749852311,52.85926838787513],[-120.31339933284376,52.8592957450455],[-120.31329489881671,52.859295177462364],[-120.31317682514322,52.859284954516546],[-120.31306039358012,52.85926244460741],[-120.31295954236423,52.85923506906482],[-120.31285921316999,52.859203788453435],[-120.31276112459368,52.859155744036315],[-120.31267779477056,52.85910898194318],[-120.31259506228646,52.859057751847935],[-120.31251233000113,52.85900652169271],[-120.3124290007424,52.85895975941879],[-120.31234462660078,52.8589208159809],[-120.31224601611648,52.8588766850415],[-120.31214733058908,52.858833116978595],[-120.31206392801565,52.858786908465284],[-120.31198067373253,52.858739591842394],[-120.31188213929438,52.85869489763223],[-120.31179821410169,52.85865260284111],[-120.3117143631335,52.85860975396443],[-120.3116162772133,52.85856170857373],[-120.31153287455157,52.85851550861138],[-120.31144917463108,52.85847153362157],[-120.3113510140706,52.85842405096538],[-120.31126768722343,52.85837728785077],[-120.31118436055905,52.85833052467562],[-120.31110170544461,52.8582787394796],[-120.31101890239809,52.858228062271984],[-120.31091917431614,52.858192312048175],[-120.31083532633086,52.85814945359589],[-120.31075200058572,52.85810269010754],[-120.31065331837574,52.858059120768836],[-120.31055478690094,52.85801442542641],[-120.31047026700018,52.857976597603106],[-120.31037098799636,52.857937495957785],[-120.31027126233182,52.85790173624166],[-120.31016981873056,52.857878826214765],[-120.31005234713365,52.85786413218772],[-120.30993487561769,52.8578494380431],[-120.30981740418268,52.85783474378087],[-120.30969993282862,52.85782004940122],[-120.30959669737064,52.857810542669945],[-120.30947982362417,52.85779138013989],[-120.30936220313666,52.85777780240449],[-120.30926016283124,52.8577593595194],[-120.30914314000142,52.85774131363608],[-120.30902566913706,52.857726618581445],[-120.30890819835365,52.85771192340915],[-120.30880556086812,52.85769794805552],[-120.30868749269321,52.85768772058871],[-120.30857002213347,52.85767302507816],[-120.30845135651329,52.85766726529911],[-120.30833209334189,52.85766597332427],[-120.30822885856182,52.85765646539049],[-120.3081095954274,52.85765517318981],[-120.30799033230016,52.85765388086814],[-120.30787166681156,52.85764812050372],[-120.30776716159022,52.85764811096573],[-120.30764789849314,52.857646818296544],[-120.30752923307041,52.857641057586235],[-120.30740937232065,52.857644232594865],[-120.30730554010852,52.85763919176928],[-120.30718747245605,52.85762896279499],[-120.3070688071452,52.85762320161968],[-120.30694939470706,52.85762302522099],[-120.30683072944491,52.857617263805324],[-120.30672570186513,52.85762115830015],[-120.30660584111149,52.85762433248921],[-120.3064871758921,52.857618570726665],[-120.30636731512799,52.85762174467249],[-120.30624924774888,52.85761151475539],[-120.30614481794188,52.85761094081757],[-120.30602555499797,52.85760964650172],[-120.30590688989787,52.85760388415315],[-120.30578762698089,52.85760258959584],[-120.30566836407117,52.85760129491755],[-120.30556453216938,52.85759625255336],[-120.30544526928416,52.857594957648665],[-120.30531132275895,52.857591825270326],[-120.30508329521354,52.857622347561716],[-120.30485661272301,52.85764281662071],[-120.30462865992394,52.85767277507272],[-120.30440122945276,52.85769882813397],[-120.30417320068388,52.857729348657266],[-120.30394584379025,52.857754846816285],[-120.30371781439595,52.85778536645481],[-120.30348926194216,52.857819790593915],[-120.30327546693499,52.85785549787705],[-120.30304624024241,52.85789495200573],[-120.30281693775692,52.85793496864105],[-120.30260261879323,52.85797457963768],[-120.30237383949742,52.85801068153136],[-120.30216019215815,52.85804526980784],[-120.30193148629279,52.8580808168202],[-120.30170352909784,52.85811076958965],[-120.30147504746454,52.85814463578597],[-120.30124686463478,52.85817626759413],[-120.30101830689493,52.8582106958546],[-120.30080331109882,52.85825533440142],[-120.30058689424239,52.858310579307286],[-120.30038418748568,52.858374926556984],[-120.30018207856523,52.85843480557424],[-120.29996633267504,52.85848502743356],[-120.29973650104155,52.85852894296935],[-120.29952082836677,52.85857860999098],[-120.29930575492918,52.85862379980419],[-120.2990757722258,52.858668831012615],[-120.29886009807404,52.858718496817254],[-120.2986445742706,52.85876703632087],[-120.29842822625199,52.858821723217325],[-120.2982131492332,52.858866919959645],[-120.29798398785546,52.85890580123679],[-120.29776943441001,52.8589470833125],[-120.29754012131635,52.85898708962452],[-120.29732459465309,52.85903562669904],[-120.2971088423583,52.859085843293194],[-120.29689316380689,52.85913550547478],[-120.29667673741864,52.859190743148815],[-120.2964610578335,52.85924040453411],[-120.29624552866186,52.85928893962176],[-120.29603037271045,52.859334686370175],[-120.29581341954072,52.85939383628943],[-120.29561070043259,52.85945817526101],[-120.2954078309719,52.85952363084345],[-120.29520443617702,52.859592999911015],[-120.29500096644342,52.85966292263707],[-120.29479682273245,52.85973786687022],[-120.2946083351132,52.85980739364924],[-120.29440411453733,52.85988290014227],[-120.29421420218821,52.85996304188636],[-120.29402361571918,52.860048205176504],[-120.29383437654683,52.8601233155058],[-120.29364446325464,52.860203447381224],[-120.29330808638639,52.86037370353305],[-120.29318732157321,52.86049486671119],[-120.29306655607377,52.86061602975601],[-120.29294526495518,52.86074110649248],[-120.29282509732344,52.860857801433646],[-120.29269024476673,52.86097265731775],[-120.29254198126503,52.86107617547959],[-120.29235138648144,52.861161335997934],[-120.29216154009629,52.86124091141307],[-120.29197169300262,52.86132048651769],[-120.29178169535797,52.86140117826888],[-120.29157753646902,52.86147612576307],[-120.29138828665145,52.861551232085624],[-120.29119836240342,52.86163135993586],[-120.29100776245512,52.861716518245295],[-120.29083117120875,52.861808546168675],[-120.29065540410494,52.86189442609811],[-120.29046555129118,52.861973998736865],[-120.29027554788466,52.86205468801976],[-120.2900855437591,52.862135376991425],[-120.28989501488255,52.862219970523974],[-120.2896915239085,52.862289883941045],[-120.28947582051408,52.86233953240878],[-120.2892471566024,52.86237449169319],[-120.28901916754792,52.86240441977524],[-120.28879185223342,52.862429325594974],[-120.28857847160272,52.86246165517642],[-120.288336321189,52.862485837627],[-120.28810892947061,52.862511305068395],[-120.2878820629004,52.86253285827136],[-120.2876559458736,52.86254882627998],[-120.28743095398087,52.862556412253674],[-120.28719060198031,52.86256718893127],[-120.28695084975065,52.862573497316056],[-120.28672593199194,52.8625805279326],[-120.28650101415907,52.86258755811862],[-120.28626051175668,52.862599449843614],[-120.28603559374727,52.86260647913887],[-120.28579509110837,52.862618369911225],[-120.28556957288465,52.862629866109764],[-120.28534465460093,52.86263689408252],[-120.28510550179304,52.86263873090977],[-120.28488050777217,52.86264632093594],[-120.28464075475598,52.86265262460782],[-120.28441568615936,52.862660767749986],[-120.28417593299324,52.86266707047358],[-120.28394981386722,52.862683031350265],[-120.28372369457193,52.86269899179185],[-120.28348326639919,52.862710314891885],[-120.28325834734737,52.86271733887154],[-120.28301799338561,52.86272810701468],[-120.282792473833,52.862739597883426],[-120.28256740442441,52.86274773748558],[-120.2823262996425,52.862764088936764],[-120.28195093337547,52.86277951478567],[-120.28155607873732,52.86282884130553],[-120.2813286066812,52.86285484962635],[-120.28111409171034,52.86289554718601],[-120.28089702527112,52.862955223436806],[-120.28072123343487,52.86304108844596],[-120.280557647424,52.86314722763464],[-120.28042275458583,52.86326206927433],[-120.28031625477011,52.86338784734457],[-120.28023889770627,52.86351898614998],[-120.28016154016657,52.86365012489361],[-120.28006942178227,52.86377998601427],[-120.28003619312594,52.86391608320774],[-120.2800623785006,52.86405452063406],[-120.28005829342797,52.86419597868626],[-120.2800097776898,52.86433471203113],[-120.27997587207904,52.864475839858166],[-120.27992795761249,52.86461009644948],[-120.27982122711843,52.864737553841564],[-120.2797139697881,52.86486892488232],[-120.2795668626371,52.8649634909037],[-120.27933689939195,52.86500792929856],[-120.27911016529293,52.865028348595715],[-120.27886859570918,52.865048043745496],[-120.27864178667363,52.86506901613994],[-120.27841565273897,52.86508496634471],[-120.27818936842367,52.86510203305171],[-120.27794960061125,52.8651083230639],[-120.27772586978858,52.86510640094891],[-120.2774879046421,52.865099286778396],[-120.27726161987948,52.86511635169894],[-120.27703225437554,52.86515631783587],[-120.27681667319321,52.8652048171075],[-120.27660026452436,52.8652594635935],[-120.27638332879137,52.86531802341898],[-120.27618167979577,52.865373947153294],[-120.27596534398907,52.86542803846489],[-120.27575021104951,52.865473184969446],[-120.27550923852611,52.865488405473386],[-120.27527247393154,52.86547235134995],[-120.27510662349613,52.86537318965762],[-120.27510869555722,52.86524681495018],[-120.2752017339575,52.86511025623724],[-120.27526397364267,52.86498063058195],[-120.27539948694658,52.86486132725216],[-120.27551956326758,52.86474576736157],[-120.27565514964695,52.86462590972006],[-120.27576053985763,52.8645085085142],[-120.27583896438331,52.86436955419473],[-120.2758569967841,52.864235522006666],[-120.27567338516243,52.86415741270954],[-120.27545379152569,52.864124775029275],[-120.27523367282753,52.86409604174025],[-120.27499811839985,52.864071051575856],[-120.27477965355388,52.86403003116147],[-120.27456246730134,52.863979511937664],[-120.27434475488397,52.86393290604491],[-120.27412734356976,52.86388406588162],[-120.27389359479716,52.863845670303874],[-120.27367167468756,52.863830337277285],[-120.27343672396887,52.86380087624942],[-120.27321999028266,52.863747012676335],[-120.27301884475315,52.863688279558346],[-120.27280263898446,52.863630501482874],[-120.27260209478644,52.86356730885671],[-120.27238604055373,52.86350841307922],[-120.27216946124756,52.86345342169247],[-120.27195100228731,52.863412396004286],[-120.27173194224927,52.86337583763008],[-120.27149879994188,52.86333296955591],[-120.27128041683552,52.863291388620816],[-120.2710625611274,52.8632458935578],[-120.27084658644985,52.86318643200586],[-120.27066238571432,52.86311279148168],[-120.2704810445348,52.86301792008025],[-120.27031446273826,52.86292433611764],[-120.27014968664186,52.86281734876946],[-120.26999966986521,52.86271164894711],[-120.26986554224557,52.86259884634089],[-120.26973186540357,52.862482701723884],[-120.26962891183071,52.86236017927273],[-120.26954169434467,52.862231688977865],[-120.2694398695485,52.86210079384661],[-120.26936854142257,52.861965200869356],[-120.26926566475818,52.86184212406356],[-120.26910014328648,52.861740719812325],[-120.26891783294174,52.86165311041742],[-120.26871888409767,52.86157817887505],[-120.26851820515147,52.86151609612633],[-120.26831873165072,52.861445068678876],[-120.2681197089971,52.8613706990438],[-120.26793672575089,52.86128810981076],[-120.26777075817806,52.86119005443269],[-120.267620753023,52.86108435146522],[-120.26745644222905,52.86097400943664],[-120.26730591252924,52.86087221082833],[-120.26715591084832,52.86076649831093],[-120.26700688748599,52.86065353004273],[-120.26687277305261,52.86054073280986],[-120.26675394547053,52.86042530094528],[-120.26663624665883,52.86030149647535],[-120.26651854853054,52.860177691877944],[-120.26641553390195,52.86005572936434],[-120.26629776123838,52.85993248745719],[-120.2661641036759,52.85981632965128],[-120.26604603137913,52.859695321324665],[-120.26591177319125,52.859583630917164],[-120.26577766501927,52.859470832358255],[-120.26564401032041,52.859354673926866],[-120.26550990357669,52.859241875046166],[-120.26539221164286,52.85911806923781],[-120.26528980490653,52.858991637954645],[-120.26518739877739,52.85886520657225],[-120.2650855953846,52.858734307390286],[-120.26496662713848,52.8586199905119],[-120.26481724012815,52.85850981609421],[-120.26466777922084,52.85840019547366],[-120.2645023579168,52.858298221596364],[-120.26435124251519,52.85820088673013],[-120.26418649962999,52.85809389070252],[-120.26383804276611,52.85790989220235],[-120.2636716460665,52.857815181598525],[-120.26348974068412,52.85772476678844],[-120.26332274318223,52.8576345233746],[-120.26314151631321,52.85753908632649],[-120.26297497202428,52.85744549163743],[-120.2627930684911,52.85735508466316],[-120.26261063925988,52.85726858216459],[-120.26244417309275,52.8571744237781],[-120.26226189594242,52.857086803805444],[-120.26206335600652,52.8570090729414],[-120.26188055381343,52.856925357129015],[-120.26169699806144,52.85684723457345],[-120.26149981704857,52.856759441511215],[-120.26131754361208,52.85667182005073],[-120.26113504437987,52.85658587815263],[-120.26098447054467,52.856484625158366],[-120.26083502658656,52.856374999522835],[-120.26068558339674,52.85626537368959],[-120.26055262989867,52.85614418755453],[-120.26046507646377,52.85601847785517],[-120.26039303261415,52.85588847245129],[-120.26035238567457,52.855747070040444],[-120.26031113641945,52.855610135287385],[-120.26027049001664,52.85546873282328],[-120.26022924129369,52.855331798017446],[-120.26018859542768,52.855190395500045],[-120.26013191316854,52.855057202247394],[-120.2600760604411,52.85491786142116],[-120.2600195295466,52.85478355116988],[-120.25996307373156,52.85464868688697],[-120.25990699550864,52.85451102579425],[-120.25988110799946,52.85437090319797],[-120.25985499407777,52.8542324604336],[-120.25984438879588,52.85408972208951],[-120.25983303152559,52.85395255940478],[-120.25982182377588,52.85381428872051],[-120.25976589775966,52.85367551056581],[-120.25972510435396,52.85353522466168],[-120.25971389826903,52.85339694499524],[-120.25970314301323,52.853255323484966],[-120.25966204890686,52.853117271365875],[-120.25957548417897,52.852984296300875],[-120.25944133878804,52.85287204403378],[-120.25927602614979,52.85276950844964],[-120.25909377433301,52.852681883318446],[-120.25889367921417,52.85261587009246],[-120.25866158743936,52.85256572073979],[-120.25844214245187,52.852532488108096],[-120.25822330056623,52.85249478738324],[-120.25800679545021,52.85243976951554],[-120.25776950707898,52.852428147683014],[-120.25754192529287,52.85245522705429],[-120.25731404179034,52.85248453982335],[-120.25710015895243,52.85252072613795],[-120.25688401607884,52.85257365691073],[-120.25669459396192,52.852649824697785],[-120.25654491422762,52.852763359179704],[-120.25638191164595,52.85286498879336],[-120.25626166618234,52.852981646913484],[-120.25619848178613,52.85311796499025],[-120.256149826271,52.853257243440694],[-120.25608709335626,52.853390210681596],[-120.25602375704563,52.85352764554636],[-120.25596109811373,52.85366005870642],[-120.25586907958883,52.85378877581925],[-120.255806345017,52.853921742865516],[-120.25575768730437,52.85406102108265],[-120.25570902927393,52.85420029926738],[-120.2555882499232,52.854320870273796],[-120.25544067336084,52.85441875747051],[-120.25530498663781,52.85453915548581],[-120.25515597567738,52.85464765747556],[-120.25499364050252,52.85474426339146],[-120.25481647328444,52.85484014232704],[-120.2547224333833,52.85487320289035],[-120.25462718820154,52.85491518975722],[-120.25453179083057,52.854958302395225],[-120.25445062264014,52.85500660047365],[-120.25435530088957,52.85504915004124],[-120.25427413111996,52.85509745693024],[-120.25417888499607,52.85513944342774],[-120.25408348667032,52.85518255569568],[-120.25398884341062,52.85522007438317],[-120.25389352072224,52.85526262357038],[-120.25379880110664,52.85530070502713],[-120.25370347804842,52.855343254058006],[-120.25360883289129,52.85538078137091],[-120.25351403795054,52.85541941658391],[-120.25341878915275,52.855461411392014],[-120.2533241446895,52.85549892953752],[-120.25322889552714,52.85554092418962],[-120.25311941918498,52.85557771521618],[-120.25302605571213,52.85560574383516],[-120.25291786056536,52.855633045389965],[-120.25280958925525,52.855660909768055],[-120.25270214805904,52.85568262656602],[-120.25257980036231,52.85570417022119],[-120.25247281149602,52.85572253607533],[-120.25236521911825,52.85574536947532],[-120.25225838091391,52.85576261822293],[-120.25213663500051,52.855779702708176],[-120.25203024920911,52.855793600516385],[-120.2519079756847,52.85581458948302],[-120.25180174060168,52.85582737017389],[-120.25168059902002,52.855839977610394],[-120.25157376030178,52.85585722573449],[-120.25145269340402,52.855869278948546],[-120.2513463071663,52.85588317613684],[-120.2512252401306,52.85589522911631],[-120.25111885375402,52.855909126098446],[-120.25099778658036,52.855921178843396],[-120.25089215453544,52.855929491075194],[-120.25077108723988,52.85594154358645],[-120.25065115102588,52.8559452236267],[-120.25054491524084,52.855958003180206],[-120.2504230932337,52.85597563987443],[-120.25031746094187,52.85598395158934],[-120.25019639332933,52.85599600350805],[-120.25009008242749,52.85600933663631],[-120.24996901467864,52.856021388320585],[-120.24986338218501,52.85602969962696],[-120.24974231431429,52.856041751077534],[-120.24962185008627,52.85604933477481],[-120.24950183860824,52.85605356762764],[-120.24939560220892,52.85606634614126],[-120.24928861106294,52.85608470909202],[-120.24918048717468,52.85611145321152],[-120.24907168451337,52.8561432188421],[-120.24896280682104,52.85617553835681],[-120.24886883551574,52.85620803128665],[-120.2487599562966,52.85624035954723],[-120.24865183288985,52.85626709424249],[-120.2485571063632,52.85630517144965],[-120.24844837761928,52.856336382514],[-120.24835493453875,52.856364961393076],[-120.2482461306158,52.856396726254175],[-120.24813853427445,52.85641955577434],[-120.24803101269943,52.856441831210795],[-120.2479216044439,52.85647806338891],[-120.2478127250252,52.8565103818311],[-120.24771935602321,52.85653840621715],[-120.24761047508932,52.85657073340583],[-120.24751597403976,52.85660712994253],[-120.24740762183765,52.85663554331036],[-120.24729889141025,52.8566667533046],[-120.24719189785529,52.85668511433932],[-120.2470702233816,52.856701630645944],[-120.24696511774117,52.85670602571405],[-120.246845934063,52.85670411735237],[-120.24672780864464,52.85669438161412],[-120.24662579805765,52.85667588433584],[-120.24652710980047,52.8566328151091],[-120.24644393246986,52.85658545201191],[-120.2463613605917,52.856533612309086],[-120.24627863668928,52.856482898384215],[-120.24621134998,52.8564284356919],[-120.24612930665585,52.856372691129614],[-120.246061868081,52.856319354185636],[-120.24599518600061,52.856260423754335],[-120.24592797491273,52.856205406908536],[-120.24584510113523,52.85615580957021],[-120.2457619267006,52.85610843704094],[-120.2456787512425,52.8560610733865],[-120.24559557717741,52.85601370073654],[-120.24551285519405,52.85596298625593],[-120.24537564176966,52.8558736101671],[-120.24517547678757,52.855808136632696],[-120.24507588572808,52.855771767573145],[-120.24495897168715,52.85575309483908],[-120.24485575570704,52.85574353122399],[-120.24473770832668,52.85573323949623],[-120.24461966100333,52.85572294764986],[-120.24450161373692,52.85571265568474],[-120.24438175376224,52.855715766408494],[-120.24427672520348,52.855719605092],[-120.24415746947176,52.85571824798505],[-120.2440370051648,52.85572582595849],[-120.2439312211719,52.85573524883391],[-120.24380954814552,52.855751761774236],[-120.24370255538392,52.855770119642386],[-120.24358148650961,52.85578216474736],[-120.24347335980991,52.85580890362067],[-120.2433787058274,52.85584641374699],[-120.24328329500374,52.85588951722681],[-120.24320286778082,52.85593222301132],[-120.2431074565875,52.85597532634598],[-120.24301219751085,52.85601730376827],[-120.24291678593448,52.85606040694592],[-120.24283545138817,52.856109813865025],[-120.2427685698407,52.85616274571162],[-120.24268662927878,52.8562166290525],[-120.24260536911963,52.856265481826114],[-120.24252403382147,52.856314888523286],[-120.24244292440571,52.856362624283676],[-120.24236098304833,52.856416507390676],[-120.24227979830056,52.85646479701659],[-120.24219793270719,52.85651811709011],[-120.24213014297324,52.856577749942886],[-120.24206310868875,52.85663179826931],[-120.24199531858561,52.85669143103993],[-120.24192881230803,52.85674157461462],[-120.24183271851625,52.856789698459835],[-120.24175092791315,52.85684245529513],[-120.24166966548968,52.856891307402286],[-120.24158908241132,52.856935137886595],[-120.24150789580224,52.85698342696334],[-120.24141248054407,52.85702652889319],[-120.24131721745108,52.85706850491338],[-120.24122240641586,52.857107139103775],[-120.24112729410984,52.857147998072406],[-120.24103255890884,52.857186069192316],[-120.24092306661431,52.857222857752326],[-120.24084248335146,52.857266678780306],[-120.24074653831535,52.85731368482634],[-120.24065119773712,52.857356223214],[-120.24055646164857,52.85739429394514],[-120.24046172539086,52.857432364598935],[-120.24036706394689,52.85746988119594],[-120.24025832744981,52.8575010757239],[-120.2401641954117,52.857534678559105],[-120.24005530620786,52.85756699872688],[-120.2399614012484,52.85759892159021],[-120.23985183198002,52.85763626312164],[-120.2397565647794,52.85767824679565],[-120.23967590325559,52.857722629925235],[-120.23959395699859,52.857776502121176],[-120.23951223672807,52.85782870338639],[-120.23944572575736,52.85787884551955],[-120.23936385390618,52.85793216357096],[-120.23928190685241,52.8579860355422],[-120.23920018579838,52.85803823658347],[-120.2391342789726,52.858083910964666],[-120.23903765036444,52.858135937138265],[-120.23895713844135,52.85817920286962],[-120.23884817167314,52.85821207588405],[-120.23874003584498,52.858238810360625],[-120.23863242976813,52.858261631149674],[-120.2385236899835,52.85829282405685],[-120.23841668857159,52.858311177082584],[-120.2383096870676,52.85832953001072],[-120.23818800446317,52.85834603710302],[-120.23808115401151,52.85836327293182],[-120.23796060492805,52.85837140757609],[-120.23785375432092,52.858388643197884],[-120.2377325251138,52.85840179914693],[-120.23762567433833,52.85841903456102],[-120.23751874845493,52.85843682385514],[-120.23739767026393,52.85844886256843],[-120.237277197043,52.858456433598775],[-120.23717216109551,52.85846026592549],[-120.23696852544498,52.85853065111299],[-120.2367785874863,52.85861013716978],[-120.2365884975411,52.85869073980413],[-120.2363976504586,52.858776926567806],[-120.23622178628268,52.85886272522616],[-120.23603184545311,52.85894221005943],[-120.23582760163147,52.85901705186348],[-120.23562418866602,52.85908575489826],[-120.23541994223098,52.859160604922174],[-120.23524467976824,52.85924193455106],[-120.2350417950204,52.85930672299828],[-120.23482354686367,52.85937469538878],[-120.23466235829441,52.85946233783818],[-120.23455542914165,52.85959031742277],[-120.23453605820926,52.85973327872519],[-120.23454673151876,52.85987490194976],[-120.23458744815781,52.86001519602361],[-120.23464375454957,52.86015063494203],[-120.23472972701643,52.860287532393414],[-120.23481547243337,52.86042610956514],[-120.23487185636226,52.860560985429096],[-120.23492846703611,52.86069419039469],[-120.23489691147599,52.86081688138043],[-120.2346631418838,52.86088914565841],[-120.23444125130047,52.86087373853011],[-120.2342087655861,52.86082632888436],[-120.23402539510417,52.860747046419114],[-120.23384240430298,52.86066496698742],[-120.23366115547292,52.86057003864002],[-120.2334948154306,52.86047528547393],[-120.23331424874101,52.860375335072675],[-120.2331471533578,52.860286165818614],[-120.23296469544484,52.86020018037343],[-120.23276604426074,52.86012350811747],[-120.23252690334975,52.86012523795516],[-120.23233740419569,52.86020136610689],[-120.23218702751846,52.86031933653796],[-120.23209492286902,52.86044803448316],[-120.23203202806626,52.86058155117685],[-120.23199819437981,52.86072098567574],[-120.2319250794183,52.86092988729041],[-120.23187187363969,52.86099192348381],[-120.23183365340522,52.86105356348511],[-120.23177976658636,52.861120621127284],[-120.23172656035838,52.861182657247504],[-120.23168773407939,52.86124876471554],[-120.23164920930293,52.86131264734247],[-120.23162491313532,52.86138171821613],[-120.2315857824676,52.861450068337575],[-120.23156148611898,52.86151913919209],[-120.2315378704806,52.86158318854637],[-120.23149873948844,52.86165153863013],[-120.23145976100582,52.8617187628831],[-120.23140647845909,52.86178135280727],[-120.23135281658327,52.86184673937104],[-120.23129968514806,52.86190821236223],[-120.23124662988037,52.86196912241987],[-120.23119334670798,52.86203171223752],[-120.23115451761781,52.86209782842897],[-120.23110138558387,52.86215930132079],[-120.23104832972052,52.862220211279265],[-120.23099519738102,52.8622816841183],[-120.23094145913099,52.86234762444552],[-120.23087356806232,52.862407813490876],[-120.23082043523713,52.862469286243524],[-120.23075262013218,52.86252891230767],[-120.23070024421436,52.862584800610314],[-120.23063182296359,52.862648894112866],[-120.23057937162082,52.86270533632877],[-120.23049679727525,52.86276367845743],[-120.2304295870673,52.86281883681313],[-120.23036237668552,52.86287399512851],[-120.23029456029643,52.86293362091314],[-120.23022750101939,52.86298766227001],[-120.23014553270802,52.86304152769756],[-120.2300784730724,52.86309556896572],[-120.22999718536066,52.863144412807316],[-120.22991582112222,52.86319381949701],[-120.22983400349239,52.863246567823566],[-120.22975286668661,52.86329429461495],[-120.22965681952009,52.86334185433264],[-120.2295760616376,52.863386784340996],[-120.22949492427632,52.86343451095008],[-120.22939895285407,52.86348150754735],[-120.22931842105852,52.86352476652848],[-120.22922297884314,52.86356785838196],[-120.2291276891381,52.8636098243464],[-120.22903292886842,52.863647885636524],[-120.22893824357186,52.863685392879255],[-120.22882811936911,52.86372662858348],[-120.22873403972633,52.863759668160185],[-120.2286399611498,52.863792698725916],[-120.2285311235914,52.86382444518213],[-120.22842289191361,52.86385172403969],[-120.22831518978879,52.86387509820495],[-120.22820771542665,52.863896792492525],[-120.22808661910415,52.86390882157087],[-120.22797967547572,52.863926602123655],[-120.22785857900423,52.8639386309668],[-120.22775095272102,52.86396144170945],[-120.22764332632264,52.86398425235328],[-120.22753516883236,52.864010976421355],[-120.22741331430733,52.86402858917037],[-120.22730644526189,52.86404581514022],[-120.22720078847745,52.864054106031865],[-120.22707961625703,52.864066688040246],[-120.22695912533302,52.864074248465826],[-120.2268534684106,52.86408253904502],[-120.22673237117854,52.86409456672657],[-120.2266112738782,52.86410659428326],[-120.22650485899887,52.864120468907984],[-120.22639662527341,52.86414774589443],[-120.22628770874844,52.86418005316926],[-120.22619377891976,52.86421196489683],[-120.22608478689669,52.8642448259504],[-120.2259900976814,52.86428233080386],[-120.22589556109067,52.864318709774444],[-120.22578596223893,52.86435603803167],[-120.2256918788503,52.86438907516002],[-120.22559719018174,52.86442657075861],[-120.22550234854465,52.86446519208508],[-120.22540644680456,52.86451162248903],[-120.22532583260958,52.86455544160865],[-120.22522977887735,52.864602988735584],[-120.2251486343371,52.86465071230746],[-120.22506665520015,52.864704583071045],[-120.22498596509566,52.86474895591946],[-120.22490413838332,52.86480170076218],[-120.22482162862366,52.86485947592416],[-120.2247683324084,52.864922062714335],[-120.22474417343614,52.86499002407407],[-120.22472039402311,52.86505518878658],[-120.22471076725697,52.86512610548021],[-120.22468622965053,52.86519685452328],[-120.22467713283744,52.86526386663542],[-120.22466742953863,52.865335346217954],[-120.2246725606752,52.8654075563482],[-120.22466346379571,52.86547456845038],[-120.22465376042602,52.865546048022274],[-120.22464405702381,52.86561752759003],[-120.22464911174028,52.86569030061005],[-120.22463986314708,52.865758429566675],[-120.22464552555256,52.86582672617318],[-120.22466640104821,52.86589296562637],[-120.22471664269995,52.86596289990305],[-120.22476749097316,52.86602836668295],[-120.2248183394025,52.866093833438036],[-120.22486994604763,52.86615371582785],[-120.22490596002922,52.86621845201333],[-120.22495696050795,52.86628280183259],[-120.22500780953165,52.86634826849529],[-120.22504382388688,52.866413004630566],[-120.22509527962785,52.866474003777526],[-120.22514620428855,52.86653891640574],[-120.22518221901497,52.86660365249092],[-120.22520256571357,52.86667379638753],[-120.22522298767511,52.866743386310866],[-120.22521320854564,52.86681542877325],[-120.22518935363479,52.866881147472256],[-120.2251209172056,52.866945237592674],[-120.22503976808586,52.86699296101899],[-120.22493091967782,52.86702470407714],[-120.22482389050352,52.86704304462468],[-120.22470278429061,52.8670550701926],[-120.22459651305365,52.867067826196376],[-120.224475936789,52.867075946962935],[-120.22436905891875,52.86709317022884],[-120.2242478008036,52.867106312194316],[-120.22414031622722,52.86712800271841],[-120.22403336287877,52.867145779644176],[-120.2239104364638,52.867171206791014],[-120.22372035924343,52.86725123420793],[-120.2235153709727,52.86733108458344],[-120.22333944559304,52.86741686349875],[-120.22317706616477,52.86751286177054],[-120.22307068900585,52.86763636279397],[-120.22300783178007,52.86776931115184],[-120.22292907717326,52.86790934674696],[-120.22286629554567,52.868041732106725],[-120.22281751411981,52.868180995426364],[-120.22272604613974,52.868304663969205],[-120.22260505834076,52.86842575395042],[-120.22249882892979,52.8685481375217],[-120.22240607051849,52.86868129465761],[-120.2222984747014,52.868813729796],[-120.22217884947409,52.86892476753386],[-120.22198929273378,52.86900087857623],[-120.22177226423301,52.86905932851416],[-120.22160911526689,52.86916091776559],[-120.22147472797491,52.86927066092768],[-120.22135305055386,52.869396779890586],[-120.22126089359149,52.86952546860671],[-120.22119734458754,52.86966344618024],[-120.22116392342565,52.86979952617759],[-120.22117455362141,52.869941158650086],[-120.22121508414847,52.87008257332472],[-120.22125622182858,52.870219520530405],[-120.22123740835977,52.87035801123825],[-120.22118945405043,52.87049112647955],[-120.22112537294207,52.870633008473774],[-120.22104766896128,52.87076522453548],[-120.22095558337776,52.870893358938986],[-120.22084926782286,52.871016294791886],[-120.22072834226007,52.871136828672455],[-120.22060734074962,52.87125791638157],[-120.22048641503149,52.87137844106005],[-120.22036617089265,52.871493944208986],[-120.22024440857744,52.87162061580964],[-120.22013816442896,52.87174299700158],[-120.22003207264356,52.87186425229515],[-120.21992575200433,52.87198718723781],[-120.21981943075194,52.87211012207476],[-120.21969720974514,52.872240143631565],[-120.2195908107096,52.872363641138186],[-120.21948471582286,52.87248489589053],[-120.21940654804428,52.8726204612835],[-120.21931437702317,52.87274915714747],[-120.21917913708891,52.87286504461409],[-120.21907303978342,52.8729862989567],[-120.21899547693867,52.87311739661055],[-120.2189460698905,52.873261125300964],[-120.21889795215229,52.873395365154614],[-120.21877762272905,52.87351142049234],[-120.21864260601271,52.87362563647109],[-120.21850683075941,52.87374542762471],[-120.21840065283888,52.87386724418811],[-120.21827902971701,52.873992796709835],[-120.21817277401429,52.87411517594287],[-120.21805183330801,52.87423569790048],[-120.21790318947784,52.87434024676624],[-120.21769959920763,52.87440947206887],[-120.21746952060226,52.87445378913442],[-120.21725572212043,52.87448822266679],[-120.21701520990834,52.87449940970248],[-120.21679143262936,52.87449737160818],[-120.21655403275594,52.87448566670498],[-120.21631602555046,52.874478428727194],[-120.21609164092911,52.87448085670576],[-120.21586467436539,52.87450227071698],[-120.21563649250497,52.874532619092435],[-120.21541935057991,52.8745916199898],[-120.21522861675506,52.87467610070013],[-120.21503978153257,52.874746616011734],[-120.21482332187568,52.87480058551073],[-120.2146067851072,52.87485511750104],[-120.21439024778473,52.8749096490907],[-120.21418725556799,52.874974409826955],[-120.21399644223222,52.875059442474594],[-120.2138480906648,52.875161743528366],[-120.2136841397733,52.87526890562743],[-120.21350740214206,52.87536025363408],[-120.21335889640756,52.87546367089813],[-120.21319562751356,52.87556580201829],[-120.21304658785448,52.87567313230427],[-120.21288331741,52.875775262977236],[-120.21273480749993,52.87587868836083],[-120.21258584217887,52.87598545515143],[-120.21245133354894,52.87609575041576],[-120.21233029445148,52.876216829226884],[-120.21222340820927,52.876343670290446],[-120.21210229237684,52.87646530280288],[-120.21195377816775,52.87656872715508],[-120.21178997031062,52.876674760739114],[-120.21160096854884,52.876746387282274],[-120.21136538161639,52.876721269794814],[-120.2111464572337,52.876683481972904],[-120.21096290942853,52.87660528116173],[-120.21078103571024,52.87651478585633],[-120.21061514038122,52.87641665073405],[-120.21044985391954,52.876314048002165],[-120.21030054584722,52.87620380554282],[-120.21015055500723,52.87609858420854],[-120.21001654368683,52.87598571429019],[-120.20989835857625,52.87586632161753],[-120.20979607622536,52.87573984334848],[-120.20967842395832,52.875616545956696],[-120.20954487154344,52.875500324940646],[-120.20941147069013,52.87538299585756],[-120.20927731152342,52.8752712418876],[-120.20914330389964,52.87515837984994],[-120.20900929820192,52.87504550871687],[-120.20887590024596,52.874928178992505],[-120.20872645024897,52.874819042344846],[-120.20857646816665,52.87471381891082],[-120.20841012870176,52.874619031089665],[-120.20821221367572,52.87453674275962],[-120.20802822546521,52.87446187884911],[-120.20784590964341,52.874374738337806],[-120.20766351912953,52.8742881514918],[-120.20746576039414,52.87420473611305],[-120.20729988168692,52.874106596170485],[-120.20718117642497,52.873991114032684],[-120.20706361320859,52.873867251001464],[-120.2069453667956,52.87374840915405],[-120.20679554498835,52.87364206653753],[-120.20661376820863,52.87355101066458],[-120.20643138372165,52.87346442186218],[-120.206248466928,52.87338174617587],[-120.2060139666644,52.873348800038784],[-120.20579263015043,52.873328871587],[-120.20555645695384,52.87330820975919],[-120.2053190667904,52.87329648215946],[-120.20509651363078,52.873285487099174],[-120.2048572977821,52.873287160617686],[-120.20464281082312,52.87332659253663],[-120.20441386640256,52.873362503335706],[-120.20418454053859,52.87340121024622],[-120.20396936694057,52.87344567116419],[-120.20374065020927,52.87347990092814],[-120.20351368277407,52.873501291107104],[-120.20327750972697,52.8734806247031],[-120.2030578481106,52.87344840591784],[-120.20283894790084,52.87341060254875],[-120.20260582010172,52.87336759810242],[-120.20238912738141,52.8733136042635],[-120.2022051546764,52.87323873118216],[-120.20200680132919,52.8731597828359],[-120.2018256457956,52.873064252196976],[-120.20165925226486,52.87297000867543],[-120.20150921739919,52.872865338987424],[-120.20137539137328,52.872751342157336],[-120.20122589147361,52.87264275870988],[-120.20109252245844,52.872525419977244],[-120.20095839409268,52.87241365631411],[-120.20080958101872,52.8723000510334],[-120.20066031315324,52.87218978711939],[-120.2005099034172,52.87208790371893],[-120.20035995122429,52.87198266962251],[-120.20021060888477,52.87187296799897],[-120.20007656041531,52.87176064933503],[-120.19992767643737,52.87164759684005],[-120.19977727036508,52.8715457124676],[-120.1995691320251,52.87131954149876],[-120.19836402950924,52.870956358503825],[-120.19749264780539,52.87055570326119],[-120.19681321417401,52.86984296912915],[-120.1964531705147,52.869197755769086],[-120.19596653356436,52.86860474284256],[-120.19560123320875,52.868107682027755],[-120.19502518246479,52.86773230613001],[-120.19391009316242,52.86725771472156],[-120.19263662246203,52.866849477277164],[-120.19162539019983,52.86648962672554],[-120.19075961216973,52.86593964796982],[-120.19028419238614,52.86559339935719],[-120.18961422402081,52.864922124834145],[-120.18852414144756,52.86404674253874],[-120.1874205551773,52.86337982267376],[-120.186155521844,52.86269250876893],[-120.18461779211604,52.86192475845396],[-120.18333526531588,52.86125678963697],[-120.18198715299931,52.860413509044],[-120.18051077137429,52.85930749022414],[-120.17893523292544,52.85816278447559],[-120.17752817002233,52.85786073463595],[-120.17622770784965,52.85787091511526],[-120.17558737822712,52.85796728973118],[-120.1742330170867,52.857825791503586],[-120.17295443350828,52.85745810637779],[-120.1717572311076,52.85682345985377],[-120.17059726642802,52.85646220059233],[-120.16881250638855,52.85630205142659],[-120.16773395485575,52.85665431734459],[-120.1672501778233,52.85724249077404],[-120.16662476813639,52.85842799409702],[-120.16612929509127,52.859210115047865],[-120.16491676224767,52.86064750147244],[-120.1637468979167,52.861446641873876],[-120.16136919727808,52.86277652399305],[-120.15988668453116,52.863458874616796],[-120.15838654584115,52.86372540963486],[-120.1571248631098,52.86399537953415],[-120.15609003994102,52.86457068425537],[-120.15523792126018,52.86533780222359],[-120.15416050311288,52.866440007554985],[-120.1526560422527,52.86858405433791],[-120.15121605004937,52.87058401059423],[-120.15020274257616,52.87176134827239],[-120.14897734416684,52.87263405632304],[-120.1481905614669,52.87314127657074],[-120.14709528325966,52.873719121783125],[-120.1349396777323,52.876507162425675],[-120.13549258661033,52.87748103138881],[-120.1359455747684,52.87885469079408],[-120.13665824546464,52.88051232471764],[-120.13785424717925,52.88234926630599],[-120.13869055263727,52.88332770803692],[-120.14131569286015,52.8847704880479],[-120.1437414804113,52.88592607318498],[-120.14581037284735,52.88685295988595],[-120.14982621487314,52.88916042421994],[-120.15307627246156,52.89204069205163],[-120.15725868256816,52.89651331076293],[-120.1612397287914,52.900934671574085],[-120.16270093290196,52.90357321157164],[-120.16499857334205,52.90741591436758],[-120.16653387898785,52.9115872120535],[-120.16749617591847,52.915360081268844],[-120.17064722040432,52.919093756924816],[-120.1743860770838,52.92214362080175],[-120.17662883320699,52.92323755008589],[-120.1770904606114,52.923470137890476],[-120.1806816879196,52.92378250891051],[-120.18652615224094,52.924787060303785],[-120.18690540245512,52.925075675803576],[-120.18941067352364,52.927315104570525],[-120.19336626427331,52.92813755084759],[-120.19876150886579,52.92805675130887],[-120.20426293501352,52.927635779721726],[-120.20520676534976,52.927185403615255],[-120.21093032849019,52.92436456679762],[-120.21751735331073,52.92068712795092],[-120.22453173334137,52.91924693853725],[-120.23058289270777,52.91928075209569],[-120.23530991992138,52.9195961031566],[-120.24079160480107,52.919970202851395],[-120.24652890196613,52.92176976178433],[-120.24981234519129,52.92269957696943],[-120.25415721854039,52.92330067275709],[-120.25955127163479,52.92333117096378],[-120.26664346969267,52.922855800623346],[-120.27403476640254,52.92226755595138],[-120.27629937639706,52.92210645337745],[-120.28322073020483,52.921229980869406],[-120.29023016301818,52.92069691817159],[-120.29614896638438,52.921046931891915],[-120.29850197587582,52.921005495395455],[-120.29873680994208,52.92103825603949],[-120.29895903720565,52.921053541191924],[-120.29919731862113,52.921060611643576],[-120.29942134439099,52.92106249282049],[-120.29966269836903,52.92104666088957],[-120.29988852216216,52.92103513806746],[-120.30012680362898,52.92104220663732],[-120.30034963072252,52.9210530214584],[-120.3005861145089,52.921073492218234],[-120.3008084924358,52.9210876569512],[-120.30104557587325,52.921103659078504],[-120.30128385791555,52.92111072530545],[-120.30150788404113,52.92111260251054],[-120.3017455670453,52.921124135515065],[-120.3019838493183,52.92113120032468],[-120.302207426245,52.92113642698432],[-120.30244570866343,52.92114349085876],[-120.30267093314886,52.921136430415736],[-120.30290981468723,52.921139025632264],[-120.30313384103333,52.921140899742376],[-120.30337152463575,52.92115242946293],[-120.30359674901491,52.92114536724827],[-120.30383750176642,52.92113400341514],[-120.30406272597085,52.92112694030859],[-120.30430100864386,52.921134000426875],[-120.30452323840373,52.92114927507192],[-120.30476212012695,52.92115186652876],[-120.30500160070297,52.92114998977068],[-120.30522562719871,52.92115185989903],[-120.30546331142858,52.92116338539513],[-120.30568434425385,52.92118759331219],[-120.30592038230549,52.92121140415197],[-120.30614081693453,52.92124007894562],[-120.30637730454302,52.92126053806654],[-120.30660073302329,52.92126687331399],[-120.30683849369503,52.92127783309718],[-120.30705952789614,52.9213020384298],[-120.30729302336182,52.92134483441029],[-120.30751076606998,52.921393611470805],[-120.30772880854778,52.92144015425538],[-120.30794804854077,52.921477761146356],[-120.30816676463789,52.92151928137281],[-120.3083855565693,52.921560238255694],[-120.30861965323393,52.92159856385133],[-120.30883897023119,52.92163560614282],[-120.30907426452569,52.92166499533598],[-120.30929350686456,52.92170259971536],[-120.30951289918033,52.92173908674758],[-120.3097471474265,52.9217762931585],[-120.30996579262055,52.921818364035396],[-120.31018391414467,52.92186434825795],[-120.31040196195472,52.921910886076674],[-120.31062023518169,52.92195574361362],[-120.31083708748989,52.92201121613627],[-120.31102101305818,52.922089267676796],[-120.31120329548217,52.92217959632748],[-120.31138565285256,52.92226937068879],[-120.31155225797339,52.92236512684429],[-120.31173401873849,52.922459368415346],[-120.31190129767242,52.922550102302765],[-120.31208305999965,52.922644343324066],[-120.31224989303615,52.92273841859158],[-120.31243210548955,52.922829308241134],[-120.31259841612885,52.9229272967643],[-120.3127488249275,52.9230323842272],[-120.31286727970537,52.92315278682658],[-120.31298543614528,52.92327542318032],[-120.31308806373322,52.923402370745556],[-120.31319076728087,52.923528755272976],[-120.31335708239811,52.92362674268197],[-120.3135398989803,52.923713162801384],[-120.31372219369986,52.92380348746065],[-120.31393973152613,52.92385393243352],[-120.31416257683838,52.923864721083454],[-120.31440207225617,52.9238628252004],[-120.31462611343628,52.92386467743183],[-120.31486560883314,52.92386278060552],[-120.31509263904817,52.923842293084675],[-120.31531922071073,52.923825155957],[-120.31554752133277,52.923795169068015],[-120.31577529802178,52.92376909550888],[-120.31600367213751,52.92373855372962],[-120.31623070114252,52.92371806401195],[-120.31647266037696,52.923697738789954],[-120.31669909130683,52.92368171594982],[-120.31702041256429,52.92362699903186],[-120.3171023134444,52.92357362909453],[-120.31716950722573,52.923518423303136],[-120.31725133241615,52.92346561619958],[-120.31731852583381,52.92341041031946],[-120.31740050121539,52.92335647722649],[-120.31746754488096,52.923302388204384],[-120.31754884703957,52.92325348573343],[-120.31764425829034,52.92321088673168],[-120.31773966935019,52.923168287651464],[-120.31783508021914,52.92312568849276],[-120.31794332991016,52.92309889126965],[-120.31804911545062,52.923090519117174],[-120.31816736722443,52.92310073676115],[-120.31828442413997,52.92311988987076],[-120.31838557945206,52.92314614280533],[-120.31850091956079,52.92317813613493],[-120.31860088029353,52.92321332446975],[-120.31868479013733,52.92325672964896],[-120.31876825209518,52.92330348561282],[-120.31888351764556,52.92333604150647],[-120.31898422579981,52.92336564476904],[-120.31908403802774,52.92340194963813],[-120.31918332713167,52.92344216821098],[-120.31928276695741,52.92348126081447],[-120.31938213169987,52.92352091627534],[-120.31946731169589,52.92355483128855],[-120.31956712477918,52.92359113574374],[-120.31968261631064,52.923622010957224],[-120.31978183242693,52.923662783026685],[-120.31988254197857,52.92369238551468],[-120.31998355031413,52.92371975401634],[-120.32009948925888,52.92374728690455],[-120.3202028869262,52.923756784018444],[-120.3203205438141,52.92377146729507],[-120.32043820078317,52.923786150454006],[-120.32054040415962,52.92380458287363],[-120.32065746407756,52.92382373361486],[-120.32077452410081,52.923842884239264],[-120.32089173352797,52.92386091779627],[-120.32099281815721,52.9238877224858],[-120.32110928133496,52.92391134058036],[-120.32120924594457,52.92394652668399],[-120.32130921071939,52.923981712701966],[-120.32139424388622,52.92401674326227],[-120.32149308994963,52.92406030178988],[-120.3216089567546,52.92408838719333],[-120.32171116136335,52.924106818592975],[-120.3218288197386,52.92412150035877],[-120.32194603037927,52.924139532862775],[-120.32204883233386,52.924153496160656],[-120.32216649095456,52.92416817758842],[-120.32228310481369,52.92419067756518],[-120.32238471291714,52.92421357618836],[-120.32248520109688,52.924244856335825],[-120.32260106905846,52.924272940759515],[-120.32270267752921,52.92429583910698],[-120.32281988901987,52.92431387073876],[-120.32293695136319,52.92433301920688],[-120.323039157134,52.92435144945059],[-120.32315510096855,52.924378970382605],[-120.32325670999028,52.92440186825025],[-120.32337213118142,52.924433302772535],[-120.32347329275058,52.92445955131332],[-120.32357370829226,52.92449138453573],[-120.32369024856956,52.92451444605863],[-120.3237906644029,52.92454627909492],[-120.32389122960883,52.92457699509079],[-120.32400717460831,52.924604515179645],[-120.32410878462652,52.924627412308546],[-120.32422584841152,52.92464655949099],[-120.32434350914532,52.92466123873807],[-120.32446191599935,52.92467033309325],[-120.32456412323991,52.92468876200896],[-120.32468178420699,52.924703440917526],[-120.32478235042697,52.924734156148986],[-120.32489822123526,52.92476223830278],[-120.32499811577979,52.92479798411553],[-120.32509868245128,52.92482869907493],[-120.32519857851355,52.924864435780414],[-120.3252981011801,52.92490296925741],[-120.32539799639052,52.924938714727624],[-120.3254973702295,52.92497836499015],[-120.32558136576847,52.92502120225964],[-120.3256807399707,52.925060852365455],[-120.3257806358728,52.92509659750738],[-120.3258812038141,52.92512731179253],[-120.32599834495181,52.925145894260275],[-120.32610115066507,52.92515985401013],[-120.32621881346385,52.9251745313779],[-120.32633587970197,52.9251936764554],[-120.32643689574687,52.92522103939348],[-120.3265529181264,52.92524800295302],[-120.32665348698244,52.92527871657552],[-120.32675450343322,52.925306079239625],[-120.32686925789984,52.925342541090586],[-120.32696930579827,52.925377159324526],[-120.32705442157639,52.92541162281892],[-120.32716865519261,52.925451989259344],[-120.32726974635752,52.92547879746728],[-120.32737195675409,52.925497223935565],[-120.32748962092327,52.92551190003],[-120.32760728517354,52.92552657600661],[-120.32772614250665,52.92553231619852],[-120.32784440338341,52.925542524104486],[-120.32794840361504,52.92554754656944],[-120.32806785751781,52.925548818581724],[-120.32818790788022,52.92554562263692],[-120.32829369748418,52.9255372412894],[-120.32841449333264,52.92552846031798],[-120.32853573644296,52.9255163283444],[-120.3286416010526,52.925507383736516],[-120.32876403682077,52.92548631585107],[-120.32887176439809,52.92546341350719],[-120.32897889549156,52.925444978904515],[-120.32908587740312,52.92542766116423],[-120.3292071200351,52.925415528498306],[-120.32931298306039,52.92540659222169],[-120.32943422556765,52.925394459321666],[-120.32955487169909,52.92538679413979],[-120.32967372890448,52.925392532365606],[-120.3297777289855,52.92539755321467],[-120.32989375396158,52.925424513478134],[-120.32999544423097,52.9254468425652],[-120.33011072416716,52.92547938742043],[-120.33021293579458,52.92549781142167],[-120.33033060094456,52.925512484676],[-120.33044766996059,52.9255316256599],[-120.3305665276906,52.9255373629836],[-120.33067306204505,52.925523394687595],[-120.33078138486896,52.925496022747964],[-120.3308890362685,52.925473681506965],[-120.33099862625495,52.925436810718075],[-120.33110694864928,52.92540943847733],[-120.33120100986355,52.92537688120781],[-120.33129581608833,52.9253387390475],[-120.33140473415368,52.925306898678976],[-120.33151365205613,52.92527505820896],[-120.33162130251276,52.92525271629517],[-120.331729027962,52.92522981133293],[-120.33183667938333,52.925207460285854],[-120.33194425558894,52.92518567208983],[-120.33206639077757,52.925166834693066],[-120.33217396676297,52.92514504628656],[-120.33228102052736,52.925127171624766],[-120.33238859630274,52.92510538302157],[-120.33250998607384,52.9250921299865],[-120.33261763673708,52.925069778223225],[-120.3327388773434,52.92505764191675],[-120.33284585675224,52.9250403207549],[-120.33296709720963,52.92502818421306],[-120.33307303357005,52.92501868160201],[-120.33319442288094,52.92500542786039],[-120.33330080606514,52.924992574147154],[-120.3334226421521,52.92497596927251],[-120.33352842930995,52.92496758321726],[-120.33364914738254,52.924959359821585],[-120.33376859980504,52.92496062604881],[-120.33386902422471,52.924992450477795],[-120.33396788531397,52.92503599850219],[-120.33403598847349,52.925085940708314],[-120.33411835429801,52.92514105851542],[-120.33420131496071,52.925191717331515],[-120.33426941983475,52.92524165046207],[-120.33435230699371,52.92529286318416],[-120.33443459855795,52.92534854371419],[-120.33450203309935,52.925403507524535],[-120.33456954169179,52.92545791727872],[-120.33465205787003,52.92551191773268],[-120.33471949295094,52.925566881412905],[-120.3347865552595,52.92562464193863],[-120.33485406575767,52.9256790425865],[-120.33493695447136,52.9257302548831],[-120.33503589223744,52.925773247974824],[-120.33511915308814,52.92582167218954],[-120.33520271318014,52.92586785347294],[-120.3353015764747,52.92591140928939],[-120.33538498801492,52.92595870740847],[-120.33546906930145,52.926000983579655],[-120.33556897562622,52.926036720393135],[-120.3356848570926,52.92606479190539],[-120.33578603012751,52.92609102983699],[-120.33590250753574,52.92611463326131],[-120.33600360696379,52.92614142502131],[-120.33612008463051,52.9261650282296],[-120.33622066255326,52.92619573366005],[-120.3363218362295,52.92622197112896],[-120.33642114819015,52.92626217508935],[-120.336520014838,52.926305720936185],[-120.33660335346111,52.92635358113276],[-120.33670281488727,52.92639266788317],[-120.33678742005208,52.92643102924162],[-120.33688665909149,52.92647178682082],[-120.33698619609225,52.926510310376514],[-120.33708670041818,52.92654157801308],[-120.33718608888245,52.92658121836751],[-120.3372865947136,52.926612476896324],[-120.33738598352947,52.92665211708024],[-120.3374860418643,52.92668673528262],[-120.33758587765128,52.926723024386185],[-120.33768593750622,52.926757633481316],[-120.33780003594711,52.92679910654011],[-120.33798239414622,52.9268894023842],[-120.33811735246857,52.92699876284195],[-120.33822028783992,52.92712400827131],[-120.33829179550906,52.92726067087046],[-120.33836345368074,52.92739620750839],[-120.33840487463884,52.927534225624655],[-120.33844644471695,52.92767112674412],[-120.33847285921622,52.92780954562028],[-120.33848382028887,52.92795171620352],[-120.33847999702172,52.92809261659913],[-120.33847632377268,52.92823239107659],[-120.33847257547751,52.92837272849489],[-120.33846882715764,52.928513065900844],[-120.33844977381037,52.92865603804356],[-120.33844617424576,52.92879525845473],[-120.33844294620198,52.92893169089777],[-120.33845383363101,52.929074415403],[-120.33848024902498,52.92921283415837],[-120.33850644071173,52.929352932818055],[-120.33851807274095,52.92949007243391],[-120.33852895937379,52.929632805818976],[-120.33853954955781,52.92977776419312],[-120.33853624790578,52.9299147505733],[-120.33853242463584,52.93005565080103],[-120.33852882522315,52.930194871095395],[-120.33851036676096,52.9303333752255],[-120.33847719796552,52.930470046216115],[-120.338457623351,52.93061692311046],[-120.33843916447415,52.9307554271937],[-120.33843548967037,52.93089521037748],[-120.33843233646034,52.931031079692765],[-120.33841268640535,52.93117851948113],[-120.33837959166624,52.931314627421656],[-120.33833111567053,52.93145393302218],[-120.33829801926557,52.931590049852474],[-120.33827941057748,52.931729670795555],[-120.3383358439069,52.93186728778284],[-120.33842281618165,52.932000189273424],[-120.33852598724711,52.93212376306833],[-120.33866007038961,52.93223982435776],[-120.33879519508292,52.93234807564803],[-120.33894451098506,52.93246206476151],[-120.3391103998891,52.932563920155935],[-120.33927680995644,52.932661870389694],[-120.33944314577266,52.93276038333435],[-120.33961000389071,52.932854982180764],[-120.33977641624543,52.93295293169082],[-120.339942382873,52.93305423186588],[-120.34006109127156,52.93317348937934],[-120.34014903837787,52.93329913365978],[-120.34023601923883,52.933432033694295],[-120.34027700566926,52.93357340154751],[-120.34031799237192,52.933714769374276],[-120.34035957463819,52.93385166929986],[-120.340400561883,52.933993037073755],[-120.34044273997311,52.9341254690726],[-120.34049895964625,52.93426476474176],[-120.34057138073207,52.934394714611756],[-120.34064290816303,52.93453137517402],[-120.34071518132554,52.93466244190284],[-120.34078730492769,52.934794634481115],[-120.3408741420242,52.93492865089107],[-120.34096120228914,52.93506099624084],[-120.341049155952,52.935186639703964],[-120.3411678733981,52.93530589594579],[-120.34131668462295,52.93542379570235],[-120.34148363233977,52.93551782878686],[-120.34168364991287,52.935588165796574],[-120.34188530482723,52.93564621580041],[-120.34210241638694,52.935700513276785],[-120.34232004862855,52.935750905424435],[-120.34253656618662,52.93580966997588],[-120.34275301055403,52.93586898814432],[-120.34295422197108,52.93593038721822],[-120.34317126137041,52.935985245667226],[-120.34338785626613,52.93604344569147],[-120.34360541800505,52.93609438947007],[-120.34382327774469,52.936143098902136],[-120.3440414354517,52.93618957398616],[-120.34425966740459,52.93623549464652],[-120.3444784209546,52.93627750103044],[-120.34469851339477,52.93630945425459],[-120.34493391353094,52.936338771489304],[-120.34517057858196,52.936358589514],[-120.34539468684969,52.9363603831636],[-120.34563425115917,52.936358423744366],[-120.34585776469628,52.936364684406996],[-120.34609613956002,52.93637165983906],[-120.34633451450189,52.93637863478852],[-120.34655683889558,52.936393829919695],[-120.34679164612608,52.93642761133739],[-120.34699464990427,52.93647559978494],[-120.34721050807114,52.936539386571106],[-120.34740927699822,52.9366192036326],[-120.3475927381521,52.936701665215075],[-120.34777634984435,52.93678300059571],[-120.34794264771243,52.93688205530246],[-120.34812395649251,52.93698070772965],[-120.34829040456793,52.937078644956955],[-120.34845789376291,52.93716876310671],[-120.34865622092818,52.937251937897884],[-120.34885618478995,52.93732281666769],[-120.34905681745467,52.93738867316513],[-120.34925782165064,52.93745174134236],[-120.34947324355858,52.93751886593834],[-120.34967268937021,52.9375936571994],[-120.34985727410563,52.937667733402556],[-120.35003955586183,52.93775912694345],[-120.3502220618621,52.93784884026153],[-120.3503884444672,52.93794732849206],[-120.35055438094383,52.93804917635337],[-120.3507053825658,52.93815086338666],[-120.35087124690736,52.93825326481024],[-120.35102180433407,52.93835830236152],[-120.35117169459957,52.93846836165196],[-120.35130694575497,52.938576035209884],[-120.35145639069061,52.938689453996666],[-120.35157566756953,52.93880478559177],[-120.3517091383037,52.938925862417996],[-120.35181251326951,52.93904830706418],[-120.35193067749181,52.939172020088584],[-120.35203412855464,52.93929390156411],[-120.35215177483212,52.93942151930879],[-120.35223925008634,52.939551067972694],[-120.35232687559042,52.93967949064579],[-120.35238373560523,52.93981431224628],[-120.35244015158712,52.93995247581164],[-120.35249708718258,52.940086734377296],[-120.35253797221985,52.94022921436481],[-120.35257974868043,52.940364992447826],[-120.35262122835897,52.94050300446402],[-120.35266300535388,52.94063878249495],[-120.35268932561227,52.94077831405988],[-120.35271557118752,52.940918408564805],[-120.35274189179117,52.94105794009434],[-120.35279823572907,52.941196666340915],[-120.35288527222691,52.94132955638664],[-120.35295751977964,52.94146117801174],[-120.35306045894532,52.94158697231091],[-120.35314727369395,52.94172154206822],[-120.35325028890051,52.94184677322382],[-120.35336846507178,52.94197048459414],[-120.35347244742464,52.94208845070191],[-120.35357531597089,52.94221479852465],[-120.35366280129942,52.94234434591028],[-120.35378046089284,52.942471961790275],[-120.3538845192681,52.942589373476174],[-120.35400210536187,52.94271755207338],[-120.35410542248167,52.94284054844532],[-120.35422375238893,52.942963141902624],[-120.35434237995419,52.94308350127173],[-120.35452536330794,52.943169856688],[-120.35472536356131,52.94324073416953],[-120.35494141728734,52.943303380601975],[-120.35514431458289,52.94335247177672],[-120.35538035471619,52.943377300075134],[-120.35578064004869,52.943404396748555],[-120.35587993685252,52.943445137890315],[-120.35597886213624,52.94348867586975],[-120.35601521573577,52.94355280571281],[-120.35603640740815,52.94361846450748],[-120.35604154878683,52.943692336280584],[-120.35604676381249,52.94376565402729],[-120.35605324005215,52.94382948189414],[-120.35607324554428,52.943904067588285],[-120.35607905443314,52.943972917397694],[-120.35606955389535,52.94404440421879],[-120.35604593142827,52.94410959219582],[-120.35602164027964,52.944179811049715],[-120.35601228804762,52.94425018087586],[-120.35598799795082,52.944320390781],[-120.35596437520563,52.944385578730724],[-120.3559395647802,52.944459702522025],[-120.35591586706373,52.94452545341491],[-120.3559063661285,52.94459694019883],[-120.35589745897272,52.94466395905523],[-120.35588810642896,52.94473432885074],[-120.35586381585095,52.94480453870965],[-120.3558397472816,52.944873077557276],[-120.35580073939595,52.94494146539217],[-120.35576188103016,52.94500872729488],[-120.35572413538884,52.945067616296846],[-120.35565576992047,52.945131779205404],[-120.35560278777284,52.945192751099135],[-120.35553560963567,52.94524797809188],[-120.35549675057095,52.945315239894555],[-120.35545774172881,52.94538362759743],[-120.35543404394117,52.94544936942047],[-120.35540938044048,52.94552237607238],[-120.3553710399764,52.945585732861396],[-120.35534682170088,52.945655388555394],[-120.35532327087435,52.94572002230168],[-120.35529831008179,52.945795262877105],[-120.35528955019059,52.945861164659256],[-120.35527989943155,52.945933768313814],[-120.35527039711357,52.94600525498517],[-120.35524684716519,52.94606987976657],[-120.35522218298372,52.946142886351694],[-120.35518376684952,52.94620680601329],[-120.35514550026592,52.946269599745165],[-120.35509244232463,52.946331125388596],[-120.35503879030435,52.946397118920416],[-120.35498565721439,52.94645920746821],[-120.35493274729023,52.946519616054076],[-120.35486497224251,52.94657931053326],[-120.354782480501,52.946637173901934],[-120.3547294215766,52.94669869936813],[-120.35476592452532,52.94676171249351],[-120.35483289895245,52.94682057782573],[-120.35490061718636,52.94687384929113],[-120.35499999489139,52.946914037067735],[-120.35510004154594,52.94694919388897],[-120.35521599283796,52.94697724581335],[-120.35531656008041,52.94700848855682],[-120.35541883432394,52.94702689042668],[-120.35553493450851,52.947053825057054],[-120.35563720895544,52.94707222673681],[-120.3557533094019,52.94709916115115],[-120.35585499020223,52.947122030557445],[-120.35597213013918,52.947141145901035],[-120.35608874998975,52.947164175023964],[-120.35619161875697,52.94717810830312],[-120.3563087589995,52.94719722331128],[-120.35642827451211,52.947198466524966],[-120.35654838381004,52.9471952416974],[-120.35665244033798,52.94720023873379],[-120.35677195586906,52.94720148159868],[-120.35689028392216,52.94721166018583],[-120.35700742457088,52.9472307744986],[-120.35712456532484,52.94724988869466],[-120.35722639564926,52.94727163993407],[-120.35732755876136,52.947298413031376],[-120.35744291878704,52.947330930680785],[-120.35754356211609,52.94736161749317],[-120.35764420559028,52.94739230421888],[-120.35776023337986,52.947419799608],[-120.35786072873688,52.94745160312904],[-120.35796196628651,52.94747782165561],[-120.35806194310415,52.9475135299714],[-120.35817789788625,52.947541578969854],[-120.35827869064397,52.94757114816821],[-120.35837918674588,52.9476029512438],[-120.35847916302043,52.9476386681385],[-120.35857810189917,52.94768219488746],[-120.35866165558112,52.94772892185722],[-120.35874520944657,52.94777564876628],[-120.35882816994778,52.947826843544625],[-120.35891164940236,52.947874133292096],[-120.35901058927094,52.947917659671354],[-120.35909466262804,52.94796048135614],[-120.3591941216139,52.948000102607494],[-120.3592781965056,52.9480429152232],[-120.35937706236129,52.9480870042496],[-120.35947585364289,52.94813165615114],[-120.35956007744687,52.94817335157914],[-120.35964296492686,52.94822510873062],[-120.35971113651333,52.9482750264347],[-120.35980948349327,52.94832302900099],[-120.35989415308545,52.94836137323526],[-120.35999316867758,52.948404344752475],[-120.36007709562871,52.94844828270666],[-120.36017603802429,52.948491808091624],[-120.3602750542046,52.94853477936842],[-120.3603595751015,52.94857424918271],[-120.3604585180789,52.94861777432702],[-120.36054266904209,52.94866003199987],[-120.36064146287713,52.94870468290815],[-120.36072613397836,52.94874302653537],[-120.36082500296087,52.94878711432742],[-120.36088164795073,52.94881119032923],[-120.36096616995927,52.948850659701534],[-120.36106511419983,52.94889418432898],[-120.36116457720267,52.948933803893794],[-120.36124865473501,52.94897662401436],[-120.36134759955738,52.94902014840106],[-120.36144706311767,52.94905976772432],[-120.36153114118314,52.9491025876399],[-120.36163119837879,52.94913773886573],[-120.3617305889135,52.949177911971184],[-120.3618302015121,52.94921641398192],[-120.36193018447399,52.94925212791184],[-120.3620141898447,52.94929550150236],[-120.36211313619158,52.949339025237535],[-120.36219721547907,52.94938184467024],[-120.36229556900794,52.94942983619232],[-120.36237913020352,52.949476560474906],[-120.36246209839275,52.949527752640435],[-120.36253020063207,52.94957823163408],[-120.36262862854394,52.94962566884725],[-120.36271219048982,52.949672392887926],[-120.36279671590687,52.94971186092584],[-120.3628962571698,52.94975091604746],[-120.36299616873325,52.94978718308604],[-120.36311287437026,52.94980964225488],[-120.36321412076587,52.949835856228894],[-120.3633306783756,52.94985943216786],[-120.36343007101428,52.94989961275738],[-120.36349824972596,52.94994952821841],[-120.36356531597833,52.95000782550859],[-120.36361647819311,52.95007322869285],[-120.36363709176663,52.9501433538066],[-120.36365755832574,52.95021458696485],[-120.36369355798139,52.95028151110994],[-120.36371469131205,52.95034772227933],[-120.36372043871779,52.95041713440297],[-120.36374046074631,52.950491718495364],[-120.36374687600971,52.950556099703185],[-120.3637371638894,52.95062926680449],[-120.36372782299956,52.95069963696709],[-120.3637190016128,52.95076609320483],[-120.36369405270601,52.950841335328555],[-120.36367058641693,52.95090540757888],[-120.36364645224278,52.950974510728784],[-120.36362217090407,52.9510447219213],[-120.36361327455126,52.95111174109827],[-120.36360378507737,52.95118322821668],[-120.36360908759494,52.951255991269065],[-120.36361490968093,52.951324840398534],[-120.36362065824208,52.95139424354998],[-120.36362648036572,52.95146309267323],[-120.36363163468317,52.951536972698165],[-120.36365299154428,52.951601503881264],[-120.36365807238086,52.95167593792395],[-120.36366396814734,52.95174423300849],[-120.36368443552145,52.951815466092846],[-120.3637203618444,52.95188295312559],[-120.36375688255521,52.951945963265246],[-120.36379273556072,52.95201400429554],[-120.36379796496234,52.95208732132768],[-120.36384972311595,52.952148256384895],[-120.3639018514973,52.95220640342037],[-120.36396847705748,52.95226805135856],[-120.36403562233457,52.95232578533794],[-120.36410313786169,52.952380731279966],[-120.36418618732613,52.95243136811564],[-120.364269089914,52.95248311294139],[-120.3643360864935,52.95254197266396],[-120.36437260868179,52.95260498258745],[-120.36443960559637,52.952663842246864],[-120.36452280545437,52.952713352914294],[-120.36459024750613,52.952768861525264],[-120.36467329949384,52.952819489069554],[-120.36475627696178,52.952870679515],[-120.36483984761692,52.95291740195409],[-120.3649239367195,52.95296021934725],[-120.36502274632258,52.95300485752763],[-120.36512237085954,52.95304335666436],[-120.36520631225754,52.95308729083938],[-120.36530527068734,52.95313081179257],[-120.36537286265542,52.953185202954295],[-120.36547122855777,52.953233191713565],[-120.36557144695077,52.95326722251649],[-120.36567136905134,52.953303487208245],[-120.36575545975371,52.95334630399764],[-120.36583792136567,52.953401398652666],[-120.36589027692405,52.9534578648147],[-120.36594144686114,52.95352326685201],[-120.36599261695555,52.95358866886452],[-120.36602899309149,52.95365280415779],[-120.36607957060778,52.953722674077476],[-120.36611602169042,52.953786246377014],[-120.36615239936701,52.9538503726887],[-120.3662037183936,52.9539146576089],[-120.36623957697093,52.95398269781312],[-120.3662600485482,52.95405393928901],[-120.36628126244595,52.95411958688461],[-120.36628634818119,52.95419402070018],[-120.36630756100367,52.954259677221266],[-120.36632862686459,52.95432644178755],[-120.36634924696878,52.95439656624572],[-120.36638518088367,52.954464043424025],[-120.36640513478923,52.95453918984199],[-120.36642619975599,52.954605963315416],[-120.36644741418533,52.95467161085903],[-120.36646788644208,52.95474285226916],[-120.3664885081633,52.954812967749405],[-120.36649418718521,52.95488293357531],[-120.36651480783196,52.954953057980845],[-120.36652078333599,52.95502078982514],[-120.36651122436301,52.955092831033916],[-120.36651705167029,52.955161679859756],[-120.36650756617209,52.95523316703657],[-120.36649808064199,52.955304654209414],[-120.36648933614072,52.95537055644349],[-120.36646498228524,52.95544133099631],[-120.36644070186284,52.95551155151552],[-120.36643136437272,52.955581921684185],[-120.36640782607653,52.955646548321155],[-120.36638302727913,52.95572067380515],[-120.36634461926495,52.95578459673516],[-120.36632033963375,52.95585480827911],[-120.3662962816582,52.95592334880349],[-120.3662725935622,52.95598910132226],[-120.36624838721296,52.95605875881752],[-120.36623897576688,52.95612968297277],[-120.36620004898087,52.95619751082339],[-120.3661617149661,52.9562608707144],[-120.36612286145655,52.95632814450903],[-120.36608386078362,52.95639652633801],[-120.36606039502954,52.956460598848764],[-120.36603626158573,52.956529702255594],[-120.3660119810204,52.95659991370436],[-120.3659730534423,52.95666774146059],[-120.36596364021666,52.95673867450356],[-120.36593987762976,52.95680498094772],[-120.36591515205099,52.95687854332055],[-120.36590625809035,52.956945562433795],[-120.36588205059712,52.95701521981339],[-120.36585791654905,52.95708432316058],[-120.36584842951461,52.9571558102009],[-120.36585492368337,52.95721962807344],[-120.36589011684015,52.957292699147835],[-120.36592597776313,52.95736073930828],[-120.3659936519541,52.95741456701409],[-120.36607775229243,52.957457374530975],[-120.36617560947734,52.95750927649329],[-120.36625911609713,52.95755656075448],[-120.36634277231207,52.95760271903411],[-120.36642613107935,52.95765112015954],[-120.36651023232045,52.957693927361504],[-120.36661046205246,52.95772795718843],[-120.36672585745252,52.95776046553872],[-120.36682764314351,52.957782771298085],[-120.36694303885822,52.95781527943445],[-120.36704430666558,52.95784148998855],[-120.36714490827431,52.957872722424824],[-120.3672454353374,52.95790451773555],[-120.36734507335922,52.95794301487797],[-120.36744448867438,52.957983191882704],[-120.3675446463311,52.9580177749341],[-120.36764398850661,52.958058505793986],[-120.36772816528024,52.95810075809054],[-120.36779599111603,52.958153467750044],[-120.36786233526045,52.95821734723681],[-120.36791410669315,52.958278280281576],[-120.36801942819342,52.95838674245371],[-120.36813835946965,52.958505415783264],[-120.36825714441781,52.9586251970356],[-120.36837541083192,52.958748892081985],[-120.36849427062046,52.95886811905192],[-120.36861305639806,52.95898790885478],[-120.3687473062768,52.9591039339691],[-120.36888200019062,52.95921661689592],[-120.3690320836333,52.9593260980257],[-120.36918327960767,52.95942719708184],[-120.36934867876671,52.959534039099346],[-120.3694989126782,52.95964240262564],[-120.36963405472218,52.959751733692464],[-120.3697681616542,52.9598688745776],[-120.36991839781668,52.95997723754696],[-120.3700684119501,52.96008728026809],[-120.3702195384346,52.960188940909724],[-120.37038627630041,52.960285728525974],[-120.37053681175618,52.960391856702365],[-120.37070288519472,52.96049366583945],[-120.3708694772393,52.96059156974271],[-120.37103643973633,52.96068668539972],[-120.37120318141163,52.96078347183059],[-120.37136918332975,52.96088584296674],[-120.3715197980034,52.96099140688599],[-120.37167033878417,52.9610975335686],[-120.37183649114402,52.961198787037254],[-120.37198718153716,52.961303796312066],[-120.37213720570006,52.9614138363105],[-120.37228834184108,52.96151549421655],[-120.37245434922714,52.961617863778365],[-120.37262154199792,52.96171129717656],[-120.37280412493006,52.961801528208895],[-120.37298767046181,52.96188450298131],[-120.3731855685673,52.96197210316331],[-120.37338568948734,52.962042939204984],[-120.37360223570995,52.96210276267317],[-120.37383779847725,52.96213202165647],[-120.3740374089568,52.96209380564985],[-120.37421482851136,52.96199719050272],[-120.37437907833254,52.9618870225258],[-120.37456936797389,52.96180620231148],[-120.37478606713002,52.961751941723016],[-120.37501637883187,52.96170788224265],[-120.37524365656303,52.961686716214544],[-120.37546730751745,52.961692920569114],[-120.37570227732867,52.96172664380741],[-120.37592119298789,52.96176859111646],[-120.37615586761542,52.9618045474375],[-120.37637360032168,52.96185542986202],[-120.37659140694177,52.96190575785287],[-120.37680928865109,52.96195552247374],[-120.3770282811508,52.961996904754116],[-120.37724779131976,52.96203438160818],[-120.37746789366427,52.96206739006739],[-120.37770419859953,52.962091056338885],[-120.37793976412296,52.96212030712027],[-120.37816045916611,52.96214884629658],[-120.37838130242898,52.96217626806161],[-120.37861746055975,52.962201049497075],[-120.37885302732023,52.962230298450315],[-120.37907372354671,52.96225883591388],[-120.37929390182772,52.96229128692594],[-120.37952887797725,52.96232500251972],[-120.37974839204213,52.962362474707064],[-120.37996731496294,52.96240441448119],[-120.3801858692141,52.96244914187804],[-120.38040361003974,52.96250001683436],[-120.38062164711828,52.9625486573869],[-120.3808387975324,52.962603999535304],[-120.38105498686237,52.96266660625198],[-120.38125571555281,52.96273296089351],[-120.3814399463009,52.96281090041561],[-120.3816378673033,52.962898477413425],[-120.38182084345345,52.962985906371614],[-120.38200507633243,52.963063844998146],[-120.38218827628043,52.96314959340707],[-120.38238782525933,52.96322489104754],[-120.38258914993106,52.9632867753882],[-120.38280475406113,52.96335384687545],[-120.38300600545526,52.96341629346804],[-120.38322279448934,52.963474419230764],[-120.38342404706762,52.9635368651047],[-120.38363965378167,52.96360393505391],[-120.38384039092688,52.963670285253855],[-120.38405769903409,52.963724504428406],[-120.38427670650901,52.96376588212628],[-120.38449623219144,52.96380334543429],[-120.38473122081624,52.96383705062082],[-120.38495192932172,52.9638655770447],[-120.38518765740555,52.96389369629755],[-120.38540777553052,52.96392668988528],[-120.38564453842754,52.96394698918812],[-120.38586709537253,52.96396154686203],[-120.386105040499,52.96397290919483],[-120.3863281141705,52.96398356094535],[-120.38656724126274,52.96398598629588],[-120.38680577754764,52.96399287918767],[-120.38702885149932,52.96400352961119],[-120.3872673879574,52.96401042156836],[-120.38751998322054,52.96402417100515],[-120.38796506881243,52.96394031409972],[-120.38841103746438,52.96384976239192],[-120.38885685774483,52.96376031706439],[-120.38929038777822,52.96365061710931],[-120.38970904409207,52.96354020587659],[-120.39012946966581,52.96341638901405],[-120.39054871192843,52.96330150673659],[-120.39096979629274,52.96317266477178],[-120.391363645569,52.96302340420236],[-120.39172988876732,52.96285653123416],[-120.39211100031818,52.96269036648481],[-120.3924778279359,52.96251902310069],[-120.39283125692747,52.962335799121455],[-120.3931974884486,52.962168921521666],[-120.39360427264864,52.962034892751326],[-120.39403954299276,52.96191177100689],[-120.39445757986572,52.96180581085302],[-120.39490469340288,52.9617062893692],[-120.39534981333168,52.961621850406935],[-120.39578072360933,52.96153167872888],[-120.39621296031498,52.9614314433518],[-120.39660684820385,52.9612816110553],[-120.39698792659465,52.96111543037156],[-120.39738180882797,52.96096559545545],[-120.39781337208011,52.960870385239446],[-120.39827150510631,52.96080061109969],[-120.39872845873448,52.96073976242976],[-120.39960231719967,52.960581315648454],[-120.40006507464948,52.96058987172148],[-120.40052783228538,52.96059842597675],[-120.40099184177565,52.96059748815508],[-120.40145636742734,52.96059263444195],[-120.40192266057198,52.96057437456213],[-120.4023796065469,52.96051351172149],[-120.40280011259962,52.960388532389096],[-120.40319330434707,52.96024370907644],[-120.40358664185,52.96009775847233],[-120.4039946986996,52.95995364038421],[-120.40438876693345,52.95980210192102],[-120.4047826109386,52.959652242142106],[-120.40516217068424,52.95949720517582],[-120.40555615634251,52.95934622575021],[-120.40593644648726,52.95918560109349],[-120.40631680676115,52.95902442114444],[-120.40667007411584,52.95884170931401],[-120.40700964447106,52.95864936156235],[-120.4073906586441,52.958483146964966],[-120.40778396546918,52.95833718219091],[-120.40820443413298,52.95821218340333],[-120.40862357628814,52.958097236447166],[-120.40904330459406,52.95797781983736],[-120.40947657654085,52.95786916226001],[-120.40990999335487,52.9577593860421],[-120.41031682980022,52.957624182170576],[-120.41069642540121,52.95746856419455],[-120.41107726754689,52.95730345459536],[-120.41143057309735,52.957120174246164],[-120.4118249555787,52.95696582251119],[-120.41222994123432,52.95684457053434],[-120.41266378151947,52.956731432986],[-120.41311079794967,52.95663185103836],[-120.41354103328203,52.95654607336953],[-120.4140108770225,52.95650040245866],[-120.41447609122778,52.95648991216486],[-120.41493821938046,52.95650287801938],[-120.4154003478148,52.95651584206082],[-120.41586130117159,52.9565377406734],[-120.41633661090049,52.95656424900256],[-120.41679639009928,52.9565950803443],[-120.4172538198257,52.956643782686335],[-120.41771066311178,52.95669695145159],[-120.41818237712317,52.956750824528875],[-120.41863863532735,52.95680845789475],[-120.41910858972066,52.956875731874824],[-120.41954719118297,52.95695387973284],[-120.41998293080769,52.95705381295284],[-120.42038746609934,52.957163494543124],[-120.42070605643575,52.957357902107226],[-120.42097402277074,52.95759598186836],[-120.42124206490926,52.95783350692678],[-120.42154249221166,52.95805233569154],[-120.42184350968,52.95826669544379],[-120.42214386916719,52.95848608561288],[-120.42244540696255,52.95869652961215],[-120.4227309021724,52.958915212680765],[-120.42303156546966,52.959132357454195],[-120.42331714057123,52.95935047604865],[-120.42361758925999,52.95956929932027],[-120.42393445174481,52.95977710253612],[-120.42425183140232,52.959980990708715],[-120.42455339022123,52.96019142912166],[-120.42483810004944,52.96041624622689],[-120.42502947913013,52.960668108926065],[-120.4252040084212,52.96093435081472],[-120.42531773585091,52.961207816263304],[-120.42543161025503,52.96148017343667],[-120.42556131159945,52.96174597027119],[-120.42567460345239,52.96202278641037],[-120.42578833564382,52.9622962601613],[-120.42591855566035,52.962558142305916],[-120.4260930255207,52.962824936633574],[-120.42629988147144,52.96307303375918],[-120.42655318858873,52.96330928682742],[-120.42683727048923,52.96353912096437],[-120.42709058336663,52.96377537281066],[-120.42728213754289,52.96402611428229],[-120.42742724442354,52.96428869941764],[-120.42754106784827,52.964561608105654],[-120.42765423227202,52.96483954786424],[-120.42776813253208,52.96511189324544],[-120.4278818864428,52.965385364465405],[-120.42799622952028,52.96565435836595],[-120.42812485930499,52.965928534102815],[-120.42826983125067,52.9661922349559],[-120.42847561601606,52.966448710151845],[-120.42869789047134,52.96669359313731],[-120.42895123246959,52.96692984053358],[-120.42918919133795,52.96716928789457],[-120.42944195366799,52.96740999346086],[-120.42968006458058,52.967648322703795],[-120.42991759180171,52.96789111966303],[-120.43015512173466,52.96813391610783],[-120.43040789409099,52.968374628398436],[-120.43066191576467,52.968605840647676],[-120.43094656763911,52.96883175890631],[-120.43126580717771,52.969022222366526],[-120.43166462345938,52.9691765467841],[-120.43206468762675,52.969321379298954],[-120.43246416840466,52.96947067868297],[-120.43286467761693,52.96961215727622],[-120.4332657755276,52.96974916625286],[-120.4336822626124,52.96988297273007],[-120.4340993394396,52.970012300541306],[-120.43451758944681,52.97013269930565],[-120.4349186975911,52.97026970261273],[-120.43528529974776,52.97044159678368],[-120.43557035400887,52.970664715433315],[-120.43585511954363,52.97089005855352],[-120.43615681194953,52.97110047481329],[-120.43645748350212,52.971318700783485],[-120.43675808434314,52.97153748895818],[-120.43702842494851,52.97175878313535],[-120.43734376065328,52.971979390520325],[-120.43759791535102,52.97221002431346],[-120.43768236722921,52.97247928051288],[-120.4376748581348,52.97276498509819],[-120.43766749651492,52.9730495636334],[-120.43766013362527,52.97333415105598],[-120.43765394306051,52.97360979298355],[-120.43763163146446,52.973894230751746],[-120.43761012423712,52.974172529087575],[-120.43757330257108,52.97445346599723],[-120.43752167684747,52.97473314514983],[-120.4374701230672,52.97501227017005],[-120.43740427907164,52.97528621428603],[-120.43733740810576,52.97556798669049],[-120.43727126954637,52.97584416476427],[-120.43720432419404,52.97612649106141],[-120.43712315953086,52.976403091281234],[-120.43704214141641,52.97667856540193],[-120.43696119488463,52.97695348535939],[-120.43687951510975,52.97723399051733],[-120.4367984200269,52.97751002733157],[-120.436673204131,52.97778004758726],[-120.43647550502718,52.97803201814993],[-120.4362490001551,52.9782753243427],[-120.4359935426918,52.978511083061406],[-120.4357232786529,52.978745574335946],[-120.43548196185574,52.978987612091444],[-120.43529890749275,52.97924196444241],[-120.43517367697454,52.97951198282459],[-120.43506259147628,52.97978828132009],[-120.43493735784843,52.98005829936282],[-120.43478317278561,52.98032076100005],[-120.43462854628939,52.98058657356013],[-120.43445969948294,52.980846650641254],[-120.43426131307137,52.981103648240804],[-120.4340481923364,52.98135882434257],[-120.43384994758189,52.981614704117206],[-120.43372528702648,52.98188025236305],[-120.43365882210443,52.98215866147064],[-120.43365201697462,52.9824387788769],[-120.43370487516006,52.982720586718564],[-120.43378859055954,52.982995429273736],[-120.43391782362647,52.98326568167879],[-120.43406237715594,52.98353328681055],[-120.43422225141028,52.98379824461364],[-120.43439737279584,52.98406111802179],[-120.43457249751911,52.984323982192045],[-120.43474776975633,52.9845857379445],[-120.43487759982682,52.98485152083007],[-120.4349915999688,52.985123855955],[-120.43507547493333,52.98539758014884],[-120.43512863808928,52.98567716168503],[-120.43518136357464,52.98596008537119],[-120.43521928225152,52.986241751007505],[-120.43524246766546,52.986521595614704],[-120.43525099219401,52.986799065144496],[-120.43524346540308,52.98708475818773],[-120.4352520638956,52.987361664630285],[-120.43524460968527,52.98764680352028],[-120.4352677960322,52.98792664788767],[-120.43530564319049,52.98820887615923],[-120.43546620268093,52.9884688003383],[-120.43570387927612,52.98871158260191],[-120.4359727859064,52.98894460149249],[-120.43625811434036,52.98916659895458],[-120.4365757725099,52.989370450324266],[-120.4369254675122,52.98955838945117],[-120.43729151059227,52.98973586959123],[-120.43764165115374,52.98992045539575],[-120.43791174770607,52.99014453327435],[-120.43816520802257,52.99038131159486],[-120.43843421134311,52.99061377058026],[-120.43870424384494,52.990838400608965],[-120.43902192623713,52.991042245183955],[-120.43937157200983,52.99123073986237],[-120.43973705405057,52.99141268044763],[-120.44010488285544,52.991576738068204],[-120.44050401543754,52.99173047642298],[-120.44088936595449,52.99187513676192],[-120.44128894329874,52.99202552126574],[-120.44168984074958,52.99216585089519],[-120.44209066825559,52.99230673320979],[-120.44250645347867,52.992447763089324],[-120.44292487546086,52.99256868445482],[-120.44334505569532,52.99267619963044],[-120.44378107110734,52.99277715972873],[-120.44423387431307,52.99286429028717],[-120.44467186924835,52.99295016231597],[-120.44510957339833,52.993038266833125],[-120.4455634047993,52.993117581788795],[-120.44601906665541,52.99318292726313],[-120.44647582731466,52.99323988854425],[-120.44693193057597,52.99330187930123],[-120.44763804618199,52.99339871277767],[-120.442665498624,53.0020927309927],[-120.44335477979303,53.0058630081444],[-120.44450883714619,53.00803053083985],[-120.45580101088828,53.0111446893542],[-120.45725638322341,53.0159410785913],[-120.4574931690191,53.024215381538006],[-120.45414583773189,53.03376459285127],[-120.4498142660667,53.04074414761551],[-120.4433220919037,53.049438524586584],[-120.43388712322522,53.058821434172266],[-120.4223472283608,53.065246516184544],[-120.4157558832078,53.07325501514711],[-120.41570117462646,53.084020959184485],[-120.41606537389583,53.09741364493472],[-120.41732438184032,53.10300410743055],[-120.41820062823379,53.107514863102146],[-120.42097831162921,53.110362766345276],[-120.43705730057367,53.11689879898301],[-120.44514694358502,53.11728268996732],[-120.45302621516699,53.11720994471486],[-120.45769217928364,53.11873623590527],[-120.45732472396423,53.12016484015962],[-120.45535883650263,53.12668196841566],[-120.45349010415396,53.131766766785105],[-120.45446761292611,53.13519552032072],[-120.45676092398368,53.13901869664365],[-120.46079232050036,53.145062598911416],[-120.4656898441216,53.15161720062951],[-120.4696109163248,53.15702949324633],[-120.4707696844726,53.158857707131325],[-120.47352886252554,53.15937004755062],[-120.48999977579764,53.1626376588545],[-120.5047564377638,53.16499996175401],[-120.50932188827322,53.165385845430954],[-120.51254234640315,53.162005691632714],[-120.51603133712356,53.15794231926725],[-120.52056424740815,53.15347329470969],[-120.52308937533648,53.149413921364484],[-120.5263889647906,53.14540445747242],[-120.53249881320889,53.14824066542282],[-120.53832281067756,53.15096890281284],[-120.53995376204371,53.15381659131023],[-120.54210561217452,53.16101190365096],[-120.54057228963772,53.17066812577],[-120.5404908910253,53.174206372181544],[-120.54233729645235,53.178886015721396],[-120.54581971521432,53.18487607598207],[-120.55124925510161,53.1867429247635],[-120.55918042669143,53.189861285607385],[-120.56822652397976,53.190519407062624],[-120.57421707751148,53.19072537043344],[-120.58076621161376,53.18927506047958],[-120.58781471736822,53.18897093596365],[-120.59221871888215,53.19169732574339],[-120.60283747121177,53.197826591540974],[-120.61087412701715,53.20334328536866],[-120.61806918834202,53.20863113233548],[-120.62638761696813,53.212202058672986],[-120.634995424694,53.21599330946712],[-120.64351620167582,53.22024452196074],[-120.65202165869977,53.22415446806657],[-120.65977223739611,53.22737968190713],[-120.66522876876229,53.2295869352177],[-120.67060973842965,53.23442240109647],[-120.67178227574063,53.23682113360805],[-120.67344092813225,53.239664168266145],[-120.67691985697525,53.24491022934825],[-120.68449874942222,53.25001893526254],[-120.69064422341509,53.253366314887366],[-120.69313850553216,53.25592847386119],[-120.69995894724619,53.2596706672675],[-120.7068552571565,53.26329783248027],[-120.71214100052282,53.26716105062752],[-120.71560547733729,53.26897219401078],[-120.72311546576704,53.26808126616526],[-120.73101666488385,53.26610686597198],[-120.7352832949626,53.264999549237004],[-120.73735292253714,53.26242109545427],[-120.74226759509685,53.25937464447085],[-120.74548926486598,53.25769934170088],[-120.75280589297229,53.255434226582814],[-120.75792937706544,53.25432649470572],[-120.76070219619297,53.25431551294853],[-120.7683355075092,53.25519108481407],[-120.77875830435404,53.25811297422093],[-120.78881494452231,53.261204818946105],[-120.79466568672892,53.264207607637545],[-120.80039748336753,53.27172301636122],[-120.80439492448805,53.278042582436164],[-120.80714224716293,53.28448689914986],[-120.8153412787644,53.28375397397772],[-120.82848020935961,53.28243298093601],[-120.83344461272418,53.28275285341829],[-120.84282153507144,53.28470131644295],[-120.84666077486872,53.28633646589936],[-120.85400239553161,53.28595450884366],[-120.86087339371512,53.28596956031592],[-120.867398602657,53.28845168058016],[-120.87432222143997,53.2928686139334],[-120.87811382735673,53.29701837511626],[-120.87995593572536,53.299351192733525],[-120.89981741288653,53.299924148900494],[-120.90530090315828,53.30257707137162],[-120.91059615713904,53.30591971210804],[-120.91414836555538,53.30709535545066],[-120.91880046304182,53.30615527683244],[-120.92268940340604,53.30441464725941],[-120.93095575336103,53.30225290545569],[-120.93627376806562,53.30090709389989],[-120.94110745141248,53.29882099900886],[-120.93944865390824,53.29694300345075],[-120.93463041244097,53.29388714861078],[-120.93172693351782,53.2913335772234],[-120.93072482104813,53.28813733456719],[-120.93070933737175,53.28751441782314],[-120.93278661223034,53.285781403881025],[-120.93561931879125,53.28428169278531],[-120.9391320952084,53.28288958612274],[-120.9457762628533,53.28101770196503],[-120.95032472993842,53.2799053208636],[-120.95083729025951,53.27902299487773],[-120.95941682502863,53.277084575114635],[-120.96208556612068,53.27719525352489],[-120.96498800482287,53.27812447411363],[-120.96768618886082,53.27836768454969],[-120.97627568443474,53.276589675916],[-120.97624261613947,53.27762551482514],[-120.97448776635255,53.282612619321746],[-120.97940428442612,53.28776452736009],[-120.9771296524557,53.2910426649518],[-120.97676190820115,53.292736515486936],[-120.97629803638985,53.29776428375855],[-120.97598045906217,53.30282856506842],[-120.97691071689596,53.304509450096724],[-120.98324499463861,53.30702385180509],[-120.98513421323024,53.30799888835838],[-120.98572170092699,53.31370226242645],[-120.9871318264602,53.31477772665343],[-120.99124393214159,53.315198521601594],[-120.99274272954122,53.31654439915016],[-120.99390177705959,53.319226465070365],[-120.99536702070634,53.31996832742897],[-120.99659844279562,53.32026679667177],[-120.99813385088812,53.3216882570749],[-120.99812893490899,53.323380006277034],[-121.00010388225371,53.32491205556288],[-121.0048010087032,53.32613192098167],[-121.01313007390779,53.32763737766385],[-121.01303879763546,53.33007905869866],[-121.01245687935894,53.33039097052558],[-121.01224927121449,53.33051981809078],[-121.01207894541925,53.33066821083009],[-121.01191223978121,53.33081786963958],[-121.01174378796556,53.330966340748994],[-121.01156628471358,53.33111161894919],[-121.01137811848183,53.33125139028056],[-121.01118814031057,53.331390528130555],[-121.01099460625385,53.33152783608497],[-121.01080281593306,53.33166633118331],[-121.01063254717859,53.3318141585353],[-121.01047843581097,53.33196884650974],[-121.01035529616173,53.33213268921219],[-121.01031171530317,53.3323094277756],[-121.01032623679178,53.33248917537435],[-121.0103672946216,53.332667783539115],[-121.01042369506862,53.33284423351885],[-121.01048391461333,53.33302028695764],[-121.01054607789482,53.33319585601568],[-121.0106312892816,53.33336790167027],[-121.01073767255215,53.33353634498173],[-121.01086549286721,53.333698950859194],[-121.01099519066565,53.33386163547275],[-121.0110707577796,53.33403552135509],[-121.01103468400554,53.33421257555791],[-121.01092615472245,53.33438040230934],[-121.01081581375344,53.33454759576924],[-121.01071465534181,53.3347168643152],[-121.01058601143635,53.33487935284046],[-121.01041579465644,53.33502662535609],[-121.0102508756601,53.33517692363322],[-121.01012960231742,53.33534084473756],[-121.01003762387958,53.335512178945955],[-121.0099548950791,53.33568502510075],[-121.00987585198838,53.33585859221988],[-121.00980056249026,53.33603230814278],[-121.00972889200511,53.33620730827161],[-121.00966841484373,53.33638333607641],[-121.00964158373698,53.336561901701685],[-121.00960905680923,53.336740784866386],[-121.00952826619724,53.336913155239706],[-121.00941603641701,53.33708026827879],[-121.00930749330708,53.33724809331172],[-121.0092545852343,53.337423882181184],[-121.0092464525872,53.33760379105237],[-121.00922705879874,53.33778323535943],[-121.00917395146094,53.337960695945924],[-121.00906366096538,53.3381273242538],[-121.00887907490417,53.338268375426054],[-121.0086364014109,53.33837440502262],[-121.00835237523592,53.33843153434459],[-121.00807137315746,53.33849496269702],[-121.00784975856985,53.3386142304977],[-121.00767576373065,53.338761340942234],[-121.00751082035357,53.33891163513751],[-121.00735311753421,53.3390644798912],[-121.00720446629101,53.33922050846314],[-121.0070503152664,53.339375191420196],[-121.00689442001992,53.339528668764],[-121.00677493102664,53.339693228265865],[-121.00672569706926,53.33986972798656],[-121.00668008363068,53.34004750309039],[-121.00659545538946,53.340220267560994],[-121.0064924564701,53.340388889853536],[-121.00637289663479,53.34055401210522],[-121.00622973427812,53.34071139372994],[-121.00606658807534,53.3408623279615],[-121.00590344176517,53.341013253017756],[-121.00574746944089,53.34116729195622],[-121.00559705958877,53.34132213081768],[-121.0054465170574,53.341478078044055],[-121.00531783114795,53.34164056925957],[-121.00525739462122,53.341816031119436],[-121.00518958178023,53.341990068453846],[-121.00503735694245,53.34214426434219],[-121.00486514878104,53.342292003678104],[-121.00470018156608,53.342442293709304],[-121.00452803786743,53.34258946931204],[-121.00432732118357,53.34272309717109],[-121.00410695308716,53.342847469978494],[-121.00395693031298,53.34299894518092],[-121.00389816351878,53.34317616595568],[-121.00390689799815,53.34335679387124],[-121.00400583881954,53.343524363150934],[-121.00416890748599,53.34367610480839],[-121.00435401606282,53.34381698580884],[-121.00456310948745,53.343946512877146],[-121.00478446026693,53.34406813665989],[-121.00500949935751,53.34419048120791],[-121.00514704681207,53.34435068904121],[-121.00504220105799,53.34450295241778],[-121.00478835289364,53.34460738244166],[-121.00452536331812,53.34469346685663],[-121.00425197377683,53.3447718084829],[-121.0040360789872,53.34489018827614],[-121.0038835740791,53.345046617472065],[-121.00373126654692,53.345201374675376],[-121.00356809507842,53.345352296201035],[-121.00341203127992,53.34550689496443],[-121.00334252745844,53.34567917119568],[-121.00338557826294,53.34585674210088],[-121.00348807734694,53.34602615033965],[-121.00360806716299,53.34619124521331],[-121.00372611506171,53.346356815232404],[-121.00382486263508,53.34652606513642],[-121.00390430967651,53.34669899497242],[-121.00397404085508,53.34687431904099],[-121.00404383842806,53.34704908877225],[-121.00413092835956,53.34722121689391],[-121.00424321725083,53.347387666832965],[-121.00434578931659,53.34755651992225],[-121.00440412845249,53.347732487217954],[-121.00443190251656,53.34791166958384],[-121.00445210253167,53.34809109025004],[-121.00446472840142,53.348270749220475],[-121.00447742018955,53.34844985389236],[-121.00449567664143,53.34862975873513],[-121.00451594414447,53.34880861610553],[-121.0045361449473,53.34898803667771],[-121.00455252471619,53.34916786247536],[-121.00455382141512,53.3493476106326],[-121.00455511812511,53.34952735877376],[-121.00457531943924,53.34970677927525],[-121.00460698367559,53.34988499295833],[-121.00464810002515,53.35006304726929],[-121.00469297115193,53.35024125952197],[-121.0047436728193,53.3504180369148],[-121.0048038948088,53.350594082749396],[-121.00487557922294,53.35076893065391],[-121.00495309445847,53.35094234366298],[-121.00501713838901,53.35111799302643],[-121.00504686142253,53.351296690707805],[-121.00505191483668,53.35147659663016],[-121.00504945917957,53.35165618661611],[-121.00505632412616,53.35183672576685],[-121.00514570341136,53.35200557921371],[-121.00526967089223,53.352169149156495],[-121.00536642830403,53.352339435816795],[-121.005457421876,53.35251060296439],[-121.00556188860187,53.35267953354951],[-121.00566441303047,53.35284893933897],[-121.00568307551319,53.35302548216411],[-121.00565226269411,53.353205568192486],[-121.00566858306262,53.35338594774106],[-121.00580890218548,53.353538973763335],[-121.00599768271431,53.35368111801228],[-121.00608894706203,53.35385004956111],[-121.00611478913827,53.354029706307585],[-121.00611421525659,53.35420937505171],[-121.00607602646444,53.3543880277307],[-121.00600994258198,53.35456325197165],[-121.00593829169854,53.354737684982794],[-121.00586094108239,53.35491244425456],[-121.00570175984261,53.355061290915586],[-121.00549206518834,53.35519060934601],[-121.00528585876528,53.3553223203496],[-121.00511017391082,53.35546711184387],[-121.00499237751602,53.3556328647301],[-121.00494311746759,53.35580936231601],[-121.0049292635712,53.35598959552305],[-121.00488362510335,53.356167368515244],[-121.00477675955972,53.356336384300995],[-121.00457476421633,53.35646434519197],[-121.00432305157857,53.35656606331613],[-121.0041299114523,53.356698879443584],[-121.00399366394576,53.35686105202124],[-121.00379689912876,53.356992592098486],[-121.00359074442399,53.35712374576742],[-121.00349707979377,53.35729275906486],[-121.00350782681387,53.3574723383142],[-121.00352809331514,53.357651204010246],[-121.0035180547619,53.357831031678714],[-121.00350043898726,53.358011106531215],[-121.00345465956056,53.35818999629342],[-121.00327579919798,53.35832959366246],[-121.00315622366826,53.35847842404984],[-121.0032333477667,53.358655190004185],[-121.00335920498281,53.358818840409384],[-121.00351448878509,53.35897305505649],[-121.00369168789634,53.35911752676771],[-121.00386674514127,53.35926415419738],[-121.00401425543113,53.35942029609497],[-121.00414407284732,53.359582422886774],[-121.00428562108944,53.3597411167101],[-121.00444694171298,53.35989222349791],[-121.0046180509599,53.36004036356096],[-121.0047793080964,53.36019202415363],[-121.00493051452486,53.36034887708949],[-121.00501971177307,53.36051941063513],[-121.00493019881615,53.3606852302501],[-121.00473624543066,53.36082475206783],[-121.0045318867612,53.3609565403826],[-121.00431866923344,53.36108346340151],[-121.00410551625657,53.361209831752824],[-121.00389753106917,53.36134034346877],[-121.00373818586291,53.36149030452406],[-121.00366805911906,53.36166761277675],[-121.0035380248592,53.361824988246745],[-121.00326240772297,53.3618734718681],[-121.00295954312683,53.36184949726811],[-121.00266038631423,53.36184196706488],[-121.0023606043451,53.36187146246541],[-121.00210635954917,53.3619624058748],[-121.00195573034398,53.36211834708685],[-121.00198228969515,53.3622918622631],[-121.00211754168721,53.36245590882884],[-121.00221605495788,53.362627393705054],[-121.00216582685607,53.36279598806483],[-121.0019768239504,53.36294132977165],[-121.00184302387656,53.3630985452336],[-121.00183686415076,53.36327742178662],[-121.00189119338292,53.36345546586917],[-121.00198802892724,53.36362520005384],[-121.00220178449521,53.363763907017415],[-121.00221293567682,53.363892407359266],[-121.00197468647148,53.36402333185355],[-121.00173178031116,53.3641299092183],[-121.00148564850477,53.36423185804898],[-121.00125488915421,53.364347364385345],[-121.00099176912912,53.364433440144545],[-121.00072858214365,53.36452006959284],[-121.00046707319395,53.36460844927036],[-120.99998984960197,53.3647809715493],[-120.99969757406552,53.36482650032776],[-120.9994392842319,53.36491951475174],[-120.99932197058226,53.36508079129929],[-120.99921874889189,53.36525052270184],[-120.99905554950915,53.36540088226567],[-120.99886718861379,53.365540631411626],[-120.99868587238572,53.365684612241836],[-120.99850113083136,53.365825645374755],[-120.99831269921509,53.36596595682649],[-120.99816022966259,53.36612125956637],[-120.9980792699366,53.36629417392115],[-120.9979235082154,53.36644540248544],[-120.99776191167471,53.36659807424813],[-120.99771508405698,53.36676962276975],[-120.99785274342139,53.36692928298047],[-120.99802975774527,53.3670754343175],[-120.99818129548993,53.36722950605943],[-120.99828382564898,53.367398916995676],[-120.99842738895725,53.367556578781205],[-120.99856887653924,53.36771583305713],[-120.99869681950922,53.36787789499011],[-120.99881101998878,53.36804442744101],[-120.99891167665896,53.36821375869052],[-120.99905323419243,53.3683724580664],[-120.99917327134365,53.36853754665368],[-120.99924684094933,53.36871247547589],[-120.99918828424121,53.36888745670073],[-120.99906311364968,53.369051214573304],[-120.99889802093713,53.36920149456658],[-120.99879854355345,53.369371383414105],[-120.99871751428151,53.36954485219964],[-120.99864023942204,53.36971848801635],[-120.9985944936157,53.369896811665576],[-120.99848635340484,53.3700601630967],[-120.99834480647786,53.3702187294975],[-120.99819970113107,53.370375465787816],[-120.99807452227435,53.370539222500824],[-120.99798241794255,53.37071054439489],[-120.99792372027659,53.370886642308534],[-120.9977514366533,53.37103380603202],[-120.9975120357041,53.37114221329571],[-120.9972245500706,53.371194678042414],[-120.99701481501755,53.37132342622818],[-120.99686775682244,53.37148063597374],[-120.9967298883232,53.37163992177013],[-120.99659926549221,53.371801758806505],[-120.99650903056715,53.371973158566654],[-120.99647641945717,53.37215204394239],[-120.99649471902515,53.37233138470092],[-120.99657995218956,53.3725034370921],[-120.99671367067663,53.372664611696344],[-120.99686898012885,53.37281884290945],[-120.99699297672511,53.372982419803066],[-120.99707814729561,53.37315502605283],[-120.9971116746041,53.37333332771759],[-120.99715466039582,53.37351146166687],[-120.99726310236241,53.37367887531248],[-120.99738120235969,53.37384444938665],[-120.99745873027071,53.37401785637005],[-120.99748273558238,53.37419687983966],[-120.99746891072002,53.3743765473379],[-120.99744569325098,53.37455582826283],[-120.99749639483355,53.37473259768908],[-120.99754890813584,53.374910009385914],[-120.99759196332901,53.37508758876997],[-120.99761214723974,53.37526700819599],[-120.99761153679681,53.375446675022125],[-120.997569603023,53.3756246017006],[-120.99749781540675,53.37579958208986],[-120.99741871270457,53.37597257427377],[-120.99729170283221,53.37613568740573],[-120.9971428164562,53.37629226375019],[-120.99704338119614,53.37646159627123],[-120.99697910347459,53.376636892697796],[-120.99692408310477,53.376813711029904],[-120.99687463149517,53.37699132091494],[-120.99682148968785,53.3771682093373],[-120.99676089975907,53.37734422701217],[-120.99665407979994,53.377512125203445],[-120.996539879348,53.37767858041448],[-120.99652611528163,53.377857693229],[-120.99653495832231,53.378037201121266],[-120.99653622169028,53.37821694681232],[-120.99653366219775,53.378397088529304],[-120.996534925571,53.378576834188806],[-120.9965380674257,53.37875665894598],[-120.99653557387117,53.378936246347116],[-120.99647122323076,53.37911210549582],[-120.99636627612615,53.37928008239839],[-120.99625206974228,53.379446537189736],[-120.99614893346923,53.3796151472591],[-120.99607719911762,53.379789572182574],[-120.99598687791612,53.379961534085865],[-120.99591514230325,53.38013595888221],[-120.99589567318608,53.380315388307146],[-120.99589317679971,53.380494975558456],[-120.99589068039205,53.38067456279394],[-120.9958787241095,53.380854317602775],[-120.99586864735997,53.38103414257874],[-120.99586990797377,53.38121388801434],[-120.99589008748372,53.38139330719626],[-120.99596567751881,53.381567198597445],[-120.99609164094201,53.38173030058694],[-120.99621955098671,53.381892918341165],[-120.99635329791036,53.38205409261195],[-120.99650079420441,53.38221079635075],[-120.99667404378086,53.382357353592795],[-120.9968572197251,53.3824998362135],[-120.9970244368306,53.382649508025025],[-120.99716804741767,53.38280717015529],[-120.99732936490717,53.38295883915634],[-120.99752649420905,53.38309516955808],[-120.99776458845896,53.383204590349095],[-120.99804128788068,53.38327519620171],[-120.9983278291446,53.38332656638468],[-120.99861839436602,53.38337585908433],[-120.9989143304364,53.38342762325427],[-120.99917639354057,53.38336734287557],[-120.99946101882468,53.38332372553741],[-120.99999511376316,53.38335743323024],[-121.00028946838724,53.38337487819447],[-121.00058136520329,53.3834129913167],[-121.0008579378279,53.383484708092205],[-121.00111072248843,53.38358182000493],[-121.00135928531648,53.383682688949925],[-121.00164422043709,53.38373173714211],[-121.0019465400757,53.383729854737375],[-121.00224731364865,53.38372509437075],[-121.00254896898642,53.38372879783771],[-121.00284708467453,53.38374639450961],[-121.00314119769367,53.383781782187675],[-121.00343772014173,53.38381278715585],[-121.00372915852383,53.383854799265436],[-121.0039948838898,53.383938414977905],[-121.00423695689116,53.38404630007289],[-121.0044544944768,53.384169999052965],[-121.00466787750227,53.384296892106725],[-121.0048793830747,53.38442370578867],[-121.00510081476762,53.384546444044815],[-121.00534738238623,53.384648334178465],[-121.0056024614431,53.38474216301987],[-121.00585312031276,53.38484142079715],[-121.00611008043057,53.38493532750796],[-121.00636262041591,53.38503466316494],[-121.00655326862486,53.38516228598244],[-121.00655826669863,53.385342743124134],[-121.00649401397028,53.38551805287048],[-121.00640378992959,53.385689458986754],[-121.0063283300989,53.385863731657444],[-121.00630708973954,53.38604252905341],[-121.00623189438652,53.386214566666],[-121.00613240639957,53.3863844602344],[-121.00602929269884,53.386553078296146],[-121.00594282223605,53.38672464190334],[-121.0058360820087,53.38689198435766],[-121.00576806725384,53.38706712670778],[-121.00568152775323,53.387239253293465],[-121.00560988682223,53.387413120103865],[-121.00554368224611,53.38758890446223],[-121.0053775236468,53.387731853954136],[-121.00518002080571,53.38786842746941],[-121.0050040680528,53.38801432504123],[-121.00487349209416,53.38817561559838],[-121.00473553334531,53.38833546364494],[-121.00466945647244,53.3885101299578],[-121.00464075788875,53.38868805661765],[-121.00467043997631,53.388867305372905],[-121.00477311480876,53.3890361546576],[-121.00496030484983,53.389177101619076],[-121.00518390632156,53.38929768345682],[-121.00544250553357,53.389393905343496],[-121.00560533867473,53.389533270351805],[-121.00563301264378,53.389713566244424],[-121.00571630657586,53.38988664914454],[-121.0058876080487,53.390034230939435],[-121.0060548871808,53.39018388951414],[-121.0062442970099,53.390322124107975],[-121.00646992001344,53.39044166494144],[-121.00669970060102,53.390558010800476],[-121.006893071935,53.39069472154957],[-121.00706022451766,53.39084549614536],[-121.0071651910336,53.39101106970605],[-121.00721199550293,53.39118935637808],[-121.00727034017775,53.391365881714194],[-121.00732103635302,53.391543208717856],[-121.0073641508373,53.39172077418796],[-121.00739391249873,53.39189946772974],[-121.00740844208413,53.39207921041172],[-121.00741351048532,53.39225911264146],[-121.00741864583249,53.392438451644686],[-121.00743693392879,53.39261835215843],[-121.00744965173116,53.39279745262145],[-121.00745666642365,53.392976870516975],[-121.00745428444557,53.39315590263411],[-121.0074349243307,53.39333477854011],[-121.00747421592729,53.39351274914501],[-121.00753639014007,53.393688868822196],[-121.00760044297675,53.39386507633011],[-121.00774030724652,53.394023121237936],[-121.00786440853966,53.394186685113745],[-121.0080119901897,53.39434337366206],[-121.00823797105437,53.3944601216791],[-121.00852875744407,53.394508272435615],[-121.00879743467321,53.39458357033577],[-121.00901477469424,53.394709495312306],[-121.00920206998521,53.39484988094491],[-121.00939533646137,53.39498770482741],[-121.00958652540508,53.395127130173655],[-121.00976778869402,53.395270630614476],[-121.00992926515035,53.39542172734695],[-121.01006699872242,53.395581925465855],[-121.01018916752606,53.395745971106905],[-121.01030744714166,53.39591096736184],[-121.0104178783872,53.39607844608887],[-121.01052059386161,53.396247289826256],[-121.01061170330186,53.396418449355785],[-121.01069315167864,53.396591449321186],[-121.01076111447797,53.396766686236994],[-121.01081183186274,53.396944011291026],[-121.01089387854513,53.39711198687299],[-121.01105939114001,53.397260995805006],[-121.01115225163653,53.397433351203404],[-121.01116699870136,53.39761141225169],[-121.01115510284308,53.397791167115514],[-121.01116965158396,53.397970899886786],[-121.01115587627184,53.39815057583784],[-121.01104744795371,53.398316162464944],[-121.01088241592069,53.39846533946553],[-121.01081090897745,53.398638099919914],[-121.0107003333017,53.39880584226822],[-121.01051568619178,53.398945211091245],[-121.01030934695407,53.39907637372076],[-121.01008903377318,53.39919795600952],[-121.00984963711909,53.39930526913236],[-121.00967902558945,53.39945364447616],[-121.00949403994801,53.39959580984145],[-121.00929844111582,53.39973190510516],[-121.00909202839819,53.39986361984508],[-121.00886998104508,53.39999973600189],[-121.0086565788234,53.40012666438228],[-121.0084380020822,53.40024943995436],[-121.0082477027745,53.400388568388756],[-121.00811522139261,53.40054978260981],[-121.00797360820793,53.400708358116134],[-121.00779586368327,53.40085307143988],[-121.007591254397,53.40098541671036],[-121.00743869222588,53.40114072869587],[-121.00732634875054,53.4013072802308],[-121.00721769753774,53.40147454380265],[-121.00708339620276,53.40163511463934],[-121.00689483288294,53.40177543724072],[-121.00670445570977,53.40191511737432],[-121.00656289848324,53.40207313683062],[-121.00630963544278,53.402169753774956],[-121.00604609062603,53.40225751087257],[-121.00580129433467,53.40236233492086],[-121.00560211031465,53.40249659425678],[-121.00547693167115,53.40265979299693],[-121.00534987249557,53.40282291261931],[-121.00513651123124,53.40294928025117],[-121.00485655459639,53.4030161303972],[-121.0045881598464,53.40309694245153],[-121.00432467259569,53.40318413249371],[-121.00406803717316,53.4032772342228],[-121.00383189660738,53.403388599703135],[-121.0036237691102,53.403518545056485],[-121.00336040904563,53.40360462441571],[-121.00308683454378,53.403681280430874],[-121.00283026033374,53.40377381626482],[-121.00259754011324,53.40388813544205],[-121.00241076542821,53.40402908407169],[-121.0022437337759,53.404178732871394],[-121.00207851462844,53.404329014715685],[-121.00191692063125,53.40448057184378],[-121.00176076550989,53.40463403756446],[-121.00165570993987,53.404802571321156],[-121.00158952743091,53.40497779774018],[-121.00151408008381,53.40515150253107],[-121.00140351618174,53.40531868145382],[-121.00129113767053,53.40548522695924],[-121.00119896995417,53.40565654843963],[-121.00111606697227,53.40582938250267],[-121.0010443085253,53.40600380820847],[-121.00099484000468,53.406181417296125],[-121.00096228846562,53.40635973773183],[-121.00092221777498,53.40653774197108],[-121.00089335915722,53.40671677470689],[-121.00091545204693,53.40689626986847],[-121.00101627605699,53.407065041882525],[-121.00115790626265,53.4072242900267],[-121.00130557460761,53.40738043164161],[-121.001462975776,53.40753417009831],[-121.00157930753284,53.40769965825645],[-121.0016820169733,53.40786849973464],[-121.00179640372555,53.40803447182628],[-121.00192045729726,53.40819859505839],[-121.00203679268981,53.40836408271682],[-121.00213171941344,53.408534851524685],[-121.00222282133643,53.4087060164615],[-121.0023293614004,53.4088744610814],[-121.00244570026936,53.40903994828679],[-121.00255425483769,53.40920735423069],[-121.00264341415603,53.409378994036906],[-121.00268646018313,53.40955712287941],[-121.00266512539743,53.409736480785575],[-121.00264191162022,53.40991575071712],[-121.00266595945988,53.41009477003099],[-121.0027186056788,53.41027161320804],[-121.0027865563003,53.41044686246273],[-121.00286028118799,53.410621222294864],[-121.00292829995603,53.410795908236345],[-121.00292012501932,53.410975819160136],[-121.00289133778782,53.411154297736104],[-121.00294391928685,53.41133170392687],[-121.00301771230545,53.41150550932458],[-121.00310103861591,53.41167859223878],[-121.00319020540067,53.411850231432666],[-121.00329293037244,53.412019080125674],[-121.00340337597278,53.412186564062274],[-121.00351972822286,53.41235204995613],[-121.00363024258519,53.412518970452666],[-121.00373297095528,53.41268781871218],[-121.00382402246309,53.412859536347206],[-121.00387855595976,53.41303646671427],[-121.00392933093269,53.413213230110976],[-121.00398003935014,53.41339055667418],[-121.00402504109688,53.413568209422344],[-121.00407192433366,53.413745932191745],[-121.00412652700246,53.413922299167474],[-121.00418489025462,53.414098824086054],[-121.00422989362374,53.41427647669655],[-121.00425771193284,53.41445564435723],[-121.00427988915477,53.41463458396648],[-121.00431536119004,53.414812950076104],[-121.00435271256586,53.41499140408831],[-121.00437294444671,53.41517081890888],[-121.00435537530487,53.4153503256733],[-121.00430033530945,53.41552714411074],[-121.00422488023723,53.41570084974192],[-121.00415493100097,53.415875918691206],[-121.00410741113883,53.416053044022135],[-121.00408419895855,53.416232322633185],[-121.00407226863945,53.41641206624342],[-121.00406221732912,53.41659189776986],[-121.00404464626817,53.41677140436684],[-121.00400833908199,53.41694956674479],[-121.00396639099505,53.41712749211268],[-121.00393753700399,53.417306533619154],[-121.00391808489896,53.417485961141175],[-121.00390615245136,53.41766571356693],[-121.0039112759495,53.41784505053346],[-121.00395816240821,53.418022781924684],[-121.00402425152915,53.41819794189],[-121.00407691253365,53.41837479272184],[-121.00412192108399,53.4185524360712],[-121.00414403396286,53.41873192961803],[-121.00415291809716,53.418911433406315],[-121.0041542152384,53.41909117547407],[-121.00415739268462,53.41927099651813],[-121.0041643307619,53.419450975529685],[-121.00416186734856,53.41963055956832],[-121.00413301353602,53.41980959196896],[-121.00407615343771,53.419985767733664],[-121.00402856160957,53.42016345588749],[-121.00398473006221,53.4203413019959],[-121.00387050828733,53.42050720654418],[-121.00368722486576,53.42064999471155],[-121.00344233383362,53.42077054539576],[-121.00351685790433,53.42092247572519],[-121.00367767976745,53.42107972064865],[-121.00382534016477,53.42123641236677],[-121.00392621021582,53.421405180760964],[-121.00399230451731,53.42158034046194],[-121.00406800024885,53.42175422335338],[-121.00418236824017,53.42192074631403],[-121.00436775521462,53.42206217619231],[-121.00459152977534,53.42218275723955],[-121.00483187695666,53.42229112335756],[-121.00506806686718,53.422402674479656],[-121.00528372492131,53.42252797135044],[-121.00547717162915,53.422665245504454],[-121.00564873862281,53.42281170785901],[-121.00576895699113,53.4229767854518],[-121.00588917523991,53.42314187184988],[-121.00600946140291,53.42330639491221],[-121.00615720527023,53.42346252037247],[-121.00631683057648,53.42361409526651],[-121.00640026034857,53.42378662061155],[-121.00649342604441,53.42395674252833],[-121.0065538265326,53.42413222693354],[-121.006670158316,53.42429826306943],[-121.00679817172379,53.424461429326335],[-121.00686817672307,53.42463562761308],[-121.00689413150981,53.42481472376539],[-121.00689920165564,53.424994623195],[-121.0068835197539,53.42517420844112],[-121.00690564789737,53.425353700910215],[-121.00696605211107,53.42552918499003],[-121.00711790011763,53.42568267780006],[-121.0073749127342,53.425778260603714],[-121.00763004698598,53.425873754972535],[-121.00788967366765,53.42596326507322],[-121.00815104922867,53.42605397099694],[-121.00840853187512,53.42614563595936],[-121.00866796213471,53.42623682501902],[-121.0089273945816,53.42632800457],[-121.00921109962616,53.42638988895917],[-121.0095004269547,53.42643627702747],[-121.00976824754626,53.426520511310414],[-121.00998998096478,53.426642683726996],[-121.0100949166214,53.42680936039089],[-121.0102429524484,53.42696325453202],[-121.01041032807815,53.427113458600765],[-121.01057777075691,53.42726310816041],[-121.0108693388763,53.427417963969894],[-121.01117044487489,53.427428913510454],[-121.01146880803734,53.42744704248137],[-121.0117664419261,53.42747131230655],[-121.01206374380067,53.42749837952742],[-121.01236044827381,53.42753047908267],[-121.01265120256714,53.42758085394432],[-121.01294739857076,53.427585411875185],[-121.01324536372574,53.427559155350636],[-121.01354029642012,53.42752659878208],[-121.01381832214794,53.42746133083755],[-121.01412088972154,53.427459971813356],[-121.0144208230643,53.42744896033282],[-121.01471967153103,53.42743116444758],[-121.015019893367,53.4274336399336],[-121.0153208679137,53.427445696455905],[-121.01562204211754,53.42745607154021],[-121.01591974424959,53.427479776723516],[-121.01621410720753,53.42751569455908],[-121.0165126298807,53.427548416840914],[-121.01681175027049,53.42757610527542],[-121.01709237693441,53.42763222591139],[-121.01732823157207,53.42774710486117],[-121.01757890920615,53.427848570841746],[-121.01786650660634,53.42789375124719],[-121.01816576291299,53.42792031880364],[-121.01846287270433,53.42794905073191],[-121.01875932119029,53.427983360354474],[-121.01905382264353,53.428018153690225],[-121.01935040357708,53.42805135330536],[-121.01964523785328,53.42808334701915],[-121.01994221728336,53.428113192732006],[-121.0202396614693,53.42813912206624],[-121.02053931854331,53.428162331228044],[-121.02083702844445,53.4281860241164],[-121.02113480439697,53.42820916199174],[-121.02144185288755,53.42823380125301],[-121.02172813448466,53.428210412584555],[-121.02196664514065,53.42809573920993],[-121.02215158149747,53.42795467388262],[-121.02230257080402,53.42779703137407],[-121.02246424661597,53.427644894003585],[-121.02260945910095,53.427488132455366],[-121.0227088453055,53.42731934594846],[-121.02279364934978,53.42714601411918],[-121.02289329888967,53.426974992470875],[-121.02304926171621,53.42682317243068],[-121.02323593601764,53.42668331044859],[-121.02343174856124,53.42654606762245],[-121.02362755876773,53.42640883340538],[-121.02381973988304,53.42627031507437],[-121.02401010476977,53.426131163475304],[-121.02418433713412,53.42598459859445],[-121.02434774740006,53.425833654694756],[-121.02452735442452,53.425689560274165],[-121.02471596611763,53.425549211356405],[-121.0249045108902,53.42540941640231],[-121.02508417985548,53.425264766841565],[-121.0252403275232,53.425111263114744],[-121.02539109596609,53.42495529717544],[-121.02554549314797,53.424800596885724],[-121.02568705554295,53.42464255658325],[-121.02579381258748,53.424475199365745],[-121.02587678327463,53.42430123218603],[-121.02594101340404,53.424125924187635],[-121.0259959736864,53.42394909648199],[-121.0260787434505,53.42377680981614],[-121.02618193472603,53.42360761419293],[-121.02627430470393,53.423434039883034],[-121.02642090526476,53.423281267689305],[-121.02664162871837,53.42315685839775],[-121.02686927795905,53.42303778744199],[-121.02710714931887,53.42292813665589],[-121.02736560180622,53.42283618226243],[-121.02762896645153,53.422750613819375],[-121.02788477970797,53.422649006874074],[-121.0281492288843,53.42257022081866],[-121.02844849085521,53.42258048489017],[-121.02874960478005,53.42257510336352],[-121.02903760111238,53.42252088304681],[-121.0293060061458,53.42244057985178],[-121.02955623868452,53.422338170303846],[-121.0297748685499,53.4222153572659],[-121.03000929786934,53.422102745271864],[-121.03025246710428,53.42199611316364],[-121.03049718553726,53.42189234838767],[-121.03074384879864,53.421788107399784],[-121.0309833856591,53.42168019914817],[-121.03121962257822,53.42156822652771],[-121.03145054793224,53.42145321954941],[-121.0316762939051,53.42133406075072],[-121.03190015710892,53.42121483190392],[-121.03213114528019,53.421099260370234],[-121.03235507255978,53.42097946743844],[-121.03256144942497,53.42084827692403],[-121.03276607780761,53.420715881069526],[-121.03298287607014,53.42059242029222],[-121.03321916816115,53.42047988043117],[-121.03347571079217,53.42038784308198],[-121.0337475913294,53.420309912906696],[-121.03402115253681,53.420233741342244],[-121.03429982545578,53.42016227468008],[-121.03455125106625,53.42006552946732],[-121.03475062455027,53.419929542128436],[-121.0348776213859,53.419766392481904],[-121.03494375402894,53.419590594541134],[-121.03495360747745,53.4194113239015],[-121.03494096216473,53.419230556901226],[-121.03491113074884,53.41905130938582],[-121.03487935267646,53.418872546559854],[-121.03489860785929,53.4186936683963],[-121.03492732998605,53.41851462846514],[-121.0349221407752,53.41833472968815],[-121.03490553770476,53.4181554773568],[-121.03490981667451,53.41797540786025],[-121.03492349597857,53.417795739818224],[-121.0349106536701,53.417616644453474],[-121.03487317035673,53.41743820026439],[-121.03483575287974,53.41725920176879],[-121.03482855186871,53.41708034187145],[-121.03485733976655,53.41690073860009],[-121.03485967200358,53.41672115371003],[-121.03484877604129,53.41654158247436],[-121.03484734785229,53.41636184053924],[-121.03485538731526,53.41618192790506],[-121.0348577195208,53.41600234295345],[-121.03483729067786,53.41582349661873],[-121.03481699515427,53.415643523825786],[-121.034781890548,53.41544497338802],[-121.03476680876902,53.4152528650748],[-121.03487505170978,53.415120376988526],[-121.03512584759147,53.41506066483868],[-121.03544627215396,53.41503529466805],[-121.03577279850543,53.41500625233017],[-121.0360526537171,53.414940447386414],[-121.03630625489606,53.4148409784937],[-121.03654755154456,53.41473370040169],[-121.03677855685933,53.41461756521872],[-121.03700425106868,53.41449839593539],[-121.03723518729257,53.414382823074995],[-121.03746074693505,53.4142647704162],[-121.03767588207259,53.41413898724577],[-121.03788032867503,53.414007708626386],[-121.03808315893484,53.41387410724352],[-121.0382841067401,53.41374043599367],[-121.038486867909,53.413607397128416],[-121.03868599957624,53.41347308351117],[-121.03887988561252,53.413335181705904],[-121.03906295226908,53.4131928931925],[-121.03923714407797,53.41304575111518],[-121.03940401283398,53.41289661430219],[-121.03956194243051,53.41274316933853],[-121.03972524610711,53.41259220339845],[-121.03990830667269,53.41244991353516],[-121.04009680771489,53.41230953938505],[-121.04028524100526,53.412169728150886],[-121.04046681358402,53.41202400645652],[-121.04064818649398,53.41187996520705],[-121.04085422904113,53.41175099477288],[-121.04110021413018,53.411651756154825],[-121.0413724852304,53.411569901442085],[-121.04163265031758,53.411478557228264],[-121.04186685619636,53.411367038833696],[-121.04209258397452,53.41124730543867],[-121.04232705109817,53.411133551107],[-121.0425666294705,53.411024501506255],[-121.04281468353278,53.41092366590239],[-121.0430813066169,53.410841572109284],[-121.04336300268845,53.41077582823546],[-121.04364456604073,53.41071120120506],[-121.04392438037672,53.41064537763076],[-121.04420729467948,53.41058529767905],[-121.04449660712615,53.41053503380393],[-121.04478888904269,53.41049162206528],[-121.04508090570154,53.41045045357568],[-121.04537305463558,53.410408157915164],[-121.04566836937316,53.41037105149475],[-121.0459658622201,53.410347511180966],[-121.04626619230206,53.410331949382936],[-121.04656497106254,53.41031351918672],[-121.04686292466126,53.41028606085773],[-121.04715784199512,53.41025230328868],[-121.04745166930417,53.410211761582275],[-121.0477422630239,53.41016659247557],[-121.04803305317398,53.41011975085342],[-121.04832364563427,53.410074580326174],[-121.04861760228408,53.410032918222264],[-121.04890479248049,53.40996851360281],[-121.04919141873093,53.40989285482339],[-121.04940303629874,53.40978038214989],[-121.04951282917659,53.40961818342067],[-121.04957047208913,53.40943360820831],[-121.04962000275727,53.40925374422146],[-121.04964301709092,53.409074456175226],[-121.04966797645386,53.408894692093114],[-121.04970220346827,53.40871643687537],[-121.04972145630565,53.408537001161896],[-121.04972567090081,53.40835693030937],[-121.0497636570005,53.408178831573295],[-121.04981292203252,53.40800120243822],[-121.0498433879708,53.407822790560836],[-121.04985700021805,53.40764311993596],[-121.04985745444031,53.40746289246036],[-121.0498370323564,53.40728348474149],[-121.04977842071727,53.40710754488503],[-121.04971034512329,53.40693176791055],[-121.04968032785308,53.406753640564986],[-121.0496940721162,53.406572852345796],[-121.04965445812718,53.40639601434783],[-121.04957665658142,53.406222635199484],[-121.04949127016393,53.40604950611084],[-121.04942118603026,53.405874768126345],[-121.04937412006603,53.405697062574944],[-121.04932524109803,53.40551871548015],[-121.04927468082438,53.40533860931858],[-121.04915569526136,53.40517812263615],[-121.04898599488487,53.4050312367885],[-121.04879871860845,53.40488924264673],[-121.04860949855014,53.40474772420054],[-121.04843604237287,53.40460068095795],[-121.04827653453358,53.404447489340924],[-121.04812085364624,53.4042938908652],[-121.04795336888024,53.40414429245092],[-121.04778186250265,53.4039967722235],[-121.04760834592886,53.403850290952285],[-121.04743295088362,53.40370373110877],[-121.0472594367323,53.40355724930852],[-121.0470859901781,53.40341020401518],[-121.04691650121958,53.40326164328417],[-121.04675096983316,53.40311156713196],[-121.046591343088,53.402959481727244],[-121.0464337942173,53.40280580261365],[-121.04627805972834,53.40265276483705],[-121.04611655680895,53.40250060043503],[-121.04594901990019,53.40235156230227],[-121.04576974590395,53.402205960757236],[-121.04559034138774,53.402061476450825],[-121.04541684041943,53.401914991849864],[-121.04525722303306,53.4017629045691],[-121.04511524725021,53.40160538029484],[-121.04497937193615,53.40144418403906],[-121.0448532254655,53.40128058109964],[-121.04473304862927,53.40111441480349],[-121.04462434719456,53.40094704668691],[-121.04452718745323,53.40077791355181],[-121.04444935099228,53.40060509381504],[-121.04438513259139,53.400428915670986],[-121.04433051053442,53.400251448521004],[-121.04424686504893,53.3999997754583],[-121.04415950188623,53.39982768118786],[-121.04406630379842,53.39965702355966],[-121.04396539030799,53.39948773313633],[-121.04386642247768,53.39931796669017],[-121.04377517154822,53.39914683286848],[-121.04368975797321,53.39897425332044],[-121.04363514073567,53.39879678572714],[-121.04367851871253,53.39862115825843],[-121.04375767101426,53.39844646545304],[-121.04388631575918,53.398284500410085],[-121.04411843104214,53.39817401603465],[-121.04436478979814,53.39807086317974],[-121.04460583905431,53.39796467647899],[-121.04487587185855,53.39788496990443],[-121.04515869903932,53.39782488732415],[-121.04543855709748,53.39775794226403],[-121.0457247462081,53.397701367579366],[-121.04601545249133,53.39765453060299],[-121.04630144305916,53.39759962634142],[-121.0465647430262,53.3975128974823],[-121.04682804190824,53.39742616803724],[-121.04706914658493,53.39731942202489],[-121.04724492708218,53.39717401724427],[-121.04743669892709,53.397037139641796],[-121.04762147878252,53.39689547840156],[-121.04781875455912,53.3967599526079],[-121.04807020735848,53.39666149702087],[-121.04836556056671,53.396655276654265],[-121.04866395570593,53.39668735562284],[-121.0489578015809,53.396725991364356],[-121.0492433116444,53.396787296341486],[-121.04953596097936,53.39677196736571],[-121.04982691986545,53.396722886009904],[-121.05012233262867,53.39668408754129],[-121.05040112228323,53.39662607099198],[-121.05066124069442,53.39653415210642],[-121.05093913678301,53.39646767011001],[-121.05123151124188,53.39642257044468],[-121.05151854733275,53.396390723910095],[-121.05181215963971,53.396415300793926],[-121.0521033112871,53.39636453310322],[-121.05237991612356,53.39629294509232],[-121.05264972562405,53.396214901586106],[-121.0529472460684,53.39619022614272],[-121.05324869422297,53.39618031250196],[-121.05354876169011,53.39618212769929],[-121.0538488661686,53.39619967472179],[-121.05414630350245,53.39622383903176],[-121.05444597574555,53.396229013501625],[-121.05474683260547,53.39622412048966],[-121.05504801759693,53.39621643735685],[-121.0553473231191,53.396208675277606],[-121.05564804720204,53.396204906460945],[-121.05594999430812,53.396206793785566],[-121.05625025874299,53.396206930344],[-121.0565497606266,53.39619749341146],[-121.05684998583838,53.39618190481687],[-121.05715014563606,53.39616686976218],[-121.05744958184506,53.39615798486291],[-121.05775043679655,53.39615309320056],[-121.05805007042305,53.39614252601781],[-121.05835062266907,53.396124144269514],[-121.05864767977216,53.39610336148496],[-121.05894982283905,53.39610356936692],[-121.05925067722725,53.39609867391314],[-121.05955028404586,53.39610438983321],[-121.05985035124229,53.3961061891474],[-121.0601481945583,53.396078706333014],[-121.06044885213403,53.396075479688065],[-121.06074778722014,53.396054769766614],[-121.06104685229256,53.39603295049562],[-121.06134294732156,53.39600426011743],[-121.06163510991412,53.39596081567185],[-121.06192106859568,53.39590587384567],[-121.06221012769414,53.39585668412538],[-121.06249156231198,53.39579201207465],[-121.06277718999317,53.395739866509494],[-121.06307972429968,53.395736711286965],[-121.06336520662197,53.395782258784074],[-121.0636286561265,53.39587068724978],[-121.06389879487155,53.39595040893977],[-121.06418257330819,53.39601048251992],[-121.06448021156895,53.39603294916997],[-121.06477850630812,53.396049827360315],[-121.0650792055543,53.39606231266023],[-121.06537572984568,53.39609427171957],[-121.06567389416989,53.39611226520956],[-121.06597367572323,53.39613257105806],[-121.06627238773889,53.396129814931754],[-121.06657422587128,53.396116514915214],[-121.06687462086985,53.39611550713239],[-121.06717263489664,53.39610260389621],[-121.06746621299116,53.39606313008016],[-121.06774595774561,53.395996695772624],[-121.06800752136661,53.39590816064924],[-121.06827756169838,53.39582784661886],[-121.06854720865536,53.395750875674686],[-121.06878851089898,53.395641850500695],[-121.0690208084738,53.395529082345384],[-121.06925161878851,53.39541288312069],[-121.06946999296972,53.39528999566486],[-121.06966725694768,53.39515387032397],[-121.06985914279,53.395015284623256],[-121.06998955594221,53.39485336907309],[-121.07007954068533,53.39468191558551],[-121.07014911444445,53.39450736945935],[-121.07022244623293,53.394332979177086],[-121.07028275342549,53.39415692564476],[-121.07033560902637,53.39397999703034],[-121.07040893912367,53.39380560658874],[-121.0704803893411,53.393631138141735],[-121.07057587619705,53.39346103556514],[-121.07068069251117,53.393291885856236],[-121.07078537796797,53.393123844652095],[-121.07089926168952,53.392957873834995],[-121.07108595497057,53.39281513629192],[-121.07134392937978,53.39272476597246],[-121.07162028048907,53.39265481393342],[-121.07190465150772,53.3925969807007],[-121.07219671456345,53.39255406457079],[-121.07249336657145,53.39252032189295],[-121.07279098027122,53.392494479261316],[-121.07309097707692,53.39248052154281],[-121.07339077667125,53.39246824387007],[-121.07368825846756,53.39244351654898],[-121.07398322521749,53.39240802039955],[-121.07427508891432,53.39236677102905],[-121.07456572657343,53.39231986422215],[-121.0748548122711,53.392270080467284],[-121.07514680510258,53.39222771140058],[-121.07544157322884,53.39219388349846],[-121.07574208968218,53.39217545780946],[-121.07604208323588,53.39216149265156],[-121.07634192613229,53.392164931208605],[-121.07664139474447,53.392155443712404],[-121.07693229114959,53.392106287065765],[-121.07717833711148,53.39200474682768],[-121.07736837063368,53.39186550772342],[-121.07748961091372,53.39170095940787],[-121.07763630875941,53.391544760283786],[-121.0777520403858,53.39137886061744],[-121.07788254278628,53.391215818576946],[-121.07806518459302,53.39107514943142],[-121.07828532480866,53.39095287768444],[-121.07852132939682,53.39084024638113],[-121.0787977221542,53.39076971436556],[-121.07904718754939,53.39067111526108],[-121.07930034414218,53.39057323449333],[-121.07956191465493,53.39048411944205],[-121.07981836988601,53.39039030016657],[-121.08005773307427,53.39028117407122],[-121.08031916936797,53.390193174906436],[-121.08057743539872,53.390099986084195],[-121.08080267745282,53.38998241323788],[-121.08102474799556,53.389859659831075],[-121.08116760216458,53.38970386390992],[-121.08122980197714,53.389527318964056],[-121.08133268659196,53.38935808177989],[-121.08153292287473,53.38922824301503],[-121.08177771667187,53.3891210185909],[-121.08205557952152,53.38905390941623],[-121.08235283546351,53.38903084122075],[-121.08265290199346,53.3890483067522],[-121.08295063160983,53.38906960973246],[-121.08325104076675,53.38906800631102],[-121.08354991486664,53.389047239064126],[-121.08384025786667,53.389002544673254],[-121.08412465329806,53.388944118892994],[-121.08439630178624,53.38886551764421],[-121.08468535213885,53.38881570993318],[-121.0849843220124,53.388826395394844],[-121.08528582549522,53.38883156102923],[-121.08557816299441,53.38886667610487],[-121.08584174651783,53.38895393813605],[-121.08609897582356,53.38904710864881],[-121.08636282283129,53.3891321343779],[-121.0866330920045,53.389210687166106],[-121.08689025879549,53.38930441921304],[-121.08714120108647,53.38940295119312],[-121.08736698392404,53.38952289298105],[-121.087615918902,53.38962246384215],[-121.08786686583167,53.38972098533667],[-121.08805829060991,53.389860284927735],[-121.08825386671134,53.38999638681532],[-121.08846117549881,53.39012904731148],[-121.08875744301811,53.39013061844645],[-121.0890250052716,53.39005464976709],[-121.08930350205505,53.38999821383005],[-121.08960540507734,53.390000024740665],[-121.08988398575262,53.39007217524747],[-121.09009798289539,53.390196116274666],[-121.09035509762957,53.390290404048365],[-121.09065349256215,53.39030609987702],[-121.09094558478083,53.39034342795362],[-121.09122209456692,53.390417178526825],[-121.09150139907491,53.390483174100105],[-121.09176954633632,53.39056387271094],[-121.09201836738886,53.39066455189035],[-121.09227795617639,53.39075387953299],[-121.09253086466596,53.39085191442441],[-121.0927630252947,53.39096593648535],[-121.09298507412946,53.39108571233757],[-121.09321496668538,53.391203008644005],[-121.09339883329658,53.39134255245765],[-121.09361854960362,53.39146616551239],[-121.09377836836705,53.3916176254223],[-121.09397792577471,53.39175219210831],[-121.09418364288356,53.39188252979542],[-121.09439733528141,53.392009261398705],[-121.09458691282099,53.392148472767616],[-121.09478252065777,53.392284563777075],[-121.09499621689913,53.39241129428062],[-121.09520998015536,53.392537461133315],[-121.09540144203648,53.392676748724675],[-121.09559497955115,53.392814441650096],[-121.09580680163968,53.392941093116924],[-121.09602860876566,53.39306309833488],[-121.09625054652189,53.39318399449367],[-121.09648072039833,53.39329904921557],[-121.09670655073882,53.393418973060605],[-121.09694094155516,53.3935302748845],[-121.0971505665803,53.39365963586743],[-121.09738081017547,53.39377413450272],[-121.09760891602431,53.39389078138915],[-121.09781659986128,53.39402062691991],[-121.09802817401564,53.39414950952091],[-121.09828559132966,53.39424154482244],[-121.09857486027514,53.39428716292673],[-121.09887438402582,53.39430962110586],[-121.09917391880896,53.39431579163211],[-121.0994712374398,53.39434096924138],[-121.09977134891327,53.3943583915733],[-121.10006262992333,53.3944029659606],[-121.10036314214113,53.39440075609411],[-121.10066384921774,53.394396873564375],[-121.10096275255134,53.39437606264979],[-121.10126052910336,53.39439731977621],[-121.10153319459914,53.394472008916644],[-121.10182454390369,53.39451601572795],[-121.1021157625392,53.39456114835086],[-121.10239965174125,53.39462056760224],[-121.10265059742692,53.39471962095187],[-121.10289337567075,53.394823951960696],[-121.10309479117852,53.39495914385023],[-121.10335261513467,53.39504781540179],[-121.10362074960867,53.395129041459086],[-121.10388213975645,53.39521953861016],[-121.10409808264477,53.395343540516095],[-121.1042480360125,53.39549906935582],[-121.10441380696231,53.395648511753606],[-121.10458554334208,53.39579538769356],[-121.10474327821841,53.39594899033003],[-121.10495507799878,53.396076188589305],[-121.10517893776763,53.396197136386064],[-121.10541336645278,53.39630842137799],[-121.10564967688028,53.39641977435193],[-121.10590258495597,53.39651834382709],[-121.1061473266935,53.39662218223118],[-121.10639829312996,53.39672122758498],[-121.10666443349582,53.39680349587181],[-121.10694367446627,53.396870572594494],[-121.10722311096826,53.39693597674657],[-121.1074931433886,53.397017280313925],[-121.10775708355453,53.397102258288406],[-121.10803172316119,53.39717644653842],[-121.10831583295055,53.39723417969182],[-121.10859961885807,53.39729470167154],[-121.10887912526084,53.397359547598576],[-121.10916096776135,53.3974205541629],[-121.10945474516353,53.39746014920815],[-121.10975585780261,53.39746916887824],[-121.11005522108817,53.39747699287407],[-121.1103568540825,53.39748154065611],[-121.11065855790123,53.397469246472866],[-121.11095009516526,53.39743070574083],[-121.11114885346272,53.397296833261905],[-121.11128287384878,53.3971350272885],[-121.1113929797337,53.39696774588465],[-121.11151040823067,53.396802445477164],[-121.1116259552831,53.39663707658555],[-121.11174895485533,53.39647257107151],[-121.11189197770553,53.396314503601154],[-121.11205495920501,53.396163428430825],[-121.11223945218637,53.396022230165265],[-121.11242945335356,53.39588237210887],[-121.11245659599433,53.395713924318976],[-121.11254654932564,53.39571986905201],[-121.11243370341595,53.39555352551729],[-121.11233440429586,53.3953843700696],[-121.11223322655378,53.39521513723892],[-121.11213010470709,53.39504639028852],[-121.11203865107592,53.394874745244934],[-121.11197214920769,53.394699643454615],[-121.1119401278048,53.39452033593686],[-121.11198146698219,53.39434348841499],[-121.1121099011098,53.39418089508106],[-121.11226924479769,53.39402854728878],[-121.11242495753189,53.39387493604947],[-121.1125752920195,53.39371884861776],[-121.11273100249143,53.39356523695518],[-121.11289759907142,53.393415432584845],[-121.11306957154682,53.39326810392623],[-121.1132451725784,53.39312203820683],[-121.11341889202977,53.392975903891084],[-121.11359630446378,53.392830478170204],[-121.11377734437099,53.392686324297635],[-121.11396000251102,53.39254448259674],[-121.11415536034077,53.39240708852634],[-121.11435946279751,53.392275677329366],[-121.11457950385021,53.39215333854852],[-121.11482397067945,53.39204828152604],[-121.11508210622083,53.39195558120448],[-121.11534024062537,53.39186288031905],[-121.11559500495781,53.3917666715994],[-121.11580953182194,53.39164298121312],[-121.11597066632767,53.39149126878085],[-121.11610277044656,53.39132937970048],[-121.11620921335512,53.39116082132051],[-121.11626368597061,53.39098451259014],[-121.11626372484534,53.39080541003712],[-121.11622786423749,53.39062651216094],[-121.11619388314888,53.39044769148256],[-121.11616936382545,53.390268693629835],[-121.11614108527493,53.39008955024765],[-121.11608986816762,53.389912824004334],[-121.1160195345164,53.38973812393441],[-121.1159414894506,53.389564795770696],[-121.11586739866316,53.38938994112534],[-121.11580089057367,53.3892148320685],[-121.11573632659758,53.389039245860126],[-121.11567558585554,53.38886325973535],[-121.115616725795,53.38868734185684],[-121.11555987417499,53.38851039250651],[-121.11550678230942,53.38833358864296],[-121.11545181073998,53.38815671644543],[-121.11540059887703,53.38797998973998],[-121.1153494518566,53.38780270866622],[-121.11531547677771,53.38762388749234],[-121.11530236613126,53.387444243981136],[-121.11525873645833,53.38726727177497],[-121.11517110950946,53.38709522863809],[-121.11505639729073,53.38692880965472],[-121.11491239686774,53.38677072704099],[-121.11473469997992,53.38662642315367],[-121.11454514511772,53.38648668917347],[-121.11435358363866,53.38634798629068],[-121.11416396686903,53.386208806015595],[-121.11397260223325,53.38606843056734],[-121.11384597401455,53.38590713479102],[-121.11387777183575,53.38573101716863],[-121.11393224718901,53.38555470904101],[-121.11395316015958,53.38537477499987],[-121.11396266920298,53.38519549498619],[-121.11395902538969,53.38501567414019],[-121.11394592134245,53.38483603025211],[-121.11392329379477,53.38465710870921],[-121.11388174606941,53.384478541084455],[-121.1138305452696,53.38430181338792],[-121.11378517600498,53.384123645506584],[-121.11376442740378,53.383944810074624],[-121.11377400239408,53.38376496667927],[-121.1138173321062,53.38358707725681],[-121.1139126211012,53.3834169391223],[-121.11401898731329,53.38324894532609],[-121.11409211779613,53.383074527101705],[-121.11414477540151,53.3828975781192],[-121.11419555265935,53.382720560783056],[-121.11424633052931,53.38254353446927],[-121.11431576556232,53.38236840720546],[-121.11441292862882,53.38219834582341],[-121.11447854031387,53.3820236182624],[-121.11449938478182,53.38184423814858],[-121.11455935909723,53.38166927875938],[-121.11466759712721,53.38150136149088],[-121.11477032877704,53.38133208582307],[-121.11485828789411,53.3811599658184],[-121.11496276688138,53.38099188480791],[-121.11510021858918,53.38083246295905],[-121.11525956535237,53.38067955584468],[-121.11542422215082,53.38052967870339],[-121.11559082197802,53.38037931528322],[-121.11576992277126,53.38023508027509],[-121.11598283670223,53.38010851316303],[-121.11620805625454,53.379989755156],[-121.1164175341522,53.379860243252594],[-121.11664430485696,53.37974436011811],[-121.11690236097144,53.3796516552954],[-121.11717045584267,53.37957002598294],[-121.11744981840003,53.379505146308816],[-121.11774316817977,53.37946611147628],[-121.11804305721483,53.37945204038627],[-121.11834339639121,53.37945034839077],[-121.11864529041343,53.37945152238039],[-121.11894459265639,53.37945876081578],[-121.1192449942843,53.37947279028626],[-121.11954390760013,53.37948338004952],[-121.11984489553531,53.37947609620409],[-121.12013649491105,53.37943585175119],[-121.1204194143902,53.3793728003156],[-121.12069067396699,53.379296351106774],[-121.12095059714966,53.37920371463888],[-121.12116336061256,53.379078255808835],[-121.12128069983663,53.378912953272454],[-121.12143399176388,53.378763159158694],[-121.12168017710805,53.3786587277924],[-121.12192623157019,53.37855541352665],[-121.12210867131684,53.378414675964834],[-121.12221693622521,53.37824618828651],[-121.12225270990301,53.37806798679828],[-121.12223005070034,53.377889066246304],[-121.122192231745,53.37771065519373],[-121.12216393704433,53.37753150320836],[-121.12214510009672,53.377352182516255],[-121.1221395433917,53.37717228410456],[-121.12211306255757,53.37699377246931],[-121.12203708964547,53.37681884346465],[-121.12187903868822,53.37666806083084],[-121.1216278960225,53.37657128238161],[-121.12134799037555,53.376494658095],[-121.12118864740128,53.37635504173719],[-121.12114539350517,53.37617471788711],[-121.12111710325203,53.375995574459424],[-121.12109069284753,53.375816499215745],[-121.12106998267402,53.375637101056014],[-121.12104739412244,53.3754576257289],[-121.121019040449,53.37527903655281],[-121.12099262987338,53.37509997016557],[-121.12096622055974,53.37492089481583],[-121.12093793191089,53.374741751235845],[-121.12090387932126,53.37456348485815],[-121.12084125935708,53.3743874229795],[-121.12073621119787,53.37421915896378],[-121.12062151205951,53.37405274430069],[-121.12052611739752,53.37388263061259],[-121.12044620572831,53.37370921796793],[-121.1203892897117,53.37353282397166],[-121.1203552393841,53.37335456627254],[-121.12030609740857,53.37317624560866],[-121.1201930872373,53.37301157956169],[-121.12004328474843,53.37285495149408],[-121.11993429167889,53.372688213211376],[-121.119819599878,53.372521797650684],[-121.11963793005806,53.372379580979484],[-121.11941616451608,53.372257609590676],[-121.1191798235446,53.372147400253006],[-121.11892897347691,53.3720483806623],[-121.11865856015264,53.37197157250916],[-121.11837551473646,53.37190604002519],[-121.11812842476975,53.37180717311541],[-121.11794099885772,53.37166583983569],[-121.11782618796803,53.37150053988491],[-121.11777887183321,53.3713228584924],[-121.11779781859428,53.371143399664135],[-121.11787460371696,53.37096969576191],[-121.11798830735589,53.37080311486461],[-121.11812396576714,53.37064249391832],[-121.11827594377375,53.370487601273865],[-121.11843336155236,53.370334611945324],[-121.11858358975752,53.37017851513819],[-121.11871373868436,53.37001654429277],[-121.11882374417058,53.3698492538115],[-121.11891716791091,53.36967847900795],[-121.11899763798115,53.36950548295783],[-121.11906515452816,53.369330265686756],[-121.1191140164837,53.36915316790008],[-121.11914798267553,53.36897432609502],[-121.11916692150974,53.36879487578322],[-121.11917264812814,53.368615439546886],[-121.11916140622377,53.368435863032126],[-121.11911978795975,53.368257850160475],[-121.11904371352847,53.36808403611489],[-121.11894840308987,53.36791336632617],[-121.11884337863648,53.3677451001059],[-121.11872669669287,53.367579723523384],[-121.1186022434702,53.36741627330098],[-121.11847202694376,53.36725370898631],[-121.11835340530139,53.36708880914716],[-121.11824262105151,53.36692142837355],[-121.11812400020501,53.36675653721966],[-121.11798789364516,53.36659597597414],[-121.11784194384796,53.36643893575643],[-121.1176842063228,53.36628591154977],[-121.11748650761844,53.36615201448535],[-121.11725448222901,53.366037475992535],[-121.11704078743065,53.36591134710255],[-121.11684931129751,53.365772646842856],[-121.11665576315613,53.3656355499431],[-121.1164582649026,53.365499979172675],[-121.11626679255717,53.3653612779474],[-121.11608535975421,53.36521738339851],[-121.11593741396551,53.36506138112745],[-121.1158517085084,53.36488941385486],[-121.11580058762405,53.36471213097606],[-121.11575523112478,53.36453396213967],[-121.11570974522691,53.364356910886485],[-121.11567390948551,53.3641780105346],[-121.11566074023509,53.36399891934319],[-121.1156759356355,53.363819314681884],[-121.11571366815767,53.363640627855375],[-121.11577743190534,53.36346526642118],[-121.11587085487552,53.36329448453369],[-121.11598642267971,53.36312799109296],[-121.11612381223043,53.3629685666677],[-121.11629027575326,53.36281875531362],[-121.11648898354369,53.36268375404403],[-121.11671236029675,53.36256379923062],[-121.11695146978732,53.362454597477196],[-121.11719912508354,53.36235304133623],[-121.11745182876102,53.36225675004746],[-121.11771650947138,53.36217105720151],[-121.1179957558156,53.36210617569266],[-121.11828924335447,53.36206490394125],[-121.1185853842993,53.362033281144384],[-121.11888281966014,53.36200675961632],[-121.11917980023762,53.361984153489075],[-121.11947839909641,53.36196385903659],[-121.11977686800057,53.361944681456414],[-121.12007540094386,53.36192494878643],[-121.1203740642957,53.36190408880338],[-121.12067305094064,53.361880438483354],[-121.1209687998943,53.361852162618945],[-121.1212633186397,53.361818220755445],[-121.12155667135211,53.36177805856035],[-121.12184872933048,53.36173278472521],[-121.1221373553234,53.36168455737722],[-121.12242313090785,53.3616283606402],[-121.12270094254518,53.361559474783505],[-121.122973831644,53.36148421445067],[-121.12324341689204,53.361404892040824],[-121.12351623975589,53.36133018480047],[-121.12379883877315,53.361268796740084],[-121.12408441551378,53.361214267970034],[-121.1243715450635,53.36116261414788],[-121.12466042333199,53.36111214540952],[-121.12494917034513,53.361062802537454],[-121.12523804723732,53.361012332393884],[-121.12552685816364,53.36096242483228],[-121.1258201366187,53.360922806449906],[-121.12611619861575,53.36089172817196],[-121.12641219595017,53.360861203500974],[-121.126708063376,53.360831795723215],[-121.12700541988575,53.36080581715482],[-121.12730413608553,53.36078438541571],[-121.12760388894863,53.36077029010316],[-121.12790422401021,53.36076745633091],[-121.12820287734958,53.360779142072545],[-121.1285023722779,53.360799854092896],[-121.12879979596613,53.36082216031089],[-121.12909987438442,53.36083783701007],[-121.1293991103741,53.360844494871145],[-121.12970048317804,53.36084899372457],[-121.13000095029979,53.36086131525024],[-121.13029526865697,53.36089415377038],[-121.1305787109328,53.36095575100232],[-121.13083191774516,53.361050353025874],[-121.1310395420649,53.36118014266158],[-121.1312190654115,53.361324500985845],[-121.13140655505403,53.361465250776355],[-121.13161023273193,53.36159656634223],[-121.13186312286534,53.361693955757694],[-121.13213984006373,53.36176481374072],[-121.1324238734011,53.36182137271913],[-121.13271729405521,53.361862037622416],[-121.1330150512793,53.361881534728],[-121.13331669050244,53.36188378914427],[-121.13361722758314,53.36187926002319],[-121.13391782872783,53.36187417579461],[-121.13421836567532,53.361869645154655],[-121.1345174124121,53.361861683905545],[-121.13481820774128,53.36185491647397],[-121.13511777552387,53.36185876137894],[-121.13541501579392,53.36188273197291],[-121.13570339239674,53.36193440311439],[-121.13598471312145,53.361998145794075],[-121.13626862396333,53.36205581322496],[-121.13655913922983,53.362105323915934],[-121.13684790536995,53.36215364829791],[-121.13713686650013,53.36220029104613],[-121.13742764218252,53.362247564331064],[-121.13771848259671,53.36229428255404],[-121.13801217002293,53.362332699104286],[-121.1383091579636,53.36235888880266],[-121.13860672701628,53.36238005283991],[-121.13890636759758,53.36239962100588],[-121.13920400233113,53.36242022025678],[-121.13950105568561,53.362445852627424],[-121.13979998741131,53.36247156110834],[-121.14009813857508,53.36248769648866],[-121.14039971847137,53.362490487294316],[-121.14069838110498,53.36248586344084],[-121.14100001856637,53.362471820161176],[-121.14129135092776,53.36243264118203],[-121.14154743277399,53.362339250954975],[-121.14174955622175,53.36220658746487],[-121.14191054874213,53.36205428339623],[-121.14204064793748,53.36189172310189],[-121.14217793485638,53.36173226849862],[-121.14237117876247,53.36159475819293],[-121.14260147167626,53.361479532541836],[-121.14286272755727,53.36139027715819],[-121.143145105726,53.36133051514007],[-121.14343986101873,53.36129428306608],[-121.14373831425507,53.36127504535762],[-121.14404033676995,53.361273919636226],[-121.14433166477318,53.36125102035047],[-121.14459926635753,53.361172127108],[-121.14486427201396,53.361083020868065],[-121.14511722678887,53.36098388110023],[-121.14536143658447,53.36087875977364],[-121.14560570913456,53.360773083585585],[-121.14585198737095,53.360666365996174],[-121.14609295244736,53.360556627974375],[-121.14632873434319,53.360442742959],[-121.14655195027711,53.36032328634491],[-121.14676279213873,53.36019659513539],[-121.14695575718805,53.360061303641416],[-121.14713440634796,53.359919255312796],[-121.14730236655316,53.35977172133386],[-121.14746326574948,53.35961996392384],[-121.147618852934,53.35946517749312],[-121.14777081109357,53.35930912868123],[-121.14792102019398,53.359151876343596],[-121.14807304107372,53.358995263823765],[-121.14822862268,53.35884048548897],[-121.14839139284071,53.35868880347332],[-121.14856135151402,53.358540217747766],[-121.14873299298533,53.358393389433736],[-121.14890838893639,53.358246714279],[-121.14908365478856,53.3581011565108],[-121.14926079725547,53.35795567517728],[-121.14943975136947,53.357810833568585],[-121.1496168274706,53.35766590604153],[-121.1497939662667,53.35752042388262],[-121.14997110383958,53.35737494144941],[-121.15014454850743,53.3572287510053],[-121.15031812184434,53.35708143369863],[-121.15048800230585,53.356933408401886],[-121.15065425485363,53.356784111830784],[-121.15082244789122,53.35663433733629],[-121.15099064076365,53.35648455365165],[-121.15115889633371,53.35633421535903],[-121.15132352401459,53.356182605816514],[-121.1514845238306,53.356029725038866],[-121.15163814033201,53.35587541970898],[-121.15178631519919,53.35571921215922],[-121.15192717177906,53.35556101680689],[-121.15205514086364,53.35540004934063],[-121.15217216519375,53.355235823157486],[-121.15227817893296,53.35506891053153],[-121.15237324812757,53.354898739248966],[-121.1524609994854,53.354726580302255],[-121.15254324483085,53.354553082601356],[-121.15262186395682,53.354378304925135],[-121.15269672607099,53.354203382825006],[-121.15277346625086,53.35402852836926],[-121.15285383129785,53.35385495374584],[-121.15292111708591,53.35368027923293],[-121.1529791429058,53.35350410378124],[-121.15307057924343,53.35333266085735],[-121.15316382859396,53.353161848851265],[-121.15324781685169,53.352989544833825],[-121.15332630138927,53.35281588422007],[-121.15341035318123,53.35264301675597],[-121.15351279394427,53.35247426857336],[-121.15363731376704,53.352310356197066],[-121.15374713437579,53.35214303198603],[-121.15380696834079,53.35196748699058],[-121.15385009635602,53.351789580245836],[-121.15393407907277,53.35161727562667],[-121.15405309184604,53.35145200625024],[-121.15418485925356,53.351290635058824],[-121.15433126077579,53.35113322075186],[-121.15449572801307,53.350982724094],[-121.15467994582549,53.350840893658244],[-121.15487666147847,53.35070518756293],[-121.15507331100181,53.35057004443706],[-121.15526290018914,53.350430678237636],[-121.15543642763353,53.3502833529664],[-121.15559544764768,53.350130952876],[-121.15574540130683,53.349975370916425],[-121.15588810130181,53.34981724702471],[-121.1560290514253,53.349657928684536],[-121.15613691434734,53.34949107981364],[-121.15620055331566,53.34931513220958],[-121.15626788179924,53.349139901046954],[-121.15635554041283,53.34896830204106],[-121.1564542704305,53.34879883452924],[-121.15655494088826,53.34862888914564],[-121.15665548188666,53.34846006133202],[-121.15675796329576,53.348290755640264],[-121.15686038007554,53.34812200421022],[-121.15696286086859,53.347952689372065],[-121.15826433454053,53.346903633593904],[-121.16681044277392,53.343701769778235],[-121.1696254142913,53.343232429844846],[-121.17803527761347,53.34199497037214],[-121.18381726471003,53.33906313313641],[-121.18948170332135,53.335964583041736],[-121.19806133428646,53.33520314326185],[-121.20059205372027,53.33668888548102],[-121.20099282257196,53.33833382507764],[-121.20909593646637,53.33884473179366],[-121.21745139565223,53.338994711338124],[-121.22611857863349,53.336795278825775],[-121.22559763665055,53.32915297460155],[-121.26952541325035,53.29094362812431],[-121.33815957556234,53.28369622825333],[-121.3442233512123,53.283896338779584],[-121.41517316925447,53.28375514630432],[-121.41528590122901,53.27080877568252],[-121.41531148887603,53.26724971822006],[-121.40352340177944,53.26709567978848],[-121.3986558421037,53.266856826920225],[-121.39828786196347,53.25974252091877],[-121.40342003639044,53.259341639725996],[-121.40361425141643,53.2593553441324],[-121.40531966941668,53.25890167461051],[-121.40508334573752,53.25885995192493],[-121.40475126470147,53.25845356959942],[-121.40974089435863,53.25479554020456],[-121.40993775079951,53.25436980358848],[-121.41203105852749,53.2509009008489],[-121.42008630030669,53.251152528472446],[-121.42560893147136,53.24977560726528],[-121.42721516934269,53.24884236089632],[-121.42846843965765,53.24824911170084],[-121.42857830235506,53.247790804018095],[-121.42808184069136,53.24640028415969],[-121.428084396867,53.245404557178155],[-121.43190186855624,53.24197608117264],[-121.44345205131333,53.24161882594079],[-121.4544065668613,53.241619866244825],[-121.46160416002043,53.24045494728477],[-121.471054599017,53.23778216802382],[-121.47654922789044,53.23326357126498],[-121.47753200640723,53.23125227637445],[-121.4812377870477,53.22755149069467],[-121.48993945570938,53.22551168869642],[-121.50226839167316,53.223721950489484],[-121.50901790318548,53.223190642183425],[-121.52213956825445,53.22241854385827],[-121.52784945924786,53.22218363571966],[-121.53356520319753,53.22246114562267],[-121.54058202372079,53.22124270648139],[-121.54360595854035,53.22023510506967],[-121.54853242537824,53.21943818495457],[-121.55262510646665,53.219559448849],[-121.55704894094043,53.221106885660895],[-121.55709065774845,53.222139530480476],[-121.55842766195214,53.22515552823107],[-121.56059349917307,53.233593130546836],[-121.56678826986494,53.24278765706047],[-121.57187853260051,53.24690191301837],[-121.57760364480778,53.253295889483326],[-121.58287015921357,53.257186024212245],[-121.58740859129709,53.256102377782184],[-121.59565317574447,53.25440373080037],[-121.60051745220923,53.25177648027734],[-121.60547749156419,53.24851276190605],[-121.61318818248738,53.248308553527245],[-121.62729686734366,53.248366534288884],[-121.6314755754086,53.24826476307597],[-121.63592729749219,53.2471233833089],[-121.64038939565778,53.24369461728675],[-121.64398537464466,53.24005032660888],[-121.6561070693716,53.238189371654656],[-121.66708592597311,53.238510677232256],[-121.68438021835892,53.251217746550346],[-121.70183279934612,53.251688253371114],[-121.7089777607934,53.25423019255195],[-121.71312698495662,53.25812189745025],[-121.71432700455802,53.259938688411616],[-121.71880824649847,53.25730701596232],[-121.72093434734086,53.25533768284739],[-121.72401330222043,53.2534672379739],[-121.7292438540952,53.25323105045415],[-121.73412468579386,53.25362516069206],[-121.75224365708178,53.26168363621593],[-121.76184436523108,53.266193490806465],[-121.7743252448046,53.27397914000325],[-121.78101626105256,53.27692167791684],[-121.7892805262753,53.28402116629989],[-121.79389267762086,53.28744906373916],[-121.80704183403783,53.30014313087531],[-121.81232689686621,53.30350136606875],[-121.81963739772362,53.30740879332144],[-121.83482693904114,53.31057969398396],[-121.83847640190403,53.311157189049],[-121.84814205950534,53.31153896239955],[-121.85910107020976,53.311333255155],[-121.87117622061912,53.310190735540324],[-121.8832168837376,53.30785122632712],[-121.8871714871287,53.306540145519755],[-121.89517844458503,53.30367972930983],[-121.90025956344837,53.301774294143314],[-121.90866916170711,53.299711905341695],[-121.9186591709659,53.29905107857855],[-121.92531493689934,53.29844439223738],[-121.93003158051111,53.297172156369385],[-121.93797813899644,53.295512138244085],[-121.94545461029912,53.294035286833164],[-121.94562298512237,53.2979214704296],[-121.94574821936729,53.30335250184838],[-121.94608394195461,53.30941462429332],[-121.946437116381,53.31341705506624],[-121.94721387612977,53.316149646141845],[-121.94778195031122,53.3163530741606],[-121.94827676592502,53.31653492200527],[-121.95243327106445,53.31561686988145],[-121.9539541497233,53.31295931844379],[-121.95412354343911,53.31009689501318],[-121.95534767483039,53.307388804667774],[-121.96071377877043,53.305312714973354],[-121.96325949060113,53.3045268872258],[-121.96457023888684,53.304052478267145],[-121.96824781399782,53.30308509871047],[-121.9724386096383,53.302734807630266],[-121.97614912679755,53.30268115819791],[-121.97946449694778,53.30171686042596],[-121.97993205320692,53.30171026031883],[-121.98458715298037,53.30106838298163],[-121.98618844641234,53.30070232558517],[-121.9875560964581,53.30136631551704],[-121.98725511080987,53.30326205056303],[-121.98834765567987,53.30444355261681],[-121.99023702580253,53.30390034944746],[-121.99020096004094,53.305387620223364],[-121.99023407968089,53.30630606301949],[-121.99284447995623,53.30689358079954],[-121.99494029312903,53.30703166047943],[-121.99596630872288,53.30622133684496],[-121.99711290050676,53.30620279248392],[-121.99855366780847,53.30657623883188],[-121.99960348534687,53.306625099482424],[-122.00366397285865,53.307966484860444],[-122.00498979466933,53.30796456303332],[-122.01166472333988,53.30922140950868],[-122.01720116972477,53.31025452088837],[-122.02597795615966,53.31127584847557],[-122.02912101381699,53.31133448064467],[-122.03427261244559,53.31150112116572],[-122.04029275313702,53.3099601246038],[-122.04439139097948,53.307219832483156],[-122.0464876719855,53.30687228092438],[-122.05192501939278,53.30607317931614],[-122.05506201247822,53.30538757756766],[-122.05801870420095,53.30372981786636],[-122.06088359711818,53.30321288075699],[-122.062792225187,53.30309669707544],[-122.06488682059621,53.302924372223394],[-122.0694556700278,53.30109202392011],[-122.06975022423154,53.299548312292764],[-122.07202798330655,53.297892981008985],[-122.07250559201523,53.29777751279436],[-122.0779465814341,53.29692017700614],[-122.08204756960507,53.296057617198606],[-122.08423285422303,53.295714609475],[-122.08518873024262,53.2953130489502],[-122.08727937041479,53.29177075216683],[-122.08794426993963,53.28817523566679],[-122.08916798285975,53.282286739148034],[-122.0903025699275,53.27800541466003],[-122.0946649289495,53.26389417474027],[-122.09759738932065,53.255779614058106],[-122.09996126084175,53.24892260861735],[-122.10109559258903,53.244296694074464],[-122.10147126233574,53.24332332790619],[-122.10194463469215,53.24178037188577],[-122.10270812877621,53.24035243023938],[-122.10346946369486,53.23943606913724],[-122.10659499035476,53.236691055561806],[-122.10812492756178,53.23640695375257],[-122.11050002235238,53.23543640390898],[-122.11429984372866,53.23434198926676],[-122.11668008306339,53.23331257998558],[-122.11973393303032,53.23296888504888],[-122.12221181744276,53.23267469591213],[-122.12372079317811,53.231305824659785],[-122.12629855118766,53.23090487140832],[-122.12962180365025,53.230899608382344],[-122.13333904295123,53.23003979198667],[-122.1341826280445,53.22837979032019],[-122.1368554555523,53.226607788141],[-122.13941665809176,53.2252320919775],[-122.14246319862279,53.22397202286528],[-122.14435436573264,53.223510173553144],[-122.14940553227153,53.22350676541733],[-122.15120953159769,53.22350537013558],[-122.15473488037736,53.222759291422896],[-122.15929800187831,53.22200525576819],[-122.16319763807208,53.22011427704931],[-122.16442370582958,53.219026936739645],[-122.16633219124958,53.21754091599658],[-122.1678550734547,53.21765303921594],[-122.17089660022035,53.21759266493115],[-122.17309261499233,53.21707684292907],[-122.17621796077054,53.2157579021056],[-122.17859248494595,53.21409769508664],[-122.17973229513224,53.213292972548395],[-122.18164120434565,53.21328946843771],[-122.18373422553012,53.213576855083915],[-122.18667512542132,53.2136284083954],[-122.19020564130028,53.21430753676696],[-122.19363164693023,53.214646600040425],[-122.19572562283433,53.21492482473484],[-122.19695799288776,53.21275465274611],[-122.19856717989593,53.21023641913698],[-122.20179630566837,53.209085104786006],[-122.20446162245321,53.20885529987599],[-122.20655531710173,53.208966722245414],[-122.20817291126345,53.20936017646821],[-122.21026942861037,53.21044549913811],[-122.21331077773321,53.210379552311366],[-122.21568570744476,53.21020415965955],[-122.21759948242698,53.210144137920615],[-122.21940406218164,53.20962507907154],[-122.22100775633419,53.20916746611882],[-122.22320169542782,53.209334515432516],[-122.22616267883234,53.209325707994076],[-122.2287276866594,53.20903943165522],[-122.2305258933817,53.20943160393998],[-122.23443268519524,53.20993793900184],[-122.23586406787503,53.21056911333169],[-122.23796620762803,53.212105681157105],[-122.23825144862491,53.21244628478352],[-122.24063600017658,53.2126689900762],[-122.24349234422145,53.21231814838945],[-122.24577730588956,53.21180159334177],[-122.24938990022736,53.21122495952923],[-122.25100416815454,53.210306165838126],[-122.25069631715714,53.20801830626182],[-122.24964643899436,53.205965552151746],[-122.25029949216628,53.204193931642735],[-122.25095197912765,53.20276671864654],[-122.25331728814224,53.20167589896571],[-122.2571300275824,53.200694203231954],[-122.25931447792073,53.19977649802544],[-122.26139467376032,53.19765891617139],[-122.26299859433254,53.196338551680626],[-122.26394152286308,53.194508139071154],[-122.26477887739898,53.192851654792676],[-122.26553662952306,53.190905436148846],[-122.26609314775946,53.1895362743041],[-122.26856235171722,53.188956695637444],[-122.27321458528291,53.188145154292386],[-122.27567908644339,53.18625318403855],[-122.27662607044638,53.1843678375695],[-122.27766252723553,53.184023474741615],[-122.27841925071942,53.18293319358258],[-122.28125812573086,53.18172941119525],[-122.2835512017311,53.181779017187395],[-122.28582409519007,53.18086196207206],[-122.28658037856452,53.18011549802836],[-122.28839257200248,53.18051061580561],[-122.29009466923561,53.18010737098516],[-122.29267292354922,53.18032842343021],[-122.29408952027583,53.18026958329784],[-122.29608731439971,53.18060364384523],[-122.29847012459332,53.181514041004625],[-122.30085805011542,53.18150906087082],[-122.30008195570377,53.18042570343374],[-122.30168900542769,53.17956270223989],[-122.30492747789354,53.178586285003924],[-122.30500240058021,53.1766981932567],[-122.30517749297248,53.175038168494616],[-122.30537251142792,53.17486811756858],[-122.30583768232366,53.17332429758857],[-122.30800434469273,53.1710336614849],[-122.3100862310569,53.170228009832165],[-122.31246881262389,53.17096535714737],[-122.3134406954799,53.17290402491085],[-122.31354105576668,53.173474840552046],[-122.31686491602228,53.173922238385515],[-122.31953829033661,53.17459948256333],[-122.32183117052077,53.175164428697656],[-122.32544012746176,53.17527040809087],[-122.32885887630017,53.17531932403661],[-122.33295434264082,53.17604767086528],[-122.33620513846105,53.17820873419065],[-122.33773354675462,53.17997703141677],[-122.33862767758283,53.18300238661811],[-122.33967011174506,53.18414305941091],[-122.34282581296927,53.18515777178837],[-122.34492475691715,53.186412368637725],[-122.34588197771696,53.186978187043984],[-122.34758950756873,53.187203110728035],[-122.34959839190468,53.188112108251254],[-122.35189234773053,53.188503132537114],[-122.35474923535212,53.190551633245235],[-122.35694859379578,53.19134519939801],[-122.35914785077333,53.19196650801642],[-122.36162850877338,53.193157920536486],[-122.36591548011806,53.1936059844002],[-122.36866488950204,53.19359557381236],[-122.37189875191889,53.19301545524271],[-122.37665648879027,53.1930534973361],[-122.38008743034779,53.19332675251028],[-122.38028423766366,53.194185374491504],[-122.38355083554276,53.197433678670436],[-122.38862989869294,53.202154043584535],[-122.39169283204849,53.20357961495993],[-122.39636527934148,53.20515954129312],[-122.39981192209017,53.207376786705744],[-122.40182543987696,53.20913699272791],[-122.4043292964301,53.212905505830705],[-122.4050161620038,53.214898508715365],[-122.40837196288254,53.216431203299685],[-122.41028926158201,53.217741270418394],[-122.4134399743852,53.21903929889269],[-122.41554228044131,53.22012041627876],[-122.42088742799665,53.22124174917639],[-122.42364194228648,53.22083584782824],[-122.42423990679369,53.22069572826227],[-122.42649142175607,53.2201949290035],[-122.42877100760182,53.22007242219802],[-122.43305037036306,53.22011499514747],[-122.43304207142367,53.21914552011323],[-122.4346623258992,53.218109535676625],[-122.43502009514458,53.217075355051406],[-122.4362505293474,53.21638378897275],[-122.43615853785789,53.21587116374719],[-122.43679659194954,53.213472908504684],[-122.43867576152842,53.21060941930541],[-122.43968157725203,53.20723166803632],[-122.44088419012448,53.204369116237544],[-122.44114462467135,53.20145524220952],[-122.44122877272211,53.19974254986488],[-122.44330573546208,53.19933661379949],[-122.44521785100426,53.19892570156909],[-122.44795246770099,53.197484950233914],[-122.44794231630084,53.19617608192593],[-122.45020572917088,53.19462018292273],[-122.45133383009438,53.19370553938156],[-122.45295417025852,53.19300923796243],[-122.45703821724858,53.1924820375471],[-122.45654682037954,53.190998909560825],[-122.45671565013026,53.18934315333543],[-122.459659268769,53.18915976818138],[-122.46211066039731,53.18732154966898],[-122.46515820030001,53.18679114292331],[-122.46647079025782,53.18581849231954],[-122.46570086581913,53.184790384434],[-122.46625764194229,53.18387761805029],[-122.46693115273463,53.18444234845065],[-122.46903247398365,53.185350329320535],[-122.46988276767195,53.1839785138686],[-122.47016782258173,53.18380136644356],[-122.47203891186689,53.182250773126434],[-122.47554966815567,53.18138056117241],[-122.47888774719387,53.182221426756904],[-122.47968021156164,53.18370330902992],[-122.48263024028007,53.183977796613206],[-122.48557365341445,53.18397101466785],[-122.48805309774201,53.18412707450331],[-122.49053137261323,53.18520176276061],[-122.49204033882725,53.183483088794205],[-122.49430231605638,53.18227803958239],[-122.49552905882972,53.18124421379765],[-122.49551331278731,53.17998513009508],[-122.4948369633246,53.17872667058588],[-122.49520335505964,53.177928731482325],[-122.49557233675678,53.176555968127246],[-122.4965938267911,53.17546052269066],[-122.49982974677116,53.174995411563906],[-122.50117618974843,53.174143434645146],[-122.50247464843329,53.17332648688211],[-122.50321903313463,53.17194853159228],[-122.50500445159365,53.170686584584296],[-122.50469643053285,53.169146836314916],[-122.50488824158982,53.168460376016625],[-122.50686426116054,53.167250593182416],[-122.51197406705984,53.16425426951604],[-122.5156408008429,53.161096898704386],[-122.51998163137333,53.158676064236175],[-122.52435416024741,53.15860272299354],[-122.52806303150898,53.158753725895814],[-122.53318451752857,53.158329622100524],[-122.53656970350153,53.15528622728513],[-122.53986639375131,53.15258509657716],[-122.54298986369527,53.15199891373674],[-122.5444152788365,53.1519968270004],[-122.54858166650963,53.15094628381244],[-122.55017064096769,53.14893762507056],[-122.55329612714513,53.14795302312976],[-122.55654755215006,53.14873706455341],[-122.55920095985276,53.149128389397696],[-122.56225646723439,53.1497411071895],[-122.56481536217092,53.14926525937156],[-122.56593198052794,53.1478910463621],[-122.5678119529865,53.14616657082194],[-122.5702719378209,53.14524185942185],[-122.57329993916409,53.1439695681268],[-122.57367284012973,53.1436247884715],[-122.57574133368679,53.14178843618128],[-122.57856598044691,53.14080009024992],[-122.58160590061985,53.13993007703772],[-122.58158869944438,53.13884319733816],[-122.58157018550891,53.137586889981954],[-122.58021181817314,53.13565188929197],[-122.58000431998484,53.13450790081084],[-122.5836624012484,53.13117503246024],[-122.58942461113217,53.12851694632306],[-122.59292731966481,53.12747157304475],[-122.59593814529323,53.125455673318655],[-122.59754152230774,53.124533237429354],[-122.59942644967367,53.123837627168086],[-122.60197238803346,53.122563678758716],[-122.60300162324818,53.12113335187107],[-122.6049687254056,53.11940972109419],[-122.60591140296636,53.11905710547059],[-122.6090275746716,53.1179564336595],[-122.61411972613362,53.121760904324454],[-122.62376211899546,53.12548208496813],[-122.63347682328941,53.127371635023934],[-122.63956520184328,53.1271668916252],[-122.65002665919737,53.12853731751206],[-122.655549246201,53.129421679558504],[-122.66478178774584,53.13022600878065],[-122.6757307500431,53.131707130836375],[-122.6842251547109,53.134287713253926],[-122.69265441142323,53.13886627685169],[-122.69909443951549,53.143397068042994],[-122.70832607837245,53.15043014086324],[-122.71559878274552,53.1583854791399],[-122.72065069952646,53.165213210645646],[-122.72700029251166,53.17546207644144],[-122.73112749370931,53.183038617907656],[-122.73790699005507,53.19031290112207],[-122.74382538685487,53.19690410983467],[-122.750066908756,53.20498089721799],[-122.75704169944851,53.212537880515484],[-122.75947545858607,53.22115343583116],[-122.76122014263069,53.227597263716554],[-122.76457931045006,53.23455391845708],[-122.76964582374325,53.24160743660431],[-122.77681414357333,53.24813184778062],[-122.78388582350087,53.25437442432177],[-122.78731693882828,53.26006708263483],[-122.7889701156933,53.262057652941806],[-122.79464145046227,53.2640172392638],[-122.80062814948155,53.26380769151989],[-122.80339464394116,53.26361986873441],[-122.80910861582694,53.26363413366452],[-122.81635899126344,53.26381609692146],[-122.82265748044348,53.26405679119587],[-122.82802493409615,53.266080049389075],[-122.83622536199387,53.271449937010466],[-122.84018674677016,53.27399020191006],[-122.84230695016211,53.27500662035415],[-122.84722589991269,53.278230398124855],[-122.85100114654516,53.281064179775285],[-122.85229494964987,53.28368678788084],[-122.85426300473114,53.28715711123111],[-122.85589462659402,53.2921167024107],[-122.858867474461,53.29786702616002],[-122.86124589837652,53.30231133426542],[-122.86252357788999,53.304358620647136],[-122.8657639649935,53.308964069726265],[-122.86673773853089,53.31004165620476],[-122.87119135283643,53.313325401965784],[-122.8752507606393,53.3156392213354],[-122.87923006343624,53.319040779969704],[-122.88138637347818,53.32205397850907],[-122.88238566879639,53.32422095250514],[-122.88365811786487,53.326157910988],[-122.88629034175602,53.32396286353913],[-122.88713055653976,53.3229862878183],[-122.88708485863958,53.32115834709992],[-122.88562545061261,53.31950976602264],[-122.88272812789246,53.31775894884357],[-122.87896539568933,53.31549749262093],[-122.87508961335695,53.31232908711991],[-122.8736203525079,53.31062063709349],[-122.87728373931827,53.30791297323286],[-122.87970331696012,53.30491909016454],[-122.88540329115241,53.303564977716206],[-122.88794437888785,53.30645922359998],[-122.88887745484642,53.310339038133066],[-122.89000169005347,53.31387508740918],[-122.89382686685532,53.314477597903384],[-122.89932293087362,53.3128359998249],[-122.90359253541699,53.311487944834894],[-122.90651105264998,53.309467592848755],[-122.90739003818264,53.306310249858825],[-122.90782434135438,53.30408327973487],[-122.90966469900445,53.30115504886441],[-122.91499719755306,53.300481877085225],[-122.92012020460196,53.29958324429461],[-122.92619445551767,53.29822684211448],[-122.92951840575516,53.29722458678662],[-122.93273777662493,53.296002549376475],[-122.93778939842485,53.296073558446004],[-122.94112801894607,53.296107501121526],[-122.94414360878095,53.29436856988369],[-122.94848829856632,53.29713518502099],[-122.94877991650138,53.29747291824432],[-122.95288281927901,53.297553649880584],[-122.95467251657921,53.296112662515235],[-122.95791262393149,53.29626023513601],[-122.96026129850567,53.298753179847544],[-122.96334654677759,53.300218138275575],[-122.96501026192453,53.29780549985495],[-122.96704783465944,53.2952139985115],[-122.96874663231121,53.29440125253281],[-122.9700456150145,53.293078146656654],[-122.9693507241616,53.29164919007986],[-122.96750433185832,53.290121275231975],[-122.96743886672698,53.28726463786933],[-122.96596936178553,53.285730065281854],[-122.96222899814703,53.284391903127904],[-122.96397316529179,53.281689780390536],[-122.96847677254415,53.28245363491451],[-122.97353610883016,53.28281323497206],[-122.97782379527834,53.282604616512536],[-122.98221945926268,53.2831992408344],[-122.98519347074111,53.283688618998525],[-122.98965197403032,53.283194606732096],[-122.99199940766093,53.28128955211866],[-122.99550368082403,53.280458843723125],[-122.9966334992235,53.279592064830176],[-122.99763266151571,53.27781255512242],[-123.00113762985787,53.27675464038529],[-123.00496805507521,53.27746645064199],[-123.00754092942118,53.277670420317804],[-123.01032008646534,53.27793559852957],[-123.01102065778227,53.27930053227718],[-123.01123661787459,53.28049906620901],[-123.01325610017383,53.28151033204351],[-123.0158203532232,53.28120201747629],[-123.01822963376641,53.281808673550664],[-123.01747352464083,53.28250226597363],[-123.01391795641185,53.285337251937925],[-123.01452750997672,53.28692861311011],[-123.01645493231635,53.2875450332309],[-123.01818719401922,53.28815596063227],[-123.01906259798673,53.28918209859586],[-123.02126988289324,53.289673149731016],[-123.02386306592324,53.29045360890921],[-123.02447983774641,53.29216225722909],[-123.02734843238893,53.29288113858006],[-123.03015448889744,53.29406204832819],[-123.03137566449716,53.29381619224549],[-123.03319427100945,53.29363404079643],[-123.03704179845653,53.29520186982656],[-123.0396581378085,53.29694741829672],[-123.04187573966549,53.2977293069174],[-123.04401723770795,53.29959803463989],[-123.0465975912575,53.300146105644394],[-123.04822301036376,53.30036145669197],[-123.05233311056281,53.30055777656868],[-123.05357618139207,53.300429970558504],[-123.05400522999174,53.298597220523135],[-123.05527538431728,53.296356449305044],[-123.0568303617964,53.29348246285608],[-123.05850171842093,53.291525758637896],[-123.06162818344623,53.290925948227695],[-123.06381329103182,53.290446296106545],[-123.06646252249891,53.28956656630769],[-123.07177955731225,53.28883505545957],[-123.07466169673418,53.289148888607166],[-123.08174796603821,53.29046089202415],[-123.0863371076782,53.29133330507024],[-123.0893968517641,53.2914756590836],[-123.09643401557565,53.2943867249903],[-123.09879334785644,53.29355805578925],[-123.10389481100661,53.291800049523744],[-123.10721699268916,53.29096893080155],[-123.11159477579417,53.2907604822551],[-123.11596229623684,53.29026121928689],[-123.11930884598789,53.29016925844901],[-123.12549670054679,53.29011242736134],[-123.12646020229005,53.29010436511991],[-123.1281659548207,53.289801986966424],[-123.13207328896539,53.28964867837386],[-123.1370957638221,53.28880399763328],[-123.13875969842492,53.29044693304099],[-123.13955123303315,53.29186531808849],[-123.14597742599804,53.303409476669735],[-123.16147431313466,53.31578471912617],[-123.17395472321763,53.32252366572792],[-123.19893992797411,53.32833404811629],[-123.21791105419905,53.33112140647047],[-123.24619059419801,53.33208747219923],[-123.29275938435212,53.33507933761528],[-123.31655840744332,53.33928689847357],[-123.33326771046707,53.34253135772542],[-123.34293562052336,53.343050044906825],[-123.35824518062614,53.341282606706166],[-123.36784139617077,53.339571786704425],[-123.37761268368327,53.34060059041298],[-123.39322474885255,53.34534309087677],[-123.40823979460816,53.348825516611946],[-123.41488686912844,53.350977490454206],[-123.42514511539194,53.35223148904437],[-123.43732841581803,53.35379851215729],[-123.45266007414052,53.355389171096775],[-123.46103653248588,53.35739952201064],[-123.46526758497033,53.36095258265368],[-123.47234686448918,53.369789328867505],[-123.48015517913556,53.374554999505314],[-123.48459687511685,53.378674466764316],[-123.48575515828304,53.387297423496605],[-123.48558207672197,53.39347537444597],[-123.48713613014057,53.39952277268096],[-123.48653075905513,53.404102028493845],[-123.4868548020961,53.40827270041919],[-123.48995886227297,53.41212423642297],[-123.49640248840073,53.41336518490678],[-123.51377488022068,53.41503178911675],[-123.5313916955192,53.41538267790686],[-123.55270979401446,53.41539403693425],[-123.5720208193485,53.41514824936341],[-123.58624468917345,53.41415570661772],[-123.59774429003429,53.40960428777966],[-123.60518597582137,53.40687127263076],[-123.62449611788976,53.40896194272359],[-123.64544948089033,53.414336973770986],[-123.6664922511104,53.42200043270141],[-123.6832895677855,53.42331082281638],[-123.7020309943176,53.42551156181574],[-123.71529430309722,53.42469354239014],[-123.72791894355477,53.422279829794526],[-123.74075887370927,53.42032394274371],[-123.74790102368888,53.42416465436188],[-123.7577145508426,53.43255079012237],[-123.76679570792365,53.43945179780214],[-123.77228140971967,53.44274988746133],[-123.78155161823234,53.4467273762448],[-123.79105927210556,53.45225237604869],[-123.79587762502446,53.455385618307524],[-123.79947063085373,53.461168507997705],[-123.8056851206809,53.465651819627816],[-123.80866415868934,53.467899395102435],[-123.81455270919649,53.466780807706975],[-123.82815183383902,53.46463035470799],[-123.83947695872332,53.46291293519462],[-123.84397239729539,53.463012814347756],[-123.84960427217327,53.46687576103613],[-123.85013547264208,53.468301404855296],[-123.85514299001363,53.4687373408077],[-123.86655704508198,53.46913265901437],[-123.87563004502381,53.473111870602956],[-123.88956507580399,53.4762731997495],[-123.908240585757,53.47620776445569],[-123.92395541997081,53.474299254894454],[-123.92661811360259,53.47391187107251],[-123.93455219300111,53.471383983179145],[-123.94571791608645,53.46823103345428],[-123.9524945380113,53.465544188038585],[-123.95752145487494,53.462485182456604],[-123.95998618574161,53.45993185687624],[-123.96269665870273,53.460401279432936],[-123.96989959358089,53.4610301540956],[-123.98048424196784,53.460112235372435],[-123.9898361656515,53.4593844026177],[-123.99555527540532,53.458833521774764],[-123.99688376223106,53.458523567953506],[-123.99991231397826,53.45707495544681],[-124.02066234855158,53.44898771958581],[-124.03288631223654,53.44552777194568],[-124.04059586709162,53.4423762714204],[-124.04701644558894,53.43608154738383],[-124.0524536403699,53.43142957243442],[-124.05983637594328,53.43102108995824],[-124.06843199322033,53.431470081308646],[-124.07387993333722,53.43178858543686],[-124.07702973698503,53.432205928243135],[-124.08536807397196,53.43168521838997],[-124.08920593037955,53.43091026824812],[-124.09160601315473,53.42989420832692],[-124.09756372149168,53.42861558850053],[-124.11225462867604,53.43075328986046],[-124.11654298694452,53.43203427005257],[-124.12846772018908,53.43398272892627],[-124.13649352228116,53.435056031080805],[-124.13867366079597,53.43557815173918],[-124.14410981433922,53.43652639810476],[-124.14909884646126,53.435980941658315],[-124.15236017916735,53.4352560916889],[-124.15562891562335,53.43401578146276],[-124.16263877784928,53.4327972827657],[-124.1685775007589,53.432257263865864],[-124.18236620635957,53.43198097863008],[-124.19068848847743,53.43179445221615],[-124.20531959928472,53.43192275980073],[-124.21256774423064,53.43321789454838],[-124.22008337521332,53.43604674891428],[-124.23337999426734,53.44318782732464],[-124.24193496296473,53.44722574317171],[-124.24936748773716,53.45650483983974],[-124.25792756262946,53.460885054369854],[-124.26054314678308,53.465180281394446],[-124.26492363159608,53.46771047053935],[-124.26832853853234,53.47120457327289],[-124.27106150026604,53.47379013816944],[-124.27534742627728,53.475349261484155],[-124.27842237910296,53.47513596368133],[-124.28180933798964,53.47172510562935],[-124.28275024574397,53.46607256636757],[-124.28475449645362,53.45951701888168],[-124.29593991910906,53.45288237650285],[-124.30862372905267,53.44830796824185],[-124.32261559715732,53.445680242315994],[-124.3374570582116,53.445566619604904],[-124.35376470548013,53.45001968367617],[-124.37054098876689,53.45687928222409],[-124.38427744704313,53.46086146933132],[-124.39227674588031,53.464886943727436],[-124.39559058631487,53.46826511383925],[-124.39715869001814,53.474662478848764],[-124.39622619466319,53.4816805683321],[-124.39488359353506,53.48242277697987],[-124.39598680805,53.48636666517029],[-124.3963107177429,53.49173150585608],[-124.39292005472507,53.49623287665008],[-124.38596625090219,53.50140929907503],[-124.38133325824718,53.50476071341688],[-124.38543178243968,53.507053866336555],[-124.39797067326853,53.50921282711073],[-124.41557235151144,53.51103942501628],[-124.4230437019854,53.511744546642596],[-124.43243459657667,53.51205984357704],[-124.44240649133556,53.51220158620829],[-124.46326772239154,53.515919095291146],[-124.48789990116298,53.52711549063481],[-124.52390039693253,53.53456474205967],[-124.52972177686728,53.53806227633034],[-124.57051597215495,53.54693817243736],[-124.57272831116715,53.54505655699108],[-124.57802850823137,53.54266829611914],[-124.58168452809421,53.54102049050741],[-124.58466356235927,53.53925476402782],[-124.5849637571996,53.53708191102132],[-124.58325424867022,53.53485330605995],[-124.58201922067862,53.53291041122529],[-124.58198143909985,53.53268587902582],[-124.58173541840833,53.53056872752587],[-124.58164140526942,53.52977099272833],[-124.58155367339103,53.52834029467752],[-124.58050971255581,53.52656827281301],[-124.57706293263914,53.525649394098906],[-124.56978911638555,53.52477764037549],[-124.56653082679698,53.524548652329926],[-124.56386463909544,53.52248360185418],[-124.5640622660998,53.5198014293617],[-124.56406911866588,53.518717490723645],[-124.56207347809118,53.51562796910614],[-124.55750616780014,53.51128160017634],[-124.5534986476963,53.50870091257989],[-124.54901489368649,53.50635687292999],[-124.54500444503373,53.50388901168541],[-124.54461808405956,53.50326300965193],[-124.54319809089199,53.500631128159895],[-124.54321763839415,53.49789018772789],[-124.54256244442728,53.49543400624018],[-124.53979519670773,53.493320060927545],[-124.53503030468855,53.491307580577526],[-124.5335053178975,53.49084570146478],[-124.52966970953412,53.48992453751871],[-124.52547247771415,53.488550039656936],[-124.51917894630975,53.48408043193895],[-124.51765236063024,53.482819997322025],[-124.5166203553985,53.48081722210906],[-124.51691558039131,53.4780174868439],[-124.52038408037198,53.47602916076972],[-124.52547820595437,53.47375720018525],[-124.52778231798126,53.471359857145785],[-124.52780603174335,53.46982119275792],[-124.52727432318764,53.46388005727471],[-124.52702226987103,53.45685606162984],[-124.5270466444709,53.453145347954845],[-124.52708976061503,53.447607358468474],[-124.52711323910003,53.44435265364446],[-124.52712611113238,53.44355447431677],[-124.52736120962116,53.437273710842916],[-124.52702383647365,53.43053597200369],[-124.52612886283802,53.41991160761801],[-124.52484663028166,53.41174356236266],[-124.52421483942885,53.40825882172928],[-124.52062190935517,53.40151249955463],[-124.5188248238958,53.39859755992952],[-124.5201854139356,53.395060227950204],[-124.5216462058739,53.391238391532674],[-124.51815668583113,53.38460413209768],[-124.51427111186045,53.38025737481735],[-124.51181236798871,53.37734242671581],[-124.50716308505571,53.37247545429085],[-124.5037534066177,53.369213896785965],[-124.50224189536443,53.36681207170925],[-124.50092381684013,53.36321256057797],[-124.50095937303274,53.35967380526541],[-124.50096303069071,53.358301195056605],[-124.50077253373969,53.357728996461525],[-124.49697263693147,53.35532117714603],[-124.49251320882105,53.351997229324965],[-124.49015218099011,53.34896421443746],[-124.48791009235252,53.342625918494484],[-124.48406869432254,53.33222140480224],[-124.481650079955,53.324566244523176],[-124.48100597849039,53.322393641896326],[-124.47810497085268,53.314794940074655],[-124.47718815009794,53.309767520205845],[-124.4771961013055,53.30788057903149],[-124.4777046064073,53.304628470392004],[-124.48222411405953,53.299840950496765],[-124.48969757683582,53.295688135517366],[-124.49793574600055,53.29028837211711],[-124.50321440767279,53.284760004180484],[-124.50362369845814,53.28127344368726],[-124.49381305104434,53.27982652045864],[-124.48132894359838,53.279165982154055],[-124.47219077688689,53.27869292726364],[-124.46142417053193,53.27712116743051],[-124.44848014402835,53.274691294689084],[-124.44164015431676,53.27266863629287],[-124.44185915509539,53.26958592839332],[-124.44544591525477,53.26320236041727],[-124.44852863937716,53.25823918928654],[-124.4506520729367,53.254423243134056],[-124.45161778834361,53.25431034386222],[-124.45314823823163,53.25231545003925],[-124.45430961325158,53.250549379662814],[-124.45508747636163,53.24940864368327],[-124.45603885849634,53.24804043546324],[-124.45805913602844,53.247017822783334],[-124.46081626130838,53.24679532991184],[-124.46367934208436,53.24737594845001],[-124.4664244740145,53.24789726469086],[-124.46786502935365,53.24669833440598],[-124.46930107858518,53.24562148435735],[-124.47418114132796,53.243178683978634],[-124.4755244692737,53.24174980690137],[-124.47876297624687,53.24107700968854],[-124.48277020934442,53.24074341334377],[-124.48639917715064,53.238808551925594],[-124.48728161480771,53.23681392112977],[-124.4879443600301,53.235500618790034],[-124.49090979139136,53.233624395507746],[-124.4948191107323,53.23306559749155],[-124.49825818196032,53.23221439624868],[-124.50017992047043,53.23010956455229],[-124.50246895453388,53.22822730526553],[-124.50361931123089,53.22754312621807],[-124.50611949832286,53.224351227418964],[-124.50793842979073,53.22258564092527],[-124.51138449976665,53.22065108994491],[-124.5131009058199,53.219228721554764],[-124.51435088282928,53.21740659208443],[-124.51482734814985,53.21666287371736],[-124.51646462461916,53.21534872970101],[-124.52102731130255,53.21536261786873],[-124.5252100172607,53.21594198408084],[-124.52797120475071,53.217257167496],[-124.53425229123648,53.21750366886967],[-124.53852714641776,53.217165368195396],[-124.53939321906631,53.21642860125682],[-124.54254198491482,53.213917424271166],[-124.54676831967375,53.2093014473952],[-124.54946121238105,53.20473938703146],[-124.55032438076033,53.20188567374101],[-124.55033149523949,53.200802695195065],[-124.5503518093289,53.19845918020279],[-124.55035259783082,53.19668525978636],[-124.55045613694259,53.194977590713826],[-124.54979539805919,53.19412007737971],[-124.54847007297985,53.193830978809046],[-124.54676962906342,53.19354397830479],[-124.54495440872421,53.193541309530204],[-124.5418104772662,53.19421984348247],[-124.53818715597656,53.19444077072992],[-124.53297048737772,53.19431519979321],[-124.52839782635819,53.19379118029823],[-124.52326825400989,53.1933222401182],[-124.51642042577363,53.19308369954828],[-124.5109049099566,53.193355725107644],[-124.50557228100212,53.19396934412432],[-124.50300593623398,53.193569371579706],[-124.50072949097546,53.19218742102234],[-124.49674509292778,53.19201253000515],[-124.49455985762332,53.190183350473546],[-124.495148493929,53.187552853008675],[-124.49783380923554,53.18459035946147],[-124.49945923374763,53.1831675844966],[-124.50185756307765,53.18151643720348],[-124.50138582075658,53.18128465482136],[-124.5013988099957,53.17837732399394],[-124.50142826076532,53.175005121346565],[-124.50116341921468,53.17232118956878],[-124.4996623066729,53.169405306391326],[-124.49530779278008,53.16494028240734],[-124.49221323764323,53.16048104765864],[-124.48920656018225,53.15567767187388],[-124.4866537284305,53.152871984450414],[-124.48457913663964,53.15053238705741],[-124.48251064707168,53.148865224776195],[-124.47852259171118,53.14765579683743],[-124.48099990796803,53.14669416057232],[-124.49120769771986,53.140324913205156],[-124.49580000001427,53.137590693510724],[-124.5006611654642,53.13486250452133],[-124.50626305104254,53.13447671384087],[-124.53088374192195,53.13172287123595],[-124.57003026599885,53.128999826440754],[-124.5774428267003,53.129069612274755],[-124.6094318384434,53.13476802072757],[-124.65111064119226,53.140867189297126],[-124.6664971259412,53.14139125503449],[-124.67808190382415,53.14083209429046],[-124.69386159116807,53.13833023954113],[-124.70003967089372,53.1391328511378],[-124.71342190162939,53.14496169439543],[-124.71988028264903,53.14793632213387],[-124.73013896712095,53.14965266519722],[-124.7584492529547,53.15114145889179],[-124.77375593327353,53.15251128360883],[-124.7805942980648,53.15496596487796],[-124.78629456243232,53.15793411077716],[-124.79836189647875,53.15947587621576],[-124.80216175802401,53.16026965138028],[-124.80606760090072,53.16049960980135],[-124.8143390888975,53.15792703255366],[-124.82735777570129,53.15437906759004],[-124.83619325437711,53.15300508021406],[-124.84180264324112,53.15339851922151],[-124.85196772447291,53.15436487321811],[-124.86317708431672,53.15441257074814],[-124.87173515125122,53.15440426978555],[-124.87913937014463,53.15325602975728],[-124.88294938177653,53.151994463250745],[-124.88701843716228,53.14999117001816],[-124.88977578445393,53.14599207089179],[-124.89184633096235,53.14073538357575],[-124.89194370738174,53.14044943483222],[-124.8925157236679,53.137481969464204],[-124.89468327163381,53.13421957939298],[-124.89629168304481,53.13170774925537],[-124.89258084962685,53.126968966811916],[-124.8840289641409,53.12183708684193],[-124.8799290113676,53.119440654227986],[-124.8725236097867,53.11522809533028],[-124.86454058429365,53.11083524832092],[-124.86007271953358,53.1088385212473],[-124.86757929387596,53.10917736402987],[-124.87877481498971,53.11099351520381],[-124.8875262178015,53.112981157118774],[-124.89559719591094,53.11525369029029],[-124.89938680507679,53.114626773945616],[-124.9067861425173,53.112787102598254],[-124.91039636845058,53.11038656584581],[-124.90734181862005,53.106333299050746],[-124.9036308418915,53.10279603774534],[-124.90334100837315,53.100112385570775],[-124.90503951561352,53.09520097048481],[-124.90568922363413,53.09148331335946],[-124.90606271397185,53.086287284657026],[-124.90680093409767,53.080287795308315],[-124.90755429723498,53.07543478396932],[-124.91124908333823,53.07194520548848],[-124.91853575595319,53.07010490934386],[-124.92678861463602,53.06906801237862],[-124.93740848103266,53.06905534126877],[-124.94783677606802,53.06892570949198],[-124.9456492203256,53.06607056019942],[-124.93415446546075,53.059860730718285],[-124.92827124167287,53.05478329052435],[-124.92702419148776,53.05324739674878],[-124.92198379063144,53.04742870381241],[-124.92045418783712,53.04114942605791],[-124.92241764044647,53.03446052987262],[-124.92241961516234,53.0332049081376],[-124.92334006026053,53.02755197462297],[-124.9234300034588,53.022235471084635],[-124.92322914328437,53.01955031130815],[-124.92349523378786,53.01612476053077],[-124.92415789822667,53.015322837966615],[-124.92529603622091,53.013439361134324],[-124.92897701830996,53.01200258712021],[-124.93277636448235,53.01416845049953],[-124.93364162125945,53.01599896984184],[-124.93505377946128,53.0162778707115],[-124.93714169147245,53.015819884212526],[-124.93875497787502,53.015822083604455],[-124.94073980637341,53.01530202814425],[-124.94263708579636,53.015296639125495],[-124.94367348041342,53.015068910130765],[-124.94499943732549,53.01460956228817],[-124.94574479579018,53.013467593276474],[-124.94650803462272,53.012205307820594],[-124.94943646140408,53.01157026403435],[-124.95228940208024,53.01156986816967],[-124.95492682781403,53.01122234355153],[-124.95824525848545,53.00990247842174],[-124.96372095501721,53.00646952488543],[-124.96636006312917,53.00480783170821],[-124.96788139037535,53.003659639547124],[-124.96901430922664,53.002513626427906],[-124.97368825801261,53.00005093519339],[-124.97966496845825,52.99865553093638],[-124.98232190610256,52.99744972945102],[-124.98485798632444,52.99567132018233],[-124.98693373465574,52.99315208785018],[-124.98833864098121,52.99120866568725],[-124.99257893701493,52.988675945865396],[-124.99865661387707,52.989236494505406],[-125.00434706423326,52.99167610010729],[-125.00862055928286,52.992801357518005],[-125.01241764127728,52.99387764272291],[-125.01869365172314,52.99688398856686],[-125.02088297170208,52.99842342563181],[-125.02459085036449,52.99886709937594],[-125.02781250337044,52.999028180684824],[-125.03102514129593,52.99827580335042],[-125.03500050401108,52.998780183385335],[-125.0366930950386,52.997230220023134],[-125.0409624808398,52.99727566699836],[-125.04607512751272,52.996339974464085],[-125.05015977590666,52.997298573595],[-125.05366378305578,52.99751837412395],[-125.05734965812125,52.99761849917016],[-125.06246923967439,52.997030105845596],[-125.06424923879145,52.9948517810227],[-125.06776803203242,52.9957526079493],[-125.06830348002892,52.99312230081466],[-125.07342608511443,52.99304781674742],[-125.07549389754118,52.991331032543144],[-125.07775458660883,52.98966167455163],[-125.08513712509985,52.98860811813181],[-125.0880643374089,52.98785366601076],[-125.0916567436153,52.986702528553565],[-125.0961084016241,52.98725334796999],[-125.10038377054921,52.98838031853997],[-125.10360608349664,52.98848387355935],[-125.10880993105059,52.9880633206477],[-125.11410794544022,52.9874168943633],[-125.1172281246867,52.987404443899756],[-125.12064879434317,52.98802000232843],[-125.12492809991954,52.989715377724806],[-125.12949018901675,52.991469823360234],[-125.13536488504968,52.991100679770646],[-125.13857155384882,52.990516238932436],[-125.13958935602201,52.98817322375354],[-125.1432713566997,52.98621043240077],[-125.14532917683688,52.98409007368732],[-125.14805969363036,52.98190787134177],[-125.15127116443136,52.981039047203076],[-125.15504521686266,52.9803938076787],[-125.15654295091905,52.97787422892332],[-125.1588869001715,52.97632383052148],[-125.16303670671489,52.974757645701914],[-125.16538959381033,52.97349124878647],[-125.16973761782101,52.972446190687656],[-125.17588677048658,52.97161920938709],[-125.18052181622814,52.971142784960826],[-125.1856266400842,52.97106387672671],[-125.18969849989165,52.9711597496466],[-125.19566787347075,52.971128366629046],[-125.19869719545262,52.971119315435374],[-125.20210602816513,52.971560985339224],[-125.20722476894898,52.97153558883904],[-125.210465413901,52.9730051518427],[-125.21454299935435,52.9744191279697],[-125.21920077005248,52.975134761895106],[-125.22414247442414,52.97665554050273],[-125.22774294066994,52.97726637664375],[-125.23286903772183,52.977696543577416],[-125.23628385359515,52.9778531928507],[-125.24007246295564,52.97880776726595],[-125.24445125965427,52.98015484474709],[-125.25117698194846,52.98046391231647],[-125.2548736698112,52.9807338692498],[-125.25960637776073,52.980651638121884],[-125.26338765689411,52.97948864088498],[-125.26590972178337,52.976907433499086],[-125.27022439162904,52.97420001874588],[-125.2727671328465,52.97298478598018],[-125.27626097433786,52.97199048650034],[-125.28107684474644,52.97134146109329],[-125.28597918656925,52.969088083556066],[-125.290785462125,52.96809066019365],[-125.29464051980753,52.965957804716325],[-125.29785615581878,52.96548171593609],[-125.30088423120043,52.96551989412239],[-125.30560207552601,52.964409285810575],[-125.30967729967396,52.96427075125802],[-125.31532713482056,52.962700736280624],[-125.31797054849125,52.96159548922488],[-125.32399999465319,52.95956389204887],[-125.32975635952994,52.95873281748091],[-125.33411353032609,52.958648267747556],[-125.33959057692635,52.957531627824665],[-125.34348152519081,52.95865042580812],[-125.34765866609035,52.959602591927364],[-125.35306900729455,52.95991369393932],[-125.35610474874613,52.96040657152966],[-125.36320832884253,52.96122286440989],[-125.36861810822751,52.961592637615965],[-125.37314975196082,52.960817313895376],[-125.37605426967112,52.95908855652225],[-125.37848372488459,52.957188023445525],[-125.3814093480903,52.95602737592229],[-125.38876518068363,52.95484098878864],[-125.39688391653968,52.953468675406505],[-125.40238085139127,52.95395388937664],[-125.40588629561762,52.9539318477313],[-125.40927872162231,52.95345529384998],[-125.41306762338131,52.953424930662834],[-125.41848162684097,52.95453370226043],[-125.42283659923383,52.95456296694392],[-125.42758580179702,52.9552237475317],[-125.43278159158693,52.95484379303369],[-125.4368539362112,52.95481739054179],[-125.44186602422886,52.95478633953679],[-125.44972733436616,52.954729201021735],[-125.45417940573387,52.95533036981896],[-125.46053893067841,52.9560835533239],[-125.46591633232566,52.95547830116769],[-125.47273771122458,52.95508994288182],[-125.48305754721001,52.95524326098111],[-125.49005362066482,52.95519588302645],[-125.49563260879756,52.955154347307925],[-125.50185878296139,52.95334144609715],[-125.51096928117627,52.94967672220763],[-125.5200886422695,52.94640857285867],[-125.52382780681069,52.9440924198411],[-125.52835149485975,52.94360468563679],[-125.54160897263553,52.94350912595475],[-125.54749042240756,52.94432075128978],[-125.55425490080779,52.94627055664693],[-125.55989314259148,52.9490287356346],[-125.56585477879025,52.95378297529258],[-125.57849158332402,52.95642407746858],[-125.59072974721823,52.95724825936788],[-125.59716651804813,52.95799712000445],[-125.61464218395466,52.96037063695313],[-125.62183290673867,52.9603110196273],[-125.62739411012019,52.95894822851811],[-125.6329424531932,52.95730556285516],[-125.63952398443256,52.95513970041212],[-125.6459559261833,52.95473843905052],[-125.65087693754175,52.954869109036956],[-125.65560545649839,52.95482924335388],[-125.65948371367644,52.95479849411988],[-125.66471309458612,52.95555081514545],[-125.67173307380335,52.956237877350034],[-125.67951365811419,52.95697028439055],[-125.69228476473846,52.95657180972955],[-125.7003809942764,52.95490234730392],[-125.7094308413976,52.953275580117776],[-125.71955744626558,52.95336119225156],[-125.72859888960917,52.95522230318949],[-125.73928604020765,52.95884113420576],[-125.7458568545473,52.96009256711597],[-125.75252946600547,52.96186153314781],[-125.75832628794033,52.96295376323778],[-125.7626038974968,52.96365439486978],[-125.76699598145957,52.96527056341096],[-125.77160159393753,52.966081882741385],[-125.77336966133988,52.96640688951577],[-125.77293182037958,53.006502661943415],[-125.77197532391953,53.09430355309072],[-125.77073987252979,53.20707797116679],[-125.80666577798375,53.20707199894113],[-125.81333424422013,53.207072051297395],[-125.81999988726558,53.20707227983318],[-125.82666646058244,53.20707213480823],[-125.83333304660844,53.207072170481595],[-125.83999961754854,53.20707184007027],[-125.84666712955865,53.20707224726293],[-125.85333371330611,53.2070717224693],[-125.86000027811575,53.20707194300082],[-125.86666685793995,53.20707178852419],[-125.87333249070109,53.207071822677335],[-125.87999905209685,53.207072038556014],[-125.88666750402996,53.20707188121818],[-125.8933331336638,53.20707190180801],[-125.89999969217004,53.20707211293007],[-125.90666626568789,53.20707194903971],[-125.91333376819823,53.207071975470825],[-125.9200003254099,53.207071617170456],[-125.9266668954953,53.20707201318976],[-125.93333345065636,53.20707202521197],[-125.94000002075359,53.20707167118102],[-125.94666564471406,53.20707149740337],[-125.9533321982084,53.20707150477749],[-125.96000064164235,53.20707170243355],[-125.96666626428775,53.20707152405976],[-125.97333281672287,53.20707153564381],[-125.98000125937045,53.20707172822795],[-125.98666688122763,53.20707154525851],[-125.99333343314163,53.207071543127086],[-125.99989777619953,53.20711206399207],[-126.01165455319754,53.20718319476895],[-126.01213095990336,53.20725877655515],[-126.01238324071457,53.207357343199135],[-126.01263928728515,53.207450862744324],[-126.01290376386176,53.20753262139087],[-126.01317949005251,53.207599257654785],[-126.01346084127177,53.20765804107061],[-126.01374594274625,53.20771178619025],[-126.01403384929198,53.207761048803455],[-126.01432364631329,53.20780806974411],[-126.01461342858742,53.20785396960513],[-126.01490415697356,53.20790043330479],[-126.01519395632033,53.20794857248532],[-126.0154809367037,53.20800007243906],[-126.01576604367632,53.208055488764764],[-126.01605115118525,53.20811034869874],[-126.01633813479432,53.208164651982415],[-126.01662604898284,53.208217825104605],[-126.01691490919119,53.208271006353854],[-126.01720377012245,53.208324177934585],[-126.01749263178381,53.208377357772584],[-126.01778056434797,53.208431648453015],[-126.01806755259571,53.20848650324354],[-126.0183526667276,53.208543042666165],[-126.01863683706105,53.208601257625176],[-126.01891914858719,53.20866171294023],[-126.01919864103587,53.20872440878014],[-126.01947531443894,53.20878934516443],[-126.01974918435546,53.20885764248128],[-126.02001930553028,53.20892930090939],[-126.02028567827536,53.20900487617802],[-126.0205351793231,53.209096703630266],[-126.02076313005152,53.20921038604467],[-126.02097513889848,53.20933862669425],[-126.02117870539207,53.20947527572704],[-126.02138134373632,53.209613609605356],[-126.02158960747792,53.209746331286745],[-126.0218222490569,53.209865612623545],[-126.02203521119357,53.20999665656504],[-126.02222377191617,53.21011986210057],[-126.02229419706802,53.210272219237105],[-126.02230835076156,53.210449790772095],[-126.02230469603604,53.210632976454626],[-126.02233200214518,53.21082455458243],[-126.02236023203405,53.21100324377556],[-126.022452228533,53.21116736503854],[-126.02261737025478,53.211315778141916],[-126.02281439677664,53.21145747161577],[-126.02300110243918,53.211602518900584],[-126.02316437543111,53.211757098083716],[-126.02331827338223,53.21191616035142],[-126.02341872364532,53.212079714455534],[-126.02340194205186,53.212260661868065],[-126.02327448125229,53.212425381214935],[-126.02306071167455,53.21254921928801],[-126.02282160554647,53.21266410786056],[-126.02340126205556,53.2127401799102],[-126.02369484921036,53.212776529084906],[-126.02398936344859,53.21280616409445],[-126.02428668137138,53.21283075165653],[-126.02458588944943,53.21285365304586],[-126.02488507988078,53.21287151650557],[-126.02518427923434,53.212878740186596],[-126.02548157911663,53.21287138976429],[-126.02577794270383,53.212854520147],[-126.02607430363915,53.21283373297986],[-126.02637160757487,53.212809574792345],[-126.02666701862103,53.212782619844035],[-126.02696337289966,53.2127528675039],[-126.02725879528946,53.212721429601686],[-126.02755420113567,53.21268830593162],[-126.02784962115922,53.21265462581832],[-126.02814314993334,53.21262094541712],[-126.02843762362845,53.21258726406149],[-126.02873209647683,53.212553026270704],[-126.02902656846071,53.212518223081766],[-126.02932103918286,53.21248229879182],[-126.02961550861993,53.212445253400745],[-126.02990810019291,53.21240596701301],[-126.03019975924413,53.21236443940156],[-126.0304895253413,53.21232067081996],[-126.03077648225914,53.21227354115093],[-126.03106062911567,53.21222193004566],[-126.03132317213351,53.212137268596145],[-126.03157444707323,53.2120358129873],[-126.03181633745652,53.21192819284671],[-126.03204697728088,53.211827297464865],[-126.03225133822252,53.2117034367267],[-126.03234033586956,53.21158297723447],[-126.03246682501454,53.2114137668424],[-126.03254734510344,53.21123728204769],[-126.03270009153124,53.21108655474539],[-126.03289225154857,53.210948696074624],[-126.03310128092302,53.21081643422154],[-126.03330374982453,53.210681933093646],[-126.03348276429195,53.21052894764884],[-126.03365332230685,53.21036701032298],[-126.03384358168799,53.21022466911313],[-126.03407703199031,53.21012825036408],[-126.03435176572968,53.2100749489731],[-126.03463119909979,53.21002613601527],[-126.03491626202472,53.20998123755405],[-126.03520414858798,53.20994025438282],[-126.03549671904912,53.209902639182985],[-126.03579116700692,53.209867819138125],[-126.03608842236288,53.209835238247344],[-126.03638757080569,53.20980601714098],[-126.03668858093049,53.209778470777096],[-126.03698960763614,53.20975317334738],[-126.03729156528131,53.209728986267244],[-126.03759352407907,53.20970648345478],[-126.03789453874185,53.20968566521199],[-126.03819369246388,53.20966483784102],[-126.03849190159644,53.20964513935514],[-126.03878916717605,53.20962767220607],[-126.03908738612539,53.20961917592588],[-126.03938655601225,53.20961683613704],[-126.03968666091053,53.209619532466895],[-126.03998769881723,53.209625033130465],[-126.04028780702286,53.209631098012316],[-126.04058886009517,53.209636597143785],[-126.04088801935033,53.20963873505154],[-126.04118811959331,53.209636390394124],[-126.04148633756792,53.20962732341065],[-126.04178267146818,53.209609849078525],[-126.04207994710929,53.209589021521346],[-126.04237627544786,53.209566508519146],[-126.04267353265571,53.20954287407025],[-126.04296985807788,53.2095181188424],[-126.043266181429,53.20949167783609],[-126.04356250268289,53.20946356001428],[-126.04385882238061,53.20943432108055],[-126.04415420960609,53.20940340567785],[-126.04444958020753,53.20937136021056],[-126.04474401887438,53.209338202950164],[-126.04503845528474,53.20930335992033],[-126.04533195909413,53.209266831476896],[-126.04562451588383,53.209229191262075],[-126.04591707092638,53.20919042099077],[-126.04620867890631,53.20915053895738],[-126.04649935355643,53.20910840686626],[-126.04678721365522,53.20905899724107],[-126.04707224281186,53.20900118973676],[-126.04735631897633,53.208937215402244],[-126.04763852925734,53.20886931535325],[-126.04792072109815,53.20879918285711],[-126.04820105204142,53.20872960614709],[-126.04848324457575,53.20866170408526],[-126.04876451108765,53.20859829217836],[-126.04904765883411,53.20854047171775],[-126.04933269186179,53.208491621729095],[-126.04962055628313,53.20845228854486],[-126.04998813498403,53.20842131936914],[-126.05020381673391,53.20841226522499],[-126.05049920994972,53.20840877860684],[-126.05079837939147,53.20841369690246],[-126.0510994189501,53.20842644727491],[-126.0514014101198,53.20844424262372],[-126.05170528398091,53.20846763823944],[-126.05200916162869,53.20849383848473],[-126.05231304241393,53.208522269729464],[-126.05261692501297,53.20855182952837],[-126.05291987632941,53.20858025962915],[-126.0532218806442,53.20860701330472],[-126.05352200620634,53.20863097061163],[-126.05381930549663,53.208650437992894],[-126.05411473658859,53.2086637479195],[-126.05440639301838,53.20867033661352],[-126.05469430248687,53.20866852801432],[-126.05497843188854,53.20865607245833],[-126.05522779474107,53.208585928811345],[-126.05544331756225,53.20845586507208],[-126.05564755534948,53.20830284309153],[-126.0558658837144,53.20816324960341],[-126.05611708728713,53.208070140054694],[-126.05638988338941,53.20800111217447],[-126.05667396049238,53.20794215265365],[-126.05696553613278,53.20789216078465],[-126.05726181961109,53.20785111993522],[-126.05755998876019,53.20781792899544],[-126.0578562926013,53.20779257185689],[-126.05815167660784,53.20777506599593],[-126.05845080885457,53.207766511563726],[-126.05875089561238,53.207764687098816],[-126.05905193622345,53.207769018963766],[-126.05935296818174,53.207777831556825],[-126.05965307473024,53.20779000496747],[-126.05995130906985,53.20780441930935],[-126.0602523644536,53.207818831466525],[-126.06055715936635,53.20783548169226],[-126.06086103069087,53.20785661309665],[-126.06116023225982,53.20788558873645],[-126.06145100216204,53.20792520704593],[-126.06172771800358,53.20797828538984],[-126.06197916537646,53.20806106168026],[-126.06219411263469,53.208188106804045],[-126.06238938901468,53.208334772875574],[-126.0625780888912,53.20847752526779],[-126.06272836944765,53.2086348535594],[-126.0629067626615,53.2087770461943],[-126.06313107934133,53.20889401021921],[-126.06336944676158,53.209004235109184],[-126.06361061798951,53.20911222622929],[-126.06384618365199,53.209223572023866],[-126.06406861975996,53.209343896375735],[-126.06427513537479,53.209473182944876],[-126.06447510271573,53.20960751885978],[-126.06466943367971,53.20974466291311],[-126.06486378176183,53.20988236233297],[-126.0650599891685,53.210018375366225],[-126.06526276325611,53.21014991192952],[-126.0654786552639,53.21027303362883],[-126.06572640100899,53.21037428555769],[-126.06598071333308,53.210471060788784],[-126.06641971668182,53.21053131558439],[-126.0667142628338,53.210572039191106],[-126.06700784557414,53.21060100320099],[-126.06730421407924,53.21060755749115],[-126.06760709595606,53.21057713509719],[-126.06787800389445,53.21050191542199],[-126.06812262763127,53.21040262674723],[-126.06835971713492,53.210293814275126],[-126.068592115576,53.21017995788662],[-126.06882450913307,53.21006386925882],[-126.06905784948064,53.209949455690555],[-126.06929775408683,53.20984007500523],[-126.06954329545299,53.20973742170909],[-126.0697897668613,53.20963532305434],[-126.07003718239937,53.20953322332283],[-126.07028554484621,53.20943279858233],[-126.07053671486064,53.20933405668277],[-126.07078976402008,53.20923811853253],[-126.07104562170476,53.20914440993267],[-126.0713052520592,53.20905518895431],[-126.07156769385914,53.2089698825235],[-126.07183201020624,53.20888457437083],[-126.07209725387546,53.20879814468825],[-126.07236343984471,53.20871059346025],[-126.07262962471177,53.20862304163031],[-126.07289768599853,53.20853660841541],[-126.07316669438515,53.208451850081104],[-126.07343663588951,53.208369340260354],[-126.07370938903466,53.20829074489237],[-126.07398309429682,53.20821662978642],[-126.0742586830182,53.2081475500578],[-126.07453615727854,53.20808463502751],[-126.07481646445927,53.208029004457295],[-126.07521397028952,53.20796432695708],[-126.07538460977675,53.20794349613011],[-126.07567527911554,53.20791921839197],[-126.07596972239932,53.20790782628388],[-126.07626793383224,53.207905958665066],[-126.07656991054802,53.20791192150614],[-126.07687282680142,53.20792292912519],[-126.07717669361661,53.20793674076311],[-126.07748150589835,53.20795054204079],[-126.07778537104991,53.20796323174688],[-126.07808828280669,53.207971430850066],[-126.07838837639024,53.207972917772366],[-126.07868657773484,53.20796543324997],[-126.07898007350879,53.20794507131313],[-126.0792697577236,53.20790062767489],[-126.07955472514526,53.207837695867795],[-126.07983123383563,53.20776132460199],[-126.08009928130544,53.20767823617143],[-126.08035794038977,53.20759010733864],[-126.08060813387578,53.2074930296771],[-126.08085363199596,53.20738922348598],[-126.08109631774798,53.20728262225397],[-126.08133710851845,53.20717434574086],[-126.08158072315109,53.20706829857033],[-126.0818149427113,53.20695385906308],[-126.08204822749646,53.20683774365408],[-126.08230406206961,53.20675241789733],[-126.08260498625786,53.20669955098325],[-126.08290505229547,53.206691498829215],[-126.0831508959073,53.20676863233045],[-126.08336029066692,53.20691189297248],[-126.0835687300167,53.20704170943302],[-126.08376874492251,53.20717489259265],[-126.0839612561663,53.207314238291474],[-126.08414254269955,53.20745975816959],[-126.08434254304258,53.207591264266554],[-126.08461096949027,53.20770254551477],[-126.08488489921801,53.2077516460144],[-126.0850102753945,53.207609268826715],[-126.085076476083,53.207415961514016],[-126.08512486125022,53.207227704138695],[-126.0853628616028,53.20713230124659],[-126.08557367528024,53.207045315821354],[-126.08585485036461,53.20696949175557],[-126.08618770455426,53.20694067615039],[-126.08647366909712,53.20691862503533],[-126.08663523452321,53.20705071104901],[-126.08679499671334,53.20721752971443],[-126.08699969818161,53.207347898570255],[-126.08720722058301,53.20747770928362],[-126.0874147281054,53.20760696393158],[-126.08762412628533,53.207735652142546],[-126.08783350956244,53.20786377531892],[-126.08804383823657,53.20799134171025],[-126.08825511464624,53.208119471682494],[-126.08846732025994,53.20824647124134],[-126.08867858303866,53.20837403578555],[-126.0888907923886,53.208501599235525],[-126.0891020727241,53.208629162996196],[-126.08931333932954,53.20875672638277],[-126.08952462221443,53.20888428937267],[-126.08973496226429,53.209012417359496],[-126.08994435825885,53.209140536718685],[-126.09015282762118,53.209269785739615],[-126.09036036792709,53.209399026131294],[-126.09056602128129,53.209529396928076],[-126.09077074677906,53.20966032377481],[-126.09097359909444,53.209791807401835],[-126.09117552356567,53.20992385605438],[-126.09136339373048,53.21006487815989],[-126.09152035163368,53.21022553481044],[-126.09166420937862,53.21039235893234],[-126.09181366326375,53.210551335933594],[-126.09198652188222,53.21068732248557],[-126.09221930602047,53.21077845629206],[-126.09253821490547,53.210797254022566],[-126.09284294827565,53.210763404569676],[-126.09309315775977,53.21067806010944],[-126.09332642098073,53.21055687658958],[-126.09355967033822,53.21043681298376],[-126.0937888577376,53.21017053919926],[-126.09391979453555,53.21000854633544],[-126.09402163906304,53.209841530242414],[-126.09409159445336,53.209666696767115],[-126.09413808761929,53.20948795609027],[-126.09416299947904,53.209307556450675],[-126.09415885033081,53.20912886492025],[-126.09410125386417,53.208950206859974],[-126.09405021500301,53.20877155251399],[-126.09406388197412,53.208595078570596],[-126.09411132438036,53.20841858675506],[-126.09417375723852,53.20824263869714],[-126.094248389517,53.2080672365928],[-126.09433240150223,53.20789295629427],[-126.09442391999289,53.207720901721125],[-126.09452014037682,53.20755164872454],[-126.09462572518683,53.20738350852977],[-126.09473883006171,53.20721704725467],[-126.09485849337112,53.20705169201677],[-126.0949837860796,53.20688801717212],[-126.09511283135707,53.20672545954151],[-126.09524187564246,53.206562901756136],[-126.09536528234426,53.206395866858024],[-126.09548774029571,53.206227712206385],[-126.09561584252704,53.206061237900485],[-126.09575707099768,53.20590091040929],[-126.09591709092975,53.20575065089222],[-126.09610150496496,53.20561325118606],[-126.09631222106765,53.20548983896582],[-126.0965304304059,53.205369781380696],[-126.09675428753073,53.205253079896686],[-126.09698376116727,53.20513917880236],[-126.09721700456973,53.20502750594893],[-126.09745398777964,53.20491807926513],[-126.09769473818294,53.2048097604058],[-126.09793642146334,53.204703125322595],[-126.09818091045678,53.20459705208353],[-126.09842541320619,53.20449096935865],[-126.09867084495107,53.20438489431151],[-126.09891533024178,53.204278810576206],[-126.09915888150353,53.20417161569892],[-126.09939962329074,53.20406329333259],[-126.09963847083665,53.20395386065045],[-126.09987357476116,53.20384162521523],[-126.10010490769331,53.203727707447136],[-126.10033155181803,53.20361099673263],[-126.10055255928107,53.20349037352699],[-126.10075853855471,53.203359670337385],[-126.10094855682404,53.20321778558503],[-126.1011272879564,53.20306805855658],[-126.10130039742275,53.20291441921776],[-126.10147068244173,53.20275966165511],[-126.10164377978097,53.202608262549404],[-126.10182346184862,53.20246302406916],[-126.10201441752507,53.20232729431462],[-126.10222135209197,53.20220499497266],[-126.1024489408521,53.20210003875554],[-126.10269626745752,53.20201187959793],[-126.10295957598673,53.2019382619635],[-126.10323509287649,53.201875845832035],[-126.1035209374712,53.20182237408375],[-126.10381336887957,53.20177562709515],[-126.10411143514622,53.20173279126872],[-126.10441138023278,53.201691629118855],[-126.10471132198386,53.20164935479759],[-126.10500750282394,53.20160315724877],[-126.1052980432302,53.201551362086946],[-126.10558106082757,53.201491165607116],[-126.10586781416832,53.20142537218994],[-126.10615924681791,53.20135340732933],[-126.1064365810912,53.201271371021356],[-126.10668387050586,53.201173675837346],[-126.10688140312993,53.20105473786021],[-126.10699634924826,53.2009005777892],[-126.1070521459706,53.200718470580384],[-126.10709760387644,53.200529641445264],[-126.10718061499051,53.200354231802116],[-126.10733305462713,53.20020284284742],[-126.10752585193536,53.20006486159769],[-126.10762319770105,53.19999979131262],[-126.10772897483572,53.19992911139066],[-126.10791331226257,53.19978665566805],[-126.10808827888444,53.19964084706183],[-126.10826510448692,53.19949503648604],[-126.1084400686897,53.19934922733741],[-126.10861408372071,53.19920229840972],[-126.10878527583633,53.19905480713506],[-126.10895085052341,53.198905088972026],[-126.1091117243018,53.198753689844494],[-126.10926414401105,53.19859949285379],[-126.10940719322996,53.19844195213335],[-126.10953990757334,53.19827937459528],[-126.10966416660884,53.19811344358306],[-126.10978280849518,53.197945276871906],[-126.10989955641405,53.1977759914034],[-126.11001537479186,53.19760726237484],[-126.11013494538064,53.19743965907129],[-126.11025921898481,53.197275403429614],[-126.11039098574919,53.19711451076222],[-126.11053403158122,53.19695920034601],[-126.11069020446028,53.196810608720845],[-126.11086234085073,53.196669279927384],[-126.11105795561765,53.19654080875306],[-126.11127890733906,53.19642464659309],[-126.11151863487781,53.196318540797805],[-126.11177150280781,53.19621858868617],[-126.11203188009486,53.19612255473956],[-126.11229413121035,53.19602650947558],[-126.11255262661464,53.19592879110413],[-126.11280173075676,53.19582547920261],[-126.11303674108193,53.19571378184684],[-126.1132623720642,53.19559536173808],[-126.11348141674331,53.19547135456011],[-126.1136891935383,53.195341191205934],[-126.11388570547889,53.19520599211144],[-126.1140709526271,53.19506576629448],[-126.114251493004,53.194921627863565],[-126.11442546963494,53.194774690050934],[-126.11459288104834,53.194624397177165],[-126.1147518403485,53.19447187147818],[-126.11490329409025,53.19431766777852],[-126.11503878843881,53.19415844213496],[-126.11514427479408,53.1939908471115],[-126.11523473207377,53.19381822039916],[-126.11532988649158,53.19364670941007],[-126.1152994341392,53.19348035787847],[-126.11544050139238,53.193298162927555],[-126.11585714663161,53.19310953202016],[-126.11606490604075,53.1929799200418],[-126.11628768951631,53.19285982067224],[-126.11652173648899,53.19274531170794],[-126.11675953661313,53.19263248362915],[-126.11699358414934,53.192519094097946],[-126.11721824053949,53.19240011147642],[-126.11742600008162,53.19227330249171],[-126.11761122888188,53.19213531167654],[-126.1177786278899,53.191988375226096],[-126.11793381452758,53.19183528409733],[-126.11807866842946,53.19167773048226],[-126.11821790390778,53.19151737684347],[-126.11835524537015,53.19135590453515],[-126.11849260078264,53.19119443203854],[-126.11863557242904,53.191035750220074],[-126.11878043597822,53.19087819566384],[-126.11892059762752,53.190718395906075],[-126.11905888186213,53.19055804214421],[-126.1191962185912,53.190397133448975],[-126.11933732355693,53.19023789687774],[-126.11948216833196,53.190080897119465],[-126.11963546547265,53.18992724978589],[-126.11979721809588,53.1897780752258],[-126.11997866602533,53.189635602790645],[-126.12019201679993,53.189504857253475],[-126.12043166524317,53.18939257541279],[-126.12069106156174,53.189305486092785],[-126.12095987589083,53.1892290257545],[-126.12123150506747,53.18915647878575],[-126.12150594596054,53.18908673374934],[-126.12178321360844,53.18901979061072],[-126.12206235993526,53.188954520979436],[-126.12234338335843,53.188890369133226],[-126.12262535403308,53.18882733602143],[-126.12290731048421,53.18876485796106],[-126.12318927948213,53.18870182350258],[-126.12346935631382,53.18863823463125],[-126.12374944237237,53.18857296002593],[-126.12403421830298,53.188511596710526],[-126.12432931487072,53.18845638847512],[-126.12445569972635,53.18840023649776],[-126.12472319333624,53.18820052658159],[-126.12490179344314,53.188056373361526],[-126.12507382355352,53.187907180580986],[-126.12523928866348,53.18775463332217],[-126.12539629914697,53.18759873361204],[-126.12554486003373,53.18744115757519],[-126.12568405827705,53.18728247984925],[-126.12580917816108,53.18712044677822],[-126.12591365615506,53.18695172215092],[-126.12607624664122,53.18678292661171],[-126.1261733261616,53.186648376896486],[-126.12628187512973,53.186588325034776],[-126.12639135191094,53.18652770740654],[-126.12655155503569,53.18649952669316],[-126.12667700642042,53.186450095592505],[-126.1268211733602,53.18639056084255],[-126.12696264655264,53.186373038812306],[-126.12710681115848,53.18631294800223],[-126.12739249663973,53.18624653828275],[-126.12764432374692,53.186147108477535],[-126.12796286952647,53.1861019493038],[-126.12827960457498,53.18607807857919],[-126.12855418546853,53.18605985469895],[-126.12885509435856,53.18607409275694],[-126.12915315801914,53.186074888512906],[-126.1294446029875,53.1860544034051],[-126.12973128328747,53.186010959352004],[-126.13001321565348,53.18595014933855],[-126.13029326173096,53.185880933343334],[-126.13057329018056,53.185811160989964],[-126.13085523328299,53.1857497932391],[-126.13114378114635,53.18570521434302],[-126.13144368202097,53.18569479842842],[-126.13174642375753,53.18569614713938],[-126.13199935167923,53.18565105005878],[-126.13228220038843,53.18558294660774],[-126.13265871688539,53.18549569998863],[-126.13273428583305,53.185381335835906],[-126.13277782072522,53.1852188308889],[-126.13287570575194,53.18504785756407],[-126.13301114151976,53.18490093479133],[-126.13327816163932,53.184865902615215],[-126.13361283718196,53.18489017407483],[-126.1339147728738,53.18493240781009],[-126.13418774830733,53.185002127563706],[-126.13445326662217,53.18508921667564],[-126.13472253942952,53.18517293975678],[-126.13499645822091,53.18524600876678],[-126.13527130776835,53.1853190850415],[-126.13554990082115,53.1853854251059],[-126.13583406031164,53.18543832244594],[-126.13614810236274,53.18545196224165],[-126.13646958093197,53.185451036565425],[-126.13674246612668,53.18549049110546],[-126.1369228106608,53.18560960848521],[-126.13703864270119,53.18578032908461],[-126.13713766843033,53.185966198721474],[-126.1372703609618,53.186132982668596],[-126.13747321036888,53.18625374918905],[-126.13771443220536,53.186354303786],[-126.13797716734562,53.186443073250196],[-126.13825486750966,53.18652173221883],[-126.13854003784867,53.186591427667175],[-126.13882705798234,53.1866532685901],[-126.13911030395703,53.186707279505875],[-126.13940379817849,53.186744462921084],[-126.13970661816772,53.186762597001184],[-126.14000937148403,53.18676503601081],[-126.14030458748256,53.18675124205085],[-126.14059407507403,53.186710564875256],[-126.14088164840774,53.18665364814214],[-126.14117016010768,53.18659952607505],[-126.1414624858358,53.186565001034445],[-126.14175957273471,53.1865551270452],[-126.14205952215883,53.186558128844],[-126.14236042207038,53.18656280483944],[-126.14266035082902,53.18655964749584],[-126.14295930254455,53.18654696280249],[-126.14326202588978,53.18653651356632],[-126.14356568269473,53.186527182811574],[-126.14387026725304,53.18651728547639],[-126.14417486287836,53.186506275920465],[-126.14447662742273,53.18649189891047],[-126.14477555894617,53.18647360772147],[-126.14506979197988,53.18644971959742],[-126.1453593245059,53.186419678863615],[-126.1456413123164,53.186380674639054],[-126.1459025954572,53.18631312985945],[-126.14612148091304,53.18618458019489],[-126.14630746113659,53.18602973718367],[-126.14646721083362,53.18587492630455],[-126.14658187883302,53.18569831895828],[-126.14668341951051,53.18551613476591],[-126.14680938548739,53.18535464288558],[-126.14700113247885,53.18523844045566],[-126.14727076028548,53.18514959487989],[-126.14758823121174,53.1850752541209],[-126.14791891422227,53.185022748053115],[-126.14823093408398,53.18499826515296],[-126.14849060918347,53.185010264154776],[-126.14866613929306,53.185086230343565],[-126.14875299085064,53.18526314257667],[-126.14877063004081,53.18548159602679],[-126.14873664143224,53.18567603044066],[-126.14860312719942,53.18582576527123],[-126.14838897851973,53.185963841398284],[-126.14820296178915,53.1861102893161],[-126.14809576643992,53.18627791679628],[-126.1480317045682,53.18645501803574],[-126.1479977039437,53.18664721137094],[-126.14817527937957,53.18677023191971],[-126.14842965198214,53.18687074824917],[-126.14871206921269,53.186953858345824],[-126.14899907908203,53.187007840898126],[-126.14929152578821,53.187008593051026],[-126.14959788129157,53.18696451144595],[-126.14989769524209,53.18692828003285],[-126.15013877043997,53.18698230898436],[-126.15035195676818,53.18709688269497],[-126.1505539850278,53.18724059128893],[-126.15070919936683,53.18739445154341],[-126.15082602476674,53.1875617961451],[-126.1509269209628,53.18773253103739],[-126.15101283757319,53.18790384063871],[-126.15108657396227,53.18807852685777],[-126.15115374605597,53.18825434177793],[-126.15122280638306,53.18842958955883],[-126.151300289956,53.18860315042779],[-126.15139463254997,53.18877277281592],[-126.15152175186967,53.188935621915476],[-126.15167042297635,53.18909397069353],[-126.15181722043144,53.18925231271102],[-126.1519368608863,53.18941573558595],[-126.15201996538474,53.18958704791733],[-126.1520965175273,53.18976285012929],[-126.1521674690756,53.189940900240444],[-126.15222903843268,53.190120647409024],[-126.15227750186007,53.19030096708799],[-126.15231001644727,53.1904796221789],[-126.15232190253346,53.190656627675594],[-126.15230753141776,53.190830870436905],[-126.1522397064721,53.19100125606114],[-126.15212689027321,53.1911688939737],[-126.15198780261774,53.19133433366673],[-126.15184309630231,53.19149753065092],[-126.15170681014348,53.191658484854955],[-126.15154612384393,53.191812183126714],[-126.15134504338957,53.19194464548701],[-126.15112047940882,53.19206200779245],[-126.15088464304704,53.19217322639242],[-126.15064504974303,53.192282773198315],[-126.1504064021092,53.19239287402123],[-126.15017525364931,53.1925074463828],[-126.14995727090965,53.19262984430319],[-126.14975430074047,53.19276062122924],[-126.14955885976619,53.19289587878742],[-126.14936716221689,53.19303392776806],[-126.14918111299606,53.193174765790076],[-126.14899692642743,53.19331673051096],[-126.14881368749148,53.19345980516239],[-126.14863139230987,53.19360288729682],[-126.14844720200088,53.193744842167256],[-126.1482611466219,53.193885687653406],[-126.14805074580853,53.194039443178596],[-126.14783452411753,53.19413326064159],[-126.14794252665459,53.194456360589186],[-126.14804247803514,53.194621487614505],[-126.14822108702474,53.194760191662986],[-126.14845213184307,53.19488034791939],[-126.14868222507295,53.194998255186476],[-126.14890484843528,53.19512009720762],[-126.14912932912823,53.1952408160843],[-126.14936222646259,53.19535312553758],[-126.149610069588,53.195449721348915],[-126.14989807728155,53.19550201523534],[-126.15017674336,53.19556776484182],[-126.15043394677191,53.19565930982182],[-126.15068649120187,53.1957564620734],[-126.15094275786481,53.195849692187366],[-126.15120370467824,53.19593842528216],[-126.15146560164678,53.196028285929025],[-126.15172935169467,53.196115893895126],[-126.15199684176397,53.19619621847662],[-126.15226990468108,53.19626589614934],[-126.1525560118121,53.19630865828349],[-126.1528588645705,53.1963194717393],[-126.15316075299489,53.19632076690878],[-126.15345973676918,53.19629461124929],[-126.15375609966136,53.19632335691781],[-126.15399740056696,53.1964233131546],[-126.15415079831834,53.19658053170056],[-126.15433412394263,53.19672146104795],[-126.1545951016909,53.19681523280328],[-126.15488592377837,53.19686582582056],[-126.15519171428433,53.19690744443307],[-126.15548988974831,53.196917692620914],[-126.1557597288978,53.19687084684839],[-126.15600971315176,53.196776961638804],[-126.15624928908092,53.19665957058206],[-126.15648698030226,53.196539931795556],[-126.15672564380759,53.196432059721694],[-126.15696243567356,53.19632139316695],[-126.15719452077373,53.1962079269406],[-126.15742096701433,53.19609110659906],[-126.1576455265188,53.19597148289075],[-126.15786726264245,53.19585130680019],[-126.1580890104294,53.195730574560315],[-126.15831168903715,53.195610396361516],[-126.15853624766977,53.195491891310155],[-126.15876831979197,53.195377301573814],[-126.15901071670542,53.19526829942722],[-126.15925030316112,53.19515818017236],[-126.15947486311623,53.195041358359475],[-126.15966467870743,53.194907777207284],[-126.15979061462657,53.19474403159074],[-126.15990341861867,53.19457470163719],[-126.16035318577796,53.194514713445336],[-126.16064267317003,53.194465024428894],[-126.16093216635686,53.19441309392959],[-126.16121411411152,53.19435333030959],[-126.16148382791536,53.194279582389136],[-126.1617459659879,53.1941862330129],[-126.16198928263286,53.19407441798795],[-126.16219222770451,53.19394529627832],[-126.16233225273021,53.19378993592267],[-126.16240936240962,53.193609448551726],[-126.16242836831098,53.1934301611745],[-126.1623967451131,53.19325318395744],[-126.16233794144527,53.19307567929129],[-126.16227913400739,53.19289706316429],[-126.16224470054112,53.19271840464958],[-126.16225620509901,53.19253857177702],[-126.16231082728567,53.19236147629548],[-126.16232514052291,53.19218275095374],[-126.16230570414109,53.19200351612707],[-126.16230968736947,53.191818091562574],[-126.1623305376631,53.19163487567306],[-126.16243305145518,53.19147788133139],[-126.162651002851,53.191354339981274],[-126.16290744616171,53.19124811573631],[-126.16315264143527,53.19114246213117],[-126.1634081740649,53.1910457568299],[-126.16368351768962,53.19097982970022],[-126.16397207747495,53.19093797639046],[-126.16426629374754,53.19090452190076],[-126.16456335101509,53.19087665569397],[-126.16486227646237,53.190851035874374],[-126.16516026723714,53.19082428725473],[-126.16545543544207,53.19079306924992],[-126.16574680785439,53.19075400416127],[-126.16603533327786,53.19070430316787],[-126.16633217875342,53.19062321900348],[-126.16660924206462,53.19051975421044],[-126.16683298449806,53.1904466142713],[-126.16707543587118,53.19036000289582],[-126.16700349541469,53.19018308344838],[-126.16691282340024,53.19001011616722],[-126.16692332710095,53.189821311911636],[-126.16691323503387,53.18963926793582],[-126.16693877857922,53.18946109059505],[-126.1670121377882,53.18928732736903],[-126.16711926749396,53.18911631292478],[-126.16726111764119,53.18895701788221],[-126.16743677360003,53.18881336028252],[-126.16764433167528,53.188678064643156],[-126.16787633506338,53.188561771592795],[-126.16813000002232,53.188473465961344],[-126.16841097930802,53.1884164828108],[-126.16870701348638,53.18837405153896],[-126.16900116117388,53.18832881676886],[-126.16932174890285,53.18833227581302],[-126.16961429494692,53.18835538539405],[-126.16990597222322,53.188393625200064],[-126.17019580987645,53.18844418222073],[-126.17048288206772,53.18850427027964],[-126.17076435358317,53.18856996764892],[-126.17104021773251,53.18863959827951],[-126.17131891821028,53.18871314103539],[-126.17156676801362,53.18880857087592],[-126.17182214284226,53.188910155886056],[-126.17207561227825,53.18900390040541],[-126.1722748572634,53.18913245522761],[-126.17245820641399,53.18927223671318],[-126.1726294082111,53.18941932260075],[-126.17279407766398,53.18957145501546],[-126.1729549906514,53.18972526877266],[-126.17311779460245,53.18987908849967],[-126.17328713783769,53.19002897259438],[-126.17346585381794,53.1901782780374],[-126.17367450544435,53.19031241859104],[-126.1739464058515,53.19032602894273],[-126.1742527285011,53.19027795786714],[-126.17455534597055,53.19023717844559],[-126.17485331936251,53.19020872934723],[-126.17512442300647,53.1902581905144],[-126.17538168526335,53.19035864462049],[-126.17560438665028,53.190486594367975],[-126.17579336773468,53.19062412149388],[-126.17597675463423,53.19076501777669],[-126.17615545992744,53.19090872617333],[-126.17632948121131,53.191054673070916],[-126.17650258081686,53.191202306135615],[-126.17667475171798,53.19134994032258],[-126.1768469111827,53.19149813894036],[-126.17699660283479,53.191649723061246],[-126.17717348973622,53.1918051921406],[-126.17738305818382,53.19193148200886],[-126.17758048644852,53.19206675277644],[-126.17778821404355,53.19219697050112],[-126.17799405538966,53.19232774639921],[-126.17818868498817,53.192463576045654],[-126.17835897468527,53.192610654819646],[-126.17850213918366,53.19277008947825],[-126.17863876197988,53.19293233925849],[-126.17878940932182,53.193087289688194],[-126.17897466491654,53.1932253729117],[-126.17918800110924,53.19334941304861],[-126.17941723223387,53.193465030325505],[-126.17965394523064,53.19357614530916],[-126.17989253679939,53.1936878216359],[-126.1801133365291,53.19380569112059],[-126.18032391398488,53.19394261330774],[-126.18045361692148,53.194020286959834],[-126.18073085699343,53.19396103971661],[-126.18083953783365,53.19372447289444],[-126.18093346429764,53.19354899388297],[-126.18103396443438,53.19337461615509],[-126.18115700102997,53.193209175900364],[-126.18131760904785,53.19306103947768],[-126.18150827429496,53.192926857098065],[-126.18170927457555,53.19279658437504],[-126.1819177726002,53.192669660940105],[-126.18213379595635,53.19254553100101],[-126.18235543971305,53.19242418848648],[-126.18258178409565,53.192304514398145],[-126.18281095426939,53.19218652056592],[-126.18304198786876,53.19206964378649],[-126.18327396511599,53.19195276508737],[-126.18350406623652,53.191835888830745],[-126.18373228883247,53.19171845932034],[-126.18395770049823,53.191599904377526],[-126.18418216356731,53.191480794760125],[-126.18440662537245,53.19136168470957],[-126.18463108591364,53.191242574226116],[-126.18485554519086,53.1911234633097],[-126.18508000320413,53.19100435196039],[-126.18530539232897,53.19088580339395],[-126.18553172752554,53.1907678086187],[-126.18575900879486,53.19065036762943],[-126.18598722366157,53.19053405407786],[-126.18621637205727,53.190418850032934],[-126.18644741146852,53.19030420723377],[-126.18668031928883,53.19019180180289],[-126.18691417324868,53.19007995908715],[-126.18715085548676,53.18997034324231],[-126.18738847384155,53.18986241049651],[-126.18762889561339,53.189754472825456],[-126.18787120841147,53.18964709633387],[-126.18811445479383,53.189540829279416],[-126.18836145693275,53.189436240806934],[-126.18860939523051,53.18933333538279],[-126.18886111174237,53.1892337756059],[-126.18911564672244,53.18913758091105],[-126.18937300514698,53.18904585373371],[-126.1896331996262,53.18895804728696],[-126.18989811498577,53.18887639930556],[-126.1901658565302,53.188799783450264],[-126.1904383015881,53.18872876135961],[-126.19071545764548,53.18866164792734],[-126.19099637489,53.18859733322817],[-126.19128106093827,53.188537493322954],[-126.19156858094244,53.18848100930951],[-126.19185892252281,53.18842844586295],[-126.19215021354167,53.18838035274899],[-126.19244340891423,53.18833562594837],[-126.19273755645936,53.18829593413337],[-126.19303077394646,53.18825960426474],[-126.19332402894493,53.18822831087063],[-126.19361635921959,53.18820150877474],[-126.19390873529802,53.18818478040796],[-126.19420308613246,53.18818990012408],[-126.19450032141992,53.18821238486437],[-126.19479761840667,53.18824494328404],[-126.19509679624721,53.188281988373944],[-126.19539503955055,53.18831790489914],[-126.19569324712555,53.18834598698167],[-126.19604571463753,53.18814709551548],[-126.19623817792424,53.1880112098851],[-126.19633771938346,53.18785026477505],[-126.19636783469609,53.1876726378217],[-126.19636977596336,53.18748665016042],[-126.19641300036194,53.187306195974095],[-126.19646558777343,53.18712684661271],[-126.1965491890368,53.18696368690397],[-126.19668249547942,53.18680493511423],[-126.19682892123188,53.18664895784963],[-126.19698567417493,53.186495203992365],[-126.19714805236931,53.18634199626326],[-126.1973123092481,53.186189914519574],[-126.19747562987985,53.18603670474223],[-126.19763425278452,53.18588294685037],[-126.1977844209838,53.18572696207088],[-126.19792239781214,53.18556820096624],[-126.19803880005503,53.185404429525285],[-126.19811202450073,53.18523064667437],[-126.19816274518645,53.185051855177164],[-126.19821344784393,53.184872507956975],[-126.19828668304369,53.18469816921379],[-126.19839650265726,53.184532167577295],[-126.19851570183687,53.1843678262061],[-126.19864146127286,53.18420515876355],[-126.19877191613864,53.18404304796835],[-126.19890707161015,53.18388260522381],[-126.19904503289922,53.18372271330777],[-126.19918579740566,53.18356282546425],[-126.1993256363468,53.18340405042323],[-126.19946641901008,53.183245282575406],[-126.19960813296858,53.1830870686893],[-126.1997611084295,53.18293219679813],[-126.19992252614398,53.1827806716182],[-126.2000149239651,53.1826970419797],[-126.20008864688543,53.18263137904131],[-126.20025382876302,53.182480402735976],[-126.20042745546054,53.18233333774723],[-126.20062080530761,53.182196887284725],[-126.20083484587002,53.18207271675635],[-126.20106014591525,53.18195469335314],[-126.20129109888961,53.181840021079935],[-126.20152298031242,53.18172534676721],[-126.201751103706,53.18160900228655],[-126.20197169617515,53.18148593888402],[-126.20218655985335,53.18134104167311],[-126.20239761436751,53.1811838262523],[-126.20260589654909,53.18103669871417],[-126.20281338455477,53.18091814664732],[-126.2030211159572,53.18085056717236],[-126.2032285653928,53.1809179906406],[-126.20343277428603,53.1810941063463],[-126.2036294160648,53.1812522994556],[-126.20382032675485,53.181390899706955],[-126.2040075130412,53.18153119112768],[-126.20419281386229,53.18167204120929],[-126.20437813359624,53.18181344667423],[-126.20456905468698,53.18195316605903],[-126.2047618637563,53.18209232614918],[-126.20489303928532,53.18228032512187],[-126.20504543462535,53.18239713784042],[-126.20517363166832,53.18254873338448],[-126.20531696918147,53.182729988427916],[-126.20540405273312,53.182906859290114],[-126.2056045354327,53.18308072780946],[-126.20578486730811,53.183159406692965],[-126.20602043985275,53.183227896738195],[-126.20608087553855,53.183320784071206],[-126.2060794785561,53.18341882521379],[-126.2061128486655,53.18353360275664],[-126.20642038561715,53.1835582804505],[-126.20681374908577,53.1835010099948],[-126.20709365465491,53.18343498250094],[-126.207323638157,53.183316939063296],[-126.20761453684162,53.18319654762193],[-126.20787624572394,53.18305043768744],[-126.20817655888463,53.182942352625254],[-126.20850690695619,53.18284037159276],[-126.20887758515445,53.182746170215566],[-126.20923703999493,53.18265702478021],[-126.20971659580879,53.18259567544027],[-126.21006225162147,53.1825608864466],[-126.21038472632715,53.1825748791518],[-126.21069695515035,53.18260009312589],[-126.21109656445708,53.18267053091874],[-126.21153738471911,53.18273528284184],[-126.21187413083733,53.18279294128475],[-126.2121583971848,53.18284845200583],[-126.2124352133691,53.18291629971713],[-126.21270739123787,53.18299199785297],[-126.21297957292273,53.183068260032535],[-126.21324899937306,53.18315404539375],[-126.21351563879757,53.183245992836866],[-126.21378504400225,53.18333010090686],[-126.21405902773263,53.18339122757879],[-126.2143412562305,53.18341312499152],[-126.21463352850003,53.18338402123269],[-126.2149313156824,53.18333362826565],[-126.21523008883376,53.18329442770922],[-126.21552904197311,53.18328772639244],[-126.2158298687498,53.183283817404316],[-126.21613258776843,53.18328045991316],[-126.21643530898189,53.18328047178265],[-126.21673806236204,53.18328383503169],[-126.217038957962,53.183293367547535],[-126.21733615429332,53.183309628438174],[-126.21763057489969,53.18333430110356],[-126.21791848251195,53.18336962426127],[-126.2181971343417,53.18342456614538],[-126.21846650657997,53.18350025621905],[-126.21873034376875,53.183589965278316],[-126.21899138600541,53.18368415151873],[-126.21925429232454,53.18377610191043],[-126.21952369194291,53.18385627108839],[-126.21980143923909,53.183917933219114],[-126.22009125088847,53.183954932629945],[-126.22038940902543,53.18397622135706],[-126.22069128433489,53.18399134473586],[-126.22099036697523,53.184011518799686],[-126.22130357374219,53.1842204472003],[-126.2215029750486,53.184354521423415],[-126.22170143577425,53.18448915277813],[-126.22189897096115,53.184624350203876],[-126.22209650741038,53.18475954729035],[-126.22228937513707,53.18489643787015],[-126.22247288582106,53.185038938695634],[-126.22263400075485,53.18519717576209],[-126.22280442449859,53.1853458672844],[-126.22302246037768,53.1854569313401],[-126.22329464396435,53.18552700314281],[-126.22358922556953,53.18557855007539],[-126.22387915562757,53.185635142344005],[-126.2241946112456,53.18573426043515],[-126.22445157016463,53.18576066315785],[-126.22460466356553,53.18564328764295],[-126.22472276873539,53.185469403054384],[-126.22479952578374,53.1852726332803],[-126.22482758255873,53.18508603044271],[-126.22482289586027,53.184909582219305],[-126.22479852521319,53.1847314862714],[-126.22476101514255,53.18455285055909],[-126.22471694914653,53.18437367154256],[-126.22467007926706,53.184194497811745],[-126.2246269408288,53.18401476125457],[-126.22459411988697,53.183834996137435],[-126.22457629805488,53.18365576723247],[-126.22457253351074,53.183474835548076],[-126.22457812332216,53.183293321431194],[-126.22458934844956,53.18311123193253],[-126.2245996317563,53.182929708878355],[-126.22460522437683,53.182748759378605],[-126.22460052397318,53.18256950548804],[-126.22458178182903,53.182391954314504],[-126.22454242116471,53.18221724767745],[-126.22447497753451,53.18204595542017],[-126.2243709999089,53.181879213899904],[-126.22424267679584,53.18171644423044],[-126.22410029815289,53.18155537711432],[-126.22395324807323,53.18139543904202],[-126.22381181629558,53.18123436976463],[-126.22368444192153,53.18107158868497],[-126.22355986669464,53.180907690741606],[-126.22343342101671,53.180744351898454],[-126.22329949369939,53.18058382351717],[-126.22315434208417,53.180427241982414],[-126.22299702159295,53.18027460903261],[-126.22283223466574,53.18012478641546],[-126.22266369117355,53.17997609101605],[-126.2224923507891,53.17982852101575],[-126.22232382466562,53.17967982508052],[-126.22215996912473,53.179529435061156],[-126.22199985453551,53.17937736168243],[-126.22184348379,53.179224160669094],[-126.2216880438178,53.17907095769637],[-126.2215223098502,53.17891889415954],[-126.22135939305825,53.178766269398785],[-126.22125263446046,53.17860289126453],[-126.22122545774525,53.178423678854145],[-126.22122545056882,53.178241610199606],[-126.22122918862301,53.17806178428404],[-126.2212394968308,53.17788250179245],[-126.22125167621485,53.177702651107104],[-126.22124979476483,53.1775205948458],[-126.22122162730544,53.17733242101666],[-126.22121974304935,53.17714980004424],[-126.22130041333907,53.17698719193191],[-126.22144581114462,53.176836222401604],[-126.22161746395189,53.17668857369746],[-126.22180882818533,53.17654592511175],[-126.22201614336566,53.17640884828007],[-126.22223379872881,53.17627959444188],[-126.22245806392036,53.176158726266465],[-126.22268988042973,53.17604849170348],[-126.2229479956554,53.17594997581269],[-126.22322589008715,53.175869339450415],[-126.22351325453184,53.17581053677237],[-126.22380171086166,53.17577974124708],[-126.2240959404663,53.175777508690075],[-126.22439684093003,53.17579486522172],[-126.2247006018307,53.175822854848384],[-126.22500436613541,53.175851408369624],[-126.22530621200343,53.17587156626856],[-126.22560326971463,53.17587379721018],[-126.22589270243314,53.175849161393884],[-126.22617639860253,53.175806044797845],[-126.22645817807867,53.175752282933985],[-126.22673802272355,53.175690125606465],[-126.22701596837506,53.17562069315592],[-126.22729199689974,53.1755462174604],[-126.22756614725577,53.17546838353481],[-126.22783934297871,53.17538886572877],[-126.22811159317233,53.17530935807166],[-126.22838292183148,53.1752315276748],[-126.22865144278475,53.17515313739231],[-126.22891335047429,53.17506636078153],[-126.22916959840462,53.17497287215419],[-126.229421128187,53.17487491051669],[-126.22967078861618,53.17477527584814],[-126.22991855572842,53.17467507964142],[-126.23016633056686,53.17457376249577],[-126.23041315968668,53.174472446663934],[-126.23065904001717,53.17437056747733],[-126.2309049280925,53.17426757632243],[-126.23114987039675,53.17416457753179],[-126.23139386394737,53.174061024362814],[-126.23163786516427,53.17395635026978],[-126.23188092065587,53.173851677517646],[-126.23212209476056,53.17374588754799],[-126.23236326460855,53.173639541369425],[-126.23260348252646,53.173532067199446],[-126.23284088646119,53.17342292195058],[-126.23307735348716,53.17331265766228],[-126.23331192720993,53.17320184090554],[-126.2335455608966,53.17308934044922],[-126.23377826071545,53.17297627668534],[-126.2340090641534,53.172862104766686],[-126.23423987821288,53.17274736768644],[-126.23447725798347,53.172635413661425],[-126.23471744624347,53.17252458294633],[-126.23495857459689,53.17241318518818],[-126.23519501487425,53.17230011116106],[-126.23542298864733,53.1721825808517],[-126.23563780906721,53.17205890959097],[-126.23583572199487,53.17192798452721],[-126.23601296403596,53.171787025690676],[-126.23617235109762,53.17163825042859],[-126.23631765250519,53.171482789614785],[-126.2364516810608,53.17132230483785],[-126.23657819411304,53.17115847370938],[-126.23670001635651,53.170992411006026],[-126.23681994247394,53.17082523155258],[-126.2369417628098,53.17065916857022],[-126.2370682657076,53.17049421647076],[-126.23720228512221,53.17033316608196],[-126.23734375194672,53.17016370207211],[-126.2375039878036,53.16999980223182],[-126.23771237921822,53.16990359422763],[-126.23801879263144,53.16990801596665],[-126.23831248093514,53.16998473287169],[-126.23854264717903,53.17009239254976],[-126.23876536090575,53.17021014144981],[-126.23898156909233,53.17033575482562],[-126.23919218848839,53.17046697213148],[-126.23939907411581,53.17060044636974],[-126.23960221638254,53.17073448353346],[-126.23980255021634,53.170867405628776],[-126.23999727077471,53.171004255676024],[-126.24018732804568,53.171143364619],[-126.24037085118877,53.171285283033086],[-126.24055156668847,53.17142888297705],[-126.24072667117035,53.171574179125884],[-126.24088774983663,53.171725670223985],[-126.24103855269966,53.17188109893002],[-126.24119030114772,53.17203652550682],[-126.2413658512017,53.172259127348084],[-126.2415007565317,53.17242074554909],[-126.24163660743284,53.172582370617874],[-126.24177058532581,53.172743990379836],[-126.2418998931888,53.17290674888122],[-126.24201889708606,53.17307120440722],[-126.2421247966138,53.17323792739582],[-126.24221477951447,53.17340804403285],[-126.24228885419598,53.173580433937396],[-126.24235077173644,53.17375564517869],[-126.24240238150342,53.17393200683547],[-126.24244743461416,53.17411005799501],[-126.24248688732744,53.17428924098818],[-126.2425235217724,53.17446842972348],[-126.24256108607058,53.17464761652594],[-126.24260053976617,53.174826799428715],[-126.24264559466313,53.17500485042597],[-126.24269908447128,53.17518176370407],[-126.24275820667145,53.17536034151063],[-126.24282953473221,53.175541699718174],[-126.24292889923437,53.17571236105663],[-126.24310864838812,53.17584475481371],[-126.24336696539481,53.175954023178186],[-126.24366180473355,53.176057613843255],[-126.24388118899387,53.176076208983126],[-126.24417441564886,53.17606103955189],[-126.24447409379503,53.17602849439376],[-126.24477563587227,53.17599425954478],[-126.24507630426655,53.17597235010903],[-126.24537709777651,53.17596948641049],[-126.24568262762917,53.17597669570073],[-126.24599100036997,53.17599062068365],[-126.24629939154097,53.176005100542795],[-126.24660494139373,53.176015668605814],[-126.24690669736401,53.17601840100686],[-126.24719993371814,53.17600770565117],[-126.24748463896887,53.17597910103383],[-126.24775703826532,53.175928113521515],[-126.24801523227242,53.17585307105908],[-126.24826299511723,53.17575843845224],[-126.24850131570696,53.17564925996027],[-126.24873581915911,53.175531125812455],[-126.24896843581845,53.17540851356411],[-126.249201987284,53.175287019278656],[-126.2494411960049,53.1751716703145],[-126.24968796596033,53.17506751786203],[-126.2499460718371,53.174979017576376],[-126.25021644350488,53.17490618534764],[-126.25049531809844,53.17484397381556],[-126.250780805135,53.17478959041003],[-126.2510709990294,53.1747402336462],[-126.2513630829893,53.1746936776348],[-126.25165609584924,53.174647118926345],[-126.25194629110749,53.1745983246875],[-126.25223177798777,53.17454450245043],[-126.25251157677445,53.17448228417773],[-126.25278289202193,53.17441055547702],[-126.25305225527337,53.17432595021304],[-126.25331499534897,53.17422959878913],[-126.253563604141,53.174122064079754],[-126.25379059218962,53.17400450054976],[-126.2539894227423,53.17387690441667],[-126.25413751030962,53.17372813822708],[-126.25423391704163,53.173554269337046],[-126.25429747785361,53.173370943015094],[-126.25434793201875,53.17319213535655],[-126.25437591602675,53.17301393165106],[-126.25438607919996,53.17283408112651],[-126.25439248762775,53.17265312721314],[-126.2544073281013,53.17247326660199],[-126.25444093330418,53.172295050731904],[-126.25447920890558,53.17211570439621],[-126.25452123209767,53.1719363499742],[-126.25457450537007,53.171758091732414],[-126.25464184548315,53.17158316439967],[-126.2547307731484,53.17141323685609],[-126.25485817026573,53.171251060275736],[-126.25502026358599,53.171094975505675],[-126.25519079433526,53.17094111311577],[-126.25534351911608,53.17078561274536],[-126.25545311262744,53.170625158937554],[-126.25549608141718,53.17044692237318],[-126.25546682344486,53.1702565172171],[-126.25536084837944,53.170084759668335],[-126.25518763114005,53.16994900878167],[-126.25497889254336,53.1698267699967],[-126.2547458388466,53.16971187025133],[-126.25450156350136,53.16960035537074],[-126.2542563416851,53.16948828629523],[-126.25402422278292,53.169371142304506],[-126.25381451238914,53.16924330151505],[-126.25362535994901,53.16910365656858],[-126.25343619043905,53.168963455628834],[-126.25322836932749,53.168835054017066],[-126.2529990700984,53.168719578079966],[-126.25276230369515,53.168608608209645],[-126.25252927272227,53.16849538012585],[-126.25231397318497,53.168371474448584],[-126.2521061417282,53.168240274335524],[-126.25189921759578,53.16810514602894],[-126.25169977323104,53.167967195963286],[-126.25151434941517,53.16782474312097],[-126.25134859226333,53.16767944274005],[-126.25123897928673,53.167522254274175],[-126.2512828421967,53.16733561852723],[-126.25135282070947,53.16712931576058],[-126.25152950827905,53.16690710061664],[-126.25133458989959,53.166899107063045],[-126.25109179922217,53.166874417638574],[-126.25080201770142,53.16682741023714],[-126.25052431088888,53.166761338678164],[-126.25025589737233,53.166682357699784],[-126.24999120249907,53.16659832196125],[-126.24972836589659,53.16651148518183],[-126.24946553037246,53.166424647814836],[-126.24920177648666,53.16633949688288],[-126.24893429088246,53.166259390543765],[-126.24866311336335,53.16618601377666],[-126.24838261572152,53.16612329529681],[-126.24809376373909,53.16607236238207],[-126.24780030129307,53.16603264245198],[-126.247491933106,53.16600975901481],[-126.24721558354888,53.16601257720846],[-126.24691301989581,53.166021051451544],[-126.24658603149665,53.166015575230176],[-126.24629820302877,53.16598032145981],[-126.24599537115971,53.165940051866976],[-126.24575237569483,53.165881175123346],[-126.24560900662559,53.165714532458324],[-126.24570553418752,53.16555859600136],[-126.24563599853921,53.16535987304447],[-126.24561246791632,53.165179536779966],[-126.24559361085142,53.16499862611431],[-126.24559631489173,53.1648188000681],[-126.2456412059272,53.16464280341121],[-126.24571701695861,53.164468983355825],[-126.24581062899652,53.164296802399505],[-126.24591268230407,53.164125168501066],[-126.24601473478405,53.163953534498425],[-126.24610648591477,53.16378136608502],[-126.24618042641889,53.16360866993766],[-126.24622718536935,53.16343490986043],[-126.24623085368233,53.16325899857213],[-126.24619514905008,53.1630809283455],[-126.24613602944878,53.162902342093616],[-126.24607128646451,53.162723211763705],[-126.2460187328306,53.162544620734906],[-126.24584291882175,53.162273847728756],[-126.24573420779546,53.162106012522635],[-126.24562644188313,53.16193817524196],[-126.24551775078794,53.16177089548997],[-126.24540811635916,53.16160362654345],[-126.24529754177587,53.16143691515167],[-126.24518323929716,53.16127076708627],[-126.24506051258923,53.16110688611434],[-126.24493497234498,53.16094356654581],[-126.2448131885074,53.16077911865584],[-126.2447026184203,53.160612406632936],[-126.24460234446296,53.16044286771862],[-126.24450112919209,53.160271098798276],[-126.2444055167988,53.160098753523364],[-126.24431833663303,53.15992527034526],[-126.24424427111587,53.1597517600281],[-126.244188943526,53.15957876671826],[-126.2442151137442,53.15940504953053],[-126.24431994493246,53.15923004957864],[-126.24434327421575,53.159052421245285],[-126.24430663568465,53.15887154648774],[-126.2442690683257,53.1586906825815],[-126.24428209619872,53.158514751596286],[-126.24435886214913,53.15834372638395],[-126.2444693522394,53.158176001645685],[-126.24459110291369,53.158009364964265],[-126.24470440544295,53.157841069474436],[-126.2448177103366,53.1576733385399],[-126.24493194344727,53.15750559659562],[-126.2450190007184,53.15733455851795],[-126.24505919546428,53.15715857106887],[-126.2450768940782,53.1569798246648],[-126.24508054393839,53.15679999588433],[-126.24507668239069,53.15661961795248],[-126.24507283259356,53.15643867529195],[-126.24507459090523,53.15625828568795],[-126.24509322998229,53.15607898152157],[-126.2451409097361,53.15590185801022],[-126.2451857652487,53.155723619902126],[-126.24522969453065,53.15554594836451],[-126.24528861895485,53.15536992185105],[-126.24534661699334,53.15519445293403],[-126.24534369855613,53.15501407289453],[-126.2452911555551,53.15483772161186],[-126.24521334529258,53.15466365449972],[-126.24512243639002,53.15449186423489],[-126.24502873238141,53.15432119111991],[-126.24495185977315,53.154148251223695],[-126.24492366287913,53.153967923388336],[-126.24497040659182,53.15379247780873],[-126.24506401309914,53.15362030536512],[-126.24527023883265,53.15349046616895],[-126.24547928377208,53.15336118544153],[-126.24568833071146,53.15323246901634],[-126.24589737632786,53.15310374324957],[-126.24610266469327,53.152973348778715],[-126.24630513658256,53.15284071897733],[-126.24650103079087,53.15270586169339],[-126.24669221392391,53.15256765265616],[-126.24688621294375,53.15242943742285],[-126.24708021069713,53.15229122186095],[-126.24727420064141,53.15215188557185],[-126.24746443660841,53.15201143638842],[-126.24764998632764,53.15186932055465],[-126.24782895841881,53.15172496840171],[-126.24799947666142,53.15157783712922],[-126.24815967647795,53.15142681026997],[-126.24830769140827,53.15127300323084],[-126.2484397473515,53.15111418315374],[-126.24855678849976,53.150950357071345],[-126.24866162360577,53.15078263953871],[-126.24875709131229,53.15061213607117],[-126.24884503807066,53.15043940749643],[-126.24893111951022,53.150265562348274],[-126.24901625625535,53.15009171910726],[-126.24910326855412,53.149918427564145],[-126.24919683798109,53.14974680723436],[-126.24929980299183,53.149577972537315],[-126.24941307744666,53.1494119125597],[-126.24953384610332,53.14924639238],[-126.24965928541441,53.149080306480954],[-126.24979316939942,53.148915887710324],[-126.24993738736002,53.14875591964119],[-126.25009661568414,53.14860320683582],[-126.2502736993876,53.14845998404799],[-126.2504714567735,53.14832903282709],[-126.25068424930721,53.148207021698305],[-126.25090925511014,53.14809057739352],[-126.2511427134979,53.147979725751846],[-126.25138273489698,53.14787165625525],[-126.25162840869011,53.14776693548988],[-126.25187594247404,53.14766276597298],[-126.25212442233307,53.147559158603464],[-126.25237009247932,53.147454436280206],[-126.25261292793333,53.14734692293207],[-126.252850123438,53.147236050917186],[-126.25307792667365,53.14712072580453],[-126.25329632413553,53.14699868891785],[-126.2535025024709,53.14687051998777],[-126.25369834614355,53.14673565034718],[-126.25388761426532,53.14659631281299],[-126.2540712308915,53.146454190537966],[-126.25425203103451,53.146309824219585],[-126.25443282999869,53.146165466576704],[-126.25461550722322,53.14602221605521],[-126.25480288959355,53.14588176062968],[-126.25499684166212,53.14574521667723],[-126.25521050326917,53.1456175842587],[-126.25543170015519,53.14549498153514],[-126.25564348981607,53.14536791704264],[-126.25583087941816,53.14522970074355],[-126.2559891545254,53.145078666806356],[-126.25613333800074,53.144921496368575],[-126.25626815127421,53.14476098478048],[-126.25640013334727,53.14459823832181],[-126.25653399393295,53.14443660804427],[-126.25667441415317,53.144277204205316],[-126.2568289235964,53.144123927420274],[-126.25699751543249,53.1439756661955],[-126.25716796724889,53.14382796536406],[-126.2573374821517,53.14367913692841],[-126.25750699929644,53.14353087292106],[-126.25767651187336,53.143382052938485],[-126.25784696703884,53.14323322168091],[-126.258018353296,53.14308495282341],[-126.25818973835322,53.142936683705464],[-126.25836299832262,53.14278897492178],[-126.25853718931562,53.14264181956309],[-126.25871232631056,53.142495217592725],[-126.25888933819272,53.14234917593751],[-126.25906823180283,53.1422048149935],[-126.25924900023021,53.14206100538488],[-126.25943165032552,53.14191886750767],[-126.25961617874006,53.14177785459613],[-126.25980352915855,53.141637946642945],[-126.2599936935743,53.14150028199878],[-126.26018666846629,53.14136428700371],[-126.26038246881097,53.1412299616111],[-126.26058202693977,53.14109787740913],[-126.26078533931722,53.140967460731865],[-126.26099521196643,53.140837029221956],[-126.2612116332731,53.1407071385984],[-126.26143461364144,53.14057948287794],[-126.26166229535322,53.14045404820569],[-126.26189656143556,53.14033252446257],[-126.26213458403521,53.14021547360449],[-126.2623782692035,53.14010345607466],[-126.26262572481498,53.139998143225334],[-126.2628769810309,53.139899552894136],[-126.26313201834061,53.13980935228787],[-126.26338992658735,53.13972810810197],[-126.26365071289219,53.13965694072432],[-126.26391719166895,53.13960032554442],[-126.26419789932496,53.13957224424662],[-126.2644918682442,53.139568790866576],[-126.26479530827407,53.139582677606306],[-126.26510443620367,53.139607755035655],[-126.26541640532439,53.13963674227662],[-126.26572742060246,53.13966405468759],[-126.26603369117137,53.13968241358053],[-126.26633238823716,53.13968510283253],[-126.26662063439039,53.13966485072811],[-126.26690955482132,53.1396042522688],[-126.26718232167475,53.13950503952404],[-126.26741092082922,53.13937903586272],[-126.26757011108911,53.13923582668744],[-126.26767395914605,53.13907537148775],[-126.26774308775798,53.1389015496958],[-126.26779529528544,53.13871935850118],[-126.26784656301562,53.13853549324039],[-126.26791283489499,53.138355519920815],[-126.2680081935265,53.138184435072404],[-126.26811011524933,53.13801614079383],[-126.26821390861042,53.13784784216683],[-126.26831862987733,53.13767954132663],[-126.26842429759672,53.1375118029218],[-126.26853090460216,53.13734349757998],[-126.26863749930541,53.13717574788223],[-126.26874503691637,53.137008004892294],[-126.26885352089413,53.13684081536629],[-126.2689619890364,53.13667362575929],[-126.2690713964195,53.136505869205855],[-126.26918080652436,53.13633867722085],[-126.26929115944205,53.13617148297112],[-126.2694014965097,53.136004288636975],[-126.26951185127788,53.13583765883564],[-126.26962218660502,53.13567046426464],[-126.26973253603991,53.135503269541125],[-126.2698428696251,53.135336074733196],[-126.26995322085932,53.13516943549506],[-126.27006355270402,53.13500224045032],[-126.2701738986563,53.13483504525294],[-126.27028422875912,53.134667849971315],[-126.27039362933026,53.13450065669387],[-126.27050302903787,53.13433346329975],[-126.27061149567857,53.13416571619055],[-126.2707199500334,53.13399852472316],[-126.27082841490025,53.13383076842058],[-126.2709368675415,53.13366357672327],[-126.27104438713242,53.13349583131587],[-126.27115284942752,53.13332807466888],[-126.27126129950146,53.13316088262734],[-126.27136976013747,53.132993134713516],[-126.27147820849795,53.13282594244189],[-126.2715847951417,53.132658189633005],[-126.27169043021918,53.1324893274333],[-126.27179419581634,53.13232102514832],[-126.2718979533983,53.132151602346774],[-126.27199983796186,53.131982183743126],[-126.27210172171054,53.131812765035775],[-126.27220453324249,53.13164334408783],[-126.27230736250135,53.13147447872361],[-126.27241204817943,53.13130561794029],[-126.27251675157486,53.13113731273751],[-126.27262425844137,53.130969556695],[-126.27273456880755,53.13080235876846],[-126.27284677262458,53.13063627678122],[-126.27296270846634,53.1304707507535],[-126.27308146622603,53.130306329544155],[-126.27320492168641,53.13014358247126],[-126.27333210906446,53.1299813913246],[-126.27346211468317,53.12981974924095],[-126.27359398051378,53.12965641757138],[-126.27372678526474,53.129492527832504],[-126.2738633181538,53.12932862929546],[-126.27400267281638,53.12916584447501],[-126.27414765348165,53.12900473155801],[-126.27429639159269,53.128845841626344],[-126.2744526349321,53.128689739629834],[-126.27461451867383,53.128537550297516],[-126.2747848655425,53.128390378515256],[-126.27496365692785,53.12824766855791],[-126.2751518471827,53.12811109432999],[-126.27535036854361,53.12798122727744],[-126.27556018664714,53.12785916760237],[-126.27578220419655,53.12774324594277],[-126.2760164248084,53.12763401795567],[-126.27625911218718,53.12753037186719],[-126.27651118393344,53.127430629318575],[-126.27676889602678,53.12733479004803],[-126.27703131267307,53.12724173578157],[-126.27729746816811,53.12715035728613],[-126.27756457702719,53.12706066107355],[-126.27783262816767,53.12697095307383],[-126.27809878393991,53.12688013744939],[-126.27836120592025,53.1267887653095],[-126.27861984943605,53.126694595924],[-126.27887192905887,53.12659764484814],[-126.27911556545799,53.12649679612802],[-126.2793497927469,53.12639092270289],[-126.27957276892796,53.12628002898168],[-126.27978069439322,53.126160215953625],[-126.27994635607249,53.12601752928296],[-126.28007163717956,53.12585364981081],[-126.2801659306876,53.12567583372906],[-126.28023677275073,53.125491359498724],[-126.28029265029508,53.125306355973464],[-126.28034293746428,53.12512752354246],[-126.28037078781169,53.12495042939009],[-126.2803723982794,53.12477060082328],[-126.2803590339341,53.124588557910556],[-126.28034191108233,53.12440653285049],[-126.28033229440847,53.12422504571249],[-126.2803423394423,53.12404575281503],[-126.28038235589709,53.123869750144],[-126.28045513623819,53.12369591061518],[-126.28054946416447,53.12352426077523],[-126.2806597128483,53.123353128795536],[-126.28077931214463,53.1231831038913],[-126.28090172933926,53.12301362788928],[-126.28101947358222,53.12284416284605],[-126.2811269146265,53.122674722159395],[-126.28121750145647,53.122504201002485],[-126.28128280754505,53.12233317519117],[-126.28131909728411,53.12216054218452],[-126.28132168417237,53.121986313157805],[-126.28130181012133,53.12181212857883],[-126.28126133982087,53.121636881495604],[-126.28120496763921,53.12146166323161],[-126.28113641860249,53.12128591813777],[-126.28105850791233,53.12110963950241],[-126.28097590739085,53.120932807243946],[-126.28089145452424,53.120756535046944],[-126.2808097950342,53.12057914467035],[-126.28073375493726,53.12040229661689],[-126.28066707381596,53.12022542628694],[-126.28061441947831,53.1200479579207],[-126.28056551650143,53.11986936914336],[-126.28051939902446,53.119688523888634],[-126.28048169314077,53.119507102912465],[-126.28045710768939,53.11932621548976],[-126.28045031012638,53.119147517766486],[-126.28046786956861,53.11897268826358],[-126.28055099438487,53.11880666668958],[-126.28070809856366,53.11864943293427],[-126.28086895230703,53.11849106961254],[-126.28096890400897,53.11832276685519],[-126.28103792926504,53.11814893532158],[-126.28109665294976,53.117972887346326],[-126.28114695048923,53.11779518318523],[-126.28118973892921,53.11761636744094],[-126.28122692365768,53.11743700925316],[-126.28126129702733,53.117258222421675],[-126.28128256190678,53.11707833734412],[-126.28128789262807,53.11689569353997],[-126.2812857447871,53.11671194707042],[-126.28128358574061,53.116528765308566],[-126.281290813982,53.11634779310735],[-126.28131583619084,53.11617014882958],[-126.28136521713913,53.11599691935366],[-126.28144738194037,53.115829778697496],[-126.28156328468158,53.11566815982133],[-126.28170728069898,53.1155120760748],[-126.28187189896546,53.11535930429113],[-126.28204869532985,53.115209864526776],[-126.28223111598872,53.11506209619634],[-126.28241167511095,53.114916008190235],[-126.28259036903184,53.114771044788924],[-126.28279436698737,53.114633298951574],[-126.28301431559746,53.11450112572485],[-126.28323426654948,53.114369507807524],[-126.28343735102561,53.11423456858568],[-126.28360856419363,53.11409129768268],[-126.28373198828248,53.11393694578247],[-126.28380947628801,53.11377093492072],[-126.28386540158478,53.113599929304996],[-126.2839035259625,53.113424493596995],[-126.28392853171212,53.11324628378271],[-126.2839413584325,53.11306474187581],[-126.28394762034891,53.112882095275246],[-126.28394826069879,53.11269834171681],[-126.28394889726009,53.11251402344701],[-126.2839514089181,53.11233026535643],[-126.28397429964748,53.11197727192114],[-126.2839571963472,53.111797486905196],[-126.28393446429843,53.11161770642289],[-126.28390987241049,53.1114373746463],[-126.28388433761084,53.11125704511083],[-126.28385880302842,53.111076715551484],[-126.28383606806214,53.11089637924788],[-126.28381802267536,53.110716596366544],[-126.28380559488272,53.11053735571868],[-126.28380159894567,53.1103586505505],[-126.28380695175589,53.11018105232741],[-126.28382542172763,53.11000397833595],[-126.28388131947881,53.109829611081274],[-126.28397093215504,53.10965796839159],[-126.28407925236587,53.109487965809635],[-126.2841903859118,53.109317947384135],[-126.28428935966231,53.109147402337044],[-126.28437895806313,53.108976324001475],[-126.28446762006439,53.108804118427685],[-126.28455535331213,53.10863192396801],[-126.28464214272815,53.10845972273368],[-126.28472798465135,53.108286967959806],[-126.28481477272004,53.108114775528584],[-126.28490250307063,53.107942571781045],[-126.28499208891758,53.107770372440484],[-126.28508262455102,53.107599282202244],[-126.28517597365237,53.107428194053156],[-126.28527118560632,53.10725821279624],[-126.28537108960312,53.10708934952485],[-126.28547381439364,53.10692159081893],[-126.28558121237326,53.10675438542034],[-126.28569610131882,53.10658828224653],[-126.28582035220948,53.10642327675244],[-126.28595677159585,53.10626048256306],[-126.28610445766263,53.10610158696638],[-126.28626620949886,53.10594881506653],[-126.28644016356249,53.10580329176626],[-126.28662821726428,53.10566670652405],[-126.28682937440563,53.10553120065723],[-126.28704081696591,53.10539399327658],[-126.28726349583268,53.105260684236235],[-126.28749841061456,53.10513742004017],[-126.28774465653632,53.10502982296874],[-126.28800414655106,53.10494403729239],[-126.28827599490296,53.104886232013996],[-126.28855828561713,53.10485192995128],[-126.28884435980525,53.10482377593116],[-126.28913327466829,53.10480178119623],[-126.28942503379095,53.10478426056875],[-126.28971963726205,53.10477121402785],[-126.29001706640263,53.10476208585788],[-126.2903154463805,53.1047563069744],[-126.2906157314616,53.10475332824751],[-126.29091788789415,53.10475258504186],[-126.29122006698077,53.10475296145267],[-126.2915241097937,53.10475445293974],[-126.29182817148313,53.10475650830236],[-126.29213221817243,53.104758553956536],[-126.29243627219181,53.104759487329346],[-126.29273937544971,53.104759292866376],[-126.29304246327685,53.10475686573835],[-126.29334366451758,53.10475219266143],[-126.29364390334514,53.104744724577245],[-126.29394225889223,53.104733343337756],[-126.29424153444747,53.10472082964634],[-126.29454267308529,53.10470719907332],[-126.29484379201686,53.10469076218748],[-126.295143012402,53.104670403234806],[-126.29543937176007,53.104643336967555],[-126.2957310099447,53.10460899439199],[-126.29601604019498,53.104565139376945],[-126.29629346925663,53.10450674590044],[-126.29656046183297,53.10442652478744],[-126.29681705290315,53.10432952250291],[-126.29706231960124,53.104220778952836],[-126.29729538813388,53.10410590759384],[-126.29751719825325,53.1039865823183],[-126.29772772247577,53.10385888617986],[-126.29793166519735,53.10372559504955],[-126.2981318301385,53.103589516448885],[-126.29833200485132,53.1034528817297],[-126.29853311805319,53.103317920475035],[-126.29874081016584,53.1031885444694],[-126.29895697498789,53.10306586933601],[-126.29918443115578,53.10295268453038],[-126.29942600452885,53.10285067694602],[-126.29967413316325,53.10275088417032],[-126.2999278931483,53.10265388217515],[-126.3001863415689,53.10255967331927],[-126.30044949334835,53.102468248570936],[-126.30071548958269,53.1023812977803],[-126.30098618624625,53.10229881620317],[-126.30125878457397,53.10222081094084],[-126.30153516347858,53.102148397635084],[-126.30181251724544,53.10208270387118],[-126.30209272780735,53.10202316012844],[-126.30237298955595,53.10197090297512],[-126.30265802322536,53.10193095785545],[-126.30295347469257,53.10191003295011],[-126.30325463864807,53.10190310272317],[-126.30356054834387,53.10190679930905],[-126.30386930796757,53.10191552530832],[-126.30417714787598,53.10192538227897],[-126.30448214995218,53.101931875452635],[-126.3047814872238,53.10193110401949],[-126.30507324836778,53.10191747071831],[-126.30535459101706,53.1018870479352],[-126.30561320320926,53.101815791399645],[-126.3058386872994,53.101691958975444],[-126.30603779226786,53.10154242411175],[-126.3062163126439,53.10139238648194],[-126.30635174197474,53.10123405241363],[-126.30645244735824,53.10106124237895],[-126.30656817388942,53.100893995522625],[-126.30673548907984,53.10074733848418],[-126.30691966061323,53.10060344302892],[-126.30711508409149,53.100463444088504],[-126.30731990075496,53.10032901366812],[-126.30753600991876,53.1002040817943],[-126.30776249315646,53.100092012144614],[-126.30801439678714,53.10000172008155],[-126.30830301493793,53.0999427042856],[-126.30860489615165,53.09990885877252],[-126.30890037957069,53.09989464154514],[-126.3091978724657,53.09989946595445],[-126.30949731798563,53.099915488992366],[-126.30979771891255,53.09993319392319],[-126.31009711979326,53.09994304860811],[-126.31039453113756,53.0999366657305],[-126.31068901380982,53.09991460351547],[-126.31098344953813,53.09988414180275],[-126.3112759579163,53.09984807322131],[-126.3115684561278,53.09980865155681],[-126.31186093467566,53.099768664511586],[-126.31215344413606,53.099730917557295],[-126.31244784189528,53.099697646682664],[-126.31274230374632,53.09967109759949],[-126.31303963005958,53.09965350379038],[-126.31333888067117,53.09964318257078],[-126.31363909636242,53.09963790453663],[-126.31394122258934,53.09963598201359],[-126.3142433504314,53.09963629961303],[-126.31454455038322,53.0996366189094],[-126.31484573369916,53.09963469658358],[-126.31514502544547,53.099629981891404],[-126.31544240048903,53.09961910460197],[-126.31573785870167,53.099602064729595],[-126.31602950421639,53.099575514971725],[-126.31631733263113,53.09953889066086],[-126.31660040334278,53.099490518150255],[-126.3168796373634,53.09943150648975],[-126.31715508119302,53.099364096479846],[-126.31742766029039,53.09928997978054],[-126.3176992619342,53.09921137431066],[-126.31796899006576,53.099130541313976],[-126.31823963657351,53.099048575808844],[-126.31851029469388,53.098968294803214],[-126.31878377566181,53.098891366908916],[-126.31905824063647,53.09882003797139],[-126.3193374395924,53.098755418303625],[-126.31962044017389,53.09870087174578],[-126.31990819191846,53.09865527525148],[-126.3202006865315,53.0986175083591],[-126.32049789225802,53.098585330219166],[-126.32079701062675,53.09855874839213],[-126.32109894844369,53.09853496375577],[-126.32140184995635,53.09851397237137],[-126.32170475538571,53.09849353594248],[-126.32200672843364,53.09847254553289],[-126.32230774560692,53.0984498807629],[-126.32260499970927,53.098424419887216],[-126.32289847792367,53.09839448677456],[-126.32318816732045,53.0983583963296],[-126.32347124577652,53.0983150448157],[-126.32374866665008,53.09826386496079],[-126.32401663712307,53.098202070555374],[-126.32426385137623,53.09811511785112],[-126.32448935562965,53.09800357429964],[-126.32469880884804,53.097873582474655],[-126.3248997687182,53.09773297380587],[-126.32509883514886,53.09758957334152],[-126.32530353792552,53.09744950940509],[-126.32551862150257,53.097320629990776],[-126.32575064506561,53.097207380847074],[-126.32599017787807,53.09709579568552],[-126.3262362621427,53.09698587710449],[-126.32648705729711,53.09688153828456],[-126.32674541783577,53.096786150589324],[-126.3270094820979,53.096704747711584],[-126.3272802340148,53.096640688248],[-126.3275614844421,53.09660293417643],[-126.32785886972006,53.0965965073437],[-126.32816481262977,53.09660910369291],[-126.32847455532661,53.09662729095234],[-126.32877955781598,53.09663821212792],[-126.329074099273,53.09662786408325],[-126.329353429567,53.0965839530817],[-126.32961940604837,53.09650869702481],[-126.32987491771856,53.096409949029756],[-126.330120042595,53.096297775089276],[-126.33035576335514,53.0961811540681],[-126.33057554648923,53.09605896591607],[-126.3307727021304,53.095913875867495],[-126.33096139821741,53.09576265115341],[-126.33115671992623,53.09562260312568],[-126.33137378090588,53.09551275501376],[-126.33162769667862,53.09545041787423],[-126.33191751204849,53.095433917960534],[-126.33222814045733,53.09544761107423],[-126.33254167027263,53.09547249974295],[-126.33284392688729,53.09549293751538],[-126.33314448220247,53.095532982764915],[-126.33344417905442,53.09558367846244],[-126.33373815025081,53.09561982367406],[-126.3340214997227,53.09561454139671],[-126.3342942107269,53.0955639146458],[-126.33456016493943,53.095485850794816],[-126.3348203588009,53.095390995853144],[-126.33507768669801,53.09528774057067],[-126.33533316057758,53.095186739850256],[-126.33559151302133,53.09509412931714],[-126.33585643479918,53.095005416650125],[-126.33612415827969,53.09491726012233],[-126.33638718511179,53.09482575498611],[-126.33663893421867,53.09472755865518],[-126.33687283947718,53.094619328553826],[-126.33708137265084,53.0944971691495],[-126.33725984704131,53.09435884407527],[-126.33741295386356,53.09420714568895],[-126.33754916414854,53.094045967001456],[-126.33767783632322,53.09387977211281],[-126.3378065224532,53.09371357702566],[-126.33794457631933,53.09355128106739],[-126.33809954535074,53.093397335471245],[-126.33827515391198,53.09325341467694],[-126.33846390076225,53.09311337309184],[-126.3386638900186,53.09297778975969],[-126.33887328992084,53.09284777240526],[-126.33909207512511,53.09272389472567],[-126.33931653468643,53.09260616732523],[-126.33955134462484,53.092497364431985],[-126.33980212090506,53.09239804351193],[-126.34006514667335,53.09230933561675],[-126.34033668112701,53.092231242476025],[-126.34061296861425,53.09216377485774],[-126.34089305918233,53.09210414777536],[-126.34117785351019,53.092048979306654],[-126.34146550083662,53.091998848439566],[-126.34175504953605,53.09195263744945],[-126.34204649961023,53.09191033735952],[-126.34233891436587,53.091870830412915],[-126.34263040855934,53.09183413103246],[-126.34292480460873,53.09181031224254],[-126.34322499873655,53.09180775559021],[-126.34352524147255,53.091813050193906],[-126.34382371510436,53.091828989038156],[-126.34412318483841,53.09185332317147],[-126.34441879128269,53.09186254612312],[-126.34471037017911,53.09183649018013],[-126.34499703726344,53.09178242747375],[-126.34527800249658,53.09171549995601],[-126.34555143836417,53.09164467666439],[-126.34582109259424,53.091567132095626],[-126.34608884226773,53.091487360532575],[-126.34635660582376,53.09140757935206],[-126.34662719401643,53.09133115960822],[-126.34690157237111,53.09126088614568],[-126.34717973643852,53.09119620320512],[-126.34745978839415,53.091133754969036],[-126.34774079016263,53.09107409993126],[-126.34802368574319,53.09101556806487],[-126.34830657470884,53.09095814703038],[-126.34859041021474,53.09090128723304],[-126.34887424495946,53.090844426752135],[-126.34915714666843,53.090787012595264],[-126.34944003722786,53.0907301535369],[-126.34972294657452,53.0906738494889],[-126.35000772446855,53.09061922439378],[-126.3502934582053,53.09056628094396],[-126.35057917262947,53.090511086977294],[-126.35086487244189,53.09045421615398],[-126.35115344942818,53.090405179292866],[-126.351443097396,53.09037351012188],[-126.35173859750049,53.09037094576936],[-126.35203709099645,53.090391910346],[-126.35233564160312,53.09041791157904],[-126.35279423942903,53.090460241232144],[-126.35308663323754,53.090422392831535],[-126.3533809305024,53.090386778929634],[-126.35367142954199,53.09034612911586],[-126.35395527717426,53.090292061971184],[-126.35423060738705,53.090225129918885],[-126.35450211554061,53.09015036547602],[-126.35477077785922,53.09007000665411],[-126.35503576882341,53.08999805720315],[-126.35530998380676,53.08991095770728],[-126.35555508370946,53.08980825874973],[-126.35580488832615,53.08971002694419],[-126.3560584606231,53.08961514462643],[-126.35632239570282,53.089530314640676],[-126.35659193207599,53.08944267048969],[-126.35686522117572,53.089358366797114],[-126.35714238747629,53.089288625681654],[-126.35742256793434,53.0892446363951],[-126.35771054560446,53.08923816270948],[-126.35801005237434,53.08926807280492],[-126.35830603663004,53.08932375442464],[-126.35858345609476,53.08939574278173],[-126.35885063924735,53.089474484328875],[-126.35911601078269,53.089558277325395],[-126.35937861311061,53.08964711573176],[-126.35963565310745,53.08974157277765],[-126.35988619291423,53.08984220710274],[-126.36012744963041,53.08994903619211],[-126.36035660007884,53.09006262445853],[-126.36057365379834,53.09018409240081],[-126.36077862576863,53.09031344003853],[-126.36097524241472,53.09044897984346],[-126.36116627239653,53.09058900926052],[-126.36135451994531,53.09073073203951],[-126.3615418458666,53.09087302204206],[-126.36173287962947,53.091013050509346],[-126.36192856464312,53.09114914729267],[-126.36213355023284,53.09127905720552],[-126.36234968755667,53.09140052464459],[-126.36257977531814,53.091511864757884],[-126.3628247213839,53.091612509967426],[-126.36307897809327,53.091706412276096],[-126.36334065934186,53.09179524466551],[-126.36360421260851,53.09188238554552],[-126.36386775684043,53.09197009057552],[-126.36412760515843,53.09206116777894],[-126.36437814052358,53.092158440126035],[-126.36462590293097,53.092258517158974],[-126.36487274841602,53.09235971695936],[-126.36511958011583,53.09246091628458],[-126.36536549004518,53.09256267368901],[-126.36561048315312,53.09266556283741],[-126.36585545761442,53.09276788682252],[-126.36610045789466,53.092871330675315],[-126.36634451178236,53.09297421224087],[-126.36658857661787,53.093078222687424],[-126.36683263776558,53.093181667928384],[-126.36707670491478,53.093285668391154],[-126.36731983062026,53.093389680237266],[-126.36756297240457,53.09349368256712],[-126.36780704321855,53.09359769046669],[-126.36804646552834,53.09370562945533],[-126.36827939356793,53.0938186257699],[-126.3685141836866,53.09393050432205],[-126.36875732666839,53.09403394843108],[-126.36901343240959,53.0941239060774],[-126.36928345844876,53.094200374186336],[-126.36955904817377,53.09427122199492],[-126.36983840424097,53.09434485403568],[-126.3700899333482,53.09444490778176],[-126.37034517533293,53.09454158798473],[-126.37059111480329,53.09464389909001],[-126.37081286591182,53.09476085151644],[-126.37099738887069,53.094898653326005],[-126.37115586261659,53.09505221408073],[-126.37131248665875,53.095208030301464],[-126.37148866691948,53.09535313601679],[-126.37167415183688,53.09549428612073],[-126.37185872009017,53.09563656823044],[-126.37204423227473,53.0957788381092],[-126.37222972586096,53.0959205520015],[-126.37241801933321,53.096060580570175],[-126.3726100404339,53.096198911913696],[-126.37280578429024,53.096334990283395],[-126.37300710669105,53.096467124638835],[-126.37321495050058,53.09659532093859],[-126.37342929088744,53.09671845877161],[-126.37365014252336,53.09683820529555],[-126.37387752543388,53.09695513408458],[-126.37410862619323,53.09706925400687],[-126.37434531534588,53.09718055015314],[-126.37458666013939,53.0972884697002],[-126.37483077985047,53.097393574330845],[-126.37507861242366,53.09749531426941],[-126.37532921985532,53.097594239253844],[-126.37558260715535,53.09768922879568],[-126.37583783654141,53.097780859532584],[-126.37610048506947,53.09786517866731],[-126.37637055264798,53.097942186151414],[-126.3766461785344,53.098013017283236],[-126.37692551187817,53.098079918837485],[-126.37720670673762,53.09814568437199],[-126.37748697963734,53.09821201689193],[-126.37776445986528,53.09828059858376],[-126.37803636887847,53.09835367926458],[-126.37830085603416,53.09843350580611],[-126.37855607576758,53.09852288978829],[-126.3787899411421,53.09863082468386],[-126.37900618865307,53.098755057725256],[-126.37921223118599,53.098887731002],[-126.37941827006914,53.099021524380376],[-126.37963267083295,53.09914801206201],[-126.3798787698581,53.09926262822054],[-126.38013606947334,53.0993744022231],[-126.38035323243517,53.09949471271879],[-126.38043595440675,53.099645152131544],[-126.38041339893739,53.09984186002015],[-126.38039423303105,53.099999350033706],[-126.38039167562779,53.100026249169325],[-126.38027964259948,53.10015546191001],[-126.38001558383795,53.10022857597597],[-126.37970645009496,53.10028391595042],[-126.37943780538755,53.1003682479872],[-126.37921813076417,53.1004894062533],[-126.37901166051343,53.10062283778896],[-126.37880046948202,53.10075069077315],[-126.37855627047027,53.10084950832374],[-126.37826390754597,53.100898068051926],[-126.3779675226048,53.10091358205151],[-126.37766728601541,53.100918458822754],[-126.37735501636136,53.100936827652944],[-126.377030109053,53.10100676786502],[-126.37701161389518,53.101135123257066],[-126.37704780573361,53.10131371564181],[-126.37716993152584,53.101476356447115],[-126.37730980368922,53.101636690599065],[-126.37745715038601,53.1017958892172],[-126.37760353524291,53.10195284084404],[-126.37775739465815,53.10210697174205],[-126.37791590992522,53.10225941134761],[-126.37807442625228,53.10241184176407],[-126.37822827407827,53.10256597205712],[-126.37837280861247,53.102722937564636],[-126.37850799976624,53.10288272945252],[-126.37863574332965,53.1030447859351],[-126.37875974606791,53.10320853045066],[-126.37888189886603,53.103372845461465],[-126.37900403764368,53.103537160378636],[-126.37912805324217,53.103700348686125],[-126.3792380954977,53.10387086909984],[-126.37937328354712,53.104029539474965],[-126.37957186402062,53.10416167105503],[-126.37977603864374,53.10429322857957],[-126.37998395639454,53.10442309751842],[-126.38019744818233,53.104550142548376],[-126.3804156009815,53.104674366578074],[-126.38064027578446,53.10479465210226],[-126.38087049950293,53.10490931706088],[-126.38110816293789,53.10501723487553],[-126.38134953443519,53.10512289934547],[-126.38159280318266,53.10522967764701],[-126.38183606327397,53.105337020180876],[-126.38208121048744,53.10544434714865],[-126.38232727693801,53.10555055914513],[-126.38257613855991,53.105656196873994],[-126.38282591907881,53.10575902549175],[-126.3830784946569,53.10585961258415],[-126.38333289701526,53.105956822895244],[-126.38359007912528,53.106050106541595],[-126.38384908778771,53.10613834614954],[-126.38411179387734,53.10622152666531],[-126.38437725912657,53.1062985306646],[-126.38464639658494,53.10636936412208],[-126.38491827273558,53.106431789151316],[-126.3851975218104,53.10648185561093],[-126.38548506638631,53.10651733746653],[-126.38577904553676,53.10654102841175],[-126.38607761858863,53.10655629576166],[-126.38637988258951,53.10656427184668],[-126.38668491513722,53.10656887675128],[-126.38699086556471,53.10657235741334],[-126.38729589823696,53.10657696074143],[-126.38760003366694,53.10658492757692],[-126.38790047365173,53.10659962846108],[-126.38819632068765,53.10662275152775],[-126.38851196528826,53.106661486142784],[-126.38876780394214,53.106709389176444],[-126.38904162619896,53.10677907678684],[-126.38930902640718,53.106861665614574],[-126.38957273752243,53.106951553405885],[-126.3898355423115,53.10704368449823],[-126.39010018838732,53.10713244757737],[-126.39036757745149,53.10721335785108],[-126.39064230787929,53.107280242109965],[-126.39092436274963,53.10732804488601],[-126.39121652083651,53.10735621015189],[-126.39151602400155,53.10736922876942],[-126.3918191762361,53.10737214151449],[-126.39212228191474,53.107370016090314],[-126.39242257867657,53.10736846391998],[-126.39272099845552,53.10736466735693],[-126.39301935650825,53.1073558326986],[-126.39331675519087,53.10734363912604],[-126.39361508116512,53.1073297655228],[-126.39391339713963,53.10731644694289],[-126.39421174873416,53.1073053683927],[-126.39451012691339,53.10729877080433],[-126.39480950020157,53.10729777139435],[-126.39510891524819,53.10730125289091],[-126.39540650624853,53.107309777278125],[-126.39577653917195,53.10736064452365],[-126.39598942186812,53.10711455284111],[-126.39617709149815,53.10697386766001],[-126.39638070353054,53.10683816626278],[-126.39657870566036,53.10670137183123],[-126.39674949010853,53.10655626053169],[-126.39687804154681,53.10639784533948],[-126.39697658119096,53.106230002451525],[-126.39705445560637,53.10605495041658],[-126.39712014903424,53.105877142582294],[-126.39718117178084,53.10569934142089],[-126.39723470032199,53.10552213009899],[-126.39726012593918,53.10533941091448],[-126.39728179439304,53.105156704331634],[-126.3973306728641,53.10498174944122],[-126.39743673341677,53.104818371514355],[-126.39759991309555,53.10466151512645],[-126.39780534367162,53.104521887825335],[-126.39803632759171,53.10441299105602],[-126.39830806428392,53.10435941446973],[-126.39861567050197,53.10434157081034],[-126.39891757314452,53.10431254106417],[-126.39920238443173,53.104258353582296],[-126.39948339948211,53.104196899773925],[-126.39976439350984,53.10413488961876],[-126.40001744322066,53.104084168927145],[-126.4000482481448,53.10407790666901],[-126.40033596027712,53.1040332349589],[-126.40062844133269,53.10399751001212],[-126.4009209281197,53.103964025227256],[-126.40121533215664,53.10393389457038],[-126.4015106796323,53.103905436172695],[-126.40180697601679,53.10387922368118],[-126.40210329754443,53.10385412185007],[-126.40239960911377,53.10382958401731],[-126.40269594595031,53.10380616580816],[-126.40299133422972,53.10378219434328],[-126.40329042130686,53.1037537187401],[-126.4035904200036,53.10372356306677],[-126.40389049199246,53.10369957335912],[-126.40418785121355,53.10368623199651],[-126.40448163944366,53.103690829370926],[-126.4047700289216,53.10371785358554],[-126.40505300399433,53.10376561957083],[-126.40533424812563,53.10382796568263],[-126.4056127541575,53.103898154736555],[-126.40589129761942,53.103970592878156],[-126.40617166038898,53.10403909804138],[-126.40645382403503,53.10409863271538],[-126.40673690029362,53.10415647841354],[-126.40701997741078,53.10421433239526],[-126.4073048992933,53.10426937372678],[-126.40759071216068,53.10432048522933],[-126.40787928581547,53.104365993209186],[-126.40817059305354,53.104403083159774],[-126.408465535939,53.10443063148967],[-126.40876232736262,53.104454255585246],[-126.40905909878711,53.10447732326037],[-126.40935588541564,53.10450038117506],[-126.40965263583229,53.10452120652638],[-126.40994845308408,53.104541469660624],[-126.41024522980287,53.10456340492522],[-126.41054199194788,53.104585348459665],[-126.41083603136126,53.104615134928146],[-126.41113010926202,53.10464884660376],[-126.41142422025156,53.10468591879611],[-126.41171373259466,53.10473029370799],[-126.41199494927784,53.104788133310514],[-126.4122725065488,53.1048543928951],[-126.41254728894606,53.10492458758378],[-126.41282024347551,53.10499758467083],[-126.41309227780584,53.105072825251646],[-126.41336431852064,53.105148620929576],[-126.41363634936337,53.10522330452573],[-126.41390837013756,53.10529685811371],[-126.41418224104474,53.10536817264947],[-126.4144588570283,53.105433865693456],[-126.41475657586783,53.10545635105698],[-126.41504697012836,53.105495112452715],[-126.41533283207016,53.105547890253185],[-126.41561684170503,53.105604035237505],[-126.41590085606794,53.10565905906978],[-126.41645449620624,53.105734977051625],[-126.41674869648948,53.10577987888036],[-126.4170169346491,53.10584840109771],[-126.41723972170323,53.1059557432756],[-126.41742260625169,53.106096830585294],[-126.41758600980626,53.10625535793576],[-126.41775035758732,53.106413881713834],[-126.41793511137959,53.10655440585693],[-126.41816070904387,53.10666229208634],[-126.41842908229644,53.10674370031273],[-126.41872249085532,53.10680148077199],[-126.41902223110185,53.10683795840851],[-126.41931519950852,53.1068526059801],[-126.41960974360934,53.1068358745335],[-126.4199078481482,53.10680232290138],[-126.42020598379868,53.10677044660327],[-126.42050428746144,53.106757060921694],[-126.42080273385291,53.106756563678466],[-126.42110215271174,53.106760535069164],[-126.42140067877995,53.10676955540803],[-126.42169927014436,53.10678362128452],[-126.42199602582852,53.106802730520556],[-126.42229189275612,53.10682575929379],[-126.42258777680381,53.10685047242872],[-126.42288275550492,53.106877428970265],[-126.42317773643481,53.106906069931334],[-126.42347274947609,53.10693638624143],[-126.42376683667908,53.10696838133405],[-126.42406092997497,53.10700094038299],[-126.42435409757388,53.10703518718686],[-126.42464728618201,53.10706998893441],[-126.4248747650602,53.10708429325219],[-126.42523089197884,53.1071452024896],[-126.42552227280785,53.1071861665876],[-126.42581272810517,53.10722881846481],[-126.42610225222647,53.10727259343963],[-126.42639086584052,53.10731805615311],[-126.42664213170593,53.10737093142091],[-126.42694684441302,53.10743481768606],[-126.42722912950448,53.10750270132516],[-126.42749374371722,53.10758017653086],[-126.42778718181646,53.10763906384114],[-126.42808238063702,53.10768841570904],[-126.42839251859992,53.107733230892364],[-126.42868846919126,53.10776353080968],[-126.42903581126141,53.10778804122504],[-126.4293728144965,53.10771398822674],[-126.42961017374127,53.107594913534],[-126.42983914206543,53.107478118732715],[-126.43006900095456,53.10735627370998],[-126.43031773628073,53.10725228678843],[-126.43056457440791,53.10714438017026],[-126.43081046261341,53.10703592074202],[-126.431056372347,53.106929701621745],[-126.43130324883663,53.10682740452533],[-126.43154352015821,53.106718964031515],[-126.43178000250776,53.10660605505775],[-126.43201744368461,53.10649481829578],[-126.43226055606488,53.106390847748564],[-126.4325131745616,53.10630028737377],[-126.43278562475808,53.1062287015883],[-126.43307981805559,53.10618000933129],[-126.43338079574684,53.10615369161003],[-126.4336735959538,53.106150376936505],[-126.43396123263817,53.10619246341651],[-126.43424815984035,53.10625583149195],[-126.43453593911345,53.106310241060825],[-126.43482368687216,53.10636296488138],[-126.43511572941466,53.106377576713754],[-126.43541389666808,53.10635014370853],[-126.43570736123958,53.10632105108057],[-126.4359888118261,53.10630713266164],[-126.43629658686993,53.106304312012234],[-126.43664373100559,53.10631031776347],[-126.43685157148404,53.10632467157559],[-126.43715033814536,53.106355504623195],[-126.43744226582031,53.106358906579985],[-126.43775245840168,53.10631909815997],[-126.43803323681472,53.10624019092969],[-126.43811893867536,53.106113261843134],[-126.43820106736065,53.10591295158406],[-126.43828152702625,53.105732259893216],[-126.43837324675944,53.10555488774042],[-126.43854496218572,53.10542427792456],[-126.43879953111025,53.10534322512175],[-126.43909549525641,53.105286103343616],[-126.43939150255889,53.10523177731866],[-126.4396724566459,53.10517079276064],[-126.43995436443299,53.10511091547337],[-126.44023723189548,53.10505271910177],[-126.4405210557381,53.10499732410835],[-126.44080772432109,53.10494639068478],[-126.441097171273,53.10489209378793],[-126.44139041186689,53.10484281958753],[-126.44168386190148,53.10481371209899],[-126.44197579100369,53.104818223276986],[-126.44227258620099,53.104840078130884],[-126.44257137226623,53.10487481452482],[-126.44286562933651,53.10492301261619],[-126.44314880178608,53.10498469701424],[-126.44341435480908,53.10506045702026],[-126.44365676019376,53.105159823938074],[-126.44388438663391,53.10527718212626],[-126.44410739970441,53.105401270982235],[-126.44433505800089,53.10552142483681],[-126.4445775270244,53.105626400866925],[-126.44483112330421,53.10572180616401],[-126.44508659173526,53.10581720386765],[-126.44534485761818,53.1059109053131],[-126.4456068164724,53.10600123986711],[-126.44587153738237,53.10608651688635],[-126.44613993650681,53.10616561243853],[-126.44641294504262,53.10623741148983],[-126.4466905183413,53.10629910855428],[-126.44697357559757,53.10634845921171],[-126.44726490978744,53.10638489710939],[-126.44756177195838,53.10641178499944],[-126.4478622964591,53.1064324912775],[-126.44816374066062,53.1064509613564],[-126.44846426296908,53.10646998991117],[-126.44876202483208,53.10649406575463],[-126.4490551851253,53.10652601048851],[-126.44934005831031,53.10656974630856],[-126.44961208432771,53.106637059894005],[-126.44986663499981,53.106731886060714],[-126.45010825891409,53.10684413245518],[-126.45034151943743,53.10696089203912],[-126.45056171952051,53.10708106230643],[-126.45076242507116,53.10721475196942],[-126.45096033571562,53.10735013711413],[-126.45117404292974,53.107475933277556],[-126.45140353781548,53.10758989949759],[-126.45164233572412,53.10769879215854],[-126.45188483529662,53.1078037530716],[-126.45213013223237,53.10790701762137],[-126.45239771914164,53.10799618618403],[-126.45264204553912,53.10809665672515],[-126.45281662669271,53.108236045167665],[-126.45294376921056,53.10840194133579],[-126.45305317146598,53.108571831417485],[-126.45312992705249,53.10875025441707],[-126.45320852443496,53.108925864670255],[-126.45335696267463,53.10906983430608],[-126.45362270638256,53.109160692308855],[-126.4538976900256,53.109239189230365],[-126.45417911418174,53.10930813241826],[-126.45440666586445,53.109413701291814],[-126.45455620619411,53.10957335154247],[-126.45474665524799,53.10970875894545],[-126.45499755673664,53.10981087549155],[-126.4553481658304,53.109700276784565],[-126.45558467971361,53.109594607528855],[-126.45578629401976,53.10946217244491],[-126.4559718802467,53.10931915897438],[-126.45614620211352,53.10917282729077],[-126.45630170881098,53.10901704856169],[-126.45646944768218,53.108868500863245],[-126.45667954691011,53.10874331886271],[-126.45690658768501,53.10862759039635],[-126.45714116015577,53.10851632314707],[-126.45738044685937,53.108407833841326],[-126.45762254362525,53.10830045361889],[-126.45786276195265,53.10819251545445],[-126.4580992066192,53.10808179475362],[-126.45832718025305,53.10796718929288],[-126.45853914062448,53.10784199667007],[-126.45871815701365,53.107697883719794],[-126.45888586395502,53.107547647386056],[-126.45906016847763,53.10740131125997],[-126.45923166053687,53.10725386532809],[-126.45939657090943,53.10710420379237],[-126.45957364665418,53.10695561517491],[-126.45972446850702,53.106800405627844],[-126.45980212740994,53.10662923830198],[-126.45986664866118,53.106453075470526],[-126.45992176280247,53.10627358780931],[-126.45996378215183,53.10609303059508],[-126.45998989609197,53.105913090983975],[-126.45999731202996,53.10573435352849],[-126.45997761520066,53.10555795350708],[-126.45992237267194,53.1053805802692],[-126.4598353271559,53.10520500690889],[-126.45972309246699,53.10503513372471],[-126.45957271173734,53.10488389181394],[-126.45939896198358,53.104734990403585],[-126.45918792778835,53.10459854964916],[-126.45898350866496,53.10446881454574],[-126.45876416237486,53.104341368970026],[-126.45854725285244,53.10418030872251],[-126.45846210454997,53.10400640311135],[-126.45844193532746,53.10387147047888],[-126.45844063679945,53.10366419053923],[-126.45843296437499,53.10347374218724],[-126.458407601841,53.103291761382756],[-126.45840564532065,53.103110819213185],[-126.45840555960018,53.10292986080652],[-126.45842514984871,53.10275107596009],[-126.45848125055603,53.10257550190278],[-126.45857106267329,53.10240316736783],[-126.45868150179257,53.10223522558386],[-126.45881447511555,53.102075048399506],[-126.4589708920545,53.10192093807256],[-126.4591151185534,53.101763513488244],[-126.45923681518718,53.10159888876635],[-126.45934723753197,53.10142983483365],[-126.4594258127462,53.101256978469436],[-126.45946225929073,53.101080359703104],[-126.45947433998087,53.100901038953076],[-126.45947051425846,53.10072065955416],[-126.45946014231855,53.10053974983415],[-126.45944881536201,53.10035771438186],[-126.45940923899593,53.100158426036664],[-126.45936728641537,53.099999483517635],[-126.45935461203736,53.09995135291611],[-126.45931413617204,53.099755994090785],[-126.4593160993824,53.09959183429548],[-126.45937040730104,53.09950982951002],[-126.45963278782583,53.09946735238783],[-126.45997872239786,53.099537716231914],[-126.46028564968152,53.09963512206502],[-126.4605094840229,53.099746296411816],[-126.46070925553668,53.09988109382842],[-126.46087143061078,53.09999923057128],[-126.46090349528649,53.10002319995715],[-126.46110980616429,53.100156286011256],[-126.46134390888787,53.10026574249503],[-126.46159935719409,53.10035886397734],[-126.46186132518461,53.10044859804666],[-126.46211028159706,53.10054734609912],[-126.46233717133516,53.100679793791905],[-126.46255483412097,53.1008251579796],[-126.46277871131886,53.10093913347025],[-126.46302607182973,53.10097626044916],[-126.46329401771848,53.10092758643437],[-126.46357456586017,53.10083517334174],[-126.46386077069005,53.10074553404779],[-126.46415591886097,53.10070459454239],[-126.46447108885515,53.1006988746544],[-126.46475128226201,53.100659121847166],[-126.46499424050026,53.10055003725055],[-126.46524621679771,53.100411793595235],[-126.46545781145339,53.10025857768834],[-126.4655795960731,53.10010459471099],[-126.46557189939277,53.099999301560175],[-126.46556959802591,53.09996009443878],[-126.46545385257107,53.09981208452333],[-126.46526887234248,53.0996626708257],[-126.46504090973059,53.09951735205163],[-126.46479901513813,53.09938160707063],[-126.46457038548567,53.099259810756884],[-126.46432793410482,53.0991576808782],[-126.46406227042313,53.09907189283283],[-126.46378551493333,53.098996787629595],[-126.46350879445274,53.09892616349328],[-126.46322382336253,53.0988701370634],[-126.46292700680243,53.09884216791539],[-126.4626314608103,53.098845566010795],[-126.46233425782924,53.098868573466326],[-126.46203612399952,53.09889271323817],[-126.46177382018934,53.09876992269025],[-126.46153782685936,53.09865936287673],[-126.46130185577191,53.09854935825277],[-126.46106587094346,53.09843935320912],[-126.46082432680726,53.09833273075652],[-126.46057812406463,53.09822836688847],[-126.4603365673916,53.098121743484626],[-126.46010803643021,53.09800722563717],[-126.4599008781005,53.09788029908879],[-126.45971694477267,53.097739271567605],[-126.45954603723888,53.09759035882883],[-126.45938256809518,53.09743861128358],[-126.45921632592696,53.097289115205015],[-126.45905101559549,53.09713849480169],[-126.45889595097573,53.096984472987415],[-126.45876233141281,53.096824765403454],[-126.45865109623927,53.09665768329736],[-126.45855944123906,53.09648548750111],[-126.45848552585817,53.09631098187634],[-126.45843954549505,53.096123486980524],[-126.4584179466911,53.095943176017336],[-126.458594342283,53.09582148154507],[-126.45883533932076,53.09570513833586],[-126.45912812568749,53.0956216426669],[-126.45940618323372,53.09556005706017],[-126.45968226622374,53.09548895900597],[-126.45996213187458,53.095421762723696],[-126.46023349873518,53.09534787607955],[-126.46048314188327,53.09525390508023],[-126.4607044458835,53.09513427332257],[-126.4609068728287,53.0949990282453],[-126.46110086424024,53.09486157478732],[-126.461284504168,53.09471911482262],[-126.46145311176085,53.09457055517347],[-126.46160857585471,53.0944175647419],[-126.46175463753718,53.0942601289622],[-126.46188756203831,53.09409882717942],[-126.4620129424615,53.093931943427734],[-126.46213797393678,53.093733132086996],[-126.46225956260213,53.093561789957235],[-126.4623437349569,53.093390029352676],[-126.4621828201575,53.093300456751884],[-126.46204396096222,53.0932601071864],[-126.46156684661369,53.0931616853623],[-126.4612837446644,53.093101729782575],[-126.46099509299032,53.0930473885424],[-126.46070922816075,53.092991924231654],[-126.4604298389723,53.092929146487855],[-126.4601643343319,53.09285230370955],[-126.45992565287975,53.092748473716625],[-126.4597119546699,53.09262045154602],[-126.45950103443865,53.09248905678354],[-126.45927345769859,53.09237396865798],[-126.4590171167333,53.092279169183406],[-126.45874496183906,53.09219282955908],[-126.45846363773984,53.092123331881034],[-126.45815074165203,53.09207468009034],[-126.45789647596304,53.092085749763186],[-126.45760623162542,53.09214346205846],[-126.4573131641064,53.09219893466412],[-126.45701794169337,53.09222808839095],[-126.45672080019565,53.09225276692917],[-126.45642356795437,53.09226904605279],[-126.4561262088948,53.09227355553849],[-126.45582581673803,53.09225622239891],[-126.45553820192086,53.092210836549185],[-126.45525513880492,53.09215309837235],[-126.45497393493756,53.092094240857925],[-126.45469270176858,53.09203257714042],[-126.45441238808525,53.091968668286114],[-126.45413390668037,53.091902510793865],[-126.45385820918631,53.091833536306595],[-126.45358435306461,53.09176175742511],[-126.4533132749978,53.09168660585374],[-126.4530430957241,53.091608653531026],[-126.45277382112992,53.091528447228114],[-126.45250732482607,53.09144487723747],[-126.4522436066683,53.09135792565085],[-126.45198638072223,53.09126647574195],[-126.45173471913697,53.0911705131721],[-126.45149141418943,53.09106948052034],[-126.4512582617561,53.09095496299753],[-126.4510501294197,53.090817940180635],[-126.45088764752283,53.0906650562849],[-126.45078396763401,53.09050186366026],[-126.45072040085779,53.09032843373972],[-126.45068480601833,53.09014705382244],[-126.45066789076473,53.08996336170538],[-126.45066129360895,53.08978187115268],[-126.4506687460431,53.08960313265099],[-126.45069303088967,53.08942432096961],[-126.45072666701529,53.08924548256002],[-126.45076403739472,53.089066065161106],[-126.4507958025796,53.088887224866426],[-126.4511128770662,53.08880422066827],[-126.45134556229794,53.08870024907523],[-126.45150759765681,53.088548931564006],[-126.45163488468772,53.08838317157461],[-126.45174156838056,53.0882146935067],[-126.45183698212956,53.08804177654284],[-126.4519314734905,53.08786942772594],[-126.45203817257848,53.08770262549417],[-126.45216927911552,53.08754470246667],[-126.4524036636467,53.08742559136207],[-126.4526427806781,53.0873126287134],[-126.45274490930127,53.08715537175334],[-126.45278976800094,53.08697760995452],[-126.45280087944215,53.08679212519488],[-126.45279517732804,53.08660839003164],[-126.45274933728619,53.08643209618579],[-126.45266238727423,53.086257636025394],[-126.45263243976262,53.08608015178429],[-126.45263894069384,53.085901416392545],[-126.45265011832909,53.085722098349194],[-126.45266690621214,53.08554275879325],[-126.4526874341656,53.08536340488708],[-126.45270983204377,53.085184043793724],[-126.45273222370469,53.08500411798388],[-126.45275461527133,53.084824201114635],[-126.45277514250613,53.08464484711975],[-126.45279286591919,53.084464939129774],[-126.45280403659214,53.08428506519414],[-126.45280023470764,53.084104119183856],[-126.4527879922896,53.08392152927592],[-126.45277202486811,53.08373895362269],[-126.45276073119824,53.08355692475686],[-126.45276160315802,53.08337652547849],[-126.4527802775451,53.083198854657944],[-126.45282517373047,53.08302500945456],[-126.45290097387276,53.082854971890576],[-126.45299924013815,53.082688765294414],[-126.45311717778803,53.0825252798561],[-126.45325009232596,53.08236342201739],[-126.45339237369558,53.082203213256356],[-126.45353934231164,53.08204354206665],[-126.45368817075844,53.08188441928798],[-126.45383232475828,53.0817247585044],[-126.45396898592726,53.08156400584411],[-126.45410660050099,53.08140436981553],[-126.45425263926522,53.0812463864105],[-126.45440148029151,53.08108894778338],[-126.45454751677546,53.08093095502197],[-126.45468793054685,53.08077187219136],[-126.45481709976312,53.08061058255285],[-126.45493033940846,53.08044543691859],[-126.45502482237725,53.08027644622233],[-126.4551033760211,53.08010359065364],[-126.45516880389242,53.07992742416151],[-126.45522580028862,53.079749049153484],[-126.45527623222422,53.07956957892101],[-126.45532384542864,53.079389554791504],[-126.45537147328378,53.07920953953006],[-126.45542378581747,53.0790311824003],[-126.45548172536536,53.078854479763294],[-126.45554903764668,53.07867999085041],[-126.45562948007067,53.07850936842156],[-126.45572679815992,53.078343162721296],[-126.45585787398196,53.078186346223745],[-126.45604051705462,53.07804390565462],[-126.45625505039543,53.077909740712094],[-126.45647802504021,53.07777890417453],[-126.4566897435302,53.077644749288375],[-126.45686677210445,53.07750232011874],[-126.45698944079264,53.077346099496836],[-126.45707271433294,53.077179391119344],[-126.45713442626385,53.07700659900115],[-126.45717926781639,53.07682994597285],[-126.4572100574326,53.07664999482884],[-126.457231453024,53.07646727434409],[-126.45724630585507,53.07628401444021],[-126.45725835550077,53.076100209608846],[-126.45727134448504,53.0759175215973],[-126.45728809687452,53.075737059950676],[-126.45729925217998,53.075557740427044],[-126.45729730765663,53.07537735111873],[-126.45728880588038,53.0751964314191],[-126.45727844938791,53.075015509916305],[-126.45727182339604,53.074835138674146],[-126.45727644229471,53.074655844361814],[-126.4572969636572,53.07447817366804],[-126.45733711434659,53.074300982713616],[-126.45739130633345,53.07412485783603],[-126.45745765776323,53.073948685825236],[-126.45753522932888,53.07377414653406],[-126.45762123305767,53.07360070394759],[-126.4577166020633,53.07342890122545],[-126.45781855145454,53.07325986961729],[-126.457927066313,53.073093618128226],[-126.45805149436903,53.072930110492784],[-126.45819279857746,53.07276988971924],[-126.45834909762645,53.07261465721189],[-126.45851856989776,53.072466096220346],[-126.45870026423883,53.07232477510465],[-126.4588988799431,53.072192342826774],[-126.45911158116492,53.07206658729418],[-126.45933274382246,53.07194471565785],[-126.45955673510575,53.071824508826516],[-126.4597788286158,53.07170319742841],[-126.4599980996944,53.07157964666707],[-126.46021830569158,53.07145553608413],[-126.46033619042483,53.07129260708804],[-126.46040523682453,53.071108579205095],[-126.46047712799178,53.07092902209169],[-126.46060074641963,53.07077783994782],[-126.46084282720437,53.070689498197815],[-126.46115643940774,53.070646251673615],[-126.46145241445227,53.07061372226873],[-126.46175228985553,53.07059742832606],[-126.46205123162997,53.07058057255083],[-126.46234063055302,53.07054582567753],[-126.4626164786141,53.07046855289008],[-126.46282918119296,53.07034334621528],[-126.46295640605013,53.07018093360801],[-126.46305729906994,53.07000406678658],[-126.46318640985325,53.06984333170287],[-126.46338693670526,53.069717051225595],[-126.46364004452006,53.069612408914054],[-126.46392152304247,53.06953791658843],[-126.46421087654622,53.06949980381115],[-126.4645022215965,53.06947288730828],[-126.46479641808759,53.06945099655042],[-126.46509348117307,53.069434140420995],[-126.46539151697432,53.06942008539747],[-126.46569049819817,53.06940770213446],[-126.46599041877553,53.06939643488983],[-126.46629034794276,53.06938460212607],[-126.46659024976468,53.069371657189734],[-126.46688826608788,53.06935591325703],[-126.46718529678431,53.06933624630034],[-126.46748040230625,53.069311548526976],[-126.46777447271396,53.06927845497876],[-126.46806562857803,53.06923472318179],[-126.4683529337493,53.06918092159129],[-126.46863077363852,53.069116507787676],[-126.46890009658962,53.069042051758174],[-126.46916275668329,53.06895752826648],[-126.46942066668318,53.06886686488828],[-126.46967572938918,53.06877173032913],[-126.46992890301918,53.06867492648312],[-126.47018115444808,53.06857868151516],[-126.47043527155957,53.068483549050725],[-126.47068939622194,53.06838785127613],[-126.47094162309608,53.06829104899265],[-126.47119102729259,53.06819200749109],[-126.47143572720029,53.06808963174372],[-126.47167382584936,53.067982790943496],[-126.47188927957787,53.06785700087217],[-126.47205960633883,53.0677078516468],[-126.47218020675172,53.06754265843631],[-126.47227732890168,53.067366918853516],[-126.47237917458692,53.06719507749003],[-126.47251579974166,53.067041580385464],[-126.47273044138426,53.0669281172593],[-126.47301279068861,53.06685022911621],[-126.47327819427595,53.066762888561904],[-126.47342983780219,53.06661549730634],[-126.47355604003269,53.06644915961319],[-126.47372166844644,53.06629947090234],[-126.47389293723289,53.06615144451882],[-126.4740717043213,53.06600674026237],[-126.47425895818695,53.06586816878888],[-126.4744753418248,53.06574292579977],[-126.4747247228966,53.06564388565491],[-126.47502240657634,53.065602351219894],[-126.47526162511636,53.06551342620572],[-126.47541404633587,53.06535370377937],[-126.47554307737671,53.065191278590426],[-126.4756019754541,53.06510924595291],[-126.47538172209651,53.06488715605058],[-126.47520991209335,53.064734896694596],[-126.47509684987489,53.064571204860876],[-126.47505837615805,53.06438984087291],[-126.4750236261568,53.06420846187679],[-126.47491524634299,53.06404474203],[-126.4747658650804,53.06389183601547],[-126.47460251134434,53.06374234741602],[-126.47442982314445,53.06359513705587],[-126.47425155620776,53.063449069325856],[-126.47407327554527,53.06330300137451],[-126.47389873679828,53.063155797643866],[-126.47373257159371,53.06300576332197],[-126.47357945372676,53.062852306010974],[-126.47343469055718,53.06269434201378],[-126.47328991212726,53.062533572190354],[-126.47315069582866,53.06236997419325],[-126.47302174315345,53.06220410289888],[-126.47290771901272,53.062035921730875],[-126.4728142493244,53.061867102383296],[-126.47274600149152,53.06169650573125],[-126.472719781636,53.06152405557799],[-126.47274865388798,53.06134802339952],[-126.47281115225466,53.061169050862944],[-126.47288296790006,53.0609889294376],[-126.47293983942943,53.06080830307365],[-126.47296027593215,53.06062949884726],[-126.47296292436599,53.06044853383175],[-126.47295250465157,53.060267612174194],[-126.47292432844881,53.06008732633852],[-126.47287750012991,53.059910476640056],[-126.4728026938231,53.05973878561476],[-126.47269336088317,53.05957227046273],[-126.47256537911608,53.059408070808814],[-126.47243646257408,53.05924443050729],[-126.47231687309505,53.059079076494506],[-126.47218887932037,53.05891487644559],[-126.4720627642361,53.05875011297296],[-126.47195437868336,53.0585835932761],[-126.47187584679826,53.05841247220998],[-126.47184480945809,53.05822715069454],[-126.47189703935615,53.05804990456561],[-126.47202049235925,53.05789086626921],[-126.47216173115346,53.057733988723015],[-126.47231606113975,53.057579308569586],[-126.47247977415769,53.05742682266785],[-126.47264910269908,53.05727656398794],[-126.47282219509192,53.05712740150228],[-126.47299530258452,53.05698104439365],[-126.47317781183291,53.056838575537874],[-126.47336970528791,53.056701106489605],[-126.47356723765411,53.05656529075231],[-126.47376288507792,53.05642949119599],[-126.47395102707186,53.05628979522515],[-126.4741269566781,53.05614510128446],[-126.4742887990408,53.05599487015862],[-126.47444218792565,53.05584018183085],[-126.47459089875227,53.055684400561084],[-126.4747395872206,53.05552805444762],[-126.47489204586012,53.05537336922064],[-126.4750529431193,53.055222020266854],[-126.47522510823974,53.05507566345746],[-126.47540478486789,53.05493263761257],[-126.47559009166004,53.05479182978404],[-126.47577915351005,53.05465268277374],[-126.47597009552858,53.05451465732164],[-126.47616290494157,53.05437661504979],[-126.47635384447027,53.0542385889551],[-126.47654290135219,53.054099440677305],[-126.47664611131655,53.0538883713545],[-126.47673108236201,53.0537160370593],[-126.4768160376672,53.05354369378271],[-126.47689913229547,53.053370802175934],[-126.47696537429852,53.05319630231517],[-126.47699513356297,53.053017458858214],[-126.47704266509989,53.05283967302401],[-126.47707709431394,53.052661375366974],[-126.47710592588056,53.05248253557205],[-126.47715251455713,53.05230475344453],[-126.47723747167579,53.05213297442729],[-126.47745193933173,53.05201052917241],[-126.47747326057473,53.051830043324394],[-126.47744415654084,53.05165088188056],[-126.47744400246266,53.051471047574644],[-126.47745786166844,53.05129171234392],[-126.4774735979466,53.051111804771374],[-126.47748092433687,53.0509324959206],[-126.47746674830317,53.050752718249406],[-126.47742271533423,53.05057529332941],[-126.47737587251773,53.05039788870218],[-126.47735516454337,53.05021812841287],[-126.47739520230664,53.05004037243024],[-126.47750731185592,53.04987352091852],[-126.47765504879145,53.049717739060796],[-126.47782342034192,53.04956915222643],[-126.47800118377268,53.04942500909211],[-126.47817894599623,53.04928086567804],[-126.47835013683849,53.04913338711729],[-126.47850161763161,53.0489787004728],[-126.47861934450255,53.0488135102317],[-126.47867715261746,53.048637357858425],[-126.4786489788229,53.048458757326834],[-126.478568544951,53.04828540639422],[-126.47846760281877,53.048116055773015],[-126.47836853004631,53.047946706440975],[-126.47829275556805,53.04777277166575],[-126.47826925617082,53.047593587293136],[-126.47829619599688,53.04741476327619],[-126.47835026034029,53.04723806135538],[-126.47842865160442,53.04706463125688],[-126.47852576408604,53.04689447772787],[-126.4786388089245,53.046728185725215],[-126.47876870400663,53.04656630724787],[-126.4789323767587,53.04641606128549],[-126.47912327137782,53.04627802111194],[-126.47932449669256,53.04614555012254],[-126.47952197992765,53.046011408746025],[-126.47970159733538,53.045867810905904],[-126.47984836424557,53.045711465062624],[-126.47996889319506,53.045546826445374],[-126.48006412140714,53.045376123355666],[-126.48013689084826,53.04520215002442],[-126.4801741108334,53.04502383924508],[-126.48016460353128,53.044844033287696],[-126.48014576115325,53.0446648300146],[-126.48015773213832,53.04448494561618],[-126.48022488840142,53.04431043023379],[-126.48029672240037,53.04413590472386],[-126.48033580905695,53.04395758618112],[-126.48036273777001,53.04377875235142],[-126.48038407012875,53.0435993855038],[-126.48040632896115,53.0434200148621],[-126.48043233048762,53.04324119369566],[-126.48046767927477,53.04306289022466],[-126.4805161116666,53.04288508923009],[-126.48059728719822,53.04271220161797],[-126.48070282094777,53.04254426146914],[-126.4808130294966,53.04237741370053],[-126.48090637900565,53.042206717227],[-126.48095668317326,53.04202947305812],[-126.4809639869907,53.041849607302694],[-126.48095448345131,53.041670365783816],[-126.4809561826083,53.041490513864716],[-126.48095320397749,53.0413106899518],[-126.48095024021558,53.04113085699549],[-126.48096128649136,53.04095153166493],[-126.48100316215877,53.040773201182645],[-126.48110587341732,53.040604707226926],[-126.48124137877312,53.04044448770501],[-126.48136843730506,53.04028149671985],[-126.48143464041716,53.040106984062405],[-126.48147184418396,53.03992811660183],[-126.48157736745284,53.03976016643531],[-126.4817353657081,53.03960825376114],[-126.48183620316458,53.03943976668041],[-126.48191550730037,53.03926632963654],[-126.48196767183497,53.03908907710575],[-126.48202545281946,53.038912922097275],[-126.48207574841348,53.03873567711154],[-126.482137264548,53.038559506751795],[-126.4821361554631,53.03838023067482],[-126.48204454374167,53.038209167784856],[-126.48192778558946,53.038043810014734],[-126.48185200148865,53.03786875607037],[-126.48194162003225,53.03769975874343],[-126.48206397329643,53.0375339801754],[-126.48214701941775,53.03736276848955],[-126.48220199008814,53.037185504181075],[-126.4822766047051,53.0370115210693],[-126.48232316107119,53.036834291048265],[-126.48237720160087,53.03665815090414],[-126.48256247550435,53.03652348864893],[-126.48279938959436,53.03641327492234],[-126.48297989676009,53.036269667440486],[-126.48314538066104,53.036120527606734],[-126.48328929403324,53.03596306758499],[-126.48339011023941,53.035794014110024],[-126.48345535890893,53.035618392167656],[-126.48354401422264,53.03544714732661],[-126.48370762504105,53.03529801428619],[-126.48390504398259,53.03516386473022],[-126.48402458575096,53.0349992158576],[-126.48407579483126,53.03482196581518],[-126.48411579845066,53.03464364119202],[-126.48418104235137,53.03446801873046],[-126.48432310398898,53.03431280586833],[-126.48455810131408,53.034199790517],[-126.48478656096442,53.03408623680647],[-126.48493983257376,53.03393154183745],[-126.48504812794711,53.03376414120727],[-126.48513956722654,53.03359288349721],[-126.48522633735682,53.03342108912285],[-126.48531964943824,53.03325038826809],[-126.48542325180296,53.03308188600639],[-126.48550066162538,53.0329084535937],[-126.4855322385096,53.032729598191665],[-126.48554886657575,53.03255024849878],[-126.4855580170799,53.03237037378007],[-126.48556436475154,53.03219106634662],[-126.48557164725915,53.03201119031089],[-126.48558640713448,53.03183184822285],[-126.48561237329646,53.031652459997794],[-126.48565610939087,53.03147468385973],[-126.48573911626336,53.031302339620986],[-126.48586988488618,53.03114101271065],[-126.4860212677514,53.030985759051106],[-126.48616984896738,53.030829951984956],[-126.48630623676911,53.0306702776644],[-126.48643792766305,53.03050894624709],[-126.48657525473553,53.03034926770529],[-126.48672476452909,53.03019402077261],[-126.48689772069679,53.030048196739735],[-126.48710073383562,53.02991625922071],[-126.48732819025632,53.02979990753059],[-126.48756412811781,53.0296896876322],[-126.48780573193064,53.02958503741392],[-126.48805298907786,53.02948485431223],[-126.48830496016163,53.02938800374154],[-126.48855881506097,53.02929395058107],[-126.48881456429983,53.02920100952772],[-126.48907031038121,53.029109188434106],[-126.48932606389452,53.0290168109726],[-126.48957991431388,53.02892275559491],[-126.48983188509388,53.02882646644234],[-126.49008006579078,53.02872683095006],[-126.49032353204741,53.02862273247139],[-126.49056419024413,53.02851752464236],[-126.49080576704813,53.028411747752244],[-126.49104734917798,53.02830653507164],[-126.49128892368223,53.02820076614303],[-126.49152955562039,53.02809499167071],[-126.49177020140432,53.02798922560246],[-126.49201082450728,53.0278828943885],[-126.49225051354875,53.02777600183101],[-126.49248926863028,53.0276685568991],[-126.49272800111596,53.02756055579274],[-126.49296579952856,53.02745199335584],[-126.49320172262348,53.02734287352825],[-126.49343763159284,53.027232641727686],[-126.49367165867535,53.02712128784048],[-126.49390380407573,53.02700882980476],[-126.4941350088146,53.02689524576249],[-126.49436526461834,53.026781109455996],[-126.49459268434752,53.02666474354995],[-126.4948191700714,53.02654782533498],[-126.49502779661735,53.02642033224576],[-126.49515944110065,53.026258981731345],[-126.49523771842144,53.02608497364213],[-126.49529355919722,53.02590881864089],[-126.49531481952738,53.02572944722751],[-126.49531738360632,53.02554959850588],[-126.49532462367173,53.02536972117052],[-126.49536457774734,53.025191956461676],[-126.49547186856007,53.025024549363025],[-126.49566919600325,53.02488981461164],[-126.49591356589542,53.024786820933045],[-126.49617589204978,53.02470167945423],[-126.49644484578184,53.02462379732247],[-126.49671853812387,53.02455260874311],[-126.49700175029113,53.02449707558875],[-126.4972897145107,53.02444935635869],[-126.49757579284648,53.02439884757046],[-126.497855189246,53.024336605357185],[-126.49811844147936,53.02425201137625],[-126.49835998183568,53.02414678346798],[-126.49859493343749,53.0240365450623],[-126.49884305895797,53.023936326148515],[-126.49911771045333,53.02386737787842],[-126.49941342740853,53.02384427195764],[-126.49971137574235,53.02385085398098],[-126.50000759357422,53.02387033299449],[-126.50030473953977,53.02388867785006],[-126.50060264870689,53.023891896244265],[-126.50089639858882,53.023860395566906],[-126.50116345773155,53.0237813901092],[-126.50139933281764,53.02367169790885],[-126.50161261291963,53.023546414072584],[-126.50181741494107,53.0234155633181],[-126.50202504402772,53.02328637645486],[-126.50224679060494,53.02316610220538],[-126.50249775069105,53.023069224977576],[-126.5027799910033,53.02301256145378],[-126.50307472072721,53.02298496845302],[-126.50337249098372,53.022976975258366],[-126.50367041890824,53.022983547350876],[-126.50396663415177,53.023001895911015],[-126.50426200151112,53.02302808200283],[-126.50455463398977,53.02306044637455],[-126.50484732851649,53.023096736045595],[-126.50514000849788,53.02313301608999],[-126.50540706761878,53.02321199375499],[-126.50563161680718,53.02332924160119],[-126.50585248757098,53.02344987530179],[-126.50608354248187,53.02356373283954],[-126.50631459200685,53.02367703416956],[-126.50654472169876,53.023792024250355],[-126.50677391967326,53.02390645314181],[-126.50700497290403,53.02401975309705],[-126.50722863130318,53.02413924274532],[-126.50746440315682,53.02425588305748],[-126.5077500158532,53.02424625485456],[-126.50799624019423,53.02414490428251],[-126.50818036497397,53.024002926323725],[-126.508408706723,53.023889335175106],[-126.5086370471434,53.02377573461346],[-126.50885500100838,53.02365322322725],[-126.509072961787,53.023530146654025],[-126.50929091302706,53.023407625481234],[-126.50953418751205,53.023293967626124],[-126.50972495275508,53.023162043120735],[-126.50982662162775,53.02299688782938],[-126.50989639544004,53.02282066511236],[-126.50994650854365,53.02263948050629],[-126.5099845247523,53.022461153925505],[-126.50999262847876,53.02228128032788],[-126.50999232992747,53.02210087829146],[-126.51001445913779,53.02192205557661],[-126.51007021970686,53.021744772695904],[-126.51015311677098,53.02157185449849],[-126.51025005066698,53.021402237067086],[-126.5103544663406,53.02123370768832],[-126.51046449644565,53.02106627442192],[-126.51057640640869,53.02089995341534],[-126.51069579796793,53.02073472041411],[-126.51083299410234,53.02057557751267],[-126.5109898767376,53.02042250753414],[-126.511158956637,53.020273866555286],[-126.5113383582536,53.02013021843136],[-126.51152145941525,53.019983757160034],[-126.51172335290057,53.01984729874553],[-126.51197157162713,53.01975938600955],[-126.51224716838526,53.01969599632888],[-126.51253599706745,53.01964600370969],[-126.51283240197522,53.019604932636625],[-126.51312796820737,53.01957115232311],[-126.51342173308771,53.019544102224444],[-126.5137203763047,53.019533837944586],[-126.51402008929942,53.01953421766681],[-126.51431892895292,53.01954019407002],[-126.51462251750002,53.019553436861216],[-126.51490139545132,53.01960712544312],[-126.51515366239006,53.019698471471415],[-126.51539490929079,53.01980610816007],[-126.51563249907315,53.01991879819535],[-126.51587003446642,53.020028135393204],[-126.51610201832875,53.0201402932151],[-126.51633493631644,53.02025300226807],[-126.51657430850096,53.020359524222364],[-126.51682387060644,53.02045872215432],[-126.5170881467079,53.02053936201214],[-126.51738830845024,53.02049994831654],[-126.5175124912105,53.020346448218845],[-126.51768250143662,53.020200034741364],[-126.5178797142999,53.02006470678601],[-126.51797474669269,53.01989509105544],[-126.51806321647175,53.0197227072296],[-126.5182266523033,53.01957408072578],[-126.51842385489878,53.01943706657322],[-126.51861165753324,53.01929617605921],[-126.51880041366437,53.019156401556344],[-126.51902213225112,53.019039456870416],[-126.51928151357488,53.0189497942495],[-126.51954090874104,53.01886013098778],[-126.51977010475979,53.018745384006],[-126.52001058610321,53.01863619838859],[-126.52023897022715,53.01853098296059],[-126.52025072279723,53.01834772143029],[-126.52034668983619,53.01817866417986],[-126.52054014364838,53.018042783375925],[-126.52077498326501,53.017930815237904],[-126.52099570776686,53.01781050952955],[-126.52118163438558,53.01767017878445],[-126.52131784150603,53.017509907035034],[-126.52139600930785,53.017337001170645],[-126.52143115767373,53.01715811804709],[-126.52169438161432,53.01707739714112],[-126.5219813280554,53.01702851003909],[-126.52226635848648,53.016975704407294],[-126.52255233489913,53.01692457019304],[-126.52283831872028,53.016872879468885],[-126.52312144552818,53.016817283369704],[-126.52340068548826,53.01674936911826],[-126.52360273955014,53.01663026175166],[-126.52368177409922,53.01645342407502],[-126.52376835335338,53.01628159965998],[-126.52389705730118,53.01611967278738],[-126.524053869554,53.01596602928839],[-126.52417789641142,53.01580412284893],[-126.52426072446173,53.01563119413786],[-126.52438286173663,53.01546761057373],[-126.52454624635766,53.01531673395228],[-126.52473966684187,53.01518029028347],[-126.52496789606835,53.01506498132493],[-126.52521686189058,53.014965831661996],[-126.52546678126107,53.014867788774815],[-126.5256452192857,53.014728048732614],[-126.52574018100745,53.014556185289514],[-126.52582392628224,53.01438325122639],[-126.5259273369131,53.01421471150049],[-126.52608694851239,53.014062728885875],[-126.52632937899301,53.013963605926726],[-126.52662200402149,53.013923081444986],[-126.52691760898792,53.0138976655273],[-126.5272311587247,53.013888420753105],[-126.52740389455514,53.01381593492075],[-126.527305418152,53.0136281269726],[-126.527236965367,53.01345363102956],[-126.52716852118382,53.01327857921226],[-126.52709727662388,53.013104095634674],[-126.52701763801058,53.01293077003039],[-126.52697249640872,53.01275336391574],[-126.52694881108329,53.01257418560447],[-126.52693630541528,53.012394401544974],[-126.52693407501056,53.01221456259709],[-126.52693465250093,53.01203472005003],[-126.52694268937267,53.01185539993962],[-126.52694698651264,53.011674411245394],[-126.5270841272121,53.0115180452791],[-126.52729538981464,53.01139160200534],[-126.5275424409252,53.011290770386466],[-126.52779233342403,53.01119273132328],[-126.52803844131998,53.0110919028639],[-126.52828171349275,53.01098772499997],[-126.52853160941665,53.01089024010355],[-126.52879093486756,53.010801676608985],[-126.52906354406386,53.01072929611282],[-126.52934661475211,53.01067312015692],[-126.52963253329533,53.010621412837956],[-126.52991850106883,53.01057251040095],[-126.53020442517409,53.010521357443096],[-126.53048175974125,53.01045456399815],[-126.53075721253617,53.010386648870785],[-126.53104702304687,53.01034669060773],[-126.53131297217139,53.0102653706267],[-126.53153455293702,53.01014504048579],[-126.53171947126303,53.010003576207204],[-126.53188657040998,53.00985491303115],[-126.5320423967629,53.009701818339444],[-126.53219073487912,53.00954596037367],[-126.53233905686086,53.009390093310785],[-126.53248926650627,53.00923478226591],[-126.53261696807434,53.009072293704236],[-126.53274749015856,53.008910903808356],[-126.53290050328235,53.00875670004663],[-126.53305633688841,53.00860360384852],[-126.53321402823079,53.008451063773364],[-126.53337548781468,53.008300182738516],[-126.53351162588271,53.00814045177734],[-126.53359251229881,53.00796695953027],[-126.53363041614337,53.00778862379829],[-126.53366551219912,53.00761030073945],[-126.53373892335026,53.007436286373206],[-126.5338834999477,53.00727932249925],[-126.53406933093821,53.00713841482066],[-126.53425142825742,53.00699640321549],[-126.5344044290297,53.00684219732815],[-126.53454992688263,53.00668521942292],[-126.53471323380869,53.00653489272134],[-126.53490188728244,53.006395647158406],[-126.53509617467864,53.00625918152343],[-126.53529517014567,53.00612549999144],[-126.5354960300327,53.00599292120851],[-126.53569878442941,53.005861462957185],[-126.53590151551722,53.00572943969947],[-126.53610707382957,53.005599079539955],[-126.53631734732119,53.00547206812196],[-126.53652666454491,53.005343931168454],[-126.53673127844,53.005213583134854],[-126.53692650232395,53.00507766585932],[-126.53709730335363,53.00493066312254],[-126.5371978318495,53.00476156064685],[-126.53720302467492,53.00458169603617],[-126.53717370118535,53.00440254442291],[-126.53713504457411,53.0042245558286],[-126.53711038043163,53.00404538294135],[-126.53709972274451,53.0038661462377],[-126.5371179812364,53.003686213062636],[-126.53716333165328,53.00350896227411],[-126.53723018201508,53.003333854567266],[-126.53726059354425,53.00315499544007],[-126.53730876412968,53.00297885221907],[-126.53718256173603,53.00281526455041],[-126.53707963474945,53.002646532808676],[-126.53699533053756,53.00247435455851],[-126.53693710761434,53.00229814009153],[-126.53694603398385,53.00211824926867],[-126.53697363874399,53.00193940286871],[-126.53703768813006,53.00176374310621],[-126.5371204215566,53.001590804001324],[-126.53720878973282,53.001419524430794],[-126.53729059606397,53.00124658938854],[-126.53736958755114,53.0010731023472],[-126.53742990136101,53.0008974682561],[-126.53743041923876,53.000717615559786],[-126.53742162036663,53.000537814271965],[-126.53740908096565,53.00035858579791],[-126.53739560882396,53.00017879680526],[-126.53737935190063,52.999999585233525],[-126.53737630263677,52.999906038900114],[-126.5373507063836,52.999727425644835],[-126.53730460295556,52.9995494705652],[-126.53723799107456,52.99937441471615],[-126.53716487634601,52.999201064760555],[-126.5371719419472,52.999021746809994],[-126.53719206433573,52.998841804604126],[-126.5372065807024,52.99866133213045],[-126.53719685676627,52.99848265536368],[-126.53716008663231,52.99830465758194],[-126.53710931947364,52.99812727931918],[-126.53705668660764,52.99794991848025],[-126.53701430388199,52.997771946166246],[-126.53698498588605,52.99759279378252],[-126.53696125187007,52.997413615943465],[-126.53693567379175,52.99723500226569],[-126.53689141192676,52.997055917857566],[-126.53682663719394,52.99687692681359],[-126.53681695771819,52.99670161124549],[-126.53688654101491,52.99652256417675],[-126.53701884632335,52.99635892787293],[-126.53722540271401,52.99623696878808],[-126.5375015011499,52.9961550316841],[-126.53779306015542,52.99611391856301],[-126.5380970533713,52.99609740877258],[-126.53834140317004,52.99601392928787],[-126.5385308819295,52.99587019982631],[-126.53873823644204,52.995738705320605],[-126.53897664360561,52.99562836768004],[-126.53923300557389,52.99553531129424],[-126.53952450893131,52.9954902767005],[-126.5398229625893,52.99547882572222],[-126.54004360812112,52.99543971694353],[-126.54032144140055,52.995274280570634],[-126.54049949972494,52.995113792088475],[-126.54071533427988,52.99499009889975],[-126.54095474393179,52.9948853552661],[-126.5411311887847,52.99474503392243],[-126.54128506035065,52.99459193421431],[-126.54151219428465,52.99447547561794],[-126.54172049410612,52.99434677717443],[-126.54186687706978,52.99419091419578],[-126.5420001171804,52.994030064525575],[-126.54213149794438,52.99386865848261],[-126.54223759282914,52.99370065429632],[-126.54231281091397,52.99352662457593],[-126.54239177539415,52.99335257755085],[-126.5425166212002,52.99319176581462],[-126.54269296741242,52.99304583968659],[-126.542874975549,52.9929038135796],[-126.54309832051389,52.99278512811447],[-126.5433395563462,52.99267868571021],[-126.5435657339611,52.99256222735946],[-126.54378906868689,52.99244186426194],[-126.54402089915864,52.99232986110094],[-126.54427631119371,52.99223847413758],[-126.5445440021702,52.99215824427429],[-126.54479189123764,52.99206128821529],[-126.54504353942211,52.99196768483426],[-126.54529420336526,52.99186959432665],[-126.5455269815791,52.99175870429124],[-126.54570331876178,52.99161333825554],[-126.54591444144035,52.99148798061918],[-126.5461585268393,52.99138600127115],[-126.5463602020912,52.99125172223732],[-126.5465845051562,52.99113583136384],[-126.5468408593531,52.991045554894946],[-126.54710758312466,52.99096420304038],[-126.5473752534614,52.99088340196774],[-126.54765044423536,52.990807047513734],[-126.54791435181623,52.99072402159429],[-126.54810673929356,52.990593700065105],[-126.54824927455552,52.99043167906557],[-126.5483487841008,52.99026257896711],[-126.54844736008356,52.990092918353305],[-126.54855998029237,52.989926553914906],[-126.54866603981712,52.98975853458603],[-126.5487533891874,52.989586684817965],[-126.54884073785145,52.989414834967484],[-126.5489346306157,52.98924463985653],[-126.54904442595688,52.989077167461986],[-126.54914674257869,52.98890860923964],[-126.54922847627091,52.988735664631136],[-126.54929432825243,52.9885605528617],[-126.54939663534188,52.988391429650086],[-126.54948491887669,52.9882206953639],[-126.54954141100062,52.988043385934056],[-126.5495848271327,52.987866137420895],[-126.54960583936088,52.98768675224087],[-126.54961844073814,52.98750685046337],[-126.54962263843997,52.98732697888431],[-126.54961658914829,52.987147719818836],[-126.54959655417228,52.9869685259431],[-126.5495802287586,52.986788758959506],[-126.54957790391015,52.98660891771578],[-126.54959145260166,52.98642956719854],[-126.54959100075395,52.98625028193866],[-126.54957467563956,52.986070514877184],[-126.54957515688542,52.98589066047331],[-126.54952267544186,52.985727870134994],[-126.54940106209246,52.98555754921213],[-126.5492692968815,52.985396248795354],[-126.54914033136458,52.98523437042173],[-126.54900020888385,52.985075340746306],[-126.54888892611741,52.98490946228239],[-126.54882694651435,52.98473326025814],[-126.54875100376958,52.984559929042526],[-126.54861275073083,52.98440089912051],[-126.54848472373018,52.98423845083487],[-126.54836226534607,52.98407486490898],[-126.54824167389107,52.9839101406486],[-126.54813505371783,52.98374423969794],[-126.54801637253713,52.983583988489954],[-126.54781224312866,52.9834515922264],[-126.54758679743871,52.98333050011662],[-126.54734020140886,52.98323360205299],[-126.54705583055379,52.983172727372875],[-126.5468508379122,52.98304593618073],[-126.54668658676185,52.98289542415841],[-126.54652138990262,52.98274323994427],[-126.54639620997159,52.98258413773219],[-126.54632961603322,52.982411326214006],[-126.54631889611053,52.98222984707348],[-126.54632124170519,52.982049983692086],[-126.5463366682177,52.98187062441317],[-126.54632782780043,52.98169137760041],[-126.54621469153994,52.98152494020048],[-126.5460532393275,52.981374414224796],[-126.54582415780988,52.98125950301401],[-126.54560155663323,52.98114007019647],[-126.54542247952025,52.980996348222476],[-126.54518972098411,52.98088537022605],[-126.54490071303691,52.980897912248594],[-126.54462096786726,52.98090537277048],[-126.54431965491817,52.98083112319255],[-126.54410544032496,52.98071109302323],[-126.54402394191088,52.98053890466498],[-126.54403563951287,52.980359006987136],[-126.54403239827349,52.98017916928303],[-126.54402450100021,52.97999936201639],[-126.54411558708829,52.979828053220835],[-126.54432855006226,52.97970492989691],[-126.5445744012453,52.97960014776776],[-126.54484860532546,52.979525479927325],[-126.54503434393374,52.97938847875076],[-126.54517780732291,52.979228697068805],[-126.54530158186651,52.97906171823265],[-126.5454638913168,52.978916980874445],[-126.54572578481907,52.97882780075398],[-126.54596128114912,52.978716896074694],[-126.54621662942431,52.97862606881928],[-126.54648707201413,52.97854973817013],[-126.5467718140677,52.97849687212146],[-126.54706820188314,52.97847925316022],[-126.54736672877246,52.97848290502268],[-126.54766126528828,52.97846641371764],[-126.54793266602279,52.97839175161922],[-126.54822537964321,52.97837862902836],[-126.54852200446504,52.97837948991403],[-126.54882053806755,52.97838370281809],[-126.5491254054541,52.978372197736014],[-126.54943319358928,52.97837076321008],[-126.5497827806378,52.97842795736012],[-126.54992161787878,52.97856177576023],[-126.55006083328288,52.978723606005445],[-126.55031844914122,52.97880980633473],[-126.55060453031227,52.9788605802368],[-126.55089604858435,52.97889899300358],[-126.55119114574796,52.97892562700713],[-126.55148251246595,52.97895227772946],[-126.55175673999301,52.97902327423039],[-126.55202269019897,52.97910382906837],[-126.5522886559661,52.97918550378529],[-126.55255551154423,52.97926436787087],[-126.55282422666687,52.97934154628609],[-126.55309570429523,52.979416470022926],[-126.55336439920346,52.97949309151013],[-126.55363036262959,52.97957419845698],[-126.55389539457346,52.97965475338893],[-126.55417966407043,52.979708888801376],[-126.55446029831867,52.97977031973175],[-126.55474995361512,52.979808175961665],[-126.55504756493463,52.97981293327332],[-126.55533793445915,52.979833420637355],[-126.55564215575325,52.97984374805803],[-126.55591630780398,52.979909132502435],[-126.55618228608668,52.979990798393125],[-126.55644920558075,52.98007245924054],[-126.55684088411961,52.980137277625936],[-126.55705026396457,52.98009875419784],[-126.55707917945304,52.97995686331642],[-126.55740562612283,52.97988304875064],[-126.55769418988265,52.979837417360855],[-126.55797514433247,52.97978062473576],[-126.55827152162107,52.97976184816778],[-126.55856120238987,52.97980138023571],[-126.55880507207661,52.97990387073236],[-126.55904801760077,52.980007494623294],[-126.55930480788201,52.98009928203919],[-126.55957810824194,52.98016970003137],[-126.55985417822042,52.98023729837399],[-126.56012932376083,52.98030602998065],[-126.56038609596911,52.98039612982053],[-126.56064011536228,52.98049016860817],[-126.56088215821177,52.98059491356437],[-126.5611048069215,52.98071375276491],[-126.56127372735837,52.980861981752724],[-126.56146769266907,52.980998885671895],[-126.56172903948695,52.98108111693168],[-126.56202147881484,52.98111726572072],[-126.5623159981333,52.98109848789298],[-126.56261264968093,52.98109987803496],[-126.56284716297606,52.98112789266359],[-126.56303383910567,52.981136521233594],[-126.5631448979668,52.98121106756552],[-126.56328758422437,52.9813498988101],[-126.56353910708725,52.98146523375531],[-126.56379404285917,52.98155645550773],[-126.56407012866259,52.98162405288263],[-126.56431589510335,52.98172708765795],[-126.56459099786257,52.98179131790468],[-126.56488078764986,52.98183755726963],[-126.5652917557452,52.98187704727487],[-126.56560458162329,52.98197191386125],[-126.56582402239415,52.98184927631983],[-126.56606897475349,52.98175061216204],[-126.56630859803568,52.98167214301224],[-126.56654562334087,52.981538778839145],[-126.56681892837109,52.98146799058191],[-126.56711430608091,52.981443038090134],[-126.56741069845498,52.981424803280554],[-126.56770711307551,52.98140825292662],[-126.56800052702859,52.98137714015107],[-126.56828623142256,52.98132645864267],[-126.56857105485362,52.981280262894046],[-126.56887040116733,52.98127433622355],[-126.5691762691299,52.98126725674594],[-126.5694455697614,52.981315824958145],[-126.56964798073757,52.98145379526016],[-126.56990479506355,52.98154499477891],[-126.570182696025,52.98160920745],[-126.5704715427416,52.98165375234992],[-126.57073478421819,52.98173763985058],[-126.57097869435057,52.98184010503765],[-126.57122260577894,52.98194257867751],[-126.5714425222604,52.98206420856513],[-126.57166658544398,52.982216637577665],[-126.57190133693324,52.98226144134913],[-126.57214751203036,52.98218573438444],[-126.57239688161711,52.98206910676287],[-126.57265091369602,52.981953011739364],[-126.57291753102902,52.981871601053655],[-126.57317191552767,52.98178184062332],[-126.57338194525383,52.98165363189211],[-126.5735788096066,52.98151877249243],[-126.57379072505819,52.98139223913397],[-126.57399792264648,52.98126236669807],[-126.57418914122407,52.98112416310263],[-126.57431850967107,52.980963858496075],[-126.57445979840789,52.98078891947503],[-126.57458284016633,52.98064433311549],[-126.57474309950632,52.98049283283906],[-126.57489211195931,52.98033746973256],[-126.57498026124192,52.980165595062225],[-126.5751208922607,52.98001083727489],[-126.57528770684304,52.97986211005679],[-126.57544233408812,52.97970839511629],[-126.57559883328892,52.97955523556986],[-126.57576847282678,52.97940817912992],[-126.57591841790182,52.97925281003189],[-126.57603558067983,52.97908807176511],[-126.57612654349501,52.97891730287605],[-126.57619411243581,52.978741610260144],[-126.57628320848747,52.978570850334805],[-126.57641720960189,52.978409955690154],[-126.57656620098197,52.97825402555097],[-126.57668709688633,52.97808983300811],[-126.5767780549497,52.9779190635141],[-126.57687184816977,52.97775052116129],[-126.57693193560732,52.97757374404173],[-126.57697801713502,52.9773953501273],[-126.577136413242,52.97724554063786],[-126.57735581895247,52.97712344593007],[-126.57761294852287,52.977033097265824],[-126.57788239184997,52.97695614328403],[-126.5781661513008,52.97690264115421],[-126.57845274638926,52.976852495049854],[-126.57871841825565,52.97677275177476],[-126.57888144644703,52.97662179653912],[-126.57912263832371,52.97652536423286],[-126.57939109702234,52.976444485157984],[-126.57961801471257,52.976327951977595],[-126.57983458020212,52.97620418118197],[-126.58002859312813,52.97606820381769],[-126.58022541776124,52.97593276806919],[-126.58042973315277,52.975800656751254],[-126.58056707425068,52.97574955514539],[-126.58095465053225,52.975718510603194],[-126.58123185256241,52.9755955587713],[-126.58136115499944,52.97543468125491],[-126.58153449625426,52.97528815350789],[-126.58175764036588,52.97516827301659],[-126.58194701788327,52.97503567691275],[-126.58206880859807,52.974870353408264],[-126.58221214825899,52.974712767198646],[-126.58235361391591,52.97455462529446],[-126.58246147432652,52.97439441715708],[-126.58256168883175,52.97422079103617],[-126.58256575362088,52.974041481595826],[-126.58254930872786,52.97386171773242],[-126.58254967389281,52.97368466766093],[-126.58257297730691,52.973479490198606],[-126.58253920512354,52.97332893750525],[-126.58261054530898,52.97315770404009],[-126.582629530903,52.97297832070857],[-126.58263451996262,52.97279788600066],[-126.58269180145385,52.97262223073528],[-126.5827817909984,52.972450904862455],[-126.58292043427193,52.97229222017648],[-126.58297677345138,52.9721154488117],[-126.58299389194215,52.97193607453657],[-126.58301941837489,52.97175722340029],[-126.58311500762309,52.971586425259424],[-126.58324433684702,52.97142890674216],[-126.58338485504758,52.971270212106674],[-126.58353099082319,52.971114286382864],[-126.58375881646822,52.970998304925494],[-126.58395938200667,52.970866205502325],[-126.58415428233094,52.970730207361655],[-126.58437835099323,52.97061255796298],[-126.58460054574688,52.97049436162263],[-126.58480015091543,52.97036114490717],[-126.58499224852572,52.97022460342624],[-126.5851580573883,52.97007530123371],[-126.58534920444565,52.96993708749569],[-126.58554692422815,52.96980275825041],[-126.58567058997917,52.96964133852574],[-126.58578204737726,52.969473264939],[-126.58585615026657,52.9693014505167],[-126.58588170926373,52.96912595096951],[-126.58616548374597,52.96907804071875],[-126.58641307444172,52.96897707867691],[-126.58670954935111,52.968971676301244],[-126.58702237882895,52.96900205866233],[-126.58712463827386,52.9690469274422],[-126.58749922139681,52.96909212391557],[-126.5877986574261,52.96909903919022],[-126.58809456433272,52.96911940910477],[-126.58839220537543,52.9691313698808],[-126.58868974524948,52.96913493067413],[-126.58882920678757,52.96910453440973],[-126.58894042216784,52.96905467380425],[-126.58906826676831,52.968993524326926],[-126.58918718207518,52.96896099819108],[-126.58947542756128,52.968967956195534],[-126.58973957576792,52.969052361907465],[-126.59002893289345,52.969071639187845],[-126.5903280419613,52.969053897290934],[-126.59062005715653,52.969063639501236],[-126.59089336171266,52.96913566158192],[-126.59116575786726,52.96920881711521],[-126.5914408357659,52.96927410565461],[-126.5917392005272,52.969270366471804],[-126.59202013326187,52.96922021524261],[-126.59227243531544,52.96912313464769],[-126.59255627345661,52.96908136726415],[-126.59285549086974,52.96907146234371],[-126.59313265967072,52.96901907729051],[-126.59341833784612,52.96897562219452],[-126.5937136444553,52.96895284382504],[-126.59396031489433,52.96885354682336],[-126.59421453803867,52.96876094354949],[-126.59448864767208,52.96869064168801],[-126.59474003173099,52.96859468989425],[-126.59496310425614,52.96847590447748],[-126.59518618255207,52.96835655383031],[-126.5954026700504,52.96823331855982],[-126.59563140427315,52.96811955024331],[-126.5958971306628,52.968049852189516],[-126.5960625170242,52.96820589460831],[-126.59609943690135,52.968378830500754],[-126.59616153346518,52.96855108317958],[-126.59632592788908,52.968703212723916],[-126.59659274355774,52.96877693980643],[-126.59688967179892,52.9688040058591],[-126.59718496043749,52.96878121886285],[-126.59746175248947,52.96883528803242],[-126.59774504843148,52.96888707346604],[-126.5980391891601,52.968915280297665],[-126.59832161739362,52.968972115772935],[-126.59862009764645,52.968976758313154],[-126.59889976863651,52.96903584754303],[-126.59917764740129,52.96910111280922],[-126.59945373218142,52.96917030404064],[-126.59972706034247,52.96924287034991],[-126.59999760816173,52.9693171265486],[-126.60002107804078,52.96932765687167],[-126.6002313784366,52.969427436496346],[-126.60047713817738,52.96952871140248],[-126.60071090378868,52.96963957622056],[-126.6009483760083,52.96974762474172],[-126.6011867743468,52.969855659093675],[-126.60137339756477,52.96999534197382],[-126.6015442727715,52.970142939932714],[-126.60174849671418,52.97027356784118],[-126.60197119848931,52.970392886393185],[-126.60224632449366,52.97045983486473],[-126.60254416055702,52.97048352935279],[-126.60283473919675,52.97045627009602],[-126.60311452001571,52.97039152202606],[-126.60340576737903,52.970345208348434],[-126.60369601695166,52.97036109483013],[-126.60392144220017,52.97047423714834],[-126.60412670348184,52.97061213481911],[-126.60432074403242,52.970747848549514],[-126.60450924637317,52.97088750785871],[-126.60469959116695,52.97102548104279],[-126.60490384497552,52.97115722389462],[-126.60513034621299,52.97128044343025],[-126.60535592369065,52.97140366727391],[-126.60555643512525,52.97153429868285],[-126.6057021679944,52.97168258455243],[-126.60576990352834,52.97185480306183],[-126.60579956541322,52.97203898765872],[-126.60584504035808,52.972219720274175],[-126.60594628541385,52.9723872840894],[-126.60608382071293,52.972548502539496],[-126.6062445437596,52.97270119282268],[-126.60642193421958,52.97284538840308],[-126.60661320310528,52.972982233092424],[-126.60681561503003,52.973114537835094],[-126.60702450884257,52.973244011911945],[-126.60723430497916,52.97337179563977],[-126.60745336305482,52.973493928434934],[-126.60767980406925,52.973611540499036],[-126.60789977376501,52.97373254719656],[-126.60808920114498,52.97386939896219],[-126.60823786936204,52.97402663092222],[-126.60844486665728,52.97415330635806],[-126.60867502715121,52.97426865616699],[-126.6088922699547,52.97439471312685],[-126.60908446981082,52.97452987258403],[-126.60917179967922,52.97470086709689],[-126.6092247045121,52.97487819811495],[-126.60940288683163,52.9750117441737],[-126.60967550678559,52.97496551158378],[-126.60989197796484,52.974841694426324],[-126.61015380761137,52.97475909382607],[-126.61045010272198,52.974738509757344],[-126.61074764453464,52.97474032971586],[-126.611045281795,52.9747477512372],[-126.61134120010607,52.974766386543216],[-126.61163648361406,52.97480519451545],[-126.61194603033812,52.97486242143475],[-126.61225644841315,52.97478628718688],[-126.61247675047079,52.97473528185196],[-126.6127691362732,52.974702386081425],[-126.61306249399378,52.97467172565034],[-126.61333675600179,52.97461146449674],[-126.61362335066492,52.97456514999086],[-126.6139217667585,52.97456247512781],[-126.61420865175505,52.974536327802184],[-126.61446850892831,52.974447013417546],[-126.6146915637963,52.9743276262742],[-126.61492027102167,52.97421325621248],[-126.61520307424058,52.97416304012802],[-126.61550158471687,52.97416708413252],[-126.61579690735516,52.97414368576805],[-126.61609453458003,52.97415165933818],[-126.61639211174497,52.97415514120277],[-126.6166894304382,52.97414182418878],[-126.61698683695553,52.974133544015174],[-126.61728434228543,52.97413310651404],[-126.61758113401606,52.97414723932197],[-126.61787880087645,52.97415688454225],[-126.61817637151154,52.97416092670024],[-126.61847393261601,52.974163282830126],[-126.61877236188727,52.974161716160836],[-126.61906985930537,52.97416071839515],[-126.6193648600093,52.97417989417651],[-126.61965554847184,52.974222632691074],[-126.61995250496109,52.97424796430049],[-126.62020789843376,52.97417378377968],[-126.62044508884253,52.97406608163519],[-126.62071348609169,52.973987349277564],[-126.62098853388,52.97391754576232],[-126.6212702732054,52.973859467756164],[-126.62155679690592,52.97380921674606],[-126.62184334444015,52.97376064127213],[-126.62213179739614,52.9737148519646],[-126.62241451492167,52.97365957192835],[-126.62267434123362,52.9735696746818],[-126.62295449660697,52.97353009477497],[-126.6232486614528,52.97355655339598],[-126.62354724243157,52.97356562365151],[-126.6238395164988,52.97358928491241],[-126.62412199378993,52.97364493790465],[-126.62440176532745,52.97370732794517],[-126.62468154444345,52.97376916148346],[-126.62491630356321,52.973877732053296],[-126.62519790172152,52.973937304629466],[-126.625484971096,52.97398732717947],[-126.62575097985852,52.97406435441389],[-126.62599684377811,52.97416670524462],[-126.6262390278782,52.974272427846294],[-126.62647381857805,52.97438268047706],[-126.62670400596387,52.97449743041283],[-126.62693972265367,52.97460655662473],[-126.6272222189558,52.97466275790758],[-126.62750107659534,52.974725145475965],[-126.62777722082143,52.97479371442631],[-126.62805517974545,52.97485778183913],[-126.6283358719882,52.974917916532064],[-126.62861927257234,52.9749724332907],[-126.62890542124018,52.97502301721171],[-126.62919337771845,52.97506966433099],[-126.62948758024291,52.97509666302958],[-126.62976644405096,52.97515904522097],[-126.6300453004431,52.97522087099447],[-126.63030128309245,52.975313064722734],[-126.63053333290462,52.97542556507145],[-126.6307321103248,52.975559524802094],[-126.63090682207601,52.975704827641444],[-126.63104164062074,52.97586490221112],[-126.63113372559275,52.976036420092186],[-126.63114943489724,52.97621506137895],[-126.6311222763345,52.97639618232344],[-126.6292865224097,52.979787855742714],[-126.62913771889556,52.979943843380575],[-126.62905819261195,52.98011683423556],[-126.6290384595171,52.98029622925875],[-126.62900563490237,52.980473453007995],[-126.62892237616092,52.98064646362832],[-126.62894274245146,52.98082564458641],[-126.62901338413829,52.980997278054744],[-126.62921316454167,52.98113404054287],[-126.62935348266818,52.98128680806284],[-126.62930669305186,52.98146634748346],[-126.62918320819942,52.98163116427883],[-126.62905079799086,52.981760735416266],[-126.6288316162817,52.981889648820136],[-126.62857076058856,52.9819750822446],[-126.62823360586601,52.98201106139448],[-126.62795493549804,52.98209098559882],[-126.62770630276331,52.98218363111273],[-126.62742171950846,52.98224229490591],[-126.62720518739172,52.982361106073604],[-126.62705216524827,52.9824851817551],[-126.62680675690906,52.982607507460436],[-126.62655053265763,52.982691791142905],[-126.62628871903175,52.98277666872047],[-126.62613603923685,52.982924273066814],[-126.62611729044428,52.983107579469696],[-126.62606284965823,52.983275396589114],[-126.62599111342976,52.983471875269785],[-126.62589346433992,52.983618622177886],[-126.62574931631791,52.98377626563992],[-126.62561080377893,52.98393556431213],[-126.62548725784266,52.98409870084769],[-126.62537028924346,52.98426459924692],[-126.62523269074194,52.98442332780199],[-126.62508385626309,52.984579318852596],[-126.62493502056033,52.98473530073681],[-126.6247861755983,52.98489072666582],[-126.62463732954801,52.98504615239237],[-126.6244922384947,52.98520324333358],[-126.62433965063708,52.985358123707606],[-126.62417111228459,52.98550637395458],[-126.62399880988234,52.985653514347014],[-126.62381241425854,52.98579344992158],[-126.62359589512288,52.985915059860766],[-126.6233605697287,52.986026674875774],[-126.62315255794756,52.986155518110586],[-126.6229445135619,52.98628324057832],[-126.62270921737485,52.986397104169974],[-126.62245490991043,52.98648697124601],[-126.62216825263735,52.986533862651605],[-126.62187007270336,52.98655841200328],[-126.62157359420043,52.986571737109124],[-126.62127511066909,52.98657555179842],[-126.62097738738078,52.98656703561912],[-126.62068183406956,52.98658036257052],[-126.62040571304773,52.98664568783494],[-126.62018169230137,52.9867656455345],[-126.6199557799753,52.98688392742711],[-126.61966994481637,52.98692409402929],[-126.61937077809425,52.986944715794806],[-126.61907065443042,52.986964221270306],[-126.61877434352428,52.9869893087387],[-126.6184961324115,52.987040629042035],[-126.61826082011905,52.98715448370248],[-126.61804808292618,52.9872811014084],[-126.61786074323767,52.987421588039915],[-126.61770998095592,52.9875758940939],[-126.61757329304403,52.98773629372823],[-126.61742723307643,52.98789281585222],[-126.61727273596527,52.98804714084892],[-126.61712665069894,52.988203097933535],[-126.61699839468577,52.98836569378293],[-126.61687669982595,52.98852993148467],[-126.61674468578055,52.988690861370145],[-126.61658266303607,52.98884129831601],[-126.61637460201509,52.98897012945116],[-126.61614585179262,52.989086742261264],[-126.6159029691568,52.989194464029644],[-126.61571360347202,52.9893260021356],[-126.61561815269526,52.98949906574589],[-126.61550767000779,52.98966604022395],[-126.61539907542577,52.98983356947912],[-126.6152942049919,52.99000164393321],[-126.61519308847075,52.99017025447657],[-126.61504982700508,52.9903284350796],[-126.61487653192465,52.99047445503819],[-126.61474449610205,52.99063481778149],[-126.61469855067935,52.990812669273964],[-126.61472072780846,52.99099184186848],[-126.61471025881119,52.99117118467425],[-126.61469513234431,52.991350551744475],[-126.61466879514691,52.99152997724604],[-126.61463778410538,52.991708306538484],[-126.6146208721842,52.991893285602],[-126.61459984867507,52.99205306920465],[-126.61451761105836,52.99223726820758],[-126.61452395095942,52.992417643789146],[-126.61454239620448,52.99259683569921],[-126.61462235354644,52.9927701041645],[-126.61476735577443,52.99292566934927],[-126.61492527386633,52.99306995251399],[-126.61494001342317,52.993250848938246],[-126.61492767876545,52.99343020125529],[-126.61491721808059,52.9936100995696],[-126.6148619155631,52.993786314295455],[-126.61483745854169,52.99396572976446],[-126.61481205278072,52.99414459436335],[-126.61472214641763,52.99431594245646],[-126.6146135368601,52.99448347052399],[-126.61450293204334,52.99464316502733],[-126.61441501790374,52.99482235524579],[-126.6142970198752,52.99498712603084],[-126.61421042244358,52.99506433926964],[-126.61418741783815,52.99515129714678],[-126.61415176866683,52.99533133536936],[-126.61412820900618,52.99550906052704],[-126.61435754383851,52.995623282200334],[-126.6147118727936,52.9956051918553],[-126.61503475267239,52.995671296666615],[-126.6152449265492,52.99568588777221],[-126.61554190054667,52.99570226646159],[-126.61583881801747,52.99571472726212],[-126.61614875789954,52.99572431340792],[-126.61642483329598,52.995780018286666],[-126.61671827123186,52.99580985908733],[-126.6170143210607,52.99582623890858],[-126.6173121815749,52.99583980265338],[-126.6176178555814,52.995876300443975],[-126.61790260494688,52.995886578699526],[-126.61819168011357,52.99593660857993],[-126.61840340645932,52.9960587585885],[-126.61858651778935,52.99620178401461],[-126.618769622261,52.99634425339454],[-126.61896753494649,52.996478245114815],[-126.61917933821387,52.99660431074955],[-126.6194077765368,52.996720212639865],[-126.61965190626093,52.99682369662544],[-126.6198941874647,52.99692831933669],[-126.62011802038867,52.99704759674129],[-126.62030389957563,52.99718725223159],[-126.62043408971937,52.997348481927595],[-126.62055502206864,52.99751368659497],[-126.62068894672433,52.99767490529771],[-126.62084885886931,52.9978253373161],[-126.6210356776282,52.99796554246304],[-126.62123083907105,52.99810234171033],[-126.62143342425001,52.998235175105144],[-126.62164526969359,52.99836404189169],[-126.62184228332109,52.998498589254595],[-126.62200217131922,52.99864789925316],[-126.62214166955422,52.998805725201144],[-126.62226817189618,52.99896921333264],[-126.62238445923441,52.999135561087336],[-126.62249331516419,52.99930418904296],[-126.62259565567086,52.99947341604425],[-126.62267748546084,52.99964498338957],[-126.62272001575982,52.99999997206702],[-126.62287253609333,53.00015436664925],[-126.6230148344027,53.00031216771069],[-126.6231552757126,53.00047054316044],[-126.62337543676252,53.00059208373906],[-126.62366889635908,53.0006207866965],[-126.62392411719378,53.00071468294624],[-126.6240942603446,53.000861694638516],[-126.62420869364782,53.00102805028539],[-126.62424956342824,53.00120600073803],[-126.62428018411039,53.001384561212056],[-126.62429962333621,53.001564310370064],[-126.62430693034743,53.001743558985396],[-126.62429743305341,53.00192345234079],[-126.62425524822038,53.00210128660004],[-126.62411197210442,53.00225892134527],[-126.62396964376195,53.00241710667129],[-126.6237822256803,53.00255649003277],[-126.62357318530145,53.0026847730081],[-126.62342897078096,53.0028418560172],[-126.62333533971395,53.00301267378036],[-126.62326136244253,53.00318674920516],[-126.62320982313905,53.00336350286044],[-126.6231601581591,53.003540811321834],[-126.62311610048233,53.003718654866475],[-126.62309167259303,53.00389807098849],[-126.62310082647335,53.004077309647315],[-126.62319665697021,53.00424768169892],[-126.62336404417249,53.00439639406057],[-126.62358513537582,53.00451679965073],[-126.6238550566727,53.00459325427586],[-126.62412862956838,53.00466407727638],[-126.62437374898681,53.00476699027205],[-126.62461054509033,53.004875549561696],[-126.6248427263315,53.00498805921184],[-126.625064757364,53.005107901255094],[-126.6253181498662,53.00520235987753],[-126.62557339367996,53.00529569655653],[-126.62582493838207,53.00539128443692],[-126.62605068271058,53.00550942858248],[-126.62627086982475,53.0056303986826],[-126.62653988540443,53.005707407774736],[-126.62680155296918,53.005793419656264],[-126.62700880159991,53.00592285673708],[-126.6271734179401,53.00607269892505],[-126.62738714341548,53.006197618715596],[-126.62753133711294,53.00635484808546],[-126.6276309072948,53.0065240849476],[-126.62777325294714,53.00668244437995],[-126.62793786658047,53.00683172072448],[-126.62808949783027,53.00698666868811],[-126.62823369680403,53.007143897125836],[-126.62842428102401,53.007281828995374],[-126.62864355986949,53.007403920005714],[-126.62887393869978,53.00751810762041],[-126.62910522803769,53.00763116938467],[-126.6293586529321,53.00772618389299],[-126.6295834703264,53.00784376142471],[-126.62976850352186,53.007984517611696],[-126.62993313758052,53.008134355764845],[-126.63011168890004,53.00827795186091],[-126.63030970117502,53.008412479338],[-126.63051881508214,53.00854022387568],[-126.63072608843325,53.00866965421354],[-126.63097951489284,53.008764109436065],[-126.63123294234593,53.00885855514508],[-126.63151930566816,53.00890801124577],[-126.63181018727622,53.00894791336043],[-126.63208745994665,53.00901366016006],[-126.63236930767054,53.00907265852802],[-126.63262916599908,53.00916034351361],[-126.63272225367893,53.00933073125403],[-126.63288225404463,53.0094822664439],[-126.63293902632871,53.00965900735404],[-126.63293237139688,53.00983888549362],[-126.63290797316033,53.010017747253805],[-126.63293304470645,53.01019689930845],[-126.6329189143094,53.01037626171779],[-126.6329542375079,53.010554793964644],[-126.63312631808759,53.01070178174916],[-126.63322219544138,53.010871589241034],[-126.63337571889164,53.01102596427152],[-126.63358578732696,53.011153133414076],[-126.63377827371349,53.01129104627617],[-126.63400496400205,53.01140692890609],[-126.63426487164313,53.01149573053729],[-126.63452933969202,53.01157779278394],[-126.63479932540172,53.0116542130759],[-126.6349537749193,53.011808016290495],[-126.63505991210124,53.011976090668846],[-126.63506819225428,53.01215533252572],[-126.63504006134086,53.01233477040924],[-126.63508006139753,53.01251272090128],[-126.63513218716493,53.01268948552899],[-126.63514047606988,53.012869283048346],[-126.63515715869929,53.013049044313036],[-126.63520555165758,53.01322582895859],[-126.63537579225489,53.013373379026106],[-126.63563385816309,53.01346387283006],[-126.63590293199269,53.01354030446448],[-126.63611394641293,53.01366746392335],[-126.63625540668828,53.01382581752321],[-126.63640616723697,53.013980759147934],[-126.63655227933228,53.01413741094887],[-126.63666584776986,53.014303193570285],[-126.63675617180952,53.014474713213566],[-126.63681017391389,53.01465146681666],[-126.63679232447535,53.014830849377056],[-126.63672866776285,53.01500655282672],[-126.63663787976076,53.01517792946918],[-126.63656206036426,53.015351457354456],[-126.6365030853349,53.0155277001052],[-126.63640667751766,53.0156979862929],[-126.6362812201407,53.015860576351955],[-126.6362054065259,53.01603466864361],[-126.63614081121618,53.016209820904095],[-126.63604720179988,53.01638064740847],[-126.63590487072308,53.01653885478133],[-126.63576909086524,53.016698702976804],[-126.6357147791595,53.01687547581839],[-126.63566701763676,53.01705277806741],[-126.63567438372402,53.017232589040916],[-126.63579448247938,53.01739721649756],[-126.6359971736242,53.017528911949825],[-126.63617300192443,53.01767418940083],[-126.63631354968207,53.017832547551485],[-126.63637406482383,53.018008145348944],[-126.63643552995029,53.01818430272486],[-126.63662248121344,53.01832391678059],[-126.63684092298753,53.01844656145623],[-126.63704177192231,53.01857937659407],[-126.63722965961597,53.01871842883234],[-126.63741940074344,53.01885747075189],[-126.63761100837952,53.018995381737014],[-126.6378044526527,53.01913216194046],[-126.6380053229133,53.01926498426711],[-126.63821451338275,53.01939271434185],[-126.63842741412348,53.01951873867763],[-126.63864770909242,53.019639684667865],[-126.638893851002,53.019740885373274],[-126.63913261800094,53.0198482839857],[-126.63933071277452,53.019982795398654],[-126.63949170939978,53.0201337508664],[-126.63963320379948,53.020292099812295],[-126.63978214928233,53.020448167100085],[-126.63992177859478,53.02060652579694],[-126.64000467716627,53.02077920327362],[-126.64003538669125,53.02095832229223],[-126.64005862751327,53.02113748180693],[-126.64016294082063,53.02130555183672],[-126.64036289601522,53.021438930825795],[-126.64056377024556,53.02157174869695],[-126.6407451905094,53.02171419194579],[-126.64086160394625,53.02187995453529],[-126.64103560813578,53.02202579921309],[-126.6412068369744,53.02217277924709],[-126.64138362009939,53.02231748776136],[-126.64159561885715,53.02244352016162],[-126.64186656172788,53.022516557423955],[-126.64215729323894,53.02247744188493],[-126.64239787485326,53.02257977708068],[-126.64254405557256,53.02273754110856],[-126.64274217462305,53.02287204656463],[-126.64293195032717,53.02300995875487],[-126.64308369402079,53.02316488595982],[-126.64320569718534,53.02332893937876],[-126.64333328635176,53.023491841667045],[-126.64344318011895,53.02365820191768],[-126.64348790190786,53.02383612287013],[-126.64353168291896,53.02401404892059],[-126.64362203821865,53.0241844329217],[-126.64378771015446,53.02433424524981],[-126.64394688028743,53.024485769143325],[-126.64403539641371,53.02465784811534],[-126.64410807323006,53.02483168979805],[-126.64422170831676,53.02499802880323],[-126.64435115681215,53.025159799194526],[-126.64444897909925,53.02532958591503],[-126.6445374905848,53.025501108687074],[-126.64463345539883,53.02567146116016],[-126.64473221274962,53.02584068671445],[-126.64486539209007,53.02600187135084],[-126.6450292080407,53.02615169198257],[-126.64521901426696,53.026290155966464],[-126.64543473862841,53.026414475690764],[-126.64561712867359,53.02655635015631],[-126.64572332138042,53.026723848860115],[-126.64574567152313,53.02690356745469],[-126.64574280326417,53.02708343301128],[-126.64574832271299,53.027262687895934],[-126.64576412946789,53.027442442243434],[-126.6457687313476,53.02762226685994],[-126.64575372306297,53.02780163403536],[-126.6457489786514,53.0279809450175],[-126.64577411496575,53.02816009244683],[-126.64579365727533,53.028339826253585],[-126.64586631574578,53.02851255508567],[-126.64603575397139,53.028661778649436],[-126.64623111993014,53.028797413595726],[-126.64640888041458,53.028941544162116],[-126.64655230401662,53.02909931794064],[-126.64669381188862,53.02925485201031],[-126.64690952796752,53.02937637212965],[-126.6470204177808,53.02954439948744],[-126.64713315054605,53.029710740308616],[-126.64724216602434,53.029878221931185],[-126.64735397633751,53.03004568810844],[-126.6475149969869,53.03019383512594],[-126.64778239029789,53.03027416620339],[-126.64807794772928,53.03030336235901],[-126.64836716647976,53.030346030002626],[-126.64865189543947,53.03039993588602],[-126.64892476667302,53.03047182581343],[-126.64914604045309,53.03059050545533],[-126.64927367422071,53.03075340062586],[-126.64933613766222,53.03092954486299],[-126.64938181816396,53.03110745772522],[-126.64944707430024,53.03128245700988],[-126.64953841244582,53.031453960054314],[-126.64963998822782,53.031622600848245],[-126.64979547964938,53.031774692504584],[-126.65003527469173,53.03188150737286],[-126.65031640925343,53.03194382854809],[-126.65060657423903,53.03198592973874],[-126.65089578129755,53.03202691497254],[-126.65119230291904,53.03205665384097],[-126.65146031472956,53.03211568312799],[-126.65160939030498,53.03227565152101],[-126.65173331178336,53.03243912919631],[-126.65181908189527,53.03261121695827],[-126.65187128706268,53.03278797218027],[-126.65188993089922,53.032967709607576],[-126.65190481588871,53.03314691199682],[-126.65192998122954,53.033326057572786],[-126.65196634493904,53.03350458547573],[-126.65202416145678,53.03368074479948],[-126.65211551516855,53.03385224560876],[-126.65223199772586,53.03401744006322],[-126.65243415940759,53.034288046162914],[-126.65257275917452,53.03412928533744],[-126.65270664648608,53.03396830933661],[-126.65283678864988,53.03380679809954],[-126.65302420855292,53.03366569505089],[-126.65328348825773,53.033580776116096],[-126.65355691445234,53.03350530723269],[-126.65380756408038,53.033406432793264],[-126.654032679528,53.03328752980818],[-126.65421448755127,53.033145335365255],[-126.65436521859081,53.03298706976281],[-126.6544597604283,53.03281902185652],[-126.65449064297049,53.03264125114187],[-126.65449622558393,53.03245857385878],[-126.65451307255438,53.032278630920615],[-126.65452898675537,53.0320992578811],[-126.65452232430385,53.03190936949392],[-126.65453279920611,53.031740667137974],[-126.6546750514464,53.03157852166733],[-126.65490410387345,53.03147248556433],[-126.65519178167133,53.03141429735152],[-126.65546519924207,53.03133938865014],[-126.65573198249072,53.03125778402581],[-126.65598926434018,53.03116671158032],[-126.6562248060223,53.03105839572084],[-126.65643672229184,53.03093171756604],[-126.65664577636096,53.03080169334876],[-126.65684262992913,53.03066837506508],[-126.65691838506733,53.03049427101287],[-126.65693709737104,53.0303148818237],[-126.65689510400507,53.03013583057558],[-126.65692114175047,53.029947992100524],[-126.65711933925394,53.029841002757856],[-126.65742622314974,53.02981688270679],[-126.65770462635413,53.029763786779085],[-126.6578432349733,53.029607815950634],[-126.65787967771625,53.029428327644254],[-126.65790677357809,53.02924833563769],[-126.65797878665082,53.02907425158633],[-126.65815589562088,53.02893263253428],[-126.65842261765431,53.02884934562375],[-126.6587066883469,53.02874018900059],[-126.6589153633972,53.028646584410446],[-126.65908687354495,53.02850555991244],[-126.6591129963036,53.02832388765376],[-126.65912248238264,53.0281523931029],[-126.65915136137822,53.027967343799546],[-126.65915323167849,53.02778748327147],[-126.65914859926512,53.02760934433389],[-126.65915232599971,53.02742779707887],[-126.65914954374496,53.027248527234406],[-126.65916823025512,53.027069137434026],[-126.6592196746932,53.02689404672861],[-126.65925883102395,53.026708939833775],[-126.65941670138535,53.02659264261045],[-126.65968020361966,53.02648304256801],[-126.65987324666042,53.026345813678816],[-126.66004370744078,53.0261986349412],[-126.66019914650737,53.02604537257077],[-126.66033295323254,53.02588270201947],[-126.66046396786997,53.025721176424],[-126.66067593201001,53.02560009244786],[-126.6609311795127,53.02550117632047],[-126.66118747165974,53.02540897698574],[-126.66144567366537,53.02531956323229],[-126.66167077471778,53.025202885906126],[-126.6618760148308,53.02507063205696],[-126.66208217123437,53.02493781690585],[-126.66234709538567,53.02486013351348],[-126.66264397681229,53.024856225401095],[-126.66291051139379,53.0249421299213],[-126.66314477982425,53.02505510806093],[-126.66341209151597,53.02513035751114],[-126.66370336809108,53.02518643140543],[-126.66383051844623,53.02519635667718],[-126.66397851233819,53.02516526943835],[-126.66418559496864,53.02503188062241],[-126.66442580403542,53.02492743881444],[-126.66470003459247,53.0248480213821],[-126.66498481394994,53.02484697241699],[-126.66526787032245,53.0249142941517],[-126.66554897226395,53.02497601458973],[-126.66583910474098,53.02501807849602],[-126.66613614510148,53.02502424553041],[-126.66641627414586,53.02496383991327],[-126.66668583397279,53.024885000015594],[-126.66694874388368,53.024799473865535],[-126.66721453169488,53.02471841299066],[-126.66749080788911,53.02465073860949],[-126.66777184988867,53.02458975982033],[-126.66804908582513,53.02452431975867],[-126.66831584003825,53.02444604775623],[-126.66857496248144,53.024356621983294],[-126.6688312222368,53.02426384128324],[-126.66909033629885,53.02417497019042],[-126.6693645973482,53.02409833849278],[-126.66964453287197,53.02402727662806],[-126.66990653188522,53.02394343423879],[-126.67012510332502,53.02382957445395],[-126.67029929456373,53.02368403556064],[-126.67045457528336,53.02352460161639],[-126.67061837129413,53.023371833307266],[-126.67082279898653,53.023249097219384],[-126.6711037117904,53.02318082311804],[-126.67139039396804,53.023123165103264],[-126.67168471302888,53.023076112503006],[-126.671974311294,53.023026280223995],[-126.67223835296666,53.022954182083545],[-126.67245210156331,53.022830825241826],[-126.6726092471836,53.0226719334756],[-126.67272145837626,53.02250488918747],[-126.67278212460448,53.02232637755136],[-126.67276254185178,53.022151129345225],[-126.67267479631768,53.021976260828275],[-126.67261132324644,53.02180014227419],[-126.67254505994975,53.021625151152435],[-126.6724610865075,53.021452510973134],[-126.6723892315946,53.02127811635948],[-126.67231924450282,53.021103711043004],[-126.67225297470061,53.020928163947936],[-126.67221002644422,53.02075079862281],[-126.67217259445508,53.020568928639356],[-126.67203108420874,53.02041734139781],[-126.67179848385251,53.020292600953475],[-126.67168584788402,53.02013693144405],[-126.67165226534506,53.01996119781776],[-126.67164842769759,53.01977800682259],[-126.67162944633351,53.01958089975102],[-126.67159792925649,53.019418600785045],[-126.67163059748617,53.019240813563755],[-126.67164165891973,53.01905417604128],[-126.67166857463098,53.01886689243908],[-126.67164510438043,53.0186815809899],[-126.67165576496491,53.01852912667885],[-126.67166298836885,53.0183369082198],[-126.67168913689349,53.018159713773244],[-126.67168161835109,53.01797991413357],[-126.6716713154984,53.01780068611719],[-126.67169369406979,53.017621271993576],[-126.67170858923434,53.01744190045858],[-126.67171602203076,53.017262006642525],[-126.67172251391051,53.017082127128994],[-126.67172807353121,53.01690280869353],[-126.67172803799592,53.01672295734716],[-126.67173079568079,53.01654309903989],[-126.67173256800088,53.016360440485606],[-126.67187204286604,53.01620668756427],[-126.67204993088416,53.01606112416553],[-126.6722343713913,53.015917208433784],[-126.67240567953141,53.01576944087159],[-126.67257226712003,53.015618894116315],[-126.67274076213212,53.01547002152449],[-126.67288206164913,53.0153734135729],[-126.67316358773984,53.01522949821818],[-126.67343117960016,53.01514896796789],[-126.67367591386889,53.01503999826167],[-126.67381540409342,53.01488792806865],[-126.67388171797226,53.014713309103065],[-126.67393113981596,53.01453317490762],[-126.67399555899718,53.014356881362396],[-126.67407870919983,53.01418440710555],[-126.6741655746435,53.01401078202497],[-126.67433317012308,53.013865273724974],[-126.67452986024448,53.01372912790148],[-126.67472931522572,53.01359128061588],[-126.67491563828476,53.01344958172614],[-126.6750578939111,53.01329637349687],[-126.67512048424446,53.01312289548396],[-126.675148392987,53.012940086822745],[-126.67520437854064,53.01276272013786],[-126.67527067441867,53.012587535468995],[-126.67530421832545,53.01240693553682],[-126.67537621164611,53.01223787666665],[-126.67556249996042,53.01209450045752],[-126.67579694512139,53.0119861497102],[-126.67606264473775,53.01190562403271],[-126.67627439747912,53.01177835309134],[-126.67650219666031,53.0116627509731],[-126.67676590117601,53.01157439129336],[-126.67701923156321,53.011479932037304],[-126.67721881078165,53.01135104391452],[-126.6773863228634,53.01120161397438],[-126.67754628613933,53.01104718019762],[-126.67772039054606,53.010901064549316],[-126.67795661888277,53.010788216927494],[-126.67819293229341,53.01067984155437],[-126.6783033156321,53.01051953323048],[-126.67835828736081,53.010337688340954],[-126.6784226818126,53.010161391941956],[-126.6784795997488,53.00998457374058],[-126.67852808873634,53.00980557185215],[-126.67843384580385,53.00963242904264],[-126.67832107531237,53.00941008857943],[-126.67847194537825,53.00927139330325],[-126.67857081516729,53.009149805246835],[-126.67867902676157,53.00902871913013],[-126.67885654821113,53.008863541531674],[-126.67905883938545,53.00873070797965],[-126.67925456770253,53.00859567972817],[-126.67943147567938,53.0084512304095],[-126.67959617587138,53.00830180419933],[-126.67975709094574,53.00815016742159],[-126.67991894552146,53.007998516023214],[-126.68008740250947,53.00785075271494],[-126.68025485482964,53.0076990774993],[-126.68042133818662,53.007545722308784],[-126.6805991606594,53.0074001452745],[-126.68079870080966,53.00727068607863],[-126.68103319579336,53.007167926847764],[-126.68130173460428,53.007091854713856],[-126.68158631103722,53.00702690374006],[-126.68186519673611,53.00695637325828],[-126.68212040881826,53.006865253335775],[-126.68235477828544,53.00675408353451],[-126.68258438258475,53.00663733807982],[-126.68282347167317,53.006530066411074],[-126.68307961989848,53.00643893894277],[-126.68334335947364,53.00635561077731],[-126.68360992646377,53.00627450672461],[-126.68387459564296,53.00619060720448],[-126.68413073956792,53.00609947743499],[-126.68438777211884,53.00600610083766],[-126.68464196610671,53.005909943251005],[-126.68488765841023,53.00580710220449],[-126.68511731393346,53.00569427779924],[-126.68532622835242,53.005568682638845],[-126.6855200465407,53.00543308987932],[-126.68570255581197,53.00529083922764],[-126.68588128552376,53.0051458043939],[-126.68606000504325,53.005000213535084],[-126.68624344555825,53.004858521329275],[-126.68644097249711,53.004721784828256],[-126.68665257681296,53.004589448220564],[-126.68686978247749,53.0044581991424],[-126.6870860700068,53.00432751078988],[-126.68729110307937,53.004193534922145],[-126.68747740656036,53.00405574145324],[-126.68763745130948,53.00391025692128],[-126.68776002058564,53.003756026298774],[-126.6878263776015,53.00358867677808],[-126.68784868947968,53.00340981383103],[-126.68784570620495,53.003225504606256],[-126.6878380039952,53.003038417020015],[-126.6878452844576,53.00285348312615],[-126.68788532851119,53.002675081414786],[-126.68794408159738,53.00249936742521],[-126.6880121844926,53.00232472835193],[-126.6880858858661,53.00215004758491],[-126.68816520408254,53.00197646348987],[-126.68824732275444,53.0018034187696],[-126.68833132206001,53.001630362992444],[-126.68841531475306,53.00145786296775],[-126.68850868077772,53.00128699344622],[-126.68861045531094,53.001117195280266],[-126.6887141045238,53.00094795081499],[-126.68881026926992,53.000777620438384],[-126.68889053483481,53.00060570649927],[-126.68894089008111,53.00043004978374],[-126.68895290527256,53.00025012586065],[-126.68896097827637,53.00000019467036],[-126.6889541858398,52.99986857347877],[-126.6889428739297,52.999689350553794],[-126.68892596004791,52.99950903978381],[-126.68889971819011,52.99932990404952],[-126.68885950521091,52.99915197047219],[-126.68880251443521,52.99897525543509],[-126.68873341915007,52.99879973161771],[-126.68865497830883,52.998624262328924],[-126.68857096335381,52.99844938132229],[-126.6884850680815,52.998274520185795],[-126.68840198016028,52.99809963361743],[-126.6883235660547,52.99792472865561],[-126.68825447766993,52.997750324986875],[-126.68819751843054,52.997575285706205],[-126.68815735547741,52.99740015731573],[-126.68813867036576,52.99722545934018],[-126.68815822529352,52.99704997339709],[-126.68821512160117,52.99687539899385],[-126.68829626831176,52.99670011821367],[-126.68838767069852,52.996524777476864],[-126.6884772211207,52.996349447460815],[-126.688551808669,52.99617308418075],[-126.68859746899142,52.995996325022396],[-126.6885917638898,52.995816513122286],[-126.68857017115519,52.99563566446907],[-126.68857752299401,52.99545633207047],[-126.68860995656419,52.99526957400645],[-126.68868925965575,52.995095979886045],[-126.68886633361058,52.99496720160906],[-126.68913551622074,52.99487934539914],[-126.68941037778396,52.994796502356955],[-126.68967973083046,52.99471928472256],[-126.6899596356999,52.9946593778736],[-126.69024041993198,52.99459666828728],[-126.69051343868615,52.994515509783135],[-126.69079660611337,52.994484716381486],[-126.69108999606841,52.99450876982562],[-126.69138733717867,52.994546246093265],[-126.69168530345726,52.99456522421882],[-126.69198593077405,52.99457523045605],[-126.69228254317706,52.99456788633526],[-126.69257501250799,52.994535348714194],[-126.69286816632803,52.99448712745923],[-126.69314604708127,52.99441881621087],[-126.6933917804807,52.99432380888291],[-126.69360627661585,52.99420208238743],[-126.69380747164165,52.99406587543529],[-126.694008674452,52.99393022387351],[-126.69422593103346,52.99380680359066],[-126.69445545109514,52.99369115458236],[-126.69468216003584,52.99357440111497],[-126.69489377817646,52.99344877165422],[-126.69510340649457,52.99331474483448],[-126.69529330489263,52.99317299901821],[-126.69543261844576,52.993019216136645],[-126.69545297534196,52.99283812978019],[-126.69543589901335,52.99264941132387],[-126.69553596089985,52.992491942312164],[-126.69571372705813,52.99235082309579],[-126.69592333827786,52.992216238985286],[-126.69615082328136,52.99209107820253],[-126.69638687964844,52.99197706299437],[-126.69663269260964,52.99188820679069],[-126.69694353900434,52.99189701934749],[-126.69723522315529,52.99193170840109],[-126.6975261570154,52.99197705100421],[-126.69781621551067,52.992026324525796],[-126.69810620092528,52.992071106552785],[-126.6983978596794,52.9921041165271],[-126.6986919972629,52.99211806152004],[-126.69898680839452,52.992115758104866],[-126.6992823847511,52.99210279958166],[-126.69957876650294,52.99208254739409],[-126.69987600898817,52.99205837186066],[-126.7001732384528,52.992032519290085],[-126.70047048940813,52.992008898002105],[-126.70076688855849,52.991989772243784],[-126.70106436639944,52.991979039067395],[-126.70136205100943,52.99198175067133],[-126.70165995403096,52.99199678642274],[-126.70195885678422,52.99201629772402],[-126.7022567730236,52.992033008254175],[-126.70255266262453,52.99203908923798],[-126.7028463472979,52.9920255772429],[-126.70313962962055,52.99198684974781],[-126.70342510815921,52.991928553733636],[-126.70369729828424,52.99185577797603],[-126.7039571008614,52.99176794345594],[-126.70421208157713,52.99167117264288],[-126.70446519156468,52.99157329188048],[-126.70472211939344,52.99148154636112],[-126.7049877011445,52.99140488062091],[-126.70527056787921,52.991357810308024],[-126.70557170682385,52.991343117359854],[-126.70587379903719,52.991330103262335],[-126.70616048918528,52.99128861073337],[-126.70643899815721,52.991204020301645],[-126.70664973739258,52.99108397737659],[-126.70672715838248,52.990914307950106],[-126.70675392032557,52.99072813369898],[-126.70676678285717,52.990548201379866],[-126.70680113829332,52.990369825506725],[-126.70685505521887,52.990189091178735],[-126.70693804345468,52.99001771175975],[-126.7071431964842,52.989898821889724],[-126.70739437110561,52.989798705109195],[-126.7076408780003,52.98969805103535],[-126.70775858332146,52.98953822401586],[-126.70774628808691,52.98936012781024],[-126.70771621364375,52.98917934139279],[-126.70768708907725,52.98899910504826],[-126.70766078957877,52.98881997228561],[-126.70765034210636,52.988640744338156],[-126.70765760284745,52.98846084529987],[-126.70766021593965,52.988281538908524],[-126.70768056131202,52.98810212604348],[-126.70770089158657,52.987922713245304],[-126.70771377358842,52.98774334514172],[-126.70772663130371,52.98756342136136],[-126.70773670701365,52.987384070064465],[-126.7077439821005,52.98720417079634],[-126.70774659475116,52.98702486426869],[-126.7077417352583,52.986845046784346],[-126.7077331442384,52.98666524272093],[-126.70772455344041,52.98648544760126],[-126.7077206193373,52.986305615538356],[-126.70772043171375,52.986125769926524],[-126.70772304439745,52.98594646328386],[-126.70772378198834,52.985766603113696],[-126.70772171376638,52.985586768735395],[-126.70771779468366,52.985406936486264],[-126.70771293549754,52.985227118826955],[-126.70770808560367,52.98504785689494],[-126.7076938702955,52.98486641003634],[-126.70766469282766,52.98468281184995],[-126.70764861221221,52.984501376147215],[-126.7076783527851,52.984326944540896],[-126.70777075677196,52.98416166596556],[-126.70790525526684,52.98400285790431],[-126.70806405583055,52.98384783015672],[-126.70822940148233,52.983693318648754],[-126.70838165885014,52.98353720021245],[-126.70852080953809,52.98337836340353],[-126.70866277439825,52.98322007425624],[-126.70881317234348,52.98306453114604],[-126.70899175788088,52.98292114454572],[-126.70922497543273,52.98280936071447],[-126.70949982257687,52.98273262828413],[-126.70979071531096,52.98272303283732],[-126.71008768178031,52.982741979123894],[-126.71050149912753,52.982775899351154],[-126.71049425139017,52.98295579917537],[-126.71048512296343,52.98313570135161],[-126.71041713382932,52.983309799643095],[-126.71048903381225,52.98348137833209],[-126.71052000389147,52.98365991816381],[-126.71048849404296,52.983839399379185],[-126.71034651534123,52.9839965791729],[-126.7102822273083,52.984168969642326],[-126.71032252520506,52.984347462204],[-126.71037958581681,52.98452416837142],[-126.71042546245415,52.98470149770757],[-126.7104629704739,52.984880006986295],[-126.7105079169989,52.98505790663037],[-126.71056778526616,52.98523459571779],[-126.71063511100998,52.98541179560089],[-126.71069962770476,52.98558790076275],[-126.71074830350022,52.985764657195745],[-126.71076617912776,52.98594103455443],[-126.71078871180228,52.986117392774545],[-126.71072854710373,52.98631329034027],[-126.71063212065235,52.98651613884474],[-126.71064290622,52.98665950659715],[-126.71061311055294,52.98683001263222],[-126.71060025034967,52.9870099368961],[-126.71059113657664,52.987189847518486],[-126.7105941331319,52.98736912034971],[-126.71060741187905,52.987550007546616],[-126.71062726595532,52.98773310518381],[-126.71066757796963,52.98791215299306],[-126.71074227398391,52.98808258471988],[-126.71088849596168,52.98823466494084],[-126.71109602732065,52.98837067823542],[-126.71130812342835,52.988501069744515],[-126.71155518879607,52.98860155027308],[-126.71184297126072,52.98862670639876],[-126.71214619292397,52.98862711606815],[-126.71244753548301,52.988625850981116],[-126.71275607273726,52.98860941844173],[-126.71306185611544,52.98859524288683],[-126.7133457950316,52.98861369519307],[-126.71359444021557,52.98869679759783],[-126.71380483965268,52.98883671525863],[-126.71396418281857,52.98899150916058],[-126.71404732030112,52.989164128782186],[-126.71411191329206,52.98934359304149],[-126.71427468042762,52.989479871912124],[-126.71446652735001,52.98962494781041],[-126.71462673533757,52.98977580906805],[-126.7147702892661,52.989934059250004],[-126.71493420302102,52.99008322123806],[-126.71512593232146,52.99022100858772],[-126.7153278234107,52.99035313112601],[-126.71552972526034,52.99048581801617],[-126.71571871797393,52.99062753850281],[-126.71592428799866,52.99075627597471],[-126.71617497161321,52.990849445656984],[-126.71644868517419,52.990924536816266],[-126.71672780862701,52.990988397750044],[-126.71701873791207,52.99103257182179],[-126.71735623413265,52.991072535355016],[-126.71763514369925,52.99117841221697],[-126.71782403150745,52.991258507773125],[-126.7180793943406,52.99135163596453],[-126.71833569886597,52.9914447668309],[-126.71859472956118,52.99153395405908],[-126.71885559876935,52.991621444176964],[-126.71911555713216,52.9917106246078],[-126.71936905973051,52.99180377032643],[-126.71960417904116,52.9919132714475],[-126.71980800538634,52.99204817143445],[-126.72005953168758,52.99213460433973],[-126.72034960779261,52.99218325770715],[-126.72063782803302,52.992232477509],[-126.72092419256595,52.99228227272238],[-126.72120410100489,52.99233603320355],[-126.72150946240954,52.99235097322405],[-126.72180554722938,52.992368210385905],[-126.7221030549747,52.99236022086044],[-126.72240073002367,52.992361203055495],[-126.72269686694652,52.99238235516305],[-126.72299297152396,52.99240070979234],[-126.72329084166913,52.99241401477905],[-126.72358776725964,52.99242619528045],[-126.72388471225408,52.99243950444719],[-126.72418260734592,52.992453362831874],[-126.72447694675232,52.99247844798437],[-126.72475698507634,52.99253947846342],[-126.72502245414519,52.992622444452735],[-126.72528425511004,52.99270823831271],[-126.72559654150989,52.99274553650233],[-126.72575138920396,52.992633647218106],[-126.72583130829888,52.992451067538354],[-126.7259516677667,52.99228672363678],[-126.72608984628566,52.99212730791364],[-126.7262486683061,52.99197561777235],[-126.72642252715295,52.991829428614594],[-126.72660859211372,52.991688210985096],[-126.7268125278645,52.99155584740769],[-126.72706286509413,52.99146298193491],[-126.72733588924149,52.991387340270315],[-126.72760219741676,52.99130053373402],[-126.72788035650481,52.9912528733014],[-126.728168636671,52.99125052822455],[-126.72847297122738,52.99125985368624],[-126.72876776508568,52.99125691109141],[-126.7289063800417,52.99128743001633],[-126.72902215396863,52.99134666900729],[-126.72917226112497,52.99150317600419],[-126.72932237907555,52.991660247501606],[-126.72949655339755,52.99180540845815],[-126.72972896507031,52.99191826800634],[-126.72999533236765,52.99199842036643],[-126.73027626245884,52.99205719112403],[-126.73048647341143,52.99218194818752],[-126.73069124720315,52.99231514731678],[-126.7309236306405,52.99242688411955],[-126.73116340741966,52.9925335365372],[-126.7314068636919,52.992637915539746],[-126.73165031695582,52.9927411824559],[-126.73189289839777,52.99284837178778],[-126.73214826300129,52.99293922851887],[-126.73242914436695,52.99299463276969],[-126.7327218872244,52.99303483944976],[-126.73300918271016,52.993082914285594],[-126.73329466566187,52.993134926167905],[-126.73358638808818,52.99316953421689],[-126.73388415604116,52.993175524948754],[-126.73417636924319,52.99318491122542],[-126.73438954842769,52.993155569254],[-126.73471830667448,52.993119903807234],[-126.73508010431499,52.99310587803376],[-126.73532787809815,52.993134588195005],[-126.73561531755752,52.99319162931197],[-126.73590487133153,52.99326209438687],[-126.73620415179228,52.99324846436159],[-126.73644605979791,52.993153946295635],[-126.7367220055557,52.993086108662645],[-126.73702411815032,52.99301978316147],[-126.73731327716825,52.99301405756185],[-126.73761344001997,52.99305139981518],[-126.73788830338563,52.99308217624785],[-126.73800599336491,52.99303493148195],[-126.73804888317034,52.99297975511544],[-126.73805874475745,52.9927953642923],[-126.73807710767369,52.99261651410399],[-126.73815807954473,52.9924434395014],[-126.73826138374352,52.99226686326344],[-126.73841841369321,52.99212189111226],[-126.73868893214504,52.99206360312499],[-126.73905769636822,52.992021516145385],[-126.73927412527895,52.99196580702281],[-126.73956050433864,52.99190798232143],[-126.73985070231146,52.991855179996904],[-126.74009643334516,52.99176678892111],[-126.74026646775755,52.991618926664586],[-126.7404326963435,52.99146604996299],[-126.74063473175723,52.99133422992174],[-126.74085183505098,52.99120960301341],[-126.74101537081977,52.991063465775575],[-126.74101507614083,52.99088641747876],[-126.74098203840822,52.990703972124905],[-126.74094342287982,52.9905226823729],[-126.7409422322532,52.99034731602627],[-126.74109249822315,52.990189491509604],[-126.74125219985409,52.99003777507227],[-126.74140161628829,52.98988443774571],[-126.74146466064451,52.989701388080114],[-126.74170318424274,52.98968251421323],[-126.74192458798586,52.9898049485912],[-126.74212745641317,52.98993533427794],[-126.74230909165924,52.990078188569974],[-126.74251571907169,52.99020911468055],[-126.7427527060109,52.990315752379324],[-126.7430254542003,52.990386870691275],[-126.7433092175052,52.990446713207675],[-126.74359015574339,52.99050545229252],[-126.74387383716133,52.990561376454885],[-126.74415660358147,52.99061786151678],[-126.7444393608635,52.990673781193024],[-126.7447230594489,52.99072970321195],[-126.74501393229569,52.99076988224751],[-126.74530976023145,52.99077249458067],[-126.74560017914284,52.99073312343488],[-126.74588568928316,52.990680326805],[-126.74617217860705,52.99062977338741],[-126.74646671108009,52.99061222072098],[-126.74676616141507,52.990608638828725],[-126.7470637605165,52.99060675324716],[-126.74736147301375,52.990610469054694],[-126.74765922975685,52.990617545545646],[-126.74795784813955,52.990620133530534],[-126.74825545241303,52.99061768910438],[-126.74853728462857,52.99067416962589],[-126.74882006778469,52.99073119923975],[-126.74911712729218,52.99075116754483],[-126.74941416716749,52.9907700056912],[-126.74970049625026,52.99081636970661],[-126.7499816039075,52.990884057118286],[-126.75023974249085,52.99097150453724],[-126.75041589070604,52.99111885469481],[-126.75065170506033,52.99121092560692],[-126.75093812745484,52.99126232412948],[-126.75116599022718,52.9913790972525],[-126.7513772589596,52.99150717245649],[-126.75159317158051,52.99163354129758],[-126.7518026067476,52.99176331276606],[-126.75199165674962,52.99190105789872],[-126.75214362722134,52.99205248616278],[-126.75225573136673,52.99221873605049],[-126.75235208244875,52.99239068921281],[-126.75245865502642,52.99255978009709],[-126.75259305411141,52.992720284470074],[-126.7527404714036,52.99287734384596],[-126.75290270343997,52.99302870556198],[-126.75308344257668,52.99317041949145],[-126.7533067086086,52.99329057952386],[-126.75352535795079,52.99341300081855],[-126.75369965181888,52.99355980204167],[-126.75382665941017,52.99372315812635],[-126.7538922633037,52.99389754767667],[-126.75393091724999,52.99407771237616],[-126.75399374039606,52.994252675425095],[-126.75411977094723,52.99441379625483],[-126.75427649020652,52.99456855298436],[-126.75439606351082,52.99473418812991],[-126.75448684080193,52.994906739814645],[-126.7547320202018,52.99499817784862],[-126.75502635542536,52.99502094580462],[-126.75529651195063,52.99510045224226],[-126.75551790340056,52.995218378923106],[-126.75570332833819,52.99536062350656],[-126.75590351373593,52.995493243831326],[-126.75615531318832,52.995589683517785],[-126.75640527752114,52.99568781081457],[-126.75662394811914,52.995810226188134],[-126.75682137194885,52.99594511277775],[-126.75699105962684,52.996093614993754],[-126.7571459544076,52.99625062071496],[-126.75731192225479,52.99639971111267],[-126.75751388400703,52.99652672339135],[-126.7577509338861,52.99663277479753],[-126.75800737210636,52.996727495383745],[-126.75826841424482,52.99681825932928],[-126.75852207306188,52.996913561442405],[-126.75877388670975,52.997009986491555],[-126.75902478597266,52.997106981658256],[-126.75927382530965,52.99720510883996],[-126.75951738235202,52.99730887366079],[-126.75976003015916,52.99741432917515],[-126.76000722685872,52.997513587255455],[-126.76026820802691,52.99760042967213],[-126.76054298346429,52.997675412074],[-126.76082050161602,52.99774757919897],[-126.76109063622944,52.99782427561308],[-126.76134141023073,52.99791454326077],[-126.76152673600664,52.99804950008138],[-126.76167706683111,52.99821044680882],[-126.76188559938362,52.998337964956775],[-126.76210520511097,52.998459252514294],[-126.7623008272879,52.99859525315783],[-126.7625010586378,52.99872842672658],[-126.76270867573174,52.99885706990122],[-126.76290890959302,52.9989902427567],[-126.76310545246288,52.999125680295535],[-126.7632992501193,52.99926449698191],[-126.76348850165941,52.999409510393846],[-126.76369702539618,52.99953590480914],[-126.76394498282201,52.99962394403451],[-126.76422321336108,52.99968320754951],[-126.76451704339934,52.99972724607178],[-126.7648118046451,52.99977072202236],[-126.76509559582696,52.99982770628198],[-126.76537214955569,52.99989650729467],[-126.7656585071416,52.9999400356863],[-126.76595818838227,52.99994648910052],[-126.76625642255942,52.99997537149872],[-126.76641831284402,53.000000092411746],[-126.76665548516185,53.000110607445464],[-126.76685753274297,53.000239835349554],[-126.76701801201354,53.00039230945453],[-126.7671960732574,53.00053682495915],[-126.76739168628718,53.00067170561239],[-126.76763444358402,53.00078106175774],[-126.76784939960552,53.000901239366684],[-126.76797271037658,53.00106236293015],[-126.76806917539062,53.00123597851235],[-126.76818606983076,53.001403867035954],[-126.76832704523416,53.00156150444852],[-126.76855123776933,53.001676026700665],[-126.76880223276918,53.001776362197326],[-126.76899604555794,53.00191348406914],[-126.76915842075817,53.00206762817073],[-126.76926218608867,53.002231674756565],[-126.76926085383155,53.00241545656303],[-126.76934882975345,53.002584088321136],[-126.7695518887536,53.002716110851246],[-126.76978724833855,53.00282830775899],[-126.77004733138874,53.00291457866092],[-126.77031568970665,53.00299350676233],[-126.77056297875791,53.00309386272004],[-126.7708065821794,53.003197603955165],[-126.77106119695793,53.0032900670132],[-126.77132680318701,53.00337180775563],[-126.77159425127307,53.00345130368032],[-126.77186722350872,53.00352739217556],[-126.77214112730748,53.00360291814072],[-126.77240027375767,53.00368806944124],[-126.77261990106129,53.00380653136499],[-126.77276930271456,53.003964672959384],[-126.77284341678634,53.00413955154319],[-126.77294352960888,53.004306980453315],[-126.77312998311618,53.00444863495778],[-126.77329882102964,53.004597119118095],[-126.77345096388748,53.0047513243321],[-126.77356319500166,53.004918108432484],[-126.77365965097287,53.00508948714184],[-126.77375147943984,53.00526257249029],[-126.77377336807054,53.00543947838379],[-126.7737542137732,53.005617774124325],[-126.77371919645286,53.005796729720466],[-126.77367765358015,53.005975737061426],[-126.77363892776201,53.00615528168672],[-126.7736113860135,53.00633475291151],[-126.7736034401268,53.006513530799474],[-126.7736169673644,53.006692176771054],[-126.77364541224725,53.006870715897136],[-126.77368320539621,53.007049202634974],[-126.77372658354894,53.00722764373747],[-126.77377184376385,53.0074060814235],[-126.77383376684483,53.00768021356994],[-126.7738940278845,53.00750388942561],[-126.77395336259121,53.00732757130814],[-126.77402392223605,53.0071534205973],[-126.77411883317572,53.0069830274762],[-126.77423152976547,53.00681588815382],[-126.7743423587369,53.00664875199996],[-126.77443071671452,53.00647784578797],[-126.77449190967499,53.00630207983076],[-126.77453813355926,53.00612360623817],[-126.77457967295177,53.00594459860979],[-126.77462870883191,53.00576722703555],[-126.77470210108932,53.0055947424484],[-126.77489842636926,53.005458984563475],[-126.77513633950205,53.00535096714999],[-126.7753865398091,53.005251832986865],[-126.77563960273442,53.00515659695337],[-126.77589551281869,53.00506359172968],[-126.7761552364671,53.004975034142575],[-126.77641878421895,53.004891497828964],[-126.77669948778433,53.00482746233356],[-126.77698120283313,53.0047673370015],[-126.77722959039878,53.00467157248954],[-126.77746656266143,53.00456411225953],[-126.77770065486607,53.00445275302728],[-126.77793190241407,53.00433861514342],[-126.77815935408184,53.00422113117017],[-126.77838398157179,53.00410198901346],[-126.77860480872997,53.00398007456626],[-126.77882189596454,53.00385705485608],[-126.77903613390171,53.003731821379944],[-126.77924845269611,53.003603794275215],[-126.7794541480443,53.003471328275964],[-126.77964951222825,53.00333500373207],[-126.77983171780933,53.00319372778841],[-126.77999794177755,53.00304583384239],[-126.78014627211775,53.00288965823849],[-126.78027767001117,53.0027263062875],[-126.78039309225998,53.002557457048994],[-126.78049262588146,53.002387027504994],[-126.78057351572946,53.00221785080582],[-126.780534762015,53.00203881615882],[-126.78044755529743,53.00186401969877],[-126.78033714063831,53.001695544365376],[-126.78025278936325,53.00152409951418],[-126.78024205321057,53.00134599988285],[-126.78025366155016,53.001164946469736],[-126.78022609784863,53.00098528177515],[-126.78020322802575,53.00080669760459],[-126.78023815786058,53.00062549878415],[-126.78028246457407,53.00044591425518],[-126.78025832050878,53.00030039979867],[-126.78011122262309,53.00016690457259],[-126.78002509111224,52.99999994452755],[-126.78003478241212,52.99981610673108],[-126.7800248236842,52.999629037193905],[-126.78001954376884,52.99944305725503],[-126.78007150586723,52.99927462774997],[-126.78023418689665,52.999137962177976],[-126.78048317181853,52.99902649826781],[-126.7807350343616,52.998918941245925],[-126.78099274120571,52.99882478286088],[-126.78117686136542,52.9986874181066],[-126.78133927902971,52.99853674103175],[-126.7814941437725,52.99838219625195],[-126.78165182453431,52.9982281973473],[-126.78182175512926,52.998080275650985],[-126.78200391034748,52.99793787547446],[-126.78219074294441,52.99779656453941],[-126.78237290594062,52.9976547195053],[-126.78254378837794,52.99750847571232],[-126.78269016181545,52.99734893850872],[-126.78277658010705,52.99717691705442],[-126.78275741343158,52.996997196722916],[-126.782634947446,52.99683328538133],[-126.78244669142066,52.996695018961645],[-126.78223619219325,52.99656418802903],[-126.78203219759322,52.99643219300039],[-126.78189029865128,52.99637879077375],[-126.78182544923594,52.9963030217948],[-126.78183782242715,52.99616398856764],[-126.78195788500346,52.99604496727706],[-126.78220132125216,52.99593746267716],[-126.78245242103554,52.995839982904656],[-126.78271682534842,52.99575642592101],[-126.78300131511087,52.995699072926264],[-126.78330268489775,52.99569650628336],[-126.7835790094734,52.99575350474929],[-126.783774822279,52.99589675730242],[-126.78402811924208,52.99596958688253],[-126.7843342831395,52.995974273952115],[-126.78463210425606,52.99598237747329],[-126.78492991972301,52.99598935970583],[-126.78522687757354,52.99600082919761],[-126.78552220770526,52.99602519987977],[-126.78581580664229,52.99605686061681],[-126.786111054443,52.99607673911285],[-126.7864124119566,52.99607417358486],[-126.78670399016994,52.996097436800106],[-126.78698686074101,52.99615438363407],[-126.78726165319165,52.996228183393306],[-126.78752451718579,52.99631327690708],[-126.78777476584047,52.99642254200852],[-126.78790915462044,52.99657459798053],[-126.78797024488486,52.99674899937979],[-126.78801281969194,52.99693136850664],[-126.78807582906137,52.99710856291259],[-126.78818625662947,52.99727591092226],[-126.78833937352162,52.997431202878765],[-126.78854619921542,52.99756316814482],[-126.78844951128895,52.99773414203996],[-126.7884412865483,52.99789443913839],[-126.78866862206317,52.99802514644415],[-126.78879293935468,52.99818679804763],[-126.78888016236652,52.99836102401704],[-126.78893477207052,52.998538274051214],[-126.78895581559185,52.998716304456075],[-126.78895262505088,52.99889673814561],[-126.78893825202258,52.99907724663938],[-126.78892197690396,52.9992566472649],[-126.78888517737379,52.99943562042189],[-126.78885677869931,52.99961510211076],[-126.788820015728,52.99979688087519],[-126.78878419304299,52.99997865331636],[-126.788781796213,52.999999960232174],[-126.78883921449781,53.00017719136116],[-126.78891707906418,53.00034979439328],[-126.78905257074737,53.000509694410304],[-126.78920292095533,53.000665568328984],[-126.78935326177748,53.000820877343344],[-126.78950360386497,53.00097619511515],[-126.78964373710616,53.00113493380692],[-126.78975608928258,53.001304508313176],[-126.78987675010536,53.00146954475677],[-126.7900538696278,53.00160955021684],[-126.79026801968963,53.001732498658036],[-126.79049881785207,53.00184805586923],[-126.7907342487674,53.00196133145445],[-126.79096506437115,53.00207688763733],[-126.79117366796717,53.00220323335273],[-126.79127299565233,53.00237457012896],[-126.79129124382747,53.00255261854793],[-126.79121515899206,53.002727382425924],[-126.7911446874922,53.002902099607056],[-126.79107139799203,53.00307627982562],[-126.79099342404538,53.00324993559628],[-126.7909098441069,53.003422499358074],[-126.79081688521782,53.003593449563326],[-126.79070056088845,53.003762315206615],[-126.79064685237175,53.00393524318231],[-126.79066141788974,53.00411612212051],[-126.7907216729891,53.00429500934264],[-126.79083115759013,53.004460675342344],[-126.79097966182606,53.00461655914757],[-126.7911448925552,53.0047684130308],[-126.79130364078618,53.00492254235131],[-126.79143075968743,53.005083051345736],[-126.79151890664573,53.00525502747803],[-126.79157356743944,53.00543395172798],[-126.79160025637636,53.00561362847208],[-126.79159145609597,53.00579297865361],[-126.79153878914572,53.00597205849178],[-126.79144770868308,53.00614299630767],[-126.7913341096409,53.00630848229396],[-126.7912074066825,53.0064712591261],[-126.79107505676008,53.00663238834437],[-126.7909408645409,53.00679408555021],[-126.79081040003169,53.006956322350725],[-126.79068557006096,53.00711964177541],[-126.79055885760638,53.00728297366514],[-126.79043496204699,53.007446851282694],[-126.7903204297384,53.00761234237027],[-126.7902349301976,53.00778267686079],[-126.7902168219367,53.00796377437111],[-126.7902098968929,53.008143111592695],[-126.79022910011594,53.008322829524545],[-126.79031355732157,53.00849707209849],[-126.79040173359192,53.008671289673686],[-126.79042084875044,53.00884541424433],[-126.79036529275231,53.00902059503704],[-126.79028175109396,53.00919596331426],[-126.79021314811777,53.00937235198401],[-126.79018846095705,53.00955068749584],[-126.79018808235256,53.00973110125059],[-126.79017930052748,53.009911006521705],[-126.79015742635397,53.01009044368687],[-126.79013088232061,53.01026935631233],[-126.79010433789702,53.01044825994961],[-126.79008153722793,53.01062770324646],[-126.79006807009908,53.01080708399545],[-126.79006676506195,53.010987503818434],[-126.79007943242968,53.01116670945841],[-126.79014616339433,53.0113416354018],[-126.79022220779115,53.011515369363636],[-126.79029917890205,53.01168910601769],[-126.79037057553637,53.01186343576414],[-126.79043637826553,53.012038923507326],[-126.79050312240963,53.01221440488963],[-126.79057079747258,53.012389315215295],[-126.79063845832496,53.012564234547526],[-126.79070613450224,53.01273914475945],[-126.79077288086047,53.012914625916714],[-126.79083682003274,53.01309012584371],[-126.79089797743141,53.0132662091389],[-126.79095447548238,53.01344231466819],[-126.79100632038734,53.013619580889376],[-126.79105256492512,53.013796875667595],[-126.7910913633373,53.01397534988134],[-126.79111150349088,53.01415450500975],[-126.79111671895333,53.01433431601929],[-126.79111165915899,53.01451420489148],[-126.79110286990769,53.014693553993546],[-126.79109407599518,53.01487345890608],[-126.79109088739375,53.0150527704056],[-126.79109983692751,53.015232565241725],[-126.79111625416449,53.01541230100888],[-126.79113826206071,53.01559144345951],[-126.7911425370297,53.0157712695901],[-126.79114401887743,53.01595110547095],[-126.79114644186261,53.016130943985],[-126.79115630736824,53.016310167798814],[-126.79119977295207,53.01648804566421],[-126.79125440511699,53.01666472803123],[-126.79123439308626,53.01684303163551],[-126.79119197207015,53.017022041321866],[-126.79116917246697,53.01720148413344],[-126.79115665934906,53.01738142269283],[-126.79114039693583,53.01756137741239],[-126.7911073042988,53.0177392128245],[-126.79104528520377,53.017918353786264],[-126.79092601018645,53.0180816349482],[-126.7907192659551,53.01821020912805],[-126.79048904336078,53.01833108737139],[-126.79032647824648,53.01847617317987],[-126.7902194361655,53.01864440962744],[-126.79014524181667,53.018821399389054],[-126.79009252144218,53.01899880105534],[-126.79008467388824,53.019179263825976],[-126.79011508430439,53.01935890557534],[-126.79017161855869,53.019536695960056],[-126.79026536654807,53.0197080784145],[-126.79040739447319,53.0198640052659],[-126.7905819137883,53.02001018495637],[-126.79076386138512,53.02015408243614],[-126.7909531952508,53.0202934389053],[-126.79118866716581,53.02040336005404],[-126.79144253012221,53.02049802531489],[-126.79169912485833,53.02058931001977],[-126.7919456466771,53.02069074682661],[-126.79216269171737,53.020813671690405],[-126.79234647333594,53.02095530432176],[-126.79250616037281,53.02110662776569],[-126.7926519565176,53.02126364711848],[-126.7927596671578,53.021431572016105],[-126.7928757213023,53.02159663484913],[-126.79299458465825,53.02176167867508],[-126.7931143794801,53.02192615134766],[-126.79323601715502,53.022090055700744],[-126.79336510839411,53.022252233438614],[-126.79353870660312,53.02239841487852],[-126.79370491487612,53.02254801641678],[-126.79393118517764,53.02266415257382],[-126.79418228033138,53.022759951130155],[-126.79442143539868,53.02286591458408],[-126.79459049437916,53.02301829258504],[-126.79471509602273,53.02319001931372],[-126.79486651977248,53.02334755372898],[-126.79502714056075,53.023498311581015],[-126.79521459405744,53.02363543268672],[-126.79543531430274,53.02375384447728],[-126.79568006963689,53.02385921182171],[-126.79593130613034,53.02396116429709],[-126.79617140910358,53.02406768257031],[-126.79637923099459,53.024195144105015],[-126.79647583321328,53.02436705792347],[-126.79648102019617,53.02454407105708],[-126.79646571874586,53.02472401939925],[-126.79644109093366,53.02490459543906],[-126.79641553669542,53.02508517770682],[-126.79639462221216,53.0252646080724],[-126.79636997277626,53.02544406362468],[-126.79634810633657,53.02562294457098],[-126.79633747991349,53.0258028612216],[-126.79634363474642,53.025982108790664],[-126.79635356041761,53.026162451446176],[-126.79634669598194,53.02634459272575],[-126.79633147734393,53.02652902251952],[-126.79632277066979,53.0267117319874],[-126.79633639537876,53.02689092904574],[-126.79638631707678,53.02706315775806],[-126.79648556642177,53.02722608900771],[-126.79662855816515,53.02738144570259],[-126.79679946847686,53.02753156669794],[-126.79697968580582,53.027679939259215],[-126.79715524939066,53.02782947250256],[-126.79730851373068,53.02798419418551],[-126.7974032291831,53.028154434380376],[-126.79743742261304,53.02833461274143],[-126.79745293500842,53.02851379677811],[-126.79746003617728,53.02869303764289],[-126.79746248212852,53.02887343050675],[-126.79746212381598,53.02905328650895],[-126.7974617653321,53.02923313352897],[-126.79745767188918,53.029413014736996],[-126.79744610796291,53.0295929374493],[-126.79742239128235,53.02977183068056],[-126.79738090366102,53.029949714459946],[-126.79732725842955,53.030127124561034],[-126.79726801445345,53.030304016650426],[-126.7973198536216,53.0304784728288],[-126.79730913101795,53.03065390750873],[-126.79712688679977,53.03079632857985],[-126.79692015192444,53.030927709215135],[-126.79677357948934,53.031079973765046],[-126.79678814879428,53.031259163957145],[-126.79682791796391,53.031437063410024],[-126.796873275503,53.03161492509446],[-126.79693262736902,53.03179157168119],[-126.79687709375203,53.03196731776417],[-126.79682812054418,53.032144695846924],[-126.79681513759817,53.03234872413653],[-126.79663382125341,53.03249169377337],[-126.79655301136341,53.03266480438908],[-126.7964909305665,53.03284059437686],[-126.79648495435102,53.03301992309121],[-126.79652938575074,53.03319779099605],[-126.7965691660764,53.033376246057955],[-126.79659959323975,53.03355477319336],[-126.79663750644241,53.033733240803315],[-126.79661748360299,53.033910987913096],[-126.79651889258942,53.03408197727099],[-126.79638082082805,53.034240342142944],[-126.79620140926367,53.03438498334783],[-126.79601347894624,53.034524078965745],[-126.79582179081244,53.034662079055295],[-126.79562913906871,53.03479896475976],[-126.79532128760513,53.035018426775515],[-126.79505427324126,53.035224166214455],[-126.79487106500255,53.03536603393977],[-126.79469255941565,53.03551010182945],[-126.79452630147817,53.03566025447972],[-126.79440701551894,53.03582410204901],[-126.79435146162882,53.036000402352784],[-126.79429219689447,53.03617728337772],[-126.79421792146853,53.0363514684798],[-126.79413428964844,53.03652404013175],[-126.79402348139166,53.03669230339023],[-126.79390142318263,53.03685841006789],[-126.79385048021608,53.037031317340634],[-126.79386222989673,53.03721052616816],[-126.79389549949897,53.03739126655643],[-126.79391849289387,53.03757152025553],[-126.79389566243955,53.03774928530357],[-126.79381952508923,53.03792403828285],[-126.79374058227741,53.03809825426709],[-126.79370561657169,53.038276100831766],[-126.79369308249252,53.03845547285402],[-126.79369270796523,53.03863531887471],[-126.79369607994421,53.03881570443739],[-126.79369664705831,53.03899555305226],[-126.79370187651938,53.03917536132973],[-126.79370897419287,53.039355165988916],[-126.79371233574192,53.03953498679054],[-126.79370821486525,53.03971430210131],[-126.79369942697714,53.039894213534026],[-126.79368878575902,53.04007412844548],[-126.79367532453004,53.040253506508755],[-126.79365905364313,53.0404329034445],[-126.79363998800709,53.04061231915084],[-126.7936125130074,53.040791235587896],[-126.79357475574217,53.04097021216881],[-126.7935360462598,53.04114863932788],[-126.7935057503177,53.04132700988953],[-126.79349415601351,53.04150637524209],[-126.79350871505572,53.041685564748896],[-126.79353449344146,53.041865243562384],[-126.79355092089591,53.04204442046703],[-126.7935617544959,53.04222419075177],[-126.79356885208566,53.04240399510031],[-126.79357221328263,53.04258381558677],[-126.79356810207332,53.042763695258365],[-126.79355931735051,53.04294304157697],[-126.79354773321865,53.04312296248676],[-126.79353706521582,53.0433023214265],[-126.7935282908052,53.043482232370366],[-126.79352043238784,53.04366157238156],[-126.79351351091744,53.04384146186463],[-126.79350753113167,53.04402135396174],[-126.7935193275742,53.04420223811762],[-126.79352268887133,53.044382067380745],[-126.79346896739919,53.04455723342759],[-126.79338717405413,53.044729226483774],[-126.7932885299616,53.04490021216568],[-126.79318144354528,53.04506901338491],[-126.79307152988117,53.045236148182425],[-126.79295784311132,53.045402196622895],[-126.79284042330377,53.045567705251734],[-126.7927201717636,53.04573211221519],[-126.79259709884288,53.04589597322487],[-126.79247216124848,53.046059290813275],[-126.79234628106799,53.046222614574525],[-126.79222324726724,53.046388724915914],[-126.7920917705683,53.04655264171057],[-126.7919414007547,53.046705488628035],[-126.7917391356439,53.046830660888354],[-126.79147077346363,53.04691930704193],[-126.79119936437534,53.04699451752432],[-126.79092125577357,53.04706081688824],[-126.79065463340064,53.04714271727988],[-126.79039388048875,53.04723803322624],[-126.79017832715408,53.04735320682236],[-126.79014996445645,53.04753604498117],[-126.79016736318898,53.04771745626713],[-126.78993347865365,53.04790166984632],[-126.78992935151088,53.04808154883534],[-126.78992148737913,53.04826144384696],[-126.78989959235481,53.048440876936205],[-126.78987023845501,53.04862035990917],[-126.78985487962278,53.04879919342801],[-126.78987688899741,53.048977767935725],[-126.78993250966792,53.049155005941934],[-126.79001142662452,53.04932928217459],[-126.79006606934966,53.04950372079979],[-126.79002735819044,53.04968326632418],[-126.78998489336256,53.04986115164145],[-126.78992640325204,53.0500318651251],[-126.7897291762895,53.050178299065344],[-126.78962120405637,53.05035158443866],[-126.78960203353188,53.050526516857865],[-126.7896212891453,53.05070735073063],[-126.789672232268,53.05088461997565],[-126.78975302433007,53.05105831892636],[-126.7898625945739,53.05122230516939],[-126.79005401616907,53.05136613861556],[-126.79025089848835,53.05150208245711],[-126.79045422068361,53.05163294490641],[-126.79066598094111,53.051764871031516],[-126.79086084203215,53.05189242782634],[-126.7909834777522,53.05205520492958],[-126.7910940702514,53.05222310950304],[-126.79120279046091,53.052391582297325],[-126.79133790588233,53.052571639235104],[-126.79144067755699,53.0527216672564],[-126.7915475258768,53.05288903171233],[-126.79165158555568,53.0530575352983],[-126.79175470428052,53.05322604509193],[-126.79185876560808,53.05339454846252],[-126.79196376954955,53.05356304540741],[-126.79207340698802,53.05372982587359],[-126.79219794221972,53.05389370940341],[-126.7923224680391,53.05405703706915],[-126.79242467537796,53.054226108117355],[-126.79248869415467,53.05440216759422],[-126.79248343060598,53.05457028356489],[-126.79238311087092,53.05475303974473],[-126.79232753874832,53.054929337056926],[-126.79230472358354,53.05510877611924],[-126.79230808059833,53.05528860428004],[-126.79235064909562,53.055466483995886],[-126.79239321794975,53.05564436367808],[-126.79243579753657,53.055822799043256],[-126.7924811627303,53.056000659894124],[-126.79253305545197,53.05617735636039],[-126.79259335507338,53.056353440568785],[-126.7926685379013,53.05652661899223],[-126.79276145060199,53.05669799302761],[-126.79286090184718,53.0568687672857],[-126.79295566408675,53.05703901715315],[-126.79303644541602,53.05721159294342],[-126.79304258487683,53.05738971691265],[-126.79304129703736,53.057571252356034],[-126.79308481277761,53.05774912524657],[-126.79321118025814,53.057910198268914],[-126.79335345756338,53.058072840571576],[-126.79350941393406,53.058216897452745],[-126.79369996288585,53.05836128635058],[-126.79388490221646,53.058506277403374],[-126.79403359621237,53.05866158775846],[-126.79413861142085,53.058829526540826],[-126.7941839869648,53.05900738642859],[-126.79419390061524,53.05918716112293],[-126.79419464986502,53.05942695052775],[-126.79416901896394,53.059605852674],[-126.79416864626687,53.05978569649059],[-126.79418135608769,53.05996546126438],[-126.79416884296441,53.06014538669587],[-126.79413951560655,53.06032655468679],[-126.79416710344837,53.0605022929957],[-126.79424232540052,53.06067602561666],[-126.79433991859901,53.060847375586036],[-126.79445520162702,53.061014680099866],[-126.79458904930262,53.06117513636995],[-126.79475731350469,53.06132639658125],[-126.7949376462192,53.06147364895532],[-126.79510028054206,53.0616243907829],[-126.79521545311924,53.06178552784208],[-126.7952719812723,53.061958829823325],[-126.79529033483921,53.06214023259763],[-126.79529095706268,53.0623234400496],[-126.7952924791134,53.06250439139223],[-126.79528182856468,53.0626837483768],[-126.79526182838177,53.062863733054165],[-126.79524649753006,53.06304312151573],[-126.79527601318337,53.06322164319986],[-126.79542381232557,53.063377522302275],[-126.79549718167362,53.063552395879945],[-126.79550802900943,53.0637321637481],[-126.79541588813042,53.0639025494966],[-126.79530407598051,53.06407026181834],[-126.79523710628528,53.06423767205395],[-126.79518361266172,53.064425161061706],[-126.79511668391974,53.06459481197505],[-126.79508344513847,53.06476591233044],[-126.79519316594407,53.064934938564356],[-126.79529731163792,53.0651056785453],[-126.7952641422258,53.06528126056078],[-126.79520486156608,53.06545926839591],[-126.79521389157118,53.06564185413489],[-126.7952825669505,53.06581507396698],[-126.79542761633965,53.06597376825451],[-126.7956255213515,53.066110260418526],[-126.79590850033804,53.06619687559241],[-126.79617082039631,53.0662791472435],[-126.79619991128534,53.06643470487538],[-126.79610911922752,53.066626927646496],[-126.79614403857094,53.066794216022075],[-126.79633541494263,53.06693075098417],[-126.79656774710877,53.06705804516237],[-126.79678599088676,53.06718207234253],[-126.79703639713233,53.06727618353836],[-126.79731524828892,53.06734153313992],[-126.7975620447082,53.06744239974196],[-126.79781711983439,53.06753647776104],[-126.79807768188124,53.06762323919064],[-126.79829589082024,53.067745022765095],[-126.79850860317174,53.0678718899666],[-126.79875081971748,53.06797782296136],[-126.79899206812115,53.06808152095085],[-126.79915197731651,53.06823395164232],[-126.79925889511505,53.06840130762148],[-126.79934534220713,53.068574404690196],[-126.79942246896508,53.06874812055247],[-126.7994370941409,53.06892899156672],[-126.79945256200567,53.06910536577539],[-126.79960032316878,53.06925732225215],[-126.79977042829594,53.06940520090363],[-126.79995729949681,53.06954903941497],[-126.8000008962085,53.069580683688685],[-126.80015063328788,53.06968891647577],[-126.80035038740877,53.06982259128341],[-126.8005760219535,53.06993983817753],[-126.80080720854643,53.07005480593948],[-126.80102176686725,53.07017940603754],[-126.80123262575275,53.07030683664613],[-126.80144256936578,53.0704348378347],[-126.80164974933471,53.07056453371793],[-126.8018550567403,53.07069479773172],[-126.80205668412506,53.07082733639888],[-126.80225182581682,53.070963271394945],[-126.80244602675317,53.07109922142201],[-126.8026393334205,53.07123685351545],[-126.80283263065644,53.07137392060795],[-126.80303240542763,53.07150702597505],[-126.80324236040939,53.07163502387642],[-126.80345415417064,53.07176132362118],[-126.8036696561322,53.07188591248001],[-126.80389529586724,53.07200315299611],[-126.8041310988311,53.07211360072157],[-126.80438451098772,53.072215528578475],[-126.80461103290708,53.07232940013819],[-126.80474392747077,53.07248536873753],[-126.80483141123706,53.072661816115186],[-126.80490859985886,53.0728372130433],[-126.80499225032553,53.07300863953986],[-126.80516700668677,53.07315311704905],[-126.8053501482036,53.07329641659753],[-126.80547391814868,53.07346309603545],[-126.80557727957247,53.07363886977812],[-126.80570561132313,53.073799915204646],[-126.80590153979055,53.07392631874427],[-126.80613169678504,53.074033995182276],[-126.8063794164925,53.074131475497076],[-126.80663826280087,53.074223267712114],[-126.80690359293635,53.07431221823499],[-126.80716985147617,53.074401161820916],[-126.80742963918135,53.07449351062354],[-126.80768112918659,53.07459151823133],[-126.80792893030606,53.0746929121191],[-126.8081712136861,53.07479826956795],[-126.80840333613429,53.07491041025989],[-126.80860959562148,53.07503897966946],[-126.8087964640992,53.07518057203384],[-126.80900276882396,53.07531138149872],[-126.80919515649838,53.075447323828705],[-126.80932725724007,53.07560889524791],[-126.80945841670993,53.07577047296143],[-126.80964156698872,53.07591208944996],[-126.80987094108366,53.076027051891195],[-126.81013251786963,53.07611433565362],[-126.81038491903915,53.07621065496584],[-126.8106198455711,53.07632165154136],[-126.81083907754694,53.0764434048665],[-126.81107765597542,53.07655045810566],[-126.81133923864294,53.07663774813291],[-126.81159070752106,53.07673350653802],[-126.8118164163714,53.07685185197599],[-126.81204030387215,53.0769718858114],[-126.81222530120503,53.0771123650681],[-126.8123555811058,53.07727562188884],[-126.81241502922188,53.07745057993317],[-126.81243906102453,53.07763137517796],[-126.81243034886246,53.07781071928802],[-126.8123860653406,53.0779886316972],[-126.81233805682514,53.07816656071977],[-126.8123125017608,53.07834602058029],[-126.81229819057054,53.07852596784725],[-126.81228199440163,53.07870591908991],[-126.81225362019649,53.07888427773701],[-126.81220371908714,53.0790611080547],[-126.81213975468526,53.07923634974103],[-126.8120682892695,53.07941052240841],[-126.81199121396686,53.07958473356965],[-126.8119131848564,53.07975838646956],[-126.81183705065483,53.07993259101909],[-126.81176652104547,53.08010732173167],[-126.8117016258402,53.08028256944855],[-126.81163766815563,53.08045836644779],[-126.81157559055816,53.080634715219745],[-126.81151725208628,53.08081103825354],[-126.81146359102455,53.08098789385458],[-126.81141556461421,53.081165266490494],[-126.8113768826955,53.08134313069028],[-126.81134757547362,53.08152149522061],[-126.81132762377787,53.08170091600018],[-126.81131517714559,53.08188084996232],[-126.81130552757077,53.08206075573214],[-126.81129867543194,53.08224065123643],[-126.81128996813078,53.0824205504965],[-126.8112803076969,53.082599900502515],[-126.81127345536403,53.082779795949946],[-126.81126661776086,53.08295968231287],[-126.81126350515898,53.08313955204292],[-126.81126132417543,53.08331885061402],[-126.8112628936816,53.08349867919317],[-126.81127008384404,53.08367903390289],[-126.81129221227904,53.083858165497006],[-126.81133956082031,53.08403544758458],[-126.81141210384375,53.08421030660676],[-126.81150419981529,53.08438111393184],[-126.81160562934339,53.084550180759436],[-126.81171077389932,53.08471865722389],[-126.81181778280553,53.08488600025316],[-126.81192759008776,53.08505332394529],[-126.81204018496744,53.08522006362425],[-126.81215371258217,53.085386240996236],[-126.81227654831895,53.08555011321689],[-126.81241334273066,53.08570997198258],[-126.81255756028476,53.085867529527256],[-126.81271107988532,53.0860216703085],[-126.81287480318969,53.08617181438159],[-126.81305247038634,53.086317935968744],[-126.81325418554871,53.0864493339636],[-126.8134983827669,53.086553537674625],[-126.81376459646155,53.08663462306181],[-126.81404448521296,53.08669768530726],[-126.8143262018536,53.08675849325403],[-126.8146088146699,53.086817618055086],[-126.81489141085719,53.08687505703508],[-126.81517310835511,53.086934742584305],[-126.81545206933994,53.08699836369193],[-126.81572648201455,53.0870681828911],[-126.81599911172262,53.08714249585292],[-126.81626898784226,53.08721906825335],[-126.81653704458452,53.08729901417603],[-126.81680327964342,53.08738065735014],[-126.8170667569556,53.0874651158173],[-126.81732931437108,53.0875507005841],[-126.81758825556399,53.087641912396485],[-126.81783981044333,53.08773877737257],[-126.81808033356084,53.08784468236021],[-126.8183088890976,53.08796075442729],[-126.81852175846494,53.088088139921766],[-126.81871333531497,53.08822631302879],[-126.81888171724236,53.08837361969822],[-126.81903711319153,53.0885271745163],[-126.819186958015,53.08868300864964],[-126.81933959080796,53.08883825851291],[-126.8195024167941,53.08898896436378],[-126.81967731008913,53.089134539454896],[-126.8198587034996,53.08927726340166],[-126.82004287445525,53.089418856235284],[-126.82022981187403,53.089558744313884],[-126.82041770386274,53.089699181244654],[-126.82060281017925,53.089840201961216],[-126.82078604347195,53.08998180013702],[-126.82096466403546,53.090126226890256],[-126.82113680162325,53.09027349523733],[-126.82129407217884,53.09042647822241],[-126.82143091613759,53.09058631714063],[-126.82155752159095,53.090749032856486],[-126.82167947752745,53.0909134660198],[-126.82179866896684,53.09107959457074],[-126.82191414249995,53.091246869370984],[-126.82202868928262,53.09141415049558],[-126.82214230511549,53.09158199375378],[-126.82225683874101,53.09174927472941],[-126.8223732585398,53.09191654245847],[-126.82249150209931,53.09208212107359],[-126.8226144079595,53.09224653762361],[-126.82274195477443,53.092408689653055],[-126.8228750549529,53.09256855286602],[-126.82301466649962,53.092726138501014],[-126.82316263771688,53.09288029521467],[-126.82331988174184,53.09303103454326],[-126.82348549651633,53.093178909549984],[-126.82365576311906,53.09332506663894],[-126.8238325371639,53.093469501818916],[-126.824013031404,53.093612790273106],[-126.82419909447307,53.09375379857411],[-126.82438887778513,53.093893660109615],[-126.82458238136154,53.09403237486218],[-126.82477958343048,53.09416882244789],[-126.82497956310657,53.094304129795155],[-126.82518233536356,53.09443829678565],[-126.82538788939439,53.09457076770394],[-126.82559526736627,53.0947015402632],[-126.82580452101818,53.09483173461026],[-126.82601558795517,53.09495968384115],[-126.82622666012642,53.09508706791732],[-126.8264386284669,53.0952127600908],[-126.8266514931339,53.09533676932008],[-126.82687357337991,53.095452870065955],[-126.82712697885151,53.095545220295364],[-126.82739975964608,53.095623432352106],[-126.82767899708,53.0956965517538],[-126.82795085884882,53.095775880535484],[-126.8282033846071,53.095870475667965],[-126.82844032632495,53.095980866750196],[-126.82866437984961,53.096102552901726],[-126.82887271814774,53.09623331298631],[-126.82906062469861,53.09637150387719],[-126.82920865252848,53.096526773065015],[-126.82932608447194,53.09669626770794],[-126.82944905230097,53.09686180604511],[-126.82961556543003,53.097006304538716],[-126.82983952201923,53.09712182180823],[-126.83009218073498,53.09722257931089],[-126.83033931661095,53.097327848181365],[-126.83054943797124,53.0974535549268],[-126.83072999382088,53.097597953160914],[-126.83088735900134,53.09775259880397],[-126.8310242518757,53.097911870247664],[-126.83113697795791,53.09807971086734],[-126.83122360869005,53.09825166118937],[-126.83124394754246,53.09843024501256],[-126.83126430835677,53.09860994021312],[-126.83135559882798,53.09878130184913],[-126.83146371449648,53.09895198030169],[-126.83160521655354,53.09910785703379],[-126.83185872012233,53.09920355801073],[-126.83207345121555,53.09932473853828],[-126.83224657075165,53.099470872002],[-126.83241230780511,53.09962209504132],[-126.83258822804035,53.09976819930808],[-126.8327826731336,53.0999040971098],[-126.83292393339497,53.10000002186413],[-126.83298081272602,53.10003828329732],[-126.83318082810906,53.1001718911888],[-126.83338453818844,53.10030379639833],[-126.83359011315164,53.100434567587996],[-126.83379845496479,53.10056364261],[-126.83400864652108,53.10069157473272],[-126.83422159399274,53.100817254963594],[-126.83444290203633,53.10093950527745],[-126.83468177015176,53.10105043498445],[-126.83493798438465,53.10113994292437],[-126.83521984901633,53.10120182091696],[-126.83551707814833,53.10123669726316],[-126.83581160172572,53.101228456630736],[-126.8361070859752,53.101174823103776],[-126.83639101459234,53.10119858618379],[-126.83667108831798,53.101264390726996],[-126.83694217435442,53.101348751241375],[-126.83730536854752,53.101549557061446],[-126.83749768714881,53.10171906870053],[-126.83760460441911,53.101875183270195],[-126.83765587985815,53.102055222888104],[-126.83772572666793,53.102228972497805],[-126.83790248603391,53.102368339807654],[-126.83808490334509,53.102509916728636],[-126.83821905811126,53.10267087541483],[-126.83834579740497,53.10283525704428],[-126.83846228896273,53.103001387511135],[-126.83856571520045,53.10316985157262],[-126.8386355492079,53.10334191541155],[-126.83863540908287,53.103523995557644],[-126.83865019138405,53.10370373774887],[-126.83866964322526,53.103883437826724],[-126.83864887987389,53.104063432172275],[-126.83860662009329,53.10424413477535],[-126.8386381403818,53.10441871135451],[-126.83875191233042,53.104589342776755],[-126.83892127913228,53.10473268720564],[-126.83917753574856,53.10482275042934],[-126.83931722588802,53.10497918638896],[-126.83943376772962,53.105148121175596],[-126.83953724022084,53.10531770443259],[-126.83963696777832,53.105487869963405],[-126.83972832909845,53.10566034482123],[-126.839802874938,53.105834050608266],[-126.83984289456521,53.106011927911524],[-126.83982601019518,53.10619861779619],[-126.8398628722191,53.10635914505766],[-126.8401754078391,53.106361406244986],[-126.84047484691936,53.1063637597211],[-126.84077172777772,53.10637902101781],[-126.8410702500553,53.10638193528206],[-126.84136951143104,53.106375323651086],[-126.84166785200556,53.106369838331325],[-126.84196637445807,53.106372759295475],[-126.84226419869177,53.1063880011652],[-126.84256168928408,53.10638644592507],[-126.84285518542106,53.10641964537358],[-126.84314693764347,53.10645846806652],[-126.84343947340025,53.106489996631325],[-126.84373862366888,53.106477777230644],[-126.84403628205725,53.10648461645752],[-126.8443235739394,53.10653466427619],[-126.84460543242027,53.10659372329492],[-126.84488093667079,53.106662902719506],[-126.84515097813055,53.106738852608046],[-126.84543012566584,53.10680296688321],[-126.84568365437063,53.10689527662288],[-126.84594267031349,53.106981943986646],[-126.8461436873104,53.107115522776034],[-126.84641637629404,53.10718360724519],[-126.84666526925145,53.107278189110666],[-126.84688560698237,53.10739482056014],[-126.84708940569699,53.10752726626828],[-126.8473548311856,53.1072317894244],[-126.84747823832522,53.10703985267551],[-126.84767626981252,53.10693030770135],[-126.84789954347306,53.10691301927671],[-126.84827300809773,53.106967486227866],[-126.84859022127019,53.107016188500204],[-126.84886307939064,53.10699910705094],[-126.84916019230708,53.10697848023855],[-126.84945826669876,53.106959531022156],[-126.8497559182518,53.10696580015073],[-126.85005043440005,53.10700233600599],[-126.85031163802324,53.10710354481928],[-126.85052991927748,53.10721122919345],[-126.85078899566646,53.10729956186356],[-126.85107700428385,53.10733839200459],[-126.85135884367352,53.107395749884596],[-126.85164792015446,53.10744072929899],[-126.85194396328714,53.107459885967266],[-126.85227560849378,53.10743452041688],[-126.85253208305467,53.10748702054261],[-126.85283145178413,53.107485417004646],[-126.85313077557369,53.10748158096713],[-126.85342771752482,53.10749848641005],[-126.85372461080793,53.107513706205715],[-126.85401643685168,53.10755529844801],[-126.8542654280638,53.10765379000532],[-126.85451074601686,53.10775566017333],[-126.85475607653534,53.10785809448363],[-126.85499953723459,53.1079605418108],[-126.85518112653249,53.10810377476401],[-126.8553987685928,53.108224901015916],[-126.85564516004602,53.10833292838674],[-126.85570090171531,53.108359973056416],[-126.85573816315255,53.108397800844536],[-126.85580336197238,53.108429823807796],[-126.85594889426473,53.10845454203075],[-126.85613876926732,53.108544493552046],[-126.8564250933901,53.1085452164655],[-126.8567231225848,53.10852288778778],[-126.85702161219332,53.10852408583238],[-126.8573201282076,53.108525847671466],[-126.85761422967083,53.10849513688133],[-126.85790235854324,53.10844598468061],[-126.85819655192803,53.10846570391523],[-126.85847023092767,53.108535429835676],[-126.85875749709028,53.10858264612419],[-126.85904482056637,53.10863265810777],[-126.85932474016583,53.10868664950021],[-126.85958571511857,53.10877495818102],[-126.85986179189896,53.10882392944984],[-126.86015672762244,53.108880050694964],[-126.86045116377937,53.108911523506634],[-126.86074468011698,53.108944122800075],[-126.86103993508202,53.10896942983635],[-126.86133523225632,53.10899753263654],[-126.86163223364566,53.10901665815657],[-126.86192394891496,53.10905262920575],[-126.86221995088009,53.109068954769036],[-126.8625192622015,53.10906397461517],[-126.86281774794567,53.10906403756703],[-126.86311597908862,53.10905233172647],[-126.86340748648898,53.10903171907567],[-126.863701560848,53.10904525820313],[-126.86398147298178,53.10905217700611],[-126.86430451862252,53.10906438238835],[-126.86459091495192,53.10906844657204],[-126.86489128540256,53.10902366986057],[-126.86517154801429,53.10895607343629],[-126.86540702062969,53.10884902141099],[-126.86552902875268,53.1086839680736],[-126.86569198788915,53.108554480215446],[-126.86591791874663,53.10843853286066],[-126.86617256601349,53.108354304906776],[-126.86640411907165,53.10823888013949],[-126.86662341363102,53.108118497957435],[-126.8667803303199,53.107968318763405],[-126.86704235400553,53.10787899695005],[-126.86730271190532,53.10779977142086],[-126.86760560929493,53.10774152294571],[-126.86800725404673,53.10761699391248],[-126.86806600121969,53.10742495401868],[-126.86803867428266,53.10732375230077],[-126.86807078122428,53.10715543885834],[-126.8681204709676,53.106978032125475],[-126.86813272176397,53.10679921503873],[-126.8681655723564,53.10662193190776],[-126.86815627687673,53.1064421614616],[-126.86812641267342,53.106263097827906],[-126.86806481194697,53.106087628780585],[-126.86803963313872,53.10590853068747],[-126.86804436244886,53.10572864821451],[-126.86805474249446,53.105549853711004],[-126.8680678981726,53.105369909322114],[-126.86807263886571,53.10519059145004],[-126.86805120229826,53.10501146579108],[-126.86809246683224,53.104833564929166],[-126.86811126919869,53.104655264253125],[-126.86807767612981,53.10447678359959],[-126.86798529362903,53.104306022481595],[-126.86785196358491,53.10414509081728],[-126.86770468742492,53.10398873448446],[-126.86752492929651,53.10384550681672],[-126.86740569482859,53.103687832740555],[-126.86728956135829,53.10354413780295],[-126.8669961344425,53.10342358893404],[-126.86674990655115,53.10332287158264],[-126.86697859379066,53.1032063366792],[-126.86715625660608,53.10306441264526],[-126.86735555068347,53.10292848797988],[-126.86754544376451,53.10279039091625],[-126.86775895340978,53.10266388113937],[-126.86797058323062,53.10253627320554],[-126.8681548257795,53.10239653133374],[-126.86831825958582,53.10224574577306],[-126.86846659997249,53.102088903514364],[-126.86862420111278,53.101927510907664],[-126.86870308120022,53.101759408777724],[-126.86880062211996,53.10158893733438],[-126.86894050977257,53.10143103600107],[-126.86913219278489,53.10128956146005],[-126.86931708184709,53.10113581081366],[-126.86942702342763,53.10097756433879],[-126.86956691029766,53.10081910640439],[-126.86970206579429,53.10065843308762],[-126.86983439537639,53.10049722461166],[-126.869962031786,53.10033492998624],[-126.87009061002927,53.10017262826766],[-126.87022765531025,53.10001306983674],[-126.87023954249113,53.10000009181978],[-126.87036471096779,53.09985406692793],[-126.87045566293287,53.099682512886496],[-126.87052411277418,53.099507771883346],[-126.87056160874293,53.09932933250313],[-126.87059442038586,53.0991509275951],[-126.87062536451892,53.09897197167051],[-126.8706562936101,53.09879302479269],[-126.87069004721565,53.09861461285898],[-126.8707247317127,53.09843562929342],[-126.87075848474574,53.09825721730413],[-126.87078848495409,53.098078277154805],[-126.87080912053263,53.097898841232244],[-126.87083163789801,53.0977199472014],[-126.87086913099152,53.097541507542985],[-126.87092255042285,53.0973646357613],[-126.87099380431839,53.09719042933214],[-126.87107912842048,53.097017795441715],[-126.87114935787793,53.09683967907046],[-126.87122818404946,53.09666989871974],[-126.87141764504369,53.096512748902065],[-126.87160644163694,53.09636848521699],[-126.87174832191695,53.09621785309298],[-126.87192211780602,53.09607202320255],[-126.87215147560292,53.095944831960054],[-126.87233629239839,53.0957899558806],[-126.87248225821281,53.0956555357823],[-126.87266536349982,53.095508515463365],[-126.87289592387377,53.09539419538725],[-126.8731226812055,53.09527767085293],[-126.87334468782764,53.09515725464902],[-126.87356384886344,53.09503461799109],[-126.87379815321002,53.094921388939284],[-126.87397602396193,53.0947923336052],[-126.87414473018471,53.09462748890863],[-126.87431178424957,53.0944733056596],[-126.87438594445106,53.0943052336777],[-126.87454141577635,53.09413376310135],[-126.87467111650508,53.09398265253044],[-126.87478460201133,53.0938159744411],[-126.87487835947654,53.093645524906265],[-126.87496177530917,53.09347290182351],[-126.87503958290316,53.09329976440476],[-126.87511359962078,53.09312497867531],[-126.87520111596972,53.092969132917254],[-126.87525042403301,53.09277548106689],[-126.87531226605172,53.09259965582599],[-126.87537784836826,53.09242381178903],[-126.8754528277419,53.09225013017216],[-126.87553813540987,53.09207805723948],[-126.87563093171771,53.09190704926319],[-126.8757340329726,53.091736529571925],[-126.8758221710146,53.09156611170447],[-126.87588496317697,53.091390843717285],[-126.87593273149844,53.091213445981495],[-126.8759730102331,53.091034983195456],[-126.87599924284217,53.09085606871885],[-126.87603296765204,53.090677654456634],[-126.87607511220226,53.09049973352524],[-126.87613411500556,53.09032225231337],[-126.87616223985411,53.09014444422028],[-126.87613889155723,53.089965332480354],[-126.87609218496566,53.089786949685426],[-126.87600727476746,53.0896150174829],[-126.87592048011516,53.08944309917654],[-126.87581600807484,53.08927523815841],[-126.87579172245508,53.08909556847559],[-126.87577773057563,53.088915831442456],[-126.87576280773501,53.088736657073426],[-126.87572078361379,53.088558804072036],[-126.87561896511082,53.08838307046798],[-126.8756180847302,53.088204912503265],[-126.87563586276607,53.088023819405926],[-126.87570424582569,53.087848509696656],[-126.8758271539265,53.08768624216747],[-126.87598386985687,53.087531567579305],[-126.8761960953238,53.08739272438068],[-126.8763530438166,53.08724869707237],[-126.87656266247483,53.087119957298505],[-126.8767590655243,53.08698460096749],[-126.87694127198823,53.086841496963466],[-126.87713766907268,53.086706695791634],[-126.87734921422548,53.086580190273615],[-126.87754851408677,53.086449848957834],[-126.87780157675057,53.08634207433031],[-126.87798957278781,53.086207898828285],[-126.87810678770713,53.08604230938132],[-126.87821831858865,53.085873956228376],[-126.87836941250457,53.08571876420498],[-126.87851379016298,53.085555769204376],[-126.87866298614347,53.08544484747597],[-126.8790073231159,53.08536441363937],[-126.87933758133575,53.08532665489442],[-126.87961112208258,53.08530501392052],[-126.87987661624136,53.085390994542855],[-126.88015412295024,53.08546960609931],[-126.88045734521761,53.08557100081379],[-126.88072694909799,53.08553985758177],[-126.88099741352566,53.085459403808564],[-126.8812071256362,53.08533625746858],[-126.88146646818323,53.08517072492367],[-126.88169166567683,53.08511750004938],[-126.88196977695034,53.085045951211285],[-126.88213511039406,53.084992051796725],[-126.88219282224317,53.08493391783956],[-126.88240461811557,53.08477601715014],[-126.8826303085899,53.084702061352665],[-126.88290081071062,53.08462384390612],[-126.8831617486624,53.084536168289006],[-126.88342461731371,53.08445072768207],[-126.88369513632952,53.08437418457766],[-126.88395558411595,53.08426242380452],[-126.8840574856506,53.08421628415762],[-126.88413835026142,53.0841478821676],[-126.88439634530852,53.084053511531046],[-126.88464028364845,53.083958116067855],[-126.88482248567274,53.08381668468809],[-126.88498289771161,53.083661414006016],[-126.88524506027609,53.08358773567614],[-126.88553866447893,53.08354239029291],[-126.88582757753171,53.08349596777482],[-126.8862844511864,53.08334294529921],[-126.88653127322583,53.08329571624215],[-126.8868438671656,53.08312977186016],[-126.88706551817074,53.08308664800377],[-126.88732783916817,53.082976541848275],[-126.88758673293526,53.08297011501088],[-126.88789258185997,53.082973984322116],[-126.88818054438529,53.08301607660879],[-126.88847921104147,53.082989179140235],[-126.88873737719217,53.082903761849614],[-126.88896964552056,53.08278771958652],[-126.8892768138236,53.0827204167584],[-126.88953215394915,53.082722976692885],[-126.8898541964592,53.08274072122935],[-126.89015019012446,53.08276481963001],[-126.89044014971002,53.08281362356515],[-126.89071862253296,53.08275997969753],[-126.89104555532772,53.082699246465616],[-126.89128759246456,53.082602730834545],[-126.89154431404596,53.08244896539714],[-126.89174048525388,53.08243964111409],[-126.89203804143618,53.082449155989444],[-126.89233411690023,53.082477174665804],[-126.89262930938249,53.08250800510214],[-126.89292363371,53.082541638229216],[-126.89321346816506,53.08258370412756],[-126.89349517639562,53.08263984198857],[-126.89376513693773,53.08271568195971],[-126.89425189764414,53.08287279142712],[-126.89437655165978,53.082709369749594],[-126.89446048085622,53.082653827967285],[-126.89462828530827,53.08262959085976],[-126.89492719644157,53.08265925791108],[-126.89521249358616,53.08270808549039],[-126.89550821434764,53.08267446928737],[-126.89561139355605,53.082645673697584],[-126.89573403220561,53.08256350039824],[-126.89591236878147,53.08241816338224],[-126.89610207704848,53.082280018847015],[-126.89632293695735,53.08215620466403],[-126.89656760243798,53.082052379107026],[-126.89684119089986,53.08198979343885],[-126.8971369171167,53.08195672884393],[-126.89743653372686,53.081931486695325],[-126.89773250815749,53.08191018886689],[-126.8980294689399,53.08189167966471],[-126.89832134418347,53.08185416816754],[-126.8986092566407,53.081805471721175],[-126.89890707270322,53.08178360114203],[-126.89918824209884,53.08172599025763],[-126.89945466993672,53.08163431893136],[-126.89971829263632,53.081587489971746],[-126.90001864505686,53.08159640763782],[-126.90031064430475,53.08165301565244],[-126.90058247156355,53.08172769640396],[-126.9008606345566,53.081792808110734],[-126.90114690774895,53.0818438550305],[-126.90143410002808,53.08189376474287],[-126.90171862679709,53.08194986156083],[-126.9019951005638,53.082067648914304],[-126.90223963448493,53.0821341346807],[-126.90239347817845,53.082288714844715],[-126.90245312219078,53.08232356077212],[-126.9026331435519,53.08238997374538],[-126.9029194824388,53.08244381276731],[-126.90324377125634,53.082522577613126],[-126.90361395746989,53.08256176265835],[-126.90371756767887,53.08264052854573],[-126.90382869002407,53.082677221084055],[-126.90408466452605,53.08275370039987],[-126.90425827476808,53.08291428537923],[-126.90443808917945,53.08305914400256],[-126.9046215876921,53.083200603555866],[-126.90480416908997,53.08334319935026],[-126.90495804731788,53.083499452237234],[-126.90518568639028,53.08360584501823],[-126.90544122878114,53.08370585607212],[-126.90567752845583,53.08382394272927],[-126.90586530701816,53.08394688310647],[-126.9061534168182,53.084038799143464],[-126.9063702250509,53.08416319240032],[-126.90660714601424,53.08426670541909],[-126.90687188085838,53.08435824329125],[-126.9071191561575,53.084464472681475],[-126.90732559336408,53.08458502641033],[-126.90745116035835,53.08472861172741],[-126.90766670558084,53.08488103477621],[-126.90784744636979,53.08502419579313],[-126.9080365238558,53.085163930841816],[-126.90825238898874,53.085287772112096],[-126.90852146505951,53.08536357641802],[-126.90880242853862,53.085426406955044],[-126.90907518652342,53.08549938482052],[-126.90933060536389,53.085592665224404],[-126.90955201439148,53.08571309984971],[-126.90977629735285,53.085836317763956],[-126.90998905284421,53.08585876649322],[-126.91023781904481,53.08577225402364],[-126.91054175663471,53.08568530689197],[-126.91080579347984,53.085613242539615],[-126.911081446437,53.08555957244698],[-126.91123910401276,53.08558524960484],[-126.91133092657272,53.08559350572246],[-126.91141466376361,53.085617511701784],[-126.91154329604917,53.08564117126846],[-126.91179152114793,53.08570368255358],[-126.91189853007003,53.08576617172255],[-126.91208126069279,53.08578324571536],[-126.9121997095294,53.0857688848123],[-126.91250088922013,53.08577160609738],[-126.91279508521129,53.08575364608776],[-126.91307131424017,53.08568371457475],[-126.91335240589403,53.085622153353796],[-126.91364518745851,53.085582356087514],[-126.91397097845442,53.08555518448806],[-126.91421066242104,53.085481615556475],[-126.9143927240577,53.08533789800448],[-126.9145824093455,53.08520084438515],[-126.91480613961588,53.08508145550801],[-126.91502034957247,53.08495429612998],[-126.91508720593438,53.08488934272864],[-126.91514022589227,53.08478920388105],[-126.91507655220242,53.08452524923385],[-126.9151391447696,53.084349404133775],[-126.91519143528203,53.08417250927361],[-126.91520710020605,53.08398806325544],[-126.9152435003776,53.083811856173384],[-126.91543988535531,53.08368202812679],[-126.91571701497102,53.08361097165179],[-126.91601277120064,53.08358010066849],[-126.91625456310193,53.083474580069435],[-126.91649100745524,53.083381982201175],[-126.91667725027821,53.08321581753596],[-126.91685643308395,53.08306987711242],[-126.91712054496513,53.08304541634799],[-126.91740855012424,53.08300227601632],[-126.91774695967493,53.082954270240975],[-126.91802594771677,53.08296946668802],[-126.91825080877146,53.08290329247623],[-126.91857097591176,53.082877272222454],[-126.91886600389897,53.08285592879248],[-126.91916270240246,53.08286818793436],[-126.91945975043461,53.082897251766546],[-126.919754871067,53.08292296822833],[-126.9200500134561,53.082950360119256],[-126.92034603796571,53.082974947526786],[-126.92064290796283,53.082995045431225],[-126.9209363154388,53.08302861610793],[-126.92122622984411,53.08307286294497],[-126.92150349091357,53.08313793334704],[-126.92177081680025,53.08321876823137],[-126.92203540713585,53.083302420741475],[-126.92229541393579,53.08339059958392],[-126.92255817025624,53.083476506336304],[-126.92283003626828,53.0835505801256],[-126.92310186388633,53.08362353304979],[-126.9233655659141,53.083709439594706],[-126.92363739813372,53.083781826505245],[-126.92402221712331,53.08389031610578],[-126.92431310464598,53.08393622414096],[-126.92460380951874,53.083973724330995],[-126.92490022431389,53.083972524822975],[-126.9251979808175,53.08394778263785],[-126.92549390645969,53.08392417458535],[-126.92579089385617,53.08390672494476],[-126.92609087391989,53.08389820648842],[-126.9263858342371,53.08391606390451],[-126.92667751743933,53.0839558013884],[-126.92696570882508,53.08400620624195],[-126.92724390274925,53.08407013539196],[-126.92751941979719,53.08414024341849],[-126.92781289245765,53.08417548188871],[-126.92810909747665,53.08416531163172],[-126.92840692963476,53.084143357643974],[-126.92870472218877,53.084120291633425],[-126.92899519917019,53.08414714215346],[-126.92928247671249,53.08419866911287],[-126.92956885202095,53.08425132302117],[-126.92986052813072,53.084290487982436],[-126.93014772159869,53.08433808712212],[-126.93042509331802,53.084406497477495],[-126.93069244420131,53.08448731211726],[-126.93093051632499,53.084597491021874],[-126.93114480923035,53.08473195305354],[-126.93138520148793,53.0848202576551],[-126.93168428419763,53.084812861627356],[-126.93198259118607,53.08477016931106],[-126.93226071632974,53.084702418734544],[-126.93254645342913,53.08464133964913],[-126.93283304229486,53.08461834271505],[-126.9331141082471,53.08468504129271],[-126.93341321416182,53.08467875227598],[-126.93371193777531,53.084655101550446],[-126.9338760371295,53.084633078989185],[-126.9339806727549,53.08458574476495],[-126.93422626835927,53.08440059833124],[-126.9343934703558,53.084434568828236],[-126.9346549213476,53.084543999619555],[-126.93493170499272,53.084628091747916],[-126.9352245668499,53.084635858854476],[-126.93552810732456,53.08461832391799],[-126.9358213153165,53.08464177444785],[-126.93607877162071,53.084739463541204],[-126.93635817392466,53.08477255124726],[-126.93666072296574,53.08475278017185],[-126.93696117729566,53.08476552973119],[-126.93711816670758,53.08476035826914],[-126.93725339922457,53.08474359793936],[-126.93753417710406,53.08466965531522],[-126.93781786339002,53.084685332632795],[-126.9381016509092,53.0847475156216],[-126.9383882514756,53.08480966662681],[-126.93850735806119,53.084825528780044],[-126.93868041089004,53.084827515678384],[-126.93898105217757,53.08480607747598],[-126.93927516871501,53.08482783589981],[-126.93956689488022,53.08486865292953],[-126.93986121077444,53.08489937268695],[-126.94015381846637,53.08493738437757],[-126.94051386131721,53.08502192152327],[-126.94053373615975,53.08520160655749],[-126.94053585403773,53.08538144188938],[-126.94051646202819,53.08556088367217],[-126.94047269525745,53.08573827835996],[-126.94041020567913,53.085914136729954],[-126.94035332317706,53.086090515175414],[-126.9403217551437,53.086269497958625],[-126.94031268772335,53.086408517794275],[-126.94027933907759,53.08646536626306],[-126.94024852983833,53.08650987747436],[-126.94023045567768,53.0866226316524],[-126.94020071941645,53.086799914465075],[-126.94013187337683,53.08698479646662],[-126.94001564191066,53.08714147701043],[-126.93991184562381,53.087310384496945],[-126.93982211623342,53.08748142107286],[-126.93973896106101,53.08765408160732],[-126.93964079750579,53.087824064534146],[-126.9395322782038,53.087991332820515],[-126.93934215925796,53.08827465681335],[-126.93938017005266,53.08834439313313],[-126.93948342697294,53.08844609751078],[-126.93961363579396,53.08858233331283],[-126.93988524703006,53.08876898036982],[-126.94013570555967,53.08892946679784],[-126.94042827811121,53.08913331874406],[-126.94066553804609,53.08928887112694],[-126.94093835740607,53.08944525145849],[-126.94105417676873,53.08964883286897],[-126.94134159088226,53.08995693419051],[-126.94159777475267,53.090164434732436],[-126.94169479734684,53.090616361132504],[-126.94167817109752,53.09083667589492],[-126.94185951643739,53.090916474477545],[-126.94217695328885,53.0908489524048],[-126.94246094670036,53.09079233688602],[-126.94274596921784,53.090739638850955],[-126.94303687573262,53.09069921914304],[-126.94334063650643,53.090648055414945],[-126.94363374331785,53.09066419963638],[-126.94376614690438,53.09068835895754],[-126.94401167611646,53.09075194506025],[-126.94411359067811,53.090792590962465],[-126.9443801028365,53.090875066865095],[-126.94446973173793,53.090909643174484],[-126.94462485534413,53.09102998670439],[-126.94482515477476,53.09116228584693],[-126.94505776527663,53.091275841758815],[-126.9453077871989,53.091373570321785],[-126.94556791684455,53.091462817885215],[-126.9458012267692,53.09152370119795],[-126.94602114133549,53.091487203994745],[-126.9461220097125,53.091480793717786],[-126.94641675111714,53.09152829322104],[-126.94670761521054,53.09156966454754],[-126.94700800627828,53.09161880261972],[-126.9471400000144,53.09166592813746],[-126.94724414040341,53.09172224113331],[-126.94745282797665,53.09176931626016],[-126.94781318227746,53.09182300948203],[-126.9481021670666,53.091863836679906],[-126.94837208977502,53.091805078782635],[-126.94858809084496,53.09167728835027],[-126.94877661590468,53.09153346573648],[-126.9490061571892,53.09142572661861],[-126.9493222028999,53.09138060737283],[-126.94948933315733,53.09132604321648],[-126.94940611753786,53.09111829053708],[-126.94937405084576,53.090939261018924],[-126.94937096758441,53.09075943386836],[-126.94938842921546,53.090578885846924],[-126.94944812814508,53.09040472171108],[-126.94969096634077,53.09030640340801],[-126.94998161227977,53.09025476315879],[-126.9502523644969,53.0901915209239],[-126.95044900943188,53.090035304123255],[-126.9507060880973,53.0899469540459],[-126.95097653557546,53.089870257054685],[-126.95124985544682,53.08979690691189],[-126.95152122858781,53.08972020120003],[-126.95178780480131,53.0896384955171],[-126.95205153192276,53.0895545710835],[-126.95230856897804,53.08946397668822],[-126.95254552056322,53.08935393855623],[-126.95282066668118,53.08927888468613],[-126.95307973186156,53.08919611604502],[-126.9532663981969,53.08905397718447],[-126.95337955928059,53.08888778803381],[-126.95343075580263,53.08871032852733],[-126.9534753611297,53.088531236860725],[-126.95356032973758,53.08835910746862],[-126.95365564107023,53.088189135613284],[-126.95375470452161,53.08801969812821],[-126.95385657958667,53.08785022887588],[-126.95396127687599,53.087681866239535],[-126.95406878345942,53.08751403659562],[-126.95417817421442,53.08734619161548],[-126.9542903869155,53.087179444268],[-126.95440449399464,53.08701380203744],[-126.95452422280943,53.086848670050834],[-126.95465053896665,53.08668573475849],[-126.95478438694887,53.08652441478631],[-126.95492389197337,53.086365845809276],[-126.95507466893004,53.08620887083676],[-126.95525560223435,53.08606285733413],[-126.95548958217002,53.08598812971367],[-126.95578817217311,53.08591680538662],[-126.95605471626047,53.08583508990133],[-126.9563125992125,53.08574223840973],[-126.95654861717038,53.0856333109074],[-126.95675316537114,53.085497753521615],[-126.95694725551287,53.085354992407524],[-126.95716247246918,53.0852361471464],[-126.95742660429093,53.08517182103011],[-126.95772817858371,53.08515088330746],[-126.95803355828261,53.08513216402117],[-126.95832929426606,53.08510118714591],[-126.95862210594254,53.08506463946502],[-126.95889458057356,53.08499687172822],[-126.95915354450277,53.08491129318853],[-126.95942485951768,53.08483401342251],[-126.95971840783822,53.084788483643436],[-126.96001196613184,53.08474408256312],[-126.96029118952406,53.08468578588826],[-126.96054165258165,53.08459634693432],[-126.96075480802719,53.08446966786642],[-126.9609593243786,53.08433353845574],[-126.96118770116618,53.08421906979485],[-126.96145136318798,53.084134559471075],[-126.96172934825177,53.084062822784524],[-126.96200352676917,53.0839888753241],[-126.9622548610886,53.08389662864832],[-126.96241120948571,53.083740154218454],[-126.96241187491627,53.0835631015544],[-126.96227666120855,53.083373709031875],[-126.9621977991449,53.0831950629439],[-126.96225887090438,53.083043290963964],[-126.96253230691661,53.082936296398884],[-126.96277776760398,53.08283344661442],[-126.963036800599,53.08271031571991],[-126.9632420899077,53.08260891293583],[-126.9635206202417,53.082520914918064],[-126.96378541332956,53.08244536334603],[-126.96404989756351,53.0823569228441],[-126.96429625530506,53.08225237718119],[-126.96445314026293,53.082119436002195],[-126.96457369261405,53.08195204511139],[-126.9647131356829,53.081792352659896],[-126.96489601420988,53.081651910489896],[-126.96510343047964,53.081520787794695],[-126.96532506564373,53.081398521931646],[-126.96555913888685,53.081289035870945],[-126.96581413782313,53.081194501263596],[-126.96606912086871,53.08109997518572],[-126.96631733611079,53.080995409943796],[-126.96656640323897,53.080886919734404],[-126.96677588257353,53.080765306293166],[-126.96684124613739,53.08059725288352],[-126.96680712904272,53.08041319629105],[-126.96674884612172,53.08023550496635],[-126.9667766226237,53.08005935046898],[-126.96685399258602,53.079884475386386],[-126.96682936516703,53.07970650860131],[-126.96677198496603,53.079527689279836],[-126.96675860186289,53.079350750983934],[-126.96684699970787,53.079208837496395],[-126.96685785586966,53.0789874343442],[-126.96689219304524,53.07881234654394],[-126.96693180655126,53.07874535369376],[-126.96709628435279,53.07870030560996],[-126.96738981813701,53.07865699742989],[-126.96768999221226,53.07861756055036],[-126.96797865379149,53.078565335318025],[-126.96825771037729,53.078501973568],[-126.96853476876339,53.0784330337127],[-126.96880701873683,53.0783579650865],[-126.96906969974121,53.07827400986293],[-126.96930747473748,53.07816336503607],[-126.96954238532922,53.078050502108084],[-126.96980711191961,53.07797437231563],[-126.97009109968705,53.0779221712509],[-126.97038369789331,53.07787887219101],[-126.97068011148359,53.077838893757985],[-126.97095731547141,53.07777667027761],[-126.97123245652122,53.07770605443252],[-126.97149605804836,53.07762152138064],[-126.97176253268468,53.07754033473168],[-126.97204735271752,53.0774842045898],[-126.97233703328854,53.07743587765359],[-126.97248228551904,53.07740946492641],[-126.97260172533979,53.07735862122521],[-126.97273497009664,53.07721633372309],[-126.97267992232426,53.07697642270459],[-126.97273190796531,53.07683816591274],[-126.97288752154469,53.07669289706276],[-126.97303351622031,53.07653593686844],[-126.97333213149368,53.07638835983822],[-126.97364693197194,53.07633534036338],[-126.97390239422747,53.07630409990644],[-126.97412097078063,53.07621377342569],[-126.97451140078772,53.07619710638535],[-126.97478185363053,53.07624866175334],[-126.9750719430909,53.07630061917853],[-126.97528374513072,53.07636274256196],[-126.9754776246133,53.07637795006812],[-126.9757324419423,53.07635903712825],[-126.97587138377298,53.07630241718011],[-126.9759900307803,53.0762577351084],[-126.97607231811904,53.07617693964567],[-126.9762516029015,53.07608581327571],[-126.97639188416179,53.0760062146239],[-126.97658776165461,53.07598610165926],[-126.97680108285802,53.07595240636494],[-126.97706336055359,53.07589252389844],[-126.97732656502279,53.0757917372001],[-126.9775880019766,53.07569544676937],[-126.97786472976648,53.07561359645235],[-126.97809029466694,53.07550247874791],[-126.97830522153744,53.07537575188425],[-126.97855165887358,53.07527790712656],[-126.97882286390335,53.07520001774091],[-126.9790940050867,53.07516023629693],[-126.97942153046435,53.075132303934154],[-126.97969188557839,53.07509868623129],[-126.98000673571076,53.075089351110975],[-126.9802856398119,53.07506126392264],[-126.9805825166394,53.075042556130235],[-126.98089711995111,53.07502257086187],[-126.98113883460547,53.074963414738676],[-126.98139213182567,53.07483916929068],[-126.98161467920741,53.074719105270596],[-126.98182392936461,53.0745907426417],[-126.98202086540584,53.0744551938617],[-126.98220834924818,53.07431525004573],[-126.98238354497026,53.07416924053354],[-126.98252291927726,53.07401120252003],[-126.98262085496341,53.07383949753375],[-126.98276876420118,53.07368643519741],[-126.9829675755529,53.07355143386949],[-126.9831838206535,53.07344261582645],[-126.98340691928429,53.073306855755064],[-126.98363690258721,53.07318616103184],[-126.9837840603064,53.0730409385567],[-126.98396935084178,53.0728875632349],[-126.98405238583742,53.072719342703024],[-126.98402952095746,53.072539687164344],[-126.98400018574262,53.072362882436394],[-126.98398934774751,53.07217807963952],[-126.98394969792642,53.07200024023101],[-126.98376837196898,53.07171936841559],[-126.98398839636363,53.0716127583414],[-126.9842307870127,53.071503164535294],[-126.98449536839291,53.07142364050037],[-126.9847631073543,53.07139899721512],[-126.98510632042895,53.07140454387269],[-126.9854123990725,53.07138069989877],[-126.98568935380902,53.071350374792736],[-126.98588072481319,53.07129835213218],[-126.98608995810838,53.071170537387566],[-126.98645406894451,53.07106945192454],[-126.98673695044049,53.07109341777992],[-126.98702407929989,53.07113920297666],[-126.98731243772575,53.071197303422835],[-126.98759811585494,53.071261028409396],[-126.98787821289928,53.07132591995552],[-126.98814292283234,53.07141279508691],[-126.98840758344507,53.07149686414622],[-126.98869565698698,53.071543193202174],[-126.98899921240147,53.07153113147143],[-126.98924285644722,53.07143608412398],[-126.98943299693174,53.071291059008814],[-126.9895610018185,53.07112806034521],[-126.98963828771296,53.07095428980356],[-126.98964066755333,53.070776099819135],[-126.98963504923799,53.070575000737726],[-126.98966682888127,53.07041449343445],[-126.98965889582955,53.070234713440016],[-126.98962105404382,53.070055175071055],[-126.98958512115998,53.069877306012636],[-126.98961269153814,53.06969666371811],[-126.9896804694986,53.06951680504746],[-126.9898180647657,53.069363819592674],[-126.99005559003827,53.06924753082965],[-126.9903034937613,53.06913507205216],[-126.99044968569704,53.0689904134912],[-126.9905083240483,53.06881903962096],[-126.99053022982322,53.06863620333554],[-126.990546475448,53.06845117336172],[-126.99059181696383,53.06827150216583],[-126.99065676601472,53.06809054589317],[-126.9907688235584,53.06792543813186],[-126.99095641967526,53.06779275769588],[-126.99118647126014,53.067676529163464],[-126.99143448071938,53.06756911396316],[-126.99167882913626,53.06746509067338],[-126.99192891481918,53.06736662151955],[-126.99218473782635,53.06727370646634],[-126.99244151302194,53.067181903412234],[-126.9926973207916,53.067088431545635],[-126.99295217390647,53.06699383760296],[-126.99321084112074,53.066903137495174],[-126.99347629280093,53.06682246486215],[-126.99375235932183,53.06675571390641],[-126.99403995283424,53.066702867914834],[-126.99433047485357,53.06665503464169],[-126.99462005610138,53.06660665276745],[-126.9949000528884,53.06654883055503],[-126.99515513434426,53.06646431497052],[-126.99538457404789,53.06632343061989],[-126.9955326476236,53.06618043478509],[-126.99570777694758,53.06603496052542],[-126.99588383235533,53.06588948713875],[-126.99606744162615,53.0657473025035],[-126.99624899665133,53.06559729985673],[-126.99644292852884,53.06545726865309],[-126.99667231315155,53.065353925727216],[-126.9969457117332,53.0652939041089],[-126.99724496837965,53.06526000140826],[-126.99754911374026,53.06523558599103],[-126.99784572956331,53.065208983301055],[-126.99814467540321,53.06520197465869],[-126.99843087434004,53.06524942524853],[-126.99871955526952,53.06528284252741],[-126.99901819803041,53.065262943180194],[-126.99931779582181,53.0652435997621],[-126.99960960849764,53.06525121521079],[-126.99986539467713,53.06535662474914],[-127.00000125343196,53.065370041835536],[-127.00043683648254,53.065410054904184],[-127.00073374258521,53.06539577775936],[-127.00103750159114,53.06539432387725],[-127.00128992750366,53.06547566205427],[-127.00141250689991,53.0656399115775],[-127.0014382396636,53.065818984927176],[-127.00149566624175,53.06599498357138],[-127.00159038490331,53.06616619257732],[-127.0017759486667,53.066305810712656],[-127.0020278116269,53.066402284306804],[-127.00231581251522,53.06644633958516],[-127.00261176935473,53.06647072109359],[-127.00290341880465,53.066510270647434],[-127.0031743872939,53.06658472393072],[-127.00340791973329,53.06669703832242],[-127.00361291324138,53.06682752393893],[-127.00377450752235,53.0669802337145],[-127.00380951551406,53.06715642175462],[-127.00377544613121,53.067336002816745],[-127.00379760899655,53.067522394110696],[-127.00405955877082,53.06757059309138],[-127.00435919639239,53.06759213307567],[-127.00465086675395,53.067632798762176],[-127.00491183782957,53.06771853886058],[-127.00512052618387,53.06784674928252],[-127.00530243700317,53.067989198903724],[-127.00548806245776,53.068129931278335],[-127.00567368736179,53.06827121916856],[-127.0057851312315,53.06843723529869],[-127.00593834707328,53.06859113401434],[-127.00610083022762,53.06874158290242],[-127.00627627967312,53.06888688299994],[-127.00644804500232,53.06903445537231],[-127.00656971410632,53.06919814245355],[-127.00669789246396,53.06936065334808],[-127.00682885657919,53.069522019777715],[-127.00698116615834,53.06967648063922],[-127.00716123499082,53.06981949887594],[-127.00722620959905,53.069996559746215],[-127.00740712951907,53.070135643862415],[-127.00763797607809,53.07025133454438],[-127.00786972445076,53.070365896512],[-127.00807840814363,53.07049298116913],[-127.00824184851307,53.070643427869065],[-127.00839416551553,53.07079844262692],[-127.00853536278048,53.0709569228116],[-127.0086608640135,53.07112393666279],[-127.00880297712084,53.07128184392695],[-127.00900873661494,53.07140390486329],[-127.00927262962145,53.07149353693042],[-127.0095346678326,53.07158374903392],[-127.00979296824312,53.0716739835525],[-127.01005943603137,53.07175350673074],[-127.01029667382451,53.07186241416861],[-127.0105192265058,53.07198209667348],[-127.01075096542,53.072095532532224],[-127.01098913560901,53.07220386584322],[-127.01124471316979,53.072296926427825],[-127.01153011407712,53.07234714939075],[-127.0118261440928,53.07237262806794],[-127.01212217446404,53.07239810600272],[-127.0124031100423,53.07245732969478],[-127.01268854014359,53.07250867019542],[-127.0129843847212,53.07252630357968],[-127.01328008806975,53.07249855881179],[-127.01358330693493,53.07247298098331],[-127.01379269254944,53.072588843896796],[-127.01389768271494,53.07275714886353],[-127.01401199395642,53.072924253136954],[-127.01421980673281,53.073053019837296],[-127.01450072423603,53.07311055339791],[-127.01479241545405,53.07315007357024],[-127.0150873404139,53.07312904546167],[-127.01542830336574,53.07307849496716],[-127.01542981838797,53.07314178970225],[-127.01518091956244,53.073289047560074],[-127.0150114232874,53.073433372459306],[-127.01499704466839,53.07361390783435],[-127.01489515322837,53.07377110737512],[-127.01478829078289,53.073876238527724],[-127.01502926467995,53.073983983865936],[-127.01515002702585,53.074146549271276],[-127.01530051238217,53.074301570877715],[-127.01547601632814,53.07444685684486],[-127.01567555644057,53.07458073017547],[-127.01586585771582,53.07471916490507],[-127.01603489678294,53.07486731154426],[-127.01617425146567,53.0750257894736],[-127.01627740113433,53.07519467282347],[-127.01640285132237,53.07535775237608],[-127.01652826231174,53.07551915575407],[-127.01668432761532,53.07567189536775],[-127.01676140131977,53.075844920205085],[-127.01675169570235,53.076025415378204],[-127.01670918630201,53.07620226640681],[-127.01664121690321,53.07636981616988],[-127.01654873976022,53.07652973279988],[-127.01663980355356,53.07670096087544],[-127.01674945480258,53.07686810241207],[-127.01681909278335,53.07704286748566],[-127.0168868619603,53.07721765755742],[-127.01700768081405,53.07738189678686],[-127.01714147897592,53.07754210662179],[-127.01729201215379,53.077697689910835],[-127.01743136750216,53.07785561041346],[-127.0175112736864,53.0780291749764],[-127.01764694542672,53.078189368075456],[-127.01777519479602,53.07835130133123],[-127.01786533848147,53.07852309208884],[-127.01795264404612,53.07869378665587],[-127.01793359614209,53.07887380637098],[-127.01785077583314,53.07904652261711],[-127.01771154349733,53.07920572217348],[-127.01750509562281,53.07933076291907],[-127.01720703452048,53.0793400531964],[-127.01692428440887,53.079285338601146],[-127.01667632574951,53.07935639218384],[-127.01665170321911,53.079538135918646],[-127.01666349181619,53.07971788094808],[-127.01664252646022,53.07989679623338],[-127.01666086661177,53.08007648484586],[-127.01666891615925,53.080256270963105],[-127.0166591418976,53.080433960354114],[-127.01655472492922,53.08060294382094],[-127.01643808069385,53.08076867067616],[-127.0163993182772,53.080946053588406],[-127.01643628706111,53.081123349684255],[-127.01633092657069,53.08129177621729],[-127.01615581830481,53.081437835465486],[-127.01598544444818,53.081586094847324],[-127.01581315946784,53.08173269402753],[-127.01562952015533,53.081873778755174],[-127.01540609081655,53.0819933586371],[-127.01518548592561,53.08211347857186],[-127.01493437129454,53.082209763559575],[-127.01472708039684,53.082339288540695],[-127.01452165639135,53.082469352906266],[-127.01427438664237,53.0825695298811],[-127.01399441620022,53.08263244360586],[-127.01371054605765,53.08268810196972],[-127.01342473704904,53.08274154411128],[-127.01314086542878,53.082797201102935],[-127.01286280188451,53.08286178108619],[-127.01259154342901,53.08293694295337],[-127.01232601378724,53.08301709315279],[-127.01210637576749,53.08313943998992],[-127.01190948209634,53.08327447359288],[-127.011701220876,53.08340343660971],[-127.01149581086354,53.08353406015562],[-127.01128468159973,53.083660814790456],[-127.01106121713762,53.08377982168528],[-127.0108148857421,53.08388110374227],[-127.01053098983037,53.08393619874143],[-127.01023520494367,53.08396393644577],[-127.00994341473583,53.084001733285135],[-127.00965558866493,53.08404957161882],[-127.0093736534473,53.08410857350386],[-127.00913584305019,53.08421481723994],[-127.0089843191782,53.084370748914914],[-127.00886198516507,53.08453483085725],[-127.0087593837447,53.0847032353853],[-127.00868686009777,53.084878097424834],[-127.00864620499621,53.08505605798916],[-127.00862428890262,53.085235534909145],[-127.00865186571072,53.085412348173925],[-127.0087792001946,53.08557598355421],[-127.00887210858266,53.08574663611811],[-127.00898547912976,53.08591318741442],[-127.00912858547328,53.086071084903374],[-127.00929020464756,53.08622154491179],[-127.00945833733694,53.08637026372394],[-127.00952793420616,53.08654391181373],[-127.00948451016373,53.08672301673281],[-127.00945040746488,53.086901477216195],[-127.00944907737829,53.08708133404349],[-127.00966674478572,53.087189289146394],[-127.00993332326595,53.08726937655169],[-127.01021527010893,53.087327476555814],[-127.01042945412024,53.087446100889416],[-127.01050846060292,53.087621917962124],[-127.01062361931088,53.08778453483556],[-127.01065393859558,53.08795796232485],[-127.0108212220476,53.088109483332154],[-127.01096154349466,53.088267967111825],[-127.01110836364583,53.08842470978749],[-127.01127558387807,53.088573433764594],[-127.01145576068089,53.088716999593714],[-127.01165997128274,53.088848042186136],[-127.01188444515151,53.08896657578107],[-127.01209787517672,53.08909193586992],[-127.0123553718811,53.0891832922867],[-127.01262468542193,53.08925998856858],[-127.0128867600459,53.089346822366544],[-127.01310938502499,53.089465378466045],[-127.01326087332258,53.08962095788047],[-127.01344383394277,53.089762820459796],[-127.01362958003904,53.089904094098806],[-127.01376899031979,53.09006258233992],[-127.01388890462928,53.09022739628832],[-127.0139473584983,53.09040337833146],[-127.01399928673675,53.0905805458535],[-127.01410246536388,53.09074942064132],[-127.01422609651017,53.0909130817542],[-127.01436551233724,53.09107156920065],[-127.01448635944305,53.091236374485526],[-127.01461927745949,53.091397149558325],[-127.01476799385287,53.09155331553837],[-127.01493614007622,53.09170090577634],[-127.01516892764313,53.09181375894962],[-127.0154209576028,53.0919102027034],[-127.01568580019799,53.09199420965358],[-127.0159496879238,53.092077668427514],[-127.016212674248,53.09216281072459],[-127.01649643837624,53.09221695386809],[-127.01679559838186,53.092211018452325],[-127.01709084257996,53.09223649162878],[-127.01738433631635,53.09226758193498],[-127.01768540725003,53.09226331313754],[-127.01791812453742,53.09237279987746],[-127.0181334060076,53.0924958920577],[-127.01825707114666,53.09266010447306],[-127.01827820825508,53.092839211736866],[-127.01827223243691,53.093019117372066],[-127.01826906927876,53.093198989787666],[-127.0182836681223,53.09337815333664],[-127.01828050520109,53.09355803467852],[-127.01826329380994,53.09373747229115],[-127.0182395436058,53.09391696622271],[-127.01812568069623,53.094083225061034],[-127.01788121689584,53.094186181150036],[-127.01763007874283,53.09428359140286],[-127.01742081152727,53.094411460446985],[-127.017301292795,53.09457609074399],[-127.01733737619753,53.0947545045318],[-127.01734637406788,53.09493428098588],[-127.01734133645806,53.09511416928241],[-127.01736713941328,53.095293236271125],[-127.01742841444405,53.09546863618787],[-127.01749622891639,53.095643979757234],[-127.01749493289822,53.095823844743215],[-127.01749550707449,53.096003684644664],[-127.01753065002829,53.0961821153078],[-127.01759472519234,53.09635749095803],[-127.01776015590958,53.096507341518134],[-127.01795702079244,53.09664235386296],[-127.01817237764558,53.09676767736029],[-127.01820658277182,53.096945551094535],[-127.01832559107937,53.09711036801858],[-127.01854462517045,53.09723286224209],[-127.01869613424408,53.09738731367862],[-127.0188012052771,53.09755561190808],[-127.01898699000589,53.09769632082051],[-127.01914873036823,53.09784788654423],[-127.01931137250855,53.09799831474615],[-127.019523954156,53.09812478923337],[-127.01971714501803,53.09826207144025],[-127.01982687912161,53.098429207940065],[-127.01987044520143,53.09860700032243],[-127.01994385946685,53.09878117342919],[-127.02005638056424,53.098947720875216],[-127.02019491521487,53.09910676453853],[-127.02023848353421,53.099284556717],[-127.02023251512544,53.09946446179401],[-127.0201993901903,53.09964291594875],[-127.0201559706382,53.09982089417114],[-127.02013408226378,53.09999981603925],[-127.02024621736396,53.1001893424046],[-127.020485562842,53.100222013315175],[-127.02078799520532,53.10023340416291],[-127.02108328428314,53.100258311569696],[-127.02136535976902,53.10031750486199],[-127.02161562414705,53.10041562710516],[-127.02182823818194,53.10054265295421],[-127.02205114940872,53.100669589381326],[-127.02227963188069,53.10079535664971],[-127.02249603171973,53.100924033874236],[-127.0226826511457,53.10105912694967],[-127.02281903457427,53.10120586000696],[-127.02283073381629,53.10138056524612],[-127.02278196842138,53.10156924034585],[-127.02278820414728,53.101750151394526],[-127.02291566929182,53.10191489034044],[-127.02310054550821,53.10205504479075],[-127.0233094849182,53.10218434088186],[-127.02349346124402,53.10232617885722],[-127.02367611855595,53.10245177545643],[-127.0239018168738,53.10257756369971],[-127.02410170544194,53.10271926288903],[-127.02432630272035,53.10283778074859],[-127.02454261067534,53.10296196383896],[-127.0247644374091,53.10308218123443],[-127.02495951147942,53.103218317950024],[-127.02517212249602,53.10334421726437],[-127.0253718292358,53.103478072014816],[-127.02556783649442,53.1036136438392],[-127.02577677744762,53.10374237081485],[-127.02597556007285,53.103876232567565],[-127.0261734282051,53.1040112224793],[-127.0263508954764,53.104153677278994],[-127.02645041477035,53.104322572472114],[-127.02669967833029,53.10441621947834],[-127.02696382768843,53.10450636601302],[-127.02718015210034,53.10463055312246],[-127.02738541566005,53.10476155032888],[-127.02758234952603,53.10489654600991],[-127.02775617856727,53.105042947783225],[-127.02784819530862,53.105210795423844],[-127.02780387295815,53.10538934873289],[-127.02782123357751,53.10556512458136],[-127.0278209509174,53.1057460918249],[-127.02779817608837,53.10592614302715],[-127.02782400390558,53.10610352155022],[-127.02786841292316,53.10631436401987],[-127.02777465888853,53.10646085099159],[-127.0277761098133,53.10663676506705],[-127.02772051945384,53.106813730843044],[-127.02772767932595,53.10699295690501],[-127.02771424428805,53.107172361997854],[-127.02773731319796,53.10735201447153],[-127.02771265381281,53.10753095235189],[-127.02770578798058,53.10771086503482],[-127.02768018529932,53.10788981106978],[-127.027724722031,53.10806759153867],[-127.0277515333862,53.10824721138814],[-127.02769591364917,53.10842305667703],[-127.02758393352569,53.108589871636376],[-127.02740307183466,53.10873263300631],[-127.02717476774995,53.10884891309248],[-127.02691875709688,53.10894134604715],[-127.02663860540223,53.109002603708504],[-127.02637779916651,53.10909059491059],[-127.02609473690812,53.10914795908893],[-127.02580277382596,53.109185229914445],[-127.02550882928325,53.10921859079532],[-127.02531536340352,53.10930487488801],[-127.02531228865162,53.10952620565714],[-127.02537363079267,53.10970216468144],[-127.02542188815384,53.10987934874153],[-127.0254841592955,53.11005529962389],[-127.0255529597723,53.110230064306144],[-127.02562920316679,53.110403652780946],[-127.02571479012755,53.110576030615924],[-127.02568729279471,53.11075443648838],[-127.025768236305,53.11092853985004],[-127.0259305861433,53.11106383807989],[-127.02614364625327,53.11120653979226],[-127.02629058854279,53.11136270589135],[-127.02643477333578,53.111520572085055],[-127.02664282782936,53.111649305013884],[-127.02689497469146,53.11174460290251],[-127.02716448503634,53.11182238538074],[-127.02742672894519,53.11190918582315],[-127.02767250065871,53.11201126076252],[-127.02790175945879,53.11212692534907],[-127.02812457325635,53.11224657194384],[-127.02835013295187,53.11236394417612],[-127.02858957055564,53.11247503670835],[-127.02876514214242,53.11261469822218],[-127.02886850133687,53.11278636327146],[-127.02908931415455,53.112900422728615],[-127.02933782675217,53.112999664523855],[-127.0295973377761,53.11308873405092],[-127.02982933876947,53.11320156519277],[-127.03000689754069,53.11334568975186],[-127.03014644616053,53.113504156568084],[-127.03021992845657,53.113678321826924],[-127.03031577036185,53.113848365780065],[-127.03044603248954,53.1140102747919],[-127.0306004454847,53.1141641203403],[-127.03081215781962,53.114288896644155],[-127.03106711682797,53.11438304064683],[-127.0312834899331,53.114506654920284],[-127.03144069362544,53.11465991923743],[-127.03155328852921,53.11482589857179],[-127.03158570687629,53.11500434758094],[-127.03153480708713,53.115181273435525],[-127.03144633040178,53.11535293328594],[-127.03133057691356,53.11551866348242],[-127.03100354673056,53.11542402796747],[-127.03070847633245,53.11537393484641],[-127.03041391044924,53.115344562238626],[-127.03011512247039,53.11533428395082],[-127.02981655367373,53.115332402621284],[-127.0295059774626,53.115337348371845],[-127.02922258151686,53.11534429780434],[-127.02892644144917,53.11536535981425],[-127.02861591438034,53.115411207236136],[-127.0283573298122,53.115476207163944],[-127.02808300913385,53.1155480666248],[-127.02782600317424,53.11563994476008],[-127.02761113018117,53.11577067527015],[-127.02738931860985,53.115885778012824],[-127.02711399620046,53.11595540278386],[-127.02698484292965,53.11599405845661],[-127.02691601392985,53.11608878212975],[-127.02687726306323,53.11626616493062],[-127.02683852555356,53.11644411233734],[-127.02676600872263,53.11661842665506],[-127.02666529903415,53.116787938767416],[-127.0266125054369,53.11696488753658],[-127.0266018770275,53.117144267060304],[-127.02657913149427,53.117325992856216],[-127.02648534756923,53.11739516030167],[-127.02634494899766,53.11743279227837],[-127.02604988407147,53.11746056982183],[-127.02576579517853,53.11751682081771],[-127.02565169558305,53.11759736926508],[-127.02559339774832,53.117663422315026],[-127.02554434134731,53.117840338057135],[-127.0255215366824,53.11801982296008],[-127.02543868576831,53.11819254056675],[-127.0252814185342,53.11834574253683],[-127.02510237733259,53.11848903918085],[-127.02486640821263,53.11859977739193],[-127.02463421990537,53.11871272344027],[-127.02443531602164,53.11884723574108],[-127.02430350390439,53.11900805060815],[-127.02415471111692,53.119163974415024],[-127.02394536912722,53.119292408761154],[-127.02371604336226,53.11940756920741],[-127.02346763660904,53.119507771494376],[-127.02313957219927,53.1195649523675],[-127.02288757521085,53.11947805381664],[-127.02260001243542,53.11942955180298],[-127.02230163134112,53.119436613975175],[-127.02203788452847,53.11952181403816],[-127.02179804931318,53.119628661941604],[-127.02156870228129,53.119743253566135],[-127.02135936320214,53.11987224792837],[-127.02114048828663,53.11999459202907],[-127.020870932291,53.12007199578291],[-127.02059169409301,53.12013603597231],[-127.02031440746471,53.120203420279395],[-127.02004289623599,53.12027747735763],[-127.01977333643617,53.120354878597304],[-127.0195028204346,53.12043116691302],[-127.01922745553844,53.12050077314348],[-127.01895789282885,53.12057817251473],[-127.01868835606733,53.12065669157741],[-127.01840812719652,53.12071905873301],[-127.01813468398208,53.12079088690818],[-127.01788243193577,53.12088773972207],[-127.01764354866592,53.12099569130794],[-127.01741515315133,53.121111386981],[-127.01719531882854,53.12123317600803],[-127.01700488795021,53.121371519841034],[-127.01693314519748,53.12150211949795],[-127.01696374231099,53.12172372333414],[-127.01696790993515,53.121897371207325],[-127.0169478413807,53.122075153858844],[-127.01693431490176,53.122291534370554],[-127.01696118407718,53.12243640872279],[-127.01692250683534,53.122618833497555],[-127.01693525185406,53.12279856600998],[-127.0169320810129,53.12297844433376],[-127.016866082315,53.123153815982086],[-127.01675496393099,53.12332061119214],[-127.01660424304418,53.123475976577986],[-127.01642043900604,53.12361762384268],[-127.01625932199887,53.12376860490464],[-127.0161510264763,53.123936495736224],[-127.01603141953284,53.12410112201165],[-127.01590711311364,53.12426466797476],[-127.01581478372768,53.12443521813762],[-127.01572436732735,53.12460688127816],[-127.01561888091241,53.12477530316741],[-127.01548418854236,53.12493557617164],[-127.01536363450546,53.125099653978914],[-127.0152778999713,53.12527183227681],[-127.01522223296642,53.125448790322054],[-127.0151458961658,53.125622573095],[-127.0150121410064,53.1257833931891],[-127.01484251488735,53.12593108344172],[-127.0146976522386,53.12605782655301],[-127.01462571290014,53.126259019843246],[-127.0145136341841,53.12642582075111],[-127.01435344140641,53.12657734668783],[-127.01419798805094,53.1267310728157],[-127.01396575502194,53.12684455294557],[-127.0137038306333,53.12693028265456],[-127.01341674096837,53.12698148182497],[-127.01312763158136,53.127026539127094],[-127.01283032479154,53.127041976198164],[-127.01253163252348,53.1270389310586],[-127.01223362929677,53.12702522969596],[-127.01193649601197,53.12704794203244],[-127.01164027904244,53.127069525246085],[-127.01134155992321,53.12706535679433],[-127.01104276237288,53.1270572708672],[-127.01074482642248,53.12704637100222],[-127.01044683718766,53.12703322977256],[-127.01014962952956,53.12701391369195],[-127.00985164070764,53.12700077096255],[-127.00955311084907,53.127003884344084],[-127.00926100844721,53.127041669746184],[-127.00897814628968,53.12707378188156],[-127.00872166915971,53.127192505273214],[-127.00851325916015,53.12728504592341],[-127.00821098745209,53.12721030616256],[-127.00799368838686,53.12708665846726],[-127.00773415048498,53.12699810686196],[-127.00744035655669,53.126964187947536],[-127.00714173191034,53.126963934447154],[-127.00684292245904,53.12695527327459],[-127.0065448950457,53.12694043727069],[-127.00624774324618,53.12692336096286],[-127.00594922686214,53.126927020921315],[-127.00565058908438,53.12692619902081],[-127.00536032822598,53.126883280640634],[-127.0050691779409,53.1268426191433],[-127.00477081963965,53.126853553778275],[-127.00449118051183,53.12690355633198],[-127.00441486336975,53.127080128325325],[-127.00441821103334,53.12726050585238],[-127.00439622864131,53.12743885740759],[-127.00425865675183,53.12759857665972],[-127.00405870466815,53.12773249726131],[-127.00386348988313,53.12786918311093],[-127.00368434938619,53.12801301119265],[-127.00348627853779,53.128147470583556],[-127.00327206281473,53.1282725465264],[-127.00303213074926,53.12837935584464],[-127.00279223875415,53.128487275888304],[-127.00259980335535,53.128623371217024],[-127.00250181047147,53.128793967007056],[-127.00241413095362,53.12896558685328],[-127.00227749027854,53.12912530463168],[-127.00221047953039,53.129300110728494],[-127.00221653884479,53.12947710344351],[-127.0019975857493,53.129600540722706],[-127.00172407053837,53.12967288626729],[-127.00151841879173,53.12980405369348],[-127.00134211714214,53.1299495302132],[-127.00118564761993,53.130102691261776],[-127.00104522808398,53.130261309936124],[-127.00083467229491,53.13038355334468],[-127.00053360670583,53.130399546829004],[-127.00023716470962,53.13037347605299],[-127.00000079725996,53.1303541845816],[-126.99970197868322,53.13034607002004],[-126.99940881025441,53.13037935763813],[-126.99913237781439,53.1304478043525],[-126.99886753455688,53.13053071943864],[-126.99860076382537,53.13061197387865],[-126.99831753328526,53.130669826529505],[-126.99802014275403,53.130682985726764],[-126.99772165194027,53.130688865527446],[-126.99742339654182,53.13070538314309],[-126.99713421837225,53.130749280949814],[-126.99685389271838,53.130811031915016],[-126.99657940436607,53.13088281779318],[-126.99630685472566,53.130956827753046],[-126.99606593505821,53.131062510293425],[-126.99584694257672,53.13118537144284],[-126.99565451391896,53.13132257544845],[-126.99548385445067,53.131470236455094],[-126.99532168948589,53.13162119626616],[-126.9951500860853,53.13176830890736],[-126.9949557522715,53.13190496297233],[-126.99474624577518,53.13203278903175],[-126.99451868306556,53.13214955226529],[-126.99430828312822,53.13227962607906],[-126.99404291756112,53.132341800236716],[-126.99374006858041,53.13236227337439],[-126.99344721002956,53.13240955450401],[-126.99317273376212,53.132481896922215],[-126.99295932845513,53.132604140838346],[-126.99279632663908,53.1327595861163],[-126.99270105885009,53.132929020616444],[-126.9926557095835,53.13311092666649],[-126.99259146668524,53.13328626805655],[-126.99242057887066,53.13342497098816],[-126.99217892985125,53.13354017138549],[-126.99203655385571,53.13369711878404],[-126.99195922902577,53.13387368998241],[-126.99197177980325,53.134049507452744],[-126.99205082262195,53.134226443593555],[-126.99212422369553,53.13440231542546],[-126.99221157995458,53.134574699603],[-126.99236207998142,53.13472415243932],[-126.99256834973077,53.134856885026196],[-126.99275143641941,53.13499877602757],[-126.99298991422314,53.1351071417778],[-126.99321454361669,53.13522347597438],[-126.99338467327738,53.13537163319943],[-126.99355757883347,53.13551865530071],[-126.99374809460552,53.13565767656449],[-126.99393955542025,53.13579669854512],[-126.99411893267121,53.13593973912202],[-126.99426220325766,53.13610044657473],[-126.99425411737872,53.13627419606487],[-126.99417303961566,53.136450244256785],[-126.99415285524883,53.136627456954734],[-126.99418235795049,53.13680704890041],[-126.9941828339215,53.13698689373159],[-126.99422536211475,53.1371635793359],[-126.99421834904356,53.13734347810868],[-126.99427769048698,53.137517781309896],[-126.99438375854292,53.13768889488372],[-126.99444027198915,53.13786265700594],[-126.99441542809919,53.138040473525706],[-126.99436721219199,53.1382201627775],[-126.99434988135721,53.138399592399054],[-126.9943456845632,53.13857946738753],[-126.99432273653882,53.138758944179926],[-126.99428947172227,53.138937387132025],[-126.99425527794831,53.13911583786192],[-126.9942117204571,53.139294931997114],[-126.99418501546202,53.13947331973204],[-126.9942088488925,53.13965128274312],[-126.99425985234171,53.139829573177224],[-126.99430245128941,53.14000849895436],[-126.9943300698314,53.140188115350625],[-126.99427517375031,53.140362257854015],[-126.99417901693775,53.14053450599638],[-126.99411665646863,53.140709831631575],[-126.99411432914042,53.14089025540613],[-126.99415501657045,53.14106751193014],[-126.99421161269174,53.141244643703935],[-126.99423641723705,53.141423718906054],[-126.99424905666822,53.141603452097975],[-126.9942635838475,53.14178317837153],[-126.9942808990929,53.14196231645283],[-126.99427575792971,53.14214219901431],[-126.99427434862706,53.14232149441675],[-126.99428245953153,53.14250743292893],[-126.99453428328937,53.14258431769241],[-126.99481767884615,53.14264916650167],[-126.99509363602537,53.14271687402145],[-126.99538995647389,53.142773769108956],[-126.99550207676054,53.14292241997067],[-126.99553913056478,53.14310475328835],[-126.9955705031108,53.14328377281795],[-126.99558313569577,53.14346295001317],[-126.99557145350737,53.14364288756559],[-126.99552317039546,53.14381978046177],[-126.99546551086695,53.14399618746279],[-126.99543224675175,53.14417463021828],[-126.99541491799245,53.144354059403696],[-126.99539760406688,53.14453348844278],[-126.99537934621434,53.14471292540108],[-126.99536014442276,53.14489237027819],[-126.99534001366092,53.14507182294761],[-126.99531332283534,53.14525076603474],[-126.9952772406856,53.145429232313916],[-126.99523742797354,53.14560772994046],[-126.99518352334417,53.145784669758186],[-126.9950938933032,53.14595574263987],[-126.99497695685507,53.1461208777084],[-126.99485344660363,53.14628495635418],[-126.99473652329013,53.14645009102908],[-126.99463089921858,53.14661850110951],[-126.99452810385547,53.14678744307558],[-126.99442812418224,53.14695636126647],[-126.99433285729084,53.14712691604474],[-126.99423946253721,53.14729746395748],[-126.99416112734157,53.14747123784194],[-126.99412691115474,53.14764968781747],[-126.99413208934358,53.147830047839925],[-126.9942044998776,53.14800256409147],[-126.99429376732682,53.14817437390385],[-126.9942895149918,53.148352572077705],[-126.99421402096732,53.1485274425264],[-126.99408293081676,53.148688222196675],[-126.9939027401456,53.14883204160395],[-126.99370074101824,53.14896483867428],[-126.99349304518246,53.149093756913274],[-126.99328915770727,53.14922601331769],[-126.9931127732063,53.149372596300566],[-126.9930512191226,53.149543431533466],[-126.99306951582012,53.14972424602866],[-126.99308122386218,53.14990398631553],[-126.99305544957413,53.15008292958234],[-126.99300340274701,53.15025984329084],[-126.99298886491779,53.15043869221431],[-126.99301180986697,53.15061833814489],[-126.99303379806297,53.15079743630723],[-126.9930689114324,53.15097642430682],[-126.99307027225862,53.15115457501147],[-126.99301073289237,53.15133156044704],[-126.99287961625247,53.15149177390643],[-126.99313705873105,53.15156580877483],[-126.9934326127122,53.15162775325696],[-126.99370773677813,53.15169715639573],[-126.99394353378942,53.15180722779899],[-126.99415171394001,53.151937144256486],[-126.99436999143191,53.15205856715292],[-126.9946196096497,53.15215843643942],[-126.99486921577832,53.15225774056536],[-126.99508748392132,53.15237860645085],[-126.99525675837752,53.1525273321424],[-126.99544272102857,53.15266807360641],[-126.99566104540075,53.152791170033254],[-126.99589041117702,53.1529057737567],[-126.99610965398566,53.153028305856374],[-126.99634363304679,53.153139508329474],[-126.9965959851279,53.15323598891669],[-126.9968401021562,53.15334038194724],[-126.99708970737404,53.15343912565958],[-126.99735030098239,53.153527135827446],[-126.99761635600437,53.15360836732895],[-126.99783556962505,53.153728655470964],[-126.99802246202567,53.15386882928988],[-126.99824540914284,53.153989085192016],[-126.99848670616142,53.15409237812437],[-126.99875461348556,53.15417247094664],[-126.99898953482435,53.1542836602787],[-126.99922166683396,53.154395993214386],[-126.99948046376124,53.15448681070964],[-127.00000131758074,53.15464769141089],[-127.00030316190208,53.15469668429486],[-127.00059537520436,53.15473510845709],[-127.00088759088534,53.154772976105484],[-127.0011753688071,53.154821529961346],[-127.00148369747399,53.15486765922545],[-127.00174927858724,53.154928160459875],[-127.00190446404602,53.15511341722232],[-127.00188425012045,53.15528838882642],[-127.00180437656086,53.15547562635584],[-127.00193634682093,53.15562914036701],[-127.00214595105547,53.155738861517335],[-127.00226872039775,53.15582017532297],[-127.00220326569043,53.15590421250192],[-127.00205429102195,53.15602144278818],[-127.00188542761775,53.1561691041144],[-127.00183811195171,53.156347101827684],[-127.00182839227034,53.15652982807042],[-127.00179038869672,53.156705514834364],[-127.0017393142776,53.156882423747426],[-127.00162427341017,53.15704867778798],[-127.00154015893168,53.15721522577192],[-127.00165190021899,53.15738459837118],[-127.00175892553573,53.15755289025773],[-127.00189224201692,53.15772375629263],[-127.0019365372934,53.157893699504356],[-127.00194914998576,53.15807007820511],[-127.00188397860836,53.15824543008486],[-127.00181872716004,53.15841742104325],[-127.00181740227953,53.15859895550337],[-127.00175410274184,53.15877429140583],[-127.00165976788153,53.15894484310749],[-127.00148326607719,53.15908696558643],[-127.00141183392466,53.159274695698365],[-127.0014092981632,53.15944503516628],[-127.00157911515106,53.15961391630969],[-127.00170663210625,53.15977698789232],[-127.00179219333732,53.15994882276646],[-127.00188803916731,53.1601194500027],[-127.00203875686344,53.160272804945926],[-127.00224136868165,53.16040275426966],[-127.00227173215882,53.16057729715624],[-127.00219375014365,53.160765638829936],[-127.00219333126198,53.160945489115655],[-127.00222285687651,53.16112452110785],[-127.00224115785986,53.161303648118434],[-127.00228751727401,53.16148141701594],[-127.00234883878383,53.161657373933096],[-127.00246953497772,53.161848524109146],[-127.00244436696028,53.161933331422084],[-127.002393772944,53.161972422021016],[-127.0025632041849,53.16212505300095],[-127.00258296635612,53.16236579564293],[-127.00264763747037,53.162525481034926],[-127.00280297617884,53.162675998960275],[-127.00303549785566,53.162801767210276],[-127.00327519400695,53.16291458383509],[-127.003581963343,53.16301058840732],[-127.00375546928052,53.163097637681346],[-127.0039766494479,53.163219018222065],[-127.00424916824338,53.16329346607801],[-127.0045325578022,53.16335156916315],[-127.00480869206116,53.16342037353838],[-127.00506479352993,53.163512887072045],[-127.00531221860342,53.163595380174556],[-127.00557233340486,53.16369961942487],[-127.00579259113849,53.16382156917723],[-127.00597308459997,53.163965137205295],[-127.0061322271191,53.16411729474819],[-127.00626720247183,53.16427750109052],[-127.0063928782988,53.164440592094856],[-127.00650815025347,53.16459984514809],[-127.00672962582065,53.16473297895236],[-127.00706504759044,53.164811923239945],[-127.00729546319762,53.164887842834865],[-127.00756227128036,53.16495784072102],[-127.00782867124309,53.16504969593569],[-127.008017120016,53.16517303288899],[-127.00823278284315,53.16529781405003],[-127.00843826869587,53.1654282840707],[-127.00864192225443,53.16556044563257],[-127.00884275954981,53.165692639809826],[-127.00902513159728,53.16583563141067],[-127.00916661977143,53.16599353790229],[-127.00927836132023,53.16616066191904],[-127.00938821523224,53.166327801917504],[-127.00949808500006,53.166494941671004],[-127.00960143070704,53.166663813237484],[-127.00969077175773,53.16683505413627],[-127.00977080069819,53.16700805067037],[-127.00988439241866,53.167174593547145],[-127.01002963715291,53.167331911138625],[-127.01014230146396,53.167498461666916],[-127.0102213892147,53.167671465890926],[-127.010293023439,53.167846218905815],[-127.01035717709712,53.16802159148064],[-127.0104390696288,53.16819457158871],[-127.01053868947919,53.168364038784325],[-127.01070874545384,53.16850096557105],[-127.01077885726069,53.16869029786424],[-127.0108793837119,53.168858071762216],[-127.01093802741629,53.169037973043935],[-127.01105721011436,53.16920279067265],[-127.0112163906021,53.169354940944494],[-127.01141821155052,53.16948767807165],[-127.0116375869027,53.169609624501845],[-127.01183571658929,53.169744633480015],[-127.01202828005401,53.16988193072654],[-127.01225042195354,53.17000216713304],[-127.01251298244199,53.17008844219306],[-127.01279371802758,53.1701510305058],[-127.0130130186488,53.170270169290916],[-127.01318614971473,53.1704171507812],[-127.01334718931642,53.17056816177299],[-127.01349338793361,53.170725466868674],[-127.01364329474528,53.17088105478652],[-127.01379134223164,53.17103721420411],[-127.01399518722356,53.17117553216719],[-127.0141383170958,53.17132221341955],[-127.0143365701754,53.17146169920148],[-127.01456979503546,53.17157455750438],[-127.01479196636213,53.17169534468954],[-127.01499010254796,53.17182979257723],[-127.01510837949209,53.171994613843765],[-127.01508035408848,53.17215452210466],[-127.01501217041695,53.17231982138778],[-127.01488988630899,53.172496233668404],[-127.01470493424162,53.172637882398405],[-127.01457291617737,53.17279924638307],[-127.01451715685843,53.1729750791755],[-127.0145167902233,53.173154928300754],[-127.0145473208994,53.17333394792824],[-127.0145722302928,53.17351301570055],[-127.01458309181108,53.17369275959892],[-127.01456397328452,53.17387220460099],[-127.01457856928015,53.17405136069403],[-127.01462500946981,53.17422912338936],[-127.01470786257185,53.174401536207974],[-127.01483174041978,53.17456518906649],[-127.01499838296571,53.17471446439237],[-127.01519189543075,53.17485119249658],[-127.01539839357281,53.1749816416577],[-127.01560117038264,53.175113798657165],[-127.01578729992826,53.175254506406894],[-127.01596322418354,53.17539978345431],[-127.01612802718526,53.1755502024392],[-127.01627143472308,53.1757075189011],[-127.0163822855054,53.1758746434318],[-127.01647728339516,53.17604470968742],[-127.01656949030045,53.17621591136109],[-127.01664489958335,53.176390062922074],[-127.0166913226771,53.17656726905275],[-127.01671438240663,53.1767469078054],[-127.01672152106595,53.17692669220529],[-127.01670145208159,53.177105580727485],[-127.01667106857427,53.177284566749904],[-127.01664444762902,53.17746351147743],[-127.01662064357095,53.177642996730775],[-127.0166052649815,53.17782240962679],[-127.01659832696033,53.17800175004021],[-127.01659702460377,53.17818160678797],[-127.01662381958477,53.17836065756724],[-127.0166936509749,53.17853653309066],[-127.01688067490517,53.178674990331366],[-127.01712405916894,53.178779348048934],[-127.0173435110729,53.17890240369138],[-127.01749160027639,53.179058557799564],[-127.01753429663736,53.179235795419224],[-127.01747194733308,53.17941056513997],[-127.01730211483768,53.179558254555154],[-127.0170762598512,53.17967616229657],[-127.01682365458298,53.1797730186679],[-127.01658439571972,53.179879279716864],[-127.01652763703856,53.180052880340945],[-127.01651320174746,53.18023228488182],[-127.01651752141576,53.180412093148426],[-127.01651716300275,53.18059193258944],[-127.01649052454798,53.18077088605146],[-127.0164779630302,53.18095027443107],[-127.01647573026095,53.181130129906144],[-127.01648285365222,53.18130991402062],[-127.01646279514392,53.181489366693185],[-127.01643522607206,53.18166831907224],[-127.01643299329852,53.181848183438525],[-127.01643636796709,53.18202799069554],[-127.01643317700314,53.182207298517234],[-127.01641782451748,53.182387275431985],[-127.01640338796437,53.18256667973202],[-127.01641519086151,53.18274585881522],[-127.01644947145158,53.182924280230026],[-127.01638997160983,53.18310070972484],[-127.01635489071695,53.18327917061541],[-127.0163207391744,53.18345762350055],[-127.01627437167,53.183634504912355],[-127.01626836237972,53.183813272017645],[-127.01631107033032,53.18399163001994],[-127.01635940302693,53.184169374990184],[-127.01635340593678,53.184349262446986],[-127.01627169717412,53.1844984345131],[-127.01630043628748,53.184680264862145],[-127.0163181462022,53.184832501037675],[-127.01654640559741,53.184969484203584],[-127.01680419781668,53.1851258266377],[-127.01676474664856,53.18531777098419],[-127.01667667145117,53.18547539717591],[-127.01655936173448,53.18562543070506],[-127.01626729956689,53.185798253216035],[-127.0162598744256,53.18595742798318],[-127.01635903175206,53.18614425644229],[-127.01622789564762,53.186304492711386],[-127.01598669703229,53.18640964798977],[-127.01569520230377,53.18645024509753],[-127.01540475155966,53.18641687954231],[-127.01512002423641,53.18646638120904],[-127.01491161855397,53.18657069742541],[-127.01471574649293,53.186729245627404],[-127.01447839802543,53.18683884676964],[-127.01422285909624,53.18693235146555],[-127.01394511124421,53.18699916270616],[-127.0136722155029,53.187073210521284],[-127.01341187240698,53.1871622725484],[-127.01320026007517,53.18728957883],[-127.0130076175312,53.187426806960346],[-127.01283015893154,53.18757119263931],[-127.01280064241438,53.18774791907266],[-127.01335004283528,53.18771184596176],[-127.01364770876725,53.18769361190717],[-127.01394556239111,53.187683218986926],[-127.01424291585185,53.1876907575807],[-127.01453802792318,53.187722409835786],[-127.01483316709437,53.18775517266155],[-127.01513161224749,53.18776942267002],[-127.015430826008,53.1877769423446],[-127.01572927151595,53.187791190847],[-127.0160208516779,53.187831833703136],[-127.01627802804542,53.1879231845421],[-127.01651967028985,53.188030919866236],[-127.01674283664069,53.18815058302523],[-127.01695585001015,53.18827649120276],[-127.01716241911798,53.18840693633675],[-127.01736527936256,53.188539653966856],[-127.01755612569167,53.188679197455585],[-127.01773404026954,53.1888266952444],[-127.01795156511834,53.188944719383315],[-127.01822806361285,53.189020777715314],[-127.0185036467096,53.18909739904595],[-127.01871650822389,53.189216582391175],[-127.01890450377671,53.18935390724121],[-127.01908141375863,53.1894986148939],[-127.01925096306243,53.18964842338277],[-127.01941866439014,53.189799923797665],[-127.01958821609573,53.18994973177939],[-127.01976514430253,53.19009499401635],[-127.01994951964647,53.1902373950983],[-127.02014774544686,53.19037126838703],[-127.0203617099312,53.19049716228077],[-127.02058399716738,53.19061793735613],[-127.02080811983829,53.19073701993428],[-127.02103962065154,53.19085100073233],[-127.02125835176538,53.19097964869414],[-127.02142405726426,53.191125005216456],[-127.02147047586088,53.19130052317835],[-127.02148052280513,53.191483642482844],[-127.02148957227229,53.191663964643666],[-127.02149483045437,53.19184319898303],[-127.02164736339668,53.19198642775763],[-127.02180944514485,53.192137417450326],[-127.02198455751584,53.19228381250662],[-127.02220497066483,53.19240404494649],[-127.02244661152247,53.19251064778377],[-127.022668888207,53.192630298551585],[-127.02287364858364,53.19276186986697],[-127.02309225989536,53.192884921953215],[-127.02334304879253,53.19298191525535],[-127.02361305649303,53.19305913773368],[-127.02389396093822,53.193121698946136],[-127.0241757568221,53.19318201079491],[-127.02444758777484,53.19325697462784],[-127.02470941342688,53.19334491459832],[-127.02494552454237,53.19345435698141],[-127.02519541856687,53.19355248360283],[-127.02545178613168,53.193647183206565],[-127.02566485309903,53.19377307534787],[-127.02579437280151,53.193933305533236],[-127.0259081151197,53.19409983942799],[-127.02599010802948,53.19427224171324],[-127.02603192394754,53.19445003864113],[-127.02602034371822,53.19462941851904],[-127.02605839706578,53.19480669222871],[-127.02627049960319,53.19493147112424],[-127.02647335315132,53.19506081177249],[-127.02649171561804,53.195238246973446],[-127.02629994335624,53.195372127158166],[-127.02606546418221,53.19548453171161],[-127.02591345459689,53.19563430954957],[-127.02590094232086,53.19581426209579],[-127.02589217939813,53.19599417319004],[-127.02588433284777,53.19617352056389],[-127.02587556999734,53.19635344058409],[-127.02586587692319,53.1965333596768],[-127.02585428042043,53.19671273946684],[-127.02584364245203,53.196892675667364],[-127.02583486558557,53.197072031003614],[-127.02581956118442,53.197252563337955],[-127.02581172756915,53.197432466234524],[-127.02583293554326,53.19761100611667],[-127.02587014212708,53.19779163947247],[-127.02592138999769,53.19797159544561],[-127.02599593160367,53.19814574718184],[-127.02610397968377,53.19830896844265],[-127.02628381233758,53.198455316124004],[-127.02650904480343,53.198579416043266],[-127.02676891174896,53.19866176602804],[-127.02705726258347,53.19872032916425],[-127.02730991593123,53.19881506595324],[-127.02754607802842,53.19892506744125],[-127.02777951656812,53.19903900934032],[-127.02801661112588,53.1991490018095],[-127.02826291841056,53.199252190880735],[-127.02852388635692,53.19934125046663],[-127.0288047852851,53.19940155930595],[-127.02910746243847,53.19943198071476],[-127.02941456107742,53.19945172271438],[-127.0297060342266,53.19944527256917],[-127.02995144578448,53.19935741701739],[-127.03011351376973,53.199197462377306],[-127.0302134483624,53.19902683387267],[-127.03030485565994,53.198852926894695],[-127.03044075264806,53.198696551849835],[-127.03064373573994,53.198560891431555],[-127.03088775981618,53.198454562203175],[-127.03115497707795,53.19837716349437],[-127.03143850654831,53.19831474437568],[-127.03172791971134,53.198262922529004],[-127.03201755084613,53.19822006204139],[-127.03231414774073,53.19819339182667],[-127.03261178341222,53.19817118483473],[-127.03291245632754,53.19815847931633],[-127.03319900698841,53.19810443781016],[-127.03348053361533,53.19803699346572],[-127.0337276262223,53.197941836472786],[-127.03390690473917,53.197796292642444],[-127.03409477714582,53.19765683175953],[-127.03436860796238,53.19758160894182],[-127.03465816313478,53.19753593685669],[-127.03495583417758,53.19751540883676],[-127.03525495726866,53.19751560106718],[-127.03555351918867,53.19753147545235],[-127.035850357438,53.197553531377814],[-127.03614376190308,53.1975885068013],[-127.03643722153728,53.19762571305093],[-127.03673237821837,53.197655624972136],[-127.03703003803837,53.197673188772114],[-127.03732252798115,53.197708725062135],[-127.03760709598758,53.19776561948043],[-127.03783844209464,53.1978319434515],[-127.03815720010485,53.19790646501268],[-127.03843228593988,53.19795895856234],[-127.03857509637689,53.19797059692781],[-127.03876731496659,53.198008684914576],[-127.0390182576281,53.19803225584346],[-127.03935239333236,53.198045576671426],[-127.03969071315072,53.19803868190482],[-127.03991111417241,53.198002576784994],[-127.04016198992376,53.19794714625385],[-127.04036284176448,53.19787871745937],[-127.04048749659445,53.197838405282745],[-127.04071338306748,53.19772044509714],[-127.04095555611457,53.19761691681114],[-127.04121301773661,53.19752444967422],[-127.041500428273,53.19746813938598],[-127.04166239261816,53.1974583161539],[-127.04179009247625,53.19746559253898],[-127.04208543983749,53.19754087417687],[-127.04236819343491,53.197600014169694],[-127.04265451801724,53.19765183433715],[-127.04294621962731,53.197693530951376],[-127.04324453699871,53.197699303648314],[-127.04354323182605,53.19768267124367],[-127.04383381961067,53.19764089379063],[-127.04412335124901,53.197594642928216],[-127.04441899094918,53.197567941768675],[-127.0447162245518,53.19756812677341],[-127.04481759085574,53.197609811845446],[-127.0447704580239,53.19771386926013],[-127.04454824972606,53.19782844335209],[-127.04433681607141,53.19796140579185],[-127.04410232760766,53.198072716797206],[-127.04388124018887,53.19819455846871],[-127.04378790483196,53.19836402043737],[-127.04382885463497,53.19854181901138],[-127.04392401356057,53.19871185218693],[-127.0439687141923,53.19888961763744],[-127.04395251389793,53.1990690402034],[-127.04383469162124,53.19923423588435],[-127.04367246816463,53.19938581185519],[-127.04350168803516,53.199532980952064],[-127.04329579728406,53.19966365149167],[-127.043067061082,53.19977995630885],[-127.04295005264593,53.19994065287802],[-127.04295526683394,53.199999993372465],[-127.04296666788764,53.200119786290855],[-127.0430095185886,53.20029868872896],[-127.04310750272886,53.20043116534127],[-127.04331194883399,53.20054646169579],[-127.04355460677601,53.200651892429555],[-127.0437751385542,53.2007726398351],[-127.04396703085771,53.2009104556166],[-127.044140379899,53.20105738952322],[-127.04429793814751,53.201210073808255],[-127.0444471499995,53.20136618398565],[-127.0445842506879,53.201525771205084],[-127.04470460107848,53.20169054371183],[-127.04479696442066,53.20186116537188],[-127.04484074200086,53.202038938393585],[-127.04482454419957,53.20221836077478],[-127.04476042635022,53.202394279466276],[-127.04465486283222,53.202562164279975],[-127.04450017040338,53.20271591562066],[-127.04430665676675,53.202854321950404],[-127.04406635101262,53.20295840487865],[-127.043801472573,53.203055425032716],[-127.04352373979386,53.203087004276206],[-127.04320554945328,53.20307579549003],[-127.04290627779388,53.20307058654343],[-127.04260646171691,53.20308163330696],[-127.04232169536694,53.20313287581114],[-127.0420776052335,53.203235867428596],[-127.04186599769024,53.20336378854694],[-127.04166009823719,53.20349445584321],[-127.04145133576182,53.203623462700705],[-127.04124350232107,53.20375246997007],[-127.04103569629233,53.203882032379724],[-127.04082883275952,53.20401214189127],[-127.04062289827073,53.204142251826205],[-127.04041699118692,53.20427291690789],[-127.0402120266007,53.204404129102706],[-127.04000800473332,53.20453589737759],[-127.03981821850368,53.20467426332398],[-127.03963319555649,53.204815392870785],[-127.03944817003061,53.20495707789484],[-127.03927831147834,53.20510478781807],[-127.03913589690329,53.20526290598123],[-127.03902463561374,53.2054297147344],[-127.0389303622222,53.20560030062545],[-127.03883703185282,53.205771433916844],[-127.0387257680465,53.205938242343784],[-127.038578626515,53.206094715938015],[-127.03838313408771,53.20623033262982],[-127.03815623665066,53.206347731506675],[-127.03792745016106,53.20646402598417],[-127.03773865766449,53.20656707961159],[-127.0376073087942,53.20675647260743],[-127.0375188176029,53.206933729502744],[-127.03739534956611,53.20710007863016],[-127.03736951745479,53.207232522875465],[-127.03751150171419,53.20743857090298],[-127.03762997987954,53.20760393109781],[-127.03767838782156,53.20777998024005],[-127.03767436729129,53.207960414663624],[-127.03767315365133,53.20814026872646],[-127.03769162514173,53.20831938566824],[-127.03769509231446,53.208499189744764],[-127.0376760561269,53.208678635093875],[-127.03765418553394,53.208857549476505],[-127.03763983004059,53.2090369537969],[-127.0376357953708,53.209216823491495],[-127.0376383323872,53.20939664459026],[-127.03764181442509,53.20957644843334],[-127.03764435148868,53.20975626949746],[-127.0376468883539,53.209936081582185],[-127.03764471545253,53.210115379125014],[-127.0376256783236,53.210294824310736],[-127.03760662602933,53.210474269607566],[-127.03758946406121,53.21065369833225],[-127.03757230079873,53.210833691774226],[-127.03755606878707,53.211013112315136],[-127.03754171214564,53.21119251641671],[-127.03752923089829,53.21137190407981],[-127.03752238975146,53.21155179810941],[-127.03752681559249,53.211732158210076],[-127.03755934707864,53.21191115174617],[-127.03766752995634,53.21207660175199],[-127.03782789786074,53.21222870456555],[-127.03800962334236,53.212371656184786],[-127.03820061785171,53.212510044370184],[-127.03839532337552,53.21264671451753],[-127.03860207767363,53.212777120548395],[-127.03882453435257,53.212897868908264],[-127.03906722445768,53.213002187885834],[-127.0393355818597,53.2130821862805],[-127.0396211036964,53.21313570649097],[-127.03991552326578,53.2131689791371],[-127.04021167997148,53.21319719808819],[-127.04050856159455,53.213216437058215],[-127.04080733298423,53.213236223417574],[-127.04109819608759,53.213277367798426],[-127.04138014973522,53.21333820280582],[-127.04165123806558,53.21341425477233],[-127.04190405320931,53.21351063558235],[-127.0421255926514,53.213631376915565],[-127.0423193709339,53.213768057808736],[-127.04248998864884,53.21391613804115],[-127.04262249631479,53.214078008129505],[-127.04268125490813,53.214254528536785],[-127.04262461248723,53.21443037893376],[-127.0424641883437,53.214581379873515],[-127.04225729077807,53.214712055737564],[-127.04201121535732,53.214813942960205],[-127.04174207971465,53.214893057844805],[-127.0414699979776,53.21496716027718],[-127.04120279010276,53.21504906267706],[-127.04093943030814,53.215134292130685],[-127.04068952905256,53.21523341339908],[-127.04047213469217,53.215356890537315],[-127.04026806078295,53.215488658487665],[-127.04006779346383,53.2156220778764],[-127.03987226154028,53.2157576873717],[-127.03967960341714,53.215896077016176],[-127.03949262763165,53.216036101703914],[-127.0393094419181,53.21617832485228],[-127.03912911749028,53.216322207823474],[-127.03897909288582,53.216477594495274],[-127.03888951773013,53.2166498141931],[-127.03888359936995,53.21682857926234],[-127.0388983271225,53.217008292801594],[-127.03891588981838,53.217188537235565],[-127.03892404622654,53.217367743612805],[-127.0388768193633,53.21754519443526],[-127.03880983367505,53.21772057741746],[-127.03872022767084,53.217891676628135],[-127.03860426313022,53.218059080531994],[-127.0385626054339,53.21823480609922],[-127.03855485103381,53.21841527228517],[-127.0385592681271,53.218595067083214],[-127.038581498492,53.218774714749],[-127.03861684727212,53.21895311799892],[-127.03867184419671,53.21912967280813],[-127.03873620726456,53.219305589741225],[-127.03875654900578,53.2194846891418],[-127.03877409825184,53.21966436875598],[-127.03876724740647,53.219843706420605],[-127.0387341202601,53.22002271857026],[-127.0386423219587,53.22033389728298],[-127.03853857891981,53.220502314240555],[-127.03840083341076,53.22066207404261],[-127.03823185242742,53.2208103376782],[-127.03806003634107,53.22095750539408],[-127.03792228732028,53.22111725563943],[-127.03784962299719,53.22129101113858],[-127.03784078198463,53.221465884046495],[-127.03793083563913,53.22165613359691],[-127.03801064262873,53.221811746760025],[-127.0379921057787,53.2219738144931],[-127.03791273039822,53.22214146156417],[-127.03786141074171,53.22230606620457],[-127.03780416126125,53.2224578326785],[-127.0377715011107,53.22257968655904],[-127.03766093735841,53.2227005461277],[-127.03750604644806,53.222811709196506],[-127.0373114324253,53.22294787027511],[-127.03718028906431,53.223109246811525],[-127.03710386617801,53.223283034497435],[-127.0370707154397,53.22346148125276],[-127.03705351706321,53.2236403441868],[-127.03698181785346,53.22381521089122],[-127.03687049923273,53.223982015969895],[-127.03670718280945,53.22413246842666],[-127.0365163672521,53.224270835774895],[-127.03632081139511,53.22440755902904],[-127.03610431531786,53.224532148622124],[-127.03590394932758,53.22466443126101],[-127.03581804161632,53.22483437461659],[-127.03580257763115,53.225007063867814],[-127.03581057146678,53.225180112867186],[-127.03581518360389,53.225368313411174],[-127.0358175214505,53.225540282350686],[-127.03581038257468,53.225708416873466],[-127.03574550828928,53.2258944277402],[-127.0356429698884,53.226037059865455],[-127.03546771436265,53.226198263685816],[-127.03523592255222,53.22631177129887],[-127.03496575564328,53.22639088753186],[-127.03468063102993,53.22643426934988],[-127.03438713914296,53.22648052916324],[-127.03409134570357,53.22650944535965],[-127.03379756483362,53.226543936700644],[-127.03350782360421,53.22659016161364],[-127.03323563855608,53.226663689043214],[-127.03301146632347,53.22678217243849],[-127.03285382229969,53.22693536644064],[-127.03274910817758,53.22710435058007],[-127.03271403246116,53.22728169185772],[-127.03277278182559,53.22745878053652],[-127.03282775160888,53.22763477265722],[-127.03275035822931,53.22780800062495],[-127.03262956280425,53.2279720869665],[-127.03247854211101,53.22812746359146],[-127.03229528061163,53.228269683946756],[-127.03207207022292,53.22838927747171],[-127.03180081528963,53.228463349075206],[-127.03152284944272,53.228531311322435],[-127.03125646863236,53.22861262684169],[-127.03099881065363,53.22870506171371],[-127.03076410295566,53.22881578885265],[-127.03056849391436,53.22895194664923],[-127.03040230158969,53.229101294181895],[-127.03022187816208,53.229244606974056],[-127.03003197625117,53.22938407566356],[-127.02985249455749,53.229527935426155],[-127.02968820106291,53.22967838585444],[-127.02953620424964,53.229833211164824],[-127.02939839408492,53.229992950752006],[-127.0292728687425,53.2301559539054],[-127.02915962789892,53.23032220273963],[-127.02903881134772,53.230486285204265],[-127.02888776847021,53.23064165704846],[-127.02873198522883,53.230795393574695],[-127.02857620085409,53.23094912988378],[-127.02842513982876,53.23110451019275],[-127.02828354274885,53.23126260491887],[-127.0281598992633,53.23142614615019],[-127.02805233311574,53.2315951502109],[-127.02794856121736,53.23176524173247],[-127.02783529584103,53.23193148929039],[-127.02769743314988,53.23208899507671],[-127.02751616452812,53.23223734831683],[-127.02729393207669,53.232360285246884],[-127.02703206779246,53.23243538460606],[-127.02673552664841,53.23247436374133],[-127.02644009416679,53.232520064344286],[-127.02617361032152,53.23259856319364],[-127.02591298593765,53.23268653028653],[-127.02565623586798,53.232779509896915],[-127.0254023749508,53.23287526961965],[-127.0251475806167,53.23297159260931],[-127.02489178503589,53.233065682742854],[-127.0246330996044,53.23315643586038],[-127.0243696070321,53.233242183315014],[-127.02410512702332,53.23332626247054],[-127.02383970020657,53.233410349198714],[-127.02357714886259,53.23349665144488],[-127.02332520968939,53.23359463096424],[-127.02307895156639,53.23369535761787],[-127.02278913592156,53.23374099156093],[-127.0224902730658,53.2337614966421],[-127.02219102919813,53.23376688234808],[-127.02189184079249,53.23377394304776],[-127.02158657441925,53.233763127790446],[-127.02130420679117,53.233767236422246],[-127.02099678447762,53.23382254610934],[-127.02071946846536,53.23388040149801],[-127.02042713790716,53.23393894119575],[-127.02013036303593,53.23392972533495],[-127.01982644497724,53.23385783267718],[-127.019559841864,53.23377664566026],[-127.01926976399915,53.2337337648651],[-127.0189709658468,53.233718405392494],[-127.01867300565745,53.233698556080796],[-127.01837670466767,53.23367028374914],[-127.01807886665316,53.23365547850661],[-127.01777967672004,53.23366308459972],[-127.01748479438993,53.233693071377786],[-127.01719991278426,53.233749298235495],[-127.0169218886956,53.23381722606154],[-127.01664966857048,53.2338923910114],[-127.01638612848458,53.233977009413934],[-127.01613990547057,53.234079962117725],[-127.01590610170106,53.23419177166385],[-127.01564737651239,53.23428194052319],[-127.01537031933496,53.23435098579404],[-127.01509323267727,53.23441946594233],[-127.01488130806723,53.23454341128774],[-127.01474627639892,53.23470422952902],[-127.01460458773444,53.234861752105985],[-127.01437639633973,53.234933729310185],[-127.01406366778916,53.234963860127344],[-127.01380106340604,53.23501035967732],[-127.01353829891602,53.235049581433024],[-127.01327766974356,53.23506077259947],[-127.0130034345394,53.23505247568064],[-127.01274697623768,53.23496390820572],[-127.01248578141353,53.23487313968385],[-127.01225591225084,53.234758008590894],[-127.0120426652895,53.23463153945125],[-127.01182850213888,53.23450563350184],[-127.01158297359177,53.2344029599087],[-127.01130375665956,53.234343159965796],[-127.0110091868291,53.234308131652995],[-127.01071214369912,53.23428769876886],[-127.01041331795702,53.23427119749612],[-127.01011385450879,53.234267581827496],[-127.00981462049732,53.234272936172474],[-127.00951546495753,53.23428220625609],[-127.00921632429883,53.234291475457134],[-127.00895855136851,53.23434352551771],[-127.00873923975969,53.234395256789995],[-127.00849293879509,53.2344561719887],[-127.00822988198566,53.234522840449614],[-127.0079921813654,53.234629620706805],[-127.00776416970386,53.2347492080053],[-127.00757090341848,53.23483040366992],[-127.00736223669348,53.23489548752361],[-127.00722694620447,53.23500699848727],[-127.0069186609262,53.23510597701988],[-127.00667523065682,53.23520888604309],[-127.00649126617294,53.235325855919264],[-127.00620503211675,53.23544425805529],[-127.0060226095153,53.23558698485744],[-127.0058354333219,53.235727510742485],[-127.0056025255532,53.23583872725097],[-127.00534480592472,53.235933355589225],[-127.00524540284002,53.23609442519718],[-127.00525906323,53.23627413998774],[-127.00526239649618,53.236453386555],[-127.00520840452978,53.23662975765016],[-127.00509128355885,53.236796023825],[-127.00496374073515,53.236957887351245],[-127.00480595729738,53.237111052186165],[-127.0046434484698,53.23726257163977],[-127.00447903335728,53.23741354228061],[-127.00431652219422,53.237565061262146],[-127.00415683082336,53.237717120837],[-127.00400471156114,53.23787191275127],[-127.00386202797242,53.23802886550714],[-127.0037581012845,53.238197815157086],[-127.00368444248925,53.2383760280035],[-127.00359655381453,53.23854820312629],[-127.00345092419458,53.23870014261643],[-127.00325986737467,53.23883565027477],[-127.00304514305252,53.23896295877836],[-127.00282283063603,53.239086969643516],[-127.00260904799286,53.239214834070246],[-127.00240097571752,53.239345446506384],[-127.00219005291252,53.23947496218158],[-127.00198671564209,53.23960777476708],[-127.00180044073124,53.23974772139229],[-127.00164069211593,53.23989809256257],[-127.00149989626033,53.24005614669782],[-127.00137143723865,53.24022026351267],[-127.00125336010383,53.2403865244807],[-127.00114092589303,53.2405533023872],[-127.00109158453151,53.24072851131413],[-127.00105544525621,53.240906970156615],[-127.00103716978741,53.24108639865111],[-127.00106113094716,53.241265470618906],[-127.0011468545603,53.24143729843025],[-127.00132856837254,53.241579748417884],[-127.00155475740165,53.24169772809475],[-127.00178832240807,53.24181004272162],[-127.00198952887756,53.24194279862482],[-127.00209113903706,53.24211113012657],[-127.00213570957835,53.242288907222665],[-127.00213809728588,53.242468716941076],[-127.00212545649237,53.242648097877776],[-127.00212033668625,53.24282797996057],[-127.00209642071597,53.243006891413636],[-127.00207909473811,53.243186311877714],[-127.00213109444526,53.24336066472638],[-127.00240673718979,53.24342612786214],[-127.00270386713503,53.243447701689966],[-127.003002794765,53.24346590714787],[-127.00328570773617,53.24352121364119],[-127.00344219925576,53.24366779086542],[-127.0034811462127,53.24384561494995],[-127.00345256390084,53.2440251308182],[-127.00345210792861,53.24420385295401],[-127.00353209821289,53.24437012510181],[-127.00376335253094,53.24450317947651],[-127.00391906305461,53.24465648542506],[-127.0040001467667,53.24482947075962],[-127.00406252759373,53.24500541999504],[-127.00414173553352,53.24517842109098],[-127.00424432128419,53.245347298090074],[-127.00436650299486,53.245511536173716],[-127.00443823155574,53.24568572083997],[-127.00449125659645,53.24586286052326],[-127.00449442595212,53.24603594951639],[-127.00447270171317,53.24622773244638],[-127.00447211844522,53.246400288473275],[-127.00446229451427,53.24657964550755],[-127.00444966235906,53.24675902630445],[-127.00443139877419,53.24693845476984],[-127.00443191939969,53.24711827989826],[-127.00443807161304,53.2472980662848],[-127.00443108374563,53.247477954961674],[-127.00438851028574,53.24766151529683],[-127.00433343611616,53.24783229166156],[-127.00421343236988,53.24799689493349],[-127.00413492485487,53.24816954576014],[-127.00408657134528,53.24834698781977],[-127.00405231538254,53.248525430970716],[-127.00402371912531,53.24870439089923],[-127.00399510739526,53.24888334196926],[-127.00396556454362,53.24906230985796],[-127.00393696734245,53.249241260753266],[-127.00390742399419,53.24942022859386],[-127.00387975740854,53.24959917156188],[-127.00381350671957,53.249774523895674],[-127.00378582630054,53.24995291117234],[-127.00377790431367,53.25013281640145],[-127.00374930399096,53.25031233187598],[-127.00363681318522,53.25047742644742],[-127.00350359187799,53.25063934384987],[-127.00343262569403,53.25081361528036],[-127.00342749705246,53.25099293205105],[-127.00346461503565,53.25117189144369],[-127.00346041762916,53.251351200305606],[-127.00349376802987,53.25152962681835],[-127.00352243131715,53.251708657668935],[-127.00352294834494,53.25188849131364],[-127.0034651747166,53.25206489194668],[-127.00335081420175,53.25223056657298],[-127.00322231193898,53.25239411974644],[-127.00311360825735,53.25256086671896],[-127.00304922871999,53.252735637755215],[-127.00300841492523,53.25291470028583],[-127.00298332657701,53.25304432074551],[-127.0030657261005,53.253272197341246],[-127.00307179358569,53.25344862252259],[-127.00297359101764,53.25362312365534],[-127.00278145257133,53.253755841382045],[-127.0025275598799,53.25385770786846],[-127.00225710218191,53.253934498987846],[-127.00197407409443,53.253996273967445],[-127.00172093663002,53.25409085382271],[-127.00147650620634,53.25419599947472],[-127.001209945456,53.25427892225296],[-127.00095007992228,53.25436739021137],[-127.0007428325473,53.254496870611064],[-127.00070008990306,53.25467426319077],[-127.00072030242056,53.254853365624164],[-127.00070203265854,53.25503334838955],[-127.00069594566439,53.25521267262792],[-127.00067766247888,53.25539209972097],[-127.00068286868141,53.25557189337791],[-127.0006824271943,53.25575172569122],[-127.00067540876915,53.25593105771587],[-127.00064584692232,53.25611002411774],[-127.00049094839629,53.25623009870333],[-127.00025119431373,53.256136881640884],[-127.0000010278834,53.2560403904988],[-126.99969875945175,53.25592472543375],[-126.99940155641923,53.25590369985385],[-126.99910544016446,53.255928603025524],[-126.99882817412293,53.25599592403344],[-126.9985202489851,53.25599796031648],[-126.99841320430069,53.25599774074717],[-126.99823494007464,53.256043494271324],[-126.99796277987605,53.256049145281146],[-126.99780993368047,53.25601793770329],[-126.99770132766734,53.25595162381207],[-126.99760720770983,53.255901994830054],[-126.99745580340162,53.25585229165943],[-126.997170613133,53.255823316325596],[-126.99686354279036,53.255821415062485],[-126.99656409963629,53.25582505120822],[-126.99626681959312,53.25580065707833],[-126.99596727257597,53.25579924606535],[-126.99567422786271,53.25583531941903],[-126.9953911265351,53.25589428240683],[-126.99509615037336,53.25592812961846],[-126.99481984866543,53.25599710931627],[-126.99455229276985,53.25607834899898],[-126.99429147097156,53.25616681009591],[-126.99403737010188,53.256261937015324],[-126.9937601068689,53.25632980180325],[-126.99346504730792,53.256360284254406],[-126.99318966025395,53.256428140945594],[-126.99296746019796,53.2565224337602],[-126.99278272500449,53.25669204770297],[-126.99260109654884,53.25683474447196],[-126.99238809983582,53.256960896537],[-126.99216844588811,53.25708318677114],[-126.9919877203974,53.25722418982894],[-126.99182601948141,53.25737568233117],[-126.99165578186341,53.257523884587094],[-126.99149028408767,53.25767373212722],[-126.99133993717032,53.25782904611855],[-126.99121704549002,53.25799365884931],[-126.9910846446224,53.258153869057566],[-126.99088593662702,53.25828886249966],[-126.99071285682616,53.25843596655898],[-126.99048257991943,53.25854657295498],[-126.99019943815065,53.258605523596806],[-126.98993183037649,53.258685623555614],[-126.98964473464827,53.25873619798054],[-126.98928786555197,53.25873413655981],[-126.98898988703834,53.258720369723854],[-126.98870501334834,53.25866504522007],[-126.98843554197406,53.25858605329198],[-126.98816517972578,53.25850875333479],[-126.98790760818679,53.258416224661765],[-126.98766385225493,53.258311811212664],[-126.9874320849817,53.25819833388533],[-126.98719845433241,53.25808542735692],[-126.98694732070892,53.25798724079631],[-126.98668244079455,53.257903169181105],[-126.98640387992023,53.25783601748534],[-126.9861154564572,53.25778911522836],[-126.98581659163321,53.257777588748596],[-126.98551735596085,53.257790723475985],[-126.98521803038439,53.25779936742775],[-126.98491995344058,53.25778167415245],[-126.98463323993595,53.257727475666194],[-126.98435289716552,53.2576642510688],[-126.98407540336484,53.25760268734104],[-126.98380937901054,53.257671000109326],[-126.98367142470387,53.25783517395367],[-126.98355698386783,53.258001384629715],[-126.9834226894535,53.25816216644951],[-126.98323548345401,53.25830825603644],[-126.98299377104401,53.258372439368884],[-126.98272958223708,53.25827714876812],[-126.98245996836546,53.25819143081191],[-126.98217871863417,53.25812989376083],[-126.98189835082258,53.25806554314318],[-126.98160823544538,53.25802648711376],[-126.98130776597112,53.25802673175339],[-126.98100952548927,53.25804208775226],[-126.98071347435022,53.25807086133254],[-126.98042446814618,53.25812030874987],[-126.98015585969837,53.2581987186291],[-126.97991036662215,53.258302151566575],[-126.97968781942923,53.25842331273509],[-126.97950614142394,53.25856543356678],[-126.97938317336661,53.258729469501304],[-126.97930551692481,53.25890322430054],[-126.97924951021437,53.25907959698644],[-126.97920573920027,53.259257544836686],[-126.97916386071874,53.259435485996576],[-126.97914829324063,53.25961488618688],[-126.97912990351864,53.25979374494108],[-126.97912091521168,53.25997309079945],[-126.97913070387004,53.260152281690964],[-126.97909729235036,53.260331273311614],[-126.97906009892876,53.260509166699016],[-126.9790257423855,53.260687601353695],[-126.97896313967364,53.260863472393524],[-126.97888640873295,53.26103721007912],[-126.97880497741524,53.26121043072671],[-126.97869898973099,53.26137825161174],[-126.97855240311772,53.26153632318398],[-126.97832880001107,53.261653017310934],[-126.97812327342366,53.261780201751954],[-126.97805121144418,53.26195334454321],[-126.97808917578082,53.262132858798026],[-126.97822434513047,53.26229253307577],[-126.97831751880506,53.26246319320797],[-126.97840134104557,53.262636171258045],[-126.97853001311243,53.2627986953755],[-126.97873859984057,53.262925261680635],[-126.97895569772628,53.26305400725946],[-126.97901596725008,53.26322325311935],[-126.97907353209534,53.26339701200149],[-126.97921713895904,53.26355605078463],[-126.97933366819568,53.26372147083874],[-126.97941375637795,53.263894478933004],[-126.9794705332274,53.2640749667609],[-126.97966497449237,53.26419828685069],[-126.9799409392734,53.264273318961],[-126.98020948459043,53.264352337764336],[-126.98045973305973,53.26445223090705],[-126.98070626583583,53.264553830421825],[-126.98097150097142,53.26465192244921],[-126.98101276751694,53.264811240320654],[-126.98098505900153,53.26499298155909],[-126.98098360228992,53.265172829571384],[-126.98097651155355,53.26535271517787],[-126.98097221725091,53.26553202190897],[-126.98097831120195,53.265713483637796],[-126.98088552072207,53.265882882113544],[-126.98064945241727,53.26598959027956],[-126.98037214100611,53.26605967298253],[-126.9801073808068,53.26614420818167],[-126.97987717717174,53.266260959295245],[-126.97974374988998,53.26642004361882],[-126.97973850566069,53.266598793300474],[-126.97972388449433,53.26677818508328],[-126.97967258471421,53.266955083018864],[-126.97962599781,53.26713305348839],[-126.97960855143508,53.26731246852362],[-126.9796005100879,53.267491805903575],[-126.97959341327808,53.26767170017267],[-126.97959758447799,53.26785149244876],[-126.97958577184852,53.26803086090629],[-126.97955705869187,53.268209813105685],[-126.97953680198596,53.26838925122066],[-126.97953814838597,53.26856906674603],[-126.97950758256296,53.26874915461335],[-126.97958286118835,53.26891715544753],[-126.97952115607265,53.269091333393256],[-126.97937069870213,53.269245520027376],[-126.97924108116104,53.26940736863115],[-126.97912846985301,53.26957356750037],[-126.97902335708906,53.26973913968052],[-126.97886626244834,53.26989113049415],[-126.9787536612552,53.27005788459904],[-126.9787022624364,53.27023085653609],[-126.97866223408475,53.27040878113981],[-126.97858929282505,53.2705847272517],[-126.97871780806196,53.270739408902294],[-126.97890515489966,53.27087960413697],[-126.97914805612399,53.270985162809254],[-126.979434761761,53.27103545786188],[-126.97972236056711,53.271084059709025],[-126.97999464007019,53.27116024266211],[-126.98027686800548,53.27121953620093],[-126.98055550743045,53.271286701813445],[-126.980818620042,53.271372486863584],[-126.98109358492742,53.27144247821237],[-126.98137130865501,53.271510214197015],[-126.98164993861188,53.27157681263601],[-126.98191086440067,53.27164916807117],[-126.98200409967919,53.271820944705645],[-126.98207298187849,53.27199628409662],[-126.98220633256,53.272156524194386],[-126.98230137021336,53.27232492432927],[-126.98233276762176,53.272503935097916],[-126.98235480194977,53.27268357907955],[-126.98237493024203,53.27286268307925],[-126.98238308882345,53.27293040672375],[-126.98240416400607,53.273109502860244],[-126.98243275251615,53.273288536787696],[-126.98250162575063,53.27346331120332],[-126.98258643363675,53.27363627747341],[-126.98267122928465,53.27380868803589],[-126.98271330661565,53.27400217589468],[-126.98275563985808,53.274165965448105],[-126.98284693861179,53.2743355164245],[-126.98294857648813,53.27450498169961],[-126.98302725764134,53.27465670996627],[-126.98303038757822,53.27487180856924],[-126.98306432808762,53.27503847304685],[-126.98313415369984,53.2752132480582],[-126.98320585806174,53.27538799849153],[-126.98327849678317,53.275562185392204],[-126.98333895826306,53.27573815826195],[-126.98339098580354,53.275915312439835],[-126.9834007962821,53.27609450149659],[-126.9833654725835,53.27627182358512],[-126.98347273953961,53.276440685925046],[-126.98360146004818,53.27660263878766],[-126.98366568124833,53.27677858026501],[-126.98369239914291,53.27695762911622],[-126.98372653962437,53.27713269041409],[-126.98371893668113,53.277290179580255],[-126.98380161080233,53.27749229383805],[-126.98383396517004,53.27767129588473],[-126.98386913190147,53.27784970989692],[-126.98387707952067,53.27802947889719],[-126.98385267466273,53.2781915800546],[-126.98375440046892,53.27836886806592],[-126.98356886696862,53.27850989560011],[-126.98344961386391,53.278673911883196],[-126.98343315184927,53.27885443878677],[-126.98356462471433,53.27901357213204],[-126.98376595118869,53.279146356372166],[-126.98399876832922,53.27926038753344],[-126.98419637951248,53.279394886983326],[-126.98434003397496,53.27955279802801],[-126.98442767383385,53.27972517441868],[-126.98447033112124,53.279902970243654],[-126.98445948263254,53.28008233021595],[-126.98437707767506,53.28025500520006],[-126.98421242471767,53.28040538860017],[-126.98401452179482,53.28054036125174],[-126.98386120143162,53.280694011495],[-126.98378729321325,53.2808682917386],[-126.9837792649575,53.28104818389825],[-126.98375714139861,53.28122763711078],[-126.98370207050696,53.28140400201115],[-126.983614942561,53.281576150738026],[-126.98348341182165,53.281737462880024],[-126.983323478307,53.28188949089585],[-126.98315785521693,53.28203931595875],[-126.98304052328753,53.28220499169832],[-126.9829439324195,53.28237442157658],[-126.98290205970048,53.282552917553645],[-126.98289683998858,53.282732230474416],[-126.98294511686399,53.282909415317725],[-126.98303275820429,53.28308180140197],[-126.98329234881214,53.283335666605126],[-126.98356590320816,53.283624158002674],[-126.98375682068232,53.28383377368907],[-126.9840025050251,53.28409560455575],[-126.98419417789533,53.28429681448206],[-126.98443988060596,53.284559200009575],[-126.9847002265945,53.28480409234504],[-126.98490598955011,53.285005184237775],[-126.98509711612704,53.285223203734],[-126.98524682252248,53.285397869703615],[-126.9853225557645,53.28562301323841],[-126.98533710958408,53.28588450940233],[-126.9853751004881,53.28606290784818],[-126.98542341978987,53.28624065584483],[-126.98544544643912,53.28641974247734],[-126.98543649227092,53.286599641970184],[-126.98540214144683,53.28677807606225],[-126.98543148779709,53.28694870312734],[-126.98543477999188,53.28712962136],[-126.98550279564623,53.28730608532775],[-126.98557924650758,53.28748192348986],[-126.9856669210782,53.28765486285161],[-126.98577044193154,53.28782262414411],[-126.98589450131355,53.28798462159496],[-126.98604377586045,53.28814024264263],[-126.98621640186175,53.288289502675674],[-126.98640671663478,53.2884313371699],[-126.98660996090867,53.288564100458366],[-126.98681692704749,53.28869459160151],[-126.98702390563393,53.28882620271524],[-126.98723279273324,53.28895836229965],[-126.98744353188717,53.28908994141797],[-126.98765799294236,53.28921924833917],[-126.98787520063443,53.28934572645956],[-126.98809795494952,53.289468240994],[-126.9883252693952,53.28958511499228],[-126.98855902494992,53.28969577703376],[-126.98880012709762,53.28979909014398],[-126.98904948351827,53.289893370550715],[-126.98930802409794,53.28997916618925],[-126.98957484521888,53.29005705819237],[-126.98984902559899,53.2901281566906],[-126.99012965984423,53.290193607542584],[-126.99041486663019,53.29025397316624],[-126.99070374016695,53.29031038151872],[-126.99099440155447,53.290362857218184],[-126.99128690334562,53.290413640678366],[-126.99157936625319,53.29046273861602],[-126.99186992446175,53.290510731315315],[-126.9921576572367,53.290558746916886],[-126.99244897939447,53.2905988887923],[-126.9927438870699,53.29063227738003],[-126.99304057057373,53.290660603955565],[-126.99333812067297,53.2906861259415],[-126.99363565804953,53.290711091556105],[-126.99393416726227,53.290737724461124],[-126.9942299316517,53.29076717620365],[-126.99452396269697,53.290802808596624],[-126.9948144473723,53.2908474334454],[-126.99510315925725,53.290896554179334],[-126.99539187181426,53.29094567420986],[-126.99567886455696,53.29100153056627],[-126.99596920651587,53.29103999590059],[-126.9962699769506,53.29104251018674],[-126.99657077408713,53.29104615288452],[-126.99687615728561,53.29104470988455],[-126.99717973889973,53.29104719826595],[-126.9974735096028,53.29107162123375],[-126.99775205763387,53.29112754354548],[-126.99802443286247,53.291200888301425],[-126.99829144993836,53.29128603756195],[-126.99855208247216,53.29137963869234],[-126.99880720019156,53.2914777763444],[-126.99905577442391,53.291577644677915],[-126.99928960883422,53.29168996131675],[-126.99951236875108,53.291810769492855],[-126.99973422278613,53.29193327001407],[-126.9999755642679,53.292044966373616],[-127.00000023168258,53.29205484254464],[-127.00024205686532,53.292146922216666],[-127.00042372018326,53.29227815877607],[-127.00051783590457,53.2924426342997],[-127.00059239959263,53.29261510856987],[-127.00065113167798,53.2927933273275],[-127.00069678964717,53.29297500856079],[-127.00073119980021,53.29315791395124],[-127.00075804021373,53.293338633282225],[-127.00077827149595,53.29351773212468],[-127.00078440151805,53.29369694979244],[-127.0007802018839,53.2938768191984],[-127.00076756648708,53.29405731541566],[-127.00074834786439,53.29423730239556],[-127.00072628955255,53.29441675755028],[-127.00070045941871,53.29459568873318],[-127.00065956839423,53.29477361740833],[-127.00060832048679,53.29495107758417],[-127.00055614003904,53.295128545575416],[-127.00051524810219,53.295306483114175],[-127.000492256123,53.295485945980545],[-127.00049088128485,53.295665782437524],[-127.00050829949231,53.29584546951019],[-127.00054355022166,53.29602444162424],[-127.00060505997173,53.29620038690245],[-127.00070959352483,53.29636813554035],[-127.00083846754288,53.296531188257376],[-127.00091906315346,53.296719861938115],[-127.00107281092107,53.296861981240085],[-127.00120441980799,53.297021658158634],[-127.00134822614436,53.29718010268542],[-127.00139399841976,53.29736627303334],[-127.00147209381166,53.29752863275961],[-127.00164205465973,53.29768014273046],[-127.00175448877256,53.297823730001845],[-127.0017085860159,53.29802803564053],[-127.00179366818253,53.29820714265328],[-127.00186174350571,53.29838247603847],[-127.00193636319213,53.298556633731465],[-127.00205118554146,53.29872148872044],[-127.00210060159718,53.298902581526335],[-127.00219113942784,53.29907380811935],[-127.00228637068703,53.29924443032824],[-127.00240391466446,53.2994053359891],[-127.00249177623219,53.299582187068246],[-127.00262623704933,53.299742949700196],[-127.00271082094655,53.29990078095844],[-127.00272915997586,53.299999779708784],[-127.00274424659378,53.30008088799494],[-127.00286515392925,53.300264173367836],[-127.00297533157769,53.300431307469005],[-127.00307893938371,53.300598496948545],[-127.00322097878417,53.300760879989845],[-127.00337405495586,53.300913650446375],[-127.00357833337009,53.301045255632594],[-127.00374315634241,53.301177749655196],[-127.00393924017787,53.301320072040056],[-127.00413821689015,53.301465721969706],[-127.0042540014509,53.30163113128564],[-127.00436514869017,53.30179881159266],[-127.00445362223475,53.30196164609271],[-127.00456670426152,53.302131559656395],[-127.00468729203581,53.30230084491887],[-127.00473579132759,53.30248194418387],[-127.00472407587286,53.30266131193948],[-127.00470279063916,53.30283291762494],[-127.00460999853149,53.303002322572546],[-127.00444452839909,53.303158905885034],[-127.00428223043563,53.3033300187302],[-127.00427352643912,53.30351720388198],[-127.00432824986204,53.30368368500337],[-127.00459787716754,53.303756473533],[-127.00484109875268,53.303864782824114],[-127.00511792798623,53.303923499419575],[-127.0054205104819,53.30391926235292],[-127.00572144016385,53.30392455767066],[-127.00602008957885,53.3039130651112],[-127.00631957750183,53.30389763871321],[-127.00661920063125,53.303887256823366],[-127.00691767585323,53.3038684851732],[-127.00721717661104,53.30385362109371],[-127.00751758425875,53.30383706343938],[-127.00781723342409,53.30382779872944],[-127.00811537604005,53.30383479675312],[-127.00841953408724,53.30385686427039],[-127.00871385582995,53.30390030270169],[-127.00892734390052,53.3039836420834],[-127.00920073246526,53.304095038614776],[-127.00941537678209,53.30422599002618],[-127.00963369958339,53.30435410423006],[-127.00986371274136,53.304459710061074],[-127.01012836081821,53.30455885406878],[-127.01038894084186,53.30464571633982],[-127.01067152929511,53.30470885280451],[-127.0109666037037,53.304744436296644],[-127.01126331832891,53.30476936549835],[-127.01156679819383,53.30476342005763],[-127.01186639931082,53.30475190473637],[-127.01216682507548,53.3047358999126],[-127.0124661283959,53.304712616620584],[-127.01276047100747,53.30467817953516],[-127.01315204063661,53.304660274616054],[-127.01341291524015,53.304602583382675],[-127.01362397742786,53.304505545881916],[-127.01387364494013,53.3044115397605],[-127.01414721704288,53.30433470015119],[-127.01442280394743,53.30426288014742],[-127.01470237667446,53.304201109316985],[-127.01499075130724,53.304153263504425],[-127.01528986188364,53.30412157594154],[-127.01559224241021,53.304108906982954],[-127.01589037470484,53.30411532091009],[-127.0161869528971,53.30413463682123],[-127.01648370504694,53.30416178455764],[-127.01677966048419,53.30419454949363],[-127.01707479188605,53.304231793511946],[-127.01736904410899,53.304271849890284],[-127.01766144425825,53.30431304184273],[-127.01795330308815,53.30437104418447],[-127.01828436681545,53.30441694967308],[-127.01852524722145,53.30450451885423],[-127.0188484951904,53.304499505702395],[-127.01901549883439,53.30436977921568],[-127.01926674910483,53.30426398801616],[-127.0195442335532,53.30419326019745],[-127.01982748980366,53.304128640055396],[-127.0201030793436,53.30405737144633],[-127.0203556093318,53.303966123546985],[-127.02055631937876,53.30383051204345],[-127.02074844022039,53.30368992756933],[-127.02095287823072,53.3035537186188],[-127.02114027786014,53.30341205361849],[-127.02126810855069,53.30325633488923],[-127.02130618877351,53.30308234042043],[-127.02149611568204,53.30296754344872],[-127.0216407477562,53.3027685386175],[-127.02178516913749,53.302637890762206],[-127.02191993229403,53.30249723295421],[-127.02206271244567,53.302338023322775],[-127.022232076763,53.30218978903143],[-127.0224261455454,53.30205254614877],[-127.0226401458943,53.30192297435044],[-127.02279948741763,53.301788270688256],[-127.02291455440503,53.301610251203606],[-127.02301497663157,53.3014491642336],[-127.02316448446308,53.301296062046426],[-127.02334806540695,53.30115330571271],[-127.02353163296814,53.301009428755236],[-127.02368095903165,53.30084959585092],[-127.02382656741844,53.300690924182234],[-127.02405237572339,53.30058421228991],[-127.02435925160113,53.30052554416746],[-127.02461976039565,53.30045383005061],[-127.02486143985975,53.300342506878415],[-127.02508881026384,53.300222898957294],[-127.025329690853,53.30011717490454],[-127.02560634049554,53.30005260653522],[-127.0259227573509,53.30000000982583],[-127.02616845476649,53.2999385041044],[-127.02646705023652,53.29988718930867],[-127.02676510644075,53.29985267598778],[-127.02706730305134,53.2998338211719],[-127.02736473847334,53.29981275693589],[-127.02766214781519,53.29979001600578],[-127.0279775543055,53.29977328543312],[-127.0282463603151,53.29973453980523],[-127.02853901308677,53.29967094641424],[-127.02883848996755,53.29965658340715],[-127.02912687237185,53.299610952527416],[-127.029409192087,53.29954800224445],[-127.02969254021217,53.29948840367432],[-127.02996906945127,53.29941933536289],[-127.03023780675305,53.29933913858662],[-127.03050360671755,53.2992544759666],[-127.0307762923687,53.29918208674606],[-127.03106752323728,53.29913753784787],[-127.03136177058171,53.29910136979358],[-127.03165803379223,53.29907078568017],[-127.03195651858276,53.29905419146755],[-127.0322550715457,53.29904039252164],[-127.03254533905347,53.29899529261083],[-127.03283058443482,53.298937346146296],[-127.03310034273574,53.29886049523322],[-127.03335939893492,53.2987691621621],[-127.03363683602782,53.29869952155622],[-127.03389211767272,53.298607664411364],[-127.03412525744892,53.29849415544766],[-127.03436796987519,53.29838839673833],[-127.03464058836009,53.29831375821582],[-127.0348938074032,53.29821462949833],[-127.03514537959846,53.29812504278941],[-127.03540088825525,53.298042708547506],[-127.0356614838613,53.29793791164331],[-127.0359013504331,53.29783106305142],[-127.03617359111067,53.29774129382091],[-127.03645046988304,53.297687337525545],[-127.03671159751764,53.297604386659614],[-127.03693807000985,53.29748812462435],[-127.03713112330371,53.29735030094858],[-127.03734036267977,53.297221308034615],[-127.03758882177891,53.29712053880352],[-127.03784788513421,53.297030316060386],[-127.03809617789872,53.296922268813574],[-127.03835338720519,53.296833181585555],[-127.03859909919733,53.296735239781576],[-127.03872770972454,53.296690973498166],[-127.03886998547519,53.296667320156544],[-127.03903608979056,53.296657468145725],[-127.0391867377394,53.29666847482021],[-127.03948682576457,53.29667929376668],[-127.03960622311034,53.29668104522253],[-127.03977536931608,53.29664146939355],[-127.04004696455732,53.29656458629037],[-127.04031956099237,53.296489925701636],[-127.04059894882026,53.29642361275372],[-127.04087836229711,53.29635898405679],[-127.0411616588746,53.29629879344904],[-127.04142844809392,53.29621746750328],[-127.04170005131137,53.29614113622164],[-127.04196877287846,53.296062024006446],[-127.04222686080185,53.29597068860435],[-127.04249106833758,53.295899457889824],[-127.04264550671883,53.295873452318716],[-127.04279541928155,53.29585477363926],[-127.04309283275511,53.2958342345542],[-127.04323140002904,53.29581284938814],[-127.04336068700094,53.29575793234163],[-127.04354702962745,53.29561623975645],[-127.04373433082037,53.295475658874764],[-127.04383814162445,53.295417039167226],[-127.04398090015854,53.29537489256676],[-127.04411828260955,53.295343988519136],[-127.04427008563465,53.295325847068476],[-127.04456970795985,53.29531817438505],[-127.04486285202775,53.2953531257931],[-127.04515516169957,53.2953920098552],[-127.04544926789492,53.29542751605846],[-127.04559728231018,53.29544582512707],[-127.04574500397261,53.29545292320122],[-127.04604142552992,53.2954301445399],[-127.04632864766563,53.29537719423913],[-127.04661389144655,53.29532089934373],[-127.04690015119756,53.29526740038724],[-127.0471943717673,53.29523174865639],[-127.04746452514243,53.295172788140896],[-127.04773785087363,53.29509082544522],[-127.04801531072711,53.29502339138592],[-127.04829080574783,53.2949531684229],[-127.04859042469533,53.294945485594006],[-127.04888973663137,53.29496356595845],[-127.04917852572333,53.295011999482924],[-127.04947260479375,53.295046375531946],[-127.04976580677166,53.295083555237284],[-127.05004832048154,53.29514380231182],[-127.05033352096913,53.295198987440365],[-127.05062761611794,53.29523391624369],[-127.0509208764393,53.295273342449434],[-127.05120960010203,53.29531896605408],[-127.05148308412096,53.295393855443464],[-127.05176652039378,53.29545352558862],[-127.05205261532268,53.2955070135488],[-127.05221288228094,53.29552688203487],[-127.05234743790437,53.295532977086054],[-127.05244035538766,53.29552822760577],[-127.05251584395282,53.29550235305441],[-127.0526095089473,53.29545222330973],[-127.0528177313145,53.29532208211009],[-127.05301833678034,53.29518865569826],[-127.0532256653764,53.29506076255769],[-127.05345781438099,53.29494834404015],[-127.05369280236873,53.29483645560136],[-127.05390378780359,53.29470461169708],[-127.05411896397794,53.294590092612765],[-127.05438326428302,53.294485785665],[-127.0546327117914,53.294388897399315],[-127.05491389936817,53.29432141395324],[-127.05519916760375,53.29426621847042],[-127.05549434840142,53.29423222265195],[-127.05579271939426,53.29421276352402],[-127.0560924156021,53.2942084133931],[-127.05639072254631,53.294224251851325],[-127.0566883359671,53.29424961504117],[-127.05698749221631,53.29426151840475],[-127.05728746932844,53.29426836721913],[-127.05758734750073,53.29427186378329],[-127.05788695969105,53.29426414853586],[-127.05818640234473,53.29425027607022],[-127.05847769678003,53.294210705214425],[-127.05876691386287,53.29416387374087],[-127.0590652968082,53.294144962007245],[-127.0594226796432,53.294155219476835],[-127.05971939045479,53.29418170358266],[-127.06001689301362,53.29420257764945],[-127.06032290841299,53.29415111063054],[-127.06044292293318,53.293990370788194],[-127.06058651839083,53.29383279049754],[-127.06069035348091,53.29366435173784],[-127.06085480057475,53.293513863246176],[-127.06102493944371,53.29336612924747],[-127.0611363456083,53.293199307534586],[-127.06119675962705,53.29302341312564],[-127.06137260409193,53.29287786846874],[-127.06146508863509,53.29270673371693],[-127.0615311671537,53.29253135314471],[-127.06157462446329,53.29235393385718],[-127.06161901426898,53.29217594149148],[-127.06173041494331,53.29200911911966],[-127.06184085369841,53.29184174948071],[-127.06197116928466,53.291680359933295],[-127.06212516289311,53.29152603685935],[-127.06229529012114,53.29137773617677],[-127.0624246565373,53.29121579881397],[-127.06251430790289,53.29104412367235],[-127.06259545315011,53.29087084837125],[-127.06263607925416,53.29069289808281],[-127.06265848088901,53.290499980316795],[-127.06272736199898,53.290324573723105],[-127.06282110680108,53.29016630700108],[-127.06286831425176,53.28998885338685],[-127.06291176435965,53.28981087762648],[-127.06297876430848,53.28963548764558],[-127.06306935625743,53.28946436818172],[-127.06310715385048,53.289285878191585],[-127.06312423931017,53.28910645317549],[-127.06311970996767,53.28892665697023],[-127.06313681026009,53.288747231784626],[-127.06317083402175,53.288568775491385],[-127.06323312711878,53.288392871631366],[-127.06332087627953,53.288220656839684],[-127.06340297375928,53.28804792787336],[-127.06351530265121,53.287881659707196],[-127.06368539527344,53.28773335689056],[-127.06389259844302,53.28760320424408],[-127.06409218604462,53.28746920237131],[-127.0642623042459,53.28732146314223],[-127.0644571138931,53.28718469783209],[-127.06469012236569,53.28707168383555],[-127.064943260122,53.286974739848084],[-127.06519064681702,53.286873356131025],[-127.06542651893179,53.286762555850686],[-127.06563467238644,53.286633520896586],[-127.0658781988264,53.28652825324274],[-127.06614003330816,53.286440747911264],[-127.06641054039223,53.28636212771168],[-127.06668591995239,53.286290741567996],[-127.06696425189303,53.28622437476187],[-127.0672385703622,53.28614795929426],[-127.06747127039515,53.28606071285487],[-127.06774008977192,53.28595241721345],[-127.06797496049313,53.28583993555592],[-127.06819648081245,53.2857191746158],[-127.06840460636116,53.2855895701567],[-127.06855762256987,53.2854352556071],[-127.0686189557522,53.28525991278006],[-127.06856564025277,53.28508391669823],[-127.06846737671054,53.28491393634539],[-127.06834669627857,53.28474919519229],[-127.0682418936494,53.284580949681995],[-127.0681342953082,53.2844132849707],[-127.06804164294259,53.284242133297745],[-127.06801273779432,53.284027821853044],[-127.06804296562885,53.283848841915294],[-127.06812694234716,53.28367721259287],[-127.06826572710294,53.28351797972911],[-127.06843200065317,53.28336802763749],[-127.06859034593171,53.28320245132161],[-127.06872948204585,53.28305722485513],[-127.06888911226835,53.28290508198841],[-127.0690781947243,53.28276556337764],[-127.0692663150054,53.282625497364805],[-127.06941352416544,53.28246562241437],[-127.06954766773278,53.282308670593906],[-127.06967981737768,53.28214781945308],[-127.06985557297641,53.28200169684265],[-127.07003703342791,53.28185888389673],[-127.07023466733077,53.281723768036834],[-127.07038575557975,53.28156833859909],[-127.07051400043152,53.281401919344674],[-127.07068510283335,53.28125807827078],[-127.07085059668444,53.28111540797906],[-127.07096457152929,53.28094182944382],[-127.07113842474546,53.28079515721044],[-127.07133223611739,53.280657832950034],[-127.07151083290809,53.28051336719549],[-127.07166191143143,53.28035850075353],[-127.07179972584046,53.28019870731742],[-127.07194893796225,53.280044422027544],[-127.07208954645255,53.27988404723177],[-127.07226529839906,53.27973847650322],[-127.07242394243181,53.27958578155643],[-127.0725664830428,53.27942762958865],[-127.0727355780574,53.27927932158267],[-127.07290857127128,53.27913658037184],[-127.07309303369347,53.279001578415695],[-127.07324503363908,53.278846145659735],[-127.0734433761677,53.278702609699025],[-127.07364002350236,53.278566940892475],[-127.0738509649444,53.27843897667687],[-127.07406190533567,53.278311021039656],[-127.07427665817566,53.278185262459125],[-127.07449812030106,53.278064489286294],[-127.07476583842619,53.2779528252587],[-127.07492082390002,53.27780464165655],[-127.07496608887195,53.27762663440007],[-127.0749839803631,53.277443837425395],[-127.07500400686985,53.277271105233105],[-127.07500873495317,53.27708787168465],[-127.07500695224144,53.276907493752915],[-127.07502401129304,53.276728621368186],[-127.07507681614199,53.276552230840835],[-127.07519276818523,53.276383676215076],[-127.07532582425142,53.27622280076147],[-127.0754816197993,53.27606957128906],[-127.07562888321706,53.27591304856272],[-127.07572505807093,53.275742987373924],[-127.07579292915156,53.27556758031566],[-127.07584101243958,53.275390111633314],[-127.07587497173604,53.2752116504753],[-127.07588135990778,53.27501999367045],[-127.07596171625248,53.27485567787679],[-127.07613350618425,53.27470342284284],[-127.07621931012802,53.27453176995828],[-127.07625609209569,53.27435328299699],[-127.076281589845,53.27417434258137],[-127.07628935018914,53.27400003587225],[-127.076189892719,53.27381998755889],[-127.07598564816173,53.27369354192005],[-127.07572505244192,53.273604590898124],[-127.07546428230846,53.27354532865746],[-127.07518015628402,53.2734907592771],[-127.0749463776755,53.27338474773111],[-127.07469109275951,53.2732828565656],[-127.0744867556169,53.273152492079056],[-127.0743250776386,53.27300045232863],[-127.07414111854739,53.2728586981685],[-127.07392659076295,53.27273347151271],[-127.07370826406458,53.27260714941405],[-127.07345870783625,53.272508009438695],[-127.07323400268726,53.27238903165345],[-127.07301575113297,53.27226551325161],[-127.0727892272506,53.272148792000124],[-127.07253964720374,53.27204852090205],[-127.07228823225405,53.2719505157512],[-127.07203590099833,53.27185307409948],[-127.07179095556097,53.2717505186557],[-127.07156624504066,53.27163098204462],[-127.07136933862742,53.27149661904817],[-127.07127674401481,53.27132714458704],[-127.07126651919438,53.27114628666086],[-127.0712422583725,53.27096723162253],[-127.07119829817684,53.27078947483311],[-127.0711580802953,53.27061111952456],[-127.07114038616909,53.27043200515411],[-127.0711405127052,53.27025217417679],[-127.07113877592779,53.27007235103629],[-127.07112387765402,53.2698926556321],[-127.07109867159794,53.26971360899127],[-127.07107436957112,53.269532868994375],[-127.0710219954494,53.26935687314126],[-127.07094896369402,53.269180498958185],[-127.07087793764626,53.26900970893963],[-127.07079461277914,53.26883510373505],[-127.07071039981412,53.268662191652794],[-127.07059629430276,53.26849627195902],[-127.07046353798664,53.26833500224148],[-127.07032612281654,53.26817545956775],[-127.07018683043881,53.268015924695995],[-127.07005314498694,53.26785522759978],[-127.06992037773662,53.26769395735643],[-127.06979694544292,53.26752979716528],[-127.06977082829836,53.267351878764245],[-127.06988971428004,53.267187783889156],[-127.07003126172498,53.26702907789906],[-127.07016526878417,53.26686876350197],[-127.07027844617883,53.26670247872042],[-127.07037274436142,53.266531873273905],[-127.07047363570497,53.266362337684384],[-127.07054152689938,53.26618805312159],[-127.07056985402514,53.26600852311076],[-127.07055844552325,53.26581814690348],[-127.07027625574867,53.265763548624264],[-127.07001617934127,53.26561854833083],[-127.06994300655944,53.26547354759091],[-127.06989808365272,53.265294122377846],[-127.06986163227636,53.26511573225876],[-127.06981206464108,53.26493858979432],[-127.06970638798838,53.26477090787518],[-127.06954292411635,53.26462056267474],[-127.0693478638837,53.26448338286529],[-127.0691639586017,53.264341620365414],[-127.06902376518363,53.26418321254914],[-127.06893675876465,53.26401088882088],[-127.06887876763096,53.26383437754419],[-127.06887328436582,53.26365515232366],[-127.0688950510765,53.26347623737158],[-127.06889050014048,53.26329644796833],[-127.06889252883289,53.26311659031479],[-127.06891334900337,53.262937692796314],[-127.06894262631684,53.262758710105295],[-127.06893995303322,53.26257890372058],[-127.06892976846713,53.262399156021715],[-127.06894683333343,53.262219727540554],[-127.06898363531377,53.26204124169382],[-127.06903079972403,53.26186434763882],[-127.06909772992412,53.26168895167345],[-127.06916842909585,53.261514077439884],[-127.06922594119473,53.26133764575683],[-127.06929006068886,53.261162274948255],[-127.06936924301485,53.26098900926597],[-127.0694267535598,53.26081257743732],[-127.0694503943786,53.260633654156415],[-127.06945898493815,53.26045373707634],[-127.06947322274704,53.26027433379206],[-127.06949686306768,53.26009541045176],[-127.06949876147623,53.259910516010464],[-127.06958109074225,53.25975010258825],[-127.06979163858347,53.259609830954396],[-127.07003366922595,53.259489434479505],[-127.07023215909881,53.259354873110766],[-127.07043444450119,53.25922250912096],[-127.07064529926757,53.259094558279635],[-127.07088770881487,53.258988722667304],[-127.07113491754266,53.25888733405892],[-127.07141806102862,53.258833235906586],[-127.071717646707,53.258834447329114],[-127.07200471491632,53.25878703513373],[-127.07226646438464,53.258703440262565],[-127.07248860481866,53.25857649554868],[-127.07274057912687,53.2584784218493],[-127.07299355526395,53.2583825705162],[-127.07324749090324,53.25828727466613],[-127.07349947584702,53.25818975496613],[-127.07374379345967,53.2580855812812],[-127.07396893468174,53.25796645878795],[-127.07421611566913,53.257864499118774],[-127.07447099084159,53.25776974781836],[-127.07476662482509,53.25768975757959],[-127.07497982108826,53.257580825548],[-127.07515260377492,53.25743359860789],[-127.07525629128925,53.25726514394752],[-127.07531189464144,53.25708872594083],[-127.07534301853761,53.256909733070515],[-127.07534338448353,53.256739418021674],[-127.07536579476428,53.256550410875995],[-127.07533870118982,53.25637138091121],[-127.07528818961048,53.25619424836838],[-127.0752181426243,53.25602457143083],[-127.07513663173194,53.25584715502536],[-127.0750673745843,53.25567186845833],[-127.07501686475123,53.25549472677362],[-127.07499258200143,53.25531567118037],[-127.07498425110225,53.25513591527077],[-127.07499095390592,53.254956578874676],[-127.07500986744651,53.25477713181385],[-127.07504286811151,53.25459811283214],[-127.07509469987643,53.25442117308062],[-127.07516064689106,53.25424578159008],[-127.0752256621692,53.254070398486604],[-127.07528031588566,53.25389342405168],[-127.07532932221018,53.25371650972542],[-127.07537080490167,53.25353853412189],[-127.07540192593235,53.253359540904164],[-127.07542364553835,53.25318006816769],[-127.07544725645603,53.253001134018206],[-127.07548026825553,53.25282267933727],[-127.0755320960098,53.25264573923042],[-127.07560180723661,53.252470868917655],[-127.07567717923615,53.25229651193181],[-127.07574878097502,53.25212218906666],[-127.07582132828324,53.25194785756172],[-127.07590682679091,53.25180254087801],[-127.0759899946853,53.251602906694664],[-127.07607573813553,53.25143069622361],[-127.07614921403353,53.25125635600846],[-127.07621513820597,53.25107984328872],[-127.07631410609909,53.25091087402738],[-127.07641116740577,53.25074080148634],[-127.07654849544863,53.250567001985964],[-127.07662605144657,53.250404949572456],[-127.07672500172364,53.2502354153193],[-127.07685229521798,53.250072911240245],[-127.0770127741613,53.249923551416785],[-127.07723216036192,53.24980111256781],[-127.07745249055475,53.24967922047571],[-127.07767281947609,53.2495573279665],[-127.0779084504956,53.24944650074638],[-127.07812973656218,53.24932571912998],[-127.07837493675856,53.249222082591544],[-127.07862013598071,53.249118454502344],[-127.07887593763287,53.24902536951008],[-127.07916655659338,53.24897286013945],[-127.07962508991248,53.248877928909465],[-127.0797750197743,53.248867044617036],[-127.07969063725011,53.248687971569616],[-127.07969660284066,53.24851704888777],[-127.07961518771526,53.24834355114225],[-127.07951419921818,53.24817584282267],[-127.07934632252248,53.24803506983375],[-127.07918381992408,53.24788471916698],[-127.07908001165326,53.24771647139694],[-127.07895380781012,53.247553473882775],[-127.0788354994332,53.24740552639209],[-127.07869021166502,53.24723036793715],[-127.07855191722615,53.247071397127314],[-127.07841545729201,53.24691128899483],[-127.07829858658174,53.24674596494569],[-127.07817425130592,53.24658238486449],[-127.07800247395811,53.246435478296746],[-127.07780655276619,53.24629943990572],[-127.07761249632175,53.246162263772305],[-127.07741556093208,53.246022872517],[-127.07735019316513,53.24585259774775],[-127.0773379999549,53.24566894996239],[-127.07737008120958,53.24549105815532],[-127.0774087100396,53.24531255108593],[-127.07744922994135,53.24513459152703],[-127.07749255725165,53.24495659746664],[-127.07753589944127,53.24477861219898],[-127.07757641806666,53.24460064358502],[-127.07761981584312,53.24442545445936],[-127.07758044204607,53.24424317398927],[-127.07748316818959,53.244073189032626],[-127.07735417325192,53.24391020605225],[-127.07720844346308,53.24375410676564],[-127.0770256907985,53.243617947425626],[-127.07694869532676,53.24343320265253],[-127.07693680450376,53.24326132139365],[-127.07699047694541,53.24308379812801],[-127.07710078425414,53.24291864153136],[-127.0772602043489,53.242765372973444],[-127.0773657679315,53.24259801821199],[-127.07739969443165,53.24241955356663],[-127.07739605551764,53.24223975391725],[-127.07738301707973,53.24206003067569],[-127.07736250074726,53.24188094007003],[-127.07733540811894,53.241701909184705],[-127.07730456204324,53.24152291237384],[-127.07726527737974,53.24134455691536],[-127.0772092450688,53.241171391235945],[-127.07718206786421,53.24098899958196],[-127.07713155170298,53.240811857569994],[-127.07706887306362,53.240635955429546],[-127.07702398902367,53.240458206436784],[-127.0770250790475,53.240280039900796],[-127.07701096283056,53.24016811989158],[-127.0766933262097,53.240042704433286],[-127.07695096832335,53.239950170701256],[-127.07712940217418,53.239806804691604],[-127.07732302046784,53.2396700323109],[-127.07751662310977,53.23953269501173],[-127.07769502470582,53.2393882078965],[-127.07786868298089,53.23924208736065],[-127.07806324216638,53.23910530513372],[-127.07827301316918,53.23897678339524],[-127.07850954366376,53.238866501395336],[-127.07876912213293,53.238777307394734],[-127.07905101859345,53.2387164775862],[-127.0793443461997,53.23866226595851],[-127.07961393547876,53.238597064873765],[-127.07988703327962,53.23852286734699],[-127.08017686280685,53.238478769841734],[-127.08047368293433,53.238450850464865],[-127.08077061671175,53.23842797596537],[-127.08108511413644,53.23839430048717],[-127.08137020099646,53.238421389544506],[-127.08163349965143,53.23851422945937],[-127.08193112167173,53.23851823739871],[-127.08222400112948,53.23848307091977],[-127.08250099050373,53.238414434228794],[-127.08276538607672,53.23833022508471],[-127.08301145718151,53.23822657868945],[-127.08315479244499,53.23807007795095],[-127.08330663686496,53.237915749218025],[-127.08349925246819,53.237777290306994],[-127.08364298959833,53.23767289228285],[-127.08401798629951,53.2375831875738],[-127.08431577165656,53.23755693487388],[-127.08467386851326,53.23754021415013],[-127.0851226055225,53.237544507954176],[-127.08540743596839,53.2374892384197],[-127.08570621295529,53.23750163437862],[-127.08599734431974,53.23754490848361],[-127.08625770998471,53.23763328313483],[-127.08648799768493,53.23775610313619],[-127.08664996875679,53.237886280604776],[-127.08685451866138,53.238030069211455],[-127.0870656308515,53.238173797312],[-127.08725086896082,53.23829647303685],[-127.08746859733654,53.23840483998437],[-127.08764192873072,53.238502417843804],[-127.08795085274714,53.23858081484096],[-127.08827785321455,53.23863159773685],[-127.08852542537673,53.23873297493651],[-127.088772082194,53.23883491578954],[-127.08899829145109,53.2389807428492],[-127.08901018693805,53.23915094743388],[-127.08900168372553,53.23933085896893],[-127.08909336230786,53.23950145133616],[-127.0892698059721,53.23964661440142],[-127.0895082053459,53.2397553524971],[-127.08978500617543,53.239825084974804],[-127.09007436766863,53.239871726924086],[-127.09035747162321,53.239930751045776],[-127.09063786937914,53.23999428132687],[-127.09091103623254,53.240067961836665],[-127.09116776096721,53.240159720776994],[-127.09143184966432,53.240245244243134],[-127.09165164881799,53.240360872170996],[-127.09174892782158,53.24052916998904],[-127.09193926528741,53.24066692255028],[-127.09213890154744,53.24080066299426],[-127.0923376221229,53.24093553202385],[-127.09253078583241,53.241073248645435],[-127.0926961028437,53.24122299110436],[-127.09285398628053,53.24137560752701],[-127.09303602322471,53.241518472524774],[-127.09319948130674,53.2416687871728],[-127.0933796728276,53.24181278913931],[-127.09355519493637,53.241957954372964],[-127.09372238151366,53.24210712239788],[-127.09392018236358,53.242241997268074],[-127.09413462920281,53.24236775436426],[-127.09431704038674,53.24248820424955],[-127.09459673048093,53.2425959865006],[-127.09482039199615,53.24271437865283],[-127.0950863368905,53.24279875646233],[-127.0953449067003,53.242887692698815],[-127.09559988285893,53.24298337552073],[-127.09584835687524,53.243081367812934],[-127.09616005208437,53.24311938062161],[-127.09643557868245,53.24310226746105],[-127.0967424307525,53.2430624542811],[-127.09704205040026,53.24306976758218],[-127.09734021548083,53.24305692484939],[-127.09763744947566,53.243080510240475],[-127.0979369970859,53.2430844604936],[-127.09823645682094,53.24308560510872],[-127.09853594626777,53.24308731341745],[-127.09883542072365,53.24308902110905],[-127.09913499764983,53.243094088552525],[-127.09943461793583,53.243101395809575],[-127.09973339486176,53.24311207158861],[-127.10003057224542,53.24313341055079],[-127.10034202104505,53.24312603949032],[-127.10064508956174,53.243120986354626],[-127.10093902121616,53.24312610163495],[-127.10122936015262,53.24313685197789],[-127.10152892268967,53.24314191351415],[-127.10182852952875,53.243148094369346],[-127.10212781448158,53.243142507869884],[-127.1024258471066,53.24312461586695],[-127.10272377702641,53.24310279788241],[-127.10301768962502,53.243070932128035],[-127.1032985756132,53.24300724846667],[-127.10356295846455,53.242922993164576],[-127.10382827119697,53.242838728605115],[-127.10410627327126,53.24277283782806],[-127.10440010920725,53.242738163625106],[-127.1046959534665,53.24270851665758],[-127.1049887991769,53.242671618198834],[-127.10528369661125,53.24264197857771],[-127.10556264083105,53.242576066602936],[-127.10583568944334,53.24250068926941],[-127.10606931580848,53.2423892675853],[-127.10629143033427,53.242268424176636],[-127.106492854068,53.24214608816064],[-127.10673373459159,53.24202506880031],[-127.10695299363731,53.241902574490254],[-127.10715782991683,53.24176732429931],[-127.10739149266534,53.24165757580898],[-127.10761358476223,53.24153616528965],[-127.10783376962351,53.241413660625746],[-127.10805110086356,53.2412900527421],[-127.1082627568831,53.24116426546061],[-127.10843290097912,53.24103101338645],[-127.10860322592153,53.24086863559764],[-127.10883968782345,53.24075829322784],[-127.10909532784689,53.240664022597095],[-127.10936163491073,53.24058254173179],[-127.10963082222925,53.24050326532194],[-127.1098999789276,53.24042343281179],[-127.11016628292347,53.24034195012944],[-127.11043059112335,53.240255994598776],[-127.11069486903537,53.24016892722225],[-127.11095338291146,53.24007686655051],[-127.11119565612749,53.239973752569426],[-127.11140534525927,53.239845727927495],[-127.11158073649112,53.23969786451057],[-127.11172490217731,53.23954076488389],[-127.11185390556588,53.239378204760264],[-127.11202079618798,53.23922873510296],[-127.11223811880407,53.23910568399338],[-127.11246306512456,53.238986478187286],[-127.11268801003025,53.238867836676185],[-127.11290342301997,53.238743125950315],[-127.11309785122805,53.2386062774097],[-127.1133075281843,53.238477693544944],[-127.11354684586473,53.238370120312496],[-127.1137880538879,53.23826309355325],[-127.11403791961158,53.2381643841638],[-127.11431682061692,53.23809845144596],[-127.11461485670883,53.23808220460982],[-127.1148994606914,53.238126034143505],[-127.11507229302039,53.23827343463405],[-127.11522653710598,53.2384277326382],[-127.11538914587932,53.238579146052004],[-127.11559528911165,53.23870830458676],[-127.11583281997088,53.23881756329946],[-127.11607864188476,53.238920576321576],[-127.11632628218167,53.23902188650217],[-127.116579421047,53.23911755090134],[-127.11682802448921,53.23921941570552],[-127.11706968494613,53.239342634751054],[-127.1172560370949,53.23950390640375],[-127.11738728407947,53.23963993462989],[-127.11757773050213,53.239778757352845],[-127.11779315148257,53.23990334270303],[-127.11805485540793,53.24000340522786],[-127.11847513686108,53.240243144759454],[-127.11872188967571,53.24034558782072],[-127.11896861378183,53.240446901189046],[-127.11921811729398,53.24054707629111],[-127.11948040334353,53.24063311957694],[-127.11975362430947,53.240707289391665],[-127.12004036565963,53.240760050502566],[-127.12033238140744,53.240799306227075],[-127.120627027382,53.240831257664446],[-127.12092594219564,53.24084748113035],[-127.12122543139417,53.240850252503776],[-127.12152466802516,53.240842941075954],[-127.12182054647782,53.240815491789114],[-127.1221173554326,53.240788032955926],[-127.12241120753411,53.24075499889606],[-127.1227019240722,53.240709668363664],[-127.12298479032941,53.240652086023445],[-127.12326564514329,53.24058891958502],[-127.12354064525564,53.24051796448514],[-127.12378472247636,53.24041313119693],[-127.12397984563096,53.24026785887193],[-127.1242225798496,53.240183762025296],[-127.1245166348044,53.24015856421664],[-127.1248233579684,53.24015060869355],[-127.1251263275226,53.240143252717004],[-127.12542675789044,53.24014600450854],[-127.12572326511574,53.240177369861335],[-127.126015666161,53.2401605832511],[-127.12629448715018,53.240092391118516],[-127.12657599534373,53.24001912608524],[-127.12686450165064,53.239926745468225],[-127.12706223122491,53.23984419084701],[-127.12723891058558,53.23964137830652],[-127.12738429257253,53.23949713770098],[-127.1276111199292,53.23937957014665],[-127.12784941546016,53.23927029230298],[-127.12809445037675,53.23916711705941],[-127.12836068144566,53.23908447326214],[-127.1286464414474,53.239030211145796],[-127.12893824985977,53.238991577691486],[-127.12923196438012,53.23895404585851],[-127.12952476238833,53.23891707778793],[-127.12981957158064,53.238885701271265],[-127.1301174574468,53.23886381443101],[-127.13041439537484,53.23887667125323],[-127.13067397608945,53.2389666330201],[-127.13084219772259,53.239114619707586],[-127.13099741819774,53.23926832366614],[-127.1311869919168,53.23940769802365],[-127.13141998757598,53.239520886410475],[-127.13169766671825,53.23958546661658],[-127.13199581116807,53.239608392477855],[-127.13228152429306,53.2396572076951],[-127.13253048419213,53.239736070853716],[-127.1327628398687,53.23989520308447],[-127.13288618058601,53.240049773836986],[-127.13299297683987,53.24021682797444],[-127.1330259194832,53.24039522785419],[-127.13301949534707,53.2405756890471],[-127.13299706606786,53.24075462686873],[-127.13295585344127,53.240932614651165],[-127.13290521167013,53.24110958094264],[-127.13285647619226,53.2412870847481],[-127.13280867120412,53.24146457962519],[-127.13277308767678,53.24164307822453],[-127.1327670226841,53.24183698178155],[-127.13267462287679,53.24199640983207],[-127.1325806759756,53.242168742735544],[-127.13241940208837,53.24231539128527],[-127.13222877287279,53.24245222643181],[-127.13211025892153,53.24261863518977],[-127.13204545226468,53.24279236567012],[-127.13201803283695,53.24296014573812],[-127.1320119041594,53.24315180870731],[-127.13200640610108,53.24333169597024],[-127.13201496238192,53.24351089330688],[-127.13199725709346,53.24369090601221],[-127.13198422131921,53.243870309400315],[-127.13197025447795,53.24404972165527],[-127.13195723349382,53.24422912486331],[-127.13194233532667,53.24440910173219],[-127.13193024508146,53.24458849601827],[-127.13194257034117,53.244768221999514],[-127.1319417418022,53.244947508772405],[-127.13189957464395,53.24512550482373],[-127.13183953839334,53.2453019951057],[-127.13178983271283,53.24547895148675],[-127.13177586451428,53.24565836356727],[-127.13178631218166,53.245838098412825],[-127.1318080071456,53.24601717015178],[-127.1318607257002,53.246198186808584],[-127.13187390711575,53.24637454300063],[-127.13185223561254,53.24654674083799],[-127.13199108906117,53.246719091970846],[-127.13220573208933,53.246846464565046],[-127.1324092189225,53.24697841628909],[-127.13261733222916,53.24710752674178],[-127.1328346819541,53.24723094615968],[-127.13306036710773,53.247349803591604],[-127.13328324555005,53.24746925214344],[-127.13347377949525,53.24760804876618],[-127.13365134061854,53.24775258049558],[-127.13381313542509,53.247904541382205],[-127.13394231510497,53.2480657777814],[-127.13400432565925,53.24824222260634],[-127.13404196412642,53.24842057665834],[-127.13410863085741,53.24859585639768],[-127.1341837226894,53.24876993503889],[-127.13427281113773,53.24894108303518],[-127.13437965041703,53.249109255490616],[-127.1344911608684,53.249276262676],[-127.13458772996839,53.249446209410905],[-127.13466001718119,53.24962087925983],[-127.13472855038661,53.24979557600199],[-127.13481205665708,53.249968453196665],[-127.13488904619382,53.250143077889504],[-127.13496136570281,53.250318858732],[-127.13503183894193,53.25049578664028],[-127.13510509075053,53.2506715584534],[-127.13518392990377,53.25084504472516],[-127.1352730116065,53.251015627202385],[-127.13537511429385,53.251181603017734],[-127.13552003318263,53.25133372301016],[-127.13573660241545,53.25146218232101],[-127.13596428597889,53.25158437659579],[-127.1361973465817,53.25169755501709],[-127.13643042345147,53.25181073283003],[-127.13663023817712,53.251944397720756],[-127.13678372512732,53.2521003602775],[-127.13694457154769,53.25225120541286],[-127.13715644912688,53.25237915135937],[-127.1374070121579,53.25247926953582],[-127.13768116692428,53.2525489166761],[-127.13796352133237,53.25260895588615],[-127.13825042634018,53.25266390407976],[-127.13853640114827,53.25271942523976],[-127.13881697120647,53.252782841031305],[-127.13907573955238,53.25287392199636],[-127.13927836095642,53.25300643504136],[-127.13935810731626,53.253178224603985],[-127.13938359282571,53.25335725820629],[-127.1393555664563,53.25353624101658],[-127.13926722299394,53.253707403881315],[-127.1391108254302,53.253861292311115],[-127.13891163472977,53.25399542254373],[-127.13868668313617,53.254114677567046],[-127.13848652851934,53.25424769580681],[-127.13833296487041,53.254402676413825],[-127.13822759816134,53.25456951975833],[-127.13820052746783,53.25474961344704],[-127.13817625022077,53.25492856878553],[-127.13815572755497,53.255108043841844],[-127.13814272943348,53.25528744668875],[-127.13814479601805,53.255468945968595],[-127.13814497001202,53.25564934290004],[-127.13812063159259,53.25582661350858],[-127.1379747215968,53.25598712247155],[-127.13793615789031,53.2561589270118],[-127.13796010867712,53.256350856447526],[-127.13809111698768,53.256508153250735],[-127.13834850724815,53.256581877008045],[-127.13865115926527,53.25659297426681],[-127.13894953339022,53.25661980761644],[-127.13920475163933,53.256717080628206],[-127.13943793405443,53.256798313180965],[-127.13962142273239,53.25691700769751],[-127.13974043907228,53.257082252350166],[-127.13984644993496,53.257252668506],[-127.13994682909612,53.25742313867182],[-127.14002107488619,53.257599462299595],[-127.14011112162737,53.257770031592926],[-127.14026728493543,53.25791979661357],[-127.14059033746703,53.258129583937134],[-127.14087722311264,53.25818229418852],[-127.14116502525079,53.25823386548525],[-127.1414553949463,53.2582764564514],[-127.14175208665245,53.25831001300879],[-127.14204871824079,53.258340772669925],[-127.14234170132102,53.25837604867273],[-127.14260749128266,53.25844688568741],[-127.1428434161384,53.258559458872334],[-127.14308573960844,53.258665811746],[-127.14330959176338,53.25878299124345],[-127.14348262280198,53.258930904340275],[-127.14367232597338,53.25907025730269],[-127.14380655200233,53.25924151845287],[-127.1439475612995,53.25938582234651],[-127.14413914565891,53.2595251564263],[-127.14427954459752,53.259681791170905],[-127.1443369138183,53.259858274864555],[-127.1444755280027,53.260017732281426],[-127.14466894894278,53.260155362576114],[-127.14487159245986,53.26028674537025],[-127.14500930917013,53.260447887069496],[-127.14518290470879,53.26058179062797],[-127.14547781394673,53.2606176051558],[-127.14574548567225,53.26068840811463],[-127.1459454326182,53.26082374132159],[-127.14611190187907,53.26097171397097],[-127.14621323111574,53.26114104916958],[-127.14629859329706,53.26131053853337],[-127.14620934569808,53.261482279447115],[-127.1461991584677,53.26166053525014],[-127.146335892622,53.26181999966626],[-127.14645665962595,53.26197906243861],[-127.14656525673482,53.26217409825059],[-127.14666063820715,53.26233172985431],[-127.14675005261388,53.2624776494556],[-127.14686663806118,53.26265523574399],[-127.14686486529244,53.262832289703546],[-127.1469194708864,53.263009919202275],[-127.1469721690538,53.263187011340584],[-127.14702959980914,53.26336516921709],[-127.14706153651991,53.26353798004008],[-127.1471003423235,53.26372192033018],[-127.14700906294581,53.26388807882566],[-127.14686224288864,53.26404972738255],[-127.1468105174927,53.264219976360145],[-127.14698825495935,53.264366727252614],[-127.14714460387204,53.26452151908584],[-127.14723565591507,53.264692637783426],[-127.1472883572648,53.264869720664684],[-127.1473176391603,53.265048715158436],[-127.14734035629563,53.265227773104584],[-127.14736589825927,53.265407368442524],[-127.14740359335946,53.26558516103954],[-127.14745724298211,53.26576223461221],[-127.14751089329823,53.26593931710602],[-127.1475401919787,53.26611886705951],[-127.14755072714873,53.26629916316739],[-127.1476883214518,53.266454700304074],[-127.14787811810274,53.26659573076198],[-127.14806971768397,53.266733937783115],[-127.14827606783086,53.266861917408434],[-127.14852671268781,53.26696089115398],[-127.1487746256304,53.267062696515175],[-127.1489893618151,53.2671883527651],[-127.14898950610062,53.26736595258603],[-127.1489559231944,53.26754723142796],[-127.14892980619763,53.26772620595444],[-127.14894877574265,53.26790585546647],[-127.14898466261963,53.26808535013091],[-127.14908502808562,53.26825300665176],[-127.14922648188373,53.26841186604345],[-127.14938283885402,53.26856609898927],[-127.1495504040721,53.26871798219084],[-127.14975858541635,53.26884370053907],[-127.15004018045232,53.268905960042936],[-127.15031824928006,53.26897666117271],[-127.15059963214495,53.26906581302257],[-127.15087408417367,53.26914158562386],[-127.15102212833968,53.26930037898486],[-127.15114246087484,53.26944206898748],[-127.151223248795,53.269649139475504],[-127.15128255379628,53.26982615629054],[-127.15127516502265,53.27000326431347],[-127.15113857021608,53.270160901197016],[-127.15120906787394,53.27033501271427],[-127.15122241387446,53.270514160515255],[-127.15119460993331,53.27070043035966],[-127.15114185553816,53.270866773501794],[-127.15104408706453,53.271036349913636],[-127.1510355517477,53.271205625542116],[-127.1510750079062,53.27130889196649],[-127.15131055212508,53.271197355691825],[-127.15154995840224,53.27108970762869],[-127.15179218852363,53.270982596382666],[-127.1520411968799,53.27088269748375],[-127.15232327828627,53.27082449055448],[-127.15262146954416,53.27080590811622],[-127.15292037951968,53.270813653778866],[-127.15321751650639,53.27079059814879],[-127.15351589296831,53.27081346953802],[-127.15380060459901,53.27085159507277],[-127.15410316656254,53.270889555308024],[-127.15440320791221,53.2709045649027],[-127.15468848469133,53.27092868126079],[-127.15500324498623,53.270932341299265],[-127.15529949640802,53.27091153004122],[-127.15558163483563,53.27085555573952],[-127.15585963307798,53.2707856195147],[-127.15614253268053,53.27072292250721],[-127.15643349632927,53.27068087071133],[-127.15673035424675,53.2706477246194],[-127.15702331768331,53.27061013381086],[-127.1573054211058,53.27055303521785],[-127.15757261657978,53.27046583723881],[-127.1578369553412,53.270377537065436],[-127.15811539236743,53.270323842702325],[-127.15841399234027,53.27032036372154],[-127.15871871865343,53.27033476089626],[-127.1590185884464,53.2703435933311],[-127.15931760385513,53.27035523905024],[-127.15953713859405,53.27041416521749],[-127.15974630459321,53.270539856686405],[-127.15996750184708,53.27072761263261],[-127.16005892026635,53.27080739399249],[-127.1601765933101,53.27098776226837],[-127.16038283178544,53.2710412144507],[-127.16073207653493,53.27106860808059],[-127.16105551307383,53.27108001062203],[-127.1615071909278,53.27100724136735],[-127.16182558733506,53.27107415963792],[-127.16201171762717,53.27118214491315],[-127.16222837646728,53.271306638218796],[-127.16245651199407,53.271404682837726],[-127.16260760502469,53.27146819095875],[-127.16267408373247,53.2715627809537],[-127.16293402691814,53.27165604007804],[-127.1631791927376,53.27175839838875],[-127.16335095302368,53.27178753270023],[-127.16346939980247,53.271790853536885],[-127.16376920332031,53.27179631326753],[-127.1640674272863,53.271778822265034],[-127.16436692240052,53.27177364338035],[-127.16466638623697,53.27176678779966],[-127.16496609756221,53.27176944867939],[-127.16528492993137,53.271783681681555],[-127.1654846212676,53.27190609475257],[-127.16557757986779,53.272074939908244],[-127.16563409244948,53.27225030112826],[-127.16572893033245,53.272419118727605],[-127.16595833653629,53.272528913796805],[-127.16625320745715,53.27255963117034],[-127.16653930751828,53.27261340845996],[-127.16677995447509,53.27272140626619],[-127.16716412008861,53.272856569159856],[-127.16738838411862,53.27288181988615],[-127.16756051748204,53.272754067527806],[-127.1677263651844,53.272603411266644],[-127.16791889304766,53.272465938037286],[-127.168135245825,53.27234112005327],[-127.16835727819314,53.272217921990006],[-127.16860541644144,53.272121913878514],[-127.16889620625211,53.272073110327106],[-127.16917819493653,53.27201206740553],[-127.16942996149457,53.271979333767845],[-127.16972450624905,53.27186270619402],[-127.16996965898682,53.27176056639022],[-127.17021283925227,53.27165508405046],[-127.17045219992409,53.271547397889734],[-127.17069151265822,53.27143802648829],[-127.17092891520934,53.27132756190853],[-127.17116633193099,53.27121765245737],[-127.17139992902848,53.27110553923816],[-127.17164842540812,53.2709887964986],[-127.17184410021127,53.27086416665088],[-127.17207168608725,53.270738665549665],[-127.17227390886282,53.27061341452315],[-127.17249695995166,53.27049355979946],[-127.17271903210693,53.270372593821634],[-127.17294014100419,53.270251081166016],[-127.17316030141876,53.27012901272794],[-127.17337951335008,53.270006388512655],[-127.17359489084086,53.269881569776935],[-127.17380644799509,53.2697539827114],[-127.17401131405077,53.26962253524586],[-127.1742142698858,53.26948999478005],[-127.17441627766793,53.26935745436358],[-127.17463262647514,53.26923374451711],[-127.17483744080467,53.26910061979889],[-127.17503756631208,53.26896754113141],[-127.17520906885376,53.26881905869766],[-127.17536723636877,53.268663420398994],[-127.17552541913109,53.26850891116853],[-127.17569699550276,53.268362668208596],[-127.17590112080147,53.268239068033914],[-127.17617895906044,53.268165167970125],[-127.17644714103383,53.26808183431753],[-127.17667106716067,53.26796084217669],[-127.17693203599627,53.26782098963737],[-127.17697343226394,53.26765474638607],[-127.17699567470395,53.267475811909215],[-127.17706882352661,53.26730308646827],[-127.17728040470914,53.2671777335524],[-127.17756442970419,53.26712393758397],[-127.17786360817838,53.26710807827514],[-127.17816295919434,53.26709894841173],[-127.17847208320163,53.26706954292004],[-127.17874608181435,53.26702648386047],[-127.17905311569133,53.26702343365325],[-127.17940766873849,53.26700646447467],[-127.17964611892677,53.26693518855111],[-127.17987790133063,53.266826993219695],[-127.18012293765503,53.266722591816624],[-127.18037186963053,53.26662319783924],[-127.18065220789236,53.26650499824213],[-127.18090063765341,53.2664549008415],[-127.18118449649289,53.266395495283355],[-127.18145860447194,53.26632329596481],[-127.18168206126938,53.266219661859964],[-127.18188269117697,53.26607256439261],[-127.18214731237161,53.26599709644424],[-127.18244565479698,53.26601933058991],[-127.1827426740149,53.266027575488124],[-127.18303659144516,53.265992151311224],[-127.18332339406895,53.2659371931891],[-127.18358488909487,53.26585110399507],[-127.18377831319647,53.265715280024764],[-127.18393080391743,53.26555968626393],[-127.18409752722815,53.26540956169824],[-127.18424910065039,53.26525509712888],[-127.18435611215229,53.265085954922654],[-127.18447456192843,53.26492230089488],[-127.1846669382072,53.264783124314356],[-127.1849033980007,53.26467487210362],[-127.1851871290742,53.264611531801954],[-127.18540340616296,53.264487237446986],[-127.18560920511656,53.26435800962375],[-127.18585716299478,53.26425804875371],[-127.18600601188719,53.26410753518738],[-127.18612145514521,53.26393774218291],[-127.18622649864682,53.26376525625061],[-127.18641919422242,53.263637834169806],[-127.18667006540423,53.263541768591715],[-127.18693240657889,53.263452866477095],[-127.18719853366756,53.2633650463847],[-127.1875114461032,53.26327115498277],[-127.18769821668467,53.26316675572728],[-127.18789439200039,53.263029211837946],[-127.18812316600491,53.26291599212187],[-127.188334423706,53.26278053743181],[-127.1886572078547,53.262670857085254],[-127.18887589230262,53.26266586940081],[-127.18918112566257,53.26269978711148],[-127.18948037962093,53.26268837935684],[-127.18977800754581,53.26268539536353],[-127.19008848047378,53.26270525647313],[-127.19037605763558,53.262712456265795],[-127.19068441629294,53.26272392881688],[-127.19097732661872,53.26272042442645],[-127.19127997342288,53.26272915600077],[-127.19158254120232,53.262735081871234],[-127.19188010673346,53.26273040800503],[-127.19216951242242,53.262702293880736],[-127.19243174190916,53.262610019028926],[-127.19270285543489,53.26253334125774],[-127.19300420347761,53.26249613208075],[-127.19331183320267,53.26248183365966],[-127.1935924527296,53.26250870882912],[-127.1938147616599,53.26263196817874],[-127.1940507672716,53.26274164330269],[-127.19435193303967,53.26276438370522],[-127.19464855574095,53.26279277158073],[-127.19495955006298,53.26279748351054],[-127.19524797582383,53.26276824226931],[-127.19550830553536,53.26267542392796],[-127.19567007238922,53.262551094806504],[-127.19590640791728,53.26240697437696],[-127.1961140420491,53.26227770031119],[-127.19632547732874,53.26214951699911],[-127.19646655912805,53.26205788975868],[-127.19663832245388,53.26192169765747],[-127.19672925957295,53.26175046453074],[-127.19684099341481,53.26158406826933],[-127.19693573182649,53.261414472863045],[-127.19688104493909,53.26124134699618],[-127.19670507197975,53.261095780679526],[-127.19654954868086,53.26094327591092],[-127.19640237246547,53.26078676950107],[-127.19623754194946,53.26063660813532],[-127.19606897379617,53.26048759575531],[-127.19592274727196,53.260331079173774],[-127.19581000270502,53.260163584689316],[-127.1956387241886,53.2600179605142],[-127.19548320800143,53.25986489850112],[-127.1954209395469,53.25968905152373],[-127.19540647820821,53.25950991710277],[-127.19542202655585,53.25932935980292],[-127.19539939316465,53.25915982746371],[-127.19527606508974,53.258982910313954],[-127.19516894337877,53.25881479378485],[-127.19505811414089,53.258647834998904],[-127.1949053822122,53.258493623644924],[-127.19474179468598,53.25832103762009],[-127.19470520235481,53.258156127665465],[-127.19462238104983,53.25798328390441],[-127.19451247168568,53.25781575954889],[-127.19434502553388,53.25767233588684],[-127.19422653512167,53.257500415636265],[-127.19413530822446,53.25732933238965],[-127.19406463962564,53.257154689613124],[-127.1939874393718,53.25698122405744],[-127.19389433734958,53.256810168435635],[-127.19380696687517,53.25667602266327],[-127.19370537494673,53.256470316744156],[-127.19359925945281,53.25630386485158],[-127.19338832742417,53.256182731595686],[-127.19318640494909,53.256048626061926],[-127.19303345180553,53.25588600622803],[-127.19286866808358,53.25573639541031],[-127.19271035406763,53.25558335781267],[-127.19258368839247,53.255420482070654],[-127.19251678394811,53.25524579149109],[-127.19248731731668,53.255066807272286],[-127.1924625211969,53.25488722031611],[-127.19242463005214,53.25470887650309],[-127.19240172746245,53.254529826242106],[-127.19238447216429,53.254350719200055],[-127.19236250043889,53.25417110377577],[-127.19234991536511,53.25399138502379],[-127.19236175169901,53.25381198552865],[-127.19238202839725,53.2536325011779],[-127.1924023358803,53.25345358122946],[-127.19241792646417,53.2532741439383],[-127.1924429034339,53.25309461227558],[-127.1925027132178,53.25291864771789],[-127.19256723917296,53.252743200430956],[-127.19264495312466,53.25256930573681],[-127.19276612814681,53.25240504955692],[-127.1929460828804,53.25226093594459],[-127.19307580619787,53.25209996391304],[-127.19315258643283,53.25192663395611],[-127.19320940933336,53.25174454063687],[-127.19325345489207,53.25157545712277],[-127.19329727106972,53.251497701519654],[-127.19342707913567,53.251439814615345],[-127.19365015003349,53.25139330572927],[-127.19397525486896,53.25136874429694],[-127.19426508876823,53.251359103643075],[-127.19460471985035,53.25131703087956],[-127.19495112346576,53.251315782882095],[-127.19520336872861,53.25133789273087],[-127.19534696791891,53.2513358810508],[-127.19549544312795,53.25134055205353],[-127.19566947954775,53.25138585920165],[-127.19575888251107,53.25142641673247],[-127.19603950897313,53.25155580726397],[-127.19614983738118,53.25153956349895],[-127.19629405671698,53.251460238492555],[-127.1963644713251,53.25142703368316],[-127.19648734207341,53.25132326364357],[-127.19659201640533,53.251272905537526],[-127.19674430416141,53.25124671812027],[-127.19698679703292,53.25115631618938],[-127.19697576895443,53.25096594141688],[-127.1969486343094,53.250770682389536],[-127.19714242260623,53.25065163836348],[-127.19740163113248,53.25055489954591],[-127.19762753559303,53.25044280930418],[-127.19786476545855,53.250332845259884],[-127.19809528938224,53.25021846642683],[-127.19830378723864,53.250088622538726],[-127.19845525374164,53.24993413859305],[-127.198626691304,53.24978842564923],[-127.19885432237115,53.24967126873906],[-127.19905619011627,53.24953981417058],[-127.19923800409639,53.249396227435696],[-127.19939325102011,53.24924283342784],[-127.19955892367607,53.24909268631877],[-127.1997626793614,53.24896176713748],[-127.1999797637226,53.24883688002255],[-127.20000104055337,53.248826015461304],[-127.20033159136507,53.2485974487001],[-127.20042907898215,53.248427265324445],[-127.20055701227494,53.24827078453349],[-127.20082304724134,53.248184053378274],[-127.20104682992411,53.248064134183075],[-127.20120966896825,53.24791401326205],[-127.20139339361029,53.24777208885288],[-127.20159519645716,53.2476389450722],[-127.20178937736948,53.24750139611446],[-127.20190864132108,53.247337713754426],[-127.20197405070002,53.24716225140549],[-127.20208903016096,53.24707873317833],[-127.20238381424656,53.24711215733392],[-127.20266157201853,53.24717377511652],[-127.20292047438336,53.247265272517076],[-127.20319568194407,53.2473364347792],[-127.2034790094294,53.24739574418384],[-127.20376588444753,53.247447738080766],[-127.2040383504095,53.24752116725196],[-127.20433206452194,53.247549559652605],[-127.20463292001241,53.247564997414834],[-127.20492482167916,53.24759564778244],[-127.20519650327712,53.24767412010057],[-127.2054333858962,53.24778376398207],[-127.20567487400382,53.2478899990518],[-127.20591082804755,53.24799965143119],[-127.20614959057399,53.24810871901553],[-127.20641025618707,53.24819626469094],[-127.20670168046442,53.248242602735544],[-127.20694218045188,53.248347169027774],[-127.20718827977197,53.248449992604286],[-127.20745174077365,53.248536387058415],[-127.207682215986,53.24865113851234],[-127.20792369856245,53.24875680438277],[-127.20817893301816,53.24885113355556],[-127.2084414836512,53.24893809984948],[-127.20871038928652,53.24901771301055],[-127.20897655302824,53.249100159274064],[-127.20924637496195,53.24917865034849],[-127.20952523159222,53.24924527884657],[-127.20980225907377,53.24931304586243],[-127.21007848564605,53.249385858224734],[-127.21031531042155,53.24949269628136],[-127.2105356904002,53.24961482411034],[-127.21080826225008,53.249691033624806],[-127.21107988925802,53.24976726113075],[-127.2113542279183,53.24983953405999],[-127.21163039634529,53.24991010242317],[-127.21191543751085,53.24996266028889],[-127.2122135687671,53.24998033890011],[-127.21251333758592,53.24999016541249],[-127.21280887118075,53.250015712662766],[-127.21309758829011,53.25006542436301],[-127.21338972266044,53.25010333952469],[-127.21364943636107,53.25018920293284],[-127.21384030993107,53.2503295547827],[-127.21404867225891,53.25045795748652],[-127.2143075884217,53.250548874418804],[-127.21459271762528,53.25060422180689],[-127.21488663733545,53.250638744544965],[-127.21518145541737,53.25067158107099],[-127.21547879212326,53.25069430645804],[-127.21577821210607,53.25069180272446],[-127.21607307020051,53.250660767475324],[-127.21635089981052,53.25059292921654],[-127.21660539579133,53.250497316819796],[-127.21683397642686,53.25038235626924],[-127.21699104024204,53.25022892005879],[-127.21707715202791,53.25005659818943],[-127.21709356761522,53.249877147794244],[-127.21707149290214,53.249697527574895],[-127.21707290632212,53.24951823107651],[-127.21711752714639,53.24934017647135],[-127.2172225206322,53.24917157795862],[-127.2173862377656,53.249021434329734],[-127.2175870651271,53.24888827298989],[-127.21782134529177,53.248775492843414],[-127.21808651511306,53.248692657827306],[-127.21836726464727,53.24862870193954],[-127.21864803088967,53.248565874682384],[-127.21893977401113,53.24852533525488],[-127.21923679903203,53.24850491902168],[-127.21953477084138,53.248485048082],[-127.21983158592961,53.248457900464096],[-127.22011729160825,53.248403418265205],[-127.22039705799392,53.24833835607566],[-127.22064772840133,53.24824108876763],[-127.22089931158135,53.24814269996745],[-127.22118386517784,53.248113434107054],[-127.2214769891148,53.24815356016849],[-127.22177360724918,53.24818412066255],[-127.22206759461254,53.24815644076078],[-127.22234345623048,53.24808636735666],[-127.22262124249997,53.248017949750626],[-127.2229079699149,53.24796681176362],[-127.22319663749633,53.24791733832164],[-127.22348027955027,53.24785670189072],[-127.22371080185106,53.247745078072796],[-127.2239730804188,53.247660009501686],[-127.22426691673249,53.247627287809735],[-127.22456378660789,53.24760181293569],[-127.22486289154801,53.24758919568344],[-127.22516181278854,53.24760236040162],[-127.22546735999661,53.24761713220235],[-127.22569256117777,53.2477106048928],[-127.22593029706019,53.247815161731566],[-127.22620647659546,53.24788569623525],[-127.22648535031618,53.24795172914425],[-127.22677044540964,53.248005927158296],[-127.22705474148931,53.24806517059937],[-127.2273493883309,53.248092376032645],[-127.22764599526609,53.24812292199922],[-127.22791032826083,53.248205345089126],[-127.22818466940892,53.2482770235451],[-127.22847331114959,53.24832389294041],[-127.22875666456444,53.24838258632664],[-127.22903030655762,53.248462669480936],[-127.22917925864033,53.248612960459795],[-127.22926223413657,53.248786336378856],[-127.22936664291807,53.24895445225061],[-127.22947111773826,53.249124808372116],[-127.22945193183502,53.24930428981032],[-127.22926339889545,53.249439585194],[-127.229074113087,53.2495810553759],[-127.2290584514139,53.24975265656137],[-127.22921604196374,53.24990901628669],[-127.22938372229339,53.25005742762097],[-127.2294909264973,53.250224949596905],[-127.22957762842614,53.250397175019074],[-127.2296820586189,53.25056584607932],[-127.2297808745372,53.250735139986524],[-127.22985822652308,53.25090913840504],[-127.22992999518948,53.25108431517001],[-127.23005672685879,53.25124491999561],[-127.23029090189048,53.25135509875527],[-127.2305761553746,53.251413768232695],[-127.23086309100987,53.25146569648519],[-127.23112472581234,53.251551502092894],[-127.2313654030475,53.251659379211084],[-127.23161065117628,53.25176271736536],[-127.23186321367464,53.2518592649356],[-127.23211760541751,53.25195410772035],[-127.23237292795893,53.252048375557045],[-127.23260899099105,53.2521585391536],[-127.23281097228106,53.252291457827624],[-127.23297589902195,53.25244101326051],[-127.23311575448179,53.252600357944324],[-127.23326676001174,53.25275566025775],[-127.23344561490873,53.25290002343627],[-127.23366696171124,53.253020422606276],[-127.23391862274026,53.25311808678999],[-127.23417945754056,53.253207820363684],[-127.23444479897866,53.25329133916006],[-127.23469368772865,53.25339015108476],[-127.23493797539773,53.25349238090191],[-127.23522049032974,53.25355274416326],[-127.23550932351023,53.253604641572345],[-127.23580109263827,53.25362849481837],[-127.23609174444057,53.25358233126564],[-127.23638059864126,53.2535384177951],[-127.23667959462246,53.25352073448584],[-127.23696941200029,53.25347793900833],[-127.23725312096822,53.25341895456408],[-127.23754809705073,53.253391782111585],[-127.23784867796432,53.25339593384778],[-127.23814521466731,53.25342252838976],[-127.2384241107563,53.25348741286646],[-127.23868221593989,53.25357996195081],[-127.23891277036836,53.253693523279594],[-127.23911850086283,53.25382528068436],[-127.23935547158341,53.25393317156398],[-127.23964325133564,53.25398115266002],[-127.23994390215647,53.253987530470184],[-127.24023986110055,53.25396202634],[-127.24053059116638,53.25391809210874],[-127.24082434286667,53.25388140442757],[-127.24112258917512,53.253869876130764],[-127.24142247447607,53.253882425521226],[-127.24171810229238,53.253909585437114],[-127.2420095554046,53.25395416082009],[-127.24227757709171,53.254032587407224],[-127.24251002124748,53.254146131020676],[-127.24268706924532,53.254291619995215],[-127.24283068918477,53.25444979356826],[-127.24300677542863,53.2545941716266],[-127.2432263633076,53.2547173684718],[-127.24346615831539,53.254825230619126],[-127.24371783639096,53.254922318318584],[-127.24398505182846,53.255004675849484],[-127.24425584141025,53.255080827975085],[-127.24452031636645,53.25516545409163],[-127.24477568761552,53.25526025979969],[-127.24501731737884,53.25536641434642],[-127.24524512331202,53.25548112186951],[-127.24552766790282,53.25554202524665],[-127.24582078212764,53.25557872136719],[-127.24609428839418,53.255651488231706],[-127.24633962878752,53.255755915889395],[-127.24656102730599,53.25587629082109],[-127.24672320950435,53.25602641213302],[-127.24684358868473,53.256191548257604],[-127.24697977043417,53.25635147134921],[-127.24712618874636,53.256508480900074],[-127.24724469343849,53.256673636312016],[-127.247341716591,53.256842934783606],[-127.24738828089484,53.25702060733175],[-127.2474095418544,53.25720022219325],[-127.2474373652351,53.257379212259146],[-127.24747175111914,53.25755757752495],[-127.24748925773423,53.257737231804356],[-127.24753485931856,53.25791379383572],[-127.24762723499337,53.25808482613147],[-127.24771867990769,53.258255859172486],[-127.24784000058195,53.25842098430033],[-127.24799103127441,53.258574582664856],[-127.24823998310971,53.258673374858546],[-127.24852526113656,53.25873031621999],[-127.24880962537188,53.2587878312603],[-127.24909043578317,53.25885267087601],[-127.24938164896714,53.25888770213299],[-127.24967956366885,53.25886383051882],[-127.24997345799282,53.25883104534468],[-127.25027504298687,53.25883626698036],[-127.25055921129415,53.25888705682422],[-127.25075840635891,53.259017742705375],[-127.25084245531683,53.25919221292762],[-127.2508871761042,53.259370468243105],[-127.25090655910527,53.259549546450444],[-127.2509109531747,53.25972933844851],[-127.25091249048607,53.259908048997815],[-127.25086517708465,53.26008614508251],[-127.25084606066326,53.2602650733423],[-127.25085419473604,53.26044482584444],[-127.25086046655274,53.26062460692708],[-127.25095372485502,53.26079282152023],[-127.25115680140438,53.26092738310806],[-127.25136722380208,53.26105626430178],[-127.25158949587811,53.26117325023835],[-127.25187396388621,53.2612335627547],[-127.25214931167417,53.26130349074258],[-127.25238733891729,53.26141303006937],[-127.25260881729022,53.26153450456349],[-127.25281366415514,53.26166512734625],[-127.25300744547252,53.2618025807645],[-127.25322616867886,53.261925768472544],[-127.25344753591231,53.26204332527529],[-127.2535128419476,53.26221855625018],[-127.25347120350786,53.2623977227741],[-127.25343423468915,53.262576275194576],[-127.25339821192125,53.26275481759015],[-127.25335748531981,53.26293284490248],[-127.25331297142067,53.26311035640932],[-127.25328823081445,53.263289344281716],[-127.25326255837504,53.26346833300793],[-127.25323876519667,53.26364786660038],[-127.25321874234388,53.26382736034836],[-127.25320340621211,53.26400680457575],[-127.25318054238524,53.26418577251019],[-127.25316520596098,53.264365216699275],[-127.25315174719127,53.26454464103839],[-127.25312230280227,53.26472366943838],[-127.25310791234679,53.26490310357518],[-127.25314419109431,53.265081446825974],[-127.25313167842663,53.26526086110124],[-127.25308812403638,53.26543891791469],[-127.25303326930768,53.26561598247071],[-127.2529896976489,53.265793483614836],[-127.2529800098624,53.26597342374459],[-127.25304435710783,53.26614810901243],[-127.25332892736141,53.266179274884195],[-127.25362712414345,53.26619461790499],[-127.2539105991498,53.266252130495744],[-127.25417614461409,53.26633840051441],[-127.25426161778284,53.26649660994608],[-127.25423290703978,53.26666835187],[-127.25439806737882,53.26682180159783],[-127.25450918418016,53.26698925962996],[-127.25465739561932,53.26714120292151],[-127.25489461419784,53.26725355161675],[-127.25513814933565,53.26735742470826],[-127.25540744356415,53.267443096597745],[-127.25560159168494,53.26756037262872],[-127.25561273863187,53.267745703999715],[-127.25562558026073,53.2679248501212],[-127.25564877471426,53.26810444245679],[-127.2556672504549,53.268283528928535],[-127.25567636987675,53.268463834895904],[-127.25570044647466,53.26864174155644],[-127.25579384171633,53.26881331212266],[-127.25592915156703,53.2689732339067],[-127.25612478816493,53.269108430479996],[-127.25634538616949,53.269229907373756],[-127.25648438876937,53.269387548409156],[-127.2565825081764,53.26955963305927],[-127.25651481447039,53.269715536203854],[-127.25638341620305,53.2698766047454],[-127.25624254484359,53.270035523408986],[-127.25609123423611,53.27019063506552],[-127.25592948430642,53.270341939676214],[-127.25577531354797,53.270495960639025],[-127.25563254148788,53.27065377808269],[-127.25550589120199,53.27081703629468],[-127.25540855888352,53.270987263054],[-127.25535744604684,53.271163723881386],[-127.25535998219125,53.27134353449538],[-127.25539253631797,53.27152247179302],[-127.25543072352983,53.27170079370687],[-127.2554510945514,53.27188041560957],[-127.25541221437483,53.27205786747725],[-127.25528933179582,53.27222164120383],[-127.25511141628212,53.27236694812337],[-127.25491631340738,53.272502916638985],[-127.25472411710149,53.27264165087419],[-127.25456232108056,53.27279238902909],[-127.25445646963263,53.27296046377927],[-127.2543987843582,53.27313699341475],[-127.25437592038782,53.27331595177072],[-127.2543953413635,53.27349559267037],[-127.25446253046076,53.27367023767152],[-127.25456151658868,53.27384007345049],[-127.25465117880331,53.27401223975835],[-127.25472776111216,53.27418679424985],[-127.25490671357389,53.27432888314611],[-127.25517129714471,53.2744123645167],[-127.25545487953322,53.274471557888944],[-127.25574195234216,53.274521740627925],[-127.25603264924625,53.274567411255596],[-127.25632241668536,53.27461364678754],[-127.25660952483516,53.274664947580526],[-127.25689219587382,53.274724702971746],[-127.2571604774,53.27480646451722],[-127.25737554015132,53.274930239131976],[-127.25758327662231,53.275060823005965],[-127.25782960473137,53.275161855354554],[-127.25807779751963,53.275262876398195],[-127.25832600625462,53.27536388779721],[-127.25857877101554,53.27546037730159],[-127.25883610805326,53.27555289151864],[-127.25909437603097,53.27564483057328],[-127.25934164305794,53.275745858831996],[-127.25955307753107,53.275873594319854],[-127.25974787763911,53.27601102583098],[-127.25985525008427,53.27617740673829],[-127.25992715428964,53.27635199864054],[-127.26003270001446,53.27652007504632],[-127.26014576169311,53.276688636294146],[-127.26034608372333,53.276821526167026],[-127.26063894237915,53.27684475255289],[-127.26086818246391,53.27693923712674],[-127.26106226116387,53.27708340618223],[-127.261268141021,53.27721399445697],[-127.26153278872815,53.27729858167587],[-127.26182344404857,53.277341997750675],[-127.26211848663766,53.277375272925426],[-127.26241176713313,53.277411936602896],[-127.26270157770146,53.27745871208991],[-127.26299223532628,53.27750212529923],[-127.26328980329791,53.277525286129226],[-127.26358940880085,53.277522097043985],[-127.26388538427614,53.277492053634],[-127.26415744369041,53.277416323315926],[-127.2644314644946,53.27734337722248],[-127.26473068442043,53.27732786374435],[-127.26503045625903,53.2773302717815],[-127.26505887842009,53.27715012257535],[-127.26515327722676,53.27697712265834],[-127.26534286713655,53.276845678311815],[-127.26561663017237,53.27676432383978],[-127.2658965309833,53.27669971091502],[-127.26616756781502,53.27662174575151],[-127.26642603246808,53.276531588481944],[-127.26667092784892,53.27642757354236],[-127.26689756530679,53.276309742094284],[-127.26709166690026,53.27617264410834],[-127.26725341445844,53.27602133354489],[-127.26743035692522,53.27587601881067],[-127.2676292422239,53.275741674553174],[-127.26786355462248,53.27562936173908],[-127.26812392149483,53.275540300814754],[-127.26839792299955,53.275467336533545],[-127.26868374871702,53.27541273814481],[-127.26898181974494,53.27539050298207],[-127.26927834540858,53.27541086304776],[-127.2695759697337,53.27543625740978],[-127.26987606537858,53.27544985472937],[-127.27016704905589,53.27541088473201],[-127.2704459516118,53.27534458629674],[-127.27072082900415,53.27526993092776],[-127.27093120652945,53.27514330150197],[-127.27104836848385,53.27497845202414],[-127.27112392183564,53.2748045281545],[-127.2711429421718,53.2746250423902],[-127.27108690113242,53.27444860152549],[-127.27107869494976,53.2742694073196],[-127.27111558436074,53.27409085065169],[-127.2711862789586,53.27391136714825],[-127.27139035403339,53.27379433308136],[-127.27168058058209,53.273730151276006],[-127.27196987015768,53.27376011090516],[-127.2722572785876,53.2738208996433],[-127.27254703992283,53.273865975272265],[-127.2728431005184,53.27387119992016],[-127.27314234155054,53.27385678520209],[-127.2734432598342,53.27383619338613],[-127.27374346579191,53.273822887308455],[-127.27404422921569,53.273828058487815],[-127.27433013797192,53.27377680691093],[-127.27462208505902,53.27376975458996],[-127.27492169747991,53.27379903144789],[-127.27521122641157,53.2738368152724],[-127.27547688014917,53.27392360184297],[-127.27576023369275,53.27397434110523],[-127.27605526195771,53.27400702594195],[-127.27634941180223,53.27404196052578],[-127.27664769131674,53.27405836595224],[-127.27694767779548,53.274068584952246],[-127.27724592356874,53.27408385976364],[-127.2775442865503,53.27410250307544],[-127.2778433269475,53.274112730000965],[-127.27814390654353,53.27411173444678],[-127.2784641318488,53.274108285483074],[-127.2787321323023,53.274024156489276],[-127.2789521420197,53.2739063727875],[-127.27914045523796,53.2737653994429],[-127.27932113763225,53.27362114648225],[-127.27949516797213,53.27347416812797],[-127.27966919682869,53.27332718054624],[-127.27985660955319,53.273187900935405],[-127.2801005037657,53.273083303602185],[-127.28036275809112,53.27299587120404],[-127.28061047628465,53.27289403730718],[-127.28085629591254,53.27279109388407],[-127.28110015347127,53.27268593904306],[-127.28133732474788,53.272576929578456],[-127.28155144726125,53.272451360751326],[-127.28175311304875,53.27231751768706],[-127.2819662695708,53.27219140272313],[-127.28218329784322,53.27206859811405],[-127.2823725407622,53.27192817399958],[-127.28258770741199,53.27180650924008],[-127.28287042521909,53.27174351030759],[-127.28315157236494,53.271691168111865],[-127.28343150793809,53.27159849968912],[-127.2836967649048,53.27145612181331],[-127.28383261877539,53.27132075479247],[-127.28382946272843,53.2711863267131],[-127.28395578772043,53.270954133250925],[-127.28412412244532,53.270806079751075],[-127.28430286115518,53.270660163400244],[-127.28448161741254,53.270515358120846],[-127.28465559980924,53.27036780740889],[-127.28486975252255,53.27024391715809],[-127.2851173733477,53.2701392686913],[-127.28534017143255,53.2700219980833],[-127.28549228638535,53.269865718735005],[-127.28564917310945,53.269712193253966],[-127.28579847822277,53.26955649968205],[-127.28594018513685,53.26939809141387],[-127.2861208597346,53.269254947927465],[-127.28633879257855,53.26913213439976],[-127.28660397045041,53.26904913801987],[-127.28681076960584,53.268930926376406],[-127.28694435374223,53.268783810081615],[-127.28702237418577,53.26863169363038],[-127.28705355523681,53.268452627874495],[-127.28708568468902,53.268274116547325],[-127.28712250117437,53.268095554354936],[-127.28716310541989,53.26791751578924],[-127.28720464049354,53.26773945812865],[-127.28724805339289,53.26756138902766],[-127.28729148286537,53.26738387548921],[-127.28733015837827,53.26720472822238],[-127.28736318106921,53.267024530690406],[-127.2874056289043,53.266845907177014],[-127.28747077932302,53.26667207518324],[-127.28757272788127,53.26650401121328],[-127.28770773542927,53.2663423115249],[-127.28785409234385,53.26618272952928],[-127.2879900614368,53.266021583777665],[-127.28809490087916,53.265856284709635],[-127.28811563757625,53.26567397911502],[-127.28804737341397,53.265498798012445],[-127.28790733633652,53.26534175950824],[-127.28774111390378,53.265188375545215],[-127.28759076085348,53.265032013361306],[-127.28744133810586,53.264875076148954],[-127.28730125426223,53.26471636113008],[-127.28716910951277,53.26457157084799],[-127.28710965941279,53.26437724465665],[-127.28708242392494,53.26419265370582],[-127.2870950119205,53.26401995652868],[-127.28711564932654,53.26383428151345],[-127.2871584023088,53.263665739173724],[-127.28716466652493,53.263501518947784],[-127.28715045380277,53.26331230456492],[-127.28709060548542,53.26313591096352],[-127.28707856317682,53.26295675771606],[-127.28710691575368,53.26277772205163],[-127.28721829612739,53.26261124091522],[-127.28740749686388,53.26247136368056],[-127.28761770922216,53.262343019131926],[-127.287823148384,53.26221192916566],[-127.28801518847175,53.262073140599036],[-127.28814554493557,53.26191317562739],[-127.2882492886192,53.261742849967],[-127.28835497745247,53.26157474412125],[-127.28845877059021,53.261406093998666],[-127.28856048899418,53.261261562078055],[-127.28868339487182,53.26119635726002],[-127.28882922284615,53.26114322910259],[-127.28900254188504,53.26109876630765],[-127.28872618813273,53.26102893411562],[-127.28842868828444,53.26100471669641],[-127.28813475761278,53.261035921325536],[-127.28784516247673,53.26108612709739],[-127.2875634528129,53.26114857236186],[-127.28729247147899,53.26122434685334],[-127.2870351596654,53.261316780313145],[-127.28678559808691,53.261417528601385],[-127.28658580749712,53.261548555582394],[-127.28648674417971,53.26171882899068],[-127.2864084516168,53.26189223867332],[-127.28626487706262,53.26205011287668],[-127.28606516918842,53.26218449956445],[-127.28582617361899,53.26229297485407],[-127.28555912270048,53.262374305256024],[-127.28527635243225,53.26243339483828],[-127.28499482642192,53.26247118030634],[-127.284704948401,53.26245078829051],[-127.28441285227012,53.26241921434218],[-127.2841159867528,53.262385450248374],[-127.28382809953385,53.26233758620692],[-127.28356710291845,53.26224796223728],[-127.28329991782653,53.26217073935824],[-127.28300232782694,53.26214370347967],[-127.28270328573184,53.26213068461819],[-127.2824041248947,53.26211374893851],[-127.28211103347498,53.26207993907308],[-127.28182660175183,53.262022503946355],[-127.28169087781842,53.261975231851146],[-127.28163773326332,53.26189512823678],[-127.28157041625848,53.261719368446606],[-127.2815784398672,53.26151982860486],[-127.28157420758016,53.26138037361755],[-127.28152466614074,53.26129518418133],[-127.2813758523575,53.26124972942195],[-127.28099685776677,53.26123253188851],[-127.2806986674203,53.26121614624338],[-127.28041426028174,53.261159263303206],[-127.28015605132963,53.26106792554664],[-127.27993818350824,53.26094422162344],[-127.27974712530487,53.26080621711419],[-127.27954444832103,53.260657132368415],[-127.27947901959254,53.260481351029775],[-127.27942199727637,53.26030380269162],[-127.27930991877952,53.260138053210596],[-127.27914941469106,53.25998571622177],[-127.27895004255154,53.259852282164196],[-127.27873676889234,53.259725156003604],[-127.27853550491294,53.25959118586888],[-127.27837410807075,53.25943996902055],[-127.27826107288197,53.2592736730717],[-127.27818257672922,53.25910027280746],[-127.2781312113834,53.25892322759938],[-127.27812389249105,53.2587434578444],[-127.27814287584683,53.258563969462564],[-127.27814401528966,53.2583846732962],[-127.27814515292742,53.25820482135218],[-127.27818106720156,53.258026271032065],[-127.27824712248793,53.25785075751415],[-127.27833675659605,53.25767890723316],[-127.27848134316538,53.25752271678661],[-127.27869059495711,53.25739384231999],[-127.27893920583386,53.2572931210464],[-127.27919268602098,53.257197940394065],[-127.27933544318512,53.257044009592],[-127.27938452739109,53.25686643723988],[-127.27939410059979,53.256686494113836],[-127.27938865413508,53.256506703980676],[-127.27938508539525,53.25632690254536],[-127.27938998932207,53.2561475655031],[-127.27939956207311,53.25596761334781],[-127.27940631142991,53.25578770058718],[-127.2794065142567,53.25560841419118],[-127.27940294524528,53.25542860371077],[-127.27940595480212,53.2552487312306],[-127.27941554438364,53.25506934355065],[-127.27942699412459,53.254889371045024],[-127.27944409287588,53.25470990234083],[-127.27947529786043,53.25453140200225],[-127.27951872976904,53.25435333450474],[-127.27954994919325,53.25417483395124],[-127.27955294274491,53.253994952550194],[-127.27953342401659,53.25381532291763],[-127.27950078308682,53.253636946365],[-127.2794484727105,53.253459911427235],[-127.27936531391711,53.25328712651788],[-127.27925135989608,53.25312083205886],[-127.27910946854848,53.252962126642764],[-127.27892951123248,53.252817842540544],[-127.278687912588,53.25271511741605],[-127.27840968568526,53.25264304080331],[-127.278195637721,53.25251984827541],[-127.27800545274063,53.25237846983416],[-127.27772284862806,53.252316523542866],[-127.27744968421867,53.25225671598582],[-127.27730332024834,53.25210477977421],[-127.27721709539273,53.25192361793325],[-127.27719858639064,53.251746218023435],[-127.2772353625196,53.2515654170351],[-127.27732317618296,53.251395271731845],[-127.27751712945921,53.25125815492356],[-127.27773594056711,53.25113534585268],[-127.2779432519313,53.25100537233044],[-127.27814770280094,53.250873743970395],[-127.27834168310976,53.2507371901772],[-127.27849661372291,53.25058257268765],[-127.27868015802588,53.25044276918729],[-127.2789248378014,53.25033759843197],[-127.27916190631774,53.250229156608256],[-127.2793873883758,53.25011018974839],[-127.2796282423433,53.2500028176894],[-127.27989038857493,53.24991651440905],[-127.28017205151666,53.249854642596134],[-127.2804577397879,53.24980169985517],[-127.28074339310751,53.24974762729999],[-127.28103396903853,53.2497013535606],[-127.28132166794691,53.249652860154846],[-127.28160038320894,53.24958654358409],[-127.28186445078497,53.249501891405735],[-127.28209188330995,53.24938569500235],[-127.28226170995232,53.24922754968176],[-127.28228450970437,53.24914381917007],[-127.28228794175064,53.2490401374323],[-127.28208009871854,53.24896674382529],[-127.28182665336062,53.24893698760339],[-127.2815440347944,53.248874494864054],[-127.28127052850067,53.24880237403312],[-127.28101306933681,53.24870262178464],[-127.28079899978154,53.24857831353551],[-127.28070759459163,53.24841234140086],[-127.28067011508254,53.24822897899347],[-127.28064306899788,53.248048865504835],[-127.28052082286779,53.24788770830941],[-127.28040503606316,53.247722563878625],[-127.28026505236849,53.24756439473496],[-127.28014647628014,53.24739983593491],[-127.27998874057629,53.24724466386676],[-127.27997328257574,53.2470750746467],[-127.28003549143276,53.24689735930826],[-127.28013740474154,53.24672873542831],[-127.28027430558498,53.24656870699835],[-127.28042070682238,53.246411928456496],[-127.28055286960715,53.24625026552526],[-127.28072965875644,53.246105493279515],[-127.28092357486135,53.24596781475749],[-127.28112222536437,53.245831761072864],[-127.28132182267098,53.245696261551934],[-127.28151384118577,53.24555804671027],[-127.28169539165513,53.24541545356141],[-127.28186079280816,53.24526687620268],[-127.28200818285276,53.24511233482579],[-127.28214320921553,53.24495231526738],[-127.28226875020994,53.24478960123071],[-127.28238858972286,53.244624151832454],[-127.28250367744876,53.24445706838972],[-127.28261969519225,53.24428997475309],[-127.28273763790835,53.244123980692585],[-127.28286222608794,53.24396071146161],[-127.28297262765037,53.243794242904166],[-127.28301885627806,53.24361613362611],[-127.2830303047124,53.24343672425657],[-127.28302577565981,53.24325693193309],[-127.28301843865599,53.24307716100572],[-127.28300171794372,53.2428975005409],[-127.28300941265485,53.242718131712934],[-127.28305565709584,53.24254058688389],[-127.28311979113865,53.24236508953448],[-127.28320183144507,53.24219219523908],[-127.28330464978374,53.24202300238362],[-127.28343301740301,53.241860820884376],[-127.28357937559372,53.24170403821884],[-127.2837304832668,53.241548889222315],[-127.28388062492614,53.24139262993081],[-127.28403364115803,53.24123858037256],[-127.28418946385858,53.24108450020206],[-127.2843443717316,53.24093099446004],[-127.2845011720847,53.24077802377893],[-127.2846579541361,53.240624488313806],[-127.28481475221655,53.24047151719358],[-127.28496774480936,53.24031691075229],[-127.2851179115878,53.24016176996092],[-127.28528960031547,53.24000471040884],[-127.2854020631268,53.2398449399117],[-127.28552852223677,53.239682211735634],[-127.28564928222946,53.23951730411155],[-127.28576816462976,53.23935241669762],[-127.28588515227764,53.239186984934825],[-127.28600213928226,53.23902156200363],[-127.28612196473127,53.23885666393503],[-127.28624934891502,53.238693924810505],[-127.28637864065921,53.23853172061883],[-127.28648995999374,53.238365238051955],[-127.2865663148426,53.23819128197343],[-127.28659842334415,53.238012767952895],[-127.2865891957429,53.23783302607215],[-127.28654248776576,53.23765536714726],[-127.28650609161193,53.23747703156575],[-127.28649216561867,53.23729734060606],[-127.2865185587,53.237116082695955],[-127.2864982257223,53.23694149916036],[-127.28648974910766,53.23678640089814],[-127.2863788484469,53.236596547566265],[-127.28625181056788,53.236431530004495],[-127.28619479224814,53.23625398268289],[-127.2862137312207,53.23607449089323],[-127.2863071420351,53.2359059524293],[-127.28643353485381,53.23574154717573],[-127.28656465923342,53.23557820200034],[-127.28669203182997,53.23541546211894],[-127.28682413623291,53.23525379126499],[-127.28696004385696,53.235093764253556],[-127.28709972028139,53.2349342519402],[-127.28729878420464,53.234783059035486],[-127.28738855454385,53.234618485425614],[-127.28752824470916,53.23445952817201],[-127.28765755299781,53.234298451355606],[-127.28771786845242,53.23412187134184],[-127.28780930733365,53.23395055595297],[-127.28789888408339,53.23377926069642],[-127.28792530307544,53.23359912230749],[-127.28797532293025,53.23342377444881],[-127.28810175291781,53.23326104297776],[-127.28824329534683,53.2331015087785],[-127.28835553871978,53.23293501370841],[-127.28843943287016,53.23276265910872],[-127.28851482196252,53.23258815576953],[-127.28859776689424,53.23241524657367],[-127.28868733719416,53.23224395058238],[-127.28876744180714,53.2320705163034],[-127.28882776666346,53.23189450008373],[-127.28886268279817,53.231715954181055],[-127.28890042253069,53.231537933342416],[-127.28889473414888,53.23135142920052],[-127.28890066212305,53.231176559983666],[-127.28906790961683,53.23102962684085],[-127.28932897102963,53.23094274739312],[-127.28960643378016,53.230870820782144],[-127.28984319447062,53.23075674668056],[-127.2900540016128,53.230622793656046],[-127.29017876111807,53.2304673567832],[-127.29021837071112,53.23028932395149],[-127.29021553246756,53.230103900251954],[-127.29020159313286,53.22992420902787],[-127.29016985428328,53.22974526727404],[-127.29013062781104,53.229566962767066],[-127.29009138470893,53.22938810262457],[-127.29005871613458,53.229209170916484],[-127.29005698049757,53.22902934680743],[-127.29006760324717,53.22885498196606],[-127.29017382346838,53.22867622414219],[-127.29023997103813,53.22850685771405],[-127.29021386156491,53.22832785458248],[-127.29018024771182,53.22814893309801],[-127.2900501123586,53.22803605358382],[-127.29000827388019,53.22792557482015],[-127.28996485654048,53.22788682814537],[-127.28993032212848,53.22783117661744],[-127.28985079700429,53.227777699883895],[-127.2896903608671,53.22777832476312],[-127.28938690558218,53.22779731317416],[-127.28923110080356,53.22779620175981],[-127.2890988660386,53.22776794972399],[-127.28900909892349,53.227716815930435],[-127.28897506045813,53.22761633691822],[-127.28898816762835,53.22743074858261],[-127.28899394078945,53.22725083373264],[-127.28901570271928,53.227071874529074],[-127.28901958267338,53.22689142443605],[-127.28901693989582,53.22671272158512],[-127.28905628944361,53.226618167843576],[-127.28913670174221,53.226547263790884],[-127.28934485411509,53.22641893416083],[-127.28955680876474,53.226292248084306],[-127.28976110420341,53.226160606957926],[-127.28995775711502,53.2260245574656],[-127.2901773831251,53.22590338947174],[-127.29042187527756,53.22579763803706],[-127.29065499037247,53.22568809251122],[-127.29076440060494,53.22561462150005],[-127.29082209044837,53.22553724033541],[-127.29091449487896,53.22536758725973],[-127.29098986056417,53.22519308166338],[-127.29110489560401,53.22502710833668],[-127.29115767941468,53.22485060743456],[-127.29120762207424,53.22467301688599],[-127.29128489552158,53.224499610779326],[-127.29139424837317,53.224332022633035],[-127.2915319965311,53.22417252462699],[-127.29166972639628,53.22401246187883],[-127.29182833069632,53.22386002427049],[-127.29193810759666,53.223706433280576],[-127.29197877191196,53.223624745817],[-127.29203076049745,53.22354518496856],[-127.29208773325739,53.223505900563254],[-127.29217795559244,53.22348026503432],[-127.29237126338148,53.22348096354215],[-127.29265962179987,53.22349070124666],[-127.29295063270014,53.22349537133065],[-127.29310664951167,53.22347349963299],[-127.29323871030397,53.22343508084246],[-127.29334120445142,53.223380741008995],[-127.29341344810527,53.22328862350851],[-127.29341902018238,53.22319500130989],[-127.29337049664409,53.22311148953697],[-127.2932757800175,53.22305201326285],[-127.29321825942102,53.2229506707909],[-127.2932054302046,53.22286844587197],[-127.2932309298865,53.22278188535371],[-127.29325663510629,53.22270204588101],[-127.29335392103435,53.22260069972395],[-127.29350729736494,53.22246175430821],[-127.29373164348684,53.22234221298858],[-127.29397806763089,53.22223922950605],[-127.29423898105992,53.222150098654986],[-127.29449799821161,53.222059867371584],[-127.29475605179803,53.22196909023768],[-127.2950150174104,53.22187773780398],[-127.29525663355798,53.22177088665621],[-127.29547212724573,53.22163854781733],[-127.29562530441531,53.22149344310347],[-127.29575161762767,53.22132901770307],[-127.29589312557786,53.22117059354026],[-127.29604220448249,53.22101432750645],[-127.29620838811417,53.220865162282884],[-127.29644058478596,53.22072703612187],[-127.29664707100012,53.22057686466103],[-127.29678359860611,53.22043978427929],[-127.29695006936767,53.22030013498786],[-127.29716293299724,53.220173980165555],[-127.29738915180332,53.22005553159164],[-127.29761152934788,53.21993375399437],[-127.2977977352496,53.219795572682195],[-127.29785858911289,53.21960777403921],[-127.29791555366798,53.219446346444016],[-127.29787816277667,53.21926746737849],[-127.2978211381653,53.21909104437471],[-127.29773423774712,53.21891887485851],[-127.29765947105646,53.21874488711645],[-127.29761457898351,53.21856609004427],[-127.29757448569724,53.218482487460136],[-127.2974756265661,53.21841016894616],[-127.29731984346277,53.2182555614223],[-127.29727486508251,53.21816584467502],[-127.2972741111223,53.218080135054144],[-127.29731162722658,53.21798783902407],[-127.29738724349623,53.21791473114234],[-127.29754296389551,53.217761195932404],[-127.29767591903043,53.217600056900764],[-127.29779938957392,53.217435104091415],[-127.29791059105166,53.217268044375416],[-127.29799820086625,53.21709676067903],[-127.29802542587792,53.2169138121297],[-127.29803098744327,53.216728303906336],[-127.29809526094466,53.2165606373109],[-127.29816600268138,53.21648142365228],[-127.29828167388332,53.2164297316676],[-127.29853250818083,53.21631884570004],[-127.29874906620074,53.21619209121849],[-127.2989199178523,53.216042870345504],[-127.29906322006885,53.21588273664862],[-127.29916880303735,53.21571630185812],[-127.29921402186405,53.21553931416464],[-127.29927427964236,53.215363291086405],[-127.29971945772797,53.21513597501863],[-127.30024453948072,53.21485343809356],[-127.30054130759447,53.214437261205745],[-127.30111710864779,53.214034819740284],[-127.30159359495813,53.21378923252698],[-127.30200676063956,53.213589717086684],[-127.30256416663143,53.213260871262605],[-127.30369224543502,53.21266969411378],[-127.3040825288852,53.212245755193656],[-127.30506443544063,53.21202595726134],[-127.30541635500457,53.211970535485605],[-127.30616025853976,53.211850282709825],[-127.30643456059708,53.21180243669275],[-127.306717172862,53.21175058092201],[-127.30695473272098,53.21166728088651],[-127.30715782420322,53.21156138458944],[-127.3072884495666,53.21147814276547],[-127.30743601501655,53.211366144080635],[-127.30788919359138,53.21121826745343],[-127.30805808503551,53.21106848930693],[-127.30814854825012,53.210899971336744],[-127.30820685191821,53.2107228348444],[-127.3082500657004,53.21054306796969],[-127.30828393701537,53.21036452476147],[-127.30830184045574,53.21018503725284],[-127.30831879857458,53.210005560159445],[-127.30834418802624,53.20982598995684],[-127.30837241521469,53.20964695316083],[-127.30839596110664,53.20946795906152],[-127.30840916792923,53.20928852329795],[-127.30841298096314,53.20910863543761],[-127.30841116782138,53.20892880071683],[-127.308405604411,53.20874901635217],[-127.30839909563319,53.208569233444365],[-127.30838978179197,53.20838949045619],[-127.30837578711174,53.20820979016962],[-127.30841668920489,53.20801604592582],[-127.30842344582781,53.20784059872587],[-127.30841332311022,53.20766478209056],[-127.30841180480168,53.20749447324587],[-127.30843345938693,53.2073155087659],[-127.30842602060761,53.20713573599185],[-127.30839516684746,53.20695678651415],[-127.30839307790306,53.20691983098129],[-127.30847776667596,53.206746893778906],[-127.3085984124527,53.206584200271735],[-127.30877682965206,53.20643935335218],[-127.30896283562083,53.20629779296403],[-127.30914983731088,53.20615789762232],[-127.30933778284388,53.206017991531745],[-127.30952282003736,53.20587531136752],[-127.30974622660364,53.20576022985556],[-127.31002947908144,53.205699949732455],[-127.31031479666925,53.20564580470938],[-127.31059116461094,53.205575514269626],[-127.31085202466218,53.20548858626052],[-127.31108869040415,53.20537783770413],[-127.31129851234353,53.20524832715824],[-127.31141922998383,53.20508843558226],[-127.31147088958481,53.204909693862795],[-127.31162663243526,53.204760055240214],[-127.31187285855569,53.204655357805336],[-127.31213753224168,53.204571181540274],[-127.31240999864198,53.20449589184735],[-127.3126863903602,53.20442671665903],[-127.3129647928525,53.20436143603209],[-127.313249065779,53.20430449840554],[-127.3135404301557,53.20426428997126],[-127.31383280862481,53.204226310702424],[-127.31412406747353,53.20418274028865],[-127.31441744452957,53.20414698962227],[-127.31471528532697,53.204134164802284],[-127.31501231319687,53.20415552107208],[-127.31530607901598,53.20419260075449],[-127.3155971470721,53.20423362717171],[-127.31588477697002,53.20428422036823],[-127.31617149738106,53.2043359435432],[-127.31645644803024,53.20439104739658],[-127.31673962897897,53.20444953194081],[-127.31702013013165,53.20451252787258],[-127.31729072805786,53.204588524258725],[-127.31754229151299,53.20468545771454],[-127.3177710033137,53.204801694444825],[-127.31797302594607,53.20493447136452],[-127.31814826991979,53.20508043686358],[-127.31830868876209,53.205232169890074],[-127.31845798038142,53.2053879529848],[-127.3185859085449,53.20555013227125],[-127.31869058292243,53.2057187288526],[-127.31878872282951,53.20588852759591],[-127.31889152369705,53.206057144839484],[-127.318993412914,53.206226336901636],[-127.31909435786005,53.206395539382044],[-127.31919623370244,53.206564731406225],[-127.31929903811823,53.20673335719657],[-127.31941488218297,53.206899031796674],[-127.31952888691183,53.207065847328415],[-127.31959155891519,53.20724051361886],[-127.31960654604408,53.20742020214677],[-127.31960371088982,53.20760008016968],[-127.31959526529637,53.20778002961881],[-127.3195839816504,53.20795944588873],[-127.31956425179114,53.20813895619586],[-127.31954453676639,53.208318466315426],[-127.31953418289248,53.20849787217122],[-127.31954915260394,53.20867699601651],[-127.3195884834613,53.20885528379768],[-127.31962781493002,53.20903358051021],[-127.31964937360496,53.209213186722494],[-127.31965964829722,53.209392362778416],[-127.31966525991993,53.20957215551189],[-127.31967181647174,53.20975192874084],[-127.31968492950419,53.20993163790149],[-127.31971020720573,53.2101106468074],[-127.3197542185925,53.2102883264939],[-127.31982532788116,53.210462898457536],[-127.3199300196415,53.210631502461744],[-127.32006168741599,53.210793073521614],[-127.32020823454815,53.21095000537438],[-127.32035846591046,53.211105210666894],[-127.32050687297894,53.211261556660936],[-127.32065805174233,53.21141675101544],[-127.32081941619049,53.2115679051938],[-127.32098451288856,53.211717905950096],[-127.32114682486103,53.2118690491222],[-127.32129892098943,53.21202367663234],[-127.32143152617908,53.21218467990508],[-127.32153622832708,53.212353273373864],[-127.32161108196104,53.212527246639624],[-127.32166725175327,53.21270366934854],[-127.3217159552046,53.21288129585416],[-127.32176839262509,53.21305832488223],[-127.32183858465365,53.21323290575437],[-127.3219377172585,53.21340324626975],[-127.32210918898386,53.21354700674364],[-127.32236541055657,53.21364108132064],[-127.3226388469248,53.2137159046822],[-127.32290953123542,53.213792443468826],[-127.32318565034055,53.21386276234732],[-127.32345451353744,53.21394099660094],[-127.32368234400798,53.21405667612879],[-127.32384932081105,53.21420664295337],[-127.32396239739953,53.21437234378715],[-127.32401390080777,53.21454938224054],[-127.32401299214986,53.21472980312862],[-127.32398575806951,53.214908832766575],[-127.32394725063794,53.21508687671528],[-127.32390969056041,53.21526546584771],[-127.32389558468768,53.21544434875419],[-127.32389558839277,53.215624203558605],[-127.32388056973011,53.21580366138692],[-127.3238965231414,53.21598332902884],[-127.32391338958685,53.216162430654734],[-127.32392839824631,53.21634211777884],[-127.3239387102058,53.216521848385526],[-127.32393871409444,53.216701703086564],[-127.32392369523207,53.21688116081721],[-127.32390587028222,53.21706064987189],[-127.3238992840738,53.21724001336825],[-127.32391429277523,53.21741969142958],[-127.32394335919771,53.217598656646075],[-127.32397241086092,53.21777762200599],[-127.32400521173638,53.21795598966454],[-127.32404176666415,53.218134871162164],[-127.32408485925727,53.21831255903943],[-127.3241345069984,53.21848960889344],[-127.32419257095547,53.218666008889414],[-127.3242618546284,53.21884116293104],[-127.32437769881595,53.219005155834985],[-127.32457800453794,53.21914018178209],[-127.32476993101385,53.21927698637294],[-127.32489513940548,53.21944030934356],[-127.32497001941026,53.21961427983013],[-127.32500284333562,53.21979320264158],[-127.32501973368508,53.21997286831124],[-127.32503099656219,53.220152587906966],[-127.32504413560228,53.220332295476624],[-127.32509186381697,53.220508245708274],[-127.32523383653295,53.22066746337727],[-127.32538785237723,53.220821499209976],[-127.32554555313422,53.220973808311854],[-127.32567728987048,53.22113538103462],[-127.32578203111947,53.22130396994776],[-127.32586717510908,53.221476148613945],[-127.3259598027554,53.22164711397291],[-127.32607852006635,53.221812749347734],[-127.32626394068207,53.221950744856905],[-127.32651932959301,53.22204649638033],[-127.32678740862482,53.22212753804152],[-127.32705270254709,53.22220973084466],[-127.32729073880007,53.22232024227684],[-127.32749927251015,53.22244733624324],[-127.32763752648563,53.22260714848745],[-127.32774135148327,53.22277631069015],[-127.32781905273033,53.22294968290289],[-127.32787806863983,53.22312607025233],[-127.32793240275386,53.223302510008914],[-127.3280026375311,53.22347709523849],[-127.3280607244806,53.22365349287151],[-127.32811881191488,53.223829890459506],[-127.3281927849445,53.224004424698705],[-127.32829380916725,53.22417361773624],[-127.32841254026457,53.2243386947814],[-127.32854426569227,53.22449969963441],[-127.32868810529847,53.22465776267836],[-127.32884306128842,53.22481122766442],[-127.32901842520025,53.2249571755385],[-127.32920488763034,53.22509795171443],[-127.32939597862598,53.22523644354153],[-127.32960458577034,53.22536520937259],[-127.32987264151035,53.22544512391903],[-127.33016821503541,53.225474859747024],[-127.33046735840817,53.22546870585293],[-127.33076188790456,53.22543570061333],[-127.33105768023027,53.22541277445471],[-127.33132491437145,53.22549605665278],[-127.33156383744333,53.22560374380539],[-127.33178167442134,53.225727364167035],[-127.33201053922733,53.22584357210719],[-127.33224762807566,53.225952963834395],[-127.33240912226482,53.22610466545431],[-127.3325362386435,53.226267394113236],[-127.33269121450549,53.22642085393838],[-127.33290997171139,53.22654389715093],[-127.33314892255275,53.22665214561097],[-127.3334224093047,53.2267252678144],[-127.33368958570584,53.226806304301206],[-127.33394133652789,53.22690375739251],[-127.33418669182703,53.22700689369476],[-127.3344448269289,53.227098671086864],[-127.33473431916252,53.22714359615776],[-127.33503456330601,53.227142456512524],[-127.33532916913695,53.227111124509285],[-127.3356046877196,53.22704023142528],[-127.33585009164796,53.226937171833576],[-127.33609165129603,53.226830802325765],[-127.33632551308727,53.226718907314556],[-127.33656321189936,53.2266092186463],[-127.33679803460458,53.226497876590635],[-127.33703764500184,53.22638984173317],[-127.33728886201953,53.2262923162861],[-127.33755653089035,53.22621085727854],[-127.3378330234286,53.22614162424417],[-127.33811154796443,53.22607684985983],[-127.33839294913517,53.22601428345436],[-127.33867833229293,53.22595895953349],[-127.3389688052329,53.225916459400324],[-127.3392542045821,53.22586168969001],[-127.33954365686817,53.22581639377668],[-127.33982903718375,53.22576106708026],[-127.34012573657695,53.225736978494126],[-127.34042022515642,53.22570283806707],[-127.34071804988635,53.22568490283822],[-127.34101469506781,53.225659136266906],[-127.34131403616749,53.22565966717437],[-127.34161358799183,53.22566636251586],[-127.3419125026483,53.22565345895544],[-127.34219793198031,53.225599802311244],[-127.34246465650487,53.22551834272848],[-127.34273038097257,53.22543520853152],[-127.34301279065943,53.225375425480195],[-127.34331178875917,53.22536474957779],[-127.34360901584829,53.22538715408401],[-127.3439053869352,53.225412373442545],[-127.34420184435079,53.22543982324682],[-127.34444910986674,53.22554347271777],[-127.3447139386853,53.22546202951876],[-127.34497771136688,53.22537668020593],[-127.34522506306085,53.225276384543264],[-127.34546846829424,53.22517053031926],[-127.34574695675317,53.2251051734047],[-127.34603639718547,53.22505987058331],[-127.34633298404778,53.22503297070837],[-127.34663085494037,53.22501669637782],[-127.34692988557195,53.22500714046872],[-127.3472300247993,53.22500316506211],[-127.34752936161618,53.225003689238505],[-127.34782805344143,53.22501317554423],[-127.34812613676597,53.225032762064814],[-127.34842331032243,53.22505346978759],[-127.34871978917766,53.22508203759006],[-127.34901915931302,53.22508311343274],[-127.34931483168955,53.2250567722859],[-127.34960827031188,53.225019259142314],[-127.34989667093882,53.22497115278384],[-127.35017515123687,53.2249057854608],[-127.35043592675542,53.22481541092451],[-127.35073427795876,53.224814252891974],[-127.35102809346715,53.22484732753391],[-127.3513261590542,53.22486634145131],[-127.35162335106237,53.22488760571405],[-127.35191377383616,53.22493191355048],[-127.3522025007149,53.22498185181989],[-127.35249926233207,53.22496053730373],[-127.3527767394082,53.22489349890205],[-127.35305024850098,53.224819781731625],[-127.3533316550527,53.22475829998623],[-127.35361904743215,53.224707954875235],[-127.35391249761044,53.22467098666934],[-127.35420499870924,53.22463346380697],[-127.35449440875203,53.22458757576682],[-127.35478278306309,53.224538901913974],[-127.3550671681269,53.224482420018646],[-127.35534556846416,53.224415364951504],[-127.35561812169242,53.22434109687943],[-127.35588867491838,53.2242634803763],[-127.35615927838764,53.22418699219845],[-127.35643474267701,53.224116041641565],[-127.35671710604139,53.224055661346796],[-127.35701271262987,53.22402762523432],[-127.35731044656421,53.22400740799739],[-127.3576019229134,53.223967656215805],[-127.35789125273483,53.2239195195554],[-127.35817362771333,53.22385913561345],[-127.35842960722344,53.22376599222163],[-127.35866255262593,53.223656868508016],[-127.35892626772359,53.22357092352351],[-127.35918707047215,53.22348221438962],[-127.35943241124382,53.223379105626044],[-127.35969129981197,53.223289296731195],[-127.35995501052489,53.223203349441555],[-127.36021973771211,53.223119631023856],[-127.3604863786712,53.22303756640653],[-127.36075110376787,53.222953846794915],[-127.36100800284184,53.22286069607145],[-127.36125814415982,53.222761454761766],[-127.36151802448522,53.22267330674403],[-127.3617846751155,53.22259123901483],[-127.36205423958197,53.22251250786428],[-127.36232675345829,53.2224382155059],[-127.3626080584395,53.2223744713538],[-127.3628984976807,53.22233191234215],[-127.36319589171576,53.222301598907876],[-127.36348438494831,53.22225738445215],[-127.3637480271552,53.222169743964656],[-127.36395405580419,53.22204131366349],[-127.36412932857154,53.22189026073744],[-127.36424244465223,53.221732078919146],[-127.36417304468283,53.221558624294985],[-127.3640633410178,53.22138619820427],[-127.36395471323077,53.221218241913135],[-127.3638284032862,53.2210549712556],[-127.36366592139996,53.22090444290013],[-127.36347096532948,53.22076493779299],[-127.36332154403044,53.220612017588714],[-127.36324089504755,53.22043869176402],[-127.36317977233055,53.220260103220326],[-127.36308613908297,53.2200914178532],[-127.36289592457864,53.21995353365296],[-127.36270102945699,53.21981570296383],[-127.3625468631455,53.21966115098833],[-127.36237881828457,53.219512370161134],[-127.362167352036,53.2193842494569],[-127.3619577298821,53.21925555138778],[-127.36180921076452,53.21910094253573],[-127.36172948331641,53.21892704925599],[-127.3617105255971,53.21874629013231],[-127.36173951416698,53.21856835082638],[-127.36178911969691,53.218390165652714],[-127.36182373471298,53.21821216164044],[-127.36182071256715,53.21803121936579],[-127.36186758360465,53.21785531562676],[-127.3619520573327,53.217681776710165],[-127.36199049425974,53.21750596083145],[-127.36206844884491,53.2173341820425],[-127.3621199964572,53.217157659604325],[-127.36214612490056,53.21697862334822],[-127.36216473277617,53.21679911769699],[-127.36217112366955,53.216619196632124],[-127.36216345476043,53.21643942817712],[-127.36215673150106,53.216259657801245],[-127.3621612646706,53.21608031384054],[-127.36216484932713,53.21590041599424],[-127.36214780304864,53.215720764213145],[-127.36211391272276,53.215542417614145],[-127.36206598177036,53.215364797126306],[-127.3619900113906,53.21519086056521],[-127.36187026281979,53.215026391612156],[-127.36171148996218,53.214873576670136],[-127.3615333035204,53.214729393340996],[-127.36135140622623,53.21458692875272],[-127.36116672228832,53.214445051699386],[-127.36097559131076,53.21430661908739],[-127.36077985534074,53.21417103600145],[-127.36058410245661,53.21403488802134],[-127.36039204787573,53.21389702088981],[-127.36020830069533,53.2137551405739],[-127.36003657234296,53.21360751020925],[-127.35989540178561,53.21344721159399],[-127.359884994505,53.213269715377905],[-127.35995535494727,53.213094663014694],[-127.36007955344937,53.212931310087534],[-127.36024546116708,53.212781489950174],[-127.36044184313006,53.212645887207806],[-127.36067747377498,53.21253505091814],[-127.36094602781087,53.2124557679843],[-127.36122142581819,53.21238537042361],[-127.361493713704,53.2123060433312],[-127.3617854559754,53.21230605296684],[-127.36207926390298,53.21228306184353],[-127.36236345168999,53.21222376632668],[-127.36263787952241,53.2121522559981],[-127.3628966021236,53.212059634681694],[-127.36308916741534,53.21192239487528],[-127.3631360443179,53.21174704566132],[-127.36311336916361,53.211567449375245],[-127.36309165759035,53.21138840675719],[-127.36306337493087,53.2112094397025],[-127.3630126243684,53.21103185162897],[-127.36294133583753,53.21085730566296],[-127.36285699244739,53.210685141975226],[-127.36276982953403,53.21051301960851],[-127.36268361220478,53.21034087733181],[-127.36260019814773,53.21016814694433],[-127.3625644532495,53.209990386070594],[-127.36255955350988,53.2098094735447],[-127.36247808849453,53.20963896178537],[-127.36236201394095,53.20947164482923],[-127.36234132713955,53.20929539606838],[-127.36237775627163,53.209116240518],[-127.36239244690164,53.20893174094168],[-127.3625514251861,53.20880048171623],[-127.36284430598411,53.20874949352457],[-127.36313709564763,53.208695699718334],[-127.3632872784579,53.20855333484138],[-127.36341048771546,53.20838943329956],[-127.363603853159,53.20824825645946],[-127.36365746026804,53.20807843207112],[-127.36364317679153,53.20789706257075],[-127.36363082589463,53.20771791197175],[-127.3636119014872,53.2075382811952],[-127.3635752062577,53.20735996651671],[-127.36351790572776,53.20718301846896],[-127.36341213685638,53.207015027953375],[-127.36323210547037,53.20687142392271],[-127.36310037512358,53.20671269644516],[-127.3630515049574,53.206535086389074],[-127.36303260145002,53.206356011008054],[-127.36302961108758,53.20617618778272],[-127.36304633532855,53.205996702526626],[-127.36308843540202,53.20581861068306],[-127.36315971815583,53.20564410062234],[-127.36326684405505,53.20547590159117],[-127.36335793281106,53.2053050810336],[-127.363400978844,53.205127533913675],[-127.36341677105216,53.2049480592062],[-127.36342972509651,53.204768061328636],[-127.36344550204791,53.20458858675539],[-127.36345941880514,53.20440913356727],[-127.36347426547046,53.204229669657934],[-127.36349098705453,53.2040501841517],[-127.36351522655913,53.2038711679162],[-127.36354321620523,53.20369211746282],[-127.36356745528353,53.20351310118219],[-127.36358510619526,53.20333360489051],[-127.36360277195718,53.2031541084062],[-127.36362324256466,53.20297457961865],[-127.36364183800936,53.20279507239041],[-127.36365105839072,53.20261567304361],[-127.36363681611336,53.202435987914875],[-127.36357394793117,53.20226021519995],[-127.36344492725357,53.20209809492849],[-127.36325199077594,53.20196080698883],[-127.36300853085311,53.201856032123764],[-127.36279263661447,53.20173356617474],[-127.36263476520256,53.201577944573025],[-127.36255808564515,53.201410174230894],[-127.36261609434082,53.20123133435168],[-127.36261028334069,53.201050987277185],[-127.36252696327651,53.20088106105143],[-127.36231741064846,53.20075124200316],[-127.36207761945184,53.20064361713681],[-127.36184788165194,53.20052804111092],[-127.3616062901625,53.20042267716725],[-127.36135464823654,53.2003252812756],[-127.36114055148657,53.200199994729616],[-127.36088184882439,53.200000141106514],[-127.36082496178668,53.19995148887934],[-127.36067547942092,53.19979408295886],[-127.36055949321634,53.19962844808857],[-127.36049009070967,53.19945331348359],[-127.36046836329918,53.1992737048283],[-127.36048507780612,53.19909366366401],[-127.3605375036703,53.19891600934038],[-127.36062860432035,53.19874519010658],[-127.36074417009358,53.198577460488],[-127.36084867385637,53.1983863165651],[-127.36088210440231,53.198230171300004],[-127.36087253376952,53.198049311317455],[-127.3608255756173,53.19787223358519],[-127.36075521213284,53.197696554219156],[-127.36066715436984,53.197524430825865],[-127.36056606431144,53.19735526298074],[-127.36045751212613,53.19718730132464],[-127.36034246091877,53.197021099553446],[-127.36021903860694,53.19685722599073],[-127.36008447728443,53.19669685090506],[-127.35991185589788,53.19654867425153],[-127.3596839276402,53.196429702605016],[-127.35948206963596,53.19630539319287],[-127.35939780563325,53.19613435483191],[-127.35934883708312,53.19595281715565],[-127.3593252747787,53.19577379385919],[-127.35931105318039,53.19559410754947],[-127.35924817714285,53.19541721171978],[-127.3592415084714,53.1952391151025],[-127.35928075838616,53.19505993576077],[-127.35926373246679,53.1948802725954],[-127.35918596890563,53.19470691823178],[-127.35903379971268,53.194552902665606],[-127.35887323932766,53.194400103750205],[-127.35874518730759,53.19423740226981],[-127.35864131151978,53.19406882939035],[-127.35854953884889,53.193897311656386],[-127.35845310579073,53.19372640310103],[-127.3583362361085,53.193561896522],[-127.35818776633745,53.19340559626117],[-127.35802350018997,53.193253959261554],[-127.3578610919461,53.1931017449266],[-127.35771916086954,53.19294480434677],[-127.3576237531419,53.19277668928862],[-127.35757113703613,53.19259799843652],[-127.3575232183268,53.19241981848948],[-127.35746969115637,53.192241693820584],[-127.35742835941423,53.19206399413273],[-127.35745074348489,53.19188500842629],[-127.35740778930105,53.191715171407246],[-127.357217613069,53.19157391547111],[-127.35694617194433,53.19150082548232],[-127.35666748218303,53.19143509723905],[-127.35638699374913,53.19137219489539],[-127.35610559450525,53.19130986709897],[-127.35582506873183,53.19124527850405],[-127.35554907920984,53.191176163954125],[-127.35527932045437,53.19109688322735],[-127.35501957493489,53.19100796683631],[-127.35479087127125,53.190892921327595],[-127.35462387681743,53.19074299622901],[-127.3544624557551,53.190591877611],[-127.35433259393146,53.19043032160036],[-127.35423804525487,53.1902593880327],[-127.35416591599959,53.19008540107794],[-127.35412363774611,53.189907155223004],[-127.35405895329313,53.18973139770394],[-127.35399802126778,53.18955616201857],[-127.35398851788153,53.189376420812145],[-127.3539733911153,53.18919673490796],[-127.353972330137,53.189016897156485],[-127.35396750513516,53.188837093451916],[-127.35395987640752,53.188657330746054],[-127.35395224745785,53.18847755906073],[-127.35395118658747,53.188297721239124],[-127.35395387720138,53.18811839632606],[-127.35395843905295,53.187938485227],[-127.35396298615794,53.187758583243145],[-127.35396662134464,53.18757924747816],[-127.35395336962567,53.187399539969505],[-127.35393449539482,53.18721990568355],[-127.35391936962907,53.187040219562725],[-127.3539248614447,53.18686030669388],[-127.35400846571304,53.18668957714516],[-127.35413259187868,53.18652567252089],[-127.35424820367231,53.186359623921255],[-127.35436097480651,53.18619248707849],[-127.3543683747463,53.18601367285282],[-127.35425434303885,53.185848564754316],[-127.35408924463204,53.185698617060915],[-127.35391672496343,53.185551550972406],[-127.35384551660218,53.18537698818075],[-127.35381541622618,53.18519803783975],[-127.35378345996466,53.18501967346908],[-127.35378332921401,53.18483981572123],[-127.35383680764974,53.18457755097428],[-127.35383552184133,53.18444925355865],[-127.3537970191269,53.18430065513606],[-127.35387351435023,53.184113206761566],[-127.3538370986274,53.18394217264775],[-127.35383235904969,53.18373547329271],[-127.35378969664059,53.18357404005438],[-127.35377118296377,53.18340559822429],[-127.35383964491227,53.18323056810192],[-127.3538239450462,53.183003823318394],[-127.35386558494216,53.18286944106307],[-127.35390963116322,53.18269356040821],[-127.35383717577162,53.18250893529119],[-127.35382960236207,53.18233084775296],[-127.35389717141994,53.1821575040863],[-127.35399479677032,53.18198605789],[-127.35410281067172,53.18181728979712],[-127.35422404688117,53.18165117633726],[-127.35438614044448,53.18150252492299],[-127.35462630613601,53.18139164513379],[-127.3548092447251,53.18125003400937],[-127.35491637793177,53.181082960496326],[-127.35494719242848,53.18090387779354],[-127.35495547951697,53.180723367455926],[-127.35495346979056,53.180543530732926],[-127.35494958636866,53.180363724396614],[-127.35495225416737,53.180183834117074],[-127.35497839039434,53.18000480484002],[-127.35502144584888,53.179827258339536],[-127.35507483305538,53.179650149385495],[-127.35513669909787,53.17947462872638],[-127.35520324201205,53.179299054486975],[-127.35525288018955,53.17912199725694],[-127.35529404157393,53.178943907447135],[-127.35534930354677,53.17876734158026],[-127.35539986995417,53.17859027359861],[-127.35543537258036,53.17841112785389],[-127.35555857536683,53.17824835182245],[-127.35567226725222,53.17808176692777],[-127.35575955901687,53.17790987223657],[-127.35582329355793,53.17773432959703],[-127.35586068563903,53.17755572675766],[-127.35590748263392,53.177378136783986],[-127.3559702713356,53.17720260482937],[-127.35602365154728,53.177025504156184],[-127.35612320208868,53.17685627463717],[-127.35618598912133,53.17668074251829],[-127.35625066445176,53.17650518871419],[-127.35632472926169,53.17633064789197],[-127.35641483608542,53.176159285016105],[-127.35650683379583,53.17598845620018],[-127.35658375074794,53.17581500306502],[-127.3566324165732,53.175637391167825],[-127.35666418204246,53.17545885227927],[-127.3566950000384,53.17527976840218],[-127.35674555636112,53.17510269054829],[-127.35685030785072,53.17492051817042],[-127.35698093912308,53.17475653444362],[-127.35718400811407,53.17462982055548],[-127.3574715045368,53.174593462590686],[-127.35774651686121,53.17466483344611],[-127.35801159119066,53.1747475146713],[-127.35826945947817,53.174839251726176],[-127.35851819370966,53.17493837243577],[-127.35876423386574,53.175040885341964],[-127.35902208744037,53.175132056169964],[-127.35926263757173,53.17523911346348],[-127.35948761107338,53.175356990326335],[-127.35963045196203,53.1755144750513],[-127.35974358625772,53.17568126554194],[-127.35981851423034,53.17585466248254],[-127.35997034888894,53.17600027273942],[-127.36025338208319,53.176058098571275],[-127.36053554339689,53.17611816598306],[-127.36081326278035,53.176185572149315],[-127.36109895429432,53.17623831825676],[-127.36139253060192,53.17627416405415],[-127.36168858620884,53.1762998952335],[-127.36197604523839,53.176349257121736],[-127.3622465616475,53.17642570760082],[-127.36250894606165,53.17651178061374],[-127.36277950054894,53.17658935005179],[-127.36306872839451,53.17663532716401],[-127.36335086146077,53.176694267665894],[-127.36362230906703,53.176770148503],[-127.36389643439331,53.17684207130502],[-127.36415250838209,53.176935492821016],[-127.36439490126608,53.17704083324081],[-127.36461167263442,53.17716496281407],[-127.36478785574596,53.17730973060502],[-127.36498345227406,53.17744587433767],[-127.36524747387837,53.17749493378667],[-127.36554951457084,53.177472965459096],[-127.36583056988961,53.17741088790984],[-127.36611260821152,53.17735048372117],[-127.36639366218022,53.1772884137929],[-127.36667775039459,53.17723302279332],[-127.36696880516006,53.17719044204789],[-127.36726195036523,53.17715456003614],[-127.36755831483802,53.17713153148567],[-127.3678571831333,53.17712751449063],[-127.3681524461221,53.17715716534934],[-127.36843462597388,53.17721721390325],[-127.36870108045716,53.17731219111959],[-127.3689963428987,53.17737096652526],[-127.36925883933445,53.17743068489429],[-127.36953117716493,53.177504856656974],[-127.36977631448693,53.177607357461426],[-127.37002694782154,53.17770587655895],[-127.37029570411424,53.177785126244686],[-127.37058700359799,53.177836664178194],[-127.37086271321668,53.17789903207435],[-127.37115541917937,53.17793654035835],[-127.37145316338093,53.17795550415163],[-127.37175163770749,53.1779682999225],[-127.37205031490667,53.1779586716233],[-127.37234786284803,53.17794289683796],[-127.37262796420848,53.17790939394267],[-127.37294490464072,53.17791356365454],[-127.37324385094712,53.17791178238599],[-127.37354260013313,53.17790439068086],[-127.37384111110137,53.17791830136468],[-127.3741402753834,53.17792322994464],[-127.37443860474895,53.17793153822874],[-127.37474443128932,53.177968885381766],[-127.37502192862026,53.177999281301844],[-127.37529875732841,53.178067228962966],[-127.3755827694349,53.17812499815857],[-127.37586227250343,53.178188431044326],[-127.37614357715,53.17824959217273],[-127.37642754049465,53.1783062482943],[-127.37671151929922,53.17836289459761],[-127.37699548416454,53.1784195493539],[-127.37727320840011,53.178485796654066],[-127.37753474286374,53.178572958302496],[-127.37780981148367,53.17864371766074],[-127.37809368834827,53.17869756485159],[-127.37839182309807,53.17869969771904],[-127.37868495096481,53.178663231852546],[-127.37897600348094,53.17862062162969],[-127.3792630701035,53.178570768716305],[-127.37954807982575,53.17851534501594],[-127.37983015744365,53.17845602819652],[-127.38012022639856,53.178412305985795],[-127.38041777451932,53.17839651092813],[-127.38071559921123,53.17841769178157],[-127.38115133747615,53.17847200200925],[-127.38145006765271,53.1784634700071],[-127.38174026316152,53.17842366892558],[-127.38202716069327,53.17836877299504],[-127.3823216116835,53.178344044464865],[-127.38262094798633,53.178354552674215],[-127.38291539180275,53.17838697351532],[-127.38318856115527,53.178457186840475],[-127.38344199401195,53.178553959832676],[-127.38369355729698,53.178651309957345],[-127.38395150502973,53.1787429908844],[-127.3842265303673,53.17881205058809],[-127.38452183475172,53.17884221621156],[-127.38482037412525,53.17885665481934],[-127.38510676816762,53.178900935226565],[-127.38527280286624,53.17904803321939],[-127.38534412991896,53.179222568738275],[-127.38548431357475,53.17943889046594],[-127.38553523378681,53.17956268164594],[-127.38564287732979,53.17973006840079],[-127.3857876860748,53.17988694365315],[-127.3859686086813,53.18003050462278],[-127.38614580276742,53.18017466478403],[-127.38631841601364,53.18032224908642],[-127.38652513760987,53.18045205993951],[-127.38674384684812,53.18057556225372],[-127.3869780752157,53.180686564730465],[-127.38723882746625,53.180777640991884],[-127.38749133898405,53.180874416260885],[-127.3877034866913,53.1809979937143],[-127.38789368039727,53.1811380813328],[-127.38807094095195,53.18128392326611],[-127.38822782745281,53.18143729218777],[-127.38833643093061,53.18160466525121],[-127.38841527140382,53.1817791197544],[-127.3885572235728,53.18193433975352],[-127.38872337394207,53.182084228614734],[-127.38887840994893,53.182238174190225],[-127.38904363340362,53.18238808244061],[-127.38923558298808,53.182524220735885],[-127.38952920847247,53.18255944104859],[-127.38982634327387,53.18258733105114],[-127.39010758692746,53.18264509834938],[-127.39034270975772,53.18275439839835],[-127.3905633346872,53.18287843606758],[-127.39077377490318,53.1830065195364],[-127.39097408517456,53.18314031567183],[-127.39119462202801,53.18326155619425],[-127.391411488877,53.183385636458056],[-127.39163477652875,53.183505158467504],[-127.39185071635092,53.18362924883425],[-127.39204182474325,53.18376763375422],[-127.39222738928434,53.18390888953409],[-127.39242401229352,53.184043856171485],[-127.39262247712895,53.18417823604476],[-127.39282005052264,53.18431374667761],[-127.39305704190029,53.184421898851696],[-127.39331688207585,53.18451240791563],[-127.39357668675947,53.184601805197836],[-127.39376305705107,53.184738566718394],[-127.39389307054375,53.18490064454054],[-127.39403048604264,53.185059273280146],[-127.39426477665775,53.18517081667839],[-127.39452278674436,53.1852624652929],[-127.39479611192667,53.185335447519265],[-127.3950694530455,53.18540842893536],[-127.39528168285914,53.18553312163823],[-127.39544412275325,53.18568304493962],[-127.39558156856758,53.18584279215629],[-127.39575607148711,53.185988655254384],[-127.39596561661212,53.18611729601752],[-127.39617057748124,53.186248796447934],[-127.39645983365779,53.18629245142664],[-127.39675873055661,53.18628780608552],[-127.39705825742301,53.186273622951006],[-127.39734848815617,53.186233219051346],[-127.39763148487718,53.186172728946524],[-127.39791555846806,53.186116707856236],[-127.39820775424127,53.186079084621696],[-127.39850601992069,53.18605539204381],[-127.39880381848128,53.18604570729018],[-127.39910317292974,53.18605449784856],[-127.39940174978366,53.1860683440395],[-127.39972883233602,53.18606559933904],[-127.39996715307481,53.18609976233962],[-127.40000025955808,53.1861088916374],[-127.40026899572275,53.18618415683243],[-127.40053144010096,53.18626734005834],[-127.40081014521758,53.186332400716616],[-127.40110465848174,53.186364776191944],[-127.40140381513379,53.186367960285814],[-127.40170012917316,53.18634148573662],[-127.40198215707069,53.18628043185753],[-127.40220613439078,53.18616459917213],[-127.40237557353066,53.186015793713445],[-127.40255729781668,53.18587020431039],[-127.4027659249706,53.18574391102048],[-127.40302942556899,53.185661226693085],[-127.40330637899173,53.1855884678059],[-127.40357936007013,53.1855090317032],[-127.40384655010737,53.18542461639471],[-127.4040658248131,53.185308835769064],[-127.40424386623665,53.185165528492576],[-127.40440750448082,53.18501175045281],[-127.40458071679862,53.18486401746104],[-127.40477207474396,53.18472615440614],[-127.4049681649995,53.18458991130223],[-127.40515664605502,53.18445040527873],[-127.40533748013696,53.1843064982836],[-127.40548222081706,53.184148460426],[-127.40557307475221,53.183977049881996],[-127.40552876383768,53.1837999551012],[-127.40546384176035,53.18362366969309],[-127.40537750583893,53.18345156497438],[-127.40512859768049,53.183182766860625],[-127.40510392300877,53.18300432724078],[-127.40515144513078,53.18282614260521],[-127.40511932992665,53.18264946767112],[-127.40498089549737,53.182489186850624],[-127.40480364600359,53.18234561065922],[-127.40463188956709,53.18219804244075],[-127.4045474524306,53.18202647035754],[-127.40450686249429,53.18184877512675],[-127.40451870515331,53.181668781568106],[-127.40455684312829,53.181490708355284],[-127.40462885836978,53.181316159885284],[-127.4047442764918,53.18115062613571],[-127.40484458636473,53.18098134487428],[-127.40489964422949,53.18080475612421],[-127.40499522300306,53.180634410207794],[-127.40509363792141,53.180464586358326],[-127.40521664064468,53.18030175906486],[-127.40537845699592,53.18015024185133],[-127.40559942528574,53.18002995514355],[-127.40588145770401,53.17997001176075],[-127.40616557195023,53.17991677559578],[-127.40629066251635,53.179760081148395],[-127.40629218284687,53.179580209700504],[-127.40630307251845,53.17940021799693],[-127.40638261369706,53.17922726415087],[-127.4065368885663,53.179074705163316],[-127.4067101063902,53.17892808874925],[-127.40689189358199,53.17878529685875],[-127.40707557540514,53.178643593795286],[-127.40724403785835,53.17849479180974],[-127.40742960990387,53.17835363046914],[-127.4076525113917,53.17823555787618],[-127.40790419062972,53.17813731367331],[-127.40816070998389,53.17804349380137],[-127.4083672996142,53.17791440767105],[-127.40851015175511,53.17775694345613],[-127.40859346200895,53.177584498815044],[-127.40868335982465,53.17741309633073],[-127.40875722874578,53.17723908741378],[-127.40882450857085,53.17706402724934],[-127.4088691904333,53.176885883040526],[-127.40890732078222,53.1767078077858],[-127.40895202042014,53.176530219114966],[-127.40900046727091,53.176352585813916],[-127.40906963726663,53.1761780676926],[-127.40916988455858,53.17600822688486],[-127.40929096255768,53.17584429691865],[-127.40941579066264,53.17568087798693],[-127.40950662547735,53.17550946345856],[-127.40957482913066,53.17533440060031],[-127.40960824475769,53.17515582522258],[-127.40960319995445,53.17497602230827],[-127.40958036611994,53.17479699595191],[-127.40953321147116,53.17461937973162],[-127.40946179242445,53.17444485835438],[-127.40935034273971,53.17427864877178],[-127.40919062199018,53.174125905168594],[-127.40901243040248,53.17398179025849],[-127.40882776392122,53.17383998439344],[-127.4086329876878,53.17370391056277],[-127.4084317404204,53.17357071044921],[-127.40822682164271,53.173439794897554],[-127.40802184807676,53.173307194244735],[-127.40788574965244,53.17324493772185],[-127.40741101621651,53.172891429686544],[-127.40678469910308,53.172432133103186],[-127.40637237234756,53.17195349118976],[-127.40605862471763,53.17173421551354],[-127.40570787457939,53.171557396940976],[-127.40563287557947,53.17155661098311],[-127.4055826324021,53.1714826821554],[-127.40542024829753,53.171333891774864],[-127.40513554401545,53.171170299639684],[-127.40490579733849,53.17113772240128],[-127.40463859847426,53.17110615387365],[-127.40452126658391,53.17107225104415],[-127.40441284144867,53.17079842196012],[-127.40434052413381,53.17062446393866],[-127.40424210441493,53.170454177324416],[-127.40413719497786,53.17028620882404],[-127.4040127371298,53.17012239869885],[-127.4038521626637,53.169971334528135],[-127.40366662043365,53.16983009589155],[-127.4034607902594,53.1696991830207],[-127.40323388805491,53.169582531741376],[-127.4029923330789,53.16947613025883],[-127.40275172385236,53.169369726050085],[-127.40250926418896,53.16926445493324],[-127.40226500306171,53.16916089007165],[-127.40200280789567,53.16905361943825],[-127.40182866849943,53.168917281211804],[-127.40179192025911,53.16874122397882],[-127.40186394732733,53.16856779633099],[-127.40199823907855,53.16840651381779],[-127.40216762656796,53.16825827178695],[-127.40238848607673,53.16813630554585],[-127.40264993012296,53.16805140311183],[-127.40294396681817,53.16801710633084],[-127.40324267466153,53.16801020405202],[-127.40354127440138,53.16800049627744],[-127.40383732833035,53.1679700910213],[-127.40406215163192,53.16785480722096],[-127.4042182483947,53.167701672480526],[-127.40433172012771,53.16753503099022],[-127.40445279262688,53.167371105213185],[-127.40456154968861,53.16720340773471],[-127.4046476762791,53.16703148723084],[-127.40471119168342,53.16685591727983],[-127.40474742369399,53.16667730919093],[-127.40477241178456,53.16649827867685],[-127.40481053502413,53.166320203909734],[-127.40488910980417,53.16614669629094],[-127.40499407813306,53.165977922592695],[-127.40510663176234,53.16581185579993],[-127.40522578581943,53.165646831137856],[-127.40535627543085,53.165485033605535],[-127.4054934025093,53.16532539832985],[-127.40561160954596,53.165160384445926],[-127.40571469895809,53.16499162330089],[-127.40582722868389,53.16482500012557],[-127.40593127930471,53.16465679211709],[-127.40597974369844,53.16447971450796],[-127.40597935432989,53.16429874363765],[-127.40582717988737,53.164146461448425],[-127.40569351235195,53.163986679742145],[-127.40564265832089,53.163809669985],[-127.40572782950684,53.1636377595875],[-127.40584321011819,53.163472222992276],[-127.40596423140627,53.16330773091334],[-127.40606355002339,53.16313845818549],[-127.40606033924377,53.16295695590137],[-127.40607677108555,53.16277466443493],[-127.40607590221252,53.162607702357015],[-127.40613944226835,53.16243325139269],[-127.40626427673617,53.1622703989773],[-127.40640895707553,53.162112913696426],[-127.40656120341586,53.16195757954316],[-127.40671821694204,53.1618049855799],[-127.40689516576194,53.161660007736245],[-127.40708259053619,53.1615199433766],[-127.40726999908523,53.16137987888759],[-127.40743553773244,53.16122998854308],[-127.4075925603936,53.16107739318106],[-127.40774481744275,53.16092262198732],[-127.40788284979676,53.16076297249471],[-127.4080057622762,53.16059902019552],[-127.40810412233888,53.16042975673463],[-127.40816666567532,53.1602536307776],[-127.40820285897446,53.16007446537625],[-127.40829003088308,53.15990645542681],[-127.40852232845799,53.159792184716714],[-127.40879928961176,53.15972501285468],[-127.40907821630891,53.15966062297078],[-127.40935808968965,53.15959677697332],[-127.40963797721062,53.159532930133466],[-127.40991586392917,53.15946574458423],[-127.41017913088638,53.1593813584168],[-127.4104520793828,53.15930638605423],[-127.41074317229533,53.159269862774494],[-127.41104241012636,53.159252848101545],[-127.411342207918,53.159252635350384],[-127.4116363167279,53.15927826404539],[-127.41192728116202,53.1593224153392],[-127.41222002241653,53.159363191815395],[-127.41251678508388,53.15938430417382],[-127.41281506577387,53.159394747257586],[-127.41311512631783,53.159402371262104],[-127.41341257577379,53.1594161936064],[-127.41370945163597,53.15944066350742],[-127.41400734669031,53.15946736174043],[-127.41430354121759,53.15949968267209],[-127.4145953231044,53.15953989998123],[-127.41487809583867,53.159590865730394],[-127.41512685436528,53.15968931271795],[-127.41537487198228,53.15979336221077],[-127.41564982934692,53.15986291439481],[-127.41594921927364,53.15985036803046],[-127.4162473730737,53.159856886324626],[-127.41654662092785,53.15986787327537],[-127.41684501879696,53.159881675692326],[-127.41714260394052,53.15989940479658],[-127.41742997867237,53.15994751232178],[-127.41772258310682,53.159984350257616],[-127.41802027798424,53.16000487293457],[-127.41831932469971,53.16001025470258],[-127.41861559383308,53.15998821815989],[-127.41890647772759,53.15994550937134],[-127.41918342340576,53.15987831321921],[-127.4194494389834,53.15979275267841],[-127.41973254686106,53.159741734872945],[-127.42002753086815,53.159709615575046],[-127.42032463192916,53.159684758685124],[-127.42062288356802,53.159666055163285],[-127.42092348151448,53.159661881899886],[-127.42121589530285,53.15969255454333],[-127.42149279093388,53.159763746449116],[-127.42175430103042,53.159850820276674],[-127.42198403815019,53.15996796740334],[-127.42220556605709,53.1600919364974],[-127.42241504438805,53.16021996770796],[-127.42263822207426,53.16033719241825],[-127.42288325686538,53.16043566809301],[-127.42312386220965,53.160541476120244],[-127.42335138219319,53.160620545984756],[-127.42368605197248,53.160682073030564],[-127.4239457178461,53.160769720109776],[-127.42418638442703,53.160877210698935],[-127.42442336612123,53.160986977442995],[-127.42459314513462,53.16107626965486],[-127.42461041726307,53.161227346400665],[-127.42483736033859,53.16112207278062],[-127.42513830914197,53.16109996364384],[-127.42543554883208,53.16107901007006],[-127.42572855183639,53.16104354758963],[-127.42599968587427,53.16097080235514],[-127.42622426037516,53.160850986380794],[-127.42645176802101,53.16073506128678],[-127.42670331861503,53.16063734076198],[-127.42695876495925,53.16054404626222],[-127.42722588314473,53.160463502154194],[-127.42750775488382,53.16040351559251],[-127.42779560759428,53.16035465351655],[-127.42808548011712,53.16030969304294],[-127.42837641351325,53.160268645730746],[-127.42867041279806,53.1602353961246],[-127.42896665905764,53.16021276911061],[-127.42926390968582,53.160192370480544],[-127.42955998902424,53.160165261472855],[-127.42986607276708,53.16015652572176],[-127.43013496387215,53.160212105497806],[-127.43035182295644,53.1603355602151],[-127.43062408203426,53.16040735180162],[-127.43091670112223,53.160444157113],[-127.43120322691236,53.160494482941495],[-127.4314800650144,53.16056285532388],[-127.43177676990732,53.16058167903888],[-127.4320744007361,53.160572475067916],[-127.43232499305007,53.160474745049356],[-127.43257077648204,53.16037315496451],[-127.43283788291166,53.16029259818531],[-127.433132936961,53.160262695542364],[-127.43349138093743,53.16011267280237],[-127.43363322639573,53.15995742835363],[-127.43391336824749,53.15990248568108],[-127.43421303752316,53.15989828992567],[-127.4345116070359,53.159889068383855],[-127.43480987786072,53.159898900435024],[-127.43510928149276,53.1598868701771],[-127.43539925073034,53.159928179076665],[-127.43569587693388,53.15994475263405],[-127.43599079338983,53.15991091778484],[-127.43628322367488,53.159942108988716],[-127.43654214446664,53.15997930935778],[-127.43687278797503,53.15997697218255],[-127.43716594475397,53.15994651765552],[-127.43746428573223,53.159930567646995],[-127.43775977851055,53.15994154664864],[-127.43804381137392,53.160000851329656],[-127.43833020957128,53.16004724380634],[-127.43864746026891,53.16006411518166],[-127.43892305523339,53.1600960693326],[-127.43920873531471,53.16014862742623],[-127.43948823381598,53.16021246634278],[-127.43977208433166,53.160266721809094],[-127.44006733695234,53.16029786938942],[-127.44035821975297,53.16033803447706],[-127.44064561396773,53.16041354572666],[-127.4405405276617,53.160243923846764],[-127.44052281789291,53.16008164766022],[-127.4407165582183,53.15993808973705],[-127.44093156814506,53.15981388808209],[-127.44116568826121,53.15970065068278],[-127.44140862500409,53.15959852072113],[-127.44168248674478,53.15952458521541],[-127.44194860330258,53.15944289898886],[-127.44220595819009,53.15935178904493],[-127.44245553376908,53.15925237306412],[-127.44268202118445,53.159135307831754],[-127.44287978238283,53.15900010637679],[-127.44304991776951,53.158851784829174],[-127.44315668418523,53.1586857497479],[-127.4432228443392,53.15851012400886],[-127.4433399412985,53.15834508337158],[-127.44349302074835,53.158190810076604],[-127.44367075750387,53.158045765662216],[-127.44385043813972,53.15790237370962],[-127.44406237073059,53.15774345487534],[-127.44422403041075,53.15762157425842],[-127.44441702831539,53.15748418683228],[-127.44461192083737,53.157347887609994],[-127.44480873855198,53.15721269413903],[-127.4450074319129,53.15707803324949],[-127.44520805014963,53.156944469131346],[-127.44540963432978,53.1568120134868],[-127.44561405736397,53.1566806434334],[-127.44582135319996,53.15655091437754],[-127.44602963027134,53.156422302546254],[-127.44623406848086,53.15629148699785],[-127.44643466013815,53.156157365138974],[-127.44663052226385,53.15602217112589],[-127.44682538194259,53.155885312545394],[-127.44699745571594,53.15573921129],[-127.447118294999,53.155574676468426],[-127.44723347249912,53.15540853426211],[-127.44737419300968,53.15524992398362],[-127.44752969823057,53.15511298959277],[-127.4477088170811,53.1549539091771],[-127.44790515807715,53.15480582413091],[-127.44811655250669,53.15465923099935],[-127.44824782162365,53.154525954053014],[-127.44838003864783,53.15436520520772],[-127.44848575231232,53.15419693612311],[-127.44858769622151,53.154027592425095],[-127.44872653429218,53.15386900334309],[-127.44889140409187,53.153759403479555],[-127.44906855944309,53.15370792617994],[-127.44923137972599,53.15367511023357],[-127.44952130315029,53.15363402236323],[-127.44980230708374,53.1535784657706],[-127.4500583355526,53.153477277274355],[-127.45026950108291,53.153351974982606],[-127.45041209547446,53.153193902526894],[-127.45047161649991,53.15301723246622],[-127.45050970442418,53.15295344494666],[-127.45062395616608,53.152870237690784],[-127.45093588483357,53.15281542881079],[-127.4512206653294,53.152760943071264],[-127.45145477668869,53.152649369618985],[-127.45171012060236,53.152556030263604],[-127.4519519124665,53.152449964767165],[-127.45220632491085,53.15235662676672],[-127.45251123960836,53.15228845202728],[-127.45263446241465,53.15222137743066],[-127.45270480535348,53.152169529189294],[-127.4528350869688,53.15200767797893],[-127.45285984779643,53.15182862713665],[-127.45271179695244,53.15166346915767],[-127.45261544536119,53.15150327956183],[-127.45255135904004,53.151328125473846],[-127.45251540151239,53.1511537467026],[-127.45244838439098,53.15097526658601],[-127.45240854797076,53.15079701760373],[-127.45235189631356,53.1506200866612],[-127.45230848813327,53.15044691986732],[-127.45225824563417,53.1502654365879],[-127.45221559397127,53.150087213075885],[-127.45217110441028,53.14990957689506],[-127.45212567143567,53.14973195226247],[-127.45207836625701,53.149554350575066],[-127.45203293405251,53.1493767258721],[-127.4519856296596,53.149199124112855],[-127.45192247822105,53.14902395806418],[-127.45185278085577,53.14884887229107],[-127.45179522470109,53.14867251685486],[-127.45173672526634,53.14849617295281],[-127.45167355685724,53.14832045109782],[-127.4516076067252,53.14814531916472],[-127.45152047629729,53.14798053281212],[-127.45146308935252,53.14786412504602],[-127.45143750181279,53.14780056223401],[-127.45135198086417,53.14762847629654],[-127.45132700793896,53.14758283621966],[-127.45128228815415,53.147453390052554],[-127.45127874869372,53.14737722967495],[-127.4512929976952,53.14727395564612],[-127.45133924734631,53.1471747716593],[-127.45141674688048,53.14711330621174],[-127.45156673073386,53.147034697647136],[-127.45163646388005,53.14699237827846],[-127.45189443991379,53.14689507877891],[-127.45217396548975,53.146852425798805],[-127.45230486534773,53.14684578071086],[-127.4524689122367,53.14682247473865],[-127.45276076897373,53.1467841515592],[-127.45305262926861,53.14674638344896],[-127.45332256167153,53.14666967034548],[-127.4535643734148,53.1465652769888],[-127.45378115021254,53.14644102807687],[-127.45398839029444,53.14631184855291],[-127.4541946469362,53.14618156008282],[-127.45439520366266,53.146048535197366],[-127.45447644155287,53.14598702167404],[-127.45457003158262,53.145902943313416],[-127.45471540506229,53.14574538619179],[-127.4548589200313,53.14558785171781],[-127.4550213933039,53.14543737258013],[-127.45519428625788,53.14529011801105],[-127.45537862423834,53.14514889041646],[-127.45558010136558,53.14501586098416],[-127.45579020265184,53.14488831933643],[-127.45600600124932,53.14476351327787],[-127.4562314259233,53.14464587700998],[-127.45645970803298,53.14452988160213],[-127.45666977016856,53.14440178293696],[-127.45689038678724,53.14428083363318],[-127.45715348512692,53.1441969068688],[-127.4574422145352,53.1441502099523],[-127.45773094299832,53.1441035033688],[-127.45800872510895,53.14403788891563],[-127.45813168526126,53.14399154760071],[-127.45823711479453,53.14392525055885],[-127.45840240479953,53.14377528753763],[-127.45859434965395,53.14363787861909],[-127.45870041855719,53.14359062427843],[-127.45883852645566,53.14357603839961],[-127.45900795881813,53.143627740187526],[-127.4591314155791,53.143677202668975],[-127.45925468220169,53.1436941775165],[-127.4594148118343,53.14369332297257],[-127.45971515505006,53.1436576746848],[-127.4599871043339,53.143613419798235],[-127.4602747668024,53.14356335812078],[-127.46056883351562,53.14353563862504],[-127.4608650082013,53.14351517210345],[-127.46102540879443,53.14349526098213],[-127.46119505483983,53.14347187350434],[-127.4612711420271,53.143478213485935],[-127.46145744900898,53.14347647699502],[-127.46175609013308,53.143472787511904],[-127.46205342000226,53.143458462821734],[-127.46222142922801,53.14346927839916],[-127.46248876715492,53.14353545425577],[-127.46275657444376,53.14361562735678],[-127.46302880044536,53.14368790963232],[-127.46332381894665,53.1437150744062],[-127.46363668534454,53.14368935604834],[-127.46380804237316,53.14360710502163],[-127.46407513191933,53.14344971510029],[-127.4642894867224,53.14333779431192],[-127.4645613118473,53.143263272782605],[-127.46484400282259,53.143204861034285],[-127.46513271667708,53.14315813636543],[-127.46542998520542,53.14314212741194],[-127.4657284493112,53.14313339161298],[-127.46602813263779,53.14313304035467],[-127.46632474998495,53.14315233325737],[-127.46662152309115,53.14317611506055],[-127.46692049589102,53.143182494264366],[-127.46722168578874,53.14319836627575],[-127.46751535249425,53.14321377499973],[-127.46781123686607,53.143238685507804],[-127.46810639137911,53.14326976344065],[-127.46839722692734,53.14331153596054],[-127.4686931901999,53.1433386846019],[-127.46897011709682,53.14341145080875],[-127.4692370267921,53.14349218534387],[-127.46950129201194,53.143577434742234],[-127.46976008188427,53.14366723419002],[-127.47001616892145,53.14375986381276],[-127.47027225738992,53.143852501837785],[-127.47055773047612,53.14390105966614],[-127.47085297421438,53.1438805796917],[-127.4711314101006,53.14380763730072],[-127.47140444230044,53.143740929518664],[-127.4716763157298,53.14366806743372],[-127.47181497697807,53.14358845263134],[-127.47196105950927,53.14353396450173],[-127.4721037644354,53.14340948186653],[-127.47221396669828,53.14337337031417],[-127.47232581464642,53.14327727873504],[-127.47243875906223,53.14323945634047],[-127.47261554513442,53.14317898196191],[-127.47282432615062,53.143150043151905],[-127.47297638450593,53.14313302570967],[-127.47308956795762,53.14312881035141],[-127.47323082106038,53.143124254312426],[-127.47334799583463,53.14310038204339],[-127.47350125882251,53.143063732992545],[-127.47365574239637,53.14303546895781],[-127.47395361131599,53.14303680568138],[-127.47424140933822,53.14299119070805],[-127.47452112820027,53.14292831006116],[-127.47481384743575,53.142889365231966],[-127.47510886730363,53.142862709221156],[-127.47540601290471,53.14284331469776],[-127.47570426269338,53.14282895308079],[-127.47599632448988,53.14279784912213],[-127.47611685089305,53.142762725710824],[-127.47623441146983,53.142696260839266],[-127.47642436289009,53.1425571705107],[-127.47664203917314,53.14243454363228],[-127.47683749654061,53.14231891763141],[-127.47719312397143,53.14207017472411],[-127.47718123620947,53.14189046237825],[-127.4771282374348,53.141713495680705],[-127.47713977962731,53.14153404659539],[-127.47716630410805,53.14135497522619],[-127.47718251905533,53.141175467751346],[-127.47716036139572,53.1409964394],[-127.47709244510467,53.14082134434854],[-127.47695297027175,53.140662267048135],[-127.476856200467,53.14049201470202],[-127.47674549990438,53.14032529814156],[-127.47668131134365,53.14014960044375],[-127.47669001960766,53.13996962182903],[-127.47671000000855,53.13979063210716],[-127.4767205998944,53.13961119464979],[-127.47669188508215,53.139432247944455],[-127.47663794788102,53.139255292564364],[-127.4764781363057,53.139103201416034],[-127.47641769459764,53.13892744776191],[-127.47634604050516,53.138752398811675],[-127.47624928220503,53.138582710541606],[-127.47608115952211,53.13843407557575],[-127.47591218785428,53.13828770124676],[-127.47591337170327,53.13810669576195],[-127.47598031210946,53.1379316027168],[-127.47595814625133,53.137752574005084],[-127.47593130796245,53.1375736035724],[-127.47592691464169,53.137393788259814],[-127.4759262657237,53.137213935175346],[-127.47593030403367,53.13703401462394],[-127.47594652256466,53.136854506888085],[-127.47596556114837,53.136675528754786],[-127.47603155089287,53.13649988256065],[-127.47610507146557,53.13632581883485],[-127.47612503294346,53.136146264282864],[-127.4761459574018,53.135967262502334],[-127.47617622621263,53.135788135118176],[-127.47622154410575,53.13561050536287],[-127.47629882592778,53.1354369592727],[-127.4763921238662,53.13526601933183],[-127.47650807917435,53.135100390801796],[-127.47668185742879,53.134954776962026],[-127.4769176949155,53.13484369324555],[-127.47714779790837,53.13472930970428],[-127.47730254550765,53.134575532064595],[-127.47747531667251,53.13442824406047],[-127.47768531921434,53.134301227360275],[-127.47794727337319,53.134214469735156],[-127.47824288124339,53.134179397179764],[-127.4780521447634,53.13405346062287],[-127.47778627994643,53.13397441850295],[-127.47760153835199,53.13383216123125],[-127.47740394871327,53.133697343972024],[-127.477213711216,53.13355851673519],[-127.47702530776311,53.133418545633326],[-127.47683509244266,53.13328028233348],[-127.47663565565192,53.133146051689224],[-127.47641605936501,53.133024399632056],[-127.47616183635496,53.13293007520582],[-127.47590489666034,53.13283858131234],[-127.47566249906384,53.13273402231918],[-127.47537950077374,53.13267367507744],[-127.47510030560719,53.13261496520999],[-127.47491372648874,53.13247328258455],[-127.47475950814587,53.13231999852817],[-127.47468974388373,53.13214492459267],[-127.47457627345088,53.13197824014333],[-127.47448048078029,53.131808529064664],[-127.4743827977574,53.13163828561877],[-127.47441966892528,53.13146020562941],[-127.4743928411217,53.131281234221476],[-127.47432122766533,53.131106738907974],[-127.47432151404796,53.13092687361293],[-127.47425269724774,53.130751787524396],[-127.47421465952947,53.13057351159954],[-127.47421588971089,53.13039363449268],[-127.47426306679736,53.13021598181035],[-127.47424747070569,53.13003687025625],[-127.47425902191881,53.12985742028738],[-127.47427150139458,53.12967795872704],[-127.47428208942976,53.12949795591015],[-127.47428708198734,53.12931858763878],[-127.47428362516143,53.12913876882816],[-127.47426988139433,53.12895906926851],[-127.47425426640085,53.12877940198199],[-127.4742461378156,53.12859963238952],[-127.47425113041953,53.12842026402983],[-127.47426359016985,53.12824024671842],[-127.47430985566956,53.12806316098459],[-127.47428488276043,53.12788361027285],[-127.47423006164318,53.127707228800254],[-127.47421351865464,53.12752756399358],[-127.47421100556922,53.12734773324245],[-127.47421410694437,53.12716782351987],[-127.47425097493102,53.12698974313924],[-127.47425781924595,53.12680978671699],[-127.47427029782918,53.12663032485161],[-127.47427903320276,53.1264509096304],[-127.47431211822204,53.12627175564404],[-127.4743414792249,53.126093203904645],[-127.47436707727613,53.125914134236425],[-127.47438984100836,53.12573454402935],[-127.47440702463075,53.12555558818501],[-127.47441199654686,53.12537565494338],[-127.47440386825727,53.12519589398166],[-127.47438731054038,53.12501622913396],[-127.47436984435672,53.1248371404097],[-127.47435797340384,53.124657426056984],[-127.47435453131716,53.12447759763237],[-127.47435668897046,53.124297708338865],[-127.47436449525871,53.124118304450725],[-127.47438164371422,53.12393878406426],[-127.47440631206338,53.1237597257452],[-127.47444408485623,53.1235810688208],[-127.47451477055809,53.12340648412847],[-127.47464204648817,53.123244085821796],[-127.47477782791306,53.123083813641564],[-127.47484662067441,53.12290869643241],[-127.47485535284063,53.12272928079546],[-127.474796793258,53.12255294575936],[-127.47460292991074,53.12241583593136],[-127.47435783923473,53.12231299350751],[-127.4740838988351,53.12224187994768],[-127.4737948831857,53.12219505248121],[-127.47350158682696,53.12215948432822],[-127.4732075381935,53.122128972309504],[-127.47291266333119,53.12210182289135],[-127.47261520823577,53.1220814378418],[-127.47231638345531,53.122075072952335],[-127.4720193042366,53.12209221957693],[-127.4717267457064,53.122131722515434],[-127.47143401141346,53.12216617942864],[-127.47113777200812,53.12215362020287],[-127.47089539343641,53.12204793082177],[-127.47071257872727,53.1219050739954],[-127.47047206967414,53.12179880465991],[-127.47020614471309,53.1217158200294],[-127.4699520226458,53.12162203727352],[-127.46971695610584,53.12151065129064],[-127.46950016178754,53.121386710442614],[-127.46927790584321,53.12126676388364],[-127.46904010625595,53.121157651872316],[-127.46879684927147,53.12105308984664],[-127.46855268917145,53.120949659211874],[-127.46831035815798,53.12084451988697],[-127.4680662004471,53.12074108823587],[-127.46779046783048,53.12067166802648],[-127.467499749463,53.12062877330424],[-127.46721254580967,53.12057966611612],[-127.46694939097803,53.120494954425425],[-127.46667815362632,53.12041987255664],[-127.46640780662587,53.120343658366764],[-127.46614371205195,53.12025896552995],[-127.46589140148218,53.12016291039867],[-127.46564090536465,53.120065155731446],[-127.4653913147823,53.11996626865427],[-127.46514354292671,53.11986623785749],[-127.46489488282242,53.11976733822074],[-127.46459661647047,53.119749740459305],[-127.46430593845756,53.11978920191336],[-127.46415214535251,53.11994351689934],[-127.46394986698974,53.120076018662495],[-127.46370732755696,53.12018156664069],[-127.46344639784174,53.120269402109756],[-127.46321922817422,53.120385965465715],[-127.46300641309863,53.12051187192111],[-127.46275516526077,53.12060911614273],[-127.46246042772205,53.12063965785203],[-127.4621622913832,53.12062597013012],[-127.46187160270512,53.12058418194261],[-127.46158355499472,53.120537312930914],[-127.46129290162781,53.12049607874624],[-127.46099596405541,53.12051711386737],[-127.46070940620079,53.120567722087316],[-127.46043675759559,53.12064169174565],[-127.46015023683371,53.120693418793856],[-127.45986061161447,53.120736782973225],[-127.45958402487756,53.12080519593141],[-127.45931038658259,53.12087748967917],[-127.45903177242727,53.12094144368737],[-127.45874015735141,53.120981467646075],[-127.45844641515833,53.12101366350955],[-127.45815171025156,53.121045314660606],[-127.45785688927646,53.12107360451462],[-127.45756519511148,53.121111385198354],[-127.45727363067083,53.12115251657839],[-127.45698295563196,53.121192524575775],[-127.45669233765825,53.12123420765847],[-127.45641078720605,53.12129482958867],[-127.45614884973698,53.121380984532514],[-127.45589179361943,53.12147323793416],[-127.45563664652141,53.12156659688477],[-127.45538925274018,53.1216676955018],[-127.45517258830634,53.12179139345887],[-127.45495208387031,53.1219123410737],[-127.45468431825113,53.121992961067306],[-127.45440670985518,53.122059132911694],[-127.45412906624497,53.12212473971145],[-127.45383647175726,53.1221636427783],[-127.45354164012127,53.12219192185677],[-127.45326007440491,53.12225197149457],[-127.45296165892731,53.122257879954404],[-127.45266681550844,53.122231244633916],[-127.4523721362167,53.122264001548984],[-127.45208958710347,53.122322948755304],[-127.45181592622333,53.122395225100085],[-127.45154712758817,53.122473053374684],[-127.45127740381548,53.12255144822424],[-127.45100468762163,53.1226242758656],[-127.45072608780352,53.122689330431854],[-127.45043234701187,53.12272207093363],[-127.45013373612949,53.122722371312626],[-127.44983429270512,53.122725478309825],[-127.44953608000803,53.122736978885435],[-127.44923756495844,53.122740081954944],[-127.44893871975373,53.12273309342305],[-127.44864217666274,53.12271151633901],[-127.44834492013811,53.122696662238525],[-127.44804675490309,53.12268238333308],[-127.44774866642291,53.122670344054995],[-127.44744987951228,53.12266503652598],[-127.44715119248869,53.12266308899467],[-127.44685242498369,53.12265834453187],[-127.44655352753249,53.122650229965835],[-127.44625288878588,53.12264550688149],[-127.44597121456323,53.122593474543514],[-127.44573896706254,53.122480886542526],[-127.44554423196116,53.12234262920623],[-127.44530035047079,53.122245871788905],[-127.44502458791304,53.122174713794294],[-127.44474978870633,53.12210410820629],[-127.44447049544556,53.12203916017427],[-127.44418581802164,53.12198100119454],[-127.44389261662542,53.12197506067745],[-127.44359401768803,53.12200279608459],[-127.44332503457314,53.122075560346346],[-127.44310071393052,53.122195411335625],[-127.44284933414639,53.122290372788214],[-127.44255649902198,53.12232251783319],[-127.4422575626892,53.12231271641909],[-127.4419602733828,53.12229673503767],[-127.44166087048463,53.12230094153272],[-127.4413645816737,53.12228662296162],[-127.44107824517033,53.12223464485714],[-127.44078686630645,53.122199528384655],[-127.4404879693353,53.122190842689065],[-127.44018982949942,53.12217710854803],[-127.43989184182739,53.12216784546369],[-127.43959447830792,53.12214961774895],[-127.43929709165786,53.12213025994981],[-127.43900090805867,53.12214675671601],[-127.43870057772149,53.122150967012615],[-127.43842688869766,53.12208538078761],[-127.43819454995642,53.121969417360546],[-127.43792099579389,53.12190774615353],[-127.4376249649448,53.121928711287445],[-127.43734145020457,53.12198706997573],[-127.43705071264063,53.12202590876785],[-127.43675261922921,53.12204129349201],[-127.43645419907587,53.122046604501264],[-127.43615583951281,53.1220541463654],[-127.43585791270081,53.12207401838874],[-127.43557123840515,53.12212232526092],[-127.43527745574544,53.12215446373559],[-127.43497922430485,53.12216537199255],[-127.43468107241559,53.1221790756837],[-127.43438405312786,53.12219836815311],[-127.4340891324491,53.122224358346635],[-127.43379328319995,53.12225035905895],[-127.43349531982813,53.12226966073191],[-127.4332065615654,53.1223118190029],[-127.4329170263583,53.122358477555736],[-127.43262223608285,53.12238838028904],[-127.43232582086841,53.122398139167395],[-127.43202781381716,53.12241575218723],[-127.43173500777705,53.12244899959092],[-127.43144335626346,53.122488947241116],[-127.43114962104369,53.122522204430425],[-127.43085271123395,53.12254484861247],[-127.43055568763991,53.12256413146308],[-127.43025787184531,53.122587905756895],[-127.42997007043732,53.12263060928829],[-127.42970519951771,53.12271505485458],[-127.42943265322035,53.12279399829668],[-127.42915823418677,53.122872954763494],[-127.42891438039265,53.122970036477916],[-127.42875267799542,53.12311599860388],[-127.42862447226244,53.12328395987526],[-127.42847053655102,53.12343822813626],[-127.42832134262848,53.1235941243557],[-127.42814320774515,53.12375260222274],[-127.42792689336429,53.12380620857902],[-127.42778578394147,53.12364653865043],[-127.42793569670444,53.123483910548586],[-127.42804991898156,53.123317795448244],[-127.42817164511914,53.12315215439232],[-127.42831900437558,53.12299740112345],[-127.42853673431428,53.122874861257266],[-127.42876110004337,53.12275504690223],[-127.42893021110297,53.12260675388738],[-127.429115485186,53.12246611879631],[-127.42931787978131,53.12233311205039],[-127.42956335485422,53.12222873005347],[-127.42983128692724,53.12215208333831],[-127.43012700164947,53.12212161157218],[-127.43042629096611,53.12211407368977],[-127.43072503402482,53.12211830403347],[-127.43102388654869,53.12212532944884],[-127.43132257313442,53.12212788247079],[-127.4316235621607,53.12214272508551],[-127.43183793624836,53.12206000722708],[-127.4320165420804,53.12191607722102],[-127.43219892760351,53.121773230758585],[-127.43239274820178,53.12163640458312],[-127.43256751311783,53.121489723041186],[-127.43263462514967,53.121315208549376],[-127.43280188344727,53.121168052747244],[-127.43300237426935,53.12103507141767],[-127.43323635831642,53.12092353204109],[-127.43344157000777,53.120791604385985],[-127.43356823769147,53.120634297722695],[-127.43354338478547,53.120453052918975],[-127.43351112268394,53.12027413923005],[-127.4336094200725,53.120108775967736],[-127.43384332159343,53.119994994940704],[-127.43408894243376,53.11989563981439],[-127.43427700164234,53.119754953328155],[-127.4344660597595,53.11961593986449],[-127.43467129952256,53.11948513913636],[-127.43489566759102,53.119366424150556],[-127.43513154663752,53.119255978407345],[-127.43538284982105,53.11915879280717],[-127.43564774397802,53.11907601017003],[-127.43589520767598,53.118976072903266],[-127.43612049775447,53.118857344288514],[-127.43634007423275,53.11873533162362],[-127.43656539976274,53.11861772234104],[-127.43680416057536,53.11850947941331],[-127.43705059916411,53.118407310765775],[-127.43727408388628,53.11829028725081],[-127.43745834498557,53.11814852087552],[-127.43765029883197,53.11801282875099],[-127.43776255908357,53.11784560631902],[-127.43787954609485,53.117680011741044],[-127.43800788796399,53.117517631929516],[-127.43816840426267,53.11736607614534],[-127.4383450596254,53.11722103876798],[-127.43852267600849,53.11707655421962],[-127.43869267751022,53.116928800061636],[-127.43880685912588,53.11676323854309],[-127.43885792670224,53.11658555292633],[-127.43889306260944,53.116407496344365],[-127.43893005047434,53.11622886134407],[-127.43895953471265,53.11604976178885],[-127.43898620425713,53.11587068749804],[-127.43901383578067,53.11569216628425],[-127.43904144820343,53.115513089428525],[-127.43906906008849,53.115334003586824],[-127.43909387292037,53.11515496075372],[-127.43911678033665,53.1149753762757],[-127.43913034724505,53.11479590547174],[-127.4391046259195,53.1146174687356],[-127.43903970430638,53.11444175941658],[-127.439005571413,53.11426342501613],[-127.43898353608205,53.11408326683697],[-127.43899619831419,53.11390492763415],[-127.4391283617486,53.11374530569121],[-127.43935168704331,53.1136249175314],[-127.43959039373986,53.1135161130566],[-127.43977564964577,53.11337713636632],[-127.4398756400056,53.1132072545338],[-127.43991918105854,53.11302910381764],[-127.43993178179446,53.11284907963071],[-127.43993411879843,53.11266974524994],[-127.43995327940303,53.11249020593595],[-127.43999591028278,53.11231262204152],[-127.44002912916996,53.11213347624675],[-127.44002863265926,53.11195361148775],[-127.43994137440485,53.11178153647462],[-127.43992598707099,53.111604094385385],[-127.44001658426158,53.11143377076889],[-127.44014866001656,53.11127190706512],[-127.44030819785796,53.11111979456884],[-127.44050479967528,53.11098460496071],[-127.44073006852578,53.110866431429585],[-127.44098034701385,53.11076868038775],[-127.44123931772374,53.11067867643532],[-127.4414983062319,53.110589227529935],[-127.44175628948257,53.11049754897169],[-127.44197868115965,53.1103777225666],[-127.44213537639898,53.11022508623192],[-127.44222030686288,53.11005314430204],[-127.44227229919446,53.109876009800374],[-127.44231208478838,53.109697894558586],[-127.44235094242529,53.1095197995692],[-127.44241984682557,53.10934469094581],[-127.442516075768,53.10917486111205],[-127.44262831232999,53.109008188849884],[-127.44275186824285,53.10884418444829],[-127.44288581943849,53.10868341500069],[-127.44303586940745,53.10852805217749],[-127.44319634865418,53.108376488619925],[-127.44335588358307,53.108224927382615],[-127.44351159985808,53.108071180168714],[-127.44366542502266,53.107916891002915],[-127.44382115797063,53.10776369897388],[-127.44398257833065,53.107612678569566],[-127.44415726425522,53.10746653436633],[-127.44436145320503,53.10733516286642],[-127.44460306293958,53.10723079449217],[-127.44486395112727,53.10714299099808],[-127.44513557401179,53.10706794782774],[-127.44541400333962,53.10700066546034],[-127.44565464648481,53.10689574186544],[-127.44583127111764,53.10675182161285],[-127.4459642568998,53.10659049525634],[-127.4460793058313,53.10642434963896],[-127.44619811846833,53.10625927850245],[-127.4463207247066,53.10609528146944],[-127.4464480566608,53.10593291193849],[-127.44659334222048,53.10577591689803],[-127.44675948674308,53.105626519988526],[-127.44694938772062,53.10548802972828],[-127.44713358009218,53.105346811838665],[-127.44731679018996,53.10520448499415],[-127.44749430667277,53.10505943037459],[-127.44768707766958,53.10492314501617],[-127.4478988173653,53.104793915791745],[-127.44809067732257,53.104658205701675],[-127.44815202976179,53.10448207368872],[-127.44821430919693,53.1043059212969],[-127.44828038282111,53.104130851992785],[-127.44835490396582,53.10395679081808],[-127.4484897612355,53.103796003025934],[-127.44863030572458,53.10363738668967],[-127.44878978440222,53.10348526209505],[-127.44894548255374,53.10333206293316],[-127.44907561347472,53.10317021163386],[-127.44918312051146,53.103003034206296],[-127.44927362383072,53.102831582470436],[-127.44937168104921,53.1026617234972],[-127.44947726185265,53.10249344867375],[-127.4495989017833,53.102329459453934],[-127.4497574443005,53.102177344820454],[-127.44994633899299,53.10203774083811],[-127.45014573849207,53.10190417581719],[-127.45036038814544,53.10177883281789],[-127.45049052386113,53.10161697963533],[-127.45066990799091,53.101473008421785],[-127.45087500992723,53.10134217823869],[-127.45111647345368,53.10123499121409],[-127.45127321268966,53.101085137823354],[-127.4513910430744,53.100919507780624],[-127.4514919045751,53.10075016812257],[-127.4515889860669,53.10057975410586],[-127.45165118810345,53.100401923692225],[-127.45154448984067,53.10023681865583],[-127.4511340694745,53.09999979322472],[-127.45108509713386,53.09996284747517],[-127.45099141821369,53.09979534073659],[-127.45092917212075,53.099616797137614],[-127.45087622075262,53.09943645389369],[-127.45081310968152,53.09926016217683],[-127.45075651453034,53.09908266975387],[-127.45072330669602,53.09890489020496],[-127.45074615607494,53.09872530183093],[-127.45076902022294,53.098545713250644],[-127.45072648450166,53.098369168836115],[-127.45065313470806,53.09819412331577],[-127.45057606421827,53.098019688229556],[-127.45050080702075,53.09784354533269],[-127.45035892867362,53.09768894802143],[-127.45015415156972,53.09755530350114],[-127.44992015982359,53.097442745074794],[-127.4496605982724,53.0973484306561],[-127.44945697812456,53.097220929986165],[-127.44927706403286,53.09707576330532],[-127.44910999025278,53.09692260314268],[-127.44896517334703,53.096764122331685],[-127.44885203256842,53.09660132614318],[-127.44882261775712,53.09642518492388],[-127.44883409499488,53.0962406886515],[-127.44879432519232,53.096062432996895],[-127.448698640304,53.09589045721384],[-127.4485973841445,53.09571967928155],[-127.44853997523202,53.0955455576155],[-127.4485367215498,53.09536796591745],[-127.44855959757346,53.095188942190575],[-127.44859459846292,53.0950086401645],[-127.44860405334794,53.09481969482588],[-127.44863803463173,53.09463716388971],[-127.44868002807911,53.09446966831068],[-127.44869914342885,53.09429012573524],[-127.44869862964248,53.09411082378558],[-127.44867567429249,53.093931796943764],[-127.44864149839954,53.09375290763857],[-127.44860919290986,53.09357399537946],[-127.44857501758574,53.09339510601868],[-127.44852501174651,53.0932180961913],[-127.44846564060032,53.09304119216561],[-127.4483839972785,53.09286905277437],[-127.44827904740548,53.09269943136821],[-127.44814265184404,53.092540290311085],[-127.4479793248898,53.09238707354056],[-127.4477884225442,53.09224765151346],[-127.44755924874762,53.092138391509984],[-127.4472844487777,53.09206218957077],[-127.4470088219814,53.09198935915901],[-127.44672872361393,53.091922742104344],[-127.44646134952373,53.09184477082344],[-127.44623393673177,53.09173212470425],[-127.44603656659328,53.09159501145391],[-127.44582637526074,53.09146590846901],[-127.44560334317784,53.091344242135264],[-127.44539321153384,53.0912168141959],[-127.4452152981556,53.09107385820045],[-127.44505304474231,53.09092399532386],[-127.44489815762573,53.09077067114915],[-127.44474693557031,53.09061506956831],[-127.44459939718446,53.0904577372577],[-127.44443247315593,53.090335382755065],[-127.4442888409114,53.090210501958914],[-127.44418462798583,53.08997923065646],[-127.44404256306727,53.08979045176581],[-127.44391707603819,53.0896485385821],[-127.44375631305465,53.08951490105983],[-127.44356085865903,53.089350873011185],[-127.44337304852851,53.08921924195656],[-127.44323762896109,53.08906063921908],[-127.44313191520871,53.088894949428806],[-127.44316402648367,53.0887118866668],[-127.443227406888,53.088512752426226],[-127.4432612224324,53.08835208234198],[-127.44328149102353,53.0881781295716],[-127.44328485434312,53.08800214193177],[-127.4433105797503,53.087823639743895],[-127.44330538779218,53.08764383868346],[-127.44333281101318,53.0874602681714],[-127.44330810754482,53.08728406746778],[-127.4433150767488,53.08710410882484],[-127.44331737911656,53.08692421613923],[-127.44331779638466,53.086744337498494],[-127.44331849580398,53.086572309115574],[-127.44334108378273,53.08638431483063],[-127.44338988283066,53.086196565120986],[-127.44346826571409,53.086026384800554],[-127.44364936341691,53.08587904844231],[-127.44395335665554,53.08574252833055],[-127.44425126935393,53.08561953886693],[-127.4444030067787,53.085516257761796],[-127.44431889872806,53.08543604115959],[-127.44410443793556,53.085372542630694],[-127.44380709032328,53.0853195780015],[-127.44346596855429,53.085272195018604],[-127.44311644115257,53.0852249137348],[-127.44272616118107,53.085189335897674],[-127.44235704852815,53.08514341223334],[-127.44201879918192,53.08509767553931],[-127.44174280776029,53.08501251018869],[-127.44152907077182,53.084942829987035],[-127.44138533222865,53.08481402900489],[-127.44115748631509,53.08474172306088],[-127.44086704510318,53.084699317807434],[-127.4405740165018,53.084663102653394],[-127.44027921394138,53.08462971458728],[-127.43998378876206,53.08460529881845],[-127.43968842502444,53.08458312292561],[-127.43939624566934,53.08454409730464],[-127.43910106472227,53.084499504132054],[-127.43882985306364,53.08455492361065],[-127.4386438344581,53.08469558840568],[-127.43847872399063,53.084846093385835],[-127.43828888747369,53.08498456269729],[-127.43807328796119,53.085108220595565],[-127.43783764446982,53.08521979455461],[-127.43758731962896,53.085311939275414],[-127.43729094889069,53.08528752825008],[-127.43700413589202,53.08526915948069],[-127.43669668892616,53.08530427764858],[-127.43640316245308,53.08533642854949],[-127.43610872695027,53.08536914562132],[-127.43581268088667,53.0853817093227],[-127.4354909856085,53.085355360205746],[-127.43523003949207,53.08527223834131],[-127.43495970886192,53.08521556134102],[-127.43483966559738,53.085205812549844],[-127.4346784298736,53.08516742624894],[-127.43438424889003,53.08512449467223],[-127.43409915589767,53.085074163165075],[-127.43385526464644,53.08496953840324],[-127.43358877154148,53.0848881568198],[-127.43332826721223,53.08479045664392],[-127.43306315407048,53.084721949425045],[-127.43278146418751,53.08466148740116],[-127.4325006796107,53.084599893058744],[-127.4321951354391,53.08452515008649],[-127.4319294799264,53.08449587063811],[-127.43164086277432,53.08445174419067],[-127.43134457708858,53.08442955867657],[-127.43104592917464,53.08442028434093],[-127.43075918158796,53.08440358521346],[-127.43064527904902,53.08435397827646],[-127.43054729700557,53.08427727323857],[-127.43050750339225,53.08420659658062],[-127.43039426200154,53.084121110768706],[-127.43032073853892,53.08404860107862],[-127.43026166275719,53.08396078280718],[-127.43013104763334,53.08385926174502],[-127.43000742285739,53.08377110405184],[-127.42978951690539,53.08371546628548],[-127.42955648565275,53.08368298054854],[-127.42927569351131,53.08362082287873],[-127.42899144577093,53.08356710694313],[-127.42871509521481,53.08349816120381],[-127.42844238697843,53.08342581772048],[-127.42814224110023,53.08334427507251],[-127.42797036802949,53.083239323573586],[-127.42772612937276,53.0831240486135],[-127.42745992356109,53.083050494669706],[-127.42717373688689,53.08299455649257],[-127.42690511300367,53.08296026317752],[-127.42660565190315,53.082870863672184],[-127.42634219025989,53.082795597571206],[-127.42615648802797,53.082612927905394],[-127.42589559132578,53.082557802041514],[-127.42562895934351,53.082471365875435],[-127.42536999417521,53.08241845690899],[-127.42510859136532,53.082348201818704],[-127.42482517186245,53.08229110396689],[-127.42454441453248,53.08222949063451],[-127.4242610304998,53.08217295583739],[-127.42396979032479,53.08213331624432],[-127.42367579533972,53.08209539463543],[-127.42337898527983,53.08205695036366],[-127.42308225063486,53.082020736830266],[-127.42278564818021,53.08198844781359],[-127.42249019526638,53.0819623124155],[-127.4221968789656,53.08194455114639],[-127.42187585271455,53.08193664393896],[-127.42163133531412,53.08200739210574],[-127.42134520085128,53.082148113398084],[-127.42106485095313,53.0821542923062],[-127.42074069257816,53.08213689841881],[-127.42043055781666,53.082063301266935],[-127.42014792830771,53.08197368320565],[-127.4198870330687,53.081890527298775],[-127.41967088295814,53.0817748893804],[-127.41949441704405,53.08164364959766],[-127.4192814500782,53.08151172742162],[-127.41905413713023,53.081425924882666],[-127.41876980462276,53.08136882361464],[-127.41850009239958,53.08130146003751],[-127.41825820582959,53.08119902085975],[-127.41801806268977,53.08109319824189],[-127.41778154393985,53.080983413764685],[-127.41754680584656,53.080871357138676],[-127.41731478738308,53.08075647021912],[-127.41708552600296,53.08063987324754],[-127.41685900645541,53.080521557457345],[-127.41660668177119,53.080442774325796],[-127.41636953403093,53.08031393417007],[-127.41616559452838,53.08017181215795],[-127.41602428197884,53.08000036636],[-127.4158334318349,53.079858086874836],[-127.41563275676104,53.07972937292966],[-127.4153816429875,53.079658417444456],[-127.41508917570604,53.07963726653496],[-127.41478678869014,53.07962687564199],[-127.4144892178767,53.07962091797112],[-127.41419299151738,53.0796552787836],[-127.4139367817444,53.079740155050274],[-127.41369228228584,53.07981144250785],[-127.41336084734344,53.079911786494186],[-127.41314730687525,53.07995804754199],[-127.41285801990392,53.08000409350559],[-127.41257073612408,53.080054597494126],[-127.41229720633929,53.080124552613576],[-127.41202860280416,53.0802022839521],[-127.41174433372585,53.0802589180495],[-127.41146495367057,53.0803222081112],[-127.41120862713562,53.08043173452466],[-127.4109618023388,53.08048959590128],[-127.41068534349492,53.08055622017214],[-127.41039086532878,53.08058718842256],[-127.41009753398764,53.08062431042731],[-127.40980368462697,53.08064631327936],[-127.40950641643182,53.08062127897216],[-127.40923650034422,53.08054717284815],[-127.40895150518807,53.080497900764726],[-127.4086576430924,53.08046274662556],[-127.40836470848645,53.08042757173753],[-127.40807193186687,53.080453475371534],[-127.40779843276172,53.080525096100075],[-127.40751711640287,53.080586167422304],[-127.4072307645842,53.080636647181976],[-127.406936097532,53.08066200567404],[-127.40666068843937,53.08073252579763],[-127.40639208944829,53.08081080888977],[-127.40612643145015,53.08089298318162],[-127.40586856969743,53.08098514115412],[-127.40559304189591,53.081051742276166],[-127.40531064653274,53.08110889425408],[-127.4050263065951,53.08116382733248],[-127.40474002212008,53.081216541497696],[-127.4044536998373,53.08126813473782],[-127.40416735816532,53.0813191626868],[-127.40387792596545,53.081361826114325],[-127.40358654600259,53.08140171477403],[-127.40329618533153,53.08144438779236],[-127.40301084251871,53.081497642377386],[-127.40272547719191,53.08154978482576],[-127.40243193231511,53.08158128680539],[-127.40213632850477,53.081606644321546],[-127.40183967126981,53.081628660550564],[-127.40154297641108,53.081649546842286],[-127.4012452652466,53.08166821206672],[-127.40094736510737,53.081680710614805],[-127.40064915386718,53.081684246744416],[-127.40035075395127,53.081681616194395],[-127.40005237639159,53.08168011426062],[-127.40000098776132,53.08168127913287],[-127.39951509088631,53.08169320468306],[-127.39921673160602,53.081692256273314],[-127.3989206113645,53.08167390574867],[-127.39862593630316,53.08164265416821],[-127.39833216702677,53.081610270467145],[-127.39803591864369,53.08158800139538],[-127.39773698368701,53.08159770690301],[-127.39746142388825,53.08166428025294],[-127.39718600749528,53.08173477807221],[-127.39689240202736,53.081764590418736],[-127.39659438926209,53.08177371729538],[-127.39629614012455,53.08177612220585],[-127.3959970187827,53.081780213188864],[-127.39569900571503,53.08178933780701],[-127.3954010512773,53.08180070231433],[-127.39510305650974,53.081810390026234],[-127.39480491755532,53.08181615186893],[-127.39450653563927,53.08181407115579],[-127.3942087310916,53.08180133205498],[-127.39391248353947,53.081779052646546],[-127.39361703494245,53.08175284522156],[-127.39332160137309,53.08172662791918],[-127.39302537335324,53.08170491088273],[-127.39272835020127,53.08168767618282],[-127.3924298039327,53.08168055365699],[-127.39213197793539,53.081695826255974],[-127.39183636746665,53.08172116696177],[-127.39154177572001,53.08174929210666],[-127.39124823938737,53.0817813219317],[-127.39095575541776,53.08181670959425],[-127.3906643966217,53.08185767764557],[-127.39037598142434,53.08190310195498],[-127.39009457888172,53.08196300272307],[-127.38982693904207,53.082042921841285],[-127.38956607288738,53.082130040505035],[-127.38929747020161,53.082209404902365],[-127.38901206798313,53.08226150542049],[-127.38871399515756,53.08226893654757],[-127.38841778390014,53.082247763601536],[-127.38812235362042,53.08222209807952],[-127.38782541711258,53.08220709135141],[-127.38752753880678,53.08219210390628],[-127.38722971552804,53.082178791580816],[-127.38693122474518,53.08217388684557],[-127.38663333530253,53.082186913896464],[-127.38634188159477,53.08222563098598],[-127.38606150519433,53.08228831614655],[-127.38580353341503,53.08237819856585],[-127.38557633819777,53.08249460641091],[-127.38534343821054,53.08260772766854],[-127.38506688846151,53.082673162711096],[-127.38476885181497,53.08268225993009],[-127.38447339910495,53.082655464880155],[-127.3841918472648,53.082596571793445],[-127.38391740584117,53.082525823298205],[-127.3836483216465,53.082447722632594],[-127.38339368094584,53.08235320708943],[-127.38311287383583,53.08228813461033],[-127.38282893165287,53.08232788467028],[-127.38254061413197,53.082376641585405],[-127.382243630866,53.08238908211556],[-127.38194433973618,53.08238810093899],[-127.38164600932075,53.08238767258261],[-127.38134760907778,53.082385558812625],[-127.3810491873428,53.08238232387794],[-127.3807507506961,53.082379088364306],[-127.3804523106747,53.0823752873229],[-127.38015383766768,53.08237093006516],[-127.37985537967923,53.08236657187855],[-127.3795569067949,53.08236221311286],[-127.37925844892915,53.08235785341835],[-127.3789599581013,53.082352937507125],[-127.37866146394626,53.082347456067644],[-127.37836295491111,53.08234197404872],[-127.37806449731056,53.082337611338176],[-127.37776607925697,53.08233492392311],[-127.3774677492583,53.082334485016574],[-127.37716867688385,53.08234021316677],[-127.37687069529224,53.08235096633962],[-127.37657274683261,53.082362283186264],[-127.3762744924335,53.08236463755417],[-127.37597592585337,53.082356908854685],[-127.37567587447418,53.082361523963705],[-127.37540499335563,53.082429120521304],[-127.37517400862853,53.08254443148213],[-127.37492563616301,53.08264314339285],[-127.37464914273508,53.08271079452493],[-127.37435974093054,53.08275507026649],[-127.37406513042374,53.0827831518178],[-127.37376848640999,53.082806208822916],[-127.37347378460336,53.082831492784386],[-127.3731782486501,53.082860138716654],[-127.3728846877434,53.0828915670846],[-127.37259827917842,53.08294196283249],[-127.37233644806155,53.08302961895581],[-127.37205757090138,53.083081602388916],[-127.37175763762998,53.083089568087374],[-127.3714607548923,53.083105342224385],[-127.37116305651745,53.08312505186907],[-127.37086535842465,53.08311561465598],[-127.37058568883323,53.08305610269273],[-127.37031028861706,53.08298421330408],[-127.37002183629161,53.082942732437125],[-127.36972386852429,53.08292489503326],[-127.36942610010097,53.082913222675856],[-127.36912831361458,53.08290098496709],[-127.36883121652427,53.08288089391163],[-127.36853668165087,53.082853483667584],[-127.36824294817153,53.08282214558965],[-127.3679491398947,53.08278801048875],[-127.367656241245,53.08275329931961],[-127.36736506828208,53.08271408482235],[-127.36707738244019,53.082666984652455],[-127.36678966113456,53.08261876354047],[-127.36649932687271,53.0825767310953],[-127.36620385036194,53.082548770118656],[-127.36590650031488,53.08254996717537],[-127.3656129754626,53.0825830624965],[-127.36532460036219,53.08263065715076],[-127.36503321152652,53.082671570935],[-127.36473618502143,53.08268284721505],[-127.36444252761343,53.082653740168126],[-127.36415649890372,53.08259988984338],[-127.36387230456793,53.08254489699784],[-127.36358291601734,53.0825028465055],[-127.36328916757421,53.082470375691805],[-127.36299458527442,53.08244127574429],[-127.36269833182409,53.08241836243953],[-127.3624005867409,53.082407228012805],[-127.36210197145888,53.08239834418473],[-127.3618082608441,53.08236698992923],[-127.36152318260385,53.082313678170834],[-127.36124342354248,53.082250783340584],[-127.36096541216713,53.08218450575132],[-127.36068747067313,53.08211991217802],[-127.36040415735549,53.08206321544921],[-127.36011384846981,53.082021176089434],[-127.35981500277477,53.08200500041947],[-127.35952733413154,53.082045292994934],[-127.35927509896321,53.08214120997588],[-127.35904403634947,53.082255378137575],[-127.3588072046772,53.08236512059308],[-127.35854527372781,53.082449940921244],[-127.35826188149196,53.082507555823675],[-127.35797445905324,53.08255568630828],[-127.35768303061249,53.08259601753626],[-127.35739054862222,53.0826324333672],[-127.35709803056986,53.08266773719191],[-127.35680552980668,53.082703595932486],[-127.35651195785985,53.08273498362269],[-127.35621412961952,53.08275073027247],[-127.35591476492942,53.08274744267252],[-127.35562812327731,53.08270309993932],[-127.35539635224218,53.08259089667729],[-127.35521130290103,53.08244845517181],[-127.3550327703243,53.082304817976436],[-127.35485145969449,53.0821617682188],[-127.35467661532198,53.08201641169109],[-127.35450451533205,53.081869337974965],[-127.35433243149275,53.08172226382427],[-127.35415664812815,53.08157690833157],[-127.35397441929601,53.081434432573495],[-127.35378298660494,53.08129654463198],[-127.35357868235263,53.08116552779871],[-127.35338550780843,53.081031585954456],[-127.35325871067158,53.080867737431674],[-127.35310700436999,53.08071426894961],[-127.3529073000438,53.08058095696839],[-127.35270205662066,53.080449384581975],[-127.35253185741983,53.080302851056516],[-127.3524134148733,53.08013666465374],[-127.35224601175118,53.07998953389448],[-127.35203618128033,53.079860818993055],[-127.35180639395091,53.079751383244755],[-127.3516814408739,53.07958640023022],[-127.35149924661188,53.07944447613514],[-127.35132259108158,53.07930025605522],[-127.35120228957338,53.079134654505516],[-127.35096962217311,53.07902244397612],[-127.3506891009267,53.078964015804004],[-127.3504040598191,53.07891068607574],[-127.3501377650637,53.07882911605105],[-127.3498652030509,53.07875602645107],[-127.34959349796411,53.07868068512866],[-127.34932004921069,53.07860928988318],[-127.34902792583465,53.078568356013484],[-127.34876629943815,53.078486173776874],[-127.34848941692456,53.07842433692544],[-127.34820003641684,53.07838113737081],[-127.34793734580776,53.07829503869152],[-127.34766742774612,53.07821687544494],[-127.34739044183256,53.07815167526103],[-127.34710099286177,53.07810622354708],[-127.34681859587621,53.078047251830114],[-127.34652352221782,53.07803099987347],[-127.34623159854199,53.077995669115175],[-127.3459331599004,53.07799122539801],[-127.34563384722631,53.0779884673839],[-127.345365055241,53.077915889379184],[-127.34507993891496,53.07785974166749],[-127.3447864675185,53.07783450191152],[-127.34448804805902,53.07783061914952],[-127.34418871900336,53.07782730182958],[-127.34389108200048,53.07781836122982],[-127.34359297918093,53.077823993684646],[-127.34329480796741,53.077827940700296],[-127.34299665193794,53.07783189575528],[-127.34269810840074,53.077824083113285],[-127.34241851323323,53.077764504302195],[-127.3421335436142,53.077712830478724],[-127.34183594328728,53.07770500495173],[-127.34153935272951,53.07772910135442],[-127.34126080937526,53.07779165911707],[-127.34099114575255,53.07786868389883],[-127.34071952589231,53.07794348894767],[-127.34060285015319,53.07765400812466],[-127.34048738250621,53.077491703137504],[-127.34026842977732,53.07736867448834],[-127.3400928542185,53.07722777872002],[-127.33996521038723,53.07706449070374],[-127.33984406770247,53.07690000814934],[-127.3397479788567,53.076729638033335],[-127.33961763238109,53.076569742242484],[-127.33944097601338,53.07642381930108],[-127.3392459450965,53.07628819031605],[-127.33903711456045,53.07615944137445],[-127.33883010437674,53.076029550781676],[-127.33865165428284,53.0758858883102],[-127.33848055936116,53.07573822441775],[-127.33825259268696,53.07562538010749],[-127.33800719365753,53.07552281872157],[-127.33777451316264,53.07540890624553],[-127.33751380213447,53.07532500357869],[-127.337233182611,53.07526206231726],[-127.33695085358616,53.07520418717117],[-127.33666410623003,53.07515419696909],[-127.3363871397217,53.07508841522718],[-127.33614358492282,53.07498526434911],[-127.33586838383704,53.07491609947409],[-127.33557668432624,53.074886899244476],[-127.33527865657686,53.0748947514074],[-127.33498000105473,53.07491213098438],[-127.33468849618971,53.0748890944451],[-127.3344313217042,53.074798421172474],[-127.3341904616345,53.074691318074166],[-127.33394689698318,53.07458760699691],[-127.33370696400694,53.07447993661274],[-127.33347894635996,53.07436484249781],[-127.33325821344573,53.0742434976433],[-127.33303931618909,53.074121019976516],[-127.33280854349276,53.07400763217758],[-127.33257960364502,53.07389254675795],[-127.33234881596806,53.07377860239876],[-127.33209437683375,53.07368509610632],[-127.3318462805685,53.07358535863926],[-127.3315990949142,53.073485045583],[-127.33133919196932,53.07339608189976],[-127.33109565915976,53.07329292051428],[-127.33086580341336,53.073178406953275],[-127.33063320504598,53.07306560034752],[-127.33040061038763,53.07295334909271],[-127.33017166533783,53.072837703289096],[-127.32995004284449,53.07271748301486],[-127.32973942396033,53.07258985868139],[-127.3295453337193,53.07245308268799],[-127.32936693010974,53.07230940589792],[-127.32919682402111,53.07216171765426],[-127.32902853801224,53.072012879066875],[-127.32885750960914,53.07186575655895],[-127.3286818696058,53.07172037114747],[-127.32851267770882,53.07157210682807],[-127.32833237702198,53.071427329169374],[-127.32818556509903,53.071277127209264],[-127.32821165936028,53.07109528783095],[-127.3282481316276,53.07091669367236],[-127.3282602842468,53.07073725234208],[-127.32824810529681,53.070557528794794],[-127.32823499906857,53.0703778066922],[-127.32821724523771,53.07019870164954],[-127.3282088049027,53.07001893600032],[-127.32823311670354,53.06983991367655],[-127.32828177965399,53.069662302915596],[-127.32834728191459,53.069485067520226],[-127.32834188016311,53.069312547400635],[-127.32817266398399,53.06916316212861],[-127.32792633193519,53.06905890514427],[-127.32766817527565,53.06896487544848],[-127.32747447620841,53.068839854028205],[-127.32744177359453,53.068660916784964],[-127.32743602511405,53.06847719392856],[-127.32743324805891,53.06829904093089],[-127.32728714709656,53.06814099412694],[-127.32704926145796,53.06803776106863],[-127.32678582111544,53.067953874753485],[-127.32654046156817,53.067850724653134],[-127.32627438745698,53.06777247007464],[-127.3260037716148,53.06769818371165],[-127.32577670334136,53.06758194361055],[-127.32558727618235,53.06744342330537],[-127.32533738004354,53.0673442484406],[-127.32506580923302,53.06726941483163],[-127.32478801984477,53.06720472730009],[-127.32449351765655,53.06717385519421],[-127.32419824845877,53.06714858527],[-127.32390166938607,53.06717096162315],[-127.32360604959956,53.06719389128622],[-127.32331050175563,53.06721961655414],[-127.32301910814479,53.067258177585735],[-127.32272872849464,53.06729953265409],[-127.32243731913346,53.06733810137805],[-127.3221418194396,53.0673649438154],[-127.32184939466079,53.06740071632606],[-127.32155267300585,53.06741860572263],[-127.32125602087581,53.067438734901295],[-127.32095778105966,53.06743814450714],[-127.32065758283873,53.067434222264104],[-127.32037891926217,53.06749168548853],[-127.3201257551092,53.067587530039496],[-127.31985608574466,53.06766395154084],[-127.31956772593144,53.06771031464645],[-127.31927323610356,53.067739944683915],[-127.31898181797628,53.067777940092135],[-127.3186893876874,53.06781370477027],[-127.31839700898487,53.06785114463937],[-127.31811952783586,53.06791699863394],[-127.31786246147654,53.068007843323805],[-127.31762946030703,53.06812082302668],[-127.31743074736242,53.068254721113604],[-127.31724249417296,53.0683940964721],[-127.31703617825637,53.06852359603963],[-127.31682034409474,53.068648153937225],[-127.31660258499717,53.06877049157333],[-127.31638294059586,53.06889284980004],[-127.3161651962195,53.06901574226367],[-127.31595124361735,53.069140842320635],[-127.31574491985073,53.0692703306149],[-127.31553955692343,53.069400937438566],[-127.31532561776166,53.069526591985706],[-127.31509543244039,53.06964065571273],[-127.31488625800942,53.0697690624712],[-127.31471419736795,53.069918339085305],[-127.31443931741273,53.06997799608916],[-127.31415694260737,53.07003717103293],[-127.31394870769066,53.07016612143676],[-127.31384265251295,53.07033371338343],[-127.31377796356055,53.070509254416685],[-127.31372459094653,53.07068747562142],[-127.31346531677308,53.07076824005026],[-127.31317076678302,53.07079673455585],[-127.3128762825107,53.07076694484846],[-127.31257795037334,53.070764101728855],[-127.31228125313125,53.0707836437136],[-127.31198568837236,53.070809340423146],[-127.31170229326692,53.07086627940666],[-127.31152159061295,53.07100893215335],[-127.31136836105205,53.07116304188715],[-127.31121607467779,53.07131769676666],[-127.31104866067135,53.071466925073246],[-127.31087647828477,53.07161339993767],[-127.31069293842359,53.07175495316618],[-127.31047516536538,53.07187839971685],[-127.31026311750259,53.072005144273206],[-127.31010230149566,53.07215653921099],[-127.30994242616569,53.072307914505686],[-127.30972274204271,53.07242970428113],[-127.30950592195748,53.072553694200884],[-127.30932045493525,53.072694154809426],[-127.30911220723203,53.072823096323994],[-127.30890678926856,53.07295312673557],[-127.30867945108561,53.073069951884555],[-127.30845403044749,53.07318787597814],[-127.30826003176105,53.07332450257038],[-127.30810393601497,53.07347751874148],[-127.30794216213636,53.07362835626619],[-127.30773389070407,53.07375729544733],[-127.3075265772699,53.07388677947315],[-127.3072742880631,53.07398258569427],[-127.30698685065526,53.074030592529816],[-127.30668832098456,53.07402156844237],[-127.30639020787925,53.07402655154708],[-127.30609226473696,53.07403657044142],[-127.30579423753004,53.07404434822121],[-127.30549815976107,53.074024087567544],[-127.30522035599117,53.07395935426615],[-127.30498597173768,53.07384763830305],[-127.30479656740233,53.07370852950566],[-127.30463669423085,53.073556767117324],[-127.30448330333084,53.073402691627884],[-127.30431695131921,53.07325324165203],[-127.30412664202234,53.07311470658559],[-127.30392345773127,53.07298359306792],[-127.30370832109949,53.072858770204334],[-127.30347668944708,53.07274477961246],[-127.30321868487995,53.0726546131313],[-127.3029534476022,53.07257293520802],[-127.30267829896441,53.07250312830913],[-127.30241575452027,53.07241749275101],[-127.30219330307133,53.07229779521798],[-127.30199748307578,53.07216211465809],[-127.3018025741496,53.072025858929536],[-127.30159295347819,53.07189761849735],[-127.30136134980225,53.07178417934705],[-127.30116553720177,53.07164906214736],[-127.30097893215645,53.0715087958144],[-127.30078310473229,53.071373113344734],[-127.30057993675834,53.07124142916559],[-127.30037217555203,53.0711126013106],[-127.30014971968095,53.070992344186735],[-127.2998998791416,53.07089367136195],[-127.29961764717304,53.070836262505864],[-127.29931989710924,53.070821608238184],[-127.29902219884323,53.07080863810321],[-127.29872417573092,53.07081583344477],[-127.2984265289817,53.07080453772985],[-127.29812706475954,53.0707949466936],[-127.29785474684796,53.070725097588344],[-127.2975580793421,53.07071546541814],[-127.29726139279428,53.07073553429026],[-127.29696328237792,53.07073937318077],[-127.29666630680582,53.07071965635096],[-127.29637185191834,53.07069039011052],[-127.29607911274263,53.070656065892805],[-127.29578467567346,53.070627353841026],[-127.29548850693496,53.07060315159774],[-127.2951899696279,53.07059297816458],[-127.29489304345822,53.07060519920304],[-127.29459637337747,53.070625817036124],[-127.2942983852512,53.0706341304434],[-127.29400001886404,53.070629555351395],[-127.2937041900241,53.07064736459206],[-127.29346987777734,53.070750788963565],[-127.29317897529772,53.070715307856155],[-127.29290382064983,53.070644357845275],[-127.29261533822014,53.070595965946794],[-127.2923372020427,53.07064215901434],[-127.29208585907374,53.07073904309803],[-127.29183451495692,53.07083592664149],[-127.29160537200437,53.07095553554483],[-127.29132219174504,53.07098945426239],[-127.29101835390533,53.07098996985016],[-127.29072180357979,53.070983690121224],[-127.29047201909735,53.07088611762582],[-127.29028360269173,53.07074697519448],[-127.29003195169767,53.07064943113814],[-127.28978031875404,53.07055244219465],[-127.28952868696082,53.070455452709666],[-127.28927525523608,53.070360723630785],[-127.28900743278759,53.07028463720696],[-127.28870709816833,53.07027670833022],[-127.28841205001247,53.07025863523465],[-127.288141399741,53.07018146603835],[-127.287905280191,53.07007197687569],[-127.28770490380593,53.06993856403469],[-127.28748343177672,53.069818263742974],[-127.2872610192263,53.069697982257956],[-127.28706620293482,53.06956282229592],[-127.28696291724138,53.0693941749453],[-127.28692383564422,53.069215297939984],[-127.28688571326576,53.06903696629372],[-127.28681219938947,53.06886351179164],[-127.28664414122235,53.06871629729206],[-127.28639614665883,53.06861533486762],[-127.28619579901515,53.06848248397257],[-127.28605542623582,53.06832376068507],[-127.28596143973218,53.068152760896275],[-127.28582756735031,53.06799229006309],[-127.28561623055974,53.067866837538396],[-127.28534194910095,53.06779305453817],[-127.28507500722297,53.067714152628646],[-127.2848544476559,53.06759272585382],[-127.28467158649855,53.067450708035366],[-127.28452660872203,53.067293718478645],[-127.28439087517222,53.06713325730537],[-127.28421544105998,53.066988925682345],[-127.28398662207668,53.06687262553566],[-127.28375800559759,53.066762481808084],[-127.28366118719688,53.06659039927999],[-127.28359696769502,53.06641459143898],[-127.28354582982742,53.066238085527154],[-127.28351516850488,53.06605911573662],[-127.28349945741176,53.06587942759309],[-127.28351085585834,53.065700000621554],[-127.28351381932029,53.06552010050459],[-127.28344684025096,53.06534545210156],[-127.28331020709548,53.065185564201],[-127.28314396187575,53.06503608370893],[-127.2829721937231,53.06488890427665],[-127.2828142836991,53.064736526667055],[-127.28268228584896,53.064575467031524],[-127.2825697528751,53.064409157412825],[-127.28248043708408,53.06423754814575],[-127.28242742051997,53.06406049720614],[-127.28240890396079,53.06388083923692],[-127.28239693796753,53.063701665949054],[-127.28239337242465,53.06352183660833],[-127.282406643782,53.06334238920376],[-127.28242833236965,53.06316285036364],[-127.28244813697157,53.0629833319602],[-127.28246608751309,53.06280383366982],[-127.28247654760965,53.06262441671018],[-127.28248045740158,53.06244451503305],[-127.2824787604302,53.06226466526725],[-127.28246773647886,53.062085481589776],[-127.28244644167381,53.06190640944494],[-127.2824737378621,53.06172737433993],[-127.28254416607116,53.06155234434485],[-127.28254438857229,53.061374159088786],[-127.28247274062878,53.061199560543514],[-127.28247946065719,53.061019619229285],[-127.28245815138744,53.06084054713897],[-127.2824583403882,53.060661241530326],[-127.28241930288375,53.060482926756904],[-127.28244755690581,53.06030443694041],[-127.28243277908051,53.06012472902993],[-127.28244978664418,53.05994524067567],[-127.28247426890297,53.0597656711112],[-127.28246137691792,53.05958650747233],[-127.28238974728343,53.05941190853437],[-127.28232372613964,53.05923780447203],[-127.2823369625985,53.05905723635162],[-127.282364289157,53.05887875647463],[-127.28239439394264,53.058699681588465],[-127.2824132868154,53.058520737417375],[-127.28235746722746,53.05834371638872],[-127.28222460010885,53.05818435077981],[-127.28198679335625,53.058077665383045],[-127.28169571693205,53.05803320244684],[-127.28145602877761,53.05792653641916],[-127.28124746397162,53.05779768400185],[-127.28116948060172,53.05762931226636],[-127.28120608864573,53.05744905534659],[-127.28120439727428,53.057269205044214],[-127.28120177936586,53.05708937374294],[-127.28120663764489,53.05691001713607],[-127.28119371805707,53.05672973278091],[-127.28124821911899,53.05655375520712],[-127.28146983714821,53.05643368174745],[-127.28104874771145,53.05638558099604],[-127.28075699373488,53.05634896773792],[-127.28046692459264,53.056306723277714],[-127.28018304874615,53.056252648618205],[-127.27990089027176,53.05619351622471],[-127.2796160891021,53.05613945024586],[-127.27932864721772,53.056091015447876],[-127.27903773900509,53.056051582702935],[-127.27874508079802,53.05601608599026],[-127.27845247383797,53.05598227345811],[-127.27815722575693,53.05595409204391],[-127.27786377736221,53.055923093276135],[-127.27757283793653,53.055882536634265],[-127.27728021583758,53.055848156571365],[-127.27698422820954,53.05582614829261],[-127.27668657429021,53.05581087222119],[-127.27638988134322,53.05579671462621],[-127.27609722710825,53.05576121134539],[-127.27581958800981,53.055696417187406],[-127.27554191784056,53.05563105791219],[-127.2752484396568,53.05559892339174],[-127.27495242116487,53.0555757897316],[-127.27466413066824,53.05553014996397],[-127.27437430693206,53.055495176689554],[-127.27407669017488,53.055481023283455],[-127.27378208735473,53.055474116341685],[-127.27348637062443,53.055491874938845],[-127.27318784578985,53.0554788407737],[-127.27289103687497,53.05546019308085],[-127.2725957455949,53.055430312842034],[-127.27232633001823,53.05535925385019],[-127.27208481028912,53.05525203295013],[-127.27183605471878,53.055153298854044],[-127.27157548122446,53.055065333198996],[-127.27132948768924,53.05496488284647],[-127.27111820815618,53.05483771852942],[-127.27091979140675,53.05470313564121],[-127.27070667972832,53.05457711993209],[-127.27050466268918,53.05444705769607],[-127.27034399087061,53.05429301662909],[-127.27026141208171,53.0541258079817],[-127.27030274178199,53.05394549477622],[-127.27031230772651,53.05376553228858],[-127.27016119920447,53.05361866777482],[-127.26992510098938,53.05350522510095],[-127.26972581764825,53.053372326022235],[-127.26954582836011,53.05322857744887],[-127.26936030203764,53.05308712943532],[-127.26915368470203,53.05295935565725],[-127.26892499757044,53.05284302523066],[-127.26871464592165,53.05271529083219],[-127.26855780779785,53.05256401222361],[-127.26848996877426,53.05238935519272],[-127.26844726079018,53.05221107510374],[-127.26836637597273,53.05203712295885],[-127.26821790804291,53.05188462433397],[-127.26799928038233,53.05176090432684],[-127.26777334760816,53.051642856651014],[-127.26753009445622,53.05153957192398],[-127.26726234626071,53.051460639128216],[-127.26698377342207,53.05139470488939],[-127.26672153188689,53.0513123498333],[-127.26647733964333,53.05120850823509],[-127.26623133052493,53.05110637108269],[-127.2659889921559,53.05100194379532],[-127.26574663840842,53.05089696033996],[-127.26550064942134,53.050795377310834],[-127.26524919023866,53.0506983350015],[-127.26499774903377,53.05060185677776],[-127.26476270634909,53.05049118973897],[-127.26456803329786,53.050355435512955],[-127.26437613803984,53.05021853056725],[-127.26413746260928,53.050111263155706],[-127.26387693602048,53.0500232802545],[-127.26362184860882,53.04992963531728],[-127.26339688122864,53.04981213384893],[-127.26320772046073,53.04967295646327],[-127.26304069666219,53.04952401192053],[-127.26288569214692,53.049370464923214],[-127.26273345006733,53.049215758556116],[-127.26258767411049,53.04905875049611],[-127.26245395004337,53.04889824244726],[-127.26232300376078,53.048736592853594],[-127.26217817228738,53.0485795652127],[-127.26204630297656,53.0484184810157],[-127.26200369266502,53.048242438773244],[-127.26203197428248,53.04806226766371],[-127.26203224950268,53.04788296077002],[-127.26193658877303,53.047714209538434],[-127.26176770895844,53.04756528299793],[-127.26158408496511,53.047423246666064],[-127.26139956861316,53.047282331270765],[-127.26122609786844,53.04713625912494],[-127.2610581313809,53.04698621012685],[-127.26094402773124,53.046825490687574],[-127.26090506004118,53.0466460470879],[-127.26083726039957,53.04647082923573],[-127.2607666849284,53.04629676163253],[-127.26072588336051,53.04611844920543],[-127.2606981424129,53.04593944140956],[-127.26065920984608,53.04576111793193],[-127.260589546093,53.045586475625846],[-127.26048549734632,53.04541781269375],[-127.2603629013977,53.045253821351935],[-127.2602236270282,53.04509449952331],[-127.26002811642317,53.04496042324228],[-127.25977128310632,53.04486959487393],[-127.25949813666283,53.044795740831745],[-127.25921965311476,53.04473091727722],[-127.25892651349206,53.04470770451678],[-127.25862836637967,53.04470416030218],[-127.25833239970869,53.0446798645322],[-127.25804686136063,53.044629117097074],[-127.25780368852483,53.044526367577944],[-127.25761365955616,53.0443877463438],[-127.25745773520556,53.044233637164155],[-127.25728709999977,53.04408752903935],[-127.25706125456857,53.04397002496986],[-127.25684646939025,53.04384736425028],[-127.2566794743782,53.04369785453687],[-127.25653649936768,53.043539123660636],[-127.25635484433606,53.0433992906097],[-127.25610075654973,53.04330618382969],[-127.25582761011202,53.043231765559135],[-127.2555863168849,53.0431284267233],[-127.25537972321317,53.04299838750749],[-127.25515848359953,53.04287803370576],[-127.25491893126603,53.042770757213184],[-127.25468122994646,53.04266233991197],[-127.25444716793501,53.04255107734692],[-127.25421494053985,53.042438118333386],[-127.25397904638727,53.04232800393768],[-127.253733118531,53.0422258312548],[-127.25350641608863,53.04211001502939],[-127.25334501041661,53.04195932063037],[-127.25326703450575,53.041786447734296],[-127.25325329672513,53.04160616875217],[-127.25325919605818,53.04142623707076],[-127.25324550644214,53.04124707819172],[-127.25320748621998,53.04106705700067],[-127.25307868199,53.04091265405751],[-127.2528868020554,53.040774053876206],[-127.25274758683129,53.0406152784821],[-127.25263429150087,53.04044838324894],[-127.25253215454906,53.04027968401575],[-127.25243838180347,53.040109219427514],[-127.25235014898401,53.039937019472795],[-127.25227403202672,53.0397635612642],[-127.25222117224835,53.03958650323361],[-127.25219813352257,53.03940744329361],[-127.25218349100001,53.0392277294371],[-127.25217260087885,53.03904854055618],[-127.25216823924768,53.038868726543406],[-127.25215265566804,53.03868902261491],[-127.2521324268722,53.03850993276256],[-127.25211872656304,53.03833021777846],[-127.25211621780012,53.03815037506736],[-127.25212960918286,53.037970928443826],[-127.25215233923731,53.03779138271152],[-127.25216573035416,53.037611936046325],[-127.25214923749871,53.037432806448315],[-127.25212524081017,53.03725263579562],[-127.25205378998248,53.03707857188035],[-127.2518584595318,53.036948971778614],[-127.25159341035037,53.03686213085541],[-127.25134755290865,53.03676107318072],[-127.25113361503401,53.03663391051238],[-127.25100936153575,53.03647497427069],[-127.25099655973897,53.036294119855704],[-127.25099965746959,53.03611366167938],[-127.25093661024403,53.035939507953124],[-127.25080665749883,53.03577726991524],[-127.25065173246178,53.03562370578781],[-127.25048480796681,53.0354747422664],[-127.25031880957539,53.035325212850935],[-127.2501592922864,53.03517393803967],[-127.25000250389162,53.0350203838298],[-127.24986796188074,53.0348604346625],[-127.24977232923435,53.03468998735751],[-127.24967206876252,53.03452070963121],[-127.24951718370558,53.034367699415355],[-127.24932904720934,53.03422793306328],[-127.24913633269514,53.034091012030494],[-127.24894269309917,53.0339541004765],[-127.24876102183882,53.03381145867381],[-127.2486209199476,53.033653243401154],[-127.24852532656782,53.03348335944203],[-127.24845199773449,53.0333087482474],[-127.24840195578672,53.033131658279956],[-127.24836401123942,53.032952754826304],[-127.24827865125845,53.03278163273831],[-127.24813113396208,53.03262518075724],[-127.24797254291504,53.0324727724881],[-127.24782687874497,53.03231573571173],[-127.24770808819873,53.032151134806114],[-127.24763572283742,53.03197707765077],[-127.24758940426474,53.03179938307292],[-127.2475375002047,53.03162231232824],[-127.24748931494989,53.03144463741899],[-127.2474085884429,53.0312717891301],[-127.24722979334909,53.03113135582868],[-127.24698391367107,53.031028048108034],[-127.24675087740992,53.03091676854245],[-127.24654805426806,53.03078443270315],[-127.2463792957432,53.03063548268295],[-127.24629117293361,53.03046551786603],[-127.24629898421693,53.03028613027457],[-127.24635543047015,53.03010902608737],[-127.24641096658794,53.02993249627558],[-127.24645149886136,53.02975444841579],[-127.24648080819698,53.02957538946244],[-127.24650730899339,53.02939636911742],[-127.24653194192078,53.02921735951416],[-127.24653600089734,53.02903745555984],[-127.24652885537614,53.028857660997865],[-127.24654226743633,53.02867821403466],[-127.24657717933496,53.02849966055156],[-127.24663552254715,53.02832366558879],[-127.24673421753053,53.02815395916831],[-127.24682068452505,53.02798158469982],[-127.24681264631562,53.02780348493727],[-127.2467142648966,53.02763362860882],[-127.24658061908251,53.02747142459355],[-127.24652794618142,53.027299399662446],[-127.24653377336838,53.02711610588013],[-127.24640417692905,53.02696450959964],[-127.2461573165261,53.02685896922355],[-127.24590514996235,53.026763014456726],[-127.24565381212457,53.02666368843069],[-127.24546492772302,53.026528406316054],[-127.24539537455094,53.0263543177248],[-127.24539195251317,53.02617392771432],[-127.24540723577053,53.02599446088711],[-127.24542061881219,53.02581389343774],[-127.24537993419905,53.02563669389235],[-127.2452408460561,53.02547959319143],[-127.24506196607626,53.0253346747192],[-127.24488956568075,53.02518800213092],[-127.24471624195553,53.025041903844986],[-127.24454108371259,53.02489638946974],[-127.24436868689472,53.024749716082674],[-127.24419997653027,53.024601327057425],[-127.24403956371307,53.02444948831227],[-127.24385890716026,53.024307392884474],[-127.24366899922458,53.024168747724886],[-127.24352342744409,53.02401283399245],[-127.24341112221653,53.023845353887396],[-127.24333042674765,53.02367250203936],[-127.24330184926478,53.02349406237157],[-127.24328351561853,53.0233143850957],[-127.24325959730567,53.0231353314686],[-127.24324782287006,53.02295614983908],[-127.24324629385497,53.02277630436878],[-127.24324849877644,53.02259641056288],[-127.2432478958456,53.02241655529474],[-127.24323237097673,53.022236848302946],[-127.24324111973088,53.02205745028916],[-127.24320978337748,53.02188016018247],[-127.24307803610169,53.02171793197625],[-127.2428615858143,53.02159693988416],[-127.2425921886447,53.02151740479649],[-127.24234277314811,53.021418616384544],[-127.24222145408552,53.02126131589699],[-127.24209156328148,53.02109851119234],[-127.24194402732017,53.02093924513312],[-127.24182532413788,53.02077575752575],[-127.24176797106048,53.020602658692056],[-127.24175339565346,53.02042350620591],[-127.24175742476794,53.020241916531006],[-127.24175771988357,53.02006036614365],[-127.2417328838148,53.019881321612864],[-127.2416791680061,53.019704822385485],[-127.24161428363824,53.01952956134104],[-127.24154287451243,53.01935493373718],[-127.24146682232315,53.01918091079373],[-127.24139075425524,53.019006323143124],[-127.24131655400289,53.01883172474136],[-127.24124889578894,53.01865704847512],[-127.24118959929886,53.018481172474594],[-127.2411684526878,53.01830096820798],[-127.24116780782751,53.01811886271763],[-127.24113739251112,53.0179409972657],[-127.24105304920884,53.01777042318606],[-127.24095474678244,53.01760168137466],[-127.24084806923149,53.01743413927644],[-127.24073397300185,53.01726780473977],[-127.24061614525445,53.01710206518307],[-127.24049646651562,53.01693634496903],[-127.24037771466227,53.016770614880144],[-127.24026175651474,53.016604855289295],[-127.24014766454619,53.016438511141786],[-127.24003264907823,53.01627274140089],[-127.23991576769849,53.01610699115587],[-127.23979426193476,53.01594297487606],[-127.23966720409055,53.01578012851818],[-127.23953459756365,53.01561959062453],[-127.23939921554681,53.01545963759184],[-127.23926104185524,53.01529971373138],[-127.2391191696227,53.01514150507533],[-127.23897546308855,53.014983880328785],[-127.23882804185037,53.01482741508542],[-127.23867695226905,53.01467267366049],[-127.2385221477753,53.01451908274887],[-127.2383654602042,53.014364399703645],[-127.23820135697952,53.01421202666447],[-127.23802808331591,53.01406479713193],[-127.23784010716753,53.01392613112335],[-127.23762737963524,53.013802849044964],[-127.23735292555382,53.01370766600106],[-127.23705825054972,53.01362391003585],[-127.23680344081099,53.013530205164585],[-127.2366438612394,53.01340412265504],[-127.23657947998299,53.013245098400034],[-127.2365705780551,53.01306757074961],[-127.23659775886058,53.01287901395546],[-127.236643539306,53.01268745596187],[-127.23668669139305,53.01250209362986],[-127.23673570394564,53.012325635131816],[-127.23682120589069,53.01215215593007],[-127.23691704630167,53.011980809545676],[-127.23700446098746,53.01180843076643],[-127.23709745987362,53.01163599332219],[-127.23721121780643,53.011470626824405],[-127.237364566249,53.01131884867392],[-127.23755659402624,53.01118066827849],[-127.23774858817623,53.0110413761971],[-127.23791884524306,53.01089278179233],[-127.23807113266079,53.010736531090664],[-127.2381764282726,53.01056956686242],[-127.23826740606457,53.01039210202317],[-127.23833775180665,53.01021093587834],[-127.23836437279874,53.010035276300265],[-127.23828048206751,53.00987981950877],[-127.23805155635606,53.0097443808312],[-127.2379478807091,53.00958241645318],[-127.23791185279198,53.00940348772877],[-127.23790744017556,53.00921974444351],[-127.23791896685312,53.009038631011634],[-127.23793229490018,53.008855266276974],[-127.23796055443971,53.00867173581101],[-127.23801702318723,53.00849519800709],[-127.23812155244735,53.008334409758234],[-127.23829764150685,53.00819415374712],[-127.23851891776862,53.00806743573066],[-127.23874398966993,53.00794236289181],[-127.23896066997919,53.00781793361694],[-127.23917168435067,53.007691322120195],[-127.23938628314296,53.007559625054],[-127.23960461372292,53.00742789731076],[-127.23980507344724,53.00729186538019],[-127.23996988900605,53.00714949283123],[-127.24003242057502,53.0069891352824],[-127.23994949719784,53.006802855267836],[-127.23997346426373,53.00663226132152],[-127.24016336735654,53.00648626259853],[-127.2402601726401,53.006317143842644],[-127.24034941200212,53.006144177732864],[-127.24021223992285,53.00598592934176],[-127.24001322475202,53.00585185625601],[-127.23980044974233,53.005725781171364],[-127.23956299422039,53.00561733107045],[-127.23932644914804,53.00550830611006],[-127.23911184422855,53.00538336970043],[-127.2389404548109,53.005236121285364],[-127.23881250808563,53.00507384750564],[-127.23870401904247,53.004906321679684],[-127.23860387293185,53.0047370315878],[-127.23850559392221,53.0045677217916],[-127.23839988316442,53.00439961062776],[-127.23828119097529,53.004234441847146],[-127.23814860925904,53.0040733366548],[-127.23800956933395,53.00391454045853],[-127.23786960477919,53.003755753801045],[-127.23773517604215,53.00359522337372],[-127.23761187932865,53.00343177875062],[-127.2375312312805,53.003258921012595],[-127.23751760408352,53.00307920061438],[-127.23755439910005,53.00290062752332],[-127.2376080699975,53.002724118614616],[-127.23765984285893,53.002547064762126],[-127.23771724528581,53.00237051658896],[-127.23777745551692,53.00219450370828],[-127.23786767104153,53.002023214314285],[-127.23790073130532,53.0018446801876],[-127.23804925401352,53.00168846786284],[-127.23832644283246,53.0016233551698],[-127.23861342035372,53.001574393235444],[-127.23890856273603,53.00154887895188],[-127.23920564316897,53.00155808444567],[-127.2394906223563,53.0015046586659],[-127.23969778989999,53.00137528864515],[-127.23982559674592,53.00121312357055],[-127.2400384745885,53.00108761073515],[-127.24028856590958,53.000989722903306],[-127.24054055647878,53.00089350003503],[-127.24077535658579,53.00078344459745],[-127.24097586314483,53.00065021544947],[-127.24121924721516,53.000546792788164],[-127.24149929740629,53.00048444851147],[-127.24179131270019,53.00044830892753],[-127.24203087966872,53.00034212754198],[-127.2420995065961,53.00016713507096],[-127.24220941798372,53.00000011712874],[-127.24226585820914,52.99988745489799],[-127.24236981767459,52.99974011578657],[-127.2425060074131,52.99960980290724],[-127.24269513317716,52.999438587572484],[-127.24293107295907,52.99927248177385],[-127.24321729622254,52.9991024832303],[-127.24349755076165,52.99895159840764],[-127.24365076874363,52.99886144885048],[-127.24384464400312,52.99875685721124],[-127.24397845507488,52.99867308015074],[-127.24412000842082,52.99859874250275],[-127.24418183366564,52.99844735451509],[-127.24417658580069,52.998268101522555],[-127.24418813212354,52.9980886712821],[-127.24420620057256,52.99790861633458],[-127.24423267467382,52.997729028510605],[-127.24426757085331,52.99755047245176],[-127.24431184439139,52.99737293806739],[-127.2443616677587,52.997194224388686],[-127.24441989503012,52.99701542195988],[-127.24449410463329,52.996840368661935],[-127.24459276947812,52.99667234601772],[-127.2447234320513,52.996512950867505],[-127.24487755822713,52.9963583553264],[-127.24505237238247,52.996209135505865],[-127.24524235904329,52.99606816471715],[-127.24544380261159,52.99593603799814],[-127.24566624625079,52.99581994335717],[-127.24591624584612,52.99572092310878],[-127.24617864293191,52.99563073670186],[-127.24644017912944,52.995542800155995],[-127.24671342053188,52.99547267010943],[-127.2469129413763,52.99533887558579],[-127.24705671810302,52.995181580240484],[-127.24716565533771,52.995014011289015],[-127.24734524467,52.99486922001086],[-127.24751923379495,52.99472393183875],[-127.2476131916975,52.99455483540631],[-127.24768925135437,52.99438032490062],[-127.24780477116545,52.994214362100976],[-127.24790055974853,52.99404412530568],[-127.24798320465199,52.99387123033069],[-127.24801717277917,52.99369323823523],[-127.24802308789073,52.993513310704465],[-127.2480243307123,52.99333342365305],[-127.24801718516088,52.99315363435411],[-127.24793215608378,52.99295897103473],[-127.24798211645462,52.992849180121794],[-127.24799921162442,52.992795762259185],[-127.24814403275113,52.99264293688845],[-127.24841812723832,52.99257055214586],[-127.24870600527778,52.99252267576182],[-127.24899487252944,52.992476473692165],[-127.24928078472996,52.99242525466877],[-127.24957079006965,52.99238631906621],[-127.24986695221709,52.99236636907453],[-127.25016420426529,52.992352010192015],[-127.25046051408357,52.99233709572855],[-127.25085771818111,52.9924208597277],[-127.25115076043178,52.99239028863943],[-127.2514268788565,52.99232347875489],[-127.2517129026136,52.99224423551487],[-127.25184723854488,52.99221142986535],[-127.2519949961402,52.9922221881728],[-127.25223673571378,52.992192168188716],[-127.25254623584303,52.9920863329533],[-127.25280037486282,52.99200238721759],[-127.2530508297101,52.99188821264491],[-127.25330988597987,52.9918126141571],[-127.25358304091243,52.99174022720995],[-127.25385040116349,52.991661741971214],[-127.25412357060196,52.991589909450326],[-127.25440123275632,52.99154436904882],[-127.25470305008133,52.991526588002316],[-127.25500688186479,52.991513832298146],[-127.2552944308693,52.9914552921537],[-127.25544649447278,52.99145367273081],[-127.25559268247683,52.99147452939827],[-127.25589012496853,52.991466878066795],[-127.25615744436969,52.99138670244414],[-127.2564374621072,52.99132600733139],[-127.25671452382564,52.99126029548948],[-127.2569158922532,52.991127584146085],[-127.25709452326807,52.99098335219887],[-127.25730351792724,52.99085617121068],[-127.25752294553483,52.990734472995065],[-127.25777003023715,52.990633216423944],[-127.25797235119649,52.99050162264767],[-127.25817235247082,52.990322975458064],[-127.25820627854766,52.99017636820945],[-127.25836152665617,52.98993600468784],[-127.25844694493306,52.98976418353174],[-127.25853891642718,52.98959285714661],[-127.25861216454695,52.989419489213184],[-127.25862455463714,52.98923892624461],[-127.2587024915429,52.98906662882949],[-127.2588217018517,52.988901179515814],[-127.25888462947235,52.98872623602062],[-127.25892695072967,52.98854815945901],[-127.25896739085988,52.988370093986134],[-127.25898349382655,52.988188935328786],[-127.259031644647,52.98801919707571],[-127.25921269616639,52.98786260800662],[-127.2593790061515,52.98771290027135],[-127.25953684434528,52.98756047660054],[-127.25965885449708,52.98739555215433],[-127.25975652277994,52.987196146359494],[-127.25978099874902,52.987046277233915],[-127.25977562011727,52.986864783054024],[-127.25970968637895,52.98668617744346],[-127.25977307188032,52.98652691792929],[-127.25999040560457,52.986398521699535],[-127.26022788254724,52.98628895243417],[-127.2604539495638,52.986172224687714],[-127.26063157433039,52.98602687667457],[-127.2608358445938,52.985898618515016],[-127.26107523201848,52.98579071253784],[-127.2613146014746,52.9856822414187],[-127.2615586261598,52.98557372893102],[-127.26173929954561,52.98543674719683],[-127.26184055914123,52.98526476225645],[-127.26188382281819,52.985087785731814],[-127.26189184277737,52.98491791962995],[-127.26193455728836,52.98472246199833],[-127.26192451368642,52.9845410175177],[-127.26192030074817,52.98436791129305],[-127.26192990301503,52.98418849780772],[-127.26192179145997,52.98400927396742],[-127.26190245626452,52.98382961441737],[-127.26188033036694,52.98364997576077],[-127.26186566638681,52.98347026615521],[-127.26185554010841,52.98328601621077],[-127.2618820169574,52.98304646937336],[-127.26207871275535,52.98300962170457],[-127.26236160698741,52.98295391936655],[-127.2626464140154,52.982899316539786],[-127.2629244344254,52.982836376060696],[-127.26304303683588,52.98268325563776],[-127.2630096649854,52.98250206099078],[-127.2629772018415,52.98232029175013],[-127.26291054631045,52.9821176046857],[-127.26277255055668,52.98199468640077],[-127.262570736296,52.981859003350245],[-127.26238643651347,52.98171640818739],[-127.26223996781523,52.981559394401366],[-127.26201894213494,52.98134210553567],[-127.26197114940094,52.98124063419393],[-127.26173199207217,52.98113505245496],[-127.26147552389357,52.981043659724804],[-127.26121724128056,52.980953962419264],[-127.26095983521361,52.98086257861784],[-127.2606970487551,52.98077797598077],[-127.2604216734341,52.98070976194773],[-127.26013099965628,52.98066019782492],[-127.25984214186771,52.98060892805417],[-127.25957594417282,52.98053501048412],[-127.25933869671691,52.98043108009481],[-127.25911686428573,52.980311850690256],[-127.2589031689468,52.98018357736527],[-127.25869314052726,52.9800535789682],[-127.25848134587324,52.97992639631336],[-127.25828148664168,52.97979292651135],[-127.25807700806115,52.979661191211115],[-127.25791493125233,52.979511627721415],[-127.25778693967683,52.97934768705631],[-127.2576377738707,52.97919350260169],[-127.25744344998834,52.97905773092331],[-127.2572233793905,52.978934561244294],[-127.25697779395426,52.978831835807945],[-127.25674259158322,52.97873292604752],[-127.2566081949032,52.97866767347904],[-127.25650930306469,52.97860429254373],[-127.25647772808053,52.97841971469486],[-127.25644536218863,52.97824018389402],[-127.25642420254408,52.97806054255265],[-127.25639373538023,52.9778821121544],[-127.25634370890151,52.97770445509379],[-127.25629181773279,52.97752681787717],[-127.25623434837955,52.97734980492044],[-127.25616760355766,52.97717456735898],[-127.25608509613248,52.97700229502308],[-127.25597849417832,52.97683589187489],[-127.25584594576213,52.97667480379436],[-127.255704107607,52.97651549111453],[-127.25556690779979,52.976355017108055],[-127.25544083290578,52.97619217405519],[-127.25533606572031,52.9760240652197],[-127.25527117531105,52.97584825145205],[-127.25524538459786,52.97566977077094],[-127.25524284990418,52.97548936577046],[-127.25521889173118,52.97530975379682],[-127.25518841344405,52.97513020228994],[-127.25514029330347,52.97495364490254],[-127.25501239253991,52.97479195042681],[-127.25488846981962,52.97460723468624],[-127.25473188617389,52.97445312540367],[-127.25459106565526,52.974296041851474],[-127.2545466458037,52.974118324074375],[-127.2545310761653,52.97393862253846],[-127.25451738625719,52.97375889200332],[-127.25449623846058,52.973579805682796],[-127.25448160915597,52.9734000940749],[-127.25436665421411,52.97323433406963],[-127.25421294990325,52.973082990651335],[-127.25401861544971,52.97294553679159],[-127.25383901965134,52.97280175745691],[-127.25365117261158,52.97266254843024],[-127.25343855598557,52.972537606841904],[-127.25320758917415,52.97242295529156],[-127.25296663976233,52.972317930894455],[-127.2527211191865,52.97221575187208],[-127.25250967867409,52.97209864996861],[-127.25226657102905,52.97198356082495],[-127.25204475314081,52.97186264146702],[-127.25183671589197,52.97173428626645],[-127.2516608459287,52.971589908188186],[-127.2514996978167,52.97143864032417],[-127.25134313981316,52.97128509105901],[-127.25118199398612,52.97113382273287],[-127.25101340662232,52.97098319803003],[-127.25089857059511,52.97082079544415],[-127.25085878998478,52.97064135028947],[-127.25079021303868,52.97046612877514],[-127.2507160752275,52.97029208693821],[-127.25063822479352,52.970118640318475],[-127.25055664570166,52.969945242178575],[-127.2504713870162,52.96977355958972],[-127.25036385067976,52.96960547545295],[-127.25025446677391,52.96943796668265],[-127.2501952345994,52.96926321040797],[-127.25019739101873,52.969082755056455],[-127.2502191525891,52.96890321234147],[-127.25018408026189,52.9687253934037],[-127.24999626318841,52.9685861782095],[-127.24983973744297,52.96843318237679],[-127.24975484683318,52.96827382296079],[-127.2497621874953,52.968079299312215],[-127.24976530208812,52.9678993985268],[-127.2497372466327,52.96770637101631],[-127.24970773840404,52.967527372117075],[-127.24965682883114,52.96735028573909],[-127.24960118307145,52.9671704433288],[-127.24953537182907,52.96699350596404],[-127.2494455199465,52.966824112551464],[-127.24928919871634,52.96667728207859],[-127.24904713635085,52.96656441665386],[-127.24879530581137,52.96646846478324],[-127.24853169271147,52.9663838442531],[-127.24825462958162,52.96631729685234],[-127.24799643140055,52.966226449430806],[-127.2477912565249,52.966099186417054],[-127.24763469843337,52.96594450241665],[-127.2474873153416,52.965784126514386],[-127.24731523022236,52.96564025763834],[-127.24705908354933,52.96555555480265],[-127.24678364788973,52.96548114186237],[-127.24657744034617,52.96534996074994],[-127.24633667869318,52.96524940376022],[-127.24605149093985,52.96519190280421],[-127.24576123529222,52.96515238595677],[-127.24546835482649,52.96511849964965],[-127.24517899224712,52.96507785123545],[-127.24489217218964,52.96502820964837],[-127.24460975938987,52.96496955520686],[-127.24433632747945,52.96489959823378],[-127.24406553691053,52.96482400923987],[-127.24379925232985,52.96474276855604],[-127.24353747514847,52.96465643206522],[-127.24328664081446,52.96456157874433],[-127.24305302213499,52.964449732741265],[-127.24282121866197,52.96433562573032],[-127.24235303071013,52.96417470065454],[-127.24209487462932,52.96408440484158],[-127.24184401417415,52.963988428061775],[-127.24159944296468,52.963883983701734],[-127.24137223489817,52.96376758404008],[-127.24119465049077,52.963626005704405],[-127.24106858675097,52.96346034962478],[-127.24093033196965,52.9632925804285],[-127.24086764622344,52.9631256916285],[-127.24099066374059,52.96296301490474],[-127.24112386205796,52.96279798936118],[-127.24123180004307,52.962630432541964],[-127.24133879592931,52.962462320692566],[-127.24144956878234,52.962295845483304],[-127.24156877116909,52.96213041096372],[-127.24170958589704,52.96197090785181],[-127.24190810758431,52.9618399343893],[-127.2421454450507,52.96172872388804],[-127.24238573248448,52.96162252044848],[-127.24262123580677,52.961512448994554],[-127.242842436542,52.96139188577281],[-127.24303237325023,52.96125427667328],[-127.2432090287531,52.96110896250147],[-127.2433743657256,52.960959284705034],[-127.24351800658816,52.9608008700769],[-127.243654108459,52.96064029343963],[-127.24382236058271,52.960494502134246],[-127.24405491887615,52.96037997592108],[-127.24431335694905,52.96028927543854],[-127.24458236660516,52.96020910486914],[-127.24482753881965,52.9601112543403],[-127.24502021965534,52.95997249209716],[-127.24517516825962,52.95981843854599],[-127.24529715452171,52.95965352621989],[-127.24536662707905,52.95947851780655],[-127.24539766009154,52.95929663567105],[-127.24548600459956,52.95912928149339],[-127.24565043398188,52.95898073045851],[-127.24583926345113,52.95883808048036],[-127.24600832745756,52.958688924004306],[-127.24613223717067,52.95852623169422],[-127.24624761633281,52.95835858183271],[-127.24635451600396,52.958188224279326],[-127.24644922403374,52.95801575421037],[-127.2465299240506,52.95784231158454],[-127.24659295339924,52.95767017660748],[-127.24658291758583,52.95748705197435],[-127.24646051385471,52.95731912087281],[-127.24621557150002,52.95723317704692],[-127.24592010972448,52.957172978524035],[-127.2456567076995,52.957093397180614],[-127.24554641866415,52.95692533701401],[-127.24552348397916,52.95674682252125],[-127.24551818653303,52.95656588904946],[-127.24547197517535,52.95638874136508],[-127.24541180846745,52.95621287088569],[-127.24535164064044,52.95603643553819],[-127.2453137134405,52.955855838035205],[-127.24527119948347,52.95567753937812],[-127.24514720432056,52.95551858931536],[-127.24496861880729,52.95537366465818],[-127.24478355162017,52.95523048481246],[-127.24512992664168,52.955183115894016],[-127.24541763753487,52.95513805184572],[-127.24568682564478,52.95506515636264],[-127.24593557921466,52.954963347011926],[-127.24617487946313,52.95485714534827],[-127.24641028642971,52.95474538981088],[-127.24664765449728,52.95463696618056],[-127.24689460483383,52.95453741522965],[-127.24715595401439,52.95445227150285],[-127.24742690061512,52.95437600015606],[-127.2476978476292,52.954300284039014],[-127.24796112217696,52.95421680362845],[-127.24820809960974,52.95411836129527],[-127.24844164937473,52.954007177102916],[-127.24867227938964,52.953892105386515],[-127.2489077236595,52.9537820208509],[-127.24915080376792,52.953678014250265],[-127.2493957799144,52.953575116689066],[-127.24964555384456,52.9534766415617],[-127.24990110161761,52.95338483782977],[-127.25016535659034,52.95330358335332],[-127.25044115704759,52.95323453348822],[-127.25072081644136,52.953169924821296],[-127.25099663147088,52.95310142934842],[-127.25126089919844,52.9530207370614],[-127.25152115758843,52.952930556256355],[-127.25178316339628,52.952836429318026],[-127.25203753074253,52.95273622356268],[-127.2522767375437,52.95262777760274],[-127.2524913644987,52.95250782060787],[-127.2526606932777,52.95236929294984],[-127.2527628666925,52.952197858091296],[-127.25284234291841,52.95201601334262],[-127.2529502386815,52.95184900023571],[-127.25314798500344,52.951725859388944],[-127.25342233585219,52.951640007071965],[-127.25365303687727,52.9515277216982],[-127.25383807877914,52.951385106902755],[-127.25401650371737,52.95123919115087],[-127.25422160084331,52.95111260798165],[-127.25449345441491,52.95103686607771],[-127.25477211926457,52.950970581495035],[-127.2550508341678,52.950906528166655],[-127.25530165273932,52.950813077134974],[-127.25552939232377,52.95069578077266],[-127.25578583345417,52.95060338944113],[-127.25605952824284,52.95052705936116],[-127.25629320318534,52.95042146115943],[-127.25649160792116,52.95028934168923],[-127.25667472124736,52.95014505719578],[-127.25684935394536,52.9499975007643],[-127.2570155227454,52.94984723709308],[-127.25716456917057,52.94968593985144],[-127.25731560926523,52.94952854808847],[-127.25749045257038,52.94938827747567],[-127.25772626294822,52.94929217503714],[-127.25802601165533,52.94924638605276],[-127.25832044810048,52.949209618776834],[-127.25861216377086,52.94917568610734],[-127.25890585872735,52.94914564956831],[-127.2591996028716,52.949117288354934],[-127.25949427136419,52.94908892548369],[-127.25978794838046,52.94905832208171],[-127.26008068404398,52.949027172140696],[-127.26037340436811,52.94899602163114],[-127.2606670636461,52.948964860336794],[-127.26095978155446,52.94893315251035],[-127.26125348965219,52.94890366581088],[-127.26154912789498,52.948876408092936],[-127.26184181288092,52.94884413357108],[-127.26212949617614,52.94880013992687],[-127.26241222781877,52.94874612117939],[-127.26269291348414,52.9486865111369],[-127.26297257439855,52.948623558222984],[-127.26325129325872,52.94856004989872],[-127.26353098552002,52.948498207050484],[-127.26381265740247,52.94844026927126],[-127.26409918034055,52.94838900303229],[-127.26438670854121,52.94833996672675],[-127.26467324502289,52.94828869892794],[-127.2649539745981,52.9482307685002],[-127.26522691338025,52.94816115805543],[-127.26549303710017,52.94808208962688],[-127.26575526557004,52.94799745886622],[-127.2660145396919,52.94790781155774],[-127.26627000027064,52.94781485148361],[-127.26652349752162,52.94771910567783],[-127.26677417204344,52.94762226895697],[-127.26702293146083,52.9475237667311],[-127.26727069882119,52.947423042167514],[-127.26751557831612,52.94731954187085],[-127.26775473177581,52.94721161981983],[-127.26798627857352,52.94709873145702],[-127.26820738246323,52.94697979561978],[-127.26841233348449,52.94685039099736],[-127.26860210575684,52.94671217480678],[-127.26878522778115,52.9465695560322],[-127.26897115330385,52.94642746261145],[-127.2691665967497,52.946291990600194],[-127.26937340500146,52.946162555200104],[-127.26959159515853,52.94603972997665],[-127.26982699187653,52.945931279162],[-127.27008238391161,52.94583719050781],[-127.27031675351932,52.94572538759358],[-127.27053676896207,52.945601420120646],[-127.27081114122795,52.94554970343523],[-127.27111574825055,52.945543053378834],[-127.27141309954084,52.94554264932497],[-127.27171067003083,52.9455500782317],[-127.2720082892933,52.94555863554712],[-127.2723050695996,52.94557055437352],[-127.27260269083457,52.9455796660457],[-127.27289997533728,52.94557701751998],[-127.27319887366765,52.94556649678006],[-127.27349447862434,52.9455700243962],[-127.27378340219668,52.94559996498061],[-127.27409106357976,52.94560167511243],[-127.27437212833816,52.94561768579454],[-127.27467047163675,52.94561950422747],[-127.27498483209337,52.94565812331628],[-127.27525673201951,52.94567983473863],[-127.27554417820967,52.94572211496104],[-127.27579233830909,52.94582253283465],[-127.27590561843385,52.94555905651824],[-127.27588907798598,52.94538047612169],[-127.27578799965663,52.94521122159837],[-127.27568042540085,52.94504315807933],[-127.27554474598357,52.94487036015307],[-127.27550884985494,52.94469927850462],[-127.27546437354437,52.94452156544018],[-127.27547669571666,52.9443415515187],[-127.27546668974087,52.944163465013865],[-127.2753971297867,52.94398826503677],[-127.27533405204883,52.943811874071486],[-127.27531670889134,52.94373081399532],[-127.27540770698072,52.943594776724936],[-127.27560677743872,52.94336399266708],[-127.27570727548223,52.94320264040071],[-127.27575132975471,52.9430245328868],[-127.27579632263352,52.94284640619686],[-127.27581519181904,52.94266745078382],[-127.27581633059117,52.94248755778342],[-127.27583704615982,52.94230801747284],[-127.27583660819411,52.94216905243182],[-127.27599836491659,52.941968375425965],[-127.27611272643718,52.94180351020302],[-127.27622987490649,52.94163861463331],[-127.27635833596182,52.94147751433763],[-127.27655749379511,52.94134310960912],[-127.27675859804364,52.94121148970716],[-127.27694266032987,52.94107107950621],[-127.27715225792026,52.94094328482087],[-127.27736091328165,52.94081494408173],[-127.27756864282776,52.94068660402962],[-127.27777920947713,52.94055991836764],[-127.27799449338907,52.940435422551985],[-127.27821170502612,52.94031259096275],[-127.2784326944673,52.94019195041452],[-127.27865561164674,52.940072974064925],[-127.27888042675924,52.93995566222735],[-127.27910904950903,52.93984054105787],[-127.27934050938329,52.93972707416635],[-127.2795710288519,52.939613617019326],[-127.27980345912107,52.93950125935544],[-127.28003682940574,52.93938945583782],[-127.28026440571206,52.93927098151364],[-127.28049095745176,52.93914972053502],[-127.28073500152222,52.93905180408785],[-127.28101004135596,52.93899334017677],[-127.28130354903898,52.93895988651509],[-127.28160387227226,52.93893587962716],[-127.28189942823492,52.93890857065942],[-127.28219500056028,52.93888181664808],[-127.28249079183043,52.93886233975627],[-127.28278695456498,52.938855195048816],[-127.28308370816872,52.93886765142107],[-127.2833806646573,52.93888682920662],[-127.28367731727626,52.93889592300181],[-127.28398320239663,52.93890210905469],[-127.28429076519318,52.93890211648702],[-127.28457693455933,52.938872661715095],[-127.28483373168434,52.93879644721596],[-127.2850688467946,52.938681252260835],[-127.28527716241057,52.9385428051146],[-127.28544981879415,52.938396345947645],[-127.28560456143259,52.93824335774633],[-127.28574699545196,52.938083779365115],[-127.28587341126816,52.93791821621351],[-127.28598295626675,52.93775003088074],[-127.28607285797237,52.93757925370238],[-127.28614776776219,52.937405842874654],[-127.28621047118632,52.93722920314527],[-127.2862609705412,52.93704989935733],[-127.28629839215294,52.93686960872072],[-127.28632278738283,52.936690025233354],[-127.28633135399883,52.936511179524736],[-127.28632130229059,52.93633252826908],[-127.28628511623822,52.93615305078876],[-127.28622658584896,52.93597380845297],[-127.2861486028439,52.93579870564703],[-127.28605308134232,52.93562939803929],[-127.28592063219511,52.93547114516659],[-127.2857566967704,52.9353199514697],[-127.28558535857441,52.93516996808533],[-127.28543250338221,52.935015290733176],[-127.28530178634735,52.93485253530964],[-127.28519322781727,52.93468336931094],[-127.2851255571382,52.93450982978961],[-127.28512328740963,52.93434230960368],[-127.28514067313223,52.9341773721654],[-127.28515984610966,52.93397879322218],[-127.28516749265886,52.9337999484284],[-127.28523178951681,52.933614890408585],[-127.28530285725778,52.93346841919548],[-127.2854406449216,52.93331001202319],[-127.28558875401448,52.93315373340536],[-127.28574434843497,52.93299849354753],[-127.28590462380178,52.9328437582053],[-127.28606676328876,52.93268956710075],[-127.28622703659138,52.93253484025331],[-127.28638167034687,52.93237904509148],[-127.28653072881983,52.932223319601114],[-127.28668445330257,52.93206809877555],[-127.28684379982035,52.93191393699424],[-127.28700596623911,52.93176086487258],[-127.28716812932122,52.93160722768654],[-127.28732748943949,52.93145362987067],[-127.28748120823775,52.93129840793148],[-127.28762650079739,52.93114215720639],[-127.28775960502021,52.93098323330034],[-127.28787865824198,52.930821665601314],[-127.28797988571728,52.93065637472192],[-127.28805016124198,52.93048468906184],[-127.28809327737191,52.93030826172735],[-127.2881167033114,52.93012756689497],[-127.288127005283,52.929944774190545],[-127.2881335792535,52.929761466377606],[-127.28814297383578,52.9295792394447],[-127.28815990516927,52.92939973633002],[-127.28817124743014,52.92922029436063],[-127.28817790790548,52.92904034772379],[-127.28818085703519,52.9288604327192],[-127.28818474725207,52.92868107224617],[-127.28819048356516,52.9285011356621],[-127.2881943566213,52.92832121048469],[-127.28819729099952,52.92814130452643],[-127.28820023998504,52.92796138942229],[-127.28820411322206,52.92778147314787],[-127.28821265305523,52.92760206166242],[-127.28822585751281,52.9274225991002],[-127.28824465052925,52.92724307534608],[-127.28826438227982,52.92706354129224],[-127.28828314107065,52.92688289712532],[-127.2883028405009,52.926702798523486],[-127.28832440070876,52.92652212364157],[-127.2883487646467,52.92634198289453],[-127.28837967451189,52.92616288223534],[-127.2884152657449,52.925984295149576],[-127.28845929785076,52.92580730121366],[-127.28851267951379,52.92563188150313],[-127.28858012391892,52.925459105139986],[-127.28868126809365,52.925291572377745],[-127.28880583928388,52.92512825695161],[-127.288943485163,52.92496648376532],[-127.28908116199608,52.9248052749044],[-127.28920944087905,52.92464191835841],[-127.28932836907723,52.92447698745962],[-127.28945197973948,52.92431312585059],[-127.2895944206129,52.92415578219112],[-127.28975943415585,52.9240054802521],[-127.28991880725697,52.92385355428397],[-127.29005646162531,52.923692335372465],[-127.29018456171482,52.92352281994141],[-127.29025018434257,52.92335174785351],[-127.29021978461031,52.9231789311032],[-127.29012598308665,52.923004003059916],[-127.29000255086564,52.92283555933084],[-127.2898580797895,52.92267968318523],[-127.28968313735359,52.92253254187702],[-127.28951558089706,52.922383633780925],[-127.2893710281772,52.92222495158793],[-127.28924124213526,52.92206162447329],[-127.28915040324293,52.92189226685598],[-127.28910779039117,52.921715656433946],[-127.28909580031451,52.92153479242118],[-127.28909867939812,52.921353200653286],[-127.28909776317049,52.92116884410129],[-127.28908157508828,52.92097289150859],[-127.28907476610644,52.920778521747685],[-127.28910100300753,52.920598915509785],[-127.28918678586214,52.920447796228544],[-127.28936712016473,52.92034214726433],[-127.28964387277948,52.92028307743965],[-127.28996595248482,52.920243683465245],[-127.29028037976929,52.92019821290297],[-127.29055971062847,52.920131823309966],[-127.29083900692191,52.920064321643316],[-127.29111633756514,52.91999346967086],[-127.29138698611455,52.919917095608774],[-127.29164430866844,52.91983189226388],[-127.29187960658523,52.919726765709136],[-127.29205764963226,52.919576872706656],[-127.29217656951742,52.919412494120586],[-127.29225330216829,52.91923962169176],[-127.29230842048618,52.91906081798411],[-127.29235890635225,52.91888262099209],[-127.29241222729645,52.91870552252699],[-127.2924636532503,52.918527879972075],[-127.29251229247659,52.91835026798026],[-127.292556265378,52.91817214234648],[-127.29259184955853,52.91799411778822],[-127.29261991524407,52.917813925331444],[-127.29262354767455,52.91762672088909],[-127.29252545900432,52.917464169487005],[-127.29234976012133,52.91732264384327],[-127.29214262191586,52.91718875251857],[-127.29192714742449,52.917056628997],[-127.29172462426682,52.9169210006701],[-127.291558157347,52.91677656615523],[-127.2914526081533,52.916613539839815],[-127.29140891646408,52.91643245848616],[-127.29140607710202,52.916246445755355],[-127.29142674815863,52.91606802019267],[-127.29147257073672,52.915889874436004],[-127.29153986890579,52.91571317851453],[-127.29162308925964,52.91553911409776],[-127.29172042205067,52.91536993354675],[-127.29183931659126,52.91520555503887],[-127.29197320906589,52.91504381805286],[-127.29211463700257,52.914885360378044],[-127.29226738882869,52.914731261127216],[-127.29244648650041,52.91458640309602],[-127.29258138332055,52.914427451664196],[-127.29269276977566,52.91426092208482],[-127.29279568233407,52.9140916791284],[-127.2928986109464,52.91392299177006],[-127.29299115285623,52.91374994441115],[-127.29307808775006,52.913575828860374],[-127.29317725568163,52.91340607072649],[-127.29330280063279,52.91324610031912],[-127.29347354980632,52.9131024530023],[-127.2936847883717,52.91297348584997],[-127.29391023832912,52.91285220725184],[-127.29413486546741,52.91273429949803],[-127.29437280151414,52.912625766766375],[-127.29460979578214,52.912516688003855],[-127.29483156744695,52.91239713363299],[-127.29504954498759,52.912275370118415],[-127.29526747030319,52.91215193010958],[-127.29548163583108,52.912027410322516],[-127.29569482545259,52.91190122422692],[-127.29590331647158,52.911773959758335],[-127.2961098761164,52.9116444836377],[-127.29630307499869,52.9115045027237],[-127.29644643958557,52.91134938010508],[-127.2964969161884,52.91117174516002],[-127.29651190871243,52.910991138957606],[-127.29652131460725,52.91081059429766],[-127.29652419312212,52.910629556690864],[-127.29652801243037,52.91044907355453],[-127.29653463466387,52.91026912436708],[-127.29655153987277,52.91009017362004],[-127.29658153113631,52.90991276424036],[-127.29666574549944,52.90974204658482],[-127.29681362910478,52.909582390451924],[-127.29697953306037,52.90943317810956],[-127.29716231662945,52.90928827136973],[-127.29734982962346,52.909145544704636],[-127.29752984194549,52.90900122379471],[-127.29768925080688,52.90885321170098],[-127.29777646376056,52.90868917554481],[-127.29775123741986,52.90850340873725],[-127.29774111055724,52.908323643968785],[-127.29772538246003,52.908143932002666],[-127.29771804140734,52.90796413646355],[-127.29772747565924,52.90778471174682],[-127.29774157234638,52.90760523557521],[-127.29775005075659,52.90742525649904],[-127.29773155459037,52.90724613983348],[-127.29771025609114,52.90706649816621],[-127.29771875173145,52.90688708370287],[-127.29773471014569,52.90670758689193],[-127.29775251550915,52.90652806968215],[-127.29776474970323,52.90634861390923],[-127.29776297747998,52.90616819187842],[-127.29775469791018,52.9059883975114],[-127.29776320804385,52.90580898276081],[-127.29780530361684,52.905632003833986],[-127.29787071431174,52.905455879422504],[-127.29793800359793,52.9052802990826],[-127.2980005939062,52.90510309387805],[-127.29810510381532,52.904957363097374],[-127.29831524479752,52.9048244713646],[-127.29856316798576,52.904739363645795],[-127.29879020031377,52.90467185329384],[-127.29905522156474,52.904628579618986],[-127.29932061894088,52.90456736907676],[-127.299614232788,52.9044845518059],[-127.29987188808809,52.90441333871809],[-127.29997569062665,52.904305719684935],[-127.29955932756813,52.90421112882349],[-127.29927082073716,52.90409495969122],[-127.29901265085215,52.9040266384361],[-127.29872319007164,52.90400125983305],[-127.29842848529266,52.903987137009324],[-127.29813033041037,52.90398202654475],[-127.29783045000879,52.90398140842423],[-127.29753063814827,52.90398303926269],[-127.29723173255425,52.90398409448119],[-127.29693369709935,52.9039828978333],[-127.29663678749053,52.90398784769758],[-127.29633991420171,52.903994482029056],[-127.29604208324241,52.90400000540559],[-127.29574432037133,52.90400776878956],[-127.29544720627416,52.90400600233034],[-127.29515318756623,52.90398401846592],[-127.29486067154414,52.90394969797907],[-127.29456738759852,52.903920980034],[-127.29426976548848,52.90390296075714],[-127.29397215852515,52.90388494056337],[-127.29368161006761,52.90385451367848],[-127.29339965492399,52.903799899829906],[-127.29312735478206,52.90372611736155],[-127.29286132685849,52.9036444290093],[-127.29260163675168,52.903556501779036],[-127.29234736329745,52.903462910694024],[-127.29209218434289,52.903369884907455],[-127.29183073759435,52.90328533755886],[-127.29156473175998,52.90320420196194],[-127.2912969479298,52.90312532679996],[-127.29102557948151,52.903051538261295],[-127.29075068980471,52.90298394741462],[-127.2904704721752,52.90292538042763],[-127.2901849222904,52.90287471655354],[-127.28989674254524,52.90282968460761],[-127.28960678625464,52.90278746884344],[-127.28931686472265,52.90274638170996],[-127.28901980135544,52.902715449961576],[-127.28872183423258,52.902685657089805],[-127.28843201564388,52.90264791996108],[-127.2881620169436,52.902588114832746],[-127.28788940931784,52.902380398002165],[-127.28793374227331,52.90227568236978],[-127.28800532506311,52.90208717654593],[-127.2879110147047,52.90198622048984],[-127.2878433171469,52.90181043826713],[-127.2877478312493,52.90164000810629],[-127.28762998598272,52.901468701874855],[-127.28746446609868,52.90132257398436],[-127.28723495209627,52.90121525190856],[-127.2869826000051,52.901122749102846],[-127.28671646475007,52.90103656518213],[-127.28644945776658,52.90095206685113],[-127.28618972964841,52.900861884549265],[-127.28593910836442,52.90076487758369],[-127.2856902990923,52.90066616466786],[-127.28544149124363,52.900567460182685],[-127.28519000055017,52.90047213779286],[-127.28493217353655,52.900383052731556],[-127.2846545953335,52.90031828356456],[-127.28438147887695,52.90024729638986],[-127.28413544247013,52.90014742919122],[-127.28389567962485,52.900039656681884],[-127.28383395125478,52.899999983277404],[-127.28327087680742,52.899637955345746],[-127.28283959872883,52.89932380953856],[-127.28241754825153,52.899099213039925],[-127.28167335427374,52.89878230579247],[-127.28098495512982,52.89846310957532],[-127.28052640531499,52.898324646192265],[-127.28011096446417,52.89822605905592],[-127.27974943241776,52.89815545868567],[-127.27936356948521,52.89792598355091],[-127.2788705143561,52.897568221007035],[-127.2781511247014,52.89720731255851],[-127.2775914876805,52.89677125049133],[-127.27650723079886,52.89597832097553],[-127.27566576846993,52.89570614137785],[-127.2750585296109,52.8955132318668],[-127.27443710806847,52.89534400882594],[-127.27383587635117,52.895351643292315],[-127.27326604517302,52.89522612965445],[-127.2724422133977,52.89513754030504],[-127.27250971775572,52.894810105129565],[-127.27254815094423,52.894632053932135],[-127.27259218282728,52.89445393314947],[-127.27263988916314,52.8942746607733],[-127.2727579255069,52.894111994466385],[-127.27293322761908,52.89396495466741],[-127.27311788803642,52.89382006375045],[-127.27327163988643,52.893668773661354],[-127.27334197892377,52.89349877777588],[-127.27334857910975,52.89331490214827],[-127.27337952634865,52.89313524589829],[-127.27342541659404,52.89295766932233],[-127.27345731998686,52.89277912340944],[-127.27346126888642,52.892599759427576],[-127.27345310965309,52.89241997064764],[-127.27343935122937,52.892240233514535],[-127.27342466995555,52.892060515320225],[-127.27341464936089,52.89188073767024],[-127.27341762675397,52.89170026335246],[-127.27346817607916,52.89152263613028],[-127.27358616814784,52.89135884831744],[-127.27372285638734,52.891197664233346],[-127.2738793124347,52.891043546272144],[-127.27405374384385,52.890899320156194],[-127.27424323201872,52.89076053439685],[-127.27444029818936,52.89062614921588],[-127.27464016423114,52.89049228922756],[-127.2748371943874,52.890356782962854],[-127.27502575440438,52.89021800590432],[-127.27519543423652,52.8900710320459],[-127.27534715314518,52.889914721772215],[-127.275496069596,52.88975787681035],[-127.27565917195443,52.889608732028194],[-127.27585059414247,52.8894727198857],[-127.27606094638826,52.8893471536914],[-127.27628261594678,52.88922651216908],[-127.27650807356868,52.88910806163996],[-127.27673163541169,52.88898851944496],[-127.27694568818413,52.88886234653304],[-127.27714542068261,52.88872456523277],[-127.27735091832929,52.88859232474853],[-127.27758042822339,52.88848504461123],[-127.2778454029633,52.888412113256145],[-127.2781315372333,52.88836137549974],[-127.27842533573856,52.888318390079355],[-127.27871430332935,52.8882692967432],[-127.27900120728636,52.88821350056082],[-127.27929188345432,52.88815934825477],[-127.2795729835392,52.888096324361726],[-127.27982844284331,52.8880162115304],[-127.28002373546926,52.887885762890846],[-127.28014702318937,52.88771349988677],[-127.28021533124323,52.88753960277824],[-127.28025268459747,52.88735763243785],[-127.28031631230462,52.88718265645164],[-127.28044558448549,52.88702378598984],[-127.2806049028593,52.88687354526879],[-127.28078016509328,52.88672705779139],[-127.2809601051482,52.88658163982902],[-127.28113345527778,52.88643405183883],[-127.28128802291305,52.88628050852272],[-127.28143315100833,52.8861231406943],[-127.28157168729095,52.88596303811352],[-127.2817017879808,52.88580079473355],[-127.28182062195471,52.88563586761562],[-127.28192451395114,52.88546886173029],[-127.2819983940631,52.88529489350658],[-127.28204326644584,52.885115646650526],[-127.28207232675395,52.88493656320564],[-127.28208366609407,52.88475656116768],[-127.28206984003883,52.884575703787654],[-127.28202912115461,52.88439794602575],[-127.28194660468098,52.884222885504194],[-127.28180598227216,52.8840658347631],[-127.28161647474906,52.88392387772811],[-127.28138418614431,52.88381377706853],[-127.28112921613356,52.8837229671625],[-127.28086331909624,52.88364068598095],[-127.28059559395795,52.88355898898271],[-127.28033424092101,52.88347272996123],[-127.2800864855867,52.88337455875867],[-127.279847781957,52.88326732237862],[-127.27961632361328,52.88315384693406],[-127.27939125250028,52.883035809504086],[-127.27917255222567,52.882912663368955],[-127.27896302553295,52.88278549884052],[-127.27876084095973,52.88265432692055],[-127.27856504569411,52.88251915800769],[-127.27837475058487,52.88238113153309],[-127.2781890343767,52.88224081343846],[-127.2780051449366,52.882098798527544],[-127.27782217946739,52.88195676432114],[-127.27764013849743,52.88181472874991],[-127.27746267434786,52.881669836767486],[-127.27729257090944,52.8815220581482],[-127.27712429623455,52.88137314761569],[-127.27695146176076,52.8812270838015],[-127.27676944345743,52.881085602536835],[-127.27657004064962,52.88095383179448],[-127.27634866112784,52.88083407184395],[-127.27611722329225,52.88072002449438],[-127.2758875991239,52.880604836244565],[-127.27566558534278,52.880339382215624],[-127.27552674223243,52.88017837749976],[-127.27536318871405,52.880031089889926],[-127.27515932018292,52.87990553391665],[-127.27492431988286,52.879796570817675],[-127.27467193688565,52.87969787366684],[-127.27441499635384,52.87960259665371],[-127.27416088885741,52.87950840018165],[-127.27389870108703,52.87942382172862],[-127.27363557651229,52.87933925284699],[-127.27338784402957,52.879240511555956],[-127.27314825916514,52.879133827177405],[-127.27289060325931,52.87904527922256],[-127.27262300577104,52.878966360367606],[-127.27238798538832,52.87885682761221],[-127.27216563867687,52.87873482880784],[-127.27194059494663,52.87861622106927],[-127.27169570235101,52.878518557330324],[-127.27141463196412,52.87845603710704],[-127.27112048459809,52.87842335345787],[-127.27082234452398,52.87841256271001],[-127.27052301209014,52.87842420839604],[-127.27024055515392,52.87847097064328],[-127.26997220979838,52.87855456505461],[-127.26969276875396,52.87860913875076],[-127.26939338444292,52.87861909646885],[-127.26909782532093,52.87860099297258],[-127.26880553950319,52.87856828344682],[-127.26851489636454,52.878527710110355],[-127.26827475066936,52.878464175958854],[-127.26796565738711,52.87839802270341],[-127.2676953744705,52.878322484006176],[-127.2674233317064,52.87825032596581],[-127.26714765149468,52.878181003942586],[-127.26687577707673,52.87811444666388],[-127.2665687195018,52.878116634553585],[-127.26627954045352,52.878156735098464],[-127.26600225757039,52.87822136365767],[-127.26572601337298,52.878289907530295],[-127.26560575313019,52.87806368688331],[-127.2655048917674,52.87789497221906],[-127.26536435081613,52.87773790119732],[-127.26517864764901,52.877595877053984],[-127.2649292971979,52.87744109727308],[-127.26481597334161,52.877322950564206],[-127.26472236210124,52.877147997465656],[-127.26461129859231,52.87698052149177],[-127.26436778556763,52.87689684188984],[-127.26411376638292,52.876804308639116],[-127.26387601267004,52.87669534437732],[-127.26362463000206,52.87659774277135],[-127.26340429694426,52.876479624174905],[-127.26322046673214,52.87633758579206],[-127.26300732996006,52.87621098786352],[-127.2627768426196,52.876095783601],[-127.2626071753636,52.87602307066209],[-127.26251753162992,52.87601282581919],[-127.26221723486329,52.875991393806316],[-127.26192245404127,52.875967660283216],[-127.2615412045078,52.875915158208635],[-127.26149920696352,52.875785600052666],[-127.26140113432537,52.87561629603182],[-127.26133439493388,52.87543656881515],[-127.26124561020131,52.875266600114955],[-127.26105654019477,52.87513525739201],[-127.26081411173402,52.875025225357795],[-127.26058541437723,52.87490719124723],[-127.26041547939568,52.87476219309898],[-127.26027582231933,52.874602300120976],[-127.26012325972567,52.87444702838864],[-127.25995051158971,52.87430093895374],[-127.2597703903347,52.87415773468381],[-127.25958845744053,52.87401566135179],[-127.25945068470263,52.87385686795279],[-127.25933225774465,52.873691142523946],[-127.2592443895159,52.8735200506307],[-127.25924652620783,52.87327737717556],[-127.25927004487805,52.87309724655274],[-127.25924434936618,52.87292044058387],[-127.25906242350541,52.87277836632723],[-127.25883925869765,52.87265803700285],[-127.25858417366655,52.872559899534856],[-127.25837773926646,52.87243882533425],[-127.25828143133896,52.87226557250775],[-127.25821011629051,52.872087577953835],[-127.25802940142498,52.871955020145364],[-127.25777881582084,52.87185122895494],[-127.2575365133887,52.87174454221395],[-127.25739707528946,52.8715913679988],[-127.25731466987158,52.87141628895604],[-127.25723694037072,52.87124172469503],[-127.25713336319144,52.87107415247212],[-127.25698452740173,52.87091771595114],[-127.25680258635026,52.87077508245178],[-127.25661789633878,52.87063359882945],[-127.25648200452255,52.870474225838215],[-127.25640146543864,52.870299126143905],[-127.25639809177652,52.87012151590594],[-127.25643467481162,52.8699418018506],[-127.25646938226178,52.869762107810864],[-127.25646691323475,52.8695833760386],[-127.25643095892345,52.8694055581117],[-127.25637919920743,52.86922790911227],[-127.25631909211059,52.86905090520342],[-127.25626178524416,52.868874436186346],[-127.2561970541034,52.86869861134731],[-127.25612861919214,52.86852338194542],[-127.25606946986503,52.86834748838566],[-127.25603536220441,52.868169094590684],[-127.25601980659081,52.867988252000146],[-127.25598757610629,52.86781039399692],[-127.25591639347856,52.867636314532234],[-127.2558220163328,52.8674647243963],[-127.25570638785382,52.867298409184244],[-127.25556958886065,52.86713960054843],[-127.25540694502973,52.86698779244799],[-127.25522502428164,52.86684459130437],[-127.255027565587,52.86671108684049],[-127.25481634663751,52.86658445359034],[-127.25459508648264,52.86646409587792],[-127.25436745575713,52.86634827986496],[-127.25411887113599,52.86624782190846],[-127.25386485539119,52.8661524693286],[-127.25363912321392,52.86603831730466],[-127.25343984593295,52.865905950368365],[-127.253255188171,52.86576446102907],[-127.2530815116688,52.86561668558983],[-127.25291983664515,52.86546542859731],[-127.25276461651619,52.865312416932206],[-127.25261397470976,52.86515711471849],[-127.25246794240714,52.865000077543],[-127.25232651983849,52.864841314385636],[-127.2521906310561,52.86468137131891],[-127.25206030577158,52.86452024804453],[-127.25194845316929,52.86435500961114],[-127.25187077482731,52.86418099675497],[-127.25179586188068,52.86400583360651],[-127.25175199938506,52.86371602093863],[-127.25165861950248,52.86354609335922],[-127.25153470400294,52.86338153885827],[-127.25139233647056,52.863222228669784],[-127.2511986101883,52.863088113160224],[-127.25096374724576,52.86297853633127],[-127.25071884474617,52.86287579052379],[-127.25047664410394,52.8627702180138],[-127.25024446889456,52.86265724884691],[-127.25000859104487,52.86254487451491],[-127.24977452538411,52.862430803766664],[-127.2495523947041,52.862311001788356],[-127.2493486212441,52.86218315882313],[-127.24918343277123,52.8620380937611],[-127.24907610756547,52.861867756436645],[-127.24897428143353,52.861694563109765],[-127.24882101485858,52.861543766950824],[-127.2486291315107,52.861408506872756],[-127.2484271595478,52.86127840162474],[-127.24821598572068,52.86115120019151],[-127.24800023752665,52.86102684441263],[-127.24778170939743,52.8609030736636],[-127.24756504116239,52.860778726862584],[-127.2473520302778,52.86065266416681],[-127.24714543949905,52.86052316166553],[-127.2469443319075,52.86039024726608],[-127.24674414648992,52.860256757870786],[-127.24654213646967,52.86012496416877],[-127.2463337399899,52.85999716504852],[-127.24611622514638,52.859875630994104],[-127.24588957515965,52.859759788298064],[-127.24565746122373,52.85964793028081],[-127.24542077151428,52.859538361854305],[-127.24518227363096,52.859431053663535],[-127.24494287090299,52.85932431945031],[-127.24470439029879,52.859217010117455],[-127.2444640196005,52.85910915545408],[-127.24421918767605,52.85900751627865],[-127.24396265086402,52.85891889388802],[-127.24369526723407,52.85884158451519],[-127.24342065606673,52.85877108462701],[-127.24314158430064,52.85870734696713],[-127.24286078434359,52.85864811898839],[-127.24257830469624,52.85859506787524],[-127.2422895859515,52.8585516041378],[-127.241999137116,52.85851208517109],[-127.24170957870636,52.85847143530876],[-127.24124566271186,52.858448882398356],[-127.2409503382952,52.85843406935488],[-127.24065414033832,52.85842094147034],[-127.24035710165879,52.85841062812988],[-127.2400577871569,52.858418270415534],[-127.2397644535726,52.85840791647694],[-127.23947977763099,52.85834311751288],[-127.2392092776371,52.8583179512922],[-127.23892564562084,52.85838482622588],[-127.23863274054787,52.85842097250249],[-127.23832835040854,52.858446040329824],[-127.23804351946904,52.85840812909882],[-127.23752920967168,52.858379923772596],[-127.23723244849016,52.8583791306637],[-127.23693618705745,52.85836375254887],[-127.23664159104237,52.85834164049923],[-127.23634783650083,52.85831671244842],[-127.23606830182817,52.85833253775036],[-127.23579199212612,52.858395965725876],[-127.23551186316777,52.85845551498378],[-127.2352309255975,52.85851954618151],[-127.23494914739317,52.85858695680974],[-127.23466480928076,52.85862972772708],[-127.23437362737626,52.85862942465886],[-127.23407683033243,52.858595556725945],[-127.23378960628067,52.85853861621836],[-127.23352052955029,52.85846634962378],[-127.23325945797579,52.85838110505687],[-127.23300375670087,52.85828852303826],[-127.23274892914358,52.85819368976205],[-127.23249413654644,52.85810054121167],[-127.23223756454557,52.858009643350336],[-127.23198190008705,52.85791817951748],[-127.23172895438397,52.85782444509369],[-127.23147689876588,52.85772902413028],[-127.23123299444272,52.857625662859306],[-127.23099268308935,52.857518345232194],[-127.23074700225203,52.857417807984696],[-127.23048602359714,52.85733536276098],[-127.23021063589475,52.85726932348167],[-127.22992801954003,52.8572106397543],[-127.2296463101679,52.8571513809932],[-127.22937349606197,52.85707746744466],[-127.2290843306825,52.85704966692801],[-127.22878656070732,52.85704605673214],[-127.22849969434007,52.85700142815353],[-127.22821620790822,52.85694442611167],[-127.2279398888836,52.856878391292746],[-127.2276778674483,52.85679146771323],[-127.22741853264792,52.85670115318002],[-127.22714072726038,52.85664801640057],[-127.22684700481915,52.85662306441827],[-127.22654888351553,52.856607123783846],[-127.22625241271419,52.85658387568285],[-127.22596642503926,52.8565369902571],[-127.22568121542102,52.85648504807726],[-127.22538838523425,52.85645896238967],[-127.22509129954136,52.85644636958162],[-127.22479588184893,52.85642758992126],[-127.22449116420947,52.85640835053878],[-127.22419173816837,52.85637953317916],[-127.2239321177364,52.856311064527475],[-127.22372490709282,52.85618938227533],[-127.22354483787758,52.85604050959252],[-127.22336017751375,52.855893934941236],[-127.22315735416908,52.85576267498905],[-127.22294995535327,52.855634259754176],[-127.22274161939748,52.855505298006605],[-127.22253423822026,52.855376890825546],[-127.22232682722763,52.855247918723336],[-127.22213227402838,52.85511264379814],[-127.2219762488038,52.8549590444996],[-127.22178527322605,52.85481869281005],[-127.22157854776844,52.85468074610532],[-127.22135218458357,52.854571578329235],[-127.22107337500144,52.854547577812646],[-127.22076630006885,52.85457542573461],[-127.22047141802143,52.85460707337056],[-127.22017694478696,52.85462077473664],[-127.2198834167877,52.854601972199724],[-127.21959055488502,52.85457418689616],[-127.21929756548063,52.854541928077936],[-127.2190036550933,52.854510233990126],[-127.21870899868827,52.85448470665716],[-127.21841369243002,52.85446871634896],[-127.21811762523174,52.854458901903094],[-127.21782070072126,52.8544518930384],[-127.21752377506424,52.85444431856873],[-127.21722675481163,52.854433946890595],[-127.2169296536636,52.85442021299457],[-127.21662886642017,52.85440820215516],[-127.21632985783948,52.85439280086166],[-127.21603615848231,52.85436838667616],[-127.21575316949502,52.85432760530606],[-127.21547820332165,52.85424246542056],[-127.21527630162737,52.854109505856385],[-127.21520653364492,52.85394603040217],[-127.21516672585832,52.853757032212435],[-127.21512006911777,52.85358827866589],[-127.21508734968504,52.85338687864307],[-127.21499952509815,52.85320958462381],[-127.21498650472628,52.85304665183629],[-127.21527184532698,52.85277807830438],[-127.21544439483696,52.852631714056514],[-127.21562260185264,52.85248808843312],[-127.21580645076374,52.852346654634566],[-127.21599123668543,52.85220576672684],[-127.21617319131073,52.85206322217369],[-127.21634575094123,52.85191742123741],[-127.21651168004165,52.85176719663113],[-127.21667285584869,52.85161366764381],[-127.21681904157482,52.851456366486794],[-127.21694186168139,52.851295379974474],[-127.21697778545753,52.85112016755836],[-127.21696326033342,52.85093707640675],[-127.21698607072626,52.85075863746834],[-127.21704896514447,52.850583145570624],[-127.21708291627792,52.85040402628415],[-127.21712619715328,52.85022594004373],[-127.21720871985436,52.85005416284776],[-127.21731740368448,52.849886606542796],[-127.21740269096352,52.84971424460891],[-127.21745903435429,52.849537699456505],[-127.21755275961932,52.84936749146108],[-127.21767642829467,52.849203697633],[-127.217820726429,52.8490458495611],[-127.21796127275445,52.84888692837634],[-127.21807187388835,52.84872158388974],[-127.21815807709798,52.848548655823585],[-127.21822280678496,52.84837257906672],[-127.21826703514054,52.84819560305366],[-127.21826188266934,52.84801521192652],[-127.21824652655216,52.84783548249982],[-127.2182330153917,52.84765574288524],[-127.21821114405131,52.847476080981075],[-127.21815213239816,52.84729848984244],[-127.2181555314886,52.84712417867728],[-127.21826040516902,52.846953854163864],[-127.21834661991616,52.846781481504856],[-127.21840111200045,52.84660551059649],[-127.21843133576027,52.84642643800326],[-127.21845316846351,52.84624688754632],[-127.21847035997676,52.84606738520525],[-127.21848197323635,52.845887940702895],[-127.21852060246583,52.84570989261525],[-127.21857038875517,52.84553229362152],[-127.21860993978545,52.84535424486059],[-127.21864947435215,52.84517563136252],[-127.21869835313136,52.84499859756224],[-127.21876027903585,52.84482255808864],[-127.218837142727,52.84464859614575],[-127.21893927423031,52.84447998476845],[-127.21907789388499,52.84431939593291],[-127.21919598007317,52.84415621361016],[-127.21921402577473,52.84397446046065],[-127.21910518265648,52.843810280056886],[-127.218970390489,52.843649166297304],[-127.21882361759727,52.84349153902674],[-127.2186713171614,52.8433362104723],[-127.21850341366542,52.84318776824442],[-127.21832817035802,52.84304276423799],[-127.21817039034832,52.84289028932159],[-127.21803010703113,52.84273203783143],[-127.21789626037285,52.842571468906975],[-127.21824509740436,52.84241318404587],[-127.2184345517201,52.84227448401239],[-127.21862398892809,52.842135227919975],[-127.21877301111832,52.84198069100634],[-127.21889195038538,52.84181526724886],[-127.21902499988624,52.841655291825795],[-127.21920403811816,52.841509973856155],[-127.21944090959182,52.841403847291645],[-127.21968539262838,52.841303800990104],[-127.21985034781983,52.84115414509102],[-127.22000681593487,52.84100064988068],[-127.22016423608709,52.840847709417645],[-127.2203470976457,52.84070627704798],[-127.22056681256208,52.84058574723944],[-127.22080834797424,52.840480690078245],[-127.22103184282058,52.84036236162771],[-127.22125913498958,52.840246799678745],[-127.22152751136714,52.8401694813873],[-127.22177576484466,52.84007163287855],[-127.22200683585913,52.83995827167585],[-127.22221323960062,52.83982779011097],[-127.22238572910277,52.839681979170535],[-127.22243738346467,52.83950547895453],[-127.22249836360714,52.839329437528995],[-127.2225723901865,52.8391549458958],[-127.22264644721689,52.838981018747056],[-127.22271955049276,52.838806536581586],[-127.22278798192,52.83863153811175],[-127.22287325565966,52.83845973552374],[-127.22302971920719,52.83830680072887],[-127.22322765724853,52.838173042940255],[-127.22343122077194,52.8380414767236],[-127.22362324196556,52.83789601612386],[-127.22368266240578,52.83773119790369],[-127.22363007519597,52.837550743906455],[-127.22358033350115,52.83737249282287],[-127.22349452755911,52.83720135108254],[-127.22356594194412,52.83703304554251],[-127.22369192495172,52.83688715190293],[-127.22370390433957,52.83668864844975],[-127.22370432334472,52.83650876283638],[-127.22370474208927,52.836328868238716],[-127.2236698249755,52.8361487859019],[-127.2236201171405,52.835971664088206],[-127.2235324387336,52.83579997688486],[-127.2234836525771,52.83562228050651],[-127.22341810555173,52.835444193826234],[-127.22331570117736,52.83527714296895],[-127.22327900810946,52.83509988536488],[-127.22323209995088,52.834923290044046],[-127.22316201164418,52.834748612820036],[-127.22314144874571,52.83458239496371],[-127.22312381772873,52.83438923875027],[-127.22312892585909,52.83421042484563],[-127.22319267642261,52.83403435350085],[-127.22329193748507,52.83386464586843],[-127.2233510164,52.83368806714127],[-127.2233635585496,52.83350916672492],[-127.22332681848752,52.833330223777324],[-127.2232567326667,52.83315555539559],[-127.22316422920875,52.832977193230946],[-127.22308510733355,52.83281157616157],[-127.2230372646031,52.832634434363435],[-127.22302095708133,52.832454713556864],[-127.22305486898037,52.83227559944084],[-127.22314854994183,52.83210594085423],[-127.22325435297189,52.83193784155349],[-127.2233545616572,52.831768679626016],[-127.22345475467812,52.83159951774968],[-127.2235558837083,52.83143034600818],[-127.22365235660922,52.83126066676255],[-127.2237217089067,52.83108565714335],[-127.22383127291211,52.83091920363315],[-127.22398206364521,52.830763519180685],[-127.22416097634233,52.83061651660343],[-127.2241876558601,52.83054170158965],[-127.22418449541004,52.8304963471136],[-127.22413750343532,52.83044640155926],[-127.22380927594945,52.83015224919861],[-127.22364785499049,52.83000150429026],[-127.2234873411369,52.82985019379471],[-127.22331121483178,52.829705761493734],[-127.22312775038351,52.82956421182035],[-127.22295161054815,52.82941922320851],[-127.22278927481729,52.82926905151453],[-127.22263337250659,52.829116006151345],[-127.22248206217832,52.82896122710367],[-127.22233996595577,52.82880355444947],[-127.22221813918898,52.82863951077882],[-127.22209815579538,52.82847488291068],[-127.22197725250635,52.82831082039692],[-127.22184621564116,52.82814966965777],[-127.22169951751103,52.82799316487593],[-127.22153534893691,52.827843566395536],[-127.22135556859882,52.8277008548124],[-127.22115745923739,52.82756674398466],[-127.2209694534586,52.82742860051449],[-127.22076795101754,52.82730628811971],[-127.22051809400202,52.82718279236956],[-127.2203944041175,52.82708320702665],[-127.22022637489947,52.826961110662296],[-127.22015612697854,52.826812210834035],[-127.22011979008725,52.82671171739159],[-127.21999540682722,52.826555543439184],[-127.21979246090292,52.82641474686126],[-127.21958796213346,52.826284618048376],[-127.2193807324325,52.826156202911434],[-127.21917166236057,52.82602891834452],[-127.21896167197636,52.82590165192907],[-127.21876450004545,52.8257675183756],[-127.21855638651792,52.825640787669066],[-127.21832714915102,52.825522686201644],[-127.21810165607103,52.825373154361785],[-127.21802718055834,52.825238876309015],[-127.21819909180091,52.82504207525832],[-127.21835460111477,52.82488915494345],[-127.21855789109303,52.824749187980565],[-127.21859217177378,52.82468046395981],[-127.2186516054057,52.82458065262224],[-127.21873764538856,52.82440379537942],[-127.21879407784024,52.82423172857026],[-127.21888211908066,52.82405989843621],[-127.21898324837045,52.82389072981563],[-127.21911247696262,52.82372911484435],[-127.21923983004606,52.823566954302194],[-127.21932974238825,52.82339566020743],[-127.21941590523039,52.82322328417032],[-127.21954139753315,52.8230611515143],[-127.21964906659825,52.82289359093145],[-127.21977725594901,52.82272806757421],[-127.21991294278982,52.82256526364088],[-127.22007417213408,52.82241788517363],[-127.22028829887547,52.82230021804518],[-127.22054876218935,52.8222100885972],[-127.22081105171648,52.82211937468484],[-127.22105062241107,52.822013770242435],[-127.22128539452409,52.82190317612416],[-127.22152019723259,52.82179369302459],[-127.22176259262314,52.821689743352934],[-127.22200975324212,52.82159021776827],[-127.22226072453329,52.82149345843875],[-127.22251649347835,52.82140225256466],[-127.22277707632549,52.82131716482721],[-127.22305198781298,52.821245367784435],[-127.22332885327049,52.82117692107304],[-127.22359618535211,52.8211001626191],[-127.2238406066122,52.82100234728918],[-127.2240583519602,52.82088182880259],[-127.22426181318667,52.820749139075254],[-127.22446522587981,52.82061531971555],[-127.224676310515,52.82048927447727],[-127.22488737878025,52.82036322004079],[-127.22509180476237,52.82023219542195],[-127.22529435529164,52.82010063408348],[-127.22551205976315,52.81997899237101],[-127.22575538763704,52.81987558030618],[-127.22601981587152,52.819795484071086],[-127.22629383884127,52.819725374164996],[-127.22656786227368,52.819655828483164],[-127.22684288551193,52.81958850432714],[-127.22711398218743,52.819513939865246],[-127.22737071389976,52.81942439868259],[-127.22751689484194,52.81927211857157],[-127.2275824472102,52.81909546797983],[-127.22763497571601,52.81891839761058],[-127.22783916867515,52.81910287028509],[-127.2280368954398,52.81912714523347],[-127.2283231737005,52.81909613017953],[-127.22862283089563,52.819045355962245],[-127.2289218077993,52.81900299855666],[-127.22921580777069,52.81898198764984],[-127.22951193872036,52.8189699200653],[-127.22980905573375,52.81896008299721],[-127.23010630177784,52.81895472701478],[-127.23040251432013,52.8189460187177],[-127.23069651201122,52.81892444819854],[-127.2310008841309,52.81887642491176],[-127.23126660408771,52.81884113502304],[-127.23156467274286,52.818799901163736],[-127.23185351458807,52.81876100496086],[-127.23209979405266,52.818664273250455],[-127.23235930606943,52.81857524768151],[-127.23261788048627,52.81848623136749],[-127.23289190026624,52.81841666175037],[-127.23318322677311,52.818367648939535],[-127.23348072480205,52.81833874493425],[-127.2337639267679,52.818362112071945],[-127.23400413645547,52.818441405556165],[-127.23430817093534,52.8185104961994],[-127.23457725640507,52.81859172649952],[-127.23484619836911,52.81866847450188],[-127.23512917859051,52.8187159334078],[-127.23538852594088,52.818814076318226],[-127.23566637244014,52.81887727915872],[-127.23594778877734,52.81893483976572],[-127.2362317749129,52.81898509192839],[-127.23652110881032,52.81902743251674],[-127.23680945818033,52.81906810605357],[-127.23710239606805,52.819106488932576],[-127.23739887234568,52.81913867387283],[-127.23769269891234,52.81917536023761],[-127.23797573579037,52.81922505333785],[-127.23823901447282,52.819297935050244],[-127.23847082452845,52.819407569683314],[-127.23868648079618,52.819536983827064],[-127.23890755066883,52.81966074541288],[-127.23916130525016,52.81975781830518],[-127.23946480430321,52.81980784777849],[-127.23970177102407,52.81974258079146],[-127.23988883873318,52.81959153875446],[-127.24007505009675,52.819443311920516],[-127.24027455906398,52.81930446659096],[-127.2404375639796,52.819157040225775],[-127.24049107474158,52.81898387149138],[-127.2404856526436,52.81879731098673],[-127.24059630037608,52.81863922957551],[-127.24078654562905,52.818501601948256],[-127.2409992356027,52.81836934071711],[-127.2411903838376,52.818231146921626],[-127.24137398405597,52.81808910532116],[-127.24156327141984,52.81795092157976],[-127.24176955798984,52.81782208898351],[-127.24198521560615,52.817695963341315],[-127.24220943633503,52.817576462509244],[-127.2424451322498,52.817468612677935],[-127.24269907369049,52.817380743643184],[-127.24297790382577,52.817317833043944],[-127.2432634395154,52.81726156660054],[-127.2435412989106,52.81719754411988],[-127.2438172486695,52.81713129063248],[-127.24409610818518,52.81706949782429],[-127.24438091671124,52.817020526031065],[-127.24466860231661,52.81697488544179],[-127.24494828154786,52.81690915459248],[-127.24522493653701,52.816835609521945],[-127.24550855422495,52.816809619578855],[-127.24579844472747,52.816839611523896],[-127.24609258978533,52.816887481485864],[-127.24638519387685,52.81691463669183],[-127.246679416432,52.816901989929654],[-127.24697303148776,52.81686804463988],[-127.24726258788567,52.81682294266086],[-127.24754053503094,52.816761707197585],[-127.2478048210712,52.816678756117554],[-127.2480652902543,52.816591926677056],[-127.24833445648852,52.816516777084125],[-127.24861034676687,52.81644939200329],[-127.2488921368204,52.81639259562092],[-127.2491809958976,52.81635534189435],[-127.24947677639054,52.81633257527561],[-127.24977071362792,52.81630983649949],[-127.25006562124226,52.81628876337438],[-127.25035949363632,52.81626433811619],[-127.25065234560722,52.81623656057406],[-127.25094504930011,52.81620373576886],[-127.2512366341413,52.81616420628714],[-127.25148740433545,52.81625455981008],[-127.2517129989346,52.81637320140784],[-127.25199446989947,52.816496285761964],[-127.25227595880563,52.81658799566597],[-127.25245765524515,52.8166359285142],[-127.25275049122162,52.81657564256029],[-127.25299778163392,52.81680052672039],[-127.25368023104144,52.817064475046244],[-127.25390096951237,52.81720726615709],[-127.254290829569,52.81728659659792],[-127.25467690981996,52.81739511607208],[-127.25526978753248,52.81755129445637],[-127.25568165407618,52.817620297740916],[-127.25579434017031,52.817596676166374],[-127.2558612415404,52.8175012568182],[-127.25590937855618,52.817368486696445],[-127.25615548333519,52.81729972579766],[-127.25630141106683,52.81720569311447],[-127.25649807883987,52.81706741463657],[-127.25668917080256,52.816929186530274],[-127.25688596801832,52.816795389192286],[-127.25712402109662,52.816674034472946],[-127.25735536664169,52.81657740885106],[-127.25761964733117,52.816494435507344],[-127.25787914258025,52.816407038571185],[-127.25810145575882,52.81628809206965],[-127.25836196767504,52.81620348066998],[-127.25862815336005,52.81612272618365],[-127.25887606639735,52.81602088066357],[-127.25912884549963,52.81592626317246],[-127.25940706884157,52.81587563956606],[-127.25970379367288,52.815853401834424],[-127.26000045204674,52.81582892244576],[-127.26028817753459,52.815784928548375],[-127.26057086924756,52.815728094214556],[-127.26083716375808,52.815651260763154],[-127.26108321049375,52.81554942154543],[-127.26133118056207,52.815449811709755],[-127.26157437913052,52.815345760411496],[-127.26178634905008,52.81522299949833],[-127.26196513239807,52.81507816982354],[-127.26214677549166,52.81493555968545],[-127.26233126136565,52.81479459539929],[-127.26252612322651,52.814659123242485],[-127.26273512660244,52.81453077938728],[-127.26298124536349,52.81443174173371],[-127.26325129142288,52.81435598305183],[-127.26352716090108,52.81428912753131],[-127.26382232071283,52.81424560067094],[-127.264101513855,52.814196640963225],[-127.2641965189639,52.814141262917175],[-127.26423434128799,52.81403774095201],[-127.2642522488752,52.813858218322636],[-127.26427761941795,52.813679171205344],[-127.26455734667469,52.81349178888511],[-127.2647512407941,52.81335520239554],[-127.2649169179164,52.81320771153691],[-127.26504875103568,52.813046570562435],[-127.2651683667435,52.81288108682387],[-127.2653001830419,52.81271994569324],[-127.26546110237202,52.81256858688956],[-127.26563415397524,52.812418773750125],[-127.26581945577608,52.81227498819912],[-127.26602000161904,52.81214393172958],[-127.26613701157201,52.8120787832138],[-127.26624541325859,52.812036708592366],[-127.2665347003084,52.81198427150502],[-127.26683004062139,52.81194745974334],[-127.26712680079963,52.81192744410143],[-127.2674127029512,52.81188624950337],[-127.26768275831843,52.8118116009572],[-127.26794889898851,52.811730825108675],[-127.26822378936382,52.81166284793872],[-127.26849966529578,52.811596545164946],[-127.26876777761558,52.81151967344035],[-127.26903103515205,52.811435563805794],[-127.26929819069959,52.811357580371165],[-127.26957603732335,52.81129517206974],[-127.26985681257352,52.8112377795618],[-127.27013954464634,52.811183718672815],[-127.27042326444266,52.81113189699768],[-127.27070887278481,52.81108061010496],[-127.27099357745477,52.81103045310908],[-127.27127826463916,52.810979730712496],[-127.27156490935835,52.810932357820505],[-127.27185444944247,52.810888871214615],[-127.27215192393598,52.8107993444527],[-127.27245903996896,52.81069065852216],[-127.27266226251196,52.810681730162905],[-127.27300592138417,52.81070770033267],[-127.27329672900436,52.810675404540845],[-127.2735882570976,52.810636375309166],[-127.27388440128172,52.810627001353254],[-127.27417187488182,52.810669834247165],[-127.27444264558322,52.81074478659132],[-127.27468273592551,52.81084977764202],[-127.27489554755604,52.81097523921408],[-127.2750892122016,52.81111268147133],[-127.27530018336537,52.81123816231055],[-127.27552576927718,52.811355638233955],[-127.27575496965306,52.81146914710123],[-127.2759859976227,52.81158207973245],[-127.27622157839042,52.81169159996118],[-127.2764662486393,52.81179429597332],[-127.2767191037069,52.811890742444874],[-127.2769843465445,52.811966869946176],[-127.27728055169123,52.81199054644947],[-127.27756644826948,52.81204235481973],[-127.2778544550949,52.81210255012872],[-127.27812525621061,52.812177493746645],[-127.27835140550438,52.81228207326972],[-127.2785055881482,52.812435066506126],[-127.27864803864432,52.81259939550769],[-127.27883526082421,52.81273801368535],[-127.27904173312625,52.81286802015665],[-127.27926005754402,52.81299061627063],[-127.27948748587917,52.813106378879255],[-127.27972676628715,52.81321473100933],[-127.27998144659563,52.81331002982053],[-127.28024939757698,52.81338275805345],[-127.28054193211676,52.81340758728509],[-127.28084162975142,52.81342337109589],[-127.28112474410544,52.81347464533961],[-127.28140267382294,52.8135394163351],[-127.28167973344503,52.81360588188767],[-127.28196112667487,52.813661656191094],[-127.28225351253214,52.81368143465211],[-127.28255204067052,52.81368938118307],[-127.28284640291682,52.813713063916786],[-127.28314079916952,52.81373786636024],[-127.28343434160108,52.81376491903793],[-127.28372703237514,52.81379478682438],[-127.2840179834415,52.8138285912915],[-127.28430592700145,52.813885965100326],[-127.28446810041254,52.81402541340967],[-127.2845754969877,52.8141973997786],[-127.28468366437043,52.8143643384124],[-127.28474022888346,52.81454529155972],[-127.28480133022552,52.81472283255578],[-127.28494973473695,52.814868034969294],[-127.28518453627099,52.81498090840593],[-127.28542399361343,52.81509429528349],[-127.28560939287665,52.815233487648186],[-127.28575631300423,52.815390469386735],[-127.28586924176159,52.815560717176034],[-127.28600317696379,52.815718970623124],[-127.28622133122651,52.81583426602099],[-127.28647977447592,52.81593006559409],[-127.28670631861934,52.8160463889648],[-127.28692469589627,52.81616896144516],[-127.2871448670662,52.81628983711238],[-127.28737593232466,52.816401626365696],[-127.28762330085512,52.81649978654364],[-127.28788427535139,52.81658658876986],[-127.2881488150125,52.81666831211127],[-127.28841337246153,52.81675059059282],[-127.28867789710273,52.81683174802933],[-127.28894424698986,52.81691176401845],[-127.28921235442827,52.81698839765959],[-127.2894831558365,52.81706163865396],[-127.28976676355211,52.81712856935027],[-127.2900545560585,52.817148943998035],[-127.29034900920287,52.817113203921934],[-127.29062277588355,52.8170390268713],[-127.29086033786324,52.816934976305454],[-127.29108346444505,52.81681483665648],[-127.29131035687992,52.81669634084114],[-127.29155923537245,52.816598333282634],[-127.2918385515006,52.816522962468724],[-127.29211130528401,52.816445986469894],[-127.29233762960553,52.81633982383139],[-127.29250714040198,52.81619841120996],[-127.29264636401075,52.81603940774207],[-127.29277419863452,52.81587211889871],[-127.29290958522493,52.81570922997604],[-127.29307326315066,52.81555947902684],[-127.29326707738261,52.81542340153323],[-127.29347222328728,52.815292811882145],[-127.29366886342034,52.815157823352536],[-127.2938532312861,52.81501680972583],[-127.29403384601616,52.814874160414995],[-127.29421631950252,52.81473204623134],[-127.29440637442703,52.81459433140786],[-127.29461151485374,52.81446429560046],[-127.29482890813664,52.814339728341075],[-127.29504255024928,52.81421408122337],[-127.2952383100382,52.81408078528732],[-127.29540008360948,52.81393048689924],[-127.29552234446234,52.813763821055154],[-127.2955998460749,52.813592600951075],[-127.29559713131741,52.813411058040245],[-127.29561301483979,52.81323043063505],[-127.29562792556104,52.81304812822935],[-127.29564844412089,52.812866893682546],[-127.29569512583551,52.81269040950088],[-127.29578482736173,52.8125229728382],[-127.29592412653993,52.81236676157493],[-127.29609238429481,52.81221583444675],[-127.29626156235881,52.81206489688559],[-127.29640639783193,52.811907503001926],[-127.29652406497561,52.81174312817337],[-127.29663048181042,52.81157550605556],[-127.2967321948836,52.811406259033404],[-127.29683765481582,52.81123753538974],[-127.2969543649567,52.81107260569991],[-127.29707950985711,52.81090982429493],[-127.29720840345499,52.810748122118646],[-127.29734010708972,52.81058694463956],[-127.29747366981911,52.810426311327575],[-127.29760724640573,52.81026567768254],[-127.29774174344332,52.81010503368002],[-127.2978743817015,52.80994441005086],[-127.29800514430435,52.80978325105989],[-127.29812932794059,52.8096199140503],[-127.29825444720315,52.80945657549837],[-127.29838708151807,52.809295951222666],[-127.29852627531082,52.80913693094649],[-127.29867768936091,52.80898282344605],[-127.29884316412642,52.80883304341041],[-127.29901620290012,52.80868710676105],[-127.29919394524545,52.808543350443664],[-127.29937543616704,52.808400682118815],[-127.29955598932564,52.80825801490445],[-127.2997403228157,52.808116991240134],[-127.29991899895353,52.80797378827286],[-127.30007130600028,52.80781854804053],[-127.30015435157846,52.80764726253572],[-127.30016557696275,52.80746668521139],[-127.30011176755929,52.80728627242871],[-127.30019494609215,52.80711890375842],[-127.30031631765293,52.80695503920083],[-127.30045539658322,52.806793219922085],[-127.30059830696102,52.806634720467294],[-127.30075435847199,52.80648112335866],[-127.30093583514135,52.80633844346738],[-127.30113053590165,52.80620290650979],[-127.30133750520513,52.806073402190435],[-127.3015615352283,52.80595547246613],[-127.30180645645304,52.80585188130231],[-127.30206269492369,52.80575432410802],[-127.30231519802369,52.80565569592742],[-127.302547880081,52.80554719077198],[-127.30274843555273,52.805421117501815],[-127.30290742239312,52.8052725239329],[-127.30303712986112,52.80510856364059],[-127.30315180258981,52.804938601095564],[-127.30326467068107,52.80477090907583],[-127.30334859951591,52.80459849012717],[-127.30342598232319,52.80442445807405],[-127.30352299809893,52.8042547001413],[-127.30362466641529,52.80408544634695],[-127.30372822325721,52.80391672738691],[-127.30383084337713,52.803748027682424],[-127.30393065177955,52.80357879420607],[-127.30402578890103,52.80340849169831],[-127.30411253984533,52.80323716145613],[-127.30418153407565,52.80306266598422],[-127.3042318504956,52.80288501555276],[-127.30427749819393,52.80270685206919],[-127.30433623118988,52.80253079372088],[-127.30441449328355,52.80235563009192],[-127.30452647951667,52.802189623013696],[-127.30469754817676,52.80204201301917],[-127.3049272548602,52.801927940499326],[-127.30519051900752,52.8018482310592],[-127.30546806512953,52.80178013533591],[-127.30574085449794,52.80170817344794],[-127.30599630919552,52.801616219908226],[-127.3062307490078,52.80150545455754],[-127.3064422645645,52.80137420407633],[-127.30668273679446,52.80127849736595],[-127.3069743222331,52.80124386661824],[-127.30727399064543,52.80123099683868],[-127.30757064546398,52.80124058549251],[-127.30783443207548,52.800935576766705],[-127.30799522485965,52.800786399429064],[-127.30820226926859,52.8006613555547],[-127.3084470926581,52.80055607398443],[-127.30869866554502,52.80045911837128],[-127.30895889703343,52.80037215311139],[-127.3092220066502,52.80028795274491],[-127.30947749703412,52.80019767670053],[-127.30972889363694,52.800095116603735],[-127.30991271019819,52.80000003542396],[-127.30995479300734,52.799978834662305],[-127.3100072828355,52.79981236517065],[-127.30996199793852,52.79963857652149],[-127.3101897119569,52.7993698402856],[-127.31033821906496,52.79921406263873],[-127.31051878286385,52.79907418332299],[-127.31072282701194,52.798942452153966],[-127.31094198595798,52.798818953511194],[-127.31117445416854,52.79870539322532],[-127.31141755645717,52.7986051636274],[-127.31168267968741,52.79852653914424],[-127.31196019386965,52.79845842792051],[-127.31223197809658,52.79838477593144],[-127.31248648023897,52.798293383242495],[-127.31273138282396,52.79819145392567],[-127.31297245126729,52.79808619550751],[-127.31321544244219,52.797982600791734],[-127.31346612222363,52.797887886175445],[-127.3137379346927,52.79781535112214],[-127.31400969690354,52.79774169515131],[-127.31427670198636,52.797664173378095],[-127.31454368871638,52.79758608628625],[-127.31480873086933,52.7975052137865],[-127.31506986795219,52.79741822431919],[-127.31533492546085,52.79733791532933],[-127.31562054303987,52.79729156522003],[-127.3159164321708,52.79727759453807],[-127.31621259511273,52.79727203080444],[-127.31650976564597,52.79726926159502],[-127.31681129505034,52.797257467039316],[-127.31711198964766,52.7972484876573],[-127.31738554685506,52.797293056517816],[-127.31763016441434,52.79739342676641],[-127.31786962641334,52.79750730448058],[-127.31812516472178,52.79760026111181],[-127.31838606854136,52.79768644083965],[-127.31865148781979,52.79776864182813],[-127.31892044696824,52.79784463333652],[-127.31919465267518,52.79791048666665],[-127.31948658064618,52.797948110131344],[-127.31978023044822,52.797981795055136],[-127.32003907488509,52.79806126928357],[-127.32026571954842,52.79818089056809],[-127.32054504818923,52.798231547325564],[-127.32084041939613,52.798260726892366],[-127.32113051143241,52.79829893187266],[-127.32140565924156,52.79836476051333],[-127.32167016734853,52.79844696501216],[-127.32194889299333,52.79850827770193],[-127.32222577938562,52.79857016639921],[-127.32247954567033,52.798665375308964],[-127.32273501431325,52.79875552519381],[-127.32301367407216,52.79881459444712],[-127.32330387834405,52.79885671129245],[-127.32359309279913,52.798896605879975],[-127.32388411282574,52.7989347936452],[-127.32417662569028,52.79896119055169],[-127.32447337278631,52.798974097831994],[-127.32477071090833,52.79897634523397],[-127.32506673054387,52.798966277539655],[-127.32535950194195,52.798941109971715],[-127.32565103901408,52.79890587702509],[-127.32594160447076,52.79886952452151],[-127.32623423577348,52.798839881946854],[-127.32653105095613,52.798825318191],[-127.32682692987285,52.79881076426966],[-127.3271166596707,52.79877722486918],[-127.32740317773434,52.79873027099957],[-127.32768671010342,52.79867718110168],[-127.32797020449891,52.798622414161215],[-127.32825172149738,52.79856430638899],[-127.328530302552,52.79850119187397],[-127.32881389929561,52.798449784227294],[-127.32910769076207,52.798427958204705],[-127.3294085481175,52.79842399380748],[-127.3297034496033,52.79840775791637],[-127.32998432080734,52.79835861998588],[-127.33026199407861,52.7982960675346],[-127.33053662886698,52.798225702980304],[-127.33080640271677,52.79814866785462],[-127.33107325747017,52.79806718184284],[-127.33133441739126,52.7979818413641],[-127.33159925550399,52.797895328734086],[-127.33187053064064,52.797806509701054],[-127.33213040153184,52.79770996464197],[-127.33236386588604,52.797600277715794],[-127.33255492241769,52.79747145272826],[-127.33269798230606,52.797322997427464],[-127.33280804051783,52.79715866011547],[-127.33289645053999,52.796985045927286],[-127.33297540184876,52.79680649979678],[-127.33305809904458,52.796628466962396],[-127.33315489173732,52.79645587809439],[-127.33327983818722,52.796292491870425],[-127.3334376088622,52.79613938492979],[-127.33362080716277,52.79599719715642],[-127.33380662240283,52.79584937509784],[-127.3339971067533,52.795702620471474],[-127.33419814659622,52.79556695391573],[-127.33441845404808,52.79545292879728],[-127.33466298203273,52.79537112324596],[-127.33494204049616,52.79532423537189],[-127.33524327109141,52.79530343882902],[-127.33555339114585,52.79529934402581],[-127.3358572466327,52.79530260971023],[-127.33615195964204,52.795311027017775],[-127.33644613706032,52.795331770020425],[-127.33674057794079,52.79536092011138],[-127.33703332010471,52.795395137114795],[-127.33732515901092,52.79542991962795],[-127.33761344477179,52.7954703461584],[-127.33790011683821,52.79551807140164],[-127.33818590636055,52.795567491768594],[-127.33847343089892,52.7956129731746],[-127.33876550348327,52.79565559538608],[-127.33905757380074,52.795697651995475],[-127.33934786069833,52.79574253484105],[-127.33963183141418,52.795793093324754],[-127.33990769921536,52.79585158959061],[-127.34016285391033,52.79593106195452],[-127.34035674806822,52.796071194435335],[-127.34057045647579,52.79619148090873],[-127.34068583220147,52.79637510213577],[-127.34077533840428,52.79653380432677],[-127.3408866358971,52.79667600064815],[-127.3410611799188,52.79685053441994],[-127.34118652029437,52.797026195303296],[-127.34126072597253,52.79720019892708],[-127.34131365227898,52.797376687454424],[-127.34135269547367,52.79755502041337],[-127.34139366631868,52.79773556402766],[-127.34117288277453,52.79798187626584],[-127.34112453011105,52.7981578367015],[-127.34108274062123,52.79833597273185],[-127.34104655484039,52.79851460061339],[-127.34101221115557,52.79869320740585],[-127.34099183928247,52.79887277532459],[-127.34100211966148,52.799051992893226],[-127.34102540368238,52.79923161775856],[-127.34105627689054,52.7995047508018],[-127.34110462490882,52.79968353319682],[-127.3410542897115,52.799855597575025],[-127.34096592815767,52.80000007541473],[-127.34095000415493,52.80002548086089],[-127.34088583326383,52.80020050085987],[-127.34086174547991,52.800380111030655],[-127.34087851892943,52.8005592542333],[-127.34093608375406,52.80073568956877],[-127.3410241471999,52.80090729293237],[-127.34109835896044,52.801081296220886],[-127.34114295901131,52.801259000433944],[-127.34116254521632,52.80143867626712],[-127.34116539999042,52.80161853434905],[-127.3411543143246,52.8017979958077],[-127.34110786759112,52.801975619713374],[-127.34097354186652,52.8021357584833],[-127.34092058275934,52.80231289178193],[-127.34085920474689,52.80248844445496],[-127.3407351904529,52.80265182756593],[-127.34061868989167,52.80281735739093],[-127.34056569615935,52.80299393488313],[-127.34058529817989,52.80317416634843],[-127.34077814971738,52.803309826414115],[-127.34104180443748,52.803391997507575],[-127.34130903718942,52.803470208657345],[-127.34154036517758,52.8036177569263],[-127.3417359976516,52.80375281874003],[-127.34189957316772,52.80390226181298],[-127.34203560733694,52.80406267210795],[-127.34213119735186,52.80423643000365],[-127.34230919857313,52.8043722574172],[-127.34254586322618,52.80448219002542],[-127.3427862117847,52.80459152407156],[-127.34301926986055,52.80470486849505],[-127.34322032608102,52.804834826477574],[-127.34334444239845,52.80499984606026],[-127.34336315612272,52.805181207981434],[-127.34343629013146,52.8053501825439],[-127.34362202729399,52.80549488612885],[-127.34385778311525,52.8056053914308],[-127.3441300739358,52.80569585861493],[-127.34437657198441,52.805793354668275],[-127.34450181216668,52.80593482249007],[-127.34449298510182,52.80612658727367],[-127.34459711787619,52.806305849422316],[-127.34473899552026,52.806385489115485],[-127.3450293442267,52.80640009510863],[-127.34524151879317,52.806381406433935],[-127.34566654318391,52.806512155170935],[-127.34595896557998,52.8065043182948],[-127.34625759670976,52.80648688680443],[-127.34655100534005,52.806509855762314],[-127.34684293091647,52.8065451792219],[-127.34709754360877,52.80660502386639],[-127.34738180789994,52.806662285845775],[-127.34769314106536,52.806694012891214],[-127.34799072886106,52.80670236831688],[-127.34828421067172,52.80672757380726],[-127.34857351931433,52.806767962357135],[-127.34885202098923,52.80684882468253],[-127.34915091795244,52.806868926479034],[-127.3493805885298,52.80684498989001],[-127.34974422120725,52.80688508584799],[-127.35004009456325,52.80689793021266],[-127.35035171519327,52.8069094807619],[-127.35063100905796,52.80686815809411],[-127.3509365037123,52.80683269328794],[-127.35128453217234,52.80684942644668],[-127.35152018282761,52.80686744387379],[-127.35225193133685,52.80697166341709],[-127.35287392732808,52.80692582109715],[-127.35323978059307,52.80685995661054],[-127.35385145820167,52.80681087449924],[-127.35451101394597,52.806806626216655],[-127.35487186319635,52.806905013315394],[-127.35528906016565,52.80687610233393],[-127.35555790469525,52.80679845668388],[-127.35570829300602,52.806648212238706],[-127.3558367914067,52.806481398866936],[-127.35599644480176,52.80632992610923],[-127.35617301363334,52.8061849737195],[-127.35632233388876,52.80603025734644],[-127.35645470348352,52.80586844672011],[-127.35657392679522,52.80570230451191],[-127.35667262701733,52.805533592827224],[-127.35672092396106,52.80535762682968],[-127.35673746417169,52.805176414759934],[-127.35680440688793,52.805002474792474],[-127.35690586267731,52.80483261010093],[-127.35699051428773,52.80466070689278],[-127.3570592767684,52.804485615845415],[-127.357146720743,52.80431368017847],[-127.35726130073654,52.804147590724874],[-127.3574040121235,52.803990142486924],[-127.35755705285794,52.803835937085346],[-127.35769509025148,52.80367742166429],[-127.35782183934543,52.803514553289254],[-127.35795419545991,52.803352740708384],[-127.35810052446813,52.803191887078654],[-127.35817129799145,52.80302182015006],[-127.35818144759621,52.80284460893471],[-127.35816923368189,52.802664849944605],[-127.35814488593972,52.802483554587845],[-127.35811960227208,52.80230227003946],[-127.358100880738,52.802122595270916],[-127.35807754099291,52.801943529871075],[-127.35805232920272,52.80176448611458],[-127.35802897189683,52.801584855964286],[-127.35800561788825,52.80140579065968],[-127.35798040390169,52.80122619091751],[-127.35795519294224,52.80104714705688],[-127.35793461502219,52.8008674846475],[-127.35792056333561,52.800688311595806],[-127.35791576587162,52.800508475484605],[-127.35791466202929,52.80032746679183],[-127.35791909759935,52.800145838029486],[-127.35793211740453,52.79999997705131],[-127.35793566662362,52.79996575457905],[-127.35796810093058,52.79978772021805],[-127.35802482534703,52.79961445299462],[-127.35813657829138,52.79944783877499],[-127.35828480382428,52.79928863918349],[-127.35843966411822,52.79913385492417],[-127.35859627332124,52.798975678666096],[-127.35877460684073,52.798829023993385],[-127.35899109736238,52.79871331086585],[-127.35924666935706,52.798629093279544],[-127.35952320478712,52.79856143599996],[-127.3598073646742,52.79849985885094],[-127.36008763083692,52.7984327218864],[-127.36034878839027,52.798348993033805],[-127.36060019468005,52.79825080560586],[-127.3608428421128,52.79814038985126],[-127.361061869954,52.798017362269555],[-127.36124608094238,52.797880158174536],[-127.36138318508267,52.797722769100666],[-127.36149010579848,52.797550603086336],[-127.361587599668,52.797374618881165],[-127.36170113629946,52.79720629433495],[-127.36185242296106,52.79705658595747],[-127.36204996709137,52.79692987825025],[-127.36227581730445,52.796817412603254],[-127.36251960276326,52.79671370503403],[-127.3627728515917,52.796615491279454],[-127.36302891014866,52.7965178002592],[-127.36327923844865,52.79641570080048],[-127.3635144725641,52.79630592127233],[-127.36373167969269,52.796184586318226],[-127.36393558163725,52.79605388284873],[-127.36413001747154,52.79591767582991],[-127.36431686265634,52.79577651737526],[-127.3644999565821,52.79563428137063],[-127.36467931731794,52.79549153253373],[-127.36485301589109,52.79534604264777],[-127.36502294523197,52.79519891056751],[-127.36519002676127,52.79505013455365],[-127.36535616824742,52.794900813270324],[-127.36552326230645,52.79475203658032],[-127.36569410808022,52.79460489275019],[-127.36586590669586,52.79445830246103],[-127.36603674719444,52.794310602193676],[-127.36620290062211,52.794161835376855],[-127.36636155303539,52.79401091394839],[-127.36649388319725,52.793850211178395],[-127.3665868562794,52.793678758139244],[-127.36665181213685,52.7935025920154],[-127.36665063881375,52.79332102701874],[-127.36660563603616,52.793133803387065],[-127.36661037143573,52.792962257224126],[-127.36681078621821,52.79283943482036],[-127.36710050435568,52.79277889531389],[-127.36739407592196,52.79275193586531],[-127.36769047590259,52.79272606355958],[-127.36797596957504,52.79267845648469],[-127.36825737512365,52.79261969678376],[-127.36853203629968,52.792553160107154],[-127.36877396116752,52.792450581357954],[-127.36882967504079,52.79227619839639],[-127.36880811674472,52.7920959918824],[-127.36883669947257,52.791915765203306],[-127.36891289246239,52.791742819972754],[-127.369015225844,52.791574062009154],[-127.36912595764102,52.791406317802064],[-127.36924698413777,52.79124125993119],[-127.36938304461079,52.79108163070426],[-127.36953509589628,52.790928539757374],[-127.36970309899246,52.79078031067977],[-127.36988146471505,52.79063643479178],[-127.37006731409429,52.790494721886816],[-127.37025416971292,52.79035522965796],[-127.37046932675518,52.79022942169487],[-127.3706817227775,52.79010421048687],[-127.37082255283728,52.789949007075414],[-127.3709417296331,52.789784524736945],[-127.37105243138639,52.7896162227782],[-127.37116501022189,52.78944901960561],[-127.37129449438602,52.78928722297475],[-127.37144096195632,52.789134194498594],[-127.37170515350387,52.78885818033381],[-127.37184871425062,52.7887012577662],[-127.37201013720299,52.788550860206215],[-127.3721922387171,52.78840862247654],[-127.37237339990769,52.78826583052414],[-127.37253761497001,52.78811595543552],[-127.37266710804253,52.787954721851335],[-127.37274136782315,52.78778011923792],[-127.37282685743398,52.787608182793136],[-127.3729393520035,52.78743873681779],[-127.37308005400875,52.78727961319206],[-127.37327553996118,52.78714954636824],[-127.37351540382696,52.78704193275388],[-127.37376377362271,52.7869387114261],[-127.37398474345824,52.786821230324264],[-127.37411880729856,52.786658255572505],[-127.37417447392075,52.786483313677046],[-127.37420115538468,52.7863025420828],[-127.37421022334033,52.78612253276526],[-127.37421651390608,52.78594256493168],[-127.37421905804216,52.78576207605394],[-127.37421511123829,52.785581663202905],[-127.37420099629804,52.78540249032505],[-127.37417296701925,52.78522403639267],[-127.37411797341463,52.78504478643807],[-127.37402510651363,52.78487157547477],[-127.37386363340484,52.78473056122488],[-127.37365430628269,52.784603548613404],[-127.37342758422365,52.78448402942506],[-127.37322189778939,52.784354175741605],[-127.37304828185928,52.78421106081339],[-127.37306919797263,52.783995045015665],[-127.37335189160564,52.783920564823546],[-127.37357383687228,52.78380475845447],[-127.37374174374912,52.78365483775902],[-127.37389553749071,52.78349947778834],[-127.37403436610012,52.78334036539358],[-127.3741722582547,52.78318127274452],[-127.3743374043637,52.78303250429424],[-127.3745232746709,52.78289245963795],[-127.3747109854541,52.7827523930879],[-127.37488365905186,52.78260633323723],[-127.37505253170605,52.78245808490093],[-127.3752157760303,52.78230765158831],[-127.37536963170969,52.78215453043599],[-127.37551034333843,52.78199652379108],[-127.3756369601942,52.78183363388453],[-127.37575326755963,52.78166805809431],[-127.37586302974299,52.781500882125854],[-127.3759643903243,52.78133212777749],[-127.37605448782931,52.78116013389314],[-127.37614741312082,52.78098923656602],[-127.37625626911634,52.780822626700555],[-127.37640542800132,52.780667882231654],[-127.37657048441193,52.78051686950394],[-127.37669995714334,52.78035618640965],[-127.37679940401928,52.7801863237717],[-127.37689416243973,52.78001483924607],[-127.37700955739992,52.779849837528204],[-127.37715308660037,52.77969347225208],[-127.37730973616364,52.77954088021164],[-127.37747294347628,52.7793898877301],[-127.37763615270511,52.77923945092188],[-127.37779373449716,52.779086847199046],[-127.37793911464392,52.77893045907345],[-127.37806385678262,52.77876758803276],[-127.37817079228549,52.7785998776913],[-127.37827397500965,52.77843053450718],[-127.37838463976337,52.77826334500404],[-127.37851689415392,52.77810319173102],[-127.37866976596447,52.777948956206785],[-127.3788357573952,52.7777984847651],[-127.37900645028179,52.77764964356536],[-127.37917152201011,52.77749974732554],[-127.37932440753013,52.777346075592106],[-127.37945391441778,52.77718706531233],[-127.37954961243497,52.77701668792098],[-127.3796107045828,52.77683831549317],[-127.37964202309526,52.77665804258124],[-127.37964093666513,52.77648040159305],[-127.37960081737847,52.776302089956914],[-127.37954584528141,52.77612339706945],[-127.37950295006823,52.775945126990315],[-127.37946463398201,52.775765117219386],[-127.37946538631267,52.77558688958424],[-127.37950229142955,52.775407115759116],[-127.37956527357969,52.7752298328145],[-127.37966662599547,52.77506219519733],[-127.37981102873434,52.77490469472412],[-127.37997783466844,52.774751413894876],[-127.38014188049736,52.77459872123808],[-127.38028072961242,52.77444185038469],[-127.3803626308418,52.77427555288927],[-127.3803586953587,52.774096259339366],[-127.3803267547666,52.773912255981436],[-127.38032554183147,52.773731244545914],[-127.38033924734897,52.7735517432705],[-127.3803594418043,52.77337216558411],[-127.38041519212067,52.77320113629787],[-127.3804407372609,52.77301477030891],[-127.3804442804616,52.77283707436273],[-127.38040879097716,52.77265815211807],[-127.38035290266913,52.77248002593804],[-127.38027766352373,52.77230661997528],[-127.38014612936462,52.77214339954106],[-127.38000726222775,52.771983062963635],[-127.3799794349089,52.771811340516656],[-127.38004042720839,52.7716301616496],[-127.3799738067493,52.771349605831475],[-127.37997635849722,52.77116967067556],[-127.37999840938492,52.77099007092661],[-127.3800204783251,52.77081103585955],[-127.38002211264921,52.77063167635605],[-127.38000794521497,52.770451937892645],[-127.37998636902944,52.770272295573065],[-127.37996385731478,52.770092655274034],[-127.37994507599853,52.76991353596962],[-127.37993555678624,52.76973375167966],[-127.37993811198713,52.769554381216125],[-127.37994996182937,52.76937490133804],[-127.37996920230894,52.76919476952833],[-127.37999498233921,52.76901569056679],[-127.38002542737374,52.76883711262294],[-127.3800660903033,52.7686589703313],[-127.38011979878746,52.768482360240164],[-127.38017813919528,52.76830569557291],[-127.38023182882256,52.76812852964505],[-127.38027436435854,52.76795093005814],[-127.38031037514698,52.76777228636837],[-127.38034080313088,52.76759370837157],[-127.38036843622653,52.76741459832599],[-127.3803802836684,52.76723511815218],[-127.38037818667027,52.767055246179],[-127.380377009904,52.76687535438301],[-127.38037028074454,52.766695536906205],[-127.38035333681617,52.76651583070829],[-127.38032898794675,52.76633677659514],[-127.38030183017335,52.76615719957227],[-127.38027005846256,52.76597823280214],[-127.38023181706335,52.7657998981296],[-127.38018525393588,52.765622791243665],[-127.38011372088998,52.765448775990585],[-127.38001539551159,52.76527843870517],[-127.3799124930185,52.76510983203972],[-127.37980035204592,52.764943019812364],[-127.37969010078903,52.764776750154375],[-127.37959361617152,52.76460582589069],[-127.37951187010293,52.764431374430636],[-127.37943194398828,52.764255771638574],[-127.37934654188147,52.764083039896406],[-127.37924465588931,52.7639172273042],[-127.37908216481682,52.76377174748136],[-127.37882107476058,52.76367730189197],[-127.37853820946069,52.76362738212278],[-127.37824725476293,52.763585411918456],[-127.37795891070724,52.76353779693804],[-127.37768215272497,52.763475482607696],[-127.37742133826478,52.76338943282781],[-127.37716847122,52.76329096838627],[-127.37694293204845,52.76317592516494],[-127.37675382517435,52.763039712870416],[-127.37658749019127,52.76288979126265],[-127.37642295778,52.76273816244753],[-127.37623655537305,52.762599119847394],[-127.37599172870566,52.76249046161047],[-127.37576625117046,52.76237710123405],[-127.37567739060053,52.762211688658795],[-127.37561315994907,52.76203310133036],[-127.37547805422916,52.761872723737554],[-127.37531543923963,52.76172274769998],[-127.37513448571343,52.76157972081831],[-127.37495996311445,52.76143436749766],[-127.37479639850432,52.76128384591855],[-127.37462096119883,52.76113906774478],[-127.37442725731121,52.76100347053849],[-127.37422715769544,52.76087075468138],[-127.3740197480401,52.760742042773714],[-127.3738041588414,52.76061846585028],[-127.37357949117641,52.76050116424964],[-127.3733475464497,52.76038843100911],[-127.37311106157414,52.760278557187206],[-127.3728764004978,52.7601680966099],[-127.37264631499468,52.76005534022533],[-127.37238491993517,52.75995023121164],[-127.37222071965392,52.759808124607865],[-127.37204347755056,52.75966448461932],[-127.37187807116207,52.759513415625875],[-127.3716693592885,52.759372385138214],[-127.371500136319,52.75924714953673],[-127.37131614557958,52.75909574123409],[-127.37109419344215,52.75897559646816],[-127.37085597745022,52.75886965700855],[-127.37060873363097,52.75877111285271],[-127.37035605300044,52.75867710630591],[-127.37009974944486,52.75858539230051],[-127.36984348586482,52.758495354115254],[-127.3695835990281,52.758407599476946],[-127.36931106894315,52.75833120079266],[-127.36907757887141,52.75822744432512],[-127.36891309104307,52.75807580450621],[-127.36876874532364,52.75791551814664],[-127.36860988014249,52.75776549804744],[-127.36837273760266,52.75766345968021],[-127.36811464257363,52.757573439148544],[-127.36784925539943,52.75748798668362],[-127.36759026323462,52.75739909636411],[-127.36733491135388,52.75730792124954],[-127.3670804779306,52.75721617891606],[-127.36682601269824,52.757123871483614],[-127.36657156340823,52.75703156332012],[-127.36631981931001,52.75693698131261],[-127.36607344551263,52.756836166844714],[-127.36582168590927,52.756741028004434],[-127.36554926251569,52.75666741717289],[-127.36526330777414,52.756605737077585],[-127.36499373055874,52.75653377762519],[-127.36476202689963,52.756427194149246],[-127.36456340460342,52.756280985238405],[-127.36444581626435,52.75611534262657],[-127.36443574889279,52.75594508564563],[-127.36448574170768,52.755766848220134],[-127.36456349286851,52.75558603685126],[-127.36463484977054,52.75540867146566],[-127.36470723046605,52.755234091813406],[-127.36478706774096,52.75506054614752],[-127.3648659660874,52.75488644640805],[-127.36493557256415,52.75471246376441],[-127.36498467710402,52.7545353482014],[-127.3649872225677,52.754353735337624],[-127.36498140878722,52.75417166384601],[-127.36506868192431,52.75399858718975],[-127.365142154691,52.75382904280269],[-127.36529788857204,52.75367870707671],[-127.36549504310496,52.75354638763004],[-127.365733749413,52.75343712222804],[-127.36592319397836,52.75329592477191],[-127.36607782421726,52.75314000530457],[-127.36614385534648,52.75297053790056],[-127.36614830169228,52.75279002349347],[-127.36613780184668,52.752606885553035],[-127.36615894528899,52.752426176472],[-127.36626031397275,52.7522591036807],[-127.36643950462994,52.752116903848155],[-127.36663464993562,52.75198012210325],[-127.3668147044828,52.751836225755625],[-127.36697217001301,52.7516819486387],[-127.36712868161605,52.751527126449034],[-127.36730415594037,52.75138496850793],[-127.36753365910177,52.751278604194475],[-127.36780960643189,52.75120252625246],[-127.36805408924167,52.75109991364098],[-127.36827287313982,52.750977424560894],[-127.3684229486913,52.7508249174029],[-127.36854195392867,52.75065819234073],[-127.36872584732986,52.7505181755553],[-127.3689673008176,52.75040831501067],[-127.36920893220442,52.7503040473427],[-127.36930956131984,52.75014314949338],[-127.36938901151011,52.74995839541563],[-127.3694789975703,52.74978416209564],[-127.3695676095394,52.74962452526106],[-127.36961831393872,52.74944066283697],[-127.36975229531015,52.74927825379065],[-127.36992027732572,52.74913449326554],[-127.37013711891974,52.74900978129189],[-127.37039183313928,52.7489087296401],[-127.37066343501506,52.748842218517616],[-127.37095491945344,52.74881751201839],[-127.3712581778955,52.74881228708239],[-127.37155544268089,52.748794236787326],[-127.37183487590501,52.74874052598244],[-127.37210988208375,52.74866500448638],[-127.37236950427305,52.74857229316645],[-127.3726016980881,52.74846365408335],[-127.37276115041384,52.74831494963957],[-127.37288933501624,52.748145870295374],[-127.37308184964802,52.7480152772087],[-127.37331493728699,52.74790549628435],[-127.37356504627515,52.74780616832],[-127.3738246960989,52.74771457419365],[-127.37408636504668,52.74762856025758],[-127.37434995697085,52.74754420898922],[-127.3746173148053,52.747462045753366],[-127.37488947884677,52.7473848740013],[-127.37516380338839,52.74731720831806],[-127.37544034223954,52.747260715948386],[-127.37572647928525,52.74724278551767],[-127.37602643320541,52.747279615890704],[-127.37631543794309,52.74732217856124],[-127.37660194193518,52.7473737370445],[-127.37688671469883,52.74742867785375],[-127.37717220992143,52.74747744905963],[-127.37745997522067,52.7475104914229],[-127.37775238236283,52.74751434425656],[-127.37804858874928,52.747492362172906],[-127.37834459630245,52.747464221245686],[-127.37863892910501,52.74744170373568],[-127.3789322364724,52.747416399798496],[-127.37922555804354,52.7473910859885],[-127.37951895495463,52.74736857727102],[-127.37981445659375,52.747353333326544],[-127.38011015990408,52.747344802655974],[-127.38040591440216,52.747337400496136],[-127.38070844308237,52.74733887596004],[-127.38100805532683,52.74733646636663],[-127.38128493061839,52.74729060913309],[-127.38154299542171,52.74720798348412],[-127.38179216113744,52.74710864876502],[-127.38203833673025,52.74700318832267],[-127.38229045287059,52.74690885725036],[-127.38263982474146,52.7470106646498],[-127.38292099734475,52.747040408728125],[-127.38321787924774,52.747010568231964],[-127.3835068543053,52.746966239722404],[-127.38378899936222,52.74691134712232],[-127.3840720423345,52.74685532233153],[-127.38435728749997,52.746810479787634],[-127.38465544974605,52.746791829447176],[-127.3849503465564,52.74675808035963],[-127.38522051423057,52.74670612357977],[-127.385500225413,52.746661908572094],[-127.38573869689918,52.74654812006989],[-127.38594047593968,52.7464185075498],[-127.38608099458531,52.746259364043645],[-127.38623181568119,52.746103452188116],[-127.38640711354932,52.74595846845724],[-127.38658713084858,52.745816226351025],[-127.38677088967681,52.74567449562684],[-127.3869565420372,52.7455344280045],[-127.38714312806026,52.745394349008365],[-127.38734759644281,52.74526190425496],[-127.38755491122289,52.745131667209186],[-127.3877115241904,52.744982974959534],[-127.38781464591223,52.744815860744964],[-127.38789056940284,52.74463954540632],[-127.38795815244617,52.74446331981578],[-127.38800526210922,52.7442856598117],[-127.38802726541306,52.74410605536885],[-127.3880316367936,52.74392610379664],[-127.38802949042297,52.74374566447709],[-127.38803107178884,52.743565736944085],[-127.38804567362212,52.743386785016256],[-127.38807687766204,52.74320482965775],[-127.38812929526641,52.74301926025554],[-127.3882409646066,52.742858204575434],[-127.3884496364314,52.74274140029053],[-127.38872226515073,52.742651860116055],[-127.38899209990244,52.742561796442544],[-127.38917651035734,52.74244079479732],[-127.3891740680168,52.74225139156896],[-127.38917651002257,52.742069776713144],[-127.38917055823471,52.74188657551766],[-127.38916745080022,52.74170502641235],[-127.3891811488505,52.74152720567454],[-127.38925654105994,52.74136321617595],[-127.389481534876,52.741235572208325],[-127.3897049056522,52.74111466347491],[-127.3899188777273,52.74099051204703],[-127.39008483182353,52.74084450289951],[-127.39022348008791,52.74068593159587],[-127.39034991859347,52.74052302137789],[-127.39047536686219,52.74035844587629],[-127.39060929508027,52.74019768823969],[-127.3907760875453,52.740048870248266],[-127.39096261875623,52.739908219944155],[-127.39108537925375,52.73974647335577],[-127.39116318945626,52.73957180950704],[-127.39121117871137,52.73939301606795],[-127.39123860253935,52.739209427205935],[-127.39126136374018,52.73902532874432],[-127.39129726782512,52.738845557796765],[-127.39136130424306,52.73867554086207],[-127.39148815160584,52.73852551013402],[-127.39172191459143,52.738411208068406],[-127.39197818663713,52.738304475448],[-127.39222874797105,52.73819333545498],[-127.39246906025579,52.73808063087493],[-127.39256635634597,52.737934877726296],[-127.3924982000392,52.73775073851578],[-127.3924273609346,52.737569428914355],[-127.39240677848578,52.73739313546206],[-127.3924781319487,52.73721966799518],[-127.39256803363041,52.737046535956885],[-127.3926532875389,52.73687290310087],[-127.39270972984635,52.73669737085081],[-127.39271412052115,52.73651909462123],[-127.39268505350515,52.736338418325374],[-127.39265876079742,52.73615770005683],[-127.3926761515709,52.735979834164056],[-127.39278848303407,52.73581148369558],[-127.39295716346054,52.73566488123995],[-127.39313803191845,52.73552205226765],[-127.39332829948599,52.735383038859425],[-127.39352708281245,52.73524897238481],[-127.39373251228939,52.7351198660768],[-127.39394833337676,52.73499679624324],[-127.39416984130499,52.73487703],[-127.39439322385044,52.73475835294137],[-127.3946241292762,52.734642392629105],[-127.39473811843477,52.734383226715266],[-127.39482433298325,52.73421126621263],[-127.39491987003724,52.73404030655395],[-127.39498652771434,52.73386577199057],[-127.39500568918888,52.73368564245122],[-127.39501553837552,52.7335039379323],[-127.39505709815842,52.733328016277],[-127.39520851997717,52.7331642460469],[-127.39547829105915,52.733131324162834],[-127.39577681004094,52.733126646800265],[-127.39608507634095,52.733136424336195],[-127.3963851003912,52.73314966204033],[-127.39667773867461,52.73319213068768],[-127.39696779118876,52.73321221125075],[-127.3972580510996,52.73318184768254],[-127.3975468966915,52.733136372461644],[-127.39783556189407,52.733085850093225],[-127.39812438776305,52.733039808727185],[-127.39841271803556,52.73300722348062],[-127.39870045754466,52.7330133114989],[-127.39898632122238,52.733075475705185],[-127.39927503286958,52.733111259322],[-127.39957171510294,52.73310715019475],[-127.39986784746169,52.73308624219277],[-127.40000092255809,52.7330712009566],[-127.4001598487906,52.73305248785569],[-127.40044773732764,52.73300645193192],[-127.40072670421047,52.73294314336476],[-127.40098447987175,52.73285543647818],[-127.40121396354755,52.732725463822696],[-127.40144506346704,52.73261677764145],[-127.40170834542684,52.7326125066654],[-127.4019975504018,52.73269142828853],[-127.40229063330125,52.732719305783995],[-127.40259127620845,52.73269440917525],[-127.4028559518757,52.732619501481736],[-127.40309064547982,52.73250740621695],[-127.4033175491356,52.73238362971601],[-127.40355139372834,52.73227377650921],[-127.40381277951435,52.73221180097863],[-127.4041174609782,52.73222551899984],[-127.40441641420111,52.73223426528269],[-127.40471448830695,52.73224470719911],[-127.40501055727005,52.7322501238165],[-127.40530322977517,52.732237080882996],[-127.40558721449973,52.73218547443935],[-127.40587215511918,52.732134976738465],[-127.40616541134222,52.732111280438126],[-127.40646078322875,52.73209596933306],[-127.40675626172514,52.732083454000836],[-127.40705172521395,52.732070938101444],[-127.4073482337194,52.7320617716415],[-127.40764400673467,52.732058217837356],[-127.40793993069938,52.73205970110118],[-127.4082359618977,52.73206398909759],[-127.408532052121,52.73207051746542],[-127.4088274627359,52.73208434368618],[-127.40912302090898,52.73210264207937],[-127.40941769346934,52.73209405740514],[-127.40971085497206,52.73206754657206],[-127.41000067341955,52.73202427048658],[-127.41028974113578,52.73198659832096],[-127.41058274310679,52.73198363539056],[-127.41087918062031,52.73200024187768],[-127.41117549262147,52.73201348638406],[-127.41147450112193,52.732023890880654],[-127.4117658251844,52.7319979619642],[-127.41194108965811,52.73185630009916],[-127.4120504899487,52.73168627913642],[-127.41209750411986,52.731509172665],[-127.4121146787406,52.731326812320475],[-127.41212271521177,52.73114905474257],[-127.41217821464897,52.73100378750066],[-127.41221498081089,52.730825118573826],[-127.4122387111616,52.73064492091541],[-127.41225038151347,52.73046487759585],[-127.41223987094253,52.7302867785663],[-127.41214147982454,52.7301158995552],[-127.4121222300452,52.72992614069171],[-127.412258508757,52.729783818140305],[-127.41249800850181,52.72967780595012],[-127.41276479291783,52.7295837942622],[-127.41303388940023,52.72950320506638],[-127.41329175235238,52.72941995296455],[-127.41348291719245,52.72928257121654],[-127.41362697064076,52.729123348309564],[-127.41372154237179,52.72895406921245],[-127.41380017502638,52.72877937780634],[-127.41392087031198,52.72861482282385],[-127.41400145198591,52.728443470454714],[-127.41404751618315,52.72826580920198],[-127.41408983464721,52.72808707220794],[-127.41412846313466,52.72790894466594],[-127.41417267209023,52.72773130568599],[-127.41425515710173,52.72756105094819],[-127.4144436147128,52.72742650679493],[-127.41473133883797,52.727377074184496],[-127.41500359921828,52.72730877203604],[-127.41523933300239,52.727201678392724],[-127.41546351440576,52.72708182879642],[-127.41568677877429,52.72696255477415],[-127.41592794157539,52.726851475319314],[-127.4161700559873,52.72674093981538],[-127.41637648139877,52.726617384320896],[-127.41650959066695,52.72646388532954],[-127.41656287308871,52.7262805307987],[-127.41656152688397,52.726100078774074],[-127.41646945794346,52.725924086702086],[-127.41646640650255,52.725748138946926],[-127.41657657790772,52.72557418459071],[-127.41680859011825,52.72546713251376],[-127.4170741900129,52.72539442216111],[-127.41734727580348,52.72532330646909],[-127.41762231098332,52.72525552033037],[-127.41789447896805,52.72518497042071],[-127.41815986721994,52.725105534576514],[-127.4184267964478,52.72501711207158],[-127.41868138361376,52.72491987105646],[-127.41888945756752,52.724790130227895],[-127.4189257019367,52.72462491544862],[-127.41891419343408,52.724445707171604],[-127.41889154238068,52.72426606891905],[-127.4188680926415,52.72406234494779],[-127.41910196362575,52.723955830478246],[-127.41930821452678,52.72382722279589],[-127.41951349290842,52.723697514554964],[-127.41973380606294,52.723573784272205],[-127.41996164531957,52.723453325074026],[-127.42017824803114,52.723329638890604],[-127.42036582684881,52.72319789286213],[-127.4203849099779,52.72301831347571],[-127.42054072836844,52.7228796707747],[-127.42076397148573,52.72276038656101],[-127.4209939179534,52.72264774611491],[-127.42122669264477,52.72253675674452],[-127.42144049485432,52.72241253708903],[-127.42162971502118,52.722274608330636],[-127.42180855878028,52.72213120058406],[-127.42200533739498,52.72199710712488],[-127.42221342794987,52.72186903654723],[-127.42242248886687,52.72174207471443],[-127.42262774750517,52.7216123518711],[-127.42283395802774,52.72148318202395],[-127.42304393473155,52.72135620787755],[-127.42325956112913,52.721231406521824],[-127.42350098871975,52.72112983059861],[-127.42376439815591,52.721048163607406],[-127.42403454501964,52.72097370459387],[-127.42430562497866,52.7208992246263],[-127.42457964537674,52.72082975690573],[-127.42487319090569,52.720817783237315],[-127.42516340274878,52.7207890265139],[-127.4254450791794,52.720726754083906],[-127.42569029958298,52.72062792518701],[-127.42592596980869,52.72052080956095],[-127.42615967298411,52.72041035460798],[-127.4263905269376,52.72029769201223],[-127.42661947367633,52.720183931243234],[-127.42684931614339,52.720069038160474],[-127.4270791762133,52.719954709336626],[-127.42731002528733,52.719842044894165],[-127.42754372118257,52.719731587129324],[-127.4277821736339,52.71962498965273],[-127.42802541664919,52.719522825937865],[-127.4282753222953,52.719425620137486],[-127.42852809342362,52.71933117667031],[-127.42878281089708,52.7192395157004],[-127.42903848416961,52.71914896342427],[-127.42929701927264,52.719060617503025],[-127.42955845366792,52.71897559839179],[-127.42982282888838,52.71889559144509],[-127.4300930262254,52.718823350334354],[-127.43037000331228,52.718760002190784],[-127.4306518458474,52.71870331055878],[-127.43093473464405,52.718649977214206],[-127.43121854188769,52.71859662298317],[-127.43150425853992,52.718544930594085],[-127.43179431941853,52.71851224022198],[-127.43208801565204,52.71850528610089],[-127.43238393687248,52.71850895736391],[-127.4326809838078,52.71851877474989],[-127.43297717165667,52.718530843761],[-127.43327329942979,52.718540670895834],[-127.43357021523471,52.71854655988972],[-127.43386634734907,52.71855695042479],[-127.43415751526614,52.718584770978744],[-127.43444284535451,52.7186322741585],[-127.43472561380557,52.71868654259684],[-127.43501191706913,52.71873515341252],[-127.43530161321637,52.71877476345529],[-127.43558868679145,52.718818879700976],[-127.43586608059859,52.71887825101388],[-127.43613473713422,52.71895398683858],[-127.4363972335186,52.719039321060585],[-127.43665256034876,52.719132024239016],[-127.43689996804096,52.71923716326713],[-127.43714814556036,52.719337799633706],[-127.43740210873047,52.71941763169212],[-127.43769076206509,52.71937037190089],[-127.43791967379562,52.71925658897364],[-127.4381628715265,52.719153839463395],[-127.43841561952448,52.719059383604545],[-127.43867222430919,52.718969354565516],[-127.43893367720148,52.7188854349934],[-127.43919977499617,52.718802022685495],[-127.43946873903666,52.71872137237449],[-127.43974081042327,52.71865020668257],[-127.44001617818785,52.71859413690615],[-127.44053390557815,52.718631485724266],[-127.4407351795581,52.71849561838382],[-127.44094986241748,52.71837248090767],[-127.44118928365212,52.718268085484794],[-127.44143913333751,52.71817029576299],[-127.44168997652947,52.71807472615925],[-127.44194557776096,52.71798302516743],[-127.442203140999,52.71789410625754],[-127.44245111735879,52.717796328401164],[-127.44268762650273,52.71768804686945],[-127.44292127093337,52.71757755826473],[-127.44315111246635,52.71746431818145],[-127.44337807020709,52.717348306344604],[-127.44359936712529,52.71722900102086],[-127.44381495450189,52.717105837890074],[-127.44402109840159,52.71697719507435],[-127.44422059427943,52.71684414114681],[-127.44441817868298,52.71670943350857],[-127.44461671907918,52.71657583465286],[-127.44482096654495,52.71644609278083],[-127.4450346549908,52.71632182974074],[-127.44525399389072,52.71619974738808],[-127.44547994412152,52.716081501785645],[-127.4457106899367,52.71596823625246],[-127.4459491100679,52.715862166057924],[-127.4462067510101,52.7157765998125],[-127.44650656742805,52.71573142176037],[-127.44675984479372,52.71565374577523],[-127.44692563940232,52.71551157983443],[-127.44705813527213,52.71534460850031],[-127.44721137506798,52.71518746008859],[-127.44739669726162,52.7150472939218],[-127.44759517876521,52.71491201345992],[-127.44780411126838,52.71478444102216],[-127.44802924565745,52.71467012807053],[-127.44829443688567,52.7145883824582],[-127.44856436735468,52.71450994041895],[-127.44882294793057,52.714424912536934],[-127.44902618112509,52.71429348951463],[-127.44917297223192,52.714138103988084],[-127.44924671581025,52.71396120357838],[-127.4493917082394,52.713807516909405],[-127.44960338401917,52.713679351089354],[-127.44983977638039,52.71356881387321],[-127.45010625638893,52.71349825742662],[-127.4504050391104,52.71347830754718],[-127.4506993088755,52.71346176667385],[-127.4509244242515,52.71334688315374],[-127.45117141615394,52.71324854217423],[-127.45143846923779,52.71316788704726],[-127.45171541179477,52.713105043755995],[-127.45200234770009,52.71306393873017],[-127.45229531437569,52.713036200533246],[-127.4525892572058,52.713010135385666],[-127.45288010768668,52.71297514032506],[-127.45316984810546,52.71293455359793],[-127.4534497688872,52.712877838852236],[-127.45371893094274,52.71280443388966],[-127.45398412298654,52.712723795945635],[-127.45424930997079,52.71264260145909],[-127.45451837817308,52.712566953890544],[-127.45479527422376,52.712502982819785],[-127.45508113141217,52.712457399774344],[-127.45537421064827,52.71243358017594],[-127.45567091584547,52.712406907915636],[-127.4559625413459,52.71236741169039],[-127.45614623612714,52.71223509775245],[-127.45632110096652,52.712088321050594],[-127.45656816870743,52.71199277426316],[-127.45683516123724,52.7119104213896],[-127.45709932733652,52.71182699108723],[-127.45736253904744,52.711743007094654],[-127.45764653469877,52.71169743186977],[-127.45794038872144,52.71166911232667],[-127.45823332305977,52.71164080349517],[-127.45852920173652,52.71161750598628],[-127.45881911860077,52.711582507594095],[-127.4590816161203,52.711504689279934],[-127.4593265152237,52.71140019597388],[-127.45957626822972,52.71130235833307],[-127.45981554728317,52.71119624811827],[-127.46001508209993,52.71106653714586],[-127.46018522637641,52.710917571306204],[-127.46038179906031,52.71078284785244],[-127.46058494121756,52.710650283980705],[-127.46079186535206,52.71051991443625],[-127.46100641192656,52.71039561010734],[-127.4612305876735,52.71028183866604],[-127.46149303486897,52.71020290337203],[-127.4617804164031,52.710148308043834],[-127.46206219918048,52.71009266993538],[-127.46234697910027,52.71004315443285],[-127.46263275421492,52.709995867691525],[-127.462919543565,52.70995136545716],[-127.46320736233652,52.70990965650112],[-127.46349823620835,52.709875755279874],[-127.4637480284244,52.709779593827484],[-127.46397870704259,52.7096663006032],[-127.46420554764248,52.709549683085534],[-127.46444104141696,52.70944193342803],[-127.46470135546039,52.70935516182965],[-127.46498171131651,52.709284962061744],[-127.46525740623032,52.70921425498282],[-127.46550277567545,52.709124305739394],[-127.46566926779988,52.70897818397603],[-127.4657530964386,52.70880002439234],[-127.4657868899396,52.708623047166014],[-127.46579457957617,52.70844135694169],[-127.4658032460901,52.70826134037253],[-127.46580356514154,52.70808141932646],[-127.46581689112402,52.70790190036408],[-127.4658403833894,52.70772169809549],[-127.46586662855529,52.70754089636908],[-127.46590780995277,52.70736270548302],[-127.46597696671579,52.70718977797234],[-127.46608437056284,52.707023653127784],[-127.46621884442861,52.70686279388347],[-127.46636075364968,52.706702962274534],[-127.4664886741348,52.70654049883314],[-127.46658856578338,52.70637166961496],[-127.46666883273424,52.70619803738027],[-127.46673139034638,52.706021820078014],[-127.46677815005391,52.70584468866937],[-127.4668044623835,52.705665562544105],[-127.46681868352901,52.70548547590482],[-127.4668282639872,52.70530543842074],[-127.46683787854502,52.70512596544616],[-127.46684283375278,52.70494599483806],[-127.46684687399646,52.70476659166518],[-127.46685738814159,52.70458654238852],[-127.46687814037267,52.70440749471939],[-127.46690164530085,52.7042278475681],[-127.46691865682305,52.70404828175805],[-127.46691900533494,52.70386892473087],[-127.46690359534384,52.703689765155],[-127.46688075388099,52.70351013371989],[-127.46686161902433,52.703330464781615],[-127.46685452140701,52.70315063601636],[-127.46685670417116,52.70297069990556],[-127.46686815629143,52.70279120361141],[-127.46688978799675,52.70261101476835],[-127.46690858995966,52.702429184409176],[-127.4669338698743,52.70224727284233],[-127.4669769186228,52.702070187346635],[-127.4670498982337,52.701900564414544],[-127.46722577554839,52.70175880550734],[-127.46742870002402,52.70162174705947],[-127.46757725290135,52.70146686966904],[-127.46771640554873,52.701308191064996],[-127.46785085532728,52.70114732932645],[-127.46798437020782,52.700986479128105],[-127.46812071389311,52.700827279186676],[-127.46825799013737,52.7006680583913],[-127.468396199545,52.70050883466627],[-127.46853347374342,52.70034961351362],[-127.46867166627501,52.700190389615145],[-127.46883290287647,52.700000045530494],[-127.46891847768117,52.69990088335127],[-127.46893468374549,52.699752157532565],[-127.46895818619286,52.69970758025751],[-127.46896212981451,52.699660450528164],[-127.46933478026533,52.69944615400001],[-127.46953690705018,52.69931358530912],[-127.46973719453365,52.699181039337255],[-127.46993557460856,52.69904739599062],[-127.47013020497458,52.69891212242242],[-127.47031918343869,52.69877466861502],[-127.47047515157949,52.69864716183184],[-127.47054276915152,52.69856504725062],[-127.47057131762938,52.698452027661965],[-127.47076165039955,52.69819181543487],[-127.47078607402197,52.69801271992231],[-127.47074476815952,52.69783556233004],[-127.47066739823114,52.69766054378506],[-127.47055788640486,52.697494340704516],[-127.47039783931548,52.69734109399001],[-127.47030213628317,52.697171910292795],[-127.47023399934132,52.69699621943735],[-127.47017972735416,52.69681922444043],[-127.470143887388,52.696639199962455],[-127.47016651325904,52.69646124795502],[-127.47023832537732,52.696285475977355],[-127.47031569512362,52.69610963410928],[-127.47035597111557,52.695933137213736],[-127.47033784007428,52.6957562530926],[-127.47028542194596,52.69557923472066],[-127.4702200162029,52.695401823463364],[-127.47016478918141,52.695223728297755],[-127.47013827164649,52.69504526349537],[-127.47013396747288,52.6948659636421],[-127.4701435319214,52.694685933559704],[-127.47015866881269,52.69450582448652],[-127.47017287214278,52.694325736082874],[-127.47019912928243,52.69414605223],[-127.47026635166041,52.693971458529354],[-127.47038000919281,52.69380020025496],[-127.47041869952172,52.69363156969514],[-127.47026952887309,52.69347034816307],[-127.4700839844518,52.69332975172057],[-127.46990928335572,52.693180616053716],[-127.4697593939076,52.69302556370882],[-127.46963333946667,52.69286293007982],[-127.46952103824209,52.69269619575729],[-127.46943268247574,52.692524676805206],[-127.46935997061493,52.69235015446552],[-127.4693325439016,52.692172265579],[-127.46932631391616,52.69199074764463],[-127.46925368061223,52.69181847510217],[-127.46909277899321,52.69166635803241],[-127.46886376148176,52.69155433843433],[-127.46862468317661,52.69144636354407],[-127.46841281760355,52.69132123225448],[-127.46820546189863,52.69119268111269],[-127.46797583097094,52.691035819960575],[-127.46777758264372,52.69090211396959],[-127.46758936300009,52.690763789052994],[-127.46742028151299,52.69061626510729],[-127.46727680504493,52.6904583222285],[-127.4671562866611,52.690294495484316],[-127.46706603962565,52.69012187739451],[-127.46702475676649,52.689944717543476],[-127.46700102265457,52.68976566070479],[-127.46698559835284,52.68958594367122],[-127.46697294514017,52.689406182909146],[-127.46695658292434,52.689225912622305],[-127.46692633952006,52.689046381291206],[-127.46691742996161,52.6888676944984],[-127.46696046079703,52.68869004249586],[-127.46702299193811,52.68851383191602],[-127.46708366985266,52.68833763554192],[-127.4671415615699,52.68816148300977],[-127.46720038610792,52.6879853097581],[-127.4672592104691,52.687809145419784],[-127.46712476264774,52.687454919808076],[-127.46706589242413,52.68727798915652],[-127.46704038827556,52.687101752143626],[-127.46705836438616,52.68692329301394],[-127.46711331027471,52.68674212840098],[-127.46720276154818,52.68656725688574],[-127.46732884347338,52.6864070634763],[-127.46751315236551,52.68626967101195],[-127.4677396292512,52.68614633085042],[-127.46796331442388,52.68602246027963],[-127.468136428997,52.68588296525336],[-127.46820280946679,52.685711189170874],[-127.4682270206517,52.68552536060967],[-127.46828673677341,52.685348619207126],[-127.4683529621122,52.685172361030496],[-127.46843134897422,52.68499930410327],[-127.46853588279701,52.68483265371639],[-127.46868337785023,52.68467554371838],[-127.46885436363875,52.68452823630662],[-127.46903651915537,52.684382465348776],[-127.46925572624811,52.68426368809998],[-127.46950938303993,52.684176429885554],[-127.4697772691864,52.68409908109178],[-127.47005281342919,52.68402892624308],[-127.4703303625773,52.68396322045063],[-127.47060802663002,52.68390088442138],[-127.47088869141025,52.6838452268542],[-127.47117322898805,52.68379401275872],[-127.47145784717593,52.68374559489074],[-127.47174341733185,52.68369772034815],[-127.47203171493129,52.68364813381212],[-127.47232185520978,52.68362542668061],[-127.47261050669955,52.683667197903766],[-127.47289313083972,52.68372248698522],[-127.47317222062648,52.68378231274496],[-127.47345570264912,52.68383534773758],[-127.47374508253064,52.6838715021572],[-127.47403864542513,52.68386723921971],[-127.47433447792821,52.683848383280655],[-127.47462935721086,52.683828973633986],[-127.47492442456992,52.68381460076007],[-127.4752194963694,52.683800792053596],[-127.47551448642295,52.683784185684495],[-127.47580737720652,52.683760870245514],[-127.47609397283,52.68371577900727],[-127.47638343547665,52.68367345779692],[-127.47667480755447,52.683632788739054],[-127.47696369197398,52.68362745651145],[-127.47724899151707,52.68367934741872],[-127.47753845056505,52.683717724467364],[-127.47783604528959,52.683722933825905],[-127.47813270657808,52.683728154220766],[-127.47841311867649,52.68377281324648],[-127.47867825013915,52.68385746375552],[-127.47896613037607,52.68390370406535],[-127.47925828607448,52.68391234149536],[-127.47954170619695,52.683856072196534],[-127.4798066703371,52.6837753742011],[-127.48009703285292,52.68370556404161],[-127.48033293141778,52.6837485396288],[-127.48049779928793,52.683907873850494],[-127.48065961143556,52.68405939969104],[-127.4807508387168,52.68423256110321],[-127.48088371837724,52.68437772693251],[-127.48116332715811,52.684452090922974],[-127.48144241843337,52.68451189711636],[-127.48173100693299,52.684551395887425],[-127.4820245712466,52.684574025288846],[-127.48232063055195,52.684588210561],[-127.48261603491962,52.68458390283054],[-127.4829106564938,52.68458353216784],[-127.48320416327627,52.6846044734043],[-127.48350050150374,52.684600160571506],[-127.48379847819287,52.68458965636661],[-127.48409553602833,52.68457916305569],[-127.4843918736801,52.68457483900175],[-127.48468495375798,52.68458345122459],[-127.48497405657078,52.684611169763],[-127.48525825932877,52.684657450360454],[-127.48554094520293,52.684713829338754],[-127.48582370511735,52.68477189264768],[-127.4861080894882,52.68482377377003],[-127.486396723289,52.6848643815077],[-127.4866861358626,52.68490050371165],[-127.48697640911512,52.684934928320686],[-127.48726662429921,52.684967667006106],[-127.48755773933469,52.68499983753289],[-127.48784974940678,52.685030874983745],[-127.48814082186983,52.68506136763172],[-127.48843283278407,52.68509240362634],[-127.48872392990874,52.68512400652739],[-127.48901508155836,52.6851567379588],[-127.48930631611213,52.685192265570926],[-127.4895976632634,52.6852305889859],[-127.48988809704755,52.68526948828311],[-127.49017939174259,52.68530669892091],[-127.49047062344226,52.68534165872162],[-127.49076166540384,52.68537158031168],[-127.49105344621793,52.685395886886184],[-127.49134495417593,52.685412349380854],[-127.49163879942525,52.68541589461173],[-127.49193484944354,52.68540315235051],[-127.49223131035937,52.68537583140196],[-127.49252460933819,52.685337340262606],[-127.4928102056094,52.685290534842714],[-127.49308386751508,52.68522034945631],[-127.49334426515261,52.685115017440346],[-127.49360010165537,52.68501198499866],[-127.4938610096348,52.68494812143793],[-127.49414171467407,52.68494733523263],[-127.49444344027255,52.68499112795045],[-127.49473159988206,52.68507095551643],[-127.49496889527198,52.68518002168212],[-127.49514865541225,52.685312807107145],[-127.49530034465691,52.68546444263656],[-127.49543575587248,52.68562749578471],[-127.4955648734214,52.68579623410126],[-127.49569669954437,52.68596269569168],[-127.49584305129474,52.68612055962268],[-127.49602116154442,52.68625896968549],[-127.49628816094737,52.68634299193809],[-127.49654433652704,52.68643499886492],[-127.4967234276942,52.686575072311406],[-127.49687805474613,52.68673115212479],[-127.49704816086039,52.68687918685593],[-127.49722824772464,52.68702092377531],[-127.4974120062001,52.68716205742934],[-127.49759578070555,52.68730319059169],[-127.49777138998364,52.68744947686174],[-127.49794335439543,52.68759748650961],[-127.49812528478651,52.68773919845665],[-127.49833259593524,52.687864335457036],[-127.49857247158113,52.687967200497134],[-127.49883137394453,52.68805748163373],[-127.49908846456641,52.688148915360706],[-127.49933563048303,52.688247757562486],[-127.49958461532941,52.688346010968225],[-127.49984069221945,52.6884346491328],[-127.50010850904037,52.68851473340291],[-127.50038671466586,52.68857394130857],[-127.50067965740043,52.688604370170324],[-127.5009804921724,52.68862181032063],[-127.50127772077263,52.688642102892885],[-127.50156079819102,52.688681623946145],[-127.50182844274782,52.688756657657045],[-127.50208067452597,52.68886775988054],[-127.5022890985757,52.688997924590815],[-127.50236111294542,52.689148887969175],[-127.50228893884409,52.68933646172082],[-127.50227855761518,52.68951595129522],[-127.50228763905396,52.68969574699389],[-127.502303211875,52.68987546830306],[-127.5023243418912,52.69005510927899],[-127.502352862452,52.6902340993461],[-127.502384208694,52.69041417408652],[-127.50241012071187,52.69059824646781],[-127.50245995304745,52.69077696283853],[-127.50256848055345,52.690938666917276],[-127.5027220291789,52.691089147990496],[-127.50289488031761,52.691234897066494],[-127.5030851667729,52.691375938045425],[-127.50328729174299,52.69151122176501],[-127.50349849869744,52.691640783580304],[-127.50371316103879,52.69176357476657],[-127.5039395784591,52.69187781166495],[-127.50417593742827,52.691984629526104],[-127.50442048865621,52.69208741370521],[-127.50466775355935,52.69218848551111],[-127.5049140812261,52.69228901285107],[-127.50515682279989,52.692392939762414],[-127.50527247305999,52.69265096258992],[-127.50534274221201,52.692831091780626],[-127.5054185060447,52.693008917251014],[-127.5055125054724,52.69317865227867],[-127.50563481473468,52.69333625725588],[-127.50580005782611,52.69347593906449],[-127.50601369881963,52.69359537629849],[-127.50626113389107,52.69370092650567],[-127.5065221962191,52.693798453953605],[-127.5067795150513,52.693894908050375],[-127.50702852519505,52.6939920245852],[-127.50728020953369,52.69408630820334],[-127.50753548187598,52.69417718214549],[-127.5077934479191,52.69426577888492],[-127.5080541224598,52.69435209821341],[-127.50831471909342,52.694436176023686],[-127.50857714981484,52.69451967361693],[-127.50883954175097,52.694602041187416],[-127.50910376776089,52.694683828524916],[-127.50936705626572,52.69476507136157],[-127.50963216369635,52.69484572518055],[-127.50989724742617,52.69492525773805],[-127.51016325106491,52.695004777833695],[-127.51042923576613,52.69508373260614],[-127.51069520183552,52.69516213101926],[-127.51096206819149,52.69523996120976],[-127.51122893040285,52.69531722588226],[-127.51149581831918,52.695395610598204],[-127.51176364096796,52.69547398264013],[-127.51203148422762,52.69555290981543],[-127.51229932879151,52.69563184533725],[-127.51256713443478,52.695709650814436],[-127.51283583553128,52.695786332104845],[-127.51310541660938,52.69586187146672],[-127.51337491972984,52.695935178240696],[-127.51364617727556,52.69600565478934],[-127.5139173564599,52.69607388977974],[-127.51419025034605,52.69613817406671],[-127.51447984902285,52.696150685643744],[-127.51478116775719,52.69612772959106],[-127.515148833725,52.69606804262424],[-127.5154364088742,52.69602339927006],[-127.51572306479761,52.69597877607273],[-127.51600968530221,52.69593358765093],[-127.51629528687846,52.69588560479322],[-127.51657893602977,52.69583484857037],[-127.51685965405436,52.695779645730504],[-127.51713637316212,52.695716647203774],[-127.51740816940506,52.69564530899],[-127.51767793313014,52.69556894760443],[-127.51794580347462,52.6954914891601],[-127.5182156247213,52.69541680273905],[-127.51848938918044,52.69534879935371],[-127.51876719586807,52.69529026668722],[-127.51905193093573,52.69524397418273],[-127.51934160780553,52.69520658464851],[-127.51963331567339,52.69517420793764],[-127.51992600185889,52.69514350373964],[-127.52021772890977,52.69511169028369],[-127.5205074038664,52.69507429786116],[-127.52079402808675,52.69502909750432],[-127.52107959851912,52.69498054719526],[-127.52136508866167,52.69492975526492],[-127.52164862605747,52.69487619005229],[-127.5219301705043,52.69481872214631],[-127.52220784951912,52.694756819908754],[-127.52248162318236,52.694689362905066],[-127.52274864508202,52.69461470224224],[-127.5230077323025,52.6945250154656],[-127.52325514970512,52.69442035123717],[-127.52348558770271,52.69430693068381],[-127.52368124512073,52.69417995470307],[-127.52376199723714,52.69400123239694],[-127.52355868083366,52.69373091611875],[-127.52344295725999,52.693551944678845],[-127.52346209340476,52.69338635536264],[-127.52359834597698,52.69323100717567],[-127.52377744087704,52.69308126189597],[-127.52398098223209,52.692941851774464],[-127.52419342472369,52.692818019083944],[-127.52442954910445,52.692708450264725],[-127.52468468201009,52.69261265005652],[-127.52494863630692,52.69253017714174],[-127.52521954015873,52.692460508821675],[-127.52550011043965,52.692402488654544],[-127.52578655176528,52.692352794142785],[-127.5260750298587,52.692308677273374],[-127.52636591387758,52.692279657088804],[-127.52666387366389,52.692267367582474],[-127.52694975855967,52.69222832230464],[-127.52722841231942,52.692168636982714],[-127.52750307537057,52.69210060018254],[-127.52777676356723,52.69203144549851],[-127.52805336239794,52.69196618008154],[-127.52832900153258,52.69189980554646],[-127.52860768621568,52.691840681446635],[-127.52889639804317,52.69180328037672],[-127.52919136213207,52.691784853619936],[-127.52948647126954,52.69177090815784],[-127.52978165493232,52.69175863796752],[-127.53007676369685,52.69174469101678],[-127.53037188708925,52.69173074312806],[-127.53066693553723,52.691715118479564],[-127.53096092452016,52.691695579013576],[-127.53125267983143,52.69166541419092],[-127.5315403692705,52.69162522194784],[-127.53182693854545,52.691579429757866],[-127.53211357290658,52.69153588694343],[-127.53240532631763,52.69150571924426],[-127.53269195419952,52.691461610105065],[-127.53297450057364,52.691407464848965],[-127.53325508816803,52.69134998160552],[-127.53352782893924,52.691280834635236],[-127.53379759646559,52.691206112085],[-127.53407618878128,52.6911447340166],[-127.53432670681723,52.69105008480081],[-127.53456666654874,52.69094549357108],[-127.53480751826518,52.690839760173006],[-127.53504826851473,52.69073122960349],[-127.53530571534654,52.69064882714359],[-127.53559548743033,52.69061531439805],[-127.53589209736934,52.69059180903795],[-127.53587517035545,52.690791566946594],[-127.53585633937499,52.690963881143716],[-127.53585751502932,52.69115163552967],[-127.53592005821378,52.69131951872732],[-127.53599439519722,52.69150574784699],[-127.53608004308586,52.69167165067774],[-127.5362242797789,52.691843510261094],[-127.53636514308853,52.691998599151354],[-127.5365537109078,52.69214017466063],[-127.5367458238412,52.69227721040251],[-127.53694341550016,52.692411940874486],[-127.53714733848113,52.6925420949425],[-127.53735759855768,52.69266824644366],[-127.53757604828503,52.692790371005124],[-127.53780260138574,52.69290565379815],[-127.53803389533623,52.69302368080368],[-127.53826704860627,52.69314224789725],[-127.53850899733817,52.69324723810274],[-127.5387628736601,52.693323490320175],[-127.53904946728635,52.6933298105809],[-127.53935497411183,52.69329552585185],[-127.53965147417007,52.69326808473236],[-127.53994693954658,52.693237858488146],[-127.54023194757016,52.693252043621335],[-127.54050440792801,52.69332916850251],[-127.54076693461725,52.69341370547239],[-127.54102229432334,52.69350507112507],[-127.54126867422666,52.693604392432945],[-127.5415069736002,52.693711110565296],[-127.54173987257938,52.693821827302415],[-127.54196375709013,52.69393994428664],[-127.5421822005769,52.694060930532025],[-127.54239250329361,52.694187637567865],[-127.54257841511841,52.69433203653729],[-127.54275707367563,52.69448044979848],[-127.54296860664132,52.69458975981583],[-127.54327439220066,52.694588534887046],[-127.54356948600511,52.69459921605467],[-127.54386572095419,52.694616042371855],[-127.5441520476193,52.694666072279496],[-127.54439107165186,52.69476661412943],[-127.54452673963961,52.6949307298611],[-127.54454059826497,52.69510933991382],[-127.54433856754683,52.6952381215006],[-127.5441741692873,52.6953820910373],[-127.54417499740154,52.695559195989404],[-127.54441593962854,52.69566138948147],[-127.5447066355677,52.69570407851199],[-127.54497898344945,52.695777831686236],[-127.54520907543784,52.695887448732464],[-127.5454094764547,52.69602156308556],[-127.54560709226745,52.69615571388149],[-127.54580106476344,52.69629159843158],[-127.54598237285387,52.696436052865685],[-127.54616091575491,52.696581099560426],[-127.54638272605006,52.69669195369742],[-127.54666394187976,52.696754375990615],[-127.5469415689657,52.69681964303219],[-127.54721565902608,52.69689000510511],[-127.54749402466955,52.69695022113403],[-127.54778662762254,52.69696821571344],[-127.5480786208965,52.6969951765549],[-127.54836972161371,52.69702327843506],[-127.54866646308767,52.69702775526445],[-127.5489615954844,52.69703898752776],[-127.54925784414137,52.69705524423115],[-127.54955261151132,52.697056381987686],[-127.54984115780657,52.69701389184295],[-127.55008312245644,52.69691316158996],[-127.55030864052918,52.696793591877444],[-127.55053234520943,52.69667516671585],[-127.55074941451049,52.69655290107702],[-127.55095418366287,52.69642351606805],[-127.55113814570123,52.69628264054406],[-127.55130702086576,52.69613467376634],[-127.55146274313677,52.695981832139246],[-127.55161752522142,52.69582844672854],[-127.55177980378205,52.69567776864377],[-127.5519439483652,52.695527056591324],[-127.55209406786653,52.69537317627587],[-127.55220389955957,52.695207490218635],[-127.55227817958003,52.695032195631875],[-127.5523655342171,52.69486008154666],[-127.55245569498982,52.69468849512225],[-127.55256271168851,52.69452173392858],[-127.55271469821673,52.69436838387932],[-127.55288447361308,52.694219837538775],[-127.5530289255521,52.694063224024234],[-127.55316773733684,52.69390444317203],[-127.55330652792665,52.6937451063942],[-127.5535539894819,52.69356694703658],[-127.55379774317709,52.6934656197669],[-127.55405490580544,52.69337588880448],[-127.55431882871434,52.693293914413424],[-127.55458568480776,52.69321638441318],[-127.55484866666082,52.69313386528067],[-127.5551077644258,52.69304690421538],[-127.55537467308076,52.69297049265778],[-127.5556611706408,52.69292353086564],[-127.55594619876834,52.69286145001479],[-127.55620547039923,52.692778968111476],[-127.55642105889405,52.69266792974394],[-127.5565504888878,52.69250646231019],[-127.5566609447858,52.69233292513496],[-127.55679690483947,52.69217249149829],[-127.55699613851243,52.69204485462792],[-127.55724445310919,52.69194178216403],[-127.55750241613207,52.69184922569727],[-127.55776534859815,52.69176613542487],[-127.55803503641651,52.691690245551584],[-127.55830282967256,52.69161325030591],[-127.55856099271082,52.69152630270591],[-127.55880571795217,52.69142663759147],[-127.55904466002276,52.69132087903394],[-127.55927977385494,52.69121181695754],[-127.5595129520587,52.69110052922168],[-127.55974612937695,52.69098924997647],[-127.559981198447,52.69087905705164],[-127.56021919548567,52.690772752561585],[-127.56046289724341,52.690670855476505],[-127.56071233339382,52.690573365366404],[-127.56096655552312,52.69048029484703],[-127.56122466546147,52.690392220853674],[-127.561487602027,52.690309677881466],[-127.5617592900031,52.69023823643867],[-127.56204365877505,52.69018399604749],[-127.562331513447,52.690149321376055],[-127.56262857713166,52.69016385585506],[-127.56320975805299,52.69019364255005],[-127.56349398559264,52.6902374922391],[-127.56378736571658,52.690252629019476],[-127.56407342023203,52.69029532293287],[-127.56436379209897,52.69032955544092],[-127.56464565996902,52.690384643877174],[-127.56490543017901,52.690469164122284],[-127.56515457279731,52.690566721899806],[-127.56542535755322,52.69064829567955],[-127.56566717453693,52.69074819237539],[-127.5658491991013,52.69088588158556],[-127.56601042072228,52.69103730087495],[-127.56616531086841,52.69119273265382],[-127.56633021905974,52.69134353718026],[-127.56652146971234,52.691479980865715],[-127.56673189310966,52.69160832057623],[-127.56692678401636,52.69174247287722],[-127.56709992348429,52.69189036810393],[-127.56724841151829,52.69204812617934],[-127.56734071382252,52.69221503957272],[-127.56736303670745,52.692394656139825],[-127.56737248925164,52.69257669602136],[-127.56762260101449,52.692852474154726],[-127.56781367217215,52.69298331315557],[-127.56807366961051,52.69307342845432],[-127.56831562961409,52.69317668085413],[-127.56851877963787,52.693308477849286],[-127.56870741846866,52.69344888097021],[-127.5688576265226,52.69360268596164],[-127.56892146239882,52.69377670564553],[-127.56895219856018,52.693957895008786],[-127.56894504100413,52.69411660745524],[-127.56874742986719,52.694262744001946],[-127.56849342815482,52.69436199811595],[-127.56823626364275,52.69445064009469],[-127.56797429495246,52.6945348618718],[-127.56824657268011,52.69460575536874],[-127.5685170959464,52.694678922714104],[-127.56878953973705,52.6947542967225],[-127.56902681054369,52.694855933532544],[-127.56918991098847,52.69500732319742],[-127.569331047711,52.69516628913933],[-127.56947218581024,52.69532526385746],[-127.56960416422162,52.695487159251485],[-127.56971588759482,52.6956526891465],[-127.56980556452257,52.695823554633414],[-127.56988054434399,52.695997989136806],[-127.56994263783315,52.6961748294604],[-127.5699927174491,52.69635239587816],[-127.57002518940672,52.696530198460536],[-127.57002156749243,52.69670960619984],[-127.57000224596071,52.69689034551226],[-127.56999124855484,52.69707041712308],[-127.56997198821092,52.69725283256902],[-127.56995087529103,52.6974352818051],[-127.569938964127,52.69761592160964],[-127.56994916265126,52.69779290184009],[-127.57001276262982,52.697960197780894],[-127.57019516065067,52.69810684309835],[-127.57036660179759,52.69825755413635],[-127.57053171677559,52.69841284275316],[-127.57069962511746,52.69856864966339],[-127.57085276825684,52.69872577549119],[-127.5709707766939,52.698885614685835],[-127.57102405514392,52.699049120603206],[-127.57094609848728,52.699223364861766],[-127.57081438264478,52.69939720056434],[-127.57067287296233,52.69955715958515],[-127.57051260198361,52.69971064418476],[-127.57044197120541,52.699882547703965],[-127.57040735718961,52.70000015133338],[-127.57038925753429,52.70006261372507],[-127.5703459103346,52.70024535202883],[-127.57031928003028,52.70042899597781],[-127.5703166132584,52.70060894646352],[-127.5703452195852,52.70078231640087],[-127.57043368256811,52.700944794325665],[-127.57059402442776,52.701096218800124],[-127.57078297150126,52.701243896213164],[-127.57095538777955,52.70139572313951],[-127.57107368595308,52.701562840117326],[-127.57115450695748,52.70174447689133],[-127.5712516144534,52.70191525004607],[-127.57141869566317,52.70204808207799],[-127.5716711122607,52.70213157446644],[-127.57196349761587,52.70219322177053],[-127.57224417667024,52.70226400248756],[-127.57250588132823,52.70234792435934],[-127.5727658220025,52.70243466735055],[-127.57302128304025,52.702525397925896],[-127.57326774822523,52.70262353978854],[-127.57348817744918,52.7027444419836],[-127.57372658757099,52.7028505381137],[-127.57397938392357,52.702944100452754],[-127.57423483013241,52.70303427261211],[-127.57449210962713,52.70312385458454],[-127.57474847674098,52.70321400428656],[-127.57500127780352,52.70330757335954],[-127.57525050332892,52.70340510899795],[-127.57550530381398,52.70350256908013],[-127.5757501745026,52.70360744424576],[-127.5759623319027,52.703730139184614],[-127.57613815249309,52.70387294484181],[-127.57630941649563,52.704018044610585],[-127.57647797160291,52.70416486658272],[-127.57664473691247,52.704313398390276],[-127.57680783824887,52.70446309133824],[-127.5769691292948,52.70461393840536],[-127.57712863019354,52.704766486371],[-127.57728538053297,52.704919627191586],[-127.57744121886273,52.70507334507059],[-127.57759431259197,52.70522822071984],[-127.57774648830134,52.705383108540595],[-127.5778977668017,52.70553857323503],[-127.57804717815237,52.70569405393421],[-127.57819475264382,52.70584956817261],[-127.57834326784473,52.70600562555115],[-127.57849180462676,52.70616223845983],[-127.57863945018491,52.706319993154764],[-127.57878527903162,52.70647832817332],[-127.5789265100494,52.70663784601124],[-127.57906316370439,52.70679910241941],[-127.57919244146255,52.70696102314174],[-127.57931343578055,52.70712474143472],[-127.57942520623793,52.707289696063235],[-127.57952592074278,52.70745648571797],[-127.57960727383146,52.70762634348041],[-127.57965824340222,52.707801651123766],[-127.57968620050718,52.707981188230384],[-127.57970031364616,52.708162598085224],[-127.57970797462792,52.7083452159698],[-127.57971748320064,52.70852725289118],[-127.5797343068654,52.70870694013736],[-127.57974835856938,52.70888667373337],[-127.57975778437746,52.70906646076054],[-127.57976534252354,52.70924628193598],[-127.5797719606719,52.70942555079598],[-127.57978230591563,52.70960532535225],[-127.57980566582827,52.709786054224736],[-127.57982435846156,52.709965716097805],[-127.57981332198197,52.71014410211555],[-127.57975303595677,52.71031923368653],[-127.57967044762671,52.71049298015099],[-127.57960274696325,52.710668202662816],[-127.5795490565878,52.71084604304194],[-127.57949632637241,52.711024991402965],[-127.57945656903384,52.711203764702844],[-127.57943995017247,52.71138166981105],[-127.5794650385518,52.71155900328366],[-127.57953366785996,52.71173519332115],[-127.57961523592239,52.71191065273182],[-127.57967922557629,52.712086905254516],[-127.57969410868445,52.71226382029335],[-127.5796682026286,52.7124412856416],[-127.57961823760117,52.7126196315614],[-127.57955896981449,52.71279754692639],[-127.57950434246816,52.7129753996325],[-127.57945340098482,52.71315264655525],[-127.57939873138886,52.71332937874218],[-127.57934218706689,52.71350557118776],[-127.57928566312225,52.71368232828057],[-127.57923286644542,52.713859600022936],[-127.57918100314116,52.71403685015778],[-127.57912725060764,52.714213569714126],[-127.57906980551925,52.714390339017214],[-127.57900580351543,52.714565519695974],[-127.57893339070746,52.71473912777103],[-127.57884047969328,52.71490964922139],[-127.57872887325509,52.715076494713664],[-127.57861353275334,52.71524227839602],[-127.57849821753517,52.71540917360892],[-127.57836707156737,52.71557404907477],[-127.57823777778658,52.71573889042902],[-127.57812986823689,52.715905129360394],[-127.57806476063253,52.716075840233806],[-127.5780712487359,52.71625174709003],[-127.57812424115474,52.7164315111071],[-127.57817727534758,52.71661239550396],[-127.57819688349865,52.716792044421936],[-127.57819895236283,52.71697361566818],[-127.57819177979758,52.71715643242886],[-127.57818183418905,52.717339286539946],[-127.5781718884955,52.71752214062767],[-127.57816746222768,52.71770379932206],[-127.57817409582015,52.717883631947984],[-127.57819549633865,52.7180615795762],[-127.57823624363772,52.71823590348754],[-127.57830280345287,52.7184065165191],[-127.5783924383458,52.71857401153677],[-127.57850144158257,52.718738447426205],[-127.57862798621169,52.718900969747075],[-127.57876740397371,52.719060511434705],[-127.57891790349645,52.719218782554485],[-127.57907482241865,52.71937528096124],[-127.57923446856789,52.719530065390686],[-127.57939594905424,52.71968426885553],[-127.5795536815955,52.71983739270344],[-127.57971135337286,52.719988840171325],[-127.57987635838472,52.72013794653203],[-127.58004684295659,52.720284736766786],[-127.58022282797573,52.72042977554486],[-127.58040062620245,52.720573659642234],[-127.58057933937896,52.7207169751167],[-127.58075899407781,52.720860842585836],[-127.58102392950055,52.721079220139416],[-127.58175814213739,52.721273323880666],[-127.58350517684023,52.72152154718082],[-127.58419666530192,52.72198861183208],[-127.5849329409051,52.72208738469133],[-127.58534275645184,52.72261094052856],[-127.58585983471227,52.72307531645117],[-127.58669903479483,52.72359809224681],[-127.58718427517194,52.72380394729837],[-127.58760930257831,52.723886178853625],[-127.5882958933253,52.72411956616567],[-127.58884035571234,52.72447089476067],[-127.58966096106433,52.72486611021573],[-127.59032399237492,52.72511325739075],[-127.59110041956849,52.7254171424239],[-127.59142100493172,52.725533296613264],[-127.59188947897258,52.72573598842333],[-127.59232702426436,52.72602934230466],[-127.59301098116568,52.72656371702067],[-127.59357559083512,52.726856458980095],[-127.59390381955255,52.72695344584036],[-127.59451691032596,52.72692940708671],[-127.59504001105182,52.72690490472396],[-127.59587857563008,52.72700782178688],[-127.59701608163321,52.72729218399329],[-127.59794089005553,52.727568218564684],[-127.59913091845394,52.72801662821657],[-127.60000118006805,52.7281230023096],[-127.60029755866621,52.72813633296156],[-127.60057871529486,52.72816443467674],[-127.60086536277268,52.728240106886105],[-127.60113165854936,52.72831717759689],[-127.60139270787602,52.728402731290615],[-127.6016510952598,52.72849167479063],[-127.60191128984616,52.72857891602466],[-127.60217863514393,52.72865933298463],[-127.60245228940816,52.72873462309473],[-127.60272506665953,52.728811036589775],[-127.60298601704243,52.728893781204384],[-127.60322707743869,52.728990249283136],[-127.603406160585,52.72914081644534],[-127.60345814577794,52.72931497799165],[-127.60340357553409,52.72949227518413],[-127.6033361311874,52.729672555489294],[-127.60333726806479,52.72985134097228],[-127.60338974303293,52.730038947546625],[-127.60350364634935,52.73020721248568],[-127.6036982402494,52.73032561437415],[-127.60395101873685,52.73041295271667],[-127.60423381084429,52.730484185725864],[-127.60452114178452,52.730552557918315],[-127.60479204448121,52.730628436388464],[-127.60506308911206,52.730707675241064],[-127.60533817398674,52.73077116436252],[-127.60562874825153,52.73080248806477],[-127.60593262090121,52.73079271737935],[-127.60620024845156,52.73073187775645],[-127.60642949619935,52.730612151829504],[-127.6066703938428,52.73050628239146],[-127.60691704199212,52.730405373481226],[-127.607163731079,52.73030558444974],[-127.60741425361377,52.73020910521773],[-127.60766964922935,52.73011871946563],[-127.60793346451275,52.73003046848887],[-127.60821473787,52.72993804927438],[-127.60849614375927,52.72987365212597],[-127.60876415618735,52.72987221331801],[-127.60901905655211,52.729941575977755],[-127.60926624687391,52.730052520408975],[-127.6095065488007,52.73017756679129],[-127.60973814281787,52.73029320848633],[-127.60995698477666,52.7304146299239],[-127.61016947883361,52.730540066147455],[-127.61038649647652,52.73066263285821],[-127.61061256877679,52.73077890477782],[-127.6108431862449,52.730892880764415],[-127.6110774076029,52.73100399979444],[-127.61131606808111,52.73111000839034],[-127.6115705459576,52.731192267205245],[-127.61183536301168,52.731278302162714],[-127.61211854462664,52.73133493821106],[-127.6123998241105,52.73138991380722],[-127.61268377273494,52.73144205401269],[-127.61296770109341,52.73149363780882],[-127.61325246495419,52.73154295848216],[-127.61353291859149,52.73160074970652],[-127.61380560741888,52.73167378501235],[-127.6140875572783,52.7317220214648],[-127.6143854662287,52.731726327886065],[-127.61467864516737,52.731703230155546],[-127.6149729550069,52.73168572101638],[-127.61526949963593,52.731678269177195],[-127.61556542689699,52.73167922800103],[-127.61586266999896,52.731690265755574],[-127.61614726298852,52.7317345418601],[-127.61642083413257,52.73180642901948],[-127.61671352012254,52.731819769485035],[-127.61701076674235,52.73180613365746],[-127.61730846714273,52.73178016893964],[-127.61760222330314,52.73177274970044],[-127.61788744164075,52.73180916607491],[-127.6181680728487,52.73187142779255],[-127.61844520845283,52.731939342071485],[-127.61871426284492,52.73201409329119],[-127.61898334575623,52.73208996449359],[-127.61926118511597,52.73215169723875],[-127.61954248569859,52.73220722054197],[-127.6198229946227,52.732266117082155],[-127.62009642696626,52.732334078718964],[-127.62036638536786,52.73240825768709],[-127.6206337192065,52.73248639132021],[-127.62089125155725,52.73257530486171],[-127.62113983248945,52.73267275360782],[-127.62138575320482,52.732773601614966],[-127.62163073430278,52.732873906113994],[-127.62187933972965,52.73297190898879],[-127.622142716747,52.73306802979559],[-127.62239428935753,52.733146377738166],[-127.62262676273187,52.7332591842686],[-127.62285111278861,52.733377698847804],[-127.62306451514145,52.733501413613986],[-127.62321653080271,52.7336450354045],[-127.62333367221656,52.73382276985914],[-127.62343805381153,52.73400685092915],[-127.62346242359725,52.73416008822187],[-127.62349853084892,52.734353518301766],[-127.62355134588417,52.7344009886949],[-127.62372513154428,52.73445799220844],[-127.62402858056764,52.73446106763422],[-127.62425808325045,52.73454420157121],[-127.62439396636591,52.73472672400829],[-127.6245809888513,52.73486368870022],[-127.62487283908534,52.73500088508224],[-127.62471173780895,52.735155573547104],[-127.62454786126132,52.7353103002452],[-127.6244352902524,52.73547272712451],[-127.62439642610872,52.73564645371075],[-127.62438741699361,52.73582425919453],[-127.62439706409272,52.736005159951546],[-127.62441510633164,52.7361870742302],[-127.62443131543867,52.73636956991323],[-127.62443539336378,52.7365499918216],[-127.62443199628599,52.73672939637513],[-127.62442584607965,52.73690939509014],[-127.62441782028573,52.73708886378152],[-127.62441075050931,52.737268884169694],[-127.62440178994599,52.73744836577662],[-127.62439098969357,52.73762787286891],[-127.62437369133222,52.73780747003655],[-127.62435360371015,52.73798710585181],[-127.62434094864658,52.73816663858762],[-127.62434867792804,52.738345888671574],[-127.62438147139542,52.73852534722385],[-127.62443093449262,52.73870401860884],[-127.62446089056799,52.738881839457015],[-127.62442963317572,52.739060509049416],[-127.62437891048717,52.73923944849598],[-127.62430390828418,52.739414240586136],[-127.6241951408359,52.73957941186584],[-127.62404329256664,52.73973397039041],[-127.62387835516404,52.73988591213995],[-127.6237349637672,52.74004315095567],[-127.62363184129245,52.740210485318265],[-127.62354839627118,52.74038315178632],[-127.6234771192617,52.74055845649222],[-127.62341330220372,52.74073476977244],[-127.6233578591421,52.74091153193686],[-127.62333591119486,52.74109119290366],[-127.62336497220332,52.74127014709174],[-127.62337452487078,52.741448250577264],[-127.6233405079855,52.74162752269379],[-127.62328880042605,52.74180535392388],[-127.62320152886859,52.74197470997649],[-127.62306192892714,52.742134702024785],[-127.62295048134854,52.742302706779654],[-127.62286416987246,52.74247317017289],[-127.6228682269306,52.74265359160924],[-127.62290376473578,52.74283189999862],[-127.62282504083548,52.743006742103944],[-127.62269123388229,52.74317281419767],[-127.62253141733878,52.743313472750316],[-127.62232757509324,52.743442965892775],[-127.62211239707705,52.74356756670232],[-127.62189442207465,52.74369164980078],[-127.62168401358737,52.74381955564831],[-127.62149935097044,52.74396559644556],[-127.62129250054971,52.744089524387874],[-127.62102602817507,52.74415822794493],[-127.62050756536621,52.7442371421074],[-127.62022373988037,52.74428870417503],[-127.6199389578644,52.74433972276394],[-127.61965806926784,52.74439517073743],[-127.61938227618283,52.74446287834315],[-127.61913355190197,52.74455935662184],[-127.61890311804325,52.744673517261305],[-127.61868796007363,52.74479867615271],[-127.61849827831432,52.744935257453385],[-127.61833038399988,52.74508385926836],[-127.61817569919916,52.74523789223385],[-127.6180313340731,52.745395136420754],[-127.6179095225733,52.7455599247817],[-127.61776886498976,52.74571711739088],[-127.6175981268584,52.74586408028695],[-127.61741700909813,52.746006702278954],[-127.61722458548589,52.746144440099464],[-127.61702449324478,52.74627611355857],[-127.61681117654744,52.74640124327489],[-127.6165902335944,52.74652142892172],[-127.61636643017296,52.746639420603245],[-127.61614070696767,52.74675575236496],[-127.61590926958505,52.74686823457477],[-127.61567876617313,52.746980712392514],[-127.61545210444324,52.74709705569142],[-127.61522362244337,52.74721397961954],[-127.61499510336272,52.74733034758456],[-127.61477420799964,52.74745165888149],[-127.61457120024784,52.74758000510895],[-127.61440876196554,52.74772628359401],[-127.61430291546716,52.74789645257718],[-127.61418110345512,52.74806179250245],[-127.61402162099368,52.74821251353102],[-127.61385275723451,52.7483605655675],[-127.61367449079775,52.74850538389621],[-127.6134895543244,52.748645809877694],[-127.61329231326559,52.74877967911137],[-127.61307144785845,52.74890210747146],[-127.61284675060506,52.74902178121622],[-127.61264093329783,52.74914959748388],[-127.61247664878503,52.74929646334181],[-127.6123557819245,52.74946235302835],[-127.61226487436107,52.74963566820203],[-127.61219999328216,52.74980975515658],[-127.61216221256899,52.749989065109034],[-127.61213558283777,52.750168786590756],[-127.61211172797549,52.750348469869415],[-127.6120971841288,52.750528590002176],[-127.61208448000556,52.75070867583463],[-127.61206622585753,52.7508888469567],[-127.61203674163949,52.751066921624734],[-127.61198397105062,52.751242518633404],[-127.61188183726034,52.75141318971313],[-127.61174212190318,52.75157204688641],[-127.61158261808828,52.75172277320911],[-127.61141279061657,52.75187026936403],[-127.61123542140214,52.7520150709947],[-127.6110533362379,52.75215769522121],[-127.6108702875122,52.752299211411646],[-127.61068534669498,52.75244019729082],[-127.61049568955387,52.75257899675825],[-127.61029844224754,52.752713425280156],[-127.61009168584022,52.752841814281005],[-127.60986968618596,52.75295975861275],[-127.60963436223814,52.75306892673717],[-127.60939526338062,52.75317646027024],[-127.60916187618143,52.753287833765896],[-127.60894276737655,52.753408543446646],[-127.60873223015962,52.7535353048282],[-127.60852740454882,52.75366590630877],[-127.60832449591062,52.75379815806066],[-127.60812156511085,52.753929853737844],[-127.60791577983407,52.75405991123323],[-127.6077052151265,52.754186106040606],[-127.60748701777604,52.75430680030596],[-127.60725830695353,52.75441922660003],[-127.60701525268429,52.75452064841958],[-127.6067616911173,52.75461435804475],[-127.60650238835996,52.75470310594166],[-127.60624119359744,52.75479132317666],[-127.60598476914664,52.75488282836723],[-127.6057369311308,52.754980385121186],[-127.6054996882078,52.75508844982963],[-127.60526098841491,52.75520717865551],[-127.60504126028592,52.7553368567924],[-127.60486183161099,52.755477192305115],[-127.60481978860169,52.75561788835671],[-127.60481451537309,52.7557989915689],[-127.60480155303271,52.755997579444404],[-127.60479167013688,52.75617931069013],[-127.60475566626857,52.75635748067342],[-127.60471040655615,52.7565363333432],[-127.60465580675826,52.756713627915985],[-127.6045899909426,52.75688884303057],[-127.60451110300349,52.75706198614048],[-127.60443048561822,52.75723852469492],[-127.60434619864515,52.757416225387175],[-127.60424971175021,52.7575901740897],[-127.60413248534351,52.75775600380102],[-127.60398689581636,52.75790764005002],[-127.60380632243475,52.75804238437538],[-127.60359837548265,52.75816517233854],[-127.6033696761565,52.758278720107434],[-127.60312494513455,52.75838575194582],[-127.60287258167084,52.75848729179043],[-127.6026182984535,52.75858717139348],[-127.60236772480032,52.75868699970999],[-127.60212083957161,52.7587862120895],[-127.60186913968616,52.75888101485584],[-127.60161268134516,52.75897251023538],[-127.60135523883326,52.75906234152409],[-127.60109873666958,52.75915272434589],[-127.60084319532862,52.75924420545505],[-127.60059244584842,52.75933954839144],[-127.60035028291577,52.759440943292276],[-127.60000053521846,52.759668788623046],[-127.599778703089,52.759792879912496],[-127.59969493462476,52.759960480931156],[-127.59964501874326,52.760139394422964],[-127.59961653768143,52.760320822233446],[-127.59961025878997,52.76050026111207],[-127.59962995634598,52.76067934548068],[-127.59965989367605,52.760859411044386],[-127.59967775692557,52.76103907639468],[-127.59968261111152,52.76121836326239],[-127.5996828551572,52.7613982779854],[-127.59968216369583,52.761578196486084],[-127.59968147256413,52.761758123928644],[-127.59968449212887,52.761937991743444],[-127.59969305749851,52.762117227861225],[-127.59970256442138,52.762297016070974],[-127.59971486182428,52.762476757211154],[-127.59972809486332,52.762656494529345],[-127.59974316839157,52.7628361977419],[-127.59976009165473,52.76301531969552],[-127.59978444364653,52.763194905208785],[-127.59983297484877,52.76337527270381],[-127.59985165556138,52.76355212869372],[-127.59976239114994,52.76372149017125],[-127.59961894238606,52.76388206730298],[-127.59939965781432,52.764049839688745],[-127.59937769390528,52.76420707300047],[-127.59939618423957,52.76437888276398],[-127.59943639964536,52.764560493655544],[-127.59944594167588,52.764740837104014],[-127.59949528893863,52.764918395524326],[-127.59962198703495,52.76507920511811],[-127.59980920990759,52.765220132408665],[-127.60000070062905,52.76532625158275],[-127.60002818764164,52.76534156978531],[-127.60008950227724,52.76551615772295],[-127.60007211166032,52.765696312652295],[-127.6000099742653,52.765871464539785],[-127.60000130423911,52.76588784117973],[-127.59991608011329,52.766041453966054],[-127.59989047850735,52.76615109182508],[-127.59982583353893,52.76620970759759],[-127.59970002103854,52.76629605190832],[-127.59969029423935,52.76635840201576],[-127.5997729003481,52.76653157852166],[-127.59985179601034,52.76670481456126],[-127.59987979886942,52.766882663918345],[-127.59987078587656,52.767063260301974],[-127.59987658281351,52.76724308959862],[-127.59989816149137,52.76742271247456],[-127.59992622180808,52.767601681913874],[-127.5999838340218,52.767776885172104],[-127.6000005592238,52.76780187385654],[-127.60009963832985,52.76794400351072],[-127.6001241352648,52.7681269493069],[-127.6001059550807,52.76831103354343],[-127.60015036229328,52.768480247165805],[-127.60026081185465,52.76865305211245],[-127.60042272131395,52.768811694108905],[-127.60066127586902,52.7689345489643],[-127.60080181760742,52.769092926174956],[-127.6009359563386,52.769253632550736],[-127.60107472195065,52.769413710625365],[-127.60119137183044,52.769578583342955],[-127.60126471096001,52.76975188515809],[-127.6013233089026,52.76992819511372],[-127.60137638169999,52.7701057014421],[-127.60143036947468,52.77028263924269],[-127.60149360112435,52.770458885780286],[-127.60157248984675,52.77063155554515],[-127.60166338683422,52.770802375296554],[-127.60176167250907,52.77097253803701],[-127.6018627294329,52.77114210683408],[-127.60196284544948,52.771311123432845],[-127.60205742162307,52.77148133658374],[-127.60214371709496,52.77165333974256],[-127.60221525004889,52.77182779542658],[-127.60227295504518,52.77200467295315],[-127.60231953107468,52.772182267482734],[-127.60235871963619,52.772360527894875],[-127.6023895700424,52.772539458220265],[-127.60241208219009,52.77271905846533],[-127.60242622914024,52.772898217019595],[-127.60242279364313,52.77307873679155],[-127.60240266036666,52.773260049695345],[-127.60238437660698,52.773440772338326],[-127.6023836543063,52.77361956905685],[-127.6024217829539,52.773794480940346],[-127.60252282799128,52.77396348418614],[-127.6026561579337,52.77412699731909],[-127.60278942002137,52.774288278295074],[-127.60293092270933,52.77444663961106],[-127.60307883118044,52.77460267128135],[-127.60322582011926,52.77475871533648],[-127.60336549075663,52.77491765716182],[-127.6035042841996,52.77507774072976],[-127.60365676050075,52.775231467304486],[-127.60383572334574,52.7753736219298],[-127.60403482494904,52.77550765416668],[-127.60424214666963,52.77563821076757],[-127.6044466780577,52.775768805187596],[-127.60463750760347,52.77590519149769],[-127.60476233820495,52.77606433473766],[-127.60485334400933,52.7762374011145],[-127.60499580232467,52.77639630284111],[-127.60505803201575,52.77656976290428],[-127.6050843058843,52.77674987581293],[-127.60511425624334,52.7769293734161],[-127.60515715195068,52.7771070168569],[-127.60520098989743,52.77728521232558],[-127.60523461140446,52.77746353864696],[-127.60524516477719,52.777645552530565],[-127.60530919018763,52.777817301872226],[-127.60544424546755,52.77797630432796],[-127.60559863741756,52.77813112304389],[-127.60575760062554,52.77828420202557],[-127.60593935379096,52.778425750262485],[-127.60611383080457,52.77857132567227],[-127.6062809895156,52.77871980791669],[-127.60644364224166,52.77887170552247],[-127.60659624816151,52.779028233298],[-127.60663433550874,52.77920145815752],[-127.60662072126016,52.779382672983864],[-127.60660712813223,52.77956445245287],[-127.60661758236316,52.779743660560165],[-127.60663454752857,52.77992334440336],[-127.60664967104638,52.78010304448817],[-127.60666571575896,52.78028274089872],[-127.60668822906086,52.78046178370974],[-127.60673036782796,52.780643920453805],[-127.60677340040635,52.78082492397493],[-127.60678377136067,52.78100189118471],[-127.6067138558019,52.781167627960286],[-127.60644835776928,52.78139264713389],[-127.60670783746995,52.78130390070887],[-127.60696533969325,52.78121238290793],[-127.6072248172253,52.78112363532878],[-127.60749020604888,52.7810443296795],[-127.60776460860005,52.780982278975486],[-127.60805658214494,52.78094297055092],[-127.60835588214576,52.780925414867035],[-127.60864949983153,52.78092979031564],[-127.60894131745988,52.78096053643348],[-127.60923009202938,52.78100870273005],[-127.60951551929098,52.781066993807336],[-127.60979881198242,52.78116679746355],[-127.61006470634089,52.78119957358657],[-127.61032414996238,52.78113492435092],[-127.61058906235048,52.78104273175718],[-127.61084295360678,52.78092939194498],[-127.61106648710889,52.78079908944608],[-127.61124129028808,52.78065713456597],[-127.61137011890145,52.78050291573411],[-127.61146877425416,52.780336215976746],[-127.6115466355613,52.78016027829102],[-127.61161600255743,52.77998053842622],[-127.61168536863181,52.77980078953634],[-127.61176601991613,52.77962481327444],[-127.61187301783599,52.77945800733946],[-127.61206551805091,52.77931748468646],[-127.61231467630031,52.77927594711151],[-127.61256388089954,52.77928485103307],[-127.61286208854804,52.77931269259094],[-127.6131605194007,52.779322039160064],[-127.61345063057985,52.779307403527916],[-127.61374394731871,52.77935324532201],[-127.61396393031877,52.7794735223047],[-127.61417648944935,52.77959390106844],[-127.61448949095242,52.77954644030107],[-127.61470359771154,52.779412897433616],[-127.61491234644572,52.77928504164291],[-127.61510624353186,52.77915738103151],[-127.61532832248196,52.7790383084479],[-127.6155590146068,52.77892583348822],[-127.6157980091453,52.77881213167231],[-127.61604760674838,52.778708927766075],[-127.61631333951979,52.77863912941629],[-127.61659895419376,52.778604361816406],[-127.61689736253591,52.77858848223762],[-127.6172010544985,52.778589334320635],[-127.61750062888748,52.77860425877719],[-127.6177886821061,52.778633913771465],[-127.61807198813472,52.77868493162782],[-127.61835024197639,52.77875003489747],[-127.61862684612878,52.77882020008068],[-127.6189042231173,52.778886426140254],[-127.61917626594986,52.7789588949171],[-127.61944653839845,52.77903362942247],[-127.61972383342552,52.77909762176875],[-127.6200088162988,52.77914412804102],[-127.62029731468523,52.77918498029939],[-127.62058660682274,52.77922245803209],[-127.6208776707081,52.77925766866613],[-127.62116963434958,52.77929230118579],[-127.62146072062349,52.7793280750346],[-127.62175097140249,52.779366092656474],[-127.62203857993579,52.77940807392719],[-127.62232127988692,52.779467501638884],[-127.62259879446698,52.779537080021996],[-127.62287946953141,52.779592050615946],[-127.62316998441993,52.779612690837695],[-127.62346647819228,52.77961979615057],[-127.62376644394779,52.779620126929075],[-127.62406707486063,52.779613722015974],[-127.62436653564728,52.77960116281778],[-127.62466210699863,52.77958361693453],[-127.62495096065867,52.77956055862365],[-127.62517725939847,52.7794554160265],[-127.62539421599656,52.779324620539796],[-127.62562953786365,52.779212626239605],[-127.62590752576719,52.77917234585985],[-127.62620717500904,52.77916482806871],[-127.6265093777521,52.77917520934783],[-127.62680273233858,52.77919747812254],[-127.62709213711624,52.77923774519448],[-127.62738249916117,52.77927855426757],[-127.62767436166901,52.77931037417303],[-127.6279662394616,52.7793421931454],[-127.62825895298792,52.77937175788525],[-127.62855239525649,52.77939626300284],[-127.62884736756853,52.77941178747415],[-127.62914537534225,52.7794098897642],[-127.62944324820029,52.77940406534763],[-127.62973707162716,52.779413998778274],[-127.63001943998954,52.77946443608945],[-127.63029869542167,52.77953061833499],[-127.63058959835097,52.7795613234206],[-127.63088619433574,52.77954654546894],[-127.63117852179677,52.77951726269276],[-127.63146967780128,52.77948182574323],[-127.63175877794,52.77944081189444],[-127.63204487170186,52.77939423438793],[-127.63232889453748,52.77934208022279],[-127.63260988921242,52.779283797777104],[-127.63288791363463,52.77922051618717],[-127.63315814835494,52.779147818767775],[-127.63341852246069,52.779060120667204],[-127.63367795320985,52.77897187014871],[-127.63394820626766,52.778899726595455],[-127.6342317736467,52.77883580851491],[-127.63452289334977,52.77877513836986],[-127.63481461280448,52.77873016148893],[-127.63510179178213,52.7787121411785],[-127.6353805339101,52.778740762015566],[-127.6356529256445,52.77882159975317],[-127.63592227076968,52.7789198497187],[-127.6361918232015,52.77899903991496],[-127.6364626708829,52.77901543782992],[-127.63673249026941,52.77893208428072],[-127.63700979775246,52.778850302513725],[-127.6373030730897,52.77882154709791],[-127.63760457409138,52.77881397427074],[-127.637896989981,52.7788356724621],[-127.6381829264187,52.77888212151603],[-127.63846577424668,52.778944871407205],[-127.63873623058359,52.77902347823065],[-127.63898499347916,52.779117525052385],[-127.63919783626635,52.7792434602777],[-127.63939540420212,52.779382504162605],[-127.63960639326098,52.77950846457458],[-127.63985947139973,52.779594037576466],[-127.64015104853029,52.77964208895367],[-127.64044571484771,52.77967383802464],[-127.64074304433562,52.77970218622567],[-127.64104197875209,52.77972434146493],[-127.6413376846915,52.77973477555363],[-127.64162134905023,52.77972183733621],[-127.64185635085008,52.77960253268004],[-127.64206399070672,52.779471836110545],[-127.6422937009342,52.77935988636669],[-127.64257822231265,52.779297046626],[-127.64285130244042,52.77934702735273],[-127.64310690395052,52.77944938144009],[-127.64331157234129,52.7795799077366],[-127.64355680843796,52.77967847827181],[-127.6437652280701,52.77980950721368],[-127.64397542590385,52.77993883390912],[-127.64422145040199,52.78003347315626],[-127.6444871684398,52.78010933542706],[-127.64476006859107,52.78017837061938],[-127.64503832931557,52.78024228118953],[-127.64530843934732,52.780311354262786],[-127.64557516152402,52.780388885941505],[-127.64584841053902,52.7804668814194],[-127.64612257362292,52.780520758326226],[-127.64641291233973,52.78058450511321],[-127.64668238657407,52.78066086574851],[-127.64696058869738,52.780723095689886],[-127.6471807359037,52.78079679401379],[-127.64747324327865,52.78084424935199],[-127.64791764731021,52.78078532035514],[-127.6481325900401,52.78077221116014],[-127.64843746541523,52.78080323188315],[-127.64873177852047,52.78082544159846],[-127.64902447331619,52.78085383413308],[-127.64931465760137,52.78088954300889],[-127.64960144778877,52.780933154606295],[-127.64988747571834,52.78098125110814],[-127.65017177815744,52.781032743049266],[-127.65045610275193,52.78108478999401],[-127.6507395139267,52.781137405111224],[-127.65102468889354,52.7811871968022],[-127.65131067716337,52.78123417843711],[-127.65159409038144,52.781286791484284],[-127.6518822395428,52.781341588036405],[-127.65215966292499,52.78140717964004],[-127.652391361521,52.78151489042339],[-127.65248890976346,52.781683902033535],[-127.6524985995167,52.78186255429225],[-127.65248615824876,52.78204489021881],[-127.65251039562627,52.782215490728085],[-127.6525186993288,52.78240593702564],[-127.65252034681075,52.78259255821263],[-127.65253766126303,52.78275204660606],[-127.65251691993221,52.78296028146431],[-127.65248744551346,52.783134445575016],[-127.65248945716911,52.783354681368415],[-127.65263218894901,52.78346700808819],[-127.65296133588154,52.7835010471442],[-127.65326771056527,52.78349840564973],[-127.65355411162682,52.7834596182454],[-127.65371884187714,52.783324466277136],[-127.65381543692544,52.78310900075529],[-127.65395416332811,52.78295010994678],[-127.65406650876794,52.78278150236763],[-127.65420817685451,52.78262648858752],[-127.65441084150534,52.782487993541935],[-127.65464429173792,52.7823770878064],[-127.65479866233514,52.782358660271456],[-127.65522740994689,52.782374464091866],[-127.65550292383898,52.78243839790243],[-127.65572022636343,52.78255807106288],[-127.65592778361481,52.78268965600887],[-127.65615513278165,52.78280471164562],[-127.65640773381324,52.782900344890614],[-127.65667542632545,52.783001934195234],[-127.65687995893059,52.78310329425197],[-127.65708952304098,52.7832623168746],[-127.65725823359656,52.78339781126744],[-127.6574638778598,52.783527734653404],[-127.65768040141361,52.7836507871143],[-127.65790061716281,52.78377322202558],[-127.65812446006785,52.783893363328154],[-127.65835365607583,52.784007823712514],[-127.65859180910022,52.78411374529421],[-127.65884239318528,52.784204927045934],[-127.65912340626797,52.7842665238486],[-127.65941658872569,52.78430665850123],[-127.65971254852234,52.7843226479627],[-127.660016071435,52.784318352318735],[-127.66030228554001,52.78434624385293],[-127.66051572442453,52.784461488122346],[-127.66075265961136,52.784559575905696],[-127.66104477423696,52.78464399516994],[-127.66131692516709,52.784716365920325],[-127.66159434136475,52.78478081471977],[-127.66184954080101,52.78487080380516],[-127.6620781215325,52.784993112508324],[-127.6624015285948,52.78518918121242],[-127.66256026598064,52.785186931167004],[-127.66285223639267,52.78519567861279],[-127.66315818672618,52.78518181681218],[-127.66345494391032,52.78519442273336],[-127.66374852681098,52.785220524486526],[-127.6640413269881,52.78525055550054],[-127.66433325756068,52.78528228405712],[-127.6646252470812,52.78531513201889],[-127.66491658540659,52.785355279246716],[-127.66520783657464,52.78539317610139],[-127.66549955056115,52.78541930003803],[-127.66579329262531,52.78542578207653],[-127.6660891273898,52.785414289271955],[-127.6663854897901,52.78539270851846],[-127.6666817861416,52.785369442021114],[-127.6670139903617,52.78529073718297],[-127.66728973257148,52.78533557510555],[-127.66756172582137,52.7853799096912],[-127.66784974807602,52.78543018550189],[-127.6681377052016,52.785478775609604],[-127.66842378442422,52.785526826766],[-127.66872540788452,52.7855208587571],[-127.66902141911925,52.785490299650846],[-127.66920328287543,52.78560485679676],[-127.66933832164204,52.78578060323943],[-127.66953307224188,52.785915709819946],[-127.66976870560022,52.78602725877833],[-127.67001323546059,52.786129147919276],[-127.67026403063622,52.78622477755058],[-127.67051666173603,52.78631982450878],[-127.67078755257377,52.78640676407244],[-127.67106023548313,52.786492000526216],[-127.67129096383296,52.78659688161592],[-127.67143865272644,52.78673938147322],[-127.67151696232581,52.78691313593573],[-127.6715697121826,52.78709790824678],[-127.67163891548721,52.7872762762382],[-127.67171997533607,52.78744887036955],[-127.67180105759098,52.787622020113595],[-127.671882118751,52.787794614093976],[-127.67195951121211,52.78796838126768],[-127.67203229230137,52.78814277908091],[-127.67210599451795,52.7883171547386],[-127.67218153220811,52.7884909481741],[-127.67226445319002,52.78866351532409],[-127.67235749121545,52.78883369623463],[-127.6724625400045,52.789002028847726],[-127.67257309360664,52.78916859693667],[-127.67268550473565,52.78933513842698],[-127.67279424727836,52.78950285308514],[-127.67288645609662,52.78967528729018],[-127.6729722624541,52.78985005465496],[-127.67309097025819,52.79001145710876],[-127.6732805551947,52.790156163885605],[-127.67352340691932,52.790261432718715],[-127.67381164323677,52.790292625913594],[-127.67411301264774,52.79025581720398],[-127.67436395506861,52.790164800345444],[-127.6745999243377,52.79004709357639],[-127.67483687930232,52.78993105815989],[-127.6750879940385,52.78984452107776],[-127.67536734267752,52.78981474932357],[-127.67566699385796,52.78982896045127],[-127.67597241330853,52.78984813721984],[-127.67627022789618,52.78983939777724],[-127.67656639595006,52.789812189687844],[-127.67686330127266,52.789779921482314],[-127.6771594681844,52.78975270293206],[-127.67745155798981,52.78974012343982],[-127.67773729166842,52.78975452831276],[-127.67801279880109,52.78981616827143],[-127.67828451590684,52.78989971614611],[-127.67855952198147,52.78997200668964],[-127.67883878877335,52.790034702932694],[-127.67911897765757,52.79009739428832],[-127.67939909375572,52.79015783512855],[-127.67968181237129,52.790213763149886],[-127.67996516602109,52.79026239064703],[-127.68025658451327,52.79027951492004],[-127.68055664246668,52.79025671594501],[-127.68083352859044,52.79030599898876],[-127.6810987851606,52.79039018901673],[-127.68136138295893,52.79047778842964],[-127.68162094461216,52.79058223630514],[-127.68189571067205,52.790554200652835],[-127.68217515655644,52.79050311295907],[-127.68245606829953,52.79044247086999],[-127.68273675149108,52.79037567054414],[-127.68301634367988,52.79030496628737],[-127.68329219929367,52.790233750002194],[-127.68355343664179,52.79014536339997],[-127.68379912788097,52.79003927285943],[-127.68407648250117,52.79000614602677],[-127.68437524633416,52.79002146867798],[-127.68467370852004,52.790052497408695],[-127.68496406639004,52.79008980263712],[-127.68525203017795,52.79013723025326],[-127.68554069444583,52.79017904226898],[-127.6858330574587,52.79019669514266],[-127.68612975267199,52.79018290689825],[-127.68642640310071,52.790167988609255],[-127.68672670051176,52.790151340156875],[-127.68701718518281,52.79016846109428],[-127.68729653224081,52.790232822174524],[-127.68757090786107,52.79031239167249],[-127.68784678663769,52.7903829621993],[-127.68812872068911,52.79041870390305],[-127.68842214586316,52.790416157649226],[-127.68872195694573,52.790387180456115],[-127.68901539999474,52.790338116754434],[-127.68929059078522,52.790273621610275],[-127.68954054320982,52.79018203008593],[-127.68977378893288,52.79006712936797],[-127.68999744002436,52.789944528580946],[-127.69022779496659,52.78982687061665],[-127.69045229771152,52.7897025706964],[-127.69059578005512,52.789549171908824],[-127.69069690262526,52.789381810884315],[-127.69079706629857,52.789213898596536],[-127.69089626429026,52.789044888112166],[-127.69099360450882,52.788875895328935],[-127.69108997906572,52.78870580435502],[-127.6911854167646,52.7885357178122],[-127.6912789750877,52.78836510225954],[-127.69137251065752,52.78819393092914],[-127.69146416651984,52.78802222163186],[-127.69155488592476,52.787850525738435],[-127.69164468373631,52.787678843036886],[-127.69173351559016,52.78750605319788],[-127.69182049731845,52.78733384595019],[-127.6919065354802,52.78716109621744],[-127.69199165209697,52.78698835968607],[-127.69207581031331,52.786815080887784],[-127.69215905416844,52.78664237119365],[-127.69224135414116,52.786469110059585],[-127.69232181929833,52.78629644028299],[-127.69240136297469,52.78612378371882],[-127.69244024798311,52.78595676264185],[-127.69246510863984,52.7857635965545],[-127.6924997249933,52.78558262035958],[-127.69253433353053,52.7854010792711],[-127.69257319498614,52.7852334934236],[-127.69260697843676,52.78505477108875],[-127.69264820981448,52.78487650620133],[-127.69269411142197,52.78469872987364],[-127.69274744558967,52.78452140223099],[-127.69280922985503,52.78434620348819],[-127.6928717492669,52.784165945205714],[-127.69293031844437,52.783980139009444],[-127.69300869769167,52.78380189360986],[-127.69312876092076,52.7836443448824],[-127.69331233001068,52.783518943388],[-127.69355275225617,52.78342243094385],[-127.69382731411052,52.783343360528576],[-127.69411322059014,52.78326973045544],[-127.69438778042587,52.78319065872043],[-127.69464809783399,52.7831039452936],[-127.69490747857179,52.78301724480556],[-127.69516779386848,52.7829305302156],[-127.69542815257603,52.78284493537647],[-127.69569423517257,52.78276318508072],[-127.69596889985289,52.782686905971104],[-127.6962435490575,52.78261063539201],[-127.69650870752699,52.78252888759083],[-127.69675573306247,52.782435079738875],[-127.69697223241606,52.78232097049473],[-127.69713636057391,52.78217454539772],[-127.69727472266648,52.78201056626986],[-127.69741967693699,52.7818487245198],[-127.69759502905444,52.781704387156566],[-127.69778455447197,52.781566005209754],[-127.69797978117661,52.781430903314025],[-127.6981797214493,52.781297409792685],[-127.69837966807208,52.78116448078209],[-127.69860402733437,52.78103792367883],[-127.69886213994319,52.780919844987714],[-127.6990612956447,52.78079028912117],[-127.6991236945972,52.78063132698348],[-127.69912338095453,52.78045982168479],[-127.6990903305188,52.78028262977823],[-127.6990385392916,52.780101216481874],[-127.69897827678736,52.779917127912256],[-127.69892268526115,52.77973353660082],[-127.69888292373234,52.7795508279305],[-127.69887022635746,52.77937165506756],[-127.69890136531656,52.77919745201984],[-127.69898753669307,52.77902917751689],[-127.69911002215807,52.778863183698434],[-127.69924552932966,52.7786981130432],[-127.699370767225,52.77853151402972],[-127.69946520646741,52.7783608772785],[-127.69954374889164,52.7781876728491],[-127.69961198489568,52.778012366787685],[-127.69967276637907,52.77783605669385],[-127.6997279416246,52.77765926282847],[-127.69977846103988,52.77748197142375],[-127.69979635005028,52.77732477464354],[-127.6997538172987,52.777119130480415],[-127.69977887024567,52.77693212827428],[-127.6997932472328,52.7767800222806],[-127.69988520073092,52.77659372719248],[-127.69983245302286,52.77641177168328],[-127.6997903892226,52.77621789542648],[-127.69974832603732,52.77604755079986],[-127.69975045246736,52.77586760669319],[-127.69975908975557,52.77568812419194],[-127.69977650927581,52.775495618567966],[-127.69995177586578,52.775373132522326],[-127.70021762494005,52.77528689021741],[-127.70051135868495,52.7752248955712],[-127.70080378712888,52.77519992054552],[-127.70109482110402,52.775209706553106],[-127.70138847735463,52.775239075497346],[-127.70168433974895,52.775276823560425],[-127.70198003142886,52.77531064543286],[-127.70224074152745,52.7753517003119],[-127.70255917863426,52.77535044001578],[-127.70284807598853,52.77528346975368],[-127.70315385290972,52.77519719684683],[-127.70343668904648,52.77518803938038],[-127.7037330284564,52.77516804015409],[-127.70402802561708,52.77516095549465],[-127.7043237152396,52.77517123081481],[-127.70462557637481,52.77519654449148],[-127.70493492923502,52.77522343442686],[-127.70523949303829,52.775292990649376],[-127.7054094467897,52.77543344906403],[-127.7054884736357,52.775598761514],[-127.7053891373344,52.77578516887748],[-127.70537798194353,52.77594787397094],[-127.70562521888536,52.7760468525826],[-127.70586654933686,52.77616048044935],[-127.70604225578845,52.776305338198554],[-127.70619975283765,52.77645886355125],[-127.70634806740546,52.77661532029396],[-127.7064872072804,52.77677416130585],[-127.70661349707154,52.776937108134625],[-127.70672600868576,52.777103618318506],[-127.70679804463614,52.77727968541368],[-127.70688660727437,52.777451027951656],[-127.7070322631202,52.777610329460124],[-127.70719386118985,52.777773317652894],[-127.70737623924803,52.77792199524514],[-127.70758608286751,52.778037764063264],[-127.70783894754418,52.77809125181814],[-127.70814315538135,52.77808178099134],[-127.70845912151353,52.77806428220282],[-127.70876230171605,52.77807555847303],[-127.709073198203,52.77809401238693],[-127.7093446714575,52.77814834669803],[-127.7095462658901,52.778266474302285],[-127.70969493544335,52.778431333593524],[-127.7098030990284,52.77860463019702],[-127.70985929776884,52.77877924041339],[-127.70987682347709,52.778961705374975],[-127.70988679776357,52.779141482445205],[-127.7098828576533,52.77932145341385],[-127.7100037997586,52.77951249920014],[-127.71007984743628,52.77960275495183],[-127.71039420275258,52.779683921231346],[-127.71062031403383,52.779764696950785],[-127.71084201842893,52.779828165761224],[-127.71107247885756,52.779948111628315],[-127.71135734139924,52.780011769944906],[-127.71161863499202,52.78008978837344],[-127.71180143515204,52.78022500125412],[-127.71195805442194,52.78037909678202],[-127.71211020600406,52.780537732297695],[-127.7122777854909,52.7806871834484],[-127.71245084477839,52.780834303407936],[-127.71263119597333,52.7809779626407],[-127.7128250959092,52.781111890865915],[-127.7130928209105,52.78118812619764],[-127.71338662214175,52.78115020452664],[-127.71361445559543,52.781042068032846],[-127.71376708439304,52.78088793978063],[-127.71388017664184,52.78072094626575],[-127.71400552055292,52.780558248516485],[-127.71412054935006,52.78039290339716],[-127.71420274858292,52.780219635120126],[-127.71428499174854,52.78004747813155],[-127.71440091647689,52.779881563540165],[-127.71459702592801,52.77974697606502],[-127.71481695157556,52.77962717776557],[-127.71507899472432,52.77953871564485],[-127.71536677491632,52.779536183425876],[-127.71565760590131,52.77949381533209],[-127.7158844215669,52.77938400302539],[-127.71614218799232,52.77930456893337],[-127.716408298565,52.7792250031581],[-127.71663618145489,52.77911853666984],[-127.71681507977075,52.77897187532066],[-127.71701218068132,52.77883895500472],[-127.7171866459968,52.77869739789451],[-127.71734298856755,52.77854377503653],[-127.71748900092057,52.77838749628368],[-127.71758495443251,52.778279597023136],[-127.71764806631681,52.77811725030498],[-127.71768327082059,52.77797661109889],[-127.71777971845228,52.77788103526446],[-127.71789752491561,52.77771621012074],[-127.7180598125057,52.77757202294474],[-127.71833557253714,52.77750184400764],[-127.71862151365707,52.77745393497169],[-127.71891609570463,52.777436165271986],[-127.71919308968101,52.777373813116505],[-127.71944260173406,52.77727431460561],[-127.71972500826728,52.77723093861908],[-127.71999637663475,52.77728244300393],[-127.72030445786906,52.77730034345773],[-127.72059504908306,52.77732186270994],[-127.72088768302892,52.77730187463587],[-127.72118050760061,52.77726339117484],[-127.72145539257245,52.77719489462978],[-127.72174350030562,52.777154793017964],[-127.7220868572133,52.777149195008086],[-127.72234659866776,52.77714257322484],[-127.72264177386198,52.77711638244979],[-127.72295576559422,52.777096631428186],[-127.72324886831103,52.777134366059904],[-127.72353235185466,52.77716382943316],[-127.72382621247932,52.77715109791863],[-127.72412045135015,52.77712491717431],[-127.72441459080461,52.77711947100821],[-127.72472152762357,52.77708581108305],[-127.72500840877754,52.77706141331903],[-127.72533496979608,52.77700784123991],[-127.72564313419642,52.77702741242566],[-127.72588485608568,52.777080460552135],[-127.72617747860042,52.77708344420968],[-127.72647147371042,52.777074067044424],[-127.72675944007148,52.77703059213046],[-127.72704853045775,52.776992148895715],[-127.7273324664098,52.776940884966905],[-127.72761527700517,52.77688458796678],[-127.7278852220846,52.776808866955996],[-127.72813098358577,52.77670940484483],[-127.72829014686621,52.77655796692566],[-127.72843294186603,52.77636921226202],[-127.72852256736664,52.776197500068164],[-127.72852273906341,52.776018138514345],[-127.7285219676787,52.77583823482852],[-127.72858263441498,52.775662465417156],[-127.72873407952301,52.77548087364147],[-127.72893972395775,52.77539992800087],[-127.72921164936793,52.775327537474894],[-127.72951968290722,52.77525237172315],[-127.72976856685682,52.775207223610934],[-127.73007243578253,52.775235814348335],[-127.73032807552504,52.775311632842055],[-127.73033009565101,52.775132243792555],[-127.73032831300438,52.774950668848426],[-127.73025194496881,52.77478476745985],[-127.73002141319354,52.77466373855027],[-127.72988988882943,52.77451153767784],[-127.7298628143562,52.774370135651324],[-127.73030085649435,52.774295847567046],[-127.73059731326494,52.77427914142907],[-127.73088032924628,52.77422844705163],[-127.73116301157715,52.774169900963535],[-127.7314397997445,52.77410303822846],[-127.73170495980338,52.77402458058034],[-127.7319639979761,52.77393219579833],[-127.73220847203586,52.7738243316268],[-127.7324141407556,52.77369853934637],[-127.73253955268912,52.773539746671396],[-127.73262425074736,52.7733613775185],[-127.73275990651553,52.77320355416872],[-127.73295954075807,52.77306608399884],[-127.73319555741409,52.772956100603366],[-127.73346193778328,52.772884902736045],[-127.73375062233289,52.7728369154038],[-127.7340412382328,52.772791140783134],[-127.73432987602153,52.772742031696],[-127.73462522880527,52.77269842753632],[-127.73490711219756,52.77264325592366],[-127.73515999600264,52.77255992283053],[-127.73539009506013,52.77244161045335],[-127.73559045576305,52.77229964080825],[-127.73574301994626,52.77214661237383],[-127.73577699918826,52.77197739439893],[-127.73573040268354,52.77179032124841],[-127.73578741334259,52.77161684324619],[-127.73590506462229,52.77145031437319],[-127.73600495536618,52.771280685325905],[-127.73606274006626,52.77110326765856],[-127.73608797182868,52.770924654951905],[-127.73606208479359,52.77074455716188],[-127.73597158621774,52.77057382803931],[-127.73588106542535,52.770402534183035],[-127.7358107315368,52.77022533636901],[-127.73577570369547,52.770048736793996],[-127.73586157487898,52.76987707323181],[-127.73593704104664,52.76970051465092],[-127.73609335949185,52.76954910677392],[-127.73633149242181,52.76944581107933],[-127.73662629488341,52.769412298585976],[-127.73690730169194,52.769358811690964],[-127.7371569156368,52.769264312187104],[-127.7373986192433,52.76915759832928],[-127.73764227662112,52.76905366198068],[-127.73788888314303,52.768953600409795],[-127.73813551111414,52.768854093996154],[-127.73838406221671,52.76875624451296],[-127.73863646038708,52.768661700437185],[-127.73889567903117,52.76857490165642],[-127.739163627701,52.76849750579007],[-127.73943851867391,52.76843120735993],[-127.73971335540195,52.768363232052835],[-127.73998125564361,52.7682847139803],[-127.7402541743888,52.768215644834314],[-127.74054634869718,52.76818608033094],[-127.74083343470997,52.768145389572275],[-127.74109247096006,52.76805466050103],[-127.741206540348,52.76789210666452],[-127.74119550167994,52.76771234484049],[-127.74110306468785,52.76753996192781],[-127.7411088192102,52.76736220163302],[-127.74113035384488,52.76718419798457],[-127.74104346257216,52.767011176602274],[-127.74088773083963,52.76685766955209],[-127.74073946026178,52.76670460752634],[-127.74071894052346,52.76651994629172],[-127.74056923495542,52.76637755938926],[-127.7403324453599,52.766262248262464],[-127.7402070019506,52.76609988760279],[-127.74018304733235,52.765922003263874],[-127.74016832527722,52.76574286084634],[-127.74015912449163,52.76556251544279],[-127.74015363494676,52.76538211492782],[-127.74014908065736,52.765201700508776],[-127.7401473249611,52.76502180054487],[-127.74015487006312,52.76484232748246],[-127.74016331282658,52.764662285052744],[-127.74016251527897,52.764482935788756],[-127.74014126901922,52.76430332506894],[-127.74012095848856,52.76412370940446],[-127.74010346145637,52.76394460797303],[-127.74009520429195,52.763764804373146],[-127.7400934492464,52.76358491320097],[-127.74005277405655,52.76340671178721],[-127.74007996916058,52.76323087486325],[-127.74024845418718,52.763082642652144],[-127.74037264258435,52.76291825272336],[-127.7405553908334,52.76277821131866],[-127.74076363591375,52.76264901001657],[-127.74098720243236,52.76253134686378],[-127.74123568723486,52.76243292628261],[-127.74149578312958,52.762346107727744],[-127.74176662342153,52.76227258103433],[-127.74203752329292,52.762200173821725],[-127.74230936556434,52.762128316947276],[-127.7425802030768,52.76205478836378],[-127.7428510771626,52.761981814614394],[-127.74312099252225,52.761908298457975],[-127.74339185027874,52.761835332635464],[-127.74366364187759,52.76176234331058],[-127.74393455834314,52.76169049633693],[-127.7442073828733,52.761620297359904],[-127.74448024403324,52.76155065320765],[-127.74476099153333,52.761492666115664],[-127.74504580720517,52.76144302984084],[-127.74532460632041,52.761382828357],[-127.74560033134502,52.761315380917814],[-127.7458711959553,52.76124240911786],[-127.74613618089873,52.76116223320282],[-127.74639724000552,52.76107651010163],[-127.74665832900969,52.76099190696524],[-127.7469213330007,52.760908395699374],[-127.74718342357035,52.76082545346106],[-127.74744544459423,52.76074083461917],[-127.7477055633946,52.76065512252156],[-127.74796565842442,52.760568854158535],[-127.74824188183528,52.76049130378051],[-127.74851148076388,52.76041049748101],[-127.7487014803343,52.760289956638594],[-127.74876638965942,52.760106819063544],[-127.74883326404347,52.759903482824136],[-127.74893926949447,52.759749443266784],[-127.7491738665647,52.759766120808074],[-127.74945447899483,52.75984095983718],[-127.74974444345466,52.75994032987596],[-127.75001093443707,52.76003331462619],[-127.7502474862306,52.760143005034244],[-127.75047501503806,52.76025899978783],[-127.75069438659712,52.76037959103447],[-127.75083475004925,52.76004455324338],[-127.75092512567869,52.7598716880218],[-127.75104162771207,52.759701795439994],[-127.7512303146683,52.75957230177943],[-127.7514759603563,52.75947334509001],[-127.75174447391544,52.75938918428745],[-127.75201215766818,52.759307268315695],[-127.75228100550201,52.75923094835607],[-127.75255577059671,52.759163498442994],[-127.75284053853981,52.759113278510455],[-127.75312434794955,52.75906251618755],[-127.75340009166209,52.7589961706308],[-127.75366596082583,52.75891540790733],[-127.75394385706706,52.75885631992379],[-127.75423575118961,52.758821684131746],[-127.75453002884332,52.7587998991342],[-127.75482836194661,52.75878646478655],[-127.75512214116138,52.75879776024269],[-127.75541480997359,52.75887241354499],[-127.75567510247284,52.75885954676755],[-127.7559023875478,52.75874347531193],[-127.75612437331878,52.75861123251762],[-127.75625998298183,52.758319978038145],[-127.75636157148841,52.758149182064926],[-127.75651216355386,52.75799670889935],[-127.75673188301157,52.75787739496203],[-127.75696387478146,52.75776293671772],[-127.7571730577804,52.75763592374547],[-127.75737650480188,52.757504521269176],[-127.75758093968372,52.75737478064019],[-127.75778725139487,52.75724556750255],[-127.75799450526821,52.757116904833914],[-127.75820367402697,52.756989334063164],[-127.75840904734379,52.756860142787495],[-127.75859634116908,52.75672000323458],[-127.7587931866773,52.7565864551031],[-127.75904832702344,52.75649350047786],[-127.75926123121441,52.75636699263081],[-127.75939767191895,52.75629936928644],[-127.7594803036106,52.756299805859236],[-127.75964031535098,52.75655692432224],[-127.75970877807765,52.75673189662613],[-127.75977172188871,52.756908072763615],[-127.75973529197204,52.757105354293955],[-127.75989219623119,52.75724144884226],[-127.76005251007962,52.75741559769316],[-127.76018088371335,52.757557725396275],[-127.7603118745916,52.75771830599344],[-127.76047311620897,52.757869463911064],[-127.7606325811771,52.758022890336775],[-127.76074976048831,52.75818591995251],[-127.7608191505755,52.75836087759599],[-127.76086643129348,52.75853953040643],[-127.76088309288477,52.758718643194335],[-127.76086915785926,52.758898771654074],[-127.76084591529803,52.759077927866414],[-127.76088014880473,52.75925565558937],[-127.7609237201475,52.759434364016776],[-127.76094876999639,52.75961447169543],[-127.76089270538246,52.75978570881292],[-127.7608923926161,52.75995835035814],[-127.7609091933496,52.760140823949214],[-127.76095185351662,52.760320101991155],[-127.7610018435091,52.76049703681136],[-127.7610740288464,52.76067195211385],[-127.76114898198422,52.76084626078139],[-127.76124785650069,52.76101573485129],[-127.76137691425173,52.76117410112302],[-127.76155835108582,52.76131934889635],[-127.76170946767446,52.76147233422901],[-127.76180275636857,52.76164132677557],[-127.7618713055558,52.761817982196106],[-127.76194443181352,52.76199288275472],[-127.76201935306267,52.76216663525701],[-127.76209706549555,52.76234034574215],[-127.76217754586318,52.76251344956172],[-127.76225615695847,52.76268659038668],[-127.76232647238365,52.76286096791785],[-127.76237278302315,52.76303851332827],[-127.76241909404739,52.76321605869976],[-127.76246357326262,52.763394196572136],[-127.76251265241622,52.76357113526463],[-127.7625626755907,52.763748624719966],[-127.76261453176477,52.76392553055368],[-127.76266824350976,52.76410239948027],[-127.76271918828958,52.76427987496797],[-127.7627719809414,52.76445676660765],[-127.76282754953982,52.76463360749681],[-127.76288955972548,52.76480923942715],[-127.76297834428185,52.76498109663655],[-127.76310040756297,52.765194495821326],[-127.76307690025703,52.76532208910015],[-127.76292172859496,52.76547631583546],[-127.76275709343645,52.765626209544386],[-127.76267136174359,52.76579844894767],[-127.7626388301758,52.76597774442945],[-127.7626943539874,52.76615346488518],[-127.76278778736287,52.766325261184335],[-127.76288761591272,52.76649471023479],[-127.76298834271691,52.766663589661526],[-127.7630807969276,52.76683427941521],[-127.76319074879935,52.76700133390976],[-127.76331635169045,52.76716535483495],[-127.76339678537369,52.76733734613556],[-127.76344037547841,52.76751605267708],[-127.76345057203199,52.76769581752704],[-127.76337414065586,52.76786848228316],[-127.76323213587764,52.768027004020425],[-127.76308923255266,52.76818609508906],[-127.76298656468249,52.768352984010555],[-127.76296614821132,52.768533218099066],[-127.7630004672602,52.768712620092394],[-127.76305878748276,52.76888830705143],[-127.7631272839588,52.76906327593832],[-127.76320132489774,52.76923759639733],[-127.76327907829354,52.76941186993113],[-127.76335497620457,52.769586162342684],[-127.76343186472987,52.769762125796674],[-127.76355091973556,52.769924567763056],[-127.76372125164322,52.77006997906545],[-127.763915400895,52.77020718470389],[-127.7641159233823,52.77034148711575],[-127.76431546592276,52.77047469189476],[-127.76451862028848,52.77060503496832],[-127.7647254263715,52.77073420172002],[-127.76493133617957,52.77086393762899],[-127.76513184198498,52.77099768256945],[-127.76535754354613,52.77111199059539],[-127.76563115998276,52.77119475328484],[-127.76588645890392,52.77128395232382],[-127.76605102000566,52.77142384217119],[-127.76612813114508,52.77160484057827],[-127.7661586998159,52.771782620982925],[-127.7661559645505,52.77196371006248],[-127.76615785299053,52.77214416448047],[-127.76616443484623,52.77232566918856],[-127.7662622730156,52.772491226037765],[-127.76640896112427,52.77264819977417],[-127.76641463173051,52.77283027417553],[-127.76640916738077,52.773012525278155],[-127.76654253374835,52.77316128746049],[-127.76679840226467,52.77326392815432],[-127.76707239976996,52.77333322973969],[-127.76735342770816,52.77339289164444],[-127.76763000947224,52.77345710395946],[-127.76789249460083,52.77354002038226],[-127.76815327913899,52.773626333875434],[-127.76841400314069,52.77371151773339],[-127.76867476640403,52.77379726542009],[-127.7689275196708,52.77389154545156],[-127.76917040673162,52.77399437691942],[-127.76941509596695,52.77409549469764],[-127.76966615891776,52.77419371773403],[-127.76993391887461,52.77426926797282],[-127.77021728411817,52.774317677734345],[-127.77050681342178,52.77435814666091],[-127.77079712452222,52.774395240037805],[-127.77108844137709,52.77443400351246],[-127.77137709818969,52.77447560450257],[-127.771666606247,52.7745155059254],[-127.77195613826349,52.77455597126868],[-127.77224304230434,52.77460040365191],[-127.77252566287567,52.77465330320229],[-127.77280134822041,52.774718073082035],[-127.77306917834817,52.77479473622145],[-127.77333445056406,52.774877042507406],[-127.77359878839016,52.77495936233801],[-127.77386850088375,52.77503656020177],[-127.77413645964367,52.77511658203852],[-127.77437743200448,52.77521718987998],[-127.77456426965539,52.77535616597331],[-127.77474395552997,52.77550142007474],[-127.77496162642336,52.7756225576509],[-127.77519383560777,52.775735627643606],[-127.77541515134652,52.775855032181255],[-127.7756074849421,52.77599168140717],[-127.77578892507738,52.776134665352096],[-127.77598215861826,52.7762707443245],[-127.7762007492801,52.77639130969936],[-127.77643113298616,52.77650496097249],[-127.77666512235152,52.776616324114606],[-127.7768945965415,52.7767305532685],[-127.77710412137866,52.776856294449274],[-127.77726643833594,52.77700796908393],[-127.77741980275482,52.77716763525312],[-127.77761520818562,52.77728854052133],[-127.77788956354169,52.77734323872202],[-127.77815591505637,52.77736162027328],[-127.77846479316163,52.77737542821066],[-127.77875288181095,52.77738059156652],[-127.77904823373883,52.77735929573464],[-127.77934046720151,52.77733019938421],[-127.77963253673595,52.777297176757074],[-127.77992346049835,52.777259130711634],[-127.78021040634427,52.77721441824736],[-127.78049332129562,52.777162484172685],[-127.78077118215595,52.77710052806658],[-127.78104505022407,52.77703191481888],[-127.78131785629415,52.77695994503837],[-127.78159165231578,52.77688964557008],[-127.78186845772716,52.77682490478664],[-127.78214732013605,52.7767646161292],[-127.78242813999782,52.776707104059945],[-127.78270991773714,52.77665013276514],[-127.78298979192779,52.77659206870971],[-127.78326954826052,52.7765311987432],[-127.78354443765151,52.776464806015305],[-127.78381534180967,52.776392303185084],[-127.78408715690671,52.77631922085975],[-127.78436199687118,52.77625170590263],[-127.7846408371728,52.77619141151975],[-127.78492465180862,52.77613888785071],[-127.78521262233158,52.776096945379685],[-127.78550359462332,52.77606000554033],[-127.78579471565529,52.77602699074703],[-127.78608789407271,52.775998418983],[-127.78638220366989,52.77597487830579],[-127.78667677082053,52.775957503036885],[-127.78697244537953,52.77594458524758],[-127.78726921941474,52.77593557799525],[-127.78756514324624,52.775928268961216],[-127.78786205769468,52.77592262111656],[-127.78815941734749,52.77592761091166],[-127.78844526252324,52.77596809211666],[-127.78872194833797,52.77603393973788],[-127.7890046689669,52.77608847549719],[-127.78928908229665,52.776139065675956],[-127.78957610003549,52.77618513135363],[-127.78986392182526,52.77622838600273],[-127.79015172053782,52.77627107531239],[-127.79043956677728,52.776314884215815],[-127.79072565150062,52.77636096135842],[-127.7910092271776,52.77641380224451],[-127.79129195323891,52.77646833247642],[-127.79157726026284,52.77651778250267],[-127.79186584226015,52.77655709263059],[-127.79215791671962,52.776590743584094],[-127.79244985946669,52.776621597767296],[-127.79274269068904,52.77665130765889],[-127.79303469614068,52.776683280458066],[-127.79332499555179,52.77671919771051],[-127.79361747188321,52.776762363091954],[-127.79388890827087,52.776835561126404],[-127.79408929747758,52.776963654523755],[-127.79424908705717,52.77711983828235],[-127.79435695794331,52.77725607298291],[-127.79408419998781,52.77741718915925],[-127.79390750033379,52.77756562496104],[-127.79388977470455,52.777740775023275],[-127.79389915784618,52.77791999441955],[-127.79389240071087,52.77811291293108],[-127.79390647868205,52.778293181480606],[-127.79392100695004,52.778462232940946],[-127.79393577056327,52.77863688587125],[-127.79395937325957,52.7788231697593],[-127.79400115267028,52.77899965137821],[-127.79401704935259,52.7791793359729],[-127.7940320251402,52.7793590256669],[-127.7940451452691,52.77953875269748],[-127.79405548830336,52.77971851322576],[-127.79406116022112,52.77989778917211],[-127.79405571879342,52.78007780011192],[-127.79403820426876,52.7802579867636],[-127.7940197692975,52.780438196438624],[-127.79405278706236,52.780627143099345],[-127.79407685637976,52.780802209444566],[-127.79411112807527,52.780977128650626],[-127.79414447898435,52.781152052950134],[-127.79418781200233,52.781321228392095],[-127.79420671369296,52.78150590682585],[-127.79426614707795,52.781682674021994],[-127.79432647831885,52.78185887141363],[-127.79438499235725,52.78203566155837],[-127.79443611360853,52.78221367682751],[-127.79447996656707,52.7823951752908],[-127.79453480122939,52.78257313366683],[-127.79462083213103,52.78274165546992],[-127.7947710427204,52.782890693789284],[-127.79497996503524,52.78302201808855],[-127.79518254870321,52.78315735812021],[-127.79534852553623,52.78330559834985],[-127.79550907543162,52.78345727551093],[-127.79566412829024,52.78361072262761],[-127.7958146048185,52.78376592562225],[-127.79596326430479,52.78392171227385],[-127.79607245311468,52.78408874837552],[-127.79605120935564,52.78426843604889],[-127.79541357010096,52.78445531955581],[-127.7950356257912,52.7847665855817],[-127.79458766803148,52.78513552826472],[-127.79403960922862,52.78566461910912],[-127.79368369575852,52.7861913335963],[-127.79358833151214,52.78666306100649],[-127.79357427604978,52.78716885218311],[-127.79361586338361,52.78765025106216],[-127.7936311846674,52.78808160597496],[-127.79341361056947,52.78851876404651],[-127.79324424822526,52.78873265945765],[-127.79294066318302,52.788824739267625],[-127.79214288151748,52.78898266275691],[-127.79163460733866,52.789111496691156],[-127.7914029051037,52.78927870300168],[-127.79117033466069,52.78953616775648],[-127.79119390589385,52.78985473027407],[-127.79114587942647,52.79041484680138],[-127.79088314566518,52.79099450047257],[-127.7905854801292,52.79127257056335],[-127.79046888470485,52.79143857340563],[-127.79035886484608,52.79160616173163],[-127.7902591573028,52.791775834549036],[-127.79017348440432,52.791948100064666],[-127.79011117644241,52.792123927962415],[-127.790088085037,52.79230419738645],[-127.79004065368024,52.79248036315574],[-127.78994467958994,52.79265053460556],[-127.78982434114285,52.792816037659165],[-127.7896794800023,52.792972390632656],[-127.7895044250393,52.79311798498927],[-127.78934073572583,52.79326845469221],[-127.78919604417864,52.793429288405875],[-127.7891409605856,52.793599956329246],[-127.78918570004133,52.793780876752976],[-127.78917553995458,52.793959836461816],[-127.78914027311323,52.79413804909901],[-127.78909665815085,52.794316397988446],[-127.78904555340166,52.79449373108846],[-127.78898793349899,52.794670607479006],[-127.78891813400993,52.79484487152185],[-127.78883901125737,52.795018712678015],[-127.7887617359083,52.79519196059623],[-127.78869756054982,52.79536781568586],[-127.7886501818363,52.795545100603654],[-127.78858978942307,52.79572257492125],[-127.78856568358658,52.795901181942256],[-127.78871130820156,52.79605086203119],[-127.78896343351546,52.79614790778994],[-127.78920480259195,52.796254641109414],[-127.78941450639579,52.79638147898321],[-127.78961701860152,52.796514031213306],[-127.78982312867176,52.796643730186986],[-127.79004456116435,52.79676197601299],[-127.79030104674396,52.796852226413804],[-127.7905611532916,52.796940178993],[-127.79080243724594,52.797044677361406],[-127.79103017839155,52.79715834105696],[-127.79130086593048,52.797232678454925],[-127.79156621862931,52.79731270172525],[-127.79183338224942,52.797391575744165],[-127.79210402564587,52.79746479099292],[-127.7923738196528,52.79753970459429],[-127.79264186019745,52.79761744240425],[-127.79290721779945,52.79769746262203],[-127.79316462723982,52.79778712778239],[-127.79340956549896,52.797889879058616],[-127.79367217193489,52.797970504622405],[-127.79395511489065,52.798026712575826],[-127.79417826688587,52.79814156147493],[-127.79448759144302,52.79829489202718],[-127.794634533811,52.79838680864612],[-127.79463575809449,52.79848207522762],[-127.7945897010435,52.79864644626766],[-127.79453500932463,52.798826087371936],[-127.79454367556683,52.79901035536351],[-127.79451867169546,52.79918897731468],[-127.79449555686493,52.79936869134578],[-127.79447429037326,52.799547821060266],[-127.79445300847027,52.79972694201514],[-127.79442897197738,52.79990667005848],[-127.7944152452798,52.79999992320653],[-127.79440303114636,52.800085306196266],[-127.79437525676568,52.80026453533194],[-127.79434653731664,52.800443213905375],[-127.79431782612255,52.80062244833812],[-127.79428910619254,52.800801126855994],[-127.79420623300533,52.800973907479],[-127.7941261759524,52.80114720993534],[-127.79406106888416,52.80132251674226],[-127.79401001494763,52.80150041559271],[-127.79398127828229,52.80167909416085],[-127.79399076121389,52.80186055131934],[-127.79405748601516,52.80203328619434],[-127.79420925848333,52.80210719343713],[-127.79408124214585,52.80235521512394],[-127.79393735580372,52.802513234241104],[-127.79375082749797,52.80265172705954],[-127.79353297948327,52.802774439323244],[-127.79331127507002,52.80289385606361],[-127.79312013088034,52.80303297435402],[-127.7929049786039,52.803153411135945],[-127.792640906575,52.803237592966326],[-127.79236091790669,52.80329679932491],[-127.79207188197817,52.80333989318154],[-127.79183070479876,52.8034382964391],[-127.79168778952669,52.80359741867364],[-127.7915476985949,52.80375761857603],[-127.7915254108069,52.80393507663681],[-127.79159222290231,52.80411005324235],[-127.79170239112172,52.80427764177585],[-127.79179045287327,52.80444949575819],[-127.79185369341391,52.80462788971896],[-127.79186326176247,52.80476730336471],[-127.79189457696172,52.80498205673477],[-127.7919484619985,52.805158916458176],[-127.7920153010668,52.80533444834288],[-127.79209780285107,52.80550694295655],[-127.7921895596233,52.805678175150014],[-127.79227022917394,52.80585126259196],[-127.79231673426622,52.80602934683795],[-127.79229259116707,52.806206833153034],[-127.79224618362066,52.80638522448495],[-127.7922155938085,52.80656393019719],[-127.79219058424367,52.806743106663724],[-127.79216841533444,52.80692336968048],[-127.79217779766402,52.80710258581358],[-127.79229067531513,52.80726789025037],[-127.79244587344196,52.80742301518372],[-127.79263746798875,52.807559656933925],[-127.79283554832928,52.80769563430463],[-127.79302721573983,52.807833951329336],[-127.79313354322984,52.80799823404597],[-127.79315693822498,52.80817891292889],[-127.79314686175583,52.80835954724592],[-127.7931711549456,52.80853965634891],[-127.79320675781997,52.80872352057438],[-127.79328550016844,52.80889438561944],[-127.79345035191055,52.80903591870641],[-127.79367933558449,52.80915516345105],[-127.79390289828095,52.8092784185969],[-127.79406800382935,52.80942555193262],[-127.7942021071241,52.809587167001915],[-127.7943426258416,52.809746441832125],[-127.79449148796567,52.8099050239288],[-127.79469922863028,52.81002739854063],[-127.79495319850288,52.81012216182135],[-127.7952090418568,52.810216895904304],[-127.79542099211403,52.810306696007764],[-127.79564682157732,52.81046130109895],[-127.79579975787946,52.8105620924623],[-127.79602277062207,52.81073803885932],[-127.79620623716043,52.810879839281604],[-127.79640693454623,52.811011286706325],[-127.79662312332931,52.81113521464961],[-127.79684742869009,52.811253403986186],[-127.79707799381742,52.81136590103983],[-127.79732207427868,52.81146809273768],[-127.79757692417044,52.81156115998716],[-127.79782906685949,52.8116559451765],[-127.79808039224797,52.81175354036226],[-127.79834048779743,52.81183867864926],[-127.79862002591364,52.81189996852306],[-127.79890833370135,52.811948801332726],[-127.79918865304616,52.812006714909714],[-127.79942712265324,52.81210787631265],[-127.79960526086175,52.81225479325463],[-127.79974491952855,52.812415195970296],[-127.7999328680855,52.812552437998775],[-127.79999993043573,52.81257775732604],[-127.80018685602107,52.81264663391852],[-127.80046372657561,52.81271076738251],[-127.80074956999341,52.81276691555576],[-127.80103445410685,52.81282251278236],[-127.80131311395438,52.812884939803915],[-127.80157841701791,52.812961014195636],[-127.80182232858529,52.813058724312704],[-127.80204573706638,52.8131769177146],[-127.8022575143672,52.813305943261525],[-127.80246564884133,52.81343671036055],[-127.8026664009865,52.81356870251908],[-127.80286412540669,52.813716999776894],[-127.8025703566779,52.81369348725006],[-127.80227655583029,52.813668853490135],[-127.80198198479626,52.81364815879375],[-127.8016856271526,52.813629167798574],[-127.8013882151338,52.81360738527025],[-127.80109096047474,52.81358897153162],[-127.80079498175472,52.81357894044557],[-127.80050246723337,52.81358510541346],[-127.80021195217446,52.81361646585047],[-127.79999993000972,52.81365783167909],[-127.79992619128947,52.813672414532945],[-127.79964840361801,52.81374113616606],[-127.79938890752236,52.81382470562298],[-127.79914613745517,52.81393043796586],[-127.7988945505619,52.81402565099462],[-127.79862743178384,52.81410485156491],[-127.79837389101486,52.81419786035759],[-127.79813776717386,52.81430685165875],[-127.79790072926507,52.81441641247417],[-127.79764614550753,52.81450662863425],[-127.79735096914389,52.814559917088346],[-127.7971549344773,52.81460607278645],[-127.79714389235909,52.81471890613794],[-127.7973857329784,52.81498816000457],[-127.79754474065737,52.815144349756],[-127.79769171373857,52.815301835651525],[-127.79784648918289,52.81544575890324],[-127.79801781983643,52.81558550037884],[-127.79824403396117,52.815704222863914],[-127.79842841831515,52.8158448847443],[-127.79860278256895,52.81599018386308],[-127.79880264568803,52.81612331702925],[-127.79901430994033,52.81624955199124],[-127.7992177880616,52.81637983105948],[-127.79941311240422,52.81651527477192],[-127.7995920490797,52.81665882534729],[-127.79977279711693,52.816801217919384],[-127.80000063760268,52.81698044575047],[-127.80034459358117,52.817267749385],[-127.80049063939013,52.81742469004248],[-127.80063482846214,52.81758165900336],[-127.80083265885101,52.81771034497192],[-127.80111226282344,52.817772193293386],[-127.80139873146996,52.81782048369555],[-127.80167736821114,52.81788122454261],[-127.80196042983897,52.81793684785614],[-127.8022484510672,52.81797783040818],[-127.80254225770877,52.81800189955606],[-127.80283781925449,52.818023143020525],[-127.80313249207927,52.8180455203907],[-127.80342625272527,52.818068476021494],[-127.80372181517188,52.818089717259554],[-127.80402088929625,52.81810641981146],[-127.80429574473533,52.81816552666255],[-127.80455417601655,52.81825404018357],[-127.80480205332042,52.81835672336163],[-127.80503540071676,52.818467476426946],[-127.8052570210747,52.81858681236899],[-127.80546962910248,52.8187124564769],[-127.80568137330685,52.818839799471654],[-127.80589577944397,52.81896429417115],[-127.80610747837952,52.8190905071508],[-127.80630010539406,52.81922711116017],[-127.80648819986,52.81936658261719],[-127.80667357223612,52.819507772683295],[-127.80685440376854,52.819651283315814],[-127.80696694453633,52.81980648993082],[-127.80712050245741,52.819964427942374],[-127.80729099606813,52.82012714498352],[-127.80745585759668,52.82026641661923],[-127.80756798772546,52.82043395990088],[-127.8076764412595,52.820602115702805],[-127.8077821016787,52.820770323383975],[-127.80787301777013,52.82094155604867],[-127.80796398205209,52.82111390888576],[-127.8080613711361,52.82128447671075],[-127.80818443168927,52.82144624604809],[-127.80833597607378,52.82160029449063],[-127.80850678522583,52.8217484320056],[-127.80869876717722,52.82186934819457],[-127.80889228872621,52.82200480428455],[-127.80912803696657,52.822149707180046],[-127.80928437739496,52.822285179647686],[-127.80949457732487,52.8224192567088],[-127.80971631698554,52.822540268571565],[-127.80994800847118,52.82265496560937],[-127.81019213677709,52.822756009541926],[-127.81045839145584,52.82283093787177],[-127.81074685773315,52.82288141716853],[-127.8110282013883,52.82293928761881],[-127.81127853556832,52.823032951628726],[-127.81150663653526,52.82315049905879],[-127.8117301577328,52.82326980271125],[-127.81195362350162,52.82338742083101],[-127.81221915353495,52.823466831433976],[-127.8125064282135,52.82351116390518],[-127.81279456837623,52.82355379634298],[-127.81307683209592,52.823611091750095],[-127.81336656954792,52.82364752818545],[-127.81366039901171,52.823627295025325],[-127.8139542362412,52.82358520612109],[-127.8141176104995,52.82355745465093],[-127.81416689539334,52.823667115327595],[-127.81415731009096,52.82376982985709],[-127.81411000560307,52.82394712179301],[-127.81409253411596,52.82412675066541],[-127.81408157324503,52.824306278902526],[-127.81404266911919,52.824484552948675],[-127.81398042685738,52.82466038958734],[-127.8139340422741,52.82483766710988],[-127.8138856083157,52.82501048331682],[-127.81385508089646,52.82518919274713],[-127.81384311873168,52.82534519546039],[-127.81383247297737,52.82555386443074],[-127.81385773727132,52.825732832755634],[-127.81390804680886,52.825910293091695],[-127.81392683946254,52.82608992634225],[-127.81395304099229,52.826268880114796],[-127.81399128077025,52.82644652686314],[-127.81392344598339,52.82662244961607],[-127.81383875880935,52.8267952697029],[-127.81378952856683,52.82697146088788],[-127.81373127708031,52.82713210649666],[-127.81371850331126,52.827312783316685],[-127.81372879792752,52.827489175780954],[-127.81371604804123,52.82767041716761],[-127.81362522758106,52.827852299611195],[-127.81345693224952,52.828005111966085],[-127.81325625952607,52.828139923297364],[-127.81303245347279,52.82825547866747],[-127.8127962032246,52.828362822795775],[-127.81255234280721,52.828465790989334],[-127.81230467859963,52.82856714036919],[-127.81205893394478,52.82866958056377],[-127.81181893839839,52.82877641545214],[-127.81159232151248,52.82889145528587],[-127.8113887487256,52.829024065965925],[-127.81119375867803,52.82916159278904],[-127.81098528368099,52.829288117383165],[-127.81073252114987,52.82937889700417],[-127.81044407860837,52.829439394617566],[-127.81019976373535,52.82953227579301],[-127.81002170656197,52.829674588382474],[-127.80986947956956,52.829833873310854],[-127.80972457492004,52.82999080316807],[-127.80959100029126,52.83015147715763],[-127.80944797584337,52.830308942607445],[-127.80927661427793,52.8304556256966],[-127.80909109274542,52.83059748673211],[-127.80892724281495,52.830746304445974],[-127.80881815429107,52.83091444704157],[-127.808715609722,52.831083618648975],[-127.80855552052311,52.83123348983281],[-127.80836149536881,52.831372117585126],[-127.80814446490817,52.83149484946609],[-127.80789464427843,52.83158949621476],[-127.8076922048188,52.83168341293738],[-127.80744919997204,52.83180765536991],[-127.80718373037519,52.831950187758416],[-127.8069991400092,52.83204831242507],[-127.806773793699,52.83217228160304],[-127.80655509735689,52.83227765624949],[-127.80629965487344,52.83237182992333],[-127.80604707732454,52.83246763594251],[-127.80579640451802,52.8325645330846],[-127.8055524557892,52.832666366210326],[-127.80532295880953,52.83278031638638],[-127.80509826506325,52.83289811120112],[-127.80539373795209,52.83311271608229],[-127.80534394687932,52.833298443825605],[-127.8053041001276,52.83347729272971],[-127.80525487471964,52.83365460879764],[-127.8051756901366,52.833826771528614],[-127.80507688857274,52.833997002752106],[-127.80499304887682,52.83416923686363],[-127.80491391869721,52.83434308445113],[-127.80484600140745,52.834517880588024],[-127.80478929128992,52.83469419035829],[-127.80474381783537,52.834872004358445],[-127.80471420529847,52.83505125153132],[-127.8047032495544,52.83523189788877],[-127.80470165791644,52.835414086260315],[-127.80469815990187,52.83559517396092],[-127.80468155725211,52.835774230050355],[-127.80464065000814,52.835950287731336],[-127.80456134941984,52.8361202184819],[-127.80443992842507,52.836283505550256],[-127.8042960607981,52.83644377442325],[-127.80414559954018,52.836601902431674],[-127.80400634503202,52.83676153503425],[-127.80386719947221,52.83692341669285],[-127.80371189138565,52.83707713458336],[-127.8035231955943,52.837211187397806],[-127.80328783209461,52.83731905303899],[-127.80302864936324,52.83741326718935],[-127.80277112030184,52.83750298041037],[-127.8025028776298,52.83758108273637],[-127.8022375475699,52.837661937692175],[-127.80197513944685,52.837746119094234],[-127.80170291598301,52.83781811075734],[-127.80141687688393,52.83787126605144],[-127.80116298792385,52.8379592338353],[-127.8009432406812,52.83808479068968],[-127.8007039354321,52.8381876624878],[-127.8004265241062,52.838246843892406],[-127.80013537702663,52.83828942053012],[-127.80000054186213,52.83831166495378],[-127.79984726120864,52.83833755486144],[-127.79957589647402,52.83840785131208],[-127.79931454219825,52.83849537335961],[-127.79905891926107,52.83858616096236],[-127.7988052573861,52.838679724872634],[-127.79855356247069,52.838775500039716],[-127.79830185155537,52.83887127488927],[-127.79804724096684,52.83896429561808],[-127.79779262889043,52.83905730682744],[-127.79754961687804,52.83916079365325],[-127.79730422438634,52.83927384915779],[-127.7971371885564,52.839414841421686],[-127.79705032216823,52.83958263999921],[-127.79699836869064,52.83976222600938],[-127.79696050506968,52.839944968265534],[-127.79692060209734,52.84012381379284],[-127.7968890942449,52.84030308683278],[-127.79687158221095,52.84048327563842],[-127.79687539143671,52.840662008251606],[-127.7969358878335,52.84083988245613],[-127.79707456646328,52.84099693876181],[-127.79725460541809,52.841142152210146],[-127.79734446760936,52.84131060002197],[-127.79739108011775,52.841489807417766],[-127.79746171621977,52.84166527520925],[-127.79754251349257,52.84183891044678],[-127.79764999821452,52.84200597625714],[-127.79777497028896,52.84216884638443],[-127.79790915819962,52.84232933334736],[-127.79805346916986,52.84248742322684],[-127.79820597335198,52.84264145959214],[-127.79837583889102,52.84278794807407],[-127.79855946595075,52.84292974167799],[-127.79874399282379,52.84307096521709],[-127.79891850180562,52.8432173818119],[-127.79905176041282,52.843377881712954],[-127.79909089894856,52.843556072888354],[-127.7990677707739,52.84373522682675],[-127.79897932734882,52.84390976737584],[-127.79894864433494,52.844086230043985],[-127.79896661026997,52.844269794339745],[-127.79901788771677,52.84444892945351],[-127.79912602294259,52.84460924906001],[-127.79934253167085,52.84473653007251],[-127.7995816334524,52.844848326917],[-127.7998141514388,52.84495853823417],[-127.79999042769033,52.84510212820717],[-127.80000102303711,52.845110933605916],[-127.80015584331042,52.84525316621518],[-127.80030292118121,52.84541008993657],[-127.80043066204748,52.845571793781964],[-127.80054736770575,52.84573646460227],[-127.80065859210453,52.84590347024732],[-127.800766122732,52.84607108841653],[-127.80087184244856,52.84623985522003],[-127.80097753915952,52.84640805730615],[-127.80108783002062,52.846575076840374],[-127.80120364270195,52.84674032564754],[-127.80132223747546,52.846905531670444],[-127.8014408804862,52.847071857801964],[-127.80155861090648,52.84723875380937],[-127.80167723229238,52.847404524025244],[-127.80179865033222,52.847570242249795],[-127.80192277975517,52.84773424177798],[-127.80205145585055,52.8478959294758],[-127.8021856305272,52.848055290724204],[-127.80232618760486,52.848211755942515],[-127.8024813344541,52.84836126231425],[-127.80270875166437,52.84848220004564],[-127.80297301165281,52.848572305618134],[-127.80325144907304,52.84862352394333],[-127.80355271450541,52.84864299494898],[-127.80385308194967,52.848663043946125],[-127.80414815653624,52.8486898993032],[-127.8043865821038,52.84878488243712],[-127.80459588064612,52.8489167486405],[-127.80480786661582,52.84904632227709],[-127.80503067744971,52.849167891365035],[-127.80528023887896,52.84926213663467],[-127.8055539448547,52.849333599795365],[-127.80583905591901,52.849388628421224],[-127.80612982833844,52.849423391826434],[-127.80643295992843,52.8494428268493],[-127.80673226669263,52.84943766751254],[-127.80700841987249,52.84939082266812],[-127.80725815683047,52.849291697911156],[-127.80750663811092,52.84918474511529],[-127.8077771122475,52.84911388041506],[-127.8080692477325,52.84907127093457],[-127.80836614604335,52.849053248793254],[-127.80865383697089,52.84908132755907],[-127.8089416754671,52.84913462972819],[-127.80924106435273,52.849153559133335],[-127.8094752196287,52.84925700071487],[-127.80970703162394,52.84937113167062],[-127.80996747484258,52.849458482626346],[-127.81023671562059,52.84953392273462],[-127.8105168507767,52.849603024481034],[-127.8108045427561,52.8496748159929],[-127.81106311831385,52.849630474499904],[-127.81130522014928,52.84952697485647],[-127.8115448102806,52.84940781979234],[-127.81179344825458,52.84930478325904],[-127.81205692545872,52.84922280679582],[-127.81232618486419,52.84914523337322],[-127.81259159084391,52.84906491185807],[-127.81285991087745,52.84898734270209],[-127.81313514948265,52.84891919888927],[-127.813423607586,52.84887775372559],[-127.81371942233872,52.8488563718016],[-127.81401679327425,52.84884953777252],[-127.81431144661887,52.84886628544703],[-127.81460159538244,52.84890832840528],[-127.81488758059314,52.84896163577241],[-127.81517117580921,52.849024512161975],[-127.8154222128185,52.84910918961839],[-127.81558209741914,52.849259736081564],[-127.81583728428974,52.84935443730953],[-127.81609061310505,52.849449166722486],[-127.81634661979791,52.849541047269604],[-127.81660872191557,52.849623309193504],[-127.81688848654426,52.84968344280426],[-127.81717432173168,52.84973338409633],[-127.81745063186534,52.84979973071253],[-127.81772694285854,52.849866076676236],[-127.81800497064901,52.84992903250138],[-127.81824327603661,52.8500419255001],[-127.81835059959867,52.85020280570854],[-127.81839361531505,52.85038261694784],[-127.81859753943756,52.85051846099174],[-127.81887579311385,52.85056459667955],[-127.81917591864068,52.85057844965965],[-127.8194765837914,52.85058331674035],[-127.819778286739,52.850568554373744],[-127.82006803592137,52.85057920290007],[-127.82033608776052,52.85066976731669],[-127.82045452844794,52.8508293524313],[-127.82051450234549,52.851013949035405],[-127.82060101267243,52.85118803656387],[-127.82077608864351,52.851323203054456],[-127.82099321144088,52.85144090284571],[-127.82123132693671,52.851549308967876],[-127.82148313270373,52.851651341451735],[-127.82173853841182,52.851750510655044],[-127.82198932826236,52.85185030691299],[-127.82224089826792,52.85194673658425],[-127.8225049574569,52.852030632256145],[-127.82277600017305,52.85210377419152],[-127.82305600508785,52.852168929590675],[-127.82334249008595,52.85221156421953],[-127.82363782923181,52.85222211735244],[-127.82393688968405,52.85221074843322],[-127.82423194383375,52.85219271510353],[-127.82452564414496,52.85216461326231],[-127.82481928125651,52.852135390684914],[-127.82511378294119,52.85210446798422],[-127.82540934136034,52.85207633504494],[-127.82569979946929,52.85208135394884],[-127.82598331124996,52.85214139905319],[-127.82626226447415,52.852203765276926],[-127.82653507807096,52.85227462916311],[-127.82680175217283,52.85235399075324],[-127.82706927768085,52.8524316615244],[-127.82735269809154,52.852489471810195],[-127.82761921614659,52.85256547107195],[-127.82785459741774,52.852674471565095],[-127.8280819561524,52.852791434322754],[-127.828306616146,52.852910689577676],[-127.82854731468929,52.8530134360961],[-127.82882545083899,52.853078042054115],[-127.82911127508132,52.85312684292872],[-127.82940428769837,52.853169361307636],[-127.82967675199616,52.85323181165052],[-127.82978984897467,52.85339595489176],[-127.82980973901101,52.853577808543164],[-127.82999508791846,52.85371280168418],[-127.83025647296867,52.85379896386268],[-127.83050283166705,52.853903304234905],[-127.83070557612682,52.85403185536026],[-127.83078936189649,52.854206543227455],[-127.83075605465892,52.854384176842565],[-127.83064615117173,52.854554601199276],[-127.83046143686114,52.85469423875172],[-127.83026250364577,52.854827927648536],[-127.83015890525108,52.854993769312465],[-127.83008647446408,52.85517032613423],[-127.82999897566135,52.85534264266026],[-127.8298823733799,52.85550867758593],[-127.82977886799846,52.85567675929934],[-127.82969892473099,52.85585175578999],[-127.8296358359821,52.85602928766512],[-127.82961551499142,52.85620616240492],[-127.82959359853483,52.85638922285061],[-127.82966243616875,52.85654060355459],[-127.82975202614159,52.856698942864064],[-127.82969535630023,52.85687414170423],[-127.82969883953001,52.85710725042337],[-127.82972633663972,52.8572710406327],[-127.8297422836647,52.85744735040463],[-127.82977789278883,52.85764857139362],[-127.82978401323615,52.85781269447045],[-127.82979989775004,52.85798788417936],[-127.82983270137832,52.85816672928802],[-127.82986270849304,52.85834561792701],[-127.829865768434,52.858525482247785],[-127.82986044387047,52.85870492113211],[-127.82984775320956,52.858886160664944],[-127.82984336576274,52.85906558491057],[-127.82991597602248,52.85923988202366],[-127.83001640914529,52.85941206874356],[-127.83014983538632,52.859572531703776],[-127.83033799342617,52.859707480456926],[-127.8305691493361,52.859825509359396],[-127.83077109597889,52.85995631471033],[-127.83091274339769,52.86011328579511],[-127.83103433547095,52.86027953704988],[-127.83117417338964,52.86043765699261],[-127.83137629339971,52.86057238651791],[-127.83158378631352,52.860702548051684],[-127.83170777972565,52.860859793390055],[-127.83176290976198,52.86103828973182],[-127.83181988507316,52.86121675726605],[-127.83190180595152,52.861390916909045],[-127.83201314544311,52.86155676201155],[-127.8322070659622,52.861695545873964],[-127.8324838364802,52.861748399343284],[-127.83278655479533,52.861777306978226],[-127.83300978180523,52.861861816706195],[-127.83304564912915,52.862046782780446],[-127.83304968434288,52.862227196567005],[-127.83303239717522,52.86240961994893],[-127.83314574619497,52.86255694105749],[-127.83340640997316,52.86247328496178],[-127.8335777929096,52.86232600506453],[-127.83384709589134,52.86224838296773],[-127.83413657035045,52.86220742853428],[-127.83443347697487,52.862187664819416],[-127.83472014439143,52.862146196753265],[-127.83499881491959,52.86207010266245],[-127.83521544469454,52.86195798477126],[-127.8353215574296,52.861785939185694],[-127.83547404454833,52.86163222561794],[-127.83567962995018,52.86150122273935],[-127.83591692858418,52.861393820428475],[-127.83620465733344,52.86124752531315],[-127.83641577285405,52.86124534681954],[-127.83668866116567,52.86131618672431],[-127.83695978722437,52.86138929550927],[-127.83723274958008,52.86146180999487],[-127.83750566496828,52.86153321258425],[-127.83777770676039,52.86160574022292],[-127.83804794753156,52.86167998136484],[-127.8383164410188,52.8617564911859],[-127.83858137044638,52.86183698407478],[-127.83884643635295,52.86192027219848],[-127.83911170568568,52.86200859646063],[-127.83936614699951,52.862104380472296],[-127.83960156261067,52.86221223655446],[-127.83980512742349,52.86233684057405],[-127.83997250445256,52.86248498646362],[-127.84011534923165,52.86264697699254],[-127.84024798299154,52.862809683274534],[-127.8403547894139,52.86297727783399],[-127.84044595027059,52.86314903628455],[-127.84056653012291,52.863312495973425],[-127.8407284888858,52.86346465356791],[-127.84090599820343,52.86361039746321],[-127.8411023427202,52.863739596312755],[-127.84126352493627,52.86385197519892],[-127.84152804046985,52.86396553241603],[-127.84182230773521,52.86405675919738],[-127.84213934766363,52.864136427454625],[-127.84239248213117,52.86415879717264],[-127.8427372866883,52.86410575332742],[-127.84303000318226,52.86411797711382],[-127.84326029745203,52.86421468764661],[-127.84345368328414,52.86436130870197],[-127.84367748545391,52.864479983809204],[-127.84391480894874,52.864588357535595],[-127.84415304658232,52.8646961514757],[-127.84438853707745,52.86480511800812],[-127.8446231395003,52.864915210029714],[-127.84485686951699,52.86502644523551],[-127.84509148924558,52.86513653607322],[-127.84532971842584,52.865244336786205],[-127.84557158602853,52.86534982896221],[-127.8458052964556,52.865460497663165],[-127.84602186549603,52.86558376594052],[-127.84620756049297,52.86572433355122],[-127.84635848628137,52.86587889890989],[-127.8464911202738,52.866040477366376],[-127.8465823127866,52.86621223968655],[-127.84674215294488,52.86635769666095],[-127.84695435366896,52.866487192800186],[-127.84712443310818,52.866632488330985],[-127.84723772988539,52.86679885380962],[-127.84735568481383,52.86696514594661],[-127.84750120946667,52.86712372266009],[-127.84771858359885,52.86724361230639],[-127.84794778876365,52.86735714566059],[-127.84818154084029,52.867468374083444],[-127.84841894099274,52.867577858722825],[-127.84865810516177,52.867685073191765],[-127.84889997996555,52.867790558590045],[-127.84914182263962,52.867894931999786],[-127.84940347912394,52.86798441144473],[-127.84967751539902,52.86805856676787],[-127.84984997989707,52.868194297101404],[-127.84992330911324,52.868361289196194],[-127.84998913660029,52.86854857690031],[-127.85002588403096,52.86873071747692],[-127.8500773809057,52.86890926289851],[-127.85027330059353,52.86902779975076],[-127.85054580137691,52.86910926813277],[-127.8508238691669,52.869276398387],[-127.85107719946912,52.869366570319976],[-127.85134847417753,52.86944132137121],[-127.85159033220951,52.869545689634585],[-127.85170631442863,52.86964475003243],[-127.85201530519416,52.86979513165911],[-127.85225719101054,52.869900054150726],[-127.85250710004628,52.86999700285202],[-127.85276148270816,52.87008996157312],[-127.85301769233827,52.87018176100504],[-127.85327115462047,52.8702747331595],[-127.85352469088284,52.87036938059292],[-127.85377011823708,52.870470316286195],[-127.85401379939242,52.87057352994713],[-127.85426282761892,52.87067160987177],[-127.85453049351435,52.87074865262957],[-127.85480528409242,52.87081830048124],[-127.85509030980869,52.87086648758799],[-127.85538696731503,52.87088254702813],[-127.8557183988622,52.87082070027289],[-127.85597140919687,52.87073207560611],[-127.85618149610292,52.87059815930107],[-127.85644299325836,52.87053349605347],[-127.85674923758815,52.870534827884676],[-127.85704333016106,52.87055596356013],[-127.85733694907674,52.87058775079318],[-127.85763315622039,52.87061502144468],[-127.85792501355616,52.87064907702142],[-127.85820296778944,52.87070578023588],[-127.8584547551589,52.87080268683191],[-127.85856410184918,52.87087718410884],[-127.85865894753032,52.87089641773576],[-127.85898810195634,52.87091083317915],[-127.85930742405404,52.87093436211809],[-127.85961113301731,52.87094133154297],[-127.85991129277743,52.870952275295046],[-127.86020455008689,52.87097565830217],[-127.86048295761388,52.8710211302668],[-127.86074860587392,52.87109427206052],[-127.86100132393656,52.87119115857039],[-127.86124083351565,52.87130506841598],[-127.86146404364028,52.87142932476289],[-127.86167068541978,52.87155777106233],[-127.86186638768889,52.87169143023634],[-127.86205484640902,52.87182968777386],[-127.8622369744131,52.871971964270934],[-127.86241640426336,52.872116534174666],[-127.86259399945997,52.872261688892394],[-127.86277065834648,52.87240685818801],[-127.8629510046821,52.87255084779479],[-127.86311776058207,52.87270345543089],[-127.8633277174019,52.87282231353827],[-127.86359174219568,52.872900523705816],[-127.86386745940594,52.87296957106658],[-127.86414771311891,52.87303574787448],[-127.86442255884594,52.873105937724944],[-127.86469836732266,52.87317666767486],[-127.86497599732125,52.87324680311125],[-127.86524191228003,52.87332553565333],[-127.86547264044346,52.87342948764743],[-127.86562755558649,52.873587893639204],[-127.86566252297577,52.87379135672836],[-127.8657003037662,52.87397403253668],[-127.86571745089189,52.874153116920695],[-127.86568501502703,52.87432626249757],[-127.86559003271948,52.87449536093943],[-127.86538925103346,52.874650435825835],[-127.86524054575139,52.87480412789059],[-127.86506958119755,52.874938560329504],[-127.86486012902932,52.87506574735265],[-127.86464214045994,52.875189150462994],[-127.86441559077484,52.875308205033306],[-127.86418421036157,52.87542341682092],[-127.86394891174704,52.875534197387154],[-127.86371150706933,52.87563941493462],[-127.86344795071864,52.875721497121354],[-127.86316494835454,52.87578427435161],[-127.86288357043466,52.87584198522932],[-127.86259913926494,52.87589357395219],[-127.8623117039072,52.875940160698896],[-127.86202320816155,52.8759839655748],[-127.86173360314604,52.87602386837189],[-127.86144198071035,52.87605987449807],[-127.86115031824383,52.87609531555466],[-127.8608596664586,52.87613242582453],[-127.86057104585322,52.876173431110615],[-127.86028360639207,52.87622001289056],[-127.85999718719627,52.87626882872824],[-127.85971071807107,52.87631651470391],[-127.8594232375804,52.876362538991884],[-127.85913282680609,52.87640524599215],[-127.85883948020117,52.87642333726422],[-127.85854133793438,52.87641684220293],[-127.85824533450486,52.87639518390914],[-127.85794892541364,52.876364554529026],[-127.85766545167344,52.876310188487736],[-127.85743005897469,52.87620573015609],[-127.85721958955581,52.87607510412464],[-127.85696134320109,52.87597997377816],[-127.85669234078438,52.875915844045316],[-127.85639811381766,52.87589246715728],[-127.8561072153429,52.875923964668615],[-127.85586243159842,52.87600966101309],[-127.85555947422297,52.876085065499296],[-127.85530757152112,52.87613556687408],[-127.8550063129401,52.87618571671511],[-127.85473337318848,52.87624495165647],[-127.85447088004065,52.876330368462085],[-127.85450165831942,52.87663142438801],[-127.85450694250514,52.87681685741265],[-127.85442858026471,52.876983997613834],[-127.8542383481654,52.87712599925427],[-127.8539956706651,52.877239126538825],[-127.85372472932009,52.877301690363616],[-127.85343690957535,52.87733985832983],[-127.85313926086627,52.87736640586519],[-127.85283974213057,52.877392426117034],[-127.8525471410355,52.87742786930749],[-127.85226508273189,52.877491725891154],[-127.85205999482477,52.8776132154776],[-127.85193090393747,52.87776994335174],[-127.85187908685437,52.877948438004466],[-127.8518701317024,52.87812793430436],[-127.85182950061014,52.87830680865227],[-127.8517085054051,52.87847853723237],[-127.85160003000578,52.8785099562085],[-127.8514415039545,52.87850348550703],[-127.85113849510815,52.878492564245185],[-127.85085610034959,52.87852727735851],[-127.8506455925871,52.87865277747376],[-127.85056395287013,52.87883061093743],[-127.85031462863718,52.87891972952507],[-127.85006304018901,52.879021213854394],[-127.84987290922406,52.87912285142081],[-127.84968245791362,52.879260364686345],[-127.84949704276737,52.87938491172284],[-127.84929160802845,52.87952041810893],[-127.84909548928479,52.87965577755798],[-127.84889742082439,52.87978948138043],[-127.8486831314743,52.879913916206384],[-127.8484506390609,52.88002630621698],[-127.84822293499695,52.88014198335479],[-127.84802486192875,52.880275694628146],[-127.84783062029756,52.88041157827436],[-127.84763838404031,52.88052950355106],[-127.84742594782233,52.88065390678451],[-127.8471869619907,52.88081011386112],[-127.84704421286577,52.88093173533096],[-127.84689691613265,52.881076977306165],[-127.84669467615197,52.881200653935274],[-127.84647157134518,52.88131513420478],[-127.84626517077129,52.881450094013786],[-127.84603586730732,52.88161511418749],[-127.84580707383797,52.881641682201064],[-127.84550838784425,52.88162339645787],[-127.84521631937636,52.88158594071565],[-127.84493635429126,52.88152700493655],[-127.84466066050697,52.88145902478952],[-127.84463335944022,52.88164553332637],[-127.84459748410904,52.88182769251729],[-127.84457643552815,52.88200794205948],[-127.844594323001,52.88218477372732],[-127.84466502688132,52.88235572777546],[-127.8447672166272,52.882522833753335],[-127.84488890222666,52.88268850374587],[-127.84501890603057,52.88285293106232],[-127.84514523769084,52.883018527867115],[-127.84525579634723,52.88318550204956],[-127.84534141417242,52.88335678651897],[-127.84539467272181,52.88353306274201],[-127.84542387375377,52.88371307947238],[-127.84543639239463,52.88389447902182],[-127.8454385729327,52.88407379891085],[-127.84539039346518,52.8842511024182],[-127.84534412319341,52.88442950584196],[-127.84533724242954,52.88461457271434],[-127.845332635636,52.88478782927879],[-127.84535800962185,52.884965108042785],[-127.84546847673714,52.885129832458695],[-127.84559476876011,52.88529431730565],[-127.84573492730526,52.88545633342172],[-127.84588884133746,52.88561365851442],[-127.846054600895,52.88576518362619],[-127.84623396091577,52.885908092196104],[-127.84642958357571,52.88603953546442],[-127.84665163790922,52.886157676665015],[-127.84688916232409,52.88626771872972],[-127.84713307203253,52.88637486208294],[-127.8473742722854,52.88648373344437],[-127.84760273932586,52.88659952123613],[-127.84780752760341,52.8867274553445],[-127.84798322453993,52.88687153985101],[-127.84814075192453,52.88702599838241],[-127.84829460742064,52.887181635393695],[-127.84845936185474,52.88733094004238],[-127.84870375750158,52.88742741895976],[-127.84899903146687,52.88745192061763],[-127.84929690912813,52.88745059844943],[-127.84959185610583,52.88742466045575],[-127.84988125853057,52.8873780756305],[-127.85015287616666,52.88730822076946],[-127.85041556740717,52.88722561916581],[-127.85067419540985,52.8871352341731],[-127.85093091284678,52.88704375770477],[-127.85119152132475,52.88695614724256],[-127.85145316353825,52.88687075286164],[-127.85171476566948,52.886784802510796],[-127.85197640617206,52.88669941591805],[-127.85223901688381,52.88661512543329],[-127.85250264730321,52.88653306917026],[-127.85276919690097,52.8864537642192],[-127.853038641548,52.88637665494315],[-127.85331285132281,52.886302267841664],[-127.8535921923347,52.88623901779929],[-127.85387602421328,52.886193066738706],[-127.85417362133822,52.88616426836487],[-127.85447580789818,52.88615501821715],[-127.8547708813097,52.88617502461635],[-127.85504873752272,52.88622725395259],[-127.85531911572066,52.886300334034615],[-127.85558715020026,52.8863835391899],[-127.85585516113495,52.8864661791514],[-127.85612920567141,52.886537522565476],[-127.85641264786558,52.886589651572294],[-127.85670198605754,52.88662767919974],[-127.8569965560279,52.88665722072337],[-127.8572919024732,52.88668337738187],[-127.85758720083327,52.886708422065055],[-127.85788489211551,52.88672445149754],[-127.85818337528637,52.886737113731826],[-127.85847842984191,52.88675654624248],[-127.85876319998174,52.886796326985994],[-127.8590622234466,52.88688519523924],[-127.85928423785269,52.88698032947091],[-127.85947461068359,52.887097262116],[-127.85963012417083,52.88724725388919],[-127.85969671686568,52.8874289181364],[-127.85988820203114,52.88754976040151],[-127.86017442136287,52.88762257892443],[-127.8604448903791,52.88769732296575],[-127.86071801265751,52.88776867047172],[-127.86099023714637,52.887840587565236],[-127.86125914175965,52.887922080332956],[-127.86152888776878,52.88800132620943],[-127.86180869824278,52.88805518585726],[-127.86212504086454,52.888092772705484],[-127.86240789644731,52.88806699403166],[-127.86271121358607,52.888062188878266],[-127.86298088904557,52.88809714988666],[-127.86320186508034,52.88816818805331],[-127.86341461585701,52.88826402643481],[-127.86371868918073,52.88838306917594],[-127.86390171885117,52.888523095567464],[-127.86407204203607,52.88867060494487],[-127.86423417127334,52.88882216290685],[-127.86439355231282,52.888974894163624],[-127.86455288507815,52.88912649603809],[-127.86470214841867,52.889282185269906],[-127.86484775497004,52.88943905328208],[-127.86499247373298,52.889597056165364],[-127.86513168458556,52.88975683218043],[-127.86528460032599,52.889910776806644],[-127.86546860393892,52.89005134136061],[-127.86568288992753,52.89018190138521],[-127.8659158261255,52.890291978678164],[-127.86619668395076,52.89032675506775],[-127.86649852408235,52.89033037558491],[-127.86679497739873,52.890338555758625],[-127.86664883842832,52.89002084414447],[-127.86670727622007,52.88984560137403],[-127.86683477333717,52.889674310899984],[-127.86701997675483,52.88954470072144],[-127.86730318776219,52.8894847197044],[-127.86758810169457,52.889420783066576],[-127.86782924625052,52.88931437928396],[-127.86806558298264,52.88920469743031],[-127.86829908510236,52.88909393018133],[-127.86854513170942,52.88899306076977],[-127.86879790367827,52.88889712379949],[-127.86905159750002,52.88880117160747],[-127.86930723945751,52.88870686484142],[-127.86956588552731,52.888617558575504],[-127.86982949496303,52.888535463572836],[-127.87009725771865,52.88846282566049],[-127.87038102254013,52.88841571487564],[-127.87067692561514,52.888390264708036],[-127.87097571094445,52.8883670188323],[-127.87126435491881,52.88832486812826],[-127.87154462040104,52.88826156059498],[-127.87183566530229,52.88823170093033],[-127.8721322652677,52.88822249453744],[-127.8724311102575,52.888221663410356],[-127.8727284485975,52.88822925832565],[-127.87302418731868,52.88824248283294],[-127.87331919900222,52.88821816114234],[-127.87359970703515,52.8881604496427],[-127.87387609809787,52.88809382633198],[-127.87416315930277,52.88803712998441],[-127.87436902397236,52.887912218165475],[-127.87448566458195,52.887748938497694],[-127.87443138231231,52.8875732552194],[-127.87435538816979,52.88739062724295],[-127.87436288256632,52.88722236181931],[-127.87459625888366,52.88710934155552],[-127.87481415656842,52.88698312492241],[-127.8750111651642,52.88684770824603],[-127.87520532460304,52.88671121567895],[-127.87539565268625,52.886571976958315],[-127.87557936119136,52.88643061052254],[-127.8757526292276,52.8862849174807],[-127.87590698310653,52.88613224410366],[-127.87603093280525,52.88596604797044],[-127.87614353432963,52.885795539907114],[-127.87626755592169,52.88563101929031],[-127.87642398849857,52.88548336080151],[-127.87662505183341,52.88535572321128],[-127.87685556408147,52.88524162281609],[-127.87710422823572,52.88513788586506],[-127.87736065498771,52.88504131522709],[-127.87761633024577,52.884948674939906],[-127.8779082958036,52.88489805147676],[-127.87816283409477,52.884822242766376],[-127.87828386395913,52.884653283643445],[-127.87836936702202,52.884480964110615],[-127.87850847395704,52.88432068366954],[-127.87858097572119,52.884149136644375],[-127.87859344217078,52.88396733915719],[-127.87865651649822,52.88379314472415],[-127.8787785876409,52.883626966224526],[-127.8789424217859,52.88347862068076],[-127.87916998637257,52.883361208501015],[-127.87941109262707,52.883255345142985],[-127.87965998604501,52.88315720359901],[-127.87992036302174,52.883066159737915],[-127.88019217458083,52.88298110225812],[-127.8804449590238,52.88288682465713],[-127.88064910268355,52.88276641219503],[-127.88079861902924,52.882610446031435],[-127.88090355289256,52.88243558033466],[-127.88096753796138,52.882261360767906],[-127.88096986689702,52.8820819668107],[-127.88094970587329,52.88189956975584],[-127.88094826431437,52.881719115111146],[-127.88094590997467,52.881539240025454],[-127.88091106280568,52.88136156182005],[-127.88081602793802,52.88119100751454],[-127.88068048279263,52.88103063406808],[-127.88067796951842,52.88076276003449],[-127.88072115667576,52.8805810352448],[-127.88093468200704,52.88048345640591],[-127.8812306326544,52.88046078474909],[-127.8815081543381,52.88052639982486],[-127.88176015162645,52.88062549627714],[-127.88193108156386,52.88076512441822],[-127.88206198672222,52.88092557080109],[-127.88226787292554,52.881055670937755],[-127.88248831308105,52.88117769078914],[-127.88273754320491,52.88127739449259],[-127.88292968458174,52.88141219756499],[-127.88309825871146,52.88156138563891],[-127.8832914146865,52.88169785783679],[-127.88349822113753,52.88182737615864],[-127.88370321820106,52.88195805306906],[-127.88391092544211,52.88208700024339],[-127.8841231442174,52.8822125118089],[-127.88434441943983,52.882332272927556],[-127.88457561431626,52.88244458375585],[-127.88481404006717,52.8825523032502],[-127.88505695229631,52.882656022413826],[-127.88530256491619,52.882757455818606],[-127.8855499748494,52.88285773891359],[-127.88580182160564,52.882952901428325],[-127.8860563690695,52.88304578709246],[-127.88630911633379,52.88314037809132],[-127.88656463808663,52.88323435905959],[-127.88678492840303,52.88335245452246],[-127.88697813862537,52.883490031973025],[-127.88715216859838,52.8836357728505],[-127.88743473144635,52.883730438864575],[-127.88769827766134,52.883816450696465],[-127.88797372234126,52.88387647933019],[-127.88827906596234,52.883876059072094],[-127.88857114242673,52.8838915448969],[-127.88880114622575,52.883997705842944],[-127.889007480017,52.88413675515597],[-127.8892500391713,52.88423206866034],[-127.88954196531525,52.884264925259856],[-127.88984198436656,52.88429149012821],[-127.89012289308732,52.88434862799938],[-127.8903995907476,52.884415921760564],[-127.89067535150639,52.884483229949666],[-127.89095628766354,52.884540930395026],[-127.89125095107825,52.884572617789615],[-127.89153865975537,52.88461507016746],[-127.89182846089692,52.88468383574126],[-127.89202012390106,52.88480685728187],[-127.89212159206642,52.88497449251363],[-127.89219387710764,52.88515549314509],[-127.89226775943851,52.88533085413441],[-127.89232958028661,52.88550697418913],[-127.89239787184421,52.88568186906055],[-127.89247827630223,52.88585713387068],[-127.89257622633714,52.88602930922818],[-127.89273269070027,52.8861770018509],[-127.89294125901965,52.886303112702315],[-127.89317359542896,52.88641931659603],[-127.89340494550602,52.886534414946134],[-127.89362813000825,52.88665412830181],[-127.89385672398133,52.88676983515352],[-127.89409963245753,52.886872415182374],[-127.89435859177267,52.886959042352544],[-127.89462655713822,52.88703879793996],[-127.89489183942268,52.88712083813702],[-127.89515630926203,52.887205688814795],[-127.89541904415319,52.88729337381967],[-127.89564744705876,52.88740459643068],[-127.89584330351789,52.88753763312769],[-127.89602557182495,52.88767930049105],[-127.89620247322776,52.88782553806587],[-127.89637843799456,52.88797179048852],[-127.89656167292237,52.88811400642457],[-127.8967576603701,52.88824984646372],[-127.89696734848131,52.888379860221264],[-127.89719860943073,52.888492145803575],[-127.89745833345339,52.888574835028344],[-127.89774045307765,52.88863754053602],[-127.89801812847884,52.888704801051055],[-127.89827445790968,52.88879482520853],[-127.89852116018444,52.88889845606114],[-127.89874712024674,52.88901699415554],[-127.89893748629521,52.88915180046561],[-127.89910515926748,52.889299859837436],[-127.89925915913102,52.88945430973303],[-127.89941321005217,52.889609879587205],[-127.89957817770761,52.88975966795914],[-127.89976324194633,52.88990072850787],[-127.89997105138059,52.89002964642847],[-127.90018795186825,52.89015393314054],[-127.9004183430009,52.890267347598915],[-127.90067460183808,52.89035512584805],[-127.9009505672056,52.89042577021223],[-127.9014773257556,52.89056578713604],[-127.90175309380216,52.89063194891364],[-127.90203071331551,52.89069751512971],[-127.90230737096448,52.89076254025656],[-127.90258497769422,52.890828114361156],[-127.90286078886223,52.89089482889536],[-127.90313573824166,52.89096324270073],[-127.90341068850394,52.891031655860324],[-127.9036865126225,52.891098933257595],[-127.9039640884908,52.891163383679725],[-127.90424414835886,52.891221058363364],[-127.90453291321347,52.891265148560436],[-127.90482247628454,52.89130641818409],[-127.90519761605901,52.891303703125836],[-127.90549435522325,52.89129720855586],[-127.9057854222907,52.891267829495455],[-127.90606977864982,52.89121334084773],[-127.90635204757068,52.891153836432416],[-127.90663972749873,52.891111058339646],[-127.90693382717777,52.89108723214397],[-127.907229140058,52.89106954645716],[-127.90752556635447,52.89105576989032],[-127.907822990932,52.89104366233577],[-127.90812041493916,52.89103154506747],[-127.90841680090652,52.89101721089115],[-127.90875409159256,52.89100108197324],[-127.90900707325613,52.890973999097476],[-127.90930073372787,52.890940085208285],[-127.90958829394451,52.8908950597989],[-127.90986442066375,52.890823315743205],[-127.91013202272656,52.89072760383459],[-127.91040103046603,52.89066326502448],[-127.91068429238365,52.89066763010147],[-127.91097670642537,52.890709959275036],[-127.91126553151817,52.890775886779146],[-127.9115371738565,52.89085330280138],[-127.9117818582933,52.89095245527915],[-127.91201243542041,52.8910692074728],[-127.91224748294366,52.89118196755366],[-127.91250648039043,52.89126799892062],[-127.9127885896878,52.891329548053044],[-127.91306263477664,52.89139795364735],[-127.91331192052684,52.89149590716483],[-127.91354165742418,52.89161435607315],[-127.9137348658818,52.89174909290075],[-127.91388805490249,52.89190465859159],[-127.9139925505256,52.89207502457922],[-127.91404603872864,52.89225014874097],[-127.91407738666817,52.89242956121879],[-127.91409760388999,52.89261026688584],[-127.9141196722184,52.89279038638896],[-127.91415651333486,52.89296802341136],[-127.91435951991176,52.893092510853016],[-127.91463286765942,52.8931659732128],[-127.91491052349684,52.893231508920266],[-127.9151934212574,52.89328967667841],[-127.91547185113599,52.89335184448478],[-127.91573997157239,52.89343322740733],[-127.9159867431726,52.893536821317994],[-127.91615515368412,52.8936786842598],[-127.91624596459144,52.893854885177056],[-127.91628194279478,52.89403365662373],[-127.91629755028784,52.894215001997324],[-127.91637682840613,52.894383534861404],[-127.91654839541843,52.89453319269884],[-127.91669603195663,52.8946894102685],[-127.91684911614364,52.894842166926615],[-127.91678575722871,52.895048340110165],[-127.91669648949764,52.895216822033895],[-127.91649190365108,52.89534739289078],[-127.91634408244548,52.8954977720327],[-127.91644278671345,52.89566319019719],[-127.91668944672946,52.89576397760015],[-127.91694156552194,52.89586187753258],[-127.91719289870302,52.89596315270117],[-127.91734002783441,52.896107602888804],[-127.91736408420853,52.896290496175155],[-127.91734703326112,52.89647013176749],[-127.917333493003,52.89662448345529],[-127.91740736621259,52.89690016214535],[-127.91755596794896,52.896973966008844],[-127.91783097527752,52.897000868847236],[-127.91805892877402,52.89712045928417],[-127.91824678452487,52.897259204114214],[-127.91838614420588,52.89741723155965],[-127.91850633288549,52.89758397450543],[-127.91860249323983,52.89775448127477],[-127.91874185586023,52.89791250825015],[-127.91890965756033,52.898061103133124],[-127.9190875028474,52.8982050499434],[-127.91926628740659,52.89834898116219],[-127.9194395754696,52.89849524379817],[-127.91961568910183,52.89864201607037],[-127.91978720911038,52.89878999302736],[-127.91994211500867,52.89894159496858],[-127.92001038996587,52.89911311184775],[-127.92007050965107,52.89928981074136],[-127.92019159780088,52.89945541629543],[-127.92037662088688,52.89959308307156],[-127.92059549089251,52.89971730100667],[-127.92073665266946,52.8998736103093],[-127.92082152489978,52.90000001626921],[-127.92084848937215,52.90004049624585],[-127.92095940332683,52.90020738817756],[-127.92104538513831,52.90037918016969],[-127.92104227526276,52.90055802336704],[-127.92102899645616,52.90073871860858],[-127.92104176643241,52.90091843232493],[-127.92112686200254,52.901091350702345],[-127.92134109590246,52.901215643027825],[-127.92160470705261,52.90129877280135],[-127.92188241213219,52.90136430092288],[-127.92215839775466,52.90143265447741],[-127.92241933851486,52.901518624081376],[-127.92266428671877,52.90162167828906],[-127.92288028802253,52.90174369702673],[-127.923065531641,52.90188583104268],[-127.92324705408306,52.902028034594714],[-127.92342039586958,52.90217484662935],[-127.92356070388551,52.90233229652115],[-127.92365499336789,52.9025022647863],[-127.92387920857188,52.90262021946887],[-127.92414189520174,52.90270335883081],[-127.92441172493619,52.90277965483901],[-127.92468155563715,52.902855950224605],[-127.92495225995383,52.90293110972145],[-127.92522204194655,52.90300628370537],[-127.92548921760984,52.903085427679166],[-127.92574129865473,52.903181067994616],[-127.92598892235713,52.90328126471029],[-127.92622753322925,52.903387769454746],[-127.92646362452444,52.903500484892746],[-127.92668887780626,52.903620668292625],[-127.92687026729081,52.9037594966786],[-127.92700962954216,52.90391639311499],[-127.92712706037372,52.904082616608775],[-127.92723533667797,52.90425235294042],[-127.92734723547923,52.90441978784026],[-127.9274591607111,52.90458778717321],[-127.9275229402683,52.90476217137823],[-127.92755059066553,52.90494107556839],[-127.92755969148075,52.905121404718685],[-127.92755385994512,52.90530142255832],[-127.92753496125263,52.90548052457207],[-127.92750487852888,52.905659818809376],[-127.92747012351606,52.905838624606325],[-127.92743630644772,52.906017414998274],[-127.92740247420281,52.90619620560477],[-127.92736213353565,52.906375102825834],[-127.92731903271556,52.90655460124206],[-127.92727405543357,52.90673413933096],[-127.92723092873527,52.90691308208002],[-127.92718964840867,52.907091994535755],[-127.92715489090405,52.90727080008094],[-127.92712665630374,52.90744949872161],[-127.92710862754987,52.90762746514949],[-127.92710269238324,52.90780524238629],[-127.92711350150654,52.907982180299456],[-127.92715502088946,52.90815861504814],[-127.92722260415552,52.90833462273389],[-127.92730781588168,52.908509220550535],[-127.92740319883146,52.90868196568138],[-127.92750133226062,52.90885355364582],[-127.92759845191725,52.909023472181424],[-127.92770389192708,52.90919213329757],[-127.92781945272901,52.9093578215119],[-127.92794424722446,52.90952168128483],[-127.92807730136228,52.9096826075743],[-127.9282167633208,52.90984117774794],[-127.92836082293337,52.90999856037502],[-127.92851043264828,52.910154721888816],[-127.92866551280233,52.91030856053116],[-127.92882701584547,52.91046004272863],[-127.92899489188737,52.910608066229976],[-127.92917098703305,52.9107525827976],[-127.92935711317257,52.91089245963455],[-127.92955147338785,52.9110288292141],[-127.92975406852217,52.91116170941867],[-127.92996022092728,52.91129115901478],[-127.93017184818599,52.91141772046205],[-127.93039340457099,52.911537392723666],[-127.93062220634586,52.911652461749654],[-127.93085282039173,52.911766379616765],[-127.93107981360457,52.9118825984425],[-127.93129596746726,52.91200628565141],[-127.93150125598355,52.912136867786884],[-127.93171195365142,52.912263441805266],[-127.9319434213682,52.912375666589796],[-127.93219202587694,52.91247526971425],[-127.93245129476149,52.912563496309325],[-127.93271851818562,52.912642058843346],[-127.93289592767509,52.91287679178983],[-127.93297718298803,52.91304528067371],[-127.93291939032797,52.913208772359525],[-127.93276547344597,52.91336880337279],[-127.93259083473596,52.9135235607019],[-127.93240054763685,52.91366232506448],[-127.93221119770377,52.913801073694586],[-127.93208244465049,52.91396124637727],[-127.93197926637272,52.914130531694084],[-127.93187892315267,52.91430088234412],[-127.93176348068044,52.91446700586908],[-127.93161687547331,52.914624108119135],[-127.93138926328734,52.914741063894915],[-127.93115394796777,52.91485254075964],[-127.93102878449068,52.915009846216634],[-127.9309605210335,52.91518920212924],[-127.93092952232831,52.915368511324644],[-127.93095445918074,52.915548579404245],[-127.93096541307374,52.9157283119952],[-127.93093625040262,52.91590702601912],[-127.93089589018439,52.91608536778719],[-127.9308583404147,52.916264219395586],[-127.93085998391987,52.91644410471493],[-127.93080646138567,52.91661985547256],[-127.93071458137813,52.9167923167222],[-127.93058961375044,52.9169541020948],[-127.93043921044047,52.917109587769495],[-127.9302878671429,52.917265079673506],[-127.93014310893587,52.917422149265825],[-127.9300087764977,52.917582975518606],[-127.92988293104705,52.9177458953553],[-127.92979283060482,52.917916640527146],[-127.92973470477096,52.9180935870148],[-127.92965495361335,52.91826640422634],[-127.92955456616893,52.91843619686946],[-127.92947856348256,52.91860951739849],[-127.9294278942263,52.91878689734242],[-127.92939311139519,52.9189651466676],[-127.92936865350218,52.91914490362516],[-127.92935535346717,52.919324477587544],[-127.92936720003836,52.91950363917305],[-127.9293827962405,52.91968329525531],[-127.92938629623431,52.91986315864123],[-127.92939536752911,52.9200429216811],[-127.92940631640371,52.92022266288062],[-127.92942281150874,52.92040174814194],[-127.92944865790678,52.92058123604086],[-127.92946517891605,52.92076088580762],[-127.92945855634555,52.920943713021025],[-127.92947040380143,52.92112287441757],[-127.92953248035539,52.92127934865536],[-127.92969370798154,52.921403374538215],[-127.92982459677842,52.921515567102205],[-127.93006708822679,52.92170551800417],[-127.93025345764794,52.92184930824254],[-127.93035710325643,52.92201856074718],[-127.93043670819668,52.9222123039998],[-127.93055325356416,52.9223779728003],[-127.9306634271513,52.922547117916274],[-127.93076720289706,52.92271916585355],[-127.93087464259513,52.92288946762873],[-127.93099576386257,52.923053383917505],[-127.93114148669987,52.92320513060508],[-127.93132723980486,52.92331473515701],[-127.93158613372746,52.92343435750034],[-127.93185038515756,52.92352810000191],[-127.93211097462539,52.92362358799503],[-127.93238617387088,52.92371210966821],[-127.93258977028077,52.92382479114219],[-127.93260994330907,52.92400212945544],[-127.93260736360939,52.92419161612851],[-127.9326857370488,52.92435791873019],[-127.93292910606398,52.924463776559975],[-127.9331525748332,52.92458284752346],[-127.9333188986754,52.92473649508948],[-127.93342337475079,52.92490292435094],[-127.93339434310138,52.92508443383445],[-127.9334004431526,52.925259770183075],[-127.9335436755692,52.9254177157338],[-127.93372913431571,52.925561515563764],[-127.93395354975112,52.925680569501395],[-127.9341896580698,52.92579047202627],[-127.93443738224124,52.925889529425774],[-127.93468780686308,52.92598629997577],[-127.93491036476527,52.92610538267806],[-127.93512843875503,52.92622846659222],[-127.93535095899463,52.926346993102186],[-127.93558436456482,52.9264586143283],[-127.9358204814078,52.92656851352933],[-127.93605206299507,52.926681284829804],[-127.93627567972783,52.92680315451618],[-127.93644535530946,52.92694776589055],[-127.93655819753627,52.92711349876434],[-127.9366582471612,52.927284481945215],[-127.93676654381242,52.927452522395164],[-127.93687300449042,52.92762115792964],[-127.93698130325348,52.92778920710833],[-127.9370996860078,52.9279537183148],[-127.93724105338529,52.92811113417761],[-127.93744837702037,52.92824335866115],[-127.9377238271235,52.928316170545905],[-127.93801889918207,52.92836960214559],[-127.93821043321063,52.92848246386298],[-127.93827563981651,52.92866579422025],[-127.93836190160083,52.928840921967044],[-127.93846005974788,52.92901137877385],[-127.93858319225806,52.92917749621994],[-127.9387396993133,52.92933970081871],[-127.93898339255169,52.929410791071525],[-127.93928401006988,52.929422087336036],[-127.9395936601787,52.92942707310874],[-127.93988596073378,52.929460368344614],[-127.94017333774082,52.92950831666451],[-127.94045986835208,52.929557964189385],[-127.94074117978784,52.92961609990062],[-127.94101230183834,52.92969570147313],[-127.94114708603956,52.929851535444946],[-127.94125285056741,52.930024662524865],[-127.9414419016381,52.93016446341523],[-127.94172365018964,52.93019120241928],[-127.94202217884406,52.93015657536371],[-127.94231894247389,52.930144387150015],[-127.94261148035439,52.93018272066264],[-127.94288731323805,52.93024318371566],[-127.94308649494359,52.9303800168591],[-127.94331344158763,52.93049228582386],[-127.94358425221725,52.93056516090857],[-127.94386669260874,52.93062719853884],[-127.94414739888826,52.93069206209687],[-127.94441108355925,52.93077177886719],[-127.94466349878954,52.93087017283938],[-127.94490532808896,52.930981636894906],[-127.94512259416429,52.931106402108384],[-127.9452958374998,52.93124645826558],[-127.94540588780997,52.93141110815158],[-127.94548669883974,52.93158856300301],[-127.94558494305574,52.93176013370702],[-127.94571637269009,52.931923299926375],[-127.94588888776556,52.932067860125436],[-127.94611695417797,52.932184033214135],[-127.9463386888677,52.932304229503195],[-127.94653141556495,52.932442284708316],[-127.94669122924313,52.93259433566918],[-127.9468216248059,52.93275528481065],[-127.94694558586733,52.93291801722396],[-127.94706498604462,52.933083066902476],[-127.94718161098173,52.93324871837465],[-127.94729641479624,52.93341496482999],[-127.9474102806709,52.93358122669036],[-127.94752231049142,52.933748083789105],[-127.9476159438088,52.933920285086806],[-127.94772514784998,52.93408662377571],[-127.94790231712332,52.934230539101684],[-127.94810235500752,52.934365107886144],[-127.94822556606529,52.93453177028117],[-127.94825979884745,52.9347094381527],[-127.94812645554474,52.9348713882037],[-127.9478937206701,52.934979490421455],[-127.94760859676818,52.935043055227865],[-127.94732448797308,52.93510828847306],[-127.94703841297037,52.935171311599134],[-127.94679181390711,52.935261705356346],[-127.94661446465017,52.93539915504509],[-127.94648039388434,52.93556559893662],[-127.94635374771308,52.93573135489892],[-127.94622436492466,52.93589827691156],[-127.94617353996655,52.93607118168784],[-127.94619005002342,52.936248586903865],[-127.94623555552451,52.93642831061092],[-127.94628941120726,52.93660733124703],[-127.94633761686812,52.93678476830212],[-127.94638674693901,52.936962190039104],[-127.94644052728614,52.93713953484502],[-127.9464989216345,52.93731568234527],[-127.94656474282267,52.93749115098636],[-127.94664441582586,52.93766358359719],[-127.94673890116198,52.93783408523646],[-127.94684080318227,52.93800335212694],[-127.94694362963725,52.93817259466724],[-127.94704275678183,52.938342463271894],[-127.94714923415549,52.93850996826602],[-127.94727692431306,52.9386726383707],[-127.94742673004788,52.938829337617236],[-127.94757649655345,52.93898548132506],[-127.94770410213404,52.939145910432245],[-127.94775230166344,52.93932334687975],[-127.94776435921479,52.9395053002307],[-127.94772679786873,52.939682478702146],[-127.94757538619909,52.939836870562324],[-127.9474155313936,52.939990289873606],[-127.94734979139417,52.94016288546848],[-127.94733201296464,52.94034477630992],[-127.94730944088452,52.940523939521846],[-127.94728502084638,52.94070314224341],[-127.94725032031674,52.94088195002615],[-127.94721373056224,52.9410602240572],[-127.9471846445953,52.94123950386746],[-127.94716207142031,52.94141866695343],[-127.94714980434735,52.94159878947897],[-127.94716080791221,52.94177796210854],[-127.94718121487291,52.94195922111403],[-127.9472007491478,52.94214161549986],[-127.9472286493986,52.9423233065178],[-127.94727131232291,52.94250195539092],[-127.94733890535579,52.94267515198948],[-127.94743872726737,52.942839403672394],[-127.94758281542627,52.94299339025871],[-127.9477564233148,52.94314017144358],[-127.94794387050415,52.94328391648892],[-127.94812950704498,52.94342881217261],[-127.9482948547303,52.94357852720552],[-127.94841801647905,52.94374351276766],[-127.94862325411366,52.94386846190344],[-127.94880687837531,52.9440100269589],[-127.94899142802186,52.94415157641609],[-127.9491859775834,52.944287355198895],[-127.94937506716097,52.94442603097553],[-127.94954958537949,52.94457222954755],[-127.94968124989144,52.944719137565976],[-127.94983351369248,52.94488812358449],[-127.94998236029429,52.945043714423726],[-127.95013945672052,52.945196361527174],[-127.95030021893409,52.945347270734835],[-127.95046374430031,52.9454975779519],[-127.95062910823547,52.94564728951847],[-127.95079720947597,52.9457958345367],[-127.95096622511038,52.94594379920184],[-127.95113799338903,52.94609060601476],[-127.95131161085736,52.946237372967374],[-127.9514732798876,52.94638770958387],[-127.95158994786743,52.94655279952097],[-127.951698481179,52.94672362901558],[-127.95185068209811,52.94687075021306],[-127.95213080005131,52.94694065464936],[-127.9516842382211,52.946982243050655],[-127.95153578438635,52.947059252497645],[-127.95145311143223,52.947248944875845],[-127.95143315004167,52.94742358122253],[-127.95137903205486,52.947605518415806],[-127.95135184803519,52.94778532323289],[-127.95134774329645,52.94796026165901],[-127.95136445915256,52.948141580776706],[-127.95145073741683,52.94831502115931],[-127.95156190819176,52.94848244405668],[-127.95169607181742,52.94864275992977],[-127.95184131427669,52.948800650065046],[-127.95197639322961,52.94896038548249],[-127.95208386676697,52.94912843414401],[-127.95217476465713,52.94930067642003],[-127.95226748593151,52.949472323421354],[-127.95238317485484,52.949636307724624],[-127.95253932156508,52.94978785537663],[-127.952723035814,52.94993053392627],[-127.95290858886793,52.95007261673343],[-127.95307856844455,52.95022057136561],[-127.95325399601954,52.950365628490914],[-127.95345588731652,52.950497915722565],[-127.95367771265387,52.95061754127174],[-127.9539122751732,52.95073022927155],[-127.95412582566178,52.95083205590383],[-127.95436405117964,52.950902641629156],[-127.95464912341258,52.95097806299861],[-127.95493284970051,52.95108488404718],[-127.95511282496547,52.951227065062504],[-127.95526807354487,52.95137918011921],[-127.95541238832764,52.95153651640221],[-127.95555122753126,52.95169675034085],[-127.95568914345229,52.951856999452495],[-127.95583254812836,52.95201491530909],[-127.95598514320804,52.95216988040483],[-127.95614235389611,52.95232363869882],[-127.95629308761953,52.95247863432555],[-127.95638278398805,52.95262454625208],[-127.95650879421989,52.95280965340749],[-127.95656549118127,52.952988065412136],[-127.95665082459472,52.95316039672688],[-127.95674722251269,52.95333030218534],[-127.95684823621714,52.953499009891786],[-127.95695114033774,52.9536682510561],[-127.95705215565305,52.95383695855315],[-127.95715043527385,52.95400683239069],[-127.95725240212504,52.9541760798903],[-127.95735530949085,52.954345320632],[-127.9574609946712,52.95451395013967],[-127.95757676886842,52.95467904894462],[-127.95772468718359,52.95483352458144],[-127.95790754178527,52.95497676554698],[-127.95806654145187,52.95512881459503],[-127.95829985937378,52.95545673955932],[-127.95841844243844,52.95562179082895],[-127.95854162673022,52.955785644490376],[-127.95868132775189,52.95594361849612],[-127.95883027138504,52.956099761638725],[-127.9589388581217,52.95627058347003],[-127.95909939452318,52.95641531484872],[-127.95934571252499,52.95651882914247],[-127.95958839248195,52.95662464539584],[-127.95982560045107,52.95673279415194],[-127.96008428257898,52.95682152867199],[-127.960347452219,52.9569062690531],[-127.96061151021102,52.95698986413986],[-127.96087376820518,52.95707517454614],[-127.9611324695113,52.9571639064977],[-127.96138222559843,52.95726119857817],[-127.96162130547869,52.95736931263459],[-127.96185133658011,52.95748373777138],[-127.96203503799104,52.95762472545689],[-127.96219223902636,52.95777735506574],[-127.96234482626072,52.9579311912794],[-127.96249468871102,52.95808674966528],[-127.96264456716794,52.95824230759735],[-127.96279626960434,52.9583972699778],[-127.96311333756188,52.95867951629687],[-127.96328338660162,52.95882744646683],[-127.96344882181299,52.95897658324942],[-127.96360418019039,52.95912980670236],[-127.96374487604167,52.959288314289154],[-127.96386625364015,52.959452757627375],[-127.96397007243775,52.95962084757257],[-127.96406098914393,52.95979195947823],[-127.96414358931241,52.95996489593402],[-127.96422062404618,52.96013848114299],[-127.96429395720975,52.96031268402807],[-127.96433111802695,52.960491418028575],[-127.9644173968043,52.9606631719441],[-127.96448053913613,52.96083866562498],[-127.96453812735204,52.961015381836184],[-127.96459570488031,52.96119153322234],[-127.9646560713922,52.96136763804566],[-127.9647210648252,52.96154310067816],[-127.96480180708703,52.961716067584085],[-127.96483615664144,52.96189428326405],[-127.9648575106064,52.9620738456509],[-127.96487607577305,52.962253445574696],[-127.96489462659832,52.96243305468566],[-127.96489172261482,52.96261245674197],[-127.96485894225872,52.96279123623433],[-127.96481870544629,52.962970140083094],[-127.96479338071985,52.96314879513388],[-127.96483710345053,52.96332797527679],[-127.96496298307795,52.9634884144015],[-127.96514591043076,52.96363220815711],[-127.96533151339352,52.96377315907658],[-127.9655153309469,52.96391581646171],[-127.96568175895528,52.96406548953923],[-127.9657280422835,52.96423958676409],[-127.96574020988272,52.96442210004596],[-127.9658310921933,52.9645920899945],[-127.96592012187766,52.964762666784935],[-127.96593405101878,52.964942908686425],[-127.96594143756518,52.96512270377408],[-127.96594135226029,52.965302614585575],[-127.96591416670596,52.96548130073965],[-127.9658682875196,52.965659177902545],[-127.96586635306167,52.96583912848031],[-127.96592022503506,52.96601589674703],[-127.96599078688513,52.96619015346426],[-127.96607062926446,52.96636369026376],[-127.96615602802129,52.96653601329702],[-127.96624138645345,52.96670777197242],[-127.96632030617593,52.96688132398338],[-127.96638903256847,52.96705616705722],[-127.96638708533631,52.96723611774097],[-127.96623186305263,52.96738947315653],[-127.96601747592106,52.96751411495407],[-127.96582603522063,52.96779194448974],[-127.96587071784812,52.96797167284258],[-127.96598014740165,52.96813911099918],[-127.9661715466905,52.96828388271185],[-127.9663748765833,52.96842453609998],[-127.96650217517784,52.968574861138954],[-127.96645435290941,52.96875108470303],[-127.96635642730108,52.96893319338231],[-127.96635394222463,52.9690004922458],[-127.96646651922725,52.969074838011515],[-127.96667494368266,52.96920419628454],[-127.96671280285724,52.96937731243157],[-127.96671660489463,52.96956052080387],[-127.96671764402227,52.96974434024646],[-127.96673256961489,52.96992568591598],[-127.96680118408572,52.97009828849638],[-127.96692628126361,52.97026154526397],[-127.96707075506052,52.97041998555542],[-127.9672445011169,52.97056617129035],[-127.96740445455785,52.97071651495474],[-127.96751300938955,52.97088508719408],[-127.96758821325722,52.97105870019646],[-127.96761803214393,52.97123923196603],[-127.96757486549349,52.97141538693691],[-127.96749332940408,52.97158881086083],[-127.9674099286357,52.971762274807965],[-127.9673236857491,52.971934656206905],[-127.96726281241301,52.97211110665204],[-127.96726270697854,52.972290461143324],[-127.9672822376546,52.97247060866454],[-127.96725594101814,52.97264815857641],[-127.96717910681878,52.97282262453137],[-127.96714555889416,52.97300477926846],[-127.96726022218886,52.97316428196027],[-127.96743777584837,52.97331152473921],[-127.967607935771,52.97346057665965],[-127.96778365307514,52.97360840559489],[-127.96795197659742,52.97375804369832],[-127.96809444643846,52.97391316224475],[-127.96815103845245,52.97408764161144],[-127.96814081909326,52.974269971781766],[-127.96810894209254,52.97444817094979],[-127.96806684336939,52.974627105800124],[-127.96802096332028,52.97480498282237],[-127.96800963672801,52.974983403566945],[-127.96806541990384,52.97516070325765],[-127.96815915001066,52.97533120823924],[-127.96826212583817,52.975499872767166],[-127.9683632636051,52.97566912390283],[-127.96846624106044,52.97583778821822],[-127.96857383646136,52.97600525432777],[-127.96868882440945,52.97617147585744],[-127.96880288840086,52.976337712713175],[-127.96890400458335,52.97650640773729],[-127.9689829533574,52.976679956942185],[-127.96905633497046,52.97685416408788],[-127.96901987819538,52.97721515497719],[-127.96894073757043,52.97738013652356],[-127.9687460763583,52.977508379997204],[-127.96849651907245,52.97762016107175],[-127.96827181252495,52.97774441290431],[-127.96808705230276,52.97788537625326],[-127.96802215881125,52.97805572380856],[-127.96799977292365,52.97823713577506],[-127.96799330707749,52.9784199587482],[-127.9679913656992,52.9785998992689],[-127.96800435752442,52.97877959931281],[-127.96801454447001,52.97895933721947],[-127.9680343667989,52.97914564883815],[-127.96803817540376,52.97932885609319],[-127.96791606633727,52.97947270025647],[-127.9676404727487,52.97956641385012],[-127.96737076435943,52.97964602112236],[-127.96708778618809,52.97970118840352],[-127.96678913702253,52.97970001311759],[-127.96649727351796,52.979724496688995],[-127.96621851562672,52.97979024491736],[-127.96593052867742,52.97983820230515],[-127.96564040656246,52.979880033862436],[-127.96537443320003,52.97996013910506],[-127.96519717962752,52.98010209315346],[-127.96510900545111,52.98027394785741],[-127.9650818068271,52.9804526322121],[-127.96507429959163,52.98063323003897],[-127.96508820425002,52.980812905799084],[-127.96517444944169,52.98098297245423],[-127.96554412891642,52.98078456832296],[-127.96576145160232,52.980661557484204],[-127.9659855149623,52.98054292650852],[-127.96621049082488,52.9804237148926],[-127.96643151364685,52.98030008499432],[-127.9666881374414,52.98021957744808],[-127.96698833612697,52.98019382440599],[-127.96728406154647,52.98017207308497],[-127.96758090817968,52.98015423010047],[-127.96788359940747,52.98012170744113],[-127.9681655464083,52.98012484489893],[-127.96839167784945,52.98023260645407],[-127.96860049980396,52.98036923651464],[-127.96879732385159,52.98050886457808],[-127.96896104982058,52.980659142914774],[-127.96912664135591,52.98080938088598],[-127.96929673342511,52.98095618953269],[-127.96946870600911,52.98110295754177],[-127.96964160515766,52.98124971878635],[-127.96981447934031,52.981395915243056],[-127.96998738045836,52.98154266699397],[-127.97015476626122,52.98169119662163],[-127.9703221794,52.98184029051942],[-127.97049414418049,52.981987057203945],[-127.9706780058692,52.98212858489154],[-127.9708619726466,52.98227235244187],[-127.97105413239652,52.98241149887088],[-127.97126249119952,52.98253804356169],[-127.97149614362178,52.98264622952384],[-127.97175048305041,52.982737819599265],[-127.97201660006371,52.98282192138385],[-127.97228273304904,52.98290602231366],[-127.97254829101242,52.98299797892917],[-127.97264693218756,52.98309272933978],[-127.9726365128264,52.98333054506538],[-127.97265510521432,52.98351014171799],[-127.97267560382555,52.9836902713984],[-127.97265681965678,52.983868816769146],[-127.97261002381602,52.984046710077735],[-127.9725481889346,52.984222613186354],[-127.97246851396511,52.98439601696351],[-127.97238226596147,52.984568400758825],[-127.97231289164918,52.98474275291315],[-127.97227733539295,52.98492157878884],[-127.9722614059553,52.98510119709797],[-127.9722594823359,52.98528113696924],[-127.97226036411485,52.9854610388368],[-127.9722500295045,52.98564056344604],[-127.97222568826083,52.98581975748857],[-127.9721929208511,52.98599853652927],[-127.97215732234184,52.986176806925776],[-127.97210865680547,52.98635473100182],[-127.97207210637585,52.98653245229643],[-127.97207298697208,52.98671234507033],[-127.97205718613165,52.986894767832894],[-127.97192159250262,52.987050041505796],[-127.9717149470405,52.987182407907035],[-127.97146670125746,52.987282962399185],[-127.97128566658306,52.98742443207536],[-127.97112285007094,52.98757624123408],[-127.97097518693691,52.98773283647696],[-127.97085402433267,52.987897399905],[-127.97075925862444,52.98806769144369],[-127.97067866979768,52.988241664640874],[-127.97058387644563,52.988411391485016],[-127.97044563810086,52.988570070205206],[-127.97028284037152,52.98872244261837],[-127.97015303765104,52.98888210084767],[-127.97010438679735,52.989060588327455],[-127.97001253541025,52.98923362821438],[-127.96982186461781,52.98936852169794],[-127.96959214408751,52.98948669729671],[-127.96943278453332,52.98963284120974],[-127.96940844036591,52.98981259901133],[-127.96937100242477,52.98999145463723],[-127.96930837604062,52.9901707311095],[-127.96909872648169,52.99027904668861],[-127.96882987801757,52.99035864133329],[-127.96860773987326,52.990479486017605],[-127.96839329513864,52.99060525048985],[-127.96819032620029,52.99073699256934],[-127.96802641597458,52.990886008179395],[-127.96787683893865,52.991042074820484],[-127.96773390047017,52.99120027228924],[-127.96758905500636,52.991357945400644],[-127.96744514816187,52.99151559366547],[-127.96730977140321,52.991675906178536],[-127.9671979617651,52.991841429862184],[-127.96713049719841,52.992017422709665],[-127.96709394721701,52.99219570637818],[-127.967036774164,52.992372083343746],[-127.96697397890071,52.992547998094715],[-127.96694678026267,52.99272668156995],[-127.96694671449491,52.99290659811802],[-127.96702207746814,52.99310318194594],[-127.96695451346213,52.99325675736824],[-127.96694806696449,52.99344014316169],[-127.96687394851301,52.993653793680856],[-127.96681022544549,52.99382972364987],[-127.96674742709124,52.99400563812749],[-127.96668741887437,52.99418150599011],[-127.96663307318082,52.9943584002567],[-127.96658617382407,52.99453517023484],[-127.96655153666458,52.99471454241893],[-127.9665374966391,52.994895247856505],[-127.96654670414591,52.995073879523396],[-127.96658684027312,52.9952553669439],[-127.96667508990852,52.99542764005961],[-127.96683225124906,52.99557634448624],[-127.96704367508923,52.995707329119696],[-127.9672739693239,52.995822305303754],[-127.9675249064113,52.995919557451806],[-127.9677812597935,52.99601279985802],[-127.96802949762419,52.99611234686571],[-127.96828041241947,52.996209041832984],[-127.96854825363064,52.996288074566344],[-127.96882222863904,52.99635860169478],[-127.9690551663122,52.996470167524855],[-127.969250944723,52.996605893423755],[-127.96943486550954,52.99674742181671],[-127.96964169875362,52.99687959956842],[-127.96989946077801,52.99696272550051],[-127.9701858779324,52.99701959034394],[-127.9704465627714,52.997105473085355],[-127.97068681513474,52.99721355069113],[-127.97091833822626,52.99733466009346],[-127.97111138765793,52.997471549567216],[-127.97115743277398,52.99763892050473],[-127.97115701612597,52.99783117302482],[-127.97114636209308,52.99800397579354],[-127.97117998320252,52.99818556168256],[-127.97116858590834,52.99836230461506],[-127.97102745956254,52.998519909926614],[-127.97087888508337,52.99867764853106],[-127.97082445802579,52.99885285992141],[-127.97080018133944,52.99903373684426],[-127.9707411492538,52.999210155039506],[-127.97058866884578,52.999364586672606],[-127.97057172378743,52.99954254305313],[-127.9705660610549,52.99972254372226],[-127.97055385015916,52.99990209784459],[-127.97055839563126,53.00000010837264],[-127.97076347975127,53.00059750242299],[-127.9709577952534,53.00080162718149],[-127.97120300518398,53.001156783109856],[-127.97144599085007,53.001826402942854],[-127.97183222635005,53.00238377450923],[-127.97170221352205,53.002921756476866],[-127.9717923398302,53.00309343822051],[-127.97218171753795,53.00353697647831],[-127.97273858954634,53.00386786820493],[-127.97310859235121,53.0041553616257],[-127.97340568589372,53.004541595721406],[-127.97360644318115,53.004903660240636],[-127.97378838510372,53.005282853420525],[-127.97387345901055,53.00566703087326],[-127.97414922587078,53.00593535695657],[-127.97453228378254,53.00618171778094],[-127.97475186937224,53.00634618041457],[-127.97494411273662,53.0064645773629],[-127.9752690221495,53.006584679256385],[-127.97550825860353,53.00668940174782],[-127.97597709850791,53.006792517906284],[-127.97633918281318,53.00682848869269],[-127.97654710869084,53.0069023477645],[-127.97675398828207,53.00699415898843],[-127.97704890766113,53.00713157292464],[-127.97738615145155,53.007396062986366],[-127.9777941283274,53.00757529547711],[-127.9781129866892,53.00804634405264],[-127.97834252321398,53.0083036709044],[-127.9789947129601,53.00859369297619],[-127.97927178459805,53.00880874563109],[-127.97978183025383,53.009153842400856],[-127.98033995601553,53.009428622569786],[-127.98090345953362,53.00951836442259],[-127.98156260199933,53.00949607973399],[-127.98200950808926,53.00952835718411],[-127.98243158556141,53.00958851781554],[-127.98273852133715,53.00956262413371],[-127.98318814484752,53.00945305744352],[-127.98389464279805,53.00944509135655],[-127.98462729230575,53.00933748239049],[-127.98561452987936,53.00940269002085],[-127.98662175637007,53.00959590456378],[-127.98773307443844,53.009917940789435],[-127.98831486582517,53.01017827793626],[-127.98853870973016,53.0106912557903],[-127.98856943103884,53.011387396218275],[-127.98829628737833,53.01199563155997],[-127.98811747624332,53.01260450843603],[-127.98812725964372,53.013172658365995],[-127.98813514387204,53.013840047452234],[-127.98811506674984,53.014209173845224],[-127.98810311724793,53.01469193359338],[-127.98809233773332,53.01516011028503],[-127.98801059920397,53.01562835316435],[-127.9880719038505,53.016040388605155],[-127.98799676156982,53.016749520834956],[-127.98801045539281,53.017161793672],[-127.98809992769283,53.01723762983164],[-127.98812672982595,53.017730388790746],[-127.9883538659011,53.018073492941106],[-127.98886098716571,53.0185318062761],[-127.98897230638119,53.01863529669698],[-127.98898617626732,53.01873202799136],[-127.98902052198616,53.019285745640346],[-127.99007069411782,53.01969230776547],[-127.99034871786832,53.019865279619125],[-127.99158121313242,53.020135916574915],[-127.99258522041539,53.02027421233104],[-127.99336004333679,53.02038497821014],[-127.99421707381498,53.02063503083463],[-127.99461786482652,53.020716807287464],[-127.99494658695927,53.020814938522946],[-127.99514583952758,53.02092085475006],[-127.99531610158051,53.021026149132574],[-127.99576462268854,53.02138790390558],[-127.99556638545056,53.0218401967584],[-127.99477359478021,53.02250094209023],[-127.9941282960737,53.022921559195254],[-127.99343397713096,53.023412489750555],[-127.99369855204861,53.02365630895097],[-127.99432168745254,53.02421520818594],[-127.99445184672673,53.02469949183476],[-127.99446746482154,53.02501196766278],[-127.99474123539727,53.02541142957443],[-127.99525242501105,53.02571440280347],[-127.99561861880073,53.026171717681315],[-127.9959902868818,53.02638792963541],[-127.996455554473,53.02664740255692],[-127.99680186213756,53.026920087815846],[-127.99705752126329,53.02709231100201],[-127.99752386076504,53.02729515018253],[-127.99758655405113,53.02739664927593],[-127.99799956991245,53.027597591765904],[-127.99851543437869,53.0277009463312],[-127.99886536940974,53.02783177092533],[-127.99941947209852,53.02829092992949],[-127.99971769483902,53.02857338935867],[-127.99973097413067,53.028577647977436],[-128.00000045260055,53.028666116845876],[-128.00021018237703,53.02873542144624],[-128.00050665090643,53.02872254769134],[-128.00079951975334,53.02869292026377],[-128.00108651432407,53.02863761031202],[-128.00137532037024,53.028600768779896],[-128.00167645473138,53.02862760151749],[-128.00194345691477,53.02856422617774],[-128.00219944500532,53.02846572329595],[-128.00247991094307,53.02839089989162],[-128.00276941996376,53.02830976162251],[-128.00305845123626,53.02823816314859],[-128.00333929437457,53.02819135456946],[-128.00360165118934,53.02818801972077],[-128.00383146552957,53.02828724203552],[-128.00403331318094,53.02844691345336],[-128.00421133114602,53.028596336048686],[-128.00435975557176,53.02875242186096],[-128.00450549436755,53.02891080395969],[-128.00467410182307,53.029058699897625],[-128.0048582811648,53.0292001703084],[-128.00505067053513,53.0293375821155],[-128.0052405589371,53.02948119678061],[-128.0054457164982,53.02961165636039],[-128.00570083352284,53.02969251007768],[-128.00600475999462,53.02971872847578],[-128.0063020424694,53.02970302856294],[-128.00657628518493,53.02963502693423],[-128.00683644130177,53.02954541055795],[-128.00708973691852,53.029449184703225],[-128.00736195137122,53.029377861862024],[-128.00765325843565,53.02933479279179],[-128.00794856432861,53.02931687147325],[-128.00824732530003,53.029312906761895],[-128.00854648380516,53.02931734602056],[-128.0088439869903,53.02932628748282],[-128.00914172901005,53.02934027282146],[-128.00943855701098,53.02935483793281],[-128.00973629942663,53.02936882177098],[-128.01003396229177,53.029381120329546],[-128.01033165205686,53.029393982633216],[-128.01062841600637,53.02940685996837],[-128.01092613286735,53.0294202852681],[-128.01122224783623,53.02943933284317],[-128.01151787337977,53.029467920466224],[-128.0118139626234,53.02948641102036],[-128.01211400749776,53.02947008433713],[-128.01236668321954,53.02938058313239],[-128.0126003935803,53.02926562338039],[-128.01284004875944,53.02915785227556],[-128.01307878813893,53.02905065226926],[-128.01331946126226,53.02894453968698],[-128.01356495231158,53.0288417071621],[-128.01381420231132,53.02873936591537],[-128.0140755029376,53.02865476234413],[-128.01436156539964,53.02859999170421],[-128.01466166727965,53.02856516644098],[-128.01495284848488,53.02855907222294],[-128.01520149294026,53.02866074908316],[-128.0154784556657,53.02872887841108],[-128.01577296725375,53.02875355558106],[-128.01607448960044,53.02874895883186],[-128.01636428894537,53.028713740355784],[-128.01662836532338,53.02862851864168],[-128.01688258607265,53.0285328203804],[-128.01713201270934,53.028434396690926],[-128.01738043218398,53.02833430377975],[-128.0176298565011,53.02823587902646],[-128.01788420550182,53.02814297417884],[-128.01815230201333,53.028063849798784],[-128.01842532299224,53.02799023626229],[-128.01868636998873,53.02790057783143],[-128.01893648395526,53.02777747770002],[-128.0191795730204,53.027683641712436],[-128.019438642324,53.027729093261634],[-128.0195873596183,53.027890204605335],[-128.0195725814651,53.02807036412747],[-128.01953091277463,53.02825491176781],[-128.0194983117548,53.02843369943131],[-128.01946290266454,53.028612535134165],[-128.01943776865778,53.02879119490543],[-128.0194565942074,53.028970788010085],[-128.01948284576886,53.029149689015505],[-128.01951097940383,53.029328557780524],[-128.01953259799475,53.029508094043884],[-128.01955511634296,53.02968705889805],[-128.01958233655103,53.02986650819196],[-128.0196355872875,53.030043260978125],[-128.01966464816797,53.030222113759685],[-128.01966296513228,53.03040261380171],[-128.0196115603198,53.03057892530891],[-128.01953291615456,53.03075233129333],[-128.01954798214987,53.03093142360481],[-128.01954444350997,53.031112520280125],[-128.01953805810052,53.03129253576243],[-128.01965046914876,53.031455954308925],[-128.01978427909424,53.03161732049563],[-128.01979472470853,53.03179761275011],[-128.01985357984964,53.03197426934423],[-128.01990399989842,53.03215051433477],[-128.01989204156735,53.032331190119024],[-128.0198912321878,53.03251055406083],[-128.0199519826403,53.03268774305881],[-128.0200434147425,53.03286160881843],[-128.02017426263856,53.033019662435315],[-128.02039313258825,53.03314258041859],[-128.020601094242,53.033271845508516],[-128.02070537176448,53.0334410070105],[-128.02077148814416,53.033613054962515],[-128.0210173833539,53.03371477606906],[-128.02129208661376,53.033793575404275],[-128.02156765213326,53.033870682416214],[-128.02185214682595,53.033919612329804],[-128.0221449035184,53.03392636926658],[-128.022442209047,53.033910619770275],[-128.0227419609084,53.03388754596377],[-128.0230411719196,53.03387289218662],[-128.02333854992656,53.03387843701092],[-128.02363751011274,53.03389741418163],[-128.02393240914066,53.03392934658128],[-128.0242196198414,53.033976538354295],[-128.02449726425127,53.034038474767364],[-128.024769868773,53.03411226241005],[-128.02503903361176,53.03419226915712],[-128.02530635926433,53.03427287182947],[-128.025573659426,53.03435291836159],[-128.02583917341414,53.03443467189727],[-128.02610381577634,53.034517560757195],[-128.02636757159158,53.03460158520351],[-128.02663222760808,53.03468502865753],[-128.0268968730785,53.03476791572692],[-128.02716147811796,53.03485024692515],[-128.02742612565103,53.034933132799715],[-128.02768826001946,53.03502222197183],[-128.02795031544775,53.03510963500677],[-128.02823356368074,53.03515184555446],[-128.02843594334752,53.035007127849205],[-128.02868803077948,53.034964125585084],[-128.02899919404436,53.03500361241888],[-128.02928644462403,53.035051356321],[-128.02957384443653,53.03510189483446],[-128.02986106976473,53.03514908180547],[-128.03015169664266,53.03518891895705],[-128.03044566848422,53.035220851249406],[-128.0307396021288,53.03525166253278],[-128.03103302382002,53.03529144943355],[-128.0313267140212,53.03533683569686],[-128.03160817460582,53.03532190098899],[-128.03185525736436,53.03521339855437],[-128.03208526634805,53.035099584936184],[-128.0323132726842,53.03498299849871],[-128.03254225792762,53.034867524636866],[-128.0327751516132,53.03475533682068],[-128.03301094501066,53.03464534940228],[-128.03324865753484,53.03453644038639],[-128.03348444849044,53.03442645200794],[-128.0337098132337,53.03433289204401],[-128.03395213108732,53.03420316917921],[-128.03419084552542,53.034095926779244],[-128.03443239351364,53.033989190995555],[-128.0346758881259,53.03388410701801],[-128.03495343073675,53.03382663583294],[-128.03524898481837,53.033794078993964],[-128.0355455451833,53.033801849069455],[-128.0358408824784,53.03378442274242],[-128.03609838234286,53.033698715075495],[-128.03630028569316,53.03356407990287],[-128.03649172307476,53.03342569722059],[-128.0366774509432,53.033285179837094],[-128.03687080664577,53.0331478843033],[-128.03707087666666,53.033014400279086],[-128.03728925451583,53.03289237414804],[-128.0375221248284,53.03278017683477],[-128.03776076849354,53.03267180710705],[-128.03800137378425,53.03256508888527],[-128.03824004168806,53.032457273703436],[-128.03853521873626,53.032378191150336],[-128.03872337088785,53.03232730410815],[-128.03894935380512,53.03214965193716],[-128.0391406957028,53.0320095892976],[-128.03935609261896,53.03188423879323],[-128.03959967058975,53.031781384562],[-128.03985888298203,53.03169283178827],[-128.0401229578479,53.03160812213569],[-128.04038801108678,53.031524506928704],[-128.04067246152812,53.03147531393438],[-128.04096079462005,53.031428850957454],[-128.04124911214515,53.03138238753321],[-128.0415364491567,53.0313348194118],[-128.04182277848838,53.03128558211194],[-128.0421079778625,53.031232444826806],[-128.04239975736763,53.03118031386835],[-128.04267676015237,53.03111218875396],[-128.04290698738015,53.031003953854515],[-128.04311197269917,53.03087597854762],[-128.04330716359138,53.03073863994151],[-128.04349845802153,53.03059801459273],[-128.04369458732842,53.03046065902419],[-128.04390522239737,53.030333705286374],[-128.0442678757394,53.030162641764065],[-128.0445611131351,53.030199035099464],[-128.044852538038,53.03023658008223],[-128.04513895608758,53.03028654161344],[-128.04542106586368,53.03034386782451],[-128.04570242412282,53.030405125249395],[-128.04597937821995,53.030472063153795],[-128.04625194318095,53.030544681309124],[-128.04651032925943,53.03063323813818],[-128.04676173452444,53.03073200409384],[-128.04702014958974,53.030821115324116],[-128.04729095962065,53.03089600348871],[-128.04756704742155,53.03096407373203],[-128.04784578196424,53.03102873454274],[-128.04812536254587,53.031091703075184],[-128.04840662158557,53.031150713998144],[-128.0486896943398,53.0312085718135],[-128.0489718537174,53.03126700081726],[-128.04925311509422,53.03132600971656],[-128.04953613610277,53.031382745482446],[-128.0498252403684,53.03142985127073],[-128.05011584557386,53.03146963960287],[-128.05037864983518,53.03155250661029],[-128.05062923676527,53.031653520651766],[-128.05088157134878,53.031751696928794],[-128.05114857916786,53.03182496557454],[-128.0514415901887,53.03185629724287],[-128.0517431520548,53.031871230145356],[-128.05204020155492,53.03188960362831],[-128.05233792157358,53.03190235993731],[-128.05263488367547,53.031899435339405],[-128.05293205579707,53.031881377951194],[-128.05322899563546,53.031858831070906],[-128.05352544294382,53.03184526860846],[-128.05382361643808,53.03184792469361],[-128.05412210016667,53.03185730034829],[-128.0544204090577,53.031862750471575],[-128.05471693710282,53.03185086055144],[-128.05501267912038,53.031822734219915],[-128.05532357318017,53.03179881801331],[-128.05558803256946,53.03174209040363],[-128.05568477522067,53.03157898720008],[-128.05571006054592,53.03138741929108],[-128.05565830804832,53.03120617037339],[-128.05562089062175,53.03103138840021],[-128.05574027926744,53.030872939230214],[-128.0559283724913,53.03072505812656],[-128.0561330460211,53.03059146012955],[-128.0563683213901,53.03047245673752],[-128.05660082985057,53.030354066043685],[-128.05678586235462,53.030220253232514],[-128.05688643929923,53.03005932381962],[-128.0569253715703,53.02987929194822],[-128.05695188985834,53.02969387171481],[-128.05701244614758,53.029516825581865],[-128.05712089837178,53.02934510495932],[-128.05731457727956,53.02921618017949],[-128.05758299026965,53.029125750014686],[-128.0577814226307,53.028998418451444],[-128.0579184979045,53.028839093158396],[-128.05804592705894,53.028673210216084],[-128.05820580992196,53.02852189827933],[-128.0583857079987,53.02837863954426],[-128.0585465289947,53.02822730174165],[-128.05870631472044,53.028073748804694],[-128.058893034119,53.02793653093755],[-128.05914033008597,53.0278346909826],[-128.05938765224548,53.02773341498859],[-128.05962814782598,53.0276260878835],[-128.05987162488887,53.027522627070915],[-128.0601298281441,53.02743404598264],[-128.06040277270523,53.02736034426338],[-128.0606708119783,53.02728167878078],[-128.06092989860247,53.02719195948249],[-128.0611898282875,53.027100538935656],[-128.06144680145346,53.02700581554575],[-128.06169518988082,53.02690731376948],[-128.06193203524776,53.02680228745362],[-128.06208992662073,53.02661008497102],[-128.06198813056295,53.02643755054122],[-128.0618938027679,53.02626489444313],[-128.0618759847746,53.026090335938804],[-128.06200516022597,53.02592273158815],[-128.0622826956259,53.025866880362194],[-128.0625526975278,53.02579041792018],[-128.06281867802173,53.02570842035649],[-128.0630965801774,53.02564078616498],[-128.06333920543327,53.02553957455339],[-128.06355835576198,53.02541636281737],[-128.063774587988,53.025290950806266],[-128.0640299225093,53.02520128991747],[-128.06430479410844,53.02512922194649],[-128.06454735954372,53.02502689676993],[-128.0647674836249,53.0249047775955],[-128.0649953459392,53.02478813629275],[-128.06523294871673,53.02467972671936],[-128.06547538786717,53.02457459484119],[-128.06571669410076,53.02446555441985],[-128.06595992068588,53.02435760977282],[-128.06622705712635,53.024299680191504],[-128.06646466799594,53.024229945628214],[-128.0667300594123,53.0241552309769],[-128.0669943739787,53.02409679305676],[-128.06724176575932,53.02401679678808],[-128.06756161434296,53.02394785155299],[-128.06792618140489,53.02393417867182],[-128.0682543286815,53.023920578318574],[-128.06853627324415,53.023917311057616],[-128.06885437940463,53.023908368987925],[-128.06910964556542,53.02389436759885],[-128.06942815853694,53.02387476317684],[-128.06971855605224,53.02394925642604],[-128.06999211511317,53.02402292351904],[-128.07026495275062,53.02410108651976],[-128.07056657538953,53.02411821140272],[-128.07078071044444,53.024007960328674],[-128.07106574298354,53.02395307730259],[-128.0713430075319,53.02389216018521],[-128.07164156038831,53.023884674931885],[-128.07193706592167,53.023910306507055],[-128.0722200131474,53.02396586810427],[-128.07249617805013,53.024035564784924],[-128.07276525952807,53.0241132231167],[-128.07303788413705,53.02418689967322],[-128.0733156450457,53.024250961585885],[-128.07361270526474,53.024270400853375],[-128.07389908931955,53.024319728264075],[-128.07419270545003,53.02434483148088],[-128.07449116851348,53.024354720137886],[-128.07478950961956,53.02436180328264],[-128.0750875893785,53.024363841429754],[-128.0753858211682,53.024368683055215],[-128.07568190254807,53.02438701339672],[-128.0759774814331,53.02441431959542],[-128.0762713732627,53.024445017664156],[-128.0765499570583,53.02450681564483],[-128.0768462590181,53.02452962308265],[-128.07714245172312,53.0245501897669],[-128.07744054785007,53.024552221706315],[-128.0777378346592,53.02453801757239],[-128.0780303614921,53.02450259811801],[-128.07831219680784,53.02443990703243],[-128.0786068330275,53.024447601827376],[-128.07889541622583,53.02444644377833],[-128.07915219652435,53.024348877193894],[-128.07939365853952,53.024243733281395],[-128.0796109161706,53.02412108006858],[-128.07982135756973,53.02399294176066],[-128.0800240840797,53.02385989024213],[-128.0802151434272,53.023717520337954],[-128.08041987140595,53.02358723968666],[-128.0806627456955,53.02349215683401],[-128.08094172308643,53.023428388686334],[-128.0812335259979,53.02337840121987],[-128.0815205444405,53.02332625550871],[-128.08180667631817,53.023275245705825],[-128.08209287735679,53.023225354947044],[-128.08238005847878,53.023176567150024],[-128.0826672112562,53.02312721417103],[-128.08295336810468,53.02307676606275],[-128.08323848811403,53.0230240846457],[-128.08351946231375,53.022963072943895],[-128.08379939996007,53.02289983692226],[-128.08408248668746,53.02284383538962],[-128.08437194161678,53.02280340529036],[-128.08466871902272,53.02277910365637],[-128.0849671244459,53.022768789152686],[-128.08526429540743,53.02277138243824],[-128.08556190645507,53.02278293499036],[-128.08585886691182,53.02280010317327],[-128.08615592271988,53.02281951087592],[-128.08645562104695,53.0228355081647],[-128.08675715844163,53.02285090718717],[-128.0870535371167,53.02287537349483],[-128.087336859694,53.02291911773342],[-128.08761064797673,53.022997224286094],[-128.08785524294498,53.02310835527584],[-128.0880375865118,53.02324524929059],[-128.08813701873123,53.02342453099623],[-128.0881202935751,53.023597457280225],[-128.0879826002674,53.023760750307574],[-128.0878059320801,53.02391016932867],[-128.08758777334353,53.024032854032754],[-128.08745323196797,53.02418432480564],[-128.08742286369514,53.02432666103055],[-128.0874384184441,53.024453055850785],[-128.08754527967218,53.02461258492599],[-128.08771236031097,53.02476208026191],[-128.08789406000074,53.024904590750566],[-128.08809216053243,53.025038963810445],[-128.08832829351854,53.02514856673913],[-128.08855675301885,53.02525437718761],[-128.08871918048013,53.02540395354095],[-128.08893549929775,53.02552846985895],[-128.08914631499343,53.025655334178616],[-128.0893444379219,53.02578970481218],[-128.08951790514712,53.02593572163357],[-128.08965837889772,53.026094653429475],[-128.08977765446934,53.02625956549355],[-128.08986922049093,53.02643057324867],[-128.0899422424797,53.02660470744079],[-128.09001807310173,53.026778800783994],[-128.0901105393366,53.026949227415635],[-128.09021877146165,53.027117141621716],[-128.0903205179664,53.02728628266328],[-128.0904397721055,53.02745063842453],[-128.0905220919171,53.02762348648017],[-128.09059882487202,53.027796998458456],[-128.09068114644342,53.02796985532794],[-128.09079950531475,53.02813478258868],[-128.09092430854517,53.028297909558276],[-128.09104915546865,53.02846160059334],[-128.09116657625648,53.02862654411679],[-128.09128493884293,53.02879147082713],[-128.0913977847847,53.028958181168235],[-128.09150783835904,53.02912493194183],[-128.09163542761047,53.02928745276587],[-128.09174086395478,53.02945541513025],[-128.0918666155864,53.02961852429323],[-128.09194706403161,53.02979141346492],[-128.09203589378794,53.02996358897067],[-128.09209966637346,53.03013900673423],[-128.09212995845905,53.03031782514385],[-128.0921360788745,53.03049875815498],[-128.09204541057346,53.03066851196207],[-128.09194161786732,53.03083737743271],[-128.0918274383591,53.031004185014886],[-128.09170569476032,53.03116888462833],[-128.0915620865957,53.03132612493185],[-128.09140048531884,53.03147863515609],[-128.09126536675322,53.03163741046834],[-128.09117018314268,53.03181060634058],[-128.09114623471666,53.03198814428751],[-128.0911578264336,53.0321667292105],[-128.09118351114768,53.032346750245736],[-128.0912176050597,53.03252662219845],[-128.09125257012863,53.03270535771463],[-128.09132657736282,53.03288003820674],[-128.09134198711223,53.03306024129448],[-128.0913379387547,53.033243596204635],[-128.09134032169177,53.033424586180644],[-128.0913759933789,53.033598825182104],[-128.0917238805567,53.033870658295214],[-128.09219178021857,53.033866289477494],[-128.09248094395736,53.03381856428005],[-128.09277018964121,53.03377251387965],[-128.09305932470318,53.03372423174653],[-128.09334985436328,53.033685447916405],[-128.09364599755594,53.03366562025166],[-128.09395029896956,53.03365965469788],[-128.09424818227905,53.03367510971278],[-128.09451650834558,53.033735362621044],[-128.09475309266693,53.03385278310649],[-128.09501689737704,53.033934978612784],[-128.0953010056152,53.03399326357955],[-128.09559003992334,53.034037452710976],[-128.09589116195676,53.03406181388066],[-128.09619130252656,53.034085061786094],[-128.09647209503294,53.03413275813564],[-128.09671962643014,53.0342258838389],[-128.0969398588861,53.0343525674131],[-128.09714635825026,53.03448509059752],[-128.09731532329002,53.03463341829252],[-128.0974678325889,53.03478876414039],[-128.09761023248257,53.03494765245165],[-128.09776997611874,53.03509838541038],[-128.09797266466458,53.03522929798563],[-128.09818908856454,53.03535436109545],[-128.09838088156695,53.035491636590876],[-128.09855902449613,53.035636436415764],[-128.09872614684858,53.03578479493622],[-128.09888598043563,53.03593720181132],[-128.0990402844695,53.036090836792496],[-128.0991835928118,53.036249142134935],[-128.09932505043605,53.0364074892057],[-128.09949581459995,53.03655409592989],[-128.0996977554855,53.036688381869794],[-128.09989416448173,53.036824451874004],[-128.10004652486433,53.03697643423313],[-128.1001584579608,53.03714258767486],[-128.10025293800868,53.03731465654641],[-128.10035201098054,53.03748495763653],[-128.1004575575766,53.03765403139184],[-128.10055385178183,53.03782494674536],[-128.1006222490711,53.03799860062615],[-128.10065536305547,53.0381768015549],[-128.10066618159172,53.03835765031516],[-128.1006657407937,53.03853756957565],[-128.10065131595042,53.03871830275144],[-128.10062846822296,53.038898629856995],[-128.1006075150753,53.039079479208254],[-128.10059954943125,53.03925841138081],[-128.10061580362859,53.03943580035096],[-128.1006759746351,53.03961296345029],[-128.1007797988492,53.03978486543118],[-128.1009147861021,53.03994443778676],[-128.10113103394727,53.0400655799618],[-128.1013702160755,53.04017790155913],[-128.1015874905023,53.04030070161539],[-128.10180479369285,53.04042405677434],[-128.10202841991898,53.04054282399174],[-128.10226109142303,53.04065581582606],[-128.10249915971173,53.040764236140475],[-128.10274075458696,53.040868665263766],[-128.1029914249662,53.04096732730731],[-128.10324386547376,53.0410642713421],[-128.10349085893418,53.04116411886478],[-128.1037262077195,53.041274262230495],[-128.10394527890276,53.04139534908372],[-128.10415537506043,53.04152387741392],[-128.10436090758944,53.041654728711286],[-128.10456551515517,53.04178559616044],[-128.10476738588198,53.041917633055405],[-128.10496837223252,53.042050806364294],[-128.10516841866604,53.04218399611162],[-128.10536850884884,53.04231774075293],[-128.10556855779527,53.04245092980131],[-128.10585683031357,53.04249735032272],[-128.10614513147198,53.04254433460848],[-128.10643337724127,53.04259018924976],[-128.10672429350245,53.04263319757534],[-128.10701859669865,53.042669418887975],[-128.10728317067668,53.04274652536098],[-128.10752232857152,53.042857714337224],[-128.10772782231723,53.04298743969175],[-128.1079014230263,53.04313342801494],[-128.10806958942183,53.04328287608733],[-128.10825598663737,53.043423030446874],[-128.10846064277223,53.04355445547796],[-128.10866529972898,53.0436858711843],[-128.10885167307904,53.04382546906153],[-128.1090097487802,53.04397845908557],[-128.1091530933138,53.04413619608507],[-128.1092863420793,53.044297476284456],[-128.10940943933156,53.04446117974056],[-128.10950216130496,53.04463439383192],[-128.10962878541542,53.04479410613001],[-128.10985918008444,53.04491665692837],[-128.11008210593081,53.04503934084009],[-128.11017691679945,53.04519794443598],[-128.11019243909766,53.04537870823025],[-128.11018210859535,53.04556553017851],[-128.11017705972318,53.04574609680547],[-128.1101580114496,53.045926913735755],[-128.11014453814946,53.04610707495517],[-128.1101693297966,53.046285986978],[-128.11030629630272,53.04644663456887],[-128.11058219628558,53.0465067169132],[-128.11088586192972,53.046523705095524],[-128.11118339595637,53.04653015745132],[-128.1114825743473,53.04653208678556],[-128.11178169748246,53.04653290434732],[-128.11208007421274,53.04653765342578],[-128.1123785774396,53.04654464143028],[-128.11267809050128,53.0465532875771],[-128.11297515747498,53.046569267563164],[-128.11326817658178,53.04659764998222],[-128.11356105060946,53.046641727887675],[-128.1138408313644,53.04670454012594],[-128.11408680158667,53.04680157759517],[-128.11430883638994,53.04692483471834],[-128.11457545703402,53.047004686646886],[-128.11486160346215,53.0470640195456],[-128.11512170998787,53.04714455197297],[-128.11529928354443,53.04729437753955],[-128.11555289119218,53.04737559050169],[-128.11585035060503,53.04741789470558],[-128.11610329797364,53.04750472321285],[-128.11630997697895,53.047638331817254],[-128.1165562379839,53.04774097290391],[-128.11682967662188,53.047826302458574],[-128.11709846789978,53.04791227973434],[-128.11733171463374,53.048016273683466],[-128.1175086572173,53.04815322067148],[-128.11764308702058,53.04831838958696],[-128.11773332145927,53.0484972470763],[-128.11777679568567,53.048675266607475],[-128.11779309709814,53.048852087771145],[-128.1177927010589,53.04903145048778],[-128.11777928689727,53.04921216775777],[-128.117757460394,53.04939303595549],[-128.11773004545157,53.04957400440357],[-128.1177006917047,53.04975388663852],[-128.11766472400743,53.04993220157465],[-128.11757994310244,53.05010635240671],[-128.11751480864956,53.05028071563356],[-128.11752185433818,53.05045937969492],[-128.11755700081872,53.05063922550835],[-128.1175697064382,53.05081891792484],[-128.11755815855688,53.05099960147122],[-128.11754564103776,53.051179737423034],[-128.11755549663917,53.0513583599486],[-128.11754473504652,53.051536222415734],[-128.11759624583817,53.051706806763484],[-128.1176286552779,53.051887822526794],[-128.117606179756,53.052074306876655],[-128.11756150919135,53.052228125260974],[-128.1174833369096,53.052403834108695],[-128.11745051108625,53.05258882707129],[-128.11742840201612,53.05276409501782],[-128.11739749899343,53.05295016542567],[-128.11735539296998,53.053117945254826],[-128.11735221389193,53.05329792238564],[-128.11735747554434,53.053478304082546],[-128.11737109443004,53.0536574148738],[-128.11739596189085,53.05383744482982],[-128.1174376835732,53.054017728416824],[-128.1175154879833,53.054190647821066],[-128.11764208265967,53.05436716675259],[-128.11782184321888,53.05452256317551],[-128.11806365187982,53.05457258686361],[-128.1183543535709,53.05455336245711],[-128.11866202868273,53.05449963862061],[-128.11895801972926,53.05443659099302],[-128.11922919549065,53.05436334341789],[-128.11948718654082,53.05426959849178],[-128.1197267389845,53.05416216749756],[-128.11993112857857,53.05402453636254],[-128.12013972856104,53.05389636194436],[-128.12040153149002,53.05382272390962],[-128.12069283527603,53.05377825648295],[-128.12099437371285,53.053751539950575],[-128.12129281959827,53.05373776490395],[-128.12158932181848,53.053759904083364],[-128.12188682133325,53.05378313659872],[-128.12218251427117,53.0537705387312],[-128.12247839196078,53.053742799196286],[-128.12277415720723,53.05371281899124],[-128.1230705384318,53.05369515764932],[-128.12336853336146,53.05369091819451],[-128.12366779102453,53.05369338110082],[-128.12396738508036,53.05370256303043],[-128.12426447807854,53.05371795007915],[-128.12455676801,53.05374912542256],[-128.12484357833682,53.05380168820842],[-128.12513364865606,53.05384466782883],[-128.12543904504042,53.05383916893122],[-128.12573545336411,53.05384055695265],[-128.12598726506246,53.053922336600856],[-128.12621753202683,53.05404037497],[-128.12644344684276,53.05416466114798],[-128.12668085132518,53.054275844218274],[-128.12691912740925,53.054385890147394],[-128.12713375402896,53.054508692511],[-128.12729818501094,53.054655939599755],[-128.12749803555653,53.05489446788059],[-128.12769477159867,53.05508933401455],[-128.12785750729665,53.0552399738288],[-128.12805678905167,53.05537369596234],[-128.12827243496625,53.05549816390277],[-128.1284961863453,53.05561631546693],[-128.12875314086,53.0557069644688],[-128.12904231456307,53.05575050691809],[-128.12933870740727,53.055732829862485],[-128.12963470652136,53.055707312345305],[-128.12992654787624,53.05567346628246],[-128.13020459539467,53.055606795202316],[-128.13050087428206,53.05558687530915],[-128.13079590186905,53.055560807412],[-128.1310921522578,53.05554033053484],[-128.13139077621486,53.055529889854924],[-128.1316888678167,53.05552731382304],[-128.1319805713876,53.05556519855037],[-128.13226295131608,53.055622316534375],[-128.13253588149576,53.05569585423489],[-128.13280170634755,53.05577680155761],[-128.13307376823104,53.05585147470728],[-128.13334403281934,53.055927865674],[-128.13362300545802,53.055991202931956],[-128.1339129585909,53.05603135655527],[-128.13420631073419,53.056064731133354],[-128.13450286388624,53.056087393352094],[-128.13479700231477,53.05611794533477],[-128.135090327348,53.05615075325663],[-128.13537696989704,53.05619937501278],[-128.13566455458042,53.05624797903793],[-128.13594440294153,53.05631017407958],[-128.1362120218044,53.056389404439486],[-128.13646281826226,53.056487430312764],[-128.13671003599745,53.05658832737405],[-128.1369437168914,53.05669900178163],[-128.13716304682706,53.056821701340056],[-128.13737326349957,53.05694904942524],[-128.13757439488197,53.057081601582446],[-128.1377746429026,53.05721529935205],[-128.1379821531715,53.057344372387185],[-128.1382131728555,53.05745789052681],[-128.1384460203401,53.057570254140735],[-128.13874100048054,53.05759853930793],[-128.13903779262074,53.05762566993301],[-128.13933469310788,53.057636548169924],[-128.13965791116573,53.057575762089414],[-128.13992031977116,53.05755138379637],[-128.1400152648171,53.057691470714694],[-128.14002942291827,53.057898029890865],[-128.14003400947442,53.05808178701632],[-128.14007059071218,53.05830644024346],[-128.1400357064275,53.05843038013534],[-128.13994790826848,53.058598997336816],[-128.14000487332092,53.05878292583697],[-128.1400852867771,53.05898717175804],[-128.14014667098337,53.0591474795461],[-128.1402088596698,53.059324022386186],[-128.14025514904316,53.0595002974393],[-128.1403913459139,53.05966093463987],[-128.14052934007807,53.05982040915381],[-128.1406673506768,53.059979892180415],[-128.1408044202988,53.060139383146264],[-128.14094793757795,53.0602970800439],[-128.14109788902698,53.0604524181239],[-128.14126160639856,53.06060246642178],[-128.14143082957577,53.06075072867948],[-128.14160096702037,53.060898409145835],[-128.14177020750898,53.06104667062079],[-128.1419558809374,53.06118735184518],[-128.14215614857946,53.061320477141166],[-128.142355503939,53.06145417466956],[-128.14254939746004,53.061590777923826],[-128.14274329222937,53.061727380848964],[-128.14294267986207,53.06186164180938],[-128.14307000131282,53.061938919921005],[-128.14314109909228,53.06199536402132],[-128.1433368939435,53.06213248751914],[-128.1435335470134,53.06226791814162],[-128.14376549336654,53.062380288050385],[-128.14402908147602,53.062471349303394],[-128.14429262860227,53.0625612807841],[-128.14451687896567,53.06266930514022],[-128.1445949794229,53.06284556566753],[-128.14465258537027,53.06302331044877],[-128.14469524577314,53.06320133566511],[-128.144701494946,53.06338057831697],[-128.1446834708827,53.063560261899575],[-128.14466076835907,53.063740030445544],[-128.1446558074157,53.06391947668092],[-128.14468728671977,53.06409826093817],[-128.14470292080887,53.06427788901933],[-128.14475392623166,53.06445464154364],[-128.14481428843771,53.06463121508747],[-128.144896858799,53.064803466204246],[-128.14498965680826,53.06497441046849],[-128.1450815288411,53.06514537148039],[-128.14521127185512,53.06530724149225],[-128.1453769321513,53.065458360974475],[-128.14551214066003,53.06561732442999],[-128.14559107907002,53.06579132699589],[-128.14562066672192,53.06596958031348],[-128.14561013281028,53.06614969267494],[-128.1456126924328,53.06632955810443],[-128.1456180477388,53.06650938167881],[-128.14562806632028,53.06668911152366],[-128.145641837329,53.06686878212707],[-128.14556580003838,53.06702934222874],[-128.14544650379437,53.067185083445025],[-128.14530563438677,53.06735803109443],[-128.14529481513566,53.067532534601916],[-128.14524870000653,53.067693115694446],[-128.14511586803948,53.06784013460323],[-128.14498261017604,53.067978749287676],[-128.1449139937383,53.06815655354128],[-128.14481688025043,53.068325898627336],[-128.14473401449715,53.068499477663764],[-128.1446939544051,53.06866890722144],[-128.144673429422,53.06885480547334],[-128.1445556042225,53.069021163507735],[-128.14444629290122,53.06918961767978],[-128.14434451120286,53.0693590469812],[-128.1442476476878,53.069533435708564],[-128.14414289920813,53.069736556767204],[-128.14407772265432,53.069927184465136],[-128.1441165299979,53.070047544716395],[-128.1443806629321,53.0700371433585],[-128.14472026826513,53.06994745857117],[-128.14495709157708,53.06984114835456],[-128.1451694308997,53.06971286300341],[-128.1453652702926,53.06957254633147],[-128.14554790005542,53.069430227383855],[-128.14570189168967,53.06927609783747],[-128.14585012012967,53.069119274844816],[-128.1460135371173,53.06896665050816],[-128.1461466729886,53.06880729446319],[-128.14631051141907,53.06862608164847],[-128.14642620648547,53.06849170366668],[-128.14661563245767,53.06839130028379],[-128.1468054320026,53.068279671076105],[-128.14695833166934,53.068122761533594],[-128.14709251645516,53.06796562710827],[-128.14724813002616,53.067788481264145],[-128.14749427747978,53.06768199592619],[-128.14777202999528,53.067627064954884],[-128.14806611905797,53.06759929551058],[-128.14836844725468,53.067586504092205],[-128.14866837755775,53.0675816113278],[-128.1489678481132,53.067586249974916],[-128.14926615932973,53.067604916677276],[-128.14955693498726,53.06764109942569],[-128.1498302280899,53.06771964085922],[-128.15011141692418,53.06776944852672],[-128.15040916731687,53.06775842120677],[-128.15070957065146,53.06774453788536],[-128.15101625638022,53.06776249165226],[-128.15130321103914,53.06774156995951],[-128.15156558936363,53.06766000666889],[-128.15181158297682,53.06755070799221],[-128.15203363029295,53.06743007945963],[-128.15221912412937,53.067289383193675],[-128.15240165055462,53.06714536879812],[-128.15261502295115,53.06701985730235],[-128.15285258133076,53.06691015408368],[-128.15310478472546,53.066812514050596],[-128.15337566768272,53.06673302442554],[-128.15366690851835,53.06670473678256],[-128.15396991107673,53.066705370311574],[-128.15426570792567,53.06672968405353],[-128.1545580492792,53.0667781566731],[-128.15482853545691,53.066856728900625],[-128.15504851303223,53.06697153774607],[-128.15523623868626,53.067114403383776],[-128.15542211161699,53.06725729358869],[-128.1556026786412,53.06740645024788],[-128.15578939570838,53.06754764750146],[-128.15602508614606,53.06764031310319],[-128.1563311594954,53.067664425179736],[-128.15661569202555,53.06772481021487],[-128.15689742963087,53.067785236666076],[-128.15718881521698,53.067796172072825],[-128.15748747739192,53.06776660957686],[-128.1577847131085,53.067745484216736],[-128.1580847273406,53.06776074364118],[-128.15837959050603,53.067803555990594],[-128.1586335736673,53.06788802628152],[-128.15884497910278,53.06801812270311],[-128.15906180658584,53.0681441917007],[-128.15934340815576,53.068201816938725],[-128.15960678030098,53.06828723446911],[-128.15986911312066,53.06837043744685],[-128.16016633675014,53.06838573375211],[-128.1604487125473,53.06833012321901],[-128.160728635243,53.06826279107454],[-128.1610066160724,53.06819436383966],[-128.16128466847354,53.068127064570156],[-128.16156821109752,53.068075913860284],[-128.1618655461584,53.06805701838024],[-128.16216466559425,53.06807283989566],[-128.16245047795633,53.068121412835886],[-128.1627314710261,53.06818520213755],[-128.16301836952886,53.06823656076965],[-128.16331823366716,53.06828543023159],[-128.16361508792218,53.06831194342595],[-128.163889058582,53.06827497031324],[-128.16414067329734,53.0681661074403],[-128.16434133517674,53.068030153443644],[-128.16448374177077,53.067870605394276],[-128.16462038531034,53.067707799845095],[-128.16480799288783,53.06757264925305],[-128.16504759115494,53.06746680257711],[-128.16530544625724,53.067370718393654],[-128.1655537152591,53.067269760531346],[-128.16589528690173,53.06712841217486],[-128.16619038836032,53.06710226470134],[-128.16648762851125,53.067081673193165],[-128.1667852270238,53.0670678092285],[-128.16708301041896,53.067057860078634],[-128.16738115196122,53.06705462950864],[-128.16768007690817,53.06704857685652],[-128.16797785995854,53.06703862545047],[-128.1682758868039,53.06703315275395],[-128.16857648299688,53.06704164891207],[-128.16887496788706,53.067045134172815],[-128.16916217679946,53.067011268343414],[-128.16943397309666,53.06693173355744],[-128.16970287206976,53.0668505654037],[-128.16997493737455,53.06677662034686],[-128.17026331494174,53.066747223219124],[-128.17056567782805,53.06675343087118],[-128.17086408859174,53.06675579144743],[-128.1711624285816,53.066756475575716],[-128.1714604665226,53.06675155060394],[-128.17175903584553,53.0667567129548],[-128.17205670119813,53.06674451139847],[-128.17235148051287,53.066712184418726],[-128.17263796760824,53.06666431546015],[-128.17280714627034,53.06648015822387],[-128.17298722854215,53.06632663167122],[-128.17320095728465,53.06622741390949],[-128.17338834641882,53.06614325344731],[-128.17362021247646,53.066033056101766],[-128.17385083347534,53.066008067350744],[-128.17409758084722,53.066060694378784],[-128.174294924326,53.06620727277206],[-128.17437710075876,53.06636942372517],[-128.17441775464235,53.0661590501645],[-128.17443755123924,53.065979892363266],[-128.1744573336824,53.06580016981938],[-128.17447243750306,53.06562053341921],[-128.17447446250335,53.065441137877535],[-128.17449143450045,53.065261467026566],[-128.1745553736876,53.06508597106683],[-128.17460330943993,53.06490853680101],[-128.17465312763215,53.06473105884901],[-128.17471706581068,53.06455557170763],[-128.17481590426914,53.064386158584],[-128.17489021044057,53.06421215730346],[-128.1749795914146,53.06404068519242],[-128.17507936925648,53.063871254450845],[-128.17518577921774,53.063703387370886],[-128.17531301183033,53.06354074144996],[-128.175448802067,53.0633807446307],[-128.1755455517946,53.06320688520207],[-128.17565001758567,53.06303793241041],[-128.17581186672146,53.06289370473094],[-128.17606454689326,53.062788723286666],[-128.1763449388882,53.062731989075026],[-128.176648108003,53.06271798794182],[-128.17692493463724,53.062664681039536],[-128.17715932349233,53.062549380536765],[-128.17740271451027,53.06244568840907],[-128.1776450473076,53.062339764318146],[-128.17791019397046,53.062259210632824],[-128.17819336084966,53.06220185573315],[-128.17848492052224,53.06216229012469],[-128.17878236511746,53.062146147067885],[-128.1790800826272,53.062135612155345],[-128.17937624184154,53.062149202135444],[-128.17965888787668,53.062209001613475],[-128.17994533461209,53.06225191533909],[-128.1802231875154,53.06218232271106],[-128.1805032395122,53.06211885874392],[-128.18076936358088,53.06203940144464],[-128.1810019854638,53.06192636764651],[-128.18121233653528,53.061798606931916],[-128.18136333257294,53.061643926663],[-128.1815133569099,53.061488699141556],[-128.18164436756385,53.06132709680201],[-128.1817687444578,53.061163930907455],[-128.18188645954677,53.06099865495212],[-128.18201746726714,53.06083705215303],[-128.18213141511154,53.06067128053808],[-128.18226431762287,53.06051019838815],[-128.18241433465647,53.060354969620604],[-128.18255198465036,53.06019548529001],[-128.18266967990886,53.060029643739895],[-128.18276154221505,53.05985251372034],[-128.18295911799237,53.05973115564012],[-128.1832698025594,53.05968224716038],[-128.1835692161593,53.059650370258545],[-128.1838619540087,53.05961580911107],[-128.18405532808313,53.05948555885137],[-128.18413430824202,53.05931258492664],[-128.18422271450842,53.059141113521584],[-128.18433566495221,53.058974236830885],[-128.18443634916187,53.05880534499042],[-128.18455409086684,53.0586406213605],[-128.1846151402897,53.058464615794925],[-128.18468466062305,53.05828957439568],[-128.18474665049854,53.05811355130171],[-128.18481547384746,53.057943006664935],[-128.18509303123363,53.0578683671936],[-128.18536910973435,53.057801045407196],[-128.18564614252074,53.05773426130308],[-128.18592314535456,53.05766691210111],[-128.18619914857683,53.057598468711795],[-128.1864834745877,53.0575461205131],[-128.18673658691975,53.05745063084624],[-128.18697204867274,53.05733920863635],[-128.18722552840816,53.05719662903334],[-128.18736973288725,53.057074009847305],[-128.18756173894909,53.05693593158389],[-128.18779144755788,53.056821816214224],[-128.18803767560865,53.05671972517131],[-128.18830072616484,53.05663582272979],[-128.1885818293084,53.05657568201753],[-128.18885983333467,53.05650999307838],[-128.18914406186602,53.05645595406465],[-128.18942927444195,53.0564030260695],[-128.18971549928662,53.056351755611765],[-128.1900103950498,53.05632329964041],[-128.19030426247207,53.05629318498636],[-128.19058944336552,53.05623968973908],[-128.19085673728682,53.05622015587434],[-128.191170733529,53.05616332634093],[-128.1914624126864,53.056127079384446],[-128.19177787995102,53.05613523910281],[-128.19204120378754,53.056147164354925],[-128.1923638533564,53.056149575144936],[-128.19268023639225,53.05608485018871],[-128.1929707273393,53.05602564544054],[-128.19328684778114,53.055955874694554],[-128.19351705491104,53.055942063899785],[-128.19384823252955,53.05592862702937],[-128.19413095941925,53.05586395865023],[-128.19438941688858,53.05578180468286],[-128.19468071437285,53.05573827471401],[-128.194920171314,53.055632366724254],[-128.195198159923,53.05558459890543],[-128.1954994472914,53.055571713224545],[-128.19579362414805,53.05554774001935],[-128.19606958339938,53.05547870875377],[-128.19633747539328,53.055398616872075],[-128.1966033686843,53.05531576352313],[-128.1968712874032,53.05523622590686],[-128.1971454041907,53.055167791323655],[-128.19743920054844,53.05513653896485],[-128.19773167776304,53.05509801939751],[-128.19801174408332,53.05503619802224],[-128.1982425148553,53.05492540472543],[-128.19839048470783,53.05476794982015],[-128.19858497948263,53.05464269334127],[-128.19883315288496,53.054542784720255],[-128.1990823096302,53.05444397823747],[-128.19934032758027,53.05435397415573],[-128.199601269828,53.054266157006374],[-128.19986025626577,53.054176698678525],[-128.2000007749107,53.05412811826855],[-128.20011927041435,53.05408779526158],[-128.20038325098076,53.05400440371203],[-128.2006521538217,53.053925959832966],[-128.2009251691945,53.05385472967907],[-128.20119407055049,53.053776293518496],[-128.2014640131082,53.0537000703549],[-128.20175450811115,53.05365934445723],[-128.2020529850639,53.05364648520514],[-128.202350869675,53.05364037127795],[-128.20264903052092,53.05363929150601],[-128.20294537780728,53.053621429669285],[-128.2032425349904,53.05360130994405],[-128.20309519280784,53.05339218920404],[-128.20289924865202,53.05327309128484],[-128.20263377852027,53.05316538861846],[-128.2023924633024,53.053072919833],[-128.2021515678843,53.0529703626082],[-128.202020570528,53.05278783988964],[-128.2018801316067,53.05267555185721],[-128.20168218965196,53.052517818876915],[-128.20148409242893,53.05237522660351],[-128.20130245436357,53.05220765582812],[-128.20111195021724,53.052085099530935],[-128.20096337715384,53.05196007500732],[-128.2007987011641,53.05181293035785],[-128.20065067862996,53.05168060413598],[-128.200494559772,53.05151817036251],[-128.2002861448231,53.05135670237361],[-128.20014149603654,53.05119909438133],[-128.2000011063443,53.051051495924376],[-128.19999320018937,53.051043240200514],[-128.19989489828458,53.05087804191706],[-128.1997302401637,53.05069502314755],[-128.1995059994583,53.05058877833693],[-128.1992894759753,53.05046894614429],[-128.1990322285577,53.050375090626325],[-128.19878759192724,53.050272031533126],[-128.19856817581214,53.0501505659545],[-128.1983586776544,53.05002218917741],[-128.19815462471252,53.04989034759174],[-128.1979569571824,53.0497555797365],[-128.19776474914423,53.049617911853176],[-128.19757438124998,53.04947965338325],[-128.19738036603528,53.049343139559866],[-128.19716816819272,53.04921648804868],[-128.19694692374182,53.049095618598486],[-128.1968031921879,53.048937424619886],[-128.19668229331032,53.048768725353646],[-128.1964977382811,53.04863427607259],[-128.19626590139305,53.048525368670234],[-128.19601679442422,53.04842575027291],[-128.19575945073083,53.04832964764801],[-128.1955048442077,53.04823237254667],[-128.19526198022837,53.04812703141029],[-128.19503436233734,53.04800907510412],[-128.19483022734187,53.04787554351732],[-128.19467107538762,53.047726045905726],[-128.19454955168078,53.04756296123094],[-128.1944491218907,53.047392193141015],[-128.19435607608108,53.04721960166422],[-128.19426866288939,53.04704747036964],[-128.19419236909206,53.04687345523127],[-128.1941151633971,53.046700013013485],[-128.194024045897,53.04652850641781],[-128.19385311771532,53.046368016565225],[-128.1936542055949,53.046298848548105],[-128.1934450154407,53.04621193507026],[-128.19322711168547,53.046119022102296],[-128.19300360587582,53.04602620388183],[-128.1927420856171,53.04592120447197],[-128.1925092603421,53.04581063130871],[-128.19226139365287,53.04571658729928],[-128.19198969761004,53.04564988966743],[-128.191728904902,53.04555888271162],[-128.19147933466434,53.04544973958964],[-128.1912615714305,53.045323181217576],[-128.19109520297178,53.04517829701894],[-128.19097293253583,53.045018585707886],[-128.19087534555422,53.04484831794416],[-128.19079148416682,53.04467219919528],[-128.19071037384882,53.044494899330616],[-128.19062005680442,53.044320577328456],[-128.19050867709214,53.0441544933173],[-128.1903643203363,53.04400135244019],[-128.19017689678915,53.0438647048858],[-128.189961013447,53.04373811829743],[-128.1897368647928,53.04361448274905],[-128.18952276454695,53.04348617630014],[-128.18933983370258,53.04334608107384],[-128.18923894164132,53.04318372038072],[-128.18906900035043,53.04302377055467],[-128.1888987981079,53.04287671247338],[-128.18871202169439,53.042734445625136],[-128.18852808369664,53.04259268187021],[-128.1883634007558,53.04244384364803],[-128.18823262196526,53.04228203638461],[-128.18813958398786,53.042108884005884],[-128.18809221767634,53.04193320761268],[-128.1881306472235,53.04175425422685],[-128.18815125750862,53.041573945248224],[-128.18814666679324,53.04139411254796],[-128.18813920948858,53.04121320300881],[-128.1881215328285,53.04103361294085],[-128.18809269614272,53.04085478582848],[-128.18804249393193,53.040678596915875],[-128.18795506207263,53.04050534035115],[-128.1878343950796,53.04033998206341],[-128.1876916686796,53.04018176769745],[-128.18754056185264,53.040024264557],[-128.1873766311991,53.03987148301127],[-128.18719637190136,53.039728528048045],[-128.18699628205547,53.039599401498734],[-128.1867599010184,53.03949168146246],[-128.18649636396998,53.039400714391384],[-128.18622677582883,53.03931939195238],[-128.18595489949846,53.0392482004106],[-128.185671558033,53.03919011675744],[-128.18538731980212,53.03913260506794],[-128.18510125784064,53.03907624749217],[-128.18481300833085,53.03903169587658],[-128.18451821900703,53.03904163817368],[-128.18421918242416,53.03907800659889],[-128.18392823240325,53.03907161719972],[-128.1836314551387,53.03904292368392],[-128.18331589016407,53.0389579615664],[-128.18308970797318,53.03886629582325],[-128.18282344142014,53.03879499340535],[-128.18255497798512,53.038717004976036],[-128.18227756764855,53.03864702850229],[-128.18200288036442,53.0385753240009],[-128.18175683124886,53.038478983117564],[-128.18156461166865,53.03833904806836],[-128.18132479075643,53.03823642111666],[-128.18105979430334,53.03815332521908],[-128.18079568194545,53.03806908242263],[-128.1805119526936,53.038003146717905],[-128.18023180887516,53.0379522732385],[-128.1799394143512,53.0379178756078],[-128.1796437614211,53.037892514499624],[-128.17934984561515,53.03786486958355],[-128.179057410313,53.03782935850229],[-128.17876906064186,53.037782552198834],[-128.1784790173331,53.03773914846762],[-128.1781843496408,53.03771487758961],[-128.17788663795181,53.03770412324398],[-128.17759441253156,53.03769101590801],[-128.17733714678872,53.03766718259444],[-128.1769928779557,53.03767801934197],[-128.17669435511428,53.03766951001406],[-128.1763967300232,53.03766042735305],[-128.17609761881235,53.03764072626212],[-128.17579792574176,53.03762775222704],[-128.17539616309298,53.03764693558945],[-128.1749159583459,53.03764906247617],[-128.17476122767025,53.037437802230826],[-128.17460543188793,53.03727868377929],[-128.17448499862246,53.03711668034589],[-128.17445657157037,53.036963061241764],[-128.17443010633127,53.03679315583737],[-128.1743311255147,53.03663019187943],[-128.17418461816595,53.03648828180673],[-128.1741284475479,53.036303794601196],[-128.17393367028802,53.036167813767435],[-128.17373339322188,53.0360341849389],[-128.17352218765393,53.03590579716706],[-128.17332288256634,53.035772705781454],[-128.1732161095784,53.0356037144263],[-128.17308568273035,53.03544693372751],[-128.17284291906938,53.03534099019451],[-128.17261004516797,53.03522757302132],[-128.17243450196582,53.03508395353935],[-128.17227434994143,53.03493051736622],[-128.17210601961366,53.034781724555124],[-128.1718898063562,53.03464670012386],[-128.1717117128198,53.03454460384746],[-128.171519978965,53.03437661891941],[-128.17128989300653,53.03426258293586],[-128.17105345349998,53.03415203543151],[-128.17081791239573,53.03404090595007],[-128.17058961147703,53.033925158773584],[-128.17037202686453,53.033799680975385],[-128.17015002645326,53.033679333037846],[-128.16990132568256,53.03358470295457],[-128.16962238892995,53.03352033064035],[-128.1693381243182,53.03346109569937],[-128.16904777683578,53.033410948951264],[-128.16879124292532,53.033327661710615],[-128.1685791248069,53.03319928218829],[-128.16835982612542,53.03307663931441],[-128.16809500163578,53.032995753970084],[-128.16782826848507,53.03291377314409],[-128.1675847058414,53.03281007584125],[-128.16734564724516,53.03270292331558],[-128.16729452921322,53.03252506630523],[-128.16724526315113,53.032347166271634],[-128.16719790817825,53.03216979608613],[-128.167165416847,53.03199103181187],[-128.16712829479246,53.031812917570335],[-128.16710791755327,53.03163336572515],[-128.16709127473436,53.031453754227144],[-128.16704858115222,53.03127629828861],[-128.166965016415,53.03110351214248],[-128.16687036590199,53.03093318054519],[-128.1667572185121,53.03076654266848],[-128.16663120427157,53.03060406901583],[-128.16649410418816,53.03044404084415],[-128.16635151889744,53.030286355265545],[-128.16621442089354,53.03012632673912],[-128.16607183770793,53.029968640793285],[-128.16591000420087,53.029818034181616],[-128.16578302680304,53.02965502130855],[-128.16568191456193,53.02948591943633],[-128.16560022616702,53.02931310682964],[-128.16553985607368,53.02913709579769],[-128.16549343772868,53.02895970759696],[-128.165460087226,53.02878207947536],[-128.16546025297808,53.02860215006326],[-128.16551385789595,53.02842573260854],[-128.16557019745488,53.028248134921796],[-128.16558444179284,53.02806963297714],[-128.16554727267385,53.0278903978692],[-128.16546101398222,53.02771934600538],[-128.16532847273518,53.02755699075126],[-128.16527937861886,53.02738189348799],[-128.16525804217167,53.027201802627204],[-128.1652265319513,53.02702357553007],[-128.16520056542365,53.02684413460871],[-128.16513651038252,53.02666874687303],[-128.1650631651066,53.0264946595956],[-128.16499073245322,53.02631999052614],[-128.16494245281675,53.026142636077836],[-128.16494264953147,53.02596327084916],[-128.164968053457,53.02578344293613],[-128.16506503104182,53.025615188382716],[-128.16521400472107,53.025458875353245],[-128.16538496500206,53.02531224756296],[-128.16540942588964,53.025132436757495],[-128.16556419658738,53.02497994478427],[-128.16573875776388,53.02483100824728],[-128.16579353942853,53.024659608627395],[-128.16577127634028,53.02447953457238],[-128.16573973765318,53.0243007518263],[-128.16569889469253,53.02412269592078],[-128.16565058626543,53.02394478603203],[-128.1655948974564,53.02376868865623],[-128.16552711232268,53.023593369359304],[-128.16543616028497,53.023421847357625],[-128.16538604387412,53.02324508256028],[-128.16535450772503,53.02306629958176],[-128.16532946886988,53.022886841275415],[-128.165311910751,53.02270723664304],[-128.1653018326491,53.02252805965773],[-128.16530013300738,53.022348172812684],[-128.16530310661088,53.022168191184576],[-128.16530700642042,53.0219882015006],[-128.16530812734715,53.021808818837584],[-128.1653147195939,53.021626528688564],[-128.16532579959457,53.021440802053675],[-128.1652492431623,53.021276853617564],[-128.16505648723142,53.02114195159614],[-128.16483594894228,53.02101203432187],[-128.16466405236673,53.020864973671074],[-128.16448450762897,53.02073262631808],[-128.16440822429445,53.02053729292969],[-128.1643554375758,53.02036281856933],[-128.16432489071897,53.02018513799005],[-128.16430917604748,53.02000494316856],[-128.1643018244722,53.01982403882961],[-128.16429631057082,53.01964253575693],[-128.16428898742356,53.019462186882144],[-128.16431132614005,53.019277365607095],[-128.16429495660532,53.019102787784654],[-128.16421377872678,53.01893948840516],[-128.1641207939605,53.01881956917051],[-128.16401669069265,53.01860960773097],[-128.16382255318115,53.01846575204288],[-128.16361310300198,53.01833283110301],[-128.16339768508638,53.0182112294262],[-128.16316951820787,53.01809603128556],[-128.16293317442484,53.01798545777915],[-128.16269322872114,53.01787720086647],[-128.16245420946782,53.017768917525096],[-128.1622187816959,53.017657769813816],[-128.16199146091603,53.01754086795143],[-128.16183060137675,53.01740817415292],[-128.16174671482048,53.017228107585275],[-128.16174391882436,53.01704487746245],[-128.1617150667145,53.01686323700277],[-128.16174536504903,53.01668780331232],[-128.1618365936102,53.01651685770074],[-128.16196077308462,53.01635091297037],[-128.16210877177002,53.01619406447589],[-128.1622994073947,53.01604932115997],[-128.16250519954943,53.01590878362169],[-128.16268179976456,53.015763732005716],[-128.16278862322307,53.01560539562],[-128.1628312671627,53.0154342190598],[-128.1628418865902,53.01525745976014],[-128.16283078098132,53.0150760588154],[-128.16280742382543,53.01489264052629],[-128.16278124680375,53.01470871791131],[-128.16276261994634,53.01452633383933],[-128.1627590364855,53.01434591587253],[-128.16275921362038,53.01416598493846],[-128.16276128562808,53.01398658422371],[-128.16276332933154,53.01380662798429],[-128.16276723867696,53.013626628538965],[-128.16277211725028,53.01344717628952],[-128.16278071305305,53.013267655840444],[-128.16279584756887,53.01308801543892],[-128.1628100280923,53.01290783648732],[-128.16281396590009,53.01272840141087],[-128.16280573802487,53.012548624466454],[-128.16279565954378,53.012368890415914],[-128.162783699711,53.012189181886825],[-128.16276894883313,53.01200953350085],[-128.16275419762374,53.011829876134236],[-128.16273944699532,53.011650227706525],[-128.16272469603544,53.011470570298144],[-128.162710886127,53.01129090457867],[-128.1626989556965,53.011111760393],[-128.16268887755177,53.010932017221116],[-128.16268251699918,53.010752214811475],[-128.16270517198362,53.01057355722515],[-128.16275027548508,53.01039560886963],[-128.16278225982308,53.010216780096485],[-128.16281237793405,53.010037985523596],[-128.1628462276914,53.00985912246757],[-128.16287533400356,53.0096786603774],[-128.16295815372862,53.009507867084146],[-128.16308903146137,53.00934572520013],[-128.16324647354605,53.00919149892412],[-128.1634259924771,53.00904919854512],[-128.16362077974046,53.008913343800955],[-128.16382317176408,53.00878014720414],[-128.1640246508636,53.00864753197709],[-128.16421162844807,53.00850509336842],[-128.16442007131064,53.008380761717135],[-128.16467996327822,53.008294711868125],[-128.16495251740997,53.008219083109644],[-128.16522803317838,53.008146762377066],[-128.16550683980697,53.00808391371041],[-128.165797056924,53.008043266243135],[-128.166089438756,53.008008748388654],[-128.166380609058,53.00796864694744],[-128.16666853048244,53.00791963629749],[-128.16696523125015,53.00791474846719],[-128.16725821953997,53.00794691292931],[-128.16754050184946,53.00800730804402],[-128.16783225405857,53.00805182507987],[-128.16812664993964,53.00805650093803],[-128.1684181045012,53.008021994329596],[-128.16870810358688,53.007977424549004],[-128.16899811699102,53.00793285377952],[-128.16931752224355,53.00793370348739],[-128.1696150622385,53.007927107525255],[-128.16990137146678,53.00788316766993],[-128.17016765788043,53.0077947457071],[-128.17037511060337,53.0076698563232],[-128.17055548238986,53.007526407682384],[-128.17072613708507,53.00737585545874],[-128.17089887142012,53.00722918376493],[-128.1710677719051,53.00708089635988],[-128.17123000544288,53.00692993337714],[-128.17137607129357,53.006773106745804],[-128.17148709558398,53.00660682711081],[-128.1715895441754,53.00643735118762],[-128.17169296070378,53.006268413342795],[-128.1718096658846,53.006103714687086],[-128.1719509687449,53.00594528889205],[-128.17207802686778,53.00578207623108],[-128.17220128076687,53.00561782143308],[-128.17231229880994,53.00545154090772],[-128.17239122634092,53.00527856937696],[-128.1724409270503,53.005099975167866],[-128.1725340107096,53.0049301057077],[-128.17272205557697,53.00479099588339],[-128.17294280368245,53.004670896463246],[-128.17317122904979,53.00455458316207],[-128.17340159012005,53.00443991972821],[-128.17363102410238,53.004325263938995],[-128.17386430331007,53.00421278779399],[-128.1740503887613,53.00407202575704],[-128.17424423626034,53.00393729038171],[-128.17450084546678,53.00384287510514],[-128.1747005033157,53.003711959829936],[-128.17487795151172,53.00356687156615],[-128.17512205033253,53.0034654034375],[-128.17536895347348,53.00336387406035],[-128.17561005797458,53.003258532029626],[-128.17586875513686,53.003168559196055],[-128.17613218013773,53.003079619527576],[-128.17641461747237,53.00303404844976],[-128.1767102713462,53.00302746873585],[-128.17700920417388,53.00303036097621],[-128.17730920566592,53.003036030816176],[-128.17760825294832,53.003041152520616],[-128.1779057796097,53.00305303671868],[-128.17820307628912,53.0030604313231],[-128.17850065313803,53.003054932619996],[-128.17879847368513,53.003054477788616],[-128.17909413355716,53.003029955467944],[-128.17938537237706,53.00299206174326],[-128.17967559890232,53.002952499972785],[-128.17996761858453,53.00291179225351],[-128.18026329956558,53.002905759136226],[-128.1805619523389,53.002921534934174],[-128.18084633618102,53.00296840684318],[-128.1811208488606,53.003041235506394],[-128.18142606025995,53.00303895125853],[-128.18163977270592,53.002927942238436],[-128.1818245413976,53.00278046541315],[-128.18203649184636,53.002653228749224],[-128.1822824488646,53.00255171093632],[-128.18256651156003,53.00250161069775],[-128.18286664007357,53.00250950606282],[-128.1831615838427,53.0025438365113],[-128.18345167905974,53.00253846378847],[-128.18373940031108,53.00248661586568],[-128.18403643932342,53.00247102375173],[-128.18432967923857,53.002435878680785],[-128.18461097052077,53.00234995167637],[-128.18442909274276,53.002244581617994],[-128.1841864328918,53.00213753938312],[-128.183952871459,53.00202583499619],[-128.18375657008886,53.00189439130769],[-128.1836120643863,53.001735074065024],[-128.18346764633586,53.00157744106377],[-128.18332603516322,53.001419755904095],[-128.18318251601568,53.001261549881335],[-128.1830344851629,53.001106225345005],[-128.18285066019106,53.00096277380187],[-128.1827164715777,53.00080438548393],[-128.18262182541608,53.00063406348516],[-128.18253360127457,53.00046137146483],[-128.1824425725773,53.000288740266534],[-128.18230844513937,53.00013147139159],[-128.18210190480846,53.000000214612655],[-128.18201946991695,52.999922147041275],[-128.18185577130626,52.999770474196715],[-128.18171693391494,52.99961217081435],[-128.18160008120532,52.99944562211216],[-128.18150077094603,52.99927537656757],[-128.1814228072229,52.99910250279417],[-128.1814061451677,52.998923445382204],[-128.18140808022173,52.99874292275629],[-128.1814128493999,52.99856290369569],[-128.18141481338935,52.99838294549706],[-128.18141680588224,52.998203542785404],[-128.1814440025241,52.998024229644145],[-128.18148152410052,52.997845855393685],[-128.1814453405563,52.997668280182374],[-128.1813858609725,52.99749169211154],[-128.18133938253592,52.99731375133155],[-128.18130409628728,52.99713559443176],[-128.18125297621646,52.996958295526326],[-128.18115469976848,52.996789716480805],[-128.18108330672692,52.99661727678255],[-128.18110957900902,52.99643798962976],[-128.18107335432018,52.99625984996498],[-128.18100277272953,52.99608515309515],[-128.18090724725508,52.99591540186998],[-128.18078860004562,52.9957500064865],[-128.1806893591488,52.995580879859254],[-128.1806549886666,52.99540214968066],[-128.18062527424493,52.995223333336526],[-128.1806141844181,52.995043616362615],[-128.18061804541102,52.99486417879867],[-128.1806246678472,52.994684125121296],[-128.18069039874132,52.994509713017685],[-128.1808297647043,52.9943513100066],[-128.18092749038985,52.9941819019256],[-128.18094627189586,52.994002188140385],[-128.18089793388359,52.993824281332195],[-128.18072892549597,52.9936777453269],[-128.18057725705447,52.99352360600499],[-128.18044206077502,52.99336300052309],[-128.18031883799506,52.99319936630574],[-128.18022424687476,52.99302959712117],[-128.18011490736825,52.99286346378925],[-128.17999910549304,52.99269857092851],[-128.17996945317486,52.99252087410827],[-128.18006152512163,52.992350450082085],[-128.1801970126076,52.99218932115457],[-128.18032744927848,52.99203893087391],[-128.180587818385,52.991946672628735],[-128.18080359226389,52.991822163805665],[-128.18094501553716,52.99166765029176],[-128.18102571850636,52.99149407258421],[-128.1811432435538,52.99132879061991],[-128.18129495805718,52.99117464216102],[-128.18143999216383,52.991017810038215],[-128.18160500422655,52.99086846414497],[-128.18174879504372,52.99070549334288],[-128.18196757941243,52.990585410553095],[-128.18218040863175,52.99045815530448],[-128.18244527570857,52.99036301120841],[-128.1826626663741,52.9902519211844],[-128.18279315056594,52.990084711211026],[-128.18268756299594,52.98993701212369],[-128.1825916554061,52.98981435264507],[-128.18274241926886,52.989660219593084],[-128.18287226390555,52.98949862649451],[-128.18302782435092,52.989347202286815],[-128.1830502963573,52.98916686304403],[-128.18309161947911,52.98899009373073],[-128.18310013944955,52.988810568927775],[-128.18314892202534,52.98863366135994],[-128.18323905027776,52.98846214902927],[-128.18333787946975,52.988296645621865],[-128.18354788819732,52.98816943969841],[-128.18381958489806,52.98809826348911],[-128.18410983482303,52.98806149515627],[-128.18437485134797,52.987987643313886],[-128.1845455372792,52.98783986453702],[-128.18466592956526,52.98767620219161],[-128.18488663510996,52.987394091133126],[-128.18498240611896,52.987223593588325],[-128.18521456393987,52.98710999129793],[-128.1854477175745,52.98699748212921],[-128.18563659489442,52.98685889754487],[-128.18583486005582,52.98675768905691],[-128.18593085624266,52.98659167058879],[-128.18620113484857,52.98652948324146],[-128.1864325620586,52.98641981110893],[-128.18664172759148,52.98629485692648],[-128.18682110056739,52.98615308347832],[-128.18698037939242,52.98600158425966],[-128.18717786232097,52.98586732142536],[-128.18737162871759,52.98573311824644],[-128.18757694308982,52.98560599163107],[-128.18778115831142,52.98547552188817],[-128.18796329971184,52.98533313009013],[-128.18816657255417,52.985202677109875],[-128.1883515880254,52.98506191732975],[-128.18849086540922,52.98490293990243],[-128.18860552436854,52.98473713719417],[-128.18868431854946,52.98456359712328],[-128.18879615701252,52.9843972815449],[-128.18887995954782,52.984158062366596],[-128.18885477247997,52.983976920201876],[-128.18879172519232,52.98380377260268],[-128.1885584544462,52.98369600052339],[-128.18827445306712,52.98363625422252],[-128.18798442305356,52.98358614363119],[-128.18778304709105,52.98346320416806],[-128.18758842472562,52.98332668639588],[-128.18735434999863,52.98322116903338],[-128.1871174142094,52.98311458327736],[-128.18695380483203,52.98296403624862],[-128.18673844175035,52.98284135466974],[-128.18644721699505,52.98280415913014],[-128.18615432985243,52.98277092187909],[-128.18586398832335,52.982732587479184],[-128.18557859313916,52.98268182908628],[-128.18531922681615,52.982592471609465],[-128.1850987943276,52.98247997058967],[-128.1849133935622,52.98234103545288],[-128.18464198480572,52.98227151370675],[-128.1843694649096,52.982198657770574],[-128.18409437115116,52.98213032415446],[-128.18380400731323,52.98209142915454],[-128.18351105523737,52.982111431965855],[-128.18321446978214,52.9820967488727],[-128.18292027151804,52.982074173474494],[-128.18263568007623,52.98202058608827],[-128.18235752235364,52.98196520177578],[-128.182060002621,52.98198697164174],[-128.18176672893756,52.98201874258781],[-128.18147999761192,52.98206889343472],[-128.18099391319774,52.982126096912566],[-128.18073571464097,52.98204119213388],[-128.18048711999577,52.98194322152079],[-128.18026346805289,52.98182235895604],[-128.17999046422028,52.98175790538956],[-128.17969446274336,52.98173647641924],[-128.1794185124829,52.981669277925],[-128.17913820946274,52.98160832057206],[-128.17889676380867,52.98150404423682],[-128.17871952755468,52.98135989955367],[-128.17847869374975,52.98124944980654],[-128.1782205922265,52.9812026534472],[-128.17792416557523,52.98124568364421],[-128.1776285991282,52.98126908336431],[-128.17734433550993,52.9812216475769],[-128.17708055569935,52.98113683811995],[-128.17683190249002,52.9810377400341],[-128.17659230149718,52.980932860019415],[-128.1763516761094,52.980826321370294],[-128.17612457072394,52.980710564175844],[-128.17587858312194,52.980608607810474],[-128.17563531537863,52.98050492364027],[-128.17540279167386,52.980392628287795],[-128.1751524111651,52.980295791781536],[-128.1749127467324,52.98018979755356],[-128.17472273511487,52.98005093210979],[-128.17450098905474,52.9799300237818],[-128.17422388153454,52.979876287322696],[-128.17392451557404,52.979880125251505],[-128.1736290709595,52.97990575493746],[-128.1733356051425,52.97993358946482],[-128.1730424252168,52.97996702320431],[-128.17274680772476,52.9799892907115],[-128.17244843830716,52.97999423650903],[-128.1721485711887,52.97998798975097],[-128.17184662455597,52.97997786139375],[-128.17155586179408,52.97994903339719],[-128.1713004424946,52.97986293616225],[-128.17106047526073,52.97975076965037],[-128.17077731164872,52.97970609615919],[-128.17048471521576,52.97967785538478],[-128.17018692557264,52.97965755685061],[-128.16988656051447,52.97964178917341],[-128.16958897171102,52.97962541357456],[-128.1693205238773,52.97963147758701],[-128.16921576921646,52.97959024164251],[-128.16905514072815,52.979661026468186],[-128.1688731466648,52.97980674922471],[-128.1686734405012,52.97993486100047],[-128.16837723888057,52.97996385451615],[-128.1680827205111,52.97993452210829],[-128.16779383576122,52.97988770468141],[-128.16752588604396,52.979811919335106],[-128.16735186493756,52.979729921423626],[-128.16699112926685,52.979774672113926],[-128.1667066315825,52.97983203721923],[-128.166428097823,52.97989657424686],[-128.16615251008514,52.979963854554846],[-128.16587693531957,52.980031698966],[-128.1655973887701,52.98009457551585],[-128.16531366907105,52.98014911578825],[-128.16502893798463,52.980201987901935],[-128.16475034221835,52.98026540095789],[-128.16448579644705,52.9803481779198],[-128.16421828859214,52.98042763658484],[-128.16394092882646,52.980497195169825],[-128.1636655042873,52.98056782961634],[-128.16334139964266,52.98067243236332],[-128.1631694135977,52.98075854694605],[-128.1629673808715,52.980896224612906],[-128.16273970956672,52.98100690257117],[-128.16246177336893,52.9810652487619],[-128.1621661293407,52.98110542657869],[-128.1618825411304,52.98116276302112],[-128.1616171727605,52.98124778149608],[-128.16134223750208,52.981309998043955],[-128.1610441421986,52.981320514933856],[-128.16074504955054,52.98132991935066],[-128.16044698219457,52.98134099024709],[-128.16015139190253,52.98132735214905],[-128.15986008697624,52.98128785089887],[-128.1595664482194,52.98125736001138],[-128.15926980519578,52.98124149693822],[-128.15895125603794,52.98123500281157],[-128.15842592323204,52.981254716764624],[-128.15812897994184,52.98126968931859],[-128.15783227833018,52.981289131871804],[-128.15753559018123,52.98130913842865],[-128.15723860427443,52.981322988470474],[-128.1569409494517,52.98132395360809],[-128.1566410909351,52.98129973053931],[-128.15638710179934,52.98122310857146],[-128.1561671528414,52.981099891719374],[-128.15592123948173,52.98099845820683],[-128.15567354758164,52.98089873380524],[-128.1554419574576,52.980785261912615],[-128.15519872317608,52.980681526888866],[-128.15492979433554,52.98060461013618],[-128.15463619244588,52.980574671431704],[-128.15433966955166,52.98056103593802],[-128.15404284938307,52.9805412349594],[-128.15375023017924,52.98051239713571],[-128.1534892346425,52.98042636386029],[-128.153254037067,52.98031519579404],[-128.1529869501288,52.980237676035195],[-128.15269332355425,52.98020716800522],[-128.15239892774946,52.98018003640668],[-128.15211697876106,52.98012240880117],[-128.15183760818562,52.98006024930533],[-128.1515472027599,52.98001959031711],[-128.15125018519683,52.98001436840777],[-128.1509714848789,52.980076064420594],[-128.15070502025034,52.98015828001968],[-128.15041173623402,52.980189981938956],[-128.15013713519153,52.98012997346955],[-128.14988497768272,52.98003368178393],[-128.14964804033352,52.97992478051929],[-128.14941291220777,52.979814724754675],[-128.14917060987844,52.9797104045661],[-128.14891245568936,52.97964336710914],[-128.14864326172747,52.97956083596156],[-128.14840153434392,52.97944921255271],[-128.14817812846596,52.979331093419034],[-128.14792420062798,52.979236515970904],[-128.14768190524583,52.9791321926856],[-128.14742110019657,52.97904950590632],[-128.14726403893746,52.97889597987447],[-128.14709785404852,52.978746548005645],[-128.14699702225155,52.97857910951235],[-128.1470392966521,52.97840009488305],[-128.14704581929337,52.97821500553923],[-128.146911787996,52.97807395571983],[-128.14669726382826,52.97794670377588],[-128.14647580660474,52.97782966706664],[-128.1462164525781,52.977738548044584],[-128.146043156949,52.97759597046744],[-128.1459144204636,52.97743016037967],[-128.1458264071258,52.97725800328163],[-128.14576606614338,52.977079171949505],[-128.14564147061893,52.9769216983754],[-128.14542967528158,52.97679270847909],[-128.14523613112777,52.97665554761959],[-128.14507807726193,52.97650035976703],[-128.14494018000426,52.97633807853057],[-128.1448449558723,52.97617053611707],[-128.1448295226442,52.97599424980571],[-128.14486698035856,52.97581196038697],[-128.1449026863057,52.97563194489197],[-128.14494687444355,52.97545346096285],[-128.1449043860026,52.975277111138475],[-128.14483310465909,52.975103527563064],[-128.14494689764396,52.974936098729565],[-128.14505412875988,52.97476823319897],[-128.1452309281165,52.9745923745381],[-128.14535908986093,52.97443253976346],[-128.14550419937808,52.97427575030051],[-128.14567688624626,52.974129112664315],[-128.14585428197057,52.97398351000342],[-128.14592955843682,52.97381118535289],[-128.14595974965837,52.973632946734554],[-128.14609416895786,52.97346794782977],[-128.14624153306792,52.973318972407114],[-128.14642494040126,52.9731816624834],[-128.14669741505728,52.973108314344735],[-128.14695902017496,52.973022832249455],[-128.1472000230159,52.97291754640696],[-128.1474482778139,52.97282670132785],[-128.1476684090226,52.97269601108847],[-128.1479240622527,52.97260390903298],[-128.14819354375194,52.972526692722624],[-128.1484512289385,52.97243791553403],[-128.14869612321124,52.97233591860899],[-128.148925422512,52.97222075317424],[-128.14916260217976,52.97211384679632],[-128.14940882884164,52.97201967126685],[-128.14957284171493,52.97186814538802],[-128.14971133785733,52.97171034970026],[-128.1498035997107,52.97154219616966],[-128.1500068252987,52.971409567653296],[-128.15019285980722,52.971269405270725],[-128.15032277195604,52.971107846261454],[-128.15049833156883,52.970963390382096],[-128.15059609622392,52.97079344956531],[-128.15068823882928,52.97062304627761],[-128.1507785735748,52.97045380590447],[-128.15083492642535,52.97027677362904],[-128.15085947383287,52.970098079971145],[-128.15088026406397,52.96991888988555],[-128.1508963729757,52.96973922921792],[-128.150887279607,52.96955947268361],[-128.15093241716193,52.969382080022],[-128.15101974604,52.9692089660316],[-128.15104540157893,52.969033615083006],[-128.1510148905325,52.96885480562794],[-128.15100470225354,52.96867170587096],[-128.15114533013625,52.96851947418774],[-128.1513302536355,52.9683759666304],[-128.1515047324868,52.96822873036382],[-128.15163371895693,52.968067742298295],[-128.15175057157722,52.967887926965304],[-128.1520366950105,52.967937630813324],[-128.15232371514332,52.96798675258668],[-128.1526123319236,52.96803024824663],[-128.1529075116656,52.968056242604085],[-128.15319934686255,52.96808957966281],[-128.15347253455317,52.96816026032284],[-128.15374754501073,52.96822977702262],[-128.1540378153025,52.96826931087141],[-128.15433405402015,52.96827903168569],[-128.15463081974715,52.96828088584386],[-128.15487342735707,52.96837397855494],[-128.155034233669,52.96852798272693],[-128.1551947005258,52.968675266635756],[-128.1554645225657,52.96875273062478],[-128.1557352415903,52.968829612588074],[-128.15600765537746,52.96890309979175],[-128.1562738502495,52.968982861480164],[-128.15653573445255,52.969069436734074],[-128.156811481804,52.9691350137825],[-128.15709853044427,52.969184123615804],[-128.15739273947824,52.96920900364748],[-128.15769072109234,52.969216442140194],[-128.15798840485343,52.969217715108556],[-128.158286130571,52.96922010760116],[-128.15858338657262,52.969231476308885],[-128.15888115553972,52.969234422546116],[-128.1591782275829,52.96922393723289],[-128.1594619960356,52.96917165137784],[-128.15975267914564,52.96912708536083],[-128.16002315203622,52.96919891296417],[-128.16030491059811,52.96925428230306],[-128.16051926089844,52.96937815013382],[-128.16070737119122,52.969518193560525],[-128.1609638172384,52.969607657054446],[-128.161290861317,52.969672847722684],[-128.16165030666605,52.969567599935196],[-128.16190088774783,52.96948677002796],[-128.16208445580563,52.96935391542327],[-128.16230209080786,52.969230533527146],[-128.1625391632096,52.96912248003346],[-128.16281478655807,52.96905688298448],[-128.16310360121253,52.969012342926206],[-128.16339348257674,52.96897058965889],[-128.16361319562566,52.96894301212073],[-128.16384889100536,52.968753144692585],[-128.16402722735077,52.9686091814303],[-128.16423908902573,52.96848252968226],[-128.16448096431768,52.96839569270447],[-128.1647779881245,52.96840256578771],[-128.16507384438714,52.9684049753901],[-128.1653575143436,52.96835099083058],[-128.1656211017806,52.96826935754965],[-128.16590872658477,52.96821978311322],[-128.16618119290243,52.96814750970684],[-128.16646710885644,52.96810133741977],[-128.16676475630814,52.96810202373632],[-128.16706178972757,52.96809095405985],[-128.16735458739257,52.9681063107281],[-128.16764804401737,52.96815303497745],[-128.16798986688107,52.96801390398505],[-128.16827575118828,52.967967162825914],[-128.16856902350904,52.96793710069984],[-128.1688589354276,52.96789588920425],[-128.16914662495216,52.96784799160551],[-128.169433360435,52.96779954585307],[-128.1697212350274,52.96775500656981],[-128.1700079408782,52.967706003896964],[-128.17028550703841,52.96764259524584],[-128.17054502432725,52.96755429934361],[-128.1708155572392,52.96748092954432],[-128.17110989173685,52.96745363956035],[-128.17140722038545,52.96744815864027],[-128.1717054735421,52.96744265992264],[-128.17200195283814,52.96745737210532],[-128.17229853330886,52.96747376774312],[-128.172595437486,52.96747838112841],[-128.1728921788601,52.96746169676306],[-128.17318810595933,52.96748369851895],[-128.1734819439722,52.96746482412588],[-128.17372875701864,52.967365544952834],[-128.17392716314117,52.96723184099988],[-128.17411596136142,52.96709270875588],[-128.1744645043689,52.967103646576746],[-128.17475776636053,52.967073569031086],[-128.1750555925861,52.967078159146986],[-128.1753527807935,52.96708836556688],[-128.17565008375647,52.967100811229365],[-128.17594815443871,52.967109878797764],[-128.17624798864568,52.96711723593273],[-128.176536969184,52.96709451541663],[-128.1768092097813,52.96701830188026],[-128.17709691285833,52.966970940362216],[-128.1773825656504,52.96691969682009],[-128.17766212336275,52.96685904077092],[-128.17794361614634,52.96679946034757],[-128.1782241691212,52.96673990558368],[-128.1785046060893,52.96667810119979],[-128.17879117978282,52.96662683713299],[-128.17908874369024,52.966589942763626],[-128.17935511972635,52.966526719345076],[-128.17945486379622,52.966452570047664],[-128.1794894159409,52.96636224613678],[-128.17953824519617,52.96618645767696],[-128.17954528646507,52.96605067946394],[-128.17957866451215,52.96601025978585],[-128.17976144491266,52.965863381910324],[-128.18003066136777,52.96580122532439],[-128.1803251427394,52.96575877945351],[-128.18060752056672,52.96569861999398],[-128.18086612255445,52.965611438643904],[-128.18105782279756,52.965475039014144],[-128.18125267040944,52.965345316069616],[-128.18150719576147,52.965251473407235],[-128.1817877620395,52.9651924656196],[-128.182060124506,52.96511903536929],[-128.18230888284313,52.96502194353848],[-128.18249368598097,52.96487838678257],[-128.18273576197902,52.96479654763963],[-128.1830369465375,52.96477582673985],[-128.1833259984647,52.96473683697047],[-128.18360947723315,52.964680012846046],[-128.18389099033405,52.96462154736577],[-128.18417882827444,52.96457697267442],[-128.18446033945057,52.96451849687013],[-128.18475200031938,52.96449402894077],[-128.1850462915688,52.96446614830021],[-128.18529704686955,52.96437181104493],[-128.1855310006237,52.96425929198222],[-128.185799583531,52.96416686490491],[-128.18600331608678,52.964083488303],[-128.18606038818675,52.9638688622398],[-128.18616124348358,52.96370779939979],[-128.18626507406483,52.96355004439966],[-128.1862816676971,52.96336476109886],[-128.1864308926794,52.96321905991554],[-128.18664360018948,52.96309235003724],[-128.18686767657957,52.96296935684363],[-128.18707653906176,52.96284048435618],[-128.18730468624233,52.96272414104803],[-128.1875127506141,52.96259808071818],[-128.18765476081342,52.96243905006599],[-128.187700979073,52.9622677898533],[-128.18765936365438,52.96211161396054],[-128.18768732397217,52.96191154520146],[-128.18769112354437,52.96173154832657],[-128.18773045026362,52.961553124628246],[-128.18777070156025,52.961374692684124],[-128.1879081550086,52.96121798829464],[-128.1880578161966,52.96106274297991],[-128.18809253193783,52.960885534751725],[-128.18812999241788,52.96070714545753],[-128.18816931681044,52.96052873046222],[-128.18817967341013,52.960349167594906],[-128.18818349934264,52.96016972605151],[-128.1881779774886,52.959989893162216],[-128.1881538473826,52.95981097102924],[-128.1880934826068,52.95963496426744],[-128.18802200854844,52.95946028494052],[-128.18798578686213,52.959282152411205],[-128.18803359086425,52.959105256859964],[-128.18802996251878,52.958925953697815],[-128.18801698672436,52.95874625917662],[-128.1880021478207,52.95856660822189],[-128.18797341024586,52.95838889260072],[-128.18789454173273,52.95821547156832],[-128.18781473457955,52.95804206791569],[-128.18770804150242,52.95787196187294],[-128.1876699737502,52.95769386342105],[-128.18756617167273,52.957525389617224],[-128.18746604006762,52.95735572647006],[-128.1874298220401,52.95717758458308],[-128.1873044856452,52.95698933134692],[-128.18748556742887,52.95684695529443],[-128.1876030151521,52.956682218693594],[-128.18776976457312,52.956533381989296],[-128.18798246370886,52.95640723366023],[-128.18821063153658,52.95629200814251],[-128.18846812117474,52.95620258679366],[-128.1887207990269,52.95611044713996],[-128.18900112208902,52.956048061857246],[-128.1892725029224,52.95597518750698],[-128.18951522565695,52.955870899406314],[-128.18975306511663,52.955762217310905],[-128.18999188535088,52.955654637534074],[-128.19022976515035,52.95554707473593],[-128.1904685543619,52.95543893846026],[-128.19070739958514,52.955331912730024],[-128.1909481939083,52.955226536309446],[-128.19119087964555,52.95512168919037],[-128.1914345606456,52.95501793512158],[-128.19168212618067,52.95491748039774],[-128.19193567093205,52.95482419629794],[-128.19220207035386,52.95474524622886],[-128.19248040034478,52.95468064731562],[-128.19275468468427,52.95460995268865],[-128.19302096575132,52.95452876076468],[-128.19328432759818,52.95444538044825],[-128.19354761691113,52.954360323746975],[-128.19380996551178,52.9542752749915],[-128.19407329558746,52.95419133738],[-128.19433765025792,52.95410905718651],[-128.1946040407449,52.95403010165064],[-128.19488044114294,52.953964411774436],[-128.1951690619493,52.953918672720704],[-128.19545561610073,52.953869043240225],[-128.19574217004623,52.953819422021056],[-128.1960277699018,52.95376925286393],[-128.19631013246564,52.95371073084751],[-128.1965916420608,52.953653910145206],[-128.19688631334836,52.95363495970627],[-128.19718426410296,52.953625480944496],[-128.19748201197294,52.95361207696823],[-128.19778056818703,52.953596414998444],[-128.19806336151066,52.953546293210984],[-128.198334667886,52.953472277599545],[-128.19860486092767,52.95339492787432],[-128.19888122184096,52.95332866410737],[-128.19916464682018,52.95327292243681],[-128.19945116323615,52.95322272769933],[-128.19973879191215,52.953175874698694],[-128.2000004067208,52.95314913035529],[-128.20003194002211,52.953145733993026],[-128.20032049179954,52.95309886230007],[-128.20064216863756,52.952971218307844],[-128.2008798906054,52.952861393840784],[-128.20116177988527,52.95281183738495],[-128.20145995578915,52.952806827775596],[-128.20175791690946,52.95281583040544],[-128.20204639404096,52.95285752089229],[-128.202314322219,52.952934904486604],[-128.2025872658301,52.953018929097404],[-128.20285106740673,52.952962424423525],[-128.20311223249342,52.95287289219957],[-128.2033917192334,52.9528132945819],[-128.2036772160449,52.95276142237802],[-128.2039596198943,52.95270401094016],[-128.204255379691,52.95268838472991],[-128.2045526192573,52.95270131308452],[-128.20484602216905,52.952676204831114],[-128.2052779603635,52.95262494958945],[-128.20557461457008,52.95260874723916],[-128.20587206733836,52.95260765926198],[-128.206167680305,52.9525892237912],[-128.20639205160867,52.952474032621986],[-128.20660863442467,52.95235226048038],[-128.20687487492165,52.952271037127225],[-128.2071117400553,52.95216290182561],[-128.20738105663074,52.95208722501797],[-128.20759955614915,52.951966536082345],[-128.2077852865726,52.95182571669767],[-128.20800066158137,52.95169892408005],[-128.20824061341108,52.95159632490862],[-128.20853566612183,52.9515672480525],[-128.2088324839204,52.95159027210494],[-128.2091118089074,52.95165341753602],[-128.20940380168298,52.95167315848104],[-128.20970107326664,52.95166870086327],[-128.20999938539396,52.95166646512662],[-128.21029119657047,52.95170079032456],[-128.21057719189918,52.95174866801758],[-128.21086158669675,52.95180162443503],[-128.21115442604219,52.95180173071876],[-128.21143795613037,52.951748199161855],[-128.21170823086914,52.95167305927598],[-128.21198097931494,52.95160963916151],[-128.21229437055325,52.951502853579434],[-128.2125089090697,52.95145005065818],[-128.2127965990074,52.951404850183216],[-128.21308963802213,52.951372992483854],[-128.21338282252722,52.95134393850524],[-128.2136665943739,52.9512954462758],[-128.21396400194746,52.95131171085447],[-128.21426188292654,52.95131900607776],[-128.2145163619724,52.95124526876063],[-128.2146599805203,52.95108393841115],[-128.21489200746575,52.950973070699334],[-128.21514846924683,52.950883599452254],[-128.21542106190938,52.95081737585157],[-128.2157158507714,52.95080117376202],[-128.21600219670333,52.95085576719203],[-128.21626137163943,52.950908064201684],[-128.21653153334182,52.95092035079068],[-128.21679434944016,52.95091708883548],[-128.21705250905927,52.95093184238253],[-128.2173464178286,52.95091678284327],[-128.21763865717028,52.95088773594891],[-128.2178718163384,52.950959577936544],[-128.21814950413022,52.95091959302185],[-128.2184956011681,52.95095735056906],[-128.21879331925172,52.95096183016922],[-128.21908961678534,52.95095681103769],[-128.21935682226936,52.95087666168722],[-128.21960148080115,52.95077563611013],[-128.21979878472382,52.950642991288014],[-128.22006793765053,52.95056448067672],[-128.2202718560547,52.95043339639073],[-128.22046427167243,52.950296358188595],[-128.2206498937604,52.95015439839127],[-128.22088075334418,52.950056993507985],[-128.2210926428043,52.949953784520275],[-128.22124476683842,52.949813020661765],[-128.22179180521167,52.94944899054926],[-128.22218772846128,52.949137702994314],[-128.22245281978473,52.94885691101294],[-128.22255959462535,52.94866935941856],[-128.22269363130076,52.94845045853234],[-128.22280155232065,52.94823148548849],[-128.22282960871925,52.94809026337276],[-128.22285861809956,52.94794957930244],[-128.22275157214986,52.94770327429416],[-128.22275020726354,52.94760576514978],[-128.2226287884528,52.947441579989416],[-128.22253131349058,52.94727132825596],[-128.22242015125485,52.947106949249616],[-128.22230153683927,52.94694270184326],[-128.22219215149508,52.94677660295828],[-128.22208799347843,52.94658574129457],[-128.2220645592989,52.94644044173473],[-128.22199493621028,52.94625004921083],[-128.22195870055904,52.94607416569625],[-128.22200623150422,52.94589501498664],[-128.2220127881974,52.94571719368633],[-128.22200153648748,52.94553747528379],[-128.2220188770087,52.94535160275327],[-128.22199955562135,52.945178198151986],[-128.22198179085973,52.94499860262708],[-128.22201629326685,52.94482025374774],[-128.22213080158548,52.944656098900445],[-128.22233751635054,52.944525513189255],[-128.22255388115883,52.944401471445566],[-128.22274338706384,52.94426279717549],[-128.22285594004953,52.944096992281935],[-128.22298833891904,52.94393641794668],[-128.22312639922794,52.94377685760393],[-128.22329870937418,52.94363066835737],[-128.22351898332127,52.943509914084984],[-128.22375572789204,52.94340118026372],[-128.22403411141374,52.94333986631551],[-128.22430868010565,52.94327693764878],[-128.22457686870192,52.943198998597595],[-128.22483716539273,52.94311280434296],[-128.22505549584898,52.94299096266222],[-128.22550093800055,52.94295058633998],[-128.22580502492215,52.94297062212337],[-128.2260981723939,52.942942100818016],[-128.22639338733356,52.942917459023676],[-128.22666795903245,52.94296159383211],[-128.2269490016833,52.94296916547961],[-128.22723409213623,52.94301814940613],[-128.22754550004277,52.943035800008346],[-128.22772726345627,52.94305254006112],[-128.22798624422597,52.94310145127437],[-128.22819169690453,52.94319677508714],[-128.22845172076703,52.94322997019931],[-128.22884056901108,52.943248393573555],[-128.22912702732648,52.94323456564665],[-128.2293648866402,52.94325416027756],[-128.22970327353127,52.943252800650924],[-128.22999027348712,52.94321373117968],[-128.23027039234648,52.943150127218416],[-128.23053758647498,52.943071072107436],[-128.23078111720852,52.94296780064901],[-128.23099472123457,52.942844916080354],[-128.23121736085156,52.942734191910425],[-128.23139531569234,52.9425895602881],[-128.23149196208303,52.94247673942421],[-128.23173535043287,52.94229947600702],[-128.23184780444274,52.94213254233667],[-128.23193105152808,52.941959991789275],[-128.23199832401102,52.941784945792925],[-128.2320910172004,52.941614467124964],[-128.23218463317232,52.94144396188452],[-128.23224439349153,52.94126793701354],[-128.23239901477228,52.94110525238889],[-128.232583938696,52.940933580039044],[-128.23269135527676,52.94077738680916],[-128.23271951916135,52.94062101959922],[-128.23277500504244,52.94041704786341],[-128.2328038460374,52.940291502506824],[-128.2330149032639,52.94012045466646],[-128.23309359277204,52.94007411776826],[-128.23338361929297,52.94004002253805],[-128.23368403321794,52.94002591826318],[-128.23398457881854,52.94001460898889],[-128.23427683482672,52.939987195833595],[-128.23454356299527,52.93991767365952],[-128.2347857890516,52.9398076913476],[-128.23504303650085,52.939717603119554],[-128.23532852454593,52.93966789375657],[-128.23562108359843,52.93962870434652],[-128.2359054257594,52.93957509594593],[-128.23620020257368,52.93956052721471],[-128.2364985461649,52.9395604643133],[-128.23678811080626,52.939517409485056],[-128.2370608320609,52.93945560632265],[-128.23735394777682,52.93942705693526],[-128.23764251242292,52.9393828889039],[-128.23791883982324,52.93931878191399],[-128.238157387081,52.93920998344517],[-128.23842206401923,52.939137118960986],[-128.23863233652474,52.93905800590977],[-128.23894550952332,52.93895002861984],[-128.23931047283796,52.93890496815136],[-128.23959607320074,52.93887543494677],[-128.23993495636606,52.93883086875418],[-128.24016923344712,52.938800624691815],[-128.2404817954343,52.93878738378217],[-128.24071623932764,52.938777880389],[-128.24100868432222,52.93878968537713],[-128.24128965879663,52.938849359564095],[-128.24159782216537,52.93884124891387],[-128.24188311227903,52.93885880250553],[-128.24222071647392,52.93886077549029],[-128.24258466895165,52.93883198458057],[-128.24279252840407,52.938848760051016],[-128.24310391225006,52.93886636955228],[-128.24336413064668,52.93886813682884],[-128.24362465537277,52.93882281118035],[-128.24394298683956,52.938742193600106],[-128.24429786679983,52.93857678618358],[-128.24455365205014,52.93865374956666],[-128.24485445120746,52.938647456933545],[-128.2451513916785,52.938638429879155],[-128.24544772607413,52.93861820255088],[-128.24574203499486,52.93859464979136],[-128.24604159155925,52.93856482556856],[-128.24625183983343,52.93850308069438],[-128.2464206485949,52.93832776424277],[-128.24658238251666,52.93817725591826],[-128.24675360589666,52.93802992055385],[-128.2469219529766,52.9378809626338],[-128.2470826854712,52.93772935152247],[-128.24720086213392,52.93756621149358],[-128.2472736529857,52.93739104961181],[-128.24735681382364,52.93721793186864],[-128.24747670305146,52.93705196047241],[-128.2476836729982,52.93692861431218],[-128.24794659701968,52.93684063069671],[-128.24812741952653,52.9366987152377],[-128.24819479460902,52.93652701937375],[-128.24816945740366,52.93634756946934],[-128.24810147141227,52.93617228855612],[-128.2480752402895,52.93599341175039],[-128.24805735444235,52.93581381945006],[-128.2480061632243,52.93563878269237],[-128.24798088603652,52.935460443671985],[-128.24798070306522,52.935280513178625],[-128.24797493181313,52.93510068043576],[-128.24797757955804,52.93492125190663],[-128.2480035613378,52.93474249877034],[-128.24811877717187,52.934576615554384],[-128.2482358994039,52.934411260814436],[-128.2483209573459,52.93423922676135],[-128.24840481788172,52.93407954773544],[-128.2486666065392,52.933988220345285],[-128.24891979775015,52.9338931282546],[-128.2491352848049,52.933772414475534],[-128.24939265791392,52.93368565422868],[-128.2498170434065,52.933478548813156],[-128.25006513624572,52.93337514771438],[-128.25024114029927,52.93323052211459],[-128.25042004793175,52.933088082922716],[-128.25069738687947,52.93302672350797],[-128.25096747293972,52.9329514837246],[-128.2512295752676,52.93286631495361],[-128.2514623757317,52.93275591153331],[-128.25172163031337,52.93266967497989],[-128.2519196590346,52.93253639246495],[-128.2521013742779,52.93239446181219],[-128.25229460383898,52.93225847213156],[-128.2524117179754,52.932093668799325],[-128.2525486909004,52.93193409078707],[-128.25268089554345,52.931772361621384],[-128.2527172989178,52.93159732661877],[-128.25272998455623,52.93141434170937],[-128.25287121257196,52.93126477179197],[-128.25315124849163,52.93120167741056],[-128.25334461730273,52.93106848138276],[-128.253540682355,52.93093355617876],[-128.2537319640664,52.93079647998527],[-128.25393376237932,52.93066425153575],[-128.25408878114382,52.930511052466024],[-128.2542626745218,52.93036253214166],[-128.2545499803495,52.93033124238098],[-128.25481719750638,52.93025493599759],[-128.25503244147754,52.930130286739036],[-128.25521885880528,52.929989381683214],[-128.25533692345073,52.929825112734754],[-128.25533151238136,52.929494486158426],[-128.2555027303912,52.92934826623121],[-128.25564821902955,52.929191319045536],[-128.25582895392824,52.929048835583515],[-128.25604418931422,52.928924193342816],[-128.25626146341196,52.92880286597777],[-128.25644216515673,52.92865982602924],[-128.25659812075523,52.92850716126562],[-128.25670010189805,52.92833872353556],[-128.25686275904184,52.92818929319339],[-128.25706264305038,52.92805653041534],[-128.25721570448275,52.92790224300712],[-128.25723245062835,52.92772590564712],[-128.25713488291453,52.927555689486006],[-128.2570928119699,52.927377673035615],[-128.25701747382723,52.92720478811957],[-128.2569329284924,52.92703431302237],[-128.25691033097485,52.92685424576518],[-128.25682574275052,52.92668265924518],[-128.25672357496416,52.92651364309274],[-128.2566205292903,52.9263457737774],[-128.2565812329955,52.926167147786586],[-128.2565160444044,52.9259923816861],[-128.25637810861582,52.92583414125518],[-128.2562542519991,52.925677881910474],[-128.25618347897046,52.925503222696825],[-128.25601895264697,52.925353339577704],[-128.2558526251531,52.925204620861],[-128.25567899834274,52.92505884017387],[-128.25545531735662,52.92484787247673],[-128.25522841431805,52.924734503825285],[-128.25504385608932,52.924593416251064],[-128.25486476681243,52.924449981345894],[-128.25470665542971,52.92429773127995],[-128.25452488655282,52.924156589471686],[-128.2543421658511,52.92401490955348],[-128.25407185053044,52.923943852067566],[-128.25377647477094,52.92389233309864],[-128.25363261993385,52.92376279606768],[-128.25362550267013,52.923575704872654],[-128.25360853664603,52.92339608511409],[-128.2536075053442,52.92323578426477],[-128.26602678661072,52.91986761839431],[-128.266146215693,52.91981766541371],[-128.26629885992767,52.919726720689624],[-128.26635293878766,52.91958721463697],[-128.2662984751347,52.91942178017257],[-128.26626799527511,52.919322021502126],[-128.26628311287757,52.919290903632096],[-128.2662891895276,52.919282373597596],[-128.26629510245314,52.919271048370355],[-128.26630794121104,52.91924949953449],[-128.266313854127,52.919238174306145],[-128.26635538027662,52.91919533636766],[-128.26647811189048,52.91910271633024],[-128.2666481938825,52.91898901245152],[-128.2667942779076,52.91886230813525],[-128.26687524149332,52.91875536160127],[-128.2669000982839,52.91869714877375],[-128.26691944274285,52.918622781242156],[-128.26695857954635,52.91850037967003],[-128.26699691316205,52.91839761786552],[-128.26700683102587,52.91835650986758],[-128.26702693638728,52.918314075449295],[-128.2671241194428,52.91821410797253],[-128.26723335134807,52.9181127780914],[-128.26729282284128,52.91805726143625],[-128.26734794481288,52.91800742527483],[-128.26740043071965,52.9179604472092],[-128.2674536314277,52.91790953585548],[-128.2675453759714,52.91781247114185],[-128.26765223565127,52.91768427931439],[-128.26772760938272,52.91757743978145],[-128.26777928758173,52.91749796419218],[-128.26784734764092,52.917393507812875],[-128.2679437493845,52.917261597768714],[-128.2680513958954,52.91713059196442],[-128.26815683709822,52.91699346680068],[-128.268260072204,52.91684964827589],[-128.26834454321894,52.91673871333682],[-128.26840485992614,52.91668149352283],[-128.268514418222,52.916639020014635],[-128.26862925628407,52.91652076345895],[-128.2686724466567,52.91633438709875],[-128.26877752528793,52.916190532444155],[-128.2689628229085,52.916047937771154],[-128.26917267640488,52.91587684069525],[-128.26939043307777,52.915801452368],[-128.26954508780872,52.91576595577824],[-128.26962252617446,52.91568037650837],[-128.2696522757171,52.91560917092844],[-128.26966685166386,52.91556796373197],[-128.26959727500608,52.915503724121876],[-128.26947969018738,52.91539555624719],[-128.26948420369908,52.915270466919196],[-128.26954166969463,52.91519479815776],[-128.26955365707542,52.915174951473844],[-128.26961455624672,52.91516368628334],[-128.26977220234733,52.91513205111266],[-128.26994418776405,52.91507211956922],[-128.27009241134422,52.914968356915864],[-128.27022314733514,52.914851477902936],[-128.27031385344205,52.91477012656452],[-128.27038243032376,52.91471050386642],[-128.27045069347497,52.91464528148981],[-128.2705126271523,52.914583544649695],[-128.27059910080254,52.91449274059422],[-128.27068834442017,52.91440132690914],[-128.27072068727657,52.91436146275444],[-128.27074108621028,52.914324636481375],[-128.27079467624785,52.91424624345619],[-128.2708512424501,52.914153774233526],[-128.27088721110567,52.91405946930612],[-128.27092324856943,52.913931519911856],[-128.27099718853353,52.913797798107595],[-128.27108337895004,52.91371934056302],[-128.27111950639264,52.91369789749831],[-128.27112566869533,52.913673678525306],[-128.27112928203408,52.9136366111863],[-128.2711337112248,52.91357990368273],[-128.27113306355858,52.91353282836176],[-128.27114437486387,52.9134827237791],[-128.2711806109235,52.9133934541768],[-128.27122588587966,52.91329896041996],[-128.27124427263047,52.91325936553724],[-128.27126473033198,52.91322365913361],[-128.27130378353056,52.9131522732998],[-128.27135971068282,52.91308280389766],[-128.27142175723836,52.91300592440649],[-128.27145376399525,52.912924584318496],[-128.27145290708924,52.912873593510994],[-128.27145354352743,52.9128505933799],[-128.27147606211003,52.912853521950744],[-128.2715682549479,52.91288761806819],[-128.27174535025887,52.9129060646705],[-128.27198295511346,52.91283644948046],[-128.27221670985043,52.91272934549712],[-128.27237304186383,52.9126556937041],[-128.27246487498974,52.9125956203165],[-128.272533789151,52.91254271648363],[-128.27262399934585,52.91248715887424],[-128.27275078705011,52.912435944070054],[-128.27288098693904,52.91239643067837],[-128.27300242479367,52.91233242136302],[-128.27323934805855,52.91223254588232],[-128.27355534209124,52.91216533190062],[-128.27369716217333,52.91215137920758],[-128.2737335865074,52.91213554420372],[-128.27381757038725,52.912085711679886],[-128.2740976423735,52.911956406687864],[-128.2745676289556,52.91178923833548],[-128.2748685906682,52.91171951302114],[-128.2749740307741,52.911722523377165],[-128.27503474807096,52.91172526854202],[-128.27508816671894,52.91166145138118],[-128.27516229937478,52.911531651198466],[-128.27519428708496,52.91146768344784],[-128.27521293271516,52.911467887840196],[-128.27531720900643,52.911466426851106],[-128.27553687146494,52.91146217749222],[-128.27577451044002,52.91146318562825],[-128.27594060709626,52.9114678198866],[-128.27606382835677,52.9114721624309],[-128.2761602442931,52.91148038699228],[-128.27620322958103,52.9115003007933],[-128.2762129911399,52.91152589817401],[-128.27622802760231,52.91156316098895],[-128.27625698322998,52.91163435377511],[-128.27641956148412,52.911729868016835],[-128.27674676633413,52.91178519793218],[-128.27711049376865,52.91175685533418],[-128.27740399987343,52.91166989454763],[-128.27753560003018,52.91160456245037],[-128.27756674672705,52.911577051918044],[-128.27757926807976,52.911567275262016],[-128.27761569047092,52.91155143905074],[-128.27768949333196,52.91153767736597],[-128.2777903410463,52.91152451305617],[-128.27786171844798,52.91151752509154],[-128.2779188476953,52.91152314559479],[-128.27801309329547,52.911543178201185],[-128.27812394911425,52.91157747286703],[-128.2782518772707,52.91158284311125],[-128.2784390581934,52.91152876599714],[-128.27864935639042,52.91148881561191],[-128.27878927194598,52.91149171075552],[-128.2788800345802,52.91151629472805],[-128.278942280746,52.911547601914066],[-128.27896617233594,52.911558915513915],[-128.27898457774822,52.911554630418465],[-128.27903994455855,52.91154458851095],[-128.27916424850463,52.9115343319663],[-128.27936955819519,52.91154044385906],[-128.27961342710645,52.91155310002642],[-128.27981599715662,52.911560385383325],[-128.27995327784907,52.911566128595105],[-128.28006172738193,52.91157299558048],[-128.28012159678204,52.911577440760475],[-128.280196268842,52.91157992172217],[-128.28031958059685,52.91158593530231],[-128.28056019382782,52.91157286630163],[-128.2809653891132,52.91153585967333],[-128.28126698250298,52.91151319359788],[-128.28140758822278,52.911528960934454],[-128.28153514063024,52.91156180744901],[-128.28165833153855,52.91160033519042],[-128.28183274534373,52.911655816422815],[-128.2820171803485,52.911707174489685],[-128.28219886018775,52.91179389733248],[-128.28242210265847,52.911943162630315],[-128.28258819423922,52.91203468092299],[-128.2826975758842,52.91205890069303],[-128.28280135084822,52.91210005532889],[-128.28283905493626,52.91212566602364],[-128.28292109162837,52.912074187351614],[-128.28313273128524,52.911937784353825],[-128.28337251080066,52.91182213645601],[-128.28359905696186,52.91178970978103],[-128.28387888262074,52.91177810603265],[-128.28419729847587,52.91177360921823],[-128.28444668770013,52.911802400361495],[-128.28461879343647,52.91184950928458],[-128.28476618820557,52.911887563722836],[-128.2848944638404,52.911899090821144],[-128.28502917885183,52.91189198927795],[-128.2851330951764,52.911883799714786],[-128.285245666663,52.91188049155066],[-128.28539605553803,52.911887659980465],[-128.28558266839363,52.91187506484816],[-128.28581949948088,52.91177404403142],[-128.28598158566618,52.911617296846536],[-128.2860351442445,52.911538896751374],[-128.28608072960537,52.91153745469431],[-128.2861359079768,52.91154142293966],[-128.28624625029445,52.911548812513324],[-128.2864226482726,52.911571726232154],[-128.28659019623373,52.91158585151887],[-128.28669821655177,52.911567490438244],[-128.28673820801018,52.91154877459708],[-128.28676646220114,52.91155439609893],[-128.28686690755873,52.911602894924464],[-128.2870484128896,52.911651494824476],[-128.2871963082212,52.9116469418566],[-128.2872762039629,52.91164258090221],[-128.28735650056916,52.91166288632966],[-128.28747770223166,52.911647075557276],[-128.2876057288731,52.91158459977722],[-128.28766072344357,52.911550460805636],[-128.28773890810618,52.9115489401671],[-128.28788666158377,52.91155895504505],[-128.2879654481062,52.91156863403611],[-128.28801886548393,52.911591704153516],[-128.28815186579757,52.91169114148727],[-128.28824778542486,52.91184623632878],[-128.28824632818163,52.91195781447719],[-128.28822840948587,52.91200581635875],[-128.28829155573166,52.912088674057635],[-128.28844383529045,52.912252197564435],[-128.2885996287018,52.912411732978036],[-128.2887294468382,52.912538704219216],[-128.28892995036247,52.91269792534076],[-128.2891854704682,52.91285776165731],[-128.2892987073879,52.91291890723119],[-128.28925652271215,52.91293149580718],[-128.28916611247197,52.91296576863037],[-128.28909563302798,52.91305851828583],[-128.2890296592143,52.91321788403589],[-128.28894133529914,52.913360302359656],[-128.28882891022394,52.913470120181096],[-128.28870496901052,52.91357400011803],[-128.28863418604513,52.913661140621805],[-128.28860157963607,52.91373073007388],[-128.28855082292884,52.9138090767576],[-128.28846447362383,52.91391894292821],[-128.28835853377242,52.91404545124917],[-128.2882629154764,52.91417344487426],[-128.28820427912657,52.91427885217209],[-128.28817372819933,52.91435175594382],[-128.2881258101703,52.91444855057275],[-128.28803464098516,52.91457252890937],[-128.28794261884275,52.914663445439125],[-128.2878907368204,52.91470369465582],[-128.28785349812378,52.91472180117704],[-128.2878308364555,52.91473345338899],[-128.28788969058246,52.91480573932938],[-128.2880103351718,52.914952505273],[-128.28806796048042,52.915036591548194],[-128.28807336926735,52.915067878439515],[-128.288092636443,52.91516616454767],[-128.28811460308694,52.91529747643759],[-128.28812572177765,52.915365650081405],[-128.28813470333506,52.91539406012089],[-128.28816326560505,52.91544003659452],[-128.28830584708686,52.9155790835923],[-128.28863844466747,52.915872524315084],[-128.2889665703842,52.91615203233749],[-128.28910634647013,52.91627319465288],[-128.28915466181394,52.916322706041484],[-128.2892090592093,52.916381068222826],[-128.28938536989838,52.916523386085736],[-128.28978539726478,52.91682279436503],[-128.29019186380054,52.91712039874735],[-128.29036479303764,52.91725156957133],[-128.29041608106849,52.91728700377697],[-128.29047507275675,52.91732678152265],[-128.29059385670803,52.91747358112873],[-128.2907854625452,52.917743965881606],[-128.29095310209553,52.91798455507961],[-128.29104319347624,52.91811733809929],[-128.2910737990493,52.91818401080414],[-128.29107967333815,52.91824107483205],[-128.29108799734863,52.91830930260573],[-128.29109672784125,52.91838480542186],[-128.29110553412764,52.91846199296113],[-128.2911084385274,52.918533133620926],[-128.29111187436436,52.91859697199813],[-128.2911109794332,52.91866705652979],[-128.29109624910248,52.91873966176109],[-128.29106738094902,52.918809169910155],[-128.2910376047046,52.918879260788934],[-128.29102737044715,52.91894897109319],[-128.2910409333367,52.91901036994827],[-128.29106791031245,52.91906141726351],[-128.29111554491007,52.91913280793844],[-128.29116908109535,52.91920968041538],[-128.29118847967118,52.91924125973978],[-128.29120937539147,52.9192139453047],[-128.29131599765054,52.919099754211715],[-128.2914652089481,52.91894604946813],[-128.29153741559614,52.91886784903612],[-128.29154510782377,52.91885480154512],[-128.29175400187032,52.91877113105685],[-128.292172767289,52.91862170819988],[-128.2924254915936,52.918555685856006],[-128.29248210052958,52.91856859258967],[-128.29250191408292,52.91857325612929],[-128.29251792021765,52.91854155212583],[-128.2925757658897,52.91857742269601],[-128.2927250391562,52.91868438596824],[-128.29288233032557,52.91881922144467],[-128.29301849332532,52.91894213592429],[-128.293137707443,52.91904463493396],[-128.2932177845117,52.91911258510197],[-128.29326202211038,52.919155447482936],[-128.2932934714714,52.91918567043776],[-128.29332564443874,52.91922932406315],[-128.29336863577274,52.919300804409694],[-128.29348150337202,52.91935466143174],[-128.29365793757754,52.919377564193454],[-128.2937399294141,52.919411842303845],[-128.29373443409588,52.91949996390524],[-128.29372906512342,52.91964245413732],[-128.2937273048771,52.919834760506795],[-128.2936921271045,52.919994649060996],[-128.29360750260489,52.920032740618566],[-128.2935309738445,52.920082441830466],[-128.29348593042891,52.920215050059454],[-128.2934763119848,52.92033071554978],[-128.29349630941377,52.920407684745584],[-128.2935252999254,52.92047887289202],[-128.2935593148722,52.92055668995107],[-128.29360228632814,52.920662361021854],[-128.29364757556976,52.920759017725864],[-128.29369098255452,52.92080358233964],[-128.2937293076327,52.920823015764086],[-128.29374747141665,52.920831630798716],[-128.29375555261765,52.92084324078442],[-128.29376502511465,52.9208632367178],[-128.2937710638139,52.92087153205764],[-128.29383724559074,52.92087191895322],[-128.29397035193938,52.92086876759454],[-128.29417264579726,52.920904619214014],[-128.29450923353153,52.920993917702084],[-128.29488533556852,52.9211592384823],[-128.29534388269926,52.921418803116936],[-128.29583183955248,52.92163631871961],[-128.29603077286214,52.92171315911351],[-128.29604201593065,52.921748816365124],[-128.29605969073387,52.92180004413669],[-128.29606752929982,52.92182455636836],[-128.29612685372663,52.92183573120053],[-128.29624924171094,52.92185856388754],[-128.29630858178828,52.921870303381766],[-128.296511784847,52.92195714996689],[-128.29706355193838,52.922113429282284],[-128.29756796429857,52.92216916261948],[-128.2978671970233,52.92220480115625],[-128.29826921467918,52.92229729584311],[-128.29866551368414,52.922352894103874],[-128.29883643806107,52.92237702712109],[-128.2989602065233,52.92240824315291],[-128.2991231959976,52.92247512542029],[-128.2991901029911,52.922557903962634],[-128.29920856937284,52.92260631746497],[-128.29927447924533,52.92265323874796],[-128.29939320479042,52.92274621596847],[-128.2995675026869,52.92286725674479],[-128.29977581808538,52.92297978432153],[-128.29996798234913,52.92306908318643],[-128.3000787941862,52.9231190458025],[-128.30010931299503,52.9231319029437],[-128.3001236644432,52.92313891431969],[-128.30017413514202,52.92317604662477],[-128.30026644815638,52.92322861301436],[-128.30041300323134,52.92326723010309],[-128.30056435780568,52.923308560520084],[-128.30066118264503,52.92337561330165],[-128.3007321053225,52.92348073542511],[-128.3007564469563,52.923586212305985],[-128.3007445011331,52.923692954857664],[-128.30072984476317,52.92383562709959],[-128.3007137959184,52.92395254018079],[-128.30070562026486,52.92399081903481],[-128.30094652379117,52.924016379096955],[-128.3015027686319,52.924047538304926],[-128.30198707388757,52.92400667175604],[-128.30235453650988,52.923942303253746],[-128.30264966694057,52.92393652772558],[-128.30276128568516,52.92394948319823],[-128.30282535320222,52.92396223913869],[-128.3029433005976,52.92398908043835],[-128.3030134397154,52.92401069558944],[-128.30302588367914,52.92401661384246],[-128.30304318771803,52.92402636546526],[-128.303097764342,52.92405332586712],[-128.30316190871338,52.9240845835481],[-128.30325283460346,52.92412877070535],[-128.3033735094047,52.92418863654165],[-128.3034789542905,52.92424262962645],[-128.30359979671476,52.924322663650436],[-128.3037293622533,52.92444345314303],[-128.3037984493182,52.9245833650561],[-128.30381701897113,52.924737163761954],[-128.30382659573098,52.92489673530517],[-128.30389969538757,52.925024801008476],[-128.3041434105514,52.925101872401235],[-128.30441887140117,52.92514580827966],[-128.3045862373708,52.92517280126543],[-128.3047112887442,52.92519277483106],[-128.30477426883263,52.92520275266392],[-128.30484572667973,52.925214241632595],[-128.30512687703788,52.925208177825205],[-128.30548318902748,52.92516139148028],[-128.30574394121527,52.92510583028367],[-128.30597317303327,52.925053128544725],[-128.30617109758333,52.92500776686918],[-128.30631744370774,52.92497350621035],[-128.30638461434083,52.92495761461905],[-128.30640738254598,52.92494764303448],[-128.3064547656504,52.92492765468226],[-128.30647938054875,52.92491763791383],[-128.30649415602974,52.92491510597448],[-128.30653206381575,52.92490932217987],[-128.30656436988713,52.924903639217],[-128.30663101147357,52.92489504980515],[-128.30673589387558,52.92488682283109],[-128.3067869122557,52.92488245915868],[-128.30680454901335,52.92488099223238],[-128.306903800025,52.924872319423734],[-128.30712570486975,52.924839383633824],[-128.30739214779763,52.924802766650124],[-128.30759190617314,52.92479100105287],[-128.30766383251924,52.92479407498861],[-128.3077248741761,52.92480240305621],[-128.30787166691061,52.9248281176602],[-128.30805481102936,52.92487104844137],[-128.30820172834228,52.92491637583544],[-128.30827776167126,52.92494347803962],[-128.30829206874716,52.924949359201506],[-128.30833306845523,52.92496649325324],[-128.30846189674807,52.92502170946914],[-128.3086418557538,52.92510899175883],[-128.3088101903031,52.92520547108415],[-128.30896583957423,52.92530836095159],[-128.30913105900734,52.925416112466095],[-128.30923161781502,52.92551728474859],[-128.30928296849083,52.92558747444264],[-128.30942966457235,52.92564569344053],[-128.30960096787476,52.92572810351989],[-128.30972964304604,52.92583208694753],[-128.3098285814117,52.92592039284088],[-128.30989249761342,52.92598192249951],[-128.30997403927026,52.9260588022037],[-128.31009361855627,52.9261668923286],[-128.31022897699887,52.92629092471944],[-128.31035634039236,52.926405023594505],[-128.3104557186437,52.92648435114464],[-128.3105556565873,52.92655694969323],[-128.3106493274193,52.926634146861296],[-128.31074717553577,52.926702301693005],[-128.3108844793299,52.92677639949953],[-128.3110117884489,52.92683780471162],[-128.31111889915954,52.926887838925],[-128.3112296430349,52.926936115471364],[-128.31134200606772,52.92697987551146],[-128.31146798678907,52.927051396691986],[-128.3115596820325,52.92721216213771],[-128.31172662870003,52.92745441422371],[-128.31212771506424,52.9276825313201],[-128.31253506567313,52.92782027589602],[-128.3126781666508,52.92786343061581],[-128.31269181584784,52.92789175616564],[-128.31274274282785,52.927988295286575],[-128.31281068324577,52.92812374023617],[-128.31286814572152,52.92825490649387],[-128.31291769210367,52.928394632457774],[-128.3129586490798,52.92851379044287],[-128.31297955444154,52.92855542712524],[-128.31321452921526,52.928539596647646],[-128.31381347167638,52.928600695671655],[-128.31432114028843,52.92878298489503],[-128.31454545201848,52.92889685885578],[-128.3147740145517,52.92890021097839],[-128.31506038388713,52.92890410263027],[-128.3152903231992,52.928950030394624],[-128.31546469931365,52.92900265681696],[-128.3157270171927,52.92888986433294],[-128.31618411674344,52.92860506469925],[-128.31674085511705,52.92842144740535],[-128.31723163858317,52.928361896859435],[-128.31771259077317,52.92829300360176],[-128.31817479697384,52.92822223535011],[-128.31836889847247,52.92819205968215],[-128.31840096190493,52.92818190263813],[-128.31847804704972,52.92815963801959],[-128.31863749922036,52.92810940775168],[-128.31881459479658,52.928109281468736],[-128.3189523372784,52.92817383620367],[-128.31901329397553,52.92821468262502],[-128.31907365655985,52.92821068562741],[-128.31918107936613,52.92818053962243],[-128.31928851788288,52.928150958267366],[-128.319402939052,52.92812964334112],[-128.3194953794984,52.928115488507345],[-128.3195880332808,52.92810524894711],[-128.3197661364405,52.928089405218614],[-128.3200040062255,52.92809256362452],[-128.32025169134792,52.92813925301016],[-128.32046471184816,52.92819952323647],[-128.32065056937333,52.92818913102473],[-128.32081494157717,52.92810965071906],[-128.32091662293956,52.92804261824715],[-128.32098335705015,52.92800149649545],[-128.32108175733143,52.927977132453194],[-128.32126485862764,52.92796735867778],[-128.3215058567949,52.92795979687008],[-128.3217442527637,52.92795565834523],[-128.32194979195043,52.9279471180194],[-128.32211183601402,52.9279444763994],[-128.3223049357075,52.92794739248572],[-128.32254106489628,52.92795282241583],[-128.3227267157494,52.927955884836045],[-128.322848668736,52.92795292138701],[-128.3229675147822,52.927944404400726],[-128.32305193296557,52.92793713204571],[-128.32314912673772,52.92792456668507],[-128.32329475371623,52.927911601062995],[-128.32344250229394,52.92790307798956],[-128.3236156344358,52.92788172076647],[-128.32384702972553,52.92786873799632],[-128.3240357257165,52.92787622283217],[-128.3242268650622,52.927809106705574],[-128.32445839929397,52.92766214627749],[-128.32456909448788,52.92758988274557],[-128.32459760291854,52.92761679236703],[-128.3247446328085,52.92768059194388],[-128.32505139179315,52.92771657882557],[-128.32545537828528,52.927774743855565],[-128.32579522730717,52.927904243081315],[-128.3259165869276,52.927975840628456],[-128.3259842254491,52.92788313381151],[-128.3261807147401,52.9276751989804],[-128.32636587002645,52.927532514973734],[-128.32642420534847,52.92750837341733],[-128.32643788918642,52.927503062146705],[-128.32649349979312,52.927480095582666],[-128.32668837803985,52.927396084040005],[-128.32701348612292,52.92725623727676],[-128.3272376006455,52.92717836456202],[-128.3273274452799,52.92718500072959],[-128.32740069360815,52.92721213697816],[-128.32750021677603,52.92722530852718],[-128.3276453036745,52.927202257701495],[-128.32792095659076,52.92712953498099],[-128.32825998868412,52.927039861302994],[-128.32843997036736,52.92699033235031],[-128.32851149244988,52.92696873614767],[-128.32865481189998,52.92693057889003],[-128.3288986108197,52.926957146212],[-128.32910698473128,52.92710270103593],[-128.32919795415668,52.92723207596268],[-128.32924324750286,52.92729339922598],[-128.3292887940105,52.92732501122823],[-128.32933654857507,52.92732911558801],[-128.32935691011383,52.927326470190316],[-128.3293837045854,52.9273220112167],[-128.32944848315708,52.92731344576389],[-128.3294905821474,52.927282341022845],[-128.32951580594323,52.92721512819165],[-128.32958096749442,52.92714544740754],[-128.32967910829998,52.927082405647994],[-128.32979314560922,52.92702016123823],[-128.3299167043206,52.92697847411424],[-128.3301555536064,52.92698271366464],[-128.33061656635567,52.92701002543853],[-128.3311069940092,52.92701264324542],[-128.33144015811865,52.92698586149151],[-128.33166313176952,52.92695565656726],[-128.33182229707472,52.92693456386929],[-128.3318971089571,52.926921869663964],[-128.33200514862367,52.926903467167385],[-128.33223644729043,52.92687197498483],[-128.332447384502,52.92684312828375],[-128.3325447262061,52.926833350538274],[-128.33261448872355,52.9268308464156],[-128.33269083765612,52.92682933283863],[-128.33276253860973,52.92682791136019],[-128.33285309189915,52.92683060071516],[-128.33301760761378,52.926839115562686],[-128.33324488141218,52.926853103736995],[-128.33346013873935,52.92685219858092],[-128.333663797519,52.92680948398449],[-128.33412178447176,52.926662496865426],[-128.3349065945203,52.926407553227314],[-128.33549749606613,52.926219803380874],[-128.33565142691154,52.92617134528677],[-128.33573396287812,52.92614671856258],[-128.3359117626211,52.926091615407124],[-128.33603368149798,52.926054438875134],[-128.33607118647416,52.926041361461344],[-128.33615104322072,52.92603585637679],[-128.33631571142584,52.926030344512384],[-128.33648696597578,52.9260258227926],[-128.336651710482,52.92602143010529],[-128.33689748065433,52.92601598406445],[-128.33721010340707,52.92600585507064],[-128.33745468887548,52.925995946738325],[-128.33761827960868,52.92598765602341],[-128.33774261156796,52.92597733769034],[-128.33779255042015,52.92597017459691],[-128.33782019135666,52.925930384647934],[-128.33787895124456,52.925846250959964],[-128.33801850538885,52.925756592237775],[-128.33822858806656,52.92567842069242],[-128.33832831196986,52.92564448120504],[-128.33831543462531,52.92551188354455],[-128.33847342783685,52.92519818080993],[-128.3388410476677,52.924967761910146],[-128.3390569569996,52.92491077507092],[-128.33909835394834,52.92490098277074],[-128.33919947570843,52.924875427919176],[-128.3393411321462,52.924841218899495],[-128.33941606122298,52.92483075978359],[-128.33948264973213,52.924855222610994],[-128.33961681213387,52.92490524972854],[-128.33968346243938,52.92493083238319],[-128.3398043283367,52.924976073963556],[-128.3400878744338,52.92508143044314],[-128.34031377322955,52.92513860158203],[-128.3404215122008,52.92511460029587],[-128.34047235734803,52.9250900444087],[-128.34051136853125,52.92508758216479],[-128.3406851894729,52.92509590109995],[-128.3410051147203,52.925100182794424],[-128.34127323893142,52.92507747419647],[-128.34144844243363,52.92504315117804],[-128.34155530364822,52.92502028746982],[-128.34158574304323,52.92501463195303],[-128.34160601053745,52.92501030900106],[-128.34170279138763,52.924990444202486],[-128.3418363674981,52.92496199880359],[-128.3418898131962,52.92495084453029],[-128.341958080521,52.924971909070244],[-128.34211439013035,52.92501756400115],[-128.3423446318233,52.925085856518365],[-128.342691571429,52.92517424847611],[-128.34304462064273,52.925238417148776],[-128.34340829738687,52.92539374381478],[-128.34384705931578,52.925677064112485],[-128.34421284464878,52.925904666197965],[-128.3444656981239,52.92607845007953],[-128.3446751238171,52.926242452223015],[-128.34488028641078,52.92639644845602],[-128.34503835966174,52.92655867491982],[-128.3450989607979,52.92676207577959],[-128.34513644743387,52.92696874468573],[-128.3452309759365,52.92711093517209],[-128.34534227272897,52.92720232984346],[-128.3453871088144,52.92723787858543],[-128.34547103963223,52.927306274091386],[-128.34564652604968,52.92747992043412],[-128.34582362687087,52.92763223215648],[-128.34599074111722,52.92768776621776],[-128.3460732639449,52.92769676749855],[-128.34609524227434,52.92770641979748],[-128.3461448941322,52.927727853163546],[-128.34618017105007,52.92774229002791],[-128.34622420528086,52.92776327030336],[-128.34629034195274,52.92779615165663],[-128.34633725500785,52.92781876072387],[-128.34636866795339,52.92783046717877],[-128.34640360518486,52.92783873984481],[-128.34643657163318,52.92784480946498],[-128.3464609318194,52.927830304608975],[-128.346506819935,52.92780023916227],[-128.34652833296764,52.92778467886988],[-128.3465855854595,52.92779194139994],[-128.34685574944763,52.9278229957879],[-128.34740157181446,52.92788329790921],[-128.34800609375705,52.92794299129048],[-128.34839884472802,52.92798280763467],[-128.34852081511963,52.92799719083798],[-128.34868806889858,52.928038134207505],[-128.34901654368204,52.92811230146922],[-128.34928204849712,52.928143443369166],[-128.3494827034316,52.92813102381503],[-128.34965179366222,52.92812092045655],[-128.34999814508043,52.92809663021252],[-128.35059143672515,52.928088143370424],[-128.35100138826172,52.92815226426544],[-128.3511952568299,52.92825322451495],[-128.35134871981055,52.9283314383393],[-128.35142760777876,52.92837582988551],[-128.35143360141586,52.928399819752016],[-128.35144153495517,52.9284254481224],[-128.35147965025888,52.928457200369174],[-128.35152426561453,52.928505640256034],[-128.35162327188397,52.9285597201577],[-128.35177240460342,52.92855953808937],[-128.351876720564,52.92855801822828],[-128.3519167543093,52.92872594967612],[-128.35190980753038,52.92907253002715],[-128.3518685774985,52.92933851520569],[-128.3518407562666,52.92940858376884],[-128.35184503781522,52.929418588721724],[-128.35185366280967,52.92943971855924],[-128.35187483324248,52.92946844584151],[-128.35191827884964,52.929512424280496],[-128.35197385729322,52.92957353384237],[-128.3520273572329,52.92963076531531],[-128.35207414620513,52.92968476739717],[-128.35212218337827,52.92974435035847],[-128.35215191745854,52.92979308746608],[-128.35216032627946,52.92981030199359],[-128.35213312472712,52.92984111729443],[-128.35206881076314,52.92990855181938],[-128.35201963300076,52.92994653336565],[-128.35202494583623,52.929958194966794],[-128.35204190780203,52.93001223712718],[-128.352059926339,52.93010212660987],[-128.35207093966505,52.93018319572317],[-128.35208466652045,52.93027989799158],[-128.35210597652784,52.930412335057554],[-128.35213655694022,52.93056083927575],[-128.35217299803017,52.93069744957294],[-128.35220461102674,52.93079716676067],[-128.35222908387237,52.93090262353554],[-128.35225122525583,52.93103335768395],[-128.35226855900896,52.931144571956324],[-128.35227327381605,52.93121286899182],[-128.35227142692642,52.93126391459159],[-128.35227231959433,52.93131379322917],[-128.35226048484031,52.93136952314762],[-128.35221279082384,52.93148483566602],[-128.3521513786056,52.931638542069955],[-128.35212152935512,52.93172267020171],[-128.35212053361045,52.931738386457496],[-128.3521245107417,52.93175960915709],[-128.35213254272253,52.93180373026937],[-128.35213659806772,52.93182663764137],[-128.35217111118777,52.93184388648452],[-128.3522719884164,52.93189792850482],[-128.35240093606802,52.93198784279612],[-128.35252849142714,52.932103015551206],[-128.35264152478183,52.93219157046405],[-128.35272887136563,52.932236913267346],[-128.35281769410233,52.93227549948667],[-128.3529118713803,52.93230949390963],[-128.3529943953613,52.932335316989395],[-128.35306160120945,52.932353589159376],[-128.35314273690125,52.932371026651346],[-128.3532841198213,52.93239903607572],[-128.35347875907692,52.93242933481343],[-128.3536681618528,52.93244909135145],[-128.35380473626324,52.932457571401095],[-128.35389153100945,52.93245919883628],[-128.3539746266702,52.932444647741306],[-128.3540729563753,52.93241913625987],[-128.354147523434,52.932401948238805],[-128.35424874666563,52.93237805599032],[-128.35442669441977,52.93234254709994],[-128.35469910255293,52.93231243099692],[-128.35503781544918,52.93231798595279],[-128.35527324825787,52.93236091939888],[-128.3553902574072,52.93240342427193],[-128.35554964331652,52.93245349406079],[-128.3557215453671,52.93251059620998],[-128.35580826098928,52.93254473773427],[-128.3558540125778,52.93256288172164],[-128.355954079251,52.93265281434035],[-128.3561713270009,52.932788045997924],[-128.35652946217166,52.93289187080139],[-128.35682492177182,52.932991908989834],[-128.3570209429723,52.933114110207484],[-128.3572171990464,52.93324080005585],[-128.357385248377,52.93334618732732],[-128.35749625454923,52.933414597332074],[-128.35758931227204,52.93347888212611],[-128.35768344892477,52.933545943674055],[-128.35778309527362,52.933611217493635],[-128.35788903609307,52.93367244550834],[-128.35795446923584,52.933709254258474],[-128.35800546097755,52.93373793907516],[-128.3581084608009,52.933796418418986],[-128.3582653946439,52.93388633083544],[-128.35854367590034,52.933995678461784],[-128.35888605814168,52.934084115664554],[-128.3590502342201,52.93411950067598],[-128.35907200174842,52.934125235254164],[-128.3590904948668,52.93413943975781],[-128.35910107976565,52.934162207076994],[-128.3591062956294,52.93432355100602],[-128.35911781408834,52.9346322068962],[-128.35924453507582,52.93488305097223],[-128.35949315003325,52.935062494728335],[-128.35965351373028,52.93516354830975],[-128.35971087958137,52.93518930617904],[-128.35977537792476,52.935226132704514],[-128.35984528543455,52.93527630477008],[-128.35989784064623,52.93531617811933],[-128.35995452447847,52.93536325177519],[-128.3600126748715,52.93541982145397],[-128.36009750751214,52.935487076696745],[-128.36024623401906,52.935613584706836],[-128.36036113370702,52.93575199163253],[-128.36062657531332,52.93591539924841],[-128.36110591197274,52.93611937108688],[-128.36138163757585,52.936215865627894],[-128.36167714605457,52.936315882176736],[-128.3622014734042,52.936523987656784],[-128.36246667580852,52.93664928527054],[-128.3624739792781,52.936663148808066],[-128.36247189329896,52.93667608862211],[-128.36246361504195,52.93671156716838],[-128.3624501787727,52.9367718239616],[-128.36244428297314,52.93679997155986],[-128.36247265693055,52.9368072501959],[-128.36258224114312,52.93683307968535],[-128.36277859230557,52.936876783181575],[-128.36301834356362,52.936929714486915],[-128.363218047585,52.93696662292548],[-128.36336646731024,52.93698663111331],[-128.36350336925415,52.937000699494035],[-128.3635624374138,52.93700679640034],[-128.36359001227876,52.937016333161395],[-128.36364707194622,52.937036489477954],[-128.36367339703844,52.93704044546676],[-128.36367034304658,52.93700238700252],[-128.36367990275184,52.93692259189914],[-128.36382729022364,52.936940933998386],[-128.36409732462636,52.93705211188723],[-128.36425626590403,52.93711058352858],[-128.36435560647783,52.937069346925355],[-128.36451447326138,52.93697534047006],[-128.3646571053949,52.936891194404794],[-128.36490307118828,52.93680440674746],[-128.36536057486782,52.93669879205163],[-128.3657489027661,52.936623716533724],[-128.36586596879792,52.936599495968565],[-128.36587676590372,52.936609369470375],[-128.36599124503135,52.936706296329895],[-128.36621235509404,52.93687675393639],[-128.36635510635335,52.93696245642336],[-128.3663823081089,52.93696527301244],[-128.36654954152237,52.93698825348702],[-128.36688294605094,52.93703200172196],[-128.3670501804953,52.93705499044381],[-128.3673196050931,52.93702097706826],[-128.3679096559983,52.93693510967871],[-128.36831831431144,52.93685681816292],[-128.36856400294138,52.936781796113884],[-128.3689141118469,52.93667328790789],[-128.3692286856736,52.93657950416131],[-128.36961777971374,52.936467957653086],[-128.37037862211858,52.93631866038025],[-128.37136530543978,52.93629037042579],[-128.37207336760417,52.9363983095857],[-128.37229586307222,52.936459418211356],[-128.37236605742265,52.93648098289988],[-128.37257439381855,52.93650537762896],[-128.37281646573916,52.936482558566844],[-128.37296657214847,52.9364324427339],[-128.37303010613255,52.93640144605525],[-128.37307110069892,52.93638436689867],[-128.37312395892027,52.93636255483492],[-128.37324235189237,52.93632877456393],[-128.37346213938622,52.93627445447132],[-128.3737659426283,52.93622179398362],[-128.37419080941268,52.93618351713732],[-128.37457349300118,52.936157857730194],[-128.37481508591364,52.936210163018664],[-128.3750688986968,52.93631435146789],[-128.37531512902103,52.936332926854256],[-128.37552788476773,52.93628602794016],[-128.37574528895294,52.93623903479559],[-128.37596702888257,52.93618634781918],[-128.37614653916992,52.93614516870378],[-128.37627687100314,52.93612515451004],[-128.37642160414688,52.936062253583074],[-128.37652656929868,52.93593848175076],[-128.37655363508216,52.93585553309394],[-128.3765600843753,52.935837464009204],[-128.3765753314237,52.93579343016621],[-128.3766914850665,52.935686249881826],[-128.37697878464124,52.93562214631517],[-128.37742786759895,52.93570052719157],[-128.37786925073323,52.93582447418813],[-128.3780728903049,52.93588145931456],[-128.3781202986735,52.93589564175565],[-128.37813731177457,52.93589978269079],[-128.37820699211704,52.935878749528676],[-128.37847846698864,52.93589849440267],[-128.37880982486206,52.936005592475084],[-128.37894026525944,52.93607079170154],[-128.37900961596884,52.93599370575867],[-128.37914919498724,52.935838968847506],[-128.37930525307752,52.935711919105024],[-128.37966411848743,52.935443993531415],[-128.38012598802726,52.934983939002954],[-128.3803093137496,52.93467806850128],[-128.380304631124,52.93461089235142],[-128.3802971930697,52.93451125767864],[-128.38026847611334,52.93414801968692],[-128.3802368138689,52.93371531896075],[-128.3802212662308,52.93353736553944],[-128.38021682124122,52.933524566337624],[-128.38018100884744,52.933417657216715],[-128.38011274941974,52.9332138615049],[-128.3800809129095,52.93311135665903],[-128.380107909346,52.93309399292944],[-128.380160070823,52.933059858596955],[-128.3801852363668,52.93304309695413],[-128.3801832318313,52.933007259671676],[-128.3801647246833,52.9327598527375],[-128.38012916312653,52.93220726399188],[-128.3800897347152,52.931568987263994],[-128.38005724661818,52.93110491842291],[-128.3800701620909,52.930785676031924],[-128.38014741397518,52.93048363629861],[-128.38025548102442,52.930265626998505],[-128.38036553798761,52.930133343398104],[-128.3804656735652,52.93002368406149],[-128.38053313450015,52.929946634910195],[-128.38058006421562,52.92988570662403],[-128.38062184391111,52.9298159040589],[-128.38066294983616,52.92971752938268],[-128.38070033107329,52.929619230039336],[-128.38071253508843,52.92957077218848],[-128.38071347188222,52.9295208649999],[-128.3807190533563,52.92940414885839],[-128.38073638465448,52.929247388433446],[-128.3807629182565,52.92910502617794],[-128.38078804606582,52.92902098500159],[-128.3807941481918,52.92899676054277],[-128.38079807554905,52.92898378296707],[-128.38082619368197,52.92891987157387],[-128.3809019272204,52.92879052409603],[-128.38102678177825,52.928656253962636],[-128.38116002612642,52.92855545843164],[-128.38125499411245,52.92848682156876],[-128.381343688903,52.9284558757859],[-128.38150263075954,52.92841453872497],[-128.38175276901683,52.92832034605967],[-128.38197431495408,52.92821495469957],[-128.38202895294722,52.92812527491169],[-128.38197839957522,52.92802146287837],[-128.38191942646858,52.92790044735635],[-128.38189292537066,52.92779334990815],[-128.38191448279574,52.927712188088925],[-128.38196254915545,52.92763833793727],[-128.3820349304528,52.92753260229739],[-128.38213045372467,52.92740733791395],[-128.38224370585883,52.927282279572744],[-128.3823556296387,52.92718359140996],[-128.38241382217464,52.9271409292411],[-128.38244907555946,52.92712115525737],[-128.38251606224037,52.927085598202915],[-128.3826223880953,52.92703692042834],[-128.3828061852268,52.92697321048938],[-128.3830178993392,52.926908943825936],[-128.38316769458697,52.92687058805676],[-128.38346494488962,52.92685223408066],[-128.38392786372393,52.926846219563394],[-128.38415513728705,52.9268433009217],[-128.38430415828196,52.926757869448984],[-128.38458284337287,52.926474732155086],[-128.38476643600845,52.92610830210015],[-128.3848203424092,52.925889142665746],[-128.38486292322034,52.92580082682437],[-128.38490349183166,52.925759641707586],[-128.38491879325628,52.925749796959956],[-128.38497027268676,52.92573698547914],[-128.38512843393528,52.92569845748887],[-128.3852903195432,52.925659862746066],[-128.38534458390947,52.92564698566861],[-128.38536758504532,52.92564147849014],[-128.38542660639288,52.92563019120303],[-128.38548734319824,52.925582991026374],[-128.38555566371815,52.92550479984257],[-128.38563076650405,52.925464600530105],[-128.38567661395427,52.925467590612136],[-128.38597680417897,52.92550186639172],[-128.38656028689152,52.92540202372317],[-128.3868982285621,52.92507899268718],[-128.38715983064614,52.924724429763685],[-128.38777537700997,52.924332420289346],[-128.3883611159812,52.923990900943565],[-128.3886337296532,52.923832884437545],[-128.388897270456,52.92369578905096],[-128.3891996452134,52.92355342862939],[-128.38933898158163,52.92349509548051],[-128.3894768496213,52.92344408422092],[-128.3897313518871,52.92334529995701],[-128.38994072406572,52.92317342409559],[-128.39006829878588,52.92290567459521],[-128.39011277936973,52.92271865271024],[-128.39010309885808,52.92267904248354],[-128.39004082599047,52.922681993824256],[-128.38993828288665,52.92258204820958],[-128.38992371868144,52.922355862771454],[-128.38995647449894,52.92220887698595],[-128.3900015202879,52.92214798247803],[-128.39008636923953,52.92208235067601],[-128.3901572808776,52.92203381987895],[-128.39021428349548,52.92198669281156],[-128.39027978926237,52.92190855560518],[-128.39035693995368,52.92178870650354],[-128.3904067902562,52.921680615015156],[-128.39042227123466,52.921591169923055],[-128.39046258679983,52.92146253448856],[-128.39051407844588,52.92135048986982],[-128.39053077863196,52.92131594958198],[-128.39061107095085,52.9213019849083],[-128.390979703378,52.9212277870046],[-128.3915341175812,52.92110943944786],[-128.3920544175517,52.920981135958655],[-128.39249527825237,52.920848839643014],[-128.39271025562167,52.92076037780166],[-128.3927519871345,52.920723650737976],[-128.39276805127722,52.9207109908449],[-128.39284820982968,52.92067796696821],[-128.39301798264475,52.920630787060205],[-128.39326126938616,52.920565293462644],[-128.39353623212736,52.92048290200453],[-128.3937377593458,52.920420499386694],[-128.39383905783092,52.92039881275785],[-128.3939181302401,52.92039608256649],[-128.39399362179483,52.920396232669866],[-128.3940367901517,52.920401516319686],[-128.39407838038562,52.92041188194519],[-128.39412655749902,52.92042323470873],[-128.39415947886323,52.92042873581429],[-128.39418667189386,52.920431546007784],[-128.39422129737474,52.92043420493559],[-128.39423994697208,52.92043438150588],[-128.39427272551785,52.92043707800641],[-128.39439282792932,52.92045145163276],[-128.39470450760868,52.92049164191609],[-128.39504333437554,52.920534077233974],[-128.39520436602683,52.92054705170568],[-128.39529599909383,52.920535660356826],[-128.395455780189,52.9205099830739],[-128.39560254313224,52.92048457065875],[-128.395650446634,52.920474625599475],[-128.39568926839385,52.92048560315489],[-128.3958278837087,52.92054725377891],[-128.39605282217536,52.92061947037581],[-128.39625803480334,52.92062258296365],[-128.39637885798751,52.920599940329936],[-128.3966860738247,52.92051126944319],[-128.39719284637175,52.920341733914114],[-128.3974369612465,52.92025771931795],[-128.3974712083233,52.92025365780203],[-128.39755461194454,52.92024523089042],[-128.39764546282728,52.920236652140574],[-128.3977112177973,52.92022914091854],[-128.39775962520022,52.92022815431543],[-128.39783100534757,52.92023791146557],[-128.3979232128345,52.92025341514131],[-128.39796470898153,52.92026209504316],[-128.3979764879386,52.92025624894823],[-128.39799838818828,52.92024795414462],[-128.39803243790058,52.920223714880045],[-128.39813050755666,52.92016117098352],[-128.39830656091155,52.92007685562248],[-128.3985050815243,52.91999432432286],[-128.39862235281907,52.91990896448076],[-128.39860770283164,52.91983077911073],[-128.3985641875914,52.91978626217421],[-128.39866819598,52.91974657683142],[-128.39891865567762,52.91969270206841],[-128.39909281240477,52.919640938951005],[-128.3992005747879,52.91956866171865],[-128.39933894591104,52.91947726476628],[-128.39945725598398,52.919410387129204],[-128.39957873630922,52.919366424850786],[-128.3997061025098,52.91932794838774],[-128.39982516105414,52.919290762455454],[-128.39994746913592,52.9192450966048],[-128.40004843762597,52.91920099615223],[-128.40013502445157,52.9191498967263],[-128.40023850084123,52.9190844331181],[-128.40033801617145,52.91901457439103],[-128.4004154590414,52.918950206880396],[-128.40048260627833,52.91888492819438],[-128.40055586614267,52.91881223242711],[-128.40063804119376,52.918732636429475],[-128.40067865097302,52.91869256561167],[-128.40071657906947,52.91867104486681],[-128.40082465256415,52.91860437463353],[-128.40096616429858,52.918519073616416],[-128.4011175383232,52.91844367091451],[-128.4012919306576,52.91837956629757],[-128.40150425922624,52.91831075827821],[-128.40171971055673,52.91823123915325],[-128.4019556400974,52.918151301487754],[-128.40229490917653,52.918053000090374],[-128.40261959847624,52.917960592506624],[-128.40282776729802,52.91790084555965],[-128.4029698132755,52.917858136833026],[-128.40320845712975,52.91774394883801],[-128.40355145726613,52.91756315438062],[-128.40376894829762,52.91745387320905],[-128.403880431437,52.91739834234127],[-128.4039640351762,52.917343937215044],[-128.4040075202041,52.91730548368918],[-128.40419988789426,52.91722979512917],[-128.40460209981168,52.91710777621929],[-128.40490844509577,52.91702078690339],[-128.40498543336972,52.91699791002095],[-128.404983819723,52.9169693477638],[-128.4050260483346,52.91687542427821],[-128.40511947129772,52.916764201061184],[-128.40516707351821,52.91668305702699],[-128.40516812845974,52.916619126675265],[-128.40517064486662,52.916564701181706],[-128.40517177956534,52.91650244651972],[-128.40517586792768,52.916409867847754],[-128.4051928560264,52.91628170291072],[-128.4052035944686,52.91614188858543],[-128.40519812145985,52.916045020560865],[-128.40518984150702,52.916013796058934],[-128.4051995982257,52.916005183026925],[-128.40523152571464,52.91597650002695],[-128.4052701403621,52.91593422579482],[-128.4053031333664,52.915858430278014],[-128.40533533553418,52.91576864030948],[-128.4053617044402,52.91570755591085],[-128.40539738135075,52.91564628116638],[-128.4054673101798,52.915547862251394],[-128.4055643257251,52.91543432262542],[-128.40564615146764,52.915348558656014],[-128.405725156202,52.91527910534336],[-128.4058368934359,52.91519497189216],[-128.40593731384382,52.915125089378115],[-128.40604077153492,52.91505962050609],[-128.40620318734224,52.91496548038852],[-128.40641309153386,52.91488718666184],[-128.40664280855606,52.91484605215678],[-128.4068896388497,52.91482754732373],[-128.40709135940386,52.91481893475266],[-128.4071520199715,52.91478742076496],[-128.40713194103984,52.914728963698074],[-128.40719061722328,52.914629661623835],[-128.40730481126738,52.91450679016694],[-128.40737234592478,52.91441571126641],[-128.40740195946532,52.91434615529112],[-128.40741857987737,52.91431049254557],[-128.40744848497238,52.914279051709855],[-128.40752560671132,52.91420907946082],[-128.40761965724408,52.91414212427932],[-128.40772647976837,52.914086675799936],[-128.40785215941636,52.91401851686536],[-128.4079967799172,52.91392305202453],[-128.40812776295854,52.913833481205856],[-128.4082225548871,52.913779399746275],[-128.40830479622457,52.91371773566631],[-128.40835681385303,52.91363257984064],[-128.40836035131886,52.913546730320135],[-128.4083806550489,52.913477364633536],[-128.40847120108555,52.91341440018845],[-128.40857630562627,52.91334497537941],[-128.40867154906326,52.91326622659184],[-128.4087712265512,52.91319971126464],[-128.40882690553343,52.91316269226975],[-128.40884410738633,52.91315393539187],[-128.4089011360783,52.913124172104915],[-128.4090495019617,52.91304545624172],[-128.40923853884314,52.912944595144864],[-128.40942604564316,52.91284938009022],[-128.40956489264536,52.912783747962656],[-128.40965142305888,52.91273207689697],[-128.40972049442257,52.91263535884736],[-128.40979810829091,52.91254127324441],[-128.40996203606838,52.91250707681538],[-128.41014887610672,52.912466248483845],[-128.41024776628532,52.91241881750008],[-128.41027126797465,52.91240600257558],[-128.41028840531476,52.91239611660992],[-128.41036985740894,52.91235352770354],[-128.41052181349616,52.91227248486803],[-128.41071030116603,52.912178368718905],[-128.4108791678833,52.912099786308865],[-128.4109985004266,52.91205137054701],[-128.41108440317,52.91202157934455],[-128.41113011496205,52.912006066525514],[-128.4111464874781,52.91199900362114],[-128.41120311422196,52.911978782169435],[-128.4112972269253,52.911946014982526],[-128.41140400442555,52.91190626975825],[-128.41155164132587,52.91184773831733],[-128.41170013816387,52.911788076804584],[-128.41179587262846,52.91175079109096],[-128.41187518828312,52.91172001313645],[-128.41199830494975,52.911672639921775],[-128.41216714941945,52.91161031809253],[-128.4123624199712,52.911537354116774],[-128.412582829885,52.91144762102457],[-128.41279910374152,52.91135068893234],[-128.4129688380062,52.91127096432552],[-128.41311325552718,52.91122146657742],[-128.41329935408467,52.91118401189051],[-128.41353900300552,52.91115442777123],[-128.41375927033485,52.91114430156594],[-128.4138682824618,52.9111443067936],[-128.41393999704857,52.911061551352276],[-128.41406377497137,52.91091101047923],[-128.41412447889954,52.910831279442775],[-128.41411320337272,52.91079675319328],[-128.41407884625994,52.91073298399513],[-128.41404776473715,52.91069437939223],[-128.41407053433696,52.91066868918328],[-128.4141810918194,52.91062997595064],[-128.41434074639255,52.910586335019374],[-128.4145022376424,52.91047650441575],[-128.41467976970793,52.91032093947352],[-128.41487854999716,52.91021146395044],[-128.41504684186222,52.9101558674029],[-128.415131958894,52.91012889673379],[-128.41520040144516,52.91010338065606],[-128.4152627984272,52.910086402294624],[-128.4153115709843,52.91014146155733],[-128.41536259708516,52.910252535354005],[-128.41547519866884,52.91028273818276],[-128.41566807123962,52.91021711006174],[-128.4158212174886,52.910157347559505],[-128.4158969465214,52.91012888284658],[-128.41592518628173,52.91011764673103],[-128.41596621678184,52.9101016719715],[-128.41605101485948,52.91006909211881],[-128.41609490978107,52.91003791755397],[-128.41607713422806,52.909905422951496],[-128.41603368720848,52.909681506892575],[-128.4160109614515,52.9095765792887],[-128.41606085473464,52.90953631175882],[-128.41616073805142,52.90944119881009],[-128.41627993632542,52.90930868876309],[-128.41640559237584,52.90917492467301],[-128.41652561726767,52.909040719998615],[-128.41662187215923,52.90891428702566],[-128.4166737716906,52.908827442923304],[-128.416686118269,52.90879860264221],[-128.4167202296304,52.90874296201182],[-128.4167952449918,52.908636582126],[-128.41686596407706,52.90853646165262],[-128.4169006471327,52.908490900171735],[-128.41690941349617,52.90848119414785],[-128.41699380954367,52.90844133832646],[-128.41725261439387,52.908322776251936],[-128.41740072965715,52.90812519591417],[-128.41725880516813,52.907922929905304],[-128.41716169195072,52.90780439928821],[-128.41720776583063,52.90771318969533],[-128.41725158240345,52.90761530812368],[-128.4172694843481,52.907503939440865],[-128.41726979284996,52.90736153820829],[-128.41726604271958,52.90727920115516],[-128.4172661542596,52.907264623006135],[-128.417286423054,52.907227771246184],[-128.41731940534504,52.907119456220286],[-128.4173338387692,52.90701264365858],[-128.41731602427694,52.90696143370747],[-128.4172907805605,52.90692719475475],[-128.41728281140925,52.90690157049419],[-128.41730004053045,52.90689336782328],[-128.41732164378303,52.9068800252668],[-128.4173397811588,52.90682191411296],[-128.41737548379655,52.906712421898625],[-128.41742518334047,52.906619460253935],[-128.4174460234243,52.90659267871244],[-128.4174606281851,52.90657107531488],[-128.41748185023206,52.90655102220563],[-128.41752788899998,52.90650859066951],[-128.41759376505667,52.90645453911437],[-128.417665224549,52.906400372734886],[-128.41778222790663,52.90632788658963],[-128.4179456012234,52.90626791057447],[-128.41808797517933,52.90626498326752],[-128.4181981981437,52.906286262528056],[-128.4184178684077,52.90623353290763],[-128.41879138133768,52.90605149694496],[-128.4191577489524,52.90584214124619],[-128.41944236521678,52.9056697891943],[-128.41963056454475,52.90553865399537],[-128.41969425707433,52.90547903996012],[-128.41971092788472,52.90544450415549],[-128.41974639960424,52.90536360241697],[-128.41980514414573,52.90524971530979],[-128.41991320070986,52.90515106669985],[-128.4200713012479,52.905064277718274],[-128.42021175996757,52.90499467888987],[-128.42026169228498,52.90497178293995],[-128.42026776851696,52.90494755607944],[-128.42027362169705,52.904919405043415],[-128.42028542326136,52.904864778358736],[-128.42031920849425,52.90480353698451],[-128.42036147188108,52.90474380742372],[-128.4204182735888,52.90466134518303],[-128.42049055246395,52.904556148849906],[-128.42055422517848,52.90446345408903],[-128.4205937524494,52.90440490196002],[-128.42060178476035,52.9043823121556],[-128.4205930349948,52.90435950268968],[-128.42060318331727,52.90432510096656],[-128.42064426988483,52.90429398220972],[-128.42067870751882,52.904277011111546],[-128.420699926908,52.90425695739343],[-128.42071887109594,52.9042296580659],[-128.42072567885708,52.90421830569284],[-128.42074109180476,52.90419444272148],[-128.42080726120298,52.904112908624796],[-128.4209389487705,52.903987428157464],[-128.4211106409778,52.90386111492995],[-128.42124966103097,52.903750059013845],[-128.42131323562384,52.90365568840551],[-128.4213514060454,52.903540537570585],[-128.42139086419465,52.90341526917368],[-128.42140920228772,52.90336107279173],[-128.42144752045277,52.90334682907952],[-128.42155417114435,52.90330539008325],[-128.42165455522584,52.90326856493386],[-128.4217259901625,52.90324691179405],[-128.42181414245204,52.90322434922706],[-128.42189652090215,52.90319855080002],[-128.421973092892,52.90316894312942],[-128.4220822082675,52.90312184674164],[-128.42218842857244,52.90307312355555],[-128.42223317117165,52.90304080763924],[-128.4222482142774,52.90297770915612],[-128.42227209904144,52.902889761581925],[-128.42229040457073,52.902851262845324],[-128.42243136617725,52.90283995442021],[-128.42268883425922,52.90273149753369],[-128.42281694330893,52.90254329075445],[-128.42281742897654,52.9024535826639],[-128.42281874865571,52.90244402953707],[-128.42269868743074,52.902429684761],[-128.42245867819636,52.90241948825616],[-128.4223426536882,52.90236133215327],[-128.4223642296299,52.90223306794098],[-128.42242407333165,52.90208943945273],[-128.42250583806174,52.901971147523085],[-128.42256988578598,52.901901433251986],[-128.42261045888938,52.901861354451064],[-128.42262316244322,52.901789899339704],[-128.4226136417188,52.9016718016084],[-128.42262078897917,52.901535429816605],[-128.4226530663305,52.90139853130052],[-128.42268472461566,52.901267260618155],[-128.42271539937542,52.90116796065917],[-128.42273233367243,52.901105379176336],[-128.42274836317168,52.901059643704755],[-128.42275884191503,52.90103083203094],[-128.4227778464966,52.90098839893566],[-128.4228083939869,52.90090311240348],[-128.4228454305291,52.90081713602417],[-128.4229252538507,52.90073027800287],[-128.42302401912133,52.900632382421946],[-128.42309720912996,52.900559671805695],[-128.42319217384977,52.90047698646267],[-128.4233208539038,52.900364454282574],[-128.42346800019908,52.900249298894856],[-128.42359965537028,52.90015633102396],[-128.4236645122607,52.900101175273804],[-128.42368111350163,52.90006550991765],[-128.42369203661266,52.90002828423864],[-128.42369974777014,52.900000094588826],[-128.42370225859605,52.89997873949802],[-128.42370763197138,52.8999584466315],[-128.42371589765688,52.89990726485303],[-128.4237251439176,52.8998078410688],[-128.42373165558425,52.899709603842204],[-128.42374222208406,52.899616880200554],[-128.42376506863638,52.89952727607991],[-128.42378483018499,52.89944893885673],[-128.42379965789098,52.89933314664898],[-128.42379091324787,52.89921223419189],[-128.4237515410522,52.89914240835858],[-128.42368785155844,52.89908710360137],[-128.42362193567962,52.89902567345747],[-128.42356758111703,52.89895447005141],[-128.4234885388331,52.89884229895885],[-128.42337210215453,52.89871127252654],[-128.42326603963033,52.89861534640953],[-128.423203274538,52.89856002234985],[-128.42316279353318,52.89851992725872],[-128.42309279016453,52.89845185369261],[-128.4229984667782,52.898349523151914],[-128.42294194896317,52.89825650456248],[-128.42290704682236,52.898166969314595],[-128.4228644277149,52.8980400274086],[-128.4228457625638,52.89792492541304],[-128.42284287200948,52.89779211481912],[-128.4228428415648,52.89761159751227],[-128.4228414663133,52.89752192749096],[-128.4228407976047,52.897510172845216],[-128.4228410656428,52.897482136583264],[-128.4228410467276,52.8974490562159],[-128.42285016817885,52.89736365480706],[-128.42288001938834,52.89715169236203],[-128.42288847355553,52.89689082771247],[-128.42284553201358,52.89669269874525],[-128.42280946462276,52.896533662183],[-128.422811443055,52.89642094226052],[-128.42281600490915,52.896386646248196],[-128.42282099600223,52.89635963387178],[-128.4228313128395,52.89629551114719],[-128.42282491557057,52.8962485512966],[-128.42277254187405,52.89622832715034],[-128.42272214150384,52.89621030478055],[-128.42270006285273,52.896165910509765],[-128.4226137306815,52.89608920327424],[-128.4224756165161,52.896019169043264],[-128.42242119100183,52.89597936997539],[-128.42237171533537,52.895993844090064],[-128.42217429928112,52.895962031889354],[-128.42176870309788,52.89592217405834],[-128.42142958847472,52.895953825624275],[-128.42114807556678,52.8959663503809],[-128.42079147653428,52.89585427765504],[-128.42053931838626,52.89571146689311],[-128.42033498633202,52.89565624821847],[-128.42016647084122,52.895624958992386],[-128.42012394391048,52.895597803635525],[-128.41996478146228,52.895681808221724],[-128.41936798020808,52.895801172219116],[-128.4186274560797,52.89571886105012],[-128.41827145539258,52.89553500991878],[-128.41797708223078,52.89545248723226],[-128.41751273088823,52.895411024635436],[-128.41720485546904,52.89535287960489],[-128.41702856893983,52.89528306783668],[-128.41690463548258,52.89523291784971],[-128.41677217743344,52.89518013541039],[-128.4165167894433,52.8950951304331],[-128.41627385176622,52.895032284631036],[-128.41608032668685,52.894986927671695],[-128.41586194754038,52.89489723200142],[-128.4157058973279,52.89479000198762],[-128.41563430702752,52.89471017942777],[-128.41556820236718,52.89464482904873],[-128.41549217374904,52.89458527969039],[-128.4154048547241,52.89452372875339],[-128.41526502560671,52.894439701738236],[-128.4150734963497,52.89434721062654],[-128.41492092782389,52.894284757197816],[-128.41481368230504,52.8942331410832],[-128.414669052605,52.89414641340532],[-128.41453822694925,52.89405659450879],[-128.4144876276569,52.89401839070189],[-128.41447182206602,52.894002461982716],[-128.41445501472055,52.8939854236367],[-128.41443222789616,52.893961224591216],[-128.41438182189734,52.8939101271402],[-128.41431840846394,52.89384303449834],[-128.41424801403983,52.89376767148586],[-128.41416655415827,52.89367796866518],[-128.41410048706962,52.893596910571695],[-128.41404542565044,52.893512827877025],[-128.41399604182374,52.89343031490606],[-128.41397515046648,52.89339037966925],[-128.41397549006683,52.89334720094779],[-128.4139768193728,52.89327205139972],[-128.41397720584513,52.893229436811325],[-128.41397786051672,52.89320812004219],[-128.41397882101936,52.893159331397804],[-128.4139664592567,52.893072685579575],[-128.4139331749632,52.89294554901739],[-128.41388368742153,52.892812017760996],[-128.4138521171963,52.89271511912763],[-128.41382727132014,52.89263826452523],[-128.413805065465,52.8925585571266],[-128.41377640312055,52.89248009454083],[-128.41372039183258,52.89237921275789],[-128.41366235003449,52.89224249333135],[-128.41362724111633,52.892099696912986],[-128.41361203642347,52.89199573483271],[-128.4136087365087,52.89193749870352],[-128.413604914759,52.89185348503084],[-128.41359909673668,52.89171793582416],[-128.41361888233746,52.89157401235263],[-128.41370534213945,52.89145619456147],[-128.41380818838195,52.89139745640255],[-128.41385040982237,52.89138649843405],[-128.41387348655354,52.89136640758471],[-128.4138169396506,52.89123974853322],[-128.41362689315707,52.89100874852513],[-128.41350679631145,52.89081220047907],[-128.41347925807247,52.89067149095612],[-128.41343367187844,52.890524424558635],[-128.4133809471587,52.890366292390134],[-128.41334065734495,52.89021406719419],[-128.41331989300193,52.8900777034581],[-128.41331086579294,52.88993493648353],[-128.41329883304365,52.889788302407545],[-128.4132720544647,52.88967728528482],[-128.41324903733963,52.88961609014908],[-128.41322870862695,52.889553162459734],[-128.41320626830202,52.889469530874216],[-128.41319157004514,52.88939078140312],[-128.41318697054106,52.88930959113074],[-128.41318076387014,52.88923290979686],[-128.41316315523395,52.88916880501903],[-128.41313652653258,52.88912617980112],[-128.4131141237108,52.88910869999386],[-128.41313257245932,52.88908926037388],[-128.4131929727124,52.88903756512518],[-128.41323259070356,52.88898069032034],[-128.41327834689642,52.88891696210507],[-128.4133833252604,52.8888138962218],[-128.41349153124887,52.888701794116834],[-128.41356247882857,52.888606154101105],[-128.41362658989098,52.88850504824451],[-128.41368344695027,52.8884237173107],[-128.4137290773325,52.88834148665861],[-128.41376932306895,52.88821340504108],[-128.41378878917382,52.888063881585424],[-128.4137958693015,52.88790956241627],[-128.41379824003516,52.887770481042736],[-128.4137989377527,52.8876678785202],[-128.41382084407286,52.88757773016898],[-128.41388389134906,52.88744132262312],[-128.413906710959,52.88730182128299],[-128.41384666580976,52.887211678391225],[-128.41384530982302,52.88712200768444],[-128.41389494735427,52.88702848226041],[-128.41388230222634,52.8869368009016],[-128.41388815144316,52.88682624390892],[-128.41393891653215,52.886736058982024],[-128.41397759377543,52.88667920309899],[-128.4140105463745,52.88661966616636],[-128.41405658921266,52.88652845691203],[-128.4141113142572,52.88642586596625],[-128.41417368462805,52.886343291182676],[-128.41426254626018,52.88625176750453],[-128.41435221817042,52.88615798463774],[-128.41443458775353,52.88609967500398],[-128.41454306241752,52.88605820370804],[-128.41463256743893,52.886027213078954],[-128.41481722346856,52.885949974484305],[-128.4151216269182,52.88581646505641],[-128.41527163387067,52.88575227117358],[-128.41522513053377,52.88570389241044],[-128.41511543248362,52.885592345607456],[-128.41500954816772,52.88549865112087],[-128.41493132744566,52.885432984148785],[-128.41487597024562,52.885376382385495],[-128.41483953292487,52.88532498910698],[-128.414810219916,52.88526785225836],[-128.41478181454667,52.885193869279355],[-128.41475671745943,52.88511253479385],[-128.41473866130113,52.88505684403596],[-128.4147132890696,52.88501980841307],[-128.41467616858495,52.88497291405275],[-128.41464596482996,52.88491635159056],[-128.41463415847406,52.88485604749134],[-128.41464413344275,52.88480202334993],[-128.41467371453777,52.88473246426581],[-128.4146939544988,52.884580116769705],[-128.41472510687632,52.88439055331205],[-128.41480221586767,52.88427236082051],[-128.41486542433802,52.884188090881736],[-128.41488766062758,52.88410409757884],[-128.4149095948081,52.88401451326905],[-128.41494609708087,52.88388649868648],[-128.41501145957287,52.88372538426914],[-128.41509909914555,52.88353016603868],[-128.41514808488776,52.88335929686407],[-128.41515742397812,52.88329407332069],[-128.4151907675243,52.88325806478348],[-128.41525292402147,52.88318839221303],[-128.41526960867878,52.883121340339805],[-128.41521762916358,52.88300916365694],[-128.4152707887784,52.88291220117112],[-128.41547802868405,52.882937659671995],[-128.41562744592895,52.88294523621304],[-128.41570768000443,52.88284940340776],[-128.41581357716356,52.88273006221483],[-128.4158970206387,52.88264144683585],[-128.41595949262026,52.8825773735195],[-128.41602554109465,52.882510428040966],[-128.41609437164712,52.8824434163598],[-128.4161804702469,52.882352512657796],[-128.41628312066715,52.882241642485404],[-128.4163153855949,52.88213726030269],[-128.41632030556752,52.882043540370006],[-128.4164223800043,52.881955106612054],[-128.41652804854428,52.88184809396024],[-128.41656889827985,52.881747463973404],[-128.41659920616502,52.88167452550899],[-128.4166501345894,52.88157088067093],[-128.41671771172912,52.88143270021333],[-128.41678334816913,52.88129288223024],[-128.41682996885132,52.88117923471006],[-128.41685116429304,52.881126100692406],[-128.41686202498636,52.881087755276795],[-128.4168864185149,52.880992513550055],[-128.41690388156812,52.880857040791014],[-128.41689959698778,52.88071585290806],[-128.41686615620708,52.88056965838294],[-128.41683172834234,52.880438625338606],[-128.4168171552616,52.880345862234996],[-128.41681687439646,52.88025896755629],[-128.41686279387227,52.880149263163204],[-128.41698998242174,52.88004405877108],[-128.41716324180283,52.87994686765637],[-128.41727787011786,52.87985032603809],[-128.41724611013055,52.879766330205626],[-128.4171437795548,52.879702281726125],[-128.41701892066712,52.8796678486777],[-128.4168969241662,52.87961821542792],[-128.41685484740657,52.879549563894024],[-128.416860604317,52.879519737163356],[-128.41669883125883,52.87949110397799],[-128.416176856599,52.87936616617571],[-128.41554778686304,52.87920811276516],[-128.41491807550645,52.87915377929501],[-128.41421942791914,52.879147950563734],[-128.41378462264382,52.879082314658675],[-128.41364597565203,52.87900163441812],[-128.41356008932007,52.87894845759607],[-128.41347776189141,52.87890866247959],[-128.41341857930723,52.87888296811512],[-128.41336289452636,52.87885327307984],[-128.41320809088126,52.87881608726946],[-128.41295279096002,52.878730508931945],[-128.41272241464677,52.87857546678684],[-128.4125732979924,52.87847425289095],[-128.41245591778423,52.87844021773031],[-128.41231483719875,52.87839882923985],[-128.41220170293522,52.878357423123376],[-128.4121350819644,52.878331880808226],[-128.41207925411337,52.87831620807357],[-128.41198199299657,52.878324931641004],[-128.41184679844542,52.87835461586887],[-128.41177668966694,52.87836614575157],[-128.41176743971002,52.87835063825578],[-128.41173799031174,52.87830751435099],[-128.41166349438328,52.878224950292214],[-128.41156054204168,52.87814969752888],[-128.4114905539298,52.8781141328196],[-128.41141040692153,52.87807989775196],[-128.4112351982844,52.87802743077835],[-128.4109903606633,52.87797863447502],[-128.41073972168473,52.87792602786043],[-128.4105389540748,52.877866235500825],[-128.41040385578182,52.87781518707992],[-128.41029867576006,52.877766332492584],[-128.41018653474833,52.87770976294604],[-128.41002645368425,52.877628396934945],[-128.40987827761802,52.87756023246351],[-128.40982871550898,52.8775399452614],[-128.40979069315713,52.877526148837084],[-128.4097450096176,52.87750858964731],[-128.40972413826654,52.8775017250803],[-128.40969275990307,52.87749003486747],[-128.40961956121163,52.87746350480516],[-128.40952305742522,52.87743633128072],[-128.40940189527157,52.877417511872835],[-128.4093022417696,52.877400493872415],[-128.4092159564663,52.877389373025146],[-128.40904966181284,52.877379327122725],[-128.40884054914477,52.87733652154747],[-128.40868360246034,52.87726125183845],[-128.4085688453209,52.877191279588914],[-128.4084759558462,52.87714553524312],[-128.40842680609404,52.87713252256665],[-128.4083897340688,52.87713552476691],[-128.40816349175358,52.877135676021815],[-128.40775367386692,52.87713286061713],[-128.4075193425509,52.87712140786951],[-128.40742706694132,52.877103115928634],[-128.40724192628937,52.877072706217234],[-128.40699259442445,52.87704305482302],[-128.4067074445512,52.877021985070805],[-128.40643318664823,52.876996206662966],[-128.40621055306397,52.876944703473505],[-128.40601751509365,52.876856714446085],[-128.40583430414614,52.876761240397336],[-128.4056372109691,52.87668398103061],[-128.40541933228297,52.87663406539028],[-128.40523098101352,52.87661268816668],[-128.40506721422548,52.876614362419026],[-128.40485783401954,52.87663265816638],[-128.4046127679227,52.87664552141545],[-128.40439382499443,52.876642717513946],[-128.40424332971273,52.87664859505489],[-128.4041316189199,52.87666545643192],[-128.40402030861483,52.87667278350469],[-128.40386866559345,52.876641683322724],[-128.40362538840432,52.87658723388753],[-128.40339872850373,52.87656328253372],[-128.40324240097294,52.87656479313688],[-128.4030607363811,52.876562901795594],[-128.40282801962553,52.876579993735135],[-128.4025149039695,52.87662451722644],[-128.40217945900554,52.876652677798674],[-128.40197281206085,52.876669800246006],[-128.4018898415317,52.8766843857213],[-128.40183982055672,52.87667251834806],[-128.40176195399127,52.87664551380743],[-128.40163138112925,52.87664145484923],[-128.40149989515973,52.876654232894886],[-128.40141767305198,52.87666544801281],[-128.40131359011158,52.876685514517895],[-128.40118462623968,52.87671000912704],[-128.40099761881376,52.87674522441755],[-128.40073231410747,52.8767954936806],[-128.40060331827343,52.8768194321585],[-128.40054718007323,52.87676508238033],[-128.40043210424233,52.876655865855994],[-128.4003566415489,52.876589012050296],[-128.4003126017553,52.87656748691451],[-128.40025560570132,52.876547347616345],[-128.40019018445142,52.87652625913278],[-128.4001208393169,52.87650188705554],[-128.40005693142191,52.876474605301695],[-128.39997961039026,52.87644086107487],[-128.3998549241278,52.8763923957687],[-128.39970499534897,52.87634219434508],[-128.3995586610981,52.87628968584794],[-128.39942455796006,52.87622290756688],[-128.39931100844606,52.87615738687388],[-128.3991621615362,52.87610997025712],[-128.3990233859374,52.87607580264328],[-128.39896595817567,52.87606464140575],[-128.39894835968124,52.87606612188164],[-128.3989305889323,52.87606480727681],[-128.39880136531357,52.876034929346815],[-128.39855437828078,52.87598054532589],[-128.39842737903885,52.875858115511186],[-128.39844776818543,52.87567438250645],[-128.39843942366912,52.87557588442178],[-128.3983357982171,52.87557070679546],[-128.3981716882456,52.87556620726482],[-128.39805149068204,52.875547921764785],[-128.39793035627275,52.87549657444576],[-128.39776627949772,52.87542647715344],[-128.39764960417105,52.875421009062826],[-128.39749278357058,52.87546345159092],[-128.39727627410699,52.87547067600084],[-128.39715066251767,52.87547211709413],[-128.3971030619449,52.87548654282605],[-128.397077307023,52.875492109222904],[-128.39702531779727,52.875478037533796],[-128.39688394651728,52.87543102176105],[-128.39668201327825,52.87534992666851],[-128.3964479206705,52.87524314260986],[-128.39624243618414,52.87514866443606],[-128.39616791779784,52.875114860636984],[-128.39610484044252,52.87511895433308],[-128.3959663829228,52.87512345469517],[-128.39585126082684,52.875129165479194],[-128.39566088984895,52.87518743065169],[-128.39539422943872,52.87527975727604],[-128.39523346038968,52.87530153896764],[-128.39510291323626,52.8751489048427],[-128.3949692066585,52.87490664551104],[-128.39491991529474,52.87479159822987],[-128.3949154720175,52.87477879911717],[-128.39490897957037,52.87476266910447],[-128.39490142438729,52.87474432725834],[-128.39488780053188,52.8747171302741],[-128.3948649193085,52.87467443368964],[-128.3948301550553,52.874619080629024],[-128.39478930788198,52.87455488167563],[-128.39474534895874,52.87448513996739],[-128.3947227821871,52.87444803412939],[-128.39471802431754,52.87442963526669],[-128.39467987706345,52.874396775711084],[-128.39463210120013,52.87435850619688],[-128.39461362217497,52.87434430675201],[-128.39449053776312,52.874324390193784],[-128.39422051080598,52.874306902289476],[-128.39373325341387,52.87418452344134],[-128.39306625465557,52.873928456855765],[-128.39266160023425,52.873751693707504],[-128.39256526675044,52.87371048326619],[-128.39251131194393,52.87369476332933],[-128.3924885542532,52.873687378055855],[-128.39250009543568,52.87366079866609],[-128.39254334590348,52.87358535182224],[-128.39263780084755,52.87347691183089],[-128.3927504129321,52.87336025342384],[-128.39277734453,52.87327617787316],[-128.39270951667157,52.87322878096766],[-128.39261480938842,52.87318361764343],[-128.39252142202395,52.87311208294541],[-128.3924217058714,52.8729941414828],[-128.39234369931276,52.872881364115216],[-128.39228132609685,52.87283161346375],[-128.3920963036791,52.87278604588726],[-128.39182918057634,52.872720845781465],[-128.3917149446262,52.872692341572915],[-128.39170457731643,52.872673491669005],[-128.39166450176182,52.872606468419846],[-128.39168755263205,52.87250284608253],[-128.39183152371402,52.87241414608412],[-128.3920362370006,52.87236288739491],[-128.39224029945294,52.87233294497038],[-128.39232903213244,52.87232160357269],[-128.39236784087427,52.8723331470076],[-128.3924799175639,52.872356097355784],[-128.3926069138997,52.87236303761815],[-128.3927488560091,52.87233772281783],[-128.39300831162737,52.87228310524665],[-128.39329860219442,52.872230666637925],[-128.3934535615601,52.87220508584327],[-128.39354669879873,52.87218916887372],[-128.39366932561632,52.872168175166706],[-128.39380962665354,52.87214681231121],[-128.39391969040864,52.872133922886505],[-128.39399943817503,52.8721283694116],[-128.394076452314,52.872124001778076],[-128.39430017912218,52.872112716026066],[-128.39473807386702,52.872102671595506],[-128.39518894223784,52.87214113021163],[-128.39553266219642,52.87221093251669],[-128.3956967250822,52.87224795217755],[-128.39584395852467,52.872250556533096],[-128.39621528594503,52.87218243848162],[-128.39660302877,52.87205847890652],[-128.396742125565,52.87196594324108],[-128.39673664435662,52.87190158860387],[-128.39673299863458,52.87185344992662],[-128.39673305547186,52.87180467062708],[-128.39674298893573,52.87171645567326],[-128.39676808448908,52.87159989164402],[-128.39679391204336,52.871513029845794],[-128.3968019195259,52.871489885709224],[-128.39680919305144,52.87147011127368],[-128.3968343575351,52.87140456642361],[-128.3968667959184,52.87131925608407],[-128.3968916047295,52.871263809572305],[-128.39690234558364,52.87123947946372],[-128.39692097538472,52.87120658366197],[-128.39698140286885,52.871122379702506],[-128.3970610030539,52.87103162228436],[-128.39710260227318,52.87099320783489],[-128.39713506846257,52.8709746057704],[-128.39720432750715,52.87093170717242],[-128.39730944905068,52.87084771243353],[-128.3973922782095,52.870747918996855],[-128.39742379985856,52.87067943668897],[-128.3974255121792,52.870627268826084],[-128.39745797874147,52.8705755857429],[-128.39753797638974,52.87054143769262],[-128.39758127639072,52.87053327065107],[-128.39763470226168,52.87052321063993],[-128.3977340205531,52.87050155793104],[-128.397787383336,52.87049037790116],[-128.3978517467109,52.87047617475876],[-128.3980680963238,52.87048297193308],[-128.39833900552463,52.87053293942435],[-128.39870000701166,52.870513236948966],[-128.3991575425097,52.87030655848484],[-128.39932717674498,52.87004577560953],[-128.39930122682446,52.869931939404616],[-128.399378794686,52.86988774852137],[-128.39950304960013,52.869796633502105],[-128.39957434366556,52.86970715603288],[-128.3995855953384,52.86967553163182],[-128.39961471080946,52.869679987086],[-128.3997566485212,52.8696714821528],[-128.40009934438248,52.86965719014758],[-128.4007747338441,52.869715716825496],[-128.40151540291427,52.869809341209525],[-128.4018117833405,52.86979935453254],[-128.4018118302024,52.86968443120012],[-128.4018102090647,52.869490490204576],[-128.4018069564286,52.869284248917396],[-128.4018084205763,52.86916143894086],[-128.4018091489223,52.869091907291384],[-128.40180908372776,52.869057715346194],[-128.40183521233885,52.86905885861846],[-128.40206832347363,52.86906587077774],[-128.4025172409907,52.86907014743095],[-128.4029878203089,52.86916143598622],[-128.4033883159795,52.8693634725348],[-128.40368185314276,52.86946791456159],[-128.40391691670484,52.86944347950295],[-128.40408970784458,52.869420883203645],[-128.40429098078457,52.86944087604838],[-128.4046455545872,52.86935681082601],[-128.40498442720857,52.86902752333273],[-128.40511124032795,52.868701445396],[-128.4051155195053,52.86859596122482],[-128.40510570527576,52.868570373590835],[-128.40504209243272,52.86844946050196],[-128.40495503815148,52.86827577275199],[-128.4049489501212,52.86818451178508],[-128.4050207982285,52.86815445400996],[-128.40512344712474,52.86812599921852],[-128.40524689870247,52.86810328979615],[-128.40538393579695,52.86809039328579],[-128.4055749999932,52.86806181436362],[-128.40573611063797,52.868013666091294],[-128.40583585630637,52.867966774109554],[-128.40593814560066,52.867915344987374],[-128.4060050833966,52.867880902164565],[-128.40605749234572,52.86785291916341],[-128.40614491015782,52.86778553189743],[-128.4062228461361,52.86769872149936],[-128.4064602725471,52.867600795865656],[-128.40693584744307,52.867483980330576],[-128.40727878019896,52.867408558896],[-128.4073971241495,52.867278868656136],[-128.4075163997918,52.86700116412663],[-128.4076561862052,52.86674041387038],[-128.40781067081085,52.86654215177112],[-128.40808888579866,52.86637554695238],[-128.40838660661487,52.86630721998561],[-128.40850179788882,52.86630317233443],[-128.40858960408713,52.866308664892216],[-128.40884369311254,52.866324759376496],[-128.4091280678944,52.86630042366968],[-128.4092859156383,52.866227669793496],[-128.40938885314938,52.866154920507704],[-128.4095692984603,52.86608675289583],[-128.4097671554566,52.866046815124676],[-128.4098734792403,52.866033978029506],[-128.40989922677815,52.866028408796346],[-128.41010994072377,52.86598539912176],[-128.41052949186582,52.86589886994717],[-128.4109528510075,52.86583019204858],[-128.41139986013803,52.8657520661996],[-128.41169951526913,52.86565228706151],[-128.41185432102913,52.865575107025855],[-128.41197594870602,52.86547114185775],[-128.41199952772112,52.86531199696682],[-128.41201865124773,52.86518938851515],[-128.41211001993986,52.865077074393504],[-128.4122500429028,52.86490320493154],[-128.41230545569422,52.864731081529555],[-128.41222754137857,52.8646042940398],[-128.41207830601437,52.86446720219106],[-128.41196153088217,52.864196580476666],[-128.41198283229298,52.86388219395251],[-128.41203255006346,52.86374101730282],[-128.4120418682029,52.863708309818655],[-128.41208378505675,52.86364297300643],[-128.41213679791335,52.86356003350149],[-128.4121322980185,52.863480517312034],[-128.41205760867874,52.86337777476257],[-128.41199246981603,52.8632793210797],[-128.41198816388982,52.86318691103005],[-128.4119960457804,52.86309592813712],[-128.41199735617855,52.86305329381526],[-128.41200484328286,52.863037442628276],[-128.4120136992546,52.863013149492204],[-128.41202916555886,52.86299040699432],[-128.41204293122885,52.86297050701464],[-128.41206422893444,52.862952129776644],[-128.41211422957977,52.862914658134834],[-128.41220490315516,52.86283935913391],[-128.41228478674972,52.86275418140448],[-128.41232762792217,52.8626725718441],[-128.41235150031625,52.86255155193523],[-128.41237039949752,52.862425018918564],[-128.412380808384,52.862329499051796],[-128.41238638342813,52.86224697728274],[-128.41238772824218,52.86218864473684],[-128.41237680506325,52.86212720036052],[-128.41240428195755,52.86202067363785],[-128.4125025032307,52.8619306430881],[-128.41257260580508,52.86188659600114],[-128.4126004027202,52.86186808516745],[-128.41264327874165,52.86185262839628],[-128.41271820865964,52.861828099450506],[-128.41277588040455,52.86181121751022],[-128.41279884356234,52.86180570475259],[-128.4128515890055,52.861783873845],[-128.41297632748436,52.86171852184654],[-128.41313557024614,52.861621631074435],[-128.41326054997006,52.86152767744322],[-128.41331164676544,52.86147673665865],[-128.41331841771606,52.86146481995737],[-128.4133439892188,52.86143962714857],[-128.41337778448232,52.86136268789915],[-128.4134133387056,52.86120161875478],[-128.41344054767694,52.86105753977475],[-128.41349260352027,52.86095780031155],[-128.41357562924583,52.86086247464191],[-128.41361424912645,52.860821316165264],[-128.41358668039211,52.86081122621822],[-128.4135613321466,52.86070859197656],[-128.41358165421343,52.86049233822338],[-128.4135850182174,52.86028875763738],[-128.41354553484854,52.860133714995705],[-128.41350503399707,52.85999383460736],[-128.41347590467572,52.859890156740384],[-128.41344912406578,52.85981165426998],[-128.41340815961482,52.85969645087945],[-128.41336467354108,52.859536440262424],[-128.41333663468356,52.85936994987574],[-128.41332156070038,52.85921889063778],[-128.4133053085424,52.859079633214606],[-128.4132881619153,52.858974022728866],[-128.41327961863863,52.8589383181936],[-128.41327005534026,52.858917210881515],[-128.4132407625862,52.85886007269332],[-128.41320405342427,52.85877056158981],[-128.4131691432359,52.85866363860176],[-128.41313418469784,52.85855559534141],[-128.41309781673974,52.858422913481675],[-128.4130525693711,52.85826462521524],[-128.41297308033506,52.85810984792024],[-128.41289666875647,52.857993120950496],[-128.41289840795446,52.85794150763573],[-128.41291112538613,52.85790312383803],[-128.4128415705162,52.85784176244357],[-128.4127761958414,52.85777191024305],[-128.41275210095193,52.85770792867426],[-128.41273235865452,52.85765507918921],[-128.41271368291302,52.85758818765689],[-128.41266045262446,52.85748612577939],[-128.4125367743775,52.857356358216855],[-128.4124081683432,52.85723790425424],[-128.41233693559911,52.85714685936238],[-128.412297174458,52.857085450901955],[-128.4122339594188,52.85703741399154],[-128.41214517926647,52.85698148815629],[-128.41205069598,52.85692344583238],[-128.41195138217702,52.85686212989644],[-128.41189449185416,52.856810599185984],[-128.41177702547893,52.85670817847242],[-128.41156849201363,52.85655884836561],[-128.41146613037066,52.856493109601594],[-128.4114645151796,52.8564645553137],[-128.41146098940345,52.85636932125255],[-128.41146498492506,52.85624253770948],[-128.4114800492999,52.85614692198401],[-128.4114935809405,52.856090016444256],[-128.41152707341664,52.85600747740157],[-128.41157720521517,52.85590665668224],[-128.41159906010463,52.85586528674257],[-128.41147518422915,52.85581400984196],[-128.41122563772058,52.85571261375757],[-128.41100928788558,52.8556716395488],[-128.41075895159227,52.855638655116316],[-128.4103937804284,52.85548356771512],[-128.40998885497956,52.855201472122616],[-128.40971154700986,52.85493806093866],[-128.40962842562615,52.854768214557645],[-128.40959353838718,52.854611954905515],[-128.40947160615974,52.854496168566726],[-128.40935338792107,52.85439655960047],[-128.4092670574733,52.85423574880412],[-128.4090267488067,52.85396821336761],[-128.40874805050206,52.853663342154306],[-128.40864347824464,52.85352533005778],[-128.4086287697841,52.85351217664907],[-128.40861798381948,52.853502306559356],[-128.4085934114361,52.85347926414765],[-128.40856713051312,52.853359829021535],[-128.4085527996841,52.85310615461143],[-128.40842039180689,52.852854345296436],[-128.40814182921972,52.85268346412619],[-128.40784208106504,52.85254945288259],[-128.40722831484808,52.852424119769076],[-128.4064354304505,52.85237309246377],[-128.4060727643698,52.852377158708926],[-128.40604944107497,52.85237595013554],[-128.40606056814826,52.852358903408515],[-128.40610104102632,52.852284636752664],[-128.40615149729928,52.85218941789863],[-128.40616893683801,52.85215205929364],[-128.40618453398312,52.8521152945703],[-128.40624125041043,52.85201546239889],[-128.4063345281371,52.851904233707295],[-128.40645051628437,52.85181607694904],[-128.40657956806587,52.85171196381331],[-128.40667860985272,52.85160397147713],[-128.4067198077017,52.851542579606935],[-128.40673661428607,52.85149402132471],[-128.40675688469778,52.85139157189938],[-128.40678631666376,52.85125361972393],[-128.4068476003893,52.851119490840254],[-128.40693806742541,52.85099150032757],[-128.40703040707015,52.85086346237547],[-128.40710190583462,52.85072913291529],[-128.4071518773437,52.85059243698876],[-128.40719670946206,52.850479948840764],[-128.40725180743794,52.850417715660576],[-128.40732273822806,52.85037196776538],[-128.40736907930398,52.850319440189104],[-128.40736487449925,52.85024496744329],[-128.4071747438075,52.850123840178725],[-128.40673694358804,52.8499999484271],[-128.40643362814185,52.849917584635364],[-128.40640306034882,52.849870553174895],[-128.4064206996647,52.849853372936465],[-128.40651380024548,52.84983801023255],[-128.4068592928447,52.84976085643882],[-128.40730236155179,52.84961553857481],[-128.407527467416,52.849466282358165],[-128.40753363061222,52.8492951690888],[-128.40745817835113,52.84909601111529],[-128.40741845967347,52.848820996475546],[-128.40745367598822,52.84848893905132],[-128.4075155481266,52.84833238124969],[-128.40754711375286,52.84833116903984],[-128.40764010610312,52.848346646594926],[-128.40786000591208,52.84838530210268],[-128.40803006298276,52.84839807802791],[-128.40811558660593,52.8483638079681],[-128.40823001904036,52.84828128716382],[-128.40837585147642,52.848161685959106],[-128.40850986713434,52.848030558183126],[-128.40861179038086,52.847907928256696],[-128.4086819489541,52.84781566751498],[-128.40871751327052,52.84777008780436],[-128.40872345659017,52.84775987459158],[-128.408827047122,52.84776559865219],[-128.4091613274339,52.84778677305743],[-128.40970781951725,52.84784228023377],[-128.41023216717417,52.84790103803278],[-128.4104741402723,52.84790223413458],[-128.41051921375472,52.84787664130509],[-128.41054531718538,52.84786097301397],[-128.4105688779348,52.84784983296947],[-128.41063678819398,52.84778397116508],[-128.41077022183111,52.84765901499408],[-128.41088883969138,52.847584819422345],[-128.41107160071525,52.84752612571304],[-128.41144425240103,52.84741980359207],[-128.411778469448,52.84734117978634],[-128.41191672635543,52.84731815769794],[-128.41212366411597,52.84734137380658],[-128.41247446259305,52.84737509844366],[-128.41270544677653,52.847329987851325],[-128.41278150210238,52.84726002846945],[-128.41280355483948,52.84723882760067],[-128.41281330966592,52.847230222220844],[-128.4128317718723,52.84721133763448],[-128.4128415581198,52.84720328775103],[-128.4128796098419,52.84716886815118],[-128.4129609235675,52.8470931942953],[-128.41306539623972,52.84703218600156],[-128.41319466130332,52.84699813453369],[-128.41349611413946,52.84693251281533],[-128.41396678488815,52.846815753991415],[-128.41425190801883,52.84672467694676],[-128.4143006951886,52.846699006228626],[-128.41433656483483,52.846691541230946],[-128.41441185025099,52.846657476861736],[-128.41450831465943,52.84658654050121],[-128.4145891144879,52.84651815968554],[-128.4146711680967,52.84647218721787],[-128.4147746656263,52.84642688603577],[-128.414864453226,52.84638579558101],[-128.41492583770682,52.846352581823055],[-128.4149579602323,52.846328374761676],[-128.41496661886794,52.846316984088865],[-128.41502511008008,52.84629839720048],[-128.4152239847338,52.846228717876606],[-128.4154942194731,52.84610486214354],[-128.41566952235317,52.84599697884689],[-128.41572707810343,52.84594533808836],[-128.4157357364559,52.84593394735607],[-128.41575429223283,52.845916746709946],[-128.41580829110762,52.84585172392869],[-128.41590076694112,52.84574330158499],[-128.4160018370692,52.84562236844985],[-128.416086831126,52.845496724766214],[-128.41615261936144,52.845377073505006],[-128.41620321910383,52.84530147291953],[-128.41621893058877,52.84528320944346],[-128.41623300537898,52.84526889957561],[-128.41625918677107,52.84522183294978],[-128.41630581333723,52.84515808283254],[-128.41635199552903,52.84508649299426],[-128.416410218551,52.845014090246984],[-128.41656179506055,52.84494705910444],[-128.41675775483716,52.84485893159693],[-128.41688577569457,52.8447705246373],[-128.41693649871246,52.84471341749192],[-128.41698129555385,52.844666523667506],[-128.41706863262627,52.844615390426554],[-128.4171810667206,52.84456374051664],[-128.41731086191723,52.84452294574895],[-128.4174634347858,52.844490086914256],[-128.4176167235265,52.84443703935347],[-128.41773991069184,52.84436162094627],[-128.41784308234148,52.84431071721545],[-128.41794944630223,52.84428330317805],[-128.41804318246287,52.84424661383569],[-128.41816719461653,52.84416949157454],[-128.41831103164165,52.84404824054182],[-128.4184046879337,52.84394427664039],[-128.41846560603543,52.843870139800515],[-128.41854517266978,52.843780477270876],[-128.41861474742282,52.84369494938981],[-128.41867131267293,52.84360968941869],[-128.41868500733295,52.84345748037458],[-128.41863600721055,52.84328245097089],[-128.41859545621125,52.84319077731038],[-128.4185859893439,52.84317135463589],[-128.4186086722678,52.84316135219533],[-128.41872286309726,52.843124240914825],[-128.41889703285196,52.84307861025488],[-128.41901354299029,52.84304985591243],[-128.41907339386344,52.843006014833186],[-128.4191367396823,52.84294191893021],[-128.41920056206718,52.842886227148796],[-128.4192770115464,52.84282353860649],[-128.41934926767888,52.84275253139316],[-128.41942192058985,52.84265572682549],[-128.41950454857133,52.84252171487018],[-128.41958188635977,52.84240911590902],[-128.4196475492388,52.842336566912],[-128.41968883108822,52.84229366425096],[-128.41973470325092,52.842249554683036],[-128.41980314527822,52.84217693934099],[-128.41986499505668,52.842102782390285],[-128.41993491421593,52.84202341788154],[-128.42000877207158,52.84194789209731],[-128.42003783916726,52.84191926135342],[-128.4200563427759,52.84190093972012],[-128.42022442367102,52.84191205193218],[-128.420608840187,52.84193215962731],[-128.42088537519055,52.84193655003307],[-128.4209845834736,52.84193057568953],[-128.42108274554653,52.841939208284614],[-128.4211935347781,52.841973360621544],[-128.42128043666574,52.8420130556152],[-128.42144313749137,52.84209323949786],[-128.42170274753244,52.84222523645139],[-128.42186076446941,52.84230495125834],[-128.4220072608774,52.84231258618737],[-128.42241180112165,52.842261067968096],[-128.4229584061806,52.84222120243761],[-128.4235048638073,52.84230971818625],[-128.42403534972505,52.842444533180846],[-128.42454474359042,52.84243738014987],[-128.42523697472075,52.84230815031029],[-128.42594626525653,52.842200998222694],[-128.4264603084482,52.84209562510299],[-128.42682567426783,52.84196081469125],[-128.42697171216417,52.84189500516616],[-128.42697655407704,52.84188200598719],[-128.4269838385224,52.84184653987226],[-128.42685194353135,52.841768534428674],[-128.42662407622012,52.84167120810297],[-128.42670529135773,52.84159440451682],[-128.42701609451498,52.841563312831454],[-128.42719768196318,52.84151750721405],[-128.42723953944562,52.84145217334574],[-128.4272851916124,52.841387873315625],[-128.42739893129792,52.84129414289797],[-128.42753914030789,52.8411589342208],[-128.42768243295274,52.84104496575918],[-128.42782673256966,52.840965170593535],[-128.4279671849151,52.84086695828134],[-128.4281191722826,52.84079149781646],[-128.42825635576315,52.84071745559475],[-128.4283432639764,52.84054466866539],[-128.42838734337568,52.84033856411246],[-128.42841035709753,52.84018727244753],[-128.4284740562141,52.84008055533293],[-128.4285917815513,52.84000804531387],[-128.4286457736896,52.83989423609318],[-128.42864059908132,52.83968915008916],[-128.42863672367437,52.83947394572324],[-128.42863459909103,52.839273281673066],[-128.4286354403494,52.839124699972956],[-128.42863224826186,52.83905243934663],[-128.42853161024416,52.83895136374756],[-128.428301171858,52.838808686803006],[-128.42814474416207,52.83872446253941],[-128.42811125041385,52.83865900004056],[-128.4280991746825,52.838561133811076],[-128.42809546479856,52.83851243959718],[-128.42837590678602,52.838471315048515],[-128.42912262880628,52.83832019428698],[-128.42980559989883,52.83812777953343],[-128.43010607876846,52.83801391831054],[-128.43049621515496,52.83785727823458],[-128.43107047860136,52.83761832609876],[-128.4313546377602,52.83749582920376],[-128.43138706352332,52.83747721728638],[-128.4316131748463,52.837364335865026],[-128.43208025872536,52.83713825480059],[-128.43238673048705,52.83698277599322],[-128.4324373811988,52.83694136063478],[-128.43248830217152,52.836904424762196],[-128.43270059608443,52.83681032395601],[-128.43296891626747,52.836703848963786],[-128.43308282176739,52.83666224375571],[-128.43308241160628,52.83662244239837],[-128.4330816610578,52.8365114514161],[-128.4330932418667,52.83637217291657],[-128.4331341524592,52.836225002742886],[-128.43319830847346,52.836061643908586],[-128.4332723127618,52.83590761625534],[-128.43332691181214,52.8358050133991],[-128.43335979760965,52.83574546017395],[-128.4333926367584,52.835685351748005],[-128.4334247458858,52.8356286222768],[-128.43342331821052,52.83558716454462],[-128.43339326455782,52.8355659270085],[-128.4333753644895,52.83556181290229],[-128.4333971821803,52.83555294661461],[-128.4334492778669,52.835520471009396],[-128.43349317938507,52.835442192779816],[-128.4335325072184,52.83531635944657],[-128.43356516877722,52.8352041106495],[-128.43358426608063,52.83513139675288],[-128.43359898065287,52.83506324984512],[-128.43361508442436,52.834970414954476],[-128.4336273976718,52.83484401126905],[-128.43362925351374,52.834697085154346],[-128.4336560627522,52.834514882078075],[-128.4337526736064,52.834300957405794],[-128.43385254794805,52.83416041329371],[-128.43393361278012,52.83409761841182],[-128.43404451931644,52.8340364562899],[-128.4341506649718,52.8339894042888],[-128.4342185171887,52.83397229948934],[-128.43424336915987,52.833967855222795],[-128.43427925682758,52.83396094853337],[-128.4344192523404,52.833936741286166],[-128.43464545586104,52.8338911191911],[-128.43485599068254,52.83381555600226],[-128.43501801107334,52.83370455256693],[-128.43511874275273,52.83357912224032],[-128.43516238345657,52.833496363468825],[-128.43517039470666,52.83347377166201],[-128.43518032789058,52.83345226126885],[-128.43521024944857,52.83337370704544],[-128.43526623364315,52.83326266012721],[-128.43531919592093,52.833180273027274],[-128.43531928990177,52.8331331772418],[-128.43530061752068,52.833099361007555],[-128.43531091517298,52.83303523432319],[-128.43533431263387,52.83292374204187],[-128.43533684736158,52.83282165279593],[-128.43533294323973,52.83278585275969],[-128.43533183351528,52.832749994753684],[-128.43531518136976,52.83263765582723],[-128.43527500153326,52.832503935472765],[-128.4352215794278,52.832415341088556],[-128.4351731748435,52.832365887479085],[-128.43512689315133,52.83230461186553],[-128.4350526601765,52.83219346728516],[-128.4349921024115,52.83204502771534],[-128.43497049257817,52.831878404860106],[-128.43500959265535,52.83171612913995],[-128.43509187407759,52.83160958693562],[-128.4351364997502,52.831576700199406],[-128.43513317513245,52.83151846245544],[-128.43512482232174,52.83138856690405],[-128.43511651664787,52.83125923549117],[-128.43510758853606,52.831119260304604],[-128.435007638451,52.830981173197216],[-128.43482424874463,52.830945732171216],[-128.43473767230645,52.83094416399883],[-128.43474574722606,52.83092269214141],[-128.43474891940446,52.83091309095681],[-128.43476013477974,52.8308814624143],[-128.43479838638652,52.83078592509492],[-128.435003284978,52.830628059254295],[-128.4354097950742,52.830450312467605],[-128.43571171082752,52.830330233556325],[-128.43587826379067,52.83015242239129],[-128.43575632675126,52.82982472988953],[-128.43510806733426,52.829498430249586],[-128.434538008292,52.82927086475935],[-128.43440294337876,52.829185640599285],[-128.4344568566429,52.82915257038687],[-128.4346394965262,52.82911009366805],[-128.43485334265117,52.829125285127766],[-128.4351210521701,52.82918813022456],[-128.43554113001335,52.82923211545845],[-128.43586349520734,52.82920972850303],[-128.4359702663849,52.82917387429145],[-128.43602407298025,52.829155373282916],[-128.43607510074986,52.829136938887565],[-128.43609303933124,52.82912535375781],[-128.43607909072563,52.82894623760453],[-128.43604537029464,52.82859989509992],[-128.4360281864025,52.828429260156916],[-128.43599336229929,52.828422133851554],[-128.43554564683384,52.82833387240265],[-128.44419584379034,52.823032009883896],[-128.44421717499463,52.82304726377097],[-128.44430301962512,52.823182273854194],[-128.44437554433057,52.823344472334675],[-128.44449165620685,52.82348837842469],[-128.44459518925134,52.82362358501963],[-128.44469682360884,52.8237420026975],[-128.44482997367564,52.82385865149361],[-128.44500649016672,52.823985600727084],[-128.44512260642796,52.82412951509362],[-128.44524050724397,52.82425600763376],[-128.44538772769485,52.82437459630529],[-128.44545963923187,52.82450989585011],[-128.44557563514968,52.82463530646081],[-128.44569278232746,52.824797139495814],[-128.44573679884178,52.824932454982275],[-128.44579306826603,52.82508658608054],[-128.4459551810868,52.825221683145045],[-128.44605736416847,52.8253658869626],[-128.44615853484515,52.82549216212955],[-128.44617287346315,52.825644924306886],[-128.44605216644536,52.82576181175413],[-128.44605198774823,52.82580722335778],[-128.44619724720934,52.82592417446669],[-128.44634584753769,52.826050591248524],[-128.4464462819054,52.82621276288207],[-128.4464469613249,52.82625704427404],[-128.44659281631175,52.826384074137394],[-128.44691547459698,52.8266105771543],[-128.44704797997622,52.8267642306656],[-128.44716411068143,52.82690814275683],[-128.44728161777422,52.82704361185859],[-128.44732532588347,52.827205844161554],[-128.44730768044596,52.82736824332503],[-128.44724664913463,52.82752032512919],[-128.44716922895827,52.82764584651409],[-128.44718446098003,52.827798024690466],[-128.4472119044283,52.82795219084811],[-128.44723829813117,52.828104136290065],[-128.44723738889564,52.82826674256983],[-128.44721916394417,52.82841905307968],[-128.4471431450999,52.82855295032592],[-128.44712827766043,52.828715291381904],[-128.44718613714963,52.82883237691327],[-128.44721434104312,52.828886176039354],[-128.44727263442178,52.828913549171354],[-128.44749608942675,52.82895037805121],[-128.4477152521781,52.82912297229028],[-128.44769855648855,52.829302170893484],[-128.44769676994792,52.82948161474964],[-128.44766559073508,52.82963531664259],[-128.44763470555566,52.82977780843729],[-128.44761749951218,52.82993178405383],[-128.44755593455918,52.83007435035677],[-128.44743504155693,52.83023665037097],[-128.4473297441943,52.83037900698879],[-128.4473112846507,52.830559919571904],[-128.44732559671414,52.83071211665754],[-128.44733880007993,52.83074772267667],[-128.44750183381637,52.83086598808577],[-128.44763329445126,52.831001165818634],[-128.4477350572592,52.831153782002055],[-128.4478219894841,52.83130726350482],[-128.44789529656035,52.83143412707279],[-128.44801131845767,52.83155953472114],[-128.44817390259374,52.83168621380403],[-128.44828908576724,52.83181331613013],[-128.44836381335938,52.83194855497425],[-128.4484200691243,52.832102119666665],[-128.44843296737773,52.832245940860666],[-128.44840176723775,52.83241534117982],[-128.448356222044,52.83257775675081],[-128.44829378361206,52.832721462677384],[-128.44820381830166,52.83285565100731],[-128.44812779464337,52.83298954851085],[-128.4481407070437,52.83313336934531],[-128.4481686073356,52.833295374390936],[-128.4481802251185,52.83344930482293],[-128.44817881587096,52.83361921391391],[-128.44819041675953,52.83377258850891],[-128.4482493469417,52.833908156756166],[-128.4483211591032,52.8340249505774],[-128.44840781655782,52.83420591330752],[-128.44842073027004,52.834349733999495],[-128.44856862886948,52.83451203491954],[-128.4487284462779,52.83463877096934],[-128.4488320198018,52.83477397286305],[-128.44887424142271,52.83492614348999],[-128.44897611474224,52.8350804426148],[-128.4490632779521,52.835205329900326],[-128.4491651202101,52.83535906438073],[-128.44923805880077,52.83551171534534],[-128.4493557360049,52.83566568444087],[-128.4494286156318,52.835800961039546],[-128.4495289452714,52.83594463517314],[-128.44966100688254,52.836089889706855],[-128.44977854718866,52.83622535551446],[-128.4498650752363,52.83638781410955],[-128.4499362681453,52.83655845062404],[-128.4500101480436,52.836711081450105],[-128.4501115150443,52.836856419856694],[-128.4501980285927,52.83701832233834],[-128.45027234956882,52.8371625386177],[-128.45034417274513,52.83727933095926],[-128.4504600936756,52.83745127620598],[-128.45050373149036,52.83759556759722],[-128.45053157932392,52.837756451675986],[-128.45057301380191,52.83792714373599],[-128.45067611825098,52.8380539396633],[-128.4507936671907,52.83818940428519],[-128.45084906466252,52.83836036989918],[-128.45086198734631,52.83850418098172],[-128.45086105977768,52.838666230716846],[-128.45084470154274,52.838818501988314],[-128.45093027401313,52.83896416934852],[-128.45103420691146,52.83908926124424],[-128.4510903735456,52.839224885637776],[-128.45113504568775,52.8393871046677],[-128.45114840884315,52.83952250129668],[-128.45123486736261,52.839683282797324],[-128.45136669401512,52.839872826638484],[-128.45142309691516,52.84004489218637],[-128.45143514697813,52.84020610573289],[-128.45144879215232,52.84031402041444],[-128.45146171796443,52.840457840211435],[-128.4514739085434,52.8406375475055],[-128.45150197026916,52.840737321135414],[-128.45166533439308,52.840828098176246],[-128.4517828941172,52.840963561568635],[-128.4518849760654,52.84108869135529],[-128.45195652977745,52.84123296424666],[-128.45205883588588,52.84137828130588],[-128.4521314652137,52.84155729145963],[-128.45221832581527,52.84169283039834],[-128.45224521679563,52.84183691455181],[-128.4523038411976,52.841998841632346],[-128.45236110752,52.84216975834726],[-128.45244798548035,52.842305305712244],[-128.4525345360246,52.842467761710985],[-128.45260885731201,52.84261142021046],[-128.4526358760873,52.8427739982683],[-128.45272316260755,52.84290056661311],[-128.45281132135,52.84302598641965],[-128.4528522102364,52.84317089925924],[-128.45294177509908,52.84330470371027],[-128.45305806708853,52.843450283879704],[-128.45312973775475,52.843612494107134],[-128.4533355662162,52.8438105902323],[-128.45336352517674,52.84397314842946],[-128.45343461797472,52.84412527897798],[-128.4534769621792,52.84427913142893],[-128.4535052020132,52.84441421672766],[-128.4535485458039,52.84458543263203],[-128.45365005027875,52.84476495968901],[-128.4536944063518,52.84479206495569],[-128.45391529624115,52.8448474333946],[-128.45403273280914,52.844964400448745],[-128.4540628139766,52.845018149577804],[-128.45426916885484,52.845128207874396],[-128.45440100631276,52.84523645948577],[-128.45453297168262,52.84536321394672],[-128.4545629121533,52.84539846919999],[-128.45456145027487,52.84555099431709],[-128.45451339816563,52.84568598758496],[-128.45454178166517,52.84575884286095],[-128.45457189652544,52.84581315628017],[-128.45485376777788,52.84587733994555],[-128.45493945873102,52.8460566403356],[-128.45505744925748,52.8461831212461],[-128.4551434067362,52.846318676894846],[-128.45521774351863,52.84646233339186],[-128.45525936475065,52.846652081328905],[-128.4553626405886,52.84673289698114],[-128.45537664111353,52.84681445791392],[-128.45562662744143,52.846922480394184],[-128.45577398576847,52.84705787292852],[-128.45584590568663,52.84717579006322],[-128.45587661172235,52.84717570408004],[-128.45614452429487,52.84715888818856],[-128.45638110133544,52.84711469504512],[-128.45665007821563,52.847116361389006],[-128.45684126073866,52.84718860912423],[-128.45703291403342,52.84725299772365],[-128.45725660144507,52.847308301619535],[-128.45746320346367,52.84738976112783],[-128.45768266090778,52.84759764734613],[-128.45775484053468,52.847768258298785],[-128.45784187520567,52.84792229520354],[-128.45783950308982,52.84807483941044],[-128.45786730642234,52.84821833795194],[-128.45786493438095,52.84837088213072],[-128.45786469270945,52.84856038405246],[-128.45781702994648,52.84876657636848],[-128.45791790318398,52.848902383021525],[-128.4581835022679,52.84903867074819],[-128.4583313605577,52.84918246385818],[-128.45852154933692,52.84931807782338],[-128.4587294906632,52.849390536953706],[-128.45898084254762,52.84947329066967],[-128.45918676191485,52.84959119883416],[-128.4593637364639,52.84969121610436],[-128.45961494753746,52.849755474770916],[-128.45974821908354,52.84987209575162],[-128.45974591828568,52.850025759738145],[-128.45981879078835,52.850159908721906],[-128.45992007870612,52.850286734788575],[-128.460052704996,52.8504403802621],[-128.46017001002198,52.8506027516712],[-128.4602566068133,52.850765201122776],[-128.46035931923075,52.85090041108551],[-128.46037360580772,52.850954489528945],[-128.46056337204004,52.85109852329614],[-128.46063582841265,52.851306128997344],[-128.46084379737562,52.85137857502323],[-128.4610650059999,52.85148718943791],[-128.46127231499526,52.851596659865436],[-128.4614770861642,52.85167814208676],[-128.46163935024228,52.85181322416302],[-128.46183179150933,52.85192299629133],[-128.46196379964917,52.85204974186624],[-128.46215472390844,52.85214945374198],[-128.46228889730435,52.85218476452907],[-128.46242063327597,52.85233898226895],[-128.4625076620403,52.852492459786454],[-128.46256472236013,52.852626373524124],[-128.462755651123,52.85272609334636],[-128.4629476628935,52.852844286842945],[-128.4631416946541,52.852917021232436],[-128.46333262606706,52.85301674009871],[-128.46353786457465,52.853170536319105],[-128.4635222934563,52.85336820871389],[-128.4633718625722,52.85350255392988],[-128.46338523638227,52.85363738350783],[-128.46344496261815,52.85365631392066],[-128.46359103755614,52.853656057768454],[-128.4638274277101,52.85380135111563],[-128.4639439935979,52.85391831797738],[-128.46425359661106,52.85409067181952],[-128.4643727048801,52.85423561700305],[-128.46438358069594,52.85442376429536],[-128.4644272508701,52.85456749347195],[-128.464500210598,52.85470275908964],[-128.46451423121326,52.85478431852034],[-128.46460157756306,52.854910877072115],[-128.46465923040225,52.85505486890101],[-128.46477541572338,52.855181378334706],[-128.46480378041224,52.85533384262212],[-128.4648461767578,52.85548768987869],[-128.46487501241302,52.8556485493755],[-128.4648441414823,52.85569404847618],[-128.46465044922994,52.85583658670996],[-128.4645745336194,52.855972177263155],[-128.4646154101409,52.856115964892595],[-128.46468934433594,52.85626802910318],[-128.46468833023843,52.85633084214104],[-128.46477632947983,52.85648485372418],[-128.46484791999643,52.85662855290932],[-128.46508387992984,52.85678226701348],[-128.4652156075693,52.8569359167299],[-128.4652431292929,52.857025606744905],[-128.46540576234048,52.85713432150228],[-128.4655685105101,52.857260974127534],[-128.46569868674155,52.85738774513911],[-128.46581558153053,52.85755853375381],[-128.46590162030103,52.85777481228085],[-128.46597471300132,52.85784784752006],[-128.46601946074856,52.85801005000811],[-128.46616503184782,52.85814547654335],[-128.46635601824997,52.858325912908015],[-128.46641366727562,52.858469912836505],[-128.46669423593934,52.8586865912568],[-128.4668095150883,52.85881311775174],[-128.46697227383373,52.858939768298406],[-128.46713461509705,52.85907539764429],[-128.46738696300199,52.8591581224611],[-128.46759359423118,52.85923899941504],[-128.46778550082726,52.85933868200452],[-128.46805217298206,52.859411569140775],[-128.46827239029346,52.85942151878184],[-128.46849617149792,52.85947680949745],[-128.46873361884812,52.85955927949902],[-128.4688938924321,52.85965906897998],[-128.4689528266425,52.85979294024667],[-128.4689961793895,52.8599467658783],[-128.4690685909493,52.86013642683801],[-128.46906436647774,52.860288444727125],[-128.46903314138953,52.86042421986084],[-128.46900208817195,52.860530829087466],[-128.46898612403845,52.86057658097215],[-128.46906258000246,52.86059515708383],[-128.4691072319002,52.86059477472809],[-128.469255808928,52.860540637959794],[-128.4693153666844,52.86054050732916],[-128.46953682639236,52.86058798703706],[-128.4698170103845,52.860669000382465],[-128.46998052203438,52.86076030627969],[-128.47008347417952,52.86093081886898],[-128.47018543624293,52.86100380073238],[-128.47049721090283,52.86106788517749],[-128.47074922470358,52.86109622345161],[-128.47089684637302,52.86110601775491],[-128.47111928464457,52.861170293202726],[-128.4712954499886,52.86128712961013],[-128.4714875760569,52.86148659583936],[-128.47154634764166,52.86150498627577],[-128.4717829066929,52.8615235560095],[-128.47208031259527,52.86151617666136],[-128.47221555903337,52.86148921848718],[-128.47233443627331,52.8613723459383],[-128.4723955610798,52.86123874821919],[-128.47245715587874,52.86104907644124],[-128.47251965205706,52.8609070446159],[-128.47271354331025,52.86073589241743],[-128.47293801624318,52.86067453795084],[-128.47323456430757,52.86068455797943],[-128.47344087674333,52.86077552322236],[-128.473661810065,52.86082973405461],[-128.4738092214519,52.86094829359355],[-128.47386833128525,52.861020488378635],[-128.4739873168994,52.861066197786045],[-128.47405867976985,52.86123737247314],[-128.47423660186575,52.86141639437025],[-128.47444295274596,52.861507922248585],[-128.4746946730312,52.86156316914387],[-128.47494460537658,52.861635828585825],[-128.47518237565032,52.86169136835631],[-128.4752724474469,52.86165583202514],[-128.47534599092418,52.86165596880978],[-128.47559942114498,52.86169267211003],[-128.4757459294681,52.86174733519453],[-128.47575930215416,52.86180143114231],[-128.47580502881434,52.86181952928258],[-128.4759089762676,52.861846491917746],[-128.47613073053782,52.861866486282594],[-128.47619036175544,52.86188373504244],[-128.4763377658981,52.86200172658141],[-128.4765001486054,52.86213734272586],[-128.47675078641828,52.8621741024795],[-128.47687094136813,52.86217549818245],[-128.47713622135325,52.86223998051197],[-128.477224413985,52.862284093484696],[-128.4773303205848,52.86231269999678],[-128.47752045878684,52.8624292238199],[-128.47763829751065,52.862583162249074],[-128.47772318025667,52.86276245491749],[-128.47782663559715,52.86284493433964],[-128.4780359961213,52.86290779542677],[-128.47836032260975,52.86296318059786],[-128.47843400549718,52.86298180926227],[-128.47868737532897,52.86308130826418],[-128.4788934471993,52.86319973634526],[-128.4791142020197,52.863282538260606],[-128.47921785923677,52.86333641501571],[-128.47927783911393,52.863407476559026],[-128.47958696100665,52.8634732708765],[-128.47970724735995,52.863508855680294],[-128.4798226466516,52.86371666519205],[-128.47996872918227,52.86384365055932],[-128.48010067486587,52.86395187235348],[-128.48024865877096,52.86409563651711],[-128.48042544725448,52.86422252924008],[-128.4805724232023,52.864348938871025],[-128.48089686907545,52.86456577975209],[-128.4809975260777,52.864727926802644],[-128.48115925609085,52.86489998785109],[-128.48129237215286,52.86504406475239],[-128.48140868177603,52.865171121057],[-128.48142140626075,52.86534184367666],[-128.48149414386117,52.8655040148584],[-128.48152342570222,52.86557515856278],[-128.4816559675624,52.86569345765442],[-128.48177469514178,52.8657660757648],[-128.48181523850525,52.865918835251236],[-128.4818756592277,52.86598147209312],[-128.48188723660135,52.86611634673537],[-128.4819297053079,52.86627018677604],[-128.4819590604523,52.866422617408126],[-128.48198707126136,52.86650387939009],[-128.48207723522543,52.86654963366068],[-128.48217790087818,52.86671177053834],[-128.48228016653744,52.86683743629077],[-128.48239867786495,52.867018266735776],[-128.4823949335537,52.86716187014495],[-128.48243798316818,52.86734148720662],[-128.48248172743334,52.86748520849594],[-128.48249347840942,52.86763913217658],[-128.48270085570934,52.867747443768614],[-128.48296923699826,52.867784381133056],[-128.48307120462164,52.867856787068206],[-128.48308444933937,52.86789238822443],[-128.48308432791754,52.86793836340891],[-128.4830386482295,52.86800099937296],[-128.48308396945046,52.86802807365075],[-128.4833064447139,52.868091769963115],[-128.4835123993901,52.86819169614001],[-128.48352470061795,52.86837084146056],[-128.48353855938038,52.86856061051475],[-128.48344644373387,52.86872121463875],[-128.48344553238493,52.868865323246304],[-128.48348884849216,52.8690174583135],[-128.4835451577858,52.869153064602955],[-128.48360303379053,52.869315548529094],[-128.4837804836931,52.869469342230204],[-128.4839864281125,52.86956870274435],[-128.48414818720966,52.86967685504001],[-128.4842811943646,52.869722814230244],[-128.48441289140555,52.86985794744154],[-128.48453063521282,52.86999337555625],[-128.48463410074774,52.87015546011422],[-128.48473507709855,52.870290677466784],[-128.48488354636692,52.87042602061781],[-128.4849404496732,52.87057170523235],[-128.48510315170202,52.870679827365606],[-128.48529558351007,52.87077106635148],[-128.48551664554432,52.8709059945677],[-128.4857669617231,52.871095802518525],[-128.4858671015635,52.871312334108474],[-128.4859400777966,52.87136628920838],[-128.48601382590476,52.871465644361415],[-128.4860135671708,52.87149312574156],[-128.48608654389872,52.8715470807444],[-128.48617592344618,52.871690956371225],[-128.48621831543716,52.87184311895197],[-128.4863059918804,52.872005527183454],[-128.48642247607836,52.872151071665485],[-128.48651050360775,52.872303389744445],[-128.48664092929832,52.872448639000716],[-128.48677434570675,52.872565227645794],[-128.48689274609944,52.872584026241036],[-128.4870557522939,52.87266523756164],[-128.4870697890255,52.872746228943875],[-128.487096973715,52.872908804602055],[-128.4871393116333,52.873044139773555],[-128.48715192045682,52.87319636724362],[-128.48721101148047,52.87333135675039],[-128.48722424136292,52.873494218738436],[-128.487250649986,52.87362765741074],[-128.48738309118943,52.87372744680863],[-128.48763697759745,52.8738185026041],[-128.48787150216066,52.87392847342783],[-128.48821077959406,52.874126484467084],[-128.48843410109953,52.87423612630551],[-128.4884780777617,52.87427163221203],[-128.48851963265037,52.8743615760447],[-128.48875720163605,52.874444004811856],[-128.4889351379349,52.87458936668033],[-128.48905247762264,52.87473321310241],[-128.48916814415654,52.87491241074494],[-128.48928562741193,52.875074750563854],[-128.48931458031913,52.87515599081674],[-128.48950539742253,52.87528257336852],[-128.48968391851403,52.87537410024164],[-128.48974022345544,52.8755091475529],[-128.48978345455967,52.87570725463129],[-128.48994574220592,52.87582379326507],[-128.49015190747443,52.87594220961392],[-128.49037402088183,52.87601487125277],[-128.49052185602847,52.876043134143245],[-128.49068316505367,52.876142873317384],[-128.49074420558878,52.876151671116816],[-128.49100901645252,52.87626995532731],[-128.49108307975052,52.87642200098989],[-128.49121426858338,52.876531913324676],[-128.49124386261553,52.87657613723649],[-128.49145000212582,52.87669398682674],[-128.49162671840824,52.876802368373674],[-128.4918318854794,52.87698302972599],[-128.49195138079247,52.87702029693133],[-128.4920093377173,52.87705607025448],[-128.49217242981672,52.877218005296896],[-128.49225950526431,52.87735351123622],[-128.49237729470477,52.87748893085267],[-128.49237646466793,52.877570245870025],[-128.49255212018244,52.8777240560161],[-128.49266895657686,52.87785893940821],[-128.4927726481451,52.87797615203121],[-128.49287338198823,52.87813828754169],[-128.49294788600346,52.87828190861585],[-128.49305027669843,52.87840868397406],[-128.49309239964737,52.87857149749169],[-128.4930901194746,52.87872348397565],[-128.4931031820263,52.87886728703129],[-128.49314657579424,52.8790199820076],[-128.49333906247028,52.87911120734787],[-128.49342654424743,52.87923774252319],[-128.4934987938813,52.87939038130771],[-128.49360106113636,52.87956257517583],[-128.49367278758388,52.879706254700324],[-128.4937467894333,52.879777567762304],[-128.49377600790737,52.879958595288535],[-128.4937730336908,52.880066866481066],[-128.49371336635332,52.88012923784723],[-128.49381620646,52.88032720880402],[-128.49387184560624,52.88049814026788],[-128.4938722392931,52.88063212941603],[-128.49386961378846,52.880794205655896],[-128.49395533383972,52.88093815315239],[-128.49404377628485,52.88106522361178],[-128.4941045054287,52.88110038098242],[-128.49416148630465,52.881119354818296],[-128.49443015415056,52.88111196655957],[-128.49453489271863,52.881103581001604],[-128.49478634192337,52.88116776318767],[-128.49509742577362,52.88116900841449],[-128.49532113041266,52.88120462517761],[-128.49554226304306,52.88125991406549],[-128.4956884376502,52.8813868788072],[-128.49585095577478,52.88152246655752],[-128.49596873560532,52.88165732675776],[-128.49616080948655,52.881756961596956],[-128.49627906909575,52.881883962345235],[-128.4966469731121,52.88209198990136],[-128.49691249041413,52.88223716621408],[-128.49701455197822,52.8823897347122],[-128.49707341990828,52.88255219105271],[-128.49736381056712,52.88308984237852],[-128.52106662429836,52.883035131025814],[-128.522311207318,52.88161185982663],[-128.52299281931914,52.88052639163561],[-128.5236150240117,52.87920896369735],[-128.5239880260515,52.87802358980457],[-128.52416727238187,52.877057099764095],[-128.5246614783619,52.87595378061838],[-128.5247415349893,52.87458631538666],[-128.52500203411512,52.873027713926],[-128.52522500425985,52.87149570649921],[-128.52586873383808,52.869649657141515],[-128.52624094776647,52.867479774772384],[-128.52647831893486,52.86561105561556],[-128.52715039914258,52.86369597964238],[-128.52755327901306,52.86158989374639],[-128.5279997886685,52.85927879358106],[-128.52863408426816,52.85720023369838],[-128.52938977386648,52.85509831226366],[-128.52967875087396,52.85308324972785],[-128.52993805098598,52.85063149816221],[-128.53043668226732,52.848042277555976],[-128.53086764767414,52.84548982495511],[-128.5310741783156,52.84342044542736],[-128.5312726372496,52.84077655951502],[-128.53158254709697,52.83769126821505],[-128.5320497473452,52.834655270425],[-128.532518731632,52.83208907404937],[-128.53272424584313,52.829691705756524],[-128.53314724601495,52.82661907774527],[-128.53364510238313,52.82363341102252],[-128.53400816886793,52.82146362086957],[-128.53418391366498,52.8188022356917],[-128.5340666988133,52.81607708329023],[-128.53419705560393,52.81338751339944],[-128.53449280512228,52.810712307368306],[-128.5345877813182,52.8090714016284],[-128.53492928866032,52.80726144045321],[-128.5351279068042,52.80520618724915],[-128.53512474230433,52.80333751674897],[-128.53518920123219,52.801746592215586],[-128.5352111664333,52.80095836635368],[-128.53531501328425,52.800515983276256],[-128.53573655127704,52.79980489914421],[-128.5365519454712,52.79846462639959],[-128.5373277084832,52.79631781136306],[-128.5383964327787,52.793879262644175],[-128.53943539300215,52.79128603693443],[-128.5403312106297,52.78813183646378],[-128.54122697895264,52.785228817977384],[-128.54203271602046,52.78251668420032],[-128.5433123092333,52.77912086577076],[-128.5449593592876,52.77508290620315],[-128.54617836540294,52.77147304792439],[-128.54715574434601,52.76808203584404],[-128.54809603454058,52.76477255147224],[-128.54854915753984,52.761486536324],[-128.5490084395758,52.75841400795507],[-128.54949757150928,52.75599852737438],[-128.5501140338751,52.753026285875556],[-128.55071641400542,52.74927497105632],[-128.55124355457136,52.74661303896735],[-128.55209320489922,52.74279351207952],[-128.55285243395483,52.73923385362942],[-128.5534838792782,52.735774537638825],[-128.55407794059073,52.7322190159068],[-128.55503244383118,52.72898307249383],[-128.5562867812733,52.72502228616784],[-128.55742000678023,52.721631004911856],[-128.55844831171856,52.71876851222709],[-128.55930420888745,52.71510401413275],[-128.56011535869558,52.71225968429807],[-128.5606179708853,52.70889557849862],[-128.56107671407497,52.70668975313149],[-128.56216431366644,52.70450212121968],[-128.5614744043291,52.702628705609975],[-128.56052247884324,52.70086923384128],[-128.55998883048434,52.69980768250489],[-128.55954792758902,52.69927286809453],[-128.55881889249406,52.69829239991021],[-128.55823978003195,52.69712025474324],[-128.55754860584724,52.695701584845],[-128.5567366995727,52.693704645516874],[-128.55631535526666,52.692067559370074],[-128.55573607875553,52.689896744081494],[-128.5553749369221,52.68793142779504],[-128.55514078423568,52.686120903984786],[-128.5549225135796,52.68445190001659],[-128.55471901570627,52.68348067548767],[-128.55464365323544,52.68297878620311],[-128.55439648046683,52.68259559409658],[-128.5553790023112,52.68209919910421],[-128.55726142019114,52.68110537180779],[-128.55922632824303,52.67991121646411],[-128.5610107180691,52.67828864788215],[-128.5626224692282,52.67632329639498],[-128.56435331971664,52.673811391408364],[-128.5657685774989,52.67113927740094],[-128.56672661851792,52.66861791594861],[-128.5677807413045,52.665243791418774],[-128.56844623910015,52.66242098252954],[-128.56926800666494,52.65947136463626],[-128.5705023937013,52.655928363843984],[-128.57144440625314,52.65352055600222],[-128.572746343606,52.65083060218419],[-128.57344217563266,52.64926201180569],[-128.57381634746378,52.64861451916289],[-128.57550757237834,52.64584248184332],[-128.57643487900236,52.64372203470361],[-128.57780409570682,52.64160639772159],[-128.579075433592,52.63931290170612],[-128.58017389512818,52.63654936964893],[-128.58138482845575,52.633503511850655],[-128.5825272277637,52.629937641326435],[-128.58366973382772,52.626622399428996],[-128.58487186543036,52.623316474222186],[-128.58593080645875,52.6200793092668],[-128.5864893533969,52.61711059411217],[-128.58679315631153,52.614506958060666],[-128.58704341123564,52.611583752523934],[-128.5875349757273,52.609363437504285],[-128.5881162236078,52.60726561849775],[-128.58886914786117,52.60483986056005],[-128.59064971239488,52.60349937518793],[-128.5946410089049,52.60288809671879],[-128.59832580596563,52.60317513110208],[-128.60064113978504,52.603626029396445],[-128.60105870076285,52.603814119256356],[-128.60167197561748,52.604162713860795],[-128.60229462600836,52.604314825522515],[-128.60274421544406,52.604313775564876],[-128.60306511750827,52.60435709056523],[-128.60362554506804,52.60442926587713],[-128.60417221433397,52.60444231231515],[-128.60507878747336,52.60444003127576],[-128.60595274903008,52.60455566862642],[-128.6082752947463,52.604955231537616],[-128.61086077432432,52.60531129289928],[-128.6114430980612,52.60543846288554],[-128.6132604173218,52.60563836742556],[-128.61442481778013,52.60584278196539],[-128.61576186801435,52.60607134694717],[-128.61729337629527,52.60628713056816],[-128.61845791427942,52.606523462401874],[-128.61994723124877,52.60663866169646],[-128.62138950128613,52.60683172069037],[-128.62218052602805,52.606996771294476],[-128.6233984123339,52.60719708831875],[-128.62551825831252,52.60759020955259],[-128.62655596392526,52.60783940835512],[-128.6276148826337,52.60810213577221],[-128.62848001593844,52.60831314757259],[-128.62922515004934,52.60852853329109],[-128.63121227038667,52.60889818106292],[-128.63375112953474,52.60892449927119],[-128.63628163533403,52.60901038491059],[-128.63731441025405,52.60907230010201],[-128.639038005298,52.6090675671228],[-128.64008980477414,52.60909257249341],[-128.64244507959307,52.60915762173688],[-128.64363097284777,52.60900123105641],[-128.64477880733628,52.60891803594647],[-128.64633253666366,52.6087095523521],[-128.64701504365266,52.608673327476886],[-128.648017963407,52.60871620205414],[-128.64895371185185,52.60874993264049],[-128.65073480541506,52.608867086257284],[-128.65361368241176,52.609228454794945],[-128.65448273320192,52.60921598587342],[-128.65588394265956,52.609175148277885],[-128.65596641267223,52.60916205653924],[-128.65712026004672,52.60916104329642],[-128.66647553443883,52.60878962009134],[-128.66716607065405,52.608748607416594],[-128.66763869524877,52.60871537814405],[-128.6698001370801,52.60846016697725],[-128.6705051108171,52.60842834217784],[-128.67164382475264,52.608422479535484],[-128.672281290226,52.608376486512014],[-128.67331052512012,52.60817290557465],[-128.6742491632152,52.608074585514004],[-128.67506071271072,52.607897284842984],[-128.67614912968264,52.607767477676624],[-128.67625338663376,52.60777742537343],[-128.67698950586424,52.607681472831565],[-128.6781975318082,52.60757077025657],[-128.67922526869654,52.6074770952547],[-128.68093536710134,52.60736044930556],[-128.68188677506305,52.60734869271897],[-128.68247208468296,52.60729766824286],[-128.68325926328274,52.607234159271215],[-128.68424916995264,52.60717214840162],[-128.68509567921672,52.607154926115115],[-128.6858320621533,52.60700451815681],[-128.68676186590753,52.60698761067093],[-128.68809835506167,52.606786363663424],[-128.68887904959723,52.60666407733353],[-128.68944294754908,52.60656696881224],[-128.6901944779483,52.60640776728961],[-128.69104983248184,52.60628094620891],[-128.69172632028005,52.60619412504125],[-128.6924619406309,52.606061637451916],[-128.69298867274094,52.60593284211931],[-128.69368023333223,52.60579126855172],[-128.69413964587562,52.60560738470962],[-128.69518599223284,52.60528095718036],[-128.69598819974644,52.605222056812856],[-128.69638628183904,52.605151740306646],[-128.6973460811074,52.605112178966195],[-128.69881676111922,52.60495705662116],[-128.6996271541392,52.6048665368155],[-128.70004059405932,52.60480538164041],[-128.70188150621044,52.60438817365869],[-128.70240276922792,52.604158516496284],[-128.7031013998388,52.604012800787864],[-128.7038594052061,52.60389878856043],[-128.70491107517785,52.603731981372796],[-128.70673581212878,52.60345582685477],[-128.7074406600865,52.60336489930502],[-128.70788403948498,52.60329460476467],[-128.70881441646316,52.60320011508981],[-128.70951279267376,52.60309474402618],[-128.71432073858367,52.60261852608351],[-128.71477584954755,52.60257317297497],[-128.71514106806913,52.60252542242897],[-128.71558872073388,52.60249369898007],[-128.71629367193418,52.60243411104873],[-128.71720191282634,52.60231202826806],[-128.71785516075826,52.60222503746666],[-128.71834989731678,52.60219165075556],[-128.71904119070214,52.60207740472306],[-128.71979751735464,52.602054742722565],[-128.72095140524786,52.60205701470026],[-128.7215739056597,52.60201053255874],[-128.7226616418831,52.60190328933903],[-128.72370476294898,52.60176399347985],[-128.7246655258971,52.60160977716241],[-128.72512318317388,52.60159012110022],[-128.72614341359122,52.601454702318044],[-128.72668423663805,52.60138991079058],[-128.72712009500532,52.60126028045564],[-128.72853249492232,52.600963127698165],[-128.72959121059122,52.60083687319414],[-128.73041515922608,52.60080133525806],[-128.73143517840612,52.60070680921873],[-128.73332676870655,52.60039502741078],[-128.73400996528594,52.60035771674572],[-128.7347513624569,52.60034820092003],[-128.73563575411865,52.60030335831649],[-128.73658236541604,52.60013143656379],[-128.73721202225448,52.60005274015737],[-128.7378648128871,52.59998863524553],[-128.73871300707023,52.5998840588802],[-128.7392465574508,52.59983620333476],[-128.73944739579773,52.599808501082244],[-128.73948133305637,52.59980377440781],[-128.74175529923755,52.59968589482959],[-128.74238976671228,52.59959584075594],[-128.74315958918012,52.599351181425895],[-128.7440474364482,52.59921590591904],[-128.74609276866983,52.599010210515196],[-128.74750273730578,52.59896693601606],[-128.7489363819301,52.598860274999474],[-128.7496603946645,52.59865198651909],[-128.75062431795408,52.59827539302051],[-128.75160303023063,52.5979853742086],[-128.752476635867,52.59784532602209],[-128.75323079871035,52.59773275583545],[-128.75433477176466,52.59769381550548],[-128.75493129492975,52.597676372509405],[-128.7550467669257,52.592862904326914],[-128.76599980456504,52.59285675524154],[-128.773922550294,52.59285210914261],[-128.77949482916188,52.59284852305203],[-128.79224889010317,52.592839071004946],[-128.8016803061475,52.59283119861739],[-128.85690719705872,52.59291013792722],[-128.8572571601811,52.592206108145476],[-128.85802757456165,52.58945418915675],[-128.85822891858032,52.588019625273624],[-128.8584430273515,52.58616578911189],[-128.85871735556918,52.58448041940818],[-128.85878259024423,52.582836056086656],[-128.85923393663748,52.57928315898203],[-128.85943330107716,52.577597927751775],[-128.85978254715815,52.57581703787113],[-128.86015208273258,52.57373053602501],[-128.86035063511162,52.57188154221145],[-128.86046271630448,52.570441854890596],[-128.86064177093417,52.56774585877816],[-128.86084202547607,52.56626979515419],[-128.8609615310876,52.56481701425674],[-128.8612859633807,52.56148758580768],[-128.86130083736933,52.56019890596853],[-128.86155855235629,52.55818521968989],[-128.8617953149073,52.55652315869593],[-128.86249495195935,52.55333368632255],[-128.86308130594466,52.55130181927236],[-128.86356654387143,52.54993034035064],[-128.86382019031927,52.54849556343428],[-128.86448097432333,52.54510172720228],[-128.86469643486984,52.54356635686412],[-128.8648140651811,52.54194981309348],[-128.86488187558749,52.54084714469569],[-128.86488853591393,52.539353918688825],[-128.86477684672502,52.53821975492851],[-128.86512372186232,52.53105100629074],[-128.86531583672368,52.529374848168445],[-128.86570691134312,52.52728883511284],[-128.86610280669726,52.52594026787561],[-128.86643037456426,52.52455074203174],[-128.8666770887807,52.52332026020828],[-128.86705703476068,52.52181670621122],[-128.86805379316218,52.51855472136358],[-128.8683961726758,52.51696009447519],[-128.86960039177143,52.51223071966337],[-128.86983414822245,52.51127873848671],[-128.87026498544213,52.509738560791504],[-128.87061547192343,52.508253648996096],[-128.87121256249773,52.50570649243962],[-128.87152753698595,52.504672286471866],[-128.8718654627094,52.503788389276735],[-128.8722727257554,52.50312714789545],[-128.87258273779017,52.502489052226906],[-128.87269577879093,52.50152825011146],[-128.87275353727003,52.50119084273828],[-128.87282536270703,52.500607980057524],[-128.87284495757098,52.50029339343721],[-128.8728900397086,52.499807664676716],[-128.87289933147537,52.49969806463778],[-128.87294750011327,52.49960376696997],[-128.87308499580817,52.499271687628486],[-128.87332651174768,52.498962842543],[-128.87373106973237,52.497889392971004],[-128.8742617746824,52.495900236779356],[-128.87485739234538,52.49433071294723],[-128.87531992403694,52.49339380260041],[-128.8756488516199,52.49248823456345],[-128.8759493832758,52.49126870390471],[-128.87620652548856,52.48999414361118],[-128.8766619243775,52.48900691791759],[-128.87792117526317,52.484683742631425],[-128.88039876115047,52.474555819913974],[-128.88076063831866,52.47315411316792],[-128.8810442717905,52.471314593657326],[-128.88148610745554,52.4692894075709],[-128.88210130854887,52.46788366799557],[-128.88289558440925,52.46554459991529],[-128.88323219369133,52.46453894921073],[-128.88386823125362,52.46242759795925],[-128.884275723297,52.4609529430424],[-128.88487773009962,52.458349368989445],[-128.88572877281908,52.45550009810635],[-128.88627086159417,52.45391663268198],[-128.8866333288515,52.452377997464346],[-128.88721479965554,52.45055795676075],[-128.8890406563618,52.444983568505435],[-128.88948920614,52.44386459749867],[-128.88981813752676,52.44279066115],[-128.89030956503603,52.44095149898758],[-128.8906836662795,52.43985063122111],[-128.89110899487056,52.43890891305825],[-128.89151188837158,52.43792175386847],[-128.89194492698994,52.436807071875705],[-128.89231921662133,52.43573760099882],[-128.89341076172374,52.43338144934746],[-128.89368598987284,52.432525911582495],[-128.8941425747615,52.431310781799446],[-128.8948096713099,52.429909785426275],[-128.89551678451346,52.4280354779768],[-128.89680779689468,52.42492376826041],[-128.89735237885662,52.42393696267672],[-128.89807211083786,52.42243140948442],[-128.89946939894122,52.41904213710549],[-128.90035644028444,52.41704044426483],[-128.90143510191152,52.41434230758998],[-128.90231056289954,52.41281430549108],[-128.90270006420116,52.411594622565126],[-128.90322408153736,52.41025264615116],[-128.90354472364217,52.40932412576346],[-128.9039544443717,52.408282300630134],[-128.90452414545047,52.406894860773875],[-128.9051450572958,52.405516232262],[-128.9055033937668,52.40443754618624],[-128.90571558597858,52.403950944666214],[-128.9065216025321,52.402709589501015],[-128.9071013374667,52.40189628981706],[-128.90756124978256,52.40112300813717],[-128.90797664054904,52.40041366489172],[-128.90842541577754,52.39980333302506],[-128.90874984316838,52.39917928410661],[-128.9092064246179,52.39846665917651],[-128.9096191332789,52.39792286017349],[-128.90980290357163,52.39756204690262],[-128.91005846752014,52.396927941913695],[-128.9104042386007,52.39637515326427],[-128.9107739763521,52.39595919186112],[-128.91129070010055,52.39530619665248],[-128.91172637625291,52.39480331346405],[-128.91213258416568,52.39434156482912],[-128.91321229159442,52.39329915780438],[-128.91399775444805,52.39263154396733],[-128.91547486439794,52.390917775681935],[-128.91815935195095,52.38748235174638],[-128.91993270622027,52.38549852740858],[-128.9209976085986,52.3844883824024],[-128.92195879783324,52.38361938896105],[-128.92289015196255,52.38269110942193],[-128.92368772028564,52.38175890152651],[-128.92765507693196,52.377631192965644],[-128.92963590787434,52.37565149306827],[-128.93040609862896,52.37506547536098],[-128.93141297894556,52.37429228638305],[-128.9322179477675,52.37344676454046],[-128.93392435935556,52.37175495818318],[-128.93476091378253,52.37106401028182],[-128.93863812784693,52.367911974301656],[-128.94200587407886,52.365339846339516],[-128.9431957805596,52.36430160487256],[-128.94705708079698,52.36116310764871],[-128.95200822243,52.35750138749574],[-128.9528298667091,52.35686957475345],[-128.95515332613883,52.355194222038726],[-128.9563537154437,52.35445175675288],[-128.9574341193696,52.353650618229445],[-128.95897311423536,52.352561211080285],[-128.96214281483503,52.35059597138537],[-128.96325449051196,52.34994488386951],[-128.96558706864082,52.34853384927774],[-128.9699428517159,52.34598097668286],[-128.97114913640146,52.34519779746835],[-128.9752515063529,52.342727488361476],[-128.9800010980401,52.34024655790885],[-128.9826245055809,52.33890677638553],[-128.9841062896663,52.33816348668521],[-128.98637334773383,52.33699378349214],[-128.9930582666909,52.33378080406584],[-128.99374004154558,52.33342772372428],[-129.00168771616853,52.32941358139882],[-129.63158949604681,51.98934621540206],[-129.63165632846273,51.98932669673295],[-129.7033826955361,51.95010107803019],[-129.84802516851366,51.22938080102334],[-129.7084518691872,51.1497920793792],[-128.51015794216093,51.162322942706254],[-127.78919233803991,51.163730139475156],[-127.7041998503823,51.18444434253508],[-127.6897745383358,51.18483796850796],[-127.67696577675903,51.185347749934536],[-127.66983517412928,51.18758677723008],[-127.66327389110688,51.191011853894366],[-127.66161060275392,51.18982459606671],[-127.65683118779057,51.18764084276041],[-127.65026508656587,51.18672619713108],[-127.64388975817577,51.18626524443072],[-127.63853715713557,51.18682797295972],[-127.6325590659448,51.18779180829999],[-127.62722230740354,51.18903904296601],[-127.62207104125947,51.190567910221525],[-127.61898854201951,51.19098987141146],[-127.61679940220485,51.19067045695579],[-127.61397960386986,51.19063615721728],[-127.6112653242897,51.19128835518365],[-127.6083332490932,51.19028175741856],[-127.605026226241,51.18870739120069],[-127.60172379147848,51.18725352640495],[-127.59925796533811,51.18670029890265],[-127.59802416383734,51.188536191536926],[-127.59441666007943,51.18999646080576],[-127.58789737224518,51.19136066086164],[-127.58418399153375,51.19207788044313],[-127.58101771688072,51.192849618536165],[-127.57731448633159,51.194135566181124],[-127.57381359125625,51.19633561274263],[-127.56894453393737,51.19837216078536],[-127.56721780623533,51.19844160001704],[-127.56439769138319,51.19840998478873],[-127.56011919287417,51.19815937165803],[-127.5554841404271,51.19836249082219],[-127.55186018235938,51.19908132835135],[-127.54923659624977,51.19972851868387],[-127.5453262569349,51.199815764019306],[-127.54178015305374,51.199845146983186],[-127.53705005655799,51.1997670689793],[-127.53406131615873,51.200246580823055],[-127.53008434306558,51.20164914954096],[-127.52844664238634,51.201656166336456],[-127.5242623865372,51.201517973726155],[-127.52097865678826,51.20102796042187],[-127.5169701616416,51.20065814507168],[-127.51395446541186,51.199883162158756],[-127.51158307327248,51.19961747910735],[-127.51013226866506,51.19979851832343],[-127.50787994495492,51.200901095438745],[-127.50581572293474,51.20240351423769],[-127.50339685466746,51.204306273293774],[-127.5019614870117,51.20539841125806],[-127.49972348750917,51.20736264550547],[-127.49737985107295,51.20840560622185],[-127.49484576324998,51.20916929922173],[-127.49239743922641,51.20952941743815],[-127.48885148218135,51.209612124424645],[-127.48556859660775,51.20917943796423],[-127.48327379791161,51.20805294458861],[-127.48098238266154,51.20715813561393],[-127.47731400033271,51.20552309825296],[-127.47410206628645,51.20400546176587],[-127.47181940916892,51.20344371304527],[-127.46719370344213,51.20417116736471],[-127.46483459786583,51.20435612291834],[-127.46282985295728,51.2043703136165],[-127.46147189031316,51.2046067631443],[-127.45892443689077,51.20456730347914],[-127.45647021024469,51.20458438423531],[-127.45512049272588,51.205455936562785],[-127.45513886835809,51.20647989677295],[-127.4564392922543,51.20789757922771],[-127.46038805395706,51.20998703604118],[-127.46287120712162,51.21162505325486],[-127.46417129332899,51.213047703826746],[-127.46602769814514,51.215091659180366],[-127.46649042347498,51.21548579597557],[-127.46869403524603,51.216727734682394],[-127.47063021224058,51.21808703096134],[-127.47502250640714,51.21953773153236],[-127.47932757342934,51.2209972527366],[-127.48262430015801,51.222114609887676],[-127.48391947632125,51.2234153091609],[-127.48368544933973,51.22541794214012],[-127.47979071139227,51.22636411538057],[-127.47733151480507,51.226268902058564],[-127.47359148992368,51.225891220968606],[-127.46796645925195,51.22673494551137],[-127.46316668147298,51.22791059984426],[-127.4581741516177,51.22862779753912],[-127.45935973185708,51.228902627422016],[-127.45281789560225,51.2293522496411],[-127.44754503157993,51.22967187641658],[-127.44226660365851,51.229712420208855],[-127.43826000967375,51.22962374529765],[-127.43170358200388,51.22926981840978],[-127.42642757879815,51.22930061330087],[-127.42206302419761,51.22961488181281],[-127.41669417344055,51.229657056990085],[-127.41531947851914,51.22903620695219],[-127.41321360305761,51.22824547152606],[-127.41129367887595,51.22769256301585],[-127.40901178912601,51.227364120508064],[-127.40594019802381,51.22863585845923],[-127.40368665000989,51.22996693917148],[-127.40069096014834,51.23044631647034],[-127.39506023310688,51.23111080919459],[-127.38978514262949,51.231319457340135],[-127.38705609284258,51.23116330175432],[-127.38338749953328,51.229585894796394],[-127.3840057572978,51.228436882992305],[-127.3839854318419,51.22718288567037],[-127.38395165454476,51.22506763948545],[-127.3832819327626,51.22301517100427],[-127.37870582420402,51.221499220567395],[-127.3754109264736,51.220264917729416],[-127.37138615013396,51.21903265487048],[-127.36681367620191,51.217403936279695],[-127.36279209891082,51.216288614254225],[-127.36097229181375,51.216069804974175],[-127.35779774844832,51.21671800210533],[-127.35589849618835,51.21747483824238],[-127.35063982428552,51.218702835112126],[-127.34746329123541,51.21911956204985],[-127.3449152762818,51.219082576367086],[-127.3410640317183,51.21715748130884],[-127.3366646234225,51.215133795795694],[-127.33372763356715,51.213205487339536],[-127.33080796811686,51.21271128200443],[-127.32596189718949,51.21108527893198],[-127.32176513798788,51.21013723118878],[-127.31967140765236,51.21014823981222],[-127.3178662409058,51.21106889168619],[-127.31598188401381,51.21285521055819],[-127.31381571830015,51.213841717915884],[-127.31009185273557,51.21431706726126],[-127.30709706921064,51.21473167542383],[-127.30536770661263,51.214743246624096],[-127.30309376065027,51.21475547071938],[-127.29999566502566,51.21449092528916],[-127.29689700702538,51.214052902515974],[-127.29215500019846,51.21316165669167],[-127.28778047740532,51.21267343034968],[-127.28432070027306,51.212344681440705],[-127.28159436213036,51.212474407882965],[-127.27858841059248,51.21231991127548],[-127.2735045468857,51.2129783534997],[-127.27068149256257,51.21270486060878],[-127.2671259033833,51.212152751320446],[-127.26568409119496,51.21313413118708],[-127.2664247235751,51.21410227270014],[-127.26742718989082,51.21432672427687],[-127.26870153881482,51.214379762569784],[-127.26962682343894,51.21556803346943],[-127.2703664857624,51.21624771663904],[-127.27048493559204,51.21825594398225],[-127.26785976133854,51.219180492044124],[-127.26369886664251,51.22091790750502],[-127.25714742974448,51.220950577830145],[-127.24922718999701,51.22047724611878],[-127.24149237393715,51.22028470806732],[-127.23675439585728,51.21996966091018],[-127.23502696487803,51.21986397533197],[-127.2321891392742,51.218678350250556],[-127.22897054866215,51.215836310660166],[-127.22758445598564,51.21430255852276],[-127.22574458296643,51.212485828351994],[-127.22054466520173,51.211363114881],[-127.21899196698064,51.21092084338673],[-127.21605775966162,51.20922070014846],[-127.21422166263709,51.20774549588225],[-127.21374510708917,51.20597451064325],[-127.21344834681148,51.20403100210756],[-127.21315664205748,51.20266431084902],[-127.21222392236537,51.200777561566824],[-127.21075357658047,51.19953013593497],[-127.20674763840805,51.19920767923934],[-127.20413153855941,51.20070362735419],[-127.20124466548293,51.202722034537935],[-127.1999051994304,51.2047811735566],[-127.19728641392172,51.206164743317586],[-127.19465388850841,51.20657869742091],[-127.18946354281073,51.20609025878061],[-127.1811783565195,51.20550155052081],[-127.17698992687662,51.20506266609196],[-127.17125233476683,51.20428448722938],[-127.16742849116837,51.203909365529874],[-127.16754407704971,51.20602151683532],[-127.1674651841174,51.207107066039526],[-127.16447625970429,51.208148565059],[-127.15748229572787,51.20892525948612],[-127.15348969724563,51.209854416962],[-127.14868835904304,51.211413411083115],[-127.14434110079262,51.21308825018079],[-127.14116496166504,51.21385212228648],[-127.13663627510796,51.21552793089903],[-127.13191392559125,51.216227397520626],[-127.12648525608752,51.21917101539832],[-127.12230806218805,51.21969910185366],[-127.11731336109233,51.220459569295954],[-127.1114035864951,51.2208876481304],[-127.10021824560398,51.221502690582895],[-127.09469254564999,51.22363764387879],[-127.0893284886212,51.22416869182708],[-127.08514376154305,51.224132069332356],[-127.08196955527872,51.225231483227894],[-127.0822559773902,51.22643126251782],[-127.08626688699749,51.22755603414916],[-127.08954907216895,51.22800477823862],[-127.09083157276997,51.22896598279101],[-127.08875207913967,51.23028395439185],[-127.08248292133723,51.231286314566425],[-127.0773884381632,51.23119133672951],[-127.07411560857967,51.23154008839235],[-127.07112025745013,51.23247194202348],[-127.06684592875237,51.232653213735595],[-127.06266273923633,51.232899115011094],[-127.05648153545614,51.23360797057624],[-127.0525755393496,51.234476564771306],[-127.04757672128852,51.23518009005165],[-127.04330585312265,51.23605567263232],[-127.03939096744908,51.23572419036263],[-127.03893531780194,51.23555330615573],[-127.0357304891619,51.23339205965736],[-127.03380792974268,51.23202647377085],[-127.03016118945543,51.23118495829745],[-127.02425248980492,51.231830652207584],[-127.01981364085783,51.234017104397914],[-127.01681819526338,51.23488353690307],[-127.01173054016078,51.23615693226481],[-127.00946481924719,51.23736228605576],[-127.00602359236606,51.239256462729536],[-126.99975400473684,51.24053308346887],[-126.99375758869864,51.24169752771628],[-126.99039190429984,51.24216417815907],[-126.98747598619376,51.24166110684224],[-126.98410008131192,51.240297838529656],[-126.98272815518256,51.23961790444238],[-126.97907431911575,51.23791012776559],[-126.97479026056223,51.23695283943184],[-126.9723287021403,51.23638598148244],[-126.96677207093566,51.235204222867246],[-126.96240880397173,51.23618693954692],[-126.9587639011064,51.235173668112864],[-126.95611451326056,51.23415185484562],[-126.95011764740333,51.2351389329798],[-126.94576878627448,51.237946765780656],[-126.94204563841451,51.23927011054877],[-126.9371318368563,51.239393427771724],[-126.93258566208326,51.240038147605624],[-126.92932320099074,51.24215909355685],[-126.92386669010405,51.242920357965055],[-126.92077910050962,51.24378215949624],[-126.92052140222823,51.24686588396983],[-126.92008977857456,51.25029609931205],[-126.9202991363653,51.254635680814495],[-126.9193126141421,51.25703625796568],[-126.91486767381194,51.25990419297799],[-126.91333564161602,51.26230742422888],[-126.91335275932259,51.26487712564269],[-126.91528969592187,51.2688738914058],[-126.91740572869412,51.272580746139525],[-126.91606153088627,51.276014312692276],[-126.91380539956016,51.27973351801054],[-126.91172460942116,51.282139988113265],[-126.90919499370086,51.28493715998722],[-126.9034780052409,51.28929825511755],[-126.90003118543177,51.29164466746915],[-126.89713034590797,51.29434013060587],[-126.8947762425217,51.297198947317305],[-126.8933261826985,51.298401006856906],[-126.89152777176025,51.303029475711554],[-126.88998872955246,51.304863953024274],[-126.88580796776529,51.30664559577951],[-126.88043781633024,51.30785170474991],[-126.87560330929725,51.30729276658849],[-126.87305255544757,51.30729562898772],[-126.86948780633385,51.30548274354341],[-126.8645603117464,51.304002213419274],[-126.86174508835538,51.30617594204793],[-126.86049355814168,51.311094811528505],[-126.85868978937395,51.31532604001258],[-126.85569366633665,51.3176675876455],[-126.84694238504957,51.31757177630016],[-126.84129252466076,51.31797801504314],[-126.83546536539814,51.319934918584174],[-126.8267161199408,51.32006419469949],[-126.81814271021359,51.31921752739717],[-126.81622640667375,51.31904732508303],[-126.81302088069779,51.31477041803517],[-126.81191570745935,51.31231809615156],[-126.81298669120665,51.30597263348216],[-126.81477693859945,51.297914601647356],[-126.81339952697081,51.29488798710277],[-126.8119369906707,51.29317711486001],[-126.80956148840727,51.29158048067969],[-126.80791548000713,51.28992921627296],[-126.80518188775648,51.289984602926815],[-126.80045987714226,51.29399497822265],[-126.79591527645326,51.297139840088114],[-126.78598560408408,51.29795375470102],[-126.77587476232985,51.29950975796892],[-126.7726838559538,51.29905523898194],[-126.76712776004342,51.29866100056573],[-126.76448550055822,51.29946548689637],[-126.76403838758388,51.302830959426565],[-126.76495973229856,51.305979598049014],[-126.76816023623692,51.309342251951264],[-126.76761565525888,51.311114960457765],[-126.76543119551096,51.3118075043625],[-126.76188105062884,51.31357520944626],[-126.75960340017009,51.31392321935145],[-126.7554142873387,51.314779912652334],[-126.75423027829395,51.31541281920998],[-126.75159000190284,51.31735759702101],[-126.75104995374126,51.319125687581675],[-126.75069616287801,51.32330057819363],[-126.75006776248584,51.327753859775115],[-126.74961843747984,51.33112367079372],[-126.74807503962475,51.33352897679736],[-126.74634652823936,51.335353102567076],[-126.74115076306786,51.33662037581626],[-126.73504348964828,51.33747984062288],[-126.73294914931128,51.338678323177255],[-126.73030930761043,51.34068087949022],[-126.72885448521713,51.343366960910096],[-126.72721907544212,51.346170860272075],[-126.72503565261304,51.34931541876434],[-126.72430897981026,51.35091227539059],[-126.72221675703805,51.35411115974096],[-126.72413721491051,51.35622184591335],[-126.7265099980348,51.35713966152156],[-126.72824619206091,51.358789723759884],[-126.72697387395192,51.36125070019535],[-126.72469475882477,51.36227850301845],[-126.7216873637327,51.364335326892636],[-126.71932149535881,51.36656472408467],[-126.7161307908761,51.36960040621382],[-126.71239884460309,51.373768722270256],[-126.71030463309766,51.379257378073866],[-126.7115916923829,51.383481599924544],[-126.71333248293736,51.388338002306185],[-126.71133036803661,51.39176375028226],[-126.7081380985529,51.39462409983289],[-126.70531224316245,51.397365939630504],[-126.70157234854041,51.40062329989818],[-126.69956893176146,51.40434276059478],[-126.69920648534567,51.40570934453731],[-126.70176804935298,51.41027633272666],[-126.70460631709041,51.414728764004174],[-126.70872145365202,51.41746884925942],[-126.71229259664561,51.42204046118924],[-126.71531104318377,51.42483765754505],[-126.71915398657264,51.42883399545984],[-126.72336028042015,51.43123354675422],[-126.72839154381829,51.433798756920844],[-126.72921762074661,51.43580066058814],[-126.72748905305944,51.43905703806182],[-126.72639844755128,51.44236371014747],[-126.72521504703197,51.44425335383723],[-126.72211250110009,51.448427162423215],[-126.72047174085452,51.45116784343446],[-126.7167304127561,51.45488158957541],[-126.7108852840003,51.45779553234968],[-126.7075034484085,51.45986248864427],[-126.70851403052906,51.46328707518386],[-126.70961734857924,51.46608278155527],[-126.70980408255308,51.46962466992829],[-126.70907508247286,51.471570152539606],[-126.70460060054243,51.476141202018006],[-126.70167642047184,51.47831168174194],[-126.69893297755934,51.47917001611702],[-126.69463247113643,51.4788867215363],[-126.69334956333945,51.4761458566278],[-126.69389743827891,51.473633902293884],[-126.69197328619423,51.470431322657234],[-126.68776061668753,51.46723303968377],[-126.68163318273274,51.46586697430169],[-126.67733345444752,51.46489752765298],[-126.67468148544116,51.463644964430046],[-126.67120399669257,51.46004227409776],[-126.67047230474708,51.45912885181207],[-126.66855075078739,51.4570713248585],[-126.66681060274185,51.454671628861256],[-126.6642506489564,51.45187504219121],[-126.66223838191726,51.45039236191124],[-126.65757583413925,51.44844930981581],[-126.65163345208336,51.446508924827285],[-126.64779152782641,51.445823513350554],[-126.64194271479623,51.44530920210825],[-126.63490341299972,51.445140633060966],[-126.63006035118336,51.44461728574469],[-126.62530796189932,51.442161800749545],[-126.62430355602817,51.44141786476417],[-126.61973590395013,51.43873673724823],[-126.61680919194329,51.43730366456562],[-126.61470946734835,51.43467846103841],[-126.61242703792652,51.43119253623301],[-126.61051122120506,51.42868013341412],[-126.60868519318021,51.42541997615349],[-126.60832156660352,51.42182435000949],[-126.60960303902341,51.41805382860577],[-126.61143087528681,51.41594142379198],[-126.61444498159617,51.41445985227095],[-126.61800864294734,51.41343185197294],[-126.61792031388019,51.41245677750512],[-126.61362569782995,51.41228260405205],[-126.60951648228304,51.412112317421595],[-126.60476624207199,51.409999232026365],[-126.60184433021921,51.40874243592099],[-126.59654907081773,51.40731462221616],[-126.59298974158055,51.406052525822794],[-126.59098112067342,51.40531239532174],[-126.58787571394294,51.40467777154235],[-126.58468115859047,51.404505222707265],[-126.57737451304203,51.40421556345375],[-126.57454517711435,51.40438475420892],[-126.57052233066727,51.40484206241506],[-126.56824095712432,51.40523946787966],[-126.5660511755444,51.405978008541226],[-126.56412573669694,51.408262964270726],[-126.5618373543153,51.41003581410877],[-126.55991597769446,51.412600603203174],[-126.558544997542,51.41431275031572],[-126.55598415966001,51.41614121961056],[-126.55278687012495,51.41688274339844],[-126.54912952131353,51.41739247713204],[-126.54346955336428,51.41624669297691],[-126.54018243396307,51.415841087074405],[-126.53561317238736,51.41572024574524],[-126.53058820884387,51.41623357304709],[-126.52793935955714,51.41742903445955],[-126.5239137772482,51.41908293353013],[-126.52016388057977,51.42056320727466],[-126.51532012957807,51.4214761262645],[-126.5126686199488,51.4220401302876],[-126.51056761435927,51.422437236165635],[-126.50837155414393,51.42317860244657],[-126.50461775776489,51.42620272925392],[-126.50178676420201,51.425739567398495],[-126.5003282196888,51.42528151597867],[-126.4979509718365,51.42522521344648],[-126.49475241065105,51.4256761882868],[-126.49200758282372,51.42647179829459],[-126.49091006939935,51.427153638116664],[-126.49227384722381,51.42904326548021],[-126.48879841139879,51.43012243525948],[-126.48724370681228,51.430572848376976],[-126.48449385813876,51.43291824776021],[-126.48375324547801,51.4360499213984],[-126.48054634759704,51.43805104386413],[-126.47862063904678,51.439933355900784],[-126.47842721150562,51.44284894136417],[-126.4779640220985,51.445298932684175],[-126.47822326549216,51.44861648820519],[-126.47547148788928,51.451349811529724],[-126.47317943366875,51.45340350978498],[-126.46997342402155,51.45522926977143],[-126.4673226022092,51.45550777311922],[-126.46274730307296,51.456812205209985],[-126.45824113012388,51.463148480848055],[-126.4556633420928,51.46679996575201],[-126.45290552183316,51.470680969817124],[-126.45115768767222,51.473649147465764],[-126.45086392428496,51.478045310563125],[-126.45048630395416,51.48050148815652],[-126.45010807009936,51.4836964134962],[-126.4480875879455,51.48517853978089],[-126.4430447763051,51.487399981630794],[-126.43947376765186,51.48842183517912],[-126.43646002366823,51.48767337697011],[-126.43436228601023,51.48595427964902],[-126.43217272717006,51.484409946520266],[-126.42870529929237,51.48246427455337],[-126.42459667305808,51.480800238291714],[-126.42369860743561,51.4778266821769],[-126.42361156788473,51.476739336463126],[-126.4208780685152,51.47484677203135],[-126.41657969486805,51.47444526146388],[-126.41145980732453,51.47443249313671],[-126.40624085705429,51.47510644137755],[-126.40303845251418,51.47573038697037],[-126.39873304251458,51.47663409806185],[-126.39552740395987,51.477424445445365],[-126.39077234918709,51.477645625851416],[-126.38666127471674,51.47671898894934],[-126.38236207880753,51.47631113581853],[-126.37669375838324,51.47624255028436],[-126.37404172268113,51.47606395194309],[-126.37084345156396,51.47531323753585],[-126.3712280441948,51.47262787527193],[-126.37297730218594,51.47068858607383],[-126.37509721644352,51.467442721080815],[-126.37667155532695,51.4644717908216],[-126.37713726503881,51.46247776245484],[-126.37550344526598,51.46099105019274],[-126.37148465176303,51.4598913346639],[-126.3691092583083,51.45971957035751],[-126.36728383368698,51.458970446739805],[-126.36500951328887,51.45696733020439],[-126.36319715441489,51.454502152685656],[-126.36265810779251,51.452790726806484],[-126.3614793166525,51.45112957452385],[-126.35955499140253,51.452437647128754],[-126.3563368581113,51.45500348022954],[-126.35229257842354,51.45870040794604],[-126.34953287672293,51.46126741694245],[-126.34669130896668,51.462511881366865],[-126.3422174204123,51.461648119409766],[-126.33874880247231,51.46066844351975],[-126.33610397477665,51.45952017861106],[-126.32961958350973,51.45852778560503],[-126.32596808186055,51.45783207931487],[-126.32103483764062,51.45695926707374],[-126.3162770793817,51.457924531983465],[-126.3137963669766,51.45923225007221],[-126.30884521420057,51.46144527817743],[-126.3073756311719,51.462124640235565],[-126.30565279791513,51.46057546711159],[-126.30283437872484,51.458282009000214],[-126.30119552541952,51.45724973330367],[-126.29554354275895,51.455063411637205],[-126.29353209236395,51.45482853891053],[-126.28796220414145,51.454352520174965],[-126.28586223681022,51.45406445031492],[-126.28249248422425,51.45262618443927],[-126.28031270992427,51.45067274443778],[-126.27794068423512,51.4500407746617],[-126.27255020788576,51.449623021950764],[-126.26889077999948,51.450014865647546],[-126.26375923955761,51.451478075724154],[-126.2576306412435,51.45202728178526],[-126.25443824304445,51.45133272265555],[-126.2496030993276,51.45022940027164],[-126.24640447693197,51.44982633154285],[-126.24192829492283,51.44975124219018],[-126.23908469527927,51.450708631837394],[-126.2369597559456,51.45338880820795],[-126.23457509604798,51.454354098061174],[-126.23210684856595,51.45434402514226],[-126.22845693302814,51.45358684566115],[-126.22571988468698,51.45294779084682],[-126.22371559735211,51.45225617882821],[-126.22125236268381,51.451785317453854],[-126.21668054519482,51.45188667919412],[-126.21302791470279,51.451588429656844],[-126.21103094799538,51.449927259954016],[-126.20568047251253,51.445393373010184],[-126.20177860985407,51.44263263086898],[-126.1977003212021,51.43896106449866],[-126.19370101694092,51.43672413182785],[-126.19033083009441,51.435847448831574],[-126.1864827388974,51.43686355284824],[-126.18327177326161,51.43788186477485],[-126.17999020998795,51.437299230439734],[-126.17853770340105,51.436035440571445],[-126.17826957076485,51.435834482849],[-126.1767827882168,51.43655146469163],[-126.17586333672102,51.437117213464184],[-126.17457706701116,51.437798510115826],[-126.1721002964412,51.43904929662237],[-126.16870880568831,51.44006746725292],[-126.16429756798682,51.44262682559873],[-126.158792156716,51.4452335468267],[-126.15567139986976,51.44665538261195],[-126.15456851721892,51.44716623072172],[-126.14962115585453,51.44846303646472],[-126.14366505149506,51.449474821103635],[-126.14046118899562,51.450208624460615],[-126.12854840856319,51.45274081153638],[-126.12121944257574,51.4542550092764],[-126.11076917881635,51.45696886184911],[-126.1056174378828,51.46003371247955],[-126.10358233632431,51.46242462867718],[-126.1019092600112,51.465276835699584],[-126.09911115673289,51.470635138187276],[-126.09743305557215,51.473937694331774],[-126.09704558710636,51.4759366265006],[-126.09838826283293,51.47891065537065],[-126.09883385669823,51.48034288589551],[-126.10000504932202,51.482286044428236],[-126.10198586839306,51.485548331623335],[-126.10296177025447,51.488633670299144],[-126.10277448989473,51.48909267682491],[-126.10292051151224,51.492575320513296],[-126.10288592285227,51.49628865877946],[-126.10349551610794,51.49948535318163],[-126.1062163653211,51.50229585841471],[-126.10964932264115,51.50710190304629],[-126.11170953348365,51.511794751688605],[-126.11102406480614,51.516359000404165],[-126.10862281988851,51.518578589690975],[-126.10503378993135,51.52011211756016],[-126.09843194352096,51.52105978750395],[-126.09100854554102,51.52171717433506],[-126.08725043303393,51.52210546488721],[-126.08229589078645,51.52271324712994],[-126.07881140539581,51.5233888008515],[-126.06966739243508,51.52175411735039],[-126.02980966965389,51.51532052005944],[-126.00006220311604,51.509830853323486],[-125.3275214399127,51.38924948897171],[-125.32550962238986,51.389096173566564],[-125.32036426665728,51.38782845264813],[-125.32000459675356,51.38782909812466],[-125.31532542286567,51.38713280111982],[-125.3115600495445,51.3859655570411],[-125.30862213548876,51.38525147373671],[-125.30523300460676,51.38487845486784],[-125.30231503069618,51.38473432464558],[-125.29837922638279,51.38436895723279],[-125.29060052042362,51.38323950777682],[-125.28711373736746,51.382696473806675],[-125.28455840183767,51.38237799634351],[-125.2818082786497,51.3816559853445],[-125.28033391404433,51.38121185983969],[-125.27729987802212,51.38026801824495],[-125.27463812225749,51.37943531207339],[-125.27196683652166,51.37831411828013],[-125.27020003485038,51.377300787717644],[-125.26799025729231,51.376117943161496],[-125.266705096887,51.37555872146182],[-125.26486372943066,51.3747187374156],[-125.26256315760344,51.37382187960916],[-125.26236456677414,51.37365677029126],[-125.26059632390115,51.37189431437459],[-125.25874652987572,51.370715313756726],[-125.25598227516524,51.36919198365195],[-125.25440979974954,51.36863634127172],[-124.77208784980488,51.24185863850983],[-124.66792288856557,51.21303640219291],[-124.55405983507882,51.181294095442006],[-124.5351398902135,51.17654636241061],[-124.52275617730206,51.1742932753365],[-124.50993931533691,51.17260948024239],[-124.49503565969668,51.17042047959774],[-124.4949650312945,51.17039204172015],[-124.4727196688849,51.16315232131888],[-124.45586439823552,51.15959080789837],[-124.44136326126889,51.1493904249909],[-124.42532400486984,51.15249257045238],[-124.41864907212465,51.16107511592966],[-124.41415226211015,51.1683352370825],[-124.41309712122194,51.175822058724876],[-124.40929971890785,51.177887875241545],[-124.4093060070086,51.179310726225395],[-124.4064842280151,51.18091705626812],[-124.40032457680472,51.184522374039794],[-124.39731607280406,51.18572791238904],[-124.3945141827541,51.18715687370062],[-124.39078887335226,51.18915855533969],[-124.38889118408696,51.19013442959988],[-124.3850656363164,51.190940169362975],[-124.38016553660664,51.19174495443059],[-124.37680263619563,51.19203565337266],[-124.37561356518617,51.192035957167],[-124.37334579635592,51.19215203634311],[-124.37115890078827,51.190845363084186],[-124.37024782951785,51.189128274054035],[-124.3703320170793,51.18644617060112],[-124.37195388769092,51.18284445888212],[-124.37330915967398,51.17947572958226],[-124.37185267247327,51.176624329405435],[-124.37057489824272,51.1735908305702],[-124.36902051533244,51.17068576472747],[-124.36838695984007,51.16805440691773],[-124.36811140760776,51.16737074172144],[-124.36873387935572,51.164458375136064],[-124.37145879473806,51.16159937720684],[-124.37318453590628,51.159433100232626],[-124.37562468548235,51.156516007016684],[-124.37679958427069,51.15531104678099],[-124.37770436308912,51.15405391181685],[-124.37823775539155,51.15159874209531],[-124.37805544555056,51.14914450114258],[-124.37460405874984,51.14646583152189],[-124.36961004239576,51.14566859290309],[-124.36324087725154,51.14607644857415],[-124.3616110985545,51.146418171903214],[-124.35271970483353,51.147684000697886],[-124.34418062446248,51.14946675534477],[-124.34227436678918,51.14992257690956],[-124.33701222212584,51.15055625601306],[-124.33247057263546,51.15067555528522],[-124.32802416250411,51.1501652078677],[-124.32621018266249,51.14930649235558],[-124.32394019018224,51.14839719122681],[-124.3218371753369,51.14685889031835],[-124.3195657692517,51.144857776371154],[-124.31448247933349,51.142293193055885],[-124.31131116777772,51.14064104173134],[-124.30775485669899,51.13858393780491],[-124.30603357707201,51.13681753296084],[-124.30476161459461,51.135278444028],[-124.30294659213865,51.13447431579884],[-124.29895706487594,51.135160165630985],[-124.29586985378192,51.136192357024335],[-124.29359490107167,51.13768017933664],[-124.28896761069086,51.14042381701837],[-124.28452031247991,51.14145638747539],[-124.27770533412631,51.14191156741135],[-124.27081398922246,51.14248640603905],[-124.26518412431574,51.143001655679],[-124.2609995391881,51.14351646784111],[-124.25728833992575,51.145459082179705],[-124.25374666055356,51.14854193675932],[-124.2500141814717,51.149915946225114],[-124.24483821087469,51.15014256070315],[-124.23747884878566,51.15020293580942],[-124.2299482551726,51.149171785386486],[-124.22740437231751,51.14871760027237],[-124.22469062696483,51.147859359226565],[-124.22050680405188,51.14654453433848],[-124.21659903325913,51.14477645685914],[-124.21452229492942,51.14374729157153],[-124.21015766875317,51.14231918785255],[-124.20435589676246,51.14140296556879],[-124.2019969969093,51.141345175636744],[-124.19527067419193,51.141001988334935],[-124.18909301660607,51.14054147616305],[-124.18446988423148,51.13951291468298],[-124.1829311271503,51.13899866710647],[-124.17930664021779,51.136654536465024],[-124.17893717682989,51.13379933134314],[-124.17967746258049,51.12900191214069],[-124.18049582029178,51.126835521167],[-124.18049330798836,51.12654751861838],[-124.17877586452761,51.12237722802215],[-124.17679169874836,51.11844057572089],[-124.1755218593812,51.115924932552446],[-124.17480702753787,51.112783386629935],[-124.17309320505139,51.10889870283651],[-124.17155153961333,51.105702726392025],[-124.17046511827027,51.101873050550516],[-124.16974175835523,51.09964738292295],[-124.16766224515334,51.096333672510895],[-124.16441345144428,51.09364920776361],[-124.15834173816816,51.090105120456954],[-124.15789150926354,51.08993159947997],[-124.15262863549643,51.08827362972573],[-124.14746374797326,51.08633129273689],[-124.14438838804045,51.08501705706821],[-124.14384781343409,51.08461352221201],[-124.14357138412497,51.08336051417131],[-124.14385273521941,51.08141331495451],[-124.14403622370843,51.07941341947636],[-124.14359084111103,51.076730646409565],[-124.143507529248,51.07393314518517],[-124.14486952763828,51.07176853159196],[-124.1478604503799,51.070970673720154],[-124.15439490010154,51.07120035438402],[-124.15774799284856,51.07200244220666],[-124.16136564647562,51.07297490082091],[-124.16164158597826,51.07252133879198],[-124.16545066540536,51.069547643928075],[-124.16908941106236,51.06584015814982],[-124.17054530708427,51.063787359071654],[-124.17136250016452,51.06058795797782],[-124.17054867740771,51.057450747655444],[-124.16720507969684,51.05505208503595],[-124.1633936643262,51.05361572327356],[-124.16177482361557,51.05304307687298],[-124.15860851223118,51.051901699229624],[-124.15316191707953,51.04996047617776],[-124.15099345586893,51.0481857305366],[-124.14856288898007,51.044476610605756],[-124.14739198037748,51.04138771897591],[-124.1470371936604,51.038590692022034],[-124.14577112472642,51.03367906132495],[-124.14289239061122,51.02944980799342],[-124.13646944915384,51.02602014606013],[-124.12795445075224,51.02246995057627],[-124.11962986502408,51.02086413215758],[-124.11121472104928,51.02006122136955],[-124.10269466582528,51.02005253086527],[-124.09690041680346,51.0200472483414],[-124.09617510272557,51.01998725633648],[-124.09455830059605,51.01941474428977],[-124.09329176419796,51.018328852291916],[-124.0927528190278,51.015583418032406],[-124.09258422242716,51.01318840330197],[-124.09150135053846,51.01181758790473],[-124.08815282680632,51.01004277954308],[-124.0849039485546,51.00861146613917],[-124.08363054712143,51.007697675819955],[-124.08183035437298,51.0060961354172],[-124.07975886051426,51.003178456276956],[-124.07803958822961,51.001692753511854],[-124.07773892645567,51.0007253394263],[-124.08116885063525,50.99561438485762],[-124.08464650602008,50.993357278585634],[-124.08935999331463,50.99054394047651],[-124.09006368487108,50.98843428584908],[-124.09108344541913,50.98593586308376],[-124.09144639479173,50.98478661327623],[-124.09093267603595,50.982463124934874],[-124.09004758907771,50.981486916422924],[-124.08764412194121,50.98067181584182],[-124.08488798037344,50.98043398158634],[-124.08087929050177,50.98113754960013],[-124.07440304102282,50.98218159937648],[-124.07134763770422,50.98193830436804],[-124.06984813085728,50.9813303516599],[-124.06836771561048,50.9799535319537],[-124.06814370081261,50.97821259947198],[-124.06760615656486,50.97646851579144],[-124.06403918209236,50.97389634747737],[-124.06067668099105,50.97384396024804],[-124.05763898092883,50.973208698864276],[-124.05590223261225,50.97085877412662],[-124.04087902398027,50.950338842840324],[-124.03898906584216,50.94470638666277],[-124.03680328215833,50.93868464595095],[-124.03078116221049,50.9366538640399],[-124.02737937507496,50.937553681848925],[-123.99981479540835,50.95849206524224],[-123.99911841545969,50.95876488177187],[-123.99771466570334,50.96050734481203],[-123.99835239806687,50.96376564928804],[-123.9983086361717,50.963787884650564],[-123.9947538054329,50.96549363262791],[-123.99067128737052,50.96498328140762],[-123.9862306760413,50.963565781892676],[-123.98188646431566,50.9619140076917],[-123.97527088347175,50.95786801490397],[-123.97036801855488,50.954732398966954],[-123.96003205049784,50.94794772641249],[-123.9524998469395,50.94315983656207],[-123.94489591467999,50.93779848636789],[-123.94099386786029,50.93591223017454],[-123.93267373538372,50.93438304773564],[-123.92552463497506,50.93525451681699],[-123.92028811377465,50.936348524567684],[-123.91540928666842,50.9370991285095],[-123.90402310967235,50.93837839680277],[-123.89624236465546,50.93992798832311],[-123.89291723756895,50.943362058683036],[-123.88984842999554,50.94588504972316],[-123.88532374839511,50.947547845857926],[-123.87900346805445,50.94950333391833],[-123.87699828799879,50.94372523018924],[-123.87382536797912,50.939442103754175],[-123.86947359729723,50.93658854904306],[-123.86593899138457,50.93453252735847],[-123.85834808294405,50.93448505281553],[-123.84695332137161,50.93443995696843],[-123.84062790709602,50.934441951982784],[-123.83962525292638,50.9307278726212],[-123.8378225137443,50.92500888383088],[-123.83383573697783,50.92175263081372],[-123.8275934876016,50.91832565072078],[-123.81936903084151,50.91410113702231],[-123.813302982463,50.91089965044195],[-123.80662497963432,50.9114784695725],[-123.79071957897668,50.91205914231136],[-123.78619670555263,50.910229740776686],[-123.77752209165891,50.90857624912334],[-123.76406461846881,50.905491449404664],[-123.763968400337,50.90400084881232],[-123.7639720448351,50.90080005962185],[-123.76432822792853,50.898803529186374],[-123.76478785308981,50.894739150555516],[-123.76478435759057,50.88655936873921],[-123.76243325419564,50.885480868746065],[-123.75485698780588,50.88501994102562],[-123.74907060556149,50.88490782240891],[-123.74744829870713,50.88490723603936],[-123.73931971296032,50.88467844019241],[-123.73136758901481,50.88433863000838],[-123.72740823915733,50.88216205192268],[-123.72433583291445,50.87850335971254],[-123.72207387584295,50.873469432119414],[-123.72208834404536,50.873185564795556],[-123.71937272586797,50.87398618132257],[-123.71395552596826,50.87558526076773],[-123.70464358854386,50.8798696213592],[-123.69624474152502,50.883245948446095],[-123.69127560844706,50.881643141238264],[-123.6870415083248,50.87986713916745],[-123.67809863439746,50.87780200485891],[-123.67530570177904,50.877058401192585],[-123.6709712803902,50.8772272916764],[-123.66735676461896,50.878596534325574],[-123.66490425581013,50.88168814049419],[-123.66290887201949,50.885284545790135],[-123.66245737773363,50.88711377978723],[-123.66244473907945,50.889803530542345],[-123.66244122831166,50.89449495742425],[-123.66116194859468,50.899353504525344],[-123.65817105364299,50.902093373255774],[-123.65410064297386,50.90369303502094],[-123.65075125420024,50.902948446578726],[-123.64408325962837,50.9008817486704],[-123.63632394262513,50.89738933895648],[-123.63072298394795,50.895898016451774],[-123.6236857158817,50.89411932257448],[-123.62124057335733,50.894058480242],[-123.61355619073683,50.89427986114647],[-123.6095825783972,50.89644664925076],[-123.60785468922451,50.898673601318734],[-123.60621583063454,50.901361245439205],[-123.60394509068654,50.90467670263029],[-123.60104325575753,50.90913099888491],[-123.59731197823244,50.914961868801626],[-123.59704539387315,50.91541666147666],[-123.59430840223756,50.918900496540516],[-123.58939973775084,50.925927274437726],[-123.5855782426111,50.931527774431935],[-123.57994404708799,50.93900684350619],[-123.57489296092811,50.93677221267984],[-123.56876077245005,50.93372995455808],[-123.56035224305246,50.931948043960894],[-123.55149548519604,50.93107671630048],[-123.54661894891606,50.93140935740863],[-123.53783916074478,50.933797002799565],[-123.53376016162939,50.93567525136626],[-123.52578303981166,50.93897759882886],[-123.51553811212335,50.94485186713646],[-123.51452775593174,50.94559214122749],[-123.5113373192582,50.95015514199552],[-123.50587230660452,50.956379822353874],[-123.49824944529574,50.96139480570555],[-123.49242842819048,50.96527132404069],[-123.48881027291485,50.966981931241065],[-123.48345424321447,50.96890845371025],[-123.47802186267197,50.96889890230399],[-123.47224614840341,50.9673993261691],[-123.46908896027306,50.96624714184793],[-123.46266762176782,50.965830981023736],[-123.45875693968358,50.96764860108477],[-123.45711892437204,50.96936706650811],[-123.45366431558094,50.971928839343306],[-123.45057423722469,50.97409444471563],[-123.44638305057677,50.97705260771431],[-123.43958322341854,50.97898019424196],[-123.43232321883931,50.98096200531409],[-123.426797370833,50.98180262255237],[-123.42482482609694,50.98088582138205],[-123.41967501851123,50.97892391598538],[-123.41415721548215,50.978396038454534],[-123.41017234718561,50.97947179387559],[-123.4050781905163,50.98220266939028],[-123.40151112909078,50.98613397946442],[-123.39778598374086,50.98909667620091],[-123.39522886400286,50.99086318322363],[-123.39004134533938,50.99490592671236],[-123.38368215496865,50.99677137320732],[-123.37617532623827,50.997033818519455],[-123.36792572396607,50.997065525476415],[-123.36313201102014,50.9970514214135],[-123.35425671656927,50.99656479797193],[-123.34928541146068,50.99545864480949],[-123.34332918218553,50.994123421971956],[-123.34106090919822,50.99411581907337],[-123.33281735730438,50.99500604114952],[-123.33000762119799,50.99522292075524],[-123.3259733148203,50.99206728918151],[-123.32410474164037,50.987543314428876],[-123.31962961695412,50.982721792847464],[-123.3165708558871,50.98139970256801],[-123.31167903315857,50.98138270001094],[-123.30931539597647,50.98320138217208],[-123.30701815016468,50.98627909769725],[-123.30425538973905,50.99044301249217],[-123.3011414909311,50.99379923098185],[-123.29659374670673,50.99561402997481],[-123.29134064218752,50.99588008979418],[-123.28591317922994,50.99643037996825],[-123.27557788444537,50.99696035864114],[-123.26770289061609,50.99739087365076],[-123.25102973621894,50.99840233409775],[-123.24685365880548,50.999240840490444],[-123.24376134332996,51.000090613947584],[-123.24376198472181,51.00054162096628],[-123.2430947099364,51.00163841929981],[-123.24422091482509,51.00465844313977],[-123.24525739299767,51.007054518597116],[-123.24892552219436,51.01006204003611],[-123.2509693439603,51.0125646871889],[-123.25148238511593,51.01651142832836],[-123.253229890431,51.018501299168854],[-123.25621573279706,51.02380009892541],[-123.25574109739662,51.02872121717513],[-123.25433599881313,51.03159103292922],[-123.25231747202622,51.035603332532474],[-123.25056261429724,51.03950353704558],[-123.24618587441213,51.044677295574324],[-123.24325097880046,51.048239026186664],[-123.23959001970364,51.05198111802893],[-123.23688580633345,51.05388261167188],[-123.23060074065903,51.05798338673577],[-123.22537244666775,51.060244790623535],[-123.21887830185474,51.063314290617335],[-123.20857648441287,51.06646089461566],[-123.20605253081018,51.0672771880658],[-123.20126901238257,51.06901951177199],[-123.1949272103532,51.069625427041586],[-123.19466849436337,51.07146106117023],[-123.19041749528006,51.072226651148505],[-123.18643417369418,51.07327789120583],[-123.18111265858386,51.07536536577086],[-123.17388729703195,51.0783820227967],[-123.16866682226048,51.08200691158822],[-123.16234774742546,51.08513157250752],[-123.15768587056507,51.089386127589286],[-123.1538715956403,51.09535461487363],[-123.15155387453682,51.099829313451046],[-123.15107677009371,51.10526424568005],[-123.15185201224088,51.10834682602554],[-123.15210508232889,51.11355082923804],[-123.15046335343399,51.120185574490186],[-123.14858316834616,51.12294654005013],[-123.14428121657919,51.127085497964465],[-123.14248152310746,51.12880721669991],[-123.13923734481519,51.13139640647971],[-123.13418210299879,51.1334278703557],[-123.13019549730512,51.13464393844498],[-123.12275000141642,51.13577051342644],[-123.11785389997046,51.13665350402371],[-123.11596798201177,51.13791715585895],[-123.11061568141217,51.139204305704816],[-123.10307330419997,51.14003958763983],[-123.09935225668055,51.14045496245399],[-123.09451386664055,51.13825188120296],[-123.08738164502392,51.134795365403654],[-123.0805183406617,51.13031307417866],[-123.07705378256905,51.12901468954778],[-123.07241928446551,51.12983341944278],[-123.06826585238099,51.13225272106245],[-123.06974633785268,51.134765125665844],[-123.06977782856639,51.13710841815889],[-123.06707690864872,51.139634506135664],[-123.0645565018831,51.141591257548406],[-123.05983009190098,51.14161186575318],[-123.05401248099301,51.142324876998146],[-123.0493156089728,51.144915758953],[-123.04371842063121,51.148545420583396],[-123.04092337378609,51.15073147369066],[-123.03902885996497,51.15251034892002],[-123.04204432058421,51.1543271064752],[-123.04589288460937,51.156542432501254],[-123.05093784222915,51.16080618695564],[-123.0541675213375,51.165022269841124],[-123.05377054492301,51.17057002996794],[-123.05170870943917,51.172921472429834],[-123.0502722764338,51.17556160641255],[-123.0499493928016,51.178477938528694],[-123.05206943494255,51.18172542364921],[-123.05927506969138,51.183068052810704],[-123.06511161680827,51.184530732124735],[-123.06768810636838,51.18674856496651],[-123.06672314469012,51.190069949857765],[-123.06572923223605,51.19967627775731],[-123.06463383297674,51.20734358207308],[-123.06430916806025,51.210947150721786],[-123.05838325276817,51.21034705063561],[-123.05282473816293,51.2093996220876],[-123.04816849883048,51.20804197725037],[-123.0427735326851,51.205724695944966],[-123.03784041414131,51.20465811017063],[-123.0309865597728,51.20251479056419],[-123.02269071068554,51.19986295901613],[-123.01227470710305,51.19698760123611],[-123.00656070476002,51.198380607004026],[-122.99782349523761,51.19910273964078],[-122.9914440489583,51.19866950810596],[-122.98096275702855,51.19699466006434],[-122.97275853799997,51.195365871100904],[-122.96766545562338,51.19458050174594],[-122.96274008726402,51.19448851219844],[-122.953911054415,51.193831627110114],[-122.94580837949806,51.192830896157496],[-122.93904927744792,51.190853977180396],[-122.93731674497708,51.18937146867228],[-122.9324623484815,51.18618887861706],[-122.9275422135033,51.184999735009335],[-122.92262508425944,51.184390610960534],[-122.91732851318375,51.18326206380345],[-122.91077211119612,51.182939540933],[-122.90258027731858,51.18079192274414],[-122.89554181940201,51.177328601003886],[-122.89152701504685,51.17510795715073],[-122.8866013046547,51.1730086051871],[-122.8813946045614,51.170224455776385],[-122.8773686272663,51.16634886041285],[-122.87615790377538,51.164008607925176],[-122.8755106562543,51.16200969915388],[-122.86979455742154,51.16322559197802],[-122.86251969900046,51.16399007588501],[-122.85916070569941,51.164283013274336],[-122.8559527505998,51.16143247901001],[-122.85131533330053,51.160361188190144],[-122.8461211875149,51.15866021799481],[-122.84009828611681,51.15633141084787],[-122.83562905909062,51.15331511946225],[-122.83105842383347,51.15052382669076],[-122.8255858633882,51.14773500859345],[-122.82266343954983,51.14534302166333],[-122.81512297043008,51.1452448364981],[-122.81148047561207,51.14571030866479],[-122.80458406530462,51.146412637995454],[-122.79804533130591,51.147513971063425],[-122.79322696609789,51.149182878371654],[-122.78943797806303,51.153249586346966],[-122.78841851238815,51.15130348409453],[-122.78477578142888,51.14839902739957],[-122.78092317216087,51.14326014857831],[-122.77553264837377,51.13801475413773],[-122.77153738422398,51.13762178048563],[-122.76845724288994,51.13842832829588],[-122.76573514636503,51.13923270188955],[-122.75974491846051,51.14164736590877],[-122.75601372692698,51.142341057642405],[-122.75421038305204,51.14565550166009],[-122.75221822868976,51.14880607985904],[-122.7479781382969,51.154871683076124],[-122.74016508165127,51.158655017641514],[-122.73453235618875,51.15946550322991],[-122.72934272652483,51.158732048162605],[-122.72697775185873,51.15719229055955],[-122.7243314324434,51.15422596621024],[-122.72268404409132,51.15131556371121],[-122.72166932730002,51.14856901184736],[-122.71892711726863,51.14400497038018],[-122.7179212120814,51.1411445723864],[-122.71526706497588,51.13617569264165],[-122.71381053421764,51.13360542470033],[-122.70888946294008,51.13064526626222],[-122.69923353986623,51.12648288982566],[-122.69796012171514,51.12396939881102],[-122.6962254706705,51.11957565651345],[-122.69329049910183,51.11477531355584],[-122.68819860452516,51.11146415587918],[-122.68283139589455,51.109358599825335],[-122.67764558424393,51.10387684142185],[-122.67071955358307,51.09834052282772],[-122.6633475635964,51.09285958232891],[-122.65689615040448,51.09075814458836],[-122.65271895155898,51.09075762056401],[-122.64309488311108,51.09070926857649],[-122.63411056150736,51.090146643179665],[-122.62810216010679,51.08392416193689],[-122.6224636870278,51.08038430772428],[-122.61411836912345,51.07822118146577],[-122.61247913961718,51.080964602854806],[-122.61248884423352,51.086280689978224],[-122.60777101856874,51.08999427362531],[-122.60042145256445,51.09200406528107],[-122.59425124225076,51.09280411288906],[-122.58743823552723,51.09451919532845],[-122.57872473782606,51.098239109996186],[-122.57600135647544,51.101271562508494],[-122.57526820499571,51.1059566406868],[-122.57800054229607,51.10801499756058],[-122.58308409022777,51.110583399240994],[-122.5883600990048,51.11400792552271],[-122.59217170039928,51.1167524950465],[-122.59291190957296,51.12035236849101],[-122.59336398172064,51.127150184112864],[-122.59346632910217,51.133095267097005],[-122.59110444336345,51.140357885451806],[-122.59219492932559,51.142011026720375],[-122.59501026426966,51.14526676482059],[-122.59765352299388,51.148530140866676],[-122.59947799560354,51.15126650903453],[-122.59857010465241,51.1539535844339],[-122.59547862801051,51.159329638813034],[-122.5925792807528,51.16350024347859],[-122.59067176136773,51.16613288305565],[-122.58594938972621,51.17219132416688],[-122.57939927434289,51.17293664173573],[-122.57338986712841,51.17391541957693],[-122.56228591381256,51.17774363190497],[-122.55992763778546,51.180426647464394],[-122.55610291081953,51.185743915417206],[-122.55365463065411,51.18957454583412],[-122.55192445122279,51.192832162633124],[-122.5506376909531,51.19757567084036],[-122.54836682714262,51.2016919071808],[-122.5438163030341,51.20431820498586],[-122.53899107356095,51.20494446683022],[-122.53179875895765,51.2064898963089],[-122.52487856723228,51.207119152597265],[-122.51905207191932,51.20751825685317],[-122.51494754602034,51.206083821062954],[-122.50759086891225,51.20059826400439],[-122.50431358283127,51.1970519944147],[-122.50048594185397,51.197396278055976],[-122.49029265597403,51.19916283559818],[-122.48446616747334,51.20047359733543],[-122.48119369117285,51.20104520422999],[-122.47171707473743,51.20315661533988],[-122.46634347880422,51.205609262398475],[-122.46278263491558,51.207089844084976],[-122.45923898583167,51.20817254521872],[-122.45121467588721,51.21056660791135],[-122.4480228023082,51.211190936807114],[-122.4396399563307,51.21392517436137],[-122.43808855779707,51.21626891268227],[-122.43753477013085,51.21940927721908],[-122.43624238717197,51.22495156209024],[-122.43250325535098,51.22843512530242],[-122.43031588470059,51.22957610117728],[-122.41581006503883,51.23590313348321],[-122.39117069817073,51.24690286689373],[-122.36990960666981,51.255783593379455],[-122.36653226134902,51.25703685209779],[-122.36250910913368,51.2586310283421],[-122.35548591793712,51.26124522396721],[-122.3479927215999,51.26414831406005],[-122.34487435637546,51.26677225180464],[-122.34177792630767,51.267909736422574],[-122.33568023572809,51.26538579851172],[-122.3319542616369,51.26389076648897],[-122.32675953235379,51.26365352328019],[-122.31828114856437,51.26386419655524],[-122.312086173607,51.264253262066724],[-122.31059867772238,51.26744976185947],[-122.308401697302,51.26950393899086],[-122.30421657064545,51.26818007451042],[-122.30002693098979,51.266569360800936],[-122.29841290758971,51.26370966075552],[-122.29279212618724,51.25861283885363],[-122.2897764608687,51.25826217410776],[-122.28468313598654,51.25870780211904],[-122.27492711646471,51.25908612285839],[-122.26480190016429,51.2600919097353],[-122.26226685689029,51.25762252587447],[-122.26018631463997,51.25470683510872],[-122.25792399557614,51.25224579019432],[-122.25357582460698,51.24948966904223],[-122.24656534994921,51.248161947951004],[-122.23746461794218,51.24676417377108],[-122.2324545395627,51.24640730000344],[-122.21933290044159,51.24586051409547],[-122.21103855027835,51.24646364658424],[-122.2031974448451,51.24763934464566],[-122.19880712033282,51.24842779393202],[-122.19451551997471,51.25007064552477],[-122.19096152287044,51.251316238905474],[-122.18656309436837,51.25335861874409],[-122.18466990136321,51.25482694583358],[-122.18400155593199,51.25408236283749],[-122.18328353147874,51.253247886403315],[-122.18144262249685,51.25111180164555],[-122.17916796213842,51.249344201397896],[-122.17324470684116,51.24609326681938],[-122.16987365379623,51.24306226603301],[-122.16760008558721,51.23780789655003],[-122.16642327260574,51.234152737205655],[-122.16532239731757,51.230617564579155],[-122.16305079287642,51.22684535601189],[-122.16004788014708,51.2243939594232],[-122.15422838440348,51.22496121383772],[-122.15140420065119,51.22376365083619],[-122.14967642597904,51.220852495979294],[-122.1496670864904,51.217822355067334],[-122.15176155553347,51.21337150096527],[-122.15313306081777,51.21079748347758],[-122.15249302777944,51.20891404878899],[-122.15195137375409,51.20606352336105],[-122.14986678279203,51.198183978115466],[-122.14477455921694,51.193725988274416],[-122.14159133166814,51.191899919206755],[-122.13730985834991,51.18835989829592],[-122.13322574754842,51.1847022598355],[-122.13014041219613,51.18258864870767],[-122.1251288896536,51.18053127827481],[-122.11950108845771,51.17716448630118],[-122.1157728553807,51.176019575909656],[-122.1075788036333,51.17527851529753],[-122.0960395798113,51.174589130792846],[-122.08868011551687,51.172356569685505],[-122.08076909461721,51.170694964040344],[-122.07330607687844,51.16835153422724],[-122.07049106359557,51.166466384331464],[-122.06123098528334,51.16257975881871],[-122.05324692690651,51.15806258544744],[-122.0478899975213,51.153031647774895],[-122.0437226427172,51.14897676050155],[-122.03945635675778,51.14491481710129],[-122.03783003355242,51.13937696702392],[-122.04112156629732,51.134922414728074],[-122.04549156352121,51.13121825805472],[-122.04749388106214,51.12739267586427],[-122.04632927612167,51.12293832740225],[-122.03670034037891,51.12041929200425],[-122.03327115242455,51.11744405489664],[-122.03064563484565,51.112531615938316],[-122.02710217167956,51.109564475228055],[-122.0189396593329,51.10829879333536],[-122.01022872963217,51.105492198437155],[-122.00569686211568,51.10302993864934],[-121.99972818631892,51.10206206545997],[-121.99443255764636,51.101570819268325],[-121.98880469394538,51.101430577361974],[-121.9867984295714,51.10129443323607],[-121.98315447246809,51.10106274256119],[-121.97917791712851,51.09912837452106],[-121.97796046990234,51.09565688262554],[-121.9756250310232,51.0895182869044],[-121.97298313458793,51.086926522320006],[-121.96790026624231,51.08695136255805],[-121.96717820830614,51.08702272311236],[-121.96309373834976,51.087084811820084],[-121.95995104236471,51.085760756525126],[-121.95885776694512,51.08314719049617],[-121.9581616737703,51.07915728474438],[-121.9561425677409,51.07650028212393],[-121.95557623904712,51.07564804199231],[-121.95242398591071,51.071926085378536],[-121.95036376649949,51.06784311816712],[-121.95021843081203,51.066297755939324],[-121.94863894153846,51.063066172829224],[-121.94838684990064,51.06112348489076],[-121.94726636123318,51.05788085040046],[-121.94869169659039,51.05416727071185],[-121.94845959709205,51.05184867474672],[-121.94775318457565,51.0479874288918],[-121.94746253102456,51.04741090920934],[-121.94704468731061,51.04681800339177],[-121.94633414489562,51.04598520285392],[-121.94600889586032,51.04563171454185],[-121.9455429226435,51.0452534807445],[-121.94514009319373,51.04481006020094],[-121.94434293583762,51.04398705167617],[-121.94412687318686,51.04369089081136],[-121.9438069717985,51.0432791276334],[-121.94343885630916,51.04292577353812],[-121.94301875221129,51.04251544596751],[-121.94230650506331,51.0418596186066],[-121.94188852693665,51.04126948687643],[-121.94154522332377,51.040801225446636],[-121.9411138201546,51.04035844463869],[-121.94073369906013,51.03998047009745],[-121.94013207949091,51.039053175045495],[-121.93993197090936,51.03858276610837],[-121.93962104280263,51.03807350229738],[-121.93924048088942,51.03738746599639],[-121.9389677840589,51.03677277846951],[-121.9386299166742,51.03624567326009],[-121.93806131021223,51.03511438483852],[-121.93748902341588,51.03418026573852],[-121.93715610328607,51.033912463819156],[-121.93683462040161,51.03367599514532],[-121.93609525719619,51.033163035738674],[-121.93489627354218,51.03236137238278],[-121.93446810506467,51.03204121579542],[-121.93399300281972,51.031765453130774],[-121.93282305837673,51.03111602946266],[-121.93137861290887,51.03034254819471],[-121.93060723550613,51.02971202354904],[-121.93004936850323,51.02940401433649],[-121.92935760378569,51.029153543282845],[-121.92903327445464,51.028948990817064],[-121.92793392989994,51.02846676468887],[-121.92723677538308,51.02796313649641],[-121.92674030843598,51.027453277564625],[-121.92636548356464,51.027176057858945],[-121.92539312023632,51.026400478843385],[-121.9248931178357,51.025773567618245],[-121.92443925183986,51.025111217073274],[-121.92391240099138,51.02430962327055],[-121.92363842715108,51.02355599119494],[-121.92353021522581,51.0231771200162],[-121.92342287721911,51.0227887284884],[-121.92315143636723,51.02200763628667],[-121.9228815185908,51.02105402764307],[-121.9227474495296,51.02064555167442],[-121.92231520031427,51.019904147309035],[-121.9219797113515,51.01935457149158],[-121.92177923750833,51.01904711546394],[-121.92137811294896,51.01859015954922],[-121.92089549488703,51.01808695405074],[-121.92049173556369,51.017814836183526],[-121.9199094240535,51.01715228920227],[-121.91908935453695,51.01612190102708],[-121.91873585037591,51.01576952868668],[-121.91828059403049,51.015280235880006],[-121.91787357960122,51.01488824807062],[-121.91718990747246,51.014241120570404],[-121.91654784876505,51.013607858443116],[-121.91555795742855,51.012716860981726],[-121.91519705354644,51.01244571108781],[-121.91495799705223,51.01209243007594],[-121.91418502201627,51.011018167423934],[-121.91342234902132,51.010298988484855],[-121.91268023606065,51.009200541683825],[-121.91225092887419,51.008585673244504],[-121.91179649886054,51.007933352981205],[-121.91122318681145,51.00670892575971],[-121.9110064591445,51.00626874979115],[-121.91086106794616,51.00598518948756],[-121.9104738457031,51.00553486499252],[-121.91007995861463,51.00500166471077],[-121.90981082815806,51.00451009858112],[-121.90977195050554,51.00384478975567],[-121.90982940555982,51.00353038784706],[-121.90996924936819,51.00325215751576],[-121.91017400517326,51.00257828911848],[-121.91034206109444,51.00230390083273],[-121.91052342687648,51.00204010664144],[-121.9109277819393,51.00152585154091],[-121.91210916970935,51.00017191344924],[-121.91311204867154,50.995782038056745],[-121.91304987687923,50.991790733476265],[-121.91109165692671,50.98620861278771],[-121.91133102649214,50.98468993870348],[-121.91095300539698,50.98445243040201],[-121.91029812155155,50.98411995291889],[-121.91009395841154,50.98401075930826],[-121.90992504976599,50.98382865346199],[-121.90948038328067,50.98338408439224],[-121.90891482581237,50.98301211907056],[-121.90860129779792,50.98285003292445],[-121.90840244515987,50.98268313101958],[-121.90801979896045,50.98234088023076],[-121.90739935024347,50.98194498508902],[-121.90713161676867,50.98175083393625],[-121.90657881643793,50.98124046975287],[-121.90613680257026,50.980923030000824],[-121.90600046967197,50.98085284666423],[-121.90582129059902,50.980782791395434],[-121.90527757813732,50.98063984031426],[-121.90475391970051,50.98043409785921],[-121.90450724991243,50.98032165974704],[-121.90412116262877,50.98017265259645],[-121.9035733923247,50.98007396028778],[-121.90330615908083,50.98002991986397],[-121.90306754192888,50.979985232238846],[-121.90252065278436,50.97987700543161],[-121.90201898205352,50.979742884999865],[-121.90174009943736,50.97967030702748],[-121.90121425238141,50.97948863566107],[-121.90079559836084,50.97922824209132],[-121.90068547046445,50.97918374408361],[-121.9005112562488,50.979059892807875],[-121.9001753082327,50.978831749889835],[-121.89974754243613,50.97851535971132],[-121.8995712194209,50.978414474109755],[-121.89939701130461,50.978290621000376],[-121.89906850192082,50.97798179345179],[-121.89879072541711,50.97774227882741],[-121.8986605524758,50.97760540787394],[-121.89828627840386,50.97717347628636],[-121.89803817438793,50.976611799691135],[-121.89793038734683,50.97638692255993],[-121.89785718829641,50.97625157480786],[-121.8976202065656,50.97603435203555],[-121.89728914625395,50.97575353281773],[-121.89713160925065,50.97560385801772],[-121.8968223563578,50.97539635000945],[-121.8963692344655,50.975045852987144],[-121.89614928189863,50.974798891601424],[-121.8958956278861,50.974452870066905],[-121.89541398143058,50.97394728942727],[-121.89508429268055,50.97365189561009],[-121.89496162807072,50.973433782692354],[-121.8945762731926,50.97312285865426],[-121.89404908106631,50.97264708606317],[-121.8937243682013,50.972297900303175],[-121.8934462679455,50.97190769351989],[-121.89307454456193,50.9716040078528],[-121.89247606571573,50.97128246896522],[-121.89217850896364,50.971103482244615],[-121.89189254682655,50.97095359460557],[-121.89134188203884,50.970578138979704],[-121.89081149874622,50.97013765239799],[-121.89052387796762,50.969851086013875],[-121.88984213415566,50.96934939071486],[-121.88973369547944,50.9692869523103],[-121.88948142654577,50.96908151591025],[-121.8888584318984,50.968716888620136],[-121.88826432265789,50.96850341354246],[-121.88803209023033,50.96839033846495],[-121.88739323021007,50.96788851499314],[-121.8868027043195,50.967481772014494],[-121.88662774681151,50.96736686218169],[-121.88642195969169,50.9672766732702],[-121.88604349460692,50.96704692059042],[-121.88541145098871,50.9667808837837],[-121.88503087354651,50.966574103787245],[-121.88439516896888,50.96634783696771],[-121.88399670025001,50.96618030743926],[-121.88374581410775,50.966114885990855],[-121.88338842164823,50.965966293124985],[-121.88268875065991,50.96566008758182],[-121.88203103968235,50.965363296722934],[-121.88172320826094,50.965296338250255],[-121.88132144471028,50.965164657309124],[-121.88058283544814,50.964971136505866],[-121.87985617840975,50.96480278567484],[-121.87960359606092,50.964755848759246],[-121.8791877743802,50.96462195240296],[-121.87745401427638,50.96376839583782],[-121.873593288027,50.96106906690694],[-121.87117500738967,50.95897981398207],[-121.86979880650902,50.95796780437737],[-121.8694291722814,50.95779847188852],[-121.86819073786873,50.958841838227634],[-121.86659011110602,50.95994269431047],[-121.86382540257343,50.96159036052581],[-121.86354136483284,50.96142134963549],[-121.86323036386767,50.961389077522306],[-121.86200621753322,50.961661015219505],[-121.8607904518927,50.961996215362866],[-121.8592725368255,50.96251084211084],[-121.85825566823517,50.963009080579205],[-121.85671815808405,50.96388725587137],[-121.85547847875135,50.96447843863011],[-121.85401001408285,50.96522700836811],[-121.8527411747119,50.96597731649142],[-121.8510451312698,50.96702271690127],[-121.84995402908869,50.96785602632747],[-121.84893654570483,50.96851157882484],[-121.84760023622229,50.969064815947526],[-121.84632920744248,50.96952994475874],[-121.84480913717576,50.97052216851639],[-121.84337624141727,50.971497371810194],[-121.841971058013,50.972480888955474],[-121.84096925832188,50.97373063812845],[-121.84056727720268,50.97482496438231],[-121.84023756933615,50.975909589935256],[-121.83979585020866,50.97681747170807],[-121.8395495561206,50.97746723830264],[-121.83962188658616,50.978221582069104],[-121.83930046799924,50.978605454608754],[-121.83868723076037,50.979209008500696],[-121.83624970210883,50.983289547685644],[-121.8336401060426,50.987372650434565],[-121.82998792212105,50.98946727522235],[-121.82439299624369,50.99049503232222],[-121.81852397651275,50.99078819901062],[-121.81405703986468,50.98968736298602],[-121.80786379374625,50.988266091420506],[-121.80206065262614,50.987861464655204],[-121.79602388037655,50.9887223146393],[-121.7951384025614,50.989478497621924],[-121.79284405915328,50.99184322615537],[-121.78982402708596,50.99432686748948],[-121.78678952345102,50.99590304889067],[-121.7827382417009,50.997202034752014],[-121.7788975382458,50.998838812272275],[-121.77631340876388,50.99942472849545],[-121.77303052441302,51.00375843344189],[-121.77227917766498,51.0056523601396],[-121.77154334107493,51.00783358278299],[-121.77016133559084,51.00974647565459],[-121.76675955703016,51.011108734303775],[-121.76300378168568,51.01258461234618],[-121.76210362461764,51.01288348407989],[-121.75691148387624,51.01473224157925],[-121.75235986228735,51.01645376169837],[-121.7499434031459,51.01751378174162],[-121.74433186427196,51.02044863215185],[-121.73759470599252,51.02214412399099],[-121.73569997773241,51.02222739690607],[-121.7296346627611,51.0224265576504],[-121.71933626935518,51.023538040265734],[-121.71236664875589,51.02392109058709],[-121.7111049150623,51.024109069452365],[-121.70666815728588,51.0241656329887],[-121.70214784179522,51.0243470149781],[-121.69881218199261,51.024842323028786],[-121.69249937757023,51.0256709771918],[-121.68670938451942,51.02906686682533],[-121.68532278628504,51.03068685360794],[-121.68260588390662,51.03363826034474],[-121.67869327032113,51.03608878972835],[-121.6757725186332,51.03818716658294],[-121.67350337993021,51.04078733605419],[-121.67135057797255,51.044246542556095],[-121.66926776722993,51.04713042596393],[-121.66788069526312,51.04903637563244],[-121.66473644563781,51.052679326507096],[-121.66091867789832,51.05530274094617],[-121.65783076852762,51.057625878603154],[-121.6521099671459,51.06038915835702],[-121.64627863102476,51.06252043039969],[-121.64127172245969,51.06470136598947],[-121.6388004069891,51.0668477616423],[-121.6365853967441,51.06842157256311],[-121.63274925665718,51.07047215550663],[-121.63046435038424,51.07289831114781],[-121.62689005179992,51.07460804435208],[-121.62432237229251,51.076411932812334],[-121.61958256148056,51.07846910710551],[-121.61554387376071,51.08023407805941],[-121.61249236189397,51.081131073923565],[-121.6075077048456,51.08130988804006],[-121.60030348366406,51.0829422591976],[-121.59645282992904,51.08481963857312],[-121.59134911561605,51.086769805847176],[-121.5887296986077,51.08748633065119],[-121.58938341175443,51.090851717849944],[-121.58500739995404,51.0932490249073],[-121.57942030098866,51.09457361988398],[-121.57114046737121,51.09690695157427],[-121.56892156672646,51.098479379309026],[-121.56336525574272,51.101060505402906],[-121.55970927325096,51.1031068756624],[-121.55334611933041,51.10586711559781],[-121.54553923207563,51.10858958089504],[-121.54188127444004,51.110926018523],[-121.5341063875127,51.11787101579173],[-121.52223650300705,51.125044094639485],[-121.51095823557495,51.13100487461105],[-121.50186146969406,51.13351341896393],[-121.49604165928908,51.1335220481169],[-121.49491767217093,51.13513466365786],[-121.49557587833544,51.13924023833981],[-121.49726975680926,51.14133491759413],[-121.49937277045247,51.144626662580066],[-121.50066060708116,51.1483254699223],[-121.50140518507361,51.15540362950908],[-121.50446622352122,51.16976694339044],[-121.50806581894857,51.17812754538012],[-121.50923829655444,51.180857233409306],[-121.51248566873903,51.1829352137787],[-121.51975533760827,51.18610569728407],[-121.52481565299725,51.190843747471774],[-121.53318898409859,51.19732348313394],[-121.53647808379631,51.2038538555926],[-121.53322614170598,51.207775286429126],[-121.52305138286849,51.21469984465456],[-121.51319213889192,51.222871836075385],[-121.50196268465528,51.23134546011741],[-121.49098323257772,51.239013961811054],[-121.4812643197345,51.24597914011953],[-121.46791683466226,51.25733167575076],[-121.45725559304367,51.26373767436741],[-121.4467681387265,51.26968143423264],[-121.43242971901226,51.28183634321777],[-121.42284616229708,51.291199126546594],[-121.41527040290912,51.294481311272136],[-121.41110569957354,51.29538279825927],[-121.39894134989586,51.29739645381357],[-121.39502536081338,51.30115177613354],[-121.39471822960711,51.30478975643286],[-121.39474308463474,51.30593207221761],[-121.39246688842222,51.306233471139436],[-121.38918008876884,51.30642839723777],[-121.38463021398644,51.30645418476463],[-121.3821667701049,51.306756166769276],[-121.37825773526342,51.30780862936692],[-121.37508068892124,51.308740224939015],[-121.370991042137,51.308765746348975],[-121.36724573929364,51.308389167388846],[-121.36623764962734,51.308396216837096],[-121.3618794377684,51.31002063938538],[-121.35698577603317,51.312217758207474],[-121.35392727702546,51.31475152513109],[-121.34776023527353,51.31673010387151],[-121.3436963086356,51.31978112405626],[-121.34363416438025,51.322009518568336],[-121.34267797745044,51.324524951977466],[-121.34059303931653,51.326138739614706],[-121.33807208779766,51.328608230564726],[-121.33600706687739,51.33084796725989],[-121.33338954568303,51.33286359560313],[-121.33104369266685,51.334077954216085],[-121.32604186761087,51.335079140862646],[-121.32323154595011,51.336460825375426],[-121.32279757563762,51.33851866917275],[-121.32237548428674,51.34046399471463],[-121.32028816134464,51.34167814862595],[-121.31757929663027,51.34386284629166],[-121.31377157579998,51.345541516918125],[-121.31058114127906,51.34601659178607],[-121.30694399382267,51.34649273177435],[-121.30220136427644,51.347204567938626],[-121.28872723128467,51.3499612240278],[-121.28627228724952,51.35082721075777],[-121.28109509155954,51.35222684179409],[-121.27234216509821,51.35324645377222],[-121.26714044085905,51.35338949169777],[-121.2599208457083,51.35313801299874],[-121.25316823764626,51.3524294203366],[-121.2507871598113,51.35193089368543],[-121.24794322926725,51.351316182749486],[-121.24048137155363,51.352780010597684],[-121.23593707137707,51.35457199140796],[-121.23211691305566,51.35619244235008],[-121.22839378997152,51.35757901646542],[-121.22340136652936,51.35937468819862],[-121.2220402204597,51.360234889005625],[-121.21914008991138,51.362132163948495],[-121.21403767690987,51.36267454595807],[-121.20874622274819,51.36309849626546],[-121.20391349509752,51.363808726463226],[-121.19870638362475,51.36411714303784],[-121.18492877605546,51.36412133788748],[-121.17541727522199,51.363593852806986],[-121.17231767006,51.36360455349191],[-121.16856578929807,51.36259655538142],[-121.15858940763428,51.360924297783484],[-121.1540245353567,51.3599754907686],[-121.15153720740051,51.35861221894105],[-121.14674716768806,51.354866027034525],[-121.13897655003818,51.353072791791014],[-121.13167102646261,51.35281561181818],[-121.13120954194756,51.35281937991887],[-121.12829347025043,51.35300037417395],[-121.12419333999891,51.35398673538686],[-121.11725873340201,51.35350110986684],[-121.11130434978082,51.35249224516413],[-121.10491267205633,51.352180563229496],[-121.09880679295628,51.353058461642675],[-121.09415662246363,51.35393052811813],[-121.08677372414857,51.35527261462865],[-121.08049114785919,51.35643487174608],[-121.07356539076923,51.35754630925056],[-121.06800278737849,51.35922286359155],[-121.06208754016254,51.36147088762303],[-121.06036062647935,51.362220542778545],[-121.05545783741744,51.36520131273361],[-121.04964672247496,51.369847843911224],[-121.04539220327017,51.37345998715653],[-121.04303162212686,51.375351399241914],[-121.03822031893434,51.37890461952925],[-121.03366640155149,51.38029314275427],[-121.02727444693757,51.38173915088153],[-121.02189638842114,51.3830134309668],[-121.01953231437166,51.38415572315382],[-121.01433125576553,51.38526255213327],[-121.00439401419855,51.38705679511014],[-120.99992948727528,51.38827476440624],[-120.99692279892155,51.38947992286051],[-120.99418896518557,51.39120207832316],[-120.98991091410745,51.39343796572325],[-120.98681066656476,51.39419163727506],[-120.98316715208507,51.39642275057585],[-120.97933631061717,51.39763540529486],[-120.97396130260731,51.399990283595905],[-120.97122782827402,51.40182162295226],[-120.96657173834194,51.40229425453044],[-120.96310867483959,51.402299517444625],[-120.960821012084,51.402876052270315],[-120.95999540587685,51.40328306874693],[-120.95581075303754,51.40455010043803],[-120.95205907285107,51.40455400080064],[-120.94721073342984,51.40342624751812],[-120.94509532327476,51.40149170121699],[-120.94225130240473,51.400125233790476],[-120.93932183109688,51.39950456802496],[-120.9349428535601,51.39894444405433],[-120.9292727940098,51.39907438417383],[-120.92480512681581,51.399536304011555],[-120.91768115332312,51.40063820787361],[-120.91083623447754,51.40219371408719],[-120.90645591614584,51.40414198387652],[-120.90280987548772,51.40535203596405],[-120.89668952091937,51.40661986705435],[-120.89230702108586,51.40783018581483],[-120.88912068657496,51.4095493045733],[-120.88683849999536,51.41006559092779],[-120.87998324139886,51.41081683207095],[-120.87441368961342,51.41180243394979],[-120.869666766334,51.41414900787715],[-120.86530389672342,51.41814951225785],[-120.86265700913614,51.419930075766814],[-120.85334391221423,51.424280521305896],[-120.84676404876757,51.42697101032608],[-120.84403520091357,51.42857702960513],[-120.84148655638869,51.43086162986173],[-120.83910208507358,51.432235733601175],[-120.83683752987687,51.43566482294312],[-120.83354647466592,51.43823942926221],[-120.8323603528857,51.439610073665946],[-120.82917453003543,51.44263650744486],[-120.82817582951584,51.445606267233494],[-120.82846524251447,51.44965952506176],[-120.82773321040929,51.45183318754923],[-120.8239901080187,51.452462813787264],[-120.82014727864293,51.453325112138565],[-120.81722584145614,51.45458092410387],[-120.81410752872632,51.454072815551655],[-120.81109731823467,51.453506010036946],[-120.8054221537443,51.45385540058354],[-120.80066178302918,51.454775725189435],[-120.7974653150413,51.45615231697059],[-120.7923549949234,51.45758441896155],[-120.78549406306563,51.45964342612359],[-120.78101451581792,51.461475826692414],[-120.77295889039566,51.46336385758021],[-120.76692944201561,51.46291042349161],[-120.7631648053314,51.46297520949512],[-120.75795656582936,51.46217895757108],[-120.7519995877525,51.460756090230255],[-120.74971501482509,51.46052720520926],[-120.74569441791094,51.461042482663416],[-120.7439552710701,51.462417087490294],[-120.74076034924126,51.46424336998058],[-120.73992388640819,51.464471213708734],[-120.73709148780912,51.46555934629952],[-120.73188374487877,51.466932021334394],[-120.72784951656021,51.46876005819285],[-120.72547658081197,51.470471140978646],[-120.72283078084382,51.47578127856134],[-120.72236790780867,51.48012188643056],[-120.7200818148896,51.48086155083558],[-120.71550551747981,51.4818916882177],[-120.70863656795093,51.482749544729835],[-120.69884310007765,51.48303901295548],[-120.69307942961942,51.48383787412372],[-120.68566281161058,51.48515252867596],[-120.68237260900766,51.48498100416701],[-120.67852482526436,51.484638105892124],[-120.67468137101265,51.48509574546683],[-120.67082676989243,51.486241259575664],[-120.66662657071466,51.48749248556274],[-120.66451034167589,51.4892037904649],[-120.6602126464698,51.494112237438166],[-120.65608997948604,51.49947653892675],[-120.65096007535831,51.501816412149516],[-120.64995023577481,51.502270040946804],[-120.64435753146988,51.50329740194145],[-120.64087762791843,51.50455247619428],[-120.63831197497674,51.50495170967057],[-120.631168161691,51.50540791519946],[-120.62320294765165,51.50489041986656],[-120.62045497272982,51.50488628153334],[-120.6114715479663,51.50642194688169],[-120.6033239920769,51.50727095842774],[-120.59956385647115,51.50584784290313],[-120.59864927397851,51.50481425205494],[-120.59471550932494,51.50127648448422],[-120.58859769236412,51.49938909788402],[-120.58154255946117,51.49818682682708],[-120.5733950989554,51.49669674599667],[-120.56543143478433,51.49348941772516],[-120.56187809600704,51.49017835142679],[-120.56161146428654,51.48812452219791],[-120.56115895821884,51.48441677711876],[-120.55989551129508,51.48025214268191],[-120.55687506925395,51.47813767125371],[-120.55773533570282,51.67305372090504],[-120.55912583551252,51.87575393809824],[-120.55920031182822,51.8843736757376],[-120.56030957325369,51.88371437543922],[-120.5605701416977,51.88358502710081],[-120.56132421376391,51.88327215032187],[-120.56205023164236,51.88306703837676],[-120.56244671411767,51.882944703621966],[-120.56272198661036,51.882828978788055],[-120.56318751557885,51.88253333252663],[-120.56334624635295,51.88245988252398],[-120.56371273556398,51.88225625432268],[-120.56391114623827,51.88215713446379],[-120.56471203511622,51.88174635596129],[-120.5650414804683,51.88153253549671],[-120.56536018308434,51.88134632334164],[-120.56596376012827,51.88108420017541],[-120.56677158911879,51.880822204608414],[-120.56716232097408,51.88073107512671],[-120.56760319531811,51.88069124390873],[-120.56803060485171,51.88056922404844],[-120.56851205422957,51.88040871589818],[-120.56879349649407,51.88024322358228],[-120.5691151656513,51.87998910002527],[-120.56966429257773,51.879578161049146],[-120.5704411642865,51.87919826777003],[-120.57083926110742,51.879062476967675],[-120.57108283315168,51.878995854122905],[-120.5712123889361,51.87892213647751],[-120.57159380131546,51.8787006389987],[-120.57177669266744,51.87856477070088],[-120.57192241312515,51.8784198346567],[-120.5720898778866,51.87820282034475],[-120.57226583964817,51.8779322206986],[-120.57241844284538,51.877688074892134],[-120.57260018337179,51.877385688887],[-120.57273835131485,51.87715491363388],[-120.57279934139369,51.87701665213301],[-120.57286744241668,51.87686522154665],[-120.57302098969869,51.876481651494316],[-120.57323501690436,51.87586136669617],[-120.57364676091855,51.87546921451486],[-120.57389892357995,51.87524552935564],[-120.5740743172184,51.87503788609573],[-120.57431855774287,51.874628799962935],[-120.574560781948,51.87426516553784],[-120.57476076365907,51.87397714643854],[-120.57487597207191,51.873754837414154],[-120.57510451121215,51.87335457104699],[-120.57536296395907,51.87297764890532],[-120.57563882724763,51.87253406603263],[-120.57592737282931,51.87179808249343],[-120.57610998998801,51.87129778694622],[-120.57621072538764,51.87097188164477],[-120.57597374313008,51.870971340637254],[-120.57568398110735,51.87096999135197],[-120.57568331601274,51.869656822049365],[-120.5756919848216,51.86888396369627],[-120.57569841660062,51.863748654505244],[-120.58741836708133,51.863742470345464],[-120.58842497494284,51.86374055060043],[-120.59907466845488,51.86373377033149],[-120.599998880954,51.863734611748995],[-120.60791070078895,51.86363500307547],[-120.61175570394924,51.86366356334524],[-120.62223845725313,51.8637367559736],[-120.62222336309225,51.870966702447966],[-120.62939392956056,51.870972461569174],[-120.62912749128421,51.87109268174677],[-120.62885184379418,51.8712580236551],[-120.62861589873941,51.871397100635065],[-120.62841745545607,51.871483393178345],[-120.62779161250616,51.87181225976112],[-120.62750980764474,51.871968303564536],[-120.62726574775319,51.87214355416066],[-120.6270137998987,51.872264449546364],[-120.62668550011192,51.87238345453462],[-120.62634396999394,51.87256537813669],[-120.62613645219722,51.87265124142176],[-120.62599196106109,51.87268438479473],[-120.62566365533195,51.8728033868155],[-120.62547362436936,51.8728805050878],[-120.62509230056143,51.87313366278215],[-120.625015015151,51.87321326315389],[-120.62479487892273,51.87325354478245],[-120.62451896409465,51.87334688500509],[-120.62417654989866,51.87340279656116],[-120.62375629537806,51.87343930839517],[-120.62348881319257,51.873479048120736],[-120.62322967491215,51.873554610988265],[-120.62281800832562,51.87365450501977],[-120.62263489429547,51.873749380762504],[-120.62205515959681,51.874043826483394],[-120.62200961588475,51.87408780056059],[-120.62179553931364,51.87418234620936],[-120.62154427347386,51.87431226014992],[-120.62127739794165,51.874450438188866],[-120.62101659901607,51.8745984653374],[-120.62070386105964,51.87475360842468],[-120.62043084645353,51.874838069231814],[-120.62033022364733,51.874944130325666],[-120.62022328821337,51.875130863455816],[-120.62005568814534,51.87526245408281],[-120.61988131383316,51.87533074380597],[-120.61966745586118,51.875497276217054],[-120.61945351272,51.87570879182502],[-120.61922436869938,51.8758661749175],[-120.6189799271319,51.876058820119496],[-120.61882728913714,51.876172559092815],[-120.61854511216468,51.87630157308703],[-120.61825640463633,51.8763948564547],[-120.61767503143845,51.87659867239459],[-120.61733154919733,51.87678103793899],[-120.617096641551,51.876911153894106],[-120.61679886137027,51.877004007592284],[-120.61642503332169,51.877121962092254],[-120.61621857960435,51.877198861504624],[-120.61611210435835,51.87732263944411],[-120.6160206005749,51.87742855898241],[-120.6157224169975,51.87753938622108],[-120.6154246296092,51.87763223630207],[-120.61514276132284,51.87774382896517],[-120.61471547038116,51.878013915103956],[-120.61471456752858,51.87887706893617],[-120.6146614679392,51.878849271939345],[-120.61460136011503,51.878789645132045],[-120.61456354569086,51.8787119554552],[-120.61454016820159,51.87863550223216],[-120.61453214186407,51.87856764344439],[-120.61459322360471,51.87850134164352],[-120.61465430405427,51.87843504875181],[-120.61464620902939,51.87836774458488],[-120.61461635506512,51.878299426606354],[-120.61457918003909,51.87823132232046],[-120.61454019197996,51.8781631327877],[-120.61448607751547,51.87809928879298],[-120.61444165028955,51.87803084352368],[-120.61438815750091,51.87796197206745],[-120.61432623702818,51.877902268781256],[-120.61425045056592,51.877851469001314],[-120.61416615145268,51.87779577020375],[-120.61408855223077,51.87774488507543],[-120.6140055138042,51.87769374417471],[-120.61393035059872,51.8776379078215],[-120.61385275193223,51.877587022526605],[-120.61378539335992,51.877527063203544],[-120.61370834794114,51.877471705024405],[-120.61364043796296,51.87741620944598],[-120.61357907218023,51.87735203294633],[-120.61350983267592,51.8772925428278],[-120.61345704956112,51.877232701701864],[-120.61339568541169,51.87716851614806],[-120.61334944773981,51.877099985150345],[-120.61330440072759,51.87703657573153],[-120.6132654157264,51.87696838569317],[-120.61323611890832,51.87689558554347],[-120.61322802524924,51.8768282901298],[-120.61323512857858,51.876756076801584],[-120.61325122764211,51.876684853295465],[-120.61327471721083,51.87661285259062],[-120.61328175076075,51.87654120281631],[-120.61325057145856,51.8764688809625],[-120.6132279732697,51.87640090351197],[-120.61330307417693,51.87633920244017],[-120.61335028771668,51.87628181355377],[-120.6133202142971,51.87620054613293],[-120.6132499408149,51.87614943779505],[-120.61314372983198,51.876138262313205],[-120.61302869354928,51.87615422229364],[-120.61289915267788,51.87616950010467],[-120.61278529181635,51.87617595070515],[-120.61267782079616,51.87616021675189],[-120.61257981512688,51.87612692367566],[-120.61247928836322,51.87608452337183],[-120.61238844975522,51.876037512952415],[-120.61229754276992,51.87599105708394],[-120.61220489149977,51.87594396124889],[-120.6121218587048,51.87589281890342],[-120.61203882610437,51.87584167649553],[-120.61195342761279,51.87579492153287],[-120.61187094844384,51.875739306219394],[-120.61179335555194,51.87568841944614],[-120.61171819752164,51.8756325904902],[-120.61164841021098,51.875577571936795],[-120.61157979891375,51.87551304421073],[-120.61151969878499,51.87545342455798],[-120.61144998169976,51.875397842305006],[-120.61138256122106,51.87533843607943],[-120.6113050381952,51.87528699433333],[-120.61121413392532,51.87524053757564],[-120.61113055051175,51.8751938672593],[-120.61103065012433,51.87514642930332],[-120.61093138700139,51.87510858567085],[-120.61083157201084,51.8750752057827],[-120.6107257638742,51.87504605165524],[-120.61061940381816,51.87502136126001],[-120.61051248959835,51.875001152486966],[-120.61039699502734,51.87497659898093],[-120.61028283009622,51.874956039861516],[-120.61016804235562,51.87494051697196],[-120.61006238832545,51.874924865852634],[-120.60994822368717,51.87490430639942],[-120.60983398944741,51.87488431040174],[-120.6097174576561,51.8748681471314],[-120.60961235833719,51.874848013878776],[-120.6094968646775,51.87482345946362],[-120.60939121117116,51.874807807724764],[-120.6092757874582,51.87478268951704],[-120.60916155384459,51.87476269284795],[-120.60905464093297,51.874742482712215],[-120.60894047724608,51.87472192225339],[-120.60883411788255,51.874697239142186],[-120.60871933133741,51.87468171480037],[-120.60860516796734,51.87466115400687],[-120.60849770218226,51.87464541611851],[-120.60849695105769,51.87606643748543],[-120.60849788943656,51.87630941714006],[-120.60849785264111,51.876412887916985],[-120.60798672141823,51.87640232835651],[-120.60765958011851,51.8763638786135],[-120.60734684895874,51.876371085332515],[-120.60665878600496,51.87647872475947],[-120.60593418300546,51.8765132165485],[-120.60534742943956,51.87646534346292],[-120.60450004935754,51.876210051887114],[-120.60357022754232,51.87584009088769],[-120.6028441017538,51.87547466161941],[-120.60216445940712,51.87514627433937],[-120.60179877056692,51.875021637543796],[-120.6013953256222,51.87493682550571],[-120.60127998697024,51.874925766459405],[-120.60024279482619,51.87476047883551],[-120.59999953182633,51.8746927764397],[-120.59949543269161,51.87455204267922],[-120.59886871765592,51.874179457732005],[-120.59828149102138,51.87354722976134],[-120.5975723315429,51.87338388699539],[-120.5972587808184,51.87310366573234],[-120.596641343666,51.8730683527029],[-120.59648883038618,51.87303360749181],[-120.59643619796545,51.87304630396675],[-120.59539740470744,51.87289439042946],[-120.59485635025572,51.87269902889369],[-120.59465871636282,51.87264583909113],[-120.59429825172528,51.87255290586494],[-120.59382626288001,51.87240353770645],[-120.59308600031571,51.87206492309468],[-120.59262097731073,51.87166843876211],[-120.59193371109001,51.871079253787585],[-120.59175796197533,51.87042368002148],[-120.59174295857602,51.86994214602677],[-120.59162171900569,51.869831821789575],[-120.59136873044572,51.86975464183224],[-120.59105741325816,51.869721387624516],[-120.59078896144254,51.86966597067964],[-120.59030873284738,51.86953924897719],[-120.58972221981969,51.869225865326435],[-120.5896602924558,51.868946256282335],[-120.5896520939985,51.868747916260475],[-120.58946273504266,51.868613568477805],[-120.58891280641707,51.868490295994405],[-120.58869836073364,51.86849928531033],[-120.58803583129537,51.868489919417634],[-120.58740947969865,51.868468195617325],[-120.58616687707618,51.86840215349877],[-120.58605255281093,51.86842711760085],[-120.5857080237346,51.8684558214831],[-120.58557849615157,51.86847106856453],[-120.58530501483209,51.86851494403328],[-120.58478528582457,51.86854491842571],[-120.58445769389377,51.86856936257445],[-120.58422829150636,51.86865467650789],[-120.58400671893504,51.86879435670237],[-120.58393033288328,51.869012876111555],[-120.58382301476168,51.86928955293335],[-120.58380808192203,51.86958577768279],[-120.58399145885126,51.86978283775182],[-120.5845497353731,51.87001506083698],[-120.58452553028998,51.8704593120793],[-120.58427362733106,51.87093103876482],[-120.5840378820694,51.87121401541161],[-120.58385559037666,51.87144833913862],[-120.5835032826738,51.8717741579735],[-120.58293870055986,51.872193980078734],[-120.58284108228257,51.872524535043965],[-120.58314552614006,51.87293596381187],[-120.58319859716698,51.87330120501676],[-120.58310600610763,51.873649993381605],[-120.58265624745097,51.874099421635144],[-120.58229063879546,51.874370630117625],[-120.5818096626914,51.874733666119546],[-120.58120699176027,51.87506338343006],[-120.58066664162858,51.875375809885504],[-120.58027601186915,51.875745363713676],[-120.58017739173673,51.87587847363218],[-120.58005592129356,51.8760779955573],[-120.57993382442916,51.876282544546534],[-120.57986463726584,51.876442915701695],[-120.57976518844008,51.876611986655206],[-120.57952101953137,51.876903545761444],[-120.57942246347316,51.87703610028914],[-120.57923183140876,51.877293084728414],[-120.57899492586051,51.87764347282921],[-120.57885032922223,51.87795549764825],[-120.57873626218536,51.87822734277103],[-120.57865995771195,51.878400882303666],[-120.57850641751169,51.878667485083604],[-120.57832973890416,51.878988113721235],[-120.57820853947655,51.87921463141845],[-120.57804070536939,51.87950811771145],[-120.57784294519041,51.87977825965504],[-120.57766755043203,51.87998590779567],[-120.57741534235309,51.880327137832964],[-120.57707924550348,51.88069757195153],[-120.57670581146856,51.88098694854316],[-120.5761635573186,51.881357753264936],[-120.5757743352308,51.881583394613166],[-120.5753178840244,51.88182159803956],[-120.57507361650094,51.88193768560869],[-120.57442462455617,51.88225731491808],[-120.57368497870323,51.882660368086],[-120.57322593039451,51.88293387477189],[-120.57289093286677,51.88313395721907],[-120.57243285808276,51.88344348981922],[-120.57200622004832,51.88369096687666],[-120.57188417877427,51.88373354903553],[-120.57154190721535,51.88387479697713],[-120.57118268613269,51.884020306736055],[-120.57064108872538,51.88418022637702],[-120.5700383870843,51.884288884092996],[-120.56945046488933,51.88436674651274],[-120.5691062927688,51.88444996898532],[-120.56884002324209,51.88455207162153],[-120.56846565418635,51.884701912303036],[-120.56838168552902,51.884731674120644],[-120.56753482107734,51.885262337374904],[-120.56709258600749,51.88553211118353],[-120.5667279005063,51.88579432227951],[-120.56609267106174,51.88616348340173],[-120.56549188495602,51.88646116664125],[-120.56502598091335,51.88661340434015],[-120.56443843626167,51.88673175154856],[-120.56394930108199,51.88686544510803],[-120.56350660956254,51.88709470305792],[-120.56302708701877,51.88734132359522],[-120.56249189870675,51.887595432578806],[-120.56201927662585,51.88774284122163],[-120.56163787979526,51.887919322030534],[-120.56131792729667,51.88811502232102],[-120.56069999961424,51.888344951247845],[-120.55922880202529,51.888717134259544],[-120.5592969013895,51.91598113092819],[-120.55847653054127,51.91611878412022],[-120.5580290718513,51.916193717209076],[-120.55758217187058,51.91626416724991],[-120.55713415097759,51.91634356919914],[-120.5566872480162,51.91641401574971],[-120.55622575612392,51.916484334883],[-120.55577828981757,51.91655925918184],[-120.55533124261564,51.91663081853081],[-120.55488377327006,51.91670573933618],[-120.5544364433706,51.91677953136457],[-120.55398939059077,51.91685109442326],[-120.55352740067622,51.916925311512166],[-120.55307985582098,51.91700077984175],[-120.55263293845941,51.917071219525965],[-120.5521853211576,51.91714723893005],[-120.55173840085081,51.91721767512553],[-120.55127654317066,51.917290765059015],[-120.55082892013223,51.91736678810859],[-120.55038199650535,51.917437210069764],[-120.54993444095592,51.91751266611307],[-120.54948695329497,51.91758756584125],[-120.54903946521722,51.91766245487719],[-120.54859239453444,51.91773399688039],[-120.54813052611574,51.91780707413412],[-120.54768345245984,51.91787861259142],[-120.54723539808883,51.91795796688256],[-120.54678783175287,51.9180334106342],[-120.54634089365102,51.91810382577918],[-120.54589325478763,51.91817982060082],[-120.54544519294483,51.91825917683428],[-120.54498331369243,51.91833224140289],[-120.54453566899853,51.91840823986457],[-120.5440881640009,51.918483109562324],[-120.54364051619893,51.91855910452632],[-120.54319244748268,51.91863844300387],[-120.54274486717172,51.918713870961305],[-120.54229728531271,51.91878929717035],[-120.54184970190569,51.918864721630776],[-120.54140218649259,51.918939589781466],[-120.54095354892759,51.919023391767354],[-120.54050589011932,51.91909937448271],[-120.54005837111393,51.91917422843964],[-120.53961084945043,51.91924908959311],[-120.53916276631657,51.91932841230786],[-120.53871510125812,51.91940438802571],[-120.53826645374956,51.919488179485235],[-120.53781885620083,51.91956358819727],[-120.53737125710435,51.91963899516069],[-120.53692309516924,51.91971887261669],[-120.53647556253645,51.91979372152275],[-120.53602676637452,51.91987862226794],[-120.53557923056435,51.91995346767231],[-120.5351315539715,51.92002942044204],[-120.53468345355219,51.92010873457851],[-120.53423591419886,51.92018356579119],[-120.53378767016228,51.920263994479974],[-120.53333956601251,51.92034329441479],[-120.53289145910982,51.920422601540814],[-120.53244391346138,51.92049742575307],[-120.5319956628947,51.92057784742899],[-120.53154811411646,51.92065266814197],[-120.53109986030252,51.920733086312225],[-120.53065174644648,51.92081237573218],[-120.53020356014977,51.92089222689668],[-120.52975593425397,51.92096760410609],[-120.52930774472203,51.92104745176555],[-120.52885962325387,51.92112674311891],[-120.52841136073496,51.92120714182313],[-120.52797775416651,51.92128712242802],[-120.52753005064899,51.92136304549175],[-120.52708192270642,51.921442329890176],[-120.5266343566285,51.92151713140724],[-120.52618608487039,51.92159753034708],[-120.5257379532003,51.9216768005434],[-120.52528981877617,51.92175607793089],[-120.52484224640502,51.921830872446904],[-120.52439453072257,51.92190679220184],[-120.5239463926186,51.92198605538961],[-120.52349818198581,51.92206588031715],[-120.52304996971232,51.9221457034907],[-120.52260231858988,51.922221052748995],[-120.52215473571263,51.92229584571064],[-120.52170644881915,51.92237621817519],[-120.52125886281316,51.92245100763721],[-120.52081057267384,51.922531376595785],[-120.52036242051285,51.92261063470682],[-120.51991483092247,51.922685409973894],[-120.51946723867108,51.92276019243692],[-120.51901908284393,51.92283943634868],[-120.51900407096376,51.92284266005497],[-120.51855626489417,51.92291911154001],[-120.51812318762315,51.92299457375417],[-120.51767551927657,51.92306990376267],[-120.51721333076574,51.92314453790657],[-120.51677961454224,51.92322503066157],[-120.51631749272207,51.92329910664818],[-120.51586918476,51.923379456269146],[-120.51542157844898,51.9234542229279],[-120.51497340813953,51.92353345101294],[-120.51452565780286,51.92360933220146],[-120.51407804795663,51.92368408466764],[-120.51362987171684,51.92376331644094],[-120.51318225875477,51.923838065407644],[-120.51273400939078,51.92391784821772],[-120.51228632225926,51.923993157169804],[-120.51183863358156,51.92406846437276],[-120.51139044932329,51.92414768738513],[-120.51094268757464,51.924223545627676],[-120.51049506415524,51.924298293041026],[-120.51004687622257,51.92437750185315],[-120.50959910864907,51.92445336378921],[-120.50915105854573,51.92453145107447],[-120.50870328783327,51.924607309509724],[-120.50825509347061,51.92468651131201],[-120.50780731960762,51.92476236624566],[-120.50735968641283,51.92483709246639],[-120.50691141612964,51.92491685249357],[-120.50646314420675,51.924996610766556],[-120.50601543517368,51.92507189521646],[-120.50556779460229,51.925146623380954],[-120.50511944784698,51.92522693093246],[-120.50467180414891,51.925301655596535],[-120.50422359532907,51.925380841626705],[-120.50377524256093,51.92546115286144],[-120.5033277364878,51.925534745316405],[-120.5028799453456,51.925610580993634],[-120.50243173009714,51.92568976001362],[-120.50198344203714,51.925769500757646],[-120.50153515233772,51.92584923974731],[-120.50108742604485,51.925924504941484],[-120.5006396982065,51.92599976838622],[-120.50019140368302,51.92607950211784],[-120.4997431776034,51.92615867956303],[-120.4992948097182,51.92623896431814],[-120.49884714565242,51.92631366622643],[-120.498398915856,51.926392829468185],[-120.49795110733243,51.926468645882395],[-120.49750287431647,51.926547805618384],[-120.49705463854232,51.92662697254475],[-120.49660640227172,51.926706128773155],[-120.4961585874146,51.9267819381816],[-120.49571034792469,51.926861090904325],[-120.49526252991855,51.926936896810794],[-120.49481372150606,51.92702051803384],[-120.49436597158866,51.92709575696332],[-120.49391772448779,51.92717491161628],[-120.49346990127455,51.92725070157245],[-120.49302165095453,51.92732985271954],[-120.4925738245928,51.927405639173664],[-120.4921250050685,51.927489258805835],[-120.4916773170195,51.92756392375813],[-120.49122891870643,51.927644185888084],[-120.49078122753262,51.92771884733954],[-120.49033353369347,51.92779351598599],[-120.48988470701376,51.92787711789646],[-120.48943686844788,51.927952901034075],[-120.48898860472264,51.928032027457654],[-120.48854083437004,51.928107243624666],[-120.48809249606495,51.928186930010526],[-120.4876447225761,51.92826214267589],[-120.48719645128715,51.92834127103157],[-120.48674803786723,51.92842150667959],[-120.48630032990862,51.928496159568276],[-120.48585191324712,51.92857639170888],[-120.48540420216418,51.928651041096444],[-120.48495592394535,51.92873015174193],[-120.48450820974992,51.92880479762891],[-120.48405992832494,51.92888390476885],[-120.48361206929779,51.928959665141136],[-120.48316435157933,51.929034296834075],[-120.48271599391877,51.92911396218044],[-120.48226763461996,51.92919362577208],[-120.48181984074819,51.929268815675776],[-120.48137211565404,51.92934344931036],[-120.48092424837184,51.929419190234086],[-120.4804759529949,51.92949829229555],[-120.48002765712603,51.929577383659],[-120.47957992579626,51.92965201029153],[-120.47913162672185,51.92973109814927],[-120.47868375043187,51.929806839259896],[-120.47823601558103,51.9298814516981],[-120.47778764020687,51.92996109775847],[-120.47733990110373,51.93003571563935],[-120.47689201970803,51.930111440803685],[-120.47644427752856,51.93018605518564],[-120.47598201462401,51.93025995955406],[-120.47553483708603,51.930330098483076],[-120.47508765924496,51.93040022672406],[-120.47464040842061,51.930470916679425],[-120.47417870616867,51.93054035082725],[-120.47373223388055,51.93060488391891],[-120.47328554671842,51.930671096701374],[-120.4728238401895,51.93074052539433],[-120.4723777898868,51.93080169930092],[-120.4719172167329,51.930862180583176],[-120.47145614573859,51.930926568435744],[-120.47101023366302,51.93098661905612],[-120.47054958619678,51.931047649360316],[-120.47008957620146,51.93110365143528],[-120.46962970824619,51.93115852475611],[-120.46917033590442,51.931209487826074],[-120.46871153092432,51.93125597719699],[-120.46825222697466,51.931306382082276],[-120.46779455705763,51.93134392407282],[-120.46733638941527,51.93138537263949],[-120.46687942866252,51.93141732116686],[-120.46640823100698,51.9314463314229],[-120.46595240637791,51.9314693325661],[-120.4654831982374,51.93148268756715],[-120.4650145586272,51.93149156881121],[-120.46454648769188,51.931495976305186],[-120.46407898557564,51.93149591005622],[-120.46361262138379,51.931486898236706],[-120.46314739540266,51.93146894086024],[-120.462682738861,51.93144650977033],[-120.46221865190093,51.931419604973634],[-120.46175513466423,51.931388226476656],[-120.46129325396838,51.93134399408872],[-120.46083187286747,51.93129584252723],[-120.46037120439897,51.93124209933736],[-120.4599118180743,51.931178292709426],[-120.45945342951451,51.93110665856489],[-120.45899603896147,51.93102719691419],[-120.45855551999794,51.93092998426688],[-120.45811592789353,51.93082550770361],[-120.45769256675884,51.93070831565779],[-120.45730024176554,51.93057687408383],[-120.45692514498064,51.93042489180954],[-120.45655325463174,51.9302477588631],[-120.45621268714523,51.93005413217116],[-120.45587361766476,51.929848770427036],[-120.45556565578664,51.92962860564214],[-120.45525841039665,51.92940284129427],[-120.45495095393605,51.92917875747722],[-120.4546574503393,51.92895984661084],[-120.45436487516467,51.928733672750454],[-120.45408860392241,51.92849422134622],[-120.45382657005707,51.928257707249365],[-120.45356575074032,51.92801168546268],[-120.45331938168367,51.92776692866451],[-120.45305792635283,51.92752594086506],[-120.45281149106903,51.927281746320176],[-120.45254961392554,51.92704411111026],[-120.45227265077608,51.92681024473274],[-120.45197967596505,51.926587409277666],[-120.45168506448982,51.9263774339159],[-120.45134490461925,51.92618100174049],[-120.4509882336661,51.92599951732111],[-120.45058444646371,51.925843872877905],[-120.45016336314164,51.92570932886059],[-120.44972576913383,51.92558972296186],[-120.44928340025622,51.92550757107234],[-120.44883996298033,51.92543380654299],[-120.44838051210856,51.9253710714459],[-120.44793436906951,51.925318535440155],[-120.44747263857461,51.92527368383192],[-120.44701033844733,51.9252333021435],[-120.4465474685471,51.925197390368474],[-120.44606893990435,51.92516971716996],[-120.44560493000425,51.92514274514143],[-120.445139849909,51.92512416027525],[-120.44467527024848,51.9251016562599],[-120.44421004941253,51.92508417662806],[-120.44374432882812,51.925070612375336],[-120.44327803757079,51.92506151799395],[-120.44281231751827,51.92504794996386],[-120.44234488458159,51.92504779530922],[-120.44187745164821,51.925047638753234],[-120.44142510790714,51.92504371223772],[-120.44095653261994,51.9250524954353],[-120.4404878143318,51.925062394658504],[-120.44001923865513,51.925071174034166],[-120.43955051995353,51.925081069434135],[-120.43909589050864,51.92509502071134],[-120.43862674276114,51.92510826614679],[-120.4381575947287,51.925121509666766],[-120.43768901794803,51.92513027954035],[-120.43721929780904,51.92514799096031],[-120.43674900565499,51.925170172185894],[-120.4362775696581,51.925201294933636],[-120.43582057895794,51.92523368358267],[-120.43536115866965,51.92528506627452],[-120.43491503962883,51.925346658509575],[-120.43448000615602,51.92543578385994],[-120.43405405579296,51.92556809343397],[-120.43366615157598,51.92574556009698],[-120.43334726138148,51.92595448821532],[-120.43311233052228,51.92619224719604],[-120.43291880816268,51.92644887988603],[-120.4327521740396,51.92672369958424],[-120.4326135028226,51.92700830854522],[-120.43247568794493,51.92728620972312],[-120.43233801434002,51.927562992744186],[-120.43222844747991,51.92784844726709],[-120.43213261082657,51.928140759524574],[-120.43202318306604,51.928425104727694],[-120.43185832438557,51.928685944153735],[-120.4316378910053,51.92892439550192],[-120.43134650361274,51.9291464699749],[-120.43101255681604,51.92935860322217],[-120.43066551818936,51.9295588512171],[-120.43027692135117,51.929741331983145],[-120.42987802266855,51.929890132142084],[-120.42946753610697,51.93001530391569],[-120.42903058433114,51.930118941199666],[-120.42859484768991,51.930213070051956],[-120.42815968060405,51.93030273452464],[-120.42769733473386,51.930376444663025],[-120.4272356309911,51.930445126793316],[-120.4267757149912,51.93049983761315],[-120.4263157268132,51.930555101074944],[-120.42585759914024,51.930595829829166],[-120.42538545280797,51.93063193387964],[-120.42492904221254,51.93065924398629],[-120.4244596870627,51.93067354943152],[-120.42400542425055,51.930684087207645],[-120.42353850403882,51.93067938441698],[-120.42307273014441,51.93066573645684],[-120.42260752969727,51.93064761497485],[-120.42214175643367,51.93063396324142],[-120.42166203714157,51.930615131807926],[-120.42119683782073,51.930597004615215],[-120.4207316388867,51.930578875539275],[-120.42026472015527,51.93057415944819],[-120.41979722808206,51.930573913080586],[-120.41934368204411,51.93057884290693],[-120.4188738957755,51.93059647925562],[-120.41840410912688,51.93061411368368],[-120.41793374846358,51.93063621780211],[-120.41746338732341,51.93065831999514],[-120.416977358723,51.930688656699964],[-120.41651979470936,51.930724876622165],[-120.41604656274738,51.93076933103133],[-120.4156010053675,51.93082582191006],[-120.41515372621168,51.93089571690321],[-120.41471902747816,51.93098141331221],[-120.41429640708057,51.93108681944654],[-120.41389966660692,51.9312182320843],[-120.41351514703587,51.93136823689419],[-120.41315578886568,51.931549838104125],[-120.41279470517344,51.93174485290393],[-120.41244749154818,51.93194560888102],[-120.41210027587408,51.93214635483054],[-120.41175305585423,51.932347108638986],[-120.41140705366105,51.932538354803796],[-120.41103265496832,51.93272314986223],[-120.41067341889405,51.93290362520276],[-120.41032798199625,51.93309039646096],[-120.4099674473849,51.933280930552364],[-120.40960798628417,51.933463083781206],[-120.40926261278503,51.93364928832946],[-120.4089027871505,51.93383422954429],[-120.40854338944516,51.93401581593971],[-120.40817018655505,51.93419110386219],[-120.40779712434501,51.934365272659576],[-120.40741111911265,51.93452643549553],[-120.40702539843002,51.9346853612422],[-120.40662630389987,51.93483463451695],[-120.4062279252526,51.934978316967324],[-120.40580222716501,51.935107167055236],[-120.40539061617059,51.93524007743689],[-120.40496620686346,51.935358863457445],[-120.40454251408363,51.935472058492444],[-120.40410487328091,51.935580072034405],[-120.40366945849594,51.93567076123248],[-120.40321980967029,51.93575849556298],[-120.40277303417574,51.935823879497654],[-120.40231180881652,51.93588798965741],[-120.40186503178401,51.93595336111241],[-120.4010909497594,51.93606406688431],[-120.4002925911248,51.93590923120845],[-120.39978888886674,51.93584921069426],[-120.39904708394849,51.93593616394043],[-120.39449692818383,51.93575383415224],[-120.39373215039267,51.935678769089975],[-120.39278668410687,51.93575854498194],[-120.39133795688365,51.93577490194644],[-120.39034820040405,51.93608478224069],[-120.38965753158283,51.936454846874156],[-120.38864596592506,51.93716018328717],[-120.38759632705005,51.93770728621289],[-120.38673820179848,51.93801571310693],[-120.38567303797079,51.93811657408536],[-120.3830867728182,51.938453989408515],[-120.38163045879725,51.93864140289239],[-120.38051811304189,51.938994138718776],[-120.37990601350789,51.93965992060143],[-120.37978670935073,51.940357151320605],[-120.3799574792461,51.94095835051727],[-120.38004356556634,51.94142321791863],[-120.37975122169082,51.942215463262855],[-120.3792811692369,51.942573224096066],[-120.3786260674599,51.94289265925767],[-120.37773721410046,51.94321132718841],[-120.3768904721415,51.94354330204738],[-120.37588778959795,51.94395087103873],[-120.37429646601791,51.94484140956766],[-120.37337760924554,51.94539143482043],[-120.37247895492301,51.94601106491587],[-120.37193284332604,51.94650399250924],[-120.37190609499062,51.947275503409436],[-120.37197201408561,51.947782702682815],[-120.37190100487389,51.948218506559556],[-120.37176732702594,51.948799717057454],[-120.37171241795463,51.949336986389206],[-120.3717381746926,51.94970272451831],[-120.37169246294158,51.95005595751995],[-120.37156868556266,51.95056060029738],[-120.37140053236003,51.95106925767198],[-120.37109867831045,51.95159441253884],[-120.37090595023713,51.95206698215632],[-120.37063250002413,51.95248553697595],[-120.3702053170776,51.95296236139669],[-120.36968868873981,51.953226676535415],[-120.36914423113271,51.953480066695604],[-120.36808017347906,51.95390763258144],[-120.36652532552333,51.95451244915503],[-120.35647563757425,51.95816628492406],[-120.35632230820667,51.95822118310465],[-120.35613651409817,51.9583009159795],[-120.35594999385935,51.958386237537646],[-120.35576296563735,51.95847546660693],[-120.35556249651762,51.95855560184208],[-120.35537611917034,51.95863980465352],[-120.35519017643492,51.95872065376721],[-120.35500379766223,51.95880485596315],[-120.354816692565,51.95889464683032],[-120.35463081968658,51.95897494059503],[-120.35442976566165,51.95905954500284],[-120.35424323883363,51.959144863736554],[-120.35405685641663,51.95922906436688],[-120.35387040128667,51.95931381911489],[-120.35368387227494,51.95939913692259],[-120.35349734253276,51.959484454421386],[-120.35329700976656,51.959563467843594],[-120.35311047856347,51.95964878470279],[-120.35292351111323,51.95973745463108],[-120.35273755914316,51.95981829970214],[-120.35255102575377,51.95990361563505],[-120.35235061616984,51.959983190747046],[-120.35216408131694,51.960068506040216],[-120.35197769093146,51.96015270323331],[-120.351791227805,51.96023745454244],[-120.35160527160035,51.96031829774762],[-120.3514043507159,51.96040177897715],[-120.35121839309215,51.96048262154523],[-120.35103141821371,51.96057128833332],[-120.35084545917465,51.960652130286505],[-120.35064504303324,51.960731702374744],[-120.35045850163647,51.96081701484604],[-120.35027217795641,51.96090064585495],[-120.35007168758123,51.96098077134975],[-120.34988587026851,51.96106049393495],[-120.34970005227584,51.96114021621432],[-120.34949897868611,51.96122481184275],[-120.34931308606866,51.96130509685008],[-120.34911273734427,51.9613841028586],[-120.34892626337567,51.96146884943209],[-120.34872576791098,51.961548972541095],[-120.3485400910035,51.961627575127025],[-120.34833901291263,51.961712168691676],[-120.34815369728445,51.961787980651636],[-120.34795334423742,51.96186698460736],[-120.34776686594722,51.96195172926556],[-120.34756709271502,51.96202626140144],[-120.34738126636107,51.962105979867616],[-120.34718083720608,51.962185545818656],[-120.34697989923441,51.96226901918314],[-120.34679458003573,51.962344819974305],[-120.34659407662029,51.9624249393064],[-120.34640839213439,51.96250353839106],[-120.346207959374,51.962583102619234],[-120.34602198279943,51.962663936632005],[-120.34582169512294,51.962742373452755],[-120.34562118808905,51.96282249106108],[-120.34543608165333,51.96289661742741],[-120.34523506378807,51.962980651053265],[-120.34504966525289,51.96305701234702],[-120.34484879245622,51.963139918564394],[-120.34464886338841,51.963215563333776],[-120.34446317202399,51.96329415922405],[-120.34426273207443,51.96337372000782],[-120.34406221926848,51.963453834854455],[-120.34387703537142,51.9635285130889],[-120.34367608487675,51.96361198058417],[-120.34347629703451,51.96368650550712],[-120.34329096454802,51.96376230950188],[-120.3430900118523,51.96384577595619],[-120.34289014979552,51.96392085426293],[-120.34270430680404,51.964000565041346],[-120.34250393370172,51.964079559352314],[-120.34230406839892,51.96415464556769],[-120.34211822333793,51.964234355382935],[-120.34191777594475,51.96431390307293],[-120.34173192949774,51.96439361225312],[-120.34153155282479,51.96447260484315],[-120.34133110210048,51.96455216043653],[-120.34114590885397,51.9646268342026],[-120.34094538454984,51.96470694352843],[-120.3407451505113,51.96478481695444],[-120.3405597364298,51.96486117089114],[-120.34035870009549,51.96494519585096],[-120.34015897380608,51.96501915156862],[-120.33997297561064,51.96509997562923],[-120.3397727380277,51.965177847335845],[-120.33957286297974,51.96525292873369],[-120.33938686269896,51.96533375183005],[-120.33918655080437,51.96541217691442],[-120.33900069467569,51.96549188160558],[-120.33880089021577,51.96556639828569],[-120.33859984723522,51.96565042011996],[-120.33841457127468,51.96572565277256],[-120.3382141102582,51.965805193905226],[-120.33802766837434,51.96588936806925],[-120.33782786042727,51.96596388303345],[-120.33762681373595,51.96604790313811],[-120.33744138881409,51.966124251964274],[-120.337241069783,51.96620267360682],[-120.33705506112175,51.96628349286591],[-120.33685481288393,51.966361359413],[-120.33666880282864,51.96644217803644],[-120.33646833416307,51.96652172501921],[-120.33628188583992,51.966605896301225],[-120.33608141687957,51.96668543365629],[-120.3358955496385,51.966765133242035],[-120.3356945689247,51.96684858655781],[-120.33550862687576,51.96692884886],[-120.33530808161086,51.96700894819789],[-120.33512221157481,51.967088646511705],[-120.33492173827594,51.96716818181237],[-120.3347358668538,51.967247879490785],[-120.33453546436886,51.9673268596972],[-120.33434886319122,51.96741214554917],[-120.33414838582645,51.96749168842191],[-120.33396251160933,51.967571384828304],[-120.33376145121085,51.967655389117596],[-120.33357557558746,51.96773508488749],[-120.33338969928398,51.967814780351496],[-120.33318914604507,51.967894875933574],[-120.33300261207147,51.967979605150795],[-120.33280278594319,51.968054111250865],[-120.33261683458713,51.968134359852485],[-120.33241584127607,51.96821780734042],[-120.33221543012341,51.968296783438475],[-120.33203005843214,51.96837256898439],[-120.33182906289812,51.9684560154298],[-120.33164369102315,51.96853179140057],[-120.33144327702627,51.96861076613184],[-120.33124286230277,51.968689740508594],[-120.33105690419401,51.96876999548627],[-120.33085648803757,51.968848969178964],[-120.33065658194722,51.9689240259015],[-120.33047142412704,51.96899812779023],[-120.33027093238428,51.96907766379572],[-120.33007109654748,51.96915216507946],[-120.3298711877127,51.96922722041746],[-120.32967091310405,51.969305074259054],[-120.32948553269586,51.96938085563822],[-120.32928569412512,51.96945535553803],[-120.32908578254586,51.9695304094914],[-120.3288860884273,51.969603790934435],[-120.32868675762079,51.96967438211628],[-120.32847245874683,51.969747599332],[-120.3282733459529,51.9698165086898],[-120.32807357564911,51.969890452050976],[-120.32787438923013,51.96995991511439],[-120.32766059749446,51.97002922314214],[-120.32746199205587,51.97009422342256],[-120.32724783492395,51.97016632057993],[-120.32704849888881,51.97023690888864],[-120.32684989275707,51.97030189915865],[-120.32663631595284,51.97036953310922],[-120.32643712505156,51.970438993655165],[-120.32622464171683,51.97049823924725],[-120.32601091708037,51.970566989773644],[-120.32581245380001,51.97063086048591],[-120.32559931150192,51.97069513924885],[-120.3253861697421,51.97075940867131],[-120.32517302618604,51.97082368663727],[-120.32497514421381,51.9708830849039],[-120.3247619994461,51.970947362101434],[-120.3245490011548,51.97101051221278],[-120.3243358551348,51.97107478861366],[-120.32413782493161,51.97113530317254],[-120.32392540746686,51.97119399008049],[-120.32371240675688,51.97125713862928],[-120.3234998421591,51.97131694248971],[-120.32328800800273,51.97137114829309],[-120.3230755882431,51.9714298336198],[-120.32284922143323,51.97148331999689],[-120.3226373120799,51.971538087936786],[-120.32242547460692,51.971592301083454],[-120.32219983615596,51.9716401974627],[-120.3219885092465,51.97169049323134],[-120.3217627226266,51.971739515433015],[-120.32153766675539,51.97178293954134],[-120.32131253683956,51.97182692654918],[-120.32108740646908,51.971870913114834],[-120.3208773178705,51.97191171050858],[-120.32065284439106,51.97195066191858],[-120.3204281508557,51.97199129396972],[-120.32020425960722,51.972025782485154],[-120.31998029555915,51.972060824962476],[-120.31975647721521,51.97209474926403],[-120.31951863861772,51.97212403751395],[-120.31929525781905,51.97215460770143],[-120.31907246103617,51.97218070650348],[-120.31883527832339,51.972204967989754],[-120.31861196909293,51.97223498245061],[-120.31837405532562,51.97226483167022],[-120.31815140353342,51.972289810949306],[-120.31792867901424,51.972315344194065],[-120.31769091045818,51.97234407426271],[-120.31746752724854,51.9723746408955],[-120.3172296119343,51.97240448774478],[-120.31700637422736,51.97243393574539],[-120.31678174728462,51.97247400626119],[-120.3165572672458,51.972512949660825],[-120.3163322746824,51.97255580916078],[-120.31610757399586,51.972596432752],[-120.3158831652216,51.972634820436404],[-120.31564531990205,51.97266410960696],[-120.31542251832671,51.972690201328916],[-120.31518642777058,51.97270606781663],[-120.31496552616991,51.97271762813325],[-120.31473126215847,51.97271952650766],[-120.31449758293266,51.97271695347955],[-120.31426331890445,51.972718850901124],[-120.31402963970993,51.97271627692246],[-120.31379537566497,51.97271817339117],[-120.31356228140373,51.9727111275412],[-120.31332918721792,51.97270408121897],[-120.3130960931075,51.97269703442437],[-120.31286358404586,51.97268551624011],[-120.31263049011014,51.97267846850211],[-120.31239856629152,51.972662478461565],[-120.31216664264318,51.97264648795327],[-120.31193413409713,51.9726349678901],[-120.3117027958573,51.972614505533436],[-120.3114714578348,51.97259404271128],[-120.31124012002967,51.972573579423454],[-120.31100936760375,51.97254864476172],[-120.31077861544196,51.97252370963656],[-120.31054771724226,51.97249989177464],[-120.31033208253373,51.972471205039255],[-120.31010191642343,51.972441797649715],[-120.30987175062393,51.97241238979894],[-120.30964202411009,51.97237962831028],[-120.30941302959546,51.97234127773565],[-120.30918345013815,51.972307397603934],[-120.3089550417758,51.97226457521489],[-120.30874109169305,51.97222303612708],[-120.30851253785467,51.972181330581],[-120.30828413081294,51.972138506855174],[-120.30807076861737,51.97209248667808],[-120.30784353343577,51.9720407202833],[-120.30763068391262,51.971990791724295],[-120.3074178348774,51.97194086276922],[-120.30719096664265,51.971886305241654],[-120.30697936353495,51.97182687035479],[-120.30678221862662,51.97176871907867],[-120.3065709082796,51.97170705693121],[-120.30636047814225,51.97163867911791],[-120.30616494543821,51.97156823183079],[-120.30597058469627,51.9714888424332],[-120.30577563897911,51.97141392358799],[-120.30558127963516,51.971334533521954],[-120.30538743292013,51.971251235568765],[-120.30519300237773,51.971172399225374],[-120.30499974288561,51.97108462972272],[-120.30480531378845,51.971005792712646],[-120.30461103067262,51.97092584658992],[-120.30441718880313,51.97084253803058],[-120.30422283448425,51.970763145630194],[-120.30402789502052,51.97068822377629],[-120.30381849790403,51.97061202615395],[-120.30362290126843,51.97054212887268],[-120.30341291964918,51.970470401381505],[-120.30321703133387,51.970402738840654],[-120.3030220213829,51.970328378589436],[-120.3028120429553,51.97025664104627],[-120.30260140539119,51.97018993732061],[-120.30240595793464,51.97011892916763],[-120.30219554200654,51.97005054364207],[-120.30200002316651,51.96998008917921],[-120.30179004692855,51.96990835869086],[-120.30157948646111,51.96984108974406],[-120.30138345612306,51.969774550703605],[-120.30117289693021,51.96970728100476],[-120.30096226453229,51.96964057424612],[-120.30075126583414,51.969576665861105],[-120.30055523912337,51.96951011645242],[-120.30034402240992,51.96944787941762],[-120.30013302555203,51.96938396988801],[-120.29992195661745,51.96932061435504],[-120.29971022932125,51.96926228368215],[-120.299498575293,51.969203398229645],[-120.29928684796073,51.96914507571335],[-120.29907468261298,51.96909009700855],[-120.29886303028042,51.96903121037787],[-120.29863567541426,51.9689805433739],[-120.29842351051681,51.968925572402],[-120.29821127343801,51.96887115542251],[-120.29799852433479,51.968820645577615],[-120.2977717580426,51.968765506000175],[-120.29755893606712,51.968715558665565],[-120.29734604067916,51.968666174262594],[-120.29711942265048,51.96860991567824],[-120.29690667608901,51.968559403802615],[-120.2966932695355,51.968513925709935],[-120.29646591989258,51.968463254395026],[-120.29625317363181,51.96841275024619],[-120.29602523838548,51.968366548905465],[-120.29581249428118,51.96831603499555],[-120.29559982341925,51.968264966305135],[-120.29537232967034,51.96821541052968],[-120.29515848635641,51.96817328271052],[-120.2949312130337,51.96812205396274],[-120.29471781068486,51.96807657218801],[-120.29450506951265,51.96802605584753],[-120.29427728484787,51.967978733317395],[-120.2940493539679,51.96793252804417],[-120.29383654032968,51.96788257378695],[-120.29360817025704,51.96783972076513],[-120.29339484344881,51.96779368214111],[-120.29316691447295,51.96774747511199],[-120.2929535897566,51.967701426724204],[-120.29272580847454,51.96765410110861],[-120.29251182372674,51.96761308605752],[-120.29228389663233,51.96756687727158],[-120.29207064652635,51.967520272856],[-120.29184279318098,51.96747350880909],[-120.29162881015155,51.96743249210913],[-120.29140103171476,51.96738516385915],[-120.29118712351305,51.967343583009885],[-120.29095875887205,51.9673007247084],[-120.2907308350592,51.967254512832575],[-120.2905174413454,51.967209023231526],[-120.29028900407936,51.96716672691933],[-120.29007517082898,51.96712458961232],[-120.28984666161479,51.967082846800686],[-120.2896188869422,51.967035515007424],[-120.28940498215827,51.96699393083163],[-120.28917706159865,51.966947715864926],[-120.28896264315028,51.96691004730097],[-120.28873472349875,51.96686383145452],[-120.28852081922695,51.966822254569934],[-120.28829231308787,51.96678050865969],[-120.28806454168472,51.966733173776255],[-120.28785012525418,51.96669550313158],[-120.28762169444542,51.96665319256201],[-120.28740786629557,51.96661105027795],[-120.28717936233073,51.96656930214913],[-120.28695027125396,51.96653202437412],[-120.28673644434829,51.96648988083752],[-120.2865080145241,51.96644757699042],[-120.28627951227898,51.96640582706819],[-120.28606568664154,51.96636368228015],[-120.28583674451431,51.96632528457945],[-120.28560772991777,51.96628744080143],[-120.28539390551124,51.966245294760185],[-120.28516481766601,51.96620801341887],[-120.2849358771508,51.96616961392001],[-120.28472131925598,51.9661330551249],[-120.28449237952556,51.966094654740814],[-120.28426336613353,51.96605681722025],[-120.28403442720739,51.96601841592219],[-120.28381987081364,51.9659818554409],[-120.28359093267234,51.96594345325769],[-120.28336140702486,51.96590952141077],[-120.2831318088312,51.96587614348317],[-120.28291740088419,51.965838463615924],[-120.28268846429187,51.96580005963176],[-120.2824587931026,51.96576724367719],[-120.2822286812415,51.965737780354296],[-120.28201412774523,51.96570121649588],[-120.28178460460205,51.96566728149552],[-120.28155449372487,51.965637816821435],[-120.2813249712737,51.965603880902144],[-120.28109537507476,51.96557050784241],[-120.28088038223383,51.965537294951446],[-120.28064953742641,51.96551341694129],[-120.28042001633551,51.96547947921254],[-120.28018990737317,51.965450011803775],[-120.27995979872213,51.965420543933945],[-120.27974414626699,51.96539235406929],[-120.27951403822196,51.96536288530614],[-120.27928334216767,51.96533788685666],[-120.27905323472203,51.9653084171704],[-120.27882253922056,51.96528341779553],[-120.27859184398385,51.965258417957465],[-120.27836159032223,51.96523006457843],[-120.27813089563253,51.965205063814665],[-120.27789961274715,51.96518453335596],[-120.27768388864456,51.96515690293978],[-120.27745319473114,51.96513190081525],[-120.2772219125535,51.965111368992616],[-120.27699121914634,51.965086365940664],[-120.27676052600394,51.96506136242549],[-120.2765292445272,51.96504082920877],[-120.27629855189106,51.96501582476613],[-120.27606785951971,51.96499081986015],[-120.2758365787439,51.96497028524951],[-120.27560588687882,51.964945279416106],[-120.27537512110037,51.964920836434786],[-120.27514384102255,51.96490030042998],[-120.27491314992567,51.96487529320572],[-120.2746818703074,51.964854756271215],[-120.27446511946432,51.96483494362849],[-120.27423428189518,51.96481105272932],[-120.27400359179293,51.96478604367895],[-120.27377231307719,51.96476550491408],[-120.27354103457954,51.96474496568379],[-120.27331034522516,51.96471995524159],[-120.27307906718707,51.9646994150817],[-120.27284837833908,51.96467440371204],[-120.27261768975598,51.964649391879156],[-120.27238641241901,51.96462885032525],[-120.2721557243423,51.96460383756493],[-120.27192496348634,51.9645793787131],[-120.27156432962266,51.964541696200286],[-120.27878046741992,51.991049734228575],[-120.23830173679931,51.99096674699033],[-120.23819911274113,51.991188858874956],[-120.2381967411873,51.99120674072975],[-120.23819496252064,51.99122015212059],[-120.23817812772045,51.99123675031542],[-120.23817575615539,51.99125463216895],[-120.2381733845884,51.99127251402225],[-120.23815603157038,51.99129301939795],[-120.23815373469787,51.991310337971875],[-120.2381513631188,51.99132821982375],[-120.2381346029652,51.99134425473243],[-120.2381323796008,51.99136101896773],[-120.23813000801017,51.99137890081849],[-120.23811309960426,51.99139605333893],[-120.23811020862307,51.99141785131375],[-120.23809389309659,51.99143053336842],[-120.23809166971208,51.991447297601816],[-120.23808937280587,51.991464616172195],[-120.23807246435064,51.99148176868534],[-120.23807024095527,51.99149853291754],[-120.23805288779859,51.991519038273665],[-120.23805051616672,51.991536920120346],[-120.23804814453293,51.99155480196667],[-120.23803130954735,51.99157140013521],[-120.23802893790379,51.99158928198063],[-120.23802671448615,51.99160604621035],[-120.23801047357192,51.99161816497315],[-120.23800750900325,51.99164051727843],[-120.2379906004475,51.991657669776934],[-120.23798837701162,51.99167443400499],[-120.23798615357403,51.99169119823273],[-120.23796924499015,51.99170835072746],[-120.23796687331362,51.991726232569384],[-120.23796457515722,51.99174356007394],[-120.23794707362264,51.99176518302499],[-120.2379447019339,51.991783064865615],[-120.23794247847395,51.99179982909096],[-120.2379401814898,51.991817147653045],[-120.2379232728389,51.99183430013913],[-120.23792149406238,51.99184771151844],[-120.23791912235865,51.99186559335734],[-120.23791689888465,51.99188235758097],[-120.23789999019925,51.99189951006269],[-120.23789776671615,51.99191627428547],[-120.23789480206932,51.99193862658201],[-120.2378924303497,51.99195650841901],[-120.23789005862811,51.991974390255564],[-120.23788768690457,51.99199227209183],[-120.2378853887026,51.992009599590844],[-120.2378684799554,51.992026752066025],[-120.23786610822012,51.99204463390104],[-120.23786373648294,51.9920625157358],[-120.2378613647438,51.99208039757009],[-120.23785899300269,51.99209827940422],[-120.23785662125962,51.99211616123788],[-120.23785424951463,51.992134043071204],[-120.2378518777677,51.99215192490431],[-120.23784950601882,51.99216980673704],[-120.2378616713412,51.99218841793248],[-120.23785929959435,51.992206299764845],[-120.23785692784553,51.9922241815969],[-120.23785448257048,51.99224261776541],[-120.2378527037561,51.992256029139035],[-120.23786486910393,51.992274640332745],[-120.23786249735369,51.992292522163844],[-120.23786012560151,51.9923104039947],[-120.23785775384736,51.99232828582509],[-120.23785538209127,51.99234616765527],[-120.23786799216914,51.99236142600417],[-120.23786547218077,51.99238042544833],[-120.23786310042502,51.99239830727782],[-120.23787526581707,51.992416918468194],[-120.23787289406334,51.99243480029733],[-120.23787044759733,51.99245324540378],[-120.23788261300787,51.99247185659244],[-120.23788009301951,51.99249085603516],[-120.23787772126373,51.992508737863204],[-120.23788988669287,51.99252734905028],[-120.23788744141476,51.99254578521463],[-120.23788506965901,51.99256366704202],[-120.23789782804477,51.99257780777058],[-120.23789545629155,51.992595689597835],[-120.23789293630162,51.99261468903867],[-120.23790510176687,51.99263330022238],[-120.23790258177897,51.992652299662964],[-120.23790021002365,51.992670181489025],[-120.23791237550752,51.99268879267112],[-120.23790992904397,51.992707237774276],[-120.2379074090539,51.99272623721376],[-120.23791957455651,51.99274484839415],[-120.23791720280312,51.99276273021917],[-120.23791542398682,51.99277614158765],[-120.23792751598248,51.99279530710303],[-120.23792514422959,51.99281318892736],[-120.23792277247478,51.99283107075144],[-120.23792040071801,51.992848952575144],[-120.2379180289593,51.99286683439851],[-120.237930046271,51.99288656318955],[-120.2379276745142,51.99290444501259],[-120.23792530275544,51.99292232683528],[-120.23792278275963,51.99294132627155],[-120.2379205592321,51.992958090479725],[-120.2379325765701,51.99297781926882],[-120.23793020480939,51.992995701090514],[-120.23792783304671,51.99301358291188],[-120.23792546128207,51.9930314647329],[-120.23792308951548,51.99304934655361],[-120.23792071774697,51.99306722837395],[-120.23791834597648,51.99308511019401],[-120.23791597420406,51.9931029920137],[-120.23791360242967,51.99312087383312],[-120.23791123065335,51.993138755652204],[-120.23790900711128,51.993155519857275],[-120.23790663533119,51.99317340167574],[-120.23790426354914,51.99319128349382],[-120.23790189176516,51.9932091653117],[-120.23789951997921,51.993227047129146],[-120.23788275900192,51.99324308197485],[-120.23788038720629,51.9932609637914],[-120.23787801540868,51.99327884560764],[-120.23787564360916,51.99329672742351],[-120.23787327180764,51.99331460923918],[-120.23787090000421,51.993332491054375],[-120.23786793524718,51.99335484332299],[-120.23786556343934,51.993372725137526],[-120.23786326515572,51.9933900526155],[-120.23786089334406,51.993407934429364],[-120.23784398404412,51.99342508688026],[-120.23784161222264,51.99344296869324],[-120.23783924039921,51.99346085050588],[-120.23783686857384,51.993478732318195],[-120.23783464498577,51.99349549651696],[-120.2378322731566,51.99351337832861],[-120.2378299013255,51.99353126013993],[-120.2378276042052,51.99354857867396],[-120.23782523237026,51.99356646048465],[-120.23780832299472,51.99358361292798],[-120.23780654411134,51.99359702428533],[-120.23780357930325,51.99361937654717],[-120.23780135569518,51.99363614074326],[-120.2377989838447,51.99365402255211],[-120.23779661199224,51.993671904360646],[-120.23777985080581,51.993687939185165],[-120.23777747894364,51.993705820992794],[-120.23777510707957,51.99372370280002],[-120.23777273521351,51.99374158460691],[-120.23777043687345,51.99375891207749],[-120.23775352740158,51.993776064509966],[-120.23775115552382,51.993793946315655],[-120.23774878364412,51.99381182812097],[-120.23774596703444,51.99383306276447],[-120.23774359515046,51.993850944569076],[-120.2377267603469,51.99386753371938],[-120.23772438845316,51.99388541552313],[-120.23772201655748,51.993903297326526],[-120.23771964465985,51.993921179129565],[-120.23771742100405,51.993937943319644],[-120.23770051144176,51.99395509574168],[-120.23769828777685,51.99397185993087],[-120.23769591586573,51.99398974173242],[-120.23769354395267,51.99400762353365],[-120.23769057905861,51.99402997578461],[-120.23767374297965,51.99404657386549],[-120.23767137105438,51.99406445566538],[-120.23766899912718,51.994082337464974],[-120.23765223773573,51.99409837226522],[-120.2376498657988,51.99411625406386],[-120.23764756857604,51.99413357258551],[-120.23764519663527,51.994151454383534],[-120.23764341767846,51.994164865731825],[-120.23762650799885,51.99418201813962],[-120.23762369130559,51.99420325277323],[-120.23762131935123,51.99422113456969],[-120.23761909564226,51.99423789875354],[-120.23760218592473,51.99425505115664],[-120.23759981395872,51.994272932951866],[-120.2375975155218,51.99429026041101],[-120.23759514355196,51.994308142205576],[-120.23757823379768,51.99432529460413],[-120.23757586181802,51.99434317639773],[-120.23757304508963,51.99436441102724],[-120.2375707478232,51.99438172954364],[-120.23755383803076,51.99439888193756],[-120.23755146603705,51.994416763729525],[-120.2375490940414,51.994434645521146],[-120.23754687029373,51.99445140970052],[-120.23754449829428,51.99446929149154],[-120.237527736708,51.994485326268375],[-120.23752595770134,51.994498737611046],[-120.23752358569072,51.99451661940089],[-120.23750615635501,51.99453768789761],[-120.23750378433418,51.9945555696865],[-120.23750141231137,51.994573451475],[-120.23749918853822,51.99459021565147],[-120.23748235335567,51.994606804755456],[-120.23747998132127,51.99462468654273],[-120.23747760928494,51.99464256832973],[-120.23746084760732,51.994658603094365],[-120.2374580308024,51.99467983771535],[-120.23745565875406,51.99469771950095],[-120.23743874879354,51.99471487187333],[-120.2374370432839,51.99472772887657],[-120.2374201333044,51.994744881245715],[-120.2374179094912,51.994761645418116],[-120.2374155374219,51.994779527201636],[-120.23739810911466,51.994800586736446],[-120.23739573703513,51.99481846851901],[-120.23739351320879,51.99483523268984],[-120.237376751426,51.99485126743966],[-120.23737437933494,51.99486914922101],[-120.23737200724189,51.99488703100206],[-120.23735457768453,51.99490809946915],[-120.23735279860725,51.99492151080419],[-120.23733603677627,51.99493754554685],[-120.23733373938532,51.994954864049994],[-120.23733136727093,51.99497274582886],[-120.23731460541234,51.99498878056771],[-120.23731223328822,51.99500666234561],[-120.23729487837625,51.99502716752557],[-120.23729250624194,51.995045049302504],[-120.23729020764195,51.995062376744116],[-120.23727329747464,51.995079529086716],[-120.23727166662447,51.99509182280757],[-120.23725483116124,51.995108411871044],[-120.23725245900607,51.99512629364596],[-120.23724949380937,51.99514864586411],[-120.23723273185288,51.995164680588566],[-120.2372305079461,51.99518144475126],[-120.237213597709,51.99519859708344],[-120.23721129906949,51.9952159245211],[-120.23720892689059,51.99523380629344],[-120.23719157183939,51.9952543114537],[-120.23718979269776,51.99526772278223],[-120.23718749523121,51.99528504127753],[-120.23717058493693,51.99530219360183],[-120.23716836099919,51.99531895776132],[-120.23716598879703,51.99533683953118],[-120.23714922673734,51.99535287424097],[-120.23714685452546,51.99537075600985],[-120.23714396279658,51.99539255388577],[-120.23712705244337,51.99540970620197],[-120.23712468021931,51.995427587969616],[-120.23712245625747,51.99544435212647],[-120.23710562060108,51.99546094116315],[-120.23710384142451,51.99547435248794],[-120.23710146918738,51.99549223425407],[-120.23708470704409,51.99550826895227],[-120.23708174173527,51.99553062115876],[-120.23707951775164,51.99554738531326],[-120.23707714550052,51.99556526707774],[-120.23706023505393,51.99558241938166],[-120.23705793633313,51.995599746810605],[-120.23705556407032,51.99561762857377],[-120.23705319180554,51.995635510336726],[-120.23705081953884,51.99565339209932],[-120.23703405731484,51.995669426787906],[-120.23703168503842,51.99568730854958],[-120.23702938748686,51.995704627035536],[-120.23702701520662,51.99572250879657],[-120.23702464292438,51.9957403905573],[-120.2370077323891,51.995757542850846],[-120.23700536009704,51.99577542461062],[-120.2370029878031,51.99579330637006],[-120.2370007637757,51.995810070519255],[-120.23699839147795,51.99582795227815],[-120.23699601917824,51.99584583403659],[-120.23699364687657,51.99586371579478],[-120.23699142284201,51.995880479942834],[-120.23698905053658,51.995898361700384],[-120.2369866782292,51.995916243457565],[-120.23698430591988,51.995934125214525],[-120.23698193360859,51.995952006971144],[-120.23697956129537,51.99596988872735],[-120.23697718898019,51.99598777048329],[-120.2369602783301,51.99600492276624],[-120.2369579060051,51.99602280452123],[-120.23695553367814,51.99604068627593],[-120.23695256826672,51.99606303846879],[-120.23695019593538,51.99608092022275],[-120.23694789714445,51.99609824764202],[-120.2369599896369,51.99611741320412],[-120.23695761730565,51.99613529495737],[-120.23695531851482,51.99615262237602],[-120.23695294617971,51.9961705041286],[-120.23695050030021,51.99618894021521],[-120.23694820150371,51.99620626763289],[-120.23694575562016,51.99622470371881],[-120.23694338327722,51.99624258547011],[-120.23694101093233,51.996260467221134],[-120.23693863858547,51.99627834897178],[-120.23693626623667,51.996296230722166],[-120.23693389388595,51.99631411247213],[-120.23693152153326,51.99633199422178],[-120.23692914917862,51.99634987597119],[-120.23692677682205,51.99636775772024],[-120.236938942923,51.99638636894586],[-120.23693657056846,51.996404250694575],[-120.23693479130125,51.996417662005875],[-120.23693241894328,51.996435543754004],[-120.23693004658337,51.99645342550177],[-120.23692767422152,51.996471307249266],[-120.23692515358489,51.996490306605544],[-120.23692278121904,51.99650818835238],[-120.23693494735754,51.996526799576195],[-120.23693257499369,51.99654468132264],[-120.2369302026279,51.99656256306871],[-120.2369276819871,51.996581562423685],[-120.23692530961728,51.99659944416912],[-120.23692293724551,51.99661732591426],[-120.23693510341458,51.99663593713626],[-120.23693273104485,51.99665381888109],[-120.23693035867319,51.99667170062545],[-120.23692798629956,51.99668958236958],[-120.23692561392397,51.996707464113406],[-120.23693770538965,51.99672663860865],[-120.23693533301605,51.99674452035205],[-120.2369329606405,51.99676240209513],[-120.23693043998934,51.99678140144678],[-120.23692806760975,51.996799283189226],[-120.23692569522824,51.99681716493134],[-120.23693786145434,51.996835776149915],[-120.23693548907485,51.996853657891634],[-120.23693311669342,51.996871539633034],[-120.23693067076611,51.996889975708136],[-120.23692837192469,51.996907303114945],[-120.23694105772881,51.996921998230604],[-120.23693868534593,51.99693987997106],[-120.2369363129611,51.99695776171122],[-120.23693394057436,51.99697564345104],[-120.23693156818564,51.996993525190526],[-120.23694358618941,51.99701325401439],[-120.23694121380261,51.99703113575348],[-120.23693884141386,51.99704901749236],[-120.23693632074865,51.997068016839485],[-120.2369484870494,51.99708662805285],[-120.23694611466061,51.997104509790965],[-120.23694374226986,51.99712239152876],[-120.23694136987717,51.997140273266226],[-120.23695346147,51.997159447752644],[-120.23695108907928,51.99717732948975],[-120.23694871668663,51.99719521122649],[-120.23694619601727,51.99721421057144],[-120.23694382362059,51.997232092307506],[-120.23695658306875,51.99724623308352],[-120.2369542106746,51.997264114819345],[-120.23695176473416,51.99728255088866],[-120.23696393110146,51.99730116209693],[-120.23696155870732,51.99731904383208],[-120.23695918631122,51.997336925566906],[-120.23695666563826,51.99735592490971],[-120.23696883202814,51.997374536116446],[-120.23696631135721,51.99739353545893],[-120.23696393895901,51.99741141719259],[-120.23696156655886,51.997429298926015],[-120.23697373297136,51.997447910131015],[-120.23697136057326,51.99746579186407],[-120.23696891344255,51.99748423687141],[-120.23698167297277,51.99749837764153],[-120.23697915230026,51.99751737698223],[-120.23697677990059,51.997535258714315],[-120.23698894634921,51.997553869916025],[-120.23698650040723,51.99757230598137],[-120.23698412800756,51.99759018771285],[-120.23698175560598,51.99760806944392],[-120.23699392207708,51.99762668064389],[-120.23699140140248,51.9976456799828],[-120.23698902900084,51.997663561713146],[-120.23700104721564,51.99768329051962],[-120.23699867481591,51.99770117224959],[-120.23699689551485,51.99771458354687],[-120.23700906202217,51.99773319474353],[-120.23700661489244,51.99775163974735],[-120.23700424249128,51.997769521476435],[-120.23701626074221,51.99778925027951],[-120.23701388834297,51.99780713200818],[-120.23701151594179,51.99782501373657],[-120.23702360894185,51.997844179263474],[-120.23702123654266,51.997862060991494],[-120.23701945724196,51.997875472287184],[-120.23703162380392,51.99789408347896],[-120.23702969623015,51.99790861238248],[-120.23702717555484,51.9979276117175],[-120.23703934213465,51.997946222907586],[-120.23703696973632,51.997964104634356],[-120.23703452260544,51.99798254963517],[-120.23704668920374,51.99800116082349],[-120.23704416853049,51.998020160157395],[-120.23704179613011,51.99803804188311],[-120.23705396274704,51.99805665306991],[-120.23705151680433,51.99807508912866],[-120.23704973750426,51.9980885004224],[-120.23706190413868,51.99810711160756],[-120.23705938346595,51.998126110940035],[-120.23707155011499,51.99814472212355],[-120.2370690294443,51.998163721455654],[-120.23706665704631,51.99818160317962],[-120.237078823714,51.99820021436146],[-120.23707637658754,51.998218659359395],[-120.23707385591464,51.998237658690414],[-120.23708602260108,51.99825626987056],[-120.23708424330421,51.9982696811628],[-120.23709633645986,51.99828884667465],[-120.23709396406629,51.9983067283974],[-120.23709159167075,51.99832461011971],[-120.23710420321261,51.998339868473685],[-120.2371018308195,51.998357750195694],[-120.23711384927704,51.998377478978554],[-120.23711147688583,51.998395360700194],[-120.23710910449266,51.99841324242156],[-120.23712178961043,51.998427946439094],[-120.23711926894525,51.998446945767604],[-120.23713143570956,51.998465556939614],[-120.23712906332076,51.998483438660244],[-120.2371266173859,51.998501874713924],[-120.23713878416872,51.99852048588428],[-120.23713626350559,51.99853948521176],[-120.23714843030304,51.99855809638045],[-120.23714650273887,51.998572625277674],[-120.23715866954996,51.99859123644474],[-120.23715622243537,51.998609681438154],[-120.23716824098712,51.998629410211066],[-120.23716646170035,51.99864282150026],[-120.23717855499584,51.998661986997405],[-120.2371761826157,51.99867986871604],[-120.23718879429012,51.99869512705604],[-120.23718627363871,51.99871412638173],[-120.23719844050636,51.99873273754238],[-120.23719599340066,51.99875118253439],[-120.2372080120095,51.998770911300795],[-120.23722077199452,51.998785052028765],[-120.23721891917408,51.99879901765019],[-120.23723093780654,51.99881874641338],[-120.23724295644988,51.99883847517497],[-120.23724058408655,51.99885635689215],[-120.23725267628784,51.99887553131887],[-120.2372507487444,51.99889006021384],[-120.23726284214568,51.99890922569805],[-120.23727500910057,51.99892783684748],[-120.23727308156228,51.9989423657422],[-120.23728510025884,51.998962094497294],[-120.23728272790612,51.99897997621341],[-120.23729541324765,51.99899468020463],[-120.23730743196877,51.999014408956604],[-120.23730505962239,51.99903229067236],[-120.23731715308708,51.9990514561485],[-120.23731463247105,51.999070455471205],[-120.23732783739241,51.99908124336204],[-120.23734000442317,51.99909985450191],[-120.23733755735682,51.999118299491094],[-120.23734957613118,51.99913802823648],[-120.23734720379534,51.99915590995127],[-120.23735929731292,51.99917507542101],[-120.23735751806272,51.99918848670684],[-120.2373695368655,51.999208215448895],[-120.23736760934634,51.999222744341694],[-120.23737977643367,51.999241355475014],[-120.23737740410459,51.99925923718882],[-120.23738949647803,51.999278411594545],[-120.23738697588043,51.99929741091505],[-120.2373997360779,51.99931155161681],[-120.23739729021112,51.99932998766307],[-120.23739491788442,51.99934786937591],[-120.23740708501839,51.999366480504335],[-120.23740456442336,51.99938547982382],[-120.23740219209662,51.99940336153592],[-120.23741435924923,51.99942197266273],[-120.23741183865417,51.99944097198145],[-120.23740946632742,51.99945885369283],[-120.2374070939987,51.99947673540393],[-120.23741926117387,51.999495346529024],[-120.23741688884719,51.9995132282398],[-120.23741451651857,51.9995311099502],[-120.237412144188,51.999548991660205],[-120.23740977185547,51.999566873370085],[-120.23740739952098,51.99958475507946],[-120.23740502718455,51.99960263678862],[-120.23740258011749,51.99962108177113],[-120.23740028250585,51.99963840020588],[-120.2373979101636,51.999656281913985],[-120.23739553781937,51.999674163621755],[-120.2373931654732,51.99969204532928],[-120.23739079312509,51.99970992703647],[-120.23738842077502,51.999727808743316],[-120.237386048423,51.999745690449785],[-120.23738367606902,51.99976357215601],[-120.23738130371311,51.99978145386187],[-120.23737893135525,51.99979933556746],[-120.23737655899545,51.999817217272664],[-120.23737418663367,51.99983509897754],[-120.23737181426995,51.99985298068216],[-120.23736944190429,51.999870862386395],[-120.23736706953669,51.999888744090335],[-120.23706804255107,52.00390758999832],[-120.23921359731277,52.00472678473348],[-120.242503559746,52.00817680790828],[-120.24304199834219,52.00853229792919],[-120.24377026792786,52.00933324851675],[-120.2510514096021,52.011725641664],[-120.25750809869626,52.013826021539316],[-120.26430085142017,52.016268469355346],[-120.27083865083189,52.01865107222902],[-120.27473653146458,52.01884982518196],[-120.27947193292488,52.01824865712342],[-120.28093532448547,52.018032374442534],[-120.28569650824778,52.016232460791464],[-120.2936646007253,52.0154269467454],[-120.2954338927041,52.015443918594116],[-120.30247420177643,52.0182472633814],[-120.30996611163921,52.021074725679085],[-120.31300912389248,52.02165337722631],[-120.31392976524887,52.02211458275351],[-120.35149189421563,52.00913620259688],[-120.37413610340134,52.02303389270675],[-120.37255298319128,52.02485514053275],[-120.3715123347809,52.025879544398045],[-120.3697382963267,52.02781626976083],[-120.36813268098295,52.02992095192346],[-120.3659924684116,52.03162990103515],[-120.36338540855483,52.03298523175311],[-120.36057887991187,52.034859965185625],[-120.35943090906017,52.03862196097289],[-120.35819663461524,52.041018082699274],[-120.35679484786642,52.04312420241821],[-120.35676040178177,52.04575465871179],[-120.35730093178016,52.04666756043522],[-120.35903748697771,52.049875312665264],[-120.35974511473884,52.051983094663235],[-120.35990109387625,52.054728028427796],[-120.3600637352287,52.058098130002264],[-120.35955131169841,52.06237717446976],[-120.35702813736864,52.06453628379509],[-120.35440303928068,52.06601263903269],[-120.35262816051817,52.06748680550777],[-120.34954731778065,52.06987093218405],[-120.35037339005946,52.07050597188932],[-120.35072052704093,52.073129805219324],[-120.3503095482774,52.07707184058046],[-120.34842431139903,52.07848823132864],[-120.34638661773299,52.07893651198794],[-120.34637598036474,52.08036732956121],[-120.34673226459347,52.081682880134686],[-120.34753444353437,52.083739653833405],[-120.34982972722699,52.08637924519465],[-120.34952531801402,52.088489650473015],[-120.34811458639417,52.0905367376625],[-120.34679940702999,52.09218751000898],[-120.32341911401663,52.09243357611721],[-120.32457996700705,52.15424149108595],[-120.32826908047772,52.15466934997582],[-120.33725491237908,52.155924225808796],[-120.34581184402501,52.155856000890886],[-120.35152669038003,52.15246827714677],[-120.35595067756495,52.148612205791615],[-120.35980209288724,52.14474934829066],[-120.36451105916123,52.14083495955352],[-120.37077374567738,52.13704523497755],[-120.37943075839935,52.135835170647894],[-120.38719626536309,52.13742156170624],[-120.39412461790644,52.14026179912007],[-120.40049031716735,52.142577680420985],[-120.40678941620934,52.14564123578848],[-120.40805790229201,52.14718791898022],[-120.40631534262032,52.15215098127752],[-120.4028998516931,52.15766827451923],[-120.40078134112981,52.16314498833823],[-120.39784828286277,52.168214335412536],[-120.39698932988712,52.16951548337836],[-120.39064381541073,52.17324694975084],[-120.39039096299545,52.17531026486077],[-120.39130744556614,52.176740992268286],[-120.3935234101942,52.17857620787623],[-120.3962341740296,52.185440749051565],[-120.40045842366843,52.188229159958745],[-120.40067554387664,52.188368464116266],[-120.40373004506468,52.1902053044745],[-120.40369913819964,52.192147763503286],[-120.40192863584419,52.192653465098424],[-120.40015790791699,52.19282005128961],[-120.39829076541412,52.194071157622325],[-120.3971663479404,52.19492136090468],[-120.39325810174508,52.19490701880058],[-120.38758595124885,52.19557155877917],[-120.38532815044766,52.197676224084596],[-120.38504798415623,52.198475173904804],[-120.38520848400564,52.2000693220711],[-120.38350816050949,52.20240688976219],[-120.38331593470052,52.20354694739656],[-120.38459936981545,52.205438090066934],[-120.386058839136,52.20767291892942],[-120.3864168740939,52.20967141884407],[-120.3888112481055,52.21116326138498],[-120.39244153879456,52.21129126871007],[-120.39580142119644,52.2096487741184],[-120.39823523520099,52.208228937619864],[-120.4011069380819,52.20989774494813],[-120.40406784703768,52.21133349367428],[-120.4058323006975,52.211221059321275],[-120.40863936134117,52.21043763827065],[-120.41188798421203,52.21021872864031],[-120.41487918833909,52.20971567696418],[-120.41536873929319,52.20979614581929],[-120.4202282842702,52.2111079146876],[-120.42459256219664,52.212271277149],[-120.42513452634944,52.212629761616306],[-120.42661021510854,52.21315983747487],[-120.42910139687437,52.21493883716195],[-120.42852802816783,52.215850215214516],[-120.42730781394458,52.21664547526894],[-120.42655131415043,52.21795004787049],[-120.43134173306335,52.22209022348583],[-120.43432552000216,52.22758706799799],[-120.43632443263323,52.232740584986544],[-120.43981730780908,52.236807625289934],[-120.44364819769619,52.24088289810559],[-120.45077412247608,52.24440106096325],[-120.45706894016814,52.24752350801294],[-120.46279906207839,52.25058027488927],[-120.46750100907329,52.2545455907276],[-120.47015171507968,52.25878758418367],[-120.47542298440389,52.26291745432371],[-120.47564523658232,52.265667349109336],[-120.47629469031712,52.26680488102182],[-120.48175679280978,52.27002983913544],[-120.4874846661302,52.273716393931224],[-120.48960483053115,52.2751021426885],[-120.48904039245704,52.2764088682157],[-120.48631306101414,52.2789686096014],[-120.48639611611235,52.28039334130506],[-120.48756668837842,52.28114461565187],[-120.49462173315243,52.28448743508623],[-120.4933946732719,52.28579299307771],[-120.48490427142234,52.28826376343206],[-120.48274842677068,52.28945691654906],[-120.48145859350672,52.294819247724796],[-120.48052478043921,52.29613024899721],[-120.47349044486494,52.29940345337974],[-120.46741160221964,52.3024560258792],[-120.46627115525382,52.303764925015045],[-120.46633032896602,52.30514129388821],[-120.46782656932216,52.306458183773685],[-120.47310082927547,52.30876850426535],[-120.47724359276064,52.31312843027184],[-120.48326476121545,52.31744443409222],[-120.489735656703,52.32044226349477],[-120.49614691962111,52.32287463767185],[-120.50225781256607,52.32581801412572],[-120.50865785339197,52.3289282198648],[-120.51080990660456,52.329279312801184],[-120.51305618343568,52.32923790889235],[-120.52191512563432,52.32681601825389],[-120.5261354912362,52.32666817084152],[-120.53263296559614,52.32972085436557],[-120.53659838352367,52.33391242667719],[-120.53686480137343,52.334486049979766],[-120.52972592440098,52.33822209252032],[-120.5230840117425,52.340474594427846],[-120.51689250132814,52.34335409584496],[-120.5164291253499,52.34386624030519],[-120.51779897187596,52.34735760998022],[-120.52427120559213,52.351441562501286],[-120.53115338216132,52.353816307689485],[-120.53180262038501,52.35427982351029],[-120.53104686721228,52.35558493668085],[-120.52953834223155,52.35689274714939],[-120.52844413552658,52.36213901428213],[-120.5285065373346,52.367455041932644],[-120.52730886039656,52.37281557050943],[-120.52315179755831,52.37799977656454],[-120.52002772870804,52.383294516251894],[-120.51660731192923,52.38847567485202],[-120.51152306388808,52.39199270394468],[-120.50476236276644,52.39568029333545],[-120.49923301440097,52.3987367000178],[-120.49142270509235,52.40218435792321],[-120.48254589535466,52.4031117131441],[-120.47402988615174,52.404101137622895],[-120.46736831840738,52.40720567013114],[-120.46133276064569,52.411176857439344],[-120.45839718158422,52.41378244020073],[-120.45808117154587,52.41875794300641],[-120.45879934053532,52.420408535404675],[-120.4600840349909,52.42167633222297],[-120.4622261201832,52.42271236871135],[-120.47034126118429,52.42464250265957],[-120.47170963392873,52.427331951096555],[-120.47567849384814,52.43140725379036],[-120.48019524648976,52.435480307521],[-120.47980500185379,52.436792974138406],[-120.48092203588446,52.437993477167545],[-120.48296863820273,52.43863155720918],[-120.49156692810641,52.43970430163598],[-120.49592527584745,52.44064517846062],[-120.50150155440947,52.44524023380682],[-120.5030702087633,52.44661475777636],[-120.50938412820256,52.44938242139472],[-120.50937946386038,52.45069200455595],[-120.51003079969429,52.4520747633427],[-120.51455951528025,52.455747608430805],[-120.51511449819499,52.45614932794732],[-120.5188408400265,52.45754001943054],[-120.52754607898707,52.457458603895276],[-120.53613441118466,52.458295744394],[-120.54187770829597,52.461975035706466],[-120.5427766201174,52.46735629073441],[-120.54170200804248,52.472205801332244],[-120.5353768119665,52.47646281495497],[-120.5334950404477,52.47776499958578],[-120.53327167497118,52.48044986592182],[-120.53250781184562,52.48249883246095],[-120.52706561478232,52.485613178928425],[-120.52129754611958,52.48918749956401],[-120.5159293230941,52.493331316347145],[-120.51001707414414,52.49616533492059],[-120.50332019815959,52.498647200045],[-120.49665931124417,52.50061100350435],[-120.48803516671875,52.50125818865206],[-120.47906312276093,52.50173027092587],[-120.47051382178944,52.50385987095548],[-120.46169727248787,52.50438189221177],[-120.4530867464421,52.50525486842897],[-120.45064592223564,52.50604124077885],[-120.4461933394087,52.51001678048087],[-120.44321981255194,52.51434225156286],[-120.43960224586988,52.519633019180766],[-120.4345998756147,52.52303211674853],[-120.42783535603148,52.52482429442012],[-120.41901281618219,52.52660453685909],[-120.41093702048683,52.52821819401343],[-120.40368955128322,52.5297227490059],[-120.39487992620843,52.531273620100414],[-120.38615311816321,52.531620273779815],[-120.37850152377682,52.53009158515012],[-120.37180021563225,52.527307965843875],[-120.36478567337697,52.52590020719078],[-120.3638037092447,52.52852593385892],[-120.35999830175929,52.53358184726598],[-120.35628880417984,52.53778944939265],[-120.35199266756908,52.54284497351565],[-120.34609181049589,52.54949668013877],[-120.33947144577748,52.55327568716938],[-120.33527797633094,52.5571904712021],[-120.33211840107384,52.561689569330404],[-120.32923343077124,52.56623739732703],[-120.32531505348886,52.57152922016092],[-120.32303394628718,52.57408349772511],[-120.32049878750212,52.57486000559646],[-120.31957230058586,52.57435323742253],[-120.31962066408467,52.5737647117348],[-120.31934809728762,52.57380707202595],[-120.31881540785776,52.573686077791436],[-120.31867153710135,52.57365263077897],[-120.31855308193798,52.57320382516013],[-120.31851601708203,52.57247675672848],[-120.31828688472363,52.57174425737302],[-120.31808284703048,52.57126991041866],[-120.31787222178522,52.570845274246395],[-120.31784269925366,52.57050875150381],[-120.31782368224499,52.57031666925166],[-120.31767556871984,52.56964434161711],[-120.31733916738627,52.56916184170411],[-120.31696971354206,52.569152249722926],[-120.31674803212275,52.56925837257008],[-120.31668167940417,52.569423233462615],[-120.31653728517738,52.56961746092361],[-120.31617554190025,52.570220495912615],[-120.31568591010556,52.57089319178728],[-120.31475473379348,52.571093421460866],[-120.31373788484888,52.57126866322243],[-120.31350716483331,52.57267194487124],[-120.31375868223752,52.57323520163944],[-120.3139102806488,52.573545644489656],[-120.31403719658273,52.57404209655844],[-120.31406620647171,52.574158763401016],[-120.31398119477963,52.57468759702881],[-120.31390737462759,52.57513208628333],[-120.3135969476557,52.575683080552935],[-120.31348705183507,52.57617584115891],[-120.31337615215607,52.576452660487],[-120.31313189856334,52.57751064181821],[-120.31326953190802,52.578149853260136],[-120.31329872725854,52.57848860972837],[-120.31307698565199,52.57904169283102],[-120.31273018823973,52.57941943733163],[-120.3126262264899,52.579755623136194],[-120.31207943112297,52.580299012588576],[-120.31164728134311,52.580760859351116],[-120.31140334870736,52.58103398695369],[-120.31083725854839,52.58127564683816],[-120.31041619267687,52.58143049294895],[-120.3097765326986,52.581444224614025],[-120.30849773161448,52.581467762802205],[-120.30796919466074,52.58187316414874],[-120.30768780616867,52.581981410989755],[-120.30724801541176,52.582277011067305],[-120.30664936600236,52.58254010773045],[-120.3058330896311,52.58265482387586],[-120.30530478013345,52.582723450593036],[-120.30451760226067,52.58284238702905],[-120.30418455673662,52.58300432259579],[-120.3040329297723,52.58325215740277],[-120.30400038469494,52.583720026123395],[-120.30412945559824,52.583976521614645],[-120.3041630074464,52.584170442070445],[-120.30427351068205,52.58456659375761],[-120.30428850510796,52.58467695562057],[-120.30429978464744,52.584815255908964],[-120.30429959469544,52.584928248654165],[-120.30436628852031,52.58543076211442],[-120.30401512823184,52.58584032309023],[-120.30382268952685,52.58606030000087],[-120.30366733536043,52.58633606325126],[-120.3035111323771,52.586506644937415],[-120.3032168785024,52.58682284226116],[-120.3026025376594,52.587203220880305],[-120.30208900692655,52.587383320803795],[-120.30171194572532,52.587652735985664],[-120.30142678766526,52.58778889664987],[-120.30085901537063,52.588153554037476],[-120.30075679709685,52.58847576700217],[-120.3007695990732,52.58882553782247],[-120.30077076085689,52.58903979681408],[-120.30073686093576,52.58962903833421],[-120.300747216487,52.58966271150975],[-120.30055026134954,52.589804876521676],[-120.30010145150997,52.58994428210682],[-120.29959008898851,52.58999628315891],[-120.29931732441517,52.59003915923734],[-120.29891330641993,52.59006493429875],[-120.2984777259292,52.590104896649876],[-120.29793234137033,52.59018952579662],[-120.29717314855912,52.59031990945882],[-120.29608732839723,52.59022909039526],[-120.29499723150379,52.58961349067306],[-120.2947285279938,52.589180345197526],[-120.29470358593043,52.58914483246861],[-120.29402002075697,52.588930318447765],[-120.2933372739807,52.58848700922194],[-120.29243128884893,52.58827170979075],[-120.291474168349,52.58821751019168],[-120.290679471458,52.588725611311546],[-120.29026971102559,52.58923964713806],[-120.28929097292632,52.58934741766586],[-120.28833175697625,52.58919750251018],[-120.28720855647552,52.588942276653455],[-120.28678377994282,52.58890120614825],[-120.2866187954849,52.589025801795486],[-120.28636547625334,52.58947890598346],[-120.28582000065488,52.58956404163436],[-120.28475058637416,52.589572863523856],[-120.28387294129156,52.58958996931806],[-120.28384358141886,52.590143447961076],[-120.28424266444958,52.590710641938514],[-120.28490306610719,52.591321013128685],[-120.28503526795306,52.59144219316689],[-120.28508107746484,52.59176603645005],[-120.28527344323537,52.59232590060283],[-120.28523380794394,52.593957231623264],[-120.28518372171074,52.59477732207061],[-120.28489870976559,52.59568989766781],[-120.28560039458634,52.5966587365284],[-120.28621512868465,52.597167333854486],[-120.28664582709727,52.59816560426084],[-120.2870825322524,52.59889654583577],[-120.28753917073267,52.599255710133356],[-120.28764698453602,52.59933745804486],[-120.28798305556217,52.59993302474136],[-120.28800635902908,52.59998082725588],[-120.28836990664901,52.60070424409471],[-120.28804903589675,52.601552095458665],[-120.28766162711278,52.6018974284879],[-120.28725849929161,52.60224929434218],[-120.28688891426394,52.60290584752348],[-120.28650938970269,52.60374801364833],[-120.28624326623607,52.60463002968101],[-120.286149428037,52.60522194562822],[-120.28610434154625,52.60600460132014],[-120.28596403790681,52.60649979405804],[-120.28568103627401,52.60750804379002],[-120.28608610528923,52.60814297579626],[-120.28635299522227,52.60903481039827],[-120.28712870393913,52.609673286951015],[-120.28742362287939,52.60991038138299],[-120.28770045362144,52.61083924600956],[-120.28602210300396,52.611625056435756],[-120.28538732727972,52.61226579916084],[-120.28509108743317,52.61281687208186],[-120.2846829136297,52.61320559175057],[-120.28438563342928,52.61365316325592],[-120.28402485705547,52.61424267424669],[-120.28300448397913,52.61510231451188],[-120.28114616617673,52.615455321998496],[-120.27918493869493,52.61557836103313],[-120.27740240498262,52.61569721302971],[-120.27583934653408,52.61572897868563],[-120.27398663908825,52.61581734660549],[-120.27221056148298,52.61577675538297],[-120.27074188095396,52.616101519191005],[-120.26798899632077,52.61603815870739],[-120.26596594761128,52.616289501901605],[-120.26439851665445,52.616353519497274],[-120.26302049848694,52.61677653938093],[-120.2618658652988,52.61708348335969],[-120.26048719948278,52.61751094154851],[-120.25977966476994,52.61769425356785],[-120.25897974118685,52.61779149193227],[-120.25804309819375,52.61791178531397],[-120.2522571787399,52.617879106609855],[-120.25192219167948,52.617941304097975],[-120.25089326493368,52.61786414631371],[-120.2496941467307,52.61783817347953],[-120.24793632146434,52.61788189556265],[-120.24675478803765,52.618277328755596],[-120.2458880349228,52.61876081325271],[-120.24432830808567,52.619428791550874],[-120.24316505215448,52.620129265266534],[-120.24273045966031,52.62049013286669],[-120.2415337401793,52.62121817692793],[-120.24057774753248,52.621591516569175],[-120.24014083091973,52.62174872728975],[-120.23659310040512,52.62218175928463],[-120.2356995160989,52.622752685735996],[-120.23496081083124,52.6240475721871],[-120.23489325188959,52.62510013838043],[-120.23471941860676,52.62628014031776],[-120.2343387386405,52.62712155995037],[-120.23435139993217,52.628570541204354],[-120.23396730498065,52.62954729737981],[-120.23400991196829,52.63066378172816],[-120.23394555639545,52.63158212071056],[-120.2337835647486,52.63256366816737],[-120.23374810766506,52.63315734024909],[-120.23379620888568,52.63401264400877],[-120.23386463636585,52.63460695385611],[-120.23538233116753,52.636350727648505],[-120.23656821155393,52.63802241091399],[-120.23856502280657,52.63885760306696],[-120.23973824811775,52.63908029142343],[-120.24101224410629,52.639437249338116],[-120.24229452975882,52.6397327640431],[-120.24358615440872,52.63995899801619],[-120.24507872377893,52.64012710522303],[-120.24604734245902,52.640214814869964],[-120.24745131397209,52.64037907801461],[-120.24829287478265,52.64052797052409],[-120.24871959153965,52.64066876300831],[-120.24943722382385,52.64140806278389],[-120.249260866547,52.64238834339413],[-120.25041908898699,52.64294470128453],[-120.25182589710468,52.642978050496964],[-120.25319516153759,52.643401403939144],[-120.25501959963654,52.643643639178656],[-120.25651598421639,52.64400574383228],[-120.25862592063481,52.64477753483313],[-120.25967525343623,52.6452609646151],[-120.2611535963627,52.645758184569644],[-120.26330131057072,52.6461387413739],[-120.26565965547553,52.64638906370712],[-120.26648704066059,52.64686657176791],[-120.26772634242408,52.6478180296027],[-120.26832350967095,52.64868339494126],[-120.26860300744929,52.649480292856175],[-120.26940761499925,52.650350217592226],[-120.27130156435943,52.651185353674364],[-120.27396883850192,52.65190492001966],[-120.2753585371897,52.65206813116915],[-120.27584476135111,52.652320802546484],[-120.27642019821269,52.65246204099558],[-120.27728182889149,52.65290740616008],[-120.2782508068991,52.6532169174743],[-120.27925269471777,52.65372480727055],[-120.28060298387975,52.654072106728556],[-120.28158087924517,52.654093049430685],[-120.28320405400734,52.65384425697694],[-120.28422272271828,52.65389360367572],[-120.28515914805153,52.6540024382189],[-120.28701125714277,52.653819335925036],[-120.28834615832373,52.65350351211653],[-120.28994660372945,52.65331310998676],[-120.29056519718446,52.65335406669769],[-120.29157558712156,52.65346534444086],[-120.29227113125167,52.65382038320884],[-120.29261716083661,52.65434498197345],[-120.29251458050918,52.65511355403292],[-120.2917835233433,52.65546964408828],[-120.29042406386273,52.65552401147725],[-120.28751428140066,52.65617149165034],[-120.2871976171585,52.656873361985596],[-120.28639029755644,52.65768838689132],[-120.28543343438935,52.65806543532671],[-120.28407144918548,52.658804933771734],[-120.2831045692106,52.65981226950849],[-120.28195464688343,52.66018770587718],[-120.28070498438001,52.6606420171694],[-120.2801970865417,52.661216995760086],[-120.280093906991,52.66221041838777],[-120.2795318206043,52.66285695927506],[-120.27885240960315,52.66326948166943],[-120.27850649690558,52.66363314318652],[-120.27783450057707,52.6638790528644],[-120.27715950586102,52.664147300313296],[-120.27605457668649,52.66440738590463],[-120.27514969827438,52.66472731559686],[-120.27419651484067,52.664963910942646],[-120.27321296968556,52.665538026394835],[-120.27206300810072,52.66580093178158],[-120.2712981740587,52.666184485781876],[-120.27038204947654,52.66647684365494],[-120.26994802168677,52.666720900444616],[-120.26954205836884,52.66719908935117],[-120.26912060208936,52.66790364998794],[-120.26898126334916,52.66849949943484],[-120.26871892907758,52.66979094930868],[-120.26901933211307,52.67109822581561],[-120.26919742426567,52.6719873905269],[-120.2688728550166,52.673299395958374],[-120.26741385714486,52.67420206414738],[-120.26646541887574,52.6750662676483],[-120.26528302796414,52.67590098198686],[-120.26439493030382,52.67653650457893],[-120.26383467061372,52.677276959131845],[-120.26358538336743,52.677472728858454],[-120.2630785552409,52.67814721610142],[-120.26296234165176,52.6784591595409],[-120.26288698997234,52.67879896356595],[-120.26300005536743,52.679285772431584],[-120.26270688440947,52.68025130494538],[-120.26247368926076,52.680991517361925],[-120.26234921355984,52.68147564842548],[-120.26227047397906,52.68195134936766],[-120.26215326825942,52.68238129848031],[-120.26413841048416,52.68365441846714],[-120.26513635159536,52.68430668095866],[-120.26573326544059,52.684623288669314],[-120.26684545401189,52.68520018646475],[-120.26709443839388,52.68545022861521],[-120.26748290171281,52.68565820101713],[-120.26780604544824,52.68579887401356],[-120.26819712421951,52.68587654041304],[-120.26846305324808,52.68600034332774],[-120.26905469719338,52.68635658473854],[-120.26958690018793,52.68682347091802],[-120.2699862666895,52.687061203252036],[-120.27029928103947,52.68749933911687],[-120.2706025262686,52.68778857278657],[-120.27126822097614,52.688480133030446],[-120.27127308854132,52.689220230019124],[-120.2712185699633,52.68962683871387],[-120.2713227069073,52.68984839936137],[-120.27138758282246,52.69025186941735],[-120.2716527686683,52.69060332254585],[-120.27201536949548,52.690893770693826],[-120.27275368751913,52.69170975696125],[-120.27307549779485,52.691971781539124],[-120.2738077266119,52.69227866525526],[-120.27485914340016,52.69275635776706],[-120.27544307633099,52.693171206359274],[-120.27602709481194,52.693585497859964],[-120.2763296331884,52.69399161384022],[-120.2763748766436,52.694764040780875],[-120.27634733246697,52.69519165154673],[-120.27633475545856,52.695507547375165],[-120.27642987320284,52.69601875190461],[-120.27701872717519,52.6966193545049],[-120.2788651352884,52.698047830471424],[-120.28144716490331,52.699982277216726]]]}' + )), 4326)))); + +INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Thompson','3','3- Thompson','AR10100000','WHSE Admin Boundary',4 + , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.30072273684466,50.44604624584945],[-122.3007472211895,50.445790632605345],[-122.30076549816461,50.44561072453175],[-122.30078548691259,50.445431440378236],[-122.30081246219477,50.44525295613449],[-122.300874464762,50.44507732305143],[-122.30093119210666,50.44490151391104],[-122.30096876228131,50.44472281618044],[-122.30102895967062,50.44454768056163],[-122.30113778888564,50.44438148238164],[-122.30126910637728,50.4442205331061],[-122.3014021811475,50.44405964229717],[-122.30150915766407,50.44389450662676],[-122.30157087984075,50.44372223774512],[-122.3016014137241,50.44354330493209],[-122.30161274483721,50.44336204895562],[-122.3016170438722,50.443180549361244],[-122.30161944642728,50.44300067800673],[-122.3016112536277,50.44282102000878],[-122.30159075451137,50.44264094243915],[-122.30155776388219,50.44246270649848],[-122.30150705451886,50.442285561944196],[-122.30145454181324,50.442108915003374],[-122.30142159844739,50.44193011360203],[-122.30137264834092,50.4417530275229],[-122.30129871720513,50.44157960673041],[-122.30121761591099,50.44140763815708],[-122.30113480347015,50.4412350455264],[-122.30105731229547,50.44106206347385],[-122.30100133219618,50.440884742400335],[-122.3009651511933,50.440702458371405],[-122.30090186374977,50.44052826742205],[-122.3007734472587,50.44037439716361],[-122.30059798825025,50.44023526955883],[-122.30040092820055,50.440101602107326],[-122.3002147398843,50.43996435612075],[-122.3000449725606,50.439820351753305],[-122.29987349389587,50.43967573209151],[-122.29970927878263,50.43952853829398],[-122.29955954325747,50.43937676185949],[-122.299433306191,50.43921790564839],[-122.2993377849036,50.43904994327179],[-122.29926039561064,50.4388758468332],[-122.29919017727626,50.4387002981236],[-122.2991181095025,50.43852581227492],[-122.2990549705856,50.438349932862195],[-122.29899543938058,50.43817305809878],[-122.29893225507021,50.43799774384299],[-122.29885468589089,50.43782588119066],[-122.29875565303918,50.437657809605184],[-122.29864399361017,50.43749324824595],[-122.2985197997173,50.437331075441676],[-122.29838658662491,50.43717141752953],[-122.29824782464318,50.43701494821905],[-122.29809625168437,50.43686424123939],[-122.29792284926357,50.436721793622944],[-122.2977494935779,50.436578789378736],[-122.2975979237454,50.436428081636535],[-122.29746647448093,50.43626848115509],[-122.2973530196377,50.43610441582671],[-122.29725228463806,50.43593571851564],[-122.29715326189294,50.43576764510446],[-122.29703444377122,50.43560452481848],[-122.29683630087142,50.435462940084285],[-122.29670913637378,50.4353585923554],[-122.27429796083754,50.42436458013047],[-122.27309052008168,50.42391963669415],[-122.27278442109431,50.42380642270858],[-122.26986182444726,50.42272786753377],[-122.27198744831755,50.420376117353385],[-122.27436926948091,50.421151889624475],[-122.27458043018599,50.42102739335619],[-122.2748001897081,50.42092680554296],[-122.27500811247967,50.42077745513855],[-122.27524965371627,50.42062641807001],[-122.27566526044373,50.42033052363334],[-122.27580908211733,50.42023188053272],[-122.27617954520963,50.42005593102128],[-122.27631263755714,50.41991643570585],[-122.27664078373326,50.41971938399934],[-122.27691172411691,50.419532223613885],[-122.27719709057733,50.419362409548604],[-122.27737322914344,50.41923504891267],[-122.27758696221849,50.41914325138906],[-122.27783717980111,50.41901499545026],[-122.27802727992193,50.418846487064236],[-122.27814524239373,50.41871941155201],[-122.27834051886005,50.41853083100917],[-122.27842874494839,50.41835833323671],[-122.27859650566583,50.41818288293742],[-122.27883093969302,50.41781846389891],[-122.27896410837435,50.417635102766646],[-122.27906587803282,50.417426500348135],[-122.27915063227641,50.41729606802529],[-122.27926876997888,50.417102636837114],[-122.2793430718254,50.41694935830732],[-122.27941293619939,50.41682853952104],[-122.27957712275634,50.41656805339598],[-122.2796230313827,50.41639581618279],[-122.27968281392086,50.41629041419819],[-122.27978680173773,50.416183113220555],[-122.27997434383435,50.41608818246418],[-122.28023013207846,50.41595617633569],[-122.28042765631874,50.415804217593255],[-122.28058795816229,50.41567632038801],[-122.28076666068029,50.4155175385736],[-122.2809099891632,50.41536038544307],[-122.28095377054932,50.41527806547411],[-122.28107476599041,50.41513534213298],[-122.28127075205677,50.41491641199591],[-122.28137954218808,50.414814894529265],[-122.28149147567332,50.41471799047149],[-122.28173272561995,50.41450563561291],[-122.28188747169693,50.414380915405346],[-122.28206385258223,50.41422881117505],[-122.2823606341559,50.4140694903262],[-122.28252716548286,50.41392998505264],[-122.28271575652391,50.413843525247756],[-122.28296020003816,50.41374205872513],[-122.28317764292834,50.413668938447806],[-122.28359092731509,50.413464033752874],[-122.28384655725375,50.41337644665],[-122.28410103578946,50.413324245590715],[-122.2843828013847,50.413325822511055],[-122.28473645901796,50.41328875164506],[-122.28508294216897,50.41321039012886],[-122.28531669621775,50.41311025181521],[-122.28550445178811,50.413055252527926],[-122.28572822741432,50.413012141196745],[-122.28603993609751,50.41292811192722],[-122.28624919755975,50.41291150706125],[-122.28705333992464,50.41270956866372],[-122.28736713738691,50.412685784488424],[-122.28769031439872,50.41263362807711],[-122.28837963294336,50.4125852978276],[-122.28855999634061,50.41257728539697],[-122.28886806095846,50.41255891972662],[-122.28899515103568,50.41251313002585],[-122.2890656552732,50.41249130504441],[-122.2890991298966,50.412491301562795],[-122.28923085071061,50.412474910216964],[-122.2894871445135,50.41233615216528],[-122.28966816971278,50.41221286875605],[-122.28978488975368,50.41212173188322],[-122.28995920767174,50.41199429126722],[-122.29005812630497,50.411905374349246],[-122.29026401589367,50.411758178156184],[-122.29036902753245,50.41163797199309],[-122.29062626243287,50.411423317801976],[-122.29079246328784,50.4112230532416],[-122.29109038493239,50.41102776527343],[-122.29139555577032,50.41080853258292],[-122.29147301105402,50.410702024670385],[-122.29159590880245,50.41057847500267],[-122.29171960859311,50.41050950696502],[-122.29194789071349,50.410304012423424],[-122.29204940129443,50.41024779833047],[-122.2922058355755,50.41018779868445],[-122.29238377386072,50.41014482291431],[-122.29274426032688,50.41002416654274],[-122.29298530656865,50.40998499334691],[-122.29326810272848,50.40995228248371],[-122.29351428857305,50.409936333013555],[-122.29381327186935,50.40992103361805],[-122.29490677812161,50.40992724356253],[-122.2951025825724,50.409945597513094],[-122.29528951001879,50.40996478799499],[-122.29564186127267,50.409986126597374],[-122.29603983670077,50.409988186189],[-122.296273814855,50.40997070670265],[-122.29654468807527,50.409954451160026],[-122.29673996884846,50.40993623489344],[-122.29699150607722,50.40989797068945],[-122.2971994339134,50.409832936992714],[-122.29761456153678,50.40973321231118],[-122.29790803231917,50.4096991549064],[-122.29834040439562,50.40960393598076],[-122.298577801467,50.40958769070873],[-122.29877487300642,50.40954759371272],[-122.29898968586262,50.4094844784219],[-122.29916220607187,50.409443002650725],[-122.29944859039952,50.409387892219385],[-122.29963986290986,50.40931105027308],[-122.29979959272214,50.40921065951749],[-122.29991772668113,50.408951414767806],[-122.2999638144449,50.408754440908446],[-122.29999476623873,50.40861318978138],[-122.3000496480919,50.40843787974258],[-122.3001313171078,50.408301138856515],[-122.30022055357628,50.40813653197038],[-122.30026502871642,50.40804522124029],[-122.30037086456174,50.407979021618196],[-122.30056262369312,50.40787464264191],[-122.30069094054038,50.40783506268359],[-122.30081634117226,50.40778806984431],[-122.30109643120916,50.407745126484585],[-122.30129980781386,50.40767093550571],[-122.3013898413709,50.407625577519696],[-122.30163944553858,50.407460133297135],[-122.30197080101084,50.40724287199806],[-122.30222657734627,50.407045023902974],[-122.30228853493408,50.40697679093754],[-122.30245912326635,50.40680814942769],[-122.30258008550936,50.406686215354064],[-122.30275641088897,50.40644747268563],[-122.30290825653016,50.40624951935652],[-122.30296559584495,50.40619463784465],[-122.30306925109777,50.4060473811645],[-122.30322393060291,50.40587933228942],[-122.30349062660305,50.40572007823508],[-122.30367076082703,50.40560686610409],[-122.3040076464975,50.405321740787706],[-122.30424143830703,50.40511246506737],[-122.3044564095034,50.404896370347736],[-122.30457311358172,50.40478329007848],[-122.30483799542043,50.40462453928766],[-122.30507219891574,50.404496257488084],[-122.30534195400419,50.40429942667273],[-122.30541028673265,50.40423928689237],[-122.3057266758636,50.40403219629094],[-122.30594944840679,50.403892850871074],[-122.30616534447539,50.40377295430218],[-122.30642675611537,50.403699565038636],[-122.30685292967152,50.40357149032773],[-122.30703958259214,50.40348605115869],[-122.30720660930153,50.403360582190714],[-122.30729197231302,50.403264450276474],[-122.30741111305322,50.40307833976871],[-122.30751648913369,50.40290976622699],[-122.30753859451255,50.40285483260129],[-122.30756492962075,50.402834340303244],[-122.3078713239062,50.40264153240929],[-122.30816902351097,50.402447318153975],[-122.30836138370485,50.40233506414653],[-122.30866367645686,50.40217080305044],[-122.30893770792844,50.40205058931253],[-122.30907259949208,50.40199491490873],[-122.3092549347795,50.40189751396217],[-122.30953553106563,50.401783141307],[-122.30981634016572,50.40164458847662],[-122.30994188138172,50.401573979809335],[-122.31014903454019,50.401474587920305],[-122.31033799308132,50.401274495955924],[-122.3106348186365,50.40111229711171],[-122.31071346581123,50.40107667538256],[-122.3110560981309,50.4009789871484],[-122.31117900905413,50.40091897015032],[-122.31147173907681,50.40084998685812],[-122.3116782897844,50.40075788754133],[-122.31176683358744,50.40073046789889],[-122.31201566427534,50.400681391569854],[-122.31213513889823,50.40066343267869],[-122.31248738843708,50.400577307875494],[-122.31285414211646,50.400421372624066],[-122.31313006289932,50.40032089046066],[-122.31326077328146,50.40025157503172],[-122.31346640871995,50.4000627137837],[-122.3135155402477,50.40000023852209],[-122.3135371053425,50.39997339549787],[-122.31375460447838,50.39976862426871],[-122.31396533929181,50.39960355154711],[-122.31434897015517,50.399413297109795],[-122.31463487053375,50.39931990097154],[-122.31494728314381,50.399203757561736],[-122.31530447518871,50.39907842250052],[-122.31565448371173,50.39893316878781],[-122.31579900964459,50.398867117469464],[-122.31601379408754,50.39880340301551],[-122.31614993916176,50.39877531388636],[-122.31641169934238,50.39867547766106],[-122.31651248536784,50.39864902843227],[-122.31684022078065,50.39851764306701],[-122.31695743599165,50.3984624963983],[-122.31716396461516,50.39837038658523],[-122.31733960785243,50.398268251446176],[-122.31747000500158,50.398224223175575],[-122.31764823795986,50.398176719396325],[-122.31782856571682,50.39814672305748],[-122.318095069858,50.398139836824846],[-122.31841873996042,50.398123044942096],[-122.31874636107804,50.3980793805508],[-122.31886329229383,50.398070894965414],[-122.31919182595843,50.39801602115468],[-122.31950380051232,50.3979482148995],[-122.31967733471198,50.39787187528917],[-122.31984432486556,50.3977677662018],[-122.32003559589474,50.397581790383846],[-122.32012814932017,50.3975050087568],[-122.32030028495085,50.39746742097082],[-122.32052000080188,50.397451101258866],[-122.32075411295641,50.397409390243546],[-122.32091231249328,50.39734828577845],[-122.32099845229777,50.39728535421998],[-122.321196936712,50.39720534218195],[-122.32144999427857,50.39701747533738],[-122.32158362627305,50.396933625905056],[-122.32187919217277,50.39682927639517],[-122.32208412564546,50.39677816252147],[-122.32228794228831,50.3967191289811],[-122.32263268086972,50.39665971762681],[-122.32294486881966,50.39658910177758],[-122.3232238424926,50.39653706990035],[-122.32329551385568,50.39652201131087],[-122.3234905885032,50.39650543468254],[-122.32383550645501,50.396443776144736],[-122.32410266262784,50.39640708725162],[-122.32431368234292,50.39634604869604],[-122.32463971327452,50.39621345988375],[-122.32491010690308,50.39613695264709],[-122.32518798141027,50.39605506929],[-122.32538234676213,50.39598222870997],[-122.3256262098567,50.395950387089854],[-122.32589228920729,50.395905227204466],[-122.32620446685591,50.395834602108124],[-122.3262848719873,50.39582039824051],[-122.3264870139693,50.39580348403244],[-122.32676112044928,50.395746216208316],[-122.32704181750138,50.39567286204118],[-122.3273219436339,50.395584857604874],[-122.32748804172398,50.39549138853781],[-122.32764271060876,50.3953868596813],[-122.32775114721606,50.39535277209077],[-122.32798061278699,50.39534632608221],[-122.32829725576464,50.395307336112594],[-122.32837311964381,50.395283982274286],[-122.32869843139521,50.39526833129174],[-122.32902289471329,50.39519810577687],[-122.32924163232786,50.39510694597233],[-122.32951885463545,50.39503290369346],[-122.32982773612234,50.39495934310308],[-122.33017878452192,50.39482195303733],[-122.33039628817781,50.394745929661816],[-122.33060373378306,50.394685318982106],[-122.33076635943482,50.39463447032669],[-122.33095284444454,50.39459340986228],[-122.33114986708219,50.394552698200705],[-122.33169890379112,50.39449271223846],[-122.33207298936044,50.39441849807614],[-122.33241732654993,50.39432024480551],[-122.33253057060648,50.39429193561151],[-122.33282952826366,50.39427540898805],[-122.33312858972911,50.394192516376364],[-122.33327140971356,50.39412526200759],[-122.33345972304548,50.39399652830404],[-122.33370287493256,50.393777948074174],[-122.33377149233678,50.39369192321478],[-122.33399158957457,50.39351869343779],[-122.3340392291326,50.39347415618965],[-122.33436118944357,50.3933042887706],[-122.33442285967304,50.39328215272455],[-122.33475560808088,50.39323973688401],[-122.33502295441701,50.393156923421714],[-122.33534946789122,50.393082806793274],[-122.33563365564889,50.392944312277926],[-122.33623149923727,50.392586181161796],[-122.33641179986896,50.392490919759915],[-122.33672982207598,50.392325981315814],[-122.3367991064072,50.39229678058002],[-122.33695843176298,50.392242997680775],[-122.33705490619535,50.39222594359508],[-122.33737827774368,50.39212529044201],[-122.33751169542884,50.39208696308855],[-122.33765572383571,50.39206979867201],[-122.33798094009622,50.39196808009291],[-122.33821890596218,50.39183479012591],[-122.33837568151354,50.391812422629464],[-122.33869467141008,50.39172230140901],[-122.33878245385138,50.3917038337403],[-122.3391455906302,50.391590435629176],[-122.33950385355011,50.391428502522906],[-122.34000285321645,50.39124648479562],[-122.34025257100521,50.39116363442755],[-122.34050925318434,50.3910382736365],[-122.34077370030361,50.39094746887804],[-122.34111078566399,50.39085119950712],[-122.34161124139085,50.39069452503711],[-122.34184787277091,50.39064273151252],[-122.34200826091116,50.3905974167722],[-122.34213959645528,50.39056294735208],[-122.34215756666842,50.390558484146375],[-122.34243655745499,50.390527209184626],[-122.34273295889567,50.3905201280442],[-122.34305648928749,50.39048244942682],[-122.34320903373766,50.39044699658855],[-122.34333921621148,50.39038324455835],[-122.34361278332338,50.390310172343504],[-122.34386090029925,50.390246948661854],[-122.34415217755617,50.39015084045081],[-122.34445519807312,50.38999663290464],[-122.34473383025797,50.38988266787231],[-122.34485076253159,50.38983029097899],[-122.34503154662585,50.38970691374624],[-122.3451889820784,50.38954564928779],[-122.34531030066084,50.38946079936181],[-122.34560998179002,50.38930422911715],[-122.34583821580384,50.38926902127699],[-122.34627654364077,50.389030986871795],[-122.34659558169153,50.388874485935666],[-122.346853082377,50.38876038546675],[-122.34708810711155,50.3885758093213],[-122.34726913940517,50.38847099944182],[-122.34738860440244,50.3883872109391],[-122.34771847889847,50.38816189762396],[-122.34782754204005,50.388076073964655],[-122.34801424729297,50.38796638422896],[-122.34826605104621,50.38787908640214],[-122.34866557112665,50.38766338256558],[-122.34880748653954,50.387606759733345],[-122.34899785781197,50.38753880453413],[-122.34912972228702,50.3874976051907],[-122.34936254482417,50.38736187335051],[-122.34942552519091,50.3873015314795],[-122.34967535106581,50.387107873343446],[-122.34983674845255,50.386897244831125],[-122.34997581513248,50.386766860947766],[-122.35019206594562,50.386531046495925],[-122.3502518944305,50.38646610132435],[-122.35028113465259,50.386431073602715],[-122.35036299833469,50.386333103620785],[-122.35044489763257,50.38634367631749],[-122.3510226752706,50.38627498973002],[-122.35131272328282,50.38621538146877],[-122.35162016029697,50.386136658079685],[-122.35186372075302,50.386020395560806],[-122.35213764521247,50.38596418603423],[-122.35264570784048,50.38590838274252],[-122.35318598311108,50.38591155749058],[-122.35356797335193,50.38584708958608],[-122.3539085232171,50.385816131514574],[-122.35425465782804,50.38578141523333],[-122.3545630561273,50.38575613591487],[-122.35492422432475,50.38573147727876],[-122.35534022803549,50.38572548454259],[-122.35565668086657,50.385709474208426],[-122.35602904677854,50.38572060515181],[-122.35635011888861,50.38575647356514],[-122.35674422002118,50.38580375091122],[-122.35711298449037,50.38581588440371],[-122.35713049984851,50.385817018549425],[-122.35713201942228,50.39090815449026],[-122.39999960894586,50.39665751253361],[-122.40869813242419,50.39782222722476],[-122.40904036759196,50.39774840660314],[-122.40931940058427,50.397716407174435],[-122.40959821062651,50.39768720700933],[-122.4098782419111,50.39766479377252],[-122.41015738141067,50.397653597650205],[-122.41043469367959,50.3976653928782],[-122.41071373574104,50.397699745890186],[-122.41099075499586,50.397737397651476],[-122.41127649356034,50.39775397148238],[-122.41150950321592,50.3978357495524],[-122.41167726559922,50.39798514274846],[-122.41181080807368,50.39814410686655],[-122.41195349008598,50.398298877164194],[-122.41210346742967,50.39845050053933],[-122.41226429680427,50.39859854333587],[-122.41243980365958,50.39873918857854],[-122.41262629666402,50.39887456597661],[-122.41282215252104,50.39900294039876],[-122.41303079606884,50.39912553838431],[-122.41325663133027,50.39923125580857],[-122.41350150314932,50.39931903664609],[-122.41375402586004,50.39939919196303],[-122.41400843932281,50.39947772538276],[-122.4142711717977,50.39954021534773],[-122.41454667092162,50.3995750012968],[-122.4148261289248,50.39960429136366],[-122.41510383065808,50.39963352386925],[-122.41537937585998,50.3996677423661],[-122.41565667740224,50.39970202599754],[-122.41593213442854,50.39973736490109],[-122.41620754702711,50.39977326849784],[-122.41648287106507,50.39981029319294],[-122.41675999633605,50.39984681762692],[-122.41703541025888,50.39988271916191],[-122.41731051355302,50.39992254177074],[-122.41757959077763,50.399971732904945],[-122.41771118289186,50.40000017373914],[-122.41784795687116,50.40002989766365],[-122.41811394429492,50.40009585745702],[-122.41837039276474,50.4001710722498],[-122.4186006036933,50.40026623978418],[-122.4187231035847,50.40043158502867],[-122.41877422527037,50.40060868502761],[-122.41882886071951,50.400785898556975],[-122.41891573956879,50.40095628184585],[-122.41896150357796,50.4011343330408],[-122.4189825403539,50.40131327622566],[-122.41899466069798,50.401493613585984],[-122.41901038351018,50.40167294270799],[-122.41903493488806,50.40185199037512],[-122.41906826939959,50.402031330934776],[-122.4191068302741,50.40221139822484],[-122.41915435305076,50.40238950585216],[-122.41921979945604,50.40256369419308],[-122.41931393291631,50.402731495007956],[-122.41945638830548,50.40288962010435],[-122.41963369096679,50.403030309986846],[-122.41985798224471,50.40313371309702],[-122.42011378434647,50.403217332450005],[-122.42036629574807,50.4032980376908],[-122.4205978838805,50.40339830101022],[-122.42081039317087,50.40351707546285],[-122.42104422875714,50.403611229271156],[-122.42132071472913,50.403656151011944],[-122.42155653145312,50.40374755153642],[-122.42176346378275,50.40387007560289],[-122.42196468245291,50.40399803793845],[-122.4221771981541,50.40411680968192],[-122.42238782521721,50.40423720244754],[-122.42256523114409,50.40437676562138],[-122.42274461748302,50.40451357627741],[-122.42297788439664,50.404615021963544],[-122.42321866869455,50.40471051976063],[-122.42342952374219,50.40482810151392],[-122.42361400666466,50.40496733339544],[-122.42375859702115,50.4051210131366],[-122.4238455916106,50.40529026985384],[-122.4239001190076,50.405469167004654],[-122.42395126667414,50.40564626349827],[-122.42399174055913,50.40582469782868],[-122.42401982699475,50.40600386586332],[-122.4239951626653,50.4061818888367],[-122.4238763806913,50.40634730950398],[-122.42381860079225,50.40652088940658],[-122.42379204487,50.406700542660374],[-122.42377945601261,50.406881762415786],[-122.42378281233042,50.4070618144058],[-122.42381103230815,50.40723929505916],[-122.42390488129423,50.40741102170854],[-122.42400967207035,50.4075780450059],[-122.424121669814,50.407743042485585],[-122.42423907214749,50.407906531767665],[-122.42436543782516,50.408068060876026],[-122.42450999589282,50.4082223044172],[-122.42469656417458,50.40835765989911],[-122.42492809832099,50.408459044290716],[-122.42517695673227,50.40854185922928],[-122.42543153029494,50.40861924375389],[-122.42568606069092,50.40869718408895],[-122.42593856862078,50.4087784324866],[-122.42618905412905,50.40886298895967],[-122.42640200362493,50.40897669938786],[-122.42656287325764,50.40912527588732],[-122.42676259343948,50.40925037203868],[-122.42695488757354,50.409380284661566],[-122.42712863622125,50.409521969858105],[-122.42730234193883,50.409664211159715],[-122.42748158540283,50.40980326577759],[-122.42767933258033,50.409931103472836],[-122.42788991265985,50.41005260668785],[-122.42807496374233,50.41018509058837],[-122.42819598957723,50.410347566700764],[-122.4283115228996,50.41051268164525],[-122.42843975621906,50.41067314045022],[-122.42856974753326,50.410833655716225],[-122.42869257868769,50.4109956224201],[-122.42880464599861,50.41116005806156],[-122.42889698642266,50.41132892304689],[-122.42897667362872,50.41150186961261],[-122.42904564061071,50.41167672881032],[-122.42910929275361,50.411851974429936],[-122.42917290139141,50.412027776376085],[-122.42922943726299,50.412203917099234],[-122.42927705443645,50.412381461756546],[-122.42931408507312,50.412559222978025],[-122.42932629436584,50.412738991293004],[-122.42934026021227,50.41291882516959],[-122.4293612108655,50.41309944192028],[-122.42942680082264,50.413272500123234],[-122.42954058964217,50.41343754758114],[-122.42963460596414,50.4136075898726],[-122.42972150620574,50.413778518357304],[-122.42981381141318,50.41394793842666],[-122.42992219831284,50.41411450263823],[-122.43002707157129,50.41428095347284],[-122.43011397388261,50.414451890480294],[-122.43019367125278,50.41462483549601],[-122.43027521444914,50.41479672423122],[-122.43033267318413,50.414983572762594],[-122.43047855925654,50.41512154595341],[-122.4307183675259,50.41520799540505],[-122.43098775626852,50.415276836217686],[-122.43125363059657,50.415345572146954],[-122.43151616922185,50.41541194172083],[-122.43178059850625,50.41547668908325],[-122.43202594889799,50.41555994011637],[-122.43225696059645,50.4156685953374],[-122.43249575554869,50.4157679457805],[-122.43258197704097,50.41592535368914],[-122.4325935351617,50.416113538682154],[-122.43266076587535,50.41628833804563],[-122.4327261958415,50.416463637154784],[-122.43278094983856,50.4166402749147],[-122.43281795308073,50.4168185993935],[-122.43279814636156,50.41700240050323],[-122.43277315609966,50.41718491007104],[-122.4328359154211,50.41734943444227],[-122.43300246184232,50.41749369164702],[-122.43320319733597,50.41762891843746],[-122.43340257507707,50.41775904478743],[-122.43360933785996,50.41788490991216],[-122.43374543784479,50.41803549139464],[-122.43381632388943,50.418208715610156],[-122.4338672590281,50.41838917002232],[-122.43393265206129,50.41856503333259],[-122.43401061390239,50.41873791816004],[-122.43409393644536,50.41890985975843],[-122.43417550291927,50.41908173573093],[-122.43425878278052,50.419254233530054],[-122.43434751274076,50.41942465733556],[-122.43444520771382,50.41959312023134],[-122.43455547125356,50.419758613516144],[-122.43468010486013,50.419920637300386],[-122.43481388165924,50.42007844756537],[-122.43497850983819,50.420224888309654],[-122.43515425995616,50.420364372007654],[-122.43522866999497,50.42053770788951],[-122.43524613276396,50.420718208737725],[-122.43519861340953,50.42089605236645],[-122.43519498630702,50.42107587471094],[-122.43512873918428,50.42126774484419],[-122.43522184266064,50.42127129765523],[-122.43549781156743,50.42121269760547],[-122.43577801970892,50.421189663205716],[-122.43606014929044,50.42118692402709],[-122.43634183539376,50.421189801955975],[-122.43662312345639,50.4211977226492],[-122.43690577107049,50.42121074261828],[-122.43718423954813,50.421232066626544],[-122.4374554883555,50.42127789939676],[-122.4377261620244,50.42133102750026],[-122.4380026844936,50.4213770284135],[-122.43827538311493,50.42142683737364],[-122.43853071575475,50.42149577280401],[-122.43875689873641,50.421599200746016],[-122.43896009048139,50.421726064103765],[-122.43917255798112,50.421847035202624],[-122.4394081957384,50.421942326361716],[-122.43966075776981,50.42202410753626],[-122.43991147542613,50.42210694446395],[-122.44014685073323,50.42220559933771],[-122.44037813670504,50.422311436796775],[-122.44060920300514,50.42242007370219],[-122.44083284258053,50.42253352781276],[-122.44104193606837,50.422652704145385],[-122.44123112231054,50.42277855523175],[-122.44134187233374,50.42309475357571],[-122.4414001386496,50.42327206386538],[-122.4414656126353,50.42344735628816],[-122.44157789030042,50.42361008931626],[-122.44173521374634,50.42376021535733],[-122.44184191052095,50.42392670944303],[-122.44186660831903,50.424105190664356],[-122.4418788699675,50.42428496397595],[-122.44188757259727,50.424465180784765],[-122.44190335041019,50.42464505789775],[-122.44193688092273,50.42482326469167],[-122.4419988000816,50.42499900000064],[-122.44205184230765,50.42517558384578],[-122.44208001309663,50.425354733992556],[-122.44209051826051,50.4255344505741],[-122.44208867589602,50.42571432852844],[-122.44207272816888,50.425894311428536],[-122.44204627800573,50.42607339932811],[-122.44200405218135,50.426251422937945],[-122.44192869554567,50.42642500007522],[-122.44183936433326,50.42659701289067],[-122.4417833414146,50.426771210583965],[-122.44179389029291,50.426950361505746],[-122.4418219720356,50.42713064206183],[-122.44183599277655,50.42731046215593],[-122.44184473967583,50.4274901218922],[-122.44182356094137,50.42766937867214],[-122.44181117085154,50.427848917560674],[-122.44183578224829,50.42802851968074],[-122.44188887195932,50.42820453756723],[-122.44198467941361,50.42837517907499],[-122.4420734564317,50.42854559475882],[-122.442039929675,50.42872501275453],[-122.44226330474852,50.42881990204211],[-122.44253599807138,50.428892757139565],[-122.44280290527584,50.42883778803848],[-122.44306537853613,50.428771987805824],[-122.44333088084521,50.428712464981324],[-122.44360099262794,50.428661528451805],[-122.4438742213517,50.4286157564899],[-122.44414876618352,50.4285756401023],[-122.44442462580918,50.42854119722808],[-122.44470202227468,50.42850960998047],[-122.4449794628791,50.4284774566674],[-122.44525857183203,50.42844648977637],[-122.4455354816546,50.42842106567327],[-122.44581497896647,50.42840753665955],[-122.44609754150272,50.428422220225706],[-122.44637887630425,50.428430116105474],[-122.44666425661738,50.428431393369124],[-122.44694783465279,50.42843317892079],[-122.44722908138014,50.42844219441265],[-122.44750214935206,50.42846556682646],[-122.44776452325084,50.42853526215187],[-122.44799203526954,50.428644891929416],[-122.44818451677406,50.42877420818565],[-122.4483638565457,50.4289137821201],[-122.44854869188062,50.42905071580192],[-122.44876139530491,50.42916943286256],[-122.44901946534989,50.4292491084373],[-122.44921547507155,50.42935604374647],[-122.44929487441442,50.429534024257585],[-122.44944499251665,50.42968671294048],[-122.44962627412274,50.42982409744738],[-122.44983898402015,50.42994281232732],[-122.45006870713848,50.4300468851137],[-122.45031575178093,50.43013239400267],[-122.45057435933676,50.430205335252246],[-122.45084101320475,50.430265605184864],[-122.45109588577967,50.43034124154154],[-122.4513447355944,50.43042624799338],[-122.45158985047479,50.43051394126351],[-122.45183483438824,50.430603312149415],[-122.45207788432955,50.43069487872987],[-122.45231724384313,50.43078856680454],[-122.45254513091336,50.43089369985847],[-122.45277099667032,50.43100214148267],[-122.45299136906598,50.431113222783964],[-122.45316893134353,50.43125328868737],[-122.45333005576647,50.431400709414206],[-122.45348564375789,50.43155131747818],[-122.45364303443048,50.4317014251409],[-122.45380781041936,50.431847270436194],[-122.45399487214199,50.43197865091171],[-122.4542244833533,50.43208439299456],[-122.4544335238431,50.43220522980106],[-122.4546314453411,50.43233301584653],[-122.45482743378025,50.43246298883281],[-122.45502355585799,50.43259127431113],[-122.45522701892516,50.432715862588026],[-122.45543237287991,50.43283882852009],[-122.45563957472712,50.432960719520985],[-122.4558485793669,50.43308210992663],[-122.4560539810715,50.43320450928047],[-122.45625749342865,50.43332853917483],[-122.45645542500817,50.43345632178738],[-122.45664039152517,50.43359211944191],[-122.45681801854063,50.4337316226747],[-122.45699358007818,50.43387500008746],[-122.45719371442777,50.433997228641694],[-122.45744650847654,50.43407728094463],[-122.45770497404614,50.43415244875053],[-122.4579273080493,50.43426133245092],[-122.45810129389825,50.43440239932969],[-122.45825145724216,50.43455508414226],[-122.45839256797673,50.43471084421891],[-122.45852110851561,50.43486958521047],[-122.45848421429366,50.43504777265874],[-122.45834350739962,50.43520128540416],[-122.45829685349854,50.435391531322495],[-122.45831371246179,50.43555850780685],[-122.45860410396502,50.43556385352148],[-122.45887608335691,50.43553430615086],[-122.4591390121532,50.43546285959663],[-122.4594072567395,50.435413507019454],[-122.45968903485827,50.43539383407772],[-122.45997274580598,50.435394455574645],[-122.4602474001709,50.435420661463766],[-122.46051603176338,50.4354787203478],[-122.4607807523701,50.43554170979447],[-122.46104951695885,50.4355980892109],[-122.46130052508246,50.43567863284518],[-122.46151461157231,50.43580298943955],[-122.46173344738418,50.43591174407893],[-122.4620037989346,50.43592543779293],[-122.46228988687672,50.43591825708403],[-122.46256880929852,50.43595752139556],[-122.46283168884541,50.43602158055467],[-122.46305430884904,50.436127079441675],[-122.46325939229273,50.43625395207197],[-122.46351053950302,50.43633281247191],[-122.4637201082806,50.43644745691516],[-122.46386119948632,50.43660377504117],[-122.46399495115104,50.436763799327835],[-122.46413433044816,50.43691949559454],[-122.46435453980388,50.437010861962506],[-122.46463738087576,50.43700020672801],[-122.46490277481209,50.437054777428585],[-122.46516544475017,50.437121630910056],[-122.46542605016515,50.43719234941976],[-122.46568872167776,50.437259201651024],[-122.46595148181132,50.43732493148369],[-122.46621230887128,50.43739284818815],[-122.46646918122696,50.43746626105256],[-122.46673163596401,50.4375359197073],[-122.4669583593625,50.437634235604875],[-122.46711928880828,50.43778499146999],[-122.46733225778762,50.43790142808452],[-122.4675545463487,50.43801140478002],[-122.46778052727825,50.438119258482814],[-122.46800466399617,50.43822816849351],[-122.46822488998657,50.43834201847347],[-122.46844335887872,50.438455811992476],[-122.46866749816283,50.438564729592834],[-122.46890113249992,50.43866494358119],[-122.46914993037853,50.43875158737903],[-122.46940901226256,50.438819440451525],[-122.46968905535631,50.438844669061],[-122.46993644849779,50.43892676800047],[-122.47017373525067,50.43902541306112],[-122.47040526613064,50.43913005493258],[-122.47062761173552,50.439239468904205],[-122.4708441573241,50.43935544513996],[-122.4710721307364,50.43946053901062],[-122.47132462909985,50.43954504623413],[-122.47156794207939,50.43963432554664],[-122.47176444945275,50.439758658565864],[-122.47193274218627,50.43990570915497],[-122.47211773744807,50.440042045285274],[-122.47232132542459,50.4401660356794],[-122.47254741620264,50.440272757612085],[-122.47280225042034,50.440350021324015],[-122.47299111741196,50.440481980711105],[-122.47312139631049,50.440641881351155],[-122.4732390180159,50.4408058684003],[-122.47340964723772,50.44094568545917],[-122.47361504463049,50.441069172870264],[-122.47382593760055,50.441190018731966],[-122.47407365753084,50.44126818649271],[-122.47431891954433,50.44135526298164],[-122.47455635973401,50.44145222020076],[-122.4747881319388,50.44155405266744],[-122.47499353586743,50.44167753743339],[-122.47516391164511,50.44182070798504],[-122.47523494970586,50.44199446593595],[-122.47532568147106,50.442164342626704],[-122.47546872014641,50.44231902260619],[-122.47561716669344,50.442472182908524],[-122.47580773469949,50.44249229282451],[-122.47606557729813,50.442418395561866],[-122.47632359424405,50.44234225414848],[-122.47656002124809,50.44224912448843],[-122.47674843333277,50.44211622466813],[-122.4769235649768,50.44197279053591],[-122.4771001918338,50.44183276831879],[-122.47727681689501,50.441692754770564],[-122.47745854145067,50.44155514308529],[-122.4776436057469,50.441419895326],[-122.47783381294171,50.44128649298711],[-122.47802406313858,50.44115252492527],[-122.47822591938326,50.44102793066309],[-122.4784512095021,50.44091925739203],[-122.47869637282024,50.44082695866098],[-122.47895363260864,50.4407603415944],[-122.4792393542835,50.440758169706086],[-122.4795065462537,50.44081276105519],[-122.47978230315383,50.440847948455705],[-122.4800572653659,50.44087073082076],[-122.4802920820625,50.44097883777338],[-122.48055768469519,50.44100863583522],[-122.4808463909152,50.440990810739],[-122.48112403098172,50.44100187208784],[-122.4813850336374,50.44106806565827],[-122.48163356223532,50.44115861191392],[-122.48184091632903,50.44127989630729],[-122.48208065601204,50.44137015358706],[-122.48234135579324,50.441440275588405],[-122.48261044469933,50.44149323702401],[-122.48288379444347,50.44153676975533],[-122.48316127338076,50.441572560907844],[-122.4834393646794,50.44160049891174],[-122.48371978319045,50.44162119593136],[-122.48400076973161,50.44163460516275],[-122.48428377698137,50.441644704100135],[-122.4845667403134,50.44165536769255],[-122.48484763993606,50.44166989655873],[-122.48512445543757,50.44169160031157],[-122.485398463723,50.44172671797338],[-122.48566514469265,50.4417880251086],[-122.48592181158877,50.4418647578745],[-122.48617087846596,50.44194855422074],[-122.4864082598712,50.44204660778676],[-122.48664366593489,50.442147405078785],[-122.48688904428785,50.442233331906706],[-122.48715107826571,50.44230910715143],[-122.48742052726789,50.44235756974166],[-122.48769668090021,50.442365193576165],[-122.48797994320849,50.44234942640511],[-122.48826197072891,50.44232687212659],[-122.48854360550311,50.442309360662684],[-122.4888236555475,50.44228955820878],[-122.48910225278583,50.44226576864154],[-122.4893797022462,50.442234070218674],[-122.48964984290659,50.44218302243187],[-122.48990920166763,50.4421119486171],[-122.49015245844019,50.44202125620767],[-122.49037271143935,50.4419090265256],[-122.49055887333803,50.44175916511865],[-122.49079610770794,50.44174587438651],[-122.49104550171528,50.44184822938767],[-122.491239572904,50.441982002601186],[-122.49148908568755,50.44206018704964],[-122.49173442882991,50.4421466685515],[-122.49196795845535,50.44224907708693],[-122.49220363958555,50.44234649720406],[-122.4924565856422,50.44242591248814],[-122.49271748200249,50.442493766449104],[-122.49297644638347,50.44256380774254],[-122.49322548626726,50.44264815356074],[-122.4934723767576,50.44273748674715],[-122.49371948578691,50.442824019397946],[-122.49397072269817,50.44290281019673],[-122.49423535845159,50.44296797177818],[-122.49451426501273,50.44300827721777],[-122.49478764800622,50.44300623254451],[-122.49505698720064,50.44294277640672],[-122.49533607994721,50.44293529718198],[-122.49559724493048,50.44299977896995],[-122.49585191582817,50.443079798433054],[-122.49608941199944,50.44317670038902],[-122.49635444471177,50.443236804367366],[-122.49663203185774,50.44327143997145],[-122.4969114914304,50.44328196094105],[-122.49719392936778,50.44327682275957],[-122.49747539175995,50.44326154119661],[-122.49775438257527,50.44323267740358],[-122.49803426018815,50.44321509530331],[-122.49831621845122,50.44321612858739],[-122.49859963085281,50.443221138457815],[-122.49888243336265,50.44323400910079],[-122.49916089273071,50.44325742049066],[-122.49943272857003,50.44329804787809],[-122.4996959209888,50.443359210139384],[-122.49995639856319,50.44343265594776],[-122.50021503153617,50.44350716742358],[-122.50046984362585,50.44358549804101],[-122.50072057459668,50.44367100421984],[-122.50097981909607,50.44373766136395],[-122.50125864944978,50.44377907160317],[-122.5015511379324,50.44380347728495],[-122.50182680497097,50.44379474898778],[-122.50206338086323,50.44372180389697],[-122.5022611242591,50.44358129482059],[-122.50244312806826,50.44343915538511],[-122.50260947797294,50.443294281824095],[-122.50277252764126,50.443146488093575],[-122.50294397751966,50.44300401497873],[-122.50312901523218,50.44286815958396],[-122.50332078091586,50.44273645643983],[-122.50351927526005,50.44260889653911],[-122.50372946893872,50.44248957695782],[-122.50395307727216,50.44237910948782],[-122.50416489643253,50.442261531670916],[-122.50436008710766,50.44213105033433],[-122.50461004475379,50.44204446978301],[-122.50486312688693,50.44196305208621],[-122.5050494354482,50.4418334141319],[-122.50512474893159,50.44165755392237],[-122.50513873636683,50.44147694475095],[-122.50511584182635,50.44129460620326],[-122.50504983431743,50.441122720710716],[-122.50491579363039,50.44096443399267],[-122.50477111692808,50.44080693628755],[-122.50467671737144,50.44063752894562],[-122.50461092936976,50.44046284304536],[-122.50455050443566,50.44028719260291],[-122.50448832095898,50.4401114956271],[-122.50442253514736,50.439936800526546],[-122.50434787073677,50.4397629589282],[-122.50426076882651,50.43959040737231],[-122.5041465549396,50.439426554884314],[-122.50395571236588,50.43929628010644],[-122.5037777878989,50.43915853155121],[-122.50365096441219,50.43899822111222],[-122.50353152254428,50.43883364510867],[-122.50339745016589,50.438675921492376],[-122.50324892190345,50.43852279764229],[-122.50311309388229,50.43836500919087],[-122.50297357578066,50.438209362193604],[-122.5028286977013,50.43805466142712],[-122.50267832824848,50.437902603031354],[-122.5025041897283,50.437761606701436],[-122.50234103699866,50.437615324926405],[-122.50220710315642,50.437455912446],[-122.50211263327489,50.437287624016214],[-122.50205942829157,50.437109958794686],[-122.50203628755618,50.436930984021686],[-122.5020220241731,50.4367511737569],[-122.50199892689528,50.4365716424829],[-122.50196343566721,50.43639284462858],[-122.50189762121481,50.436218712610426],[-122.50179788060585,50.43605025722008],[-122.50168192645526,50.435886345993836],[-122.50155516272466,50.43572547609286],[-122.50144461478821,50.43556005278653],[-122.50134663545289,50.435391652337415],[-122.50124689872499,50.43522319627828],[-122.50114536148992,50.435055241018226],[-122.50104022112731,50.43488830542387],[-122.50091526441928,50.43472692469494],[-122.50079909908908,50.434565821269594],[-122.50077420656069,50.434386790171],[-122.50074408311934,50.434207036124356],[-122.50068912907125,50.43402931406803],[-122.500641164592,50.43385237035128],[-122.50063033757925,50.433673783043304],[-122.50067422744921,50.43349411610296],[-122.50076660272003,50.43332554282325],[-122.50090566243423,50.433168555036985],[-122.50104647852301,50.43301163151169],[-122.50117520516504,50.432851510351384],[-122.50130045867127,50.43269071264497],[-122.50142232533071,50.43252812557231],[-122.50153214587745,50.43236178452852],[-122.50159313237461,50.432188846190336],[-122.50157188408105,50.432008247483544],[-122.50155230700011,50.43182882602259],[-122.50153273007466,50.431649404517984],[-122.50151315330476,50.43146998296988],[-122.50149181871997,50.43129050589361],[-122.50147769005648,50.43110900709683],[-122.50144387618984,50.430931385152654],[-122.50130065386313,50.43077842367371],[-122.50119547975083,50.43061204375413],[-122.50106860246338,50.43045285046589],[-122.50093460738546,50.4302945568361],[-122.50079881218772,50.43013676393467],[-122.50066301724291,50.42997897981048],[-122.50052902499168,50.429820685597214],[-122.50039868029839,50.42966081499422],[-122.50027549824058,50.42949948799562],[-122.5001541619339,50.429337094524406],[-122.50003818713952,50.42917374560152],[-122.49992230016748,50.42900927471449],[-122.4998081719124,50.428844859184125],[-122.49969584550102,50.42867994259813],[-122.49958352060568,50.428515016889975],[-122.49946939483215,50.42835060090977],[-122.49935531303942,50.428185628360474],[-122.49923938793671,50.428021712975486],[-122.49910540647869,50.42786341665644],[-122.4990469947885,50.42768501594409],[-122.49892343107132,50.42752873968324],[-122.49874736926473,50.42739048014992],[-122.49855505317768,50.427257329587],[-122.49835909243512,50.42712574582885],[-122.4981685364184,50.42699265008634],[-122.49797978248384,50.42685905311653],[-122.49779103036188,50.42672544682888],[-122.49760223548982,50.42659240559062],[-122.49741168395227,50.426459308459386],[-122.49722289130943,50.42632626653125],[-122.49703045332201,50.426194800352754],[-122.49685268862102,50.42605591663361],[-122.49669144057879,50.425908567139224],[-122.49653208227816,50.42575958574249],[-122.49637812920379,50.425609083582636],[-122.4962278660697,50.42545645766886],[-122.49608480971433,50.42530180120716],[-122.49596525746813,50.42513945787503],[-122.49585299818322,50.42497397124269],[-122.49573533561968,50.42481000493949],[-122.49562145126231,50.42464277522274],[-122.495494740657,50.42448189614364],[-122.49533684456495,50.42433689020157],[-122.49514437734052,50.42420597684378],[-122.4949335505331,50.4240846035554],[-122.49471156907317,50.42397074898121],[-122.49448357494104,50.423866267051785],[-122.49424043193022,50.4237753580096],[-122.49399535799144,50.423686636444955],[-122.49375410562922,50.42359409471422],[-122.49351105268309,50.42350206222981],[-122.49326589452072,50.423414460835446],[-122.49299241145091,50.42335126985516],[-122.4927972389283,50.4232326365781],[-122.49263794683144,50.423083083696184],[-122.49249881740135,50.42292348973434],[-122.49237937149167,50.42276002024323],[-122.49230649619233,50.422586778872294],[-122.49224622946416,50.42241000498098],[-122.49215547444975,50.422240128975176],[-122.49204683868811,50.4220736273453],[-122.49192370713574,50.421912289546775],[-122.49179161418297,50.42175291701169],[-122.49165943498748,50.42159466610096],[-122.49152369763085,50.42143686910918],[-122.49137724214714,50.421280972700515],[-122.49123970591285,50.42112367607353],[-122.49118441317638,50.42095099008721],[-122.49120732484995,50.420769534443735],[-122.49124236476335,50.420590711917974],[-122.49128263306365,50.42041262167725],[-122.49133516049962,50.420235477326955],[-122.49140328761648,50.42006163377157],[-122.49149755863935,50.419891433821654],[-122.49159204653492,50.41971843370267],[-122.49170521280021,50.419554454647475],[-122.49197197597773,50.419522415002625],[-122.49225192721862,50.41950203793831],[-122.49253170390934,50.41948390380096],[-122.49281169857869,50.41946295992688],[-122.4930890486424,50.41943069490695],[-122.49335785796829,50.41937228472134],[-122.49362495231667,50.419313261848124],[-122.4938984813408,50.419284805454325],[-122.49417879401395,50.41928242822114],[-122.49445994924766,50.419291889461675],[-122.49474247052196,50.41930644928025],[-122.49502499197833,50.419321008378894],[-122.49530601735808,50.41933214571579],[-122.49558673847014,50.419347204222035],[-122.49586776415121,50.41935834013515],[-122.49614974761755,50.419357135314954],[-122.4964295218464,50.419338991341526],[-122.4967083217552,50.41931069471538],[-122.49697026908255,50.4192498188538],[-122.4971770743405,50.41912758805744],[-122.4973906466512,50.41900895349781],[-122.49761239680174,50.4188984400227],[-122.49783581563521,50.41878911242914],[-122.49806424548058,50.41868330748296],[-122.49829913827033,50.41858502053246],[-122.49854225154851,50.41849430707158],[-122.49879824954351,50.41841917742324],[-122.49906053752143,50.418353800287896],[-122.49931803038612,50.41828209042215],[-122.49957569637658,50.41820813630339],[-122.49983164720177,50.41813356964233],[-122.5000875978779,50.41805899340902],[-122.50034526133676,50.41798503748169],[-122.50060450751026,50.417913380099634],[-122.50084418459491,50.417821428691745],[-122.50106429308279,50.417709174403335],[-122.50127446434978,50.417588733942964],[-122.50148125036297,50.41746649486726],[-122.50167822914132,50.41733439144792],[-122.50188325477994,50.41721210507583],[-122.5021195414103,50.4171183526436],[-122.50237565635986,50.417041527379105],[-122.50263827804294,50.416971663331246],[-122.50289751476656,50.416900000498295],[-122.50314874554026,50.416817963294626],[-122.50337843223126,50.41671837715019],[-122.50359008951752,50.41660135309698],[-122.50379189623234,50.41647502128743],[-122.50417732442784,50.416229654893705],[-122.5045521671256,50.41628027318249],[-122.5048274464571,50.416319886737725],[-122.50510470108922,50.41635674597048],[-122.50538067665677,50.416387374523794],[-122.50565927747112,50.41640684846654],[-122.50594263121596,50.41638766943562],[-122.50622672289171,50.41635894961914],[-122.50650052943172,50.41637208065318],[-122.50676804407456,50.416420998849354],[-122.50703139327513,50.4164782238342],[-122.50729598058064,50.41654222560507],[-122.50755666300903,50.41661116869632],[-122.50781884335085,50.416683532053064],[-122.50807737922277,50.41675747125806],[-122.50833595966338,50.41683084444967],[-122.50859462768882,50.41690309519824],[-122.50884947845714,50.41697915652883],[-122.50910226874578,50.417059092806056],[-122.50935124117913,50.417142848681955],[-122.50959828435438,50.41722878332577],[-122.50983764801197,50.41732291423728],[-122.51006551421442,50.417429052694736],[-122.51029526864266,50.41753356775269],[-122.51052506782979,50.41763751691679],[-122.51075868675562,50.41773764536288],[-122.5110018735009,50.41782796244831],[-122.51124690605505,50.41791720351251],[-122.5114958442004,50.4180015109136],[-122.5117713571208,50.418038298074656],[-122.51201485117359,50.41812468199828],[-122.51223521966928,50.41823676919127],[-122.51246700135094,50.418337960482674],[-122.51271006511908,50.41842995201857],[-122.51295493033795,50.418521441885055],[-122.51319242073845,50.41861718836402],[-122.51335931488647,50.41876020273697],[-122.51357085762264,50.418712879567664],[-122.5137526820314,50.418571282584004],[-122.51398393852091,50.41847397365482],[-122.51424188507134,50.418396054569456],[-122.5145041069181,50.4183312063148],[-122.51478371157938,50.41829221126092],[-122.51505187996594,50.41824160126771],[-122.51525023359257,50.4181140164898],[-122.5154664464667,50.41800611047332],[-122.51573478483786,50.417953264111134],[-122.51601460285188,50.41791145685456],[-122.5162814858465,50.417854622988415],[-122.51651611866846,50.417759097464106],[-122.51673486317999,50.41764114762833],[-122.51696790886508,50.41754333117595],[-122.5172303385271,50.41747566732133],[-122.5175020135366,50.41742517079876],[-122.51778313568356,50.41741207193752],[-122.51803972834767,50.4173515369207],[-122.51827663062602,50.41724934076856],[-122.51853356770066,50.41718431723503],[-122.51881781337573,50.41717637894826],[-122.51910260560717,50.417184200914996],[-122.51938093061396,50.41718450488648],[-122.51964168291711,50.41711566722679],[-122.51987849456255,50.41701458048965],[-122.52010425642656,50.41689684467493],[-122.52033108291515,50.4167881383112],[-122.52057228401517,50.416721491490115],[-122.52085100848782,50.416762297456884],[-122.52113450195841,50.416786941855385],[-122.52139349255978,50.41671803589362],[-122.52165423910543,50.41664919346176],[-122.52192718669738,50.41660490686703],[-122.5222070634737,50.4165850105515],[-122.52248934507755,50.416556759334824],[-122.52250406236945,50.41638853777467],[-122.52249050161714,50.41619862893583],[-122.52256026019103,50.41602482053466],[-122.52266301962854,50.41585711270184],[-122.52277786370787,50.41569259988005],[-122.52290646400886,50.41553245005144],[-122.5230419201415,50.41537476431182],[-122.52318251821978,50.41521892208464],[-122.5233300148826,50.41506498746591],[-122.52348595185488,50.41491581569825],[-122.52365212929534,50.41477090544642],[-122.52381667821038,50.414624252527574],[-122.5239676854594,50.414470427209984],[-122.52412537561324,50.41432130956184],[-122.52435808630597,50.414227399159145],[-122.52445439767527,50.41407466440137],[-122.52453297485467,50.41390057346925],[-122.52462882204455,50.41373096459919],[-122.5247778072236,50.41358044843898],[-122.5249660870938,50.41344578373619],[-122.52514078258882,50.41330450313446],[-122.52529846480374,50.41315538360081],[-122.52544933227703,50.41300324324833],[-122.52559672767224,50.41285042704055],[-122.52574768012516,50.41269715539689],[-122.52587103237504,50.41253627978745],[-122.52596331431407,50.412367115714645],[-122.5260435536668,50.41219420029197],[-122.52612726410246,50.41202195140431],[-122.52622652951642,50.411853572799906],[-122.5263344084825,50.411687704266605],[-122.52643885779432,50.411520612532975],[-122.52653464998505,50.411351557950915],[-122.52661137091121,50.4111785317196],[-122.52668290589823,50.41100421828197],[-122.52675615474267,50.41083051628636],[-122.5268189454219,50.41065537081602],[-122.52684505062807,50.41047625938082],[-122.52687466999707,50.410297258066954],[-122.52690424633776,50.41011881314619],[-122.52693035089598,50.409939701570806],[-122.52695469808319,50.40976053486654],[-122.52697913135209,50.40958024625882],[-122.52697004881715,50.40940059832129],[-122.52683923810686,50.409246364012446],[-122.52666517811824,50.409104835153066],[-122.52652206868942,50.408950223777005],[-122.52638624829736,50.40879245800237],[-122.52625767271326,50.40863211224579],[-122.5261453000332,50.40846721829066],[-122.52604913080408,50.408297767208545],[-122.52598686496535,50.40812263171855],[-122.52593175777021,50.4079460292743],[-122.5258373475362,50.40777663299691],[-122.52572677909171,50.407611228124075],[-122.52560365303485,50.40744880295835],[-122.52546603979467,50.407291546073445],[-122.52530292205459,50.407145301483354],[-122.52511970161757,50.4070085381646],[-122.52492910811974,50.40687605047597],[-122.52470568107631,50.40675826737873],[-122.52458358391308,50.40660543632547],[-122.5245376145258,50.406424621012285],[-122.52453042919218,50.40624334000802],[-122.52455649740929,50.406064793540736],[-122.5245949515122,50.40588550203316],[-122.52462457678364,50.40570650029197],[-122.52462608987312,50.40552661659102],[-122.52462057499189,50.405346512370556],[-122.5246396579122,50.40516717978513],[-122.5246657685842,50.40498806763283],[-122.52461945452575,50.40481174841351],[-122.52457147088224,50.404634243177426],[-122.52455361413534,50.40445431832622],[-122.52449667373772,50.404278781100125],[-122.52441123390373,50.40410741471225],[-122.52432228084858,50.40393593797247],[-122.52424395636609,50.40376367001642],[-122.52417107590922,50.403589323620864],[-122.5241088238325,50.4034141860437],[-122.52404665857357,50.403237926528725],[-122.52399687843636,50.40306093098488],[-122.52397015379621,50.40288185190048],[-122.52397197191742,50.40269803655636],[-122.52398266006279,50.40251338393006],[-122.52398061903392,50.402333945703624],[-122.52393445289658,50.40213288942948],[-122.52270526553671,50.401994780820644],[-122.52154364691455,50.39896692835016],[-122.52332821061083,50.3953658138715],[-122.52447590365608,50.39216639917863],[-122.52448067262209,50.38679436963926],[-122.52232417565399,50.382972745636344],[-122.51830049543689,50.377436915317],[-122.51427691566332,50.37446838839585],[-122.50783606400249,50.37236083693765],[-122.49988790208111,50.371907926606376],[-122.49005181303585,50.371110065492964],[-122.4833544106203,50.36996683578354],[-122.4809487488396,50.369400029453374],[-122.47460246922354,50.36466287532608],[-122.47021825034498,50.359692089929695],[-122.46120887137074,50.35358520157945],[-122.45655352008123,50.35084939963096],[-122.44994855621657,50.34696210872527],[-122.4450455159772,50.343992863067136],[-122.44173906835523,50.34148414186268],[-122.44004532223664,50.33708143382539],[-122.43941647125922,50.332915976111494],[-122.4387080526177,50.32869055545839],[-122.4381735395656,50.32869021074909],[-122.4324539558276,50.330402725163594],[-122.42477462289786,50.33234179052925],[-122.41433161704524,50.33399506914899],[-122.40299478646423,50.333077457579144],[-122.396657864558,50.33068066095843],[-122.39122178254293,50.32599243134667],[-122.38695341777672,50.32113789141202],[-122.38382317640226,50.319827509890935],[-122.37963615732151,50.31942276804661],[-122.37678034256649,50.31890459618879],[-122.37000367971024,50.31519252887787],[-122.3669784213522,50.31170910462229],[-122.36342249743936,50.30696065297457],[-122.36004423009943,50.29913748700035],[-122.35933046539687,50.295426136189256],[-122.35747984200735,50.289947795126444],[-122.35809903226061,50.2874918049268],[-122.36292577283355,50.282692965372696],[-122.3668622875966,50.276015894561326],[-122.36767856594867,50.26899027489369],[-122.37081509528795,50.26368380615801],[-122.36484268749598,50.25950966711437],[-122.35825594949648,50.25722611305571],[-122.35255477917029,50.254766667591106],[-122.3456043427169,50.2521322453316],[-122.3426714515004,50.25018908139197],[-122.34232104364918,50.24722225183456],[-122.34616386195358,50.24379810443671],[-122.35489719974862,50.24083472087326],[-122.35962888918645,50.238036264006666],[-122.36088602778248,50.234443042158105],[-122.35786033886421,50.232613029978175],[-122.34984231741021,50.230375430824814],[-122.34307964713042,50.22911592891395],[-122.33434879281022,50.22894034829993],[-122.3242803389211,50.22916162327423],[-122.31412728518745,50.228694603631745],[-122.3108331128642,50.22812098882657],[-122.30450300405062,50.22811385836097],[-122.29569746081182,50.227307202396325],[-122.28919923021355,50.22575283047224],[-122.28322499616884,50.22483167149648],[-122.27486039925921,50.22430648941258],[-122.26693534212748,50.22338827968665],[-122.26649697181176,50.22052933601064],[-122.27257898766598,50.216542591015234],[-122.27535867201527,50.20935238324139],[-122.27563040165859,50.20775160995888],[-122.27947968120382,50.20187601789808],[-122.28830769452068,50.20028744624547],[-122.29738787844819,50.1990385367391],[-122.29989258239164,50.195331217106805],[-122.30168634800192,50.19122083917898],[-122.30846735581463,50.18769048522007],[-122.31327143865597,50.18535086883591],[-122.31524974360363,50.18032895259807],[-122.31526082201482,50.17621890204676],[-122.31135231545319,50.17341662736076],[-122.30369274340043,50.17278413192315],[-122.29639847273369,50.17317540015225],[-122.29364598743777,50.172028624028044],[-122.29011258639888,50.165856088239046],[-122.28870517978935,50.16043572172916],[-122.28800444147613,50.15597576894878],[-122.28259979857711,50.151117983826744],[-122.27558498818678,50.14779749533908],[-122.27220928411283,50.144024271485236],[-122.27409697746282,50.14031216084663],[-122.27286961374148,50.136145210968564],[-122.26648408287654,50.13116877391493],[-122.26108446899087,50.12665295016858],[-122.25894745910372,50.12487903735436],[-122.25745006307302,50.12282302641535],[-122.25647574847969,50.12121910905336],[-122.25266885873611,50.117622772436434],[-122.25098042868754,50.11653118602762],[-122.2458347121342,50.113557877217694],[-122.24106550127976,50.10823979565891],[-122.2396706773887,50.10292771141473],[-122.24030556532287,50.09761857181999],[-122.24743821470823,50.09277158010166],[-122.26201263274932,50.089307141871075],[-122.26850600518975,50.08726147198499],[-122.2722421936646,50.08572680206191],[-122.27883301229261,50.07888413825868],[-122.27901981565267,50.074717492688556],[-122.27975277554287,50.071056539281926],[-122.28199532153327,50.06535255152002],[-122.28502066138694,50.06101739518603],[-122.28680572001981,50.05627903795684],[-122.28681504995731,50.05410701217036],[-122.28052278225519,50.051192366348424],[-122.27351859145259,50.0489564808391],[-122.27183641320808,50.048326070175456],[-122.26483839850785,50.04432025694857],[-122.25961605344345,50.04134726318488],[-122.25616925149512,50.039060207699514],[-122.25138379500022,50.033340090964515],[-122.25035398056089,50.027341756973584],[-122.25126295895612,50.019691731716705],[-122.25323500880235,50.01593115597896],[-122.25323117190405,50.01478822682216],[-122.25270741728663,50.01147246492584],[-122.25165641210349,50.00930287692429],[-122.25166625019266,50.00884350361462],[-122.25166276417436,50.00650766931929],[-122.2526470796921,50.0038803397268],[-122.25296238227372,49.99970469175916],[-122.25225139135306,49.99713984561839],[-122.25064727628549,49.99473747375627],[-122.24664535276419,49.991946944995235],[-122.24317911344882,49.98977893405338],[-122.24077367957923,49.98812827385471],[-122.24228324676939,49.98641591007562],[-122.24660683724804,49.982066236376824],[-122.25254008068728,49.97680579304081],[-122.26040731014197,49.972796645861784],[-122.26466621343093,49.97022224086819],[-122.26465304816541,49.968848780569],[-122.26419907253523,49.96416561109433],[-122.26046092569032,49.95886060730925],[-122.25387736776,49.95304346027714],[-122.246597016421,49.947915499008445],[-122.2404658633403,49.94392824184361],[-122.23744537382377,49.94164619423407],[-122.23530911223962,49.93862516245959],[-122.23317829937197,49.935372401693506],[-122.23272652124459,49.931888640055234],[-122.23448713993574,49.92897333716321],[-122.24075798981994,49.92513520895525],[-122.24491162663719,49.92227483552817],[-122.24472804878405,49.919250488513114],[-122.24223880371011,49.91679870155867],[-122.23834510757209,49.91549110332204],[-122.23320085945818,49.914811729948404],[-122.22133695095839,49.913626922836585],[-122.21256405015276,49.91249543277175],[-122.1999079046829,49.910622969036496],[-122.1937001428618,49.91017097510936],[-122.19113546442856,49.90983191105874],[-122.1808681239556,49.90858279502304],[-122.17307469205556,49.908592630795795],[-122.1657170108706,49.909057272871],[-122.16015319123638,49.90957310576807],[-122.158466927088,49.9092348048497],[-122.15545205121256,49.90729086650044],[-122.15119272154699,49.903409801653645],[-122.14356775998648,49.895652072339196],[-122.14100120245055,49.89039716483969],[-122.14020481379532,49.88959688554962],[-122.13391159358079,49.88492108417286],[-122.1286924947447,49.87892810356348],[-122.12487424342706,49.87384443336611],[-122.12019221392661,49.86893705797913],[-122.1136319248584,49.86385461924451],[-122.11071657109665,49.861287918988474],[-122.1057608440284,49.85586567994659],[-122.10213573842455,49.85118121772516],[-122.10089001753225,49.84815414510501],[-122.09814896319368,49.84650169218454],[-122.09319540498781,49.84467610801606],[-122.08860523349298,49.841535446339975],[-122.08090492044293,49.8387970079849],[-122.0772842497536,49.83816446235906],[-122.07038445336927,49.83616714000032],[-122.06216787074707,49.832171467333126],[-122.05686878474509,49.830512341499094],[-122.05014772801381,49.82936896700102],[-122.04687728567572,49.82840014333442],[-122.04282281788295,49.825716339113086],[-122.04149314813193,49.824517005952494],[-122.0376026489484,49.820750218774364],[-122.03582202515405,49.819459010151114],[-122.0325764068774,49.817091181542224],[-122.02895532201208,49.81520608473866],[-122.02550757700408,49.81389178624887],[-122.02055539853579,49.812921131857806],[-122.01463775247886,49.81377384831757],[-122.01162953704014,49.81508548225935],[-122.00800417202258,49.816451605227336],[-122.00340648801793,49.81747693333498],[-122.000136424423,49.817478849139654],[-121.99948994865456,49.817870628792484],[-121.99606765427264,49.81881709740672],[-121.9908762692211,49.81978299935657],[-121.98976851843499,49.8216265128755],[-121.9870172370499,49.8284052119661],[-121.98281262981682,49.8336532425879],[-121.97735624097666,49.835077178772515],[-121.96998586594462,49.83720715124428],[-121.96750475395115,49.84071845272081],[-121.96971932726608,49.84481611796218],[-121.97253585674474,49.84856547016907],[-121.97129351458285,49.85223672256578],[-121.96652211559847,49.85628557457485],[-121.95789290263603,49.8578009396777],[-121.95471489650375,49.85783034325338],[-121.94710027508992,49.857161070377835],[-121.94028938457784,49.85716678948978],[-121.93334977165937,49.85940273899983],[-121.92727563631941,49.86426790775236],[-121.9226678827763,49.86814036717472],[-121.91803484719136,49.870414648258986],[-121.9106408828219,49.872086782534865],[-121.90321511825083,49.87255255412418],[-121.89763682916666,49.87214644646867],[-121.89004159456773,49.872325183302664],[-121.88507142422091,49.87197448872691],[-121.87868822958987,49.871225811649545],[-121.8721915425946,49.86911291811211],[-121.8671280919327,49.868411650731026],[-121.85763178923278,49.86666522534736],[-121.85228905216111,49.86505472589259],[-121.84758679656308,49.86406503396406],[-121.84241511299388,49.86211203752087],[-121.83121195487608,49.858483795228395],[-121.82418946548884,49.85683142966641],[-121.81865435943823,49.854302028431775],[-121.81624296072171,49.85295260447558],[-121.80810479164947,49.847988186371225],[-121.80300195761292,49.845169312660516],[-121.79826872998494,49.84257776289456],[-121.79411288177874,49.84204126489111],[-121.78760696647248,49.84449601824362],[-121.78399032180421,49.849439510507636],[-121.78330592063651,49.85082065435351],[-121.78253114755745,49.851973100214444],[-121.78154875596316,49.85597989318693],[-121.78056381739187,49.86016334880711],[-121.7771198614961,49.864421873206716],[-121.77057060983383,49.869106925148444],[-121.7654014290663,49.87166507229089],[-121.76070279412087,49.871246582134674],[-121.75751352590522,49.86612559468638],[-121.75531898230159,49.86185156937345],[-121.75525606523918,49.85847774914521],[-121.75324289067808,49.85540652699608],[-121.74389690772695,49.85136254096283],[-121.7380254281916,49.84980331902056],[-121.73333655406137,49.84915645655956],[-121.72789831599377,49.847140055278956],[-121.72509121399638,49.84275395488725],[-121.72526765031267,49.838183801587235],[-121.72405177551882,49.83435869630732],[-121.71886421987729,49.831024955908724],[-121.71659950042232,49.827556112840085],[-121.71174892274024,49.823016677187],[-121.71073133546827,49.820507654191566],[-121.71884069853684,49.81981956282539],[-121.72595890731536,49.81707350362573],[-121.72922669561832,49.81247998319671],[-121.73000830828717,49.806637116555216],[-121.72814931297482,49.801507960394275],[-121.72416111693745,49.795646674071406],[-121.7180133245238,49.792661776644756],[-121.7125201914551,49.791903905321924],[-121.70881537926878,49.792102948441254],[-121.70729786924075,49.79137489128534],[-121.70407183498196,49.788249459921026],[-121.70347423612938,49.78453760223118],[-121.7064788401993,49.77948764498696],[-121.70669355808026,49.776454740486706],[-121.70937421263339,49.77351824851569],[-121.71373049684962,49.77005513639889],[-121.71428505811778,49.76650452663303],[-121.71157043117651,49.76297860234795],[-121.70959088402847,49.76110778909935],[-121.6994593708611,49.756492686595344],[-121.69085772362995,49.75410451136866],[-121.68988669435772,49.75393662077747],[-121.67821234981206,49.7523078067367],[-121.67139677461714,49.75103961193715],[-121.66389751509155,49.75097879028337],[-121.65673738524315,49.750858866564386],[-121.64996850797655,49.7515954468381],[-121.64250786255256,49.75405033434285],[-121.63817271000954,49.753450723176634],[-121.62707827333735,49.7499833473512],[-121.61715488542048,49.747075453937214],[-121.61087763633459,49.74557721011285],[-121.60813217591908,49.74536754330716],[-121.59965776410276,49.74519258352166],[-121.58879280422028,49.743431191610085],[-121.58143748815888,49.74159695569207],[-121.57931218664339,49.74086762694031],[-121.57389349466706,49.738556034302206],[-121.56853514762479,49.73447530104774],[-121.56442622073237,49.73027048721833],[-121.55745981433026,49.72430835389333],[-121.54990558853534,49.7204146226279],[-121.54590226829623,49.717869705225155],[-121.53919274389925,49.711165259394726],[-121.53381644689799,49.70490639330848],[-121.53015508637625,49.70172420478018],[-121.52608441502127,49.700039659695086],[-121.51619926104745,49.69946475788674],[-121.50827665870578,49.70026035083271],[-121.49956260938002,49.70105252895068],[-121.48960987961922,49.70088136129581],[-121.4793334220711,49.697512718100725],[-121.47217039721322,49.69595168988268],[-121.46288979092115,49.69348575003975],[-121.45402475482388,49.68907601815096],[-121.44721017527382,49.6865414353755],[-121.44232979692464,49.68382599451448],[-121.43472020393283,49.68106461025554],[-121.43154150068584,49.68050877111472],[-121.42563743905718,49.680142547500935],[-121.42104753879522,49.6798211446272],[-121.41735219358155,49.67943750173305],[-121.4150558238821,49.67922193984943],[-121.41377033079654,49.67500079626063],[-121.39643997657333,49.677315785541154],[-121.37119957669951,49.680695339562796],[-121.3620732455428,49.675541419069994],[-121.35277877610302,49.67151968767494],[-121.33824405724114,49.67101526935323],[-121.32967804070024,49.66968237159779],[-121.32675854972615,49.66809674271248],[-121.32541128262254,49.66524558845265],[-121.32328384210507,49.6547966851167],[-121.32217643783683,49.650685808492064],[-121.32076169924514,49.64932180783495],[-121.31622767180302,49.644539938070935],[-121.31352767331863,49.63837478742444],[-121.31101686076036,49.63376002176533],[-121.30929821193772,49.629539919391895],[-121.30828661445642,49.624915854943495],[-121.30622668729596,49.620920919869064],[-121.29667240285941,49.61593080731514],[-121.28544311532491,49.610263334576146],[-121.27732974319298,49.60720813335048],[-121.26637719494664,49.60239425949653],[-121.257882115052,49.596883205728595],[-121.2536421632974,49.59473261292385],[-121.24737489759313,49.59115316875991],[-121.24319668062807,49.58694127924933],[-121.23638164693256,49.58171249505519],[-121.23125366621225,49.57772769884433],[-121.22771365215297,49.57540011484576],[-121.21817496436225,49.58068779453108],[-121.21165027244652,49.58854199985969],[-121.20878795480225,49.59380832368261],[-121.20825351930958,49.59255403992454],[-121.20118288765376,49.587545543759695],[-121.19000134776363,49.585697343831306],[-121.18054772487079,49.59195947488704],[-121.17724212123626,49.59745169933438],[-121.17657319562798,49.60277237600336],[-121.17657104344617,49.60305714284527],[-121.17104050532994,49.603589702579605],[-121.16325718776649,49.60774889862493],[-121.16059985909558,49.60863225320333],[-121.15880067196537,49.61110656776328],[-121.156876923408,49.61186641621179],[-121.15547990925447,49.61302080294366],[-121.15454588039154,49.61476356023185],[-121.15476032010783,49.617480563462614],[-121.15071745323574,49.61847943572027],[-121.14777359008403,49.61865376069181],[-121.1436894625913,49.61951556389309],[-121.14126748942527,49.619604845471194],[-121.13865543942467,49.6209667467176],[-121.13742763265243,49.62208734495184],[-121.13419356468215,49.62277326090614],[-121.12749078744199,49.61994640121285],[-121.12538378058831,49.61967976254056],[-121.12338424084399,49.61578674885095],[-121.12363431547445,49.61133837927621],[-121.12294037693577,49.6108231483613],[-121.1200441701002,49.610551400359256],[-121.1165021718153,49.61126971851656],[-121.11642038016757,49.61151766451781],[-121.11218917962158,49.61376196176884],[-121.11108411933475,49.614897120568344],[-121.10986279834796,49.615300051978664],[-121.10374814075577,49.62259347473009],[-121.09813841416388,49.62578503657162],[-121.09723943738688,49.626022327160854],[-121.09382762271828,49.62550602679025],[-121.09247953190284,49.62592306311381],[-121.09088705437873,49.62693993473232],[-121.09008059500991,49.62708948348127],[-121.0856252983647,49.62686393030866],[-121.08186710491383,49.62556741223635],[-121.07927665098556,49.625670532448964],[-121.07375730657661,49.62489360665839],[-121.07160088816681,49.624958161766145],[-121.06787075284637,49.62573069188257],[-121.06395115946614,49.62568352200117],[-121.06259815106863,49.62601431546308],[-121.06107087982573,49.62719209998694],[-121.06042561696654,49.62855027832947],[-121.06065269621476,49.63134065929032],[-121.05998900432469,49.63209554080945],[-121.05580380097103,49.632449129864426],[-121.05261732642846,49.631384428570485],[-121.05134117473567,49.63164307034179],[-121.04972172258354,49.63315690631105],[-121.04774361674556,49.633750430983675],[-121.04448574255616,49.63399140482796],[-121.04177724347335,49.6346681857836],[-121.03858898304402,49.63413500064468],[-121.03522817418273,49.63494247624254],[-121.03224359034552,49.634963376753525],[-121.02959383122483,49.63637689238689],[-121.02857194429366,49.63659054359729],[-121.02847610891347,49.63657883051055],[-121.02433642536528,49.6394508132238],[-121.01775041277932,49.6419761424871],[-121.01772008881251,49.644174398031254],[-121.0172370122994,49.644151136765785],[-121.01405623125568,49.64418399205633],[-121.01020294195332,49.64644811414702],[-121.00118266468125,49.64913862415656],[-120.99335432379216,49.65399617671553],[-120.97648287347221,49.664363750094914],[-120.97121693759509,49.66745124962257],[-120.96365819192576,49.673461679353224],[-120.95644712272217,49.67767975523308],[-120.96044769025661,49.67905594288858],[-120.96314208922655,49.68056876947719],[-120.96716594833993,49.682749418312795],[-120.97254449402946,49.68587783704203],[-120.97309405070446,49.68643916727129],[-120.97198725360026,49.690456435630274],[-120.96959966112533,49.6932315807559],[-120.96365593751588,49.69524597495102],[-120.95822179492738,49.69931756883573],[-120.95774963818437,49.70121182460761],[-120.95662874589769,49.70774231830427],[-120.95287713675008,49.71241512324143],[-120.94747518654404,49.71465333433627],[-120.94425231811941,49.71577742741229],[-120.9381076928956,49.71705592641238],[-120.93308377439338,49.72026288994234],[-120.93169843456808,49.723994038253736],[-120.93153140614615,49.724624777028225],[-120.92990841948445,49.72949674832505],[-120.92784266135568,49.73095432396124],[-120.92365840862377,49.73283560819388],[-120.91763278719652,49.73827992203926],[-120.9166420496404,49.740693633749416],[-120.916662610886,49.74126040307209],[-120.91678620909299,49.74566188920105],[-120.91693807776241,49.75068626362955],[-120.91678942333164,49.7517754275848],[-120.91798296921704,49.756563168345615],[-120.91692649277623,49.75994193783825],[-120.9161598722897,49.76058244332816],[-120.91275816074425,49.762277828544654],[-120.9025322814999,49.76566109039895],[-120.89989326522182,49.76649627671958],[-120.8928526077516,49.77348947526115],[-120.8911492234701,49.77865459409305],[-120.88572963097421,49.78369170539509],[-120.87902812918084,49.787484978172415],[-120.87684144281218,49.79122791448258],[-120.87775653300882,49.792753544357026],[-120.8791248349677,49.79719700755026],[-120.878913452035,49.80256993838353],[-120.87850120399911,49.803889537557204],[-120.87785868343646,49.80589766007013],[-120.8757682035369,49.81026491709708],[-120.8711308860332,49.815232121492734],[-120.86879886942154,49.81714839743051],[-120.86320431745932,49.822811323013156],[-120.8628713067746,49.826644504546444],[-120.86412252176373,49.83051386677959],[-120.86833286230336,49.83595358115209],[-120.87072143745796,49.84260977448344],[-120.87076943275812,49.843921039050265],[-120.87040336176125,49.85004035841264],[-120.86652484468539,49.85379535089563],[-120.86418348062745,49.85565135778008],[-120.85842779202649,49.8618315900211],[-120.85110832928623,49.866035524025264],[-120.8464559662264,49.867228371627725],[-120.83853024767832,49.868633342306815],[-120.83190221430728,49.86916370004503],[-120.823543704072,49.86748785692226],[-120.81069467937309,49.86643447621576],[-120.80693926747922,49.86819009957265],[-120.80198862395156,49.87150043675765],[-120.79607470675036,49.872363551931],[-120.78956204509906,49.87346041182547],[-120.78762275773666,49.873710576528204],[-120.78447122479729,49.87517193822451],[-120.77958334535478,49.87791123490611],[-120.7773452262307,49.88016269433483],[-120.77699716816066,49.8804007806946],[-120.77641673721789,49.88206081839727],[-120.77643709255219,49.8828586176973],[-120.77672178474153,49.88720008780725],[-120.77833660345013,49.89186765155492],[-120.77845801228717,49.896662770012355],[-120.7744516143001,49.898992583596225],[-120.77084867491006,49.90023312137099],[-120.76344084509502,49.90094092921074],[-120.75448858519029,49.90063366922443],[-120.7472736830732,49.899054397501565],[-120.74370802401194,49.89766078725374],[-120.73592178905167,49.89414454153265],[-120.72557584725087,49.89105481960709],[-120.71767260283704,49.88953549589549],[-120.71181930966614,49.88959576669701],[-120.69881125966651,49.8927524706271],[-120.69695610164706,49.893346685747936],[-120.68674279127683,49.89573299867432],[-120.68232780629917,49.89949100387691],[-120.68137029752063,49.90435537486903],[-120.68041782159023,49.912648110330146],[-120.67772771938398,49.9152449031898],[-120.67469779768179,49.918477698283795],[-120.67372399630506,49.92179642851992],[-120.67173800405595,49.92804144038958],[-120.66962430596385,49.92892021960447],[-120.66745033002366,49.93031392628212],[-120.66248517408825,49.93407538820654],[-120.66213065074554,49.93447907872134],[-120.65842640761888,49.93879721953162],[-120.65465850864524,49.94448664363905],[-120.6539546786179,49.94500850589786],[-120.6516970527607,49.95091638993626],[-120.65228891750739,49.96159571864494],[-120.65235858941634,49.96421844871828],[-120.65249449104792,49.97044651363995],[-120.65041071315908,49.97629003278808],[-120.64565238970785,49.977878918879256],[-120.6402498439997,49.97792864081801],[-120.63116198280586,49.975674710857895],[-120.62590086802699,49.97440800897516],[-120.62109490102911,49.97331441910926],[-120.61467142138522,49.97203965888654],[-120.61463146730202,49.97191934819964],[-120.61455600675026,49.971404498563686],[-120.61455037258492,49.970890259112494],[-120.6145943006133,49.96986787418407],[-120.61464319230119,49.969173154011116],[-120.61480973758579,49.968784039048074],[-120.61496793679567,49.9685246906359],[-120.61546425689659,49.96800638015188],[-120.61601828942753,49.96748753212278],[-120.61650642927428,49.96708265380856],[-120.61706047216467,49.96653392846548],[-120.61745235068975,49.965923129928406],[-120.61781463420877,49.96514857103142],[-120.61784498143625,49.96469921585061],[-120.6177977680421,49.963382676666846],[-120.61777185935262,49.96037649916314],[-120.61781910665988,49.95911813741617],[-120.61785099505119,49.95827097903073],[-120.61789174348421,49.95786664810093],[-120.61796228708889,49.95706196483046],[-120.6180004816144,49.956531278381945],[-120.61822458927557,49.95590546489444],[-120.61848921801851,49.954921519503614],[-120.6185184190481,49.95470373219015],[-120.61854421591343,49.95454437932206],[-120.61850447734874,49.95431869525187],[-120.61848855907658,49.954127986718646],[-120.61843106015269,49.95396398091804],[-120.6183456253528,49.953785076431075],[-120.61820699863385,49.95358326902569],[-120.6180243119599,49.95339958410129],[-120.61771804236619,49.953197425612274],[-120.61731346454779,49.95299945045974],[-120.61686615228189,49.952808389712985],[-120.61630434062572,49.95265509644775],[-120.61572602639211,49.95255282790313],[-120.6150765439858,49.95247637074351],[-120.61441217850368,49.95240762661745],[-120.61372740051746,49.9524229688031],[-120.61308277784472,49.95245324895607],[-120.61242354764161,49.95250366323684],[-120.61124086475458,49.95266751065296],[-120.61018440321631,49.95282741467927],[-120.60920620620571,49.953049205570665],[-120.60778563643805,49.953407572414065],[-120.60661895476551,49.95373108749294],[-120.60511162696551,49.95414320067493],[-120.6033601616345,49.954654840935504],[-120.60280775022017,49.95477639766439],[-120.60208748473346,49.95489926253271],[-120.60122715200545,49.95502479329922],[-120.60024231415585,49.95515432223482],[-120.59942847632617,49.95521168054501],[-120.59860478098526,49.955219519959606],[-120.59739352540481,49.95519583327214],[-120.59646403999817,49.955123485529576],[-120.59586958726533,49.95503947728961],[-120.59549677694704,49.95498670338218],[-120.59475142567996,49.95487890158869],[-120.59392489211709,49.95471917763894],[-120.5933620139495,49.95458994146062],[-120.59265426098091,49.954341958762704],[-120.59180290340132,49.953964585414994],[-120.59081086160265,49.95340384860146],[-120.58874122301565,49.951885291258954],[-120.58646577401045,49.95012995533986],[-120.58437295141351,49.948367803853365],[-120.58347748526067,49.94762803218994],[-120.58257653357076,49.94696406919142],[-120.5812508370654,49.945979800640366],[-120.57977786174672,49.94492735146492],[-120.57851043106955,49.944115005498126],[-120.57753598332546,49.94351216031903],[-120.57634369659992,49.943008409322815],[-120.57480713019407,49.942448138361584],[-120.57337219159916,49.94203208716357],[-120.57251892222187,49.941879317068235],[-120.57156736769188,49.94173068361827],[-120.57066530929285,49.941665087545275],[-120.56979885324414,49.94169650385895],[-120.5690527941773,49.941787433928845],[-120.56882676817813,49.941837648027],[-120.56771085824539,49.94221850586602],[-120.56704191616214,49.94240962198641],[-120.56677221337613,49.94247458149581],[-120.56644702042908,49.94255087164698],[-120.56585132066355,49.942684178809564],[-120.56499091756915,49.942825766623194],[-120.56323076804001,49.94305792125243],[-120.56079695301624,49.943359163020546],[-120.55960451420563,49.943458275985165],[-120.55847264626219,49.943488813151696],[-120.55761330903493,49.94341622556562],[-120.55587182401659,49.943184217203566],[-120.55379035701188,49.94285974131788],[-120.55233916034203,49.942478668783686],[-120.55171106436237,49.942283391840256],[-120.55069172899256,49.94191308561907],[-120.54876200799377,49.94119645350406],[-120.54700282595572,49.940456157978076],[-120.54501199601485,49.93943374763669],[-120.54284397347321,49.938156161537385],[-120.5405979578013,49.93662662913913],[-120.53776990403931,49.934432226838204],[-120.53642536714328,49.93335338949142],[-120.53517282799726,49.932163025462145],[-120.53323709521813,49.93019056515101],[-120.53107334627839,49.927703894962185],[-120.52858039818358,49.92474696345543],[-120.5272357064423,49.92309136173153],[-120.5249735159075,49.92044120876846],[-120.52304938788018,49.918117911430336],[-120.52238368338489,49.91730899549681],[-120.52174673981159,49.91666779615001],[-120.521153440284,49.91618659179849],[-120.52044097672714,49.91562219806079],[-120.51981409996903,49.91504292175766],[-120.5185968357444,49.91394424438456],[-120.51746499813277,49.91302117407475],[-120.51648283086276,49.91233444707979],[-120.51469735513275,49.91120158180811],[-120.51283459068638,49.910160635902294],[-120.51081589601488,49.90918340820386],[-120.5089708930321,49.908271783954106],[-120.5068920956387,49.907360223364954],[-120.50525160830934,49.90670795037474],[-120.50416603244575,49.906302800564944],[-120.50293142398232,49.905845613363034],[-120.50126068748594,49.9052424840482],[-120.49810489743393,49.90398797841281],[-120.49340474068403,49.90173681424764],[-120.49270583116459,49.9013972291744],[-120.48224691408784,49.895935428175434],[-120.48087742640033,49.89524116627969],[-120.47066154668522,49.8905028647071],[-120.46745836649556,49.888977203258875],[-120.4627501543231,49.8868594072076],[-120.4579703666104,49.885162226744924],[-120.4555288198337,49.88445271238618],[-120.45290159427273,49.88380755941587],[-120.44954024160104,49.88330432707106],[-120.44737783731262,49.88315559757822],[-120.4458784902467,49.883277852574416],[-120.44370038983216,49.88354485180345],[-120.44137386224749,49.88411375265221],[-120.43847379637202,49.88509425458622],[-120.4359319682104,49.885925496578665],[-120.43386210112084,49.886619489196626],[-120.43181776835296,49.88674594412287],[-120.42816811836312,49.88693204025912],[-120.4259463067285,49.887225785466704],[-120.42413728328764,49.88793910078785],[-120.42199092385225,49.888714108153614],[-120.41811488957296,49.88969390639345],[-120.41518132177114,49.89054133822537],[-120.41304337074712,49.89083178444304],[-120.41076225258233,49.89076648654121],[-120.40825932649766,49.89051784885463],[-120.40592670628452,49.89023219957142],[-120.40339680222249,49.8897627736163],[-120.39986665197353,49.88946866817999],[-120.39768968674184,49.88950764949787],[-120.39455550410052,49.88969763650568],[-120.39333811293729,49.88994978037052],[-120.39140155086417,49.89050270125933],[-120.3877039107945,49.8918829984123],[-120.38350256015588,49.893299307269295],[-120.37933844964931,49.89458095930716],[-120.37471105279143,49.89607990775226],[-120.37138814956448,49.89710181057869],[-120.36960387893693,49.89747617685201],[-120.36766648969024,49.89766278214298],[-120.36623671154364,49.89776614055615],[-120.36525003389025,49.897743483120095],[-120.36299888356923,49.89746056722704],[-120.36033104150067,49.8971747101525],[-120.35673946949048,49.89676670195944],[-120.35405783500143,49.89647997583579],[-120.35146424699056,49.89614474524718],[-120.34895663269089,49.895763714274196],[-120.34705899351421,49.895431637736614],[-120.34159325435604,49.89436353800629],[-120.33577645424727,49.8931732157515],[-120.3314392041247,49.89211286285655],[-120.3287236673229,49.8913574809373],[-120.32704125879712,49.89077010191355],[-120.32587221816097,49.89019411621295],[-120.32457256366307,49.88933563251543],[-120.31931300329215,49.885021077824234],[-120.31871381404004,49.88449435269805],[-120.31797093650717,49.8838045334196],[-120.31642223666653,49.88220229256577],[-120.31411856837542,49.87988303255367],[-120.31138810938734,49.87715471920808],[-120.30893483068442,49.874626239534756],[-120.30691978532107,49.87272606263585],[-120.30566168456716,49.871708769246126],[-120.30369784640757,49.870239120814354],[-120.3019449159837,49.86912098921703],[-120.30017456007126,49.86824096957667],[-120.29873185671697,49.867614834233876],[-120.29810003790783,49.86749277576502],[-120.29764341962372,49.867462177759236],[-120.29679246939102,49.86748880249904],[-120.29643973953877,49.86753409731901],[-120.29184824648446,49.86893788588637],[-120.28035206215932,49.87228353854052],[-120.27245386502129,49.87553760181174],[-120.26311223241045,49.87781548077244],[-120.25269505739782,49.87959284747202],[-120.2440346744223,49.88186215378908],[-120.23987720742176,49.8830217315092],[-120.2336820191489,49.883845874142644],[-120.22528575281491,49.884494746189226],[-120.21707610941863,49.88384694297242],[-120.21044919493411,49.88307542337407],[-120.20565947918325,49.88339221976721],[-120.20295223366502,49.884155368173786],[-120.20011872539897,49.88510121761388],[-120.1937188993924,49.88816895042449],[-120.18892994293485,49.89094137713142],[-120.18612615337095,49.892223422061186],[-120.18350745022798,49.89325698994669],[-120.18042499344965,49.894531966560145],[-120.17307618330499,49.89706764440947],[-120.16542335684915,49.898670305719705],[-120.15843599664096,49.89943340670159],[-120.15071608952833,49.89939956320101],[-120.14161494833752,49.899409585473975],[-120.12999066263195,49.90116124190235],[-120.10935651337479,49.90452555595854],[-120.10821151095556,49.90471255470433],[-120.09983145786802,49.905601665182466],[-120.09616308556855,49.905994072905294],[-120.09478197178409,49.90616987319818],[-120.09195078652758,49.906527847802224],[-120.07717530232105,49.9084167567957],[-120.06246635335287,49.910319746012526],[-120.04895274440202,49.911548791266846],[-120.04006123295986,49.91186533466854],[-120.03675676812585,49.91168178415299],[-120.03526825849318,49.91147313671314],[-120.03094707000916,49.9106254148382],[-120.0297329458164,49.91030872083592],[-120.02838603296273,49.910072740426415],[-120.02452742156868,49.90912141696691],[-120.02419999313581,49.912967349343816],[-120.01926055818703,49.9151568048527],[-120.0137087765127,49.91774962788135],[-120.0110660658308,49.91936004325218],[-120.0091122022378,49.919767377182396],[-119.99939970441949,49.92423519531283],[-119.99805163021723,49.92608949874235],[-119.99652478399891,49.92760234251739],[-119.99426941945639,49.92912762526843],[-119.99102163152607,49.929697670825526],[-119.98599566586516,49.93029055894697],[-119.9815119500333,49.93122156829602],[-119.97657083237466,49.93169858088292],[-119.96950863403661,49.93003426765435],[-119.96715650072545,49.9285853541917],[-119.95989933527021,49.92417810129316],[-119.95502540583655,49.92162116071816],[-119.94788650467086,49.92012985371654],[-119.94145922100839,49.92085858631419],[-119.94420504822398,49.92333333000044],[-119.94446678570199,49.925677238732796],[-119.94190391410955,49.92834639926301],[-119.9391540109326,49.930737797173556],[-119.93811848972932,49.933900408675434],[-119.93563060943154,49.93599942160944],[-119.93325196495866,49.936435508613194],[-119.92648090297125,49.93762609067203],[-119.92226085495524,49.941071434630764],[-119.92078450178056,49.94406899017415],[-119.91854848880251,49.94856634565751],[-119.91829857079891,49.948972088624615],[-119.91491887792816,49.95113843508942],[-119.90978509116853,49.95345131387368],[-119.9067992480775,49.95423548962939],[-119.89916013884455,49.956241999748656],[-119.89485878954122,49.959742796287806],[-119.8936156142397,49.962339052058404],[-119.89222122938669,49.9629318900787],[-119.88987223531385,49.96427968084089],[-119.8873605973174,49.96569166861849],[-119.88238093462473,49.9677705794102],[-119.8767734097468,49.96733523429035],[-119.87129021656861,49.967536026869965],[-119.86540283790504,49.96876358913387],[-119.85928540545586,49.97148732637623],[-119.85789504447011,49.97225201676736],[-119.85455319513785,49.97360941163882],[-119.85473320238161,49.97361049076812],[-119.85478218612931,49.973610415447524],[-119.85480497895395,49.97361000715796],[-119.85492664566134,49.97360273042296],[-119.85504129255585,49.97359562811523],[-119.85506438749397,49.97359298054042],[-119.85538168749194,49.9735487438836],[-119.85541753916648,49.97354229079168],[-119.85544878610548,49.97353107590567],[-119.85563023370221,49.97345665214081],[-119.85586971430507,49.973457682881126],[-119.85601402007536,49.97347706206886],[-119.85630338679572,49.97352319032047],[-119.85653758187948,49.973563406216414],[-119.85685872408762,49.97360737214384],[-119.85705170981014,49.97365486790925],[-119.85708771101633,49.973660272143455],[-119.85712431627634,49.97366119789187],[-119.8571594127408,49.97366034232434],[-119.85724296258306,49.973676310958986],[-119.85742183573711,49.97372470184755],[-119.85761761316752,49.9738163487058],[-119.85769715711136,49.97399171247141],[-119.85779043695999,49.97416898381448],[-119.85780960733626,49.974195436790616],[-119.85788462659306,49.97427466785043],[-119.85791934445135,49.97430256156456],[-119.85800500776844,49.9743547469404],[-119.85802795207461,49.974366186883245],[-119.85823045139313,49.974459897052846],[-119.85827717126116,49.97447661445407],[-119.85853122271864,49.97453824511714],[-119.85884648534243,49.974651816297396],[-119.85890407309003,49.97466576775043],[-119.85901570267048,49.974681053689274],[-119.85905555485998,49.974683848479344],[-119.8595585306452,49.974689496762956],[-119.85960260835964,49.97468689692887],[-119.85984994491554,49.974655644710346],[-119.86005003370909,49.97465050400737],[-119.86024559276255,49.97465301454825],[-119.86028272734649,49.974662993560784],[-119.86031246528961,49.97467594203454],[-119.86051459459082,49.97483731195621],[-119.86055671115595,49.974862235328104],[-119.86081046732187,49.974977991877786],[-119.86098150090824,49.97504567375782],[-119.86101003093928,49.975054610501495],[-119.8611770634582,49.9751000745807],[-119.86119397050966,49.97510440678347],[-119.86121087756432,49.97510873898365],[-119.86130235681142,49.97513078927257],[-119.86133134090487,49.97513635810881],[-119.86149965623977,49.97515933192135],[-119.8615255450762,49.975161911471574],[-119.86172344719583,49.97517300672263],[-119.8618066995992,49.97519121109559],[-119.86164344902728,49.975351271111556],[-119.86162873168436,49.975369623401384],[-119.86157703192836,49.97544174689225],[-119.86142925487293,49.97564271655309],[-119.86137061058795,49.97570147314766],[-119.86116033523632,49.97591191590311],[-119.86095118928458,49.97611396552423],[-119.86093458447277,49.97613333998479],[-119.86085676922023,49.97624347274548],[-119.86084499446638,49.97626594273289],[-119.86077329438021,49.97644748748861],[-119.86076778414497,49.97646241214684],[-119.86072363366247,49.976673144083165],[-119.86070265359768,49.97678984774199],[-119.86066989810496,49.97694199875843],[-119.86066906915266,49.97697409808642],[-119.8606917165759,49.97711750617914],[-119.8607074923226,49.97715618595836],[-119.86075980296314,49.977235259961724],[-119.8609042029027,49.977422721110734],[-119.86102512927077,49.97762861178459],[-119.86104898235192,49.97765927921965],[-119.86124056109915,49.97783415121682],[-119.86128887055044,49.97786506162545],[-119.86156846079302,49.97799692828651],[-119.86184103218238,49.97811599179722],[-119.86215512063366,49.97825148727801],[-119.8625061995809,49.97841104811286],[-119.86285358333521,49.9785850655294],[-119.86293148504878,49.978630042510666],[-119.86327774111345,49.97881245119498],[-119.86333526273184,49.97885290141529],[-119.86352194687859,49.97901226957511],[-119.86355742836979,49.97906050906368],[-119.86368803125656,49.979246632391195],[-119.863739293943,49.979346519473076],[-119.86374133592973,49.97938329178101],[-119.86373666135084,49.97944394578501],[-119.86367937582581,49.979531549945],[-119.86367265866309,49.97954245424966],[-119.86366428138123,49.979552696972064],[-119.86365129965154,49.97957114672284],[-119.86351135824087,49.97966201525396],[-119.86348380711331,49.97967175198726],[-119.8634552741947,49.97967579332587],[-119.86320021142372,49.979673339147396],[-119.86289887477962,49.979663787611095],[-119.86285139497515,49.97966563880774],[-119.86256349811138,49.97969913789244],[-119.86228012947667,49.97972499353763],[-119.86218411333543,49.979736532688435],[-119.86216093964482,49.979739746025835],[-119.86189863269914,49.97979103039884],[-119.8618805165258,49.979795655257924],[-119.86161926531494,49.979865056410745],[-119.86158076906155,49.979878122880756],[-119.86132223664877,49.979992230269154],[-119.86130155345303,49.980002920059555],[-119.86107215760364,49.9801344534],[-119.86104868276531,49.980152874147414],[-119.86100859987708,49.980151755044254],[-119.86076470539784,49.980131312734414],[-119.86061162053439,49.98012498596058],[-119.86033556921507,49.980122485590385],[-119.86030212913779,49.980123994841165],[-119.86005219669093,49.980148335469664],[-119.86003445819608,49.98015015651176],[-119.8596896394479,49.980203586670555],[-119.85962781727254,49.98022098487049],[-119.8593687496882,49.98032603335314],[-119.85933885718498,49.980340150121336],[-119.8593077568241,49.980363223771924],[-119.85915157424088,49.98050958039076],[-119.85895342102117,49.98068177596694],[-119.85892299908598,49.98069981572975],[-119.8588763482812,49.98070848023495],[-119.85871216487483,49.980719577732636],[-119.858462305091,49.98071740466521],[-119.85824067614075,49.98071343923432],[-119.85798734403984,49.98071107032669],[-119.85794325920882,49.9807136784478],[-119.85768343317332,49.980746483613174],[-119.8574510849435,49.98077010829018],[-119.85738805295499,49.98078349367331],[-119.8573589146855,49.980792011853495],[-119.85721775278337,49.98082696017408],[-119.85716257030472,49.98084699472592],[-119.85701415961242,49.98092270658307],[-119.85696773265633,49.98095564110782],[-119.85684838051777,49.9810752904622],[-119.85684030350913,49.981083293428824],[-119.85670071712384,49.981249186865846],[-119.85659955922343,49.981311765079205],[-119.85638184693838,49.98140840593924],[-119.85633323152854,49.9814186558336],[-119.85631519027814,49.98142271548282],[-119.85629903508348,49.98142576189046],[-119.85600462817234,49.98149440937888],[-119.85594778427907,49.981513781606324],[-119.85568356492807,49.98164391937901],[-119.8554368609602,49.98174795643415],[-119.85528489898877,49.98178512116922],[-119.85487243045965,49.981795249076505],[-119.85485129361858,49.981796319088446],[-119.85471141241919,49.9818087746458],[-119.85466121108504,49.981817806755956],[-119.8544506682584,49.98187423546139],[-119.85439631498382,49.98188810630311],[-119.85425975166285,49.98192782149764],[-119.85422487391517,49.98193996959095],[-119.85420079188349,49.981949898850104],[-119.85413194322707,49.98198043680621],[-119.85392970173986,49.982040155204146],[-119.85359256100708,49.982101326242386],[-119.85329037010105,49.982162770476855],[-119.85325405916161,49.98217257264277],[-119.85317146959927,49.98220121967734],[-119.85311703812548,49.98222862253999],[-119.852983711475,49.982322097407675],[-119.85295585170972,49.9823470479996],[-119.85285052650232,49.98246635288544],[-119.85283089556425,49.98249514060416],[-119.85276874721092,49.98263153425257],[-119.85276119116034,49.982674545821496],[-119.85277459517899,49.98289921832475],[-119.85278244065701,49.982931813619615],[-119.8528795655384,49.98314539250729],[-119.85289692439146,49.98317231283416],[-119.8530010080233,49.98329547599221],[-119.8530087063531,49.98330324516915],[-119.853207068318,49.983505584974594],[-119.85321884262413,49.983522039018794],[-119.85323453201111,49.98361316620403],[-119.85322659656583,49.98367194957813],[-119.85322516133988,49.98368258128036],[-119.85322294369192,49.983880439590386],[-119.85322125926997,49.9840484291221],[-119.85320034257371,49.98408673790116],[-119.85318795989507,49.98410070791232],[-119.85315474154052,49.984113508409344],[-119.85311261677423,49.98411452816381],[-119.85301432564553,49.98411690752825],[-119.85292125105471,49.98406768788387],[-119.85278469939783,49.983977672841164],[-119.8526319945626,49.983877726165865],[-119.85244849327667,49.98375968869349],[-119.85228174845138,49.98366008133151],[-119.85206594785156,49.98348326612627],[-119.85187997230287,49.98327992273881],[-119.85180494745974,49.983200697495974],[-119.8516066675513,49.98301075916535],[-119.85141563545776,49.98281898014029],[-119.85140310607363,49.98280812387089],[-119.85124233644724,49.98267726357549],[-119.8510040496035,49.982498614399205],[-119.85096510130303,49.98247612180137],[-119.8508017556493,49.982403216999366],[-119.85078024295815,49.982394112360744],[-119.8507369914112,49.98237757798669],[-119.85063002979943,49.98234055363613],[-119.85061493350793,49.98233575307194],[-119.8502827993292,49.98224321599021],[-119.85014338533108,49.98217446976816],[-119.84994314213144,49.9820380059915],[-119.84985928821735,49.981972379715245],[-119.8497237324009,49.98187507875817],[-119.84963444303219,49.98181084362554],[-119.84962161190391,49.98180222632982],[-119.84933200249786,49.9816280271976],[-119.84931902024897,49.98162052946006],[-119.84930437802167,49.981612369923965],[-119.84925101534785,49.981580042237475],[-119.84917879031701,49.98150604376393],[-119.84915690922364,49.98146081916529],[-119.84914423785541,49.98141216806976],[-119.84916028396373,49.981228622044654],[-119.84916544963721,49.9810867727431],[-119.8491965126317,49.98092156008631],[-119.84921466607071,49.980761262712754],[-119.84921451719823,49.9807494139019],[-119.84921452904308,49.98069752235555],[-119.84921706279968,49.980510401450864],[-119.84922035031684,49.98033065092644],[-119.84921358062239,49.98022535808443],[-119.84921162059442,49.98021396706308],[-119.84917068052194,49.979999026446876],[-119.8491687205144,49.97998763542134],[-119.8491003028044,49.97978186356753],[-119.84909638045427,49.97977204993201],[-119.84901655701766,49.97959892050112],[-119.84895319526645,49.979407529054335],[-119.8488849995304,49.979226027811436],[-119.84872173455624,49.97888068386994],[-119.84862538560041,49.978700416366976],[-119.84853681415153,49.978514376594475],[-119.84848590714897,49.97833440553801],[-119.84841703748269,49.97814496900856],[-119.8483656814504,49.97795537919311],[-119.84835007874142,49.9778636952944],[-119.84836491688007,49.977689105308116],[-119.84839228470733,49.97751240350642],[-119.84842415757143,49.977431843081035],[-119.84849674070418,49.97724414435131],[-119.84854258021716,49.977150831384776],[-119.84862972176475,49.976997793411385],[-119.84872011352367,49.97682068837056],[-119.84879669270086,49.9766422386986],[-119.84879986595836,49.97663169552584],[-119.84882192265609,49.9765590487397],[-119.84882577580669,49.97654347183139],[-119.84883386936737,49.97647060012422],[-119.84883591149422,49.97645548100777],[-119.84884138008188,49.97631139160072],[-119.84883649293937,49.97623102202034],[-119.8488142643264,49.97607183933555],[-119.84880709907786,49.97604718716514],[-119.84872562718964,49.97586041739172],[-119.84871868575725,49.97584705877519],[-119.84415611817411,49.977314932789],[-119.83991705572495,49.98041064779114],[-119.83851295188258,49.980548244879],[-119.83603056663799,49.98058733487571],[-119.83000508528065,49.98095362200749],[-119.8284262486511,49.98165714728749],[-119.82652168246096,49.98249176920076],[-119.82567402501897,49.98399514320121],[-119.82573275651264,49.98541988349346],[-119.82772542665414,49.98682728647958],[-119.83132579821434,49.98814696922474],[-119.83467551230962,49.990388731004145],[-119.83075818976413,49.99233579788422],[-119.82731468934907,49.99295402212915],[-119.82532967465609,49.99458449014123],[-119.82540479245509,49.996817294438095],[-119.8254477472719,49.99784233327164],[-119.82353779917987,49.99902069341319],[-119.82120743587784,49.99999481618963],[-119.81620233712816,50.001383694414784],[-119.81186767627479,50.00195849822345],[-119.80680815825565,50.00158233894158],[-119.80208835037455,50.00107681777217],[-119.79447277039475,50.0014771215047],[-119.78503431655525,50.00281760075216],[-119.77906251502753,50.00450538453772],[-119.7743644508044,50.00732006889899],[-119.77128596635892,50.01067848617545],[-119.77318305782418,50.01390677501852],[-119.774439320157,50.0143476269336],[-119.77961148880377,50.01524151803197],[-119.78657467082616,50.0164578292464],[-119.79355596069847,50.01846776467675],[-119.79707261740691,50.01989988284573],[-119.79761317668182,50.02035294637247],[-119.79968413128485,50.02386344475199],[-119.8034367018772,50.02706452998201],[-119.80544402138734,50.031150511390905],[-119.80208465472128,50.0340053178664],[-119.79790696141565,50.03617863826212],[-119.79184332133947,50.03810065202606],[-119.78629687541878,50.03920785471873],[-119.78123978853039,50.039398898451054],[-119.77966270337328,50.039761238002036],[-119.77268567983111,50.0411791942993],[-119.76059271309634,50.045353918423274],[-119.75857875803906,50.049099726470246],[-119.7587046509392,50.052470921290535],[-119.75685494992983,50.055527736956854],[-119.75727768721573,50.06020748075353],[-119.76216997266131,50.06327894009455],[-119.76218659995037,50.06356641991337],[-119.75944133961188,50.06640367983204],[-119.75358850087014,50.069401295328184],[-119.74510622976871,50.073359389190706],[-119.74150015633822,50.0772403151021],[-119.74479836446348,50.07987406543912],[-119.75202955614384,50.08114670866496],[-119.7584531698271,50.081969640167],[-119.75957878219243,50.08378271341169],[-119.75871664354246,50.08464629316453],[-119.75392778438034,50.087234649289115],[-119.74663255142548,50.089680624459575],[-119.74293600342847,50.090645430820956],[-119.7411489068289,50.09312684272463],[-119.74180377951753,50.09672380570182],[-119.7400312995121,50.09960592444697],[-119.73985711651117,50.10229432093311],[-119.7377730749997,50.106211686892046],[-119.73709302821021,50.107478635890814],[-119.73649066491798,50.1133705079749],[-119.7384485914291,50.11871514044642],[-119.74492146878717,50.123598289378414],[-119.74600293248609,50.12369765433551],[-119.74988830993182,50.12301184944333],[-119.75554251823951,50.12202039028501],[-119.75838303803819,50.122089881478566],[-119.76214098646322,50.12283913356041],[-119.76409611634399,50.122813085325994],[-119.76602764440992,50.12203892176791],[-119.76928835280076,50.12119518242395],[-119.77284796243647,50.12113928074746],[-119.7757331695787,50.12241779985542],[-119.77755524202861,50.126331320915725],[-119.77677468864779,50.12680146612684],[-119.77652374395308,50.1300645754515],[-119.7760977551072,50.133272630169316],[-119.77620267720673,50.13875256314793],[-119.77622953106734,50.142242284275355],[-119.78051424847318,50.147666023586126],[-119.78417663867775,50.14841233550573],[-119.79116523045407,50.149797606252385],[-119.7958655339355,50.15179038199871],[-119.79900087906105,50.155059420790735],[-119.80222543672049,50.161071313734496],[-119.80457332317015,50.16692310078923],[-119.80836402085403,50.173843435391376],[-119.81105737948435,50.17717556209179],[-119.81597167071737,50.18030481455093],[-119.82045894078459,50.181209425771456],[-119.82449700564484,50.18200741614931],[-119.82511662022564,50.18199933863206],[-119.82781716878522,50.18281348116748],[-119.82674581356345,50.18551878037225],[-119.82244388047981,50.18706660185834],[-119.81645980069733,50.1889878036132],[-119.81322956045959,50.19091920369979],[-119.8102229710972,50.19399036875884],[-119.80675175606206,50.19644546204274],[-119.80426576639954,50.199508564338274],[-119.80259923864966,50.202850093866026],[-119.7982727739882,50.203941748716524],[-119.79400872148517,50.20406288287047],[-119.78723688559015,50.204214880285846],[-119.77919339968547,50.20307708392519],[-119.77483837133421,50.20078941341987],[-119.77124840925279,50.20010018176041],[-119.76805395051359,50.200319175511524],[-119.76159600253435,50.20166598664557],[-119.74971141411105,50.20309408898796],[-119.73931660671055,50.20381165410423],[-119.7381614245568,50.20657192446624],[-119.74145400003194,50.21155220236246],[-119.74467337176186,50.217678601327876],[-119.74757977461572,50.221695952925835],[-119.75234104450256,50.22563402960143],[-119.75697171305312,50.22848394992912],[-119.76033080361245,50.23300749627709],[-119.7604183704509,50.23808997457914],[-119.75956458557822,50.2390758307873],[-119.75744842375025,50.242478146598174],[-119.7538312343109,50.249103253111414],[-119.75345394472234,50.25642567270231],[-119.74768246640845,50.25987599718243],[-119.7386447519753,50.261377759728724],[-119.7367667289902,50.26151521781483],[-119.73213829128868,50.261580853228246],[-119.72114743079388,50.263448334759936],[-119.71561086235201,50.26609452701013],[-119.71040782501179,50.270794155766445],[-119.70797509634808,50.272484706364516],[-119.7039445652532,50.277454004680806],[-119.69913568934446,50.28335090870773],[-119.69463435241005,50.287639980058444],[-119.68980304746214,50.29004623685998],[-119.68767466678379,50.29327810928891],[-119.68712277892598,50.29551407619095],[-119.68367322573329,50.29921951560623],[-119.68127341494909,50.30519276619394],[-119.68457564390353,50.307892434247734],[-119.68814689545599,50.30796259748977],[-119.694379994416,50.30764853813271],[-119.6995851287166,50.30843707464118],[-119.70149432569023,50.3096084858812],[-119.70234391918171,50.31079607220129],[-119.70464417509818,50.313108516524686],[-119.71096473677848,50.315309505990825],[-119.71804062651744,50.316240360278634],[-119.71953535337387,50.31816709978184],[-119.71380324422111,50.3202440237407],[-119.70396515705114,50.32283761989152],[-119.69717178550194,50.32492932979621],[-119.69088495298158,50.32672197742989],[-119.6834768649339,50.32956891952731],[-119.68231813593853,50.329583807009435],[-119.67166232638093,50.331439375349035],[-119.66427601526338,50.335020593857244],[-119.66430729616734,50.33902053169143],[-119.66563354915517,50.341232723733846],[-119.66875959449337,50.34439621527481],[-119.6682154581972,50.34696799395395],[-119.66641131631356,50.34916582244964],[-119.66407403145624,50.35154111442029],[-119.66259599661319,50.355735755621154],[-119.66098377057963,50.358271012270684],[-119.65833401320273,50.35944915425455],[-119.653537251049,50.36053603865507],[-119.6465975794455,50.36120062006124],[-119.64448950826916,50.36253761569567],[-119.64544752766469,50.36475644044164],[-119.6461472262959,50.36720625960506],[-119.64447517949829,50.37065759731012],[-119.64031883171612,50.37219810869413],[-119.63578924181655,50.37327938711817],[-119.6338433427797,50.37656257737838],[-119.63487793172709,50.37843738560622],[-119.63824416966912,50.383305969863116],[-119.6404378921185,50.387680058565614],[-119.64036976140072,50.388363520330984],[-119.63825756479793,50.39222249646679],[-119.63702119538468,50.39898230607723],[-119.63727900461978,50.4040630995732],[-119.6400084108209,50.411857879873075],[-119.65001944511292,50.41161667790066],[-119.6673370319992,50.410363268519085],[-119.67962643357676,50.40888309116496],[-119.68994746162312,50.40692223345828],[-119.6919834996987,50.4066093079145],[-119.68825912339689,50.41020105473179],[-119.6794589510338,50.41763571601773],[-119.67285483476189,50.424006255259634],[-119.67060542224011,50.426435180145646],[-119.66516282784211,50.42965447268143],[-119.6560749142435,50.433654701824686],[-119.65228365360868,50.43547615320797],[-119.64668526951108,50.436974970153045],[-119.63196886255894,50.4414541490495],[-119.62554374483659,50.44198867573527],[-119.61609370230926,50.44330978935385],[-119.60846845005898,50.445520437281566],[-119.60509834792622,50.44664467120368],[-119.60182385907501,50.447891056799534],[-119.59244533512246,50.45177554598287],[-119.5874299969184,50.45481089758469],[-119.58437885065851,50.45775802969308],[-119.58354335237885,50.46262780166283],[-119.58199798227521,50.46493247393417],[-119.58038652044672,50.46472289199496],[-119.57678315841599,50.46419361874836],[-119.57449904278792,50.46245174579986],[-119.56773464064626,50.45750887709558],[-119.56427838525067,50.45268907222034],[-119.56052362499345,50.44976393862401],[-119.55651644923707,50.44415775860459],[-119.54945912762994,50.43852695001423],[-119.54511917373992,50.43703546974259],[-119.54235978820924,50.43438470376958],[-119.53829047296392,50.429630537910974],[-119.52992789644597,50.4279016379467],[-119.52571767904878,50.4277810586715],[-119.523544312955,50.42706451023621],[-119.50617868307552,50.4235542241526],[-119.48902999130951,50.42129796740224],[-119.47839160546413,50.421247556868316],[-119.46922438164422,50.419922651029246],[-119.46125600375642,50.41949692710677],[-119.45055341160308,50.417165363631845],[-119.44710530878352,50.41200396042388],[-119.44654059240685,50.41063827950843],[-119.44148079411049,50.402184133513224],[-119.430427324653,50.39676615922214],[-119.42207001716524,50.395256640019724],[-119.42441229127918,50.39905835556958],[-119.42742962418369,50.40530856889121],[-119.42623427238743,50.407205416285684],[-119.42062501396124,50.40835290879484],[-119.40721137607301,50.411925207639506],[-119.3974210263458,50.41728667801739],[-119.39663158863226,50.41775338459049],[-119.39021549519612,50.42216846909383],[-119.3860557232339,50.42392046826092],[-119.37976843826306,50.423019151235096],[-119.37140201712337,50.42145021810411],[-119.36522704427796,50.42122995803372],[-119.34958633335991,50.42986347098634],[-119.34687596945334,50.43136112148791],[-119.3272566445986,50.44149547892236],[-119.30289341709117,50.455965925970965],[-119.29693150411926,50.461504310651705],[-119.29542471101949,50.46591847773099],[-119.29625446197423,50.47070596686396],[-119.2981616208691,50.47605558499065],[-119.30054243225315,50.481745704404126],[-119.30694310397998,50.49516273985227],[-119.30703356412201,50.495506644010575],[-119.30968339519268,50.5010213420848],[-119.3107596399646,50.50540417196044],[-119.31141455683635,50.51042992856597],[-119.31058909029264,50.51312082346434],[-119.30919279590064,50.51479072302284],[-119.30805750302653,50.51651528278263],[-119.3052015276749,50.52094318195947],[-119.30217517402303,50.525369188264655],[-119.30077808158633,50.52732491774934],[-119.29890109089126,50.53116713429903],[-119.29599379484667,50.53754162128345],[-119.29260623161001,50.54579739564898],[-119.2911147476911,50.547808235019836],[-119.29018580934029,50.55421647697314],[-119.28947529036289,50.56210381210546],[-119.28969835036895,50.57181181235336],[-119.28979314026857,50.57620846648669],[-119.2940653192991,50.58256539065699],[-119.30141135274457,50.58992253665215],[-119.30543689298864,50.59319459978863],[-119.30464030243783,50.59320577999384],[-119.30217792615153,50.59591279388882],[-119.29834726332747,50.600744671991],[-119.29396883426753,50.606100604086535],[-119.29183396422961,50.61069120794484],[-119.2908849709554,50.61618077659323],[-119.2905553622708,50.621611284628685],[-119.29140600616877,50.627318317510316],[-119.29248332380472,50.631701778948425],[-119.29196230296878,50.63205045258578],[-119.28559301170226,50.63274300313571],[-119.2817457962043,50.633575293582204],[-119.2772333261766,50.63647371726661],[-119.27472064681979,50.640435439684566],[-119.27139758155192,50.64515343724901],[-119.26964809479301,50.647055324965116],[-119.26643618480553,50.648283765325665],[-119.25964049485745,50.64971280265216],[-119.25176090645462,50.65144564449735],[-119.24217465586234,50.65261400792449],[-119.23603837274877,50.651359283436776],[-119.23023926812188,50.64975643402036],[-119.22718534068417,50.649554061606004],[-119.22341806422696,50.65021505844743],[-119.21781045776521,50.65260917172248],[-119.21304016101752,50.656416268151034],[-119.20776577583739,50.661948210226015],[-119.20121990787975,50.66760358287517],[-119.19874526265637,50.66985277133371],[-119.19215209166656,50.67224866717154],[-119.17904785306088,50.678073787999644],[-119.16655572110992,50.68303380670401],[-119.16156409370781,50.68581635243614],[-119.15793886296774,50.6888705722878],[-119.15276521347228,50.69525318207605],[-119.14946577920598,50.70156202547374],[-119.14634171786804,50.70792782227211],[-119.14306540318665,50.715373895377766],[-119.14188365037617,50.71955339094582],[-119.13940475358152,50.72123379899377],[-119.135785951693,50.72514461696127],[-119.13280244816767,50.72899467674779],[-119.13214359219353,50.732821090980735],[-119.1323234934659,50.73693553636536],[-119.13399994293246,50.74011737393014],[-119.13774112103572,50.74265703488418],[-119.13785143490118,50.74351607732078],[-119.13626742868915,50.74603895663274],[-119.13481704878053,50.75010249896918],[-119.13558966303408,50.753235868600164],[-119.13912623188205,50.75869394935693],[-119.1401456374967,50.760686756096504],[-119.13304596683727,50.76153773617661],[-119.124257475763,50.76326607249518],[-119.1113740021008,50.763538208840885],[-119.10488147803801,50.76358682450443],[-119.09138992329983,50.764838287023785],[-119.08789116160571,50.7649733199031],[-119.08292124564802,50.76466723614769],[-119.07182788851726,50.76349759551051],[-119.06190258500366,50.7633449264369],[-119.05388879234745,50.76345718967964],[-119.03435096917536,50.76434289231883],[-119.02606773108492,50.764625312648704],[-119.01661482321981,50.765549683184915],[-119.0147328376099,50.7656427150954],[-119.00986339752183,50.76587837638342],[-119.00157742725004,50.765536612173484],[-118.99824631828385,50.76596144776577],[-118.99008296682283,50.768471979730364],[-118.98605370015193,50.76952725351104],[-118.97942711832751,50.77213885859585],[-118.97109069316176,50.77528089589953],[-118.97037504802725,50.77556973452633],[-118.96166079221875,50.778023889570086],[-118.95574631598241,50.77971900948963],[-118.953249538553,50.78144319974018],[-118.94984013601625,50.78289412958713],[-118.94505636972052,50.782299843898315],[-118.94022874323143,50.7791869903761],[-118.9351514443431,50.77693531915369],[-118.93170734825324,50.77599033167264],[-118.92791384587503,50.774641120699016],[-118.92175299689127,50.77239503756043],[-118.91866723636646,50.77144189495369],[-118.91322061661494,50.767934562465754],[-118.90809309769132,50.76197322223958],[-118.90799143331084,50.7618053920072],[-118.90692280081079,50.75587536227107],[-118.90170610895534,50.75030954115281],[-118.89882796636238,50.75021411841745],[-118.89114432510574,50.74843084587795],[-118.88813435859132,50.7487166050563],[-118.88476131064837,50.74904453410547],[-118.8811926577037,50.752031464600655],[-118.8766514928819,50.7561082659423],[-118.87440660757434,50.75606175183105],[-118.86676007270628,50.757080035537655],[-118.85733434297227,50.760218142190844],[-118.85261996176179,50.765090444087456],[-118.85011677105695,50.76647642442869],[-118.84669087206008,50.76569852137634],[-118.83973916768116,50.764767903396866],[-118.83397917648546,50.76565363663553],[-118.82950526902592,50.76767531175935],[-118.82819263700222,50.77087705136117],[-118.82698367120807,50.775563225691265],[-118.8261144685908,50.77751149893787],[-118.8241539715404,50.779859530504666],[-118.8232484056665,50.7804907419405],[-118.82943496420455,50.777828422720155],[-118.83481617078955,50.79259188613031],[-118.81504771948849,50.800007999001714],[-118.81205189479232,50.80113188716468],[-118.80263569886165,50.807465419964664],[-118.80000331765802,50.80862037991776],[-118.79571762930155,50.81049965091788],[-118.7869060326564,50.8134962850453],[-118.78615560940636,50.813369889482416],[-118.78499084029757,50.81522093797787],[-118.78197270591411,50.8201328060924],[-118.78121695684725,50.82617053929654],[-118.77607224217344,50.825545858898614],[-118.77500949053427,50.826343750812455],[-118.76878172038951,50.82688376558429],[-118.76163937129516,50.82549073981192],[-118.75775263800182,50.824539952245324],[-118.74918495949036,50.8249794406734],[-118.7404395109337,50.825193425669305],[-118.73592446539155,50.82520935113393],[-118.72437509267836,50.8247519413574],[-118.72021567429121,50.824250945030656],[-118.72011535328717,50.823115786502335],[-118.71626215486968,50.81610608658737],[-118.70748262836831,50.81260531379181],[-118.70494810962244,50.81256428340692],[-118.69413338813152,50.81260867347277],[-118.68494021419325,50.81373355630922],[-118.68250859800757,50.814195960729876],[-118.67333218020318,50.816170379330806],[-118.6695494843171,50.81772777507126],[-118.66389876303349,50.82083045514597],[-118.66214644438021,50.827402237402836],[-118.66416761254308,50.83195907236518],[-118.66831589652114,50.84113080825014],[-118.66364298199531,50.84400323184011],[-118.6588042701965,50.847444729562305],[-118.65205960433018,50.85117427350607],[-118.64971974813473,50.85193165603626],[-118.6464580995627,50.85091321735707],[-118.63886698518891,50.84946082331593],[-118.6319242991559,50.850225747534196],[-118.63184661197768,50.85233810382926],[-118.63323097575613,50.856326357651874],[-118.63506673816522,50.85922805429545],[-118.63853238161775,50.86463788989651],[-118.6409141671169,50.86856526797239],[-118.64167338186516,50.87227786751302],[-118.64042279455549,50.87370338390908],[-118.635568514957,50.87668876513266],[-118.62746206935647,50.88065748257115],[-118.62072017072602,50.88518537123781],[-118.61588558120829,50.89045074597415],[-118.61367928059323,50.89650824214517],[-118.61272319159204,50.90313254369413],[-118.61305705420808,50.91112197953593],[-118.61288769451512,50.912487213574416],[-118.61364100634935,50.91648451651555],[-118.6134841413061,50.921050896592625],[-118.61168161695016,50.92207965614384],[-118.60617884608966,50.9235821777848],[-118.59977394656765,50.92491187529277],[-118.596432410048,50.92555130995347],[-118.59354813075991,50.92453974712603],[-118.59375446475404,50.92571878346785],[-118.58830854801721,50.925465744345956],[-118.5834508481028,50.9364114863281],[-118.57793587567457,50.93648923539032],[-118.57829103272843,50.939348660146905],[-118.57177116863457,50.93804563021919],[-118.56636582856476,50.93901840942456],[-118.56152003126654,50.93744675253212],[-118.55945562469016,50.94045691268998],[-118.54931190048151,50.936381899744944],[-118.54480560658577,50.93717819805167],[-118.54208329673779,50.939279631543094],[-118.53584130791567,50.93631448559261],[-118.53102513776413,50.9316313282183],[-118.53767631522766,50.927852585996575],[-118.53730721110048,50.9277805443668],[-118.53342128072767,50.92704873183857],[-118.53097297753898,50.92602620694713],[-118.5249069301072,50.92387118619771],[-118.51792972221388,50.92041255291857],[-118.5105813239506,50.917294268023475],[-118.50750479027546,50.91609811101052],[-118.50379408889161,50.91348438303628],[-118.49563507126781,50.908140320048574],[-118.48611692140486,50.90365296773257],[-118.48330727090394,50.902749419733816],[-118.47544341744656,50.90254022428636],[-118.46469757191288,50.90261766528539],[-118.45855615447007,50.9026306741288],[-118.45394662418003,50.902639544854885],[-118.44788617073134,50.902596473155675],[-118.44154973665431,50.90089173227059],[-118.43965312295416,50.8995887178093],[-118.43547646146921,50.89486230641884],[-118.42923301333376,50.890936631896935],[-118.42398204665032,50.889171621142516],[-118.41612085256905,50.88593470020635],[-118.40689418289517,50.88349683390168],[-118.39938892411664,50.882879635082745],[-118.39297742195582,50.88289476036476],[-118.3865695778383,50.88347375721372],[-118.38422562126497,50.88404616724699],[-118.38187533183503,50.88490603040607],[-118.37392419109888,50.887141596961655],[-118.3672445296476,50.88754742514167],[-118.36245305300953,50.88578645150227],[-118.35521871028565,50.88317323144917],[-118.35376939462067,50.883115233294475],[-118.34980589527422,50.88511680192549],[-118.34348377581733,50.885522547237976],[-118.33904617246215,50.88495344902819],[-118.3342600399615,50.88325139279758],[-118.32576490021653,50.88240202429775],[-118.32025606599615,50.88331797569517],[-118.31692405635448,50.885547098551065],[-118.31340072389605,50.88531877264689],[-118.31168730655239,50.88538094908215],[-118.30951285171837,50.885378596989],[-118.30535179910544,50.885611436053466],[-118.30209849720381,50.88771065854389],[-118.30355437458711,50.887897374401255],[-118.30626322482337,50.88977616075115],[-118.30924539409055,50.893138838284145],[-118.311421328951,50.89553745218843],[-118.31413652489181,50.899124329367815],[-118.31512343132097,50.9011175044658],[-118.31467629975451,50.90345806199164],[-118.31233123486805,50.90642687009023],[-118.3120607840536,50.908820791812175],[-118.31359589236033,50.911784931507036],[-118.31558680999244,50.91418360048863],[-118.3178519272061,50.91640515310757],[-118.31821251328512,50.91771662422846],[-118.31967277792235,50.92136707600775],[-118.32084577631302,50.92518970106483],[-118.32084658238354,50.92792231237717],[-118.3199494851176,50.930546384255045],[-118.32040706754967,50.933287774142514],[-118.32130368590904,50.93448244668184],[-118.32393270224631,50.93676089978297],[-118.32583592708832,50.93984308375562],[-118.32719107562787,50.94286502345701],[-118.32854679279161,50.94588470471372],[-118.32910433472527,50.94713731375083],[-118.33172667797761,50.94804879480973],[-118.33634273971217,50.94953039849138],[-118.33878255657751,50.95083734987497],[-118.34121890375054,50.951749387336065],[-118.34439815171936,50.95317400249151],[-118.3460295034621,50.95385243027728],[-118.34782819743329,50.956305887580235],[-118.34884038658409,50.9594998139993],[-118.34920564218736,50.96212332492496],[-118.34939439684771,50.966854563689914],[-118.3503941745031,50.968790364429495],[-118.3509339811546,50.96981800753146],[-118.35347034789945,50.972155144753195],[-118.3564562448835,50.97546395404024],[-118.35890087962895,50.97717086632072],[-118.35999724739536,50.97779836751852],[-118.36334768921701,50.9788246488727],[-118.36506615676602,50.97950356419257],[-118.36833155595224,50.98035848319838],[-118.36896185318732,50.980695553902414],[-118.37132108927354,50.9822359947402],[-118.37394933097438,50.98479949885215],[-118.37576459508558,50.98758979976025],[-118.3770341622007,50.99038579738267],[-118.37876748612402,50.99340525140303],[-118.3823052769842,50.996023578340306],[-118.38402734532532,50.99819202441043],[-118.38692721689021,50.999933599822185],[-118.38720225095066,51.00033726685881],[-118.38782628776048,51.00113156175236],[-118.38955177883366,51.00227842093148],[-118.3912782393656,51.002331940871066],[-118.39317265710886,51.002158627185324],[-118.39472369069372,51.00147766264925],[-118.39589356135241,51.00050944839307],[-118.39643657460529,50.999934994688886],[-118.3973355247408,50.99828682068694],[-118.39859473052736,50.997717517296564],[-118.40113599769911,50.99703143573189],[-118.40358455708908,50.996970641177825],[-118.407029302557,50.99771000859873],[-118.40883873400696,50.99878716542599],[-118.40902779800965,50.999526999399535],[-118.4089633152444,50.9999042005841],[-118.40907939772221,51.00157439193495],[-118.41099040104795,51.00340119765426],[-118.41343713027992,51.00511579774953],[-118.41833271168667,51.00836769913394],[-118.4209584935721,51.01122139414765],[-118.42240951254674,51.01373082124854],[-118.42277393236175,51.01630275465511],[-118.4222297463798,51.017557373608405],[-118.42078188627967,51.020070510585434],[-118.41887517537249,51.02241261136641],[-118.41823644456517,51.024639544069686],[-118.41904824237065,51.02669198873482],[-118.42294616326164,51.03000292769615],[-118.42485809681655,51.03183446654389],[-118.42666580864183,51.03394112616002],[-118.42703540125689,51.036400995606186],[-118.42693490417582,51.03959670283727],[-118.42820821766375,51.042565735708955],[-118.43147232985811,51.04564826011967],[-118.43383254062435,51.0487294765436],[-118.43229112355411,51.05187303342643],[-118.43147308242055,51.05649841469207],[-118.43065548204851,51.05792309349899],[-118.42821733667913,51.05832460180767],[-118.42567501185738,51.0583267677677],[-118.42105335653584,51.057638644673425],[-118.41778253566832,51.058037850271944],[-118.41678882512058,51.05998561321655],[-118.41732307192721,51.06232057138643],[-118.41931752654213,51.06426431700228],[-118.4216773931905,51.06592001072089],[-118.42476450672703,51.0678601124181],[-118.4275795982538,51.07122603806383],[-118.42903209028401,51.07374023126323],[-118.42985078499662,51.07374129352881],[-118.43183845968967,51.073627061084565],[-118.43510679700019,51.07282707157003],[-118.43765042493163,51.07282190726718],[-118.43974292627274,51.074198363990554],[-118.44290876374329,51.076021257558125],[-118.44781565983342,51.07664963406592],[-118.45335603540082,51.07710198876138],[-118.45797915755372,51.07847045275887],[-118.46025538413978,51.07995418970091],[-118.4602492026525,51.08446695886746],[-118.45953142750308,51.08834779583238],[-118.4608934402732,51.091660631452505],[-118.46470808071564,51.09331411465475],[-118.47088357522674,51.09536961545055],[-118.47206731899675,51.09770749884989],[-118.47414970770718,51.10084826745187],[-118.47569462112666,51.10233105295577],[-118.47579409844798,51.102676320364615],[-118.47825424066514,51.10689701335749],[-118.47843371498088,51.11049646764836],[-118.47625613808553,51.113413207080065],[-118.47534396536773,51.11683568000382],[-118.47552991475835,51.11717996166099],[-118.47681098264275,51.11911902030475],[-118.47653015581899,51.12288794347586],[-118.47262250054335,51.12557136121163],[-118.4720912529941,51.12945723415988],[-118.47536557175526,51.13202584622552],[-118.4800807386613,51.133905241130186],[-118.48508719631253,51.136189316081506],[-118.48881523529309,51.140753801222395],[-118.48882431920417,51.14103937540884],[-118.48818155780715,51.14618288883525],[-118.48610178872373,51.150466263665216],[-118.48228924507438,51.15240984654663],[-118.47727996236446,51.1530949753113],[-118.47047337248732,51.155038124657935],[-118.46829328031666,51.15795344545478],[-118.46911380142703,51.16006644188886],[-118.47120733531563,51.164003283096214],[-118.47175481087206,51.16628415699849],[-118.47111092879364,51.168798449256784],[-118.47093646746706,51.17176851632837],[-118.47183949089967,51.17365277265952],[-118.47621146302336,51.175881986960384],[-118.48239214475628,51.17712986107699],[-118.48712298214338,51.1779295483671],[-118.49258040186207,51.17826686022047],[-118.49521577338797,51.17826441995501],[-118.49867946254035,51.17906595238034],[-118.50413625923986,51.179407722378144],[-118.51395418295905,51.178824153566886],[-118.52113951993643,51.178820822531996],[-118.52923271020758,51.17881245147555],[-118.53351927105227,51.178751194976236],[-118.53760358306778,51.17954697021572],[-118.54079418123985,51.18086166108581],[-118.54698069062253,51.184222057474024],[-118.55135747767716,51.18696120651225],[-118.55418511256974,51.189581277409445],[-118.55555245459665,51.19095421785287],[-118.55964790588949,51.193403514045244],[-118.56375278136224,51.196998021213325],[-118.56430992455391,51.20036475260926],[-118.56385349336135,51.20316349445997],[-118.56304636126136,51.20453590160294],[-118.56232039808977,51.204826451574476],[-118.55686486510415,51.20591299261506],[-118.5513023213802,51.20643590553109],[-118.54575945144327,51.2080369316673],[-118.54240022842595,51.21129504944543],[-118.54322897588247,51.215520032966005],[-118.54486642731763,51.21717383543185],[-118.54815532417268,51.21997336106594],[-118.55663400227071,51.22499018309906],[-118.56154931363923,51.22892351272344],[-118.56602313478122,51.23342939973906],[-118.57041074119292,51.23776741977114],[-118.57361221798777,51.24136184976526],[-118.57361264096653,51.24238810359566],[-118.57288699401775,51.2454166660735],[-118.57289226655604,51.24821414664083],[-118.57417171914861,51.25003779760599],[-118.57508474978096,51.253011852707004],[-118.57382572580542,51.2558670342186],[-118.56936348336424,51.25872881718191],[-118.56336218154982,51.261304435819504],[-118.55935596146331,51.264790606779876],[-118.55535333964177,51.26867914936252],[-118.55472323150396,51.26959210512374],[-118.55281792265468,51.27250429877669],[-118.54926561666751,51.27576911610538],[-118.54554517858092,51.2818193186069],[-118.54673616479856,51.28587428824998],[-118.54855420923026,51.28707311234134],[-118.55074741400587,51.28998238833721],[-118.55112527838288,51.29364221631334],[-118.55313180862004,51.29723240519182],[-118.55468058231777,51.2983196489736],[-118.55678879048853,51.299685234754016],[-118.5611632777162,51.30054018498705],[-118.56381117015492,51.30059064766439],[-118.56891241836284,51.300132486737205],[-118.57703227766224,51.29983666601544],[-118.58305368024843,51.300514777489205],[-118.58633720671622,51.30262324100778],[-118.58871580678168,51.305135280752445],[-118.58999227949253,51.30690413369108],[-118.59337732718926,51.30970212784276],[-118.59648826435505,51.31095326951854],[-118.59822277290476,51.313007021702546],[-118.59841876159456,51.31751634495908],[-118.59879671726355,51.32180235123429],[-118.6005328986964,51.32470959400041],[-118.60721090363705,51.32933044028501],[-118.61234028876873,51.333717464835516],[-118.6120691778401,51.33714400264035],[-118.6097020040368,51.34023143043242],[-118.6083508992575,51.34389244240116],[-118.60927446459966,51.34760359613401],[-118.61101358062116,51.35239862780614],[-118.61194398591552,51.35719147277856],[-118.61286237526504,51.359988943425186],[-118.61269281060437,51.364618981052566],[-118.60805474789447,51.368392709472495],[-118.6006576818361,51.37171491264302],[-118.59263690653238,51.373666296414406],[-118.58788950040764,51.376870352461744],[-118.58717196640768,51.380358355850944],[-118.58717793427039,51.382298037767086],[-118.58618076175286,51.38555616389397],[-118.58298078963486,51.38806508907417],[-118.57925287841564,51.39190096869529],[-118.58116398098548,51.394466014854935],[-118.5851920619358,51.39554532672749],[-118.5875648916604,51.39605965608644],[-118.59150158783949,51.39742548460244],[-118.59369745556697,51.39942170916004],[-118.59471159911493,51.40199254490969],[-118.59489597830022,51.4031321723481],[-118.59975019665113,51.405241912641635],[-118.60705593511743,51.40688841966004],[-118.6109993174705,51.408998423724604],[-118.61118354393638,51.40962470193804],[-118.61439004459446,51.41276428226534],[-118.61384709952479,51.41556649102049],[-118.61074697637027,51.41825357926383],[-118.60828378637811,51.42093822988516],[-118.60601427390596,51.42487974851659],[-118.6073007581354,51.428765957599516],[-118.60886358492748,51.432473879953115],[-118.60952274096879,51.43578772197675],[-118.61008758665999,51.441041254112626],[-118.6108233367213,51.442867080560035],[-118.61429046905245,51.44343571611641],[-118.6190525261953,51.44422798643311],[-118.62518117657733,51.44490378396954],[-118.6301381180435,51.44729930682106],[-118.62812781742005,51.44987224927792],[-118.62767691726596,51.45204193639584],[-118.62759036391381,51.45609766076709],[-118.6272421525967,51.45981316893955],[-118.62899255687655,51.46414636314918],[-118.63127876500077,51.46546033889153],[-118.63201826816925,51.4654571215974],[-118.63293488126659,51.464829808404765],[-118.63723241907955,51.46322161009814],[-118.64463147281252,51.462816368711074],[-118.6493904955362,51.463035111242846],[-118.65672129937002,51.46199640744175],[-118.65862865024694,51.461766450066406],[-118.66577322818823,51.461753370666194],[-118.67154857168126,51.46317393861287],[-118.67493353556038,51.46442157006836],[-118.67787393245304,51.46607741517237],[-118.68245408872372,51.46989412253988],[-118.68631137089847,51.47222587397322],[-118.69071277498684,51.47398971749121],[-118.69584708935011,51.47518254972815],[-118.70272515559752,51.47739480820339],[-118.70732158233703,51.48087070604706],[-118.71034832461059,51.48446418382015],[-118.7116423202477,51.487147055051416],[-118.71267524608841,51.49131648974362],[-118.71048374061849,51.49360206851101],[-118.70454209863472,51.496467922587875],[-118.69668521789501,51.49985976265492],[-118.69065590826483,51.503066713050266],[-118.69066626344635,51.50500726494476],[-118.69351540767335,51.50723060033934],[-118.69755215442905,51.508593681803895],[-118.70277798724922,51.509784456383144],[-118.70809253086988,51.51131562475629],[-118.71360690996136,51.513304846580766],[-118.71912035942843,51.51792480460251],[-118.72400171535732,51.523738763635194],[-118.72713241988683,51.52550543312611],[-118.73126386362833,51.526925067717535],[-118.73759881171411,51.528794622638394],[-118.74117109650899,51.52947604852689],[-118.74565192521476,51.52826110598385],[-118.75031383367224,51.525509787252616],[-118.75808424383965,51.52246513664009],[-118.76549699947067,51.52175860282082],[-118.76845458573641,51.52467170593722],[-118.76975873891237,51.52740885238252],[-118.77243558179055,51.5320298039098],[-118.77649011727665,51.536129981588296],[-118.77933362538326,51.536925545587586],[-118.7812647422092,51.53691761080028],[-118.78583281340073,51.53410992589866],[-118.78746127102995,51.53073578573789],[-118.7906467611101,51.527242383357425],[-118.7927300965965,51.52489224937452],[-118.79851281494234,51.524480869804094],[-118.80483369431086,51.525032515907164],[-118.81172042331968,51.52655782625758],[-118.81621438817277,51.52825821159838],[-118.8215322983778,51.52847135107676],[-118.82777157641605,51.52908246295808],[-118.83072403895171,51.532497338696494],[-118.83093549869304,51.53644087300077],[-118.83095439353237,51.53889960782583],[-118.82987930710443,51.54210333732447],[-118.82780062837654,51.54656232750816],[-118.82599914499517,51.55056635602948],[-118.82484218047874,51.55577417816649],[-118.82534413834267,51.561310647179084],[-118.82564381764571,51.5654226030953],[-118.82529010415593,51.56793836983484],[-118.82529320727998,51.56845160057634],[-118.82523619070648,51.57199300474214],[-118.82526201635329,51.57662489251333],[-118.82529010182412,51.58142038537033],[-118.8253039781973,51.58399654693149],[-118.8243243316621,51.58714024162261],[-118.82039141342085,51.588802932795765],[-118.81525728429087,51.59070187783355],[-118.81390330792708,51.592933913965965],[-118.81437431073458,51.59590770325423],[-118.81531449015463,51.599387519868195],[-118.81478337387199,51.60076504911531],[-118.81277210347162,51.6032813606489],[-118.81243482396523,51.607284182274135],[-118.81521683019714,51.61167418512308],[-118.81597490881792,51.61458316246726],[-118.81609972639826,51.61966879810962],[-118.81510985258103,51.6230428901966],[-118.81504148365113,51.62647069195851],[-118.81717415614884,51.63075066110406],[-118.81865490011074,51.632005491027435],[-118.82114719052268,51.63445163369207],[-118.82777413725267,51.63500727835871],[-118.83006786900683,51.63494162916018],[-118.83355937822313,51.63493167619026],[-118.84119148831653,51.63645462904277],[-118.84395845939376,51.63838587041403],[-118.84609258965804,51.64152078154863],[-118.84905342817478,51.64351478193034],[-118.8506178888577,51.6439090561105],[-118.85438332726675,51.64498612516489],[-118.85963252619523,51.64588447540406],[-118.86560717451422,51.646437992556656],[-118.8675421817599,51.64643417546797],[-118.87185457359651,51.64567513401665],[-118.87533666158485,51.64492312752615],[-118.88066696702523,51.644788386448475],[-118.88397204650639,51.64512311250435],[-118.88858150356913,51.64664917152554],[-118.89088933941446,51.647841280902604],[-118.89422263786064,51.65069031566568],[-118.89570362711999,51.65285597857618],[-118.8971076788559,51.65513800000692],[-118.89950765358141,51.657469163086326],[-118.90396136733024,51.661400604188934],[-118.90470481100567,51.66345413985066],[-118.90566955101141,51.66916662359796],[-118.90607333267378,51.67241814177681],[-118.90811111913854,51.67429918259507],[-118.91061263459314,51.67646268958795],[-118.91579370135774,51.67987505754561],[-118.91744802495442,51.68089331933335],[-118.92078234820326,51.68385120311646],[-118.92265813316806,51.68727914222788],[-118.92315180931843,51.6907034352164],[-118.9232640751142,51.69441570548926],[-118.92291409097933,51.695677905203034],[-118.92285675219912,51.69944838485922],[-118.92003027847461,51.70242456085098],[-118.91700268860392,51.70403378827819],[-118.91482022913874,51.706446816581334],[-118.91476163706338,51.71022060213631],[-118.91549898080159,51.7112420777666],[-118.91727551992074,51.713579950572665],[-118.91822860637079,51.7180331672418],[-118.91456441738293,51.72050630125719],[-118.90768323283424,51.72349839885273],[-118.89989611330164,51.726320983020656],[-118.89502308122617,51.72851086570749],[-118.88870535435848,51.73115775275593],[-118.88642548324938,51.73459742409851],[-118.88653484572974,51.73625175865934],[-118.88654523955628,51.73842408641405],[-118.88721096604814,51.74042086369071],[-118.89009349364058,51.744468253540106],[-118.89028781509924,51.74640740572604],[-118.89022317865319,51.749667897863695],[-118.8918302068363,51.754748800569914],[-118.89342782291916,51.75971067867566],[-118.89540269256555,51.7638804371354],[-118.89560678308769,51.76576152715433],[-118.89443636779713,51.76936621092722],[-118.89012384833715,51.773096989004046],[-118.88581030403691,51.775219584728944],[-118.88334596063339,51.77825430939593],[-118.88384313026096,51.7819127323089],[-118.88764277009682,51.785271956422044],[-118.8925337614328,51.786683513281766],[-118.89603951053368,51.78701670835567],[-118.8998217514188,51.787175366643346],[-118.90479974893906,51.787786400278584],[-118.90831284146373,51.78852375442879],[-118.91357632313058,51.790162627242765],[-118.91590400542273,51.792270608724934],[-118.9201531800669,51.79413925167377],[-118.92532023265139,51.79520964986478],[-118.92891481665234,51.79490987961193],[-118.93251055653064,51.79415246276011],[-118.93536070536184,51.79340290292462],[-118.93912596607697,51.7925881533322],[-118.94152547950503,51.792637891790925],[-118.94282528625939,51.79389270005282],[-118.94406023569,51.7966307142147],[-118.94545526799718,51.79919204686259],[-118.94621351049177,51.80199184322126],[-118.94900366944552,51.80432141730053],[-118.95234797650232,51.80665579097078],[-118.9540162449289,51.80762206968672],[-118.95845852038029,51.81012031901656],[-118.96097652692495,51.812515011874304],[-118.96192999758765,51.81565009233708],[-118.96138251281012,51.81650899969782],[-118.96093240323609,51.81857254495384],[-118.9599366332639,51.82039845809282],[-118.96041750150503,51.821940607792854],[-118.96115798104348,51.822508625435056],[-118.96366111049319,51.82364446827382],[-118.96598213752512,51.82500459128283],[-118.96554098806527,51.82701344782893],[-118.96268487719966,51.82788068506256],[-118.95881036188851,51.82863325825027],[-118.95532593006996,51.830133339803005],[-118.9513716381879,51.83191823339116],[-118.94889635214345,51.83403771303246],[-118.94863115707382,51.83558572353041],[-118.94912259155022,51.83832438210672],[-118.94940420749228,51.83884047526671],[-118.94979397628299,51.84112484475134],[-118.94889227556672,51.843356034184836],[-118.94936495001286,51.845579571119075],[-118.95085724680139,51.847009969970834],[-118.951045693548,51.84728982788385],[-118.9517915727711,51.84854852098769],[-118.95246316741522,51.850717788783534],[-118.95413654235394,51.8520240461973],[-118.95607188068108,51.85270511562407],[-118.96571268458554,51.85724207153464],[-118.96951744582599,51.85865547428417],[-118.97451457384223,51.8609218658556],[-118.97905613789719,51.862391438431466],[-118.9827596355249,51.863350143823645],[-118.98720888021383,51.86476071702848],[-118.99044670235503,51.86589063870393],[-118.99001186422979,51.86840924888734],[-118.984664872206,51.86957355901051],[-118.98125035087644,51.86981038424817],[-118.97618363257378,51.870231369284134],[-118.97137285017925,51.87087691588131],[-118.967617851255,51.872948028618936],[-118.96643133095759,51.87495327319684],[-118.96630131359439,51.881184337461185],[-118.96533382998508,51.885812025224354],[-118.96545243400229,51.88987140979467],[-118.96753670584364,51.89552227127603],[-118.97081845555218,51.899740381946216],[-118.97118560308338,51.90036472729037],[-118.97353012284495,51.90332606692431],[-118.97355514150455,51.90715475445102],[-118.97322034421362,51.9112182932127],[-118.97528093269828,51.91394910789002],[-118.97760732316864,51.914854740016004],[-118.98309044060153,51.917869015989645],[-118.9872753244496,51.92167854099822],[-118.9875130702887,51.9277339335306],[-118.98497108966986,51.932602079456494],[-118.98166146065007,51.93478730777021],[-118.9764009534997,51.935092624036926],[-118.9704764183663,51.93488703148317],[-118.96491824118694,51.93404606062951],[-118.95779109358553,51.93259052929604],[-118.95287838662293,51.93174353202419],[-118.94825020839481,51.93004606722416],[-118.94407036783093,51.92829373089497],[-118.93935233700559,51.92733357018134],[-118.93888735813202,51.92722263630771],[-118.92779556695793,51.927026311677814],[-118.92261129852312,51.927044197229364],[-118.91502214415637,51.926729977779615],[-118.90837003340992,51.926862660597315],[-118.90404660461434,51.92967566778665],[-118.90166914401578,51.93293937411028],[-118.90104666788325,51.93585365924789],[-118.89884287830802,51.93831998509158],[-118.89729267319841,51.94198145949258],[-118.89693859253012,51.94432630021474],[-118.89695209649108,51.94540797021587],[-118.89539569524945,51.946955835895935],[-118.89116615205045,51.95034065001666],[-118.88978915710672,51.95240056164158],[-118.89018553222448,51.95525797212715],[-118.8915805351196,51.95702604263651],[-118.89417929397764,51.9583311228874],[-118.89752398352202,51.95946483939611],[-118.90113434693986,51.96076648867389],[-118.90502329295475,51.96206777927147],[-118.90865289937473,51.96343345658132],[-118.91236749350195,51.965536247056264],[-118.91458882621465,51.966557117791254],[-118.91812361437522,51.96751989964679],[-118.92145083038537,51.96751011952751],[-118.92700550404336,51.967316494431685],[-118.93181028577364,51.96695917115216],[-118.93551593246048,51.96786429939994],[-118.94060817525931,51.96853181397997],[-118.94562952284275,51.9699971122422],[-118.94888707736486,51.97222089815833],[-118.95481305147904,51.97317170669273],[-118.959722417227,51.97406823937576],[-118.96500676097698,51.97427929947911],[-118.96908338283005,51.97597681479273],[-118.97132451006962,51.978424323606134],[-118.97116041612254,51.97979978207779],[-118.96944079571362,51.98426504399274],[-118.96806995694656,51.98729910964562],[-118.96706510122164,51.98861624741486],[-118.96524974375197,51.99176840286037],[-118.96286245880484,51.994287648768164],[-118.96139319089245,51.99674879450412],[-118.961037872339,51.997493280111165],[-118.96077031580604,51.99932326592808],[-118.96015400803256,51.9999593329084],[-118.95869390537875,52.001548804864555],[-118.9568450005998,52.00309411546178],[-118.95341134547748,52.0042851686742],[-118.94887378094576,52.00514010389552],[-118.94691846739443,52.00787776550727],[-118.94608702969806,52.01010525682023],[-118.94616948426433,52.015640006458035],[-118.94523680529466,52.020201822039525],[-118.94346503826276,52.0273946159645],[-118.93881700629025,52.030532913265574],[-118.93399343733769,52.03366364430592],[-118.92778812763888,52.03725453569004],[-118.9205529942001,52.03941698981961],[-118.91583146249955,52.03741911613209],[-118.90795598045275,52.03523924056538],[-118.90462305943535,52.03552075836534],[-118.9008191383437,52.036885920634205],[-118.8961823570933,52.03813803078056],[-118.8911777788996,52.040020280373554],[-118.88579917733874,52.04149600029252],[-118.8812514941816,52.04228877747319],[-118.8757799895364,52.04245044184961],[-118.87197985997756,52.04324697194372],[-118.87068030992106,52.04347397812779],[-118.86511508173942,52.04438160444701],[-118.85723936251352,52.045680639808204],[-118.85102082245422,52.047786147617494],[-118.84850399142354,52.05102911751295],[-118.84727350889007,52.05759400612623],[-118.85021955438883,52.06216200212303],[-118.85428538512328,52.06421868022847],[-118.8604916482151,52.0659427568276],[-118.8678937567079,52.068522797423384],[-118.87030164677316,52.070577904663494],[-118.87195873228184,52.07451911343601],[-118.87008203044506,52.07913818493668],[-118.86961972565338,52.07953719295173],[-118.86552235058983,52.08176057758201],[-118.86144386654865,52.08386668933543],[-118.85521297607049,52.08619336113173],[-118.85316065924233,52.089102994202],[-118.85491727793591,52.09029969757101],[-118.8581656495721,52.09207362715842],[-118.85972344776926,52.093675422956444],[-118.86176813063518,52.09624617373325],[-118.86240360566775,52.09836314676103],[-118.8642528416118,52.10007140604906],[-118.86610081056796,52.10241232686371],[-118.86367157659777,52.10537930338488],[-118.86124894603124,52.10857148121834],[-118.86021632092616,52.11171185480204],[-118.85992632314863,52.11364740147487],[-118.85778138390658,52.11666687868258],[-118.85377973427423,52.119175456782784],[-118.85069283466612,52.12219605499265],[-118.85031734361682,52.12464580106089],[-118.85030007343387,52.129554254790705],[-118.84980418917675,52.13388807918592],[-118.84916130120095,52.13457388670226],[-118.8467277260768,52.13799337049762],[-118.8434687569593,52.140442492565604],[-118.83936502754645,52.14266038252933],[-118.83620189287298,52.144881452256804],[-118.83469950687339,52.1477326737099],[-118.83404443009358,52.15035319502567],[-118.83429474430731,52.1553228184225],[-118.83446729896495,52.15783254094839],[-118.83406357090213,52.163995429319996],[-118.8314459693597,52.16655466332102],[-118.82604439518687,52.16814769520719],[-118.81879899854401,52.17046908636536],[-118.81357684244298,52.17274726394159],[-118.81142894659308,52.173534540551884],[-118.80547286563605,52.17614807124124],[-118.80221732914413,52.17810231869261],[-118.80593013466373,52.180917213175796],[-118.80894479986769,52.18324041594672],[-118.81290018696764,52.18699200055162],[-118.81563554657772,52.19011346275732],[-118.81902771744521,52.1939817693639],[-118.82392307581125,52.19846978737596],[-118.82757401847464,52.20078855994275],[-118.83217009183895,52.202652088423875],[-118.84038118804813,52.20483912451904],[-118.84581447699766,52.20743466213362],[-118.84937401145133,52.20987145305185],[-118.85060947239367,52.2117527401029],[-118.85048001010473,52.215292075240306],[-118.84585270372993,52.21724982368312],[-118.8405496953425,52.21768137348067],[-118.83323570984976,52.220282632889706],[-118.83288996225096,52.22325189540518],[-118.83500803639096,52.228781223729136],[-118.83710889632908,52.23219763983221],[-118.84160762430648,52.234225752519585],[-118.84636099798104,52.23472060028706],[-118.85826899106485,52.2348317963213],[-118.86985197881401,52.23699782349651],[-118.87303012797487,52.23783870551521],[-118.87976006029848,52.24002775923205],[-118.88903192598691,52.243973056507826],[-118.88982685342464,52.24773756266722],[-118.88726608716584,52.25083670372092],[-118.88565847397197,52.2557545731973],[-118.88476914462123,52.258552168482076],[-118.88230205797042,52.26188180291404],[-118.87703423933525,52.264928229614064],[-118.87063671277691,52.267307515569094],[-118.85857790967628,52.27170503125825],[-118.84903051029396,52.274379695505246],[-118.84422824999774,52.27788580269644],[-118.84397859601286,52.28045580387652],[-118.84398035272272,52.280800717317376],[-118.84366206643821,52.285027947440106],[-118.83783616073664,52.288821441831445],[-118.83039841177019,52.29005256810682],[-118.82284621317069,52.29054988990602],[-118.81710714365802,52.29354049158277],[-118.81342879132873,52.29727149052806],[-118.80862187795366,52.29997547422975],[-118.80823848177482,52.299972463903536],[-118.80117559791472,52.302122748476904],[-118.79038635484544,52.30376921181692],[-118.78435795913325,52.307050822276885],[-118.78478632029879,52.31092869526066],[-118.7881839014017,52.31445262988454],[-118.79334257694664,52.317166137223765],[-118.80196837491611,52.32043955400404],[-118.81132432003322,52.32359425034565],[-118.82022524355355,52.32709282002346],[-118.82903610353377,52.330075712451674],[-118.83700900944285,52.33295074202797],[-118.84526393116451,52.33662401208554],[-118.85454986484446,52.34068197459156],[-118.86128878241155,52.342196069154035],[-118.87213664943421,52.34362104649766],[-118.88353950055601,52.34419577946147],[-118.8880161403358,52.344114493407844],[-118.89417360395687,52.343967283116584],[-118.9020047755412,52.344155116321865],[-118.90969020795116,52.34576545724294],[-118.9172789190809,52.34823571391216],[-118.92399291918518,52.353512985273944],[-118.92477671843693,52.35647659994977],[-118.92483722290413,52.360243191988424],[-118.9260003528859,52.363778050628234],[-118.92762394424396,52.366222304073375],[-118.93234581975334,52.369339033098946],[-118.93463970843163,52.37337706010308],[-118.93382787455636,52.37480784547217],[-118.93305601866203,52.37995428967498],[-118.93741801741885,52.38455268393679],[-118.94511152418285,52.386794287293625],[-118.94534666913093,52.3900485873608],[-118.94109573161367,52.39332358923473],[-118.93399132417271,52.39856153014824],[-118.92785769564627,52.40184632969813],[-118.92517684651861,52.4037487783135],[-118.92594112183673,52.404140180424946],[-118.92811120909997,52.40561103248318],[-118.9304154405328,52.40959549455138],[-118.92765855829812,52.413665955483374],[-118.92267733394624,52.41757688479297],[-118.92084075648849,52.42072669558031],[-118.92087039661506,52.421984060576435],[-118.92329264681442,52.427679734363274],[-118.92849840758113,52.43284270613452],[-118.93609590818907,52.434457752898176],[-118.94110045563993,52.43734512106119],[-118.9389016616577,52.44026917907266],[-118.93613403860515,52.443137721938655],[-118.93402560608624,52.44577883625222],[-118.9330407249915,52.448522178546725],[-118.93243184654636,52.4519502641765],[-118.93002665458793,52.453960417012404],[-118.92574837431499,52.455467649569144],[-118.92447124058586,52.45827142055239],[-118.92274426607263,52.46182504589456],[-118.91884953987416,52.463785254125824],[-118.91203116528307,52.4649606955036],[-118.90905511713551,52.4669170303571],[-118.90629001131664,52.46938864090722],[-118.90498879272627,52.469907848673444],[-118.90039823892103,52.47033058995095],[-118.89462189828005,52.47155815433941],[-118.88707115587296,52.47365117807049],[-118.88411759412782,52.4769799630629],[-118.88437039568936,52.482515689886355],[-118.88660714720355,52.488159463662655],[-118.8891710698382,52.49093974334798],[-118.89257745701805,52.494007536168844],[-118.89870785481426,52.49728689082278],[-118.90541677929055,52.50164662182685],[-118.9083637180755,52.504544363441106],[-118.90750308705118,52.50974588004118],[-118.90427221205043,52.51375889413249],[-118.90246619431774,52.51839288700663],[-118.90270162299822,52.521988459315175],[-118.90446136968262,52.52740235892115],[-118.90636339985791,52.52944988612961],[-118.91044143201782,52.53296897622899],[-118.91423669694122,52.53631686491571],[-118.91849616743436,52.539374645698736],[-118.92313595668094,52.54238047768415],[-118.93013354253851,52.54639685769045],[-118.93307346030322,52.549635036212976],[-118.93162444538665,52.55283615890499],[-118.93091576839277,52.55586938433207],[-118.93121853341532,52.55718376372504],[-118.93116628726814,52.559748865482284],[-118.92902071746944,52.56095944093838],[-118.9245516636616,52.562926984478516],[-118.92338122495666,52.56641308127989],[-118.92527005989591,52.56828636703204],[-118.92819263791999,52.56929878966922],[-118.9301743721516,52.56980224916407],[-118.935350981521,52.571200396885914],[-118.93884731873376,52.57260951605629],[-118.94206438698691,52.57436201270943],[-118.94510170785988,52.57657547318412],[-118.94698628622554,52.577761507820405],[-118.95055187281434,52.57740259937621],[-118.95475332421518,52.57652001945561],[-118.95880559987188,52.57735557636526],[-118.96389797656877,52.579727749570985],[-118.96890995831338,52.58186896495024],[-118.97050997375753,52.58225962141137],[-118.97530313373451,52.58320294236154],[-118.98171365362728,52.584252068710256],[-118.9885896974659,52.586270481690136],[-118.98971764240017,52.58700466252535],[-118.99315175964838,52.59035334189878],[-118.99410788846772,52.596856774929705],[-119.00035816571199,52.600988446600425],[-119.00766919313261,52.60054875855969],[-119.01223826498394,52.59823944237244],[-119.01546900433569,52.59456571854813],[-119.01864425317916,52.593687386529],[-119.02174038573045,52.59383983833268],[-119.0296373019404,52.59453715458915],[-119.03643351109473,52.59752360318266],[-119.03848448413906,52.60145127066382],[-119.03687244217858,52.60642291362524],[-119.0384410773553,52.61030252942301],[-119.04159520671766,52.61376048130561],[-119.04383317163783,52.61837426780412],[-119.04469415482272,52.61957161380751],[-119.04849622200778,52.62188714927187],[-119.05082717111321,52.626667868464445],[-119.05087194719898,52.62986892819917],[-119.05318138937376,52.633047372741686],[-119.05337426695058,52.6330504224999],[-119.0560368862108,52.63369115804836],[-119.05868181326501,52.633433778741946],[-119.06346129687165,52.637529389713166],[-119.06768506892392,52.64111249718081],[-119.07182432522505,52.6410917722273],[-119.07554807152037,52.64574673076185],[-119.0812932578708,52.65630136405985],[-119.08884065527558,52.658772119154065],[-119.09314878200057,52.663147283603394],[-119.09894937496784,52.66474015352758],[-119.1036494079247,52.66826529769781],[-119.10527868298544,52.67062111148327],[-119.11257822594057,52.66846701389888],[-119.1213458824183,52.667173841302464],[-119.13061641460834,52.66543392086534],[-119.14067059884535,52.66158925927566],[-119.15206965336672,52.656955235237625],[-119.15969993105328,52.652517453331896],[-119.16549996100238,52.64937325867842],[-119.16970524240396,52.64661391262618],[-119.17045616529869,52.64508039854332],[-119.17110229383883,52.64364377386424],[-119.17316989814667,52.6411306413983],[-119.17425837478018,52.64046250430508],[-119.1743768684819,52.63953431252049],[-119.17596926750397,52.63747973865359],[-119.17729387178409,52.63617008089698],[-119.17916245118052,52.63508592561476],[-119.17960206677449,52.63354259769162],[-119.18226247546413,52.633553600057844],[-119.18462989158614,52.62999211806835],[-119.18854286301872,52.6231672437774],[-119.18970203511644,52.61990379184266],[-119.19305164767128,52.61399226048396],[-119.19175243220982,52.6095474866967],[-119.18983337960968,52.6033965655722],[-119.19304344505682,52.59966131181612],[-119.20002638421008,52.60097916129182],[-119.20532886481301,52.603335747031856],[-119.21062361328352,52.60518266772518],[-119.21598772518843,52.6059389324502],[-119.21627358384954,52.6058232908486],[-119.2232946763101,52.60531501778357],[-119.22898865406576,52.60361280818869],[-119.23598341203048,52.60110544188167],[-119.24308865558754,52.59968049055268],[-119.25029629474504,52.59911000422459],[-119.25797153942496,52.59830495432788],[-119.26003975246005,52.59828678257157],[-119.27206350137463,52.59836071582027],[-119.28239884785074,52.599250763507776],[-119.28804864579773,52.60017498229932],[-119.29315040669114,52.60156327651944],[-119.29989436463619,52.6008172420649],[-119.30669477451801,52.59818889065134],[-119.3145350908084,52.59669618216905],[-119.32147046472473,52.595952642499746],[-119.33757386296217,52.59032938422831],[-119.34558959722447,52.58769028102237],[-119.3537583818719,52.58778883260286],[-119.35860284943189,52.59054929787285],[-119.35997030584042,52.592649703860374],[-119.361765729806,52.597259007320446],[-119.36344383111958,52.60090299146166],[-119.36542074048182,52.60482567726178],[-119.36822752350484,52.608286169297735],[-119.3725317352699,52.611676423057375],[-119.37458348265923,52.61502843690994],[-119.37363832355817,52.61863492067955],[-119.36726270203187,52.62275075036387],[-119.36346079581025,52.62483521475726],[-119.36162542367033,52.62679466911157],[-119.36171502564517,52.63033508363366],[-119.36215193615534,52.633075194154884],[-119.36226906567255,52.637875142161576],[-119.36158701675151,52.64073499633437],[-119.36097873164205,52.64331086645644],[-119.35900683288239,52.647100243118174],[-119.3595053950761,52.64829487463164],[-119.35830581375059,52.65362091522903],[-119.36109323889013,52.65588246883768],[-119.36664145544025,52.65617459668925],[-119.37066895958378,52.65533762630966],[-119.37541320960729,52.653522512946495],[-119.38372178574802,52.651164359052686],[-119.39139630167195,52.64972597221449],[-119.39947465273261,52.64971364394283],[-119.40715912532127,52.64878304856653],[-119.41280254825128,52.645073994130854],[-119.42299352786866,52.63915347012546],[-119.42681481519537,52.63809088998416],[-119.4379898523315,52.63832659988336],[-119.44597417636894,52.64133483995616],[-119.45039325535261,52.64529591758343],[-119.45288663008502,52.64727008904992],[-119.45820130885461,52.649274770387024],[-119.46672050786276,52.64822171439592],[-119.47258417320926,52.64605200893277],[-119.47789092375672,52.64411707647774],[-119.47981851504393,52.642496086251626],[-119.48881996574225,52.638067738345384],[-119.498762900154,52.634082975633234],[-119.50499417844031,52.63162113051732],[-119.51741186575389,52.62903731946674],[-119.52681486011441,52.62917506508981],[-119.52968296771039,52.63114408674298],[-119.53050239283877,52.633587940870854],[-119.5307630779561,52.63638455327035],[-119.53187010606392,52.63889386076912],[-119.5330958347311,52.642191921337805],[-119.53374058488545,52.64549824635435],[-119.53513747109722,52.64806014069885],[-119.5372993984319,52.65146458837799],[-119.54011852609774,52.65514791172323],[-119.54107732800455,52.659136649320494],[-119.54005395015552,52.663151211855414],[-119.53778850605345,52.66603229941502],[-119.53761388048743,52.666203260778985],[-119.54295770015777,52.66569057174819],[-119.55062727418158,52.664354730571425],[-119.55433829130524,52.66282955144946],[-119.5615931031916,52.65989624172051],[-119.56353731005868,52.65913474565148],[-119.56974670771741,52.65552939475432],[-119.57490614714689,52.65227330562062],[-119.5784792328137,52.651949637106526],[-119.58041420248416,52.6542152052854],[-119.58192663508075,52.657513081407494],[-119.58481472242647,52.66016972285181],[-119.58816572533098,52.66242014561023],[-119.59677358558793,52.667412380763786],[-119.60351970666835,52.67282845382329],[-119.60768218901238,52.67712574137197],[-119.61077378682228,52.682917123853215],[-119.61286334495476,52.68695544377212],[-119.61364561368934,52.69117874319418],[-119.61371048052278,52.696318148076735],[-119.61330621896687,52.69872216752554],[-119.61531567084218,52.703103677207196],[-119.61892543279195,52.70455176837856],[-119.62419654393433,52.704547700827824],[-119.6282062824048,52.70341850963046],[-119.63157403043817,52.702699223530004],[-119.63719005996457,52.70137771576999],[-119.64476500839692,52.70009453026467],[-119.65238434404932,52.700011111174796],[-119.66357622182461,52.699827448007014],[-119.672832249224,52.69783877191969],[-119.67718008746625,52.69561799891055],[-119.68522106922426,52.69106522858227],[-119.69230300830476,52.68584018000174],[-119.70003869574438,52.68020562292849],[-119.70977946097364,52.67609421564945],[-119.71626422426434,52.676306879543596],[-119.7203495498021,52.67745955132529],[-119.72510229204347,52.6788302304395],[-119.72813444344732,52.67976170044456],[-119.73491347524173,52.679797278343386],[-119.74009195879223,52.68019611563377],[-119.74566779592404,52.680929912431026],[-119.74981834292758,52.678593752704685],[-119.75312970751598,52.67609272711487],[-119.75539185718549,52.6734398368933],[-119.75875889365226,52.667395873579224],[-119.76227550816166,52.66266384023801],[-119.76503580745342,52.660766522555654],[-119.765317187728,52.660570599425974],[-119.76673012696375,52.66067085914925],[-119.7694849804231,52.661664671281606],[-119.77367565121897,52.66321545735544],[-119.77813061423204,52.66458722277988],[-119.78485979840755,52.666275736845236],[-119.78817813972708,52.666978991339015],[-119.79452565104057,52.66833044334926],[-119.8031498762186,52.67039423800446],[-119.80837570190927,52.67210214144959],[-119.81420136174225,52.67460097002434],[-119.81846255343115,52.67815007523167],[-119.82300730264093,52.68169767793615],[-119.82720429970554,52.68364152920766],[-119.83236979364226,52.68609313993286],[-119.83817200305285,52.687847972935046],[-119.84794502664563,52.69023874038626],[-119.85403691339356,52.689988121026516],[-119.85916975840206,52.68843861346347],[-119.86068233303682,52.68629975956775],[-119.86154908556014,52.68389181516964],[-119.86196483332456,52.682344364993064],[-119.86311845466282,52.68301249854961],[-119.86647250416316,52.6851405743954],[-119.86974581923046,52.68721142172374],[-119.8736970745797,52.68984813753252],[-119.87881429542576,52.69338502743674],[-119.882839978187,52.69841852877015],[-119.88456792046625,52.70474553657678],[-119.88692508653254,52.709800513094756],[-119.88894495285359,52.71388777351292],[-119.8913777553538,52.71602857119547],[-119.89660881130948,52.717447115730586],[-119.9039771457121,52.72089484871625],[-119.90749080367189,52.72193864363583],[-119.91373826120103,52.722711377561474],[-119.9195752009905,52.72291796985863],[-119.9206194841147,52.72290369317011],[-119.92511660240291,52.722272032506645],[-119.93140065165483,52.72184662970604],[-119.93611916456288,52.72206461100802],[-119.94099932014974,52.721773365953524],[-119.94452225247308,52.720238975484776],[-119.94669014890304,52.71786491180043],[-119.94918790703787,52.716627655335316],[-119.9527850598161,52.71698094193398],[-119.95666202888317,52.71767139771619],[-119.95963520169269,52.71917378038409],[-119.96305280470148,52.722272058962794],[-119.9645643274568,52.72516491057959],[-119.96453122773111,52.72676770742509],[-119.9646926245348,52.73099621716756],[-119.9648192719333,52.73431240874841],[-119.96672324986497,52.73748808224129],[-119.9689311395192,52.73883195986618],[-119.96950419742556,52.73899255601471],[-119.9716018444983,52.73953660408868],[-119.9747359503072,52.74012447394202],[-119.97927222196907,52.740803601120035],[-119.98478745246148,52.74204073862163],[-119.98795665377243,52.743544452672175],[-119.99224748732533,52.74491225682997],[-119.99328713014042,52.745357081883114],[-119.99578552679488,52.74623280040638],[-119.99853247540169,52.746824850034386],[-119.99978595340423,52.74786824793471],[-120.00127217921671,52.74884597342927],[-120.00358215240863,52.75074656335924],[-120.00579734600123,52.75321697030153],[-120.00707541769019,52.754830069821466],[-120.01039302959946,52.7587897032798],[-120.01230503344532,52.761833176960245],[-120.01272844101923,52.764230196099],[-120.01386761072682,52.76800446257575],[-120.01543355880936,52.770013981117344],[-120.01663162456626,52.77082260858559],[-120.01933951862452,52.77255586129154],[-120.02061624713691,52.77450494474123],[-120.02132121549492,52.777024239210725],[-120.02124666250249,52.78010651466182],[-120.0214140225748,52.78135782020748],[-120.02333791080417,52.784116487627834],[-120.0251654764872,52.78692585430671],[-120.02604479760332,52.79001292821645],[-120.02678053212257,52.79093388688892],[-120.02936151992002,52.79369106462287],[-120.03203562343087,52.79685046619148],[-120.033680728768,52.79937309153517],[-120.03361972992951,52.80193864621254],[-120.0336607823142,52.8046274835669],[-120.03391427444576,52.80622557096088],[-120.0355562840242,52.80909323282275],[-120.03725038713229,52.81361501670178],[-120.03869549024328,52.81693367121737],[-120.04181984617014,52.82083591515055],[-120.04656334473985,52.82383463031896],[-120.04741628782065,52.82424459579513],[-120.05116453248068,52.82518623278929],[-120.05663346274198,52.825454832439235],[-120.06068185640311,52.825423438182284],[-120.06321958960781,52.82584502225465],[-120.06444531530971,52.82636540177006],[-120.06678176212652,52.827696603576726],[-120.07004742423774,52.82942903376204],[-120.07444002653317,52.831001310271354],[-120.07639031898367,52.833180922482455],[-120.08019167276515,52.83600391547025],[-120.08338541369746,52.837402782183446],[-120.08768831689027,52.83919993166028],[-120.09113990898447,52.8411102921731],[-120.0947435942125,52.845584790068244],[-120.09538432376375,52.84666962002144],[-120.09680775084006,52.85050731940795],[-120.09842071036434,52.85502585232139],[-120.09999248463099,52.85715156574349],[-120.10186346999986,52.85830498826479],[-120.1041829754482,52.86031755603251],[-120.1061294408649,52.86232930567639],[-120.10910317664053,52.864689488543355],[-120.1107611627952,52.866414517059866],[-120.11104960999941,52.86670450129802],[-120.11516348739404,52.868385210714486],[-120.11976197131413,52.87012828917],[-120.12265917466732,52.871970335253174],[-120.12507564452,52.87415816347889],[-120.12656704737547,52.8753657521457],[-120.12769034496897,52.87588582914477],[-120.13069310692529,52.87642687444432],[-120.13446982954682,52.87644768581487],[-120.1349396777323,52.876507162425675],[-120.14709528325966,52.873719121783125],[-120.1481905614669,52.87314127657074],[-120.14897734416684,52.87263405632304],[-120.15020274257616,52.87176134827239],[-120.15121605004937,52.87058401059423],[-120.1526560422527,52.86858405433791],[-120.15416050311288,52.866440007554985],[-120.15523792126018,52.86533780222359],[-120.15609003994102,52.86457068425537],[-120.1571248631098,52.86399537953415],[-120.15838654584115,52.86372540963486],[-120.15988668453116,52.863458874616796],[-120.16136919727808,52.86277652399305],[-120.1637468979167,52.861446641873876],[-120.16491676224767,52.86064750147244],[-120.16612929509127,52.859210115047865],[-120.16662476813639,52.85842799409702],[-120.1672501778233,52.85724249077404],[-120.16773395485575,52.85665431734459],[-120.16881250638855,52.85630205142659],[-120.17059726642802,52.85646220059233],[-120.1717572311076,52.85682345985377],[-120.17295443350828,52.85745810637779],[-120.1742330170867,52.857825791503586],[-120.17558737822712,52.85796728973118],[-120.17622770784965,52.85787091511526],[-120.17752817002233,52.85786073463595],[-120.17893523292544,52.85816278447559],[-120.18051077137429,52.85930749022414],[-120.18198715299931,52.860413509044],[-120.18333526531588,52.86125678963697],[-120.18461779211604,52.86192475845396],[-120.186155521844,52.86269250876893],[-120.1874205551773,52.86337982267376],[-120.18852414144756,52.86404674253874],[-120.18961422402081,52.864922124834145],[-120.19028419238614,52.86559339935719],[-120.19075961216973,52.86593964796982],[-120.19162539019983,52.86648962672554],[-120.19263662246203,52.866849477277164],[-120.19391009316242,52.86725771472156],[-120.19502518246479,52.86773230613001],[-120.19560123320875,52.868107682027755],[-120.19596653356436,52.86860474284256],[-120.1964531705147,52.869197755769086],[-120.19681321417401,52.86984296912915],[-120.19749264780539,52.87055570326119],[-120.19836402950924,52.870956358503825],[-120.1995691320251,52.87131954149876],[-120.19977727036508,52.8715457124676],[-120.19992767643737,52.87164759684005],[-120.20007656041531,52.87176064933503],[-120.20021060888477,52.87187296799897],[-120.20035995122429,52.87198266962251],[-120.2005099034172,52.87208790371893],[-120.20066031315324,52.87218978711939],[-120.20080958101872,52.8723000510334],[-120.20095839409268,52.87241365631411],[-120.20109252245844,52.872525419977244],[-120.20122589147361,52.87264275870988],[-120.20137539137328,52.872751342157336],[-120.20150921739919,52.872865338987424],[-120.20165925226486,52.87297000867543],[-120.2018256457956,52.873064252196976],[-120.20200680132919,52.8731597828359],[-120.2022051546764,52.87323873118216],[-120.20238912738141,52.8733136042635],[-120.20260582010172,52.87336759810242],[-120.20283894790084,52.87341060254875],[-120.2030578481106,52.87344840591784],[-120.20327750972697,52.8734806247031],[-120.20351368277407,52.873501291107104],[-120.20374065020927,52.87347990092814],[-120.20396936694057,52.87344567116419],[-120.20418454053859,52.87340121024622],[-120.20441386640256,52.873362503335706],[-120.20464281082312,52.87332659253663],[-120.2048572977821,52.873287160617686],[-120.20509651363078,52.873285487099174],[-120.2053190667904,52.87329648215946],[-120.20555645695384,52.87330820975919],[-120.20579263015043,52.873328871587],[-120.2060139666644,52.873348800038784],[-120.206248466928,52.87338174617587],[-120.20643138372165,52.87346442186218],[-120.20661376820863,52.87355101066458],[-120.20679554498835,52.87364206653753],[-120.2069453667956,52.87374840915405],[-120.20706361320859,52.873867251001464],[-120.20718117642497,52.873991114032684],[-120.20729988168692,52.874106596170485],[-120.20746576039414,52.87420473611305],[-120.20766351912953,52.8742881514918],[-120.20784590964341,52.874374738337806],[-120.20802822546521,52.87446187884911],[-120.20821221367572,52.87453674275962],[-120.20841012870176,52.874619031089665],[-120.20857646816665,52.87471381891082],[-120.20872645024897,52.874819042344846],[-120.20887590024596,52.874928178992505],[-120.20900929820192,52.87504550871687],[-120.20914330389964,52.87515837984994],[-120.20927731152342,52.8752712418876],[-120.20941147069013,52.87538299585756],[-120.20954487154344,52.875500324940646],[-120.20967842395832,52.875616545956696],[-120.20979607622536,52.87573984334848],[-120.20989835857625,52.87586632161753],[-120.21001654368683,52.87598571429019],[-120.21015055500723,52.87609858420854],[-120.21030054584722,52.87620380554282],[-120.21044985391954,52.876314048002165],[-120.21061514038122,52.87641665073405],[-120.21078103571024,52.87651478585633],[-120.21096290942853,52.87660528116173],[-120.2111464572337,52.876683481972904],[-120.21136538161639,52.876721269794814],[-120.21160096854884,52.876746387282274],[-120.21178997031062,52.876674760739114],[-120.21195377816775,52.87656872715508],[-120.21210229237684,52.87646530280288],[-120.21222340820927,52.876343670290446],[-120.21233029445148,52.876216829226884],[-120.21245133354894,52.87609575041576],[-120.21258584217887,52.87598545515143],[-120.21273480749993,52.87587868836083],[-120.21288331741,52.875775262977236],[-120.21304658785448,52.87567313230427],[-120.21319562751356,52.87556580201829],[-120.21335889640756,52.87546367089813],[-120.21350740214206,52.87536025363408],[-120.2136841397733,52.87526890562743],[-120.2138480906648,52.875161743528366],[-120.21399644223222,52.875059442474594],[-120.21418725556799,52.874974409826955],[-120.21439024778473,52.8749096490907],[-120.2146067851072,52.87485511750104],[-120.21482332187568,52.87480058551073],[-120.21503978153257,52.874746616011734],[-120.21522861675506,52.87467610070013],[-120.21541935057991,52.8745916199898],[-120.21563649250497,52.874532619092435],[-120.21586467436539,52.87450227071698],[-120.21609164092911,52.87448085670576],[-120.21631602555046,52.874478428727194],[-120.21655403275594,52.87448566670498],[-120.21679143262936,52.87449737160818],[-120.21701520990834,52.87449940970248],[-120.21725572212043,52.87448822266679],[-120.21746952060226,52.87445378913442],[-120.21769959920763,52.87440947206887],[-120.21790318947784,52.87434024676624],[-120.21805183330801,52.87423569790048],[-120.21817277401429,52.87411517594287],[-120.21827902971701,52.873992796709835],[-120.21840065283888,52.87386724418811],[-120.21850683075941,52.87374542762471],[-120.21864260601271,52.87362563647109],[-120.21877762272905,52.87351142049234],[-120.21889795215229,52.873395365154614],[-120.2189460698905,52.873261125300964],[-120.21899547693867,52.87311739661055],[-120.21907303978342,52.8729862989567],[-120.21917913708891,52.87286504461409],[-120.21931437702317,52.87274915714747],[-120.21940654804428,52.8726204612835],[-120.21948471582286,52.87248489589053],[-120.2195908107096,52.872363641138186],[-120.21969720974514,52.872240143631565],[-120.21981943075194,52.87211012207476],[-120.21992575200433,52.87198718723781],[-120.22003207264356,52.87186425229515],[-120.22013816442896,52.87174299700158],[-120.22024440857744,52.87162061580964],[-120.22036617089265,52.871493944208986],[-120.22048641503149,52.87137844106005],[-120.22060734074962,52.87125791638157],[-120.22072834226007,52.871136828672455],[-120.22084926782286,52.871016294791886],[-120.22095558337776,52.870893358938986],[-120.22104766896128,52.87076522453548],[-120.22112537294207,52.870633008473774],[-120.22118945405043,52.87049112647955],[-120.22123740835977,52.87035801123825],[-120.22125622182858,52.870219520530405],[-120.22121508414847,52.87008257332472],[-120.22117455362141,52.869941158650086],[-120.22116392342565,52.86979952617759],[-120.22119734458754,52.86966344618024],[-120.22126089359149,52.86952546860671],[-120.22135305055386,52.869396779890586],[-120.22147472797491,52.86927066092768],[-120.22160911526689,52.86916091776559],[-120.22177226423301,52.86905932851416],[-120.22198929273378,52.86900087857623],[-120.22217884947409,52.86892476753386],[-120.2222984747014,52.868813729796],[-120.22240607051849,52.86868129465761],[-120.22249882892979,52.8685481375217],[-120.22260505834076,52.86842575395042],[-120.22272604613974,52.868304663969205],[-120.22281751411981,52.868180995426364],[-120.22286629554567,52.868041732106725],[-120.22292907717326,52.86790934674696],[-120.22300783178007,52.86776931115184],[-120.22307068900585,52.86763636279397],[-120.22317706616477,52.86751286177054],[-120.22333944559304,52.86741686349875],[-120.2235153709727,52.86733108458344],[-120.22372035924343,52.86725123420793],[-120.2239104364638,52.867171206791014],[-120.22403336287877,52.867145779644176],[-120.22414031622722,52.86712800271841],[-120.2242478008036,52.867106312194316],[-120.22436905891875,52.86709317022884],[-120.224475936789,52.867075946962935],[-120.22459651305365,52.867067826196376],[-120.22470278429061,52.8670550701926],[-120.22482389050352,52.86704304462468],[-120.22493091967782,52.86702470407714],[-120.22503976808586,52.86699296101899],[-120.2251209172056,52.866945237592674],[-120.22518935363479,52.866881147472256],[-120.22521320854564,52.86681542877325],[-120.22522298767511,52.866743386310866],[-120.22520256571357,52.86667379638753],[-120.22518221901497,52.86660365249092],[-120.22514620428855,52.86653891640574],[-120.22509527962785,52.866474003777526],[-120.22504382388688,52.866413004630566],[-120.22500780953165,52.86634826849529],[-120.22495696050795,52.86628280183259],[-120.22490596002922,52.86621845201333],[-120.22486994604763,52.86615371582785],[-120.2248183394025,52.866093833438036],[-120.22476749097316,52.86602836668295],[-120.22471664269995,52.86596289990305],[-120.22466640104821,52.86589296562637],[-120.22464552555256,52.86582672617318],[-120.22463986314708,52.865758429566675],[-120.22464911174028,52.86569030061005],[-120.22464405702381,52.86561752759003],[-120.22465376042602,52.865546048022274],[-120.22466346379571,52.86547456845038],[-120.2246725606752,52.8654075563482],[-120.22466742953863,52.865335346217954],[-120.22467713283744,52.86526386663542],[-120.22468622965053,52.86519685452328],[-120.22471076725697,52.86512610548021],[-120.22472039402311,52.86505518878658],[-120.22474417343614,52.86499002407407],[-120.2247683324084,52.864922062714335],[-120.22482162862366,52.86485947592416],[-120.22490413838332,52.86480170076218],[-120.22498596509566,52.86474895591946],[-120.22506665520015,52.864704583071045],[-120.2251486343371,52.86465071230746],[-120.22522977887735,52.864602988735584],[-120.22532583260958,52.86455544160865],[-120.22540644680456,52.86451162248903],[-120.22550234854465,52.86446519208508],[-120.22559719018174,52.86442657075861],[-120.2256918788503,52.86438907516002],[-120.22578596223893,52.86435603803167],[-120.22589556109067,52.864318709774444],[-120.2259900976814,52.86428233080386],[-120.22608478689669,52.8642448259504],[-120.22619377891976,52.86421196489683],[-120.22628770874844,52.86418005316926],[-120.22639662527341,52.86414774589443],[-120.22650485899887,52.864120468907984],[-120.2266112738782,52.86410659428326],[-120.22673237117854,52.86409456672657],[-120.2268534684106,52.86408253904502],[-120.22695912533302,52.864074248465826],[-120.22707961625703,52.864066688040246],[-120.22720078847745,52.864054106031865],[-120.22730644526189,52.86404581514022],[-120.22741331430733,52.86402858917037],[-120.22753516883236,52.864010976421355],[-120.22764332632264,52.86398425235328],[-120.22775095272102,52.86396144170945],[-120.22785857900423,52.8639386309668],[-120.22797967547572,52.863926602123655],[-120.22808661910415,52.86390882157087],[-120.22820771542665,52.863896792492525],[-120.22831518978879,52.86387509820495],[-120.22842289191361,52.86385172403969],[-120.2285311235914,52.86382444518213],[-120.2286399611498,52.863792698725916],[-120.22873403972633,52.863759668160185],[-120.22882811936911,52.86372662858348],[-120.22893824357186,52.863685392879255],[-120.22903292886842,52.863647885636524],[-120.2291276891381,52.8636098243464],[-120.22922297884314,52.86356785838196],[-120.22931842105852,52.86352476652848],[-120.22939895285407,52.86348150754735],[-120.22949492427632,52.86343451095008],[-120.2295760616376,52.863386784340996],[-120.22965681952009,52.86334185433264],[-120.22975286668661,52.86329429461495],[-120.22983400349239,52.863246567823566],[-120.22991582112222,52.86319381949701],[-120.22999718536066,52.863144412807316],[-120.2300784730724,52.86309556896572],[-120.23014553270802,52.86304152769756],[-120.23022750101939,52.86298766227001],[-120.23029456029643,52.86293362091314],[-120.23036237668552,52.86287399512851],[-120.2304295870673,52.86281883681313],[-120.23049679727525,52.86276367845743],[-120.23057937162082,52.86270533632877],[-120.23063182296359,52.862648894112866],[-120.23070024421436,52.862584800610314],[-120.23075262013218,52.86252891230767],[-120.23082043523713,52.862469286243524],[-120.23087356806232,52.862407813490876],[-120.23094145913099,52.86234762444552],[-120.23099519738102,52.8622816841183],[-120.23104832972052,52.862220211279265],[-120.23110138558387,52.86215930132079],[-120.23115451761781,52.86209782842897],[-120.23119334670798,52.86203171223752],[-120.23124662988037,52.86196912241987],[-120.23129968514806,52.86190821236223],[-120.23135281658327,52.86184673937104],[-120.23140647845909,52.86178135280727],[-120.23145976100582,52.8617187628831],[-120.23149873948844,52.86165153863013],[-120.2315378704806,52.86158318854637],[-120.23156148611898,52.86151913919209],[-120.2315857824676,52.861450068337575],[-120.23162491313532,52.86138171821613],[-120.23164920930293,52.86131264734247],[-120.23168773407939,52.86124876471554],[-120.23172656035838,52.861182657247504],[-120.23177976658636,52.861120621127284],[-120.23183365340522,52.86105356348511],[-120.23187187363969,52.86099192348381],[-120.2319250794183,52.86092988729041],[-120.23199819437981,52.86072098567574],[-120.23203202806626,52.86058155117685],[-120.23209492286902,52.86044803448316],[-120.23218702751846,52.86031933653796],[-120.23233740419569,52.86020136610689],[-120.23252690334975,52.86012523795516],[-120.23276604426074,52.86012350811747],[-120.23296469544484,52.86020018037343],[-120.2331471533578,52.860286165818614],[-120.23331424874101,52.860375335072675],[-120.2334948154306,52.86047528547393],[-120.23366115547292,52.86057003864002],[-120.23384240430298,52.86066496698742],[-120.23402539510417,52.860747046419114],[-120.2342087655861,52.86082632888436],[-120.23444125130047,52.86087373853011],[-120.2346631418838,52.86088914565841],[-120.23489691147599,52.86081688138043],[-120.23492846703611,52.86069419039469],[-120.23487185636226,52.860560985429096],[-120.23481547243337,52.86042610956514],[-120.23472972701643,52.860287532393414],[-120.23464375454957,52.86015063494203],[-120.23458744815781,52.86001519602361],[-120.23454673151876,52.85987490194976],[-120.23453605820926,52.85973327872519],[-120.23455542914165,52.85959031742277],[-120.23466235829441,52.85946233783818],[-120.23482354686367,52.85937469538878],[-120.2350417950204,52.85930672299828],[-120.23524467976824,52.85924193455106],[-120.23541994223098,52.859160604922174],[-120.23562418866602,52.85908575489826],[-120.23582760163147,52.85901705186348],[-120.23603184545311,52.85894221005943],[-120.23622178628268,52.85886272522616],[-120.2363976504586,52.858776926567806],[-120.2365884975411,52.85869073980413],[-120.2367785874863,52.85861013716978],[-120.23696852544498,52.85853065111299],[-120.23717216109551,52.85846026592549],[-120.237277197043,52.858456433598775],[-120.23739767026393,52.85844886256843],[-120.23751874845493,52.85843682385514],[-120.23762567433833,52.85841903456102],[-120.2377325251138,52.85840179914693],[-120.23785375432092,52.858388643197884],[-120.23796060492805,52.85837140757609],[-120.23808115401151,52.85836327293182],[-120.23818800446317,52.85834603710302],[-120.2383096870676,52.85832953001072],[-120.23841668857159,52.858311177082584],[-120.2385236899835,52.85829282405685],[-120.23863242976813,52.858261631149674],[-120.23874003584498,52.858238810360625],[-120.23884817167314,52.85821207588405],[-120.23895713844135,52.85817920286962],[-120.23903765036444,52.858135937138265],[-120.2391342789726,52.858083910964666],[-120.23920018579838,52.85803823658347],[-120.23928190685241,52.8579860355422],[-120.23936385390618,52.85793216357096],[-120.23944572575736,52.85787884551955],[-120.23951223672807,52.85782870338639],[-120.23959395699859,52.857776502121176],[-120.23967590325559,52.857722629925235],[-120.2397565647794,52.85767824679565],[-120.23985183198002,52.85763626312164],[-120.2399614012484,52.85759892159021],[-120.24005530620786,52.85756699872688],[-120.2401641954117,52.857534678559105],[-120.24025832744981,52.8575010757239],[-120.24036706394689,52.85746988119594],[-120.24046172539086,52.857432364598935],[-120.24055646164857,52.85739429394514],[-120.24065119773712,52.857356223214],[-120.24074653831535,52.85731368482634],[-120.24084248335146,52.857266678780306],[-120.24092306661431,52.857222857752326],[-120.24103255890884,52.857186069192316],[-120.24112729410984,52.857147998072406],[-120.24122240641586,52.857107139103775],[-120.24131721745108,52.85706850491338],[-120.24141248054407,52.85702652889319],[-120.24150789580224,52.85698342696334],[-120.24158908241132,52.856935137886595],[-120.24166966548968,52.856891307402286],[-120.24175092791315,52.85684245529513],[-120.24183271851625,52.856789698459835],[-120.24192881230803,52.85674157461462],[-120.24199531858561,52.85669143103993],[-120.24206310868875,52.85663179826931],[-120.24213014297324,52.856577749942886],[-120.24219793270719,52.85651811709011],[-120.24227979830056,52.85646479701659],[-120.24236098304833,52.856416507390676],[-120.24244292440571,52.856362624283676],[-120.24252403382147,52.856314888523286],[-120.24260536911963,52.856265481826114],[-120.24268662927878,52.8562166290525],[-120.2427685698407,52.85616274571162],[-120.24283545138817,52.856109813865025],[-120.24291678593448,52.85606040694592],[-120.24301219751085,52.85601730376827],[-120.2431074565875,52.85597532634598],[-120.24320286778082,52.85593222301132],[-120.24328329500374,52.85588951722681],[-120.2433787058274,52.85584641374699],[-120.24347335980991,52.85580890362067],[-120.24358148650961,52.85578216474736],[-120.24370255538392,52.855770119642386],[-120.24380954814552,52.855751761774236],[-120.2439312211719,52.85573524883391],[-120.2440370051648,52.85572582595849],[-120.24415746947176,52.85571824798505],[-120.24427672520348,52.855719605092],[-120.24438175376224,52.855715766408494],[-120.24450161373692,52.85571265568474],[-120.24461966100333,52.85572294764986],[-120.24473770832668,52.85573323949623],[-120.24485575570704,52.85574353122399],[-120.24495897168715,52.85575309483908],[-120.24507588572808,52.855771767573145],[-120.24517547678757,52.855808136632696],[-120.24537564176966,52.8558736101671],[-120.24551285519405,52.85596298625593],[-120.24559557717741,52.85601370073654],[-120.2456787512425,52.8560610733865],[-120.2457619267006,52.85610843704094],[-120.24584510113523,52.85615580957021],[-120.24592797491273,52.856205406908536],[-120.24599518600061,52.856260423754335],[-120.246061868081,52.856319354185636],[-120.24612930665585,52.856372691129614],[-120.24621134998,52.8564284356919],[-120.24627863668928,52.856482898384215],[-120.2463613605917,52.856533612309086],[-120.24644393246986,52.85658545201191],[-120.24652710980047,52.8566328151091],[-120.24662579805765,52.85667588433584],[-120.24672780864464,52.85669438161412],[-120.246845934063,52.85670411735237],[-120.24696511774117,52.85670602571405],[-120.2470702233816,52.856701630645944],[-120.24719189785529,52.85668511433932],[-120.24729889141025,52.8566667533046],[-120.24740762183765,52.85663554331036],[-120.24751597403976,52.85660712994253],[-120.24761047508932,52.85657073340583],[-120.24771935602321,52.85653840621715],[-120.2478127250252,52.8565103818311],[-120.2479216044439,52.85647806338891],[-120.24803101269943,52.856441831210795],[-120.24813853427445,52.85641955577434],[-120.2482461306158,52.856396726254175],[-120.24835493453875,52.856364961393076],[-120.24844837761928,52.856336382514],[-120.2485571063632,52.85630517144965],[-120.24865183288985,52.85626709424249],[-120.2487599562966,52.85624035954723],[-120.24886883551574,52.85620803128665],[-120.24896280682104,52.85617553835681],[-120.24907168451337,52.8561432188421],[-120.24918048717468,52.85611145321152],[-120.24928861106294,52.85608470909202],[-120.24939560220892,52.85606634614126],[-120.24950183860824,52.85605356762764],[-120.24962185008627,52.85604933477481],[-120.24974231431429,52.856041751077534],[-120.24986338218501,52.85602969962696],[-120.24996901467864,52.856021388320585],[-120.25009008242749,52.85600933663631],[-120.25019639332933,52.85599600350805],[-120.25031746094187,52.85598395158934],[-120.2504230932337,52.85597563987443],[-120.25054491524084,52.855958003180206],[-120.25065115102588,52.8559452236267],[-120.25077108723988,52.85594154358645],[-120.25089215453544,52.855929491075194],[-120.25099778658036,52.855921178843396],[-120.25111885375402,52.855909126098446],[-120.2512252401306,52.85589522911631],[-120.2513463071663,52.85588317613684],[-120.25145269340402,52.855869278948546],[-120.25157376030178,52.85585722573449],[-120.25168059902002,52.855839977610394],[-120.25180174060168,52.85582737017389],[-120.2519079756847,52.85581458948302],[-120.25203024920911,52.855793600516385],[-120.25213663500051,52.855779702708176],[-120.25225838091391,52.85576261822293],[-120.25236521911825,52.85574536947532],[-120.25247281149602,52.85572253607533],[-120.25257980036231,52.85570417022119],[-120.25270214805904,52.85568262656602],[-120.25280958925525,52.855660909768055],[-120.25291786056536,52.855633045389965],[-120.25302605571213,52.85560574383516],[-120.25311941918498,52.85557771521618],[-120.25322889552714,52.85554092418962],[-120.2533241446895,52.85549892953752],[-120.25341878915275,52.855461411392014],[-120.25351403795054,52.85541941658391],[-120.25360883289129,52.85538078137091],[-120.25370347804842,52.855343254058006],[-120.25379880110664,52.85530070502713],[-120.25389352072224,52.85526262357038],[-120.25398884341062,52.85522007438317],[-120.25408348667032,52.85518255569568],[-120.25417888499607,52.85513944342774],[-120.25427413111996,52.85509745693024],[-120.25435530088957,52.85504915004124],[-120.25445062264014,52.85500660047365],[-120.25453179083057,52.854958302395225],[-120.25462718820154,52.85491518975722],[-120.2547224333833,52.85487320289035],[-120.25481647328444,52.85484014232704],[-120.25499364050252,52.85474426339146],[-120.25515597567738,52.85464765747556],[-120.25530498663781,52.85453915548581],[-120.25544067336084,52.85441875747051],[-120.2555882499232,52.854320870273796],[-120.25570902927393,52.85420029926738],[-120.25575768730437,52.85406102108265],[-120.255806345017,52.853921742865516],[-120.25586907958883,52.85378877581925],[-120.25596109811373,52.85366005870642],[-120.25602375704563,52.85352764554636],[-120.25608709335626,52.853390210681596],[-120.256149826271,52.853257243440694],[-120.25619848178613,52.85311796499025],[-120.25626166618234,52.852981646913484],[-120.25638191164595,52.85286498879336],[-120.25654491422762,52.852763359179704],[-120.25669459396192,52.852649824697785],[-120.25688401607884,52.85257365691073],[-120.25710015895243,52.85252072613795],[-120.25731404179034,52.85248453982335],[-120.25754192529287,52.85245522705429],[-120.25776950707898,52.852428147683014],[-120.25800679545021,52.85243976951554],[-120.25822330056623,52.85249478738324],[-120.25844214245187,52.852532488108096],[-120.25866158743936,52.85256572073979],[-120.25889367921417,52.85261587009246],[-120.25909377433301,52.852681883318446],[-120.25927602614979,52.85276950844964],[-120.25944133878804,52.85287204403378],[-120.25957548417897,52.852984296300875],[-120.25966204890686,52.853117271365875],[-120.25970314301323,52.853255323484966],[-120.25971389826903,52.85339694499524],[-120.25972510435396,52.85353522466168],[-120.25976589775966,52.85367551056581],[-120.25982182377588,52.85381428872051],[-120.25983303152559,52.85395255940478],[-120.25984438879588,52.85408972208951],[-120.25985499407777,52.8542324604336],[-120.25988110799946,52.85437090319797],[-120.25990699550864,52.85451102579425],[-120.25996307373156,52.85464868688697],[-120.2600195295466,52.85478355116988],[-120.2600760604411,52.85491786142116],[-120.26013191316854,52.855057202247394],[-120.26018859542768,52.855190395500045],[-120.26022924129369,52.855331798017446],[-120.26027049001664,52.85546873282328],[-120.26031113641945,52.855610135287385],[-120.26035238567457,52.855747070040444],[-120.26039303261415,52.85588847245129],[-120.26046507646377,52.85601847785517],[-120.26055262989867,52.85614418755453],[-120.26068558339674,52.85626537368959],[-120.26083502658656,52.856374999522835],[-120.26098447054467,52.856484625158366],[-120.26113504437987,52.85658587815263],[-120.26131754361208,52.85667182005073],[-120.26149981704857,52.856759441511215],[-120.26169699806144,52.85684723457345],[-120.26188055381343,52.856925357129015],[-120.26206335600652,52.8570090729414],[-120.26226189594242,52.857086803805444],[-120.26244417309275,52.8571744237781],[-120.26261063925988,52.85726858216459],[-120.2627930684911,52.85735508466316],[-120.26297497202428,52.85744549163743],[-120.26314151631321,52.85753908632649],[-120.26332274318223,52.8576345233746],[-120.26348974068412,52.85772476678844],[-120.2636716460665,52.857815181598525],[-120.26383804276611,52.85790989220235],[-120.26418649962999,52.85809389070252],[-120.26435124251519,52.85820088673013],[-120.2645023579168,52.858298221596364],[-120.26466777922084,52.85840019547366],[-120.26481724012815,52.85850981609421],[-120.26496662713848,52.8586199905119],[-120.2650855953846,52.858734307390286],[-120.26518739877739,52.85886520657225],[-120.26528980490653,52.858991637954645],[-120.26539221164286,52.85911806923781],[-120.26550990357669,52.859241875046166],[-120.26564401032041,52.859354673926866],[-120.26577766501927,52.859470832358255],[-120.26591177319125,52.859583630917164],[-120.26604603137913,52.859695321324665],[-120.2661641036759,52.85981632965128],[-120.26629776123838,52.85993248745719],[-120.26641553390195,52.86005572936434],[-120.26651854853054,52.860177691877944],[-120.26663624665883,52.86030149647535],[-120.26675394547053,52.86042530094528],[-120.26687277305261,52.86054073280986],[-120.26700688748599,52.86065353004273],[-120.26715591084832,52.86076649831093],[-120.26730591252924,52.86087221082833],[-120.26745644222905,52.86097400943664],[-120.267620753023,52.86108435146522],[-120.26777075817806,52.86119005443269],[-120.26793672575089,52.86128810981076],[-120.2681197089971,52.8613706990438],[-120.26831873165072,52.861445068678876],[-120.26851820515147,52.86151609612633],[-120.26871888409767,52.86157817887505],[-120.26891783294174,52.86165311041742],[-120.26910014328648,52.861740719812325],[-120.26926566475818,52.86184212406356],[-120.26936854142257,52.861965200869356],[-120.2694398695485,52.86210079384661],[-120.26954169434467,52.862231688977865],[-120.26962891183071,52.86236017927273],[-120.26973186540357,52.862482701723884],[-120.26986554224557,52.86259884634089],[-120.26999966986521,52.86271164894711],[-120.27014968664186,52.86281734876946],[-120.27031446273826,52.86292433611764],[-120.2704810445348,52.86301792008025],[-120.27066238571432,52.86311279148168],[-120.27084658644985,52.86318643200586],[-120.2710625611274,52.8632458935578],[-120.27128041683552,52.863291388620816],[-120.27149879994188,52.86333296955591],[-120.27173194224927,52.86337583763008],[-120.27195100228731,52.863412396004286],[-120.27216946124756,52.86345342169247],[-120.27238604055373,52.86350841307922],[-120.27260209478644,52.86356730885671],[-120.27280263898446,52.863630501482874],[-120.27301884475315,52.863688279558346],[-120.27321999028266,52.863747012676335],[-120.27343672396887,52.86380087624942],[-120.27367167468756,52.863830337277285],[-120.27389359479716,52.863845670303874],[-120.27412734356976,52.86388406588162],[-120.27434475488397,52.86393290604491],[-120.27456246730134,52.863979511937664],[-120.27477965355388,52.86403003116147],[-120.27499811839985,52.864071051575856],[-120.27523367282753,52.86409604174025],[-120.27545379152569,52.864124775029275],[-120.27567338516243,52.86415741270954],[-120.2758569967841,52.864235522006666],[-120.27583896438331,52.86436955419473],[-120.27576053985763,52.8645085085142],[-120.27565514964695,52.86462590972006],[-120.27551956326758,52.86474576736157],[-120.27539948694658,52.86486132725216],[-120.27526397364267,52.86498063058195],[-120.2752017339575,52.86511025623724],[-120.27510869555722,52.86524681495018],[-120.27510662349613,52.86537318965762],[-120.27527247393154,52.86547235134995],[-120.27550923852611,52.865488405473386],[-120.27575021104951,52.865473184969446],[-120.27596534398907,52.86542803846489],[-120.27618167979577,52.865373947153294],[-120.27638332879137,52.86531802341898],[-120.27660026452436,52.8652594635935],[-120.27681667319321,52.8652048171075],[-120.27703225437554,52.86515631783587],[-120.27726161987948,52.86511635169894],[-120.2774879046421,52.865099286778396],[-120.27772586978858,52.86510640094891],[-120.27794960061125,52.8651083230639],[-120.27818936842367,52.86510203305171],[-120.27841565273897,52.86508496634471],[-120.27864178667363,52.86506901613994],[-120.27886859570918,52.865048043745496],[-120.27911016529293,52.865028348595715],[-120.27933689939195,52.86500792929856],[-120.2795668626371,52.8649634909037],[-120.2797139697881,52.86486892488232],[-120.27982122711843,52.864737553841564],[-120.27992795761249,52.86461009644948],[-120.27997587207904,52.864475839858166],[-120.2800097776898,52.86433471203113],[-120.28005829342797,52.86419597868626],[-120.2800623785006,52.86405452063406],[-120.28003619312594,52.86391608320774],[-120.28006942178227,52.86377998601427],[-120.28016154016657,52.86365012489361],[-120.28023889770627,52.86351898614998],[-120.28031625477011,52.86338784734457],[-120.28042275458583,52.86326206927433],[-120.280557647424,52.86314722763464],[-120.28072123343487,52.86304108844596],[-120.28089702527112,52.862955223436806],[-120.28111409171034,52.86289554718601],[-120.2813286066812,52.86285484962635],[-120.28155607873732,52.86282884130553],[-120.28195093337547,52.86277951478567],[-120.2823262996425,52.862764088936764],[-120.28256740442441,52.86274773748558],[-120.282792473833,52.862739597883426],[-120.28301799338561,52.86272810701468],[-120.28325834734737,52.86271733887154],[-120.28348326639919,52.862710314891885],[-120.28372369457193,52.86269899179185],[-120.28394981386722,52.862683031350265],[-120.28417593299324,52.86266707047358],[-120.28441568615936,52.862660767749986],[-120.28464075475598,52.86265262460782],[-120.28488050777217,52.86264632093594],[-120.28510550179304,52.86263873090977],[-120.28534465460093,52.86263689408252],[-120.28556957288465,52.862629866109764],[-120.28579509110837,52.862618369911225],[-120.28603559374727,52.86260647913887],[-120.28626051175668,52.862599449843614],[-120.28650101415907,52.86258755811862],[-120.28672593199194,52.8625805279326],[-120.28695084975065,52.862573497316056],[-120.28719060198031,52.86256718893127],[-120.28743095398087,52.862556412253674],[-120.2876559458736,52.86254882627998],[-120.2878820629004,52.86253285827136],[-120.28810892947061,52.862511305068395],[-120.288336321189,52.862485837627],[-120.28857847160272,52.86246165517642],[-120.28879185223342,52.862429325594974],[-120.28901916754792,52.86240441977524],[-120.2892471566024,52.86237449169319],[-120.28947582051408,52.86233953240878],[-120.2896915239085,52.862289883941045],[-120.28989501488255,52.862219970523974],[-120.2900855437591,52.862135376991425],[-120.29027554788466,52.86205468801976],[-120.29046555129118,52.861973998736865],[-120.29065540410494,52.86189442609811],[-120.29083117120875,52.861808546168675],[-120.29100776245512,52.861716518245295],[-120.29119836240342,52.86163135993586],[-120.29138828665145,52.861551232085624],[-120.29157753646902,52.86147612576307],[-120.29178169535797,52.86140117826888],[-120.29197169300262,52.86132048651769],[-120.29216154009629,52.86124091141307],[-120.29235138648144,52.861161335997934],[-120.29254198126503,52.86107617547959],[-120.29269024476673,52.86097265731775],[-120.29282509732344,52.860857801433646],[-120.29294526495518,52.86074110649248],[-120.29306655607377,52.86061602975601],[-120.29318732157321,52.86049486671119],[-120.29330808638639,52.86037370353305],[-120.29364446325464,52.860203447381224],[-120.29383437654683,52.8601233155058],[-120.29402361571918,52.860048205176504],[-120.29421420218821,52.85996304188636],[-120.29440411453733,52.85988290014227],[-120.2946083351132,52.85980739364924],[-120.29479682273245,52.85973786687022],[-120.29500096644342,52.85966292263707],[-120.29520443617702,52.859592999911015],[-120.2954078309719,52.85952363084345],[-120.29561070043259,52.85945817526101],[-120.29581341954072,52.85939383628943],[-120.29603037271045,52.859334686370175],[-120.29624552866186,52.85928893962176],[-120.2964610578335,52.85924040453411],[-120.29667673741864,52.859190743148815],[-120.29689316380689,52.85913550547478],[-120.2971088423583,52.859085843293194],[-120.29732459465309,52.85903562669904],[-120.29754012131635,52.85898708962452],[-120.29776943441001,52.8589470833125],[-120.29798398785546,52.85890580123679],[-120.2982131492332,52.858866919959645],[-120.29842822625199,52.858821723217325],[-120.2986445742706,52.85876703632087],[-120.29886009807404,52.858718496817254],[-120.2990757722258,52.858668831012615],[-120.29930575492918,52.85862379980419],[-120.29952082836677,52.85857860999098],[-120.29973650104155,52.85852894296935],[-120.29996633267504,52.85848502743356],[-120.30018207856523,52.85843480557424],[-120.30038418748568,52.858374926556984],[-120.30058689424239,52.858310579307286],[-120.30080331109882,52.85825533440142],[-120.30101830689493,52.8582106958546],[-120.30124686463478,52.85817626759413],[-120.30147504746454,52.85814463578597],[-120.30170352909784,52.85811076958965],[-120.30193148629279,52.8580808168202],[-120.30216019215815,52.85804526980784],[-120.30237383949742,52.85801068153136],[-120.30260261879323,52.85797457963768],[-120.30281693775692,52.85793496864105],[-120.30304624024241,52.85789495200573],[-120.30327546693499,52.85785549787705],[-120.30348926194216,52.857819790593915],[-120.30371781439595,52.85778536645481],[-120.30394584379025,52.857754846816285],[-120.30417320068388,52.857729348657266],[-120.30440122945276,52.85769882813397],[-120.30462865992394,52.85767277507272],[-120.30485661272301,52.85764281662071],[-120.30508329521354,52.857622347561716],[-120.30531132275895,52.857591825270326],[-120.30544526928416,52.857594957648665],[-120.30556453216938,52.85759625255336],[-120.30566836407117,52.85760129491755],[-120.30578762698089,52.85760258959584],[-120.30590688989787,52.85760388415315],[-120.30602555499797,52.85760964650172],[-120.30614481794188,52.85761094081757],[-120.30624924774888,52.85761151475539],[-120.30636731512799,52.85762174467249],[-120.3064871758921,52.857618570726665],[-120.30660584111149,52.85762433248921],[-120.30672570186513,52.85762115830015],[-120.30683072944491,52.857617263805324],[-120.30694939470706,52.85762302522099],[-120.3070688071452,52.85762320161968],[-120.30718747245605,52.85762896279499],[-120.30730554010852,52.85763919176928],[-120.30740937232065,52.857644232594865],[-120.30752923307041,52.857641057586235],[-120.30764789849314,52.857646818296544],[-120.30776716159022,52.85764811096573],[-120.30787166681156,52.85764812050372],[-120.30799033230016,52.85765388086814],[-120.3081095954274,52.85765517318981],[-120.30822885856182,52.85765646539049],[-120.30833209334189,52.85766597332427],[-120.30845135651329,52.85766726529911],[-120.30857002213347,52.85767302507816],[-120.30868749269321,52.85768772058871],[-120.30880556086812,52.85769794805552],[-120.30890819835365,52.85771192340915],[-120.30902566913706,52.857726618581445],[-120.30914314000142,52.85774131363608],[-120.30926016283124,52.8577593595194],[-120.30936220313666,52.85777780240449],[-120.30947982362417,52.85779138013989],[-120.30959669737064,52.857810542669945],[-120.30969993282862,52.85782004940122],[-120.30981740418268,52.85783474378087],[-120.30993487561769,52.8578494380431],[-120.31005234713365,52.85786413218772],[-120.31016981873056,52.857878826214765],[-120.31027126233182,52.85790173624166],[-120.31037098799636,52.857937495957785],[-120.31047026700018,52.857976597603106],[-120.31055478690094,52.85801442542641],[-120.31065331837574,52.858059120768836],[-120.31075200058572,52.85810269010754],[-120.31083532633086,52.85814945359589],[-120.31091917431614,52.858192312048175],[-120.31101890239809,52.858228062271984],[-120.31110170544461,52.8582787394796],[-120.31118436055905,52.85833052467562],[-120.31126768722343,52.85837728785077],[-120.3113510140706,52.85842405096538],[-120.31144917463108,52.85847153362157],[-120.31153287455157,52.85851550861138],[-120.3116162772133,52.85856170857373],[-120.3117143631335,52.85860975396443],[-120.31179821410169,52.85865260284111],[-120.31188213929438,52.85869489763223],[-120.31198067373253,52.858739591842394],[-120.31206392801565,52.858786908465284],[-120.31214733058908,52.858833116978595],[-120.31224601611648,52.8588766850415],[-120.31234462660078,52.8589208159809],[-120.3124290007424,52.85895975941879],[-120.31251233000113,52.85900652169271],[-120.31259506228646,52.859057751847935],[-120.31267779477056,52.85910898194318],[-120.31276112459368,52.859155744036315],[-120.31285921316999,52.859203788453435],[-120.31295954236423,52.85923506906482],[-120.31306039358012,52.85926244460741],[-120.31317682514322,52.859284954516546],[-120.31329489881671,52.859295177462364],[-120.31339933284376,52.8592957450455],[-120.31350749852311,52.85926838787513],[-120.3135604329011,52.85920744061869],[-120.31355477943836,52.85913802214176],[-120.31351915872321,52.85906940789542],[-120.31343739613669,52.859010913510794],[-120.3133695707005,52.858959849281185],[-120.31328616655487,52.85891364163898],[-120.31320291066827,52.858866325885735],[-120.31313650444305,52.85880464567851],[-120.31305325012947,52.858757320880066],[-120.31297044264045,52.858706653998745],[-120.31288718870248,52.858659329079856],[-120.31280393375502,52.85861201303636],[-120.31272068018657,52.85856468799667],[-120.31263735156273,52.85851792585746],[-120.3125392636196,52.858469890170205],[-120.31245586133186,52.858423681924386],[-120.31237260732301,52.85837636556832],[-120.3122898025767,52.85832568925926],[-120.31222197960449,52.85827462434521],[-120.31213917523473,52.858223947926824],[-120.31205704231478,52.85816824948217],[-120.31197371519325,52.858121486860554],[-120.311889865093,52.8580786380949],[-120.31180765872271,52.85802349349545],[-120.31175608918666,52.857962532030385],[-120.31170511703128,52.857897102599765],[-120.31166890309255,52.85783295567946],[-120.31160257594763,52.857770711604445],[-120.31155160425705,52.8577052820994],[-120.31149943822061,52.85764878844979],[-120.31144846683398,52.85758335889493],[-120.31141210423307,52.85752032886781],[-120.31139236789065,52.85744460568047],[-120.31138604567668,52.85738021792279],[-120.3113808427452,52.85730745724165],[-120.31137579034058,52.85723357063589],[-120.31136991612652,52.85716583191309],[-120.31136434055995,52.85709585921649],[-120.3113733734703,52.85702828607478],[-120.31136809654372,52.856956079401634],[-120.3113630442028,52.85688219277891],[-120.31135672211651,52.856817804996695],[-120.31135159455768,52.85674448132768],[-120.31134579450887,52.85667618855788],[-120.31132531210632,52.85660605024669],[-120.31131973668613,52.856536077523316],[-120.3112992531992,52.85646594813732],[-120.31129345446661,52.85639764641699],[-120.31127364360006,52.856322486116746],[-120.31126724647744,52.85625866126771],[-120.31126219439388,52.85618477460808],[-120.31125646981852,52.856115918848836],[-120.31126617519939,52.856043314769074],[-120.31126089857615,52.855971108046134],[-120.31128454067586,52.855905925499286],[-120.31129394733748,52.85583555537968],[-120.31131766336975,52.85576981879537],[-120.31134190251161,52.85570016828387],[-120.31136606751691,52.855631071789546],[-120.31140506376761,52.85556270383203],[-120.31144406108773,52.85549432692277],[-120.31148231056099,52.85543154386635],[-120.31152115833308,52.855364283912444],[-120.31156000478825,52.85529703287867],[-120.31159915091875,52.855227538919564],[-120.3116226427884,52.855163473260866],[-120.31164680584038,52.855094385621264],[-120.31168580234471,52.85502600861148],[-120.31170996521651,52.85495692095279],[-120.31173360606768,52.854891738273714],[-120.31177245295179,52.8548244782137],[-120.31181137376345,52.85475666411222],[-120.31186430496551,52.85469571744587],[-120.31191798366712,52.85462917687891],[-120.31195630690902,52.85456583067199],[-120.31200923766716,52.854504883932925],[-120.31204823305143,52.85443650677733],[-120.31208707783044,52.854369255529804],[-120.31212592368122,52.85430199533072],[-120.31216424632031,52.85423864904285],[-120.31221777350261,52.854173234243966],[-120.31227085387435,52.85411116144755],[-120.31230917612667,52.85404781510478],[-120.31236270284721,52.853982400231935],[-120.31241555825977,52.85392200731377],[-120.31246863803098,52.85385993441815],[-120.3125216424143,52.8537984244586],[-120.31258873219527,52.853743218878925],[-120.31265701595154,52.85367907734454],[-120.31272335903623,52.85362945663055],[-120.31280520491156,52.85357553332562],[-120.312886976546,52.85352216398866],[-120.31296822616383,52.853472699589595],[-120.31304984813971,52.85342044712579],[-120.31313169320119,52.85336652358627],[-120.31319803524744,52.85331690259447],[-120.31326572040022,52.8532572286502],[-120.31331872288506,52.853195718307624],[-120.31337165119,52.853134761966075],[-120.3134106419434,52.85306639323494],[-120.31344888753843,52.853003600505865],[-120.31347304640859,52.85293451239622],[-120.31351263498374,52.8528616667229],[-120.31355087905108,52.852798882888415],[-120.31360395577228,52.85273680943585],[-120.31367096726622,52.85268216616466],[-120.31375273610458,52.85262879619502],[-120.31379098080357,52.85256600333729],[-120.31382989634496,52.85249818847015],[-120.31386881176259,52.85243037358725],[-120.3139225585045,52.85236327798119],[-120.31397481278483,52.852307352267204],[-120.31404249524877,52.8522476778373],[-120.31411017752333,52.85218800336619],[-120.31417726271509,52.8521327968232],[-120.31424494461879,52.85207312227005],[-120.31431128335814,52.852023500608944],[-120.31437881568338,52.85196494296729],[-120.31444590017661,52.85190973626302],[-120.3145135813505,52.85185006154669],[-120.31458066548859,52.85179485476154],[-120.314647749453,52.851739647936185],[-120.31471602690533,52.8516755051238],[-120.31476902533309,52.85161399406529],[-120.31482202360796,52.85155248298051],[-120.31487494653176,52.851491534834274],[-120.31492779530049,52.851431140690686],[-120.31499562424004,52.85137034868479],[-120.31504914467398,52.85130492354123],[-120.31510214216087,52.851243412318],[-120.31516997055338,52.85118262020422],[-120.31522281852163,52.85112222591621],[-120.31527574033888,52.85106127757276],[-120.3153440157609,52.850997134367866],[-120.31541109748267,52.85094192707865],[-120.31547758229097,52.850891187728855],[-120.31555942062344,52.85083725347586],[-120.31564043766039,52.850789467105365],[-120.3157209317958,52.85074559462898],[-120.31581610868601,52.85070354921008],[-120.31592559357864,52.850666136706046],[-120.31602024739871,52.850628005072295],[-120.31611490104956,52.85058987336136],[-120.31620992684604,52.85054895355116],[-120.31630525197743,52.8505057907347],[-120.3164005757226,52.850462636775696],[-120.31648106965262,52.85041875483355],[-120.31657624387101,52.85037671772611],[-120.31667156824676,52.85033355460774],[-120.31675191131174,52.85029079840918],[-120.31684723531771,52.850247635145976],[-120.3169424839621,52.850205034770696],[-120.31703832898242,52.850157966327735],[-120.31713357723572,52.85011536579514],[-120.31721399459146,52.850072046308],[-120.31732340147367,52.85003519545318],[-120.31741797867504,52.84999761670915],[-120.31751195800294,52.84996451481646],[-120.31762069388375,52.84993268570592],[-120.31772950476004,52.84990029352689],[-120.31782340966825,52.84986774541428],[-120.31793221903199,52.84983536198212],[-120.3180408803094,52.84980408651154],[-120.31813493387968,52.84977042114903],[-120.31824299721602,52.8497436224223],[-120.31833697653691,52.84971051092843],[-120.31844571115458,52.849678681049234],[-120.31855451956356,52.84964629703689],[-120.31864842328307,52.84961374825965],[-120.31875723256528,52.84958135512221],[-120.3188659665401,52.8495495248515],[-120.31895919831207,52.84952200679247],[-120.3190686034684,52.849485145363744],[-120.31917748604864,52.849452197802215],[-120.31927071740692,52.84942467949437],[-120.31937952573425,52.84939228577674],[-120.3194882587627,52.84936045492628],[-120.3195821611404,52.84932790539689],[-120.31969037151552,52.84929998833018],[-120.31979962640443,52.84926424321685],[-120.31989367739627,52.849230576434934],[-120.32000173825998,52.84920377608149],[-120.32009631125821,52.84916619516162],[-120.3202051922305,52.84913324664109],[-120.3202990184385,52.84910125950303],[-120.3204078251599,52.849068864826464],[-120.32051730182917,52.849031448004894],[-120.32061112757921,52.84899946061554],[-120.3207199338039,52.84896706564785],[-120.3208139834141,52.848933398122774],[-120.3209232352302,52.848897660892305],[-120.32101721060664,52.8488645472367],[-120.32112609009758,52.84883159785642],[-120.32121991495153,52.848799609976794],[-120.32132872020406,52.84876721444125],[-120.32142261987137,52.84873466342852],[-120.32153075362362,52.84870729869034],[-120.32163940819665,52.84867602880526],[-120.32174702071185,52.84865256891392],[-120.32185500503782,52.8486263208803],[-120.32196328724513,52.848597838737504],[-120.3220707491887,52.8485755044893],[-120.32217932912552,52.84854478813664],[-120.3222869410127,52.848521327748905],[-120.32239507366961,52.84849396221152],[-120.32248897192167,52.84846141034084],[-120.32259702920615,52.84843460758727],[-120.3227058324818,52.84840221076886],[-120.32281470948827,52.848369259813985],[-120.3229085320589,52.848337270576444],[-120.32301733484971,52.84830487346754],[-120.32311197709015,52.848266736063664],[-120.32320699099863,52.84822581053415],[-120.32330170797529,52.84818711000418],[-120.32339701946036,52.84814395030542],[-120.3234498520154,52.84808355220086],[-120.32351758959979,52.84802330918189],[-120.32359807041315,52.84797943123224],[-120.3236932333665,52.84793737935874],[-120.32380270424989,52.84789995944891],[-120.3239119509151,52.84786421941579],[-120.32400465501547,52.84784060238261],[-120.32412694521399,52.84781897532703],[-120.32423254284708,52.847810597222825],[-120.3243535662438,52.847798468968335],[-120.32447295124751,52.84779862768244],[-120.32457854876228,52.84779024926705],[-120.32469838054183,52.84778705672622],[-120.3248164251487,52.84779726817018],[-120.32493506551822,52.84780301145924],[-120.32505251453199,52.84781769070205],[-120.32515572924783,52.84782718391513],[-120.32527690134675,52.84781393770029],[-120.3253830944007,52.847801090523944],[-120.32550538259575,52.847779470969044],[-120.32561217112975,52.84776215554616],[-120.32572029972887,52.84773478693497],[-120.32581501333499,52.8476960843667],[-120.32590942777702,52.847659624678066],[-120.32601822656012,52.84762722477601],[-120.32611346019374,52.84758461689552],[-120.32620742745702,52.84755150799689],[-120.32630273577298,52.847508336987424],[-120.32639714938261,52.847471876902375],[-120.32649305286634,52.84742423769162],[-120.32657420005384,52.84737532666742],[-120.32665527201983,52.847326978559465],[-120.32672292884143,52.84726729663751],[-120.32678998997021,52.84721208272158],[-120.32684296544127,52.84715056604353],[-120.32689661128201,52.847084018316906],[-120.3269207450192,52.847014927184006],[-120.32694435822546,52.846949741117704],[-120.32696923735047,52.84687505597153],[-120.32699270153606,52.84681098690217],[-120.32700215411775,52.8467400610828],[-120.3269964804331,52.846670642705305],[-120.32694445630746,52.84661303850578],[-120.32689347441854,52.846547615194034],[-120.32682706757566,52.846485942242694],[-120.3267915111098,52.846416768496105],[-120.3267245091196,52.84635956353137],[-120.32665653901823,52.84630962357434],[-120.32655786903862,52.84626605833082],[-120.3264592731056,52.84622193896518],[-120.32637483631424,52.846183568261274],[-120.3262756452187,52.84614391678743],[-120.32617652934718,52.84610370225491],[-120.32604849800349,52.846056475991084],[-120.32594819139919,52.84602519735755],[-120.32584736320933,52.84599783264599],[-120.32573140792574,52.845971984067276],[-120.32563058000068,52.84594461916876],[-120.32551551842158,52.84591206830836],[-120.32541402009824,52.84588973424113],[-120.32529702299912,52.84587170430909],[-120.32519500428673,52.8458532751222],[-120.32507756063245,52.84583859600351],[-120.32496011705896,52.84582391676736],[-120.32484088650199,52.84582264153774],[-120.32473529390937,52.84583102019937],[-120.32461546762724,52.84583421278181],[-120.32449504560245,52.84584187328166],[-120.32437514540042,52.84584561965587],[-120.32427014840798,52.84584952986036],[-120.32415091780004,52.84584825393054],[-120.32403228297257,52.845842509842505],[-120.3239877949205,52.84584035577857],[-120.32391364817701,52.8458367656346],[-120.32381043855351,52.84582727131828],[-120.32369299544727,52.84581259081525],[-120.32357495660129,52.84580237822958],[-120.32345751364463,52.845787697490934],[-120.32335653865316,52.84576144764612],[-120.32327329726638,52.84571413863358],[-120.32320637617573,52.84565636866453],[-120.3231859534501,52.845585677895365],[-120.32318073183077,52.84551291719343],[-120.32327544280776,52.845474216617916],[-120.32338416294233,52.845442382082716],[-120.32349161619311,52.84542004649001],[-120.3235997402161,52.84539267978991],[-120.32369355684311,52.84536068092894],[-120.32380302111395,52.84532326095756],[-120.32389825181662,52.84528065481036],[-120.32399229079103,52.84524698466214],[-120.32410153050337,52.84521124439251],[-120.32419489954475,52.84518259615707],[-120.32430436291887,52.84514517571424],[-120.32438468856162,52.84510241415559],[-120.32448058896586,52.8450547765159],[-120.32457581839243,52.84501216981211],[-120.32467045193457,52.844974031072994],[-120.32476560593514,52.84493198718664],[-120.32484608082417,52.84488809935969],[-120.32494130951366,52.84484549235515],[-120.3250365380129,52.84480288527227],[-120.32513117067887,52.8447647461569],[-120.32522624990013,52.84472325592946],[-120.3253344449012,52.844695333582905],[-120.32542833254914,52.84466277928451],[-120.32553771965323,52.844625911718055],[-120.32563227643442,52.84458833516878],[-120.3257410675951,52.84455593546018],[-120.32583629464922,52.8445133277212],[-120.32591669260682,52.844470002123465],[-120.32599775979669,52.844421654379985],[-120.32607897687848,52.844372180630046],[-120.32617479871266,52.844325104559765],[-120.32625586533463,52.844276756633626],[-120.32633693296387,52.844228399714076],[-120.32643290306513,52.844180206415544],[-120.32649914032095,52.84413114060003],[-120.32656679229257,52.84407145864665],[-120.32663384859967,52.84401624470768],[-120.32670150020063,52.843956562672375],[-120.32676915161228,52.84389688059594],[-120.32680736932346,52.84383408315433],[-120.32686108488484,52.84376698126449],[-120.32691398094966,52.84370602739493],[-120.32695279371336,52.84363876184025],[-120.32700576451238,52.84357724494899],[-120.32704457582335,52.84350998829456],[-120.3270976213529,52.8434479083814],[-120.32713635857009,52.84338120573058],[-120.3271893287846,52.843319688746476],[-120.32725705233342,52.84325945232534],[-120.32730927798131,52.84320352035872],[-120.32737752273378,52.84313936984186],[-120.32745880960093,52.843089341057826],[-120.32752638475229,52.843030212552115],[-120.32759343818078,52.84297499802885],[-120.3276462583934,52.842914597838714],[-120.3276993011164,52.84285252656646],[-120.32775219604048,52.8427915633479],[-120.32780531346852,52.84272892904677],[-120.32785813307649,52.84266852875195],[-120.32791162167665,52.84260310632471],[-120.32797926924914,52.84254342349986],[-120.32804632132641,52.84248820870101],[-120.3281139685283,52.84242852579429],[-120.32816678732738,52.84236812534907],[-120.32822042508941,52.84230157681561],[-120.32824395869554,52.842236953269435],[-120.32828291684493,52.84216857019514],[-120.32829169716408,52.842102666172565],[-120.32831664491746,52.84202742647012],[-120.32832594542091,52.841957617345926],[-120.32834970249743,52.84189131377004],[-120.32835915292364,52.84182037868331],[-120.32836815568139,52.84175280358195],[-120.32834824772213,52.84167819950457],[-120.32832722311672,52.84161197752158],[-120.32832214203141,52.841538099846595],[-120.3283010437227,52.841472431893884],[-120.32829529362176,52.84140357632347],[-120.32828961735217,52.841334166708954],[-120.3282997368298,52.84125820948919],[-120.32832327093075,52.841193576947965],[-120.32834687877211,52.84112839035848],[-120.32837160204373,52.84105483059298],[-120.32840981485033,52.84099203251645],[-120.32846344931276,52.840925492749776],[-120.32850166186834,52.840862694638076],[-120.32853994812004,52.840799342470305],[-120.3285647458667,52.84072521967137],[-120.32858835307995,52.84066003301379],[-120.3286124804436,52.84059094125098],[-120.32863675772374,52.840520723525096],[-120.32867556368306,52.84045346620092],[-120.32871392430536,52.84038955098219],[-120.32875273002375,52.84032229362697],[-120.32879168560937,52.840253910300575],[-120.32883049108179,52.84018665291375],[-120.32886914882553,52.840120503594655],[-120.32889290403493,52.84005419983123],[-120.32887247456905,52.83998350979884],[-120.3288209024565,52.83992255512616],[-120.32875353535171,52.83986814809935],[-120.32867074707181,52.83981748273901],[-120.32860278511467,52.839767543700155],[-120.32852118764428,52.83970794207549],[-120.32846902114458,52.83965145531517],[-120.32841864046303,52.83958156429801],[-120.32841303923368,52.83951159163109],[-120.32845124940665,52.839448802415426],[-120.32848990706985,52.839382653190015],[-120.3285430191709,52.83932001841929],[-120.32858167538468,52.83925387809434],[-120.32862063026896,52.8391854947781],[-120.32865958383798,52.83911712038203],[-120.3286979432827,52.839053205114254],[-120.32872199575715,52.83898466730007],[-120.32877570220194,52.838917564327545],[-120.32881376251548,52.83885589199041],[-120.32885197270187,52.83879309368207],[-120.32890508353749,52.83873045872402],[-120.32895916075236,52.838660567573335],[-120.32901197369033,52.83860016660312],[-120.32907976216262,52.8385393659716],[-120.32911797167402,52.83847656756389],[-120.3291567750156,52.838409309993175],[-120.32918045502922,52.838343560141816],[-120.32918997708425,52.83827207078532],[-120.32921358198493,52.838206883900256],[-120.3292383770546,52.838132760836615],[-120.3292478239806,52.83806183444471],[-120.32927142867658,52.83799664753928],[-120.32929570339614,52.83792642956103],[-120.3293339108506,52.83786363999478],[-120.32937286325995,52.83779525636846],[-120.3294262696364,52.83773038709132],[-120.32947855946396,52.83767389992031],[-120.32954619702949,52.83761421600569],[-120.32962799211035,52.83756027149888],[-120.32970837311592,52.837516943114345],[-120.32980424933655,52.837469309834844],[-120.32988530000999,52.83742095025682],[-120.3299804320272,52.83737890194444],[-120.33007571380236,52.83733572759455],[-120.33018381311526,52.837308354693725],[-120.33029124232135,52.837286012766015],[-120.33039874638325,52.83726310775994],[-120.330506771528,52.83723628860424],[-120.33061368038535,52.837217851495254],[-120.33072177905444,52.837190478097234],[-120.33082920768204,52.837168135675775],[-120.33093790101556,52.837136293981644],[-120.33104652041715,52.837105006230296],[-120.33114053573111,52.837071330184834],[-120.33124915362896,52.83704005118105],[-120.33134368975846,52.83700246091691],[-120.33145253100408,52.83696950171825],[-120.33154706560839,52.836931920224934],[-120.33164160123587,52.83689432971844],[-120.3317509618653,52.83685746512039],[-120.3318454971482,52.83681987444799],[-120.33194010602202,52.83678172965377],[-120.33203463978083,52.8367441477636],[-120.33214400087536,52.836707273859844],[-120.33219636079467,52.83665022246097],[-120.33220632350968,52.83657538170413],[-120.33219997297894,52.836510994215196],[-120.33214906885644,52.83644501871852],[-120.33212856196968,52.83637488313476],[-120.33210812890484,52.836304193499245],[-120.3321177193538,52.8362321497675],[-120.33212656747187,52.836165682227666],[-120.33215076150799,52.836096026558735],[-120.33215953460343,52.836030121991975],[-120.33218439704343,52.8359554441584],[-120.33222274836582,52.83589152761055],[-120.33226154446254,52.835824268903174],[-120.33230049031816,52.835755884217],[-120.33233928616899,52.83568862547815],[-120.33236281107915,52.83562399189825],[-120.33240168165075,52.835556170151406],[-120.33244003109928,52.835492262452526],[-120.33247882767996,52.83542499472007],[-120.3325176978859,52.83535717292629],[-120.33257057544458,52.83529621618298],[-120.33260937164123,52.83522894839904],[-120.33266247252497,52.835166311599735],[-120.33270111859031,52.83510016974392],[-120.33275414543519,52.835038086943854],[-120.3327865887412,52.834906440501165],[-120.33281145061846,52.834831753545075],[-120.33284972505997,52.834768399728944],[-120.33290267634554,52.83470687983092],[-120.33295622216092,52.83464089179243],[-120.33300902446568,52.83458048887011],[-120.33307613126021,52.83452471687369],[-120.33312893325149,52.83446431389297],[-120.33319715527742,52.834400159637795],[-120.33326418780634,52.83434494157399],[-120.33333114642662,52.834290277516416],[-120.33341166616928,52.83424582947775],[-120.33350753090592,52.83419819307595],[-120.33360339661773,52.83415054765818],[-120.33368436176218,52.834102748339255],[-120.33376540045435,52.8340543949162],[-120.33383243170476,52.833999176515746],[-120.33390005735558,52.83393948995403],[-120.33396708825124,52.83388427147271],[-120.3340198881888,52.833823868066844],[-120.3340441527206,52.8337536489203],[-120.33405366560291,52.833682158960336],[-120.33404842690908,52.83360939819028],[-120.33404274350727,52.83353997957258],[-120.3340369852103,52.83347112393512],[-120.33403182148443,52.83339780017089],[-120.33402539375851,52.83333397563363],[-120.33402030498266,52.83326008887892],[-120.33401454675966,52.83319123322804],[-120.33400878855524,52.83312237757381],[-120.33400355000666,52.83304961677568],[-120.33399779183908,52.83298076111467],[-120.3339772835786,52.83291062569855],[-120.33395677419644,52.83284049921198],[-120.33395064513195,52.83277443164933],[-120.33393065668778,52.832700391074596],[-120.33393957497404,52.83263336920072],[-120.33397903486181,52.83256107867709],[-120.3340167109917,52.83250219251429],[-120.33407032604019,52.83243564982725],[-120.33412319894984,52.83237468333499],[-120.33416206376376,52.832306860864826],[-120.3341866981795,52.832233853509294],[-120.3341815343461,52.83216052969381],[-120.3341283291628,52.832111864398506],[-120.33401374430268,52.83207597047894],[-120.33391338981038,52.83204526135174],[-120.33381370374353,52.83200952996432],[-120.3337145386833,52.83196988441336],[-120.33363131390622,52.83192257338847],[-120.33353207429997,52.831883490665035],[-120.33343231520068,52.831848312997685],[-120.33333203658228,52.83181704038558],[-120.3332312372291,52.83178968176365],[-120.33311605936325,52.83175825508478],[-120.33304810503928,52.8317083183611],[-120.33298074670192,52.83165390453729],[-120.33289908370602,52.83159486862873],[-120.33283231920068,52.831535995529066],[-120.33274954224298,52.83148533277409],[-120.33266453428644,52.8314514343529],[-120.33256485184184,52.83141569295565],[-120.33245041883863,52.83137868046442],[-120.33234947241114,52.831352438108354],[-120.33224912081803,52.831321727544804],[-120.33213230945299,52.831302587222545],[-120.33201549819272,52.83128344678395],[-120.33191403126189,52.831261118124345],[-120.33179722021303,52.83124197746808],[-120.3316956797439,52.83122020266595],[-120.331578868905,52.83120106179197],[-120.33146265296149,52.83117745268494],[-120.33136126151682,52.83115456056363],[-120.33124437725081,52.831135973402525],[-120.3311429860218,52.83111308109212],[-120.33102558088888,52.83109840778186],[-120.33090817583671,52.83108373435402],[-120.33079017600583,52.83107352892221],[-120.33068759542898,52.83105957244486],[-120.33057123164342,52.83103707948177],[-120.33045501670398,52.83101346937519],[-120.33035407236748,52.83098722529776],[-120.33025327688372,52.830959864105346],[-120.3301381772215,52.83092788044348],[-120.33003782821824,52.83089716798202],[-120.32993874421408,52.83085695623272],[-120.32985426092185,52.8308191416993],[-120.3297556223047,52.830775587647466],[-120.32967195801716,52.83073162486258],[-120.32957384099213,52.83068415659215],[-120.3294905483446,52.830637405575644],[-120.32940725587953,52.83059065449865],[-120.32932403737767,52.830543349315874],[-120.32922540112918,52.83049978587479],[-120.32914158798266,52.830456948667326],[-120.32905837122608,52.830409634356066],[-120.32895966058265,52.83036663366947],[-120.3288758479644,52.83032379626876],[-120.3287773614457,52.830279115418634],[-120.32869347539399,52.8302368319305],[-120.3285948393075,52.83019327688739],[-120.32851117735741,52.83014931325914],[-120.32842840702943,52.83009865634975],[-120.32834519176227,52.830051341522186],[-120.32826242182134,52.83000068449263],[-120.32817980204645,52.829948901440964],[-120.32811230272266,52.82989561072574],[-120.3280459200307,52.82983393780834],[-120.32799391501375,52.82977633345499],[-120.32794295162995,52.82971090989622],[-120.32789198840243,52.82964548631256],[-120.32783983503599,52.82958899890979],[-120.32778887211212,52.8295235752763],[-120.3277379093445,52.82945815161791],[-120.32770221679971,52.8293900944214],[-120.32766600419698,52.829325942332886],[-120.3276002182044,52.82925980103819],[-120.32754813949691,52.82920275944714],[-120.3274807921272,52.82914834238166],[-120.32739914153453,52.82908930255415],[-120.32731473779619,52.829050932106306],[-120.32721618085363,52.82900681289141],[-120.32713237384647,52.82896396527286],[-120.32703433751797,52.82891594078244],[-120.32695053087185,52.82887309303168],[-120.32686724463285,52.828826340100434],[-120.32676920891885,52.82877831538437],[-120.32668540280918,52.82873546744059],[-120.32658677224222,52.828691910669086],[-120.3265029664854,52.82864906259273],[-120.32640322074135,52.82861387888183],[-120.32628478234456,52.82860701998081],[-120.32616619515855,52.82860127798442],[-120.32604805449554,52.828592184795895],[-120.3259436954377,52.8285916284425],[-120.32582570368496,52.82858141800629],[-120.32570830734534,52.82856673935638],[-120.32559076224432,52.82855317761252],[-120.32548878480547,52.82853474847719],[-120.32542211032903,52.82847530806989],[-120.32533979345945,52.82842129785885],[-120.32527304553827,52.828362411406275],[-120.32522089720631,52.828305922794016],[-120.32515526542808,52.828238663063125],[-120.3251032662569,52.82818105737084],[-120.32505171379046,52.82812010058369],[-120.3249853382832,52.8280584258662],[-120.32493385996665,52.827996914979025],[-120.32488290339886,52.82793149001775],[-120.32490658418317,52.82786574058773],[-120.32494538451401,52.827798483952286],[-120.32499826471364,52.82773752138774],[-120.3250652973854,52.827682307768434],[-120.32514692905316,52.82762949199958],[-120.32516346446711,52.82761735964383],[-120.32522811516489,52.82758001830749],[-120.32532330485228,52.827537410522574],[-120.32540367135046,52.827494084806446],[-120.3254988606709,52.82745147687685],[-120.32559345444878,52.82741333696654],[-120.32570264717212,52.8273775948012],[-120.32579657145293,52.82734447686819],[-120.3259059876697,52.82730705450689],[-120.3259997616198,52.82727506237105],[-120.32609442956652,52.82723635907223],[-120.32619013790335,52.827189845454996],[-120.32627191724713,52.8271359029259],[-120.32633894732615,52.827080688558276],[-120.32640597723174,52.827025474150396],[-120.32645885319673,52.82696451983414],[-120.32652647801258,52.82690483724985],[-120.32659350739937,52.826849622728716],[-120.32666113184489,52.82678994006246],[-120.3267280870692,52.82673527950545],[-120.32679511592887,52.82668006486327],[-120.32687726494042,52.82662333379671],[-120.32694369823184,52.8265725871723],[-120.3270260694401,52.82651418492569],[-120.32709309756703,52.82645897010554],[-120.32714530287102,52.826403037611676],[-120.32719817819927,52.82634207400204],[-120.32725187113061,52.82627497118395],[-120.3272906663193,52.82620771370495],[-120.32734368998581,52.82614563299461],[-120.32738248491228,52.826078375479774],[-120.32742128090672,52.826011109013024],[-120.32747497307089,52.82594400607858],[-120.32751302369448,52.8258823336514],[-120.32756664175707,52.825815784715516],[-120.32761884565376,52.82575985198803],[-120.3276858718291,52.825704636802826],[-120.32776764524633,52.82565070211688],[-120.32784934466558,52.82559732141833],[-120.32793052377896,52.82554784579345],[-120.3279972516811,52.82549486448047],[-120.32809325157059,52.82544611520257],[-120.32815953281985,52.82539648488102],[-120.32824130623817,52.82534254091833],[-120.32832359951222,52.825284691762036],[-120.32838988024295,52.825235061305385],[-120.3284715031158,52.82518224314255],[-120.32855268071846,52.82513276707445],[-120.3286337831627,52.825083853931666],[-120.3287006582149,52.82502975517331],[-120.32878242905669,52.824975819757235],[-120.32886353093939,52.824926906450926],[-120.32893048042041,52.82487224457278],[-120.32901277185356,52.82481439491607],[-120.3290790510525,52.82476476405539],[-120.32916149081237,52.82470579725964],[-120.32922784344152,52.82465561226421],[-120.32932369249684,52.8246079700488],[-120.32940464433182,52.824560173388406],[-120.32948626465817,52.82450735449731],[-120.32956743980088,52.82445787770616],[-120.32964794491356,52.82441343196824],[-120.32972956465822,52.82436061290308],[-120.3298112591542,52.824307230795284],[-120.32989243353956,52.82425775377318],[-120.329959305702,52.82420365426927],[-120.33004159445157,52.82414580386668],[-120.33010802012436,52.82409505537142],[-120.33017563529091,52.82403537057584],[-120.33022842841032,52.82397496849363],[-120.33028211359967,52.823907864188065],[-120.33033557497302,52.82384243987269],[-120.33035924508886,52.82377668917101],[-120.33036801841837,52.82371078421845],[-120.33037768391952,52.82363817706338],[-120.33037185792645,52.82356988379446],[-120.33035188000115,52.82349584217412],[-120.33033093618846,52.8234290567952],[-120.33030991749624,52.82336283439449],[-120.33027415100206,52.82329534069861],[-120.33023912932042,52.82322225288621],[-120.33018698069627,52.82316576629327],[-120.33010489168983,52.823110079220676],[-120.33002168699988,52.82306277430557],[-120.32992143152157,52.82303149860503],[-120.32980568487682,52.82300453663544],[-120.32970475988097,52.82297829186523],[-120.3295879724911,52.82295914890989],[-120.32948719645704,52.822931786919156],[-120.32937092922965,52.82290873860142],[-120.32926955854924,52.822885844552836],[-120.3291532177949,52.822863350066896],[-120.32903702589525,52.82283973843337],[-120.32892023918397,52.82282059481214],[-120.32880285762522,52.82280591920176],[-120.3287020086809,52.82277911058213],[-120.32861754247324,52.82274129496328],[-120.32853493512947,52.82268952085683],[-120.32846759677871,52.822635104129965],[-120.3283853622879,52.82258053286777],[-120.32831802310977,52.822526124987654],[-120.32825180033338,52.822463334863805],[-120.32818431394756,52.82241003499804],[-120.3281176452847,52.822350595887926],[-120.32805075307857,52.82229283675251],[-120.32798341597092,52.822238419734155],[-120.32790192666089,52.82217826296348],[-120.3278344399726,52.82212497182306],[-120.32775124090942,52.82207765633278],[-120.32766685071975,52.822039285965595],[-120.32755289340619,52.82199891738695],[-120.32745264223574,52.82196763955717],[-120.3273529113226,52.821932456502246],[-120.32725377567571,52.8218928052399],[-120.3271687911886,52.8218589026322],[-120.3270703259886,52.821814220108074],[-120.3269710420964,52.82177568563429],[-120.32687198096565,52.82173547999865],[-120.3267722510736,52.821700296445215],[-120.32668801248984,52.821660799399],[-120.32658872929966,52.821622264598076],[-120.32647365756316,52.82159027715321],[-120.32635992636851,52.82154822739245],[-120.32626012234078,52.821513606382624],[-120.32617692621449,52.82146628975834],[-120.32610899639442,52.82141634869012],[-120.32601112854934,52.82136719714737],[-120.3259277829858,52.821321006307514],[-120.3258445876033,52.82127368944172],[-120.32574590132539,52.821230685801936],[-120.32566270513006,52.821183377740766],[-120.32558010557604,52.82113159256737],[-120.32549735621335,52.821080933299164],[-120.32541356649351,52.82103808423619],[-120.32531383943305,52.821002899428265],[-120.32521463283123,52.82096380940299],[-120.32513143893549,52.82091649202101],[-120.32504764871514,52.82087365162853],[-120.32494911299709,52.820829530279504],[-120.32484946181935,52.82079378209013],[-120.32476730932468,52.820738654183394],[-120.32469938350259,52.820688703340124],[-120.32460181543925,52.820637325479616],[-120.32451862285919,52.82059000765348],[-120.3244506963739,52.820540065597726],[-120.32436854607334,52.82048492846678],[-120.32430129034056,52.82042995522774],[-120.32424974838078,52.82036899778544],[-120.32419880196765,52.82030357220714],[-120.32414726030689,52.82024261471483],[-120.32406451436809,52.82019195440783],[-120.32402824001376,52.820128363801075],[-120.32400849857929,52.8200526409286],[-120.32397222442678,52.81998905029878],[-120.32392179929231,52.81991971945526],[-120.32388612080779,52.81985166068251],[-120.32386504004273,52.81978599102197],[-120.32384410700882,52.819719213263284],[-120.32380850384008,52.81965059147618],[-120.32378801753525,52.81958046261841],[-120.32376708591347,52.819513675901],[-120.32373125915593,52.81944673409128],[-120.3236650479041,52.819383941256376],[-120.32359764594983,52.819330084603095],[-120.32353076459331,52.81927232278068],[-120.323464033474,52.81921343495413],[-120.32339737637673,52.819153993041816],[-120.32332870914627,52.81910963542877],[-120.32321253068643,52.81908601797443],[-120.32309575685767,52.81906686851381],[-120.32299320765088,52.81905290520795],[-120.32287643401108,52.81903375552869],[-120.32275727834688,52.81903247816247],[-120.32263812268984,52.81903120067533],[-120.32253371320233,52.819031195333395],[-120.32241396198712,52.81903438572499],[-120.32229540191592,52.81902863978436],[-120.3221762462834,52.81902736182854],[-120.322057090658,52.81902608375174],[-120.32195335065619,52.819021055744905],[-120.32183419505508,52.8190197774418],[-120.32171444381962,52.81902296711994],[-120.32159647952813,52.819012752371385],[-120.32149452660605,52.81899431965456],[-120.32137760487981,52.818976285508974],[-120.32125964079795,52.81896607042174],[-120.32114227247301,52.8189513871165],[-120.32104017096592,52.8189340710292],[-120.3209228028045,52.818919387504216],[-120.32080543472381,52.81890470386181],[-120.3207034824014,52.818886270456694],[-120.32058551872959,52.818876054691486],[-120.32049756671296,52.8188644876735],[-120.32046874665377,52.81885690261528],[-120.32035137890107,52.81884221851832],[-120.32024883113179,52.81882825281338],[-120.32013317587466,52.818800727192276],[-120.32003167095164,52.8187789421314],[-120.31991668686818,52.81874638522194],[-120.31981644893234,52.81871510080677],[-120.31971673191278,52.818679911192206],[-120.31961701505762,52.818644721492156],[-120.31951662742193,52.818614562778265],[-120.31941705985334,52.81857825588389],[-120.3193174185643,52.81854250294752],[-120.3192175533854,52.81850842992789],[-120.31911954997474,52.818460398507895],[-120.31903532486598,52.81842089588892],[-120.31893501325402,52.81839017369398],[-120.31881988207036,52.81835873272468],[-120.31871912380052,52.818331361411126],[-120.31860347087607,52.81830383427426],[-120.31850152093966,52.81828539894985],[-120.31838519839928,52.81826289372802],[-120.31828384464471,52.818239990126635],[-120.3181682673447,52.81821189958048],[-120.31806683992217,52.81818954983375],[-120.31795185892489,52.818156990987546],[-120.31785035664586,52.81813520403177],[-120.3177500465581,52.81810448081879],[-120.31763387392081,52.818080857828726],[-120.31753304196306,52.81805404847092],[-120.3174168695831,52.8180304252654],[-120.31729995221991,52.818012387047794],[-120.31719800354254,52.817993950587926],[-120.3170812353997,52.81797479513152],[-120.31697980910967,52.81795244444223],[-120.3168630411783,52.81793328876827],[-120.31674746564367,52.81790519681787],[-120.3166459645781,52.81788340881726],[-120.31652979315344,52.81785978473133],[-120.31642769612856,52.81784246462049],[-120.31631152493611,52.81781884031798],[-120.31619416146779,52.817804152055395],[-120.31609161755252,52.81779018270981],[-120.3159759677887,52.817762652974935],[-120.31587506369073,52.81773639622922],[-120.31577550126782,52.81770008622596],[-120.31567526882398,52.817668798254026],[-120.31557540859633,52.81763472211717],[-120.31547644294007,52.81759394378291],[-120.3153766569855,52.817559313434124],[-120.31527761775344,52.81751908897144],[-120.31517895080175,52.81747607634637],[-120.31509517732337,52.81743322875681],[-120.31499613864904,52.817393004053436],[-120.31489642869167,52.81735781031479],[-120.31476916752963,52.817305539841115],[-120.31442261481023,52.81710828238357],[-120.31410384038047,52.81692642070051],[-120.31375617607989,52.81673753439064],[-120.31337499974516,52.816576250712885],[-120.31297334040747,52.81645669297331],[-120.3125227523497,52.81636848587885],[-120.31206813901673,52.81631043646129],[-120.3116111402787,52.81627025751593],[-120.31113626601267,52.81625225145272],[-120.31068931355793,52.81624853302798],[-120.31021093308676,52.816256777507064],[-120.30974662519732,52.816271324934476],[-120.3092830631221,52.81628028546687],[-120.30881756075414,52.8163037653131],[-120.30835332590722,52.81631775319193],[-120.30788976303548,52.81632670822227],[-120.3074272448933,52.816327842356884],[-120.30696427886572,52.816332325695456],[-120.30652322382446,52.81628446509623],[-120.30628731770828,52.81626400491724],[-120.30606563334415,52.81624873259546],[-120.30582778653238,52.81624279259202],[-120.30560371328764,52.816245391515224],[-120.30536362663096,52.8162562056771],[-120.30513880661519,52.816264388746546],[-120.30489991446014,52.816266265908354],[-120.30467584103572,52.81626886306046],[-120.30443694883526,52.81627073928013],[-120.30421287535921,52.81627333554856],[-120.30397398311341,52.81627521082615],[-120.30373628581646,52.8162681495804],[-120.30351333204176,52.81626237144661],[-120.30327682995795,52.81624637323541],[-120.30305499737372,52.81623221223228],[-120.30282028836866,52.81620280905504],[-120.30260099597297,52.81616965813317],[-120.30238222743712,52.816132592822264],[-120.30214931238896,52.816089784264896],[-120.3019306187658,52.81605216407716],[-120.30171237379787,52.81601119247434],[-120.30147931065461,52.815969499586586],[-120.3012623361401,52.81591903709565],[-120.30106070432757,52.8158653811616],[-120.3008443298138,52.815810440952276],[-120.30062788053377,52.81575606331086],[-120.30041255212878,52.81569331223009],[-120.30022910437408,52.815615238884476],[-120.30006383806918,52.81551275826387],[-120.29991436187666,52.81540374244722],[-120.29977978011219,52.8152948845592],[-120.29961503988747,52.815188489316334],[-120.29946519287735,52.81508226093752],[-120.29929993046957,52.81497977920639],[-120.29911693508181,52.81489836202282],[-120.29891658206941,52.814835203404535],[-120.29869939270064,52.814786407171106],[-120.29846768472024,52.81473465527736],[-120.29825012200506,52.81468865517528],[-120.29803248559944,52.81464320870001],[-120.29781559725853,52.814592176828214],[-120.2976149485578,52.814531249972674],[-120.29743278131807,52.81444368218246],[-120.29731624121317,52.814311531802396],[-120.29724610066768,52.81416701563881],[-120.29732032543238,52.8140582014779],[-120.29753592408075,52.814007429021316],[-120.29777831821703,52.81397931290442],[-120.29800537030556,52.81395438893358],[-120.29823130022805,52.81393784648616],[-120.29847197365535,52.81392257889612],[-120.29869977251062,52.81389206858292],[-120.29891462243094,52.813846869652714],[-120.29913006863282,52.81379721126168],[-120.29934611343833,52.81374307553408],[-120.2995622318337,52.813688385374405],[-120.29976472764827,52.813624037707],[-120.29996804428635,52.8135535506457],[-120.30015706623506,52.8134784282073],[-120.30036157832343,52.813398995504464],[-120.30055074833962,52.813322755422206],[-120.30074021655821,52.81324428102542],[-120.30094420282529,52.81316876127421],[-120.30111974861993,52.81308286328781],[-120.30128197038896,52.812985074090506],[-120.30144538676933,52.81287834862945],[-120.30159338718657,52.81277537008611],[-120.30174138688983,52.81267239134933],[-120.30191961834487,52.81256638605323],[-120.30205294855193,52.812461569078586],[-120.3021301460905,52.81233041165016],[-120.30216393705062,52.81218927274538],[-120.30219765249142,52.812048696789006],[-120.30223151830063,52.81190699486818],[-120.30226456162076,52.81177144092581],[-120.30231301940391,52.8116321397145],[-120.30239081220269,52.81149651401926],[-120.30248267458444,52.81136719404909],[-120.30257431173614,52.81123955397442],[-120.30270912999349,52.811123566096036],[-120.30285719656501,52.81102002287112],[-120.30303340124759,52.810929099838745],[-120.30322375047434,52.810843919266155],[-120.30341342741733,52.81076376044918],[-120.30360243095238,52.81068863232787],[-120.30380684799492,52.81060975645209],[-120.30399659687762,52.81052904264418],[-120.30418686713222,52.81044442346039],[-120.30438881852074,52.810383972747005],[-120.30460364356965,52.81033877223836],[-120.30483194214415,52.810304335951635],[-120.30506106098869,52.810263760129544],[-120.30527394369354,52.81023307952962],[-120.30550216591313,52.81019920491047],[-120.30573061231429,52.810163649861494],[-120.30594551007718,52.810117883916725],[-120.30616212357191,52.81005927640477],[-120.30637888694632,52.809999542542236],[-120.30658008555935,52.80994468204034],[-120.30678389646265,52.809870268993734],[-120.30696001400275,52.80977989403807],[-120.30713635528316,52.80968783882426],[-120.30729914739057,52.809585573042426],[-120.30746126649609,52.80948833806046],[-120.3076232368117,52.8093922109269],[-120.30780024604628,52.80929513259483],[-120.30796161672818,52.80920348197814],[-120.30813914731627,52.80910248910197],[-120.3083013378846,52.809004689953554],[-120.30847752265618,52.80891375863064],[-120.30863956251567,52.80881707601902],[-120.3088170898935,52.808716082092246],[-120.30899275074829,52.80862905506914],[-120.309181735016,52.808553917860685],[-120.30938493796154,52.80848396829967],[-120.30958866181167,52.80841011328958],[-120.30977712250944,52.80833888020623],[-120.30999499034183,52.808270766431804],[-120.3101827026816,52.80820512671903],[-120.31040079353374,52.808135332189266],[-120.31058902732228,52.80806577778618],[-120.3107929714274,52.80799024066884],[-120.3109557483042,52.80788796970356],[-120.31113065565225,52.807806524533994],[-120.31134725030324,52.80774790736592],[-120.31156324900692,52.80769374894278],[-120.31179160179344,52.80765874501859],[-120.31201928254983,52.80762877171382],[-120.31224509960461,52.80761275627018],[-120.31247106560232,52.807595623369956],[-120.31271117690935,52.8075842316329],[-120.31293758986924,52.807563746767165],[-120.31316221348278,52.80755666573949],[-120.31340239833388,52.80754471854472],[-120.31362642544254,52.807542104721456],[-120.31386407579522,52.807549145981625],[-120.3141005336696,52.807565122953314],[-120.31432292114084,52.807574795065875],[-120.3145617642512,52.807572898718206],[-120.31478698385013,52.80756134648226],[-120.3150134696193,52.807540303567365],[-120.31524107355855,52.807510878055105],[-120.31546949746455,52.80747530399027],[-120.31569724977047,52.80744476056629],[-120.31592500175054,52.80741421669965],[-120.31615141226678,52.80739372563203],[-120.31638965824646,52.80739629367177],[-120.31661495032482,52.8073841838814],[-120.31684255232815,52.807354755260576],[-120.31706911107989,52.80733314539416],[-120.31730623998553,52.80734408481562],[-120.31752728621834,52.807363804112974],[-120.31776314854405,52.80738424182216],[-120.31789507575681,52.80740132743855],[-120.31798300345585,52.807412896491634],[-120.31821886627088,52.80743333328443],[-120.31844661638604,52.80740278452457],[-120.31859403489156,52.80730369825801],[-120.31858324609414,52.80716095204256],[-120.31844961032475,52.80704485875535],[-120.31828262104455,52.80695524459781],[-120.31808331851097,52.806884308097345],[-120.31786696761174,52.80682939894689],[-120.31762991650402,52.80681789767202],[-120.31740648936261,52.80681605102265],[-120.31716988541301,52.80680119773196],[-120.31695063016569,52.806768073414894],[-120.31671760260025,52.806726410532214],[-120.31650184908007,52.806667039683674],[-120.31631796366638,52.806592342110804],[-120.31613668602219,52.80649810073398],[-120.3159708207634,52.80640011001724],[-120.31582096390832,52.806293901916824],[-120.31568674226975,52.80618227352782],[-120.31556897720729,52.80605906784994],[-120.31546595306196,52.805937144144714],[-120.31534841226278,52.805812267153335],[-120.3151988570877,52.80570382416408],[-120.31504840844458,52.80560208313699],[-120.31488307021442,52.805500185700694],[-120.31473307017772,52.80539509317596],[-120.31456721242458,52.805297100405916],[-120.31421911965299,52.80511211917431],[-120.31405266793057,52.80501859376352],[-120.31387110383426,52.80492658284338],[-120.31368872003442,52.804840719745535],[-120.31350641210204,52.80475429337874],[-120.31330712896872,52.80468333973084],[-120.31309131656708,52.804624516578926],[-120.31287431203022,52.80457462922565],[-120.31265618917811,52.80453312362102],[-120.31243978202328,52.80447876736336],[-120.31225807459103,52.80438787093999],[-120.31215454264625,52.80426984931284],[-120.31217362853701,52.804126870231045],[-120.31225070477215,52.80399626842212],[-120.31234244720285,52.803867494154304],[-120.31244892846875,52.803740002285615],[-120.3125548127138,52.80361697840969],[-120.31266129272099,52.80348948632759],[-120.31276717573304,52.80336646224007],[-120.31288817067771,52.803241923441824],[-120.31299338095221,52.80312393021467],[-120.31311385336811,52.80300329628704],[-120.31322040411783,52.80287524960195],[-120.3133402037673,52.802759646509806],[-120.3134748169403,52.802644762658566],[-120.31360935545281,52.80253043268986],[-120.31377210477264,52.80242815745766],[-120.3139342570902,52.80233035010369],[-120.31411092460363,52.80223549586729],[-120.31428647289238,52.80214902353921],[-120.31444854904743,52.802051769503045],[-120.31461136845533,52.80194893902904],[-120.31474590173278,52.80183460770588],[-120.31486636436841,52.80171398081484],[-120.31498690143239,52.80159279080771],[-120.31509329521631,52.801465850398706],[-120.31620242987793,52.80022060855412],[-120.31842062693174,52.79954632839427],[-120.32016183067142,52.79632604090371],[-120.32139160369707,52.79615914735961],[-120.32519703847422,52.793554366151405],[-120.32946310719878,52.79151705480249],[-120.33409882265306,52.790283912513864],[-120.33759421132042,52.789554189085884],[-120.34129851106611,52.78803569692282],[-120.34029936281834,52.78545784898121],[-120.33881419371782,52.7835107888517],[-120.33855823815112,52.78162260562137],[-120.33772853935741,52.77945426411749],[-120.33662328607828,52.77790271575189],[-120.33161832564346,52.77833722268069],[-120.32660358271652,52.779740163875296],[-120.3199062642525,52.78079425229202],[-120.31339589050344,52.78144950002766],[-120.31019439662825,52.781429949378904],[-120.30690286448622,52.780968583010896],[-120.30642044020901,52.78089845366951],[-120.3018303083873,52.779449589198244],[-120.30062931294853,52.77795482227044],[-120.29725538462382,52.77577233903188],[-120.29285421750008,52.773808355134584],[-120.28930911091484,52.77201919262032],[-120.28828691787076,52.77052904712322],[-120.28786263808905,52.76824619834096],[-120.28809988342852,52.764361437383684],[-120.28850931084419,52.76219404417509],[-120.2897655068513,52.7604884921862],[-120.29232447862232,52.75873068819226],[-120.29308747389803,52.75514308945989],[-120.29260513698544,52.75496327362673],[-120.29193320492449,52.75486471632208],[-120.29104806773003,52.75446735399589],[-120.29044288940646,52.75420395377302],[-120.28961405205266,52.75383124731745],[-120.28899768370732,52.753540308339076],[-120.28861770390756,52.75315241522759],[-120.28823429244889,52.75279020356582],[-120.28771360676014,52.75245220963747],[-120.28740932687744,52.75227769263884],[-120.28706664413683,52.752056325443014],[-120.28649095311154,52.75190677561694],[-120.28621341709879,52.75186623335329],[-120.28598026991307,52.751827859037306],[-120.28576057268968,52.75180026040944],[-120.28553788332327,52.75179500193869],[-120.28530995705452,52.75182883903064],[-120.28507321967881,52.75181727158521],[-120.28485359731644,52.751789117211395],[-120.28463569675779,52.75174811214306],[-120.2844202664457,52.75168867125321],[-120.28420461165047,52.7516309099735],[-120.28398746082654,52.75158431856126],[-120.28375311983875,52.75155487602128],[-120.28353514609428,52.75151443188198],[-120.28333571183893,52.75144677595388],[-120.28313657638267,52.751376894568175],[-120.28293878996331,52.75129695067522],[-120.28275564922902,52.751218855679824],[-120.28255831334386,52.751135560060334],[-120.28235813269416,52.75107349651407],[-120.28214323232456,52.75101014629334],[-120.28192661149357,52.75095963698929],[-120.28170811909598,52.750923094554025],[-120.28148064361814,52.75095357314649],[-120.28124091751131,52.750964338432254],[-120.28100238918006,52.7509661670414],[-120.28077865654386,52.75096871868881],[-120.28055911684174,52.75093999327311],[-120.28035946474596,52.75087401225751],[-120.28017737884025,52.75078809405374],[-120.28001301023347,52.75068111278173],[-120.27986456185208,52.75056647277718],[-120.27976177325121,52.75044451331934],[-120.27966018339524,52.75031361758533],[-120.27955747027214,52.750191103885],[-120.27940827593577,52.750082048375866],[-120.27925855753453,52.74997690671317],[-120.2791093635097,52.749867859744214],[-120.27897616499634,52.74975059122059],[-120.27890439370991,52.74961947120505],[-120.27886378657566,52.74947806547338],[-120.2787763234321,52.749352914783664],[-120.27867473918647,52.749222018101],[-120.27855663730048,52.749103247731554],[-120.27845385594776,52.7489812870088],[-120.27836759340775,52.74884719980027],[-120.278295901003,52.748715516354814],[-120.27820948849448,52.74858255496404],[-120.27812262831156,52.74845293562608],[-120.2780050550039,52.74833025059697],[-120.27790235138748,52.74820773528532],[-120.27776961078996,52.74808711419738],[-120.27765114061688,52.74797113091161],[-120.2775178009955,52.74785498654088],[-120.2773840138364,52.74774218413646],[-120.27723535737174,52.74762922057867],[-120.27708520342006,52.747527427032246],[-120.27692077956884,52.74742100417152],[-120.27680208939213,52.74730669103944],[-120.27673107805091,52.74716998437735],[-120.2766898810864,52.747033045746214],[-120.27664928373164,52.74689163900525],[-120.27663790102596,52.74675446841954],[-120.27662786571906,52.746607253568364],[-120.27666041592197,52.746475606160566],[-120.2767815048654,52.74634998294319],[-120.27694270447184,52.74625837120834],[-120.27716053360842,52.74618863562351],[-120.27736334273281,52.74611985567672],[-120.27756562627206,52.74605498942275],[-120.27782442623524,52.7459018067311],[-120.27798622110875,52.745805725441635],[-120.27814966417779,52.74569734772758],[-120.2782693984368,52.74558177612087],[-120.27841797066608,52.74547323715341],[-120.27856631687045,52.74536637799452],[-120.27871563648141,52.74525225351226],[-120.2788347688717,52.745141149392445],[-120.27896989242771,52.745021832697724],[-120.27910434188463,52.74490753798379],[-120.2792530594132,52.74479788088386],[-120.27938728217435,52.74468526583489],[-120.27952240274819,52.74456594846703],[-120.2796430286275,52.74444367321295],[-120.27977739899568,52.74432994066428],[-120.27995090781603,52.74425747479309],[-120.28016722330582,52.74419891273304],[-120.28039653600052,52.74415446924085],[-120.2806115783111,52.744105396623056],[-120.28082729325746,52.74405130145031],[-120.28104315856727,52.74399607991392],[-120.28124527677237,52.74393232424607],[-120.28144829377537,52.74386185711611],[-120.28165198313764,52.74378636746684],[-120.28181376140745,52.74369028075849],[-120.28196224382471,52.74358229120874],[-120.28209660531817,52.74346855593593],[-120.2822312654534,52.743352586439535],[-120.28235173048999,52.7432314253297],[-120.28247144648833,52.7431158492408],[-120.28260595482922,52.74300099631786],[-120.2827404624476,52.74288614323175],[-120.28287541832165,52.74276793888733],[-120.28299528126303,52.74265124519605],[-120.28310162216219,52.74252433783469],[-120.28319332048613,52.74239558117631],[-120.28328449389507,52.7422707385175],[-120.28337686392445,52.74213695951473],[-120.28345459035839,52.74200134020577],[-120.28351692512892,52.74186946578541],[-120.28357940915238,52.74173647428704],[-120.28361320555634,52.74159533420679],[-120.28363288202392,52.74144844875393],[-120.28373757328752,52.7413338191494],[-120.28392750154481,52.74124978302589],[-120.28411817716218,52.74116016141728],[-120.28426664377909,52.74105217770264],[-120.28441451239202,52.7409486529962],[-120.28459046756917,52.74085775348203],[-120.2847934644648,52.74078728041323],[-120.28499563731049,52.74072295515544],[-120.28519982843193,52.74064355402443],[-120.28534769337305,52.740540028112314],[-120.2854821858882,52.74042517169166],[-120.28564469073017,52.74032349429609],[-120.28581996823772,52.7402376150972],[-120.28602348305364,52.74016323470566],[-120.28622647429127,52.740092759121914],[-120.28636021524687,52.73998348684981],[-120.28648110776106,52.739858970109076],[-120.28661499688609,52.73974858049065],[-120.28673543935182,52.739627414584604],[-120.28682719469862,52.739498100783685],[-120.28689026313428,52.73936063915329],[-120.2869384640395,52.73922301771431],[-120.28698980615032,52.739061929472385],[-120.28719489351067,52.738197208590854],[-120.28829489653417,52.7375426125683],[-120.29051539952746,52.73685840538675],[-120.29144918109127,52.73633283569501],[-120.29232429684427,52.73557784504068],[-120.2925471109942,52.73457962086514],[-120.2921249137554,52.7340631734056],[-120.29181350123712,52.73305236637745],[-120.29177055322471,52.732371722606295],[-120.29280042041259,52.73157200038862],[-120.29452889990687,52.730556765287005],[-120.29569119237547,52.72999060173554],[-120.2961182592231,52.7291338963917],[-120.29678383489107,52.7280515817626],[-120.29751974760514,52.72711099869403],[-120.2979963988474,52.726662585439655],[-120.29888095500658,52.725723058148695],[-120.29961374458527,52.72491666656982],[-120.29834025516872,52.724756734146396],[-120.29654608888399,52.724483682500015],[-120.29498540604138,52.72435692048751],[-120.29348358054588,52.72423525953055],[-120.2924367140561,52.72416165650734],[-120.29094147552749,52.72399081239386],[-120.28924567727223,52.72353917983902],[-120.28718246354575,52.72271932955358],[-120.28512865746933,52.72194093332705],[-120.28365914405965,52.72135635842112],[-120.2820285784541,52.7208633853572],[-120.27596892965518,52.71921750517063],[-120.27338131166643,52.71842735221519],[-120.27230740808518,52.717447108578234],[-120.27147408511172,52.716559601479396],[-120.27062374477461,52.71557737021681],[-120.26953134658105,52.71495767180443],[-120.2683216362544,52.71388189379666],[-120.26803297434833,52.71270680574982],[-120.26813200110911,52.71252332358602],[-120.26825114423333,52.712411673749315],[-120.26845088458002,52.712364685404424],[-120.26869099737041,52.71234947785639],[-120.26892976073758,52.712344323145466],[-120.26916687502872,52.712351455353655],[-120.26938800798413,52.71236679840094],[-120.26962632166737,52.71236499338135],[-120.26985375036311,52.712333419974286],[-120.27006677067553,52.712298333104975],[-120.27028114077055,52.712253183565494],[-120.27051036689257,52.712208204419625],[-120.27072518447761,52.71215971188456],[-120.27095373584665,52.71211975407567],[-120.27118146197438,52.712085944006105],[-120.27139410593674,52.712053642847486],[-120.27162190568818,52.71201927786795],[-120.27184918123481,52.711988817618526],[-120.27206339806516,52.71194478184764],[-120.27227971084793,52.71188511604265],[-120.27248259058557,52.71181466293728],[-120.27268456955544,52.711750920664564],[-120.27290088169079,52.711691244768055],[-120.27310428320678,52.71161688539678],[-120.2732649104536,52.71152862772448],[-120.2734140518401,52.7114150614727],[-120.27353430214654,52.71129502388634],[-120.27366873445949,52.71118017878129],[-120.2738037651921,52.71106086533794],[-120.27392341428335,52.71094529549888],[-120.27408568486955,52.710844749175585],[-120.27427444836745,52.71076854629712],[-120.27447672046252,52.71070255786268],[-120.27469347288381,52.71063953641421],[-120.27489559396797,52.71057466429583],[-120.27511174612788,52.710516110250055],[-120.27532744966409,52.71046089800538],[-120.2755282201043,52.71040608713984],[-120.27575870413729,52.71035159830088],[-120.27597350645614,52.7103030960774],[-120.27618786032522,52.71025793566452],[-120.27640168914233,52.71021668899316],[-120.27663007392854,52.710177846037546],[-120.27684382766677,52.71013715261249],[-120.27707228707438,52.71009774579993],[-120.27730014729923,52.7100628067367],[-120.27751509610646,52.71001318462698],[-120.27773019529164,52.70996243613495],[-120.27794499342299,52.70991393028236],[-120.27815994193219,52.709864298047606],[-120.2783755628213,52.70980964315706],[-120.27859118315975,52.70975498786757],[-120.27880620434767,52.70970480038374],[-120.27900764078449,52.709644952325824],[-120.27922385804065,52.70958582765892],[-120.27942529333349,52.70952597887767],[-120.27964278064515,52.70945736295711],[-120.27978935429807,52.709362778321],[-120.27979267736787,52.709226891266205],[-120.27978189189712,52.70908525826075],[-120.27977185580527,52.708938031039374],[-120.28083291217072,52.70745857213733],[-120.28109902884427,52.70691559824003],[-120.28430391282484,52.70597954066127],[-120.28599549824204,52.705567562471295],[-120.28939316354857,52.70541324522477],[-120.29252745630977,52.70567097398517],[-120.29240122405507,52.70539101976941],[-120.28965042825898,52.70482428295139],[-120.28751046571567,52.70414004606085],[-120.28522032845889,52.70335566367774],[-120.28407887503646,52.70254761120022],[-120.2828756256696,52.701201315825905],[-120.28166686600646,52.70011896334786],[-120.28144716490331,52.699982277216726],[-120.2788651352884,52.698047830471424],[-120.27701872717519,52.6966193545049],[-120.27642987320284,52.69601875190461],[-120.27633475545856,52.695507547375165],[-120.27634733246697,52.69519165154673],[-120.2763748766436,52.694764040780875],[-120.2763296331884,52.69399161384022],[-120.27602709481194,52.693585497859964],[-120.27544307633099,52.693171206359274],[-120.27485914340016,52.69275635776706],[-120.2738077266119,52.69227866525526],[-120.27307549779485,52.691971781539124],[-120.27275368751913,52.69170975696125],[-120.27201536949548,52.690893770693826],[-120.2716527686683,52.69060332254585],[-120.27138758282246,52.69025186941735],[-120.2713227069073,52.68984839936137],[-120.2712185699633,52.68962683871387],[-120.27127308854132,52.689220230019124],[-120.27126822097614,52.688480133030446],[-120.2706025262686,52.68778857278657],[-120.27029928103947,52.68749933911687],[-120.2699862666895,52.687061203252036],[-120.26958690018793,52.68682347091802],[-120.26905469719338,52.68635658473854],[-120.26846305324808,52.68600034332774],[-120.26819712421951,52.68587654041304],[-120.26780604544824,52.68579887401356],[-120.26748290171281,52.68565820101713],[-120.26709443839388,52.68545022861521],[-120.26684545401189,52.68520018646475],[-120.26573326544059,52.684623288669314],[-120.26513635159536,52.68430668095866],[-120.26413841048416,52.68365441846714],[-120.26215326825942,52.68238129848031],[-120.26227047397906,52.68195134936766],[-120.26234921355984,52.68147564842548],[-120.26247368926076,52.680991517361925],[-120.26270688440947,52.68025130494538],[-120.26300005536743,52.679285772431584],[-120.26288698997234,52.67879896356595],[-120.26296234165176,52.6784591595409],[-120.2630785552409,52.67814721610142],[-120.26358538336743,52.677472728858454],[-120.26383467061372,52.677276959131845],[-120.26439493030382,52.67653650457893],[-120.26528302796414,52.67590098198686],[-120.26646541887574,52.6750662676483],[-120.26741385714486,52.67420206414738],[-120.2688728550166,52.673299395958374],[-120.26919742426567,52.6719873905269],[-120.26901933211307,52.67109822581561],[-120.26871892907758,52.66979094930868],[-120.26898126334916,52.66849949943484],[-120.26912060208936,52.66790364998794],[-120.26954205836884,52.66719908935117],[-120.26994802168677,52.666720900444616],[-120.27038204947654,52.66647684365494],[-120.2712981740587,52.666184485781876],[-120.27206300810072,52.66580093178158],[-120.27321296968556,52.665538026394835],[-120.27419651484067,52.664963910942646],[-120.27514969827438,52.66472731559686],[-120.27605457668649,52.66440738590463],[-120.27715950586102,52.664147300313296],[-120.27783450057707,52.6638790528644],[-120.27850649690558,52.66363314318652],[-120.27885240960315,52.66326948166943],[-120.2795318206043,52.66285695927506],[-120.280093906991,52.66221041838777],[-120.2801970865417,52.661216995760086],[-120.28070498438001,52.6606420171694],[-120.28195464688343,52.66018770587718],[-120.2831045692106,52.65981226950849],[-120.28407144918548,52.658804933771734],[-120.28543343438935,52.65806543532671],[-120.28639029755644,52.65768838689132],[-120.2871976171585,52.656873361985596],[-120.28751428140066,52.65617149165034],[-120.29042406386273,52.65552401147725],[-120.2917835233433,52.65546964408828],[-120.29251458050918,52.65511355403292],[-120.29261716083661,52.65434498197345],[-120.29227113125167,52.65382038320884],[-120.29157558712156,52.65346534444086],[-120.29056519718446,52.65335406669769],[-120.28994660372945,52.65331310998676],[-120.28834615832373,52.65350351211653],[-120.28701125714277,52.653819335925036],[-120.28515914805153,52.6540024382189],[-120.28422272271828,52.65389360367572],[-120.28320405400734,52.65384425697694],[-120.28158087924517,52.654093049430685],[-120.28060298387975,52.654072106728556],[-120.27925269471777,52.65372480727055],[-120.2782508068991,52.6532169174743],[-120.27728182889149,52.65290740616008],[-120.27642019821269,52.65246204099558],[-120.27584476135111,52.652320802546484],[-120.2753585371897,52.65206813116915],[-120.27396883850192,52.65190492001966],[-120.27130156435943,52.651185353674364],[-120.26940761499925,52.650350217592226],[-120.26860300744929,52.649480292856175],[-120.26832350967095,52.64868339494126],[-120.26772634242408,52.6478180296027],[-120.26648704066059,52.64686657176791],[-120.26565965547553,52.64638906370712],[-120.26330131057072,52.6461387413739],[-120.2611535963627,52.645758184569644],[-120.25967525343623,52.6452609646151],[-120.25862592063481,52.64477753483313],[-120.25651598421639,52.64400574383228],[-120.25501959963654,52.643643639178656],[-120.25319516153759,52.643401403939144],[-120.25182589710468,52.642978050496964],[-120.25041908898699,52.64294470128453],[-120.249260866547,52.64238834339413],[-120.24943722382385,52.64140806278389],[-120.24871959153965,52.64066876300831],[-120.24829287478265,52.64052797052409],[-120.24745131397209,52.64037907801461],[-120.24604734245902,52.640214814869964],[-120.24507872377893,52.64012710522303],[-120.24358615440872,52.63995899801619],[-120.24229452975882,52.6397327640431],[-120.24101224410629,52.639437249338116],[-120.23973824811775,52.63908029142343],[-120.23856502280657,52.63885760306696],[-120.23656821155393,52.63802241091399],[-120.23538233116753,52.636350727648505],[-120.23386463636585,52.63460695385611],[-120.23379620888568,52.63401264400877],[-120.23374810766506,52.63315734024909],[-120.2337835647486,52.63256366816737],[-120.23394555639545,52.63158212071056],[-120.23400991196829,52.63066378172816],[-120.23396730498065,52.62954729737981],[-120.23435139993217,52.628570541204354],[-120.2343387386405,52.62712155995037],[-120.23471941860676,52.62628014031776],[-120.23489325188959,52.62510013838043],[-120.23496081083124,52.6240475721871],[-120.2356995160989,52.622752685735996],[-120.23659310040512,52.62218175928463],[-120.24014083091973,52.62174872728975],[-120.24057774753248,52.621591516569175],[-120.2415337401793,52.62121817692793],[-120.24273045966031,52.62049013286669],[-120.24316505215448,52.620129265266534],[-120.24432830808567,52.619428791550874],[-120.2458880349228,52.61876081325271],[-120.24675478803765,52.618277328755596],[-120.24793632146434,52.61788189556265],[-120.2496941467307,52.61783817347953],[-120.25089326493368,52.61786414631371],[-120.25192219167948,52.617941304097975],[-120.2522571787399,52.617879106609855],[-120.25804309819375,52.61791178531397],[-120.25897974118685,52.61779149193227],[-120.25977966476994,52.61769425356785],[-120.26048719948278,52.61751094154851],[-120.2618658652988,52.61708348335969],[-120.26302049848694,52.61677653938093],[-120.26439851665445,52.616353519497274],[-120.26596594761128,52.616289501901605],[-120.26798899632077,52.61603815870739],[-120.27074188095396,52.616101519191005],[-120.27221056148298,52.61577675538297],[-120.27398663908825,52.61581734660549],[-120.27583934653408,52.61572897868563],[-120.27740240498262,52.61569721302971],[-120.27918493869493,52.61557836103313],[-120.28114616617673,52.615455321998496],[-120.28300448397913,52.61510231451188],[-120.28402485705547,52.61424267424669],[-120.28438563342928,52.61365316325592],[-120.2846829136297,52.61320559175057],[-120.28509108743317,52.61281687208186],[-120.28538732727972,52.61226579916084],[-120.28602210300396,52.611625056435756],[-120.28770045362144,52.61083924600956],[-120.28742362287939,52.60991038138299],[-120.28712870393913,52.609673286951015],[-120.28635299522227,52.60903481039827],[-120.28608610528923,52.60814297579626],[-120.28568103627401,52.60750804379002],[-120.28596403790681,52.60649979405804],[-120.28610434154625,52.60600460132014],[-120.286149428037,52.60522194562822],[-120.28624326623607,52.60463002968101],[-120.28650938970269,52.60374801364833],[-120.28688891426394,52.60290584752348],[-120.28725849929161,52.60224929434218],[-120.28766162711278,52.6018974284879],[-120.28804903589675,52.601552095458665],[-120.28836990664901,52.60070424409471],[-120.28800635902908,52.59998082725588],[-120.28798305556217,52.59993302474136],[-120.28764698453602,52.59933745804486],[-120.28753917073267,52.599255710133356],[-120.2870825322524,52.59889654583577],[-120.28664582709727,52.59816560426084],[-120.28621512868465,52.597167333854486],[-120.28560039458634,52.5966587365284],[-120.28489870976559,52.59568989766781],[-120.28518372171074,52.59477732207061],[-120.28523380794394,52.593957231623264],[-120.28527344323537,52.59232590060283],[-120.28508107746484,52.59176603645005],[-120.28503526795306,52.59144219316689],[-120.28490306610719,52.591321013128685],[-120.28424266444958,52.590710641938514],[-120.28384358141886,52.590143447961076],[-120.28387294129156,52.58958996931806],[-120.28475058637416,52.589572863523856],[-120.28582000065488,52.58956404163436],[-120.28636547625334,52.58947890598346],[-120.2866187954849,52.589025801795486],[-120.28678377994282,52.58890120614825],[-120.28720855647552,52.588942276653455],[-120.28833175697625,52.58919750251018],[-120.28929097292632,52.58934741766586],[-120.29026971102559,52.58923964713806],[-120.290679471458,52.588725611311546],[-120.291474168349,52.58821751019168],[-120.29243128884893,52.58827170979075],[-120.2933372739807,52.58848700922194],[-120.29402002075697,52.588930318447765],[-120.29470358593043,52.58914483246861],[-120.2947285279938,52.589180345197526],[-120.29499723150379,52.58961349067306],[-120.29608732839723,52.59022909039526],[-120.29717314855912,52.59031990945882],[-120.29793234137033,52.59018952579662],[-120.2984777259292,52.590104896649876],[-120.29891330641993,52.59006493429875],[-120.29931732441517,52.59003915923734],[-120.29959008898851,52.58999628315891],[-120.30010145150997,52.58994428210682],[-120.30055026134954,52.589804876521676],[-120.300747216487,52.58966271150975],[-120.30073686093576,52.58962903833421],[-120.30077076085689,52.58903979681408],[-120.3007695990732,52.58882553782247],[-120.30075679709685,52.58847576700217],[-120.30085901537063,52.588153554037476],[-120.30142678766526,52.58778889664987],[-120.30171194572532,52.587652735985664],[-120.30208900692655,52.587383320803795],[-120.3026025376594,52.587203220880305],[-120.3032168785024,52.58682284226116],[-120.3035111323771,52.586506644937415],[-120.30366733536043,52.58633606325126],[-120.30382268952685,52.58606030000087],[-120.30401512823184,52.58584032309023],[-120.30436628852031,52.58543076211442],[-120.30429959469544,52.584928248654165],[-120.30429978464744,52.584815255908964],[-120.30428850510796,52.58467695562057],[-120.30427351068205,52.58456659375761],[-120.3041630074464,52.584170442070445],[-120.30412945559824,52.583976521614645],[-120.30400038469494,52.583720026123395],[-120.3040329297723,52.58325215740277],[-120.30418455673662,52.58300432259579],[-120.30451760226067,52.58284238702905],[-120.30530478013345,52.582723450593036],[-120.3058330896311,52.58265482387586],[-120.30664936600236,52.58254010773045],[-120.30724801541176,52.582277011067305],[-120.30768780616867,52.581981410989755],[-120.30796919466074,52.58187316414874],[-120.30849773161448,52.581467762802205],[-120.3097765326986,52.581444224614025],[-120.31041619267687,52.58143049294895],[-120.31083725854839,52.58127564683816],[-120.31140334870736,52.58103398695369],[-120.31164728134311,52.580760859351116],[-120.31207943112297,52.580299012588576],[-120.3126262264899,52.579755623136194],[-120.31273018823973,52.57941943733163],[-120.31307698565199,52.57904169283102],[-120.31329872725854,52.57848860972837],[-120.31326953190802,52.578149853260136],[-120.31313189856334,52.57751064181821],[-120.31337615215607,52.576452660487],[-120.31348705183507,52.57617584115891],[-120.3135969476557,52.575683080552935],[-120.31390737462759,52.57513208628333],[-120.31398119477963,52.57468759702881],[-120.31406620647171,52.574158763401016],[-120.31403719658273,52.57404209655844],[-120.3139102806488,52.573545644489656],[-120.31375868223752,52.57323520163944],[-120.31350716483331,52.57267194487124],[-120.31373788484888,52.57126866322243],[-120.31475473379348,52.571093421460866],[-120.31568591010556,52.57089319178728],[-120.31617554190025,52.570220495912615],[-120.31653728517738,52.56961746092361],[-120.31668167940417,52.569423233462615],[-120.31674803212275,52.56925837257008],[-120.31696971354206,52.569152249722926],[-120.31733916738627,52.56916184170411],[-120.31767556871984,52.56964434161711],[-120.31782368224499,52.57031666925166],[-120.31784269925366,52.57050875150381],[-120.31787222178522,52.570845274246395],[-120.31808284703048,52.57126991041866],[-120.31828688472363,52.57174425737302],[-120.31851601708203,52.57247675672848],[-120.31855308193798,52.57320382516013],[-120.31867153710135,52.57365263077897],[-120.31881540785776,52.573686077791436],[-120.31934809728762,52.57380707202595],[-120.31962066408467,52.5737647117348],[-120.31957230058586,52.57435323742253],[-120.32049878750212,52.57486000559646],[-120.32303394628718,52.57408349772511],[-120.32531505348886,52.57152922016092],[-120.32923343077124,52.56623739732703],[-120.33211840107384,52.561689569330404],[-120.33527797633094,52.5571904712021],[-120.33947144577748,52.55327568716938],[-120.34609181049589,52.54949668013877],[-120.35199266756908,52.54284497351565],[-120.35628880417984,52.53778944939265],[-120.35999830175929,52.53358184726598],[-120.3638037092447,52.52852593385892],[-120.36478567337697,52.52590020719078],[-120.37180021563225,52.527307965843875],[-120.37850152377682,52.53009158515012],[-120.38615311816321,52.531620273779815],[-120.39487992620843,52.531273620100414],[-120.40368955128322,52.5297227490059],[-120.41093702048683,52.52821819401343],[-120.41901281618219,52.52660453685909],[-120.42783535603148,52.52482429442012],[-120.4345998756147,52.52303211674853],[-120.43960224586988,52.519633019180766],[-120.44321981255194,52.51434225156286],[-120.4461933394087,52.51001678048087],[-120.45064592223564,52.50604124077885],[-120.4530867464421,52.50525486842897],[-120.46169727248787,52.50438189221177],[-120.47051382178944,52.50385987095548],[-120.47906312276093,52.50173027092587],[-120.48803516671875,52.50125818865206],[-120.49665931124417,52.50061100350435],[-120.50332019815959,52.498647200045],[-120.51001707414414,52.49616533492059],[-120.5159293230941,52.493331316347145],[-120.52129754611958,52.48918749956401],[-120.52706561478232,52.485613178928425],[-120.53250781184562,52.48249883246095],[-120.53327167497118,52.48044986592182],[-120.5334950404477,52.47776499958578],[-120.5353768119665,52.47646281495497],[-120.54170200804248,52.472205801332244],[-120.5427766201174,52.46735629073441],[-120.54187770829597,52.461975035706466],[-120.53613441118466,52.458295744394],[-120.52754607898707,52.457458603895276],[-120.5188408400265,52.45754001943054],[-120.51511449819499,52.45614932794732],[-120.51455951528025,52.455747608430805],[-120.51003079969429,52.4520747633427],[-120.50937946386038,52.45069200455595],[-120.50938412820256,52.44938242139472],[-120.5030702087633,52.44661475777636],[-120.50150155440947,52.44524023380682],[-120.49592527584745,52.44064517846062],[-120.49156692810641,52.43970430163598],[-120.48296863820273,52.43863155720918],[-120.48092203588446,52.437993477167545],[-120.47980500185379,52.436792974138406],[-120.48019524648976,52.435480307521],[-120.47567849384814,52.43140725379036],[-120.47170963392873,52.427331951096555],[-120.47034126118429,52.42464250265957],[-120.4622261201832,52.42271236871135],[-120.4600840349909,52.42167633222297],[-120.45879934053532,52.420408535404675],[-120.45808117154587,52.41875794300641],[-120.45839718158422,52.41378244020073],[-120.46133276064569,52.411176857439344],[-120.46736831840738,52.40720567013114],[-120.47402988615174,52.404101137622895],[-120.48254589535466,52.4031117131441],[-120.49142270509235,52.40218435792321],[-120.49923301440097,52.3987367000178],[-120.50476236276644,52.39568029333545],[-120.51152306388808,52.39199270394468],[-120.51660731192923,52.38847567485202],[-120.52002772870804,52.383294516251894],[-120.52315179755831,52.37799977656454],[-120.52730886039656,52.37281557050943],[-120.5285065373346,52.367455041932644],[-120.52844413552658,52.36213901428213],[-120.52953834223155,52.35689274714939],[-120.53104686721228,52.35558493668085],[-120.53180262038501,52.35427982351029],[-120.53115338216132,52.353816307689485],[-120.52427120559213,52.351441562501286],[-120.51779897187596,52.34735760998022],[-120.5164291253499,52.34386624030519],[-120.51689250132814,52.34335409584496],[-120.5230840117425,52.340474594427846],[-120.52972592440098,52.33822209252032],[-120.53686480137343,52.334486049979766],[-120.53659838352367,52.33391242667719],[-120.53263296559614,52.32972085436557],[-120.5261354912362,52.32666817084152],[-120.52191512563432,52.32681601825389],[-120.51305618343568,52.32923790889235],[-120.51080990660456,52.329279312801184],[-120.50865785339197,52.3289282198648],[-120.50225781256607,52.32581801412572],[-120.49614691962111,52.32287463767185],[-120.489735656703,52.32044226349477],[-120.48326476121545,52.31744443409222],[-120.47724359276064,52.31312843027184],[-120.47310082927547,52.30876850426535],[-120.46782656932216,52.306458183773685],[-120.46633032896602,52.30514129388821],[-120.46627115525382,52.303764925015045],[-120.46741160221964,52.3024560258792],[-120.47349044486494,52.29940345337974],[-120.48052478043921,52.29613024899721],[-120.48145859350672,52.294819247724796],[-120.48274842677068,52.28945691654906],[-120.48490427142234,52.28826376343206],[-120.4933946732719,52.28579299307771],[-120.49462173315243,52.28448743508623],[-120.48756668837842,52.28114461565187],[-120.48639611611235,52.28039334130506],[-120.48631306101414,52.2789686096014],[-120.48904039245704,52.2764088682157],[-120.48960483053115,52.2751021426885],[-120.4874846661302,52.273716393931224],[-120.48175679280978,52.27002983913544],[-120.47629469031712,52.26680488102182],[-120.47564523658232,52.265667349109336],[-120.47542298440389,52.26291745432371],[-120.47015171507968,52.25878758418367],[-120.46750100907329,52.2545455907276],[-120.46279906207839,52.25058027488927],[-120.45706894016814,52.24752350801294],[-120.45077412247608,52.24440106096325],[-120.44364819769619,52.24088289810559],[-120.43981730780908,52.236807625289934],[-120.43632443263323,52.232740584986544],[-120.43432552000216,52.22758706799799],[-120.43134173306335,52.22209022348583],[-120.42655131415043,52.21795004787049],[-120.42730781394458,52.21664547526894],[-120.42852802816783,52.215850215214516],[-120.42910139687437,52.21493883716195],[-120.42661021510854,52.21315983747487],[-120.42513452634944,52.212629761616306],[-120.42459256219664,52.212271277149],[-120.4202282842702,52.2111079146876],[-120.41536873929319,52.20979614581929],[-120.41487918833909,52.20971567696418],[-120.41188798421203,52.21021872864031],[-120.40863936134117,52.21043763827065],[-120.4058323006975,52.211221059321275],[-120.40406784703768,52.21133349367428],[-120.4011069380819,52.20989774494813],[-120.39823523520099,52.208228937619864],[-120.39580142119644,52.2096487741184],[-120.39244153879456,52.21129126871007],[-120.3888112481055,52.21116326138498],[-120.3864168740939,52.20967141884407],[-120.386058839136,52.20767291892942],[-120.38459936981545,52.205438090066934],[-120.38331593470052,52.20354694739656],[-120.38350816050949,52.20240688976219],[-120.38520848400564,52.2000693220711],[-120.38504798415623,52.198475173904804],[-120.38532815044766,52.197676224084596],[-120.38758595124885,52.19557155877917],[-120.39325810174508,52.19490701880058],[-120.3971663479404,52.19492136090468],[-120.39829076541412,52.194071157622325],[-120.40015790791699,52.19282005128961],[-120.40192863584419,52.192653465098424],[-120.40369913819964,52.192147763503286],[-120.40373004506468,52.1902053044745],[-120.40067554387664,52.188368464116266],[-120.40045842366843,52.188229159958745],[-120.3962341740296,52.185440749051565],[-120.3935234101942,52.17857620787623],[-120.39130744556614,52.176740992268286],[-120.39039096299545,52.17531026486077],[-120.39064381541073,52.17324694975084],[-120.39698932988712,52.16951548337836],[-120.39784828286277,52.168214335412536],[-120.40078134112981,52.16314498833823],[-120.4028998516931,52.15766827451923],[-120.40631534262032,52.15215098127752],[-120.40805790229201,52.14718791898022],[-120.40678941620934,52.14564123578848],[-120.40049031716735,52.142577680420985],[-120.39412461790644,52.14026179912007],[-120.38719626536309,52.13742156170624],[-120.37943075839935,52.135835170647894],[-120.37077374567738,52.13704523497755],[-120.36451105916123,52.14083495955352],[-120.35980209288724,52.14474934829066],[-120.35595067756495,52.148612205791615],[-120.35152669038003,52.15246827714677],[-120.34581184402501,52.155856000890886],[-120.33725491237908,52.155924225808796],[-120.32826908047772,52.15466934997582],[-120.32457996700705,52.15424149108595],[-120.32341911401663,52.09243357611721],[-120.34679940702999,52.09218751000898],[-120.34811458639417,52.0905367376625],[-120.34952531801402,52.088489650473015],[-120.34982972722699,52.08637924519465],[-120.34753444353437,52.083739653833405],[-120.34673226459347,52.081682880134686],[-120.34637598036474,52.08036732956121],[-120.34638661773299,52.07893651198794],[-120.34842431139903,52.07848823132864],[-120.3503095482774,52.07707184058046],[-120.35072052704093,52.073129805219324],[-120.35037339005946,52.07050597188932],[-120.34954731778065,52.06987093218405],[-120.35262816051817,52.06748680550777],[-120.35440303928068,52.06601263903269],[-120.35702813736864,52.06453628379509],[-120.35955131169841,52.06237717446976],[-120.3600637352287,52.058098130002264],[-120.35990109387625,52.054728028427796],[-120.35974511473884,52.051983094663235],[-120.35903748697771,52.049875312665264],[-120.35730093178016,52.04666756043522],[-120.35676040178177,52.04575465871179],[-120.35679484786642,52.04312420241821],[-120.35819663461524,52.041018082699274],[-120.35943090906017,52.03862196097289],[-120.36057887991187,52.034859965185625],[-120.36338540855483,52.03298523175311],[-120.3659924684116,52.03162990103515],[-120.36813268098295,52.02992095192346],[-120.3697382963267,52.02781626976083],[-120.3715123347809,52.025879544398045],[-120.37255298319128,52.02485514053275],[-120.37413610340134,52.02303389270675],[-120.35149189421563,52.00913620259688],[-120.31392976524887,52.02211458275351],[-120.31300912389248,52.02165337722631],[-120.30996611163921,52.021074725679085],[-120.30247420177643,52.0182472633814],[-120.2954338927041,52.015443918594116],[-120.2936646007253,52.0154269467454],[-120.28569650824778,52.016232460791464],[-120.28093532448547,52.018032374442534],[-120.27947193292488,52.01824865712342],[-120.27473653146458,52.01884982518196],[-120.27083865083189,52.01865107222902],[-120.26430085142017,52.016268469355346],[-120.25750809869626,52.013826021539316],[-120.2510514096021,52.011725641664],[-120.24377026792786,52.00933324851675],[-120.24304199834219,52.00853229792919],[-120.242503559746,52.00817680790828],[-120.23921359731277,52.00472678473348],[-120.23706804255107,52.00390758999832],[-120.23736706953669,51.999888744090335],[-120.23736944190429,51.999870862386395],[-120.23737181426995,51.99985298068216],[-120.23737418663367,51.99983509897754],[-120.23737655899545,51.999817217272664],[-120.23737893135525,51.99979933556746],[-120.23738130371311,51.99978145386187],[-120.23738367606902,51.99976357215601],[-120.237386048423,51.999745690449785],[-120.23738842077502,51.999727808743316],[-120.23739079312509,51.99970992703647],[-120.2373931654732,51.99969204532928],[-120.23739553781937,51.999674163621755],[-120.2373979101636,51.999656281913985],[-120.23740028250585,51.99963840020588],[-120.23740258011749,51.99962108177113],[-120.23740502718455,51.99960263678862],[-120.23740739952098,51.99958475507946],[-120.23740977185547,51.999566873370085],[-120.237412144188,51.999548991660205],[-120.23741451651857,51.9995311099502],[-120.23741688884719,51.9995132282398],[-120.23741926117387,51.999495346529024],[-120.2374070939987,51.99947673540393],[-120.23740946632742,51.99945885369283],[-120.23741183865417,51.99944097198145],[-120.23741435924923,51.99942197266273],[-120.23740219209662,51.99940336153592],[-120.23740456442336,51.99938547982382],[-120.23740708501839,51.999366480504335],[-120.23739491788442,51.99934786937591],[-120.23739729021112,51.99932998766307],[-120.2373997360779,51.99931155161681],[-120.23738697588043,51.99929741091505],[-120.23738949647803,51.999278411594545],[-120.23737740410459,51.99925923718882],[-120.23737977643367,51.999241355475014],[-120.23736760934634,51.999222744341694],[-120.2373695368655,51.999208215448895],[-120.23735751806272,51.99918848670684],[-120.23735929731292,51.99917507542101],[-120.23734720379534,51.99915590995127],[-120.23734957613118,51.99913802823648],[-120.23733755735682,51.999118299491094],[-120.23734000442317,51.99909985450191],[-120.23732783739241,51.99908124336204],[-120.23731463247105,51.999070455471205],[-120.23731715308708,51.9990514561485],[-120.23730505962239,51.99903229067236],[-120.23730743196877,51.999014408956604],[-120.23729541324765,51.99899468020463],[-120.23728272790612,51.99897997621341],[-120.23728510025884,51.998962094497294],[-120.23727308156228,51.9989423657422],[-120.23727500910057,51.99892783684748],[-120.23726284214568,51.99890922569805],[-120.2372507487444,51.99889006021384],[-120.23725267628784,51.99887553131887],[-120.23724058408655,51.99885635689215],[-120.23724295644988,51.99883847517497],[-120.23723093780654,51.99881874641338],[-120.23721891917408,51.99879901765019],[-120.23722077199452,51.998785052028765],[-120.2372080120095,51.998770911300795],[-120.23719599340066,51.99875118253439],[-120.23719844050636,51.99873273754238],[-120.23718627363871,51.99871412638173],[-120.23718879429012,51.99869512705604],[-120.2371761826157,51.99867986871604],[-120.23717855499584,51.998661986997405],[-120.23716646170035,51.99864282150026],[-120.23716824098712,51.998629410211066],[-120.23715622243537,51.998609681438154],[-120.23715866954996,51.99859123644474],[-120.23714650273887,51.998572625277674],[-120.23714843030304,51.99855809638045],[-120.23713626350559,51.99853948521176],[-120.23713878416872,51.99852048588428],[-120.2371266173859,51.998501874713924],[-120.23712906332076,51.998483438660244],[-120.23713143570956,51.998465556939614],[-120.23711926894525,51.998446945767604],[-120.23712178961043,51.998427946439094],[-120.23710910449266,51.99841324242156],[-120.23711147688583,51.998395360700194],[-120.23711384927704,51.998377478978554],[-120.2371018308195,51.998357750195694],[-120.23710420321261,51.998339868473685],[-120.23709159167075,51.99832461011971],[-120.23709396406629,51.9983067283974],[-120.23709633645986,51.99828884667465],[-120.23708424330421,51.9982696811628],[-120.23708602260108,51.99825626987056],[-120.23707385591464,51.998237658690414],[-120.23707637658754,51.998218659359395],[-120.237078823714,51.99820021436146],[-120.23706665704631,51.99818160317962],[-120.2370690294443,51.998163721455654],[-120.23707155011499,51.99814472212355],[-120.23705938346595,51.998126110940035],[-120.23706190413868,51.99810711160756],[-120.23704973750426,51.9980885004224],[-120.23705151680433,51.99807508912866],[-120.23705396274704,51.99805665306991],[-120.23704179613011,51.99803804188311],[-120.23704416853049,51.998020160157395],[-120.23704668920374,51.99800116082349],[-120.23703452260544,51.99798254963517],[-120.23703696973632,51.997964104634356],[-120.23703934213465,51.997946222907586],[-120.23702717555484,51.9979276117175],[-120.23702969623015,51.99790861238248],[-120.23703162380392,51.99789408347896],[-120.23701945724196,51.997875472287184],[-120.23702123654266,51.997862060991494],[-120.23702360894185,51.997844179263474],[-120.23701151594179,51.99782501373657],[-120.23701388834297,51.99780713200818],[-120.23701626074221,51.99778925027951],[-120.23700424249128,51.997769521476435],[-120.23700661489244,51.99775163974735],[-120.23700906202217,51.99773319474353],[-120.23699689551485,51.99771458354687],[-120.23699867481591,51.99770117224959],[-120.23700104721564,51.99768329051962],[-120.23698902900084,51.997663561713146],[-120.23699140140248,51.9976456799828],[-120.23699392207708,51.99762668064389],[-120.23698175560598,51.99760806944392],[-120.23698412800756,51.99759018771285],[-120.23698650040723,51.99757230598137],[-120.23698894634921,51.997553869916025],[-120.23697677990059,51.997535258714315],[-120.23697915230026,51.99751737698223],[-120.23698167297277,51.99749837764153],[-120.23696891344255,51.99748423687141],[-120.23697136057326,51.99746579186407],[-120.23697373297136,51.997447910131015],[-120.23696156655886,51.997429298926015],[-120.23696393895901,51.99741141719259],[-120.23696631135721,51.99739353545893],[-120.23696883202814,51.997374536116446],[-120.23695666563826,51.99735592490971],[-120.23695918631122,51.997336925566906],[-120.23696155870732,51.99731904383208],[-120.23696393110146,51.99730116209693],[-120.23695176473416,51.99728255088866],[-120.2369542106746,51.997264114819345],[-120.23695658306875,51.99724623308352],[-120.23694382362059,51.997232092307506],[-120.23694619601727,51.99721421057144],[-120.23694871668663,51.99719521122649],[-120.23695108907928,51.99717732948975],[-120.23695346147,51.997159447752644],[-120.23694136987717,51.997140273266226],[-120.23694374226986,51.99712239152876],[-120.23694611466061,51.997104509790965],[-120.2369484870494,51.99708662805285],[-120.23693632074865,51.997068016839485],[-120.23693884141386,51.99704901749236],[-120.23694121380261,51.99703113575348],[-120.23694358618941,51.99701325401439],[-120.23693156818564,51.996993525190526],[-120.23693394057436,51.99697564345104],[-120.2369363129611,51.99695776171122],[-120.23693868534593,51.99693987997106],[-120.23694105772881,51.996921998230604],[-120.23692837192469,51.996907303114945],[-120.23693067076611,51.996889975708136],[-120.23693311669342,51.996871539633034],[-120.23693548907485,51.996853657891634],[-120.23693786145434,51.996835776149915],[-120.23692569522824,51.99681716493134],[-120.23692806760975,51.996799283189226],[-120.23693043998934,51.99678140144678],[-120.2369329606405,51.99676240209513],[-120.23693533301605,51.99674452035205],[-120.23693770538965,51.99672663860865],[-120.23692561392397,51.996707464113406],[-120.23692798629956,51.99668958236958],[-120.23693035867319,51.99667170062545],[-120.23693273104485,51.99665381888109],[-120.23693510341458,51.99663593713626],[-120.23692293724551,51.99661732591426],[-120.23692530961728,51.99659944416912],[-120.2369276819871,51.996581562423685],[-120.2369302026279,51.99656256306871],[-120.23693257499369,51.99654468132264],[-120.23693494735754,51.996526799576195],[-120.23692278121904,51.99650818835238],[-120.23692515358489,51.996490306605544],[-120.23692767422152,51.996471307249266],[-120.23693004658337,51.99645342550177],[-120.23693241894328,51.996435543754004],[-120.23693479130125,51.996417662005875],[-120.23693657056846,51.996404250694575],[-120.236938942923,51.99638636894586],[-120.23692677682205,51.99636775772024],[-120.23692914917862,51.99634987597119],[-120.23693152153326,51.99633199422178],[-120.23693389388595,51.99631411247213],[-120.23693626623667,51.996296230722166],[-120.23693863858547,51.99627834897178],[-120.23694101093233,51.996260467221134],[-120.23694338327722,51.99624258547011],[-120.23694575562016,51.99622470371881],[-120.23694820150371,51.99620626763289],[-120.23695050030021,51.99618894021521],[-120.23695294617971,51.9961705041286],[-120.23695531851482,51.99615262237602],[-120.23695761730565,51.99613529495737],[-120.2369599896369,51.99611741320412],[-120.23694789714445,51.99609824764202],[-120.23695019593538,51.99608092022275],[-120.23695256826672,51.99606303846879],[-120.23695553367814,51.99604068627593],[-120.2369579060051,51.99602280452123],[-120.2369602783301,51.99600492276624],[-120.23697718898019,51.99598777048329],[-120.23697956129537,51.99596988872735],[-120.23698193360859,51.995952006971144],[-120.23698430591988,51.995934125214525],[-120.2369866782292,51.995916243457565],[-120.23698905053658,51.995898361700384],[-120.23699142284201,51.995880479942834],[-120.23699364687657,51.99586371579478],[-120.23699601917824,51.99584583403659],[-120.23699839147795,51.99582795227815],[-120.2370007637757,51.995810070519255],[-120.2370029878031,51.99579330637006],[-120.23700536009704,51.99577542461062],[-120.2370077323891,51.995757542850846],[-120.23702464292438,51.9957403905573],[-120.23702701520662,51.99572250879657],[-120.23702938748686,51.995704627035536],[-120.23703168503842,51.99568730854958],[-120.23703405731484,51.995669426787906],[-120.23705081953884,51.99565339209932],[-120.23705319180554,51.995635510336726],[-120.23705556407032,51.99561762857377],[-120.23705793633313,51.995599746810605],[-120.23706023505393,51.99558241938166],[-120.23707714550052,51.99556526707774],[-120.23707951775164,51.99554738531326],[-120.23708174173527,51.99553062115876],[-120.23708470704409,51.99550826895227],[-120.23710146918738,51.99549223425407],[-120.23710384142451,51.99547435248794],[-120.23710562060108,51.99546094116315],[-120.23712245625747,51.99544435212647],[-120.23712468021931,51.995427587969616],[-120.23712705244337,51.99540970620197],[-120.23714396279658,51.99539255388577],[-120.23714685452546,51.99537075600985],[-120.23714922673734,51.99535287424097],[-120.23716598879703,51.99533683953118],[-120.23716836099919,51.99531895776132],[-120.23717058493693,51.99530219360183],[-120.23718749523121,51.99528504127753],[-120.23718979269776,51.99526772278223],[-120.23719157183939,51.9952543114537],[-120.23720892689059,51.99523380629344],[-120.23721129906949,51.9952159245211],[-120.237213597709,51.99519859708344],[-120.2372305079461,51.99518144475126],[-120.23723273185288,51.995164680588566],[-120.23724949380937,51.99514864586411],[-120.23725245900607,51.99512629364596],[-120.23725483116124,51.995108411871044],[-120.23727166662447,51.99509182280757],[-120.23727329747464,51.995079529086716],[-120.23729020764195,51.995062376744116],[-120.23729250624194,51.995045049302504],[-120.23729487837625,51.99502716752557],[-120.23731223328822,51.99500666234561],[-120.23731460541234,51.99498878056771],[-120.23733136727093,51.99497274582886],[-120.23733373938532,51.994954864049994],[-120.23733603677627,51.99493754554685],[-120.23735279860725,51.99492151080419],[-120.23735457768453,51.99490809946915],[-120.23737200724189,51.99488703100206],[-120.23737437933494,51.99486914922101],[-120.237376751426,51.99485126743966],[-120.23739351320879,51.99483523268984],[-120.23739573703513,51.99481846851901],[-120.23739810911466,51.994800586736446],[-120.2374155374219,51.994779527201636],[-120.2374179094912,51.994761645418116],[-120.2374201333044,51.994744881245715],[-120.2374370432839,51.99472772887657],[-120.23743874879354,51.99471487187333],[-120.23745565875406,51.99469771950095],[-120.2374580308024,51.99467983771535],[-120.23746084760732,51.994658603094365],[-120.23747760928494,51.99464256832973],[-120.23747998132127,51.99462468654273],[-120.23748235335567,51.994606804755456],[-120.23749918853822,51.99459021565147],[-120.23750141231137,51.994573451475],[-120.23750378433418,51.9945555696865],[-120.23750615635501,51.99453768789761],[-120.23752358569072,51.99451661940089],[-120.23752595770134,51.994498737611046],[-120.237527736708,51.994485326268375],[-120.23754449829428,51.99446929149154],[-120.23754687029373,51.99445140970052],[-120.2375490940414,51.994434645521146],[-120.23755146603705,51.994416763729525],[-120.23755383803076,51.99439888193756],[-120.2375707478232,51.99438172954364],[-120.23757304508963,51.99436441102724],[-120.23757586181802,51.99434317639773],[-120.23757823379768,51.99432529460413],[-120.23759514355196,51.994308142205576],[-120.2375975155218,51.99429026041101],[-120.23759981395872,51.994272932951866],[-120.23760218592473,51.99425505115664],[-120.23761909564226,51.99423789875354],[-120.23762131935123,51.99422113456969],[-120.23762369130559,51.99420325277323],[-120.23762650799885,51.99418201813962],[-120.23764341767846,51.994164865731825],[-120.23764519663527,51.994151454383534],[-120.23764756857604,51.99413357258551],[-120.2376498657988,51.99411625406386],[-120.23765223773573,51.99409837226522],[-120.23766899912718,51.994082337464974],[-120.23767137105438,51.99406445566538],[-120.23767374297965,51.99404657386549],[-120.23769057905861,51.99402997578461],[-120.23769354395267,51.99400762353365],[-120.23769591586573,51.99398974173242],[-120.23769828777685,51.99397185993087],[-120.23770051144176,51.99395509574168],[-120.23771742100405,51.993937943319644],[-120.23771964465985,51.993921179129565],[-120.23772201655748,51.993903297326526],[-120.23772438845316,51.99388541552313],[-120.2377267603469,51.99386753371938],[-120.23774359515046,51.993850944569076],[-120.23774596703444,51.99383306276447],[-120.23774878364412,51.99381182812097],[-120.23775115552382,51.993793946315655],[-120.23775352740158,51.993776064509966],[-120.23777043687345,51.99375891207749],[-120.23777273521351,51.99374158460691],[-120.23777510707957,51.99372370280002],[-120.23777747894364,51.993705820992794],[-120.23777985080581,51.993687939185165],[-120.23779661199224,51.993671904360646],[-120.2377989838447,51.99365402255211],[-120.23780135569518,51.99363614074326],[-120.23780357930325,51.99361937654717],[-120.23780654411134,51.99359702428533],[-120.23780832299472,51.99358361292798],[-120.23782523237026,51.99356646048465],[-120.2378276042052,51.99354857867396],[-120.2378299013255,51.99353126013993],[-120.2378322731566,51.99351337832861],[-120.23783464498577,51.99349549651696],[-120.23783686857384,51.993478732318195],[-120.23783924039921,51.99346085050588],[-120.23784161222264,51.99344296869324],[-120.23784398404412,51.99342508688026],[-120.23786089334406,51.993407934429364],[-120.23786326515572,51.9933900526155],[-120.23786556343934,51.993372725137526],[-120.23786793524718,51.99335484332299],[-120.23787090000421,51.993332491054375],[-120.23787327180764,51.99331460923918],[-120.23787564360916,51.99329672742351],[-120.23787801540868,51.99327884560764],[-120.23788038720629,51.9932609637914],[-120.23788275900192,51.99324308197485],[-120.23789951997921,51.993227047129146],[-120.23790189176516,51.9932091653117],[-120.23790426354914,51.99319128349382],[-120.23790663533119,51.99317340167574],[-120.23790900711128,51.993155519857275],[-120.23791123065335,51.993138755652204],[-120.23791360242967,51.99312087383312],[-120.23791597420406,51.9931029920137],[-120.23791834597648,51.99308511019401],[-120.23792071774697,51.99306722837395],[-120.23792308951548,51.99304934655361],[-120.23792546128207,51.9930314647329],[-120.23792783304671,51.99301358291188],[-120.23793020480939,51.992995701090514],[-120.2379325765701,51.99297781926882],[-120.2379205592321,51.992958090479725],[-120.23792278275963,51.99294132627155],[-120.23792530275544,51.99292232683528],[-120.2379276745142,51.99290444501259],[-120.237930046271,51.99288656318955],[-120.2379180289593,51.99286683439851],[-120.23792040071801,51.992848952575144],[-120.23792277247478,51.99283107075144],[-120.23792514422959,51.99281318892736],[-120.23792751598248,51.99279530710303],[-120.23791542398682,51.99277614158765],[-120.23791720280312,51.99276273021917],[-120.23791957455651,51.99274484839415],[-120.2379074090539,51.99272623721376],[-120.23790992904397,51.992707237774276],[-120.23791237550752,51.99268879267112],[-120.23790021002365,51.992670181489025],[-120.23790258177897,51.992652299662964],[-120.23790510176687,51.99263330022238],[-120.23789293630162,51.99261468903867],[-120.23789545629155,51.992595689597835],[-120.23789782804477,51.99257780777058],[-120.23788506965901,51.99256366704202],[-120.23788744141476,51.99254578521463],[-120.23788988669287,51.99252734905028],[-120.23787772126373,51.992508737863204],[-120.23788009301951,51.99249085603516],[-120.23788261300787,51.99247185659244],[-120.23787044759733,51.99245324540378],[-120.23787289406334,51.99243480029733],[-120.23787526581707,51.992416918468194],[-120.23786310042502,51.99239830727782],[-120.23786547218077,51.99238042544833],[-120.23786799216914,51.99236142600417],[-120.23785538209127,51.99234616765527],[-120.23785775384736,51.99232828582509],[-120.23786012560151,51.9923104039947],[-120.23786249735369,51.992292522163844],[-120.23786486910393,51.992274640332745],[-120.2378527037561,51.992256029139035],[-120.23785448257048,51.99224261776541],[-120.23785692784553,51.9922241815969],[-120.23785929959435,51.992206299764845],[-120.2378616713412,51.99218841793248],[-120.23784950601882,51.99216980673704],[-120.2378518777677,51.99215192490431],[-120.23785424951463,51.992134043071204],[-120.23785662125962,51.99211616123788],[-120.23785899300269,51.99209827940422],[-120.2378613647438,51.99208039757009],[-120.23786373648294,51.9920625157358],[-120.23786610822012,51.99204463390104],[-120.2378684799554,51.992026752066025],[-120.2378853887026,51.992009599590844],[-120.23788768690457,51.99199227209183],[-120.23789005862811,51.991974390255564],[-120.2378924303497,51.99195650841901],[-120.23789480206932,51.99193862658201],[-120.23789776671615,51.99191627428547],[-120.23789999019925,51.99189951006269],[-120.23791689888465,51.99188235758097],[-120.23791912235865,51.99186559335734],[-120.23792149406238,51.99184771151844],[-120.2379232728389,51.99183430013913],[-120.2379401814898,51.991817147653045],[-120.23794247847395,51.99179982909096],[-120.2379447019339,51.991783064865615],[-120.23794707362264,51.99176518302499],[-120.23796457515722,51.99174356007394],[-120.23796687331362,51.991726232569384],[-120.23796924499015,51.99170835072746],[-120.23798615357403,51.99169119823273],[-120.23798837701162,51.99167443400499],[-120.2379906004475,51.991657669776934],[-120.23800750900325,51.99164051727843],[-120.23801047357192,51.99161816497315],[-120.23802671448615,51.99160604621035],[-120.23802893790379,51.99158928198063],[-120.23803130954735,51.99157140013521],[-120.23804814453293,51.99155480196667],[-120.23805051616672,51.991536920120346],[-120.23805288779859,51.991519038273665],[-120.23807024095527,51.99149853291754],[-120.23807246435064,51.99148176868534],[-120.23808937280587,51.991464616172195],[-120.23809166971208,51.991447297601816],[-120.23809389309659,51.99143053336842],[-120.23811020862307,51.99141785131375],[-120.23811309960426,51.99139605333893],[-120.23813000801017,51.99137890081849],[-120.2381323796008,51.99136101896773],[-120.2381346029652,51.99134425473243],[-120.2381513631188,51.99132821982375],[-120.23815373469787,51.991310337971875],[-120.23815603157038,51.99129301939795],[-120.2381733845884,51.99127251402225],[-120.23817575615539,51.99125463216895],[-120.23817812772045,51.99123675031542],[-120.23819496252064,51.99122015212059],[-120.2381967411873,51.99120674072975],[-120.23819911274113,51.991188858874956],[-120.23830173679931,51.99096674699033],[-120.27878046741992,51.991049734228575],[-120.27156432962266,51.964541696200286],[-120.27192496348634,51.9645793787131],[-120.2721557243423,51.96460383756493],[-120.27238641241901,51.96462885032525],[-120.27261768975598,51.964649391879156],[-120.27284837833908,51.96467440371204],[-120.27307906718707,51.9646994150817],[-120.27331034522516,51.96471995524159],[-120.27354103457954,51.96474496568379],[-120.27377231307719,51.96476550491408],[-120.27400359179293,51.96478604367895],[-120.27423428189518,51.96481105272932],[-120.27446511946432,51.96483494362849],[-120.2746818703074,51.964854756271215],[-120.27491314992567,51.96487529320572],[-120.27514384102255,51.96490030042998],[-120.27537512110037,51.964920836434786],[-120.27560588687882,51.964945279416106],[-120.2758365787439,51.96497028524951],[-120.27606785951971,51.96499081986015],[-120.27629855189106,51.96501582476613],[-120.2765292445272,51.96504082920877],[-120.27676052600394,51.96506136242549],[-120.27699121914634,51.965086365940664],[-120.2772219125535,51.965111368992616],[-120.27745319473114,51.96513190081525],[-120.27768388864456,51.96515690293978],[-120.27789961274715,51.96518453335596],[-120.27813089563253,51.965205063814665],[-120.27836159032223,51.96523006457843],[-120.27859184398385,51.965258417957465],[-120.27882253922056,51.96528341779553],[-120.27905323472203,51.9653084171704],[-120.27928334216767,51.96533788685666],[-120.27951403822196,51.96536288530614],[-120.27974414626699,51.96539235406929],[-120.27995979872213,51.965420543933945],[-120.28018990737317,51.965450011803775],[-120.28042001633551,51.96547947921254],[-120.28064953742641,51.96551341694129],[-120.28088038223383,51.965537294951446],[-120.28109537507476,51.96557050784241],[-120.2813249712737,51.965603880902144],[-120.28155449372487,51.965637816821435],[-120.28178460460205,51.96566728149552],[-120.28201412774523,51.96570121649588],[-120.2822286812415,51.965737780354296],[-120.2824587931026,51.96576724367719],[-120.28268846429187,51.96580005963176],[-120.28291740088419,51.965838463615924],[-120.2831318088312,51.96587614348317],[-120.28336140702486,51.96590952141077],[-120.28359093267234,51.96594345325769],[-120.28381987081364,51.9659818554409],[-120.28403442720739,51.96601841592219],[-120.28426336613353,51.96605681722025],[-120.28449237952556,51.966094654740814],[-120.28472131925598,51.9661330551249],[-120.2849358771508,51.96616961392001],[-120.28516481766601,51.96620801341887],[-120.28539390551124,51.966245294760185],[-120.28560772991777,51.96628744080143],[-120.28583674451431,51.96632528457945],[-120.28606568664154,51.96636368228015],[-120.28627951227898,51.96640582706819],[-120.2865080145241,51.96644757699042],[-120.28673644434829,51.96648988083752],[-120.28695027125396,51.96653202437412],[-120.28717936233073,51.96656930214913],[-120.28740786629557,51.96661105027795],[-120.28762169444542,51.96665319256201],[-120.28785012525418,51.96669550313158],[-120.28806454168472,51.966733173776255],[-120.28829231308787,51.96678050865969],[-120.28852081922695,51.966822254569934],[-120.28873472349875,51.96686383145452],[-120.28896264315028,51.96691004730097],[-120.28917706159865,51.966947715864926],[-120.28940498215827,51.96699393083163],[-120.2896188869422,51.967035515007424],[-120.28984666161479,51.967082846800686],[-120.29007517082898,51.96712458961232],[-120.29028900407936,51.96716672691933],[-120.2905174413454,51.967209023231526],[-120.2907308350592,51.967254512832575],[-120.29095875887205,51.9673007247084],[-120.29118712351305,51.967343583009885],[-120.29140103171476,51.96738516385915],[-120.29162881015155,51.96743249210913],[-120.29184279318098,51.96747350880909],[-120.29207064652635,51.967520272856],[-120.29228389663233,51.96756687727158],[-120.29251182372674,51.96761308605752],[-120.29272580847454,51.96765410110861],[-120.2929535897566,51.967701426724204],[-120.29316691447295,51.96774747511199],[-120.29339484344881,51.96779368214111],[-120.29360817025704,51.96783972076513],[-120.29383654032968,51.96788257378695],[-120.2940493539679,51.96793252804417],[-120.29427728484787,51.967978733317395],[-120.29450506951265,51.96802605584753],[-120.29471781068486,51.96807657218801],[-120.2949312130337,51.96812205396274],[-120.29515848635641,51.96817328271052],[-120.29537232967034,51.96821541052968],[-120.29559982341925,51.968264966305135],[-120.29581249428118,51.96831603499555],[-120.29602523838548,51.968366548905465],[-120.29625317363181,51.96841275024619],[-120.29646591989258,51.968463254395026],[-120.2966932695355,51.968513925709935],[-120.29690667608901,51.968559403802615],[-120.29711942265048,51.96860991567824],[-120.29734604067916,51.968666174262594],[-120.29755893606712,51.968715558665565],[-120.2977717580426,51.968765506000175],[-120.29799852433479,51.968820645577615],[-120.29821127343801,51.96887115542251],[-120.29842351051681,51.968925572402],[-120.29863567541426,51.9689805433739],[-120.29886303028042,51.96903121037787],[-120.29907468261298,51.96909009700855],[-120.29928684796073,51.96914507571335],[-120.299498575293,51.969203398229645],[-120.29971022932125,51.96926228368215],[-120.29992195661745,51.96932061435504],[-120.30013302555203,51.96938396988801],[-120.30034402240992,51.96944787941762],[-120.30055523912337,51.96951011645242],[-120.30075126583414,51.969576665861105],[-120.30096226453229,51.96964057424612],[-120.30117289693021,51.96970728100476],[-120.30138345612306,51.969774550703605],[-120.30157948646111,51.96984108974406],[-120.30179004692855,51.96990835869086],[-120.30200002316651,51.96998008917921],[-120.30219554200654,51.97005054364207],[-120.30240595793464,51.97011892916763],[-120.30260140539119,51.97018993732061],[-120.3028120429553,51.97025664104627],[-120.3030220213829,51.970328378589436],[-120.30321703133387,51.970402738840654],[-120.30341291964918,51.970470401381505],[-120.30362290126843,51.97054212887268],[-120.30381849790403,51.97061202615395],[-120.30402789502052,51.97068822377629],[-120.30422283448425,51.970763145630194],[-120.30441718880313,51.97084253803058],[-120.30461103067262,51.97092584658992],[-120.30480531378845,51.971005792712646],[-120.30499974288561,51.97108462972272],[-120.30519300237773,51.971172399225374],[-120.30538743292013,51.971251235568765],[-120.30558127963516,51.971334533521954],[-120.30577563897911,51.97141392358799],[-120.30597058469627,51.9714888424332],[-120.30616494543821,51.97156823183079],[-120.30636047814225,51.97163867911791],[-120.3065709082796,51.97170705693121],[-120.30678221862662,51.97176871907867],[-120.30697936353495,51.97182687035479],[-120.30719096664265,51.971886305241654],[-120.3074178348774,51.97194086276922],[-120.30763068391262,51.971990791724295],[-120.30784353343577,51.9720407202833],[-120.30807076861737,51.97209248667808],[-120.30828413081294,51.972138506855174],[-120.30851253785467,51.972181330581],[-120.30874109169305,51.97222303612708],[-120.3089550417758,51.97226457521489],[-120.30918345013815,51.972307397603934],[-120.30941302959546,51.97234127773565],[-120.30964202411009,51.97237962831028],[-120.30987175062393,51.97241238979894],[-120.31010191642343,51.972441797649715],[-120.31033208253373,51.972471205039255],[-120.31054771724226,51.97249989177464],[-120.31077861544196,51.97252370963656],[-120.31100936760375,51.97254864476172],[-120.31124012002967,51.972573579423454],[-120.3114714578348,51.97259404271128],[-120.3117027958573,51.972614505533436],[-120.31193413409713,51.9726349678901],[-120.31216664264318,51.97264648795327],[-120.31239856629152,51.972662478461565],[-120.31263049011014,51.97267846850211],[-120.31286358404586,51.97268551624011],[-120.3130960931075,51.97269703442437],[-120.31332918721792,51.97270408121897],[-120.31356228140373,51.9727111275412],[-120.31379537566497,51.97271817339117],[-120.31402963970993,51.97271627692246],[-120.31426331890445,51.972718850901124],[-120.31449758293266,51.97271695347955],[-120.31473126215847,51.97271952650766],[-120.31496552616991,51.97271762813325],[-120.31518642777058,51.97270606781663],[-120.31542251832671,51.972690201328916],[-120.31564531990205,51.97266410960696],[-120.3158831652216,51.972634820436404],[-120.31610757399586,51.972596432752],[-120.3163322746824,51.97255580916078],[-120.3165572672458,51.972512949660825],[-120.31678174728462,51.97247400626119],[-120.31700637422736,51.97243393574539],[-120.3172296119343,51.97240448774478],[-120.31746752724854,51.9723746408955],[-120.31769091045818,51.97234407426271],[-120.31792867901424,51.972315344194065],[-120.31815140353342,51.972289810949306],[-120.31837405532562,51.97226483167022],[-120.31861196909293,51.97223498245061],[-120.31883527832339,51.972204967989754],[-120.31907246103617,51.97218070650348],[-120.31929525781905,51.97215460770143],[-120.31951863861772,51.97212403751395],[-120.31975647721521,51.97209474926403],[-120.31998029555915,51.972060824962476],[-120.32020425960722,51.972025782485154],[-120.3204281508557,51.97199129396972],[-120.32065284439106,51.97195066191858],[-120.3208773178705,51.97191171050858],[-120.32108740646908,51.971870913114834],[-120.32131253683956,51.97182692654918],[-120.32153766675539,51.97178293954134],[-120.3217627226266,51.971739515433015],[-120.3219885092465,51.97169049323134],[-120.32219983615596,51.9716401974627],[-120.32242547460692,51.971592301083454],[-120.3226373120799,51.971538087936786],[-120.32284922143323,51.97148331999689],[-120.3230755882431,51.9714298336198],[-120.32328800800273,51.97137114829309],[-120.3234998421591,51.97131694248971],[-120.32371240675688,51.97125713862928],[-120.32392540746686,51.97119399008049],[-120.32413782493161,51.97113530317254],[-120.3243358551348,51.97107478861366],[-120.3245490011548,51.97101051221278],[-120.3247619994461,51.970947362101434],[-120.32497514421381,51.9708830849039],[-120.32517302618604,51.97082368663727],[-120.3253861697421,51.97075940867131],[-120.32559931150192,51.97069513924885],[-120.32581245380001,51.97063086048591],[-120.32601091708037,51.970566989773644],[-120.32622464171683,51.97049823924725],[-120.32643712505156,51.970438993655165],[-120.32663631595284,51.97036953310922],[-120.32684989275707,51.97030189915865],[-120.32704849888881,51.97023690888864],[-120.32724783492395,51.97016632057993],[-120.32746199205587,51.97009422342256],[-120.32766059749446,51.97002922314214],[-120.32787438923013,51.96995991511439],[-120.32807357564911,51.969890452050976],[-120.3282733459529,51.9698165086898],[-120.32847245874683,51.969747599332],[-120.32868675762079,51.96967438211628],[-120.3288860884273,51.969603790934435],[-120.32908578254586,51.9695304094914],[-120.32928569412512,51.96945535553803],[-120.32948553269586,51.96938085563822],[-120.32967091310405,51.969305074259054],[-120.3298711877127,51.96922722041746],[-120.33007109654748,51.96915216507946],[-120.33027093238428,51.96907766379572],[-120.33047142412704,51.96899812779023],[-120.33065658194722,51.9689240259015],[-120.33085648803757,51.968848969178964],[-120.33105690419401,51.96876999548627],[-120.33124286230277,51.968689740508594],[-120.33144327702627,51.96861076613184],[-120.33164369102315,51.96853179140057],[-120.33182906289812,51.9684560154298],[-120.33203005843214,51.96837256898439],[-120.33221543012341,51.968296783438475],[-120.33241584127607,51.96821780734042],[-120.33261683458713,51.968134359852485],[-120.33280278594319,51.968054111250865],[-120.33300261207147,51.967979605150795],[-120.33318914604507,51.967894875933574],[-120.33338969928398,51.967814780351496],[-120.33357557558746,51.96773508488749],[-120.33376145121085,51.967655389117596],[-120.33396251160933,51.967571384828304],[-120.33414838582645,51.96749168842191],[-120.33434886319122,51.96741214554917],[-120.33453546436886,51.9673268596972],[-120.3347358668538,51.967247879490785],[-120.33492173827594,51.96716818181237],[-120.33512221157481,51.967088646511705],[-120.33530808161086,51.96700894819789],[-120.33550862687576,51.96692884886],[-120.3356945689247,51.96684858655781],[-120.3358955496385,51.966765133242035],[-120.33608141687957,51.96668543365629],[-120.33628188583992,51.966605896301225],[-120.33646833416307,51.96652172501921],[-120.33666880282864,51.96644217803644],[-120.33685481288393,51.966361359413],[-120.33705506112175,51.96628349286591],[-120.337241069783,51.96620267360682],[-120.33744138881409,51.966124251964274],[-120.33762681373595,51.96604790313811],[-120.33782786042727,51.96596388303345],[-120.33802766837434,51.96588936806925],[-120.3382141102582,51.965805193905226],[-120.33841457127468,51.96572565277256],[-120.33859984723522,51.96565042011996],[-120.33880089021577,51.96556639828569],[-120.33900069467569,51.96549188160558],[-120.33918655080437,51.96541217691442],[-120.33938686269896,51.96533375183005],[-120.33957286297974,51.96525292873369],[-120.3397727380277,51.965177847335845],[-120.33997297561064,51.96509997562923],[-120.34015897380608,51.96501915156862],[-120.34035870009549,51.96494519585096],[-120.3405597364298,51.96486117089114],[-120.3407451505113,51.96478481695444],[-120.34094538454984,51.96470694352843],[-120.34114590885397,51.9646268342026],[-120.34133110210048,51.96455216043653],[-120.34153155282479,51.96447260484315],[-120.34173192949774,51.96439361225312],[-120.34191777594475,51.96431390307293],[-120.34211822333793,51.964234355382935],[-120.34230406839892,51.96415464556769],[-120.34250393370172,51.964079559352314],[-120.34270430680404,51.964000565041346],[-120.34289014979552,51.96392085426293],[-120.3430900118523,51.96384577595619],[-120.34329096454802,51.96376230950188],[-120.34347629703451,51.96368650550712],[-120.34367608487675,51.96361198058417],[-120.34387703537142,51.9635285130889],[-120.34406221926848,51.963453834854455],[-120.34426273207443,51.96337372000782],[-120.34446317202399,51.96329415922405],[-120.34464886338841,51.963215563333776],[-120.34484879245622,51.963139918564394],[-120.34504966525289,51.96305701234702],[-120.34523506378807,51.962980651053265],[-120.34543608165333,51.96289661742741],[-120.34562118808905,51.96282249106108],[-120.34582169512294,51.962742373452755],[-120.34602198279943,51.962663936632005],[-120.346207959374,51.962583102619234],[-120.34640839213439,51.96250353839106],[-120.34659407662029,51.9624249393064],[-120.34679458003573,51.962344819974305],[-120.34697989923441,51.96226901918314],[-120.34718083720608,51.962185545818656],[-120.34738126636107,51.962105979867616],[-120.34756709271502,51.96202626140144],[-120.34776686594722,51.96195172926556],[-120.34795334423742,51.96186698460736],[-120.34815369728445,51.961787980651636],[-120.34833901291263,51.961712168691676],[-120.3485400910035,51.961627575127025],[-120.34872576791098,51.961548972541095],[-120.34892626337567,51.96146884943209],[-120.34911273734427,51.9613841028586],[-120.34931308606866,51.96130509685008],[-120.34949897868611,51.96122481184275],[-120.34970005227584,51.96114021621432],[-120.34988587026851,51.96106049393495],[-120.35007168758123,51.96098077134975],[-120.35027217795641,51.96090064585495],[-120.35045850163647,51.96081701484604],[-120.35064504303324,51.960731702374744],[-120.35084545917465,51.960652130286505],[-120.35103141821371,51.96057128833332],[-120.35121839309215,51.96048262154523],[-120.3514043507159,51.96040177897715],[-120.35160527160035,51.96031829774762],[-120.351791227805,51.96023745454244],[-120.35197769093146,51.96015270323331],[-120.35216408131694,51.960068506040216],[-120.35235061616984,51.959983190747046],[-120.35255102575377,51.95990361563505],[-120.35273755914316,51.95981829970214],[-120.35292351111323,51.95973745463108],[-120.35311047856347,51.95964878470279],[-120.35329700976656,51.959563467843594],[-120.35349734253276,51.959484454421386],[-120.35368387227494,51.95939913692259],[-120.35387040128667,51.95931381911489],[-120.35405685641663,51.95922906436688],[-120.35424323883363,51.959144863736554],[-120.35442976566165,51.95905954500284],[-120.35463081968658,51.95897494059503],[-120.354816692565,51.95889464683032],[-120.35500379766223,51.95880485596315],[-120.35519017643492,51.95872065376721],[-120.35537611917034,51.95863980465352],[-120.35556249651762,51.95855560184208],[-120.35576296563735,51.95847546660693],[-120.35594999385935,51.958386237537646],[-120.35613651409817,51.9583009159795],[-120.35632230820667,51.95822118310465],[-120.35647563757425,51.95816628492406],[-120.36652532552333,51.95451244915503],[-120.36808017347906,51.95390763258144],[-120.36914423113271,51.953480066695604],[-120.36968868873981,51.953226676535415],[-120.3702053170776,51.95296236139669],[-120.37063250002413,51.95248553697595],[-120.37090595023713,51.95206698215632],[-120.37109867831045,51.95159441253884],[-120.37140053236003,51.95106925767198],[-120.37156868556266,51.95056060029738],[-120.37169246294158,51.95005595751995],[-120.3717381746926,51.94970272451831],[-120.37171241795463,51.949336986389206],[-120.37176732702594,51.948799717057454],[-120.37190100487389,51.948218506559556],[-120.37197201408561,51.947782702682815],[-120.37190609499062,51.947275503409436],[-120.37193284332604,51.94650399250924],[-120.37247895492301,51.94601106491587],[-120.37337760924554,51.94539143482043],[-120.37429646601791,51.94484140956766],[-120.37588778959795,51.94395087103873],[-120.3768904721415,51.94354330204738],[-120.37773721410046,51.94321132718841],[-120.3786260674599,51.94289265925767],[-120.3792811692369,51.942573224096066],[-120.37975122169082,51.942215463262855],[-120.38004356556634,51.94142321791863],[-120.3799574792461,51.94095835051727],[-120.37978670935073,51.940357151320605],[-120.37990601350789,51.93965992060143],[-120.38051811304189,51.938994138718776],[-120.38163045879725,51.93864140289239],[-120.3830867728182,51.938453989408515],[-120.38567303797079,51.93811657408536],[-120.38673820179848,51.93801571310693],[-120.38759632705005,51.93770728621289],[-120.38864596592506,51.93716018328717],[-120.38965753158283,51.936454846874156],[-120.39034820040405,51.93608478224069],[-120.39133795688365,51.93577490194644],[-120.39278668410687,51.93575854498194],[-120.39373215039267,51.935678769089975],[-120.39449692818383,51.93575383415224],[-120.39904708394849,51.93593616394043],[-120.39978888886674,51.93584921069426],[-120.4002925911248,51.93590923120845],[-120.4010909497594,51.93606406688431],[-120.40186503178401,51.93595336111241],[-120.40231180881652,51.93588798965741],[-120.40277303417574,51.935823879497654],[-120.40321980967029,51.93575849556298],[-120.40366945849594,51.93567076123248],[-120.40410487328091,51.935580072034405],[-120.40454251408363,51.935472058492444],[-120.40496620686346,51.935358863457445],[-120.40539061617059,51.93524007743689],[-120.40580222716501,51.935107167055236],[-120.4062279252526,51.934978316967324],[-120.40662630389987,51.93483463451695],[-120.40702539843002,51.9346853612422],[-120.40741111911265,51.93452643549553],[-120.40779712434501,51.934365272659576],[-120.40817018655505,51.93419110386219],[-120.40854338944516,51.93401581593971],[-120.4089027871505,51.93383422954429],[-120.40926261278503,51.93364928832946],[-120.40960798628417,51.933463083781206],[-120.4099674473849,51.933280930552364],[-120.41032798199625,51.93309039646096],[-120.41067341889405,51.93290362520276],[-120.41103265496832,51.93272314986223],[-120.41140705366105,51.932538354803796],[-120.41175305585423,51.932347108638986],[-120.41210027587408,51.93214635483054],[-120.41244749154818,51.93194560888102],[-120.41279470517344,51.93174485290393],[-120.41315578886568,51.931549838104125],[-120.41351514703587,51.93136823689419],[-120.41389966660692,51.9312182320843],[-120.41429640708057,51.93108681944654],[-120.41471902747816,51.93098141331221],[-120.41515372621168,51.93089571690321],[-120.4156010053675,51.93082582191006],[-120.41604656274738,51.93076933103133],[-120.41651979470936,51.930724876622165],[-120.416977358723,51.930688656699964],[-120.41746338732341,51.93065831999514],[-120.41793374846358,51.93063621780211],[-120.41840410912688,51.93061411368368],[-120.4188738957755,51.93059647925562],[-120.41934368204411,51.93057884290693],[-120.41979722808206,51.930573913080586],[-120.42026472015527,51.93057415944819],[-120.4207316388867,51.930578875539275],[-120.42119683782073,51.930597004615215],[-120.42166203714157,51.930615131807926],[-120.42214175643367,51.93063396324142],[-120.42260752969727,51.93064761497485],[-120.42307273014441,51.93066573645684],[-120.42353850403882,51.93067938441698],[-120.42400542425055,51.930684087207645],[-120.4244596870627,51.93067354943152],[-120.42492904221254,51.93065924398629],[-120.42538545280797,51.93063193387964],[-120.42585759914024,51.930595829829166],[-120.4263157268132,51.930555101074944],[-120.4267757149912,51.93049983761315],[-120.4272356309911,51.930445126793316],[-120.42769733473386,51.930376444663025],[-120.42815968060405,51.93030273452464],[-120.42859484768991,51.930213070051956],[-120.42903058433114,51.930118941199666],[-120.42946753610697,51.93001530391569],[-120.42987802266855,51.929890132142084],[-120.43027692135117,51.929741331983145],[-120.43066551818936,51.9295588512171],[-120.43101255681604,51.92935860322217],[-120.43134650361274,51.9291464699749],[-120.4316378910053,51.92892439550192],[-120.43185832438557,51.928685944153735],[-120.43202318306604,51.928425104727694],[-120.43213261082657,51.928140759524574],[-120.43222844747991,51.92784844726709],[-120.43233801434002,51.927562992744186],[-120.43247568794493,51.92728620972312],[-120.4326135028226,51.92700830854522],[-120.4327521740396,51.92672369958424],[-120.43291880816268,51.92644887988603],[-120.43311233052228,51.92619224719604],[-120.43334726138148,51.92595448821532],[-120.43366615157598,51.92574556009698],[-120.43405405579296,51.92556809343397],[-120.43448000615602,51.92543578385994],[-120.43491503962883,51.925346658509575],[-120.43536115866965,51.92528506627452],[-120.43582057895794,51.92523368358267],[-120.4362775696581,51.925201294933636],[-120.43674900565499,51.925170172185894],[-120.43721929780904,51.92514799096031],[-120.43768901794803,51.92513027954035],[-120.4381575947287,51.925121509666766],[-120.43862674276114,51.92510826614679],[-120.43909589050864,51.92509502071134],[-120.43955051995353,51.925081069434135],[-120.44001923865513,51.925071174034166],[-120.4404878143318,51.925062394658504],[-120.44095653261994,51.9250524954353],[-120.44142510790714,51.92504371223772],[-120.44187745164821,51.925047638753234],[-120.44234488458159,51.92504779530922],[-120.44281231751827,51.92504794996386],[-120.44327803757079,51.92506151799395],[-120.44374432882812,51.925070612375336],[-120.44421004941253,51.92508417662806],[-120.44467527024848,51.9251016562599],[-120.445139849909,51.92512416027525],[-120.44560493000425,51.92514274514143],[-120.44606893990435,51.92516971716996],[-120.4465474685471,51.925197390368474],[-120.44701033844733,51.9252333021435],[-120.44747263857461,51.92527368383192],[-120.44793436906951,51.925318535440155],[-120.44838051210856,51.9253710714459],[-120.44883996298033,51.92543380654299],[-120.44928340025622,51.92550757107234],[-120.44972576913383,51.92558972296186],[-120.45016336314164,51.92570932886059],[-120.45058444646371,51.925843872877905],[-120.4509882336661,51.92599951732111],[-120.45134490461925,51.92618100174049],[-120.45168506448982,51.9263774339159],[-120.45197967596505,51.926587409277666],[-120.45227265077608,51.92681024473274],[-120.45254961392554,51.92704411111026],[-120.45281149106903,51.927281746320176],[-120.45305792635283,51.92752594086506],[-120.45331938168367,51.92776692866451],[-120.45356575074032,51.92801168546268],[-120.45382657005707,51.928257707249365],[-120.45408860392241,51.92849422134622],[-120.45436487516467,51.928733672750454],[-120.4546574503393,51.92895984661084],[-120.45495095393605,51.92917875747722],[-120.45525841039665,51.92940284129427],[-120.45556565578664,51.92962860564214],[-120.45587361766476,51.929848770427036],[-120.45621268714523,51.93005413217116],[-120.45655325463174,51.9302477588631],[-120.45692514498064,51.93042489180954],[-120.45730024176554,51.93057687408383],[-120.45769256675884,51.93070831565779],[-120.45811592789353,51.93082550770361],[-120.45855551999794,51.93092998426688],[-120.45899603896147,51.93102719691419],[-120.45945342951451,51.93110665856489],[-120.4599118180743,51.931178292709426],[-120.46037120439897,51.93124209933736],[-120.46083187286747,51.93129584252723],[-120.46129325396838,51.93134399408872],[-120.46175513466423,51.931388226476656],[-120.46221865190093,51.931419604973634],[-120.462682738861,51.93144650977033],[-120.46314739540266,51.93146894086024],[-120.46361262138379,51.931486898236706],[-120.46407898557564,51.93149591005622],[-120.46454648769188,51.931495976305186],[-120.4650145586272,51.93149156881121],[-120.4654831982374,51.93148268756715],[-120.46595240637791,51.9314693325661],[-120.46640823100698,51.9314463314229],[-120.46687942866252,51.93141732116686],[-120.46733638941527,51.93138537263949],[-120.46779455705763,51.93134392407282],[-120.46825222697466,51.931306382082276],[-120.46871153092432,51.93125597719699],[-120.46917033590442,51.931209487826074],[-120.46962970824619,51.93115852475611],[-120.47008957620146,51.93110365143528],[-120.47054958619678,51.931047649360316],[-120.47101023366302,51.93098661905612],[-120.47145614573859,51.930926568435744],[-120.4719172167329,51.930862180583176],[-120.4723777898868,51.93080169930092],[-120.4728238401895,51.93074052539433],[-120.47328554671842,51.930671096701374],[-120.47373223388055,51.93060488391891],[-120.47417870616867,51.93054035082725],[-120.47464040842061,51.930470916679425],[-120.47508765924496,51.93040022672406],[-120.47553483708603,51.930330098483076],[-120.47598201462401,51.93025995955406],[-120.47644427752856,51.93018605518564],[-120.47689201970803,51.930111440803685],[-120.47733990110373,51.93003571563935],[-120.47778764020687,51.92996109775847],[-120.47823601558103,51.9298814516981],[-120.47868375043187,51.929806839259896],[-120.47913162672185,51.92973109814927],[-120.47957992579626,51.92965201029153],[-120.48002765712603,51.929577383659],[-120.4804759529949,51.92949829229555],[-120.48092424837184,51.929419190234086],[-120.48137211565404,51.92934344931036],[-120.48181984074819,51.929268815675776],[-120.48226763461996,51.92919362577208],[-120.48271599391877,51.92911396218044],[-120.48316435157933,51.929034296834075],[-120.48361206929779,51.928959665141136],[-120.48405992832494,51.92888390476885],[-120.48450820974992,51.92880479762891],[-120.48495592394535,51.92873015174193],[-120.48540420216418,51.928651041096444],[-120.48585191324712,51.92857639170888],[-120.48630032990862,51.928496159568276],[-120.48674803786723,51.92842150667959],[-120.48719645128715,51.92834127103157],[-120.4876447225761,51.92826214267589],[-120.48809249606495,51.928186930010526],[-120.48854083437004,51.928107243624666],[-120.48898860472264,51.928032027457654],[-120.48943686844788,51.927952901034075],[-120.48988470701376,51.92787711789646],[-120.49033353369347,51.92779351598599],[-120.49078122753262,51.92771884733954],[-120.49122891870643,51.927644185888084],[-120.4916773170195,51.92756392375813],[-120.4921250050685,51.927489258805835],[-120.4925738245928,51.927405639173664],[-120.49302165095453,51.92732985271954],[-120.49346990127455,51.92725070157245],[-120.49391772448779,51.92717491161628],[-120.49436597158866,51.92709575696332],[-120.49481372150606,51.92702051803384],[-120.49526252991855,51.926936896810794],[-120.49571034792469,51.926861090904325],[-120.4961585874146,51.9267819381816],[-120.49660640227172,51.926706128773155],[-120.49705463854232,51.92662697254475],[-120.49750287431647,51.926547805618384],[-120.49795110733243,51.926468645882395],[-120.498398915856,51.926392829468185],[-120.49884714565242,51.92631366622643],[-120.4992948097182,51.92623896431814],[-120.4997431776034,51.92615867956303],[-120.50019140368302,51.92607950211784],[-120.5006396982065,51.92599976838622],[-120.50108742604485,51.925924504941484],[-120.50153515233772,51.92584923974731],[-120.50198344203714,51.925769500757646],[-120.50243173009714,51.92568976001362],[-120.5028799453456,51.925610580993634],[-120.5033277364878,51.925534745316405],[-120.50377524256093,51.92546115286144],[-120.50422359532907,51.925380841626705],[-120.50467180414891,51.925301655596535],[-120.50511944784698,51.92522693093246],[-120.50556779460229,51.925146623380954],[-120.50601543517368,51.92507189521646],[-120.50646314420675,51.924996610766556],[-120.50691141612964,51.92491685249357],[-120.50735968641283,51.92483709246639],[-120.50780731960762,51.92476236624566],[-120.50825509347061,51.92468651131201],[-120.50870328783327,51.924607309509724],[-120.50915105854573,51.92453145107447],[-120.50959910864907,51.92445336378921],[-120.51004687622257,51.92437750185315],[-120.51049506415524,51.924298293041026],[-120.51094268757464,51.924223545627676],[-120.51139044932329,51.92414768738513],[-120.51183863358156,51.92406846437276],[-120.51228632225926,51.923993157169804],[-120.51273400939078,51.92391784821772],[-120.51318225875477,51.923838065407644],[-120.51362987171684,51.92376331644094],[-120.51407804795663,51.92368408466764],[-120.51452565780286,51.92360933220146],[-120.51497340813953,51.92353345101294],[-120.51542157844898,51.9234542229279],[-120.51586918476,51.923379456269146],[-120.51631749272207,51.92329910664818],[-120.51677961454224,51.92322503066157],[-120.51721333076574,51.92314453790657],[-120.51767551927657,51.92306990376267],[-120.51812318762315,51.92299457375417],[-120.51855626489417,51.92291911154001],[-120.51900407096376,51.92284266005497],[-120.51901908284393,51.92283943634868],[-120.51946723867108,51.92276019243692],[-120.51991483092247,51.922685409973894],[-120.52036242051285,51.92261063470682],[-120.52081057267384,51.922531376595785],[-120.52125886281316,51.92245100763721],[-120.52170644881915,51.92237621817519],[-120.52215473571263,51.92229584571064],[-120.52260231858988,51.922221052748995],[-120.52304996971232,51.9221457034907],[-120.52349818198581,51.92206588031715],[-120.5239463926186,51.92198605538961],[-120.52439453072257,51.92190679220184],[-120.52484224640502,51.921830872446904],[-120.52528981877617,51.92175607793089],[-120.5257379532003,51.9216768005434],[-120.52618608487039,51.92159753034708],[-120.5266343566285,51.92151713140724],[-120.52708192270642,51.921442329890176],[-120.52753005064899,51.92136304549175],[-120.52797775416651,51.92128712242802],[-120.52841136073496,51.92120714182313],[-120.52885962325387,51.92112674311891],[-120.52930774472203,51.92104745176555],[-120.52975593425397,51.92096760410609],[-120.53020356014977,51.92089222689668],[-120.53065174644648,51.92081237573218],[-120.53109986030252,51.920733086312225],[-120.53154811411646,51.92065266814197],[-120.5319956628947,51.92057784742899],[-120.53244391346138,51.92049742575307],[-120.53289145910982,51.920422601540814],[-120.53333956601251,51.92034329441479],[-120.53378767016228,51.920263994479974],[-120.53423591419886,51.92018356579119],[-120.53468345355219,51.92010873457851],[-120.5351315539715,51.92002942044204],[-120.53557923056435,51.91995346767231],[-120.53602676637452,51.91987862226794],[-120.53647556253645,51.91979372152275],[-120.53692309516924,51.91971887261669],[-120.53737125710435,51.91963899516069],[-120.53781885620083,51.91956358819727],[-120.53826645374956,51.919488179485235],[-120.53871510125812,51.91940438802571],[-120.53916276631657,51.91932841230786],[-120.53961084945043,51.91924908959311],[-120.54005837111393,51.91917422843964],[-120.54050589011932,51.91909937448271],[-120.54095354892759,51.919023391767354],[-120.54140218649259,51.918939589781466],[-120.54184970190569,51.918864721630776],[-120.54229728531271,51.91878929717035],[-120.54274486717172,51.918713870961305],[-120.54319244748268,51.91863844300387],[-120.54364051619893,51.91855910452632],[-120.5440881640009,51.918483109562324],[-120.54453566899853,51.91840823986457],[-120.54498331369243,51.91833224140289],[-120.54544519294483,51.91825917683428],[-120.54589325478763,51.91817982060082],[-120.54634089365102,51.91810382577918],[-120.54678783175287,51.9180334106342],[-120.54723539808883,51.91795796688256],[-120.54768345245984,51.91787861259142],[-120.54813052611574,51.91780707413412],[-120.54859239453444,51.91773399688039],[-120.54903946521722,51.91766245487719],[-120.54948695329497,51.91758756584125],[-120.54993444095592,51.91751266611307],[-120.55038199650535,51.917437210069764],[-120.55082892013223,51.91736678810859],[-120.55127654317066,51.917290765059015],[-120.55173840085081,51.91721767512553],[-120.5521853211576,51.91714723893005],[-120.55263293845941,51.917071219525965],[-120.55307985582098,51.91700077984175],[-120.55352740067622,51.916925311512166],[-120.55398939059077,51.91685109442326],[-120.5544364433706,51.91677953136457],[-120.55488377327006,51.91670573933618],[-120.55533124261564,51.91663081853081],[-120.55577828981757,51.91655925918184],[-120.55622575612392,51.916484334883],[-120.5566872480162,51.91641401574971],[-120.55713415097759,51.91634356919914],[-120.55758217187058,51.91626416724991],[-120.5580290718513,51.916193717209076],[-120.55847653054127,51.91611878412022],[-120.5592969013895,51.91598113092819],[-120.55922880202529,51.888717134259544],[-120.56069999961424,51.888344951247845],[-120.56131792729667,51.88811502232102],[-120.56163787979526,51.887919322030534],[-120.56201927662585,51.88774284122163],[-120.56249189870675,51.887595432578806],[-120.56302708701877,51.88734132359522],[-120.56350660956254,51.88709470305792],[-120.56394930108199,51.88686544510803],[-120.56443843626167,51.88673175154856],[-120.56502598091335,51.88661340434015],[-120.56549188495602,51.88646116664125],[-120.56609267106174,51.88616348340173],[-120.5667279005063,51.88579432227951],[-120.56709258600749,51.88553211118353],[-120.56753482107734,51.885262337374904],[-120.56838168552902,51.884731674120644],[-120.56846565418635,51.884701912303036],[-120.56884002324209,51.88455207162153],[-120.5691062927688,51.88444996898532],[-120.56945046488933,51.88436674651274],[-120.5700383870843,51.884288884092996],[-120.57064108872538,51.88418022637702],[-120.57118268613269,51.884020306736055],[-120.57154190721535,51.88387479697713],[-120.57188417877427,51.88373354903553],[-120.57200622004832,51.88369096687666],[-120.57243285808276,51.88344348981922],[-120.57289093286677,51.88313395721907],[-120.57322593039451,51.88293387477189],[-120.57368497870323,51.882660368086],[-120.57442462455617,51.88225731491808],[-120.57507361650094,51.88193768560869],[-120.5753178840244,51.88182159803956],[-120.5757743352308,51.881583394613166],[-120.5761635573186,51.881357753264936],[-120.57670581146856,51.88098694854316],[-120.57707924550348,51.88069757195153],[-120.57741534235309,51.880327137832964],[-120.57766755043203,51.87998590779567],[-120.57784294519041,51.87977825965504],[-120.57804070536939,51.87950811771145],[-120.57820853947655,51.87921463141845],[-120.57832973890416,51.878988113721235],[-120.57850641751169,51.878667485083604],[-120.57865995771195,51.878400882303666],[-120.57873626218536,51.87822734277103],[-120.57885032922223,51.87795549764825],[-120.57899492586051,51.87764347282921],[-120.57923183140876,51.877293084728414],[-120.57942246347316,51.87703610028914],[-120.57952101953137,51.876903545761444],[-120.57976518844008,51.876611986655206],[-120.57986463726584,51.876442915701695],[-120.57993382442916,51.876282544546534],[-120.58005592129356,51.8760779955573],[-120.58017739173673,51.87587847363218],[-120.58027601186915,51.875745363713676],[-120.58066664162858,51.875375809885504],[-120.58120699176027,51.87506338343006],[-120.5818096626914,51.874733666119546],[-120.58229063879546,51.874370630117625],[-120.58265624745097,51.874099421635144],[-120.58310600610763,51.873649993381605],[-120.58319859716698,51.87330120501676],[-120.58314552614006,51.87293596381187],[-120.58284108228257,51.872524535043965],[-120.58293870055986,51.872193980078734],[-120.5835032826738,51.8717741579735],[-120.58385559037666,51.87144833913862],[-120.5840378820694,51.87121401541161],[-120.58427362733106,51.87093103876482],[-120.58452553028998,51.8704593120793],[-120.5845497353731,51.87001506083698],[-120.58399145885126,51.86978283775182],[-120.58380808192203,51.86958577768279],[-120.58382301476168,51.86928955293335],[-120.58393033288328,51.869012876111555],[-120.58400671893504,51.86879435670237],[-120.58422829150636,51.86865467650789],[-120.58445769389377,51.86856936257445],[-120.58478528582457,51.86854491842571],[-120.58530501483209,51.86851494403328],[-120.58557849615157,51.86847106856453],[-120.5857080237346,51.8684558214831],[-120.58605255281093,51.86842711760085],[-120.58616687707618,51.86840215349877],[-120.58740947969865,51.868468195617325],[-120.58803583129537,51.868489919417634],[-120.58869836073364,51.86849928531033],[-120.58891280641707,51.868490295994405],[-120.58946273504266,51.868613568477805],[-120.5896520939985,51.868747916260475],[-120.5896602924558,51.868946256282335],[-120.58972221981969,51.869225865326435],[-120.59030873284738,51.86953924897719],[-120.59078896144254,51.86966597067964],[-120.59105741325816,51.869721387624516],[-120.59136873044572,51.86975464183224],[-120.59162171900569,51.869831821789575],[-120.59174295857602,51.86994214602677],[-120.59175796197533,51.87042368002148],[-120.59193371109001,51.871079253787585],[-120.59262097731073,51.87166843876211],[-120.59308600031571,51.87206492309468],[-120.59382626288001,51.87240353770645],[-120.59429825172528,51.87255290586494],[-120.59465871636282,51.87264583909113],[-120.59485635025572,51.87269902889369],[-120.59539740470744,51.87289439042946],[-120.59643619796545,51.87304630396675],[-120.59648883038618,51.87303360749181],[-120.596641343666,51.8730683527029],[-120.5972587808184,51.87310366573234],[-120.5975723315429,51.87338388699539],[-120.59828149102138,51.87354722976134],[-120.59886871765592,51.874179457732005],[-120.59949543269161,51.87455204267922],[-120.59999953182633,51.8746927764397],[-120.60024279482619,51.87476047883551],[-120.60127998697024,51.874925766459405],[-120.6013953256222,51.87493682550571],[-120.60179877056692,51.875021637543796],[-120.60216445940712,51.87514627433937],[-120.6028441017538,51.87547466161941],[-120.60357022754232,51.87584009088769],[-120.60450004935754,51.876210051887114],[-120.60534742943956,51.87646534346292],[-120.60593418300546,51.8765132165485],[-120.60665878600496,51.87647872475947],[-120.60734684895874,51.876371085332515],[-120.60765958011851,51.8763638786135],[-120.60798672141823,51.87640232835651],[-120.60849785264111,51.876412887916985],[-120.60849788943656,51.87630941714006],[-120.60849695105769,51.87606643748543],[-120.60849770218226,51.87464541611851],[-120.60860516796734,51.87466115400687],[-120.60871933133741,51.87468171480037],[-120.60883411788255,51.874697239142186],[-120.60894047724608,51.87472192225339],[-120.60905464093297,51.874742482712215],[-120.60916155384459,51.87476269284795],[-120.6092757874582,51.87478268951704],[-120.60939121117116,51.874807807724764],[-120.6094968646775,51.87482345946362],[-120.60961235833719,51.874848013878776],[-120.6097174576561,51.8748681471314],[-120.60983398944741,51.87488431040174],[-120.60994822368717,51.87490430639942],[-120.61006238832545,51.874924865852634],[-120.61016804235562,51.87494051697196],[-120.61028283009622,51.874956039861516],[-120.61039699502734,51.87497659898093],[-120.61051248959835,51.875001152486966],[-120.61061940381816,51.87502136126001],[-120.6107257638742,51.87504605165524],[-120.61083157201084,51.8750752057827],[-120.61093138700139,51.87510858567085],[-120.61103065012433,51.87514642930332],[-120.61113055051175,51.8751938672593],[-120.61121413392532,51.87524053757564],[-120.6113050381952,51.87528699433333],[-120.61138256122106,51.87533843607943],[-120.61144998169976,51.875397842305006],[-120.61151969878499,51.87545342455798],[-120.61157979891375,51.87551304421073],[-120.61164841021098,51.875577571936795],[-120.61171819752164,51.8756325904902],[-120.61179335555194,51.87568841944614],[-120.61187094844384,51.875739306219394],[-120.61195342761279,51.87579492153287],[-120.61203882610437,51.87584167649553],[-120.6121218587048,51.87589281890342],[-120.61220489149977,51.87594396124889],[-120.61229754276992,51.87599105708394],[-120.61238844975522,51.876037512952415],[-120.61247928836322,51.87608452337183],[-120.61257981512688,51.87612692367566],[-120.61267782079616,51.87616021675189],[-120.61278529181635,51.87617595070515],[-120.61289915267788,51.87616950010467],[-120.61302869354928,51.87615422229364],[-120.61314372983198,51.876138262313205],[-120.6132499408149,51.87614943779505],[-120.6133202142971,51.87620054613293],[-120.61335028771668,51.87628181355377],[-120.61330307417693,51.87633920244017],[-120.6132279732697,51.87640090351197],[-120.61325057145856,51.8764688809625],[-120.61328175076075,51.87654120281631],[-120.61327471721083,51.87661285259062],[-120.61325122764211,51.876684853295465],[-120.61323512857858,51.876756076801584],[-120.61322802524924,51.8768282901298],[-120.61323611890832,51.87689558554347],[-120.6132654157264,51.87696838569317],[-120.61330440072759,51.87703657573153],[-120.61334944773981,51.877099985150345],[-120.61339568541169,51.87716851614806],[-120.61345704956112,51.877232701701864],[-120.61350983267592,51.8772925428278],[-120.61357907218023,51.87735203294633],[-120.61364043796296,51.87741620944598],[-120.61370834794114,51.877471705024405],[-120.61378539335992,51.877527063203544],[-120.61385275193223,51.877587022526605],[-120.61393035059872,51.8776379078215],[-120.6140055138042,51.87769374417471],[-120.61408855223077,51.87774488507543],[-120.61416615145268,51.87779577020375],[-120.61425045056592,51.877851469001314],[-120.61432623702818,51.877902268781256],[-120.61438815750091,51.87796197206745],[-120.61444165028955,51.87803084352368],[-120.61448607751547,51.87809928879298],[-120.61454019197996,51.8781631327877],[-120.61457918003909,51.87823132232046],[-120.61461635506512,51.878299426606354],[-120.61464620902939,51.87836774458488],[-120.61465430405427,51.87843504875181],[-120.61459322360471,51.87850134164352],[-120.61453214186407,51.87856764344439],[-120.61454016820159,51.87863550223216],[-120.61456354569086,51.8787119554552],[-120.61460136011503,51.878789645132045],[-120.6146614679392,51.878849271939345],[-120.61471456752858,51.87887706893617],[-120.61471547038116,51.878013915103956],[-120.61514276132284,51.87774382896517],[-120.6154246296092,51.87763223630207],[-120.6157224169975,51.87753938622108],[-120.6160206005749,51.87742855898241],[-120.61611210435835,51.87732263944411],[-120.61621857960435,51.877198861504624],[-120.61642503332169,51.877121962092254],[-120.61679886137027,51.877004007592284],[-120.617096641551,51.876911153894106],[-120.61733154919733,51.87678103793899],[-120.61767503143845,51.87659867239459],[-120.61825640463633,51.8763948564547],[-120.61854511216468,51.87630157308703],[-120.61882728913714,51.876172559092815],[-120.6189799271319,51.876058820119496],[-120.61922436869938,51.8758661749175],[-120.61945351272,51.87570879182502],[-120.61966745586118,51.875497276217054],[-120.61988131383316,51.87533074380597],[-120.62005568814534,51.87526245408281],[-120.62022328821337,51.875130863455816],[-120.62033022364733,51.874944130325666],[-120.62043084645353,51.874838069231814],[-120.62070386105964,51.87475360842468],[-120.62101659901607,51.8745984653374],[-120.62127739794165,51.874450438188866],[-120.62154427347386,51.87431226014992],[-120.62179553931364,51.87418234620936],[-120.62200961588475,51.87408780056059],[-120.62205515959681,51.874043826483394],[-120.62263489429547,51.873749380762504],[-120.62281800832562,51.87365450501977],[-120.62322967491215,51.873554610988265],[-120.62348881319257,51.873479048120736],[-120.62375629537806,51.87343930839517],[-120.62417654989866,51.87340279656116],[-120.62451896409465,51.87334688500509],[-120.62479487892273,51.87325354478245],[-120.625015015151,51.87321326315389],[-120.62509230056143,51.87313366278215],[-120.62547362436936,51.8728805050878],[-120.62566365533195,51.8728033868155],[-120.62599196106109,51.87268438479473],[-120.62613645219722,51.87265124142176],[-120.62634396999394,51.87256537813669],[-120.62668550011192,51.87238345453462],[-120.6270137998987,51.872264449546364],[-120.62726574775319,51.87214355416066],[-120.62750980764474,51.871968303564536],[-120.62779161250616,51.87181225976112],[-120.62841745545607,51.871483393178345],[-120.62861589873941,51.871397100635065],[-120.62885184379418,51.8712580236551],[-120.62912749128421,51.87109268174677],[-120.62939392956056,51.870972461569174],[-120.62222336309225,51.870966702447966],[-120.62223845725313,51.8637367559736],[-120.61175570394924,51.86366356334524],[-120.60791070078895,51.86363500307547],[-120.599998880954,51.863734611748995],[-120.59907466845488,51.86373377033149],[-120.58842497494284,51.86374055060043],[-120.58741836708133,51.863742470345464],[-120.57569841660062,51.863748654505244],[-120.5756919848216,51.86888396369627],[-120.57568331601274,51.869656822049365],[-120.57568398110735,51.87096999135197],[-120.57597374313008,51.870971340637254],[-120.57621072538764,51.87097188164477],[-120.57610998998801,51.87129778694622],[-120.57592737282931,51.87179808249343],[-120.57563882724763,51.87253406603263],[-120.57536296395907,51.87297764890532],[-120.57510451121215,51.87335457104699],[-120.57487597207191,51.873754837414154],[-120.57476076365907,51.87397714643854],[-120.574560781948,51.87426516553784],[-120.57431855774287,51.874628799962935],[-120.5740743172184,51.87503788609573],[-120.57389892357995,51.87524552935564],[-120.57364676091855,51.87546921451486],[-120.57323501690436,51.87586136669617],[-120.57302098969869,51.876481651494316],[-120.57286744241668,51.87686522154665],[-120.57279934139369,51.87701665213301],[-120.57273835131485,51.87715491363388],[-120.57260018337179,51.877385688887],[-120.57241844284538,51.877688074892134],[-120.57226583964817,51.8779322206986],[-120.5720898778866,51.87820282034475],[-120.57192241312515,51.8784198346567],[-120.57177669266744,51.87856477070088],[-120.57159380131546,51.8787006389987],[-120.5712123889361,51.87892213647751],[-120.57108283315168,51.878995854122905],[-120.57083926110742,51.879062476967675],[-120.5704411642865,51.87919826777003],[-120.56966429257773,51.879578161049146],[-120.5691151656513,51.87998910002527],[-120.56879349649407,51.88024322358228],[-120.56851205422957,51.88040871589818],[-120.56803060485171,51.88056922404844],[-120.56760319531811,51.88069124390873],[-120.56716232097408,51.88073107512671],[-120.56677158911879,51.880822204608414],[-120.56596376012827,51.88108420017541],[-120.56536018308434,51.88134632334164],[-120.5650414804683,51.88153253549671],[-120.56471203511622,51.88174635596129],[-120.56391114623827,51.88215713446379],[-120.56371273556398,51.88225625432268],[-120.56334624635295,51.88245988252398],[-120.56318751557885,51.88253333252663],[-120.56272198661036,51.882828978788055],[-120.56244671411767,51.882944703621966],[-120.56205023164236,51.88306703837676],[-120.56132421376391,51.88327215032187],[-120.5605701416977,51.88358502710081],[-120.56030957325369,51.88371437543922],[-120.55920031182822,51.8843736757376],[-120.55912583551252,51.87575393809824],[-120.55773533570282,51.67305372090504],[-120.55687506925395,51.47813767125371],[-120.55989551129508,51.48025214268191],[-120.56115895821884,51.48441677711876],[-120.56161146428654,51.48812452219791],[-120.56187809600704,51.49017835142679],[-120.56543143478433,51.49348941772516],[-120.5733950989554,51.49669674599667],[-120.58154255946117,51.49818682682708],[-120.58859769236412,51.49938909788402],[-120.59471550932494,51.50127648448422],[-120.59864927397851,51.50481425205494],[-120.59956385647115,51.50584784290313],[-120.6033239920769,51.50727095842774],[-120.6114715479663,51.50642194688169],[-120.62045497272982,51.50488628153334],[-120.62320294765165,51.50489041986656],[-120.631168161691,51.50540791519946],[-120.63831197497674,51.50495170967057],[-120.64087762791843,51.50455247619428],[-120.64435753146988,51.50329740194145],[-120.64995023577481,51.502270040946804],[-120.65096007535831,51.501816412149516],[-120.65608997948604,51.49947653892675],[-120.6602126464698,51.494112237438166],[-120.66451034167589,51.4892037904649],[-120.66662657071466,51.48749248556274],[-120.67082676989243,51.486241259575664],[-120.67468137101265,51.48509574546683],[-120.67852482526436,51.484638105892124],[-120.68237260900766,51.48498100416701],[-120.68566281161058,51.48515252867596],[-120.69307942961942,51.48383787412372],[-120.69884310007765,51.48303901295548],[-120.70863656795093,51.482749544729835],[-120.71550551747981,51.4818916882177],[-120.7200818148896,51.48086155083558],[-120.72236790780867,51.48012188643056],[-120.72283078084382,51.47578127856134],[-120.72547658081197,51.470471140978646],[-120.72784951656021,51.46876005819285],[-120.73188374487877,51.466932021334394],[-120.73709148780912,51.46555934629952],[-120.73992388640819,51.464471213708734],[-120.74076034924126,51.46424336998058],[-120.7439552710701,51.462417087490294],[-120.74569441791094,51.461042482663416],[-120.74971501482509,51.46052720520926],[-120.7519995877525,51.460756090230255],[-120.75795656582936,51.46217895757108],[-120.7631648053314,51.46297520949512],[-120.76692944201561,51.46291042349161],[-120.77295889039566,51.46336385758021],[-120.78101451581792,51.461475826692414],[-120.78549406306563,51.45964342612359],[-120.7923549949234,51.45758441896155],[-120.7974653150413,51.45615231697059],[-120.80066178302918,51.454775725189435],[-120.8054221537443,51.45385540058354],[-120.81109731823467,51.453506010036946],[-120.81410752872632,51.454072815551655],[-120.81722584145614,51.45458092410387],[-120.82014727864293,51.453325112138565],[-120.8239901080187,51.452462813787264],[-120.82773321040929,51.45183318754923],[-120.82846524251447,51.44965952506176],[-120.82817582951584,51.445606267233494],[-120.82917453003543,51.44263650744486],[-120.8323603528857,51.439610073665946],[-120.83354647466592,51.43823942926221],[-120.83683752987687,51.43566482294312],[-120.83910208507358,51.432235733601175],[-120.84148655638869,51.43086162986173],[-120.84403520091357,51.42857702960513],[-120.84676404876757,51.42697101032608],[-120.85334391221423,51.424280521305896],[-120.86265700913614,51.419930075766814],[-120.86530389672342,51.41814951225785],[-120.869666766334,51.41414900787715],[-120.87441368961342,51.41180243394979],[-120.87998324139886,51.41081683207095],[-120.88683849999536,51.41006559092779],[-120.88912068657496,51.4095493045733],[-120.89230702108586,51.40783018581483],[-120.89668952091937,51.40661986705435],[-120.90280987548772,51.40535203596405],[-120.90645591614584,51.40414198387652],[-120.91083623447754,51.40219371408719],[-120.91768115332312,51.40063820787361],[-120.92480512681581,51.399536304011555],[-120.9292727940098,51.39907438417383],[-120.9349428535601,51.39894444405433],[-120.93932183109688,51.39950456802496],[-120.94225130240473,51.400125233790476],[-120.94509532327476,51.40149170121699],[-120.94721073342984,51.40342624751812],[-120.95205907285107,51.40455400080064],[-120.95581075303754,51.40455010043803],[-120.95999540587685,51.40328306874693],[-120.960821012084,51.402876052270315],[-120.96310867483959,51.402299517444625],[-120.96657173834194,51.40229425453044],[-120.97122782827402,51.40182162295226],[-120.97396130260731,51.399990283595905],[-120.97933631061717,51.39763540529486],[-120.98316715208507,51.39642275057585],[-120.98681066656476,51.39419163727506],[-120.98991091410745,51.39343796572325],[-120.99418896518557,51.39120207832316],[-120.99692279892155,51.38947992286051],[-120.99992948727528,51.38827476440624],[-121.00439401419855,51.38705679511014],[-121.01433125576553,51.38526255213327],[-121.01953231437166,51.38415572315382],[-121.02189638842114,51.3830134309668],[-121.02727444693757,51.38173915088153],[-121.03366640155149,51.38029314275427],[-121.03822031893434,51.37890461952925],[-121.04303162212686,51.375351399241914],[-121.04539220327017,51.37345998715653],[-121.04964672247496,51.369847843911224],[-121.05545783741744,51.36520131273361],[-121.06036062647935,51.362220542778545],[-121.06208754016254,51.36147088762303],[-121.06800278737849,51.35922286359155],[-121.07356539076923,51.35754630925056],[-121.08049114785919,51.35643487174608],[-121.08677372414857,51.35527261462865],[-121.09415662246363,51.35393052811813],[-121.09880679295628,51.353058461642675],[-121.10491267205633,51.352180563229496],[-121.11130434978082,51.35249224516413],[-121.11725873340201,51.35350110986684],[-121.12419333999891,51.35398673538686],[-121.12829347025043,51.35300037417395],[-121.13120954194756,51.35281937991887],[-121.13167102646261,51.35281561181818],[-121.13897655003818,51.353072791791014],[-121.14674716768806,51.354866027034525],[-121.15153720740051,51.35861221894105],[-121.1540245353567,51.3599754907686],[-121.15858940763428,51.360924297783484],[-121.16856578929807,51.36259655538142],[-121.17231767006,51.36360455349191],[-121.17541727522199,51.363593852806986],[-121.18492877605546,51.36412133788748],[-121.19870638362475,51.36411714303784],[-121.20391349509752,51.363808726463226],[-121.20874622274819,51.36309849626546],[-121.21403767690987,51.36267454595807],[-121.21914008991138,51.362132163948495],[-121.2220402204597,51.360234889005625],[-121.22340136652936,51.35937468819862],[-121.22839378997152,51.35757901646542],[-121.23211691305566,51.35619244235008],[-121.23593707137707,51.35457199140796],[-121.24048137155363,51.352780010597684],[-121.24794322926725,51.351316182749486],[-121.2507871598113,51.35193089368543],[-121.25316823764626,51.3524294203366],[-121.2599208457083,51.35313801299874],[-121.26714044085905,51.35338949169777],[-121.27234216509821,51.35324645377222],[-121.28109509155954,51.35222684179409],[-121.28627228724952,51.35082721075777],[-121.28872723128467,51.3499612240278],[-121.30220136427644,51.347204567938626],[-121.30694399382267,51.34649273177435],[-121.31058114127906,51.34601659178607],[-121.31377157579998,51.345541516918125],[-121.31757929663027,51.34386284629166],[-121.32028816134464,51.34167814862595],[-121.32237548428674,51.34046399471463],[-121.32279757563762,51.33851866917275],[-121.32323154595011,51.336460825375426],[-121.32604186761087,51.335079140862646],[-121.33104369266685,51.334077954216085],[-121.33338954568303,51.33286359560313],[-121.33600706687739,51.33084796725989],[-121.33807208779766,51.328608230564726],[-121.34059303931653,51.326138739614706],[-121.34267797745044,51.324524951977466],[-121.34363416438025,51.322009518568336],[-121.3436963086356,51.31978112405626],[-121.34776023527353,51.31673010387151],[-121.35392727702546,51.31475152513109],[-121.35698577603317,51.312217758207474],[-121.3618794377684,51.31002063938538],[-121.36623764962734,51.308396216837096],[-121.36724573929364,51.308389167388846],[-121.370991042137,51.308765746348975],[-121.37508068892124,51.308740224939015],[-121.37825773526342,51.30780862936692],[-121.3821667701049,51.306756166769276],[-121.38463021398644,51.30645418476463],[-121.38918008876884,51.30642839723777],[-121.39246688842222,51.306233471139436],[-121.39474308463474,51.30593207221761],[-121.39471822960711,51.30478975643286],[-121.39502536081338,51.30115177613354],[-121.39894134989586,51.29739645381357],[-121.41110569957354,51.29538279825927],[-121.41527040290912,51.294481311272136],[-121.42284616229708,51.291199126546594],[-121.43242971901226,51.28183634321777],[-121.4467681387265,51.26968143423264],[-121.45725559304367,51.26373767436741],[-121.46791683466226,51.25733167575076],[-121.4812643197345,51.24597914011953],[-121.49098323257772,51.239013961811054],[-121.50196268465528,51.23134546011741],[-121.51319213889192,51.222871836075385],[-121.52305138286849,51.21469984465456],[-121.53322614170598,51.207775286429126],[-121.53647808379631,51.2038538555926],[-121.53318898409859,51.19732348313394],[-121.52481565299725,51.190843747471774],[-121.51975533760827,51.18610569728407],[-121.51248566873903,51.1829352137787],[-121.50923829655444,51.180857233409306],[-121.50806581894857,51.17812754538012],[-121.50446622352122,51.16976694339044],[-121.50140518507361,51.15540362950908],[-121.50066060708116,51.1483254699223],[-121.49937277045247,51.144626662580066],[-121.49726975680926,51.14133491759413],[-121.49557587833544,51.13924023833981],[-121.49491767217093,51.13513466365786],[-121.49604165928908,51.1335220481169],[-121.50186146969406,51.13351341896393],[-121.51095823557495,51.13100487461105],[-121.52223650300705,51.125044094639485],[-121.5341063875127,51.11787101579173],[-121.54188127444004,51.110926018523],[-121.54553923207563,51.10858958089504],[-121.55334611933041,51.10586711559781],[-121.55970927325096,51.1031068756624],[-121.56336525574272,51.101060505402906],[-121.56892156672646,51.098479379309026],[-121.57114046737121,51.09690695157427],[-121.57942030098866,51.09457361988398],[-121.58500739995404,51.0932490249073],[-121.58938341175443,51.090851717849944],[-121.5887296986077,51.08748633065119],[-121.59134911561605,51.086769805847176],[-121.59645282992904,51.08481963857312],[-121.60030348366406,51.0829422591976],[-121.6075077048456,51.08130988804006],[-121.61249236189397,51.081131073923565],[-121.61554387376071,51.08023407805941],[-121.61958256148056,51.07846910710551],[-121.62432237229251,51.076411932812334],[-121.62689005179992,51.07460804435208],[-121.63046435038424,51.07289831114781],[-121.63274925665718,51.07047215550663],[-121.6365853967441,51.06842157256311],[-121.6388004069891,51.0668477616423],[-121.64127172245969,51.06470136598947],[-121.64627863102476,51.06252043039969],[-121.6521099671459,51.06038915835702],[-121.65783076852762,51.057625878603154],[-121.66091867789832,51.05530274094617],[-121.66473644563781,51.052679326507096],[-121.66788069526312,51.04903637563244],[-121.66926776722993,51.04713042596393],[-121.67135057797255,51.044246542556095],[-121.67350337993021,51.04078733605419],[-121.6757725186332,51.03818716658294],[-121.67869327032113,51.03608878972835],[-121.68260588390662,51.03363826034474],[-121.68532278628504,51.03068685360794],[-121.68670938451942,51.02906686682533],[-121.69249937757023,51.0256709771918],[-121.69881218199261,51.024842323028786],[-121.70214784179522,51.0243470149781],[-121.70666815728588,51.0241656329887],[-121.7111049150623,51.024109069452365],[-121.71236664875589,51.02392109058709],[-121.71933626935518,51.023538040265734],[-121.7296346627611,51.0224265576504],[-121.73569997773241,51.02222739690607],[-121.73759470599252,51.02214412399099],[-121.74433186427196,51.02044863215185],[-121.7499434031459,51.01751378174162],[-121.75235986228735,51.01645376169837],[-121.75691148387624,51.01473224157925],[-121.76210362461764,51.01288348407989],[-121.76300378168568,51.01258461234618],[-121.76675955703016,51.011108734303775],[-121.77016133559084,51.00974647565459],[-121.77154334107493,51.00783358278299],[-121.77227917766498,51.0056523601396],[-121.77303052441302,51.00375843344189],[-121.77631340876388,50.99942472849545],[-121.7788975382458,50.998838812272275],[-121.7827382417009,50.997202034752014],[-121.78678952345102,50.99590304889067],[-121.78982402708596,50.99432686748948],[-121.79284405915328,50.99184322615537],[-121.7951384025614,50.989478497621924],[-121.79602388037655,50.9887223146393],[-121.80206065262614,50.987861464655204],[-121.80786379374625,50.988266091420506],[-121.81405703986468,50.98968736298602],[-121.81852397651275,50.99078819901062],[-121.82439299624369,50.99049503232222],[-121.82998792212105,50.98946727522235],[-121.8336401060426,50.987372650434565],[-121.83624970210883,50.983289547685644],[-121.83868723076037,50.979209008500696],[-121.83930046799924,50.978605454608754],[-121.83962188658616,50.978221582069104],[-121.8395495561206,50.97746723830264],[-121.83979585020866,50.97681747170807],[-121.84023756933615,50.975909589935256],[-121.84056727720268,50.97482496438231],[-121.84096925832188,50.97373063812845],[-121.841971058013,50.972480888955474],[-121.84337624141727,50.971497371810194],[-121.84480913717576,50.97052216851639],[-121.84632920744248,50.96952994475874],[-121.84760023622229,50.969064815947526],[-121.84893654570483,50.96851157882484],[-121.84995402908869,50.96785602632747],[-121.8510451312698,50.96702271690127],[-121.8527411747119,50.96597731649142],[-121.85401001408285,50.96522700836811],[-121.85547847875135,50.96447843863011],[-121.85671815808405,50.96388725587137],[-121.85825566823517,50.963009080579205],[-121.8592725368255,50.96251084211084],[-121.8607904518927,50.961996215362866],[-121.86200621753322,50.961661015219505],[-121.86323036386767,50.961389077522306],[-121.86354136483284,50.96142134963549],[-121.86382540257343,50.96159036052581],[-121.86659011110602,50.95994269431047],[-121.86819073786873,50.958841838227634],[-121.8694291722814,50.95779847188852],[-121.86979880650902,50.95796780437737],[-121.87117500738967,50.95897981398207],[-121.873593288027,50.96106906690694],[-121.87745401427638,50.96376839583782],[-121.8791877743802,50.96462195240296],[-121.87960359606092,50.964755848759246],[-121.87985617840975,50.96480278567484],[-121.88058283544814,50.964971136505866],[-121.88132144471028,50.965164657309124],[-121.88172320826094,50.965296338250255],[-121.88203103968235,50.965363296722934],[-121.88268875065991,50.96566008758182],[-121.88338842164823,50.965966293124985],[-121.88374581410775,50.966114885990855],[-121.88399670025001,50.96618030743926],[-121.88439516896888,50.96634783696771],[-121.88503087354651,50.966574103787245],[-121.88541145098871,50.9667808837837],[-121.88604349460692,50.96704692059042],[-121.88642195969169,50.9672766732702],[-121.88662774681151,50.96736686218169],[-121.8868027043195,50.967481772014494],[-121.88739323021007,50.96788851499314],[-121.88803209023033,50.96839033846495],[-121.88826432265789,50.96850341354246],[-121.8888584318984,50.968716888620136],[-121.88948142654577,50.96908151591025],[-121.88973369547944,50.9692869523103],[-121.88984213415566,50.96934939071486],[-121.89052387796762,50.969851086013875],[-121.89081149874622,50.97013765239799],[-121.89134188203884,50.970578138979704],[-121.89189254682655,50.97095359460557],[-121.89217850896364,50.971103482244615],[-121.89247606571573,50.97128246896522],[-121.89307454456193,50.9716040078528],[-121.8934462679455,50.97190769351989],[-121.8937243682013,50.972297900303175],[-121.89404908106631,50.97264708606317],[-121.8945762731926,50.97312285865426],[-121.89496162807072,50.973433782692354],[-121.89508429268055,50.97365189561009],[-121.89541398143058,50.97394728942727],[-121.8958956278861,50.974452870066905],[-121.89614928189863,50.974798891601424],[-121.8963692344655,50.975045852987144],[-121.8968223563578,50.97539635000945],[-121.89713160925065,50.97560385801772],[-121.89728914625395,50.97575353281773],[-121.8976202065656,50.97603435203555],[-121.89785718829641,50.97625157480786],[-121.89793038734683,50.97638692255993],[-121.89803817438793,50.976611799691135],[-121.89828627840386,50.97717347628636],[-121.8986605524758,50.97760540787394],[-121.89879072541711,50.97774227882741],[-121.89906850192082,50.97798179345179],[-121.89939701130461,50.978290621000376],[-121.8995712194209,50.978414474109755],[-121.89974754243613,50.97851535971132],[-121.9001753082327,50.978831749889835],[-121.9005112562488,50.979059892807875],[-121.90068547046445,50.97918374408361],[-121.90079559836084,50.97922824209132],[-121.90121425238141,50.97948863566107],[-121.90174009943736,50.97967030702748],[-121.90201898205352,50.979742884999865],[-121.90252065278436,50.97987700543161],[-121.90306754192888,50.979985232238846],[-121.90330615908083,50.98002991986397],[-121.9035733923247,50.98007396028778],[-121.90412116262877,50.98017265259645],[-121.90450724991243,50.98032165974704],[-121.90475391970051,50.98043409785921],[-121.90527757813732,50.98063984031426],[-121.90582129059902,50.980782791395434],[-121.90600046967197,50.98085284666423],[-121.90613680257026,50.980923030000824],[-121.90657881643793,50.98124046975287],[-121.90713161676867,50.98175083393625],[-121.90739935024347,50.98194498508902],[-121.90801979896045,50.98234088023076],[-121.90840244515987,50.98268313101958],[-121.90860129779792,50.98285003292445],[-121.90891482581237,50.98301211907056],[-121.90948038328067,50.98338408439224],[-121.90992504976599,50.98382865346199],[-121.91009395841154,50.98401075930826],[-121.91029812155155,50.98411995291889],[-121.91095300539698,50.98445243040201],[-121.91133102649214,50.98468993870348],[-121.91109165692671,50.98620861278771],[-121.91304987687923,50.991790733476265],[-121.91311204867154,50.995782038056745],[-121.91210916970935,51.00017191344924],[-121.9109277819393,51.00152585154091],[-121.91052342687648,51.00204010664144],[-121.91034206109444,51.00230390083273],[-121.91017400517326,51.00257828911848],[-121.90996924936819,51.00325215751576],[-121.90982940555982,51.00353038784706],[-121.90977195050554,51.00384478975567],[-121.90981082815806,51.00451009858112],[-121.91007995861463,51.00500166471077],[-121.9104738457031,51.00553486499252],[-121.91086106794616,51.00598518948756],[-121.9110064591445,51.00626874979115],[-121.91122318681145,51.00670892575971],[-121.91179649886054,51.007933352981205],[-121.91225092887419,51.008585673244504],[-121.91268023606065,51.009200541683825],[-121.91342234902132,51.010298988484855],[-121.91418502201627,51.011018167423934],[-121.91495799705223,51.01209243007594],[-121.91519705354644,51.01244571108781],[-121.91555795742855,51.012716860981726],[-121.91654784876505,51.013607858443116],[-121.91718990747246,51.014241120570404],[-121.91787357960122,51.01488824807062],[-121.91828059403049,51.015280235880006],[-121.91873585037591,51.01576952868668],[-121.91908935453695,51.01612190102708],[-121.9199094240535,51.01715228920227],[-121.92049173556369,51.017814836183526],[-121.92089549488703,51.01808695405074],[-121.92137811294896,51.01859015954922],[-121.92177923750833,51.01904711546394],[-121.9219797113515,51.01935457149158],[-121.92231520031427,51.019904147309035],[-121.9227474495296,51.02064555167442],[-121.9228815185908,51.02105402764307],[-121.92315143636723,51.02200763628667],[-121.92342287721911,51.0227887284884],[-121.92353021522581,51.0231771200162],[-121.92363842715108,51.02355599119494],[-121.92391240099138,51.02430962327055],[-121.92443925183986,51.025111217073274],[-121.9248931178357,51.025773567618245],[-121.92539312023632,51.026400478843385],[-121.92636548356464,51.027176057858945],[-121.92674030843598,51.027453277564625],[-121.92723677538308,51.02796313649641],[-121.92793392989994,51.02846676468887],[-121.92903327445464,51.028948990817064],[-121.92935760378569,51.029153543282845],[-121.93004936850323,51.02940401433649],[-121.93060723550613,51.02971202354904],[-121.93137861290887,51.03034254819471],[-121.93282305837673,51.03111602946266],[-121.93399300281972,51.031765453130774],[-121.93446810506467,51.03204121579542],[-121.93489627354218,51.03236137238278],[-121.93609525719619,51.033163035738674],[-121.93683462040161,51.03367599514532],[-121.93715610328607,51.033912463819156],[-121.93748902341588,51.03418026573852],[-121.93806131021223,51.03511438483852],[-121.9386299166742,51.03624567326009],[-121.9389677840589,51.03677277846951],[-121.93924048088942,51.03738746599639],[-121.93962104280263,51.03807350229738],[-121.93993197090936,51.03858276610837],[-121.94013207949091,51.039053175045495],[-121.94073369906013,51.03998047009745],[-121.9411138201546,51.04035844463869],[-121.94154522332377,51.040801225446636],[-121.94188852693665,51.04126948687643],[-121.94230650506331,51.0418596186066],[-121.94301875221129,51.04251544596751],[-121.94343885630916,51.04292577353812],[-121.9438069717985,51.0432791276334],[-121.94412687318686,51.04369089081136],[-121.94434293583762,51.04398705167617],[-121.94514009319373,51.04481006020094],[-121.9455429226435,51.0452534807445],[-121.94600889586032,51.04563171454185],[-121.94633414489562,51.04598520285392],[-121.94704468731061,51.04681800339177],[-121.94746253102456,51.04741090920934],[-121.94775318457565,51.0479874288918],[-121.94845959709205,51.05184867474672],[-121.94869169659039,51.05416727071185],[-121.94726636123318,51.05788085040046],[-121.94838684990064,51.06112348489076],[-121.94863894153846,51.063066172829224],[-121.95021843081203,51.066297755939324],[-121.95036376649949,51.06784311816712],[-121.95242398591071,51.071926085378536],[-121.95557623904712,51.07564804199231],[-121.9561425677409,51.07650028212393],[-121.9581616737703,51.07915728474438],[-121.95885776694512,51.08314719049617],[-121.95995104236471,51.085760756525126],[-121.96309373834976,51.087084811820084],[-121.96717820830614,51.08702272311236],[-121.96790026624231,51.08695136255805],[-121.97298313458793,51.086926522320006],[-121.9756250310232,51.0895182869044],[-121.97796046990234,51.09565688262554],[-121.97917791712851,51.09912837452106],[-121.98315447246809,51.10106274256119],[-121.9867984295714,51.10129443323607],[-121.98880469394538,51.101430577361974],[-121.99443255764636,51.101570819268325],[-121.99972818631892,51.10206206545997],[-122.00569686211568,51.10302993864934],[-122.01022872963217,51.105492198437155],[-122.0189396593329,51.10829879333536],[-122.02710217167956,51.109564475228055],[-122.03064563484565,51.112531615938316],[-122.03327115242455,51.11744405489664],[-122.03670034037891,51.12041929200425],[-122.04632927612167,51.12293832740225],[-122.04749388106214,51.12739267586427],[-122.04549156352121,51.13121825805472],[-122.04112156629732,51.134922414728074],[-122.03783003355242,51.13937696702392],[-122.03945635675778,51.14491481710129],[-122.0437226427172,51.14897676050155],[-122.0478899975213,51.153031647774895],[-122.05324692690651,51.15806258544744],[-122.06123098528334,51.16257975881871],[-122.07049106359557,51.166466384331464],[-122.07330607687844,51.16835153422724],[-122.08076909461721,51.170694964040344],[-122.08868011551687,51.172356569685505],[-122.0960395798113,51.174589130792846],[-122.1075788036333,51.17527851529753],[-122.1157728553807,51.176019575909656],[-122.11950108845771,51.17716448630118],[-122.1251288896536,51.18053127827481],[-122.13014041219613,51.18258864870767],[-122.13322574754842,51.1847022598355],[-122.13730985834991,51.18835989829592],[-122.14159133166814,51.191899919206755],[-122.14477455921694,51.193725988274416],[-122.14986678279203,51.198183978115466],[-122.15195137375409,51.20606352336105],[-122.15249302777944,51.20891404878899],[-122.15313306081777,51.21079748347758],[-122.15176155553347,51.21337150096527],[-122.1496670864904,51.217822355067334],[-122.14967642597904,51.220852495979294],[-122.15140420065119,51.22376365083619],[-122.15422838440348,51.22496121383772],[-122.16004788014708,51.2243939594232],[-122.16305079287642,51.22684535601189],[-122.16532239731757,51.230617564579155],[-122.16642327260574,51.234152737205655],[-122.16760008558721,51.23780789655003],[-122.16987365379623,51.24306226603301],[-122.17324470684116,51.24609326681938],[-122.17916796213842,51.249344201397896],[-122.18144262249685,51.25111180164555],[-122.18328353147874,51.253247886403315],[-122.18400155593199,51.25408236283749],[-122.18466990136321,51.25482694583358],[-122.18656309436837,51.25335861874409],[-122.19096152287044,51.251316238905474],[-122.19451551997471,51.25007064552477],[-122.19880712033282,51.24842779393202],[-122.2031974448451,51.24763934464566],[-122.21103855027835,51.24646364658424],[-122.21933290044159,51.24586051409547],[-122.2324545395627,51.24640730000344],[-122.23746461794218,51.24676417377108],[-122.24656534994921,51.248161947951004],[-122.25357582460698,51.24948966904223],[-122.25792399557614,51.25224579019432],[-122.26018631463997,51.25470683510872],[-122.26226685689029,51.25762252587447],[-122.26480190016429,51.2600919097353],[-122.27492711646471,51.25908612285839],[-122.28468313598654,51.25870780211904],[-122.2897764608687,51.25826217410776],[-122.29279212618724,51.25861283885363],[-122.29841290758971,51.26370966075552],[-122.30002693098979,51.266569360800936],[-122.30421657064545,51.26818007451042],[-122.308401697302,51.26950393899086],[-122.31059867772238,51.26744976185947],[-122.312086173607,51.264253262066724],[-122.31828114856437,51.26386419655524],[-122.32675953235379,51.26365352328019],[-122.3319542616369,51.26389076648897],[-122.33568023572809,51.26538579851172],[-122.34177792630767,51.267909736422574],[-122.34487435637546,51.26677225180464],[-122.3479927215999,51.26414831406005],[-122.35548591793712,51.26124522396721],[-122.36250910913368,51.2586310283421],[-122.36653226134902,51.25703685209779],[-122.36990960666981,51.255783593379455],[-122.39117069817073,51.24690286689373],[-122.41581006503883,51.23590313348321],[-122.43031588470059,51.22957610117728],[-122.43250325535098,51.22843512530242],[-122.43624238717197,51.22495156209024],[-122.43753477013085,51.21940927721908],[-122.43808855779707,51.21626891268227],[-122.4396399563307,51.21392517436137],[-122.4480228023082,51.211190936807114],[-122.45121467588721,51.21056660791135],[-122.45923898583167,51.20817254521872],[-122.46278263491558,51.207089844084976],[-122.46634347880422,51.205609262398475],[-122.47171707473743,51.20315661533988],[-122.48119369117285,51.20104520422999],[-122.48446616747334,51.20047359733543],[-122.49029265597403,51.19916283559818],[-122.50048594185397,51.197396278055976],[-122.50431358283127,51.1970519944147],[-122.50759086891225,51.20059826400439],[-122.51494754602034,51.206083821062954],[-122.51905207191932,51.20751825685317],[-122.52487856723228,51.207119152597265],[-122.53179875895765,51.2064898963089],[-122.53899107356095,51.20494446683022],[-122.5438163030341,51.20431820498586],[-122.54836682714262,51.2016919071808],[-122.5506376909531,51.19757567084036],[-122.55192445122279,51.192832162633124],[-122.55365463065411,51.18957454583412],[-122.55610291081953,51.185743915417206],[-122.55992763778546,51.180426647464394],[-122.56228591381256,51.17774363190497],[-122.57338986712841,51.17391541957693],[-122.57939927434289,51.17293664173573],[-122.58594938972621,51.17219132416688],[-122.59067176136773,51.16613288305565],[-122.5925792807528,51.16350024347859],[-122.59547862801051,51.159329638813034],[-122.59857010465241,51.1539535844339],[-122.59947799560354,51.15126650903453],[-122.59765352299388,51.148530140866676],[-122.59501026426966,51.14526676482059],[-122.59219492932559,51.142011026720375],[-122.59110444336345,51.140357885451806],[-122.59346632910217,51.133095267097005],[-122.59336398172064,51.127150184112864],[-122.59291190957296,51.12035236849101],[-122.59217170039928,51.1167524950465],[-122.5883600990048,51.11400792552271],[-122.58308409022777,51.110583399240994],[-122.57800054229607,51.10801499756058],[-122.57526820499571,51.1059566406868],[-122.57600135647544,51.101271562508494],[-122.57872473782606,51.098239109996186],[-122.58743823552723,51.09451919532845],[-122.59425124225076,51.09280411288906],[-122.60042145256445,51.09200406528107],[-122.60777101856874,51.08999427362531],[-122.61248884423352,51.086280689978224],[-122.61247913961718,51.080964602854806],[-122.61411836912345,51.07822118146577],[-122.6224636870278,51.08038430772428],[-122.62810216010679,51.08392416193689],[-122.63411056150736,51.090146643179665],[-122.64309488311108,51.09070926857649],[-122.65271895155898,51.09075762056401],[-122.65689615040448,51.09075814458836],[-122.6633475635964,51.09285958232891],[-122.67071955358307,51.09834052282772],[-122.67764558424393,51.10387684142185],[-122.68283139589455,51.109358599825335],[-122.68819860452516,51.11146415587918],[-122.69329049910183,51.11477531355584],[-122.6962254706705,51.11957565651345],[-122.69796012171514,51.12396939881102],[-122.69923353986623,51.12648288982566],[-122.70888946294008,51.13064526626222],[-122.71381053421764,51.13360542470033],[-122.71526706497588,51.13617569264165],[-122.7179212120814,51.1411445723864],[-122.71892711726863,51.14400497038018],[-122.72166932730002,51.14856901184736],[-122.72268404409132,51.15131556371121],[-122.7243314324434,51.15422596621024],[-122.72697775185873,51.15719229055955],[-122.72934272652483,51.158732048162605],[-122.73453235618875,51.15946550322991],[-122.74016508165127,51.158655017641514],[-122.7479781382969,51.154871683076124],[-122.75221822868976,51.14880607985904],[-122.75421038305204,51.14565550166009],[-122.75601372692698,51.142341057642405],[-122.75974491846051,51.14164736590877],[-122.76573514636503,51.13923270188955],[-122.76845724288994,51.13842832829588],[-122.77153738422398,51.13762178048563],[-122.77553264837377,51.13801475413773],[-122.78092317216087,51.14326014857831],[-122.78477578142888,51.14839902739957],[-122.78841851238815,51.15130348409453],[-122.78943797806303,51.153249586346966],[-122.79322696609789,51.149182878371654],[-122.79804533130591,51.147513971063425],[-122.80458406530462,51.146412637995454],[-122.81148047561207,51.14571030866479],[-122.81512297043008,51.1452448364981],[-122.82266343954983,51.14534302166333],[-122.8255858633882,51.14773500859345],[-122.83105842383347,51.15052382669076],[-122.83562905909062,51.15331511946225],[-122.84009828611681,51.15633141084787],[-122.8461211875149,51.15866021799481],[-122.85131533330053,51.160361188190144],[-122.8559527505998,51.16143247901001],[-122.85916070569941,51.164283013274336],[-122.86251969900046,51.16399007588501],[-122.86979455742154,51.16322559197802],[-122.8755106562543,51.16200969915388],[-122.87615790377538,51.164008607925176],[-122.8773686272663,51.16634886041285],[-122.8813946045614,51.170224455776385],[-122.8866013046547,51.1730086051871],[-122.89152701504685,51.17510795715073],[-122.89554181940201,51.177328601003886],[-122.90258027731858,51.18079192274414],[-122.91077211119612,51.182939540933],[-122.91732851318375,51.18326206380345],[-122.92262508425944,51.184390610960534],[-122.9275422135033,51.184999735009335],[-122.9324623484815,51.18618887861706],[-122.93731674497708,51.18937146867228],[-122.93904927744792,51.190853977180396],[-122.94580837949806,51.192830896157496],[-122.953911054415,51.193831627110114],[-122.96274008726402,51.19448851219844],[-122.96766545562338,51.19458050174594],[-122.97275853799997,51.195365871100904],[-122.98096275702855,51.19699466006434],[-122.9914440489583,51.19866950810596],[-122.99782349523761,51.19910273964078],[-123.00656070476002,51.198380607004026],[-123.01227470710305,51.19698760123611],[-123.02269071068554,51.19986295901613],[-123.0309865597728,51.20251479056419],[-123.03784041414131,51.20465811017063],[-123.0427735326851,51.205724695944966],[-123.04816849883048,51.20804197725037],[-123.05282473816293,51.2093996220876],[-123.05838325276817,51.21034705063561],[-123.06430916806025,51.210947150721786],[-123.06463383297674,51.20734358207308],[-123.06572923223605,51.19967627775731],[-123.06672314469012,51.190069949857765],[-123.06768810636838,51.18674856496651],[-123.06511161680827,51.184530732124735],[-123.05927506969138,51.183068052810704],[-123.05206943494255,51.18172542364921],[-123.0499493928016,51.178477938528694],[-123.0502722764338,51.17556160641255],[-123.05170870943917,51.172921472429834],[-123.05377054492301,51.17057002996794],[-123.0541675213375,51.165022269841124],[-123.05093784222915,51.16080618695564],[-123.04589288460937,51.156542432501254],[-123.04204432058421,51.1543271064752],[-123.03902885996497,51.15251034892002],[-123.04092337378609,51.15073147369066],[-123.04371842063121,51.148545420583396],[-123.0493156089728,51.144915758953],[-123.05401248099301,51.142324876998146],[-123.05983009190098,51.14161186575318],[-123.0645565018831,51.141591257548406],[-123.06707690864872,51.139634506135664],[-123.06977782856639,51.13710841815889],[-123.06974633785268,51.134765125665844],[-123.06826585238099,51.13225272106245],[-123.07241928446551,51.12983341944278],[-123.07705378256905,51.12901468954778],[-123.0805183406617,51.13031307417866],[-123.08738164502392,51.134795365403654],[-123.09451386664055,51.13825188120296],[-123.09935225668055,51.14045496245399],[-123.10307330419997,51.14003958763983],[-123.11061568141217,51.139204305704816],[-123.11596798201177,51.13791715585895],[-123.11785389997046,51.13665350402371],[-123.12275000141642,51.13577051342644],[-123.13019549730512,51.13464393844498],[-123.13418210299879,51.1334278703557],[-123.13923734481519,51.13139640647971],[-123.14248152310746,51.12880721669991],[-123.14428121657919,51.127085497964465],[-123.14858316834616,51.12294654005013],[-123.15046335343399,51.120185574490186],[-123.15210508232889,51.11355082923804],[-123.15185201224088,51.10834682602554],[-123.15107677009371,51.10526424568005],[-123.15155387453682,51.099829313451046],[-123.1538715956403,51.09535461487363],[-123.15768587056507,51.089386127589286],[-123.16234774742546,51.08513157250752],[-123.16866682226048,51.08200691158822],[-123.17388729703195,51.0783820227967],[-123.18111265858386,51.07536536577086],[-123.18643417369418,51.07327789120583],[-123.19041749528006,51.072226651148505],[-123.19466849436337,51.07146106117023],[-123.1949272103532,51.069625427041586],[-123.20126901238257,51.06901951177199],[-123.20605253081018,51.0672771880658],[-123.20857648441287,51.06646089461566],[-123.21887830185474,51.063314290617335],[-123.22537244666775,51.060244790623535],[-123.23060074065903,51.05798338673577],[-123.23688580633345,51.05388261167188],[-123.23959001970364,51.05198111802893],[-123.24325097880046,51.048239026186664],[-123.24618587441213,51.044677295574324],[-123.25056261429724,51.03950353704558],[-123.25231747202622,51.035603332532474],[-123.25433599881313,51.03159103292922],[-123.25574109739662,51.02872121717513],[-123.25621573279706,51.02380009892541],[-123.253229890431,51.018501299168854],[-123.25148238511593,51.01651142832836],[-123.2509693439603,51.0125646871889],[-123.24892552219436,51.01006204003611],[-123.24525739299767,51.007054518597116],[-123.24422091482509,51.00465844313977],[-123.2430947099364,51.00163841929981],[-123.24376198472181,51.00054162096628],[-123.24376134332996,51.000090613947584],[-123.24685365880548,50.999240840490444],[-123.25102973621894,50.99840233409775],[-123.26770289061609,50.99739087365076],[-123.27557788444537,50.99696035864114],[-123.28591317922994,50.99643037996825],[-123.29134064218752,50.99588008979418],[-123.29659374670673,50.99561402997481],[-123.3011414909311,50.99379923098185],[-123.30425538973905,50.99044301249217],[-123.30701815016468,50.98627909769725],[-123.30931539597647,50.98320138217208],[-123.31167903315857,50.98138270001094],[-123.3165708558871,50.98139970256801],[-123.31962961695412,50.982721792847464],[-123.32410474164037,50.987543314428876],[-123.3259733148203,50.99206728918151],[-123.33000762119799,50.99522292075524],[-123.33281735730438,50.99500604114952],[-123.34106090919822,50.99411581907337],[-123.34332918218553,50.994123421971956],[-123.34928541146068,50.99545864480949],[-123.35425671656927,50.99656479797193],[-123.36313201102014,50.9970514214135],[-123.36792572396607,50.997065525476415],[-123.37617532623827,50.997033818519455],[-123.38368215496865,50.99677137320732],[-123.39004134533938,50.99490592671236],[-123.39522886400286,50.99086318322363],[-123.39778598374086,50.98909667620091],[-123.40151112909078,50.98613397946442],[-123.4050781905163,50.98220266939028],[-123.41017234718561,50.97947179387559],[-123.41415721548215,50.978396038454534],[-123.41967501851123,50.97892391598538],[-123.42482482609694,50.98088582138205],[-123.426797370833,50.98180262255237],[-123.43232321883931,50.98096200531409],[-123.43958322341854,50.97898019424196],[-123.44638305057677,50.97705260771431],[-123.45057423722469,50.97409444471563],[-123.45366431558094,50.971928839343306],[-123.45711892437204,50.96936706650811],[-123.45875693968358,50.96764860108477],[-123.46266762176782,50.965830981023736],[-123.46908896027306,50.96624714184793],[-123.47224614840341,50.9673993261691],[-123.47802186267197,50.96889890230399],[-123.48345424321447,50.96890845371025],[-123.48881027291485,50.966981931241065],[-123.49242842819048,50.96527132404069],[-123.49824944529574,50.96139480570555],[-123.50587230660452,50.956379822353874],[-123.5113373192582,50.95015514199552],[-123.51452775593174,50.94559214122749],[-123.51553811212335,50.94485186713646],[-123.52578303981166,50.93897759882886],[-123.53376016162939,50.93567525136626],[-123.53783916074478,50.933797002799565],[-123.54661894891606,50.93140935740863],[-123.55149548519604,50.93107671630048],[-123.56035224305246,50.931948043960894],[-123.56876077245005,50.93372995455808],[-123.57489296092811,50.93677221267984],[-123.57994404708799,50.93900684350619],[-123.5855782426111,50.931527774431935],[-123.58939973775084,50.925927274437726],[-123.59430840223756,50.918900496540516],[-123.59704539387315,50.91541666147666],[-123.59731197823244,50.914961868801626],[-123.60104325575753,50.90913099888491],[-123.60394509068654,50.90467670263029],[-123.60621583063454,50.901361245439205],[-123.60785468922451,50.898673601318734],[-123.6095825783972,50.89644664925076],[-123.61355619073683,50.89427986114647],[-123.62124057335733,50.894058480242],[-123.6236857158817,50.89411932257448],[-123.63072298394795,50.895898016451774],[-123.63632394262513,50.89738933895648],[-123.64408325962837,50.9008817486704],[-123.65075125420024,50.902948446578726],[-123.65410064297386,50.90369303502094],[-123.65817105364299,50.902093373255774],[-123.66116194859468,50.899353504525344],[-123.66244122831166,50.89449495742425],[-123.66244473907945,50.889803530542345],[-123.66245737773363,50.88711377978723],[-123.66290887201949,50.885284545790135],[-123.66490425581013,50.88168814049419],[-123.66735676461896,50.878596534325574],[-123.6709712803902,50.8772272916764],[-123.67530570177904,50.877058401192585],[-123.67809863439746,50.87780200485891],[-123.6870415083248,50.87986713916745],[-123.69127560844706,50.881643141238264],[-123.69624474152502,50.883245948446095],[-123.70464358854386,50.8798696213592],[-123.71395552596826,50.87558526076773],[-123.71937272586797,50.87398618132257],[-123.72208834404536,50.873185564795556],[-123.71983076905026,50.86947024697695],[-123.71660066267242,50.85583921143249],[-123.71651847048076,50.84909441571455],[-123.71796883663396,50.83878541922383],[-123.7197805578779,50.832249261892194],[-123.713818843894,50.83208554347996],[-123.69900134098619,50.83109678056663],[-123.69357821102524,50.83069088693171],[-123.69328926665857,50.829954271382],[-123.694544757432,50.81524481241226],[-123.69310521618462,50.80485527778944],[-123.68466823142647,50.799335863428304],[-123.67877177717703,50.797450654567825],[-123.66323040186613,50.796409829575836],[-123.65206402942643,50.79320596227602],[-123.64824335064964,50.79158730870173],[-123.6348636373437,50.789999853090826],[-123.62346979906363,50.78873944421169],[-123.61875148050044,50.78746968383539],[-123.61352799341658,50.78369287781314],[-123.60886620854014,50.777389603025846],[-123.60431009902587,50.774974581771865],[-123.59240387559552,50.77857697480685],[-123.57747968468315,50.783859613359105],[-123.56504264538425,50.79243705485555],[-123.54258246159297,50.791499234039065],[-123.5224316807129,50.78939201447843],[-123.50999561817612,50.78138290835501],[-123.49781507454212,50.78463564886787],[-123.48066448220143,50.78809652844132],[-123.47185816194438,50.78937224808005],[-123.45210564667484,50.793307516526625],[-123.44591804935592,50.794957104947294],[-123.43661485925374,50.79395111894197],[-123.42753137292868,50.790363824915886],[-123.42341878534677,50.78753861738128],[-123.41516039227972,50.784458507082235],[-123.40175034224985,50.78599408937495],[-123.3877731589168,50.78993026588609],[-123.3755771002372,50.79397059445467],[-123.36455573937214,50.797081803376315],[-123.3627654338043,50.788406858378934],[-123.35802878343341,50.78010090878216],[-123.34899018100627,50.77422338417249],[-123.3387948316255,50.77304018674018],[-123.32555750203481,50.77358990806233],[-123.32187275112237,50.77418703032432],[-123.31933468703936,50.77317906335906],[-123.31478330657114,50.77046773068469],[-123.3101292376759,50.76758406583991],[-123.30900484226464,50.76479534463515],[-123.31391643297486,50.761957479429334],[-123.31765750624058,50.75993059592484],[-123.32491916444992,50.757650871207446],[-123.3336023844318,50.754842852359054],[-123.34084043841325,50.751018939827595],[-123.34018514168221,50.750104509438565],[-123.33402487840124,50.74249281855787],[-123.33154451159615,50.73982638156133],[-123.3245884411303,50.73347473801676],[-123.318463820689,50.72843184363485],[-123.3068951449093,50.72502871062462],[-123.29988347178467,50.72581947748415],[-123.28411886871571,50.730843889709945],[-123.28322163277599,50.73113667112746],[-123.27424749893451,50.72708253317814],[-123.26222889612413,50.72413561403633],[-123.25184824229333,50.722488398932576],[-123.24374287514917,50.72259982758247],[-123.2373437873085,50.72217985032765],[-123.23073436632173,50.71965531783838],[-123.2236219333309,50.71358452608106],[-123.21795815012388,50.70773358536318],[-123.21393028219933,50.703414269023725],[-123.20935366255219,50.69767361936468],[-123.2066815381109,50.69391710324491],[-123.20678561372475,50.6888293548851],[-123.20252577530287,50.686684204266584],[-123.19890741297259,50.68493929634749],[-123.19928857838738,50.68087484558909],[-123.19978577883977,50.678129158120704],[-123.19586162459376,50.67358004416397],[-123.1917497360299,50.669780038062484],[-123.18838942400897,50.666883196915954],[-123.18850184081833,50.662825373375355],[-123.18791947370165,50.659684410777736],[-123.18509492108124,50.65639018700938],[-123.18263115698309,50.65434956198502],[-123.17522121193059,50.651247510362815],[-123.17416955471941,50.647255047234744],[-123.17337810969572,50.641830149454385],[-123.17276955553314,50.63777637006099],[-123.17184775714294,50.6355525868535],[-123.16766586153591,50.63272507293829],[-123.16164145978915,50.63218515308167],[-123.15213777609524,50.63361202039032],[-123.14300040791153,50.63572402997191],[-123.14335854912896,50.635434836737545],[-123.14456590658975,50.63091545810623],[-123.14287185332776,50.62572322841341],[-123.13841924939769,50.621632236871555],[-123.13291114067295,50.620125109495106],[-123.12426477546641,50.61857154182437],[-123.11580253731435,50.61724457742275],[-123.10473497805145,50.61485125412139],[-123.09932584593572,50.61293533011162],[-123.096430924484,50.61175061294383],[-123.09388690063317,50.60907964723677],[-123.09457049956067,50.60616415469118],[-123.09449703781921,50.600732732831446],[-123.09012905981426,50.5965310194703],[-123.08424668026419,50.593012667162085],[-123.08046549623961,50.59178007108451],[-123.07135721009446,50.587653676440674],[-123.06357338159289,50.58340856864811],[-123.05916253749321,50.58166180656239],[-123.05114518074993,50.57907076766654],[-123.04476688266303,50.57887680106001],[-123.03957704462454,50.580391041644916],[-123.03764072678297,50.58274027186443],[-123.03836139792016,50.59091032663689],[-123.03994431917208,50.59673004506638],[-123.03758789239203,50.60222519161003],[-123.03588027388163,50.60194763872653],[-123.03020940388988,50.60020387535601],[-123.02362801686641,50.59811738837198],[-123.01768316961945,50.596892758352695],[-123.00543292537525,50.60072191049088],[-122.996680009038,50.60447668491762],[-122.99628341118579,50.60173028049362],[-122.99439945460189,50.593511590495716],[-122.99496520983027,50.57911635114277],[-122.99374716948668,50.57449081577109],[-122.98877184225735,50.570455409225346],[-122.9848916948135,50.567387971217],[-122.98155408339775,50.566144771988306],[-122.97607554376931,50.566683284752266],[-122.97221912511074,50.56601186179204],[-122.96546752474391,50.564044590135005],[-122.96148923933727,50.56057735820477],[-122.95821722165685,50.556706635029244],[-122.95324941690635,50.552843280239124],[-122.94747697978774,50.54898005328519],[-122.94594149480781,50.54870126298518],[-122.94300326097968,50.55076803397412],[-122.94307419151308,50.5582561991438],[-122.94267780855716,50.56242731982886],[-122.93982911010747,50.56586442401895],[-122.93949722929159,50.56866595259481],[-122.94047408177053,50.57654701519802],[-122.9418677056177,50.582254907194475],[-122.94361853653469,50.58687381923502],[-122.94407125410355,50.58687164120145],[-122.93818137648009,50.5904987767033],[-122.93578769448874,50.59324685535736],[-122.93339519340864,50.596803065251535],[-122.92516887630013,50.59980874969844],[-122.91117027645004,50.601972110063926],[-122.90248024090872,50.60366224547367],[-122.9030267051785,50.60394496646859],[-122.89801617804825,50.60704936837301],[-122.89472785145342,50.61020384997123],[-122.8833418596509,50.61298573288173],[-122.8741128578004,50.61484860228239],[-122.86165021954565,50.61699954250603],[-122.85745435302111,50.62033253634282],[-122.85772224594147,50.621359587287714],[-122.85623119625531,50.625475822306775],[-122.84826588245788,50.62864299299298],[-122.84198618845097,50.63117738449877],[-122.83554450277512,50.63519728697983],[-122.83333644071872,50.63920461781419],[-122.83254433054579,50.64240577837038],[-122.82879372087919,50.64618705107328],[-122.82539014981342,50.64785482984424],[-122.82467178756544,50.64739824387387],[-122.81748174686219,50.64633211444683],[-122.80130290633224,50.64540853604655],[-122.79240700124754,50.64543435601106],[-122.7856825394796,50.64836427600618],[-122.78092699685547,50.65009514815404],[-122.77886212433681,50.65084198192553],[-122.7740324111164,50.65359780040971],[-122.7670217151622,50.65515601010034],[-122.75993193112103,50.65642878853964],[-122.75237105599892,50.65559048315319],[-122.74346860761375,50.65235361755662],[-122.73850506267814,50.6504818809631],[-122.73284840318885,50.65054997554238],[-122.72729415030585,50.652905475015906],[-122.72154355440443,50.65309108966114],[-122.7164059735269,50.65264137226723],[-122.71028379240467,50.64997038276438],[-122.7074794487908,50.64552268079104],[-122.70413769571283,50.642616417578985],[-122.69318083610078,50.64177969785346],[-122.68770510032657,50.64401532919584],[-122.67969084377775,50.64168814497925],[-122.67511967306154,50.64106955750187],[-122.66749607570615,50.64570870222914],[-122.66031703557042,50.649491153421934],[-122.6582458503453,50.650294068885614],[-122.65151806760592,50.6504737393106],[-122.64136038528923,50.65048727714497],[-122.63686545815222,50.65243811049651],[-122.62995079774129,50.656045110804804],[-122.62645071836447,50.6566204411642],[-122.62446920257473,50.65565212590124],[-122.62231229350184,50.65268477365972],[-122.62104328784031,50.64902819155884],[-122.62156953701398,50.646175287477746],[-122.62407477335121,50.64337336729484],[-122.62928805249446,50.64033859831564],[-122.63521516160334,50.63816266415012],[-122.63440235824874,50.6380481757495],[-122.62622818336949,50.637143257686866],[-122.61740607665271,50.63544349366414],[-122.60986801856576,50.633624712198504],[-122.60725185253746,50.632827815785504],[-122.60285130936958,50.629974809637325],[-122.60202973064047,50.62454962441113],[-122.60389337759133,50.61843625099538],[-122.60685469333708,50.614837422591386],[-122.61284669017056,50.608202632989716],[-122.6136441189922,50.60362881701047],[-122.60959830149523,50.60060794203594],[-122.60708033661939,50.5994727321826],[-122.60572841704658,50.59770017701267],[-122.60043422524136,50.59473694765061],[-122.59396932537332,50.59360387186383],[-122.58668982574379,50.59332796989687],[-122.58588238406904,50.593154795715],[-122.57618458568852,50.59007930525544],[-122.5712437311646,50.5880838926155],[-122.57049473394582,50.587517221461624],[-122.56989287317322,50.58706187873278],[-122.57024849249864,50.586410081491856],[-122.57002389494656,50.58631771168352],[-122.56985534280787,50.58627878648618],[-122.56958790558639,50.586214883952834],[-122.56935113277925,50.58611988870501],[-122.56919823688564,50.58596845904691],[-122.56913572857528,50.58579114280895],[-122.56902456383759,50.585625817368715],[-122.56881798862963,50.58550589348578],[-122.56854493237469,50.58546936442309],[-122.56825630907707,50.58545146736086],[-122.56797706304317,50.58542654646229],[-122.56770890563791,50.585372177835595],[-122.56744921725257,50.585299523592795],[-122.56718953039045,50.58522685976468],[-122.56695857370639,50.58512529273451],[-122.56675045595425,50.58500251087597],[-122.56655894391753,50.58487068011751],[-122.56635837319459,50.58478803811809],[-122.5661410532824,50.58478582759297],[-122.56587041026246,50.58474092955428],[-122.56559431227893,50.584721163460934],[-122.56537299533522,50.58460921421939],[-122.56513645436038,50.584511401222386],[-122.56487483973393,50.584440929725695],[-122.5646048854282,50.584387055424614],[-122.56432706138101,50.58434362267103],[-122.5640486883739,50.58433052813017],[-122.56377597199105,50.584382258897996],[-122.5634997132518,50.584387774616985],[-122.56283406250982,50.58432898436299],[-122.56094089855964,50.58348909102284],[-122.55992992047253,50.58272086083368],[-122.55908623140253,50.58207752772149],[-122.55687596611075,50.58108608664871],[-122.55550316856188,50.57991871624142],[-122.55402266830552,50.579073479837135],[-122.55283776012278,50.57877817458435],[-122.55181880970078,50.57883203949453],[-122.55077194080073,50.579019388897514],[-122.55060717676433,50.579023831737466],[-122.55041685852983,50.57901568109189],[-122.5502893915346,50.57899486333912],[-122.55014286698487,50.57896895713367],[-122.54998085582466,50.57896055935499],[-122.54951555808937,50.57898772610229],[-122.54922466023399,50.57902311673004],[-122.54903485867064,50.5790312777499],[-122.5487302808198,50.57901452438702],[-122.54833454421856,50.579056769596654],[-122.54807070448562,50.57908512670461],[-122.54794771125661,50.57909817442281],[-122.54766761165934,50.579084984102465],[-122.54754853626173,50.57902394840475],[-122.54747368411489,50.57898564713525],[-122.54722318736502,50.57888623580873],[-122.54689529842027,50.57880466795047],[-122.54652989981902,50.57870506081973],[-122.54623982454346,50.57866064297348],[-122.54590199900713,50.5786164235383],[-122.54567894678405,50.578597129385294],[-122.54547546275641,50.578645334695075],[-122.54529232674675,50.57868181316652],[-122.54511723659573,50.57870560714068],[-122.54503279088532,50.57870016892834],[-122.54501166826147,50.57869895517825],[-122.54498245936345,50.57868792908527],[-122.54491552459619,50.57866167272305],[-122.54483503662759,50.5786507447149],[-122.54458656196702,50.578617166895356],[-122.54439319550018,50.578579678981114],[-122.54422022213849,50.57852989018115],[-122.54413431981754,50.5784743784903],[-122.54408545371858,50.578443070392716],[-122.54397967668775,50.57839312030128],[-122.54373021854627,50.578326347122534],[-122.54354016036869,50.57833786369437],[-122.54348126667952,50.57834502810632],[-122.5433952270002,50.57836034343164],[-122.54331568173407,50.57838317306769],[-122.54314351944953,50.578391872166236],[-122.54285353269064,50.57836936773536],[-122.54267784911228,50.578331868688664],[-122.54262132636875,50.578308183141054],[-122.54255546693445,50.57829096223989],[-122.54250496481104,50.57828095557142],[-122.54246143084649,50.578272298791674],[-122.54216624423016,50.57822545358409],[-122.54136353570956,50.57811111804273],[-122.5404168085944,50.57798441802704],[-122.53988868667108,50.57790896832365],[-122.53973692390385,50.57788231848478],[-122.53952412001229,50.57784478382764],[-122.53911523994502,50.577805078663374],[-122.53877349555711,50.57783492033602],[-122.53859405228287,50.577892298228626],[-122.53846713276018,50.57795636536905],[-122.53829472607123,50.5780831119768],[-122.53807783102475,50.57823657269729],[-122.53782996310473,50.5783789590676],[-122.5376055904786,50.57849171063191],[-122.5374972116936,50.57854455298388],[-122.53737085548575,50.57857828881152],[-122.53712254683654,50.578588547811414],[-122.53685043473729,50.57849462764054],[-122.53659567262707,50.578359080446766],[-122.53640313402971,50.578310927621615],[-122.53628327874152,50.578329115165296],[-122.53616793014008,50.578380614908184],[-122.53604401437958,50.578451527861915],[-122.53596841804628,50.578491897830474],[-122.53593726840185,50.57850610158563],[-122.53590624795628,50.57851862737103],[-122.53588791933176,50.578527051129164],[-122.53587023156197,50.578550111022714],[-122.53573116817834,50.57863404375018],[-122.53538374267094,50.57878343407486],[-122.53506299418737,50.57890780396341],[-122.53496102595405,50.578946227453685],[-122.53474589594937,50.57891591487636],[-122.53424371136565,50.57884798349611],[-122.53367226835294,50.57889876070962],[-122.53313741576244,50.579117075279825],[-122.53285088880563,50.57927904160814],[-122.53279963544377,50.5793246655801],[-122.53278625145673,50.579337740266375],[-122.53279089406557,50.57934632189835],[-122.53281566539573,50.57936901383217],[-122.53279443158259,50.57955274088095],[-122.53270114977998,50.579937166751066],[-122.53242346921145,50.58023657506373],[-122.53193690299679,50.58035575810571],[-122.5316357795672,50.580408773765136],[-122.53158143796897,50.58042562618479],[-122.53153402157648,50.58044438549599],[-122.53148806986657,50.580673438706846],[-122.53119928006308,50.581070880345756],[-122.53053874219424,50.581244788051826],[-122.53006313874445,50.581244569350304],[-122.52989913293595,50.58126193970417],[-122.52973172942596,50.58127751284138],[-122.52954953244046,50.58127857466105],[-122.52943811652466,50.581255985111795],[-122.5294074055521,50.58124153506662],[-122.52938718058085,50.581251589615135],[-122.52933003472064,50.5812818453585],[-122.52927692510028,50.58132853418727],[-122.52926635415248,50.58139678805662],[-122.5292406336508,50.581478061110865],[-122.5291743540436,50.581535024534055],[-122.52909745887865,50.58156916124176],[-122.5290604622989,50.58165907699111],[-122.52906061561858,50.58179456713305],[-122.5289497087353,50.581879927979244],[-122.52868762647964,50.581953825350666],[-122.52845083337995,50.582043685204404],[-122.5283224589355,50.58212625168578],[-122.52822526054246,50.58224014773201],[-122.5281567922882,50.58237124754157],[-122.52799222844709,50.58255612182202],[-122.52771314876169,50.58280431409873],[-122.52757586268876,50.58297936264991],[-122.52756849147,50.58309774401752],[-122.52754922612941,50.58325567200867],[-122.52743125482327,50.58343244757709],[-122.52718840030325,50.583577774103375],[-122.52698158285436,50.58366856679074],[-122.52672093610519,50.58376948833196],[-122.52637327929544,50.58389804910226],[-122.52621315597395,50.58395657778729],[-122.52621924735642,50.5839921796347],[-122.52625102552962,50.584107295082084],[-122.52632326560372,50.584270886439725],[-122.52639392694243,50.58440913568335],[-122.526456170376,50.58451901398802],[-122.52630471928568,50.58469417630064],[-122.5256305668915,50.58492891124139],[-122.52485468387022,50.585107054697666],[-122.52451740468727,50.58519264326107],[-122.52442990251028,50.58524949861087],[-122.52436371114356,50.58528228462499],[-122.52430471864011,50.585290560444506],[-122.52410431034423,50.58520672076835],[-122.52379114575504,50.58502603867436],[-122.52364258908706,50.5849348237233],[-122.52358956886079,50.58495734431153],[-122.52341983854538,50.58502567882901],[-122.52317538500408,50.585145654266746],[-122.52298557145708,50.585267894622014],[-122.5229704512655,50.58537198402402],[-122.52306056513048,50.58548723268297],[-122.52309373747873,50.5855613503691],[-122.52307969884603,50.58558283139274],[-122.52306224799928,50.58562557688058],[-122.5229019598246,50.585800458668025],[-122.52258882445452,50.586076806583236],[-122.52240703086466,50.58623246865472],[-122.52236118158541,50.586276565961874],[-122.5222933393279,50.586330661301716],[-122.52221909084062,50.58637612842453],[-122.52214747429174,50.5864104255684],[-122.52205752249976,50.58645315303756],[-122.52196770099196,50.586494193530676],[-122.52193301327743,50.586508282930126],[-122.52193541377862,50.58652297415752],[-122.52190383523316,50.586588321876306],[-122.52182750500769,50.58672929098603],[-122.52178722259359,50.586884312244365],[-122.5217807029536,50.58699147657885],[-122.5217601712311,50.58707403442047],[-122.52175599292723,50.587150924265096],[-122.52176828475085,50.58724350286094],[-122.52174442737659,50.58734619447561],[-122.52169551101456,50.58740706042274],[-122.52166709745681,50.58743147378695],[-122.52165661487669,50.587475552211004],[-122.52164335562303,50.587555531066144],[-122.52163125387264,50.58764340735015],[-122.5216193109629,50.587752093010586],[-122.5215835524287,50.58789433031162],[-122.52152360258448,50.58805210936596],[-122.52146538740963,50.58818745621507],[-122.52143302621556,50.58826289813232],[-122.521421646643,50.58829570526236],[-122.52142073536048,50.5883074866219],[-122.52141800289814,50.588342812753716],[-122.52141424365004,50.58843713804448],[-122.52140643557485,50.58853808264766],[-122.5214025895293,50.588633529522255],[-122.52142118580798,50.5887589103662],[-122.52148768886829,50.58892795546986],[-122.52157393124229,50.58911616438074],[-122.52165454942445,50.58928564158278],[-122.52171891380357,50.589436630442556],[-122.52175176981466,50.58960630525419],[-122.52175149727945,50.58976988041405],[-122.52173206358401,50.5898839532213],[-122.52169693942886,50.58997224285076],[-122.52164213481062,50.59008633414165],[-122.5215945463001,50.590221446362996],[-122.52155334818727,50.59031966488473],[-122.52150503563878,50.590372679299605],[-122.52144075763098,50.59042632784951],[-122.52134414598521,50.59050931299108],[-122.52121421561634,50.59061150298277],[-122.52111751638743,50.590695609512636],[-122.52108677256882,50.5907272534049],[-122.52106688855329,50.59073281991279],[-122.5210394707571,50.5907443300936],[-122.52101747611772,50.59075431886918],[-122.5209960739346,50.59077950893561],[-122.52094401450647,50.59083522124271],[-122.52089669823859,50.59087534141149],[-122.52086854238155,50.590896389660486],[-122.52083581743011,50.59093077783007],[-122.52079495045297,50.590978969839725],[-122.52070001319106,50.59106314011032],[-122.52038701710522,50.59124561008809],[-122.51966687605264,50.59159298648292],[-122.51885573210656,50.591973489387726],[-122.51847877415008,50.5921595746361],[-122.51843434745852,50.59218516810665],[-122.51841829530292,50.592186914457876],[-122.5183682446412,50.59219377620407],[-122.51828621954644,50.59220245268178],[-122.51818341355595,50.5922054238817],[-122.51813211963326,50.592205500717654],[-122.5180598273995,50.592202680773575],[-122.51789446352778,50.592191317527735],[-122.51771783516531,50.592165552022294],[-122.51743209876035,50.592109954281895],[-122.51703823839846,50.592034664101526],[-122.51677862082595,50.59198437050314],[-122.51666210888068,50.591958803256816],[-122.51654990824701,50.59192324300088],[-122.5163793299919,50.59186505948287],[-122.51622036305294,50.59181680045247],[-122.51615109613026,50.591797766848494],[-122.51610080161477,50.59178494885671],[-122.51601071130756,50.591760765864464],[-122.51594492996809,50.59174239893075],[-122.51592578386028,50.59173842644414],[-122.5158580376026,50.59169976917639],[-122.51573576492116,50.59161161629523],[-122.51560854760773,50.59151881112833],[-122.51551779760632,50.59145750449142],[-122.51545479804736,50.59140324612118],[-122.51537053198793,50.591303915521046],[-122.5152635222716,50.59117857979718],[-122.51517198319787,50.59108182750737],[-122.51509815572715,50.591007558626046],[-122.51504974879893,50.59094757775595],[-122.51501987922204,50.59089942069917],[-122.51498441248059,50.59085502793313],[-122.51495147499043,50.59082363957077],[-122.51492781901005,50.59080940674021],[-122.51486005762872,50.590793792366405],[-122.51468707001062,50.59074395841739],[-122.51448055477185,50.59064754332978],[-122.51431278368088,50.59053042185429],[-122.51416720942632,50.59042354775934],[-122.51407733302428,50.590351023882114],[-122.51405269586094,50.59032664119694],[-122.51404350177371,50.59030836397266],[-122.51401885784297,50.59023844150134],[-122.51400557414128,50.59011322547251],[-122.51402136157567,50.58995519058747],[-122.51405228713077,50.589807191222974],[-122.51406786414611,50.589697495594564],[-122.51405471807341,50.5896161324183],[-122.51401879396334,50.58955485103571],[-122.51394438756662,50.58951091971608],[-122.51383219448718,50.5894753655894],[-122.51367258693506,50.58943551029249],[-122.51346913653197,50.58939090787555],[-122.51344834510694,50.58929412209889],[-122.51356891468618,50.589130376051855],[-122.51355826623882,50.58899399908545],[-122.51345383883064,50.588881109438354],[-122.51337380583897,50.58877291479219],[-122.51333280797724,50.5887086677551],[-122.51332374529812,50.588688703549025],[-122.51328525051896,50.58861498265886],[-122.51322279160696,50.588485409757496],[-122.51317691177259,50.58839290147804],[-122.5131444304122,50.58833286087343],[-122.5130958988674,50.58827455687445],[-122.51299246217545,50.58821734731076],[-122.51286049523333,50.58816318303894],[-122.51277747035651,50.5881392184997],[-122.51274619506951,50.588132049895705],[-122.5127295106655,50.58811915933419],[-122.51271678934974,50.58810077135995],[-122.51270772637052,50.58808081606198],[-122.51266032631926,50.58800793104809],[-122.51256901034357,50.587862845797005],[-122.51252654913411,50.58774908206331],[-122.51251449925738,50.58769923393581],[-122.51247182648788,50.58763380959813],[-122.51240671807598,50.58753844940325],[-122.51230734761462,50.587406036577825],[-122.51215618627997,50.58725738369137],[-122.51201624906089,50.587169229515965],[-122.51191654266161,50.5871323736197],[-122.51180281087582,50.58709395354791],[-122.51163084098361,50.58703122070113],[-122.51147045611098,50.586955925554165],[-122.51135308604641,50.58689602864652],[-122.51124754265467,50.58684324845307],[-122.51119150396266,50.58681338287408],[-122.51117473348454,50.58680161366012],[-122.51112631701888,50.586764674435514],[-122.511031029804,50.58669366870281],[-122.51089994053312,50.58662827702369],[-122.51075759421065,50.586594022349985],[-122.5106198009059,50.58656946260216],[-122.5105122575841,50.586542478512456],[-122.51041819403983,50.58650130083597],[-122.51024696845016,50.58642902771259],[-122.5100017402092,50.58635331747235],[-122.5097584947809,50.586274853540054],[-122.50954486744065,50.586179329006264],[-122.5093150604429,50.586087227017764],[-122.50905095374723,50.58600417619614],[-122.50878094720528,50.58592880089385],[-122.5084981142116,50.58585921067706],[-122.50820765967391,50.5857966931525],[-122.50791646604911,50.585743703978245],[-122.50763938517147,50.58569115705281],[-122.50744830571215,50.58564693106858],[-122.50739126972671,50.58562995744381],[-122.50729912720783,50.585609641928386],[-122.50706924038309,50.58556419687815],[-122.50683406202263,50.58551858518278],[-122.50675039221177,50.58550302358181],[-122.50672674206297,50.58539771780451],[-122.50666080066557,50.58515391509943],[-122.50659185474335,50.584903271897005],[-122.50653824016501,50.584728440522554],[-122.50647626334239,50.584570211510574],[-122.50643669479211,50.58446497228225],[-122.50639869442735,50.584385075345416],[-122.50634157575503,50.58418708027469],[-122.50628391504891,50.58383672487761],[-122.50625445547512,50.58351030840359],[-122.50624087077031,50.58327545276857],[-122.50623029056966,50.58304744644962],[-122.50622066807084,50.58289816486452],[-122.50621161010949,50.582832668726674],[-122.50620963103259,50.58265327899896],[-122.50622128965531,50.58216174217135],[-122.50623924433644,50.581429802915814],[-122.50625554247515,50.58081023616772],[-122.50621822400562,50.5805167351733],[-122.50609776488587,50.58038309456901],[-122.5059920486897,50.58026452434445],[-122.50594806428522,50.58019343348556],[-122.5058980045167,50.580132270842974],[-122.50582980625911,50.58005423991234],[-122.50578915360296,50.5800085468395],[-122.50574220733921,50.579975590483954],[-122.5056479664876,50.57991416413359],[-122.50553713375253,50.57983872432456],[-122.505409034428,50.579735200001636],[-122.50531536259548,50.57962094703552],[-122.50527040243844,50.57949416561366],[-122.50524166421684,50.57936340543749],[-122.5052342850036,50.57929908596149],[-122.50523417694178,50.579277720021764],[-122.50520310561548,50.579245262144944],[-122.50516511039419,50.57921089569701],[-122.50512798597491,50.579165322141385],[-122.50507474955216,50.57909956179174],[-122.50502477933294,50.57903727706874],[-122.50497683443577,50.578971682917455],[-122.50492875930405,50.57890776666423],[-122.50489873424425,50.578861849405264],[-122.50487837623535,50.57882804602001],[-122.50486548645213,50.57881190015595],[-122.50476987803422,50.578745365836724],[-122.50459035341318,50.57862111042574],[-122.50448451209773,50.578549756865016],[-122.50447453986808,50.57854157305321],[-122.50445344181435,50.57851729875036],[-122.50440140396934,50.57845888838707],[-122.50428021520736,50.578334774657904],[-122.50416825864878,50.57822837379586],[-122.50412175126442,50.57818980864986],[-122.50406770935258,50.57815719507393],[-122.50395579429977,50.5780957691345],[-122.50382186639644,50.57802185000232],[-122.50366618739699,50.57793207277334],[-122.50350909474827,50.57783774447273],[-122.50341473029401,50.57777800297008],[-122.50335261235941,50.577735573662146],[-122.50328413728347,50.57768394967522],[-122.50322258667647,50.57763422535625],[-122.50315075891547,50.57758024717205],[-122.50305374003851,50.577509178374974],[-122.50296149003279,50.57744499651184],[-122.50283916989983,50.57738100244664],[-122.50259224448247,50.57725967911177],[-122.50234893493754,50.577137344526065],[-122.5022656549201,50.57709424904444],[-122.50222001803137,50.57708999851004],[-122.5020981314404,50.57706592709988],[-122.50196873495106,50.57702475411455],[-122.5018014536829,50.576970588262846],[-122.50153297146268,50.576899180140394],[-122.5012940610287,50.57681126961987],[-122.50118614096603,50.576721299782946],[-122.50108143595206,50.57652181119353],[-122.50066162269707,50.57605492320187],[-122.49999644059555,50.575560640214185],[-122.49961264136384,50.57533550124955],[-122.49955362118577,50.57529878874303],[-122.49953067643929,50.57527557951384],[-122.49947190019871,50.57521301448049],[-122.49940482987203,50.57514344222699],[-122.49934265808491,50.57507907920179],[-122.49926496269399,50.57500973908985],[-122.49916954519576,50.57494095643879],[-122.49908370528642,50.57488540975329],[-122.49900637758866,50.574834070682336],[-122.49894117717923,50.574785919694115],[-122.49890993890882,50.574755703099854],[-122.49889400574496,50.57473327210411],[-122.49887326164985,50.574704510200355],[-122.49884598707146,50.57466879657831],[-122.49880578213173,50.57461750159069],[-122.49875935268076,50.57455532475172],[-122.4987012591587,50.574461298714205],[-122.4986211823423,50.57433172550352],[-122.4985533810941,50.57422615015882],[-122.4984951753785,50.57415628958975],[-122.49844179749002,50.57411525657464],[-122.49839385842732,50.5740951998669],[-122.49824283154888,50.57405952047296],[-122.49795216213117,50.57400089644371],[-122.4977225619638,50.57395263192217],[-122.49765394158825,50.573925735145394],[-122.49760410891197,50.57390730048276],[-122.49750842442317,50.57388742182088],[-122.49745970079358,50.57387745020323],[-122.49740957225305,50.573817404883755],[-122.49717678921022,50.57369651332745],[-122.49685795048951,50.57363644140291],[-122.49672348610639,50.57363782769355],[-122.49668534405025,50.573628189035595],[-122.49666139682549,50.5736178821415],[-122.49663466535142,50.57359792598804],[-122.49659099747352,50.573568441443896],[-122.49654552281079,50.57353945764569],[-122.49651006119689,50.57351810208651],[-122.49648319847702,50.573499832792116],[-122.49646806964503,50.5734897946526],[-122.49643582906403,50.573472480290285],[-122.49627936746094,50.57341583073068],[-122.49602748566019,50.57333593617667],[-122.49590992582132,50.57330187453662],[-122.4958630973827,50.57329027985155],[-122.49579426106395,50.57326618143884],[-122.49571858886591,50.57323906118578],[-122.4956620091645,50.573216482233484],[-122.49558967329521,50.57316922852606],[-122.4954684957651,50.57306814844399],[-122.49535591746104,50.57297015458338],[-122.49529914757056,50.57292733093325],[-122.49523928839712,50.57287877909409],[-122.49516693762503,50.57280903736834],[-122.49500604341458,50.57265049594456],[-122.49338428151913,50.57170662821985],[-122.49206558483435,50.570980301625454],[-122.48974777587487,50.570032406546304],[-122.48735828963673,50.569233985215554],[-122.48504188556065,50.56824779977255],[-122.48164760491943,50.56730335385317],[-122.47971960258452,50.56670994472576],[-122.47874301753198,50.56635969903919],[-122.47860130236664,50.56636363962801],[-122.45703986356538,50.56275302960728],[-122.45704062960972,50.56263106055453],[-122.45703985689285,50.56248373883074],[-122.45704558733398,50.56122121314824],[-122.45704553997751,50.56092999013015],[-122.45704653024319,50.560782724281694],[-122.45668911906452,50.56056331870001],[-122.45569011631545,50.560142430300445],[-122.45448042555289,50.559681638737395],[-122.45337623399656,50.55918316196883],[-122.45213319096663,50.55887701468014],[-122.45077904036569,50.5584784769748],[-122.45017291776486,50.5583208217369],[-122.44906330178124,50.558228040412],[-122.44803317420661,50.558068640285285],[-122.44739522307859,50.55797854200842],[-122.44510671190753,50.55808866808371],[-122.44442220196449,50.55816291147469],[-122.44282564025198,50.55819392107282],[-122.44190764992702,50.558136434037095],[-122.44089047779224,50.5579475797799],[-122.43997952492168,50.557845891574615],[-122.43951733164637,50.55779061065672],[-122.43901938321102,50.55751716819174],[-122.43852227685844,50.55716616469744],[-122.43805255290553,50.556960520471435],[-122.43759706712342,50.556909943777065],[-122.43686823456838,50.55689670598005],[-122.4358349892616,50.55691137704347],[-122.4348320526002,50.55694499242159],[-122.43250173862549,50.556735303618765],[-122.43087691016521,50.556543719790604],[-122.42949799817124,50.556304355322254],[-122.42825464535507,50.55602715787041],[-122.42774696559196,50.55585510602463],[-122.42717338366813,50.555600540784965],[-122.42623518495621,50.555286466888646],[-122.4255528089697,50.55508911478641],[-122.42491817848749,50.55482470285532],[-122.42407164656812,50.554491626304035],[-122.42338980263273,50.55426559935903],[-122.42288230298745,50.554180678427144],[-122.42186499105205,50.554039990540026],[-122.41966890931583,50.55354480544753],[-122.41833600083231,50.55315103792264],[-122.41759476989786,50.55282804842909],[-122.41721813795418,50.552564590437875],[-122.41688818557151,50.55229195787125],[-122.41647824256911,50.552202846658496],[-122.416158545716,50.55220096851133],[-122.41571653092109,50.55231490400276],[-122.4153377296791,50.55232292891337],[-122.41513942986131,50.552283366943705],[-122.4149297421181,50.55209837385267],[-122.41479426197452,50.55191353387368],[-122.4146140698664,50.55175760270793],[-122.41439035890009,50.551504697723054],[-122.41407408982451,50.55119369884926],[-122.41366899821774,50.55075558509747],[-122.4135198242573,50.550609657112666],[-122.41326355130782,50.55036637629933],[-122.4131476694436,50.55020183946046],[-122.41266298173264,50.54952107590744],[-122.41232420791219,50.54887201522688],[-122.41170157903736,50.547661111482995],[-122.41119793813851,50.54695273881306],[-122.41010099308403,50.546173483845386],[-122.4090650869492,50.545449029276604],[-122.40784157688245,50.54457400994607],[-122.40700141005715,50.54363378048492],[-122.40531131437422,50.5426070231511],[-122.4041456178757,50.5420717259192],[-122.4025067490573,50.541665598307354],[-122.40244837358654,50.54166652422446],[-122.40217904976045,50.541610010258324],[-122.40190439498768,50.541553889746055],[-122.40162915783098,50.54150506328046],[-122.4013560253301,50.54149621876858],[-122.40108160659867,50.54152556421476],[-122.40080724596046,50.54157627598047],[-122.40053731959702,50.54163780876935],[-122.40027254406913,50.54170119898854],[-122.40002020543464,50.54178579885781],[-122.39999852144882,50.54179184328406],[-122.39976646319164,50.54186584578944],[-122.39949629572193,50.541908261161105],[-122.39921273565203,50.54191931424784],[-122.39892940009112,50.54192755819278],[-122.39864805053296,50.54193305907645],[-122.39836493874775,50.5419385021377],[-122.3980831848779,50.54194905315517],[-122.39780940197966,50.54199246279391],[-122.39754783036862,50.542059890726655],[-122.39730203996731,50.542150877044605],[-122.39706262438577,50.54225049863227],[-122.39680424864012,50.54230003679073],[-122.39651750903924,50.54228455019416],[-122.39626913334654,50.54236364792078],[-122.39602519067067,50.542453566957334],[-122.39576994477831,50.54253018284873],[-122.39549675015004,50.5425882332929],[-122.39522334286016,50.54258273844072],[-122.39495000392033,50.542532265828726],[-122.39467458939781,50.54248565637729],[-122.39439827643156,50.542450270900254],[-122.39412205445434,50.54241375419412],[-122.39384610173545,50.54237388106823],[-122.39357204680685,50.542332377603955],[-122.39329812752746,50.54228918662417],[-122.39302836142389,50.54223826735623],[-122.39276297437357,50.54217680245082],[-122.39249379410296,50.54211858720265],[-122.39223012606014,50.5420577345183],[-122.39200692426665,50.54195490679877],[-122.39189660787872,50.54178827464283],[-122.39184362421264,50.54161170123894],[-122.39179963211686,50.541433161738375],[-122.39172871374798,50.541259937054605],[-122.39162553845313,50.54109241178418],[-122.39150984935881,50.54092672898451],[-122.39139411580523,50.54076161130134],[-122.39129266040031,50.5405946991399],[-122.39125188063728,50.540420203624635],[-122.39126816176316,50.54023913193992],[-122.39117018684145,50.54007289927807],[-122.39105075349005,50.53990990078202],[-122.3909223754612,50.53974830282144],[-122.39079585032339,50.53958564034213],[-122.39068184028247,50.53942113517722],[-122.390612781338,50.539246845019335],[-122.39059902007652,50.53906592176293],[-122.3904583208041,50.53892584583143],[-122.39019697506235,50.5388583248769],[-122.38993174704065,50.53879516612097],[-122.38969533311938,50.538703148341064],[-122.38949902522116,50.5385736426614],[-122.38929531133608,50.53844838490319],[-122.38909521182757,50.538322128671226],[-122.38889890803367,50.53819261289951],[-122.38870635390349,50.538060411850395],[-122.38851185898015,50.53793039631943],[-122.38830620809964,50.53780733149684],[-122.38808953730349,50.53768952150986],[-122.38785159556664,50.537594642973346],[-122.3875960426675,50.53752111450855],[-122.38733087079981,50.53745739314827],[-122.38706375771184,50.53739585699977],[-122.38679858733396,50.537332134360604],[-122.38654123103414,50.537259102452495],[-122.386293630212,50.53717458446378],[-122.3860500043579,50.53708457268171],[-122.38581026350472,50.5369901886996],[-122.38557070373213,50.536893561051684],[-122.38533484895602,50.536794804373635],[-122.38509718789223,50.536696555132835],[-122.38486124512976,50.5365989189957],[-122.38462168947217,50.53650228925738],[-122.3843838520931,50.53640627262241],[-122.38414615047591,50.536308577600856],[-122.38391021180539,50.53621093939981],[-122.38367440892262,50.53611162281984],[-122.38344045979697,50.53601123253451],[-122.38321405448843,50.53590490700966],[-122.3830325933825,50.535766875734],[-122.3828916523662,50.535608230913205],[-122.38272451415241,50.53546784952727],[-122.38244997079163,50.535433047721924],[-122.38217128234571,50.53544983738239],[-122.38189015621654,50.53547497624605],[-122.38160880407828,50.53550292280407],[-122.3813277667241,50.535526947649146],[-122.38104709038365,50.53554647654165],[-122.38076763403525,50.53557280049015],[-122.38052833336195,50.53556106520391],[-122.38031196347791,50.53543988401324],[-122.38012324056548,50.5353044177536],[-122.37999130093161,50.53514381303485],[-122.37980605922228,50.5350090172902],[-122.37958782580264,50.53477925444954],[-122.37945765146254,50.5346187064034],[-122.37932747804994,50.534458158173486],[-122.3792188083517,50.53429381246876],[-122.37916217913124,50.53411935971679],[-122.37914851086292,50.53393786864261],[-122.37912942233534,50.533757883144176],[-122.37911205031027,50.53357852028974],[-122.37909648495878,50.533398658512034],[-122.37907382782461,50.53321912332246],[-122.37905324869186,50.533035715528285],[-122.37894200988876,50.532881405973946],[-122.37873844055672,50.532755015412015],[-122.37864798146364,50.53258394834302],[-122.37855250766518,50.53240935315227],[-122.3783328636374,50.53230716793155],[-122.37808164622771,50.53222420313166],[-122.37782089994688,50.53214991415313],[-122.37755767023413,50.53208454864143],[-122.3772836481262,50.53204356082063],[-122.37700321290788,50.53201642406973],[-122.37673379745789,50.531962099936145],[-122.37648235964072,50.531881930924115],[-122.37623110323888,50.53179951819848],[-122.3759816997526,50.531716040794706],[-122.37573234268756,50.53163199755259],[-122.37548312160916,50.53154627587659],[-122.37523579826369,50.53145893324501],[-122.37499231568516,50.531367775043464],[-122.37479820620202,50.53125573704301],[-122.37454284636036,50.53118049117669],[-122.37428748664891,50.53110525368959],[-122.37403208299455,50.531030571906726],[-122.37377311199265,50.530956330825475],[-122.37351405079518,50.53088321967454],[-122.37325485530081,50.53081178577836],[-122.37299380860101,50.53074141532548],[-122.37273258202605,50.53067328738821],[-122.37246941385528,50.53060734444378],[-122.3722060657386,50.530543644005206],[-122.37194082150428,50.53048156327162],[-122.37167363486164,50.53042167647198],[-122.37140631372417,50.53036346688958],[-122.37113885806261,50.5303069345237],[-122.37086945990106,50.53025259606843],[-122.3705971711193,50.53021221449559],[-122.37031309116712,50.53020855614923],[-122.3700306825131,50.53020607620325],[-122.36974877155366,50.53019742244392],[-122.3694670864045,50.530185968542895],[-122.3692015760288,50.53012725491645],[-122.3689600105242,50.53003445409768],[-122.36875083532408,50.52991235834115],[-122.36853402712606,50.529797317522075],[-122.36828257110777,50.52971768605355],[-122.36801950548872,50.52965061093548],[-122.36775192224344,50.52959575720731],[-122.36747024136224,50.529584298239335],[-122.36718851502188,50.52957340382589],[-122.36690669905363,50.52956362129011],[-122.36662497297876,50.5295527254486],[-122.36634541629341,50.529536834989834],[-122.36606337410267,50.52952985871143],[-122.36578128710336,50.52952343801286],[-122.36549974259749,50.529510296193486],[-122.36522127292918,50.52948094415202],[-122.36494293979065,50.529449904582016],[-122.3646585970845,50.52942767284842],[-122.36442174061818,50.52934232967083],[-122.36421655765545,50.52921472379558],[-122.36402411429164,50.529082478569386],[-122.36379593743024,50.52897717652178],[-122.36354106099698,50.52889630634184],[-122.36326874205024,50.528856463051355],[-122.36298756477967,50.52883882861228],[-122.36270236664039,50.52882724221063],[-122.36242100930241,50.5288118404889],[-122.36213928901167,50.52880093327207],[-122.36185905364506,50.52881537135662],[-122.36158256820673,50.52882711573583],[-122.3612907263157,50.5288321760397],[-122.36110202581929,50.52876302158234],[-122.36100658313256,50.52858896681071],[-122.36090359600028,50.52842085416899],[-122.36083643064433,50.528246600899614],[-122.36078358531027,50.52807000082264],[-122.3607361149872,50.52789246121785],[-122.36071701190828,50.527713592796],[-122.36071566004772,50.5275336235606],[-122.36070193173542,50.52735381559314],[-122.36068287397691,50.527174390752684],[-122.36066386205174,50.5269944006021],[-122.3606341448442,50.52681575098096],[-122.36058663147361,50.52663876733517],[-122.36053022031041,50.52646261663718],[-122.36045953631951,50.52628824729977],[-122.36038700074097,50.526114941729915],[-122.36037151268756,50.525935075695834],[-122.36034712745327,50.52575603364003],[-122.36036492633156,50.52557950722212],[-122.36042152295157,50.52540368519181],[-122.36046597021175,50.52522521597855],[-122.36050165555298,50.52504589288047],[-122.36052491914879,50.524867296288825],[-122.360514760962,50.52468703786572],[-122.3604459318826,50.524511604286744],[-122.36029747106166,50.52435998349529],[-122.36010144644158,50.52422873682992],[-122.35988843674862,50.52411099436208],[-122.3596699176665,50.52399587772175],[-122.3594626027499,50.523873256047096],[-122.35926274291303,50.52374581336215],[-122.35905913438125,50.523621063228966],[-122.35884233547851,50.523506567897215],[-122.35860448521127,50.52341218144436],[-122.35835344510868,50.52332804063685],[-122.3581119376516,50.52323522445218],[-122.35787820300013,50.523133657250966],[-122.35764821853684,50.523029405633025],[-122.35741828012986,50.52292459722961],[-122.35718640072685,50.522821964730824],[-122.35695063605776,50.52272371143236],[-122.35671130471496,50.52262589837416],[-122.35646447535802,50.52253346151074],[-122.35621095688258,50.52245823052072],[-122.35594302198326,50.522408399421565],[-122.35565918262772,50.522380527685556],[-122.35537334616747,50.52237733861526],[-122.35509784296103,50.52239921883532],[-122.35482282926104,50.52243686704191],[-122.35455043069952,50.52248583684337],[-122.35427762263672,50.52253985749593],[-122.35400829085057,50.52259455837321],[-122.35373891337314,50.522649814889476],[-122.353474365241,50.52271085203212],[-122.35320796422577,50.52277295227514],[-122.35294178989461,50.522832243484146],[-122.35267259134692,50.52288525427708],[-122.35240172164468,50.52293708501307],[-122.35212913501879,50.52298830094674],[-122.35185524138686,50.523033841583896],[-122.35157841468133,50.52307198018047],[-122.3513025870031,50.52309778092433],[-122.35102306478734,50.523103784584194],[-122.35073984912786,50.52308998216021],[-122.35045754248388,50.52306496341955],[-122.35017912243366,50.52303557347535],[-122.34990106633813,50.523001696596246],[-122.34962536325921,50.52296058228527],[-122.34935187586522,50.52291392635565],[-122.34908431024012,50.52285958354662],[-122.3488371766478,50.522771059717954],[-122.34858579462959,50.522691383024195],[-122.34832053748038,50.52263037588409],[-122.34804940627194,50.522576480020675],[-122.34777574166746,50.52253205433597],[-122.34749999755739,50.52249149999589],[-122.34723451601003,50.52243328965832],[-122.34697938826686,50.5223563018354],[-122.34673022731803,50.52227108001548],[-122.34648870433261,50.52217879475536],[-122.34625129674619,50.52207933022659],[-122.34600385488416,50.521994720980395],[-122.34573449157838,50.52194087737117],[-122.34546304872383,50.521890905091325],[-122.34520774505133,50.521816156265906],[-122.34496057964735,50.521728179999116],[-122.34471341520813,50.52164020317333],[-122.34445811419852,50.52156545260352],[-122.34417758188123,50.521540475835856],[-122.3438970498748,50.52151549835959],[-122.34361624502563,50.521493884842876],[-122.34333615492926,50.521485222006675],[-122.34305550370301,50.5215052206076],[-122.3427749433,50.521524096944276],[-122.34249526266952,50.52151038947692],[-122.3422151872129,50.52147979997986],[-122.34193732888622,50.52144366000863],[-122.34166662203165,50.5213847059901],[-122.34139752563229,50.5214146352095],[-122.34112939955101,50.52147609230124],[-122.34085383383125,50.521520426345745],[-122.34057219421311,50.52153083193259],[-122.34029360781805,50.521503660283926],[-122.34001714760569,50.52147205976034],[-122.33973924587987,50.52143647058529],[-122.33946319629825,50.52139982617925],[-122.33918723905587,50.52136205056097],[-122.33890947505076,50.52132478146412],[-122.33863758759995,50.52128040024398],[-122.3384226138306,50.52116591385554],[-122.33824324764832,50.52102617828099],[-122.33805642683242,50.520891261593775],[-122.33784340003535,50.5207745889935],[-122.33761930488998,50.52066374054404],[-122.33738581143142,50.520559895811516],[-122.33714449916584,50.520465346953756],[-122.33689685558174,50.52038351666552],[-122.33663121769779,50.520327523962024],[-122.33635174619731,50.5202896340471],[-122.33607607206743,50.520248485999325],[-122.33580256989836,50.52020235287414],[-122.33552902229923,50.520156784335306],[-122.33525737372719,50.520109586420205],[-122.33498812578709,50.520054595098436],[-122.33471647839716,50.520007395855664],[-122.33443491185989,50.519995287804186],[-122.33427113977369,50.51985943339961],[-122.33414722909653,50.51968947510273],[-122.33402805596855,50.51952641136078],[-122.33392875854993,50.51935782288246],[-122.33384201803942,50.51918684183272],[-122.33375889256814,50.5190148464277],[-122.33367752817364,50.518842918034245],[-122.3335944492463,50.51867036614415],[-122.33352017675085,50.51849810485527],[-122.33349219728314,50.51832118211602],[-122.33341806233574,50.51814724284281],[-122.33335287096716,50.5179719073814],[-122.33328944123716,50.5177966299877],[-122.33322601200037,50.51762135252024],[-122.33315901573512,50.517446514977664],[-122.33308845175054,50.51727212632672],[-122.3330534756101,50.51709441433311],[-122.33304162190122,50.5169146588126],[-122.3330333364839,50.51673445428361],[-122.3330073037143,50.51655534607914],[-122.33294929714208,50.51637856478595],[-122.3328589073434,50.516209143892084],[-122.33267957812623,50.51606939849243],[-122.33246130485267,50.515952540429275],[-122.33227772520866,50.51582165046131],[-122.33216069467977,50.51565416485744],[-122.33208019095443,50.51549349932499],[-122.33221878585078,50.51533108237952],[-122.33234324623345,50.51516875625122],[-122.33245899192845,50.51500501761102],[-122.33248565553431,50.51482934042107],[-122.33253011163623,50.51465200163401],[-122.33245516533194,50.5144881459733],[-122.33232837416408,50.51433214134623],[-122.33236917107872,50.51415637301877],[-122.33246085423835,50.51398452534475],[-122.3325987586667,50.51383051481965],[-122.33277282077411,50.513687819314846],[-122.33286960099842,50.51351839774978],[-122.33297676437108,50.51335155910355],[-122.33305778584578,50.51318049240492],[-122.33302754804714,50.51300968330855],[-122.33286476460371,50.512862044810326],[-122.33269304024228,50.512715802105184],[-122.33254294994349,50.51256409289038],[-122.33248453979812,50.51239235302071],[-122.33245688740307,50.51221150772347],[-122.33234315947404,50.512046937297946],[-122.33224569174868,50.511877838662755],[-122.3321554049329,50.5117072947013],[-122.33206687968556,50.511536808794254],[-122.33197298115131,50.51136726984695],[-122.3318774137737,50.51119655105785],[-122.33172682934935,50.51105100455637],[-122.3314991845138,50.510941147671616],[-122.33126385800158,50.5108389085255],[-122.33108039399448,50.51070689419825],[-122.33093966810337,50.5105487439746],[-122.3308114978063,50.51038819243804],[-122.33069416746676,50.510224625151196],[-122.33054964945467,50.51006971368055],[-122.33036280569759,50.509935903813286],[-122.33010601666253,50.50985881789962],[-122.32987525044254,50.50976572275019],[-122.32971262572569,50.50961640119226],[-122.32951101494761,50.5094905314334],[-122.32930384875587,50.50936785135049],[-122.32908918358395,50.50925054582516],[-122.3288569820304,50.509153460331014],[-122.3285750943304,50.50912446461995],[-122.32831305467805,50.509068567704674],[-122.32811158773912,50.50894100849515],[-122.32799061192713,50.50877900843859],[-122.32785694668517,50.50862107787762],[-122.3276812760894,50.508480318012815],[-122.32757818486925,50.50831553506216],[-122.32750223774404,50.50814264406308],[-122.32734865864929,50.50799081051088],[-122.32714502670211,50.50786824265477],[-122.32692287416793,50.507756307569636],[-122.32670826894932,50.50763843194656],[-122.32652320738613,50.50750467347371],[-122.32636593015945,50.50735495609186],[-122.32620323430203,50.50720675051858],[-122.32603502839152,50.5070611782924],[-122.32583126738238,50.50694028574541],[-122.32559583702954,50.50683972092494],[-122.32536415815997,50.50673646374365],[-122.3251592339879,50.50660822598248],[-122.32496949422782,50.50646699529692],[-122.32476356601792,50.506351093941284],[-122.32451012218775,50.506298278683836],[-122.3242205940474,50.50629825756976],[-122.32393106663939,50.50629822672884],[-122.32365009157824,50.506279927058976],[-122.32336916214108,50.50626107038432],[-122.32308759295408,50.50625005494795],[-122.32280631923108,50.506257051040194],[-122.32252701122275,50.50628322059261],[-122.32224900506645,50.50631506453091],[-122.32196928399358,50.50634628418298],[-122.32169123163793,50.506378683016905],[-122.32141471098818,50.50641393889654],[-122.32113949194667,50.50645486918746],[-122.32086900564042,50.506502694194005],[-122.32060459936713,50.50656253276311],[-122.3203462275061,50.50663494122813],[-122.3200925872208,50.506714253489015],[-122.31983894604332,50.506793565163186],[-122.31958052545296,50.50686653709203],[-122.31932173825494,50.50694398566552],[-122.31906507665775,50.50701701474794],[-122.31879743196238,50.506986774298205],[-122.31852540260145,50.50692377458119],[-122.3182545847708,50.50686756190816],[-122.31798118200017,50.50682138418108],[-122.31770759645774,50.5067774488888],[-122.3174340114484,50.50673351292077],[-122.31716047317856,50.50668901101322],[-122.31688675134305,50.50664676051138],[-122.31661085709669,50.506609493433025],[-122.31633256073737,50.50658001813408],[-122.316051495299,50.506562820813286],[-122.31576983430332,50.50655290839439],[-122.31548935552755,50.506571716214566],[-122.31521055526616,50.506548411135086],[-122.31493258163647,50.50651500240538],[-122.31465886294468,50.50647274640714],[-122.31439175746345,50.506414398062844],[-122.31411623371842,50.506372638569445],[-122.31383434456562,50.50636552961063],[-122.31355251881291,50.50637922262222],[-122.3132704916776,50.50637379904752],[-122.3130227852538,50.50629415726948],[-122.3128618059439,50.50614711199197],[-122.31272120444163,50.50598837255787],[-122.31260042989543,50.50582466835068],[-122.31245589561566,50.50567086304526],[-122.31228019279065,50.50553119988219],[-122.31209360639396,50.50539510648306],[-122.31191244030926,50.505257510355136],[-122.31174966143959,50.505110970058645],[-122.31163083699832,50.50494508000164],[-122.31149335196069,50.50479149825618],[-122.31125801108239,50.504690337535635],[-122.3110072091435,50.504605531612185],[-122.31103145496894,50.50443877125812],[-122.31116629507265,50.504279626029955],[-122.3112091103195,50.50410166972358],[-122.31121152340842,50.50392125541767],[-122.31124729591981,50.503743065040425],[-122.31132499955349,50.5035702083687],[-122.31142179309538,50.503401359672615],[-122.31152034644707,50.5032325693468],[-122.3116084732401,50.50306175012377],[-122.31168793483695,50.50288895154157],[-122.31179163027768,50.50272201417656],[-122.31193151495773,50.50256584254339],[-122.31207690930398,50.502407046741766],[-122.31222410938716,50.502247743932784],[-122.31233424632966,50.50208833444994],[-122.31225040827769,50.501926413374996],[-122.31216947835662,50.501750535703046],[-122.3120879982963,50.50158138727948],[-122.3118902226963,50.501452801870165],[-122.31171824258327,50.50131101094653],[-122.31160484770541,50.50114360872342],[-122.31137036794284,50.50105372185436],[-122.31111560603425,50.50097440660116],[-122.31094566608685,50.500829308221185],[-122.31082305954266,50.50066666410333],[-122.310720323261,50.50049849926338],[-122.3105703938215,50.50034619284237],[-122.31044511119882,50.50019470528824],[-122.31045665095374,50.50001065272515],[-122.31046104454327,50.50000011044755],[-122.31053597421018,50.49983953217007],[-122.31064327878518,50.49967159967507],[-122.3107694884462,50.49950990938588],[-122.31092299066488,50.49935981421583],[-122.31109701922196,50.49921771539206],[-122.31126428136038,50.49907200864225],[-122.31142166839946,50.49891754344786],[-122.3114778715211,50.49874846998818],[-122.31144855136961,50.49856755794995],[-122.3114121438022,50.49838697716449],[-122.31135049541629,50.49821286309794],[-122.31118788187933,50.49806463388026],[-122.31096428681784,50.49794979866251],[-122.3108645259333,50.4977884797625],[-122.31083530068413,50.497606445786666],[-122.31081288772018,50.497427445186524],[-122.31079760721826,50.49724756595834],[-122.31078936874485,50.497067911722105],[-122.31079706399439,50.49688767136909],[-122.31079929544562,50.496709489625346],[-122.31083983932801,50.496537646388255],[-122.31077476696497,50.49636229304068],[-122.3106082279111,50.49621899715693],[-122.31037871992476,50.49611183593358],[-122.3101641207842,50.495995057214714],[-122.30995887573567,50.49587183228444],[-122.30980326988147,50.495724399940514],[-122.3097022633375,50.495556847949786],[-122.30959949731793,50.49538923731215],[-122.30948589520587,50.49522464010399],[-122.30933992158397,50.49506739655303],[-122.30922423917131,50.49490667044929],[-122.30923018084134,50.49472636222635],[-122.30924844307735,50.49454647261927],[-122.3092667059025,50.494366573996736],[-122.30927607510411,50.49418751324105],[-122.30928363850232,50.49400895021609],[-122.30929476846194,50.49382993893311],[-122.30927773507487,50.49365000017381],[-122.30922684600596,50.49347399193504],[-122.30916002418897,50.493298578453874],[-122.30909496302856,50.49312322342324],[-122.30899753149504,50.49295522204275],[-122.30884591838159,50.4928022970534],[-122.30873204995315,50.49264106325177],[-122.30869380680713,50.492461534318664],[-122.30864833909328,50.49228402329732],[-122.30851303035499,50.49212600773714],[-122.30829863874557,50.49200698170635],[-122.30807471356454,50.49189662608844],[-122.3079549723616,50.49174251035256],[-122.30790274435292,50.49156139100489],[-122.30784685844195,50.49138184133355],[-122.3077128095553,50.49123005628381],[-122.30752972357996,50.491095200469786],[-122.30732839568965,50.49096760077017],[-122.30711979864782,50.49084257485232],[-122.30692027866766,50.4907144766356],[-122.30672812126326,50.49058269130318],[-122.30653420568756,50.4904508380751],[-122.30633080139349,50.490327107872815],[-122.30611045499676,50.4902163089147],[-122.30587321202816,50.49011788480724],[-122.30563208307937,50.49002382031394],[-122.30539285268266,50.48992813600802],[-122.30515200084503,50.48983071471847],[-122.30491277249061,50.48973502935591],[-122.3046696573397,50.48964371254044],[-122.30442409384075,50.4895607438521],[-122.30414745292303,50.4895554728211],[-122.3038985084826,50.48947070788192],[-122.30364808093394,50.489382519058594],[-122.30338243729649,50.489329244209145],[-122.30309171807315,50.489323501591095],[-122.30281391715823,50.48931087394164],[-122.30265391803005,50.48917451983454],[-122.30243173431423,50.48906477635841],[-122.30220228141215,50.48895760627386],[-122.30196528400995,50.48885636526454],[-122.30172213391533,50.48876559819681],[-122.30146875815495,50.488691926106206],[-122.30119701221074,50.48864857310784],[-122.30091341917428,50.488620560445725],[-122.30063334565186,50.48859267335736],[-122.30035244466896,50.48857487068153],[-122.3000914336352,50.4885082554263],[-122.29972488375796,50.4884589221066],[-122.29955615811043,50.488257043166016],[-122.29942089256073,50.48809902472171],[-122.29928391444781,50.48794038212827],[-122.2991544838159,50.48777580098263],[-122.29901199729646,50.48761979033248],[-122.29883052843057,50.48748721243129],[-122.29861739170518,50.487374955126946],[-122.29838944077059,50.48727119136471],[-122.29815042455691,50.487173248005845],[-122.2979075668264,50.48707911667478],[-122.29766290453321,50.48698548238843],[-122.29742194727244,50.48688972184904],[-122.29718663919981,50.48678965066674],[-122.29698151718078,50.48666584407091],[-122.29680607486526,50.486524466342956],[-122.29667253829447,50.48636705923512],[-122.29655002251107,50.486204396474704],[-122.29644010297775,50.486038779956885],[-122.29635000323559,50.485868201509376],[-122.29625990417472,50.48569762295297],[-122.29614994049308,50.48553257131396],[-122.29601830757593,50.48537353512508],[-122.29588310951343,50.48521494654155],[-122.29574244865127,50.485058424673774],[-122.29561438386757,50.48489894909757],[-122.29552966107117,50.484727424406074],[-122.29546651720658,50.48455099672181],[-122.29537813743787,50.484381041188314],[-122.29525928989297,50.48421680726127],[-122.29511863430673,50.48406028441082],[-122.29495043063085,50.483916904137324],[-122.29475824569012,50.48378620959291],[-122.29455508812708,50.483660213678405],[-122.29435748752702,50.4835310289581],[-122.29416169352979,50.48340134633389],[-122.293969605278,50.483269528773796],[-122.29379038877752,50.48313140182913],[-122.29364108175868,50.48297289619994],[-122.29348029456995,50.48282526233189],[-122.29326117698837,50.482721781347635],[-122.29301187529984,50.4826420428411],[-122.29274572328835,50.4825741029454],[-122.29247744266434,50.48251059885672],[-122.29221282093673,50.48244552487132],[-122.29194602549079,50.482385434016166],[-122.29167899972835,50.48232815092012],[-122.2914102607192,50.48227025207106],[-122.2911472635828,50.482206912201924],[-122.29089033027128,50.48213421932692],[-122.29064122059609,50.482052232307694],[-122.2903942414198,50.481965808307976],[-122.29015110521877,50.481875580412336],[-122.28990820038624,50.481782552544374],[-122.28966895472362,50.48168795497323],[-122.28942799693074,50.48159273276507],[-122.28918875328137,50.481498134137276],[-122.28894585246492,50.481405104121436],[-122.2887046665015,50.48131268871298],[-122.28846357386695,50.48121915120422],[-122.28822257457867,50.48112449159527],[-122.28798523447495,50.48102826234512],[-122.28779090640533,50.480902547949924],[-122.2877100171805,50.48072776948467],[-122.28759449513466,50.480566452755944],[-122.28741174384619,50.48042875361537],[-122.28719936202093,50.480308057191785],[-122.28696188946,50.48021351249382],[-122.28670733395931,50.48013358294892],[-122.2864671298218,50.480029381604396],[-122.28623623255054,50.47991931005936],[-122.2859691561683,50.47996997786156],[-122.28575833966731,50.480023095080625],[-122.2856932076393,50.479871335263915],[-122.28566770327167,50.479666918241236],[-122.28563025557845,50.47947897124572],[-122.28558308627808,50.47930194534714],[-122.28553596392214,50.479124354120266],[-122.28548347012794,50.4789477166626],[-122.28543449657656,50.47877118797823],[-122.28539983038266,50.47859233104402],[-122.28536868352805,50.47841359187083],[-122.285339342282,50.47823435525801],[-122.28530287152265,50.478055995566535],[-122.28524681502381,50.4778797962482],[-122.28517830343989,50.477704871341565],[-122.28509548573469,50.47753227451038],[-122.28498914834901,50.47736676271049],[-122.28483586365533,50.477214299408885],[-122.28464748621397,50.477080904682516],[-122.28444262759683,50.476954830312756],[-122.28425605845774,50.47682092852936],[-122.28411537165185,50.4766655118868],[-122.28402181830275,50.47649480361712],[-122.2839781773288,50.47631789423862],[-122.2839507414437,50.47613702888244],[-122.28389460016439,50.47596195003353],[-122.28379377991281,50.47579381411723],[-122.28369296115211,50.47562566910183],[-122.28361547704216,50.475452691221896],[-122.28349864013339,50.47528625869584],[-122.2834874598809,50.47512224960596],[-122.28375020320694,50.47505962969512],[-122.28397275016441,50.474949560525914],[-122.28416705094637,50.47481829191822],[-122.28435621071574,50.47468516831209],[-122.28458357037461,50.474580882493036],[-122.2848375086783,50.4744965965861],[-122.28504801181896,50.474382748066816],[-122.28520165308963,50.474230996945195],[-122.28535191283639,50.47407744989637],[-122.28552254465701,50.473933582049334],[-122.28569312882289,50.473790279187796],[-122.28585366433916,50.47364044950389],[-122.28602077422522,50.473496463016865],[-122.28623807648383,50.47338564713438],[-122.2864769099551,50.47329185472112],[-122.28664596062958,50.473145682968386],[-122.28673574395964,50.472976613909935],[-122.28678922754786,50.47279845716045],[-122.28692382806247,50.47264213460655],[-122.2870912079091,50.472494781600304],[-122.2872769688755,50.472359856999596],[-122.28750778285671,50.47225623894806],[-122.28772873295455,50.47214385086993],[-122.28784596588724,50.471984138923816],[-122.28789064752702,50.47180568709061],[-122.28794056082873,50.47162796809949],[-122.28800274205129,50.47145122637439],[-122.28809256272334,50.47128159956123],[-122.28823590466537,50.47112612574199],[-122.28842837081015,50.47099535547359],[-122.28865264555999,50.4708853352307],[-122.28883334866497,50.470747422757],[-122.2890291918413,50.47061844697387],[-122.28926480908659,50.47052060949856],[-122.28951038039482,50.47043041932429],[-122.28974956057371,50.470332133201445],[-122.28990965468316,50.470187348620925],[-122.29003756887205,50.47002630011946],[-122.29016210251987,50.46986344691675],[-122.29030529405232,50.46970965701504],[-122.29050460040622,50.46958136139842],[-122.29074354290093,50.469485881477716],[-122.29100332424782,50.469415840515765],[-122.29126328928247,50.469343555770095],[-122.2915230690036,50.4692735135797],[-122.291793594219,50.46922294936116],[-122.29208218552856,50.469210102411814],[-122.29231964719564,50.46913256442954],[-122.2925122309609,50.469000108867284],[-122.29269846886386,50.46885900140173],[-122.29289262584167,50.46872883812623],[-122.29308682743088,50.46859811818298],[-122.29328436181487,50.46846975861631],[-122.29348532118588,50.46834263782157],[-122.29371114520555,50.46823490895508],[-122.29398097078482,50.468192746769915],[-122.29426510698029,50.46816962352182],[-122.29454396545277,50.46814632326299],[-122.2948114230245,50.46809002615262],[-122.29507114358096,50.46802054083376],[-122.29533438234962,50.467951163425745],[-122.29561438169907,50.467892476117115],[-122.29587437700764,50.46781961515787],[-122.29607412857601,50.46770707025843],[-122.29622025864796,50.467560119340774],[-122.29633966932893,50.46739484829895],[-122.2964525039983,50.46722372523841],[-122.29657719025153,50.46705863006476],[-122.29673062929959,50.46690854849481],[-122.29690462383316,50.466765900930255],[-122.29708875772758,50.466628648077624],[-122.29727784506173,50.466495501114565],[-122.29748396954474,50.46636967051963],[-122.29773001820743,50.466294657455336],[-122.29801099067502,50.4662669207676],[-122.29828797449949,50.46622330493196],[-122.29856575982213,50.46621289734592],[-122.29884448643854,50.46623400215251],[-122.29912405120166,50.46626638987709],[-122.29940416933333,50.46629203834835],[-122.29968691031354,50.46628572510976],[-122.29994629126296,50.46622014933263],[-122.30019681899111,50.466133475861604],[-122.30042919288844,50.466031566735474],[-122.30063155795244,50.465908421368454],[-122.30081743607542,50.46577122085117],[-122.30100326670174,50.4656345852849],[-122.3011565941989,50.4654856189324],[-122.30128098247553,50.465323882917666],[-122.30145986569165,50.46518589029428],[-122.30165240653113,50.465053409260086],[-122.30185166007142,50.46492509253812],[-122.30205595925662,50.464799759851665],[-122.3022449323126,50.46466772572863],[-122.30236913124911,50.464508222559566],[-122.3024780492647,50.46434147086683],[-122.30263502380194,50.46419093261689],[-122.3028357994979,50.46406548111522],[-122.30305671693789,50.46395250508656],[-122.30328749803718,50.46384828787188],[-122.30352944145662,50.46375850501929],[-122.3038086355895,50.463730694953696],[-122.30409192397558,50.46373900993195],[-122.30443047627975,50.463740168117944],[-122.30464244790325,50.46369324629663],[-122.30457057413054,50.46355870803604],[-122.30439911631143,50.46339104365537],[-122.30423154534454,50.4632190097745],[-122.30413785187827,50.46304943722282],[-122.304053184029,50.462877349112844],[-122.3039432937702,50.46271173524601],[-122.30383344991044,50.46254556492043],[-122.30374151826842,50.46237605050701],[-122.30368365034653,50.46219979846763],[-122.3036221731172,50.462024550729616],[-122.30355893745492,50.46184924430091],[-122.30348677024331,50.461675322621566],[-122.30340562451107,50.461503359937254],[-122.30331735264222,50.46133227530029],[-122.30322722989094,50.46116226251204],[-122.30313720048888,50.46099111903554],[-122.30305068877296,50.46082010167617],[-122.30297135143881,50.46064763182922],[-122.3028938655067,50.460474098911085],[-122.3028217030557,50.460300176503054],[-122.3027548632906,50.46012587358812],[-122.30271481994743,50.45994740733386],[-122.30275577569462,50.45977050752459],[-122.30282130828319,50.459594993781444],[-122.30289554249823,50.45942089471675],[-122.30298880088976,50.45925137058971],[-122.30310640674703,50.4590860229696],[-122.30330354890818,50.45896157418563],[-122.3035244865297,50.45884803122048],[-122.303723661035,50.45872027544369],[-122.30392112195211,50.458591895384565],[-122.3041268705307,50.458469972375674],[-122.30434761914147,50.45835867989766],[-122.30457674736664,50.458252722744014],[-122.30480407017234,50.458147262823765],[-122.30502819560758,50.45803776407742],[-122.30524569799273,50.457922987725944],[-122.30545981993494,50.45780640684889],[-122.30567898772902,50.457692800844264],[-122.30591801892122,50.45759504363856],[-122.30611019244823,50.4574664837617],[-122.3061789042749,50.457295014827615],[-122.30618480686482,50.45711526368175],[-122.30619075570056,50.45693494720181],[-122.30618786462006,50.45675490308871],[-122.30617076575395,50.45657607722392],[-122.30613247149238,50.456397661021974],[-122.30608885515744,50.4562196343247],[-122.30605407816154,50.45604134414762],[-122.30605641816547,50.45586203189155],[-122.30610614974593,50.45568543182049],[-122.30616647922889,50.45550861786105],[-122.30622148670382,50.455332184421295],[-122.3062764930141,50.455155759888626],[-122.30632974098297,50.454979267741905],[-122.30637081545531,50.454800687569424],[-122.30624821225558,50.45463971606976],[-122.30610395605969,50.4544847621925],[-122.3059599756729,50.454326452217096],[-122.3058085488613,50.45417295048448],[-122.30563288329495,50.45403551116732],[-122.30541419874068,50.45392812929685],[-122.30516193116318,50.453843246274566],[-122.30490961896362,50.45375891899252],[-122.3046577208092,50.4536695483346],[-122.30439129549478,50.45358531633596],[-122.30412306627346,50.4535015903739],[-122.30386941252961,50.45341215928811],[-122.303644908016,50.453311327711255],[-122.30346408084755,50.45319395669598],[-122.30336153853906,50.45304657925129],[-122.30334098147533,50.45286706958775],[-122.30336039951845,50.45267314692861],[-122.30337967989504,50.45248090216049],[-122.30337152469482,50.45230068111258],[-122.30337040368389,50.452120694513326],[-122.30337631677807,50.45194094236309],[-122.30338755096373,50.45176080971561],[-122.30340757834536,50.45158096116315],[-122.30342940965701,50.451400614864745],[-122.30344763189476,50.45122127289975],[-122.30345877371016,50.451042261704565],[-122.30343974625518,50.45086560979903],[-122.30334085155617,50.45069530178885],[-122.303277679175,50.450519427439716],[-122.3032001631226,50.45034645785233],[-122.30308665207487,50.450182401259156],[-122.30295514337091,50.4500228100101],[-122.3028145212958,50.44986685557936],[-122.30266298261468,50.449715026651994],[-122.30250223875983,50.44956795609221],[-122.30233978312538,50.44942027030954],[-122.30217908770766,50.449272633930434],[-122.30202019735486,50.44912449961107],[-122.30186320399665,50.44897474573692],[-122.3017027412193,50.4488243090174],[-122.30159446827835,50.44866099183246],[-122.3015525437458,50.44848414191686],[-122.30152329599946,50.448303216019816],[-122.3014743849285,50.44812556609035],[-122.30142010645766,50.44794887073564],[-122.30135333672892,50.447773999007524],[-122.30126505312892,50.44760347512288],[-122.30115530222197,50.447436733734946],[-122.30103657651152,50.44727194215328],[-122.30092146029459,50.44710614611012],[-122.30082411211063,50.446938693297454],[-122.3007553575838,50.446766570874075],[-122.30072579189668,50.44658957455276],[-122.30072121131275,50.44640890402216],[-122.30072555983553,50.44622684882376],[-122.30072273684466,50.44604624584945]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":40,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"3","REGION_NUMBER":3,"REGION_NAME":"Thompson","REGION_NUMBER_NAME":"3- Thompson","FEATURE_AREA_SQM":57656090840.3855,"FEATURE_LENGTH_M":1825939.0951,"OBJECTID":4,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-122.30072273684466,50.44604624584945],[-122.3007472211895,50.445790632605345],[-122.30076549816461,50.44561072453175],[-122.30078548691259,50.445431440378236],[-122.30081246219477,50.44525295613449],[-122.300874464762,50.44507732305143],[-122.30093119210666,50.44490151391104],[-122.30096876228131,50.44472281618044],[-122.30102895967062,50.44454768056163],[-122.30113778888564,50.44438148238164],[-122.30126910637728,50.4442205331061],[-122.3014021811475,50.44405964229717],[-122.30150915766407,50.44389450662676],[-122.30157087984075,50.44372223774512],[-122.3016014137241,50.44354330493209],[-122.30161274483721,50.44336204895562],[-122.3016170438722,50.443180549361244],[-122.30161944642728,50.44300067800673],[-122.3016112536277,50.44282102000878],[-122.30159075451137,50.44264094243915],[-122.30155776388219,50.44246270649848],[-122.30150705451886,50.442285561944196],[-122.30145454181324,50.442108915003374],[-122.30142159844739,50.44193011360203],[-122.30137264834092,50.4417530275229],[-122.30129871720513,50.44157960673041],[-122.30121761591099,50.44140763815708],[-122.30113480347015,50.4412350455264],[-122.30105731229547,50.44106206347385],[-122.30100133219618,50.440884742400335],[-122.3009651511933,50.440702458371405],[-122.30090186374977,50.44052826742205],[-122.3007734472587,50.44037439716361],[-122.30059798825025,50.44023526955883],[-122.30040092820055,50.440101602107326],[-122.3002147398843,50.43996435612075],[-122.3000449725606,50.439820351753305],[-122.29987349389587,50.43967573209151],[-122.29970927878263,50.43952853829398],[-122.29955954325747,50.43937676185949],[-122.299433306191,50.43921790564839],[-122.2993377849036,50.43904994327179],[-122.29926039561064,50.4388758468332],[-122.29919017727626,50.4387002981236],[-122.2991181095025,50.43852581227492],[-122.2990549705856,50.438349932862195],[-122.29899543938058,50.43817305809878],[-122.29893225507021,50.43799774384299],[-122.29885468589089,50.43782588119066],[-122.29875565303918,50.437657809605184],[-122.29864399361017,50.43749324824595],[-122.2985197997173,50.437331075441676],[-122.29838658662491,50.43717141752953],[-122.29824782464318,50.43701494821905],[-122.29809625168437,50.43686424123939],[-122.29792284926357,50.436721793622944],[-122.2977494935779,50.436578789378736],[-122.2975979237454,50.436428081636535],[-122.29746647448093,50.43626848115509],[-122.2973530196377,50.43610441582671],[-122.29725228463806,50.43593571851564],[-122.29715326189294,50.43576764510446],[-122.29703444377122,50.43560452481848],[-122.29683630087142,50.435462940084285],[-122.29670913637378,50.4353585923554],[-122.27429796083754,50.42436458013047],[-122.27309052008168,50.42391963669415],[-122.27278442109431,50.42380642270858],[-122.26986182444726,50.42272786753377],[-122.27198744831755,50.420376117353385],[-122.27436926948091,50.421151889624475],[-122.27458043018599,50.42102739335619],[-122.2748001897081,50.42092680554296],[-122.27500811247967,50.42077745513855],[-122.27524965371627,50.42062641807001],[-122.27566526044373,50.42033052363334],[-122.27580908211733,50.42023188053272],[-122.27617954520963,50.42005593102128],[-122.27631263755714,50.41991643570585],[-122.27664078373326,50.41971938399934],[-122.27691172411691,50.419532223613885],[-122.27719709057733,50.419362409548604],[-122.27737322914344,50.41923504891267],[-122.27758696221849,50.41914325138906],[-122.27783717980111,50.41901499545026],[-122.27802727992193,50.418846487064236],[-122.27814524239373,50.41871941155201],[-122.27834051886005,50.41853083100917],[-122.27842874494839,50.41835833323671],[-122.27859650566583,50.41818288293742],[-122.27883093969302,50.41781846389891],[-122.27896410837435,50.417635102766646],[-122.27906587803282,50.417426500348135],[-122.27915063227641,50.41729606802529],[-122.27926876997888,50.417102636837114],[-122.2793430718254,50.41694935830732],[-122.27941293619939,50.41682853952104],[-122.27957712275634,50.41656805339598],[-122.2796230313827,50.41639581618279],[-122.27968281392086,50.41629041419819],[-122.27978680173773,50.416183113220555],[-122.27997434383435,50.41608818246418],[-122.28023013207846,50.41595617633569],[-122.28042765631874,50.415804217593255],[-122.28058795816229,50.41567632038801],[-122.28076666068029,50.4155175385736],[-122.2809099891632,50.41536038544307],[-122.28095377054932,50.41527806547411],[-122.28107476599041,50.41513534213298],[-122.28127075205677,50.41491641199591],[-122.28137954218808,50.414814894529265],[-122.28149147567332,50.41471799047149],[-122.28173272561995,50.41450563561291],[-122.28188747169693,50.414380915405346],[-122.28206385258223,50.41422881117505],[-122.2823606341559,50.4140694903262],[-122.28252716548286,50.41392998505264],[-122.28271575652391,50.413843525247756],[-122.28296020003816,50.41374205872513],[-122.28317764292834,50.413668938447806],[-122.28359092731509,50.413464033752874],[-122.28384655725375,50.41337644665],[-122.28410103578946,50.413324245590715],[-122.2843828013847,50.413325822511055],[-122.28473645901796,50.41328875164506],[-122.28508294216897,50.41321039012886],[-122.28531669621775,50.41311025181521],[-122.28550445178811,50.413055252527926],[-122.28572822741432,50.413012141196745],[-122.28603993609751,50.41292811192722],[-122.28624919755975,50.41291150706125],[-122.28705333992464,50.41270956866372],[-122.28736713738691,50.412685784488424],[-122.28769031439872,50.41263362807711],[-122.28837963294336,50.4125852978276],[-122.28855999634061,50.41257728539697],[-122.28886806095846,50.41255891972662],[-122.28899515103568,50.41251313002585],[-122.2890656552732,50.41249130504441],[-122.2890991298966,50.412491301562795],[-122.28923085071061,50.412474910216964],[-122.2894871445135,50.41233615216528],[-122.28966816971278,50.41221286875605],[-122.28978488975368,50.41212173188322],[-122.28995920767174,50.41199429126722],[-122.29005812630497,50.411905374349246],[-122.29026401589367,50.411758178156184],[-122.29036902753245,50.41163797199309],[-122.29062626243287,50.411423317801976],[-122.29079246328784,50.4112230532416],[-122.29109038493239,50.41102776527343],[-122.29139555577032,50.41080853258292],[-122.29147301105402,50.410702024670385],[-122.29159590880245,50.41057847500267],[-122.29171960859311,50.41050950696502],[-122.29194789071349,50.410304012423424],[-122.29204940129443,50.41024779833047],[-122.2922058355755,50.41018779868445],[-122.29238377386072,50.41014482291431],[-122.29274426032688,50.41002416654274],[-122.29298530656865,50.40998499334691],[-122.29326810272848,50.40995228248371],[-122.29351428857305,50.409936333013555],[-122.29381327186935,50.40992103361805],[-122.29490677812161,50.40992724356253],[-122.2951025825724,50.409945597513094],[-122.29528951001879,50.40996478799499],[-122.29564186127267,50.409986126597374],[-122.29603983670077,50.409988186189],[-122.296273814855,50.40997070670265],[-122.29654468807527,50.409954451160026],[-122.29673996884846,50.40993623489344],[-122.29699150607722,50.40989797068945],[-122.2971994339134,50.409832936992714],[-122.29761456153678,50.40973321231118],[-122.29790803231917,50.4096991549064],[-122.29834040439562,50.40960393598076],[-122.298577801467,50.40958769070873],[-122.29877487300642,50.40954759371272],[-122.29898968586262,50.4094844784219],[-122.29916220607187,50.409443002650725],[-122.29944859039952,50.409387892219385],[-122.29963986290986,50.40931105027308],[-122.29979959272214,50.40921065951749],[-122.29991772668113,50.408951414767806],[-122.2999638144449,50.408754440908446],[-122.29999476623873,50.40861318978138],[-122.3000496480919,50.40843787974258],[-122.3001313171078,50.408301138856515],[-122.30022055357628,50.40813653197038],[-122.30026502871642,50.40804522124029],[-122.30037086456174,50.407979021618196],[-122.30056262369312,50.40787464264191],[-122.30069094054038,50.40783506268359],[-122.30081634117226,50.40778806984431],[-122.30109643120916,50.407745126484585],[-122.30129980781386,50.40767093550571],[-122.3013898413709,50.407625577519696],[-122.30163944553858,50.407460133297135],[-122.30197080101084,50.40724287199806],[-122.30222657734627,50.407045023902974],[-122.30228853493408,50.40697679093754],[-122.30245912326635,50.40680814942769],[-122.30258008550936,50.406686215354064],[-122.30275641088897,50.40644747268563],[-122.30290825653016,50.40624951935652],[-122.30296559584495,50.40619463784465],[-122.30306925109777,50.4060473811645],[-122.30322393060291,50.40587933228942],[-122.30349062660305,50.40572007823508],[-122.30367076082703,50.40560686610409],[-122.3040076464975,50.405321740787706],[-122.30424143830703,50.40511246506737],[-122.3044564095034,50.404896370347736],[-122.30457311358172,50.40478329007848],[-122.30483799542043,50.40462453928766],[-122.30507219891574,50.404496257488084],[-122.30534195400419,50.40429942667273],[-122.30541028673265,50.40423928689237],[-122.3057266758636,50.40403219629094],[-122.30594944840679,50.403892850871074],[-122.30616534447539,50.40377295430218],[-122.30642675611537,50.403699565038636],[-122.30685292967152,50.40357149032773],[-122.30703958259214,50.40348605115869],[-122.30720660930153,50.403360582190714],[-122.30729197231302,50.403264450276474],[-122.30741111305322,50.40307833976871],[-122.30751648913369,50.40290976622699],[-122.30753859451255,50.40285483260129],[-122.30756492962075,50.402834340303244],[-122.3078713239062,50.40264153240929],[-122.30816902351097,50.402447318153975],[-122.30836138370485,50.40233506414653],[-122.30866367645686,50.40217080305044],[-122.30893770792844,50.40205058931253],[-122.30907259949208,50.40199491490873],[-122.3092549347795,50.40189751396217],[-122.30953553106563,50.401783141307],[-122.30981634016572,50.40164458847662],[-122.30994188138172,50.401573979809335],[-122.31014903454019,50.401474587920305],[-122.31033799308132,50.401274495955924],[-122.3106348186365,50.40111229711171],[-122.31071346581123,50.40107667538256],[-122.3110560981309,50.4009789871484],[-122.31117900905413,50.40091897015032],[-122.31147173907681,50.40084998685812],[-122.3116782897844,50.40075788754133],[-122.31176683358744,50.40073046789889],[-122.31201566427534,50.400681391569854],[-122.31213513889823,50.40066343267869],[-122.31248738843708,50.400577307875494],[-122.31285414211646,50.400421372624066],[-122.31313006289932,50.40032089046066],[-122.31326077328146,50.40025157503172],[-122.31346640871995,50.4000627137837],[-122.3135155402477,50.40000023852209],[-122.3135371053425,50.39997339549787],[-122.31375460447838,50.39976862426871],[-122.31396533929181,50.39960355154711],[-122.31434897015517,50.399413297109795],[-122.31463487053375,50.39931990097154],[-122.31494728314381,50.399203757561736],[-122.31530447518871,50.39907842250052],[-122.31565448371173,50.39893316878781],[-122.31579900964459,50.398867117469464],[-122.31601379408754,50.39880340301551],[-122.31614993916176,50.39877531388636],[-122.31641169934238,50.39867547766106],[-122.31651248536784,50.39864902843227],[-122.31684022078065,50.39851764306701],[-122.31695743599165,50.3984624963983],[-122.31716396461516,50.39837038658523],[-122.31733960785243,50.398268251446176],[-122.31747000500158,50.398224223175575],[-122.31764823795986,50.398176719396325],[-122.31782856571682,50.39814672305748],[-122.318095069858,50.398139836824846],[-122.31841873996042,50.398123044942096],[-122.31874636107804,50.3980793805508],[-122.31886329229383,50.398070894965414],[-122.31919182595843,50.39801602115468],[-122.31950380051232,50.3979482148995],[-122.31967733471198,50.39787187528917],[-122.31984432486556,50.3977677662018],[-122.32003559589474,50.397581790383846],[-122.32012814932017,50.3975050087568],[-122.32030028495085,50.39746742097082],[-122.32052000080188,50.397451101258866],[-122.32075411295641,50.397409390243546],[-122.32091231249328,50.39734828577845],[-122.32099845229777,50.39728535421998],[-122.321196936712,50.39720534218195],[-122.32144999427857,50.39701747533738],[-122.32158362627305,50.396933625905056],[-122.32187919217277,50.39682927639517],[-122.32208412564546,50.39677816252147],[-122.32228794228831,50.3967191289811],[-122.32263268086972,50.39665971762681],[-122.32294486881966,50.39658910177758],[-122.3232238424926,50.39653706990035],[-122.32329551385568,50.39652201131087],[-122.3234905885032,50.39650543468254],[-122.32383550645501,50.396443776144736],[-122.32410266262784,50.39640708725162],[-122.32431368234292,50.39634604869604],[-122.32463971327452,50.39621345988375],[-122.32491010690308,50.39613695264709],[-122.32518798141027,50.39605506929],[-122.32538234676213,50.39598222870997],[-122.3256262098567,50.395950387089854],[-122.32589228920729,50.395905227204466],[-122.32620446685591,50.395834602108124],[-122.3262848719873,50.39582039824051],[-122.3264870139693,50.39580348403244],[-122.32676112044928,50.395746216208316],[-122.32704181750138,50.39567286204118],[-122.3273219436339,50.395584857604874],[-122.32748804172398,50.39549138853781],[-122.32764271060876,50.3953868596813],[-122.32775114721606,50.39535277209077],[-122.32798061278699,50.39534632608221],[-122.32829725576464,50.395307336112594],[-122.32837311964381,50.395283982274286],[-122.32869843139521,50.39526833129174],[-122.32902289471329,50.39519810577687],[-122.32924163232786,50.39510694597233],[-122.32951885463545,50.39503290369346],[-122.32982773612234,50.39495934310308],[-122.33017878452192,50.39482195303733],[-122.33039628817781,50.394745929661816],[-122.33060373378306,50.394685318982106],[-122.33076635943482,50.39463447032669],[-122.33095284444454,50.39459340986228],[-122.33114986708219,50.394552698200705],[-122.33169890379112,50.39449271223846],[-122.33207298936044,50.39441849807614],[-122.33241732654993,50.39432024480551],[-122.33253057060648,50.39429193561151],[-122.33282952826366,50.39427540898805],[-122.33312858972911,50.394192516376364],[-122.33327140971356,50.39412526200759],[-122.33345972304548,50.39399652830404],[-122.33370287493256,50.393777948074174],[-122.33377149233678,50.39369192321478],[-122.33399158957457,50.39351869343779],[-122.3340392291326,50.39347415618965],[-122.33436118944357,50.3933042887706],[-122.33442285967304,50.39328215272455],[-122.33475560808088,50.39323973688401],[-122.33502295441701,50.393156923421714],[-122.33534946789122,50.393082806793274],[-122.33563365564889,50.392944312277926],[-122.33623149923727,50.392586181161796],[-122.33641179986896,50.392490919759915],[-122.33672982207598,50.392325981315814],[-122.3367991064072,50.39229678058002],[-122.33695843176298,50.392242997680775],[-122.33705490619535,50.39222594359508],[-122.33737827774368,50.39212529044201],[-122.33751169542884,50.39208696308855],[-122.33765572383571,50.39206979867201],[-122.33798094009622,50.39196808009291],[-122.33821890596218,50.39183479012591],[-122.33837568151354,50.391812422629464],[-122.33869467141008,50.39172230140901],[-122.33878245385138,50.3917038337403],[-122.3391455906302,50.391590435629176],[-122.33950385355011,50.391428502522906],[-122.34000285321645,50.39124648479562],[-122.34025257100521,50.39116363442755],[-122.34050925318434,50.3910382736365],[-122.34077370030361,50.39094746887804],[-122.34111078566399,50.39085119950712],[-122.34161124139085,50.39069452503711],[-122.34184787277091,50.39064273151252],[-122.34200826091116,50.3905974167722],[-122.34213959645528,50.39056294735208],[-122.34215756666842,50.390558484146375],[-122.34243655745499,50.390527209184626],[-122.34273295889567,50.3905201280442],[-122.34305648928749,50.39048244942682],[-122.34320903373766,50.39044699658855],[-122.34333921621148,50.39038324455835],[-122.34361278332338,50.390310172343504],[-122.34386090029925,50.390246948661854],[-122.34415217755617,50.39015084045081],[-122.34445519807312,50.38999663290464],[-122.34473383025797,50.38988266787231],[-122.34485076253159,50.38983029097899],[-122.34503154662585,50.38970691374624],[-122.3451889820784,50.38954564928779],[-122.34531030066084,50.38946079936181],[-122.34560998179002,50.38930422911715],[-122.34583821580384,50.38926902127699],[-122.34627654364077,50.389030986871795],[-122.34659558169153,50.388874485935666],[-122.346853082377,50.38876038546675],[-122.34708810711155,50.3885758093213],[-122.34726913940517,50.38847099944182],[-122.34738860440244,50.3883872109391],[-122.34771847889847,50.38816189762396],[-122.34782754204005,50.388076073964655],[-122.34801424729297,50.38796638422896],[-122.34826605104621,50.38787908640214],[-122.34866557112665,50.38766338256558],[-122.34880748653954,50.387606759733345],[-122.34899785781197,50.38753880453413],[-122.34912972228702,50.3874976051907],[-122.34936254482417,50.38736187335051],[-122.34942552519091,50.3873015314795],[-122.34967535106581,50.387107873343446],[-122.34983674845255,50.386897244831125],[-122.34997581513248,50.386766860947766],[-122.35019206594562,50.386531046495925],[-122.3502518944305,50.38646610132435],[-122.35028113465259,50.386431073602715],[-122.35036299833469,50.386333103620785],[-122.35044489763257,50.38634367631749],[-122.3510226752706,50.38627498973002],[-122.35131272328282,50.38621538146877],[-122.35162016029697,50.386136658079685],[-122.35186372075302,50.386020395560806],[-122.35213764521247,50.38596418603423],[-122.35264570784048,50.38590838274252],[-122.35318598311108,50.38591155749058],[-122.35356797335193,50.38584708958608],[-122.3539085232171,50.385816131514574],[-122.35425465782804,50.38578141523333],[-122.3545630561273,50.38575613591487],[-122.35492422432475,50.38573147727876],[-122.35534022803549,50.38572548454259],[-122.35565668086657,50.385709474208426],[-122.35602904677854,50.38572060515181],[-122.35635011888861,50.38575647356514],[-122.35674422002118,50.38580375091122],[-122.35711298449037,50.38581588440371],[-122.35713049984851,50.385817018549425],[-122.35713201942228,50.39090815449026],[-122.39999960894586,50.39665751253361],[-122.40869813242419,50.39782222722476],[-122.40904036759196,50.39774840660314],[-122.40931940058427,50.397716407174435],[-122.40959821062651,50.39768720700933],[-122.4098782419111,50.39766479377252],[-122.41015738141067,50.397653597650205],[-122.41043469367959,50.3976653928782],[-122.41071373574104,50.397699745890186],[-122.41099075499586,50.397737397651476],[-122.41127649356034,50.39775397148238],[-122.41150950321592,50.3978357495524],[-122.41167726559922,50.39798514274846],[-122.41181080807368,50.39814410686655],[-122.41195349008598,50.398298877164194],[-122.41210346742967,50.39845050053933],[-122.41226429680427,50.39859854333587],[-122.41243980365958,50.39873918857854],[-122.41262629666402,50.39887456597661],[-122.41282215252104,50.39900294039876],[-122.41303079606884,50.39912553838431],[-122.41325663133027,50.39923125580857],[-122.41350150314932,50.39931903664609],[-122.41375402586004,50.39939919196303],[-122.41400843932281,50.39947772538276],[-122.4142711717977,50.39954021534773],[-122.41454667092162,50.3995750012968],[-122.4148261289248,50.39960429136366],[-122.41510383065808,50.39963352386925],[-122.41537937585998,50.3996677423661],[-122.41565667740224,50.39970202599754],[-122.41593213442854,50.39973736490109],[-122.41620754702711,50.39977326849784],[-122.41648287106507,50.39981029319294],[-122.41675999633605,50.39984681762692],[-122.41703541025888,50.39988271916191],[-122.41731051355302,50.39992254177074],[-122.41757959077763,50.399971732904945],[-122.41771118289186,50.40000017373914],[-122.41784795687116,50.40002989766365],[-122.41811394429492,50.40009585745702],[-122.41837039276474,50.4001710722498],[-122.4186006036933,50.40026623978418],[-122.4187231035847,50.40043158502867],[-122.41877422527037,50.40060868502761],[-122.41882886071951,50.400785898556975],[-122.41891573956879,50.40095628184585],[-122.41896150357796,50.4011343330408],[-122.4189825403539,50.40131327622566],[-122.41899466069798,50.401493613585984],[-122.41901038351018,50.40167294270799],[-122.41903493488806,50.40185199037512],[-122.41906826939959,50.402031330934776],[-122.4191068302741,50.40221139822484],[-122.41915435305076,50.40238950585216],[-122.41921979945604,50.40256369419308],[-122.41931393291631,50.402731495007956],[-122.41945638830548,50.40288962010435],[-122.41963369096679,50.403030309986846],[-122.41985798224471,50.40313371309702],[-122.42011378434647,50.403217332450005],[-122.42036629574807,50.4032980376908],[-122.4205978838805,50.40339830101022],[-122.42081039317087,50.40351707546285],[-122.42104422875714,50.403611229271156],[-122.42132071472913,50.403656151011944],[-122.42155653145312,50.40374755153642],[-122.42176346378275,50.40387007560289],[-122.42196468245291,50.40399803793845],[-122.4221771981541,50.40411680968192],[-122.42238782521721,50.40423720244754],[-122.42256523114409,50.40437676562138],[-122.42274461748302,50.40451357627741],[-122.42297788439664,50.404615021963544],[-122.42321866869455,50.40471051976063],[-122.42342952374219,50.40482810151392],[-122.42361400666466,50.40496733339544],[-122.42375859702115,50.4051210131366],[-122.4238455916106,50.40529026985384],[-122.4239001190076,50.405469167004654],[-122.42395126667414,50.40564626349827],[-122.42399174055913,50.40582469782868],[-122.42401982699475,50.40600386586332],[-122.4239951626653,50.4061818888367],[-122.4238763806913,50.40634730950398],[-122.42381860079225,50.40652088940658],[-122.42379204487,50.406700542660374],[-122.42377945601261,50.406881762415786],[-122.42378281233042,50.4070618144058],[-122.42381103230815,50.40723929505916],[-122.42390488129423,50.40741102170854],[-122.42400967207035,50.4075780450059],[-122.424121669814,50.407743042485585],[-122.42423907214749,50.407906531767665],[-122.42436543782516,50.408068060876026],[-122.42450999589282,50.4082223044172],[-122.42469656417458,50.40835765989911],[-122.42492809832099,50.408459044290716],[-122.42517695673227,50.40854185922928],[-122.42543153029494,50.40861924375389],[-122.42568606069092,50.40869718408895],[-122.42593856862078,50.4087784324866],[-122.42618905412905,50.40886298895967],[-122.42640200362493,50.40897669938786],[-122.42656287325764,50.40912527588732],[-122.42676259343948,50.40925037203868],[-122.42695488757354,50.409380284661566],[-122.42712863622125,50.409521969858105],[-122.42730234193883,50.409664211159715],[-122.42748158540283,50.40980326577759],[-122.42767933258033,50.409931103472836],[-122.42788991265985,50.41005260668785],[-122.42807496374233,50.41018509058837],[-122.42819598957723,50.410347566700764],[-122.4283115228996,50.41051268164525],[-122.42843975621906,50.41067314045022],[-122.42856974753326,50.410833655716225],[-122.42869257868769,50.4109956224201],[-122.42880464599861,50.41116005806156],[-122.42889698642266,50.41132892304689],[-122.42897667362872,50.41150186961261],[-122.42904564061071,50.41167672881032],[-122.42910929275361,50.411851974429936],[-122.42917290139141,50.412027776376085],[-122.42922943726299,50.412203917099234],[-122.42927705443645,50.412381461756546],[-122.42931408507312,50.412559222978025],[-122.42932629436584,50.412738991293004],[-122.42934026021227,50.41291882516959],[-122.4293612108655,50.41309944192028],[-122.42942680082264,50.413272500123234],[-122.42954058964217,50.41343754758114],[-122.42963460596414,50.4136075898726],[-122.42972150620574,50.413778518357304],[-122.42981381141318,50.41394793842666],[-122.42992219831284,50.41411450263823],[-122.43002707157129,50.41428095347284],[-122.43011397388261,50.414451890480294],[-122.43019367125278,50.41462483549601],[-122.43027521444914,50.41479672423122],[-122.43033267318413,50.414983572762594],[-122.43047855925654,50.41512154595341],[-122.4307183675259,50.41520799540505],[-122.43098775626852,50.415276836217686],[-122.43125363059657,50.415345572146954],[-122.43151616922185,50.41541194172083],[-122.43178059850625,50.41547668908325],[-122.43202594889799,50.41555994011637],[-122.43225696059645,50.4156685953374],[-122.43249575554869,50.4157679457805],[-122.43258197704097,50.41592535368914],[-122.4325935351617,50.416113538682154],[-122.43266076587535,50.41628833804563],[-122.4327261958415,50.416463637154784],[-122.43278094983856,50.4166402749147],[-122.43281795308073,50.4168185993935],[-122.43279814636156,50.41700240050323],[-122.43277315609966,50.41718491007104],[-122.4328359154211,50.41734943444227],[-122.43300246184232,50.41749369164702],[-122.43320319733597,50.41762891843746],[-122.43340257507707,50.41775904478743],[-122.43360933785996,50.41788490991216],[-122.43374543784479,50.41803549139464],[-122.43381632388943,50.418208715610156],[-122.4338672590281,50.41838917002232],[-122.43393265206129,50.41856503333259],[-122.43401061390239,50.41873791816004],[-122.43409393644536,50.41890985975843],[-122.43417550291927,50.41908173573093],[-122.43425878278052,50.419254233530054],[-122.43434751274076,50.41942465733556],[-122.43444520771382,50.41959312023134],[-122.43455547125356,50.419758613516144],[-122.43468010486013,50.419920637300386],[-122.43481388165924,50.42007844756537],[-122.43497850983819,50.420224888309654],[-122.43515425995616,50.420364372007654],[-122.43522866999497,50.42053770788951],[-122.43524613276396,50.420718208737725],[-122.43519861340953,50.42089605236645],[-122.43519498630702,50.42107587471094],[-122.43512873918428,50.42126774484419],[-122.43522184266064,50.42127129765523],[-122.43549781156743,50.42121269760547],[-122.43577801970892,50.421189663205716],[-122.43606014929044,50.42118692402709],[-122.43634183539376,50.421189801955975],[-122.43662312345639,50.4211977226492],[-122.43690577107049,50.42121074261828],[-122.43718423954813,50.421232066626544],[-122.4374554883555,50.42127789939676],[-122.4377261620244,50.42133102750026],[-122.4380026844936,50.4213770284135],[-122.43827538311493,50.42142683737364],[-122.43853071575475,50.42149577280401],[-122.43875689873641,50.421599200746016],[-122.43896009048139,50.421726064103765],[-122.43917255798112,50.421847035202624],[-122.4394081957384,50.421942326361716],[-122.43966075776981,50.42202410753626],[-122.43991147542613,50.42210694446395],[-122.44014685073323,50.42220559933771],[-122.44037813670504,50.422311436796775],[-122.44060920300514,50.42242007370219],[-122.44083284258053,50.42253352781276],[-122.44104193606837,50.422652704145385],[-122.44123112231054,50.42277855523175],[-122.44134187233374,50.42309475357571],[-122.4414001386496,50.42327206386538],[-122.4414656126353,50.42344735628816],[-122.44157789030042,50.42361008931626],[-122.44173521374634,50.42376021535733],[-122.44184191052095,50.42392670944303],[-122.44186660831903,50.424105190664356],[-122.4418788699675,50.42428496397595],[-122.44188757259727,50.424465180784765],[-122.44190335041019,50.42464505789775],[-122.44193688092273,50.42482326469167],[-122.4419988000816,50.42499900000064],[-122.44205184230765,50.42517558384578],[-122.44208001309663,50.425354733992556],[-122.44209051826051,50.4255344505741],[-122.44208867589602,50.42571432852844],[-122.44207272816888,50.425894311428536],[-122.44204627800573,50.42607339932811],[-122.44200405218135,50.426251422937945],[-122.44192869554567,50.42642500007522],[-122.44183936433326,50.42659701289067],[-122.4417833414146,50.426771210583965],[-122.44179389029291,50.426950361505746],[-122.4418219720356,50.42713064206183],[-122.44183599277655,50.42731046215593],[-122.44184473967583,50.4274901218922],[-122.44182356094137,50.42766937867214],[-122.44181117085154,50.427848917560674],[-122.44183578224829,50.42802851968074],[-122.44188887195932,50.42820453756723],[-122.44198467941361,50.42837517907499],[-122.4420734564317,50.42854559475882],[-122.442039929675,50.42872501275453],[-122.44226330474852,50.42881990204211],[-122.44253599807138,50.428892757139565],[-122.44280290527584,50.42883778803848],[-122.44306537853613,50.428771987805824],[-122.44333088084521,50.428712464981324],[-122.44360099262794,50.428661528451805],[-122.4438742213517,50.4286157564899],[-122.44414876618352,50.4285756401023],[-122.44442462580918,50.42854119722808],[-122.44470202227468,50.42850960998047],[-122.4449794628791,50.4284774566674],[-122.44525857183203,50.42844648977637],[-122.4455354816546,50.42842106567327],[-122.44581497896647,50.42840753665955],[-122.44609754150272,50.428422220225706],[-122.44637887630425,50.428430116105474],[-122.44666425661738,50.428431393369124],[-122.44694783465279,50.42843317892079],[-122.44722908138014,50.42844219441265],[-122.44750214935206,50.42846556682646],[-122.44776452325084,50.42853526215187],[-122.44799203526954,50.428644891929416],[-122.44818451677406,50.42877420818565],[-122.4483638565457,50.4289137821201],[-122.44854869188062,50.42905071580192],[-122.44876139530491,50.42916943286256],[-122.44901946534989,50.4292491084373],[-122.44921547507155,50.42935604374647],[-122.44929487441442,50.429534024257585],[-122.44944499251665,50.42968671294048],[-122.44962627412274,50.42982409744738],[-122.44983898402015,50.42994281232732],[-122.45006870713848,50.4300468851137],[-122.45031575178093,50.43013239400267],[-122.45057435933676,50.430205335252246],[-122.45084101320475,50.430265605184864],[-122.45109588577967,50.43034124154154],[-122.4513447355944,50.43042624799338],[-122.45158985047479,50.43051394126351],[-122.45183483438824,50.430603312149415],[-122.45207788432955,50.43069487872987],[-122.45231724384313,50.43078856680454],[-122.45254513091336,50.43089369985847],[-122.45277099667032,50.43100214148267],[-122.45299136906598,50.431113222783964],[-122.45316893134353,50.43125328868737],[-122.45333005576647,50.431400709414206],[-122.45348564375789,50.43155131747818],[-122.45364303443048,50.4317014251409],[-122.45380781041936,50.431847270436194],[-122.45399487214199,50.43197865091171],[-122.4542244833533,50.43208439299456],[-122.4544335238431,50.43220522980106],[-122.4546314453411,50.43233301584653],[-122.45482743378025,50.43246298883281],[-122.45502355585799,50.43259127431113],[-122.45522701892516,50.432715862588026],[-122.45543237287991,50.43283882852009],[-122.45563957472712,50.432960719520985],[-122.4558485793669,50.43308210992663],[-122.4560539810715,50.43320450928047],[-122.45625749342865,50.43332853917483],[-122.45645542500817,50.43345632178738],[-122.45664039152517,50.43359211944191],[-122.45681801854063,50.4337316226747],[-122.45699358007818,50.43387500008746],[-122.45719371442777,50.433997228641694],[-122.45744650847654,50.43407728094463],[-122.45770497404614,50.43415244875053],[-122.4579273080493,50.43426133245092],[-122.45810129389825,50.43440239932969],[-122.45825145724216,50.43455508414226],[-122.45839256797673,50.43471084421891],[-122.45852110851561,50.43486958521047],[-122.45848421429366,50.43504777265874],[-122.45834350739962,50.43520128540416],[-122.45829685349854,50.435391531322495],[-122.45831371246179,50.43555850780685],[-122.45860410396502,50.43556385352148],[-122.45887608335691,50.43553430615086],[-122.4591390121532,50.43546285959663],[-122.4594072567395,50.435413507019454],[-122.45968903485827,50.43539383407772],[-122.45997274580598,50.435394455574645],[-122.4602474001709,50.435420661463766],[-122.46051603176338,50.4354787203478],[-122.4607807523701,50.43554170979447],[-122.46104951695885,50.4355980892109],[-122.46130052508246,50.43567863284518],[-122.46151461157231,50.43580298943955],[-122.46173344738418,50.43591174407893],[-122.4620037989346,50.43592543779293],[-122.46228988687672,50.43591825708403],[-122.46256880929852,50.43595752139556],[-122.46283168884541,50.43602158055467],[-122.46305430884904,50.436127079441675],[-122.46325939229273,50.43625395207197],[-122.46351053950302,50.43633281247191],[-122.4637201082806,50.43644745691516],[-122.46386119948632,50.43660377504117],[-122.46399495115104,50.436763799327835],[-122.46413433044816,50.43691949559454],[-122.46435453980388,50.437010861962506],[-122.46463738087576,50.43700020672801],[-122.46490277481209,50.437054777428585],[-122.46516544475017,50.437121630910056],[-122.46542605016515,50.43719234941976],[-122.46568872167776,50.437259201651024],[-122.46595148181132,50.43732493148369],[-122.46621230887128,50.43739284818815],[-122.46646918122696,50.43746626105256],[-122.46673163596401,50.4375359197073],[-122.4669583593625,50.437634235604875],[-122.46711928880828,50.43778499146999],[-122.46733225778762,50.43790142808452],[-122.4675545463487,50.43801140478002],[-122.46778052727825,50.438119258482814],[-122.46800466399617,50.43822816849351],[-122.46822488998657,50.43834201847347],[-122.46844335887872,50.438455811992476],[-122.46866749816283,50.438564729592834],[-122.46890113249992,50.43866494358119],[-122.46914993037853,50.43875158737903],[-122.46940901226256,50.438819440451525],[-122.46968905535631,50.438844669061],[-122.46993644849779,50.43892676800047],[-122.47017373525067,50.43902541306112],[-122.47040526613064,50.43913005493258],[-122.47062761173552,50.439239468904205],[-122.4708441573241,50.43935544513996],[-122.4710721307364,50.43946053901062],[-122.47132462909985,50.43954504623413],[-122.47156794207939,50.43963432554664],[-122.47176444945275,50.439758658565864],[-122.47193274218627,50.43990570915497],[-122.47211773744807,50.440042045285274],[-122.47232132542459,50.4401660356794],[-122.47254741620264,50.440272757612085],[-122.47280225042034,50.440350021324015],[-122.47299111741196,50.440481980711105],[-122.47312139631049,50.440641881351155],[-122.4732390180159,50.4408058684003],[-122.47340964723772,50.44094568545917],[-122.47361504463049,50.441069172870264],[-122.47382593760055,50.441190018731966],[-122.47407365753084,50.44126818649271],[-122.47431891954433,50.44135526298164],[-122.47455635973401,50.44145222020076],[-122.4747881319388,50.44155405266744],[-122.47499353586743,50.44167753743339],[-122.47516391164511,50.44182070798504],[-122.47523494970586,50.44199446593595],[-122.47532568147106,50.442164342626704],[-122.47546872014641,50.44231902260619],[-122.47561716669344,50.442472182908524],[-122.47580773469949,50.44249229282451],[-122.47606557729813,50.442418395561866],[-122.47632359424405,50.44234225414848],[-122.47656002124809,50.44224912448843],[-122.47674843333277,50.44211622466813],[-122.4769235649768,50.44197279053591],[-122.4771001918338,50.44183276831879],[-122.47727681689501,50.441692754770564],[-122.47745854145067,50.44155514308529],[-122.4776436057469,50.441419895326],[-122.47783381294171,50.44128649298711],[-122.47802406313858,50.44115252492527],[-122.47822591938326,50.44102793066309],[-122.4784512095021,50.44091925739203],[-122.47869637282024,50.44082695866098],[-122.47895363260864,50.4407603415944],[-122.4792393542835,50.440758169706086],[-122.4795065462537,50.44081276105519],[-122.47978230315383,50.440847948455705],[-122.4800572653659,50.44087073082076],[-122.4802920820625,50.44097883777338],[-122.48055768469519,50.44100863583522],[-122.4808463909152,50.440990810739],[-122.48112403098172,50.44100187208784],[-122.4813850336374,50.44106806565827],[-122.48163356223532,50.44115861191392],[-122.48184091632903,50.44127989630729],[-122.48208065601204,50.44137015358706],[-122.48234135579324,50.441440275588405],[-122.48261044469933,50.44149323702401],[-122.48288379444347,50.44153676975533],[-122.48316127338076,50.441572560907844],[-122.4834393646794,50.44160049891174],[-122.48371978319045,50.44162119593136],[-122.48400076973161,50.44163460516275],[-122.48428377698137,50.441644704100135],[-122.4845667403134,50.44165536769255],[-122.48484763993606,50.44166989655873],[-122.48512445543757,50.44169160031157],[-122.485398463723,50.44172671797338],[-122.48566514469265,50.4417880251086],[-122.48592181158877,50.4418647578745],[-122.48617087846596,50.44194855422074],[-122.4864082598712,50.44204660778676],[-122.48664366593489,50.442147405078785],[-122.48688904428785,50.442233331906706],[-122.48715107826571,50.44230910715143],[-122.48742052726789,50.44235756974166],[-122.48769668090021,50.442365193576165],[-122.48797994320849,50.44234942640511],[-122.48826197072891,50.44232687212659],[-122.48854360550311,50.442309360662684],[-122.4888236555475,50.44228955820878],[-122.48910225278583,50.44226576864154],[-122.4893797022462,50.442234070218674],[-122.48964984290659,50.44218302243187],[-122.48990920166763,50.4421119486171],[-122.49015245844019,50.44202125620767],[-122.49037271143935,50.4419090265256],[-122.49055887333803,50.44175916511865],[-122.49079610770794,50.44174587438651],[-122.49104550171528,50.44184822938767],[-122.491239572904,50.441982002601186],[-122.49148908568755,50.44206018704964],[-122.49173442882991,50.4421466685515],[-122.49196795845535,50.44224907708693],[-122.49220363958555,50.44234649720406],[-122.4924565856422,50.44242591248814],[-122.49271748200249,50.442493766449104],[-122.49297644638347,50.44256380774254],[-122.49322548626726,50.44264815356074],[-122.4934723767576,50.44273748674715],[-122.49371948578691,50.442824019397946],[-122.49397072269817,50.44290281019673],[-122.49423535845159,50.44296797177818],[-122.49451426501273,50.44300827721777],[-122.49478764800622,50.44300623254451],[-122.49505698720064,50.44294277640672],[-122.49533607994721,50.44293529718198],[-122.49559724493048,50.44299977896995],[-122.49585191582817,50.443079798433054],[-122.49608941199944,50.44317670038902],[-122.49635444471177,50.443236804367366],[-122.49663203185774,50.44327143997145],[-122.4969114914304,50.44328196094105],[-122.49719392936778,50.44327682275957],[-122.49747539175995,50.44326154119661],[-122.49775438257527,50.44323267740358],[-122.49803426018815,50.44321509530331],[-122.49831621845122,50.44321612858739],[-122.49859963085281,50.443221138457815],[-122.49888243336265,50.44323400910079],[-122.49916089273071,50.44325742049066],[-122.49943272857003,50.44329804787809],[-122.4996959209888,50.443359210139384],[-122.49995639856319,50.44343265594776],[-122.50021503153617,50.44350716742358],[-122.50046984362585,50.44358549804101],[-122.50072057459668,50.44367100421984],[-122.50097981909607,50.44373766136395],[-122.50125864944978,50.44377907160317],[-122.5015511379324,50.44380347728495],[-122.50182680497097,50.44379474898778],[-122.50206338086323,50.44372180389697],[-122.5022611242591,50.44358129482059],[-122.50244312806826,50.44343915538511],[-122.50260947797294,50.443294281824095],[-122.50277252764126,50.443146488093575],[-122.50294397751966,50.44300401497873],[-122.50312901523218,50.44286815958396],[-122.50332078091586,50.44273645643983],[-122.50351927526005,50.44260889653911],[-122.50372946893872,50.44248957695782],[-122.50395307727216,50.44237910948782],[-122.50416489643253,50.442261531670916],[-122.50436008710766,50.44213105033433],[-122.50461004475379,50.44204446978301],[-122.50486312688693,50.44196305208621],[-122.5050494354482,50.4418334141319],[-122.50512474893159,50.44165755392237],[-122.50513873636683,50.44147694475095],[-122.50511584182635,50.44129460620326],[-122.50504983431743,50.441122720710716],[-122.50491579363039,50.44096443399267],[-122.50477111692808,50.44080693628755],[-122.50467671737144,50.44063752894562],[-122.50461092936976,50.44046284304536],[-122.50455050443566,50.44028719260291],[-122.50448832095898,50.4401114956271],[-122.50442253514736,50.439936800526546],[-122.50434787073677,50.4397629589282],[-122.50426076882651,50.43959040737231],[-122.5041465549396,50.439426554884314],[-122.50395571236588,50.43929628010644],[-122.5037777878989,50.43915853155121],[-122.50365096441219,50.43899822111222],[-122.50353152254428,50.43883364510867],[-122.50339745016589,50.438675921492376],[-122.50324892190345,50.43852279764229],[-122.50311309388229,50.43836500919087],[-122.50297357578066,50.438209362193604],[-122.5028286977013,50.43805466142712],[-122.50267832824848,50.437902603031354],[-122.5025041897283,50.437761606701436],[-122.50234103699866,50.437615324926405],[-122.50220710315642,50.437455912446],[-122.50211263327489,50.437287624016214],[-122.50205942829157,50.437109958794686],[-122.50203628755618,50.436930984021686],[-122.5020220241731,50.4367511737569],[-122.50199892689528,50.4365716424829],[-122.50196343566721,50.43639284462858],[-122.50189762121481,50.436218712610426],[-122.50179788060585,50.43605025722008],[-122.50168192645526,50.435886345993836],[-122.50155516272466,50.43572547609286],[-122.50144461478821,50.43556005278653],[-122.50134663545289,50.435391652337415],[-122.50124689872499,50.43522319627828],[-122.50114536148992,50.435055241018226],[-122.50104022112731,50.43488830542387],[-122.50091526441928,50.43472692469494],[-122.50079909908908,50.434565821269594],[-122.50077420656069,50.434386790171],[-122.50074408311934,50.434207036124356],[-122.50068912907125,50.43402931406803],[-122.500641164592,50.43385237035128],[-122.50063033757925,50.433673783043304],[-122.50067422744921,50.43349411610296],[-122.50076660272003,50.43332554282325],[-122.50090566243423,50.433168555036985],[-122.50104647852301,50.43301163151169],[-122.50117520516504,50.432851510351384],[-122.50130045867127,50.43269071264497],[-122.50142232533071,50.43252812557231],[-122.50153214587745,50.43236178452852],[-122.50159313237461,50.432188846190336],[-122.50157188408105,50.432008247483544],[-122.50155230700011,50.43182882602259],[-122.50153273007466,50.431649404517984],[-122.50151315330476,50.43146998296988],[-122.50149181871997,50.43129050589361],[-122.50147769005648,50.43110900709683],[-122.50144387618984,50.430931385152654],[-122.50130065386313,50.43077842367371],[-122.50119547975083,50.43061204375413],[-122.50106860246338,50.43045285046589],[-122.50093460738546,50.4302945568361],[-122.50079881218772,50.43013676393467],[-122.50066301724291,50.42997897981048],[-122.50052902499168,50.429820685597214],[-122.50039868029839,50.42966081499422],[-122.50027549824058,50.42949948799562],[-122.5001541619339,50.429337094524406],[-122.50003818713952,50.42917374560152],[-122.49992230016748,50.42900927471449],[-122.4998081719124,50.428844859184125],[-122.49969584550102,50.42867994259813],[-122.49958352060568,50.428515016889975],[-122.49946939483215,50.42835060090977],[-122.49935531303942,50.428185628360474],[-122.49923938793671,50.428021712975486],[-122.49910540647869,50.42786341665644],[-122.4990469947885,50.42768501594409],[-122.49892343107132,50.42752873968324],[-122.49874736926473,50.42739048014992],[-122.49855505317768,50.427257329587],[-122.49835909243512,50.42712574582885],[-122.4981685364184,50.42699265008634],[-122.49797978248384,50.42685905311653],[-122.49779103036188,50.42672544682888],[-122.49760223548982,50.42659240559062],[-122.49741168395227,50.426459308459386],[-122.49722289130943,50.42632626653125],[-122.49703045332201,50.426194800352754],[-122.49685268862102,50.42605591663361],[-122.49669144057879,50.425908567139224],[-122.49653208227816,50.42575958574249],[-122.49637812920379,50.425609083582636],[-122.4962278660697,50.42545645766886],[-122.49608480971433,50.42530180120716],[-122.49596525746813,50.42513945787503],[-122.49585299818322,50.42497397124269],[-122.49573533561968,50.42481000493949],[-122.49562145126231,50.42464277522274],[-122.495494740657,50.42448189614364],[-122.49533684456495,50.42433689020157],[-122.49514437734052,50.42420597684378],[-122.4949335505331,50.4240846035554],[-122.49471156907317,50.42397074898121],[-122.49448357494104,50.423866267051785],[-122.49424043193022,50.4237753580096],[-122.49399535799144,50.423686636444955],[-122.49375410562922,50.42359409471422],[-122.49351105268309,50.42350206222981],[-122.49326589452072,50.423414460835446],[-122.49299241145091,50.42335126985516],[-122.4927972389283,50.4232326365781],[-122.49263794683144,50.423083083696184],[-122.49249881740135,50.42292348973434],[-122.49237937149167,50.42276002024323],[-122.49230649619233,50.422586778872294],[-122.49224622946416,50.42241000498098],[-122.49215547444975,50.422240128975176],[-122.49204683868811,50.4220736273453],[-122.49192370713574,50.421912289546775],[-122.49179161418297,50.42175291701169],[-122.49165943498748,50.42159466610096],[-122.49152369763085,50.42143686910918],[-122.49137724214714,50.421280972700515],[-122.49123970591285,50.42112367607353],[-122.49118441317638,50.42095099008721],[-122.49120732484995,50.420769534443735],[-122.49124236476335,50.420590711917974],[-122.49128263306365,50.42041262167725],[-122.49133516049962,50.420235477326955],[-122.49140328761648,50.42006163377157],[-122.49149755863935,50.419891433821654],[-122.49159204653492,50.41971843370267],[-122.49170521280021,50.419554454647475],[-122.49197197597773,50.419522415002625],[-122.49225192721862,50.41950203793831],[-122.49253170390934,50.41948390380096],[-122.49281169857869,50.41946295992688],[-122.4930890486424,50.41943069490695],[-122.49335785796829,50.41937228472134],[-122.49362495231667,50.419313261848124],[-122.4938984813408,50.419284805454325],[-122.49417879401395,50.41928242822114],[-122.49445994924766,50.419291889461675],[-122.49474247052196,50.41930644928025],[-122.49502499197833,50.419321008378894],[-122.49530601735808,50.41933214571579],[-122.49558673847014,50.419347204222035],[-122.49586776415121,50.41935834013515],[-122.49614974761755,50.419357135314954],[-122.4964295218464,50.419338991341526],[-122.4967083217552,50.41931069471538],[-122.49697026908255,50.4192498188538],[-122.4971770743405,50.41912758805744],[-122.4973906466512,50.41900895349781],[-122.49761239680174,50.4188984400227],[-122.49783581563521,50.41878911242914],[-122.49806424548058,50.41868330748296],[-122.49829913827033,50.41858502053246],[-122.49854225154851,50.41849430707158],[-122.49879824954351,50.41841917742324],[-122.49906053752143,50.418353800287896],[-122.49931803038612,50.41828209042215],[-122.49957569637658,50.41820813630339],[-122.49983164720177,50.41813356964233],[-122.5000875978779,50.41805899340902],[-122.50034526133676,50.41798503748169],[-122.50060450751026,50.417913380099634],[-122.50084418459491,50.417821428691745],[-122.50106429308279,50.417709174403335],[-122.50127446434978,50.417588733942964],[-122.50148125036297,50.41746649486726],[-122.50167822914132,50.41733439144792],[-122.50188325477994,50.41721210507583],[-122.5021195414103,50.4171183526436],[-122.50237565635986,50.417041527379105],[-122.50263827804294,50.416971663331246],[-122.50289751476656,50.416900000498295],[-122.50314874554026,50.416817963294626],[-122.50337843223126,50.41671837715019],[-122.50359008951752,50.41660135309698],[-122.50379189623234,50.41647502128743],[-122.50417732442784,50.416229654893705],[-122.5045521671256,50.41628027318249],[-122.5048274464571,50.416319886737725],[-122.50510470108922,50.41635674597048],[-122.50538067665677,50.416387374523794],[-122.50565927747112,50.41640684846654],[-122.50594263121596,50.41638766943562],[-122.50622672289171,50.41635894961914],[-122.50650052943172,50.41637208065318],[-122.50676804407456,50.416420998849354],[-122.50703139327513,50.4164782238342],[-122.50729598058064,50.41654222560507],[-122.50755666300903,50.41661116869632],[-122.50781884335085,50.416683532053064],[-122.50807737922277,50.41675747125806],[-122.50833595966338,50.41683084444967],[-122.50859462768882,50.41690309519824],[-122.50884947845714,50.41697915652883],[-122.50910226874578,50.417059092806056],[-122.50935124117913,50.417142848681955],[-122.50959828435438,50.41722878332577],[-122.50983764801197,50.41732291423728],[-122.51006551421442,50.417429052694736],[-122.51029526864266,50.41753356775269],[-122.51052506782979,50.41763751691679],[-122.51075868675562,50.41773764536288],[-122.5110018735009,50.41782796244831],[-122.51124690605505,50.41791720351251],[-122.5114958442004,50.4180015109136],[-122.5117713571208,50.418038298074656],[-122.51201485117359,50.41812468199828],[-122.51223521966928,50.41823676919127],[-122.51246700135094,50.418337960482674],[-122.51271006511908,50.41842995201857],[-122.51295493033795,50.418521441885055],[-122.51319242073845,50.41861718836402],[-122.51335931488647,50.41876020273697],[-122.51357085762264,50.418712879567664],[-122.5137526820314,50.418571282584004],[-122.51398393852091,50.41847397365482],[-122.51424188507134,50.418396054569456],[-122.5145041069181,50.4183312063148],[-122.51478371157938,50.41829221126092],[-122.51505187996594,50.41824160126771],[-122.51525023359257,50.4181140164898],[-122.5154664464667,50.41800611047332],[-122.51573478483786,50.417953264111134],[-122.51601460285188,50.41791145685456],[-122.5162814858465,50.417854622988415],[-122.51651611866846,50.417759097464106],[-122.51673486317999,50.41764114762833],[-122.51696790886508,50.41754333117595],[-122.5172303385271,50.41747566732133],[-122.5175020135366,50.41742517079876],[-122.51778313568356,50.41741207193752],[-122.51803972834767,50.4173515369207],[-122.51827663062602,50.41724934076856],[-122.51853356770066,50.41718431723503],[-122.51881781337573,50.41717637894826],[-122.51910260560717,50.417184200914996],[-122.51938093061396,50.41718450488648],[-122.51964168291711,50.41711566722679],[-122.51987849456255,50.41701458048965],[-122.52010425642656,50.41689684467493],[-122.52033108291515,50.4167881383112],[-122.52057228401517,50.416721491490115],[-122.52085100848782,50.416762297456884],[-122.52113450195841,50.416786941855385],[-122.52139349255978,50.41671803589362],[-122.52165423910543,50.41664919346176],[-122.52192718669738,50.41660490686703],[-122.5222070634737,50.4165850105515],[-122.52248934507755,50.416556759334824],[-122.52250406236945,50.41638853777467],[-122.52249050161714,50.41619862893583],[-122.52256026019103,50.41602482053466],[-122.52266301962854,50.41585711270184],[-122.52277786370787,50.41569259988005],[-122.52290646400886,50.41553245005144],[-122.5230419201415,50.41537476431182],[-122.52318251821978,50.41521892208464],[-122.5233300148826,50.41506498746591],[-122.52348595185488,50.41491581569825],[-122.52365212929534,50.41477090544642],[-122.52381667821038,50.414624252527574],[-122.5239676854594,50.414470427209984],[-122.52412537561324,50.41432130956184],[-122.52435808630597,50.414227399159145],[-122.52445439767527,50.41407466440137],[-122.52453297485467,50.41390057346925],[-122.52462882204455,50.41373096459919],[-122.5247778072236,50.41358044843898],[-122.5249660870938,50.41344578373619],[-122.52514078258882,50.41330450313446],[-122.52529846480374,50.41315538360081],[-122.52544933227703,50.41300324324833],[-122.52559672767224,50.41285042704055],[-122.52574768012516,50.41269715539689],[-122.52587103237504,50.41253627978745],[-122.52596331431407,50.412367115714645],[-122.5260435536668,50.41219420029197],[-122.52612726410246,50.41202195140431],[-122.52622652951642,50.411853572799906],[-122.5263344084825,50.411687704266605],[-122.52643885779432,50.411520612532975],[-122.52653464998505,50.411351557950915],[-122.52661137091121,50.4111785317196],[-122.52668290589823,50.41100421828197],[-122.52675615474267,50.41083051628636],[-122.5268189454219,50.41065537081602],[-122.52684505062807,50.41047625938082],[-122.52687466999707,50.410297258066954],[-122.52690424633776,50.41011881314619],[-122.52693035089598,50.409939701570806],[-122.52695469808319,50.40976053486654],[-122.52697913135209,50.40958024625882],[-122.52697004881715,50.40940059832129],[-122.52683923810686,50.409246364012446],[-122.52666517811824,50.409104835153066],[-122.52652206868942,50.408950223777005],[-122.52638624829736,50.40879245800237],[-122.52625767271326,50.40863211224579],[-122.5261453000332,50.40846721829066],[-122.52604913080408,50.408297767208545],[-122.52598686496535,50.40812263171855],[-122.52593175777021,50.4079460292743],[-122.5258373475362,50.40777663299691],[-122.52572677909171,50.407611228124075],[-122.52560365303485,50.40744880295835],[-122.52546603979467,50.407291546073445],[-122.52530292205459,50.407145301483354],[-122.52511970161757,50.4070085381646],[-122.52492910811974,50.40687605047597],[-122.52470568107631,50.40675826737873],[-122.52458358391308,50.40660543632547],[-122.5245376145258,50.406424621012285],[-122.52453042919218,50.40624334000802],[-122.52455649740929,50.406064793540736],[-122.5245949515122,50.40588550203316],[-122.52462457678364,50.40570650029197],[-122.52462608987312,50.40552661659102],[-122.52462057499189,50.405346512370556],[-122.5246396579122,50.40516717978513],[-122.5246657685842,50.40498806763283],[-122.52461945452575,50.40481174841351],[-122.52457147088224,50.404634243177426],[-122.52455361413534,50.40445431832622],[-122.52449667373772,50.404278781100125],[-122.52441123390373,50.40410741471225],[-122.52432228084858,50.40393593797247],[-122.52424395636609,50.40376367001642],[-122.52417107590922,50.403589323620864],[-122.5241088238325,50.4034141860437],[-122.52404665857357,50.403237926528725],[-122.52399687843636,50.40306093098488],[-122.52397015379621,50.40288185190048],[-122.52397197191742,50.40269803655636],[-122.52398266006279,50.40251338393006],[-122.52398061903392,50.402333945703624],[-122.52393445289658,50.40213288942948],[-122.52270526553671,50.401994780820644],[-122.52154364691455,50.39896692835016],[-122.52332821061083,50.3953658138715],[-122.52447590365608,50.39216639917863],[-122.52448067262209,50.38679436963926],[-122.52232417565399,50.382972745636344],[-122.51830049543689,50.377436915317],[-122.51427691566332,50.37446838839585],[-122.50783606400249,50.37236083693765],[-122.49988790208111,50.371907926606376],[-122.49005181303585,50.371110065492964],[-122.4833544106203,50.36996683578354],[-122.4809487488396,50.369400029453374],[-122.47460246922354,50.36466287532608],[-122.47021825034498,50.359692089929695],[-122.46120887137074,50.35358520157945],[-122.45655352008123,50.35084939963096],[-122.44994855621657,50.34696210872527],[-122.4450455159772,50.343992863067136],[-122.44173906835523,50.34148414186268],[-122.44004532223664,50.33708143382539],[-122.43941647125922,50.332915976111494],[-122.4387080526177,50.32869055545839],[-122.4381735395656,50.32869021074909],[-122.4324539558276,50.330402725163594],[-122.42477462289786,50.33234179052925],[-122.41433161704524,50.33399506914899],[-122.40299478646423,50.333077457579144],[-122.396657864558,50.33068066095843],[-122.39122178254293,50.32599243134667],[-122.38695341777672,50.32113789141202],[-122.38382317640226,50.319827509890935],[-122.37963615732151,50.31942276804661],[-122.37678034256649,50.31890459618879],[-122.37000367971024,50.31519252887787],[-122.3669784213522,50.31170910462229],[-122.36342249743936,50.30696065297457],[-122.36004423009943,50.29913748700035],[-122.35933046539687,50.295426136189256],[-122.35747984200735,50.289947795126444],[-122.35809903226061,50.2874918049268],[-122.36292577283355,50.282692965372696],[-122.3668622875966,50.276015894561326],[-122.36767856594867,50.26899027489369],[-122.37081509528795,50.26368380615801],[-122.36484268749598,50.25950966711437],[-122.35825594949648,50.25722611305571],[-122.35255477917029,50.254766667591106],[-122.3456043427169,50.2521322453316],[-122.3426714515004,50.25018908139197],[-122.34232104364918,50.24722225183456],[-122.34616386195358,50.24379810443671],[-122.35489719974862,50.24083472087326],[-122.35962888918645,50.238036264006666],[-122.36088602778248,50.234443042158105],[-122.35786033886421,50.232613029978175],[-122.34984231741021,50.230375430824814],[-122.34307964713042,50.22911592891395],[-122.33434879281022,50.22894034829993],[-122.3242803389211,50.22916162327423],[-122.31412728518745,50.228694603631745],[-122.3108331128642,50.22812098882657],[-122.30450300405062,50.22811385836097],[-122.29569746081182,50.227307202396325],[-122.28919923021355,50.22575283047224],[-122.28322499616884,50.22483167149648],[-122.27486039925921,50.22430648941258],[-122.26693534212748,50.22338827968665],[-122.26649697181176,50.22052933601064],[-122.27257898766598,50.216542591015234],[-122.27535867201527,50.20935238324139],[-122.27563040165859,50.20775160995888],[-122.27947968120382,50.20187601789808],[-122.28830769452068,50.20028744624547],[-122.29738787844819,50.1990385367391],[-122.29989258239164,50.195331217106805],[-122.30168634800192,50.19122083917898],[-122.30846735581463,50.18769048522007],[-122.31327143865597,50.18535086883591],[-122.31524974360363,50.18032895259807],[-122.31526082201482,50.17621890204676],[-122.31135231545319,50.17341662736076],[-122.30369274340043,50.17278413192315],[-122.29639847273369,50.17317540015225],[-122.29364598743777,50.172028624028044],[-122.29011258639888,50.165856088239046],[-122.28870517978935,50.16043572172916],[-122.28800444147613,50.15597576894878],[-122.28259979857711,50.151117983826744],[-122.27558498818678,50.14779749533908],[-122.27220928411283,50.144024271485236],[-122.27409697746282,50.14031216084663],[-122.27286961374148,50.136145210968564],[-122.26648408287654,50.13116877391493],[-122.26108446899087,50.12665295016858],[-122.25894745910372,50.12487903735436],[-122.25745006307302,50.12282302641535],[-122.25647574847969,50.12121910905336],[-122.25266885873611,50.117622772436434],[-122.25098042868754,50.11653118602762],[-122.2458347121342,50.113557877217694],[-122.24106550127976,50.10823979565891],[-122.2396706773887,50.10292771141473],[-122.24030556532287,50.09761857181999],[-122.24743821470823,50.09277158010166],[-122.26201263274932,50.089307141871075],[-122.26850600518975,50.08726147198499],[-122.2722421936646,50.08572680206191],[-122.27883301229261,50.07888413825868],[-122.27901981565267,50.074717492688556],[-122.27975277554287,50.071056539281926],[-122.28199532153327,50.06535255152002],[-122.28502066138694,50.06101739518603],[-122.28680572001981,50.05627903795684],[-122.28681504995731,50.05410701217036],[-122.28052278225519,50.051192366348424],[-122.27351859145259,50.0489564808391],[-122.27183641320808,50.048326070175456],[-122.26483839850785,50.04432025694857],[-122.25961605344345,50.04134726318488],[-122.25616925149512,50.039060207699514],[-122.25138379500022,50.033340090964515],[-122.25035398056089,50.027341756973584],[-122.25126295895612,50.019691731716705],[-122.25323500880235,50.01593115597896],[-122.25323117190405,50.01478822682216],[-122.25270741728663,50.01147246492584],[-122.25165641210349,50.00930287692429],[-122.25166625019266,50.00884350361462],[-122.25166276417436,50.00650766931929],[-122.2526470796921,50.0038803397268],[-122.25296238227372,49.99970469175916],[-122.25225139135306,49.99713984561839],[-122.25064727628549,49.99473747375627],[-122.24664535276419,49.991946944995235],[-122.24317911344882,49.98977893405338],[-122.24077367957923,49.98812827385471],[-122.24228324676939,49.98641591007562],[-122.24660683724804,49.982066236376824],[-122.25254008068728,49.97680579304081],[-122.26040731014197,49.972796645861784],[-122.26466621343093,49.97022224086819],[-122.26465304816541,49.968848780569],[-122.26419907253523,49.96416561109433],[-122.26046092569032,49.95886060730925],[-122.25387736776,49.95304346027714],[-122.246597016421,49.947915499008445],[-122.2404658633403,49.94392824184361],[-122.23744537382377,49.94164619423407],[-122.23530911223962,49.93862516245959],[-122.23317829937197,49.935372401693506],[-122.23272652124459,49.931888640055234],[-122.23448713993574,49.92897333716321],[-122.24075798981994,49.92513520895525],[-122.24491162663719,49.92227483552817],[-122.24472804878405,49.919250488513114],[-122.24223880371011,49.91679870155867],[-122.23834510757209,49.91549110332204],[-122.23320085945818,49.914811729948404],[-122.22133695095839,49.913626922836585],[-122.21256405015276,49.91249543277175],[-122.1999079046829,49.910622969036496],[-122.1937001428618,49.91017097510936],[-122.19113546442856,49.90983191105874],[-122.1808681239556,49.90858279502304],[-122.17307469205556,49.908592630795795],[-122.1657170108706,49.909057272871],[-122.16015319123638,49.90957310576807],[-122.158466927088,49.9092348048497],[-122.15545205121256,49.90729086650044],[-122.15119272154699,49.903409801653645],[-122.14356775998648,49.895652072339196],[-122.14100120245055,49.89039716483969],[-122.14020481379532,49.88959688554962],[-122.13391159358079,49.88492108417286],[-122.1286924947447,49.87892810356348],[-122.12487424342706,49.87384443336611],[-122.12019221392661,49.86893705797913],[-122.1136319248584,49.86385461924451],[-122.11071657109665,49.861287918988474],[-122.1057608440284,49.85586567994659],[-122.10213573842455,49.85118121772516],[-122.10089001753225,49.84815414510501],[-122.09814896319368,49.84650169218454],[-122.09319540498781,49.84467610801606],[-122.08860523349298,49.841535446339975],[-122.08090492044293,49.8387970079849],[-122.0772842497536,49.83816446235906],[-122.07038445336927,49.83616714000032],[-122.06216787074707,49.832171467333126],[-122.05686878474509,49.830512341499094],[-122.05014772801381,49.82936896700102],[-122.04687728567572,49.82840014333442],[-122.04282281788295,49.825716339113086],[-122.04149314813193,49.824517005952494],[-122.0376026489484,49.820750218774364],[-122.03582202515405,49.819459010151114],[-122.0325764068774,49.817091181542224],[-122.02895532201208,49.81520608473866],[-122.02550757700408,49.81389178624887],[-122.02055539853579,49.812921131857806],[-122.01463775247886,49.81377384831757],[-122.01162953704014,49.81508548225935],[-122.00800417202258,49.816451605227336],[-122.00340648801793,49.81747693333498],[-122.000136424423,49.817478849139654],[-121.99948994865456,49.817870628792484],[-121.99606765427264,49.81881709740672],[-121.9908762692211,49.81978299935657],[-121.98976851843499,49.8216265128755],[-121.9870172370499,49.8284052119661],[-121.98281262981682,49.8336532425879],[-121.97735624097666,49.835077178772515],[-121.96998586594462,49.83720715124428],[-121.96750475395115,49.84071845272081],[-121.96971932726608,49.84481611796218],[-121.97253585674474,49.84856547016907],[-121.97129351458285,49.85223672256578],[-121.96652211559847,49.85628557457485],[-121.95789290263603,49.8578009396777],[-121.95471489650375,49.85783034325338],[-121.94710027508992,49.857161070377835],[-121.94028938457784,49.85716678948978],[-121.93334977165937,49.85940273899983],[-121.92727563631941,49.86426790775236],[-121.9226678827763,49.86814036717472],[-121.91803484719136,49.870414648258986],[-121.9106408828219,49.872086782534865],[-121.90321511825083,49.87255255412418],[-121.89763682916666,49.87214644646867],[-121.89004159456773,49.872325183302664],[-121.88507142422091,49.87197448872691],[-121.87868822958987,49.871225811649545],[-121.8721915425946,49.86911291811211],[-121.8671280919327,49.868411650731026],[-121.85763178923278,49.86666522534736],[-121.85228905216111,49.86505472589259],[-121.84758679656308,49.86406503396406],[-121.84241511299388,49.86211203752087],[-121.83121195487608,49.858483795228395],[-121.82418946548884,49.85683142966641],[-121.81865435943823,49.854302028431775],[-121.81624296072171,49.85295260447558],[-121.80810479164947,49.847988186371225],[-121.80300195761292,49.845169312660516],[-121.79826872998494,49.84257776289456],[-121.79411288177874,49.84204126489111],[-121.78760696647248,49.84449601824362],[-121.78399032180421,49.849439510507636],[-121.78330592063651,49.85082065435351],[-121.78253114755745,49.851973100214444],[-121.78154875596316,49.85597989318693],[-121.78056381739187,49.86016334880711],[-121.7771198614961,49.864421873206716],[-121.77057060983383,49.869106925148444],[-121.7654014290663,49.87166507229089],[-121.76070279412087,49.871246582134674],[-121.75751352590522,49.86612559468638],[-121.75531898230159,49.86185156937345],[-121.75525606523918,49.85847774914521],[-121.75324289067808,49.85540652699608],[-121.74389690772695,49.85136254096283],[-121.7380254281916,49.84980331902056],[-121.73333655406137,49.84915645655956],[-121.72789831599377,49.847140055278956],[-121.72509121399638,49.84275395488725],[-121.72526765031267,49.838183801587235],[-121.72405177551882,49.83435869630732],[-121.71886421987729,49.831024955908724],[-121.71659950042232,49.827556112840085],[-121.71174892274024,49.823016677187],[-121.71073133546827,49.820507654191566],[-121.71884069853684,49.81981956282539],[-121.72595890731536,49.81707350362573],[-121.72922669561832,49.81247998319671],[-121.73000830828717,49.806637116555216],[-121.72814931297482,49.801507960394275],[-121.72416111693745,49.795646674071406],[-121.7180133245238,49.792661776644756],[-121.7125201914551,49.791903905321924],[-121.70881537926878,49.792102948441254],[-121.70729786924075,49.79137489128534],[-121.70407183498196,49.788249459921026],[-121.70347423612938,49.78453760223118],[-121.7064788401993,49.77948764498696],[-121.70669355808026,49.776454740486706],[-121.70937421263339,49.77351824851569],[-121.71373049684962,49.77005513639889],[-121.71428505811778,49.76650452663303],[-121.71157043117651,49.76297860234795],[-121.70959088402847,49.76110778909935],[-121.6994593708611,49.756492686595344],[-121.69085772362995,49.75410451136866],[-121.68988669435772,49.75393662077747],[-121.67821234981206,49.7523078067367],[-121.67139677461714,49.75103961193715],[-121.66389751509155,49.75097879028337],[-121.65673738524315,49.750858866564386],[-121.64996850797655,49.7515954468381],[-121.64250786255256,49.75405033434285],[-121.63817271000954,49.753450723176634],[-121.62707827333735,49.7499833473512],[-121.61715488542048,49.747075453937214],[-121.61087763633459,49.74557721011285],[-121.60813217591908,49.74536754330716],[-121.59965776410276,49.74519258352166],[-121.58879280422028,49.743431191610085],[-121.58143748815888,49.74159695569207],[-121.57931218664339,49.74086762694031],[-121.57389349466706,49.738556034302206],[-121.56853514762479,49.73447530104774],[-121.56442622073237,49.73027048721833],[-121.55745981433026,49.72430835389333],[-121.54990558853534,49.7204146226279],[-121.54590226829623,49.717869705225155],[-121.53919274389925,49.711165259394726],[-121.53381644689799,49.70490639330848],[-121.53015508637625,49.70172420478018],[-121.52608441502127,49.700039659695086],[-121.51619926104745,49.69946475788674],[-121.50827665870578,49.70026035083271],[-121.49956260938002,49.70105252895068],[-121.48960987961922,49.70088136129581],[-121.4793334220711,49.697512718100725],[-121.47217039721322,49.69595168988268],[-121.46288979092115,49.69348575003975],[-121.45402475482388,49.68907601815096],[-121.44721017527382,49.6865414353755],[-121.44232979692464,49.68382599451448],[-121.43472020393283,49.68106461025554],[-121.43154150068584,49.68050877111472],[-121.42563743905718,49.680142547500935],[-121.42104753879522,49.6798211446272],[-121.41735219358155,49.67943750173305],[-121.4150558238821,49.67922193984943],[-121.41377033079654,49.67500079626063],[-121.39643997657333,49.677315785541154],[-121.37119957669951,49.680695339562796],[-121.3620732455428,49.675541419069994],[-121.35277877610302,49.67151968767494],[-121.33824405724114,49.67101526935323],[-121.32967804070024,49.66968237159779],[-121.32675854972615,49.66809674271248],[-121.32541128262254,49.66524558845265],[-121.32328384210507,49.6547966851167],[-121.32217643783683,49.650685808492064],[-121.32076169924514,49.64932180783495],[-121.31622767180302,49.644539938070935],[-121.31352767331863,49.63837478742444],[-121.31101686076036,49.63376002176533],[-121.30929821193772,49.629539919391895],[-121.30828661445642,49.624915854943495],[-121.30622668729596,49.620920919869064],[-121.29667240285941,49.61593080731514],[-121.28544311532491,49.610263334576146],[-121.27732974319298,49.60720813335048],[-121.26637719494664,49.60239425949653],[-121.257882115052,49.596883205728595],[-121.2536421632974,49.59473261292385],[-121.24737489759313,49.59115316875991],[-121.24319668062807,49.58694127924933],[-121.23638164693256,49.58171249505519],[-121.23125366621225,49.57772769884433],[-121.22771365215297,49.57540011484576],[-121.21817496436225,49.58068779453108],[-121.21165027244652,49.58854199985969],[-121.20878795480225,49.59380832368261],[-121.20825351930958,49.59255403992454],[-121.20118288765376,49.587545543759695],[-121.19000134776363,49.585697343831306],[-121.18054772487079,49.59195947488704],[-121.17724212123626,49.59745169933438],[-121.17657319562798,49.60277237600336],[-121.17657104344617,49.60305714284527],[-121.17104050532994,49.603589702579605],[-121.16325718776649,49.60774889862493],[-121.16059985909558,49.60863225320333],[-121.15880067196537,49.61110656776328],[-121.156876923408,49.61186641621179],[-121.15547990925447,49.61302080294366],[-121.15454588039154,49.61476356023185],[-121.15476032010783,49.617480563462614],[-121.15071745323574,49.61847943572027],[-121.14777359008403,49.61865376069181],[-121.1436894625913,49.61951556389309],[-121.14126748942527,49.619604845471194],[-121.13865543942467,49.6209667467176],[-121.13742763265243,49.62208734495184],[-121.13419356468215,49.62277326090614],[-121.12749078744199,49.61994640121285],[-121.12538378058831,49.61967976254056],[-121.12338424084399,49.61578674885095],[-121.12363431547445,49.61133837927621],[-121.12294037693577,49.6108231483613],[-121.1200441701002,49.610551400359256],[-121.1165021718153,49.61126971851656],[-121.11642038016757,49.61151766451781],[-121.11218917962158,49.61376196176884],[-121.11108411933475,49.614897120568344],[-121.10986279834796,49.615300051978664],[-121.10374814075577,49.62259347473009],[-121.09813841416388,49.62578503657162],[-121.09723943738688,49.626022327160854],[-121.09382762271828,49.62550602679025],[-121.09247953190284,49.62592306311381],[-121.09088705437873,49.62693993473232],[-121.09008059500991,49.62708948348127],[-121.0856252983647,49.62686393030866],[-121.08186710491383,49.62556741223635],[-121.07927665098556,49.625670532448964],[-121.07375730657661,49.62489360665839],[-121.07160088816681,49.624958161766145],[-121.06787075284637,49.62573069188257],[-121.06395115946614,49.62568352200117],[-121.06259815106863,49.62601431546308],[-121.06107087982573,49.62719209998694],[-121.06042561696654,49.62855027832947],[-121.06065269621476,49.63134065929032],[-121.05998900432469,49.63209554080945],[-121.05580380097103,49.632449129864426],[-121.05261732642846,49.631384428570485],[-121.05134117473567,49.63164307034179],[-121.04972172258354,49.63315690631105],[-121.04774361674556,49.633750430983675],[-121.04448574255616,49.63399140482796],[-121.04177724347335,49.6346681857836],[-121.03858898304402,49.63413500064468],[-121.03522817418273,49.63494247624254],[-121.03224359034552,49.634963376753525],[-121.02959383122483,49.63637689238689],[-121.02857194429366,49.63659054359729],[-121.02847610891347,49.63657883051055],[-121.02433642536528,49.6394508132238],[-121.01775041277932,49.6419761424871],[-121.01772008881251,49.644174398031254],[-121.0172370122994,49.644151136765785],[-121.01405623125568,49.64418399205633],[-121.01020294195332,49.64644811414702],[-121.00118266468125,49.64913862415656],[-120.99335432379216,49.65399617671553],[-120.97648287347221,49.664363750094914],[-120.97121693759509,49.66745124962257],[-120.96365819192576,49.673461679353224],[-120.95644712272217,49.67767975523308],[-120.96044769025661,49.67905594288858],[-120.96314208922655,49.68056876947719],[-120.96716594833993,49.682749418312795],[-120.97254449402946,49.68587783704203],[-120.97309405070446,49.68643916727129],[-120.97198725360026,49.690456435630274],[-120.96959966112533,49.6932315807559],[-120.96365593751588,49.69524597495102],[-120.95822179492738,49.69931756883573],[-120.95774963818437,49.70121182460761],[-120.95662874589769,49.70774231830427],[-120.95287713675008,49.71241512324143],[-120.94747518654404,49.71465333433627],[-120.94425231811941,49.71577742741229],[-120.9381076928956,49.71705592641238],[-120.93308377439338,49.72026288994234],[-120.93169843456808,49.723994038253736],[-120.93153140614615,49.724624777028225],[-120.92990841948445,49.72949674832505],[-120.92784266135568,49.73095432396124],[-120.92365840862377,49.73283560819388],[-120.91763278719652,49.73827992203926],[-120.9166420496404,49.740693633749416],[-120.916662610886,49.74126040307209],[-120.91678620909299,49.74566188920105],[-120.91693807776241,49.75068626362955],[-120.91678942333164,49.7517754275848],[-120.91798296921704,49.756563168345615],[-120.91692649277623,49.75994193783825],[-120.9161598722897,49.76058244332816],[-120.91275816074425,49.762277828544654],[-120.9025322814999,49.76566109039895],[-120.89989326522182,49.76649627671958],[-120.8928526077516,49.77348947526115],[-120.8911492234701,49.77865459409305],[-120.88572963097421,49.78369170539509],[-120.87902812918084,49.787484978172415],[-120.87684144281218,49.79122791448258],[-120.87775653300882,49.792753544357026],[-120.8791248349677,49.79719700755026],[-120.878913452035,49.80256993838353],[-120.87850120399911,49.803889537557204],[-120.87785868343646,49.80589766007013],[-120.8757682035369,49.81026491709708],[-120.8711308860332,49.815232121492734],[-120.86879886942154,49.81714839743051],[-120.86320431745932,49.822811323013156],[-120.8628713067746,49.826644504546444],[-120.86412252176373,49.83051386677959],[-120.86833286230336,49.83595358115209],[-120.87072143745796,49.84260977448344],[-120.87076943275812,49.843921039050265],[-120.87040336176125,49.85004035841264],[-120.86652484468539,49.85379535089563],[-120.86418348062745,49.85565135778008],[-120.85842779202649,49.8618315900211],[-120.85110832928623,49.866035524025264],[-120.8464559662264,49.867228371627725],[-120.83853024767832,49.868633342306815],[-120.83190221430728,49.86916370004503],[-120.823543704072,49.86748785692226],[-120.81069467937309,49.86643447621576],[-120.80693926747922,49.86819009957265],[-120.80198862395156,49.87150043675765],[-120.79607470675036,49.872363551931],[-120.78956204509906,49.87346041182547],[-120.78762275773666,49.873710576528204],[-120.78447122479729,49.87517193822451],[-120.77958334535478,49.87791123490611],[-120.7773452262307,49.88016269433483],[-120.77699716816066,49.8804007806946],[-120.77641673721789,49.88206081839727],[-120.77643709255219,49.8828586176973],[-120.77672178474153,49.88720008780725],[-120.77833660345013,49.89186765155492],[-120.77845801228717,49.896662770012355],[-120.7744516143001,49.898992583596225],[-120.77084867491006,49.90023312137099],[-120.76344084509502,49.90094092921074],[-120.75448858519029,49.90063366922443],[-120.7472736830732,49.899054397501565],[-120.74370802401194,49.89766078725374],[-120.73592178905167,49.89414454153265],[-120.72557584725087,49.89105481960709],[-120.71767260283704,49.88953549589549],[-120.71181930966614,49.88959576669701],[-120.69881125966651,49.8927524706271],[-120.69695610164706,49.893346685747936],[-120.68674279127683,49.89573299867432],[-120.68232780629917,49.89949100387691],[-120.68137029752063,49.90435537486903],[-120.68041782159023,49.912648110330146],[-120.67772771938398,49.9152449031898],[-120.67469779768179,49.918477698283795],[-120.67372399630506,49.92179642851992],[-120.67173800405595,49.92804144038958],[-120.66962430596385,49.92892021960447],[-120.66745033002366,49.93031392628212],[-120.66248517408825,49.93407538820654],[-120.66213065074554,49.93447907872134],[-120.65842640761888,49.93879721953162],[-120.65465850864524,49.94448664363905],[-120.6539546786179,49.94500850589786],[-120.6516970527607,49.95091638993626],[-120.65228891750739,49.96159571864494],[-120.65235858941634,49.96421844871828],[-120.65249449104792,49.97044651363995],[-120.65041071315908,49.97629003278808],[-120.64565238970785,49.977878918879256],[-120.6402498439997,49.97792864081801],[-120.63116198280586,49.975674710857895],[-120.62590086802699,49.97440800897516],[-120.62109490102911,49.97331441910926],[-120.61467142138522,49.97203965888654],[-120.61463146730202,49.97191934819964],[-120.61455600675026,49.971404498563686],[-120.61455037258492,49.970890259112494],[-120.6145943006133,49.96986787418407],[-120.61464319230119,49.969173154011116],[-120.61480973758579,49.968784039048074],[-120.61496793679567,49.9685246906359],[-120.61546425689659,49.96800638015188],[-120.61601828942753,49.96748753212278],[-120.61650642927428,49.96708265380856],[-120.61706047216467,49.96653392846548],[-120.61745235068975,49.965923129928406],[-120.61781463420877,49.96514857103142],[-120.61784498143625,49.96469921585061],[-120.6177977680421,49.963382676666846],[-120.61777185935262,49.96037649916314],[-120.61781910665988,49.95911813741617],[-120.61785099505119,49.95827097903073],[-120.61789174348421,49.95786664810093],[-120.61796228708889,49.95706196483046],[-120.6180004816144,49.956531278381945],[-120.61822458927557,49.95590546489444],[-120.61848921801851,49.954921519503614],[-120.6185184190481,49.95470373219015],[-120.61854421591343,49.95454437932206],[-120.61850447734874,49.95431869525187],[-120.61848855907658,49.954127986718646],[-120.61843106015269,49.95396398091804],[-120.6183456253528,49.953785076431075],[-120.61820699863385,49.95358326902569],[-120.6180243119599,49.95339958410129],[-120.61771804236619,49.953197425612274],[-120.61731346454779,49.95299945045974],[-120.61686615228189,49.952808389712985],[-120.61630434062572,49.95265509644775],[-120.61572602639211,49.95255282790313],[-120.6150765439858,49.95247637074351],[-120.61441217850368,49.95240762661745],[-120.61372740051746,49.9524229688031],[-120.61308277784472,49.95245324895607],[-120.61242354764161,49.95250366323684],[-120.61124086475458,49.95266751065296],[-120.61018440321631,49.95282741467927],[-120.60920620620571,49.953049205570665],[-120.60778563643805,49.953407572414065],[-120.60661895476551,49.95373108749294],[-120.60511162696551,49.95414320067493],[-120.6033601616345,49.954654840935504],[-120.60280775022017,49.95477639766439],[-120.60208748473346,49.95489926253271],[-120.60122715200545,49.95502479329922],[-120.60024231415585,49.95515432223482],[-120.59942847632617,49.95521168054501],[-120.59860478098526,49.955219519959606],[-120.59739352540481,49.95519583327214],[-120.59646403999817,49.955123485529576],[-120.59586958726533,49.95503947728961],[-120.59549677694704,49.95498670338218],[-120.59475142567996,49.95487890158869],[-120.59392489211709,49.95471917763894],[-120.5933620139495,49.95458994146062],[-120.59265426098091,49.954341958762704],[-120.59180290340132,49.953964585414994],[-120.59081086160265,49.95340384860146],[-120.58874122301565,49.951885291258954],[-120.58646577401045,49.95012995533986],[-120.58437295141351,49.948367803853365],[-120.58347748526067,49.94762803218994],[-120.58257653357076,49.94696406919142],[-120.5812508370654,49.945979800640366],[-120.57977786174672,49.94492735146492],[-120.57851043106955,49.944115005498126],[-120.57753598332546,49.94351216031903],[-120.57634369659992,49.943008409322815],[-120.57480713019407,49.942448138361584],[-120.57337219159916,49.94203208716357],[-120.57251892222187,49.941879317068235],[-120.57156736769188,49.94173068361827],[-120.57066530929285,49.941665087545275],[-120.56979885324414,49.94169650385895],[-120.5690527941773,49.941787433928845],[-120.56882676817813,49.941837648027],[-120.56771085824539,49.94221850586602],[-120.56704191616214,49.94240962198641],[-120.56677221337613,49.94247458149581],[-120.56644702042908,49.94255087164698],[-120.56585132066355,49.942684178809564],[-120.56499091756915,49.942825766623194],[-120.56323076804001,49.94305792125243],[-120.56079695301624,49.943359163020546],[-120.55960451420563,49.943458275985165],[-120.55847264626219,49.943488813151696],[-120.55761330903493,49.94341622556562],[-120.55587182401659,49.943184217203566],[-120.55379035701188,49.94285974131788],[-120.55233916034203,49.942478668783686],[-120.55171106436237,49.942283391840256],[-120.55069172899256,49.94191308561907],[-120.54876200799377,49.94119645350406],[-120.54700282595572,49.940456157978076],[-120.54501199601485,49.93943374763669],[-120.54284397347321,49.938156161537385],[-120.5405979578013,49.93662662913913],[-120.53776990403931,49.934432226838204],[-120.53642536714328,49.93335338949142],[-120.53517282799726,49.932163025462145],[-120.53323709521813,49.93019056515101],[-120.53107334627839,49.927703894962185],[-120.52858039818358,49.92474696345543],[-120.5272357064423,49.92309136173153],[-120.5249735159075,49.92044120876846],[-120.52304938788018,49.918117911430336],[-120.52238368338489,49.91730899549681],[-120.52174673981159,49.91666779615001],[-120.521153440284,49.91618659179849],[-120.52044097672714,49.91562219806079],[-120.51981409996903,49.91504292175766],[-120.5185968357444,49.91394424438456],[-120.51746499813277,49.91302117407475],[-120.51648283086276,49.91233444707979],[-120.51469735513275,49.91120158180811],[-120.51283459068638,49.910160635902294],[-120.51081589601488,49.90918340820386],[-120.5089708930321,49.908271783954106],[-120.5068920956387,49.907360223364954],[-120.50525160830934,49.90670795037474],[-120.50416603244575,49.906302800564944],[-120.50293142398232,49.905845613363034],[-120.50126068748594,49.9052424840482],[-120.49810489743393,49.90398797841281],[-120.49340474068403,49.90173681424764],[-120.49270583116459,49.9013972291744],[-120.48224691408784,49.895935428175434],[-120.48087742640033,49.89524116627969],[-120.47066154668522,49.8905028647071],[-120.46745836649556,49.888977203258875],[-120.4627501543231,49.8868594072076],[-120.4579703666104,49.885162226744924],[-120.4555288198337,49.88445271238618],[-120.45290159427273,49.88380755941587],[-120.44954024160104,49.88330432707106],[-120.44737783731262,49.88315559757822],[-120.4458784902467,49.883277852574416],[-120.44370038983216,49.88354485180345],[-120.44137386224749,49.88411375265221],[-120.43847379637202,49.88509425458622],[-120.4359319682104,49.885925496578665],[-120.43386210112084,49.886619489196626],[-120.43181776835296,49.88674594412287],[-120.42816811836312,49.88693204025912],[-120.4259463067285,49.887225785466704],[-120.42413728328764,49.88793910078785],[-120.42199092385225,49.888714108153614],[-120.41811488957296,49.88969390639345],[-120.41518132177114,49.89054133822537],[-120.41304337074712,49.89083178444304],[-120.41076225258233,49.89076648654121],[-120.40825932649766,49.89051784885463],[-120.40592670628452,49.89023219957142],[-120.40339680222249,49.8897627736163],[-120.39986665197353,49.88946866817999],[-120.39768968674184,49.88950764949787],[-120.39455550410052,49.88969763650568],[-120.39333811293729,49.88994978037052],[-120.39140155086417,49.89050270125933],[-120.3877039107945,49.8918829984123],[-120.38350256015588,49.893299307269295],[-120.37933844964931,49.89458095930716],[-120.37471105279143,49.89607990775226],[-120.37138814956448,49.89710181057869],[-120.36960387893693,49.89747617685201],[-120.36766648969024,49.89766278214298],[-120.36623671154364,49.89776614055615],[-120.36525003389025,49.897743483120095],[-120.36299888356923,49.89746056722704],[-120.36033104150067,49.8971747101525],[-120.35673946949048,49.89676670195944],[-120.35405783500143,49.89647997583579],[-120.35146424699056,49.89614474524718],[-120.34895663269089,49.895763714274196],[-120.34705899351421,49.895431637736614],[-120.34159325435604,49.89436353800629],[-120.33577645424727,49.8931732157515],[-120.3314392041247,49.89211286285655],[-120.3287236673229,49.8913574809373],[-120.32704125879712,49.89077010191355],[-120.32587221816097,49.89019411621295],[-120.32457256366307,49.88933563251543],[-120.31931300329215,49.885021077824234],[-120.31871381404004,49.88449435269805],[-120.31797093650717,49.8838045334196],[-120.31642223666653,49.88220229256577],[-120.31411856837542,49.87988303255367],[-120.31138810938734,49.87715471920808],[-120.30893483068442,49.874626239534756],[-120.30691978532107,49.87272606263585],[-120.30566168456716,49.871708769246126],[-120.30369784640757,49.870239120814354],[-120.3019449159837,49.86912098921703],[-120.30017456007126,49.86824096957667],[-120.29873185671697,49.867614834233876],[-120.29810003790783,49.86749277576502],[-120.29764341962372,49.867462177759236],[-120.29679246939102,49.86748880249904],[-120.29643973953877,49.86753409731901],[-120.29184824648446,49.86893788588637],[-120.28035206215932,49.87228353854052],[-120.27245386502129,49.87553760181174],[-120.26311223241045,49.87781548077244],[-120.25269505739782,49.87959284747202],[-120.2440346744223,49.88186215378908],[-120.23987720742176,49.8830217315092],[-120.2336820191489,49.883845874142644],[-120.22528575281491,49.884494746189226],[-120.21707610941863,49.88384694297242],[-120.21044919493411,49.88307542337407],[-120.20565947918325,49.88339221976721],[-120.20295223366502,49.884155368173786],[-120.20011872539897,49.88510121761388],[-120.1937188993924,49.88816895042449],[-120.18892994293485,49.89094137713142],[-120.18612615337095,49.892223422061186],[-120.18350745022798,49.89325698994669],[-120.18042499344965,49.894531966560145],[-120.17307618330499,49.89706764440947],[-120.16542335684915,49.898670305719705],[-120.15843599664096,49.89943340670159],[-120.15071608952833,49.89939956320101],[-120.14161494833752,49.899409585473975],[-120.12999066263195,49.90116124190235],[-120.10935651337479,49.90452555595854],[-120.10821151095556,49.90471255470433],[-120.09983145786802,49.905601665182466],[-120.09616308556855,49.905994072905294],[-120.09478197178409,49.90616987319818],[-120.09195078652758,49.906527847802224],[-120.07717530232105,49.9084167567957],[-120.06246635335287,49.910319746012526],[-120.04895274440202,49.911548791266846],[-120.04006123295986,49.91186533466854],[-120.03675676812585,49.91168178415299],[-120.03526825849318,49.91147313671314],[-120.03094707000916,49.9106254148382],[-120.0297329458164,49.91030872083592],[-120.02838603296273,49.910072740426415],[-120.02452742156868,49.90912141696691],[-120.02419999313581,49.912967349343816],[-120.01926055818703,49.9151568048527],[-120.0137087765127,49.91774962788135],[-120.0110660658308,49.91936004325218],[-120.0091122022378,49.919767377182396],[-119.99939970441949,49.92423519531283],[-119.99805163021723,49.92608949874235],[-119.99652478399891,49.92760234251739],[-119.99426941945639,49.92912762526843],[-119.99102163152607,49.929697670825526],[-119.98599566586516,49.93029055894697],[-119.9815119500333,49.93122156829602],[-119.97657083237466,49.93169858088292],[-119.96950863403661,49.93003426765435],[-119.96715650072545,49.9285853541917],[-119.95989933527021,49.92417810129316],[-119.95502540583655,49.92162116071816],[-119.94788650467086,49.92012985371654],[-119.94145922100839,49.92085858631419],[-119.94420504822398,49.92333333000044],[-119.94446678570199,49.925677238732796],[-119.94190391410955,49.92834639926301],[-119.9391540109326,49.930737797173556],[-119.93811848972932,49.933900408675434],[-119.93563060943154,49.93599942160944],[-119.93325196495866,49.936435508613194],[-119.92648090297125,49.93762609067203],[-119.92226085495524,49.941071434630764],[-119.92078450178056,49.94406899017415],[-119.91854848880251,49.94856634565751],[-119.91829857079891,49.948972088624615],[-119.91491887792816,49.95113843508942],[-119.90978509116853,49.95345131387368],[-119.9067992480775,49.95423548962939],[-119.89916013884455,49.956241999748656],[-119.89485878954122,49.959742796287806],[-119.8936156142397,49.962339052058404],[-119.89222122938669,49.9629318900787],[-119.88987223531385,49.96427968084089],[-119.8873605973174,49.96569166861849],[-119.88238093462473,49.9677705794102],[-119.8767734097468,49.96733523429035],[-119.87129021656861,49.967536026869965],[-119.86540283790504,49.96876358913387],[-119.85928540545586,49.97148732637623],[-119.85789504447011,49.97225201676736],[-119.85455319513785,49.97360941163882],[-119.85473320238161,49.97361049076812],[-119.85478218612931,49.973610415447524],[-119.85480497895395,49.97361000715796],[-119.85492664566134,49.97360273042296],[-119.85504129255585,49.97359562811523],[-119.85506438749397,49.97359298054042],[-119.85538168749194,49.9735487438836],[-119.85541753916648,49.97354229079168],[-119.85544878610548,49.97353107590567],[-119.85563023370221,49.97345665214081],[-119.85586971430507,49.973457682881126],[-119.85601402007536,49.97347706206886],[-119.85630338679572,49.97352319032047],[-119.85653758187948,49.973563406216414],[-119.85685872408762,49.97360737214384],[-119.85705170981014,49.97365486790925],[-119.85708771101633,49.973660272143455],[-119.85712431627634,49.97366119789187],[-119.8571594127408,49.97366034232434],[-119.85724296258306,49.973676310958986],[-119.85742183573711,49.97372470184755],[-119.85761761316752,49.9738163487058],[-119.85769715711136,49.97399171247141],[-119.85779043695999,49.97416898381448],[-119.85780960733626,49.974195436790616],[-119.85788462659306,49.97427466785043],[-119.85791934445135,49.97430256156456],[-119.85800500776844,49.9743547469404],[-119.85802795207461,49.974366186883245],[-119.85823045139313,49.974459897052846],[-119.85827717126116,49.97447661445407],[-119.85853122271864,49.97453824511714],[-119.85884648534243,49.974651816297396],[-119.85890407309003,49.97466576775043],[-119.85901570267048,49.974681053689274],[-119.85905555485998,49.974683848479344],[-119.8595585306452,49.974689496762956],[-119.85960260835964,49.97468689692887],[-119.85984994491554,49.974655644710346],[-119.86005003370909,49.97465050400737],[-119.86024559276255,49.97465301454825],[-119.86028272734649,49.974662993560784],[-119.86031246528961,49.97467594203454],[-119.86051459459082,49.97483731195621],[-119.86055671115595,49.974862235328104],[-119.86081046732187,49.974977991877786],[-119.86098150090824,49.97504567375782],[-119.86101003093928,49.975054610501495],[-119.8611770634582,49.9751000745807],[-119.86119397050966,49.97510440678347],[-119.86121087756432,49.97510873898365],[-119.86130235681142,49.97513078927257],[-119.86133134090487,49.97513635810881],[-119.86149965623977,49.97515933192135],[-119.8615255450762,49.975161911471574],[-119.86172344719583,49.97517300672263],[-119.8618066995992,49.97519121109559],[-119.86164344902728,49.975351271111556],[-119.86162873168436,49.975369623401384],[-119.86157703192836,49.97544174689225],[-119.86142925487293,49.97564271655309],[-119.86137061058795,49.97570147314766],[-119.86116033523632,49.97591191590311],[-119.86095118928458,49.97611396552423],[-119.86093458447277,49.97613333998479],[-119.86085676922023,49.97624347274548],[-119.86084499446638,49.97626594273289],[-119.86077329438021,49.97644748748861],[-119.86076778414497,49.97646241214684],[-119.86072363366247,49.976673144083165],[-119.86070265359768,49.97678984774199],[-119.86066989810496,49.97694199875843],[-119.86066906915266,49.97697409808642],[-119.8606917165759,49.97711750617914],[-119.8607074923226,49.97715618595836],[-119.86075980296314,49.977235259961724],[-119.8609042029027,49.977422721110734],[-119.86102512927077,49.97762861178459],[-119.86104898235192,49.97765927921965],[-119.86124056109915,49.97783415121682],[-119.86128887055044,49.97786506162545],[-119.86156846079302,49.97799692828651],[-119.86184103218238,49.97811599179722],[-119.86215512063366,49.97825148727801],[-119.8625061995809,49.97841104811286],[-119.86285358333521,49.9785850655294],[-119.86293148504878,49.978630042510666],[-119.86327774111345,49.97881245119498],[-119.86333526273184,49.97885290141529],[-119.86352194687859,49.97901226957511],[-119.86355742836979,49.97906050906368],[-119.86368803125656,49.979246632391195],[-119.863739293943,49.979346519473076],[-119.86374133592973,49.97938329178101],[-119.86373666135084,49.97944394578501],[-119.86367937582581,49.979531549945],[-119.86367265866309,49.97954245424966],[-119.86366428138123,49.979552696972064],[-119.86365129965154,49.97957114672284],[-119.86351135824087,49.97966201525396],[-119.86348380711331,49.97967175198726],[-119.8634552741947,49.97967579332587],[-119.86320021142372,49.979673339147396],[-119.86289887477962,49.979663787611095],[-119.86285139497515,49.97966563880774],[-119.86256349811138,49.97969913789244],[-119.86228012947667,49.97972499353763],[-119.86218411333543,49.979736532688435],[-119.86216093964482,49.979739746025835],[-119.86189863269914,49.97979103039884],[-119.8618805165258,49.979795655257924],[-119.86161926531494,49.979865056410745],[-119.86158076906155,49.979878122880756],[-119.86132223664877,49.979992230269154],[-119.86130155345303,49.980002920059555],[-119.86107215760364,49.9801344534],[-119.86104868276531,49.980152874147414],[-119.86100859987708,49.980151755044254],[-119.86076470539784,49.980131312734414],[-119.86061162053439,49.98012498596058],[-119.86033556921507,49.980122485590385],[-119.86030212913779,49.980123994841165],[-119.86005219669093,49.980148335469664],[-119.86003445819608,49.98015015651176],[-119.8596896394479,49.980203586670555],[-119.85962781727254,49.98022098487049],[-119.8593687496882,49.98032603335314],[-119.85933885718498,49.980340150121336],[-119.8593077568241,49.980363223771924],[-119.85915157424088,49.98050958039076],[-119.85895342102117,49.98068177596694],[-119.85892299908598,49.98069981572975],[-119.8588763482812,49.98070848023495],[-119.85871216487483,49.980719577732636],[-119.858462305091,49.98071740466521],[-119.85824067614075,49.98071343923432],[-119.85798734403984,49.98071107032669],[-119.85794325920882,49.9807136784478],[-119.85768343317332,49.980746483613174],[-119.8574510849435,49.98077010829018],[-119.85738805295499,49.98078349367331],[-119.8573589146855,49.980792011853495],[-119.85721775278337,49.98082696017408],[-119.85716257030472,49.98084699472592],[-119.85701415961242,49.98092270658307],[-119.85696773265633,49.98095564110782],[-119.85684838051777,49.9810752904622],[-119.85684030350913,49.981083293428824],[-119.85670071712384,49.981249186865846],[-119.85659955922343,49.981311765079205],[-119.85638184693838,49.98140840593924],[-119.85633323152854,49.9814186558336],[-119.85631519027814,49.98142271548282],[-119.85629903508348,49.98142576189046],[-119.85600462817234,49.98149440937888],[-119.85594778427907,49.981513781606324],[-119.85568356492807,49.98164391937901],[-119.8554368609602,49.98174795643415],[-119.85528489898877,49.98178512116922],[-119.85487243045965,49.981795249076505],[-119.85485129361858,49.981796319088446],[-119.85471141241919,49.9818087746458],[-119.85466121108504,49.981817806755956],[-119.8544506682584,49.98187423546139],[-119.85439631498382,49.98188810630311],[-119.85425975166285,49.98192782149764],[-119.85422487391517,49.98193996959095],[-119.85420079188349,49.981949898850104],[-119.85413194322707,49.98198043680621],[-119.85392970173986,49.982040155204146],[-119.85359256100708,49.982101326242386],[-119.85329037010105,49.982162770476855],[-119.85325405916161,49.98217257264277],[-119.85317146959927,49.98220121967734],[-119.85311703812548,49.98222862253999],[-119.852983711475,49.982322097407675],[-119.85295585170972,49.9823470479996],[-119.85285052650232,49.98246635288544],[-119.85283089556425,49.98249514060416],[-119.85276874721092,49.98263153425257],[-119.85276119116034,49.982674545821496],[-119.85277459517899,49.98289921832475],[-119.85278244065701,49.982931813619615],[-119.8528795655384,49.98314539250729],[-119.85289692439146,49.98317231283416],[-119.8530010080233,49.98329547599221],[-119.8530087063531,49.98330324516915],[-119.853207068318,49.983505584974594],[-119.85321884262413,49.983522039018794],[-119.85323453201111,49.98361316620403],[-119.85322659656583,49.98367194957813],[-119.85322516133988,49.98368258128036],[-119.85322294369192,49.983880439590386],[-119.85322125926997,49.9840484291221],[-119.85320034257371,49.98408673790116],[-119.85318795989507,49.98410070791232],[-119.85315474154052,49.984113508409344],[-119.85311261677423,49.98411452816381],[-119.85301432564553,49.98411690752825],[-119.85292125105471,49.98406768788387],[-119.85278469939783,49.983977672841164],[-119.8526319945626,49.983877726165865],[-119.85244849327667,49.98375968869349],[-119.85228174845138,49.98366008133151],[-119.85206594785156,49.98348326612627],[-119.85187997230287,49.98327992273881],[-119.85180494745974,49.983200697495974],[-119.8516066675513,49.98301075916535],[-119.85141563545776,49.98281898014029],[-119.85140310607363,49.98280812387089],[-119.85124233644724,49.98267726357549],[-119.8510040496035,49.982498614399205],[-119.85096510130303,49.98247612180137],[-119.8508017556493,49.982403216999366],[-119.85078024295815,49.982394112360744],[-119.8507369914112,49.98237757798669],[-119.85063002979943,49.98234055363613],[-119.85061493350793,49.98233575307194],[-119.8502827993292,49.98224321599021],[-119.85014338533108,49.98217446976816],[-119.84994314213144,49.9820380059915],[-119.84985928821735,49.981972379715245],[-119.8497237324009,49.98187507875817],[-119.84963444303219,49.98181084362554],[-119.84962161190391,49.98180222632982],[-119.84933200249786,49.9816280271976],[-119.84931902024897,49.98162052946006],[-119.84930437802167,49.981612369923965],[-119.84925101534785,49.981580042237475],[-119.84917879031701,49.98150604376393],[-119.84915690922364,49.98146081916529],[-119.84914423785541,49.98141216806976],[-119.84916028396373,49.981228622044654],[-119.84916544963721,49.9810867727431],[-119.8491965126317,49.98092156008631],[-119.84921466607071,49.980761262712754],[-119.84921451719823,49.9807494139019],[-119.84921452904308,49.98069752235555],[-119.84921706279968,49.980510401450864],[-119.84922035031684,49.98033065092644],[-119.84921358062239,49.98022535808443],[-119.84921162059442,49.98021396706308],[-119.84917068052194,49.979999026446876],[-119.8491687205144,49.97998763542134],[-119.8491003028044,49.97978186356753],[-119.84909638045427,49.97977204993201],[-119.84901655701766,49.97959892050112],[-119.84895319526645,49.979407529054335],[-119.8488849995304,49.979226027811436],[-119.84872173455624,49.97888068386994],[-119.84862538560041,49.978700416366976],[-119.84853681415153,49.978514376594475],[-119.84848590714897,49.97833440553801],[-119.84841703748269,49.97814496900856],[-119.8483656814504,49.97795537919311],[-119.84835007874142,49.9778636952944],[-119.84836491688007,49.977689105308116],[-119.84839228470733,49.97751240350642],[-119.84842415757143,49.977431843081035],[-119.84849674070418,49.97724414435131],[-119.84854258021716,49.977150831384776],[-119.84862972176475,49.976997793411385],[-119.84872011352367,49.97682068837056],[-119.84879669270086,49.9766422386986],[-119.84879986595836,49.97663169552584],[-119.84882192265609,49.9765590487397],[-119.84882577580669,49.97654347183139],[-119.84883386936737,49.97647060012422],[-119.84883591149422,49.97645548100777],[-119.84884138008188,49.97631139160072],[-119.84883649293937,49.97623102202034],[-119.8488142643264,49.97607183933555],[-119.84880709907786,49.97604718716514],[-119.84872562718964,49.97586041739172],[-119.84871868575725,49.97584705877519],[-119.84415611817411,49.977314932789],[-119.83991705572495,49.98041064779114],[-119.83851295188258,49.980548244879],[-119.83603056663799,49.98058733487571],[-119.83000508528065,49.98095362200749],[-119.8284262486511,49.98165714728749],[-119.82652168246096,49.98249176920076],[-119.82567402501897,49.98399514320121],[-119.82573275651264,49.98541988349346],[-119.82772542665414,49.98682728647958],[-119.83132579821434,49.98814696922474],[-119.83467551230962,49.990388731004145],[-119.83075818976413,49.99233579788422],[-119.82731468934907,49.99295402212915],[-119.82532967465609,49.99458449014123],[-119.82540479245509,49.996817294438095],[-119.8254477472719,49.99784233327164],[-119.82353779917987,49.99902069341319],[-119.82120743587784,49.99999481618963],[-119.81620233712816,50.001383694414784],[-119.81186767627479,50.00195849822345],[-119.80680815825565,50.00158233894158],[-119.80208835037455,50.00107681777217],[-119.79447277039475,50.0014771215047],[-119.78503431655525,50.00281760075216],[-119.77906251502753,50.00450538453772],[-119.7743644508044,50.00732006889899],[-119.77128596635892,50.01067848617545],[-119.77318305782418,50.01390677501852],[-119.774439320157,50.0143476269336],[-119.77961148880377,50.01524151803197],[-119.78657467082616,50.0164578292464],[-119.79355596069847,50.01846776467675],[-119.79707261740691,50.01989988284573],[-119.79761317668182,50.02035294637247],[-119.79968413128485,50.02386344475199],[-119.8034367018772,50.02706452998201],[-119.80544402138734,50.031150511390905],[-119.80208465472128,50.0340053178664],[-119.79790696141565,50.03617863826212],[-119.79184332133947,50.03810065202606],[-119.78629687541878,50.03920785471873],[-119.78123978853039,50.039398898451054],[-119.77966270337328,50.039761238002036],[-119.77268567983111,50.0411791942993],[-119.76059271309634,50.045353918423274],[-119.75857875803906,50.049099726470246],[-119.7587046509392,50.052470921290535],[-119.75685494992983,50.055527736956854],[-119.75727768721573,50.06020748075353],[-119.76216997266131,50.06327894009455],[-119.76218659995037,50.06356641991337],[-119.75944133961188,50.06640367983204],[-119.75358850087014,50.069401295328184],[-119.74510622976871,50.073359389190706],[-119.74150015633822,50.0772403151021],[-119.74479836446348,50.07987406543912],[-119.75202955614384,50.08114670866496],[-119.7584531698271,50.081969640167],[-119.75957878219243,50.08378271341169],[-119.75871664354246,50.08464629316453],[-119.75392778438034,50.087234649289115],[-119.74663255142548,50.089680624459575],[-119.74293600342847,50.090645430820956],[-119.7411489068289,50.09312684272463],[-119.74180377951753,50.09672380570182],[-119.7400312995121,50.09960592444697],[-119.73985711651117,50.10229432093311],[-119.7377730749997,50.106211686892046],[-119.73709302821021,50.107478635890814],[-119.73649066491798,50.1133705079749],[-119.7384485914291,50.11871514044642],[-119.74492146878717,50.123598289378414],[-119.74600293248609,50.12369765433551],[-119.74988830993182,50.12301184944333],[-119.75554251823951,50.12202039028501],[-119.75838303803819,50.122089881478566],[-119.76214098646322,50.12283913356041],[-119.76409611634399,50.122813085325994],[-119.76602764440992,50.12203892176791],[-119.76928835280076,50.12119518242395],[-119.77284796243647,50.12113928074746],[-119.7757331695787,50.12241779985542],[-119.77755524202861,50.126331320915725],[-119.77677468864779,50.12680146612684],[-119.77652374395308,50.1300645754515],[-119.7760977551072,50.133272630169316],[-119.77620267720673,50.13875256314793],[-119.77622953106734,50.142242284275355],[-119.78051424847318,50.147666023586126],[-119.78417663867775,50.14841233550573],[-119.79116523045407,50.149797606252385],[-119.7958655339355,50.15179038199871],[-119.79900087906105,50.155059420790735],[-119.80222543672049,50.161071313734496],[-119.80457332317015,50.16692310078923],[-119.80836402085403,50.173843435391376],[-119.81105737948435,50.17717556209179],[-119.81597167071737,50.18030481455093],[-119.82045894078459,50.181209425771456],[-119.82449700564484,50.18200741614931],[-119.82511662022564,50.18199933863206],[-119.82781716878522,50.18281348116748],[-119.82674581356345,50.18551878037225],[-119.82244388047981,50.18706660185834],[-119.81645980069733,50.1889878036132],[-119.81322956045959,50.19091920369979],[-119.8102229710972,50.19399036875884],[-119.80675175606206,50.19644546204274],[-119.80426576639954,50.199508564338274],[-119.80259923864966,50.202850093866026],[-119.7982727739882,50.203941748716524],[-119.79400872148517,50.20406288287047],[-119.78723688559015,50.204214880285846],[-119.77919339968547,50.20307708392519],[-119.77483837133421,50.20078941341987],[-119.77124840925279,50.20010018176041],[-119.76805395051359,50.200319175511524],[-119.76159600253435,50.20166598664557],[-119.74971141411105,50.20309408898796],[-119.73931660671055,50.20381165410423],[-119.7381614245568,50.20657192446624],[-119.74145400003194,50.21155220236246],[-119.74467337176186,50.217678601327876],[-119.74757977461572,50.221695952925835],[-119.75234104450256,50.22563402960143],[-119.75697171305312,50.22848394992912],[-119.76033080361245,50.23300749627709],[-119.7604183704509,50.23808997457914],[-119.75956458557822,50.2390758307873],[-119.75744842375025,50.242478146598174],[-119.7538312343109,50.249103253111414],[-119.75345394472234,50.25642567270231],[-119.74768246640845,50.25987599718243],[-119.7386447519753,50.261377759728724],[-119.7367667289902,50.26151521781483],[-119.73213829128868,50.261580853228246],[-119.72114743079388,50.263448334759936],[-119.71561086235201,50.26609452701013],[-119.71040782501179,50.270794155766445],[-119.70797509634808,50.272484706364516],[-119.7039445652532,50.277454004680806],[-119.69913568934446,50.28335090870773],[-119.69463435241005,50.287639980058444],[-119.68980304746214,50.29004623685998],[-119.68767466678379,50.29327810928891],[-119.68712277892598,50.29551407619095],[-119.68367322573329,50.29921951560623],[-119.68127341494909,50.30519276619394],[-119.68457564390353,50.307892434247734],[-119.68814689545599,50.30796259748977],[-119.694379994416,50.30764853813271],[-119.6995851287166,50.30843707464118],[-119.70149432569023,50.3096084858812],[-119.70234391918171,50.31079607220129],[-119.70464417509818,50.313108516524686],[-119.71096473677848,50.315309505990825],[-119.71804062651744,50.316240360278634],[-119.71953535337387,50.31816709978184],[-119.71380324422111,50.3202440237407],[-119.70396515705114,50.32283761989152],[-119.69717178550194,50.32492932979621],[-119.69088495298158,50.32672197742989],[-119.6834768649339,50.32956891952731],[-119.68231813593853,50.329583807009435],[-119.67166232638093,50.331439375349035],[-119.66427601526338,50.335020593857244],[-119.66430729616734,50.33902053169143],[-119.66563354915517,50.341232723733846],[-119.66875959449337,50.34439621527481],[-119.6682154581972,50.34696799395395],[-119.66641131631356,50.34916582244964],[-119.66407403145624,50.35154111442029],[-119.66259599661319,50.355735755621154],[-119.66098377057963,50.358271012270684],[-119.65833401320273,50.35944915425455],[-119.653537251049,50.36053603865507],[-119.6465975794455,50.36120062006124],[-119.64448950826916,50.36253761569567],[-119.64544752766469,50.36475644044164],[-119.6461472262959,50.36720625960506],[-119.64447517949829,50.37065759731012],[-119.64031883171612,50.37219810869413],[-119.63578924181655,50.37327938711817],[-119.6338433427797,50.37656257737838],[-119.63487793172709,50.37843738560622],[-119.63824416966912,50.383305969863116],[-119.6404378921185,50.387680058565614],[-119.64036976140072,50.388363520330984],[-119.63825756479793,50.39222249646679],[-119.63702119538468,50.39898230607723],[-119.63727900461978,50.4040630995732],[-119.6400084108209,50.411857879873075],[-119.65001944511292,50.41161667790066],[-119.6673370319992,50.410363268519085],[-119.67962643357676,50.40888309116496],[-119.68994746162312,50.40692223345828],[-119.6919834996987,50.4066093079145],[-119.68825912339689,50.41020105473179],[-119.6794589510338,50.41763571601773],[-119.67285483476189,50.424006255259634],[-119.67060542224011,50.426435180145646],[-119.66516282784211,50.42965447268143],[-119.6560749142435,50.433654701824686],[-119.65228365360868,50.43547615320797],[-119.64668526951108,50.436974970153045],[-119.63196886255894,50.4414541490495],[-119.62554374483659,50.44198867573527],[-119.61609370230926,50.44330978935385],[-119.60846845005898,50.445520437281566],[-119.60509834792622,50.44664467120368],[-119.60182385907501,50.447891056799534],[-119.59244533512246,50.45177554598287],[-119.5874299969184,50.45481089758469],[-119.58437885065851,50.45775802969308],[-119.58354335237885,50.46262780166283],[-119.58199798227521,50.46493247393417],[-119.58038652044672,50.46472289199496],[-119.57678315841599,50.46419361874836],[-119.57449904278792,50.46245174579986],[-119.56773464064626,50.45750887709558],[-119.56427838525067,50.45268907222034],[-119.56052362499345,50.44976393862401],[-119.55651644923707,50.44415775860459],[-119.54945912762994,50.43852695001423],[-119.54511917373992,50.43703546974259],[-119.54235978820924,50.43438470376958],[-119.53829047296392,50.429630537910974],[-119.52992789644597,50.4279016379467],[-119.52571767904878,50.4277810586715],[-119.523544312955,50.42706451023621],[-119.50617868307552,50.4235542241526],[-119.48902999130951,50.42129796740224],[-119.47839160546413,50.421247556868316],[-119.46922438164422,50.419922651029246],[-119.46125600375642,50.41949692710677],[-119.45055341160308,50.417165363631845],[-119.44710530878352,50.41200396042388],[-119.44654059240685,50.41063827950843],[-119.44148079411049,50.402184133513224],[-119.430427324653,50.39676615922214],[-119.42207001716524,50.395256640019724],[-119.42441229127918,50.39905835556958],[-119.42742962418369,50.40530856889121],[-119.42623427238743,50.407205416285684],[-119.42062501396124,50.40835290879484],[-119.40721137607301,50.411925207639506],[-119.3974210263458,50.41728667801739],[-119.39663158863226,50.41775338459049],[-119.39021549519612,50.42216846909383],[-119.3860557232339,50.42392046826092],[-119.37976843826306,50.423019151235096],[-119.37140201712337,50.42145021810411],[-119.36522704427796,50.42122995803372],[-119.34958633335991,50.42986347098634],[-119.34687596945334,50.43136112148791],[-119.3272566445986,50.44149547892236],[-119.30289341709117,50.455965925970965],[-119.29693150411926,50.461504310651705],[-119.29542471101949,50.46591847773099],[-119.29625446197423,50.47070596686396],[-119.2981616208691,50.47605558499065],[-119.30054243225315,50.481745704404126],[-119.30694310397998,50.49516273985227],[-119.30703356412201,50.495506644010575],[-119.30968339519268,50.5010213420848],[-119.3107596399646,50.50540417196044],[-119.31141455683635,50.51042992856597],[-119.31058909029264,50.51312082346434],[-119.30919279590064,50.51479072302284],[-119.30805750302653,50.51651528278263],[-119.3052015276749,50.52094318195947],[-119.30217517402303,50.525369188264655],[-119.30077808158633,50.52732491774934],[-119.29890109089126,50.53116713429903],[-119.29599379484667,50.53754162128345],[-119.29260623161001,50.54579739564898],[-119.2911147476911,50.547808235019836],[-119.29018580934029,50.55421647697314],[-119.28947529036289,50.56210381210546],[-119.28969835036895,50.57181181235336],[-119.28979314026857,50.57620846648669],[-119.2940653192991,50.58256539065699],[-119.30141135274457,50.58992253665215],[-119.30543689298864,50.59319459978863],[-119.30464030243783,50.59320577999384],[-119.30217792615153,50.59591279388882],[-119.29834726332747,50.600744671991],[-119.29396883426753,50.606100604086535],[-119.29183396422961,50.61069120794484],[-119.2908849709554,50.61618077659323],[-119.2905553622708,50.621611284628685],[-119.29140600616877,50.627318317510316],[-119.29248332380472,50.631701778948425],[-119.29196230296878,50.63205045258578],[-119.28559301170226,50.63274300313571],[-119.2817457962043,50.633575293582204],[-119.2772333261766,50.63647371726661],[-119.27472064681979,50.640435439684566],[-119.27139758155192,50.64515343724901],[-119.26964809479301,50.647055324965116],[-119.26643618480553,50.648283765325665],[-119.25964049485745,50.64971280265216],[-119.25176090645462,50.65144564449735],[-119.24217465586234,50.65261400792449],[-119.23603837274877,50.651359283436776],[-119.23023926812188,50.64975643402036],[-119.22718534068417,50.649554061606004],[-119.22341806422696,50.65021505844743],[-119.21781045776521,50.65260917172248],[-119.21304016101752,50.656416268151034],[-119.20776577583739,50.661948210226015],[-119.20121990787975,50.66760358287517],[-119.19874526265637,50.66985277133371],[-119.19215209166656,50.67224866717154],[-119.17904785306088,50.678073787999644],[-119.16655572110992,50.68303380670401],[-119.16156409370781,50.68581635243614],[-119.15793886296774,50.6888705722878],[-119.15276521347228,50.69525318207605],[-119.14946577920598,50.70156202547374],[-119.14634171786804,50.70792782227211],[-119.14306540318665,50.715373895377766],[-119.14188365037617,50.71955339094582],[-119.13940475358152,50.72123379899377],[-119.135785951693,50.72514461696127],[-119.13280244816767,50.72899467674779],[-119.13214359219353,50.732821090980735],[-119.1323234934659,50.73693553636536],[-119.13399994293246,50.74011737393014],[-119.13774112103572,50.74265703488418],[-119.13785143490118,50.74351607732078],[-119.13626742868915,50.74603895663274],[-119.13481704878053,50.75010249896918],[-119.13558966303408,50.753235868600164],[-119.13912623188205,50.75869394935693],[-119.1401456374967,50.760686756096504],[-119.13304596683727,50.76153773617661],[-119.124257475763,50.76326607249518],[-119.1113740021008,50.763538208840885],[-119.10488147803801,50.76358682450443],[-119.09138992329983,50.764838287023785],[-119.08789116160571,50.7649733199031],[-119.08292124564802,50.76466723614769],[-119.07182788851726,50.76349759551051],[-119.06190258500366,50.7633449264369],[-119.05388879234745,50.76345718967964],[-119.03435096917536,50.76434289231883],[-119.02606773108492,50.764625312648704],[-119.01661482321981,50.765549683184915],[-119.0147328376099,50.7656427150954],[-119.00986339752183,50.76587837638342],[-119.00157742725004,50.765536612173484],[-118.99824631828385,50.76596144776577],[-118.99008296682283,50.768471979730364],[-118.98605370015193,50.76952725351104],[-118.97942711832751,50.77213885859585],[-118.97109069316176,50.77528089589953],[-118.97037504802725,50.77556973452633],[-118.96166079221875,50.778023889570086],[-118.95574631598241,50.77971900948963],[-118.953249538553,50.78144319974018],[-118.94984013601625,50.78289412958713],[-118.94505636972052,50.782299843898315],[-118.94022874323143,50.7791869903761],[-118.9351514443431,50.77693531915369],[-118.93170734825324,50.77599033167264],[-118.92791384587503,50.774641120699016],[-118.92175299689127,50.77239503756043],[-118.91866723636646,50.77144189495369],[-118.91322061661494,50.767934562465754],[-118.90809309769132,50.76197322223958],[-118.90799143331084,50.7618053920072],[-118.90692280081079,50.75587536227107],[-118.90170610895534,50.75030954115281],[-118.89882796636238,50.75021411841745],[-118.89114432510574,50.74843084587795],[-118.88813435859132,50.7487166050563],[-118.88476131064837,50.74904453410547],[-118.8811926577037,50.752031464600655],[-118.8766514928819,50.7561082659423],[-118.87440660757434,50.75606175183105],[-118.86676007270628,50.757080035537655],[-118.85733434297227,50.760218142190844],[-118.85261996176179,50.765090444087456],[-118.85011677105695,50.76647642442869],[-118.84669087206008,50.76569852137634],[-118.83973916768116,50.764767903396866],[-118.83397917648546,50.76565363663553],[-118.82950526902592,50.76767531175935],[-118.82819263700222,50.77087705136117],[-118.82698367120807,50.775563225691265],[-118.8261144685908,50.77751149893787],[-118.8241539715404,50.779859530504666],[-118.8232484056665,50.7804907419405],[-118.82943496420455,50.777828422720155],[-118.83481617078955,50.79259188613031],[-118.81504771948849,50.800007999001714],[-118.81205189479232,50.80113188716468],[-118.80263569886165,50.807465419964664],[-118.80000331765802,50.80862037991776],[-118.79571762930155,50.81049965091788],[-118.7869060326564,50.8134962850453],[-118.78615560940636,50.813369889482416],[-118.78499084029757,50.81522093797787],[-118.78197270591411,50.8201328060924],[-118.78121695684725,50.82617053929654],[-118.77607224217344,50.825545858898614],[-118.77500949053427,50.826343750812455],[-118.76878172038951,50.82688376558429],[-118.76163937129516,50.82549073981192],[-118.75775263800182,50.824539952245324],[-118.74918495949036,50.8249794406734],[-118.7404395109337,50.825193425669305],[-118.73592446539155,50.82520935113393],[-118.72437509267836,50.8247519413574],[-118.72021567429121,50.824250945030656],[-118.72011535328717,50.823115786502335],[-118.71626215486968,50.81610608658737],[-118.70748262836831,50.81260531379181],[-118.70494810962244,50.81256428340692],[-118.69413338813152,50.81260867347277],[-118.68494021419325,50.81373355630922],[-118.68250859800757,50.814195960729876],[-118.67333218020318,50.816170379330806],[-118.6695494843171,50.81772777507126],[-118.66389876303349,50.82083045514597],[-118.66214644438021,50.827402237402836],[-118.66416761254308,50.83195907236518],[-118.66831589652114,50.84113080825014],[-118.66364298199531,50.84400323184011],[-118.6588042701965,50.847444729562305],[-118.65205960433018,50.85117427350607],[-118.64971974813473,50.85193165603626],[-118.6464580995627,50.85091321735707],[-118.63886698518891,50.84946082331593],[-118.6319242991559,50.850225747534196],[-118.63184661197768,50.85233810382926],[-118.63323097575613,50.856326357651874],[-118.63506673816522,50.85922805429545],[-118.63853238161775,50.86463788989651],[-118.6409141671169,50.86856526797239],[-118.64167338186516,50.87227786751302],[-118.64042279455549,50.87370338390908],[-118.635568514957,50.87668876513266],[-118.62746206935647,50.88065748257115],[-118.62072017072602,50.88518537123781],[-118.61588558120829,50.89045074597415],[-118.61367928059323,50.89650824214517],[-118.61272319159204,50.90313254369413],[-118.61305705420808,50.91112197953593],[-118.61288769451512,50.912487213574416],[-118.61364100634935,50.91648451651555],[-118.6134841413061,50.921050896592625],[-118.61168161695016,50.92207965614384],[-118.60617884608966,50.9235821777848],[-118.59977394656765,50.92491187529277],[-118.596432410048,50.92555130995347],[-118.59354813075991,50.92453974712603],[-118.59375446475404,50.92571878346785],[-118.58830854801721,50.925465744345956],[-118.5834508481028,50.9364114863281],[-118.57793587567457,50.93648923539032],[-118.57829103272843,50.939348660146905],[-118.57177116863457,50.93804563021919],[-118.56636582856476,50.93901840942456],[-118.56152003126654,50.93744675253212],[-118.55945562469016,50.94045691268998],[-118.54931190048151,50.936381899744944],[-118.54480560658577,50.93717819805167],[-118.54208329673779,50.939279631543094],[-118.53584130791567,50.93631448559261],[-118.53102513776413,50.9316313282183],[-118.53767631522766,50.927852585996575],[-118.53730721110048,50.9277805443668],[-118.53342128072767,50.92704873183857],[-118.53097297753898,50.92602620694713],[-118.5249069301072,50.92387118619771],[-118.51792972221388,50.92041255291857],[-118.5105813239506,50.917294268023475],[-118.50750479027546,50.91609811101052],[-118.50379408889161,50.91348438303628],[-118.49563507126781,50.908140320048574],[-118.48611692140486,50.90365296773257],[-118.48330727090394,50.902749419733816],[-118.47544341744656,50.90254022428636],[-118.46469757191288,50.90261766528539],[-118.45855615447007,50.9026306741288],[-118.45394662418003,50.902639544854885],[-118.44788617073134,50.902596473155675],[-118.44154973665431,50.90089173227059],[-118.43965312295416,50.8995887178093],[-118.43547646146921,50.89486230641884],[-118.42923301333376,50.890936631896935],[-118.42398204665032,50.889171621142516],[-118.41612085256905,50.88593470020635],[-118.40689418289517,50.88349683390168],[-118.39938892411664,50.882879635082745],[-118.39297742195582,50.88289476036476],[-118.3865695778383,50.88347375721372],[-118.38422562126497,50.88404616724699],[-118.38187533183503,50.88490603040607],[-118.37392419109888,50.887141596961655],[-118.3672445296476,50.88754742514167],[-118.36245305300953,50.88578645150227],[-118.35521871028565,50.88317323144917],[-118.35376939462067,50.883115233294475],[-118.34980589527422,50.88511680192549],[-118.34348377581733,50.885522547237976],[-118.33904617246215,50.88495344902819],[-118.3342600399615,50.88325139279758],[-118.32576490021653,50.88240202429775],[-118.32025606599615,50.88331797569517],[-118.31692405635448,50.885547098551065],[-118.31340072389605,50.88531877264689],[-118.31168730655239,50.88538094908215],[-118.30951285171837,50.885378596989],[-118.30535179910544,50.885611436053466],[-118.30209849720381,50.88771065854389],[-118.30355437458711,50.887897374401255],[-118.30626322482337,50.88977616075115],[-118.30924539409055,50.893138838284145],[-118.311421328951,50.89553745218843],[-118.31413652489181,50.899124329367815],[-118.31512343132097,50.9011175044658],[-118.31467629975451,50.90345806199164],[-118.31233123486805,50.90642687009023],[-118.3120607840536,50.908820791812175],[-118.31359589236033,50.911784931507036],[-118.31558680999244,50.91418360048863],[-118.3178519272061,50.91640515310757],[-118.31821251328512,50.91771662422846],[-118.31967277792235,50.92136707600775],[-118.32084577631302,50.92518970106483],[-118.32084658238354,50.92792231237717],[-118.3199494851176,50.930546384255045],[-118.32040706754967,50.933287774142514],[-118.32130368590904,50.93448244668184],[-118.32393270224631,50.93676089978297],[-118.32583592708832,50.93984308375562],[-118.32719107562787,50.94286502345701],[-118.32854679279161,50.94588470471372],[-118.32910433472527,50.94713731375083],[-118.33172667797761,50.94804879480973],[-118.33634273971217,50.94953039849138],[-118.33878255657751,50.95083734987497],[-118.34121890375054,50.951749387336065],[-118.34439815171936,50.95317400249151],[-118.3460295034621,50.95385243027728],[-118.34782819743329,50.956305887580235],[-118.34884038658409,50.9594998139993],[-118.34920564218736,50.96212332492496],[-118.34939439684771,50.966854563689914],[-118.3503941745031,50.968790364429495],[-118.3509339811546,50.96981800753146],[-118.35347034789945,50.972155144753195],[-118.3564562448835,50.97546395404024],[-118.35890087962895,50.97717086632072],[-118.35999724739536,50.97779836751852],[-118.36334768921701,50.9788246488727],[-118.36506615676602,50.97950356419257],[-118.36833155595224,50.98035848319838],[-118.36896185318732,50.980695553902414],[-118.37132108927354,50.9822359947402],[-118.37394933097438,50.98479949885215],[-118.37576459508558,50.98758979976025],[-118.3770341622007,50.99038579738267],[-118.37876748612402,50.99340525140303],[-118.3823052769842,50.996023578340306],[-118.38402734532532,50.99819202441043],[-118.38692721689021,50.999933599822185],[-118.38720225095066,51.00033726685881],[-118.38782628776048,51.00113156175236],[-118.38955177883366,51.00227842093148],[-118.3912782393656,51.002331940871066],[-118.39317265710886,51.002158627185324],[-118.39472369069372,51.00147766264925],[-118.39589356135241,51.00050944839307],[-118.39643657460529,50.999934994688886],[-118.3973355247408,50.99828682068694],[-118.39859473052736,50.997717517296564],[-118.40113599769911,50.99703143573189],[-118.40358455708908,50.996970641177825],[-118.407029302557,50.99771000859873],[-118.40883873400696,50.99878716542599],[-118.40902779800965,50.999526999399535],[-118.4089633152444,50.9999042005841],[-118.40907939772221,51.00157439193495],[-118.41099040104795,51.00340119765426],[-118.41343713027992,51.00511579774953],[-118.41833271168667,51.00836769913394],[-118.4209584935721,51.01122139414765],[-118.42240951254674,51.01373082124854],[-118.42277393236175,51.01630275465511],[-118.4222297463798,51.017557373608405],[-118.42078188627967,51.020070510585434],[-118.41887517537249,51.02241261136641],[-118.41823644456517,51.024639544069686],[-118.41904824237065,51.02669198873482],[-118.42294616326164,51.03000292769615],[-118.42485809681655,51.03183446654389],[-118.42666580864183,51.03394112616002],[-118.42703540125689,51.036400995606186],[-118.42693490417582,51.03959670283727],[-118.42820821766375,51.042565735708955],[-118.43147232985811,51.04564826011967],[-118.43383254062435,51.0487294765436],[-118.43229112355411,51.05187303342643],[-118.43147308242055,51.05649841469207],[-118.43065548204851,51.05792309349899],[-118.42821733667913,51.05832460180767],[-118.42567501185738,51.0583267677677],[-118.42105335653584,51.057638644673425],[-118.41778253566832,51.058037850271944],[-118.41678882512058,51.05998561321655],[-118.41732307192721,51.06232057138643],[-118.41931752654213,51.06426431700228],[-118.4216773931905,51.06592001072089],[-118.42476450672703,51.0678601124181],[-118.4275795982538,51.07122603806383],[-118.42903209028401,51.07374023126323],[-118.42985078499662,51.07374129352881],[-118.43183845968967,51.073627061084565],[-118.43510679700019,51.07282707157003],[-118.43765042493163,51.07282190726718],[-118.43974292627274,51.074198363990554],[-118.44290876374329,51.076021257558125],[-118.44781565983342,51.07664963406592],[-118.45335603540082,51.07710198876138],[-118.45797915755372,51.07847045275887],[-118.46025538413978,51.07995418970091],[-118.4602492026525,51.08446695886746],[-118.45953142750308,51.08834779583238],[-118.4608934402732,51.091660631452505],[-118.46470808071564,51.09331411465475],[-118.47088357522674,51.09536961545055],[-118.47206731899675,51.09770749884989],[-118.47414970770718,51.10084826745187],[-118.47569462112666,51.10233105295577],[-118.47579409844798,51.102676320364615],[-118.47825424066514,51.10689701335749],[-118.47843371498088,51.11049646764836],[-118.47625613808553,51.113413207080065],[-118.47534396536773,51.11683568000382],[-118.47552991475835,51.11717996166099],[-118.47681098264275,51.11911902030475],[-118.47653015581899,51.12288794347586],[-118.47262250054335,51.12557136121163],[-118.4720912529941,51.12945723415988],[-118.47536557175526,51.13202584622552],[-118.4800807386613,51.133905241130186],[-118.48508719631253,51.136189316081506],[-118.48881523529309,51.140753801222395],[-118.48882431920417,51.14103937540884],[-118.48818155780715,51.14618288883525],[-118.48610178872373,51.150466263665216],[-118.48228924507438,51.15240984654663],[-118.47727996236446,51.1530949753113],[-118.47047337248732,51.155038124657935],[-118.46829328031666,51.15795344545478],[-118.46911380142703,51.16006644188886],[-118.47120733531563,51.164003283096214],[-118.47175481087206,51.16628415699849],[-118.47111092879364,51.168798449256784],[-118.47093646746706,51.17176851632837],[-118.47183949089967,51.17365277265952],[-118.47621146302336,51.175881986960384],[-118.48239214475628,51.17712986107699],[-118.48712298214338,51.1779295483671],[-118.49258040186207,51.17826686022047],[-118.49521577338797,51.17826441995501],[-118.49867946254035,51.17906595238034],[-118.50413625923986,51.179407722378144],[-118.51395418295905,51.178824153566886],[-118.52113951993643,51.178820822531996],[-118.52923271020758,51.17881245147555],[-118.53351927105227,51.178751194976236],[-118.53760358306778,51.17954697021572],[-118.54079418123985,51.18086166108581],[-118.54698069062253,51.184222057474024],[-118.55135747767716,51.18696120651225],[-118.55418511256974,51.189581277409445],[-118.55555245459665,51.19095421785287],[-118.55964790588949,51.193403514045244],[-118.56375278136224,51.196998021213325],[-118.56430992455391,51.20036475260926],[-118.56385349336135,51.20316349445997],[-118.56304636126136,51.20453590160294],[-118.56232039808977,51.204826451574476],[-118.55686486510415,51.20591299261506],[-118.5513023213802,51.20643590553109],[-118.54575945144327,51.2080369316673],[-118.54240022842595,51.21129504944543],[-118.54322897588247,51.215520032966005],[-118.54486642731763,51.21717383543185],[-118.54815532417268,51.21997336106594],[-118.55663400227071,51.22499018309906],[-118.56154931363923,51.22892351272344],[-118.56602313478122,51.23342939973906],[-118.57041074119292,51.23776741977114],[-118.57361221798777,51.24136184976526],[-118.57361264096653,51.24238810359566],[-118.57288699401775,51.2454166660735],[-118.57289226655604,51.24821414664083],[-118.57417171914861,51.25003779760599],[-118.57508474978096,51.253011852707004],[-118.57382572580542,51.2558670342186],[-118.56936348336424,51.25872881718191],[-118.56336218154982,51.261304435819504],[-118.55935596146331,51.264790606779876],[-118.55535333964177,51.26867914936252],[-118.55472323150396,51.26959210512374],[-118.55281792265468,51.27250429877669],[-118.54926561666751,51.27576911610538],[-118.54554517858092,51.2818193186069],[-118.54673616479856,51.28587428824998],[-118.54855420923026,51.28707311234134],[-118.55074741400587,51.28998238833721],[-118.55112527838288,51.29364221631334],[-118.55313180862004,51.29723240519182],[-118.55468058231777,51.2983196489736],[-118.55678879048853,51.299685234754016],[-118.5611632777162,51.30054018498705],[-118.56381117015492,51.30059064766439],[-118.56891241836284,51.300132486737205],[-118.57703227766224,51.29983666601544],[-118.58305368024843,51.300514777489205],[-118.58633720671622,51.30262324100778],[-118.58871580678168,51.305135280752445],[-118.58999227949253,51.30690413369108],[-118.59337732718926,51.30970212784276],[-118.59648826435505,51.31095326951854],[-118.59822277290476,51.313007021702546],[-118.59841876159456,51.31751634495908],[-118.59879671726355,51.32180235123429],[-118.6005328986964,51.32470959400041],[-118.60721090363705,51.32933044028501],[-118.61234028876873,51.333717464835516],[-118.6120691778401,51.33714400264035],[-118.6097020040368,51.34023143043242],[-118.6083508992575,51.34389244240116],[-118.60927446459966,51.34760359613401],[-118.61101358062116,51.35239862780614],[-118.61194398591552,51.35719147277856],[-118.61286237526504,51.359988943425186],[-118.61269281060437,51.364618981052566],[-118.60805474789447,51.368392709472495],[-118.6006576818361,51.37171491264302],[-118.59263690653238,51.373666296414406],[-118.58788950040764,51.376870352461744],[-118.58717196640768,51.380358355850944],[-118.58717793427039,51.382298037767086],[-118.58618076175286,51.38555616389397],[-118.58298078963486,51.38806508907417],[-118.57925287841564,51.39190096869529],[-118.58116398098548,51.394466014854935],[-118.5851920619358,51.39554532672749],[-118.5875648916604,51.39605965608644],[-118.59150158783949,51.39742548460244],[-118.59369745556697,51.39942170916004],[-118.59471159911493,51.40199254490969],[-118.59489597830022,51.4031321723481],[-118.59975019665113,51.405241912641635],[-118.60705593511743,51.40688841966004],[-118.6109993174705,51.408998423724604],[-118.61118354393638,51.40962470193804],[-118.61439004459446,51.41276428226534],[-118.61384709952479,51.41556649102049],[-118.61074697637027,51.41825357926383],[-118.60828378637811,51.42093822988516],[-118.60601427390596,51.42487974851659],[-118.6073007581354,51.428765957599516],[-118.60886358492748,51.432473879953115],[-118.60952274096879,51.43578772197675],[-118.61008758665999,51.441041254112626],[-118.6108233367213,51.442867080560035],[-118.61429046905245,51.44343571611641],[-118.6190525261953,51.44422798643311],[-118.62518117657733,51.44490378396954],[-118.6301381180435,51.44729930682106],[-118.62812781742005,51.44987224927792],[-118.62767691726596,51.45204193639584],[-118.62759036391381,51.45609766076709],[-118.6272421525967,51.45981316893955],[-118.62899255687655,51.46414636314918],[-118.63127876500077,51.46546033889153],[-118.63201826816925,51.4654571215974],[-118.63293488126659,51.464829808404765],[-118.63723241907955,51.46322161009814],[-118.64463147281252,51.462816368711074],[-118.6493904955362,51.463035111242846],[-118.65672129937002,51.46199640744175],[-118.65862865024694,51.461766450066406],[-118.66577322818823,51.461753370666194],[-118.67154857168126,51.46317393861287],[-118.67493353556038,51.46442157006836],[-118.67787393245304,51.46607741517237],[-118.68245408872372,51.46989412253988],[-118.68631137089847,51.47222587397322],[-118.69071277498684,51.47398971749121],[-118.69584708935011,51.47518254972815],[-118.70272515559752,51.47739480820339],[-118.70732158233703,51.48087070604706],[-118.71034832461059,51.48446418382015],[-118.7116423202477,51.487147055051416],[-118.71267524608841,51.49131648974362],[-118.71048374061849,51.49360206851101],[-118.70454209863472,51.496467922587875],[-118.69668521789501,51.49985976265492],[-118.69065590826483,51.503066713050266],[-118.69066626344635,51.50500726494476],[-118.69351540767335,51.50723060033934],[-118.69755215442905,51.508593681803895],[-118.70277798724922,51.509784456383144],[-118.70809253086988,51.51131562475629],[-118.71360690996136,51.513304846580766],[-118.71912035942843,51.51792480460251],[-118.72400171535732,51.523738763635194],[-118.72713241988683,51.52550543312611],[-118.73126386362833,51.526925067717535],[-118.73759881171411,51.528794622638394],[-118.74117109650899,51.52947604852689],[-118.74565192521476,51.52826110598385],[-118.75031383367224,51.525509787252616],[-118.75808424383965,51.52246513664009],[-118.76549699947067,51.52175860282082],[-118.76845458573641,51.52467170593722],[-118.76975873891237,51.52740885238252],[-118.77243558179055,51.5320298039098],[-118.77649011727665,51.536129981588296],[-118.77933362538326,51.536925545587586],[-118.7812647422092,51.53691761080028],[-118.78583281340073,51.53410992589866],[-118.78746127102995,51.53073578573789],[-118.7906467611101,51.527242383357425],[-118.7927300965965,51.52489224937452],[-118.79851281494234,51.524480869804094],[-118.80483369431086,51.525032515907164],[-118.81172042331968,51.52655782625758],[-118.81621438817277,51.52825821159838],[-118.8215322983778,51.52847135107676],[-118.82777157641605,51.52908246295808],[-118.83072403895171,51.532497338696494],[-118.83093549869304,51.53644087300077],[-118.83095439353237,51.53889960782583],[-118.82987930710443,51.54210333732447],[-118.82780062837654,51.54656232750816],[-118.82599914499517,51.55056635602948],[-118.82484218047874,51.55577417816649],[-118.82534413834267,51.561310647179084],[-118.82564381764571,51.5654226030953],[-118.82529010415593,51.56793836983484],[-118.82529320727998,51.56845160057634],[-118.82523619070648,51.57199300474214],[-118.82526201635329,51.57662489251333],[-118.82529010182412,51.58142038537033],[-118.8253039781973,51.58399654693149],[-118.8243243316621,51.58714024162261],[-118.82039141342085,51.588802932795765],[-118.81525728429087,51.59070187783355],[-118.81390330792708,51.592933913965965],[-118.81437431073458,51.59590770325423],[-118.81531449015463,51.599387519868195],[-118.81478337387199,51.60076504911531],[-118.81277210347162,51.6032813606489],[-118.81243482396523,51.607284182274135],[-118.81521683019714,51.61167418512308],[-118.81597490881792,51.61458316246726],[-118.81609972639826,51.61966879810962],[-118.81510985258103,51.6230428901966],[-118.81504148365113,51.62647069195851],[-118.81717415614884,51.63075066110406],[-118.81865490011074,51.632005491027435],[-118.82114719052268,51.63445163369207],[-118.82777413725267,51.63500727835871],[-118.83006786900683,51.63494162916018],[-118.83355937822313,51.63493167619026],[-118.84119148831653,51.63645462904277],[-118.84395845939376,51.63838587041403],[-118.84609258965804,51.64152078154863],[-118.84905342817478,51.64351478193034],[-118.8506178888577,51.6439090561105],[-118.85438332726675,51.64498612516489],[-118.85963252619523,51.64588447540406],[-118.86560717451422,51.646437992556656],[-118.8675421817599,51.64643417546797],[-118.87185457359651,51.64567513401665],[-118.87533666158485,51.64492312752615],[-118.88066696702523,51.644788386448475],[-118.88397204650639,51.64512311250435],[-118.88858150356913,51.64664917152554],[-118.89088933941446,51.647841280902604],[-118.89422263786064,51.65069031566568],[-118.89570362711999,51.65285597857618],[-118.8971076788559,51.65513800000692],[-118.89950765358141,51.657469163086326],[-118.90396136733024,51.661400604188934],[-118.90470481100567,51.66345413985066],[-118.90566955101141,51.66916662359796],[-118.90607333267378,51.67241814177681],[-118.90811111913854,51.67429918259507],[-118.91061263459314,51.67646268958795],[-118.91579370135774,51.67987505754561],[-118.91744802495442,51.68089331933335],[-118.92078234820326,51.68385120311646],[-118.92265813316806,51.68727914222788],[-118.92315180931843,51.6907034352164],[-118.9232640751142,51.69441570548926],[-118.92291409097933,51.695677905203034],[-118.92285675219912,51.69944838485922],[-118.92003027847461,51.70242456085098],[-118.91700268860392,51.70403378827819],[-118.91482022913874,51.706446816581334],[-118.91476163706338,51.71022060213631],[-118.91549898080159,51.7112420777666],[-118.91727551992074,51.713579950572665],[-118.91822860637079,51.7180331672418],[-118.91456441738293,51.72050630125719],[-118.90768323283424,51.72349839885273],[-118.89989611330164,51.726320983020656],[-118.89502308122617,51.72851086570749],[-118.88870535435848,51.73115775275593],[-118.88642548324938,51.73459742409851],[-118.88653484572974,51.73625175865934],[-118.88654523955628,51.73842408641405],[-118.88721096604814,51.74042086369071],[-118.89009349364058,51.744468253540106],[-118.89028781509924,51.74640740572604],[-118.89022317865319,51.749667897863695],[-118.8918302068363,51.754748800569914],[-118.89342782291916,51.75971067867566],[-118.89540269256555,51.7638804371354],[-118.89560678308769,51.76576152715433],[-118.89443636779713,51.76936621092722],[-118.89012384833715,51.773096989004046],[-118.88581030403691,51.775219584728944],[-118.88334596063339,51.77825430939593],[-118.88384313026096,51.7819127323089],[-118.88764277009682,51.785271956422044],[-118.8925337614328,51.786683513281766],[-118.89603951053368,51.78701670835567],[-118.8998217514188,51.787175366643346],[-118.90479974893906,51.787786400278584],[-118.90831284146373,51.78852375442879],[-118.91357632313058,51.790162627242765],[-118.91590400542273,51.792270608724934],[-118.9201531800669,51.79413925167377],[-118.92532023265139,51.79520964986478],[-118.92891481665234,51.79490987961193],[-118.93251055653064,51.79415246276011],[-118.93536070536184,51.79340290292462],[-118.93912596607697,51.7925881533322],[-118.94152547950503,51.792637891790925],[-118.94282528625939,51.79389270005282],[-118.94406023569,51.7966307142147],[-118.94545526799718,51.79919204686259],[-118.94621351049177,51.80199184322126],[-118.94900366944552,51.80432141730053],[-118.95234797650232,51.80665579097078],[-118.9540162449289,51.80762206968672],[-118.95845852038029,51.81012031901656],[-118.96097652692495,51.812515011874304],[-118.96192999758765,51.81565009233708],[-118.96138251281012,51.81650899969782],[-118.96093240323609,51.81857254495384],[-118.9599366332639,51.82039845809282],[-118.96041750150503,51.821940607792854],[-118.96115798104348,51.822508625435056],[-118.96366111049319,51.82364446827382],[-118.96598213752512,51.82500459128283],[-118.96554098806527,51.82701344782893],[-118.96268487719966,51.82788068506256],[-118.95881036188851,51.82863325825027],[-118.95532593006996,51.830133339803005],[-118.9513716381879,51.83191823339116],[-118.94889635214345,51.83403771303246],[-118.94863115707382,51.83558572353041],[-118.94912259155022,51.83832438210672],[-118.94940420749228,51.83884047526671],[-118.94979397628299,51.84112484475134],[-118.94889227556672,51.843356034184836],[-118.94936495001286,51.845579571119075],[-118.95085724680139,51.847009969970834],[-118.951045693548,51.84728982788385],[-118.9517915727711,51.84854852098769],[-118.95246316741522,51.850717788783534],[-118.95413654235394,51.8520240461973],[-118.95607188068108,51.85270511562407],[-118.96571268458554,51.85724207153464],[-118.96951744582599,51.85865547428417],[-118.97451457384223,51.8609218658556],[-118.97905613789719,51.862391438431466],[-118.9827596355249,51.863350143823645],[-118.98720888021383,51.86476071702848],[-118.99044670235503,51.86589063870393],[-118.99001186422979,51.86840924888734],[-118.984664872206,51.86957355901051],[-118.98125035087644,51.86981038424817],[-118.97618363257378,51.870231369284134],[-118.97137285017925,51.87087691588131],[-118.967617851255,51.872948028618936],[-118.96643133095759,51.87495327319684],[-118.96630131359439,51.881184337461185],[-118.96533382998508,51.885812025224354],[-118.96545243400229,51.88987140979467],[-118.96753670584364,51.89552227127603],[-118.97081845555218,51.899740381946216],[-118.97118560308338,51.90036472729037],[-118.97353012284495,51.90332606692431],[-118.97355514150455,51.90715475445102],[-118.97322034421362,51.9112182932127],[-118.97528093269828,51.91394910789002],[-118.97760732316864,51.914854740016004],[-118.98309044060153,51.917869015989645],[-118.9872753244496,51.92167854099822],[-118.9875130702887,51.9277339335306],[-118.98497108966986,51.932602079456494],[-118.98166146065007,51.93478730777021],[-118.9764009534997,51.935092624036926],[-118.9704764183663,51.93488703148317],[-118.96491824118694,51.93404606062951],[-118.95779109358553,51.93259052929604],[-118.95287838662293,51.93174353202419],[-118.94825020839481,51.93004606722416],[-118.94407036783093,51.92829373089497],[-118.93935233700559,51.92733357018134],[-118.93888735813202,51.92722263630771],[-118.92779556695793,51.927026311677814],[-118.92261129852312,51.927044197229364],[-118.91502214415637,51.926729977779615],[-118.90837003340992,51.926862660597315],[-118.90404660461434,51.92967566778665],[-118.90166914401578,51.93293937411028],[-118.90104666788325,51.93585365924789],[-118.89884287830802,51.93831998509158],[-118.89729267319841,51.94198145949258],[-118.89693859253012,51.94432630021474],[-118.89695209649108,51.94540797021587],[-118.89539569524945,51.946955835895935],[-118.89116615205045,51.95034065001666],[-118.88978915710672,51.95240056164158],[-118.89018553222448,51.95525797212715],[-118.8915805351196,51.95702604263651],[-118.89417929397764,51.9583311228874],[-118.89752398352202,51.95946483939611],[-118.90113434693986,51.96076648867389],[-118.90502329295475,51.96206777927147],[-118.90865289937473,51.96343345658132],[-118.91236749350195,51.965536247056264],[-118.91458882621465,51.966557117791254],[-118.91812361437522,51.96751989964679],[-118.92145083038537,51.96751011952751],[-118.92700550404336,51.967316494431685],[-118.93181028577364,51.96695917115216],[-118.93551593246048,51.96786429939994],[-118.94060817525931,51.96853181397997],[-118.94562952284275,51.9699971122422],[-118.94888707736486,51.97222089815833],[-118.95481305147904,51.97317170669273],[-118.959722417227,51.97406823937576],[-118.96500676097698,51.97427929947911],[-118.96908338283005,51.97597681479273],[-118.97132451006962,51.978424323606134],[-118.97116041612254,51.97979978207779],[-118.96944079571362,51.98426504399274],[-118.96806995694656,51.98729910964562],[-118.96706510122164,51.98861624741486],[-118.96524974375197,51.99176840286037],[-118.96286245880484,51.994287648768164],[-118.96139319089245,51.99674879450412],[-118.961037872339,51.997493280111165],[-118.96077031580604,51.99932326592808],[-118.96015400803256,51.9999593329084],[-118.95869390537875,52.001548804864555],[-118.9568450005998,52.00309411546178],[-118.95341134547748,52.0042851686742],[-118.94887378094576,52.00514010389552],[-118.94691846739443,52.00787776550727],[-118.94608702969806,52.01010525682023],[-118.94616948426433,52.015640006458035],[-118.94523680529466,52.020201822039525],[-118.94346503826276,52.0273946159645],[-118.93881700629025,52.030532913265574],[-118.93399343733769,52.03366364430592],[-118.92778812763888,52.03725453569004],[-118.9205529942001,52.03941698981961],[-118.91583146249955,52.03741911613209],[-118.90795598045275,52.03523924056538],[-118.90462305943535,52.03552075836534],[-118.9008191383437,52.036885920634205],[-118.8961823570933,52.03813803078056],[-118.8911777788996,52.040020280373554],[-118.88579917733874,52.04149600029252],[-118.8812514941816,52.04228877747319],[-118.8757799895364,52.04245044184961],[-118.87197985997756,52.04324697194372],[-118.87068030992106,52.04347397812779],[-118.86511508173942,52.04438160444701],[-118.85723936251352,52.045680639808204],[-118.85102082245422,52.047786147617494],[-118.84850399142354,52.05102911751295],[-118.84727350889007,52.05759400612623],[-118.85021955438883,52.06216200212303],[-118.85428538512328,52.06421868022847],[-118.8604916482151,52.0659427568276],[-118.8678937567079,52.068522797423384],[-118.87030164677316,52.070577904663494],[-118.87195873228184,52.07451911343601],[-118.87008203044506,52.07913818493668],[-118.86961972565338,52.07953719295173],[-118.86552235058983,52.08176057758201],[-118.86144386654865,52.08386668933543],[-118.85521297607049,52.08619336113173],[-118.85316065924233,52.089102994202],[-118.85491727793591,52.09029969757101],[-118.8581656495721,52.09207362715842],[-118.85972344776926,52.093675422956444],[-118.86176813063518,52.09624617373325],[-118.86240360566775,52.09836314676103],[-118.8642528416118,52.10007140604906],[-118.86610081056796,52.10241232686371],[-118.86367157659777,52.10537930338488],[-118.86124894603124,52.10857148121834],[-118.86021632092616,52.11171185480204],[-118.85992632314863,52.11364740147487],[-118.85778138390658,52.11666687868258],[-118.85377973427423,52.119175456782784],[-118.85069283466612,52.12219605499265],[-118.85031734361682,52.12464580106089],[-118.85030007343387,52.129554254790705],[-118.84980418917675,52.13388807918592],[-118.84916130120095,52.13457388670226],[-118.8467277260768,52.13799337049762],[-118.8434687569593,52.140442492565604],[-118.83936502754645,52.14266038252933],[-118.83620189287298,52.144881452256804],[-118.83469950687339,52.1477326737099],[-118.83404443009358,52.15035319502567],[-118.83429474430731,52.1553228184225],[-118.83446729896495,52.15783254094839],[-118.83406357090213,52.163995429319996],[-118.8314459693597,52.16655466332102],[-118.82604439518687,52.16814769520719],[-118.81879899854401,52.17046908636536],[-118.81357684244298,52.17274726394159],[-118.81142894659308,52.173534540551884],[-118.80547286563605,52.17614807124124],[-118.80221732914413,52.17810231869261],[-118.80593013466373,52.180917213175796],[-118.80894479986769,52.18324041594672],[-118.81290018696764,52.18699200055162],[-118.81563554657772,52.19011346275732],[-118.81902771744521,52.1939817693639],[-118.82392307581125,52.19846978737596],[-118.82757401847464,52.20078855994275],[-118.83217009183895,52.202652088423875],[-118.84038118804813,52.20483912451904],[-118.84581447699766,52.20743466213362],[-118.84937401145133,52.20987145305185],[-118.85060947239367,52.2117527401029],[-118.85048001010473,52.215292075240306],[-118.84585270372993,52.21724982368312],[-118.8405496953425,52.21768137348067],[-118.83323570984976,52.220282632889706],[-118.83288996225096,52.22325189540518],[-118.83500803639096,52.228781223729136],[-118.83710889632908,52.23219763983221],[-118.84160762430648,52.234225752519585],[-118.84636099798104,52.23472060028706],[-118.85826899106485,52.2348317963213],[-118.86985197881401,52.23699782349651],[-118.87303012797487,52.23783870551521],[-118.87976006029848,52.24002775923205],[-118.88903192598691,52.243973056507826],[-118.88982685342464,52.24773756266722],[-118.88726608716584,52.25083670372092],[-118.88565847397197,52.2557545731973],[-118.88476914462123,52.258552168482076],[-118.88230205797042,52.26188180291404],[-118.87703423933525,52.264928229614064],[-118.87063671277691,52.267307515569094],[-118.85857790967628,52.27170503125825],[-118.84903051029396,52.274379695505246],[-118.84422824999774,52.27788580269644],[-118.84397859601286,52.28045580387652],[-118.84398035272272,52.280800717317376],[-118.84366206643821,52.285027947440106],[-118.83783616073664,52.288821441831445],[-118.83039841177019,52.29005256810682],[-118.82284621317069,52.29054988990602],[-118.81710714365802,52.29354049158277],[-118.81342879132873,52.29727149052806],[-118.80862187795366,52.29997547422975],[-118.80823848177482,52.299972463903536],[-118.80117559791472,52.302122748476904],[-118.79038635484544,52.30376921181692],[-118.78435795913325,52.307050822276885],[-118.78478632029879,52.31092869526066],[-118.7881839014017,52.31445262988454],[-118.79334257694664,52.317166137223765],[-118.80196837491611,52.32043955400404],[-118.81132432003322,52.32359425034565],[-118.82022524355355,52.32709282002346],[-118.82903610353377,52.330075712451674],[-118.83700900944285,52.33295074202797],[-118.84526393116451,52.33662401208554],[-118.85454986484446,52.34068197459156],[-118.86128878241155,52.342196069154035],[-118.87213664943421,52.34362104649766],[-118.88353950055601,52.34419577946147],[-118.8880161403358,52.344114493407844],[-118.89417360395687,52.343967283116584],[-118.9020047755412,52.344155116321865],[-118.90969020795116,52.34576545724294],[-118.9172789190809,52.34823571391216],[-118.92399291918518,52.353512985273944],[-118.92477671843693,52.35647659994977],[-118.92483722290413,52.360243191988424],[-118.9260003528859,52.363778050628234],[-118.92762394424396,52.366222304073375],[-118.93234581975334,52.369339033098946],[-118.93463970843163,52.37337706010308],[-118.93382787455636,52.37480784547217],[-118.93305601866203,52.37995428967498],[-118.93741801741885,52.38455268393679],[-118.94511152418285,52.386794287293625],[-118.94534666913093,52.3900485873608],[-118.94109573161367,52.39332358923473],[-118.93399132417271,52.39856153014824],[-118.92785769564627,52.40184632969813],[-118.92517684651861,52.4037487783135],[-118.92594112183673,52.404140180424946],[-118.92811120909997,52.40561103248318],[-118.9304154405328,52.40959549455138],[-118.92765855829812,52.413665955483374],[-118.92267733394624,52.41757688479297],[-118.92084075648849,52.42072669558031],[-118.92087039661506,52.421984060576435],[-118.92329264681442,52.427679734363274],[-118.92849840758113,52.43284270613452],[-118.93609590818907,52.434457752898176],[-118.94110045563993,52.43734512106119],[-118.9389016616577,52.44026917907266],[-118.93613403860515,52.443137721938655],[-118.93402560608624,52.44577883625222],[-118.9330407249915,52.448522178546725],[-118.93243184654636,52.4519502641765],[-118.93002665458793,52.453960417012404],[-118.92574837431499,52.455467649569144],[-118.92447124058586,52.45827142055239],[-118.92274426607263,52.46182504589456],[-118.91884953987416,52.463785254125824],[-118.91203116528307,52.4649606955036],[-118.90905511713551,52.4669170303571],[-118.90629001131664,52.46938864090722],[-118.90498879272627,52.469907848673444],[-118.90039823892103,52.47033058995095],[-118.89462189828005,52.47155815433941],[-118.88707115587296,52.47365117807049],[-118.88411759412782,52.4769799630629],[-118.88437039568936,52.482515689886355],[-118.88660714720355,52.488159463662655],[-118.8891710698382,52.49093974334798],[-118.89257745701805,52.494007536168844],[-118.89870785481426,52.49728689082278],[-118.90541677929055,52.50164662182685],[-118.9083637180755,52.504544363441106],[-118.90750308705118,52.50974588004118],[-118.90427221205043,52.51375889413249],[-118.90246619431774,52.51839288700663],[-118.90270162299822,52.521988459315175],[-118.90446136968262,52.52740235892115],[-118.90636339985791,52.52944988612961],[-118.91044143201782,52.53296897622899],[-118.91423669694122,52.53631686491571],[-118.91849616743436,52.539374645698736],[-118.92313595668094,52.54238047768415],[-118.93013354253851,52.54639685769045],[-118.93307346030322,52.549635036212976],[-118.93162444538665,52.55283615890499],[-118.93091576839277,52.55586938433207],[-118.93121853341532,52.55718376372504],[-118.93116628726814,52.559748865482284],[-118.92902071746944,52.56095944093838],[-118.9245516636616,52.562926984478516],[-118.92338122495666,52.56641308127989],[-118.92527005989591,52.56828636703204],[-118.92819263791999,52.56929878966922],[-118.9301743721516,52.56980224916407],[-118.935350981521,52.571200396885914],[-118.93884731873376,52.57260951605629],[-118.94206438698691,52.57436201270943],[-118.94510170785988,52.57657547318412],[-118.94698628622554,52.577761507820405],[-118.95055187281434,52.57740259937621],[-118.95475332421518,52.57652001945561],[-118.95880559987188,52.57735557636526],[-118.96389797656877,52.579727749570985],[-118.96890995831338,52.58186896495024],[-118.97050997375753,52.58225962141137],[-118.97530313373451,52.58320294236154],[-118.98171365362728,52.584252068710256],[-118.9885896974659,52.586270481690136],[-118.98971764240017,52.58700466252535],[-118.99315175964838,52.59035334189878],[-118.99410788846772,52.596856774929705],[-119.00035816571199,52.600988446600425],[-119.00766919313261,52.60054875855969],[-119.01223826498394,52.59823944237244],[-119.01546900433569,52.59456571854813],[-119.01864425317916,52.593687386529],[-119.02174038573045,52.59383983833268],[-119.0296373019404,52.59453715458915],[-119.03643351109473,52.59752360318266],[-119.03848448413906,52.60145127066382],[-119.03687244217858,52.60642291362524],[-119.0384410773553,52.61030252942301],[-119.04159520671766,52.61376048130561],[-119.04383317163783,52.61837426780412],[-119.04469415482272,52.61957161380751],[-119.04849622200778,52.62188714927187],[-119.05082717111321,52.626667868464445],[-119.05087194719898,52.62986892819917],[-119.05318138937376,52.633047372741686],[-119.05337426695058,52.6330504224999],[-119.0560368862108,52.63369115804836],[-119.05868181326501,52.633433778741946],[-119.06346129687165,52.637529389713166],[-119.06768506892392,52.64111249718081],[-119.07182432522505,52.6410917722273],[-119.07554807152037,52.64574673076185],[-119.0812932578708,52.65630136405985],[-119.08884065527558,52.658772119154065],[-119.09314878200057,52.663147283603394],[-119.09894937496784,52.66474015352758],[-119.1036494079247,52.66826529769781],[-119.10527868298544,52.67062111148327],[-119.11257822594057,52.66846701389888],[-119.1213458824183,52.667173841302464],[-119.13061641460834,52.66543392086534],[-119.14067059884535,52.66158925927566],[-119.15206965336672,52.656955235237625],[-119.15969993105328,52.652517453331896],[-119.16549996100238,52.64937325867842],[-119.16970524240396,52.64661391262618],[-119.17045616529869,52.64508039854332],[-119.17110229383883,52.64364377386424],[-119.17316989814667,52.6411306413983],[-119.17425837478018,52.64046250430508],[-119.1743768684819,52.63953431252049],[-119.17596926750397,52.63747973865359],[-119.17729387178409,52.63617008089698],[-119.17916245118052,52.63508592561476],[-119.17960206677449,52.63354259769162],[-119.18226247546413,52.633553600057844],[-119.18462989158614,52.62999211806835],[-119.18854286301872,52.6231672437774],[-119.18970203511644,52.61990379184266],[-119.19305164767128,52.61399226048396],[-119.19175243220982,52.6095474866967],[-119.18983337960968,52.6033965655722],[-119.19304344505682,52.59966131181612],[-119.20002638421008,52.60097916129182],[-119.20532886481301,52.603335747031856],[-119.21062361328352,52.60518266772518],[-119.21598772518843,52.6059389324502],[-119.21627358384954,52.6058232908486],[-119.2232946763101,52.60531501778357],[-119.22898865406576,52.60361280818869],[-119.23598341203048,52.60110544188167],[-119.24308865558754,52.59968049055268],[-119.25029629474504,52.59911000422459],[-119.25797153942496,52.59830495432788],[-119.26003975246005,52.59828678257157],[-119.27206350137463,52.59836071582027],[-119.28239884785074,52.599250763507776],[-119.28804864579773,52.60017498229932],[-119.29315040669114,52.60156327651944],[-119.29989436463619,52.6008172420649],[-119.30669477451801,52.59818889065134],[-119.3145350908084,52.59669618216905],[-119.32147046472473,52.595952642499746],[-119.33757386296217,52.59032938422831],[-119.34558959722447,52.58769028102237],[-119.3537583818719,52.58778883260286],[-119.35860284943189,52.59054929787285],[-119.35997030584042,52.592649703860374],[-119.361765729806,52.597259007320446],[-119.36344383111958,52.60090299146166],[-119.36542074048182,52.60482567726178],[-119.36822752350484,52.608286169297735],[-119.3725317352699,52.611676423057375],[-119.37458348265923,52.61502843690994],[-119.37363832355817,52.61863492067955],[-119.36726270203187,52.62275075036387],[-119.36346079581025,52.62483521475726],[-119.36162542367033,52.62679466911157],[-119.36171502564517,52.63033508363366],[-119.36215193615534,52.633075194154884],[-119.36226906567255,52.637875142161576],[-119.36158701675151,52.64073499633437],[-119.36097873164205,52.64331086645644],[-119.35900683288239,52.647100243118174],[-119.3595053950761,52.64829487463164],[-119.35830581375059,52.65362091522903],[-119.36109323889013,52.65588246883768],[-119.36664145544025,52.65617459668925],[-119.37066895958378,52.65533762630966],[-119.37541320960729,52.653522512946495],[-119.38372178574802,52.651164359052686],[-119.39139630167195,52.64972597221449],[-119.39947465273261,52.64971364394283],[-119.40715912532127,52.64878304856653],[-119.41280254825128,52.645073994130854],[-119.42299352786866,52.63915347012546],[-119.42681481519537,52.63809088998416],[-119.4379898523315,52.63832659988336],[-119.44597417636894,52.64133483995616],[-119.45039325535261,52.64529591758343],[-119.45288663008502,52.64727008904992],[-119.45820130885461,52.649274770387024],[-119.46672050786276,52.64822171439592],[-119.47258417320926,52.64605200893277],[-119.47789092375672,52.64411707647774],[-119.47981851504393,52.642496086251626],[-119.48881996574225,52.638067738345384],[-119.498762900154,52.634082975633234],[-119.50499417844031,52.63162113051732],[-119.51741186575389,52.62903731946674],[-119.52681486011441,52.62917506508981],[-119.52968296771039,52.63114408674298],[-119.53050239283877,52.633587940870854],[-119.5307630779561,52.63638455327035],[-119.53187010606392,52.63889386076912],[-119.5330958347311,52.642191921337805],[-119.53374058488545,52.64549824635435],[-119.53513747109722,52.64806014069885],[-119.5372993984319,52.65146458837799],[-119.54011852609774,52.65514791172323],[-119.54107732800455,52.659136649320494],[-119.54005395015552,52.663151211855414],[-119.53778850605345,52.66603229941502],[-119.53761388048743,52.666203260778985],[-119.54295770015777,52.66569057174819],[-119.55062727418158,52.664354730571425],[-119.55433829130524,52.66282955144946],[-119.5615931031916,52.65989624172051],[-119.56353731005868,52.65913474565148],[-119.56974670771741,52.65552939475432],[-119.57490614714689,52.65227330562062],[-119.5784792328137,52.651949637106526],[-119.58041420248416,52.6542152052854],[-119.58192663508075,52.657513081407494],[-119.58481472242647,52.66016972285181],[-119.58816572533098,52.66242014561023],[-119.59677358558793,52.667412380763786],[-119.60351970666835,52.67282845382329],[-119.60768218901238,52.67712574137197],[-119.61077378682228,52.682917123853215],[-119.61286334495476,52.68695544377212],[-119.61364561368934,52.69117874319418],[-119.61371048052278,52.696318148076735],[-119.61330621896687,52.69872216752554],[-119.61531567084218,52.703103677207196],[-119.61892543279195,52.70455176837856],[-119.62419654393433,52.704547700827824],[-119.6282062824048,52.70341850963046],[-119.63157403043817,52.702699223530004],[-119.63719005996457,52.70137771576999],[-119.64476500839692,52.70009453026467],[-119.65238434404932,52.700011111174796],[-119.66357622182461,52.699827448007014],[-119.672832249224,52.69783877191969],[-119.67718008746625,52.69561799891055],[-119.68522106922426,52.69106522858227],[-119.69230300830476,52.68584018000174],[-119.70003869574438,52.68020562292849],[-119.70977946097364,52.67609421564945],[-119.71626422426434,52.676306879543596],[-119.7203495498021,52.67745955132529],[-119.72510229204347,52.6788302304395],[-119.72813444344732,52.67976170044456],[-119.73491347524173,52.679797278343386],[-119.74009195879223,52.68019611563377],[-119.74566779592404,52.680929912431026],[-119.74981834292758,52.678593752704685],[-119.75312970751598,52.67609272711487],[-119.75539185718549,52.6734398368933],[-119.75875889365226,52.667395873579224],[-119.76227550816166,52.66266384023801],[-119.76503580745342,52.660766522555654],[-119.765317187728,52.660570599425974],[-119.76673012696375,52.66067085914925],[-119.7694849804231,52.661664671281606],[-119.77367565121897,52.66321545735544],[-119.77813061423204,52.66458722277988],[-119.78485979840755,52.666275736845236],[-119.78817813972708,52.666978991339015],[-119.79452565104057,52.66833044334926],[-119.8031498762186,52.67039423800446],[-119.80837570190927,52.67210214144959],[-119.81420136174225,52.67460097002434],[-119.81846255343115,52.67815007523167],[-119.82300730264093,52.68169767793615],[-119.82720429970554,52.68364152920766],[-119.83236979364226,52.68609313993286],[-119.83817200305285,52.687847972935046],[-119.84794502664563,52.69023874038626],[-119.85403691339356,52.689988121026516],[-119.85916975840206,52.68843861346347],[-119.86068233303682,52.68629975956775],[-119.86154908556014,52.68389181516964],[-119.86196483332456,52.682344364993064],[-119.86311845466282,52.68301249854961],[-119.86647250416316,52.6851405743954],[-119.86974581923046,52.68721142172374],[-119.8736970745797,52.68984813753252],[-119.87881429542576,52.69338502743674],[-119.882839978187,52.69841852877015],[-119.88456792046625,52.70474553657678],[-119.88692508653254,52.709800513094756],[-119.88894495285359,52.71388777351292],[-119.8913777553538,52.71602857119547],[-119.89660881130948,52.717447115730586],[-119.9039771457121,52.72089484871625],[-119.90749080367189,52.72193864363583],[-119.91373826120103,52.722711377561474],[-119.9195752009905,52.72291796985863],[-119.9206194841147,52.72290369317011],[-119.92511660240291,52.722272032506645],[-119.93140065165483,52.72184662970604],[-119.93611916456288,52.72206461100802],[-119.94099932014974,52.721773365953524],[-119.94452225247308,52.720238975484776],[-119.94669014890304,52.71786491180043],[-119.94918790703787,52.716627655335316],[-119.9527850598161,52.71698094193398],[-119.95666202888317,52.71767139771619],[-119.95963520169269,52.71917378038409],[-119.96305280470148,52.722272058962794],[-119.9645643274568,52.72516491057959],[-119.96453122773111,52.72676770742509],[-119.9646926245348,52.73099621716756],[-119.9648192719333,52.73431240874841],[-119.96672324986497,52.73748808224129],[-119.9689311395192,52.73883195986618],[-119.96950419742556,52.73899255601471],[-119.9716018444983,52.73953660408868],[-119.9747359503072,52.74012447394202],[-119.97927222196907,52.740803601120035],[-119.98478745246148,52.74204073862163],[-119.98795665377243,52.743544452672175],[-119.99224748732533,52.74491225682997],[-119.99328713014042,52.745357081883114],[-119.99578552679488,52.74623280040638],[-119.99853247540169,52.746824850034386],[-119.99978595340423,52.74786824793471],[-120.00127217921671,52.74884597342927],[-120.00358215240863,52.75074656335924],[-120.00579734600123,52.75321697030153],[-120.00707541769019,52.754830069821466],[-120.01039302959946,52.7587897032798],[-120.01230503344532,52.761833176960245],[-120.01272844101923,52.764230196099],[-120.01386761072682,52.76800446257575],[-120.01543355880936,52.770013981117344],[-120.01663162456626,52.77082260858559],[-120.01933951862452,52.77255586129154],[-120.02061624713691,52.77450494474123],[-120.02132121549492,52.777024239210725],[-120.02124666250249,52.78010651466182],[-120.0214140225748,52.78135782020748],[-120.02333791080417,52.784116487627834],[-120.0251654764872,52.78692585430671],[-120.02604479760332,52.79001292821645],[-120.02678053212257,52.79093388688892],[-120.02936151992002,52.79369106462287],[-120.03203562343087,52.79685046619148],[-120.033680728768,52.79937309153517],[-120.03361972992951,52.80193864621254],[-120.0336607823142,52.8046274835669],[-120.03391427444576,52.80622557096088],[-120.0355562840242,52.80909323282275],[-120.03725038713229,52.81361501670178],[-120.03869549024328,52.81693367121737],[-120.04181984617014,52.82083591515055],[-120.04656334473985,52.82383463031896],[-120.04741628782065,52.82424459579513],[-120.05116453248068,52.82518623278929],[-120.05663346274198,52.825454832439235],[-120.06068185640311,52.825423438182284],[-120.06321958960781,52.82584502225465],[-120.06444531530971,52.82636540177006],[-120.06678176212652,52.827696603576726],[-120.07004742423774,52.82942903376204],[-120.07444002653317,52.831001310271354],[-120.07639031898367,52.833180922482455],[-120.08019167276515,52.83600391547025],[-120.08338541369746,52.837402782183446],[-120.08768831689027,52.83919993166028],[-120.09113990898447,52.8411102921731],[-120.0947435942125,52.845584790068244],[-120.09538432376375,52.84666962002144],[-120.09680775084006,52.85050731940795],[-120.09842071036434,52.85502585232139],[-120.09999248463099,52.85715156574349],[-120.10186346999986,52.85830498826479],[-120.1041829754482,52.86031755603251],[-120.1061294408649,52.86232930567639],[-120.10910317664053,52.864689488543355],[-120.1107611627952,52.866414517059866],[-120.11104960999941,52.86670450129802],[-120.11516348739404,52.868385210714486],[-120.11976197131413,52.87012828917],[-120.12265917466732,52.871970335253174],[-120.12507564452,52.87415816347889],[-120.12656704737547,52.8753657521457],[-120.12769034496897,52.87588582914477],[-120.13069310692529,52.87642687444432],[-120.13446982954682,52.87644768581487],[-120.1349396777323,52.876507162425675],[-120.14709528325966,52.873719121783125],[-120.1481905614669,52.87314127657074],[-120.14897734416684,52.87263405632304],[-120.15020274257616,52.87176134827239],[-120.15121605004937,52.87058401059423],[-120.1526560422527,52.86858405433791],[-120.15416050311288,52.866440007554985],[-120.15523792126018,52.86533780222359],[-120.15609003994102,52.86457068425537],[-120.1571248631098,52.86399537953415],[-120.15838654584115,52.86372540963486],[-120.15988668453116,52.863458874616796],[-120.16136919727808,52.86277652399305],[-120.1637468979167,52.861446641873876],[-120.16491676224767,52.86064750147244],[-120.16612929509127,52.859210115047865],[-120.16662476813639,52.85842799409702],[-120.1672501778233,52.85724249077404],[-120.16773395485575,52.85665431734459],[-120.16881250638855,52.85630205142659],[-120.17059726642802,52.85646220059233],[-120.1717572311076,52.85682345985377],[-120.17295443350828,52.85745810637779],[-120.1742330170867,52.857825791503586],[-120.17558737822712,52.85796728973118],[-120.17622770784965,52.85787091511526],[-120.17752817002233,52.85786073463595],[-120.17893523292544,52.85816278447559],[-120.18051077137429,52.85930749022414],[-120.18198715299931,52.860413509044],[-120.18333526531588,52.86125678963697],[-120.18461779211604,52.86192475845396],[-120.186155521844,52.86269250876893],[-120.1874205551773,52.86337982267376],[-120.18852414144756,52.86404674253874],[-120.18961422402081,52.864922124834145],[-120.19028419238614,52.86559339935719],[-120.19075961216973,52.86593964796982],[-120.19162539019983,52.86648962672554],[-120.19263662246203,52.866849477277164],[-120.19391009316242,52.86725771472156],[-120.19502518246479,52.86773230613001],[-120.19560123320875,52.868107682027755],[-120.19596653356436,52.86860474284256],[-120.1964531705147,52.869197755769086],[-120.19681321417401,52.86984296912915],[-120.19749264780539,52.87055570326119],[-120.19836402950924,52.870956358503825],[-120.1995691320251,52.87131954149876],[-120.19977727036508,52.8715457124676],[-120.19992767643737,52.87164759684005],[-120.20007656041531,52.87176064933503],[-120.20021060888477,52.87187296799897],[-120.20035995122429,52.87198266962251],[-120.2005099034172,52.87208790371893],[-120.20066031315324,52.87218978711939],[-120.20080958101872,52.8723000510334],[-120.20095839409268,52.87241365631411],[-120.20109252245844,52.872525419977244],[-120.20122589147361,52.87264275870988],[-120.20137539137328,52.872751342157336],[-120.20150921739919,52.872865338987424],[-120.20165925226486,52.87297000867543],[-120.2018256457956,52.873064252196976],[-120.20200680132919,52.8731597828359],[-120.2022051546764,52.87323873118216],[-120.20238912738141,52.8733136042635],[-120.20260582010172,52.87336759810242],[-120.20283894790084,52.87341060254875],[-120.2030578481106,52.87344840591784],[-120.20327750972697,52.8734806247031],[-120.20351368277407,52.873501291107104],[-120.20374065020927,52.87347990092814],[-120.20396936694057,52.87344567116419],[-120.20418454053859,52.87340121024622],[-120.20441386640256,52.873362503335706],[-120.20464281082312,52.87332659253663],[-120.2048572977821,52.873287160617686],[-120.20509651363078,52.873285487099174],[-120.2053190667904,52.87329648215946],[-120.20555645695384,52.87330820975919],[-120.20579263015043,52.873328871587],[-120.2060139666644,52.873348800038784],[-120.206248466928,52.87338174617587],[-120.20643138372165,52.87346442186218],[-120.20661376820863,52.87355101066458],[-120.20679554498835,52.87364206653753],[-120.2069453667956,52.87374840915405],[-120.20706361320859,52.873867251001464],[-120.20718117642497,52.873991114032684],[-120.20729988168692,52.874106596170485],[-120.20746576039414,52.87420473611305],[-120.20766351912953,52.8742881514918],[-120.20784590964341,52.874374738337806],[-120.20802822546521,52.87446187884911],[-120.20821221367572,52.87453674275962],[-120.20841012870176,52.874619031089665],[-120.20857646816665,52.87471381891082],[-120.20872645024897,52.874819042344846],[-120.20887590024596,52.874928178992505],[-120.20900929820192,52.87504550871687],[-120.20914330389964,52.87515837984994],[-120.20927731152342,52.8752712418876],[-120.20941147069013,52.87538299585756],[-120.20954487154344,52.875500324940646],[-120.20967842395832,52.875616545956696],[-120.20979607622536,52.87573984334848],[-120.20989835857625,52.87586632161753],[-120.21001654368683,52.87598571429019],[-120.21015055500723,52.87609858420854],[-120.21030054584722,52.87620380554282],[-120.21044985391954,52.876314048002165],[-120.21061514038122,52.87641665073405],[-120.21078103571024,52.87651478585633],[-120.21096290942853,52.87660528116173],[-120.2111464572337,52.876683481972904],[-120.21136538161639,52.876721269794814],[-120.21160096854884,52.876746387282274],[-120.21178997031062,52.876674760739114],[-120.21195377816775,52.87656872715508],[-120.21210229237684,52.87646530280288],[-120.21222340820927,52.876343670290446],[-120.21233029445148,52.876216829226884],[-120.21245133354894,52.87609575041576],[-120.21258584217887,52.87598545515143],[-120.21273480749993,52.87587868836083],[-120.21288331741,52.875775262977236],[-120.21304658785448,52.87567313230427],[-120.21319562751356,52.87556580201829],[-120.21335889640756,52.87546367089813],[-120.21350740214206,52.87536025363408],[-120.2136841397733,52.87526890562743],[-120.2138480906648,52.875161743528366],[-120.21399644223222,52.875059442474594],[-120.21418725556799,52.874974409826955],[-120.21439024778473,52.8749096490907],[-120.2146067851072,52.87485511750104],[-120.21482332187568,52.87480058551073],[-120.21503978153257,52.874746616011734],[-120.21522861675506,52.87467610070013],[-120.21541935057991,52.8745916199898],[-120.21563649250497,52.874532619092435],[-120.21586467436539,52.87450227071698],[-120.21609164092911,52.87448085670576],[-120.21631602555046,52.874478428727194],[-120.21655403275594,52.87448566670498],[-120.21679143262936,52.87449737160818],[-120.21701520990834,52.87449940970248],[-120.21725572212043,52.87448822266679],[-120.21746952060226,52.87445378913442],[-120.21769959920763,52.87440947206887],[-120.21790318947784,52.87434024676624],[-120.21805183330801,52.87423569790048],[-120.21817277401429,52.87411517594287],[-120.21827902971701,52.873992796709835],[-120.21840065283888,52.87386724418811],[-120.21850683075941,52.87374542762471],[-120.21864260601271,52.87362563647109],[-120.21877762272905,52.87351142049234],[-120.21889795215229,52.873395365154614],[-120.2189460698905,52.873261125300964],[-120.21899547693867,52.87311739661055],[-120.21907303978342,52.8729862989567],[-120.21917913708891,52.87286504461409],[-120.21931437702317,52.87274915714747],[-120.21940654804428,52.8726204612835],[-120.21948471582286,52.87248489589053],[-120.2195908107096,52.872363641138186],[-120.21969720974514,52.872240143631565],[-120.21981943075194,52.87211012207476],[-120.21992575200433,52.87198718723781],[-120.22003207264356,52.87186425229515],[-120.22013816442896,52.87174299700158],[-120.22024440857744,52.87162061580964],[-120.22036617089265,52.871493944208986],[-120.22048641503149,52.87137844106005],[-120.22060734074962,52.87125791638157],[-120.22072834226007,52.871136828672455],[-120.22084926782286,52.871016294791886],[-120.22095558337776,52.870893358938986],[-120.22104766896128,52.87076522453548],[-120.22112537294207,52.870633008473774],[-120.22118945405043,52.87049112647955],[-120.22123740835977,52.87035801123825],[-120.22125622182858,52.870219520530405],[-120.22121508414847,52.87008257332472],[-120.22117455362141,52.869941158650086],[-120.22116392342565,52.86979952617759],[-120.22119734458754,52.86966344618024],[-120.22126089359149,52.86952546860671],[-120.22135305055386,52.869396779890586],[-120.22147472797491,52.86927066092768],[-120.22160911526689,52.86916091776559],[-120.22177226423301,52.86905932851416],[-120.22198929273378,52.86900087857623],[-120.22217884947409,52.86892476753386],[-120.2222984747014,52.868813729796],[-120.22240607051849,52.86868129465761],[-120.22249882892979,52.8685481375217],[-120.22260505834076,52.86842575395042],[-120.22272604613974,52.868304663969205],[-120.22281751411981,52.868180995426364],[-120.22286629554567,52.868041732106725],[-120.22292907717326,52.86790934674696],[-120.22300783178007,52.86776931115184],[-120.22307068900585,52.86763636279397],[-120.22317706616477,52.86751286177054],[-120.22333944559304,52.86741686349875],[-120.2235153709727,52.86733108458344],[-120.22372035924343,52.86725123420793],[-120.2239104364638,52.867171206791014],[-120.22403336287877,52.867145779644176],[-120.22414031622722,52.86712800271841],[-120.2242478008036,52.867106312194316],[-120.22436905891875,52.86709317022884],[-120.224475936789,52.867075946962935],[-120.22459651305365,52.867067826196376],[-120.22470278429061,52.8670550701926],[-120.22482389050352,52.86704304462468],[-120.22493091967782,52.86702470407714],[-120.22503976808586,52.86699296101899],[-120.2251209172056,52.866945237592674],[-120.22518935363479,52.866881147472256],[-120.22521320854564,52.86681542877325],[-120.22522298767511,52.866743386310866],[-120.22520256571357,52.86667379638753],[-120.22518221901497,52.86660365249092],[-120.22514620428855,52.86653891640574],[-120.22509527962785,52.866474003777526],[-120.22504382388688,52.866413004630566],[-120.22500780953165,52.86634826849529],[-120.22495696050795,52.86628280183259],[-120.22490596002922,52.86621845201333],[-120.22486994604763,52.86615371582785],[-120.2248183394025,52.866093833438036],[-120.22476749097316,52.86602836668295],[-120.22471664269995,52.86596289990305],[-120.22466640104821,52.86589296562637],[-120.22464552555256,52.86582672617318],[-120.22463986314708,52.865758429566675],[-120.22464911174028,52.86569030061005],[-120.22464405702381,52.86561752759003],[-120.22465376042602,52.865546048022274],[-120.22466346379571,52.86547456845038],[-120.2246725606752,52.8654075563482],[-120.22466742953863,52.865335346217954],[-120.22467713283744,52.86526386663542],[-120.22468622965053,52.86519685452328],[-120.22471076725697,52.86512610548021],[-120.22472039402311,52.86505518878658],[-120.22474417343614,52.86499002407407],[-120.2247683324084,52.864922062714335],[-120.22482162862366,52.86485947592416],[-120.22490413838332,52.86480170076218],[-120.22498596509566,52.86474895591946],[-120.22506665520015,52.864704583071045],[-120.2251486343371,52.86465071230746],[-120.22522977887735,52.864602988735584],[-120.22532583260958,52.86455544160865],[-120.22540644680456,52.86451162248903],[-120.22550234854465,52.86446519208508],[-120.22559719018174,52.86442657075861],[-120.2256918788503,52.86438907516002],[-120.22578596223893,52.86435603803167],[-120.22589556109067,52.864318709774444],[-120.2259900976814,52.86428233080386],[-120.22608478689669,52.8642448259504],[-120.22619377891976,52.86421196489683],[-120.22628770874844,52.86418005316926],[-120.22639662527341,52.86414774589443],[-120.22650485899887,52.864120468907984],[-120.2266112738782,52.86410659428326],[-120.22673237117854,52.86409456672657],[-120.2268534684106,52.86408253904502],[-120.22695912533302,52.864074248465826],[-120.22707961625703,52.864066688040246],[-120.22720078847745,52.864054106031865],[-120.22730644526189,52.86404581514022],[-120.22741331430733,52.86402858917037],[-120.22753516883236,52.864010976421355],[-120.22764332632264,52.86398425235328],[-120.22775095272102,52.86396144170945],[-120.22785857900423,52.8639386309668],[-120.22797967547572,52.863926602123655],[-120.22808661910415,52.86390882157087],[-120.22820771542665,52.863896792492525],[-120.22831518978879,52.86387509820495],[-120.22842289191361,52.86385172403969],[-120.2285311235914,52.86382444518213],[-120.2286399611498,52.863792698725916],[-120.22873403972633,52.863759668160185],[-120.22882811936911,52.86372662858348],[-120.22893824357186,52.863685392879255],[-120.22903292886842,52.863647885636524],[-120.2291276891381,52.8636098243464],[-120.22922297884314,52.86356785838196],[-120.22931842105852,52.86352476652848],[-120.22939895285407,52.86348150754735],[-120.22949492427632,52.86343451095008],[-120.2295760616376,52.863386784340996],[-120.22965681952009,52.86334185433264],[-120.22975286668661,52.86329429461495],[-120.22983400349239,52.863246567823566],[-120.22991582112222,52.86319381949701],[-120.22999718536066,52.863144412807316],[-120.2300784730724,52.86309556896572],[-120.23014553270802,52.86304152769756],[-120.23022750101939,52.86298766227001],[-120.23029456029643,52.86293362091314],[-120.23036237668552,52.86287399512851],[-120.2304295870673,52.86281883681313],[-120.23049679727525,52.86276367845743],[-120.23057937162082,52.86270533632877],[-120.23063182296359,52.862648894112866],[-120.23070024421436,52.862584800610314],[-120.23075262013218,52.86252891230767],[-120.23082043523713,52.862469286243524],[-120.23087356806232,52.862407813490876],[-120.23094145913099,52.86234762444552],[-120.23099519738102,52.8622816841183],[-120.23104832972052,52.862220211279265],[-120.23110138558387,52.86215930132079],[-120.23115451761781,52.86209782842897],[-120.23119334670798,52.86203171223752],[-120.23124662988037,52.86196912241987],[-120.23129968514806,52.86190821236223],[-120.23135281658327,52.86184673937104],[-120.23140647845909,52.86178135280727],[-120.23145976100582,52.8617187628831],[-120.23149873948844,52.86165153863013],[-120.2315378704806,52.86158318854637],[-120.23156148611898,52.86151913919209],[-120.2315857824676,52.861450068337575],[-120.23162491313532,52.86138171821613],[-120.23164920930293,52.86131264734247],[-120.23168773407939,52.86124876471554],[-120.23172656035838,52.861182657247504],[-120.23177976658636,52.861120621127284],[-120.23183365340522,52.86105356348511],[-120.23187187363969,52.86099192348381],[-120.2319250794183,52.86092988729041],[-120.23199819437981,52.86072098567574],[-120.23203202806626,52.86058155117685],[-120.23209492286902,52.86044803448316],[-120.23218702751846,52.86031933653796],[-120.23233740419569,52.86020136610689],[-120.23252690334975,52.86012523795516],[-120.23276604426074,52.86012350811747],[-120.23296469544484,52.86020018037343],[-120.2331471533578,52.860286165818614],[-120.23331424874101,52.860375335072675],[-120.2334948154306,52.86047528547393],[-120.23366115547292,52.86057003864002],[-120.23384240430298,52.86066496698742],[-120.23402539510417,52.860747046419114],[-120.2342087655861,52.86082632888436],[-120.23444125130047,52.86087373853011],[-120.2346631418838,52.86088914565841],[-120.23489691147599,52.86081688138043],[-120.23492846703611,52.86069419039469],[-120.23487185636226,52.860560985429096],[-120.23481547243337,52.86042610956514],[-120.23472972701643,52.860287532393414],[-120.23464375454957,52.86015063494203],[-120.23458744815781,52.86001519602361],[-120.23454673151876,52.85987490194976],[-120.23453605820926,52.85973327872519],[-120.23455542914165,52.85959031742277],[-120.23466235829441,52.85946233783818],[-120.23482354686367,52.85937469538878],[-120.2350417950204,52.85930672299828],[-120.23524467976824,52.85924193455106],[-120.23541994223098,52.859160604922174],[-120.23562418866602,52.85908575489826],[-120.23582760163147,52.85901705186348],[-120.23603184545311,52.85894221005943],[-120.23622178628268,52.85886272522616],[-120.2363976504586,52.858776926567806],[-120.2365884975411,52.85869073980413],[-120.2367785874863,52.85861013716978],[-120.23696852544498,52.85853065111299],[-120.23717216109551,52.85846026592549],[-120.237277197043,52.858456433598775],[-120.23739767026393,52.85844886256843],[-120.23751874845493,52.85843682385514],[-120.23762567433833,52.85841903456102],[-120.2377325251138,52.85840179914693],[-120.23785375432092,52.858388643197884],[-120.23796060492805,52.85837140757609],[-120.23808115401151,52.85836327293182],[-120.23818800446317,52.85834603710302],[-120.2383096870676,52.85832953001072],[-120.23841668857159,52.858311177082584],[-120.2385236899835,52.85829282405685],[-120.23863242976813,52.858261631149674],[-120.23874003584498,52.858238810360625],[-120.23884817167314,52.85821207588405],[-120.23895713844135,52.85817920286962],[-120.23903765036444,52.858135937138265],[-120.2391342789726,52.858083910964666],[-120.23920018579838,52.85803823658347],[-120.23928190685241,52.8579860355422],[-120.23936385390618,52.85793216357096],[-120.23944572575736,52.85787884551955],[-120.23951223672807,52.85782870338639],[-120.23959395699859,52.857776502121176],[-120.23967590325559,52.857722629925235],[-120.2397565647794,52.85767824679565],[-120.23985183198002,52.85763626312164],[-120.2399614012484,52.85759892159021],[-120.24005530620786,52.85756699872688],[-120.2401641954117,52.857534678559105],[-120.24025832744981,52.8575010757239],[-120.24036706394689,52.85746988119594],[-120.24046172539086,52.857432364598935],[-120.24055646164857,52.85739429394514],[-120.24065119773712,52.857356223214],[-120.24074653831535,52.85731368482634],[-120.24084248335146,52.857266678780306],[-120.24092306661431,52.857222857752326],[-120.24103255890884,52.857186069192316],[-120.24112729410984,52.857147998072406],[-120.24122240641586,52.857107139103775],[-120.24131721745108,52.85706850491338],[-120.24141248054407,52.85702652889319],[-120.24150789580224,52.85698342696334],[-120.24158908241132,52.856935137886595],[-120.24166966548968,52.856891307402286],[-120.24175092791315,52.85684245529513],[-120.24183271851625,52.856789698459835],[-120.24192881230803,52.85674157461462],[-120.24199531858561,52.85669143103993],[-120.24206310868875,52.85663179826931],[-120.24213014297324,52.856577749942886],[-120.24219793270719,52.85651811709011],[-120.24227979830056,52.85646479701659],[-120.24236098304833,52.856416507390676],[-120.24244292440571,52.856362624283676],[-120.24252403382147,52.856314888523286],[-120.24260536911963,52.856265481826114],[-120.24268662927878,52.8562166290525],[-120.2427685698407,52.85616274571162],[-120.24283545138817,52.856109813865025],[-120.24291678593448,52.85606040694592],[-120.24301219751085,52.85601730376827],[-120.2431074565875,52.85597532634598],[-120.24320286778082,52.85593222301132],[-120.24328329500374,52.85588951722681],[-120.2433787058274,52.85584641374699],[-120.24347335980991,52.85580890362067],[-120.24358148650961,52.85578216474736],[-120.24370255538392,52.855770119642386],[-120.24380954814552,52.855751761774236],[-120.2439312211719,52.85573524883391],[-120.2440370051648,52.85572582595849],[-120.24415746947176,52.85571824798505],[-120.24427672520348,52.855719605092],[-120.24438175376224,52.855715766408494],[-120.24450161373692,52.85571265568474],[-120.24461966100333,52.85572294764986],[-120.24473770832668,52.85573323949623],[-120.24485575570704,52.85574353122399],[-120.24495897168715,52.85575309483908],[-120.24507588572808,52.855771767573145],[-120.24517547678757,52.855808136632696],[-120.24537564176966,52.8558736101671],[-120.24551285519405,52.85596298625593],[-120.24559557717741,52.85601370073654],[-120.2456787512425,52.8560610733865],[-120.2457619267006,52.85610843704094],[-120.24584510113523,52.85615580957021],[-120.24592797491273,52.856205406908536],[-120.24599518600061,52.856260423754335],[-120.246061868081,52.856319354185636],[-120.24612930665585,52.856372691129614],[-120.24621134998,52.8564284356919],[-120.24627863668928,52.856482898384215],[-120.2463613605917,52.856533612309086],[-120.24644393246986,52.85658545201191],[-120.24652710980047,52.8566328151091],[-120.24662579805765,52.85667588433584],[-120.24672780864464,52.85669438161412],[-120.246845934063,52.85670411735237],[-120.24696511774117,52.85670602571405],[-120.2470702233816,52.856701630645944],[-120.24719189785529,52.85668511433932],[-120.24729889141025,52.8566667533046],[-120.24740762183765,52.85663554331036],[-120.24751597403976,52.85660712994253],[-120.24761047508932,52.85657073340583],[-120.24771935602321,52.85653840621715],[-120.2478127250252,52.8565103818311],[-120.2479216044439,52.85647806338891],[-120.24803101269943,52.856441831210795],[-120.24813853427445,52.85641955577434],[-120.2482461306158,52.856396726254175],[-120.24835493453875,52.856364961393076],[-120.24844837761928,52.856336382514],[-120.2485571063632,52.85630517144965],[-120.24865183288985,52.85626709424249],[-120.2487599562966,52.85624035954723],[-120.24886883551574,52.85620803128665],[-120.24896280682104,52.85617553835681],[-120.24907168451337,52.8561432188421],[-120.24918048717468,52.85611145321152],[-120.24928861106294,52.85608470909202],[-120.24939560220892,52.85606634614126],[-120.24950183860824,52.85605356762764],[-120.24962185008627,52.85604933477481],[-120.24974231431429,52.856041751077534],[-120.24986338218501,52.85602969962696],[-120.24996901467864,52.856021388320585],[-120.25009008242749,52.85600933663631],[-120.25019639332933,52.85599600350805],[-120.25031746094187,52.85598395158934],[-120.2504230932337,52.85597563987443],[-120.25054491524084,52.855958003180206],[-120.25065115102588,52.8559452236267],[-120.25077108723988,52.85594154358645],[-120.25089215453544,52.855929491075194],[-120.25099778658036,52.855921178843396],[-120.25111885375402,52.855909126098446],[-120.2512252401306,52.85589522911631],[-120.2513463071663,52.85588317613684],[-120.25145269340402,52.855869278948546],[-120.25157376030178,52.85585722573449],[-120.25168059902002,52.855839977610394],[-120.25180174060168,52.85582737017389],[-120.2519079756847,52.85581458948302],[-120.25203024920911,52.855793600516385],[-120.25213663500051,52.855779702708176],[-120.25225838091391,52.85576261822293],[-120.25236521911825,52.85574536947532],[-120.25247281149602,52.85572253607533],[-120.25257980036231,52.85570417022119],[-120.25270214805904,52.85568262656602],[-120.25280958925525,52.855660909768055],[-120.25291786056536,52.855633045389965],[-120.25302605571213,52.85560574383516],[-120.25311941918498,52.85557771521618],[-120.25322889552714,52.85554092418962],[-120.2533241446895,52.85549892953752],[-120.25341878915275,52.855461411392014],[-120.25351403795054,52.85541941658391],[-120.25360883289129,52.85538078137091],[-120.25370347804842,52.855343254058006],[-120.25379880110664,52.85530070502713],[-120.25389352072224,52.85526262357038],[-120.25398884341062,52.85522007438317],[-120.25408348667032,52.85518255569568],[-120.25417888499607,52.85513944342774],[-120.25427413111996,52.85509745693024],[-120.25435530088957,52.85504915004124],[-120.25445062264014,52.85500660047365],[-120.25453179083057,52.854958302395225],[-120.25462718820154,52.85491518975722],[-120.2547224333833,52.85487320289035],[-120.25481647328444,52.85484014232704],[-120.25499364050252,52.85474426339146],[-120.25515597567738,52.85464765747556],[-120.25530498663781,52.85453915548581],[-120.25544067336084,52.85441875747051],[-120.2555882499232,52.854320870273796],[-120.25570902927393,52.85420029926738],[-120.25575768730437,52.85406102108265],[-120.255806345017,52.853921742865516],[-120.25586907958883,52.85378877581925],[-120.25596109811373,52.85366005870642],[-120.25602375704563,52.85352764554636],[-120.25608709335626,52.853390210681596],[-120.256149826271,52.853257243440694],[-120.25619848178613,52.85311796499025],[-120.25626166618234,52.852981646913484],[-120.25638191164595,52.85286498879336],[-120.25654491422762,52.852763359179704],[-120.25669459396192,52.852649824697785],[-120.25688401607884,52.85257365691073],[-120.25710015895243,52.85252072613795],[-120.25731404179034,52.85248453982335],[-120.25754192529287,52.85245522705429],[-120.25776950707898,52.852428147683014],[-120.25800679545021,52.85243976951554],[-120.25822330056623,52.85249478738324],[-120.25844214245187,52.852532488108096],[-120.25866158743936,52.85256572073979],[-120.25889367921417,52.85261587009246],[-120.25909377433301,52.852681883318446],[-120.25927602614979,52.85276950844964],[-120.25944133878804,52.85287204403378],[-120.25957548417897,52.852984296300875],[-120.25966204890686,52.853117271365875],[-120.25970314301323,52.853255323484966],[-120.25971389826903,52.85339694499524],[-120.25972510435396,52.85353522466168],[-120.25976589775966,52.85367551056581],[-120.25982182377588,52.85381428872051],[-120.25983303152559,52.85395255940478],[-120.25984438879588,52.85408972208951],[-120.25985499407777,52.8542324604336],[-120.25988110799946,52.85437090319797],[-120.25990699550864,52.85451102579425],[-120.25996307373156,52.85464868688697],[-120.2600195295466,52.85478355116988],[-120.2600760604411,52.85491786142116],[-120.26013191316854,52.855057202247394],[-120.26018859542768,52.855190395500045],[-120.26022924129369,52.855331798017446],[-120.26027049001664,52.85546873282328],[-120.26031113641945,52.855610135287385],[-120.26035238567457,52.855747070040444],[-120.26039303261415,52.85588847245129],[-120.26046507646377,52.85601847785517],[-120.26055262989867,52.85614418755453],[-120.26068558339674,52.85626537368959],[-120.26083502658656,52.856374999522835],[-120.26098447054467,52.856484625158366],[-120.26113504437987,52.85658587815263],[-120.26131754361208,52.85667182005073],[-120.26149981704857,52.856759441511215],[-120.26169699806144,52.85684723457345],[-120.26188055381343,52.856925357129015],[-120.26206335600652,52.8570090729414],[-120.26226189594242,52.857086803805444],[-120.26244417309275,52.8571744237781],[-120.26261063925988,52.85726858216459],[-120.2627930684911,52.85735508466316],[-120.26297497202428,52.85744549163743],[-120.26314151631321,52.85753908632649],[-120.26332274318223,52.8576345233746],[-120.26348974068412,52.85772476678844],[-120.2636716460665,52.857815181598525],[-120.26383804276611,52.85790989220235],[-120.26418649962999,52.85809389070252],[-120.26435124251519,52.85820088673013],[-120.2645023579168,52.858298221596364],[-120.26466777922084,52.85840019547366],[-120.26481724012815,52.85850981609421],[-120.26496662713848,52.8586199905119],[-120.2650855953846,52.858734307390286],[-120.26518739877739,52.85886520657225],[-120.26528980490653,52.858991637954645],[-120.26539221164286,52.85911806923781],[-120.26550990357669,52.859241875046166],[-120.26564401032041,52.859354673926866],[-120.26577766501927,52.859470832358255],[-120.26591177319125,52.859583630917164],[-120.26604603137913,52.859695321324665],[-120.2661641036759,52.85981632965128],[-120.26629776123838,52.85993248745719],[-120.26641553390195,52.86005572936434],[-120.26651854853054,52.860177691877944],[-120.26663624665883,52.86030149647535],[-120.26675394547053,52.86042530094528],[-120.26687277305261,52.86054073280986],[-120.26700688748599,52.86065353004273],[-120.26715591084832,52.86076649831093],[-120.26730591252924,52.86087221082833],[-120.26745644222905,52.86097400943664],[-120.267620753023,52.86108435146522],[-120.26777075817806,52.86119005443269],[-120.26793672575089,52.86128810981076],[-120.2681197089971,52.8613706990438],[-120.26831873165072,52.861445068678876],[-120.26851820515147,52.86151609612633],[-120.26871888409767,52.86157817887505],[-120.26891783294174,52.86165311041742],[-120.26910014328648,52.861740719812325],[-120.26926566475818,52.86184212406356],[-120.26936854142257,52.861965200869356],[-120.2694398695485,52.86210079384661],[-120.26954169434467,52.862231688977865],[-120.26962891183071,52.86236017927273],[-120.26973186540357,52.862482701723884],[-120.26986554224557,52.86259884634089],[-120.26999966986521,52.86271164894711],[-120.27014968664186,52.86281734876946],[-120.27031446273826,52.86292433611764],[-120.2704810445348,52.86301792008025],[-120.27066238571432,52.86311279148168],[-120.27084658644985,52.86318643200586],[-120.2710625611274,52.8632458935578],[-120.27128041683552,52.863291388620816],[-120.27149879994188,52.86333296955591],[-120.27173194224927,52.86337583763008],[-120.27195100228731,52.863412396004286],[-120.27216946124756,52.86345342169247],[-120.27238604055373,52.86350841307922],[-120.27260209478644,52.86356730885671],[-120.27280263898446,52.863630501482874],[-120.27301884475315,52.863688279558346],[-120.27321999028266,52.863747012676335],[-120.27343672396887,52.86380087624942],[-120.27367167468756,52.863830337277285],[-120.27389359479716,52.863845670303874],[-120.27412734356976,52.86388406588162],[-120.27434475488397,52.86393290604491],[-120.27456246730134,52.863979511937664],[-120.27477965355388,52.86403003116147],[-120.27499811839985,52.864071051575856],[-120.27523367282753,52.86409604174025],[-120.27545379152569,52.864124775029275],[-120.27567338516243,52.86415741270954],[-120.2758569967841,52.864235522006666],[-120.27583896438331,52.86436955419473],[-120.27576053985763,52.8645085085142],[-120.27565514964695,52.86462590972006],[-120.27551956326758,52.86474576736157],[-120.27539948694658,52.86486132725216],[-120.27526397364267,52.86498063058195],[-120.2752017339575,52.86511025623724],[-120.27510869555722,52.86524681495018],[-120.27510662349613,52.86537318965762],[-120.27527247393154,52.86547235134995],[-120.27550923852611,52.865488405473386],[-120.27575021104951,52.865473184969446],[-120.27596534398907,52.86542803846489],[-120.27618167979577,52.865373947153294],[-120.27638332879137,52.86531802341898],[-120.27660026452436,52.8652594635935],[-120.27681667319321,52.8652048171075],[-120.27703225437554,52.86515631783587],[-120.27726161987948,52.86511635169894],[-120.2774879046421,52.865099286778396],[-120.27772586978858,52.86510640094891],[-120.27794960061125,52.8651083230639],[-120.27818936842367,52.86510203305171],[-120.27841565273897,52.86508496634471],[-120.27864178667363,52.86506901613994],[-120.27886859570918,52.865048043745496],[-120.27911016529293,52.865028348595715],[-120.27933689939195,52.86500792929856],[-120.2795668626371,52.8649634909037],[-120.2797139697881,52.86486892488232],[-120.27982122711843,52.864737553841564],[-120.27992795761249,52.86461009644948],[-120.27997587207904,52.864475839858166],[-120.2800097776898,52.86433471203113],[-120.28005829342797,52.86419597868626],[-120.2800623785006,52.86405452063406],[-120.28003619312594,52.86391608320774],[-120.28006942178227,52.86377998601427],[-120.28016154016657,52.86365012489361],[-120.28023889770627,52.86351898614998],[-120.28031625477011,52.86338784734457],[-120.28042275458583,52.86326206927433],[-120.280557647424,52.86314722763464],[-120.28072123343487,52.86304108844596],[-120.28089702527112,52.862955223436806],[-120.28111409171034,52.86289554718601],[-120.2813286066812,52.86285484962635],[-120.28155607873732,52.86282884130553],[-120.28195093337547,52.86277951478567],[-120.2823262996425,52.862764088936764],[-120.28256740442441,52.86274773748558],[-120.282792473833,52.862739597883426],[-120.28301799338561,52.86272810701468],[-120.28325834734737,52.86271733887154],[-120.28348326639919,52.862710314891885],[-120.28372369457193,52.86269899179185],[-120.28394981386722,52.862683031350265],[-120.28417593299324,52.86266707047358],[-120.28441568615936,52.862660767749986],[-120.28464075475598,52.86265262460782],[-120.28488050777217,52.86264632093594],[-120.28510550179304,52.86263873090977],[-120.28534465460093,52.86263689408252],[-120.28556957288465,52.862629866109764],[-120.28579509110837,52.862618369911225],[-120.28603559374727,52.86260647913887],[-120.28626051175668,52.862599449843614],[-120.28650101415907,52.86258755811862],[-120.28672593199194,52.8625805279326],[-120.28695084975065,52.862573497316056],[-120.28719060198031,52.86256718893127],[-120.28743095398087,52.862556412253674],[-120.2876559458736,52.86254882627998],[-120.2878820629004,52.86253285827136],[-120.28810892947061,52.862511305068395],[-120.288336321189,52.862485837627],[-120.28857847160272,52.86246165517642],[-120.28879185223342,52.862429325594974],[-120.28901916754792,52.86240441977524],[-120.2892471566024,52.86237449169319],[-120.28947582051408,52.86233953240878],[-120.2896915239085,52.862289883941045],[-120.28989501488255,52.862219970523974],[-120.2900855437591,52.862135376991425],[-120.29027554788466,52.86205468801976],[-120.29046555129118,52.861973998736865],[-120.29065540410494,52.86189442609811],[-120.29083117120875,52.861808546168675],[-120.29100776245512,52.861716518245295],[-120.29119836240342,52.86163135993586],[-120.29138828665145,52.861551232085624],[-120.29157753646902,52.86147612576307],[-120.29178169535797,52.86140117826888],[-120.29197169300262,52.86132048651769],[-120.29216154009629,52.86124091141307],[-120.29235138648144,52.861161335997934],[-120.29254198126503,52.86107617547959],[-120.29269024476673,52.86097265731775],[-120.29282509732344,52.860857801433646],[-120.29294526495518,52.86074110649248],[-120.29306655607377,52.86061602975601],[-120.29318732157321,52.86049486671119],[-120.29330808638639,52.86037370353305],[-120.29364446325464,52.860203447381224],[-120.29383437654683,52.8601233155058],[-120.29402361571918,52.860048205176504],[-120.29421420218821,52.85996304188636],[-120.29440411453733,52.85988290014227],[-120.2946083351132,52.85980739364924],[-120.29479682273245,52.85973786687022],[-120.29500096644342,52.85966292263707],[-120.29520443617702,52.859592999911015],[-120.2954078309719,52.85952363084345],[-120.29561070043259,52.85945817526101],[-120.29581341954072,52.85939383628943],[-120.29603037271045,52.859334686370175],[-120.29624552866186,52.85928893962176],[-120.2964610578335,52.85924040453411],[-120.29667673741864,52.859190743148815],[-120.29689316380689,52.85913550547478],[-120.2971088423583,52.859085843293194],[-120.29732459465309,52.85903562669904],[-120.29754012131635,52.85898708962452],[-120.29776943441001,52.8589470833125],[-120.29798398785546,52.85890580123679],[-120.2982131492332,52.858866919959645],[-120.29842822625199,52.858821723217325],[-120.2986445742706,52.85876703632087],[-120.29886009807404,52.858718496817254],[-120.2990757722258,52.858668831012615],[-120.29930575492918,52.85862379980419],[-120.29952082836677,52.85857860999098],[-120.29973650104155,52.85852894296935],[-120.29996633267504,52.85848502743356],[-120.30018207856523,52.85843480557424],[-120.30038418748568,52.858374926556984],[-120.30058689424239,52.858310579307286],[-120.30080331109882,52.85825533440142],[-120.30101830689493,52.8582106958546],[-120.30124686463478,52.85817626759413],[-120.30147504746454,52.85814463578597],[-120.30170352909784,52.85811076958965],[-120.30193148629279,52.8580808168202],[-120.30216019215815,52.85804526980784],[-120.30237383949742,52.85801068153136],[-120.30260261879323,52.85797457963768],[-120.30281693775692,52.85793496864105],[-120.30304624024241,52.85789495200573],[-120.30327546693499,52.85785549787705],[-120.30348926194216,52.857819790593915],[-120.30371781439595,52.85778536645481],[-120.30394584379025,52.857754846816285],[-120.30417320068388,52.857729348657266],[-120.30440122945276,52.85769882813397],[-120.30462865992394,52.85767277507272],[-120.30485661272301,52.85764281662071],[-120.30508329521354,52.857622347561716],[-120.30531132275895,52.857591825270326],[-120.30544526928416,52.857594957648665],[-120.30556453216938,52.85759625255336],[-120.30566836407117,52.85760129491755],[-120.30578762698089,52.85760258959584],[-120.30590688989787,52.85760388415315],[-120.30602555499797,52.85760964650172],[-120.30614481794188,52.85761094081757],[-120.30624924774888,52.85761151475539],[-120.30636731512799,52.85762174467249],[-120.3064871758921,52.857618570726665],[-120.30660584111149,52.85762433248921],[-120.30672570186513,52.85762115830015],[-120.30683072944491,52.857617263805324],[-120.30694939470706,52.85762302522099],[-120.3070688071452,52.85762320161968],[-120.30718747245605,52.85762896279499],[-120.30730554010852,52.85763919176928],[-120.30740937232065,52.857644232594865],[-120.30752923307041,52.857641057586235],[-120.30764789849314,52.857646818296544],[-120.30776716159022,52.85764811096573],[-120.30787166681156,52.85764812050372],[-120.30799033230016,52.85765388086814],[-120.3081095954274,52.85765517318981],[-120.30822885856182,52.85765646539049],[-120.30833209334189,52.85766597332427],[-120.30845135651329,52.85766726529911],[-120.30857002213347,52.85767302507816],[-120.30868749269321,52.85768772058871],[-120.30880556086812,52.85769794805552],[-120.30890819835365,52.85771192340915],[-120.30902566913706,52.857726618581445],[-120.30914314000142,52.85774131363608],[-120.30926016283124,52.8577593595194],[-120.30936220313666,52.85777780240449],[-120.30947982362417,52.85779138013989],[-120.30959669737064,52.857810542669945],[-120.30969993282862,52.85782004940122],[-120.30981740418268,52.85783474378087],[-120.30993487561769,52.8578494380431],[-120.31005234713365,52.85786413218772],[-120.31016981873056,52.857878826214765],[-120.31027126233182,52.85790173624166],[-120.31037098799636,52.857937495957785],[-120.31047026700018,52.857976597603106],[-120.31055478690094,52.85801442542641],[-120.31065331837574,52.858059120768836],[-120.31075200058572,52.85810269010754],[-120.31083532633086,52.85814945359589],[-120.31091917431614,52.858192312048175],[-120.31101890239809,52.858228062271984],[-120.31110170544461,52.8582787394796],[-120.31118436055905,52.85833052467562],[-120.31126768722343,52.85837728785077],[-120.3113510140706,52.85842405096538],[-120.31144917463108,52.85847153362157],[-120.31153287455157,52.85851550861138],[-120.3116162772133,52.85856170857373],[-120.3117143631335,52.85860975396443],[-120.31179821410169,52.85865260284111],[-120.31188213929438,52.85869489763223],[-120.31198067373253,52.858739591842394],[-120.31206392801565,52.858786908465284],[-120.31214733058908,52.858833116978595],[-120.31224601611648,52.8588766850415],[-120.31234462660078,52.8589208159809],[-120.3124290007424,52.85895975941879],[-120.31251233000113,52.85900652169271],[-120.31259506228646,52.859057751847935],[-120.31267779477056,52.85910898194318],[-120.31276112459368,52.859155744036315],[-120.31285921316999,52.859203788453435],[-120.31295954236423,52.85923506906482],[-120.31306039358012,52.85926244460741],[-120.31317682514322,52.859284954516546],[-120.31329489881671,52.859295177462364],[-120.31339933284376,52.8592957450455],[-120.31350749852311,52.85926838787513],[-120.3135604329011,52.85920744061869],[-120.31355477943836,52.85913802214176],[-120.31351915872321,52.85906940789542],[-120.31343739613669,52.859010913510794],[-120.3133695707005,52.858959849281185],[-120.31328616655487,52.85891364163898],[-120.31320291066827,52.858866325885735],[-120.31313650444305,52.85880464567851],[-120.31305325012947,52.858757320880066],[-120.31297044264045,52.858706653998745],[-120.31288718870248,52.858659329079856],[-120.31280393375502,52.85861201303636],[-120.31272068018657,52.85856468799667],[-120.31263735156273,52.85851792585746],[-120.3125392636196,52.858469890170205],[-120.31245586133186,52.858423681924386],[-120.31237260732301,52.85837636556832],[-120.3122898025767,52.85832568925926],[-120.31222197960449,52.85827462434521],[-120.31213917523473,52.858223947926824],[-120.31205704231478,52.85816824948217],[-120.31197371519325,52.858121486860554],[-120.311889865093,52.8580786380949],[-120.31180765872271,52.85802349349545],[-120.31175608918666,52.857962532030385],[-120.31170511703128,52.857897102599765],[-120.31166890309255,52.85783295567946],[-120.31160257594763,52.857770711604445],[-120.31155160425705,52.8577052820994],[-120.31149943822061,52.85764878844979],[-120.31144846683398,52.85758335889493],[-120.31141210423307,52.85752032886781],[-120.31139236789065,52.85744460568047],[-120.31138604567668,52.85738021792279],[-120.3113808427452,52.85730745724165],[-120.31137579034058,52.85723357063589],[-120.31136991612652,52.85716583191309],[-120.31136434055995,52.85709585921649],[-120.3113733734703,52.85702828607478],[-120.31136809654372,52.856956079401634],[-120.3113630442028,52.85688219277891],[-120.31135672211651,52.856817804996695],[-120.31135159455768,52.85674448132768],[-120.31134579450887,52.85667618855788],[-120.31132531210632,52.85660605024669],[-120.31131973668613,52.856536077523316],[-120.3112992531992,52.85646594813732],[-120.31129345446661,52.85639764641699],[-120.31127364360006,52.856322486116746],[-120.31126724647744,52.85625866126771],[-120.31126219439388,52.85618477460808],[-120.31125646981852,52.856115918848836],[-120.31126617519939,52.856043314769074],[-120.31126089857615,52.855971108046134],[-120.31128454067586,52.855905925499286],[-120.31129394733748,52.85583555537968],[-120.31131766336975,52.85576981879537],[-120.31134190251161,52.85570016828387],[-120.31136606751691,52.855631071789546],[-120.31140506376761,52.85556270383203],[-120.31144406108773,52.85549432692277],[-120.31148231056099,52.85543154386635],[-120.31152115833308,52.855364283912444],[-120.31156000478825,52.85529703287867],[-120.31159915091875,52.855227538919564],[-120.3116226427884,52.855163473260866],[-120.31164680584038,52.855094385621264],[-120.31168580234471,52.85502600861148],[-120.31170996521651,52.85495692095279],[-120.31173360606768,52.854891738273714],[-120.31177245295179,52.8548244782137],[-120.31181137376345,52.85475666411222],[-120.31186430496551,52.85469571744587],[-120.31191798366712,52.85462917687891],[-120.31195630690902,52.85456583067199],[-120.31200923766716,52.854504883932925],[-120.31204823305143,52.85443650677733],[-120.31208707783044,52.854369255529804],[-120.31212592368122,52.85430199533072],[-120.31216424632031,52.85423864904285],[-120.31221777350261,52.854173234243966],[-120.31227085387435,52.85411116144755],[-120.31230917612667,52.85404781510478],[-120.31236270284721,52.853982400231935],[-120.31241555825977,52.85392200731377],[-120.31246863803098,52.85385993441815],[-120.3125216424143,52.8537984244586],[-120.31258873219527,52.853743218878925],[-120.31265701595154,52.85367907734454],[-120.31272335903623,52.85362945663055],[-120.31280520491156,52.85357553332562],[-120.312886976546,52.85352216398866],[-120.31296822616383,52.853472699589595],[-120.31304984813971,52.85342044712579],[-120.31313169320119,52.85336652358627],[-120.31319803524744,52.85331690259447],[-120.31326572040022,52.8532572286502],[-120.31331872288506,52.853195718307624],[-120.31337165119,52.853134761966075],[-120.3134106419434,52.85306639323494],[-120.31344888753843,52.853003600505865],[-120.31347304640859,52.85293451239622],[-120.31351263498374,52.8528616667229],[-120.31355087905108,52.852798882888415],[-120.31360395577228,52.85273680943585],[-120.31367096726622,52.85268216616466],[-120.31375273610458,52.85262879619502],[-120.31379098080357,52.85256600333729],[-120.31382989634496,52.85249818847015],[-120.31386881176259,52.85243037358725],[-120.3139225585045,52.85236327798119],[-120.31397481278483,52.852307352267204],[-120.31404249524877,52.8522476778373],[-120.31411017752333,52.85218800336619],[-120.31417726271509,52.8521327968232],[-120.31424494461879,52.85207312227005],[-120.31431128335814,52.852023500608944],[-120.31437881568338,52.85196494296729],[-120.31444590017661,52.85190973626302],[-120.3145135813505,52.85185006154669],[-120.31458066548859,52.85179485476154],[-120.314647749453,52.851739647936185],[-120.31471602690533,52.8516755051238],[-120.31476902533309,52.85161399406529],[-120.31482202360796,52.85155248298051],[-120.31487494653176,52.851491534834274],[-120.31492779530049,52.851431140690686],[-120.31499562424004,52.85137034868479],[-120.31504914467398,52.85130492354123],[-120.31510214216087,52.851243412318],[-120.31516997055338,52.85118262020422],[-120.31522281852163,52.85112222591621],[-120.31527574033888,52.85106127757276],[-120.3153440157609,52.850997134367866],[-120.31541109748267,52.85094192707865],[-120.31547758229097,52.850891187728855],[-120.31555942062344,52.85083725347586],[-120.31564043766039,52.850789467105365],[-120.3157209317958,52.85074559462898],[-120.31581610868601,52.85070354921008],[-120.31592559357864,52.850666136706046],[-120.31602024739871,52.850628005072295],[-120.31611490104956,52.85058987336136],[-120.31620992684604,52.85054895355116],[-120.31630525197743,52.8505057907347],[-120.3164005757226,52.850462636775696],[-120.31648106965262,52.85041875483355],[-120.31657624387101,52.85037671772611],[-120.31667156824676,52.85033355460774],[-120.31675191131174,52.85029079840918],[-120.31684723531771,52.850247635145976],[-120.3169424839621,52.850205034770696],[-120.31703832898242,52.850157966327735],[-120.31713357723572,52.85011536579514],[-120.31721399459146,52.850072046308],[-120.31732340147367,52.85003519545318],[-120.31741797867504,52.84999761670915],[-120.31751195800294,52.84996451481646],[-120.31762069388375,52.84993268570592],[-120.31772950476004,52.84990029352689],[-120.31782340966825,52.84986774541428],[-120.31793221903199,52.84983536198212],[-120.3180408803094,52.84980408651154],[-120.31813493387968,52.84977042114903],[-120.31824299721602,52.8497436224223],[-120.31833697653691,52.84971051092843],[-120.31844571115458,52.849678681049234],[-120.31855451956356,52.84964629703689],[-120.31864842328307,52.84961374825965],[-120.31875723256528,52.84958135512221],[-120.3188659665401,52.8495495248515],[-120.31895919831207,52.84952200679247],[-120.3190686034684,52.849485145363744],[-120.31917748604864,52.849452197802215],[-120.31927071740692,52.84942467949437],[-120.31937952573425,52.84939228577674],[-120.3194882587627,52.84936045492628],[-120.3195821611404,52.84932790539689],[-120.31969037151552,52.84929998833018],[-120.31979962640443,52.84926424321685],[-120.31989367739627,52.849230576434934],[-120.32000173825998,52.84920377608149],[-120.32009631125821,52.84916619516162],[-120.3202051922305,52.84913324664109],[-120.3202990184385,52.84910125950303],[-120.3204078251599,52.849068864826464],[-120.32051730182917,52.849031448004894],[-120.32061112757921,52.84899946061554],[-120.3207199338039,52.84896706564785],[-120.3208139834141,52.848933398122774],[-120.3209232352302,52.848897660892305],[-120.32101721060664,52.8488645472367],[-120.32112609009758,52.84883159785642],[-120.32121991495153,52.848799609976794],[-120.32132872020406,52.84876721444125],[-120.32142261987137,52.84873466342852],[-120.32153075362362,52.84870729869034],[-120.32163940819665,52.84867602880526],[-120.32174702071185,52.84865256891392],[-120.32185500503782,52.8486263208803],[-120.32196328724513,52.848597838737504],[-120.3220707491887,52.8485755044893],[-120.32217932912552,52.84854478813664],[-120.3222869410127,52.848521327748905],[-120.32239507366961,52.84849396221152],[-120.32248897192167,52.84846141034084],[-120.32259702920615,52.84843460758727],[-120.3227058324818,52.84840221076886],[-120.32281470948827,52.848369259813985],[-120.3229085320589,52.848337270576444],[-120.32301733484971,52.84830487346754],[-120.32311197709015,52.848266736063664],[-120.32320699099863,52.84822581053415],[-120.32330170797529,52.84818711000418],[-120.32339701946036,52.84814395030542],[-120.3234498520154,52.84808355220086],[-120.32351758959979,52.84802330918189],[-120.32359807041315,52.84797943123224],[-120.3236932333665,52.84793737935874],[-120.32380270424989,52.84789995944891],[-120.3239119509151,52.84786421941579],[-120.32400465501547,52.84784060238261],[-120.32412694521399,52.84781897532703],[-120.32423254284708,52.847810597222825],[-120.3243535662438,52.847798468968335],[-120.32447295124751,52.84779862768244],[-120.32457854876228,52.84779024926705],[-120.32469838054183,52.84778705672622],[-120.3248164251487,52.84779726817018],[-120.32493506551822,52.84780301145924],[-120.32505251453199,52.84781769070205],[-120.32515572924783,52.84782718391513],[-120.32527690134675,52.84781393770029],[-120.3253830944007,52.847801090523944],[-120.32550538259575,52.847779470969044],[-120.32561217112975,52.84776215554616],[-120.32572029972887,52.84773478693497],[-120.32581501333499,52.8476960843667],[-120.32590942777702,52.847659624678066],[-120.32601822656012,52.84762722477601],[-120.32611346019374,52.84758461689552],[-120.32620742745702,52.84755150799689],[-120.32630273577298,52.847508336987424],[-120.32639714938261,52.847471876902375],[-120.32649305286634,52.84742423769162],[-120.32657420005384,52.84737532666742],[-120.32665527201983,52.847326978559465],[-120.32672292884143,52.84726729663751],[-120.32678998997021,52.84721208272158],[-120.32684296544127,52.84715056604353],[-120.32689661128201,52.847084018316906],[-120.3269207450192,52.847014927184006],[-120.32694435822546,52.846949741117704],[-120.32696923735047,52.84687505597153],[-120.32699270153606,52.84681098690217],[-120.32700215411775,52.8467400610828],[-120.3269964804331,52.846670642705305],[-120.32694445630746,52.84661303850578],[-120.32689347441854,52.846547615194034],[-120.32682706757566,52.846485942242694],[-120.3267915111098,52.846416768496105],[-120.3267245091196,52.84635956353137],[-120.32665653901823,52.84630962357434],[-120.32655786903862,52.84626605833082],[-120.3264592731056,52.84622193896518],[-120.32637483631424,52.846183568261274],[-120.3262756452187,52.84614391678743],[-120.32617652934718,52.84610370225491],[-120.32604849800349,52.846056475991084],[-120.32594819139919,52.84602519735755],[-120.32584736320933,52.84599783264599],[-120.32573140792574,52.845971984067276],[-120.32563058000068,52.84594461916876],[-120.32551551842158,52.84591206830836],[-120.32541402009824,52.84588973424113],[-120.32529702299912,52.84587170430909],[-120.32519500428673,52.8458532751222],[-120.32507756063245,52.84583859600351],[-120.32496011705896,52.84582391676736],[-120.32484088650199,52.84582264153774],[-120.32473529390937,52.84583102019937],[-120.32461546762724,52.84583421278181],[-120.32449504560245,52.84584187328166],[-120.32437514540042,52.84584561965587],[-120.32427014840798,52.84584952986036],[-120.32415091780004,52.84584825393054],[-120.32403228297257,52.845842509842505],[-120.3239877949205,52.84584035577857],[-120.32391364817701,52.8458367656346],[-120.32381043855351,52.84582727131828],[-120.32369299544727,52.84581259081525],[-120.32357495660129,52.84580237822958],[-120.32345751364463,52.845787697490934],[-120.32335653865316,52.84576144764612],[-120.32327329726638,52.84571413863358],[-120.32320637617573,52.84565636866453],[-120.3231859534501,52.845585677895365],[-120.32318073183077,52.84551291719343],[-120.32327544280776,52.845474216617916],[-120.32338416294233,52.845442382082716],[-120.32349161619311,52.84542004649001],[-120.3235997402161,52.84539267978991],[-120.32369355684311,52.84536068092894],[-120.32380302111395,52.84532326095756],[-120.32389825181662,52.84528065481036],[-120.32399229079103,52.84524698466214],[-120.32410153050337,52.84521124439251],[-120.32419489954475,52.84518259615707],[-120.32430436291887,52.84514517571424],[-120.32438468856162,52.84510241415559],[-120.32448058896586,52.8450547765159],[-120.32457581839243,52.84501216981211],[-120.32467045193457,52.844974031072994],[-120.32476560593514,52.84493198718664],[-120.32484608082417,52.84488809935969],[-120.32494130951366,52.84484549235515],[-120.3250365380129,52.84480288527227],[-120.32513117067887,52.8447647461569],[-120.32522624990013,52.84472325592946],[-120.3253344449012,52.844695333582905],[-120.32542833254914,52.84466277928451],[-120.32553771965323,52.844625911718055],[-120.32563227643442,52.84458833516878],[-120.3257410675951,52.84455593546018],[-120.32583629464922,52.8445133277212],[-120.32591669260682,52.844470002123465],[-120.32599775979669,52.844421654379985],[-120.32607897687848,52.844372180630046],[-120.32617479871266,52.844325104559765],[-120.32625586533463,52.844276756633626],[-120.32633693296387,52.844228399714076],[-120.32643290306513,52.844180206415544],[-120.32649914032095,52.84413114060003],[-120.32656679229257,52.84407145864665],[-120.32663384859967,52.84401624470768],[-120.32670150020063,52.843956562672375],[-120.32676915161228,52.84389688059594],[-120.32680736932346,52.84383408315433],[-120.32686108488484,52.84376698126449],[-120.32691398094966,52.84370602739493],[-120.32695279371336,52.84363876184025],[-120.32700576451238,52.84357724494899],[-120.32704457582335,52.84350998829456],[-120.3270976213529,52.8434479083814],[-120.32713635857009,52.84338120573058],[-120.3271893287846,52.843319688746476],[-120.32725705233342,52.84325945232534],[-120.32730927798131,52.84320352035872],[-120.32737752273378,52.84313936984186],[-120.32745880960093,52.843089341057826],[-120.32752638475229,52.843030212552115],[-120.32759343818078,52.84297499802885],[-120.3276462583934,52.842914597838714],[-120.3276993011164,52.84285252656646],[-120.32775219604048,52.8427915633479],[-120.32780531346852,52.84272892904677],[-120.32785813307649,52.84266852875195],[-120.32791162167665,52.84260310632471],[-120.32797926924914,52.84254342349986],[-120.32804632132641,52.84248820870101],[-120.3281139685283,52.84242852579429],[-120.32816678732738,52.84236812534907],[-120.32822042508941,52.84230157681561],[-120.32824395869554,52.842236953269435],[-120.32828291684493,52.84216857019514],[-120.32829169716408,52.842102666172565],[-120.32831664491746,52.84202742647012],[-120.32832594542091,52.841957617345926],[-120.32834970249743,52.84189131377004],[-120.32835915292364,52.84182037868331],[-120.32836815568139,52.84175280358195],[-120.32834824772213,52.84167819950457],[-120.32832722311672,52.84161197752158],[-120.32832214203141,52.841538099846595],[-120.3283010437227,52.841472431893884],[-120.32829529362176,52.84140357632347],[-120.32828961735217,52.841334166708954],[-120.3282997368298,52.84125820948919],[-120.32832327093075,52.841193576947965],[-120.32834687877211,52.84112839035848],[-120.32837160204373,52.84105483059298],[-120.32840981485033,52.84099203251645],[-120.32846344931276,52.840925492749776],[-120.32850166186834,52.840862694638076],[-120.32853994812004,52.840799342470305],[-120.3285647458667,52.84072521967137],[-120.32858835307995,52.84066003301379],[-120.3286124804436,52.84059094125098],[-120.32863675772374,52.840520723525096],[-120.32867556368306,52.84045346620092],[-120.32871392430536,52.84038955098219],[-120.32875273002375,52.84032229362697],[-120.32879168560937,52.840253910300575],[-120.32883049108179,52.84018665291375],[-120.32886914882553,52.840120503594655],[-120.32889290403493,52.84005419983123],[-120.32887247456905,52.83998350979884],[-120.3288209024565,52.83992255512616],[-120.32875353535171,52.83986814809935],[-120.32867074707181,52.83981748273901],[-120.32860278511467,52.839767543700155],[-120.32852118764428,52.83970794207549],[-120.32846902114458,52.83965145531517],[-120.32841864046303,52.83958156429801],[-120.32841303923368,52.83951159163109],[-120.32845124940665,52.839448802415426],[-120.32848990706985,52.839382653190015],[-120.3285430191709,52.83932001841929],[-120.32858167538468,52.83925387809434],[-120.32862063026896,52.8391854947781],[-120.32865958383798,52.83911712038203],[-120.3286979432827,52.839053205114254],[-120.32872199575715,52.83898466730007],[-120.32877570220194,52.838917564327545],[-120.32881376251548,52.83885589199041],[-120.32885197270187,52.83879309368207],[-120.32890508353749,52.83873045872402],[-120.32895916075236,52.838660567573335],[-120.32901197369033,52.83860016660312],[-120.32907976216262,52.8385393659716],[-120.32911797167402,52.83847656756389],[-120.3291567750156,52.838409309993175],[-120.32918045502922,52.838343560141816],[-120.32918997708425,52.83827207078532],[-120.32921358198493,52.838206883900256],[-120.3292383770546,52.838132760836615],[-120.3292478239806,52.83806183444471],[-120.32927142867658,52.83799664753928],[-120.32929570339614,52.83792642956103],[-120.3293339108506,52.83786363999478],[-120.32937286325995,52.83779525636846],[-120.3294262696364,52.83773038709132],[-120.32947855946396,52.83767389992031],[-120.32954619702949,52.83761421600569],[-120.32962799211035,52.83756027149888],[-120.32970837311592,52.837516943114345],[-120.32980424933655,52.837469309834844],[-120.32988530000999,52.83742095025682],[-120.3299804320272,52.83737890194444],[-120.33007571380236,52.83733572759455],[-120.33018381311526,52.837308354693725],[-120.33029124232135,52.837286012766015],[-120.33039874638325,52.83726310775994],[-120.330506771528,52.83723628860424],[-120.33061368038535,52.837217851495254],[-120.33072177905444,52.837190478097234],[-120.33082920768204,52.837168135675775],[-120.33093790101556,52.837136293981644],[-120.33104652041715,52.837105006230296],[-120.33114053573111,52.837071330184834],[-120.33124915362896,52.83704005118105],[-120.33134368975846,52.83700246091691],[-120.33145253100408,52.83696950171825],[-120.33154706560839,52.836931920224934],[-120.33164160123587,52.83689432971844],[-120.3317509618653,52.83685746512039],[-120.3318454971482,52.83681987444799],[-120.33194010602202,52.83678172965377],[-120.33203463978083,52.8367441477636],[-120.33214400087536,52.836707273859844],[-120.33219636079467,52.83665022246097],[-120.33220632350968,52.83657538170413],[-120.33219997297894,52.836510994215196],[-120.33214906885644,52.83644501871852],[-120.33212856196968,52.83637488313476],[-120.33210812890484,52.836304193499245],[-120.3321177193538,52.8362321497675],[-120.33212656747187,52.836165682227666],[-120.33215076150799,52.836096026558735],[-120.33215953460343,52.836030121991975],[-120.33218439704343,52.8359554441584],[-120.33222274836582,52.83589152761055],[-120.33226154446254,52.835824268903174],[-120.33230049031816,52.835755884217],[-120.33233928616899,52.83568862547815],[-120.33236281107915,52.83562399189825],[-120.33240168165075,52.835556170151406],[-120.33244003109928,52.835492262452526],[-120.33247882767996,52.83542499472007],[-120.3325176978859,52.83535717292629],[-120.33257057544458,52.83529621618298],[-120.33260937164123,52.83522894839904],[-120.33266247252497,52.835166311599735],[-120.33270111859031,52.83510016974392],[-120.33275414543519,52.835038086943854],[-120.3327865887412,52.834906440501165],[-120.33281145061846,52.834831753545075],[-120.33284972505997,52.834768399728944],[-120.33290267634554,52.83470687983092],[-120.33295622216092,52.83464089179243],[-120.33300902446568,52.83458048887011],[-120.33307613126021,52.83452471687369],[-120.33312893325149,52.83446431389297],[-120.33319715527742,52.834400159637795],[-120.33326418780634,52.83434494157399],[-120.33333114642662,52.834290277516416],[-120.33341166616928,52.83424582947775],[-120.33350753090592,52.83419819307595],[-120.33360339661773,52.83415054765818],[-120.33368436176218,52.834102748339255],[-120.33376540045435,52.8340543949162],[-120.33383243170476,52.833999176515746],[-120.33390005735558,52.83393948995403],[-120.33396708825124,52.83388427147271],[-120.3340198881888,52.833823868066844],[-120.3340441527206,52.8337536489203],[-120.33405366560291,52.833682158960336],[-120.33404842690908,52.83360939819028],[-120.33404274350727,52.83353997957258],[-120.3340369852103,52.83347112393512],[-120.33403182148443,52.83339780017089],[-120.33402539375851,52.83333397563363],[-120.33402030498266,52.83326008887892],[-120.33401454675966,52.83319123322804],[-120.33400878855524,52.83312237757381],[-120.33400355000666,52.83304961677568],[-120.33399779183908,52.83298076111467],[-120.3339772835786,52.83291062569855],[-120.33395677419644,52.83284049921198],[-120.33395064513195,52.83277443164933],[-120.33393065668778,52.832700391074596],[-120.33393957497404,52.83263336920072],[-120.33397903486181,52.83256107867709],[-120.3340167109917,52.83250219251429],[-120.33407032604019,52.83243564982725],[-120.33412319894984,52.83237468333499],[-120.33416206376376,52.832306860864826],[-120.3341866981795,52.832233853509294],[-120.3341815343461,52.83216052969381],[-120.3341283291628,52.832111864398506],[-120.33401374430268,52.83207597047894],[-120.33391338981038,52.83204526135174],[-120.33381370374353,52.83200952996432],[-120.3337145386833,52.83196988441336],[-120.33363131390622,52.83192257338847],[-120.33353207429997,52.831883490665035],[-120.33343231520068,52.831848312997685],[-120.33333203658228,52.83181704038558],[-120.3332312372291,52.83178968176365],[-120.33311605936325,52.83175825508478],[-120.33304810503928,52.8317083183611],[-120.33298074670192,52.83165390453729],[-120.33289908370602,52.83159486862873],[-120.33283231920068,52.831535995529066],[-120.33274954224298,52.83148533277409],[-120.33266453428644,52.8314514343529],[-120.33256485184184,52.83141569295565],[-120.33245041883863,52.83137868046442],[-120.33234947241114,52.831352438108354],[-120.33224912081803,52.831321727544804],[-120.33213230945299,52.831302587222545],[-120.33201549819272,52.83128344678395],[-120.33191403126189,52.831261118124345],[-120.33179722021303,52.83124197746808],[-120.3316956797439,52.83122020266595],[-120.331578868905,52.83120106179197],[-120.33146265296149,52.83117745268494],[-120.33136126151682,52.83115456056363],[-120.33124437725081,52.831135973402525],[-120.3311429860218,52.83111308109212],[-120.33102558088888,52.83109840778186],[-120.33090817583671,52.83108373435402],[-120.33079017600583,52.83107352892221],[-120.33068759542898,52.83105957244486],[-120.33057123164342,52.83103707948177],[-120.33045501670398,52.83101346937519],[-120.33035407236748,52.83098722529776],[-120.33025327688372,52.830959864105346],[-120.3301381772215,52.83092788044348],[-120.33003782821824,52.83089716798202],[-120.32993874421408,52.83085695623272],[-120.32985426092185,52.8308191416993],[-120.3297556223047,52.830775587647466],[-120.32967195801716,52.83073162486258],[-120.32957384099213,52.83068415659215],[-120.3294905483446,52.830637405575644],[-120.32940725587953,52.83059065449865],[-120.32932403737767,52.830543349315874],[-120.32922540112918,52.83049978587479],[-120.32914158798266,52.830456948667326],[-120.32905837122608,52.830409634356066],[-120.32895966058265,52.83036663366947],[-120.3288758479644,52.83032379626876],[-120.3287773614457,52.830279115418634],[-120.32869347539399,52.8302368319305],[-120.3285948393075,52.83019327688739],[-120.32851117735741,52.83014931325914],[-120.32842840702943,52.83009865634975],[-120.32834519176227,52.830051341522186],[-120.32826242182134,52.83000068449263],[-120.32817980204645,52.829948901440964],[-120.32811230272266,52.82989561072574],[-120.3280459200307,52.82983393780834],[-120.32799391501375,52.82977633345499],[-120.32794295162995,52.82971090989622],[-120.32789198840243,52.82964548631256],[-120.32783983503599,52.82958899890979],[-120.32778887211212,52.8295235752763],[-120.3277379093445,52.82945815161791],[-120.32770221679971,52.8293900944214],[-120.32766600419698,52.829325942332886],[-120.3276002182044,52.82925980103819],[-120.32754813949691,52.82920275944714],[-120.3274807921272,52.82914834238166],[-120.32739914153453,52.82908930255415],[-120.32731473779619,52.829050932106306],[-120.32721618085363,52.82900681289141],[-120.32713237384647,52.82896396527286],[-120.32703433751797,52.82891594078244],[-120.32695053087185,52.82887309303168],[-120.32686724463285,52.828826340100434],[-120.32676920891885,52.82877831538437],[-120.32668540280918,52.82873546744059],[-120.32658677224222,52.828691910669086],[-120.3265029664854,52.82864906259273],[-120.32640322074135,52.82861387888183],[-120.32628478234456,52.82860701998081],[-120.32616619515855,52.82860127798442],[-120.32604805449554,52.828592184795895],[-120.3259436954377,52.8285916284425],[-120.32582570368496,52.82858141800629],[-120.32570830734534,52.82856673935638],[-120.32559076224432,52.82855317761252],[-120.32548878480547,52.82853474847719],[-120.32542211032903,52.82847530806989],[-120.32533979345945,52.82842129785885],[-120.32527304553827,52.828362411406275],[-120.32522089720631,52.828305922794016],[-120.32515526542808,52.828238663063125],[-120.3251032662569,52.82818105737084],[-120.32505171379046,52.82812010058369],[-120.3249853382832,52.8280584258662],[-120.32493385996665,52.827996914979025],[-120.32488290339886,52.82793149001775],[-120.32490658418317,52.82786574058773],[-120.32494538451401,52.827798483952286],[-120.32499826471364,52.82773752138774],[-120.3250652973854,52.827682307768434],[-120.32514692905316,52.82762949199958],[-120.32516346446711,52.82761735964383],[-120.32522811516489,52.82758001830749],[-120.32532330485228,52.827537410522574],[-120.32540367135046,52.827494084806446],[-120.3254988606709,52.82745147687685],[-120.32559345444878,52.82741333696654],[-120.32570264717212,52.8273775948012],[-120.32579657145293,52.82734447686819],[-120.3259059876697,52.82730705450689],[-120.3259997616198,52.82727506237105],[-120.32609442956652,52.82723635907223],[-120.32619013790335,52.827189845454996],[-120.32627191724713,52.8271359029259],[-120.32633894732615,52.827080688558276],[-120.32640597723174,52.827025474150396],[-120.32645885319673,52.82696451983414],[-120.32652647801258,52.82690483724985],[-120.32659350739937,52.826849622728716],[-120.32666113184489,52.82678994006246],[-120.3267280870692,52.82673527950545],[-120.32679511592887,52.82668006486327],[-120.32687726494042,52.82662333379671],[-120.32694369823184,52.8265725871723],[-120.3270260694401,52.82651418492569],[-120.32709309756703,52.82645897010554],[-120.32714530287102,52.826403037611676],[-120.32719817819927,52.82634207400204],[-120.32725187113061,52.82627497118395],[-120.3272906663193,52.82620771370495],[-120.32734368998581,52.82614563299461],[-120.32738248491228,52.826078375479774],[-120.32742128090672,52.826011109013024],[-120.32747497307089,52.82594400607858],[-120.32751302369448,52.8258823336514],[-120.32756664175707,52.825815784715516],[-120.32761884565376,52.82575985198803],[-120.3276858718291,52.825704636802826],[-120.32776764524633,52.82565070211688],[-120.32784934466558,52.82559732141833],[-120.32793052377896,52.82554784579345],[-120.3279972516811,52.82549486448047],[-120.32809325157059,52.82544611520257],[-120.32815953281985,52.82539648488102],[-120.32824130623817,52.82534254091833],[-120.32832359951222,52.825284691762036],[-120.32838988024295,52.825235061305385],[-120.3284715031158,52.82518224314255],[-120.32855268071846,52.82513276707445],[-120.3286337831627,52.825083853931666],[-120.3287006582149,52.82502975517331],[-120.32878242905669,52.824975819757235],[-120.32886353093939,52.824926906450926],[-120.32893048042041,52.82487224457278],[-120.32901277185356,52.82481439491607],[-120.3290790510525,52.82476476405539],[-120.32916149081237,52.82470579725964],[-120.32922784344152,52.82465561226421],[-120.32932369249684,52.8246079700488],[-120.32940464433182,52.824560173388406],[-120.32948626465817,52.82450735449731],[-120.32956743980088,52.82445787770616],[-120.32964794491356,52.82441343196824],[-120.32972956465822,52.82436061290308],[-120.3298112591542,52.824307230795284],[-120.32989243353956,52.82425775377318],[-120.329959305702,52.82420365426927],[-120.33004159445157,52.82414580386668],[-120.33010802012436,52.82409505537142],[-120.33017563529091,52.82403537057584],[-120.33022842841032,52.82397496849363],[-120.33028211359967,52.823907864188065],[-120.33033557497302,52.82384243987269],[-120.33035924508886,52.82377668917101],[-120.33036801841837,52.82371078421845],[-120.33037768391952,52.82363817706338],[-120.33037185792645,52.82356988379446],[-120.33035188000115,52.82349584217412],[-120.33033093618846,52.8234290567952],[-120.33030991749624,52.82336283439449],[-120.33027415100206,52.82329534069861],[-120.33023912932042,52.82322225288621],[-120.33018698069627,52.82316576629327],[-120.33010489168983,52.823110079220676],[-120.33002168699988,52.82306277430557],[-120.32992143152157,52.82303149860503],[-120.32980568487682,52.82300453663544],[-120.32970475988097,52.82297829186523],[-120.3295879724911,52.82295914890989],[-120.32948719645704,52.822931786919156],[-120.32937092922965,52.82290873860142],[-120.32926955854924,52.822885844552836],[-120.3291532177949,52.822863350066896],[-120.32903702589525,52.82283973843337],[-120.32892023918397,52.82282059481214],[-120.32880285762522,52.82280591920176],[-120.3287020086809,52.82277911058213],[-120.32861754247324,52.82274129496328],[-120.32853493512947,52.82268952085683],[-120.32846759677871,52.822635104129965],[-120.3283853622879,52.82258053286777],[-120.32831802310977,52.822526124987654],[-120.32825180033338,52.822463334863805],[-120.32818431394756,52.82241003499804],[-120.3281176452847,52.822350595887926],[-120.32805075307857,52.82229283675251],[-120.32798341597092,52.822238419734155],[-120.32790192666089,52.82217826296348],[-120.3278344399726,52.82212497182306],[-120.32775124090942,52.82207765633278],[-120.32766685071975,52.822039285965595],[-120.32755289340619,52.82199891738695],[-120.32745264223574,52.82196763955717],[-120.3273529113226,52.821932456502246],[-120.32725377567571,52.8218928052399],[-120.3271687911886,52.8218589026322],[-120.3270703259886,52.821814220108074],[-120.3269710420964,52.82177568563429],[-120.32687198096565,52.82173547999865],[-120.3267722510736,52.821700296445215],[-120.32668801248984,52.821660799399],[-120.32658872929966,52.821622264598076],[-120.32647365756316,52.82159027715321],[-120.32635992636851,52.82154822739245],[-120.32626012234078,52.821513606382624],[-120.32617692621449,52.82146628975834],[-120.32610899639442,52.82141634869012],[-120.32601112854934,52.82136719714737],[-120.3259277829858,52.821321006307514],[-120.3258445876033,52.82127368944172],[-120.32574590132539,52.821230685801936],[-120.32566270513006,52.821183377740766],[-120.32558010557604,52.82113159256737],[-120.32549735621335,52.821080933299164],[-120.32541356649351,52.82103808423619],[-120.32531383943305,52.821002899428265],[-120.32521463283123,52.82096380940299],[-120.32513143893549,52.82091649202101],[-120.32504764871514,52.82087365162853],[-120.32494911299709,52.820829530279504],[-120.32484946181935,52.82079378209013],[-120.32476730932468,52.820738654183394],[-120.32469938350259,52.820688703340124],[-120.32460181543925,52.820637325479616],[-120.32451862285919,52.82059000765348],[-120.3244506963739,52.820540065597726],[-120.32436854607334,52.82048492846678],[-120.32430129034056,52.82042995522774],[-120.32424974838078,52.82036899778544],[-120.32419880196765,52.82030357220714],[-120.32414726030689,52.82024261471483],[-120.32406451436809,52.82019195440783],[-120.32402824001376,52.820128363801075],[-120.32400849857929,52.8200526409286],[-120.32397222442678,52.81998905029878],[-120.32392179929231,52.81991971945526],[-120.32388612080779,52.81985166068251],[-120.32386504004273,52.81978599102197],[-120.32384410700882,52.819719213263284],[-120.32380850384008,52.81965059147618],[-120.32378801753525,52.81958046261841],[-120.32376708591347,52.819513675901],[-120.32373125915593,52.81944673409128],[-120.3236650479041,52.819383941256376],[-120.32359764594983,52.819330084603095],[-120.32353076459331,52.81927232278068],[-120.323464033474,52.81921343495413],[-120.32339737637673,52.819153993041816],[-120.32332870914627,52.81910963542877],[-120.32321253068643,52.81908601797443],[-120.32309575685767,52.81906686851381],[-120.32299320765088,52.81905290520795],[-120.32287643401108,52.81903375552869],[-120.32275727834688,52.81903247816247],[-120.32263812268984,52.81903120067533],[-120.32253371320233,52.819031195333395],[-120.32241396198712,52.81903438572499],[-120.32229540191592,52.81902863978436],[-120.3221762462834,52.81902736182854],[-120.322057090658,52.81902608375174],[-120.32195335065619,52.819021055744905],[-120.32183419505508,52.8190197774418],[-120.32171444381962,52.81902296711994],[-120.32159647952813,52.819012752371385],[-120.32149452660605,52.81899431965456],[-120.32137760487981,52.818976285508974],[-120.32125964079795,52.81896607042174],[-120.32114227247301,52.8189513871165],[-120.32104017096592,52.8189340710292],[-120.3209228028045,52.818919387504216],[-120.32080543472381,52.81890470386181],[-120.3207034824014,52.818886270456694],[-120.32058551872959,52.818876054691486],[-120.32049756671296,52.8188644876735],[-120.32046874665377,52.81885690261528],[-120.32035137890107,52.81884221851832],[-120.32024883113179,52.81882825281338],[-120.32013317587466,52.818800727192276],[-120.32003167095164,52.8187789421314],[-120.31991668686818,52.81874638522194],[-120.31981644893234,52.81871510080677],[-120.31971673191278,52.818679911192206],[-120.31961701505762,52.818644721492156],[-120.31951662742193,52.818614562778265],[-120.31941705985334,52.81857825588389],[-120.3193174185643,52.81854250294752],[-120.3192175533854,52.81850842992789],[-120.31911954997474,52.818460398507895],[-120.31903532486598,52.81842089588892],[-120.31893501325402,52.81839017369398],[-120.31881988207036,52.81835873272468],[-120.31871912380052,52.818331361411126],[-120.31860347087607,52.81830383427426],[-120.31850152093966,52.81828539894985],[-120.31838519839928,52.81826289372802],[-120.31828384464471,52.818239990126635],[-120.3181682673447,52.81821189958048],[-120.31806683992217,52.81818954983375],[-120.31795185892489,52.818156990987546],[-120.31785035664586,52.81813520403177],[-120.3177500465581,52.81810448081879],[-120.31763387392081,52.818080857828726],[-120.31753304196306,52.81805404847092],[-120.3174168695831,52.8180304252654],[-120.31729995221991,52.818012387047794],[-120.31719800354254,52.817993950587926],[-120.3170812353997,52.81797479513152],[-120.31697980910967,52.81795244444223],[-120.3168630411783,52.81793328876827],[-120.31674746564367,52.81790519681787],[-120.3166459645781,52.81788340881726],[-120.31652979315344,52.81785978473133],[-120.31642769612856,52.81784246462049],[-120.31631152493611,52.81781884031798],[-120.31619416146779,52.817804152055395],[-120.31609161755252,52.81779018270981],[-120.3159759677887,52.817762652974935],[-120.31587506369073,52.81773639622922],[-120.31577550126782,52.81770008622596],[-120.31567526882398,52.817668798254026],[-120.31557540859633,52.81763472211717],[-120.31547644294007,52.81759394378291],[-120.3153766569855,52.817559313434124],[-120.31527761775344,52.81751908897144],[-120.31517895080175,52.81747607634637],[-120.31509517732337,52.81743322875681],[-120.31499613864904,52.817393004053436],[-120.31489642869167,52.81735781031479],[-120.31476916752963,52.817305539841115],[-120.31442261481023,52.81710828238357],[-120.31410384038047,52.81692642070051],[-120.31375617607989,52.81673753439064],[-120.31337499974516,52.816576250712885],[-120.31297334040747,52.81645669297331],[-120.3125227523497,52.81636848587885],[-120.31206813901673,52.81631043646129],[-120.3116111402787,52.81627025751593],[-120.31113626601267,52.81625225145272],[-120.31068931355793,52.81624853302798],[-120.31021093308676,52.816256777507064],[-120.30974662519732,52.816271324934476],[-120.3092830631221,52.81628028546687],[-120.30881756075414,52.8163037653131],[-120.30835332590722,52.81631775319193],[-120.30788976303548,52.81632670822227],[-120.3074272448933,52.816327842356884],[-120.30696427886572,52.816332325695456],[-120.30652322382446,52.81628446509623],[-120.30628731770828,52.81626400491724],[-120.30606563334415,52.81624873259546],[-120.30582778653238,52.81624279259202],[-120.30560371328764,52.816245391515224],[-120.30536362663096,52.8162562056771],[-120.30513880661519,52.816264388746546],[-120.30489991446014,52.816266265908354],[-120.30467584103572,52.81626886306046],[-120.30443694883526,52.81627073928013],[-120.30421287535921,52.81627333554856],[-120.30397398311341,52.81627521082615],[-120.30373628581646,52.8162681495804],[-120.30351333204176,52.81626237144661],[-120.30327682995795,52.81624637323541],[-120.30305499737372,52.81623221223228],[-120.30282028836866,52.81620280905504],[-120.30260099597297,52.81616965813317],[-120.30238222743712,52.816132592822264],[-120.30214931238896,52.816089784264896],[-120.3019306187658,52.81605216407716],[-120.30171237379787,52.81601119247434],[-120.30147931065461,52.815969499586586],[-120.3012623361401,52.81591903709565],[-120.30106070432757,52.8158653811616],[-120.3008443298138,52.815810440952276],[-120.30062788053377,52.81575606331086],[-120.30041255212878,52.81569331223009],[-120.30022910437408,52.815615238884476],[-120.30006383806918,52.81551275826387],[-120.29991436187666,52.81540374244722],[-120.29977978011219,52.8152948845592],[-120.29961503988747,52.815188489316334],[-120.29946519287735,52.81508226093752],[-120.29929993046957,52.81497977920639],[-120.29911693508181,52.81489836202282],[-120.29891658206941,52.814835203404535],[-120.29869939270064,52.814786407171106],[-120.29846768472024,52.81473465527736],[-120.29825012200506,52.81468865517528],[-120.29803248559944,52.81464320870001],[-120.29781559725853,52.814592176828214],[-120.2976149485578,52.814531249972674],[-120.29743278131807,52.81444368218246],[-120.29731624121317,52.814311531802396],[-120.29724610066768,52.81416701563881],[-120.29732032543238,52.8140582014779],[-120.29753592408075,52.814007429021316],[-120.29777831821703,52.81397931290442],[-120.29800537030556,52.81395438893358],[-120.29823130022805,52.81393784648616],[-120.29847197365535,52.81392257889612],[-120.29869977251062,52.81389206858292],[-120.29891462243094,52.813846869652714],[-120.29913006863282,52.81379721126168],[-120.29934611343833,52.81374307553408],[-120.2995622318337,52.813688385374405],[-120.29976472764827,52.813624037707],[-120.29996804428635,52.8135535506457],[-120.30015706623506,52.8134784282073],[-120.30036157832343,52.813398995504464],[-120.30055074833962,52.813322755422206],[-120.30074021655821,52.81324428102542],[-120.30094420282529,52.81316876127421],[-120.30111974861993,52.81308286328781],[-120.30128197038896,52.812985074090506],[-120.30144538676933,52.81287834862945],[-120.30159338718657,52.81277537008611],[-120.30174138688983,52.81267239134933],[-120.30191961834487,52.81256638605323],[-120.30205294855193,52.812461569078586],[-120.3021301460905,52.81233041165016],[-120.30216393705062,52.81218927274538],[-120.30219765249142,52.812048696789006],[-120.30223151830063,52.81190699486818],[-120.30226456162076,52.81177144092581],[-120.30231301940391,52.8116321397145],[-120.30239081220269,52.81149651401926],[-120.30248267458444,52.81136719404909],[-120.30257431173614,52.81123955397442],[-120.30270912999349,52.811123566096036],[-120.30285719656501,52.81102002287112],[-120.30303340124759,52.810929099838745],[-120.30322375047434,52.810843919266155],[-120.30341342741733,52.81076376044918],[-120.30360243095238,52.81068863232787],[-120.30380684799492,52.81060975645209],[-120.30399659687762,52.81052904264418],[-120.30418686713222,52.81044442346039],[-120.30438881852074,52.810383972747005],[-120.30460364356965,52.81033877223836],[-120.30483194214415,52.810304335951635],[-120.30506106098869,52.810263760129544],[-120.30527394369354,52.81023307952962],[-120.30550216591313,52.81019920491047],[-120.30573061231429,52.810163649861494],[-120.30594551007718,52.810117883916725],[-120.30616212357191,52.81005927640477],[-120.30637888694632,52.809999542542236],[-120.30658008555935,52.80994468204034],[-120.30678389646265,52.809870268993734],[-120.30696001400275,52.80977989403807],[-120.30713635528316,52.80968783882426],[-120.30729914739057,52.809585573042426],[-120.30746126649609,52.80948833806046],[-120.3076232368117,52.8093922109269],[-120.30780024604628,52.80929513259483],[-120.30796161672818,52.80920348197814],[-120.30813914731627,52.80910248910197],[-120.3083013378846,52.809004689953554],[-120.30847752265618,52.80891375863064],[-120.30863956251567,52.80881707601902],[-120.3088170898935,52.808716082092246],[-120.30899275074829,52.80862905506914],[-120.309181735016,52.808553917860685],[-120.30938493796154,52.80848396829967],[-120.30958866181167,52.80841011328958],[-120.30977712250944,52.80833888020623],[-120.30999499034183,52.808270766431804],[-120.3101827026816,52.80820512671903],[-120.31040079353374,52.808135332189266],[-120.31058902732228,52.80806577778618],[-120.3107929714274,52.80799024066884],[-120.3109557483042,52.80788796970356],[-120.31113065565225,52.807806524533994],[-120.31134725030324,52.80774790736592],[-120.31156324900692,52.80769374894278],[-120.31179160179344,52.80765874501859],[-120.31201928254983,52.80762877171382],[-120.31224509960461,52.80761275627018],[-120.31247106560232,52.807595623369956],[-120.31271117690935,52.8075842316329],[-120.31293758986924,52.807563746767165],[-120.31316221348278,52.80755666573949],[-120.31340239833388,52.80754471854472],[-120.31362642544254,52.807542104721456],[-120.31386407579522,52.807549145981625],[-120.3141005336696,52.807565122953314],[-120.31432292114084,52.807574795065875],[-120.3145617642512,52.807572898718206],[-120.31478698385013,52.80756134648226],[-120.3150134696193,52.807540303567365],[-120.31524107355855,52.807510878055105],[-120.31546949746455,52.80747530399027],[-120.31569724977047,52.80744476056629],[-120.31592500175054,52.80741421669965],[-120.31615141226678,52.80739372563203],[-120.31638965824646,52.80739629367177],[-120.31661495032482,52.8073841838814],[-120.31684255232815,52.807354755260576],[-120.31706911107989,52.80733314539416],[-120.31730623998553,52.80734408481562],[-120.31752728621834,52.807363804112974],[-120.31776314854405,52.80738424182216],[-120.31789507575681,52.80740132743855],[-120.31798300345585,52.807412896491634],[-120.31821886627088,52.80743333328443],[-120.31844661638604,52.80740278452457],[-120.31859403489156,52.80730369825801],[-120.31858324609414,52.80716095204256],[-120.31844961032475,52.80704485875535],[-120.31828262104455,52.80695524459781],[-120.31808331851097,52.806884308097345],[-120.31786696761174,52.80682939894689],[-120.31762991650402,52.80681789767202],[-120.31740648936261,52.80681605102265],[-120.31716988541301,52.80680119773196],[-120.31695063016569,52.806768073414894],[-120.31671760260025,52.806726410532214],[-120.31650184908007,52.806667039683674],[-120.31631796366638,52.806592342110804],[-120.31613668602219,52.80649810073398],[-120.3159708207634,52.80640011001724],[-120.31582096390832,52.806293901916824],[-120.31568674226975,52.80618227352782],[-120.31556897720729,52.80605906784994],[-120.31546595306196,52.805937144144714],[-120.31534841226278,52.805812267153335],[-120.3151988570877,52.80570382416408],[-120.31504840844458,52.80560208313699],[-120.31488307021442,52.805500185700694],[-120.31473307017772,52.80539509317596],[-120.31456721242458,52.805297100405916],[-120.31421911965299,52.80511211917431],[-120.31405266793057,52.80501859376352],[-120.31387110383426,52.80492658284338],[-120.31368872003442,52.804840719745535],[-120.31350641210204,52.80475429337874],[-120.31330712896872,52.80468333973084],[-120.31309131656708,52.804624516578926],[-120.31287431203022,52.80457462922565],[-120.31265618917811,52.80453312362102],[-120.31243978202328,52.80447876736336],[-120.31225807459103,52.80438787093999],[-120.31215454264625,52.80426984931284],[-120.31217362853701,52.804126870231045],[-120.31225070477215,52.80399626842212],[-120.31234244720285,52.803867494154304],[-120.31244892846875,52.803740002285615],[-120.3125548127138,52.80361697840969],[-120.31266129272099,52.80348948632759],[-120.31276717573304,52.80336646224007],[-120.31288817067771,52.803241923441824],[-120.31299338095221,52.80312393021467],[-120.31311385336811,52.80300329628704],[-120.31322040411783,52.80287524960195],[-120.3133402037673,52.802759646509806],[-120.3134748169403,52.802644762658566],[-120.31360935545281,52.80253043268986],[-120.31377210477264,52.80242815745766],[-120.3139342570902,52.80233035010369],[-120.31411092460363,52.80223549586729],[-120.31428647289238,52.80214902353921],[-120.31444854904743,52.802051769503045],[-120.31461136845533,52.80194893902904],[-120.31474590173278,52.80183460770588],[-120.31486636436841,52.80171398081484],[-120.31498690143239,52.80159279080771],[-120.31509329521631,52.801465850398706],[-120.31620242987793,52.80022060855412],[-120.31842062693174,52.79954632839427],[-120.32016183067142,52.79632604090371],[-120.32139160369707,52.79615914735961],[-120.32519703847422,52.793554366151405],[-120.32946310719878,52.79151705480249],[-120.33409882265306,52.790283912513864],[-120.33759421132042,52.789554189085884],[-120.34129851106611,52.78803569692282],[-120.34029936281834,52.78545784898121],[-120.33881419371782,52.7835107888517],[-120.33855823815112,52.78162260562137],[-120.33772853935741,52.77945426411749],[-120.33662328607828,52.77790271575189],[-120.33161832564346,52.77833722268069],[-120.32660358271652,52.779740163875296],[-120.3199062642525,52.78079425229202],[-120.31339589050344,52.78144950002766],[-120.31019439662825,52.781429949378904],[-120.30690286448622,52.780968583010896],[-120.30642044020901,52.78089845366951],[-120.3018303083873,52.779449589198244],[-120.30062931294853,52.77795482227044],[-120.29725538462382,52.77577233903188],[-120.29285421750008,52.773808355134584],[-120.28930911091484,52.77201919262032],[-120.28828691787076,52.77052904712322],[-120.28786263808905,52.76824619834096],[-120.28809988342852,52.764361437383684],[-120.28850931084419,52.76219404417509],[-120.2897655068513,52.7604884921862],[-120.29232447862232,52.75873068819226],[-120.29308747389803,52.75514308945989],[-120.29260513698544,52.75496327362673],[-120.29193320492449,52.75486471632208],[-120.29104806773003,52.75446735399589],[-120.29044288940646,52.75420395377302],[-120.28961405205266,52.75383124731745],[-120.28899768370732,52.753540308339076],[-120.28861770390756,52.75315241522759],[-120.28823429244889,52.75279020356582],[-120.28771360676014,52.75245220963747],[-120.28740932687744,52.75227769263884],[-120.28706664413683,52.752056325443014],[-120.28649095311154,52.75190677561694],[-120.28621341709879,52.75186623335329],[-120.28598026991307,52.751827859037306],[-120.28576057268968,52.75180026040944],[-120.28553788332327,52.75179500193869],[-120.28530995705452,52.75182883903064],[-120.28507321967881,52.75181727158521],[-120.28485359731644,52.751789117211395],[-120.28463569675779,52.75174811214306],[-120.2844202664457,52.75168867125321],[-120.28420461165047,52.7516309099735],[-120.28398746082654,52.75158431856126],[-120.28375311983875,52.75155487602128],[-120.28353514609428,52.75151443188198],[-120.28333571183893,52.75144677595388],[-120.28313657638267,52.751376894568175],[-120.28293878996331,52.75129695067522],[-120.28275564922902,52.751218855679824],[-120.28255831334386,52.751135560060334],[-120.28235813269416,52.75107349651407],[-120.28214323232456,52.75101014629334],[-120.28192661149357,52.75095963698929],[-120.28170811909598,52.750923094554025],[-120.28148064361814,52.75095357314649],[-120.28124091751131,52.750964338432254],[-120.28100238918006,52.7509661670414],[-120.28077865654386,52.75096871868881],[-120.28055911684174,52.75093999327311],[-120.28035946474596,52.75087401225751],[-120.28017737884025,52.75078809405374],[-120.28001301023347,52.75068111278173],[-120.27986456185208,52.75056647277718],[-120.27976177325121,52.75044451331934],[-120.27966018339524,52.75031361758533],[-120.27955747027214,52.750191103885],[-120.27940827593577,52.750082048375866],[-120.27925855753453,52.74997690671317],[-120.2791093635097,52.749867859744214],[-120.27897616499634,52.74975059122059],[-120.27890439370991,52.74961947120505],[-120.27886378657566,52.74947806547338],[-120.2787763234321,52.749352914783664],[-120.27867473918647,52.749222018101],[-120.27855663730048,52.749103247731554],[-120.27845385594776,52.7489812870088],[-120.27836759340775,52.74884719980027],[-120.278295901003,52.748715516354814],[-120.27820948849448,52.74858255496404],[-120.27812262831156,52.74845293562608],[-120.2780050550039,52.74833025059697],[-120.27790235138748,52.74820773528532],[-120.27776961078996,52.74808711419738],[-120.27765114061688,52.74797113091161],[-120.2775178009955,52.74785498654088],[-120.2773840138364,52.74774218413646],[-120.27723535737174,52.74762922057867],[-120.27708520342006,52.747527427032246],[-120.27692077956884,52.74742100417152],[-120.27680208939213,52.74730669103944],[-120.27673107805091,52.74716998437735],[-120.2766898810864,52.747033045746214],[-120.27664928373164,52.74689163900525],[-120.27663790102596,52.74675446841954],[-120.27662786571906,52.746607253568364],[-120.27666041592197,52.746475606160566],[-120.2767815048654,52.74634998294319],[-120.27694270447184,52.74625837120834],[-120.27716053360842,52.74618863562351],[-120.27736334273281,52.74611985567672],[-120.27756562627206,52.74605498942275],[-120.27782442623524,52.7459018067311],[-120.27798622110875,52.745805725441635],[-120.27814966417779,52.74569734772758],[-120.2782693984368,52.74558177612087],[-120.27841797066608,52.74547323715341],[-120.27856631687045,52.74536637799452],[-120.27871563648141,52.74525225351226],[-120.2788347688717,52.745141149392445],[-120.27896989242771,52.745021832697724],[-120.27910434188463,52.74490753798379],[-120.2792530594132,52.74479788088386],[-120.27938728217435,52.74468526583489],[-120.27952240274819,52.74456594846703],[-120.2796430286275,52.74444367321295],[-120.27977739899568,52.74432994066428],[-120.27995090781603,52.74425747479309],[-120.28016722330582,52.74419891273304],[-120.28039653600052,52.74415446924085],[-120.2806115783111,52.744105396623056],[-120.28082729325746,52.74405130145031],[-120.28104315856727,52.74399607991392],[-120.28124527677237,52.74393232424607],[-120.28144829377537,52.74386185711611],[-120.28165198313764,52.74378636746684],[-120.28181376140745,52.74369028075849],[-120.28196224382471,52.74358229120874],[-120.28209660531817,52.74346855593593],[-120.2822312654534,52.743352586439535],[-120.28235173048999,52.7432314253297],[-120.28247144648833,52.7431158492408],[-120.28260595482922,52.74300099631786],[-120.2827404624476,52.74288614323175],[-120.28287541832165,52.74276793888733],[-120.28299528126303,52.74265124519605],[-120.28310162216219,52.74252433783469],[-120.28319332048613,52.74239558117631],[-120.28328449389507,52.7422707385175],[-120.28337686392445,52.74213695951473],[-120.28345459035839,52.74200134020577],[-120.28351692512892,52.74186946578541],[-120.28357940915238,52.74173647428704],[-120.28361320555634,52.74159533420679],[-120.28363288202392,52.74144844875393],[-120.28373757328752,52.7413338191494],[-120.28392750154481,52.74124978302589],[-120.28411817716218,52.74116016141728],[-120.28426664377909,52.74105217770264],[-120.28441451239202,52.7409486529962],[-120.28459046756917,52.74085775348203],[-120.2847934644648,52.74078728041323],[-120.28499563731049,52.74072295515544],[-120.28519982843193,52.74064355402443],[-120.28534769337305,52.740540028112314],[-120.2854821858882,52.74042517169166],[-120.28564469073017,52.74032349429609],[-120.28581996823772,52.7402376150972],[-120.28602348305364,52.74016323470566],[-120.28622647429127,52.740092759121914],[-120.28636021524687,52.73998348684981],[-120.28648110776106,52.739858970109076],[-120.28661499688609,52.73974858049065],[-120.28673543935182,52.739627414584604],[-120.28682719469862,52.739498100783685],[-120.28689026313428,52.73936063915329],[-120.2869384640395,52.73922301771431],[-120.28698980615032,52.739061929472385],[-120.28719489351067,52.738197208590854],[-120.28829489653417,52.7375426125683],[-120.29051539952746,52.73685840538675],[-120.29144918109127,52.73633283569501],[-120.29232429684427,52.73557784504068],[-120.2925471109942,52.73457962086514],[-120.2921249137554,52.7340631734056],[-120.29181350123712,52.73305236637745],[-120.29177055322471,52.732371722606295],[-120.29280042041259,52.73157200038862],[-120.29452889990687,52.730556765287005],[-120.29569119237547,52.72999060173554],[-120.2961182592231,52.7291338963917],[-120.29678383489107,52.7280515817626],[-120.29751974760514,52.72711099869403],[-120.2979963988474,52.726662585439655],[-120.29888095500658,52.725723058148695],[-120.29961374458527,52.72491666656982],[-120.29834025516872,52.724756734146396],[-120.29654608888399,52.724483682500015],[-120.29498540604138,52.72435692048751],[-120.29348358054588,52.72423525953055],[-120.2924367140561,52.72416165650734],[-120.29094147552749,52.72399081239386],[-120.28924567727223,52.72353917983902],[-120.28718246354575,52.72271932955358],[-120.28512865746933,52.72194093332705],[-120.28365914405965,52.72135635842112],[-120.2820285784541,52.7208633853572],[-120.27596892965518,52.71921750517063],[-120.27338131166643,52.71842735221519],[-120.27230740808518,52.717447108578234],[-120.27147408511172,52.716559601479396],[-120.27062374477461,52.71557737021681],[-120.26953134658105,52.71495767180443],[-120.2683216362544,52.71388189379666],[-120.26803297434833,52.71270680574982],[-120.26813200110911,52.71252332358602],[-120.26825114423333,52.712411673749315],[-120.26845088458002,52.712364685404424],[-120.26869099737041,52.71234947785639],[-120.26892976073758,52.712344323145466],[-120.26916687502872,52.712351455353655],[-120.26938800798413,52.71236679840094],[-120.26962632166737,52.71236499338135],[-120.26985375036311,52.712333419974286],[-120.27006677067553,52.712298333104975],[-120.27028114077055,52.712253183565494],[-120.27051036689257,52.712208204419625],[-120.27072518447761,52.71215971188456],[-120.27095373584665,52.71211975407567],[-120.27118146197438,52.712085944006105],[-120.27139410593674,52.712053642847486],[-120.27162190568818,52.71201927786795],[-120.27184918123481,52.711988817618526],[-120.27206339806516,52.71194478184764],[-120.27227971084793,52.71188511604265],[-120.27248259058557,52.71181466293728],[-120.27268456955544,52.711750920664564],[-120.27290088169079,52.711691244768055],[-120.27310428320678,52.71161688539678],[-120.2732649104536,52.71152862772448],[-120.2734140518401,52.7114150614727],[-120.27353430214654,52.71129502388634],[-120.27366873445949,52.71118017878129],[-120.2738037651921,52.71106086533794],[-120.27392341428335,52.71094529549888],[-120.27408568486955,52.710844749175585],[-120.27427444836745,52.71076854629712],[-120.27447672046252,52.71070255786268],[-120.27469347288381,52.71063953641421],[-120.27489559396797,52.71057466429583],[-120.27511174612788,52.710516110250055],[-120.27532744966409,52.71046089800538],[-120.2755282201043,52.71040608713984],[-120.27575870413729,52.71035159830088],[-120.27597350645614,52.7103030960774],[-120.27618786032522,52.71025793566452],[-120.27640168914233,52.71021668899316],[-120.27663007392854,52.710177846037546],[-120.27684382766677,52.71013715261249],[-120.27707228707438,52.71009774579993],[-120.27730014729923,52.7100628067367],[-120.27751509610646,52.71001318462698],[-120.27773019529164,52.70996243613495],[-120.27794499342299,52.70991393028236],[-120.27815994193219,52.709864298047606],[-120.2783755628213,52.70980964315706],[-120.27859118315975,52.70975498786757],[-120.27880620434767,52.70970480038374],[-120.27900764078449,52.709644952325824],[-120.27922385804065,52.70958582765892],[-120.27942529333349,52.70952597887767],[-120.27964278064515,52.70945736295711],[-120.27978935429807,52.709362778321],[-120.27979267736787,52.709226891266205],[-120.27978189189712,52.70908525826075],[-120.27977185580527,52.708938031039374],[-120.28083291217072,52.70745857213733],[-120.28109902884427,52.70691559824003],[-120.28430391282484,52.70597954066127],[-120.28599549824204,52.705567562471295],[-120.28939316354857,52.70541324522477],[-120.29252745630977,52.70567097398517],[-120.29240122405507,52.70539101976941],[-120.28965042825898,52.70482428295139],[-120.28751046571567,52.70414004606085],[-120.28522032845889,52.70335566367774],[-120.28407887503646,52.70254761120022],[-120.2828756256696,52.701201315825905],[-120.28166686600646,52.70011896334786],[-120.28144716490331,52.699982277216726],[-120.2788651352884,52.698047830471424],[-120.27701872717519,52.6966193545049],[-120.27642987320284,52.69601875190461],[-120.27633475545856,52.695507547375165],[-120.27634733246697,52.69519165154673],[-120.2763748766436,52.694764040780875],[-120.2763296331884,52.69399161384022],[-120.27602709481194,52.693585497859964],[-120.27544307633099,52.693171206359274],[-120.27485914340016,52.69275635776706],[-120.2738077266119,52.69227866525526],[-120.27307549779485,52.691971781539124],[-120.27275368751913,52.69170975696125],[-120.27201536949548,52.690893770693826],[-120.2716527686683,52.69060332254585],[-120.27138758282246,52.69025186941735],[-120.2713227069073,52.68984839936137],[-120.2712185699633,52.68962683871387],[-120.27127308854132,52.689220230019124],[-120.27126822097614,52.688480133030446],[-120.2706025262686,52.68778857278657],[-120.27029928103947,52.68749933911687],[-120.2699862666895,52.687061203252036],[-120.26958690018793,52.68682347091802],[-120.26905469719338,52.68635658473854],[-120.26846305324808,52.68600034332774],[-120.26819712421951,52.68587654041304],[-120.26780604544824,52.68579887401356],[-120.26748290171281,52.68565820101713],[-120.26709443839388,52.68545022861521],[-120.26684545401189,52.68520018646475],[-120.26573326544059,52.684623288669314],[-120.26513635159536,52.68430668095866],[-120.26413841048416,52.68365441846714],[-120.26215326825942,52.68238129848031],[-120.26227047397906,52.68195134936766],[-120.26234921355984,52.68147564842548],[-120.26247368926076,52.680991517361925],[-120.26270688440947,52.68025130494538],[-120.26300005536743,52.679285772431584],[-120.26288698997234,52.67879896356595],[-120.26296234165176,52.6784591595409],[-120.2630785552409,52.67814721610142],[-120.26358538336743,52.677472728858454],[-120.26383467061372,52.677276959131845],[-120.26439493030382,52.67653650457893],[-120.26528302796414,52.67590098198686],[-120.26646541887574,52.6750662676483],[-120.26741385714486,52.67420206414738],[-120.2688728550166,52.673299395958374],[-120.26919742426567,52.6719873905269],[-120.26901933211307,52.67109822581561],[-120.26871892907758,52.66979094930868],[-120.26898126334916,52.66849949943484],[-120.26912060208936,52.66790364998794],[-120.26954205836884,52.66719908935117],[-120.26994802168677,52.666720900444616],[-120.27038204947654,52.66647684365494],[-120.2712981740587,52.666184485781876],[-120.27206300810072,52.66580093178158],[-120.27321296968556,52.665538026394835],[-120.27419651484067,52.664963910942646],[-120.27514969827438,52.66472731559686],[-120.27605457668649,52.66440738590463],[-120.27715950586102,52.664147300313296],[-120.27783450057707,52.6638790528644],[-120.27850649690558,52.66363314318652],[-120.27885240960315,52.66326948166943],[-120.2795318206043,52.66285695927506],[-120.280093906991,52.66221041838777],[-120.2801970865417,52.661216995760086],[-120.28070498438001,52.6606420171694],[-120.28195464688343,52.66018770587718],[-120.2831045692106,52.65981226950849],[-120.28407144918548,52.658804933771734],[-120.28543343438935,52.65806543532671],[-120.28639029755644,52.65768838689132],[-120.2871976171585,52.656873361985596],[-120.28751428140066,52.65617149165034],[-120.29042406386273,52.65552401147725],[-120.2917835233433,52.65546964408828],[-120.29251458050918,52.65511355403292],[-120.29261716083661,52.65434498197345],[-120.29227113125167,52.65382038320884],[-120.29157558712156,52.65346534444086],[-120.29056519718446,52.65335406669769],[-120.28994660372945,52.65331310998676],[-120.28834615832373,52.65350351211653],[-120.28701125714277,52.653819335925036],[-120.28515914805153,52.6540024382189],[-120.28422272271828,52.65389360367572],[-120.28320405400734,52.65384425697694],[-120.28158087924517,52.654093049430685],[-120.28060298387975,52.654072106728556],[-120.27925269471777,52.65372480727055],[-120.2782508068991,52.6532169174743],[-120.27728182889149,52.65290740616008],[-120.27642019821269,52.65246204099558],[-120.27584476135111,52.652320802546484],[-120.2753585371897,52.65206813116915],[-120.27396883850192,52.65190492001966],[-120.27130156435943,52.651185353674364],[-120.26940761499925,52.650350217592226],[-120.26860300744929,52.649480292856175],[-120.26832350967095,52.64868339494126],[-120.26772634242408,52.6478180296027],[-120.26648704066059,52.64686657176791],[-120.26565965547553,52.64638906370712],[-120.26330131057072,52.6461387413739],[-120.2611535963627,52.645758184569644],[-120.25967525343623,52.6452609646151],[-120.25862592063481,52.64477753483313],[-120.25651598421639,52.64400574383228],[-120.25501959963654,52.643643639178656],[-120.25319516153759,52.643401403939144],[-120.25182589710468,52.642978050496964],[-120.25041908898699,52.64294470128453],[-120.249260866547,52.64238834339413],[-120.24943722382385,52.64140806278389],[-120.24871959153965,52.64066876300831],[-120.24829287478265,52.64052797052409],[-120.24745131397209,52.64037907801461],[-120.24604734245902,52.640214814869964],[-120.24507872377893,52.64012710522303],[-120.24358615440872,52.63995899801619],[-120.24229452975882,52.6397327640431],[-120.24101224410629,52.639437249338116],[-120.23973824811775,52.63908029142343],[-120.23856502280657,52.63885760306696],[-120.23656821155393,52.63802241091399],[-120.23538233116753,52.636350727648505],[-120.23386463636585,52.63460695385611],[-120.23379620888568,52.63401264400877],[-120.23374810766506,52.63315734024909],[-120.2337835647486,52.63256366816737],[-120.23394555639545,52.63158212071056],[-120.23400991196829,52.63066378172816],[-120.23396730498065,52.62954729737981],[-120.23435139993217,52.628570541204354],[-120.2343387386405,52.62712155995037],[-120.23471941860676,52.62628014031776],[-120.23489325188959,52.62510013838043],[-120.23496081083124,52.6240475721871],[-120.2356995160989,52.622752685735996],[-120.23659310040512,52.62218175928463],[-120.24014083091973,52.62174872728975],[-120.24057774753248,52.621591516569175],[-120.2415337401793,52.62121817692793],[-120.24273045966031,52.62049013286669],[-120.24316505215448,52.620129265266534],[-120.24432830808567,52.619428791550874],[-120.2458880349228,52.61876081325271],[-120.24675478803765,52.618277328755596],[-120.24793632146434,52.61788189556265],[-120.2496941467307,52.61783817347953],[-120.25089326493368,52.61786414631371],[-120.25192219167948,52.617941304097975],[-120.2522571787399,52.617879106609855],[-120.25804309819375,52.61791178531397],[-120.25897974118685,52.61779149193227],[-120.25977966476994,52.61769425356785],[-120.26048719948278,52.61751094154851],[-120.2618658652988,52.61708348335969],[-120.26302049848694,52.61677653938093],[-120.26439851665445,52.616353519497274],[-120.26596594761128,52.616289501901605],[-120.26798899632077,52.61603815870739],[-120.27074188095396,52.616101519191005],[-120.27221056148298,52.61577675538297],[-120.27398663908825,52.61581734660549],[-120.27583934653408,52.61572897868563],[-120.27740240498262,52.61569721302971],[-120.27918493869493,52.61557836103313],[-120.28114616617673,52.615455321998496],[-120.28300448397913,52.61510231451188],[-120.28402485705547,52.61424267424669],[-120.28438563342928,52.61365316325592],[-120.2846829136297,52.61320559175057],[-120.28509108743317,52.61281687208186],[-120.28538732727972,52.61226579916084],[-120.28602210300396,52.611625056435756],[-120.28770045362144,52.61083924600956],[-120.28742362287939,52.60991038138299],[-120.28712870393913,52.609673286951015],[-120.28635299522227,52.60903481039827],[-120.28608610528923,52.60814297579626],[-120.28568103627401,52.60750804379002],[-120.28596403790681,52.60649979405804],[-120.28610434154625,52.60600460132014],[-120.286149428037,52.60522194562822],[-120.28624326623607,52.60463002968101],[-120.28650938970269,52.60374801364833],[-120.28688891426394,52.60290584752348],[-120.28725849929161,52.60224929434218],[-120.28766162711278,52.6018974284879],[-120.28804903589675,52.601552095458665],[-120.28836990664901,52.60070424409471],[-120.28800635902908,52.59998082725588],[-120.28798305556217,52.59993302474136],[-120.28764698453602,52.59933745804486],[-120.28753917073267,52.599255710133356],[-120.2870825322524,52.59889654583577],[-120.28664582709727,52.59816560426084],[-120.28621512868465,52.597167333854486],[-120.28560039458634,52.5966587365284],[-120.28489870976559,52.59568989766781],[-120.28518372171074,52.59477732207061],[-120.28523380794394,52.593957231623264],[-120.28527344323537,52.59232590060283],[-120.28508107746484,52.59176603645005],[-120.28503526795306,52.59144219316689],[-120.28490306610719,52.591321013128685],[-120.28424266444958,52.590710641938514],[-120.28384358141886,52.590143447961076],[-120.28387294129156,52.58958996931806],[-120.28475058637416,52.589572863523856],[-120.28582000065488,52.58956404163436],[-120.28636547625334,52.58947890598346],[-120.2866187954849,52.589025801795486],[-120.28678377994282,52.58890120614825],[-120.28720855647552,52.588942276653455],[-120.28833175697625,52.58919750251018],[-120.28929097292632,52.58934741766586],[-120.29026971102559,52.58923964713806],[-120.290679471458,52.588725611311546],[-120.291474168349,52.58821751019168],[-120.29243128884893,52.58827170979075],[-120.2933372739807,52.58848700922194],[-120.29402002075697,52.588930318447765],[-120.29470358593043,52.58914483246861],[-120.2947285279938,52.589180345197526],[-120.29499723150379,52.58961349067306],[-120.29608732839723,52.59022909039526],[-120.29717314855912,52.59031990945882],[-120.29793234137033,52.59018952579662],[-120.2984777259292,52.590104896649876],[-120.29891330641993,52.59006493429875],[-120.29931732441517,52.59003915923734],[-120.29959008898851,52.58999628315891],[-120.30010145150997,52.58994428210682],[-120.30055026134954,52.589804876521676],[-120.300747216487,52.58966271150975],[-120.30073686093576,52.58962903833421],[-120.30077076085689,52.58903979681408],[-120.3007695990732,52.58882553782247],[-120.30075679709685,52.58847576700217],[-120.30085901537063,52.588153554037476],[-120.30142678766526,52.58778889664987],[-120.30171194572532,52.587652735985664],[-120.30208900692655,52.587383320803795],[-120.3026025376594,52.587203220880305],[-120.3032168785024,52.58682284226116],[-120.3035111323771,52.586506644937415],[-120.30366733536043,52.58633606325126],[-120.30382268952685,52.58606030000087],[-120.30401512823184,52.58584032309023],[-120.30436628852031,52.58543076211442],[-120.30429959469544,52.584928248654165],[-120.30429978464744,52.584815255908964],[-120.30428850510796,52.58467695562057],[-120.30427351068205,52.58456659375761],[-120.3041630074464,52.584170442070445],[-120.30412945559824,52.583976521614645],[-120.30400038469494,52.583720026123395],[-120.3040329297723,52.58325215740277],[-120.30418455673662,52.58300432259579],[-120.30451760226067,52.58284238702905],[-120.30530478013345,52.582723450593036],[-120.3058330896311,52.58265482387586],[-120.30664936600236,52.58254010773045],[-120.30724801541176,52.582277011067305],[-120.30768780616867,52.581981410989755],[-120.30796919466074,52.58187316414874],[-120.30849773161448,52.581467762802205],[-120.3097765326986,52.581444224614025],[-120.31041619267687,52.58143049294895],[-120.31083725854839,52.58127564683816],[-120.31140334870736,52.58103398695369],[-120.31164728134311,52.580760859351116],[-120.31207943112297,52.580299012588576],[-120.3126262264899,52.579755623136194],[-120.31273018823973,52.57941943733163],[-120.31307698565199,52.57904169283102],[-120.31329872725854,52.57848860972837],[-120.31326953190802,52.578149853260136],[-120.31313189856334,52.57751064181821],[-120.31337615215607,52.576452660487],[-120.31348705183507,52.57617584115891],[-120.3135969476557,52.575683080552935],[-120.31390737462759,52.57513208628333],[-120.31398119477963,52.57468759702881],[-120.31406620647171,52.574158763401016],[-120.31403719658273,52.57404209655844],[-120.3139102806488,52.573545644489656],[-120.31375868223752,52.57323520163944],[-120.31350716483331,52.57267194487124],[-120.31373788484888,52.57126866322243],[-120.31475473379348,52.571093421460866],[-120.31568591010556,52.57089319178728],[-120.31617554190025,52.570220495912615],[-120.31653728517738,52.56961746092361],[-120.31668167940417,52.569423233462615],[-120.31674803212275,52.56925837257008],[-120.31696971354206,52.569152249722926],[-120.31733916738627,52.56916184170411],[-120.31767556871984,52.56964434161711],[-120.31782368224499,52.57031666925166],[-120.31784269925366,52.57050875150381],[-120.31787222178522,52.570845274246395],[-120.31808284703048,52.57126991041866],[-120.31828688472363,52.57174425737302],[-120.31851601708203,52.57247675672848],[-120.31855308193798,52.57320382516013],[-120.31867153710135,52.57365263077897],[-120.31881540785776,52.573686077791436],[-120.31934809728762,52.57380707202595],[-120.31962066408467,52.5737647117348],[-120.31957230058586,52.57435323742253],[-120.32049878750212,52.57486000559646],[-120.32303394628718,52.57408349772511],[-120.32531505348886,52.57152922016092],[-120.32923343077124,52.56623739732703],[-120.33211840107384,52.561689569330404],[-120.33527797633094,52.5571904712021],[-120.33947144577748,52.55327568716938],[-120.34609181049589,52.54949668013877],[-120.35199266756908,52.54284497351565],[-120.35628880417984,52.53778944939265],[-120.35999830175929,52.53358184726598],[-120.3638037092447,52.52852593385892],[-120.36478567337697,52.52590020719078],[-120.37180021563225,52.527307965843875],[-120.37850152377682,52.53009158515012],[-120.38615311816321,52.531620273779815],[-120.39487992620843,52.531273620100414],[-120.40368955128322,52.5297227490059],[-120.41093702048683,52.52821819401343],[-120.41901281618219,52.52660453685909],[-120.42783535603148,52.52482429442012],[-120.4345998756147,52.52303211674853],[-120.43960224586988,52.519633019180766],[-120.44321981255194,52.51434225156286],[-120.4461933394087,52.51001678048087],[-120.45064592223564,52.50604124077885],[-120.4530867464421,52.50525486842897],[-120.46169727248787,52.50438189221177],[-120.47051382178944,52.50385987095548],[-120.47906312276093,52.50173027092587],[-120.48803516671875,52.50125818865206],[-120.49665931124417,52.50061100350435],[-120.50332019815959,52.498647200045],[-120.51001707414414,52.49616533492059],[-120.5159293230941,52.493331316347145],[-120.52129754611958,52.48918749956401],[-120.52706561478232,52.485613178928425],[-120.53250781184562,52.48249883246095],[-120.53327167497118,52.48044986592182],[-120.5334950404477,52.47776499958578],[-120.5353768119665,52.47646281495497],[-120.54170200804248,52.472205801332244],[-120.5427766201174,52.46735629073441],[-120.54187770829597,52.461975035706466],[-120.53613441118466,52.458295744394],[-120.52754607898707,52.457458603895276],[-120.5188408400265,52.45754001943054],[-120.51511449819499,52.45614932794732],[-120.51455951528025,52.455747608430805],[-120.51003079969429,52.4520747633427],[-120.50937946386038,52.45069200455595],[-120.50938412820256,52.44938242139472],[-120.5030702087633,52.44661475777636],[-120.50150155440947,52.44524023380682],[-120.49592527584745,52.44064517846062],[-120.49156692810641,52.43970430163598],[-120.48296863820273,52.43863155720918],[-120.48092203588446,52.437993477167545],[-120.47980500185379,52.436792974138406],[-120.48019524648976,52.435480307521],[-120.47567849384814,52.43140725379036],[-120.47170963392873,52.427331951096555],[-120.47034126118429,52.42464250265957],[-120.4622261201832,52.42271236871135],[-120.4600840349909,52.42167633222297],[-120.45879934053532,52.420408535404675],[-120.45808117154587,52.41875794300641],[-120.45839718158422,52.41378244020073],[-120.46133276064569,52.411176857439344],[-120.46736831840738,52.40720567013114],[-120.47402988615174,52.404101137622895],[-120.48254589535466,52.4031117131441],[-120.49142270509235,52.40218435792321],[-120.49923301440097,52.3987367000178],[-120.50476236276644,52.39568029333545],[-120.51152306388808,52.39199270394468],[-120.51660731192923,52.38847567485202],[-120.52002772870804,52.383294516251894],[-120.52315179755831,52.37799977656454],[-120.52730886039656,52.37281557050943],[-120.5285065373346,52.367455041932644],[-120.52844413552658,52.36213901428213],[-120.52953834223155,52.35689274714939],[-120.53104686721228,52.35558493668085],[-120.53180262038501,52.35427982351029],[-120.53115338216132,52.353816307689485],[-120.52427120559213,52.351441562501286],[-120.51779897187596,52.34735760998022],[-120.5164291253499,52.34386624030519],[-120.51689250132814,52.34335409584496],[-120.5230840117425,52.340474594427846],[-120.52972592440098,52.33822209252032],[-120.53686480137343,52.334486049979766],[-120.53659838352367,52.33391242667719],[-120.53263296559614,52.32972085436557],[-120.5261354912362,52.32666817084152],[-120.52191512563432,52.32681601825389],[-120.51305618343568,52.32923790889235],[-120.51080990660456,52.329279312801184],[-120.50865785339197,52.3289282198648],[-120.50225781256607,52.32581801412572],[-120.49614691962111,52.32287463767185],[-120.489735656703,52.32044226349477],[-120.48326476121545,52.31744443409222],[-120.47724359276064,52.31312843027184],[-120.47310082927547,52.30876850426535],[-120.46782656932216,52.306458183773685],[-120.46633032896602,52.30514129388821],[-120.46627115525382,52.303764925015045],[-120.46741160221964,52.3024560258792],[-120.47349044486494,52.29940345337974],[-120.48052478043921,52.29613024899721],[-120.48145859350672,52.294819247724796],[-120.48274842677068,52.28945691654906],[-120.48490427142234,52.28826376343206],[-120.4933946732719,52.28579299307771],[-120.49462173315243,52.28448743508623],[-120.48756668837842,52.28114461565187],[-120.48639611611235,52.28039334130506],[-120.48631306101414,52.2789686096014],[-120.48904039245704,52.2764088682157],[-120.48960483053115,52.2751021426885],[-120.4874846661302,52.273716393931224],[-120.48175679280978,52.27002983913544],[-120.47629469031712,52.26680488102182],[-120.47564523658232,52.265667349109336],[-120.47542298440389,52.26291745432371],[-120.47015171507968,52.25878758418367],[-120.46750100907329,52.2545455907276],[-120.46279906207839,52.25058027488927],[-120.45706894016814,52.24752350801294],[-120.45077412247608,52.24440106096325],[-120.44364819769619,52.24088289810559],[-120.43981730780908,52.236807625289934],[-120.43632443263323,52.232740584986544],[-120.43432552000216,52.22758706799799],[-120.43134173306335,52.22209022348583],[-120.42655131415043,52.21795004787049],[-120.42730781394458,52.21664547526894],[-120.42852802816783,52.215850215214516],[-120.42910139687437,52.21493883716195],[-120.42661021510854,52.21315983747487],[-120.42513452634944,52.212629761616306],[-120.42459256219664,52.212271277149],[-120.4202282842702,52.2111079146876],[-120.41536873929319,52.20979614581929],[-120.41487918833909,52.20971567696418],[-120.41188798421203,52.21021872864031],[-120.40863936134117,52.21043763827065],[-120.4058323006975,52.211221059321275],[-120.40406784703768,52.21133349367428],[-120.4011069380819,52.20989774494813],[-120.39823523520099,52.208228937619864],[-120.39580142119644,52.2096487741184],[-120.39244153879456,52.21129126871007],[-120.3888112481055,52.21116326138498],[-120.3864168740939,52.20967141884407],[-120.386058839136,52.20767291892942],[-120.38459936981545,52.205438090066934],[-120.38331593470052,52.20354694739656],[-120.38350816050949,52.20240688976219],[-120.38520848400564,52.2000693220711],[-120.38504798415623,52.198475173904804],[-120.38532815044766,52.197676224084596],[-120.38758595124885,52.19557155877917],[-120.39325810174508,52.19490701880058],[-120.3971663479404,52.19492136090468],[-120.39829076541412,52.194071157622325],[-120.40015790791699,52.19282005128961],[-120.40192863584419,52.192653465098424],[-120.40369913819964,52.192147763503286],[-120.40373004506468,52.1902053044745],[-120.40067554387664,52.188368464116266],[-120.40045842366843,52.188229159958745],[-120.3962341740296,52.185440749051565],[-120.3935234101942,52.17857620787623],[-120.39130744556614,52.176740992268286],[-120.39039096299545,52.17531026486077],[-120.39064381541073,52.17324694975084],[-120.39698932988712,52.16951548337836],[-120.39784828286277,52.168214335412536],[-120.40078134112981,52.16314498833823],[-120.4028998516931,52.15766827451923],[-120.40631534262032,52.15215098127752],[-120.40805790229201,52.14718791898022],[-120.40678941620934,52.14564123578848],[-120.40049031716735,52.142577680420985],[-120.39412461790644,52.14026179912007],[-120.38719626536309,52.13742156170624],[-120.37943075839935,52.135835170647894],[-120.37077374567738,52.13704523497755],[-120.36451105916123,52.14083495955352],[-120.35980209288724,52.14474934829066],[-120.35595067756495,52.148612205791615],[-120.35152669038003,52.15246827714677],[-120.34581184402501,52.155856000890886],[-120.33725491237908,52.155924225808796],[-120.32826908047772,52.15466934997582],[-120.32457996700705,52.15424149108595],[-120.32341911401663,52.09243357611721],[-120.34679940702999,52.09218751000898],[-120.34811458639417,52.0905367376625],[-120.34952531801402,52.088489650473015],[-120.34982972722699,52.08637924519465],[-120.34753444353437,52.083739653833405],[-120.34673226459347,52.081682880134686],[-120.34637598036474,52.08036732956121],[-120.34638661773299,52.07893651198794],[-120.34842431139903,52.07848823132864],[-120.3503095482774,52.07707184058046],[-120.35072052704093,52.073129805219324],[-120.35037339005946,52.07050597188932],[-120.34954731778065,52.06987093218405],[-120.35262816051817,52.06748680550777],[-120.35440303928068,52.06601263903269],[-120.35702813736864,52.06453628379509],[-120.35955131169841,52.06237717446976],[-120.3600637352287,52.058098130002264],[-120.35990109387625,52.054728028427796],[-120.35974511473884,52.051983094663235],[-120.35903748697771,52.049875312665264],[-120.35730093178016,52.04666756043522],[-120.35676040178177,52.04575465871179],[-120.35679484786642,52.04312420241821],[-120.35819663461524,52.041018082699274],[-120.35943090906017,52.03862196097289],[-120.36057887991187,52.034859965185625],[-120.36338540855483,52.03298523175311],[-120.3659924684116,52.03162990103515],[-120.36813268098295,52.02992095192346],[-120.3697382963267,52.02781626976083],[-120.3715123347809,52.025879544398045],[-120.37255298319128,52.02485514053275],[-120.37413610340134,52.02303389270675],[-120.35149189421563,52.00913620259688],[-120.31392976524887,52.02211458275351],[-120.31300912389248,52.02165337722631],[-120.30996611163921,52.021074725679085],[-120.30247420177643,52.0182472633814],[-120.2954338927041,52.015443918594116],[-120.2936646007253,52.0154269467454],[-120.28569650824778,52.016232460791464],[-120.28093532448547,52.018032374442534],[-120.27947193292488,52.01824865712342],[-120.27473653146458,52.01884982518196],[-120.27083865083189,52.01865107222902],[-120.26430085142017,52.016268469355346],[-120.25750809869626,52.013826021539316],[-120.2510514096021,52.011725641664],[-120.24377026792786,52.00933324851675],[-120.24304199834219,52.00853229792919],[-120.242503559746,52.00817680790828],[-120.23921359731277,52.00472678473348],[-120.23706804255107,52.00390758999832],[-120.23736706953669,51.999888744090335],[-120.23736944190429,51.999870862386395],[-120.23737181426995,51.99985298068216],[-120.23737418663367,51.99983509897754],[-120.23737655899545,51.999817217272664],[-120.23737893135525,51.99979933556746],[-120.23738130371311,51.99978145386187],[-120.23738367606902,51.99976357215601],[-120.237386048423,51.999745690449785],[-120.23738842077502,51.999727808743316],[-120.23739079312509,51.99970992703647],[-120.2373931654732,51.99969204532928],[-120.23739553781937,51.999674163621755],[-120.2373979101636,51.999656281913985],[-120.23740028250585,51.99963840020588],[-120.23740258011749,51.99962108177113],[-120.23740502718455,51.99960263678862],[-120.23740739952098,51.99958475507946],[-120.23740977185547,51.999566873370085],[-120.237412144188,51.999548991660205],[-120.23741451651857,51.9995311099502],[-120.23741688884719,51.9995132282398],[-120.23741926117387,51.999495346529024],[-120.2374070939987,51.99947673540393],[-120.23740946632742,51.99945885369283],[-120.23741183865417,51.99944097198145],[-120.23741435924923,51.99942197266273],[-120.23740219209662,51.99940336153592],[-120.23740456442336,51.99938547982382],[-120.23740708501839,51.999366480504335],[-120.23739491788442,51.99934786937591],[-120.23739729021112,51.99932998766307],[-120.2373997360779,51.99931155161681],[-120.23738697588043,51.99929741091505],[-120.23738949647803,51.999278411594545],[-120.23737740410459,51.99925923718882],[-120.23737977643367,51.999241355475014],[-120.23736760934634,51.999222744341694],[-120.2373695368655,51.999208215448895],[-120.23735751806272,51.99918848670684],[-120.23735929731292,51.99917507542101],[-120.23734720379534,51.99915590995127],[-120.23734957613118,51.99913802823648],[-120.23733755735682,51.999118299491094],[-120.23734000442317,51.99909985450191],[-120.23732783739241,51.99908124336204],[-120.23731463247105,51.999070455471205],[-120.23731715308708,51.9990514561485],[-120.23730505962239,51.99903229067236],[-120.23730743196877,51.999014408956604],[-120.23729541324765,51.99899468020463],[-120.23728272790612,51.99897997621341],[-120.23728510025884,51.998962094497294],[-120.23727308156228,51.9989423657422],[-120.23727500910057,51.99892783684748],[-120.23726284214568,51.99890922569805],[-120.2372507487444,51.99889006021384],[-120.23725267628784,51.99887553131887],[-120.23724058408655,51.99885635689215],[-120.23724295644988,51.99883847517497],[-120.23723093780654,51.99881874641338],[-120.23721891917408,51.99879901765019],[-120.23722077199452,51.998785052028765],[-120.2372080120095,51.998770911300795],[-120.23719599340066,51.99875118253439],[-120.23719844050636,51.99873273754238],[-120.23718627363871,51.99871412638173],[-120.23718879429012,51.99869512705604],[-120.2371761826157,51.99867986871604],[-120.23717855499584,51.998661986997405],[-120.23716646170035,51.99864282150026],[-120.23716824098712,51.998629410211066],[-120.23715622243537,51.998609681438154],[-120.23715866954996,51.99859123644474],[-120.23714650273887,51.998572625277674],[-120.23714843030304,51.99855809638045],[-120.23713626350559,51.99853948521176],[-120.23713878416872,51.99852048588428],[-120.2371266173859,51.998501874713924],[-120.23712906332076,51.998483438660244],[-120.23713143570956,51.998465556939614],[-120.23711926894525,51.998446945767604],[-120.23712178961043,51.998427946439094],[-120.23710910449266,51.99841324242156],[-120.23711147688583,51.998395360700194],[-120.23711384927704,51.998377478978554],[-120.2371018308195,51.998357750195694],[-120.23710420321261,51.998339868473685],[-120.23709159167075,51.99832461011971],[-120.23709396406629,51.9983067283974],[-120.23709633645986,51.99828884667465],[-120.23708424330421,51.9982696811628],[-120.23708602260108,51.99825626987056],[-120.23707385591464,51.998237658690414],[-120.23707637658754,51.998218659359395],[-120.237078823714,51.99820021436146],[-120.23706665704631,51.99818160317962],[-120.2370690294443,51.998163721455654],[-120.23707155011499,51.99814472212355],[-120.23705938346595,51.998126110940035],[-120.23706190413868,51.99810711160756],[-120.23704973750426,51.9980885004224],[-120.23705151680433,51.99807508912866],[-120.23705396274704,51.99805665306991],[-120.23704179613011,51.99803804188311],[-120.23704416853049,51.998020160157395],[-120.23704668920374,51.99800116082349],[-120.23703452260544,51.99798254963517],[-120.23703696973632,51.997964104634356],[-120.23703934213465,51.997946222907586],[-120.23702717555484,51.9979276117175],[-120.23702969623015,51.99790861238248],[-120.23703162380392,51.99789408347896],[-120.23701945724196,51.997875472287184],[-120.23702123654266,51.997862060991494],[-120.23702360894185,51.997844179263474],[-120.23701151594179,51.99782501373657],[-120.23701388834297,51.99780713200818],[-120.23701626074221,51.99778925027951],[-120.23700424249128,51.997769521476435],[-120.23700661489244,51.99775163974735],[-120.23700906202217,51.99773319474353],[-120.23699689551485,51.99771458354687],[-120.23699867481591,51.99770117224959],[-120.23700104721564,51.99768329051962],[-120.23698902900084,51.997663561713146],[-120.23699140140248,51.9976456799828],[-120.23699392207708,51.99762668064389],[-120.23698175560598,51.99760806944392],[-120.23698412800756,51.99759018771285],[-120.23698650040723,51.99757230598137],[-120.23698894634921,51.997553869916025],[-120.23697677990059,51.997535258714315],[-120.23697915230026,51.99751737698223],[-120.23698167297277,51.99749837764153],[-120.23696891344255,51.99748423687141],[-120.23697136057326,51.99746579186407],[-120.23697373297136,51.997447910131015],[-120.23696156655886,51.997429298926015],[-120.23696393895901,51.99741141719259],[-120.23696631135721,51.99739353545893],[-120.23696883202814,51.997374536116446],[-120.23695666563826,51.99735592490971],[-120.23695918631122,51.997336925566906],[-120.23696155870732,51.99731904383208],[-120.23696393110146,51.99730116209693],[-120.23695176473416,51.99728255088866],[-120.2369542106746,51.997264114819345],[-120.23695658306875,51.99724623308352],[-120.23694382362059,51.997232092307506],[-120.23694619601727,51.99721421057144],[-120.23694871668663,51.99719521122649],[-120.23695108907928,51.99717732948975],[-120.23695346147,51.997159447752644],[-120.23694136987717,51.997140273266226],[-120.23694374226986,51.99712239152876],[-120.23694611466061,51.997104509790965],[-120.2369484870494,51.99708662805285],[-120.23693632074865,51.997068016839485],[-120.23693884141386,51.99704901749236],[-120.23694121380261,51.99703113575348],[-120.23694358618941,51.99701325401439],[-120.23693156818564,51.996993525190526],[-120.23693394057436,51.99697564345104],[-120.2369363129611,51.99695776171122],[-120.23693868534593,51.99693987997106],[-120.23694105772881,51.996921998230604],[-120.23692837192469,51.996907303114945],[-120.23693067076611,51.996889975708136],[-120.23693311669342,51.996871539633034],[-120.23693548907485,51.996853657891634],[-120.23693786145434,51.996835776149915],[-120.23692569522824,51.99681716493134],[-120.23692806760975,51.996799283189226],[-120.23693043998934,51.99678140144678],[-120.2369329606405,51.99676240209513],[-120.23693533301605,51.99674452035205],[-120.23693770538965,51.99672663860865],[-120.23692561392397,51.996707464113406],[-120.23692798629956,51.99668958236958],[-120.23693035867319,51.99667170062545],[-120.23693273104485,51.99665381888109],[-120.23693510341458,51.99663593713626],[-120.23692293724551,51.99661732591426],[-120.23692530961728,51.99659944416912],[-120.2369276819871,51.996581562423685],[-120.2369302026279,51.99656256306871],[-120.23693257499369,51.99654468132264],[-120.23693494735754,51.996526799576195],[-120.23692278121904,51.99650818835238],[-120.23692515358489,51.996490306605544],[-120.23692767422152,51.996471307249266],[-120.23693004658337,51.99645342550177],[-120.23693241894328,51.996435543754004],[-120.23693479130125,51.996417662005875],[-120.23693657056846,51.996404250694575],[-120.236938942923,51.99638636894586],[-120.23692677682205,51.99636775772024],[-120.23692914917862,51.99634987597119],[-120.23693152153326,51.99633199422178],[-120.23693389388595,51.99631411247213],[-120.23693626623667,51.996296230722166],[-120.23693863858547,51.99627834897178],[-120.23694101093233,51.996260467221134],[-120.23694338327722,51.99624258547011],[-120.23694575562016,51.99622470371881],[-120.23694820150371,51.99620626763289],[-120.23695050030021,51.99618894021521],[-120.23695294617971,51.9961705041286],[-120.23695531851482,51.99615262237602],[-120.23695761730565,51.99613529495737],[-120.2369599896369,51.99611741320412],[-120.23694789714445,51.99609824764202],[-120.23695019593538,51.99608092022275],[-120.23695256826672,51.99606303846879],[-120.23695553367814,51.99604068627593],[-120.2369579060051,51.99602280452123],[-120.2369602783301,51.99600492276624],[-120.23697718898019,51.99598777048329],[-120.23697956129537,51.99596988872735],[-120.23698193360859,51.995952006971144],[-120.23698430591988,51.995934125214525],[-120.2369866782292,51.995916243457565],[-120.23698905053658,51.995898361700384],[-120.23699142284201,51.995880479942834],[-120.23699364687657,51.99586371579478],[-120.23699601917824,51.99584583403659],[-120.23699839147795,51.99582795227815],[-120.2370007637757,51.995810070519255],[-120.2370029878031,51.99579330637006],[-120.23700536009704,51.99577542461062],[-120.2370077323891,51.995757542850846],[-120.23702464292438,51.9957403905573],[-120.23702701520662,51.99572250879657],[-120.23702938748686,51.995704627035536],[-120.23703168503842,51.99568730854958],[-120.23703405731484,51.995669426787906],[-120.23705081953884,51.99565339209932],[-120.23705319180554,51.995635510336726],[-120.23705556407032,51.99561762857377],[-120.23705793633313,51.995599746810605],[-120.23706023505393,51.99558241938166],[-120.23707714550052,51.99556526707774],[-120.23707951775164,51.99554738531326],[-120.23708174173527,51.99553062115876],[-120.23708470704409,51.99550826895227],[-120.23710146918738,51.99549223425407],[-120.23710384142451,51.99547435248794],[-120.23710562060108,51.99546094116315],[-120.23712245625747,51.99544435212647],[-120.23712468021931,51.995427587969616],[-120.23712705244337,51.99540970620197],[-120.23714396279658,51.99539255388577],[-120.23714685452546,51.99537075600985],[-120.23714922673734,51.99535287424097],[-120.23716598879703,51.99533683953118],[-120.23716836099919,51.99531895776132],[-120.23717058493693,51.99530219360183],[-120.23718749523121,51.99528504127753],[-120.23718979269776,51.99526772278223],[-120.23719157183939,51.9952543114537],[-120.23720892689059,51.99523380629344],[-120.23721129906949,51.9952159245211],[-120.237213597709,51.99519859708344],[-120.2372305079461,51.99518144475126],[-120.23723273185288,51.995164680588566],[-120.23724949380937,51.99514864586411],[-120.23725245900607,51.99512629364596],[-120.23725483116124,51.995108411871044],[-120.23727166662447,51.99509182280757],[-120.23727329747464,51.995079529086716],[-120.23729020764195,51.995062376744116],[-120.23729250624194,51.995045049302504],[-120.23729487837625,51.99502716752557],[-120.23731223328822,51.99500666234561],[-120.23731460541234,51.99498878056771],[-120.23733136727093,51.99497274582886],[-120.23733373938532,51.994954864049994],[-120.23733603677627,51.99493754554685],[-120.23735279860725,51.99492151080419],[-120.23735457768453,51.99490809946915],[-120.23737200724189,51.99488703100206],[-120.23737437933494,51.99486914922101],[-120.237376751426,51.99485126743966],[-120.23739351320879,51.99483523268984],[-120.23739573703513,51.99481846851901],[-120.23739810911466,51.994800586736446],[-120.2374155374219,51.994779527201636],[-120.2374179094912,51.994761645418116],[-120.2374201333044,51.994744881245715],[-120.2374370432839,51.99472772887657],[-120.23743874879354,51.99471487187333],[-120.23745565875406,51.99469771950095],[-120.2374580308024,51.99467983771535],[-120.23746084760732,51.994658603094365],[-120.23747760928494,51.99464256832973],[-120.23747998132127,51.99462468654273],[-120.23748235335567,51.994606804755456],[-120.23749918853822,51.99459021565147],[-120.23750141231137,51.994573451475],[-120.23750378433418,51.9945555696865],[-120.23750615635501,51.99453768789761],[-120.23752358569072,51.99451661940089],[-120.23752595770134,51.994498737611046],[-120.237527736708,51.994485326268375],[-120.23754449829428,51.99446929149154],[-120.23754687029373,51.99445140970052],[-120.2375490940414,51.994434645521146],[-120.23755146603705,51.994416763729525],[-120.23755383803076,51.99439888193756],[-120.2375707478232,51.99438172954364],[-120.23757304508963,51.99436441102724],[-120.23757586181802,51.99434317639773],[-120.23757823379768,51.99432529460413],[-120.23759514355196,51.994308142205576],[-120.2375975155218,51.99429026041101],[-120.23759981395872,51.994272932951866],[-120.23760218592473,51.99425505115664],[-120.23761909564226,51.99423789875354],[-120.23762131935123,51.99422113456969],[-120.23762369130559,51.99420325277323],[-120.23762650799885,51.99418201813962],[-120.23764341767846,51.994164865731825],[-120.23764519663527,51.994151454383534],[-120.23764756857604,51.99413357258551],[-120.2376498657988,51.99411625406386],[-120.23765223773573,51.99409837226522],[-120.23766899912718,51.994082337464974],[-120.23767137105438,51.99406445566538],[-120.23767374297965,51.99404657386549],[-120.23769057905861,51.99402997578461],[-120.23769354395267,51.99400762353365],[-120.23769591586573,51.99398974173242],[-120.23769828777685,51.99397185993087],[-120.23770051144176,51.99395509574168],[-120.23771742100405,51.993937943319644],[-120.23771964465985,51.993921179129565],[-120.23772201655748,51.993903297326526],[-120.23772438845316,51.99388541552313],[-120.2377267603469,51.99386753371938],[-120.23774359515046,51.993850944569076],[-120.23774596703444,51.99383306276447],[-120.23774878364412,51.99381182812097],[-120.23775115552382,51.993793946315655],[-120.23775352740158,51.993776064509966],[-120.23777043687345,51.99375891207749],[-120.23777273521351,51.99374158460691],[-120.23777510707957,51.99372370280002],[-120.23777747894364,51.993705820992794],[-120.23777985080581,51.993687939185165],[-120.23779661199224,51.993671904360646],[-120.2377989838447,51.99365402255211],[-120.23780135569518,51.99363614074326],[-120.23780357930325,51.99361937654717],[-120.23780654411134,51.99359702428533],[-120.23780832299472,51.99358361292798],[-120.23782523237026,51.99356646048465],[-120.2378276042052,51.99354857867396],[-120.2378299013255,51.99353126013993],[-120.2378322731566,51.99351337832861],[-120.23783464498577,51.99349549651696],[-120.23783686857384,51.993478732318195],[-120.23783924039921,51.99346085050588],[-120.23784161222264,51.99344296869324],[-120.23784398404412,51.99342508688026],[-120.23786089334406,51.993407934429364],[-120.23786326515572,51.9933900526155],[-120.23786556343934,51.993372725137526],[-120.23786793524718,51.99335484332299],[-120.23787090000421,51.993332491054375],[-120.23787327180764,51.99331460923918],[-120.23787564360916,51.99329672742351],[-120.23787801540868,51.99327884560764],[-120.23788038720629,51.9932609637914],[-120.23788275900192,51.99324308197485],[-120.23789951997921,51.993227047129146],[-120.23790189176516,51.9932091653117],[-120.23790426354914,51.99319128349382],[-120.23790663533119,51.99317340167574],[-120.23790900711128,51.993155519857275],[-120.23791123065335,51.993138755652204],[-120.23791360242967,51.99312087383312],[-120.23791597420406,51.9931029920137],[-120.23791834597648,51.99308511019401],[-120.23792071774697,51.99306722837395],[-120.23792308951548,51.99304934655361],[-120.23792546128207,51.9930314647329],[-120.23792783304671,51.99301358291188],[-120.23793020480939,51.992995701090514],[-120.2379325765701,51.99297781926882],[-120.2379205592321,51.992958090479725],[-120.23792278275963,51.99294132627155],[-120.23792530275544,51.99292232683528],[-120.2379276745142,51.99290444501259],[-120.237930046271,51.99288656318955],[-120.2379180289593,51.99286683439851],[-120.23792040071801,51.992848952575144],[-120.23792277247478,51.99283107075144],[-120.23792514422959,51.99281318892736],[-120.23792751598248,51.99279530710303],[-120.23791542398682,51.99277614158765],[-120.23791720280312,51.99276273021917],[-120.23791957455651,51.99274484839415],[-120.2379074090539,51.99272623721376],[-120.23790992904397,51.992707237774276],[-120.23791237550752,51.99268879267112],[-120.23790021002365,51.992670181489025],[-120.23790258177897,51.992652299662964],[-120.23790510176687,51.99263330022238],[-120.23789293630162,51.99261468903867],[-120.23789545629155,51.992595689597835],[-120.23789782804477,51.99257780777058],[-120.23788506965901,51.99256366704202],[-120.23788744141476,51.99254578521463],[-120.23788988669287,51.99252734905028],[-120.23787772126373,51.992508737863204],[-120.23788009301951,51.99249085603516],[-120.23788261300787,51.99247185659244],[-120.23787044759733,51.99245324540378],[-120.23787289406334,51.99243480029733],[-120.23787526581707,51.992416918468194],[-120.23786310042502,51.99239830727782],[-120.23786547218077,51.99238042544833],[-120.23786799216914,51.99236142600417],[-120.23785538209127,51.99234616765527],[-120.23785775384736,51.99232828582509],[-120.23786012560151,51.9923104039947],[-120.23786249735369,51.992292522163844],[-120.23786486910393,51.992274640332745],[-120.2378527037561,51.992256029139035],[-120.23785448257048,51.99224261776541],[-120.23785692784553,51.9922241815969],[-120.23785929959435,51.992206299764845],[-120.2378616713412,51.99218841793248],[-120.23784950601882,51.99216980673704],[-120.2378518777677,51.99215192490431],[-120.23785424951463,51.992134043071204],[-120.23785662125962,51.99211616123788],[-120.23785899300269,51.99209827940422],[-120.2378613647438,51.99208039757009],[-120.23786373648294,51.9920625157358],[-120.23786610822012,51.99204463390104],[-120.2378684799554,51.992026752066025],[-120.2378853887026,51.992009599590844],[-120.23788768690457,51.99199227209183],[-120.23789005862811,51.991974390255564],[-120.2378924303497,51.99195650841901],[-120.23789480206932,51.99193862658201],[-120.23789776671615,51.99191627428547],[-120.23789999019925,51.99189951006269],[-120.23791689888465,51.99188235758097],[-120.23791912235865,51.99186559335734],[-120.23792149406238,51.99184771151844],[-120.2379232728389,51.99183430013913],[-120.2379401814898,51.991817147653045],[-120.23794247847395,51.99179982909096],[-120.2379447019339,51.991783064865615],[-120.23794707362264,51.99176518302499],[-120.23796457515722,51.99174356007394],[-120.23796687331362,51.991726232569384],[-120.23796924499015,51.99170835072746],[-120.23798615357403,51.99169119823273],[-120.23798837701162,51.99167443400499],[-120.2379906004475,51.991657669776934],[-120.23800750900325,51.99164051727843],[-120.23801047357192,51.99161816497315],[-120.23802671448615,51.99160604621035],[-120.23802893790379,51.99158928198063],[-120.23803130954735,51.99157140013521],[-120.23804814453293,51.99155480196667],[-120.23805051616672,51.991536920120346],[-120.23805288779859,51.991519038273665],[-120.23807024095527,51.99149853291754],[-120.23807246435064,51.99148176868534],[-120.23808937280587,51.991464616172195],[-120.23809166971208,51.991447297601816],[-120.23809389309659,51.99143053336842],[-120.23811020862307,51.99141785131375],[-120.23811309960426,51.99139605333893],[-120.23813000801017,51.99137890081849],[-120.2381323796008,51.99136101896773],[-120.2381346029652,51.99134425473243],[-120.2381513631188,51.99132821982375],[-120.23815373469787,51.991310337971875],[-120.23815603157038,51.99129301939795],[-120.2381733845884,51.99127251402225],[-120.23817575615539,51.99125463216895],[-120.23817812772045,51.99123675031542],[-120.23819496252064,51.99122015212059],[-120.2381967411873,51.99120674072975],[-120.23819911274113,51.991188858874956],[-120.23830173679931,51.99096674699033],[-120.27878046741992,51.991049734228575],[-120.27156432962266,51.964541696200286],[-120.27192496348634,51.9645793787131],[-120.2721557243423,51.96460383756493],[-120.27238641241901,51.96462885032525],[-120.27261768975598,51.964649391879156],[-120.27284837833908,51.96467440371204],[-120.27307906718707,51.9646994150817],[-120.27331034522516,51.96471995524159],[-120.27354103457954,51.96474496568379],[-120.27377231307719,51.96476550491408],[-120.27400359179293,51.96478604367895],[-120.27423428189518,51.96481105272932],[-120.27446511946432,51.96483494362849],[-120.2746818703074,51.964854756271215],[-120.27491314992567,51.96487529320572],[-120.27514384102255,51.96490030042998],[-120.27537512110037,51.964920836434786],[-120.27560588687882,51.964945279416106],[-120.2758365787439,51.96497028524951],[-120.27606785951971,51.96499081986015],[-120.27629855189106,51.96501582476613],[-120.2765292445272,51.96504082920877],[-120.27676052600394,51.96506136242549],[-120.27699121914634,51.965086365940664],[-120.2772219125535,51.965111368992616],[-120.27745319473114,51.96513190081525],[-120.27768388864456,51.96515690293978],[-120.27789961274715,51.96518453335596],[-120.27813089563253,51.965205063814665],[-120.27836159032223,51.96523006457843],[-120.27859184398385,51.965258417957465],[-120.27882253922056,51.96528341779553],[-120.27905323472203,51.9653084171704],[-120.27928334216767,51.96533788685666],[-120.27951403822196,51.96536288530614],[-120.27974414626699,51.96539235406929],[-120.27995979872213,51.965420543933945],[-120.28018990737317,51.965450011803775],[-120.28042001633551,51.96547947921254],[-120.28064953742641,51.96551341694129],[-120.28088038223383,51.965537294951446],[-120.28109537507476,51.96557050784241],[-120.2813249712737,51.965603880902144],[-120.28155449372487,51.965637816821435],[-120.28178460460205,51.96566728149552],[-120.28201412774523,51.96570121649588],[-120.2822286812415,51.965737780354296],[-120.2824587931026,51.96576724367719],[-120.28268846429187,51.96580005963176],[-120.28291740088419,51.965838463615924],[-120.2831318088312,51.96587614348317],[-120.28336140702486,51.96590952141077],[-120.28359093267234,51.96594345325769],[-120.28381987081364,51.9659818554409],[-120.28403442720739,51.96601841592219],[-120.28426336613353,51.96605681722025],[-120.28449237952556,51.966094654740814],[-120.28472131925598,51.9661330551249],[-120.2849358771508,51.96616961392001],[-120.28516481766601,51.96620801341887],[-120.28539390551124,51.966245294760185],[-120.28560772991777,51.96628744080143],[-120.28583674451431,51.96632528457945],[-120.28606568664154,51.96636368228015],[-120.28627951227898,51.96640582706819],[-120.2865080145241,51.96644757699042],[-120.28673644434829,51.96648988083752],[-120.28695027125396,51.96653202437412],[-120.28717936233073,51.96656930214913],[-120.28740786629557,51.96661105027795],[-120.28762169444542,51.96665319256201],[-120.28785012525418,51.96669550313158],[-120.28806454168472,51.966733173776255],[-120.28829231308787,51.96678050865969],[-120.28852081922695,51.966822254569934],[-120.28873472349875,51.96686383145452],[-120.28896264315028,51.96691004730097],[-120.28917706159865,51.966947715864926],[-120.28940498215827,51.96699393083163],[-120.2896188869422,51.967035515007424],[-120.28984666161479,51.967082846800686],[-120.29007517082898,51.96712458961232],[-120.29028900407936,51.96716672691933],[-120.2905174413454,51.967209023231526],[-120.2907308350592,51.967254512832575],[-120.29095875887205,51.9673007247084],[-120.29118712351305,51.967343583009885],[-120.29140103171476,51.96738516385915],[-120.29162881015155,51.96743249210913],[-120.29184279318098,51.96747350880909],[-120.29207064652635,51.967520272856],[-120.29228389663233,51.96756687727158],[-120.29251182372674,51.96761308605752],[-120.29272580847454,51.96765410110861],[-120.2929535897566,51.967701426724204],[-120.29316691447295,51.96774747511199],[-120.29339484344881,51.96779368214111],[-120.29360817025704,51.96783972076513],[-120.29383654032968,51.96788257378695],[-120.2940493539679,51.96793252804417],[-120.29427728484787,51.967978733317395],[-120.29450506951265,51.96802605584753],[-120.29471781068486,51.96807657218801],[-120.2949312130337,51.96812205396274],[-120.29515848635641,51.96817328271052],[-120.29537232967034,51.96821541052968],[-120.29559982341925,51.968264966305135],[-120.29581249428118,51.96831603499555],[-120.29602523838548,51.968366548905465],[-120.29625317363181,51.96841275024619],[-120.29646591989258,51.968463254395026],[-120.2966932695355,51.968513925709935],[-120.29690667608901,51.968559403802615],[-120.29711942265048,51.96860991567824],[-120.29734604067916,51.968666174262594],[-120.29755893606712,51.968715558665565],[-120.2977717580426,51.968765506000175],[-120.29799852433479,51.968820645577615],[-120.29821127343801,51.96887115542251],[-120.29842351051681,51.968925572402],[-120.29863567541426,51.9689805433739],[-120.29886303028042,51.96903121037787],[-120.29907468261298,51.96909009700855],[-120.29928684796073,51.96914507571335],[-120.299498575293,51.969203398229645],[-120.29971022932125,51.96926228368215],[-120.29992195661745,51.96932061435504],[-120.30013302555203,51.96938396988801],[-120.30034402240992,51.96944787941762],[-120.30055523912337,51.96951011645242],[-120.30075126583414,51.969576665861105],[-120.30096226453229,51.96964057424612],[-120.30117289693021,51.96970728100476],[-120.30138345612306,51.969774550703605],[-120.30157948646111,51.96984108974406],[-120.30179004692855,51.96990835869086],[-120.30200002316651,51.96998008917921],[-120.30219554200654,51.97005054364207],[-120.30240595793464,51.97011892916763],[-120.30260140539119,51.97018993732061],[-120.3028120429553,51.97025664104627],[-120.3030220213829,51.970328378589436],[-120.30321703133387,51.970402738840654],[-120.30341291964918,51.970470401381505],[-120.30362290126843,51.97054212887268],[-120.30381849790403,51.97061202615395],[-120.30402789502052,51.97068822377629],[-120.30422283448425,51.970763145630194],[-120.30441718880313,51.97084253803058],[-120.30461103067262,51.97092584658992],[-120.30480531378845,51.971005792712646],[-120.30499974288561,51.97108462972272],[-120.30519300237773,51.971172399225374],[-120.30538743292013,51.971251235568765],[-120.30558127963516,51.971334533521954],[-120.30577563897911,51.97141392358799],[-120.30597058469627,51.9714888424332],[-120.30616494543821,51.97156823183079],[-120.30636047814225,51.97163867911791],[-120.3065709082796,51.97170705693121],[-120.30678221862662,51.97176871907867],[-120.30697936353495,51.97182687035479],[-120.30719096664265,51.971886305241654],[-120.3074178348774,51.97194086276922],[-120.30763068391262,51.971990791724295],[-120.30784353343577,51.9720407202833],[-120.30807076861737,51.97209248667808],[-120.30828413081294,51.972138506855174],[-120.30851253785467,51.972181330581],[-120.30874109169305,51.97222303612708],[-120.3089550417758,51.97226457521489],[-120.30918345013815,51.972307397603934],[-120.30941302959546,51.97234127773565],[-120.30964202411009,51.97237962831028],[-120.30987175062393,51.97241238979894],[-120.31010191642343,51.972441797649715],[-120.31033208253373,51.972471205039255],[-120.31054771724226,51.97249989177464],[-120.31077861544196,51.97252370963656],[-120.31100936760375,51.97254864476172],[-120.31124012002967,51.972573579423454],[-120.3114714578348,51.97259404271128],[-120.3117027958573,51.972614505533436],[-120.31193413409713,51.9726349678901],[-120.31216664264318,51.97264648795327],[-120.31239856629152,51.972662478461565],[-120.31263049011014,51.97267846850211],[-120.31286358404586,51.97268551624011],[-120.3130960931075,51.97269703442437],[-120.31332918721792,51.97270408121897],[-120.31356228140373,51.9727111275412],[-120.31379537566497,51.97271817339117],[-120.31402963970993,51.97271627692246],[-120.31426331890445,51.972718850901124],[-120.31449758293266,51.97271695347955],[-120.31473126215847,51.97271952650766],[-120.31496552616991,51.97271762813325],[-120.31518642777058,51.97270606781663],[-120.31542251832671,51.972690201328916],[-120.31564531990205,51.97266410960696],[-120.3158831652216,51.972634820436404],[-120.31610757399586,51.972596432752],[-120.3163322746824,51.97255580916078],[-120.3165572672458,51.972512949660825],[-120.31678174728462,51.97247400626119],[-120.31700637422736,51.97243393574539],[-120.3172296119343,51.97240448774478],[-120.31746752724854,51.9723746408955],[-120.31769091045818,51.97234407426271],[-120.31792867901424,51.972315344194065],[-120.31815140353342,51.972289810949306],[-120.31837405532562,51.97226483167022],[-120.31861196909293,51.97223498245061],[-120.31883527832339,51.972204967989754],[-120.31907246103617,51.97218070650348],[-120.31929525781905,51.97215460770143],[-120.31951863861772,51.97212403751395],[-120.31975647721521,51.97209474926403],[-120.31998029555915,51.972060824962476],[-120.32020425960722,51.972025782485154],[-120.3204281508557,51.97199129396972],[-120.32065284439106,51.97195066191858],[-120.3208773178705,51.97191171050858],[-120.32108740646908,51.971870913114834],[-120.32131253683956,51.97182692654918],[-120.32153766675539,51.97178293954134],[-120.3217627226266,51.971739515433015],[-120.3219885092465,51.97169049323134],[-120.32219983615596,51.9716401974627],[-120.32242547460692,51.971592301083454],[-120.3226373120799,51.971538087936786],[-120.32284922143323,51.97148331999689],[-120.3230755882431,51.9714298336198],[-120.32328800800273,51.97137114829309],[-120.3234998421591,51.97131694248971],[-120.32371240675688,51.97125713862928],[-120.32392540746686,51.97119399008049],[-120.32413782493161,51.97113530317254],[-120.3243358551348,51.97107478861366],[-120.3245490011548,51.97101051221278],[-120.3247619994461,51.970947362101434],[-120.32497514421381,51.9708830849039],[-120.32517302618604,51.97082368663727],[-120.3253861697421,51.97075940867131],[-120.32559931150192,51.97069513924885],[-120.32581245380001,51.97063086048591],[-120.32601091708037,51.970566989773644],[-120.32622464171683,51.97049823924725],[-120.32643712505156,51.970438993655165],[-120.32663631595284,51.97036953310922],[-120.32684989275707,51.97030189915865],[-120.32704849888881,51.97023690888864],[-120.32724783492395,51.97016632057993],[-120.32746199205587,51.97009422342256],[-120.32766059749446,51.97002922314214],[-120.32787438923013,51.96995991511439],[-120.32807357564911,51.969890452050976],[-120.3282733459529,51.9698165086898],[-120.32847245874683,51.969747599332],[-120.32868675762079,51.96967438211628],[-120.3288860884273,51.969603790934435],[-120.32908578254586,51.9695304094914],[-120.32928569412512,51.96945535553803],[-120.32948553269586,51.96938085563822],[-120.32967091310405,51.969305074259054],[-120.3298711877127,51.96922722041746],[-120.33007109654748,51.96915216507946],[-120.33027093238428,51.96907766379572],[-120.33047142412704,51.96899812779023],[-120.33065658194722,51.9689240259015],[-120.33085648803757,51.968848969178964],[-120.33105690419401,51.96876999548627],[-120.33124286230277,51.968689740508594],[-120.33144327702627,51.96861076613184],[-120.33164369102315,51.96853179140057],[-120.33182906289812,51.9684560154298],[-120.33203005843214,51.96837256898439],[-120.33221543012341,51.968296783438475],[-120.33241584127607,51.96821780734042],[-120.33261683458713,51.968134359852485],[-120.33280278594319,51.968054111250865],[-120.33300261207147,51.967979605150795],[-120.33318914604507,51.967894875933574],[-120.33338969928398,51.967814780351496],[-120.33357557558746,51.96773508488749],[-120.33376145121085,51.967655389117596],[-120.33396251160933,51.967571384828304],[-120.33414838582645,51.96749168842191],[-120.33434886319122,51.96741214554917],[-120.33453546436886,51.9673268596972],[-120.3347358668538,51.967247879490785],[-120.33492173827594,51.96716818181237],[-120.33512221157481,51.967088646511705],[-120.33530808161086,51.96700894819789],[-120.33550862687576,51.96692884886],[-120.3356945689247,51.96684858655781],[-120.3358955496385,51.966765133242035],[-120.33608141687957,51.96668543365629],[-120.33628188583992,51.966605896301225],[-120.33646833416307,51.96652172501921],[-120.33666880282864,51.96644217803644],[-120.33685481288393,51.966361359413],[-120.33705506112175,51.96628349286591],[-120.337241069783,51.96620267360682],[-120.33744138881409,51.966124251964274],[-120.33762681373595,51.96604790313811],[-120.33782786042727,51.96596388303345],[-120.33802766837434,51.96588936806925],[-120.3382141102582,51.965805193905226],[-120.33841457127468,51.96572565277256],[-120.33859984723522,51.96565042011996],[-120.33880089021577,51.96556639828569],[-120.33900069467569,51.96549188160558],[-120.33918655080437,51.96541217691442],[-120.33938686269896,51.96533375183005],[-120.33957286297974,51.96525292873369],[-120.3397727380277,51.965177847335845],[-120.33997297561064,51.96509997562923],[-120.34015897380608,51.96501915156862],[-120.34035870009549,51.96494519585096],[-120.3405597364298,51.96486117089114],[-120.3407451505113,51.96478481695444],[-120.34094538454984,51.96470694352843],[-120.34114590885397,51.9646268342026],[-120.34133110210048,51.96455216043653],[-120.34153155282479,51.96447260484315],[-120.34173192949774,51.96439361225312],[-120.34191777594475,51.96431390307293],[-120.34211822333793,51.964234355382935],[-120.34230406839892,51.96415464556769],[-120.34250393370172,51.964079559352314],[-120.34270430680404,51.964000565041346],[-120.34289014979552,51.96392085426293],[-120.3430900118523,51.96384577595619],[-120.34329096454802,51.96376230950188],[-120.34347629703451,51.96368650550712],[-120.34367608487675,51.96361198058417],[-120.34387703537142,51.9635285130889],[-120.34406221926848,51.963453834854455],[-120.34426273207443,51.96337372000782],[-120.34446317202399,51.96329415922405],[-120.34464886338841,51.963215563333776],[-120.34484879245622,51.963139918564394],[-120.34504966525289,51.96305701234702],[-120.34523506378807,51.962980651053265],[-120.34543608165333,51.96289661742741],[-120.34562118808905,51.96282249106108],[-120.34582169512294,51.962742373452755],[-120.34602198279943,51.962663936632005],[-120.346207959374,51.962583102619234],[-120.34640839213439,51.96250353839106],[-120.34659407662029,51.9624249393064],[-120.34679458003573,51.962344819974305],[-120.34697989923441,51.96226901918314],[-120.34718083720608,51.962185545818656],[-120.34738126636107,51.962105979867616],[-120.34756709271502,51.96202626140144],[-120.34776686594722,51.96195172926556],[-120.34795334423742,51.96186698460736],[-120.34815369728445,51.961787980651636],[-120.34833901291263,51.961712168691676],[-120.3485400910035,51.961627575127025],[-120.34872576791098,51.961548972541095],[-120.34892626337567,51.96146884943209],[-120.34911273734427,51.9613841028586],[-120.34931308606866,51.96130509685008],[-120.34949897868611,51.96122481184275],[-120.34970005227584,51.96114021621432],[-120.34988587026851,51.96106049393495],[-120.35007168758123,51.96098077134975],[-120.35027217795641,51.96090064585495],[-120.35045850163647,51.96081701484604],[-120.35064504303324,51.960731702374744],[-120.35084545917465,51.960652130286505],[-120.35103141821371,51.96057128833332],[-120.35121839309215,51.96048262154523],[-120.3514043507159,51.96040177897715],[-120.35160527160035,51.96031829774762],[-120.351791227805,51.96023745454244],[-120.35197769093146,51.96015270323331],[-120.35216408131694,51.960068506040216],[-120.35235061616984,51.959983190747046],[-120.35255102575377,51.95990361563505],[-120.35273755914316,51.95981829970214],[-120.35292351111323,51.95973745463108],[-120.35311047856347,51.95964878470279],[-120.35329700976656,51.959563467843594],[-120.35349734253276,51.959484454421386],[-120.35368387227494,51.95939913692259],[-120.35387040128667,51.95931381911489],[-120.35405685641663,51.95922906436688],[-120.35424323883363,51.959144863736554],[-120.35442976566165,51.95905954500284],[-120.35463081968658,51.95897494059503],[-120.354816692565,51.95889464683032],[-120.35500379766223,51.95880485596315],[-120.35519017643492,51.95872065376721],[-120.35537611917034,51.95863980465352],[-120.35556249651762,51.95855560184208],[-120.35576296563735,51.95847546660693],[-120.35594999385935,51.958386237537646],[-120.35613651409817,51.9583009159795],[-120.35632230820667,51.95822118310465],[-120.35647563757425,51.95816628492406],[-120.36652532552333,51.95451244915503],[-120.36808017347906,51.95390763258144],[-120.36914423113271,51.953480066695604],[-120.36968868873981,51.953226676535415],[-120.3702053170776,51.95296236139669],[-120.37063250002413,51.95248553697595],[-120.37090595023713,51.95206698215632],[-120.37109867831045,51.95159441253884],[-120.37140053236003,51.95106925767198],[-120.37156868556266,51.95056060029738],[-120.37169246294158,51.95005595751995],[-120.3717381746926,51.94970272451831],[-120.37171241795463,51.949336986389206],[-120.37176732702594,51.948799717057454],[-120.37190100487389,51.948218506559556],[-120.37197201408561,51.947782702682815],[-120.37190609499062,51.947275503409436],[-120.37193284332604,51.94650399250924],[-120.37247895492301,51.94601106491587],[-120.37337760924554,51.94539143482043],[-120.37429646601791,51.94484140956766],[-120.37588778959795,51.94395087103873],[-120.3768904721415,51.94354330204738],[-120.37773721410046,51.94321132718841],[-120.3786260674599,51.94289265925767],[-120.3792811692369,51.942573224096066],[-120.37975122169082,51.942215463262855],[-120.38004356556634,51.94142321791863],[-120.3799574792461,51.94095835051727],[-120.37978670935073,51.940357151320605],[-120.37990601350789,51.93965992060143],[-120.38051811304189,51.938994138718776],[-120.38163045879725,51.93864140289239],[-120.3830867728182,51.938453989408515],[-120.38567303797079,51.93811657408536],[-120.38673820179848,51.93801571310693],[-120.38759632705005,51.93770728621289],[-120.38864596592506,51.93716018328717],[-120.38965753158283,51.936454846874156],[-120.39034820040405,51.93608478224069],[-120.39133795688365,51.93577490194644],[-120.39278668410687,51.93575854498194],[-120.39373215039267,51.935678769089975],[-120.39449692818383,51.93575383415224],[-120.39904708394849,51.93593616394043],[-120.39978888886674,51.93584921069426],[-120.4002925911248,51.93590923120845],[-120.4010909497594,51.93606406688431],[-120.40186503178401,51.93595336111241],[-120.40231180881652,51.93588798965741],[-120.40277303417574,51.935823879497654],[-120.40321980967029,51.93575849556298],[-120.40366945849594,51.93567076123248],[-120.40410487328091,51.935580072034405],[-120.40454251408363,51.935472058492444],[-120.40496620686346,51.935358863457445],[-120.40539061617059,51.93524007743689],[-120.40580222716501,51.935107167055236],[-120.4062279252526,51.934978316967324],[-120.40662630389987,51.93483463451695],[-120.40702539843002,51.9346853612422],[-120.40741111911265,51.93452643549553],[-120.40779712434501,51.934365272659576],[-120.40817018655505,51.93419110386219],[-120.40854338944516,51.93401581593971],[-120.4089027871505,51.93383422954429],[-120.40926261278503,51.93364928832946],[-120.40960798628417,51.933463083781206],[-120.4099674473849,51.933280930552364],[-120.41032798199625,51.93309039646096],[-120.41067341889405,51.93290362520276],[-120.41103265496832,51.93272314986223],[-120.41140705366105,51.932538354803796],[-120.41175305585423,51.932347108638986],[-120.41210027587408,51.93214635483054],[-120.41244749154818,51.93194560888102],[-120.41279470517344,51.93174485290393],[-120.41315578886568,51.931549838104125],[-120.41351514703587,51.93136823689419],[-120.41389966660692,51.9312182320843],[-120.41429640708057,51.93108681944654],[-120.41471902747816,51.93098141331221],[-120.41515372621168,51.93089571690321],[-120.4156010053675,51.93082582191006],[-120.41604656274738,51.93076933103133],[-120.41651979470936,51.930724876622165],[-120.416977358723,51.930688656699964],[-120.41746338732341,51.93065831999514],[-120.41793374846358,51.93063621780211],[-120.41840410912688,51.93061411368368],[-120.4188738957755,51.93059647925562],[-120.41934368204411,51.93057884290693],[-120.41979722808206,51.930573913080586],[-120.42026472015527,51.93057415944819],[-120.4207316388867,51.930578875539275],[-120.42119683782073,51.930597004615215],[-120.42166203714157,51.930615131807926],[-120.42214175643367,51.93063396324142],[-120.42260752969727,51.93064761497485],[-120.42307273014441,51.93066573645684],[-120.42353850403882,51.93067938441698],[-120.42400542425055,51.930684087207645],[-120.4244596870627,51.93067354943152],[-120.42492904221254,51.93065924398629],[-120.42538545280797,51.93063193387964],[-120.42585759914024,51.930595829829166],[-120.4263157268132,51.930555101074944],[-120.4267757149912,51.93049983761315],[-120.4272356309911,51.930445126793316],[-120.42769733473386,51.930376444663025],[-120.42815968060405,51.93030273452464],[-120.42859484768991,51.930213070051956],[-120.42903058433114,51.930118941199666],[-120.42946753610697,51.93001530391569],[-120.42987802266855,51.929890132142084],[-120.43027692135117,51.929741331983145],[-120.43066551818936,51.9295588512171],[-120.43101255681604,51.92935860322217],[-120.43134650361274,51.9291464699749],[-120.4316378910053,51.92892439550192],[-120.43185832438557,51.928685944153735],[-120.43202318306604,51.928425104727694],[-120.43213261082657,51.928140759524574],[-120.43222844747991,51.92784844726709],[-120.43233801434002,51.927562992744186],[-120.43247568794493,51.92728620972312],[-120.4326135028226,51.92700830854522],[-120.4327521740396,51.92672369958424],[-120.43291880816268,51.92644887988603],[-120.43311233052228,51.92619224719604],[-120.43334726138148,51.92595448821532],[-120.43366615157598,51.92574556009698],[-120.43405405579296,51.92556809343397],[-120.43448000615602,51.92543578385994],[-120.43491503962883,51.925346658509575],[-120.43536115866965,51.92528506627452],[-120.43582057895794,51.92523368358267],[-120.4362775696581,51.925201294933636],[-120.43674900565499,51.925170172185894],[-120.43721929780904,51.92514799096031],[-120.43768901794803,51.92513027954035],[-120.4381575947287,51.925121509666766],[-120.43862674276114,51.92510826614679],[-120.43909589050864,51.92509502071134],[-120.43955051995353,51.925081069434135],[-120.44001923865513,51.925071174034166],[-120.4404878143318,51.925062394658504],[-120.44095653261994,51.9250524954353],[-120.44142510790714,51.92504371223772],[-120.44187745164821,51.925047638753234],[-120.44234488458159,51.92504779530922],[-120.44281231751827,51.92504794996386],[-120.44327803757079,51.92506151799395],[-120.44374432882812,51.925070612375336],[-120.44421004941253,51.92508417662806],[-120.44467527024848,51.9251016562599],[-120.445139849909,51.92512416027525],[-120.44560493000425,51.92514274514143],[-120.44606893990435,51.92516971716996],[-120.4465474685471,51.925197390368474],[-120.44701033844733,51.9252333021435],[-120.44747263857461,51.92527368383192],[-120.44793436906951,51.925318535440155],[-120.44838051210856,51.9253710714459],[-120.44883996298033,51.92543380654299],[-120.44928340025622,51.92550757107234],[-120.44972576913383,51.92558972296186],[-120.45016336314164,51.92570932886059],[-120.45058444646371,51.925843872877905],[-120.4509882336661,51.92599951732111],[-120.45134490461925,51.92618100174049],[-120.45168506448982,51.9263774339159],[-120.45197967596505,51.926587409277666],[-120.45227265077608,51.92681024473274],[-120.45254961392554,51.92704411111026],[-120.45281149106903,51.927281746320176],[-120.45305792635283,51.92752594086506],[-120.45331938168367,51.92776692866451],[-120.45356575074032,51.92801168546268],[-120.45382657005707,51.928257707249365],[-120.45408860392241,51.92849422134622],[-120.45436487516467,51.928733672750454],[-120.4546574503393,51.92895984661084],[-120.45495095393605,51.92917875747722],[-120.45525841039665,51.92940284129427],[-120.45556565578664,51.92962860564214],[-120.45587361766476,51.929848770427036],[-120.45621268714523,51.93005413217116],[-120.45655325463174,51.9302477588631],[-120.45692514498064,51.93042489180954],[-120.45730024176554,51.93057687408383],[-120.45769256675884,51.93070831565779],[-120.45811592789353,51.93082550770361],[-120.45855551999794,51.93092998426688],[-120.45899603896147,51.93102719691419],[-120.45945342951451,51.93110665856489],[-120.4599118180743,51.931178292709426],[-120.46037120439897,51.93124209933736],[-120.46083187286747,51.93129584252723],[-120.46129325396838,51.93134399408872],[-120.46175513466423,51.931388226476656],[-120.46221865190093,51.931419604973634],[-120.462682738861,51.93144650977033],[-120.46314739540266,51.93146894086024],[-120.46361262138379,51.931486898236706],[-120.46407898557564,51.93149591005622],[-120.46454648769188,51.931495976305186],[-120.4650145586272,51.93149156881121],[-120.4654831982374,51.93148268756715],[-120.46595240637791,51.9314693325661],[-120.46640823100698,51.9314463314229],[-120.46687942866252,51.93141732116686],[-120.46733638941527,51.93138537263949],[-120.46779455705763,51.93134392407282],[-120.46825222697466,51.931306382082276],[-120.46871153092432,51.93125597719699],[-120.46917033590442,51.931209487826074],[-120.46962970824619,51.93115852475611],[-120.47008957620146,51.93110365143528],[-120.47054958619678,51.931047649360316],[-120.47101023366302,51.93098661905612],[-120.47145614573859,51.930926568435744],[-120.4719172167329,51.930862180583176],[-120.4723777898868,51.93080169930092],[-120.4728238401895,51.93074052539433],[-120.47328554671842,51.930671096701374],[-120.47373223388055,51.93060488391891],[-120.47417870616867,51.93054035082725],[-120.47464040842061,51.930470916679425],[-120.47508765924496,51.93040022672406],[-120.47553483708603,51.930330098483076],[-120.47598201462401,51.93025995955406],[-120.47644427752856,51.93018605518564],[-120.47689201970803,51.930111440803685],[-120.47733990110373,51.93003571563935],[-120.47778764020687,51.92996109775847],[-120.47823601558103,51.9298814516981],[-120.47868375043187,51.929806839259896],[-120.47913162672185,51.92973109814927],[-120.47957992579626,51.92965201029153],[-120.48002765712603,51.929577383659],[-120.4804759529949,51.92949829229555],[-120.48092424837184,51.929419190234086],[-120.48137211565404,51.92934344931036],[-120.48181984074819,51.929268815675776],[-120.48226763461996,51.92919362577208],[-120.48271599391877,51.92911396218044],[-120.48316435157933,51.929034296834075],[-120.48361206929779,51.928959665141136],[-120.48405992832494,51.92888390476885],[-120.48450820974992,51.92880479762891],[-120.48495592394535,51.92873015174193],[-120.48540420216418,51.928651041096444],[-120.48585191324712,51.92857639170888],[-120.48630032990862,51.928496159568276],[-120.48674803786723,51.92842150667959],[-120.48719645128715,51.92834127103157],[-120.4876447225761,51.92826214267589],[-120.48809249606495,51.928186930010526],[-120.48854083437004,51.928107243624666],[-120.48898860472264,51.928032027457654],[-120.48943686844788,51.927952901034075],[-120.48988470701376,51.92787711789646],[-120.49033353369347,51.92779351598599],[-120.49078122753262,51.92771884733954],[-120.49122891870643,51.927644185888084],[-120.4916773170195,51.92756392375813],[-120.4921250050685,51.927489258805835],[-120.4925738245928,51.927405639173664],[-120.49302165095453,51.92732985271954],[-120.49346990127455,51.92725070157245],[-120.49391772448779,51.92717491161628],[-120.49436597158866,51.92709575696332],[-120.49481372150606,51.92702051803384],[-120.49526252991855,51.926936896810794],[-120.49571034792469,51.926861090904325],[-120.4961585874146,51.9267819381816],[-120.49660640227172,51.926706128773155],[-120.49705463854232,51.92662697254475],[-120.49750287431647,51.926547805618384],[-120.49795110733243,51.926468645882395],[-120.498398915856,51.926392829468185],[-120.49884714565242,51.92631366622643],[-120.4992948097182,51.92623896431814],[-120.4997431776034,51.92615867956303],[-120.50019140368302,51.92607950211784],[-120.5006396982065,51.92599976838622],[-120.50108742604485,51.925924504941484],[-120.50153515233772,51.92584923974731],[-120.50198344203714,51.925769500757646],[-120.50243173009714,51.92568976001362],[-120.5028799453456,51.925610580993634],[-120.5033277364878,51.925534745316405],[-120.50377524256093,51.92546115286144],[-120.50422359532907,51.925380841626705],[-120.50467180414891,51.925301655596535],[-120.50511944784698,51.92522693093246],[-120.50556779460229,51.925146623380954],[-120.50601543517368,51.92507189521646],[-120.50646314420675,51.924996610766556],[-120.50691141612964,51.92491685249357],[-120.50735968641283,51.92483709246639],[-120.50780731960762,51.92476236624566],[-120.50825509347061,51.92468651131201],[-120.50870328783327,51.924607309509724],[-120.50915105854573,51.92453145107447],[-120.50959910864907,51.92445336378921],[-120.51004687622257,51.92437750185315],[-120.51049506415524,51.924298293041026],[-120.51094268757464,51.924223545627676],[-120.51139044932329,51.92414768738513],[-120.51183863358156,51.92406846437276],[-120.51228632225926,51.923993157169804],[-120.51273400939078,51.92391784821772],[-120.51318225875477,51.923838065407644],[-120.51362987171684,51.92376331644094],[-120.51407804795663,51.92368408466764],[-120.51452565780286,51.92360933220146],[-120.51497340813953,51.92353345101294],[-120.51542157844898,51.9234542229279],[-120.51586918476,51.923379456269146],[-120.51631749272207,51.92329910664818],[-120.51677961454224,51.92322503066157],[-120.51721333076574,51.92314453790657],[-120.51767551927657,51.92306990376267],[-120.51812318762315,51.92299457375417],[-120.51855626489417,51.92291911154001],[-120.51900407096376,51.92284266005497],[-120.51901908284393,51.92283943634868],[-120.51946723867108,51.92276019243692],[-120.51991483092247,51.922685409973894],[-120.52036242051285,51.92261063470682],[-120.52081057267384,51.922531376595785],[-120.52125886281316,51.92245100763721],[-120.52170644881915,51.92237621817519],[-120.52215473571263,51.92229584571064],[-120.52260231858988,51.922221052748995],[-120.52304996971232,51.9221457034907],[-120.52349818198581,51.92206588031715],[-120.5239463926186,51.92198605538961],[-120.52439453072257,51.92190679220184],[-120.52484224640502,51.921830872446904],[-120.52528981877617,51.92175607793089],[-120.5257379532003,51.9216768005434],[-120.52618608487039,51.92159753034708],[-120.5266343566285,51.92151713140724],[-120.52708192270642,51.921442329890176],[-120.52753005064899,51.92136304549175],[-120.52797775416651,51.92128712242802],[-120.52841136073496,51.92120714182313],[-120.52885962325387,51.92112674311891],[-120.52930774472203,51.92104745176555],[-120.52975593425397,51.92096760410609],[-120.53020356014977,51.92089222689668],[-120.53065174644648,51.92081237573218],[-120.53109986030252,51.920733086312225],[-120.53154811411646,51.92065266814197],[-120.5319956628947,51.92057784742899],[-120.53244391346138,51.92049742575307],[-120.53289145910982,51.920422601540814],[-120.53333956601251,51.92034329441479],[-120.53378767016228,51.920263994479974],[-120.53423591419886,51.92018356579119],[-120.53468345355219,51.92010873457851],[-120.5351315539715,51.92002942044204],[-120.53557923056435,51.91995346767231],[-120.53602676637452,51.91987862226794],[-120.53647556253645,51.91979372152275],[-120.53692309516924,51.91971887261669],[-120.53737125710435,51.91963899516069],[-120.53781885620083,51.91956358819727],[-120.53826645374956,51.919488179485235],[-120.53871510125812,51.91940438802571],[-120.53916276631657,51.91932841230786],[-120.53961084945043,51.91924908959311],[-120.54005837111393,51.91917422843964],[-120.54050589011932,51.91909937448271],[-120.54095354892759,51.919023391767354],[-120.54140218649259,51.918939589781466],[-120.54184970190569,51.918864721630776],[-120.54229728531271,51.91878929717035],[-120.54274486717172,51.918713870961305],[-120.54319244748268,51.91863844300387],[-120.54364051619893,51.91855910452632],[-120.5440881640009,51.918483109562324],[-120.54453566899853,51.91840823986457],[-120.54498331369243,51.91833224140289],[-120.54544519294483,51.91825917683428],[-120.54589325478763,51.91817982060082],[-120.54634089365102,51.91810382577918],[-120.54678783175287,51.9180334106342],[-120.54723539808883,51.91795796688256],[-120.54768345245984,51.91787861259142],[-120.54813052611574,51.91780707413412],[-120.54859239453444,51.91773399688039],[-120.54903946521722,51.91766245487719],[-120.54948695329497,51.91758756584125],[-120.54993444095592,51.91751266611307],[-120.55038199650535,51.917437210069764],[-120.55082892013223,51.91736678810859],[-120.55127654317066,51.917290765059015],[-120.55173840085081,51.91721767512553],[-120.5521853211576,51.91714723893005],[-120.55263293845941,51.917071219525965],[-120.55307985582098,51.91700077984175],[-120.55352740067622,51.916925311512166],[-120.55398939059077,51.91685109442326],[-120.5544364433706,51.91677953136457],[-120.55488377327006,51.91670573933618],[-120.55533124261564,51.91663081853081],[-120.55577828981757,51.91655925918184],[-120.55622575612392,51.916484334883],[-120.5566872480162,51.91641401574971],[-120.55713415097759,51.91634356919914],[-120.55758217187058,51.91626416724991],[-120.5580290718513,51.916193717209076],[-120.55847653054127,51.91611878412022],[-120.5592969013895,51.91598113092819],[-120.55922880202529,51.888717134259544],[-120.56069999961424,51.888344951247845],[-120.56131792729667,51.88811502232102],[-120.56163787979526,51.887919322030534],[-120.56201927662585,51.88774284122163],[-120.56249189870675,51.887595432578806],[-120.56302708701877,51.88734132359522],[-120.56350660956254,51.88709470305792],[-120.56394930108199,51.88686544510803],[-120.56443843626167,51.88673175154856],[-120.56502598091335,51.88661340434015],[-120.56549188495602,51.88646116664125],[-120.56609267106174,51.88616348340173],[-120.5667279005063,51.88579432227951],[-120.56709258600749,51.88553211118353],[-120.56753482107734,51.885262337374904],[-120.56838168552902,51.884731674120644],[-120.56846565418635,51.884701912303036],[-120.56884002324209,51.88455207162153],[-120.5691062927688,51.88444996898532],[-120.56945046488933,51.88436674651274],[-120.5700383870843,51.884288884092996],[-120.57064108872538,51.88418022637702],[-120.57118268613269,51.884020306736055],[-120.57154190721535,51.88387479697713],[-120.57188417877427,51.88373354903553],[-120.57200622004832,51.88369096687666],[-120.57243285808276,51.88344348981922],[-120.57289093286677,51.88313395721907],[-120.57322593039451,51.88293387477189],[-120.57368497870323,51.882660368086],[-120.57442462455617,51.88225731491808],[-120.57507361650094,51.88193768560869],[-120.5753178840244,51.88182159803956],[-120.5757743352308,51.881583394613166],[-120.5761635573186,51.881357753264936],[-120.57670581146856,51.88098694854316],[-120.57707924550348,51.88069757195153],[-120.57741534235309,51.880327137832964],[-120.57766755043203,51.87998590779567],[-120.57784294519041,51.87977825965504],[-120.57804070536939,51.87950811771145],[-120.57820853947655,51.87921463141845],[-120.57832973890416,51.878988113721235],[-120.57850641751169,51.878667485083604],[-120.57865995771195,51.878400882303666],[-120.57873626218536,51.87822734277103],[-120.57885032922223,51.87795549764825],[-120.57899492586051,51.87764347282921],[-120.57923183140876,51.877293084728414],[-120.57942246347316,51.87703610028914],[-120.57952101953137,51.876903545761444],[-120.57976518844008,51.876611986655206],[-120.57986463726584,51.876442915701695],[-120.57993382442916,51.876282544546534],[-120.58005592129356,51.8760779955573],[-120.58017739173673,51.87587847363218],[-120.58027601186915,51.875745363713676],[-120.58066664162858,51.875375809885504],[-120.58120699176027,51.87506338343006],[-120.5818096626914,51.874733666119546],[-120.58229063879546,51.874370630117625],[-120.58265624745097,51.874099421635144],[-120.58310600610763,51.873649993381605],[-120.58319859716698,51.87330120501676],[-120.58314552614006,51.87293596381187],[-120.58284108228257,51.872524535043965],[-120.58293870055986,51.872193980078734],[-120.5835032826738,51.8717741579735],[-120.58385559037666,51.87144833913862],[-120.5840378820694,51.87121401541161],[-120.58427362733106,51.87093103876482],[-120.58452553028998,51.8704593120793],[-120.5845497353731,51.87001506083698],[-120.58399145885126,51.86978283775182],[-120.58380808192203,51.86958577768279],[-120.58382301476168,51.86928955293335],[-120.58393033288328,51.869012876111555],[-120.58400671893504,51.86879435670237],[-120.58422829150636,51.86865467650789],[-120.58445769389377,51.86856936257445],[-120.58478528582457,51.86854491842571],[-120.58530501483209,51.86851494403328],[-120.58557849615157,51.86847106856453],[-120.5857080237346,51.8684558214831],[-120.58605255281093,51.86842711760085],[-120.58616687707618,51.86840215349877],[-120.58740947969865,51.868468195617325],[-120.58803583129537,51.868489919417634],[-120.58869836073364,51.86849928531033],[-120.58891280641707,51.868490295994405],[-120.58946273504266,51.868613568477805],[-120.5896520939985,51.868747916260475],[-120.5896602924558,51.868946256282335],[-120.58972221981969,51.869225865326435],[-120.59030873284738,51.86953924897719],[-120.59078896144254,51.86966597067964],[-120.59105741325816,51.869721387624516],[-120.59136873044572,51.86975464183224],[-120.59162171900569,51.869831821789575],[-120.59174295857602,51.86994214602677],[-120.59175796197533,51.87042368002148],[-120.59193371109001,51.871079253787585],[-120.59262097731073,51.87166843876211],[-120.59308600031571,51.87206492309468],[-120.59382626288001,51.87240353770645],[-120.59429825172528,51.87255290586494],[-120.59465871636282,51.87264583909113],[-120.59485635025572,51.87269902889369],[-120.59539740470744,51.87289439042946],[-120.59643619796545,51.87304630396675],[-120.59648883038618,51.87303360749181],[-120.596641343666,51.8730683527029],[-120.5972587808184,51.87310366573234],[-120.5975723315429,51.87338388699539],[-120.59828149102138,51.87354722976134],[-120.59886871765592,51.874179457732005],[-120.59949543269161,51.87455204267922],[-120.59999953182633,51.8746927764397],[-120.60024279482619,51.87476047883551],[-120.60127998697024,51.874925766459405],[-120.6013953256222,51.87493682550571],[-120.60179877056692,51.875021637543796],[-120.60216445940712,51.87514627433937],[-120.6028441017538,51.87547466161941],[-120.60357022754232,51.87584009088769],[-120.60450004935754,51.876210051887114],[-120.60534742943956,51.87646534346292],[-120.60593418300546,51.8765132165485],[-120.60665878600496,51.87647872475947],[-120.60734684895874,51.876371085332515],[-120.60765958011851,51.8763638786135],[-120.60798672141823,51.87640232835651],[-120.60849785264111,51.876412887916985],[-120.60849788943656,51.87630941714006],[-120.60849695105769,51.87606643748543],[-120.60849770218226,51.87464541611851],[-120.60860516796734,51.87466115400687],[-120.60871933133741,51.87468171480037],[-120.60883411788255,51.874697239142186],[-120.60894047724608,51.87472192225339],[-120.60905464093297,51.874742482712215],[-120.60916155384459,51.87476269284795],[-120.6092757874582,51.87478268951704],[-120.60939121117116,51.874807807724764],[-120.6094968646775,51.87482345946362],[-120.60961235833719,51.874848013878776],[-120.6097174576561,51.8748681471314],[-120.60983398944741,51.87488431040174],[-120.60994822368717,51.87490430639942],[-120.61006238832545,51.874924865852634],[-120.61016804235562,51.87494051697196],[-120.61028283009622,51.874956039861516],[-120.61039699502734,51.87497659898093],[-120.61051248959835,51.875001152486966],[-120.61061940381816,51.87502136126001],[-120.6107257638742,51.87504605165524],[-120.61083157201084,51.8750752057827],[-120.61093138700139,51.87510858567085],[-120.61103065012433,51.87514642930332],[-120.61113055051175,51.8751938672593],[-120.61121413392532,51.87524053757564],[-120.6113050381952,51.87528699433333],[-120.61138256122106,51.87533843607943],[-120.61144998169976,51.875397842305006],[-120.61151969878499,51.87545342455798],[-120.61157979891375,51.87551304421073],[-120.61164841021098,51.875577571936795],[-120.61171819752164,51.8756325904902],[-120.61179335555194,51.87568841944614],[-120.61187094844384,51.875739306219394],[-120.61195342761279,51.87579492153287],[-120.61203882610437,51.87584167649553],[-120.6121218587048,51.87589281890342],[-120.61220489149977,51.87594396124889],[-120.61229754276992,51.87599105708394],[-120.61238844975522,51.876037512952415],[-120.61247928836322,51.87608452337183],[-120.61257981512688,51.87612692367566],[-120.61267782079616,51.87616021675189],[-120.61278529181635,51.87617595070515],[-120.61289915267788,51.87616950010467],[-120.61302869354928,51.87615422229364],[-120.61314372983198,51.876138262313205],[-120.6132499408149,51.87614943779505],[-120.6133202142971,51.87620054613293],[-120.61335028771668,51.87628181355377],[-120.61330307417693,51.87633920244017],[-120.6132279732697,51.87640090351197],[-120.61325057145856,51.8764688809625],[-120.61328175076075,51.87654120281631],[-120.61327471721083,51.87661285259062],[-120.61325122764211,51.876684853295465],[-120.61323512857858,51.876756076801584],[-120.61322802524924,51.8768282901298],[-120.61323611890832,51.87689558554347],[-120.6132654157264,51.87696838569317],[-120.61330440072759,51.87703657573153],[-120.61334944773981,51.877099985150345],[-120.61339568541169,51.87716851614806],[-120.61345704956112,51.877232701701864],[-120.61350983267592,51.8772925428278],[-120.61357907218023,51.87735203294633],[-120.61364043796296,51.87741620944598],[-120.61370834794114,51.877471705024405],[-120.61378539335992,51.877527063203544],[-120.61385275193223,51.877587022526605],[-120.61393035059872,51.8776379078215],[-120.6140055138042,51.87769374417471],[-120.61408855223077,51.87774488507543],[-120.61416615145268,51.87779577020375],[-120.61425045056592,51.877851469001314],[-120.61432623702818,51.877902268781256],[-120.61438815750091,51.87796197206745],[-120.61444165028955,51.87803084352368],[-120.61448607751547,51.87809928879298],[-120.61454019197996,51.8781631327877],[-120.61457918003909,51.87823132232046],[-120.61461635506512,51.878299426606354],[-120.61464620902939,51.87836774458488],[-120.61465430405427,51.87843504875181],[-120.61459322360471,51.87850134164352],[-120.61453214186407,51.87856764344439],[-120.61454016820159,51.87863550223216],[-120.61456354569086,51.8787119554552],[-120.61460136011503,51.878789645132045],[-120.6146614679392,51.878849271939345],[-120.61471456752858,51.87887706893617],[-120.61471547038116,51.878013915103956],[-120.61514276132284,51.87774382896517],[-120.6154246296092,51.87763223630207],[-120.6157224169975,51.87753938622108],[-120.6160206005749,51.87742855898241],[-120.61611210435835,51.87732263944411],[-120.61621857960435,51.877198861504624],[-120.61642503332169,51.877121962092254],[-120.61679886137027,51.877004007592284],[-120.617096641551,51.876911153894106],[-120.61733154919733,51.87678103793899],[-120.61767503143845,51.87659867239459],[-120.61825640463633,51.8763948564547],[-120.61854511216468,51.87630157308703],[-120.61882728913714,51.876172559092815],[-120.6189799271319,51.876058820119496],[-120.61922436869938,51.8758661749175],[-120.61945351272,51.87570879182502],[-120.61966745586118,51.875497276217054],[-120.61988131383316,51.87533074380597],[-120.62005568814534,51.87526245408281],[-120.62022328821337,51.875130863455816],[-120.62033022364733,51.874944130325666],[-120.62043084645353,51.874838069231814],[-120.62070386105964,51.87475360842468],[-120.62101659901607,51.8745984653374],[-120.62127739794165,51.874450438188866],[-120.62154427347386,51.87431226014992],[-120.62179553931364,51.87418234620936],[-120.62200961588475,51.87408780056059],[-120.62205515959681,51.874043826483394],[-120.62263489429547,51.873749380762504],[-120.62281800832562,51.87365450501977],[-120.62322967491215,51.873554610988265],[-120.62348881319257,51.873479048120736],[-120.62375629537806,51.87343930839517],[-120.62417654989866,51.87340279656116],[-120.62451896409465,51.87334688500509],[-120.62479487892273,51.87325354478245],[-120.625015015151,51.87321326315389],[-120.62509230056143,51.87313366278215],[-120.62547362436936,51.8728805050878],[-120.62566365533195,51.8728033868155],[-120.62599196106109,51.87268438479473],[-120.62613645219722,51.87265124142176],[-120.62634396999394,51.87256537813669],[-120.62668550011192,51.87238345453462],[-120.6270137998987,51.872264449546364],[-120.62726574775319,51.87214355416066],[-120.62750980764474,51.871968303564536],[-120.62779161250616,51.87181225976112],[-120.62841745545607,51.871483393178345],[-120.62861589873941,51.871397100635065],[-120.62885184379418,51.8712580236551],[-120.62912749128421,51.87109268174677],[-120.62939392956056,51.870972461569174],[-120.62222336309225,51.870966702447966],[-120.62223845725313,51.8637367559736],[-120.61175570394924,51.86366356334524],[-120.60791070078895,51.86363500307547],[-120.599998880954,51.863734611748995],[-120.59907466845488,51.86373377033149],[-120.58842497494284,51.86374055060043],[-120.58741836708133,51.863742470345464],[-120.57569841660062,51.863748654505244],[-120.5756919848216,51.86888396369627],[-120.57568331601274,51.869656822049365],[-120.57568398110735,51.87096999135197],[-120.57597374313008,51.870971340637254],[-120.57621072538764,51.87097188164477],[-120.57610998998801,51.87129778694622],[-120.57592737282931,51.87179808249343],[-120.57563882724763,51.87253406603263],[-120.57536296395907,51.87297764890532],[-120.57510451121215,51.87335457104699],[-120.57487597207191,51.873754837414154],[-120.57476076365907,51.87397714643854],[-120.574560781948,51.87426516553784],[-120.57431855774287,51.874628799962935],[-120.5740743172184,51.87503788609573],[-120.57389892357995,51.87524552935564],[-120.57364676091855,51.87546921451486],[-120.57323501690436,51.87586136669617],[-120.57302098969869,51.876481651494316],[-120.57286744241668,51.87686522154665],[-120.57279934139369,51.87701665213301],[-120.57273835131485,51.87715491363388],[-120.57260018337179,51.877385688887],[-120.57241844284538,51.877688074892134],[-120.57226583964817,51.8779322206986],[-120.5720898778866,51.87820282034475],[-120.57192241312515,51.8784198346567],[-120.57177669266744,51.87856477070088],[-120.57159380131546,51.8787006389987],[-120.5712123889361,51.87892213647751],[-120.57108283315168,51.878995854122905],[-120.57083926110742,51.879062476967675],[-120.5704411642865,51.87919826777003],[-120.56966429257773,51.879578161049146],[-120.5691151656513,51.87998910002527],[-120.56879349649407,51.88024322358228],[-120.56851205422957,51.88040871589818],[-120.56803060485171,51.88056922404844],[-120.56760319531811,51.88069124390873],[-120.56716232097408,51.88073107512671],[-120.56677158911879,51.880822204608414],[-120.56596376012827,51.88108420017541],[-120.56536018308434,51.88134632334164],[-120.5650414804683,51.88153253549671],[-120.56471203511622,51.88174635596129],[-120.56391114623827,51.88215713446379],[-120.56371273556398,51.88225625432268],[-120.56334624635295,51.88245988252398],[-120.56318751557885,51.88253333252663],[-120.56272198661036,51.882828978788055],[-120.56244671411767,51.882944703621966],[-120.56205023164236,51.88306703837676],[-120.56132421376391,51.88327215032187],[-120.5605701416977,51.88358502710081],[-120.56030957325369,51.88371437543922],[-120.55920031182822,51.8843736757376],[-120.55912583551252,51.87575393809824],[-120.55773533570282,51.67305372090504],[-120.55687506925395,51.47813767125371],[-120.55989551129508,51.48025214268191],[-120.56115895821884,51.48441677711876],[-120.56161146428654,51.48812452219791],[-120.56187809600704,51.49017835142679],[-120.56543143478433,51.49348941772516],[-120.5733950989554,51.49669674599667],[-120.58154255946117,51.49818682682708],[-120.58859769236412,51.49938909788402],[-120.59471550932494,51.50127648448422],[-120.59864927397851,51.50481425205494],[-120.59956385647115,51.50584784290313],[-120.6033239920769,51.50727095842774],[-120.6114715479663,51.50642194688169],[-120.62045497272982,51.50488628153334],[-120.62320294765165,51.50489041986656],[-120.631168161691,51.50540791519946],[-120.63831197497674,51.50495170967057],[-120.64087762791843,51.50455247619428],[-120.64435753146988,51.50329740194145],[-120.64995023577481,51.502270040946804],[-120.65096007535831,51.501816412149516],[-120.65608997948604,51.49947653892675],[-120.6602126464698,51.494112237438166],[-120.66451034167589,51.4892037904649],[-120.66662657071466,51.48749248556274],[-120.67082676989243,51.486241259575664],[-120.67468137101265,51.48509574546683],[-120.67852482526436,51.484638105892124],[-120.68237260900766,51.48498100416701],[-120.68566281161058,51.48515252867596],[-120.69307942961942,51.48383787412372],[-120.69884310007765,51.48303901295548],[-120.70863656795093,51.482749544729835],[-120.71550551747981,51.4818916882177],[-120.7200818148896,51.48086155083558],[-120.72236790780867,51.48012188643056],[-120.72283078084382,51.47578127856134],[-120.72547658081197,51.470471140978646],[-120.72784951656021,51.46876005819285],[-120.73188374487877,51.466932021334394],[-120.73709148780912,51.46555934629952],[-120.73992388640819,51.464471213708734],[-120.74076034924126,51.46424336998058],[-120.7439552710701,51.462417087490294],[-120.74569441791094,51.461042482663416],[-120.74971501482509,51.46052720520926],[-120.7519995877525,51.460756090230255],[-120.75795656582936,51.46217895757108],[-120.7631648053314,51.46297520949512],[-120.76692944201561,51.46291042349161],[-120.77295889039566,51.46336385758021],[-120.78101451581792,51.461475826692414],[-120.78549406306563,51.45964342612359],[-120.7923549949234,51.45758441896155],[-120.7974653150413,51.45615231697059],[-120.80066178302918,51.454775725189435],[-120.8054221537443,51.45385540058354],[-120.81109731823467,51.453506010036946],[-120.81410752872632,51.454072815551655],[-120.81722584145614,51.45458092410387],[-120.82014727864293,51.453325112138565],[-120.8239901080187,51.452462813787264],[-120.82773321040929,51.45183318754923],[-120.82846524251447,51.44965952506176],[-120.82817582951584,51.445606267233494],[-120.82917453003543,51.44263650744486],[-120.8323603528857,51.439610073665946],[-120.83354647466592,51.43823942926221],[-120.83683752987687,51.43566482294312],[-120.83910208507358,51.432235733601175],[-120.84148655638869,51.43086162986173],[-120.84403520091357,51.42857702960513],[-120.84676404876757,51.42697101032608],[-120.85334391221423,51.424280521305896],[-120.86265700913614,51.419930075766814],[-120.86530389672342,51.41814951225785],[-120.869666766334,51.41414900787715],[-120.87441368961342,51.41180243394979],[-120.87998324139886,51.41081683207095],[-120.88683849999536,51.41006559092779],[-120.88912068657496,51.4095493045733],[-120.89230702108586,51.40783018581483],[-120.89668952091937,51.40661986705435],[-120.90280987548772,51.40535203596405],[-120.90645591614584,51.40414198387652],[-120.91083623447754,51.40219371408719],[-120.91768115332312,51.40063820787361],[-120.92480512681581,51.399536304011555],[-120.9292727940098,51.39907438417383],[-120.9349428535601,51.39894444405433],[-120.93932183109688,51.39950456802496],[-120.94225130240473,51.400125233790476],[-120.94509532327476,51.40149170121699],[-120.94721073342984,51.40342624751812],[-120.95205907285107,51.40455400080064],[-120.95581075303754,51.40455010043803],[-120.95999540587685,51.40328306874693],[-120.960821012084,51.402876052270315],[-120.96310867483959,51.402299517444625],[-120.96657173834194,51.40229425453044],[-120.97122782827402,51.40182162295226],[-120.97396130260731,51.399990283595905],[-120.97933631061717,51.39763540529486],[-120.98316715208507,51.39642275057585],[-120.98681066656476,51.39419163727506],[-120.98991091410745,51.39343796572325],[-120.99418896518557,51.39120207832316],[-120.99692279892155,51.38947992286051],[-120.99992948727528,51.38827476440624],[-121.00439401419855,51.38705679511014],[-121.01433125576553,51.38526255213327],[-121.01953231437166,51.38415572315382],[-121.02189638842114,51.3830134309668],[-121.02727444693757,51.38173915088153],[-121.03366640155149,51.38029314275427],[-121.03822031893434,51.37890461952925],[-121.04303162212686,51.375351399241914],[-121.04539220327017,51.37345998715653],[-121.04964672247496,51.369847843911224],[-121.05545783741744,51.36520131273361],[-121.06036062647935,51.362220542778545],[-121.06208754016254,51.36147088762303],[-121.06800278737849,51.35922286359155],[-121.07356539076923,51.35754630925056],[-121.08049114785919,51.35643487174608],[-121.08677372414857,51.35527261462865],[-121.09415662246363,51.35393052811813],[-121.09880679295628,51.353058461642675],[-121.10491267205633,51.352180563229496],[-121.11130434978082,51.35249224516413],[-121.11725873340201,51.35350110986684],[-121.12419333999891,51.35398673538686],[-121.12829347025043,51.35300037417395],[-121.13120954194756,51.35281937991887],[-121.13167102646261,51.35281561181818],[-121.13897655003818,51.353072791791014],[-121.14674716768806,51.354866027034525],[-121.15153720740051,51.35861221894105],[-121.1540245353567,51.3599754907686],[-121.15858940763428,51.360924297783484],[-121.16856578929807,51.36259655538142],[-121.17231767006,51.36360455349191],[-121.17541727522199,51.363593852806986],[-121.18492877605546,51.36412133788748],[-121.19870638362475,51.36411714303784],[-121.20391349509752,51.363808726463226],[-121.20874622274819,51.36309849626546],[-121.21403767690987,51.36267454595807],[-121.21914008991138,51.362132163948495],[-121.2220402204597,51.360234889005625],[-121.22340136652936,51.35937468819862],[-121.22839378997152,51.35757901646542],[-121.23211691305566,51.35619244235008],[-121.23593707137707,51.35457199140796],[-121.24048137155363,51.352780010597684],[-121.24794322926725,51.351316182749486],[-121.2507871598113,51.35193089368543],[-121.25316823764626,51.3524294203366],[-121.2599208457083,51.35313801299874],[-121.26714044085905,51.35338949169777],[-121.27234216509821,51.35324645377222],[-121.28109509155954,51.35222684179409],[-121.28627228724952,51.35082721075777],[-121.28872723128467,51.3499612240278],[-121.30220136427644,51.347204567938626],[-121.30694399382267,51.34649273177435],[-121.31058114127906,51.34601659178607],[-121.31377157579998,51.345541516918125],[-121.31757929663027,51.34386284629166],[-121.32028816134464,51.34167814862595],[-121.32237548428674,51.34046399471463],[-121.32279757563762,51.33851866917275],[-121.32323154595011,51.336460825375426],[-121.32604186761087,51.335079140862646],[-121.33104369266685,51.334077954216085],[-121.33338954568303,51.33286359560313],[-121.33600706687739,51.33084796725989],[-121.33807208779766,51.328608230564726],[-121.34059303931653,51.326138739614706],[-121.34267797745044,51.324524951977466],[-121.34363416438025,51.322009518568336],[-121.3436963086356,51.31978112405626],[-121.34776023527353,51.31673010387151],[-121.35392727702546,51.31475152513109],[-121.35698577603317,51.312217758207474],[-121.3618794377684,51.31002063938538],[-121.36623764962734,51.308396216837096],[-121.36724573929364,51.308389167388846],[-121.370991042137,51.308765746348975],[-121.37508068892124,51.308740224939015],[-121.37825773526342,51.30780862936692],[-121.3821667701049,51.306756166769276],[-121.38463021398644,51.30645418476463],[-121.38918008876884,51.30642839723777],[-121.39246688842222,51.306233471139436],[-121.39474308463474,51.30593207221761],[-121.39471822960711,51.30478975643286],[-121.39502536081338,51.30115177613354],[-121.39894134989586,51.29739645381357],[-121.41110569957354,51.29538279825927],[-121.41527040290912,51.294481311272136],[-121.42284616229708,51.291199126546594],[-121.43242971901226,51.28183634321777],[-121.4467681387265,51.26968143423264],[-121.45725559304367,51.26373767436741],[-121.46791683466226,51.25733167575076],[-121.4812643197345,51.24597914011953],[-121.49098323257772,51.239013961811054],[-121.50196268465528,51.23134546011741],[-121.51319213889192,51.222871836075385],[-121.52305138286849,51.21469984465456],[-121.53322614170598,51.207775286429126],[-121.53647808379631,51.2038538555926],[-121.53318898409859,51.19732348313394],[-121.52481565299725,51.190843747471774],[-121.51975533760827,51.18610569728407],[-121.51248566873903,51.1829352137787],[-121.50923829655444,51.180857233409306],[-121.50806581894857,51.17812754538012],[-121.50446622352122,51.16976694339044],[-121.50140518507361,51.15540362950908],[-121.50066060708116,51.1483254699223],[-121.49937277045247,51.144626662580066],[-121.49726975680926,51.14133491759413],[-121.49557587833544,51.13924023833981],[-121.49491767217093,51.13513466365786],[-121.49604165928908,51.1335220481169],[-121.50186146969406,51.13351341896393],[-121.51095823557495,51.13100487461105],[-121.52223650300705,51.125044094639485],[-121.5341063875127,51.11787101579173],[-121.54188127444004,51.110926018523],[-121.54553923207563,51.10858958089504],[-121.55334611933041,51.10586711559781],[-121.55970927325096,51.1031068756624],[-121.56336525574272,51.101060505402906],[-121.56892156672646,51.098479379309026],[-121.57114046737121,51.09690695157427],[-121.57942030098866,51.09457361988398],[-121.58500739995404,51.0932490249073],[-121.58938341175443,51.090851717849944],[-121.5887296986077,51.08748633065119],[-121.59134911561605,51.086769805847176],[-121.59645282992904,51.08481963857312],[-121.60030348366406,51.0829422591976],[-121.6075077048456,51.08130988804006],[-121.61249236189397,51.081131073923565],[-121.61554387376071,51.08023407805941],[-121.61958256148056,51.07846910710551],[-121.62432237229251,51.076411932812334],[-121.62689005179992,51.07460804435208],[-121.63046435038424,51.07289831114781],[-121.63274925665718,51.07047215550663],[-121.6365853967441,51.06842157256311],[-121.6388004069891,51.0668477616423],[-121.64127172245969,51.06470136598947],[-121.64627863102476,51.06252043039969],[-121.6521099671459,51.06038915835702],[-121.65783076852762,51.057625878603154],[-121.66091867789832,51.05530274094617],[-121.66473644563781,51.052679326507096],[-121.66788069526312,51.04903637563244],[-121.66926776722993,51.04713042596393],[-121.67135057797255,51.044246542556095],[-121.67350337993021,51.04078733605419],[-121.6757725186332,51.03818716658294],[-121.67869327032113,51.03608878972835],[-121.68260588390662,51.03363826034474],[-121.68532278628504,51.03068685360794],[-121.68670938451942,51.02906686682533],[-121.69249937757023,51.0256709771918],[-121.69881218199261,51.024842323028786],[-121.70214784179522,51.0243470149781],[-121.70666815728588,51.0241656329887],[-121.7111049150623,51.024109069452365],[-121.71236664875589,51.02392109058709],[-121.71933626935518,51.023538040265734],[-121.7296346627611,51.0224265576504],[-121.73569997773241,51.02222739690607],[-121.73759470599252,51.02214412399099],[-121.74433186427196,51.02044863215185],[-121.7499434031459,51.01751378174162],[-121.75235986228735,51.01645376169837],[-121.75691148387624,51.01473224157925],[-121.76210362461764,51.01288348407989],[-121.76300378168568,51.01258461234618],[-121.76675955703016,51.011108734303775],[-121.77016133559084,51.00974647565459],[-121.77154334107493,51.00783358278299],[-121.77227917766498,51.0056523601396],[-121.77303052441302,51.00375843344189],[-121.77631340876388,50.99942472849545],[-121.7788975382458,50.998838812272275],[-121.7827382417009,50.997202034752014],[-121.78678952345102,50.99590304889067],[-121.78982402708596,50.99432686748948],[-121.79284405915328,50.99184322615537],[-121.7951384025614,50.989478497621924],[-121.79602388037655,50.9887223146393],[-121.80206065262614,50.987861464655204],[-121.80786379374625,50.988266091420506],[-121.81405703986468,50.98968736298602],[-121.81852397651275,50.99078819901062],[-121.82439299624369,50.99049503232222],[-121.82998792212105,50.98946727522235],[-121.8336401060426,50.987372650434565],[-121.83624970210883,50.983289547685644],[-121.83868723076037,50.979209008500696],[-121.83930046799924,50.978605454608754],[-121.83962188658616,50.978221582069104],[-121.8395495561206,50.97746723830264],[-121.83979585020866,50.97681747170807],[-121.84023756933615,50.975909589935256],[-121.84056727720268,50.97482496438231],[-121.84096925832188,50.97373063812845],[-121.841971058013,50.972480888955474],[-121.84337624141727,50.971497371810194],[-121.84480913717576,50.97052216851639],[-121.84632920744248,50.96952994475874],[-121.84760023622229,50.969064815947526],[-121.84893654570483,50.96851157882484],[-121.84995402908869,50.96785602632747],[-121.8510451312698,50.96702271690127],[-121.8527411747119,50.96597731649142],[-121.85401001408285,50.96522700836811],[-121.85547847875135,50.96447843863011],[-121.85671815808405,50.96388725587137],[-121.85825566823517,50.963009080579205],[-121.8592725368255,50.96251084211084],[-121.8607904518927,50.961996215362866],[-121.86200621753322,50.961661015219505],[-121.86323036386767,50.961389077522306],[-121.86354136483284,50.96142134963549],[-121.86382540257343,50.96159036052581],[-121.86659011110602,50.95994269431047],[-121.86819073786873,50.958841838227634],[-121.8694291722814,50.95779847188852],[-121.86979880650902,50.95796780437737],[-121.87117500738967,50.95897981398207],[-121.873593288027,50.96106906690694],[-121.87745401427638,50.96376839583782],[-121.8791877743802,50.96462195240296],[-121.87960359606092,50.964755848759246],[-121.87985617840975,50.96480278567484],[-121.88058283544814,50.964971136505866],[-121.88132144471028,50.965164657309124],[-121.88172320826094,50.965296338250255],[-121.88203103968235,50.965363296722934],[-121.88268875065991,50.96566008758182],[-121.88338842164823,50.965966293124985],[-121.88374581410775,50.966114885990855],[-121.88399670025001,50.96618030743926],[-121.88439516896888,50.96634783696771],[-121.88503087354651,50.966574103787245],[-121.88541145098871,50.9667808837837],[-121.88604349460692,50.96704692059042],[-121.88642195969169,50.9672766732702],[-121.88662774681151,50.96736686218169],[-121.8868027043195,50.967481772014494],[-121.88739323021007,50.96788851499314],[-121.88803209023033,50.96839033846495],[-121.88826432265789,50.96850341354246],[-121.8888584318984,50.968716888620136],[-121.88948142654577,50.96908151591025],[-121.88973369547944,50.9692869523103],[-121.88984213415566,50.96934939071486],[-121.89052387796762,50.969851086013875],[-121.89081149874622,50.97013765239799],[-121.89134188203884,50.970578138979704],[-121.89189254682655,50.97095359460557],[-121.89217850896364,50.971103482244615],[-121.89247606571573,50.97128246896522],[-121.89307454456193,50.9716040078528],[-121.8934462679455,50.97190769351989],[-121.8937243682013,50.972297900303175],[-121.89404908106631,50.97264708606317],[-121.8945762731926,50.97312285865426],[-121.89496162807072,50.973433782692354],[-121.89508429268055,50.97365189561009],[-121.89541398143058,50.97394728942727],[-121.8958956278861,50.974452870066905],[-121.89614928189863,50.974798891601424],[-121.8963692344655,50.975045852987144],[-121.8968223563578,50.97539635000945],[-121.89713160925065,50.97560385801772],[-121.89728914625395,50.97575353281773],[-121.8976202065656,50.97603435203555],[-121.89785718829641,50.97625157480786],[-121.89793038734683,50.97638692255993],[-121.89803817438793,50.976611799691135],[-121.89828627840386,50.97717347628636],[-121.8986605524758,50.97760540787394],[-121.89879072541711,50.97774227882741],[-121.89906850192082,50.97798179345179],[-121.89939701130461,50.978290621000376],[-121.8995712194209,50.978414474109755],[-121.89974754243613,50.97851535971132],[-121.9001753082327,50.978831749889835],[-121.9005112562488,50.979059892807875],[-121.90068547046445,50.97918374408361],[-121.90079559836084,50.97922824209132],[-121.90121425238141,50.97948863566107],[-121.90174009943736,50.97967030702748],[-121.90201898205352,50.979742884999865],[-121.90252065278436,50.97987700543161],[-121.90306754192888,50.979985232238846],[-121.90330615908083,50.98002991986397],[-121.9035733923247,50.98007396028778],[-121.90412116262877,50.98017265259645],[-121.90450724991243,50.98032165974704],[-121.90475391970051,50.98043409785921],[-121.90527757813732,50.98063984031426],[-121.90582129059902,50.980782791395434],[-121.90600046967197,50.98085284666423],[-121.90613680257026,50.980923030000824],[-121.90657881643793,50.98124046975287],[-121.90713161676867,50.98175083393625],[-121.90739935024347,50.98194498508902],[-121.90801979896045,50.98234088023076],[-121.90840244515987,50.98268313101958],[-121.90860129779792,50.98285003292445],[-121.90891482581237,50.98301211907056],[-121.90948038328067,50.98338408439224],[-121.90992504976599,50.98382865346199],[-121.91009395841154,50.98401075930826],[-121.91029812155155,50.98411995291889],[-121.91095300539698,50.98445243040201],[-121.91133102649214,50.98468993870348],[-121.91109165692671,50.98620861278771],[-121.91304987687923,50.991790733476265],[-121.91311204867154,50.995782038056745],[-121.91210916970935,51.00017191344924],[-121.9109277819393,51.00152585154091],[-121.91052342687648,51.00204010664144],[-121.91034206109444,51.00230390083273],[-121.91017400517326,51.00257828911848],[-121.90996924936819,51.00325215751576],[-121.90982940555982,51.00353038784706],[-121.90977195050554,51.00384478975567],[-121.90981082815806,51.00451009858112],[-121.91007995861463,51.00500166471077],[-121.9104738457031,51.00553486499252],[-121.91086106794616,51.00598518948756],[-121.9110064591445,51.00626874979115],[-121.91122318681145,51.00670892575971],[-121.91179649886054,51.007933352981205],[-121.91225092887419,51.008585673244504],[-121.91268023606065,51.009200541683825],[-121.91342234902132,51.010298988484855],[-121.91418502201627,51.011018167423934],[-121.91495799705223,51.01209243007594],[-121.91519705354644,51.01244571108781],[-121.91555795742855,51.012716860981726],[-121.91654784876505,51.013607858443116],[-121.91718990747246,51.014241120570404],[-121.91787357960122,51.01488824807062],[-121.91828059403049,51.015280235880006],[-121.91873585037591,51.01576952868668],[-121.91908935453695,51.01612190102708],[-121.9199094240535,51.01715228920227],[-121.92049173556369,51.017814836183526],[-121.92089549488703,51.01808695405074],[-121.92137811294896,51.01859015954922],[-121.92177923750833,51.01904711546394],[-121.9219797113515,51.01935457149158],[-121.92231520031427,51.019904147309035],[-121.9227474495296,51.02064555167442],[-121.9228815185908,51.02105402764307],[-121.92315143636723,51.02200763628667],[-121.92342287721911,51.0227887284884],[-121.92353021522581,51.0231771200162],[-121.92363842715108,51.02355599119494],[-121.92391240099138,51.02430962327055],[-121.92443925183986,51.025111217073274],[-121.9248931178357,51.025773567618245],[-121.92539312023632,51.026400478843385],[-121.92636548356464,51.027176057858945],[-121.92674030843598,51.027453277564625],[-121.92723677538308,51.02796313649641],[-121.92793392989994,51.02846676468887],[-121.92903327445464,51.028948990817064],[-121.92935760378569,51.029153543282845],[-121.93004936850323,51.02940401433649],[-121.93060723550613,51.02971202354904],[-121.93137861290887,51.03034254819471],[-121.93282305837673,51.03111602946266],[-121.93399300281972,51.031765453130774],[-121.93446810506467,51.03204121579542],[-121.93489627354218,51.03236137238278],[-121.93609525719619,51.033163035738674],[-121.93683462040161,51.03367599514532],[-121.93715610328607,51.033912463819156],[-121.93748902341588,51.03418026573852],[-121.93806131021223,51.03511438483852],[-121.9386299166742,51.03624567326009],[-121.9389677840589,51.03677277846951],[-121.93924048088942,51.03738746599639],[-121.93962104280263,51.03807350229738],[-121.93993197090936,51.03858276610837],[-121.94013207949091,51.039053175045495],[-121.94073369906013,51.03998047009745],[-121.9411138201546,51.04035844463869],[-121.94154522332377,51.040801225446636],[-121.94188852693665,51.04126948687643],[-121.94230650506331,51.0418596186066],[-121.94301875221129,51.04251544596751],[-121.94343885630916,51.04292577353812],[-121.9438069717985,51.0432791276334],[-121.94412687318686,51.04369089081136],[-121.94434293583762,51.04398705167617],[-121.94514009319373,51.04481006020094],[-121.9455429226435,51.0452534807445],[-121.94600889586032,51.04563171454185],[-121.94633414489562,51.04598520285392],[-121.94704468731061,51.04681800339177],[-121.94746253102456,51.04741090920934],[-121.94775318457565,51.0479874288918],[-121.94845959709205,51.05184867474672],[-121.94869169659039,51.05416727071185],[-121.94726636123318,51.05788085040046],[-121.94838684990064,51.06112348489076],[-121.94863894153846,51.063066172829224],[-121.95021843081203,51.066297755939324],[-121.95036376649949,51.06784311816712],[-121.95242398591071,51.071926085378536],[-121.95557623904712,51.07564804199231],[-121.9561425677409,51.07650028212393],[-121.9581616737703,51.07915728474438],[-121.95885776694512,51.08314719049617],[-121.95995104236471,51.085760756525126],[-121.96309373834976,51.087084811820084],[-121.96717820830614,51.08702272311236],[-121.96790026624231,51.08695136255805],[-121.97298313458793,51.086926522320006],[-121.9756250310232,51.0895182869044],[-121.97796046990234,51.09565688262554],[-121.97917791712851,51.09912837452106],[-121.98315447246809,51.10106274256119],[-121.9867984295714,51.10129443323607],[-121.98880469394538,51.101430577361974],[-121.99443255764636,51.101570819268325],[-121.99972818631892,51.10206206545997],[-122.00569686211568,51.10302993864934],[-122.01022872963217,51.105492198437155],[-122.0189396593329,51.10829879333536],[-122.02710217167956,51.109564475228055],[-122.03064563484565,51.112531615938316],[-122.03327115242455,51.11744405489664],[-122.03670034037891,51.12041929200425],[-122.04632927612167,51.12293832740225],[-122.04749388106214,51.12739267586427],[-122.04549156352121,51.13121825805472],[-122.04112156629732,51.134922414728074],[-122.03783003355242,51.13937696702392],[-122.03945635675778,51.14491481710129],[-122.0437226427172,51.14897676050155],[-122.0478899975213,51.153031647774895],[-122.05324692690651,51.15806258544744],[-122.06123098528334,51.16257975881871],[-122.07049106359557,51.166466384331464],[-122.07330607687844,51.16835153422724],[-122.08076909461721,51.170694964040344],[-122.08868011551687,51.172356569685505],[-122.0960395798113,51.174589130792846],[-122.1075788036333,51.17527851529753],[-122.1157728553807,51.176019575909656],[-122.11950108845771,51.17716448630118],[-122.1251288896536,51.18053127827481],[-122.13014041219613,51.18258864870767],[-122.13322574754842,51.1847022598355],[-122.13730985834991,51.18835989829592],[-122.14159133166814,51.191899919206755],[-122.14477455921694,51.193725988274416],[-122.14986678279203,51.198183978115466],[-122.15195137375409,51.20606352336105],[-122.15249302777944,51.20891404878899],[-122.15313306081777,51.21079748347758],[-122.15176155553347,51.21337150096527],[-122.1496670864904,51.217822355067334],[-122.14967642597904,51.220852495979294],[-122.15140420065119,51.22376365083619],[-122.15422838440348,51.22496121383772],[-122.16004788014708,51.2243939594232],[-122.16305079287642,51.22684535601189],[-122.16532239731757,51.230617564579155],[-122.16642327260574,51.234152737205655],[-122.16760008558721,51.23780789655003],[-122.16987365379623,51.24306226603301],[-122.17324470684116,51.24609326681938],[-122.17916796213842,51.249344201397896],[-122.18144262249685,51.25111180164555],[-122.18328353147874,51.253247886403315],[-122.18400155593199,51.25408236283749],[-122.18466990136321,51.25482694583358],[-122.18656309436837,51.25335861874409],[-122.19096152287044,51.251316238905474],[-122.19451551997471,51.25007064552477],[-122.19880712033282,51.24842779393202],[-122.2031974448451,51.24763934464566],[-122.21103855027835,51.24646364658424],[-122.21933290044159,51.24586051409547],[-122.2324545395627,51.24640730000344],[-122.23746461794218,51.24676417377108],[-122.24656534994921,51.248161947951004],[-122.25357582460698,51.24948966904223],[-122.25792399557614,51.25224579019432],[-122.26018631463997,51.25470683510872],[-122.26226685689029,51.25762252587447],[-122.26480190016429,51.2600919097353],[-122.27492711646471,51.25908612285839],[-122.28468313598654,51.25870780211904],[-122.2897764608687,51.25826217410776],[-122.29279212618724,51.25861283885363],[-122.29841290758971,51.26370966075552],[-122.30002693098979,51.266569360800936],[-122.30421657064545,51.26818007451042],[-122.308401697302,51.26950393899086],[-122.31059867772238,51.26744976185947],[-122.312086173607,51.264253262066724],[-122.31828114856437,51.26386419655524],[-122.32675953235379,51.26365352328019],[-122.3319542616369,51.26389076648897],[-122.33568023572809,51.26538579851172],[-122.34177792630767,51.267909736422574],[-122.34487435637546,51.26677225180464],[-122.3479927215999,51.26414831406005],[-122.35548591793712,51.26124522396721],[-122.36250910913368,51.2586310283421],[-122.36653226134902,51.25703685209779],[-122.36990960666981,51.255783593379455],[-122.39117069817073,51.24690286689373],[-122.41581006503883,51.23590313348321],[-122.43031588470059,51.22957610117728],[-122.43250325535098,51.22843512530242],[-122.43624238717197,51.22495156209024],[-122.43753477013085,51.21940927721908],[-122.43808855779707,51.21626891268227],[-122.4396399563307,51.21392517436137],[-122.4480228023082,51.211190936807114],[-122.45121467588721,51.21056660791135],[-122.45923898583167,51.20817254521872],[-122.46278263491558,51.207089844084976],[-122.46634347880422,51.205609262398475],[-122.47171707473743,51.20315661533988],[-122.48119369117285,51.20104520422999],[-122.48446616747334,51.20047359733543],[-122.49029265597403,51.19916283559818],[-122.50048594185397,51.197396278055976],[-122.50431358283127,51.1970519944147],[-122.50759086891225,51.20059826400439],[-122.51494754602034,51.206083821062954],[-122.51905207191932,51.20751825685317],[-122.52487856723228,51.207119152597265],[-122.53179875895765,51.2064898963089],[-122.53899107356095,51.20494446683022],[-122.5438163030341,51.20431820498586],[-122.54836682714262,51.2016919071808],[-122.5506376909531,51.19757567084036],[-122.55192445122279,51.192832162633124],[-122.55365463065411,51.18957454583412],[-122.55610291081953,51.185743915417206],[-122.55992763778546,51.180426647464394],[-122.56228591381256,51.17774363190497],[-122.57338986712841,51.17391541957693],[-122.57939927434289,51.17293664173573],[-122.58594938972621,51.17219132416688],[-122.59067176136773,51.16613288305565],[-122.5925792807528,51.16350024347859],[-122.59547862801051,51.159329638813034],[-122.59857010465241,51.1539535844339],[-122.59947799560354,51.15126650903453],[-122.59765352299388,51.148530140866676],[-122.59501026426966,51.14526676482059],[-122.59219492932559,51.142011026720375],[-122.59110444336345,51.140357885451806],[-122.59346632910217,51.133095267097005],[-122.59336398172064,51.127150184112864],[-122.59291190957296,51.12035236849101],[-122.59217170039928,51.1167524950465],[-122.5883600990048,51.11400792552271],[-122.58308409022777,51.110583399240994],[-122.57800054229607,51.10801499756058],[-122.57526820499571,51.1059566406868],[-122.57600135647544,51.101271562508494],[-122.57872473782606,51.098239109996186],[-122.58743823552723,51.09451919532845],[-122.59425124225076,51.09280411288906],[-122.60042145256445,51.09200406528107],[-122.60777101856874,51.08999427362531],[-122.61248884423352,51.086280689978224],[-122.61247913961718,51.080964602854806],[-122.61411836912345,51.07822118146577],[-122.6224636870278,51.08038430772428],[-122.62810216010679,51.08392416193689],[-122.63411056150736,51.090146643179665],[-122.64309488311108,51.09070926857649],[-122.65271895155898,51.09075762056401],[-122.65689615040448,51.09075814458836],[-122.6633475635964,51.09285958232891],[-122.67071955358307,51.09834052282772],[-122.67764558424393,51.10387684142185],[-122.68283139589455,51.109358599825335],[-122.68819860452516,51.11146415587918],[-122.69329049910183,51.11477531355584],[-122.6962254706705,51.11957565651345],[-122.69796012171514,51.12396939881102],[-122.69923353986623,51.12648288982566],[-122.70888946294008,51.13064526626222],[-122.71381053421764,51.13360542470033],[-122.71526706497588,51.13617569264165],[-122.7179212120814,51.1411445723864],[-122.71892711726863,51.14400497038018],[-122.72166932730002,51.14856901184736],[-122.72268404409132,51.15131556371121],[-122.7243314324434,51.15422596621024],[-122.72697775185873,51.15719229055955],[-122.72934272652483,51.158732048162605],[-122.73453235618875,51.15946550322991],[-122.74016508165127,51.158655017641514],[-122.7479781382969,51.154871683076124],[-122.75221822868976,51.14880607985904],[-122.75421038305204,51.14565550166009],[-122.75601372692698,51.142341057642405],[-122.75974491846051,51.14164736590877],[-122.76573514636503,51.13923270188955],[-122.76845724288994,51.13842832829588],[-122.77153738422398,51.13762178048563],[-122.77553264837377,51.13801475413773],[-122.78092317216087,51.14326014857831],[-122.78477578142888,51.14839902739957],[-122.78841851238815,51.15130348409453],[-122.78943797806303,51.153249586346966],[-122.79322696609789,51.149182878371654],[-122.79804533130591,51.147513971063425],[-122.80458406530462,51.146412637995454],[-122.81148047561207,51.14571030866479],[-122.81512297043008,51.1452448364981],[-122.82266343954983,51.14534302166333],[-122.8255858633882,51.14773500859345],[-122.83105842383347,51.15052382669076],[-122.83562905909062,51.15331511946225],[-122.84009828611681,51.15633141084787],[-122.8461211875149,51.15866021799481],[-122.85131533330053,51.160361188190144],[-122.8559527505998,51.16143247901001],[-122.85916070569941,51.164283013274336],[-122.86251969900046,51.16399007588501],[-122.86979455742154,51.16322559197802],[-122.8755106562543,51.16200969915388],[-122.87615790377538,51.164008607925176],[-122.8773686272663,51.16634886041285],[-122.8813946045614,51.170224455776385],[-122.8866013046547,51.1730086051871],[-122.89152701504685,51.17510795715073],[-122.89554181940201,51.177328601003886],[-122.90258027731858,51.18079192274414],[-122.91077211119612,51.182939540933],[-122.91732851318375,51.18326206380345],[-122.92262508425944,51.184390610960534],[-122.9275422135033,51.184999735009335],[-122.9324623484815,51.18618887861706],[-122.93731674497708,51.18937146867228],[-122.93904927744792,51.190853977180396],[-122.94580837949806,51.192830896157496],[-122.953911054415,51.193831627110114],[-122.96274008726402,51.19448851219844],[-122.96766545562338,51.19458050174594],[-122.97275853799997,51.195365871100904],[-122.98096275702855,51.19699466006434],[-122.9914440489583,51.19866950810596],[-122.99782349523761,51.19910273964078],[-123.00656070476002,51.198380607004026],[-123.01227470710305,51.19698760123611],[-123.02269071068554,51.19986295901613],[-123.0309865597728,51.20251479056419],[-123.03784041414131,51.20465811017063],[-123.0427735326851,51.205724695944966],[-123.04816849883048,51.20804197725037],[-123.05282473816293,51.2093996220876],[-123.05838325276817,51.21034705063561],[-123.06430916806025,51.210947150721786],[-123.06463383297674,51.20734358207308],[-123.06572923223605,51.19967627775731],[-123.06672314469012,51.190069949857765],[-123.06768810636838,51.18674856496651],[-123.06511161680827,51.184530732124735],[-123.05927506969138,51.183068052810704],[-123.05206943494255,51.18172542364921],[-123.0499493928016,51.178477938528694],[-123.0502722764338,51.17556160641255],[-123.05170870943917,51.172921472429834],[-123.05377054492301,51.17057002996794],[-123.0541675213375,51.165022269841124],[-123.05093784222915,51.16080618695564],[-123.04589288460937,51.156542432501254],[-123.04204432058421,51.1543271064752],[-123.03902885996497,51.15251034892002],[-123.04092337378609,51.15073147369066],[-123.04371842063121,51.148545420583396],[-123.0493156089728,51.144915758953],[-123.05401248099301,51.142324876998146],[-123.05983009190098,51.14161186575318],[-123.0645565018831,51.141591257548406],[-123.06707690864872,51.139634506135664],[-123.06977782856639,51.13710841815889],[-123.06974633785268,51.134765125665844],[-123.06826585238099,51.13225272106245],[-123.07241928446551,51.12983341944278],[-123.07705378256905,51.12901468954778],[-123.0805183406617,51.13031307417866],[-123.08738164502392,51.134795365403654],[-123.09451386664055,51.13825188120296],[-123.09935225668055,51.14045496245399],[-123.10307330419997,51.14003958763983],[-123.11061568141217,51.139204305704816],[-123.11596798201177,51.13791715585895],[-123.11785389997046,51.13665350402371],[-123.12275000141642,51.13577051342644],[-123.13019549730512,51.13464393844498],[-123.13418210299879,51.1334278703557],[-123.13923734481519,51.13139640647971],[-123.14248152310746,51.12880721669991],[-123.14428121657919,51.127085497964465],[-123.14858316834616,51.12294654005013],[-123.15046335343399,51.120185574490186],[-123.15210508232889,51.11355082923804],[-123.15185201224088,51.10834682602554],[-123.15107677009371,51.10526424568005],[-123.15155387453682,51.099829313451046],[-123.1538715956403,51.09535461487363],[-123.15768587056507,51.089386127589286],[-123.16234774742546,51.08513157250752],[-123.16866682226048,51.08200691158822],[-123.17388729703195,51.0783820227967],[-123.18111265858386,51.07536536577086],[-123.18643417369418,51.07327789120583],[-123.19041749528006,51.072226651148505],[-123.19466849436337,51.07146106117023],[-123.1949272103532,51.069625427041586],[-123.20126901238257,51.06901951177199],[-123.20605253081018,51.0672771880658],[-123.20857648441287,51.06646089461566],[-123.21887830185474,51.063314290617335],[-123.22537244666775,51.060244790623535],[-123.23060074065903,51.05798338673577],[-123.23688580633345,51.05388261167188],[-123.23959001970364,51.05198111802893],[-123.24325097880046,51.048239026186664],[-123.24618587441213,51.044677295574324],[-123.25056261429724,51.03950353704558],[-123.25231747202622,51.035603332532474],[-123.25433599881313,51.03159103292922],[-123.25574109739662,51.02872121717513],[-123.25621573279706,51.02380009892541],[-123.253229890431,51.018501299168854],[-123.25148238511593,51.01651142832836],[-123.2509693439603,51.0125646871889],[-123.24892552219436,51.01006204003611],[-123.24525739299767,51.007054518597116],[-123.24422091482509,51.00465844313977],[-123.2430947099364,51.00163841929981],[-123.24376198472181,51.00054162096628],[-123.24376134332996,51.000090613947584],[-123.24685365880548,50.999240840490444],[-123.25102973621894,50.99840233409775],[-123.26770289061609,50.99739087365076],[-123.27557788444537,50.99696035864114],[-123.28591317922994,50.99643037996825],[-123.29134064218752,50.99588008979418],[-123.29659374670673,50.99561402997481],[-123.3011414909311,50.99379923098185],[-123.30425538973905,50.99044301249217],[-123.30701815016468,50.98627909769725],[-123.30931539597647,50.98320138217208],[-123.31167903315857,50.98138270001094],[-123.3165708558871,50.98139970256801],[-123.31962961695412,50.982721792847464],[-123.32410474164037,50.987543314428876],[-123.3259733148203,50.99206728918151],[-123.33000762119799,50.99522292075524],[-123.33281735730438,50.99500604114952],[-123.34106090919822,50.99411581907337],[-123.34332918218553,50.994123421971956],[-123.34928541146068,50.99545864480949],[-123.35425671656927,50.99656479797193],[-123.36313201102014,50.9970514214135],[-123.36792572396607,50.997065525476415],[-123.37617532623827,50.997033818519455],[-123.38368215496865,50.99677137320732],[-123.39004134533938,50.99490592671236],[-123.39522886400286,50.99086318322363],[-123.39778598374086,50.98909667620091],[-123.40151112909078,50.98613397946442],[-123.4050781905163,50.98220266939028],[-123.41017234718561,50.97947179387559],[-123.41415721548215,50.978396038454534],[-123.41967501851123,50.97892391598538],[-123.42482482609694,50.98088582138205],[-123.426797370833,50.98180262255237],[-123.43232321883931,50.98096200531409],[-123.43958322341854,50.97898019424196],[-123.44638305057677,50.97705260771431],[-123.45057423722469,50.97409444471563],[-123.45366431558094,50.971928839343306],[-123.45711892437204,50.96936706650811],[-123.45875693968358,50.96764860108477],[-123.46266762176782,50.965830981023736],[-123.46908896027306,50.96624714184793],[-123.47224614840341,50.9673993261691],[-123.47802186267197,50.96889890230399],[-123.48345424321447,50.96890845371025],[-123.48881027291485,50.966981931241065],[-123.49242842819048,50.96527132404069],[-123.49824944529574,50.96139480570555],[-123.50587230660452,50.956379822353874],[-123.5113373192582,50.95015514199552],[-123.51452775593174,50.94559214122749],[-123.51553811212335,50.94485186713646],[-123.52578303981166,50.93897759882886],[-123.53376016162939,50.93567525136626],[-123.53783916074478,50.933797002799565],[-123.54661894891606,50.93140935740863],[-123.55149548519604,50.93107671630048],[-123.56035224305246,50.931948043960894],[-123.56876077245005,50.93372995455808],[-123.57489296092811,50.93677221267984],[-123.57994404708799,50.93900684350619],[-123.5855782426111,50.931527774431935],[-123.58939973775084,50.925927274437726],[-123.59430840223756,50.918900496540516],[-123.59704539387315,50.91541666147666],[-123.59731197823244,50.914961868801626],[-123.60104325575753,50.90913099888491],[-123.60394509068654,50.90467670263029],[-123.60621583063454,50.901361245439205],[-123.60785468922451,50.898673601318734],[-123.6095825783972,50.89644664925076],[-123.61355619073683,50.89427986114647],[-123.62124057335733,50.894058480242],[-123.6236857158817,50.89411932257448],[-123.63072298394795,50.895898016451774],[-123.63632394262513,50.89738933895648],[-123.64408325962837,50.9008817486704],[-123.65075125420024,50.902948446578726],[-123.65410064297386,50.90369303502094],[-123.65817105364299,50.902093373255774],[-123.66116194859468,50.899353504525344],[-123.66244122831166,50.89449495742425],[-123.66244473907945,50.889803530542345],[-123.66245737773363,50.88711377978723],[-123.66290887201949,50.885284545790135],[-123.66490425581013,50.88168814049419],[-123.66735676461896,50.878596534325574],[-123.6709712803902,50.8772272916764],[-123.67530570177904,50.877058401192585],[-123.67809863439746,50.87780200485891],[-123.6870415083248,50.87986713916745],[-123.69127560844706,50.881643141238264],[-123.69624474152502,50.883245948446095],[-123.70464358854386,50.8798696213592],[-123.71395552596826,50.87558526076773],[-123.71937272586797,50.87398618132257],[-123.72208834404536,50.873185564795556],[-123.71983076905026,50.86947024697695],[-123.71660066267242,50.85583921143249],[-123.71651847048076,50.84909441571455],[-123.71796883663396,50.83878541922383],[-123.7197805578779,50.832249261892194],[-123.713818843894,50.83208554347996],[-123.69900134098619,50.83109678056663],[-123.69357821102524,50.83069088693171],[-123.69328926665857,50.829954271382],[-123.694544757432,50.81524481241226],[-123.69310521618462,50.80485527778944],[-123.68466823142647,50.799335863428304],[-123.67877177717703,50.797450654567825],[-123.66323040186613,50.796409829575836],[-123.65206402942643,50.79320596227602],[-123.64824335064964,50.79158730870173],[-123.6348636373437,50.789999853090826],[-123.62346979906363,50.78873944421169],[-123.61875148050044,50.78746968383539],[-123.61352799341658,50.78369287781314],[-123.60886620854014,50.777389603025846],[-123.60431009902587,50.774974581771865],[-123.59240387559552,50.77857697480685],[-123.57747968468315,50.783859613359105],[-123.56504264538425,50.79243705485555],[-123.54258246159297,50.791499234039065],[-123.5224316807129,50.78939201447843],[-123.50999561817612,50.78138290835501],[-123.49781507454212,50.78463564886787],[-123.48066448220143,50.78809652844132],[-123.47185816194438,50.78937224808005],[-123.45210564667484,50.793307516526625],[-123.44591804935592,50.794957104947294],[-123.43661485925374,50.79395111894197],[-123.42753137292868,50.790363824915886],[-123.42341878534677,50.78753861738128],[-123.41516039227972,50.784458507082235],[-123.40175034224985,50.78599408937495],[-123.3877731589168,50.78993026588609],[-123.3755771002372,50.79397059445467],[-123.36455573937214,50.797081803376315],[-123.3627654338043,50.788406858378934],[-123.35802878343341,50.78010090878216],[-123.34899018100627,50.77422338417249],[-123.3387948316255,50.77304018674018],[-123.32555750203481,50.77358990806233],[-123.32187275112237,50.77418703032432],[-123.31933468703936,50.77317906335906],[-123.31478330657114,50.77046773068469],[-123.3101292376759,50.76758406583991],[-123.30900484226464,50.76479534463515],[-123.31391643297486,50.761957479429334],[-123.31765750624058,50.75993059592484],[-123.32491916444992,50.757650871207446],[-123.3336023844318,50.754842852359054],[-123.34084043841325,50.751018939827595],[-123.34018514168221,50.750104509438565],[-123.33402487840124,50.74249281855787],[-123.33154451159615,50.73982638156133],[-123.3245884411303,50.73347473801676],[-123.318463820689,50.72843184363485],[-123.3068951449093,50.72502871062462],[-123.29988347178467,50.72581947748415],[-123.28411886871571,50.730843889709945],[-123.28322163277599,50.73113667112746],[-123.27424749893451,50.72708253317814],[-123.26222889612413,50.72413561403633],[-123.25184824229333,50.722488398932576],[-123.24374287514917,50.72259982758247],[-123.2373437873085,50.72217985032765],[-123.23073436632173,50.71965531783838],[-123.2236219333309,50.71358452608106],[-123.21795815012388,50.70773358536318],[-123.21393028219933,50.703414269023725],[-123.20935366255219,50.69767361936468],[-123.2066815381109,50.69391710324491],[-123.20678561372475,50.6888293548851],[-123.20252577530287,50.686684204266584],[-123.19890741297259,50.68493929634749],[-123.19928857838738,50.68087484558909],[-123.19978577883977,50.678129158120704],[-123.19586162459376,50.67358004416397],[-123.1917497360299,50.669780038062484],[-123.18838942400897,50.666883196915954],[-123.18850184081833,50.662825373375355],[-123.18791947370165,50.659684410777736],[-123.18509492108124,50.65639018700938],[-123.18263115698309,50.65434956198502],[-123.17522121193059,50.651247510362815],[-123.17416955471941,50.647255047234744],[-123.17337810969572,50.641830149454385],[-123.17276955553314,50.63777637006099],[-123.17184775714294,50.6355525868535],[-123.16766586153591,50.63272507293829],[-123.16164145978915,50.63218515308167],[-123.15213777609524,50.63361202039032],[-123.14300040791153,50.63572402997191],[-123.14335854912896,50.635434836737545],[-123.14456590658975,50.63091545810623],[-123.14287185332776,50.62572322841341],[-123.13841924939769,50.621632236871555],[-123.13291114067295,50.620125109495106],[-123.12426477546641,50.61857154182437],[-123.11580253731435,50.61724457742275],[-123.10473497805145,50.61485125412139],[-123.09932584593572,50.61293533011162],[-123.096430924484,50.61175061294383],[-123.09388690063317,50.60907964723677],[-123.09457049956067,50.60616415469118],[-123.09449703781921,50.600732732831446],[-123.09012905981426,50.5965310194703],[-123.08424668026419,50.593012667162085],[-123.08046549623961,50.59178007108451],[-123.07135721009446,50.587653676440674],[-123.06357338159289,50.58340856864811],[-123.05916253749321,50.58166180656239],[-123.05114518074993,50.57907076766654],[-123.04476688266303,50.57887680106001],[-123.03957704462454,50.580391041644916],[-123.03764072678297,50.58274027186443],[-123.03836139792016,50.59091032663689],[-123.03994431917208,50.59673004506638],[-123.03758789239203,50.60222519161003],[-123.03588027388163,50.60194763872653],[-123.03020940388988,50.60020387535601],[-123.02362801686641,50.59811738837198],[-123.01768316961945,50.596892758352695],[-123.00543292537525,50.60072191049088],[-122.996680009038,50.60447668491762],[-122.99628341118579,50.60173028049362],[-122.99439945460189,50.593511590495716],[-122.99496520983027,50.57911635114277],[-122.99374716948668,50.57449081577109],[-122.98877184225735,50.570455409225346],[-122.9848916948135,50.567387971217],[-122.98155408339775,50.566144771988306],[-122.97607554376931,50.566683284752266],[-122.97221912511074,50.56601186179204],[-122.96546752474391,50.564044590135005],[-122.96148923933727,50.56057735820477],[-122.95821722165685,50.556706635029244],[-122.95324941690635,50.552843280239124],[-122.94747697978774,50.54898005328519],[-122.94594149480781,50.54870126298518],[-122.94300326097968,50.55076803397412],[-122.94307419151308,50.5582561991438],[-122.94267780855716,50.56242731982886],[-122.93982911010747,50.56586442401895],[-122.93949722929159,50.56866595259481],[-122.94047408177053,50.57654701519802],[-122.9418677056177,50.582254907194475],[-122.94361853653469,50.58687381923502],[-122.94407125410355,50.58687164120145],[-122.93818137648009,50.5904987767033],[-122.93578769448874,50.59324685535736],[-122.93339519340864,50.596803065251535],[-122.92516887630013,50.59980874969844],[-122.91117027645004,50.601972110063926],[-122.90248024090872,50.60366224547367],[-122.9030267051785,50.60394496646859],[-122.89801617804825,50.60704936837301],[-122.89472785145342,50.61020384997123],[-122.8833418596509,50.61298573288173],[-122.8741128578004,50.61484860228239],[-122.86165021954565,50.61699954250603],[-122.85745435302111,50.62033253634282],[-122.85772224594147,50.621359587287714],[-122.85623119625531,50.625475822306775],[-122.84826588245788,50.62864299299298],[-122.84198618845097,50.63117738449877],[-122.83554450277512,50.63519728697983],[-122.83333644071872,50.63920461781419],[-122.83254433054579,50.64240577837038],[-122.82879372087919,50.64618705107328],[-122.82539014981342,50.64785482984424],[-122.82467178756544,50.64739824387387],[-122.81748174686219,50.64633211444683],[-122.80130290633224,50.64540853604655],[-122.79240700124754,50.64543435601106],[-122.7856825394796,50.64836427600618],[-122.78092699685547,50.65009514815404],[-122.77886212433681,50.65084198192553],[-122.7740324111164,50.65359780040971],[-122.7670217151622,50.65515601010034],[-122.75993193112103,50.65642878853964],[-122.75237105599892,50.65559048315319],[-122.74346860761375,50.65235361755662],[-122.73850506267814,50.6504818809631],[-122.73284840318885,50.65054997554238],[-122.72729415030585,50.652905475015906],[-122.72154355440443,50.65309108966114],[-122.7164059735269,50.65264137226723],[-122.71028379240467,50.64997038276438],[-122.7074794487908,50.64552268079104],[-122.70413769571283,50.642616417578985],[-122.69318083610078,50.64177969785346],[-122.68770510032657,50.64401532919584],[-122.67969084377775,50.64168814497925],[-122.67511967306154,50.64106955750187],[-122.66749607570615,50.64570870222914],[-122.66031703557042,50.649491153421934],[-122.6582458503453,50.650294068885614],[-122.65151806760592,50.6504737393106],[-122.64136038528923,50.65048727714497],[-122.63686545815222,50.65243811049651],[-122.62995079774129,50.656045110804804],[-122.62645071836447,50.6566204411642],[-122.62446920257473,50.65565212590124],[-122.62231229350184,50.65268477365972],[-122.62104328784031,50.64902819155884],[-122.62156953701398,50.646175287477746],[-122.62407477335121,50.64337336729484],[-122.62928805249446,50.64033859831564],[-122.63521516160334,50.63816266415012],[-122.63440235824874,50.6380481757495],[-122.62622818336949,50.637143257686866],[-122.61740607665271,50.63544349366414],[-122.60986801856576,50.633624712198504],[-122.60725185253746,50.632827815785504],[-122.60285130936958,50.629974809637325],[-122.60202973064047,50.62454962441113],[-122.60389337759133,50.61843625099538],[-122.60685469333708,50.614837422591386],[-122.61284669017056,50.608202632989716],[-122.6136441189922,50.60362881701047],[-122.60959830149523,50.60060794203594],[-122.60708033661939,50.5994727321826],[-122.60572841704658,50.59770017701267],[-122.60043422524136,50.59473694765061],[-122.59396932537332,50.59360387186383],[-122.58668982574379,50.59332796989687],[-122.58588238406904,50.593154795715],[-122.57618458568852,50.59007930525544],[-122.5712437311646,50.5880838926155],[-122.57049473394582,50.587517221461624],[-122.56989287317322,50.58706187873278],[-122.57024849249864,50.586410081491856],[-122.57002389494656,50.58631771168352],[-122.56985534280787,50.58627878648618],[-122.56958790558639,50.586214883952834],[-122.56935113277925,50.58611988870501],[-122.56919823688564,50.58596845904691],[-122.56913572857528,50.58579114280895],[-122.56902456383759,50.585625817368715],[-122.56881798862963,50.58550589348578],[-122.56854493237469,50.58546936442309],[-122.56825630907707,50.58545146736086],[-122.56797706304317,50.58542654646229],[-122.56770890563791,50.585372177835595],[-122.56744921725257,50.585299523592795],[-122.56718953039045,50.58522685976468],[-122.56695857370639,50.58512529273451],[-122.56675045595425,50.58500251087597],[-122.56655894391753,50.58487068011751],[-122.56635837319459,50.58478803811809],[-122.5661410532824,50.58478582759297],[-122.56587041026246,50.58474092955428],[-122.56559431227893,50.584721163460934],[-122.56537299533522,50.58460921421939],[-122.56513645436038,50.584511401222386],[-122.56487483973393,50.584440929725695],[-122.5646048854282,50.584387055424614],[-122.56432706138101,50.58434362267103],[-122.5640486883739,50.58433052813017],[-122.56377597199105,50.584382258897996],[-122.5634997132518,50.584387774616985],[-122.56283406250982,50.58432898436299],[-122.56094089855964,50.58348909102284],[-122.55992992047253,50.58272086083368],[-122.55908623140253,50.58207752772149],[-122.55687596611075,50.58108608664871],[-122.55550316856188,50.57991871624142],[-122.55402266830552,50.579073479837135],[-122.55283776012278,50.57877817458435],[-122.55181880970078,50.57883203949453],[-122.55077194080073,50.579019388897514],[-122.55060717676433,50.579023831737466],[-122.55041685852983,50.57901568109189],[-122.5502893915346,50.57899486333912],[-122.55014286698487,50.57896895713367],[-122.54998085582466,50.57896055935499],[-122.54951555808937,50.57898772610229],[-122.54922466023399,50.57902311673004],[-122.54903485867064,50.5790312777499],[-122.5487302808198,50.57901452438702],[-122.54833454421856,50.579056769596654],[-122.54807070448562,50.57908512670461],[-122.54794771125661,50.57909817442281],[-122.54766761165934,50.579084984102465],[-122.54754853626173,50.57902394840475],[-122.54747368411489,50.57898564713525],[-122.54722318736502,50.57888623580873],[-122.54689529842027,50.57880466795047],[-122.54652989981902,50.57870506081973],[-122.54623982454346,50.57866064297348],[-122.54590199900713,50.5786164235383],[-122.54567894678405,50.578597129385294],[-122.54547546275641,50.578645334695075],[-122.54529232674675,50.57868181316652],[-122.54511723659573,50.57870560714068],[-122.54503279088532,50.57870016892834],[-122.54501166826147,50.57869895517825],[-122.54498245936345,50.57868792908527],[-122.54491552459619,50.57866167272305],[-122.54483503662759,50.5786507447149],[-122.54458656196702,50.578617166895356],[-122.54439319550018,50.578579678981114],[-122.54422022213849,50.57852989018115],[-122.54413431981754,50.5784743784903],[-122.54408545371858,50.578443070392716],[-122.54397967668775,50.57839312030128],[-122.54373021854627,50.578326347122534],[-122.54354016036869,50.57833786369437],[-122.54348126667952,50.57834502810632],[-122.5433952270002,50.57836034343164],[-122.54331568173407,50.57838317306769],[-122.54314351944953,50.578391872166236],[-122.54285353269064,50.57836936773536],[-122.54267784911228,50.578331868688664],[-122.54262132636875,50.578308183141054],[-122.54255546693445,50.57829096223989],[-122.54250496481104,50.57828095557142],[-122.54246143084649,50.578272298791674],[-122.54216624423016,50.57822545358409],[-122.54136353570956,50.57811111804273],[-122.5404168085944,50.57798441802704],[-122.53988868667108,50.57790896832365],[-122.53973692390385,50.57788231848478],[-122.53952412001229,50.57784478382764],[-122.53911523994502,50.577805078663374],[-122.53877349555711,50.57783492033602],[-122.53859405228287,50.577892298228626],[-122.53846713276018,50.57795636536905],[-122.53829472607123,50.5780831119768],[-122.53807783102475,50.57823657269729],[-122.53782996310473,50.5783789590676],[-122.5376055904786,50.57849171063191],[-122.5374972116936,50.57854455298388],[-122.53737085548575,50.57857828881152],[-122.53712254683654,50.578588547811414],[-122.53685043473729,50.57849462764054],[-122.53659567262707,50.578359080446766],[-122.53640313402971,50.578310927621615],[-122.53628327874152,50.578329115165296],[-122.53616793014008,50.578380614908184],[-122.53604401437958,50.578451527861915],[-122.53596841804628,50.578491897830474],[-122.53593726840185,50.57850610158563],[-122.53590624795628,50.57851862737103],[-122.53588791933176,50.578527051129164],[-122.53587023156197,50.578550111022714],[-122.53573116817834,50.57863404375018],[-122.53538374267094,50.57878343407486],[-122.53506299418737,50.57890780396341],[-122.53496102595405,50.578946227453685],[-122.53474589594937,50.57891591487636],[-122.53424371136565,50.57884798349611],[-122.53367226835294,50.57889876070962],[-122.53313741576244,50.579117075279825],[-122.53285088880563,50.57927904160814],[-122.53279963544377,50.5793246655801],[-122.53278625145673,50.579337740266375],[-122.53279089406557,50.57934632189835],[-122.53281566539573,50.57936901383217],[-122.53279443158259,50.57955274088095],[-122.53270114977998,50.579937166751066],[-122.53242346921145,50.58023657506373],[-122.53193690299679,50.58035575810571],[-122.5316357795672,50.580408773765136],[-122.53158143796897,50.58042562618479],[-122.53153402157648,50.58044438549599],[-122.53148806986657,50.580673438706846],[-122.53119928006308,50.581070880345756],[-122.53053874219424,50.581244788051826],[-122.53006313874445,50.581244569350304],[-122.52989913293595,50.58126193970417],[-122.52973172942596,50.58127751284138],[-122.52954953244046,50.58127857466105],[-122.52943811652466,50.581255985111795],[-122.5294074055521,50.58124153506662],[-122.52938718058085,50.581251589615135],[-122.52933003472064,50.5812818453585],[-122.52927692510028,50.58132853418727],[-122.52926635415248,50.58139678805662],[-122.5292406336508,50.581478061110865],[-122.5291743540436,50.581535024534055],[-122.52909745887865,50.58156916124176],[-122.5290604622989,50.58165907699111],[-122.52906061561858,50.58179456713305],[-122.5289497087353,50.581879927979244],[-122.52868762647964,50.581953825350666],[-122.52845083337995,50.582043685204404],[-122.5283224589355,50.58212625168578],[-122.52822526054246,50.58224014773201],[-122.5281567922882,50.58237124754157],[-122.52799222844709,50.58255612182202],[-122.52771314876169,50.58280431409873],[-122.52757586268876,50.58297936264991],[-122.52756849147,50.58309774401752],[-122.52754922612941,50.58325567200867],[-122.52743125482327,50.58343244757709],[-122.52718840030325,50.583577774103375],[-122.52698158285436,50.58366856679074],[-122.52672093610519,50.58376948833196],[-122.52637327929544,50.58389804910226],[-122.52621315597395,50.58395657778729],[-122.52621924735642,50.5839921796347],[-122.52625102552962,50.584107295082084],[-122.52632326560372,50.584270886439725],[-122.52639392694243,50.58440913568335],[-122.526456170376,50.58451901398802],[-122.52630471928568,50.58469417630064],[-122.5256305668915,50.58492891124139],[-122.52485468387022,50.585107054697666],[-122.52451740468727,50.58519264326107],[-122.52442990251028,50.58524949861087],[-122.52436371114356,50.58528228462499],[-122.52430471864011,50.585290560444506],[-122.52410431034423,50.58520672076835],[-122.52379114575504,50.58502603867436],[-122.52364258908706,50.5849348237233],[-122.52358956886079,50.58495734431153],[-122.52341983854538,50.58502567882901],[-122.52317538500408,50.585145654266746],[-122.52298557145708,50.585267894622014],[-122.5229704512655,50.58537198402402],[-122.52306056513048,50.58548723268297],[-122.52309373747873,50.5855613503691],[-122.52307969884603,50.58558283139274],[-122.52306224799928,50.58562557688058],[-122.5229019598246,50.585800458668025],[-122.52258882445452,50.586076806583236],[-122.52240703086466,50.58623246865472],[-122.52236118158541,50.586276565961874],[-122.5222933393279,50.586330661301716],[-122.52221909084062,50.58637612842453],[-122.52214747429174,50.5864104255684],[-122.52205752249976,50.58645315303756],[-122.52196770099196,50.586494193530676],[-122.52193301327743,50.586508282930126],[-122.52193541377862,50.58652297415752],[-122.52190383523316,50.586588321876306],[-122.52182750500769,50.58672929098603],[-122.52178722259359,50.586884312244365],[-122.5217807029536,50.58699147657885],[-122.5217601712311,50.58707403442047],[-122.52175599292723,50.587150924265096],[-122.52176828475085,50.58724350286094],[-122.52174442737659,50.58734619447561],[-122.52169551101456,50.58740706042274],[-122.52166709745681,50.58743147378695],[-122.52165661487669,50.587475552211004],[-122.52164335562303,50.587555531066144],[-122.52163125387264,50.58764340735015],[-122.5216193109629,50.587752093010586],[-122.5215835524287,50.58789433031162],[-122.52152360258448,50.58805210936596],[-122.52146538740963,50.58818745621507],[-122.52143302621556,50.58826289813232],[-122.521421646643,50.58829570526236],[-122.52142073536048,50.5883074866219],[-122.52141800289814,50.588342812753716],[-122.52141424365004,50.58843713804448],[-122.52140643557485,50.58853808264766],[-122.5214025895293,50.588633529522255],[-122.52142118580798,50.5887589103662],[-122.52148768886829,50.58892795546986],[-122.52157393124229,50.58911616438074],[-122.52165454942445,50.58928564158278],[-122.52171891380357,50.589436630442556],[-122.52175176981466,50.58960630525419],[-122.52175149727945,50.58976988041405],[-122.52173206358401,50.5898839532213],[-122.52169693942886,50.58997224285076],[-122.52164213481062,50.59008633414165],[-122.5215945463001,50.590221446362996],[-122.52155334818727,50.59031966488473],[-122.52150503563878,50.590372679299605],[-122.52144075763098,50.59042632784951],[-122.52134414598521,50.59050931299108],[-122.52121421561634,50.59061150298277],[-122.52111751638743,50.590695609512636],[-122.52108677256882,50.5907272534049],[-122.52106688855329,50.59073281991279],[-122.5210394707571,50.5907443300936],[-122.52101747611772,50.59075431886918],[-122.5209960739346,50.59077950893561],[-122.52094401450647,50.59083522124271],[-122.52089669823859,50.59087534141149],[-122.52086854238155,50.590896389660486],[-122.52083581743011,50.59093077783007],[-122.52079495045297,50.590978969839725],[-122.52070001319106,50.59106314011032],[-122.52038701710522,50.59124561008809],[-122.51966687605264,50.59159298648292],[-122.51885573210656,50.591973489387726],[-122.51847877415008,50.5921595746361],[-122.51843434745852,50.59218516810665],[-122.51841829530292,50.592186914457876],[-122.5183682446412,50.59219377620407],[-122.51828621954644,50.59220245268178],[-122.51818341355595,50.5922054238817],[-122.51813211963326,50.592205500717654],[-122.5180598273995,50.592202680773575],[-122.51789446352778,50.592191317527735],[-122.51771783516531,50.592165552022294],[-122.51743209876035,50.592109954281895],[-122.51703823839846,50.592034664101526],[-122.51677862082595,50.59198437050314],[-122.51666210888068,50.591958803256816],[-122.51654990824701,50.59192324300088],[-122.5163793299919,50.59186505948287],[-122.51622036305294,50.59181680045247],[-122.51615109613026,50.591797766848494],[-122.51610080161477,50.59178494885671],[-122.51601071130756,50.591760765864464],[-122.51594492996809,50.59174239893075],[-122.51592578386028,50.59173842644414],[-122.5158580376026,50.59169976917639],[-122.51573576492116,50.59161161629523],[-122.51560854760773,50.59151881112833],[-122.51551779760632,50.59145750449142],[-122.51545479804736,50.59140324612118],[-122.51537053198793,50.591303915521046],[-122.5152635222716,50.59117857979718],[-122.51517198319787,50.59108182750737],[-122.51509815572715,50.591007558626046],[-122.51504974879893,50.59094757775595],[-122.51501987922204,50.59089942069917],[-122.51498441248059,50.59085502793313],[-122.51495147499043,50.59082363957077],[-122.51492781901005,50.59080940674021],[-122.51486005762872,50.590793792366405],[-122.51468707001062,50.59074395841739],[-122.51448055477185,50.59064754332978],[-122.51431278368088,50.59053042185429],[-122.51416720942632,50.59042354775934],[-122.51407733302428,50.590351023882114],[-122.51405269586094,50.59032664119694],[-122.51404350177371,50.59030836397266],[-122.51401885784297,50.59023844150134],[-122.51400557414128,50.59011322547251],[-122.51402136157567,50.58995519058747],[-122.51405228713077,50.589807191222974],[-122.51406786414611,50.589697495594564],[-122.51405471807341,50.5896161324183],[-122.51401879396334,50.58955485103571],[-122.51394438756662,50.58951091971608],[-122.51383219448718,50.5894753655894],[-122.51367258693506,50.58943551029249],[-122.51346913653197,50.58939090787555],[-122.51344834510694,50.58929412209889],[-122.51356891468618,50.589130376051855],[-122.51355826623882,50.58899399908545],[-122.51345383883064,50.588881109438354],[-122.51337380583897,50.58877291479219],[-122.51333280797724,50.5887086677551],[-122.51332374529812,50.588688703549025],[-122.51328525051896,50.58861498265886],[-122.51322279160696,50.588485409757496],[-122.51317691177259,50.58839290147804],[-122.5131444304122,50.58833286087343],[-122.5130958988674,50.58827455687445],[-122.51299246217545,50.58821734731076],[-122.51286049523333,50.58816318303894],[-122.51277747035651,50.5881392184997],[-122.51274619506951,50.588132049895705],[-122.5127295106655,50.58811915933419],[-122.51271678934974,50.58810077135995],[-122.51270772637052,50.58808081606198],[-122.51266032631926,50.58800793104809],[-122.51256901034357,50.587862845797005],[-122.51252654913411,50.58774908206331],[-122.51251449925738,50.58769923393581],[-122.51247182648788,50.58763380959813],[-122.51240671807598,50.58753844940325],[-122.51230734761462,50.587406036577825],[-122.51215618627997,50.58725738369137],[-122.51201624906089,50.587169229515965],[-122.51191654266161,50.5871323736197],[-122.51180281087582,50.58709395354791],[-122.51163084098361,50.58703122070113],[-122.51147045611098,50.586955925554165],[-122.51135308604641,50.58689602864652],[-122.51124754265467,50.58684324845307],[-122.51119150396266,50.58681338287408],[-122.51117473348454,50.58680161366012],[-122.51112631701888,50.586764674435514],[-122.511031029804,50.58669366870281],[-122.51089994053312,50.58662827702369],[-122.51075759421065,50.586594022349985],[-122.5106198009059,50.58656946260216],[-122.5105122575841,50.586542478512456],[-122.51041819403983,50.58650130083597],[-122.51024696845016,50.58642902771259],[-122.5100017402092,50.58635331747235],[-122.5097584947809,50.586274853540054],[-122.50954486744065,50.586179329006264],[-122.5093150604429,50.586087227017764],[-122.50905095374723,50.58600417619614],[-122.50878094720528,50.58592880089385],[-122.5084981142116,50.58585921067706],[-122.50820765967391,50.5857966931525],[-122.50791646604911,50.585743703978245],[-122.50763938517147,50.58569115705281],[-122.50744830571215,50.58564693106858],[-122.50739126972671,50.58562995744381],[-122.50729912720783,50.585609641928386],[-122.50706924038309,50.58556419687815],[-122.50683406202263,50.58551858518278],[-122.50675039221177,50.58550302358181],[-122.50672674206297,50.58539771780451],[-122.50666080066557,50.58515391509943],[-122.50659185474335,50.584903271897005],[-122.50653824016501,50.584728440522554],[-122.50647626334239,50.584570211510574],[-122.50643669479211,50.58446497228225],[-122.50639869442735,50.584385075345416],[-122.50634157575503,50.58418708027469],[-122.50628391504891,50.58383672487761],[-122.50625445547512,50.58351030840359],[-122.50624087077031,50.58327545276857],[-122.50623029056966,50.58304744644962],[-122.50622066807084,50.58289816486452],[-122.50621161010949,50.582832668726674],[-122.50620963103259,50.58265327899896],[-122.50622128965531,50.58216174217135],[-122.50623924433644,50.581429802915814],[-122.50625554247515,50.58081023616772],[-122.50621822400562,50.5805167351733],[-122.50609776488587,50.58038309456901],[-122.5059920486897,50.58026452434445],[-122.50594806428522,50.58019343348556],[-122.5058980045167,50.580132270842974],[-122.50582980625911,50.58005423991234],[-122.50578915360296,50.5800085468395],[-122.50574220733921,50.579975590483954],[-122.5056479664876,50.57991416413359],[-122.50553713375253,50.57983872432456],[-122.505409034428,50.579735200001636],[-122.50531536259548,50.57962094703552],[-122.50527040243844,50.57949416561366],[-122.50524166421684,50.57936340543749],[-122.5052342850036,50.57929908596149],[-122.50523417694178,50.579277720021764],[-122.50520310561548,50.579245262144944],[-122.50516511039419,50.57921089569701],[-122.50512798597491,50.579165322141385],[-122.50507474955216,50.57909956179174],[-122.50502477933294,50.57903727706874],[-122.50497683443577,50.578971682917455],[-122.50492875930405,50.57890776666423],[-122.50489873424425,50.578861849405264],[-122.50487837623535,50.57882804602001],[-122.50486548645213,50.57881190015595],[-122.50476987803422,50.578745365836724],[-122.50459035341318,50.57862111042574],[-122.50448451209773,50.578549756865016],[-122.50447453986808,50.57854157305321],[-122.50445344181435,50.57851729875036],[-122.50440140396934,50.57845888838707],[-122.50428021520736,50.578334774657904],[-122.50416825864878,50.57822837379586],[-122.50412175126442,50.57818980864986],[-122.50406770935258,50.57815719507393],[-122.50395579429977,50.5780957691345],[-122.50382186639644,50.57802185000232],[-122.50366618739699,50.57793207277334],[-122.50350909474827,50.57783774447273],[-122.50341473029401,50.57777800297008],[-122.50335261235941,50.577735573662146],[-122.50328413728347,50.57768394967522],[-122.50322258667647,50.57763422535625],[-122.50315075891547,50.57758024717205],[-122.50305374003851,50.577509178374974],[-122.50296149003279,50.57744499651184],[-122.50283916989983,50.57738100244664],[-122.50259224448247,50.57725967911177],[-122.50234893493754,50.577137344526065],[-122.5022656549201,50.57709424904444],[-122.50222001803137,50.57708999851004],[-122.5020981314404,50.57706592709988],[-122.50196873495106,50.57702475411455],[-122.5018014536829,50.576970588262846],[-122.50153297146268,50.576899180140394],[-122.5012940610287,50.57681126961987],[-122.50118614096603,50.576721299782946],[-122.50108143595206,50.57652181119353],[-122.50066162269707,50.57605492320187],[-122.49999644059555,50.575560640214185],[-122.49961264136384,50.57533550124955],[-122.49955362118577,50.57529878874303],[-122.49953067643929,50.57527557951384],[-122.49947190019871,50.57521301448049],[-122.49940482987203,50.57514344222699],[-122.49934265808491,50.57507907920179],[-122.49926496269399,50.57500973908985],[-122.49916954519576,50.57494095643879],[-122.49908370528642,50.57488540975329],[-122.49900637758866,50.574834070682336],[-122.49894117717923,50.574785919694115],[-122.49890993890882,50.574755703099854],[-122.49889400574496,50.57473327210411],[-122.49887326164985,50.574704510200355],[-122.49884598707146,50.57466879657831],[-122.49880578213173,50.57461750159069],[-122.49875935268076,50.57455532475172],[-122.4987012591587,50.574461298714205],[-122.4986211823423,50.57433172550352],[-122.4985533810941,50.57422615015882],[-122.4984951753785,50.57415628958975],[-122.49844179749002,50.57411525657464],[-122.49839385842732,50.5740951998669],[-122.49824283154888,50.57405952047296],[-122.49795216213117,50.57400089644371],[-122.4977225619638,50.57395263192217],[-122.49765394158825,50.573925735145394],[-122.49760410891197,50.57390730048276],[-122.49750842442317,50.57388742182088],[-122.49745970079358,50.57387745020323],[-122.49740957225305,50.573817404883755],[-122.49717678921022,50.57369651332745],[-122.49685795048951,50.57363644140291],[-122.49672348610639,50.57363782769355],[-122.49668534405025,50.573628189035595],[-122.49666139682549,50.5736178821415],[-122.49663466535142,50.57359792598804],[-122.49659099747352,50.573568441443896],[-122.49654552281079,50.57353945764569],[-122.49651006119689,50.57351810208651],[-122.49648319847702,50.573499832792116],[-122.49646806964503,50.5734897946526],[-122.49643582906403,50.573472480290285],[-122.49627936746094,50.57341583073068],[-122.49602748566019,50.57333593617667],[-122.49590992582132,50.57330187453662],[-122.4958630973827,50.57329027985155],[-122.49579426106395,50.57326618143884],[-122.49571858886591,50.57323906118578],[-122.4956620091645,50.573216482233484],[-122.49558967329521,50.57316922852606],[-122.4954684957651,50.57306814844399],[-122.49535591746104,50.57297015458338],[-122.49529914757056,50.57292733093325],[-122.49523928839712,50.57287877909409],[-122.49516693762503,50.57280903736834],[-122.49500604341458,50.57265049594456],[-122.49338428151913,50.57170662821985],[-122.49206558483435,50.570980301625454],[-122.48974777587487,50.570032406546304],[-122.48735828963673,50.569233985215554],[-122.48504188556065,50.56824779977255],[-122.48164760491943,50.56730335385317],[-122.47971960258452,50.56670994472576],[-122.47874301753198,50.56635969903919],[-122.47860130236664,50.56636363962801],[-122.45703986356538,50.56275302960728],[-122.45704062960972,50.56263106055453],[-122.45703985689285,50.56248373883074],[-122.45704558733398,50.56122121314824],[-122.45704553997751,50.56092999013015],[-122.45704653024319,50.560782724281694],[-122.45668911906452,50.56056331870001],[-122.45569011631545,50.560142430300445],[-122.45448042555289,50.559681638737395],[-122.45337623399656,50.55918316196883],[-122.45213319096663,50.55887701468014],[-122.45077904036569,50.5584784769748],[-122.45017291776486,50.5583208217369],[-122.44906330178124,50.558228040412],[-122.44803317420661,50.558068640285285],[-122.44739522307859,50.55797854200842],[-122.44510671190753,50.55808866808371],[-122.44442220196449,50.55816291147469],[-122.44282564025198,50.55819392107282],[-122.44190764992702,50.558136434037095],[-122.44089047779224,50.5579475797799],[-122.43997952492168,50.557845891574615],[-122.43951733164637,50.55779061065672],[-122.43901938321102,50.55751716819174],[-122.43852227685844,50.55716616469744],[-122.43805255290553,50.556960520471435],[-122.43759706712342,50.556909943777065],[-122.43686823456838,50.55689670598005],[-122.4358349892616,50.55691137704347],[-122.4348320526002,50.55694499242159],[-122.43250173862549,50.556735303618765],[-122.43087691016521,50.556543719790604],[-122.42949799817124,50.556304355322254],[-122.42825464535507,50.55602715787041],[-122.42774696559196,50.55585510602463],[-122.42717338366813,50.555600540784965],[-122.42623518495621,50.555286466888646],[-122.4255528089697,50.55508911478641],[-122.42491817848749,50.55482470285532],[-122.42407164656812,50.554491626304035],[-122.42338980263273,50.55426559935903],[-122.42288230298745,50.554180678427144],[-122.42186499105205,50.554039990540026],[-122.41966890931583,50.55354480544753],[-122.41833600083231,50.55315103792264],[-122.41759476989786,50.55282804842909],[-122.41721813795418,50.552564590437875],[-122.41688818557151,50.55229195787125],[-122.41647824256911,50.552202846658496],[-122.416158545716,50.55220096851133],[-122.41571653092109,50.55231490400276],[-122.4153377296791,50.55232292891337],[-122.41513942986131,50.552283366943705],[-122.4149297421181,50.55209837385267],[-122.41479426197452,50.55191353387368],[-122.4146140698664,50.55175760270793],[-122.41439035890009,50.551504697723054],[-122.41407408982451,50.55119369884926],[-122.41366899821774,50.55075558509747],[-122.4135198242573,50.550609657112666],[-122.41326355130782,50.55036637629933],[-122.4131476694436,50.55020183946046],[-122.41266298173264,50.54952107590744],[-122.41232420791219,50.54887201522688],[-122.41170157903736,50.547661111482995],[-122.41119793813851,50.54695273881306],[-122.41010099308403,50.546173483845386],[-122.4090650869492,50.545449029276604],[-122.40784157688245,50.54457400994607],[-122.40700141005715,50.54363378048492],[-122.40531131437422,50.5426070231511],[-122.4041456178757,50.5420717259192],[-122.4025067490573,50.541665598307354],[-122.40244837358654,50.54166652422446],[-122.40217904976045,50.541610010258324],[-122.40190439498768,50.541553889746055],[-122.40162915783098,50.54150506328046],[-122.4013560253301,50.54149621876858],[-122.40108160659867,50.54152556421476],[-122.40080724596046,50.54157627598047],[-122.40053731959702,50.54163780876935],[-122.40027254406913,50.54170119898854],[-122.40002020543464,50.54178579885781],[-122.39999852144882,50.54179184328406],[-122.39976646319164,50.54186584578944],[-122.39949629572193,50.541908261161105],[-122.39921273565203,50.54191931424784],[-122.39892940009112,50.54192755819278],[-122.39864805053296,50.54193305907645],[-122.39836493874775,50.5419385021377],[-122.3980831848779,50.54194905315517],[-122.39780940197966,50.54199246279391],[-122.39754783036862,50.542059890726655],[-122.39730203996731,50.542150877044605],[-122.39706262438577,50.54225049863227],[-122.39680424864012,50.54230003679073],[-122.39651750903924,50.54228455019416],[-122.39626913334654,50.54236364792078],[-122.39602519067067,50.542453566957334],[-122.39576994477831,50.54253018284873],[-122.39549675015004,50.5425882332929],[-122.39522334286016,50.54258273844072],[-122.39495000392033,50.542532265828726],[-122.39467458939781,50.54248565637729],[-122.39439827643156,50.542450270900254],[-122.39412205445434,50.54241375419412],[-122.39384610173545,50.54237388106823],[-122.39357204680685,50.542332377603955],[-122.39329812752746,50.54228918662417],[-122.39302836142389,50.54223826735623],[-122.39276297437357,50.54217680245082],[-122.39249379410296,50.54211858720265],[-122.39223012606014,50.5420577345183],[-122.39200692426665,50.54195490679877],[-122.39189660787872,50.54178827464283],[-122.39184362421264,50.54161170123894],[-122.39179963211686,50.541433161738375],[-122.39172871374798,50.541259937054605],[-122.39162553845313,50.54109241178418],[-122.39150984935881,50.54092672898451],[-122.39139411580523,50.54076161130134],[-122.39129266040031,50.5405946991399],[-122.39125188063728,50.540420203624635],[-122.39126816176316,50.54023913193992],[-122.39117018684145,50.54007289927807],[-122.39105075349005,50.53990990078202],[-122.3909223754612,50.53974830282144],[-122.39079585032339,50.53958564034213],[-122.39068184028247,50.53942113517722],[-122.390612781338,50.539246845019335],[-122.39059902007652,50.53906592176293],[-122.3904583208041,50.53892584583143],[-122.39019697506235,50.5388583248769],[-122.38993174704065,50.53879516612097],[-122.38969533311938,50.538703148341064],[-122.38949902522116,50.5385736426614],[-122.38929531133608,50.53844838490319],[-122.38909521182757,50.538322128671226],[-122.38889890803367,50.53819261289951],[-122.38870635390349,50.538060411850395],[-122.38851185898015,50.53793039631943],[-122.38830620809964,50.53780733149684],[-122.38808953730349,50.53768952150986],[-122.38785159556664,50.537594642973346],[-122.3875960426675,50.53752111450855],[-122.38733087079981,50.53745739314827],[-122.38706375771184,50.53739585699977],[-122.38679858733396,50.537332134360604],[-122.38654123103414,50.537259102452495],[-122.386293630212,50.53717458446378],[-122.3860500043579,50.53708457268171],[-122.38581026350472,50.5369901886996],[-122.38557070373213,50.536893561051684],[-122.38533484895602,50.536794804373635],[-122.38509718789223,50.536696555132835],[-122.38486124512976,50.5365989189957],[-122.38462168947217,50.53650228925738],[-122.3843838520931,50.53640627262241],[-122.38414615047591,50.536308577600856],[-122.38391021180539,50.53621093939981],[-122.38367440892262,50.53611162281984],[-122.38344045979697,50.53601123253451],[-122.38321405448843,50.53590490700966],[-122.3830325933825,50.535766875734],[-122.3828916523662,50.535608230913205],[-122.38272451415241,50.53546784952727],[-122.38244997079163,50.535433047721924],[-122.38217128234571,50.53544983738239],[-122.38189015621654,50.53547497624605],[-122.38160880407828,50.53550292280407],[-122.3813277667241,50.535526947649146],[-122.38104709038365,50.53554647654165],[-122.38076763403525,50.53557280049015],[-122.38052833336195,50.53556106520391],[-122.38031196347791,50.53543988401324],[-122.38012324056548,50.5353044177536],[-122.37999130093161,50.53514381303485],[-122.37980605922228,50.5350090172902],[-122.37958782580264,50.53477925444954],[-122.37945765146254,50.5346187064034],[-122.37932747804994,50.534458158173486],[-122.3792188083517,50.53429381246876],[-122.37916217913124,50.53411935971679],[-122.37914851086292,50.53393786864261],[-122.37912942233534,50.533757883144176],[-122.37911205031027,50.53357852028974],[-122.37909648495878,50.533398658512034],[-122.37907382782461,50.53321912332246],[-122.37905324869186,50.533035715528285],[-122.37894200988876,50.532881405973946],[-122.37873844055672,50.532755015412015],[-122.37864798146364,50.53258394834302],[-122.37855250766518,50.53240935315227],[-122.3783328636374,50.53230716793155],[-122.37808164622771,50.53222420313166],[-122.37782089994688,50.53214991415313],[-122.37755767023413,50.53208454864143],[-122.3772836481262,50.53204356082063],[-122.37700321290788,50.53201642406973],[-122.37673379745789,50.531962099936145],[-122.37648235964072,50.531881930924115],[-122.37623110323888,50.53179951819848],[-122.3759816997526,50.531716040794706],[-122.37573234268756,50.53163199755259],[-122.37548312160916,50.53154627587659],[-122.37523579826369,50.53145893324501],[-122.37499231568516,50.531367775043464],[-122.37479820620202,50.53125573704301],[-122.37454284636036,50.53118049117669],[-122.37428748664891,50.53110525368959],[-122.37403208299455,50.531030571906726],[-122.37377311199265,50.530956330825475],[-122.37351405079518,50.53088321967454],[-122.37325485530081,50.53081178577836],[-122.37299380860101,50.53074141532548],[-122.37273258202605,50.53067328738821],[-122.37246941385528,50.53060734444378],[-122.3722060657386,50.530543644005206],[-122.37194082150428,50.53048156327162],[-122.37167363486164,50.53042167647198],[-122.37140631372417,50.53036346688958],[-122.37113885806261,50.5303069345237],[-122.37086945990106,50.53025259606843],[-122.3705971711193,50.53021221449559],[-122.37031309116712,50.53020855614923],[-122.3700306825131,50.53020607620325],[-122.36974877155366,50.53019742244392],[-122.3694670864045,50.530185968542895],[-122.3692015760288,50.53012725491645],[-122.3689600105242,50.53003445409768],[-122.36875083532408,50.52991235834115],[-122.36853402712606,50.529797317522075],[-122.36828257110777,50.52971768605355],[-122.36801950548872,50.52965061093548],[-122.36775192224344,50.52959575720731],[-122.36747024136224,50.529584298239335],[-122.36718851502188,50.52957340382589],[-122.36690669905363,50.52956362129011],[-122.36662497297876,50.5295527254486],[-122.36634541629341,50.529536834989834],[-122.36606337410267,50.52952985871143],[-122.36578128710336,50.52952343801286],[-122.36549974259749,50.529510296193486],[-122.36522127292918,50.52948094415202],[-122.36494293979065,50.529449904582016],[-122.3646585970845,50.52942767284842],[-122.36442174061818,50.52934232967083],[-122.36421655765545,50.52921472379558],[-122.36402411429164,50.529082478569386],[-122.36379593743024,50.52897717652178],[-122.36354106099698,50.52889630634184],[-122.36326874205024,50.528856463051355],[-122.36298756477967,50.52883882861228],[-122.36270236664039,50.52882724221063],[-122.36242100930241,50.5288118404889],[-122.36213928901167,50.52880093327207],[-122.36185905364506,50.52881537135662],[-122.36158256820673,50.52882711573583],[-122.3612907263157,50.5288321760397],[-122.36110202581929,50.52876302158234],[-122.36100658313256,50.52858896681071],[-122.36090359600028,50.52842085416899],[-122.36083643064433,50.528246600899614],[-122.36078358531027,50.52807000082264],[-122.3607361149872,50.52789246121785],[-122.36071701190828,50.527713592796],[-122.36071566004772,50.5275336235606],[-122.36070193173542,50.52735381559314],[-122.36068287397691,50.527174390752684],[-122.36066386205174,50.5269944006021],[-122.3606341448442,50.52681575098096],[-122.36058663147361,50.52663876733517],[-122.36053022031041,50.52646261663718],[-122.36045953631951,50.52628824729977],[-122.36038700074097,50.526114941729915],[-122.36037151268756,50.525935075695834],[-122.36034712745327,50.52575603364003],[-122.36036492633156,50.52557950722212],[-122.36042152295157,50.52540368519181],[-122.36046597021175,50.52522521597855],[-122.36050165555298,50.52504589288047],[-122.36052491914879,50.524867296288825],[-122.360514760962,50.52468703786572],[-122.3604459318826,50.524511604286744],[-122.36029747106166,50.52435998349529],[-122.36010144644158,50.52422873682992],[-122.35988843674862,50.52411099436208],[-122.3596699176665,50.52399587772175],[-122.3594626027499,50.523873256047096],[-122.35926274291303,50.52374581336215],[-122.35905913438125,50.523621063228966],[-122.35884233547851,50.523506567897215],[-122.35860448521127,50.52341218144436],[-122.35835344510868,50.52332804063685],[-122.3581119376516,50.52323522445218],[-122.35787820300013,50.523133657250966],[-122.35764821853684,50.523029405633025],[-122.35741828012986,50.52292459722961],[-122.35718640072685,50.522821964730824],[-122.35695063605776,50.52272371143236],[-122.35671130471496,50.52262589837416],[-122.35646447535802,50.52253346151074],[-122.35621095688258,50.52245823052072],[-122.35594302198326,50.522408399421565],[-122.35565918262772,50.522380527685556],[-122.35537334616747,50.52237733861526],[-122.35509784296103,50.52239921883532],[-122.35482282926104,50.52243686704191],[-122.35455043069952,50.52248583684337],[-122.35427762263672,50.52253985749593],[-122.35400829085057,50.52259455837321],[-122.35373891337314,50.522649814889476],[-122.353474365241,50.52271085203212],[-122.35320796422577,50.52277295227514],[-122.35294178989461,50.522832243484146],[-122.35267259134692,50.52288525427708],[-122.35240172164468,50.52293708501307],[-122.35212913501879,50.52298830094674],[-122.35185524138686,50.523033841583896],[-122.35157841468133,50.52307198018047],[-122.3513025870031,50.52309778092433],[-122.35102306478734,50.523103784584194],[-122.35073984912786,50.52308998216021],[-122.35045754248388,50.52306496341955],[-122.35017912243366,50.52303557347535],[-122.34990106633813,50.523001696596246],[-122.34962536325921,50.52296058228527],[-122.34935187586522,50.52291392635565],[-122.34908431024012,50.52285958354662],[-122.3488371766478,50.522771059717954],[-122.34858579462959,50.522691383024195],[-122.34832053748038,50.52263037588409],[-122.34804940627194,50.522576480020675],[-122.34777574166746,50.52253205433597],[-122.34749999755739,50.52249149999589],[-122.34723451601003,50.52243328965832],[-122.34697938826686,50.5223563018354],[-122.34673022731803,50.52227108001548],[-122.34648870433261,50.52217879475536],[-122.34625129674619,50.52207933022659],[-122.34600385488416,50.521994720980395],[-122.34573449157838,50.52194087737117],[-122.34546304872383,50.521890905091325],[-122.34520774505133,50.521816156265906],[-122.34496057964735,50.521728179999116],[-122.34471341520813,50.52164020317333],[-122.34445811419852,50.52156545260352],[-122.34417758188123,50.521540475835856],[-122.3438970498748,50.52151549835959],[-122.34361624502563,50.521493884842876],[-122.34333615492926,50.521485222006675],[-122.34305550370301,50.5215052206076],[-122.3427749433,50.521524096944276],[-122.34249526266952,50.52151038947692],[-122.3422151872129,50.52147979997986],[-122.34193732888622,50.52144366000863],[-122.34166662203165,50.5213847059901],[-122.34139752563229,50.5214146352095],[-122.34112939955101,50.52147609230124],[-122.34085383383125,50.521520426345745],[-122.34057219421311,50.52153083193259],[-122.34029360781805,50.521503660283926],[-122.34001714760569,50.52147205976034],[-122.33973924587987,50.52143647058529],[-122.33946319629825,50.52139982617925],[-122.33918723905587,50.52136205056097],[-122.33890947505076,50.52132478146412],[-122.33863758759995,50.52128040024398],[-122.3384226138306,50.52116591385554],[-122.33824324764832,50.52102617828099],[-122.33805642683242,50.520891261593775],[-122.33784340003535,50.5207745889935],[-122.33761930488998,50.52066374054404],[-122.33738581143142,50.520559895811516],[-122.33714449916584,50.520465346953756],[-122.33689685558174,50.52038351666552],[-122.33663121769779,50.520327523962024],[-122.33635174619731,50.5202896340471],[-122.33607607206743,50.520248485999325],[-122.33580256989836,50.52020235287414],[-122.33552902229923,50.520156784335306],[-122.33525737372719,50.520109586420205],[-122.33498812578709,50.520054595098436],[-122.33471647839716,50.520007395855664],[-122.33443491185989,50.519995287804186],[-122.33427113977369,50.51985943339961],[-122.33414722909653,50.51968947510273],[-122.33402805596855,50.51952641136078],[-122.33392875854993,50.51935782288246],[-122.33384201803942,50.51918684183272],[-122.33375889256814,50.5190148464277],[-122.33367752817364,50.518842918034245],[-122.3335944492463,50.51867036614415],[-122.33352017675085,50.51849810485527],[-122.33349219728314,50.51832118211602],[-122.33341806233574,50.51814724284281],[-122.33335287096716,50.5179719073814],[-122.33328944123716,50.5177966299877],[-122.33322601200037,50.51762135252024],[-122.33315901573512,50.517446514977664],[-122.33308845175054,50.51727212632672],[-122.3330534756101,50.51709441433311],[-122.33304162190122,50.5169146588126],[-122.3330333364839,50.51673445428361],[-122.3330073037143,50.51655534607914],[-122.33294929714208,50.51637856478595],[-122.3328589073434,50.516209143892084],[-122.33267957812623,50.51606939849243],[-122.33246130485267,50.515952540429275],[-122.33227772520866,50.51582165046131],[-122.33216069467977,50.51565416485744],[-122.33208019095443,50.51549349932499],[-122.33221878585078,50.51533108237952],[-122.33234324623345,50.51516875625122],[-122.33245899192845,50.51500501761102],[-122.33248565553431,50.51482934042107],[-122.33253011163623,50.51465200163401],[-122.33245516533194,50.5144881459733],[-122.33232837416408,50.51433214134623],[-122.33236917107872,50.51415637301877],[-122.33246085423835,50.51398452534475],[-122.3325987586667,50.51383051481965],[-122.33277282077411,50.513687819314846],[-122.33286960099842,50.51351839774978],[-122.33297676437108,50.51335155910355],[-122.33305778584578,50.51318049240492],[-122.33302754804714,50.51300968330855],[-122.33286476460371,50.512862044810326],[-122.33269304024228,50.512715802105184],[-122.33254294994349,50.51256409289038],[-122.33248453979812,50.51239235302071],[-122.33245688740307,50.51221150772347],[-122.33234315947404,50.512046937297946],[-122.33224569174868,50.511877838662755],[-122.3321554049329,50.5117072947013],[-122.33206687968556,50.511536808794254],[-122.33197298115131,50.51136726984695],[-122.3318774137737,50.51119655105785],[-122.33172682934935,50.51105100455637],[-122.3314991845138,50.510941147671616],[-122.33126385800158,50.5108389085255],[-122.33108039399448,50.51070689419825],[-122.33093966810337,50.5105487439746],[-122.3308114978063,50.51038819243804],[-122.33069416746676,50.510224625151196],[-122.33054964945467,50.51006971368055],[-122.33036280569759,50.509935903813286],[-122.33010601666253,50.50985881789962],[-122.32987525044254,50.50976572275019],[-122.32971262572569,50.50961640119226],[-122.32951101494761,50.5094905314334],[-122.32930384875587,50.50936785135049],[-122.32908918358395,50.50925054582516],[-122.3288569820304,50.509153460331014],[-122.3285750943304,50.50912446461995],[-122.32831305467805,50.509068567704674],[-122.32811158773912,50.50894100849515],[-122.32799061192713,50.50877900843859],[-122.32785694668517,50.50862107787762],[-122.3276812760894,50.508480318012815],[-122.32757818486925,50.50831553506216],[-122.32750223774404,50.50814264406308],[-122.32734865864929,50.50799081051088],[-122.32714502670211,50.50786824265477],[-122.32692287416793,50.507756307569636],[-122.32670826894932,50.50763843194656],[-122.32652320738613,50.50750467347371],[-122.32636593015945,50.50735495609186],[-122.32620323430203,50.50720675051858],[-122.32603502839152,50.5070611782924],[-122.32583126738238,50.50694028574541],[-122.32559583702954,50.50683972092494],[-122.32536415815997,50.50673646374365],[-122.3251592339879,50.50660822598248],[-122.32496949422782,50.50646699529692],[-122.32476356601792,50.506351093941284],[-122.32451012218775,50.506298278683836],[-122.3242205940474,50.50629825756976],[-122.32393106663939,50.50629822672884],[-122.32365009157824,50.506279927058976],[-122.32336916214108,50.50626107038432],[-122.32308759295408,50.50625005494795],[-122.32280631923108,50.506257051040194],[-122.32252701122275,50.50628322059261],[-122.32224900506645,50.50631506453091],[-122.32196928399358,50.50634628418298],[-122.32169123163793,50.506378683016905],[-122.32141471098818,50.50641393889654],[-122.32113949194667,50.50645486918746],[-122.32086900564042,50.506502694194005],[-122.32060459936713,50.50656253276311],[-122.3203462275061,50.50663494122813],[-122.3200925872208,50.506714253489015],[-122.31983894604332,50.506793565163186],[-122.31958052545296,50.50686653709203],[-122.31932173825494,50.50694398566552],[-122.31906507665775,50.50701701474794],[-122.31879743196238,50.506986774298205],[-122.31852540260145,50.50692377458119],[-122.3182545847708,50.50686756190816],[-122.31798118200017,50.50682138418108],[-122.31770759645774,50.5067774488888],[-122.3174340114484,50.50673351292077],[-122.31716047317856,50.50668901101322],[-122.31688675134305,50.50664676051138],[-122.31661085709669,50.506609493433025],[-122.31633256073737,50.50658001813408],[-122.316051495299,50.506562820813286],[-122.31576983430332,50.50655290839439],[-122.31548935552755,50.506571716214566],[-122.31521055526616,50.506548411135086],[-122.31493258163647,50.50651500240538],[-122.31465886294468,50.50647274640714],[-122.31439175746345,50.506414398062844],[-122.31411623371842,50.506372638569445],[-122.31383434456562,50.50636552961063],[-122.31355251881291,50.50637922262222],[-122.3132704916776,50.50637379904752],[-122.3130227852538,50.50629415726948],[-122.3128618059439,50.50614711199197],[-122.31272120444163,50.50598837255787],[-122.31260042989543,50.50582466835068],[-122.31245589561566,50.50567086304526],[-122.31228019279065,50.50553119988219],[-122.31209360639396,50.50539510648306],[-122.31191244030926,50.505257510355136],[-122.31174966143959,50.505110970058645],[-122.31163083699832,50.50494508000164],[-122.31149335196069,50.50479149825618],[-122.31125801108239,50.504690337535635],[-122.3110072091435,50.504605531612185],[-122.31103145496894,50.50443877125812],[-122.31116629507265,50.504279626029955],[-122.3112091103195,50.50410166972358],[-122.31121152340842,50.50392125541767],[-122.31124729591981,50.503743065040425],[-122.31132499955349,50.5035702083687],[-122.31142179309538,50.503401359672615],[-122.31152034644707,50.5032325693468],[-122.3116084732401,50.50306175012377],[-122.31168793483695,50.50288895154157],[-122.31179163027768,50.50272201417656],[-122.31193151495773,50.50256584254339],[-122.31207690930398,50.502407046741766],[-122.31222410938716,50.502247743932784],[-122.31233424632966,50.50208833444994],[-122.31225040827769,50.501926413374996],[-122.31216947835662,50.501750535703046],[-122.3120879982963,50.50158138727948],[-122.3118902226963,50.501452801870165],[-122.31171824258327,50.50131101094653],[-122.31160484770541,50.50114360872342],[-122.31137036794284,50.50105372185436],[-122.31111560603425,50.50097440660116],[-122.31094566608685,50.500829308221185],[-122.31082305954266,50.50066666410333],[-122.310720323261,50.50049849926338],[-122.3105703938215,50.50034619284237],[-122.31044511119882,50.50019470528824],[-122.31045665095374,50.50001065272515],[-122.31046104454327,50.50000011044755],[-122.31053597421018,50.49983953217007],[-122.31064327878518,50.49967159967507],[-122.3107694884462,50.49950990938588],[-122.31092299066488,50.49935981421583],[-122.31109701922196,50.49921771539206],[-122.31126428136038,50.49907200864225],[-122.31142166839946,50.49891754344786],[-122.3114778715211,50.49874846998818],[-122.31144855136961,50.49856755794995],[-122.3114121438022,50.49838697716449],[-122.31135049541629,50.49821286309794],[-122.31118788187933,50.49806463388026],[-122.31096428681784,50.49794979866251],[-122.3108645259333,50.4977884797625],[-122.31083530068413,50.497606445786666],[-122.31081288772018,50.497427445186524],[-122.31079760721826,50.49724756595834],[-122.31078936874485,50.497067911722105],[-122.31079706399439,50.49688767136909],[-122.31079929544562,50.496709489625346],[-122.31083983932801,50.496537646388255],[-122.31077476696497,50.49636229304068],[-122.3106082279111,50.49621899715693],[-122.31037871992476,50.49611183593358],[-122.3101641207842,50.495995057214714],[-122.30995887573567,50.49587183228444],[-122.30980326988147,50.495724399940514],[-122.3097022633375,50.495556847949786],[-122.30959949731793,50.49538923731215],[-122.30948589520587,50.49522464010399],[-122.30933992158397,50.49506739655303],[-122.30922423917131,50.49490667044929],[-122.30923018084134,50.49472636222635],[-122.30924844307735,50.49454647261927],[-122.3092667059025,50.494366573996736],[-122.30927607510411,50.49418751324105],[-122.30928363850232,50.49400895021609],[-122.30929476846194,50.49382993893311],[-122.30927773507487,50.49365000017381],[-122.30922684600596,50.49347399193504],[-122.30916002418897,50.493298578453874],[-122.30909496302856,50.49312322342324],[-122.30899753149504,50.49295522204275],[-122.30884591838159,50.4928022970534],[-122.30873204995315,50.49264106325177],[-122.30869380680713,50.492461534318664],[-122.30864833909328,50.49228402329732],[-122.30851303035499,50.49212600773714],[-122.30829863874557,50.49200698170635],[-122.30807471356454,50.49189662608844],[-122.3079549723616,50.49174251035256],[-122.30790274435292,50.49156139100489],[-122.30784685844195,50.49138184133355],[-122.3077128095553,50.49123005628381],[-122.30752972357996,50.491095200469786],[-122.30732839568965,50.49096760077017],[-122.30711979864782,50.49084257485232],[-122.30692027866766,50.4907144766356],[-122.30672812126326,50.49058269130318],[-122.30653420568756,50.4904508380751],[-122.30633080139349,50.490327107872815],[-122.30611045499676,50.4902163089147],[-122.30587321202816,50.49011788480724],[-122.30563208307937,50.49002382031394],[-122.30539285268266,50.48992813600802],[-122.30515200084503,50.48983071471847],[-122.30491277249061,50.48973502935591],[-122.3046696573397,50.48964371254044],[-122.30442409384075,50.4895607438521],[-122.30414745292303,50.4895554728211],[-122.3038985084826,50.48947070788192],[-122.30364808093394,50.489382519058594],[-122.30338243729649,50.489329244209145],[-122.30309171807315,50.489323501591095],[-122.30281391715823,50.48931087394164],[-122.30265391803005,50.48917451983454],[-122.30243173431423,50.48906477635841],[-122.30220228141215,50.48895760627386],[-122.30196528400995,50.48885636526454],[-122.30172213391533,50.48876559819681],[-122.30146875815495,50.488691926106206],[-122.30119701221074,50.48864857310784],[-122.30091341917428,50.488620560445725],[-122.30063334565186,50.48859267335736],[-122.30035244466896,50.48857487068153],[-122.3000914336352,50.4885082554263],[-122.29972488375796,50.4884589221066],[-122.29955615811043,50.488257043166016],[-122.29942089256073,50.48809902472171],[-122.29928391444781,50.48794038212827],[-122.2991544838159,50.48777580098263],[-122.29901199729646,50.48761979033248],[-122.29883052843057,50.48748721243129],[-122.29861739170518,50.487374955126946],[-122.29838944077059,50.48727119136471],[-122.29815042455691,50.487173248005845],[-122.2979075668264,50.48707911667478],[-122.29766290453321,50.48698548238843],[-122.29742194727244,50.48688972184904],[-122.29718663919981,50.48678965066674],[-122.29698151718078,50.48666584407091],[-122.29680607486526,50.486524466342956],[-122.29667253829447,50.48636705923512],[-122.29655002251107,50.486204396474704],[-122.29644010297775,50.486038779956885],[-122.29635000323559,50.485868201509376],[-122.29625990417472,50.48569762295297],[-122.29614994049308,50.48553257131396],[-122.29601830757593,50.48537353512508],[-122.29588310951343,50.48521494654155],[-122.29574244865127,50.485058424673774],[-122.29561438386757,50.48489894909757],[-122.29552966107117,50.484727424406074],[-122.29546651720658,50.48455099672181],[-122.29537813743787,50.484381041188314],[-122.29525928989297,50.48421680726127],[-122.29511863430673,50.48406028441082],[-122.29495043063085,50.483916904137324],[-122.29475824569012,50.48378620959291],[-122.29455508812708,50.483660213678405],[-122.29435748752702,50.4835310289581],[-122.29416169352979,50.48340134633389],[-122.293969605278,50.483269528773796],[-122.29379038877752,50.48313140182913],[-122.29364108175868,50.48297289619994],[-122.29348029456995,50.48282526233189],[-122.29326117698837,50.482721781347635],[-122.29301187529984,50.4826420428411],[-122.29274572328835,50.4825741029454],[-122.29247744266434,50.48251059885672],[-122.29221282093673,50.48244552487132],[-122.29194602549079,50.482385434016166],[-122.29167899972835,50.48232815092012],[-122.2914102607192,50.48227025207106],[-122.2911472635828,50.482206912201924],[-122.29089033027128,50.48213421932692],[-122.29064122059609,50.482052232307694],[-122.2903942414198,50.481965808307976],[-122.29015110521877,50.481875580412336],[-122.28990820038624,50.481782552544374],[-122.28966895472362,50.48168795497323],[-122.28942799693074,50.48159273276507],[-122.28918875328137,50.481498134137276],[-122.28894585246492,50.481405104121436],[-122.2887046665015,50.48131268871298],[-122.28846357386695,50.48121915120422],[-122.28822257457867,50.48112449159527],[-122.28798523447495,50.48102826234512],[-122.28779090640533,50.480902547949924],[-122.2877100171805,50.48072776948467],[-122.28759449513466,50.480566452755944],[-122.28741174384619,50.48042875361537],[-122.28719936202093,50.480308057191785],[-122.28696188946,50.48021351249382],[-122.28670733395931,50.48013358294892],[-122.2864671298218,50.480029381604396],[-122.28623623255054,50.47991931005936],[-122.2859691561683,50.47996997786156],[-122.28575833966731,50.480023095080625],[-122.2856932076393,50.479871335263915],[-122.28566770327167,50.479666918241236],[-122.28563025557845,50.47947897124572],[-122.28558308627808,50.47930194534714],[-122.28553596392214,50.479124354120266],[-122.28548347012794,50.4789477166626],[-122.28543449657656,50.47877118797823],[-122.28539983038266,50.47859233104402],[-122.28536868352805,50.47841359187083],[-122.285339342282,50.47823435525801],[-122.28530287152265,50.478055995566535],[-122.28524681502381,50.4778797962482],[-122.28517830343989,50.477704871341565],[-122.28509548573469,50.47753227451038],[-122.28498914834901,50.47736676271049],[-122.28483586365533,50.477214299408885],[-122.28464748621397,50.477080904682516],[-122.28444262759683,50.476954830312756],[-122.28425605845774,50.47682092852936],[-122.28411537165185,50.4766655118868],[-122.28402181830275,50.47649480361712],[-122.2839781773288,50.47631789423862],[-122.2839507414437,50.47613702888244],[-122.28389460016439,50.47596195003353],[-122.28379377991281,50.47579381411723],[-122.28369296115211,50.47562566910183],[-122.28361547704216,50.475452691221896],[-122.28349864013339,50.47528625869584],[-122.2834874598809,50.47512224960596],[-122.28375020320694,50.47505962969512],[-122.28397275016441,50.474949560525914],[-122.28416705094637,50.47481829191822],[-122.28435621071574,50.47468516831209],[-122.28458357037461,50.474580882493036],[-122.2848375086783,50.4744965965861],[-122.28504801181896,50.474382748066816],[-122.28520165308963,50.474230996945195],[-122.28535191283639,50.47407744989637],[-122.28552254465701,50.473933582049334],[-122.28569312882289,50.473790279187796],[-122.28585366433916,50.47364044950389],[-122.28602077422522,50.473496463016865],[-122.28623807648383,50.47338564713438],[-122.2864769099551,50.47329185472112],[-122.28664596062958,50.473145682968386],[-122.28673574395964,50.472976613909935],[-122.28678922754786,50.47279845716045],[-122.28692382806247,50.47264213460655],[-122.2870912079091,50.472494781600304],[-122.2872769688755,50.472359856999596],[-122.28750778285671,50.47225623894806],[-122.28772873295455,50.47214385086993],[-122.28784596588724,50.471984138923816],[-122.28789064752702,50.47180568709061],[-122.28794056082873,50.47162796809949],[-122.28800274205129,50.47145122637439],[-122.28809256272334,50.47128159956123],[-122.28823590466537,50.47112612574199],[-122.28842837081015,50.47099535547359],[-122.28865264555999,50.4708853352307],[-122.28883334866497,50.470747422757],[-122.2890291918413,50.47061844697387],[-122.28926480908659,50.47052060949856],[-122.28951038039482,50.47043041932429],[-122.28974956057371,50.470332133201445],[-122.28990965468316,50.470187348620925],[-122.29003756887205,50.47002630011946],[-122.29016210251987,50.46986344691675],[-122.29030529405232,50.46970965701504],[-122.29050460040622,50.46958136139842],[-122.29074354290093,50.469485881477716],[-122.29100332424782,50.469415840515765],[-122.29126328928247,50.469343555770095],[-122.2915230690036,50.4692735135797],[-122.291793594219,50.46922294936116],[-122.29208218552856,50.469210102411814],[-122.29231964719564,50.46913256442954],[-122.2925122309609,50.469000108867284],[-122.29269846886386,50.46885900140173],[-122.29289262584167,50.46872883812623],[-122.29308682743088,50.46859811818298],[-122.29328436181487,50.46846975861631],[-122.29348532118588,50.46834263782157],[-122.29371114520555,50.46823490895508],[-122.29398097078482,50.468192746769915],[-122.29426510698029,50.46816962352182],[-122.29454396545277,50.46814632326299],[-122.2948114230245,50.46809002615262],[-122.29507114358096,50.46802054083376],[-122.29533438234962,50.467951163425745],[-122.29561438169907,50.467892476117115],[-122.29587437700764,50.46781961515787],[-122.29607412857601,50.46770707025843],[-122.29622025864796,50.467560119340774],[-122.29633966932893,50.46739484829895],[-122.2964525039983,50.46722372523841],[-122.29657719025153,50.46705863006476],[-122.29673062929959,50.46690854849481],[-122.29690462383316,50.466765900930255],[-122.29708875772758,50.466628648077624],[-122.29727784506173,50.466495501114565],[-122.29748396954474,50.46636967051963],[-122.29773001820743,50.466294657455336],[-122.29801099067502,50.4662669207676],[-122.29828797449949,50.46622330493196],[-122.29856575982213,50.46621289734592],[-122.29884448643854,50.46623400215251],[-122.29912405120166,50.46626638987709],[-122.29940416933333,50.46629203834835],[-122.29968691031354,50.46628572510976],[-122.29994629126296,50.46622014933263],[-122.30019681899111,50.466133475861604],[-122.30042919288844,50.466031566735474],[-122.30063155795244,50.465908421368454],[-122.30081743607542,50.46577122085117],[-122.30100326670174,50.4656345852849],[-122.3011565941989,50.4654856189324],[-122.30128098247553,50.465323882917666],[-122.30145986569165,50.46518589029428],[-122.30165240653113,50.465053409260086],[-122.30185166007142,50.46492509253812],[-122.30205595925662,50.464799759851665],[-122.3022449323126,50.46466772572863],[-122.30236913124911,50.464508222559566],[-122.3024780492647,50.46434147086683],[-122.30263502380194,50.46419093261689],[-122.3028357994979,50.46406548111522],[-122.30305671693789,50.46395250508656],[-122.30328749803718,50.46384828787188],[-122.30352944145662,50.46375850501929],[-122.3038086355895,50.463730694953696],[-122.30409192397558,50.46373900993195],[-122.30443047627975,50.463740168117944],[-122.30464244790325,50.46369324629663],[-122.30457057413054,50.46355870803604],[-122.30439911631143,50.46339104365537],[-122.30423154534454,50.4632190097745],[-122.30413785187827,50.46304943722282],[-122.304053184029,50.462877349112844],[-122.3039432937702,50.46271173524601],[-122.30383344991044,50.46254556492043],[-122.30374151826842,50.46237605050701],[-122.30368365034653,50.46219979846763],[-122.3036221731172,50.462024550729616],[-122.30355893745492,50.46184924430091],[-122.30348677024331,50.461675322621566],[-122.30340562451107,50.461503359937254],[-122.30331735264222,50.46133227530029],[-122.30322722989094,50.46116226251204],[-122.30313720048888,50.46099111903554],[-122.30305068877296,50.46082010167617],[-122.30297135143881,50.46064763182922],[-122.3028938655067,50.460474098911085],[-122.3028217030557,50.460300176503054],[-122.3027548632906,50.46012587358812],[-122.30271481994743,50.45994740733386],[-122.30275577569462,50.45977050752459],[-122.30282130828319,50.459594993781444],[-122.30289554249823,50.45942089471675],[-122.30298880088976,50.45925137058971],[-122.30310640674703,50.4590860229696],[-122.30330354890818,50.45896157418563],[-122.3035244865297,50.45884803122048],[-122.303723661035,50.45872027544369],[-122.30392112195211,50.458591895384565],[-122.3041268705307,50.458469972375674],[-122.30434761914147,50.45835867989766],[-122.30457674736664,50.458252722744014],[-122.30480407017234,50.458147262823765],[-122.30502819560758,50.45803776407742],[-122.30524569799273,50.457922987725944],[-122.30545981993494,50.45780640684889],[-122.30567898772902,50.457692800844264],[-122.30591801892122,50.45759504363856],[-122.30611019244823,50.4574664837617],[-122.3061789042749,50.457295014827615],[-122.30618480686482,50.45711526368175],[-122.30619075570056,50.45693494720181],[-122.30618786462006,50.45675490308871],[-122.30617076575395,50.45657607722392],[-122.30613247149238,50.456397661021974],[-122.30608885515744,50.4562196343247],[-122.30605407816154,50.45604134414762],[-122.30605641816547,50.45586203189155],[-122.30610614974593,50.45568543182049],[-122.30616647922889,50.45550861786105],[-122.30622148670382,50.455332184421295],[-122.3062764930141,50.455155759888626],[-122.30632974098297,50.454979267741905],[-122.30637081545531,50.454800687569424],[-122.30624821225558,50.45463971606976],[-122.30610395605969,50.4544847621925],[-122.3059599756729,50.454326452217096],[-122.3058085488613,50.45417295048448],[-122.30563288329495,50.45403551116732],[-122.30541419874068,50.45392812929685],[-122.30516193116318,50.453843246274566],[-122.30490961896362,50.45375891899252],[-122.3046577208092,50.4536695483346],[-122.30439129549478,50.45358531633596],[-122.30412306627346,50.4535015903739],[-122.30386941252961,50.45341215928811],[-122.303644908016,50.453311327711255],[-122.30346408084755,50.45319395669598],[-122.30336153853906,50.45304657925129],[-122.30334098147533,50.45286706958775],[-122.30336039951845,50.45267314692861],[-122.30337967989504,50.45248090216049],[-122.30337152469482,50.45230068111258],[-122.30337040368389,50.452120694513326],[-122.30337631677807,50.45194094236309],[-122.30338755096373,50.45176080971561],[-122.30340757834536,50.45158096116315],[-122.30342940965701,50.451400614864745],[-122.30344763189476,50.45122127289975],[-122.30345877371016,50.451042261704565],[-122.30343974625518,50.45086560979903],[-122.30334085155617,50.45069530178885],[-122.303277679175,50.450519427439716],[-122.3032001631226,50.45034645785233],[-122.30308665207487,50.450182401259156],[-122.30295514337091,50.4500228100101],[-122.3028145212958,50.44986685557936],[-122.30266298261468,50.449715026651994],[-122.30250223875983,50.44956795609221],[-122.30233978312538,50.44942027030954],[-122.30217908770766,50.449272633930434],[-122.30202019735486,50.44912449961107],[-122.30186320399665,50.44897474573692],[-122.3017027412193,50.4488243090174],[-122.30159446827835,50.44866099183246],[-122.3015525437458,50.44848414191686],[-122.30152329599946,50.448303216019816],[-122.3014743849285,50.44812556609035],[-122.30142010645766,50.44794887073564],[-122.30135333672892,50.447773999007524],[-122.30126505312892,50.44760347512288],[-122.30115530222197,50.447436733734946],[-122.30103657651152,50.44727194215328],[-122.30092146029459,50.44710614611012],[-122.30082411211063,50.446938693297454],[-122.3007553575838,50.446766570874075],[-122.30072579189668,50.44658957455276],[-122.30072121131275,50.44640890402216],[-122.30072555983553,50.44622684882376],[-122.30072273684466,50.44604624584945]]]}' + )), 4326)))); + +INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Omineca','7','7- Omineca','AR10100000','WHSE Admin Boundary',5 + , '{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.59999999804931,55.34223720563551],[-122.59996943594632,55.34227112800909],[-122.59990550357475,55.342325442600675],[-122.59989017503788,55.3423429630522],[-122.59984166586817,55.342378638609496],[-122.59981091384569,55.34241479804551],[-122.59977788560788,55.342477802680655],[-122.59974591914948,55.342504959931986],[-122.5997152617859,55.342540000794735],[-122.59952370781487,55.34263007701746],[-122.59947595676371,55.34265680403301],[-122.59938197209692,55.34269236120949],[-122.59915975859005,55.3428174776498],[-122.59909637440003,55.34288862385469],[-122.59898423287399,55.34295171425648],[-122.59892191079271,55.34298701300299],[-122.5987942880668,55.343022774018756],[-122.59862012704899,55.3430942637741],[-122.59862058212639,55.343112214350626],[-122.59855825947602,55.343147512916296],[-122.59827250633002,55.343182326064934],[-122.59786125177851,55.34329780196843],[-122.59778350343298,55.3433517388995],[-122.59773499117122,55.343387413642326],[-122.59767120410231,55.34348657664829],[-122.59765511493333,55.34351304521806],[-122.5976225370437,55.34359399987168],[-122.59759056823773,55.34362115657459],[-122.5974635467489,55.343719716367374],[-122.59732149919668,55.34380889719965],[-122.59717717303145,55.343924923034585],[-122.59711423799149,55.34401401882556],[-122.59711231945508,55.34405993312042],[-122.59711231348945,55.34417653120346],[-122.59715747917801,55.34432014730813],[-122.59717417299554,55.34435647894103],[-122.59722070816031,55.34443734869148],[-122.59723512410824,55.34450052548271],[-122.59725115366365,55.34454468694616],[-122.5972963804706,55.34461767302318],[-122.59737382195794,55.344707233451444],[-122.59742066266166,55.34476120415641],[-122.59746795807273,55.34483312542817],[-122.59749937358161,55.34490573481035],[-122.5975620947781,55.344959017335704],[-122.59759260127674,55.34499572552703],[-122.5975583488735,55.34516632549589],[-122.59755925812586,55.34520222666496],[-122.59751165263917,55.34527380249771],[-122.5974466481468,55.34536396321564],[-122.59735159124435,55.345435366241745],[-122.59722441381271,55.34548907624859],[-122.59711387574376,55.34553314966066],[-122.59706611963331,55.34555987576317],[-122.59701866222672,55.34567630097401],[-122.59698501686253,55.345793102845526],[-122.59697004516977,55.345829692081686],[-122.59690543857216,55.34589183499831],[-122.59682571072067,55.345945717536246],[-122.59671501478991,55.34606153913945],[-122.59669882902344,55.34608912614197],[-122.59665091569371,55.34618760063013],[-122.59663376000847,55.346249916439895],[-122.59663350875898,55.34632278353222],[-122.59664801939633,55.34638484185578],[-122.5966944609175,55.3464668303689],[-122.59674175703725,55.34653875192922],[-122.5967867749297,55.34663751863655],[-122.59686335810615,55.3468537444555],[-122.59689410958626,55.34693418384632],[-122.59692369522257,55.347168187269666],[-122.59701783569827,55.34729407961982],[-122.59703179793802,55.3473393058635],[-122.59703179173795,55.34745590398879],[-122.59699875498755,55.347518907923735],[-122.59682304549848,55.34772489011733],[-122.59674498197444,55.34780572541002],[-122.59669646340485,55.34784139976684],[-122.59656988057615,55.347957909289555],[-122.59653638848629,55.34800296251196],[-122.59650318621857,55.348254313013335],[-122.59650196473044,55.34836190894377],[-122.59651759471377,55.348434088051775],[-122.59653140028227,55.34855106291859],[-122.59651545716325,55.34862238093487],[-122.59649784603548,55.34866674614739],[-122.59643511252271,55.34873006120736],[-122.59627649863825,55.34882775873044],[-122.59626000591571,55.34888224466815],[-122.59624406218276,55.348953562652405],[-122.59624153130993,55.34905327492723],[-122.59622634711435,55.349115644523415],[-122.59614706598535,55.34918747724466],[-122.5960198750495,55.34924118604708],[-122.59598754165202,55.34924927321005],[-122.59594129977788,55.34925810212176],[-122.59589308452576,55.34926687718812],[-122.59579938705303,55.349275532709996],[-122.59567204748018,55.349284391575715],[-122.59556210927158,55.349274665665746],[-122.59551465371653,55.34927449220271],[-122.59538852761386,55.349292352996535],[-122.59527697476486,55.34930164214769],[-122.59516749020773,55.34930986649124],[-122.59507333891698,55.34930057086707],[-122.59496188096259,55.34930874118923],[-122.5948359014642,55.3493714510092],[-122.59470794820777,55.349434106855604],[-122.59456694099694,55.349487437250794],[-122.59440883813429,55.34953245299404],[-122.59425113681876,55.349549451009544],[-122.59417201202405,55.34954953391334],[-122.59410831606486,55.349530978466404],[-122.59401523168812,55.34948583468932],[-122.59396656267316,55.34947665840619],[-122.59390408012669,55.34946710508764],[-122.59376247299562,55.349457634382155],[-122.59369837508528,55.34946709625223],[-122.5935245794273,55.34951056142552],[-122.59339783677166,55.34958221816754],[-122.59330321544483,55.3496715687539],[-122.59327047856543,55.349707672738994],[-122.59320560249807,55.349842680882006],[-122.5931899605597,55.349887099504784],[-122.59309412501509,55.34996744769527],[-122.59298347502548,55.35001263601932],[-122.59288901478439,55.3500302377268],[-122.59279410191071,55.350029888751386],[-122.5927474059056,55.35002076586978],[-122.59260579709364,55.35001129385219],[-122.59257488826769,55.35000260194615],[-122.59252773991419,55.349975528370166],[-122.59243237478593,55.349957228507584],[-122.592290005741,55.34995670449684],[-122.59218006651028,55.349946975608965],[-122.59214915782607,55.34993828359766],[-122.59211834422646,55.34992847303317],[-122.59210272157448,55.349856293362784],[-122.59210379047845,55.34982044602357],[-122.59208821671149,55.34979423448728],[-122.59205695102037,55.34976647329437],[-122.59203985613807,55.349758158476874],[-122.59194584824937,55.34979371008426],[-122.5918830572103,55.349811054730125],[-122.5918195054827,55.34983734770553],[-122.59180286272326,55.349846983470165],[-122.59170702449696,55.349927330595996],[-122.59169168947642,55.34994485005578],[-122.59161130729173,55.350169125400384],[-122.59154552090762,55.350268231455416],[-122.5915135426714,55.35029538662262],[-122.59143577223479,55.350349319642945],[-122.59140251060079,55.350438102549155],[-122.59140103715292,55.35050196740634],[-122.59141630194704,55.35055507800718],[-122.59143254121336,55.35057345981507],[-122.59146466292029,55.35059115426228],[-122.59149471614765,55.35060991334848],[-122.59152638592205,55.35060965716254],[-122.59158963038205,55.35061026331135],[-122.59185706446709,55.35062877835685],[-122.59203186627951,55.35062009818401],[-122.59231584853538,55.35063009499653],[-122.5923777162047,55.350693447069986],[-122.59240922215568,55.35076493923397],[-122.59239027789019,55.35091801834437],[-122.59235858809758,55.35103487292068],[-122.5922786798024,55.35116050116335],[-122.5921978664129,55.35125022812444],[-122.5920882114478,55.35133019834857],[-122.59208669024154,55.35134809507688],[-122.59203636166906,55.351591129668975],[-122.59202592628674,55.351690626330814],[-122.59200281982696,55.35186937805639],[-122.59195457962085,55.35199474978861],[-122.59192122268902,55.35208465139479],[-122.59189045608984,55.35212080891885],[-122.59179385192282,55.352210104495654],[-122.59173150913547,55.35224539968953],[-122.59163673442454,55.3522898994371],[-122.5915248636337,55.35232608422269],[-122.5915092188665,55.35237050264723],[-122.59149317020857,55.352442938597946],[-122.5914928614465,55.35246983758068],[-122.59150758001438,55.35250611610613],[-122.59156999642352,55.352586300669124],[-122.59161714719863,55.35261337461446],[-122.59169587432402,55.352641310858466],[-122.59169556569636,55.352668209842335],[-122.59167752197243,55.35285719011959],[-122.59166142509198,55.3528836579445],[-122.59162837543958,55.35294666049676],[-122.59159725096104,55.352963748785086],[-122.59150176178785,55.353063164948814],[-122.59142134674237,55.35312487389647],[-122.59134357069739,55.35317880687661],[-122.59129580164314,55.35320553079511],[-122.59126382089686,55.35323268590725],[-122.5912002633438,55.353258978577564],[-122.59116904333509,55.35327718530485],[-122.59115102014826,55.35334956731611],[-122.59121419799443,55.35342080370393],[-122.5912930694364,55.353493589813645],[-122.59137113235955,55.3535293560814],[-122.59141707134083,55.35354742784351],[-122.59148077243161,55.35356598467131],[-122.59152716352702,55.353602007016384],[-122.59160567892832,55.353655723761364],[-122.59179295816057,55.353872733892004],[-122.59185483000438,55.35393608624757],[-122.59187130958868,55.353998199070844],[-122.59185236174423,55.354151278155285],[-122.5918379295096,55.35420469888783],[-122.59180380975661,55.3543035488506],[-122.59178700012959,55.35438493322035],[-122.59180338470256,55.354448164601436],[-122.59181819936734,55.354483324552724],[-122.59184916002988,55.354537984810065],[-122.5919273692067,55.35461860034873],[-122.5919593992837,55.354637413222456],[-122.59202167607965,55.35467274796436],[-122.5921162915688,55.35469999651796],[-122.59214634817863,55.35471875545612],[-122.5921947148271,55.354754831445376],[-122.59225668374455,55.35481706506216],[-122.59225642449181,55.35488993221531],[-122.59222242906631,55.3551502301414],[-122.59217434992406,55.35520385339469],[-122.5921423681795,55.35523100873789],[-122.59203148926493,55.355301976692125],[-122.59190351271519,55.35536462970714],[-122.59179263300882,55.35543559745033],[-122.59158566247493,55.355543181106015],[-122.59144325117617,55.355659254361704],[-122.59136349657894,55.355713133471106],[-122.59129998308266,55.355785394365924],[-122.59128433671756,55.35582981277957],[-122.59126583770136,55.356000842435826],[-122.5912807954767,55.356080852079415],[-122.59131220859528,55.35615346310908],[-122.59132692835122,55.356189741671045],[-122.59137377432633,55.356243714713024],[-122.59140590054723,55.35626140918666],[-122.59145167705353,55.35635122955947],[-122.59150004504542,55.35638730582434],[-122.59153055468731,55.35642401554325],[-122.5916241044647,55.356487111836266],[-122.59163968052651,55.356513323450315],[-122.59170186485436,55.356549776905],[-122.59181317861575,55.35661335810588],[-122.59184333161203,55.35663099857505],[-122.59184392745085,55.35669379882818],[-122.59182573899476,55.356837929587115],[-122.59177810947206,55.3569095033271],[-122.59172926683796,55.35697207478786],[-122.59166651281262,55.35703538751154],[-122.59163376845143,55.357071491097614],[-122.59157065714113,55.35711573459791],[-122.59142809703951,55.357186958229086],[-122.5914115462453,55.357195475403906],[-122.59131604653965,55.357294891473245],[-122.59126948541468,55.3573306176603],[-122.59122049852884,55.35734833929597],[-122.59111023024546,55.357365508455324],[-122.59104809282505,55.35737502287742],[-122.59085899335014,55.3573653736931],[-122.59062242887347,55.35735554890046],[-122.59054217112184,55.35734550868668],[-122.59043287801717,55.35732794843693],[-122.59030698714346,55.35727293694555],[-122.59026028327342,55.357263813126536],[-122.59021236681524,55.35724568701347],[-122.59016490185468,55.357245511517554],[-122.58988163451417,55.357226561450105],[-122.58980249456924,55.35722664158572],[-122.58972304463848,55.35725362066407],[-122.58969115475695,55.3572796568415],[-122.58959534051542,55.35740597058969],[-122.58938827977505,55.35758418070948],[-122.58929367626962,55.35771949651584],[-122.58924527982357,55.357800017650945],[-122.58922796694941,55.35781748289042],[-122.58921329402673,55.35782717225223],[-122.58915017885829,55.357871414533335],[-122.58905341421936,55.35791585841427],[-122.58891160824312,55.35797813082766],[-122.58886428273537,55.35802280447251],[-122.58884822704064,55.35809524012973],[-122.58884715500719,55.358131087474455],[-122.58886232414164,55.358185316977234],[-122.58890885859192,55.35826618994986],[-122.58894067482697,55.35831078405578],[-122.58898523578357,55.358391603063104],[-122.58901664655666,55.3584642146891],[-122.58903150558702,55.35854534316856],[-122.58906377315672,55.35860788788691],[-122.58906270130217,55.35864373523564],[-122.58909366142112,55.358698396201795],[-122.58909335100203,55.3587252951977],[-122.5891090668694,55.35879635677275],[-122.5891245470088,55.358823687251395],[-122.58918673263237,55.35886014196778],[-122.5892655654961,55.35888696121913],[-122.58935897658432,55.35890520958677],[-122.58940765598376,55.35891438767521],[-122.58950151837713,55.35895058657817],[-122.5895327894576,55.35897834843957],[-122.589547913922,55.35898660968042],[-122.58962617315412,55.35911319488514],[-122.58970167024833,55.359365272755],[-122.58977912324899,55.35945483804081],[-122.58980977502509,55.35953639783469],[-122.58980929650971,55.359635045477596],[-122.58976166006843,55.35970661847157],[-122.58971433346821,55.35975129244731],[-122.5896488367394,55.359823498609884],[-122.58963349703704,55.359841017836445],[-122.58966424397543,55.35992145912492],[-122.58972688308022,55.359975864220054],[-122.59002455337517,55.36017459066961],[-122.5900395832384,55.36018397039708],[-122.59018151094227,55.3602831446253],[-122.59030648223558,55.360418853274226],[-122.5903352313975,55.36061583878403],[-122.59066308757393,55.36099477105727],[-122.59069369509137,55.36103036245437],[-122.59077243809239,55.36105829930713],[-122.59081914649667,55.36106742293859],[-122.59089950689564,55.361076344432895],[-122.59100947631713,55.3610860744603],[-122.5910403933438,55.3610947667647],[-122.59108679275049,55.36113078930428],[-122.5911964533389,55.36116741817549],[-122.59121355290844,55.361175733119225],[-122.59126040455365,55.36122970623466],[-122.59132304786603,55.36128411053755],[-122.59133807844859,55.36129349011005],[-122.5913702086979,55.36131118460295],[-122.59147865702094,55.3613388109576],[-122.59152733985854,55.36134798822257],[-122.59171645826821,55.36135763639952],[-122.59177850659144,55.36134924018714],[-122.59187344623845,55.36134958993478],[-122.59200037262781,55.36132278429264],[-122.59204860322185,55.361314010717095],[-122.59222071684714,55.36131422475436],[-122.59239404369598,55.361323440814374],[-122.59252101898153,55.361342602838405],[-122.5925983375942,55.36138731674826],[-122.59264519134973,55.361441289345656],[-122.5926779878744,55.36145115367203],[-122.59273982322699,55.36146853744811],[-122.59280308482546,55.36146914298331],[-122.59286710704714,55.36146080010722],[-122.59293077157847,55.3614333880167],[-122.59296123653606,55.361424129211905],[-122.59299358035692,55.36141604282117],[-122.5930885201726,55.361416391645484],[-122.59323016935991,55.36142586312789],[-122.59337181861412,55.36143533444984],[-122.5934344147374,55.36144376949977],[-122.59359124088664,55.36150746953919],[-122.59368511312256,55.36154366530951],[-122.59371724460753,55.36156135919941],[-122.59377943864865,55.361597811640976],[-122.59381071475335,55.3616255724399],[-122.59392121937638,55.361768730301925],[-122.59398234638076,55.36184103004675],[-122.59402950966219,55.36186810311],[-122.59412459676543,55.36191330079604],[-122.5942021302425,55.36193223324631],[-122.59429569706776,55.36199532757825],[-122.59440672316933,55.36208580552693],[-122.5945002906746,55.36214889970671],[-122.59455299651093,55.36218060831896],[-122.59460974544689,55.3622113060574],[-122.5946672547041,55.362233055379164],[-122.5949086827127,55.36230242483664],[-122.5950191101515,55.3623301019648],[-122.59508161299946,55.3623396547395],[-122.59520868779995,55.362357695484754],[-122.59541329765729,55.362394667800686],[-122.59552336679333,55.362403275306605],[-122.59571249113907,55.36241291743556],[-122.5958074333377,55.36241326419357],[-122.59585414446477,55.36242238594398],[-122.59594756678267,55.36244062939235],[-122.59599625197978,55.36244980491697],[-122.59602631621087,55.36246856293807],[-122.59604632044618,55.362489288923065],[-122.59539159385274,55.36248713055361],[-122.59224101578636,55.36247179839962],[-122.59222101038449,55.36466196604719],[-122.59099318676465,55.36660502222968],[-122.59279021725779,55.3704188767168],[-122.59931932054776,55.370436548922434],[-122.59947734989292,55.37057987403457],[-122.5999170579317,55.37073871750139],[-122.5999998701613,55.37076563754496],[-122.60024257402961,55.370843998959785],[-122.60029522254598,55.37096987877686],[-122.60029302496005,55.37113574736654],[-122.60030851748381,55.37116307649823],[-122.60032355723675,55.37128905344438],[-122.60035281956777,55.371503987525536],[-122.60054053232089,55.37169408592288],[-122.60061833612811,55.371756745551195],[-122.60072849082326,55.37181131672866],[-122.60078187845286,55.37183519286569],[-122.6007469659727,55.371873482260916],[-122.60072841855187,55.37190549033451],[-122.60057859664445,55.37220187655119],[-122.60056804180184,55.37223298106438],[-122.60051791000755,55.37249732595269],[-122.60043736413026,55.372816899730005],[-122.60043622540891,55.372830322385816],[-122.60040029333267,55.373090569321924],[-122.60040036996676,55.37311299417214],[-122.60042984574962,55.373418746240496],[-122.60043387150742,55.37344127860481],[-122.60050870436305,55.37370229880125],[-122.60051715379505,55.37371934590025],[-122.60104177377342,55.37479085995952],[-122.60162751389319,55.37602884173037],[-122.60207371318126,55.377045522606714],[-122.60262045937851,55.378067178994115],[-122.60343719664775,55.379803612819806],[-122.60429045509274,55.38146031088537],[-122.60512730291816,55.383007805308786],[-122.60580505015041,55.3844478248739],[-122.60628576405948,55.38533985704143],[-122.60667029806389,55.386199003436545],[-122.60707135095083,55.3871438032457],[-122.60774250430731,55.38835940320468],[-122.60786257446499,55.38860146544644],[-122.6080484792444,55.389024696706976],[-122.60806041218056,55.38904744341359],[-122.60837075479934,55.38949759668902],[-122.60854606121255,55.38971873508159],[-122.60870039803946,55.3899303348434],[-122.60870923318821,55.38994290716919],[-122.60874890340673,55.38998882946386],[-122.60877240520685,55.390015253546416],[-122.60878866841728,55.39003363318283],[-122.60879938429804,55.3900473776905],[-122.60882524035041,55.39006938113441],[-122.60885259831844,55.39009703101366],[-122.60897181282458,55.39020901714471],[-122.60920093496847,55.39042600959771],[-122.60958571730235,55.390862483892086],[-122.60960198122945,55.39088086342465],[-122.61000901343779,55.3912417029736],[-122.61025198776007,55.39143552530665],[-122.61027417858647,55.39145406555766],[-122.61058808286354,55.39165205399579],[-122.61085620000374,55.39180619638289],[-122.6111089765921,55.391977860128456],[-122.61137181023565,55.39217109761636],[-122.61140745189539,55.3921944870167],[-122.61154391492599,55.39226657744386],[-122.61158557788966,55.39228900897131],[-122.61161021844185,55.392302009738835],[-122.61163673988102,55.392316182646994],[-122.61166730696281,55.39232934414221],[-122.61170934856123,55.392347301365284],[-122.6117473445719,55.392366269984336],[-122.61198613363635,55.392492707129485],[-122.6123367491187,55.3926782327392],[-122.61237324325913,55.392691554768156],[-122.612791135788,55.39285423837453],[-122.61322294429816,55.393039720367454],[-122.61324984513078,55.39304941866634],[-122.61363831141598,55.39318551553305],[-122.61399912262806,55.39332086160503],[-122.61421996550455,55.393425506286576],[-122.61424103472419,55.39343392518789],[-122.6142755546282,55.393447193124324],[-122.61429060264189,55.393456569971235],[-122.61434571907587,55.39348384961784],[-122.61477031091613,55.39363773869129],[-122.61513771847461,55.39376541209682],[-122.6151587880657,55.39377383084391],[-122.61522058849934,55.39379232212846],[-122.61528643467197,55.39380980185792],[-122.61531173905578,55.39381497191694],[-122.6153679909959,55.39382882828853],[-122.61558161826476,55.39387833957318],[-122.61591611637063,55.39397372744552],[-122.61594339652497,55.39397895088889],[-122.61613586086457,55.39402116118175],[-122.61647196791955,55.39409753188778],[-122.61695463125295,55.39422047311225],[-122.61727059924768,55.39432432446336],[-122.61728800179279,55.39432928015971],[-122.61800574444351,55.39452921287387],[-122.61858151729604,55.39476902293961],[-122.61922701100052,55.3950039900414],[-122.61973261854574,55.395230684529295],[-122.62012676508657,55.3953938208167],[-122.62042909664945,55.395542139879566],[-122.62072718329046,55.395740794006265],[-122.62108312798517,55.3959578289564],[-122.62110956082165,55.395973118434966],[-122.62163464780228,55.396274325700475],[-122.62195032739102,55.39652278182138],[-122.62220053964863,55.396725743319934],[-122.62254680050762,55.39698735686934],[-122.62425351574389,55.39832949904323],[-122.6279889891824,55.39676998435903],[-122.63019205685073,55.39619262584839],[-122.63461314275584,55.396177253581286],[-122.6394302327854,55.39672844842455],[-122.6408246540399,55.39559102136814],[-122.64032029393648,55.395182829055514],[-122.63868046502597,55.39188301350071],[-122.64083376445944,55.386227755242274],[-122.64294580309615,55.37784483930885],[-122.64556364365119,55.368704190271515],[-122.64912263734186,55.35472770906412],[-122.6566480476412,55.34494730359009],[-122.65952072029329,55.34236949654849],[-122.66919511290196,55.336744678458984],[-122.67889146654592,55.334832768552246],[-122.6823058196613,55.335049174938526],[-122.68763509505318,55.335827550673194],[-122.69356667688137,55.33716873632243],[-122.69899673574804,55.33903447075501],[-122.6997094456599,55.339600401711614],[-122.70305417376606,55.342208963515105],[-122.70657160686078,55.34368299133624],[-122.70987892920826,55.34367158467361],[-122.71579103064074,55.34198880622724],[-122.72058579351366,55.34100283622475],[-122.7232834276955,55.34070600489808],[-122.72890093272218,55.34068300012921],[-122.73343287053882,55.341752362956356],[-122.74008377530991,55.34497549891532],[-122.74563574396768,55.34654635563302],[-122.74832521208752,55.34596178300831],[-122.75204390160597,55.345951004898126],[-122.75187751225707,55.34937251808561],[-122.75100420377518,55.350973028093435],[-122.7521401625747,55.3529666252887],[-122.75419033386478,55.35637405243451],[-122.75392687940104,55.35923701794519],[-122.75257316238752,55.3626635302409],[-122.75499715064548,55.36419733901284],[-122.75700784162677,55.36458140489391],[-122.76063616834871,55.36610153172678],[-122.76417153956172,55.36740390235817],[-122.76717473618413,55.36784938773468],[-122.77050054989242,55.36782783504698],[-122.7762293974518,55.36843324731353],[-122.77845068853327,55.37014069737317],[-122.78141169680104,55.373086823683956],[-122.7839264719178,55.37410222291444],[-122.78795299117073,55.37443005150171],[-122.7936612898141,55.37411937315061],[-122.79761227654375,55.37598743517092],[-122.79995024501203,55.378827421474995],[-122.80512145002321,55.381883343566244],[-122.8120839125084,55.38452739720534],[-122.82173765497998,55.38499758503947],[-122.82730852520305,55.382637186978506],[-122.83060306960016,55.38062236710484],[-122.83477902030211,55.37786755177824],[-122.83916618241211,55.37664246814806],[-122.84558268645131,55.37597966725805],[-122.85262628957793,55.37680303884493],[-122.85124514865933,55.378463110061084],[-122.84919503406185,55.38178324718918],[-122.84845785359067,55.38612293377263],[-122.84639795721922,55.389559376938024],[-122.84626240739449,55.393896313989636],[-122.84879657135211,55.39530540258063],[-122.85091788722963,55.39592384528392],[-122.85704786817415,55.396526563059524],[-122.86358944365217,55.39733659428982],[-122.8714483658318,55.39912982503197],[-122.87650056478623,55.4003592116713],[-122.88106235475348,55.4034144860589],[-122.87981777596904,55.40678210679162],[-122.87482900368026,55.40858549049214],[-122.86793801049006,55.41181172198511],[-122.86897067296069,55.41339795057226],[-122.87220565093246,55.41417840297707],[-122.87955539065989,55.415231926325404],[-122.88680195468082,55.41598651216825],[-122.89472618535542,55.415771086844366],[-122.90134983634434,55.41454548586308],[-122.9067532302044,55.413316258668786],[-122.91424952560713,55.411448002103086],[-122.92405396302988,55.40922363854749],[-122.93199811862414,55.40975962761196],[-122.93853341198705,55.409659808502134],[-122.94462933747926,55.408257639662885],[-122.95442099454027,55.40512496778402],[-122.96182273630643,55.40319784763949],[-122.9719165850451,55.400851345716696],[-122.97940135785711,55.39801060822429],[-122.98793071307972,55.39790263871768],[-122.99042947601973,55.402168315830394],[-122.98900436030146,55.40679678367412],[-122.98666033755985,55.41057814157719],[-122.98559783948512,55.412695622930976],[-122.98168729477985,55.41790970940558],[-122.98259495699855,55.42394845081194],[-122.98755405192108,55.42523371763382],[-122.99389121906401,55.4261125356259],[-122.99916306853585,55.42767385148371],[-123.00071404975263,55.430454922047105],[-123.00218907727701,55.434041167563976],[-123.00055418523908,55.43787566788734],[-122.99822123195686,55.44171134268918],[-122.99753553811516,55.443030957673386],[-122.99619275574945,55.44634338629312],[-122.99666958820106,55.44970846194327],[-122.99775912541426,55.4542091019752],[-122.99625427788914,55.45946348288535],[-122.99188385752439,55.46252385715433],[-122.9830615093581,55.46423046263731],[-122.9770161818151,55.46403080853991],[-122.97095725936293,55.462754482498134],[-122.96106029397488,55.46042524308743],[-122.95884175606645,55.45997680204384],[-122.94515151884177,55.45976894058196],[-122.93634081561297,55.4613021939444],[-122.9313625963861,55.464982373435014],[-122.93285913458311,55.46987932603675],[-122.93562749328451,55.47288839023706],[-122.94030601732965,55.47582750338037],[-122.94598188360442,55.47756224391674],[-122.95385517514586,55.47900047042953],[-122.95955242490317,55.48192772522166],[-122.95958662515024,55.483982037416375],[-122.959009701765,55.48593184097312],[-122.95821764458422,55.491750243788005],[-122.96080136990965,55.49556124134818],[-122.96296296124021,55.49845625891343],[-122.9637412347879,55.50221443419486],[-122.95894700664603,55.50407094418946],[-122.9534248679934,55.505470191375466],[-122.94854609895786,55.50800578241337],[-122.94598266675752,55.51161991783008],[-122.94293066135457,55.515177261330926],[-122.9407968998519,55.5198061379668],[-122.94128281927686,55.52424785575454],[-122.94205151497445,55.52852609058526],[-122.94540542031899,55.535575458117236],[-122.94647153749807,55.53888346383701],[-122.94742454931436,55.5407629008903],[-122.9497720209528,55.54290940161837],[-122.95415304459719,55.54528459929813],[-122.9543055601703,55.548077131119626],[-122.95040381000497,55.55003584573558],[-122.94692196498029,55.552112277537994],[-122.94486198162394,55.555550426204405],[-122.94168474622961,55.55841431281577],[-122.9352699206976,55.560562406993526],[-122.92996222078978,55.56298837260658],[-122.92909077177768,55.565217880307685],[-122.93107233905232,55.56840496668585],[-122.93455503792613,55.57152108053841],[-122.93994709673564,55.57422631278706],[-122.94206954004564,55.574556030052726],[-122.94774900520898,55.576012474878084],[-122.9534247817832,55.577522367757396],[-122.95578173693136,55.579785515595454],[-122.95864788813313,55.582051983355804],[-122.96179237413783,55.58254958690793],[-122.96783448542381,55.58177203649841],[-122.97133605009964,55.58050250593973],[-122.97332778086191,55.57962691662653],[-122.97759379614442,55.575613748056305],[-122.98276607406223,55.57159534676726],[-122.98746597297752,55.56939472011826],[-122.99143834031607,55.5662887460861],[-122.99823180360522,55.56288253027874],[-123.00697132788277,55.56128891886497],[-123.01535933665429,55.561408016362535],[-123.02080865763901,55.56212036912072],[-123.02404656691657,55.562206169859174],[-123.02543006829234,55.560714595319446],[-123.02631055055753,55.55956976476309],[-123.02758609385606,55.558030778019514],[-123.03170573482123,55.55737508834592],[-123.03688536020196,55.558717015844834],[-123.03965536586159,55.561033082660266],[-123.04151478443441,55.56340831829414],[-123.04233349334079,55.56437810370363],[-123.04448195910683,55.56521780487409],[-123.04823733942274,55.566911254874974],[-123.05089148533956,55.56865941427465],[-123.054679290373,55.57142943585719],[-123.0562130284086,55.57198549190772],[-123.05956581413324,55.573113195957156],[-123.06324407436917,55.57565620239879],[-123.06603479470554,55.57837561915467],[-123.06931442499005,55.58137538266616],[-123.07371018562701,55.583916867112514],[-123.07648801720391,55.586178423351534],[-123.07531099819523,55.588123688690516],[-123.07129560465562,55.58906127056402],[-123.06668907275782,55.5904601594596],[-123.06440398394007,55.592531885532736],[-123.06546319202431,55.59457416650442],[-123.06793009102775,55.59673897686703],[-123.07080610832296,55.59962164945654],[-123.07257931336324,55.60235301639518],[-123.07479850102112,55.606385952043844],[-123.07555646857686,55.609290892440015],[-123.07570014025475,55.61145522381504],[-123.07475457600206,55.61414117308287],[-123.07122889542634,55.61964534696923],[-123.07000936434301,55.624100318532356],[-123.0728863986586,55.62613108780618],[-123.07894825655282,55.626442488907415],[-123.08662984575099,55.62638764876163],[-123.09440881578246,55.62696225898986],[-123.0991904413427,55.62801420789993],[-123.10455494933167,55.62872073256082],[-123.11073006664034,55.629015262805424],[-123.11667804648765,55.6289276816165],[-123.12547470460575,55.62931745956678],[-123.13159354577871,55.63150160381208],[-123.13496408262608,55.63358696351438],[-123.13676608299102,55.637107014315454],[-123.13814264555118,55.63990003305231],[-123.13906621720335,55.64035144304454],[-123.13966813457078,55.640401003861555],[-123.14583711390182,55.64058602698916],[-123.14860808146501,55.64216422554665],[-123.150089214979,55.64529122277839],[-123.14915818107015,55.648946358172225],[-123.1460062762292,55.65245248500399],[-123.14072971831625,55.65579370291212],[-123.13431625811765,55.65875016515121],[-123.12971782619314,55.66084212738718],[-123.12768004970764,55.66433741250013],[-123.12774468650865,55.66763859127001],[-123.12841239968739,55.67031690909279],[-123.12778604899118,55.67369198594566],[-123.12684227927024,55.676602520885886],[-123.12690258207992,55.679742212030675],[-123.12743372796317,55.68100069580096],[-123.12999976228018,55.682574592944675],[-123.13227311601308,55.68467079492908],[-123.13019846275999,55.68645269841967],[-123.12718426552867,55.68732543758685],[-123.12277392890769,55.68941256896609],[-123.12113720129467,55.69306941598925],[-123.12168550731859,55.69541328764146],[-123.12373484037576,55.69641955499397],[-123.12759992691196,55.69725202394335],[-123.13035840967339,55.698606119661015],[-123.13234485978276,55.70115306599935],[-123.13371191372131,55.70388314583208],[-123.13680492437443,55.706141362480636],[-123.13949025169212,55.70852473661515],[-123.14056299413708,55.71114044605684],[-123.14021877343932,55.71370604897851],[-123.13934842569405,55.71559617632755],[-123.13640843847027,55.71984233145519],[-123.13337197115244,55.724310408224824],[-123.13452916678253,55.72664116594805],[-123.13667544488911,55.727658357318965],[-123.1389226481656,55.728606068282616],[-123.14252872664633,55.73086678830544],[-123.14450562802675,55.73313532556574],[-123.14686326943323,55.73477581747269],[-123.15117092879447,55.73662175382606],[-123.15352227108583,55.73768810693829],[-123.1624839964521,55.73990765988713],[-123.1670494845633,55.74039591723626],[-123.17319312748971,55.73868674993941],[-123.17894668239724,55.737739681490226],[-123.18338995360827,55.73724726969653],[-123.18804876271273,55.736867109963114],[-123.1910261999472,55.73428841447507],[-123.1955946111678,55.73088430234233],[-123.19672360369553,55.727331843597426],[-123.19359511509222,55.72324527075048],[-123.19097365967131,55.71944787392395],[-123.19396152482231,55.71760462637245],[-123.20104173418274,55.71703586403216],[-123.2093154412117,55.716062772928886],[-123.22299572770163,55.71241099923671],[-123.23482347882269,55.707820527857365],[-123.24245582172598,55.70546839526348],[-123.25305736137187,55.69985422788448],[-123.2647875635443,55.69958954447233],[-123.27017736210502,55.7010334624816],[-123.2797605968773,55.70346438367885],[-123.2887259740731,55.70584538895303],[-123.29840262720066,55.707873394691575],[-123.31825826386952,55.712332304063175],[-123.32811635882798,55.713841817953394],[-123.3308226941693,55.71656199765307],[-123.331709132169,55.71928841072023],[-123.33546378894827,55.72662110251065],[-123.3394507076151,55.72812191901599],[-123.34235755008548,55.73049639560327],[-123.34142395499917,55.733471234620644],[-123.338066847356,55.73686112709229],[-123.33390929690253,55.74026988055694],[-123.32768394421245,55.7459119995243],[-123.32531709038591,55.74856050385054],[-123.32380041095581,55.75233877781489],[-123.32102870612991,55.7545841310439],[-123.31524068728643,55.75771562889232],[-123.31277231489744,55.760424537933275],[-123.31214041998909,55.76362085235097],[-123.3124737213727,55.76436315622666],[-123.31510551735948,55.76822073266875],[-123.31551020151345,55.77169017093103],[-123.3126322134043,55.773825536891906],[-123.30832241242666,55.77632480595311],[-123.30817891584326,55.77820458764452],[-123.31039735822885,55.78132720696451],[-123.31217091073921,55.78370510192393],[-123.31481992796748,55.78756304331836],[-123.31508586863731,55.790249509641775],[-123.31621149385322,55.79394051015507],[-123.31881035030302,55.7999760069685],[-123.32120666985199,55.80262699414764],[-123.32563042441801,55.80487259731184],[-123.33022226550027,55.805579458848044],[-123.33615004261392,55.80712126978842],[-123.33947067491566,55.80961206103339],[-123.34167241475589,55.81233025226167],[-123.34141431190295,55.81427040697544],[-123.33941866386547,55.81897131959582],[-123.3376746347018,55.82206366075343],[-123.33834183737126,55.824283329357215],[-123.34193788861337,55.8257935906603],[-123.34564848703427,55.827987556688],[-123.35010166307866,55.83057354966624],[-123.35405793405441,55.83053991372841],[-123.357279715802,55.82999767265637],[-123.36527298940577,55.82895424507151],[-123.36846496301332,55.83030287774661],[-123.37498772331357,55.831155832624646],[-123.3796083641266,55.832937305865904],[-123.3801958014994,55.835675064400135],[-123.37844001678009,55.838256640558306],[-123.37580914077003,55.84244283090659],[-123.3749726370716,55.84467586385176],[-123.37450630058498,55.84639656997338],[-123.37275794395326,55.849094801890544],[-123.36850640431204,55.849929837017434],[-123.36462600274992,55.852646329802944],[-123.36387637897879,55.854764568510554],[-123.36393186486389,55.85681890341301],[-123.36471531081895,55.85948912700087],[-123.3649617237693,55.86132329617121],[-123.36740709039924,55.861410099828504],[-123.37726571664041,55.86131911619345],[-123.38579638498793,55.8609578397191],[-123.38755291461,55.86225831620283],[-123.39173752016455,55.86610135008689],[-123.39636170849356,55.86765805879866],[-123.39901343895227,55.86826850192336],[-123.4058344985668,55.86882999941683],[-123.41452475440568,55.870460402800184],[-123.42194345148732,55.87341808953761],[-123.42720462613056,55.876053520590915],[-123.42840189142751,55.87883927213502],[-123.4322230777366,55.88417073448772],[-123.43571515934781,55.88544295304884],[-123.44026129693442,55.884548803841724],[-123.44694091790092,55.88362584495862],[-123.45263921317704,55.88374967827678],[-123.45836592759888,55.884429684863484],[-123.46045143965456,55.883153642077886],[-123.46541352693589,55.88225799046752],[-123.46936116246759,55.88193357716261],[-123.47441950977915,55.88103054008264],[-123.47603160845551,55.88038134543429],[-123.47831807729727,55.87870559311092],[-123.4810050631477,55.877028815569744],[-123.48486162888236,55.87636143569689],[-123.48740544519264,55.87668095223833],[-123.49078296191183,55.8775010848422],[-123.49493275062365,55.87700955729906],[-123.49728801577712,55.8772713468402],[-123.49763470581792,55.87863196371962],[-123.49859680162922,55.88039922278275],[-123.4993259443814,55.880781215190694],[-123.50300820307385,55.88160703425256],[-123.50526569680066,55.88215362767091],[-123.5078279712263,55.882697218857096],[-123.51064726282785,55.88170379363562],[-123.51233157808196,55.880661098826195],[-123.51482712871304,55.8792039934667],[-123.51755136439708,55.87844165133483],[-123.5207967142066,55.87805703981353],[-123.52156795898142,55.87674530729535],[-123.51874690014702,55.87419767950059],[-123.51693359660864,55.87193872827416],[-123.51850583177409,55.86986277036535],[-123.52261696963727,55.86817723531224],[-123.52741995938605,55.86618235930199],[-123.53443276146517,55.865996540296],[-123.54126744613714,55.86661372618286],[-123.55116258829288,55.86748706977303],[-123.56147038874082,55.86869032799143],[-123.56985908217945,55.87036687544282],[-123.57553922515912,55.87311157830509],[-123.57767584169333,55.87616473005742],[-123.57859349540557,55.87923933989477],[-123.57966853694985,55.881052898805784],[-123.58192322678059,55.88166080563927],[-123.5846009279184,55.8824291516429],[-123.58787779686243,55.8833612677147],[-123.5931211517263,55.884904474618786],[-123.59553815010102,55.88443046950963],[-123.59724445466051,55.88378155663214],[-123.60099090671135,55.88305478153755],[-123.60456914041222,55.88404596039857],[-123.60574421091535,55.88528741988962],[-123.60956335910541,55.887071914639705],[-123.61569404955642,55.88774340855127],[-123.62157698451517,55.890140145880615],[-123.62550704220573,55.89249996920433],[-123.630038357704,55.893929625948644],[-123.63305824921406,55.89275797661456],[-123.63539350010632,55.89284645778828],[-123.63767900013723,55.894305568368075],[-123.64081876677524,55.89649773952445],[-123.6449395162069,55.89810745053285],[-123.64779674502415,55.898590889893065],[-123.64924252042296,55.899083914722176],[-123.65260193057358,55.90218528890904],[-123.65555537351992,55.90483978013262],[-123.6588887864821,55.90731296674595],[-123.66068109393625,55.9090045611766],[-123.66210180196524,55.91155883864057],[-123.66461837869738,55.91375680105784],[-123.66809004273452,55.9141793739124],[-123.67461865918973,55.91444287912127],[-123.6808994511364,55.916198594238],[-123.68205542804736,55.92001178438037],[-123.68072572305059,55.9229905820859],[-123.67940527787738,55.92580817857803],[-123.6801244104564,55.9285914227305],[-123.68104151823127,55.93155758052802],[-123.67886038894248,55.93591031028071],[-123.67732359496956,55.938849448025856],[-123.67436886337632,55.941332250404095],[-123.67039714619067,55.94445072302776],[-123.664588325807,55.946862885805615],[-123.65730642672294,55.948655898276755],[-123.64912741201435,55.95040497249721],[-123.6470262398172,55.951450721910376],[-123.63967530874673,55.954102100489315],[-123.63478054955989,55.957014088937264],[-123.63027581795265,55.962246148785475],[-123.62944015642998,55.96734054282145],[-123.62944276394481,55.967564715383936],[-123.62235619933139,55.96895606056144],[-123.61262450514553,55.970252416171135],[-123.60746109203808,55.97116813822531],[-123.60513139906799,55.9717068855522],[-123.59869584413,55.97451675580988],[-123.59840947691353,55.97816909746555],[-123.59903134573075,55.98141728023997],[-123.59976810835546,55.98489176396863],[-123.59815625981695,55.9886714363834],[-123.59311776284363,55.99329161519988],[-123.59215712550841,55.995075388951484],[-123.58662051980997,55.9973011447235],[-123.58589701045116,55.99993212283362],[-123.58158591727376,56.0033913020438],[-123.58019077568177,56.00700460591155],[-123.57798508479705,56.0104589933211],[-123.57336466324307,56.015256837259095],[-123.56905606662963,56.019934998783334],[-123.56373151496459,56.024638376764436],[-123.56275285205365,56.02824162005109],[-123.56139604467465,56.03015210090539],[-123.55940244221316,56.03143171797115],[-123.55519406563866,56.03599487531039],[-123.5508523598695,56.04009810731203],[-123.54679711225175,56.04346260741886],[-123.54210610529802,56.04642917639804],[-123.53896748220052,56.049784295333446],[-123.53711192337889,56.051918010758946],[-123.53343021855665,56.05441971854067],[-123.5261393651187,56.055936614819274],[-123.51705357332013,56.05603732326322],[-123.5093975962836,56.05618334999235],[-123.50949640480393,56.058695694955674],[-123.51095683152352,56.0623375068172],[-123.51554972945819,56.065081241456745],[-123.5158572605884,56.06531139656433],[-123.52031333786415,56.066913626957955],[-123.52084242248674,56.07027713103474],[-123.51635797631747,56.07039579495824],[-123.51249030712971,56.07094776476708],[-123.51020468273722,56.07526038726224],[-123.51034928520708,56.07628532033242],[-123.50823737309197,56.0801351052019],[-123.50584147442616,56.08159438444323],[-123.50104471165673,56.081536056391926],[-123.48546648276623,56.080287482296555],[-123.47927461801166,56.078873768120765],[-123.47689068259822,56.07786711965309],[-123.47302862182293,56.078310435715046],[-123.47190532106211,56.08100479504479],[-123.47255343201412,56.08471166894017],[-123.4712058020843,56.08713259310946],[-123.47274133189788,56.09031915643729],[-123.47399366184806,56.09063991706757],[-123.4764831932769,56.09478680799388],[-123.47486375184343,56.10069017475632],[-123.4734760808143,56.104984255557426],[-123.47318749752237,56.10847528895431],[-123.47456752837908,56.10982966842189],[-123.4762134806093,56.1130721812711],[-123.47449477919591,56.11623897118043],[-123.4745869015394,56.11857198383144],[-123.47098299629681,56.12095712858279],[-123.47055952518107,56.12353095731428],[-123.47082635298825,56.12489911233793],[-123.47320553138151,56.128532820632756],[-123.47421121793276,56.13120675719628],[-123.47672724152525,56.13271813459628],[-123.48036080187694,56.13416192133461],[-123.4820898351993,56.13688596686859],[-123.48215234574509,56.13842937702152],[-123.4839060375871,56.141781512990676],[-123.48659820695848,56.14534940487226],[-123.49103143044326,56.14895154732528],[-123.48980045785298,56.15205647173044],[-123.48768809309135,56.15556541977528],[-123.48681108176216,56.15969049123553],[-123.48837914720325,56.163442382688906],[-123.49439872263282,56.165999710558964],[-123.49896550117329,56.167550921735284],[-123.50019627220873,56.17028285344702],[-123.50168121806682,56.17460676728238],[-123.50263404105807,56.175620687665486],[-123.5077067767721,56.1771097476621],[-123.51254736816146,56.18048592314467],[-123.51158632955998,56.184950238964916],[-123.5057268951506,56.18718485898443],[-123.50056186969312,56.18890383419777],[-123.49806754867134,56.19053159127455],[-123.4976310910192,56.19281838368217],[-123.49904726436343,56.19772381248562],[-123.4934386155894,56.198519276154244],[-123.4886790058847,56.200183022017974],[-123.48862247596645,56.2043512489763],[-123.49022549339028,56.205817418465394],[-123.49464259670884,56.20902454436653],[-123.50081595343805,56.21232869368814],[-123.50891214485091,56.21515004728427],[-123.51621866601691,56.218717627802626],[-123.52622382397603,56.223350304875034],[-123.52683368561729,56.223164870484744],[-123.53831070273179,56.22292954268992],[-123.5420314219899,56.22624702657147],[-123.54152162728063,56.22922294348794],[-123.54255226583487,56.232129906970684],[-123.54608952008718,56.233229081221516],[-123.54925680571876,56.23559424700891],[-123.55105376249965,56.239968367676646],[-123.55246053202653,56.244639833684516],[-123.55249493291385,56.24538468746959],[-123.54983381066619,56.25095546133008],[-123.54496440491691,56.25250275031259],[-123.54145180617215,56.25459603727561],[-123.54283046107717,56.25841531089332],[-123.54764642455818,56.26109913653198],[-123.5510511493528,56.261514152700265],[-123.56058964341922,56.26140081181533],[-123.56436561216783,56.26079144681977],[-123.56350353409195,56.26216476557971],[-123.5619670595789,56.26527362326276],[-123.56033167038237,56.268147459587865],[-123.56000891721061,56.27021249946564],[-123.55865752373592,56.272679302275186],[-123.55564733707845,56.27448672990994],[-123.55209891783936,56.27583546634526],[-123.55328351006577,56.27708654220096],[-123.55925668365039,56.28307371488653],[-123.55922765657468,56.28483952422122],[-123.55637757673823,56.288479186894484],[-123.55435588028978,56.291811866058715],[-123.55501527651124,56.29551862586594],[-123.55833155682845,56.29662211381921],[-123.56055628751699,56.29809024062005],[-123.5625168554061,56.30120310067977],[-123.56579892119063,56.30391071043849],[-123.56498524890135,56.30683618594394],[-123.56278370742,56.31097258025444],[-123.56242067531433,56.314982613290155],[-123.56295984627194,56.31543224349159],[-123.56451959035874,56.31849260602467],[-123.56078331062052,56.320716814039756],[-123.55278820398345,56.321317278020906],[-123.54770059238486,56.32543409999659],[-123.54732286889819,56.33172136949731],[-123.55064817329017,56.33505786286057],[-123.55682492307807,56.33817974216379],[-123.56388463133764,56.342501701145345],[-123.56582297457541,56.3447084820898],[-123.5666427548484,56.350301254074736],[-123.56856423132481,56.35461480909885],[-123.57670095126086,56.354975324117326],[-123.58800385627511,56.354498366058706],[-123.60547794485083,56.353893904652985],[-123.61477192511296,56.354695056933885],[-123.616391254519,56.359531185240776],[-123.61790915737458,56.363908124156175],[-123.61745278530105,56.36820349964933],[-123.61231277733884,56.37106668716699],[-123.6108075691276,56.374454830842225],[-123.61227430230105,56.37780873636299],[-123.61525309135642,56.38006100931145],[-123.61966174380096,56.38229495307748],[-123.61891118408543,56.38395773129669],[-123.61530530309611,56.386921330394024],[-123.61559321862904,56.388854483613166],[-123.61284905240487,56.39231825753341],[-123.60700107676327,56.39581373110601],[-123.604345253123,56.398875510901114],[-123.60587546191839,56.40119955004305],[-123.60594578554692,56.40296728135046],[-123.60363040602999,56.406824487473315],[-123.60143060941638,56.40879186915207],[-123.59561465744987,56.41012654724974],[-123.58749485546986,56.41061959875738],[-123.57923052676527,56.410033402488025],[-123.56946513799019,56.410601832148934],[-123.55987570343204,56.41328904480079],[-123.55949159289854,56.41361911055576],[-123.55904949405114,56.41399963061758],[-123.55797238666723,56.41586439866645],[-123.55788242657924,56.41610142766533],[-123.55753818820264,56.41679988950488],[-123.55705780429733,56.41772665370823],[-123.55696453566368,56.418113814444396],[-123.55677611211695,56.41878834364817],[-123.55671829089236,56.41932301248514],[-123.55682679910466,56.4200233754245],[-123.5568511670201,56.420607807602266],[-123.55697905246609,56.42138812099192],[-123.55718412159574,56.421908744353125],[-123.55720132710059,56.42195838997403],[-123.55748174088298,56.422540974629484],[-123.55761413416934,56.42311961866556],[-123.55764593625581,56.423617886588204],[-123.55761890947447,56.42401751925346],[-123.5575646403386,56.424885153284684],[-123.55738626265078,56.425658513189425],[-123.55709550742807,56.426572082248896],[-123.55712047582065,56.42669249018896],[-123.55716398276725,56.426841272825826],[-123.55735797224995,56.42714984250784],[-123.55750922603976,56.427297314570964],[-123.55756778025899,56.42740042826157],[-123.55809445273832,56.42787897811139],[-123.55849457425963,56.42820492094769],[-123.55899636050185,56.42869196000642],[-123.5593638221346,56.42908565098998],[-123.55939824505182,56.429184941986954],[-123.55953132243638,56.42936344979196],[-123.55959492155426,56.42964599659104],[-123.5595891827606,56.42983531327689],[-123.55959016197451,56.4298846498929],[-123.55939101623903,56.43099051552714],[-123.55931481283177,56.43133204988037],[-123.55924489733754,56.43219042249397],[-123.55922894084344,56.432348160785786],[-123.55937432717485,56.43382486493433],[-123.55937089432035,56.43413976285278],[-123.55957493957332,56.43506835942789],[-123.55965506192182,56.435606778652925],[-123.55941782546451,56.43615148980344],[-123.55937856511753,56.43625946691301],[-123.55938905866978,56.43654660849359],[-123.55970194185169,56.43706703895113],[-123.55992056602074,56.43734020580607],[-123.559979981328,56.437397379312664],[-123.5603797975775,56.43782755044275],[-123.56060549698549,56.43798764303267],[-123.56085660447035,56.438228920737714],[-123.56124726343205,56.43844819187299],[-123.5622770517264,56.43904052742376],[-123.56252670599228,56.439272807110335],[-123.56259515979146,56.43938059006768],[-123.56270442054442,56.43955079594582],[-123.56272403185822,56.43975740803346],[-123.5626945104283,56.439937306751744],[-123.56287993087724,56.44025467210088],[-123.5630716423586,56.44043877348654],[-123.56321239595873,56.44052775383906],[-123.56334594298207,56.44063453102607],[-123.56349727162022,56.440781996986956],[-123.5635488612851,56.440867041789716],[-123.56355097923566,56.44106099202247],[-123.56336185401996,56.44168172329995],[-123.56325693249947,56.4424183824507],[-123.56306919405381,56.44301672288737],[-123.56300098399007,56.44342566519562],[-123.56285984827952,56.443961001418664],[-123.56252371486713,56.44468990639205],[-123.56232375846723,56.44502797285622],[-123.56169872145259,56.44566395938399],[-123.56160927056312,56.4457945222134],[-123.56128659643532,56.44620983715904],[-123.56107906539177,56.44666881244318],[-123.561099724217,56.44695614825958],[-123.56115740681227,56.44704131003437],[-123.56187566856168,56.44826438066222],[-123.56207197536185,56.44863575654469],[-123.56212456457864,56.4489326659358],[-123.56202863181841,56.44968743222488],[-123.56191329099471,56.45019972145686],[-123.56180080388181,56.45043857190797],[-123.56158183761441,56.45072247571583],[-123.56128928985436,56.45098032168724],[-123.56041427948092,56.45145127014423],[-123.56011352738344,56.45167757331236],[-123.55954960850127,56.45201656329925],[-123.5582882352808,56.45261913891823],[-123.55686529414466,56.453399088560495],[-123.55662164170423,56.45355697703994],[-123.55651430892934,56.45361546084383],[-123.55589312698321,56.453991455776965],[-123.55549346149247,56.45430329399399],[-123.55529054189988,56.45449221982693],[-123.55521841478824,56.45460517549646],[-123.5546782242706,56.4554075215192],[-123.55426499523445,56.455902922520536],[-123.55419713872418,56.45598009101018],[-123.55341183910038,56.456832684963416],[-123.55326854233948,56.45707542627165],[-123.5532384672489,56.45729566659445],[-123.55351010582442,56.457924055042845],[-123.55367540063135,56.45849773461634],[-123.55386249569538,56.459404731590936],[-123.55402453706354,56.459803491215915],[-123.55411167169312,56.46009994381739],[-123.55418462041911,56.46068755562359],[-123.55429855546275,56.461140321599004],[-123.55431828274072,56.461279686998104],[-123.55472154240117,56.462468781012774],[-123.55483438288456,56.462809437455526],[-123.55502811979845,56.463059722221494],[-123.55529503954793,56.46331027958999],[-123.5559948591634,56.46382351989871],[-123.55606117318013,56.46386849692532],[-123.55670996789576,56.46428772830105],[-123.55748573475884,56.464855087075506],[-123.55774400516549,56.46498441905483],[-123.55811733539082,56.46522466491888],[-123.55865320951577,56.46569441940101],[-123.558877800246,56.46593968032279],[-123.55949766372568,56.466529841801666],[-123.55976540607035,56.46686559208084],[-123.56012518013443,56.467160497352296],[-123.56069093955904,56.467575887512965],[-123.56089019661704,56.4676738276258],[-123.56118183748957,56.4678878525487],[-123.56171476495685,56.46817819620823],[-123.56186457970477,56.46825389890324],[-123.56214621084084,56.4684004784384],[-123.56320781604177,56.468821909049005],[-123.56369635303183,56.46897689563378],[-123.56413537009811,56.4690782592827],[-123.56506159543868,56.46925835745464],[-123.56628479905936,56.46943735352453],[-123.56651657290539,56.4695033953968],[-123.56673048029971,56.46952986738059],[-123.56680501093402,56.46957387341481],[-123.56709576051699,56.46963991104826],[-123.56745244192408,56.46982264797157],[-123.56763830294815,56.47003801584973],[-123.5677469101404,56.47025304079559],[-123.56776449947829,56.47029708837396],[-123.56780614375272,56.47083590019216],[-123.56775715655635,56.471393171086476],[-123.56762002937039,56.47218976199167],[-123.5676598388154,56.47266016578216],[-123.56769942670752,56.47306891691774],[-123.56777900147061,56.473423502333304],[-123.56778228571554,56.47372956552639],[-123.56773602848014,56.473949503204985],[-123.56735070504106,56.4751056804735],[-123.5673364647237,56.47536657662589],[-123.56744013319052,56.47569359698742],[-123.56773639779732,56.4761285078186],[-123.56819087770782,56.47670092045564],[-123.56861461499919,56.476951055527],[-123.56892126392961,56.47705662015963],[-123.5692204318787,56.47721696573308],[-123.56931116285416,56.477262397703015],[-123.56945262177918,56.477342416314066],[-123.56962015929722,56.47749354402968],[-123.56974553116028,56.47766853295557],[-123.57000379153254,56.478354917883365],[-123.57020212279609,56.4788933325703],[-123.57028701586111,56.47962015112153],[-123.5704129044711,56.480374646667634],[-123.57063027993566,56.48106474074123],[-123.57078561694856,56.48160794593512],[-123.57107713794122,56.482316255171824],[-123.57108781339426,56.482406127941225],[-123.57143662585996,56.48323993829721],[-123.57172458578272,56.48367916614357],[-123.57177533378842,56.48374625792777],[-123.57204250267176,56.48399678304731],[-123.57250903584955,56.48431272464116],[-123.57283257719764,56.48444213691738],[-123.57326374506948,56.48457470287061],[-123.57369447480514,56.484648972997356],[-123.57408294087907,56.48468321237157],[-123.57542971536803,56.48487901829609],[-123.57628915945874,56.48502750426264],[-123.57723382937334,56.48521233947477],[-123.5791795475057,56.48575566728001],[-123.57956099307984,56.485870461074796],[-123.58125688198194,56.48624427838042],[-123.58222486024074,56.4864149434785],[-123.58324326296342,56.48652714322255],[-123.58335839728392,56.486540518378185],[-123.58486905615655,56.48665411993347],[-123.58535763081662,56.48671486641403],[-123.58554735105949,56.48677223520928],[-123.58581269689589,56.4868568054483],[-123.58646155064116,56.48715482410973],[-123.58699213665287,56.487358705400496],[-123.58736549238357,56.48747332341031],[-123.58744700834995,56.48750399742721],[-123.5879766793672,56.487591285835045],[-123.58907562911077,56.48768477525619],[-123.58969626829179,56.487781610076986],[-123.59151798601032,56.48816325444692],[-123.59203040724856,56.48829952100686],[-123.59234591770071,56.48842873201012],[-123.59247923931343,56.488477186957454],[-123.59346601518892,56.488872293384745],[-123.59432291531137,56.489295223295],[-123.595031173984,56.48968734240007],[-123.59578557692421,56.49002427725566],[-123.5959186621428,56.49010971299819],[-123.59628486908834,56.4902421044954],[-123.59645811867387,56.49033613737209],[-123.59681520336652,56.49045154346198],[-123.5969748501909,56.49053523323384],[-123.59771995854469,56.49079240017195],[-123.59918980898357,56.49137359253663],[-123.60000094636065,56.49168241921417],[-123.60111636735155,56.492105648128586],[-123.6014786494733,56.49226933548248],[-123.60161922966832,56.49233248748421],[-123.60188602685739,56.492460764622535],[-123.60220132816352,56.49259443005179],[-123.60260761081089,56.49280377036647],[-123.60283121850871,56.492972711788916],[-123.6029573399174,56.493138712916654],[-123.60306080359018,56.49347466411426],[-123.60314876650739,56.4937979964203],[-123.60328349586496,56.494452859360074],[-123.60327726331055,56.49514992759258],[-123.60328497614523,56.49571947637493],[-123.60335191006423,56.49628564659159],[-123.60331294608964,56.49691933576486],[-123.6033387038616,56.49795662738024],[-123.60336557555217,56.49917440161021],[-123.60338491127486,56.499919025306745],[-123.6034785574288,56.49991853029772],[-123.60344107600011,56.499998534412086],[-123.60324374517396,56.50042751264047],[-123.60309994274128,56.50064788496142],[-123.60296365031856,56.500878485193354],[-123.6028198446394,56.50109885725118],[-123.60265657078197,56.501337920917514],[-123.60246049337115,56.5015808558702],[-123.60228501794728,56.50181969152816],[-123.60212246030167,56.50201393288038],[-123.6019391923995,56.50218088643111],[-123.6016172704121,56.50228584510374],[-123.60161620352781,56.502402396769426],[-123.60140271297367,56.5024981700469],[-123.60127935940112,56.50258441690678],[-123.60113753654079,56.50270618704943],[-123.60102062513546,56.50278694955736],[-123.6009375494078,56.50291317896068],[-123.60042778852424,56.50332511187786],[-123.60029288651441,56.50343355989366],[-123.60000116457516,56.50367582647868],[-123.59979537893398,56.50384459861625],[-123.59966526473632,56.50390830019926],[-123.59938525677016,56.504026366413626],[-123.59896903174587,56.50420801895663],[-123.59887467753269,56.504351970686535],[-123.59880640299498,56.504568146244196],[-123.59890101834107,56.50468424433627],[-123.59902864211554,56.50485924504515],[-123.59919917150883,56.504965552473216],[-123.59951445130855,56.50533236695252],[-123.59960166377965,56.50540349087351],[-123.59970848200844,56.505519816285464],[-123.59991119204378,56.505896856719374],[-123.60000009078384,56.506105880523535],[-123.60002138525155,56.50615671798813],[-123.60013571693345,56.506349403436545],[-123.60031035434501,56.50655442377115],[-123.60043247519963,56.50681899095759],[-123.60051634735316,56.507043612924825],[-123.6006068704984,56.5073255241074],[-123.60070022216868,56.50749539964909],[-123.60066065237889,56.508138048390165],[-123.60086479752057,56.508591334335485],[-123.60106401938823,56.50902547303124],[-123.60108548906368,56.50910657749661],[-123.60161531507164,56.50949420453813],[-123.60161566106154,56.509620870963474],[-123.60219885127671,56.51013390954334],[-123.60244820089753,56.510415420033624],[-123.60270486093012,56.510710516993534],[-123.60296845148241,56.510992292057146],[-123.60325737794341,56.51129247318962],[-123.60351970444962,56.51162802595749],[-123.60378947620733,56.51190879361576],[-123.60407231548199,56.512208859322286],[-123.60429578126734,56.51258067518438],[-123.6043264260699,56.51264513684184],[-123.60479773704455,56.512992428290836],[-123.60589859686957,56.5129344771417],[-123.60609745627734,56.512878774344095],[-123.60622837668166,56.51276912436773],[-123.60654841983569,56.51249710553889],[-123.60684809455527,56.5122583332725],[-123.6070762518422,56.512023833287635],[-123.60729841444497,56.51182060609572],[-123.60752074123334,56.511581513395],[-123.60780102016383,56.5112605537864],[-123.60797771287018,56.51103518253418],[-123.60823104095371,56.51075519323057],[-123.6084597872626,56.51044448230604],[-123.60866237147486,56.51012880076818],[-123.60885774017558,56.50976478689317],[-123.6090400943844,56.50948011325381],[-123.60916279379236,56.50920553846733],[-123.60932615684055,56.5089317200862],[-123.60952141834827,56.5087683411653],[-123.60955118898322,56.50874759820783],[-123.61001942938765,56.50801652654347],[-123.61169340709576,56.507206988845496],[-123.61383991659831,56.50645776638126],[-123.61548602447834,56.50606799332207],[-123.61712566412238,56.50578344210531],[-123.61979717646072,56.50583295277322],[-123.62313352673473,56.50589470662933],[-123.62484634529241,56.50597793619808],[-123.62645596345469,56.50621840016232],[-123.62823553692675,56.506776944643406],[-123.62973168027729,56.5072775555221],[-123.63066605531537,56.50761087085181],[-123.63207832551831,56.507951864768955],[-123.63337599267318,56.50702975735372],[-123.63494872590584,56.50626962219082],[-123.63593093873604,56.50581469050827],[-123.63719022536988,56.50552288848905],[-123.64010493060034,56.50468200074503],[-123.64174114782736,56.504449757742144],[-123.64393482826164,56.50448999774953],[-123.64576218986764,56.50426008781364],[-123.64895050585329,56.50363585957895],[-123.6498045591174,56.50354724324451],[-123.65154335168774,56.50336719204494],[-123.65384830551362,56.50314701770833],[-123.6551618982143,56.503538634866885],[-123.65567000568555,56.504599265832205],[-123.65602064275323,56.505131342364265],[-123.65702234154658,56.505938690591904],[-123.65766714423523,56.506318085099174],[-123.65838935559398,56.50669664503388],[-123.65846431485883,56.50670249429187],[-123.65921076831245,56.50671160975465],[-123.6600366168062,56.50678829685131],[-123.66069811459727,56.50685638268777],[-123.66126146553034,56.50689802020886],[-123.6619875240726,56.50690786915171],[-123.66257075089965,56.506855711031925],[-123.66330343640178,56.50672108338263],[-123.66392424345389,56.506619164283244],[-123.66460414412849,56.50651607448244],[-123.66539608884976,56.506445279640566],[-123.66555434252442,56.50645375878677],[-123.66846501696098,56.50614680842824],[-123.67031111983195,56.50560193280822],[-123.67185484851191,56.50531383163653],[-123.67428355705233,56.50462253670383],[-123.67633316631957,56.50387054257758],[-123.67770959109822,56.50321171206302],[-123.67905259818565,56.50307905905034],[-123.68002488492175,56.502780540265086],[-123.68127748166133,56.502593552653394],[-123.68294341665872,56.50346423235352],[-123.68418045312785,56.50353921167119],[-123.685383181922,56.504191913076674],[-123.68667635121936,56.504898910211764],[-123.68807346978248,56.50550128442097],[-123.68947470562425,56.50600059993214],[-123.69049895043388,56.50643932496858],[-123.69160014353322,56.50719437863208],[-123.69202504164159,56.50809643733547],[-123.69262666335001,56.50921126410759],[-123.69325629058807,56.50985359762792],[-123.69505566346992,56.51009547740412],[-123.697067905346,56.50997351230525],[-123.69718888133039,56.51095753139197],[-123.69724439305817,56.51105155532907],[-123.69714273978775,56.51139383043615],[-123.69710523024287,56.51175294657954],[-123.69730411974655,56.51214207755646],[-123.69748772387692,56.51241100496124],[-123.69786373827012,56.51279994550558],[-123.69828550781114,56.51313814582686],[-123.69869979514326,56.5134997482801],[-123.69906025676487,56.513807706488905],[-123.69941029151153,56.51411996035005],[-123.69977898066657,56.514392196951796],[-123.70048035662103,56.51478807242512],[-123.700659259856,56.5149302565122],[-123.70098102137872,56.51513552070961],[-123.70143986017005,56.51543290224352],[-123.70177047755112,56.51566073944305],[-123.70200703290328,56.51586111495559],[-123.70252019158085,56.51620429696559],[-123.70287566340784,56.51649422136426],[-123.70326279790584,56.516868773123704],[-123.70366572411022,56.51732094341207],[-123.70390259370295,56.517619954394185],[-123.70428478089285,56.51794061444014],[-123.70467839698621,56.51824018148838],[-123.70500188934471,56.51852056198881],[-123.70520040734401,56.518779656506624],[-123.70528724083384,56.51910288640878],[-123.7053337036843,56.519281928676655],[-123.70557211470992,56.51955518473297],[-123.70581537805107,56.519849822802975],[-123.70582272252166,56.51986340390445],[-123.7045997259369,56.51988640570023],[-123.702750322747,56.52048440155578],[-123.70119697158692,56.52092962796866],[-123.69887879979791,56.52136114866945],[-123.69599206271815,56.52173088137898],[-123.69378184749628,56.52195352844138],[-123.69194777026951,56.52228825078404],[-123.6905833255708,56.522737865038955],[-123.68970316890359,56.52308968876446],[-123.68759358380848,56.524839513656154],[-123.68696274064845,56.52582684207619],[-123.68687958457393,56.526266960625804],[-123.68643481957527,56.52665798067276],[-123.68419814513324,56.527354113550075],[-123.68119654749874,56.52803529587776],[-123.67896393812039,56.52862605429743],[-123.67936342599224,56.529953632092784],[-123.67944173269375,56.53021172119687],[-123.68004223553886,56.53137927983708],[-123.6803726055762,56.53222700260752],[-123.67988321362202,56.53268108742047],[-123.67926019213101,56.53325829516284],[-123.67823707376849,56.534396552606296],[-123.67875272750068,56.53504026722184],[-123.6793043891219,56.535729463808984],[-123.68145920409432,56.53645205354551],[-123.68363914225766,56.536753616214774],[-123.6847701804412,56.53698470365261],[-123.68595525446135,56.53795203497516],[-123.68713726152174,56.53897197991179],[-123.68880794061302,56.53979109544638],[-123.69003059857491,56.54012802077613],[-123.69096315656986,56.54051352751649],[-123.69129078776149,56.54141273078971],[-123.6917316514327,56.542051685156316],[-123.69235867574139,56.54274665818575],[-123.69315838459255,56.543759685646755],[-123.69310550882196,56.544652059999414],[-123.69264708584447,56.545958603533705],[-123.69288537867348,56.546750840656614],[-123.69358220267704,56.547920061701205],[-123.6952410048758,56.54894847573986],[-123.69692162284352,56.54960961656421],[-123.69825893138548,56.5496335502141],[-123.69979797961061,56.54945035617603],[-123.70153138790761,56.549219057331705],[-123.70267735242041,56.54923952648402],[-123.70373385977041,56.54915302842582],[-123.70535815684718,56.54918201072243],[-123.70818494240959,56.5498634396143],[-123.70921984239327,56.55014415080426],[-123.71127211499316,56.550969756582646],[-123.71394684471366,56.55101731177503],[-123.7161442740463,56.55100365926687],[-123.71778099904499,56.55082198449933],[-123.72028077436255,56.55055134658074],[-123.72218703967621,56.550637791123],[-123.72362007009045,56.55066315507639],[-123.72487713869384,56.55042199309935],[-123.72405036803166,56.55145872181838],[-123.7244673369977,56.55251745002525],[-123.72450770286905,56.553465278447376],[-123.72397097676125,56.554454459039626],[-123.72325105014355,56.555335037169485],[-123.72220406480912,56.55689354070309],[-123.72076498927801,56.55860313406185],[-123.71964702539529,56.5613697655781],[-123.71977379755099,56.562476052363124],[-123.7226325330453,56.56263203343287],[-123.72517251605782,56.56335955495111],[-123.72740193104504,56.56445030103877],[-123.72964879440585,56.5652790357772],[-123.7312534027466,56.56562229065736],[-123.7326533252114,56.56622531888504],[-123.73374776689012,56.56713903222647],[-123.73608253948387,56.568073437493446],[-123.73777385595682,56.56857617324678],[-123.74035105550487,56.5686741238782],[-123.74128791565639,56.569005525681035],[-123.74181443148296,56.56980384004524],[-123.74175958143645,56.570748872633075],[-123.7396089346301,56.57155288103771],[-123.73734627717587,56.57266872476163],[-123.73528809732768,56.57352697060777],[-123.73329809081665,56.574858265460065],[-123.73159611733907,56.57614304917138],[-123.72932778908803,56.57731246470816],[-123.72792712955832,56.57839179830248],[-123.72735030648364,56.58006290665393],[-123.7269822123664,56.58147653917717],[-123.72693621207085,56.58226369267902],[-123.72708883504693,56.582897432207325],[-123.72515026448744,56.58333620093181],[-123.72298683604538,56.5833999589875],[-123.7217978674308,56.58343497066572],[-123.71971385443616,56.583083116911084],[-123.7185668841888,56.5830627990953],[-123.71695246722798,56.582876141155765],[-123.7147573848618,56.58278451966187],[-123.71259010118503,56.58222034766602],[-123.71099426406609,56.58171897972607],[-123.70800456859311,56.580509054878334],[-123.70592963855964,56.581079612532534],[-123.70573079229744,56.58106261889365],[-123.70512014975887,56.581147010257716],[-123.70451678278123,56.58128084688452],[-123.70385506149279,56.58140131049521],[-123.70316731596927,56.581513460425064],[-123.70253258559208,56.58166017899025],[-123.70200825425616,56.58180213973481],[-123.70142568724052,56.5819632345253],[-123.70093412669647,56.58213716059729],[-123.7003126810847,56.58236929234475],[-123.69971646914621,56.582588421560104],[-123.69932456806966,56.582801111158965],[-123.69878714207456,56.58306051741613],[-123.69826325760872,56.583297746130654],[-123.69766064302834,56.5835212354525],[-123.69670618348489,56.5838314615266],[-123.69579422629297,56.58414692496614],[-123.69504178051623,56.584420402606696],[-123.69429588030064,56.584720894407724],[-123.69358247829271,56.58505783243328],[-123.69300540994801,56.58533107749637],[-123.69256104974822,56.58567058856293],[-123.69216340855469,56.586013177398776],[-123.6916534378793,56.586358235101066],[-123.6911898332769,56.58664359469529],[-123.69063210615823,56.586830868868255],[-123.69044627833958,56.58686900873626],[-123.68951223017721,56.587485551960484],[-123.68909064145488,56.58816172637199],[-123.68867012831406,56.588785237610566],[-123.68587725329222,56.589102730016535],[-123.68552191303195,56.58904142055022],[-123.68284707620583,56.58857522677959],[-123.68105670135868,56.58812266511742],[-123.67808164703045,56.58827978319677],[-123.67597896810328,56.58824185242209],[-123.67435509968467,56.58821253549719],[-123.67395467057574,56.58853036195368],[-123.67345134364807,56.588931516226694],[-123.67224765980423,56.58985579854795],[-123.67209986590622,56.59232470095018],[-123.67223798805888,56.59322055177941],[-123.67257816310142,56.593910446583614],[-123.6732203154493,56.59439506782063],[-123.67395937182076,56.59482875369236],[-123.6732374988287,56.59571019046387],[-123.67314951918453,56.59718034000748],[-123.67343949356133,56.598710000363944],[-123.67357137114021,56.599711103659864],[-123.67358221593759,56.6000072170616],[-123.6736043143622,56.600763102814504],[-123.67375503002833,56.601449573938574],[-123.67553020048545,56.602165367947514],[-123.67731172480497,56.60277588660012],[-123.67850490366703,56.60363806908414],[-123.6791076159085,56.60475301506938],[-123.6790699784044,56.60538340373681],[-123.67604024407817,56.60643287403319],[-123.67359575871745,56.60728211593472],[-123.67172287578057,56.60819432732449],[-123.67079653168942,56.60928167662078],[-123.6696407086447,56.61099594197107],[-123.66954624731638,56.61257135260443],[-123.66986340838847,56.61368118462776],[-123.672310958768,56.61435649312925],[-123.67351061592052,56.615114595345794],[-123.67364255097995,56.61611570749933],[-123.67260139549113,56.61751598020361],[-123.67225098360272,56.618561066178316],[-123.67162446927179,56.6194442363006],[-123.6708969598131,56.62037714117077],[-123.672454993098,56.62156207146064],[-123.67277657530252,56.622566612871665],[-123.67348360696943,56.62357811197105],[-123.67456685069422,56.62464907819603],[-123.67469884532538,56.62565019450363],[-123.67434211608833,56.62680054325714],[-123.67400000837257,56.627740423642905],[-123.67338395285338,56.62841306497597],[-123.67325664145925,56.62893647736451],[-123.673292752829,56.62993586712866],[-123.67247126038643,56.63086709276266],[-123.66990292184452,56.63218821867178],[-123.66773797727868,56.633147812150256],[-123.66535594126735,56.63452378752957],[-123.6638977041031,56.63649598448584],[-123.66275026763307,56.63805233484493],[-123.66219819761812,56.639250688038466],[-123.66259225251557,56.6406780506237],[-123.66382214903537,56.640909953641376],[-123.66514043299416,56.6413026172068],[-123.6659509493134,56.64215798816501],[-123.66620391101466,56.642740966498145],[-123.66710721688152,56.64365069290817],[-123.66764270183698,56.644291462912356],[-123.66821308047274,56.64598429448347],[-123.66748499203767,56.64691719379492],[-123.66627930210828,56.64784256942717],[-123.66507249815211,56.648819478120686],[-123.66435377797035,56.6495944812936],[-123.66429059906389,56.650644774708475],[-123.66443501242075,56.65143652893664],[-123.66439392579358,56.65211955623426],[-123.66478199075878,56.65297064831201],[-123.66500173053907,56.65298583586692],[-123.6657046842724,56.653017615592574],[-123.66628991807217,56.65310442934958],[-123.66718438109076,56.653247275677806],[-123.66846553985552,56.65331303609119],[-123.66964802570298,56.65342295935248],[-123.67051574973917,56.65353503393215],[-123.6715304093736,56.65371813217345],[-123.67281262804973,56.65397106405761],[-123.6738844172992,56.6541899230828],[-123.67478601524363,56.65441915634052],[-123.67561510244651,56.65449462968685],[-123.6764217177193,56.65446768803124],[-123.67741302231249,56.65442725307794],[-123.67816897805011,56.6544274116257],[-123.67930528812239,56.654353702489665],[-123.68017894778914,56.654298799489155],[-123.68118212078765,56.65423052594805],[-123.68183227425868,56.65415477972548],[-123.68237582855397,56.654084961454984],[-123.68293373426286,56.65401427780837],[-123.68368348551432,56.65394703706237],[-123.68432059035207,56.65395287187189],[-123.68507739470154,56.65410993515933],[-123.68553894499685,56.65431886370401],[-123.68598867673212,56.654657606057775],[-123.68639894269918,56.655041596918025],[-123.68667138931755,56.65537267310735],[-123.6868773935694,56.655721613019885],[-123.68705672170013,56.65600393956582],[-123.68727658002614,56.65632622499225],[-123.6875737891483,56.65658488288501],[-123.68793158235023,56.656924211813255],[-123.688163058971,56.65722316443032],[-123.6884683682684,56.657586211605654],[-123.68873490148293,56.657948563291356],[-123.68904107947269,56.658400177930275],[-123.68926824114907,56.65877191152536],[-123.6894752616518,56.65913880026972],[-123.68966029902498,56.6594974484964],[-123.68992657863132,56.65969277481133],[-123.69031982366293,56.65978052279851],[-123.69074111508658,56.65987773902875],[-123.69129446773078,56.66002215440669],[-123.69197345096343,56.66018450801788],[-123.69236830307716,56.66034850143154],[-123.69253491188155,56.660536434574325],[-123.69279422507721,56.660849327485764],[-123.6930665007866,56.661184870202206],[-123.6932926526584,56.6615745131016],[-123.69349794795562,56.66183375510611],[-123.69380340615015,56.66209254543356],[-123.6940732084894,56.6622980141079],[-123.69437139363669,56.66250735220836],[-123.69484008892714,56.662804926765574],[-123.69542741290978,56.66306650707606],[-123.69596125917704,56.66323072983786],[-123.69665875743661,56.663392267460175],[-123.69721787724747,56.66347510841691],[-123.69764550069746,56.66353542372032],[-123.69813275832452,56.663658452515875],[-123.69844292617728,56.66380410176769],[-123.69879376010725,56.66402221486704],[-123.69915019144052,56.66424939420025],[-123.69962510382706,56.66461543802282],[-123.70006229775073,56.66496287283491],[-123.70056444579532,56.665283440549615],[-123.70119153526453,56.665599506777035],[-123.701904500144,56.66594960625223],[-123.70234621051412,56.66611776523998],[-123.7029005311947,56.66631707160849],[-123.70345443546158,56.66659259105034],[-123.70401465941123,56.66689960638894],[-123.70459609211585,56.667228294073915],[-123.70512517960516,56.667543717876626],[-123.70548878785631,56.667788941371946],[-123.7058856993274,56.66812779271278],[-123.7062511316754,56.668480655228734],[-123.70657627479271,56.66878908449178],[-123.70682044252592,56.66898061853851],[-123.70717099130752,56.669135930945004],[-123.70767816324962,56.66930411316646],[-123.70814635565378,56.669440215117],[-123.70866539743365,56.6695805810402],[-123.70939117105603,56.6698198933479],[-123.71000987410146,56.66996874834273],[-123.71061568226287,56.67005908346494],[-123.71122892341575,56.67023137498701],[-123.71187483443357,56.67043899145227],[-123.71246681924765,56.670555974757164],[-123.7126868091584,56.67056884174245],[-123.71309826971681,56.67059294823687],[-123.7134964341177,56.6705305067405],[-123.71427877523729,56.67067775657374],[-123.71563265618516,56.67049099742719],[-123.71662427056424,56.66993015239669],[-123.71743624466987,56.66915651080465],[-123.71854232257549,56.668281578079565],[-123.72095264666217,56.6680618777411],[-123.7224126103282,56.66766731215354],[-123.72415739949916,56.6673293168206],[-123.7259918836383,56.66709936617312],[-123.72705462822547,56.66696004248615],[-123.72812654131461,56.666663943784584],[-123.7292076752233,56.66620995015913],[-123.73077778967543,56.66560650031159],[-123.73252849692913,56.665164254584425],[-123.7334146246385,56.664758362358945],[-123.73455787257367,56.664883806402415],[-123.7365289733323,56.6656021543734],[-123.73801729618,56.66636469132451],[-123.74054290751477,56.66746035337155],[-123.74314122485309,56.6689248932791],[-123.74514457300883,56.67074776207575],[-123.74592696333266,56.672127816689425],[-123.74624475253282,56.67323746125219],[-123.74675961178923,56.674297863609944],[-123.74835816939823,56.67648127067433],[-123.74932360299921,56.678022546598115],[-123.75009706832296,56.67956159010648],[-123.75169344124274,56.68016667559039],[-123.75541677074273,56.68044220807499],[-123.75844294267237,56.68117854997619],[-123.75992020338576,56.68215024071047],[-123.761000397131,56.68337844034717],[-123.76188568167929,56.68465481323114],[-123.76302566120431,56.686515103085355],[-123.76444270996717,56.688537108288344],[-123.76570919366816,56.68987385850598],[-123.76622276262384,56.690934157918974],[-123.76703654323278,56.691788916829374],[-123.76767268334633,56.69406079251585],[-123.76855231074501,56.6954435082557],[-123.76953415233427,56.69672149702828],[-123.76966278942034,56.697827817040434],[-123.77026557598008,56.69904769108399],[-123.7708065542349,56.69963542162694],[-123.77078492662271,56.70001167501191],[-123.77074012523425,56.70079105727219],[-123.77155421215625,56.7016457925697],[-123.76994300859695,56.70298549673116],[-123.76839925019351,56.70311575922733],[-123.76747306209465,56.70332057271067],[-123.76732596729428,56.703352778327826],[-123.76597086813436,56.70365216934065],[-123.76497303834783,56.704318665506904],[-123.76395399400745,56.70535244921172],[-123.7631400818368,56.70612748370444],[-123.76314154419408,56.706137597317365],[-123.76302330006595,56.70627230178691],[-123.76302344079475,56.70644716789791],[-123.76305062042776,56.70668527390418],[-123.7631496036576,56.70709724534849],[-123.76315334484231,56.70713878423096],[-123.76319071591274,56.707519423820074],[-123.76313058803504,56.70785241722826],[-123.76284897067043,56.70815915624108],[-123.7627000206092,56.70825858027435],[-123.7625596975963,56.70835030713654],[-123.76231734998596,56.70847277318822],[-123.76214629406394,56.70867157582091],[-123.76204758852695,56.70889292937507],[-123.76210217494106,56.70911693883161],[-123.76227973649924,56.709408092302105],[-123.7624507405985,56.709671108855055],[-123.76258430967525,56.70994468600022],[-123.76260450993149,56.71030373145869],[-123.76259198997953,56.710591592032806],[-123.76256614789068,56.71093302626535],[-123.76254848143466,56.71127460217835],[-123.76255468021432,56.711557182523705],[-123.76254977073225,56.71192588172205],[-123.76258956512217,56.71240632687383],[-123.76260835923736,56.71257703301751],[-123.76257102684328,56.712904817549926],[-123.76252519417271,56.713238059546605],[-123.76252652926303,56.713534007084405],[-123.76257278790442,56.71390247201175],[-123.76257401083735,56.71427127792653],[-123.76259663326174,56.715120211191426],[-123.76246367893904,56.71533200556361],[-123.76220195166144,56.71561218776362],[-123.76188077387411,56.71603593931908],[-123.76164452917422,56.7164062363721],[-123.76100787463,56.717367049615284],[-123.76066686004323,56.71788573431181],[-123.76043039838748,56.71825938897104],[-123.76009086871849,56.7188229356504],[-123.75974830237114,56.71933262444796],[-123.75927068389096,56.71998344981839],[-123.75892279461391,56.72040785397647],[-123.7586675211784,56.72085852457941],[-123.75830608279857,56.721269241316044],[-123.75795716325916,56.72167569076676],[-123.75764331831095,56.722077143526874],[-123.75732033818474,56.72238876242977],[-123.75684014716435,56.7227290377317],[-123.75629604004918,56.72300655018674],[-123.75584182040437,56.72321612368941],[-123.75580200831395,56.72337348416845],[-123.75586248384363,56.7235662145028],[-123.75595405851394,56.72385812727149],[-123.75614725591775,56.72419776309032],[-123.75623912336555,56.724449327082006],[-123.75635956411735,56.72484374606486],[-123.75649119215252,56.72508030716238],[-123.75679462308243,56.72542521867306],[-123.75694056917412,56.72566202786312],[-123.75696694719086,56.72591357555868],[-123.75700591841155,56.726159737181035],[-123.75725751495904,56.72637484013],[-123.75761345747988,56.726520013311166],[-123.7581656415139,56.72666971099796],[-123.75873218092045,56.72685440427404],[-123.75936485704909,56.727134400393155],[-123.75997099735167,56.727448682362464],[-123.76050566694155,56.72772473194368],[-123.76116421692772,56.72805336756095],[-123.76175831068043,56.72836406931211],[-123.7622314474168,56.728571789575795],[-123.76254125224517,56.728772196577594],[-123.76289714825278,56.728954344767324],[-123.76334569407355,56.72916275604806],[-123.76373358333682,56.729393655784236],[-123.76393970879795,56.72965279572664],[-123.7638558454976,56.730183789277454],[-123.76386149432706,56.73054707037215],[-123.7638627300463,56.730915879869215],[-123.76382412097888,56.73123019507277],[-123.76373216385423,56.731617569117766],[-123.76353598708081,56.73207263794263],[-123.76331940082454,56.73245561344322],[-123.76312974403895,56.73279758009803],[-123.76282836856272,56.73323065079143],[-123.762611728118,56.733578875552574],[-123.76242130770596,56.733898409592236],[-123.76221849949505,56.73429059006891],[-123.76215888784428,56.73454289036755],[-123.76217329289993,56.73478974656628],[-123.76226065704287,56.735084945432256],[-123.76233892805458,56.73550216935033],[-123.76238083766094,56.735910917244276],[-123.76245991174314,56.73627883374351],[-123.76258047652577,56.73663737997456],[-123.76275069077792,56.73702256712998],[-123.76304907505033,56.737492921885206],[-123.76329308564473,56.73784127342363],[-123.76349730910877,56.73824049942787],[-123.7639015520188,56.738934630207844],[-123.76417948742208,56.73944049880718],[-123.76431770978824,56.739919289875495],[-123.76436582633953,56.740256404769916],[-123.76432658574178,56.74065253985205],[-123.76436658553902,56.74098839355908],[-123.76458485840577,56.74114461641682],[-123.76486157299937,56.74128167238394],[-123.76531619341074,56.74142292414971],[-123.76597430452922,56.74165736641431],[-123.76663507048828,56.74184589244685],[-123.76739864761765,56.74213371258003],[-123.76792650593605,56.74235468564905],[-123.7689072493624,56.74267651138638],[-123.76991047743213,56.743070457596964],[-123.77042404280768,56.74329117357287],[-123.77114850150106,56.743548030778754],[-123.77152459584129,56.74370247845829],[-123.77211140536099,56.74386055637492],[-123.77244808729965,56.74395267033689],[-123.77280263859622,56.74412579898706],[-123.77316664944996,56.74431254085393],[-123.77324549116557,56.74443720232453],[-123.77335238947575,56.74475066505417],[-123.77339907370882,56.74504291377457],[-123.77347213354327,56.745410719823845],[-123.7734665790363,56.74572112497908],[-123.77345902904207,56.74606624502626],[-123.77344782381198,56.7464393257519],[-123.77341617324097,56.7467761843115],[-123.7732925199895,56.74711033754464],[-123.77330648565429,56.74736615301095],[-123.7732993423923,56.74781104435753],[-123.77332834657284,56.748197148338406],[-123.77337455619838,56.74856897641886],[-123.7736586473017,56.74886419279503],[-123.77400173168839,56.74905953922504],[-123.77452870545491,56.74926253365659],[-123.77511628191583,56.74951589018506],[-123.77550367330517,56.74976019542374],[-123.77578327055569,56.74999143582934],[-123.77599290675369,56.75026406814923],[-123.77623808990919,56.75055973033053],[-123.77675338509187,56.751216496615136],[-123.77663593825446,56.751585509649715],[-123.776569259829,56.751748020976535],[-123.77674824000819,56.75194838454577],[-123.77697939460262,56.75216757993126],[-123.77747491815065,56.752312852915985],[-123.77792876977787,56.75239911878508],[-123.77840302129741,56.752486854452876],[-123.77920107363667,56.752642922565364],[-123.77997068565058,56.75275926438748],[-123.78040658122804,56.75283736652917],[-123.78088678993826,56.75292855800614],[-123.78149474010033,56.753149726733945],[-123.78212757297997,56.75336571457026],[-123.78253604475421,56.753457911272946],[-123.78386610975924,56.75355245249338],[-123.78460449389455,56.75357070918582],[-123.785052249972,56.753513364705306],[-123.78540652241237,56.75337146813898],[-123.78576200620198,56.75324416362827],[-123.78609804717046,56.75313446036683],[-123.78646790865935,56.753113889473155],[-123.78709898217942,56.75321772840944],[-123.78778485915377,56.75340208848326],[-123.7883060813233,56.753564572840695],[-123.7889443301865,56.75375820045828],[-123.78962459898986,56.75396935717335],[-123.79016400081588,56.754208368429346],[-123.79079792355392,56.75444226650842],[-123.7914507873962,56.754739257437095],[-123.79207187386324,56.75498301829224],[-123.79267021055202,56.75530261157906],[-123.79309364820038,56.755564291424186],[-123.79332465712153,56.755752067356774],[-123.79328010531567,56.755922810748],[-123.7931553687247,56.75617065157321],[-123.7930445003661,56.75635483548079],[-123.79299118649872,56.75653551779279],[-123.79298482113202,56.75679098332257],[-123.79282804254566,56.757061816956586],[-123.79278221049066,56.757254957319326],[-123.79287464139074,56.75743028047098],[-123.79311365490209,56.75762155624455],[-123.7934679085584,56.75776771829783],[-123.79393644549575,56.757885563443764],[-123.79437192210338,56.75800844773216],[-123.79476072570137,56.75819554917694],[-123.79495389445775,56.75836474183413],[-123.79521059651535,56.75867737661511],[-123.79544913214554,56.758949347392075],[-123.79565325507073,56.75917813548629],[-123.79588591207593,56.759445521480735],[-123.79615669304408,56.75972700795268],[-123.79639472462455,56.75997206578873],[-123.79658503435279,56.760155779424544],[-123.79685095973133,56.76041476287293],[-123.7971878847132,56.76068616439634],[-123.79722763995932,56.760851619651575],[-123.79724176865584,56.76110743461785],[-123.79722256893652,56.761336900383746],[-123.79723537617275,56.76168797286308],[-123.7972894760337,56.76192541267701],[-123.79731563115105,56.76218591635886],[-123.79698776982889,56.76247514005481],[-123.79680986045348,56.76261334835788],[-123.79900830920279,56.76394434258315],[-123.80000693269874,56.764470238392896],[-123.80096777363035,56.76497642789434],[-123.8026148887699,56.7664235297183],[-123.80370774457343,56.76749353199466],[-123.8057676458836,56.7684218783354],[-123.80745277852873,56.76923959210444],[-123.80751030610158,56.76992434100048],[-123.80699350859204,56.77054667157465],[-123.80711457996796,56.77180978371614],[-123.80697667797322,56.77254390568062],[-123.806556061385,56.77316786649332],[-123.80593315686716,56.77399801276247],[-123.8048081886384,56.77518843084508],[-123.80380028841574,56.77601203668139],[-123.80353328414692,56.777322375880935],[-123.8033595760916,56.77868586335918],[-123.80311936341162,56.77952361833328],[-123.80239107490618,56.78051001862835],[-123.80109724159819,56.78127606843581],[-123.80009801592905,56.781942866503385],[-123.80000565360277,56.78208926212256],[-123.79957101610573,56.782775742558954],[-123.7985060452408,56.78459711682562],[-123.79815752084426,56.785642644339816],[-123.79694470665962,56.78667346274342],[-123.7962884064006,56.7880825438018],[-123.79622558413772,56.78918561908505],[-123.79587395856872,56.79028377747476],[-123.79562457969686,56.791278306939546],[-123.79520862410337,56.79184963870989],[-123.79002654642493,56.79333846467504],[-123.78581082057403,56.79473825310972],[-123.7810582720733,56.79544603843134],[-123.77755013841778,56.79622658746569],[-123.77807656085982,56.797129040131566],[-123.77969700029158,56.799050167454986],[-123.77981829812106,56.80000956026207],[-123.77982928897931,56.80010391066559],[-123.78046494088308,56.80242850374014],[-123.77912165214978,56.804035370879184],[-123.77728977109516,56.805790778659926],[-123.77608182231123,56.80671614591377],[-123.77498704172673,56.80724213618018],[-123.77482728990037,56.807380634899786],[-123.77440805847151,56.80771532994488],[-123.77377630614328,56.807822173599206],[-123.7731888859742,56.80787148544004],[-123.77280773234472,56.80790080182613],[-123.77226728087003,56.80802490234039],[-123.77174268743771,56.8081941129461],[-123.77118985294256,56.808354988549326],[-123.77069624604276,56.808520244496194],[-123.77025068677321,56.80863476063462],[-123.7699464234189,56.808682207523155],[-123.76984276772798,56.80877234326739],[-123.76967409630231,56.8090295071429],[-123.76992781342268,56.80943182695424],[-123.77006231346776,56.80966058243934],[-123.77010964934422,56.80990689367181],[-123.77015278876807,56.81022599681686],[-123.77021495349197,56.81053533869918],[-123.77036999970784,56.81079919830385],[-123.77058276788118,56.81102257490957],[-123.7707896651891,56.8112054945453],[-123.77110116051635,56.811495586962195],[-123.77118310187004,56.811711105867],[-123.77120579065003,56.81195811364595],[-123.77114900637521,56.8121959067928],[-123.77099853109792,56.81242199853478],[-123.77077187116075,56.81272412701228],[-123.77056239429774,56.81297722750344],[-123.7703942258673,56.813225433964156],[-123.77022502210227,56.81349155828613],[-123.77008124885675,56.81374354747266],[-123.77001874162708,56.81400926675823],[-123.77004728023424,56.81433260324012],[-123.77011000140631,56.81456124414731],[-123.77037665688634,56.814775460156746],[-123.77068777541083,56.81496577915419],[-123.77101140396815,56.8151170780222],[-123.77158798325553,56.81536464968355],[-123.77192577186186,56.815519552788686],[-123.77243666315506,56.815732360794],[-123.77296585578924,56.8158412293678],[-123.77357948420858,56.81590894962503],[-123.7743593098859,56.81601203167047],[-123.77505216793689,56.81609343720457],[-123.77576018979472,56.81623226981072],[-123.77625600293597,56.81642238361916],[-123.77671972472169,56.81663548536198],[-123.77713777017283,56.816893762005975],[-123.777523789376,56.81717390747493],[-123.77784999809919,56.81742387993031],[-123.77812904009332,56.817780657315296],[-123.77821921360317,56.81806805618745],[-123.77833354377553,56.818327844652686],[-123.77838913240652,56.81861016628981],[-123.77845138577614,56.81888363433473],[-123.77854154582664,56.819242776170995],[-123.77867661838165,56.819570179521364],[-123.77886409567829,56.81987830357027],[-123.77920390390992,56.820177829231504],[-123.77951535828096,56.820399519641605],[-123.77988087516137,56.820644555671265],[-123.78035773050287,56.820880288629205],[-123.78090082943885,56.82110594472811],[-123.78144317009277,56.82130916570243],[-123.78179597739711,56.82145421039975],[-123.78225338346051,56.82167166725119],[-123.78260356372022,56.82186262524637],[-123.78307557528117,56.822147588439584],[-123.7833215989206,56.822365907548864],[-123.78355577064806,56.82261204811233],[-123.78376746895769,56.82278493946548],[-123.7840577813245,56.82287510108509],[-123.7837875734111,56.82340070653802],[-123.78359842658071,56.82369341175741],[-123.78335789850514,56.8239874796062],[-123.78309090924877,56.82427773132615],[-123.78291490342244,56.82444847276373],[-123.78354746645864,56.8249402020139],[-123.78383034742717,56.825160271768],[-123.78712628757728,56.82666044772529],[-123.79294635194624,56.82852640510064],[-123.79978896871346,56.83003281069683],[-123.8019155035488,56.83103743658402],[-123.8039256962769,56.83438067419722],[-123.80557670536466,56.8362470633816],[-123.8077089403563,56.8394757268875],[-123.81216226167376,56.8460975608505],[-123.81489555524065,56.85149752570379],[-123.81466293657796,56.855609900112185],[-123.81252149091905,56.85890091225832],[-123.8109485089138,56.861143272985146],[-123.81268968100004,56.862894515804555],[-123.81438403087837,56.86344323003999],[-123.82011949039008,56.86576383745596],[-123.8237828057708,56.86812117296778],[-123.82440761676146,56.870741348761],[-123.82568431755544,56.873462134268664],[-123.82908403277281,56.87497189990427],[-123.83458796273526,56.87677678917889],[-123.83803581604191,56.87890590947005],[-123.84936522289318,56.89183777120348],[-123.84942439471052,56.895497720294564],[-123.84316717115095,56.89563602055563],[-123.83815075150163,56.89564223677738],[-123.83297386125332,56.89674866081975],[-123.83120585660173,56.89894323053483],[-123.83123667890449,56.90219919145624],[-123.83273240555181,56.905147801355604],[-123.83232061934636,56.9074995623291],[-123.82894753847164,56.90926374569873],[-123.82547984120131,56.91124150208346],[-123.82245233190422,56.91357632055779],[-123.81922791967783,56.91618578890097],[-123.81837006475276,56.91826099667244],[-123.81896007740485,56.921795462575545],[-123.81890789466269,56.925337085865806],[-123.81896241292472,56.9267011933303],[-123.82018270492894,56.92840773325555],[-123.82356685074383,56.93144198280654],[-123.82750957511337,56.93333753104212],[-123.82992171084166,56.93347650069318],[-123.83426283688189,56.93239203004733],[-123.84136267933684,56.92995423652808],[-123.84307047640611,56.9285566476089],[-123.8454585676851,56.928237550902836],[-123.85000665575124,56.92932632713584],[-123.85350495195263,56.93064870868847],[-123.85672441634021,56.93254932983796],[-123.86067363858233,56.93643490576348],[-123.86489217178554,56.939634227386634],[-123.86636570779494,56.93978398968187],[-123.87101955181782,56.938694458756494],[-123.87788602598383,56.93808036853829],[-123.88378752414341,56.93914519304888],[-123.88654756570014,56.9422572418688],[-123.88908828318543,56.94547328722648],[-123.89049146978415,56.946312180937774],[-123.8955255585551,56.948815218092186],[-123.89800359380844,56.952899986762745],[-123.89854230925809,56.95751837213117],[-123.89828668466876,56.96129884645344],[-123.89834324538256,56.96237595422416],[-123.89642864607775,56.96395031256678],[-123.89227611812589,56.966977127871395],[-123.89080088921692,56.9689441766087],[-123.89082890044894,56.97174275862974],[-123.89203236733633,56.97504469774871],[-123.89322264449419,56.975880108891744],[-123.89564564151283,56.976475378559854],[-123.9003778601906,56.97703615729569],[-123.90159239052952,56.978338235567065],[-123.90016323761958,56.98127473407975],[-123.89963522391109,56.983400687086764],[-123.89747371735676,56.98645987100976],[-123.89581971824468,56.98927612395387],[-123.89702437174299,56.99046150229],[-123.89837736073702,56.99255508023374],[-123.89664802660967,56.99372890920858],[-123.89515099217799,56.99517553087942],[-123.89635629934813,56.99635195961919],[-123.89995604128111,56.99716346207984],[-123.9047964344876,56.99790516129944],[-123.90787943370009,56.99882470883451],[-123.95479489043407,56.99908626218126],[-123.95449680106418,57.000041184784635],[-123.9541801215501,57.00134557943446],[-123.95285306311982,57.00273273630527],[-123.95109748349005,57.00411313669076],[-123.94842901132809,57.00590961067948],[-123.94898475724725,57.00693179493328],[-123.95079396714316,57.00857459883757],[-123.95307759631197,57.011534221386405],[-123.95637371674043,57.01345143432589],[-123.9614127922856,57.013925055013885],[-123.96736777741124,57.01330070927204],[-123.97185937682184,57.01320933796688],[-123.97752257874338,57.013736896707094],[-123.98151603712623,57.01433697810373],[-123.9853941188522,57.01430737019356],[-123.9887503752629,57.01416196641525],[-123.99242433491804,57.01488232899778],[-123.99444745308024,57.01594486238433],[-123.9967016010988,57.01827544322341],[-123.9972009668762,57.02135924316283],[-123.99654182464133,57.0238781601827],[-123.99341125591751,57.02853832390834],[-123.99151534660642,57.03197985027801],[-123.98761931995183,57.03515729638669],[-123.98181600925956,57.037551756429174],[-123.98152490741937,57.038695206225675],[-123.97773670798229,57.04199065604421],[-123.9742218270481,57.043846333797575],[-123.96977756753239,57.04609999719283],[-123.96170184951168,57.04988419775931],[-123.95589184337966,57.05233129482079],[-123.95215468548845,57.053671722163664],[-123.94421943640332,57.05476651164356],[-123.93614684483238,57.054719623893604],[-123.9277236273807,57.05351866162359],[-123.92364949228279,57.05435068029197],[-123.9225729743945,57.05715868455591],[-123.92323507981764,57.05835311681957],[-123.92433608357905,57.06028997792632],[-123.92434643305955,57.06132155420745],[-123.92422314395225,57.06452145547864],[-123.91966774391086,57.06689732111111],[-123.91764343286837,57.07011172814874],[-123.9175583566002,57.075034292842666],[-123.91941364633031,57.07799674881875],[-123.9224206065427,57.08105825532656],[-123.92418973379758,57.08470988171029],[-123.92459576248766,57.08790032433403],[-123.92520057656027,57.09138991092539],[-123.92767166724195,57.09399432717529],[-123.92942954738552,57.09695510663529],[-123.93075559814332,57.09934396733448],[-123.9330023425042,57.101218233946824],[-123.93631025906107,57.10365636110821],[-123.9371741053634,57.10450414159158],[-123.941204188832,57.106128406401616],[-123.94355153689982,57.107376241738166],[-123.94629871831071,57.10826259724504],[-123.95073449732084,57.10942655558935],[-123.95476060776272,57.1108350719194],[-123.95508086936776,57.11134235539891],[-123.95795300358611,57.11268783676993],[-123.96145247773003,57.113747076961],[-123.96705774054462,57.115646249675464],[-123.97067750718492,57.117568133401534],[-123.974584363332,57.11844499761099],[-123.98030192161892,57.120121105551256],[-123.98484638818779,57.12146493846859],[-123.98738050066093,57.12171929119412],[-123.99098078474857,57.122779275784886],[-123.99343041562292,57.1240187935375],[-123.99422711552323,57.12618358720539],[-123.99333687763084,57.12865431219821],[-123.99578897845008,57.13017186058539],[-123.99987394464169,57.13115830927956],[-124.00337564322315,57.13413579148958],[-124.00586854924545,57.13551923448319],[-124.00738280931003,57.13758727972523],[-124.007951419813,57.140340468905855],[-124.00774426834651,57.14432852388662],[-124.00669142343027,57.14802564704904],[-124.00684543843721,57.150476553917116],[-124.00768509057644,57.15088400245071],[-124.01153010432462,57.152395578931944],[-124.01559650610504,57.15379380452479],[-124.02079706534897,57.15599836537052],[-124.02430374486582,57.15831164639741],[-124.02628159137264,57.159130817686496],[-124.03095306978844,57.16166779447398],[-124.03790738008551,57.16491157699387],[-124.04300953293031,57.16682674268263],[-124.04614628081664,57.16799481042834],[-124.05310110032853,57.16736314452157],[-124.06421523728716,57.16372539992367],[-124.07561874025743,57.161866857576854],[-124.08115893554564,57.163329543688285],[-124.08454463818315,57.16649142710894],[-124.08844845114612,57.17056666281292],[-124.08988708667958,57.17194200468897],[-124.09193924952739,57.1743039029295],[-124.09423649949179,57.17973672775041],[-124.0943260568215,57.18493107804288],[-124.09429987760788,57.18612357491547],[-124.09399358152035,57.18994888555365],[-124.09261763394959,57.19461964172822],[-124.09164798338946,57.200776238420204],[-124.09196814046975,57.204996403813844],[-124.09496195492149,57.207129849973086],[-124.09715928473486,57.20828297450184],[-124.1021415798644,57.211117847108966],[-124.10848100200674,57.214689684949505],[-124.1132696426012,57.21677688359947],[-124.12092155863584,57.21831308656928],[-124.1275217284986,57.22000420353295],[-124.13027503653267,57.22372988749992],[-124.13240120886641,57.227401723710095],[-124.13560664212206,57.23003951231532],[-124.1370679770985,57.230347332245906],[-124.14405511340307,57.23369342524564],[-124.14735840180634,57.23673592059905],[-124.14811013470417,57.24142847826278],[-124.14727299695627,57.245694959331864],[-124.14759932189804,57.25026493079151],[-124.1537720643013,57.252352242396896],[-124.15882437533463,57.252557904555765],[-124.16690295789375,57.254034548017785],[-124.17211471579867,57.25646629524506],[-124.17492318706518,57.25813785905931],[-124.18053391352824,57.262673626829546],[-124.18357660175566,57.26816916493005],[-124.18231861070267,57.27227759930804],[-124.18089977766039,57.27382754288936],[-124.17886921301363,57.27601476849197],[-124.17687152892803,57.27833472542815],[-124.17649874891951,57.27844614110204],[-124.17586804017311,57.27843736398086],[-124.1753635223,57.278611970869946],[-124.17541480167387,57.278625017704044],[-124.17067760051914,57.284038176099926],[-124.17121815446234,57.28610644967959],[-124.17104377388354,57.28658276146723],[-124.17179171854137,57.28752938248898],[-124.17536168220624,57.28987081966732],[-124.17607121843342,57.290146413894234],[-124.17661183979953,57.290523924977975],[-124.17982522073129,57.29220999165414],[-124.17931279076802,57.29259080598374],[-124.1785125117881,57.2946964881577],[-124.1774529401334,57.295269265593475],[-124.17538406688281,57.29614304747684],[-124.17470476550928,57.29662355232742],[-124.17262338413455,57.29740854525432],[-124.1672066827415,57.29783299444233],[-124.16597073442296,57.297660987781875],[-124.16333808666317,57.29768019713809],[-124.16194214471166,57.29798466172336],[-124.15900466136308,57.29915658724794],[-124.15812719462741,57.299347201657],[-124.15554000676474,57.30126172446327],[-124.15486072032392,57.301562741077895],[-124.15331348559857,57.3027148612459],[-124.15298501754,57.30319235319494],[-124.1524742488357,57.30357309520734],[-124.15194680720803,57.30395472173966],[-124.15057402680311,57.30454642668255],[-124.15004655275712,57.30492804587222],[-124.14918467522592,57.30522197487647],[-124.14762184092962,57.30561812050725],[-124.14585130859942,57.305541524878684],[-124.14584328223027,57.30506489735481],[-124.14142591293896,57.304050460758226],[-124.13827478095786,57.30408424854857],[-124.13740480095964,57.30428716775538],[-124.13497164617176,57.30506098197699],[-124.13409473363669,57.30536244823455],[-124.13131648405012,57.30605280179035],[-124.12554087567335,57.30685389951724],[-124.12152955047354,57.307178842366675],[-124.11854536200902,57.30748700839549],[-124.11451691776914,57.30790343364039],[-124.11168665629951,57.30786944177124],[-124.11071865165064,57.30790707739201],[-124.10183818894953,57.31133988331436],[-124.098937727037,57.31229353322379],[-124.08963684815633,57.3126225938222],[-124.08386349177668,57.31317412598469],[-124.0837716191312,57.313182875046515],[-124.08329866303657,57.31333181762855],[-124.08311909174952,57.3131419459289],[-124.07841866057638,57.31479203996684],[-124.07494677958768,57.318365012943374],[-124.07022266841864,57.3259739713104],[-124.06959649828237,57.331162935174916],[-124.06961300480931,57.33116542051996],[-124.06969357331661,57.331175575791754],[-124.06977200772435,57.331186820888355],[-124.0698504421783,57.33119806593814],[-124.06992882002378,57.331210431373236],[-124.0700072545724,57.33122167632955],[-124.07008563251716,57.33123404167117],[-124.07016395386484,57.331247527398155],[-124.07024025442577,57.331259862096296],[-124.07031857588106,57.33127334773128],[-124.07039481990245,57.33128680277199],[-124.07047100733871,57.33130137820071],[-124.07054719483311,57.331315953585396],[-124.0706233823857,57.33133052892609],[-124.0706995133642,57.331346224655036],[-124.07077356691173,57.33136188979839],[-124.0708496980145,57.33137758544057],[-124.07092363843297,57.33139549136456],[-124.0709976355444,57.33141227681456],[-124.07106944198041,57.331431272551306],[-124.07114332598653,57.33145029878484],[-124.0712151325665,57.331469294442435],[-124.07128688260272,57.331489410493795],[-124.07135857610137,57.33151064693902],[-124.0714302696798,57.33153188334547],[-124.07149982922434,57.33155420961575],[-124.07156938885021,57.33157653584958],[-124.07163889195239,57.33159998247999],[-124.07170833853687,57.331624549506955],[-124.07177784181178,57.33164799606475],[-124.07184515446255,57.331673652927634],[-124.07191252380096,57.331698189323454],[-124.07197983663075,57.331723846118344],[-124.07204709295769,57.33175062331257],[-124.07211434937895,57.33177740047276],[-124.07218160589458,57.331804177599224],[-124.07224672839668,57.3318320446069],[-124.07231185099386,57.33185991158285],[-124.07237905120958,57.331887809043444],[-124.07244411741658,57.33191679638873],[-124.07250918372235,57.33194578370227],[-124.07257217259856,57.331974740471146],[-124.07263718252395,57.3320048481564],[-124.07270011502014,57.33203492529908],[-124.0727651251489,57.332065032922436],[-124.07282805784509,57.33209511000524],[-124.07289099064042,57.33212518705852],[-124.07295386696762,57.3321563845165],[-124.07301674339757,57.33218758194514],[-124.07307961993028,57.33221877934443],[-124.07314249656575,57.33224997671437],[-124.07320537330399,57.332281174055026],[-124.07326819358669,57.33231349180067],[-124.07332899298311,57.332344658581434],[-124.07339181347491,57.33237697626954],[-124.07345261307337,57.33240814299475],[-124.0735133562198,57.33244043012698],[-124.07357617702523,57.33247274772945],[-124.07363697692671,57.332503914371564],[-124.07369772038142,57.332536201421156],[-124.07375846393887,57.332568488443314],[-124.07381920759909,57.33260077543837],[-124.07388208546801,57.33263197246376],[-124.07394282933376,57.33266425940319],[-124.07400357330225,57.33269654631541],[-124.07406437390904,57.33272771276527],[-124.07412517461509,57.33275887918775],[-124.07418591888836,57.332791166018076],[-124.07424671979467,57.33282233238581],[-124.07430752080029,57.332853498726294],[-124.074368378432,57.33288354460407],[-124.0744291796344,57.33291471088966],[-124.07449003745944,57.33294475671255],[-124.07455083885864,57.332975922943376],[-124.07460961929088,57.333005938230244],[-124.07467042088516,57.333037104407246],[-124.07472914498909,57.33306824007782],[-124.0747878691888,57.33309937572275],[-124.07484653697108,57.33313163177813],[-124.0749052048525,57.333163887808055],[-124.07496179523635,57.33319611333722],[-124.07501838571568,57.333228338842645],[-124.0750749197839,57.33326168476076],[-124.07513151045592,57.3332939102192],[-124.07518804472005,57.33332725609029],[-124.07524457908292,57.33336060193788],[-124.07529903593678,57.33339391729192],[-124.07535343638692,57.33342835306044],[-124.07540789343241,57.33346166837123],[-124.07546229407728,57.33349610409663],[-124.07551669482028,57.33353053980039],[-124.07557109566143,57.3335649754826],[-124.07562341898151,57.33359938067834],[-124.07567782001702,57.3336338163183],[-124.0757301435276,57.33366822147335],[-124.07578454475745,57.33370265707095],[-124.07583681197356,57.33373818262219],[-124.07588913577047,57.33377258771677],[-124.0759434808105,57.33380814368829],[-124.07599580479939,57.33384254874238],[-124.07604807240361,57.33387807421351],[-124.07610039658265,57.33391247922778],[-124.07615266437993,57.333948004659206],[-124.07620498874905,57.33398240963397],[-124.07625725673938,57.33401793502574],[-124.07630958129863,57.33405233996065],[-124.07636184948204,57.33408786531284],[-124.07641417423139,57.33412227020799],[-124.07646644260788,57.334157795520625],[-124.07651876754733,57.334192200375995],[-124.07657109258108,57.334226605211505],[-124.07662543890252,57.33426216091391],[-124.07668191944431,57.334296626605415],[-124.07674053420742,57.334330002283366],[-124.0768011702771,57.33436452882006],[-124.07686394057603,57.33439796533741],[-124.07692671098494,57.334431401825626],[-124.07698948150376,57.33446483828475],[-124.07705427335145,57.33449942559513],[-124.07711704409385,57.33453286199514],[-124.07718183617254,57.33456744924447],[-124.07724247301846,57.33460197558413],[-124.07730310997405,57.33463650189665],[-124.0773595916815,57.3346709673072],[-124.07741601705078,57.33470655313257],[-124.07746615303793,57.334743168065685],[-124.07751421143628,57.334779752545664],[-124.07755805811665,57.334817396578885],[-124.07759774950523,57.33485497973107],[-124.07763322915552,57.33489362244467],[-124.07766034167086,57.3349332638575],[-124.07768324241859,57.33497396483984],[-124.07769991012142,57.3350145745233],[-124.0777081541952,57.335057303355406],[-124.07771432058483,57.33510000175666],[-124.07771835285152,57.33514379016613],[-124.07772244155927,57.335186458138054],[-124.0777264738444,57.33523024655038],[-124.0777284848585,57.33527288409338],[-124.0777325171597,57.33531667250852],[-124.07773447175337,57.33536043049342],[-124.07773642635155,57.33540418847996],[-124.0777363596645,57.33544679559727],[-124.07773831426924,57.33549055358683],[-124.07773813472039,57.33553540158548],[-124.07773801160305,57.33557912914662],[-124.07773788848543,57.33562285670927],[-124.07773568763413,57.33566655384192],[-124.07773556451356,57.33571028140782],[-124.07773330722223,57.33575509898279],[-124.07773110635806,57.33579879612006],[-124.07772884905621,57.33584361369822],[-124.07772457043643,57.33588728040694],[-124.07772231312171,57.33593209798823],[-124.07771803448452,57.33597576469979],[-124.07771369940421,57.3360205518523],[-124.07770936431375,57.33606533900639],[-124.07770502921312,57.336110126161834],[-124.0777006941023,57.336154913318865],[-124.07769635898134,57.336199700477266],[-124.07768994608534,57.33624445720497],[-124.07768353317434,57.33628921393398],[-124.07767712024827,57.33633397066421],[-124.07767278507932,57.3363787578285],[-124.07766429435104,57.3364234841288],[-124.07765788137988,57.33646824086306],[-124.07765146839368,57.336512997598575],[-124.07764297761058,57.33655772390242],[-124.07763650815545,57.336603601080675],[-124.07762801733469,57.33664832738673],[-124.07761952649403,57.336693053694034],[-124.07761305698774,57.336738930876116],[-124.0776045661094,57.336783657185684],[-124.07759607521116,57.33682838349625],[-124.07758545005572,57.33687419981437],[-124.07757695911496,57.336918926127126],[-124.07756841171532,57.33696477288138],[-124.07755992073443,57.33700949919626],[-124.07754929548518,57.33705531551818],[-124.07754080446178,57.33710004183507],[-124.07753017916438,57.337145858158806],[-124.07752168809844,57.337190584477895],[-124.0775110627529,57.33723640080347],[-124.07750043738187,57.33728221712994],[-124.07748986842714,57.33732691301645],[-124.07748132083157,57.33737275978029],[-124.07747075182938,57.33741745566858],[-124.07746012635957,57.337463271998494],[-124.07744950086425,57.33750908832928],[-124.07743893178707,57.33755378421998],[-124.07742830624113,57.33759960055243],[-124.07741975851053,57.337645447322465],[-124.0774091893608,57.33769014321577],[-124.07739856374118,57.33773595955096],[-124.07738799454155,57.337780655445755],[-124.07737736887132,57.337826471782684],[-124.07736679962181,57.33787116767913],[-124.07735617390094,57.33791698401765],[-124.07734554815458,57.33796280035703],[-124.07733497883007,57.338007496255905],[-124.07732643089605,57.33805334303501],[-124.07731586152408,57.33809803893572],[-124.07730523567892,57.33814385527857],[-124.07729466625707,57.33818855118087],[-124.07728611823411,57.33823439796419],[-124.07727554876482,57.33827909386819],[-124.07726705714843,57.338323820212096],[-124.07725643118185,57.338369636559406],[-124.07724793952292,57.33841436290546],[-124.07723736995911,57.33845905881302],[-124.07722882180673,57.33850490560269],[-124.07722033008537,57.33854963195187],[-124.07720976045177,57.3385943278621],[-124.07720126868816,57.33863905421324],[-124.07719277690468,57.33868378056551],[-124.07718422864842,57.338729627360706],[-124.07717781472697,57.33877438415576],[-124.07716932288588,57.33881911051141],[-124.0771608310249,57.33886383686823],[-124.07715441705345,57.338908593666986],[-124.07714800306694,57.33895335046711],[-124.0771415890654,57.338998107268495],[-124.07713511859404,57.33904398451345],[-124.07712870456216,57.33908874131752],[-124.07712431198165,57.33913464900665],[-124.07711784146639,57.33918052625572],[-124.0771114273913,57.339225283063946],[-124.0771070347743,57.33927119075756],[-124.07710056421513,57.339317068011],[-124.0770961715745,57.339362975707694],[-124.07708975744336,57.339407732521515],[-124.07708328684026,57.339453609779234],[-124.07707681622163,57.339499487038324],[-124.07707040204487,57.3395442438562],[-124.07706185344892,57.33959009067564],[-124.07705336129052,57.33963481705364],[-124.07704481265384,57.33968066387543],[-124.0770363204553,57.33972539025557],[-124.07702575028067,57.33977008619391],[-124.07701518008128,57.339814782133026],[-124.07700253189606,57.33985944762961],[-124.07698994014156,57.33990299268371],[-124.07697521393176,57.33994762773737],[-124.07696054414882,57.339991142347934],[-124.07694379636187,57.34003462651433],[-124.07692704853679,57.34007811068006],[-124.0769082226983,57.34012156440027],[-124.07688737530303,57.340163867231254],[-124.07686652786158,57.340206170060334],[-124.07684360239179,57.34024844244172],[-124.07681865535277,57.340289563931215],[-124.07679163027345,57.34033065497067],[-124.07675842763749,57.34037053422133],[-124.07671899095969,57.340410322121464],[-124.07667343316164,57.34044777777899],[-124.07662371928457,57.340485172523394],[-124.07656984931646,57.34052250634967],[-124.07651401419469,57.34055756881741],[-124.07645396649221,57.34059369080178],[-124.07639397515494,57.340628692316415],[-124.07632982769906,57.340663632896714],[-124.07626781461457,57.34069748345835],[-124.0762036669276,57.34073242397897],[-124.07613957560976,57.34076624402589],[-124.07607750570143,57.34080121494388],[-124.07601757018301,57.340835095849094],[-124.07595965608142,57.340870127631156],[-124.07590584141413,57.34090634075336],[-124.075854161159,57.34094146387292],[-124.07580865837492,57.34097779880334],[-124.07576725505227,57.34101531508829],[-124.07573208572323,57.34105292275197],[-124.07570309390618,57.34109174224262],[-124.07568241414694,57.34113068358547],[-124.07566785543747,57.341171957206804],[-124.07566160883125,57.34121335268645],[-124.07565530570999,57.341255868610865],[-124.0756511371147,57.34129729455756],[-124.07564899004905,57.34133987141398],[-124.0756489210215,57.341382478736676],[-124.07565093003899,57.341425116525606],[-124.07565288255911,57.341468874759684],[-124.07565489158559,57.341511512551634],[-124.07566100021928,57.341555331717984],[-124.07566710886701,57.341599150885685],[-124.07567321752875,57.341642970054735],[-124.075681404264,57.341686819689315],[-124.07569166907993,57.341730699789096],[-124.07570193391946,57.341774579889645],[-124.07571427684928,57.341818490454756],[-124.07572656330721,57.341863521464425],[-124.07573890629413,57.34190743203032],[-124.07575327088374,57.341952493504245],[-124.07576971358372,57.341997585440964],[-124.07578413474253,57.34204152647038],[-124.07580057751733,57.34208661840666],[-124.07581909841481,57.34213174080453],[-124.07583554126981,57.342176832739746],[-124.07585406225239,57.34222195513604],[-124.07587258327877,57.34226707753147],[-124.07589110434894,57.342312199925914],[-124.07591170355909,57.34235735278012],[-124.07593230281795,57.342402505632656],[-124.07595290212555,57.34244765848372],[-124.0759735014819,57.342492811333244],[-124.07599410088697,57.34253796418112],[-124.07601470034079,57.34258311702754],[-124.07603529984334,57.34262826987232],[-124.07605595588646,57.34267230227049],[-124.07607863360187,57.34271748557009],[-124.07609923325258,57.34276263840991],[-124.07611983295202,57.34280779124803],[-124.07614043270021,57.342852944084655],[-124.07616316711196,57.342897006931196],[-124.07618376695956,57.34294215976421],[-124.07620234521316,57.34298616169432],[-124.07622294515522,57.3430313145246],[-124.07624360163292,57.34307534690776],[-124.07626218002035,57.343119348834215],[-124.07628075845064,57.34316335075961],[-124.07629933692373,57.343207352684004],[-124.0763158372945,57.343251324153],[-124.07633441585088,57.34329532607558],[-124.07635299445009,57.34333932799707],[-124.0763715730921,57.34338332991753],[-124.07639015177698,57.343427331836935],[-124.07640878698736,57.34347021330941],[-124.07642736575741,57.3435142152267],[-124.07644594457032,57.343558217142935],[-124.07646452342605,57.34360221905815],[-124.07648315880536,57.34364510052621],[-124.07650381591546,57.34368913289054],[-124.07652239490164,57.343733134802314],[-124.07654310858379,57.34377604671743],[-124.0765616876576,57.3438200486267],[-124.0765824014311,57.34386296053877],[-124.07660305877359,57.34390699289543],[-124.07662163798025,57.34395099480092],[-124.07664235189222,57.34399390670811],[-124.07666300937476,57.34403793905998],[-124.07668372338043,57.34408085096365],[-124.07670438095774,57.34412488331219],[-124.07672509505713,57.34416779521236],[-124.07674575272922,57.34421182755759],[-124.07676646692232,57.34425473945428],[-124.0767871246892,57.344298771796126],[-124.076807838976,57.34434168368935],[-124.07682849683768,57.34438571602782],[-124.07684921121817,57.34442862791753],[-124.07687194738675,57.34447269069809],[-124.0768926618633,57.34451560258414],[-124.07691331991695,57.3445596349155],[-124.07693611270645,57.344602577242455],[-124.07695677085734,57.34464660957009],[-124.07697748552363,57.34468952144885],[-124.07700022199573,57.344733584216605],[-124.07702093675807,57.34477649609157],[-124.07704165156703,57.34481940796474],[-124.07706438819058,57.344863470726025],[-124.07708510309558,57.344906382595404],[-124.07710783982111,57.34495044535231],[-124.07712855482218,57.34499335721789],[-124.07714921340659,57.345037389529324],[-124.0771720067468,57.34508033183223],[-124.0771927218905,57.34512324369228],[-124.07721545886946,57.345167306438434],[-124.07723617410925,57.34521021829458],[-124.07725683293519,57.34525425059695],[-124.077279626526,57.345297192888786],[-124.07730028544918,57.345341225187404],[-124.07732100087873,57.34538413703632],[-124.07734373816122,57.34542819976969],[-124.07736445368681,57.345471111614835],[-124.077385169259,57.34551402345811],[-124.07740582842133,57.345558055748015],[-124.07742862236123,57.34560099802463],[-124.07744928162074,57.34564503031076],[-124.07746999738269,57.345687942146874],[-124.07749065673703,57.34573197442977],[-124.07751137259271,57.345774886262305],[-124.07755072615556,57.34586067948756],[-124.07763385768763,57.34586189685332],[-124.0777190110658,57.345864265047354],[-124.07780214261103,57.345865482306586],[-124.07788521771874,57.345867819961974],[-124.07796834927701,57.34586903711609],[-124.07805355912976,57.34587028464447],[-124.0781366906988,57.34587150169187],[-124.0782219569955,57.34587162866207],[-124.07830716686232,57.34587287602582],[-124.07839237673471,57.34587412333423],[-124.07847764303813,57.34587425013843],[-124.07856290934211,57.345874376887195],[-124.07864817564668,57.34587450358058],[-124.07873344195181,57.34587463021867],[-124.07881870825749,57.34587475680135],[-124.07890605285384,57.345874913742016],[-124.07899131916072,57.345875040212654],[-124.07907664187606,57.34587404617866],[-124.07916398647183,57.34587420294776],[-124.07925138747106,57.34587323920949],[-124.07933671017561,57.345872245006504],[-124.07942411116599,57.3458712811532],[-124.07951151215197,57.34587031724185],[-124.07959891313354,57.34586935327216],[-124.07968631411069,57.345868389244444],[-124.0797737150834,57.34586742515843],[-124.07986111605173,57.34586646101431],[-124.0799485733979,57.34586437636243],[-124.08003597435481,57.345863412101934],[-124.08012343168441,57.345861327333544],[-124.0802129109203,57.345860393349334],[-124.08030036823332,57.345858308463086],[-124.0803878255368,57.34585622351858],[-124.08047736112096,57.34585416890444],[-124.08056476204113,57.34585320429195],[-124.08065429760866,57.34585114955718],[-124.0807417548764,57.34584906437695],[-124.08083129042471,57.34584700952147],[-124.08092088231706,57.345843834154884],[-124.08100833955345,57.34584174879718],[-124.08109787507024,57.34583969375989],[-124.08118741057737,57.34583763866155],[-124.08127492412832,57.34583443267619],[-124.08136445961358,57.345832377457086],[-124.08145399508919,57.34583032217706],[-124.08154358689055,57.345827146385645],[-124.08163312234421,57.34582509098347],[-124.0817227141184,57.34582191506983],[-124.08181224955017,57.34581985954549],[-124.08190184129715,57.34581668350965],[-124.08199143302924,57.34581350741269],[-124.08208096842681,57.34581145170511],[-124.08217056013169,57.34580827548593],[-124.08226015182166,57.34580509920575],[-124.08234968718504,57.34580304331497],[-124.08243927884781,57.345799866912515],[-124.08252887049566,57.34579669044897],[-124.08261840582485,57.34579463437495],[-124.08270799744552,57.34579145778921],[-124.08279758905128,57.34578828114231],[-124.08288718064213,57.34578510443425],[-124.08297671592483,57.345783048115976],[-124.08306630748848,57.34577987128575],[-124.08315589903721,57.34577669439441],[-124.08324549057102,57.345773517441934],[-124.08333502580722,57.34577146087936],[-124.08342461731385,57.3457682838047],[-124.08351420880557,57.34576510666888],[-124.08360374400755,57.34576304992303],[-124.08369333547205,57.34575987266508],[-124.08378292692166,57.34575669534601],[-124.08387246208942,57.34575463841695],[-124.08396205351183,57.345751460975656],[-124.08405158865764,57.345749403924486],[-124.08414118005284,57.34574622636095],[-124.08423077143311,57.345743048736374],[-124.08432030654474,57.34574099150201],[-124.08440984164669,57.345738934206565],[-124.08449735470053,57.34573572607382],[-124.08458688978058,57.34573366865766],[-124.08467642485103,57.34573161118046],[-124.08476601615241,57.34572843319072],[-124.08485347291415,57.34572634527214],[-124.08494300795302,57.345724287613294],[-124.08503046469559,57.34572219957678],[-124.08511999971516,57.34572014179716],[-124.08520953472511,57.34571808395649],[-124.08529699143888,57.345715995742616],[-124.08538444814306,57.345713907470454],[-124.0854739269043,57.34571296990129],[-124.08556138359187,57.34571088151136],[-124.08564884026985,57.3457087930631],[-124.08573831901262,57.345707855313776],[-124.085825775674,57.34570576674774],[-124.08591317611891,57.34570479857542],[-124.08600057655936,57.34570383034493],[-124.08608803319717,57.34570174160415],[-124.0861754336262,57.345700773257285],[-124.08626283405079,57.3456998048523],[-124.08635023447094,57.345698836389126],[-124.08643550040864,57.345698958025814],[-124.08652290082247,57.34569798944763],[-124.08661030123189,57.345697020811365],[-124.08669556716636,57.34569714227914],[-124.08678296756943,57.34569617352792],[-124.08686823350256,57.34569629488359],[-124.08695349943625,57.34569641618393],[-124.0870408436573,57.34569656771349],[-124.08712610959215,57.34569668890177],[-124.08721137552752,57.34569681003467],[-124.08729664146344,57.34569693111213],[-124.08738190739987,57.345697052134305],[-124.0874671171756,57.3456982935537],[-124.08755030482828,57.34569838418861],[-124.08763551461246,57.345699625498796],[-124.08772072440215,57.34570086675366],[-124.08780385590964,57.34570207768072],[-124.08788906571027,57.34570331882644],[-124.08797219722845,57.34570452964695],[-124.08805527260787,57.34570686086776],[-124.08813840413902,57.34570807158298],[-124.0882214795363,57.345710402698685],[-124.08830455494372,57.3457127337618],[-124.08838763036131,57.345715064772385],[-124.08846862749989,57.34571736546836],[-124.0885516468081,57.345720816828354],[-124.08863472225836,57.345723147682584],[-124.08871566330433,57.34572656867936],[-124.0887966604871,57.34572886917308],[-124.08887760155973,57.345732290070046],[-124.08895848652932,57.34573683137065],[-124.08903942763332,57.34574025216794],[-124.08912036875185,57.34574367291537],[-124.08920125377443,57.34574821406638],[-124.08928006052457,57.34575272491846],[-124.08936094558536,57.34575726597115],[-124.08943975237307,57.34576177672736],[-124.08951850307825,57.34576740788998],[-124.08959730990551,57.34577191855171],[-124.08967606065487,57.34577754961984],[-124.08975481142744,57.34578318064081],[-124.08983148392919,57.345788781374125],[-124.0899102347479,57.34579441230195],[-124.08998685120754,57.345801133398375],[-124.09006346769416,57.34580785445017],[-124.09014216250351,57.34581460569283],[-124.09021670074839,57.34582129641973],[-124.09029331731598,57.34582801733753],[-124.09036987783426,57.34583585866479],[-124.09044436008647,57.34584366971662],[-124.09052092066722,57.34585151095583],[-124.09059540298087,57.3458593219221],[-124.090669885325,57.34586713284625],[-124.0907443116343,57.345876064182306],[-124.09081873797842,57.345884995476396],[-124.09089108605673,57.34589389650468],[-124.09096551246999,57.34590282771559],[-124.09103780455958,57.3459128491175],[-124.0911100966871,57.345922870479654],[-124.09118238885259,57.34593289180217],[-124.09125468105606,57.34594291308494],[-124.0913248389449,57.34595402456574],[-124.09139707517947,57.34596516622479],[-124.09146723315065,57.345976277629816],[-124.09153739116269,57.34598738899738],[-124.09160749317539,57.34599962078219],[-124.09167765127117,57.34601073207506],[-124.09174567506336,57.346022933575206],[-124.09181572117397,57.346036285704066],[-124.09188374505585,57.34604848713296],[-124.09195171295104,57.346061808981645],[-124.09201968089369,57.34607513079521],[-124.09208551454535,57.34608954282406],[-124.09215348258407,57.34610286456877],[-124.09221931633408,57.34611727653088],[-124.09228509411332,57.34613280891522],[-124.09235092796469,57.34614722081168],[-124.09241670584908,57.34616275313055],[-124.09248040546966,57.34617825521815],[-124.09254618346026,57.34619378747254],[-124.09260982717413,57.34621040995296],[-124.09267347094347,57.34622703240297],[-124.09273503644708,57.34624362462778],[-124.09279862432074,57.346261367472934],[-124.0928579996033,57.34628017035799],[-124.09291945326864,57.346299003408134],[-124.09297663834298,57.346320016959694],[-124.09303382348031,57.34634103048677],[-124.09309095268343,57.34636316444491],[-124.09314600362363,57.34638526819073],[-124.09319886430903,57.346409582638316],[-124.0932517250618,57.346433897064955],[-124.0933045298909,57.34645933192681],[-124.09335525645561,57.34648473658327],[-124.09340384876344,57.346511231492684],[-124.09345238515196,57.34653884684066],[-124.0935008656253,57.34656758262742],[-124.09354726783062,57.346596288215345],[-124.0935915357803,57.3466260840628],[-124.0936378261619,57.34665703053238],[-124.09367995992638,57.3466879166275],[-124.09372411612776,57.346719953344994],[-124.09376613807571,57.34675308032661],[-124.09380608174507,57.346786177118176],[-124.09384596950802,57.34682039435494],[-124.09388585734254,57.34685461158051],[-124.09392361091784,57.346889919075785],[-124.09396130859058,57.346926347017906],[-124.09399900633527,57.34696277495013],[-124.0940346257886,57.3469991726988],[-124.09407018934048,57.347036690895564],[-124.09410361862633,57.34707529936783],[-124.09413704797983,57.34711390783278],[-124.09417047740097,57.347152516290464],[-124.09420177255005,57.347192215026446],[-124.09423301179936,57.347233034213275],[-124.09426425111549,57.34727385339409],[-124.09429549049842,57.34731467256878],[-124.09432459560284,57.347356582025206],[-124.09435370077118,57.347398491476625],[-124.09438275004264,57.34744152138024],[-124.09440972098956,57.34748452111101],[-124.09443663603786,57.34752864129508],[-124.09446360710706,57.347571641017765],[-124.09448838792386,57.34761685148461],[-124.09451530315646,57.34766097165732],[-124.09454008409251,57.347706182117705],[-124.0945648650873,57.347751392575056],[-124.09458751177829,57.347797693321915],[-124.09461223693401,57.347844024231435],[-124.09463488373741,57.347890324973605],[-124.09465753059578,57.347936625713665],[-124.09468012155624,57.34798404690939],[-124.09470271257283,57.348031468103095],[-124.09472322522288,57.34807885913171],[-124.09474581634916,57.348126280321765],[-124.09476627315307,57.348174791805285],[-124.09478673000899,57.34822330328775],[-124.09480718691691,57.348271814768815],[-124.09482764387685,57.3483203262487],[-124.09484596650168,57.34836992802444],[-124.09486642356349,57.34841843950211],[-124.09488474628583,57.348468041276504],[-124.0949051475025,57.34851767321054],[-124.09492347032278,57.34856727498351],[-124.09494179319071,57.348616876755905],[-124.09496006016062,57.34866759898646],[-124.09497838312426,57.34871720075782],[-124.09499670613553,57.34876680252873],[-124.09501497325019,57.34881752475791],[-124.09503324041339,57.34886824698654],[-124.0950515635685,57.348917848755924],[-124.09506775235695,57.34896854082601],[-124.0950860196626,57.34901926305365],[-124.0951043429588,57.349068864821824],[-124.0951226103611,57.34911958704851],[-124.09513879932952,57.3491702791183],[-124.09515706682615,57.349221001344375],[-124.09517539031155,57.34927060311082],[-124.09519365790486,57.34932132533606],[-124.09521192554672,57.349372047560784],[-124.09523024917596,57.34942164932573],[-124.09524643841551,57.34947234139478],[-124.09526476213779,57.349521943159],[-124.09528308590768,57.34957154492268],[-124.09530348823233,57.34962117683979],[-124.09532175616371,57.34967189906172],[-124.09534013601575,57.34972038036381],[-124.0953584599789,57.34976998212512],[-124.09537886250769,57.34981961403855],[-124.09539932102406,57.34986812549085],[-124.0954176451351,57.34991772724979],[-124.09543810375338,57.349966238700134],[-124.09545856242366,57.35001475014918],[-124.09547907707845,57.35006214113673],[-124.09550161438618,57.35011068273403],[-124.095522129146,57.35015807371869],[-124.09554472249593,57.350205494852034],[-124.09556523736025,57.350252885833726],[-124.09558788674951,57.35029918650303],[-124.09561261474053,57.350345517319255],[-124.09563526424222,57.3503918179839],[-124.0956579137989,57.35043811864643],[-124.09568269789209,57.350483328994216],[-124.09570748204399,57.35052853933893],[-124.09573226625463,57.35057374968071],[-124.09575918501089,57.35061786970547],[-124.09578610382938,57.350661989726326],[-124.09581307863374,57.35070498928237],[-124.09583999757602,57.3507491092953],[-124.09586702842483,57.350790988382485],[-124.0958960819852,57.35083401807112],[-124.09592519153169,57.35087592729381],[-124.09595216664398,57.350918926828776],[-124.0959791977362,57.350960805898765],[-124.09600617296935,57.35100380542575],[-124.09603106967796,57.35104677480627],[-124.09605596644265,57.351089744183575],[-124.0960808632634,57.35113271355772],[-124.09610570422448,57.35117680339005],[-124.09613060115802,57.3512197727578],[-124.09615544223328,57.3512638625838],[-124.09617826068,57.35130680180518],[-124.09620310186698,57.351350891625394],[-124.09622799902375,57.3513938609808],[-124.09625076171804,57.351437920655826],[-124.0962756589853,57.35148089000525],[-124.09630055630862,57.35152385935164],[-124.09632539777817,57.351567949156475],[-124.09635029521431,57.351610918496455],[-124.0963751927065,57.35165388783318],[-124.09640009025479,57.35169685716669],[-124.09642706648253,57.35173985663323],[-124.0964540427711,57.35178285609569],[-124.09648107502608,57.35182473509203],[-124.09650805143549,57.35186773454637],[-124.09653716244262,57.35190964366894],[-124.0965662735137,57.35195155278654],[-124.09659751918855,57.35199237157032],[-124.09662870902864,57.35203431081037],[-124.09666203347989,57.352075159714474],[-124.09669541390227,57.35211488814905],[-124.09672873849532,57.352155737038856],[-124.09676627635463,57.352195525720866],[-124.09680173564152,57.352235284263145],[-124.0968414082038,57.35227398259372],[-124.09688108084657,57.35231268091354],[-124.09692075356979,57.35235137922267],[-124.09696256092505,57.35238898718586],[-124.09700639113292,57.35242774572687],[-124.0970502773197,57.352465383791554],[-124.09709416359303,57.35250302184266],[-124.09713804995295,57.35254065988039],[-124.09718401506912,57.352578328028784],[-124.09723211483256,57.35261490582257],[-124.09727808013102,57.352652573940276],[-124.09732618007823,57.35268915170182],[-124.09737428011762,57.35272572944684],[-124.09742445892917,57.35276233729583],[-124.09747469371486,57.3527978246632],[-124.09752487271751,57.35283443247598],[-124.09757718637738,57.35286994992507],[-124.09762742144677,57.35290543723725],[-124.09767973529944,57.352940954647536],[-124.09773412794128,57.35297650215362],[-124.09778649785974,57.35301089905983],[-124.09784089070075,57.35304644652366],[-124.09789533950907,57.35308087350219],[-124.0979497884156,57.35311530045917],[-124.09800637198467,57.353148637041706],[-124.09806289979143,57.353183094064875],[-124.09811948355984,57.35321643060053],[-124.0981760674271,57.35324976711275],[-124.09823265139325,57.353283103601456],[-124.09828923545824,57.35331644006665],[-124.0983479541878,57.353348686150035],[-124.09840667301658,57.35338093220789],[-124.09846539194464,57.35341317824042],[-124.09852411097192,57.35344542424754],[-124.09858283009845,57.353477670229196],[-124.09864160516888,57.353508795720956],[-124.09870245905846,57.353539951287374],[-124.09876123432241,57.35357107672711],[-124.0988221442485,57.35360111177491],[-124.09888299843273,57.353632267260004],[-124.09894396438834,57.35366118178793],[-124.09900487460207,57.35369121675322],[-124.09906786364513,57.35372128178542],[-124.09912882988306,57.35375019622964],[-124.09919193077894,57.35377802027365],[-124.09925705467803,57.35380699484461],[-124.09932015576135,57.35383481882833],[-124.09938527985474,57.35386379333707],[-124.09945051568998,57.353890526883625],[-124.09951569579702,57.35391838086364],[-124.09958087599924,57.35394623481196],[-124.09964819086005,57.35397299834838],[-124.09971342706618,57.353999731766635],[-124.09978074211436,57.35402649523634],[-124.09984805725695,57.35405325867209],[-124.09991537249398,57.35408002207392],[-124.09998274363157,57.35410566497605],[-124.10005005905553,57.35413242831011],[-124.10011743037617,57.35415807114425],[-124.10018682474661,57.3541848644871],[-124.10025419625175,57.354210507252226],[-124.10032156784744,57.35423614998333],[-124.10039101829761,57.35426182275395],[-124.10046041304884,57.35428861595456],[-124.10052778492104,57.35431425858148],[-124.10059723565212,57.35433993124476],[-124.10066460770688,57.354365573802674],[-124.10073405862339,57.35439124639465],[-124.10080143086068,57.354416888883435],[-124.10087082618213,57.354443681870514],[-124.10093819860391,57.35446932429025],[-124.10100764989338,57.35449499673971],[-124.10107496672302,57.354521759556974],[-124.10114233941987,57.35454740187368],[-124.10120965643645,57.35457416462298],[-124.10127702931632,57.35459980687166],[-124.10134434651981,57.354626569553076],[-124.10141166381776,57.35465333220063],[-124.10147898121014,57.354680094814256],[-124.10154416414666,57.35470794780569],[-124.10161148172831,57.35473471035256],[-124.10167666485486,57.354762563279564],[-124.10174184807657,57.35479041617473],[-124.10180703139346,57.35481826903823],[-124.1018722148055,57.35484612186995],[-124.10193526376428,57.354875065088265],[-124.10200044736693,57.35490291785765],[-124.10206349651683,57.35493186101577],[-124.10212654576235,57.35496080414422],[-124.10218953936091,57.35499086771069],[-124.10225258879954,57.35501981078015],[-124.10231563833385,57.355048753819865],[-124.10237863222656,57.35507881729782],[-124.10243954740689,57.35510885070518],[-124.10250254149645,57.35513891412511],[-124.10256345687024,57.355168947476486],[-124.10262645115667,57.35519901083847],[-124.10268736672391,57.35522904413384],[-124.10274828238704,57.35525907740169],[-124.1028112769679,57.3552891406773],[-124.1028721928245,57.35531917388918],[-124.10293305305571,57.355350327541615],[-124.10299396910584,57.355380360698646],[-124.10305488525191,57.35541039382796],[-124.10311574577776,57.355441547398186],[-124.10317666211735,57.35547158047265],[-124.103239601674,57.355502764016364],[-124.1033005182088,57.35553279703487],[-124.1033614348395,57.355562830025875],[-124.10342229585879,57.355593983457936],[-124.10348321268303,57.35562401639396],[-124.10354412960318,57.35565404930237],[-124.10360712546317,57.35568411220608],[-124.10366804257677,57.35571414505869],[-124.10376958987838,57.35576382626211],[-124.10378820618644,57.355807824748446],[-124.10380687823381,57.3558507027648],[-124.10382757348285,57.35589473126819],[-124.10384618992161,57.35593872975114],[-124.10386688526377,57.35598275825151],[-124.10388550179083,57.35602675673198],[-124.10390625291986,57.356069664760184],[-124.10392694840235,57.35611369325591],[-124.10394764393256,57.35615772174988],[-124.1039662606381,57.35620172022526],[-124.10398701195314,57.356244628246905],[-124.10400978650088,57.35628868675245],[-124.10403048222163,57.356332715239745],[-124.10405123368011,57.35637562325581],[-124.10407192949582,57.35641965173982],[-124.1040926253593,57.35646368022208],[-124.10411540015976,57.3565077387173],[-124.10413615180893,57.35655064672617],[-124.10415892671158,57.356594705216985],[-124.10417962277039,57.3566387336919],[-124.10420239777578,57.35668279217839],[-124.10422314961802,57.356725700179645],[-124.10424592472559,57.3567697586618],[-124.1042686998858,57.35681381714147],[-124.10428939619013,57.35685784560706],[-124.10431222713618,57.3569007836123],[-124.10433500245112,57.356944842085255],[-124.10435777781869,57.35698890055595],[-124.10437853000214,57.357031808543525],[-124.10440130547185,57.357075867009875],[-124.10442408099418,57.35711992547373],[-124.10444685656911,57.35716398393529],[-124.10446968787556,57.35720692192399],[-124.10449246355508,57.35725098038074],[-124.10451316035476,57.35729500882695],[-124.10453593613707,57.3573390672794],[-124.10455876764856,57.35738200525879],[-124.10458154353543,57.35742606370649],[-124.10460431947494,57.35747012215189],[-124.10462709546704,57.35751418059483],[-124.10464784823907,57.35755708855844],[-124.10467062433335,57.357601146997034],[-124.10469340048023,57.35764520543332],[-124.1047162323521,57.357688143396224],[-124.10473900860357,57.35773220182765],[-124.10475970594882,57.357776230252405],[-124.1047824823031,57.357820288679626],[-124.10480531437997,57.35786322663319],[-124.10482601187282,57.35790725505223],[-124.10484878838187,57.35795131347267],[-124.10486948597266,57.35799534188803],[-124.10489231825223,57.358038279832655],[-124.10491301594041,57.35808230824442],[-124.10493579265444,57.35812636665604],[-124.10495654610662,57.35816927459257],[-124.10497724394,57.35821330299881],[-124.10500002080639,57.35825736140412],[-124.10502071873772,57.358301389806776],[-124.1050414723806,57.35834429773598],[-124.10506217040692,57.358388326135305],[-124.10508286848102,57.35843235453292],[-124.1051035666029,57.35847638292877],[-124.10512432043416,57.35851929085112],[-124.105142939649,57.35856328924533],[-124.1051636379112,57.358607317636505],[-124.1051843362212,57.358651346026086],[-124.10520301122925,57.35869422394439],[-124.1052216306202,57.35873822233374],[-124.10524232906813,57.35878225071897],[-124.10526094854738,57.35882624910586],[-124.10527956806958,57.358870247491815],[-124.1052982432918,57.35891312540434],[-124.10531686289941,57.35895712378814],[-124.10533548254996,57.3590011221708],[-124.10535410224345,57.359045120552636],[-124.10537069860423,57.35908796846595],[-124.10538931838073,57.359131966845766],[-124.10540585916452,57.35917593523036],[-124.10542239998647,57.3592199036145],[-124.10543894084651,57.35926387199807],[-124.10545553739772,57.359306719908346],[-124.10547207833362,57.359350688290995],[-124.10548861930762,57.359394656673075],[-124.10550516031975,57.35943862505468],[-124.105519677969,57.359481442970214],[-124.10553413999979,57.359525381358935],[-124.10555068112106,57.359569349739516],[-124.10556514322087,57.35961328812795],[-124.105579605354,57.359657226516354],[-124.10559198845606,57.359701134913465],[-124.10560650630262,57.35974395282872],[-124.10561888946378,57.359787861226444],[-124.10563335172498,57.359831799615215],[-124.10564573494555,57.359875708013504],[-124.1056581181946,57.35991961641233],[-124.10567050147218,57.35996352481152],[-124.10568086134454,57.36000628274759],[-124.10569324467642,57.36005019114781],[-124.10570354895088,57.360094069558905],[-124.10571385324907,57.36013794797075],[-124.10572415757096,57.360181826383304],[-124.10573446191655,57.36022570479676],[-124.10574274283638,57.360268432748114],[-124.10575304722673,57.36031231116316],[-124.10576127254056,57.36035615959035],[-124.10576949787333,57.36040000801867],[-124.10577564411996,57.36044382645958],[-124.10577971127331,57.36048761491347],[-124.10578169932624,57.360531373380475],[-124.10577952915938,57.36057507187228],[-124.10577735898754,57.36061877036573],[-124.1057710305769,57.36066240888368],[-124.10576262303249,57.36070601741432],[-124.10575421546886,57.36074962594604],[-124.10574164963796,57.3607931745008],[-124.10572908377837,57.3608367230559],[-124.10571443876138,57.360880241622056],[-124.10569771457982,57.36092373019835],[-124.10567891122673,57.36096718878423],[-124.10566010783076,57.36101064736897],[-124.10563916960363,57.361055196436446],[-124.10561828697847,57.36109862502779],[-124.10559532516281,57.361142023625916],[-124.10557028414969,57.36118539223002],[-124.10554524307962,57.36122876083082],[-124.10552014629863,57.36127324990313],[-124.10549302596152,57.36131658850467],[-124.10546590556284,57.361359927102086],[-124.1054387851025,57.36140326569551],[-124.10540958542121,57.361446574290696],[-124.10538033001518,57.36149100335569],[-124.10535320936448,57.36153434193614],[-124.10532400948571,57.36157765051692],[-124.1052947538795,57.361622079567624],[-124.10526555386721,57.36166538813856],[-124.10523635378863,57.36170869670454],[-124.10520923281958,57.36175203526304],[-124.105179976946,57.361796464294656],[-124.10515285585053,57.36183980284465],[-124.10512573469344,57.36188314139064],[-124.10510069266,57.36192650993167],[-124.10507351571388,57.361970968945016],[-124.10504847356344,57.36201433747932],[-124.10502551054846,57.36205773601075],[-124.1050024918108,57.362102255014875],[-124.10498160788771,57.36214568354247],[-124.10496072391706,57.36218911206823],[-124.1049419191007,57.36223257059402],[-124.10492305856847,57.36227714959402],[-124.10490425366582,57.36232060811749],[-124.10488336951136,57.362364036637295],[-124.10486456452065,57.36240749515819],[-124.1048457594871,57.362450953677936],[-124.10482689873457,57.362495532672185],[-124.1048060143963,57.36253896118595],[-124.10478720923125,57.36258241970205],[-124.10476632480021,57.3626258482126],[-124.10474751954713,57.362669306726204],[-124.10472657934393,57.362713855709224],[-124.10470777400218,57.36275731422026],[-124.10468896861758,57.36280077273013],[-124.10466808395519,57.362844201232896],[-124.10464927848255,57.36288765974023],[-124.10462833804476,57.36293220871567],[-124.10460953248348,57.36297566722053],[-124.10459072687931,57.36301912572418],[-124.10456984198554,57.36306255421918],[-124.10455098060821,57.36310713319622],[-124.10453217487255,57.363150591696225],[-124.10451336909404,57.363194050195084],[-124.10449248401642,57.363237478684084],[-124.10447362246221,57.36328205765649],[-124.10445481655219,57.36332551615171],[-124.10443601059931,57.363368974645724],[-124.10441928386935,57.3634124631487],[-124.10440042214307,57.36345704211705],[-124.1043816160634,57.36350050060806],[-124.10436488921374,57.363543989108905],[-124.10434602735887,57.363588568074235],[-124.10432930043001,57.363632056573614],[-124.10431251777007,57.36367666554883],[-124.1042957907644,57.36372015404709],[-124.10427906372057,57.36376364254479],[-124.10426228094398,57.36380825151847],[-124.10424555382335,57.363851740015086],[-124.10423085026076,57.363896379000664],[-124.10421412306567,57.36393986749641],[-124.10419941943235,57.363984506481756],[-124.10418471576462,57.36402914546706],[-124.10417006776021,57.36407266397569],[-124.10415536402414,57.36411730296096],[-124.10414279525872,57.36416085148391],[-124.10412809145674,57.364205490469345],[-124.10411546693153,57.364250159469734],[-124.10410284237673,57.36429482847045],[-124.10409027349284,57.364338376994695],[-124.104075569561,57.3643830159809],[-124.10406294491554,57.364427684982694],[-124.10404829661918,57.364471203492045],[-124.1040356719126,57.36451587249454],[-124.10402304717643,57.36456054149743],[-124.10400834308027,57.364605180484276],[-124.10399577398626,57.36464872901064],[-124.1039810698242,57.364693367997674],[-124.10396844496536,57.36473803700188],[-124.10395582007695,57.36478270600655],[-124.10394117152207,57.36482622451675],[-124.10392854657255,57.364870893521946],[-124.10391384224616,57.364915532509634],[-124.10390121723509,57.36496020151562],[-124.10388656854975,57.36500372002609],[-124.10387394347754,57.36504838903266],[-124.10385923901887,57.365093028020794],[-124.10384661388507,57.365137697028025],[-124.10383190936,57.3651823360164],[-124.1038193398744,57.36522588454674],[-124.1038046352834,57.36527052353527],[-124.10379201002694,57.36531519254387],[-124.10377730536955,57.365359831532665],[-124.10376468005154,57.36540450054186],[-124.1037499753277,57.365449139530895],[-124.10373740566068,57.36549268806295],[-124.10372270087095,57.36553732705221],[-124.10371007543024,57.365581996062794],[-124.10369744995997,57.36562666507373],[-124.10368274507185,57.3656713040635],[-124.10367011954,57.36571597307512],[-124.1036554703008,57.365759491587035],[-124.10364284470784,57.36580416059929],[-124.10362813968737,57.36584879958948],[-124.10361551403287,57.365893468602366],[-124.103600808946,57.36593810759283],[-124.1035881832299,57.365982776606415],[-124.1035756132023,57.366026325142144],[-124.10356090801754,57.366070964133016],[-124.10354828221074,57.36611563314774],[-124.10353565637438,57.3661603021628],[-124.10352095109121,57.366204941154116],[-124.10350832519329,57.36624961016999],[-124.1034956992658,57.36629427918617],[-124.10348099388422,57.366338918178016],[-124.10346842361687,57.36638246671636],[-124.10345579759868,57.36642713573358],[-124.10344317155092,57.366471804751384],[-124.10342846603943,57.36651644374381],[-124.1034158399301,57.36656111276221],[-124.1034032137912,57.3666057817811],[-124.10339058762273,57.366650450800414],[-124.10337796142467,57.366695119820136],[-124.10336539092232,57.36673866836145],[-124.10335276466559,57.36678333738202],[-124.10333805892819,57.36682797637583],[-124.10332543260986,57.36687264539708],[-124.10331280626197,57.36691731441872],[-124.10330017988453,57.36696198344088],[-124.10328755347749,57.36700665246342],[-124.10327700650406,57.36705135151456],[-124.1032643800403,57.36709602053821],[-124.10325180927617,57.36713956908313],[-124.1032391827537,57.36718423810756],[-124.10322655620169,57.36722890713253],[-124.10321392962008,57.36727357615777],[-124.10320338248657,57.36731827521286],[-124.10319075584825,57.36736294423929],[-124.10317812918035,57.36740761326622],[-124.10316550248287,57.367452282293485],[-124.10315501097575,57.36749586087189],[-124.10314238422202,57.36754052990018],[-124.10313183693086,57.367585228959456],[-124.10311921012038,57.367629897988806],[-124.10310866277736,57.36767459704949],[-124.10309603591016,57.367719266079945],[-124.10308548851526,57.36776396514213],[-124.10307286159134,57.36780863417366],[-124.10306236988038,57.36785221275753],[-124.1030518224093,57.367896911821816],[-124.10304127491347,57.36794161088703],[-124.10302864787897,57.36798627992086],[-124.10301810033127,57.36803097898752],[-124.10300755275885,57.3680756780549],[-124.10299700516171,57.36812037712308],[-124.10298651327837,57.3681639557121],[-124.10297596563215,57.36820865478193],[-124.10296541796123,57.368253353852545],[-124.1029548702656,57.368298052923876],[-124.10294432254524,57.368342751996074],[-124.10293377480015,57.368387451069154],[-124.10292536230922,57.36843105969646],[-124.10291481451749,57.36847575877118],[-124.10290426670106,57.36852045784677],[-124.10289579840531,57.368565186957426],[-124.10288525054186,57.368609886034726],[-124.10287678220395,57.3686546151475],[-124.10286629003629,57.36869819374622],[-124.10285782165654,57.36874292286086],[-124.10284727369945,57.36878762194176],[-124.10283880527756,57.36883235105863],[-124.10283033683581,57.36887708017656],[-124.10282192411862,57.36892068881497],[-124.10281345563746,57.36896541793507],[-124.10280498713642,57.36901014705633],[-124.10279651861555,57.36905487617864],[-124.1027880500748,57.36909960530215],[-124.1027796372602,57.369143213945875],[-124.10277116868004,57.369187943071466],[-124.10276270008,57.36923267219826],[-124.10275423146012,57.3692774013261],[-124.10274789815415,57.36932104001076],[-124.1027394294973,57.369365769140884],[-124.10273304041196,57.36941052830899],[-124.1027245717178,57.36945525744155],[-124.10271823834834,57.36949889613111],[-124.10270976961723,57.36954362526604],[-124.10270338046728,57.36958838443934],[-124.10269699130235,57.36963314361388],[-124.10269065787182,57.3696767823086],[-124.10268426867715,57.36972154148588],[-124.10267787946748,57.36976630066454],[-124.10257612355926,57.36984556351445],[-124.12892657609808,57.40001060593253],[-124.13353186575036,57.40527556108072],[-124.13348770908539,57.40532651433884],[-124.13345445426665,57.40536753059324],[-124.1334211993763,57.405408546840654],[-124.13338794441437,57.40544956308111],[-124.13335463448071,57.4054916998422],[-124.13332137937456,57.40553271606863],[-124.1332901508835,57.40557488236995],[-124.13325689563536,57.405615898583],[-124.13322566700475,57.40565806487195],[-124.13319449321018,57.40569911062709],[-124.13316326444233,57.40574127690412],[-124.13313203560537,57.40578344317532],[-124.1331008066993,57.40582560944055],[-124.13306957772413,57.4058677756999],[-124.13303834867985,57.40590994195325],[-124.13300711956646,57.40595210820078],[-124.13297797199546,57.405994304001354],[-124.13294674274611,57.40603647023747],[-124.13291759504374,57.406078666027646],[-124.13288631074366,57.40612195278058],[-124.13285716290896,57.40616414856044],[-124.13282593338675,57.40620631477394],[-124.13279678542071,57.40624851054341],[-124.13276758247156,57.406291826836096],[-124.13273635274557,57.406333993032895],[-124.13270720458267,57.40637618878703],[-124.13267800143383,57.406419505064534],[-124.13264885314089,57.406461700808755],[-124.13261762314433,57.40650386698326],[-124.13258841979584,57.406547183245586],[-124.13255927130602,57.40658937897453],[-124.13253012275169,57.40663157469846],[-124.13249883755752,57.40667486137938],[-124.13246968887087,57.40671705709299],[-124.13244054011967,57.40675925280163],[-124.13240925471892,57.40680253946583],[-124.13238010583541,57.40684473516418],[-124.13235095688735,57.40688693085754],[-124.13231967128,57.406930217505085],[-124.13229052219964,57.40697241318813],[-124.13225929138801,57.40701457929579],[-124.13223014217621,57.40705677496839],[-124.13219891122864,57.40709894106466],[-124.13216768021195,57.40714110715505],[-124.13213853080195,57.40718330281183],[-124.13210729964929,57.40722546889083],[-124.1320760684275,57.40726763496405],[-124.13204483713663,57.40730980103126],[-124.13201360577662,57.407351967092524],[-124.13198237434749,57.40739413314786],[-124.131949116104,57.40743514909305],[-124.13191788453534,57.40747731513605],[-124.13188462614985,57.40751833106779],[-124.13185339444163,57.40756049709843],[-124.13182013591414,57.40760151301675],[-124.1317868223657,57.4076436494572],[-124.13175356369395,57.407684665361614],[-124.1317203049506,57.40772568125895],[-124.1316870461357,57.40776669714928],[-124.13165378724915,57.40780771303263],[-124.13161844657924,57.407848699328476],[-124.1315851875473,57.40788971519736],[-124.13154990168428,57.40792958094835],[-124.13151456078963,57.407970567220445],[-124.13147921981893,57.40801155348451],[-124.13144185200952,57.40805138962767],[-124.13140656584682,57.408091255345745],[-124.13136919788327,57.40813109147106],[-124.13133182984164,57.408170927587115],[-124.13129446172182,57.40821076369385],[-124.1312570935239,57.408250599791224],[-124.13121972524786,57.40829043587946],[-124.1311803301241,57.4083291218414],[-124.13114087995098,57.40836892832231],[-124.13110148466602,57.40840761426321],[-124.13106208930105,57.40844630019355],[-124.13102269385612,57.40848498611331],[-124.13098121658302,57.40852364243189],[-124.13093973922581,57.40856229873868],[-124.13089831676123,57.408599834504074],[-124.13085481246084,57.408637340664846],[-124.1308133348516,57.40867599693547],[-124.13076983038059,57.408713503070615],[-124.13072632582391,57.40875100919256],[-124.13068079440275,57.408787365176124],[-124.13063728967413,57.40882487127091],[-124.13059175807972,57.408861227225955],[-124.13054622639845,57.40889758316635],[-124.13049861286011,57.40893390949377],[-124.13045099923099,57.40897023580506],[-124.13040338551109,57.40900656210026],[-124.13035582669383,57.40904176784947],[-124.1303082127938,57.40907809411241],[-124.13025857201954,57.40911327022722],[-124.13020893115362,57.40914844632438],[-124.13015726341196,57.409182472270246],[-124.13010762236237,57.409217648331214],[-124.13005589943384,57.409252794769216],[-124.13000423141403,57.40928682065796],[-124.12995256330196,57.40932084652737],[-124.1299008950976,57.40935487237748],[-124.12984714500642,57.40938886859971],[-124.12979339481933,57.40942286480083],[-124.1297396995485,57.40945574045105],[-124.12968594917122,57.40948973661031],[-124.12963017191178,57.409522582606435],[-124.12957647635957,57.40955545819279],[-124.12952069890956,57.409588304144364],[-124.12946492136336,57.40962115007318],[-124.12940914372102,57.40965399597919],[-124.12935128417207,57.40968681224604],[-124.12929550633565,57.40971965810571],[-124.12923770161647,57.40975135379434],[-124.12917984177204,57.40978416998848],[-124.12912203685876,57.40981586562807],[-124.12906423184936,57.40984756124302],[-124.12900642674376,57.409879256833435],[-124.12894653971964,57.4099109227764],[-124.12888873442002,57.40994261831678],[-124.1288288471985,57.40997428420789],[-124.12876895987743,57.410005950072446],[-124.12870907245686,57.41003761591076],[-124.12864923998183,57.41006816119248],[-124.12858935236396,57.41009982697779],[-124.12852951969528,57.41013037220669],[-124.12846755004442,57.41016200830874],[-124.12840771718045,57.410192553483775],[-124.12834580238159,57.410223069000004],[-124.12828596932414,57.4102536141213],[-124.12822399927065,57.41028525011185],[-124.12816208417404,57.41031576554397],[-124.12810016897825,57.41034628094774],[-124.1280382536833,57.41037679632316],[-124.12797633828916,57.410407311670134],[-124.12791442279588,57.41043782698886],[-124.1278525072034,57.41046834227915],[-124.12779059151175,57.41049885754119],[-124.12772867572095,57.41052937277476],[-124.12766473304892,57.41055873780664],[-124.12760281706,57.41058925298252],[-124.12754090097191,57.41061976813015],[-124.12747690292302,57.410650253603094],[-124.12741498663497,57.41068076869285],[-124.12735104346712,57.41071013357603],[-124.12728912698095,57.410740648608204],[-124.12722721039562,57.41077116361189],[-124.12716321184149,57.410801648936186],[-124.12710129505619,57.41083216388226],[-124.12703735139249,57.41086152861665],[-124.1269754344091,57.41089204350502],[-124.1269114354505,57.41092252870994],[-124.12684951826711,57.41095304354049],[-124.12678760098457,57.4109835583428],[-124.12672360172195,57.41101404345861],[-124.12666168423944,57.41104455820321],[-124.12659976665778,57.41107507291941],[-124.1265378489769,57.411105587607274],[-124.12647384930948,57.41113607260474],[-124.12641193142866,57.41116658723487],[-124.12635001344864,57.411197101836684],[-124.12628809536946,57.41122761641008],[-124.12622617719111,57.41125813095515],[-124.12616628568917,57.41128979566897],[-124.12610436731221,57.41132031015823],[-124.12604244883607,57.411350824619284],[-124.12598047513528,57.41138245958206],[-124.125920638361,57.411413003657074],[-124.1258607463617,57.411444668235966],[-124.12579877235738,57.41147630311572],[-124.1257388801573,57.411507967640745],[-124.12567904299225,57.41153851160916],[-124.12561915059489,57.41157017608139],[-124.12555925809795,57.41160184052722],[-124.12549936550148,57.411633504946515],[-124.1254414995792,57.411666319548196],[-124.12538160678352,57.41169798391566],[-124.12532379580719,57.411729677936954],[-124.12526592958763,57.41176249246401],[-124.1252080632684,57.41179530696655],[-124.12515025200005,57.411827000914116],[-124.12509238548323,57.41185981536762],[-124.12503451886673,57.411892629796434],[-124.12497873407989,57.4119254738865],[-124.12492294919689,57.411958317953804],[-124.1248671090586,57.41199228252878],[-124.12481132398156,57.41202512655055],[-124.12475548364584,57.41205909108006],[-124.12469964321056,57.412093055586666],[-124.12464593978166,57.41212592923134],[-124.12459009915078,57.41215989369341],[-124.12453634036402,57.4121938878256],[-124.12448258148132,57.41222788193672],[-124.12442674055539,57.412261846332406],[-124.12437298147904,57.41229584040071],[-124.12431922230675,57.412329834448066],[-124.12426546303851,57.41236382847433],[-124.12420962171981,57.41239779278172],[-124.1241558622579,57.41243178676516],[-124.12410210270009,57.41246578072767],[-124.12404834304633,57.41249977466914],[-124.12399458329664,57.41253376858968],[-124.12394076826382,57.41256888301962],[-124.12388700832065,57.41260287689812],[-124.12383324828153,57.41263687075559],[-124.1237794881465,57.412670864592215],[-124.12372775469282,57.412706008643745],[-124.1236739943661,57.41274000243919],[-124.12362017874653,57.412775116744015],[-124.12356641822635,57.4128091104974],[-124.12351473958854,57.41284313393886],[-124.12346092367652,57.41287824818158],[-124.1234071628687,57.41291224187288],[-124.12335542874386,57.41294738578526],[-124.12330161253777,57.41298249996595],[-124.12324993342831,57.41301652330824],[-124.12319611702735,57.41305163744782],[-124.12314443772992,57.41308566075076],[-124.12309062113405,57.41312077484925],[-124.12303888643407,57.4131559186433],[-124.12298715163867,57.41319106241798],[-124.12293338996672,57.413225055924606],[-124.1228816549801,57.41326019965994],[-124.12282991989807,57.413295343375935],[-124.12277610271616,57.413330457352],[-124.12272436744134,57.41336560102853],[-124.12267268729677,57.413399624155],[-124.12262095183263,57.41343476779299],[-124.12256921627305,57.413469911411674],[-124.12251539860429,57.41350502528622],[-124.12246366285196,57.413540168865346],[-124.1224119270042,57.413575312425344],[-124.12236019106096,57.41361045596589],[-124.12230845502229,57.41364559948715],[-124.12225671888818,57.4136807429892],[-124.1222049826586,57.413715886471856],[-124.12215324633361,57.41375102993514],[-124.12210150991316,57.41378617337927],[-124.1220497733973,57.41382131680403],[-124.12199803678594,57.413856460209516],[-124.12194630007914,57.413891603595665],[-124.12189450802761,57.41392786749335],[-124.12184277112836,57.413963010840895],[-124.12179311617379,57.4139981839055],[-124.12174137908553,57.41403332721527],[-124.12168964190184,57.41406847050565],[-124.1216379046227,57.414103613776874],[-124.12158611198937,57.41413987755963],[-124.12153437451776,57.41417502079212],[-124.12148471900217,57.41421019374663],[-124.12143298134156,57.41424533694139],[-124.12138118832053,57.41428160064784],[-124.12132945046743,57.414316743803916],[-124.12127979457793,57.41435191668524],[-124.12122805653584,57.41438705980357],[-124.1211762631271,57.41442332343368],[-124.12112452489252,57.414458466513494],[-124.12107486862914,57.41449363932159],[-124.12102313020553,57.41452878236356],[-124.12097133640908,57.41456504591735],[-124.12091959779302,57.4146001889207],[-124.12086994115572,57.41463536165569],[-124.12081814706856,57.41467162515244],[-124.12076640816645,57.41470676809865],[-124.12071675124882,57.41474194077907],[-124.12066495687097,57.41477820421866],[-124.1206132176828,57.414813347107916],[-124.12056356048485,57.41484851973354],[-124.12051176581627,57.414884783116136],[-124.12046002634209,57.41491992594828],[-124.12041036886377,57.41495509851925],[-124.12035857390451,57.41499136184483],[-124.12030683414426,57.415026504619775],[-124.1202571763856,57.41506167713614],[-124.12020538113562,57.41509794040472],[-124.12015364108936,57.41513308312265],[-124.12010398305033,57.41516825558428],[-124.12005224281504,57.415203398264445],[-124.12000044717733,57.41523966145668],[-124.11995078885796,57.415274833863634],[-124.11989904833662,57.41530997648661],[-124.11984725240818,57.415346239621776],[-124.11979551169432,57.41538138220626],[-124.11974585300108,57.41541655454014],[-124.11969405678194,57.41545281761814],[-124.11964231578203,57.415487960145526],[-124.11959265680841,57.41552313242472],[-124.11954091561948,57.415558274914176],[-124.1194891190126,57.41559453791598],[-124.11943737763117,57.41562968036694],[-124.11938563615429,57.415664822798604],[-124.11933597671319,57.41569999498612],[-124.1192842350473,57.415735137380025],[-124.11923243795562,57.41577140028611],[-124.11918069609725,57.415806542641405],[-124.1191289541434,57.4158416849773],[-124.1190772120941,57.41587682729392],[-124.1190275520919,57.415911999371325],[-124.11897580985355,57.41594714165027],[-124.11892401218009,57.415983404441306],[-124.11887226974926,57.416018546681634],[-124.11882052722298,57.41605368890253],[-124.11876878460124,57.41608883110417],[-124.11871704188407,57.41612397328653],[-124.1186652990714,57.41615911544954],[-124.1186135561633,57.41619425759324],[-124.11856181315972,57.416229399717636],[-124.1185100700607,57.416264541822706],[-124.11845832686622,57.41629968390854],[-124.11840658357626,57.41633482597505],[-124.11833982216207,57.416378723739996],[-124.11832511484177,57.41642336626294],[-124.11831046284543,57.41646688825416],[-124.11829367328195,57.416511500985514],[-124.11827693903868,57.41655499318451],[-124.11826223157665,57.41659963570711],[-124.11824544189817,57.416644248437414],[-124.11822870754155,57.41668774063519],[-124.11820983559826,57.41673232357142],[-124.11819310116229,57.41677581576791],[-124.11817631132521,57.41682042849592],[-124.11815749461837,57.416863890897616],[-124.11814070470078,57.4169085036244],[-124.11812183254514,57.41695308655637],[-124.11810509791172,57.41699657874972],[-124.1180862256708,57.417041161679904],[-124.11806949095804,57.41708465387206],[-124.1180506186318,57.41712923680043],[-124.11803180162903,57.41717269919545],[-124.11801501142814,57.41721731191782],[-124.11799619434126,57.41726077431097],[-124.11797732184199,57.41730535723552],[-124.11796053151885,57.41734996995601],[-124.11794171430428,57.41739343234622],[-124.11792492390063,57.417438045065545],[-124.11790610660192,57.41748150745393],[-124.11788931611775,57.41752612017194],[-124.11787258096716,57.41756961235696],[-124.11785370817024,57.417614195275355],[-124.11783697294031,57.41765768745905],[-124.11782018229754,57.417702300174874],[-124.11780339161541,57.41774691289031],[-124.11778873851401,57.417790434872224],[-124.11777194775621,57.41783504758702],[-124.11775521233594,57.417878539768445],[-124.11774050375152,57.41792318228268],[-124.11772585051048,57.41796670426403],[-124.11771114185763,57.41801134677829],[-124.1176964331703,57.418055989292725],[-124.11768177982779,57.41809951127409],[-124.1176691533355,57.418144183590236],[-124.11765658219377,57.41818773537368],[-124.11764395564269,57.41823240769068],[-124.11763132906201,57.41827708000819],[-124.11761875783318,57.41832063179287],[-124.11760821346924,57.41836533391388],[-124.11759766908054,57.41841003603576],[-124.11758718004968,57.41845361762509],[-124.11757871789466,57.418498349551705],[-124.11756817343455,57.41854305167634],[-124.11755976662093,57.41858666307153],[-124.11755338669418,57.418631424804865],[-124.11754700675243,57.41867618653964],[-124.11754068218006,57.41871982774208],[-124.11753430220861,57.41876458947959],[-124.11753000452188,57.41880938102237],[-124.11752784451215,57.41885308183685],[-124.11752562911245,57.41889790318671],[-124.11752549601452,57.41894275434207],[-124.1175253629163,57.41898760549917],[-124.11752736751491,57.419031365928056],[-124.11753139904725,57.41907627669626],[-124.11753543058907,57.419121187466054],[-124.1175394621404,57.419166098237426],[-124.11754563140789,57.41920991827993],[-124.11755174530477,57.41925485885792],[-124.11755994154264,57.41929982924071],[-124.11756605547082,57.41934476982141],[-124.1175763340764,57.41938977000988],[-124.11758458575645,57.41943361986203],[-124.1175948644079,57.419478620052416],[-124.11760514308368,57.41952362024372],[-124.11761542178371,57.419568620435996],[-124.11762570050801,57.41961362062914],[-124.11763597925663,57.41965862082322],[-124.11764839576087,57.4197025302856],[-124.11765867456027,57.41974753048139],[-124.11767103573757,57.41979256047956],[-124.11768131458801,57.41983756067681],[-124.11769367582126,57.4198825906765],[-124.11770395472274,57.41992759087548],[-124.117716316012,57.41997262087641],[-124.11772659496451,57.42001762107711],[-124.11773692932186,57.42006150074367],[-124.11774720832271,57.42010650094613],[-124.11775540497457,57.42015147134928],[-124.11776568402152,57.42019647155366],[-124.11777388071457,57.42024144195909],[-124.11778207742694,57.420286412365606],[-124.1177881917755,57.42033135297362],[-124.11779430613853,57.42037629358303],[-124.11780042051599,57.42042123419386],[-124.11780445251735,57.42046614500661],[-124.1178084845282,57.42051105582091],[-124.11781043415313,57.42055593683748],[-124.11781238378263,57.42060081785565],[-124.11781225101642,57.42064566907607],[-124.11781211824986,57.42069052029822],[-124.117811985483,57.42073537152205],[-124.11781185271583,57.42078022274766],[-124.1178138023585,57.420825103774284],[-124.11781366959316,57.420869955003305],[-124.11781348144798,57.42091592676974],[-124.11781543109953,57.42096080780161],[-124.11781524295603,57.4210067795716],[-124.11781511019174,57.4210516308075],[-124.11781700447246,57.421097632380466],[-124.11781687170995,57.42114248361988],[-124.11781668356728,57.421188455396965],[-124.1178185778567,57.421234456975164],[-124.11781844509557,57.42127930821975],[-124.11781825695412,57.4213252800021],[-124.11781806881223,57.42137125178642],[-124.11781788066988,57.421417223572455],[-124.1178177479073,57.42146207482396],[-124.11781755976409,57.421508046613546],[-124.11781737162048,57.42155401840495],[-124.11781510102385,57.421599960398765],[-124.11781491287682,57.421645932193755],[-124.11781269765244,57.42169075365446],[-124.11781250950203,57.421736725452966],[-124.11781023888867,57.421782667453726],[-124.11780802365085,57.42182748891966],[-124.11780575302669,57.421873430923945],[-124.11780139992706,57.42191934313045],[-124.11779918467089,57.42196416460141],[-124.11779483155298,57.4220100768111],[-124.11779053380644,57.42205486848562],[-124.11778618066774,57.42210078069861],[-124.11777980041848,57.42214554257624],[-124.11777550263898,57.422190334255404],[-124.11776912236218,57.42223509613608],[-124.11776274207034,57.422279858018015],[-124.11775630638031,57.422325740438495],[-124.11774784356368,57.42237047252283],[-124.11773943611105,57.422414084071214],[-124.11773097325496,57.42245881615778],[-124.11772042787717,57.42250351844469],[-124.11770993785959,57.422547100195004],[-124.11769939243267,57.422591802483545],[-124.11768890236668,57.422635384235534],[-124.11767627437919,57.42268005672405],[-124.11766370174864,57.42272360867578],[-124.11764904657312,57.42276713082565],[-124.11763444675168,57.42280953243809],[-124.1176197915097,57.42285305458796],[-124.11760305371097,57.42289654693502],[-124.11758637126319,57.422938918743945],[-124.11756963338858,57.42298241109004],[-124.11755086833583,57.423024753094055],[-124.11753210324132,57.4230670950972],[-124.11751131096192,57.42310828675704],[-124.11748421563416,57.423150509539],[-124.11745301056119,57.42319155216868],[-124.11741555779656,57.42323250537534],[-124.1173719127164,57.42327224861569],[-124.11732618499941,57.423311962035676],[-124.11727629209133,57.423351615825275],[-124.11722223397943,57.42339120997968],[-124.11716614860526,57.42342965376561],[-124.11710589800971,57.42346803790758],[-124.11704564729271,57.4235064220231],[-124.11698123133792,57.42354474648719],[-124.11691687066326,57.423581950382975],[-124.11685250986288,57.42361915424843],[-124.11678814893679,57.42365635808367],[-124.11672170531881,57.423693532071724],[-124.1166573995569,57.42372961530735],[-124.1165951208236,57.42376684886931],[-124.11653289738996,57.42380296186495],[-124.1164727564122,57.42383910465306],[-124.11641469789609,57.42387527723643],[-124.11635872184749,57.42391147961782],[-124.1163069662801,57.423946621085115],[-124.11625932035054,57.423982942719434],[-124.1162158949282,57.42401820344922],[-124.11617449657852,57.42405461452915],[-124.11614148393264,57.42409002436331],[-124.11611263640387,57.4241254938431],[-124.1160879540037,57.42416102297124],[-124.11607154649441,57.424197791942525],[-124.11606144217487,57.42423352985661],[-124.1160596682247,57.42426938708021],[-124.11606414206832,57.42430533378665],[-124.11607272568673,57.42434246068637],[-124.11608761256657,57.424378556529135],[-124.11610660924997,57.42441583256272],[-124.11612971575067,57.42445428878558],[-124.11615704295028,57.424491684118614],[-124.11618853542629,57.424529139097665],[-124.11622413775956,57.424567774258385],[-124.11626396082688,57.42460534852019],[-124.1163058111612,57.42464407313321],[-124.11635188224842,57.42468173684086],[-124.1163999806221,57.424720550894314],[-124.1164522997673,57.424758304034704],[-124.11650670164246,57.42479608697565],[-124.1165631862539,57.42483389971468],[-124.11662180902829,57.42487062171002],[-124.1166845971806,57.424907403315174],[-124.1167473854542,57.42494418489153],[-124.11681225648563,57.42498099625443],[-124.11687718305548,57.425016687047204],[-124.11694424779874,57.42505128708299],[-124.11701339530629,57.42508591689776],[-124.1170825429396,57.425120546677114],[-124.11715388415517,57.4251529651522],[-124.11722522549222,57.425185383589366],[-124.1172944843008,57.42521777218109],[-124.11736588127786,57.42524907000408],[-124.11743733376922,57.425279247249335],[-124.11750884176868,57.42530830391672],[-124.11757832261347,57.42533621020297],[-124.1176478589509,57.42536299591306],[-124.11771739538615,57.42538978158703],[-124.11778496003184,57.42541429634486],[-124.11785252476452,57.4254388110684],[-124.11792222763094,57.42546223501542],[-124.11799193058309,57.42548565892599],[-124.11806168899986,57.42550796225981],[-124.11813144749834,57.42553026555716],[-124.11820334412224,57.42555147807081],[-124.11827524082622,57.42557269054553],[-124.11834713761027,57.42559390298152],[-124.1184211725154,57.42561402462791],[-124.11849312482515,57.42563411644427],[-124.11856715988559,57.42565423800921],[-124.11864333306218,57.42567326877857],[-124.11871742363796,57.42569226971888],[-124.11879359696572,57.425711300401844],[-124.11886774304591,57.42572918071741],[-124.1189439718759,57.42574709077304],[-124.11902228345873,57.42576503056526],[-124.1190985124331,57.42578294053192],[-124.11917474147918,57.425800850454785],[-124.11925310862554,57.425817669569305],[-124.11933147584112,57.42583448863751],[-124.11940984312591,57.42585130765916],[-124.1194882104799,57.42586812663453],[-124.11956657790313,57.4258849455633],[-124.11964494539554,57.42590176444576],[-124.11972331295718,57.42591858328173],[-124.11980173591635,57.425934281529855],[-124.11988010361412,57.425951100272925],[-124.11996060939782,57.42596682819361],[-124.12003897723271,57.425983646842504],[-124.12011740045595,57.42599934490329],[-124.120195768427,57.42601616345922],[-124.12027627447857,57.426031891187705],[-124.12035464258672,57.426048709649585],[-124.12043306607403,57.42606440752312],[-124.12051143431833,57.42608122589207],[-124.12059188533244,57.426098073970024],[-124.12067025371614,57.42611489224487],[-124.12074862216906,57.42613171047319],[-124.12082699069119,57.42614852865513],[-124.1209032212817,57.42616643758207],[-124.12098158994353,57.42618325567245],[-124.12105990338287,57.42620119425847],[-124.12113613418832,57.426219103051295],[-124.12121236506546,57.426237011800225],[-124.12128854072925,57.42625604104757],[-124.12136471646915,57.42627507025118],[-124.12144089228514,57.42629409941095],[-124.12151498546417,57.42631309878606],[-124.12159110615505,57.42633324840196],[-124.12166514421106,57.42635336823561],[-124.1217391823453,57.42637348802809],[-124.12181108257012,57.426394698585625],[-124.12188506559404,57.42641593883936],[-124.12195691071462,57.426438269860654],[-124.12202875591942,57.42646060084319],[-124.12209851848564,57.4264829020552],[-124.1221703085982,57.426506353504315],[-124.12223996081617,57.42653089572823],[-124.12230758565245,57.42655428764425],[-124.12237718279307,57.42657995033956],[-124.1224447525492,57.42660446272925],[-124.12251221189311,57.42663121617113],[-124.12257764384671,57.42665681931171],[-124.1226451033767,57.42668357268666],[-124.12271042502184,57.426711416849],[-124.12277574676249,57.42673926097966],[-124.12283898585966,57.4267670753584],[-124.12290430778972,57.42679491942653],[-124.12296749183675,57.42682385428845],[-124.12303067597976,57.426852789120744],[-124.12309386021877,57.426881723923465],[-124.12315698932275,57.426911779240264],[-124.12322011852638,57.42694183452752],[-124.12328116507912,57.426971860072236],[-124.12334221172813,57.42700188558951],[-124.12340534122725,57.42703194079021],[-124.12346633284831,57.42706308679539],[-124.12352732456911,57.42709423277313],[-124.12358831638964,57.427125378723424],[-124.12364930830996,57.427156524646264],[-124.12371030033,57.42718767054156],[-124.12377129244983,57.42721881640953],[-124.12383020190326,57.42724993254566],[-124.12389119422083,57.427281078359734],[-124.12395213142995,57.42731334469071],[-124.12401312394877,57.427344490449926],[-124.12407203379416,57.42737560648104],[-124.1241329713077,57.42740787273094],[-124.12419396412582,57.42743901840886],[-124.12425495704365,57.42747016405926],[-124.12431595006127,57.42750130968211],[-124.12437694317862,57.42753245527764],[-124.12443793639575,57.427563600845694],[-124.12449898490516,57.42759362584141],[-124.12455997832005,57.427624771354466],[-124.12462310981262,57.42765482598687],[-124.12468410342701,57.42768597144401],[-124.12474723511897,57.4277160260184],[-124.12481042209419,57.42774496001804],[-124.12487355398362,57.427775014533374],[-124.12493674115264,57.42780394847377],[-124.12499992841767,57.42783288238457],[-124.12506311577872,57.427861816265725],[-124.12512844121241,57.427889659255605],[-124.1251937667416,57.42791750221362],[-124.12525914753702,57.427944224594235],[-124.12527345132231,57.42795003509373],[-124.12570784887504,57.42805938737777],[-124.12605373554828,57.42814617211676],[-124.12639754097593,57.42823292628923],[-124.12674337566924,57.428320829774734],[-124.12708926707644,57.42840761181103],[-124.12743307722297,57.428494363297155],[-124.12777897177777,57.42858114353321],[-124.12812486790885,57.428667922866474],[-124.12847082069358,57.42875358074917],[-124.1288167750345,57.42883923772853],[-124.12916273093157,57.42892489380464],[-124.12950874343201,57.42900942842895],[-124.12985908832285,57.429090659721524],[-124.13021612354974,57.42916301450621],[-124.13057771100566,57.429227583678255],[-124.13095481495708,57.429273309664545],[-124.13128806230067,57.42936326483165],[-124.1315796467557,57.429495238005146],[-124.13187106829582,57.429630572197325],[-124.13219072409706,57.42974275864426],[-124.1325147674521,57.429850521257364],[-124.13282357277988,57.429971522757675],[-124.1331237736427,57.430098008071646],[-124.1334195908915,57.43022891581397],[-124.13370263788194,57.43036524837507],[-124.1339493430999,57.430520127475],[-124.13418311325896,57.430683793306],[-124.13443190546515,57.430838701083815],[-124.13468486565397,57.430993667476926],[-124.13494002067043,57.43114642182752],[-124.13520159137211,57.43129590261774],[-124.13548032203938,57.43143553408927],[-124.13577188202214,57.43156861875945],[-124.13605067163508,57.43170712850181],[-124.13632710599552,57.4318512109331],[-124.13659077001856,57.432000718558506],[-124.13682258724654,57.43216210929564],[-124.13700775678456,57.432339659066365],[-124.1371674378321,57.432526939680486],[-124.13732498255223,57.43271531119506],[-124.13750999267046,57.432896222009056],[-124.1377181378446,57.4330729747011],[-124.13788643191795,57.43325476971863],[-124.13794766662984,57.433451869403015],[-124.13793741798415,57.43366141342727],[-124.13795024817473,57.43386792011145],[-124.1379839648136,57.43407360108027],[-124.13797815655187,57.43427760139478],[-124.13791199102984,57.43447962623435],[-124.13781676985873,57.43467899720028],[-124.13773190884777,57.43487963611147],[-124.13765735333602,57.43508266354627],[-124.13757868541533,57.4352845114425],[-124.13747934885417,57.435482702769306],[-124.13735112006009,57.435674878400334],[-124.13719191540893,57.43586100875483],[-124.13701204113534,57.43604348231424],[-124.1368157183706,57.43622123743174],[-124.13660716835878,57.43639321247773],[-124.13635974717496,57.43655005934536],[-124.13608359677025,57.43669752815527],[-124.13583216946805,57.43685095337464],[-124.13566297494266,57.43702797002338],[-124.13559048751402,57.437231026176924],[-124.1355241395445,57.43743641200236],[-124.13541025815897,57.43763327493531],[-124.1352859588269,57.43782999018697],[-124.135136987205,57.438019627692526],[-124.13494903389241,57.43819637786826],[-124.13470334809604,57.438359974749915],[-124.13440508460998,57.438490307011755],[-124.13406559440521,57.438568472487646],[-124.13369205850402,57.43861812078855],[-124.13331051773199,57.438660926458105],[-124.13294690229968,57.438720805454196],[-124.13259199865428,57.43881556860974],[-124.13231823051275,57.43895633601509],[-124.132182015159,57.43914054498326],[-124.13209903298774,57.43934457227713],[-124.13204911011363,57.43955467554906],[-124.13202237966057,57.439759501367746],[-124.13204981908922,57.439965096166304],[-124.13208975969043,57.44017086843944],[-124.13209844836362,57.44037619713346],[-124.13205510457378,57.440579665950835],[-124.13198670317571,57.440783900445695],[-124.1318954922688,57.44098556847364],[-124.13178580357162,57.44118136746073],[-124.13157534014341,57.4413488234388],[-124.13135681570847,57.44151055795663],[-124.1313031038604,57.44171275823438],[-124.13130115071861,57.44192242156556],[-124.13133280999564,57.44212695550522],[-124.13139161138594,57.442330753519414],[-124.13146297006446,57.442533608484645],[-124.13152807864537,57.44273637469797],[-124.13156812934741,57.44293990649229],[-124.13156014670527,57.443144999049636],[-124.13151668686857,57.44335070929806],[-124.13148364488319,57.44355656748681],[-124.13150494313233,57.44375983318959],[-124.13160569673308,57.443958620234156],[-124.13171900857365,57.44415646415142],[-124.13176536791858,57.44435896430896],[-124.13176977835258,57.444566475731314],[-124.13173876540714,57.44477348434218],[-124.13166432357762,57.44497314840556],[-124.1315646008843,57.4451780602991],[-124.13144804196298,57.44538609717507],[-124.13129671780538,57.44558018423671],[-124.1310946180668,57.44574663785832],[-124.13082375886125,57.445869503536834],[-124.1304921453744,57.44595562262195],[-124.13011984537289,57.44602097860991],[-124.12973328787554,57.44607940288069],[-124.12935895663286,57.44614360654735],[-124.12900880351458,57.44622497309977],[-124.12867246423168,57.44632223402939],[-124.12834807507556,57.446430877554384],[-124.12803377249612,57.446546391869404],[-124.12773147487142,57.44667216838574],[-124.12742720167904,57.44679567344441],[-124.12712495521392,57.446920328030295],[-124.12683882606295,57.447056424839836],[-124.12651053351021,57.4471594017673],[-124.12617609793601,57.447260047753275],[-124.12586786798362,57.44737900767625],[-124.1255595257244,57.447500208018646],[-124.12524109329097,57.44761453585251],[-124.12490478731426,57.44771066670747],[-124.12455258159116,57.44779087126404],[-124.12421035201395,57.44788018789259],[-124.12391620105409,57.44800943628009],[-124.1236482549547,57.44815699925662],[-124.12338853193859,57.44830692168296],[-124.1231104383891,57.44844873222064],[-124.12280821993573,57.44857225650791],[-124.12249179892699,57.44868772808246],[-124.12217948859524,57.44880437893438],[-124.12187923764687,57.44893017198667],[-124.12162147573012,57.449082361891094],[-124.12132324939336,57.44920930400977],[-124.12101685115753,57.44933276477622],[-124.18410018474952,57.45502531446185],[-124.18069062335044,57.489301688739175],[-124.1806537424767,57.48950526854269],[-124.18061263511719,57.48970991138621],[-124.18057569979955,57.489914611868954],[-124.18054710909782,57.490119427610765],[-124.180535208205,57.49032447385072],[-124.18055668759816,57.490529981058536],[-124.18057190836184,57.49073540187652],[-124.18054123072412,57.490940188956436],[-124.18047508549273,57.491144486312685],[-124.18040476690909,57.49134872605141],[-124.18035750449927,57.491551041454294],[-124.18037288551267,57.49175310058859],[-124.18049691800806,57.49195329597705],[-124.18062517817178,57.49215242826722],[-124.1806386890028,57.492349976146784],[-124.18054284970881,57.49256395617059],[-124.18034001854254,57.492745060341065],[-124.18003421232767,57.49285297424643],[-124.17970807689335,57.49294939292887],[-124.17937386250406,57.49304009235089],[-124.17903146189185,57.4931273137112],[-124.17868296151599,57.493211085783145],[-124.17833044785672,57.493291437360796],[-124.17797381355975,57.493370609672795],[-124.17761514506637,57.493448631540026],[-124.17725444239657,57.49352550294566],[-124.17689577096597,57.493603522865946],[-124.17653709806338,57.49368154181543],[-124.17618045637329,57.49376070930196],[-124.17573922569416,57.493862253718724],[-124.17566897438145,57.49389043690503],[-124.1755946038313,57.493917441651114],[-124.17552221206485,57.49394671650427],[-124.17544987397415,57.49397487068811],[-124.17537962223889,57.49400305372298],[-124.17530931660802,57.494032357351365],[-124.17523901086878,57.49406166094305],[-124.17517079148843,57.49409099339133],[-124.17510465847157,57.49412035469943],[-124.1750385253526,57.494149715975105],[-124.17497233832988,57.49418019784863],[-124.17490823767464,57.49421070858723],[-124.17484622339177,57.494241248194],[-124.17478420900926,57.49427178777246],[-124.17472422719652,57.49430347685332],[-124.17466429909472,57.494334045277306],[-124.17460431708382,57.494365734305276],[-124.17454224848939,57.49439739440352],[-124.17448023360804,57.49442793384305],[-124.17441816480874,57.494459593884706],[-124.17435614972628,57.49449013326743],[-124.1742941345442,57.49452067262201],[-124.17422997894671,57.49455230367026],[-124.17416587706843,57.494582814057765],[-124.17410177508728,57.494613324415056],[-124.17403767300323,57.49464383474191],[-124.17397351698457,57.49467546566865],[-124.17390941469283,57.4947059759349],[-124.17384531229823,57.494736486170716],[-124.17378115596321,57.49476811700638],[-124.1737170533609,57.49479862718143],[-124.17365295065574,57.49482913732614],[-124.17358879400436,57.49486076807089],[-124.17352463724622,57.494892398785304],[-124.17346053422854,57.49492290883893],[-124.17339846377212,57.49495456841398],[-124.1733363932123,57.49498622796078],[-124.17327432254913,57.49501788747912],[-124.1732122517826,57.49504954696919],[-124.17315012705613,57.49508232706134],[-124.17309014260276,57.49511401542094],[-124.17303010418921,57.495146824384705],[-124.1729721521973,57.4951796622502],[-124.17291420010531,57.49521250009113],[-124.17285624791323,57.49524533790761],[-124.17280038215162,57.49527820463035],[-124.17274446242456,57.49531219196085],[-124.17269062913174,57.49534620820134],[-124.17263679574259,57.49538022442088],[-124.1725849949213,57.49541539018429],[-124.17253324787946,57.49544943529791],[-124.17248353340976,57.49548462995859],[-124.17243590539158,57.495519853538426],[-124.17238822340543,57.495556197732654],[-124.1723426278756,57.49559257084894],[-124.17229911880798,57.49562897288954],[-124.17225560965706,57.495665374916875],[-124.17221413309113,57.49570292650184],[-124.17217474299878,57.49574050701591],[-124.17213738549862,57.4957792370915],[-124.17210002792237,57.4958179671579],[-124.17206684339352,57.49585675510003],[-124.17203360490632,57.49589666366593],[-124.17200245291545,57.49593660116842],[-124.17197130085914,57.49597653866494],[-124.17194014873736,57.496016476155496],[-124.17191311580096,57.49605759216093],[-124.17188405012651,57.496097558586044],[-124.17185701707179,57.49613867458288],[-124.17182998395857,57.49617979057571],[-124.17180498347064,57.49622205614221],[-124.17178003682574,57.49626320107442],[-124.17175503622741,57.49630546663446],[-124.17173212216197,57.4963477611392],[-124.17170920804553,57.4963900556415],[-124.17168838047118,57.49643237908993],[-124.17166749894821,57.49647582316785],[-124.17164667128044,57.49651814661291],[-124.17162578966273,57.49656159068748],[-124.17160699459976,57.49660506371026],[-124.17158819949381,57.49664853673199],[-124.17156940434487,57.49669200975271],[-124.17155264185656,57.49673663235452],[-124.17153593323545,57.49678013432453],[-124.17151917066899,57.4968247569255],[-124.17150246197086,57.49686825889459],[-124.17148778594556,57.49691291044651],[-124.17147310988578,57.496957561998556],[-124.17145843379153,57.49700221355066],[-124.1714437576628,57.497046865102945],[-124.17143116812865,57.49709154560796],[-124.17141857856492,57.497136226113476],[-124.17140384842664,57.49718199829834],[-124.17139125880084,57.49722667880483],[-124.1713807018725,57.49727250889723],[-124.17136811218951,57.49731718940503],[-124.17135755520815,57.49736301949917],[-124.171344965468,57.4974077000083],[-124.1713344084336,57.497453530104245],[-124.17132385137373,57.497499360201196],[-124.17131329428841,57.4975451902991],[-124.17130279109223,57.49758989976582],[-124.1712922339564,57.49763572986577],[-124.1712816767951,57.49768155996655],[-124.17127111960835,57.49772739006845],[-124.17126264906247,57.49777324912659],[-124.17125214574372,57.49781795859822],[-124.1712436751548,57.49786381765894],[-124.17123311787164,57.497909647765034],[-124.171222560563,57.497955477872225],[-124.17121408990775,57.49800133693638],[-124.17120353255073,57.49804716704576],[-124.17119511577057,57.49809190547985],[-124.17118455836552,57.49813773559134],[-124.17117608762383,57.498183594660524],[-124.17116558408989,57.49822830414136],[-124.17115502661139,57.498274134256],[-124.17114660972389,57.49831887269589],[-124.17113605219733,57.498364702812616],[-124.17112554856631,57.49840941229734],[-124.17111499098922,57.49845524241606],[-124.17110448730843,57.498499951902744],[-124.17109189689435,57.49854463243236],[-124.17108139316169,57.49858934192063],[-124.1710708894043,57.498634051409944],[-124.17105829890633,57.49867873194161],[-124.17104570837878,57.49872341247379],[-124.17103317174583,57.49876697237338],[-124.17102058115952,57.498811652906646],[-124.1710079905436,57.49885633344045],[-124.17099325924451,57.4989021056486],[-124.170978581836,57.4989467572235],[-124.17096390439302,57.49899140879862],[-124.17094917298849,57.499037181007196],[-124.17093444154851,57.49908295321596],[-124.17091976400107,57.499127604791525],[-124.17090503249064,57.49917337700067],[-124.17089030094472,57.499219149210035],[-124.17087556936335,57.499264921419645],[-124.17086083774647,57.49931069362931],[-124.17084824677754,57.49935537416749],[-124.17083351509274,57.49940114637777],[-124.17082087013031,57.49944694755071],[-124.17080822513745,57.49949274872417],[-124.17079766687696,57.49953857886107],[-124.1707850757583,57.499583259402115],[-124.17077451744478,57.499629089540754],[-124.17076604587615,57.49967494864358],[-124.17075762822077,57.49971968711367],[-124.17074915661158,57.49976554621916],[-124.17074282569398,57.499810313655374],[-124.1707385815417,57.49985511005672],[-124.17073433737941,57.49989990645967],[-124.17073217999226,57.49994473182806],[-124.1707300226,57.49998955719807],[-124.17073203878275,57.5000344404975],[-124.17073410890515,57.50007820316424],[-124.1707361790323,57.50012196583273],[-124.17074242275876,57.500165786429996],[-124.1707486664996,57.50020960702868],[-124.17075699705694,57.500253456592205],[-124.17076955517663,57.50029624344864],[-124.17078211332462,57.50033903030548],[-124.17079675831002,57.50038184612547],[-124.17081349013996,57.500424690907955],[-124.17083236275401,57.50046644401743],[-124.17085332222571,57.5005082260875],[-124.17087428174344,57.50055000815587],[-124.17089732812802,57.50059181918347],[-124.17092246138643,57.500633659169395],[-124.17094759470011,57.50067549915201],[-124.17097486882552,57.50071624745636],[-124.17100422983934,57.500757024715924],[-124.17103353698907,57.50079892260563],[-124.17106498496416,57.50083972881362],[-124.1710964330068,57.50088053501561],[-124.17112996795596,57.50092137016904],[-124.17116355690065,57.50096108467991],[-124.1711991788365,57.50100194877554],[-124.17123480084892,57.50104281286305],[-124.17127047685842,57.50108255630679],[-124.17130818587329,57.501123449332546],[-124.17134594888766,57.50116322171331],[-124.17138579883574,57.501203023038144],[-124.17142559495112,57.501243944988076],[-124.17146544506723,57.50128374629162],[-124.17150529526678,57.50132354758458],[-124.17154723241337,57.50136337781769],[-124.17158916964785,57.50140320803891],[-124.17162902010216,57.50144300929852],[-124.17167304438046,57.501482868445436],[-124.1717149818786,57.501522698630815],[-124.17175697337142,57.501561408168],[-124.171800997921,57.50160126727628],[-124.17184293568381,57.50164109742512],[-124.1718869604158,57.501680956507485],[-124.1719288983566,57.50172078663176],[-124.17197292327103,57.501760645688236],[-124.17201486138978,57.5018004757879],[-124.17205894038497,57.501839214181736],[-124.17210087868054,57.50187904425688],[-124.172142817064,57.50191887431999],[-124.17218684243213,57.50195873331199],[-124.17222669409455,57.50199853441051],[-124.17226863274166,57.502038364437745],[-124.17231057147666,57.50207819445312],[-124.17235042339388,57.50211799551838],[-124.17239027539453,57.50215779657295],[-124.17243007359076,57.50219871825399],[-124.17246992575944,57.502238519287346],[-124.172507691097,57.50227829137432],[-124.17255529836955,57.502330535137546],[-124.17263861342565,57.50233505442105],[-124.17272192850152,57.50233957365205],[-124.17280315667881,57.502344063899386],[-124.17288647179402,57.502348583026546],[-124.1729697330568,57.502354222738425],[-124.17305299434433,57.502359862397824],[-124.17313630952387,57.502364381366945],[-124.17321957085834,57.50237002092116],[-124.17330283221752,57.50237566042283],[-124.1733860936014,57.50238129987189],[-124.1734672680887,57.50238691034788],[-124.17355052952165,57.502392549693184],[-124.17363379097927,57.50239818898598],[-124.17371705246157,57.50240382822614],[-124.17380031396861,57.50240946741373],[-124.17388357550035,57.50241510654885],[-124.17396683705677,57.50242074563136],[-124.17405009863792,57.502426384661284],[-124.1741312733195,57.502431994728695],[-124.17421453494966,57.502437633654836],[-124.17429785043771,57.502442151890314],[-124.17438111211484,57.50244779071128],[-124.17446442764495,57.502452308841576],[-124.17454768936902,57.502457947557396],[-124.17463100494119,57.50246246558233],[-124.17471437435408,57.50246586291633],[-124.17479560303654,57.50247035193647],[-124.17487891866534,57.50247486980482],[-124.1749622881276,57.502478266982074],[-124.17504565760476,57.50248166410666],[-124.17512902709682,57.5024850611786],[-124.17521245041004,57.502487337559074],[-124.17529587373326,57.50248961388688],[-124.175377210138,57.5024918612716],[-124.175460633481,57.50249413749511],[-124.17554411063053,57.502495293027216],[-124.1756275877851,57.502496448506356],[-124.17571106494476,57.50249760393268],[-124.17579459589865,57.50249763866735],[-124.17587603992345,57.502497644466686],[-124.17595962466184,57.50249655845789],[-124.17604315561364,57.50249659303501],[-124.17612668656557,57.502496627559296],[-124.17621027129454,57.502495541391646],[-124.17629385601872,57.502494455170876],[-124.17637535380882,57.50249334002278],[-124.17645893852344,57.50249225369743],[-124.17654252323331,57.50249116731917],[-124.17662610793839,57.502490080887775],[-124.17670969263868,57.50248899440348],[-124.17679333109389,57.502486787227],[-124.17687696953935,57.50248457999738],[-124.17695846729116,57.50248346448883],[-124.17704210571975,57.50248125715445],[-124.17712574413862,57.50247904976702],[-124.17720938254777,57.50247684232666],[-124.1772930209472,57.502474634833085],[-124.17737665933694,57.50247242728654],[-124.17745826452811,57.50246907019009],[-124.177541902896,57.502466862538725],[-124.17762559498928,57.502463534194696],[-124.17770923333525,57.50246132643722],[-124.17779292540168,57.50245799798697],[-124.17787661745345,57.50245466948366],[-124.17796025576536,57.50245246156687],[-124.17804186086214,57.502449104109225],[-124.17812555287254,57.50244577544797],[-124.17820924486828,57.502442446733546],[-124.17829293684936,57.502439117965956],[-124.17837668252872,57.50243466850542],[-124.17845828755051,57.502431310790186],[-124.17854197948526,57.50242798186452],[-124.17862572511092,57.50242353224589],[-124.17870941701389,57.50242020321402],[-124.17879310890221,57.50241687412896],[-124.17887476754721,57.50241239551596],[-124.17895845940386,57.50240906632591],[-124.17904220493911,57.5024046164428],[-124.17912595045473,57.50240016650643],[-124.17920964226245,57.502396837157136],[-124.17929130081534,57.50239235828618],[-124.17937504627481,57.50238790819167],[-124.17945873803373,57.502384578684214],[-124.17954248345646,57.502380128483345],[-124.17962414193424,57.502375649406304],[-124.17970788731793,57.50237119910037],[-124.17979163268201,57.50236674874134],[-124.17987329110171,57.50236226951008],[-124.17995698276052,57.502358939686324],[-124.18004072806845,57.50235448916913],[-124.18012447335676,57.50235003859868],[-124.18020613170131,57.50234555916128],[-124.18028987695058,57.502341108485815],[-124.18037362218024,57.502336657757205],[-124.1804552804667,57.50233217816546],[-124.18053902565734,57.50232772733184],[-124.18062068390513,57.50232324763764],[-124.18070442905669,57.50231879669889],[-124.1807882278303,57.5023132250664],[-124.18086993965683,57.50230762457734],[-124.18095368474481,57.5023031734803],[-124.18103539652533,57.50229757288879],[-124.18111924883551,57.50229088040516],[-124.1812030474868,57.50228530850906],[-124.1812847591922,57.50227970776287],[-124.18136855779458,57.50227413576168],[-124.18145032307363,57.502267414272175],[-124.18153412162467,57.50226184216579],[-124.18161588684802,57.50225512057364],[-124.18169973896235,57.50224842772105],[-124.18178150412757,57.50224170602626],[-124.18186535618318,57.50223501306846],[-124.18194712129022,57.50222829127108],[-124.18203097328708,57.50222159820799],[-124.18211273833602,57.502214876307875],[-124.18219450335602,57.502208154357234],[-124.18227835526488,57.50220146113684],[-124.18236012022678,57.50219473908345],[-124.18244397207687,57.502188045757926],[-124.18252573698062,57.50218132360193],[-124.182609588772,57.50217463017109],[-124.18269140720292,57.5021667872712],[-124.18277525893305,57.502160093735036],[-124.18285702371807,57.50215337137378],[-124.18294087538945,57.502146677732334],[-124.18302264011632,57.50213995526836],[-124.18310440481427,57.50213323275373],[-124.1831883099683,57.50212541831364],[-124.1832700746057,57.50211869569644],[-124.18335392612786,57.50211200179245],[-124.18343569070713,57.50210527907261],[-124.18351948860966,57.502099705704985],[-124.1836012531332,57.502092982882424],[-124.1836851045403,57.50208628876799],[-124.1837668690057,57.50207956584288],[-124.183850666803,57.50207399226482],[-124.18393243121264,57.50206726923711],[-124.18401414204719,57.502061666800444],[-124.1840979397688,57.50205609306528],[-124.18417970409621,57.50204936988423],[-124.18426350176644,57.50204379604402],[-124.1843452125017,57.50203819340219],[-124.18442895658912,57.50203374009861],[-124.18451066727837,57.502028137354344],[-124.18459446485326,57.50202256330386],[-124.18467820887703,57.502018109842034],[-124.18475986597184,57.5020136275853],[-124.18484360995652,57.50200917401848],[-124.18492526701262,57.50200469165928],[-124.18500901095825,57.5020002379874],[-124.18509066797566,57.50199575552581],[-124.18517435837033,57.50199242239107],[-124.18525804875033,57.5019890892031],[-124.18533965220739,57.501985727229574],[-124.18542334255817,57.50198239393674],[-124.18550494598621,57.501979031860834],[-124.1855885828081,57.50197681910541],[-124.1856722196202,57.50197460629697],[-124.18575376951476,57.50197236470938],[-124.18583740630747,57.50197015179608],[-124.18592098960059,57.50196905947213],[-124.1860045728889,57.50196796709521],[-124.18608606926462,57.50196684594457],[-124.18616965254334,57.50196575346297],[-124.18625318233715,57.501965781570966],[-124.18633676560873,57.5019646889834],[-124.18641820849243,57.50196468826995],[-124.18650168481138,57.50196583686314],[-124.18658521460566,57.50196586476071],[-124.18666869093221,57.50196701324812],[-124.18675222072919,57.5019670410399],[-124.1868356970634,57.501968189421476],[-124.18691703303361,57.50197042968547],[-124.18700050938024,57.50197157796272],[-124.18708393227632,57.501973846830026],[-124.18716740863547,57.50197499500164],[-124.18725083154902,57.5019772637633],[-124.18733425447255,57.50197953247228],[-124.18741767740602,57.50198180112839],[-124.18750104690614,57.501985190374796],[-124.1875823829519,57.50198743022833],[-124.18766575247908,57.50199081937065],[-124.18774917545707,57.50199308781698],[-124.18783254501152,57.50199647685375],[-124.1879159145808,57.5019998658379],[-124.18799928416496,57.50200325476926],[-124.18808265376397,57.50200664364786],[-124.18816596995413,57.50201115311721],[-124.18824933958534,57.5020145418905],[-124.1883327092314,57.502017930611025],[-124.18841602547595,57.50202243992239],[-124.18849939515421,57.50202582853756],[-124.18858271143584,57.502030337743534],[-124.18866608114625,57.50203372625336],[-124.18874939746496,57.50203823535411],[-124.18883271380346,57.502042744402125],[-124.1889160301617,57.50204725339759],[-124.18899939993892,57.50205064169664],[-124.18908271633427,57.50205515058674],[-124.18916603274936,57.5020596594242],[-124.18924934918418,57.50206416820908],[-124.18933266563882,57.50206867694125],[-124.18941598211319,57.50207318562087],[-124.18949935199187,57.50207657360384],[-124.18958266850332,57.50208108217804],[-124.18966598503454,57.50208559069965],[-124.18974930158552,57.50209009916862],[-124.18983261815627,57.502094607585036],[-124.18991598811905,57.502097995304545],[-124.18999930472687,57.50210250361555],[-124.19008262135443,57.50210701187399],[-124.19016599136671,57.50211039943544],[-124.19024930803135,57.50211490758856],[-124.19033267807579,57.502118295044625],[-124.19041604813508,57.50212168244803],[-124.19049936485412,57.502126190443136],[-124.19058273494558,57.50212957774109],[-124.19066610505189,57.50213296498643],[-124.19074947517306,57.5021363521789],[-124.19083284530909,57.5021397393188],[-124.19091626880282,57.502142005761314],[-124.19099963896612,57.5021453927957],[-124.19108306248219,57.502147659132696],[-124.19116643267274,57.50215104606168],[-124.19124985621119,57.50215331229313],[-124.19133327975955,57.502155578471786],[-124.19141461639559,57.502157815961255],[-124.19149803996368,57.50216008203578],[-124.1915814635417,57.50216234805732],[-124.19166483380887,57.50216573467113],[-124.19174825740924,57.50216800058722],[-124.19183168101955,57.50217026645056],[-124.19191510463985,57.50217253226101],[-124.19199852827003,57.50217479801885],[-124.19208189860167,57.502178184368915],[-124.19216532225423,57.502180450021065],[-124.19224874591673,57.50218271562053],[-124.19233216958915,57.50218498116715],[-124.19241553997284,57.50218836730627],[-124.19249896366763,57.50219063274734],[-124.19258238737237,57.50219289813563],[-124.1926657577957,57.502196284116536],[-124.19274918152274,57.502198549399324],[-124.19283260525977,57.5022008146293],[-124.19291597572274,57.502204200452],[-124.1929993994821,57.502206465576435],[-124.1930828232514,57.50220873064816],[-124.19316624703063,57.502210995666964],[-124.19324961754566,57.5022143812787],[-124.19333304134722,57.50221664619205],[-124.19341646515875,57.50221891105263],[-124.1934998889802,57.50222117586046],[-124.19358325954727,57.50222456126119],[-124.19366668339106,57.50222682596337],[-124.1937501072448,57.50222909061285],[-124.19383353110847,57.5022313552095],[-124.19391695498207,57.50223361975342],[-124.19400032561356,57.502237004890425],[-124.19408374950952,57.502239269328804],[-124.1941671734154,57.50224153371433],[-124.19425059733122,57.5022437980471],[-124.19433193432766,57.50224603373687],[-124.19441535826316,57.50224829796535],[-124.19449878220863,57.50225056214115],[-124.19458220616403,57.50225282626405],[-124.19466563012934,57.50225509033424],[-124.1947490541046,57.50225735435159],[-124.19483253131736,57.50225849766987],[-124.19491595531004,57.50226076158161],[-124.19499937931265,57.50226302544057],[-124.19508280332522,57.50226528924673],[-124.19516628056543,57.50226643235375],[-124.19524970459541,57.50226869605426],[-124.19533318184811,57.50226983905558],[-124.19541660589549,57.502272102650544],[-124.19550008316072,57.50227324554608],[-124.19558350722549,57.502275509035435],[-124.19566698450322,57.502276651825376],[-124.19575040858543,57.50227891520914],[-124.19583388587564,57.502280057893394],[-124.19591736317086,57.502281200524706],[-124.19600084047111,57.5022823431033],[-124.1960843177764,57.502283485628915],[-124.19616779508665,57.50228462810179],[-124.19625127240197,57.502285770521645],[-124.19633474972227,57.50228691288886],[-124.19641822704763,57.50228805520302],[-124.19649961744464,57.50228916890854],[-124.1965830947799,57.502290311118365],[-124.19666662529367,57.50229033262822],[-124.19675010263651,57.502291474732324],[-124.19683363315295,57.502291496136465],[-124.19691711050334,57.50229263813484],[-124.19700064102243,57.502292659433046],[-124.19708417154162,57.5022926806784],[-124.19716770206088,57.50229270187078],[-124.19725123258026,57.50229272301031],[-124.19733476309972,57.50229274409686],[-124.1974182936193,57.502292765130484],[-124.19750182413894,57.50229278611123],[-124.19758326772435,57.5022927785003],[-124.19766685138818,57.50229167872896],[-124.19775038190555,57.50229169955216],[-124.19783396556217,57.50229059967489],[-124.1979174960773,57.50229062039221],[-124.19800107972671,57.50228952040904],[-124.19808466337126,57.50228842037289],[-124.19816824701098,57.502287320283706],[-124.19825183064586,57.50228622014155],[-124.19833332734144,57.502285091419445],[-124.19841691096667,57.502283991172675],[-124.19850054770649,57.50228177022496],[-124.19858413131956,57.50228066987212],[-124.19866771492778,57.50227956946627],[-124.19875135164322,57.502277348359584],[-124.1988349352393,57.502276247847675],[-124.19891648500337,57.50227399811713],[-124.19900012169202,57.5022717768527],[-124.19908375837089,57.50226955553506],[-124.19916739504,57.50226733416439],[-124.19925103169935,57.50226511274064],[-124.19933466834888,57.5022628912639],[-124.19941621805472,57.502260641224396],[-124.19949985468477,57.50225841964272],[-124.19958349130505,57.50225619800814],[-124.19966712791556,57.50225397632042],[-124.19975076451631,57.502251754579746],[-124.19983445418734,57.50224841213759],[-124.19991809076608,57.50224619029069],[-124.19999964040153,57.502243939890334],[-124.2000833300335,57.502240597290246],[-124.20016696658047,57.50223837528551],[-124.20025065618546,57.50223503257919],[-124.2003342927104,57.50223281046829],[-124.20041589535545,57.50222943916193],[-124.20049958491886,57.50222609629769],[-124.2005832214096,57.502223874028786],[-124.20066691094607,57.5022205310584],[-124.20075060046781,57.50221718803475],[-124.20083423692428,57.502214965606704],[-124.20091583948665,57.50221159399094],[-124.20099952896685,57.50220825080928],[-124.20108321843229,57.502204907574594],[-124.20116685484227,57.50220268493558],[-124.20125054428075,57.50219934159459],[-124.20133423370453,57.5021959982006],[-124.20141583618185,57.50219262627538],[-124.20149952557631,57.50218928277643],[-124.20158316192757,57.502187059873314],[-124.20166685129506,57.502183716268135],[-124.2017505406478,57.502180372609935],[-124.20183214305466,57.502177000427025],[-124.20191583237808,57.5021736566638],[-124.20199946867064,57.50217143349665],[-124.20208315796708,57.502168089627226],[-124.2021668472488,57.50216474570477],[-124.2022505365158,57.502161401729126],[-124.20233208583126,57.50215914988608],[-124.2024157750714,57.5021558058056],[-124.20249946429684,57.50215246167192],[-124.2025831005086,57.50215023813449],[-124.20266678970704,57.50214689389465],[-124.20274839196075,57.5021435211448],[-124.2028320281383,57.50214129744947],[-124.20291571729517,57.502137953051594],[-124.20299935345068,57.50213572925016],[-124.20308304258056,57.50213238474613],[-124.20316667871404,57.502130160838526],[-124.20324828088746,57.50212678777928],[-124.20333191699895,57.50212456376684],[-124.20341555310065,57.50212233970136],[-124.20349918919257,57.502120115582855],[-124.20359539981916,57.502116941423594],[-124.2036762603932,57.502129257195215],[-124.20375503408899,57.50214154447637],[-124.20383584180507,57.502154980800206],[-124.20391670253794,57.50216729642477],[-124.20399547639028,57.50217958356265],[-124.20407633722718,57.50219189908951],[-124.20415511118209,57.50220418613237],[-124.20423591917276,57.50221762221168],[-124.20431678016848,57.50222993759154],[-124.20439555427993,57.50224222449105],[-124.2044764153797,57.502254539773226],[-124.204557223591,57.502267975656245],[-124.20463599785897,57.50228026241246],[-124.20471685911754,57.50229257754759],[-124.20479772042853,57.50230489263328],[-124.2048764419192,57.502318299896615],[-124.20495730333658,57.50233061488474],[-124.20503816480635,57.50234292982333],[-124.2051169393851,57.502355216292955],[-124.20519780095893,57.50236753113403],[-124.20527652272042,57.502380938159114],[-124.20535738440067,57.502393252902515],[-124.2054382461333,57.50240556759646],[-124.20551702097117,57.50241785382773],[-124.2055978298974,57.50243128907476],[-124.20567869178883,57.5024436036216],[-124.20575746678321,57.50245588970957],[-124.20583832877868,57.5024682041588],[-124.20591913792552,57.5024816392095],[-124.20599791307644,57.502493925154184],[-124.20607877523071,57.50250623945643],[-124.20615963743737,57.50251855370898],[-124.20623841274254,57.50253083951051],[-124.20631922216391,57.502544274316655],[-124.20639799757394,57.502556560023066],[-124.20647885999105,57.50256887408035],[-124.20655972246054,57.50258118808832],[-124.20663844514483,57.5025945943028],[-124.20671930772073,57.502606908213124],[-124.20680017034901,57.50261922207396],[-124.2068789460698,57.50263150749378],[-124.20695980880215,57.50264382125692],[-124.20704061871864,57.50265725562233],[-124.20711939459596,57.50266954089885],[-124.20720025748707,57.50268185451496],[-124.20727903346696,57.502694139696416],[-124.20735984360324,57.50270757386666],[-124.20744070665316,57.50271988733566],[-124.20751948278956,57.502732172373875],[-124.20760034594352,57.50274448574531],[-124.2076811563004,57.50275791971916],[-124.20775993259332,57.5027702046141],[-124.20784079590604,57.50278251783838],[-124.20792165927118,57.50279483101324],[-124.20800043571832,57.5028071157649],[-124.2080812463497,57.50282054949418],[-124.20816210987363,57.502832862522006],[-124.2082408864773,57.50284514713029],[-124.20832175010523,57.50285746006041],[-124.20840047398305,57.50287086522596],[-124.20848133771739,57.50288317805847],[-124.20856220150412,57.50289549084155],[-124.20864097836686,57.50290777521148],[-124.20872178943863,57.50292120854944],[-124.20880265338413,57.502933521185405],[-124.20888143040338,57.50294580541202],[-124.20896229445293,57.502958117950314],[-124.20904315855486,57.50297043043927],[-124.20912188292104,57.502983835175364],[-124.20920274712935,57.50299614756664],[-124.20928361139006,57.50300845990847],[-124.20936238872005,57.50302074384847],[-124.20944320028687,57.503034176745544],[-124.20952197772175,57.50304646059055],[-124.20960284219288,57.50305877273707],[-124.20968370671638,57.503071084834126],[-124.20976243151688,57.50308448918884],[-124.20984329614679,57.50309680118842],[-124.20992416082909,57.50310911313845],[-124.21000293857466,57.503121396696756],[-124.21008380336097,57.50313370854908],[-124.21016461542287,57.50314714100526],[-124.21024339332496,57.5031594244204],[-124.21032425827003,57.503171736125594],[-124.21040303627468,57.503184019445584],[-124.21048384855635,57.50319745170676],[-124.21056471366022,57.50320976326495],[-124.21064349182134,57.50322204644161],[-124.21072435702925,57.50323435790217],[-124.21080522228951,57.50324666931326],[-124.2108839478491,57.503260073000334],[-124.21096481321578,57.503272384313824],[-124.21104567863482,57.5032846955778],[-124.21112445710665,57.50329697846788],[-124.2112052698834,57.50331041028814],[-124.21128613546121,57.503322721404984],[-124.21136491408954,57.503335004151886],[-124.21144577977137,57.50334731517111],[-124.21152450576527,57.50336071847696],[-124.21160537155349,57.50337302939855],[-124.21168623739409,57.503385340270725],[-124.21176501628148,57.50339762277912],[-124.2118458822261,57.503409933553705],[-124.2119266954979,57.503423364933084],[-124.21200547454175,57.50343564729824],[-124.21208634064516,57.50344795792563],[-124.21216720680094,57.50346026850364],[-124.21224593328311,57.50347367137994],[-124.21232679954527,57.50348598186031],[-124.2124055788482,57.503498263987034],[-124.21248644521437,57.50351057436976],[-124.21256725892644,57.50352400535767],[-124.21264603838587,57.503536287341106],[-124.21272690491081,57.50354859757669],[-124.2128077714881,57.503560907762854],[-124.21288655110173,57.50357318960303],[-124.21296736508828,57.50358662034638],[-124.21304823182432,57.503598930385465],[-124.21312701159445,57.50361121208234],[-124.21320787843452,57.50362352202378],[-124.21328869264161,57.50363695257073],[-124.21336747256821,57.50364923412432],[-124.21344833956704,57.503661543918724],[-124.2135271195962,57.50367382537718],[-124.213607934023,57.503687255729034],[-124.2136888011806,57.50369956537626],[-124.21376758136623,57.503711846691495],[-124.21384844862783,57.503724156241034],[-124.21392931594183,57.50373646574114],[-124.21400804361731,57.50374986756845],[-124.21408891103766,57.50376217697099],[-124.2141717602194,57.503776755911346],[-124.2142630628947,57.50378920658785],[-124.2143586976514,57.5037983517808],[-124.21445641948422,57.503807525176065],[-124.21455408871587,57.50381781915473],[-124.21464544426067,57.503829148911215],[-124.21473038083411,57.503843755770006],[-124.21480258470973,57.503862675601354],[-124.21482512095398,57.503871951774855],[-124.21485996885833,57.50388588016098],[-124.21490028832127,57.5039167031719],[-124.21492150868036,57.503953995730015],[-124.2149342756442,57.50399341654187],[-124.21494490295458,57.504033929746086],[-124.21495547765078,57.50407556360704],[-124.21496610500672,57.50411607681247],[-124.21497250564957,57.50415765414764],[-124.21498094072213,57.50420038040394],[-124.21498525434107,57.5042419294782],[-124.21498951533329,57.504284599210436],[-124.214993723699,57.50432838960043],[-124.2149958450129,57.5043721517289],[-124.2149979663317,57.50441591385898],[-124.21500008765535,57.50445967599075],[-124.2150001219152,57.50450340986105],[-124.21500010353894,57.50454826438969],[-124.21499799808902,57.50459309065701],[-124.21499589263411,57.50463791692609],[-124.21499373453769,57.50468386385369],[-124.21498954199164,57.50472866186303],[-124.21498738388237,57.504774608794136],[-124.21498313868179,57.50482052746377],[-124.21497889347094,57.504866446135125],[-124.21497464824985,57.504912364808206],[-124.21496868438858,57.50495041062003],[-124.22222861901946,57.50569667552179],[-124.22276292685713,57.50570388050508],[-124.23464875274736,57.505199750146296],[-124.23820304548755,57.50277134128228],[-124.23932599596267,57.49980802326926],[-124.24362228904975,57.497209985251814],[-124.25182669625889,57.494968729231786],[-124.2654290788327,57.49373109859831],[-124.28004960108898,57.49507098087021],[-124.28648895660768,57.496356934994395],[-124.2892302031252,57.49705637745799],[-124.29786579060148,57.50041556945511],[-124.30057636819838,57.50367998802205],[-124.29856609981195,57.50902750942174],[-124.29838182482557,57.513142703919044],[-124.30053321511633,57.51697406033768],[-124.30794489041966,57.518666176536016],[-124.30962993125755,57.51873264203019],[-124.31619955603247,57.51945361911208],[-124.32500382241732,57.52029237713099],[-124.33439410793133,57.5230217985976],[-124.34282189502429,57.526770085157594],[-124.35114603245299,57.53063314892255],[-124.35863197798777,57.53381244682536],[-124.36063966736478,57.53455507210331],[-124.36460888480087,57.53828234659238],[-124.36844783149013,57.543891760010716],[-124.37155797240332,57.54819131425279],[-124.37289838011904,57.55047746839854],[-124.37838352038011,57.5532452033308],[-124.38896422125839,57.55540218812428],[-124.40064809022765,57.555625020175846],[-124.40414600573287,57.556779737806956],[-124.40525153061618,57.561126003135065],[-124.4038934196274,57.56636651176807],[-124.4026521662937,57.57081003746923],[-124.40204884699108,57.5748037751803],[-124.4023160178972,57.57839539458228],[-124.40409603696953,57.58059686606645],[-124.40493738145489,57.58163757294442],[-124.40514712743607,57.581725330338806],[-124.40548038289134,57.58186167629],[-124.40581364074208,57.58199802141731],[-124.40614267094242,57.582135436049924],[-124.40646519364178,57.58227837821416],[-124.40671724009101,57.58245523207054],[-124.40695218028196,57.58264085012746],[-124.40716801674748,57.582832965642226],[-124.40736460812255,57.58303494113648],[-124.40765320800989,57.58318868508236],[-124.40799731938266,57.58331618447202],[-124.40834352461665,57.58344370818422],[-124.40868977920165,57.583570110194756],[-124.4090403132456,57.583694320079736],[-124.40939294115448,57.58381855423621],[-124.40974561836572,57.583941666655484],[-124.41010248103309,57.58406482849959],[-124.4104594399615,57.584185747772786],[-124.41081640116556,57.58430666609473],[-124.41105447189065,57.58441830365512],[-124.41111468454831,57.58447958226531],[-124.41116521631685,57.58457214292315],[-124.41117391598576,57.584664200389994],[-124.41115671804458,57.58477500974287],[-124.41128930790026,57.58515675109029],[-124.41159713662452,57.58565161609307],[-124.4117160573281,57.586060105906235],[-124.41179556651312,57.58646027223737],[-124.41189136219943,57.58682138622663],[-124.41211056746032,57.58743405113783],[-124.41240857240186,57.588164286416706],[-124.41292013615669,57.588792798965784],[-124.41420638637585,57.58936445006622],[-124.41503709390541,57.58966934227335],[-124.4159915801723,57.589917401673226],[-124.41698649396443,57.59009977714363],[-124.4183204271397,57.590383764474225],[-124.41916266716864,57.59071456016077],[-124.42029851061454,57.591483956741676],[-124.42078932401347,57.591308161246644],[-124.42167194696603,57.59107200563582],[-124.42244503693091,57.59080201641095],[-124.42309640467512,57.590590002991675],[-124.42389080473619,57.590411091590944],[-124.42489257802615,57.59022791995674],[-124.42570137472417,57.590004314522275],[-124.42669940914973,57.58986033308327],[-124.4277904556983,57.58969390233031],[-124.428716380686,57.58972398214068],[-124.42963315049391,57.58977300998413],[-124.43053630431585,57.58984766128767],[-124.43141924361824,57.58995570758527],[-124.43227541676094,57.590103799761245],[-124.43311528585288,57.590292062413035],[-124.43393708536647,57.59051262529685],[-124.43474318663012,57.590758788601704],[-124.43553177642289,57.59102380290095],[-124.43630317907277,57.59129982273411],[-124.43705344181986,57.59158119477457],[-124.43780143897337,57.591867021201125],[-124.43854693998705,57.59216290619816],[-124.4390136439713,57.59302851541859],[-124.43861020508977,57.5947439383659],[-124.43856960623128,57.595170703132744],[-124.43850956110123,57.59556135416499],[-124.4384255305398,57.59597527078173],[-124.43829914470156,57.5964010220668],[-124.43799874885427,57.59723962671036],[-124.43803049803338,57.59753604622209],[-124.43782674198987,57.598162731589966],[-124.43770169169846,57.59875894901427],[-124.43827501273651,57.598765726427004],[-124.43902506579606,57.59875104029516],[-124.43972924037588,57.598782906154455],[-124.44089344366488,57.598878508831966],[-124.44190776143144,57.59890280834633],[-124.44315355063391,57.59915298200124],[-124.4445745704695,57.599418663131075],[-124.44564366196482,57.599690281927984],[-124.4464255932246,57.59997085127883],[-124.44650996139843,57.60000660593148],[-124.44711914603774,57.600262712539674],[-124.44759882375732,57.60040964249917],[-124.44823024975776,57.600583023141695],[-124.44877818742665,57.60095502619898],[-124.44938857560423,57.60138719293011],[-124.45005242272029,57.60184353286302],[-124.45056381836494,57.60254702847924],[-124.45055861472788,57.60293047964519],[-124.45063576509527,57.60375784217601],[-124.45103156741108,57.604063012294475],[-124.45122157423435,57.60448575747504],[-124.45136973538575,57.6050616415748],[-124.45143294719934,57.60551317823636],[-124.45128209771713,57.60597678471482],[-124.451181775101,57.60633108775355],[-124.45092383089032,57.6067508265372],[-124.45102977820254,57.60697634525066],[-124.45110399479904,57.60710729570601],[-124.45125858448364,57.60732104910346],[-124.45138841390124,57.60757712486373],[-124.45140474248416,57.607946252027645],[-124.45150724272551,57.608153787970366],[-124.45155864331272,57.60838203153621],[-124.45146199916888,57.608748713964076],[-124.4514558421597,57.609155705213034],[-124.45144366171878,57.60945385147412],[-124.45151004125168,57.60982805119351],[-124.45153497314683,57.610191672933865],[-124.45138214525142,57.61049826416793],[-124.45131269909581,57.61071163569221],[-124.45135537675706,57.61089716486848],[-124.451871868592,57.61127439503394],[-124.45236343335536,57.61185206002051],[-124.45267304516398,57.61221901497774],[-124.45273854980731,57.612512464512825],[-124.45284084069301,57.612930818984495],[-124.45283173551798,57.61315386911952],[-124.45288192693965,57.613566007009226],[-124.45302725451825,57.61405887722276],[-124.45322560440137,57.61453554701691],[-124.45342180950662,57.61506489701234],[-124.45350440569176,57.61550432783136],[-124.45340205527917,57.61595953739155],[-124.4533208410456,57.616307340586374],[-124.45315771889554,57.61660932970479],[-124.452926872467,57.61692846850052],[-124.45273380728756,57.61719422228373],[-124.45263986400421,57.61744319380231],[-124.45234128467197,57.61777948144766],[-124.45210195045094,57.61794713149879],[-124.45104237859005,57.618095080646455],[-124.45060572704362,57.618170704347264],[-124.45006601874499,57.61830791665222],[-124.44974390811436,57.61855308998341],[-124.44961774347497,57.61887233014419],[-124.44963581464422,57.619454547602736],[-124.44953186383997,57.61989628094684],[-124.44964130553751,57.62039546553269],[-124.44988608914319,57.620658500428334],[-124.45005243321663,57.6211493808901],[-124.45024939176021,57.6215576365522],[-124.45051871743088,57.62198916816592],[-124.4506080468711,57.62221225236547],[-124.45072195483118,57.622602713305504],[-124.45073789966361,57.62287876485779],[-124.45072291357084,57.623245287585114],[-124.45080183007636,57.623774392643355],[-124.45095757537635,57.62416646546073],[-124.4512097966164,57.62465835177824],[-124.45148951967748,57.62514383142464],[-124.45182830432353,57.62556832493894],[-124.45216175543949,57.625867157970504],[-124.4524217072443,57.626119152401785],[-124.45325613812355,57.62656514208147],[-124.45386467252585,57.6272080953437],[-124.45433518722243,57.62769131457763],[-124.45448633985646,57.62809454442096],[-124.45458345229989,57.628281832738296],[-124.4550738671694,57.62858585717763],[-124.45521982492211,57.62880847930443],[-124.45561896401736,57.62919329808854],[-124.4560307458575,57.629730774626466],[-124.45593401375551,57.62999654003414],[-124.45594283463305,57.63039698541267],[-124.45607955272182,57.63069239044108],[-124.45615042506,57.6311126244038],[-124.45632621364874,57.63137484318216],[-124.45660043395772,57.631638210561135],[-124.45708892255632,57.63219676509786],[-124.45724629593519,57.63234550561897],[-124.45734236696224,57.63271332711124],[-124.45767390663775,57.63316463640465],[-124.45761305490133,57.633424093828694],[-124.45767823357728,57.63362446495647],[-124.45749231258347,57.63386788551171],[-124.45754952464914,57.63405807117142],[-124.45750828574481,57.634401863354746],[-124.45755155794748,57.634677113777954],[-124.45756496114792,57.63496547285003],[-124.45757323744445,57.63507098207169],[-124.45765311557105,57.635373573407826],[-124.4577761668447,57.63559368368714],[-124.4578327896958,57.63579844097418],[-124.45789036682014,57.63603124471153],[-124.45796851552896,57.63637642960365],[-124.45803743390076,57.636588058756715],[-124.45813700387565,57.63671593923107],[-124.45819745863258,57.636878127492636],[-124.4583032394365,57.637368296893804],[-124.45842206620702,57.63758947903531],[-124.45853037583562,57.637811659945235],[-124.45863035396772,57.63803262229327],[-124.45871986022964,57.638253462572926],[-124.45879679981785,57.63847415639903],[-124.4588612181192,57.63869358290971],[-124.45891311490962,57.63891174212241],[-124.45895039531175,57.63912860964697],[-124.45897305907074,57.639344185495055],[-124.4589811515396,57.63955734878879],[-124.45896624810047,57.63976912279907],[-124.45891559772295,57.639983844630024],[-124.45883143133263,57.64019817599273],[-124.4587178922028,57.640413286524094],[-124.45857712018272,57.640628079673334],[-124.45841334993641,57.640841483292924],[-124.45822662672217,57.641052376410826],[-124.45802318887786,57.64126195307087],[-124.45780522221581,57.64146799584513],[-124.45757696179982,57.64166943262528],[-124.45733840754897,57.64186626335541],[-124.4570937490231,57.64205853684441],[-124.45684517238702,57.64224403572018],[-124.45659896222595,57.64242283328146],[-124.45634259531572,57.64259366197895],[-124.4560594499295,57.64275296349004],[-124.45575562775771,57.64290529455046],[-124.45543326930311,57.64304955858744],[-124.45509647286696,57.64318804616716],[-124.4547535265157,57.643323096834266],[-124.45440228963977,57.64345580695035],[-124.45405105030261,57.64358851615057],[-124.4537039983171,57.64372127340948],[-124.45336104217317,57.64385632053439],[-124.45206142832973,57.6449367503798],[-124.45176786416606,57.645093678712215],[-124.45148650083917,57.645259720655595],[-124.45121333167454,57.64543034368629],[-124.45095250085171,57.645606717807304],[-124.45069171345732,57.645781970554886],[-124.45043711700268,57.64595953821146],[-124.4501783280853,57.64613705632132],[-124.44994640531564,57.64632386017505],[-124.44971243108762,57.64650951821568],[-124.44946811690988,57.64669169043669],[-124.44923204298694,57.64687732313735],[-124.44922105925833,57.64704316559978],[-124.4491901637777,57.64723456751306],[-124.44932468377571,57.64773742244339],[-124.4495289483763,57.64791924491247],[-124.44969505920147,57.64806024858257],[-124.44983559995066,57.648416266685516],[-124.44996852757231,57.64865108123551],[-124.45030868219442,57.648944394555414],[-124.45064120956492,57.64916808910507],[-124.45106770473443,57.6494007329567],[-124.45131626154811,57.64957634270037],[-124.45171280346808,57.64977274811228],[-124.45201615034199,57.64999273343257],[-124.45229627863212,57.65037056802609],[-124.45262965477586,57.650574081787376],[-124.45311775475986,57.65083883949743],[-124.45355602127457,57.65114338443432],[-124.45402233816904,57.651531241510334],[-124.45453850495048,57.65187930774274],[-124.45497848725803,57.652142375100766],[-124.4553570235156,57.65242154515081],[-124.45571775062122,57.65272629918645],[-124.45600812920995,57.6528541667214],[-124.45634118157204,57.65306663878875],[-124.45658446013518,57.65321862704296],[-124.4569059115771,57.65335582647834],[-124.45707298728055,57.65347440363353],[-124.45727109027597,57.653551849374125],[-124.45743953801224,57.65363679912238],[-124.45768378351498,57.65376524655697],[-124.4578525983701,57.653841228602865],[-124.45800798263616,57.65383518943171],[-124.45828608255401,57.65390459439574],[-124.45863957502404,57.653975998438234],[-124.45899352191854,57.65408777834128],[-124.45939557852742,57.65415077445459],[-124.4598016947152,57.65411400922563],[-124.46037047794844,57.65430454317324],[-124.46084569817002,57.65447604347783],[-124.4614224191965,57.65483263697537],[-124.4619434802766,57.65506298070865],[-124.46292702994842,57.65536598121829],[-124.46368576459632,57.655474599691885],[-124.46463369125483,57.655519244651224],[-124.4655478242631,57.655621805322404],[-124.46680090094975,57.65605238059444],[-124.46772413159754,57.65650043209487],[-124.46849501699386,57.65682784237783],[-124.4687302680662,57.6570245723291],[-124.46889268239237,57.657259709249814],[-124.46905467719019,57.65766081300041],[-124.46961399940335,57.65808781932967],[-124.47068985673351,57.658029606443186],[-124.4718136691978,57.658081838874985],[-124.47256306069822,57.658216090827786],[-124.47350786218132,57.65849613581866],[-124.47457560456785,57.659055706020375],[-124.4751683501499,57.65933168050848],[-124.47622530945118,57.65969149826893],[-124.47675482051052,57.65992412308382],[-124.47703227579014,57.66011571673536],[-124.4773147836295,57.66018176761932],[-124.47756339843882,57.660256399452884],[-124.47796003043037,57.660404504800574],[-124.47835342144901,57.660633314745766],[-124.4790464609129,57.66091939622234],[-124.47987004685261,57.661296688076895],[-124.4806772417834,57.6616648151348],[-124.48188255688312,57.662145161923064],[-124.48232341642068,57.66244627609018],[-124.48264781501497,57.663141919337974],[-124.48329769525076,57.663669713039525],[-124.4841203060287,57.664073881476554],[-124.48498257321226,57.664325983764634],[-124.48576136737223,57.66456815395486],[-124.4864452961918,57.664665691296015],[-124.4874813720659,57.6647672496737],[-124.48855099108212,57.66486918293252],[-124.48943830581683,57.66491519830771],[-124.49069560997916,57.664938512881285],[-124.49176056523838,57.66494728806886],[-124.4927101495068,57.6648515692413],[-124.49364403029766,57.6647814578533],[-124.49456189752173,57.66474480069485],[-124.49547954019579,57.66471374179139],[-124.49639499621574,57.6646848945637],[-124.49731245793281,57.66465830665148],[-124.49822982941511,57.664633954230155],[-124.50008966044265,57.6655925577748],[-124.50116189128434,57.66552396094877],[-124.50180147044969,57.66547176615464],[-124.50246075571854,57.66539848411048],[-124.50340087601369,57.665329495929875],[-124.50471943285054,57.665182912652135],[-124.50536178987637,57.6650600822689],[-124.50609438092063,57.66498873150743],[-124.50671881154007,57.66489484940468],[-124.50754532393042,57.66483464311325],[-124.5083946741398,57.66467376075229],[-124.50924042004702,57.66455096090904],[-124.5101586419855,57.66455793541689],[-124.51107682016973,57.664566024484294],[-124.51199508687674,57.66457186532541],[-124.51805258890512,57.664699261742406],[-124.51943657542232,57.66507584811544],[-124.51986397137316,57.665354255269605],[-124.52090809997546,57.66659388517133],[-124.521549131547,57.66720212974591],[-124.52179010239999,57.667314720537554],[-124.52207392379829,57.667350411076264],[-124.52265253855921,57.667301920430184],[-124.52335451885543,57.66737031016512],[-124.52409549836631,57.66751426636614],[-124.52490133564099,57.667769962068654],[-124.52541702150165,57.668152506033536],[-124.52595717763259,57.66871474834326],[-124.52625735637484,57.669138624730124],[-124.52661226423285,57.66950367418474],[-124.5273451935682,57.670017592472036],[-124.52774021729134,57.67043018512549],[-124.52843699965861,57.670741838844194],[-124.52917225971733,57.67092719529984],[-124.5299926550123,57.67113480010478],[-124.53071871753767,57.67134135282018],[-124.5315565981625,57.67153119908192],[-124.53226803496258,57.671682631130984],[-124.53324696345938,57.672075886827066],[-124.53450761414508,57.672019198421445],[-124.53553949444199,57.672020524470106],[-124.53636006280283,57.67217089865787],[-124.5372781448383,57.672240481207325],[-124.53827322112285,57.67227165767394],[-124.53917918619591,57.6722749292034],[-124.5402247116972,57.67230328338504],[-124.54133585705551,57.67226170269077],[-124.59097560177018,57.68301652905516],[-124.5937603226292,57.6836191746061],[-124.59386036338917,57.683637058185845],[-124.59499270259117,57.68370963350681],[-124.5961380278955,57.68371505172552],[-124.59693287013424,57.68372347558313],[-124.59793114215425,57.68373404865734],[-124.5991142818093,57.68379479089507],[-124.59989239014294,57.68380189852793],[-124.59999745833035,57.68379740226665],[-124.60033363489161,57.68378413464839],[-124.60070189132882,57.683754383919904],[-124.60112274327736,57.68372070211415],[-124.60148088535392,57.683680749649454],[-124.60197382788733,57.6836265195782],[-124.60242424520128,57.68358753871245],[-124.60278489582424,57.68353639507724],[-124.60319357414433,57.68349136414888],[-124.60367623262401,57.68343141225326],[-124.60395426221686,57.68340182256076],[-124.60446632039609,57.68334105633595],[-124.60485591321014,57.68330142626973],[-124.6053063236849,57.6832624356145],[-124.60575652668443,57.68322904832385],[-124.60644149839447,57.683144302446934],[-124.60662876694364,57.68312945182832],[-124.60690741113622,57.683083041258435],[-124.60731896082606,57.683016721078694],[-124.6077185035489,57.682934573618404],[-124.60813107516579,57.68289741843341],[-124.60854570191458,57.6828614049804],[-124.60896024544601,57.68282763218965],[-124.60937470583399,57.68279610006175],[-124.60978908315234,57.682766808597094],[-124.61020551581473,57.682738658826835],[-124.6106219066928,57.68271162872773],[-124.61103825582366,57.68268571830024],[-124.6114546043843,57.68265980656459],[-124.61187095237473,57.682633893520645],[-124.61228734091017,57.68260685818815],[-124.6127037288506,57.68257982154726],[-124.61312019837705,57.68255054163684],[-124.61638402882133,57.68256674155282],[-124.61661628040751,57.68258374636543],[-124.61697448467157,57.68259870205735],[-124.61734107785851,57.682613744369256],[-124.61760684378199,57.68263221877622],[-124.61799481862879,57.68263626838546],[-124.61840870584467,57.68267759371842],[-124.61898444405415,57.682710513085645],[-124.61958917553139,57.6827538248596],[-124.62021677287954,57.68280297915789],[-124.62109957357534,57.68287273064474],[-124.62192621762202,57.68298674817571],[-124.62373400244752,57.683178245509126],[-124.62462933900865,57.68330753824631],[-124.62570901245516,57.68350265829011],[-124.6263611216341,57.68339728339856],[-124.62715577839758,57.683352817799964],[-124.62775315709995,57.68336798071179],[-124.62843419676707,57.68333242272924],[-124.6291976759751,57.68327977215461],[-124.62976363686782,57.68329347936704],[-124.63037746868476,57.68331777193473],[-124.6310074705331,57.68335904990796],[-124.6316222772513,57.68335643302161],[-124.63213903165857,57.68339653533485],[-124.6325914217517,57.6834180285262],[-124.63313838081208,57.68349320238621],[-124.63381662466263,57.683534964874156],[-124.63450708263183,57.68364525555132],[-124.6349908082889,57.6837287409116],[-124.63568304706685,57.683848015005154],[-124.63616472107603,57.68393035349832],[-124.63685817890948,57.684015991796464],[-124.63717929781292,57.68407088147878],[-124.63774244803447,57.684163023878774],[-124.63814032074467,57.684242250243784],[-124.63848596469437,57.68437364447725],[-124.63882515788889,57.684509457116626],[-124.63915802134179,57.684646325241026],[-124.6394844340766,57.68478761187148],[-124.63980451704313,57.68492995408362],[-124.64011609230039,57.6850755723706],[-124.64041915983115,57.68522446679359],[-124.64071375988975,57.685375516420486],[-124.64099335881218,57.68553538269489],[-124.64125799686404,57.68570294472313],[-124.64151190897053,57.68587712463459],[-124.641750900387,57.686057879473346],[-124.64198130338976,57.686244152850925],[-124.64220315818586,57.686434823821784],[-124.64241856212037,57.68662991393111],[-124.64262545798181,57.68682828072218],[-124.64282808074402,57.68702884622917],[-124.643028527805,57.68723163196361],[-124.6432247419268,57.687435495454366],[-124.64342305561657,57.68763938017823],[-124.64361927397877,57.687843243163705],[-124.64381976978191,57.68804490686227],[-124.64402240539097,57.688245470774746],[-124.64422931849603,57.68844383536565],[-124.64444268697596,57.688637780088634],[-124.64466243052975,57.68882954690353],[-124.64489274427793,57.68901917869954],[-124.64512939310848,57.689207753503624],[-124.6453681418501,57.68939634937214],[-124.64560899053454,57.689584966294035],[-124.64585197932219,57.689772483259205],[-124.646090695108,57.68996219892549],[-124.64632521809916,57.69015187131948],[-124.64655341051844,57.690342600027876],[-124.64677317467334,57.69053436365288],[-124.64698233263499,57.690729382808364],[-124.64717886683633,57.6909253941219],[-124.6473605591921,57.69112573922889],[-124.64752539202966,57.691328154772876],[-124.64767122735734,57.69153374040158],[-124.64779592714555,57.691743595765764],[-124.64790162885039,57.6919566213397],[-124.64798833217745,57.69217281717083],[-124.64806023226204,57.692392226120155],[-124.64811946666119,57.69261374862176],[-124.6481659950991,57.692838505695995],[-124.64820199524311,57.693064276762215],[-124.6482337602162,57.6932911260539],[-124.6482591921627,57.693519032167195],[-124.64828042882597,57.693746895510564],[-124.64830162568465,57.69397587990361],[-124.64832496068017,57.69420376474632],[-124.64835249162255,57.69443169244698],[-124.64838425864637,57.69465854199886],[-124.64842445754114,57.694884356208384],[-124.64847526643794,57.6951069144621],[-124.6485366054012,57.69532845875571],[-124.6486127505066,57.6955467898677],[-124.64870575984764,57.695763050176815],[-124.64881567374557,57.695976118640395],[-124.64894447025766,57.69618937962962],[-124.64909210966573,57.69640395409585],[-124.64925657442089,57.69661757857172],[-124.64944000279195,57.6968291533762],[-124.64963827915899,57.69703639364299],[-124.64985567971236,57.69723710005295],[-124.6500880086434,57.697431229750705],[-124.65033534606869,57.697616540638],[-124.65059983005273,57.69779193298841],[-124.65087948256075,57.697954022302405],[-124.65117430349272,57.69810280847762],[-124.65150123696289,57.6982339782238],[-124.65186661696397,57.69834647433934],[-124.65226612734025,57.69844361684016],[-124.65269121587833,57.6985298041018],[-124.65313131220428,57.6986071712426],[-124.653580002162,57.69867901717097],[-124.65402663564441,57.69874971925786],[-124.65446689679177,57.69882259793675],[-124.65488811739702,57.698899767476746],[-124.65528594187408,57.69898566951147],[-124.655651858416,57.69908358212466],[-124.65597319883892,57.69919561989358],[-124.65624770567605,57.699326245912566],[-124.65646263084646,57.69947981686008],[-124.65662652580347,57.6996519340895],[-124.65675847241064,57.69983718419793],[-124.65684465919605,57.700010756108824],[-124.65685641200082,57.70003442500361],[-124.65692877658664,57.70024262065844],[-124.65697568523916,57.7004584081715],[-124.65700129411012,57.70068295112682],[-124.6570056824574,57.7009140075152],[-124.65699518433608,57.70115052013794],[-124.656969879085,57.70139024696724],[-124.6569361009401,57.70163213079368],[-124.65689384973311,57.701876171612525],[-124.65684534300428,57.702119027644585],[-124.65716257826347,57.702524832628086],[-124.65733542881085,57.70274077542379],[-124.65754930331748,57.702924612538226],[-124.65796363420489,57.703079080188104],[-124.65829711839271,57.70326412759171],[-124.65859033975171,57.70345998072102],[-124.6587029379148,57.7037179257202],[-124.65893380159586,57.70395576078556],[-124.65908659083888,57.704205140972064],[-124.65922958912657,57.704553106933375],[-124.65924461798637,57.704958091845704],[-124.65936792369025,57.705447157669965],[-124.65949791690352,57.705688457048794],[-124.65964152063997,57.70601960776341],[-124.65964699863902,57.70622039770389],[-124.65956828912361,57.70619044450922],[-124.65957828167792,57.70638230878133],[-124.6594876330279,57.706511476727925],[-124.65931636569829,57.7066645002538],[-124.65915123355127,57.70682207136969],[-124.65900486757208,57.706983196507366],[-124.65887303110992,57.70714895427184],[-124.65874748915222,57.707314775657395],[-124.65862400488737,57.70748173921525],[-124.65850257833144,57.70764984495205],[-124.65838119047217,57.70781682958325],[-124.65825350577009,57.70798375038096],[-124.65811960371119,57.70814836528364],[-124.65797738563047,57.7083106530173],[-124.65782059538962,57.708469428762385],[-124.65764717402216,57.70862355018428],[-124.65744266978399,57.70876614224529],[-124.65716626429246,57.70886426982014],[-124.65684124213243,57.70891256133094],[-124.65651249984947,57.70894735722725],[-124.65618957478567,57.70899566842089],[-124.65588260119505,57.7090676905914],[-124.6555696493643,57.709130680003206],[-124.65524042556576,57.70917892501567],[-124.65498080062379,57.70927721844995],[-124.65490936124593,57.7094559216121],[-124.65490084171113,57.70963638488919],[-124.65489655935683,57.70981576978044],[-124.65488170369738,57.70999729023251],[-124.65484453499118,57.710097841425856],[-124.65452722457206,57.71028301993942],[-124.65426699168171,57.71039812742515],[-124.65401918994294,57.71051784640628],[-124.65382087815905,57.71066273913467],[-124.65366817836441,57.710823795012246],[-124.65348443512931,57.71097219960595],[-124.65321196116,57.71107708793275],[-124.65290896281637,57.71115475113589],[-124.6526100009591,57.71123694042398],[-124.65231103780218,57.71131912904421],[-124.65202434625627,57.71141041327476],[-124.65176619677099,57.711525537323276],[-124.65154510423065,57.71166122371826],[-124.65131989248717,57.71179462499582],[-124.65106791465412,57.711913174876635],[-124.6508016036146,57.712021485504906],[-124.6505209194479,57.71212067781468],[-124.6502260223346,57.71220626761738],[-124.64991699256021,57.71227601276735],[-124.64960194545246,57.712337845875595],[-124.64928483853474,57.712398535823226],[-124.64896785077974,57.71245586194493],[-124.6486488433668,57.712510923862624],[-124.64832971478698,57.71256934808604],[-124.64801474281681,57.71262893539183],[-124.64770974281014,57.71270320234172],[-124.6474331228569,57.71280579408164],[-124.64728339550132,57.71288276616255],[-124.64693118650491,57.71304402128166],[-124.64666275678043,57.71315230228225],[-124.64637591728558,57.71324693752643],[-124.64610344735165,57.71335069044446],[-124.64587824649942,57.71348296166807],[-124.64571516762832,57.71363941749346],[-124.64561243357865,57.71381106851853],[-124.64545770768717,57.71396873090054],[-124.64520157948924,57.71408498492247],[-124.6448985004063,57.714163751060966],[-124.64458342936258,57.71422557235237],[-124.64427029541503,57.71429189846637],[-124.64394755033267,57.71433345393302],[-124.64360946100742,57.714334479897836],[-124.64327367175329,57.71432992136812],[-124.64293957910448,57.71433659371794],[-124.64260879868992,57.714367970742245],[-124.64228572904894,57.71441849035559],[-124.64196867347856,57.714476920872755],[-124.64165759152849,57.71454438336178],[-124.64135660032957,57.714623162948754],[-124.64107591236868,57.714721214480186],[-124.6408156885924,57.71483405399577],[-124.64056979322334,57.71495713293644],[-124.64029115939502,57.71505632539128],[-124.6399820476724,57.715127168591344],[-124.6396891618976,57.71521387775948],[-124.63942477296361,57.71532555048621],[-124.63918302750423,57.71544979103249],[-124.63897841671248,57.715592355532706],[-124.63880908388994,57.715746496464455],[-124.63862933533454,57.71589828735158],[-124.63847449103129,57.71605818394675],[-124.63835298772143,57.71622515157692],[-124.63823769971029,57.716394425872394],[-124.63811619427409,57.71656139333963],[-124.6379946473746,57.71672948174722],[-124.63787104071477,57.716896427472925],[-124.63773701834637,57.717061023186325],[-124.6375801068186,57.71721977631576],[-124.63738585467178,57.71736580956315],[-124.63716879375308,57.717503757948414],[-124.63697042117178,57.71764750540811],[-124.6368030892273,57.717803907721006],[-124.63657577061397,57.717935021090014],[-124.6363031995582,57.718039875355124],[-124.63602449136553,57.718140180161335],[-124.63574170477587,57.718237078101104],[-124.63545282161695,57.7183283054847],[-124.63515990065484,57.7184150049122],[-124.6348995933124,57.71852895424049],[-124.63460666952689,57.7186156524622],[-124.63430155438515,57.71869101001045],[-124.63400858746203,57.71877882795029],[-124.63373196691487,57.718879149641715],[-124.6334552638453,57.718981712817516],[-124.63318061793123,57.71908541809892],[-124.6329080291647,57.71919026549884],[-124.63263543888615,57.71929511234885],[-124.63245090198917,57.71934591640373],[-124.63208819514634,57.71950366170906],[-124.63181358226672,57.719606243184174],[-124.63152871527713,57.719701989578446],[-124.6312276619095,57.71978074655532],[-124.63092862531553,57.7198617665893],[-124.6306315648426,57.71994617072079],[-124.63033458428477,57.72002833214134],[-124.63003340394121,57.72011044950929],[-124.62974453333084,57.72020054359146],[-124.62948423801737,57.72031336145544],[-124.62925683827838,57.720445583616645],[-124.62903561278735,57.72058123362179],[-124.62884546825792,57.720728419278224],[-124.62868850416886,57.72088716244286],[-124.62854191322894,57.7210493771288],[-124.62839951964621,57.721211635123666],[-124.62826544074014,57.72137622194461],[-124.62813136066656,57.72154080865606],[-124.62795779899507,57.72169377212694],[-124.62775525211595,57.721835220861905],[-124.62765657224324,57.7220080238141],[-124.62752260939716,57.722169246927564],[-124.6272827582825,57.722296851408245],[-124.62705949693976,57.72243023456223],[-124.6268568612999,57.72257392408101],[-124.62666044082503,57.722719920616946],[-124.62642894015566,57.72284873164994],[-124.62612377454562,57.72292407068282],[-124.62582087015592,57.72299494667086],[-124.62560991065692,57.723136305251145],[-124.62543834933894,57.72329152948258],[-124.62527098547183,57.723446797059964],[-124.62511189564526,57.723605514634244],[-124.62495906204069,57.72376541840242],[-124.62482285963958,57.723929980370215],[-124.6246742224311,57.72408992741911],[-124.62446951015295,57.72423247070866],[-124.62421942388718,57.72435211377302],[-124.62393857842098,57.72445125096032],[-124.6236476014457,57.72454018931187],[-124.62335452360661,57.72462910522972],[-124.62307573247278,57.72472938344754],[-124.62285869959113,57.72486394629083],[-124.62268102485211,57.7250134966355],[-124.62239395359813,57.7251103231154],[-124.62208674390466,57.725183389144],[-124.62176964858757,57.72523952989042],[-124.62146037799548,57.72531145161982],[-124.62117346494485,57.72540379136822],[-124.62090693231106,57.72551316435738],[-124.62063628086742,57.72562025107255],[-124.62034125171068,57.72570465445932],[-124.62002003218302,57.72575850529012],[-124.61971902942659,57.72583387350309],[-124.61961227260697,57.72599649442932],[-124.61967458653456,57.726130596489746],[-124.61967895437137,57.72635605459515],[-124.61969129974614,57.72653561610643],[-124.6196973464134,57.72671511206602],[-124.61968865486647,57.72689557606173],[-124.61965694921527,57.727073557555094],[-124.61958749072855,57.72725002452255],[-124.61946376836339,57.72741695477479],[-124.61930673709625,57.72757568785645],[-124.61914138777396,57.7277320912368],[-124.61896566161734,57.72788502198037],[-124.61876506564434,57.72802872176069],[-124.61854375811518,57.72816435525039],[-124.61833076580832,57.72830231798098],[-124.61814049975833,57.72845061041197],[-124.61797720049822,57.72860815539011],[-124.61784099124755,57.72877158992395],[-124.61772141464462,57.728939683608395],[-124.61761019493007,57.729108985819785],[-124.61751354943192,57.729281804330085],[-124.61746717423236,57.729458511410755],[-124.61757235107342,57.72962670569457],[-124.6177878244132,57.72976577041325],[-124.61796072967118,57.72992009150455],[-124.61814215849688,57.73007113683554],[-124.61835767745407,57.730209079654685],[-124.6185839019336,57.73034152636611],[-124.61877809807781,57.73048821802313],[-124.61897871811347,57.730631611930846],[-124.6191985249119,57.73076735513405],[-124.61942903727301,57.730897602143536],[-124.61966811441037,57.73102345207503],[-124.61992650124742,57.73113828795701],[-124.62021078384646,57.73123432798489],[-124.62043702095721,57.73136677166637],[-124.62060570368409,57.7315221668855],[-124.62076590642549,57.73167971660998],[-124.62094731399796,57.73183187939637],[-124.62116499404154,57.731968718692976],[-124.62140836534897,57.73209236721996],[-124.62166676478213,57.73220719982986],[-124.62192306586454,57.73232201012342],[-124.62216211944154,57.73244897676921],[-124.62236914427604,57.73259018921063],[-124.62256122585825,57.73273797486581],[-124.62274482741178,57.73288791508945],[-124.62293481201509,57.7330356784337],[-124.6231375613155,57.73317908821295],[-124.62336806112123,57.73331044971777],[-124.62364158305866,57.733414220848374],[-124.62393894122394,57.7334980524598],[-124.62422979664902,57.73358742323903],[-124.62450114134174,57.73369341291352],[-124.62476170192616,57.733807140416566],[-124.62500723764701,57.73392968329995],[-124.62523140768386,57.734062097371044],[-124.62542350794082,57.73420987909128],[-124.6255709788307,57.734371776960174],[-124.62572487344197,57.73453037686565],[-124.6258999329663,57.734684710082234],[-124.62608141639915,57.73483574524772],[-124.62627994639885,57.73498022799443],[-124.62644871003415,57.73513449528403],[-124.62652215605551,57.73531020437129],[-124.6265639790187,57.73548895029497],[-124.62659740193882,57.735667609230276],[-124.62660768311089,57.735847149966624],[-124.62661376412134,57.73602664723084],[-124.62669149441557,57.73620015779422],[-124.62684321954389,57.73636097701885],[-124.62702895584783,57.73651093358604],[-124.62724030291355,57.736649940382684],[-124.6274069370276,57.73680530600498],[-124.62748463184202,57.736979937278356],[-124.62755174496677,57.737156701941444],[-124.62762099964215,57.73733236729224],[-124.62767127161098,57.73751007911519],[-124.62772578521508,57.737686713372966],[-124.62774661417737,57.737865241997056],[-124.62787290330526,57.738032525769356],[-124.62806507478567,57.73817918318813],[-124.62829138100606,57.73831161436163],[-124.62846020842849,57.73846475854549],[-124.6284767593455,57.738645485837154],[-124.628472348254,57.738824874894526],[-124.62853736898016,57.73900161765396],[-124.62861717384104,57.73917627035783],[-124.6287777931809,57.7393820382955],[-124.62848440881152,57.73947657206736],[-124.62811319744436,57.739399837038775],[-124.62805021961435,57.73957189154599],[-124.62778576151861,57.739911203119625],[-124.62764955394947,57.74007464952188],[-124.62752372484542,57.740241567637455],[-124.6274125157864,57.74041087992768],[-124.62732634739997,57.74058493722688],[-124.62726114141587,57.740760332960896],[-124.62718753321509,57.74093564172356],[-124.6270930016853,57.74110849094238],[-124.6269901490886,57.74127901104481],[-124.62689351536537,57.7414518384337],[-124.62680738296268,57.74162477452372],[-124.62673377097238,57.74180008318218],[-124.62666015829899,57.7419753918297],[-124.62656772222496,57.74214826259983],[-124.62645440279046,57.742317552648956],[-124.6262952792402,57.742475153500806],[-124.62598675344988,57.742580740229606],[-124.62578066103973,57.74270084535247],[-124.62547125514976,57.742772777657365],[-124.62516798641057,57.74284925876618],[-124.62487279203238,57.742934794698286],[-124.6245756590659,57.743015823999606],[-124.62424267510646,57.74304265007844],[-124.62391344251635,57.74308185045165],[-124.62358824690442,57.74312557780464],[-124.62326305053976,57.74316930436215],[-124.62293970875855,57.74321977822816],[-124.62261455170733,57.7432623821507],[-124.6222912491477,57.74331173339157],[-124.62196790484931,57.74336220489572],[-124.62164468239835,57.74340931246743],[-124.62132137731456,57.74345866135142],[-124.62100408655277,57.74351592231221],[-124.6206907093949,57.74358107354909],[-124.62038330527335,57.74365525799022],[-124.62007594089528,57.74372832067547],[-124.61975860502122,57.743786699720864],[-124.61943541715388,57.743832680879926],[-124.61910815031499,57.74387525436725],[-124.61878294231306,57.74391896997294],[-124.61845962913026,57.743968311906286],[-124.61814228874293,57.74402668709843],[-124.61782688387636,57.744089567619184],[-124.61751357853598,57.744152469289354],[-124.6171961120302,57.74421420537379],[-124.61687679018144,57.7442691925065],[-124.61655557209696,57.74431855172138],[-124.61622821567332,57.744363360220106],[-124.61590106384959,57.74440256267199],[-124.61557201618132,57.744436137151716],[-124.61523909550334,57.74446069856887],[-124.61490242536135,57.74447288374986],[-124.6145682256293,57.74447500058836],[-124.61423204864218,57.74447373149415],[-124.61389587167767,57.74447246154789],[-124.61355977702543,57.74446894865461],[-124.6132236412809,57.7444665559572],[-124.61288738208464,57.744467525549894],[-124.61255120522063,57.74446625219582],[-124.61221754081612,57.74445378949845],[-124.61189355600843,57.74440666144566],[-124.61158950734547,57.74433170434131],[-124.6112633825756,57.74428567381218],[-124.6109393179552,57.744240785529556],[-124.61061311229841,57.74419699549864],[-124.61028690739782,57.74415320466733],[-124.60996066200218,57.744110534081685],[-124.60963441734351,57.744067862695445],[-124.60930825596279,57.74402294841727],[-124.60898423719904,57.74397693432406],[-124.60866244365182,57.743927578341136],[-124.6083408161415,57.74387373739898],[-124.60801918954789,57.74381989567984],[-124.607699581784,57.74376831732446],[-124.60737564981835,57.743720057223776],[-124.60704722823338,57.74367959952382],[-124.60671633468776,57.743649208346085],[-124.60638280349549,57.7436333678486],[-124.6060465929077,57.74363319905487],[-124.60571194496524,57.74364762506557],[-124.60537898344214,57.74367328276083],[-124.60502897944433,57.743648293803005],[-124.60473047332708,57.74376515211233],[-124.60441702463197,57.743831385960306],[-124.60411168708244,57.743905554811256],[-124.60395890195632,57.744002636938],[-124.60351916748756,57.74407426826764],[-124.60325657027468,57.74418589407641],[-124.60303099418888,57.744319217469204],[-124.60284264654753,57.74446863342235],[-124.60265017916721,57.744615762779425],[-124.60240207243685,57.744733147093754],[-124.60206712295708,57.74475541123477],[-124.6017310683885,57.74475074732557],[-124.60141567167668,57.744812467822534],[-124.6011163730411,57.744893422565966],[-124.6008090443882,57.744964198603384],[-124.60056895834188,57.7450917575673],[-124.6003372731758,57.745219404783455],[-124.59999352339595,57.7453088598518],[-124.59973471162094,57.74537453817984],[-124.59942931084262,57.745449817407966],[-124.5991218497799,57.74552395270769],[-124.59881447067775,57.745595845211575],[-124.59850498975648,57.74566771481184],[-124.59819554925983,57.74573846265085],[-124.59788614921561,57.7458080887289],[-124.59757271319323,57.74587318549096],[-124.59724742145791,57.745917969425264],[-124.59692801454577,57.74597402966851],[-124.59661054075609,57.74603459554815],[-124.59629718397423,57.7460974472227],[-124.59598370114506,57.74616366129255],[-124.59567429354227,57.746233282240446],[-124.59536690210844,57.74630516680552],[-124.59505946780892,57.746378171707015],[-124.59475199061615,57.746452296945094],[-124.59445266471084,57.74653323678239],[-124.59417371867971,57.74663121426211],[-124.59379971094002,57.74679883702753],[-124.59999871000687,57.74981840667995],[-124.6785101433718,57.7879927934391],[-124.67817021691965,57.78802754109613],[-124.67799484205884,57.7881693479122],[-124.67787927640681,57.78834539526815],[-124.67778906449105,57.788518330514286],[-124.67772186787167,57.78869485945192],[-124.67766514683213,57.788872614222825],[-124.67761894080525,57.78905047372478],[-124.67757904370072,57.789228396078414],[-124.67753700379762,57.78940741862188],[-124.67747611383315,57.789584010428975],[-124.67737335681373,57.789754577689074],[-124.67722670766909,57.789916857117205],[-124.67706338916344,57.79007448431389],[-124.67691260971748,57.790234479304985],[-124.67684961231173,57.790411050013994],[-124.67683284528327,57.79058920290814],[-124.6769362359523,57.79076070252896],[-124.6770079221101,57.79093637225775],[-124.67707119603932,57.79111195816508],[-124.67714708996036,57.791287669787025],[-124.67724417424098,57.791459106430224],[-124.67731165665258,57.79163473421553],[-124.67736854477556,57.79181249949215],[-124.67743178255296,57.791989206499814],[-124.67748660779073,57.792165829721135],[-124.67757944999315,57.79233834549484],[-124.67767864224362,57.79250980294495],[-124.67777358948226,57.792682339585774],[-124.67784738651082,57.792858030139406],[-124.677929754694,57.793029319960006],[-124.67806069687505,57.793195485732994],[-124.67819798953703,57.79336059309042],[-124.67835440999954,57.79352028312647],[-124.67853217960987,57.793671213336765],[-124.6787375301027,57.793815688656565],[-124.67895565949388,57.79395580473434],[-124.67917382975448,57.794094799351186],[-124.67938350953861,57.794235952206506],[-124.67956989645853,57.79438135918967],[-124.67966517093699,57.79454492581691],[-124.67964183043217,57.79473086492156],[-124.67968821701591,57.794908525187374],[-124.67975147084587,57.79508523163466],[-124.67980837566601,57.79526299647614],[-124.67986532025257,57.79543964020077],[-124.67991591571345,57.79561734233085],[-124.6799517480163,57.795796019242815],[-124.67994967849036,57.79597544096362],[-124.67996864401188,57.796155071794765],[-124.68004245805402,57.79633076173559],[-124.68008253791166,57.79650835942703],[-124.68008046896861,57.7966877812771],[-124.68007415368734,57.79686828247281],[-124.68008470602402,57.797047829822795],[-124.68010145148558,57.79723080329862],[-124.68015843963789,57.79740632611768],[-124.68032361326436,57.797557129085284],[-124.68055236656639,57.79769510531943],[-124.6806771041016,57.79785896433556],[-124.68074032830272,57.79803679195806],[-124.68081414961982,57.7982124817994],[-124.6808289523226,57.79839094999183],[-124.68082474397913,57.79857147242358],[-124.68082053559537,57.798751994887695],[-124.68076178878778,57.79892748960913],[-124.68061083279736,57.79909197472137],[-124.68048928779402,57.79925787341326],[-124.68048317011876,57.79943276944802],[-124.68054421391466,57.79961281880071],[-124.6806222056094,57.799789671951004],[-124.68078098845511,57.80000321614654],[-124.68082750450571,57.800177513559234],[-124.6808548912854,57.8003572285923],[-124.68088862878582,57.800535885201775],[-124.68092026284432,57.80071452094176],[-124.6810305076751,57.800932069016724],[-124.68121464706705,57.80102249748571],[-124.68146937547395,57.80114054291934],[-124.68174136679927,57.80124642247674],[-124.68202423118979,57.80134231568489],[-124.68232221527137,57.801427143081185],[-124.68264237422925,57.80147966565971],[-124.68297134075432,57.80152105959459],[-124.68328701984692,57.80158138682542],[-124.68358068364527,57.801669533104004],[-124.68386129558951,57.80176988611845],[-124.68413333727541,57.801874639712445],[-124.68440319843377,57.80198161418791],[-124.68467738608544,57.802085266394805],[-124.6849580431253,57.80218449600131],[-124.68524084457063,57.80228262471592],[-124.68552368655654,57.802379631704746],[-124.68580434801243,57.80247885955235],[-124.68608501094482,57.802578086816915],[-124.68636138951634,57.802679514153],[-124.68663336663053,57.80278650499042],[-124.6868967736261,57.80289789662752],[-124.68715803926297,57.803010388095274],[-124.68742144937109,57.80312177871698],[-124.68769343268033,57.803228767431314],[-124.68797414515839,57.803326869643904],[-124.68827437917636,57.80340834123168],[-124.68859896596764,57.80345528543387],[-124.68893037193084,57.803487716380786],[-124.68925947974398,57.80352573141973],[-124.68957058831123,57.80359721367522],[-124.68966994256243,57.80376642181843],[-124.68964508626786,57.80387608561584],[-124.68964906341053,57.80412510240879],[-124.6896849498968,57.80430377820924],[-124.68973770748111,57.80448149892098],[-124.68979892045265,57.80465818151516],[-124.68991725342612,57.804826455283504],[-124.69000172867753,57.80500000268358],[-124.69006083971172,57.80517666449961],[-124.69012415935008,57.805353367814675],[-124.6902128837366,57.805525835527675],[-124.69031427213248,57.80569730653748],[-124.690400855215,57.80587087457884],[-124.69044516318033,57.806049633456034],[-124.69046207967368,57.806229243850346],[-124.69047268407512,57.80640879205026],[-124.69047697629446,57.80658827805738],[-124.6904791644503,57.80676774335525],[-124.69048135262695,57.806947208685244],[-124.69048354082443,57.80712667404741],[-124.69048993731151,57.807306180924364],[-124.6905405987437,57.807483881109384],[-124.69061238004319,57.8076595464203],[-124.69068626617529,57.80783523246141],[-124.69073907233708,57.80801183226179],[-124.69075809529392,57.80819146370833],[-124.69075186810456,57.808370846340914],[-124.69072459881671,57.80855002163139],[-124.69067422183984,57.80872784768642],[-124.69060077577775,57.80890320333676],[-124.69051267725565,57.80907617150691],[-124.69041409564288,57.80924791479412],[-124.69030923931008,57.809418474662706],[-124.6902001735058,57.80958899298596],[-124.69009114565654,57.8097583901058],[-124.68996119086003,57.809924216240404],[-124.68982079137328,57.810087696229786],[-124.68969921249371,57.81025472631375],[-124.6895922458212,57.810425265034496],[-124.68949993048375,57.81059819128562],[-124.68942647531982,57.81077354661519],[-124.68935512380989,57.810948922694216],[-124.6892900457102,57.81112548219124],[-124.6892459715997,57.811303370444115],[-124.68924394543804,57.81148279508702],[-124.68931362393248,57.81165844104172],[-124.6894341200531,57.81182561603397],[-124.68957153032267,57.81199071470281],[-124.68968988528785,57.812158989908305],[-124.68976171047653,57.81233353535541],[-124.68981658407952,57.81251127821674],[-124.68986724933097,57.81268897958464],[-124.68991581061556,57.81286666021445],[-124.6900024083235,57.81304022976115],[-124.6901059593717,57.81321060182216],[-124.6901439611415,57.81338929987064],[-124.69018398987028,57.81357026098112],[-124.69041759151938,57.813693689009035],[-124.6905976089964,57.81384462685111],[-124.69069687806935,57.81401719940519],[-124.6908896810012,57.81416377673644],[-124.69114885424268,57.81427848318497],[-124.69128211080071,57.814442417880294],[-124.69141532961042,57.814607473617635],[-124.69166811605461,57.8147243592218],[-124.6919597194482,57.81481470971121],[-124.69220385742324,57.814938238343366],[-124.69239452747334,57.81508591406191],[-124.69256812915472,57.815240150760516],[-124.69269500377891,57.815406264371404],[-124.69284732901001,57.815567020589135],[-124.6930444351525,57.81571139412924],[-124.69324360856336,57.81585690924647],[-124.69344921391844,57.815999122717564],[-124.69362921569181,57.81615117795273],[-124.6936845475489,57.816377150097516],[-124.6936275034033,57.81650444408239],[-124.69353519168838,57.81667737419097],[-124.69344708846391,57.81685034565464],[-124.69337991466028,57.81702688750479],[-124.69333795763379,57.81720479886326],[-124.69332121773684,57.81738407975469],[-124.69331921063866,57.81756350555385],[-124.69331720352142,57.81774293138524],[-124.6933004632869,57.81792221237097],[-124.69325846603377,57.81810124501763],[-124.69318922322852,57.81827664514192],[-124.69309273451103,57.81844841269981],[-124.69297527497285,57.81861773088992],[-124.69277034667651,57.81875927171546],[-124.69254464116048,57.81889275707971],[-124.69227149603954,57.81899773683212],[-124.6919536386558,57.81905629292673],[-124.69163979534876,57.81912049548084],[-124.69133401993804,57.81919487059566],[-124.69101405463549,57.81925340372656],[-124.69070219609428,57.81932098827424],[-124.69043726728036,57.81943165302423],[-124.69020122012951,57.8195594250163],[-124.69001288118636,57.81970785461628],[-124.6897644356374,57.81982877444757],[-124.68954908140807,57.819966843249695],[-124.68934409394514,57.82010950013808],[-124.68917862944694,57.820266005074004],[-124.68902150506923,57.820424835197144],[-124.68879990807717,57.82056059826398],[-124.68849610326455,57.82063835118964],[-124.6882086291404,57.820730844660446],[-124.68790688760579,57.82080973818508],[-124.68759298378762,57.820875052450425],[-124.68726719121865,57.82091893928527],[-124.6869316933995,57.82093917708807],[-124.68660176782895,57.82098077838946],[-124.68639060524559,57.82111888383962],[-124.68622305821583,57.8212742432932],[-124.68606591718708,57.82143307008311],[-124.68590253820322,57.821589591960084],[-124.68572247469616,57.82174146250483],[-124.68552783147643,57.82188870246769],[-124.68532698916248,57.82203251623139],[-124.6851219744957,57.82217516690381],[-124.6849148924167,57.82231667529513],[-124.68470363794427,57.82245702056202],[-124.68449242102012,57.82259624435716],[-124.68428116340883,57.822736588991944],[-124.68406990422481,57.82287693331081],[-124.68385868260832,57.823016156157685],[-124.68364745943198,57.82315537868838],[-124.68343412967305,57.82329458004964],[-124.68322079833885,57.82343378108795],[-124.68300746542951,57.823572981803395],[-124.68279623599064,57.823712203059394],[-124.68258289993847,57.82385140313249],[-124.6823716673721,57.82399062375277],[-124.68216039405391,57.82413096521374],[-124.6819491191629,57.824271306358646],[-124.68173994778324,57.82441166806774],[-124.68153077484617,57.82455202946756],[-124.68132366623402,57.824693532601955],[-124.68111651684359,57.824836156591154],[-124.68091147100137,57.8249788011713],[-124.68071683151639,57.825124913410455],[-124.68053883536857,57.82527679836902],[-124.68036079853985,57.82542980427014],[-124.68019316825412,57.82558627795385],[-124.68007149674303,57.825753301826936],[-124.67995816630524,57.82592265156704],[-124.6798031239505,57.826080371444995],[-124.67961463295721,57.82623102959877],[-124.67942621900852,57.82637944519103],[-124.67926064654242,57.82653705992403],[-124.67909507269195,57.826694674475824],[-124.67886938913111,57.826824774201924],[-124.67858149050882,57.826927337855075],[-124.67832481496703,57.827040305344234],[-124.6781866030854,57.82719819098811],[-124.67810658995083,57.82737796480975],[-124.67799741699804,57.82754847619037],[-124.67788192725752,57.82771892468669],[-124.67773934317333,57.82788125272965],[-124.67753438599158,57.8280205290582],[-124.67727126597639,57.82813679527659],[-124.67698955082312,57.82824278195042],[-124.67667210343454,57.82828672696052],[-124.67633724301253,57.828286757292176],[-124.67599646049274,57.82827551227033],[-124.67565754713493,57.82827101430878],[-124.67532073915386,57.82826653646516],[-124.67498381302407,57.828265421246044],[-124.67464871627271,57.828272174280166],[-124.67431497553694,57.82830024949122],[-124.67398906390991,57.82834522526408],[-124.67367515213826,57.8284082648337],[-124.673363147333,57.828476930474395],[-124.67304716757566,57.8285388263974],[-124.67272912094462,57.82859957939116],[-124.67241516546186,57.82866373716064],[-124.67210724840072,57.82873580540445],[-124.67180338279165,57.828812399651596],[-124.67149745013326,57.82888785100857],[-124.67119151625029,57.828963301667216],[-124.67089165995972,57.82904554173784],[-124.67059998648111,57.829134592320095],[-124.6702918643536,57.829212262188456],[-124.67008083325727,57.82934361591228],[-124.66991937986353,57.82950238276854],[-124.66972050324934,57.8296473162757],[-124.66959877223253,57.82981433124457],[-124.66946238156966,57.82997895628842],[-124.6693009624308,57.8301366013358],[-124.66911038295379,57.830284981811715],[-124.66883299800541,57.83038650894944],[-124.66853316485292,57.83046762265834],[-124.66827429006396,57.83058167121329],[-124.66800301886234,57.830688865730615],[-124.66771144473091,57.83077454664242],[-124.66738776782194,57.830815042805156],[-124.66715149198765,57.83094501763687],[-124.66688843849924,57.83105790016528],[-124.66659673999405,57.831146942144564],[-124.66629280408257,57.83122464514171],[-124.66598282830076,57.83129443593996],[-124.66569108613692,57.831384597113576],[-124.66543839377448,57.8315020671358],[-124.66519177804362,57.831626327080265],[-124.66492672758557,57.8317358211811],[-124.66463907129425,57.83182938586052],[-124.66445716498339,57.83196999640037],[-124.66464332340907,57.832125520274126],[-124.66486178095163,57.8322611802356],[-124.66500130331623,57.832425207684864],[-124.66510690014229,57.83259562368611],[-124.6651786107293,57.83277130716203],[-124.66522072514717,57.832950058130834],[-124.66523967878454,57.833128576561926],[-124.66523753717905,57.8333080047688],[-124.665218511193,57.83348838503518],[-124.66522256712531,57.833671240220696],[-124.66509051343563,57.833831419053155],[-124.665025282175,57.83400797072071],[-124.66499366080772,57.83418710304824],[-124.66496625040148,57.834366277692766],[-124.66493883973462,57.83454545236417],[-124.6649072572217,57.8347234636048],[-124.66487142337193,57.834902553738715],[-124.66483348351099,57.835081622747246],[-124.6647955830095,57.83525957061321],[-124.66475974811945,57.835438660814106],[-124.66472816401233,57.83561667217291],[-124.66470285701489,57.83579586817216],[-124.66467754977681,57.835975064199005],[-124.66464592510667,57.83615419680004],[-124.6646164058764,57.83633335057779],[-124.66458271459217,57.83651134091159],[-124.66453428266757,57.836689183199034],[-124.66447325539588,57.83686577741204],[-124.66439963260616,57.83704112353251],[-124.66431762570907,57.83721526385165],[-124.66422091719875,57.83738813487981],[-124.66411169217676,57.83755751541073],[-124.66399408264755,57.8377256900683],[-124.66387019433732,57.8378926799932],[-124.66374209325645,57.83805962749994],[-124.66360985886605,57.83822429024186],[-124.66347341161085,57.83838891054019],[-124.66333489706678,57.838552388386425],[-124.66319220934683,57.83871470259945],[-124.66304324252864,57.83887583198843],[-124.66289010243621,57.83903579771104],[-124.6627348949299,57.83919462093357],[-124.66257547429933,57.83935340163251],[-124.66241605232554,57.83951218216584],[-124.66225666880857,57.83966984136515],[-124.66209935008746,57.839828642758725],[-124.66194203004059,57.839987443991745],[-124.66178053657893,57.840145081502214],[-124.66162321386784,57.8403038824089],[-124.66146795597597,57.840463825525866],[-124.66132314700019,57.840626116845755],[-124.6613047010118,57.84073023716357],[-124.66149231399558,57.84096429110784],[-124.6616659083957,57.841118572188414],[-124.6618161389787,57.841278225762125],[-124.66194296570058,57.84144437308133],[-124.66204642812579,57.84161589304542],[-124.66210335949438,57.841792552606655],[-124.66218143154641,57.841967181738084],[-124.66231672625126,57.84213229240666],[-124.66252033174925,57.84227229395716],[-124.66285925009355,57.84228018899122],[-124.66316637656865,57.842352814679494],[-124.66343638852193,57.842462078445536],[-124.66368061208819,57.84258566291736],[-124.66394212331217,57.84269708336032],[-124.6642164714205,57.84280302438796],[-124.66444786440984,57.842932086407664],[-124.66466201273121,57.84307219056445],[-124.6648912233238,57.84320347304322],[-124.66512472721463,57.84333255508494],[-124.66536033884432,57.843461657873654],[-124.66559603149815,57.84358851791397],[-124.66584022974902,57.84371321973468],[-124.66609090685974,57.84383349981084],[-124.66635020865401,57.84394825805412],[-124.66662465199026,57.8440519518987],[-124.66691209090723,57.8441456813067],[-124.66720390225247,57.84423496762368],[-124.6675000859539,57.844319810819464],[-124.66779837718224,57.84440467446447],[-124.668096749017,57.8444872950962],[-124.66840163888101,57.844564372462095],[-124.66871535095244,57.84463032172269],[-124.66903804341439,57.84468065810842],[-124.66936741172077,57.8447209663569],[-124.6696969786524,57.8447556679089],[-124.67003135223644,57.844773593128906],[-124.67036814886846,57.844782569155775],[-124.67070518298598,57.84478481726915],[-124.67104217759956,57.84478818570502],[-124.67137873739793,57.84480388623417],[-124.6717083859555,57.84483634045041],[-124.67203775847865,57.84487664209157],[-124.672364946472,57.84491916424435],[-124.67269439941154,57.84495722190761],[-124.67302615667235,57.844989693886355],[-124.67335799345592,57.84501992268287],[-124.6736921737979,57.84504344459257],[-124.67402773550327,57.845027724430444],[-124.67434821389062,57.845081390482974],[-124.67462916395924,57.845180646206785],[-124.67489497748454,57.84529096621065],[-124.67515646179291,57.845404607262196],[-124.67542442411583,57.84551382603883],[-124.6757097503982,57.84560863676812],[-124.6760324605792,57.84565895623188],[-124.67632212020132,57.84575044406507],[-124.6765363680666,57.84588940831902],[-124.67672713332259,57.846037111128915],[-124.67691786070327,57.84618593486764],[-124.67712360928871,57.84632705676936],[-124.67741319798301,57.84642078464931],[-124.67771160685997,57.84650338387734],[-124.67802535136525,57.84656931130532],[-124.67834136060779,57.846630774207284],[-124.67864410379886,57.846710049685896],[-124.67894029339799,57.84679598879586],[-124.67921916200679,57.84689521407059],[-124.67947637920628,57.84701104733576],[-124.67972068485608,57.84713460291665],[-124.67995851590365,57.847262580067174],[-124.6801942421996,57.84739053590392],[-124.68043422211278,57.847517411959444],[-124.68068071908834,57.8476387443759],[-124.68094652841779,57.84775017374238],[-124.68126930317491,57.84779935942466],[-124.68156550732367,57.84788529278326],[-124.68182269926763,57.84800224281075],[-124.68206916466622,57.84812469389753],[-124.6823091947807,57.84825044548036],[-124.6825449352391,57.84837839727909],[-124.6827806772985,57.8485063486766],[-124.68300994487613,57.84863872183048],[-124.68323070990958,57.848773253548984],[-124.68345354379403,57.848908926958245],[-124.68368285535755,57.84904017782097],[-124.68392933359041,57.849162625589784],[-124.68419087201254,57.84927624932417],[-124.68445245116193,57.849388751371144],[-124.6847052927829,57.849510139072244],[-124.68472168539482,57.849764898402334],[-124.68449322092977,57.84997125141822],[-124.68431925736321,57.85012542930779],[-124.68410585570624,57.85026239317241],[-124.68386748739708,57.85039013705508],[-124.68365817816304,57.85053050549413],[-124.68349048907668,57.85068586612569],[-124.68342535404048,57.850861308646046],[-124.68335807264079,57.851037851498255],[-124.68328447086289,57.85121433177945],[-124.68323825409674,57.8513910831959],[-124.68325511740275,57.85157182391105],[-124.68321100667276,57.851748596239176],[-124.68311438674283,57.8519203623652],[-124.68300723277453,57.85209202414787],[-124.68292110504161,57.85226501568563],[-124.68296344301928,57.85244040099545],[-124.68309672054889,57.85260659260002],[-124.6832087757959,57.85277706028389],[-124.68337404764503,57.852932352629004],[-124.68358621649472,57.85307240687522],[-124.68371957735866,57.85323635558218],[-124.68385711362167,57.85340146706794],[-124.68401170064305,57.85356113924542],[-124.68418969790358,57.85371431338763],[-124.68433796742255,57.85387392271053],[-124.68444156593435,57.85404542740836],[-124.68454305863821,57.854216911219034],[-124.68469343839236,57.85437654106389],[-124.68485443155338,57.8545340325385],[-124.6849411017201,57.85470761269405],[-124.68501080096,57.85488438977012],[-124.68507418045802,57.85506110435759],[-124.68511856013747,57.85523875269499],[-124.6851311814132,57.85542057341908],[-124.68518832016085,57.85559498318039],[-124.68535778707708,57.855751436352655],[-124.68555499651742,57.85589806925774],[-124.68573094335876,57.85605009968791],[-124.68584520586307,57.85621834417802],[-124.6859424579505,57.85639090686344],[-124.68603549716245,57.85656342788256],[-124.68611792454612,57.856738087199666],[-124.6861939928797,57.85691380526109],[-124.6862551962209,57.85709274123199],[-124.68635678359325,57.85726198180042],[-124.6865114361483,57.85742053050529],[-124.68668520883631,57.857574781496126],[-124.68687388793548,57.857724693096856],[-124.6870732205641,57.85787134484596],[-124.68728121705392,57.858011352310434],[-124.68750201319979,57.85814699942028],[-124.68773350208333,57.858278265323946],[-124.68797143070638,57.85840622959687],[-124.68821365303013,57.858531992622446],[-124.6884559160116,57.85865663402539],[-124.68870239461367,57.85878131654434],[-124.68896182914722,57.858897153636036],[-124.68924089177008,57.858994116721874],[-124.68955690651482,57.85905891734687],[-124.68988189643918,57.85910810345042],[-124.69014952950137,57.859170182973166],[-124.69056812494752,57.859133927206365],[-124.69081941229707,57.859241829358474],[-124.69100545780297,57.85928628040511],[-124.6912825061672,57.85950210712922],[-124.69150956873266,57.85964005238277],[-124.69173234094076,57.85978019822317],[-124.69195511480648,57.85992034371056],[-124.69218007527401,57.86005826715952],[-124.69240726125201,57.86019284735712],[-124.69263885763627,57.860321862597104],[-124.69287915639886,57.86044311186083],[-124.69312612817144,57.86055433199491],[-124.69343447322302,57.86059773788171],[-124.6937934990076,57.86057771044206],[-124.69413968737797,57.86056316393565],[-124.69447346599605,57.86054176524268],[-124.69480919593128,57.86052487119426],[-124.69514676077199,57.86051584538124],[-124.6954824125079,57.860501192038264],[-124.69580830491186,57.86046401051635],[-124.69614965623461,57.860467356698294],[-124.69648694861601,57.8604661759006],[-124.69680273093066,57.860416555482175],[-124.69711105361935,57.8603388217084],[-124.6974332328876,57.8602870193077],[-124.69775498485184,57.86024754935596],[-124.69809297280847,57.86022618284373],[-124.69842556898709,57.86017784476262],[-124.69870551766995,57.86025012166325],[-124.69896276978669,57.860369282420876],[-124.69921756792311,57.86049851291933],[-124.69949003774565,57.86060436247687],[-124.69981111066294,57.86064563477848],[-124.70015414546899,57.86066132451947],[-124.70048368677453,57.860701556353746],[-124.70081108298416,57.860742887998356],[-124.70114530393887,57.86076970490816],[-124.70147063299278,57.8608098931549],[-124.70177786901114,57.860885794637355],[-124.70208522217898,57.86095833180263],[-124.70241878928965,57.86100420599602],[-124.70271760022345,57.86108002310923],[-124.70297896917089,57.86120258091396],[-124.70313171652396,57.86135772677052],[-124.70319733770053,57.86153333322158],[-124.70323533452125,57.86171539988155],[-124.70328390626678,57.86189644805809],[-124.70338136870205,57.86206563537124],[-124.7035553862782,57.8622153802275],[-124.70378040292591,57.862353284382664],[-124.70400327541505,57.86249228885519],[-124.7042091373861,57.86263561360206],[-124.70442561426724,57.86277679824592],[-124.70464420002004,57.86291800307626],[-124.7048543198274,57.8630602467161],[-124.70504739034567,57.863207931990466],[-124.70521080636084,57.86335981471271],[-124.70532326348192,57.863522417170756],[-124.70534663716136,57.86370097641884],[-124.70534234632093,57.86388711756592],[-124.70537196517262,57.86406798081566],[-124.70546304355712,57.86423934787759],[-124.70557948783816,57.864408718532445],[-124.70571080016134,57.86457486899622],[-124.70585062010687,57.86473885893594],[-124.70600534689233,57.86489850739378],[-124.70619413957144,57.86504839270872],[-124.70637017394724,57.86520151846551],[-124.70653770319137,57.86535680448197],[-124.70670308791752,57.865513191037444],[-124.7068748347285,57.8656685176503],[-124.7070487673575,57.865821622123434],[-124.7072247703326,57.8659758680823],[-124.70739655988919,57.86613007288338],[-124.70757041981199,57.86628541917125],[-124.70767423520552,57.86645466551494],[-124.70773774050973,57.86663137138398],[-124.70779703147342,57.866808036318005],[-124.70788172814336,57.866981583225545],[-124.70798761587457,57.86715197112562],[-124.70810197301707,57.86732131961241],[-124.70821418521997,57.8674917687821],[-124.70831160736589,57.8676631958799],[-124.70834335097314,57.86784407962746],[-124.7084366364566,57.868013223347184],[-124.70864649142149,57.868164431456485],[-124.70885224829478,57.868312234710245],[-124.70892894581125,57.868473366045755],[-124.70888926626886,57.86864682718491],[-124.70878616669167,57.86882528085201],[-124.7086558212462,57.868998983699186],[-124.7085132135344,57.869161351549955],[-124.70834972079594,57.86931790860011],[-124.70817158876864,57.86947095858958],[-124.70798717088604,57.869622825752295],[-124.70780692830876,57.86977585483594],[-124.70761204621259,57.86992537675151],[-124.70741298575514,57.87007373623898],[-124.70724956146758,57.87022804965054],[-124.70718676497195,57.87039904290969],[-124.70723314375425,57.87058343442657],[-124.70730504621594,57.870761344376426],[-124.70739377246126,57.87094053933745],[-124.70760711492508,57.87117478107386],[-124.7079934941494,57.87134340724438],[-124.70829603685526,57.87143607183473],[-124.70855994966595,57.871548549469146],[-124.70878944813481,57.871680881290025],[-124.70901247120163,57.871817636261284],[-124.70925707311176,57.87194001948424],[-124.70952976921691,57.87204248606127],[-124.70982185931871,57.872132802604575],[-124.71012042777689,57.87221869493151],[-124.71041688981984,57.87230456616922],[-124.7107111686486,57.87239265877192],[-124.71100763340817,57.87247852870886],[-124.71129976881126,57.87256772082838],[-124.71158535200787,57.87266357841338],[-124.71186442145763,57.872764980287144],[-124.71214567691958,57.87286415954385],[-124.712431302859,57.87295889412145],[-124.71272996048393,57.87304253822399],[-124.71303080390771,57.87312395960588],[-124.71332946417344,57.873207602377185],[-124.71362816407202,57.87329012326344],[-124.71392682698247,57.8733737647084],[-124.71422549121966,57.87345740549045],[-124.71452197237554,57.87354326769234],[-124.71481630875861,57.87363023010665],[-124.71510842385501,57.87372053519376],[-124.71539839423433,57.87381194052304],[-124.71568836602138,57.87390334522906],[-124.71598266967598,57.87399142631942],[-124.71628138160634,57.8740739413171],[-124.71658879391445,57.87414868840206],[-124.71689628386247,57.87422119233477],[-124.71720369859332,57.87429593801069],[-124.71750245380676,57.87437732906924],[-124.71779021260254,57.874472072607226],[-124.71807145824697,57.87457236073856],[-124.7183527817231,57.87467040583605],[-124.71864709760516,57.87475848110376],[-124.71895022805256,57.87483542464355],[-124.71926205843062,57.87490460006902],[-124.71957611227803,57.874970431373995],[-124.7198901291022,57.87503738316815],[-124.72019981682776,57.87510765735955],[-124.72050509930604,57.87518349643161],[-124.72080375441394,57.87526824383223],[-124.72109593466193,57.87535741470231],[-124.72138585602563,57.8754510495926],[-124.7216821027254,57.8755447446065],[-124.7219762048694,57.875639539953056],[-124.72225314027528,57.87574314256131],[-124.72249386106334,57.87585761287493],[-124.72258512197185,57.87602672782757],[-124.72263111085077,57.8761628820057],[-124.72280731810292,57.87637655430729],[-124.7230592312018,57.876472063945975],[-124.72340173553275,57.87650787610893],[-124.7236983376497,57.87659147567936],[-124.72398612895593,57.87668620603604],[-124.72427825175838,57.87677761250772],[-124.72457033799523,57.87687013957609],[-124.72486250161819,57.87696042355338],[-124.72516784647544,57.877035130844796],[-124.72548878397406,57.87708531170647],[-124.72582083181177,57.87711877426477],[-124.72615502623377,57.87715113494367],[-124.72648033386619,57.87719686885579],[-124.72680545270035,57.87724820812657],[-124.72712838853894,57.87730176890431],[-124.72744688176569,57.87736201597047],[-124.72775882445544,57.87742892920576],[-124.72805984906104,57.87750695328608],[-124.72835643151805,57.877591663792806],[-124.7286485340912,57.87768418198872],[-124.7289341623998,57.877781124077046],[-124.7292133164945,57.877882490100816],[-124.72948603426002,57.877987158870276],[-124.72973932656285,57.87810510078911],[-124.7299839610319,57.8782296891657],[-124.73023288900661,57.87835207487013],[-124.73049473206389,57.878466732150635],[-124.73075872265686,57.878580287801505],[-124.73101623922904,57.87869826757225],[-124.73124811949624,57.878826096795244],[-124.73145214187474,57.878967119215446],[-124.73164758200181,57.879112545915305],[-124.73183443984665,57.87926237693469],[-124.7320127153723,57.87941661231179],[-124.73218459225163,57.87957302969654],[-124.73234589178027,57.87973046772045],[-124.73250079251537,57.879890087812264],[-124.73264929440244,57.88005188999541],[-124.73279135964243,57.88021699552785],[-124.73292280944318,57.88038424305483],[-124.73304368142094,57.880552511372976],[-124.73315182945076,57.88072290168067],[-124.73324518283735,57.88089427270806],[-124.7332815380553,57.881067344428686],[-124.73321428556079,57.88124840286403],[-124.73322300669481,57.881427941222825],[-124.73327611561818,57.881604537278626],[-124.7333439455532,57.88178239503225],[-124.73341599278953,57.881960292909824],[-124.73348597009021,57.8821370494813],[-124.73354751464764,57.88231372580493],[-124.73359430126278,57.88249026171217],[-124.73361371722861,57.882665415621375],[-124.73352775211977,57.8828384453023],[-124.73338497289862,57.88300756954043],[-124.73324870624828,57.883171147657144],[-124.73310611319268,57.8833346654584],[-124.73295726913166,57.88349588044531],[-124.7328021740122,57.88365479259576],[-124.7326407900331,57.88381252312632],[-124.73246686731562,57.883966769300244],[-124.73228462265475,57.88411757122871],[-124.73210026807502,57.884268352847215],[-124.73191173285713,57.88441797282025],[-124.73172323391918,57.88456647130921],[-124.73154094559204,57.8847183935531],[-124.73137958955803,57.88487500148714],[-124.73124119893265,57.88503855776849],[-124.73110905704125,57.885204416713734],[-124.73096855550969,57.88536795266755],[-124.73082180278375,57.885529185706496],[-124.73061819390995,57.885687633241965],[-124.73040626259454,57.88584263632559],[-124.73033546085487,57.885940662000046],[-124.73058450756385,57.88612361517365],[-124.73087121709737,57.88625309006713],[-124.73112020101345,57.886375475123906],[-124.73137140850486,57.88649451609899],[-124.73159034639865,57.886632316361585],[-124.73181576280386,57.88676569157821],[-124.73207559837229,57.88687920541152],[-124.73234835151378,57.88698499052944],[-124.73262543668532,57.887087451521424],[-124.73290900021748,57.88718548718685],[-124.73320126390077,57.88727575381836],[-124.73348916080442,57.88737046466847],[-124.73375548239689,57.887479550503336],[-124.73400241286978,57.887600789022564],[-124.7342428304396,57.88772757317177],[-124.73448324962894,57.887854356903375],[-124.73473443993251,57.887974512959204],[-124.7350050998086,57.88808027271146],[-124.73528220027399,57.88818272828969],[-124.73556141093344,57.888285203331115],[-124.73583640573013,57.88838763774847],[-124.7361091803704,57.888493415325996],[-124.73637547985653,57.888603617292354],[-124.73663526658909,57.88871936493415],[-124.73689509254818,57.8888339908363],[-124.73715925040017,57.88894529251232],[-124.73744061816824,57.88904666245031],[-124.7377242090002,57.88914468805779],[-124.73798407880805,57.889258190637754],[-124.73819462198735,57.88939590046872],[-124.73838151935661,57.88954684513289],[-124.73857481968322,57.889695607006495],[-124.73878743867107,57.88983445719185],[-124.73901075340545,57.88996892193657],[-124.73924905662129,57.89009679862927],[-124.73950242345126,57.89021584468907],[-124.73975364553608,57.89033599156778],[-124.7399769666977,57.89047045476156],[-124.74017890101238,57.89061368803734],[-124.74037228897588,57.89076020496585],[-124.74056131068791,57.89091116673588],[-124.74073971466343,57.89106427102612],[-124.74090960965619,57.89121953782505],[-124.74107099559014,57.891376967166025],[-124.74122165100763,57.89153990289449],[-124.74134614761859,57.89179119801359],[-124.74145288495826,57.89187969232486],[-124.74148932602391,57.892051642513216],[-124.74140740601334,57.8922303250879],[-124.74135922794063,57.89240932664726],[-124.74134475478603,57.892589768480285],[-124.74134082619244,57.89277031003408],[-124.741353806662,57.892949889869605],[-124.74139431623425,57.89312636516044],[-124.74153646918738,57.89329146358587],[-124.74161934703149,57.8934627312892],[-124.74163654704677,57.893642351092346],[-124.74164105573942,57.893822972583415],[-124.74165403800458,57.89400255258534],[-124.74166912941286,57.89418215255184],[-124.74168422096517,57.89436175255015],[-124.74169931266152,57.89454135257995],[-124.74171862260086,57.894720992505206],[-124.74173797021513,57.89489951120593],[-124.74176360773146,57.895079210985195],[-124.74179982838004,57.89525788919021],[-124.7418445232191,57.8954355258821],[-124.74189554577877,57.895613222378536],[-124.74194656882025,57.89579091888823],[-124.7420039197022,57.89596867519281],[-124.74207189173742,57.89614428862355],[-124.74215892161982,57.896317838862494],[-124.74226930284918,57.89648712320339],[-124.74239452412522,57.89665430441623],[-124.7425197465138,57.896821485540286],[-124.74263224002061,57.89699078958764],[-124.74273833205334,57.897162276338754],[-124.74283384161006,57.89733478472383],[-124.74291029426958,57.89750935637307],[-124.74292964897033,57.89768787541633],[-124.74293416435407,57.897868497620365],[-124.74299792568904,57.898044071099115],[-124.74308496423554,57.89821762107448],[-124.74315716388972,57.89839327418088],[-124.74321878043817,57.89856994899995],[-124.74326137663296,57.89874756591781],[-124.7432870240455,57.89892726612023],[-124.74331056240683,57.899106946444704],[-124.74334890358348,57.89928564488083],[-124.74340845062258,57.899461178608824],[-124.7434848728245,57.89963687157406],[-124.74356766118845,57.89981150297401],[-124.74365421974895,57.8999996292936],[-124.74365602958694,57.900008619286204],[-124.7437239043195,57.900187596394204],[-124.74374748299144,57.900366155614485],[-124.74377524320556,57.90054587592431],[-124.74381784426362,57.90072349302829],[-124.74387099270878,57.90090120964046],[-124.74393898236737,57.90107682301626],[-124.7440238854235,57.90125147429029],[-124.74410246098813,57.90142606585962],[-124.744164086941,57.90160274079717],[-124.744227822919,57.9017794356308],[-124.74431276632204,57.90195296558412],[-124.74442739270293,57.90212228890689],[-124.74453565427498,57.90229267376349],[-124.74460368696252,57.902467165789204],[-124.74460399196491,57.90264774905972],[-124.74461066289943,57.9028272707577],[-124.74463421002113,57.9030069515754],[-124.74466412335603,57.903185570812965],[-124.74469399956395,57.903365311342625],[-124.74471965696597,57.90354501213043],[-124.74478554580706,57.903720605671886],[-124.74487404198486,57.903914358176884],[-124.74498593144014,57.904102723013075],[-124.74515461600059,57.904233298744785],[-124.74541764105315,57.904255965973725],[-124.74576363424137,57.904195292666216],[-124.74612250800543,57.90412801003569],[-124.74645893980497,57.90410089348744],[-124.746796995159,57.904088372413376],[-124.74712997233584,57.90410159993384],[-124.74746020557005,57.90413386832521],[-124.74779010349519,57.90417622730585],[-124.74811778064853,57.904221929443494],[-124.74844768008604,57.90426428679922],[-124.74877746839563,57.90431000714338],[-124.74910733206755,57.90435348413701],[-124.7494356086955,57.90438124275178],[-124.74975394829596,57.904327029150416],[-124.75002551731635,57.90421965978813],[-124.75029501245129,57.904111148819965],[-124.75059725385907,57.904033228220605],[-124.75090978129045,57.90396325475034],[-124.7512223075594,57.90389328055179],[-124.75151225999274,57.90380402652508],[-124.75176727856258,57.90368640404311],[-124.75202440508892,57.90356880085601],[-124.75228563754227,57.90345460051953],[-124.75255508350305,57.90334720633244],[-124.75283485258042,57.90324663799832],[-124.75312076294726,57.90315173467984],[-124.75341081661581,57.9030591127858],[-124.75369265363909,57.90295968369424],[-124.75397237966075,57.90286023427879],[-124.75428677783391,57.902797000312844],[-124.7546113513292,57.90274507692452],[-124.75493596103381,57.90269203148035],[-124.75524628556573,57.902624270744916],[-124.75553832816982,57.90253502778872],[-124.75582222805669,57.90243673522538],[-124.75611837559978,57.902350894234466],[-124.75643280297086,57.90228653396851],[-124.7567452679914,57.90221766820004],[-124.75706172856867,57.902155568687235],[-124.75739006726813,57.90211713315108],[-124.75772639892187,57.90209223073395],[-124.75805677183584,57.90205605577045],[-124.75838721811776,57.90201763745305],[-124.7587176267332,57.9019803395851],[-124.75904977433927,57.901954273236356],[-124.75938939807344,57.90195743763823],[-124.75970615303044,57.90201422558128],[-124.76000943914448,57.90209556282708],[-124.76030621341543,57.90218244682006],[-124.76060302599265,57.902268208890725],[-124.7609108304805,57.90234061321965],[-124.76122733253774,57.90240524645059],[-124.76154609280816,57.902465413474424],[-124.76187144087831,57.90251778969105],[-124.76219501235202,57.902560054082066],[-124.76253682507486,57.90256098752809],[-124.7628592756507,57.902509024450396],[-124.76316551285467,57.902436721003426],[-124.76346989734577,57.902356548382535],[-124.76377424369849,57.90227749634229],[-124.76408473305342,57.902204108694555],[-124.76440310676743,57.902147617664525],[-124.76473151152213,57.90210692149045],[-124.76506206184261,57.90206512280069],[-124.76538450468183,57.90201315363604],[-124.76570505786339,57.90195443652237],[-124.7660072868047,57.901875359860306],[-124.76628915520472,57.90177366169731],[-124.76656076888226,57.90166289509903],[-124.76683245445967,57.90154988542016],[-124.76711017279409,57.901445903946566],[-124.76739784904488,57.90135995984483],[-124.76770551658952,57.90130784842225],[-124.7680434296268,57.90129863726729],[-124.76839122900665,57.901309705659244],[-124.76873281036836,57.90131735082138],[-124.76906987954024,57.901333926270745],[-124.76940476622822,57.90135272391418],[-124.76974212931377,57.90136032750124],[-124.77007982240848,57.90135783880048],[-124.77041736888864,57.901359834325255],[-124.7707547688749,57.90136631407679],[-124.77108987642747,57.90137837986015],[-124.77142687395921,57.90139719188652],[-124.77175699446744,57.90143276375583],[-124.7720847865989,57.9014750429836],[-124.7724126526333,57.90151507886402],[-124.77274266538748,57.90155401210818],[-124.7730727519517,57.90159070199328],[-124.7734050217202,57.90162516794841],[-124.77373289046724,57.90166520058493],[-124.77405835817956,57.901714183171194],[-124.77438615534808,57.90175645674709],[-124.77471395325308,57.90179872951789],[-124.77503062047725,57.901858844819806],[-124.77534274130595,57.901929012026024],[-124.77565933765726,57.90199136838621],[-124.77598022696938,57.90205152023078],[-124.77630555507744,57.90210498243634],[-124.7766337592128,57.90213491649455],[-124.77696785945143,57.902113309926726],[-124.77730646977196,57.902082771072365],[-124.77763496593485,57.90210373247685],[-124.77796058819305,57.90214822045575],[-124.77828591995069,57.902201677829176],[-124.77860910674246,57.90225623633713],[-124.77893680457626,57.9023018625577],[-124.77927323222723,57.902338595130196],[-124.7796181712667,57.902373161632674],[-124.77995743690497,57.902387486327534],[-124.78027484324122,57.9023601104763],[-124.78056853416012,57.90228316600236],[-124.78084432845084,57.902172408850355],[-124.78110786379987,57.90204920127646],[-124.78134622900498,57.90192127645245],[-124.7815370189572,57.90176375417643],[-124.78178534732078,57.90165386549124],[-124.78209132341921,57.901588246236855],[-124.78241373864373,57.90153623587049],[-124.78274644630005,57.90149217005477],[-124.78308122636,57.901449243960656],[-124.78340978608459,57.9014028953904],[-124.78374441961212,57.90136445272923],[-124.7840831626337,57.901329411573],[-124.78441164762702,57.90128530308506],[-124.78471547049614,57.90122077984535],[-124.7849887732836,57.901121207723406],[-124.78523148306667,57.900988829465966],[-124.78543043632342,57.90083922765271],[-124.78558741700039,57.90068251318916],[-124.78570882609694,57.90051650138506],[-124.78581357611515,57.90034360799175],[-124.78591625197238,57.90016957404193],[-124.78602282003084,57.900005669963036],[-124.78615785782317,57.89980949887689],[-124.78623521845405,57.89963523403991],[-124.78628948415002,57.89945739388924],[-124.78634374933307,57.89927955374926],[-124.78646096809112,57.899112381778984],[-124.78663488406818,57.89895357760138],[-124.78667834730376,57.898783490218904],[-124.78662296272594,57.898603529348996],[-124.78659081691909,57.898422658652045],[-124.78657761869445,57.89824308224524],[-124.78657074837616,57.898063563534876],[-124.78656809662358,57.897884083300426],[-124.78656759029404,57.89770350105021],[-124.78659865010383,57.897525449692246],[-124.78666553020601,57.897348846372466],[-124.78674921105906,57.897174639340896],[-124.78685598389968,57.89700400748509],[-124.78698370310815,57.89683805280249],[-124.78712818622958,57.896675615535884],[-124.7872873239136,57.896516676418834],[-124.78745693381856,57.8963600757134],[-124.78763479831527,57.8962091579814],[-124.78786481221579,57.89607666037166],[-124.78809897056016,57.895946443315076],[-124.78833516421278,57.89581848759558],[-124.788581757517,57.895695112497265],[-124.78884693433386,57.895584243583166],[-124.78913684171921,57.8954915446239],[-124.78944100648363,57.895414677036335],[-124.78976339472167,57.895361527941965],[-124.79009775173967,57.89532979717051],[-124.79043338837555,57.89532387390494],[-124.79077066562157,57.89533254544508],[-124.79110565381185,57.89534680332723],[-124.7914427153569,57.895362200780156],[-124.79177977717774,57.895377597380154],[-124.79211694724485,57.89538962931896],[-124.79245418948778,57.895399417865065],[-124.79279150384635,57.89540696301786],[-124.79312688902559,57.89540888185015],[-124.7934647428543,57.895399606251786],[-124.79380070304244,57.89538358307017],[-124.79413662701457,57.895368680311094],[-124.79447265848046,57.89535041289486],[-124.79480686778864,57.8953231553793],[-124.79513507238593,57.89528574833785],[-124.79546956776132,57.89524951900017],[-124.79577182381787,57.89516589027044],[-124.79585527827342,57.89499728426191],[-124.79589058183086,57.89481702684623],[-124.7959090483439,57.894635495599154],[-124.79592533386457,57.89445618784922],[-124.79594165510524,57.89427575886141],[-124.79595583127232,57.89409643210166],[-124.79596578923928,57.89391706722879],[-124.79597367396246,57.89373656204752],[-124.79597730471204,57.89355714002342],[-124.79597671742236,57.89337767988792],[-124.79596769416925,57.89319814349618],[-124.79595230818205,57.89301967118706],[-124.7959306312982,57.89284002042273],[-124.79590259186027,57.892661433735285],[-124.79587247961177,57.892481706733896],[-124.79584022283262,57.89230308195162],[-124.79580796635965,57.89212445719452],[-124.79577785499261,57.891944730271575],[-124.79575192585841,57.891766162793175],[-124.79573025065291,57.891586512229246],[-124.79571275755858,57.8914080211137],[-124.7956974093915,57.89122842784002],[-124.79568627911422,57.89104887275164],[-124.79567725780475,57.89086933677279],[-124.79566612772979,57.89068978174932],[-124.79565714248257,57.89050912457113],[-124.79564386789846,57.89033067179991],[-124.79562852049936,57.89015107871828],[-124.79560895562417,57.88997144751225],[-124.79558513745181,57.889792899443655],[-124.79555502901391,57.8896131729036],[-124.7955206674183,57.88943452949459],[-124.79548205272252,57.88925696921293],[-124.79544136551493,57.88907826860899],[-124.79539856994255,57.88889954894415],[-124.79535788351764,57.88872084838073],[-124.7953235595603,57.88854108382325],[-124.79520861092767,57.88831011823042],[-124.79514679409172,57.88819852166343],[-124.7949830869708,57.88804113934233],[-124.7948109105404,57.88788480174465],[-124.7946557127429,57.88772525291189],[-124.79450691411182,57.887563518688935],[-124.79436022542608,57.8874018034245],[-124.7942177912356,57.88723900496506],[-124.79407746692544,57.88707622548286],[-124.79394354160151,57.88691126067322],[-124.7938202324622,57.886744148769225],[-124.79370968394153,57.886573787650114],[-124.7936033895795,57.88640234342922],[-124.79349495164467,57.88623200130154],[-124.79337804438306,57.886062703921404],[-124.79324619836433,57.885898878955004],[-124.79309312395895,57.885739347743026],[-124.79292725564098,57.885584186692384],[-124.79275077398998,57.88543117236022],[-124.79256789619906,57.885280342955724],[-124.7923808027968,57.88512947506532],[-124.79219367491622,57.884979728192796],[-124.7920086930291,57.88482887895833],[-124.79183007415143,57.88467696564685],[-124.7916813357015,57.88451410751794],[-124.79153249054743,57.88435461301972],[-124.79132181651457,57.88421586703479],[-124.79110263810027,57.88407928665147],[-124.7908791723018,57.88394491013253],[-124.79065359963502,57.8838105141007],[-124.79042588409347,57.883677219800525],[-124.79020242309728,57.8835428422013],[-124.78998114422181,57.88340624090266],[-124.78975346955554,57.88327182425312],[-124.78952372414535,57.88313626680388],[-124.78928761907432,57.883001772697476],[-124.78905151569026,57.88286727819102],[-124.78881119718844,57.88273274491321],[-124.7885729887989,57.88259823040959],[-124.78833478211158,57.882463715498375],[-124.78809868550587,57.88232921937638],[-124.78786680733056,57.8821947612555],[-124.78763707528644,57.88205920070071],[-124.78741581443933,57.881922595346786],[-124.78720088024342,57.8817860472776],[-124.78699230875854,57.88164843527176],[-124.78679431659823,57.881509797794685],[-124.78660686752099,57.88137125614572],[-124.78630367928336,57.88122492940413],[-124.78638406095591,57.88108658631932],[-124.78642674563699,57.88094004843316],[-124.7865396542028,57.880773962366284],[-124.78669813664706,57.88056791480927],[-124.78688843468417,57.880421600851484],[-124.78709752499093,57.88028106581204],[-124.78732119093964,57.88014627118165],[-124.78755321606131,57.88001379551708],[-124.78778313130802,57.87988130026431],[-124.78800890066198,57.87974652373546],[-124.78813201495302,57.879590623762965],[-124.78804899218066,57.87941826624884],[-124.78795546523384,57.87924469146899],[-124.78785557845744,57.87907218030209],[-124.7877535844092,57.87889964988851],[-124.78765580765062,57.878727157835186],[-124.7875579956781,57.87855578698929],[-124.78745386012147,57.8783843584809],[-124.78734122068721,57.87821509558294],[-124.78720306787727,57.87805232957814],[-124.78706284425547,57.877888422996335],[-124.78693748708373,57.87772128705853],[-124.78682485195438,57.87755202383901],[-124.78676110163421,57.87737086885695],[-124.78655655557003,57.87724002271144],[-124.78626885574968,57.8771375789056],[-124.78602404221367,57.877013094157356],[-124.7857705087105,57.87689750201095],[-124.78546290059857,57.87682403579645],[-124.78514010306729,57.87676388912396],[-124.78482900493925,57.87666795804934],[-124.78454109700363,57.87657223804328],[-124.78440231069432,57.8764296518243],[-124.78439974320453,57.87624793306454],[-124.78440378943095,57.87605730214484],[-124.78432289953152,57.87588496218851],[-124.78420817364132,57.87571567781773],[-124.78408498058215,57.87554743758089],[-124.78396604081382,57.87537811453943],[-124.78387036231193,57.875206760836214],[-124.78379165708701,57.875032197484025],[-124.78372352860627,57.8748566092036],[-124.78365754493205,57.87467991894399],[-124.78359788569374,57.87450328648777],[-124.78353822701516,57.87432665403692],[-124.78347649720433,57.874148881078995],[-124.78341047970046,57.87397331206751],[-124.78334660694215,57.873796641084915],[-124.78328062689388,57.8736199508308],[-124.7832125033511,57.87344436254352],[-124.78313380485936,57.87326979911828],[-124.78304663941913,57.873096279812415],[-124.78295736693211,57.87292274120233],[-124.78286387958723,57.87274916400421],[-124.78276399711879,57.87257777140895],[-124.7826577558466,57.87240744216078],[-124.78254086771848,57.872240380154835],[-124.78239647042615,57.87207643106652],[-124.78223074262478,57.87192013763214],[-124.7820437207464,57.87177037852889],[-124.78180124522073,57.87164029979623],[-124.78160132586181,57.87149827300839],[-124.78148019343793,57.87133229286618],[-124.78135913465644,57.871164070165136],[-124.7812423650205,57.870993643516854],[-124.7811277041731,57.870823236102964],[-124.78101733240148,57.87065062476206],[-124.78091542879038,57.87047696936445],[-124.78081984922622,57.8703033718556],[-124.78073059362116,57.87012983224914],[-124.78065394862884,57.869957529738436],[-124.78058577133994,57.869784183240014],[-124.7805850399111,57.869611454854486],[-124.78069397910451,57.8694374883941],[-124.78081556315666,57.86926363774802],[-124.78088470931968,57.86908145560867],[-124.7808713307872,57.86890861148331],[-124.7810749278207,57.86874111997875],[-124.78134945901,57.868661760208],[-124.78170295357816,57.86861789152604],[-124.78200491766631,57.868537660047274],[-124.78229870386566,57.86844950208658],[-124.78258227695034,57.86835115594547],[-124.78284927776578,57.8682436850885],[-124.78311017170411,57.86812942846802],[-124.7833669575817,57.86801176910016],[-124.78362163428582,57.86789408998333],[-124.78387423804503,57.86777526989459],[-124.7841248050576,57.86765418761078],[-124.7843691201999,57.86753080463306],[-124.7846030769657,57.867401718787754],[-124.78483081806387,57.86726921109837],[-124.78505648620553,57.86713556255755],[-124.78528008139224,57.86700077317638],[-124.78549742476118,57.866863683255495],[-124.7857147665479,57.866726592998916],[-124.78594453485708,57.86659634519823],[-124.78618887331479,57.86647183777869],[-124.78645385142387,57.86636097696643],[-124.78673325521983,57.866260341276096],[-124.78701269363683,57.86615858377509],[-124.78728177373398,57.86605112347962],[-124.78754474649894,57.865936877630936],[-124.78780778984893,57.865820388807556],[-124.78804997358203,57.86569698010227],[-124.7882254391507,57.86555053208489],[-124.78831961536845,57.86537530451028],[-124.78855143778182,57.865246192815],[-124.78880822306319,57.86512740206095],[-124.78905668524028,57.865005170400046],[-124.78932164458972,57.864894304043396],[-124.78961531317266,57.86480837272552],[-124.78992137260045,57.86473040440752],[-124.79021714592771,57.86464449094333],[-124.79050059766983,57.86454837077831],[-124.790759407423,57.86443183796856],[-124.79099539441572,57.86430388168172],[-124.7912106300428,57.864165642424176],[-124.79141547123123,57.864022822186335],[-124.79161613214426,57.86387884213958],[-124.79181682749207,57.86373374057865],[-124.79201541396121,57.86358861960198],[-124.79220774884094,57.86344119849124],[-124.79241051094314,57.86329723646349],[-124.79263274048641,57.86313774901838],[-124.79286464215447,57.863005266407406],[-124.79309797760463,57.863025328350034],[-124.7933352162167,57.86318674163565],[-124.79357992813314,57.863312332403595],[-124.79387672558289,57.8633912894807],[-124.79419731513381,57.8634513950397],[-124.79451797748435,57.863509257363404],[-124.79483649760869,57.863568221061314],[-124.79514840976536,57.863636096614734],[-124.79545153507775,57.86371510745945],[-124.79573930075517,57.863813045069776],[-124.79603371257784,57.86390094817277],[-124.79635266839578,57.86394645345414],[-124.79668527220497,57.8639606777733],[-124.79702884281507,57.86396154172309],[-124.7973680913175,57.86396573039011],[-124.79770498198222,57.863977747790685],[-124.79803976550404,57.86398974529925],[-124.79837879973032,57.86400065879828],[-124.79871783415305,57.86401157143339],[-124.79904936893087,57.86399325500058],[-124.79936933156766,57.86394118658132],[-124.79961128552108,57.863889535129275],[-124.79968347154814,57.86387336306487],[-124.79999968202051,57.86380667905458],[-124.80041572227553,57.863716220228554],[-124.80072982279205,57.86364951549235],[-124.80105385208554,57.86360196597353],[-124.80138363162422,57.86357241238945],[-124.80171758964083,57.86354401718578],[-124.8020557261568,57.863516780331025],[-124.80239168354399,57.863491766118244],[-124.80272953395345,57.863473497435386],[-124.80306720586675,57.86346083407263],[-124.80340459256392,57.8634571397379],[-124.80373958695488,57.86346239548461],[-124.80407001073749,57.863478824859094],[-124.8044022929839,57.86350312100309],[-124.80473221923432,57.86353524603717],[-124.80505986083737,57.86357295750739],[-124.80538946817806,57.86361517204013],[-124.80571686224944,57.863660730550265],[-124.80604636445885,57.863706307169004],[-124.80637376011693,57.863751864066884],[-124.80670333496998,57.86379519658939],[-124.8070330171293,57.86383516458633],[-124.80736494936902,57.863870665710756],[-124.8076971307084,57.86389831734752],[-124.8080317037856,57.86391701713738],[-124.8083707402489,57.863927905174805],[-124.8087098833067,57.863935428635685],[-124.8090469191392,57.86394293236742],[-124.80938602702129,57.86395157534264],[-124.80972070771826,57.863966907172994],[-124.81005089055044,57.86399117036814],[-124.8103782935276,57.86403671742546],[-124.81068770530385,57.86411799259629],[-124.81094551479381,57.864231330949224],[-124.8111496501979,57.86437559272538],[-124.81132796760375,57.86453644685335],[-124.81151278566252,57.86469175105],[-124.81173853050848,57.864819381655366],[-124.81201387930874,57.86491156504431],[-124.81231072799417,57.86499048112714],[-124.8126183978585,57.86506052067598],[-124.81293892549051,57.86512394489713],[-124.81326384572587,57.86518179974511],[-124.81359098036133,57.865236308874636],[-124.8139202586946,57.8652897147501],[-124.81424107289197,57.865344165924576],[-124.8145730958088,57.865377406639745],[-124.81491228843902,57.865383793061376],[-124.81524997337766,57.865371098755276],[-124.81556177765829,57.865309946331095],[-124.81589173702892,57.86527475053171],[-124.81621179299154,57.86521927782032],[-124.81653181277693,57.86516492558327],[-124.81686384217713,57.865130867365565],[-124.81719776711878,57.86510355450325],[-124.81752779356192,57.865066112171846],[-124.81784176943445,57.865002730672],[-124.81811704035877,57.86489638557482],[-124.81841461181826,57.86481827683032],[-124.81874877904075,57.86478311139629],[-124.81908642214228,57.86477152860273],[-124.81941858487936,57.86480027224198],[-124.81975064270843,57.86483237877739],[-124.8200883562,57.8648185509577],[-124.82040731371333,57.86486511985676],[-124.8207280985617,57.86492067660831],[-124.82105777034894,57.86496173114139],[-124.82138758321392,57.86499829989074],[-124.82171739671934,57.86503486782396],[-124.82205167121634,57.86506362356156],[-124.8223859812839,57.8650912572177],[-124.82271361903791,57.865130046516676],[-124.82303012458779,57.86518780292214],[-124.82333774593013,57.86526006018362],[-124.82364305086944,57.86533902556439],[-124.82394403714537,57.865421316723655],[-124.82424720220239,57.86550138334596],[-124.8245460836355,57.86558365453292],[-124.82484489639938,57.86566816754308],[-124.82514813531544,57.86574598964508],[-124.8254623674554,57.86580932791195],[-124.82578973494799,57.8658570796185],[-124.82611060608359,57.86591038096093],[-124.82641381462396,57.86598932144218],[-124.82668664627178,57.86609603216726],[-124.82693159305457,57.86621819821842],[-124.82717432916623,57.86634370899203],[-124.82741281696147,57.86647030343661],[-124.8276490941269,57.866600242637006],[-124.82787687302195,57.86673234966098],[-124.82809822623867,57.86686776436233],[-124.82831104622426,57.867006468214726],[-124.82850890565155,57.867151769330576],[-124.82869823174991,57.86730035970019],[-124.82887898959892,57.86745336060841],[-124.82905764134087,57.86760634274731],[-124.82923207936551,57.867759287580114],[-124.82940223391323,57.86791443761888],[-124.82957024741202,57.8680706901728],[-124.82973404708339,57.86822690546536],[-124.82989781327412,57.86838424182958],[-124.8300594732046,57.86854155948567],[-124.83021045697653,57.86870326931806],[-124.83035294180507,57.86886714739477],[-124.83053174552612,57.86901564277953],[-124.83080022137638,57.869127914598124],[-124.83109458252507,57.869221346834955],[-124.83123520908926,57.869377356790025],[-124.8313351992471,57.86955207615332],[-124.8314394753136,57.869724589992785],[-124.8315734689537,57.86989063539397],[-124.83172449942211,57.87005122248151],[-124.83190535233256,57.87020197720818],[-124.83210749265345,57.870346189203204],[-124.83232031229353,57.8704860083887],[-124.83254595380619,57.870620331952615],[-124.83276738142106,57.870754618174296],[-124.8329652429846,57.87090103447356],[-124.8331083505672,57.87097743381753],[-124.83320785567385,57.871236264471],[-124.83335457871037,57.8714001767234],[-124.8334082472115,57.87157336707358],[-124.83340483165718,57.87175166477564],[-124.83336969455516,57.871933049079445],[-124.83331354829627,57.872112006097254],[-124.8332385351753,57.8722874330292],[-124.83313836614857,57.872458153138034],[-124.83302762216955,57.87262990203043],[-124.83293163225899,57.87280178026779],[-124.83286715537565,57.87297729954715],[-124.83282790303362,57.87315528319717],[-124.83280122819363,57.873335620310066],[-124.83278298473131,57.87351603140717],[-124.83276056001664,57.873695284301505],[-124.83272970337511,57.87387446326605],[-124.8326757286424,57.87405119635011],[-124.83251884638626,57.8742146895074],[-124.83223971464358,57.874308694605546],[-124.83191911805565,57.874379903966286],[-124.83168759690557,57.87450236487086],[-124.83149954126857,57.874651002976165],[-124.8313322507164,57.87480991726409],[-124.83117957544415,57.87497344599386],[-124.8310500520143,57.87513829951502],[-124.83095193867457,57.87531015825079],[-124.83086007885652,57.875484315016415],[-124.830759855721,57.87565615515224],[-124.83066381292046,57.875829153545155],[-124.83056569601771,57.87600101211818],[-124.83046128888162,57.876171693814605],[-124.83036186325765,57.87631774484777],[-124.83014997741547,57.87648636015942],[-124.82997019874571,57.8766395555608],[-124.82979249185287,57.87679389053778],[-124.82962525428648,57.87695056051367],[-124.82949157075336,57.87711313325845],[-124.82939133703661,57.877284972651466],[-124.82931626047042,57.877461519563184],[-124.82926222970646,57.87763937317289],[-124.82922717175812,57.87781739370287],[-124.8292320987309,57.87799800914073],[-124.82927082616708,57.87817667881224],[-124.82934121149911,57.878354505402676],[-124.82951512441426,57.87859380710402],[-124.82971608172598,57.87864155852848],[-124.82998255042956,57.878752693308776],[-124.83028590534673,57.878830504746524],[-124.83062041335042,57.878855875582595],[-124.83095067057144,57.87888232980321],[-124.8312518507035,57.87896236305331],[-124.83154425124384,57.879053534204076],[-124.83184318661857,57.87913803266594],[-124.8321443011279,57.87922030644027],[-124.83245430193729,57.87928807711794],[-124.8327841123097,57.87932910320129],[-124.83311634442184,57.87936005559709],[-124.83344187018153,57.8794032856097],[-124.8337581995596,57.879471108699],[-124.83404214240382,57.87956332177758],[-124.83427634692062,57.87969547501163],[-124.83452354978041,57.879816525994556],[-124.83478572033941,57.87993097815845],[-124.83506524444239,57.880029879761224],[-124.83535984016218,57.88011881855668],[-124.83563065659017,57.8802266153046],[-124.83586473211716,57.88036325088841],[-124.83617167634668,57.880393974405244],[-124.83650675666823,57.88040139026838],[-124.83680367487139,57.88048361674861],[-124.83708949865971,57.88058369069684],[-124.83735818044282,57.88069258682516],[-124.83759243824585,57.88082361311337],[-124.8378117663113,57.880960116465964],[-124.8380247017428,57.88109880678828],[-124.83824185542966,57.88123753359511],[-124.83845901071685,57.88137626006762],[-124.83862933401463,57.881529157944975],[-124.83874010555233,57.88169835957753],[-124.83884234081336,57.88187085137368],[-124.83898283924367,57.882033582766354],[-124.83914456117054,57.882192012856784],[-124.83931907318288,57.88234606802345],[-124.8395106613382,57.88249354244506],[-124.83972357714129,57.88263335153608],[-124.8399407804935,57.88277095452326],[-124.84015369946282,57.882910762966155],[-124.84038372936621,57.883042869164406],[-124.84064172330433,57.883157273436574],[-124.84098616305955,57.8832040142526],[-124.84121747477678,57.88329463211972],[-124.84120739005166,57.88348521105847],[-124.84121030127979,57.88366468747992],[-124.84129350775677,57.88383925507859],[-124.84140426355474,57.88400957616616],[-124.8415745072094,57.884165834498184],[-124.8417618619259,57.88431439052606],[-124.84176283983952,57.88448824239217],[-124.84170450270899,57.88467055072378],[-124.84169476511505,57.88484991726627],[-124.84171033011643,57.88502950401678],[-124.8416920891802,57.885211039775655],[-124.84159413620085,57.885378423053105],[-124.84140388773893,57.885529301008795],[-124.84128062951581,57.885696463876656],[-124.84120344881146,57.88587412193751],[-124.84124237924178,57.88604830448638],[-124.84135314130785,57.88621862600469],[-124.84148295109901,57.88638687008034],[-124.84161497421532,57.88655176859112],[-124.84176611436723,57.88671234703263],[-124.84194487538495,57.88686643616875],[-124.84220936423397,57.88697640779456],[-124.84241204791614,57.88710715134706],[-124.84242336542066,57.8872878230324],[-124.84246856007434,57.88746430303336],[-124.84257507996792,57.88763570838591],[-124.84269224782791,57.88780384152321],[-124.84282213801626,57.88796984201998],[-124.84291172215212,57.888143343098655],[-124.84298651145085,57.88831783713035],[-124.84308456664566,57.8884902901904],[-124.84318476596307,57.88866164025829],[-124.8432786054193,57.888834056587584],[-124.84335550657224,57.88900856885944],[-124.84340274754028,57.889187309730346],[-124.84343097529111,57.88936700700935],[-124.84346552974523,57.88954675927616],[-124.84352767147341,57.889721143335755],[-124.84362559500123,57.889898081354026],[-124.84376175416064,57.890066378799396],[-124.84394724467832,57.89020818667848],[-124.84426582707245,57.89027488258632],[-124.84454548732332,57.890372644057535],[-124.84476714278048,57.8905046704861],[-124.84498012342446,57.89064447232483],[-124.84518456691019,57.89078756450648],[-124.8453889431525,57.890932898951974],[-124.84559549865703,57.891076008834744],[-124.84580845122396,57.89121693070985],[-124.84603426514995,57.89135123426787],[-124.8463202991207,57.89144792567891],[-124.84664380130093,57.891492226946895],[-124.84697960082215,57.89147943350333],[-124.84731598392939,57.89144757746252],[-124.84764427411714,57.89140443476281],[-124.84797249490755,57.89136353381456],[-124.84830625253909,57.8913484762192],[-124.84864544478559,57.891362625772814],[-124.84897800190592,57.89138681128253],[-124.84931246267722,57.89141774186922],[-124.84964726672374,57.891437458816306],[-124.84998220817133,57.891452689801476],[-124.8503280027717,57.89145791947974],[-124.8506782550054,57.89145533570948],[-124.85100656217243,57.89148060102336],[-124.85128465331826,57.89156151105198],[-124.85153413195793,57.89168142883697],[-124.85176401593625,57.8918213655307],[-124.85198539741457,57.89196347167007],[-124.85219412681141,57.89210546837159],[-124.85234325962321,57.89226489626117],[-124.8524307547031,57.89243949480565],[-124.85254583836878,57.892608723208056],[-124.85268429295026,57.89277254504597],[-124.85285254824447,57.89292765091055],[-124.85304631813042,57.89307624691335],[-124.85326152143223,57.893213811478255],[-124.8534935985415,57.89335152100626],[-124.8537449660543,57.89347930201559],[-124.85401889391653,57.89355904890255],[-124.85435780829953,57.89351373775296],[-124.8546955957748,57.89350542810484],[-124.8550330078473,57.89350945172167],[-124.85537038588801,57.893514595767584],[-124.85570786630255,57.893516375106586],[-124.85604544900049,57.89351478973803],[-124.85638129744213,57.893500851272414],[-124.85671724782634,57.893483548107234],[-124.85705472802609,57.89348532403247],[-124.85738979282523,57.89349717256252],[-124.85772686477435,57.893512402197224],[-124.85806393699626,57.89352763097887],[-124.85839883242107,57.89354508339338],[-124.85873121106668,57.89357597230541],[-124.85906134523536,57.893611327455446],[-124.85939144604,57.893647803073485],[-124.85972151351002,57.89368539915968],[-124.86005158163948,57.89372299442915],[-124.86038161647348,57.893761710167375],[-124.86070947503828,57.89380264961338],[-124.86103730038094,57.893844709539536],[-124.86136505860497,57.89388901123216],[-124.86169070853477,57.893933294088555],[-124.86201629141814,57.89397981872295],[-124.86234187510648,57.89402634256335],[-124.86266739182567,57.89407510818283],[-124.86299294326577,57.894122751722264],[-124.86331846166236,57.89417151575501],[-124.86364187181962,57.89422026099377],[-124.86396739190037,57.89426902344492],[-124.86429073605818,57.89432000968673],[-124.86461408109207,57.89437099514605],[-124.8649373931823,57.89442310111031],[-124.86525859706983,57.89447518831731],[-124.86558194474804,57.89452617143458],[-124.86590743619719,57.89457605044614],[-124.86623085318364,57.89462478941721],[-124.8665586243136,57.89466907836163],[-124.86688642997692,57.89471224521296],[-124.86721430389655,57.89475316868246],[-124.86754438887327,57.89479074541998],[-124.8678744745091,57.89482832134043],[-124.86820459452683,57.894864775155455],[-124.86853933798484,57.89488780853322],[-124.8688766628158,57.89489516094237],[-124.86921412254948,57.89489802734085],[-124.86955164969994,57.89489865030593],[-124.86988676468343,57.8949093461167],[-124.87022432560914,57.894908846087475],[-124.87056202113621,57.894903860045034],[-124.87089958200373,57.894903358303985],[-124.8712371764947,57.89490173441766],[-124.87157487182374,57.894896745806584],[-124.87190878577617,57.89487714383385],[-124.8722429009955,57.89485081328561],[-124.87257299906094,57.894817718442944],[-124.87289526456351,57.89476436815043],[-124.87321759629901,57.89470877450135],[-124.87354183481263,57.894659925658],[-124.87387383785007,57.89463357317964],[-124.87420972320535,57.894618468440356],[-124.87454199367923,57.894583143977734],[-124.87487412943423,57.89455230384753],[-124.87520813915339,57.894529329738035],[-124.87554218196864,57.8945052335011],[-124.87586839083693,57.89446088197545],[-124.8761946324207,57.894415408362484],[-124.87652298231347,57.89436995174895],[-124.87684915538863,57.89432671911706],[-124.87716528407967,57.89426657740188],[-124.87733353968245,57.89414238012607],[-124.87756312465712,57.89401309183887],[-124.87765795927956,57.89380415733959],[-124.87776970126613,57.89366490277256],[-124.87791659421099,57.89354949738473],[-124.87801996817929,57.893478587982614],[-124.8781697741556,57.89340694817373],[-124.87833186618641,57.89334774899412],[-124.87855150316206,57.89326884606072],[-124.87884502672004,57.893258980803125],[-124.87897295272678,57.89342605047428],[-124.87921810819743,57.89348194981283],[-124.87953303003813,57.89353282798339],[-124.87987342176544,57.89350765286214],[-124.88021093661952,57.89350824880728],[-124.88054584212492,57.893525645518466],[-124.88087368720926,57.893567656593795],[-124.88119042104942,57.89362864019093],[-124.88148740786374,57.89371525326581],[-124.88173261225529,57.89384068574226],[-124.88163283911689,57.89400359706742],[-124.88148017127384,57.89417167186171],[-124.8813864568217,57.89434360654371],[-124.88136636030478,57.894522889154665],[-124.88136728811818,57.894704591579426],[-124.8813514095741,57.89488390969479],[-124.88132287604776,57.8950631215189],[-124.88130488799227,57.89524242197456],[-124.8813248979522,57.89542092014306],[-124.88140195564408,57.89559653289558],[-124.8814388396801,57.895775172865534],[-124.88146517812395,57.895953724267336],[-124.88149781108532,57.89613345014388],[-124.88156221579248,57.8963089566261],[-124.88158865517163,57.89648414422018],[-124.88154324773565,57.89666321465674],[-124.88163942543049,57.89683450177255],[-124.88179717201712,57.896992847006395],[-124.88196128101355,57.89715012391593],[-124.8820299081533,57.89732566577758],[-124.88203512441731,57.897505161553354],[-124.88203401287389,57.897684604234506],[-124.88203501061565,57.89786406465827],[-124.8820423362845,57.89804357824323],[-124.88208977233828,57.89822230703145],[-124.88208233305637,57.89840169672083],[-124.88205805232889,57.89857982347631],[-124.88202319132759,57.898758983009735],[-124.88198411128236,57.89893810714726],[-124.88191559969555,57.89911361946141],[-124.88186613848933,57.89928704858697],[-124.88193051699373,57.8994636767622],[-124.88198642520473,57.89964135539632],[-124.88201273563702,57.899821028703315],[-124.88203466091302,57.900006273110904],[-124.88205695286754,57.900179183268136],[-124.88205158916286,57.90035971232758],[-124.88203989706928,57.90054018829296],[-124.88199247738197,57.90071587802946],[-124.88188612550188,57.900886586669394],[-124.88174826383603,57.90105254435253],[-124.88160417249082,57.90121508487461],[-124.8814432372952,57.90137636221979],[-124.88132860973748,57.90154139315717],[-124.88135495169435,57.901719945648374],[-124.88137278914131,57.90190066988874],[-124.88135690758683,57.90207998934255],[-124.88131119224572,57.90226915244514],[-124.88127612423006,57.90245504027414],[-124.88145605518291,57.90257768241498],[-124.88172749852296,57.902674174843014],[-124.88203724870696,57.902759772487386],[-124.88235979098378,57.90284099043882],[-124.88266311534227,57.90292989743451],[-124.8829558266272,57.90302095787794],[-124.88323986799182,57.903119796040386],[-124.88347248192258,57.90324512039353],[-124.88366428296993,57.903394777030485],[-124.88392670070286,57.90351137777168],[-124.88405274079875,57.90367282014376],[-124.88408324992423,57.903853650451666],[-124.88401919128131,57.90402135097369],[-124.88395031405061,57.904209199600075],[-124.88386067215089,57.90438565838659],[-124.88378583038222,57.90456111961376],[-124.88373848031723,57.90473456809728],[-124.88381583448093,57.904901210715224],[-124.88399468778628,57.90506085278656],[-124.88410998526966,57.90522893480069],[-124.88412780435561,57.905410780635755],[-124.88404890863528,57.90558060031897],[-124.883846169677,57.90572807207743],[-124.88366650324473,57.90588022329314],[-124.88352451145295,57.90604278439172],[-124.88338878116554,57.906207641042066],[-124.88324467716495,57.906370184209685],[-124.8830461836535,57.90651656894582],[-124.88290224346632,57.906673505264045],[-124.88285468688807,57.906853681652635],[-124.88279460418835,57.90702926664768],[-124.8825727975329,57.90717882002508],[-124.88246893955075,57.90733609229532],[-124.88251662250025,57.9075069735071],[-124.88260221650528,57.907680415960954],[-124.88270887655912,57.90785515668845],[-124.8828133944385,57.908031000972954],[-124.88290103428632,57.908206703642435],[-124.8829569600732,57.908384383483224],[-124.88298961094321,57.90856411131408],[-124.88297795409459,57.908743467592124],[-124.88291358252616,57.90892126021454],[-124.88296116961719,57.909095505476074],[-124.88306582529265,57.909266864552606],[-124.8831810649372,57.90943719072519],[-124.88327510621686,57.90961070386041],[-124.88329295662915,57.90979142932633],[-124.88334262326775,57.90996681360916],[-124.88347705585853,57.910130570985814],[-124.88363486593147,57.91028891622995],[-124.8838011173414,57.91044733203974],[-124.88395678682858,57.91060678058414],[-124.88408904783203,57.91077276239574],[-124.88419371331092,57.91094412088538],[-124.88427506953,57.911118648846],[-124.8843183458354,57.91129622260905],[-124.88432990513583,57.911475773920955],[-124.88430560817586,57.91172568517305],[-124.88447462876537,57.91179103143707],[-124.88478439377911,57.91187886612955],[-124.88504694063828,57.91199322306723],[-124.88524954242257,57.912136239213766],[-124.88543925254062,57.91228699833388],[-124.88564825417836,57.912427824257506],[-124.8858936940503,57.91254988756811],[-124.88615839229597,57.91266313872977],[-124.88642098200141,57.912776371738815],[-124.88667282345457,57.912896243949675],[-124.88692466651275,57.913016115699534],[-124.8871721581718,57.913140436991036],[-124.88740474766577,57.91326911972815],[-124.88761593860973,57.91340771770307],[-124.88781420480278,57.913555180179145],[-124.88799331512095,57.91370809042555],[-124.88815541274948,57.91386534481904],[-124.88828556038914,57.91403242673085],[-124.88853708485321,57.9141635087372],[-124.88859512320795,57.914342326236294],[-124.88875681860866,57.9145848176836],[-124.88888903478986,57.91461059558724],[-124.88925123416344,57.914639412764316],[-124.88959249719068,57.91466244647427],[-124.88992993726559,57.914671988334135],[-124.8902676421746,57.91467255880055],[-124.89060353450714,57.91466301898014],[-124.8909399226113,57.91463665855056],[-124.89127594666378,57.91462263176536],[-124.8916137502781,57.9146198348669],[-124.89195171900525,57.91461143052344],[-124.89228704898052,57.91462094886012],[-124.89261977369397,57.91464726857936],[-124.89295230085601,57.91468031537661],[-124.8932848286023,57.91471336134491],[-124.89361053144007,57.91476317368011],[-124.89391440718883,57.914837479014565],[-124.89415336102107,57.91496620276055],[-124.89444840292047,57.91505389264694],[-124.8947606578535,57.91513050876333],[-124.8950643082592,57.915212660737176],[-124.8953335698046,57.915315837114505],[-124.8955598368785,57.91544557472719],[-124.89576239846618,57.91559193935798],[-124.89595417970716,57.91574606549787],[-124.89606705813452,57.91592757738334],[-124.89633537335592,57.91606327010465],[-124.89673851615942,57.916136148127045],[-124.89693409167384,57.91623310305875],[-124.89757688875382,57.916267585311076],[-124.89787168598038,57.916364238304354],[-124.89820222921577,57.91646567265616],[-124.8982365119013,57.9166644781812],[-124.89829222709308,57.9168522450428],[-124.89845441416723,57.91700836609728],[-124.89863783778861,57.91716017615871],[-124.89882983578727,57.91730757047631],[-124.89902394569302,57.917454981980505],[-124.89921591389083,57.91760349711011],[-124.89940577318539,57.91775199455165],[-124.89959777721427,57.917899387853716],[-124.89978978274792,57.9180467809017],[-124.89997964654566,57.91819527759427],[-124.90017162229535,57.918343791461695],[-124.90036148909986,57.918492287656136],[-124.9005535006529,57.91863967969498],[-124.90073908395422,57.918790383213974],[-124.90089700302873,57.918948709433955],[-124.90105917718975,57.919105948984665],[-124.9012384005446,57.91925772098173],[-124.9014218463721,57.91940952756704],[-124.90159246680238,57.91956683615458],[-124.90175662608793,57.919728577662106],[-124.90195521021118,57.91986817077908],[-124.90222858022388,57.92012166105517],[-124.90249873092404,57.920268572616344],[-124.90302856095767,57.92005310313041],[-124.90324922040108,57.92008744602927],[-124.90365098143118,57.920209641830006],[-124.90396417477959,57.920111275019835],[-124.90423109778364,57.920006918977606],[-124.9044980519697,57.91990144108509],[-124.90476422093425,57.91982287451611],[-124.90501631221308,57.919647734545656],[-124.90529589214286,57.91954348049437],[-124.90558968942548,57.91945840977913],[-124.90590783291576,57.919407186206776],[-124.90624639584034,57.91937968300371],[-124.90658469746566,57.91936114955608],[-124.90692510926948,57.91934263256527],[-124.90726509719542,57.91933869195622],[-124.90758053401721,57.919380534537595],[-124.90786028208123,57.91948825787907],[-124.90816633467543,57.91956254837187],[-124.90849232701385,57.919604475283144],[-124.90882491194044,57.91963748263277],[-124.90915964050613,57.919669385105685],[-124.90948998600216,57.91970685882897],[-124.90981770154917,57.919762255715185],[-124.91014096951714,57.91982546656739],[-124.91046469336598,57.91987297804162],[-124.91078559339837,57.919872237096676],[-124.9111024993594,57.91979070797719],[-124.91142268377455,57.91974173112533],[-124.91174712235538,57.91976457025179],[-124.91207717933078,57.919812129522334],[-124.91240489960536,57.919867520051284],[-124.91273275051608,57.919918424461144],[-124.91305862139649,57.91996482553218],[-124.91338231773167,57.92001345125384],[-124.91370809307051,57.92006321472903],[-124.91403182347126,57.92011071754847],[-124.91435763288139,57.92015935811107],[-124.91468334605477,57.920211361868986],[-124.91500906012887,57.920263364833524],[-124.91533711205687,57.92030753487609],[-124.91566561738443,57.92033600548978],[-124.91599931397747,57.92033086972838],[-124.9163378455232,57.92030446218714],[-124.91667403992105,57.92028588593832],[-124.91701215081265,57.92027405398024],[-124.91734993868796,57.92027343446986],[-124.91768740384916,57.920284027409615],[-124.91802272636967,57.92029572368591],[-124.91836012741973,57.920308557583624],[-124.91869749645983,57.92032251195805],[-124.91903275517704,57.92033644835496],[-124.91937009249665,57.92035152235791],[-124.91970746229683,57.920365474175824],[-124.92004480014717,57.92038054647107],[-124.92038005988083,57.920394479478816],[-124.920717462621,57.92040730740864],[-124.92105486559133,57.92042013448425],[-124.92139022253212,57.92043070095591],[-124.9217277223917,57.920440162332845],[-124.92206528670091,57.92044738019119],[-124.92240102972765,57.92044448813625],[-124.92273728662094,57.920423653922505],[-124.9230736073614,57.9204005761964],[-124.9234095745914,57.92038983227569],[-124.9237471066818,57.92039816720512],[-124.9240863003863,57.92042221697605],[-124.92441436435729,57.920466364677246],[-124.9247206179046,57.920535010556506],[-124.92501356798095,57.920625980219896],[-124.92529996337608,57.920724747505844],[-124.92558210703287,57.92082460147985],[-124.92585347494943,57.92093221912273],[-124.9261012754228,57.92105198376746],[-124.926321159165,57.92118834686893],[-124.92652818866341,57.921331335601835],[-124.92673729837507,57.92147546237037],[-124.92697455200474,57.92159514045044],[-124.92729882410062,57.92162466975979],[-124.9276404295607,57.92163863549571],[-124.92798206723901,57.92165147902137],[-124.92831692583069,57.92167996942936],[-124.92864056081251,57.92173192217417],[-124.9289531324223,57.921801730665486],[-124.92926132423142,57.92187711118193],[-124.92956088309475,57.921959151176914],[-124.92984957080398,57.922052319100644],[-124.93011670652722,57.92216101563002],[-124.93037732037203,57.92227638882057],[-124.93064225286105,57.9223884313864],[-124.9309244550596,57.92248715288538],[-124.93120451616544,57.92258697820254],[-124.93146951702964,57.922696776486454],[-124.93173442388019,57.92280993826702],[-124.93199725344657,57.92292196127875],[-124.93226436971601,57.92303177493883],[-124.93254223220829,57.92313494459977],[-124.93282661938075,57.9232314363817],[-124.93311749931925,57.92332237157889],[-124.93342136321756,57.92340219414429],[-124.93371013515782,57.923493111168206],[-124.93394288429164,57.92362395669463],[-124.93408599731158,57.92378885417946],[-124.93426550336618,57.92393609712288],[-124.93457750010786,57.92402719802298],[-124.93466391184182,57.9241815471981],[-124.93462445251714,57.924381996930954],[-124.93433890805046,57.924325877087114],[-124.93399960900959,57.924304095996206],[-124.9336619124041,57.92430027236104],[-124.93332578594237,57.924315527532755],[-124.93299148365449,57.92434089081139],[-124.93265513376518,57.92436399366599],[-124.93232284588855,57.92439273619369],[-124.93199439695348,57.92443496779817],[-124.93167404010057,57.92448960101761],[-124.9313576808823,57.924552116699765],[-124.93103716272664,57.92461235508995],[-124.93071680297204,57.92466698601835],[-124.93038834983831,57.92470921367639],[-124.93005986406175,57.92475256186564],[-124.92975987595598,57.92483315078694],[-124.92948457813236,57.924936369319276],[-124.92922786128007,57.92505431736312],[-124.92899612169687,57.92518480325112],[-124.92878523352655,57.925324429162224],[-124.92858684923351,57.92546976329214],[-124.9283988899538,57.92561966738434],[-124.92821722986154,57.92577074350953],[-124.92804602686482,57.925925268335796],[-124.92791879968055,57.9260924843572],[-124.92776016352109,57.92625047478631],[-124.92752009573806,57.92637640496762],[-124.92725514313582,57.926486432049344],[-124.92700048763993,57.92660551432773],[-124.92675209932595,57.926726889819946],[-124.92650370940855,57.926848264864525],[-124.92625739681603,57.92697077781165],[-124.92601312951842,57.92709555001374],[-124.9257772083454,57.92722375387493],[-124.92555587010288,57.927358804524964],[-124.92534492491886,57.92749954665077],[-124.92513608914176,57.92764030549064],[-124.92493348860047,57.92778447913891],[-124.92475180412794,57.92793555088282],[-124.92459103587622,57.9280935208113],[-124.92444913715119,57.92825612928219],[-124.92432399711555,57.92842335931819],[-124.92421564802956,57.9285940896266],[-124.92415780270355,57.92877083562177],[-124.92416533549024,57.92895035264388],[-124.92417286834888,57.92912986969937],[-124.92416984588341,57.92930930157632],[-124.92422177587756,57.929486933895],[-124.92433307378192,57.92965607261061],[-124.92445284919748,57.9298241580719],[-124.92456414913941,57.92999329665435],[-124.92467967233729,57.930162469242795],[-124.92481221393564,57.930327292643845],[-124.92496388525795,57.930487783834685],[-124.9251198122422,57.930647187590274],[-124.92528213814549,57.930804399575116],[-124.92542741578262,57.93096708193415],[-124.92553446908111,57.93113730720914],[-124.92562031529887,57.93131072627175],[-124.92570613026771,57.93148526665623],[-124.92581532955272,57.93165438747051],[-124.92594788138838,57.93181921000049],[-124.92605916193038,57.93198946903505],[-124.92612383605292,57.932164960494084],[-124.92615674594062,57.93234356083282],[-124.92617273402922,57.93252314645869],[-124.92617816591732,57.93270264706331],[-124.92616456430262,57.93288311595208],[-124.92614047016124,57.933061257121985],[-124.92610789855829,57.93324045162183],[-124.9260542455685,57.93341835467403],[-124.92600273542544,57.93359515340312],[-124.92598916468009,57.93377450109465],[-124.92600937525839,57.93395412103753],[-124.92604439751933,57.93413273875323],[-124.9260857541958,57.93431140752994],[-124.92613347740891,57.934489006012555],[-124.92618331245382,57.9346666215219],[-124.92623103657864,57.934844220035956],[-124.92627453835253,57.935021784547565],[-124.92631167427872,57.935200419402776],[-124.92633822142751,57.93538009059088],[-124.92634998881196,57.935559642752146],[-124.92633641901404,57.93573899084955],[-124.9262954322471,57.93591699651529],[-124.92623125104828,57.936093693743],[-124.92615235301243,57.93626802919231],[-124.92606923128365,57.936442330601864],[-124.92599033176484,57.93661666601917],[-124.92591562247546,57.93679215680368],[-124.9258409124886,57.93696764757883],[-124.92576201080854,57.937141982957336],[-124.92568099686724,57.93731630130254],[-124.92559998217465,57.93749061963038],[-124.92552107827974,57.937664954962315],[-124.92544425315782,57.93784042865521],[-124.92537587359338,57.93801597043046],[-124.92531379606766,57.93819268463037],[-124.92525382954678,57.938369415859675],[-124.92519175086373,57.93854613006845],[-124.9251317832053,57.93872286130869],[-124.92507181498308,57.93889959255486],[-124.92501395782504,57.93907634083617],[-124.92495398848503,57.93925307209509],[-124.92496325893897,57.93937203788522],[-124.9250050282613,57.93961015683389],[-124.92505486476345,57.939787773722486],[-124.9250983346363,57.93996646089754],[-124.92509742740515,57.940145911868],[-124.9250479511058,57.940324971219816],[-124.92507033655173,57.94050236685972],[-124.9252370244264,57.94065625051687],[-124.92546124315514,57.94079265189583],[-124.92570056612821,57.940917958478316],[-124.92595272133855,57.94103775994956],[-124.92620705396976,57.94115533525477],[-124.92646132413877,57.941275152804394],[-124.9267134841696,57.941394952881815],[-124.9269721411633,57.94150919670302],[-124.9272350552773,57.94162235266639],[-124.9274915396497,57.94173882122947],[-124.92772866766067,57.94186747138132],[-124.92794227971993,57.942006026546835],[-124.92813451951615,57.94215338246441],[-124.92832247325424,57.94230294689226],[-124.92853180240787,57.94244370994151],[-124.9287625390292,57.942574550148095],[-124.92900185239984,57.94270097239915],[-124.9292432792209,57.94282741119995],[-124.92947830824635,57.94295604142505],[-124.9296983323718,57.94309240209092],[-124.92989909591604,57.94323758073203],[-124.9300764069722,57.94339042218034],[-124.93023880863741,57.94354763023648],[-124.93038844458343,57.94370810054001],[-124.93052102707043,57.943874041974524],[-124.93061329301814,57.94404638961026],[-124.9306885687468,57.944221965784685],[-124.93074691784054,57.94439852780396],[-124.93076715686725,57.944578149035074],[-124.93077050048866,57.94475763479272],[-124.93078865976207,57.944936117787606],[-124.9308237149673,57.945114736313535],[-124.93086510644564,57.94529340567406],[-124.9309086103075,57.94547209199166],[-124.9309542584794,57.94564967390023],[-124.93099776317744,57.945828360255845],[-124.93103918816304,57.94600590833289],[-124.93107424555657,57.94618452699463],[-124.93110507920292,57.94636311181514],[-124.93112532099914,57.94654273336446],[-124.9311075459019,57.946722050158264],[-124.93106023354335,57.94690000855085],[-124.93101503281713,57.94707798389444],[-124.93100359321178,57.9472573515788],[-124.93101749870307,57.94743692251039],[-124.93103140432724,57.947616493474555],[-124.93101362827413,57.94779581045934],[-124.93096420198859,57.947973752085254],[-124.93089371762935,57.9481492816317],[-124.93081270376305,57.94832360511906],[-124.93072957698521,57.94849791165042],[-124.93065067377584,57.948672252042485],[-124.93056965765494,57.94884657547861],[-124.93048441640394,57.94902086501201],[-124.93040551095943,57.949195205355345],[-124.93034135832676,57.94937078566853],[-124.93028981456813,57.94954871039563],[-124.93022985332753,57.94972544598085],[-124.93016144256838,57.94990211378067],[-124.93011415365166,57.9500789510669],[-124.93009637205733,57.950258268396155],[-124.93009545651708,57.950438842719215],[-124.9301030220097,57.95061836350308],[-124.93011692444153,57.95079793516679],[-124.9301308589316,57.9509763854932],[-124.93014264931979,57.951155940273736],[-124.93015655213983,57.951335512035406],[-124.93017045509275,57.95151508382972],[-124.93018647051794,57.95169467260429],[-124.9302024860962,57.95187426141111],[-124.93022061418714,57.9520538671971],[-124.93023666200493,57.95223233469672],[-124.93025267805217,57.9524119235997],[-124.9302686942525,57.95259151253482],[-124.9302847106059,57.9527711015023],[-124.93029861470231,57.95295067355616],[-124.93031463135176,57.95313026258825],[-124.9303517724571,57.953310021104],[-124.93043689359843,57.95351147544128],[-124.93007291507763,57.95353098809931],[-124.92975794656304,57.95368436700792],[-124.92959977664354,57.95382217950322],[-124.92942857932798,57.95397222517965],[-124.9293252035254,57.954114963823706],[-124.92915134802041,57.954284055580274],[-124.92898558933896,57.954465550118236],[-124.92886338977092,57.954601407534476],[-124.92858195172043,57.9547640263248],[-124.9284294709108,57.95492431599199],[-124.92827068319737,57.9550834332039],[-124.92811400667715,57.95524256723402],[-124.92795732882992,57.95540170110687],[-124.92780903588124,57.955563145513516],[-124.92766704734983,57.95572576212048],[-124.92753133129713,57.95589067232383],[-124.92739145290952,57.95605330568349],[-124.92724523553436,57.95621588794201],[-124.92709485573243,57.956376193324076],[-124.92694236203728,57.95653648156478],[-124.92678356121411,57.95669559727792],[-124.92662059786052,57.9568524360686],[-124.92644502140863,57.957006929893126],[-124.92626112111762,57.9571568699675],[-124.92607299405286,57.957306775786705],[-124.9258869781484,57.95745669838003],[-124.9257177338667,57.95761124239324],[-124.92557780915739,57.95777499552442],[-124.92540017556432,57.95792722834981],[-124.92517446179131,57.958061127315744],[-124.9249821646275,57.95820875493124],[-124.92490324644669,57.958381972337314],[-124.92489174213571,57.95856246302114],[-124.92484227269554,57.95874040440603],[-124.92466264719805,57.958888133860704],[-124.92440152194726,57.95900380000266],[-124.92413421738287,57.959113807626466],[-124.92386899189383,57.9592249531535],[-124.92359755504746,57.959331561497194],[-124.9233157456184,57.959431355748706],[-124.92302983771722,57.95952662977993],[-124.92275212226942,57.95963094249711],[-124.92253269503435,57.95976600980898],[-124.92244956885374,57.959938070532814],[-124.92244439070795,57.96011861251419],[-124.92245403441243,57.96029815264308],[-124.92245945254967,57.96047765866534],[-124.92243737165828,57.96065806418777],[-124.92231013056634,57.96082079546266],[-124.92211777585094,57.96096954076055],[-124.9219233711049,57.96111602596594],[-124.92173940047223,57.96126708183929],[-124.92163308999609,57.96143671166898],[-124.92162160122851,57.96161608127538],[-124.92165662841445,57.961794705365456],[-124.9217001075873,57.961973397809096],[-124.92174150643548,57.96215095180997],[-124.92179558327582,57.96232860831615],[-124.9218517735711,57.96250628191365],[-124.92182741470002,57.96269227755308],[-124.9215782265353,57.96261174805779],[-124.92129815023966,57.962502927242845],[-124.92100052792011,57.9624163967325],[-124.92068526251725,57.96235552054627],[-124.92034972490737,57.9623382235466],[-124.920009413711,57.962339954961095],[-124.91967605397764,57.96232043061429],[-124.9193432107024,57.962282963343384],[-124.9190075130236,57.9622712698722],[-124.9186728633425,57.962296598244095],[-124.91834208391761,57.9623342952335],[-124.91801533591735,57.962378753968295],[-124.91769057085503,57.96242771457231],[-124.91736378895513,57.96247329309604],[-124.9170349579725,57.96251661090441],[-124.9167081421682,57.96256330920664],[-124.9163915021416,57.962623549106915],[-124.91607677992165,57.96269053371294],[-124.915746091518,57.96272486013913],[-124.91541292483339,57.9626985968481],[-124.91507348453482,57.962670038404035],[-124.91485888568565,57.962782700295435],[-124.91481983082247,57.96296408885237],[-124.91479310450863,57.96323082270625],[-124.91466882362741,57.96350910095258],[-124.9145940079756,57.963684590381504],[-124.91451707860854,57.963860062605306],[-124.91445702032767,57.964036793775676],[-124.91443493132202,57.96421607727273],[-124.91441706819829,57.96439539519555],[-124.91434228201366,57.96456976326648],[-124.91422955718397,57.964740457575815],[-124.91414423647929,57.96491361821393],[-124.91408199684207,57.96509257497713],[-124.91403662895766,57.965272790758476],[-124.91403362000601,57.96544998648968],[-124.91410047350278,57.96562326442558],[-124.91422873789438,57.96579255565669],[-124.9143485509042,57.96596177800052],[-124.9143878386652,57.966138196452945],[-124.91431929110675,57.966315980581385],[-124.91421501358836,57.966486743992164],[-124.91409600774251,57.96665514416481],[-124.91398119477428,57.96682470005541],[-124.91388533465248,57.96699665350385],[-124.91380420121456,57.96717097013733],[-124.91372729344764,57.967345321171145],[-124.91365457897908,57.96752082799807],[-124.91358186383104,57.967696334818065],[-124.91351126124506,57.96787185884339],[-124.9134406255612,57.9680485042502],[-124.91337002165338,57.96822402826649],[-124.9132973038147,57.968399535062936],[-124.91322247201558,57.96857502463588],[-124.91314555867406,57.96874937559497],[-124.91306653131812,57.96892370932313],[-124.91298327660816,57.9690980085961],[-124.9128957944856,57.969272273405956],[-124.91279992314924,57.969444226522654],[-124.91269774337903,57.96961500653945],[-124.91258080170378,57.96978454453448],[-124.91244916287397,57.96995059769174],[-124.9122986649452,57.97011088872706],[-124.91212511347359,57.970264261717],[-124.91193686435193,57.97041414968229],[-124.91174653282664,57.97056289877716],[-124.91156247500203,57.97071394213073],[-124.91137633479049,57.97086384661999],[-124.91119016058535,57.9710148722626],[-124.9110060983088,57.971165914921386],[-124.91083042325063,57.97131926914784],[-124.91067152420518,57.97147724678383],[-124.91052306096917,57.971639796113536],[-124.91038285509707,57.97180914269229],[-124.91025945811964,57.971981991434376],[-124.91016564873952,57.97215508180844],[-124.91011635196287,57.972324049177175],[-124.91021308147104,57.97248747953287],[-124.91040927687207,57.972647235598025],[-124.91056099248355,57.97280999314729],[-124.9106957361437,57.972974855282715],[-124.91079224219779,57.973146135072994],[-124.9108674835874,57.97332172785398],[-124.91099163013146,57.97348762490222],[-124.91116468238187,57.97364382607609],[-124.91135061254879,57.973793402175126],[-124.91153869027877,57.97394187388953],[-124.9117225423146,57.97409031088152],[-124.91196635627558,57.97421231684544],[-124.9119062369494,57.97439017020995],[-124.91195394403657,57.97456778130762],[-124.91206532028184,57.974736938337365],[-124.91221285671888,57.97489853850727],[-124.91238598550032,57.97505249554391],[-124.91257615481159,57.975202104619925],[-124.91277916993089,57.97534620981818],[-124.91302728772821,57.97546600566473],[-124.91329690080079,57.9755736378761],[-124.91351276500446,57.97571223833157],[-124.91376514737392,57.9758309458816],[-124.91402393728254,57.97594746179018],[-124.9142655598113,57.97607281077819],[-124.9144964533325,57.97620368034401],[-124.91472087767994,57.97633898353537],[-124.91494318991822,57.976474269179306],[-124.91516550375809,57.976609554472354],[-124.91538355932872,57.97674592644657],[-124.91559088582792,57.976887819175055],[-124.91577463879575,57.977040736640106],[-124.91596057176864,57.97719142825517],[-124.91618725052443,57.97732226070483],[-124.91646329203263,57.97742769544451],[-124.91676102285871,57.9775142374631],[-124.91708245947993,57.97758526796066],[-124.91740765983702,57.97759912351261],[-124.9177348964778,57.97754233016087],[-124.91804368962701,57.9774651965742],[-124.9183380403531,57.97737560694652],[-124.91860965483386,57.97726788585946],[-124.91885472503651,57.97712742102479],[-124.91909537223013,57.97699364990298],[-124.9193571069308,57.97693520036069],[-124.91965393723089,57.977053135032214],[-124.91986550909756,57.97719505539495],[-124.92001728406,57.97735780298047],[-124.92006513002107,57.97753204754261],[-124.92004507690056,57.97771471585402],[-124.92002716964356,57.9778962799075],[-124.92002835108242,57.97807575517628],[-124.92013983859289,57.978242663299135],[-124.92028953738313,57.97840427224989],[-124.92045409886231,57.97856375797611],[-124.92063150603444,57.97871773912035],[-124.92083662047733,57.97886409250078],[-124.92102046891681,57.97901476026249],[-124.92113625582293,57.979179459104294],[-124.92118602988818,57.97936044910457],[-124.92117450128481,57.979540943501526],[-124.92111659538755,57.97971657631408],[-124.92102281672972,57.97988967575004],[-124.92091635362198,57.980062672583344],[-124.92079944874608,57.980231098270146],[-124.92065301199214,57.980397041695355],[-124.92051294805837,57.98056191489067],[-124.92042771710238,57.980731718260856],[-124.92040993922119,57.98090879733872],[-124.92042592050299,57.98108839290221],[-124.92046089568458,57.98126926382279],[-124.92048952917668,57.981450083464274],[-124.92050339705057,57.9816296620208],[-124.92051303699904,57.98180920640787],[-124.92052267703973,57.98198875082866],[-124.92053020312332,57.98216827818229],[-124.92053984333823,57.98234782267091],[-124.92054948364535,57.982527367193384],[-124.92055912404462,57.982706911749666],[-124.92057087862582,57.98288647344021],[-124.9205826333194,57.98306603516434],[-124.920607072785,57.98324569952176],[-124.9206569786331,57.98342220488192],[-124.92073228674259,57.98359779402739],[-124.92083306192622,57.98377022410136],[-124.92094873376355,57.983939409572145],[-124.9210347117456,57.98411171989476],[-124.92105069737882,57.98429131599952],[-124.92105608004445,57.984471948081],[-124.921074212347,57.98465043993712],[-124.92109019839847,57.98483003614079],[-124.92109346712182,57.98501065123279],[-124.92111794252102,57.9851891944626],[-124.92117627804986,57.98536688977195],[-124.92127497800026,57.985538181339194],[-124.92141833580166,57.985700860426924],[-124.92160222005056,57.9858515284902],[-124.9217903665108,57.98600110907724],[-124.92196358575443,57.9861550555144],[-124.92209842736952,57.98631990848548],[-124.92223115587561,57.98648474427527],[-124.92237448924645,57.98664854391173],[-124.92248806258468,57.98681771149848],[-124.92261019077412,57.98698358305923],[-124.92281756893837,57.987126587524926],[-124.92301213398129,57.987273974965895],[-124.92323454083868,57.98740924837875],[-124.92347197485917,57.98753679093994],[-124.92372225739359,57.98765882833963],[-124.92404879407819,57.9877029630356],[-124.9243845600694,57.98772025119812],[-124.92472039060627,57.98773529569133],[-124.92505833577786,57.987750356369425],[-124.92539628122057,57.98776541619191],[-124.92573204839064,57.98778270096588],[-124.92606989816075,57.98780112332177],[-124.92640563389226,57.987819527814956],[-124.92674124172106,57.987842417116134],[-124.92707230073215,57.9878764857112],[-124.92739201953952,57.987937382444734],[-124.92772304794968,57.987972570842494],[-124.92805631943703,57.98800328974839],[-124.92838494658616,57.988048552248],[-124.92871620090123,57.98807588829053],[-124.92905113755653,57.988048291195554],[-124.92938421517005,57.98801170498859],[-124.92971517775406,57.98797510099611],[-124.93004992102055,57.9879542298815],[-124.93038693803898,57.98792776780248],[-124.93071572065081,57.987893387215415],[-124.93101805151788,57.987970960957455],[-124.93131580372722,57.98806083571942],[-124.93161371692548,57.98814510275269],[-124.93192034427257,57.98822046549363],[-124.93222915103904,57.988293601622246],[-124.93253795900858,57.988366737042156],[-124.93284459002082,57.988442097677684],[-124.93314680223577,57.98852415230513],[-124.93344257694352,57.98860951981252],[-124.93374043556935,57.988696024980065],[-124.9340382955677,57.98878252949098],[-124.9343449329871,57.98885788671351],[-124.93467619878088,57.98888520798843],[-124.93501188479897,57.98890583368753],[-124.9353498128294,57.98892198974348],[-124.93568774115067,57.98893814494421],[-124.93602563798112,57.988955420706304],[-124.9363612935966,57.988977164430004],[-124.9366967907929,57.98900451439444],[-124.9370386953103,57.98902967120167],[-124.93738265124821,57.98905708680224],[-124.93772222014033,57.989090074945786],[-124.93805096361531,57.98913194944746],[-124.93836029721301,57.98918712878366],[-124.93861995299417,57.98927892746077],[-124.9387844815007,57.98944399952396],[-124.93897678489526,57.98959919717034],[-124.93921857857768,57.98972450279807],[-124.93946895855348,57.98984538953559],[-124.93972574697655,57.98996408337318],[-124.93998468319121,57.990081672106136],[-124.94024147486081,57.990200364981746],[-124.94048974678634,57.99032123307731],[-124.94072728947705,57.99044762391858],[-124.94093276779013,57.99058609830512],[-124.94106341625982,57.990753142178114],[-124.94119829499489,57.99092021950084],[-124.94136524120664,57.99107521266383],[-124.94153641793487,57.99123023918075],[-124.94170971065456,57.991385282269796],[-124.94188515100099,57.99153922050148],[-124.9420606243898,57.991692037106695],[-124.94223606760859,57.991845974927955],[-124.94241151226618,57.991999912544074],[-124.94258698995084,57.992152728533064],[-124.94276881295443,57.992305594563526],[-124.94294855437772,57.99245732220281],[-124.94310910756202,57.99261450604756],[-124.94325249228638,57.992780527179974],[-124.94336617825087,57.99294967810761],[-124.94335891833782,57.993132453368524],[-124.94332369423165,57.99325668027769],[-124.9453945837082,57.994154693116975],[-124.94564501311899,57.99427556884476],[-124.9459019143551,57.99439200851461],[-124.94616307817982,57.99450735966952],[-124.94640274974638,57.994634879100374],[-124.94659059844497,57.99480012609489],[-124.94680962896882,57.99490953512756],[-124.94714120154741,57.99485270198159],[-124.94747258445447,57.99480259657389],[-124.94779954832777,57.994759185566394],[-124.94812657429486,57.99471353090716],[-124.94844756932291,57.99465661120725],[-124.94875839784572,57.9945850289249],[-124.94906303789547,57.99450778884423],[-124.94936565610205,57.994427167151194],[-124.9496662523967,57.994343163860194],[-124.94996883661113,57.99426366224041],[-124.95026734686837,57.994178519549486],[-124.95058419865713,57.99411819720568],[-124.9509151630497,57.99408266183361],[-124.95123816919144,57.994029116361276],[-124.95155514344691,57.99396430601748],[-124.95185974139217,57.99388818103273],[-124.95216234859758,57.99380755305362],[-124.9524587981282,57.993720146051665],[-124.95275114200348,57.99362821951293],[-124.95303306731415,57.993530602280515],[-124.95327770834038,57.993404650330135],[-124.95335240237486,57.993229133653344],[-124.95352567271122,57.99308355326738],[-124.95376825700978,57.992955341048635],[-124.9540274757431,57.99283735380308],[-124.95429493280783,57.9927272823136],[-124.95457069076214,57.99262288367681],[-124.95484849938553,57.99252074389048],[-124.95512425428336,57.99241634413339],[-124.95538756947968,57.992302873122384],[-124.95561754820163,57.99217119408043],[-124.95592265358923,57.99207599574631],[-124.95630316656674,57.9920071847678],[-124.95661010297385,57.991922094238944],[-124.95669858338643,57.99178257727336],[-124.95669256068489,57.99161876660601],[-124.95667182941828,57.99145147599332],[-124.956636420957,57.99127958400602],[-124.9565883877457,57.991105350013264],[-124.95652984452785,57.990928790533786],[-124.95646290601117,57.99074992208698],[-124.95638968686632,57.99056876119481],[-124.95631223937187,57.990387567228844],[-124.95623059476843,57.99020521875912],[-124.95615106546555,57.990022886812135],[-124.95607153693511,57.989840554853394],[-124.95599409247826,57.98965936084467],[-124.95592296101128,57.98947933787014],[-124.95586022571395,57.989301623902215],[-124.95586916421605,57.98913232231644],[-124.9560153234485,57.988971945821234],[-124.95617416806796,57.98881166841351],[-124.95633929227299,57.9886536832885],[-124.9565044150884,57.98849569798607],[-124.9566611723572,57.988334282128655],[-124.95681170970782,57.988168330853526],[-124.95697266192221,57.98800806916034],[-124.95716069483088,57.9878626005392],[-124.9573945886138,57.98774104488696],[-124.95767639537885,57.987645661306104],[-124.95798528289068,57.987565070206706],[-124.95829625232678,57.98748561632258],[-124.95858856447283,57.98739255619623],[-124.95885811483373,57.987281371286294],[-124.95913170575459,57.98717694734446],[-124.9594381611349,57.987107550632196],[-124.95976936605766,57.98706077937785],[-124.96008897126084,57.986974658758854],[-124.96038755865898,57.98696016003231],[-124.96066637509266,57.98704869956539],[-124.96094025032053,57.98716299827045],[-124.96120324515842,57.987288428349196],[-124.96144721248753,57.98741370985092],[-124.96165896965752,57.9875566869185],[-124.96187075944886,57.98769854225081],[-124.96211700106313,57.98781823192289],[-124.96240406856126,57.98791468362757],[-124.96271703702023,57.98799226775195],[-124.9630412911762,57.98804414058402],[-124.96337076588482,57.98806015997167],[-124.96371363922087,57.988050484341656],[-124.964056605211,57.988037443564615],[-124.9643904637626,57.98804788614758],[-124.96471705158123,57.98809192136213],[-124.96503667866229,57.98815833504132],[-124.96534558029653,57.98823027311721],[-124.96564354028368,57.98831558562548],[-124.96593932542912,57.988403123940465],[-124.96623511195384,57.98849066160821],[-124.9665374283695,57.98857151920604],[-124.9668529264667,57.988634531554986],[-124.96717495404197,57.988690863707504],[-124.96749698258353,57.98874719508661],[-124.96781465987563,57.9888079786836],[-124.96812136526017,57.98888325830549],[-124.96842365808527,57.98896523308934],[-124.96871513349785,57.98905609690219],[-124.96898500372379,57.98916361812208],[-124.96925695917705,57.98927227656296],[-124.96947513078935,57.989414169077286],[-124.96967819487148,57.98956716125158],[-124.96992039848944,57.989681196994276],[-124.97022555442449,57.9897362698731],[-124.97056328978566,57.98976018677059],[-124.97091414294307,57.98976850067196],[-124.97125874494492,57.989773400480814],[-124.97159366541189,57.989745696586134],[-124.97193014710514,57.98973819380684],[-124.97226699706106,57.989717233066514],[-124.9726017628343,57.989695133774205],[-124.97294020497075,57.98969325185591],[-124.97327849372567,57.98969697621078],[-124.97361684386654,57.989698456855606],[-124.97395335538131,57.98968982755011],[-124.97429005057715,57.98967446883759],[-124.9746268680144,57.98965462356987],[-124.9749616624593,57.98963139693407],[-124.97530270814049,57.98961158243974],[-124.9756477682544,57.98959964951759],[-124.97591177760815,57.98969028670864],[-124.97604040289315,57.98985952279679],[-124.97613507473532,57.99003298497941],[-124.97622551839913,57.99020641468925],[-124.9763308258111,57.99037771503647],[-124.97646806639837,57.990541408566465],[-124.9766266065825,57.99069965697074],[-124.97677871271482,57.99086122086847],[-124.97692873614501,57.99102164698453],[-124.97707873030012,57.99118319438849],[-124.97722664170789,57.99134360401968],[-124.97737449328231,57.991506256373476],[-124.97751385715523,57.99166996522751],[-124.97766174179965,57.991831495890246],[-124.97783310237101,57.991985354537526],[-124.97801295342187,57.99213815632294],[-124.97819921092061,57.99228876359345],[-124.97839405060273,57.9924349496442],[-124.97864239908134,57.99255798991205],[-124.9789014445394,57.99267662489288],[-124.97917348463628,57.992784142107254],[-124.97947828303556,57.992853772624365],[-124.9798115486847,57.9928877267504],[-124.98014910523294,57.99291946949601],[-124.98046686876863,57.99297910182026],[-124.98076695459534,57.993066640017275],[-124.98107163648552,57.99314075264596],[-124.98140294357565,57.99316907950609],[-124.9817457068169,57.993164964663606],[-124.98208046734224,57.99314396294964],[-124.98241347759281,57.993109487086144],[-124.98274851075453,57.993078390806446],[-124.98308308767052,57.99306411517497],[-124.9834215292805,57.993063328106906],[-124.98376196413055,57.99306704201127],[-124.98410644633758,57.99307751583258],[-124.98443304939028,57.99304522951647],[-124.9846895723607,57.99294510956433],[-124.98466127569442,57.99313109048758],[-124.98470723608679,57.9933086629592],[-124.98477648910806,57.99348529093664],[-124.98487124078603,57.993657626164044],[-124.98499360617363,57.993825684664756],[-124.9851351266258,57.99398940204928],[-124.98530009247733,57.99414656753656],[-124.98548430472293,57.99429602745674],[-124.98568341272983,57.9944422353275],[-124.98588469765907,57.99458621612034],[-124.98608380876455,57.99473242343959],[-124.98629364681614,57.994873103605656],[-124.98652919712029,57.99500164034272],[-124.98678408501874,57.99511910679056],[-124.98704752455879,57.995233272649],[-124.98732582995676,57.99534530743218],[-124.98762114637121,57.995454105648605],[-124.98789314085558,57.99556496972355],[-124.98809936529216,57.99568318637223],[-124.98796600611263,57.99584369533927],[-124.98783657311132,57.99601545064306],[-124.9877367773264,57.9961863089328],[-124.98763695038704,57.9963582886169],[-124.98752660859354,57.99652794518304],[-124.98740363692694,57.99669526256165],[-124.98728486371968,57.99686373338305],[-124.98717234341238,57.9970356165814],[-124.98707033617549,57.99720982283041],[-124.98707199009836,57.997383693951015],[-124.98716041731971,57.997555980134536],[-124.98726781943195,57.99773065356853],[-124.98732017293909,57.997907152712514],[-124.9873089263999,57.99808877777722],[-124.98735070567312,57.99826519675934],[-124.98743699100166,57.99843858832052],[-124.98753176739812,57.998610922578195],[-124.98763291995688,57.99878218347537],[-124.98773618846299,57.99895346036439],[-124.98783731263528,57.99912584261096],[-124.98793209260506,57.99929817671195],[-124.98801623770308,57.99947267349948],[-124.98808977803073,57.999648211552945],[-124.98815485875222,57.99982368547884],[-124.98822202493416,58.000000296877396],[-124.98824465386224,58.000181057449325],[-124.98840687986753,58.00036287585186],[-124.98846776330741,58.00053719626526],[-124.9884989146863,58.00071577811326],[-124.98853218149564,58.000894376012496],[-124.98857179405381,58.00107302200863],[-124.98861140698904,58.001251668027486],[-124.9886552808495,58.00142922466964],[-124.9886991249066,58.001607902775525],[-124.98874722996707,58.001785491498815],[-124.98879533548278,58.00196308023861],[-124.98884978706677,58.0021407170529],[-124.9889021239518,58.002318337860586],[-124.98894811565894,58.00249591062901],[-124.98899199256681,58.002673467398964],[-124.98904221562327,58.00285107223691],[-124.9891136521148,58.00302659434988],[-124.98920409644876,58.00320338202763],[-124.9894313385092,58.003328486404236],[-124.98975585262879,58.003376930850365],[-124.99005425452363,58.00329506270804],[-124.99032585060337,58.00318719269509],[-124.99059539019,58.00307706325793],[-124.99086695298207,58.00297031361589],[-124.99113642913001,58.00286242600477],[-124.99138514313755,58.00273979927395],[-124.99165250090759,58.00263189466916],[-124.99195720830609,58.002551191710204],[-124.99224532384473,58.002458024434986],[-124.99251899268279,58.00235128746982],[-124.99279054475241,58.002244533999274],[-124.99307862578029,58.002152486402586],[-124.99338538126489,58.002074039069804],[-124.99369618544664,58.00200235159834],[-124.99401100841017,58.00193854540411],[-124.99433390041548,58.00188938099616],[-124.99467200080103,58.00190426563803],[-124.99500804632075,58.00191689061059],[-124.99534620726176,58.00192953065377],[-124.99568442845066,58.00193992694853],[-124.99602267982688,58.001949200940324],[-124.99635890614272,58.0019550938364],[-124.99669936295926,58.00196101767541],[-124.99703570936602,58.00196242308165],[-124.99737456047049,58.00194926471988],[-124.99770948043964,58.00192485927503],[-124.99804615589443,58.00191392622368],[-124.99838437769029,58.001924315679055],[-124.99872009552487,58.00194926722368],[-124.99904901956452,58.0019909920562],[-124.99937118012762,58.00204836878215],[-124.99968026185336,58.00212022846342],[-124.99999971165329,58.00220001677978],[-125.0004937647886,58.00239664368113],[-125.00069508946721,58.00254284626967],[-125.00086656350261,58.00269779856325],[-125.00101247684854,58.00285928943741],[-125.00115198597749,58.00302297560483],[-125.00130853784412,58.00318230243554],[-125.00147146671037,58.00334055511887],[-125.0016322816643,58.00349879181376],[-125.00179309797427,58.00365702834198],[-125.00194968503169,58.00381523308021],[-125.00209346224891,58.00397782860622],[-125.00222231418691,58.00414479915619],[-125.00233418498539,58.00431388606937],[-125.00240991710902,58.00448943295395],[-125.0024538600352,58.004666985679094],[-125.00248293622099,58.00484667070418],[-125.00251627323915,58.00502526591194],[-125.00256867882695,58.00520288191259],[-125.00267837933998,58.00537419583228],[-125.00290985066259,58.005501552065965],[-125.00318410831942,58.00561128052951],[-125.00346712703461,58.005709857069476],[-125.00371570509525,58.005830609537114],[-125.00394706368765,58.005962449846805],[-125.00418488924413,58.00608985129121],[-125.00441839627642,58.00622058514433],[-125.0046283672867,58.00636123822879],[-125.00486831313947,58.00648865428023],[-125.0051384122738,58.00659610440829],[-125.00546402040538,58.006684898952265],[-125.00574227577141,58.006644347452],[-125.00597466727426,58.00649801650111],[-125.00618581337507,58.006354892085845],[-125.00634657330924,58.00619681066123],[-125.00648841176726,58.006034101598914],[-125.00669949393058,58.00589321934999],[-125.00692112190964,58.00575353690719],[-125.00725788835975,58.00574033767701],[-125.00753463180419,58.00583661551981],[-125.007805534458,58.00591378093013],[-125.00814924112323,58.00587819753394],[-125.00848633419707,58.00585265921374],[-125.00882351567375,58.00582375568187],[-125.00914627364013,58.00578016251707],[-125.00942203403982,58.00567340622554],[-125.00967279273003,58.00555188220952],[-125.00986708499171,58.00540526224386],[-125.00999630162131,58.005239091116806],[-125.01002266232784,58.00504187219359],[-125.01011141880338,58.00488549609791],[-125.0104087532438,58.004842833187595],[-125.010781264574,58.00483774177105],[-125.01110827206456,58.004793053801016],[-125.01143342929085,58.00473825629366],[-125.01174621827894,58.0046710280761],[-125.01204464152552,58.004586867774165],[-125.01232658337685,58.00448575984163],[-125.01259600870402,58.004377828750094],[-125.01285089063092,58.00425969458046],[-125.01309328543049,58.00413361596031],[-125.01333359276592,58.00400639983345],[-125.01356761148845,58.00387689350388],[-125.01382457279168,58.003759894619456],[-125.01411490591629,58.003661088399845],[-125.01443537658342,58.00362307419554],[-125.01477799611264,58.00362784610957],[-125.01508865455966,58.00356059453476],[-125.015378923969,58.003464028492616],[-125.01566293427298,58.00336405068941],[-125.01593862897711,58.00325840267186],[-125.01618929163428,58.00313910964037],[-125.01638348716303,58.002994723479944],[-125.01654427791382,58.00283326599841],[-125.01669237580514,58.002671714883384],[-125.01682366804135,58.002505553219024],[-125.01697384929038,58.0023451388762],[-125.01717018228086,58.00219964581776],[-125.01739586245729,58.00206446349403],[-125.01763611260678,58.00193836135941],[-125.01787847633993,58.00181227436903],[-125.01808108992488,58.00166906963406],[-125.01825858379584,58.001515584920995],[-125.01845702264028,58.0013701056539],[-125.0186701194898,58.00123034219468],[-125.01889367327772,58.00109514193389],[-125.01911719614596,58.0009610627687],[-125.0193302882149,58.000821298317526],[-125.01953709188453,58.00067924404862],[-125.01974389398879,58.00053718948119],[-125.01996741049717,58.000403108973316],[-125.02023270069525,58.000289524649276],[-125.0205413529585,58.000216637861534],[-125.02085003327976,58.000142628916414],[-125.02115868313629,58.000069740713066],[-125.02138052508614,57.99999958052285],[-125.02200490611115,57.99990657107941],[-125.02233188648638,57.99986073441293],[-125.02266929548986,57.99982058161295],[-125.02295287638539,57.99989780869126],[-125.02323158617453,57.999999676122115],[-125.02385339693282,58.0001679868182],[-125.02434041266514,58.000232116573656],[-125.02466526560158,58.00026814005642],[-125.02498947823167,58.000328834664586],[-125.02530108855636,58.0003860714874],[-125.02563452069494,58.00041766858098],[-125.02596801160301,58.000447021940765],[-125.02629924243553,58.00048196629855],[-125.02662806791226,58.00052810892776],[-125.02692200536166,58.00061437634859],[-125.02717271119293,58.00073622134805],[-125.02732513366522,58.000895486448044],[-125.02742009939593,58.001067792818915],[-125.02748748161358,58.001243263222094],[-125.02755057598644,58.00142094571754],[-125.02754595581843,58.00159925669017],[-125.0276069649226,58.001775802368044],[-125.02767220502068,58.00195237886004],[-125.02778418393025,58.00212144404038],[-125.02793444130073,58.00228293618761],[-125.0280018571494,58.00245728510739],[-125.02803528442962,58.0026369949261],[-125.02806028003783,58.002815521725054],[-125.02808101630322,58.00299513921297],[-125.02809963748798,58.00317474133514],[-125.0281161726039,58.00335320663725],[-125.0281326788353,58.00353279342714],[-125.02815764646226,58.003712441835994],[-125.02818687400772,58.00389099961136],[-125.02822667847904,58.004069634392394],[-125.02827920440511,58.00424724010794],[-125.02834659634783,58.0044227106797],[-125.02841821963958,58.004598212035376],[-125.02849195897053,58.004773728777224],[-125.02856784340035,58.004948139444615],[-125.02864581489688,58.00512368694785],[-125.02872593154733,58.00529812836886],[-125.02880604894254,58.005472569774696],[-125.02889042694079,58.00564592047728],[-125.02897477670018,58.005820392617174],[-125.02906127169818,58.00599375866052],[-125.02914988294349,58.00616714006112],[-125.02924061046552,58.0063405368148],[-125.02933348330194,58.00651282745827],[-125.02942847246858,58.006685133445544],[-125.0295255779947,58.0068574547722],[-125.02962479990963,58.00702979143389],[-125.02972405173288,58.00720100659375],[-125.0298275354945,58.007372252451866],[-125.02993104919172,58.00754237680099],[-125.0300387659107,58.00771365329547],[-125.03014865712812,58.00788270217803],[-125.03025852035387,58.0080528724621],[-125.03037264468355,58.0082219519488],[-125.03049314573887,58.00838995598619],[-125.03061790801158,58.00855686919872],[-125.03075119170099,58.00872160082294],[-125.03089296793266,58.00888527229451],[-125.03104541033498,58.00904565601154],[-125.03120640338453,58.009202736587426],[-125.0313822940328,58.00935656002637],[-125.03157099572334,58.00950598946215],[-125.03177465312625,58.009649918714125],[-125.03199761335536,58.00978389252844],[-125.03225054151248,58.00990462307179],[-125.03252288820313,58.0100109120677],[-125.03280821954195,58.01010607781655],[-125.03310218842724,58.01019457545263],[-125.03340262130288,58.01027863253253],[-125.03370308440508,58.01036156747951],[-125.03400140427237,58.01044560791895],[-125.03429752319092,58.01053299679531],[-125.03459367234282,58.01061926355825],[-125.03489411195962,58.010703317321635],[-125.03519463943132,58.01078400602007],[-125.03549728391106,58.01086470932968],[-125.03580207423114,58.0109443057702],[-125.03610475011945,58.01102388625127],[-125.0364052539614,58.01110569371966],[-125.03670573032215,58.011188621985525],[-125.03700403470664,58.01127377725945],[-125.037298022635,58.01136226577147],[-125.03758117431298,58.01146077061043],[-125.0378492008543,58.011571504296555],[-125.03810439065089,58.01168775336072],[-125.03836166905587,58.011805138654324],[-125.03863401811573,58.01191253687386],[-125.03892369715295,58.01200435581033],[-125.03922856143157,58.012081701593445],[-125.03954209107992,58.0121512572753],[-125.03985790987278,58.01221409862792],[-125.0401780760718,58.01227248377676],[-125.04050044510423,58.01232751895727],[-125.04082287242096,58.0123803104255],[-125.04114967555559,58.01242752415603],[-125.04148088302865,58.012468038646674],[-125.0418121771365,58.01250518791059],[-125.04214132745744,58.01254344264835],[-125.04247033534827,58.01258730392292],[-125.04279499792968,58.01263561993754],[-125.04312174856757,58.01268507179452],[-125.04344635565127,58.012735629170095],[-125.04376873345609,58.01279065648939],[-125.0440889392315,58.012847910829684],[-125.04440688733679,58.01291075661709],[-125.0447205191708,58.01297693579413],[-125.04502977770608,58.01304869133293],[-125.04533457745022,58.01312938767676],[-125.04562645518263,58.013218964379135],[-125.04591178711026,58.01331634540268],[-125.04618634163202,58.013421500569926],[-125.04644800295739,58.01353441484308],[-125.04669459826522,58.01365731614067],[-125.04692401171926,58.0137901894509],[-125.04713847314014,58.01392856407494],[-125.04734009835806,58.014072455179864],[-125.04753100322402,58.01422187791631],[-125.04770701278746,58.01437455921398],[-125.0478723303067,58.01453165077478],[-125.04802489668086,58.014690894612755],[-125.048171031159,58.01485345748499],[-125.04830653023383,58.0150181877859],[-125.04843565416161,58.0151839942264],[-125.0485583744285,58.015351998299366],[-125.04867686382755,58.01551997214708],[-125.04879109386798,58.01568903725497],[-125.04889468806353,58.015860269905005],[-125.04897492178299,58.01603470119705],[-125.04904454770978,58.01621017862026],[-125.04911417428785,58.01638565604066],[-125.04920078670028,58.01655901101487],[-125.04931502226508,58.0167280758653],[-125.04944627259567,58.016893896697795],[-125.04957540801584,58.017059702373736],[-125.04970666065744,58.01722552300989],[-125.04984429113104,58.017390267230056],[-125.049990472406,58.01755170711051],[-125.0501494367691,58.01770987271858],[-125.0503275610788,58.01786368766596],[-125.05052710355139,58.01800755952837],[-125.05075870168861,58.01813932044321],[-125.0510333050901,58.01824446619663],[-125.0513448486987,58.01831173664444],[-125.0516739462817,58.0183544540426],[-125.05200978980854,58.01838151499135],[-125.0523458037968,58.018401846225544],[-125.05268184646867,58.01842105513636],[-125.0530203170374,58.01842794193975],[-125.05335737906242,58.01840677592003],[-125.05369037814869,58.018378850193336],[-125.05402721312109,58.018366654314285],[-125.0543631998002,58.01838810195226],[-125.05468784311348,58.01843975379706],[-125.05500365545514,58.01850592419934],[-125.05531077835009,58.01858100582818],[-125.05561138459272,58.01866277074875],[-125.05590979130784,58.0187478844819],[-125.05620819937697,58.018832997556245],[-125.05650011923694,58.01892367252878],[-125.05677906143131,58.01902547201458],[-125.05703430419885,58.01914392880456],[-125.05726381600553,58.0192756636635],[-125.0574804913031,58.01941291595823],[-125.05769070686073,58.019554609059334],[-125.05789025839886,58.01969959166688],[-125.05808129023669,58.01984675727145],[-125.05826586223961,58.019998363793874],[-125.0584397981947,58.020152138465214],[-125.05860733051621,58.02030811115699],[-125.05876631474818,58.02046738846484],[-125.05891680709325,58.020627727455945],[-125.05905451862424,58.02079134131045],[-125.05917518849402,58.02095932174217],[-125.0592724676033,58.02113162408804],[-125.05934215115751,58.0213070971127],[-125.05938000613875,58.02148571105666],[-125.05938820467915,58.021665237883326],[-125.05937735619797,58.021844630625694],[-125.05935169313109,58.02202391908468],[-125.05931335975507,58.02220199667021],[-125.05927079326591,58.0223800444715],[-125.05922399360338,58.02255806248434],[-125.05917930989136,58.02273609542058],[-125.0591367421599,58.02291414328251],[-125.05908359195077,58.02309211663126],[-125.05902623652129,58.023268938691935],[-125.05896464768188,58.02344573094444],[-125.0588988253728,58.02362249338305],[-125.0588372634919,58.02379816415835],[-125.05877778935735,58.02397497133728],[-125.05872251946765,58.02415292983596],[-125.05867783147576,58.02433096291339],[-125.05864160903755,58.02450905566632],[-125.05860115324637,58.02468711861474],[-125.05855434752752,58.02486513683981],[-125.05850754136438,58.0250431550828],[-125.05846920089535,58.02522123301083],[-125.05844988081172,58.02540056670488],[-125.05846230886578,58.0255801241866],[-125.05853834658853,58.02575564322958],[-125.05874228011412,58.02589616941718],[-125.05906479346002,58.02595116060072],[-125.05940333314764,58.025958031286784],[-125.05974020620805,58.02594694239043],[-125.06007724769336,58.02592912370903],[-125.06041426076453,58.0259124256671],[-125.06075310927142,58.025906956549875],[-125.06109181731122,58.02590709402069],[-125.06143066567115,58.02590162318509],[-125.06176959809237,58.02589278702138],[-125.06210635769385,58.02588617811811],[-125.06244503751773,58.02588743364796],[-125.0627834091105,58.0259010247073],[-125.06311712760066,58.0259314075727],[-125.06344638944836,58.025970731850364],[-125.06377336744383,58.02601676942666],[-125.06410023430661,58.026067292166246],[-125.06442281292638,58.02612002744517],[-125.06474319196836,58.026176111602645],[-125.06506563265246,58.02623445278907],[-125.06538598568733,58.02629165690299],[-125.06570633969935,58.0263488602524],[-125.06602886714572,58.02640383465187],[-125.06635145137112,58.026456565293465],[-125.06667835344581,58.02650596025859],[-125.0670075403783,58.026548640258845],[-125.06733901199966,58.02658460527643],[-125.06767059576664,58.02661608350627],[-125.06800646906282,58.026645347461724],[-125.06834022626255,58.026674595813596],[-125.06867392828768,58.02670608631666],[-125.06900537506041,58.02674316869842],[-125.06933245009519,58.026785828231596],[-125.06965278652744,58.026844143641426],[-125.06995783475936,58.026921420518505],[-125.07025199524399,58.02701095947599],[-125.07054612934112,58.027101619287436],[-125.07084466485962,58.02718557894322],[-125.07115843490631,58.02725281855165],[-125.07149000002153,58.02728540881864],[-125.07182899808085,58.027274304135936],[-125.07215810625823,58.027235087758626],[-125.07247919088753,58.02717786789895],[-125.07279208519485,58.02710937357835],[-125.0730988501543,58.027031862528375],[-125.0734014359821,58.02695207843383],[-125.07370404821995,58.02687117216768],[-125.07400866502915,58.026794765866825],[-125.07431949207943,58.02672401034088],[-125.07464065204387,58.02666342083916],[-125.074963678655,58.02661293866389],[-125.07529291599955,58.026568107127346],[-125.07562206963809,58.02652663926136],[-125.07595325627238,58.02648854970596],[-125.07628232562307,58.02645044469669],[-125.07661353852406,58.02641123201447],[-125.07694271692598,58.02636863940884],[-125.07726988833703,58.02632154540182],[-125.07759296362629,58.026268813901886],[-125.07790993635146,58.026205944357685],[-125.07822284019512,58.02613631589832],[-125.07852950331618,58.02606215694168],[-125.07883624785423,58.0259846328074],[-125.07913884056369,58.02590371431722],[-125.07943725386423,58.0258205229936],[-125.07973572087333,58.025735088024724],[-125.0800321249699,58.02564739483573],[-125.08032641111832,58.02555968642719],[-125.08062075086939,58.02546973439271],[-125.08091294517577,58.02538088865048],[-125.08120728211726,58.02529093534141],[-125.08150159018417,58.02520210288554],[-125.08179586940305,58.02511439128267],[-125.08209223633344,58.02502781507528],[-125.08239066355168,58.02494349574183],[-125.08269532929138,58.024863705318865],[-125.08300200058346,58.024788414706805],[-125.08331078716014,58.02471313792016],[-125.08361333256035,58.02463333090073],[-125.08390554065382,58.024543357202035],[-125.0841790821858,58.024437551395316],[-125.08442972398059,58.024315884590074],[-125.08466362382762,58.02418625087241],[-125.08489752205803,58.02405661676348],[-125.08513977514704,58.023931526208386],[-125.08540500694178,58.02381893103376],[-125.08570341709589,58.02373460441148],[-125.08603646668924,58.02370547639812],[-125.08637499102515,58.02371227872383],[-125.08671340625979,58.0237235661603],[-125.08705030574716,58.02371016544761],[-125.08737537939308,58.02366078938307],[-125.0876902517815,58.02359563937171],[-125.08800108104633,58.023522609280135],[-125.08830566879482,58.023445049171045],[-125.08860822058932,58.02336410945868],[-125.08891074383817,58.02328429056036],[-125.08921738974216,58.02320898581093],[-125.08952615084395,58.023133694788534],[-125.08983282149374,58.023057267146996],[-125.09013737447336,58.02298082439286],[-125.09044404262809,58.02290439536104],[-125.09075070953322,58.02282796563145],[-125.09105941007054,58.022754914080124],[-125.09137017147765,58.02268411920041],[-125.09168505588634,58.022617838351174],[-125.09200403624146,58.02255719299423],[-125.09232505054722,58.02249992573534],[-125.09264807175336,58.022447158050866],[-125.09297521635648,58.02239890429544],[-125.09330227879387,58.0223540142169],[-125.09363137553798,58.02231250217488],[-125.09396456887681,58.02227662549186],[-125.09428552363148,58.02222159652296],[-125.09460039900651,58.02215530883563],[-125.09491527326873,58.02208902041091],[-125.09521158601501,58.02200241538742],[-125.09550787035135,58.02191693120645],[-125.09582274100916,58.021850640660034],[-125.09615980957508,58.02182936656102],[-125.09649272608186,58.02180469850838],[-125.09682955083541,58.02179351614639],[-125.09716463692276,58.02176661774551],[-125.09749961460112,58.021744204472434],[-125.0978361148467,58.02174647747609],[-125.09815917573684,58.02169145352557],[-125.09848627970729,58.02164430780635],[-125.09882136327384,58.02161740525419],[-125.09915237526424,58.02158374436599],[-125.09947339724894,58.02152533849906],[-125.09977794505802,58.02144775240367],[-125.10008246470278,58.021371287112395],[-125.1003476335414,58.02125866258815],[-125.10062528360827,58.02115509497895],[-125.1009049946983,58.02105378403212],[-125.10118261483862,58.0209513367792],[-125.10145399200191,58.02084436028759],[-125.10171497411298,58.02072946165937],[-125.10195506019072,58.0206032053463],[-125.1021700445031,58.0204644415259],[-125.10237034747439,58.02031997037775],[-125.10257064890297,58.02017549895193],[-125.10277933335558,58.02003444857981],[-125.10301108047508,58.01990252615182],[-125.10326784558268,58.01978647469485],[-125.1035350830955,58.01967497973505],[-125.1037939344651,58.01956006298865],[-125.1040465427087,58.019440617209945],[-125.10430956978054,58.019327970863124],[-125.10460586579818,58.01924022377296],[-125.1049386467414,58.01922002070313],[-125.10526770622867,58.01926709205396],[-125.1055902574518,58.0193208490299],[-125.10592389855806,58.0193533677314],[-125.10625314748242,58.01939258622638],[-125.10655606753546,58.01947088623932],[-125.10680930080143,58.019591476776355],[-125.10703470419422,58.019725340834626],[-125.10723656353808,58.01987026386576],[-125.10743630818162,58.0200151724739],[-125.10764462615147,58.02015565138861],[-125.10785717823315,58.020296158268245],[-125.10806547267394,58.02043775806194],[-125.10826522354087,58.02058266551989],[-125.1085551398126,58.02067433424694],[-125.10888651938072,58.02071356043063],[-125.10922245181754,58.02073935610275],[-125.10955396576306,58.02077297316799],[-125.10987433993407,58.02083007025978],[-125.110185930613,58.02090056811872],[-125.11049746927704,58.02097330824335],[-125.11081131155412,58.02103821127862],[-125.11113825146181,58.021086375667345],[-125.11147429504081,58.02110767971166],[-125.11181277397124,58.02111553905451],[-125.11214903054442,58.021127869449934],[-125.1124826138043,58.02116373631617],[-125.11280296924532,58.02122194790271],[-125.11311459519743,58.021291317466115],[-125.11342402644668,58.021364036745666],[-125.11373785055909,58.0214300544277],[-125.11406260183362,58.02148156212344],[-125.11439859765954,58.02150510181051],[-125.11472956820676,58.02147252382464],[-125.11504440115637,58.02140618800768],[-125.11536335987647,58.02134436546397],[-125.11568647089989,58.02128593466825],[-125.11591847662588,58.02141085405102],[-125.11603726029662,58.02157989066681],[-125.1161943773438,58.02173908579108],[-125.11642839826588,58.021868504334996],[-125.11668387505087,58.021985725976165],[-125.11694578177905,58.02209962462586],[-125.11719906618644,58.02222019581013],[-125.11744166470258,58.02234518260505],[-125.11767783649061,58.02247349153106],[-125.1179075815473,58.02260512262378],[-125.11812232873059,58.02274450602053],[-125.1183221307273,58.022889398802334],[-125.11851981783317,58.02303427734273],[-125.11872816772436,58.023175860930344],[-125.11895149239292,58.02331081293625],[-125.1191791042543,58.02344354950192],[-125.1194109769853,58.02357519210268],[-125.11965356531314,58.023701296563665],[-125.11990477907295,58.023820727381704],[-125.12017102028177,58.023931283325005],[-125.12044800330546,58.02403517942971],[-125.1207336378778,58.0241312801969],[-125.1210235857606,58.02422404371599],[-125.12131570412899,58.024314577536686],[-125.12160779764423,58.024406232227484],[-125.12189560704108,58.02450010146543],[-125.12218947874348,58.024606348317946],[-125.12246861511049,58.02470913271639],[-125.12274777923666,58.02481079504242],[-125.12303125662311,58.024909120081574],[-125.12332121620022,58.02500187869265],[-125.1236111772114,58.02509463668368],[-125.12390547755268,58.02518293580946],[-125.12420625989829,58.02526566841379],[-125.1245157454319,58.02533836231507],[-125.12483837643501,58.025392073166536],[-125.12517211437462,58.0254234225042],[-125.12550836165614,58.0254379623339],[-125.12584727465371,58.025428963623916],[-125.12618030806398,58.025399735485195],[-125.12651736515627,58.02537950621136],[-125.12685583356418,58.02538957047928],[-125.12718957316748,58.02542091477727],[-125.12751670273308,58.0254634317982],[-125.12784150784182,58.02551490622271],[-125.12816409298908,58.025570852058635],[-125.12848236775432,58.02563013401243],[-125.12879183853212,58.02570393953986],[-125.12906671588578,58.02580892567574],[-125.12928366551269,58.02594718390997],[-125.12944725896521,58.0261041625781],[-125.12958741480585,58.026267718407176],[-125.12973609043264,58.02642908626132],[-125.1298762487468,58.02659264184534],[-125.13001429163468,58.02675618352811],[-125.13019490295818,58.02690990716999],[-125.13048489571642,58.02700265043505],[-125.13082139311976,58.02700708337435],[-125.13115828029547,58.02699469289124],[-125.13149725794115,58.02698343682372],[-125.13183613154644,58.02697666591662],[-125.13216999322917,58.027003511807074],[-125.13247300288981,58.027082875196825],[-125.13275869147607,58.02717895057182],[-125.1330725723368,58.027246044753866],[-125.13340186708011,58.027287439678304],[-125.13373555133087,58.02732213220645],[-125.1340693656625,58.0273512163726],[-125.13440325816006,58.02737693518748],[-125.13473924192957,58.02740378838321],[-125.13507310949164,58.02743062703177],[-125.13540922348531,58.027451871012765],[-125.13574541538775,58.02746974962937],[-125.13607923259141,58.02749882877873],[-125.13640182126292,58.027555876351684],[-125.13670698685407,58.02763412236212],[-125.13700998540325,58.02771459702389],[-125.13732609824223,58.02777720889651],[-125.13765537655668,58.02781971486884],[-125.1379915212751,58.027839830855456],[-125.1383266833341,58.02781058601977],[-125.13863117600455,58.0277340323373],[-125.13895012389311,58.027673274562325],[-125.1392831670143,58.02764401369089],[-125.13962227672198,58.02762712946479],[-125.13995911512319,58.02761695979735],[-125.14029791580212,58.02761353194614],[-125.1406364337572,58.027622439819126],[-125.14097268105212,58.0276380622709],[-125.14131101965407,58.02765481898872],[-125.14164719052113,58.027673804266904],[-125.1419833873848,58.02769166719162],[-125.14232182950661,58.027703935319025],[-125.1426603743942,58.02771171655706],[-125.1429989706742,58.027717253920976],[-125.14333761828586,58.02772054741039],[-125.14367634277414,58.02772047551666],[-125.14401310412693,58.02771366015266],[-125.14435012121295,58.027695628856016],[-125.14468713797494,58.02767759670968],[-125.14502586207269,58.02767752139468],[-125.1453619328018,58.02770098336089],[-125.14569343844317,58.02773899702542],[-125.1460227514377,58.02778036086602],[-125.14635214173585,58.027818359369974],[-125.14668821455643,58.02784181800366],[-125.14702673608805,58.02785070968835],[-125.14736556372621,58.027846142405465],[-125.14770054013145,58.027824724619435],[-125.1480337051458,58.027789834385786],[-125.14836281437638,58.02774706577312],[-125.14868988251496,58.0277009183366],[-125.14901284366688,58.027649135591226],[-125.14933590567271,58.027592866031235],[-125.1496548095902,58.0275332042218],[-125.14997164663154,58.02747128516967],[-125.15029057391183,58.02741050034156],[-125.15060536837248,58.02734520180551],[-125.15091401479202,58.02727089010313],[-125.15121235576332,58.02718417385722],[-125.15147947803233,58.027073703619855],[-125.15165861186217,58.02692229407655],[-125.15175353449813,58.02675015963448],[-125.15181892465868,58.02657335099729],[-125.15186317320068,58.0263952864844],[-125.15187993054269,58.02621592580713],[-125.15189245449261,58.026036538289624],[-125.15190921153436,58.025857177678745],[-125.15192173522449,58.02567779022855],[-125.15193637538039,58.02549841624818],[-125.1519700645753,58.02531916322121],[-125.15203330930103,58.02514346282584],[-125.15212401795561,58.02497018007846],[-125.15223369864326,58.02480038270365],[-125.15235391033329,58.024632895429434],[-125.15248256171948,58.02446658329297],[-125.15260912078303,58.0242991361316],[-125.15273986106952,58.024133958738716],[-125.1528979880621,58.0239745632465],[-125.15314419609373,58.023851619299734],[-125.15346507739622,58.02379644807684],[-125.15380396882973,58.0237873784655],[-125.15414008606513,58.02380745373622],[-125.15447159147126,58.02384432395425],[-125.15480536564655,58.02387447770742],[-125.15514150945863,58.02389342895475],[-125.1554776536103,58.02391237935678],[-125.1558136971406,58.02393581493731],[-125.15614518009558,58.02397380251368],[-125.1564699863431,58.02402632875762],[-125.15679489434432,58.024074368189694],[-125.1571286472329,58.02410563765226],[-125.15746479428992,58.0241245830588],[-125.15780320928322,58.024136811923334],[-125.1581418258635,58.024140067877504],[-125.15843798355603,58.02405444396211],[-125.15860029383833,58.02389618990717],[-125.15880039773725,58.02375163365242],[-125.15905704165752,58.023634353005335],[-125.15933661332826,58.023532919473624],[-125.159634854847,58.02344842778621],[-125.15994135996237,58.02337296072596],[-125.16024995520165,58.02329862777888],[-125.16055854921792,58.02322429412498],[-125.16087331576063,58.02315785018921],[-125.16119833743029,58.023106051540516],[-125.16152938166134,58.02306887153363],[-125.16186433237216,58.023046296843596],[-125.16220313984964,58.023040570451876],[-125.16254164676157,58.023048301274784],[-125.16287796227599,58.02305938249621],[-125.16321656957014,58.0230626255842],[-125.16355540199683,58.02305577425671],[-125.16389234283137,58.0230388152658],[-125.16422540029514,58.02300612785296],[-125.16455036606436,58.022956564070384],[-125.164867139857,58.022894610005615],[-125.1651715883604,58.02281575324137],[-125.16543448039957,58.02270186466015],[-125.16564294245272,58.02256071575126],[-125.1658388291341,58.02241387971536],[-125.16603259787374,58.02226703020321],[-125.16625365395447,58.022130445705606],[-125.16651235495563,58.02201428565884],[-125.16679811900576,58.02191848383428],[-125.16709839746349,58.021836231845334],[-125.1674110990703,58.021766394894314],[-125.16774404264224,58.02173818477643],[-125.16808258868683,58.02174365853755],[-125.16842123427772,58.02174464541798],[-125.1687601035521,58.02173553788843],[-125.1690969308081,58.02172305181822],[-125.16943198910467,58.021694850658925],[-125.1697569118131,58.02164639578807],[-125.17009393643123,58.02162493515899],[-125.17042999339643,58.02164721241008],[-125.1707638104256,58.021675083208756],[-125.17109752882344,58.02170743919854],[-125.17142913141655,58.02173978122872],[-125.17176287572575,58.02177101405246],[-125.17209671959878,58.02179776001786],[-125.17243270507538,58.02182339675437],[-125.17276871574317,58.02184791114002],[-125.17310261046163,58.02187241158069],[-125.17343859729421,58.02189804578938],[-125.1737746092879,58.02192255764695],[-125.17410850532768,58.02194705557545],[-125.17444451819807,58.02197156574947],[-125.17478053150752,58.02199607507878],[-125.1751166439036,58.02201609753479],[-125.17545278131031,58.02203499763821],[-125.17578663016292,58.022061734390135],[-125.17611366227588,58.02210973979293],[-125.17642324689888,58.02218119167614],[-125.17672193066268,58.022267157233465],[-125.17702283063282,58.0223486491376],[-125.17733894039164,58.022412287476065],[-125.17766488628378,58.02246140403907],[-125.17799306469185,58.0225060469034],[-125.17832236732878,58.02254733089501],[-125.17865274499675,58.02258749902249],[-125.17898212271488,58.022625416865765],[-125.17931359299725,58.02266446840942],[-125.17964398968968,58.022704634194646],[-125.17997003920894,58.022749259113276],[-125.18029812484843,58.02279838236525],[-125.18062743258822,58.022839660688106],[-125.18096129228924,58.022866384531774],[-125.18129863688286,58.02287854732333],[-125.18163743986558,58.02287277164597],[-125.18197337002773,58.022853517606855],[-125.18230842873558,58.022825284117886],[-125.18262726408545,58.02276442241587],[-125.18293371734043,58.02268890266505],[-125.18325255051667,58.022628039479805],[-125.1835875086117,58.022604288827466],[-125.18391799001483,58.022639957898235],[-125.1842417494328,58.022693531639504],[-125.18456220474724,58.02275269271858],[-125.18486743164847,58.02283082830432],[-125.18515108114795,58.022927899777024],[-125.18543040178311,58.02302943088876],[-125.18571831151395,58.023125405478005],[-125.18602792281065,58.02319683518169],[-125.1863550752287,58.02324032952942],[-125.18668874804102,58.023276011157904],[-125.18701923831051,58.02331167258281],[-125.18735186261674,58.02334734616924],[-125.18769037745821,58.023355013271605],[-125.18801735887152,58.02330876979286],[-125.18831033141592,58.023219695860895],[-125.18857629066261,58.02310802405908],[-125.18881191502541,58.022979342679555],[-125.18901401404244,58.02283475417948],[-125.18918351638942,58.022679872643074],[-125.18932780675898,58.022516986327275],[-125.18946996252285,58.022354086940474],[-125.18963422670551,58.022196929841],[-125.18982371680053,58.02204777716667],[-125.19004047637758,58.02191000616777],[-125.1902980282514,58.021794915239035],[-125.19061689027637,58.02173179151826],[-125.19095534283001,58.02174169335355],[-125.19127587313562,58.021797473737266],[-125.19158762461765,58.02186778175528],[-125.19188636479004,58.02195259186688],[-125.19216783694849,58.02205300007635],[-125.19246662819411,58.02213556588639],[-125.19280039352486,58.02216674616484],[-125.1931390918108,58.02216542736576],[-125.19347012016352,58.02212704674192],[-125.19377238588103,58.02204811209347],[-125.1940757241565,58.021968061590385],[-125.19439353156278,58.02190492251038],[-125.19471233947893,58.02184403202798],[-125.19502801144102,58.02178087858685],[-125.19533759068082,58.021706471155646],[-125.19563162403358,58.021616266238745],[-125.19589645942357,58.021505695146665],[-125.19613623328199,58.02137926957322],[-125.19634250414256,58.02123581722027],[-125.19648145852925,58.02107289155261],[-125.19663201910812,58.020911157231424],[-125.19685609071668,58.02077678447158],[-125.19711675592387,58.02066282108409],[-125.19739929653774,58.02056469180036],[-125.19769954500937,58.02048012813765],[-125.19800906026336,58.020407957639684],[-125.19832678296856,58.02034705222694],[-125.19865269931786,58.02029965506043],[-125.19898777054863,58.020269136799435],[-125.19932459848411,58.02025545302652],[-125.19966301608734,58.02026645429437],[-125.19999915016314,58.02028529259823],[-125.19700838658457,58.02246242593713],[-125.20840129239795,58.021821537598235],[-125.22076563882138,58.019229194598],[-125.22570620223684,58.016942847874546],[-125.2418072756247,58.01109501970823],[-125.2496349456916,58.0073705503253],[-125.25682571336631,58.004961131875035],[-125.26220465089587,58.00341171624479],[-125.27057805770538,58.002766803911584],[-125.27552325149148,58.00216113505465],[-125.27543522599468,58.00206307663518],[-125.27526877359314,58.00191860616185],[-125.275201972079,58.001872257221954],[-125.27523520074125,58.001850005245124],[-125.27530362638566,58.001812241657916],[-125.27537407545502,58.00172401623102],[-125.27558979738654,58.00161751155389],[-125.27594126938392,58.00154763453594],[-125.27613196246337,58.00147688502921],[-125.27618698548056,58.00136614324612],[-125.27623091282717,58.00128226011099],[-125.27626437182471,58.0011927121422],[-125.27630264503293,58.00107290662178],[-125.27635230081452,58.00096662219799],[-125.27640039293652,58.00088612646969],[-125.27644872267452,58.000793294241674],[-125.27655484500832,58.00071984264194],[-125.27668821254159,58.00071495714684],[-125.27678149873765,58.00070424633195],[-125.27684983430497,58.00067096799475],[-125.27690964403172,58.00064100829787],[-125.27702398360483,58.000581060237685],[-125.27733551787726,58.00049638242147],[-125.27770859468316,58.00045690146889],[-125.27786097648841,58.000453239288994],[-125.27792422525276,58.00040983836578],[-125.27804091965722,58.00033644281313],[-125.27815523492679,58.000277615302494],[-125.2782489509394,58.000244473494355],[-125.27832444191101,58.00022357087876],[-125.2784918015937,58.00021101602323],[-125.27884743559548,58.00019835642101],[-125.27928684358226,58.000174931970506],[-125.27970551256396,58.00012896189499],[-125.28005378170901,58.00005905700111],[-125.28025462222246,58.000010788813626],[-125.28029178013507,58.00000313782005],[-125.28030876617123,57.99999986454021],[-125.28036288400443,57.99999118333358],[-125.28058158690534,57.999948619012926],[-125.28089993936244,57.999894253336464],[-125.28113353328284,57.99984728186867],[-125.28131708933317,57.999816864868606],[-125.28148130336199,57.999803167739415],[-125.28157432832627,57.999805911570036],[-125.28167269718368,57.99980531924516],[-125.28181990376441,57.999796016650954],[-125.28202744876303,57.99978367354437],[-125.28226537644838,57.99978607443479],[-125.28240085509859,57.99978119460929],[-125.28246843361232,57.99978716588584],[-125.2826153612649,57.999792441899],[-125.28288264442655,57.99980845878693],[-125.28315308762942,57.99982561371971],[-125.28331569961406,57.99983994608373],[-125.28342547497218,57.999851751449555],[-125.28361462105262,57.999861739403094],[-125.28389369688952,57.99986996624204],[-125.28427188711859,57.99989442646094],[-125.28466462765859,57.999932422931835],[-125.28482918491717,57.99995573678174],[-125.2849037530117,57.99987201516175],[-125.28505228561147,57.9997370953843],[-125.28515231583934,57.999650145157126],[-125.28517387337689,57.999628949925274],[-125.28526345801521,57.99959017307238],[-125.28546899377962,57.99951612514672],[-125.28572988129837,57.99942442724678],[-125.28591069401342,57.9993715570404],[-125.2860468533366,57.99933078555589],[-125.2862201043724,57.99928572579318],[-125.28646744477756,57.999238818572245],[-125.2867837314737,57.999181063107926],[-125.28710399187166,57.99913678747128],[-125.28731610248558,57.99910651476157],[-125.28740620047786,57.9990957795606],[-125.28748785477649,57.999084999236885],[-125.28768603765556,57.9990636245119],[-125.28792025841415,57.99903907687409],[-125.28803379277157,57.99901949335274],[-125.28806761369607,57.9990207953192],[-125.2881376471988,57.999008831020376],[-125.28826271672695,57.99899491687137],[-125.28834118939659,57.998984119068055],[-125.28841448895281,57.99896768558657],[-125.28854598867319,57.998949318998285],[-125.28864366740018,57.99892965046897],[-125.28868391867658,57.99892650009352],[-125.2888006334523,57.9989069328713],[-125.2890972828571,57.99888047250246],[-125.28941632331568,57.99884403614805],[-125.28958798829568,57.998827003922756],[-125.28969087753975,57.998811848806994],[-125.2897660833825,57.998805519238374],[-125.28982618195268,57.998815933442216],[-125.2900120585097,57.99883038139507],[-125.29026196162461,57.998814885961096],[-125.29047015562446,57.99876776328058],[-125.2906617036584,57.99870597089158],[-125.29093851250856,57.998609861137545],[-125.29129490337559,57.99849959235951],[-125.29169474487092,57.99838506674154],[-125.29216036340502,57.99825967260913],[-125.29249186152555,57.99817955221372],[-125.29263544178289,57.998137691839794],[-125.29273766341042,57.99810122027011],[-125.29295847747393,57.99805752546976],[-125.29336988066497,57.998002501505695],[-125.2937337591212,57.99799994054764],[-125.29392809347085,57.9980144277922],[-125.2940608260654,57.99798596785353],[-125.29424813404387,57.99792414800319],[-125.29447650408953,57.99787263939017],[-125.29461044929482,57.99783633405448],[-125.29473172488989,57.99779884004772],[-125.29494836791432,57.99775175512897],[-125.29528358038908,57.99769856614301],[-125.2956291988618,57.9976544041009],[-125.295809484148,57.99762843654833],[-125.2959115540466,57.99759981305634],[-125.29605598804837,57.997568048046965],[-125.2962174053379,57.99753300758725],[-125.29638544078264,57.99748342089867],[-125.29655848172261,57.9974484412942],[-125.29671949878887,57.9974347086972],[-125.29690790635038,57.99742672820568],[-125.29712070836642,57.99741551105892],[-125.29723504703023,57.997409383338685],[-125.29731156671438,57.99738959716193],[-125.29753787687908,57.99739078814719],[-125.29782690422935,57.99743156493587],[-125.29798724956719,57.99745371875831],[-125.29807522548809,57.99744296525505],[-125.29824170580012,57.99742028668036],[-125.29847078099912,57.9973867207515],[-125.2986351917213,57.99736066598933],[-125.29884809759157,57.99734383859799],[-125.29916701082468,57.99731298649593],[-125.29935681817723,57.99728706417077],[-125.29939934929541,57.99727494968316],[-125.29944690835761,57.99727632086562],[-125.29956882474461,57.997261258049676],[-125.29989041567704,57.997257336873865],[-125.30050555830867,57.997221305087564],[-125.30104731685267,57.99715123805434],[-125.3012426308654,57.99711300420803],[-125.3013275453393,57.997096624511975],[-125.30143788186591,57.99707813457307],[-125.30151823220888,57.99707967659804],[-125.30156465857438,57.99708552753133],[-125.30172041990085,57.9971267202074],[-125.30216363897229,57.997179510066886],[-125.30257808221727,57.997187283820224],[-125.30270850278907,57.99716889774973],[-125.30267911410797,57.99710032618375],[-125.30264178293672,57.99694647096304],[-125.3026549072354,57.99686578379095],[-125.3028099419268,57.996775743343655],[-125.303079390617,57.996617882036084],[-125.30334860808651,57.99647235669023],[-125.3037701533345,57.9963814624582],[-125.30421216617424,57.996384888529306],[-125.30450184171423,57.99627648055709],[-125.30481680530933,57.996002205977476],[-125.30503402044059,57.995865379423115],[-125.30507744796114,57.99586224067511],[-125.3050812626512,57.995884692646456],[-125.30520902043115,57.99600985586525],[-125.3055640739775,57.9960834860413],[-125.30593069097333,57.99593173263034],[-125.30606830880778,57.99581019304376],[-125.30614384625831,57.99584311223143],[-125.30630185952192,57.99593366185662],[-125.30652648296943,57.99602567893695],[-125.30675624880656,57.996068371695564],[-125.30689789011421,57.996072471966144],[-125.30701150533196,57.99604838646555],[-125.307152411847,57.996034536962625],[-125.30727421762575,57.99602507462111],[-125.30733935741274,57.99599064284613],[-125.3073475132708,57.99595030736597],[-125.30739891402781,57.99591580428021],[-125.30754438085104,57.99588403234271],[-125.30768261898541,57.99584324991916],[-125.3078844504232,57.995794945833026],[-125.3082060536665,57.99573268130201],[-125.30845642450547,57.99569023591481],[-125.30867254243317,57.99567004478302],[-125.30900763428856,57.995621307450484],[-125.30948755271018,57.995518359851665],[-125.30996381586121,57.995383986736336],[-125.31034769674764,57.99526932360936],[-125.31074777517152,57.99513679737241],[-125.31126632773831,57.994945436266576],[-125.311952446414,57.99478522026758],[-125.31263658782102,57.99473266451585],[-125.3130331852668,57.99473134120653],[-125.3131971192346,57.99473106311549],[-125.31336076959924,57.99474536420402],[-125.31359704414609,57.994779105784],[-125.31378169684788,57.994802487168386],[-125.31386592415905,57.994823108962066],[-125.31395146701091,57.99482915662321],[-125.31405010563984,57.994813961063734],[-125.31414369434874,57.99478528025111],[-125.31431142749727,57.99475025061842],[-125.31456170296748,57.99471227981688],[-125.31476319191955,57.994681909352586],[-125.31493595721331,57.994660364007366],[-125.31519005206245,57.99464484369104],[-125.31544640476069,57.99462148325248],[-125.31557179715382,57.994588478127675],[-125.31562821838124,57.9945685785451],[-125.3156567609992,57.994568724869524],[-125.31578262613344,57.99456824844505],[-125.31596857337946,57.994578174203255],[-125.31605735811486,57.99458087231888],[-125.31611663648228,57.99457781120607],[-125.31626558515349,57.99458642539981],[-125.31641251760678,57.99459054269297],[-125.31653512032464,57.99459453526215],[-125.31663236472556,57.9945972763068],[-125.31669156141444,57.994598700930176],[-125.31673392058657,57.99459555293861],[-125.31686481966821,57.99460856048709],[-125.31715858639075,57.994621279498084],[-125.31746623443405,57.99462621761953],[-125.31761316717476,57.99463033359135],[-125.31770487143078,57.99464650476116],[-125.31798928260463,57.99470852462482],[-125.31839361313315,57.99480592590318],[-125.31883057258754,57.99491246527212],[-125.31927188980761,57.99501117421456],[-125.31965761943496,57.995084923157606],[-125.31986000198853,57.99512184570234],[-125.3199042325878,57.995132165466366],[-125.31992942885763,57.995142388249825],[-125.32003156440811,57.99516758377918],[-125.32022101447323,57.99521789913367],[-125.32037344521692,57.99526802575939],[-125.32042385851152,57.995287349648116],[-125.32050323799339,57.99528438890695],[-125.32075121318533,57.99525648920811],[-125.32101645232936,57.99520960961823],[-125.32111646262389,57.995176470178954],[-125.32114522882344,57.99516427883836],[-125.32119548569679,57.995134251132896],[-125.32128103586703,57.99508197080784],[-125.32138679074686,57.99502306352992],[-125.32147234039729,57.99497078308852],[-125.32155031363833,57.99492855850998],[-125.32163145061567,57.99488634996559],[-125.32172326329106,57.994838587608164],[-125.32182244919319,57.99479198425077],[-125.32192471437766,57.994751004473095],[-125.32203334430702,57.99470893534264],[-125.32209197845876,57.99468343627264],[-125.32216344702849,57.99464902953452],[-125.3223478521031,57.99456921044432],[-125.32254819058257,57.99448498556464],[-125.32264624459562,57.994442862283854],[-125.32266965003076,57.994435129833775],[-125.32271835318376,57.99443201213598],[-125.32284234895836,57.99441693875806],[-125.32303341969707,57.99431920694875],[-125.32327805206293,57.994182490384475],[-125.32350416378142,57.99413540760312],[-125.32367172364569,57.99410933822107],[-125.32380409815516,57.99404046958136],[-125.32394344159599,57.993995189722604],[-125.3242385787404,57.9939316312662],[-125.3246547661794,57.99384064462055],[-125.3249942926457,57.99377843067954],[-125.32525933462595,57.99374163621734],[-125.3255456051723,57.99370046209123],[-125.32591254132785,57.99364287072064],[-125.32626660615381,57.993595307786244],[-125.32651972062567,57.99357527463691],[-125.3268583567579,57.99356240188859],[-125.32723512008405,57.993546355643375],[-125.32746366349379,57.99353965606716],[-125.32767430256777,57.99352837952803],[-125.3280193626991,57.99351104979647],[-125.3284765490358,57.99349204007633],[-125.32900640454775,57.993490218075685],[-125.32952868510147,57.99343788396858],[-125.32987812544384,57.99335327550785],[-125.33008762857898,57.993287031128524],[-125.33029965143368,57.993257811826275],[-125.330493406399,57.993245324549065],[-125.3306539930752,57.993253981055695],[-125.33075318990893,57.99326569440147],[-125.3308102502153,57.99326822365794],[-125.3309210342072,57.99316334871519],[-125.33113167036325,57.99303429889753],[-125.33157186150697,57.99307800296668],[-125.3320846528265,57.99308393451832],[-125.33245308055153,57.99300053599594],[-125.33275520708087,57.992959425801516],[-125.33309073454123,57.99294203536017],[-125.33333413662878,57.992932035201434],[-125.33340398501876,57.99292901922634],[-125.33343886788585,57.99293031501332],[-125.3335339943997,57.99293303318119],[-125.33362497094232,57.992931244173235],[-125.33365562719214,57.992931397206284],[-125.33376205526619,57.992953238788594],[-125.33398442295594,57.9929958475569],[-125.33416892044502,57.99302817268508],[-125.33430391051455,57.993049034699155],[-125.33436715609015,57.993060566062994],[-125.33452319514421,57.99308714080198],[-125.33493801302575,57.99313070725616],[-125.33536235702691,57.993174319849125],[-125.33556612818901,57.99319327982972],[-125.33561263444294,57.993194632901705],[-125.33571497659754,57.99320747980512],[-125.33601953342075,57.993148428753564],[-125.33632680370212,57.99299517631343],[-125.33650026243278,57.99293322914229],[-125.33665689272229,57.99298672265512],[-125.33678366137639,57.99305352679515],[-125.33681911792989,57.993081742887924],[-125.33688449896103,57.993092162067114],[-125.33705607284165,57.99313787816432],[-125.33721179731094,57.99318239375051],[-125.33739252701317,57.993187777362245],[-125.33774912058274,57.99317608776135],[-125.33814344744198,57.9931825298601],[-125.3384982634196,57.99321120695218],[-125.33892767100099,57.99326829245185],[-125.33926104399966,57.99331368528074],[-125.33946908983154,57.99332929565915],[-125.33968798336488,57.993330378605776],[-125.33982953903372,57.99333892992391],[-125.33991717779318,57.99334609289552],[-125.34003539154338,57.99335901496076],[-125.3401029676413,57.99336495702267],[-125.34017370475893,57.993372036272234],[-125.34033071934581,57.9934030954164],[-125.34059068867032,57.99347391889712],[-125.3409857585518,57.993619434339436],[-125.34133997688383,57.99374231510708],[-125.34146082224403,57.9937866536259],[-125.34156067940584,57.99382079413511],[-125.34190765827469,57.99387522023277],[-125.34227438687306,57.99394880989882],[-125.34239403831008,57.994060437560975],[-125.34242938721624,57.99415594751454],[-125.34245546624179,57.99423683103244],[-125.34244527796471,57.99433548148322],[-125.34243927506112,57.99437582944998],[-125.34248254057486,57.994381650551546],[-125.34262214306888,57.99438121648938],[-125.34278686900966,57.99439548674796],[-125.34293762387689,57.994422025617524],[-125.34314289256137,57.994476872520096],[-125.34341105296689,57.99450286690039],[-125.3435849453325,57.99447680372089],[-125.34362224172347,57.994460163137084],[-125.34386853761355,57.9944669819203],[-125.34438172466372,57.99445043612448],[-125.34474249911135,57.994442113105706],[-125.34496543603089,57.9944533015959],[-125.34528970946569,57.994476202729864],[-125.34556828943637,57.994511216654644],[-125.34570244028603,57.99451972542657],[-125.34583872301656,57.994528244510306],[-125.34601841144296,57.99453361131129],[-125.34611670682149,57.99453633601698],[-125.34615589955976,57.994533163192855],[-125.346181122108,57.99454225951208],[-125.3462260678539,57.994633329070666],[-125.34636485144621,57.99486169309466],[-125.34659884514113,57.995089401468505],[-125.34686454143491,57.995196131929234],[-125.3469983217597,57.9952270695507],[-125.34704133794568,57.995246347135556],[-125.34716237042117,57.99528058703547],[-125.34738014725221,57.99534558297637],[-125.34755467426419,57.995404759199104],[-125.347608360583,57.99541960235582],[-125.34764714739751,57.99543885907808],[-125.3478654299942,57.99547581673157],[-125.34827464584377,57.99547893672892],[-125.34861921027041,57.995430146491834],[-125.34874236394762,57.99540270738368],[-125.348808956988,57.9954041538368],[-125.34906185652596,57.9954569807633],[-125.34945564259331,57.995557600980206],[-125.34975346084948,57.99564317184274],[-125.34992779900074,57.99577412635956],[-125.35010248391187,57.99600826945992],[-125.3503213546689,57.99619439864844],[-125.3504536096832,57.996252243769945],[-125.35047248942848,57.99626130842325],[-125.3506259529059,57.99619363743844],[-125.35094993385044,57.996050526684144],[-125.35118677168302,57.99593166685752],[-125.35138313281595,57.99582943395862],[-125.3516210362781,57.99570945698235],[-125.3517470008808,57.9956416512091],[-125.35177251603189,57.99563392391733],[-125.35178650416054,57.99562053265853],[-125.35183249028533,57.99559047278635],[-125.35192593241777,57.99550792816971],[-125.35202511768365,57.99539849301921],[-125.35212362490387,57.9953283104485],[-125.35222033039848,57.9953007397897],[-125.35227145679079,57.99527967750611],[-125.3522982116788,57.99526186175289],[-125.35236338622742,57.99522292202889],[-125.35241385037283,57.99517942452524],[-125.35244299333976,57.99514479636444],[-125.3524824957051,57.995123677619205],[-125.35248493757736,57.995042934434224],[-125.35262872223913,57.99486193299242],[-125.35300689583521,57.99470225637993],[-125.35332745909591,57.994572582790354],[-125.35349029724878,57.99445111746296],[-125.35355245977276,57.99440318984476],[-125.35360447869108,57.99439110417547],[-125.353824131712,57.994348425323004],[-125.35419056299644,57.994255984436215],[-125.35448165260705,57.99417888060682],[-125.35458170773111,57.994141230125976],[-125.35467597711747,57.994071025316394],[-125.35495695243208,57.99396695328047],[-125.35528969996776,57.993927061681326],[-125.35545669764633,57.99393235449041],[-125.35554179303347,57.99390360384241],[-125.35568988203669,57.9938403877351],[-125.35589437151971,57.993756133303634],[-125.35603912469581,57.99370187349253],[-125.35615844149983,57.9936508556355],[-125.35632024730822,57.99358882660841],[-125.35645557007862,57.99352891291265],[-125.3565334240734,57.9934911539818],[-125.35661046190648,57.99343881033835],[-125.35670878244788,57.993378718053286],[-125.35683781697661,57.99331540890228],[-125.35701964274556,57.993257961897505],[-125.35720682338483,57.993196054058004],[-125.35741573988727,57.99316116886618],[-125.35763907369902,57.993149906214],[-125.35777345265399,57.99314494481665],[-125.35792907347852,57.99313559907959],[-125.35818956135638,57.99311554145549],[-125.3584139436173,57.993104282550746],[-125.35856200046993,57.99310387247789],[-125.3586518337166,57.99310654730111],[-125.35873518616064,57.99311816368565],[-125.35899286926755,57.99313846841869],[-125.35944599350577,57.99316980497878],[-125.35991923973471,57.993138427206745],[-125.36040940792245,57.99304431957432],[-125.36083930859756,57.993011609271676],[-125.36103785348546,57.99302714050307],[-125.36127543794771,57.993047344618574],[-125.36171356639039,57.993090939254145],[-125.3620122147229,57.99312713633744],[-125.36213536884598,57.99316137269134],[-125.3621866211006,57.99319414380939],[-125.36220639653007,57.993213305392494],[-125.36232387551033,57.99320713707527],[-125.36251973437228,57.99319461341877],[-125.36268484345602,57.993186429046645],[-125.36281287738561,57.99318143228583],[-125.36289760380477,57.99317398552855],[-125.36298760669114,57.99316768549095],[-125.3632391572008,57.99317561521917],[-125.3635304332411,57.99321065213834],[-125.36364111123648,57.99323136848673],[-125.36376990695194,57.99324431993955],[-125.3640663275815,57.99328835295707],[-125.3643499669966,57.993336810829696],[-125.36456920785199,57.99337935359896],[-125.36474527417147,57.99341159621035],[-125.3649085589115,57.99344826415583],[-125.36515317922307,57.993490926707445],[-125.36537348777318,57.9935334732319],[-125.36550546789526,57.993545316551746],[-125.36562679600202,57.99356271709027],[-125.36579139445807,57.99358480947665],[-125.36602753830019,57.99362855174571],[-125.36630159868604,57.993681446348006],[-125.36651148876109,57.99371384718773],[-125.3666698194981,57.99373142236924],[-125.36679945686078,57.993757834013714],[-125.36687064344453,57.99380079223183],[-125.36691548044902,57.993838017482496],[-125.36703334574196,57.99387222422918],[-125.36721183383676,57.993886529561266],[-125.36729216111323,57.99388915349907],[-125.36729426861646,57.993826354222314],[-125.36730379613033,57.99370078086119],[-125.36735226979872,57.993585486441596],[-125.36745993999234,57.99347159412782],[-125.36753318633848,57.99339230804646],[-125.36755581829522,57.99336661862484],[-125.36760784029475,57.99329171832867],[-125.36772782890162,57.99313750684677],[-125.36787746373498,57.99298007089886],[-125.36798037229707,57.99289756030389],[-125.36805211437974,57.9928451850994],[-125.36817742683611,57.99275044291074],[-125.36836264933108,57.9926156067868],[-125.36848380611377,57.99251635830823],[-125.36851832195352,57.99247614427576],[-125.36854112051653,57.99244148276907],[-125.36857245558605,57.99240125367978],[-125.36860687691353,57.99236664714335],[-125.36865120038084,57.992309655594454],[-125.36869634632912,57.99226612702761],[-125.36871145153265,57.99224825299429],[-125.36876309252621,57.992195782390354],[-125.3688828297202,57.992055028001644],[-125.36898490062858,57.99189624455657],[-125.36902876031151,57.99180335980161],[-125.36905170878434,57.99175972621552],[-125.36908999010583,57.991683638955024],[-125.36915636405533,57.99157291513691],[-125.36921689585317,57.99149468982932],[-125.36926861047208,57.99143773306513],[-125.36930523921038,57.99139752886826],[-125.36936178587212,57.991304704004364],[-125.36947652217971,57.991147101758294],[-125.3695597194752,57.99104094364122],[-125.36958552915074,57.99101526896203],[-125.36962103291754,57.99097954574807],[-125.3696888051584,57.990910327199984],[-125.36975569770325,57.99083101015986],[-125.36982350517037,57.9907606701332],[-125.36993078332837,57.99066920619119],[-125.37015837888093,57.99052783842529],[-125.37038915318954,57.9903864852948],[-125.37045272932647,57.99031612503247],[-125.3704574852346,57.99028474296317],[-125.37047567712341,57.99027136969103],[-125.3704927260999,57.99026359897273],[-125.37054368495332,57.99025150181047],[-125.37081284353675,57.99028081055586],[-125.37123197990357,57.990256989046365],[-125.37141729365015,57.99011429846239],[-125.3714443969893,57.990011239919696],[-125.37152078734819,57.98999589737999],[-125.3717182758368,57.989947477198555],[-125.37203760835034,57.98988504936226],[-125.37229202221225,57.989846990439695],[-125.37249948229994,57.989834506841284],[-125.37279577599438,57.98982131878585],[-125.37313125680944,57.989803827765705],[-125.37338544439329,57.98977922476642],[-125.37355484022018,57.98976656083304],[-125.37372644411255,57.9897482991047],[-125.37393094540002,57.9897234619356],[-125.37406231471883,57.98970837581814],[-125.37411643516438,57.98969629213421],[-125.37416828960309,57.98969429209655],[-125.3742414417144,57.98968229759426],[-125.37438873504841,57.98966392104634],[-125.37456870318623,57.989651305384136],[-125.37476996695031,57.98962981653083],[-125.37503182506853,57.98958842252443],[-125.37520885116297,57.98949840267591],[-125.3752782733667,57.98939329838282],[-125.37554982139176,57.98934185444643],[-125.37602173842858,57.98938668173053],[-125.3763115399846,57.98944523714338],[-125.37639369359371,57.98946468797895],[-125.37652919714266,57.98945522669889],[-125.37682828981468,57.98940054406071],[-125.37713370686158,57.98934701185972],[-125.37726731840733,57.98932408195944],[-125.3773679571272,57.989313335579496],[-125.37760831079471,57.989293146395916],[-125.37793534310978,57.989275603948855],[-125.37815118231255,57.989267636995976],[-125.37820092298836,57.98926450396165],[-125.37825264660478,57.98927035284114],[-125.37848100629621,57.98927253795914],[-125.37889968126062,57.989275608410225],[-125.37926814327969,57.98924591802407],[-125.3794267300816,57.98918272499612],[-125.379547464913,57.98904308795397],[-125.37975267864346,57.98884664252138],[-125.379904314902,57.98875649859885],[-125.37993903731623,57.98870282377629],[-125.37993432351529,57.988604102311555],[-125.38006282449291,57.98869779084827],[-125.38031710323999,57.988731497629296],[-125.38062879236324,57.98874528179472],[-125.38083016488682,57.98884491565788],[-125.38093588237662,57.98897438843191],[-125.38097734222764,57.989025052099805],[-125.38101108338259,57.989030816509405],[-125.38110401488895,57.9890379769627],[-125.38128370053984,57.98904217476369],[-125.38152888345891,57.9890500405854],[-125.38177719144103,57.989061285189536],[-125.38198631557006,57.9890757126677],[-125.38218085909185,57.98907661329499],[-125.38251068192285,57.98908150429988],[-125.38289522647739,57.98910234970401],[-125.3831192272158,57.98911235783948],[-125.38328824830685,57.9891221115816],[-125.38359240179209,57.989144826682896],[-125.38390411395257,57.9891574817051],[-125.38402028862265,57.989165868994405],[-125.38402405779993,57.989129995636404],[-125.38411483982195,57.9890104048628],[-125.38432709067433,57.988963155879226],[-125.38450287831016,57.98907612518819],[-125.38468846837807,57.98917119408781],[-125.38500462934404,57.98917152960103],[-125.3852547225535,57.989137912520135],[-125.38539503939788,57.98909257368249],[-125.38551838401486,57.989050521324074],[-125.38563281115228,57.98903646745024],[-125.3858950034874,57.989038795610554],[-125.38624860426675,57.98907631275813],[-125.38646418675833,57.989149085363046],[-125.38658225669859,57.989170938159916],[-125.38665637797864,57.98916454926608],[-125.38672205911575,57.98915699996603],[-125.38682048988866,57.98915072267337],[-125.3869210521541,57.98914445509867],[-125.38705443728482,57.98913497342441],[-125.38719635400012,57.989121044444985],[-125.38731495503202,57.98911037304939],[-125.38745573260576,57.98910092490843],[-125.38756480793872,57.98909133116147],[-125.38759976364902,57.98908700520484],[-125.38762512062303,57.98908824312836],[-125.38769602324152,57.98908520364863],[-125.38777218561528,57.98908330984233],[-125.3877996571979,57.98908455743202],[-125.38781898123533,57.98906670069594],[-125.38802322635263,57.988991369501434],[-125.38836326156198,57.9888886206908],[-125.38854810800804,57.988835631522775],[-125.38867740853644,57.988817156845094],[-125.38885799982756,57.98870021743039],[-125.38895302264366,57.98851446942216],[-125.3889969019803,57.98841709244383],[-125.38907366514893,57.988378188367314],[-125.38916769134539,57.98831805315139],[-125.38929385520302,57.988232268487934],[-125.38941656461756,57.98816329167421],[-125.38946456999551,57.988137714837606],[-125.38949619710291,57.988143467424344],[-125.38964452574811,57.988125078870134],[-125.38984930057875,57.98808115176959],[-125.3899535148473,57.98804461586245],[-125.38997925385132,57.98802230182544],[-125.39000286005883,57.98800109962056],[-125.39002580005246,57.98795634110842],[-125.39003724732294,57.98790255740405],[-125.39006829017691,57.987814094158885],[-125.3901603171649,57.98768104623368],[-125.39028615630508,57.98755039589719],[-125.39040084061762,57.98745446359251],[-125.39056287260212,57.987373327983555],[-125.39084323175294,57.987233288398784],[-125.39110018514629,57.987100992556044],[-125.39120606127364,57.9870274510865],[-125.39123214432833,57.98698382834191],[-125.39124300770403,57.986965932572325],[-125.39131304031558,57.986950549823426],[-125.3915658091284,57.986881042660755],[-125.39208286054958,57.9866837571079],[-125.39277698470673,57.98638969775465],[-125.39327768736023,57.986156442757434],[-125.3934683707904,57.98606758296487],[-125.39361213614752,57.986004306112925],[-125.39375959202114,57.98584234676905],[-125.39378695832465,57.98565404553456],[-125.3937776356472,57.98557661413979],[-125.39383562997003,57.98552079853362],[-125.39400612414852,57.98537240260929],[-125.39435198352373,57.98523377505242],[-125.3947972889348,57.98515616292477],[-125.39517422774895,57.98512198112351],[-125.39539228020604,57.985106145424886],[-125.39556799066888,57.98509348235518],[-125.39586114902711,57.985074621277754],[-125.39615121612104,57.9850512592541],[-125.39628360777512,57.98503727766273],[-125.39634089436046,57.98502519941386],[-125.396398180909,57.985013121140646],[-125.39651394682707,57.984979997280526],[-125.39673519337765,57.984896879087465],[-125.39699055699761,57.98479596942847],[-125.39719680282711,57.98472512008599],[-125.39729973589134,57.984702031808446],[-125.3973952061164,57.98468227449303],[-125.39758381599184,57.98465620808508],[-125.39778017713975,57.98460774481534],[-125.39786039116272,57.98455090623475],[-125.39786512343444,57.98451952338542],[-125.39799135516817,57.984559348098024],[-125.39824486816038,57.98463900189869],[-125.39841022481708,57.98467900261966],[-125.39856269227357,57.98466510927529],[-125.39879772734305,57.98464485825556],[-125.39894701452383,57.984630950147704],[-125.399010222244,57.98457964218386],[-125.3990795148837,57.98447789056508],[-125.39916986085268,57.984381841597134],[-125.39948010807485,57.98421948755819],[-125.40000024328477,57.98402330770421],[-125.40004807589361,57.98400669907576],[-125.40048771952172,57.983951474280516],[-125.40080775389293,57.98403702984948],[-125.40114047569907,57.984122641584335],[-125.40131418417207,57.98416828404605],[-125.40142035854235,57.98420689393449],[-125.40160753343085,57.984270541656954],[-125.40176553700269,57.98430714049347],[-125.40186986680962,57.984327796513156],[-125.40205832300279,57.98437799041389],[-125.40242909111444,57.98446489097277],[-125.4028294440623,57.98455304446135],[-125.40311230399816,57.98458347084954],[-125.4033481709734,57.98457667448645],[-125.40356962838842,57.984546260177275],[-125.40381164411964,57.984485654743295],[-125.40403061485414,57.984411487040276],[-125.4041094686007,57.984372583926266],[-125.40425390237623,57.98433173036995],[-125.40453507578349,57.98426793370639],[-125.40472707193626,57.984228413428035],[-125.40476418881235,57.98422072793562],[-125.40484437366072,57.98416500667932],[-125.4050632877142,57.98402690718093],[-125.40525663210312,57.98390215232641],[-125.40531856898284,57.98386317314015],[-125.40543593959967,57.98379527990619],[-125.4057119887894,57.98365406921835],[-125.40609005345443,57.983480786308256],[-125.40636700390274,57.98334967252922],[-125.4065034172958,57.98328074153739],[-125.40665278168646,57.98319504435747],[-125.40688188278435,57.98308054045371],[-125.40704711097766,57.9829949133613],[-125.40718871050903,57.98293161262579],[-125.40738964966246,57.98286072423267],[-125.40761374353085,57.982862840717765],[-125.40780360246153,57.98289060114646],[-125.40788122435762,57.98286178460965],[-125.40786441113266,57.982788807623656],[-125.4077989532654,57.98271561478962],[-125.40785617430886,57.98264072316955],[-125.40812248816144,57.98251292344888],[-125.40846332838044,57.982351806348184],[-125.40876196951294,57.98218489359696],[-125.40896866657602,57.98201532990022],[-125.40908758452606,57.98191603642622],[-125.40917261159872,57.98188725197119],[-125.40922143241242,57.98187513079361],[-125.40927426989323,57.98187648626465],[-125.40942755894024,57.98187604314128],[-125.40965679227332,57.98181985712679],[-125.4098195338854,57.981689352826656],[-125.40993057334822,57.98155301188575],[-125.41011549406129,57.9813564325213],[-125.41030112684582,57.98118116598178],[-125.41047921752106,57.98108325442319],[-125.41081108535369,57.98095349606914],[-125.41117268962226,57.98081489555233],[-125.41135625796664,57.98077084251601],[-125.41142389297438,57.980772262412664],[-125.41149060240255,57.98076582718756],[-125.41158457363768,57.980705676674],[-125.41170038871334,57.980600759518204],[-125.4117861134799,57.98052711365878],[-125.41184613466848,57.980474664332405],[-125.41193355148678,57.98042794357049],[-125.41209318181409,57.98036023105412],[-125.41233141998964,57.98026818997668],[-125.41254105542227,57.98017938728926],[-125.41266362502859,57.980115997247566],[-125.41276555812577,57.98008728499689],[-125.4129009485241,57.98008227286672],[-125.41307432265751,57.98008191395176],[-125.41324774935657,57.9800781903293],[-125.41334101524963,57.98006289838652],[-125.41335806823848,57.98005400078574],[-125.41341773611794,57.98002398066028],[-125.41353691396198,57.979974033778696],[-125.4135955160664,57.979944008893725],[-125.41367244393109,57.97996004891425],[-125.4138665208639,57.979987819209015],[-125.41405734848011,57.98002006123768],[-125.4141998663627,57.98003302422366],[-125.41430447099593,57.98003572652074],[-125.41440316997173,57.980011485116975],[-125.41450545116284,57.97996034165727],[-125.41456628895305,57.9799224751634],[-125.41469296012978,57.97986695228299],[-125.41491750866705,57.97977036035113],[-125.41506748614906,57.97971157460128],[-125.41515638249665,57.97970523481357],[-125.41532467073027,57.97969139184741],[-125.41551593392677,57.97969671599926],[-125.41567618549475,57.97972433549498],[-125.41579855819867,57.979740573270185],[-125.41587639562017,57.97976558855987],[-125.41594633699339,57.979821973219416],[-125.41603708763938,57.979900880321196],[-125.41612486830473,57.97996631552315],[-125.41620026105021,57.980012629773924],[-125.41625477443515,57.980042029088764],[-125.41628627680048,57.98005562573875],[-125.41637313218868,57.980112084170976],[-125.41651860738725,57.98020693228293],[-125.41669065812407,57.98029180227172],[-125.41683767107159,57.98035525277963],[-125.41695948914081,57.98040737734024],[-125.41711537729027,57.980443948615424],[-125.41730002424836,57.98046606486368],[-125.41738448495505,57.98047316306507],[-125.41740172856237,57.980451928497146],[-125.41742885953605,57.980407184100336],[-125.41745476835035,57.98037252850399],[-125.41756064841302,57.980361774960656],[-125.41780247549663,57.980310116388964],[-125.41807071405034,57.98019127831888],[-125.41827721912573,57.98003067252583],[-125.41843435098627,57.97991920037597],[-125.41855091525665,57.979832225845506],[-125.41859698440524,57.979793171616386],[-125.41862692890997,57.97977087067594],[-125.41868685253354,57.97972402578743],[-125.4187242572077,57.97969727104525],[-125.41874447097896,57.979689508104144],[-125.41877532503686,57.97967618365509],[-125.41882744094997,57.97965622238051],[-125.41889258882098,57.97961276486956],[-125.41894379526192,57.97958270546255],[-125.41895782286271,57.979564821425335],[-125.41898986369587,57.97954365110821],[-125.41906585913537,57.979482295633744],[-125.41912672581242,57.97944330565979],[-125.41916517803836,57.97941767693413],[-125.41919171686125,57.97940994145937],[-125.41926215750519,57.97936650681969],[-125.41944648904266,57.9792730970619],[-125.41965505352319,57.97918427873202],[-125.41978732058003,57.979107465625866],[-125.41991704853179,57.97898914330565],[-125.4200741711671,57.97887766934922],[-125.42022363530535,57.978850279606135],[-125.42040425548892,57.97886003679537],[-125.42061607454536,57.978834039005015],[-125.42076878681459,57.97880217648342],[-125.42092565771836,57.978774818110516],[-125.42114400818097,57.97873651057749],[-125.42135849302281,57.97867463299072],[-125.42154865742233,57.97861264964172],[-125.4216815004873,57.978567241138435],[-125.42183448702123,57.97851743351247],[-125.42212756770641,57.97843122073297],[-125.42243767985575,57.97833723006626],[-125.42271123515843,57.978213919785574],[-125.42307036224328,57.978094343673185],[-125.42338454011188,57.97807999972682],[-125.42363811621975,57.978087824646416],[-125.42397388129753,57.97804329023515],[-125.42426217521647,57.977992942335774],[-125.42447962387092,57.97794453141572],[-125.42469676299159,57.9779151854522],[-125.42483016738845,57.9779011801726],[-125.4249692772289,57.97786028173902],[-125.42520380794669,57.97779960602889],[-125.42537046734662,57.97775433958753],[-125.42542469130952,57.97773326331555],[-125.42551696651014,57.97771347241525],[-125.42568269691272,57.97765922905851],[-125.42582383340103,57.97762282474157],[-125.42599824435383,57.97762357511442],[-125.42623690019518,57.97763918188564],[-125.42635614264752,57.97765203179306],[-125.426384621199,57.977656640485165],[-125.4264561879422,57.97767713631348],[-125.42655833043312,57.97770224977166],[-125.42674394931993,57.97772996493184],[-125.42699233283626,57.97773215334078],[-125.42714692680035,57.977714872045475],[-125.42724040351558,57.97768499101765],[-125.42734011939127,57.97766186610076],[-125.42742070681437,57.977645388429906],[-125.42748111750839,57.977634431975],[-125.4275055050114,57.977630050343244],[-125.42756283862896,57.97761347281807],[-125.42771349443237,57.97757710734999],[-125.42790232091238,57.97753305440967],[-125.42799646274722,57.97745943463432],[-125.42798428506235,57.97735619835365],[-125.4279627973637,57.97731012203302],[-125.42807148667437,57.977321803597455],[-125.4283216913053,57.97734306396876],[-125.42851603859503,57.97735286899481],[-125.42863893804683,57.977334328675724],[-125.42875776299813,57.9773056767087],[-125.42883938049881,57.97729032416883],[-125.428982643402,57.977253925646316],[-125.42922450293838,57.97719776057788],[-125.42945269785207,57.977135928822804],[-125.4296236281644,57.977087310701414],[-125.42963344650936,57.97699762743707],[-125.42955055849949,57.97688735970678],[-125.42972417316261,57.97687015677583],[-125.4300565808037,57.97690634553643],[-125.43033051335706,57.97689629966165],[-125.43066632785046,57.97684726249798],[-125.43099481915306,57.97679370700743],[-125.43112091187952,57.97677405647871],[-125.43123944443359,57.97676446769064],[-125.43146074835798,57.97673849325609],[-125.4315697765256,57.9767288636788],[-125.4315909836272,57.97672446776057],[-125.43175586942472,57.97672517004852],[-125.43202432037829,57.976727434573796],[-125.4321544028326,57.97672238039684],[-125.43225644744504,57.976684681423436],[-125.43245847069088,57.97667656833671],[-125.43259276176143,57.97674331177113],[-125.4327023958996,57.97683238154116],[-125.4328865600709,57.97688699950029],[-125.43302237523474,57.97692234517255],[-125.43317418902656,57.976948786150324],[-125.43337024338085,57.97698550891379],[-125.43354542938899,57.977004197762554],[-125.43374527250096,57.97700055972312],[-125.43390804561423,57.97700125038093],[-125.43394616408663,57.97699692583233],[-125.43404467337866,57.9769827633473],[-125.43423969608541,57.97694770031007],[-125.4343403528736,57.97693242514912],[-125.43445501189385,57.97689926422614],[-125.43460804222526,57.976844956073485],[-125.43478253205299,57.976769428928556],[-125.43503060091454,57.976650472117264],[-125.43535431062463,57.97649258023331],[-125.43563837964392,57.97637040998769],[-125.43579686772676,57.97630378640129],[-125.43587546939243,57.97627832277024],[-125.43595293824353,57.976258462123724],[-125.43604347763853,57.97621173914985],[-125.43617493843804,57.976115840245896],[-125.4363582812039,57.97601343101506],[-125.4365659240866,57.97591112416113],[-125.43676314794885,57.97579980051543],[-125.43688275216245,57.97571843123834],[-125.43695548104046,57.97566153845042],[-125.43703255509033,57.97559681302109],[-125.43708387600918,57.97555777484919],[-125.43713064976703,57.97554002716804],[-125.43717747389961,57.97551891499546],[-125.437195550843,57.97551114030665],[-125.43726696151818,57.97547218680579],[-125.43750233087455,57.97535317207329],[-125.43779524254604,57.975204117235705],[-125.43797837505666,57.97511516377449],[-125.43803908935294,57.97501335735871],[-125.4381435811584,57.97488145311181],[-125.43833535977228,57.974850856815415],[-125.43846405107253,57.97486822190599],[-125.43856746805632,57.974808092772214],[-125.43875502553183,57.97470569818016],[-125.43895810890628,57.974625799851616],[-125.43910048746406,57.974575928200565],[-125.43919203400493,57.97453257212531],[-125.43926447244863,57.97449474349374],[-125.4393198162285,57.97446918016338],[-125.43940460239412,57.97445383456743],[-125.43952743677652,57.97443864874968],[-125.43962470475236,57.97443681417794],[-125.43990395965811,57.97442228487219],[-125.44037352248203,57.974404067080435],[-125.44062721092688,57.97440288775843],[-125.44068644720436,57.97439977140385],[-125.4407891914226,57.97438450021006],[-125.44098392726683,57.97436737126625],[-125.441282605631,57.97432600300092],[-125.44151775303963,57.97429221908824],[-125.44165233701715,57.97426922957861],[-125.44180855707401,57.97428334194999],[-125.44197318240577,57.974300853973425],[-125.44205545347894,57.974312413636426],[-125.44209123792952,57.97432265731612],[-125.44217973385709,57.97434209385513],[-125.44249092662164,57.97438264913213],[-125.44295025222284,57.974413728169125],[-125.44330525311506,57.97442306073824],[-125.44353094717852,57.974456527468064],[-125.44386682707515,57.97454316647362],[-125.44428579745447,57.974658189745064],[-125.44458050318487,57.97474241234284],[-125.44467196499592,57.974776439864556],[-125.44478131963632,57.97481502802421],[-125.44509919689106,57.97490495370443],[-125.44551830753647,57.97501100121322],[-125.44587223919147,57.97509322395346],[-125.44604920560008,57.975134334974435],[-125.44608287808798,57.975144568816624],[-125.44613901203459,57.97506517100772],[-125.44631950016422,57.974867403825094],[-125.44661156427273,57.97462860152071],[-125.4469045578959,57.97439877498692],[-125.44714679226968,57.974099200864465],[-125.44738753563648,57.97375587942702],[-125.44764995933106,57.973520317105624],[-125.44803353172958,57.97331105143498],[-125.44845983537891,57.973070557743036],[-125.44874315372951,57.97284966011877],[-125.44891906571401,57.97260252254155],[-125.44912553302918,57.97236111875746],[-125.44944621782007,57.97211457831173],[-125.44972393530985,57.97191496534957],[-125.44984779207914,57.971829116269554],[-125.44990761481692,57.97178562223033],[-125.45001113636486,57.97171651251533],[-125.45018709631952,57.971609568350146],[-125.45039824992494,57.97148033782921],[-125.4507302236806,57.97125515065922],[-125.45108985111334,57.97101886095729],[-125.45125741534746,57.9709062731665],[-125.45158846247581,57.97074500886968],[-125.45221093112951,57.97045596187462],[-125.4525805210065,57.97026008528949],[-125.45274873094854,57.970102636228674],[-125.45304884149587,57.969814506004404],[-125.45334062392594,57.96951736865967],[-125.4535502898412,57.96927148590293],[-125.4537613274699,57.969003177452976],[-125.4539804899557,57.968757333061546],[-125.45423344869627,57.96851274820361],[-125.45459367238769,57.96815868945234],[-125.45497487708485,57.9678148095707],[-125.45523556104699,57.96761960291259],[-125.45557860755943,57.96735519580844],[-125.45604672474485,57.966773899302126],[-125.45624976419536,57.96610628361118],[-125.45624183118638,57.965705858361055],[-125.45624021112815,57.9655981831037],[-125.45636017283535,57.9655605394022],[-125.45675519238246,57.96542756288602],[-125.45729675473326,57.96524471184866],[-125.45766560231812,57.965093681465056],[-125.45789887512602,57.964965651699266],[-125.45804811413903,57.96487541277153],[-125.45798565480501,57.96481010925392],[-125.45775815156071,57.96475871502536],[-125.45760511035624,57.96474575580773],[-125.45761524727142,57.96462915612107],[-125.45766621981146,57.964392716964866],[-125.45771205801158,57.96421794203838],[-125.45771840916403,57.96399814475328],[-125.4576882113289,57.96367389515238],[-125.45765794231978,57.96350217557304],[-125.45759976087864,57.96343352471441],[-125.45749843752755,57.96320543891927],[-125.45741899662337,57.96285295060828],[-125.4573689749606,57.96258581945263],[-125.45733136870561,57.962409583961154],[-125.45728153774431,57.96220189551206],[-125.45724955873197,57.96207503090091],[-125.45723825224738,57.96205255401201],[-125.4572141058588,57.96204236185768],[-125.4571488752184,57.96202303014685],[-125.45707322501187,57.961993562096644],[-125.45699433199282,57.96196856697848],[-125.45672616938033,57.96188111613264],[-125.45630975729767,57.961742591073204],[-125.45598510570234,57.961688554787834],[-125.45566019506632,57.961652461354625],[-125.4553586832053,57.96153234689607],[-125.45523324860369,57.9614387465275],[-125.4551130406725,57.961349653573556],[-125.4549101564135,57.96120526704448],[-125.45478128560715,57.96112959692349],[-125.45458126234384,57.961079431238865],[-125.45417489459248,57.96097795156034],[-125.45389909702901,57.96090728696925],[-125.45384641785516,57.96089697738562],[-125.45384667869075,57.96087903376429],[-125.45385571769746,57.960838695226265],[-125.45386488709786,57.96078938487967],[-125.45389004303091,57.96073116764817],[-125.45390843540702,57.960700961295096],[-125.45399781301852,57.96058580829527],[-125.45417795617054,57.96033083391188],[-125.4543011608055,57.96006889716636],[-125.45435524387852,57.95983695925486],[-125.45438723581124,57.95967110196318],[-125.45437869042011,57.95953199586079],[-125.45425476356341,57.959335219106705],[-125.45397400251342,57.95909742482047],[-125.45366485949533,57.95885054140553],[-125.4534819852056,57.95856716395885],[-125.4534274896168,57.95824618014907],[-125.45341365356022,57.95803527395103],[-125.45339859795602,57.95798025680252],[-125.45338097330074,57.95795775377544],[-125.45336849186468,57.957944244143825],[-125.45323995816382,57.95777436479984],[-125.45291431351852,57.95735581679407],[-125.4526043013796,57.95695191231406],[-125.45246331014962,57.95676740124165],[-125.4525367004783,57.95673405637703],[-125.45287053934351,57.956734304820046],[-125.45354560343965,57.956734829464125],[-125.45460345281721,57.956639342825376],[-125.45582686414802,57.95627311139785],[-125.45692071885858,57.95580428162974],[-125.45761650545309,57.95554018752476],[-125.45793459667395,57.95545960868301],[-125.45822251246204,57.95534638196788],[-125.45857845600408,57.95513137109931],[-125.45886924091621,57.954892542727016],[-125.4589816523764,57.95471579624392],[-125.45899944348473,57.95458128421426],[-125.45900997540465,57.95450954870457],[-125.45901855527428,57.95450061123105],[-125.45893801690063,57.95444532928789],[-125.45869761188203,57.95426715121134],[-125.45839917012285,57.95401135116109],[-125.4581939115778,57.95381312735818],[-125.45810088057138,57.95367143606165],[-125.45806513704815,57.953440254837396],[-125.45810293339483,57.9531633896454],[-125.45822495775795,57.952905932809344],[-125.45838236079182,57.95268563021681],[-125.45852729667276,57.952450696952866],[-125.45866178108413,57.95220787044442],[-125.45880471389398,57.951965078157684],[-125.45893606503328,57.95179289528688],[-125.4590081661257,57.951700100695575],[-125.45903612932071,57.95166544666159],[-125.45912175987041,57.95158728681659],[-125.45926844409924,57.95145105488875],[-125.45938843833771,57.95133378064851],[-125.45950507721818,57.95122882955764],[-125.45966686825483,57.951143127370365],[-125.45991570650492,57.951101517283945],[-125.46014449938056,57.951057582523525],[-125.46021680705269,57.951024229324226],[-125.46023928487132,57.9509301117477],[-125.4602968988596,57.95074304937706],[-125.46034586920776,57.95056941040012],[-125.46038014969322,57.95046188225429],[-125.46041820482485,57.950386893750796],[-125.46054506062063,57.95023263591772],[-125.46079045002409,57.949988013491954],[-125.46104707695564,57.949770352807676],[-125.46124347660974,57.94962759078828],[-125.4613660572833,57.949550700525805],[-125.4614310394876,57.94951170950256],[-125.46160015629846,57.94943052087602],[-125.46186353817096,57.94933064653012],[-125.4619824418977,57.949288508271714],[-125.46193581998116,57.94922439303626],[-125.46169878784269,57.949033898078994],[-125.46166055642215,57.94875336176002],[-125.46213206169736,57.94850179935442],[-125.46244718025638,57.94840325420249],[-125.46244316411077,57.94838865815766],[-125.46242274657126,57.948339228646695],[-125.46239031283024,57.94824376807733],[-125.462365713116,57.948116936344384],[-125.46239258489945,57.94801049964592],[-125.46247642465478,57.94790877873087],[-125.4625952857313,57.947795983668],[-125.46279717253613,57.9477115612074],[-125.4631417738177,57.9476176194166],[-125.46349554379194,57.94747436649981],[-125.46370882034657,57.947331669189104],[-125.46373940026699,57.947261136061435],[-125.46369514617416,57.9471790866938],[-125.46373060657514,57.94706259066535],[-125.46385825401502,57.94699917705744],[-125.46402701843712,57.94694153624882],[-125.46423900897896,57.946740513718225],[-125.46442208122578,57.94649339222955],[-125.46448366140893,57.946396066933],[-125.46464973118901,57.94623074821926],[-125.46498068914185,57.94590683467757],[-125.46522964492395,57.94563081708066],[-125.46538362521855,57.94542395275836],[-125.46552714979757,57.945283216259405],[-125.46584455509546,57.94509495088981],[-125.46630483996228,57.944810805890924],[-125.4667603208802,57.94456701499891],[-125.46734695309524,57.9443091668921],[-125.46792698699046,57.94406923431625],[-125.46840477722117,57.9438894538104],[-125.46876983056755,57.94376529852994],[-125.46894367038291,57.943720008735916],[-125.46909327587977,57.943670136133214],[-125.46932237695329,57.9436003924451],[-125.46951936890733,57.94356080167096],[-125.46968561741842,57.94353006048811],[-125.46984820987866,57.94345780830373],[-125.4699251770675,57.943391944637675],[-125.46994176920539,57.943339299149656],[-125.46991786753925,57.94331116611126],[-125.46994530837843,57.94331239673361],[-125.46999399622636,57.94330473965581],[-125.47013161145654,57.94328173473988],[-125.47031567575793,57.94326003575471],[-125.47053869477914,57.943247463386435],[-125.47072995289906,57.943239250641795],[-125.4707944103408,57.94323726347688],[-125.47080944728077,57.943219378842905],[-125.47087790098503,57.9431579669389],[-125.47107378689765,57.94304659224044],[-125.47132245661271,57.94293654811635],[-125.47143083245231,57.94288987401263],[-125.4714656813904,57.94281487036308],[-125.47154415799947,57.942641345948864],[-125.47161347648307,57.94251825358643],[-125.47168993427462,57.94248827557837],[-125.47186571095934,57.94252934671711],[-125.47208975038389,57.94259416064567],[-125.47220338953768,57.94262377008256],[-125.47231005344783,57.942623070795534],[-125.47252487176965,57.94259251836505],[-125.4727238412283,57.94256190290904],[-125.47294707427227,57.94253250460215],[-125.47336772509387,57.94250837198684],[-125.47377360704246,57.94248305823376],[-125.4739374214079,57.94247473258483],[-125.47399572847127,57.942458139866055],[-125.47406882070452,57.942442726968615],[-125.47418775170921,57.942396092306446],[-125.47434487087766,57.94233727141432],[-125.47450197387644,57.94227957179732],[-125.47475614958755,57.94222786207708],[-125.47514159666845,57.94215311686487],[-125.47548046906685,57.942086037941756],[-125.47570271215419,57.942052145087864],[-125.47587497087702,57.94204272876219],[-125.47595420985644,57.942040797226255],[-125.47595395970437,57.942058740532225],[-125.47595873090971,57.942094647866554],[-125.47600145520137,57.942060048739606],[-125.47601339220134,57.942037665296006],[-125.47603554391208,57.94203887387754],[-125.47609361618372,57.94204022362101],[-125.47614857455595,57.94203707503128],[-125.47629114038864,57.94203651363445],[-125.4765508827096,57.9420397767697],[-125.47681275266508,57.942041926230424],[-125.47709355247393,57.94204975701651],[-125.47732821627113,57.94203385446418],[-125.4774034182922,57.94201844802559],[-125.47743210864954,57.94200510227389],[-125.47745881303163,57.94198389810733],[-125.47747271950666,57.9419704944002],[-125.47748919132614,57.941925698248774],[-125.47751166722186,57.94182821429843],[-125.47754670567193,57.94173863020988],[-125.47756608741518,57.941711789744204],[-125.4775978136027,57.94170854951631],[-125.47766237582788,57.9416975873167],[-125.47779142358372,57.94168239162864],[-125.47794163755712,57.9416639141523],[-125.47808446797599,57.94164540760191],[-125.47823795010929,57.941619091966956],[-125.47850802655157,57.94156295132945],[-125.47891251354035,57.9414849052498],[-125.47926609466542,57.94142236036108],[-125.47940146113288,57.941408309323236],[-125.47951566146833,57.941397540064074],[-125.4797446051829,57.94133675028411],[-125.47999466753843,57.941276042495176],[-125.48023118911028,57.94127808638272],[-125.48035443450028,57.94129987565718],[-125.4804274133688,57.94129230948624],[-125.48061997171573,57.941266143419696],[-125.48086970695027,57.94122898457385],[-125.48103369865684,57.94120607122003],[-125.4811449242087,57.941181830793894],[-125.4813058025152,57.94115554044142],[-125.48151326680797,57.94112045895798],[-125.48164863134824,57.94110640564288],[-125.48169961143543,57.94108529504605],[-125.48174232929586,57.94105069411629],[-125.48175729830851,57.941037294113436],[-125.48180759802527,57.94106552754555],[-125.4819102941589,57.94112312401912],[-125.48196157980385,57.941155847291675],[-125.48199214944714,57.94116045214334],[-125.48206175049506,57.94116745166831],[-125.48212074555391,57.941177774505185],[-125.48220283288619,57.94119828065712],[-125.48238277712674,57.9412438401044],[-125.48263881482437,57.941286330084296],[-125.48291308926328,57.941307581496815],[-125.48307987088377,57.941312714357956],[-125.48324250575125,57.941312223354686],[-125.48348331324748,57.941309792019],[-125.4836354500131,57.941304773796446],[-125.48374210996656,57.94130406536415],[-125.48399864222579,57.94131066612136],[-125.4843991572957,57.941367170042355],[-125.48474590269291,57.941416735853984],[-125.48496081156894,57.94137831322684],[-125.48518982315349,57.941311906813226],[-125.48538943922044,57.94130931296189],[-125.48552449601794,57.94131768484551],[-125.48563758541947,57.941311392128085],[-125.48568403278578,57.94131269284341],[-125.48578941508839,57.94132880058521],[-125.48603377173667,57.94137572503998],[-125.48622949288617,57.941426947687184],[-125.4863692700697,57.94147571148717],[-125.48654390329695,57.94152460939305],[-125.48670410549704,57.941547656634896],[-125.4867885530704,57.94155022478592],[-125.4868476112651,57.941556059706116],[-125.48694895451146,57.941558692789044],[-125.4870576980648,57.94156135426863],[-125.4871199617086,57.94156383685273],[-125.48724361136125,57.94155758339595],[-125.48756464390232,57.94155769625346],[-125.4879328574867,57.94150527831504],[-125.48814228129073,57.94140290308927],[-125.48819585868748,57.941345911479324],[-125.48832582800978,57.941340802801136],[-125.48856850317705,57.94135631370152],[-125.488697164,57.941369143894214],[-125.48875465934519,57.94133459740648],[-125.48887094122176,57.94124756506177],[-125.48894809925001,57.94116486871361],[-125.48900702433895,57.94110341123622],[-125.4890561932248,57.94105986059177],[-125.48907909166257,57.9410061156148],[-125.48916637042156,57.940878597344586],[-125.48932572612232,57.94073004637489],[-125.48941313696417,57.94066981938303],[-125.48942170644598,57.940660880085],[-125.48944518111126,57.94064302575216],[-125.48952689384228,57.94061417928429],[-125.48964622619414,57.940536130143265],[-125.48971019334246,57.940413008403894],[-125.48970832795001,57.94031767253133],[-125.48968625423277,57.94023235294096],[-125.48973185321314,57.94006205732303],[-125.48987517742894,57.939850639702584],[-125.49000608527535,57.939697493189996],[-125.49004899168249,57.939648310729],[-125.49003855414482,57.939639298692384],[-125.48988534794391,57.9395680571683],[-125.48961248304926,57.939443646262156],[-125.48948126149688,57.93938594661247],[-125.4894711896919,57.93935001961361],[-125.48945423755956,57.93927705632723],[-125.48944410488593,57.93924561514995],[-125.48971396195255,57.93928029380751],[-125.4903114268916,57.93929603766662],[-125.49071480061897,57.939217951896666],[-125.49080902726905,57.93912186173279],[-125.49084678238617,57.939063687272075],[-125.49086831063384,57.93903348865012],[-125.4908747675826,57.939024541208596],[-125.49089741918158,57.93898873930995],[-125.49092858043144,57.93894960536821],[-125.49094155501284,57.9389272246618],[-125.49096425204583,57.93888805839169],[-125.49102148361031,57.93879519138054],[-125.49111856406888,57.93864415783965],[-125.49124608898425,57.938428192749335],[-125.49138149587623,57.938175247778254],[-125.49152522833442,57.93793242810426],[-125.49164202298387,57.93772875850721],[-125.49169066596468,57.93764483066995],[-125.49169818679424,57.937635887259944],[-125.49174212089294,57.937587829807896],[-125.49184392223022,57.93747830985402],[-125.491933933346,57.93738108151784],[-125.49200964870951,57.93732529454692],[-125.49214051259557,57.93725289500056],[-125.4922911258798,57.93720300076484],[-125.4924003854269,57.937165285510424],[-125.49248325685399,57.93712746970285],[-125.49252620250164,57.937074922219594],[-125.49253779039282,57.93699870363794],[-125.49255643990817,57.93686867946052],[-125.49257168802667,57.936756586508956],[-125.49258520577614,57.936693833413734],[-125.4925984813083,57.93664902355577],[-125.4926253380575,57.9366143589815],[-125.49271808220878,57.93654966440196],[-125.49287432570362,57.936472874754905],[-125.49299874409009,57.936408300492694],[-125.4931009811314,57.936343641771565],[-125.49328966874722,57.93620977806477],[-125.49349637291708,57.936071496540244],[-125.49363808988913,57.93597670670871],[-125.49376613245477,57.935877378771345],[-125.49386854790309,57.935799262081815],[-125.49395507197613,57.935724449517664],[-125.49401495225433,57.9356686014111],[-125.49404131804734,57.93559243892078],[-125.49406159034729,57.93549830917081],[-125.4940762146841,57.935432195694354],[-125.49408818228895,57.935405324921774],[-125.49413635083637,57.93535728288649],[-125.49421820627049,57.93523759215594],[-125.49428475882681,57.935077469054114],[-125.49436959293577,57.93497236916966],[-125.49454903883753,57.93489678724641],[-125.49478642525207,57.93483151828043],[-125.49502054648573,57.93477408708009],[-125.49524918389842,57.934731214302275],[-125.4953826495563,57.93469919593802],[-125.49545577629104,57.934678164127305],[-125.49555780879533,57.934628082490626],[-125.49570953142704,57.93457370275768],[-125.49588012048952,57.93452836626837],[-125.49597366068038,57.93448161672626],[-125.4959703747567,57.93433356540946],[-125.49594482226271,57.93411253199344],[-125.49594087494526,57.93401382450713],[-125.49599171712181,57.93400168019839],[-125.4961070577658,57.9339819291762],[-125.49620769457324,57.93395763645496],[-125.49626692260614,57.93395000976306],[-125.49630063196732,57.933955744686195],[-125.49645153568211,57.9340404278336],[-125.49673227473714,57.93420634956424],[-125.49689044235244,57.934300031708005],[-125.49690725972044,57.93430570271759],[-125.49704868858343,57.934309600974586],[-125.49729250614502,57.934316128296125],[-125.49756679795988,57.934332863605185],[-125.49794298272589,57.93438811340363],[-125.4984100124202,57.934441461019226],[-125.49889950532632,57.93447246131748],[-125.49929195680522,57.934496366275106],[-125.4995438595913,57.93445020904349],[-125.49978322670555,57.934393910739836],[-125.50001024568817,57.93447214644871],[-125.50019100500225,57.934535628735375],[-125.50027239610759,57.934528083363155],[-125.50030511888248,57.93452932754836],[-125.50033999594667,57.93452609377557],[-125.50045833289907,57.93451980828827],[-125.50067494039483,57.934508283335575],[-125.50082499533536,57.93449875182059],[-125.50096413514387,57.93451609542296],[-125.50119609462386,57.93454051530215],[-125.50147859815345,57.93457521738362],[-125.5017486705866,57.93459192829667],[-125.50187004754787,57.93459462496995],[-125.50190904570746,57.934600378238244],[-125.50199428837601,57.93462088386541],[-125.50204378501583,57.9346311623439],[-125.5020556872598,57.93460877668198],[-125.50208255072438,57.934574110340165],[-125.50209551715605,57.93455172865159],[-125.50218441077985,57.93453635959475],[-125.50244700166186,57.93448014324955],[-125.50280504195742,57.934391758795776],[-125.50320635892825,57.93430353470102],[-125.50362445002759,57.934225465432775],[-125.50389542357006,57.934173763508035],[-125.50412017911249,57.93410394501209],[-125.5044857711822,57.934002126137486],[-125.50483004132504,57.93391704964641],[-125.50495770769002,57.933843504529825],[-125.50507156640435,57.933775515553336],[-125.50539987230455,57.933780098736],[-125.50584755931769,57.93377839472697],[-125.50626603842176,57.93374966490773],[-125.50655000012055,57.93375295948303],[-125.50664177144698,57.93376002822953],[-125.50668809249446,57.93377029321935],[-125.50679780338574,57.933777428253144],[-125.507004364988,57.933806230046436],[-125.50738373408707,57.93386146491568],[-125.50776081658108,57.9339301483182],[-125.50798198438181,57.93397246059418],[-125.50814007067272,57.93399435264773],[-125.50821059328739,57.93401031393885],[-125.5082619595252,57.93395779272268],[-125.50836154739001,57.93385161713755],[-125.50844209944735,57.93374649279502],[-125.5085505280914,57.933610069080636],[-125.50870239457133,57.93346146887333],[-125.50881227141852,57.933374396510835],[-125.50887717869139,57.93333650455227],[-125.50892415896456,57.9332963035077],[-125.50896666716436,57.93327515154079],[-125.50899433627882,57.93325843091275],[-125.50913334810978,57.93320398924605],[-125.50937616128557,57.933125256487614],[-125.50948961481102,57.9330875429337],[-125.50957147127728,57.93304522701255],[-125.50978625162877,57.932929380761315],[-125.51002406682974,57.932828198407655],[-125.51014432076099,57.932754621209206],[-125.51013927213302,57.932655910375125],[-125.51022757816914,57.93260464575596],[-125.51056800079428,57.93264963487205],[-125.51090590736365,57.93264526775106],[-125.51110923454941,57.932597789088184],[-125.51126367706125,57.93257480393766],[-125.51132923422749,57.93256719379128],[-125.51141736355909,57.93252938578131],[-125.51170155087316,57.932433977995714],[-125.51210927681652,57.93233677889092],[-125.51236713457291,57.93223678732419],[-125.51242434442763,57.93213942592033],[-125.51250597742428,57.9321139299745],[-125.512689846291,57.9321011443396],[-125.51291182245245,57.932080647207336],[-125.51301959246335,57.932074312002435],[-125.51302832866831,57.93205191388004],[-125.51316175099551,57.93193912959381],[-125.51350514810451,57.93175533567971],[-125.51385270992624,57.93165679023226],[-125.5140005807577,57.93165172200657],[-125.51409484866306,57.93162739268153],[-125.51433564575203,57.93153967173301],[-125.51459841469782,57.9314666098998],[-125.5147256483714,57.9314244561736],[-125.51476702916037,57.931407784317685],[-125.51480114426373,57.93138211399041],[-125.51484494265523,57.9313430208912],[-125.51487907211573,57.931316229097284],[-125.51488769128628,57.93130280245759],[-125.51495586322402,57.931255947531895],[-125.5150837321539,57.931164449751975],[-125.51515401497153,57.9311176024137],[-125.51517313302874,57.9311086999544],[-125.51529196272821,57.931063150636874],[-125.51549862228514,57.931001098019806],[-125.51561384478839,57.93099030182657],[-125.5156569893745,57.9310005521285],[-125.51582080217588,57.930987689326585],[-125.51623185879728,57.93095777997839],[-125.51680521850784,57.93095088789347],[-125.51724001593585,57.93096367852254],[-125.51752583867969,57.93098490052436],[-125.51777363084186,57.93100934881763],[-125.51787793387297,57.931025427168244],[-125.51798406335153,57.931065063550435],[-125.5181994934491,57.931142104526714],[-125.51832379173509,57.931163862311635],[-125.51834302399106,57.931145987809025],[-125.51837186642142,57.931120297529475],[-125.51845054746512,57.93107684331951],[-125.5185704777691,57.931026809070616],[-125.5186894897133,57.93096667789949],[-125.51882467503066,57.93088081051672],[-125.51898612848498,57.93080400981338],[-125.51905728086798,57.93077062159198],[-125.51910605720607,57.93075397509705],[-125.51915578289305,57.93074630400885],[-125.51922700671214,57.93070730845828],[-125.5193642438773,57.930625933959895],[-125.51943750693397,57.93059255315572],[-125.51947052788636,57.9305702422232],[-125.51956830889664,57.93051900575346],[-125.51966289844023,57.930387009752764],[-125.51964490967008,57.93022432751879],[-125.51967027279538,57.93014030649297],[-125.5198375397471,57.93010389975263],[-125.52006623496422,57.93005201304029],[-125.52029175413502,57.93000011450878],[-125.52046980524726,57.9299458018196],[-125.52055263252792,57.929907968851786],[-125.52061476120792,57.929837537922545],[-125.52071885464494,57.929705575471246],[-125.52079888774719,57.9295555824773],[-125.52084060277772,57.92943012466016],[-125.52085833614181,57.92936402002726],[-125.52090335883055,57.92931034997856],[-125.52099168258788,57.929254592561584],[-125.5210500224032,57.92923349377291],[-125.52118905901852,57.92917455397778],[-125.52147525035788,57.92908361906087],[-125.52166678453183,57.92904841871717],[-125.5217004363114,57.92905863297252],[-125.52179081250489,57.929007368403234],[-125.5222284913537,57.92887547997678],[-125.52284788792994,57.928730782906285],[-125.52324112438122,57.92860658257026],[-125.52347506571304,57.92847283964086],[-125.52362088402226,57.92837803373572],[-125.52365493350759,57.92835684700728],[-125.52374520861133,57.9283145527768],[-125.5238694164924,57.92825892176588],[-125.52400635076177,57.92819997160954],[-125.52416344617717,57.928132121334244],[-125.5243156234802,57.928119206640346],[-125.5244706895912,57.9281276105093],[-125.52461555687358,57.92810906190875],[-125.52471754688383,57.92805783685541],[-125.52476426268518,57.92803669502569],[-125.52481314632307,57.92801107492569],[-125.52489501428015,57.92796426397832],[-125.52502279117078,57.92787724276145],[-125.52519121817208,57.927747749429145],[-125.52529917235898,57.927642713416425],[-125.52531961651994,57.92761138436172],[-125.52534499314918,57.92760811026076],[-125.52542016078519,57.92759155552961],[-125.52549735188884,57.92758061543856],[-125.52552485381035,57.92757622737537],[-125.52553978770533,57.92756394409395],[-125.52557390611588,57.92753714966803],[-125.52559418295488,57.9275203994202],[-125.52562701090208,57.92751154431431],[-125.52574625828616,57.92751533321615],[-125.52599097080936,57.927530783282734],[-125.52619029891964,57.9275449500551],[-125.52635586522979,57.927558996540476],[-125.52650442650113,57.9275808328702],[-125.526610908295,57.927592426108696],[-125.52671221667784,57.92759502892617],[-125.52685567811714,57.9276033888077],[-125.52704239627236,57.927613023552425],[-125.52716797766348,57.927616833659776],[-125.52729466261553,57.92761616158168],[-125.52747188907483,57.927625762056316],[-125.52760808001135,57.927624001890116],[-125.52773377417097,57.92761883990132],[-125.52798316100858,57.927598415022366],[-125.52831285677689,57.92757154497727],[-125.52851996319363,57.92755545542319],[-125.5286172741803,57.92754009872819],[-125.52869019972832,57.927532506189486],[-125.5288159496416,57.92752285739904],[-125.52902729197078,57.927505660540604],[-125.52922589686325,57.927494025827734],[-125.52933981606385,57.92750115717565],[-125.52945579035121,57.927512781662145],[-125.52963524027157,57.92751341514957],[-125.52972931938822,57.9275025322181],[-125.52973793238216,57.92748910467215],[-125.52978864263275,57.92748591911999],[-125.5299827444947,57.92749669729022],[-125.53023579126197,57.92752114090923],[-125.53042869224716,57.92754425064018],[-125.53063394969888,57.92759095500525],[-125.53078658491337,57.927626258840945],[-125.53083707139177,57.927641016020814],[-125.53086966036598,57.92765122419993],[-125.53096325279111,57.92768071250255],[-125.53108317081674,57.92771477935203],[-125.53119474217131,57.92774096626719],[-125.53127998525284,57.92776145301644],[-125.5313337032452,57.92777173539425],[-125.53136320400645,57.92777632511735],[-125.53141501755555,57.92776865684393],[-125.53159491574505,57.92773340142333],[-125.53209223114251,57.9276398213743],[-125.53271957309491,57.92761622814105],[-125.53305342677287,57.92776431414647],[-125.533161186945,57.92784319632039],[-125.53322910711177,57.927814275358635],[-125.5332756507955,57.927806587904975],[-125.53347027010444,57.92777586749108],[-125.53395214984715,57.92773493672819],[-125.53457899253162,57.927751706801544],[-125.53516733528092,57.92780871345393],[-125.53558061670762,57.92785164962265],[-125.53576606965842,57.92787921164218],[-125.53585559330942,57.92789522439],[-125.53625939834447,57.92793700395241],[-125.53695966561958,57.92807738272176],[-125.53734425230502,57.928308624871086],[-125.53740224767151,57.92848490093875],[-125.5374455213207,57.92857140628114],[-125.53750528620868,57.928605258561184],[-125.53762014720085,57.92862135805386],[-125.53777505603512,57.92864432532448],[-125.53786353518728,57.92866033310429],[-125.53797107071487,57.92867192091029],[-125.53817674311395,57.92868609172921],[-125.5383845851031,57.92869690525896],[-125.53858509821704,57.92870208561312],[-125.53882664842196,57.92871750113575],[-125.53905437419475,57.92874184036966],[-125.53919773280823,57.928759158558435],[-125.53928210026234,57.92876617921506],[-125.53935803649318,57.92877204918129],[-125.53947084563308,57.92878477549887],[-125.53960781592988,57.92880655715235],[-125.53973202278856,57.92883614505399],[-125.53984154713405,57.928857831677014],[-125.53993107485024,57.92887384170352],[-125.5400806536796,57.928814918723695],[-125.54031241670374,57.92876749403436],[-125.54045135666244,57.9288879732078],[-125.54049475308604,57.9290507396949],[-125.54062133302452,57.92905902653469],[-125.54081545341506,57.92898343381059],[-125.54095208674129,57.928945773658974],[-125.5410282289204,57.92893482094987],[-125.54109799622542,57.928927210733264],[-125.54117514766203,57.928920747397754],[-125.54125540278568,57.92891878068278],[-125.54160254570344,57.92893231160435],[-125.54226753654186,57.92902655984392],[-125.54266020130544,57.92920398269093],[-125.54272615278465,57.92933654548324],[-125.54275599423809,57.9293994516327],[-125.54288726265091,57.929457098220354],[-125.54314092855253,57.92951852879953],[-125.5433432311258,57.92955062401853],[-125.54347277090922,57.92957686222343],[-125.54356547727106,57.929592880697705],[-125.54365390667894,57.9296133704467],[-125.54375565711464,57.92958007393408],[-125.54382745183166,57.929491721519234],[-125.54387870772878,57.9294436726302],[-125.54394118955543,57.929428185515405],[-125.54398552655877,57.92942833722794],[-125.54404055597861,57.92941731055018],[-125.54413896702265,57.92939746027789],[-125.54441851254613,57.92932776194398],[-125.54488955677296,57.92922395075509],[-125.54528944204766,57.929154661507475],[-125.5457611089255,57.92908561574602],[-125.54644879925571,57.92896122892206],[-125.5471470007852,57.92884023878272],[-125.54770756210952,57.92875242280397],[-125.54804084364562,57.92868962828184],[-125.54842506664467,57.928605697161636],[-125.5489455752695,57.92851213282761],[-125.54927553289927,57.92846278192681],[-125.54961345102745,57.928453830900715],[-125.55007410222647,57.92842174205364],[-125.55030801509481,57.92836982133526],[-125.55048534331975,57.92828406455312],[-125.55083715927913,57.92817197989566],[-125.55124832793116,57.92803990731816],[-125.55167368940002,57.927867507493616],[-125.55214377282927,57.92766385485493],[-125.55254486917235,57.92749024930605],[-125.55269767442779,57.92742347272237],[-125.55271277279616,57.927396607578885],[-125.55278023605678,57.92713776926969],[-125.55286150501564,57.92669505267904],[-125.5528929471804,57.92644843004906],[-125.55289083874794,57.92635870367342],[-125.5528971383216,57.926273491479975],[-125.55300563142642,57.926204322988404],[-125.5533024385589,57.92609989806982],[-125.55368884171172,57.92591726825858],[-125.55399309518285,57.9257186615911],[-125.55414278209038,57.92564626561916],[-125.55430929123425,57.925669252417414],[-125.55461184074584,57.92570390865702],[-125.5548880469561,57.92573399025991],[-125.5550932463397,57.92569878780996],[-125.55540713114232,57.92557759295562],[-125.55578881969672,57.92543531511173],[-125.55606488636953,57.92529829183195],[-125.5562884394518,57.925138663374014],[-125.55646082309958,57.92502148086331],[-125.55681752946835,57.92493743446889],[-125.55741189211905,57.92484071879977],[-125.55798393621433,57.92475738433668],[-125.55854646973253,57.924674015927586],[-125.55899921471509,57.9245914033599],[-125.55937586927767,57.924516388110014],[-125.5597756909249,57.92444593429561],[-125.56017106609451,57.92439452991484],[-125.56064053493613,57.92432542487255],[-125.56101285683854,57.9242593626544],[-125.56118210315128,57.92422851843479],[-125.56125402097501,57.924216418877016],[-125.56144859883486,57.924185657723385],[-125.56185905949535,57.92410738230635],[-125.562410125469,57.92400938066121],[-125.56296841602432,57.92392597978666],[-125.56323922065366,57.92387527924241],[-125.56329852336702,57.923858651292804],[-125.56338647586406,57.923829780832776],[-125.56368761349658,57.92371188954539],[-125.56414137537564,57.923539544047436],[-125.56435761554486,57.923460625612066],[-125.56438093996624,57.92345172997052],[-125.5644846104864,57.92343188207977],[-125.56468033252466,57.923392148101435],[-125.56489198553133,57.923344615453225],[-125.56517375302924,57.92325805926271],[-125.56544187136383,57.92316585054585],[-125.56567483871191,57.92310044240224],[-125.56599233308599,57.923027458791154],[-125.56639906697997,57.92290429798432],[-125.56685692519078,57.92274092867155],[-125.56717471108284,57.92264214907003],[-125.56749209550216,57.922578133468264],[-125.567868609874,57.922512065919506],[-125.56803351785378,57.92249017091058],[-125.56810230686953,57.922473571613246],[-125.5682619972367,57.92244717347133],[-125.56840580859937,57.922424088163886],[-125.56867444560429,57.92237673414686],[-125.56909959631805,57.92230297017859],[-125.56934073867411,57.922260011854426],[-125.56943807063021,57.92224013966761],[-125.56956619441111,57.92220354460978],[-125.56972193027259,57.92215358078098],[-125.56987996492131,57.922085680441775],[-125.57002746151267,57.92201774591762],[-125.5701338512339,57.921944071208486],[-125.57016912074567,57.92190493303398],[-125.57017456016037,57.92189149276894],[-125.57018641781558,57.92186910133289],[-125.57020682551412,57.921838887085464],[-125.570224225039,57.921794083839366],[-125.57022901062425,57.92174475397299],[-125.57022413511687,57.92170885075714],[-125.5702413295273,57.92168199059782],[-125.57034967499534,57.92162177986166],[-125.57051956770704,57.92153260885511],[-125.57062137491525,57.921490320576105],[-125.57065729769089,57.9214870718785],[-125.57069112241656,57.921482694927946],[-125.57070809877958,57.92147489923685],[-125.57076564193147,57.92142686081659],[-125.57091606401781,57.921287159846685],[-125.5710128167672,57.92113270666923],[-125.57097278577464,57.921032765773354],[-125.57111245963081,57.92090985228416],[-125.57151596712539,57.92069582576794],[-125.57176435691068,57.920477935197425],[-125.57165702258126,57.92026450854213],[-125.57144350042448,57.92001597440517],[-125.57132763676042,57.91981037051565],[-125.5713055561182,57.91971048760606],[-125.5713249490581,57.91967578407101],[-125.57135938554555,57.91961757781946],[-125.5713888305735,57.919533561433774],[-125.5713426894759,57.91941565745826],[-125.57123138064468,57.91927287119981],[-125.57117422649534,57.919195305070225],[-125.57117443107043,57.9191773620325],[-125.57117430064359,57.919095493503455],[-125.57117262619185,57.918965396338514],[-125.57117123150206,57.918902588929754],[-125.57120835208391,57.91888588618777],[-125.57127814576761,57.91887377449511],[-125.57133860308006,57.91884817496164],[-125.5713938134661,57.91881919408166],[-125.57145456038552,57.918766679897125],[-125.57152170719131,57.91870970034824],[-125.57154521859289,57.91868398190726],[-125.57157401100964,57.91865715896396],[-125.57171294620856,57.91859816718326],[-125.57192025264506,57.91855846011486],[-125.57206720447074,57.91853538109477],[-125.57244864952452,57.91849623239786],[-125.57305290162849,57.918445460488854],[-125.57349547378449,57.91841211206786],[-125.5738873551129,57.918383085991515],[-125.57429517165151,57.91834401636342],[-125.5746417399473,57.91830811440848],[-125.57488489765143,57.91827076016468],[-125.57497805838773,57.91824526334959],[-125.57508284453698,57.91821756058785],[-125.57524699920457,57.918167617435216],[-125.57532321086498,57.9181476737456],[-125.57541319657103,57.9181221665113],[-125.57568424626224,57.91804452645037],[-125.57599960581074,57.917968148344],[-125.57627910839187,57.91788941251364],[-125.57658914677847,57.9178175020249],[-125.57683025182294,57.91777453034889],[-125.57697076476208,57.91776039733805],[-125.5770553163463,57.91774945098155],[-125.57708069442135,57.91774504562529],[-125.57708829183674,57.91772712608139],[-125.57711004122126,57.9176699997028],[-125.57714129253436,57.91761178200339],[-125.57717455780272,57.917563663998706],[-125.57720672141527,57.917518906927945],[-125.57724409003943,57.91747977375964],[-125.57733186049045,57.91737014735172],[-125.57748726939272,57.91715868090897],[-125.57764583399258,57.91694722434102],[-125.57773562448875,57.91684545448288],[-125.57778565539566,57.91680636132562],[-125.57783765004065,57.91678185358194],[-125.57795540806532,57.916726152788364],[-125.57815043659949,57.91665050998703],[-125.57829965547806,57.916613973625104],[-125.57837690921563,57.91659403153463],[-125.57843946860287,57.91656843551949],[-125.57847020167493,57.91655619651035],[-125.57849778988236,57.91654282606775],[-125.57864248536524,57.91653319046976],[-125.57884484881731,57.91655625986044],[-125.57896280222474,57.916577940738634],[-125.57902911360998,57.91659272948464],[-125.57909125843352,57.91660414060276],[-125.57914189962761,57.91660542205893],[-125.57917776681612,57.916606656831256],[-125.57934265486242,57.91658362652453],[-125.57968622832396,57.91652975849141],[-125.57998545824304,57.916479114221204],[-125.58019283187973,57.91643154430756],[-125.58043099982034,57.91636612742719],[-125.58062462458399,57.916321877982],[-125.58083603020064,57.91629114192223],[-125.58108968401231,57.91625717394619],[-125.58141522091626,57.91621221658899],[-125.58179733040124,57.91620444475715],[-125.58197240640033,57.91621396601344],[-125.5819811477109,57.91618707800482],[-125.58206040932419,57.91608190789054],[-125.58219382954573,57.91594550626222],[-125.58227701222462,57.91586726377091],[-125.58234533370347,57.915796824979424],[-125.58242128674195,57.91570510203728],[-125.58251106135288,57.91560332909295],[-125.5826381840434,57.91546354293699],[-125.58275026305458,57.915349503502966],[-125.5828014499563,57.91530144036341],[-125.58283776375013,57.91526230243899],[-125.58289106091664,57.91521424587787],[-125.5829208565381,57.915191909655384],[-125.58296737443722,57.91518420495086],[-125.58307832849482,57.915169973043994],[-125.58317126473993,57.9151635349993],[-125.5833132966299,57.9152032309364],[-125.58359086395424,57.915296059756486],[-125.58384738963063,57.915383214901134],[-125.58400950164553,57.91541960839585],[-125.58418859721985,57.91544708289872],[-125.58443149154785,57.915431018641314],[-125.58469737949012,57.91533876530299],[-125.58499718706851,57.915234280886175],[-125.58541718756186,57.91513802021719],[-125.58580856695475,57.915054005484315],[-125.58606777641933,57.91499425146834],[-125.5862803155987,57.91495453857443],[-125.58642765596797,57.91489555789485],[-125.58651855089062,57.91478593553274],[-125.58664732343304,57.914591198610445],[-125.58681029297912,57.91435731608687],[-125.58698343571936,57.914254677385706],[-125.58723638114367,57.91428349817126],[-125.58761254598315,57.91433400795756],[-125.58816239036447,57.91442542675478],[-125.58866045381922,57.914524533732006],[-125.58887652214811,57.914547630165934],[-125.58893053111706,57.91453097471664],[-125.58898125562934,57.91452440237756],[-125.58906474502444,57.91451232371917],[-125.5891387825009,57.91449685143795],[-125.58918430047046,57.91448465559581],[-125.58935242826597,57.91445265119998],[-125.58964534622777,57.914397480084865],[-125.58993392775143,57.91435126677251],[-125.59020765459607,57.91431397893535],[-125.59052567113056,57.91427794814913],[-125.59092508166802,57.914229830354756],[-125.59131153613701,57.91420858698195],[-125.59154789327668,57.91421043332271],[-125.59161906411398,57.91416803552638],[-125.59161998939233,57.914082806402064],[-125.59162087814262,57.914000941592526],[-125.59161804495,57.91396953166348],[-125.59164653198143,57.91397074045867],[-125.59173303514643,57.91397324852795],[-125.59185330516004,57.91397585999581],[-125.59194359126535,57.9140187525455],[-125.5919897294922,57.914142255897254],[-125.59214637077831,57.91429413442549],[-125.59242395319016,57.91438694475396],[-125.59256196535277,57.914408674905104],[-125.59266193620671,57.91443365302533],[-125.59290279052547,57.91450840648313],[-125.59314157910367,57.914577545831875],[-125.59338657137253,57.914660161372886],[-125.59371344436516,57.91478115630632],[-125.59403878854899,57.914947004743176],[-125.59428486755995,57.91512494725541],[-125.59447647001465,57.9152645934055],[-125.59467844966295,57.91532352471527],[-125.59478068463204,57.915336171928665],[-125.5948443580657,57.91540028961862],[-125.59498116785294,57.91553416105882],[-125.59510871424307,57.91564557472937],[-125.59518188249592,57.9157108426054],[-125.59520382940654,57.91572997436041],[-125.59527462494431,57.91572233912256],[-125.59551425999118,57.91561652679415],[-125.5957967788072,57.91544804159984],[-125.59610266634796,57.91536261577969],[-125.59660447316917,57.915312548334676],[-125.5970233019085,57.91522521940154],[-125.59723846965207,57.915136152148335],[-125.59746567253009,57.91500786934395],[-125.59765283473263,57.91487385788712],[-125.59773177392906,57.91479447165098],[-125.59775412223131,57.914777717028656],[-125.59776375482039,57.91476428843174],[-125.59780638393852,57.91472516556603],[-125.5979085735864,57.9146424850093],[-125.59805019821856,57.91452403622996],[-125.59817793984497,57.91442012459241],[-125.59829044057281,57.91435990433012],[-125.59834356310114,57.91422660924337],[-125.5983826474763,57.914025983487086],[-125.59850176524917,57.913938867687435],[-125.59869260683227,57.91395290037049],[-125.59890685951065,57.913950181181676],[-125.5990919556615,57.91390924385295],[-125.59928439108928,57.91377524616039],[-125.59950126551168,57.913624499607295],[-125.59962253757051,57.913532903443055],[-125.59972121182415,57.913481612261975],[-125.59983688131261,57.91342140028949],[-125.59988569480245,57.91339575305941],[-125.59991411707284,57.91340144577827],[-125.599998461384,57.91340842788414],[-125.6000659344709,57.91341423781775],[-125.60028411878784,57.91343844354548],[-125.60037790395101,57.913449939623696],[-125.60043050907912,57.91346467654462],[-125.60057878871089,57.913513344480215],[-125.60081855352186,57.913591444674],[-125.60106454352652,57.913679656327716],[-125.60120235097885,57.91371932044064],[-125.60137805615389,57.91376919106115],[-125.60168221930144,57.91384411797187],[-125.60195387036671,57.91390100350124],[-125.60216774298769,57.913934165037375],[-125.60231313717267,57.913955907108964],[-125.60248169884383,57.913982204041176],[-125.60276082492841,57.91403013845464],[-125.60303885761154,57.91408255491397],[-125.60336086735573,57.914167624424714],[-125.6037536577793,57.9142461748702],[-125.60405692438061,57.91430763603702],[-125.60418643708931,57.91433381475288],[-125.6042126727582,57.91434847183788],[-125.60424490436048,57.91439342648248],[-125.60432116578643,57.91446767018155],[-125.60444878339217,57.91457458903541],[-125.60459942827619,57.914699519684916],[-125.60475631992578,57.914731386471914],[-125.60496568061973,57.91469163441417],[-125.60515040224885,57.91468769613008],[-125.60526429699458,57.914694762478504],[-125.60534897463508,57.91467034095008],[-125.60539558140665,57.91465365691737],[-125.60542464565735,57.91469972337685],[-125.60555739382258,57.914820114050926],[-125.60579739481685,57.914978952079196],[-125.60601537014989,57.9151242668848],[-125.6061635362096,57.915285075627054],[-125.60626081646973,57.91546816331741],[-125.6063355039489,57.91559174611225],[-125.60643153186534,57.91569296244958],[-125.606499352968,57.91576605857438],[-125.60654932534563,57.9158312516427],[-125.60661495944696,57.91591331305034],[-125.60665237451171,57.915968375744264],[-125.60667424532097,57.9159953556903],[-125.60671051991977,57.9160593867978],[-125.60674333898713,57.91615032307937],[-125.60677634578953,57.91622331632685],[-125.60683031765727,57.91630982913474],[-125.60691440403559,57.91644241123545],[-125.60705289081388,57.91662225569482],[-125.60720628839252,57.91678756482748],[-125.60747171798369,57.91693862474911],[-125.60792075543415,57.917090224612025],[-125.60825659514099,57.91726952707185],[-125.60833747393013,57.917509760609676],[-125.60833597922075,57.91765330510723],[-125.60833046063463,57.91767571840059],[-125.60841151847481,57.91769614322723],[-125.6085913628236,57.91775498843074],[-125.60872373831981,57.917812572522024],[-125.60875102506374,57.9178272318409],[-125.60869986788704,57.91787530507401],[-125.60855305433425,57.91798814290032],[-125.60840037494319,57.91805610428855],[-125.60828478019228,57.91811071682677],[-125.6081444366808,57.91821011554101],[-125.60801169340046,57.918288228425325],[-125.60792672878712,57.91833956635175],[-125.60784254710578,57.918417821973286],[-125.6077368670937,57.918531901517056],[-125.60761619449734,57.918668366381105],[-125.60747234494762,57.91879915549298],[-125.60736053481698,57.9188952730928],[-125.6072923950694,57.91895226762101],[-125.6072328502047,57.9189947082479],[-125.60719984465128,57.919021526408166],[-125.60715679876478,57.91910102440426],[-125.60709564856951,57.919297102695495],[-125.60705661036312,57.91949885360394],[-125.60703861135673,57.91960534094455],[-125.60702436751063,57.91965464397722],[-125.60701733222106,57.91972191192541],[-125.60701745864684,57.919811630569676],[-125.60702706334362,57.919902498655716],[-125.60702947114885,57.91997428038699],[-125.60703702372936,57.92005953504165],[-125.60705580741399,57.92018183162746],[-125.60708719218238,57.92030865130122],[-125.60711269511921,57.920393958911994],[-125.60713740375496,57.920453470161824],[-125.6071726196003,57.92051749830512],[-125.60720778871753,57.920586012222515],[-125.60722534731376,57.920621951322005],[-125.60723264987668,57.92063094468322],[-125.60724882194457,57.92069940259796],[-125.60728213125203,57.92084417163801],[-125.60723348692946,57.92095505474837],[-125.60716227399872,57.92100194696702],[-125.60723767810642,57.92105824324672],[-125.60732427893763,57.92115494576248],[-125.60734021723238,57.92124583261532],[-125.60734506439128,57.9212862201835],[-125.60734795810166,57.92131314423465],[-125.60735444780637,57.92139839585568],[-125.60736647915938,57.9215610459623],[-125.60736530839756,57.92167319056564],[-125.60734258561304,57.92172583319733],[-125.60735147241984,57.92178529786164],[-125.60742603555684,57.92192233821754],[-125.60755045298751,57.92213690758612],[-125.60770514390767,57.92238296749133],[-125.60786190618917,57.92263464077843],[-125.60796700278914,57.92288055453878],[-125.60812271666688,57.923131103072244],[-125.60826415821346,57.92333338577936],[-125.6082289459931,57.92347122461232],[-125.6082150651967,57.923587818002666],[-125.60825973002034,57.92365635976674],[-125.60826492244597,57.92366534689412],[-125.60828972850015,57.92371588654516],[-125.60835690199458,57.92385290491345],[-125.60842299389587,57.92399328453741],[-125.60844468903491,57.92403932910099],[-125.60844775367433,57.92404830997228],[-125.60850486886358,57.92413931793487],[-125.60863893094256,57.924340457276564],[-125.6087668182755,57.924528120587155],[-125.60882409305341,57.924602306664006],[-125.60884079463253,57.92462029943288],[-125.60885740291496,57.92464726379766],[-125.60888009938117,57.924697797194426],[-125.60890188878858,57.92473487011899],[-125.60891230400875,57.92474835849487],[-125.60896230416616,57.9248124298205],[-125.60912078482625,57.925001304129054],[-125.60928294157397,57.9252428988359],[-125.60936218207485,57.92543826948777],[-125.60936761057606,57.92562781635794],[-125.60933312114665,57.9257970595141],[-125.60930604185648,57.925864269245004],[-125.60930594864782,57.92587324085459],[-125.60928005618325,57.92592699624015],[-125.60925155147275,57.92602896784179],[-125.60937701802561,57.92614484868901],[-125.60961862022144,57.92625882671631],[-125.60973232937161,57.92638813064],[-125.60974125564891,57.92654516482321],[-125.60966208432575,57.9266469881923],[-125.60950011298544,57.926692494610634],[-125.60942494927032,57.926712461094525],[-125.60961742896833,57.92678031425968],[-125.61000561326313,57.92690817879598],[-125.61030012917325,57.92700997414426],[-125.61049036141381,57.92709127732865],[-125.6106227262348,57.92715334590709],[-125.61071513011906,57.927200718304505],[-125.61092180742732,57.92732356393569],[-125.61124807542892,57.927520776315184],[-125.61157957007715,57.927722489109414],[-125.61185549467692,57.92788703018766],[-125.6120569561605,57.92800537298339],[-125.61219129921784,57.928080903657374],[-125.61232055818347,57.92813847560654],[-125.61252043126373,57.92820634615079],[-125.61273089588101,57.9282708827124],[-125.6128447870069,57.92828242849787],[-125.61298114935977,57.92826375927208],[-125.61322508593638,57.92825661702951],[-125.61347928503389,57.92827641981265],[-125.61369025861735,57.92829161086889],[-125.61383916667435,57.92828643498517],[-125.61389504836008,57.92829220433389],[-125.61419949737225,57.92835476785197],[-125.61483134103935,57.92850575334593],[-125.61522337026526,57.92867398749651],[-125.61528041708836,57.928773964636896],[-125.61528114300822,57.92880536840391],[-125.61538993077481,57.92890325188436],[-125.61561064898014,57.92910239213417],[-125.61576538253416,57.92924975334779],[-125.61584356209498,57.92934642675909],[-125.61588840202468,57.929401508957035],[-125.6159165180745,57.92943859912343],[-125.6159654433824,57.9295071509424],[-125.61598838139302,57.92953525426375],[-125.61600306890551,57.92954426849566],[-125.61617165278959,57.92957615581527],[-125.6165088328529,57.92963880836188],[-125.61673536735798,57.92968095510884],[-125.61677860057138,57.929686686875286],[-125.61685023666803,57.92970147219919],[-125.6170820586698,57.92974363355813],[-125.61743598398456,57.929820911232476],[-125.6178445658608,57.92992189597923],[-125.61825847674409,57.930017287294426],[-125.61858922785343,57.93009000957657],[-125.61889021537893,57.93007965570798],[-125.61927125506506,57.92998205369599],[-125.61952321826989,57.92991211941462],[-125.61957617161956,57.92989544823738],[-125.61972007066073,57.92986333572041],[-125.62010061228683,57.92991825246796],[-125.6205085913858,57.93018520774286],[-125.62077100017841,57.930439411313415],[-125.6208579288112,57.930509190998286],[-125.62087360856874,57.930523814970016],[-125.62102593338284,57.93059938801139],[-125.62135932279821,57.93072482096557],[-125.62164018382455,57.93082655269302],[-125.62172434560843,57.93085595033296],[-125.62176004728333,57.93087511699019],[-125.62190286562392,57.93095066206887],[-125.62209083426447,57.931049886325454],[-125.62216637102514,57.93109720308082],[-125.62224508351548,57.9311445287963],[-125.6225353528702,57.93125525725644],[-125.62289303154182,57.93138187670776],[-125.62307115227644,57.93151695945465],[-125.62315217123745,57.931649524481934],[-125.62328526072224,57.93174747043756],[-125.62347320896409,57.93185117871307],[-125.62373994729829,57.931993239885124],[-125.6240380005907,57.93217127660236],[-125.62429905281672,57.93235369435203],[-125.62449508316249,57.9324944332479],[-125.62464815705552,57.93260140614755],[-125.6247970536158,57.932703881153465],[-125.62486837413167,57.932751184571785],[-125.62501672624381,57.9326966489137],[-125.62532085560449,57.932583112020644],[-125.62566959898051,57.93265586740223],[-125.62605252670353,57.93289918458404],[-125.62626568143037,57.933017539126304],[-125.62634496575349,57.93300654649223],[-125.62647727726004,57.93297327258029],[-125.62658546493336,57.93292310857289],[-125.62663258604624,57.93285595105081],[-125.62664806806333,57.93278534041957],[-125.6266811656739,57.93264188216019],[-125.62680574649322,57.932429147616766],[-125.62699033433846,57.93233994501056],[-125.62709372933368,57.932346963280686],[-125.62711918924481,57.93233469810473],[-125.62722500703535,57.93231032129126],[-125.6274101516101,57.93227046529406],[-125.62752556791827,57.93223714314613],[-125.627563874095,57.932206969926504],[-125.62764571202696,57.93215112402115],[-125.62778928714089,57.93204610488539],[-125.62790296252818,57.93197352537559],[-125.62799739621802,57.931926686361884],[-125.62818896111882,57.93187787529943],[-125.62856446994519,57.931806025407646],[-125.62904247283245,57.93172436635817],[-125.62946154161976,57.93162347643978],[-125.62976024626624,57.931523372408265],[-125.62995722625138,57.931461115997216],[-125.63006311697944,57.93142888673639],[-125.63023128571687,57.93139683018876],[-125.63055108955288,57.93129790444437],[-125.63078242212124,57.93117742458513],[-125.63077143457213,57.93111459072131],[-125.63069166416251,57.93106726714136],[-125.6307854243955,57.930980050722425],[-125.63101018900207,57.93088310359792],[-125.63118434539551,57.930779287136],[-125.63134265709867,57.930675426633954],[-125.6315039126203,57.930595125366224],[-125.63162578609447,57.93054835973611],[-125.6318619303851,57.930473872461604],[-125.63222316519183,57.93034814153968],[-125.63242699520863,57.930232069035334],[-125.63250425318131,57.93010443240472],[-125.632606539806,57.93000826641553],[-125.63269571974679,57.92995692376407],[-125.63281863688904,57.92991015996058],[-125.6329774681558,57.92986125197796],[-125.63305161626771,57.92983566192614],[-125.63306437176277,57.929826725141226],[-125.6330899155636,57.92980548719452],[-125.6331166925677,57.92976518734339],[-125.633158561035,57.929694648857],[-125.63320239249236,57.929637573618734],[-125.63333691767797,57.92959196279231],[-125.63361734629879,57.92952208028552],[-125.63387890915523,57.92943980900906],[-125.6340358986226,57.92936285755421],[-125.63413145261285,57.929307045539886],[-125.63417397308977,57.929276882105455],[-125.63421327447918,57.92925119577226],[-125.63428763868862,57.929203175904384],[-125.63436732208275,57.92915180612976],[-125.63443433157288,57.92909928006018],[-125.63449924648584,57.929046748216],[-125.63458221850888,57.928981929499486],[-125.63472042105711,57.92888249603629],[-125.63488835481422,57.9287652001112],[-125.63501260642325,57.928688157880956],[-125.63506994783653,57.92865354882719],[-125.63510385855753,57.928640183841274],[-125.63516164367907,57.928669500691164],[-125.6353476986402,57.92875075692392],[-125.63556960851177,57.92883771838407],[-125.63577599142909,57.9288921139326],[-125.63599313758357,57.92892523031359],[-125.63609643804459,57.92894121323123],[-125.63615998245004,57.928920078478164],[-125.63636840075662,57.92887242338086],[-125.63662204584423,57.92884283506827],[-125.63681641257334,57.92882990704476],[-125.63697380795031,57.92882024249512],[-125.63717910950237,57.92876809170379],[-125.63751896446324,57.92866471826525],[-125.63795381925333,57.928563845059706],[-125.63831114966786,57.92850986249047],[-125.63847385612921,57.92849572464701],[-125.6386342680063,57.928500645645244],[-125.63890875206185,57.92849914665566],[-125.63909033033217,57.928498517022575],[-125.63912836512054,57.92849525556071],[-125.63916740403681,57.92849648275043],[-125.63934357278107,57.9285104174429],[-125.63958076832812,57.928543582218445],[-125.6396988480404,57.92855960230436],[-125.6397408904596,57.9285787812215],[-125.63979028779062,57.92860246594882],[-125.63980821427924,57.92860363588588],[-125.64007081511639,57.928520233910355],[-125.64070290735658,57.928325679516824],[-125.64140349263313,57.92814252135134],[-125.6420846538099,57.928003045310284],[-125.64255456052024,57.92787645719561],[-125.64266492083665,57.92770404448828],[-125.64264223837691,57.92753688245861],[-125.64263865543593,57.92746958378173],[-125.64267359889388,57.92745734115034],[-125.64280372262316,57.92742853138871],[-125.6429698685422,57.92738411723109],[-125.64303762882682,57.92736299054519],[-125.64313367499011,57.92736549074294],[-125.64332671251869,57.92737946533446],[-125.64342064755525,57.927381959674996],[-125.6434597279878,57.92737869978262],[-125.6435357945346,57.927372174361864],[-125.64358962763106,57.9273734398282],[-125.64374712577413,57.92735030977917],[-125.64412672895293,57.927284034952066],[-125.64449385887296,57.92719529609869],[-125.644745968374,57.92710288523026],[-125.64505440150377,57.92697137199411],[-125.64532579415136,57.92684873136134],[-125.64544670115323,57.926788492982496],[-125.64548270708585,57.92677625245402],[-125.64556760776775,57.92672825449783],[-125.64579800079125,57.92658643868061],[-125.64613950952419,57.926415759029204],[-125.64654088497095,57.92627776033998],[-125.64688271856438,57.926183340530734],[-125.64701826191317,57.9261377188355],[-125.64705967925417,57.92611203443559],[-125.64717677975354,57.92600692517026],[-125.64732721380713,57.92583573658581],[-125.64744795038526,57.92568129153195],[-125.6476229094985,57.92548437347958],[-125.64781462931755,57.92530095731756],[-125.647932688278,57.92520482187355],[-125.648072115515,57.925082948701466],[-125.64837218667914,57.92482580018877],[-125.64869576840911,57.92453731160771],[-125.64884054358373,57.92440647998563],[-125.64892263640951,57.924205951329895],[-125.64914281494941,57.92379831256135],[-125.64945325443483,57.923446985049985],[-125.64965423686454,57.92328602062955],[-125.6497344716351,57.92317184070792],[-125.64981225157807,57.922980272274835],[-125.64988585062676,57.92278420693824],[-125.64985996421342,57.92261703865766],[-125.64971179136198,57.92243384829971],[-125.64955907421205,57.92228541166853],[-125.64950664653293,57.9222482650091],[-125.64948570475549,57.92223026627921],[-125.64937701484658,57.922114468123816],[-125.64918818823946,57.92187621789657],[-125.64897633931825,57.92161884169719],[-125.64872949870151,57.92137819513288],[-125.64845006059677,57.92112400444559],[-125.64812628439313,57.920873060578145],[-125.64773703953102,57.92062418586486],[-125.64734455794891,57.920384273304954],[-125.6470139158451,57.920191625447075],[-125.64669884666681,57.92002593350096],[-125.64634149112493,57.91986797892541],[-125.64602174170979,57.91975161790019],[-125.64590394034809,57.91970868883548],[-125.64589671318402,57.91969072602777],[-125.64591327022404,57.91961450972835],[-125.64602789682124,57.919433135372834],[-125.64621398923015,57.91917232604807],[-125.64637556125331,57.91893836684367],[-125.64648681514072,57.91877941275981],[-125.64655927465039,57.918705587716055],[-125.6466156528647,57.918657513884845],[-125.64666157862045,57.91860044052384],[-125.6467000240995,57.91855231910506],[-125.64676835616224,57.9184683897607],[-125.64693163653448,57.91827480763877],[-125.64718983713092,57.917976058281766],[-125.64744334983236,57.91772664091822],[-125.64765513249459,57.917538793774575],[-125.64797957795957,57.91726376923134],[-125.64859010930441,57.91686725846508],[-125.64922948965774,57.916542595204184],[-125.64951552566713,57.916424472047666],[-125.64956637795036,57.91640329786586],[-125.64968003314655,57.91632509380319],[-125.64986714109351,57.91617755152709],[-125.65008089188468,57.916115310750385],[-125.65040415101168,57.9160791508545],[-125.65069987167138,57.9158264742166],[-125.65082133076606,57.91547465104592],[-125.65096381557935,57.91524400167887],[-125.65129637443414,57.91500151369344],[-125.65163209666646,57.9147579117536],[-125.65176374587668,57.91467190284221],[-125.65188729368036,57.91466213250954],[-125.65218190009331,57.91464271554952],[-125.652473373493,57.91461880389217],[-125.6526528465462,57.9146103001937],[-125.65284907910171,57.91461529754889],[-125.65308316577463,57.91463497228401],[-125.65323179068265,57.914652181250176],[-125.65336114896803,57.914700741042644],[-125.65360289350146,57.91480566640863],[-125.65389445445226,57.9148860484575],[-125.65411634445057,57.91485522359574],[-125.65428694791541,57.91477940654313],[-125.65446883054247,57.914738384059234],[-125.65467796367419,57.91471761840039],[-125.65494631339658,57.91468354817773],[-125.65522499915687,57.914673055003384],[-125.65550870602479,57.914689489472586],[-125.65579238897736,57.91471040914927],[-125.65601807688233,57.91472557115028],[-125.65633875708015,57.91473873490453],[-125.65685030484116,57.91476584726636],[-125.6571910437012,57.91477906063207],[-125.65730494846868,57.9147860824895],[-125.65745255974161,57.91479991973052],[-125.65769943534029,57.91480616161038],[-125.658014040247,57.9147912690106],[-125.65840624956215,57.91471265098004],[-125.65875880237898,57.91458682857484],[-125.65888908627672,57.91453221028776],[-125.65889891724069,57.91449634848366],[-125.65894628294313,57.914393294702364],[-125.65903206351867,57.914243237597134],[-125.65907487223977,57.914177180565076],[-125.65908132555018,57.91416373946856],[-125.65910392398428,57.91411445272538],[-125.65913666799275,57.913994539494034],[-125.65917461824486,57.913765857276466],[-125.65920770682872,57.91349230399579],[-125.65934602362651,57.913249299499945],[-125.6595894890729,57.91304917936694],[-125.6598915287276,57.912904160224976],[-125.66025270367665,57.912755926855304],[-125.66047720246709,57.91266790341433],[-125.66056722856919,57.91263000299475],[-125.66061276156977,57.91261329701876],[-125.66067419471952,57.91258765980412],[-125.66087788114291,57.91246706019613],[-125.66111588744214,57.91228486701639],[-125.66123489477665,57.91219320956044],[-125.66125715596652,57.912180930052436],[-125.66132321249066,57.91211044570892],[-125.6615263722118,57.91193152767284],[-125.66184041382965,57.91174167623568],[-125.66221315810387,57.911594588610704],[-125.66248431344775,57.91147976508082],[-125.66257332821237,57.911437374946146],[-125.66259243151627,57.911425087228004],[-125.66261795620812,57.911402722594055],[-125.66264554087968,57.91138597049268],[-125.66266732761306,57.91130976611318],[-125.66265894915965,57.91118414094251],[-125.66266504783519,57.91109331782299],[-125.66272914034856,57.911006005946156],[-125.6628101649577,57.91091312959003],[-125.66283895668711,57.91087843709873],[-125.66287141463296,57.910788802176576],[-125.66288840567506,57.91065987690297],[-125.66289314872715,57.91060157282297],[-125.66285135580249,57.910555487067704],[-125.66276439540191,57.91048573623987],[-125.66272475321952,57.910435170042845],[-125.66275154178412,57.910390379350645],[-125.66277729688365,57.91034222165072],[-125.66279011912287,57.91032431070512],[-125.66281170392254,57.91027053513155],[-125.66286893309064,57.9101237683768],[-125.66286531412166,57.90993983937797],[-125.66276947077009,57.90980277837959],[-125.66271502772778,57.90975553912931],[-125.66265338089899,57.90957034178994],[-125.6626057333717,57.90923602552052],[-125.66286187999016,57.90902696078329],[-125.66338605277802,57.90893296221775],[-125.66367313019668,57.9088058408084],[-125.66368337527918,57.90860400372695],[-125.66366310521423,57.90839199649605],[-125.66365068114217,57.90824841819605],[-125.6636703138091,57.90817669431286],[-125.66398956189074,57.908107969488235],[-125.66458883242187,57.90787285179348],[-125.66509537623969,57.90750404470096],[-125.66557333998419,57.90726525333063],[-125.66594535819269,57.90719329201629],[-125.66604364664565,57.907173352221626],[-125.6660470192528,57.90715093150049],[-125.66608160625013,57.9070579371331],[-125.66611636225923,57.906945878393486],[-125.66611261986758,57.906892039001654],[-125.66620736390877,57.906795831034955],[-125.6663439278263,57.906624590073775],[-125.66644350404871,57.90646110659109],[-125.6665184579786,57.90633681244347],[-125.66659090390641,57.90625737030224],[-125.6666514479422,57.90621042061514],[-125.66671404917038,57.906171326254096],[-125.6667871833838,57.9061322582163],[-125.66688815150374,57.90604952291087],[-125.66705930753004,57.90590191847524],[-125.66721206965045,57.905806976375494],[-125.66726504727238,57.9057813152156],[-125.66722958427759,57.905735246878095],[-125.6671212049046,57.90558357936296],[-125.66701289587894,57.905424061759895],[-125.6669464294176,57.90530502116609],[-125.66703111083501,57.90515495771476],[-125.66708340657635,57.904967805233845],[-125.66683223419759,57.904857274478196],[-125.66663528236114,57.90482089507642],[-125.66662240398917,57.904725539080694],[-125.66660567051754,57.90459092248911],[-125.6665845514167,57.904473116770355],[-125.66652809786397,57.90429690691226],[-125.6664506583346,57.9041060655883],[-125.66641649990981,57.90403308545058],[-125.66637834362392,57.90393318037331],[-125.66630136008617,57.903692996161396],[-125.66622558318005,57.90343487171429],[-125.66614960831494,57.903199175878655],[-125.66604113274805,57.902939848031046],[-125.66593880584921,57.902702964656875],[-125.66587882636,57.90256711831457],[-125.66586542289093,57.90253119817665],[-125.66584899265739,57.90248069155022],[-125.66579972214168,57.90232692881817],[-125.66575593413802,57.90215075079015],[-125.66574281982606,57.902082309244264],[-125.66571810031452,57.9020149600265],[-125.66576470394249,57.90187601684646],[-125.66580491129179,57.90174266488337],[-125.66563931701808,57.90162113237857],[-125.66546293583963,57.90152648744056],[-125.66538905567559,57.90141303516007],[-125.66531070112788,57.90120873399287],[-125.66529168867098,57.90097430277893],[-125.66535132286913,57.900791656032716],[-125.66539576678609,57.90065831498815],[-125.66539701324798,57.900518136715164],[-125.66537735241046,57.900356598363125],[-125.66534532296627,57.90016250688217],[-125.66531605093675,57.90001328038359],[-125.66531301458005,57.89999981534595],[-125.66529471593037,57.899922389271886],[-125.66527628767997,57.89985954173074],[-125.66527227786491,57.89983598119423],[-125.66524537122126,57.8997775981449],[-125.66535712699978,57.89954686028153],[-125.66546343941789,57.89933405190536],[-125.6652442885779,57.89930546496046],[-125.66504684828149,57.899327397502525],[-125.66501577303667,57.89926339670234],[-125.66492748399145,57.89910841453801],[-125.66481089437025,57.898934296469854],[-125.6647335387191,57.89885560029205],[-125.66469471957116,57.89883307357117],[-125.66466949443316,57.89882291701209],[-125.6645981882004,57.89877563657283],[-125.6644639246054,57.898691189663566],[-125.66437590227508,57.89862592380672],[-125.66434250912252,57.89858546747835],[-125.66429759498538,57.89853488906027],[-125.66418048967385,57.89841908456803],[-125.66402676657152,57.89827066559515],[-125.66390417027311,57.89817839745323],[-125.66379210913325,57.898089520149526],[-125.66370302616521,57.89802425120439],[-125.66361922579522,57.89795899554722],[-125.66349717984875,57.897807291691954],[-125.66335171261674,57.89767795749862],[-125.66314096092611,57.897654995586166],[-125.66294076714642,57.89763093861576],[-125.66281998046232,57.89757456043819],[-125.662681264872,57.89751701529164],[-125.66245859167157,57.89741215641097],[-125.66229160179007,57.897330988792326],[-125.66225705500577,57.89730286498509],[-125.66220115479442,57.89730160174778],[-125.66208836522294,57.897294586901914],[-125.6619851405965,57.89727862465845],[-125.66185267525859,57.89723006610619],[-125.66162671238945,57.897138654871966],[-125.66136511809071,57.89702360225917],[-125.66114958389046,57.896945674116026],[-125.66095689791452,57.89690929735211],[-125.66069934911744,57.896929948867836],[-125.6604896596537,57.89690586402165],[-125.66047586455254,57.89679816991214],[-125.66044926094636,57.89670726485955],[-125.6603168805774,57.89664973343849],[-125.66022229882996,57.8966113629391],[-125.66017927589728,57.89658770276823],[-125.66009528226458,57.896544873412246],[-125.65997034859691,57.89647951053327],[-125.65983067620273,57.896412988443586],[-125.65963640543974,57.896317169053034],[-125.65944003295112,57.89622246545747],[-125.65932346818639,57.89616497351682],[-125.65924794467931,57.89611880097021],[-125.65915463164082,57.89605800404495],[-125.65904033980937,57.895982574539715],[-125.65894475541526,57.895939714799255],[-125.65888168607681,57.89591600287659],[-125.65878281761803,57.89588547051808],[-125.65857483929274,57.89579073593775],[-125.65838494645446,57.89567810430081],[-125.6583273329483,57.895635341534124],[-125.65834978889986,57.89560063432589],[-125.65840840657872,57.89553461939988],[-125.65844900429529,57.895477529799905],[-125.6584682738499,57.89544617874223],[-125.65849005981393,57.895369976307855],[-125.65852172633862,57.89525006283726],[-125.65855974785372,57.89512904422456],[-125.65860200151582,57.8950046721317],[-125.65862310689872,57.89488809594161],[-125.65862351377852,57.89484323918086],[-125.65861763325849,57.894793880522805],[-125.65858113985703,57.89463117744349],[-125.65852108294841,57.894391034276644],[-125.65840818838811,57.894164212933774],[-125.65825368671803,57.89398887119226],[-125.65815687843066,57.893847320745614],[-125.65810466831029,57.893674484343414],[-125.65805847419912,57.89353418526374],[-125.65803488807934,57.89346123086029],[-125.6580270215349,57.89339840982231],[-125.65806886749108,57.893318894807635],[-125.6581606054167,57.8932047431437],[-125.65820470547435,57.8929940250556],[-125.65823174023481,57.89268906201491],[-125.65827246591483,57.89238525564701],[-125.65828970205892,57.892228297981184],[-125.65829522788715,57.89220139755341],[-125.65826181642441,57.8921643042172],[-125.65818752154858,57.892099069877034],[-125.65809831636166,57.89205174028244],[-125.65794883772703,57.8920210774303],[-125.65780044628461,57.891985931437574],[-125.65775304860044,57.891980202404056],[-125.65773391031824,57.89188034489223],[-125.6576842526199,57.89165929324265],[-125.65762789408394,57.891477474835746],[-125.65764047202428,57.891370970266216],[-125.65772592999858,57.891251195787795],[-125.65766384844557,57.8911198275952],[-125.65740749087169,57.891013752776374],[-125.65722647160808,57.890972915006934],[-125.65718855801445,57.890967210190894],[-125.65716032123436,57.89094022290928],[-125.65708709369152,57.8908749907748],[-125.65701800293012,57.89081874078463],[-125.65692579365019,57.89075345966935],[-125.65680219311483,57.8906611830122],[-125.65671522493767,57.89060040103069],[-125.65662301671776,57.89053511972045],[-125.65642603866813,57.89039443154359],[-125.65617981742307,57.89021772985949],[-125.65600928658644,57.89006925931964],[-125.65592246820297,57.88999053420315],[-125.65583140786352,57.88991628382824],[-125.65569418760346,57.88981387804521],[-125.65557187163962,57.889698053415486],[-125.65544663075272,57.889555306574884],[-125.65533505019681,57.88941708075561],[-125.65523389906718,57.88929346057368],[-125.65512109931052,57.88917429590995],[-125.65506997414883,57.88911360577412],[-125.6550458930182,57.889095600363994],[-125.65502530619807,57.88904059652875],[-125.65502705115571,57.88896434322715],[-125.65503051091264,57.88893295191345],[-125.65498516853997,57.888931712981005],[-125.65483582823016,57.888887589791274],[-125.6546261701874,57.888751352030305],[-125.65447669079997,57.888608541519055],[-125.65439004373329,57.888511872940576],[-125.65430648666303,57.888424183841295],[-125.65428379228898,57.88836917445341],[-125.6543463252016,57.888335693684134],[-125.6544588639652,57.888252999420594],[-125.65443455463881,57.88814415686949],[-125.65411029587679,57.88808612150354],[-125.65374849936192,57.88798200878842],[-125.65346844938762,57.88781755028159],[-125.65322818940446,57.88768571653255],[-125.65302230696263,57.887598829448095],[-125.6527543270504,57.88749832285316],[-125.65240341603757,57.88735834893294],[-125.65212306181692,57.88722977285524],[-125.65199007930184,57.88712737456035],[-125.6518834260373,57.887029530737465],[-125.65173066757764,57.88690016601435],[-125.65155177519804,57.886747182569806],[-125.65139464544117,57.886634627593004],[-125.65129410366606,57.8865603494997],[-125.65115269019458,57.886457928343376],[-125.65094347495263,57.88627682878457],[-125.65078798402027,57.88610259847642],[-125.65067837317079,57.88598231730907],[-125.65055915666717,57.8858754680748],[-125.6505007436538,57.88580690718344],[-125.65052571188268,57.885730715138685],[-125.65053493849166,57.88564551029297],[-125.65043507215881,57.88561160504774],[-125.65028842200194,57.88562131280372],[-125.65022719250048,57.885629001989074],[-125.65016840530566,57.88560081164338],[-125.6499975268719,57.8854927047368],[-125.6497797620387,57.88532503823914],[-125.64954496154084,57.88517526951596],[-125.64926679439648,57.88504108623011],[-125.64899062706529,57.88491700055811],[-125.64876069416209,57.88481210070164],[-125.64851101372066,57.88467574816255],[-125.64827208856973,57.88451699490872],[-125.64812863462579,57.88440895815388],[-125.64805145902116,57.88431791800441],[-125.64801211580212,57.88424043506001],[-125.64802608287314,57.88421355758377],[-125.64800508956337,57.884203409173125],[-125.64796847132301,57.88417191220339],[-125.64796781337635,57.88413041742361],[-125.64807401682039,57.88404883359222],[-125.64824816097176,57.883918086163106],[-125.64839695709054,57.883791757310796],[-125.64852041595427,57.88366872571329],[-125.64858137538788,57.88357580772672],[-125.64860974142434,57.883473832228205],[-125.64864241963862,57.883249631975744],[-125.64863708210396,57.883029817159134],[-125.64863687348924,57.882940102039775],[-125.64870893541784,57.882901042108145],[-125.64883289231149,57.88283632611665],[-125.64895186782958,57.8827413182193],[-125.64908734571179,57.882573460673925],[-125.64920682131553,57.88242462518739],[-125.64926222129014,57.88236309244409],[-125.64933457393354,57.88229263289204],[-125.64949617894983,57.88214839389402],[-125.64966075985652,57.88202322688228],[-125.64973505281026,57.88197071514098],[-125.6497679016876,57.88195398011074],[-125.64979661026814,57.88192714130304],[-125.64987410552028,57.88187127362295],[-125.65005683464402,57.88172260385623],[-125.65025249532556,57.88154368922416],[-125.65036433495445,57.881420625707044],[-125.65042723466061,57.88134677651949],[-125.65048607702607,57.881253852345516],[-125.65053767235463,57.881147451971124],[-125.65056883829727,57.88108473372059],[-125.65061275327965,57.88100971320507],[-125.65068977576402,57.880889922384945],[-125.65076127469504,57.88079815277929],[-125.65083483378034,57.880709752836765],[-125.65091167818132,57.88060902575756],[-125.65095463964764,57.880523909806705],[-125.65098351909522,57.880480249800044],[-125.65104536369786,57.88040527620378],[-125.65111365840758,57.88031686234559],[-125.65119311539718,57.88027445629118],[-125.65130628425752,57.88023662422396],[-125.65137390309229,57.88022110134228],[-125.65139611744426,57.88021218809341],[-125.6514350820362,57.88021789727846],[-125.65151299438719,57.88022931556999],[-125.65157830739965,57.88023509369311],[-125.65163416504643,57.88023636132319],[-125.6517237244289,57.88024332425852],[-125.65185327750999,57.880255998888096],[-125.65200595864782,57.88027770528889],[-125.65214593035401,57.88030386401611],[-125.65228915636916,57.880321059667494],[-125.65241551410361,57.880338211117525],[-125.65247767305002,57.880343980562806],[-125.65251135812791,57.88034967564863],[-125.65257030445166,57.88035992237894],[-125.65265032599414,57.880371345510135],[-125.65276003282462,57.8803649031767],[-125.65289102158141,57.88033720910635],[-125.65299469201797,57.88029935083547],[-125.65306562999527,57.88026589288969],[-125.65310164062289,57.88024804388616],[-125.65311125117073,57.8802357332179],[-125.65312820219091,57.880226805963986],[-125.65316622832061,57.88021905505322],[-125.65327585200055,57.88022158350876],[-125.65342012405756,57.88023878066598],[-125.6535158442926,57.8802637012931],[-125.65357892530473,57.88028292976693],[-125.65366944847302,57.88029886532937],[-125.65384003476763,57.88032173763875],[-125.65408870981712,57.880336962684076],[-125.65436073357088,57.88033542646675],[-125.65458861146772,57.88031919657179],[-125.65483129014085,57.88029851895504],[-125.65515714506452,57.88028927069353],[-125.65549335421402,57.88030247700318],[-125.65574604183105,57.88034013790545],[-125.65587336504663,57.88036625999425],[-125.65593543233594,57.880382120443315],[-125.65601022635424,57.8803879208969],[-125.65611770119098,57.8803949271715],[-125.65625153120783,57.880403122852286],[-125.65637897780643,57.880415787633666],[-125.65648847949467,57.88043177026943],[-125.65667914874868,57.880450205049826],[-125.65694253461834,57.88047106984555],[-125.65711770846957,57.880453578346895],[-125.65724671849043,57.880411296327914],[-125.6575003369325,57.880346906307295],[-125.65776778673892,57.88038460135118],[-125.6578691595316,57.880599054797216],[-125.6579352785826,57.88074837474703],[-125.65809831811184,57.88078916506515],[-125.65834773504884,57.880840269777714],[-125.6586096957766,57.880901499056165],[-125.65879488528905,57.880942345330894],[-125.65887272008446,57.88096273054648],[-125.65903298288123,57.88096201973502],[-125.65937151090469,57.88095279360043],[-125.65965197323891,57.880951268152124],[-125.65989850568722,57.88097096257386],[-125.66018588428241,57.88101991797272],[-125.66039326521103,57.88105633295708],[-125.66050489928443,57.8810700748726],[-125.66049242974955,57.88104985734724],[-125.66069801429403,57.8809337529453],[-125.66120029867963,57.88076793946936],[-125.66173167213087,57.88065154091334],[-125.66230604819505,57.88055879935534],[-125.66279148023514,57.88050844430788],[-125.66311733501821,57.880499176557514],[-125.66363962333213,57.88045451883915],[-125.66443165256635,57.880308489438534],[-125.66512693201675,57.88013417630374],[-125.66549056767903,57.880026312185386],[-125.66567237974984,57.87997294045929],[-125.66577915087238,57.87993956577812],[-125.66614177673405,57.87982721166775],[-125.66683524840926,57.87961699954481],[-125.66747402996234,57.87939094728501],[-125.66810472576584,57.879124500527105],[-125.6687685957088,57.878920933282544],[-125.6694684227491,57.87882286609545],[-125.67003658498123,57.87883324719782],[-125.67027388945378,57.878942613563844],[-125.67032400191398,57.878998808985415],[-125.67061153010248,57.87891092820157],[-125.67135886412728,57.878684004714295],[-125.67217693801847,57.87844491567861],[-125.67273823079177,57.878274718921695],[-125.67304172792109,57.87816668659929],[-125.67331773333039,57.87806980037353],[-125.673723357968,57.87797771709426],[-125.6740612977049,57.877910138195084],[-125.67434868276895,57.87783682764276],[-125.674763636484,57.87776158541398],[-125.67509147369749,57.87776575037536],[-125.67531342874018,57.87782124178683],[-125.6755805982228,57.87789142155849],[-125.67571680510136,57.87798931739122],[-125.67572231908477,57.87808353047044],[-125.67573767024807,57.87825963151716],[-125.6759087676516,57.87859198997392],[-125.6762607128507,57.878857502789],[-125.67657473611096,57.8789962015162],[-125.67686751081492,57.879156155019025],[-125.67716233155814,57.87932171998928],[-125.67738807146807,57.8794310456188],[-125.67760244751241,57.87951230770213],[-125.67791359544924,57.87961959644556],[-125.6782499324095,57.87974040247322],[-125.67849930499384,57.87979707634355],[-125.6787428767531,57.87979430015976],[-125.67918159323409,57.87977853690768],[-125.6797415505282,57.879761942550836],[-125.6800716666981,57.87974815787782],[-125.6801433850368,57.87974496596033],[-125.6802288288951,57.879738442700905],[-125.68054940984248,57.879729119640416],[-125.68107132480698,57.8797247640723],[-125.68146014877219,57.87974812366683],[-125.68157282089354,57.87976521464744],[-125.6815917596693,57.87976974565676],[-125.6816729104351,57.87977218260818],[-125.68187631561986,57.87978164031067],[-125.68211975654484,57.87979231474657],[-125.68239587872984,57.87980418814775],[-125.68274688111063,57.879813996619276],[-125.68307889950333,57.87982263754007],[-125.68336037741533,57.879825550284274],[-125.68350376668327,57.87982476988328],[-125.68374853479467,57.879804044571586],[-125.6843107870355,57.87976500793407],[-125.68479392065129,57.87973251014314],[-125.68513446477971,57.879732194720845],[-125.6854748796166,57.87974533522909],[-125.68562666517197,57.8797490580845],[-125.68564688247264,57.8797277987464],[-125.68573180369849,57.8796584708925],[-125.68585602310527,57.879553350131644],[-125.685923039021,57.87948285848472],[-125.68592947680006,57.87946941657201],[-125.68592970130867,57.879442502895564],[-125.68596195558631,57.879367443509956],[-125.68605109241496,57.87929812542728],[-125.6860998776981,57.87926347631047],[-125.6859957512334,57.87923295223238],[-125.68576526328773,57.87918642986654],[-125.68552809961318,57.879054663040556],[-125.68533075136884,57.87882542599704],[-125.68521937229234,57.878655827541486],[-125.68519667614886,57.87859633837356],[-125.68523743997928,57.87851232795928],[-125.6853090676335,57.87839250494415],[-125.6853602982347,57.87831749064913],[-125.6854027200804,57.878287312477205],[-125.68549288056504,57.878222482964055],[-125.68568273813051,57.878083874901016],[-125.68589699926781,57.87792738140676],[-125.68598824122411,57.87785806844454],[-125.68599678711854,57.877844631525164],[-125.68597164511974,57.877825508011156],[-125.68591622398164,57.87764482809466],[-125.68584318452669,57.87730150028717],[-125.68572532103042,57.87689863133925],[-125.68558114418266,57.876490093179264],[-125.68547363686629,57.87623527643329],[-125.68541114598032,57.87614429359699],[-125.68534549386005,57.876052181844145],[-125.68527292132049,57.875906225482694],[-125.68523573530022,57.87568970327335],[-125.6852565096996,57.87547443960299],[-125.68534299253386,57.87534231646135],[-125.68546954873625,57.87521028799381],[-125.68554636417551,57.87510057031685],[-125.68556472546285,57.875046785527104],[-125.68561494275913,57.87496728332953],[-125.68573437150415,57.87480383807163],[-125.68582409676445,57.874662751014405],[-125.6858331285149,57.87459100147453],[-125.68574538753299,57.87449435223903],[-125.68556143659153,57.87430551928848],[-125.68536201419857,57.87407515703267],[-125.68522240493634,57.873878578577376],[-125.68515308278471,57.87372365880375],[-125.6851298523014,57.87360136921314],[-125.68513817702375,57.8734892470588],[-125.68514566421341,57.87335020889663],[-125.6850994318021,57.87320543656369],[-125.68504004247256,57.873123432505196],[-125.68501598727532,57.873099825794974],[-125.6850161373577,57.87308188346239],[-125.68506273714056,57.87293060233353],[-125.68517060058463,57.87263704613043],[-125.68524391714672,57.87244097152121],[-125.68526988932747,57.87236029091044],[-125.6853040970174,57.87230317953427],[-125.68537625045632,57.87224615786836],[-125.68544522372757,57.87219025006734],[-125.68551215238776,57.87212873031837],[-125.68560530184827,57.872081850906184],[-125.68566239823258,57.872060678863065],[-125.68575011895209,57.872031729197815],[-125.68597523756179,57.871960489929734],[-125.6861919715367,57.87188138060126],[-125.68626917723351,57.87185128438933],[-125.68634753115624,57.87180885525939],[-125.68653927462303,57.87169267974164],[-125.68677352154424,57.871537354448186],[-125.68701522017433,57.87137195355503],[-125.687303275048,57.87120890402072],[-125.68763344163963,57.871051559827755],[-125.68796405147947,57.87084038795649],[-125.68836893461042,57.87044099158264],[-125.6889037547909,57.87000601273592],[-125.68934304652878,57.869779391941705],[-125.68965175209067,57.86966572805246],[-125.68988536571025,57.86958216665513],[-125.69001746281641,57.869540982131944],[-125.69023531979565,57.86945177636225],[-125.69058224853163,57.86930343552543],[-125.69079595138055,57.86920636931475],[-125.69085514841946,57.86918520000419],[-125.69090903031746,57.86916850397448],[-125.69107252301801,57.86915430526096],[-125.69132992952696,57.86912574585509],[-125.69147756724242,57.869115995518854],[-125.69153337299123,57.86912173195771],[-125.69157444011621,57.86912743421329],[-125.69162494777514,57.86913764398581],[-125.69174707002055,57.869154748129894],[-125.69188601913203,57.86917637677651],[-125.69207765756391,57.86919924862402],[-125.69226508035943,57.86922211044675],[-125.69239461830952,57.86923362408079],[-125.69261161665112,57.8692487038877],[-125.69291494914268,57.86927519673185],[-125.69315826904804,57.86929482203854],[-125.69331844499841,57.869298555525056],[-125.69341539193371,57.869301021745464],[-125.69357105094983,57.86934175115184],[-125.69381584273707,57.869437634737686],[-125.69404230057776,57.86945721962858],[-125.69426003829079,57.86938146398323],[-125.69447166965287,57.8692787800585],[-125.69467696697252,57.86917720269038],[-125.6949507260377,57.8690802676292],[-125.69555548051258,57.868979604052406],[-125.69659153605588,57.868849643715116],[-125.6974675636744,57.86869688337402],[-125.6978446801608,57.868590084668746],[-125.69800423968964,57.86853998334807],[-125.69843506784295,57.86843891194],[-125.6991487266434,57.86829137962165],[-125.69951611571119,57.86821483235751],[-125.69955419172604,57.86819809716288],[-125.69992996588127,57.86812717475564],[-125.7008588646623,57.86794871903416],[-125.70178571782168,57.86776128101052],[-125.70250374350859,57.8675913124367],[-125.70321030258181,57.867403371894284],[-125.70363805633994,57.86728882004107],[-125.70374367707899,57.86725989857966],[-125.70409512392176,57.86719676022092],[-125.70477280746925,57.867061453529715],[-125.70515070338321,57.86698603557845],[-125.7055308809463,57.86688819342315],[-125.70654419173385,57.86668969978179],[-125.7075589988201,57.86656857899082],[-125.70810854665788,57.86651035097908],[-125.70846328817731,57.866429265850634],[-125.70881789351755,57.866228188773995],[-125.70924289902128,57.86591960947385],[-125.70955297341456,57.86575207548269],[-125.70960060491849,57.86572638706602],[-125.72355248267212,57.85991359252498],[-125.78133372115934,57.89997507086784],[-125.78137155182961,57.89999980473236],[-125.78225721923411,57.900614685452496],[-125.78140121337685,57.90143081622896],[-125.78151731600977,57.906506680343455],[-125.78474466804654,57.91185005567516],[-125.78720537773441,57.92154344581638],[-125.78676646643979,57.93045172976732],[-125.78595859512515,57.932908719481446],[-125.78790349437452,57.93849233734449],[-125.79409348805206,57.94655884551831],[-125.79428631143011,57.954553210576165],[-125.79738896860438,57.959043998197714],[-125.80015230354229,57.96707822742941],[-125.80324157303818,57.971227971954676],[-125.80956462023576,57.974781176307516],[-125.825443221706,57.97861610283516],[-125.83368426875244,57.98141700925473],[-125.83541032015276,57.98123073094513],[-125.84952747799365,57.978510850040166],[-125.86430028961831,57.97630157190169],[-125.87904639077203,57.9765938928821],[-125.88141336651918,57.976811351235554],[-125.89123366205128,57.978730806450415],[-125.9041843090342,57.980526214529064],[-125.91289419282248,57.98080135212639],[-125.92446704961412,57.978888339634295],[-125.92823769479996,57.97937492251408],[-125.9407767419334,57.986020570725955],[-125.95091947741258,57.99131837006445],[-125.95763379525857,57.993375345155044],[-125.96215137654536,57.99327800614815],[-125.96662304247494,57.98770736203044],[-125.96730524038172,57.98136411123625],[-125.97052259728575,57.97665442851161],[-125.97189301654194,57.97591002949529],[-125.97972546733254,57.97145226593887],[-125.98681208700978,57.96711063017866],[-125.98884215588942,57.96320794385906],[-125.9897053559767,57.95954740363465],[-125.99173407435902,57.95856061816082],[-125.99494583317427,57.958192924334284],[-125.99966192847839,57.95821096377341],[-126.00293921807175,57.95960160093064],[-126.00567373552343,57.9613420949453],[-126.00907059217471,57.96576515406249],[-126.0118497515366,57.96938070920235],[-126.01583610516295,57.972224474276196],[-126.02028063152832,57.97100365617328],[-126.02304388722624,57.968688389292744],[-126.03138835223594,57.96642570715231],[-126.03715785143515,57.967393215597646],[-126.04868354455402,57.96977610016713],[-126.05633367538893,57.969046344122646],[-126.06219759311648,57.967042949843396],[-126.06328891454285,57.96311264747128],[-126.06318510091528,57.95290249942366],[-126.06382253004752,57.946334710787426],[-126.06365938321986,57.94479161584103],[-126.05955645850186,57.942137824760344],[-126.04996192855522,57.94011411793937],[-126.04804775615658,57.93621206068033],[-126.04853224616035,57.93119663661426],[-126.05295118097105,57.92723839920539],[-126.05810565897485,57.92380007281273],[-126.05878566501202,57.92261550695885],[-126.06748179289443,57.91560449941811],[-126.07224783803893,57.91416653645946],[-126.08208482872782,57.91516566311105],[-126.08857637181677,57.916767432530335],[-126.09886239871105,57.917137007242985],[-126.10093339539533,57.91613062753203],[-126.1108388178951,57.91484877940408],[-126.12363933856652,57.9171701484123],[-126.1297821084823,57.919846842338785],[-126.13776836654353,57.925338496113746],[-126.14534910541508,57.93019314971692],[-126.15319747689291,57.93339627203989],[-126.17011797637453,57.94192595485137],[-126.18289263321701,57.94561445518917],[-126.1956353625483,57.946744779160454],[-126.20786793654447,57.94563168856505],[-126.20898163093622,57.94554022790114],[-126.21495000940382,57.94318008543188],[-126.21822540506149,57.941093273801705],[-126.22011003317867,57.93905354887176],[-126.22627258600049,57.93345374383211],[-126.23623209818074,57.926276941071364],[-126.24064813333639,57.921576798969596],[-126.24059763968123,57.91945955767919],[-126.2341233250747,57.90902804841136],[-126.22929793747494,57.9011683499856],[-126.22656974588313,57.89499163347716],[-126.23174506697822,57.886065091567126],[-126.23241464222563,57.88504118259883],[-126.24510532990017,57.87931261598352],[-126.25445334682182,57.874298033443495],[-126.25541814610803,57.870142470907574],[-126.25490020095108,57.865406636475456],[-126.25663414599205,57.86050501684915],[-126.26411525746894,57.85713515181062],[-126.2661739579712,57.85607245083126],[-126.2806563967353,57.85514556770923],[-126.29294439391396,57.85608796088376],[-126.29762135995888,57.85754885352344],[-126.30267344722428,57.86106314052443],[-126.30770127538791,57.86549237565202],[-126.30853674016336,57.866360654591],[-126.31069034135388,57.87024918651915],[-126.3103846454196,57.87395506008002],[-126.3117126711175,57.87648188019571],[-126.31434454970278,57.878323795157485],[-126.31816197764097,57.87994751983457],[-126.32118930937838,57.88321481960383],[-126.32161816561883,57.88750214246917],[-126.32285759592293,57.889392126937985],[-126.32529677148582,57.89048968482098],[-126.32967264686323,57.891259443592894],[-126.3359506071958,57.89313674444536],[-126.34187713510676,57.89631553471437],[-126.34470378981905,57.89907149704965],[-126.34987505738256,57.902530028594335],[-126.35284758648041,57.90374233020586],[-126.36030726361821,57.905732011480715],[-126.36560182439362,57.90849880767149],[-126.36820163698553,57.91206239173188],[-126.37099701791041,57.916361080891846],[-126.37308404247321,57.918768665205455],[-126.37784585170667,57.921599313532184],[-126.38146629512924,57.92276430924778],[-126.38221787553934,57.922771127387385],[-126.38877088167578,57.922411239333904],[-126.39595705579626,57.92245288216344],[-126.40022640821081,57.923337313433514],[-126.40533973446652,57.924847076459876],[-126.4111557327807,57.92396795785787],[-126.41338180997076,57.920219803618636],[-126.41347571397519,57.91599378203077],[-126.41172704442053,57.912616832931036],[-126.41182379791157,57.90834597906621],[-126.4133578738022,57.906807061858146],[-126.4192168113834,57.90843954940444],[-126.42183716509246,57.91131121035035],[-126.42484614250867,57.915949036718764],[-126.42819443976113,57.91973340355095],[-126.43155576870667,57.92312289806187],[-126.43642106216556,57.92634591038692],[-126.43791027686314,57.92687036863437],[-126.44654651387032,57.92938077070195],[-126.45464450548275,57.93216162041223],[-126.46146337276717,57.93437221557837],[-126.46979547670922,57.93636181611225],[-126.48007798400748,57.93721341307213],[-126.48480024684795,57.93723221051848],[-126.49865149347711,57.93674148349465],[-126.50435133780826,57.936199658970565],[-126.52442961282391,57.9355659074531],[-126.52962471005273,57.93895476643163],[-126.53364858283221,57.941827747218085],[-126.53851248164807,57.94579183443329],[-126.54550440650354,57.95068018937553],[-126.547980005232,57.950293204531974],[-126.55529570761023,57.94935674270258],[-126.56227491154705,57.94939030098281],[-126.56943147576209,57.95136971891668],[-126.5746558605783,57.953500657214505],[-126.58180985391473,57.95576655127334],[-126.59379597912982,57.957822224793354],[-126.59539983366535,57.9582278032641],[-126.60266826633823,57.9603126404463],[-126.60766439517502,57.96335853845145],[-126.60966727026616,57.96553867549068],[-126.61432844223584,57.9696087412338],[-126.62091034074666,57.974208094614994],[-126.6232474842667,57.975812258775996],[-126.63378065190953,57.982142168637985],[-126.64070316245466,57.986048113962575],[-126.65281762459924,57.987927513265134],[-126.65786220435537,57.988225762610945],[-126.66847037646278,57.99016500524892],[-126.67183756799106,57.99491264853101],[-126.67222595497053,57.997880697711466],[-126.67240746608532,58.00004223998401],[-126.67054579211653,58.00743629302699],[-126.66648682271136,58.0153707650976],[-126.66685806653199,58.023695894067124],[-126.69657645938202,58.02389419405995],[-126.71900325835567,58.02708647177474],[-126.73616066213503,58.025611163773924],[-126.75867143893727,58.021375503452845],[-126.76774327328927,58.01977131294894],[-126.77113845163365,58.018701894822144],[-126.77100363062247,58.01584921042869],[-126.77024556727717,58.01345775942961],[-126.7748487066344,58.010712281337895],[-126.78498380548947,58.00885847243895],[-126.79861800107405,58.00822129877998],[-126.8020563692145,58.00817377225594],[-126.81307589317124,58.009049310609676],[-126.8148694908863,58.00828463504929],[-126.82067726955476,58.006041680065664],[-126.82925971232565,58.00335056116091],[-126.8342983766373,58.00007988602245],[-126.83591990611436,57.9992262742384],[-126.83958509400411,57.99838672572402],[-126.84646272677338,57.99845994635489],[-126.85408685176549,57.999218967664504],[-126.86106732960955,57.99980224662611],[-126.86249297396442,58.00007121097294],[-126.87280534510221,58.00068615168433],[-126.88341550837578,58.00005105945351],[-126.88805876127452,57.99879093281755],[-126.8895671682493,57.9983950451947],[-126.89387595012896,57.99754073550025],[-126.90000906840415,57.996647080005815],[-126.9013002190891,57.99659350338409],[-126.90764397019633,57.99620057003158],[-126.91548926096104,57.996452086680556],[-126.91870976375884,57.99679786256547],[-126.92527229615325,57.99584624735599],[-126.93065636676657,57.99459744123216],[-126.93916845021523,57.99204328232298],[-126.93992117490757,57.99182262806876],[-126.94724287961621,57.989832666162414],[-126.94907428139929,57.989326132646966],[-126.9480324430932,57.98504437861248],[-126.9463553993201,57.979501942125786],[-126.94510398092916,57.974135966665926],[-126.94468171146225,57.973107062418784],[-126.94384102919705,57.970483929431595],[-126.9507293602328,57.96849685624794],[-126.95975778284438,57.96782204417191],[-126.96395058854277,57.96680478557509],[-126.96621123828736,57.96635772781892],[-126.97256774270426,57.96304537634954],[-126.97132314664836,57.95643243704645],[-126.96490837450132,57.952252792865245],[-126.9635194986303,57.951275825359474],[-126.95711939565652,57.945902358724574],[-126.95574210359685,57.94332808971446],[-126.95554740021356,57.94019800840604],[-126.95569734040166,57.93425702541164],[-126.95369515959392,57.9290044419444],[-126.94901091698027,57.92403119380604],[-126.94773138180622,57.922936679677086],[-126.94068510779681,57.91853625591488],[-126.93384716182103,57.9153183909134],[-126.92914990582054,57.91246212001094],[-126.92766735645118,57.909942241732686],[-126.92725295102895,57.90845571546314],[-126.92727093807459,57.905889500788696],[-126.92912468933376,57.901614733691325],[-126.93108768713387,57.89750966585122],[-126.93239592660714,57.89483575454411],[-126.93318801001529,57.892919121244326],[-126.93059781408398,57.892928278205176],[-126.92875024188913,57.89294117884732],[-126.92287849721039,57.89298200794562],[-126.91667201849843,57.89352732588056],[-126.9146413209347,57.89377456820995],[-126.90810131624471,57.89392699979645],[-126.90293546304565,57.892930332149],[-126.89912938069307,57.89021061140608],[-126.89765943679407,57.886506073957605],[-126.89735685885526,57.88217459942512],[-126.89534935492874,57.87841088956504],[-126.89120764987786,57.87501138315369],[-126.8850428697419,57.87219943980034],[-126.88017063105588,57.86976447411762],[-126.87645433336539,57.86602080797112],[-126.87520522883001,57.86243131471349],[-126.87661815640834,57.85802581820449],[-126.8819951128143,57.85382736403674],[-126.88644146631633,57.851456173949636],[-126.89078806465811,57.849211109848774],[-126.8917025549668,57.84680952781823],[-126.88951801279951,57.84459020115619],[-126.88435943105216,57.843592863038815],[-126.88264149983297,57.84337101328346],[-126.87736977223682,57.842158838681776],[-126.87316153685606,57.84046398245955],[-126.86922679408131,57.83631796228427],[-126.86741521679325,57.83141337339206],[-126.86945556840192,57.82637598854513],[-126.87132805879938,57.8235735917776],[-126.87280409764413,57.82271161621053],[-126.87306573025617,57.819507085340554],[-126.87107062490391,57.81598543389933],[-126.8689827149842,57.81330768437552],[-126.86386462599378,57.80872080789597],[-126.8638419715713,57.807455997392324],[-126.864631155146,57.80419427709238],[-126.86734338260574,57.80065088089219],[-126.8793625133619,57.79737808254279],[-126.89259778613241,57.79632986967173],[-126.90603602466611,57.794650959965466],[-126.9206763281814,57.79434393650617],[-126.93214428373456,57.79563655432506],[-126.94124161716714,57.796038903574875],[-126.95572778131996,57.79349524123354],[-126.96995422037915,57.78922939027641],[-126.9781049168145,57.78569769753126],[-126.98086577730963,57.78019586655324],[-126.97839300010789,57.7749031338923],[-126.97520089987832,57.77075501470497],[-126.97396470971007,57.76334495241089],[-126.97333210809246,57.759070381430256],[-126.97208645119164,57.7558768445478],[-126.96637676689238,57.7537385949421],[-126.95599642101601,57.752782134714536],[-126.95161738092126,57.75281361747386],[-126.94847107893841,57.75054855127466],[-126.94793289297473,57.74547484846903],[-126.94697091146654,57.74062846797187],[-126.94706543928272,57.73513763553553],[-126.94893280106785,57.72793868054682],[-126.94892258833403,57.72736462502619],[-126.9470906074885,57.721726164646974],[-126.9425944913628,57.71616051036088],[-126.93672341704516,57.71105299817011],[-126.93356465243878,57.708106026025874],[-126.93175611383248,57.70337333822553],[-126.93223297577956,57.70075059503003],[-126.92996836135342,57.699510641145956],[-126.91770792066322,57.69964098501333],[-126.90672457075725,57.699644844062576],[-126.90137577744508,57.69888297312128],[-126.89348343350055,57.69881981820064],[-126.89166754874525,57.69870646616307],[-126.88377525797439,57.69864273295929],[-126.87297417974689,57.697162467646365],[-126.86630017008143,57.6938334263937],[-126.86132634612038,57.69020597301933],[-126.85445884554684,57.68796303166427],[-126.84642342306662,57.68589764790492],[-126.84197145573032,57.68169208528309],[-126.84265860090825,57.67552969476124],[-126.84272910907359,57.67554045870075],[-126.84300783782763,57.67553083553783],[-126.84321297097185,57.67551271034112],[-126.84330708694696,57.675500898275715],[-126.84338544186882,57.675488065267366],[-126.84349531872103,57.675477273944686],[-126.84357882449572,57.67545992293731],[-126.84359866277508,57.67545643274235],[-126.84364288225991,57.675416906633835],[-126.84372842521356,57.675350206773494],[-126.84378816362981,57.67530161158738],[-126.843845929878,57.675258635282255],[-126.84393168889346,57.67520090405939],[-126.84399066994919,57.67516576882296],[-126.84400936791552,57.67515780076472],[-126.84407379974408,57.67513160088685],[-126.84419266353633,57.67514766211142],[-126.84440390363281,57.675168740488516],[-126.84461050563642,57.6751225720587],[-126.84471755840451,57.6750792809711],[-126.84474484433929,57.67508022816017],[-126.84477256978371,57.675054262117804],[-126.84488700899601,57.67496607306686],[-126.84508645585593,57.674834733225225],[-126.84527797572916,57.67477071973517],[-126.8454268359657,57.67476864806472],[-126.84550215176391,57.674760318272895],[-126.84557029990991,57.67471278985481],[-126.84574267466614,57.674589470788554],[-126.8458682592523,57.674484390705786],[-126.84593492357202,57.6744178100449],[-126.84601901915654,57.674333177702394],[-126.84611468102332,57.674249592665454],[-126.8462037340644,57.67415259459843],[-126.84631716441181,57.67401956012513],[-126.84639553117191,57.67391366011605],[-126.84641465804283,57.67387765731302],[-126.84641429403858,57.673814868711574],[-126.8464129439018,57.67370723575986],[-126.84643330206707,57.673586008846414],[-126.84647465420687,57.67346576899157],[-126.84649831254022,57.67339834176722],[-126.84650713839304,57.67337137495301],[-126.84650063769072,57.67326826003982],[-126.84647269546947,57.673096885003694],[-126.8464554096415,57.672980383879775],[-126.84645502050483,57.67291647422656],[-126.84645727155586,57.672876094274464],[-126.8464608635312,57.672849160937126],[-126.84645910465142,57.672817776747756],[-126.84648005195851,57.67276942841028],[-126.84654577244235,57.67270733861963],[-126.84656677803245,57.672662353695735],[-126.84648217654082,57.672630377920584],[-126.84638622637469,57.67260632349914],[-126.8463577850858,57.67260089898642],[-126.84636167795094,57.672587418918425],[-126.84640033982174,57.67253447230127],[-126.84650408279312,57.67243738024838],[-126.84661180151754,57.67233129257685],[-126.84666254221756,57.672255843355074],[-126.84667601625233,57.6722019364744],[-126.84668006290089,57.67214808988326],[-126.8467021248221,57.67210309820342],[-126.84672271688531,57.67208614754054],[-126.84668548735878,57.67206283907045],[-126.84666049120189,57.67197666153867],[-126.8467208125089,57.67186078552543],[-126.84675813213681,57.671794392242816],[-126.84673606046854,57.67174519776817],[-126.84670108198902,57.67168150939871],[-126.84666544810038,57.67163576544411],[-126.84664932922182,57.67161792829442],[-126.84665006829493,57.671604468397206],[-126.84666563891257,57.67155054814206],[-126.84669548576987,57.67147859636273],[-126.84671158295163,57.67144821928596],[-126.84669438226939,57.67142926779975],[-126.84665886571433,57.671388008161614],[-126.84664169016378,57.67137017777333],[-126.84661410593078,57.67135577773502],[-126.84655560843628,57.67131915008125],[-126.84652804934774,57.67130587112939],[-126.84642838530513,57.67130314454989],[-126.8461643660408,57.67131268106807],[-126.84592111403666,57.67131311426013],[-126.84581047331274,57.67128915333804],[-126.84573932549146,57.67120214928329],[-126.8456421149857,57.671074946186124],[-126.84552830633433,57.67095569788538],[-126.84547172370156,57.67091008744172],[-126.84545147052573,57.670895640355695],[-126.84541123140603,57.67087795710106],[-126.84539003843994,57.67086800106037],[-126.84542301063874,57.670842001459846],[-126.8454816997737,57.67079341235826],[-126.8455115183266,57.67076743287641],[-126.84552359796224,57.670744930468004],[-126.84553267922477,57.670682081737596],[-126.84549866033802,57.670613901953246],[-126.84543433059844,57.67055040078058],[-126.84537636640972,57.67049022272379],[-126.84535593822025,57.67046792790856],[-126.84533550179006,57.670444511880554],[-126.84528489313568,57.67038540808838],[-126.84520166854385,57.670320906196054],[-126.84510512428491,57.67026994443304],[-126.8450362464244,57.67023786747713],[-126.84499608328322,57.67022354741551],[-126.84496985759199,57.67022259353811],[-126.84493840673208,57.67022279426581],[-126.84490148044429,57.67021293856763],[-126.84488336638066,57.67019959901884],[-126.84491355480742,57.67009625022294],[-126.8449941002826,57.66989951526937],[-126.84503815037118,57.66980616935448],[-126.84504298326401,57.66978819831386],[-126.84505933682932,57.669721939471074],[-126.84508972464103,57.66962755949823],[-126.84510519654324,57.66956915511937],[-126.84509516909291,57.669542308846744],[-126.84507893495066,57.66951998724043],[-126.84505849920363,57.66949657119068],[-126.8450432217133,57.66946975842807],[-126.84502582253505,57.66944183794565],[-126.84506911564841,57.66936195202726],[-126.84517664615096,57.66924689691144],[-126.84523521621638,57.66919382369309],[-126.84524638074365,57.669176933490874],[-126.84531219716196,57.66911932892966],[-126.84541631743258,57.66904017577196],[-126.84548978054069,57.66899597742997],[-126.84553553131532,57.668978866315456],[-126.84557393537322,57.6689618021099],[-126.84561015933367,57.66894026677359],[-126.84565750569521,57.66890072020131],[-126.84570559131299,57.66884771375659],[-126.84578014832667,57.66875865782555],[-126.84584835269277,57.668620306964826],[-126.84583156412903,57.66843204241202],[-126.8458101566333,57.66822474597378],[-126.84581697765836,57.66810809130785],[-126.84581962992631,57.66808564915476],[-126.84582156397788,57.66803181630212],[-126.84594495920226,57.66787629393802],[-126.84619416086508,57.667673995714736],[-126.8463346350711,57.667532940229876],[-126.84634421554715,57.667492513625696],[-126.84634906429712,57.66747454246943],[-126.84639760217142,57.66739462270182],[-126.84648290021285,57.66727073874512],[-126.84652352768269,57.66721217345606],[-126.84663492100985,57.66722379494766],[-126.84686668252296,57.66722679756408],[-126.84699030722297,57.66717554997059],[-126.8469761224528,57.66710388011341],[-126.84692917058156,57.667067178941636],[-126.8468438005202,57.667047542415716],[-126.8467615369543,57.666978550552194],[-126.84683562284373,57.66682222160338],[-126.84701275029704,57.66663271685896],[-126.84712196223477,57.66649970947107],[-126.8471637532099,57.666446742865254],[-126.84718581123356,57.6664017513473],[-126.84719758738792,57.66636579570036],[-126.84719834293561,57.66635233575955],[-126.84721271739926,57.66633878865899],[-126.84724558403146,57.666308304323316],[-126.8472599584615,57.66629475721836],[-126.84727330133606,57.66628233797299],[-126.8473012110331,57.666264219196464],[-126.84732187493596,57.66625063182829],[-126.84732326878705,57.666219227663426],[-126.84732595610332,57.66615193494467],[-126.84732838980939,57.66612052412671],[-126.8473508740694,57.666094591259395],[-126.84744221880467,57.66600654836266],[-126.8475551661964,57.66590042696171],[-126.84760010901084,57.66584744005995],[-126.84759980777916,57.66583398688897],[-126.8476542766298,57.66578542400892],[-126.84771599096351,57.66573232967612],[-126.84778619144168,57.66568366600042],[-126.84790365628614,57.66559209174577],[-126.84813031403355,57.66546057380294],[-126.84837311233673,57.66534801342107],[-126.84847501887369,57.6652643871885],[-126.84848419443529,57.66520602296797],[-126.84849117301262,57.66514318780123],[-126.84850014748955,57.665075854813324],[-126.848480374935,57.66503561627646],[-126.84843582212605,57.665012355431486],[-126.84841253521454,57.665002413366636],[-126.84842792472048,57.66494064556522],[-126.84853583453135,57.66484352574345],[-126.84859335324953,57.66479045792571],[-126.84861485465315,57.66476789493846],[-126.84864791985599,57.664746379069605],[-126.84869136657525,57.664720311603844],[-126.84870793684091,57.66471123530563],[-126.84874968923728,57.66470311880122],[-126.84880937009224,57.664699372351855],[-126.84883874506474,57.664700305245105],[-126.84883175194034,57.664668954883325],[-126.84881784113992,57.664609617449486],[-126.84881094860026,57.66458275147325],[-126.84882485334987,57.664501931794284],[-126.84879041679362,57.6643216302303],[-126.84868283229434,57.66419898178733],[-126.84864785751206,57.66413529438616],[-126.84866505041977,57.66401408844048],[-126.84863121823267,57.66386069320459],[-126.84858839556931,57.66377463099723],[-126.84858675264017,57.66374773137846],[-126.84859557475554,57.66372076467111],[-126.8486116671141,57.66369038758595],[-126.84864126850708,57.66365431761021],[-126.84868021966477,57.66361482391466],[-126.84870151927878,57.66358329217847],[-126.8486970249653,57.663569865920785],[-126.84868919344318,57.66354749101109],[-126.84864548099115,57.663515254843375],[-126.84862527246247,57.6635019293311],[-126.84862633842218,57.66345595100062],[-126.84860031210371,57.663370902404395],[-126.84854507843855,57.663338740071765],[-126.84851276942706,57.66334679597608],[-126.84848728666944,57.66333238299911],[-126.84847440710013,57.66331901048771],[-126.84843624583525,57.66330019374679],[-126.84834848567104,57.66326711856135],[-126.84826096851519,57.66324413306357],[-126.84823023669836,57.66322975367746],[-126.84821020430104,57.66322427576825],[-126.84814648537898,57.6631876826282],[-126.84805109558337,57.66314120107257],[-126.84800864159699,57.66311792669463],[-126.84801756443011,57.663095444420165],[-126.84803441217122,57.66305160751956],[-126.84804323451782,57.66302464086664],[-126.84804558374249,57.66298874564275],[-126.8480140001728,57.66288915626462],[-126.84792663014258,57.662779832969136],[-126.8478293984397,57.662697482917324],[-126.84775331424656,57.66262396740218],[-126.84772020234624,57.66259614809511],[-126.8477405879456,57.66257022867328],[-126.84777711625654,57.66251617448701],[-126.84779740134881,57.66248577068237],[-126.84780442871676,57.662472270614344],[-126.84782638323509,57.66242279478257],[-126.84788329666048,57.662342821142],[-126.84796185252786,57.662245890016635],[-126.84799752458173,57.66220081130376],[-126.84797196745791,57.662183034962254],[-126.84791809389792,57.66216431875896],[-126.8478885200458,57.66215441691457],[-126.84786829573977,57.662141091411364],[-126.84781316491657,57.66211341318491],[-126.84776545482748,57.66208905117164],[-126.84772935170615,57.6620220071408],[-126.84768848102553,57.66188211211586],[-126.84765785542453,57.661778031617395],[-126.84764384712135,57.66171420984904],[-126.84765461732277,57.66163341059441],[-126.8476585442738,57.66157508024586],[-126.84765071377801,57.661552705316836],[-126.84763124517458,57.66152591990277],[-126.84757236030103,57.6614713555507],[-126.84750258454399,57.661397799599044],[-126.84743403781904,57.66123902048559],[-126.84736199027574,57.66101747359666],[-126.84733768830809,57.66091559514125],[-126.84733306933761,57.660896563409025],[-126.84515364817867,57.65680672085013],[-126.8489706182728,57.65562179871177],[-126.85098780122547,57.654996641808914],[-126.85848264577614,57.64787542062842],[-126.85902834659046,57.64735610792356],[-126.87631240547397,57.64297531727868],[-126.87644781709214,57.64289593349463],[-126.87653657983726,57.64279219138084],[-126.8766914812175,57.64260391799047],[-126.87681653765222,57.642439388272095],[-126.87686999188685,57.64234933484404],[-126.87694520409644,57.64220419645938],[-126.87699627701049,57.64210182515194],[-126.87708824104058,57.64191060487082],[-126.87718134717757,57.64172386193557],[-126.8772560370544,57.64160115167635],[-126.87736171182227,57.64145917484721],[-126.87747175781587,57.64132501762161],[-126.87755244532103,57.64123478335513],[-126.87763903733506,57.641128812540146],[-126.87772132554521,57.64101726404046],[-126.87789289651245,57.64082551515525],[-126.87809982211999,57.64062231902669],[-126.87831825997026,57.640419046165086],[-126.8784423677655,57.6403038558933],[-126.87858026626498,57.64019642258525],[-126.87876800290076,57.64006959705122],[-126.87892470293052,57.63995979602511],[-126.87910408313961,57.63983414678366],[-126.87928992938893,57.6397163029861],[-126.87944399609192,57.63962894360192],[-126.87955988540007,57.63956650509309],[-126.87970877379749,57.639481422308045],[-126.87994225462594,57.63933971485839],[-126.88014997143303,57.63921611820979],[-126.88031647379415,57.63912306890092],[-126.88046336799397,57.63904248349549],[-126.88061890211219,57.63897305277758],[-126.88083927569217,57.63889870520409],[-126.8810431793117,57.638881650012955],[-126.8812567971574,57.63878716448115],[-126.881400358924,57.63874360103717],[-126.88157782666636,57.638671780574846],[-126.88174357107292,57.63859106812775],[-126.88191552133944,57.63850695039222],[-126.88204908809165,57.63843878568309],[-126.88230334650649,57.6382902081423],[-126.88244167068784,57.63820182906163],[-126.88259360291023,57.63811335904649],[-126.88291272129035,57.63796098387665],[-126.8833243372959,57.637776595708836],[-126.88349747630848,57.63769919540885],[-126.88355187852082,57.63756092006911],[-126.88362062096482,57.63745394352271],[-126.88370413186247,57.63735135322888],[-126.8837709284359,57.6372062676221],[-126.88377598638365,57.63706383696843],[-126.88372669207487,57.63688140500701],[-126.88369959777557,57.636618095860584],[-126.88381298614956,57.63644915312646],[-126.88389335319329,57.63630173442498],[-126.88410097492319,57.635996492437975],[-126.88428526903891,57.635813620624766],[-126.88447779056459,57.635758514208185],[-126.8845883620061,57.63569386447676],[-126.88467875291776,57.635617016057054],[-126.88480520012486,57.6354692886771],[-126.88497339301088,57.63526970515813],[-126.88520803232377,57.63508985898397],[-126.88553001263625,57.63492736743763],[-126.88566759251837,57.634852444908674],[-126.88587482985339,57.63471090298137],[-126.88600362356377,57.63448467251484],[-126.88623070690372,57.63416135743621],[-126.88657462116417,57.63390677538772],[-126.88672794514437,57.63374429014428],[-126.88671713234287,57.633595238766056],[-126.88676380369779,57.633486166372876],[-126.88688804084238,57.63342366562831],[-126.88688523875027,57.63325886334615],[-126.88676425337866,57.633057852856226],[-126.88670042296403,57.632970824739346],[-126.88657525430052,57.63285954068138],[-126.88655792235241,57.632700442037326],[-126.88666792605129,57.63252255014899],[-126.886827637513,57.632454205524695],[-126.88679954760899,57.63237254401763],[-126.88704680667983,57.6321959739661],[-126.8872609587622,57.63199271603343],[-126.8874064767453,57.6318101004416],[-126.88747395838688,57.63169528217118],[-126.88752048441266,57.63157948326836],[-126.88757324438328,57.63137282290253],[-126.88761430830134,57.63115839243904],[-126.88763015052353,57.631074193897554],[-126.88744559447763,57.631065341320465],[-126.88726417195184,57.631056467464965],[-126.88708035675387,57.63103415465641],[-126.88679760937268,57.630992322848826],[-126.88642080885784,57.63095896944425],[-126.88621174855211,57.63097718888231],[-126.8859392201829,57.630879225324506],[-126.88547733680817,57.630612102342404],[-126.88506623421091,57.63041079050961],[-126.88486597318314,57.63035719033042],[-126.8846533289455,57.63031152128286],[-126.88449007134044,57.63027224899239],[-126.8843098581862,57.63022524128002],[-126.88405055912908,57.63024491444313],[-126.88370033349375,57.63022819415564],[-126.88346557341458,57.63004251752308],[-126.88336293109157,57.62990753460013],[-126.88320702498912,57.629869332885704],[-126.88299391522158,57.62980348223961],[-126.88274441664717,57.62970423733028],[-126.88257968452014,57.62960218386117],[-126.88248062930124,57.62953108633266],[-126.88235954819275,57.629459014463386],[-126.88220702467851,57.62938603100833],[-126.88202016987113,57.62932336739299],[-126.88175415627155,57.629234321877455],[-126.88150031139617,57.62921807444908],[-126.88131364530632,57.62920810623853],[-126.88112816526456,57.62920373599485],[-126.88097304628259,57.62919916325029],[-126.88081237012646,57.62918117262054],[-126.88057235336221,57.62912895208277],[-126.88041601044063,57.62907168921176],[-126.88012494734707,57.6289861709103],[-126.87978982455196,57.6288975814175],[-126.87952224521403,57.628830966431],[-126.87931173641753,57.628786395984285],[-126.87913083606611,57.62875396187014],[-126.87898137826096,57.62872243976293],[-126.87877210828962,57.62868570881347],[-126.87849486594054,57.62865391397316],[-126.87824942997989,57.628638725716534],[-126.87789829604033,57.62862760236344],[-126.87771088063687,57.628629967548676],[-126.87754379512249,57.62865125839682],[-126.8773154090382,57.628694258974974],[-126.87702242364861,57.62875114226471],[-126.87685763918155,57.628781386783096],[-126.87664046798467,57.62881085713214],[-126.87641541304863,57.62881683364308],[-126.8762042598763,57.628744231923676],[-126.8759940664818,57.62871310883689],[-126.8757499266837,57.628753968598005],[-126.8754569671267,57.62876712046697],[-126.87530345297961,57.62874122719816],[-126.87497289487992,57.62866829254129],[-126.87464088517763,57.628577427081204],[-126.87447281890232,57.628511265026596],[-126.87429962905827,57.62844962153502],[-126.87400687357847,57.628425768454804],[-126.87358096063284,57.62839606703059],[-126.8732677361898,57.62839365078298],[-126.87307983437415,57.628420679548995],[-126.87291584550796,57.628439701644126],[-126.87273158977041,57.628443160145515],[-126.87248556656137,57.62844814712411],[-126.87210772257045,57.62841363893402],[-126.87165031789151,57.628380775298204],[-126.87132501572603,57.628353767136865],[-126.87092909629656,57.62830704122725],[-126.87073719311293,57.62829709263466],[-126.87050124723629,57.62828407000313],[-126.87018468473445,57.62827269864795],[-126.86981897300899,57.62826501347521],[-126.86950202498535,57.62823682467839],[-126.86936183031463,57.62819738231843],[-126.86918119845531,57.62817614515184],[-126.8689177786902,57.6281532092639],[-126.86860060098154,57.62811492882483],[-126.86840316347974,57.62809155853457],[-126.86823832597884,57.62807358004319],[-126.86801682082434,57.62805148840937],[-126.86776825977348,57.62803630127583],[-126.86750413668696,57.62802794309367],[-126.86731780045213,57.62798655881369],[-126.86715958371825,57.62784632234097],[-126.86687711281067,57.62790535655341],[-126.86656260564165,57.6279836608603],[-126.86637995428444,57.62801176689733],[-126.86621434443431,57.628006124396755],[-126.86603407397203,57.628000577695595],[-126.86584126289996,57.62799623407621],[-126.86558458166279,57.62799230823098],[-126.8653697201128,57.62798586580259],[-126.86517264364045,57.62797818545439],[-126.86486753598955,57.627963362798546],[-126.86463750244549,57.62793459396668],[-126.86438916395151,57.62788351994856],[-126.864221697933,57.62784200799928],[-126.86405297220539,57.62779153430026],[-126.86384148432008,57.62784112843228],[-126.86357338712915,57.6277957880672],[-126.86335548755436,57.627747877025016],[-126.863172008952,57.6277389837147],[-126.86292747068548,57.627717033929876],[-126.86257234893124,57.62766777448499],[-126.86238117504882,57.62764323317893],[-126.86221003376386,57.627624167098666],[-126.8620594114127,57.62758702751161],[-126.86191932889737,57.627552061504836],[-126.86175629396467,57.627521729802],[-126.86141903691065,57.627474593319846],[-126.86109448290141,57.627434100596005],[-126.8609452745587,57.62741264763869],[-126.86070877732672,57.62737494434549],[-126.86010894956597,57.62729587658803],[-126.85946048812922,57.627195819029104],[-126.8592076134523,57.627083097780606],[-126.85921402127681,57.62694963099492],[-126.85920626048423,57.62683868067247],[-126.85905946834986,57.62678469455717],[-126.85878619101084,57.62674162070712],[-126.85856928287987,57.62669033180872],[-126.85842469676528,57.62664193677984],[-126.85853589586377,57.62646518350609],[-126.85866047257116,57.62632422230585],[-126.8587626464105,57.62621143695455],[-126.8588967811123,57.6260760195789],[-126.85903046605713,57.62592154428325],[-126.85910276220564,57.62583025592925],[-126.85917175573182,57.625732261687766],[-126.85924362769738,57.62562303653058],[-126.85931770835812,57.625472311916525],[-126.85936550406313,57.625363243163534],[-126.85943282167553,57.62523722925976],[-126.85951238228692,57.62509768114421],[-126.85958161514415,57.624963806217096],[-126.85966333245976,57.62478051653475],[-126.85975004718132,57.624587103380925],[-126.85983005444238,57.62446661293093],[-126.85988882708374,57.62437989704063],[-126.8598898231265,57.624285708326184],[-126.85985903753681,57.624128938134824],[-126.85983714591266,57.623902594694506],[-126.85977110362329,57.62371465972874],[-126.85967132688246,57.623609914089215],[-126.85963898662845,57.62352266946517],[-126.85959261943128,57.62341757656753],[-126.85946672288907,57.623269273180654],[-126.85937162021514,57.623092739182475],[-126.85924453442955,57.62293771607691],[-126.85913241332715,57.62279605023482],[-126.85901032765102,57.62263090353606],[-126.85889177364953,57.62248255204192],[-126.85882515503572,57.62240786334107],[-126.85859620115697,57.62228601655898],[-126.85844809277609,57.62221970529884],[-126.85826867557256,57.62215808196092],[-126.8580622032086,57.62205739145216],[-126.85796925068702,57.62197614596393],[-126.8578183804122,57.62183360939037],[-126.8577190453574,57.621747920300216],[-126.8575221082751,57.621605682245175],[-126.85736353309176,57.621493467959006],[-126.85725279266318,57.62141233736502],[-126.85714611396077,57.62132557429027],[-126.85712864145253,57.62120123286671],[-126.85714171699304,57.62103857218525],[-126.85719918664542,57.62080162367511],[-126.8572308950197,57.62058278160843],[-126.85721662158461,57.62041469225256],[-126.85721009980638,57.620265613277795],[-126.85720993701531,57.62016582643653],[-126.85718128515455,57.6200101636929],[-126.85715432274122,57.61988252031362],[-126.857111687973,57.619664160386876],[-126.85704820491424,57.6193113902634],[-126.85699220274536,57.618918208149466],[-126.85701018065299,57.618601910183465],[-126.85709927210014,57.61823581807381],[-126.85718151395791,57.617843982597805],[-126.85718238438173,57.61751209888823],[-126.85711578238677,57.61725241010187],[-126.85707273961049,57.61715514393795],[-126.85671557996082,57.6171036407327],[-126.85648458886705,57.617167925026884],[-126.85634370589018,57.617234988940396],[-126.85616898442771,57.617194635768975],[-126.85606020097448,57.61710676467079],[-126.85583254577836,57.61699387522734],[-126.85555028435735,57.61692058108561],[-126.85537034768993,57.616881381841736],[-126.85510336965264,57.616788927342],[-126.85498069216713,57.61673478152231],[-126.85484113854088,57.61667513867109],[-126.85466843917779,57.61663140686584],[-126.85436161605261,57.61653696606785],[-126.85418964467851,57.61647865324359],[-126.8540028998338,57.61641595080078],[-126.85378236946752,57.61634001179463],[-126.85363137099614,57.616283805240776],[-126.85340814751638,57.616228064752136],[-126.85319993410711,57.61618792393134],[-126.85298950126324,57.616142191069954],[-126.85273729119886,57.616054121473525],[-126.85253273737487,57.61599041066678],[-126.85222294722908,57.6159498020941],[-126.85222948203032,57.61586791186617],[-126.85205283075625,57.61574123289619],[-126.85196308073292,57.615661084411116],[-126.85181503211258,57.6155487965195],[-126.85170997788295,57.61539362566547],[-126.85166659295702,57.615186482017926],[-126.85165385756125,57.61508565551939],[-126.8514069553702,57.615093973046825],[-126.85121822492484,57.61512882452113],[-126.85096319278975,57.61519437506347],[-126.85073240487036,57.61526761754659],[-126.8505455402178,57.61529236519684],[-126.85038786000193,57.61526422818446],[-126.85020411797186,57.6152407434136],[-126.85006438758134,57.615359368550195],[-126.84979395000839,57.6153454102632],[-126.84958284765176,57.61531649446208],[-126.84921778421163,57.61533117319497],[-126.84893660252811,57.61530494890947],[-126.84866720521238,57.615243891010216],[-126.84844633977711,57.615199339201645],[-126.84830080947098,57.61529333313532],[-126.8478616647808,57.615459846190504],[-126.84729823286528,57.615500458154166],[-126.84701621319759,57.61548320479513],[-126.84668316190803,57.61552570155292],[-126.8464227051647,57.61553633896707],[-126.84618696815731,57.61557596899161],[-126.84593906876262,57.615633615703544],[-126.84575963558062,57.61566279383688],[-126.84553306731145,57.61578533324],[-126.84514379810933,57.61584164009907],[-126.8449398523591,57.61585191331761],[-126.84496769546286,57.61573849362337],[-126.84488586045754,57.61563698694384],[-126.84470183929707,57.61564825367297],[-126.84444288366328,57.61563308986977],[-126.84422202092574,57.615588530988326],[-126.84400928387532,57.61553270781936],[-126.84370749887499,57.61547408901118],[-126.84338324116067,57.61544140059386],[-126.84319571425013,57.61543586952137],[-126.84302723829582,57.61544030754637],[-126.84279057603516,57.61543845282074],[-126.84262906249445,57.615426027884936],[-126.8423077397067,57.615336136706595],[-126.84206197356201,57.61525473317535],[-126.84190670167823,57.615192934624176],[-126.84176929287712,57.61513438577441],[-126.84160446759455,57.61506704168872],[-126.84143170619772,57.61506702015296],[-126.8410639449963,57.61500769407657],[-126.84075419192226,57.61496705856241],[-126.84052119801436,57.61494163118843],[-126.84029226748797,57.614910571561595],[-126.83996178623248,57.614880156783194],[-126.83970289203998,57.61491431631491],[-126.83953133553005,57.61492101186825],[-126.8393269631255,57.614911097489134],[-126.83902983238615,57.614873741429456],[-126.8387563446455,57.614863143587044],[-126.83854685422776,57.61485886649245],[-126.83834554015077,57.6148455675926],[-126.8381544962117,57.614823233651705],[-126.83789697338507,57.614777775525816],[-126.83773753314586,57.614764210306596],[-126.8375629191697,57.61477428629002],[-126.83733523033938,57.61479927384829],[-126.83690945894948,57.614815424281154],[-126.83668045877906,57.614828085778555],[-126.83644994178125,57.6148676653432],[-126.83617486398613,57.614927708003194],[-126.8359914618215,57.614966988762845],[-126.83581898955957,57.61497929129868],[-126.83564278268315,57.615012920068494],[-126.83544262285575,57.615004094263185],[-126.83514111027009,57.61495778754908],[-126.83493791879114,57.614906374434106],[-126.83468446315364,57.614855278369134],[-126.83447336712634,57.61482521730427],[-126.83418631539763,57.61476984754045],[-126.83396955840267,57.61472076096065],[-126.83383356403829,57.61467789188468],[-126.83364171286092,57.61457146638576],[-126.83344364787813,57.61446732220295],[-126.83325655295772,57.61438665383454],[-126.83294442818776,57.61438077233156],[-126.8327303108789,57.61416572930732],[-126.83265432500565,57.61404287576584],[-126.83268375914244,57.613952994276715],[-126.83253870869355,57.61392699898308],[-126.83242648806937,57.61382231274472],[-126.83235518341847,57.61372185362224],[-126.8323209518226,57.61364134268396],[-126.83221826850544,57.61354220226259],[-126.83210986793311,57.61342067374943],[-126.83200571228727,57.613302482050806],[-126.83194410984224,57.613214294909085],[-126.83190426036784,57.61311588005996],[-126.83173658593974,57.612965573090406],[-126.8315491308291,57.6128198751624],[-126.83128879440855,57.61264436292377],[-126.83102540555348,57.61256865615107],[-126.83068817894699,57.61246762527886],[-126.83032701049682,57.61242056150705],[-126.83002894381045,57.612434766520686],[-126.82986278627904,57.61244814286828],[-126.82957669158681,57.61243536292816],[-126.82921285884827,57.6124096156237],[-126.82887216125894,57.61238932826048],[-126.82865728862764,57.61237722095294],[-126.82839237516566,57.61237551767043],[-126.82813358762562,57.612365927090956],[-126.82796157536477,57.61235130775541],[-126.82781054748371,57.61233879919208],[-126.82763644194281,57.61232419254341],[-126.82735434024322,57.612302413219204],[-126.82709540670008,57.61228609433613],[-126.82694125515913,57.61227472552573],[-126.82676399388393,57.61225901627492],[-126.82641120638154,57.61221188944207],[-126.82602133507083,57.612144811832074],[-126.82573546880005,57.61209390144599],[-126.82541196888606,57.61204546783034],[-126.82510112846826,57.61200143920724],[-126.82492158055312,57.61197677219324],[-126.82465689597822,57.61193693929651],[-126.82450974085879,57.61190982725676],[-126.82425961131433,57.61176899502294],[-126.8239610896696,57.61161725200951],[-126.82362737095002,57.61148366680869],[-126.82337115381198,57.611400051952245],[-126.82318878605369,57.611341764284404],[-126.82304735488462,57.61128882748513],[-126.82290684079005,57.61123027884793],[-126.8227664655375,57.611177335185495],[-126.82252629311907,57.61115752707036],[-126.82230970081102,57.61116223816153],[-126.82211293937385,57.61116458317684],[-126.82195472849828,57.611158839828214],[-126.82176698288285,57.61114206793243],[-126.8215665001828,57.61106931512303],[-126.82137612117236,57.61097968129982],[-126.82119701173622,57.61092697667242],[-126.82097182262123,57.61087343679721],[-126.8207893715179,57.61081178281666],[-126.82059252117348,57.610713218521994],[-126.82044483425412,57.6105156836268],[-126.82037649984466,57.610260475217856],[-126.82028266244888,57.610133241314685],[-126.82006778109832,57.61011999902728],[-126.81976898124117,57.61014763985343],[-126.81958923880806,57.61016220874097],[-126.8194197415411,57.61011841174578],[-126.81926645142302,57.610048726613535],[-126.81913958747319,57.609991210698],[-126.81898322257202,57.6099249078891],[-126.81881536038847,57.609859797315394],[-126.81865398937848,57.609803615890094],[-126.81851798902268,57.609759610315166],[-126.81832866439164,57.609718177115916],[-126.81807668378569,57.60968385859206],[-126.81782660353926,57.60964055828258],[-126.81751999391238,57.60954827459708],[-126.81714977040349,57.609419384089634],[-126.81696656050052,57.60941827414107],[-126.8167321029527,57.60941972297609],[-126.816451687797,57.60942594003495],[-126.81608645847848,57.609431558953176],[-126.81574619740331,57.6094291744271],[-126.81558062807109,57.609421226533335],[-126.81541960725578,57.60943006827422],[-126.81525327223402,57.60943557901384],[-126.81506168881867,57.60943451806795],[-126.81485300433042,57.609417865558555],[-126.81454431518065,57.609374920361],[-126.81431931324886,57.609329216542875],[-126.81417407639739,57.6092931118107],[-126.8139807165447,57.60925842445737],[-126.81381254957854,57.60922694530337],[-126.81365802216463,57.60919650317456],[-126.81350386316201,57.60918399768361],[-126.81319139954068,57.60916013286102],[-126.81284955720625,57.60913308438688],[-126.8125436387953,57.60912151090793],[-126.8121969102619,57.60915951994841],[-126.81185253848238,57.609209846718905],[-126.81157837921988,57.609165561363916],[-126.81139768505115,57.609087065992576],[-126.81123252545481,57.60904883796599],[-126.81103212224343,57.60902764386247],[-126.8108718693411,57.60902302104765],[-126.81066907797738,57.60903659799941],[-126.81042981218269,57.609058246613756],[-126.81026777736585,57.609068209487205],[-126.81000457400897,57.60904739876457],[-126.80985458087221,57.60898440986834],[-126.8096211760411,57.608838963537735],[-126.80950903376703,57.608734258343425],[-126.80941532330532,57.60865971237235],[-126.8093269099565,57.60858849748345],[-126.80925732966926,57.608516046052145],[-126.80918723039723,57.6084200527532],[-126.8091095500671,57.60831177273122],[-126.8089903653157,57.60817123216562],[-126.80886803312922,57.608030710776454],[-126.80882250777647,57.607859447192716],[-126.8088444080466,57.607659741289254],[-126.80875884810035,57.60747638963015],[-126.80855925971613,57.607345310263305],[-126.80836038981846,57.60724786191874],[-126.80812124739332,57.607127114533405],[-126.8078985896304,57.606993932897915],[-126.80775772554244,57.60691631055237],[-126.80760005167079,57.60683654839513],[-126.80751308736687,57.60673393031045],[-126.80746390854485,57.6065873549871],[-126.80725966548616,57.60643387848107],[-126.80694291616862,57.60630575474461],[-126.80668826768635,57.60619406910721],[-126.80651671551294,57.60610093618418],[-126.80635066779747,57.60602010254094],[-126.8061796356017,57.60600096444601],[-126.80609884179471,57.605991366516236],[-126.80598554762541,57.60597972434803],[-126.80579294063381,57.605930445238464],[-126.80566925904702,57.60587289742255],[-126.80552316237885,57.60579530472412],[-126.80528579795657,57.605658845019065],[-126.80505228075,57.605555997105505],[-126.80480504868191,57.605447626370896],[-126.80448831589888,57.60531949686883],[-126.80420348175058,57.605214717478134],[-126.80398446357664,57.60515326344675],[-126.80377308942833,57.605106338002855],[-126.80354262780337,57.604850987570074],[-126.80335228765618,57.60461108956212],[-126.80327797684153,57.60451287683595],[-126.8033390834914,57.60443290123214],[-126.8034669409877,57.60429197580078],[-126.80352057015135,57.6042053184659],[-126.80354077400743,57.60412110670457],[-126.80355596480682,57.6040974694495],[-126.80360867413093,57.60401642361194],[-126.8036546762894,57.60391523720198],[-126.80367508615323,57.60379178269808],[-126.80371075251793,57.60354826861361],[-126.80379614467996,57.603231575146324],[-126.80393299736282,57.602824873934736],[-126.80405977928383,57.602436172929586],[-126.80416188602815,57.6021182566424],[-126.80394314850928,57.601970469981744],[-126.80363865104592,57.60172678273812],[-126.80336444921252,57.601480668350064],[-126.80318505669102,57.601312460098875],[-126.80307079029635,57.601204399772755],[-126.80291551440548,57.60108761905768],[-126.80266162933283,57.60091089327436],[-126.8022420157942,57.600666781080996],[-126.8014743460407,57.60024538988941],[-126.80109552615355,57.599999905709666],[-126.80057456660687,57.599663344859394],[-126.80000011062484,57.59922171504544],[-126.7999533119236,57.5991861205787],[-126.79960891918338,57.598984150105345],[-126.79941870189135,57.59894605962657],[-126.79922371718277,57.59893042130144],[-126.79876130225826,57.598888369898646],[-126.79827181640967,57.59880275442017],[-126.79772470134425,57.59881278526558],[-126.79705044525473,57.59879891479842],[-126.79659753091804,57.598760162088944],[-126.79647485889724,57.59874968970194],[-126.79621248349102,57.59871427187867],[-126.79602768282447,57.5986851133518],[-126.79585969253651,57.59870854873203],[-126.79546735740047,57.59881405937668],[-126.79527108187962,57.59873675817662],[-126.79508061540052,57.598636998174534],[-126.79494194837729,57.59856159225205],[-126.79482971519656,57.59849948134638],[-126.79472463425073,57.59842947909136],[-126.79459316755498,57.59834842363356],[-126.79447159697179,57.598289732121366],[-126.79427883266894,57.5982303472516],[-126.79403170262592,57.59812307813363],[-126.79388803401861,57.59805891299449],[-126.79372320376628,57.59798366303446],[-126.79350109596864,57.59787175796382],[-126.7933053446639,57.59776866373779],[-126.79317193125267,57.59769434569712],[-126.79304764592989,57.59760651862493],[-126.79288181139705,57.59748306308502],[-126.79272566131161,57.59737188220712],[-126.7926110613905,57.59729632960498],[-126.79249648535429,57.597221897944856],[-126.79248478776286,57.59706276102744],[-126.79235679778914,57.596847141499296],[-126.79205798274447,57.5966695447252],[-126.79186471674484,57.596535040719836],[-126.79182214575002,57.59645120763618],[-126.79174646833829,57.596335058818106],[-126.79167297765419,57.59622338157293],[-126.7916152374132,57.596113852297215],[-126.7915853653515,57.59598621726692],[-126.79158500092832,57.595868496060966],[-126.79159940188649,57.595756292290254],[-126.79160858624236,57.595645240954866],[-126.79161174182948,57.59559589035857],[-126.79161695312153,57.595444500551885],[-126.79162693460624,57.595321111551],[-126.79152074701274,57.5951468444536],[-126.79126913222348,57.59502390106569],[-126.791136106645,57.594967517701036],[-126.79079023490146,57.59484065304226],[-126.79097642978148,57.594786843439614],[-126.79129627449882,57.59471990037652],[-126.791429263052,57.59467425696284],[-126.79156539849987,57.59462859456401],[-126.79171179245422,57.59457390117018],[-126.79180975425872,57.59445446977141],[-126.79186623903703,57.59435322565658],[-126.7919607650057,57.59421923949902],[-126.79205122897953,57.594092004675],[-126.79211389649647,57.593986238726735],[-126.79217444772559,57.59387936427146],[-126.79224938861522,57.59376007061684],[-126.79234288054967,57.59362721161449],[-126.79252132097369,57.59345348085367],[-126.79254315112073,57.59329638574135],[-126.79244617817857,57.59316242665603],[-126.79238171730971,57.59308208882372],[-126.79231077658886,57.59289191494764],[-126.79227631425785,57.592794579620914],[-126.79217699351061,57.59264830160002],[-126.79214288964398,57.59256890286288],[-126.79215898208057,57.592437629293734],[-126.79222348971574,57.592219735253586],[-126.79219698479966,57.59200238693297],[-126.79221733937968,57.59182511985434],[-126.79236381588409,57.59172445730289],[-126.79256214937506,57.59165151281291],[-126.79275564789874,57.591548325422025],[-126.79256155474644,57.591473250218435],[-126.79208551417786,57.59132474686461],[-126.79153511289482,57.59117220265699],[-126.79105652012133,57.59100128757337],[-126.79059823206879,57.59095133564944],[-126.79006099882466,57.591028546418976],[-126.78960195400875,57.59099204960584],[-126.78934748274212,57.590881453164265],[-126.78919129536851,57.59081735834605],[-126.78883768149159,57.59071856480007],[-126.78850409492095,57.59062637782256],[-126.78821731679642,57.590572030527156],[-126.78801401039966,57.590556425712855],[-126.78785746414285,57.590524845397496],[-126.78759308183201,57.59038963906046],[-126.78730867634306,57.59024782452925],[-126.78706973139327,57.59012816197723],[-126.78691331838223,57.59005285421317],[-126.78668179216946,57.589988084048684],[-126.7862691512773,57.58991766443675],[-126.7859072446729,57.58987272863426],[-126.78560108151129,57.589790461867366],[-126.78524764238003,57.589649053511245],[-126.78494490141429,57.58952976639554],[-126.78477817286279,57.58946124447443],[-126.78467748240745,57.589399057160826],[-126.78454696066918,57.58931013891168],[-126.78432822303863,57.58920604793223],[-126.78405652478985,57.589069757075535],[-126.78386728994928,57.58897558078398],[-126.78374111821591,57.58889448414969],[-126.78363522738017,57.58878299561954],[-126.78355791495966,57.58868703385827],[-126.78341732654874,57.58856678163151],[-126.78317625564593,57.58839330899863],[-126.78300367153032,57.58829454819252],[-126.78286980606892,57.588246010204294],[-126.78268522535618,57.588174228065604],[-126.78253735982908,57.588106712876],[-126.78232695082686,57.58799920594349],[-126.78217515396048,57.58789359402801],[-126.78208041852545,57.58781455214053],[-126.78192359446791,57.587769512633685],[-126.78164971754317,57.587729650197204],[-126.78143024432549,57.58769058658562],[-126.78121550242487,57.58762682901055],[-126.78091649717294,57.58753554008129],[-126.78073215499896,57.587525417944846],[-126.78051973806114,57.58747285716648],[-126.78027411738488,57.58738237257219],[-126.7799650302774,57.58736065326378],[-126.7794845870423,57.5873489136855],[-126.77903047361549,57.58729553403381],[-126.77876352607015,57.58723656502122],[-126.77859748389324,57.58725099765336],[-126.7783897618794,57.5872230714261],[-126.77805244098012,57.587099488105665],[-126.77760021515026,57.58698442846812],[-126.77709757604316,57.586911146901684],[-126.77661587699698,57.58683774034478],[-126.77619549942575,57.58674491200615],[-126.77586644414295,57.58666724233882],[-126.77568468097493,57.58662906898362],[-126.7754316775184,57.5865868289003],[-126.77527014857172,57.58656647481708],[-126.77524429462704,57.58637602889712],[-126.77520726966686,57.58620246599228],[-126.77517206164354,57.58606701195765],[-126.7751127574051,57.58592945698892],[-126.77506377656537,57.58578511447616],[-126.77507408494324,57.58562360670396],[-126.77512456093493,57.58548316534923],[-126.77515999594112,57.58537420476765],[-126.7751278826694,57.58528694260672],[-126.77505363772207,57.58513490028557],[-126.77497317008678,57.584934684529756],[-126.77497046755941,57.58480240339911],[-126.7750396724597,57.5847078198949],[-126.77511972651357,57.58463223243475],[-126.77523197665585,57.58439164539706],[-126.77523157863072,57.584167415666776],[-126.7752122086413,57.58398702255729],[-126.77519792239589,57.58385144603781],[-126.77517484986895,57.583694619057965],[-126.77512527546229,57.58357270355239],[-126.77506270757453,57.58348001442656],[-126.77500641583772,57.583387288459654],[-126.77496672251246,57.58328773814836],[-126.77495192653414,57.583177951346016],[-126.77494540676112,57.583063631365924],[-126.77492431225814,57.582952760374646],[-126.77488659702676,57.58284759268442],[-126.77482621442046,57.582759375334156],[-126.77470450282097,57.58263900405384],[-126.77462179810608,57.58253297900616],[-126.77456137840545,57.5823920673435],[-126.77454221706614,57.582273336925304],[-126.77453286677569,57.582173608678666],[-126.77451954492436,57.58208511530696],[-126.77487303442183,57.58197877451225],[-126.77498908074094,57.58187270488841],[-126.77499690636904,57.58174372583276],[-126.77481889238642,57.58173467970337],[-126.77446513961954,57.58172554264798],[-126.77422752244979,57.58171796631978],[-126.77405049444609,57.58170554990543],[-126.77393970534155,57.58160753721286],[-126.77387153123374,57.58154739413299],[-126.77381203054604,57.58145132318245],[-126.77381270709867,57.5813302342487],[-126.7737788829717,57.581210468590136],[-126.77367189975588,57.58104292171437],[-126.77357752804902,57.58092911644196],[-126.77358229751704,57.580803518975635],[-126.77379393256992,57.5806666194466],[-126.77397689239314,57.58055903767516],[-126.77417206489447,57.580435687890066],[-126.77433217312047,57.58033608765995],[-126.77445428372945,57.580271465868705],[-126.77462715331221,57.58018300202573],[-126.77480339705535,57.58010572972666],[-126.77500984160798,57.580021553062366],[-126.77516148663864,57.57996909004551],[-126.77547127984877,57.579875336868966],[-126.77580854527055,57.57974442346933],[-126.77609778387823,57.579617154875656],[-126.77623873773183,57.579553541883485],[-126.77635574251774,57.579495675285976],[-126.77655680494011,57.57940480091165],[-126.77674485236041,57.579342031658335],[-126.77689764455137,57.57929516568225],[-126.77706284494086,57.57913835329747],[-126.77734058880908,57.57896181879165],[-126.77766620301746,57.57877266917266],[-126.77782030203798,57.57868767516626],[-126.77796991512817,57.57863858436554],[-126.77826810267372,57.578540408375225],[-126.77863375357657,57.5784171686208],[-126.77890192412012,57.578284412346854],[-126.7789854036943,57.57817292570796],[-126.7789826399382,57.57808885540494],[-126.77905915801766,57.57799534826544],[-126.77944376299368,57.57792917336668],[-126.78017154046277,57.5779192707921],[-126.7805908146791,57.577912308955014],[-126.78070479461239,57.57791051413693],[-126.78077694798282,57.577910087633136],[-126.78104647010068,57.57789391910681],[-126.7812783885922,57.57788021477554],[-126.78135009543074,57.57780691553585],[-126.78144995347256,57.57767851312741],[-126.78182377997733,57.577445343010716],[-126.78246859960122,57.57711526858486],[-126.78280192405191,57.57694736262949],[-126.78295065474317,57.57690724064916],[-126.78336066082541,57.5768061479477],[-126.78335004938572,57.5766974589404],[-126.78336493878766,57.57650677446503],[-126.78347186466257,57.576214640269775],[-126.78353332710809,57.576101039157315],[-126.78386589681219,57.57589725816288],[-126.78625996786052,57.57443449794297],[-126.79334181451459,57.57240098037057],[-126.80636841678023,57.570043900864114],[-126.81762182924628,57.56947242753179],[-126.82080484418918,57.56917463503016],[-126.82439699761647,57.5681207970846],[-126.82734408895477,57.56650584396916],[-126.82983320559656,57.5634676025849],[-126.8336142880468,57.561102825996336],[-126.8421916425966,57.5596940419288],[-126.85077735687578,57.55873310361509],[-126.85681832976317,57.558012375686936],[-126.86498017132989,57.557107075978074],[-126.87515159889115,57.555963732383205],[-126.88311541084217,57.55574924911296],[-126.89232177936435,57.554099785622434],[-126.90054249343568,57.55107514771666],[-126.90337542864232,57.54928885655163],[-126.90532754471354,57.54625286625853],[-126.9128011147506,57.54312496121678],[-126.91798924229049,57.542461130834454],[-126.92549809307573,57.54098258382283],[-126.93088366916814,57.53969798699769],[-126.9357591613292,57.53926885801605],[-126.94667279942993,57.53828512193315],[-126.95539764760376,57.539199876980156],[-126.96542563647941,57.54125259179268],[-126.97268056460304,57.54291243955368],[-126.97800743202565,57.54361751695681],[-126.99147011307203,57.54267394162047],[-127.00182704853863,57.54060453480857],[-127.00970456374209,57.53701059105032],[-127.01265170953396,57.53139118780228],[-127.01552601529545,57.52737778808587],[-127.02169311181473,57.52344649975712],[-127.0283757945937,57.519008634172025],[-127.03081938471725,57.51476508593862],[-127.03071838580301,57.51054142046647],[-127.0354622480274,57.50936517443633],[-127.04234052322143,57.508629323844495],[-127.05032553859948,57.50983060072434],[-127.05958082654729,57.51073418430188],[-127.06694870770525,57.51279149501147],[-127.06982671245207,57.51739628894098],[-127.07155583658565,57.52275483347207],[-127.0745118692942,57.53055202445347],[-127.0771145889834,57.53270138317298],[-127.07788110254118,57.53360999848867],[-127.08373974903405,57.534360277317866],[-127.09041751431147,57.533973385732374],[-127.09762445770087,57.533572784096],[-127.10462339821142,57.53335291793936],[-127.11066544304457,57.532961350660834],[-127.12667737270188,57.53238607143942],[-127.13845467236796,57.53206072493108],[-127.1434812213006,57.53356000468341],[-127.14556546735196,57.53594575375775],[-127.14497525559315,57.53771787536399],[-127.14206755541638,57.54002134063379],[-127.13889133643818,57.54421964129771],[-127.13847060999296,57.548277529209976],[-127.14010010990627,57.54963581452819],[-127.14356211379764,57.552000757602784],[-127.14366825342624,57.555767098683276],[-127.14313454203077,57.5596017828053],[-127.14135564921276,57.564523616898136],[-127.13886494549097,57.57048311174493],[-127.14450062033478,57.574497715379735],[-127.14696473254982,57.57522083481158],[-127.15101885523241,57.579634621024645],[-127.1553657826858,57.58308596518248],[-127.15900833713809,57.58790680136121],[-127.1605803306986,57.59086206798423],[-127.16460493629317,57.594208352709806],[-127.16823412671393,57.5984550356495],[-127.17344184160922,57.60206869752562],[-127.17644834708496,57.603127353992676],[-127.18307783973911,57.60438678658981],[-127.18860349941998,57.604112952952825],[-127.19422113811814,57.59978354194542],[-127.19797729182146,57.597291724033724],[-127.20334746531591,57.59548478124855],[-127.20924057517949,57.593322998578216],[-127.21593096093832,57.592974552742476],[-127.22072205031414,57.593280209572804],[-127.22725368491116,57.59116553524993],[-127.23101914923461,57.589085309913195],[-127.23545108664239,57.588012371606446],[-127.23971070554921,57.58820569131386],[-127.24777322257529,57.587681277283096],[-127.25406544333285,57.58482300315107],[-127.25788853737288,57.58119859271968],[-127.26230670416086,57.57966739957952],[-127.26624911188222,57.58003331856003],[-127.26954826246188,57.58011826028694],[-127.2771991635435,57.58004449821779],[-127.28065882920401,57.57853091977954],[-127.28573920010098,57.57780879705128],[-127.2870607148257,57.57932982615537],[-127.2893002725742,57.57954120812669],[-127.29800288153275,57.57911510087698],[-127.30340059171144,57.57838020662638],[-127.31113957762554,57.577747450994565],[-127.31648242253952,57.578609266569785],[-127.32032337603644,57.57908222968634],[-127.323235337901,57.57706168941749],[-127.32177898227852,57.57146988137731],[-127.32168426898049,57.56851066614314],[-127.32921219323899,57.56478423457523],[-127.33064773032255,57.56322690588386],[-127.32665717039708,57.558073362438094],[-127.32209110893206,57.55485406252958],[-127.32035430509185,57.55373224968631],[-127.31952989314087,57.547909973630546],[-127.32175914567921,57.54126781521603],[-127.32473058133806,57.53136212637584],[-127.32688108986014,57.52568949469381],[-127.32668913648418,57.519744432824034],[-127.32525659674558,57.51817118377924],[-127.32335712710581,57.515212296363295],[-127.32333405109125,57.51122099375495],[-127.32342388492033,57.50744384449677],[-127.31848625997226,57.50560968657789],[-127.31381979387183,57.505656275728455],[-127.30658784753167,57.501718729137195],[-127.30184543602711,57.49599821429798],[-127.30051800469526,57.49429813673572],[-127.29942847846857,57.493447808737756],[-127.29851077259951,57.49117859688963],[-127.30469919859966,57.489063454750195],[-127.3134834128346,57.48858152950506],[-127.3206045645928,57.485774648197136],[-127.32252538881083,57.479584368297274],[-127.31709896535719,57.47570114480017],[-127.31166262630224,57.47146801468316],[-127.30424354990421,57.464796743078864],[-127.30182424310057,57.45864981246057],[-127.30265809448603,57.45151102290218],[-127.30423885486641,57.444580129703624],[-127.30594209855715,57.441540637666826],[-127.31099878513788,57.43743631630496],[-127.32491399026097,57.435539005019486],[-127.33331131167024,57.43653945947875],[-127.34154265099268,57.43577414589991],[-127.35482437789993,57.43080367949389],[-127.36304168596244,57.42963353891296],[-127.37068236389408,57.42698897353644],[-127.37201421014947,57.42566559064852],[-127.37553018356707,57.42008593296626],[-127.37810598068816,57.414919661450796],[-127.38878397828788,57.40847515094049],[-127.38982812150158,57.408006696154374],[-127.39524257294026,57.405563581125904],[-127.40678336769125,57.402642257721716],[-127.41528844232333,57.40090066794012],[-127.4252276582951,57.39777071008003],[-127.43362876801868,57.395751005092535],[-127.43466796058573,57.395506471212876],[-127.44410172791332,57.396093799621106],[-127.4544213449213,57.394840948651535],[-127.46476515292852,57.39130884512785],[-127.46977420894265,57.38663381893392],[-127.46681441090709,57.38072037207297],[-127.46088574674089,57.37472334474147],[-127.45895157123165,57.37377618342823],[-127.45414292351799,57.36942572498322],[-127.45503889442125,57.36490442429749],[-127.45680116303654,57.36095650473165],[-127.45710622209509,57.357751225598086],[-127.46081689965219,57.352283836168795],[-127.47032426889281,57.346410751378855],[-127.48355012292598,57.33838733073836],[-127.48945481112614,57.335297973523225],[-127.49142463450585,57.33378230006058],[-127.49279492736989,57.33272746266905],[-127.4912263200801,57.32862638535919],[-127.49161045576093,57.328882113836734],[-127.4918552080376,57.32900153112799],[-127.4921142262029,57.3291140592187],[-127.49231526665216,57.32925863680309],[-127.49254976650536,57.32938153275893],[-127.49287964259749,57.32939235488741],[-127.49320548539947,57.32935277275317],[-127.49351363721149,57.329286484827456],[-127.49380975510935,57.32920463780211],[-127.49410154094797,57.32911835503529],[-127.49438899465505,57.329027636556724],[-127.49467329492794,57.32893583225925],[-127.4949596548773,57.328844003874316],[-127.49524931381099,57.32875662165277],[-127.49554426166489,57.3286714207027],[-127.49584113750886,57.328582833815894],[-127.4960086738831,57.32853495911323],[-127.49614126850231,57.32849757242624],[-127.49644828995469,57.32842904821416],[-127.49676264157648,57.32838846708215],[-127.49708830353484,57.32837129919062],[-127.49742271528434,57.328365241614904],[-127.49776069132993,57.3283703534741],[-127.49809904660734,57.32838555000681],[-127.49843252425204,57.32840864904345],[-127.4987590908148,57.32844079494459],[-127.49906471441555,57.3284956012195],[-127.49933232505248,57.32861474365582],[-127.4996015914556,57.328722655679584],[-127.4999116904058,57.32873256498113],[-127.50024528583437,57.32867942346148],[-127.50051199436709,57.32845776011207],[-127.50072372527653,57.32831856507505],[-127.50093127195672,57.328178296453245],[-127.50113357069633,57.328036966434915],[-127.5013241683705,57.32788904338397],[-127.50149901458171,57.32773681589286],[-127.50167490650519,57.32758457620537],[-127.50186337815703,57.327435555607096],[-127.50205186495833,57.32728653456596],[-127.50224033366788,57.327137513462425],[-127.50243621297184,57.32699177053613],[-127.50264477661503,57.32685148755792],[-127.50287144727648,57.32672220784669],[-127.50311723880682,57.32660391969213],[-127.50337573125381,57.326491091049256],[-127.50364269219023,57.3263826492419],[-127.50391391155308,57.3262764002735],[-127.50418515693615,57.32617127153512],[-127.50445320455911,57.32606393669586],[-127.50471381106942,57.32595220223938],[-127.50496379109782,57.3258349836464],[-127.50519364415288,57.32570790556758],[-127.50539586984404,57.32556544867345],[-127.50571889676134,57.325429453053424],[-127.5060514247293,57.32532361719464],[-127.50643640320177,57.325151033643],[-127.50686979307395,57.3250204946993],[-127.50720126725925,57.32491466798588],[-127.50743146327552,57.324849242317235],[-127.50875141293213,57.32414347661353],[-127.50901657481822,57.3240428920798],[-127.50924671366818,57.323923651197696],[-127.50941695667603,57.32376137615461],[-127.5095146069013,57.3235763930043],[-127.50945635381512,57.323443652682606],[-127.50938022574375,57.32325282097913],[-127.50915098360085,57.32310523093805],[-127.50899606783136,57.32294557482357],[-127.50888850564989,57.32277416307158],[-127.50880676973988,57.322599091007966],[-127.50875302563516,57.322422575968055],[-127.50876970535573,57.32223964569275],[-127.5087978459661,57.32205770474641],[-127.50872377266859,57.32189263449267],[-127.50851028953113,57.32174934678835],[-127.50832251649464,57.32159903665724],[-127.50816043674105,57.32144170440316],[-127.50800341035952,57.32128095062371],[-127.50784133327058,57.32112361801602],[-127.50766701537592,57.32097203136711],[-127.5074702033578,57.32082967171002],[-127.50721823692167,57.32071148833657],[-127.50693253709878,57.32060714506319],[-127.50666430989712,57.320498116182854],[-127.50646261222893,57.32036365889041],[-127.50631305271317,57.32020730199708],[-127.50618495950557,57.3200417298053],[-127.50607735730468,57.31986919575884],[-127.50598418023097,57.31969313280945],[-127.50590237584407,57.31951581820534],[-127.50582896916076,57.31934064938486],[-127.50577316627292,57.31916415743005],[-127.50573810755056,57.31898630632025],[-127.50571437659157,57.318806083046546],[-127.50569480006118,57.31862581211948],[-127.50567209976845,57.31844557706709],[-127.50563699799321,57.31826660545046],[-127.50559046433658,57.31808776504426],[-127.50553868596909,57.317907863747806],[-127.50548904593758,57.31772905901491],[-127.50544977497441,57.31755013531136],[-127.50542925847974,57.31737211751413],[-127.50543474085188,57.317194922500555],[-127.50548189600454,57.3170206125799],[-127.50556963238736,57.31684807913728],[-127.50567922892878,57.31667641585583],[-127.50579085728639,57.31650360808605],[-127.50588794579211,57.31633096713092],[-127.5059485180292,57.316154260941595],[-127.50597251367913,57.315972369179896],[-127.50598918728434,57.315789440403414],[-127.50602682349046,57.31561075535665],[-127.50611468675481,57.3154415834876],[-127.50626855509238,57.315286227877124],[-127.50646739351612,57.315138203307434],[-127.50668300585555,57.31499447013958],[-127.50688816027417,57.31484861456663],[-127.507053570313,57.31469648873288],[-127.50714888120172,57.31453171501102],[-127.50715951144568,57.31435334000573],[-127.50712936919184,57.3141687069287],[-127.50710237841672,57.31398515875679],[-127.50708804243251,57.313805949573016],[-127.50706741525964,57.31362569160415],[-127.50704269547523,57.313446601763424],[-127.5070179150903,57.31326639155671],[-127.50699734937118,57.313087254042344],[-127.5069829976024,57.31290804516783],[-127.50698007657013,57.31272870500437],[-127.50698966040797,57.31255034229672],[-127.50700958374688,57.31237073974522],[-127.5070367396188,57.312189933038646],[-127.50707115552251,57.31200904294077],[-127.50711499652455,57.311830286739735],[-127.507170267395,57.31165139921999],[-127.50723605397624,57.311475754123066],[-127.50731438861887,57.311302206992416],[-127.50742215007772,57.31113729034358],[-127.50760213956467,57.31098611760376],[-127.50773669194798,57.3108948843568],[-127.50781461748835,57.310842418763706],[-127.50801874288985,57.310697694518076],[-127.50826163069013,57.310561492929935],[-127.5084920291857,57.3104243134323],[-127.50862726635374,57.31027141176915],[-127.50864852065047,57.31009964147569],[-127.5086144426066,57.309920660014406],[-127.50855211755878,57.309736398021975],[-127.50853684090738,57.30969173037572],[-127.50848874650217,57.309552148063645],[-127.5084493813845,57.30937098528981],[-127.50846013688621,57.30919597264331],[-127.50855230480968,57.3090312345499],[-127.50871652026566,57.30887575745776],[-127.50891938042483,57.30872544101945],[-127.50912543406041,57.30857732969008],[-127.50931482945336,57.3084282886408],[-127.50943393583835,57.30834059467422],[-127.5095116600841,57.30828364608072],[-127.50971801907825,57.30814337788222],[-127.50993598292406,57.30800746009458],[-127.51015821454762,57.30787485605147],[-127.51038568851376,57.30774331234331],[-127.51061740254795,57.307613961567746],[-127.51085128015355,57.307486827620664],[-127.51108939783623,57.307361886567094],[-127.51133920893075,57.30724353682894],[-127.51160074119117,57.30713289910031],[-127.51185901587166,57.30701893514569],[-127.51211505172179,57.30690051215759],[-127.51224787491674,57.30673978714093],[-127.51234174209402,57.306566058206705],[-127.51240633312729,57.306387061401686],[-127.51244500433147,57.306209484562345],[-127.51246597298758,57.30603099079314],[-127.51247648730215,57.30585037543947],[-127.51248702927563,57.30567088087237],[-127.51250692318344,57.30549127848122],[-127.51254762501681,57.305312557225115],[-127.51260395188068,57.30513477685538],[-127.51265092631819,57.30495710434666],[-127.51266671076742,57.304778670497974],[-127.51266271720384,57.30459934370462],[-127.51264934414476,57.30441900403684],[-127.51263809190004,57.30423976101472],[-127.51263614707167,57.304059289591365],[-127.51264045891197,57.30387986711178],[-127.51263954392883,57.30369938386278],[-127.51262783893321,57.30353472019889],[-127.51262621566525,57.30352016489055],[-127.51257872616426,57.303343582100496],[-127.51248658925753,57.30316751423642],[-127.51241733629413,57.302992303520114],[-127.51242385837296,57.30281621895831],[-127.51246980098776,57.30263855872148],[-127.51253653312537,57.30246177979728],[-127.51260846347444,57.302284940901515],[-127.51267309039166,57.30210706514688],[-127.51270534996719,57.301925078420126],[-127.51274388214823,57.30174414043128],[-127.51285994227493,57.30158024535356],[-127.51302627310208,57.301426980978064],[-127.51320099598283,57.30127586171677],[-127.51338302007879,57.30112577904556],[-127.51357133216342,57.30097674462723],[-127.51376491360156,57.300829891269125],[-127.51396371995858,57.3006840983825],[-127.51416573609906,57.300540510287234],[-127.51437087318456,57.300396885839575],[-127.51457717174597,57.30025661088638],[-127.51478661905449,57.300117420312226],[-127.51497511855261,57.29999977186624],[-127.515004519087,57.299981494979455],[-127.51522876251643,57.29984885921691],[-127.51545829176344,57.299718404135874],[-127.51568993996065,57.29958904523419],[-127.51592158658943,57.299459685936775],[-127.51615215746088,57.29932921758651],[-127.51637748387856,57.29919768839429],[-127.51659752139554,57.29906397782535],[-127.51680804561185,57.29892589261736],[-127.51700905655831,57.29878343281751],[-127.51720685468932,57.298638767728164],[-127.51740253081665,57.29849300581832],[-127.51759499413677,57.29834503864596],[-127.51778218527735,57.29819489006216],[-127.51796517847374,57.29804366873158],[-127.51814082358686,57.29789029006679],[-127.51830910406771,57.297734754290396],[-127.51846899030647,57.297577073355214],[-127.51861845097844,57.29741839189453],[-127.51875842677711,57.29725645689888],[-127.51889417705459,57.29709232855576],[-127.51902977590508,57.2969248386077],[-127.51916005844303,57.29675404689417],[-127.51928511382252,57.296582194550325],[-127.5193996829162,57.296408221456865],[-127.51950384362655,57.29623324781596],[-127.51959345570738,57.29605844271061],[-127.51966538591505,57.295882721411274],[-127.51971867740096,57.29570833718933],[-127.51974917874901,57.29553533818653],[-127.5197496331733,57.295363808530986],[-127.51970129752381,57.29519284438875],[-127.51961044445122,57.29502349409102],[-127.51949050300536,57.294853359784575],[-127.51935393968179,57.29468341801247],[-127.51921219641774,57.29451353615295],[-127.5190776833769,57.29434244933861],[-127.51896386803693,57.29417000157453],[-127.51888219169346,57.2939960603744],[-127.51883571469125,57.293819469270744],[-127.51880689017962,57.293642673700475],[-127.51879249033503,57.29346346891762],[-127.5187894708308,57.29328301126243],[-127.51879372463205,57.29310246938148],[-127.51880211318178,57.29292187962952],[-127.51881051825771,57.29274128971089],[-127.5188137668839,57.29237914597485],[-127.51901487454153,57.29221426081516],[-127.51915268145713,57.29205010881802],[-127.51929471097102,57.291888149894746],[-127.51945141898085,57.2917293839266],[-127.51962395193434,57.29157716078285],[-127.51980275492632,57.29142598580367],[-127.5199867372186,57.29127475053676],[-127.52017397348894,57.291126840495856],[-127.52036747966525,57.2909799785506],[-127.52056631538048,57.29083641771994],[-127.52077041942657,57.29069503761767],[-127.5209819119482,57.29055693469253],[-127.52120288508394,57.29042208463223],[-127.52143338340383,57.29029160794075],[-127.52167131473949,57.29016552884902],[-127.52191667909949,57.290043847315275],[-127.5221674622045,57.28992770775373],[-127.5224330849653,57.28981924287302],[-127.52272758241632,57.289731742412194],[-127.52303870843572,57.28967095379317],[-127.52336001370077,57.289631346487184],[-127.523688097594,57.289605112451824],[-127.52402053890204,57.28958443229048],[-127.52435195039672,57.28956376325641],[-127.52468115189822,57.28953975586994],[-127.52501039770404,57.28951686820831],[-127.5253397325706,57.28949622082138],[-127.52566902234412,57.2894744520573],[-127.52599831174255,57.28945268246666],[-127.52632760076588,57.28943091204924],[-127.52665914397984,57.28941359883685],[-127.5269917777215,57.28939739315252],[-127.52732430500595,57.289378945718326],[-127.5276535926386,57.28935717197241],[-127.52797950612485,57.28932871029044],[-127.52829972913283,57.28928798233964],[-127.52860646758097,57.28922162617423],[-127.52890202056503,57.28913522043387],[-127.52919752737262,57.28904769348443],[-127.52950209715935,57.28897911834792],[-127.52982356934244,57.28894397742027],[-127.53015943716701,57.28893108912033],[-127.53049985961283,57.28892823643573],[-127.53083704243696,57.288922057478445],[-127.53116324752106,57.28890143192424],[-127.5314717424352,57.28885298562806],[-127.53176119444588,57.288770007847184],[-127.53203408265476,57.28866255938898],[-127.53228975329893,57.28853961658],[-127.53252862239667,57.28841238538559],[-127.53270740448126,57.28826231374113],[-127.53283755142584,57.28809038907816],[-127.53305476715266,57.28796677331242],[-127.53335594682012,57.28789150231211],[-127.53367295239707,57.28782277190076],[-127.53396969242523,57.28774082497609],[-127.5342717179608,57.28766105765655],[-127.53457690862903,57.287582373653606],[-127.53487996104005,57.287502592893006],[-127.53517666758422,57.28741952251779],[-127.5354637551818,57.287329837690194],[-127.53573599857961,57.28723247861392],[-127.53598911187314,57.28712413238193],[-127.53620184588564,57.28699271631772],[-127.53637739547646,57.286840435327235],[-127.53653274059381,57.28667605912663],[-127.53668388864313,57.28651061087458],[-127.53684780278361,57.28635286029697],[-127.53702534865283,57.286198312904204],[-127.53719660547694,57.28604271794852],[-127.53734482379622,57.2858817875974],[-127.53745229385929,57.28571460856891],[-127.5375386044098,57.285537588000786],[-127.53760081479138,57.28535524472039],[-127.5376214908112,57.28517226755381],[-127.53758540440353,57.28499780371667],[-127.53749661665648,57.284829563393245],[-127.53738401784405,57.2846627233732],[-127.53725283310554,57.284498343392926],[-127.53710504774195,57.284334157977334],[-127.53694594841473,57.284172347227745],[-127.53678069834042,57.284012850571365],[-127.53661348115607,57.28385561894224],[-127.53644535459291,57.283701761003584],[-127.53625570196695,57.283554881584145],[-127.5360486453293,57.2834138112175],[-127.53583447053593,57.28327618716617],[-127.53562429592924,57.283135152728754],[-127.53543462085455,57.28298715145213],[-127.5352651419112,57.2828254605688],[-127.53508863477434,57.28266945715397],[-127.53487572186309,57.2825374222691],[-127.53461034210737,57.28244299658157],[-127.53431357240673,57.28236799596503],[-127.53399762169651,57.28230667198161],[-127.5336746256385,57.28225103502296],[-127.5333545716636,57.282190878596246],[-127.53304660975031,57.28212161144102],[-127.53273960493107,57.28205009025371],[-127.53243055449218,57.28197971334719],[-127.53212449137504,57.28190593761152],[-127.53182655015131,57.28182758199744],[-127.5315417023825,57.28173898314092],[-127.53127399197466,57.28163785175684],[-127.53103434650674,57.28151172859025],[-127.53082613973639,57.28136730079661],[-127.53064979206793,57.28121465321053],[-127.5304909125223,57.28105731719455],[-127.53033819793139,57.28089878797735],[-127.53019059075943,57.28073795686147],[-127.53004709001381,57.28057595661405],[-127.5299056206446,57.28041281146937],[-127.52976727328605,57.28024962976941],[-127.52962991146302,57.280085315392704],[-127.52949358001308,57.279920988883624],[-127.52935519135934,57.27975668627193],[-127.52921580294142,57.27959351627748],[-127.52905444105495,57.279426118263146],[-127.52887319759036,57.279254467751954],[-127.52868465695153,57.27908178107958],[-127.52850129704166,57.27890903376189],[-127.52833570172498,57.278739442269476],[-127.52820142735025,57.278573969663526],[-127.52811111366874,57.27841807397465],[-127.52802774319534,57.278305818718756],[-127.52801012821462,57.27822867081179],[-127.52835051273172,57.27804533209734],[-127.52867429613659,57.2779664448679],[-127.529045084936,57.277894855882295],[-127.52940089992312,57.27781222994952],[-127.5296863168578,57.27770800346281],[-127.52993911514737,57.27759294649948],[-127.53018658192086,57.27747458810272],[-127.53043085346941,57.27735402441958],[-127.53067291403103,57.277230122911405],[-127.53091186907685,57.27710625722549],[-127.5311496870967,57.276980162258084],[-127.53138750354785,57.27685406687179],[-127.53162531843033,57.276727971066634],[-127.53186317664772,57.27660299537951],[-127.53210310810604,57.27647799501832],[-127.5323462317148,57.27635519901233],[-127.5325914900669,57.27623349864705],[-127.53284210522457,57.27611621940988],[-127.53310746692681,57.27600437248981],[-127.53338445471282,57.27589799430549],[-127.53366574193745,57.275794928398106],[-127.5339469660839,57.27569074155454],[-127.5342208454418,57.27558439795802],[-127.53448106584786,57.27547372946303],[-127.5347212515761,57.27535544763072],[-127.53493608917566,57.27522625162176],[-127.5351172348483,57.275085118240064],[-127.53525935871994,57.27492874688588],[-127.5353709115117,57.27476040187368],[-127.53545928166167,57.27458335990732],[-127.5355319191476,57.27440201799343],[-127.53559827032318,57.27421962865684],[-127.53566575651914,57.27403946812695],[-127.53573549678624,57.27386376540811],[-127.53578647460212,57.27368604043004],[-127.53581869022037,57.27350629321547],[-127.53583742878756,57.27332670396231],[-127.53584577751775,57.2731472364973],[-127.53583754594163,57.27296796337486],[-127.53581370167898,57.272787752194816],[-127.53578160432052,57.2726087588205],[-127.53573605924576,57.272431044123365],[-127.53566775599207,57.27225471719778],[-127.53560670601257,57.27207830527281],[-127.53560018826524,57.27181269069066],[-127.53566549744212,57.27173345124701],[-127.53594096803327,57.27161587476651],[-127.53609092351104,57.27144820036835],[-127.5363221955523,57.27131544635055],[-127.53654710736674,57.27117940332254],[-127.53674888281967,57.27103578382457],[-127.53691188158969,57.27088252929076],[-127.53704023638471,57.270719591398475],[-127.53715808257357,57.270553413486496],[-127.53726542026334,57.27038399558447],[-127.5373654430622,57.270213542368516],[-127.53746019703871,57.27004090879246],[-127.5375496822481,57.2698660948687],[-127.53763812112949,57.26969129317636],[-127.53772551369738,57.269516503717846],[-127.53781504153618,57.26934281021362],[-127.5379087007579,57.26916906817378],[-127.53800764354108,57.26899750617917],[-127.53811389913092,57.26882697933919],[-127.53822957029188,57.268658584006666],[-127.53836832888668,57.268496643868595],[-127.53853842700423,57.26833994089595],[-127.53872637280898,57.26818863339995],[-127.5389184823884,57.26803727673246],[-127.53909912825509,57.26788493338256],[-127.53925470044038,57.26772840011317],[-127.53937054370682,57.26756448602491],[-127.53944561305187,57.267393203509165],[-127.5394966552323,57.26721771904899],[-127.53952681880057,57.26703911673954],[-127.53954444623601,57.26685841963227],[-127.53955265739957,57.26667559107699],[-127.5395598681802,57.266493895356696],[-127.53956915313198,57.26631217528921],[-127.53958780885034,57.266131466190835],[-127.53960652610415,57.26595187744541],[-127.53962004935947,57.26577234975435],[-127.53963045289011,57.26559285874557],[-127.5396418565969,57.26541223495267],[-127.53965642488279,57.26523269504977],[-127.53967719895245,57.26505308224223],[-127.53970633118608,57.26487449228594],[-127.53974793658645,57.26469687681372],[-127.53979578062028,57.264519188029105],[-127.53984973976783,57.26433918526868],[-127.53991201149108,57.264159084803936],[-127.53998789144552,57.26398218753594],[-127.54008157279785,57.26380956520062],[-127.54019523629067,57.263643434225536],[-127.54033510397875,57.263483721401485],[-127.54050120415279,57.26333154735937],[-127.54069132708882,57.26318357482151],[-127.54089828339711,57.2630410092893],[-127.54111992057983,57.262902754947305],[-127.54134900427894,57.26276889683028],[-127.54158143158888,57.26264060422848],[-127.54182231759134,57.26251669587301],[-127.54207593389512,57.26239936354252],[-127.54233900901492,57.262285282517055],[-127.54260844020926,57.26217448927243],[-127.54287898896878,57.26206592440921],[-127.5431484170536,57.261955130073396],[-127.5434126216615,57.26184327565983],[-127.54366837648158,57.261728157110596],[-127.54391043097976,57.261607594247664],[-127.54413666596204,57.26148049107428],[-127.54434287169234,57.2613457762474],[-127.5445279743187,57.26120234147299],[-127.54469512184399,57.26105127077924],[-127.54484961465539,57.2608947438404],[-127.54499043625772,57.2607338937444],[-127.54512168935179,57.26056755109753],[-127.54524457168033,57.26039906495988],[-127.54536112405685,57.260228411282846],[-127.54547349890814,57.2600566857442],[-127.54558478222516,57.25988385194679],[-127.54569501930213,57.259711030411054],[-127.54580841977301,57.259539292518],[-127.54592507419552,57.25937087929256],[-127.54604797784863,57.25920351327244],[-127.54617395418062,57.259034989828834],[-127.54629361729664,57.25886429869148],[-127.54640188161808,57.25869374201507],[-127.54649034483484,57.25852117692094],[-127.54655180249728,57.25834780955937],[-127.54657677866223,57.25817038869649],[-127.54656745482852,57.2579911307064],[-127.54653420035054,57.25780991316838],[-127.54648438479231,57.25763001221668],[-127.54642948422658,57.25745241340669],[-127.54634776139795,57.25727849438528],[-127.54611729253021,57.25694041577685],[-127.5456659392701,57.25673274302964],[-127.54542446450516,57.256610034663595],[-127.54515978576924,57.25650329427545],[-127.54488296655848,57.25640454390028],[-127.54460210848475,57.25630808268606],[-127.54432629202073,57.25620819831132],[-127.54404731294068,57.25610722961223],[-127.54376126666652,57.25601082782445],[-127.54347622174595,57.2559132925898],[-127.5432003206458,57.25581116484645],[-127.54294375088902,57.25569984046489],[-127.54271365958024,57.25557587224603],[-127.54251407042669,57.25543697085628],[-127.5423369026902,57.25528771577297],[-127.54217703765086,57.25513040944759],[-127.54202731616272,57.25496737831773],[-127.54188169800763,57.25480317770498],[-127.54173503600555,57.254638989252705],[-127.5415813066183,57.25447936803153],[-127.54143065203289,57.25431858943541],[-127.5412851292151,57.2541566292707],[-127.54113965277834,57.25399578947858],[-127.54098695694704,57.25383615553937],[-127.54082201821264,57.25368114965649],[-127.54064678676573,57.25352850675556],[-127.54046747135855,57.253377032730484],[-127.54028301037599,57.25322674004881],[-127.540092465629,57.25307988180764],[-127.53989677537699,57.25293420486151],[-127.53969298959818,57.25279310699583],[-127.53948202997927,57.25265433525197],[-127.53926398674413,57.2525201306206],[-127.5390408147059,57.25238710696655],[-127.53881354234248,57.252255252180646],[-127.53858533324767,57.25212565012093],[-127.53835603560822,57.251994939438134],[-127.53812979636947,57.251863071427096],[-127.53790663210802,57.251730045909376],[-127.5376906446529,57.251594693702614],[-127.53748072732975,57.2514559067921],[-127.53727695833634,57.25131480533148],[-127.53707620263013,57.25117142614189],[-127.53687850523357,57.25102688975056],[-127.5366838827172,57.25088119597694],[-127.53649238007237,57.25073546534794],[-127.53630181728137,57.25058748136755],[-127.53611228436172,57.25043948506544],[-127.53592379788861,57.250291476251604],[-127.53573640283615,57.25014457544275],[-127.53554994764737,57.24999542130108],[-127.53536556726208,57.24984624260548],[-127.53518524505924,57.24969477403748],[-127.53500902598705,57.24954213612669],[-127.53483793838181,57.249388316838385],[-127.53467199878405,57.24923331599877],[-127.53450706052956,57.24907718221261],[-127.53434310703437,57.248919915678435],[-127.53418428488405,57.24876146782608],[-127.53403471224749,57.24860066939883],[-127.53389749065386,57.24843748410252],[-127.53377776650068,57.24827073066659],[-127.53367759626268,57.24810038505531],[-127.5335928332135,57.24792649587075],[-127.53352043710804,57.24775021977912],[-127.53345736290137,57.247573834528396],[-127.53339941911445,57.247396268171094],[-127.53336311810818,57.24721508530652],[-127.53339380046486,57.24702302885615],[-127.53333550318318,57.24686228223941],[-127.53309237141004,57.24674741993826],[-127.53276472237897,57.24667166165448],[-127.5324447022058,57.24663056540051],[-127.53211610802798,57.2466086262847],[-127.53178263705851,57.246594590638175],[-127.53145007664507,57.246577180392286],[-127.5311251813764,57.246543985197945],[-127.53080980061833,57.246489378326146],[-127.53050128168542,57.2464246012024],[-127.5302348968017,57.24635036276598],[-127.5298745038111,57.24625928550782],[-127.52964596131696,57.24622384001924],[-127.52922448523243,57.246238851674526],[-127.52890666339708,57.24620108430798],[-127.5285994172623,57.246116109316596],[-127.52833871918219,57.24600256455533],[-127.52823168950111,57.24584126375402],[-127.52820676358827,57.2456588262048],[-127.5283047950993,57.24549064823577],[-127.5284569338301,57.245327443862266],[-127.52864304827825,57.245209805071035],[-127.52888744540915,57.24504552322641],[-127.52906013338347,57.24490337786807],[-127.52906099152004,57.24471727641025],[-127.52892282160386,57.24455521891369],[-127.52871798654925,57.244411876081024],[-127.52847528571107,57.244281306292784],[-127.52820757692226,57.24417344857248],[-127.52791602239633,57.24409165229236],[-127.52759919079774,57.24402584469618],[-127.52727062118342,57.24397810975279],[-127.5269438574593,57.243949410470535],[-127.52662389472961,57.243960988215335],[-127.52631295061063,57.24404308501918],[-127.52606243611623,57.24415810779479],[-127.52586729428441,57.244309478914694],[-127.52563579173231,57.24443324758159],[-127.52533435744898,57.24451971535493],[-127.52501225420725,57.24455597672418],[-127.52468508418161,57.24454297092172],[-127.52435475321839,57.24450309635829],[-127.5240372812446,57.24444737688692],[-127.52373568064142,57.24437353549435],[-127.52344188261843,57.24428727131877],[-127.52314714690739,57.24420325947235],[-127.5228426550892,57.24413505485891],[-127.52251468936953,57.24407609071673],[-127.52217698359463,57.24403293340307],[-127.52185864604417,57.244033270294715],[-127.52158253184702,57.244104861696954],[-127.52133452135573,57.24423105646558],[-127.52094030188601,57.24438361163442],[-127.52080543581542,57.24446028694859],[-127.5204992207952,57.244531104572445],[-127.52018299965091,57.244585222185826],[-127.51985917401718,57.24463045905096],[-127.51953423036012,57.24467346602257],[-127.51921684493793,57.24472423170164],[-127.5189147265508,57.244793877021635],[-127.51862566830742,57.24487906459183],[-127.51834430102612,57.244975372634734],[-127.51807164148532,57.245081668384145],[-127.51780955166227,57.24519344619724],[-127.51755909297187,57.2453106938388],[-127.51733947855956,57.24547354581757],[-127.51715374339028,57.245653941404846],[-127.51698317758824,57.24571981600738],[-127.51684679431949,57.24557566196915],[-127.51669561893273,57.24537226459622],[-127.5164478673751,57.24524397338295],[-127.51614094394262,57.245192596764376],[-127.5157897274754,57.24527961865041],[-127.51550006845724,57.24529754446979],[-127.51543736809066,57.24515477841923],[-127.51543425904234,57.2449451821005],[-127.51545199007259,57.24476449137704],[-127.51547701279887,57.2445848373182],[-127.51550827107663,57.24440511111318],[-127.51554682085781,57.244226421563454],[-127.51559261765442,57.244047648148204],[-127.51564473850249,57.243871043596],[-127.51570513440001,57.243694343260955],[-127.51578951093333,57.24352072841404],[-127.5158937217766,57.24335024700315],[-127.51600310590085,57.24317970562964],[-127.51610834306746,57.24300921218964],[-127.51621672488325,57.242839803292114],[-127.51632719529594,57.24267037013078],[-127.51643553077123,57.242499840584664],[-127.51653869118721,57.24232937089548],[-127.51665009804596,57.2421576845977],[-127.51676669453543,57.241985938103454],[-127.51687286434053,57.24181319127531],[-127.51694998451154,57.24163965988513],[-127.51698148344205,57.24146665699972],[-127.51695337968316,57.24128089232716],[-127.51686317842812,57.24109808910084],[-127.51671074076016,57.24094066931323],[-127.51648923133277,57.24081992215701],[-127.51620225182627,57.24072123224387],[-127.51588199554568,57.24064646849159],[-127.51556361195259,57.24059298176416],[-127.51523131269201,57.240554228624426],[-127.51488727020727,57.24053354689986],[-127.51455039468982,57.24053632288288],[-127.51424286913101,57.24057351032963],[-127.51397585518795,57.24066515881825],[-127.51373320970235,57.240795760885554],[-127.51349604673699,57.24093414629554],[-127.51325095390182,57.24105580755308],[-127.51300794898538,57.241177444219915],[-127.51276073583647,57.24129800802278],[-127.51250825856174,57.24141639010973],[-127.51225591258994,57.24153813325895],[-127.51199708056456,57.2416532246642],[-127.51172505677891,57.2417494104366],[-127.51141209669247,57.241806832301826],[-127.51106713926542,57.241815297600034],[-127.51076145570981,57.24176837870094],[-127.51050179646504,57.2416525457454],[-127.51024205033347,57.24153447125867],[-127.5099591831798,57.241434599280495],[-127.50968550464327,57.241331257707834],[-127.50945559091343,57.2412072326759],[-127.509305167771,57.241047539333664],[-127.50918529213963,57.24087404150365],[-127.50902269936272,57.240721214304486],[-127.50875731992264,57.240617775293764],[-127.50844920699987,57.240535006471774],[-127.50820929113179,57.24042006283135],[-127.5080639176193,57.240256947027945],[-127.50795447502509,57.24008444913122],[-127.50787394812019,57.239909376145654],[-127.50782736681879,57.23972718611407],[-127.50788085483681,57.23955841699503],[-127.50814059726925,57.239439960343155],[-127.50844111821294,57.239356906057665],[-127.5085926867669,57.23920382199658],[-127.50860634605841,57.23902430128475],[-127.50865537485794,57.23884773612504],[-127.50874599097057,57.2386740548231],[-127.50880210486348,57.238492923920404],[-127.50871455202909,57.23832353772669],[-127.50845043899133,57.238225688995904],[-127.50810904038107,57.23821841156394],[-127.50777299206429,57.23821555571031],[-127.50746694400279,57.23815854465171],[-127.50718319679635,57.238062040501624],[-127.50692073750413,57.237952959541964],[-127.5066814899754,57.23782791670905],[-127.50641888479812,57.23771547342052],[-127.50617567140881,57.23759495942662],[-127.50601288407755,57.23743652632494],[-127.50597068051444,57.23725989085631],[-127.50595123268572,57.23708187264761],[-127.50593998750963,57.236901518079364],[-127.50593184313456,57.236721127870986],[-127.50592059815585,57.23654077335158],[-127.50590417997977,57.236360478359856],[-127.50589906492871,57.23617781135043],[-127.50589602254425,57.23599512052756],[-127.50588368925807,57.23581365761202],[-127.50584870637168,57.23563581828487],[-127.50577978235577,57.23546509544798],[-127.50566138156364,57.23530166771689],[-127.50549457664016,57.23514664364297],[-127.50529692157652,57.23499757918166],[-127.50508596442987,57.23485315144416],[-127.50487215614774,57.234715482268406],[-127.50462680603604,57.234592748483436],[-127.50436821454936,57.23447577149993],[-127.50412908518021,57.234352965359896],[-127.50394922382716,57.2342081786904],[-127.50385422001709,57.23403327069138],[-127.50378811660799,57.23385466765118],[-127.5037603026256,57.23367450379387],[-127.50370563467412,57.23349689043504],[-127.50350950729647,57.23336013725249],[-127.5032003159626,57.23330091102744],[-127.50287286938713,57.23325198277639],[-127.50256245940851,57.23318828500669],[-127.50225409552156,57.23312344202359],[-127.50194562814639,57.23305635749016],[-127.50163920692215,57.23298812776269],[-127.50133471078887,57.23291651221832],[-127.50103428937554,57.23284260723745],[-127.50073773378931,57.232761931192776],[-127.50044623705014,57.23267783347738],[-127.5001566383339,57.23258922933421],[-127.49986911339077,57.23250060081285],[-127.49958056185505,57.23241198344083],[-127.49929001044929,57.23232563038153],[-127.4989984324349,57.232239288453435],[-127.49870794411359,57.232154054433245],[-127.49841536809697,57.232068843684814],[-127.49812388173893,57.23198474084439],[-127.49783226509697,57.23189727583304],[-127.49753875277648,57.23181431592188],[-127.49723636262584,57.23174266701511],[-127.49692503401955,57.23168120872997],[-127.49660873625106,57.231625411579415],[-127.49628857407191,57.23157638390838],[-127.49596667415122,57.23153634340334],[-127.49563918740557,57.231512060083126],[-127.49530694964083,57.231499040314446],[-127.4949747121021,57.23148601970287],[-127.49464816679401,57.23145948114688],[-127.49431695216472,57.231419542969896],[-127.49398728570019,57.23136613418571],[-127.49370000289727,57.23128309475102],[-127.49348575234178,57.23115886521297],[-127.4933231157755,57.2310026583393],[-127.4931858248314,57.23083158908808],[-127.49304663763134,57.230665025390174],[-127.49291366862725,57.230498390664735],[-127.4927929598738,57.23032713199793],[-127.49266210915951,57.23016159393823],[-127.49249962786014,57.23000874750095],[-127.49229008018797,57.22987213155469],[-127.4920406132081,57.22974830138767],[-127.4917628783696,57.22964385003333],[-127.4914704845777,57.22956198527073],[-127.49116531247783,57.2294982015431],[-127.49084814424067,57.22944576380709],[-127.49052502189211,57.229400119149126],[-127.49019797392108,57.229360123424236],[-127.48987199809659,57.22932123569476],[-127.4895491832296,57.22928343219963],[-127.48922348689493,57.22925126572686],[-127.48889583303901,57.22922248373271],[-127.48856828341525,57.22919594175043],[-127.48824067409663,57.22916827862787],[-127.48791406610799,57.22913948230448],[-127.48758737150699,57.229108444146625],[-127.4872607209781,57.2290785256845],[-127.4869340709598,57.22904860640811],[-127.48660742145218,57.229018686317396],[-127.48628064191475,57.22898540388099],[-127.48595292211785,57.228954373318544],[-127.48562476735849,57.228939040938855],[-127.48528958491892,57.228956296601176],[-127.48495090979415,57.22899040608469],[-127.48462094240845,57.22900872187168],[-127.48431001904572,57.22898310173093],[-127.48400787668356,57.22891702517426],[-127.48371415655244,57.22882731139848],[-127.48343429202087,57.228720624917244],[-127.48317373274493,57.228603630098426],[-127.48293573588862,57.228480774172574],[-127.48271294322169,57.228348777602456],[-127.48250431035233,57.228207652296646],[-127.48230893964919,57.228060771498036],[-127.4821247856662,57.22790927942935],[-127.4819529794894,57.22775540533734],[-127.48181095270266,57.22759446793136],[-127.48169241832508,57.22742429647007],[-127.48157907368886,57.22725406619464],[-127.48144832534304,57.22708963783399],[-127.48127868443595,57.22693798052311],[-127.48105374761016,57.226803763715935],[-127.48081352321539,57.226676445508375],[-127.48060603750095,57.22653754656575],[-127.48045073381039,57.226381242133925],[-127.48031382031539,57.22621800357008],[-127.48019123932868,57.22605011881898],[-127.4800799176175,57.22587874367194],[-127.47997690178681,57.225707274550444],[-127.47988625938542,57.2255345444846],[-127.47982438327074,57.225354763168205],[-127.47977178034685,57.22517375601696],[-127.4797068756403,57.2249962509455],[-127.47960920889415,57.224829205220075],[-127.47945710256515,57.224675105793075],[-127.47924963261896,57.22453620491548],[-127.4790103861536,57.22440663080242],[-127.47876095445926,57.224281655348854],[-127.47851881136444,57.22415771811473],[-127.47827245589187,57.22403158604342],[-127.47801797060843,57.2239100293346],[-127.47775270498185,57.22380428783751],[-127.47747177330636,57.223722263610995],[-127.4771536374819,57.22369670853497],[-127.47680986339857,57.223705071882236],[-127.47647381518327,57.22369877421464],[-127.47614455194295,57.22368006820095],[-127.47581514284535,57.22365800001824],[-127.47548769309613,57.223632545933995],[-127.47516204008109,57.223600344808666],[-127.474837345539,57.223565890087606],[-127.47451260841852,57.223530314052404],[-127.47418882986302,57.22349248443125],[-127.47386503537179,57.223454654197035],[-127.47354025696416,57.22341795524304],[-127.47321552230389,57.223382375994134],[-127.47288786106532,57.22335131286244],[-127.47256114183575,57.22331799632868],[-127.47224322151006,57.223271128072874],[-127.47195384542006,57.22318470322331],[-127.47166447063653,57.223098277739666],[-127.47133681308802,57.22306721073233],[-127.47101022681221,57.22303725186577],[-127.4707119107446,57.222961013762735],[-127.47043342784177,57.22286101130345],[-127.47018324818038,57.222742754449506],[-127.46997469205087,57.22260160979041],[-127.46981318898882,57.222444242517284],[-127.4697711259469,57.22226647694666],[-127.4697630426105,57.222082724841236],[-127.46966141198548,57.22191908013506],[-127.46944478984719,57.22178363033174],[-127.46921469384037,57.2216483314575],[-127.4690531119219,57.22148872234306],[-127.46889266155307,57.22133134234851],[-127.4686428405539,57.22122204676614],[-127.46834118599872,57.22113911509099],[-127.46806077962239,57.22104249249794],[-127.4678360956314,57.22091273563177],[-127.46763674413796,57.22076812144667],[-127.46743230881914,57.22062580597566],[-127.46722278969484,57.22048578919422],[-127.46703371583152,57.220338816985],[-127.46671079723137,57.22002519606041],[-127.4672552658159,57.21990026799013],[-127.46756255527568,57.21983292603901],[-127.46784979687195,57.2197837440627],[-127.46816881828217,57.21975214078368],[-127.46852196792715,57.21969212900441],[-127.46884370043347,57.21965040473026],[-127.46915442844764,57.21959198833387],[-127.46945410860333,57.21951575938826],[-127.46974620059936,57.2194306470405],[-127.47003284550127,57.21933886927305],[-127.4703184448755,57.21924710261531],[-127.47060613118245,57.21915531187431],[-127.47088841325741,57.219057976278],[-127.4711516609096,57.21895076512158],[-127.47139531423298,57.21881911193665],[-127.47158161282778,57.21859730299808],[-127.47148407350234,57.218459396939416],[-127.47129279369969,57.21838980418033],[-127.47131538681288,57.21824942637784],[-127.47136688645313,57.21813338536747],[-127.47150236609698,57.21801864204925],[-127.47143244055638,57.2176820103131],[-127.47143154354616,57.21747015333653],[-127.4716105698998,57.21743675253404],[-127.47189569400594,57.217332656825135],[-127.47225659154581,57.21728599949669],[-127.47258329813921,57.21723972591481],[-127.47291472417287,57.21720797126002],[-127.47324833405918,57.21717955414491],[-127.47357219817584,57.217140036015586],[-127.473874439601,57.217077219818634],[-127.47415074209252,57.21698667036376],[-127.4744139663698,57.216879452817224],[-127.47466644275279,57.21676226694004],[-127.47491348790214,57.21663841584291],[-127.47515840012461,57.21651346732722],[-127.4754055284394,57.216391856331576],[-127.47565272498794,57.21627248607364],[-127.475896734548,57.216150909306805],[-127.47613755710776,57.21602712604958],[-127.47647430530957,57.21583836362581],[-127.47662345371484,57.21578287318378],[-127.47686534231488,57.21566019753033],[-127.47711145888128,57.215539715678666],[-127.47736714688372,57.21542585123629],[-127.4776398977593,57.21532412450197],[-127.47790624307041,57.215217985576636],[-127.47815551232107,57.21509858711639],[-127.47840057718382,57.214978114685955],[-127.47864138427379,57.21485432693336],[-127.47887691625093,57.21472835637],[-127.4791050150764,57.21459798543915],[-127.47933101415781,57.214466516854664],[-127.47955695181565,57.21433392758046],[-127.4797797024003,57.2141991319746],[-127.47999615045117,57.21406216529136],[-127.48020206648407,57.213920833427885],[-127.48039439500857,57.213776291993966],[-127.4805007497384,57.21363272304724],[-127.48059362278684,57.213435499086046],[-127.48072108386205,57.21327487631756],[-127.48084818060498,57.21310528964387],[-127.4809004195626,57.21292870317006],[-127.48094742797593,57.21275105490498],[-127.4809902932221,57.212573453536564],[-127.48102999941044,57.2123947669422],[-127.48106765045286,57.212216103618594],[-127.48110425719037,57.21203745212569],[-127.48113981963768,57.21185881246429],[-127.48117642569699,57.21168016100025],[-127.48121403200831,57.211500377235545],[-127.48125482332046,57.2113227993992],[-127.48129866955387,57.21114406599718],[-127.48135293168858,57.21096633566266],[-127.48141757644362,57.21078960875741],[-127.48148533577579,57.210612846571735],[-127.48151140937345,57.21042983046248],[-127.48159497034884,57.210259615253],[-127.48162017270468,57.21008109297529],[-127.48161846552651,57.20990287544134],[-127.4815959863294,57.2097237721673],[-127.48156415186789,57.20954365386687],[-127.48152926255534,57.20936469116448],[-127.48150157106993,57.20918452599214],[-127.4814894053517,57.20900418503998],[-127.48148656826353,57.2088237384822],[-127.48148575900467,57.208642148002376],[-127.481476708532,57.20846177185153],[-127.481450148495,57.208283835961446],[-127.48138448086547,57.2081130688134],[-127.48120349807057,57.20796042201233],[-127.48103885233111,57.20780198513507],[-127.48089768722221,57.207634314431914],[-127.48076990705957,57.20746425015067],[-127.48066786574073,57.20726362791674],[-127.48082697469647,57.20714524477578],[-127.48090008957145,57.20697290666151],[-127.48093043558846,57.20679320577169],[-127.48095141000994,57.20661248999844],[-127.48097451516772,57.206432871107744],[-127.48098931944575,57.20625334620354],[-127.48099378508307,57.206073938358095],[-127.48097959507167,57.20589474172528],[-127.48096847663736,57.205714389363216],[-127.48097811148774,57.20553492307558],[-127.48099504627679,57.205356495154156],[-127.48101813390457,57.20517687661607],[-127.48104123788343,57.204997257911],[-127.48106739644737,57.20481648366053],[-127.48086484621435,57.2044275540082],[-127.48076192788672,57.20425720882422],[-127.48068574240911,57.20408207709265],[-127.48066328755661,57.203902974269475],[-127.48066566699279,57.203723590384755],[-127.48067841736082,57.203544089139704],[-127.48069115104245,57.203364588105714],[-127.48069250316912,57.20318521592042],[-127.48066797796243,57.203006136660655],[-127.48059490994441,57.20283096979088],[-127.48052184259471,57.20265580290378],[-127.48046628297392,57.20247819590761],[-127.4804386447789,57.202299151949575],[-127.48045863525536,57.202119568990035],[-127.48049734928884,57.201942016101725],[-127.48052873688333,57.201762304184655],[-127.48053630202844,57.20158286190914],[-127.48053351329376,57.20140353684423],[-127.48053072458521,57.20122421180378],[-127.48054138744534,57.20104473453966],[-127.48058626889227,57.200865990970605],[-127.48066342767757,57.20069136596404],[-127.48071351996026,57.20051368438281],[-127.48072936680863,57.20033414850683],[-127.48073900142602,57.200154682974976],[-127.48074958896534,57.19999986818834],[-127.4807517502625,57.19997518221239],[-127.48076345535945,57.19979569328718],[-127.48077516034674,57.1996162043857],[-127.48078686522432,57.199436715507616],[-127.48079752638687,57.19925723846756],[-127.48080820401456,57.19907776126367],[-127.48081472372483,57.198898331154275],[-127.48082954240488,57.1987188071145],[-127.48087337619647,57.19854007557899],[-127.48091934006275,57.1983624409081],[-127.48096425992667,57.198184818061],[-127.48100292431637,57.198006145070885],[-127.48103123550452,57.19782758931916],[-127.48104500919432,57.19764807721796],[-127.48098272289127,57.19745709563467],[-127.48100189412109,57.1973100307636],[-127.48105273876955,57.197232107735665],[-127.48163977402979,57.19719967678602],[-127.48196846866917,57.19718250126884],[-127.48229829328343,57.197167554068315],[-127.48262805770561,57.197151485739816],[-127.482956534588,57.197128705319145],[-127.48328147967464,57.19709475436097],[-127.48359847468492,57.19704295714837],[-127.4839033781675,57.196973360722275],[-127.48419849392337,57.196891543904705],[-127.48448717976316,57.19680419450893],[-127.48477479388279,57.1967157356567],[-127.48506666143554,57.196630590797646],[-127.48536717383912,57.196554314913385],[-127.4856720702195,57.19648471439084],[-127.48597918294767,57.1964184508974],[-127.48628623457304,57.19635106639214],[-127.48659005722197,57.19628035492828],[-127.4868895203248,57.19620408742787],[-127.4871846672798,57.19612338440357],[-127.48747756847929,57.19603822233845],[-127.48776516994344,57.195949756963174],[-127.48804848201782,57.19585797681799],[-127.48832636367234,57.195759531985544],[-127.48859574439622,57.19565557842402],[-127.48885339611194,57.195542790003934],[-127.48910041623188,57.195423396254604],[-127.48938986193048,57.195329301373135],[-127.4895538856515,57.195179464518354],[-127.48991789033451,57.195085640258235],[-127.49066223946942,57.19526436184396],[-127.49035243726131,57.19502127752445],[-127.49029378941168,57.19484483151195],[-127.49025059114103,57.19466596751243],[-127.4902322648846,57.194487941106466],[-127.49033857003815,57.194318583369714],[-127.49046978924498,57.19415118358563],[-127.49057086464735,57.19398076430466],[-127.49058864574735,57.193798963576725],[-127.49067424405995,57.19362984161669],[-127.49083483646581,57.19347219549093],[-127.49101006717358,57.19331774521337],[-127.49119584953819,57.19316877926958],[-127.49135334069413,57.19301116787688],[-127.49149720743132,57.192849227777856],[-127.49163584533267,57.192686226189565],[-127.49176818396451,57.19252105436472],[-127.49189322360789,57.19235484470327],[-127.49199847209194,57.192185497795286],[-127.49207970187675,57.1920108199761],[-127.49216195775875,57.19183613041355],[-127.49224735359749,57.191662525959806],[-127.49232651092028,57.19148787167914],[-127.49237344005168,57.19131022222263],[-127.49238818507804,57.19113069810236],[-127.49239466576927,57.19095126831518],[-127.49240424338896,57.190771803209245],[-127.49242188335246,57.19058664124938],[-127.4926357814434,57.19046873974826],[-127.49292082239626,57.1903690822896],[-127.49309943312959,57.19022243754702],[-127.49320035545759,57.19004865531925],[-127.49325874355948,57.18987311677643],[-127.49330045569434,57.18969440573236],[-127.49334112410396,57.1895157066138],[-127.49339011621775,57.189338033419055],[-127.49344013464292,57.189160348503805],[-127.49348912584324,57.18898267531995],[-127.49352358239886,57.1888040471671],[-127.493518663752,57.18862474776961],[-127.49351423501386,57.18856426585015],[-127.49350485782193,57.18850944531112],[-127.49346005479032,57.188449424508065],[-127.49351343939857,57.18843760508356],[-127.49353990828577,57.18839918972417],[-127.49350595757436,57.18837827901468],[-127.49347963192751,57.18834046663184],[-127.49348041379302,57.18828104618712],[-127.49338379752986,57.188060197179645],[-127.49353930259518,57.18795865468979],[-127.49377555963292,57.187830407232475],[-127.4940193305723,57.18770879932473],[-127.49423675247012,57.18757516136002],[-127.49439730484484,57.18741751158592],[-127.4945547154871,57.18725877655544],[-127.49474285308078,57.18714452896047],[-127.49502051713887,57.18701580590044],[-127.49529502860813,57.18691290063468],[-127.49554207705836,57.18679573625768],[-127.49572992388141,57.18664786140885],[-127.49591247142642,57.18649668400071],[-127.49611404075083,57.18635537743975],[-127.4962704132333,57.18619665221917],[-127.49642992478468,57.18603901186293],[-127.4965842081954,57.185880310183215],[-127.49674269046652,57.185722681233955],[-127.49691267890653,57.18556828328683],[-127.49708477964424,57.185414981907385],[-127.49729159294779,57.18527585543359],[-127.49747839891293,57.185127989999955],[-127.49763269087263,57.18496928700321],[-127.49779430536583,57.18481274189074],[-127.49798843092823,57.18466703382687],[-127.49819309601168,57.18452568859296],[-127.49839460274225,57.184383258259956],[-127.4985866540235,57.18423757307512],[-127.49887314192027,57.18415021649617],[-127.49911682943528,57.18402747895896],[-127.49919304589639,57.1838584595641],[-127.49917042872313,57.18367712174517],[-127.49914478648665,57.183498060573804],[-127.49908522367843,57.18314003321107],[-127.49950543013817,57.18287178690089],[-127.49974492416041,57.18274797531993],[-127.49994748622485,57.182606651476476],[-127.50013108489043,57.18245657714184],[-127.50035050883912,57.18232290598864],[-127.5005730879811,57.18219031922018],[-127.50078087046592,57.18205005513076],[-127.50100448966128,57.181917455681855],[-127.50128348301152,57.18182457490818],[-127.50158077813278,57.18174941884474],[-127.50183825422639,57.18163548557668],[-127.50209895678795,57.18152487763287],[-127.50240483418231,57.18145746785096],[-127.5027260330324,57.181411179660444],[-127.50305582910146,57.18139954188693],[-127.50338565344416,57.18141480622089],[-127.50371318853558,57.18142449120729],[-127.50384066657571,57.18150709771353],[-127.50429057484777,57.18157478505136],[-127.50462401259166,57.18157655307235],[-127.50493635612801,57.18162115991552],[-127.50523463852797,57.1817029199262],[-127.50551571778827,57.18179496610438],[-127.5057556382919,57.181919993870046],[-127.50603879009387,57.18201201510287],[-127.5063379282737,57.18208927894155],[-127.5066251340284,57.18217901029874],[-127.50693117444743,57.18224722551124],[-127.50724801814813,57.182300742854295],[-127.50756944081218,57.182312730693894],[-127.50790209146017,57.18229432201741],[-127.50822333478531,57.182249140757555],[-127.50855031679077,57.18221846512281],[-127.5088786825824,57.1822225228265],[-127.50920314568133,57.1822591329463],[-127.50952661040569,57.18229687476825],[-127.50985577166759,57.18232109834639],[-127.51017438066418,57.18236674146256],[-127.51043043604942,57.182480364829885],[-127.51073758350466,57.18252389706358],[-127.51105330329588,57.18257517632569],[-127.51132553935142,57.18267852224426],[-127.51154307082327,57.18281276633906],[-127.51175044847443,57.18295161139928],[-127.51202667938557,57.183051546829454],[-127.51229184591234,57.18315945649299],[-127.51251852879875,57.18328910933979],[-127.51272900893844,57.18342791707919],[-127.5129344571607,57.18357014566079],[-127.51314084502685,57.183710121128954],[-127.51334719014709,57.183848975823494],[-127.5135556508228,57.183988926710335],[-127.51376720945356,57.18412884143122],[-127.51397562891312,57.184267671215245],[-127.51418409416142,57.18440762114459],[-127.51439251664742,57.18454645029359],[-127.51460202813278,57.184686387503994],[-127.51481045364898,57.18482521601622],[-127.51501892497906,57.18496516467384],[-127.51522735352182,57.18510399255098],[-127.51543785344165,57.18524279612106],[-127.51565038043799,57.18538045491107],[-127.51587001227911,57.18551466808975],[-127.51609271443499,57.1856477243543],[-127.51631038470578,57.18578420155509],[-127.5165662593687,57.18589221088448],[-127.51680261270876,57.18600380912186],[-127.51692536694523,57.186096547259076],[-127.51702894359578,57.186176056051394],[-127.51718415834652,57.18622582019789],[-127.5172918252268,57.18632994286448],[-127.51739720088713,57.18642848715353],[-127.51756398756572,57.18648260050401],[-127.5177262914445,57.18647623283602],[-127.51775242982583,57.186404186818045],[-127.51763885649318,57.18633376241311],[-127.51746147706457,57.186247263728426],[-127.51725591829167,57.18618126940607],[-127.51718596020909,57.18606213648529],[-127.5172411451043,57.185965092055596],[-127.51735575730704,57.18587856778695],[-127.51753302688579,57.18575320300147],[-127.51774210395737,57.185620742910736],[-127.51796019158418,57.18548033103384],[-127.51817535867254,57.1853444366104],[-127.51833373334894,57.18518678175983],[-127.51849630739348,57.1850301989303],[-127.51868405697653,57.18488229131699],[-127.5188801898509,57.184736528006304],[-127.5190837350456,57.184595162194576],[-127.51931997470312,57.18446910985027],[-127.51951739627941,57.18433005646659],[-127.51967163818814,57.18417244803225],[-127.51992690151715,57.184056262269536],[-127.5201642227079,57.18393131678563],[-127.5203930409085,57.18380086485305],[-127.52059343469948,57.183658412336925],[-127.52077793968063,57.18350717650159],[-127.52097310334509,57.18336366325648],[-127.52124130967863,57.18326077605184],[-127.52154483053812,57.18318662273675],[-127.52185609213613,57.183124709357784],[-127.5221660425138,57.1830560846311],[-127.52241719588591,57.182941062756214],[-127.52251927635277,57.182773969485446],[-127.52253483097584,57.18259219008096],[-127.5227321421657,57.182450891125185],[-127.5229873847493,57.182334699539894],[-127.52325864676034,57.18223065156018],[-127.52351079002025,57.18211449504586],[-127.52377886368681,57.182008241168184],[-127.52406418979272,57.18191972125503],[-127.52432984157828,57.18188299502925],[-127.5245456090414,57.181711211736896],[-127.52469130161398,57.181548092136865],[-127.5248833444457,57.18140460937607],[-127.52515455013034,57.18129943708007],[-127.52543227547933,57.18120203498194],[-127.52571211366552,57.18110572860533],[-127.52598551845136,57.18100389182596],[-127.52622918836876,57.18088334497914],[-127.52643264135857,57.18074084768647],[-127.52664359602007,57.180604988338544],[-127.52689166841097,57.180491114691975],[-127.52707467360374,57.18043292844102],[-127.52720787341737,57.18034617833878],[-127.52757754216034,57.1801143013431],[-127.52783500275939,57.180002558138334],[-127.52811689572064,57.17990622251723],[-127.52841071442414,57.179823198578404],[-127.52874753067246,57.179754243891125],[-127.52896722856671,57.17968217416669],[-127.5288007651958,57.17950588557696],[-127.52863979835061,57.17933737938201],[-127.52851715565176,57.17916954593513],[-127.52841407682823,57.17899924173671],[-127.52834497540874,57.178824056379895],[-127.52829338430311,57.17864642436953],[-127.52821600609865,57.17847133576183],[-127.52809341270498,57.17830462248027],[-127.5279810784049,57.178135547260574],[-127.52790886804513,57.17796039816583],[-127.52785107175441,57.177782838656604],[-127.52778709577203,57.17760647234575],[-127.5277005071209,57.17743373320915],[-127.52759231596325,57.17726460939987],[-127.52746864149599,57.17709678741975],[-127.52733372859515,57.17693245958017],[-127.52718653438974,57.17677163802935],[-127.5270086576737,57.17662014253639],[-127.5268154488018,57.17647330980006],[-127.52661309946068,57.176331067446114],[-127.5265407485803,57.176229903797584],[-127.52698602091273,57.17623367119038],[-127.5273036320763,57.17617727510537],[-127.5275676042972,57.17607330319391],[-127.5277952181011,57.175940610369885],[-127.52800498109883,57.175801399960974],[-127.5282031014014,57.17565559948169],[-127.5284106132873,57.17551193084088],[-127.52852626892223,57.17534915845226],[-127.52856782895411,57.175171558790915],[-127.52857709920438,57.174988731853055],[-127.52856990438184,57.17480833941678],[-127.52851210978176,57.1746307806219],[-127.5284358097292,57.17445680112305],[-127.52836464713222,57.17428164057189],[-127.52830369743447,57.17410299769347],[-127.52825313922106,57.173925354300245],[-127.52824189700128,57.17374725127251],[-127.52833749650779,57.173574624951286],[-127.52839354002428,57.173396856228585],[-127.52841535997729,57.17321724572649],[-127.52838135601343,57.17303940894401],[-127.52830710078766,57.17286428474272],[-127.52819783230831,57.17269405376219],[-127.52802974956849,57.1723462760075],[-127.52852910021673,57.17227990526647],[-127.52870175833546,57.17206714372152],[-127.52889826263404,57.171933691912656],[-127.52923104923006,57.171869266583464],[-127.52954418622564,57.17180507033269],[-127.52985852734918,57.171745343110366],[-127.53015887312887,57.17167232731651],[-127.53042487570345,57.17156832576719],[-127.53067472376748,57.17144881926177],[-127.53093207238673,57.17133595024299],[-127.5312075522495,57.171236319953444],[-127.53149266326993,57.17114442302006],[-127.5317864357323,57.17106251268398],[-127.53208454081022,57.17098503477544],[-127.53234288018773,57.17087103035031],[-127.53244847334445,57.17071621945993],[-127.53269102706264,57.17056989127379],[-127.53295263639355,57.17046033116198],[-127.53322594602251,57.170358480062],[-127.53351000287606,57.170266591021964],[-127.53381237087427,57.17019242200219],[-127.53410176878683,57.17010495286131],[-127.53445892176016,57.17000323600837],[-127.53461869130093,57.16988365835025],[-127.53482187526966,57.16973666741354],[-127.53504323586247,57.16960403529849],[-127.53531909650805,57.16951448046324],[-127.53562809440665,57.16945143899872],[-127.53594879333617,57.16939610608375],[-127.53626414750137,57.16933635131362],[-127.53656982262156,57.16926774179963],[-127.53687113405226,57.16919357801977],[-127.53716272122541,57.16910943916667],[-127.537431737264,57.169004266717046],[-127.53772850247172,57.16892006567343],[-127.5380576487541,57.16892067666665],[-127.53837433579987,57.16897187716551],[-127.53865540125484,57.16906385121662],[-127.53892770571953,57.16916937949488],[-127.53920804612764,57.16926920774058],[-127.53950603546876,57.169344166155796],[-127.53983248627445,57.1693291108697],[-127.54015538216164,57.169277104588794],[-127.54046167079936,57.16919838991461],[-127.54068853322462,57.169074650956084],[-127.54084149387263,57.1689147907845],[-127.54096296840304,57.16874409194812],[-127.54105538644961,57.16857149366689],[-127.54113215973669,57.168395716893755],[-127.54123401325057,57.16822637016778],[-127.54141008683877,57.16807520457831],[-127.5415986626524,57.167926133229884],[-127.54175161492303,57.16776627213117],[-127.54188055652244,57.16760108926852],[-127.54199172289348,57.16743163212119],[-127.54209766273327,57.16726111558733],[-127.54221094110679,57.16709275432454],[-127.54232835620729,57.16692434415563],[-127.54244581536051,57.16675705434078],[-127.5425652972439,57.16658861958492],[-127.54270366812747,57.16642668758482],[-127.54289331858796,57.16627872268311],[-127.54311565742603,57.166146065129915],[-127.5433274251239,57.166007927177674],[-127.54343970955217,57.1659438268472],[-127.54384851211516,57.16578990930299],[-127.54405816128414,57.165650674205494],[-127.54431147456093,57.16554230997334],[-127.54458364769378,57.165439327194214],[-127.54478704080985,57.16529904387884],[-127.5449892994671,57.165156531715844],[-127.54522539588227,57.16503155467024],[-127.54551581662243,57.16494516870914],[-127.54589339108938,57.16489025931725],[-127.54599015422792,57.16474899343367],[-127.546192495894,57.164608720338066],[-127.54657195698833,57.16452352043984],[-127.5467684330144,57.16444272725689],[-127.54705564403157,57.16435413386834],[-127.54733423362046,57.16425667415817],[-127.54750532286207,57.16416272879],[-127.54790903768291,57.16416579438268],[-127.54817187394373,57.16406291459917],[-127.5484249101192,57.16394781972486],[-127.54856137232333,57.163841952554804],[-127.5486266502513,57.16379297730686],[-127.5485866679095,57.163750854238316],[-127.54854348383788,57.163706527159185],[-127.54854202233349,57.16361910882691],[-127.54857293382331,57.16353915367857],[-127.54861411456216,57.16345683489494],[-127.54869770792075,57.16342557809028],[-127.54889041092397,57.16343114104988],[-127.54902973605698,57.16344742517233],[-127.54933875180367,57.163514383046206],[-127.54966596435533,57.1635194710665],[-127.55003455044566,57.16352406754321],[-127.55032709415566,57.16354189578785],[-127.55064394765719,57.16349553961338],[-127.55091729662094,57.163397013360054],[-127.55123278824658,57.16334282510922],[-127.55154631756302,57.163290901327514],[-127.55186784909442,57.16325793826014],[-127.55219578563398,57.16328094685979],[-127.55252286146161,57.163308448750904],[-127.55285070805766,57.16332921484439],[-127.55317780131601,57.163356714900914],[-127.55350726330666,57.1633662504447],[-127.55383918439463,57.163360062320365],[-127.55416671418527,57.16337298209311],[-127.55448912858323,57.16341286521764],[-127.5548188185919,57.16342799961237],[-127.55514927875845,57.1634363981818],[-127.55547981344296,57.163447036974844],[-127.55581075432515,57.163441976487256],[-127.55614025973784,57.16342684350299],[-127.5564471713607,57.16339068030646],[-127.55675708226134,57.16332645634291],[-127.55708065356069,57.163241891367036],[-127.55738197326595,57.163195703827014],[-127.55756948765861,57.163149751085534],[-127.55802179284281,57.163126423801856],[-127.55834295307062,57.16308448137142],[-127.55860875749828,57.162979302922274],[-127.55887871428037,57.16287407439041],[-127.55911473481595,57.16274907267064],[-127.55933381126123,57.16261418394906],[-127.55954229867172,57.16247381636309],[-127.55971202227143,57.162321580411316],[-127.5598449597824,57.162155210700355],[-127.56002313747571,57.162007357326594],[-127.56029090720618,57.16189990999059],[-127.56056737674557,57.16180244695487],[-127.56074643918313,57.16165121909818],[-127.56084913947227,57.161479604644875],[-127.56099375719947,57.16132094106779],[-127.56118861177106,57.16117624979825],[-127.5613855334029,57.16103153353771],[-127.56158245354834,57.160886816996154],[-127.56177730369247,57.16074212489596],[-127.56196896658464,57.16059522865741],[-127.56214167540422,57.160440711923215],[-127.56218344535723,57.16027206679539],[-127.56238340738031,57.160126191709146],[-127.56260348330517,57.15999128550501],[-127.56286922547957,57.1598849780119],[-127.56307675051083,57.15974685819639],[-127.56333942441009,57.159641707405044],[-127.56359880314652,57.159532111620365],[-127.56376004106713,57.15937548805286],[-127.56389613657873,57.15921131840598],[-127.56398119722212,57.1590387917054],[-127.56416973226412,57.15889192966151],[-127.56425679711305,57.15871825783659],[-127.56439181652553,57.15855297961219],[-127.56461835585294,57.15842471842469],[-127.56488176800686,57.1583128298119],[-127.56514203859619,57.15819985731862],[-127.5653539117747,57.158067286625595],[-127.56547003445297,57.157895507839086],[-127.56569665779612,57.157769485691006],[-127.5659675843517,57.15766423063534],[-127.5662525861252,57.15757449988319],[-127.56655158835527,57.1574980522965],[-127.5667917039976,57.157372987423045],[-127.56709200423063,57.157303248841146],[-127.56741639973679,57.15726572867679],[-127.56774307544399,57.15723378519765],[-127.56806756136871,57.157198504261856],[-127.56838420351072,57.15714874403906],[-127.5686897239867,57.15708006005208],[-127.56899308336239,57.15700915934897],[-127.56929639575911,57.15693713752485],[-127.56960195878149,57.15686957183664],[-127.57021870289529,57.156745580489094],[-127.57080030923942,57.15669823470808],[-127.57113007215867,57.15669090695101],[-127.5714602776068,57.156694782758265],[-127.57179086710636,57.15670762088914],[-127.57211969356565,57.156728326205695],[-127.57244538026524,57.156747947512926],[-127.57276431108679,57.15670375389994],[-127.57309592697229,57.15671657638093],[-127.57340937249722,57.156664600414544],[-127.57373726445276,57.15663711108902],[-127.57404830166061,57.156577315772076],[-127.57435705614297,57.15651194234667],[-127.57467930700915,57.156473308878205],[-127.57500842292315,57.15645028547784],[-127.57533718652843,57.15644408008962],[-127.57566328684375,57.15647377713671],[-127.57598999498526,57.156442933479426],[-127.57638519784527,57.156366423695964],[-127.57647761560861,57.15624872741058],[-127.5766351746146,57.15613024502722],[-127.57698055058948,57.156049850760326],[-127.57727949111063,57.15599804047639],[-127.57760856148872,57.156024333856465],[-127.57792833500669,57.15607652108766],[-127.57816426109038,57.15612747838745],[-127.57844094605764,57.156112926387515],[-127.57889658124355,57.1560468885874],[-127.5792164323583,57.156000426021535],[-127.5795606653974,57.15599290200564],[-127.57985927883634,57.15593324290855],[-127.58015712294703,57.15585453585995],[-127.58045167048289,57.155771384100674],[-127.58075504394742,57.15570157658011],[-127.5810682694499,57.15564510082102],[-127.5813847432654,57.15559194791041],[-127.58170019036585,57.1555388066542],[-127.58200665377105,57.155468958783835],[-127.58232476828057,57.15543035637686],[-127.58265623761115,57.155439793340875],[-127.58299506814286,57.15547716465629],[-127.58321522439189,57.15549691660855],[-127.5836066524819,57.15538007537984],[-127.5839331300464,57.155343609617546],[-127.58405970739274,57.15535216383647],[-127.58421396590354,57.155354777420925],[-127.58436689840838,57.15532489861497],[-127.58446982201518,57.15533710219411],[-127.58455361528377,57.15536186843361],[-127.58483375846586,57.15545599550982],[-127.58469156785875,57.15529517872373],[-127.5847058371223,57.15511452860443],[-127.58467210467356,57.15492437194076],[-127.58463154349874,57.15469394302133],[-127.5845086109977,57.15457324769121],[-127.58433534900111,57.154436347968684],[-127.58426496432689,57.15426008747502],[-127.58429069430125,57.15408154053671],[-127.58439542968073,57.15391212430869],[-127.58452507420331,57.153744647858865],[-127.58465476389549,57.15357829171384],[-127.58478868128303,57.15341412611252],[-127.5849006890108,57.153245742273796],[-127.58496575528827,57.15306783906807],[-127.58500892918713,57.152885717551754],[-127.5851012960406,57.15271757185956],[-127.58524078724412,57.152563426975355],[-127.58551220242016,57.15244691505368],[-127.58567383068981,57.15230258980862],[-127.58566514397094,57.15211773464737],[-127.58574693431312,57.15194411204212],[-127.5858505390182,57.151772466547094],[-127.58596042294582,57.151602986698755],[-127.58607365331244,57.15136396582857],[-127.58614844312919,57.15124647665041],[-127.586271397489,57.15109253149624],[-127.58627327973699,57.150913153040875],[-127.58627513216526,57.150732653998965],[-127.5862976938733,57.15055302449072],[-127.58635349799295,57.150376354255556],[-127.58640379905862,57.15019190403683],[-127.58646739379718,57.15000392946466],[-127.58653009534875,57.14984399001803],[-127.58662972394893,57.14967687623647],[-127.58677518638113,57.14951705247397],[-127.58694046968759,57.14936147165931],[-127.58711720943859,57.1492079933929],[-127.58751341736874,57.14900813013641],[-127.5876497313001,57.148777795396846],[-127.58764348894329,57.148676983864775],[-127.58761949270341,57.148571904226294],[-127.58761197878587,57.14839039826312],[-127.58763016529946,57.14820521706521],[-127.58762576139289,57.14802367335484],[-127.58747986842174,57.14787299441576],[-127.58727551638823,57.147734235391454],[-127.58704451639109,57.14760140468418],[-127.58680638173954,57.14747090220835],[-127.58658154193017,57.14733687494706],[-127.58635881780488,57.147203942607646],[-127.586101134828,57.147051256955756],[-127.5859651779116,57.1469901334269],[-127.58569714654283,57.14693733890955],[-127.58523798924881,57.146914887638204],[-127.5849754770675,57.146920315050956],[-127.58473631905717,57.14691536989372],[-127.58462506152271,57.146876364728556],[-127.58415765306874,57.14660403386541],[-127.58391782033192,57.14648251475228],[-127.58364772999765,57.14637929754558],[-127.58337353538914,57.146277250523575],[-127.58311035296344,57.146166101750914],[-127.5828201993638,57.146053037362904],[-127.58254640417648,57.145935290307236],[-127.58234551370165,57.14580432894301],[-127.58227094719743,57.14565165976744],[-127.58230822953271,57.14547745833421],[-127.5824051206635,57.145293567067235],[-127.58250717174101,57.14510961322848],[-127.58258782687663,57.144933765319095],[-127.58268202166711,57.14475999525102],[-127.58272231851564,57.14458351532389],[-127.58270256153021,57.144405521154226],[-127.58265898924098,57.14422669460573],[-127.58254647619218,57.14390634076909],[-127.58221057710341,57.143787103895],[-127.58164037115053,57.14347901867366],[-127.58105494361362,57.143202502394495],[-127.58069312629682,57.14300622903331],[-127.58044429843399,57.14284109554977],[-127.58030828324827,57.14267795964167],[-127.58039797846395,57.142570382849364],[-127.5805037712612,57.142402079187605],[-127.5805124430909,57.14218562835268],[-127.58071686407045,57.14202621968785],[-127.58095137203124,57.14184402726285],[-127.58115507065655,57.141692473392744],[-127.58144118201363,57.14163296128689],[-127.5816718494944,57.141558426496424],[-127.5821738586718,57.141417830664544],[-127.58243978373993,57.141119795749255],[-127.58254620223396,57.140991837538465],[-127.58246770286532,57.1408190394495],[-127.58242831680084,57.14064128360314],[-127.58239611254035,57.14046231979739],[-127.58238044776839,57.14028315562394],[-127.58238752441996,57.140103715944456],[-127.58240182856285,57.139924188719625],[-127.58240679145922,57.139743653733454],[-127.58241481739829,57.13956196069654],[-127.58242180131703,57.1393802803082],[-127.58240406952672,57.139201141329785],[-127.58233802466424,57.13902931350216],[-127.58218553911215,57.138867500588034],[-127.58197693474024,57.13872430268963],[-127.58174910002819,57.138591426045515],[-127.58150590898286,57.13846209787717],[-127.58124480668816,57.13834980055543],[-127.58096207395329,57.13826466762897],[-127.58065399124459,57.138216832603554],[-127.58032427692257,57.13819616165416],[-127.57998563761119,57.13818456552918],[-127.57965178935439,57.138163942902985],[-127.57933346492527,57.13811847059314],[-127.5790228108341,57.1380583323094],[-127.57871794456278,57.13798803470502],[-127.57841693735101,57.137910964012306],[-127.57812095297655,57.137830469073705],[-127.57783297894063,57.13774315095525],[-127.57755491129988,57.13764562393374],[-127.5772828330379,57.13754241921707],[-127.5770187783996,57.13743351228009],[-127.57676278051028,57.13731890277343],[-127.57648288164474,57.13722700046782],[-127.57617125992581,57.13716798822121],[-127.57585172190028,57.13711803842727],[-127.5755248656409,57.137065934238315],[-127.57527544440076,57.13696021024425],[-127.57510442138397,57.13679973433223],[-127.5750302070586,57.13662912304922],[-127.57507343908337,57.13644812764121],[-127.57510742263037,57.13626836474319],[-127.5751217759441,57.136088838626385],[-127.57512370958086,57.13590946233067],[-127.57512147941905,57.135729015324465],[-127.57510998484443,57.135549801041236],[-127.57505615176751,57.135372218395204],[-127.57505292612096,57.135192904425836],[-127.57506107792938,57.13501345325423],[-127.57506194051017,57.13483296906794],[-127.57502877966192,57.13465513718172],[-127.57494607148057,57.134479023847426],[-127.57495538689537,57.134302921611265],[-127.57501219887462,57.134125125585555],[-127.57508559282115,57.13394825049916],[-127.5751944019911,57.13377767391413],[-127.57527211253458,57.13360523049663],[-127.57522838659285,57.13342192150387],[-127.57520971189624,57.13324391510542],[-127.57534917204252,57.13308978300854],[-127.5755718800282,57.132948097783135],[-127.57578118861917,57.132807694824095],[-127.57601269709721,57.132679354080715],[-127.57618635753784,57.13252705021821],[-127.57640055185982,57.13227897574514],[-127.57643241250017,57.13209811761153],[-127.5763684275215,57.131925142316895],[-127.57624774854852,57.13175621426569],[-127.57613224624099,57.13158722365173],[-127.57601264058808,57.131419403447644],[-127.57583182732563,57.13127137804723],[-127.57560208325363,57.13114075715142],[-127.57537338246503,57.13101012329583],[-127.57513966224964,57.13088291247697],[-127.57489384763363,57.13076369380692],[-127.57462689230475,57.130658181064746],[-127.57437301363689,57.130543542522574],[-127.57412006972217,57.13042665034382],[-127.5738671733073,57.13031087808217],[-127.57361423246701,57.130193984943695],[-127.5733961087424,57.13011926792353],[-127.57299763336347,57.130109496598216],[-127.57270793762179,57.1300289149601],[-127.57245359256676,57.12995351173101],[-127.57215693334004,57.129829295719944],[-127.571893988008,57.12972036650055],[-127.57162488956953,57.12961263179077],[-127.57143799305074,57.129466915931296],[-127.57129774639532,57.12929934041696],[-127.57113433738304,57.12914661583923],[-127.57085766594126,57.129055785026424],[-127.57054910323181,57.129019142796174],[-127.57030446454613,57.1288774828519],[-127.5700889167225,57.12873883551309],[-127.56987439557788,57.12860017550716],[-127.56961578201975,57.128495673686835],[-127.56931110059669,57.12842759541756],[-127.56906774098077,57.12829152268284],[-127.56882759507278,57.12818343459907],[-127.56854266903166,57.12809269827935],[-127.56824875625783,57.128009915931635],[-127.56795885741995,57.127923721898625],[-127.5676908992793,57.12781820770855],[-127.5674612658923,57.12768869302322],[-127.56723166328328,57.127560298541894],[-127.56696273034149,57.127455915587625],[-127.56668078521047,57.12736177675818],[-127.56639380363754,57.1272710606041],[-127.566102918657,57.127185995391315],[-127.5657916979353,57.12713480179703],[-127.56547329857611,57.12708481449208],[-127.56518641333143,57.12699633649741],[-127.56488656112145,57.12691922276398],[-127.56458678495054,57.126844349339386],[-127.56430587521453,57.12675019314064],[-127.56410167378073,57.12661027964866],[-127.56387487749268,57.1264739993498],[-127.56365977441612,57.12654831614783],[-127.56329501088538,57.12662890843797],[-127.56297973029609,57.12668088372846],[-127.56265349319894,57.12671729616915],[-127.5623253927573,57.12673355309464],[-127.56199570313368,57.126736376879265],[-127.56166471479712,57.126732489702775],[-127.56133358976169,57.12672524049214],[-127.5610034608799,57.12671685758985],[-127.56067134006616,57.1267107395521],[-127.56034007872725,57.12670012662648],[-127.56001263208273,57.126681620681225],[-127.55968868154538,57.12664737895303],[-127.55937101706687,57.126589521551864],[-127.55908324455984,57.12650440381856],[-127.55885063085174,57.12637715203283],[-127.55863203019963,57.12623852315227],[-127.55836928436575,57.126132928187616],[-127.55806234754361,57.12605924646573],[-127.55774235536076,57.12602046900293],[-127.55740832740038,57.12601772832705],[-127.55707630413735,57.12601384194729],[-127.55676816774174,57.1259614694228],[-127.55647910798832,57.1258696358169],[-127.55617442528363,57.12580040663108],[-127.55586184057282,57.12574023844643],[-127.55555132347133,57.12568004489305],[-127.55524957051153,57.12560629492767],[-127.55496047166582,57.12551333758439],[-127.55465516148352,57.125454200873364],[-127.55432947714976,57.12542781328747],[-127.55399513698158,57.12541722108329],[-127.55366438765012,57.12541891563144],[-127.55334892254524,57.1254663860224],[-127.5530292039148,57.12551054342172],[-127.55269913376354,57.12552904152964],[-127.55251089075229,57.12555257799056],[-127.55205267127691,57.12552103505727],[-127.55172966126757,57.125560744623705],[-127.55141114622612,57.125609367484536],[-127.5510879989448,57.12564571426343],[-127.55075985749087,57.12566082171522],[-127.55042830721347,57.12566812224845],[-127.55009778185963,57.125675409769514],[-127.54976864426655,57.12566586589905],[-127.5494401247251,57.12564622541895],[-127.54911251140994,57.125623210548675],[-127.54861269162565,57.12555964195308],[-127.54851720667872,57.12549912291807],[-127.54823405170862,57.12542513633896],[-127.54793231481563,57.125351369478444],[-127.54762476939229,57.125287759231675],[-127.54730263722534,57.12524673990205],[-127.54697952587662,57.12520685232694],[-127.54666516476291,57.125153409053745],[-127.54635946388164,57.12508416934279],[-127.54605278421053,57.12501606146059],[-127.54573574050202,57.12497273618907],[-127.54540431781555,57.124957603778746],[-127.54510366018013,57.12488493867622],[-127.54488475271815,57.12476310529943],[-127.54456011033275,57.12471089964961],[-127.54430056239002,57.12463214170793],[-127.54418215916114,57.1244642809085],[-127.54416052470653,57.12428630802426],[-127.54415835062497,57.12410362124774],[-127.54416249490932,57.123924222568746],[-127.54418834601005,57.12374456716272],[-127.54417804098925,57.12356533943744],[-127.5441160567072,57.12338672299439],[-127.54402120579456,57.123212979010425],[-127.54383258758905,57.123072850983675],[-127.54356347934817,57.12296169778156],[-127.54331072431178,57.12284586699392],[-127.54305294802171,57.12273345789687],[-127.5427691483602,57.122642653596934],[-127.54247543952634,57.122562054185586],[-127.54234703356659,57.1224021568675],[-127.54237280208008,57.122220261219105],[-127.54237179666818,57.12204092378378],[-127.54235937259465,57.12186060034793],[-127.54233554655272,57.12167929071345],[-127.54231662486882,57.12149119756294],[-127.54225478767428,57.121315941710044],[-127.54210115040833,57.12117091456016],[-127.54185258936836,57.121056152682],[-127.54156422213217,57.12095419068312],[-127.54129311393297,57.120844177776796],[-127.54104137615394,57.12072721007936],[-127.54078962337826,57.12061024210181],[-127.54054597420807,57.12048869430978],[-127.54031448332977,57.1203613979755],[-127.54010631561646,57.120222616788844],[-127.53991742823872,57.12007464041682],[-127.5397305471663,57.11992551920961],[-127.53953051438471,57.11978327845773],[-127.53931521868026,57.119646822064425],[-127.53908768985374,57.11951499330099],[-127.53887270354238,57.11941216048599],[-127.53858738279907,57.119282133120315],[-127.53831858577057,57.11917769181814],[-127.5380527466666,57.11906985234837],[-127.53780309667647,57.11895285421335],[-127.53756151722524,57.11883127685218],[-127.53732395373055,57.11870628899053],[-127.53708737177601,57.11858016823996],[-127.53684979484926,57.11845517973326],[-127.53660819322239,57.11833248005769],[-127.53633743168656,57.11823029987258],[-127.53608373306925,57.11811558815413],[-127.53584113948378,57.11799401974433],[-127.53561058614564,57.11786334185035],[-127.53535897487043,57.11774860425248],[-127.53508722422038,57.11764755416706],[-127.53480942732772,57.11754993741352],[-127.53452761730475,57.11745573005117],[-127.53424582519453,57.11736152189253],[-127.53396401793795,57.11726731332653],[-127.53360510822093,57.11715719618564],[-127.5334041983682,57.1170698824488],[-127.53316921778875,57.116957187316366],[-127.53286258170597,57.11688792846213],[-127.53256492305508,57.116810717020485],[-127.5322741476055,57.11672445671473],[-127.53198741633733,57.116635906466165],[-127.53170361503861,57.11654283752715],[-127.53143983420804,57.1164338401549],[-127.53115126436995,57.116350914331136],[-127.53078607286606,57.11629018407183],[-127.53062885542234,57.11613173559854],[-127.53048394666116,57.115970900796775],[-127.53037793790048,57.115800642390674],[-127.53029550333652,57.115625623850924],[-127.53023576842634,57.11544921824425],[-127.5302524740439,57.11522035400385],[-127.53018877503402,57.115100041074086],[-127.5300265254798,57.114945013862496],[-127.52984470259202,57.11479133682418],[-127.52967214200447,57.11463643009366],[-127.52951384999997,57.114476872273514],[-127.52930199092076,57.11429552350092],[-127.5293091323129,57.11411160858206],[-127.52933427484841,57.113964473190194],[-127.52936882431553,57.11376790701734],[-127.52923406656306,57.11362824983886],[-127.52906662574458,57.1134721616217],[-127.52885792618011,57.11329189625764],[-127.5287552920286,57.11315410422217],[-127.52861228984936,57.11298876190062],[-127.52844296684214,57.1128371787461],[-127.528186281398,57.11272360872663],[-127.52783747635524,57.112606632949884],[-127.52780815208608,57.1124668611797],[-127.52769843432371,57.112306732984905],[-127.52740195129572,57.11220595748783],[-127.52714873687806,57.11210131230237],[-127.52693046570329,57.11196599301012],[-127.52672832223375,57.11182039645012],[-127.52655792605161,57.111667702761835],[-127.52648186561527,57.11149597085081],[-127.52644159399091,57.11131485299745],[-127.52637464470438,57.11113853084402],[-127.52628824025217,57.11099270101253],[-127.52620378546814,57.11079192334643],[-127.52605585291808,57.110632240988735],[-127.52587519659538,57.11048078752568],[-127.525657919242,57.11034433388837],[-127.5255400691424,57.11023922433699],[-127.52535588247122,57.11002504013296],[-127.52520491048404,57.10986651341807],[-127.52502426112098,57.10971505886189],[-127.52482329486723,57.109572808808196],[-127.52461421702166,57.10943401599066],[-127.52439897135051,57.10929641583183],[-127.52417772440273,57.109163369105204],[-127.52394331018942,57.10903720129142],[-127.52365661107574,57.1089475128466],[-127.52335701121221,57.10887142537391],[-127.52305351983158,57.10880098722653],[-127.52274903287407,57.108731680922226],[-127.52244252571387,57.108663518407056],[-127.52213413160418,57.10859986085767],[-127.52182865118881,57.10853168495672],[-127.52152907471827,57.10845559311864],[-127.52123348115876,57.10837609143885],[-127.52093988228845,57.108294324032144],[-127.52064326659766,57.10821483296631],[-127.52034569975969,57.108137594154634],[-127.52004419668444,57.10806488418757],[-127.5197267292064,57.108006931334096],[-127.51946030549577,57.10790690960348],[-127.51930425456321,57.10774955673902],[-127.5192753736883,57.10756830499563],[-127.5192816702998,57.107387764649125],[-127.51924672584204,57.107209946284215],[-127.51917779543892,57.1070347654129],[-127.51910779677466,57.10685847605784],[-127.51906867801267,57.10667958540926],[-127.51902140231967,57.10650303155162],[-127.5188949473914,57.10633636663361],[-127.51878492973505,57.10616726849424],[-127.51877046732763,57.105984728164486],[-127.51872117259872,57.10580931872412],[-127.518559097233,57.10565651910427],[-127.51835091063857,57.105513223145024],[-127.51814892227743,57.105369854776136],[-127.5179499977179,57.105225329576214],[-127.51773997164462,57.10508765869307],[-127.51749845438714,57.10496380465204],[-127.51724787343804,57.104845660132334],[-127.51707256744213,57.104697496366825],[-127.51693180111042,57.10453435904781],[-127.5166863524833,57.10441503296647],[-127.51645603437196,57.10428656333658],[-127.51628346998469,57.10412939949862],[-127.51607669509637,57.10399505113638],[-127.51566110750178,57.103884425368356],[-127.51554068459473,57.103791667715925],[-127.51531683577645,57.10366984653666],[-127.51505233464367,57.103591091545134],[-127.5148706696502,57.10343851532149],[-127.51461224271125,57.10333054534487],[-127.51432358674069,57.103241981143164],[-127.51402882413299,57.10315572899631],[-127.51374619044964,57.10306261005072],[-127.5134234064066,57.10297331893],[-127.51314662841496,57.10292384620497],[-127.51283173725365,57.10287705660876],[-127.51253245272102,57.102780765439135],[-127.51223595924284,57.10272927754119],[-127.51187828834884,57.10272445502725],[-127.5115701876579,57.10271905730187],[-127.5112403642933,57.10271278953486],[-127.51091631357573,57.10272214678383],[-127.51059815674196,57.1027762712535],[-127.51027472231974,57.10280131245695],[-127.50994526199767,57.102778223613946],[-127.5096370239768,57.102716777603206],[-127.50934141112938,57.1026350085316],[-127.50898697171888,57.10252813829926],[-127.50880117670286,57.10240138267322],[-127.50846672447109,57.10211941873628],[-127.50860294144395,57.10195755443816],[-127.50887258969763,57.10185243414049],[-127.50905687990634,57.101704585206456],[-127.50915341072408,57.10153197027031],[-127.50925622480139,57.10136152440549],[-127.50936838430212,57.10119209126758],[-127.50949718107928,57.101025828281095],[-127.50969305271404,57.100883449000186],[-127.5099276957359,57.10075519251132],[-127.51013194129926,57.100616078371964],[-127.51029508296246,57.100456142519896],[-127.5103015968988,57.10028008511873],[-127.51025835122853,57.10010012010513],[-127.51021514496843,57.09999973884037],[-127.51018327877185,57.099925007107984],[-127.51008966369811,57.099751229613865],[-127.50997557317018,57.099582172665535],[-127.50983181018293,57.09942018444569],[-127.50965440423047,57.09926979441231],[-127.50945548267094,57.09912413670411],[-127.5092555823068,57.098979610951275],[-127.50907207306666,57.098831532631046],[-127.50892534271082,57.098672940606974],[-127.50882869087103,57.098500318491055],[-127.50875973557811,57.0983228924418],[-127.50870415229386,57.09814419085397],[-127.50867938748698,57.09796064929352],[-127.50863112944701,57.09778410482838],[-127.50849284156159,57.09762989848855],[-127.50825635211449,57.09750036626265],[-127.50801478115898,57.097373134177055],[-127.50780070338286,57.09723549582585],[-127.50761816093348,57.0970851628342],[-127.50743964565571,57.09693254128685],[-127.5072754721215,57.0967763911345],[-127.50714203998314,57.09661428117824],[-127.50709672070911,57.09643321886867],[-127.50700384321439,57.09619890274094],[-127.5068968085909,57.096103741697384],[-127.50661380453434,57.09599940386227],[-127.5062912891649,57.09596725920835],[-127.50595693863208,57.09594982207455],[-127.5056747289739,57.09586564927312],[-127.505418092526,57.095748674713604],[-127.50518768842073,57.09561570443858],[-127.50500517826119,57.09543958713252],[-127.50483901279146,57.09531147971322],[-127.50471472127094,57.095144778593195],[-127.50460583886753,57.094975657874244],[-127.50443857945709,57.0948195401936],[-127.50424378682703,57.09467270699158],[-127.50401465338692,57.094545324706424],[-127.50376620299605,57.09442601099829],[-127.50350660784873,57.094312429775776],[-127.50323907787121,57.094206785776834],[-127.5029567554346,57.094119246027944],[-127.50262522134572,57.094093921857414],[-127.50229460807697,57.09409212507578],[-127.50196390720285,57.0940880866723],[-127.50163950552759,57.09406043609768],[-127.50131854997235,57.09401481072287],[-127.50100342321232,57.093960150334],[-127.50065898399193,57.093868836824385],[-127.50050245426868,57.093695777598846],[-127.50027431167634,57.09361993884498],[-127.49997376597494,57.09354156954472],[-127.49968835021448,57.093454058475366],[-127.4994490457646,57.09333014815363],[-127.49922993814039,57.09319479636057],[-127.49903823555324,57.093046799476056],[-127.49880211228121,57.092925093290994],[-127.49852960926974,57.0928239807161],[-127.49824404381842,57.09273198477439],[-127.49795648572723,57.09264225289892],[-127.49766507787798,57.09255928997253],[-127.49736759117702,57.09247975887195],[-127.49706818837167,57.09240361178218],[-127.49676585584436,57.092331981212126],[-127.49646643886487,57.092255832939124],[-127.4961749498713,57.09217062592276],[-127.4958923093908,57.09207410787815],[-127.4956572262328,57.091952384342704],[-127.49547582420759,57.09180314359091],[-127.49531265814917,57.09164472644296],[-127.49512610510479,57.09149554431628],[-127.49494879333042,57.091345135156196],[-127.49483479440825,57.09117606600271],[-127.49472792783041,57.091004673271414],[-127.49458941497181,57.09084261021314],[-127.49441921253789,57.09068875633207],[-127.49423360455826,57.09053732051585],[-127.49403280909301,57.090393904656665],[-127.49381688628068,57.09025962888438],[-127.49355758307041,57.09015162997901],[-127.49310171674892,57.0900088913123],[-127.49300962716846,57.0899516590928],[-127.4927472664811,57.08984481453616],[-127.49244191683906,57.089774329818695],[-127.49212494686921,57.08972415334467],[-127.49179952150774,57.08969536971523],[-127.4914695557044,57.08970923099617],[-127.49114084777692,57.08972868150753],[-127.49082577258082,57.08978048116775],[-127.49052203679028,57.08985793094039],[-127.4902052835295,57.089892934921664],[-127.48987792624432,57.08989443257213],[-127.48954597799774,57.089883652047384],[-127.48921392653659,57.08987063008108],[-127.48888399999421,57.08985870390662],[-127.48855492408063,57.089842283638696],[-127.48822602209874,57.08983034411369],[-127.48789588023507,57.08983971478443],[-127.48757404139607,57.08987701213696],[-127.48725574115682,57.089925477226],[-127.48693852412423,57.089975050071445],[-127.48662241712312,57.09002685126339],[-127.486307376746,57.09007976041621],[-127.48599243871469,57.09013490941042],[-127.48567163619484,57.09017219022291],[-127.48533929602051,57.09017821675982],[-127.48503381226172,57.090237739314496],[-127.48475134204743,57.0903317467185],[-127.48447099504959,57.09042685022669],[-127.48419175738711,57.090524182276575],[-127.48390817229591,57.09061595873663],[-127.48361489651111,57.090697756799926],[-127.48331190344744,57.09076845581579],[-127.48300026071578,57.09082916446747],[-127.48267725493658,57.09086310022245],[-127.48236002425303,57.090912661968595],[-127.48205061659017,57.09097782647817],[-127.48172360877422,57.091015167982874],[-127.4813678131304,57.09100239566224],[-127.48116109774631,57.09089153341558],[-127.48100001619105,57.0907319546337],[-127.48086147583862,57.09056763624308],[-127.48069337787035,57.090413741235785],[-127.48051819237583,57.09026328914634],[-127.48041351668165,57.09009298157958],[-127.48030878221586,57.0899215537413],[-127.48015188093387,57.08976304755629],[-127.47992487824892,57.08963447960072],[-127.47967755856311,57.08951510883449],[-127.47944840789435,57.0893843227031],[-127.47919511288873,57.08927062327621],[-127.47893164176111,57.08916040141681],[-127.47866321778389,57.08905583962052],[-127.4783857977244,57.088959225449955],[-127.47809639544064,57.08887283445166],[-127.47779606146023,57.08879777552459],[-127.47748781467944,57.088731772625664],[-127.47717478678244,57.08867591111372],[-127.47685407760883,57.0886347073223],[-127.47652665131211,57.088607029391774],[-127.47619935466851,57.08858271182855],[-127.47587033816369,57.088567379976354],[-127.47552919207551,57.08855890980967],[-127.47522400551834,57.08851864733298],[-127.47491446666277,57.08844592775747],[-127.47460627067025,57.08838103846316],[-127.47428108484414,57.08835781314636],[-127.4739497131898,57.088361558106506],[-127.4736190646542,57.08835744787733],[-127.47328837321413,57.08835221641318],[-127.4729587918729,57.08834921334045],[-127.47262952779288,57.08835405202886],[-127.47230287009079,57.088373431932474],[-127.47197889437159,57.0884084730962],[-127.47165503032714,57.088446874835306],[-127.47133324683337,57.08848525229561],[-127.47104968898888,57.088578121066675],[-127.47073361496643,57.08863100410444],[-127.47040518950331,57.088658245326734],[-127.47008224008908,57.088639467856446],[-127.469763089044,57.08858477858571],[-127.46945296454682,57.08852326157015],[-127.46915165244594,57.08844931488296],[-127.4688552543788,57.08836858689425],[-127.4685501316736,57.088302527929336],[-127.46822369544297,57.08827369723821],[-127.46790885069267,57.0882234385589],[-127.46755189346933,57.08809855396922],[-127.46737885718746,57.08805678638032],[-127.46729110712789,57.08811157577107],[-127.46724385601604,57.088226437079804],[-127.46685197138726,57.0885390867711],[-127.46675945533545,57.088712742727935],[-127.46667494057009,57.08887958338013],[-127.46645504632251,57.08893585799297],[-127.46616944907096,57.089002958691445],[-127.46608887288899,57.08908344688421],[-127.46565768175883,57.089313589588926],[-127.46542287537015,57.08943952458967],[-127.4652018219357,57.08957427172548],[-127.46488829556877,57.089694364679175],[-127.46467393348944,57.08978756317591],[-127.46444646754281,57.089916776613094],[-127.46422120949116,57.090049327507096],[-127.4639758137814,57.09016865344674],[-127.46372094597415,57.090283601682906],[-127.46346605046878,57.09039742884353],[-127.46320051417732,57.090503528691876],[-127.46292011258316,57.09059858589732],[-127.462632218523,57.090687001217184],[-127.46231490391189,57.09076229513785],[-127.46198641161027,57.09078839480489],[-127.46166674893563,57.090828966149644],[-127.46137333891606,57.09090847341773],[-127.46109086502211,57.09100354985142],[-127.46080262280331,57.091082997934414],[-127.46050967771731,57.091174827711306],[-127.46020883100807,57.09124881118447],[-127.45990359793042,57.09131611776301],[-127.45959299703738,57.09137787927862],[-127.45931997158291,57.0914504284961],[-127.45897718497082,57.09150806506674],[-127.4586762901474,57.09158092461948],[-127.45840012684744,57.091679287218575],[-127.45816317479947,57.09180411204767],[-127.4579336101365,57.091933337398046],[-127.45770616785416,57.092063659503104],[-127.45747660010254,57.092192884073505],[-127.4572428750227,57.09232103379573],[-127.45703954877456,57.09246117324784],[-127.45685518774592,57.09261118850578],[-127.45666969956694,57.092758974328426],[-127.45644537972663,57.09289038022513],[-127.45621688600146,57.09302071144326],[-127.45584313412766,57.09321543271648],[-127.45570580706003,57.09321696519944],[-127.45550933032533,57.09307456392928],[-127.45540241646603,57.09292443792713],[-127.45540397290186,57.09272042037993],[-127.45531079306511,57.09255108617152],[-127.45514985440634,57.09239259569816],[-127.45495634569468,57.09224679800374],[-127.4546998879432,57.09212972402477],[-127.45453409666028,57.09197913315595],[-127.4544130384562,57.091810109307595],[-127.45423283806845,57.09166079964892],[-127.4540291395048,57.09151847696843],[-127.45382444417878,57.09137728598873],[-127.45362587658423,57.091233784678494],[-127.45342118425755,57.0910925930951],[-127.45319624324065,57.09096171469947],[-127.45295808610597,57.09083658754174],[-127.45273110921451,57.09070685195665],[-127.45250613043605,57.090574852002256],[-127.45227611004506,57.090446270451125],[-127.45203593666983,57.090322285050085],[-127.45181507558264,57.09019023815575],[-127.45146787558018,57.09007640993016],[-127.45124759432578,57.0900138500254],[-127.45101856330442,57.089884134509724],[-127.45081200879521,57.089747443376176],[-127.4505315226228,57.089649683882286],[-127.45023221826479,57.08957342966841],[-127.44992405493868,57.089508482014466],[-127.44961197459348,57.0894491815554],[-127.44930085128853,57.08938762797885],[-127.4489976332774,57.089317018856626],[-127.44870712701096,57.08922721299025],[-127.44841089267011,57.08914979972642],[-127.44809174141925,57.08912195871272],[-127.44775738198454,57.08912903283496],[-127.44742668744655,57.08912373581149],[-127.44709772003128,57.0891094517946],[-127.44676781316053,57.08909741911966],[-127.44643711903122,57.08909211958783],[-127.44611039967828,57.089110313508755],[-127.44578522672776,57.08914193995629],[-127.4454589869696,57.089172456535955],[-127.44513251940018,57.08919737044925],[-127.44480611007066,57.089223403770035],[-127.44448191706321,57.08925389522117],[-127.44415184126578,57.08923737430127],[-127.4436997191896,57.08921659903562],[-127.44349235977221,57.08925027835813],[-127.4431482219419,57.089272020208995],[-127.44290348593597,57.08930050773803],[-127.4426160463764,57.089429224808136],[-127.44232058494912,57.089509832386845],[-127.44199804456433,57.08958401340234],[-127.44175043392927,57.08970107949941],[-127.44147910013201,57.08979150632344],[-127.44120822751162,57.08989425708423],[-127.44094160910367,57.090000322899535],[-127.44067498922337,57.090106388177986],[-127.44040621904199,57.09021023490151],[-127.44012042490438,57.09030081853357],[-127.43980746710062,57.09035583341957],[-127.43949365222548,57.090415340497145],[-127.43923536867345,57.09052355254147],[-127.43900051025874,57.090650560497046],[-127.43877474039957,57.090771863415256],[-127.43871016887468,57.090950794431805],[-127.4386847277259,57.09107100846097],[-127.43835990970163,57.09111270013917],[-127.43792512780412,57.09103118627828],[-127.43764871084738,57.09093111265462],[-127.43749830177626,57.09077584804601],[-127.4373751736523,57.09060459047376],[-127.43720816466033,57.09044726676337],[-127.43702778602609,57.09029121103078],[-127.43681515205213,57.090156806941266],[-127.43654825360339,57.090062230663705],[-127.436235148763,57.09000290964284],[-127.43590892528385,57.08995157839416],[-127.43559588072848,57.089893376072325],[-127.43527998291034,57.089841929634375],[-127.43495541408437,57.089807390896055],[-127.43463188648713,57.08977283990586],[-127.43431117200655,57.08973041109268],[-127.43399238099222,57.08968459774277],[-127.43367360725641,57.08963878343394],[-127.43335189612469,57.08959748411505],[-127.43303022748717,57.08955730441505],[-127.43272407455464,57.089490052629706],[-127.43241222984165,57.089436313083425],[-127.43208572759212,57.0894051511227],[-127.4317649772285,57.08936159565021],[-127.43146675301101,57.089285286980314],[-127.43140011852623,57.089243425174175],[-127.43121159735274,57.089200659012945],[-127.4305754266941,57.08906304549727],[-127.43026730070811,57.08899805143774],[-127.4299572361715,57.088936440522765],[-127.42965315829348,57.08886915892616],[-127.42939292095434,57.08875880322355],[-127.42914375748394,57.088640479619464],[-127.42890267113968,57.08851758361238],[-127.42866763026412,57.088390137500966],[-127.42842654701415,57.08826724063622],[-127.42816343679641,57.088162518411025],[-127.42786810955997,57.088080565704644],[-127.42757680453748,57.08799520572513],[-127.42732256493726,57.087879176113724],[-127.42706242425248,57.08777105666384],[-127.4267522499076,57.08770607695181],[-127.4264561131615,57.08762973433483],[-127.42619993951236,57.087517086379926],[-127.42595680498655,57.087394207603744],[-127.42573085545482,57.08726105276567],[-127.42543593106014,57.087189178128924],[-127.4251178797448,57.08713436851394],[-127.42481856232703,57.08705581531564],[-127.42453200964346,57.0869591881913],[-127.42424157841704,57.08686932800281],[-127.42393798378868,57.08681435771297],[-127.42361730337542,57.08679992435354],[-127.42328717193298,57.086809131501994],[-127.42295332614772,57.08682958698311],[-127.42261935551944,57.08684668037382],[-127.4222890574912,57.086851403347964],[-127.42195867642859,57.08685388466127],[-127.42162821238941,57.08685412431272],[-127.42129878891606,57.08685435178838],[-127.42096836631649,57.08685571018094],[-127.4206390920611,57.08686041782123],[-127.42030557584762,57.08688982982948],[-127.42000014694688,57.08692453952217],[-127.41965741875026,57.08692827028284],[-127.41933215971483,57.08695758991662],[-127.41900694157357,57.08698802915352],[-127.41868059957945,57.08701623807107],[-127.41835419087981,57.087042205166],[-127.41802557649919,57.08706483282877],[-127.4176965647232,57.08707625534562],[-127.4173554034761,57.08706651265124],[-127.41713712850986,57.08702853327372],[-127.41703046209241,57.086824574206425],[-127.4171814209384,57.08666152983364],[-127.41709242949607,57.08648876298926],[-127.41685758900827,57.08636577762137],[-127.41660026261779,57.08624864038892],[-127.41639379231118,57.08611077490226],[-127.41623816959954,57.08595106063697],[-127.41607135000966,57.08579595123037],[-127.41584961456397,57.08566385501543],[-127.41559542581378,57.085547802745694],[-127.41533020557003,57.085440836604874],[-127.41505999879413,57.08533840749417],[-127.4147907514555,57.085233725717785],[-127.41452248833528,57.085127911874466],[-127.41425220341401,57.08502324028716],[-127.41399405965142,57.084911711375746],[-127.41376530856509,57.08478529219467],[-127.41359537428679,57.084629092817],[-127.41348480063839,57.084458799624045],[-127.41335697662636,57.084296539322985],[-127.41314537549991,57.08415872472907],[-127.41290528532828,57.084032427045976],[-127.41264917540148,57.08391975277493],[-127.41238799646212,57.083809374638335],[-127.4121217731777,57.083702413197],[-127.41184848224401,57.08360001118016],[-127.41157024575438,57.08350326643306],[-127.41128408218441,57.08341557375976],[-127.41099189121424,57.08333242912006],[-127.41069475439897,57.083254941631274],[-127.4103946372831,57.08318084828604],[-127.41009249802316,57.083107896987656],[-127.40978837772128,57.083037208135],[-127.40948524138267,57.08296538709771],[-127.40918410491031,57.08289130204878],[-127.4088849764063,57.08281607377251],[-127.40858878961626,57.082736329627444],[-127.40829558569995,57.08265319004752],[-127.4080023665374,57.08257004999179],[-127.40770816575966,57.08248804074741],[-127.40741202498856,57.082409414362324],[-127.40711196184701,57.08233643392261],[-127.40680397054415,57.08227250517741],[-127.40649107369195,57.082215353758144],[-127.40617523698904,57.08216271672143],[-127.40586034307847,57.08210782705713],[-127.4055483909149,57.08204842151848],[-127.40524432834411,57.081978842538874],[-127.4049402668746,57.081909262853955],[-127.4046189791,57.08187685622354],[-127.4043207850006,57.081798245088315],[-127.40401574365927,57.081729794696585],[-127.40372564559274,57.081646611657106],[-127.40346136203277,57.08153512883237],[-127.40316242263536,57.08160559676481],[-127.40283636021319,57.08164048842049],[-127.40256309105908,57.081735337630604],[-127.40230394244551,57.08184908895293],[-127.40203727250781,57.081955074630585],[-127.4017706419816,57.082062180185865],[-127.4015039690938,57.08216816478946],[-127.40123410815988,57.08227194138426],[-127.40096207531083,57.08237237818086],[-127.40068260312667,57.08246729002824],[-127.40036977523609,57.08252557123764],[-127.40007321353906,57.08260497329955],[-127.4000000790053,57.082638263160845],[-127.39982135052992,57.08272088311466],[-127.39960421030894,57.08285435348215],[-127.39939344941948,57.08299335930717],[-127.39918583272484,57.083133451912005],[-127.3989792549956,57.08327353303966],[-127.39876953002886,57.08341252673772],[-127.39855980354466,57.0835515201124],[-127.39835003475832,57.08368939274646],[-127.39814347525555,57.08383059320105],[-127.39795900728504,57.08398276508516],[-127.39772344093953,57.08409289184855],[-127.3973912836596,57.084074033973216],[-127.39706767517941,57.08403490830428],[-127.39674406735834,57.083995781833615],[-127.3964293348165,57.0839453510011],[-127.39616014801273,57.0838406308785],[-127.39586314280832,57.08376647100775],[-127.39555115193531,57.08370592107098],[-127.39524320958887,57.08364308538385],[-127.394921549336,57.08360057106303],[-127.39459724878701,57.08357041357626],[-127.39426499237484,57.08357732849444],[-127.39394278113886,57.08354826790621],[-127.39362799116242,57.08349558931725],[-127.39331402283153,57.083437296938264],[-127.3929991368542,57.083382376175145],[-127.3926786029884,57.08334208605547],[-127.3923485838295,57.083325434318695],[-127.39201910926774,57.08332334701693],[-127.39168867543893,57.08332351082361],[-127.39135894093147,57.083314699516336],[-127.39102992249153,57.08329691292441],[-127.39069983982857,57.08327801600218],[-127.39037090311099,57.08326246858707],[-127.39004237207908,57.0832581245375],[-127.38971655408837,57.0832716843763],[-127.38939158685076,57.08330877221567],[-127.38907225802572,57.083359249404005],[-127.38876156724685,57.08341972148609],[-127.38845870028443,57.08349692229889],[-127.38815677510533,57.08357187067328],[-127.38784583829637,57.083625618061276],[-127.38752350954981,57.08365034376612],[-127.38719443705781,57.083659448483196],[-127.38686193584738,57.08365962202055],[-127.38652943463394,57.0836597947103],[-127.38619936176188,57.083670028399446],[-127.38587063605848,57.0836892137418],[-127.38554423348462,57.083715098676336],[-127.38521905646033,57.08374657402591],[-127.38489614534403,57.08378362875163],[-127.38457660475079,57.08382849284337],[-127.3842592655331,57.08387669533247],[-127.38393976378678,57.08392267828903],[-127.38361602774636,57.083965342825685],[-127.38329441965489,57.084010225683635],[-127.38298036749606,57.084063994422195],[-127.38267820172162,57.08413220743641],[-127.38237892956965,57.084223926922874],[-127.38211978504326,57.084339879187375],[-127.38195040433905,57.08448290110535],[-127.38187196605494,57.084656343105024],[-127.38183423713777,57.08484168312915],[-127.38179530611139,57.08502255249699],[-127.38176042322763,57.08520113728569],[-127.38173173371925,57.085379656473734],[-127.38170721339783,57.085559252360284],[-127.38168269284719,57.085738848265365],[-127.38166538989331,57.085918367730216],[-127.38165742605996,57.08609890913686],[-127.38163703416193,57.08627846136253],[-127.38157622895851,57.08645395827434],[-127.3814645896391,57.08662326847623],[-127.38134886034238,57.08679374275919],[-127.38129208521288,57.086966955197376],[-127.38131921865829,57.08714712501773],[-127.38132570564362,57.087327513508285],[-127.38130841682342,57.0875070329564],[-127.38128491725178,57.08768661819384],[-127.3812521345671,57.08786630175081],[-127.38120688273628,57.08804387565051],[-127.38112843382424,57.08821731764799],[-127.38102095714808,57.088387704387785],[-127.38089160662672,57.08855271835279],[-127.38075600395975,57.08871667752563],[-127.38062565082906,57.088882822708456],[-127.38049938582999,57.08904780364981],[-127.38038047551142,57.089216069207765],[-127.3802740168556,57.08938644461724],[-127.38013862097924,57.08964231099852],[-127.38013899438971,57.08973870046754],[-127.38012811841301,57.089924877274626],[-127.38011407283827,57.0901088459312],[-127.38005301306579,57.09027762004827],[-127.37984464244101,57.09039975574414],[-127.37953065958105,57.09048601985872],[-127.37925001102663,57.09057977673722],[-127.37896621533712,57.09067244541853],[-127.3786823780598,57.09076399305965],[-127.37839960381191,57.09085664969636],[-127.37812348154924,57.090961564832064],[-127.37783725370001,57.09104416903223],[-127.37750472871222,57.09104543914774],[-127.37719286836914,57.09098932670384],[-127.37690458234512,57.09089933908449],[-127.37661832237474,57.090808208613666],[-127.37633603287541,57.09071255222946],[-127.37603993308389,57.09063497458853],[-127.37572414917443,57.09058450436194],[-127.37539852332894,57.09054758738875],[-127.37507155529619,57.09053085910962],[-127.37474180284575,57.090523126180464],[-127.37441365076847,57.09050192532596],[-127.37408552261883,57.09048184425062],[-127.37375653094769,57.0904662548574],[-127.37342761967341,57.09045290549556],[-127.37309784468663,57.09044404780732],[-127.37276726944478,57.09044192282102],[-127.37243390900196,57.09044879311659],[-127.37211395469305,57.09048354284256],[-127.3717947035992,57.090538459716484],[-127.37148635249264,57.09060895312724],[-127.3712108372948,57.09070263853302],[-127.37098627727659,57.0908350176392],[-127.37078402843228,57.09098509553497],[-127.37055724048304,57.09111301390086],[-127.370273980903,57.09119220759178],[-127.36995127253631,57.09123706854293],[-127.36961894351076,57.09127306288549],[-127.3692982586472,57.09131678011185],[-127.36897436416245,57.0913571676716],[-127.36865157303896,57.09139978454808],[-127.36833736013915,57.09145127745163],[-127.36804050371099,57.091526125454344],[-127.36777172687673,57.09163542475706],[-127.36749098481447,57.09172803615638],[-127.36717538451855,57.09176945311027],[-127.36684233054942,57.09178527259203],[-127.36651007783841,57.09179435772004],[-127.36617738656682,57.091791117230756],[-127.36584577591618,57.09178898543039],[-127.36552222081342,57.09181030633423],[-127.3651952922047,57.091852957903264],[-127.36487511508646,57.09191122991943],[-127.36458364127763,57.09199273876154],[-127.3643293059063,57.092101879807046],[-127.36409423008985,57.09222987342522],[-127.36388031947365,57.09237221639677],[-127.36369044105616,57.092522153754054],[-127.3635410584614,57.092678392673676],[-127.36347312364924,57.09285955975793],[-127.36340196312769,57.0930373979825],[-127.36322832113626,57.09317931903647],[-127.36294681093004,57.09327977451459],[-127.36268745062492,57.09339344822707],[-127.36250073126573,57.09354559256699],[-127.3623001588463,57.093685551936325],[-127.36200327338689,57.09376038632281],[-127.3616860853617,57.09381637746687],[-127.361373082718,57.09387344500804],[-127.3610568144965,57.093926062455246],[-127.36073716169844,57.09397086847287],[-127.36041538025401,57.09401345419619],[-127.36010113493346,57.09406492736061],[-127.3597989523591,57.09413644934851],[-127.35950333730467,57.09421798984835],[-127.35920333643317,57.09429285025823],[-127.3588957581275,57.094357701239815],[-127.3585859948091,57.09441921169014],[-127.35827520622436,57.094480732072036],[-127.3579676248471,57.09454558087445],[-127.35766226594507,57.09461488921864],[-127.35736658655095,57.09469530463885],[-127.35709537533675,57.094795640171135],[-127.35683810867793,57.094910401165635],[-127.35655946057129,57.0950052086611],[-127.35625517585436,57.09507562335206],[-127.35594221747913,57.095134918967204],[-127.35561204188457,57.09517421741489],[-127.35531271090323,57.09523897415798],[-127.35507630781312,57.095360239990015],[-127.354869701131,57.09550585466939],[-127.354684887099,57.095654605288274],[-127.35451055542124,57.095807730219946],[-127.35429027537444,57.09594676083537],[-127.35419591525014,57.09611250539356],[-127.35416712898102,57.09629214035305],[-127.35415189288932,57.096474997239696],[-127.3541075299547,57.096652552199025],[-127.35400504155591,57.09682174359439],[-127.35385686418599,57.09698468392969],[-127.35368777345857,57.09713999513118],[-127.35349142203809,57.0972843804058],[-127.35325096563815,57.097407926672425],[-127.35299679906244,57.09752376870645],[-127.35272880393408,57.09762854509786],[-127.35242976464224,57.09770225888319],[-127.3518723719373,57.09780218704407],[-127.35158206830907,57.09771328487362],[-127.35135071175924,57.09759687111139],[-127.3512300112313,57.097425510127785],[-127.35104001738367,57.09728064620562],[-127.35073001326981,57.09721884665609],[-127.35026488247361,57.097151926829774],[-127.35010308665606,57.09710428378369],[-127.34980000691418,57.09703344360513],[-127.34951280344247,57.09694450491659],[-127.3492356289042,57.096846495100635],[-127.34896249093572,57.096746201281654],[-127.3486863435676,57.09664817972188],[-127.34840010772722,57.096556986963485],[-127.34811896579451,57.09646349926281],[-127.34806611870535,57.09640015690902],[-127.34774933917456,57.096350749790076],[-127.34745087864282,57.096117333474325],[-127.34717332467969,57.09597897281511],[-127.34699548933169,57.09585639481069],[-127.34669118788288,57.09577995600757],[-127.34638120287957,57.095718146193526],[-127.34606525908983,57.09566312222517],[-127.3457393989291,57.09567881321891],[-127.34541271418597,57.095670974092194],[-127.34513754594629,57.095570693478464],[-127.34484540582622,57.09548739997248],[-127.34461365157908,57.095358649579225],[-127.34431606404338,57.09529670717231],[-127.34410972623776,57.09515648556035],[-127.34384500824616,57.09505945720614],[-127.34353200611554,57.09499991353459],[-127.34322100820135,57.094938106796185],[-127.34293690235924,57.09484800134756],[-127.34271119694574,57.09471470208916],[-127.34243626108105,57.09462113867715],[-127.34212916322427,57.094552564194686],[-127.34185503584816,57.09445226620242],[-127.34154414596318,57.09439381699108],[-127.34116793471343,57.09435733465969],[-127.34094750297253,57.09425648279406],[-127.34072688409809,57.094120886293275],[-127.34053071194752,57.09397495064162],[-127.3403193971219,57.09383925790637],[-127.34002521557969,57.09375597492878],[-127.33979459036804,57.09362944650299],[-127.33958113685587,57.0934915329276],[-127.33937785367215,57.093349031238404],[-127.33922252196665,57.093189224353964],[-127.33900814938433,57.09305468189806],[-127.33873002801866,57.09295778116831],[-127.33842985692559,57.092880160434134],[-127.33812094937569,57.092818320448146],[-127.33779245969474,57.09281720609827],[-127.3374679927151,57.09278354522471],[-127.33716236177,57.092756415541174],[-127.33689158340542,57.09266279824586],[-127.33666675758619,57.09252387586107],[-127.33640396904318,57.09242232983378],[-127.33609327631487,57.092368349324005],[-127.3357645677789,57.09233136519371],[-127.33544473192623,57.09228196014893],[-127.33514667666317,57.09220543120357],[-127.33485251885004,57.092122136661544],[-127.33454354529108,57.092058047352616],[-127.33422379113077,57.0920108802114],[-127.33389862118376,57.091986184504535],[-127.33356795708211,57.0919817193027],[-127.33323668015944,57.09198958878154],[-127.33291009390527,57.092013101268115],[-127.33258602218675,57.092050037341544],[-127.33225663161812,57.09205228084928],[-127.33192343591422,57.092034387237696],[-127.33158798133879,57.092010911631604],[-127.33125577168414,57.09199188541641],[-127.33093039495671,57.091990722096966],[-127.33061629692548,57.09201746393813],[-127.33031810558846,57.09208551390774],[-127.3300311138927,57.09217922833518],[-127.32974535550268,57.092278533754715],[-127.32945083155343,57.0923633569436],[-127.32914972362137,57.09243703813688],[-127.32884651078805,57.09250961922808],[-127.32854219506136,57.09257996915772],[-127.32823461748337,57.09264586821917],[-127.3279247801594,57.092706185348696],[-127.32761057948952,57.09275982109818],[-127.32728875497907,57.09280232524931],[-127.32696345339804,57.09283365556714],[-127.32663581536897,57.092857162948604],[-127.32630767393009,57.09286610370164],[-127.32597613363122,57.09286611145558],[-127.32566756253479,57.09287373083766],[-127.3253168217069,57.09288626126407],[-127.32498800336195,57.0929052931261],[-127.32465882036676,57.09291424030312],[-127.32431809478113,57.09291769962606],[-127.32401256927793,57.0928636380058],[-127.32371964598643,57.09275564752778],[-127.32353091907326,57.09261409500001],[-127.32348903708188,57.092447514914504],[-127.32351474238936,57.092264557407724],[-127.32355269927957,57.092076992261184],[-127.32355572820727,57.09189538569833],[-127.32353303084479,57.0917162818517],[-127.32350104976884,57.09153727221551],[-127.32346905247162,57.09135826276226],[-127.32343913690265,57.09117923220777],[-127.32339685429262,57.091001447973454],[-127.32333600456776,57.09082385210793],[-127.32328634958768,57.090641659332256],[-127.32324277389172,57.0904560423875],[-127.32319811932675,57.09026931556406],[-127.3231453381006,57.09008603369624],[-127.32307621509935,57.08990852177126],[-127.32298362556493,57.08973909369621],[-127.3228593876276,57.08958007406711],[-127.32269640427809,57.08943601810129],[-127.32249970825283,57.089302391283226],[-127.32227541701182,57.089176889776276],[-127.32202966999319,57.08905833037875],[-127.32176557270905,57.088946681500445],[-127.32148824033483,57.08884077037202],[-127.32120174185597,57.088738314024],[-127.32091020681972,57.08863927057733],[-127.32061981298108,57.088543577452135],[-127.32033358863471,57.08844896233248],[-127.32005454559587,57.088353153096584],[-127.31977237657667,57.088256254078374],[-127.31948914637526,57.088158244371535],[-127.31920383635575,57.08806025510558],[-127.31891551588514,57.08796453734475],[-127.3186242618624,57.087873331958264],[-127.31832901706348,57.08778664961004],[-127.31803091544401,57.087706720479886],[-127.31773003373965,57.08763578543688],[-127.31742429051646,57.087573865480984],[-127.3171137624216,57.08752320146673],[-127.31679958315593,57.087486023576844],[-127.31648148895812,57.087455609446465],[-127.31615955109639,57.087433079158444],[-127.31583466181301,57.087415061183606],[-127.31550789998498,57.08740266545021],[-127.31517818649306,57.08739478199078],[-127.31484657835522,57.0873914001268],[-127.31451296573316,57.087390279285316],[-127.31417952298317,57.087393639207306],[-127.3138451162076,57.08739924965046],[-127.3135097070331,57.08740599016137],[-127.31317439086747,57.08741497053579],[-127.31284013693825,57.08742506018722],[-127.31250690693233,57.087435138677414],[-127.31217575798543,57.08744519537964],[-127.31184559469907,57.08745412049531],[-127.31151543125925,57.0874630447753],[-127.3111833559336,57.08747647076158],[-127.31084944507674,57.08749663933327],[-127.31051778972545,57.087522388540854],[-127.31019056911543,57.087557059003935],[-127.30987087186043,57.0876006197383],[-127.30956081720997,57.087654170352316],[-127.30926789060243,57.08772548159518],[-127.30900823463523,57.08783344570911],[-127.30876477988524,57.08796254253189],[-127.30851810360271,57.08808830872039],[-127.30824899075674,57.08819188284898],[-127.30794883920449,57.0882632635543],[-127.3076316560194,57.08832024349954],[-127.30730382135957,57.08836724194132],[-127.30697382835922,57.08841201951731],[-127.3066480187699,57.08845787517707],[-127.30633183459008,57.08851372109675],[-127.30603472777563,57.088583946031086],[-127.30576204224923,57.08867410076876],[-127.3055170139708,57.088787515569514],[-127.3052943036599,57.08891976069869],[-127.30508756451655,57.08906641645232],[-127.30489249305434,57.08922192180694],[-127.30470063968583,57.08938075717666],[-127.30450873015835,57.089538471997265],[-127.30431037471239,57.08968840517341],[-127.3040991936408,57.089826137129435],[-127.30386989750434,57.08994723734642],[-127.3036170878482,57.090045034689325],[-127.30333870008812,57.090119549647056],[-127.3030442628153,57.09017741186022],[-127.3027348980051,57.09022197250886],[-127.30241484469637,57.09025543082666],[-127.302085148781,57.090278897127426],[-127.30174802726945,57.090296832538876],[-127.30140762656778,57.090309195638234],[-127.30106409863726,57.09032046820735],[-127.30072155674024,57.09033060920762],[-127.30038119334314,57.09034409008121],[-127.30004511116323,57.0903620107188],[-127.29971651289631,57.090387701733036],[-127.29939109558401,57.090415601890435],[-127.29906469151226,57.0904446318887],[-127.2987393111307,57.09047365087422],[-127.29841396813454,57.090503789501554],[-127.29808758392342,57.0905339376743],[-127.29776223990532,57.09056407467788],[-127.29743685752815,57.09059309041745],[-127.29711041263243,57.090620995076776],[-127.29678391291371,57.09064777863047],[-127.29645735361873,57.090672320296264],[-127.29613073957672,57.09069574085553],[-127.29580302534352,57.09071692986363],[-127.2954752351658,57.09073587714098],[-127.29514541754341,57.09075596455023],[-127.29481357244376,57.090777192076],[-127.29448074054656,57.09079954937567],[-127.2941468297958,57.090820795696715],[-127.2938128431895,57.090839800254585],[-127.29347980498115,57.09085655289299],[-127.29314663210677,57.09086882269885],[-127.2928163972705,57.0908765792202],[-127.29248803868995,57.09087871217211],[-127.29216151881472,57.09087410111373],[-127.2918388650413,57.090861605154934],[-127.29152003988841,57.09084010386959],[-127.29120692014682,57.09080397457135],[-127.29090034206091,57.090747604890716],[-127.29059948666074,57.0906766071224],[-127.29030344759299,57.0905954735866],[-127.29000921124603,57.0905064757766],[-127.28971588757736,57.09041410581693],[-127.28942258183841,57.090321735040554],[-127.28889600187132,57.09017226489514],[-127.2886402151467,57.09005934681607],[-127.28838539544917,57.08994417705528],[-127.28813156387241,57.08982787623764],[-127.28787979868362,57.08971155454991],[-127.2876279974581,57.089594111930744],[-127.28737619777223,57.089476668835424],[-127.28712439962601,57.08935922526413],[-127.28687159988606,57.08924291193862],[-127.2866188181955,57.08912659797],[-127.28636403175125,57.089012544956745],[-127.28610723604655,57.088899632105615],[-127.28584839803946,57.08878785973014],[-127.28558758826254,57.08867834794742],[-127.28532374951361,57.08857110716196],[-127.28505691925665,57.088467257810066],[-127.28478608983237,57.0883668097971],[-127.28451122816382,57.08826976342278],[-127.28422734690342,57.088180651058124],[-127.28393643579977,57.0880972114089],[-127.28363950237379,57.088019434511324],[-127.28333860689068,57.08794617922889],[-127.28303364137926,57.08787520494803],[-127.28272769029488,57.08780536048422],[-127.28242071620816,57.087735525374946],[-127.28211476735058,57.087665679480686],[-127.2818117962877,57.08759244115259],[-127.2815118569816,57.087516930704815],[-127.28121589883021,57.08743689718894],[-127.2809229725356,57.08735459160047],[-127.28062999362331,57.08727116506581],[-127.28033905987404,57.087186596994066],[-127.28004811088796,57.08710202844062],[-127.27975816646752,57.08701632857821],[-127.27946818601981,57.086929507621186],[-127.27917824419512,57.08684380648038],[-127.27888826636028,57.086756984245106],[-127.27859832713139,57.08667128182607],[-127.27830740239756,57.08658670925986],[-127.27801543834403,57.08650214624581],[-127.27772351284536,57.086418703039094],[-127.2774295612006,57.08633639986028],[-127.27713568531976,57.08625633693516],[-127.27683874264841,57.08617742420599],[-127.27654088882828,57.08610188219482],[-127.27623998467536,57.086027490185266],[-127.2759330945057,57.085959880972396],[-127.2756191734302,57.08589794391086],[-127.27530024879522,57.085840538306584],[-127.27497729086922,57.08578653381759],[-127.2746533841463,57.0857347794505],[-127.27432947829608,57.08568302428107],[-127.27400557331858,57.085631268309356],[-127.27368576133567,57.08557835075646],[-127.2733689068763,57.08552092028205],[-127.27305811934119,57.08546006737911],[-127.27275545932191,57.0853946511661],[-127.27246078250607,57.08532131065408],[-127.27217724784069,57.08524113590677],[-127.27190580525887,57.08515187609951],[-127.27165147628598,57.08504899908136],[-127.2714223546123,57.08492794279],[-127.27121546292469,57.08479209883402],[-127.27102371520161,57.08464601964584],[-127.27084201181711,57.08449087580116],[-127.27066741645571,57.08433230003597],[-127.2704937724457,57.08417147316869],[-127.27031505086524,57.084012937189996],[-127.27012723379028,57.083860093655495],[-127.26992628677195,57.08371634425512],[-127.26970510331279,57.0835851205564],[-127.26946662383,57.08346191056919],[-127.26921285533895,57.08334445303432],[-127.26894692338746,57.08323383826719],[-127.26866886494078,57.08313118664732],[-127.26838388643132,57.08303756827709],[-127.26809096767086,57.08295411384204],[-127.26779322999425,57.082880792943904],[-127.2674836240532,57.0828232781275],[-127.26716108857408,57.082780458799604],[-127.26683161543689,57.082746672586445],[-127.26649712115996,57.08271741756407],[-127.26616366789285,57.08268815158331],[-127.2658362239885,57.08265322235991],[-127.26551774691562,57.082608117987704],[-127.26521322571377,57.082548306881655],[-127.26492667507722,57.082469266951584],[-127.26465809917842,57.082372119095595],[-127.26440351299772,57.08226026450507],[-127.26415990585697,57.08213709488945],[-127.26392329641827,57.08200713215041],[-127.26368869582681,57.081874907919534],[-127.26345305637459,57.08174269335898],[-127.26321343705366,57.08161500019968],[-127.26296379188932,57.08149637021662],[-127.26270315398487,57.0813890543352],[-127.26242545693688,57.08129647364376],[-127.26213581650181,57.0812174577083],[-127.26183611284588,57.08114638419417],[-127.26152841024019,57.081083233061776],[-127.26121573982314,57.08102573331596],[-127.26089801141683,57.08097164416807],[-127.26057825627655,57.080918694658166],[-127.26025853877235,57.080866864822475],[-127.25993980932151,57.0808139038567],[-127.25962507908906,57.08075642025261],[-127.25931427841101,57.08069329390252],[-127.25901049202594,57.080623374246294],[-127.2587146705671,57.08054441053911],[-127.25842474982524,57.080456422756434],[-127.2581388490626,57.080365033135884],[-127.25785287629179,57.08027140198218],[-127.2575669782661,57.08018001112016],[-127.25727713623623,57.08009426172191],[-127.25698239950225,57.080016404541674],[-127.25667982987419,57.07995207190323],[-127.25636255641538,57.07991141722396],[-127.25603359357737,57.07989216973816],[-127.25569962496213,57.07987745286126],[-127.25536856179725,57.079857103118734],[-127.2550472350409,57.079818725898505],[-127.25473169941174,57.079767963280084],[-127.25441804603074,57.07971157776019],[-127.25410530775443,57.079651820271636],[-127.25379262353053,57.07959318233373],[-127.25347800564758,57.07953904547633],[-127.25316048316162,57.079490539822146],[-127.2528391982134,57.07945327762903],[-127.25251212274252,57.0794283991517],[-127.2521831294512,57.079408021504],[-127.25185510390689,57.079385392125225],[-127.25153089887128,57.079353758800885],[-127.25121054759173,57.07931312124332],[-127.2508910749667,57.07926799124951],[-127.2505735215157,57.07921835884946],[-127.25025691985687,57.079166474947],[-127.24994232696417,57.079112329419175],[-127.24962771844372,57.079058183292744],[-127.24931511875221,57.079001775560705],[-127.24900147957494,57.078945377046026],[-127.24868886520619,57.0788889679757],[-127.24837623186322,57.07883143754255],[-127.24806358294217,57.078773906520325],[-127.24775095147156,57.07871637459309],[-127.24743930844025,57.078657711667],[-127.24712666233556,57.07860017840604],[-127.24681399732074,57.07854152378219],[-127.24650239348944,57.078483979082606],[-127.24618975020121,57.078426443582956],[-127.24587708803028,57.07836778672029],[-127.245565487011,57.078310239789516],[-127.24525281022456,57.07825158159294],[-127.24494121108259,57.078194033175414],[-127.24462855270873,57.07813537332944],[-127.24431691915676,57.078076702967],[-127.2440053228346,57.07801915232066],[-127.24369265079858,57.07796049039604],[-127.24338003249092,57.077902948025155],[-127.24306743485634,57.07784652552312],[-127.24275481841217,57.07778898165837],[-127.2424411987642,57.07773256741712],[-127.24212761626019,57.077677272882504],[-127.24181303050298,57.077623107961905],[-127.24149846214642,57.077568942127186],[-127.24118391435837,57.077515896151716],[-127.240868343587,57.07746285916214],[-127.24055377787398,57.077408691055226],[-127.24023919653416,57.077354522348635],[-127.2399235560751,57.077299242161544],[-127.23960899303334,57.07724507178218],[-127.2392944143649,57.07719090080316],[-127.2389788488706,57.077137859253945],[-127.2386632842475,57.077084816943184],[-127.23834673276684,57.077032904052565],[-127.23803023783391,57.07698323147054],[-127.2377137963264,57.076934678424614],[-127.23739531100136,57.07688726481535],[-127.23707691512577,57.076842091191914],[-127.23675665569559,57.07680365928184],[-127.23643054537817,57.07677536927942],[-127.23610264321844,57.07675606186064],[-127.23577378962835,57.07673900423914],[-127.23544387646949,57.07672083502886],[-127.23511687154632,57.07669703343774],[-127.23479078283592,57.07666985995319],[-127.23446467510142,57.07664156503777],[-127.23413955568888,57.076612139157916],[-127.23381443677427,57.07658271246828],[-127.23348931835763,57.07655328496877],[-127.23316312413627,57.07652274603733],[-127.23283800672579,57.07649331691538],[-127.23251288981326,57.076463886983554],[-127.23218678550423,57.07643558637638],[-127.23186166957892,57.076406154822415],[-127.23153554972619,57.07637785274397],[-127.23121043478817,57.07634841956764],[-127.23088532034818,57.07631898558161],[-127.23055918258315,57.07628956044697],[-127.23023410501496,57.07626124529924],[-127.22990798759083,57.07623293915391],[-127.2295818871604,57.0762046320379],[-127.22925580654356,57.076177444723655],[-127.22892977873813,57.076151376899894],[-127.22860377068916,57.07612642887825],[-127.2282767392448,57.076101489685605],[-127.22794970822493,57.076076549673296],[-127.22762168961064,57.07605273894102],[-127.2272936906787,57.0760300480008],[-127.22696581598554,57.076010717464825],[-127.2266370086024,57.07599475727511],[-127.2263083445333,57.075983278102704],[-127.22597881908466,57.075977410191],[-127.22565040554774,57.0759737725919],[-127.22532003512222,57.07597351494709],[-127.22499077647396,57.07597548761627],[-127.22466051317467,57.075978589686436],[-127.2243313450437,57.075983922231806],[-127.22400118869757,57.075990384018496],[-127.22367110360712,57.07599908589395],[-127.22334098269341,57.076006666471635],[-127.22301093297772,57.076016487138624],[-127.22268188777005,57.07602517675349],[-127.22235183772695,57.076034995752586],[-127.22202295387525,57.07604928617312],[-127.22169422879519,57.07606805746117],[-127.22136555811318,57.07608906900151],[-127.2210379274057,57.07611006997259],[-127.22070927251876,57.07613107970491],[-127.22038042282149,57.07614648644746],[-127.22005243530624,57.07615628031056],[-127.21972419864488,57.07615823010456],[-127.21939574859721,57.076153456291],[-127.21906708533574,57.07614195886827],[-127.21873831565199,57.076127099226284],[-127.21840943963244,57.07610887736421],[-127.21808049288396,57.07608841374528],[-127.21775154648584,57.076067949297],[-127.21742367627247,57.076048594770796],[-127.21707158790342,57.07604739818524],[-127.2168058850351,57.07610031356835],[-127.21649387149158,57.07615814361651],[-127.21617189804327,57.07616226763015],[-127.21584589819012,57.07613728771689],[-127.2155174966594,57.07610112143009],[-127.2151892918502,57.076071677259065],[-127.21485646681076,57.07605908723194],[-127.21447445643253,57.076058162391526],[-127.21421501320356,57.076113255753754],[-127.21406624142776,57.07617516383713],[-127.21409061154812,57.07639125032974],[-127.2141661073822,57.07659116971172],[-127.2141336120552,57.07677192027156],[-127.2140720570664,57.076947337416506],[-127.21400323311217,57.07712170142393],[-127.21392721090007,57.077297253214056],[-127.21384704064593,57.07747172279057],[-127.2137627246682,57.077646230918994],[-127.21367636018836,57.07782075807271],[-127.21358994301868,57.07799416487811],[-127.21350357697204,57.07816869196098],[-127.21342026291484,57.0783420698072],[-127.2133411474502,57.07851765014362],[-127.21326619523964,57.07869431251152],[-127.21319436592354,57.07887206659719],[-127.21312258783597,57.07905094097991],[-127.21304869286266,57.07922871423356],[-127.21297064967413,57.07940540524725],[-127.21288632547292,57.07957991305128],[-127.21279467741311,57.07975112653286],[-127.21269263598454,57.079920195014346],[-127.21257910641094,57.080084887053935],[-127.21244673239698,57.08024190861643],[-127.21223613781133,57.08037387880162],[-127.21196916687086,57.080486198210046],[-127.2116907424097,57.08059526108768],[-127.21144368992088,57.08071748152646],[-127.21122177858777,57.08085067598029],[-127.21100508914952,57.080986063162364],[-127.2107904979257,57.081122551301746],[-127.21057902888079,57.08126013090443],[-127.21036967458149,57.08139881133564],[-127.2101613780335,57.081538602413595],[-127.2099530799698,57.08167839317299],[-127.20974373989905,57.08181819326507],[-127.20952711034883,57.081955819027534],[-127.20930631501254,57.08209236225775],[-127.20908551810696,57.08222890512746],[-127.20886789515032,57.082367659799985],[-127.20865752338118,57.08250746770919],[-127.2084586023776,57.082650531576085],[-127.2082752777737,57.08279681304888],[-127.20811070870808,57.08294852452983],[-127.20796905963931,57.0831067483218],[-127.20785564131722,57.08327591851611],[-127.20776722672979,57.08345270267939],[-127.2076985386315,57.08363266653732],[-127.20764850151323,57.083814699284],[-127.2076128455717,57.0839943572806],[-127.20759457049925,57.084168250369224],[-127.20770721320604,57.08433532731599],[-127.20786217318351,57.084502012317884],[-127.20793477757458,57.084676184698594],[-127.20796935486355,57.084856313254456],[-127.2079770569122,57.08503556993153],[-127.20795585392706,57.085215094329314],[-127.20794500927754,57.085395643616884],[-127.2079753874535,57.08557356955761],[-127.20801714862368,57.08575251089429],[-127.20807230368159,57.08593020739141],[-127.20814291750601,57.08610663990753],[-127.2082340215675,57.086278399408734],[-127.20834977857581,57.08644544728977],[-127.208485037471,57.08660895201145],[-127.20862954530597,57.08677125012125],[-127.20877306550872,57.08693467805549],[-127.20890629843984,57.08709932200739],[-127.20904064368618,57.08726619714764],[-127.20912430663694,57.087463803659226],[-127.20915705665234,57.08761817081651],[-127.20921492058598,57.087783513202936],[-127.20914822578187,57.08796121829271],[-127.20907641187137,57.08814009161791],[-127.2090479419242,57.088318563180835],[-127.2090897275931,57.088497504374985],[-127.20910156527165,57.08867672317781],[-127.20902966275109,57.08885335576946],[-127.20893601632018,57.08902794825022],[-127.20897942595263,57.08922592818726],[-127.20907276497402,57.08936964678008],[-127.20910479314621,57.08953410810282],[-127.20913143817558,57.089724397833855],[-127.20907495831284,57.08989864600368],[-127.20896685516232,57.090073372609446],[-127.20891457441307,57.09024982343493],[-127.20894393671342,57.090427759264436],[-127.20900533285953,57.090606519033656],[-127.2090594939949,57.09078534585902],[-127.20907129696604,57.09096344448209],[-127.20902311015169,57.09113873670846],[-127.20894085902462,57.09131434462311],[-127.20884613017152,57.091487826515596],[-127.20876387748785,57.09166343436299],[-127.20871674789731,57.09183983755344],[-127.20871345812664,57.09203040503801],[-127.20870521072719,57.09219523994146],[-127.20869657371121,57.09238025298569],[-127.20868594041437,57.09260002954795],[-127.20859777327139,57.09275215526273],[-127.20859669068642,57.09291468224897],[-127.20852894331546,57.09309239732267],[-127.20847462661833,57.093269987967254],[-127.20844812591966,57.09344507933647],[-127.20847011135884,57.093618600788595],[-127.20858380988362,57.093785668629245],[-127.20873672792855,57.09395125222595],[-127.20886802571921,57.09411927762733],[-127.20897770299693,57.09428974489959],[-127.20909255237581,57.094460164176326],[-127.2092012425846,57.094631761277036],[-127.20929551288985,57.09480461278746],[-127.20936604279761,57.09497768432728],[-127.20940466058639,57.095154414110006],[-127.209422697367,57.095333576313074],[-127.20942117719578,57.09551516145046],[-127.20937130918402,57.09570279882917],[-127.20930382513279,57.095855854406956],[-127.2092738663246,57.096052273721284],[-127.20923289413548,57.09622749974917],[-127.20912869272414,57.096395466109534],[-127.20899757147322,57.09656144023426],[-127.20885185112604,57.09672306626371],[-127.20869890934269,57.09688475903843],[-127.20854909120138,57.09704754351673],[-127.2084054324175,57.097209149973864],[-127.20825141065262,57.097369731437986],[-127.20808909110141,57.097529268748694],[-127.20792673495751,57.09768768539176],[-127.2077695677765,57.09784717461619],[-127.2076238373831,57.09800879942466],[-127.20749780528627,57.09817248340064],[-127.2073966807825,57.09834042001997],[-127.20732775295629,57.09851366270811],[-127.20728788066393,57.09869111977578],[-127.20726774309809,57.09887175668636],[-127.20726109259853,57.09905451044865],[-127.20725857284492,57.099237226014466],[-127.2072518870124,57.09941885933905],[-127.20723277334602,57.09959948686097],[-127.20719182328425,57.09977583318435],[-127.20710829296742,57.099944727755876],[-127.2070377282651,57.1000003003325],[-127.2069188251798,57.10009554841789],[-127.20670232888102,57.10024101471023],[-127.20655850955282,57.100398137561726],[-127.20650609806611,57.10057122728027],[-127.20648791570856,57.100748483757705],[-127.20649158865344,57.10093114223893],[-127.20650352365686,57.10111372435146],[-127.20651129253616,57.101295224196605],[-127.20651282970626,57.10147566087317],[-127.20652571907154,57.101655992607654],[-127.20653761925506,57.10183745432535],[-127.20653499025399,57.10201680878241],[-127.20650127214631,57.10219308827612],[-127.20643340961918,57.1023674418389],[-127.20634070775527,57.10254090420401],[-127.20623864775258,57.10271221139544],[-127.20613662203606,57.102884639017084],[-127.2060377020817,57.10305703786793],[-127.20592527606505,57.1032273198437],[-127.20582527801392,57.10339860770807],[-127.2057677571413,57.10357398628123],[-127.2057485640533,57.10375237315149],[-127.20574700751352,57.10393283871237],[-127.20575683905513,57.10411431988782],[-127.20577080204451,57.10429576291303],[-127.20578266429084,57.10447610455744],[-127.20578626386131,57.10465652257271],[-127.20577639292227,57.10483594426247],[-127.20574577569344,57.10501219521557],[-127.20568825204059,57.1051875739595],[-127.2056018240992,57.105363219728],[-127.2054873940136,57.10553576167831],[-127.20534898741205,57.10570180010184],[-127.20518759138048,57.10585908416906],[-127.20500414350947,57.1060053635002],[-127.20479986065978,57.10614623084567],[-127.2045747426885,57.10628168610605],[-127.2043349165515,57.106409430995576],[-127.20408244804493,57.106529446371134],[-127.20382242318577,57.10663944360881],[-127.2035495267536,57.10673386759854],[-127.20324901942169,57.10680500844077],[-127.20293263943158,57.106863965911714],[-127.20261408735674,57.10691958017605],[-127.20230411344983,57.10698520197607],[-127.20199952179424,57.10705749835903],[-127.20169178690958,57.10712870215106],[-127.20138615178148,57.10720100669735],[-127.20108902423601,57.10728107793733],[-127.2008067068176,57.10737222038753],[-127.2005454670161,57.107476618122305],[-127.20030117301766,57.107594309271654],[-127.2000695879226,57.10772197044429],[-127.20000060932018,57.107762954105745],[-127.19984640484459,57.10785403722419],[-127.19962855172255,57.107991658710624],[-127.19941173824579,57.10812927027832],[-127.19919282232156,57.10826577998729],[-127.19896650748568,57.1083967532178],[-127.1987349830848,57.10852665308765],[-127.19849614819088,57.10865437804494],[-127.19824350678587,57.108769900338956],[-127.1979586861767,57.10884760974601],[-127.19762585127111,57.108876443198795],[-127.19723206267716,57.108905834967125],[-127.19684896414677,57.108913831995885],[-127.19674275307781,57.109020162714124],[-127.19697675121265,57.10906845357365],[-127.1973873209713,57.109080378851054],[-127.1977591091156,57.10910722938033],[-127.19808671654548,57.10914233015805],[-127.19841342324706,57.109181921659406],[-127.19873219824404,57.10923167255754],[-127.19903393016607,57.10929839152603],[-127.19932499220653,57.10938762421097],[-127.19957643348457,57.10953101968694],[-127.19983171190118,57.109665412891935],[-127.20000044732954,57.10974119801197],[-127.20004342197008,57.10976097760198],[-127.20012598326959,57.10992273707645],[-127.20012966185325,57.11010651745166],[-127.20011695256134,57.1102949318167],[-127.20013922525338,57.11047854126428],[-127.20015243799631,57.11067007977648],[-127.20018514633182,57.11085695576713],[-127.20029345777715,57.11101623686413],[-127.20050181522606,57.111136489860755],[-127.20076640293148,57.111237171311934],[-127.20106671910905,57.111324073634215],[-127.2013812886888,57.11140411916828],[-127.20169165729808,57.11148196099963],[-127.2019967484748,57.11155648825037],[-127.20232615894113,57.111615099297445],[-127.20265852084985,57.11166919904793],[-127.20297260500129,57.11173355381022],[-127.20324502966314,57.11182070829981],[-127.20345550193942,57.111942058102194],[-127.20361620760518,57.11209076622816],[-127.20374230121861,57.112256605716006],[-127.20385013365791,57.112432700933546],[-127.2039529340754,57.11261332579541],[-127.2040669152142,57.11278824336038],[-127.20420434997283,57.11295285708263],[-127.20438561882483,57.11309801225601],[-127.20463414155833,57.11321340515203],[-127.20492351320067,57.113312729002814],[-127.20521184499152,57.1134120618346],[-127.20545938260565,57.11352858314645],[-127.20564263818962,57.113671476710444],[-127.2057923040277,57.11383037186819],[-127.20591443768774,57.11400072948192],[-127.20601197261841,57.11417803923398],[-127.20608778621421,57.11435442882831],[-127.20615427553787,57.11452978374535],[-127.20622285038642,57.11470624020813],[-127.20629250246603,57.114883807532124],[-127.20636211997555,57.11506025434342],[-127.20643177334165,57.11523782163916],[-127.20650043769832,57.11541651889259],[-127.20656802606563,57.11559410526025],[-127.20663254257433,57.11577284084243],[-127.20669396849274,57.11595160499206],[-127.20675122712893,57.11612928684165],[-127.20680438887717,57.11630812739526],[-127.20685239355379,57.11648701563443],[-127.20689312298221,57.11666485032245],[-127.20692765373194,57.11684274233683],[-127.20695388412183,57.117019590287995],[-127.20697290942351,57.117197625704314],[-127.20698154905999,57.11737351551837],[-127.20697984029434,57.117549501037935],[-127.20695434094985,57.11772458572026],[-127.20690091788498,57.11789880776079],[-127.20682575344662,57.118072109966974],[-127.20673405690856,57.11824556497041],[-127.20662992569429,57.118418014033786],[-127.20651749253693,57.118589418929844],[-127.20640198564537,57.1187619729739],[-127.20628856071195,57.11893450768986],[-127.20618131765,57.119106985201526],[-127.20608449299463,57.11928160803946],[-127.2060031226832,57.11945496722317],[-127.20589285984883,57.11959721008724],[-127.20587082887327,57.11981709583827],[-127.20586798429775,57.11998972961778],[-127.20587679552433,57.12017122237953],[-127.20582965286572,57.12034874868999],[-127.20577009179584,57.12052526887293],[-127.20570634532447,57.12070070687267],[-127.2056395418806,57.120877293918575],[-127.20556961102245,57.121052788998654],[-127.20549966299215,57.12122828421651],[-127.20542973085497,57.12140377926693],[-127.205360858307,57.121580385342824],[-127.2052940165532,57.12175585182138],[-127.20522927600277,57.12193241971455],[-127.20516660149313,57.122108968521054],[-127.20510491627893,57.12228438735356],[-127.20504328221685,57.12246092653203],[-127.2049816310545,57.1226374658567],[-127.20491999585838,57.12281400502267],[-127.20485938517055,57.12299053472251],[-127.20479773231163,57.12316707402905],[-127.2047350538008,57.12334362278849],[-127.20467237471337,57.12352017154064],[-127.20460969504927,57.12369672028568],[-127.20454494807682,57.12387328809104],[-127.20448226724989,57.124049836820646],[-127.20442269423947,57.1242263568683],[-127.20436418095893,57.124403987962474],[-127.20430669225468,57.12458160959797],[-127.20424921955252,57.12475923107873],[-127.20418966299495,57.12493687177193],[-127.20412904559535,57.12511340140797],[-127.20406533569299,57.125289959552546],[-127.20399743987939,57.12546543545164],[-127.20392542632509,57.12564094930133],[-127.20384715991645,57.12581539994805],[-127.20376263849558,57.125987666567084],[-127.20366979721392,57.126158889012665],[-127.2035655253302,57.126327975107344],[-127.20344674927293,57.12649607398367],[-127.20331650717971,57.12666091593499],[-127.20317587784334,57.1268247326501],[-127.20302584913894,57.12698527332564],[-127.202870660175,57.1271458613746],[-127.20271022411272,57.12730425591154],[-127.20254764957122,57.127460428286234],[-127.2023840319716,57.12761661006914],[-127.20221832752779,57.12777169003349],[-127.20205053825791,57.12792678898559],[-127.20188069720774,57.128081906613254],[-127.2017087010994,57.12823480219113],[-127.20153364650963,57.12838884652458],[-127.20135645336839,57.12854066863586],[-127.2011771918322,57.128692509538155],[-127.20099476650293,57.12884213762963],[-127.2008091959041,57.12899067356002],[-127.20062048001508,57.129138117315605],[-127.20042860029763,57.129283348218436],[-127.2002325500131,57.12942749634166],[-127.2000217836713,57.12956393357321],[-127.2000004384347,57.12957533807739],[-127.19978375881425,57.12968829174435],[-127.19952999257762,57.12980494824202],[-127.19927311593985,57.129921632809015],[-127.19902667811432,57.1300415835181],[-127.19880336163729,57.13017365067424],[-127.19859889236533,57.130313390293495],[-127.19840385522178,57.130457526369796],[-127.19821616469433,57.130604957249005],[-127.19803165162246,57.130754600379426],[-127.19784922266875,57.13090534496958],[-127.19766680881872,57.13105608916999],[-127.19748121463186,57.13120462061351],[-127.19728830582721,57.131350977191346],[-127.19706522045358,57.13149088510499],[-127.19682962567919,57.13162754478154],[-127.19661273850784,57.131767395113776],[-127.19644577626116,57.13191687519794],[-127.19635368527899,57.132080240035684],[-127.19630528392422,57.13225217127612],[-127.19628497223594,57.13242944937669],[-127.19628335348683,57.13260991876487],[-127.19629632658318,57.13279361701409],[-127.19631755217054,57.13297723968868],[-127.19633778755029,57.133161992294085],[-127.196352758462,57.1333434306419],[-127.19637902127242,57.13352252389372],[-127.19643422603956,57.13370135201608],[-127.19644494170345,57.13387946690525],[-127.19640911689793,57.13405688735937],[-127.19635986262027,57.1342344308502],[-127.19630025483119,57.134412069183895],[-127.19623751885312,57.134588615324944],[-127.19617478229775,57.13476516145883],[-127.19611518936594,57.13494279962616],[-127.19603273379074,57.13511728465258],[-127.19590453286045,57.135283221843096],[-127.19573779701598,57.13544054503786],[-127.19552698166143,57.13557697562012],[-127.1952721215805,57.13569363388883],[-127.1949908161135,57.13579147938596],[-127.1946899074082,57.135856999291555],[-127.19426924270918,57.135895592705324],[-127.19394261011811,57.13586607487756],[-127.1936152663597,57.13584665027818],[-127.19327295218959,57.135877799342616],[-127.19296350327562,57.13586829714706],[-127.19273611523684,57.135738115188815],[-127.19249941730766,57.135608017870055],[-127.19219528320797,57.13553681930218],[-127.1918681844665,57.135491608873465],[-127.19153905599258,57.13548116209801],[-127.19121382066126,57.13549645823289],[-127.19088898420432,57.13552407912351],[-127.1905622720042,57.135558441322644],[-127.1902356452825,57.13559504359453],[-127.18990783697079,57.13562717246399],[-127.18958081032467,57.135651447530456],[-127.18925155876032,57.13567013785257],[-127.18892322812138,57.135685456448975],[-127.18859276041468,57.13569855199478],[-127.18826331790162,57.13571163737477],[-127.18793392639807,57.13572584229406],[-127.18760458748295,57.135742287574615],[-127.18727635959738,57.13576096359426],[-127.18694820072528,57.135781879831086],[-127.18662014546625,57.13580615680689],[-127.18628995311266,57.13582821069566],[-127.1859718320332,57.13587257084465],[-127.18570931585649,57.135976950526334],[-127.18546184055556,57.136099126524435],[-127.18520694640637,57.13621576519698],[-127.18493188289723,57.136315773824926],[-127.18464959026385,57.136415847441235],[-127.18436413411015,57.13651370745799],[-127.18407108640045,57.136600427312565],[-127.18376917987108,57.136668172588635],[-127.18345820753046,57.13671022008628],[-127.18313217500528,57.136733349061274],[-127.18279837959702,57.13673973498834],[-127.18246008584572,57.1367338315972],[-127.18212453981673,57.13671669410569],[-127.18179695317066,57.136689396214265],[-127.18148728372196,57.13663951871597],[-127.1811929470334,57.13655027259264],[-127.18089953368371,57.13645765497067],[-127.18059172780208,57.13640103352598],[-127.18026827977576,57.13637369442975],[-127.17993676932112,57.13635315238578],[-127.17960244198825,57.13634160162216],[-127.1792673139783,57.1363379030753],[-127.17893456334525,57.136344269717775],[-127.17860731710788,57.13636179418013],[-127.1782824642549,57.136389383735],[-127.17795166736876,57.13642599276295],[-127.17762225578025,57.13647379679833],[-127.17730256768525,57.13653496235481],[-127.17700302654374,57.13661275806863],[-127.17673091075595,57.136708239335015],[-127.17648832195528,57.13682250822988],[-127.1762647853753,57.13695117592508],[-127.17605399553389,57.13709093679839],[-127.17585270554355,57.137237336809726],[-127.17565459217376,57.137385949586935],[-127.17545755361256,57.13753567322731],[-127.1752541915232,57.1376820909718],[-127.17504129216663,57.137820748364796],[-127.17481357559475,57.13794833034701],[-127.17456680391427,57.13806151244633],[-127.17429680790283,57.138159211202904],[-127.17400673155181,57.13824251904486],[-127.17370189046768,57.13831699224231],[-127.17338852044125,57.13838257466956],[-127.17307086068423,57.13844371152875],[-127.17275424195273,57.13850483826173],[-127.1724428335752,57.13856703828369],[-127.1721325181618,57.13863146941738],[-127.17182020261451,57.138698159421345],[-127.17150467373165,57.13876151499094],[-127.1711879814643,57.138820396886764],[-127.17087002331874,57.13887144351646],[-127.17055068037297,57.138911293434745],[-127.17022988454013,57.13893770557462],[-127.16990659301283,57.13894956843392],[-127.16957873967688,57.13894802133268],[-127.16924741761979,57.138934175287964],[-127.1689147630083,57.13891025282649],[-127.16858392089858,57.138878467469496],[-127.16825601832463,57.1388410508192],[-127.16793208092885,57.138797993728176],[-127.16761627804765,57.13875037978838],[-127.16731110563504,57.138678011754756],[-127.16701571016125,57.138587622335315],[-127.16672335749992,57.13849496341929],[-127.16642938162258,57.1384168891903],[-127.16612402358219,57.13837254091867],[-127.16578634446215,57.13842150953876],[-127.16556755613391,57.13846941634355],[-127.16541253075265,57.13871065789634],[-127.16548070562663,57.13887817449032],[-127.16561820444942,57.13904731408927],[-127.16579770697611,57.139203749505086],[-127.1659974606038,57.13934543308746],[-127.16621353551326,57.13948024566239],[-127.16644088978958,57.139611594675756],[-127.16667234675509,57.13974178583987],[-127.1669027797559,57.1398719857686],[-127.16712702901454,57.14000336140763],[-127.16734926282206,57.14013587553549],[-127.16757255781542,57.14026950066064],[-127.16779578614171,57.140400884357675],[-127.16802111776194,57.14053336972605],[-127.1682484503431,57.14066359516577],[-127.16847781799694,57.14079268119556],[-127.16871838040251,57.140916062505205],[-127.16896815472039,57.141035998448245],[-127.16922097208366,57.14115366502708],[-127.16946767388046,57.141274748403376],[-127.1696990486483,57.14140157277417],[-127.16990795363985,57.14153756470614],[-127.17011200673505,57.14168368732301],[-127.17031108894038,57.141836579208125],[-127.1704907262285,57.14199637008915],[-127.17063839180959,57.142158688966],[-127.17073757756778,57.14232480474174],[-127.17077478350495,57.1424937176873],[-127.17074387281198,57.14266660368968],[-127.17066656553091,57.14284438887528],[-127.17056550398657,57.143023507741326],[-127.17046755145431,57.14320259868626],[-127.17039437741131,57.143380346724435],[-127.17037593952085,57.14355536265233],[-127.17051161403495,57.14373123940447],[-127.17068326331335,57.14390006861763],[-127.17068581232668,57.14405135897047],[-127.17044129639278,57.144172358980505],[-127.17014605652682,57.14429157123833],[-127.17001412439224,57.1444418245358],[-127.17000393917876,57.144616766611584],[-127.17004269902998,57.144802478711256],[-127.1700825014711,57.14498818148965],[-127.17012105697722,57.14516717041829],[-127.17016998655554,57.145347187273956],[-127.17017437977321,57.14552536141356],[-127.17012594666964,57.14570064625167],[-127.170064114006,57.14587717194895],[-127.16999395827439,57.146052651338806],[-127.16991761458505,57.1462281861253],[-127.16983915151435,57.14640261902254],[-127.16976176416216,57.14657816309689],[-127.16968958849978,57.146754781318414],[-127.16962667569065,57.14693019574435],[-127.169572136816,57.14710889771047],[-127.16952272501945,57.14728643293255],[-127.16947649140089,57.14746618138656],[-127.16942812098833,57.14764370728967],[-127.16937458830195,57.14782127940246],[-127.16931273221759,57.147997805170405],[-127.16923733897555,57.14817108956031],[-127.16914017029933,57.14834232711395],[-127.1689900174508,57.1485061928302],[-127.16880969706828,57.14866472407294],[-127.16863559602099,57.148823199438986],[-127.16849984757339,57.14898469407929],[-127.16843661842543,57.14915002339097],[-127.16845531018116,57.14932246593107],[-127.16853206285194,57.14949887256197],[-127.16863879598064,57.14967501100382],[-127.16875173453677,57.149851093877494],[-127.16885009456848,57.15002394458566],[-127.16894842133306,57.15019567470437],[-127.16905187699041,57.15036623804193],[-127.16915948648501,57.15053676415546],[-127.1692670462275,57.15070616981226],[-127.16937465763247,57.150876695791794],[-127.16948015106551,57.15104611982725],[-127.16954622906567,57.15121141326964],[-127.16968091864531,57.1513884217551],[-127.16968419900795,57.15152961879061],[-127.1692833180348,57.15161278707523],[-127.16898143799912,57.151686101617635],[-127.16871035774456,57.151786040219335],[-127.1684594790643,57.151903731100866],[-127.16821177778448,57.15202363477644],[-127.1679587936207,57.1521402226709],[-127.16770700438158,57.15226240361568],[-127.16745629006653,57.152385695311786],[-127.16719589994383,57.15249674367013],[-127.16691826344807,57.152585528643556],[-127.16661375753097,57.152640927597844],[-127.16628351098312,57.15266629280491],[-127.16594227518728,57.15267045919359],[-127.1656079801258,57.15266447517157],[-127.16527826882383,57.15263939506088],[-127.16494697090724,57.15259639476204],[-127.16461661406747,57.152550022710486],[-127.16429187929113,57.15251817070488],[-127.16397631996375,57.152516498940614],[-127.16367051245689,57.152562935845026],[-127.1633763888861,57.152654101746506],[-127.1631016089215,57.152768632505364],[-127.16284966417219,57.15288632198156],[-127.16262079170704,57.153013893263214],[-127.1624045828707,57.15315031823246],[-127.16219262759496,57.15329006754138],[-127.16197644963151,57.15342761237244],[-127.16174970727636,57.15355740487006],[-127.16151775027494,57.15368612248545],[-127.1612836554842,57.15381261699937],[-127.16104959307546,57.15394023164869],[-127.16081759748928,57.154067827515036],[-127.16059086479312,57.1541987387539],[-127.16036313853185,57.15433077926651],[-127.16012506869302,57.154462911220186],[-127.159911029447,57.15460267532983],[-127.1597646783758,57.15475753013319],[-127.15967984473215,57.15492865148063],[-127.15962415441763,57.155105118373974],[-127.15958620653369,57.15528703203358],[-127.15955449754287,57.15547001118369],[-127.15951651508449,57.155650804327955],[-127.15946188281522,57.15582838268777],[-127.1593780879681,57.1559994947255],[-127.15925160895843,57.15616201864861],[-127.15907736663604,57.15631824107164],[-127.15886760301207,57.15646356984297],[-127.158635720333,57.15659564425838],[-127.15839095099332,57.1567121406592],[-127.15809324857874,57.156788755286875],[-127.15777021508859,57.15684878098369],[-127.1574746465579,57.156927616974585],[-127.15723828101264,57.15704852013844],[-127.15703568700246,57.157191540764444],[-127.15683946618724,57.157340108886764],[-127.15662425495007,57.15747651550214],[-127.1564038114348,57.157610726374706],[-127.15618232381176,57.157744946113425],[-127.1559597582889,57.15787805416564],[-127.15573507162523,57.1580089389058],[-127.15550727224978,57.15813985078368],[-127.15527523281581,57.15826743720983],[-127.15503688472512,57.15839171644536],[-127.15477239905192,57.15850725945051],[-127.1544880319138,57.158615131639436],[-127.15420362944539,57.158721882669674],[-127.15393797804748,57.1588329508824],[-127.15370887186333,57.158954904375506],[-127.15353817565138,57.15909315457286],[-127.15345512017161,57.15925528963225],[-127.15344502402213,57.15943583509034],[-127.1534673040267,57.15962618242478],[-127.15347924078326,57.159816621081994],[-127.15344119166643,57.15999629249721],[-127.15332819662851,57.16016093351365],[-127.15318813873083,57.160320209022196],[-127.15303043634566,57.16047739837522],[-127.15285710777732,57.16063136285336],[-127.15267232406146,57.160783186450296],[-127.15247921304972,57.16093284153177],[-127.15228187910247,57.16108029187022],[-127.15208242407581,57.16122551891633],[-127.15188288365827,57.16136850471688],[-127.15166769949657,57.16150714468346],[-127.15143786396347,57.161640309144786],[-127.15120175314173,57.16177128678286],[-127.15096353826087,57.16190116167522],[-127.1507305357099,57.162032111084635],[-127.15050792637706,57.16216521027847],[-127.1503020171615,57.162302645495856],[-127.15012005789154,57.16244547386512],[-127.14997774142508,57.16259916164762],[-127.14991671407819,57.16277230933885],[-127.1499077774834,57.16295732803726],[-127.14991651879119,57.16314555376556],[-127.14991161905165,57.16332717444832],[-127.14992434675614,57.163509760907175],[-127.1499515739736,57.163693340661865],[-127.14997570635555,57.16387694766995],[-127.14997798909074,57.16405626355802],[-127.14993971769556,57.164229211198176],[-127.14984534923826,57.16439480644372],[-127.14970325966308,57.164556338034245],[-127.14952582857279,57.164712576074564],[-127.14932543582442,57.164862290699645],[-127.14911032356775,57.16500428848392],[-127.14888965959453,57.16513400536138],[-127.14861631231541,57.16523168020698],[-127.14831351128213,57.16531392135117],[-127.14804549325392,57.16541715242216],[-127.14768800340582,57.16550435587594],[-127.14742051170927,57.16552127554166],[-127.14709327029108,57.16554768587361],[-127.14676831509651,57.16558080042565],[-127.14644347682724,57.16561839654129],[-127.14611655196042,57.16565488929245],[-127.14579285567983,57.16569583631864],[-127.14547566709244,57.16574681315568],[-127.14517129345644,57.16581112713761],[-127.14489265064071,57.16590547796802],[-127.14463119439067,57.166020973839906],[-127.14436866032015,57.16613535777174],[-127.14408464819056,57.166223028774766],[-127.14377695599909,57.16628064342676],[-127.14345959277786,57.166326012605516],[-127.14313578775267,57.16636359139901],[-127.14280771036796,57.16639672334155],[-127.14247853937549,57.16642762231583],[-127.14215152051251,57.166461864200514],[-127.14182771305789,57.166499439757374],[-127.14150614086154,57.16654259923493],[-127.14118357504174,57.1665868874417],[-127.14086203473425,57.1666311658961],[-127.14053931752062,57.16667097042561],[-127.14021540673413,57.16670518031797],[-127.13989016923696,57.166729313327764],[-127.13954933837518,57.16675133977916],[-127.13919902150886,57.16676784377118],[-127.13885745755009,57.166765216116445],[-127.13854503823686,57.166733191616565],[-127.13835044020227,57.16669677772522],[-127.1380741689592,57.166523210301804],[-127.1378945186174,57.166362251376725],[-127.13770861283938,57.166200225840164],[-127.13748628047482,57.16606541745813],[-127.13723146019217,57.16595218752423],[-127.13696240740992,57.16584692686199],[-127.13668623915217,57.16574621094164],[-127.13641103214458,57.1656432444046],[-127.13614809118891,57.165534566444684],[-127.13590342420066,57.16541452068559],[-127.13569007299928,57.16526842289415],[-127.13549491286123,57.16510759573104],[-127.13530089667621,57.1649501209139],[-127.13508998427517,57.164816330365696],[-127.1348461544312,57.16472429665523],[-127.13455437843496,57.1646898418982],[-127.13422564492302,57.164700541085764],[-127.13387810944612,57.16474054457076],[-127.13353285755652,57.1647872523992],[-127.13320390821274,57.164825972036475],[-127.13287907959564,57.16486353427699],[-127.13255540896779,57.164905569055826],[-127.13223499829455,57.16495317901816],[-127.13192104192149,57.165008578214575],[-127.13161464857863,57.16507511962978],[-127.13132336539324,57.16516282560368],[-127.13104408021243,57.16527172317042],[-127.1307690802121,57.16538506644591],[-127.13049166258904,57.165487221588435],[-127.13020308908344,57.16556145145242],[-127.12989675681797,57.16559548373933],[-127.12957720102987,57.16560160843919],[-127.12924675538599,57.16558989291106],[-127.12891169350499,57.16556140373469],[-127.1285773284786,57.16552169923004],[-127.12824687132351,57.165474114224224],[-127.12792455914995,57.165421974719585],[-127.12761449709124,57.16536412451507],[-127.1273123495248,57.16529387602438],[-127.1270150708112,57.165213497259025],[-127.12672077337865,57.165128608752724],[-127.12642644432516,57.16504259902805],[-127.12613118912242,57.164959959171455],[-127.12583095190638,57.164884086645955],[-127.12552379516123,57.164819481477714],[-127.12520874187996,57.16476727286957],[-127.12489173544941,57.16471956369836],[-127.12457176610803,57.164676362636975],[-127.12424982710077,57.16463654027441],[-127.12392588549798,57.164598976034696],[-127.12360098400616,57.164563660938136],[-127.12327507318747,57.16452947455824],[-127.12294919577204,57.164496407928034],[-127.1226233189187,57.164463340486094],[-127.12229740982453,57.16442915167106],[-127.12173265337717,57.1643656286336],[-127.12143397223615,57.164448892496615],[-127.12113662747743,57.16454223179434],[-127.12083944507349,57.164641173232496],[-127.12054222838387,57.16473899344011],[-127.12024378750377,57.164830098400785],[-127.119945034042,57.164911117765534],[-127.11964373599255,57.164975345595224],[-127.1193407071038,57.16501604984643],[-127.11903381352036,57.16503100709371],[-127.11871699623035,57.16502475254811],[-127.11839147811902,57.16500400073412],[-127.11806037132838,57.16496872496788],[-127.11772885655694,57.164920001748456],[-127.11739913422196,57.164861174791774],[-127.11707527678031,57.164791088465364],[-127.11676155346305,57.164713068863904],[-127.11646203660845,57.16462596043345],[-127.11617995248139,57.16453309824681],[-127.11591940638685,57.16443332652408],[-127.11567707438158,57.16431994872168],[-127.1154519795181,57.16419409412429],[-127.11523900641211,57.16405804815751],[-127.11503515775173,57.16391519897894],[-127.11483834806708,57.16376556442282],[-127.11464460243985,57.163614782627256],[-127.11445183592086,57.16346175054471],[-127.1142560735662,57.16331210627108],[-127.11405418719285,57.163165876457164],[-127.11384420614309,57.16302531954875],[-127.11364119904123,57.16287573618716],[-127.11344417233275,57.16271825571264],[-127.1132430745947,57.16256305133012],[-127.11302891303166,57.16242140800011],[-127.11279272781147,57.1623046103352],[-127.11252446651787,57.16222395217035],[-127.11222916298843,57.162173786262464],[-127.11191683584548,57.16214281879352],[-127.11159150832268,57.16212765290067],[-127.1112571553182,57.16212265049161],[-127.11091576455378,57.162124432082884],[-127.11057131123351,57.1621273596456],[-127.11022781910826,57.16212803645815],[-127.10988725976249,57.16212308327015],[-127.10955466812385,57.16210685316878],[-127.10922183328442,57.16208277842218],[-127.10887466319866,57.16206330781675],[-127.10852434953927,57.162042742119155],[-127.10818001603943,57.16201427891363],[-127.10785287130435,57.161972219046305],[-127.10755208833056,57.16191088072443],[-127.10728885934114,57.1618245651201],[-127.1070662637433,57.161712125544405],[-127.10687205052085,57.161579270159265],[-127.10670011031513,57.16142941334442],[-127.10654443075174,57.16126933112081],[-127.10640090651711,57.161100179142295],[-127.10626245021956,57.16092762162907],[-127.1061229367328,57.160753952113986],[-127.10597941628656,57.160584799737876],[-127.10582371084288,57.16042359619491],[-127.10566698061322,57.16026240116727],[-127.10552038495545,57.160094395235824],[-127.10537480091365,57.15992525978001],[-127.10522110480349,57.159761796976476],[-127.10504911460956,57.15960969707016],[-127.10485071704997,57.159474632753565],[-127.10461573008988,57.15936229414184],[-127.10433991943687,57.159269354311],[-127.1040335638567,57.15919348448985],[-127.10370801688242,57.15913346773391],[-127.10337557698236,57.15908583755225],[-127.10304655500431,57.159049386022026],[-127.1027241107133,57.159025207336086],[-127.10239599194327,57.15902012990077],[-127.10206413894508,57.159028533138176],[-127.1017304259575,57.15904479704792],[-127.10139685798659,57.159065542215096],[-127.10106632004242,57.15908401933101],[-127.10073464266024,57.159099142706204],[-127.10040091288523,57.15911428252007],[-127.10006830535927,57.15913277453224],[-127.09974012413178,57.15916131594396],[-127.09942053845596,57.15920099254414],[-127.09911283556441,57.15925850174504],[-127.09881486660049,57.159330499199],[-127.09852449837554,57.159414761238516],[-127.09823951702552,57.15950682318783],[-127.09795775744439,57.15960334077412],[-127.09767607715331,57.15970209874831],[-127.09739431471915,57.159798615133944],[-127.09710932780303,57.15989067464524],[-127.09682751499682,57.15998494855554],[-127.09654571630173,57.16008034256796],[-127.09625852836142,57.160167935344724],[-127.09595570368387,57.160251175289],[-127.09563579737814,57.16035249106832],[-127.09531449460809,57.160441488597705],[-127.0950043713748,57.16048667916521],[-127.09472104991558,57.16045654866555],[-127.0944540101669,57.16038032705094],[-127.09419673960996,57.16028384811818],[-127.09394420288571,57.16017163741359],[-127.0936954369618,57.160047065527905],[-127.09344856619512,57.15991575234302],[-127.09319957990077,57.15978333558397],[-127.09294756441376,57.15965318537653],[-127.09268854197516,57.15953093912142],[-127.09242259171916,57.159419958607096],[-127.09214464575986,57.159323648635905],[-127.09185560230384,57.15923751829639],[-127.09155748263208,57.15915930896555],[-127.09125128079121,57.159087891446944],[-127.09093909722567,57.15902436897758],[-127.09062290483152,57.158965362554305],[-127.09030587852833,57.15891308731824],[-127.08998899581054,57.15886641427741],[-127.08966815229749,57.158825377655695],[-127.08934432553541,57.158788848443336],[-127.08901958408508,57.158756809378076],[-127.08869285469392,57.1587270277332],[-127.08836511501033,57.1586983745206],[-127.08803737581654,57.15866972048678],[-127.087710631381,57.158639936526],[-127.08738486650184,57.158607901942744],[-127.08706110728801,57.15857360820922],[-127.08674317351323,57.15852581528018],[-127.08644003344928,57.158452119518344],[-127.0861309577275,57.158388559864775],[-127.08581591576724,57.15833289486983],[-127.08549992729316,57.15828059947466],[-127.0851849022999,57.158226053665906],[-127.08487480443698,57.1581624995728],[-127.08456766035088,57.15809331609732],[-127.08427965409047,57.15800603986332],[-127.08400266983413,57.15790634246882],[-127.08371539214866,57.157807850700756],[-127.08342911030925,57.157708229236185],[-127.08315094612,57.15760293573873],[-127.08289121099712,57.157490763984214],[-127.08265701017115,57.15736717190603],[-127.08245764543724,57.157230961764135],[-127.08228588339841,57.157083314457466],[-127.08212634437406,57.15692884076913],[-127.08197909153824,57.15676978187644],[-127.08184101368609,57.15660616357975],[-127.08171320145449,57.15643909770712],[-127.081592527118,57.15626861017836],[-127.08147905381988,57.15609694214369],[-127.08137174043769,57.15592298141167],[-127.08126858009321,57.155750107082014],[-127.08116954263016,57.15557607776183],[-127.08107262118848,57.15540427254063],[-127.08097985412302,57.155232432908456],[-127.08089015073615,57.15505944707094],[-127.08080561103823,57.15488641848924],[-127.08072312552298,57.15471225206657],[-127.0806437351472,57.15453806002271],[-127.08056743986894,57.154363842363345],[-127.08049319868243,57.15418848687758],[-127.08041998410843,57.15401312288931],[-127.08034883860905,57.15383774178084],[-127.08027766219435,57.15366124009379],[-127.08020651799855,57.15348585895384],[-127.08013537445345,57.15331047779808],[-127.08006318910189,57.1531351052438],[-127.07998994694796,57.15295862059006],[-127.07991574267672,57.15278438552211],[-127.0798394226416,57.15260904710345],[-127.07976004063306,57.152434854796],[-127.07967756513841,57.1522606880318],[-127.07960522613074,57.15207971255348],[-127.07953797220222,57.15189533258333],[-127.07945941467531,57.15171328764317],[-127.07935734822443,57.15154152429637],[-127.07921645850753,57.151386893915294],[-127.07902239405226,57.15125399818139],[-127.07878636463896,57.15113714018911],[-127.07851860212531,57.15103175196064],[-127.07822630562951,57.15093665306578],[-127.07791882196965,57.150852887044245],[-127.07760537026896,57.150778136105664],[-127.07729215667037,57.15071122821047],[-127.07698426381403,57.15064987981949],[-127.07667332423885,57.150590797462144],[-127.07636042828585,57.150535092953675],[-127.07604655373544,57.15048163740577],[-127.07572960088264,57.15042932727886],[-127.07541272828247,57.15037925737148],[-127.07509380315753,57.150330324413964],[-127.07477388441376,57.1502825196799],[-127.07445399786052,57.1502358347257],[-127.0741331176369,57.15019027798512],[-127.07381122717253,57.15014584958683],[-127.07349036328439,57.15010141196828],[-127.07316847431036,57.15005698198952],[-127.07284762845595,57.150012542659624],[-127.07252676679941,57.14996810267907],[-127.07220694825801,57.14992365335772],[-127.07188515621563,57.149882581908045],[-127.07156132797715,57.149842647192024],[-127.0712365684861,57.14980608177105],[-127.07091179306873,57.149769515679445],[-127.070586023729,57.149734077749414],[-127.07026028626134,57.149699759570055],[-127.06993451811603,57.14966432001746],[-127.06961078750454,57.1496277421595],[-127.06928702626892,57.14959004293836],[-127.0689652713845,57.14955008486987],[-127.06864552290186,57.149507867969014],[-127.06832771844395,57.149461151126346],[-127.0680119205239,57.14941217548112],[-127.06770111493611,57.14935643337848],[-127.06740324607824,57.149282651778954],[-127.06711630849117,57.149193088791094],[-127.06683640087486,57.14909562206714],[-127.06655744354474,57.14899478455457],[-127.06627550180386,57.14889845408929],[-127.06598455802155,57.14881340464878],[-127.06567959101896,57.148744160391956],[-127.06536963326998,57.14868168103051],[-127.06505866531029,57.14862032999626],[-127.06474673477042,57.14856122770949],[-127.0644347740929,57.14850100411825],[-127.06412385672807,57.148440771294865],[-127.06381289271417,57.148379417306636],[-127.06350395221168,57.1483158044861],[-127.06319897709882,57.14824655459964],[-127.06289796952456,57.148170546843964],[-127.0625969776433,57.14809565909612],[-127.06229205349901,57.148027527531845],[-127.06197815702657,57.1479717971647],[-127.06165626824576,57.147926218333346],[-127.06132960482718,57.14789524809354],[-127.06100241213284,57.147882214370505],[-127.06067243568036,57.147880410573755],[-127.06034157183448,57.1478842172174],[-127.06001080083048,57.14789138471195],[-127.05967892546455,57.14789631869758],[-127.0593489799029,57.147895632121426],[-127.05901789921316,57.1478915914719],[-127.05868781343712,57.14788642110771],[-127.05835762061128,57.1478767675225],[-127.05802738049573,57.14786599267355],[-127.05769299002408,57.14785412977966],[-127.0573554275659,57.14784005007729],[-127.0570449424866,57.14779548845976],[-127.0568140254238,57.14767294636616],[-127.05658992421083,57.14753465738052],[-127.05632327360546,57.147429215659606],[-127.05604748071272,57.147329451381246],[-127.05577674429587,57.147225162425265],[-127.05552533921485,57.14710950861488],[-127.055294276983,57.14698136108201],[-127.05507439729566,57.14684639797984],[-127.0548524676678,57.14671145108613],[-127.05462039860763,57.146584431378315],[-127.05436800627814,57.14646990423962],[-127.05409315871776,57.14636676593951],[-127.05380014811453,57.146279464955214],[-127.05349529904547,57.14621355421236],[-127.05317942373345,57.14616006058452],[-127.05285756061308,57.14611446013754],[-127.05253174675657,57.146075615601355],[-127.05220405000097,57.146043510289424],[-127.05187761117422,57.14601923970659],[-127.05155284361818,57.1460184918812],[-127.05123390118766,57.14607934095353],[-127.05093721615283,57.146160184779326],[-127.05065027389941,57.14625664091806],[-127.05036208966507,57.14634526073365],[-127.05004706392558,57.1463982297212],[-127.04971403484679,57.146360556958676],[-127.04957234992438,57.14620926515688],[-127.04948654669495,57.1460216583826],[-127.0493844150078,57.14584202842029],[-127.04919780358814,57.14571239256554],[-127.04891144205708,57.14564071872203],[-127.04857517381313,57.145597465099925],[-127.04823483162914,57.145556484928576],[-127.04792286009118,57.14549398092105],[-127.04761684862716,57.145422461909895],[-127.04731180282097,57.1453486928351],[-127.04700582424242,57.14527829296419],[-127.04669595550254,57.14521689002919],[-127.04637934729557,57.145173473292175],[-127.04605601321484,57.14514916339865],[-127.0457248048874,57.1451394862527],[-127.04539076138792,57.14513991823254],[-127.04505578376724,57.14514371925595],[-127.04472175676699,57.14514414939284],[-127.0443916355449,57.14513670179255],[-127.04406836403638,57.1451146281088],[-127.04375068690975,57.14507009277038],[-127.04343958598216,57.14500084636659],[-127.04314550687127,57.14491128877231],[-127.04287788576556,57.144805828008174],[-127.04263370399295,57.144687850756846],[-127.04240476733877,57.14455966415551],[-127.04218496342784,57.14442467947372],[-127.04197122648442,57.14428516282759],[-127.04175750763885,57.14414564571428],[-127.04154176676593,57.144008386013496],[-127.0413321563732,57.143867714693634],[-127.0411305895828,57.14371913331237],[-127.04093110876548,57.1435705350266],[-127.04072657317927,57.14342645996052],[-127.04050886337333,57.143292576792696],[-127.04027197464563,57.14317565810718],[-127.04000574993069,57.14308250949408],[-127.03970110183283,57.14302216953934],[-127.03937322936694,57.14298218817266],[-127.03903723800457,57.1429478745951],[-127.03871028768197,57.14290340102238],[-127.03840540037203,57.14283409354464],[-127.03811566722784,57.142751215278075],[-127.03783189626279,57.14265932257734],[-127.03755214105391,57.14256291416238],[-127.03727336882642,57.14246425575216],[-127.03699461178283,57.142366717449285],[-127.0367118279506,57.142272572940925],[-127.03642401912421,57.14218407172771],[-127.03613423463572,57.14209894797938],[-127.03584238364625,57.14201383999106],[-127.03554955228907,57.14193098074543],[-127.0352556965788,57.14184812897697],[-127.03496187237039,57.141766397116314],[-127.03466801919,57.14168354403602],[-127.03437620482887,57.141599553361864],[-127.03408439174551,57.14151556204112],[-127.03379458729995,57.14142931258133],[-127.0335118182306,57.14133516121143],[-127.03324314604876,57.14122744810982],[-127.03297147255832,57.141123120617735],[-127.03267882156938,57.14104585767832],[-127.03236517604743,57.14099565927691],[-127.03204054246069,57.140960117372636],[-127.03171290656235,57.1409279607866],[-127.03138820031198,57.14088905544124],[-127.03107336503568,57.1408332593543],[-127.03076642668657,57.140762829782695],[-127.03045950302294,57.14069352018793],[-127.03014583319457,57.140642195907134],[-127.02982047988397,57.14061786222133],[-127.02948931478026,57.14060814394783],[-127.02915422485145,57.140606301366105],[-127.02882017708271,57.140604449716704],[-127.02849003793419,57.14059472083193],[-127.02816672375585,57.1405692461828],[-127.02785616784648,57.1405178919295],[-127.02755637658174,57.14044403625539],[-127.0272634250715,57.14035555571123],[-127.02697148703358,57.140265945758124],[-127.02667967031715,57.14018081741548],[-127.02639190032815,57.140092294237846],[-127.02611320472847,57.139994732758026],[-127.02584764252805,57.13988585955906],[-127.02563497944791,57.13970596011405],[-127.0105063798752,57.100000338488464],[-127.0000006552701,57.07237858182163],[-126.99837749160382,57.06810868559132],[-126.9986477541284,57.06798333496086],[-126.99881930573571,57.0678329631196],[-126.99896370618042,57.06767047101356],[-126.99909147853703,57.06750362324173],[-126.99920683794303,57.06733574975468],[-126.99930868613984,57.06716461753591],[-126.99939913269536,57.066991331183075],[-126.99948129426822,57.06681698756291],[-126.99954795610316,57.0666416420058],[-126.99959285239876,57.066463101110685],[-126.99963984114905,57.06628566490939],[-126.99969924092319,57.066109254277016],[-126.99975966375195,57.06593283579027],[-126.99982007338724,57.0657552966614],[-126.99988255879525,57.065578862335826],[-126.99994611287646,57.065403540534426],[-127.00000120440212,57.06525966415223],[-127.00001274098612,57.065227074407076],[-127.00008248487758,57.06505170509446],[-127.00015635543751,57.06487630410305],[-127.00023746897891,57.06470196824838],[-127.00032377828529,57.06452871322424],[-127.0004100868136,57.064355458164385],[-127.00049433094885,57.0641822189058],[-127.00057130162135,57.0640067939689],[-127.00063375156833,57.06382923899501],[-127.00068273753678,57.06364954589581],[-127.00073069951318,57.06346986065822],[-127.00079111345923,57.063293442025156],[-127.00087645193724,57.06312243568127],[-127.00101056660677,57.06296226208355],[-127.00121633104588,57.06281946978854],[-127.0014544373086,57.06268987749651],[-127.00170739547144,57.062575860882845],[-127.00198764526529,57.06247956570713],[-127.00227529952541,57.06238993738274],[-127.00257354576179,57.062311434270335],[-127.00280870345996,57.062187465824465],[-127.0030197117909,57.06204799253235],[-127.00325060596359,57.06191957316989],[-127.00351198319268,57.06181221262916],[-127.00378382266936,57.06171037465529],[-127.00406091545462,57.061611857841115],[-127.00434011233587,57.06151556568481],[-127.00461932432606,57.061419272809886],[-127.00489642565711,57.06132187487256],[-127.00519264060794,57.06124450211264],[-127.00549639060519,57.06117939859365],[-127.0057703131143,57.06107866111192],[-127.00604420486161,57.06097680255737],[-127.00633403201932,57.06089275209817],[-127.00663768927413,57.06082428442324],[-127.00694771184654,57.06076249125177],[-127.00726092489819,57.06070403487777],[-127.00757094549898,57.060642240229335],[-127.00786498176784,57.060561515999865],[-127.0081643599138,57.06048747417386],[-127.00848982068518,57.060463662762494],[-127.0088163504189,57.060440962994136],[-127.00914501491745,57.06042160807219],[-127.00947480732006,57.06040560577832],[-127.00980468775404,57.0603929641598],[-127.01013363285588,57.06038369114698],[-127.01046285583674,57.06038562246244],[-127.01079230160664,57.060395396339295],[-127.01112277099439,57.060405161445104],[-127.0114745147909,57.06040019112822],[-127.0117798990768,57.06039782116489],[-127.01210750876228,57.060377346215716],[-127.01243502956292,57.0603535089358],[-127.01276263852182,57.060333032341],[-127.01309254678256,57.06032150290575],[-127.01342275025257,57.060321177658956],[-127.01374151380507,57.060278352725135],[-127.01405474213901,57.060221000550904],[-127.01436155587473,57.060155852410695],[-127.01466405126149,57.06008289203278],[-127.01497617750846,57.060023304743765],[-127.0152480331495,57.059923683999095],[-127.0155113970724,57.059815162982325],[-127.01577263692245,57.05970441651805],[-127.01603812045747,57.059598119377526],[-127.01631409705395,57.05949846427365],[-127.01660792841601,57.059410997384944],[-127.01692135290004,57.05936148186417],[-127.01724581808767,57.05933989772652],[-127.01757362347213,57.0593272525608],[-127.01790361066965,57.059319072460276],[-127.0182357501136,57.05931423690802],[-127.0185679488538,57.05931164151021],[-127.01889802480429,57.05930682039364],[-127.01922707725271,57.05930200644355],[-127.0195571530378,57.05929718365807],[-127.01988725846842,57.05929348053686],[-127.02021739357336,57.05929089707978],[-127.02054654820374,57.059290561928215],[-127.02087677251092,57.05929133830086],[-127.0212060627132,57.05929548335392],[-127.02153440239013,57.05930299722402],[-127.02186397411621,57.059318345741374],[-127.02219158865314,57.05933707097535],[-127.02252025673435,57.05935690785753],[-127.02284889534,57.059375623412144],[-127.02317744479264,57.05939097664031],[-127.0235047755765,57.05939961421014],[-127.02383373871118,57.05939142713376],[-127.02416232696265,57.059369793367644],[-127.02448871869292,57.05934257236543],[-127.02481506358224,57.059314230177435],[-127.02513927151082,57.059282541773975],[-127.02546337272572,57.05924749119846],[-127.02578199435754,57.05920015486175],[-127.0260921824126,57.05914615972585],[-127.02641298647397,57.05918061824027],[-127.02673716372144,57.05922513600814],[-127.02706479326767,57.05924496962217],[-127.02739328339257,57.059258071226836],[-127.0277227237946,57.05926780231009],[-127.02805208792407,57.05927529169479],[-127.02838240217753,57.05927941054883],[-127.02871169308499,57.059283536642546],[-127.02904099755155,57.059288782532676],[-127.02937037862421,57.059296268456414],[-127.02969971330405,57.059302633180515],[-127.03003008801687,57.05930898885507],[-127.03035946945519,57.05931647227987],[-127.03068880447185,57.05932283450523],[-127.03101818615704,57.05933031626557],[-127.0313475514637,57.05933779732434],[-127.03167696347728,57.059346397917615],[-127.03200644937642,57.059358359301335],[-127.03223213603653,57.05938571143194],[-127.03264822564944,57.05931741313545],[-127.03297126678463,57.05928123150363],[-127.03329772537388,57.05925735006941],[-127.03362525360733,57.059234580068726],[-127.03394817257445,57.05919391403103],[-127.03426899738004,57.059152143069475],[-127.03459524489209,57.05915851991696],[-127.03492185450992,57.05917834190585],[-127.03524968544055,57.05920487779616],[-127.03557753050276,57.05923253349],[-127.03590426203645,57.059256835004135],[-127.03623487901858,57.05927213892425],[-127.03656647575686,57.05928519274389],[-127.03689311769112,57.05930613029182],[-127.03721107136855,57.059349550891135],[-127.03752217522826,57.05940647408461],[-127.03783034450089,57.05946902359426],[-127.0381365257013,57.0595349504307],[-127.03844180560628,57.05960536668825],[-127.03874502327254,57.05967579867688],[-127.03904934255807,57.059748462666285],[-127.03935256246605,57.05981889324892],[-127.03965680691567,57.0598893149672],[-127.03995808693128,57.05996424258943],[-127.0402584053322,57.0600414186786],[-127.0405586781004,57.060117473715955],[-127.04085993132152,57.06019127877009],[-127.04116407658952,57.0602572148735],[-127.0414740929822,57.06031189598667],[-127.04180259712786,57.06032496129124],[-127.04213662336144,57.06031332537377],[-127.04248643694277,57.06031276972897],[-127.0428180347045,57.0602877026198],[-127.04305459051656,57.06018270201263],[-127.0432573099355,57.06004771183903],[-127.04344411860272,57.05989715837546],[-127.04361727886517,57.05973774801288],[-127.04378316337096,57.05957615421081],[-127.04394600407693,57.05941682605872],[-127.04409024300843,57.05925652597189],[-127.0442146882858,57.05908965987161],[-127.04433601532408,57.05892169790867],[-127.04447190621602,57.05875810209755],[-127.04462340072355,57.05859886405734],[-127.04478109778749,57.058440696871095],[-127.04493674678041,57.05828254592003],[-127.04508612724956,57.0581222035752],[-127.04523758624102,57.057961844399955],[-127.0453838775819,57.05780152650211],[-127.04552182330023,57.05763791317902],[-127.04563384723261,57.057470024720864],[-127.04571059848257,57.05729457400731],[-127.04580081265243,57.0571212567202],[-127.04591553083769,57.05686256676552],[-127.04595537934841,57.056772588064476],[-127.04600214227466,57.056595136415325],[-127.04604372458581,57.05641660560909],[-127.04608220350396,57.056238099716005],[-127.04612170539208,57.056059585620964],[-127.04616744336087,57.05588214221566],[-127.04622141696538,57.05570463270625],[-127.04628264977785,57.055528185655696],[-127.0463469849634,57.055351713688154],[-127.04641130305347,57.05517524184344],[-127.04646944774966,57.0549988195507],[-127.04651826923913,57.05482135137494],[-127.04654642893942,57.05464292837369],[-127.04656214893004,57.05446236380624],[-127.04658202540394,57.05428288661715],[-127.04662155346608,57.05410549310771],[-127.04667553898437,57.053927983501275],[-127.0467357271134,57.053751544810254],[-127.04680005724666,57.053575072841134],[-127.04686334702897,57.05339860921409],[-127.04692457322314,57.05322216215027],[-127.04697853959824,57.05304465266187],[-127.0470232302804,57.05286721768797],[-127.04705963812054,57.052688728528786],[-127.04708982619994,57.05250916861719],[-127.04711591859531,57.05233076235947],[-127.04713785433214,57.052151268781564],[-127.04715772692411,57.051971791798216],[-127.04717451318665,57.05179233963221],[-127.04719025958046,57.05161289584107],[-127.04720394291614,57.05143346864711],[-127.0472010923939,57.05125305359798],[-127.04719104404323,57.051073817141834],[-127.04719132670044,57.05089449769493],[-127.0472153241385,57.050714987710215],[-127.04725481509222,57.05053647396987],[-127.04730051074228,57.05035791037427],[-127.04734310345086,57.05017937171908],[-127.04737331875866,57.05000093254685],[-127.04737767918252,57.0498204597242],[-127.04731601547165,57.04963939681927],[-127.04714998719813,57.049490553034246],[-127.04689655767555,57.049389481927854],[-127.04661654329344,57.04925948485817],[-127.0464737312495,57.04909140140522],[-127.04629930504085,57.048937020424205],[-127.04612674611059,57.048774779135485],[-127.04597571744787,57.0486078819163],[-127.04587204194198,57.04843724232559],[-127.04583649878892,57.04826829735988],[-127.04586480923695,57.04809547775864],[-127.04594047063145,57.04791891593259],[-127.04605329065835,57.04774317653044],[-127.04619101453291,57.04757284075569],[-127.04634441258159,57.04741022409503],[-127.04650629004456,57.04725538426969],[-127.04667640041826,57.04710047812158],[-127.04685483761415,57.04694774632136],[-127.04704051497023,57.04679607683578],[-127.04723453302482,57.04664770224657],[-127.0474358826785,57.04650375135488],[-127.04764664305856,57.04636420740973],[-127.04786481257018,57.046231327917255],[-127.04809136727106,57.04610398425922],[-127.04834105342916,57.04599214431242],[-127.0486180244801,57.04589801597413],[-127.04891280966982,57.045813830204295],[-127.04921387309885,57.04573295539625],[-127.04950966468834,57.04564763943317],[-127.04978970195106,57.04555236315971],[-127.05006023374641,57.04544931777953],[-127.05032868740484,57.04534516785595],[-127.05059499930674,57.045238793186364],[-127.05086028669986,57.04513242623096],[-127.05112451896541,57.04502494651451],[-127.05138873325357,57.04491746640375],[-127.05165296256531,57.044809985632085],[-127.0519171432495,57.044701383984986],[-127.05218242327864,57.04459501437842],[-127.05244874135862,57.04448863584345],[-127.05271614232706,57.04438448946838],[-127.05298560437217,57.04428032588458],[-127.05325721954358,57.04417950652009],[-127.05353092650158,57.044079790400595],[-127.05380878776202,57.04398116083177],[-127.05408979452787,57.043884746676234],[-127.05437399404506,57.04379166825924],[-127.05466247081998,57.043704158238235],[-127.05495519421079,57.04362109610408],[-127.05525225653113,57.04354584326575],[-127.05555469742683,57.043478391271044],[-127.05586681009478,57.0434254296634],[-127.05618640927771,57.04338249317396],[-127.05651138766066,57.04334735737875],[-127.05683852029883,57.04331556548165],[-127.05716459860913,57.04328266058526],[-127.05748745116435,57.0432452981347],[-127.05781024145071,57.04320569392834],[-127.05813306190242,57.043167209401695],[-127.05845478054886,57.04312649156411],[-127.05877113467716,57.043077971417546],[-127.05908305451962,57.0430182792527],[-127.05940838757685,57.04295847727654],[-127.05973773538858,57.0428952796425],[-127.06005241442153,57.04282323468102],[-127.06033573755789,57.042736874653755],[-127.0605699824521,57.0426284989219],[-127.06074148785314,57.04248925314289],[-127.06086062792917,57.04232129456664],[-127.06093596183268,57.042135760941925],[-127.06097817301686,57.04194601410201],[-127.06099895336762,57.04176428688669],[-127.06100127928165,57.04158719288361],[-127.06098602147586,57.0414080006354],[-127.0609562963965,57.04122780548939],[-127.06091523693027,57.041047702655256],[-127.06086491998386,57.04086879593998],[-127.06080943943373,57.04068993127382],[-127.06074991306775,57.04051334100471],[-127.06065749739348,57.04034150139627],[-127.06053838182083,57.04017324127137],[-127.06042435298359,57.040002698210536],[-127.06034428279774,57.03982963725353],[-127.06029091582957,57.039651876053966],[-127.0602498755521,57.0394728938189],[-127.06022941292245,57.039291502688194],[-127.0602337426987,57.039112151275106],[-127.06026495976556,57.0389348225249],[-127.06031163498778,57.038757367980445],[-127.06037068307575,57.03857981273489],[-127.06044007254465,57.03840329403105],[-127.0605198032577,57.0382278118521],[-127.06060784379031,57.038054503440726],[-127.06070518598472,57.03788223997784],[-127.06081606327167,57.03771434914523],[-127.06094869324659,57.03754964325918],[-127.06109374032215,57.037387077562514],[-127.06124188763472,57.03722448645843],[-127.06138384729219,57.03706194560617],[-127.06151025528682,57.03689616915266],[-127.06161078470993,57.03672724129969],[-127.06169777759067,57.03655394080369],[-127.06177856896076,57.0363795700845],[-127.06185103288352,57.03620302575898],[-127.06191625618007,57.03602541970749],[-127.06197220781253,57.03584788922275],[-127.06201780119795,57.035669322452314],[-127.06205412318455,57.0354908312714],[-127.06208013463333,57.03531242416087],[-127.06209481292076,57.03513410946541],[-127.06209707151078,57.03495477532555],[-127.06209212128802,57.034775499982096],[-127.06207892310435,57.034596291907434],[-127.06206054737368,57.0344160053442],[-127.06203910153042,57.034236864555176],[-127.06201556297803,57.034056620125405],[-127.06199408660946,57.033876358903925],[-127.06197366410554,57.033697209834145],[-127.06195837396582,57.03351689822254],[-127.0619482779863,57.033337665011025],[-127.06194022753024,57.033158415146346],[-127.06193318542175,57.03297803636242],[-127.06192617431161,57.032798778070216],[-127.06192020246232,57.032619511328456],[-127.06191418324195,57.032439124274305],[-127.06190821150436,57.032259857577074],[-127.0619012006415,57.03208059937369],[-127.06189518159455,57.031900212386724],[-127.06188817085791,57.031720954227694],[-127.06188322202478,57.03154167928253],[-127.06187824230794,57.031361283891464],[-127.06187227090518,57.0311820173278],[-127.0618621594451,57.03100278453709],[-127.06184690182728,57.03082359372021],[-127.06183265256593,57.0306432739856],[-127.0618194260812,57.03046294593557],[-127.06180306789066,57.03028152271753],[-127.06177854115654,57.030102407547545],[-127.06173959682123,57.02992453064037],[-127.0616811363894,57.02974905426086],[-127.06159700583855,57.02957714926033],[-127.06149128152667,57.029407661651234],[-127.06137115705532,57.02923941204569],[-127.06124384032627,57.02907234167679],[-127.06111756379835,57.028905262737716],[-127.0609984816208,57.02873700438216],[-127.06089070057514,57.02856753317951],[-127.06078498214913,57.02839804511675],[-127.06065282568511,57.02816713282682],[-127.06042957555397,57.028035585270466],[-127.06020631256429,57.02790291674341],[-127.06000241231192,57.027762245257385],[-127.05980660573415,57.027615904035585],[-127.05962203873152,57.02746610895595],[-127.05946410548727,57.02730937269488],[-127.05934301908896,57.02714337084865],[-127.05925168085582,57.026971523401805],[-127.05917365944661,57.02679620547385],[-127.05908943752895,57.02662093794734],[-127.05898167081972,57.02645146541563],[-127.05884510492828,57.02628446839093],[-127.05871373317399,57.0261185497452],[-127.05862243101494,57.025947822444586],[-127.05859697532786,57.02577207705713],[-127.0586209038853,57.025592568142024],[-127.05865920113477,57.02541070101617],[-127.05867793634613,57.02523011363181],[-127.05865342737988,57.02505099850544],[-127.05861222531618,57.02486529480095],[-127.0585423028448,57.02468430740742],[-127.0584243907725,57.02452052073833],[-127.05823716069698,57.0243853151094],[-127.05798560425886,57.02427304609616],[-127.05769939085238,57.02417450665454],[-127.0574110701865,57.024074862998575],[-127.05714925829565,57.02396379641098],[-127.05691683791233,57.023834559379814],[-127.0566874414304,57.02370305599645],[-127.05643690216216,57.02358965515216],[-127.05613387497291,57.02351702517746],[-127.05580866539866,57.023462505751986],[-127.0555259777919,57.02337962307592],[-127.05529882032161,57.023253702763945],[-127.05509386225548,57.023110791542955],[-127.0549122819253,57.02295536282655],[-127.0547573473309,57.02279411451924],[-127.05463942644957,57.02262920417652],[-127.05457070270833,57.022453808967825],[-127.05451938643853,57.02227378994773],[-127.0544547251376,57.02209612041239],[-127.0543449915923,57.02192890219505],[-127.05418603296675,57.02177104808869],[-127.05401886110019,57.02161438100346],[-127.05387523387063,57.02145191964041],[-127.05374898365898,57.021283713984836],[-127.05369164236222,57.021109347134164],[-127.05368572488078,57.02093120207427],[-127.0536993363374,57.02075065759951],[-127.05372223155346,57.02057003802369],[-127.05373895701624,57.02039058909971],[-127.05375360689405,57.02021003628081],[-127.0537631260118,57.0200306457103],[-127.05374893282004,57.019851447044545],[-127.05371620539856,57.01967239837818],[-127.0536865618311,57.01949332477498],[-127.0536816527783,57.01931405104854],[-127.05371178377914,57.0191344938076],[-127.05374194518171,57.01895605704259],[-127.05373599711592,57.018776791791524],[-127.05370527045363,57.01859548565664],[-127.05363345822086,57.018420115530425],[-127.05351552488266,57.01825408421212],[-127.05337605105049,57.01809158919327],[-127.05322323425399,57.01793144339277],[-127.05306632718325,57.01777245122769],[-127.05291044371253,57.01761345062481],[-127.05272671444263,57.017453554284025],[-127.05252646742254,57.01729267052444],[-127.05234898577211,57.0171349646245],[-127.05224312190626,57.01695762776557],[-127.05227582846801,57.01683408571187],[-127.05255156871625,57.016702975785776],[-127.05285199825346,57.01660752825446],[-127.05316053743002,57.01654451492597],[-127.05348274013964,57.016491476674595],[-127.05379544429363,57.016430669546715],[-127.0540754731854,57.01634322921974],[-127.05432479538429,57.01622577784616],[-127.05454782316659,57.01608948693914],[-127.05474374919324,57.015942208125],[-127.05491371872002,57.01578841507787],[-127.05505660333527,57.01562363422107],[-127.05515907433436,57.015451335782174],[-127.05520992800305,57.01527609348608],[-127.05521637015127,57.01509784900183],[-127.05519905810813,57.01491755563834],[-127.05517347174278,57.014736208646475],[-127.05516028192541,57.014555881918994],[-127.05516767072518,57.01437426773893],[-127.05525780315133,57.01420319003881],[-127.05540176407095,57.01404064161216],[-127.05557269979745,57.01388459857584],[-127.0557739863044,57.013745119790705],[-127.05601908675067,57.013625458029765],[-127.0562777433617,57.01351128935283],[-127.05652387943022,57.013391618234465],[-127.05676059450289,57.013266419589634],[-127.05696797800225,57.01312464806057],[-127.05716384889769,57.01297624545293],[-127.05737761305186,57.01284114569469],[-127.05764290473101,57.012743730978244],[-127.0579628854125,57.01268621670393],[-127.05828185729115,57.01262983054258],[-127.05853778732049,57.01252912796687],[-127.05871488605791,57.01237303070345],[-127.05890038071423,57.01222246844245],[-127.05905933987785,57.01211919137045],[-127.05906793344393,57.01194429154957],[-127.05920126735296,57.01180872232965],[-127.05941935966399,57.011644445691296],[-127.05957774963719,57.01148289600457],[-127.05968434173435,57.011311681409175],[-127.05980027619012,57.0111426320976],[-127.05992658939742,57.01097686030964],[-127.06006746654379,57.010815452639434],[-127.06023120999883,57.01066170353631],[-127.06042191224132,57.010513338168494],[-127.06063658076125,57.01037486360856],[-127.06086794949893,57.010244097536265],[-127.06111202060269,57.01012555525979],[-127.06137076217964,57.010015858549615],[-127.06163996020635,57.009911679570216],[-127.06191442387198,57.00981193989312],[-127.06219096326925,57.0097121826968],[-127.06246330156272,57.00961021778704],[-127.0627283106068,57.0095038293191],[-127.06291974010553,57.009382351232205],[-127.06311043931021,57.00927208586191],[-127.06343726388957,57.00912820791889],[-127.06362385588201,57.008980992134525],[-127.06377606635579,57.008820608595535],[-127.06390226190992,57.00865147186699],[-127.06408178433719,57.00850991673173],[-127.06436988168116,57.008419026026445],[-127.06462651091904,57.00830821937346],[-127.06480469706884,57.00815546713863],[-127.0649610825109,57.007997289495684],[-127.06511018443058,57.007836929858605],[-127.06526865889117,57.007679855470705],[-127.06544583208124,57.00752823137186],[-127.06565110861952,57.00738646330651],[-127.06586786347872,57.00725020445034],[-127.06599117935627,57.007088934258185],[-127.06606872835663,57.00691234893641],[-127.06619394764071,57.0067454594754],[-127.06636068622464,57.00658943681898],[-127.0665776514101,57.00646101999022],[-127.06688676718082,57.00638564128517],[-127.06719300022282,57.00631813038797],[-127.06750454700203,57.00625617869994],[-127.06781500861675,57.00619199375794],[-127.06812133176395,57.006127842027446],[-127.0684307839382,57.00606478459066],[-127.068740328426,57.006005087761636],[-127.06905196353595,57.00594649372422],[-127.06936469842387,57.005890131305236],[-127.06967848551939,57.005834880185695],[-127.06999338713598,57.005782981250555],[-127.07027317284037,57.00576499134523],[-127.07061277740648,57.00567478391228],[-127.07090093162648,57.00558724027108],[-127.07119012299725,57.00549968745204],[-127.07148895102955,57.00542550309185],[-127.07179944521313,57.00536354971176],[-127.07209934067625,57.005290475852696],[-127.07239491038112,57.00521071271919],[-127.07269268065714,57.00513541358487],[-127.07299677069099,57.0050656651828],[-127.07330303024088,57.00499926028382],[-127.07360927225096,57.004932854803386],[-127.07391552968768,57.00486644846961],[-127.07421859342277,57.004796705657654],[-127.07451950183444,57.004723617818286],[-127.07481297049583,57.00464274578961],[-127.07509898446585,57.00455296904296],[-127.07538185216816,57.00446097624992],[-127.07566786346105,57.0043711982646],[-127.07596239676907,57.004291435527],[-127.07626653686542,57.00422392041505],[-127.07657712415856,57.00416531688591],[-127.07689088684236,57.004110048448084],[-127.07720570191738,57.00405589124231],[-127.0775183781442,57.003998388866805],[-127.07783001501912,57.003940894341035],[-127.07814267289666,57.00388339060703],[-127.07845540910313,57.00382812687346],[-127.07877132088338,57.00377619817398],[-127.07908841078265,57.00372986245086],[-127.07941091034849,57.00369244671455],[-127.07973666517022,57.00366060668786],[-127.08006246584391,57.003631006867906],[-127.08038606493506,57.00359582098654],[-127.08070324577099,57.003552842662025],[-127.08101385235994,57.00349534901658],[-127.08131907865683,57.00343005439735],[-127.0816210163053,57.00335806216462],[-127.0819197446297,57.0032816130882],[-127.08221741835403,57.00320405138525],[-127.08251611279131,57.00312648050705],[-127.08281589096794,57.00305114132876],[-127.08311461453798,57.00297468952647],[-127.08341222041456,57.00289488422587],[-127.08371094158792,57.00281843106341],[-127.08401511955901,57.00275313879865],[-127.08441969000971,57.00273968252369],[-127.0846816420561,57.00271172369346],[-127.0849935622538,57.00270127908276],[-127.0853150968393,57.002740064519394],[-127.0856357365631,57.00278333944721],[-127.08596838638135,57.002777202419665],[-127.08622716580776,57.00267305907618],[-127.08647409811776,57.00255108284172],[-127.0867621928828,57.00246350428311],[-127.0870860607973,57.002438385732404],[-127.08741846937272,57.00242440206099],[-127.0877512424433,57.00242274223719],[-127.08807723967567,57.00243682806241],[-127.08838799044368,57.00249474802721],[-127.0886940902142,57.00257063743197],[-127.08901136488343,57.002603845865046],[-127.08934580275738,57.00258871959366],[-127.0896617213893,57.00253788494969],[-127.0899256164012,57.00243257064371],[-127.09016935811198,57.00230725191216],[-127.09041113319299,57.00218531131049],[-127.09064872276194,57.00206116391967],[-127.09087356835988,57.00192367444783],[-127.0911741327841,57.0017676185623],[-127.09139949204003,57.001793746713304],[-127.0917059950488,57.00184721152938],[-127.09196270918306,57.001961611393234],[-127.09221242826212,57.002083914404096],[-127.09248409686566,57.00218025651673],[-127.09279565143532,57.00223031430487],[-127.09312712592038,57.002255548549996],[-127.09345272184001,57.00229203839289],[-127.09377539540243,57.00233415551187],[-127.09409882432016,57.00233031656184],[-127.09442449175457,57.002296198935035],[-127.09474690067265,57.00225650436771],[-127.0950658915833,57.00220563069712],[-127.09538623883152,57.002165951881906],[-127.09571270100898,57.00215984197087],[-127.0960405677728,57.002167167883],[-127.09637068637244,57.00218119823861],[-127.09670070945332,57.00219186644578],[-127.09702940698627,57.00219245863473],[-127.09735767386671,57.002177363737566],[-127.09768592400776,57.00216226815171],[-127.09801524421431,57.002148283415714],[-127.09834237606452,57.00212983348516],[-127.0986661057046,57.00210020438294],[-127.09898635240606,57.00205715540136],[-127.09930324382715,57.00200516831275],[-127.09961609440964,57.00195545599837],[-127.09994212403545,57.00197063254119],[-127.10023269993407,57.002007401390145],[-127.1006053821837,57.00203226828185],[-127.10092478353002,57.00203180852248],[-127.10122899018621,57.00196871694284],[-127.10152734818271,57.00188101858912],[-127.10180046900754,57.00177560186842],[-127.10203187073442,57.00165260649241],[-127.10221406222811,57.0015020097636],[-127.1023691002474,57.00133931498679],[-127.1025149064128,57.001177818938906],[-127.10265031415285,57.0010130487081],[-127.10276812119118,57.00084506535134],[-127.10286003848226,57.0006728184492],[-127.10291889613245,57.000497489523895],[-127.10295290307026,57.00031788835554],[-127.10297657689951,57.00013725405888],[-127.10296438800329,56.99999951051966],[-127.10294994110325,56.99981919930858],[-127.1030512301827,56.99965023506288],[-127.10324695118864,56.99950512584515],[-127.10349602992761,56.99938870229431],[-127.10376823436896,56.99928777202194],[-127.10404358353486,56.99918905591029],[-127.10431049813113,56.99908368654418],[-127.1045805895784,56.99898165178074],[-127.10485066392052,56.99887849589153],[-127.10510704870354,56.9987653693271],[-127.10533081732035,56.99862898444596],[-127.10532075376622,56.998457601993536],[-127.10533310906463,56.99827818422624],[-127.1053135742221,56.99810015802377],[-127.10519844991971,56.9979296678456],[-127.10521704997446,56.997752438536644],[-127.10532961326317,56.99758225618006],[-127.10547336496347,56.99742189516262],[-127.10562744755681,56.997262566934],[-127.10578881138545,56.99710541807243],[-127.10595119564012,56.99694826034497],[-127.10611570290534,56.9967933257853],[-127.10628538267439,56.9966394677578],[-127.10645713750802,56.99648559187184],[-127.10662785276277,56.99633172460369],[-127.10681514267628,56.99618107826593],[-127.10695482755284,56.996022991664645],[-127.106951668971,56.995841464523195],[-127.10696093422501,56.995662073135485],[-127.10696916120952,56.99548269060019],[-127.10698872568378,56.99530321164657],[-127.10703407877949,56.995124634041744],[-127.10710217006798,56.994949225111945],[-127.10715788590169,56.99477280074639],[-127.10718980817285,56.99459321670223],[-127.1072073113368,56.994413755350436],[-127.10721141726623,56.99423440800391],[-127.10720008281608,56.99405519204909],[-127.10715170426703,56.993877411988024],[-127.10710436429974,56.993699623098806],[-127.10708375324621,56.99352048612566],[-127.10706212073721,56.99334135786274],[-127.1070332874978,56.9931622908772],[-127.10700135665728,56.992983250260345],[-127.10697357781245,56.99280529504194],[-127.10694164754557,56.992626254454315],[-127.10690665195806,56.9924483606587],[-127.10681515158086,56.99227543029979],[-127.10673185864827,56.99210130939944],[-127.10666807742822,56.991924781135545],[-127.10664952904159,56.99174562679484],[-127.10664231729464,56.99156637606422],[-127.10661248146265,56.99138843845778],[-127.10652408265224,56.99121548167594],[-127.10639979348637,56.99104843352861],[-127.10633703711417,56.990871896543474],[-127.10627736252603,56.990695333353756],[-127.10620537941635,56.99051999550075],[-127.10612314678959,56.99034698616109],[-127.10603371452717,56.99017403799353],[-127.10594837007827,56.98999993434899],[-127.10585279282684,56.98982815903924],[-127.10576336298337,56.98965521074732],[-127.10568523762846,56.98948104566347],[-127.1056142810248,56.98930569894858],[-127.10555153109321,56.989129161795276],[-127.10550006879635,56.98895140803855],[-127.10546406168056,56.9887735229817],[-127.10536949547021,56.98860061821784],[-127.10534065717397,56.988421551578476],[-127.10540566331072,56.988246170515154],[-127.10542009090481,56.98806673635875],[-127.10545204788323,56.98788827398965],[-127.10533820010522,56.987725619416345],[-127.10510685825741,56.9875964629631],[-127.10489397313422,56.98746378730264],[-127.1048055102874,56.98728858911048],[-127.10473559968636,56.987113233365655],[-127.10467697621691,56.98693666108306],[-127.10461423444144,56.98676012376363],[-127.1045525147097,56.98658357776357],[-127.10449904963076,56.986406961686704],[-127.10446713617152,56.98622792127564],[-127.10445066015005,56.98604874983785],[-127.10443316283227,56.98586958709055],[-127.10440125012455,56.98569054672905],[-127.10437757513401,56.985511436460314],[-127.10418921696129,56.985335965351794],[-127.103957642691,56.985233705868296],[-127.10380635160513,56.98512964419932],[-127.1036853195263,56.98496704956601],[-127.10369459737757,56.98478765974621],[-127.10370489655874,56.98460826128274],[-127.10360233602123,56.98444326855758],[-127.1034005345751,56.98430153136085],[-127.1032456487983,56.98414370633357],[-127.10314395240427,56.9839731025305],[-127.10299720979658,56.98381184613477],[-127.10289241825845,56.98364126843129],[-127.10272631583348,56.98348690006299],[-127.1024757826925,56.98318979831999],[-127.10279774669735,56.98299655175442],[-127.10296201454507,56.98283490013545],[-127.10323618906905,56.982699212963546],[-127.10369386542921,56.98253395125365],[-127.1039318627361,56.982394086744726],[-127.10438696540452,56.98206746468676],[-127.10517150838774,56.981738042798426],[-127.10559985377999,56.98162793742428],[-127.10591924714898,56.98148961887055],[-127.10622213298981,56.98135031920453],[-127.10647608045899,56.98122824546051],[-127.10674391746342,56.98112398413131],[-127.10709499433797,56.98101341042696],[-127.10738239793292,56.98090898125504],[-127.10771645042021,56.9807794990054],[-127.10806826905367,56.98065883010301],[-127.10838764552344,56.980520505581026],[-127.10870596039831,56.98041693077696],[-127.10907195490311,56.98032415562607],[-127.10942324370646,56.980221418619706],[-127.1097091131141,56.98010018695923],[-127.10999447603882,56.97999689006361],[-127.11030470754298,56.97989898374514],[-127.11065425713831,56.979771602997104],[-127.11098461949359,56.979693695629216],[-127.11138030425582,56.97959505689416],[-127.11168315545098,56.97945574469476],[-127.11200353023929,56.97931740268211],[-127.1123071559031,56.979169116860085],[-127.11255053601208,56.978967552365674],[-127.11278663413431,56.978763808330825],[-127.11287302338825,56.9785815171898],[-127.11307218548743,56.978382571410414],[-127.11339490314433,56.97807610214449],[-127.11426595987955,56.9775744186208],[-127.11492907823771,56.977217960189044],[-127.11522483007224,56.97711904544028],[-127.11564816368697,56.97687446664723],[-127.1157503933244,56.976813072471764],[-127.11587547686108,56.97661699921519],[-127.11687739430458,56.97587210621245],[-127.1178457260425,56.97524852876359],[-127.11808175021514,56.97515012074826],[-127.11875072833529,56.97513988580138],[-127.1196365407176,56.974973125765956],[-127.12135035217831,56.97417611986396],[-127.12318140001958,56.972387388745105],[-127.12457828377445,56.971567300791236],[-127.12548250860269,56.971083186084364],[-127.12622738087761,56.97088958291221],[-127.12654766515573,56.970540516012264],[-127.12672034035519,56.969967468759535],[-127.12643572701913,56.969317693453384],[-127.1262645121052,56.96870840133366],[-127.12639466645373,56.96812451655354],[-127.12658590782124,56.96776424007319],[-127.12775713943556,56.96771934722534],[-127.1281029495186,56.96771634792908],[-127.12825125224927,56.96771842344363],[-127.12854683679537,56.967722582825274],[-127.12882697522116,56.96772687561119],[-127.12899070774866,56.967728816349585],[-127.12932001783585,56.96772483637142],[-127.1296488324802,56.96773879086882],[-127.1299758353716,56.9677617257834],[-127.13035484293111,56.96776739755001],[-127.13074932967952,56.96777405431194],[-127.13112527323517,56.96781561250296],[-127.13152801063612,56.96782331583436],[-127.13195920312872,56.9678531840154],[-127.13233496722813,56.967958619549385],[-127.13269522097693,56.96799134433828],[-127.13304048990088,56.96800514697879],[-127.13336853450836,56.96802806432868],[-127.13353231797375,56.9680311196082],[-127.13390979787305,56.96805472538664],[-127.13411990536277,56.96809323807004],[-127.1344040517964,56.968163604595006],[-127.13447842034358,56.96820666275057],[-127.13473002283868,56.96846558833871],[-127.13482766826446,56.96863508116268],[-127.13495301281975,56.968800970142134],[-127.13509774051583,56.96896108640136],[-127.13527201179643,56.96911085841958],[-127.13545855267475,56.96925716103671],[-127.13566749059977,56.96939542300071],[-127.13590386446852,56.96952111742848],[-127.1361218786417,56.96965257529414],[-127.13621554836236,56.96982658478737],[-127.13627840734574,56.970003104819156],[-127.13637713402056,56.970173707994334],[-127.13650250683494,56.97034071619988],[-127.13660734487482,56.97050902446735],[-127.13674600939524,56.970672554257376],[-127.13688464203041,56.97083496351459],[-127.13702841401086,56.970997327721506],[-127.13715489599007,56.97116656712745],[-127.13747088315212,56.97119854539867],[-127.13803738170773,56.97127652090888],[-127.13835582635033,56.97132192385741],[-127.13867331691571,56.97136957577317],[-127.13898096260135,56.97143300284139],[-127.13928931550114,56.971485216066554],[-127.13961444637212,56.971512626305284],[-127.13993560981132,56.9715456739764],[-127.14022740356901,56.971629409554915],[-127.14050793655043,56.97164600162307],[-127.14078726801176,56.9715875171508],[-127.14111376250176,56.97159137713141],[-127.1414169648328,56.971643630544385],[-127.14164922084187,56.97176823045189],[-127.14196966598793,56.9718113656925],[-127.14229078396534,56.971842166605335],[-127.14259924431299,56.971897733205765],[-127.14286553827476,56.97198953183783],[-127.14320158424944,56.97203813046327],[-127.14352300440939,56.97207901196035],[-127.14382957613535,56.97214019576366],[-127.14410626765977,56.972235262554015],[-127.14443335059664,56.972259281589956],[-127.14475934627605,56.9722810679867],[-127.14508716783965,56.97229499262754],[-127.14541423505244,56.97231788865074],[-127.14572176612367,56.9723768182076],[-127.14601655848561,56.97245715251041],[-127.14633426791006,56.97251150817481],[-127.14659542704942,56.972396015853086],[-127.14680875235902,56.97226413434657],[-127.14707874336172,56.972168735694105],[-127.14740611101111,56.97220171032047],[-127.14768768311741,56.97228776095375],[-127.1479109413561,56.97242027421758],[-127.14798736465653,56.972601152476436],[-127.14822110761062,56.97267081372016],[-127.14856264281106,56.972661073952665],[-127.14889108911514,56.97266153517523],[-127.14922070667592,56.97266646800596],[-127.14954926979954,56.97267028862506],[-127.1498770295218,56.97268196039523],[-127.15019934942073,56.97271833478006],[-127.15041169110202,56.97276128466399],[-127.15083532132259,56.97281133041735],[-127.15115687318954,56.972821933209026],[-127.15148388150423,56.97284257317654],[-127.1518061372678,56.97287670278192],[-127.15212364080605,56.97292432206172],[-127.15243322859492,56.97298209699202],[-127.15274485950904,56.97303985308805],[-127.15303466728156,56.97312469866533],[-127.15333836744246,56.973192609952676],[-127.15365299701014,56.9732469752234],[-127.15395276613785,56.97332052345931],[-127.15425929716314,56.973379441929985],[-127.15454608171498,56.97346655243819],[-127.15483286756364,56.97355366231929],[-127.15511567169465,56.973645289742024],[-127.15541845932304,56.973716566467026],[-127.15573093656225,56.97376758381729],[-127.15605419132021,56.97380057344584],[-127.15636302350619,56.97386731148325],[-127.15663266201258,56.973965776925894],[-127.15675508876197,56.9741339138203],[-127.15687610886584,56.974289735441026],[-127.15714056291064,56.9743871253095],[-127.15739825853993,56.97449914389923],[-127.15762862570234,56.97462709503334],[-127.1578519152182,56.974759591589844],[-127.1580893646177,56.97488299611091],[-127.15834100830838,56.97499954961146],[-127.1585936237492,56.97511385259042],[-127.15885434098938,56.975223600114894],[-127.15908066716995,56.975353826227064],[-127.15930803251254,56.975484042708594],[-127.15952117366736,56.975621109828595],[-127.15968333482282,56.97577432097877],[-127.15983947301793,56.97593318916925],[-127.16007427107085,56.97589971565508],[-127.16029007658933,56.97554364901686],[-127.16034826323386,56.97535597278774],[-127.16047361262642,56.97514192121968],[-127.16066468112389,56.97495642136383],[-127.16053946625222,56.97449132697804],[-127.16065792712088,56.97432216481951],[-127.16114590193197,56.97414858364243],[-127.16181460960676,56.97399355897259],[-127.16202159483991,56.973789983770025],[-127.16224283941828,56.97364904006876],[-127.16231051287737,56.9736058487063],[-127.16259568658872,56.97350243691786],[-127.16287980384323,56.97339791324263],[-127.16316572496046,56.97328552790356],[-127.16341814697834,56.973154389670185],[-127.16367310554172,56.97300529703883],[-127.16391028456452,56.972847397407435],[-127.16416523919189,56.97269830384258],[-127.16437262787224,56.972508169698294],[-127.1643799801058,56.972376981933145],[-127.16455968221123,56.97208847375288],[-127.16517125466387,56.97198661608774],[-127.16554085422328,56.97195192482245],[-127.16609753454144,56.97187296868494],[-127.16638268526188,56.971769548715756],[-127.16666679692416,56.97166613743556],[-127.16695191064854,56.971561595836995],[-127.16731919606823,56.971450712612345],[-127.16768644541543,56.97133870796331],[-127.16800304380087,56.97125405396509],[-127.16832064433191,56.971168269485545],[-127.16865370835504,56.97108346597421],[-127.16898600537067,56.97100763409969],[-127.1693025981803,56.970922976957155],[-127.16960372476616,56.97083733742524],[-127.16990381251145,56.97075170653382],[-127.17018817946217,56.97065725078863],[-127.17048950608903,56.97054471057206],[-127.17077388654431,56.970450253411364],[-127.17084103453746,56.970423872806336],[-127.17105700795737,56.97038270377256],[-127.17143626717385,56.970361357035486],[-127.17180176125933,56.970294184485475],[-127.1721343344342,56.97022730760861],[-127.17245011510083,56.97015049495436],[-127.17354563348557,56.96981561087616],[-127.17399898789917,56.96975996695909],[-127.17424865416729,56.9697095228199],[-127.17429809178435,56.96971019713787],[-127.1746286527225,56.969679194424785],[-127.17499391205321,56.96960417004029],[-127.1753601567815,56.969528015014305],[-127.1757076911766,56.96948004562343],[-127.17603750160515,56.9694580117006],[-127.1764332001897,56.9694365016394],[-127.17684569049467,56.96942492473463],[-127.17725738273299,56.96942119865391],[-127.17762138146854,56.969373075082814],[-127.17801784170194,56.96934258767636],[-127.17834764963266,56.969320547897574],[-127.17872687788558,56.969299180066585],[-127.17914856736253,56.96884819739971],[-127.17924682259292,56.9682578175946],[-127.17932227218866,56.967426694113364],[-127.179317990871,56.966815951297185],[-127.17939077480203,56.96532588160958],[-127.17999952145787,56.96466587099446],[-127.18035895794984,56.96446984866441],[-127.18096967458655,56.96414378383197],[-127.18165536118599,56.96337547975887],[-127.18172868467789,56.962577997307314],[-127.18222894469228,56.96200749771295],[-127.18281845441612,56.96139471863543],[-127.18285455622967,56.960659213257415],[-127.18284240782728,56.95982776734851],[-127.18287158280052,56.95923577472493],[-127.18293461929375,56.95793631598562],[-127.18297962469336,56.95628400403104],[-127.18295437112002,56.955729490867135],[-127.1825260109553,56.9551181278315],[-127.18234265009653,56.95430729408115],[-127.18263317492135,56.95374766793456],[-127.18296071562222,56.95325382519274],[-127.18312705240788,56.95233670734844],[-127.18368507204343,56.95170852379226],[-127.18434616390574,56.95102000235066],[-127.18434099075687,56.9490431546059],[-127.18449758888951,56.94791095391427],[-127.1845146842908,56.946893214528316],[-127.18411580290778,56.94616728241277],[-127.18355263750801,56.94545181114299],[-127.18272535928791,56.94477908628494],[-127.18223955968351,56.944169371301676],[-127.18266717471228,56.94305040082719],[-127.18352744693152,56.941782922137534],[-127.18481613900668,56.94093403016691],[-127.18566165377352,56.94032787472423],[-127.18606896902688,56.93999131542875],[-127.18619661471814,56.93962592886793],[-127.18753466028699,56.93941534784004],[-127.18932702788976,56.939192750979814],[-127.19064024421793,56.93854529902121],[-127.19300063977201,56.936668922691105],[-127.19416164698848,56.93552861205925],[-127.19428541081298,56.93424429595628],[-127.19398314389153,56.93268708881704],[-127.19329835003845,56.93159735702299],[-127.19267791509016,56.930325482414936],[-127.19295239561444,56.92909133968258],[-127.19264957436883,56.92718112839746],[-127.19193213015713,56.92596169631555],[-127.19133198388866,56.92564220633829],[-127.19021994744313,56.925329646101325],[-127.18997276480238,56.92518398191365],[-127.18974761397236,56.92505268423907],[-127.18952144485914,56.92492139552395],[-127.18929429201803,56.9247912361179],[-127.18906708972301,56.92465995612164],[-127.18883890370036,56.924529805427056],[-127.18861175546823,56.924399644861296],[-127.18838559404973,56.924268354225404],[-127.18816045396622,56.92413705387956],[-127.18793735339104,56.92400461384771],[-127.18771629392496,56.923872154796044],[-127.18749727395166,56.92373855607968],[-127.18728231658447,56.92360379921808],[-127.1870704184701,56.92346789340065],[-127.1868615795952,56.92333083864246],[-127.18666691088056,56.923186930111136],[-127.18651289722354,56.92302696060515],[-127.1863955313086,56.92285544954727],[-127.18630791720776,56.92268142536607],[-127.18624079452218,56.92250497268667],[-127.18623001240633,56.922321281492],[-127.18623144618641,56.92213411675748],[-127.18622614033818,56.921961582281284],[-127.18629501975494,56.921793973673864],[-127.18640810878247,56.92162596125631],[-127.18654386417212,56.92145998303721],[-127.18669412945911,56.92129723412719],[-127.186853705656,56.92113664130994],[-127.1870133839505,56.92097940937188],[-127.18718762438647,56.92082764748614],[-127.18737741208484,56.9206802259184],[-127.18757238066598,56.92053387737429],[-127.18776218189555,56.920386455122596],[-127.1879374709018,56.92023580331784],[-127.18808888325289,56.92007752500719],[-127.18821850947639,56.91991272182191],[-127.18833153365358,56.91974358773699],[-127.18843007916844,56.91957122403799],[-127.18853988788742,56.91939763654452],[-127.18862499177105,56.91922315438476],[-127.18865344948203,56.919045828592374],[-127.18863552251109,56.91886444463934],[-127.18864425139621,56.918680575434735],[-127.18864670942101,56.9184934016404],[-127.18862700316876,56.918320999368134],[-127.18860852435216,56.91812168989435],[-127.18870229715549,56.917928077146456],[-127.18901129330081,56.917879301491446],[-127.18933381520884,56.91783600457098],[-127.18954873125534,56.91780377841379],[-127.18983509510588,56.91778770738388],[-127.18988296351216,56.917706580892606],[-127.18987116388617,56.91752402042178],[-127.1898161951691,56.91734185544598],[-127.18981797334672,56.917165894626756],[-127.18991971912592,56.916997983313706],[-127.19006171375254,56.91683530647036],[-127.19021505599152,56.91667364615365],[-127.1903497579856,56.91650767384195],[-127.19043906226669,56.91633651419009],[-127.190491122711,56.91615785122734],[-127.19052770472423,56.91597708881656],[-127.19057154189814,56.91579850123554],[-127.19065370993819,56.9156296482397],[-127.1909123122284,56.91551409004203],[-127.19119951976992,56.91542628558083],[-127.19145820641606,56.915314087504996],[-127.19169706049053,56.915191984907324],[-127.1918649858777,56.915036912868636],[-127.19195322587018,56.91486464135077],[-127.19204659568784,56.91469232270032],[-127.19219116063415,56.91448031078933],[-127.19219215326835,56.914345821956864],[-127.19218965453786,56.91416541795553],[-127.19218104040482,56.91398619077834],[-127.19215270748168,56.91390128040476],[-127.19194551026034,56.913783271206135],[-127.19185368218662,56.91370566751679],[-127.19173848017552,56.91353750451158],[-127.19165295320236,56.91336458648561],[-127.19158171137319,56.91318817536873],[-127.19154126726785,56.913010361005874],[-127.19149469182764,56.91283372357174],[-127.19141944463779,56.91266071118003],[-127.19130120732696,56.912493696457595],[-127.19113909926524,56.9123371700172],[-127.19098414361713,56.912179457145356],[-127.19076032536682,56.91202237556116],[-127.19080930365027,56.91184374117106],[-127.19107358018418,56.91171356206367],[-127.19096312211624,56.91163164613391],[-127.19059950984445,56.91157446457961],[-127.19030344922234,56.91150769756726],[-127.19010951845154,56.911386202209066],[-127.19006407388378,56.91117929630608],[-127.18996729805107,56.91100760130202],[-127.18986335575326,56.91083709257871],[-127.18978602990374,56.91066297795499],[-127.18973428428716,56.91048526697024],[-127.18966720169152,56.91030993781938],[-127.1895601878809,56.91013945709995],[-127.18941849503251,56.90997825925025],[-127.18926863323793,56.909818256748714],[-127.18909841072505,56.90966516450935],[-127.18890274867768,56.90952014961138],[-127.18870510187662,56.90937739393402],[-127.18852267204483,56.90922777474858],[-127.18833920778829,56.90907816480093],[-127.18817612475206,56.908922764835374],[-127.18801708448296,56.90876508638758],[-127.1878438314716,56.90861314108221],[-127.18766037276889,56.90846353023573],[-127.18748201078166,56.908312751889895],[-127.18733829457466,56.90815157060766],[-127.18719967482696,56.907989221939815],[-127.18719955400041,56.90771802376188],[-127.18720431477135,56.90753867494971],[-127.1872152409356,56.90735926978706],[-127.18720150536254,56.907180090130026],[-127.18718467900631,56.90700093875277],[-127.18720486135763,56.90682144902366],[-127.1872641775351,56.90664496346134],[-127.18732452893961,56.90646846842097],[-127.1873817709061,56.90629088114558],[-127.1873885857335,56.90611151370077],[-127.18739847488197,56.90593211816188],[-127.1873970693275,56.90575282593178],[-127.18739255495763,56.90557244149614],[-127.18735008309307,56.90539464550772],[-127.18726253879542,56.90522174430484],[-127.18715556774082,56.90505238266243],[-127.18705063461711,56.90488188167161],[-127.186950797254,56.90471021338368],[-127.18683156792024,56.904543204929304],[-127.18672560189883,56.904372713199784],[-127.18663498846993,56.904199839787985],[-127.18661300239302,56.90401961522277],[-127.18675199234653,56.90386033249692],[-127.18692097646918,56.90370749936419],[-127.18711380609793,56.90356117192178],[-127.18734849130718,56.90343911583767],[-127.18757366025775,56.90330818112976],[-127.18783393260408,56.903216147800286],[-127.18812733753055,56.90323251428335],[-127.18830574129096,56.90308519641009],[-127.18839289967204,56.90291181779794],[-127.18859000207057,56.90277105231613],[-127.18882882210735,56.90265007633385],[-127.18902177728869,56.90250822751371],[-127.18925316881833,56.902379474192735],[-127.1895246208936,56.902283973064876],[-127.18979898945157,56.90218284136219],[-127.19008717052415,56.90209615097348],[-127.19034482096222,56.901986206111694],[-127.19060240080744,56.901874020071084],[-127.19083497531108,56.90175085632613],[-127.19105383790499,56.901616611408684],[-127.19128003743138,56.90148678141642],[-127.1915250401529,56.901366864349185],[-127.19178894987222,56.901260221109226],[-127.19206019661488,56.901157992577716],[-127.19233253032931,56.90105799479959],[-127.19262924629217,56.90098242686404],[-127.19293659782299,56.900917967063194],[-127.19323647121587,56.90084461002263],[-127.19352147487743,56.900755699818816],[-127.19378958843434,56.900652375782784],[-127.19407351913085,56.90056235356504],[-127.19436276701317,56.90047788507625],[-127.19465622720871,56.900396739138294],[-127.19494968617038,56.90031559254126],[-127.19523269660802,56.90022893819544],[-127.19547141069086,56.90010570952589],[-127.19565927513908,56.899999758563716],[-127.19570071155425,56.899976963837936],[-127.19593208390715,56.899849319313844],[-127.19616449031614,56.89972166484632],[-127.19638021426726,56.89958631911589],[-127.1965949175643,56.899450982432676],[-127.1968095681777,56.89931452522363],[-127.19701901923588,56.89917587429171],[-127.19722539496132,56.8990372513819],[-127.19745257774015,56.89890740145608],[-127.19767977542794,56.898777550992165],[-127.1978954887895,56.89864220282724],[-127.19810804086111,56.89850464216924],[-127.19834780543495,56.898382519125605],[-127.19861481924956,56.89827807451135],[-127.19887345545574,56.89816810343865],[-127.19912991468651,56.89805478999131],[-127.19940642191332,56.897958100618254],[-127.1996735160091,56.897855894368604],[-127.1999236676167,56.89773815500938],[-127.20000062884647,56.89770158267808],[-127.20016969005681,56.89761933268392],[-127.20041774915993,56.89750049105419],[-127.200670106642,56.89738721246012],[-127.20095824591695,56.897301618698805],[-127.20127645485684,56.897257210240426],[-127.20160394622879,56.897247455358205],[-127.20193145387195,56.8972376994979],[-127.20223445994169,56.897167654387054],[-127.20251839665107,56.897078734085596],[-127.20278956915664,56.89697648357093],[-127.20307134384076,56.8968842201154],[-127.2033425484429,56.896783088789434],[-127.20362746390191,56.89669303630743],[-127.20392728415428,56.89661965477792],[-127.20427575099129,56.896623146422165],[-127.20463728132924,56.896518933061536],[-127.20482941718075,56.89645215195472],[-127.20510164963508,56.896351007371514],[-127.20509803770838,56.896169494871366],[-127.2051996267004,56.896000453566955],[-127.20525006161357,56.89583861108226],[-127.2052316476607,56.89564378822388],[-127.20524591003286,56.89547555769501],[-127.20529069130122,56.89529695792657],[-127.20534990708535,56.89512046543335],[-127.20542046515013,56.89494498825481],[-127.20549411249131,56.89476948236222],[-127.20551418688224,56.894589991375646],[-127.20555793044062,56.89441140123394],[-127.20570711481807,56.894253124144605],[-127.20597409659429,56.89414866452301],[-127.20623029822545,56.894028615378566],[-127.20632897827535,56.89386520362455],[-127.20637164680842,56.8936855025878],[-127.20643227575444,56.89352132376428],[-127.20650361627513,56.89333799426428],[-127.20657643377119,56.89313672056884],[-127.20654968842072,56.89297111259936],[-127.20653277847282,56.89279196539251],[-127.20650868666942,56.89261288496278],[-127.20648254074763,56.892433823644616],[-127.20645639506839,56.89225476234202],[-127.20643641260021,56.89207564377147],[-127.20642666687121,56.89189530942118],[-127.20638515776638,56.891717511622936],[-127.2064062968039,56.89153913155638],[-127.2064551952867,56.891361614132734],[-127.20646602741581,56.89118220924524],[-127.20647480517852,56.89100282347277],[-127.20648358285963,56.89082343772057],[-127.20649236045921,56.89064405198856],[-127.20649904872653,56.89046356504697],[-127.20649344658003,56.890284313024154],[-127.20646012075979,56.890105318728644],[-127.20644735591117,56.889927253978335],[-127.20639043411707,56.88974959969353],[-127.2063437837951,56.88957184993959],[-127.20629200666883,56.889394147843554],[-127.20622693970135,56.88921881056543],[-127.20613523922688,56.88904596209175],[-127.20607321157047,56.888869475893706],[-127.20596823889228,56.88869899198868],[-127.20587759465496,56.888527254247826],[-127.20582174781738,56.88835071057921],[-127.20579046446261,56.888171697403706],[-127.20576741425442,56.88799260775349],[-127.2057504751271,56.887812340698545],[-127.20573049823284,56.88763322253433],[-127.20570535955913,56.88745303169543],[-127.20568740214065,56.88727277416022],[-127.20569207451581,56.88709342705942],[-127.20572659231146,56.88691604399842],[-127.20578577469271,56.886738431788736],[-127.20586658560867,56.88656285989906],[-127.2059701299925,56.88639155931311],[-127.20609856658204,56.886227871852796],[-127.20625589813608,56.886068398292565],[-127.20645263937959,56.885920885306405],[-127.20666247335392,56.88579790452795],[-127.20687899642931,56.885659172138865],[-127.20711524907706,56.8855269797559],[-127.2073257636702,56.885392785093664],[-127.20748521078639,56.885235531663106],[-127.20755800527006,56.88506675726064],[-127.20764935466454,56.884900051456455],[-127.20771463542962,56.88472126108965],[-127.2077777028736,56.8845368880706],[-127.20776691761185,56.88435656433417],[-127.20768429735568,56.88417802979989],[-127.20754532775294,56.88400450218144],[-127.20739022444185,56.88387370910846],[-127.20715907502986,56.88374138200558],[-127.20696960311345,56.88359521913627],[-127.20684422582947,56.883429408979616],[-127.20673617553994,56.88325895502212],[-127.2066230698291,56.883090789300034],[-127.20656006581503,56.88291543380519],[-127.20656777112494,56.88273493828942],[-127.20655600833167,56.882555744452986],[-127.2065278151931,56.882376703403956],[-127.20647193927255,56.88219904039674],[-127.20657828154205,56.88198624981132],[-127.20690542879531,56.88200225846266],[-127.20723161126533,56.882020516557034],[-127.20755854885968,56.882029801648834],[-127.20788582079703,56.88201666990725],[-127.20821219762601,56.88200802825271],[-127.2085394509364,56.88202739374103],[-127.20886563439122,56.882045647728745],[-127.20919350244806,56.88205155810349],[-127.2095211436132,56.8820507458931],[-127.20984804691068,56.88205890489897],[-127.21015767691927,56.88207282739934],[-127.21047059051202,56.88206094368243],[-127.2107511677718,56.881967553787106],[-127.21101557525155,56.88181716125435],[-127.21123934673238,56.881746713330415],[-127.2115257296333,56.88164206109278],[-127.21180528263281,56.881548678454465],[-127.21204570627387,56.8814198000403],[-127.21206295220622,56.88124930082489],[-127.2120161453827,56.88106707281774],[-127.21198987624862,56.88088465299441],[-127.21201196694548,56.880705143432216],[-127.21203811094733,56.88052335473458],[-127.21209420091135,56.88034688954878],[-127.21235921019664,56.88024915896966],[-127.21261240336166,56.88013472859434],[-127.21280191044131,56.87998727364379],[-127.21300238630347,56.879829630075484],[-127.21310240512943,56.879646029946166],[-127.21316819615278,56.87948404202069],[-127.21332104694385,56.87931451615344],[-127.21353291199108,56.879192625903435],[-127.21376301184985,56.879062720220766],[-127.21400560798479,56.878938300431244],[-127.21424723799099,56.8788161305133],[-127.21449414963972,56.87869839328182],[-127.21474941515496,56.87858505994389],[-127.21501205121697,56.87847726030121],[-127.21528204144819,56.87837499446213],[-127.21556572298717,56.87828380623301],[-127.21585582727133,56.87820040170181],[-127.2161510913093,56.878118068797214],[-127.21645176212989,56.87804464967843],[-127.21676345737325,56.87799466000575],[-127.21710529769942,56.877989212591565],[-127.21744633127848,56.87799049571346],[-127.21773752447226,56.87794181669974],[-127.21793860558014,56.87780433134765],[-127.21810360872217,56.87763020312068],[-127.21831413169316,56.87749935241182],[-127.21860294837504,56.877440607940514],[-127.21892771871323,56.87741514439577],[-127.21926939317183,56.87740408956641],[-127.21960794353579,56.87739194255653],[-127.21993490790159,56.87737093843792],[-127.22026088876042,56.87735106338706],[-127.22058686928371,56.87733118751756],[-127.22091277863197,56.87730907020581],[-127.22123533209492,56.87727801849779],[-127.2215566728699,56.87724137417499],[-127.2218768362684,56.87720025755804],[-127.22219601589529,56.877160270058084],[-127.22251731931289,56.877122503047715],[-127.22284074657028,56.877086956511036],[-127.22316524368892,56.87705251972307],[-127.22348997226064,56.877025924455374],[-127.22381428540503,56.87701838326609],[-127.22413739722283,56.87703774809767],[-127.22446107772409,56.87707503709515],[-127.22478381136928,56.877114575522235],[-127.22510731543204,56.87714626135648],[-127.22543074892421,56.87717570576404],[-127.22575516589644,56.87720401943307],[-127.22607949306378,56.87722897120542],[-127.22640575100932,56.877250541981724],[-127.22673577691161,56.877260869849955],[-127.22706748410462,56.877259974512704],[-127.22735812556118,56.87719446928296],[-127.22761407701437,56.877072138636024],[-127.22783070604874,56.87694009378218],[-127.22790952085697,56.876770130265136],[-127.2279499809795,56.87658932325158],[-127.22798631456942,56.876407434652464],[-127.22804434353013,56.876229823299674],[-127.2280725885769,56.87605249385431],[-127.22800228417377,56.87587609721263],[-127.22788091292098,56.87570914902938],[-127.22773916728144,56.87554687614539],[-127.22761985162478,56.875379908321904],[-127.22751687392213,56.87520942390362],[-127.22742921824808,56.87503655318547],[-127.22730770969848,56.87486512332304],[-127.2271564719137,56.87469509522116],[-127.22704276845171,56.87451014360694],[-127.22705692801938,56.87434191298408],[-127.22696040038831,56.87418033243865],[-127.22689008804555,56.87400393556158],[-127.22688953522241,56.87382463770447],[-127.22693421047195,56.87364715343602],[-127.22702941349908,56.873475915155105],[-127.22701038021265,56.87329679213924],[-127.22696056670316,56.873119080893034],[-127.226925143143,56.872941233564],[-127.22693873320165,56.87275507821316],[-127.22703825412033,56.87259052302661],[-127.22728930031957,56.87247608400095],[-127.22757480183232,56.87237924875279],[-127.22785625020168,56.87228469251706],[-127.22814517679522,56.87219903001575],[-127.22846204154791,56.8721523248325],[-127.22875394575735,56.872095769495026],[-127.22897163269096,56.871965954123645],[-127.22917448200906,56.87182171060443],[-127.22937418686524,56.87167525527871],[-127.22956878461338,56.87152996869326],[-127.22971872927643,56.87136941609103],[-127.22986974318043,56.87120997382652],[-127.2300248979018,56.871051612772284],[-127.23017903297148,56.87089326120577],[-127.23031970586135,56.87073167520646],[-127.23043552543007,56.87056360093595],[-127.23055236235717,56.870395516919956],[-127.23065989591852,56.8702252797803],[-127.23078708436852,56.87005933865319],[-127.23092466376868,56.86989778138142],[-127.23110781993081,56.86974811850962],[-127.23132218354952,56.86961160687355],[-127.2315178340614,56.869467428038],[-127.2317437092986,56.86933753026916],[-127.23196224604435,56.86920321922796],[-127.23220175743492,56.86908215628964],[-127.2324885258597,56.86899426318844],[-127.23278063199851,56.86891304257363],[-127.23307589626084,56.86883403255844],[-127.23338083562106,56.86876837758159],[-127.23369111309283,56.868709394967865],[-127.23399603399903,56.86864373870639],[-127.23429664937508,56.86857139883392],[-127.2346047633843,56.8685090726721],[-127.23492605434437,56.86847351574969],[-127.23524291616515,56.86842791441914],[-127.23556647393099,56.86839905817114],[-127.23587965843926,56.868366938013914],[-127.23616882476769,56.86829022026982],[-127.23649011246776,56.868254659478815],[-127.23680340265416,56.86822589799759],[-127.23713183077157,56.868189146884355],[-127.23745206254797,56.868152473124205],[-127.23777558045596,56.86812249107099],[-127.23810022389473,56.86809585939373],[-127.23839016708293,56.868011284732745],[-127.23866632503102,56.86791339333311],[-127.23887849094642,56.8677735280766],[-127.23916918475972,56.86771247799119],[-127.2395084824585,56.86769466790952],[-127.23976474444623,56.867584637181544],[-127.2400643779974,56.867514534481806],[-127.24038126186117,56.86747004092878],[-127.24089289157104,56.867414718606035],[-127.24118504009081,56.86733571974884],[-127.24149441988638,56.86728120946615],[-127.24176271297463,56.86719459310522],[-127.24211032492794,56.867180058507806],[-127.24243919825011,56.8671892359796],[-127.24276612687963,56.86720179318235],[-127.2430930917754,56.867215469859815],[-127.24341825636208,56.86723700748131],[-127.2437426555394,56.867266396139655],[-127.2440612406469,56.86730704619603],[-127.24437800640673,56.867354436797406],[-127.24469377433643,56.86740295685332],[-127.24500759839378,56.86745485674104],[-127.24530575780217,56.86753043980557],[-127.24560684516007,56.867601511504205],[-127.2459109129381,56.86766919195615],[-127.24621296491777,56.867738011719965],[-127.2465101828826,56.86781584240891],[-127.24682008751628,56.86787337887227],[-127.24713197374842,56.86792865426353],[-127.24744195257438,56.867988429841255],[-127.24773710549259,56.86806627763279],[-127.24801837538665,56.86815882673561],[-127.24828162355817,56.868266117071684],[-127.24854385488356,56.86837341668235],[-127.24882614725759,56.86846595425075],[-127.24909942784315,56.86856530188014],[-127.24938464937163,56.86865332747849],[-127.24968084602706,56.86873116091484],[-127.24998096872831,56.86880335262386],[-127.2502810925513,56.86887554364202],[-127.25058514227415,56.868942092895544],[-127.25089319034716,56.86900524095121],[-127.25119629640017,56.869074039192796],[-127.25150720013514,56.869130434385944],[-127.25182299153566,56.86917893714378],[-127.25213783803504,56.86922968955869],[-127.25245072483087,56.86928382208403],[-127.25275672558793,56.86934698555097],[-127.25305693151147,56.86942141076722],[-127.2533541035101,56.86949698526528],[-127.25362208025663,56.86959077161753],[-127.25391429553295,56.86967199600848],[-127.2541824567424,56.86977138270013],[-127.25447269421906,56.86985486628702],[-127.25473391875256,56.86996216350055],[-127.25496696338163,56.870086542568494],[-127.25523024398932,56.870193818936386],[-127.25549254411814,56.87030222493037],[-127.25577281408829,56.87039476736739],[-127.25629985166717,56.87056000323036],[-127.25648821951779,56.87041585633006],[-127.25668169056914,56.87027053906994],[-127.25685853642115,56.87011977934901],[-127.25705511252808,56.869975552097415],[-127.2572967125693,56.869857783771494],[-127.25757499833388,56.86976319299847],[-127.25787772438417,56.86969413958069],[-127.25816345706569,56.86960731986859],[-127.25845129813777,56.869522720365566],[-127.25872452716182,56.86943041745218],[-127.25896181352806,56.86930708459141],[-127.25917194999474,56.869169446384106],[-127.25935497682364,56.86901974387528],[-127.25947778578266,56.86884933344576],[-127.25950595419607,56.868674238603916],[-127.25950543271813,56.86850054299043],[-127.25970117519199,56.86836304369375],[-127.25999756107494,56.86828844357019],[-127.26031197319233,56.86823159801588],[-127.26062993103086,56.86818928567865],[-127.26095223007786,56.86815365425455],[-127.26127018657355,56.868111340350204],[-127.26158584964251,56.86806120341792],[-127.26189346640639,56.86801674723515],[-127.26218184627086,56.867917565657834],[-127.26246337689527,56.86782853593994],[-127.26273631155821,56.86772838278382],[-127.26302843419012,56.86764933456344],[-127.2633066900097,56.86755473162977],[-127.26358544967125,56.867444434085556],[-127.26386648875591,56.867372215821014],[-127.26417674510337,56.86731428064686],[-127.26449587255516,56.86727642994577],[-127.26479007782204,56.8671984780609],[-127.2650831371326,56.86711717472722],[-127.26540442513364,56.86708266265012],[-127.26573135069499,56.867063783864666],[-127.26602555184934,56.86698582918851],[-127.26634907451209,56.8669568961966],[-127.26661579735304,56.86685567476965],[-127.26683274422265,56.866770628034594],[-127.26717650554941,56.866701151885515],[-127.26743183123676,56.86659667814751],[-127.26761272417387,56.86644586400433],[-127.26781972665957,56.86630824221615],[-127.26810126934008,56.866220320645944],[-127.2684295888304,56.866212627862716],[-127.26875317681106,56.86618592947086],[-127.26906450815781,56.8661302132723],[-127.26937347565733,56.86615856824403],[-127.26964694004123,56.866262353601265],[-127.26994586203088,56.86632890768315],[-127.2702587298586,56.86638187670713],[-127.27054901345281,56.86646644443666],[-127.27083430520464,56.86655554304562],[-127.27111660080946,56.86664691170869],[-127.27138593057313,56.866749613377614],[-127.27163820918886,56.866864808838606],[-127.27189045242048,56.8669788835272],[-127.27215677269655,56.86708385447348],[-127.27240703973105,56.86720018888835],[-127.27267632344729,56.86730176778531],[-127.27296852454107,56.86738182884699],[-127.2732607637749,56.86746300954465],[-127.27356576584167,56.86752613384932],[-127.27388149791392,56.86757234228161],[-127.27420679350823,56.86759716360441],[-127.27453288600712,56.86761525236755],[-127.27486158582498,56.86761874619759],[-127.27518845462424,56.86762898111529],[-127.27551463826401,56.86764930782896],[-127.27583897485643,56.86767637581413],[-127.27616146040197,56.86770906447219],[-127.27648833030979,56.86771929611527],[-127.27681545961616,56.867737368959986],[-127.27713979785932,56.8677644336945],[-127.27745440671542,56.86780728259593],[-127.27777589706999,56.86784109772268],[-127.27809646448416,56.867878283115665],[-127.2784132395664,56.86792447033394],[-127.27873854103703,56.86794928029896],[-127.27906193831164,56.86797859084775],[-127.279385373184,56.868009020879505],[-127.27970781096664,56.868040580602184],[-127.28002934236089,56.86807551043829],[-127.28035187191887,56.86810930897674],[-127.28067527175725,56.86813861550666],[-127.28099870924024,56.86816904151939],[-127.2813211868398,56.86820171752368],[-127.28164562290742,56.8682310114157],[-127.28195946611267,56.868281701646154],[-127.28226356570482,56.86834817662493],[-127.28255685008158,56.86842932636492],[-127.28284223765388,56.86851951880243],[-127.28314325287334,56.86858602226542],[-127.28346307193183,56.868538032048285],[-127.2837776377063,56.86848673105736],[-127.28407275708403,56.86840648473123],[-127.28433306092224,56.868298566028855],[-127.28452332887953,56.86815323802978],[-127.28470934035367,56.86800346928209],[-127.28492139370488,56.86786464887115],[-127.28519332665138,56.86776669913195],[-127.28549261812603,56.867688649505425],[-127.28580390013875,56.86763177279465],[-127.2861239691055,56.8675916180536],[-127.28645066496532,56.86756596532905],[-127.28677782466615,56.86755375505526],[-127.28711432633652,56.86754481322779],[-127.28745598942093,56.86753693995434],[-127.28779480521652,56.86753581798833],[-127.2881196611183,56.86754716099124],[-127.28842155145196,56.867577782464735],[-127.28859539877226,56.8677105344315],[-127.28874486395893,56.867881630779934],[-127.28900134511083,56.867997872047354],[-127.28930044247174,56.86806774229731],[-127.28961429439333,56.86811841400386],[-127.28993400686016,56.86816006141941],[-127.290256716475,56.868199436927306],[-127.29057742759137,56.868239952181455],[-127.29089614482434,56.868282727809365],[-127.29121582258264,56.86832325178463],[-127.29153553847135,56.868364895258765],[-127.2918493957389,56.868415561567744],[-127.29215645123793,56.86847750146927],[-127.29239465434182,56.86850762755039],[-127.2923348052592,56.86822245584144],[-127.29228017320442,56.868062745939206],[-127.29218380712707,56.86788327993],[-127.29212450806592,56.86770680662574],[-127.29206715009737,56.86752695201065],[-127.29198673744172,56.86736413689739],[-127.2919170254213,56.86718328465839],[-127.29181476665258,56.867011721807685],[-127.29171049331816,56.866841299623275],[-127.2916134143645,56.866670805744626],[-127.29153464628632,56.866495646872046],[-127.29147228116777,56.8663192040056],[-127.291408919411,56.8661438917142],[-127.29127811242078,56.86597821611479],[-127.29114429390836,56.86581481170239],[-127.29104311428486,56.86564435837793],[-127.29089398452015,56.865483347474814],[-127.29075610106689,56.86532110385854],[-127.29065590523076,56.865149519869746],[-127.29055776312352,56.86497791539697],[-127.29048007533495,56.864803866062246],[-127.29037278025005,56.864634593880425],[-127.29023186842592,56.86447350062965],[-127.29009502597049,56.86431124612348],[-127.28997342277566,56.86414435731934],[-127.28986407895627,56.863975105203984],[-127.28973635688874,56.863809397739196],[-127.2895720390894,56.86365413992853],[-127.28939147106547,56.863504646758095],[-127.28921802251142,56.863352841289206],[-127.28909446456686,56.86318821256902],[-127.28897591916314,56.86302017198189],[-127.28888291353266,56.86284851555567],[-127.28880216670579,56.86267449596891],[-127.28869791836601,56.8625040718346],[-127.28857329342345,56.86233833270449],[-127.28845177774005,56.86217368324766],[-127.28828526993951,56.86201396323324],[-127.28810996651976,56.86186777822547],[-127.28793549580519,56.86171598147487],[-127.28777015960578,56.86156073186229],[-127.28758452225905,56.86141240752898],[-127.2874446310099,56.86125018102918],[-127.28730267188051,56.86108797493208],[-127.28719946895858,56.86091753949725],[-127.28710952609218,56.86074473110826],[-127.28708508082671,56.860565669434145],[-127.2870554960855,56.860386658781984],[-127.2869013546059,56.86022793523388],[-127.28680936209882,56.86005514707994],[-127.28678392147926,56.85987721597284],[-127.28683557226412,56.85970188192384],[-127.28690893184574,56.8595308150567],[-127.2869027101964,56.859436742125006],[-127.28689591831397,56.85935612266615],[-127.28679458777843,56.85918006532799],[-127.2867721974857,56.85900098340725],[-127.28674134603436,56.85890715488201],[-127.28677036985106,56.85882281813102],[-127.28680548731221,56.85864428629341],[-127.28693759414026,56.858480481123294],[-127.28697384050382,56.85830530001544],[-127.28701820090986,56.858126676438616],[-127.2870635789295,56.85794804276334],[-127.2871933045329,56.85780555334799],[-127.28745992600878,56.857704289496425],[-127.28778396216512,56.85766297004494],[-127.28811198091292,56.85764850581638],[-127.2884386941555,56.857656466725714],[-127.28876636723002,56.85766217597459],[-127.28909413611746,56.85767124539469],[-127.28941928334667,56.85769378785815],[-127.28974565237925,56.85772192061119],[-127.29007405792257,56.857750032289154],[-127.29039558788705,56.857787176760624],[-127.29069833940022,56.85784579970407],[-127.2909615983375,56.85795188243272],[-127.29121205003395,56.85807378128073],[-127.29150499204471,56.85814594786961],[-127.2918207812866,56.85819547319914],[-127.29211990384859,56.85826869751055],[-127.29243079673705,56.858324994071005],[-127.29275039372074,56.858365514007616],[-127.29307097191446,56.85840490272913],[-127.29339053272653,56.8584443008124],[-127.29371199662963,56.85847919652269],[-127.29403244307646,56.858514101595205],[-127.29435679101306,56.858543363681335],[-127.29468187356761,56.858563652408655],[-127.29500959280752,56.85857046616517],[-127.29533795459658,56.85856606615087],[-127.29566262824028,56.85854377170899],[-127.29598040886967,56.85849913227981],[-127.29629376666202,56.8584455710531],[-127.29659740685119,56.858377537732984],[-127.29690211802719,56.858310613636895],[-127.2972122520475,56.85825259979672],[-127.29753236553736,56.858216898420196],[-127.29784477612834,56.85816558419442],[-127.29813880707228,56.85808643686441],[-127.29844125614868,56.85801392849302],[-127.29876187251419,56.85799278751256],[-127.29908369489243,56.85797723692159],[-127.29936915652335,56.85788808673399],[-127.29961977979781,56.857770148062315],[-127.29986098529724,56.85764670003234],[-127.30015107535813,56.85757319085316],[-127.30047306082002,56.85753186011567],[-127.30078534881481,56.85747717800375],[-127.30110309833405,56.857432526218346],[-127.30142777554515,56.857410217196254],[-127.30177429665068,56.8573966533144],[-127.30206722782516,56.85737690266322],[-127.30239060524251,56.85734675969532],[-127.30271750586193,56.85733002837052],[-127.30304461153092,56.85731889742863],[-127.30337064479735,56.85730665578408],[-127.30372164716194,56.85730424818616],[-127.30401987790887,56.857350558430795],[-127.30433655982911,56.85739556176313],[-127.30464848149275,56.85745181876617],[-127.30501730462571,56.857490692610426],[-127.30529536327674,56.85748677348861],[-127.30562277239034,56.85748459823334],[-127.30595112373942,56.85748017135267],[-127.3062773468282,56.8574735237679],[-127.30660470146874,56.85747022592581],[-127.30693156858463,56.85748262134296],[-127.30725707675899,56.85748494373969],[-127.30758546583812,56.85748163299456],[-127.30790871557325,56.85747837325052],[-127.30823550730963,56.85748852483553],[-127.30856280244377,56.85748298133969],[-127.30889122934663,56.857480787561165],[-127.30921884955819,56.8574853250301],[-127.30954374115132,56.85749997512986],[-127.30985864415804,56.85755282761679],[-127.31018011550798,56.85758768248972],[-127.31050507635358,56.85757431308684],[-127.310818841016,56.8575330396289],[-127.31114459955279,56.85754319434023],[-127.31147060284333,56.85756006969953],[-127.311798718507,56.85757916418816],[-127.31212577844082,56.857597147875175],[-127.31245372088378,56.85761063918168],[-127.31278369957262,56.8576241090483],[-127.31311354261139,56.85763309682283],[-127.31343667889338,56.85762646248609],[-127.31372739646996,56.85754170975207],[-127.31396654114202,56.85741937657262],[-127.31414847249708,56.857275209598484],[-127.31426083831032,56.85710821360838],[-127.31452000182595,56.85700136571133],[-127.31462621327812,56.85680417405532],[-127.31470237955962,56.85671935262264],[-127.31505165513228,56.85669675998114],[-127.31542221433334,56.856605590419214],[-127.31570873882384,56.85651863439623],[-127.31601236783456,56.85645167597945],[-127.31633348341843,56.856415917743995],[-127.31665459840798,56.856380158714316],[-127.3169790668617,56.85635220942877],[-127.3173035948173,56.85632650003762],[-127.31762361378532,56.85628850841268],[-127.31794361570516,56.85625051616605],[-127.31826823502968,56.856227044734176],[-127.31859553984991,56.8562225963607],[-127.31892171189936,56.856214796708166],[-127.31925008918031,56.85621145643114],[-127.31957767800057,56.856214847293444],[-127.3199062848478,56.85621822696708],[-127.32021593763017,56.856267745764754],[-127.32050522011251,56.856352211674775],[-127.3208228544213,56.8563949238193],[-127.32113574978264,56.856448890060356],[-127.32145056702466,56.85649947399657],[-127.3217762809356,56.85647822394356],[-127.32209857913567,56.85644692196294],[-127.32242630715778,56.85645478687022],[-127.32275309404456,56.85646490186895],[-127.32308072368315,56.85646940415149],[-127.32340937137336,56.85647389521749],[-127.32373523751802,56.856457121316055],[-127.32405815037579,56.8564739965328],[-127.32436222941182,56.85654037231875],[-127.3246873108405,56.85656058581221],[-127.32501465616446,56.85655724150522],[-127.32533737511012,56.856538254414694],[-127.32564513076072,56.85647235176189],[-127.32594711272547,56.856417714006966],[-127.32626482443669,56.856373000609494],[-127.32658754122927,56.8563540104103],[-127.32691488463864,56.856350661307715],[-127.32724080778068,56.856365256480856],[-127.32755756921884,56.85641244378454],[-127.3278762077072,56.85645400779999],[-127.32820132875824,56.85647533275071],[-127.32852894270012,56.85647982143813],[-127.32884880369329,56.85646757883151],[-127.3290180526102,56.85631455514801],[-127.32917688428104,56.85615715537769],[-127.3292767301002,56.8559857914873],[-127.32937344978308,56.855813338916626],[-127.32948259817698,56.85564412084181],[-127.3295834978123,56.85547386659981],[-127.32969160996632,56.85530465899116],[-127.32985252559591,56.85514835771467],[-127.33005080528994,56.85500400026718],[-127.33015273509886,56.854833735042],[-127.33029193557444,56.85467317333588],[-127.33039898589185,56.85450285540198],[-127.33049368317847,56.85433154347796],[-127.33059971374786,56.85416123585969],[-127.33067893218524,56.85398784133494],[-127.33066451185401,56.85380756311125],[-127.33063986916436,56.85362851046843],[-127.3305334085327,56.85345814202516],[-127.33040354964793,56.853293616889445],[-127.33027873699436,56.853126798563906],[-127.3301529296843,56.85296111100934],[-127.33002409196621,56.85279657510371],[-127.32990334832297,56.85262859410686],[-127.32976942915452,56.85246523078124],[-127.32965791409433,56.85229715496908],[-127.32947823983211,56.85214658783349],[-127.32930769414038,56.85199256491815],[-127.32910978477226,56.85184890822188],[-127.32882571632682,56.851766649779115],[-127.3285064827691,56.85173630127727],[-127.32817961884487,56.85172284001686],[-127.32789718194343,56.85162823563428],[-127.32771352892362,56.85148106893817],[-127.32765313552227,56.8513068648529],[-127.32771484984346,56.85113141044576],[-127.32778580614605,56.850955861380555],[-127.32786606487863,56.8507824583349],[-127.32798412371481,56.85060418547614],[-127.32804850346879,56.850446634164314],[-127.32812944766592,56.8502631380606],[-127.32819213745927,56.85008655285463],[-127.32821675703345,56.84990699566573],[-127.32820752644425,56.84972778525927],[-127.32816544753796,56.84954891136991],[-127.32817775495573,56.84936948037069],[-127.32816403568708,56.8491791094515],[-127.32812748072841,56.84901138558728],[-127.32809976670089,56.84883236461884],[-127.32811161218602,56.848639490577774],[-127.32804326107096,56.84847209246059],[-127.3278809671265,56.84831910438181],[-127.32772670614062,56.84816043059051],[-127.32757448192342,56.84800173578882],[-127.32738773922875,56.84785348014062],[-127.32721018484364,56.847704009538056],[-127.32712552314199,56.847540140025316],[-127.32705013780814,56.8473470385283],[-127.32712288188783,56.84722414263744],[-127.3273754801315,56.84710837065355],[-127.3276187747127,56.84699045213515],[-127.32784939382827,56.8468625770931],[-127.32807588563509,56.84673362326127],[-127.32829814031784,56.84660135047965],[-127.32852877127871,56.84647347409236],[-127.32879401804635,56.8463676555745],[-127.32908362166384,56.846283999883596],[-127.32938490260155,56.84621143033568],[-127.32969717383492,56.84616003978153],[-127.33001918681104,56.846123117029414],[-127.33034016505759,56.84608620409003],[-127.33066246896682,56.8460582419769],[-127.33098927826165,56.8460414393455],[-127.33131618663099,56.84602799683304],[-127.33164432188768,56.84602014416382],[-127.33197151653368,56.846014541635824],[-127.332298115378,56.84599213458576],[-127.33257100156517,56.845899677580185],[-127.33281417900416,56.845779509057415],[-127.33309739869775,56.84568918600152],[-127.3333752861424,56.84559331388802],[-127.33364473313603,56.84549080407145],[-127.3339409390108,56.84542051733911],[-127.3342590702761,56.845390347838126],[-127.33458855496131,56.845362301984785],[-127.33489536522912,56.84530198977604],[-127.33517431822176,56.84520722343866],[-127.3354511242529,56.845110237299316],[-127.33576441260846,56.84505882151632],[-127.33605615926612,56.84497848994848],[-127.33634936488573,56.8449104698813],[-127.3370704127944,56.84475062609111],[-127.33687525678728,56.84450833596056],[-127.33682537923535,56.844341872741396],[-127.33676591249038,56.844165422513704],[-127.33668907612633,56.84399139269264],[-127.33660913238317,56.843816274236495],[-127.33651289213412,56.84364468573439],[-127.3364299193417,56.84347071910454],[-127.3364049197422,56.84331184396879],[-127.33635675933633,56.84310614014891],[-127.33637769806762,56.84294006755394],[-127.33635817313458,56.84276096426723],[-127.33637970320108,56.84258255842303],[-127.3364063703138,56.84240409963433],[-127.33641142605454,56.8422236223523],[-127.33643398958048,56.84204520589957],[-127.33648117194038,56.841866535643554],[-127.33658302237107,56.84169626694754],[-127.33671175242391,56.841531324268296],[-127.33689438674827,56.8413826353373],[-127.33695100010668,56.8412094709518],[-127.33703340403964,56.84104052315181],[-127.33720034645219,56.840883030433076],[-127.3373507977767,56.84072346633553],[-127.33737745912386,56.84054500755579],[-127.33737637791684,56.84036571436657],[-127.33738658816027,56.84018630469982],[-127.33740603820924,56.84000679971902],[-127.33745837284077,56.83982919675676],[-127.33750662046566,56.83965163595985],[-127.33757343066664,56.839477245568354],[-127.33769693473354,56.83931011464555],[-127.33780600009703,56.839140891330274],[-127.33793262621413,56.838974848625604],[-127.33806132503511,56.83880990505795],[-127.33818072203107,56.83864281609782],[-127.33836019057937,56.83849191655392],[-127.33851576451194,56.83833229830568],[-127.33873076350888,56.83820008240117],[-127.33899485287974,56.83809313399587],[-127.33926632288977,56.83799171203947],[-127.3395320112885,56.837871298190095],[-127.33965543847982,56.83773218249678],[-127.33977853969279,56.83755384727889],[-127.33976412188595,56.837374692186586],[-127.33975790956141,56.837195452298936],[-127.33975576112316,56.837015049774784],[-127.33974442880523,56.8368358628508],[-127.33967474256319,56.83666064105575],[-127.33959786919911,56.83648549353105],[-127.3395169491802,56.83631150845882],[-127.33942579588953,56.83613874976534],[-127.33930916596682,56.83597073689431],[-127.33915490735019,56.835812077934136],[-127.33900979483832,56.83565108303173],[-127.3388799432846,56.83548656840118],[-127.33870437491713,56.835334853017],[-127.3385075497264,56.83519120149351],[-127.33830869714726,56.835048691282594],[-127.33807450080887,56.83492223476967],[-127.33786859648814,56.834783158686],[-127.33766972600868,56.83463952711383],[-127.3375267140359,56.834479629746795],[-127.3373866555544,56.83431633982998],[-127.33719998008654,56.83416921983881],[-127.33699707398594,56.834027870280806],[-127.3368195072066,56.83387729389001],[-127.33668052640971,56.8337151128563],[-127.33659552302704,56.83354116857227],[-127.3365493593904,56.83336346178115],[-127.33649911033469,56.83318579712816],[-127.33643761112022,56.833009369138395],[-127.33638939773682,56.832831683500444],[-127.33626466403193,56.83266599333332],[-127.33613788030607,56.832500324209605],[-127.33603145362382,56.832329962547284],[-127.33591383260801,56.83216195751015],[-127.33574538408543,56.83200792402562],[-127.33561361261806,56.831875925278176],[-127.33548272107201,56.831680040559164],[-127.33535289786157,56.831515522804764],[-127.33527708802258,56.83134036263118],[-127.33521051666328,56.83116510725622],[-127.33513982747846,56.8309898942963],[-127.3350466716967,56.83081715406097],[-127.33493922075495,56.83064680233013],[-127.33473837012127,56.830504308005814],[-127.33452429741544,56.83036531149053],[-127.33442520856677,56.83019935588227],[-127.33442084111269,56.830013373950855],[-127.33434618810767,56.82984156349025],[-127.33413006953803,56.82970258749936],[-127.33383528986845,56.82963278009125],[-127.33351577145295,56.82958900139513],[-127.33328773801699,56.82946135310597],[-127.3331152649095,56.82930847874249],[-127.33291142061375,56.82916825392928],[-127.33270646691027,56.829025798946894],[-127.33251987339908,56.82887979294829],[-127.33237788266156,56.82871875977166],[-127.33229290961717,56.828544813209795],[-127.33216519997583,56.82838139174486],[-127.33204327447284,56.82820670430571],[-127.33193718637597,56.82804530169999],[-127.33180436097246,56.827881932545324],[-127.33163086715088,56.82772906698029],[-127.33147874591805,56.827571499043],[-127.33142442604183,56.82739387521133],[-127.33141927117924,56.82721462559322],[-127.33146448496363,56.82703822038452],[-127.33159314947302,56.82687216405859],[-127.33173630630274,56.82671044123285],[-127.33191369384248,56.826559572817736],[-127.3320962537181,56.82640977162819],[-127.33228301309359,56.82626328892533],[-127.33249158240508,56.826124426160725],[-127.33271284081198,56.82599663895611],[-127.33295594767753,56.825877591741964],[-127.33316033377785,56.825736529639556],[-127.33333562194059,56.82558456022577],[-127.33343539262282,56.825414316840806],[-127.33350110216853,56.82523770008413],[-127.33356993399752,56.82506217181351],[-127.3336893465926,56.82489620866992],[-127.33386564600484,56.82474422814958],[-127.33398087771333,56.82457606650631],[-127.33407648073589,56.82440362430589],[-127.33415468280805,56.82423248185657],[-127.33423667624524,56.824052335212635],[-127.3344047284616,56.82389931826107],[-127.33459353400161,56.82375281117006],[-127.33483459261781,56.823634902130074],[-127.33511022799152,56.82353792850753],[-127.33536059700667,56.82342216381765],[-127.33558274790087,56.82329100055443],[-127.33581005427132,56.82316090439408],[-127.33608993982561,56.823068367396324],[-127.33637714774348,56.822980236820676],[-127.33664545086727,56.822878852951185],[-127.33686648333729,56.82274545771326],[-127.33709169288265,56.82261426026663],[-127.33727841500833,56.82246777071155],[-127.33748859933017,56.82234681339982],[-127.33781940625359,56.8223333123554],[-127.33814616701758,56.82232097289228],[-127.33847066674734,56.82230305276186],[-127.33878068231692,56.82225166228429],[-127.33906260472298,56.82215909773042],[-127.33935202125313,56.82207542020472],[-127.33963185166874,56.821981755380754],[-127.339864550817,56.82183030407817],[-127.34012638942865,56.82175027190585],[-127.34040199810127,56.8216532871413],[-127.34066491397445,56.82154522672356],[-127.34088493035073,56.821412955673686],[-127.34110910146059,56.82128176187975],[-127.34134465708684,56.8211538117498],[-127.34164960294788,56.82110470807642],[-127.34197036245776,56.821067766924806],[-127.34205358686948,56.82110164471825],[-127.3422793343271,56.82110490933859],[-127.34260215456831,56.82112733919559],[-127.34289916912961,56.82120382646319],[-127.34319214530018,56.82128259621323],[-127.34329777101368,56.821311758426525],[-127.3435048707702,56.8213096110604],[-127.34382705294166,56.821283856961365],[-127.34413863645884,56.82121898958808],[-127.34440034971566,56.82110645139506],[-127.34465311517974,56.821001850015506],[-127.34495756555056,56.82093817531842],[-127.34528292807589,56.820915746470895],[-127.34560945962298,56.82092692388935],[-127.34593712536122,56.82094145062765],[-127.34625938084358,56.82091793095886],[-127.34657784988451,56.82087427829726],[-127.34690233356704,56.820856337068264],[-127.34722890410733,56.82086863064099],[-127.34754900907105,56.82090116218774],[-127.34781394954747,56.82099926404787],[-127.34807515827862,56.82110748999105],[-127.34835634913834,56.82120093913142],[-127.34861148741501,56.82131146849633],[-127.34883454522173,56.82144362356758],[-127.34906767807058,56.82157007016434],[-127.34930380183106,56.821694243934296],[-127.3495760153868,56.82179450788492],[-127.34986412615949,56.82188003730304],[-127.35016407199255,56.82195199505177],[-127.35045419664475,56.82203638156263],[-127.35076281614847,56.822092558544384],[-127.3510841861171,56.82213179219157],[-127.35139589130154,56.822187935509334],[-127.3516859420967,56.82227007880424],[-127.35195820504644,56.822371458021614],[-127.35221541188862,56.82248195897415],[-127.35245020440385,56.822597175984676],[-127.35271339448126,56.822732267715374],[-127.35296658114459,56.82281591375322],[-127.3532651951048,56.82290805001251],[-127.35356997617849,56.82297098441303],[-127.35387288736878,56.823039540872784],[-127.35418749183867,56.82309004410559],[-127.35450682298712,56.82312929072044],[-127.35482808762065,56.82316515440281],[-127.35514646506084,56.82320665071981],[-127.35547239438708,56.8232290162854],[-127.35559723613922,56.82327925989768],[-127.35570944810952,56.8233498071658],[-127.35587456035319,56.82340747367686],[-127.35600418007448,56.82341844431113],[-127.35632170093585,56.8234644293304],[-127.35663910464604,56.823507052869324],[-127.35696648189104,56.82351258986385],[-127.35728956666715,56.823541704569706],[-127.35760417968356,56.82359219952315],[-127.35791200158127,56.8236539713607],[-127.35821785254645,56.823718004433374],[-127.3585352997848,56.8237617435689],[-127.3588264340192,56.82384498053061],[-127.35908460864795,56.823953216814346],[-127.35932985763745,56.82407279468244],[-127.35958708045189,56.82418328129149],[-127.3598563492188,56.82428579645824],[-127.36011960868368,56.82439285675771],[-127.36038386372334,56.824498785444376],[-127.36064114820688,56.82461039005246],[-127.3609123781457,56.82471064122214],[-127.36121079725892,56.82470862721862],[-127.36152155179136,56.82473674041768],[-127.36175351517576,56.824857574137646],[-127.36193728964916,56.82500805085032],[-127.36214688824522,56.82516385910383],[-127.36232901706018,56.82529642223599],[-127.36256323440278,56.82542283415889],[-127.36277521135885,56.82555844478803],[-127.36297311121669,56.82570204771752],[-127.36318007461527,56.82584107242397],[-127.36354763840708,56.82602547421819],[-127.36377392861668,56.82589757996615],[-127.36408366271574,56.825838287202544],[-127.36439228324517,56.825776764116355],[-127.36469874987044,56.825711901021954],[-127.36501178620875,56.825659295137825],[-127.3653237254324,56.82560445875008],[-127.36562809886075,56.82553849483954],[-127.36593675411392,56.825478088320004],[-127.36625185397911,56.82542545765735],[-127.36653606157344,56.82534065316252],[-127.366796759989,56.82522920041117],[-127.36706703321764,56.8251277319625],[-127.36733837818241,56.82502737228239],[-127.36760653507132,56.82492368372346],[-127.36786820509184,56.82481109787802],[-127.36813958539221,56.82471185677211],[-127.36844319097783,56.82465373882236],[-127.36877267243355,56.82463120762759],[-127.36909450845334,56.82459530856718],[-127.36939037079853,56.82452158108517],[-127.36967536030787,56.82443003744256],[-127.36994976136258,56.824329639909635],[-127.37021900291762,56.824228175698096],[-127.37048607332143,56.82412337193084],[-127.37074999512592,56.824016359612926],[-127.37100971839716,56.82390714987337],[-127.37126416297723,56.82379351286761],[-127.37151852659537,56.82367763491016],[-127.37176331154626,56.823551771999824],[-127.37196039825825,56.82341184523095],[-127.3720807539819,56.823248076422125],[-127.37213997263731,56.82306702456438],[-127.37215415791593,56.82288869092014],[-127.37206076043392,56.82271373790008],[-127.3720492826322,56.82253455542027],[-127.37211690121654,56.82235901794088],[-127.37226705689659,56.8221971747334],[-127.37238854386739,56.82203675567681],[-127.37230840436357,56.821859421204714],[-127.37214293973382,56.821705403368796],[-127.37196019803454,56.82155605089876],[-127.37175724749572,56.82141475670984],[-127.37156843669989,56.82126770930028],[-127.37140904949341,56.821111385006766],[-127.37128416385318,56.82094460954346],[-127.3712113356114,56.82077055915297],[-127.37119673874052,56.8205902892245],[-127.37120473645045,56.82041090083348],[-127.37125278851778,56.82023332982605],[-127.37133893983881,56.82005983814208],[-127.37140659704669,56.81988542153104],[-127.3714762643086,56.81970986297088],[-127.37155208208655,56.81953423927317],[-127.37157755403506,56.8193557866107],[-127.3715404417186,56.81917687588029],[-127.37142067944447,56.81901004656993],[-127.37123394841731,56.818862977014625],[-127.37101988844601,56.81872628225878],[-127.37085340898336,56.81857227401196],[-127.37074585077141,56.81840195311382],[-127.37069753769796,56.81822540210282],[-127.37067273236335,56.81804636109118],[-127.370666379913,56.81786712486385],[-127.3706795134343,56.81768768249055],[-127.3707018648742,56.81750814260446],[-127.37072318277238,56.81732861366788],[-127.3707445168747,56.81714908457431],[-127.37075968363506,56.81696962075267],[-127.37076153190988,56.81679029787381],[-127.37074731033387,56.81667838378841],[-127.37069896498483,56.81661613917405],[-127.37060574802813,56.81644566668843],[-127.37065389372218,56.81627033661719],[-127.37082090996438,56.81612176486018],[-127.37086794156974,56.8159442052289],[-127.37089134772555,56.81576577496802],[-127.3709589597321,56.815590238830744],[-127.37107089613828,56.81542095742054],[-127.37123983811875,56.815269002829595],[-127.37121704260164,56.815088820324604],[-127.3714473670745,56.81496199053898],[-127.3716766334419,56.81483405089728],[-127.37192585952708,56.81471934719284],[-127.372157331964,56.81459586590214],[-127.37243718780879,56.814506611573954],[-127.3727371066014,56.81443395369559],[-127.37305218678512,56.81438354730615],[-127.37337069110232,56.81434318964385],[-127.37369819090766,56.81432514869746],[-127.37402356071077,56.81430488822332],[-127.37438149469955,56.814306694334604],[-127.37467497614973,56.81428340860919],[-127.3750028332612,56.81427544636922],[-127.37532832146464,56.81425854328646],[-127.37565233785689,56.81422932791348],[-127.37597280858324,56.81418670164198],[-127.37626543154657,56.81411075107369],[-127.37646235067228,56.81396745743816],[-127.37663733561317,56.813813190150135],[-127.376807185787,56.81365897720171],[-127.37701037043396,56.81351897806878],[-127.37722595719403,56.81338220869068],[-127.37745835814505,56.813256466603946],[-127.37772859955857,56.81315721711715],[-127.37802409498883,56.813075628727205],[-127.37833133518559,56.81300736242751],[-127.37864102361229,56.81295027578828],[-127.378961805119,56.81294574064979],[-127.37928903808323,56.81297811732782],[-127.37962096535001,56.81299811608479],[-127.37994401930953,56.813028294337045],[-127.38020689797892,56.813125231094766],[-127.38043719985754,56.81325725454151],[-127.38067850687838,56.81338131578208],[-127.38094278297733,56.813488322037074],[-127.38120401724765,56.813596480856255],[-127.3814692894934,56.81370235481418],[-127.38175942053604,56.813786670794244],[-127.38208341200823,56.81378545569484],[-127.38241224016942,56.81377634363794],[-127.38273927479366,56.81377397377344],[-127.38305882087366,56.81373470167454],[-127.38337846283825,56.81369766905255],[-127.38370378221433,56.813676264055594],[-127.38402902105979,56.81365261780338],[-127.38434975843707,56.81361781236101],[-127.38464654096916,56.81354403951005],[-127.38495856489529,56.813523894108855],[-127.3852948004994,56.81354943559307],[-127.38562136163732,56.81356275256733],[-127.38594837785841,56.813560374777786],[-127.38627156430063,56.813536744831794],[-127.38658996752963,56.81349411425549],[-127.38689207900538,56.81342588240907],[-127.38720646089612,56.81338553465529],[-127.3875329811219,56.813397726591454],[-127.38785975465458,56.81338862266918],[-127.38818690628243,56.81338959970766],[-127.38851408174132,56.81339169631347],[-127.38884428767099,56.81336350208096],[-127.38916876915776,56.8133476955315],[-127.38948833468483,56.813337544144176],[-127.38981610021825,56.81332730398726],[-127.39014161422563,56.813311483915854],[-127.39046808064491,56.813293411501604],[-127.390794933167,56.81328654061057],[-127.39112224516657,56.81329199110432],[-127.39144950055825,56.81329632073061],[-127.39177604685693,56.8132804854541],[-127.39209902580691,56.813251239891564],[-127.39240979333483,56.81319634983617],[-127.39270972117906,56.8131247658235],[-127.39302478860631,56.81307543129578],[-127.39334457699705,56.813042854964564],[-127.39366664917999,56.81307413032754],[-127.39398881903017,56.813107645145614],[-127.39430429071729,56.813154679073584],[-127.39463006075587,56.81317470575263],[-127.39495704913904,56.81317118483188],[-127.39528365736622,56.81315758132314],[-127.39552996190558,56.81304958684088],[-127.39574560721776,56.81300131673501],[-127.39589521845186,56.81299858391832],[-127.39615177663138,56.812975647205114],[-127.39647507328709,56.81295535245899],[-127.39680208370234,56.812952947273565],[-127.39712894862143,56.812946060226814],[-127.3974564041246,56.81295597575216],[-127.39778379523,56.81296364984371],[-127.39810676699143,56.81293438930953],[-127.39841417311845,56.8128716764624],[-127.39872178079818,56.81281456395915],[-127.3990469221727,56.81278863958982],[-127.39937226575476,56.81276831547458],[-127.39969760899494,56.8127479905425],[-127.39997363326442,56.81269681957736],[-127.40000091105425,56.81268531824095],[-127.40022923607593,56.81259095682744],[-127.40067255247003,56.81228919111492],[-127.4011101491446,56.81239540303344],[-127.40139278325316,56.81244165424796],[-127.40168376207467,56.81252031347272],[-127.40198149571177,56.81244536956931],[-127.40228351482958,56.812375981841235],[-127.40259312221583,56.81231771775787],[-127.40288137564998,56.8122361504981],[-127.40309688017875,56.81209933800856],[-127.40330834814023,56.81196481019196],[-127.4035721368205,56.81185885205852],[-127.40384534392592,56.81175839456499],[-127.40415159275747,56.8116643022198],[-127.40438018629553,56.811549758719146],[-127.404647117273,56.81144600559706],[-127.40498890222116,56.81137057696641],[-127.40521799630011,56.81126947436391],[-127.40544794231741,56.81113586318128],[-127.40569905361825,56.81101995232995],[-127.40594805639208,56.81090294321806],[-127.4061981315332,56.81078704263025],[-127.40642110852707,56.81065910861378],[-127.40674230270011,56.810581657553264],[-127.40698253144087,56.810477068890265],[-127.40727666700883,56.81038870388294],[-127.40758182511017,56.81032151081415],[-127.40789128575568,56.81025987351408],[-127.40820411388732,56.81020604342408],[-127.40850204844831,56.81016582236473],[-127.40884215958143,56.81012962447636],[-127.40916859040205,56.81011150497368],[-127.40949599682887,56.81009225337559],[-127.40981778014165,56.81005961431393],[-127.41013383390717,56.81001022702696],[-127.41043800817964,56.80994415852335],[-127.41072602311442,56.80985697288668],[-127.41102181594447,56.809786511668676],[-127.41133991578268,56.80973709911648],[-127.4116668735804,56.80973353602769],[-127.41199426471992,56.80974229457896],[-127.41232285272959,56.80975552186867],[-127.41265140005392,56.809767628117484],[-127.41297872626443,56.80977414358661],[-127.413303577055,56.80976947869997],[-127.41362446056428,56.80974020190531],[-127.41394141713613,56.80968743344095],[-127.41424982945993,56.809625792253506],[-127.41454747550853,56.80954969939894],[-127.4148407175259,56.80946580937849],[-127.41515771117291,56.809414158153736],[-127.41546021587125,56.80935930252357],[-127.41578204545335,56.809327768688654],[-127.41610611297499,56.80930181285412],[-127.41643129520575,56.80927808532363],[-127.41675751014294,56.80925434567675],[-127.41708260949962,56.8092283760999],[-127.41740541232816,56.80919570690485],[-127.41772386866022,56.809156360546226],[-127.41803998708262,56.80910919440889],[-127.41835494841115,56.809058678198596],[-127.41867000748255,56.80901040145509],[-127.41898600028095,56.808959872397836],[-127.41930178674544,56.808903741546374],[-127.41961662142145,56.808849861660136],[-127.41993393260367,56.80880716040582],[-127.42025300010192,56.808784610909335],[-127.4205772775348,56.80879226118411],[-127.42090335360078,56.80882118337734],[-127.4212286604039,56.80885683713238],[-127.42155183568266,56.808890272160255],[-127.42187128252158,56.808933833225616],[-127.4221906065236,56.80897403289202],[-127.4225142811771,56.808992891523786],[-127.42284023975975,56.80899043178567],[-127.42316893508332,56.8089789759023],[-127.42349120866976,56.80895974516378],[-127.42382397601111,56.808975138624525],[-127.42415084168857,56.80899732006768],[-127.42447589086304,56.80899822818369],[-127.42479758630746,56.80896331134752],[-127.42511475249245,56.80891723697019],[-127.4254286450455,56.8088655945507],[-127.42574249547242,56.80881283116943],[-127.42605971699382,56.80876787450496],[-127.4263768800734,56.80872179704293],[-127.42668646322862,56.80866459571664],[-127.42697763883834,56.80858070066668],[-127.42724345563364,56.80847691256213],[-127.4274966167994,56.80836317747024],[-127.42774758628948,56.808246104062455],[-127.42800287691475,56.8081345858053],[-127.42829365703271,56.80804060619088],[-127.42851056138828,56.80791718299428],[-127.42861914095542,56.80774788672452],[-127.42871308194754,56.8075709072508],[-127.42881136974601,56.80740060370894],[-127.42885300854938,56.807223080486],[-127.42885970312172,56.8070437014772],[-127.42888587777671,56.80686410757],[-127.42889463820086,56.80668470580454],[-127.42893416841683,56.80650608522816],[-127.42901388154249,56.80633262457179],[-127.42906682447497,56.80615609730121],[-127.42913108947937,56.805980565742104],[-127.42921908189984,56.80580925494494],[-127.42929875092484,56.80563467398813],[-127.42931881516584,56.80545626820886],[-127.42932906670696,56.80523426515734],[-127.42954237272114,56.805097432077716],[-127.42974946209168,56.80495842596134],[-127.42995444260234,56.804818322138495],[-127.43013360324777,56.804672899838486],[-127.4302215468425,56.80450046829977],[-127.43032081175578,56.80432903232863],[-127.43037587835254,56.804154722500954],[-127.4303815901869,56.803976475178665],[-127.43046833245957,56.8037995741637],[-127.43051921578459,56.80362306921346],[-127.43053407496988,56.8034424795794],[-127.43057781754536,56.80326717417129],[-127.43067707771615,56.80309573805722],[-127.43068684551855,56.80291632535663],[-127.43075932066017,56.802741823149724],[-127.43082767121548,56.80256624583147],[-127.43089600475497,56.80239066867724],[-127.43096946944966,56.80221503479923],[-127.43103990897677,56.8020405549759],[-127.43105888898793,56.80186104053965],[-127.43106554736725,56.80168054163162],[-127.43108661791102,56.80150212477917],[-127.43109327609923,56.801321625909516],[-127.43108629269824,56.801077400553325],[-127.43108272904847,56.80089813534933],[-127.43108942858512,56.800718756742356],[-127.4310878728621,56.8005383487342],[-127.43105772575728,56.80036049802862],[-127.43097334652298,56.80018548796038],[-127.4308839194239,56.80001277494956],[-127.43087425000631,56.800000554614954],[-127.43076093632432,56.79984715659172],[-127.43061553626801,56.79968514777016],[-127.43045800735524,56.79952775541197],[-127.43029139038661,56.79937382523246],[-127.43011258692498,56.79922339141667],[-127.42991658128862,56.7990787506057],[-127.42976418902751,56.79892130079711],[-127.42962285373082,56.79875812550351],[-127.42943095076394,56.79861343874863],[-127.42922187081571,56.7984756652411],[-127.42901075952314,56.798337913842175],[-127.4287705069529,56.798216172797375],[-127.42849624637914,56.79811721953648],[-127.42820321442501,56.798037523826764],[-127.4279190825917,56.797948764118644],[-127.42764285955127,56.797852072054006],[-127.42735972183719,56.797762179546815],[-127.42707760183815,56.797672275223384],[-127.42676799238367,56.79761517206187],[-127.4264514925677,56.79756598862903],[-127.42612952299031,56.79753479507271],[-127.42580476090322,56.79751147601915],[-127.42518282625518,56.79749030675011],[-127.42539452317325,56.79722686518315],[-127.42540841230586,56.797047408411075],[-127.42542644087807,56.79686902673469],[-127.42549996118177,56.79669451674955],[-127.42558786602102,56.79652096900786],[-127.42567268819025,56.79634745515903],[-127.42575543560264,56.79617284346247],[-127.42583719079666,56.795999363298506],[-127.42591168266833,56.79582372178625],[-127.42600479715861,56.795652357735385],[-127.42616186997208,56.79549261628128],[-127.42637744670716,56.79536248764239],[-127.42668667518946,56.79529856562502],[-127.42685005615085,56.7951432364074],[-127.4269803369094,56.79497930661047],[-127.42710641946378,56.7948131816646],[-127.42723046829556,56.79464707901938],[-127.4273534420352,56.7944798674647],[-127.427479521361,56.794313742206306],[-127.42751196479755,56.79413744278392],[-127.42750125505331,56.793958257224546],[-127.4274874388021,56.79377798528844],[-127.42748082722454,56.79359875458422],[-127.42748748447777,56.79341825695529],[-127.4274888208604,56.79323221477606],[-127.42749524647284,56.79304499585775],[-127.42752137666953,56.79286428357846],[-127.42758074404001,56.79269553193759],[-127.42775965141333,56.792572529211505],[-127.4280963999041,56.79250493823045],[-127.42828902697715,56.79236497371826],[-127.42844814231528,56.79220520702755],[-127.42861462603958,56.79205096206786],[-127.42873864315457,56.79188485843929],[-127.42885127450047,56.791715518419025],[-127.4289535777991,56.79154405101097],[-127.42905277373436,56.79137149718382],[-127.4291581816771,56.7912011160062],[-127.42928535793507,56.791037218302364],[-127.42946224296492,56.79088734002174],[-127.42968163230702,56.79075043986806],[-127.4298761695682,56.79060708995155],[-127.42992294063508,56.79043063192066],[-127.42994295272779,56.79025110751916],[-127.42996497203318,56.790070440315276],[-127.43002924764906,56.789896030230636],[-127.43014395772661,56.789727786848495],[-127.43025759283304,56.78955843460192],[-127.4303691945828,56.78938910472879],[-127.43054815803468,56.78924032266653],[-127.43074785594531,56.78909803507048],[-127.43091636586938,56.788943764801196],[-127.43107761289262,56.78878733331108],[-127.43129816648968,56.78865490010965],[-127.43155327623964,56.78854225600817],[-127.43179267952355,56.78842081995297],[-127.43199654891086,56.78828072555703],[-127.4321723368571,56.78812973506146],[-127.43232322405296,56.787970054683065],[-127.43244307338482,56.78780287306936],[-127.43256498672885,56.787635668508834],[-127.43268381785113,56.78746849795146],[-127.43277272712409,56.7872960552516],[-127.4328112449936,56.787118567047045],[-127.43293532763259,56.78695470008885],[-127.4331039024635,56.78680266754493],[-127.43328694065801,56.78665383657157],[-127.43352424147896,56.78655931601332],[-127.43370116775127,56.78638365666261],[-127.43395205897794,56.786268813181344],[-127.43422504811905,56.786169413390795],[-127.43445811656298,56.78604355993756],[-127.43465523678589,56.78588784708153],[-127.43483782997959,56.785754707838414],[-127.43509494247891,56.78564203443188],[-127.43534062851364,56.7855250046317],[-127.4355631974766,56.785392541712696],[-127.43579834697746,56.78526778337094],[-127.4360271831481,56.78513861205709],[-127.43626450282991,56.785017190711294],[-127.4365374772067,56.784917786120445],[-127.4367737778754,56.78479637513364],[-127.4370435852645,56.78469476332148],[-127.43723086170773,56.78455036220891],[-127.43747022249345,56.784428915951004],[-127.43769068778124,56.78429535202966],[-127.43784580065665,56.78414010081158],[-127.43809146884298,56.78402306589792],[-127.43838250125715,56.78394138702531],[-127.43868671391608,56.783883094524626],[-127.43894291168088,56.78377378544208],[-127.43916032894805,56.78364137350223],[-127.43938500575865,56.783511121751346],[-127.43964951780012,56.78340508072057],[-127.43982351340023,56.78326194415311],[-127.43990420953934,56.783255443255314],[-127.43997397149565,56.78323001299597],[-127.44018300948052,56.783203033100214],[-127.44041652924753,56.78320043460069],[-127.44073139204322,56.78315322514802],[-127.44104882824357,56.783120554651966],[-127.44137160169711,56.783093427161056],[-127.44169671516522,56.78307411731048],[-127.44201952950915,56.78304810838489],[-127.44234719157478,56.78304221623973],[-127.44267425503512,56.78304753638717],[-127.4429993257081,56.78302710308603],[-127.44332135700313,56.78300782350221],[-127.44364943631665,56.78301312985623],[-127.44397645792198,56.783017326534186],[-127.44429953358686,56.7830260490001],[-127.44462563561811,56.783005600095294],[-127.44495209726504,56.78299523216317],[-127.44527874242766,56.782989343940294],[-127.44560595679793,56.78299913757923],[-127.44590502587491,56.7830507087115],[-127.44623188062803,56.78305041897708],[-127.44655782856776,56.78305350049087],[-127.44688402779353,56.78306330225441],[-127.44721202430135,56.783066359222964],[-127.44753869522427,56.7830615856589],[-127.44786580146156,56.7830680128682],[-127.44819213703605,56.783054276230395],[-127.44851367932338,56.78302154141083],[-127.4488389563391,56.78300669433532],[-127.44916596206448,56.78301087808695],[-127.44948893865168,56.782989331246775],[-127.44980271431402,56.7829409911207],[-127.45011739568753,56.78288927813739],[-127.45043108580464,56.78283869613683],[-127.45074473311821,56.782786993200695],[-127.4511093746532,56.78294764086297],[-127.45136122110574,56.78305127868026],[-127.45153186440464,56.783202893914066],[-127.45173188322501,56.783345214298116],[-127.4520205454328,56.78341930112316],[-127.45234712740056,56.78343917071582],[-127.45266818348729,56.78342099945305],[-127.452996225531,56.78342516194357],[-127.4533160509596,56.78345631143241],[-127.45357504226138,56.78355874420643],[-127.45379931509582,56.78369182396404],[-127.45397991844149,56.78383547975525],[-127.4541465791031,56.78398937780455],[-127.45440295828992,56.7841041655113],[-127.45465294101359,56.784212300721435],[-127.45495927716647,56.78426601084572],[-127.45523906303016,56.78434915565674],[-127.45551001926268,56.78444248501995],[-127.45577225601967,56.78454935970635],[-127.45603751662176,56.784655079219775],[-127.45632264777085,56.784743764892035],[-127.4565978164478,56.784840406620035],[-127.45683659365422,56.784949784530426],[-127.45709622042575,56.78506901318544],[-127.45735352142731,56.785180422972445],[-127.45757764790949,56.78530901560928],[-127.45774030015151,56.785465195841994],[-127.45786216813268,56.78562631784926],[-127.45810541425593,56.78574572910273],[-127.4582740441354,56.78592425445906],[-127.45845298305032,56.7860499928234],[-127.45858828997636,56.78621432479906],[-127.45872756854757,56.78637524994828],[-127.45884260304067,56.786545413428726],[-127.45894270453798,56.78672695166976],[-127.45908057386612,56.78687780653241],[-127.45928021707509,56.78700891379959],[-127.45925309829663,56.78726809041788],[-127.45915708642245,56.78743951202595],[-127.45905902505667,56.78761095667141],[-127.4589630114726,56.78778237817129],[-127.45887835730939,56.78795591289836],[-127.4587968094183,56.78813053322876],[-127.45874094551603,56.78830710540594],[-127.45869639930088,56.78848467069681],[-127.45867136571374,56.7886631367751],[-127.45864734805426,56.78884159141819],[-127.45862438855507,56.78902115480523],[-127.4585921755545,56.7891997018124],[-127.45857225466705,56.789378110333026],[-127.45860555873355,56.789554798528144],[-127.45859490753077,56.78973422330125],[-127.45858727896079,56.78991249338114],[-127.45860427781268,56.790091606658635],[-127.4585982787413,56.790231756141736],[-127.45885243065099,56.790394749362484],[-127.45909883341818,56.790515244552466],[-127.45934200374853,56.790631293114814],[-127.4595346571687,56.79076696193387],[-127.45964573517179,56.790967427661286],[-127.45979734880059,56.791074421796765],[-127.46027120132035,56.79124726214152],[-127.46048238517365,56.791384961969676],[-127.46066186387189,56.7915241398568],[-127.46091518720237,56.791664725560906],[-127.46110846097218,56.7917891786731],[-127.46128944171359,56.79194066604879],[-127.46148523229199,56.79207741747223],[-127.46163174921688,56.79223937939256],[-127.46185077444196,56.79236690274118],[-127.4620532834969,56.79246435450184],[-127.46209936509874,56.79265322528137],[-127.46224211129811,56.792633682597135],[-127.46243177048274,56.792608006548484],[-127.46262128573004,56.79263276146102],[-127.46294157611696,56.7926739689625],[-127.46325688017936,56.79271859401229],[-127.46357782331022,56.79274970665355],[-127.46389483863399,56.79278534555264],[-127.46421489372358,56.79281982864567],[-127.46452916778867,56.7928644622803],[-127.4647784721669,56.792952415284645],[-127.46511913108407,56.793016920857696],[-127.4653753481015,56.79312496638866],[-127.46563456329542,56.7932307361764],[-127.46593061623494,56.79330807187758],[-127.466232432824,56.793348359871366],[-127.46656461589262,56.79335132141619],[-127.4669031717042,56.79333291736437],[-127.46722831289334,56.793285527286564],[-127.46751948414806,56.793234038798396],[-127.46780946493702,56.79315118465927],[-127.46813712359129,56.79314298684338],[-127.46845062212111,56.793112535597416],[-127.46877017776632,56.793052877699566],[-127.46903581832116,56.79295012502094],[-127.46934025639563,56.79292425704826],[-127.46964900934587,56.79293083853335],[-127.46999198829334,56.79286754971313],[-127.47025443148921,56.79276146881639],[-127.4704659486682,56.792663810428564],[-127.47082247365756,56.792579072965374],[-127.47110846667611,56.79247272276217],[-127.47142443669223,56.7923996510437],[-127.47168017234439,56.79227907484965],[-127.47181112404618,56.7922462076924],[-127.4719710744543,56.792220855323684],[-127.47226704706227,56.792161456813595],[-127.47248351575946,56.79205925611794],[-127.47276181649272,56.791966437623074],[-127.47301374586884,56.79185374667407],[-127.47331126755414,56.79178088018228],[-127.47360019243648,56.79169802490015],[-127.47387785563363,56.791615297174],[-127.47418117900729,56.79153339731486],[-127.47448294803385,56.79146496237229],[-127.47478139480764,56.79138984059549],[-127.47505149840758,56.79132400635021],[-127.47531250803898,56.79118094953466],[-127.47561719177753,56.79113489192112],[-127.47597718555059,56.791115098882095],[-127.47617181167334,56.791032192178236],[-127.4763674289381,56.79081367383726],[-127.47664132703396,56.79079374006948],[-127.47686506735853,56.790694810957724],[-127.47720327573994,56.79061474726145],[-127.47744468288094,56.790495443632274],[-127.47769967040807,56.79038270850131],[-127.47792843972121,56.790254582914855],[-127.47816557371263,56.79013084405406],[-127.4784415842295,56.790032435989474],[-127.47874009787765,56.789959545499364],[-127.47905236357646,56.789897703810446],[-127.47937021296794,56.78984812483058],[-127.47969096687189,56.78982092510027],[-127.48001244413256,56.789839663440226],[-127.48033602546916,56.78988639347743],[-127.4806579485479,56.789916331749275],[-127.4809589736096,56.789882630546124],[-127.48128488679106,56.7898295926011],[-127.4816036795607,56.789777755981895],[-127.48191481774289,56.78974057480642],[-127.48223436769386,56.78968200397598],[-127.48254696886286,56.78962911523989],[-127.48286289160296,56.789582911669896],[-127.4831846140943,56.78955457147823],[-127.48348047757976,56.789519802836494],[-127.48379873491048,56.789427623029646],[-127.48409830931519,56.78935582854856],[-127.4843978232541,56.789282913395056],[-127.48469521779724,56.78920778052005],[-127.48499362734411,56.78913263530867],[-127.48552352388388,56.7890010413817],[-127.48554215882073,56.788819280108235],[-127.48555466393319,56.78863758919435],[-127.48557847141645,56.78845688925608],[-127.48562716359719,56.7882837483867],[-127.48582788520126,56.78814696514607],[-127.48610707229541,56.78805186600173],[-127.48622353875466,56.787882429489585],[-127.48629014886758,56.78766873881846],[-127.48647850360722,56.7875567511245],[-127.4866883163058,56.78741650015008],[-127.48690132130459,56.78727957414932],[-127.48712680494782,56.78714698708453],[-127.48737558004751,56.78703430392219],[-127.48769330914894,56.786982464261236],[-127.48801929344275,56.786985441386406],[-127.48833833263498,56.78702099676467],[-127.48865592701631,56.78707225726062],[-127.48893759554724,56.787148584810055],[-127.48925366040324,56.78721330941649],[-127.48958544766614,56.78720725055421],[-127.48985189519539,56.78720754618979],[-127.49023401327939,56.78723116429642],[-127.49056278186005,56.787253154273266],[-127.4908837416405,56.78725842339903],[-127.49118646016414,56.78724260924969],[-127.49153761456024,56.78723408095233],[-127.49186407244233,56.78722247433475],[-127.49219585937497,56.78721640878273],[-127.49253562461317,56.787204647067654],[-127.49286476226945,56.78720981698889],[-127.49316584572779,56.78725789493322],[-127.49343482189583,56.78735004853538],[-127.49368638300935,56.78746929850685],[-127.49393211887629,56.78759645989912],[-127.49418475887674,56.78771681717038],[-127.49440375728443,56.78781514904163],[-127.49477874900113,56.78783995677884],[-127.49511276249363,56.787838340756984],[-127.49543536417308,56.787806597732164],[-127.49576993364518,56.78779264626464],[-127.49608147526887,56.7877666327467],[-127.49639075463594,56.787787712596945],[-127.49671539802321,56.787835510058954],[-127.49701407630057,56.7879004169869],[-127.49729432541083,56.78799243239861],[-127.49761182875609,56.78801453490611],[-127.49775853140278,56.788018440946466],[-127.49796240617187,56.78801720258535],[-127.49831123855873,56.788027734181135],[-127.4985656168307,56.78803375497864],[-127.49884819894277,56.78802712138285],[-127.49922728393501,56.78802497289001],[-127.49955358170477,56.788035762126576],[-127.50000003716667,56.7880530029444],[-127.50001148507319,56.78787244285126],[-127.50008170111987,56.787701287775285],[-127.50021057070593,56.787536176936165],[-127.50032082806688,56.7873667990247],[-127.50043420897521,56.78719850548726],[-127.50054659984022,56.78703134399978],[-127.50066824356752,56.78686519581933],[-127.5007444432345,56.7866894883986],[-127.50085883640216,56.786521182778614],[-127.50092272684492,56.786345617992275],[-127.50096912543397,56.78616801468191],[-127.50100114044513,56.78598945749331],[-127.5010208205956,56.785809922682546],[-127.50107340706899,56.785633368290846],[-127.5011413650199,56.785456635628094],[-127.50117547058632,56.78527917487905],[-127.50128652248904,56.78505151241868],[-127.50133950003104,56.78475280088533],[-127.50117706964082,56.78468632418556],[-127.50091710261106,56.78458847902675],[-127.50072541150304,56.784428205199866],[-127.50071805445789,56.7842646733938],[-127.50046146735521,56.784121961608875],[-127.50024295985374,56.78398329065024],[-127.50010547892316,56.78382014636249],[-127.49990831725468,56.7836767448506],[-127.4996899878511,56.783542553641254],[-127.4994878301418,56.78340257142579],[-127.49927957212279,56.78326378024919],[-127.49910160745756,56.783113431275865],[-127.49892970253173,56.78296077058457],[-127.49874969225505,56.78281044487669],[-127.4985334201095,56.78267622806871],[-127.49831710610356,56.78254089074921],[-127.49810685192892,56.7824032416317],[-127.49787249604601,56.78227819841646],[-127.49761630348577,56.78217133807465],[-127.49737636893957,56.7820609271745],[-127.4971060142517,56.78195871235918],[-127.49682781426516,56.781865553028354],[-127.49654761061588,56.78177353694992],[-127.49623490203727,56.78171551590859],[-127.4961751248071,56.78165344987517],[-127.49619098832939,56.78148068459493],[-127.49640381353483,56.78134038278327],[-127.49667856913159,56.78123858763536],[-127.49690120672206,56.78111386078417],[-127.49704871894397,56.780954141350016],[-127.4971805565483,56.78078675844094],[-127.49734244744081,56.78062799300621],[-127.4974683709972,56.78046628153687],[-127.4974491050113,56.7802860779761],[-127.49744113955876,56.78010686434842],[-127.49754101681432,56.77993424757988],[-127.49770824806139,56.77978102322357],[-127.49793576952334,56.779650634745614],[-127.49815608563037,56.779519208606764],[-127.49843198605987,56.7794207583773],[-127.49870693953955,56.77932455983724],[-127.49885135704675,56.77916487419415],[-127.49885670657171,56.77898550649798],[-127.49887542059491,56.778807104701016],[-127.49894033956542,56.77863152976063],[-127.49899189351734,56.77845498894002],[-127.4989869583029,56.778274619769775],[-127.49897993164667,56.778093154183445],[-127.49917917472747,56.77778826803336],[-127.49943644508714,56.77781778666695],[-127.4997915906638,56.77783496396533],[-127.50007448878047,56.77783840915097],[-127.50046997172531,56.7778652029806],[-127.50075902439268,56.77789547117396],[-127.50109847120879,56.777903861662594],[-127.50142578695187,56.77791687464539],[-127.50175486322269,56.77792202174652],[-127.50207459541703,56.77795081034932],[-127.50238219735236,56.77800999684336],[-127.50268128762623,56.77808721203365],[-127.50297434883335,56.77816785855316],[-127.50325757853423,56.77825870458197],[-127.50354467189493,56.77834390181491],[-127.50385758177293,56.778407505861345],[-127.50180677442323,56.77741151863871],[-127.4976452236357,56.77598047493386],[-127.49567543415023,56.77421020453339],[-127.4939118582673,56.77289475475436],[-127.4912124109142,56.77044252354699],[-127.49007535099256,56.768151563681464],[-127.48955946573233,56.7666692808361],[-127.488218336948,56.763753099257805],[-127.48863792162025,56.76243935657757],[-127.49456832103701,56.76187789360657],[-127.4981088270402,56.76090456146439],[-127.50226975109699,56.75987910139142],[-127.5037371970737,56.75576496148221],[-127.50405117715071,56.75456894294101],[-127.503227582375,56.7517096666971],[-127.50313244582337,56.74896743845319],[-127.5066736774476,56.74725871340435],[-127.51207980420862,56.74686390277217],[-127.51748337595605,56.74703370024732],[-127.52049661730778,56.74715071351467],[-127.52496701174167,56.74675739629381],[-127.52912648193623,56.746762069167005],[-127.53172412419278,56.7472154472697],[-127.53546555765058,56.74749382424201],[-127.53889450138837,56.74750685591065],[-127.53889952946525,56.74600960400406],[-127.5352632949909,56.74510251473944],[-127.53297762547007,56.743838644019704],[-127.53194402414108,56.74138546904602],[-127.5322629955398,56.738476975145154],[-127.53174709192555,56.73596388078031],[-127.53269013596427,56.731783915336756],[-127.53269728362271,56.72813502842453],[-127.53270018093878,56.72665575217638],[-127.53363927662787,56.723910258866844],[-127.53406321592546,56.719395794262375],[-127.53334341577894,56.71694791190696],[-127.53251955974436,56.71277101360226],[-127.53252288263059,56.71088831992179],[-127.53242320791131,56.70940131034086],[-127.5312811388188,56.70808803184993],[-127.52618985810223,56.709403377014034],[-127.52203270948924,56.71190882566737],[-127.51943408111838,56.712880735933325],[-127.51620985492987,56.71533019406811],[-127.51298523634625,56.71641689589334],[-127.50716728694165,56.7164759219778],[-127.50197602344294,56.71647361328558],[-127.49449321849181,56.71725964009624],[-127.48940381147622,56.717381156177545],[-127.48555999659882,56.71725506974886],[-127.48057223115163,56.718056402419286],[-127.47891110314536,56.718514704797094],[-127.47631091643892,56.71867891022453],[-127.4728904109524,56.716853244805755],[-127.47061020087995,56.71496073221076],[-127.46905632888316,56.71382194064187],[-127.46708822367296,56.712275453337256],[-127.46532668919261,56.711130014137275],[-127.46502639481888,56.708730845298575],[-127.46264297133662,56.70735934017539],[-127.45880057401236,56.70724141958374],[-127.45380640457782,56.70929686625626],[-127.44871181666329,56.71089603796297],[-127.44590878140696,56.71123224058946],[-127.44186393882262,56.7099685869265],[-127.44010158802912,56.70916348492719],[-127.43761293825435,56.70790924200315],[-127.43492133641145,56.70636137206988],[-127.43326345230224,56.70533090339401],[-127.43098763337368,56.703679732014194],[-127.42943579274454,56.70246874947325],[-127.42611506011592,56.70167173826759],[-127.42518646601799,56.7005255433579],[-127.423743832983,56.69835407382725],[-127.42375262092497,56.696587939304955],[-127.4254231909584,56.69464211227942],[-127.42615670978165,56.69315484765582],[-127.42440259212476,56.69104062450476],[-127.42222928095936,56.689782638076856],[-127.41746168846556,56.68829314830484],[-127.4154983715111,56.687149288936574],[-127.41457082347837,56.685088636596156],[-127.41374994407438,56.683035777684495],[-127.41095135872253,56.6827436679485],[-127.40451788259676,56.68279588592248],[-127.40161226950873,56.682791603860586],[-127.39621610969938,56.68278732017877],[-127.39465341006489,56.68380823539773],[-127.39422336306663,56.68626019384489],[-127.39514391553452,56.688894788426445],[-127.39481908019282,56.69134561902421],[-127.39200418250873,56.69306132777544],[-127.38628640075545,56.69470955640385],[-127.38421107447417,56.69482146182071],[-127.37964200774778,56.69480760021493],[-127.37746352316064,56.69475017287062],[-127.37446260701311,56.69291752552856],[-127.37436697187408,56.69183383783761],[-127.37176494959533,56.69268623776031],[-127.36988400462353,56.694624607508544],[-127.37038787002317,56.697254829953415],[-127.3696430398312,56.700221025359745],[-127.36557475553188,56.70300724757277],[-127.36119868820371,56.70551868251667],[-127.3582857313011,56.70625754169028],[-127.35299060217083,56.706133816199554],[-127.3495657721716,56.70589173949309],[-127.34737608537782,56.70720548622878],[-127.34663177506528,56.70983088789906],[-127.34744935977182,56.711669058463485],[-127.34908958208996,56.714690926461856],[-127.34886496274886,56.71743642957873],[-127.34926226401947,56.71988857774359],[-127.34685562213542,56.722459626130245],[-127.3446462049314,56.72650773916781],[-127.34379203819685,56.72969906252939],[-127.34201219038906,56.731752524062934],[-127.33763540751825,56.733402555870406],[-127.3351416251227,56.73340144147626],[-127.3301440041878,56.73453767838715],[-127.32567213518548,56.73480772689499],[-127.32027500323439,56.73417268357195],[-127.31580849057838,56.73387756701682],[-127.31040219724235,56.73426416917618],[-127.30530200299485,56.735508052352806],[-127.30259795070108,56.73567875838194],[-127.30094371072244,56.73441348365242],[-127.29970869192984,56.732982613958676],[-127.2982663716544,56.73150002950734],[-127.2969358834572,56.72892263837614],[-127.29592107434654,56.72623450059083],[-127.29562728816836,56.723781175558216],[-127.29501814539688,56.722236425800645],[-127.29492023681111,56.72166368060352],[-127.29493702474518,56.71944032507217],[-127.2935017161043,56.71725840905114],[-127.29195468724382,56.71589336182384],[-127.29040470037997,56.71474347395856],[-127.28706381380785,56.71679378916364],[-127.2832073957512,56.71860709746309],[-127.27821300079728,56.7195171781583],[-127.2754974932109,56.72105003070126],[-127.27433310198467,56.723562592467054],[-127.27193716198488,56.72452745900531],[-127.26829389053952,56.72508319794561],[-127.26372159732115,56.725074197114594],[-127.25269400629807,56.726588957117805],[-127.2495444028439,56.73034863529866],[-127.24557842096353,56.73200050451994],[-127.24172707926881,56.732674028596996],[-127.23526845027793,56.73431363823722],[-127.23015953302047,56.73606558775384],[-127.22568504949048,56.736341159052024],[-127.22247432169726,56.73570819342385],[-127.22206065171551,56.73524595652358],[-127.2200998153777,56.733874999054386],[-127.2176225660548,56.732607487200525],[-127.21484356630816,56.72973814998231],[-127.21382102842486,56.72802660498507],[-127.21217521359854,56.72659879477713],[-127.20989381184548,56.72601059707697],[-127.20835151414114,56.72458177297864],[-127.20568040990548,56.721720219567885],[-127.19866298102484,56.71718683681275],[-127.19671721832566,56.71495485061355],[-127.19467408982605,56.71174664275775],[-127.19314109615163,56.70951976123194],[-127.19191674227523,56.7075141231219],[-127.19047806632246,56.706084158055],[-127.18697291647855,56.70384848180314],[-127.1863575306857,56.70321768109938],[-127.18410292649925,56.70046845341943],[-127.18205951389874,56.697493158709015],[-127.18197126296303,56.696005927246446],[-127.1809743265182,56.69257284155904],[-127.17913088118041,56.69016939031562],[-127.17668013862003,56.68674058993737],[-127.17504947250202,56.68432619015403],[-127.17300034399277,56.68158390962758],[-127.16992183912245,56.6787164762401],[-127.16859934347534,56.676433679113785],[-127.1673861828699,56.67390785761361],[-127.16452155186842,56.670133026815684],[-127.1601016141718,56.66686514920696],[-127.15680701474317,56.664626859579265],[-127.15423319623135,56.66301848128474],[-127.1459376987027,56.662644217696624],[-127.14148066061374,56.662513405643146],[-127.13766744138778,56.66079016975307],[-127.13187476312883,56.65939793696874],[-127.12731448182095,56.659213762458876],[-127.12214372381028,56.65794115725422],[-127.12028926453326,56.657025039729916],[-127.11885239873008,56.655926001300195],[-127.1174235501552,56.654038069483775],[-127.11725147025916,56.651180128889216],[-127.1169684057312,56.649183670310016],[-127.11605992678801,56.64723744448419],[-127.11525914557944,56.64494966379402],[-127.11415674329467,56.6420370303008],[-127.11263035803206,56.63985410815819],[-127.11140528378938,56.63842152232465],[-127.11102000785672,56.636085330806914],[-127.11352091943999,56.63534666997203],[-127.11602534086698,56.633810165906475],[-127.11595053468284,56.63152508740396],[-127.11360860161194,56.62843496000372],[-127.11187188095752,56.62637039341601],[-127.10951283069842,56.62448147251038],[-127.10394618267122,56.62252141988088],[-127.09816507486,56.6207870493147],[-127.09331667260932,56.61922378875594],[-127.0885619135171,56.61840353063861],[-127.08470928886399,56.6198163861694],[-127.08291360087482,56.62237711974751],[-127.07870541892633,56.626992757242355],[-127.07097651987792,56.63124315403572],[-127.06775191944709,56.63225588396437],[-127.06038554784368,56.63263039188348],[-127.05386804661181,56.631796433236765],[-127.04724153976824,56.631375353763374],[-127.04316827262039,56.63341619125225],[-127.0414922518661,56.634550174926794],[-127.03898412581177,56.635905967151956],[-127.03408974301485,56.6375408069962],[-127.03136874736519,56.639238769326596],[-127.03186167147038,56.6409647833673],[-127.03380292027371,56.64279572342496],[-127.03346306728709,56.64456426166134],[-127.03002491051663,56.64580183793389],[-127.02595190528314,56.647788345377315],[-127.02345136302412,56.648632852596386],[-127.01907889699503,56.649698272520745],[-127.01598081208525,56.64894288129852],[-127.01174218734317,56.648178439839164],[-127.00707971629556,56.64787430871867],[-127.00344592746835,56.648261164750295],[-127.00029974923532,56.65041891022374],[-126.99998089620813,56.650923338127676],[-126.99862042524077,56.65165991954141],[-126.99522976175247,56.65621269169742],[-126.99248394891102,56.659173876762274],[-126.98973132848587,56.662645979215185],[-126.9842869134748,56.6657621135458],[-126.97607037336567,56.666971847703714],[-126.97181877307071,56.666959112850094],[-126.96135192729228,56.66633834525239],[-126.95649521986759,56.66522710134321],[-126.9538077443545,56.664762962091025],[-126.95047253659288,56.66554050058906],[-126.94920180920732,56.66695712064684],[-126.94885251285582,56.669299162542025],[-126.94602906702339,56.670431361865326],[-126.94166666432717,56.67075009265915],[-126.93768792111528,56.67278688119679],[-126.93777515872547,56.67369156171284],[-126.93772319116714,56.67678435274613],[-126.93467450167876,56.678993561491524],[-126.93049688396805,56.680457902568286],[-126.92393358924042,56.68173303983545],[-126.91841762660982,56.68267770912308],[-126.91137229932505,56.68212707488751],[-126.90524662088082,56.68226876615047],[-126.8973325113858,56.68359682526337],[-126.89239698457689,56.68653520225794],[-126.89173302942622,56.68881651946584],[-126.88425573099782,56.689118913332095],[-126.88364775855116,56.68831635999369],[-126.87983485175391,56.68692616331489],[-126.87281363711455,56.68500184791202],[-126.87012771433994,56.684302898552964],[-126.86816204083698,56.68400240882724],[-126.86600909380674,56.68268131315686],[-126.86344952199337,56.68089680523722],[-126.85953687601895,56.6792736431628],[-126.8576925003214,56.67806688559712],[-126.85388236272348,56.67666696195714],[-126.84899153294771,56.67727287440636],[-126.8451434232672,56.67781799882932],[-126.84110289195947,56.67750377752141],[-126.83655466681567,56.67657424878981],[-126.83223304417477,56.674719876055306],[-126.82737271518984,56.67412368397466],[-126.82045217583226,56.67247378519019],[-126.81270222366317,56.67094526825542],[-126.80789680007683,56.67250815758299],[-126.80947634608498,56.676289743569946],[-126.81449218834916,56.679574630957475],[-126.81569644522556,56.681646526285284],[-126.8144944085674,56.684549281301685],[-126.81247520534403,56.686650468348276],[-126.81210016106456,56.689727269276695],[-126.81592951075599,56.69020508261296],[-126.82483603576024,56.691286858619826],[-126.82937426971343,56.6926381628055],[-126.83461807993166,56.69517689233548],[-126.83788519889622,56.69793441446685],[-126.83919838861875,56.699664804976585],[-126.84040250110218,56.70178132470608],[-126.83777163851359,56.70342080656669],[-126.83120908802572,56.70948667606593],[-126.83125661426355,56.712229211275215],[-126.83452987206677,56.714646198530325],[-126.83489323719557,56.71722535796993],[-126.8314432057423,56.71840390093599],[-126.82470043023221,56.717846546161475],[-126.8141143468699,56.717384817771034],[-126.80611395879657,56.71756045857222],[-126.80059696181861,56.71804293002597],[-126.80038572354479,56.718214545430925],[-126.7978867111256,56.7185437214815],[-126.7937067666712,56.71960026499842],[-126.79221383187627,56.721420057267444],[-126.79265267990586,56.72507449146148],[-126.79145493838574,56.727636444276456],[-126.78553196564728,56.7276008643687],[-126.77927865009104,56.72853506818589],[-126.77812066864452,56.729151565085715],[-126.77921824701941,56.73133206227063],[-126.77788880985848,56.735033060541134],[-126.77517828642063,56.74009584266623],[-126.77629174315166,56.74147852257703],[-126.7780030268069,56.74867500144484],[-126.78353448133429,56.752424279318795],[-126.78855082865824,56.75611373056372],[-126.7891893888489,56.76017040235177],[-126.78352566969461,56.76236508672528],[-126.77568693597523,56.764025791936554],[-126.76719589198048,56.76711512319673],[-126.76424321410452,56.76886259792209],[-126.75332955699798,56.76845151577576],[-126.74267890516587,56.77015344260769],[-126.73556136229209,56.7721571497434],[-126.72753155672571,56.772964456542326],[-126.72306715385302,56.77258610992864],[-126.71593076871314,56.77082408278601],[-126.71128505311957,56.7693079477882],[-126.69655045984753,56.76778360520656],[-126.68134702238346,56.76852786042095],[-126.66909860566446,56.771585625268024],[-126.66270123736268,56.77365328874942],[-126.65401989570555,56.775526032995934],[-126.64670625900614,56.77672805684966],[-126.64114637878066,56.778458809110056],[-126.63892980017557,56.77964400701303],[-126.62943400982151,56.78065860438714],[-126.62348112668928,56.781413468972104],[-126.61191442388086,56.78212300906724],[-126.60680604015525,56.782478710470336],[-126.60077370379993,56.78231861135301],[-126.59250014261534,56.780429570106044],[-126.58615374233501,56.77655034259057],[-126.58257964225405,56.77407460961384],[-126.5779006392606,56.77020541142723],[-126.57832913366911,56.76598168053085],[-126.57903812125993,56.76278750446298],[-126.58098445435441,56.76011662448286],[-126.58364871174922,56.75768449489122],[-126.58401211750972,56.75591705274788],[-126.58106387247113,56.75333092936422],[-126.57819451548514,56.75182000315083],[-126.57737722265078,56.75124103113846],[-126.5725553124273,56.74897679453973],[-126.56802927233994,56.74716821764941],[-126.56380757031394,56.74570773163696],[-126.56210510639825,56.74334881146179],[-126.56336131823569,56.73930087034667],[-126.5608281147143,56.73699934052876],[-126.55818523401314,56.73480579888874],[-126.55767937906496,56.73435085260277],[-126.5547093802669,56.73272334361705],[-126.55130993945303,56.73167125189641],[-126.5472080217157,56.72968986606151],[-126.54393723905187,56.72778552902209],[-126.54172257071436,56.72530304277022],[-126.53877090318525,56.723056641692125],[-126.53664364156228,56.72115632301592],[-126.53557268826319,56.71863313762781],[-126.53359129453882,56.71519050100936],[-126.52699853518439,56.71325461796675],[-126.52359021224613,56.71265001408951],[-126.52155071838317,56.711322750406715],[-126.51775719688456,56.70957226531299],[-126.51562814962516,56.707788150789405],[-126.51319224813987,56.705825960541574],[-126.51198860833286,56.704333895051924],[-126.506318640578,56.70285043853703],[-126.50076129372832,56.701267705662644],[-126.49695873202081,56.6998572596536],[-126.4889056424456,56.698247747849514],[-126.4848783599706,56.69752795698996],[-126.4788873009568,56.696447852025585],[-126.47795666751352,56.696325816341435],[-126.47035837488573,56.693575169200265],[-126.46791278825499,56.69206930223981],[-126.46595268992768,56.68816851996535],[-126.46344180194664,56.685345252675276],[-126.46049012409476,56.68349151488671],[-126.45898465170586,56.68182080188055],[-126.45770123309025,56.6796473616477],[-126.45619771713785,56.67786009572888],[-126.45699077146298,56.672327171226186],[-126.45513180197038,56.668596212762615],[-126.44907110847159,56.66660079420669],[-126.44413223771868,56.66530034272174],[-126.44218933975517,56.66437487703834],[-126.43903359527782,56.66239589915428],[-126.43609037957735,56.66030857550031],[-126.4319962392771,56.65845807938777],[-126.42787048137362,56.65778168870518],[-126.42448683685167,56.65987223523753],[-126.42205347076904,56.66138596954818],[-126.41883296111287,56.66152194096256],[-126.41321606397894,56.661988188399796],[-126.40809359336366,56.66325928214735],[-126.4073629706483,56.66341395824287],[-126.40336967094744,56.664977068631856],[-126.40021829042523,56.66620582333806],[-126.39632027916957,56.668055231509456],[-126.39200862717371,56.66984303970848],[-126.39232877885058,56.672817732867195],[-126.39224396180906,56.67544410947805],[-126.39285997985203,56.67887501899451],[-126.38204910992982,56.679454197248695],[-126.37647165516908,56.678610144268305],[-126.36847028214083,56.678866261889084],[-126.3599615261641,56.67884545009672],[-126.35149088711496,56.677730505267036],[-126.34388808995539,56.67845904483891],[-126.33609864977798,56.678667776897264],[-126.33288527107494,56.678523733438055],[-126.32634854084797,56.678513532946454],[-126.32091249312653,56.67965647713084],[-126.31333485505789,56.67969301447417],[-126.3073455292324,56.67877527540726],[-126.30199989426661,56.67730006048407],[-126.30090939349114,56.6757968531567],[-126.29640185710569,56.67415812378325],[-126.2893454354115,56.67408450415192],[-126.28375337468225,56.67379218143332],[-126.2825097288441,56.673732169409355],[-126.27547922300954,56.67297656341026],[-126.27156696734887,56.67212442547477],[-126.26914179683452,56.670336949397694],[-126.26662085069401,56.66825385682313],[-126.26628214354724,56.66607660690816],[-126.26640760999899,56.66248228969298],[-126.26652680736906,56.65916583662483],[-126.26298553793325,56.65661873093435],[-126.25369243647398,56.655499073872356],[-126.24756271439028,56.655770897500666],[-126.24001569015924,56.655059178705585],[-126.23867289241265,56.65487345315343],[-126.23395160615618,56.653519773242444],[-126.23053580430759,56.650505504561806],[-126.22699634035422,56.64807394062716],[-126.21956599344462,56.64708298516635],[-126.2153605649053,56.64863164708438],[-126.21044065280385,56.64989453546624],[-126.2052047166362,56.64840620909634],[-126.2038479509221,56.64587193670946],[-126.19881104588165,56.644625031297295],[-126.19530907484693,56.644074699039024],[-126.19004675472816,56.64338347582788],[-126.18663591928548,56.64305683953655],[-126.18396261043812,56.64240641003261],[-126.18119741303023,56.64151406463953],[-126.18033713632305,56.63957038919018],[-126.18023581095402,56.6395077927529],[-126.17923080270356,56.63869359858744],[-126.17624688978194,56.63809721801961],[-126.17121949033785,56.636723754467155],[-126.17062242407843,56.63322914938751],[-126.17098986101028,56.62907004612593],[-126.17316180165079,56.62645905459538],[-126.17448949161668,56.62425248772969],[-126.17490720298179,56.62140184805711],[-126.17613894813,56.61901615054218],[-126.17707367986304,56.616173766777145],[-126.17107796640892,56.60759584465637],[-126.168488164187,56.60488364528686],[-126.16424786906263,56.60192256564677],[-126.16112936538731,56.59960524528121],[-126.15269587620949,56.59533150428746],[-126.14975351821994,56.59370380999904],[-126.14670114650886,56.592300234009734],[-126.14517737020093,56.591540161494414],[-126.13879458774275,56.590552377357604],[-126.13371758318718,56.59066529509034],[-126.12929032999938,56.58998867762632],[-126.12703461760789,56.589390446193946],[-126.12387943762607,56.58798643531034],[-126.12037784404762,56.58754163952011],[-126.11639163997312,56.58623680625397],[-126.11588080796069,56.58548443354928],[-126.11443440228327,56.5833616630707],[-126.11378748839232,56.581354684676846],[-126.11065149244553,56.57949326412073],[-126.1069114105809,56.57722000831886],[-126.10774060543913,56.574548566365536],[-126.11083174044175,56.57229642073252],[-126.11539578840333,56.569379687128276],[-126.11641882615412,56.567048589870595],[-126.11664289564646,56.56397435114277],[-126.11820589222133,56.56107813814198],[-126.12398991827342,56.55868875751517],[-126.13091272113178,56.55625315531552],[-126.13348842185286,56.55388450007622],[-126.1338091949566,56.55091769670681],[-126.12861308237507,56.54886170372007],[-126.12279081469423,56.54696742080499],[-126.11933255521126,56.545500887541415],[-126.11682585878812,56.54347775198955],[-126.11356474594832,56.539609048357036],[-126.1112673928547,56.537576664291805],[-126.10785596097573,56.53491783618828],[-126.10627316798228,56.533064008261285],[-126.10554006676121,56.530716556230225],[-126.10374430787445,56.5290421166119],[-126.10075121860238,56.526320040612816],[-126.10469386739851,56.520715638417634],[-126.10957869135267,56.5173508242626],[-126.12013174349781,56.51444668091718],[-126.13038767159412,56.51381831406144],[-126.13980032104095,56.51358437520642],[-126.14523859010612,56.514564164063614],[-126.15441176077822,56.51523458552765],[-126.16301923291695,56.51436361090664],[-126.16806310453731,56.51219728142544],[-126.16817336805705,56.50922176580513],[-126.17076840401992,56.506225053966006],[-126.17297345801872,56.50528110208221],[-126.17926367743794,56.505577190268966],[-126.1859634937625,56.50599784621858],[-126.19086903152849,56.50742456849532],[-126.19484365833968,56.508951100965305],[-126.19975947083519,56.507285594035295],[-126.20316619976643,56.50459166969108],[-126.20689672755863,56.501484888247546],[-126.20387165525945,56.49945536430544],[-126.19967626045175,56.49838652012864],[-126.20007551086253,56.495930335589286],[-126.20093049315447,56.492335280715245],[-126.2010368361925,56.48949419737122],[-126.2015590253483,56.48646426716406],[-126.20136067229336,56.48348924169586],[-126.20142474680765,56.481723657548464],[-126.20510200095906,56.482793261159124],[-126.20874628380975,56.482034596492696],[-126.21282381520403,56.48059401146759],[-126.21418751657964,56.4771862480573],[-126.20869486362271,56.47489210118412],[-126.20111864019088,56.47321936686041],[-126.19350963554342,56.47238864629305],[-126.1871265398333,56.47197689989247],[-126.18010714476844,56.4719510873844],[-126.17168321780538,56.46820763741894],[-126.17073601502292,56.465851955462476],[-126.16494604861181,56.46338607837731],[-126.16166502795838,56.46283462255268],[-126.1597014013273,56.4601844048401],[-126.15548700798934,56.45706193513917],[-126.15229039633249,56.45427867420993],[-126.1463138996232,56.45140891949957],[-126.1412505983007,56.4488963571023],[-126.13790922688021,56.44720623384373],[-126.13312817199831,56.44554441156017],[-126.12651367778106,56.4458199513036],[-126.118986147404,56.44578234161911],[-126.11383078632052,56.445670515460655],[-126.10830985805984,56.444465469400555],[-126.10371356056359,56.44332217456574],[-126.10433961953918,56.44047186552301],[-126.10426086085906,56.43721885889187],[-126.10382589792432,56.43515803996534],[-126.11201038057185,56.43416537981818],[-126.11914067553796,56.43385426302387],[-126.12291624749456,56.43218384332893],[-126.12588226558486,56.4301556465763],[-126.12626585873376,56.42822852781748],[-126.12365435824482,56.42642979344103],[-126.12001383156489,56.42461405131776],[-126.11875596095315,56.41985663431179],[-126.11726318894847,56.41584323795001],[-126.11489649089599,56.41301353815668],[-126.11304965850178,56.41019230307951],[-126.11428970138793,56.40746690780754],[-126.1203182120731,56.40348249269759],[-126.1300529588623,56.39948513303995],[-126.13124396794042,56.398014239653435],[-126.13372244511002,56.395188820682336],[-126.1385136223007,56.3911331625214],[-126.14405044567889,56.38908385412479],[-126.15051175360497,56.38710491688932],[-126.15242980368073,56.385408942734465],[-126.15372955629257,56.3809714961078],[-126.15195659493249,56.376098618553804],[-126.15081849556412,56.37356389632982],[-126.14917471476049,56.37075195505781],[-126.14615932931312,56.36889147079453],[-126.14239627898968,56.36759631476263],[-126.13995713848911,56.36687313479088],[-126.13963073742092,56.36458835267237],[-126.14386188867574,56.36429690834794],[-126.1484894773234,56.36166596152318],[-126.14873200823111,56.360688897298076],[-126.14832160631083,56.360689373200984],[-126.15086004393909,56.3588403796646],[-126.15063739552072,56.35654654976589],[-126.1487548587182,56.3547027248903],[-126.14625700351073,56.352725159191486],[-126.14727414536941,56.35028652784289],[-126.15198029461703,56.34828266708188],[-126.15798018543916,56.347442007961796],[-126.16601715548299,56.34712715676436],[-126.17463371448753,56.34505460560339],[-126.18141755795936,56.34244641065135],[-126.18845934059907,56.341217509312266],[-126.19477193945829,56.34293758165342],[-126.1953731637927,56.343456418185696],[-126.20169020226862,56.345122377809496],[-126.20687620635225,56.34678089901821],[-126.21465853505839,56.34778071253515],[-126.21887127883295,56.34788111607802],[-126.22477613915878,56.34680449412402],[-126.23012411926491,56.346857722890135],[-126.23454521258478,56.34691242954991],[-126.22941279319154,56.34371359248276],[-126.2243584507677,56.34126716425213],[-126.22291971872576,56.3383393492909],[-126.22540067734776,56.33510895955397],[-126.22876386982115,56.333203212682925],[-126.2304102326539,56.330243057255466],[-126.23358741478621,56.32764750849568],[-126.23665522048627,56.325285076486885],[-126.23969612394103,56.32354990637174],[-126.24166952574699,56.320140944512964],[-126.24302108272975,56.31673313937234],[-126.24770397343411,56.31518283852841],[-126.2532684533519,56.314786613970426],[-126.25544938778172,56.31411915195047],[-126.25798839322859,56.30912269559165],[-126.25979532071229,56.304459249122225],[-126.2633835975458,56.30175461295536],[-126.27335282480183,56.30168888837235],[-126.28446794295947,56.30420064858502],[-126.28972978375086,56.30665315177851],[-126.29187776410612,56.30999077930264],[-126.29453986643138,56.31327342676906],[-126.29960882103951,56.32149699423895],[-126.30566999587079,56.32463700837221],[-126.3123394001394,56.32812474763689],[-126.31638273063012,56.330166942267795],[-126.3209010983746,56.33044245327514],[-126.32416124346562,56.32819392355161],[-126.32425035864776,56.32550532390305],[-126.32659673984969,56.323017094397414],[-126.33483345770622,56.322646318625374],[-126.34217148842342,56.32151571343681],[-126.34384209078257,56.32073160770112],[-126.34862175070802,56.31918630352871],[-126.35284079880559,56.31904928119272],[-126.35300256341706,56.31722970546625],[-126.3511304088248,56.31468987079702],[-126.3489306686578,56.31284091890468],[-126.34879451367145,56.31073540782493],[-126.35228902542609,56.30756253069283],[-126.35751978338315,56.30476108898263],[-126.3591478301176,56.302095058766945],[-126.36348641478139,56.29813988908029],[-126.36990476361564,56.29339895740037],[-126.37614406327685,56.28786965641007],[-126.38744538741464,56.28448444577007],[-126.39484877769362,56.28427360999219],[-126.40390335453218,56.28373453826216],[-126.40869716478109,56.28148798103065],[-126.41218142032695,56.281700821787666],[-126.4150300955977,56.282632523438934],[-126.41738520450161,56.28288472841355],[-126.4214496529889,56.28098059341297],[-126.42541856497864,56.278789891356794],[-126.43082094383358,56.28009804438405],[-126.4337089263368,56.28309026123461],[-126.43624255807977,56.28419282318016],[-126.43842390298934,56.286793059047454],[-126.43959782163822,56.28874256344206],[-126.44484234941775,56.29193252806414],[-126.44874932329238,56.29521659796247],[-126.45424604319254,56.296980471893],[-126.45686646244967,56.298718575715164],[-126.46331857175649,56.29940330023965],[-126.46628850790155,56.29976887800508],[-126.47260102754463,56.301770948492475],[-126.47862448136573,56.30308377620494],[-126.48960692493127,56.303517153103655],[-126.49764364957332,56.30273338781211],[-126.50090223187277,56.30378705993304],[-126.50080042755972,56.30738093698798],[-126.50289582742076,56.30963096498981],[-126.50772295827494,56.31326811595135],[-126.51192077731393,56.313995177695766],[-126.5174262425113,56.31186711500025],[-126.52238897566919,56.31082535351713],[-126.52832169641918,56.31178673620591],[-126.53488722819073,56.31229713347608],[-126.53703613216226,56.31260177778267],[-126.53910370696302,56.31221670454037],[-126.54573495649097,56.31016332079904],[-126.55123500469782,56.30832058310708],[-126.55698808675517,56.30836735206771],[-126.56301208652106,56.309729990924396],[-126.56804403802988,56.31000346990276],[-126.57291773478032,56.30837764832032],[-126.57807930791861,56.30756582464652],[-126.58309822934436,56.30806280382994],[-126.59072955664922,56.307095803844916],[-126.59869036334224,56.3053292417999],[-126.60240291366127,56.30484581790109],[-126.6078679711898,56.30403135867337],[-126.61271936477135,56.303201683726755],[-126.61610769372838,56.30323021323329],[-126.6166798193442,56.30100502993454],[-126.61544189041396,56.29711279214122],[-126.61427643119895,56.29460025148995],[-126.61763280278822,56.291877752405156],[-126.6186464090053,56.28835104133789],[-126.61890549003763,56.28618114314727],[-126.62312990219831,56.28570359390723],[-126.62954901504159,56.287804945427204],[-126.63022606534581,56.28814102101144],[-126.62802585246146,56.286617216718405],[-126.6279304346613,56.28646982319038],[-126.62767881496835,56.28635792183405],[-126.62736848369757,56.28624406779139],[-126.62710550086476,56.28618038832357],[-126.62697577363097,56.28616422209007],[-126.62693023488993,56.28616332524985],[-126.62690161132709,56.28614442275802],[-126.62686049283003,56.286103178167586],[-126.6267926483946,56.28603518056995],[-126.62673634946292,56.28599289020189],[-126.62671388399326,56.28597955832032],[-126.62665780182657,56.28595182903995],[-126.62658329818328,56.28590962784282],[-126.62647822210845,56.28585413441165],[-126.62632739155192,56.28578318271974],[-126.62617571928199,56.285722316487416],[-126.62606888986413,56.28568363383357],[-126.62601701338679,56.28566484502511],[-126.6259987369728,56.285660453850134],[-126.6258921940472,56.28563969233133],[-126.62565444042148,56.28557252590158],[-126.62537875652252,56.28547305973364],[-126.62519014318498,56.28537988820351],[-126.62513203852674,56.28535104799396],[-126.62509237253798,56.28533779994473],[-126.62495404007808,56.285289188905494],[-126.6247843814171,56.28524185099029],[-126.6246369392625,56.28519328413471],[-126.6244312152557,56.28510467578429],[-126.62422951980176,56.2850149272723],[-126.62414700097999,56.28497724449986],[-126.62410941192864,56.284967346512346],[-126.62398627518095,56.28498362994991],[-126.62379259235367,56.285015939860315],[-126.62361011901626,56.28498994610808],[-126.62346334242581,56.28491897132922],[-126.62329556741156,56.28486266094018],[-126.62303172343005,56.28480793874146],[-126.62278624479013,56.28476320803526],[-126.62264011101512,56.284732555202105],[-126.6224477396159,56.284720050013945],[-126.6220938434465,56.28466352399859],[-126.62166692455563,56.28453006064421],[-126.62138258139284,56.284393662604586],[-126.62130708470389,56.28435258339626],[-126.6211984625953,56.28439119693189],[-126.62096906377954,56.28446736260056],[-126.62078389754025,56.28452651057037],[-126.62064584841777,56.28455966569856],[-126.62049047229188,56.28458394344786],[-126.62036024612827,56.284599137632505],[-126.62027842465679,56.28460625566367],[-126.62020161485745,56.28460998882915],[-126.61997608432489,56.28454723331101],[-126.61957408362463,56.28445396814963],[-126.61927481221257,56.28446101908374],[-126.61919547202763,56.28449612855663],[-126.61912716003991,56.2845255837388],[-126.61897349381675,56.28459465800726],[-126.6188740497638,56.28463770578289],[-126.61885901279986,56.28464673990753],[-126.61882641954232,56.28463233552645],[-126.61870199112788,56.284566847987335],[-126.61853777500775,56.284479149527954],[-126.6184397133458,56.284418014828105],[-126.6183437630271,56.28436247067381],[-126.61822229156766,56.28429248771655],[-126.61817128264333,56.284264730239826],[-126.61808674853405,56.284227053349035],[-126.61786225764168,56.28410155982513],[-126.6176115413357,56.28391682384377],[-126.61745334309012,56.28376188502887],[-126.61738954671014,56.28369274289026],[-126.61732678761426,56.28362471587933],[-126.61727496326559,56.28341661535869],[-126.61732229949412,56.28314754708852],[-126.61712739845312,56.28297374237257],[-126.61652750093123,56.28283549626404],[-126.61607413485794,56.282754789828076],[-126.6159748507224,56.28274406663441],[-126.61591401390491,56.28273427828808],[-126.61566167881884,56.28270188889188],[-126.6153059462691,56.28265543459726],[-126.61504812582643,56.282596186445915],[-126.61490443326484,56.282526307357465],[-126.6148025477452,56.28247863033908],[-126.61469589645667,56.28245001895714],[-126.61457811156434,56.282420340850976],[-126.61446041463145,56.28239626303744],[-126.61435383265693,56.28237101153363],[-126.6142145923415,56.28232799423592],[-126.61407718056098,56.28227152603161],[-126.61403029255501,56.28224822781448],[-126.61386266665295,56.28220086582951],[-126.61348455486873,56.282080583134324],[-126.61322943249878,56.28199891512825],[-126.61317445502034,56.281975655411145],[-126.6131377508496,56.28195678867966],[-126.61302158834906,56.2819013376019],[-126.61283843626629,56.28183052530626],[-126.612732050773,56.28181871349508],[-126.61264699790834,56.281812400175795],[-126.61252504884665,56.281774899012575],[-126.61244617326196,56.28171030743458],[-126.61240053958704,56.281637715411534],[-126.61236651192995,56.28159643236427],[-126.6123272960903,56.28154621285135],[-126.6122856379516,56.28146912109509],[-126.61226376202747,56.28142777981787],[-126.61222457012474,56.28131483099478],[-126.61215443321534,56.28109785514713],[-126.61212148942322,56.28093110853969],[-126.61200507431509,56.280793885861314],[-126.61177179282924,56.28068634671593],[-126.61165301228527,56.28065667073812],[-126.61162867229213,56.28065230655203],[-126.61151594329817,56.280622601492134],[-126.61135562383791,56.28058864330485],[-126.61125916129336,56.280563340873925],[-126.61117274281848,56.28053462985761],[-126.61094822538145,56.28040464407262],[-126.61063761347843,56.28020113847083],[-126.61043629655147,56.28006656033501],[-126.61032679555535,56.27998419117712],[-126.6102477179778,56.27990615733776],[-126.61022092028804,56.27987380055248],[-126.61018842133754,56.27986499439614],[-126.6100978905324,56.279831821653104],[-126.61001646905851,56.279798605374026],[-126.60999204264326,56.27978864048026],[-126.60996923788841,56.27975290410198],[-126.60992454326973,56.279674705994225],[-126.60990173864266,56.27963896960565],[-126.60992377655228,56.27962542249809],[-126.60996745151381,56.279572566445225],[-126.60998858314922,56.279500775198514],[-126.60998826181954,56.27941564438024],[-126.60998219540473,56.27928573448389],[-126.6099823183107,56.2791636361946],[-126.60998054840596,56.279114357496816],[-126.6099768793132,56.27907404916186],[-126.60997476088805,56.27900236888293],[-126.60997520635975,56.27896652156364],[-126.6099729311054,56.278884760576176],[-126.60997016917024,56.27877275753455],[-126.60996940241309,56.27872347405779],[-126.60993999845071,56.27871801356413],[-126.60985887561641,56.2787038385434],[-126.60961450558918,56.2786624381133],[-126.60920189246737,56.27859607547929],[-126.60887288909849,56.278509150350466],[-126.60866996568275,56.27840146113681],[-126.60851286809469,56.278313716362966],[-126.60842814751382,56.27826259223355],[-126.60841920626551,56.27820774687049],[-126.6084242602132,56.27807778405822],[-126.60839444598649,56.27791550254197],[-126.60837618757029,56.27784725959508],[-126.60827733502886,56.27786341233691],[-126.60800203723083,56.27791288913518],[-126.60765837365952,56.27792348472754],[-126.60735439054322,56.27781963438401],[-126.60714405780415,56.27768957479812],[-126.6070061695706,56.277600616817956],[-126.6068389671802,56.27751291803817],[-126.60665655521792,56.27742305091594],[-126.60659050591642,56.27733711199304],[-126.60666885172063,56.27717207647848],[-126.60677626859244,56.276990100502424],[-126.60675135941035,56.27694877280044],[-126.60651943698848,56.27705740901603],[-126.606233169036,56.2771819848416],[-126.60600179458937,56.277195403837894],[-126.605779647913,56.27715053031457],[-126.605569100846,56.2771369659534],[-126.60536131991728,56.27710658573327],[-126.60516079766774,56.27702128293447],[-126.60505240461806,56.276812326062476],[-126.6049736040781,56.27655506215495],[-126.60477160069243,56.27630846270345],[-126.60463289607529,56.27603579985316],[-126.60463191167733,56.27590586593502],[-126.60463256926914,56.27588345962225],[-126.60463146382726,56.27581177460717],[-126.60462942444006,56.275744574652755],[-126.60462399799304,56.27572107696337],[-126.60441454518033,56.27584304493115],[-126.60398320975746,56.27606911601527],[-126.6036236743756,56.276164907991046],[-126.60338368051583,56.27614251785224],[-126.60322625664946,56.2760984545441],[-126.60309837365018,56.27600160413513],[-126.60297006170269,56.275877871791955],[-126.60293603474875,56.275769376814104],[-126.60297377158027,56.275658302966924],[-126.60299525842419,56.27560891456573],[-126.60300009924968,56.2755954498099],[-126.6030108162814,56.27556851541299],[-126.60291559841062,56.275557763027365],[-126.60266684480074,56.27555781608359],[-126.60243451497848,56.27550850421832],[-126.6022644957154,56.27543313465576],[-126.60214335583973,56.27538105794451],[-126.6020712132923,56.27535787446187],[-126.6020162345476,56.27533348993367],[-126.6019908109376,56.27532464840916],[-126.60191837627305,56.27528242350721],[-126.60173479385575,56.275180233307864],[-126.60156536795381,56.27507797622206],[-126.60142461476991,56.27499910734052],[-126.60125714397005,56.274892360024566],[-126.60115085549003,56.274818929506885],[-126.60113134448687,56.27479997857315],[-126.60109855987413,56.27477212879343],[-126.60100117400057,56.27468521437823],[-126.60089743114223,56.27458040723912],[-126.6008294285487,56.274497835185855],[-126.60078368747855,56.27441627861449],[-126.60076207552204,56.27432564733951],[-126.60075679555031,56.27424502072467],[-126.60072952907214,56.27418129984119],[-126.60065702924496,56.27413459393268],[-126.60058648411639,56.2740845183231],[-126.60054020421917,56.27403320849897],[-126.60050573249477,56.27396168032249],[-126.6004779863373,56.273866597209555],[-126.60040877706368,56.27377058873488],[-126.60029518467334,56.273682629815525],[-126.60024546995672,56.273605572387495],[-126.60027470474888,56.273533744939776],[-126.6003033651485,56.273489924144265],[-126.60032296921624,56.273449506358425],[-126.60034114251326,56.27338221149136],[-126.60035537340724,56.27332053593457],[-126.60036377893415,56.27327569011732],[-126.60036459229363,56.273262244397266],[-126.60033013035323,56.27325680549174],[-126.60025236355088,56.273196682224594],[-126.60019001961382,56.27308719952362],[-126.60017326837952,56.27298422364338],[-126.60015793067521,56.27290700476329],[-126.60013560945892,56.272835419468535],[-126.60012984325552,56.27278952006719],[-126.60013470089368,56.272776055360175],[-126.60009106329021,56.27276617884932],[-126.59999970870395,56.27274308446188],[-126.59997737988434,56.27273758850097],[-126.59987657422325,56.272691015079225],[-126.59981330658579,56.27265322666712],[-126.59973149758301,56.27259312207944],[-126.59967295192827,56.27253402844266],[-126.59963916728888,56.272506183021626],[-126.59959439013667,56.27248735042889],[-126.59956167705384,56.27246398059192],[-126.59955647673623,56.27245504372683],[-126.59955222704929,56.272441621770575],[-126.59954056563913,56.27240583143013],[-126.59951793853516,56.272315204803434],[-126.59948278428402,56.27219775315706],[-126.59944924961141,56.272120619584214],[-126.59941801108815,56.27206139775699],[-126.5993991961097,56.272021160333246],[-126.59938649872316,56.271984254687915],[-126.59936234664734,56.27192611977213],[-126.59933408110705,56.27186240335743],[-126.59932456290059,56.271835564216325],[-126.59932833310418,56.27181762401601],[-126.59930250059305,56.27178077996563],[-126.59902271491602,56.271667835670634],[-126.59853774631327,56.271492002968536],[-126.598286615143,56.27140132602869],[-126.59820124546262,56.27137260158434],[-126.59806496639217,56.27132059204642],[-126.59796941858778,56.27128743445387],[-126.59782809314544,56.2712354482808],[-126.59758918273015,56.27115031361021],[-126.59741312562399,56.271074966099604],[-126.59731815535126,56.271013801409254],[-126.59727310805455,56.27097704678261],[-126.59724850271844,56.27095475864395],[-126.597218696946,56.27092241339369],[-126.59719696307758,56.270890030416176],[-126.59718739451505,56.27085871074339],[-126.5971798317963,56.27082738169701],[-126.59717267411821,56.270755725118356],[-126.5971688611199,56.27063812649122],[-126.59717753827903,56.27054399279114],[-126.5971980743815,56.27043188117105],[-126.59718645903376,56.27026615229596],[-126.59701690954887,56.270087719495976],[-126.59673348704004,56.26993334156854],[-126.59655952715353,56.26986246378544],[-126.59652411781668,56.26986150892523],[-126.596516166302,56.26987050729177],[-126.59643979196896,56.26990110799571],[-126.59630292908136,56.269943192485385],[-126.5962040914926,56.269959335835544],[-126.59612883626932,56.2699305628568],[-126.59602082126874,56.26987505888635],[-126.59586592722957,56.26979512999396],[-126.59564699328567,56.269691976160836],[-126.59541813869207,56.26960231005736],[-126.59521553649235,56.269576370157694],[-126.59503464888752,56.269581693191085],[-126.59484451848913,56.26957809774651],[-126.59459167400364,56.269572553526565],[-126.59433689252805,56.26957261859405],[-126.59417216417214,56.26957786524962],[-126.59406430384912,56.26959852951742],[-126.59388401047104,56.26964417376267],[-126.5936237730897,56.269684588365365],[-126.59343559646803,56.269676501124145],[-126.59338083443974,56.269665553863305],[-126.59335866083045,56.269670137445566],[-126.59329509624894,56.26967827366568],[-126.59313016401426,56.26967007805502],[-126.5929207652248,56.269662088556835],[-126.59274283402313,56.26966291400369],[-126.59253596937563,56.26962242761156],[-126.59222291130988,56.26958019276106],[-126.59186774272607,56.269627764624616],[-126.5915823554174,56.26967613263016],[-126.5913609272941,56.26967603735244],[-126.59124268528342,56.269678824787825],[-126.59119918845535,56.26967790587167],[-126.59106273202379,56.269679657250315],[-126.59080954991822,56.26965170400231],[-126.59052704894178,56.26955667643083],[-126.59029064921361,56.26943455157644],[-126.59015958581857,56.26939259103403],[-126.59008023320575,56.26942656213191],[-126.59000308843841,56.26947396484783],[-126.5899134997931,56.26956735132212],[-126.58974258586073,56.269698078194125],[-126.58956446050092,56.26975378771296],[-126.58949474495506,56.26975634964074],[-126.58946050647823,56.26976546881979],[-126.58935976240427,56.26978945674436],[-126.58924399693667,56.269823595250685],[-126.58919660689335,56.26983165484532],[-126.58921433326229,56.26980020876962],[-126.58924076320245,56.26974295899183],[-126.58918823548602,56.2696782321922],[-126.5890484621622,56.269594864929346],[-126.58890735013878,56.26948910058946],[-126.58879131930782,56.26936977868322],[-126.58872545724454,56.26929279144416],[-126.58866860193928,56.26921016191048],[-126.58860766877547,56.269124190674624],[-126.58858487289856,56.26908733056762],[-126.58858978511206,56.26907834670425],[-126.58860650875738,56.26904690534214],[-126.58866785984144,56.268958130515344],[-126.58878746978658,56.268777234563416],[-126.58887962298701,56.268585263495844],[-126.58890531186599,56.2684776102787],[-126.58891650123364,56.268414830061815],[-126.58897508210867,56.26820957181477],[-126.58907431391094,56.26781594025492],[-126.58912446180472,56.26751998837928],[-126.58912150717234,56.267390064135434],[-126.58912231081739,56.267242200108896],[-126.58911738761968,56.26698122695909],[-126.58899481413847,56.26669615281482],[-126.58885175126946,56.26652654883159],[-126.58894060246386,56.266452209209994],[-126.58907637414566,56.266404536910784],[-126.58910011391802,56.26636970270666],[-126.58908250012304,56.2663417800733],[-126.58891774397772,56.26627645046877],[-126.5886308753264,56.266157915884286],[-126.58847980244879,56.26606115840035],[-126.5884533116749,56.26597950921347],[-126.58844455241301,56.265934743423486],[-126.58844037445839,56.265925801438186],[-126.58842619984567,56.2658575373701],[-126.58839977105409,56.26571315932063],[-126.58838291340821,56.2655328923061],[-126.58837874078661,56.26538953193934],[-126.58837584526964,56.265331297320365],[-126.58854619578483,56.26523081917375],[-126.58889769578722,56.26494132035667],[-126.58907276539568,56.26461678921671],[-126.5890694512361,56.26439613443091],[-126.58906885514901,56.264288602535416],[-126.58905616998636,56.26425169598476],[-126.58894790177354,56.26424547416356],[-126.58859931126104,56.26412162340059],[-126.58815977796831,56.263731594144026],[-126.58797708448665,56.26314323506414],[-126.58797507747865,56.26267166042772],[-126.58797325929623,56.262483483332744],[-126.58797547698885,56.2624285857033],[-126.5879730524336,56.26240171322539],[-126.5879715029256,56.262231457337776],[-126.58819922333575,56.261845077115915],[-126.58869467798614,56.26158516040195],[-126.58899510574602,56.26146503974309],[-126.58903190951388,56.26129012649341],[-126.58902637972338,56.26112436963181],[-126.58902259208467,56.261006771240545],[-126.58893510891095,56.26076746224594],[-126.58874730750651,56.260377395209574],[-126.58863047460773,56.260135981031],[-126.58859301272257,56.260064463995434],[-126.58859886309808,56.25991545703579],[-126.5886896582059,56.25970221013157],[-126.58880357843456,56.259547104412704],[-126.58888748615398,56.25948062880888],[-126.58891957664916,56.259463678632144],[-126.58893999266292,56.259477026321626],[-126.58902848827854,56.259514703447316],[-126.58916060420404,56.259562260714986],[-126.58924285020102,56.25958652471206],[-126.58933330046929,56.259619712014185],[-126.58955277635803,56.25969598977848],[-126.58971631805454,56.259749002211244],[-126.58975392544785,56.259763390569745],[-126.58982335306384,56.25974178720061],[-126.58998828519802,56.25968613827194],[-126.59031789521299,56.25955803869148],[-126.59076908229278,56.25938232980303],[-126.59098916975296,56.25929730060596],[-126.5910284610563,56.259289277788795],[-126.59111501039337,56.25926423405344],[-126.59127839002936,56.25923995484775],[-126.5915235431988,56.259208575935524],[-126.59180596559477,56.25916918286043],[-126.59219312834473,56.25910466038207],[-126.59267767643344,56.25899711925754],[-126.59309867471238,56.25889771238566],[-126.59347538679152,56.2588108315128],[-126.5938139452965,56.258740929129495],[-126.59395603682674,56.25871226483227],[-126.59402755028746,56.25869625022365],[-126.59435988994605,56.25861629394904],[-126.59487759990319,56.258496268504814],[-126.59526940451867,56.258404831439314],[-126.59560573087657,56.25832149288234],[-126.59597448258698,56.25824360292688],[-126.59622337991593,56.25819427508659],[-126.59644608335142,56.258149549657716],[-126.59676859639647,56.258088675529116],[-126.59699133357965,56.25804730944028],[-126.59723985232236,56.25797221791666],[-126.59763816671392,56.257844898303254],[-126.59787856436863,56.257768723372486],[-126.59796719560413,56.25774814583419],[-126.59805069612614,56.25772199150003],[-126.59834953979339,56.257634340551704],[-126.59893898301313,56.25744787369446],[-126.59944194954741,56.25729093382703],[-126.5997820945837,56.25719412450232],[-126.59999970981933,56.25714829659025],[-126.60003901329746,56.257140270933256],[-126.60019640035998,56.257121609177496],[-126.60047955343036,56.25713148004758],[-126.60090068680792,56.25717542601222],[-126.60113216201803,56.257242666198074],[-126.6012311828421,56.257307168959706],[-126.60152398030553,56.2572867480594],[-126.6019392004684,56.25720862200925],[-126.60216902702788,56.25716833360582],[-126.6022417594076,56.25716575044596],[-126.60230039427834,56.25716659416387],[-126.60234083745928,56.25716752363046],[-126.60237226168012,56.25717297621521],[-126.60240783274432,56.25718625029433],[-126.60249721723505,56.257214952691086],[-126.60281307385006,56.257248187324784],[-126.60346393025814,56.257310083226585],[-126.60438215541367,56.25734158725309],[-126.6051637624001,56.25723147271022],[-126.60545139094789,56.25713825744488],[-126.60551285840374,56.257125644447676],[-126.60559339900055,56.25710509994673],[-126.6057229688604,56.25705295869384],[-126.60603393418361,56.25696523221401],[-126.60664043431164,56.25677416813102],[-126.60743311882824,56.25646572025567],[-126.60804324761212,56.25624886875016],[-126.60828728049007,56.256212982285],[-126.60833689601174,56.25621834677801],[-126.6083618929807,56.25620142546865],[-126.6083920032443,56.256187840256196],[-126.60844220434332,56.25616631828847],[-126.60856364638411,56.256110852400276],[-126.6087542739593,56.256020332031376],[-126.60892683125559,56.255937738573415],[-126.60905115654627,56.25587329726685],[-126.60914431824298,56.25582020595702],[-126.60922248513539,56.255777267452196],[-126.60933164095017,56.255711778064445],[-126.609477711014,56.25561586838643],[-126.60958643206278,56.25552349722813],[-126.60962624709997,56.25548410193716],[-126.60964092688042,56.25545266764925],[-126.60968118726348,56.25537742538143],[-126.60973041171005,56.25529317910812],[-126.60977397279171,56.25523472332524],[-126.60986370779162,56.255155884376975],[-126.61004958862645,56.25502057869762],[-126.61026443488609,56.25486273135674],[-126.61045616730993,56.2547139553233],[-126.6106381934611,56.25459098887298],[-126.6108188425841,56.25450947432894],[-126.61096256247146,56.25445838023312],[-126.61103182945034,56.254427804848646],[-126.61113389637174,56.25436234783437],[-126.6113787738245,56.25418755268402],[-126.61163572221867,56.2540082186666],[-126.61176777213562,56.25392133471675],[-126.61188593564118,56.2538513194095],[-126.61211823662613,56.25371242791042],[-126.61238157536685,56.25355546478639],[-126.61255167334782,56.253445994605094],[-126.61264269717051,56.2533850699457],[-126.6126946335667,56.25334561557223],[-126.61280159958801,56.25327117252528],[-126.6130306603198,56.253118853107544],[-126.61329963442724,56.252934977437185],[-126.61354551194042,56.252760173346815],[-126.61375419848157,56.25259786914436],[-126.61384617183896,56.252469730049796],[-126.61381464684116,56.25239259117585],[-126.61378282046502,56.25236025975408],[-126.61391477244452,56.252267773314856],[-126.61418324264807,56.25211638257785],[-126.61434875980693,56.252038296245495],[-126.6143720272985,56.25203930448511],[-126.61436176428012,56.252029272496664],[-126.61432178484436,56.25199361997694],[-126.61425602461443,56.251924486923286],[-126.61420254856837,56.25186537612114],[-126.61412205998994,56.251823197425544],[-126.61395333367824,56.25176128013363],[-126.61378951216498,56.2516903778545],[-126.61371879654511,56.2516268691015],[-126.61367953884975,56.25157217037621],[-126.61360886000723,56.251512021840064],[-126.61353111595862,56.25145190720398],[-126.61348918557778,56.25141962425897],[-126.6134513511494,56.25139180222831],[-126.61333601711937,56.25131842621067],[-126.61316571546858,56.25122067068425],[-126.61304040005587,56.25115518337193],[-126.61294879068441,56.25111305733653],[-126.61283182366604,56.25106545215515],[-126.6126943834332,56.25100002268568],[-126.61258646707243,56.25094901342204],[-126.61255383416069,56.25093012738491],[-126.61250798691765,56.250906824110515],[-126.61234093843309,56.250822493711254],[-126.61214132803227,56.25072375721755],[-126.61204762977823,56.25067715996705],[-126.61196389678099,56.250621553711774],[-126.61180994257454,56.25053379945476],[-126.61170287386949,56.250472704064336],[-126.61159056914977,56.25039931201957],[-126.61142735722235,56.25030152030528],[-126.61131396386197,56.25022253249419],[-126.6112231515139,56.25016695965583],[-126.61113681618298,56.25013824890603],[-126.61110650215986,56.25013839394673],[-126.61112729517308,56.25011141088939],[-126.61111593437205,56.25003081453306],[-126.61108221059935,56.249876395356885],[-126.61106597077732,56.2497420552125],[-126.61106829627438,56.249697238141756],[-126.61104650912378,56.24966037747097],[-126.61099773632948,56.24957883994902],[-126.61096663785702,56.24952858202705],[-126.61092954652422,56.249482833358094],[-126.61085752452341,56.249400286845606],[-126.61079367358015,56.249323301963926],[-126.61070308942706,56.24928116947926],[-126.61060447547194,56.249243555913495],[-126.61058661757264,56.24913498689859],[-126.61060529245252,56.24903632457368],[-126.61060898558202,56.24901390395309],[-126.61059962082143,56.24899602635151],[-126.61055381945422,56.24890999389275],[-126.61046045786411,56.248754739565996],[-126.61038623478505,56.24859603327836],[-126.61041547505482,56.248461475777006],[-126.61041201698107,56.2483046715962],[-126.61033073011909,56.2481459990707],[-126.61038726072947,56.248012431333564],[-126.61047431235879,56.24789215946811],[-126.61044353734137,56.24779709401152],[-126.61041266751816,56.247761396828366],[-126.61040745057808,56.2477513404332],[-126.6103311032526,56.247714740426545],[-126.61018996952187,56.247671729030706],[-126.61004758029311,56.24767688982157],[-126.60989868465892,56.2477190463921],[-126.60978402067124,56.247753198324105],[-126.60975079102793,56.24776119800482],[-126.60968238830492,56.24771559850399],[-126.60959435535544,56.24757824057286],[-126.60961525336236,56.24742692092765],[-126.60967666233985,56.247347097337546],[-126.60970539877913,56.24731111544282],[-126.60971731465519,56.24729761678973],[-126.60967922457782,56.24725187258512],[-126.60960202745095,56.24716150914697],[-126.60954510681906,56.24707440933827],[-126.60951250654519,56.24699279418032],[-126.60949039178635,56.24693465206801],[-126.60948301523666,56.246915644769444],[-126.60948180415627,56.24690220878371],[-126.60948224971389,56.246866361950644],[-126.60938094258664,56.24678395448322],[-126.60918331137785,56.24668072363514],[-126.60905128410533,56.24663766758645],[-126.60897116067555,56.24661900715806],[-126.6088927092344,56.246576815624145],[-126.60885185969184,56.246549006699894],[-126.60877311430781,56.24648889414738],[-126.60862372339481,56.24636863030518],[-126.60852349112368,56.24629069765373],[-126.6085040937612,56.24627734831525],[-126.60848062140472,56.24626289824222],[-126.60839374093057,56.246198343640515],[-126.6082686878202,56.246083564199886],[-126.6081457950397,56.245977735530566],[-126.60804112967976,56.24594014890407],[-126.60798446276048,56.24593481794989],[-126.6079324218975,56.24590146128936],[-126.60782956945371,56.24585042410626],[-126.60771865059417,56.24579942522682],[-126.6076696331197,56.24576605407623],[-126.60767465448299,56.24569882140555],[-126.60760847921493,56.24553671505475],[-126.6074506659343,56.24539408707016],[-126.60736911011138,56.24534742882275],[-126.60727010937822,56.24528293114053],[-126.60704846561381,56.245129404726335],[-126.60689101979874,56.245010297408115],[-126.60681643955428,56.24489191634119],[-126.60673431060556,56.24474220702142],[-126.60660406875596,56.244618489551286],[-126.60626619788182,56.24439606484601],[-126.60586980095798,56.244113429110705],[-126.60570528254513,56.243994353970926],[-126.60568789060697,56.243979874570634],[-126.60563930931332,56.243974504246445],[-126.60551608613333,56.24397732885302],[-126.6053797035489,56.24397909557685],[-126.60523112702386,56.243975319219366],[-126.60499326449091,56.243948442652766],[-126.604781427519,56.243904640222176],[-126.60468397196028,56.24387485778971],[-126.60463114260567,56.243856065457564],[-126.6045984503914,56.24383269719056],[-126.60454607116623,56.243778058053415],[-126.60440414600934,56.243681277221924],[-126.60428990552252,56.24361124871836],[-126.60423592035318,56.243583500537746],[-126.60418404100464,56.24356022295153],[-126.60414319793924,56.243532412555986],[-126.60409095769145,56.2434867337447],[-126.60401296827399,56.24340869250557],[-126.60395870668046,56.243361903059764],[-126.60393627335583,56.24334856741598],[-126.60389663974341,56.24333419296245],[-126.60380405623675,56.243292065244965],[-126.60368684792559,56.24322653083433],[-126.603580778492,56.24316206381811],[-126.60351822873861,56.243101871632504],[-126.60349179213783,56.24302582674066],[-126.60347685787538,56.24290828214711],[-126.60346689811718,56.24278623347321],[-126.60346443288512,56.2426921529976],[-126.60344134774705,56.2425701663571],[-126.6033988528618,56.24243482970245],[-126.60333257683072,56.242329849291636],[-126.60324749653505,56.242184632496986],[-126.60319203600318,56.24199446999324],[-126.60308877236494,56.24184933900663],[-126.60291490932853,56.24177847078434],[-126.60282980717469,56.24176319053904],[-126.60282832323458,56.24173183351774],[-126.60280686219888,56.24165016433094],[-126.6027654027465,56.24158203126634],[-126.60274694302149,56.241564196099134],[-126.60272658324013,56.24155421090344],[-126.60265441756479,56.2415265479053],[-126.6025632545806,56.241511296089925],[-126.60245665373918,56.241477074601676],[-126.6022712763352,56.24137937640358],[-126.60205752720101,56.24127621099436],[-126.6019548319671,56.24123412967763],[-126.60195886038545,56.24116690208215],[-126.6018737876943,56.241021684442096],[-126.60162821833278,56.24088618416342],[-126.60144636520079,56.240819832219394],[-126.60129243964067,56.240730945657475],[-126.60107707686896,56.240587461112405],[-126.60090657791349,56.24047176868269],[-126.60082678616432,56.240407175849484],[-126.60078156494927,56.240356982183876],[-126.60078580105271,56.24030319539597],[-126.60084773880578,56.240192009832256],[-126.60081823230809,56.23998044168487],[-126.6005872241105,56.239738457450535],[-126.6003151793517,56.23958851744613],[-126.60011319905415,56.239526738868776],[-126.6000005969059,56.23949702416722],[-126.5999601719901,56.23949609396657],[-126.59993067895432,56.239482790826955],[-126.59988580237145,56.23945499810135],[-126.59986435765549,56.23944053699418],[-126.5998480576017,56.23943165242771],[-126.59978896996861,56.239399445857],[-126.59969515937857,56.239342759207936],[-126.59959677780705,56.239251369547524],[-126.59938660905017,56.2391168190539],[-126.59909629403516,56.239026329820526],[-126.59894442473174,56.239004639424444],[-126.59892415271274,56.23900025394216],[-126.59890394906964,56.23900034870408],[-126.59879540623574,56.23897061391832],[-126.5986011551034,56.2388863939074],[-126.59841505362087,56.23880549584063],[-126.59828097600425,56.2387579580203],[-126.59810595142278,56.238741975835175],[-126.59786031619568,56.238731924746396],[-126.59771250647267,56.23871133403057],[-126.59763097611483,56.23866466969402],[-126.5974704308238,56.23860381320731],[-126.59727671278208,56.238554313110484],[-126.59706409561359,56.238456735009784],[-126.59676203712657,56.23825764173731],[-126.59645648579382,56.238094408616696],[-126.59627760866293,56.23802355502367],[-126.59614324707539,56.23795697392502],[-126.59599448864874,56.23787365777211],[-126.59589834375794,56.23779569662762],[-126.59582233422208,56.237713160895616],[-126.59572496781963,56.23762176363779],[-126.59560758429407,56.237475572782316],[-126.59549115188481,56.2373248968329],[-126.59540173237667,56.23722450116308],[-126.59530766149149,56.23714989035851],[-126.59516989246848,56.23712476937117],[-126.59499260125357,56.23715807972181],[-126.59490705344422,56.23717864086349],[-126.59493949693976,56.23712024238749],[-126.5949871847128,56.2370001651381],[-126.594987100031,56.236928476538175],[-126.59495287394844,56.23686926857418],[-126.59492698397543,56.236760735582536],[-126.59490662903008,56.23668466087371],[-126.5948850680073,56.236661238381245],[-126.59485785452584,56.23666584572905],[-126.59483366251133,56.23666931885466],[-126.59476731691745,56.23669091058579],[-126.59470297452616,56.23671137281169],[-126.59468197366458,56.236724912308766],[-126.59463932784028,56.23671054909782],[-126.59450108573417,56.23665406567628],[-126.59425436360785,56.2365051153927],[-126.59400333166604,56.23633826245835],[-126.59389116828446,56.236269335528526],[-126.59377751038036,56.23623513979542],[-126.5935602454477,56.23616334088625],[-126.59342711702388,56.23611131311827],[-126.5934077298272,56.236097961543535],[-126.59332734750164,56.236060250342135],[-126.59318420255279,56.23601274943135],[-126.59302856513101,56.2359417834496],[-126.59292852582287,56.23587279938651],[-126.59271631016045,56.235733767239346],[-126.59232019501128,56.235523899082864],[-126.59207509854443,56.235415262207],[-126.59198093167633,56.23540001689025],[-126.59186107564125,56.23522247038242],[-126.59166925954314,56.2348279502692],[-126.59138710963445,56.234539141459095],[-126.59122032804005,56.23446486456001],[-126.5911999748738,56.234454877556],[-126.59118671712994,56.23444597783359],[-126.59111126377883,56.23439928135458],[-126.59098064318441,56.23431139506416],[-126.59086927368385,56.23422790011052],[-126.5907966739341,56.23416886872156],[-126.59076250785161,56.23411414001924],[-126.59065006997939,56.234026169274884],[-126.59039583770517,56.233913091016696],[-126.590205888096,56.233842280380046],[-126.59016411428189,56.23381895057479],[-126.5901346961936,56.23381012544628],[-126.59006038199003,56.23377238421183],[-126.58998803684105,56.23373015328281],[-126.58992256891636,56.233675569015915],[-126.58981073220257,56.233560711466104],[-126.5896481915462,56.23343152621171],[-126.58940003408388,56.23338674639972],[-126.58912022777817,56.233385797535696],[-126.58891275140165,56.233291542986265],[-126.5887381555589,56.23309968448752],[-126.58863535510031,56.23298030373783],[-126.58851917063389,56.232911390811445],[-126.58823059412337,56.23279734652762],[-126.58786510672509,56.232673574527944],[-126.58762327973814,56.23257835596861],[-126.58755888602482,56.23252824614546],[-126.58753733166976,56.23250482245239],[-126.58749596321246,56.23250837323529],[-126.58743117129558,56.232498590132],[-126.587313690988,56.23247784801129],[-126.58722019981953,56.232440193385685],[-126.58712086266236,56.232348798982706],[-126.58701227704209,56.23224736579605],[-126.58681693518831,56.23222138051474],[-126.58653436693561,56.23223836091357],[-126.58640019433278,56.232249058488726],[-126.58637420179302,56.23226710006846],[-126.58631720869744,56.23230656662306],[-126.58629221744333,56.232323483450486],[-126.58622115091565,56.2323674951393],[-126.58593714961202,56.232559222206795],[-126.5854629953679,56.23286943519669],[-126.58508354274508,56.23309520216763],[-126.58481610907269,56.23324764601145],[-126.58441664970404,56.2334197360408],[-126.5838920429925,56.233530789652086],[-126.5831922212725,56.23361127772175],[-126.58248127807974,56.23369181268453],[-126.58213053387604,56.233675490186954],[-126.58198686356708,56.23359213487383],[-126.58189641306737,56.23355446248334],[-126.58188112148895,56.23354557107855],[-126.58185437883579,56.23351320897738],[-126.58167792922308,56.233330310505295],[-126.58131227134878,56.23305754235062],[-126.58097449664984,56.23296162793848],[-126.58065912685767,56.232879052388284],[-126.58026995991825,56.23272288247896],[-126.57998934798965,56.23266815073168],[-126.57989154946438,56.2326797963436],[-126.57987537256919,56.232678749682705],[-126.57982412692856,56.232628576282146],[-126.57968270949007,56.23249144166896],[-126.57952585362942,56.232335334672534],[-126.57940463847785,56.232198108072126],[-126.57925986517223,56.23197025722648],[-126.57906580399944,56.23168774314497],[-126.57888486229459,56.23154070577048],[-126.57862097637576,56.23145453144283],[-126.57808437398671,56.23130014333318],[-126.57752508164036,56.23118169998065],[-126.57720515274482,56.231130500475146],[-126.57703309073963,56.2310371869071],[-126.57696841168564,56.2308291340464],[-126.576967320062,56.23061743340653],[-126.57696749611458,56.23049197746488],[-126.57696752636738,56.230424769217],[-126.57690927541282,56.23037910692338],[-126.57664622223267,56.23027948322598],[-126.57625230225132,56.23014124505381],[-126.57601974847071,56.23005604416943],[-126.57596189331427,56.2300361427739],[-126.57594768821988,56.230031726321236],[-126.57592937757927,56.230022847849305],[-126.57584928738466,56.23000304671134],[-126.57569915721332,56.22995891842551],[-126.57559067338626,56.22993028408805],[-126.57538383880168,56.22987632987375],[-126.5750572729413,56.2297848301399],[-126.57475359979254,56.22973915203326],[-126.574343348373,56.22972643664432],[-126.57397324940251,56.229696737400175],[-126.57386158227635,56.22965803470787],[-126.57386232215335,56.22964010923133],[-126.57386231163436,56.22950121261529],[-126.57386005786732,56.22920886769893],[-126.5739136829018,56.22900812261372],[-126.57401945774535,56.22892027657993],[-126.57407450395804,56.22888530489524],[-126.57401941115211,56.22884746807381],[-126.57388474211518,56.22875510241921],[-126.57373706764639,56.22867175615182],[-126.5735784728174,56.22860078025868],[-126.57345442840462,56.228544210713224],[-126.5734127681482,56.22852647570781],[-126.57332028520277,56.22848768640499],[-126.57311692865575,56.22839450829633],[-126.57296615378172,56.22830557441362],[-126.57287359463972,56.22819173618324],[-126.57253178281738,56.228023009345904],[-126.57190528045453,56.22786227816703],[-126.57128796185309,56.22770710351391],[-126.57079354551584,56.227531214027714],[-126.57056885383814,56.22742804614483],[-126.57055847821681,56.22740905025918],[-126.57051802647166,56.2273364224128],[-126.57043713958848,56.227191166615974],[-126.57047566304391,56.227062179187605],[-126.57063870200831,56.22695279758913],[-126.57069592331409,56.2268595707645],[-126.57064758828729,56.22680041981289],[-126.57060969386939,56.22676362482902],[-126.57059742890277,56.22675359845922],[-126.57058921970251,56.2267446740922],[-126.5704928920942,56.226648773221974],[-126.57032265053344,56.22647031273268],[-126.57023527476117,56.2263654106294],[-126.5702224243293,56.22631506207392],[-126.57020125104181,56.22624794870994],[-126.57017117614693,56.22619319656139],[-126.5701077517898,56.22613747322384],[-126.57001800637852,56.2260773868664],[-126.56997303620513,56.226040623306616],[-126.56994819809475,56.22599928931615],[-126.56990559915431,56.225917709858535],[-126.56988025716133,56.225841654009834],[-126.56988277448879,56.22580579854232],[-126.56988870349086,56.22579681101535],[-126.56983488094316,56.22577688891609],[-126.5697160544344,56.225730373762964],[-126.5695684489437,56.22565038295508],[-126.56936700572345,56.225548229493334],[-126.56912400594412,56.22543505969226],[-126.56894706071697,56.22535071846792],[-126.56885353922155,56.225308570266286],[-126.56878323599157,56.2252663185417],[-126.5687382029986,56.22522507432135],[-126.56870315482581,56.225175944679506],[-126.56865684446461,56.22511566388528],[-126.56859040265986,56.225061073409826],[-126.5684774279043,56.22499996935634],[-126.56837361491577,56.22494442506934],[-126.56830539735535,56.2249066443323],[-126.56825039675356,56.224874405379396],[-126.56818597551089,56.22481868557652],[-126.56811436417877,56.224755156824386],[-126.56804892542847,56.22469944148534],[-126.56799575050384,56.22465375272644],[-126.56795892719543,56.22462143276748],[-126.56790082494592,56.2245847269462],[-126.56777641263933,56.224501270555194],[-126.56765712277344,56.22442227179273],[-126.56761328798825,56.22439446344522],[-126.56761991130551,56.22436307031841],[-126.56758153406501,56.224223224575965],[-126.56745902581149,56.22399190213137],[-126.56733768436936,56.2238412238367],[-126.56725570313411,56.22375869850814],[-126.56709343770396,56.22357123755064],[-126.56678014034257,56.22320522624379],[-126.56647500778271,56.22284365853413],[-126.56635083017322,56.22270643355489],[-126.56621177351016,56.222587196554706],[-126.56589684326873,56.2223164015938],[-126.56561973800008,56.222076801927706],[-126.56547241422595,56.221944159249546],[-126.56537628831153,56.22186057534762],[-126.56530953403644,56.2217835820708],[-126.56508409975598,56.221625521922],[-126.56469190794182,56.22145811811559],[-126.55688375610328,56.209541802062176],[-126.55686635367839,56.20923944478546],[-126.55699791011503,56.20022301677258],[-126.55698410148798,56.20003153672935],[-126.55697860283462,56.200000197409224],[-126.55697416908802,56.19997221379633],[-126.55697593336795,56.199954284191676],[-126.55704381133988,56.19990134222225],[-126.55720520096239,56.19989503678627],[-126.55732155094697,56.19984412317276],[-126.55731269919113,56.199717588419716],[-126.55713222479552,56.19951675538551],[-126.55715340991371,56.19944497526553],[-126.55723655920963,56.1994020475668],[-126.55749398478886,56.19940652339771],[-126.5576998079418,56.19947395096749],[-126.55781273961999,56.199466736480524],[-126.55814547670353,56.19930286384679],[-126.55832555243894,56.19926175154296],[-126.5584095740144,56.199208738189526],[-126.55842988269144,56.19914704276001],[-126.55836779060391,56.19910923052811],[-126.55804814787496,56.19905798368253],[-126.5576938133772,56.19905169245483],[-126.5576462478505,56.19904181933038],[-126.55760028707321,56.19900393621118],[-126.55761808626426,56.198978095681596],[-126.55786691000809,56.198875076972755],[-126.55788469305948,56.19884811635833],[-126.55787018316536,56.19882129697233],[-126.55768216217494,56.19872802915909],[-126.5577049825456,56.19862935897442],[-126.55788666015805,56.19856023732777],[-126.55815076901008,56.198467232282894],[-126.55846153576265,56.19839194432355],[-126.55859566198916,56.19831406888687],[-126.55877975075077,56.19820125079178],[-126.55904785665984,56.19803541868703],[-126.55914270586575,56.197821060387064],[-126.55921964472539,56.19762582255806],[-126.55925357223869,56.1975987909812],[-126.55927225934073,56.19756398539045],[-126.55929985410035,56.19737568457271],[-126.55931141443018,56.19719529489564],[-126.55933915226264,56.19701707452822],[-126.5591569008292,56.19683305414153],[-126.55914729766585,56.19672556493892],[-126.5593485239746,56.19661267093033],[-126.5596891998,56.196583173626806],[-126.55973828655134,56.19655719552796],[-126.55973457253171,56.19636791194685],[-126.55948548719893,56.1962379509844],[-126.55939761752566,56.19609160098561],[-126.55937852192773,56.19588446301562],[-126.5592447429773,56.19570247051055],[-126.55914338299324,56.195529296711996],[-126.55894589994183,56.195337502117056],[-126.55884352508433,56.19516433256255],[-126.55870987848688,56.19499129992511],[-126.558576979482,56.194799221906116],[-126.55859728561688,56.19473752655815],[-126.55880088539185,56.19457869828654],[-126.55881780826286,56.194561822395315],[-126.55884300515723,56.1944183370709],[-126.55924281447173,56.19421944419459],[-126.55921628921335,56.19412883105344],[-126.55901717725719,56.19396392664062],[-126.55901422907628,56.193756718031835],[-126.55911766926341,56.193650973695966],[-126.55946649591881,56.193487027223625],[-126.55948414783954,56.19345110607368],[-126.55940930153197,56.193368545766994],[-126.55923593928695,56.19331105996782],[-126.55888152896947,56.193295811683264],[-126.55878979400259,56.19323124688428],[-126.55871143935377,56.19318454526702],[-126.55875027059624,56.193076844022436],[-126.55906693312414,56.19292200049416],[-126.5593615102597,56.1928467812717],[-126.55973358408124,56.19282722709025],[-126.56004355770632,56.192769860573456],[-126.56040199421373,56.192714520605065],[-126.56079108323688,56.19268592764041],[-126.56113083483294,56.19266539137079],[-126.56149567615155,56.192493528066564],[-126.56159836156488,56.192405706907564],[-126.56160086816388,56.19236985215686],[-126.56140884042743,56.19234829523869],[-126.5610384222581,56.192340964261085],[-126.56088018887468,56.1922834141791],[-126.5609369351187,56.19215883175462],[-126.56107755557039,56.19197227398913],[-126.56121239963497,56.191876470870206],[-126.56144742023059,56.191728701335826],[-126.56151941837611,56.19161301245184],[-126.56135020145527,56.191492784860685],[-126.56105015634868,56.19139665506758],[-126.56092261131487,56.191368093076264],[-126.56058863111802,56.191297874109885],[-126.56052656533475,56.19126118309192],[-126.56052907283876,56.191225328378444],[-126.56061294641233,56.191163353381945],[-126.56099417514862,56.191009341374325],[-126.56101182455971,56.19097342004823],[-126.56104031142524,56.19077727455864],[-126.56105362382205,56.19057895560205],[-126.56102458984284,56.190524197680894],[-126.56096163578535,56.190496471717964],[-126.56089496278277,56.190279462633995],[-126.56104193131459,56.190255293773525],[-126.5612927778931,56.190368441765926],[-126.56148466784973,56.190381038484404],[-126.56185595650925,56.19037940332292],[-126.5619212890491,56.190362313757575],[-126.56226606397009,56.190270064885496],[-126.56262108031152,56.19025953830875],[-126.56276968057303,56.190208477488504],[-126.5628085137939,56.190101895179936],[-126.56309029741843,56.189980799039404],[-126.56290883736442,56.18977997937367],[-126.5625555867096,56.18977257714015],[-126.56237544667482,56.18980585495011],[-126.56205186321067,56.18982632337063],[-126.56178500330314,56.18972220835979],[-126.56173183530416,56.189532023030175],[-126.56183538517435,56.18943523702113],[-126.5620542302699,56.18928641758099],[-126.56196638259264,56.18914118979911],[-126.56193113444093,56.18893412391237],[-126.56177643665144,56.188840715831624],[-126.56144325332735,56.188753694034624],[-126.56117879723824,56.18860476268286],[-126.5609142152494,56.18844687044029],[-126.56086989780371,56.18838209873063],[-126.56089034106311,56.188329363454194],[-126.56106771273643,56.188315141857636],[-126.56126549485498,56.18824706470679],[-126.5613213452376,56.18813032702079],[-126.56131350004483,56.18800490877227],[-126.56120875516122,56.18787655664856],[-126.56099512647693,56.18768371686956],[-126.56098225256424,56.187630008035484],[-126.56100002838947,56.187603047107075],[-126.56101707523693,56.18759513131873],[-126.56116314467705,56.18757992716591],[-126.56136093907169,56.18751184981581],[-126.56166257278181,56.1875799687579],[-126.56175856697187,56.18759074707734],[-126.5617756136612,56.18758283118759],[-126.56187487462617,56.18753982955958],[-126.56185074188942,56.18740440210225],[-126.56181386251114,56.1872242262523],[-126.56183339907243,56.18717933563144],[-126.56209651731984,56.187094167619485],[-126.56248293178287,56.187093583940396],[-126.56251697622352,56.18707551195323],[-126.56252514073336,56.18694106228529],[-126.56240601442123,56.186794852812234],[-126.562352991632,56.186614748347445],[-126.56240620262712,56.186526024714915],[-126.56256293727144,56.186339394539],[-126.56262237015214,56.186333531771695],[-126.56295272168428,56.186293989996166],[-126.56330944664234,56.18626441188712],[-126.56367510737745,56.186083577951095],[-126.56389492759287,56.185934751125785],[-126.56398056109221,56.18585596448657],[-126.56411938416309,56.18568733343193],[-126.56424558568776,56.18548291445319],[-126.56428289118715,56.18541106212802],[-126.60000015574035,56.173455435018724],[-126.60302344126039,56.17244314929009],[-126.60743870723385,56.16492751996414],[-126.60091615490299,56.15367672452053],[-126.60000012152531,56.153168033674326],[-126.59185857988156,56.148643936763506],[-126.59186445852556,56.14863270844461],[-126.60000042709856,56.13250555630207],[-126.60271189982407,56.127127500497686],[-126.62304240020434,56.12702964634746],[-126.62346546837942,56.127027575567055],[-126.62346292147578,56.12699398515591],[-126.62346691271495,56.12680130909979],[-126.62347549925104,56.12664333352955],[-126.62349474580232,56.12652338902878],[-126.62355248053943,56.126415577109505],[-126.62362052017231,56.126323396038515],[-126.62366659282469,56.12624252348677],[-126.62368287440768,56.12618979923794],[-126.62373313565536,56.126118987009896],[-126.62382829019091,56.12602107252814],[-126.62394758338337,56.12592079950187],[-126.62409313613799,56.12582487804103],[-126.6242097356996,56.12574589978985],[-126.62428438311278,56.12568840894408],[-126.62433713854543,56.12564894693037],[-126.62437192129839,56.12561853379221],[-126.6244225198556,56.12557012155505],[-126.62450183945771,56.1254902057583],[-126.62458413526372,56.125406915027206],[-126.6246723870664,56.1253191146416],[-126.62475480660723,56.125243663863316],[-126.62483909976062,56.1251603631695],[-126.62496197216528,56.12503206924905],[-126.62507880026548,56.12490380488553],[-126.62516195049112,56.12481154882952],[-126.62524925386059,56.12472711299339],[-126.62534363341594,56.12464376244003],[-126.62543901175535,56.124560406911115],[-126.62555014949703,56.12445457198039],[-126.6256856226481,56.12429597289317],[-126.62580310532628,56.124145302757405],[-126.6258611169065,56.12405653009564],[-126.6258698356143,56.1239713600078],[-126.62585897983098,56.12385828376511],[-126.62584078040913,56.12379116752008],[-126.62582796357805,56.12374530662287],[-126.62581883729106,56.12367814578054],[-126.6258182854088,56.123579580135605],[-126.6258174127895,56.12352469977269],[-126.62581921351686,56.12351124978257],[-126.62580259945247,56.123479968786214],[-126.62577511195381,56.123398336961074],[-126.62576541601457,56.123295335889516],[-126.62576714748101,56.123214680553346],[-126.62575096123321,56.1231464343244],[-126.62572181577983,56.12308721254257],[-126.62569072722795,56.123032480683555],[-126.62564042266895,56.122973362867064],[-126.62556623088253,56.12286843852134],[-126.6254652116682,56.12272332252866],[-126.62537850742041,56.12259157728815],[-126.62534194698117,56.122508869874544],[-126.62532346436107,56.12242383347714],[-126.62530052436395,56.122310816612895],[-126.62525772831621,56.1221530934932],[-126.62521167174783,56.1219808251567],[-126.62518167406247,56.121867842950465],[-126.62516866294328,56.12180966194517],[-126.62515750610177,56.121741390988184],[-126.62514809680498,56.121656310040414],[-126.62513825766725,56.12160707421423],[-126.625145674609,56.12156671441084],[-126.62517380698144,56.1214993706316],[-126.62519808683497,56.121442126611456],[-126.6252017596814,56.12141970669602],[-126.62519347112247,56.121405186176524],[-126.62512489821586,56.12133719716193],[-126.62495213560773,56.121176751804434],[-126.62472803719572,56.12101879833093],[-126.62454000014147,56.12091219189406],[-126.62444256761914,56.1208656258816],[-126.62440716561528,56.1208557186726],[-126.6243596617531,56.12084587080334],[-126.62430525806012,56.12084501750022],[-126.62422853728108,56.12083419275599],[-126.62413743234428,56.120805516986145],[-126.62405864716476,56.12072749664891],[-126.62398107924786,56.120600186188305],[-126.62385652171058,56.12049438773103],[-126.62367403014635,56.12041911549873],[-126.62352831062378,56.12037614562464],[-126.62343749108727,56.120365389461114],[-126.62337401418621,56.120363460100805],[-126.62332061025889,56.120362601485056],[-126.62327405151613,56.12034826821656],[-126.62322613906333,56.12031153969323],[-126.62311828365573,56.12024262185145],[-126.62296714943936,56.120176155889915],[-126.62286282053925,56.1201385831897],[-126.6227876904921,56.120100867572205],[-126.6227173755418,56.12004968724281],[-126.62265657588452,56.120026462664754],[-126.62258700366704,56.120021202447134],[-126.6225108589262,56.11998349163246],[-126.62243120512036,56.11991443532675],[-126.62237120851447,56.119877765573925],[-126.62233579180648,56.11986785787141],[-126.62230427806215,56.11984897033785],[-126.62228190891223,56.11983563856351],[-126.62225139428334,56.11981674613373],[-126.62216230738181,56.11978805911645],[-126.62204607343034,56.119762864961544],[-126.62198082139314,56.11971277959449],[-126.62197637459668,56.11962207380373],[-126.62198116076091,56.11954252383521],[-126.6219828741288,56.11952347388795],[-126.6219582867128,56.11943398659354],[-126.62190728296031,56.119328947048444],[-126.62186174930228,56.11925188308352],[-126.62183361163169,56.11919265561737],[-126.62183162176636,56.1191299401536],[-126.62186811567943,56.11908159791588],[-126.62196564367618,56.119007195370784],[-126.62209087444074,56.11890129479411],[-126.6221465107063,56.11885285893682],[-126.62219323266417,56.11881342736267],[-126.62231140449673,56.118707561070075],[-126.62242959180705,56.11860169459308],[-126.62252079162757,56.118509401086584],[-126.62260192017146,56.118417156770946],[-126.6227070057036,56.11831135411485],[-126.62288914921616,56.118174931868545],[-126.62307750958324,56.11804855976519],[-126.62325216147691,56.11794801661911],[-126.62344222814086,56.11786643931143],[-126.62359350544997,56.11781529422351],[-126.62369648022286,56.11776774588864],[-126.62381243043143,56.11771229324291],[-126.62395247886883,56.117652242011616],[-126.62408466569208,56.11760455018049],[-126.62420881345359,56.11755801772217],[-126.6243048164874,56.117514983446384],[-126.62434786173277,56.11749797095782],[-126.62438181757297,56.117479882943634],[-126.62444263615154,56.11744150149667],[-126.62450028157723,56.11739305475724],[-126.62452805275635,56.11736603630607],[-126.6246069430662,56.11732308575306],[-126.62474381748393,56.11725408848301],[-126.62488673207412,56.11718394132376],[-126.62511493509827,56.117094333655736],[-126.6254346636646,56.116997555388345],[-126.62570371587094,56.11694358890866],[-126.62584030030517,56.11691939556593],[-126.62595681489859,56.11689978113259],[-126.62611131206911,56.116862058310595],[-126.62623169417877,56.1168323437729],[-126.62641426326556,56.11678664183818],[-126.62667894575283,56.11671141303798],[-126.62688835516592,56.11664317644194],[-126.62703579311443,56.11660548725523],[-126.62718820264442,56.11656329303365],[-126.627403884654,56.11650958587969],[-126.62761974638525,56.116468198487105],[-126.62771617165672,56.11645204175683],[-126.62775244274049,56.11645298299034],[-126.62780159898317,56.116440419561386],[-126.6278706832478,56.11641543681009],[-126.62793962274615,56.11638037390492],[-126.6279836641555,56.116363355266465],[-126.62801863418929,56.11634638136587],[-126.62804561766495,56.116332807135265],[-126.62807354648794,56.116315867957994],[-126.62813844140057,56.11628082490008],[-126.62822128221578,56.11623337223223],[-126.62828899149295,56.11618487410156],[-126.6283785154885,56.11611498650146],[-126.62853113382421,56.11602350557575],[-126.62864828390482,56.11598036359215],[-126.6286835394983,56.11598130957306],[-126.62873750724789,56.1159552809115],[-126.62878111849069,56.115911381907964],[-126.62878746010354,56.11586654689684],[-126.62879113038564,56.11584412692422],[-126.6288527114681,56.11585390355624],[-126.6289970631883,56.11587447212472],[-126.62917148423016,56.115887051269894],[-126.62925826692312,56.11589782323694],[-126.62932000385429,56.115853834446064],[-126.62940018366129,56.115766070842575],[-126.62943571992676,56.1157210914461],[-126.62949061414263,56.11569057751382],[-126.62960145141265,56.11563066448255],[-126.6296553464181,56.115600155421],[-126.62960273882763,56.115459284017035],[-126.6292358978204,56.115128430551394],[-126.62866035107874,56.11471796039297],[-126.62833556394307,56.114307370304],[-126.62816762959919,56.114070739770135],[-126.62800437154144,56.113999859479044],[-126.62779037442134,56.113905707318764],[-126.62750034618655,56.113779446994236],[-126.6272797390791,56.113712208765165],[-126.62703724713671,56.11366187933165],[-126.62678628999568,56.11358582903195],[-126.62667871420918,56.113533714424506],[-126.62661597966708,56.1135149817207],[-126.62649653468706,56.113476366481464],[-126.62629328893303,56.11342360229699],[-126.6260061912312,56.11335444883961],[-126.62568564342357,56.113272018080615],[-126.62536007025963,56.113189611212945],[-126.6250057139566,56.11313310693562],[-126.62465062799694,56.11309452670561],[-126.62440972831546,56.11308114748248],[-126.6243281380447,56.11307930751362],[-126.62432475391783,56.11305692230442],[-126.62432685922363,56.112998667279435],[-126.62430357665714,56.11280052548957],[-126.62426191722044,56.1123325321193],[-126.62419020061385,56.111747076788255],[-126.62407421041556,56.111290648939615],[-126.62396200849412,56.111010056547215],[-126.62386584240451,56.11078763014126],[-126.62374271769883,56.11051605187324],[-126.62360801266296,56.110212047675915],[-126.62353091424886,56.11004889239498],[-126.62351222299581,56.11001314111228],[-126.62346308304272,56.10989913275321],[-126.6234160184651,56.10966078435108],[-126.62344914411344,56.10946348646373],[-126.62351023893069,56.10937918052742],[-126.62358715929108,56.1092768756079],[-126.62366913215102,56.10904909595618],[-126.62365343096137,56.10882067482213],[-126.62356359676677,56.108616138789735],[-126.62345867476333,56.108348951676895],[-126.62343492455186,56.108056724982916],[-126.62346540230854,56.10775639206637],[-126.62344140009394,56.10751233045544],[-126.62335907472158,56.10727303489032],[-126.62327403785403,56.10686237915656],[-126.62324486087807,56.10629127738716],[-126.62324892185582,56.10565728808178],[-126.62325875724558,56.10500646933946],[-126.62326729227415,56.1043366156455],[-126.62334070114734,56.10369556660976],[-126.6235124824086,56.10322652899138],[-126.62372955607744,56.102947683850836],[-126.62392180157443,56.102754086627215],[-126.62409268222126,56.1025460327798],[-126.62425776327193,56.10216327375595],[-126.62433920095908,56.10158490996363],[-126.62441149741267,56.10100211074375],[-126.62456821389172,56.100600351080196],[-126.62468849985282,56.10044070852103],[-126.62482137614516,56.10037621127512],[-126.62507622293298,56.10032231564888],[-126.62544040658732,56.1003070851364],[-126.62582839272861,56.10033317967574],[-126.62613387023671,56.10036079913702],[-126.62634852256093,56.10024885428605],[-126.62642409859245,56.09999982330718],[-126.6264327046759,56.09997177880742],[-126.62642990767375,56.09979593919047],[-126.62642310118262,56.09968396417786],[-126.6264072816371,56.09951266902829],[-126.6264021143563,56.099377164171074],[-126.62641089768844,56.099296474809236],[-126.62643019229301,56.099243735827024],[-126.62647434073716,56.09917183303507],[-126.62653190249736,56.09905618087134],[-126.62661880725322,56.0989504649508],[-126.62676539495344,56.09886349644809],[-126.62687702709614,56.09879350126654],[-126.62693644144565,56.098731603873134],[-126.62698960216449,56.09865629624918],[-126.62700916314779,56.09862035714593],[-126.62701578929492,56.09859344245845],[-126.62704226338163,56.09854962869092],[-126.62708874235152,56.09849675565125],[-126.62715923576317,56.09830935406294],[-126.62721650608074,56.097986487387004],[-126.62723666838313,56.097798213790725],[-126.62723832475118,56.09777580393511],[-126.62717575772692,56.09776603158797],[-126.62695860906636,56.09772117828339],[-126.62669558590089,56.09763958778125],[-126.62664892744101,56.09749084636225],[-126.62681141689552,56.097327633776736],[-126.62694239100912,56.09720825956228],[-126.62691484817199,56.097122148786276],[-126.62670787442025,56.09702012065832],[-126.62639458313336,56.09694213741866],[-126.62609085845872,56.09689546869405],[-126.62586135267333,56.09683275302246],[-126.6257489416203,56.09678962263504],[-126.62565874733765,56.09675198332538],[-126.62552779229051,56.09668206191884],[-126.62544221229986,56.09661751776299],[-126.62543970124806,56.09658616776017],[-126.62541287352369,56.09654485653184],[-126.62530010982863,56.09648044590148],[-126.62520884709643,56.096438331198776],[-126.62517231005793,56.09641946930628],[-126.62509004324299,56.09637282998431],[-126.62495886110008,56.09628946812549],[-126.62487759327496,56.09624282376407],[-126.62482495230184,56.09622404086353],[-126.62474900965488,56.09619529160792],[-126.62468910197373,56.09616310333084],[-126.62465853347753,56.09613973165689],[-126.62463719156285,56.0961263954314],[-126.62461079127691,56.09611196395123],[-126.62461043604058,56.09608956402576],[-126.62467925570532,56.096050023241304],[-126.62475841064477,56.09589954341093],[-126.62475663953056,56.09566097435195],[-126.62472363564409,56.09554800799592],[-126.62470147488203,56.09554699672188],[-126.62448501442219,56.09554357900602],[-126.62409037773993,56.09553991493724],[-126.62389504581402,56.09553639257866],[-126.62385218740614,56.095499639987544],[-126.62376869667506,56.09543956484799],[-126.62366406173639,56.0953795933022],[-126.62349736528817,56.09527736266545],[-126.62333355542813,56.09516615701319],[-126.62324898076368,56.09510160652608],[-126.62316601016803,56.09501016614126],[-126.62305584539597,56.094855014163954],[-126.6229181603641,56.09467759519323],[-126.62273529956907,56.09450711771082],[-126.62251654539094,56.0943592172605],[-126.62230851065767,56.09425158698483],[-126.62215339860012,56.094181780394685],[-126.62204085767014,56.094129686806276],[-126.62195975692649,56.09409312058017],[-126.62187769486911,56.094059919249034],[-126.62179988707057,56.09404013806137],[-126.62175248691885,56.09403476929951],[-126.62170524430957,56.094038360408],[-126.62162763264953,56.0940320191438],[-126.62148115594469,56.093998012187164],[-126.62125750115078,56.09392181882935],[-126.62107965798391,56.09387788383665],[-126.62100803095575,56.093867032653485],[-126.62096877106482,56.09386722427833],[-126.62094855363289,56.0938617225432],[-126.62090275910053,56.093829463661464],[-126.62079282614418,56.09375159437544],[-126.6207042152197,56.09368594187765],[-126.62067065735403,56.093663703953894],[-126.620657335995,56.09364920787579],[-126.62062766281281,56.09361799033494],[-126.62056739185947,56.09356228023556],[-126.62051750161487,56.09352556087182],[-126.62048068723331,56.09348877771933],[-126.6204296415303,56.093443103303635],[-126.62034493421002,56.093369590960634],[-126.62023477437023,56.093277161260936],[-126.62017446769396,56.093218090916594],[-126.62015899271564,56.09319464463495],[-126.62011384534088,56.09313998069635],[-126.62001421901739,56.09301277694761],[-126.6199596006441,56.09293239723989],[-126.6199142775783,56.092866533279604],[-126.61987065026472,56.09278049957692],[-126.61984570283201,56.09273021745997],[-126.619797051739,56.092644208214],[-126.61972265070293,56.09252136170286],[-126.61963151314123,56.09235827374573],[-126.61954237154801,56.09219405593551],[-126.61948179770795,56.092054340758594],[-126.6194681651349,56.09189199538231],[-126.61948741735475,56.091708208351235],[-126.61950861173167,56.09151993154759],[-126.61953873056882,56.091322650645125],[-126.61958968304238,56.091171191595755],[-126.61962329386131,56.09106798046802],[-126.61962662642786,56.090960436487975],[-126.61959423281911,56.09082058417695],[-126.61950987057476,56.09063954196734],[-126.6194338785978,56.090479740490764],[-126.61945535997592,56.09037322825031],[-126.61954123253504,56.09026640244152],[-126.6196218870747,56.09014728110769],[-126.61970728144057,56.09000909527091],[-126.61978426196337,56.08991239334334],[-126.61982293788397,56.0898763623412],[-126.61985826786692,56.089819066105505],[-126.61992173248628,56.08969442794821],[-126.61999121868901,56.08956976041624],[-126.62003827173059,56.089490005396854],[-126.62010424159378,56.08939671719082],[-126.62020781882282,56.089264042805205],[-126.62025669204823,56.08904426883144],[-126.62020037755066,56.088791405327214],[-126.6201469999819,56.088660616206624],[-126.62013348656454,56.08863380016718],[-126.62012527729561,56.0886237594675],[-126.62010387046618,56.08860594254253],[-126.6200904276166,56.0885836064745],[-126.62009999719676,56.088552197592826],[-126.62007921846731,56.08851085592736],[-126.62001416171734,56.08846973007498],[-126.61997261101145,56.08845089122798],[-126.61995628076617,56.08843640977774],[-126.61993601338641,56.08842754791104],[-126.61989351889072,56.08841319395715],[-126.61985296656938,56.08839435020692],[-126.6198689266649,56.08838531180008],[-126.62000765095964,56.08831183056888],[-126.62003868151317,56.088172789448436],[-126.61974668635042,56.08810028709257],[-126.61950386852155,56.08801858395492],[-126.61942244105072,56.08789577173867],[-126.61934631928119,56.08779085491604],[-126.61928939759501,56.08769144497965],[-126.61926452455093,56.087645642815396],[-126.61924182260789,56.087609910792125],[-126.61913320119044,56.08748611071437],[-126.61894729284641,56.08731116298918],[-126.6188058959828,56.08721440402247],[-126.61875010232706,56.087186673446794],[-126.61868014889589,56.08715341132047],[-126.61856850776934,56.08709346998372],[-126.61842728991807,56.08700903060978],[-126.61825822564539,56.08688104335423],[-126.61812970733102,56.08670693563579],[-126.61809294600396,56.08654470284965],[-126.61808970827619,56.08653127763763],[-126.61813023187763,56.08642019293648],[-126.61820229648299,56.08639520099706],[-126.61825535544911,56.08637702186415],[-126.6184241268973,56.086358280203655],[-126.61856570338314,56.086338550486694],[-126.61866113076114,56.08632688561943],[-126.61878961603439,56.08630609924277],[-126.61899749998682,56.086279325996834],[-126.61920940720549,56.086251412746705],[-126.61939198359373,56.086214681336735],[-126.61962231409544,56.08614299461451],[-126.61996510914061,56.085992353876335],[-126.6202707311738,56.08584525371689],[-126.62037752640539,56.08578872897383],[-126.62037731476354,56.08577528906153],[-126.62030607666085,56.08566138845326],[-126.62015614965686,56.08547058605497],[-126.62007110590152,56.08537355381856],[-126.62006793810723,56.085364608632695],[-126.62014596647039,56.085335106200375],[-126.62032401900223,56.08526703329703],[-126.62047898845799,56.08520243297966],[-126.62079997025609,56.08507317788082],[-126.62141046869381,56.08486074218039],[-126.62193654400068,56.08465543682034],[-126.62228323012054,56.08436924129337],[-126.62256024477603,56.08406882483282],[-126.62294630302975,56.08391908434876],[-126.62354164389761,56.08383216137196],[-126.62398197271861,56.083741515822126],[-126.62433833348241,56.083623278967714],[-126.62473415837272,56.08345556383229],[-126.624892786297,56.08330581418478],[-126.62489451947427,56.083161315567445],[-126.62489073406581,56.08298660195808],[-126.62487284110276,56.082873561966935],[-126.62485912939775,56.08283330651552],[-126.62485489154408,56.08281988639709],[-126.62486164251041,56.08280193198132],[-126.62486344170287,56.08278848220482],[-126.6248737411761,56.08261257934455],[-126.62489947252143,56.0822047445418],[-126.6249120975891,56.08179585410828],[-126.6249174709997,56.08143628277577],[-126.62492377133762,56.08107222662474],[-126.62492618425983,56.08084371897834],[-126.62492950640409,56.080609606496516],[-126.62493668182461,56.08017386121654],[-126.62494205806071,56.0797515657671],[-126.62492972499145,56.07954441214492],[-126.62481551541295,56.07944864667663],[-126.62461989412856,56.07935888135534],[-126.62447678772261,56.07921733436957],[-126.62435517975489,56.07897151457707],[-126.62425004469378,56.0787502555236],[-126.62419793143766,56.07863626351437],[-126.62416121910687,56.078541237204306],[-126.62411845447728,56.07844624058926],[-126.62408841748258,56.078391504252686],[-126.62401526167466,56.078219371484074],[-126.62389397925206,56.077740573957584],[-126.62386157093934,56.077218777586864],[-126.6239540742321,56.076896862044116],[-126.62405116461473,56.07667461067827],[-126.62408669709401,56.07650418482888],[-126.62407470354334,56.07638215545806],[-126.62404869691173,56.07626467515843],[-126.62402048332972,56.07613488485962],[-126.62397398457172,56.07599398352767],[-126.62391758577347,56.07586321143624],[-126.62386173702144,56.07576715895966],[-126.62379892719508,56.0756767409849],[-126.62372274646776,56.07556734728746],[-126.62363097039206,56.07542554785507],[-126.62361861497008,56.07540768724485],[-126.62352604379477,56.07521660835077],[-126.62348569403741,56.075018552933464],[-126.62347853366985,56.07482033480137],[-126.6234751097378,56.07466802142612],[-126.62347750336926,56.07456496282075],[-126.62349845124994,56.07442597086081],[-126.62353289920279,56.074251070323626],[-126.62355391760877,56.07411655832037],[-126.62355536241277,56.074080708852456],[-126.62347675549124,56.07267316103775],[-126.62223111260882,56.06934592498821],[-126.62258794190014,56.067354930291835],[-126.62622492786303,56.064810187169286],[-126.62842663675785,56.062541260012146],[-126.6249460337619,56.05875018210431],[-126.62294231373738,56.057191922072384],[-126.62288845302318,56.0553104728806],[-126.62606756788556,56.054649694820306],[-126.6324205986131,56.05377595195463],[-126.63684661651058,56.052329125422204],[-126.63946601124321,56.049547166068116],[-126.64314272321312,56.04529027993412],[-126.64605729251153,56.042909916038994],[-126.64938599566183,56.04042880378849],[-126.64825231025843,56.03670701964894],[-126.64767398073184,56.035213565087986],[-126.64904612435456,56.03339654114057],[-126.6556969872982,56.032538020054446],[-126.66137647214875,56.03405874603939],[-126.66606115502584,56.034374770122746],[-126.6714874005819,56.03367416485712],[-126.67085414763764,56.0302993947745],[-126.66947964499367,56.028003795665974],[-126.67104529490639,56.02647224798398],[-126.67789125599154,56.02595202666962],[-126.68504955762853,56.02525950139579],[-126.6862755237416,56.02520808036601],[-126.68919772443218,56.02666178276112],[-126.69345269163502,56.02806334788733],[-126.70151168771287,56.02811766001623],[-126.70969587479571,56.0270865345028],[-126.7153253216906,56.026382913119036],[-126.71536261459353,56.02467123711799],[-126.7160156709661,56.022785841568286],[-126.72408836907857,56.02227412292056],[-126.73201377045503,56.02358173438976],[-126.73383832227184,56.0242253268803],[-126.73873705552984,56.02870410306643],[-126.74081202137494,56.031747583536],[-126.74084029018869,56.035179333113064],[-126.74152728802311,56.03638500868975],[-126.7399543006678,56.038311753467475],[-126.74090315875742,56.04157685433884],[-126.74237532668819,56.044328139523486],[-126.74280804024902,56.04787402955818],[-126.74929432490232,56.04996858997327],[-126.75176733144178,56.04884286139267],[-126.7551359422705,56.048921456935446],[-126.75830958289812,56.04848140722469],[-126.75602926712334,56.045278111786814],[-126.75517125006739,56.04252332947039],[-126.7547356768328,56.03904022339085],[-126.75540142816087,56.03664377460877],[-126.76139250360052,56.03314024122324],[-126.76609690913467,56.02786102411207],[-126.76608061410813,56.02386468454678],[-126.76968026259352,56.02240026075974],[-126.7743592834443,56.023115548991896],[-126.77912862354152,56.024224379958184],[-126.7812864504899,56.023440509212115],[-126.78131827437782,56.02195284811297],[-126.78245881997046,56.02104976281109],[-126.78614763450996,56.02022052387901],[-126.79247267146252,56.02019913209144],[-126.79903003902244,56.01875122031983],[-126.80475997097916,56.01793545994719],[-126.80905367142695,56.01744222176182],[-126.81289470709442,56.01912021746837],[-126.81743407084434,56.0216090289421],[-126.82339783751439,56.024437924398065],[-126.82698752297419,56.028635096121704],[-126.82906337611699,56.03201767894495],[-126.8307307199644,56.035456670507166],[-126.83412807503863,56.039126240307915],[-126.8386785887429,56.04121102515193],[-126.84329287375051,56.04540997508067],[-126.84649511309635,56.048793788858596],[-126.84867373593536,56.0522918989125],[-126.85176704769778,56.05607955978507],[-126.85671669469549,56.05890480598163],[-126.85992363615554,56.061894002375276],[-126.86027399776559,56.06509066469236],[-126.86066505949633,56.06600202798251],[-126.86378377483854,56.068597458053596],[-126.8652560623027,56.07174168575756],[-126.86592661530926,56.0741476071239],[-126.8657513226232,56.078028881055324],[-126.86614182230878,56.07894919817381],[-126.8646722498109,56.081217354053315],[-126.8652169938398,56.0847621839695],[-126.86541446776074,56.08504759102138],[-126.87032043880234,56.09056095725928],[-126.87361214322158,56.09480382611915],[-126.87466795872238,56.09847058384989],[-126.8754927213679,56.10355477107556],[-126.87973037740159,56.10666191026144],[-126.88662751572828,56.109607040619046],[-126.888545223761,56.110875100046954],[-126.89256933767746,56.114610599578135],[-126.89474159752973,56.118905639262216],[-126.89579865028186,56.122688758236805],[-126.89867045670864,56.127892862683716],[-126.90167649469807,56.13140230725146],[-126.90329681438614,56.13237655234313],[-126.90454465844873,56.136955818211085],[-126.90761974456754,56.14240027321754],[-126.91227934934673,56.14498366311183],[-126.91878308397393,56.14765217649498],[-126.9222088417758,56.15069217320206],[-126.92368629681948,56.15406883011269],[-126.92840873724937,56.15912452147325],[-126.92993611242342,56.159758598451546],[-126.93145547212451,56.16056298112321],[-126.9388213938641,56.16083153681996],[-126.94340768324506,56.16211498333016],[-126.94600636855374,56.16589533062157],[-126.94955167585843,56.16813619153347],[-126.95576557907475,56.169944753504836],[-126.95912733872248,56.17115617403183],[-126.96556034111873,56.17215609194984],[-126.9709109516459,56.17064577846454],[-126.97299628535431,56.168308871786394],[-126.9758521229122,56.166593332547656],[-126.9773366383608,56.165703739735385],[-126.98278035624254,56.16470300807385],[-126.98356201317497,56.16047615551112],[-126.98363028859927,56.15619208299295],[-126.98779290533312,56.151930107897925],[-126.99543301551502,56.147622948942136],[-127.0006957202999,56.14461550129055],[-127.00401742452206,56.141443920480924],[-127.0063230419146,56.137966637243956],[-127.00632715868748,56.137733609283046],[-127.00612845054938,56.137331917921536],[-127.00628408873953,56.13396121871943],[-127.00868531974479,56.130662368707924],[-127.01025728469607,56.12815865416897],[-127.00849202337294,56.12300196284528],[-127.00610370897192,56.118710470926366],[-127.00090646580605,56.117604395544674],[-126.9976675359996,56.11530885068397],[-126.99617617769006,56.112730725207776],[-126.99526880773935,56.11181481397461],[-126.99469174835568,56.109462515957034],[-126.99423706128661,56.105693386585294],[-126.99344612070091,56.10391627873755],[-126.99412006956595,56.10010249632224],[-126.99642637940858,56.09627594093982],[-126.99747103812074,56.09491461296861],[-127.00149552524779,56.09230216884727],[-127.00552216910212,56.0895193158019],[-127.00568983114727,56.085127004942684],[-127.00350082755993,56.08140748276384],[-127.00150798736713,56.07802691038991],[-127.00019974510255,56.07671095572138],[-126.99601907696913,56.07634947849839],[-126.99112137052474,56.07603826073295],[-126.9884961352713,56.074024519215506],[-126.98425453281892,56.07080453874697],[-126.98040566127713,56.06890763913916],[-126.97666710329909,56.06637354327011],[-126.97254175403572,56.06253398837159],[-126.9698303106058,56.05959755724845],[-126.96834696660443,56.05657107474972],[-126.96677787531118,56.052622247345916],[-126.96387667623773,56.04895234919096],[-126.96187398035032,56.04648532853114],[-126.9605901179423,56.043968043162046],[-126.95900602437975,56.040879512802505],[-126.95741069627378,56.038642343282355],[-126.95518606021311,56.03743143802972],[-126.95224511911204,56.03627067124668],[-126.94952080120704,56.03437342282378],[-126.946491566991,56.03253215699723],[-126.94254028699758,56.030742471913904],[-126.93817222037788,56.02958300951759],[-126.93513141729089,56.02835986908974],[-126.93331663871339,56.0272172632909],[-126.93467911712399,56.025047671980694],[-126.93697128383702,56.022261871453225],[-126.93539869485421,56.01865327510117],[-126.93399896000763,56.01698789851122],[-126.93178376556706,56.015328495079466],[-126.93021770354791,56.01149577985165],[-126.92830758398473,56.00976240001316],[-126.92477033579775,56.00797813122514],[-126.92234257838938,56.00676816293932],[-126.92056470154358,56.00361790755975],[-126.91977450902856,56.00207341978249],[-126.91720360080627,56.00004000534153],[-126.91391082390021,55.9956998664979],[-126.91329270401762,55.994154106133266],[-126.91328860401931,55.99180642020541],[-126.91827731346488,55.99055175677921],[-126.91899075268907,55.99049282748419],[-126.9236756745884,55.989741951797924],[-126.93039896892752,55.9884204051951],[-126.93538722886686,55.987102341383405],[-126.94180046723797,55.98544196173877],[-126.95137679373514,55.98451924202552],[-126.95871019399435,55.984338589375675],[-126.9612579668612,55.98422074313886],[-126.95717383172239,55.98170675620877],[-126.9498278842772,55.97909165709659],[-126.93922383590979,55.97738742103921],[-126.93443502576147,55.97647294924164],[-126.9223010716992,55.97339862262633],[-126.91333178080961,55.97066779022376],[-126.9083316209909,55.96861586208432],[-126.90160654430719,55.96758857037001],[-126.89070721396932,55.9665723898353],[-126.88541003015168,55.96542668123684],[-126.87674759592929,55.96280764439006],[-126.87082892349953,55.95800075165331],[-126.86633982934805,55.95126628018112],[-126.87131302940853,55.94137559639876],[-126.87283458313672,55.94039738934935],[-126.89541418669319,55.93307142687355],[-126.89927572833311,55.93135053655902],[-126.90201395612429,55.927639327488876],[-126.90943814052106,55.92632281546877],[-126.91624922229458,55.92408736364043],[-126.91816905900609,55.920310031125034],[-126.9165296773372,55.91642406796971],[-126.91387758455916,55.91362066480969],[-126.90714987496939,55.90757588770713],[-126.90510623879216,55.904427458355904],[-126.90255538670947,55.90089731767804],[-126.89746326663952,55.898263297547025],[-126.89359491691657,55.895638368058044],[-126.88880424446455,55.89089618431855],[-126.88717281405052,55.88780732502359],[-126.88645363970393,55.88466726093278],[-126.88583626284127,55.880388514024524],[-126.88481044185404,55.87673089327813],[-126.88094346613877,55.873765110684005],[-126.87646524537794,55.87056152294382],[-126.87432703008751,55.86764628526061],[-126.87289719079135,55.86330143758007],[-126.87167406542979,55.86101602963261],[-126.86729936390716,55.85718420939971],[-126.86333256397259,55.85421861172827],[-126.86190821453938,55.85193449448654],[-126.858853807244,55.846390948227466],[-126.8554959045984,55.84296401481788],[-126.85153603837702,55.84067900555856],[-126.84899529783192,55.83930725759947],[-126.84523723292382,55.83754039557597],[-126.84361065560053,55.83554417271821],[-126.84167746321434,55.83120240018723],[-126.83923809479454,55.82857536416341],[-126.83111855136003,55.82776884314185],[-126.82208459394444,55.826627268255464],[-126.8182275120303,55.825370997769994],[-126.81112452465406,55.82171625125594],[-126.80696155869195,55.81702988180886],[-126.80280077705322,55.812056650384896],[-126.79945553127546,55.81006184394329],[-126.79874454218626,55.809940900233485],[-126.78840001775292,55.806511457798344],[-126.77937180923897,55.80428267277856],[-126.77024395949665,55.8027348198287],[-126.76324757095323,55.800958409031864],[-126.75605183737892,55.79775816898667],[-126.7513892787586,55.79432744130394],[-126.74672911927225,55.791299733753874],[-126.74480566024224,55.78860518496763],[-126.74419994773997,55.78666444573564],[-126.74420308706135,55.78560715259709],[-126.74420319965648,55.78529355358022],[-126.7443034703058,55.784728485492394],[-126.74491347089864,55.783121056580434],[-126.74765909989301,55.77889365041497],[-126.74887931357605,55.77523972154792],[-126.74898040485947,55.77324105647896],[-126.74807822488546,55.76695654100403],[-126.7477806049422,55.76186011616143],[-126.74768300490722,55.75752410323324],[-126.74758513514095,55.75529367009742],[-126.74738508184177,55.752723368030225],[-126.74698566211178,55.74803971768242],[-126.74587610299648,55.7450626478187],[-126.74101857928851,55.74122958398368],[-126.73363128605892,55.73836978762343],[-126.72553751106801,55.73521795977745],[-126.71856028733951,55.730697374189496],[-126.709963872012,55.727556391940325],[-126.69843073987181,55.72388459344283],[-126.69216551719315,55.721195387629756],[-126.68457990387184,55.718844565343154],[-126.68387203656152,55.71849897863298],[-126.67942710415885,55.716041175047415],[-126.67599703116707,55.7122607024082],[-126.67358193909301,55.70763251039748],[-126.67065820673034,55.704368860273185],[-126.66641177748672,55.70380005315333],[-126.6605392704307,55.70493301698401],[-126.65578069024211,55.70630182415733],[-126.64688620694949,55.704116847136326],[-126.64366245429518,55.70051365967739],[-126.63678895340794,55.69901649196125],[-126.63244634545178,55.69747043310618],[-126.63124685049374,55.69403595524335],[-126.63025083235695,55.69003599634379],[-126.62854336692561,55.687464163151255],[-126.62814541872402,55.686489552271276],[-126.62360673871977,55.68344792810904],[-126.61865740386797,55.68207464542492],[-126.61532589390731,55.68081870911161],[-126.613314874085,55.678239204932034],[-126.61009554026867,55.6754325837538],[-126.6037361479945,55.673250230474196],[-126.59828048767855,55.67238032057332],[-126.59514905820417,55.672153255328695],[-126.59292780335262,55.67192182900416],[-126.58879546527113,55.669396718506654],[-126.58446576349206,55.66607499623027],[-126.58053520006833,55.66413105364904],[-126.57538108447059,55.663885934853255],[-126.57154988555484,55.66250570920965],[-126.56902731088567,55.66204228602651],[-126.56114708814972,55.66105628511333],[-126.55700143025008,55.661907931175584],[-126.55294493538534,55.664246320987644],[-126.54767616366665,55.66629419677417],[-126.53857600110885,55.6673010837323],[-126.5324101260591,55.667282515889376],[-126.53129552097198,55.667627684643875],[-126.53119455507033,55.66722493503994],[-126.52961600648187,55.661963427981036],[-126.52813817724349,55.65630727099734],[-126.52795413394583,55.6531632824198],[-126.52737075586587,55.650074726673914],[-126.5236538708982,55.64686486015889],[-126.51557994606672,55.646047061537246],[-126.51093452073188,55.64575243346774],[-126.50740285883604,55.64522916239256],[-126.49590933980168,55.64194210090648],[-126.49046642833288,55.64067328936015],[-126.48188663636614,55.63990906472105],[-126.47986907753356,55.639612158968774],[-126.4751318334334,55.6384564653819],[-126.47102160561388,55.63485234670632],[-126.47267689173523,55.62988266201215],[-126.47765770721838,55.62555440217505],[-126.48071928280395,55.62167230414811],[-126.4812428989751,55.61899146250445],[-126.47807581430385,55.61115518537918],[-126.46864154799613,55.604892327483945],[-126.45868437174187,55.600700281529946],[-126.45758131877916,55.59995172384656],[-126.4467389768522,55.593808847251346],[-126.43930370402369,55.590296161734734],[-126.43095616453483,55.587762731705624],[-126.42843765525924,55.587359221266766],[-126.4195776253772,55.58566895415598],[-126.41111719168187,55.58420969750884],[-126.40568476595615,55.58282972294647],[-126.40600453298272,55.58105476822238],[-126.40503446565583,55.57710689512981],[-126.4028494567854,55.57372734971849],[-126.40065839360027,55.571091400648],[-126.40029349737813,55.5670967724373],[-126.40266276406439,55.56201830764057],[-126.40337729310717,55.56098571011619],[-126.4036237528745,55.556191767512544],[-126.3990362048423,55.551314738574085],[-126.39342637761413,55.54816091237305],[-126.39062033989364,55.54648536000599],[-126.3875445537816,55.5418451093204],[-126.38628238099913,55.53727089191578],[-126.39155830769806,55.5334110786418],[-126.39821751040157,55.53234190267614],[-126.40509058041785,55.52979342767777],[-126.40845027501756,55.52608241947249],[-126.41040826959721,55.52157855527391],[-126.4113305770006,55.51981059003921],[-126.4091793522523,55.51317893478718],[-126.40573149687155,55.505162797433286],[-126.40137502665551,55.49766015959937],[-126.40009166389487,55.4951467657711],[-126.39701917736556,55.49045303135284],[-126.39353491123119,55.48654891701123],[-126.38752976370739,55.48344988609216],[-126.37648505240065,55.481414021435576],[-126.36705702050529,55.478745330477274],[-126.36094253981024,55.476899620154676],[-126.35624931965346,55.473571344818566],[-126.35612184626342,55.46670911610791],[-126.3570014265252,55.45991569958737],[-126.3580382321912,55.45700107059876],[-126.35831123515572,55.450433360457346],[-126.35507897150532,55.44241533677319],[-126.35124572979026,55.43457810944231],[-126.34710065700091,55.4278167150892],[-126.34442299152111,55.424554103506395],[-126.34088172299145,55.417790854664354],[-126.33581202914824,55.413378862182334],[-126.32730307682577,55.410713744117416],[-126.31691068621012,55.40667316794467],[-126.3127190215942,55.404488791068964],[-126.30745294594779,55.399896982567064],[-126.30079545657156,55.39409886558793],[-126.29541024425457,55.39121799190279],[-126.28669684291015,55.38976006541925],[-126.28329169361648,55.38911383154551],[-126.27311123739044,55.38495270491725],[-126.26613906334292,55.38081084221466],[-126.25903689396606,55.37912358482996],[-126.25273486334923,55.37772099242898],[-126.24280547105329,55.37745399496218],[-126.23447893230295,55.37741614124954],[-126.2316753891117,55.37688384060951],[-126.23303771831844,55.37266170554655],[-126.24208380998907,55.3713902742755],[-126.24921667589196,55.37056099975866],[-126.25377400997755,55.36744311737099],[-126.25545778860277,55.361508950885835],[-126.25708506479664,55.35963322122604],[-126.25842641226004,55.35695176952732],[-126.2620751963053,55.35393400793996],[-126.26671714801407,55.35149634508533],[-126.27156807987953,55.35637740287333],[-126.27609998084073,55.362970118047876],[-126.27966689161978,55.36617840301623],[-126.28587104975635,55.36769632219908],[-126.29489628988013,55.36772910028482],[-126.2990094949101,55.36745951847515],[-126.30696619972701,55.36514676041777],[-126.31171169887885,55.36248319368417],[-126.31473792110359,55.36078238532992],[-126.3191529933273,55.36068159563139],[-126.3381066217918,55.36075716037307],[-126.35972172899356,55.36528373195697],[-126.37010557442264,55.369840351414844],[-126.3942719987165,55.3809471510248],[-126.39887164132298,55.382796011765414],[-126.40960334918779,55.38345114226727],[-126.41856253859662,55.38011561694338],[-126.41982041209437,55.37410891687057],[-126.4074621854034,55.36538800819727],[-126.39299179439755,55.357855139586654],[-126.38521861770703,55.35320281703035],[-126.37415266403224,55.34693837247711],[-126.36727914591775,55.342452471453974],[-126.36379135828543,55.34067091106889],[-126.36260224586447,55.33935741904388],[-126.36875392999458,55.335487096761256],[-126.37548819475083,55.33385443119613],[-126.37880576429163,55.332778305341854],[-126.3766371297657,55.329174450383135],[-126.37003960794605,55.3276622201536],[-126.36355894574798,55.324608382822774],[-126.3629576012356,55.324377203264596],[-126.35550032747963,55.31915775212475],[-126.34875844986418,55.31244870285573],[-126.3463038879192,55.307976133710376],[-126.34323608554274,55.30453547098981],[-126.3422784029016,55.300649982086945],[-126.33882703401224,55.295723107881706],[-126.33205344217308,55.29295514163278],[-126.3261727894438,55.29047115945175],[-126.32130340095364,55.287312392647955],[-126.31662976294618,55.28449337498648],[-126.314937649276,55.283521154335276],[-126.31597759626358,55.28032024257631],[-126.3162257879222,55.27614482804078],[-126.3173726084189,55.27215526368547],[-126.31918911842293,55.27084264608985],[-126.32341088471169,55.26926398007205],[-126.32364326275761,55.26628906764535],[-126.31978647643531,55.2622765407179],[-126.31642423919133,55.25888975553275],[-126.30282139261769,55.25032316279331],[-126.29069473694966,55.24427802930826],[-126.28373185893098,55.24132874628285],[-126.27696351425652,55.23872803453207],[-126.27189830775372,55.23614116821601],[-126.26675516179733,55.23165501871788],[-126.2636104713609,55.227478000404986],[-126.25848510893525,55.22191643511628],[-126.25847197292681,55.22293775389825],[-126.25841493644478,55.22739930447824],[-126.25576223388447,55.23149890780079],[-126.25292856641181,55.23400417326851],[-126.24819026048222,55.23712237590269],[-126.2417798656279,55.23818315333412],[-126.23977971006538,55.23811535050064],[-126.23482492534178,55.234783197259574],[-126.23239565232295,55.229627547384936],[-126.23255077762434,55.22545250855072],[-126.23411632028346,55.220665635743636],[-126.23406221414878,55.21711809841777],[-126.23331208781308,55.213742083462066],[-126.23312533038589,55.212604680941965],[-126.23200747743981,55.20671195944589],[-126.22887515260447,55.202175711878695],[-126.22798782526833,55.20120980421078],[-126.22576781296452,55.19565051842771],[-126.22146841308768,55.18866152936714],[-126.21637295065827,55.18171857799646],[-126.21371952738396,55.17868618192822],[-126.20829288935049,55.17414439461824],[-126.20016277297472,55.170332405447915],[-126.19281214953453,55.167781849832416],[-126.18929111517403,55.16285105050578],[-126.1881899186791,55.156330835635146],[-126.18457838255436,55.15082669264833],[-126.18206230766404,55.14567023389095],[-126.18096974621119,55.13852284638205],[-126.1821615408701,55.13195443358086],[-126.18681119798862,55.12780864424598],[-126.18710930607891,55.127691733435896],[-126.19295584499,55.12343640083309],[-126.195673859277,55.12161354763472],[-126.19392576782583,55.11840910290571],[-126.19047854121087,55.11553872143366],[-126.18265538377474,55.11212828431888],[-126.17720193411799,55.11004883027009],[-126.17147414173392,55.106589890786985],[-126.1663613952477,55.10204587446208],[-126.16186444199025,55.09630935370681],[-126.1586618898701,55.09069644486256],[-126.15752505958011,55.08685465300377],[-126.15755978363904,55.08468662746047],[-126.15808072867546,55.083145085502856],[-126.16011173263723,55.08058927989488],[-126.16173811857051,55.07824897546285],[-126.16287351662638,55.07585554361883],[-126.16341390772104,55.07288953623451],[-126.16376818870037,55.069287711902135],[-126.16382130303927,55.06569524353633],[-126.16324787264085,55.06409241056673],[-126.1614367549375,55.05881816763995],[-126.15881103620478,55.05474539728045],[-126.15657163147554,55.051541068617],[-126.15550884751391,55.049535681231625],[-126.15597112292565,55.045082679393914],[-126.1623244607124,55.039564986300206],[-126.16485840873959,55.03643509186877],[-126.1665879457228,55.03370040741161],[-126.16669806564337,55.033073157649476],[-126.16692203588653,55.031531977753694],[-126.16695872349283,55.02902352166831],[-126.16522979004024,55.02489592724786],[-126.16281825347151,55.0200256450752],[-126.15922284927392,55.0144043225965],[-126.15657868328708,55.011594695774676],[-126.15628706535952,55.01141589228265],[-126.15147974616048,55.013625678426294],[-126.1393096290311,55.01613045183562],[-126.13112321923538,55.018208821538416],[-126.114183999213,55.02045628086634],[-126.10144725193354,55.02106759082199],[-126.09011317158763,55.02078072087715],[-126.08634371762825,55.02024589093278],[-126.07901963131154,55.01814551415904],[-126.07361302195754,55.01468187683596],[-126.07108808137238,55.01112679786371],[-126.06919067103651,55.00597669258047],[-126.0692066310745,55.00500019914084],[-126.06966048052102,55.00180173387273],[-126.06996387781477,54.99999193092791],[-126.0681297930238,54.99541512264914],[-126.0591663947497,54.98608489807535],[-126.04361481186253,54.96989425687683],[-126.02816252138666,54.95483042015552],[-126.00318881614355,54.94082237599367],[-125.99992177230757,54.939962393886276],[-125.98501179298235,54.93937021941472],[-125.9797724472232,54.935696457072076],[-125.97615986737424,54.93372492631039],[-125.97296945725185,54.93254173766113],[-125.96766824135952,54.93047103328926],[-125.96128822161612,54.9285162296557],[-125.957380503182,54.926078210389385],[-125.95342835347924,54.92188416872015],[-125.94958663566965,54.91756462484477],[-125.94596203941843,54.91518906842819],[-125.94574458573679,54.91410498455553],[-125.94948335916342,54.912601527778214],[-125.94743952985425,54.90924120616269],[-125.94640995523902,54.90753863270969],[-125.9402590645869,54.90174856437757],[-125.93504425894348,54.89807291078497],[-125.93114016747377,54.896153657567815],[-125.92712888390835,54.893212937984245],[-125.9232120585503,54.89020943608235],[-125.91632615851802,54.88762488684572],[-125.90717410839044,54.885692247357625],[-125.9002382373977,54.88509557050527],[-125.89744256103404,54.884663267167376],[-125.89887320238336,54.881116841943545],[-125.90354002841069,54.87639939440687],[-125.90768224956838,54.87523794375812],[-125.91251130742631,54.874175387570006],[-125.9211047553556,54.87297176857987],[-125.91995539583553,54.86967426374767],[-125.91853755005675,54.86796224321574],[-125.91287248416954,54.86600539841168],[-125.90867464547604,54.86460482104312],[-125.90597691235648,54.86290961870975],[-125.90384562347496,54.85949474728274],[-125.90636631592156,54.85656722125661],[-125.91183964053442,54.85259363169259],[-125.91495206844365,54.84989031674561],[-125.91600297730132,54.84748117075204],[-125.91555609934004,54.844685778979084],[-125.91374847881029,54.84326906744052],[-125.91075351638898,54.84243378564039],[-125.90560440509432,54.841775973373686],[-125.90420114667995,54.84116570556292],[-125.89988581998581,54.83793717611543],[-125.89664999721982,54.83389416963994],[-125.89434579004713,54.83185860994813],[-125.88857742910542,54.82999909738777],[-125.88340146210905,54.82849822095913],[-125.8815020699125,54.827080947178445],[-125.8806793416176,54.825655732014894],[-125.87799786986375,54.82499016913625],[-125.87562628592558,54.82505050977609],[-125.87117889765386,54.82536845347999],[-125.86732602300319,54.82515831885129],[-125.86671903999034,54.824709732604646],[-125.85986240953481,54.82241767774309],[-125.8532077593221,54.82056445420728],[-125.8528023654941,54.82051021896847],[-125.84904364311217,54.82029962464703],[-125.84380405219838,54.81981828893477],[-125.84338373482487,54.81959378963348],[-125.84290126804314,54.81930649921973],[-125.8390088447197,54.817447038202],[-125.83394435696083,54.81622194382443],[-125.82947531805681,54.8144151541198],[-125.81920217237882,54.80967930346758],[-125.81263653318669,54.8062831245517],[-125.80874513950835,54.80476313310102],[-125.80655370405049,54.80323674011348],[-125.8011968027583,54.801785868866816],[-125.79197403028736,54.80022975207274],[-125.78404783401885,54.7983347935529],[-125.77749284918845,54.796710568023876],[-125.77054960448307,54.794915055173874],[-125.75912625904587,54.7916054118105],[-125.75565741873567,54.79037123971662],[-125.75485408024144,54.78916917933615],[-125.75511755275683,54.78683148558675],[-125.75664697027926,54.78390502528348],[-125.7577918918077,54.78008192094975],[-125.7615015716098,54.777311966859145],[-125.76384701556847,54.775936848648826],[-125.76768923472252,54.77437638649114],[-125.76497783521091,54.77170155005891],[-125.76198195636634,54.76977863367156],[-125.76128553045096,54.7689799611553],[-125.75910179180015,54.76151310879164],[-125.76028199810392,54.754196149688624],[-125.76307920263574,54.74990138594492],[-125.76678931338478,54.7465131218965],[-125.77536135082214,54.74509567681984],[-125.79117287631776,54.74672713632312],[-125.80562651098523,54.74927716979801],[-125.81287292028907,54.75151911705802],[-125.82492341345457,54.75225354622342],[-125.83950588925076,54.750804204357074],[-125.84707028513792,54.747732050856804],[-125.84940430608685,54.739779616816996],[-125.84518048671521,54.7287283044363],[-125.840814402736,54.71883232269482],[-125.83984263876721,54.716654094705866],[-125.83504978606058,54.712911975306845],[-125.82913289733965,54.70660591562221],[-125.82211549232215,54.699850040555226],[-125.81660452719774,54.694054599311166],[-125.81507525679608,54.684923351645814],[-125.81303246613821,54.67945542419167],[-125.8063308328344,54.67320974809512],[-125.80006854778301,54.66969683823234],[-125.78537394286361,54.66224521501737],[-125.77139018530771,54.6564326017938],[-125.73736894038979,54.646043992323015],[-125.72305009961369,54.643369666609495],[-125.71328734952728,54.642388653755894],[-125.70519109112695,54.64082855346897],[-125.70179280671846,54.63616174752277],[-125.70143542904697,54.63194126378397],[-125.70640457262665,54.627581338829145],[-125.71454251508825,54.62502935570018],[-125.72030576688468,54.622256430558174],[-125.72015961335293,54.61866359957119],[-125.71687575799015,54.61542191785118],[-125.7071615494961,54.61078529472489],[-125.69886666978114,54.60757584885011],[-125.69013831604954,54.60235795321521],[-125.68279963773308,54.598280810049054],[-125.67639212540121,54.59630206569812],[-125.66386367872923,54.59356276359895],[-125.65350673345577,54.591043347184005],[-125.64535214816834,54.592274273453405],[-125.63861861344071,54.595900888390105],[-125.63325869302135,54.60020317101463],[-125.63248861741796,54.601293853227055],[-125.62689526057117,54.60382129297545],[-125.62053206950291,54.605620426248976],[-125.61718971996964,54.60626403847792],[-125.61383826532371,54.606217693936685],[-125.6086172628155,54.60532316526029],[-125.6035998588161,54.60425885206347],[-125.59777745148408,54.60303043346079],[-125.59050156106353,54.602880923648264],[-125.58203641708707,54.60371241832077],[-125.57694498072327,54.60538819909189],[-125.5749825493664,54.606080211014984],[-125.57056974689338,54.60809851919625],[-125.56694043144577,54.6093668865827],[-125.56153566065227,54.60829948213831],[-125.55636820504607,54.603980591293116],[-125.55556255229997,54.60101225346077],[-125.55553714477115,54.599068063521116],[-125.5567876772882,54.596779092540345],[-125.5613002273072,54.59408971309206],[-125.56786531874921,54.592348114595104],[-125.572574234117,54.59153144058296],[-125.57512554403644,54.59083255188832],[-125.57432478598271,54.58877816870314],[-125.57164663638696,54.586788904102725],[-125.57095761134985,54.58593539090294],[-125.57217942868672,54.580340297822836],[-125.57556360149474,54.57553213138449],[-125.57740199104629,54.5716950790452],[-125.57767364808242,54.56941147239146],[-125.57546691644826,54.56542604952714],[-125.5706372567127,54.56326801363038],[-125.55961545677178,54.561831276273615],[-125.5539482982245,54.55556632775105],[-125.5530513184084,54.553968349685086],[-125.54734616451965,54.552728965356835],[-125.54310914196314,54.5518889982729],[-125.53629266456997,54.54757198955183],[-125.53282234700166,54.544790448243695],[-125.5292674753164,54.54131863229008],[-125.5250004931935,54.53785290698799],[-125.5217304200679,54.53397880983679],[-125.51747096418741,54.52999321485758],[-125.50794500468658,54.528709971879564],[-125.50069342072047,54.53021260941464],[-125.49914752352723,54.53376305859546],[-125.49887251951719,54.53724702408632],[-125.49996978769204,54.540001954274054],[-125.50097675556107,54.54255044577109],[-125.50366670368648,54.54687966055593],[-125.50457534811139,54.54990255094929],[-125.50381810709939,54.55356374761996],[-125.50187844603751,54.55630630930243],[-125.50090790820389,54.55836294477969],[-125.49917206968456,54.56088231709105],[-125.4955299676105,54.560831534095975],[-125.49160105281574,54.56016127622852],[-125.48775674078007,54.56017213583474],[-125.4847177448252,54.5602400199758],[-125.48186375962673,54.559161848352026],[-125.48155876390075,54.5587663577819],[-125.47821265404933,54.55739932485171],[-125.4761429209039,54.556835025319835],[-125.47308715524252,54.55701901649208],[-125.47122719732441,54.55701995921666],[-125.46993993025845,54.5558855476259],[-125.46679439714543,54.554635535908794],[-125.46394197925018,54.55350319425002],[-125.45949413655737,54.549971668746316],[-125.4539686083477,54.547133987333346],[-125.44846026975429,54.546526954708426],[-125.44109492311154,54.54688775724111],[-125.43667853809191,54.54689439530974],[-125.43008222590608,54.54543040430328],[-125.4227135506273,54.544930005790015],[-125.41800625302355,54.54579467752603],[-125.4121282183318,54.548319959561994],[-125.40859871133357,54.550211266840435],[-125.40546202244936,54.55171017765303],[-125.4008452305941,54.55160704247123],[-125.39730768495879,54.54977992728534],[-125.39415252856638,54.548312968158434],[-125.39001663339805,54.54820284197043],[-125.38618891694954,54.54821059086413],[-125.38540632998887,54.54769599081055],[-125.37861818525535,54.545708621890384],[-125.37310705373123,54.54435456358245],[-125.3641499349593,54.542426933786295],[-125.36121396155475,54.5419188918403],[-125.35767286679605,54.54147032027168],[-125.35178143035124,54.54170804455676],[-125.35040698664274,54.54239958055814],[-125.3474749642531,54.544570044679254],[-125.34462555272721,54.54543283146216],[-125.34060393234607,54.54594879337738],[-125.33196238460172,54.546591811183475],[-125.32635310512111,54.547519719340585],[-125.3206583328495,54.5479810152196],[-125.31614884712094,54.547982790004674],[-125.31044962084907,54.54685779322708],[-125.30728546608998,54.544286533394356],[-125.30424351766797,54.5418413134216],[-125.29961643829367,54.54151031268459],[-125.29569337464586,54.54258980121905],[-125.29265571058485,54.54442686621925],[-125.28911993468495,54.54637743695789],[-125.28283059994924,54.54449513765054],[-125.28027404808522,54.542724106358975],[-125.27801033921942,54.541931315078656],[-125.27565376427928,54.541137931891065],[-125.27201749999244,54.53999644430477],[-125.26455651022223,54.53875129436203],[-125.25619823880777,54.540017820472],[-125.25296302547719,54.54070591091433],[-125.24717427066967,54.54122593066214],[-125.24275102438563,54.5416287002745],[-125.23714528343608,54.541459506172934],[-125.23321828991425,54.54100492139061],[-125.22684621225082,54.54203997218031],[-125.2225159828032,54.543239987294314],[-125.21858805601205,54.54364503125236],[-125.21368500930468,54.5439899341609],[-125.20553107884594,54.54496762713344],[-125.19913886026356,54.546171342333096],[-125.18961526022426,54.54662832479161],[-125.18911820452597,54.546687750002064],[-125.17231784024499,54.54680827611828],[-125.15740195055292,54.54646462760805],[-125.14285212874776,54.54493010716897],[-125.1308735947398,54.542758084209304],[-125.12479101254456,54.54098555649763],[-125.1140963848027,54.5347086020826],[-125.1061462079723,54.52774295120811],[-125.09929035423272,54.518320920586255],[-125.0982134345967,54.51518607669443],[-125.0967575154326,54.50747900507946],[-125.09676416284206,54.5008578725447],[-125.09460481363399,54.49770602411104],[-125.08814219406011,54.49251515039581],[-125.07687424127627,54.489142388102024],[-125.06530495027963,54.48685039499927],[-125.05794903519873,54.485082623547875],[-125.04392520927017,54.483307234503684],[-125.0326513914938,54.484374353472376],[-125.02949092594433,54.489115910627284],[-125.02918861126236,54.49207919857868],[-125.0277122495526,54.49299032504689],[-125.02073569370853,54.495443391376426],[-125.01277889361366,54.49743120594979],[-125.00866279088501,54.499306345971796],[-125.00346054087633,54.49936262174984],[-124.99078796063779,54.500432435658674],[-124.97488535751134,54.50497721569838],[-124.96986720800405,54.506915183887884],[-124.96652011907896,54.50764853761282],[-124.95550903435569,54.51020713295467],[-124.94441130859441,54.512468323442775],[-124.93537661577393,54.5151407243217],[-124.92835870284779,54.52118116168068],[-124.9247014303568,54.5253960810547],[-124.92271582853834,54.52904322673784],[-124.91866840880336,54.53331725696698],[-124.91413383603162,54.53548125364779],[-124.9058755993227,54.53666210380277],[-124.89803301581753,54.53619751054036],[-124.8882994747611,54.53576901276445],[-124.87713030294368,54.53346289556016],[-124.8710443177054,54.53225106591849],[-124.86299821813576,54.53246330173307],[-124.85218339152023,54.53307019705275],[-124.84324469395975,54.53470637464336],[-124.8316538820805,54.534784442196965],[-124.82359746972408,54.534250306372186],[-124.81701747349389,54.534634890873456],[-124.80797753660933,54.534896628092426],[-124.79924674406077,54.53465000246394],[-124.79296700040359,54.53377285647999],[-124.78493462069602,54.53192821645481],[-124.77114899313216,54.52566177015916],[-124.76949344040322,54.524569903628944],[-124.76655242354083,54.522963287902726],[-124.75911877112436,54.520889984685674],[-124.75215892306221,54.519555798993956],[-124.74863939187506,54.5176561093063],[-124.74698996976288,54.516393744485086],[-124.74302718289722,54.51078873335894],[-124.74177865145607,54.50707528081601],[-124.73857263382949,54.50409430538273],[-124.73232418660696,54.50139535223145],[-124.72529432733096,54.49846391756239],[-124.71884477846983,54.495815921087775],[-124.71250071137595,54.49328517084791],[-124.709182129063,54.492013641485734],[-124.70380343694443,54.48982415136603],[-124.69814835039021,54.486609982242165],[-124.69386572246572,54.48357150176927],[-124.69326234093033,54.476773007688294],[-124.69918221639266,54.473538704153675],[-124.70832399893476,54.4711177813376],[-124.71305910250491,54.46959070093539],[-124.71475573225042,54.46629319107178],[-124.71576594570061,54.46366944005818],[-124.72120259702879,54.458950547029396],[-124.73115183330006,54.45527298767246],[-124.73704770489161,54.453120863847786],[-124.7421594153689,54.451309844199606],[-124.74609902470525,54.449388022620354],[-124.75462918481199,54.44901831898353],[-124.7596363691643,54.44908719359014],[-124.76561918622237,54.449103004464874],[-124.76875528562753,54.44763827970878],[-124.76896332953632,54.44688770665678],[-124.77911587055614,54.441326683568654],[-124.7927648599297,54.43765424718224],[-124.79639792250157,54.43709873276939],[-124.8070059018108,54.43426386280839],[-124.8132039546376,54.43103584284613],[-124.81497773666342,54.42954774509825],[-124.81498725388597,54.42761241483939],[-124.81185684874164,54.4268562021592],[-124.80913287187403,54.425942588175324],[-124.80591501193014,54.42342018507853],[-124.80103598240136,54.421186036397366],[-124.79801869548439,54.419229886226724],[-124.79803157495347,54.418262296120155],[-124.79922477234771,54.41655365606019],[-124.79904473305267,54.41478669650574],[-124.79384888162001,54.41392005985729],[-124.78876701264147,54.413385864854206],[-124.78399348191161,54.41183304620118],[-124.78008661667292,54.40919553621959],[-124.77767822711917,54.40604425228473],[-124.77810564577337,54.401541447365766],[-124.78312278110971,54.39847337501478],[-124.78461779641283,54.39648114859761],[-124.7890404267447,54.39363988596935],[-124.7919069117365,54.39119524150673],[-124.79417273032426,54.38869083194327],[-124.79908424732199,54.38755652375001],[-124.80291935530043,54.38573942964346],[-124.80282976092182,54.38351637360528],[-124.80335553581612,54.38083341669241],[-124.80318523810446,54.37661139751145],[-124.80467634462944,54.37416191540885],[-124.81301553237537,54.370757802981984],[-124.81656026252139,54.368767219955274],[-124.8176623758287,54.36585682848474],[-124.81385544024933,54.364646028475086],[-124.81044080800861,54.363214926380785],[-124.80538145221811,54.36052211636069],[-124.80149065586578,54.358512619516134],[-124.79885170372037,54.356963361931854],[-124.79486443706612,54.35616235645947],[-124.79426984096155,54.35592350274438],[-124.79183721240351,54.35471662723564],[-124.78782679812392,54.35471264039918],[-124.78323601516631,54.355034265617554],[-124.77766413527777,54.35410933261461],[-124.77105026868833,54.350897666272665],[-124.7670557436486,54.34883223080588],[-124.76531661486074,54.34665512963011],[-124.76817626229285,54.34489197059641],[-124.77365192255768,54.34485760944876],[-124.77708545116661,54.34348532372306],[-124.77681718838299,54.34057942146794],[-124.77333034134963,54.33754257882196],[-124.77051043898034,54.33593709096344],[-124.76614406637226,54.33295387268621],[-124.76137736514401,54.32997537908427],[-124.75367415570113,54.3277820846774],[-124.74498096842048,54.32724476962313],[-124.74098940846255,54.32671073092165],[-124.73454505334539,54.32624070098122],[-124.72790374610399,54.326162540094394],[-124.72566225695923,54.32587028274553],[-124.71629845835136,54.32412315943465],[-124.70799647041655,54.32392782143474],[-124.70093713884131,54.325384993666894],[-124.69417930787986,54.327526011100474],[-124.68800469938881,54.32875894886978],[-124.68409766037783,54.328008891839346],[-124.68225749419832,54.32674344639854],[-124.67993968518915,54.3245139915745],[-124.67305297199024,54.32106091584163],[-124.66595461355092,54.31704058470097],[-124.66199107465201,54.314281953902544],[-124.65879651179412,54.31158542714649],[-124.6535727825832,54.30734303254802],[-124.64814553203598,54.304639410426354],[-124.6390729933099,54.30317623589132],[-124.63401216263222,54.30247434891973],[-124.62856434513218,54.300907638369615],[-124.62702277241037,54.298166126394264],[-124.62665839345013,54.29662073016779],[-124.62031274893559,54.29613673787606],[-124.61894961332872,54.29636321987334],[-124.61326656126744,54.29770545833498],[-124.60565180105749,54.29785142386296],[-124.59980292210025,54.29725555985208],[-124.59375638231683,54.296137388203405],[-124.5863465856501,54.29525399017069],[-124.58342445725016,54.29467337897452],[-124.57379305885866,54.292571498393045],[-124.56728858531746,54.29048778552928],[-124.55980571790143,54.287773818439106],[-124.555451561371,54.285015922709555],[-124.55120330591699,54.281452618127986],[-124.54346643526675,54.27685272950869],[-124.53736312141622,54.27442267782957],[-124.53502275786899,54.273561112002255],[-124.52832959672521,54.27129374951783],[-124.52367245229802,54.26979453187692],[-124.52047195954329,54.26846520660217],[-124.51881575081727,54.267432416682205],[-124.5162323053757,54.264793179284275],[-124.51637151697076,54.264346813025085],[-124.51705021089948,54.2621685352314],[-124.51884943021103,54.25921531612425],[-124.51995740155952,54.25664795449132],[-124.52196255796545,54.25351797227907],[-124.52367518050441,54.25038440531973],[-124.52445351332678,54.24970383637623],[-124.52714812960375,54.24663590905419],[-124.52804099459202,54.245329414379036],[-124.5335885370292,54.23902499647307],[-124.54062565901663,54.23186899285841],[-124.54734359770345,54.22584686740419],[-124.55637471831632,54.22133051676777],[-124.56624127928737,54.219260845442285],[-124.57761823235049,54.22062231587381],[-124.58198678161445,54.22280617146466],[-124.58572593682923,54.226765816218155],[-124.58811689197996,54.23014511708109],[-124.58964776460653,54.23260034171709],[-124.59207535364197,54.232673305762376],[-124.59968954898598,54.232644814604605],[-124.60573321018241,54.23221250284684],[-124.61109423552357,54.23286534678066],[-124.62042545005133,54.23530155401061],[-124.64532388636427,54.239623149967194],[-124.65722660447489,54.239728385927755],[-124.6642295755371,54.2405582954899],[-124.67424565962577,54.24241537553169],[-124.67899491264168,54.24494927727972],[-124.68325738048999,54.247809266499495],[-124.68908762632081,54.24977200578779],[-124.69623836316626,54.24648858981061],[-124.69959030307723,54.24313728762072],[-124.70272736900095,54.242686929957216],[-124.71049045593257,54.24630909808652],[-124.71600224958286,54.249638164867974],[-124.72437577056522,54.2520113469109],[-124.7325501286049,54.252885411685924],[-124.73471136729272,54.25215522233442],[-124.73941752171481,54.24971302394124],[-124.74529261002259,54.24625223189878],[-124.75294094306334,54.24262119745553],[-124.76036548590186,54.241272403137195],[-124.76689571516445,54.24100729827374],[-124.77322258903989,54.241886763736645],[-124.77762027345135,54.241949002496675],[-124.78250101408807,54.24128114472447],[-124.78622096435005,54.239804000466386],[-124.78935370510374,54.237362100183255],[-124.79014159809364,54.23724449827702],[-124.79749071780323,54.23207545042254],[-124.80231247377586,54.22809077095098],[-124.80701680020604,54.22388073487492],[-124.8105622348056,54.219838391559456],[-124.81628045297902,54.21237623928062],[-124.81990235012711,54.2093558955218],[-124.82965701159097,54.20738935345292],[-124.83823614020908,54.207292532558604],[-124.84465983505122,54.207873545408255],[-124.85226275293073,54.20806214074965],[-124.86443926779545,54.20905477135992],[-124.87309637972041,54.21004940600171],[-124.88310935283928,54.21377990857723],[-124.88776525685542,54.21841043962857],[-124.88822957978607,54.221147653975606],[-124.88722999402827,54.22400586974074],[-124.8900393338232,54.22817133294471],[-124.89762182826979,54.22984430700153],[-124.90698131194273,54.231801616089044],[-124.91553072635301,54.235354887641456],[-124.92212566913797,54.23841531723263],[-124.92293108837296,54.238789836666115],[-124.93003017998724,54.241433153357],[-124.94874839334902,54.24271657113172],[-124.95664387207268,54.2425516465022],[-124.9667821839694,54.24250386311937],[-124.9767214701285,54.243035979001846],[-124.98092719334171,54.24029362365005],[-124.98434333865767,54.23898713851786],[-124.98971680864571,54.2368814610578],[-124.99704829828623,54.2339225794212],[-125.00737686443209,54.23290528734645],[-125.01419906297343,54.23251282037339],[-125.01967063822268,54.23200155744868],[-125.02347571630779,54.229774216405104],[-125.02397127732499,54.225728159634194],[-125.02828102997935,54.221623069287425],[-125.03988323316283,54.220541542614],[-125.04455609348831,54.21991533319338],[-125.05197354037878,54.218262051699774],[-125.05811804166737,54.21375806185772],[-125.06299012908589,54.21108080252553],[-125.06747835225153,54.21107951174348],[-125.07925867790539,54.21285392520435],[-125.0902679502251,54.211996080186246],[-125.09992146429974,54.209147000116715],[-125.10295505793758,54.20817486988652],[-125.10596601705933,54.20469364927564],[-125.10411629646207,54.20070169268121],[-125.09721412914007,54.19590165246127],[-125.08776345044149,54.191789932690874],[-125.08154231809638,54.189673198279365],[-125.07453830776898,54.18755913183133],[-125.06732359917376,54.186643713194826],[-125.05993482258116,54.186640464691266],[-125.0419066135186,54.187037093888954],[-125.03188093654322,54.18811341332667],[-125.03041087308863,54.188567615164445],[-125.01872120265435,54.18981771497983],[-125.00947063777801,54.19054900266482],[-125.00704202877971,54.190600840669816],[-125.00422287328418,54.189009676591084],[-124.99938857982912,54.17866545057145],[-124.99551861332417,54.17107086965558],[-124.99513985530642,54.16833479738912],[-124.99418755304251,54.164563514425566],[-124.99428913317827,54.161652206935024],[-124.99206843636611,54.15765532190167],[-124.98429745002193,54.15342385388989],[-124.97342314367485,54.147525856311916],[-124.9658711550097,54.14021258465142],[-124.95899289619523,54.132447603827416],[-124.95580566268993,54.12986641212972],[-124.95036759378617,54.125930522455455],[-124.9439734019685,54.12043585306722],[-124.94137653401529,54.11523392560684],[-124.94041259673256,54.11335271683854],[-124.93909442228025,54.10615470569125],[-124.94236567186218,54.093942987481185],[-124.94413152126275,54.08961244705502],[-124.94900900885396,54.08402754864303],[-124.95185320477677,54.08002883845821],[-124.95604527725651,54.07541444344953],[-124.95799152009474,54.07295805024351],[-124.97146943750339,53.99846835905917],[-124.96166842431477,53.99047926874498],[-124.96022322336516,53.9840888626934],[-124.95614556943615,53.98089493268752],[-124.95323525797106,53.97992267631975],[-124.94945811758862,53.97878150211349],[-124.94634938560323,53.977810145711956],[-124.94441239164328,53.97524381259844],[-124.94228427039833,53.972390700954605],[-124.93830523889432,53.96902393373121],[-124.93453333786337,53.96713744190421],[-124.93307952663996,53.966626695870566],[-124.93269755959719,53.96662500371296],[-124.93366593879128,53.9634282895101],[-124.93366791604655,53.960971847039154],[-124.93105495422193,53.95920579715226],[-124.92533622265327,53.9570329069846],[-124.9239715283713,53.95663821358261],[-124.91942604886498,53.95578213354765],[-124.91613647082931,53.95480835096111],[-124.91371161433811,53.95406965399516],[-124.91071273268068,53.95367073158992],[-124.90819505368576,53.95298261077848],[-124.90538832102293,53.951673493376674],[-124.90345270544955,53.95093174705913],[-124.9014193139119,53.94984686868407],[-124.8992822088713,53.948645068551116],[-124.89657253946078,53.94772812181649],[-124.89560406748483,53.947388251301874],[-124.89385962255542,53.94579061550808],[-124.89221612274949,53.943848872179835],[-124.88651051828839,53.94247848588184],[-124.88438159874951,53.94213900732728],[-124.88369765482281,53.94144882923982],[-124.88156754010554,53.94002218096851],[-124.88050355837947,53.938137722030994],[-124.8783862592863,53.935681150040125],[-124.87790271243378,53.9337975789574],[-124.87809701727316,53.93225636935802],[-124.8787765271295,53.93197032651234],[-124.87917401242119,53.92968720711709],[-124.87781297946422,53.92637959531956],[-124.87434380368184,53.924267114836155],[-124.87007991240091,53.92164188957561],[-124.86873401084307,53.91781453181742],[-124.86757033968536,53.91627009494933],[-124.86507127265918,53.91221397800974],[-124.86575639469396,53.90947656906277],[-124.86903957271282,53.907707302295144],[-124.87301468840394,53.906857359963716],[-124.87387549418929,53.906624004275145],[-124.87388839861322,53.90445771180442],[-124.87331272399344,53.90149059325336],[-124.87303299969584,53.89886452920335],[-124.87408736539194,53.89823757020715],[-124.87990053928223,53.89480855930639],[-124.88579790365722,53.89161697290054],[-124.89431775073669,53.88842231562881],[-124.89596637634895,53.88779389993539],[-124.90225249693273,53.88596664891971],[-124.90487197543426,53.88436848082361],[-124.90468231867793,53.87882973811167],[-124.90420209581484,53.8750632649328],[-124.90352565825351,53.87238212574236],[-124.90333104061312,53.869354187924706],[-124.90632257051246,53.8668990796265],[-124.91213354974207,53.86678201720438],[-124.92015045249352,53.86918357954221],[-124.92460180970491,53.8727261954925],[-124.9278782188781,53.87751669773456],[-124.92924211972732,53.88139732832095],[-124.92942444298983,53.883793310966645],[-124.93020213078196,53.88379573933625],[-124.94316549516694,53.885561843347546],[-124.96066770941593,53.887611108209676],[-124.97024349816314,53.89200481510356],[-124.97420720201009,53.8939428862147],[-124.98310651150712,53.89742077107672],[-124.99308376026332,53.90180591454423],[-124.99628240228067,53.90328542405923],[-125.00130093476854,53.904597356773124],[-125.00721567841045,53.90545104881966],[-125.01543254945078,53.90510343576822],[-125.01997864441842,53.90383664604827],[-125.02211141829521,53.90332470905698],[-125.03380497157525,53.90171921118601],[-125.04714894264741,53.90061627348831],[-125.05015438353549,53.90061423591676],[-125.05847656856761,53.90094444812111],[-125.06882532409449,53.90139058078123],[-125.07589542149177,53.90109552148992],[-125.08313695393325,53.89993941085678],[-125.08874155179163,53.89828045001463],[-125.0949395688792,53.896669374367264],[-125.09888845121864,53.89535202318198],[-125.10323944843203,53.893059103666054],[-125.11009932885283,53.88967790231684],[-125.1157836416196,53.88630449413138],[-125.11886316881571,53.88275441349222],[-125.1160530430635,53.8786509616718],[-125.11061189383146,53.8756935341499],[-125.10306325109225,53.87364707992653],[-125.09377789131796,53.87297829692731],[-125.08759677190153,53.87258718053512],[-125.08565780346957,53.87202081219643],[-125.08082209913725,53.87008480206127],[-125.07840030591973,53.86723738461829],[-125.07654668909976,53.863528393568174],[-125.07460584237712,53.86170110159086],[-125.06976666385397,53.86067864765346],[-125.06860950473701,53.86062657128501],[-125.06232889773321,53.86000654554802],[-125.05662631482255,53.85944393280044],[-125.04888723670364,53.85796996847287],[-125.03864278753815,53.85678188638458],[-125.03139913783984,53.85633121268307],[-125.02761845097403,53.855080320047826],[-125.02480798125262,53.85080267321574],[-125.02509702479702,53.85017212545474],[-125.02586414412715,53.84669183843491],[-125.02285592182635,53.841784115688796],[-125.02188397980315,53.84035697402235],[-125.02294872176242,53.836530740820045],[-125.0269913595516,53.832360089412575],[-125.0295934132973,53.831156765429164],[-125.03809312520424,53.82846942197743],[-125.04571080640622,53.82634520891094],[-125.05671367542365,53.82062003524564],[-125.06189949487806,53.81684755963339],[-125.06383379664129,53.8141053446726],[-125.06690394844907,53.807535359271526],[-125.07161046893692,53.80193342917381],[-125.07257571656766,53.80096129710963],[-125.07535701842396,53.79701732629353],[-125.07940466068419,53.79358538657275],[-125.0822954356969,53.791528458011996],[-125.09203428941468,53.78939793120062],[-125.10196820471977,53.78875958579002],[-125.10813843466765,53.78766184245194],[-125.11564651725021,53.78587689383405],[-125.12382513856656,53.78038526338737],[-125.12215834674731,53.77501869813811],[-125.11462658158379,53.77229294460854],[-125.10758310297281,53.770246922054696],[-125.10080729794372,53.76569160456471],[-125.09393612778891,53.75999426753561],[-125.09220995352138,53.75896858892639],[-125.08601554414037,53.755097301344804],[-125.0752136820949,53.75340377343813],[-125.06586937499345,53.75318582167206],[-125.06374610930479,53.75296317072558],[-125.05871960771539,53.752054606150175],[-125.05255581979131,53.75103212726688],[-125.04502766649344,53.74853214118793],[-125.04173518496701,53.745624206858906],[-125.03990296596794,53.743342842924754],[-125.03681217614181,53.74094774174127],[-125.0338221126363,53.73946857174164],[-125.02630766022897,53.7378205254687],[-125.01840533693294,53.73782897720539],[-125.01223710178549,53.73840737831336],[-125.01097250665835,53.73726275094062],[-125.0077868766339,53.73447066419359],[-125.00616054530724,53.73321265514595],[-125.01020274351501,53.731273368619235],[-125.01463308006318,53.72960991079799],[-125.01172399607482,53.72670200109424],[-125.00622726161737,53.72402634468566],[-124.99968777795682,53.723691398027256],[-124.99390680485314,53.724034577799586],[-124.98464960188936,53.723015063510516],[-124.97540293041517,53.720964871642785],[-124.97010474467122,53.71960044286691],[-124.96086280465656,53.71680756500698],[-124.95488377367263,53.71355625180816],[-124.9501540455581,53.71139099267262],[-124.94447406127895,53.71139267846662],[-124.9420745503183,53.71139114921905],[-124.93523318304008,53.71048203477714],[-124.9303150549783,53.70683110949531],[-124.92733607690587,53.702202553903795],[-124.93186363678478,53.699123089689465],[-124.94244894146563,53.69660338448636],[-124.95303446442645,53.69523492647517],[-124.96141462895167,53.695227146011334],[-124.97103593476257,53.69413608703554],[-124.97585291984956,53.692704773367595],[-124.98201414210699,53.68842081244411],[-124.97941036232008,53.68254263802803],[-124.9731370985146,53.67843770676878],[-124.96755115771732,53.67358499223719],[-124.96351062727805,53.669480256742425],[-124.95985883989863,53.665025867381836],[-124.95657174485076,53.662400542150905],[-124.94859122423247,53.65823736025953],[-124.94204871028684,53.654246531765004],[-124.94194571420701,53.65374655049455],[-124.94185952076147,53.65333184830493],[-124.94183916794356,53.65331206843236],[-124.95050755020081,53.649492064957144],[-124.95035377622764,53.64950135547067],[-124.95030380145162,53.649453310915426],[-124.95027731165042,53.64945139388889],[-124.95026364554971,53.64916505197916],[-124.95026040342348,53.649143173997494],[-124.95024035986671,53.64903545328782],[-124.95022270141126,53.648983766519336],[-124.95016837720016,53.648882466893426],[-124.95023169105126,53.6487765970342],[-124.95025621694865,53.64870567989747],[-124.95027802244326,53.64851654688759],[-124.95029325732749,53.648362640021396],[-124.95041483856149,53.64835194725222],[-124.95049283271494,53.64834086347573],[-124.95079189380107,53.64828243386742],[-124.95086438489712,53.64826402442787],[-124.9510420889584,53.64820732729867],[-124.95105929934758,53.64820131210752],[-124.95132892169335,53.64810733064548],[-124.95138449683827,53.64808317147987],[-124.95151880898985,53.64801825191705],[-124.951532242989,53.64801164795086],[-124.9515861754183,53.64797739196339],[-124.95162884954637,53.64793855636351],[-124.95179086956446,53.647751214918635],[-124.95192962840899,53.64758439005551],[-124.95210642754141,53.647412296551565],[-124.95223464286045,53.6472879490107],[-124.95234421746856,53.647226728557776],[-124.95185900110536,53.6472258440526],[-124.9296999631019,53.647191756124506],[-124.92949715126447,53.64719161947508],[-124.9252491644384,53.64808620258322],[-124.92524974383649,53.647989864797346],[-124.92525111846375,53.64077926154913],[-124.92878372853977,53.640779546673805],[-124.93858938282605,53.64077947960612],[-124.93942136277846,53.640779573708464],[-124.93999370534183,53.6407795956352],[-124.94008848533115,53.640778758648324],[-124.94007993166042,53.64059271859774],[-124.93998089910801,53.64038738875983],[-124.93984962861938,53.64018290264234],[-124.93967429872515,53.63999706181776],[-124.93955987054512,53.63980112198338],[-124.93956633508846,53.639620816132094],[-124.93958818416293,53.639431684362734],[-124.93968540865605,53.63925946838993],[-124.9398603709703,53.63908569109207],[-124.94001947928919,53.63893922424717],[-124.94022408672485,53.63879203961184],[-124.94047540682588,53.638671034126155],[-124.94071223444345,53.638523578100525],[-124.94100616905332,53.63836597964346],[-124.94119870820342,53.638246128717455],[-124.94140308143277,53.63810790216532],[-124.94157757830949,53.63795205151764],[-124.94173690290536,53.637796622180566],[-124.9419583236552,53.63765854535297],[-124.94214776118012,53.63751122342548],[-124.94240049567998,53.637408706390644],[-124.9427437873615,53.63732211654151],[-124.94302807641601,53.63724565193248],[-124.9432803686578,53.637160497793836],[-124.94362388267187,53.637064945265216],[-124.94393851015592,53.63698761693587],[-124.94428178096001,53.63690158715201],[-124.9446433466494,53.636841474839954],[-124.94498784592184,53.63678177568923],[-124.94527357010624,53.63672324272929],[-124.9455576249232,53.63665572328884],[-124.94591583470097,53.63657821794323],[-124.94621550922982,53.63649235452408],[-124.94646702377308,53.63636237619372],[-124.94660948457505,53.6361983945784],[-124.9466298565754,53.63599132427477],[-124.94685149132789,53.635843713648434],[-124.94708593507563,53.63571414850118],[-124.9474945248662,53.63536597671055],[-124.94762371696588,53.63520186828732],[-124.94772112386781,53.63502068532694],[-124.94789436587234,53.63483791917383],[-124.94802188530582,53.63466484243319],[-124.94802674411943,53.634622314937],[-124.95062192535008,53.634579547908956],[-124.95268726776749,53.63458306794128],[-124.95258984420857,53.632115951145124],[-124.95249635947089,53.632065841466186],[-124.95224763395785,53.63193483420645],[-124.95221596268132,53.63191327193925],[-124.95203759638201,53.63177223292316],[-124.95179489369127,53.63162783417481],[-124.95158418582622,53.631492121588366],[-124.95134482597018,53.631365675456806],[-124.95132063479143,53.63134809491714],[-124.95110471016471,53.631193846832346],[-124.95087159792244,53.631045049065904],[-124.9506517614202,53.63089581152909],[-124.95063503570442,53.6308827773528],[-124.95026808141384,53.63055580259609],[-124.95002349759554,53.63041138357474],[-124.9498130264251,53.630266707617345],[-124.94960859099896,53.6301080763714],[-124.94959197835972,53.63009056195241],[-124.94941664726167,53.62990474357573],[-124.94940561905649,53.629891203559254],[-124.94927199153594,53.62970462167188],[-124.94915542735747,53.62951763373365],[-124.94904666615189,53.62932175199541],[-124.94890288168797,53.629162531563],[-124.94877306112744,53.62897542679243],[-124.9487621317201,53.62895797110933],[-124.94867802667689,53.62876118519669],[-124.94867457585079,53.6287477116446],[-124.94862377950129,53.628582585757904],[-124.9485147981179,53.62839566365004],[-124.94850755898825,53.628382156816805],[-124.948439941181,53.628207920900024],[-124.94833755883221,53.62798464326071],[-124.94826872364197,53.62778351000374],[-124.94818616550799,53.62760074507067],[-124.94817937694732,53.6275693178289],[-124.94817063532945,53.62738943299065],[-124.94811873658372,53.62719292947663],[-124.94811539865405,53.627174975802916],[-124.94810532597658,53.626972682761675],[-124.94806970118655,53.626807125173734],[-124.94801592348576,53.626610049391125],[-124.94794731730734,53.626399955638014],[-124.94787781093854,53.62622570261369],[-124.94781053708587,53.62603802588897],[-124.94772487221519,53.62582833765446],[-124.94765225537823,53.6256271705629],[-124.94759692501303,53.62541663754558],[-124.94755830394661,53.62521968569568],[-124.94750597414715,53.62504054660668],[-124.9474381405994,53.624875270082164],[-124.94736897686255,53.62468757634938],[-124.94736385809031,53.62466512587994],[-124.94734051757106,53.62446327150651],[-124.94730345459837,53.62427977645603],[-124.94724957107996,53.62408718022313],[-124.94724623377068,53.62406922650186],[-124.94723793338538,53.62387198541751],[-124.94718738817019,53.623697333888],[-124.94709983701398,53.62348763730337],[-124.94704606836841,53.623290551851866],[-124.94704261851847,53.623277078222024],[-124.94702061080824,53.623097640846424],[-124.94693182201695,53.62293722522671],[-124.94692647828738,53.62292373492912],[-124.94686065710485,53.62275399448989],[-124.94674991755815,53.62256257355358],[-124.94674268000654,53.62254906658062],[-124.94667328379543,53.622370888005385],[-124.9466699468701,53.62235293425513],[-124.94662812281227,53.62213299246337],[-124.94658784067948,53.621927072113095],[-124.94656283701434,53.62171624047849],[-124.94654327331057,53.62128924370329],[-124.94651960040528,53.62110082920495],[-124.94652613084791,53.620916597003095],[-124.94652646906883,53.62090315668226],[-124.94652536439759,53.62087177926466],[-124.94652024654428,53.620849328723345],[-124.94651702254693,53.62082689485036],[-124.94650257097284,53.62072370236468],[-124.94647878582612,53.62053976792119],[-124.94644339821185,53.62036525814898],[-124.94636788839011,53.6202043941231],[-124.94611341595385,53.61985374812563],[-124.9459984487258,53.61968021334688],[-124.94578984060188,53.619539461961715],[-124.94576944617131,53.619521913574424],[-124.94557878636918,53.61934547106357],[-124.94556397462155,53.619331897266264],[-124.94543930230768,53.61916780320503],[-124.94527127206517,53.61899547602235],[-124.9452456623026,53.61895940150486],[-124.94517841192413,53.61877172273105],[-124.94509399130116,53.618588938287616],[-124.94508754518647,53.61854407042203],[-124.9451079161239,53.6183369988541],[-124.94511215513731,53.61831911179441],[-124.94517755200636,53.61812924118791],[-124.94521252190329,53.617944139147774],[-124.94521664795982,53.61793073219275],[-124.94534933264573,53.61755100744012],[-124.94536127313066,53.61752815146865],[-124.94548718115647,53.61734217468726],[-124.94560005793372,53.617147120749905],[-124.94572597796785,53.61696057919328],[-124.94582513150827,53.616783893192306],[-124.9459471493387,53.61660179812927],[-124.94609936573377,53.616423894319766],[-124.94620989249503,53.61624674351791],[-124.94633980566246,53.616051838855505],[-124.94646526794861,53.615883225860465],[-124.94656195881235,53.61572891412245],[-124.94667615629605,53.61555627629158],[-124.94668976368233,53.61554239706912],[-124.94685132839818,53.61536905567195],[-124.9469189224037,53.615241938857515],[-124.94692884112186,53.61522410169772],[-124.94694267390263,53.61520125324826],[-124.94695450016867,53.61518287721354],[-124.94697401370492,53.6151600787458],[-124.94699163340121,53.615137272573556],[-124.94710491223054,53.615001030773605],[-124.94728766860106,53.61481331161483],[-124.947430390754,53.61463588719031],[-124.94758259370073,53.614457981347606],[-124.94769099024717,53.61428977262047],[-124.94770848262893,53.614272001989875],[-124.94786769436534,53.61411656296155],[-124.94789668859939,53.61409329203527],[-124.94811796369585,53.61395520245359],[-124.94816780079223,53.613931550041855],[-124.94846017036649,53.6138282576307],[-124.94869347369887,53.613739000285655],[-124.94885746055449,53.61361945079088],[-124.94904888347175,53.613463172854814],[-124.94907585646374,53.61344492962655],[-124.94911420470108,53.61342622166376],[-124.94937391510395,53.61334112035151],[-124.94960443826947,53.613211506848444],[-124.9497725445783,53.61307854893962],[-124.94985629918006,53.612910686621206],[-124.94993090880942,53.61272985631752],[-124.94993564181388,53.61254112654185],[-124.9498970355549,53.61234361884805],[-124.94984660530133,53.61216449643081],[-124.9497810139301,53.611985796577564],[-124.94969212597248,53.611829853424275],[-124.9496905696596,53.611816396424565],[-124.94968521230085,53.61180347068336],[-124.94966884558539,53.6117764403509],[-124.94965970157952,53.611763472409976],[-124.94957415163357,53.61162549186243],[-124.94956535879675,53.611598527995746],[-124.94955634118928,53.61158052438275],[-124.94954732358956,53.611562520768985],[-124.94948962799468,53.61144662560232],[-124.94935394071442,53.61126898599949],[-124.94919752532351,53.611087247708284],[-124.94902405649682,53.61090592403306],[-124.94900756416756,53.61088392926408],[-124.94891322593494,53.61071898427466],[-124.94878845389337,53.61055936427643],[-124.94877932437232,53.61054584072554],[-124.9486869936601,53.6103764320385],[-124.94853782049047,53.610208199742154],[-124.94852489043626,53.610195198432024],[-124.9484064905357,53.6100081915995],[-124.94830726421976,53.6098118352474],[-124.94820768729056,53.609629474722134],[-124.94811157446205,53.609460023281],[-124.94800041414615,53.60928652295433],[-124.94787990070853,53.609108459144835],[-124.94778089018187,53.608903697556336],[-124.9477722116458,53.60887225339613],[-124.94774820250038,53.60869727855099],[-124.94773052837432,53.60857165173202],[-124.9477291979696,53.608549234425666],[-124.94772597427156,53.60852680046941],[-124.94772464387067,53.60850438316239],[-124.94772520676395,53.608481982505175],[-124.94772983642565,53.608297741570965],[-124.94775543302646,53.608108074641144],[-124.94776356899719,53.608085740576975],[-124.94777539289369,53.608067364405954],[-124.94792377001389,53.60788997987551],[-124.94797238181516,53.607839439001204],[-124.94798988556444,53.60782110378436],[-124.94801128814369,53.60779833068272],[-124.94802689859763,53.607779978814854],[-124.94804450066032,53.60775772795324],[-124.9480757212701,53.607721033166335],[-124.94821485446109,53.607534613720446],[-124.94835008764638,53.607352631992256],[-124.94849043666657,53.607193109644015],[-124.94863124870089,53.60701510208308],[-124.94864875181719,53.60699676676349],[-124.94884258656595,53.60681866917585],[-124.9490045726318,53.60662683919375],[-124.94916965493901,53.60646248754811],[-124.94935936141826,53.60629779624018],[-124.94937095954135,53.60628837121172],[-124.94957336903462,53.60614563210811],[-124.94983154127685,53.605817980068565],[-124.94984135833315,53.60580405823759],[-124.95002204266409,53.605621362195784],[-124.9504091390606,53.60528698927957],[-124.95062334807245,53.60512642742162],[-124.9507879691474,53.60497999400237],[-124.95095528167886,53.60480166041875],[-124.9510973933654,53.60464662262114],[-124.9512630206022,53.604459867238646],[-124.95145127948264,53.60427667081198],[-124.95146486771316,53.60426334651842],[-124.95164832931275,53.60412043787455],[-124.95181294285013,53.60397400298294],[-124.95195527255663,53.603810012784116],[-124.95210494948196,53.603655040056104],[-124.9522171981299,53.6034823794791],[-124.9522613656044,53.60330632638251],[-124.9522663250976,53.60310807993397],[-124.95227338784312,53.60290144529186],[-124.95229371564673,53.60269437113672],[-124.95231582420146,53.6024917936843],[-124.95235264228768,53.60230671387609],[-124.95235758733428,53.602109022878075],[-124.95238114001681,53.60192438253304],[-124.95241806937416,53.60173482251154],[-124.95242263975949,53.60170349462169],[-124.95242700014241,53.60168056253026],[-124.95242945341526,53.6016581783616],[-124.95243569265578,53.60163582734335],[-124.95244005280041,53.601612904210995],[-124.95245332974878,53.601536276630036],[-124.95246146193801,53.601513942184404],[-124.95256123687048,53.60130980405647],[-124.95257695472895,53.6012869803554],[-124.9525982396616,53.60126867755977],[-124.95261562637991,53.601254830725445],[-124.95283659407202,53.601125691971035],[-124.95288639912619,53.601102601965295],[-124.95321088988166,53.60099789450713],[-124.953508388063,53.600912550532165],[-124.95352933636228,53.60090769698217],[-124.95383966425656,53.60083926865351],[-124.95414072195501,53.600762925470555],[-124.95469963210523,53.60059640700497],[-124.95471679445433,53.600591511207],[-124.95497585498677,53.60052879804261],[-124.95522077707462,53.6004256306827],[-124.95542256555781,53.60030584660039],[-124.95561512578318,53.60017645473824],[-124.95580277406893,53.60001620744665],[-124.95583598671178,53.599975046881916],[-124.95586907353253,53.59993893096207],[-124.95586197418956,53.59976802142816],[-124.95586834830914,53.59958827617778],[-124.9558734998078,53.599381624493894],[-124.95587006866268,53.59929141626239],[-124.95578798050617,53.599090724793946],[-124.95577206159038,53.599045774523375],[-124.95536487110968,53.59745701846263],[-124.9552944947706,53.59724242965291],[-124.95522879177875,53.59706821181769],[-124.95507645526952,53.59672407429361],[-124.95507120994036,53.59670666855016],[-124.95505095557576,53.596607906606714],[-124.95504594788133,53.596580976039185],[-124.95504082842925,53.596558525632155],[-124.9550305895415,53.59651362481674],[-124.95502736285952,53.59649119094268],[-124.95501210249026,53.596419915094025],[-124.95499318230648,53.596343570470225],[-124.95497048406648,53.596191013489126],[-124.95493341246262,53.596007527575054],[-124.95489544718508,53.59585987397259],[-124.95489400157199,53.59584193678736],[-124.95487790527218,53.59550067391979],[-124.95488607797206,53.59532486059483],[-124.95489779108384,53.5952347755112],[-124.95490803699194,53.59520349704904],[-124.95498750283947,53.59505351745216],[-124.95501769545422,53.59498151835072],[-124.95518698248458,53.594645791302014],[-124.95528960516731,53.59447808918843],[-124.95544461366754,53.59425930236987],[-124.95549786570031,53.59417350541547],[-124.9555929294892,53.59400517239895],[-124.95565660730935,53.593880821034794],[-124.95284153129965,53.59388533719959],[-124.9513610985988,53.5938880516961],[-124.95411929098083,53.590020324333906],[-124.95363789531697,53.58807408961946],[-124.95210983719815,53.58499447765966],[-124.95066142240461,53.582370942336745],[-124.94960408514449,53.57985611962933],[-124.94720775630162,53.57460438566401],[-124.94259406143655,53.56667675992944],[-124.93971238258075,53.55913959456831],[-124.88165828890735,53.55886532803123],[-124.87023669290441,53.55538236715284],[-124.84058454551715,53.55577615714168],[-124.81974233316943,53.56192946986956],[-124.80410769744995,53.56305740672589],[-124.78433121103377,53.562418719667974],[-124.76486315318688,53.561088121632906],[-124.75689003507635,53.55999714026601],[-124.75018524124883,53.55901356739812],[-124.74500376954657,53.558208064316275],[-124.74029766634405,53.55820729087724],[-124.73635972557211,53.55882728445286],[-124.73099955578688,53.55893518081568],[-124.72657411245754,53.55915699430111],[-124.72080898264106,53.56211928370674],[-124.71589830382527,53.56433535862885],[-124.7091816185231,53.56472740494453],[-124.70312795022919,53.56472013380015],[-124.69737882584023,53.56465313489377],[-124.69152026459012,53.564698374264474],[-124.68844884252123,53.565152071761396],[-124.68566675379274,53.565547252497375],[-124.68229875747784,53.566283226303035],[-124.67913284377887,53.56684656158399],[-124.67817072201642,53.56615866543717],[-124.6721222814684,53.565978466917144],[-124.67031575196111,53.56471812888415],[-124.67060509559903,53.56466196753268],[-124.66830643679342,53.5631748435977],[-124.66168769293527,53.56191051602847],[-124.65756837550296,53.56058315806166],[-124.65441103827011,53.55852424043788],[-124.6515520424904,53.555667525603525],[-124.65023137103249,53.55297825326828],[-124.64927865582489,53.551553002612565],[-124.64584250096098,53.549259885497],[-124.63932711630632,53.54816126010122],[-124.63683981879103,53.54741921641576],[-124.63358076499321,53.54575741401875],[-124.63147772552554,53.544837024881616],[-124.62927796250213,53.5431760248393],[-124.62824090250322,53.54112051306923],[-124.62527565294315,53.539288181465224],[-124.62250760810208,53.538367257642314],[-124.62089463622186,53.53682097085584],[-124.62030839497851,53.536250637234254],[-124.61791691187871,53.53538604587047],[-124.61418888673568,53.53423645130758],[-124.61083138258934,53.534234975951264],[-124.60757435965279,53.53485136745334],[-124.6038275525592,53.53563897152947],[-124.6002638066872,53.53592217928371],[-124.5964339820154,53.53556744588502],[-124.59366304265774,53.53475840499112],[-124.59051009943545,53.53406859203377],[-124.5895498244767,53.533840459718355],[-124.58619289964558,53.53337332549038],[-124.58417608190678,53.533083339213384],[-124.58198143909985,53.53268587902582],[-124.58201922067862,53.53291041122529],[-124.58325424867022,53.53485330605995],[-124.5849637571996,53.53708191102132],[-124.58466356235927,53.53925476402782],[-124.58168452809421,53.54102049050741],[-124.57802850823137,53.54266829611914],[-124.57272831116715,53.54505655699108],[-124.57051597215495,53.54693817243736],[-124.52972177686728,53.53806227633034],[-124.52390039693253,53.53456474205967],[-124.48789990116298,53.52711549063481],[-124.46326772239154,53.515919095291146],[-124.44240649133556,53.51220158620829],[-124.43243459657667,53.51205984357704],[-124.4230437019854,53.511744546642596],[-124.41557235151144,53.51103942501628],[-124.39797067326853,53.50921282711073],[-124.38543178243968,53.507053866336555],[-124.38133325824718,53.50476071341688],[-124.38596625090219,53.50140929907503],[-124.39292005472507,53.49623287665008],[-124.3963107177429,53.49173150585608],[-124.39598680805,53.48636666517029],[-124.39488359353506,53.48242277697987],[-124.39622619466319,53.4816805683321],[-124.39715869001814,53.474662478848764],[-124.39559058631487,53.46826511383925],[-124.39227674588031,53.464886943727436],[-124.38427744704313,53.46086146933132],[-124.37054098876689,53.45687928222409],[-124.35376470548013,53.45001968367617],[-124.3374570582116,53.445566619604904],[-124.32261559715732,53.445680242315994],[-124.30862372905267,53.44830796824185],[-124.29593991910906,53.45288237650285],[-124.28475449645362,53.45951701888168],[-124.28275024574397,53.46607256636757],[-124.28180933798964,53.47172510562935],[-124.27842237910296,53.47513596368133],[-124.27534742627728,53.475349261484155],[-124.27106150026604,53.47379013816944],[-124.26832853853234,53.47120457327289],[-124.26492363159608,53.46771047053935],[-124.26054314678308,53.465180281394446],[-124.25792756262946,53.460885054369854],[-124.24936748773716,53.45650483983974],[-124.24193496296473,53.44722574317171],[-124.23337999426734,53.44318782732464],[-124.22008337521332,53.43604674891428],[-124.21256774423064,53.43321789454838],[-124.20531959928472,53.43192275980073],[-124.19068848847743,53.43179445221615],[-124.18236620635957,53.43198097863008],[-124.1685775007589,53.432257263865864],[-124.16263877784928,53.4327972827657],[-124.15562891562335,53.43401578146276],[-124.15236017916735,53.4352560916889],[-124.14909884646126,53.435980941658315],[-124.14410981433922,53.43652639810476],[-124.13867366079597,53.43557815173918],[-124.13649352228116,53.435056031080805],[-124.12846772018908,53.43398272892627],[-124.11654298694452,53.43203427005257],[-124.11225462867604,53.43075328986046],[-124.09756372149168,53.42861558850053],[-124.09160601315473,53.42989420832692],[-124.08920593037955,53.43091026824812],[-124.08536807397196,53.43168521838997],[-124.07702973698503,53.432205928243135],[-124.07387993333722,53.43178858543686],[-124.06843199322033,53.431470081308646],[-124.05983637594328,53.43102108995824],[-124.0524536403699,53.43142957243442],[-124.04701644558894,53.43608154738383],[-124.04059586709162,53.4423762714204],[-124.03288631223654,53.44552777194568],[-124.02066234855158,53.44898771958581],[-123.99991231397826,53.45707495544681],[-123.99688376223106,53.458523567953506],[-123.99555527540532,53.458833521774764],[-123.9898361656515,53.4593844026177],[-123.98048424196784,53.460112235372435],[-123.96989959358089,53.4610301540956],[-123.96269665870273,53.460401279432936],[-123.95998618574161,53.45993185687624],[-123.95752145487494,53.462485182456604],[-123.9524945380113,53.465544188038585],[-123.94571791608645,53.46823103345428],[-123.93455219300111,53.471383983179145],[-123.92661811360259,53.47391187107251],[-123.92395541997081,53.474299254894454],[-123.908240585757,53.47620776445569],[-123.88956507580399,53.4762731997495],[-123.87563004502381,53.473111870602956],[-123.86655704508198,53.46913265901437],[-123.85514299001363,53.4687373408077],[-123.85013547264208,53.468301404855296],[-123.84960427217327,53.46687576103613],[-123.84397239729539,53.463012814347756],[-123.83947695872332,53.46291293519462],[-123.82815183383902,53.46463035470799],[-123.81455270919649,53.466780807706975],[-123.80866415868934,53.467899395102435],[-123.8056851206809,53.465651819627816],[-123.79947063085373,53.461168507997705],[-123.79587762502446,53.455385618307524],[-123.79105927210556,53.45225237604869],[-123.78155161823234,53.4467273762448],[-123.77228140971967,53.44274988746133],[-123.76679570792365,53.43945179780214],[-123.7577145508426,53.43255079012237],[-123.74790102368888,53.42416465436188],[-123.74075887370927,53.42032394274371],[-123.72791894355477,53.422279829794526],[-123.71529430309722,53.42469354239014],[-123.7020309943176,53.42551156181574],[-123.6832895677855,53.42331082281638],[-123.6664922511104,53.42200043270141],[-123.64544948089033,53.414336973770986],[-123.62449611788976,53.40896194272359],[-123.60518597582137,53.40687127263076],[-123.59774429003429,53.40960428777966],[-123.58624468917345,53.41415570661772],[-123.5720208193485,53.41514824936341],[-123.55270979401446,53.41539403693425],[-123.5313916955192,53.41538267790686],[-123.51377488022068,53.41503178911675],[-123.49640248840073,53.41336518490678],[-123.48995886227297,53.41212423642297],[-123.4868548020961,53.40827270041919],[-123.48653075905513,53.404102028493845],[-123.48713613014057,53.39952277268096],[-123.48558207672197,53.39347537444597],[-123.48575515828304,53.387297423496605],[-123.48459687511685,53.378674466764316],[-123.48015517913556,53.374554999505314],[-123.47234686448918,53.369789328867505],[-123.46526758497033,53.36095258265368],[-123.46103653248588,53.35739952201064],[-123.45266007414052,53.355389171096775],[-123.43732841581803,53.35379851215729],[-123.42514511539194,53.35223148904437],[-123.41488686912844,53.350977490454206],[-123.40823979460816,53.348825516611946],[-123.39322474885255,53.34534309087677],[-123.37761268368327,53.34060059041298],[-123.36784139617077,53.339571786704425],[-123.35824518062614,53.341282606706166],[-123.34293562052336,53.343050044906825],[-123.33326771046707,53.34253135772542],[-123.31655840744332,53.33928689847357],[-123.29275938435212,53.33507933761528],[-123.24619059419801,53.33208747219923],[-123.21791105419905,53.33112140647047],[-123.19893992797411,53.32833404811629],[-123.17395472321763,53.32252366572792],[-123.16147431313466,53.31578471912617],[-123.14597742599804,53.303409476669735],[-123.13955123303315,53.29186531808849],[-123.13875969842492,53.29044693304099],[-123.1370957638221,53.28880399763328],[-123.13207328896539,53.28964867837386],[-123.1281659548207,53.289801986966424],[-123.12646020229005,53.29010436511991],[-123.12549670054679,53.29011242736134],[-123.11930884598789,53.29016925844901],[-123.11596229623684,53.29026121928689],[-123.11159477579417,53.2907604822551],[-123.10721699268916,53.29096893080155],[-123.10389481100661,53.291800049523744],[-123.09879334785644,53.29355805578925],[-123.09643401557565,53.2943867249903],[-123.0893968517641,53.2914756590836],[-123.0863371076782,53.29133330507024],[-123.08174796603821,53.29046089202415],[-123.07466169673418,53.289148888607166],[-123.07177955731225,53.28883505545957],[-123.06646252249891,53.28956656630769],[-123.06381329103182,53.290446296106545],[-123.06162818344623,53.290925948227695],[-123.05850171842093,53.291525758637896],[-123.0568303617964,53.29348246285608],[-123.05527538431728,53.296356449305044],[-123.05400522999174,53.298597220523135],[-123.05357618139207,53.300429970558504],[-123.05233311056281,53.30055777656868],[-123.04822301036376,53.30036145669197],[-123.0465975912575,53.300146105644394],[-123.04401723770795,53.29959803463989],[-123.04187573966549,53.2977293069174],[-123.0396581378085,53.29694741829672],[-123.03704179845653,53.29520186982656],[-123.03319427100945,53.29363404079643],[-123.03137566449716,53.29381619224549],[-123.03015448889744,53.29406204832819],[-123.02734843238893,53.29288113858006],[-123.02447983774641,53.29216225722909],[-123.02386306592324,53.29045360890921],[-123.02126988289324,53.289673149731016],[-123.01906259798673,53.28918209859586],[-123.01818719401922,53.28815596063227],[-123.01645493231635,53.2875450332309],[-123.01452750997672,53.28692861311011],[-123.01391795641185,53.285337251937925],[-123.01747352464083,53.28250226597363],[-123.01822963376641,53.281808673550664],[-123.0158203532232,53.28120201747629],[-123.01325610017383,53.28151033204351],[-123.01123661787459,53.28049906620901],[-123.01102065778227,53.27930053227718],[-123.01032008646534,53.27793559852957],[-123.00754092942118,53.277670420317804],[-123.00496805507521,53.27746645064199],[-123.00113762985787,53.27675464038529],[-122.99763266151571,53.27781255512242],[-122.9966334992235,53.279592064830176],[-122.99550368082403,53.280458843723125],[-122.99199940766093,53.28128955211866],[-122.98965197403032,53.283194606732096],[-122.98519347074111,53.283688618998525],[-122.98221945926268,53.2831992408344],[-122.97782379527834,53.282604616512536],[-122.97353610883016,53.28281323497206],[-122.96847677254415,53.28245363491451],[-122.96397316529179,53.281689780390536],[-122.96222899814703,53.284391903127904],[-122.96596936178553,53.285730065281854],[-122.96743886672698,53.28726463786933],[-122.96750433185832,53.290121275231975],[-122.9693507241616,53.29164919007986],[-122.9700456150145,53.293078146656654],[-122.96874663231121,53.29440125253281],[-122.96704783465944,53.2952139985115],[-122.96501026192453,53.29780549985495],[-122.96334654677759,53.300218138275575],[-122.96026129850567,53.298753179847544],[-122.95791262393149,53.29626023513601],[-122.95467251657921,53.296112662515235],[-122.95288281927901,53.297553649880584],[-122.94877991650138,53.29747291824432],[-122.94848829856632,53.29713518502099],[-122.94414360878095,53.29436856988369],[-122.94112801894607,53.296107501121526],[-122.93778939842485,53.296073558446004],[-122.93273777662493,53.296002549376475],[-122.92951840575516,53.29722458678662],[-122.92619445551767,53.29822684211448],[-122.92012020460196,53.29958324429461],[-122.91499719755306,53.300481877085225],[-122.90966469900445,53.30115504886441],[-122.90782434135438,53.30408327973487],[-122.90739003818264,53.306310249858825],[-122.90651105264998,53.309467592848755],[-122.90359253541699,53.311487944834894],[-122.89932293087362,53.3128359998249],[-122.89382686685532,53.314477597903384],[-122.89000169005347,53.31387508740918],[-122.88887745484642,53.310339038133066],[-122.88794437888785,53.30645922359998],[-122.88540329115241,53.303564977716206],[-122.87970331696012,53.30491909016454],[-122.87728373931827,53.30791297323286],[-122.8736203525079,53.31062063709349],[-122.87508961335695,53.31232908711991],[-122.87896539568933,53.31549749262093],[-122.88272812789246,53.31775894884357],[-122.88562545061261,53.31950976602264],[-122.88708485863958,53.32115834709992],[-122.88713055653976,53.3229862878183],[-122.88629034175602,53.32396286353913],[-122.88365811786487,53.326157910988],[-122.88238566879639,53.32422095250514],[-122.88138637347818,53.32205397850907],[-122.87923006343624,53.319040779969704],[-122.8752507606393,53.3156392213354],[-122.87119135283643,53.313325401965784],[-122.86673773853089,53.31004165620476],[-122.8657639649935,53.308964069726265],[-122.86252357788999,53.304358620647136],[-122.86124589837652,53.30231133426542],[-122.858867474461,53.29786702616002],[-122.85589462659402,53.2921167024107],[-122.85426300473114,53.28715711123111],[-122.85229494964987,53.28368678788084],[-122.85100114654516,53.281064179775285],[-122.84722589991269,53.278230398124855],[-122.84230695016211,53.27500662035415],[-122.84018674677016,53.27399020191006],[-122.83622536199387,53.271449937010466],[-122.82802493409615,53.266080049389075],[-122.82265748044348,53.26405679119587],[-122.81635899126344,53.26381609692146],[-122.80910861582694,53.26363413366452],[-122.80339464394116,53.26361986873441],[-122.80062814948155,53.26380769151989],[-122.79464145046227,53.2640172392638],[-122.7889701156933,53.262057652941806],[-122.78731693882828,53.26006708263483],[-122.78388582350087,53.25437442432177],[-122.77681414357333,53.24813184778062],[-122.76964582374325,53.24160743660431],[-122.76457931045006,53.23455391845708],[-122.76122014263069,53.227597263716554],[-122.75947545858607,53.22115343583116],[-122.75704169944851,53.212537880515484],[-122.750066908756,53.20498089721799],[-122.74382538685487,53.19690410983467],[-122.73790699005507,53.19031290112207],[-122.73112749370931,53.183038617907656],[-122.72700029251166,53.17546207644144],[-122.72065069952646,53.165213210645646],[-122.71559878274552,53.1583854791399],[-122.70832607837245,53.15043014086324],[-122.69909443951549,53.143397068042994],[-122.69265441142323,53.13886627685169],[-122.6842251547109,53.134287713253926],[-122.6757307500431,53.131707130836375],[-122.66478178774584,53.13022600878065],[-122.655549246201,53.129421679558504],[-122.65002665919737,53.12853731751206],[-122.63956520184328,53.1271668916252],[-122.63347682328941,53.127371635023934],[-122.62376211899546,53.12548208496813],[-122.61411972613362,53.121760904324454],[-122.6090275746716,53.1179564336595],[-122.60591140296636,53.11905710547059],[-122.6049687254056,53.11940972109419],[-122.60300162324818,53.12113335187107],[-122.60197238803346,53.122563678758716],[-122.59942644967367,53.123837627168086],[-122.59754152230774,53.124533237429354],[-122.59593814529323,53.125455673318655],[-122.59292731966481,53.12747157304475],[-122.58942461113217,53.12851694632306],[-122.5836624012484,53.13117503246024],[-122.58000431998484,53.13450790081084],[-122.58021181817314,53.13565188929197],[-122.58157018550891,53.137586889981954],[-122.58158869944438,53.13884319733816],[-122.58160590061985,53.13993007703772],[-122.57856598044691,53.14080009024992],[-122.57574133368679,53.14178843618128],[-122.57367284012973,53.1436247884715],[-122.57329993916409,53.1439695681268],[-122.5702719378209,53.14524185942185],[-122.5678119529865,53.14616657082194],[-122.56593198052794,53.1478910463621],[-122.56481536217092,53.14926525937156],[-122.56225646723439,53.1497411071895],[-122.55920095985276,53.149128389397696],[-122.55654755215006,53.14873706455341],[-122.55329612714513,53.14795302312976],[-122.55017064096769,53.14893762507056],[-122.54858166650963,53.15094628381244],[-122.5444152788365,53.1519968270004],[-122.54298986369527,53.15199891373674],[-122.53986639375131,53.15258509657716],[-122.53656970350153,53.15528622728513],[-122.53318451752857,53.158329622100524],[-122.52806303150898,53.158753725895814],[-122.52435416024741,53.15860272299354],[-122.51998163137333,53.158676064236175],[-122.5156408008429,53.161096898704386],[-122.51197406705984,53.16425426951604],[-122.50686426116054,53.167250593182416],[-122.50488824158982,53.168460376016625],[-122.50469643053285,53.169146836314916],[-122.50500445159365,53.170686584584296],[-122.50321903313463,53.17194853159228],[-122.50247464843329,53.17332648688211],[-122.50117618974843,53.174143434645146],[-122.49982974677116,53.174995411563906],[-122.4965938267911,53.17546052269066],[-122.49557233675678,53.176555968127246],[-122.49520335505964,53.177928731482325],[-122.4948369633246,53.17872667058588],[-122.49551331278731,53.17998513009508],[-122.49552905882972,53.18124421379765],[-122.49430231605638,53.18227803958239],[-122.49204033882725,53.183483088794205],[-122.49053137261323,53.18520176276061],[-122.48805309774201,53.18412707450331],[-122.48557365341445,53.18397101466785],[-122.48263024028007,53.183977796613206],[-122.47968021156164,53.18370330902992],[-122.47888774719387,53.182221426756904],[-122.47554966815567,53.18138056117241],[-122.47203891186689,53.182250773126434],[-122.47016782258173,53.18380136644356],[-122.46988276767195,53.1839785138686],[-122.46903247398365,53.185350329320535],[-122.46693115273463,53.18444234845065],[-122.46625764194229,53.18387761805029],[-122.46570086581913,53.184790384434],[-122.46647079025782,53.18581849231954],[-122.46515820030001,53.18679114292331],[-122.46211066039731,53.18732154966898],[-122.459659268769,53.18915976818138],[-122.45671565013026,53.18934315333543],[-122.45654682037954,53.190998909560825],[-122.45703821724858,53.1924820375471],[-122.45295417025852,53.19300923796243],[-122.45133383009438,53.19370553938156],[-122.45020572917088,53.19462018292273],[-122.44794231630084,53.19617608192593],[-122.44795246770099,53.197484950233914],[-122.44521785100426,53.19892570156909],[-122.44330573546208,53.19933661379949],[-122.44122877272211,53.19974254986488],[-122.44114462467135,53.20145524220952],[-122.44088419012448,53.204369116237544],[-122.43968157725203,53.20723166803632],[-122.43867576152842,53.21060941930541],[-122.43679659194954,53.213472908504684],[-122.43615853785789,53.21587116374719],[-122.4362505293474,53.21638378897275],[-122.43502009514458,53.217075355051406],[-122.4346623258992,53.218109535676625],[-122.43304207142367,53.21914552011323],[-122.43305037036306,53.22011499514747],[-122.42877100760182,53.22007242219802],[-122.42649142175607,53.2201949290035],[-122.42423990679369,53.22069572826227],[-122.42364194228648,53.22083584782824],[-122.42088742799665,53.22124174917639],[-122.41554228044131,53.22012041627876],[-122.4134399743852,53.21903929889269],[-122.41028926158201,53.217741270418394],[-122.40837196288254,53.216431203299685],[-122.4050161620038,53.214898508715365],[-122.4043292964301,53.212905505830705],[-122.40182543987696,53.20913699272791],[-122.39981192209017,53.207376786705744],[-122.39636527934148,53.20515954129312],[-122.39169283204849,53.20357961495993],[-122.38862989869294,53.202154043584535],[-122.38355083554276,53.197433678670436],[-122.38028423766366,53.194185374491504],[-122.38008743034779,53.19332675251028],[-122.37665648879027,53.1930534973361],[-122.37189875191889,53.19301545524271],[-122.36866488950204,53.19359557381236],[-122.36591548011806,53.1936059844002],[-122.36162850877338,53.193157920536486],[-122.35914785077333,53.19196650801642],[-122.35694859379578,53.19134519939801],[-122.35474923535212,53.190551633245235],[-122.35189234773053,53.188503132537114],[-122.34959839190468,53.188112108251254],[-122.34758950756873,53.187203110728035],[-122.34588197771696,53.186978187043984],[-122.34492475691715,53.186412368637725],[-122.34282581296927,53.18515777178837],[-122.33967011174506,53.18414305941091],[-122.33862767758283,53.18300238661811],[-122.33773354675462,53.17997703141677],[-122.33620513846105,53.17820873419065],[-122.33295434264082,53.17604767086528],[-122.32885887630017,53.17531932403661],[-122.32544012746176,53.17527040809087],[-122.32183117052077,53.175164428697656],[-122.31953829033661,53.17459948256333],[-122.31686491602228,53.173922238385515],[-122.31354105576668,53.173474840552046],[-122.3134406954799,53.17290402491085],[-122.31246881262389,53.17096535714737],[-122.3100862310569,53.170228009832165],[-122.30800434469273,53.1710336614849],[-122.30583768232366,53.17332429758857],[-122.30537251142792,53.17486811756858],[-122.30517749297248,53.175038168494616],[-122.30500240058021,53.1766981932567],[-122.30492747789354,53.178586285003924],[-122.30168900542769,53.17956270223989],[-122.30008195570377,53.18042570343374],[-122.30085805011542,53.18150906087082],[-122.29847012459332,53.181514041004625],[-122.29608731439971,53.18060364384523],[-122.29408952027583,53.18026958329784],[-122.29267292354922,53.18032842343021],[-122.29009466923561,53.18010737098516],[-122.28839257200248,53.18051061580561],[-122.28658037856452,53.18011549802836],[-122.28582409519007,53.18086196207206],[-122.2835512017311,53.181779017187395],[-122.28125812573086,53.18172941119525],[-122.27841925071942,53.18293319358258],[-122.27766252723553,53.184023474741615],[-122.27662607044638,53.1843678375695],[-122.27567908644339,53.18625318403855],[-122.27321458528291,53.188145154292386],[-122.26856235171722,53.188956695637444],[-122.26609314775946,53.1895362743041],[-122.26553662952306,53.190905436148846],[-122.26477887739898,53.192851654792676],[-122.26394152286308,53.194508139071154],[-122.26299859433254,53.196338551680626],[-122.26139467376032,53.19765891617139],[-122.25931447792073,53.19977649802544],[-122.2571300275824,53.200694203231954],[-122.25331728814224,53.20167589896571],[-122.25095197912765,53.20276671864654],[-122.25029949216628,53.204193931642735],[-122.24964643899436,53.205965552151746],[-122.25069631715714,53.20801830626182],[-122.25100416815454,53.210306165838126],[-122.24938990022736,53.21122495952923],[-122.24577730588956,53.21180159334177],[-122.24349234422145,53.21231814838945],[-122.24063600017658,53.2126689900762],[-122.23825144862491,53.21244628478352],[-122.23796620762803,53.212105681157105],[-122.23586406787503,53.21056911333169],[-122.23443268519524,53.20993793900184],[-122.2305258933817,53.20943160393998],[-122.2287276866594,53.20903943165522],[-122.22616267883234,53.209325707994076],[-122.22320169542782,53.209334515432516],[-122.22100775633419,53.20916746611882],[-122.21940406218164,53.20962507907154],[-122.21759948242698,53.210144137920615],[-122.21568570744476,53.21020415965955],[-122.21331077773321,53.210379552311366],[-122.21026942861037,53.21044549913811],[-122.20817291126345,53.20936017646821],[-122.20655531710173,53.208966722245414],[-122.20446162245321,53.20885529987599],[-122.20179630566837,53.209085104786006],[-122.19856717989593,53.21023641913698],[-122.19695799288776,53.21275465274611],[-122.19572562283433,53.21492482473484],[-122.19363164693023,53.214646600040425],[-122.19020564130028,53.21430753676696],[-122.18667512542132,53.2136284083954],[-122.18373422553012,53.213576855083915],[-122.18164120434565,53.21328946843771],[-122.17973229513224,53.213292972548395],[-122.17859248494595,53.21409769508664],[-122.17621796077054,53.2157579021056],[-122.17309261499233,53.21707684292907],[-122.17089660022035,53.21759266493115],[-122.1678550734547,53.21765303921594],[-122.16633219124958,53.21754091599658],[-122.16442370582958,53.219026936739645],[-122.16319763807208,53.22011427704931],[-122.15929800187831,53.22200525576819],[-122.15473488037736,53.222759291422896],[-122.15120953159769,53.22350537013558],[-122.14940553227153,53.22350676541733],[-122.14435436573264,53.223510173553144],[-122.14246319862279,53.22397202286528],[-122.13941665809176,53.2252320919775],[-122.1368554555523,53.226607788141],[-122.1341826280445,53.22837979032019],[-122.13333904295123,53.23003979198667],[-122.12962180365025,53.230899608382344],[-122.12629855118766,53.23090487140832],[-122.12372079317811,53.231305824659785],[-122.12221181744276,53.23267469591213],[-122.11973393303032,53.23296888504888],[-122.11668008306339,53.23331257998558],[-122.11429984372866,53.23434198926676],[-122.11050002235238,53.23543640390898],[-122.10812492756178,53.23640695375257],[-122.10659499035476,53.236691055561806],[-122.10346946369486,53.23943606913724],[-122.10270812877621,53.24035243023938],[-122.10194463469215,53.24178037188577],[-122.10147126233574,53.24332332790619],[-122.10109559258903,53.244296694074464],[-122.09996126084175,53.24892260861735],[-122.09759738932065,53.255779614058106],[-122.0946649289495,53.26389417474027],[-122.0903025699275,53.27800541466003],[-122.08916798285975,53.282286739148034],[-122.08794426993963,53.28817523566679],[-122.08727937041479,53.29177075216683],[-122.08518873024262,53.2953130489502],[-122.08423285422303,53.295714609475],[-122.08204756960507,53.296057617198606],[-122.0779465814341,53.29692017700614],[-122.07250559201523,53.29777751279436],[-122.07202798330655,53.297892981008985],[-122.06975022423154,53.299548312292764],[-122.0694556700278,53.30109202392011],[-122.06488682059621,53.302924372223394],[-122.062792225187,53.30309669707544],[-122.06088359711818,53.30321288075699],[-122.05801870420095,53.30372981786636],[-122.05506201247822,53.30538757756766],[-122.05192501939278,53.30607317931614],[-122.0464876719855,53.30687228092438],[-122.04439139097948,53.307219832483156],[-122.04029275313702,53.3099601246038],[-122.03427261244559,53.31150112116572],[-122.02912101381699,53.31133448064467],[-122.02597795615966,53.31127584847557],[-122.01720116972477,53.31025452088837],[-122.01166472333988,53.30922140950868],[-122.00498979466933,53.30796456303332],[-122.00366397285865,53.307966484860444],[-121.99960348534687,53.306625099482424],[-121.99855366780847,53.30657623883188],[-121.99711290050676,53.30620279248392],[-121.99596630872288,53.30622133684496],[-121.99494029312903,53.30703166047943],[-121.99284447995623,53.30689358079954],[-121.99023407968089,53.30630606301949],[-121.99020096004094,53.305387620223364],[-121.99023702580253,53.30390034944746],[-121.98834765567987,53.30444355261681],[-121.98725511080987,53.30326205056303],[-121.9875560964581,53.30136631551704],[-121.98618844641234,53.30070232558517],[-121.98458715298037,53.30106838298163],[-121.97993205320692,53.30171026031883],[-121.97946449694778,53.30171686042596],[-121.97614912679755,53.30268115819791],[-121.9724386096383,53.302734807630266],[-121.96824781399782,53.30308509871047],[-121.96457023888684,53.304052478267145],[-121.96325949060113,53.3045268872258],[-121.96071377877043,53.305312714973354],[-121.95534767483039,53.307388804667774],[-121.95412354343911,53.31009689501318],[-121.9539541497233,53.31295931844379],[-121.95243327106445,53.31561686988145],[-121.94827676592502,53.31653492200527],[-121.94778195031122,53.3163530741606],[-121.94721387612977,53.316149646141845],[-121.946437116381,53.31341705506624],[-121.94608394195461,53.30941462429332],[-121.94574821936729,53.30335250184838],[-121.94562298512237,53.2979214704296],[-121.94545461029912,53.294035286833164],[-121.93797813899644,53.295512138244085],[-121.93003158051111,53.297172156369385],[-121.92531493689934,53.29844439223738],[-121.9186591709659,53.29905107857855],[-121.90866916170711,53.299711905341695],[-121.90025956344837,53.301774294143314],[-121.89517844458503,53.30367972930983],[-121.8871714871287,53.306540145519755],[-121.8832168837376,53.30785122632712],[-121.87117622061912,53.310190735540324],[-121.85910107020976,53.311333255155],[-121.84814205950534,53.31153896239955],[-121.83847640190403,53.311157189049],[-121.83482693904114,53.31057969398396],[-121.81963739772362,53.30740879332144],[-121.81232689686621,53.30350136606875],[-121.80704183403783,53.30014313087531],[-121.79389267762086,53.28744906373916],[-121.7892805262753,53.28402116629989],[-121.78101626105256,53.27692167791684],[-121.7743252448046,53.27397914000325],[-121.76184436523108,53.266193490806465],[-121.75224365708178,53.26168363621593],[-121.73412468579386,53.25362516069206],[-121.7292438540952,53.25323105045415],[-121.72401330222043,53.2534672379739],[-121.72093434734086,53.25533768284739],[-121.71880824649847,53.25730701596232],[-121.71432700455802,53.259938688411616],[-121.71312698495662,53.25812189745025],[-121.7089777607934,53.25423019255195],[-121.70183279934612,53.251688253371114],[-121.68438021835892,53.251217746550346],[-121.66708592597311,53.238510677232256],[-121.6561070693716,53.238189371654656],[-121.64398537464466,53.24005032660888],[-121.64038939565778,53.24369461728675],[-121.63592729749219,53.2471233833089],[-121.6314755754086,53.24826476307597],[-121.62729686734366,53.248366534288884],[-121.61318818248738,53.248308553527245],[-121.60547749156419,53.24851276190605],[-121.60051745220923,53.25177648027734],[-121.59565317574447,53.25440373080037],[-121.58740859129709,53.256102377782184],[-121.58287015921357,53.257186024212245],[-121.57760364480778,53.253295889483326],[-121.57187853260051,53.24690191301837],[-121.56678826986494,53.24278765706047],[-121.56059349917307,53.233593130546836],[-121.55842766195214,53.22515552823107],[-121.55709065774845,53.222139530480476],[-121.55704894094043,53.221106885660895],[-121.55262510646665,53.219559448849],[-121.54853242537824,53.21943818495457],[-121.54360595854035,53.22023510506967],[-121.54058202372079,53.22124270648139],[-121.53356520319753,53.22246114562267],[-121.52784945924786,53.22218363571966],[-121.52213956825445,53.22241854385827],[-121.50901790318548,53.223190642183425],[-121.50226839167316,53.223721950489484],[-121.48993945570938,53.22551168869642],[-121.4812377870477,53.22755149069467],[-121.47753200640723,53.23125227637445],[-121.47654922789044,53.23326357126498],[-121.471054599017,53.23778216802382],[-121.46160416002043,53.24045494728477],[-121.4544065668613,53.241619866244825],[-121.44345205131333,53.24161882594079],[-121.43190186855624,53.24197608117264],[-121.428084396867,53.245404557178155],[-121.42808184069136,53.24640028415969],[-121.42857830235506,53.247790804018095],[-121.42846843965765,53.24824911170084],[-121.42721516934269,53.24884236089632],[-121.42560893147136,53.24977560726528],[-121.42008630030669,53.251152528472446],[-121.41203105852749,53.2509009008489],[-121.40993775079951,53.25436980358848],[-121.40974089435863,53.25479554020456],[-121.40475126470147,53.25845356959942],[-121.40508334573752,53.25885995192493],[-121.40531966941668,53.25890167461051],[-121.40361425141643,53.2593553441324],[-121.40342003639044,53.259341639725996],[-121.39828786196347,53.25974252091877],[-121.3986558421037,53.266856826920225],[-121.40352340177944,53.26709567978848],[-121.41531148887603,53.26724971822006],[-121.41528590122901,53.27080877568252],[-121.41517316925447,53.28375514630432],[-121.3442233512123,53.283896338779584],[-121.33815957556234,53.28369622825333],[-121.26952541325035,53.29094362812431],[-121.22559763665055,53.32915297460155],[-121.22611857863349,53.336795278825775],[-121.21745139565223,53.338994711338124],[-121.20909593646637,53.33884473179366],[-121.20099282257196,53.33833382507764],[-121.20059205372027,53.33668888548102],[-121.19806133428646,53.33520314326185],[-121.18948170332135,53.335964583041736],[-121.18381726471003,53.33906313313641],[-121.17803527761347,53.34199497037214],[-121.1696254142913,53.343232429844846],[-121.16681044277392,53.343701769778235],[-121.15826433454053,53.346903633593904],[-121.15696286086859,53.347952689372065],[-121.15686038007554,53.34812200421022],[-121.15675796329576,53.348290755640264],[-121.15665548188666,53.34846006133202],[-121.15655494088826,53.34862888914564],[-121.1564542704305,53.34879883452924],[-121.15635554041283,53.34896830204106],[-121.15626788179924,53.349139901046954],[-121.15620055331566,53.34931513220958],[-121.15613691434734,53.34949107981364],[-121.1560290514253,53.349657928684536],[-121.15588810130181,53.34981724702471],[-121.15574540130683,53.349975370916425],[-121.15559544764768,53.350130952876],[-121.15543642763353,53.3502833529664],[-121.15526290018914,53.350430678237636],[-121.15507331100181,53.35057004443706],[-121.15487666147847,53.35070518756293],[-121.15467994582549,53.350840893658244],[-121.15449572801307,53.350982724094],[-121.15433126077579,53.35113322075186],[-121.15418485925356,53.351290635058824],[-121.15405309184604,53.35145200625024],[-121.15393407907277,53.35161727562667],[-121.15385009635602,53.351789580245836],[-121.15380696834079,53.35196748699058],[-121.15374713437579,53.35214303198603],[-121.15363731376704,53.352310356197066],[-121.15351279394427,53.35247426857336],[-121.15341035318123,53.35264301675597],[-121.15332630138927,53.35281588422007],[-121.15324781685169,53.352989544833825],[-121.15316382859396,53.353161848851265],[-121.15307057924343,53.35333266085735],[-121.1529791429058,53.35350410378124],[-121.15292111708591,53.35368027923293],[-121.15285383129785,53.35385495374584],[-121.15277346625086,53.35402852836926],[-121.15269672607099,53.354203382825006],[-121.15262186395682,53.354378304925135],[-121.15254324483085,53.354553082601356],[-121.1524609994854,53.354726580302255],[-121.15237324812757,53.354898739248966],[-121.15227817893296,53.35506891053153],[-121.15217216519375,53.355235823157486],[-121.15205514086364,53.35540004934063],[-121.15192717177906,53.35556101680689],[-121.15178631519919,53.35571921215922],[-121.15163814033201,53.35587541970898],[-121.1514845238306,53.356029725038866],[-121.15132352401459,53.356182605816514],[-121.15115889633371,53.35633421535903],[-121.15099064076365,53.35648455365165],[-121.15082244789122,53.35663433733629],[-121.15065425485363,53.356784111830784],[-121.15048800230585,53.356933408401886],[-121.15031812184434,53.35708143369863],[-121.15014454850743,53.3572287510053],[-121.14997110383958,53.35737494144941],[-121.1497939662667,53.35752042388262],[-121.1496168274706,53.35766590604153],[-121.14943975136947,53.357810833568585],[-121.14926079725547,53.35795567517728],[-121.14908365478856,53.3581011565108],[-121.14890838893639,53.358246714279],[-121.14873299298533,53.358393389433736],[-121.14856135151402,53.358540217747766],[-121.14839139284071,53.35868880347332],[-121.14822862268,53.35884048548897],[-121.14807304107372,53.358995263823765],[-121.14792102019398,53.359151876343596],[-121.14777081109357,53.35930912868123],[-121.147618852934,53.35946517749312],[-121.14746326574948,53.35961996392384],[-121.14730236655316,53.35977172133386],[-121.14713440634796,53.359919255312796],[-121.14695575718805,53.360061303641416],[-121.14676279213873,53.36019659513539],[-121.14655195027711,53.36032328634491],[-121.14632873434319,53.360442742959],[-121.14609295244736,53.360556627974375],[-121.14585198737095,53.360666365996174],[-121.14560570913456,53.360773083585585],[-121.14536143658447,53.36087875977364],[-121.14511722678887,53.36098388110023],[-121.14486427201396,53.361083020868065],[-121.14459926635753,53.361172127108],[-121.14433166477318,53.36125102035047],[-121.14404033676995,53.361273919636226],[-121.14373831425507,53.36127504535762],[-121.14343986101873,53.36129428306608],[-121.143145105726,53.36133051514007],[-121.14286272755727,53.36139027715819],[-121.14260147167626,53.361479532541836],[-121.14237117876247,53.36159475819293],[-121.14217793485638,53.36173226849862],[-121.14204064793748,53.36189172310189],[-121.14191054874213,53.36205428339623],[-121.14174955622175,53.36220658746487],[-121.14154743277399,53.362339250954975],[-121.14129135092776,53.36243264118203],[-121.14100001856637,53.362471820161176],[-121.14069838110498,53.36248586344084],[-121.14039971847137,53.362490487294316],[-121.14009813857508,53.36248769648866],[-121.13979998741131,53.36247156110834],[-121.13950105568561,53.362445852627424],[-121.13920400233113,53.36242022025678],[-121.13890636759758,53.36239962100588],[-121.13860672701628,53.36238005283991],[-121.1383091579636,53.36235888880266],[-121.13801217002293,53.362332699104286],[-121.13771848259671,53.36229428255404],[-121.13742764218252,53.362247564331064],[-121.13713686650013,53.36220029104613],[-121.13684790536995,53.36215364829791],[-121.13655913922983,53.362105323915934],[-121.13626862396333,53.36205581322496],[-121.13598471312145,53.361998145794075],[-121.13570339239674,53.36193440311439],[-121.13541501579392,53.36188273197291],[-121.13511777552387,53.36185876137894],[-121.13481820774128,53.36185491647397],[-121.1345174124121,53.361861683905545],[-121.13421836567532,53.361869645154655],[-121.13391782872783,53.36187417579461],[-121.13361722758314,53.36187926002319],[-121.13331669050244,53.36188378914427],[-121.1330150512793,53.361881534728],[-121.13271729405521,53.361862037622416],[-121.1324238734011,53.36182137271913],[-121.13213984006373,53.36176481374072],[-121.13186312286534,53.361693955757694],[-121.13161023273193,53.36159656634223],[-121.13140655505403,53.361465250776355],[-121.1312190654115,53.361324500985845],[-121.1310395420649,53.36118014266158],[-121.13083191774516,53.361050353025874],[-121.1305787109328,53.36095575100232],[-121.13029526865697,53.36089415377038],[-121.13000095029979,53.36086131525024],[-121.12970048317804,53.36084899372457],[-121.1293991103741,53.360844494871145],[-121.12909987438442,53.36083783701007],[-121.12879979596613,53.36082216031089],[-121.1285023722779,53.360799854092896],[-121.12820287734958,53.360779142072545],[-121.12790422401021,53.36076745633091],[-121.12760388894863,53.36077029010316],[-121.12730413608553,53.36078438541571],[-121.12700541988575,53.36080581715482],[-121.126708063376,53.360831795723215],[-121.12641219595017,53.360861203500974],[-121.12611619861575,53.36089172817196],[-121.1258201366187,53.360922806449906],[-121.12552685816364,53.36096242483228],[-121.12523804723732,53.361012332393884],[-121.12494917034513,53.361062802537454],[-121.12466042333199,53.36111214540952],[-121.1243715450635,53.36116261414788],[-121.12408441551378,53.361214267970034],[-121.12379883877315,53.361268796740084],[-121.12351623975589,53.36133018480047],[-121.12324341689204,53.361404892040824],[-121.122973831644,53.36148421445067],[-121.12270094254518,53.361559474783505],[-121.12242313090785,53.3616283606402],[-121.1221373553234,53.36168455737722],[-121.12184872933048,53.36173278472521],[-121.12155667135211,53.36177805856035],[-121.1212633186397,53.361818220755445],[-121.1209687998943,53.361852162618945],[-121.12067305094064,53.361880438483354],[-121.1203740642957,53.36190408880338],[-121.12007540094386,53.36192494878643],[-121.11977686800057,53.361944681456414],[-121.11947839909641,53.36196385903659],[-121.11917980023762,53.361984153489075],[-121.11888281966014,53.36200675961632],[-121.1185853842993,53.362033281144384],[-121.11828924335447,53.36206490394125],[-121.1179957558156,53.36210617569266],[-121.11771650947138,53.36217105720151],[-121.11745182876102,53.36225675004746],[-121.11719912508354,53.36235304133623],[-121.11695146978732,53.362454597477196],[-121.11671236029675,53.36256379923062],[-121.11648898354369,53.36268375404403],[-121.11629027575326,53.36281875531362],[-121.11612381223043,53.3629685666677],[-121.11598642267971,53.36312799109296],[-121.11587085487552,53.36329448453369],[-121.11577743190534,53.36346526642118],[-121.11571366815767,53.363640627855375],[-121.1156759356355,53.363819314681884],[-121.11566074023509,53.36399891934319],[-121.11567390948551,53.3641780105346],[-121.11570974522691,53.364356910886485],[-121.11575523112478,53.36453396213967],[-121.11580058762405,53.36471213097606],[-121.1158517085084,53.36488941385486],[-121.11593741396551,53.36506138112745],[-121.11608535975421,53.36521738339851],[-121.11626679255717,53.3653612779474],[-121.1164582649026,53.365499979172675],[-121.11665576315613,53.3656355499431],[-121.11684931129751,53.365772646842856],[-121.11704078743065,53.36591134710255],[-121.11725448222901,53.366037475992535],[-121.11748650761844,53.36615201448535],[-121.1176842063228,53.36628591154977],[-121.11784194384796,53.36643893575643],[-121.11798789364516,53.36659597597414],[-121.11812400020501,53.36675653721966],[-121.11824262105151,53.36692142837355],[-121.11835340530139,53.36708880914716],[-121.11847202694376,53.36725370898631],[-121.1186022434702,53.36741627330098],[-121.11872669669287,53.367579723523384],[-121.11884337863648,53.3677451001059],[-121.11894840308987,53.36791336632617],[-121.11904371352847,53.36808403611489],[-121.11911978795975,53.368257850160475],[-121.11916140622377,53.368435863032126],[-121.11917264812814,53.368615439546886],[-121.11916692150974,53.36879487578322],[-121.11914798267553,53.36897432609502],[-121.1191140164837,53.36915316790008],[-121.11906515452816,53.369330265686756],[-121.11899763798115,53.36950548295783],[-121.11891716791091,53.36967847900795],[-121.11882374417058,53.3698492538115],[-121.11871373868436,53.37001654429277],[-121.11858358975752,53.37017851513819],[-121.11843336155236,53.370334611945324],[-121.11827594377375,53.370487601273865],[-121.11812396576714,53.37064249391832],[-121.11798830735589,53.37080311486461],[-121.11787460371696,53.37096969576191],[-121.11779781859428,53.371143399664135],[-121.11777887183321,53.3713228584924],[-121.11782618796803,53.37150053988491],[-121.11794099885772,53.37166583983569],[-121.11812842476975,53.37180717311541],[-121.11837551473646,53.37190604002519],[-121.11865856015264,53.37197157250916],[-121.11892897347691,53.3720483806623],[-121.1191798235446,53.372147400253006],[-121.11941616451608,53.372257609590676],[-121.11963793005806,53.372379580979484],[-121.119819599878,53.372521797650684],[-121.11993429167889,53.372688213211376],[-121.12004328474843,53.37285495149408],[-121.1201930872373,53.37301157956169],[-121.12030609740857,53.37317624560866],[-121.1203552393841,53.37335456627254],[-121.1203892897117,53.37353282397166],[-121.12044620572831,53.37370921796793],[-121.12052611739752,53.37388263061259],[-121.12062151205951,53.37405274430069],[-121.12073621119787,53.37421915896378],[-121.12084125935708,53.3743874229795],[-121.12090387932126,53.37456348485815],[-121.12093793191089,53.374741751235845],[-121.12096622055974,53.37492089481583],[-121.12099262987338,53.37509997016557],[-121.121019040449,53.37527903655281],[-121.12104739412244,53.3754576257289],[-121.12106998267402,53.375637101056014],[-121.12109069284753,53.375816499215745],[-121.12111710325203,53.375995574459424],[-121.12114539350517,53.37617471788711],[-121.12118864740128,53.37635504173719],[-121.12134799037555,53.376494658095],[-121.1216278960225,53.37657128238161],[-121.12187903868822,53.37666806083084],[-121.12203708964547,53.37681884346465],[-121.12211306255757,53.37699377246931],[-121.1221395433917,53.37717228410456],[-121.12214510009672,53.377352182516255],[-121.12216393704433,53.37753150320836],[-121.122192231745,53.37771065519373],[-121.12223005070034,53.377889066246304],[-121.12225270990301,53.37806798679828],[-121.12221693622521,53.37824618828651],[-121.12210867131684,53.378414675964834],[-121.12192623157019,53.37855541352665],[-121.12168017710805,53.3786587277924],[-121.12143399176388,53.378763159158694],[-121.12128069983663,53.378912953272454],[-121.12116336061256,53.379078255808835],[-121.12095059714966,53.37920371463888],[-121.12069067396699,53.379296351106774],[-121.1204194143902,53.3793728003156],[-121.12013649491105,53.37943585175119],[-121.11984489553531,53.37947609620409],[-121.11954390760013,53.37948338004952],[-121.1192449942843,53.37947279028626],[-121.11894459265639,53.37945876081578],[-121.11864529041343,53.37945152238039],[-121.11834339639121,53.37945034839077],[-121.11804305721483,53.37945204038627],[-121.11774316817977,53.37946611147628],[-121.11744981840003,53.379505146308816],[-121.11717045584267,53.37957002598294],[-121.11690236097144,53.3796516552954],[-121.11664430485696,53.37974436011811],[-121.1164175341522,53.379860243252594],[-121.11620805625454,53.379989755156],[-121.11598283670223,53.38010851316303],[-121.11576992277126,53.38023508027509],[-121.11559082197802,53.38037931528322],[-121.11542422215082,53.38052967870339],[-121.11525956535237,53.38067955584468],[-121.11510021858918,53.38083246295905],[-121.11496276688138,53.38099188480791],[-121.11485828789411,53.3811599658184],[-121.11477032877704,53.38133208582307],[-121.11466759712721,53.38150136149088],[-121.11455935909723,53.38166927875938],[-121.11449938478182,53.38184423814858],[-121.11447854031387,53.3820236182624],[-121.11441292862882,53.38219834582341],[-121.11431576556232,53.38236840720546],[-121.11424633052931,53.38254353446927],[-121.11419555265935,53.382720560783056],[-121.11414477540151,53.3828975781192],[-121.11409211779613,53.383074527101705],[-121.11401898731329,53.38324894532609],[-121.1139126211012,53.3834169391223],[-121.1138173321062,53.38358707725681],[-121.11377400239408,53.38376496667927],[-121.11376442740378,53.383944810074624],[-121.11378517600498,53.384123645506584],[-121.1138305452696,53.38430181338792],[-121.11388174606941,53.384478541084455],[-121.11392329379477,53.38465710870921],[-121.11394592134245,53.38483603025211],[-121.11395902538969,53.38501567414019],[-121.11396266920298,53.38519549498619],[-121.11395316015958,53.38537477499987],[-121.11393224718901,53.38555470904101],[-121.11387777183575,53.38573101716863],[-121.11384597401455,53.38590713479102],[-121.11397260223325,53.38606843056734],[-121.11416396686903,53.386208806015595],[-121.11435358363866,53.38634798629068],[-121.11454514511772,53.38648668917347],[-121.11473469997992,53.38662642315367],[-121.11491239686774,53.38677072704099],[-121.11505639729073,53.38692880965472],[-121.11517110950946,53.38709522863809],[-121.11525873645833,53.38726727177497],[-121.11530236613126,53.387444243981136],[-121.11531547677771,53.38762388749234],[-121.1153494518566,53.38780270866622],[-121.11540059887703,53.38797998973998],[-121.11545181073998,53.38815671644543],[-121.11550678230942,53.38833358864296],[-121.11555987417499,53.38851039250651],[-121.115616725795,53.38868734185684],[-121.11567558585554,53.38886325973535],[-121.11573632659758,53.389039245860126],[-121.11580089057367,53.3892148320685],[-121.11586739866316,53.38938994112534],[-121.1159414894506,53.389564795770696],[-121.1160195345164,53.38973812393441],[-121.11608986816762,53.389912824004334],[-121.11614108527493,53.39008955024765],[-121.11616936382545,53.390268693629835],[-121.11619388314888,53.39044769148256],[-121.11622786423749,53.39062651216094],[-121.11626372484534,53.39080541003712],[-121.11626368597061,53.39098451259014],[-121.11620921335512,53.39116082132051],[-121.11610277044656,53.39132937970048],[-121.11597066632767,53.39149126878085],[-121.11580953182194,53.39164298121312],[-121.11559500495781,53.3917666715994],[-121.11534024062537,53.39186288031905],[-121.11508210622083,53.39195558120448],[-121.11482397067945,53.39204828152604],[-121.11457950385021,53.39215333854852],[-121.11435946279751,53.392275677329366],[-121.11415536034077,53.39240708852634],[-121.11396000251102,53.39254448259674],[-121.11377734437099,53.392686324297635],[-121.11359630446378,53.392830478170204],[-121.11341889202977,53.392975903891084],[-121.1132451725784,53.39312203820683],[-121.11306957154682,53.39326810392623],[-121.11289759907142,53.393415432584845],[-121.11273100249143,53.39356523695518],[-121.1125752920195,53.39371884861776],[-121.11242495753189,53.39387493604947],[-121.11226924479769,53.39402854728878],[-121.1121099011098,53.39418089508106],[-121.11198146698219,53.39434348841499],[-121.1119401278048,53.39452033593686],[-121.11197214920769,53.394699643454615],[-121.11203865107592,53.394874745244934],[-121.11213010470709,53.39504639028852],[-121.11223322655378,53.39521513723892],[-121.11233440429586,53.3953843700696],[-121.11243370341595,53.39555352551729],[-121.11254654932564,53.39571986905201],[-121.11245659599433,53.395713924318976],[-121.11242945335356,53.39588237210887],[-121.11223945218637,53.396022230165265],[-121.11205495920501,53.396163428430825],[-121.11189197770553,53.396314503601154],[-121.11174895485533,53.39647257107151],[-121.1116259552831,53.39663707658555],[-121.11151040823067,53.396802445477164],[-121.1113929797337,53.39696774588465],[-121.11128287384878,53.3971350272885],[-121.11114885346272,53.397296833261905],[-121.11095009516526,53.39743070574083],[-121.11065855790123,53.397469246472866],[-121.1103568540825,53.39748154065611],[-121.11005522108817,53.39747699287407],[-121.10975585780261,53.39746916887824],[-121.10945474516353,53.39746014920815],[-121.10916096776135,53.3974205541629],[-121.10887912526084,53.397359547598576],[-121.10859961885807,53.39729470167154],[-121.10831583295055,53.39723417969182],[-121.10803172316119,53.39717644653842],[-121.10775708355453,53.397102258288406],[-121.1074931433886,53.397017280313925],[-121.10722311096826,53.39693597674657],[-121.10694367446627,53.396870572594494],[-121.10666443349582,53.39680349587181],[-121.10639829312996,53.39672122758498],[-121.1061473266935,53.39662218223118],[-121.10590258495597,53.39651834382709],[-121.10564967688028,53.39641977435193],[-121.10541336645278,53.39630842137799],[-121.10517893776763,53.396197136386064],[-121.10495507799878,53.396076188589305],[-121.10474327821841,53.39594899033003],[-121.10458554334208,53.39579538769356],[-121.10441380696231,53.395648511753606],[-121.1042480360125,53.39549906935582],[-121.10409808264477,53.395343540516095],[-121.10388213975645,53.39521953861016],[-121.10362074960867,53.395129041459086],[-121.10335261513467,53.39504781540179],[-121.10309479117852,53.39495914385023],[-121.10289337567075,53.394823951960696],[-121.10265059742692,53.39471962095187],[-121.10239965174125,53.39462056760224],[-121.1021157625392,53.39456114835086],[-121.10182454390369,53.39451601572795],[-121.10153319459914,53.394472008916644],[-121.10126052910336,53.39439731977621],[-121.10096275255134,53.39437606264979],[-121.10066384921774,53.394396873564375],[-121.10036314214113,53.39440075609411],[-121.10006262992333,53.3944029659606],[-121.09977134891327,53.3943583915733],[-121.0994712374398,53.39434096924138],[-121.09917391880896,53.39431579163211],[-121.09887438402582,53.39430962110586],[-121.09857486027514,53.39428716292673],[-121.09828559132966,53.39424154482244],[-121.09802817401564,53.39414950952091],[-121.09781659986128,53.39402062691991],[-121.09760891602431,53.39389078138915],[-121.09738081017547,53.39377413450272],[-121.0971505665803,53.39365963586743],[-121.09694094155516,53.3935302748845],[-121.09670655073882,53.393418973060605],[-121.09648072039833,53.39329904921557],[-121.09625054652189,53.39318399449367],[-121.09602860876566,53.39306309833488],[-121.09580680163968,53.392941093116924],[-121.09559497955115,53.392814441650096],[-121.09540144203648,53.392676748724675],[-121.09520998015536,53.392537461133315],[-121.09499621689913,53.39241129428062],[-121.09478252065777,53.392284563777075],[-121.09458691282099,53.392148472767616],[-121.09439733528141,53.392009261398705],[-121.09418364288356,53.39188252979542],[-121.09397792577471,53.39175219210831],[-121.09377836836705,53.3916176254223],[-121.09361854960362,53.39146616551239],[-121.09339883329658,53.39134255245765],[-121.09321496668538,53.391203008644005],[-121.09298507412946,53.39108571233757],[-121.0927630252947,53.39096593648535],[-121.09253086466596,53.39085191442441],[-121.09227795617639,53.39075387953299],[-121.09201836738886,53.39066455189035],[-121.09176954633632,53.39056387271094],[-121.09150139907491,53.390483174100105],[-121.09122209456692,53.390417178526825],[-121.09094558478083,53.39034342795362],[-121.09065349256215,53.39030609987702],[-121.09035509762957,53.390290404048365],[-121.09009798289539,53.390196116274666],[-121.08988398575262,53.39007217524747],[-121.08960540507734,53.390000024740665],[-121.08930350205505,53.38999821383005],[-121.0890250052716,53.39005464976709],[-121.08875744301811,53.39013061844645],[-121.08846117549881,53.39012904731148],[-121.08825386671134,53.38999638681532],[-121.08805829060991,53.389860284927735],[-121.08786686583167,53.38972098533667],[-121.087615918902,53.38962246384215],[-121.08736698392404,53.38952289298105],[-121.08714120108647,53.38940295119312],[-121.08689025879549,53.38930441921304],[-121.0866330920045,53.389210687166106],[-121.08636282283129,53.3891321343779],[-121.08609897582356,53.38904710864881],[-121.08584174651783,53.38895393813605],[-121.08557816299441,53.38886667610487],[-121.08528582549522,53.38883156102923],[-121.0849843220124,53.388826395394844],[-121.08468535213885,53.38881570993318],[-121.08439630178624,53.38886551764421],[-121.08412465329806,53.388944118892994],[-121.08384025786667,53.389002544673254],[-121.08354991486664,53.389047239064126],[-121.08325104076675,53.38906800631102],[-121.08295063160983,53.38906960973246],[-121.08265290199346,53.3890483067522],[-121.08235283546351,53.38903084122075],[-121.08205557952152,53.38905390941623],[-121.08177771667187,53.3891210185909],[-121.08153292287473,53.38922824301503],[-121.08133268659196,53.38935808177989],[-121.08122980197714,53.389527318964056],[-121.08116760216458,53.38970386390992],[-121.08102474799556,53.389859659831075],[-121.08080267745282,53.38998241323788],[-121.08057743539872,53.390099986084195],[-121.08031916936797,53.390193174906436],[-121.08005773307427,53.39028117407122],[-121.07981836988601,53.39039030016657],[-121.07956191465493,53.39048411944205],[-121.07930034414218,53.39057323449333],[-121.07904718754939,53.39067111526108],[-121.0787977221542,53.39076971436556],[-121.07852132939682,53.39084024638113],[-121.07828532480866,53.39095287768444],[-121.07806518459302,53.39107514943142],[-121.07788254278628,53.391215818576946],[-121.0777520403858,53.39137886061744],[-121.07763630875941,53.391544760283786],[-121.07748961091372,53.39170095940787],[-121.07736837063368,53.39186550772342],[-121.07717833711148,53.39200474682768],[-121.07693229114959,53.392106287065765],[-121.07664139474447,53.392155443712404],[-121.07634192613229,53.392164931208605],[-121.07604208323588,53.39216149265156],[-121.07574208968218,53.39217545780946],[-121.07544157322884,53.39219388349846],[-121.07514680510258,53.39222771140058],[-121.0748548122711,53.392270080467284],[-121.07456572657343,53.39231986422215],[-121.07427508891432,53.39236677102905],[-121.07398322521749,53.39240802039955],[-121.07368825846756,53.39244351654898],[-121.07339077667125,53.39246824387007],[-121.07309097707692,53.39248052154281],[-121.07279098027122,53.392494479261316],[-121.07249336657145,53.39252032189295],[-121.07219671456345,53.39255406457079],[-121.07190465150772,53.3925969807007],[-121.07162028048907,53.39265481393342],[-121.07134392937978,53.39272476597246],[-121.07108595497057,53.39281513629192],[-121.07089926168952,53.392957873834995],[-121.07078537796797,53.393123844652095],[-121.07068069251117,53.393291885856236],[-121.07057587619705,53.39346103556514],[-121.0704803893411,53.393631138141735],[-121.07040893912367,53.39380560658874],[-121.07033560902637,53.39397999703034],[-121.07028275342549,53.39415692564476],[-121.07022244623293,53.394332979177086],[-121.07014911444445,53.39450736945935],[-121.07007954068533,53.39468191558551],[-121.06998955594221,53.39485336907309],[-121.06985914279,53.395015284623256],[-121.06966725694768,53.39515387032397],[-121.06946999296972,53.39528999566486],[-121.06925161878851,53.39541288312069],[-121.0690208084738,53.395529082345384],[-121.06878851089898,53.395641850500695],[-121.06854720865536,53.395750875674686],[-121.06827756169838,53.39582784661886],[-121.06800752136661,53.39590816064924],[-121.06774595774561,53.395996695772624],[-121.06746621299116,53.39606313008016],[-121.06717263489664,53.39610260389621],[-121.06687462086985,53.39611550713239],[-121.06657422587128,53.396116514915214],[-121.06627238773889,53.396129814931754],[-121.06597367572323,53.39613257105806],[-121.06567389416989,53.39611226520956],[-121.06537572984568,53.39609427171957],[-121.0650792055543,53.39606231266023],[-121.06477850630812,53.396049827360315],[-121.06448021156895,53.39603294916997],[-121.06418257330819,53.39601048251992],[-121.06389879487155,53.39595040893977],[-121.0636286561265,53.39587068724978],[-121.06336520662197,53.395782258784074],[-121.06307972429968,53.395736711286965],[-121.06277718999317,53.395739866509494],[-121.06249156231198,53.39579201207465],[-121.06221012769414,53.39585668412538],[-121.06192106859568,53.39590587384567],[-121.06163510991412,53.39596081567185],[-121.06134294732156,53.39600426011743],[-121.06104685229256,53.39603295049562],[-121.06074778722014,53.396054769766614],[-121.06044885213403,53.396075479688065],[-121.0601481945583,53.396078706333014],[-121.05985035124229,53.3961061891474],[-121.05955028404586,53.39610438983321],[-121.05925067722725,53.39609867391314],[-121.05894982283905,53.39610356936692],[-121.05864767977216,53.39610336148496],[-121.05835062266907,53.396124144269514],[-121.05805007042305,53.39614252601781],[-121.05775043679655,53.39615309320056],[-121.05744958184506,53.39615798486291],[-121.05715014563606,53.39616686976218],[-121.05684998583838,53.39618190481687],[-121.0565497606266,53.39619749341146],[-121.05625025874299,53.396206930344],[-121.05594999430812,53.396206793785566],[-121.05564804720204,53.396204906460945],[-121.0553473231191,53.396208675277606],[-121.05504801759693,53.39621643735685],[-121.05474683260547,53.39622412048966],[-121.05444597574555,53.396229013501625],[-121.05414630350245,53.39622383903176],[-121.0538488661686,53.39619967472179],[-121.05354876169011,53.39618212769929],[-121.05324869422297,53.39618031250196],[-121.0529472460684,53.39619022614272],[-121.05264972562405,53.396214901586106],[-121.05237991612356,53.39629294509232],[-121.0521033112871,53.39636453310322],[-121.05181215963971,53.396415300793926],[-121.05151854733275,53.396390723910095],[-121.05123151124188,53.39642257044468],[-121.05093913678301,53.39646767011001],[-121.05066124069442,53.39653415210642],[-121.05040112228323,53.39662607099198],[-121.05012233262867,53.39668408754129],[-121.04982691986545,53.396722886009904],[-121.04953596097936,53.39677196736571],[-121.0492433116444,53.396787296341486],[-121.0489578015809,53.396725991364356],[-121.04866395570593,53.39668735562284],[-121.04836556056671,53.396655276654265],[-121.04807020735848,53.39666149702087],[-121.04781875455912,53.3967599526079],[-121.04762147878252,53.39689547840156],[-121.04743669892709,53.397037139641796],[-121.04724492708218,53.39717401724427],[-121.04706914658493,53.39731942202489],[-121.04682804190824,53.39742616803724],[-121.0465647430262,53.3975128974823],[-121.04630144305916,53.39759962634142],[-121.04601545249133,53.39765453060299],[-121.0457247462081,53.397701367579366],[-121.04543855709748,53.39775794226403],[-121.04515869903932,53.39782488732415],[-121.04487587185855,53.39788496990443],[-121.04460583905431,53.39796467647899],[-121.04436478979814,53.39807086317974],[-121.04411843104214,53.39817401603465],[-121.04388631575918,53.398284500410085],[-121.04375767101426,53.39844646545304],[-121.04367851871253,53.39862115825843],[-121.04363514073567,53.39879678572714],[-121.04368975797321,53.39897425332044],[-121.04377517154822,53.39914683286848],[-121.04386642247768,53.39931796669017],[-121.04396539030799,53.39948773313633],[-121.04406630379842,53.39965702355966],[-121.04415950188623,53.39982768118786],[-121.04424686504893,53.3999997754583],[-121.04433051053442,53.400251448521004],[-121.04438513259139,53.400428915670986],[-121.04444935099228,53.40060509381504],[-121.04452718745323,53.40077791355181],[-121.04462434719456,53.40094704668691],[-121.04473304862927,53.40111441480349],[-121.0448532254655,53.40128058109964],[-121.04497937193615,53.40144418403906],[-121.04511524725021,53.40160538029484],[-121.04525722303306,53.4017629045691],[-121.04541684041943,53.401914991849864],[-121.04559034138774,53.402061476450825],[-121.04576974590395,53.402205960757236],[-121.04594901990019,53.40235156230227],[-121.04611655680895,53.40250060043503],[-121.04627805972834,53.40265276483705],[-121.0464337942173,53.40280580261365],[-121.046591343088,53.402959481727244],[-121.04675096983316,53.40311156713196],[-121.04691650121958,53.40326164328417],[-121.0470859901781,53.40341020401518],[-121.0472594367323,53.40355724930852],[-121.04743295088362,53.40370373110877],[-121.04760834592886,53.403850290952285],[-121.04778186250265,53.4039967722235],[-121.04795336888024,53.40414429245092],[-121.04812085364624,53.4042938908652],[-121.04827653453358,53.404447489340924],[-121.04843604237287,53.40460068095795],[-121.04860949855014,53.40474772420054],[-121.04879871860845,53.40488924264673],[-121.04898599488487,53.4050312367885],[-121.04915569526136,53.40517812263615],[-121.04927468082438,53.40533860931858],[-121.04932524109803,53.40551871548015],[-121.04937412006603,53.405697062574944],[-121.04942118603026,53.405874768126345],[-121.04949127016393,53.40604950611084],[-121.04957665658142,53.406222635199484],[-121.04965445812718,53.40639601434783],[-121.0496940721162,53.406572852345796],[-121.04968032785308,53.406753640564986],[-121.04971034512329,53.40693176791055],[-121.04977842071727,53.40710754488503],[-121.0498370323564,53.40728348474149],[-121.04985745444031,53.40746289246036],[-121.04985700021805,53.40764311993596],[-121.0498433879708,53.407822790560836],[-121.04981292203252,53.40800120243822],[-121.0497636570005,53.408178831573295],[-121.04972567090081,53.40835693030937],[-121.04972145630565,53.408537001161896],[-121.04970220346827,53.40871643687537],[-121.04966797645386,53.408894692093114],[-121.04964301709092,53.409074456175226],[-121.04962000275727,53.40925374422146],[-121.04957047208913,53.40943360820831],[-121.04951282917659,53.40961818342067],[-121.04940303629874,53.40978038214989],[-121.04919141873093,53.40989285482339],[-121.04890479248049,53.40996851360281],[-121.04861760228408,53.410032918222264],[-121.04832364563427,53.410074580326174],[-121.04803305317398,53.41011975085342],[-121.0477422630239,53.41016659247557],[-121.04745166930417,53.410211761582275],[-121.04715784199512,53.41025230328868],[-121.04686292466126,53.41028606085773],[-121.04656497106254,53.41031351918672],[-121.04626619230206,53.410331949382936],[-121.0459658622201,53.410347511180966],[-121.04566836937316,53.41037105149475],[-121.04537305463558,53.410408157915164],[-121.04508090570154,53.41045045357568],[-121.04478888904269,53.41049162206528],[-121.04449660712615,53.41053503380393],[-121.04420729467948,53.41058529767905],[-121.04392438037672,53.41064537763076],[-121.04364456604073,53.41071120120506],[-121.04336300268845,53.41077582823546],[-121.0430813066169,53.410841572109284],[-121.04281468353278,53.41092366590239],[-121.0425666294705,53.411024501506255],[-121.04232705109817,53.411133551107],[-121.04209258397452,53.41124730543867],[-121.04186685619636,53.411367038833696],[-121.04163265031758,53.411478557228264],[-121.0413724852304,53.411569901442085],[-121.04110021413018,53.411651756154825],[-121.04085422904113,53.41175099477288],[-121.04064818649398,53.41187996520705],[-121.04046681358402,53.41202400645652],[-121.04028524100526,53.412169728150886],[-121.04009680771489,53.41230953938505],[-121.03990830667269,53.41244991353516],[-121.03972524610711,53.41259220339845],[-121.03956194243051,53.41274316933853],[-121.03940401283398,53.41289661430219],[-121.03923714407797,53.41304575111518],[-121.03906295226908,53.4131928931925],[-121.03887988561252,53.413335181705904],[-121.03868599957624,53.41347308351117],[-121.038486867909,53.413607397128416],[-121.0382841067401,53.41374043599367],[-121.03808315893484,53.41387410724352],[-121.03788032867503,53.414007708626386],[-121.03767588207259,53.41413898724577],[-121.03746074693505,53.4142647704162],[-121.03723518729257,53.414382823074995],[-121.03700425106868,53.41449839593539],[-121.03677855685933,53.41461756521872],[-121.03654755154456,53.41473370040169],[-121.03630625489606,53.4148409784937],[-121.0360526537171,53.414940447386414],[-121.03577279850543,53.41500625233017],[-121.03544627215396,53.41503529466805],[-121.03512584759147,53.41506066483868],[-121.03487505170978,53.415120376988526],[-121.03476680876902,53.4152528650748],[-121.034781890548,53.41544497338802],[-121.03481699515427,53.415643523825786],[-121.03483729067786,53.41582349661873],[-121.0348577195208,53.41600234295345],[-121.03485538731526,53.41618192790506],[-121.03484734785229,53.41636184053924],[-121.03484877604129,53.41654158247436],[-121.03485967200358,53.41672115371003],[-121.03485733976655,53.41690073860009],[-121.03482855186871,53.41708034187145],[-121.03483575287974,53.41725920176879],[-121.03487317035673,53.41743820026439],[-121.0349106536701,53.417616644453474],[-121.03492349597857,53.417795739818224],[-121.03490981667451,53.41797540786025],[-121.03490553770476,53.4181554773568],[-121.0349221407752,53.41833472968815],[-121.03492732998605,53.41851462846514],[-121.03489860785929,53.4186936683963],[-121.03487935267646,53.418872546559854],[-121.03491113074884,53.41905130938582],[-121.03494096216473,53.419230556901226],[-121.03495360747745,53.4194113239015],[-121.03494375402894,53.419590594541134],[-121.0348776213859,53.419766392481904],[-121.03475062455027,53.419929542128436],[-121.03455125106625,53.42006552946732],[-121.03429982545578,53.42016227468008],[-121.03402115253681,53.420233741342244],[-121.0337475913294,53.420309912906696],[-121.03347571079217,53.42038784308198],[-121.03321916816115,53.42047988043117],[-121.03298287607014,53.42059242029222],[-121.03276607780761,53.420715881069526],[-121.03256144942497,53.42084827692403],[-121.03235507255978,53.42097946743844],[-121.03213114528019,53.421099260370234],[-121.03190015710892,53.42121483190392],[-121.0316762939051,53.42133406075072],[-121.03145054793224,53.42145321954941],[-121.03121962257822,53.42156822652771],[-121.0309833856591,53.42168019914817],[-121.03074384879864,53.421788107399784],[-121.03049718553726,53.42189234838767],[-121.03025246710428,53.42199611316364],[-121.03000929786934,53.422102745271864],[-121.0297748685499,53.4222153572659],[-121.02955623868452,53.422338170303846],[-121.0293060061458,53.42244057985178],[-121.02903760111238,53.42252088304681],[-121.02874960478005,53.42257510336352],[-121.02844849085521,53.42258048489017],[-121.0281492288843,53.42257022081866],[-121.02788477970797,53.422649006874074],[-121.02762896645153,53.422750613819375],[-121.02736560180622,53.42283618226243],[-121.02710714931887,53.42292813665589],[-121.02686927795905,53.42303778744199],[-121.02664162871837,53.42315685839775],[-121.02642090526476,53.423281267689305],[-121.02627430470393,53.423434039883034],[-121.02618193472603,53.42360761419293],[-121.0260787434505,53.42377680981614],[-121.0259959736864,53.42394909648199],[-121.02594101340404,53.424125924187635],[-121.02587678327463,53.42430123218603],[-121.02579381258748,53.424475199365745],[-121.02568705554295,53.42464255658325],[-121.02554549314797,53.424800596885724],[-121.02539109596609,53.42495529717544],[-121.0252403275232,53.425111263114744],[-121.02508417985548,53.425264766841565],[-121.0249045108902,53.42540941640231],[-121.02471596611763,53.425549211356405],[-121.02452735442452,53.425689560274165],[-121.02434774740006,53.425833654694756],[-121.02418433713412,53.42598459859445],[-121.02401010476977,53.426131163475304],[-121.02381973988304,53.42627031507437],[-121.02362755876773,53.42640883340538],[-121.02343174856124,53.42654606762245],[-121.02323593601764,53.42668331044859],[-121.02304926171621,53.42682317243068],[-121.02289329888967,53.426974992470875],[-121.02279364934978,53.42714601411918],[-121.0227088453055,53.42731934594846],[-121.02260945910095,53.427488132455366],[-121.02246424661597,53.427644894003585],[-121.02230257080402,53.42779703137407],[-121.02215158149747,53.42795467388262],[-121.02196664514065,53.42809573920993],[-121.02172813448466,53.428210412584555],[-121.02144185288755,53.42823380125301],[-121.02113480439697,53.42820916199174],[-121.02083702844445,53.4281860241164],[-121.02053931854331,53.428162331228044],[-121.0202396614693,53.42813912206624],[-121.01994221728336,53.428113192732006],[-121.01964523785328,53.42808334701915],[-121.01935040357708,53.42805135330536],[-121.01905382264353,53.428018153690225],[-121.01875932119029,53.427983360354474],[-121.01846287270433,53.42794905073191],[-121.01816576291299,53.42792031880364],[-121.01786650660634,53.42789375124719],[-121.01757890920615,53.427848570841746],[-121.01732823157207,53.42774710486117],[-121.01709237693441,53.42763222591139],[-121.01681175027049,53.42757610527542],[-121.0165126298807,53.427548416840914],[-121.01621410720753,53.42751569455908],[-121.01591974424959,53.427479776723516],[-121.01562204211754,53.42745607154021],[-121.0153208679137,53.427445696455905],[-121.015019893367,53.4274336399336],[-121.01471967153103,53.42743116444758],[-121.0144208230643,53.42744896033282],[-121.01412088972154,53.427459971813356],[-121.01381832214794,53.42746133083755],[-121.01354029642012,53.42752659878208],[-121.01324536372574,53.427559155350636],[-121.01294739857076,53.427585411875185],[-121.01265120256714,53.42758085394432],[-121.01236044827381,53.42753047908267],[-121.01206374380067,53.42749837952742],[-121.0117664419261,53.42747131230655],[-121.01146880803734,53.42744704248137],[-121.01117044487489,53.427428913510454],[-121.0108693388763,53.427417963969894],[-121.01057777075691,53.42726310816041],[-121.01041032807815,53.427113458600765],[-121.0102429524484,53.42696325453202],[-121.0100949166214,53.42680936039089],[-121.00998998096478,53.426642683726996],[-121.00976824754626,53.426520511310414],[-121.0095004269547,53.42643627702747],[-121.00921109962616,53.42638988895917],[-121.0089273945816,53.42632800457],[-121.00866796213471,53.42623682501902],[-121.00840853187512,53.42614563595936],[-121.00815104922867,53.42605397099694],[-121.00788967366765,53.42596326507322],[-121.00763004698598,53.425873754972535],[-121.0073749127342,53.425778260603714],[-121.00711790011763,53.42568267780006],[-121.00696605211107,53.42552918499003],[-121.00690564789737,53.425353700910215],[-121.0068835197539,53.42517420844112],[-121.00689920165564,53.424994623195],[-121.00689413150981,53.42481472376539],[-121.00686817672307,53.42463562761308],[-121.00679817172379,53.424461429326335],[-121.006670158316,53.42429826306943],[-121.0065538265326,53.42413222693354],[-121.00649342604441,53.42395674252833],[-121.00640026034857,53.42378662061155],[-121.00631683057648,53.42361409526651],[-121.00615720527023,53.42346252037247],[-121.00600946140291,53.42330639491221],[-121.00588917523991,53.42314187184988],[-121.00576895699113,53.4229767854518],[-121.00564873862281,53.42281170785901],[-121.00547717162915,53.422665245504454],[-121.00528372492131,53.42252797135044],[-121.00506806686718,53.422402674479656],[-121.00483187695666,53.42229112335756],[-121.00459152977534,53.42218275723955],[-121.00436775521462,53.42206217619231],[-121.00418236824017,53.42192074631403],[-121.00406800024885,53.42175422335338],[-121.00399230451731,53.42158034046194],[-121.00392621021582,53.421405180760964],[-121.00382534016477,53.42123641236677],[-121.00367767976745,53.42107972064865],[-121.00351685790433,53.42092247572519],[-121.00344233383362,53.42077054539576],[-121.00368722486576,53.42064999471155],[-121.00387050828733,53.42050720654418],[-121.00398473006221,53.4203413019959],[-121.00402856160957,53.42016345588749],[-121.00407615343771,53.419985767733664],[-121.00413301353602,53.41980959196896],[-121.00416186734856,53.41963055956832],[-121.0041643307619,53.419450975529685],[-121.00415739268462,53.41927099651813],[-121.0041542152384,53.41909117547407],[-121.00415291809716,53.418911433406315],[-121.00414403396286,53.41873192961803],[-121.00412192108399,53.4185524360712],[-121.00407691253365,53.41837479272184],[-121.00402425152915,53.41819794189],[-121.00395816240821,53.418022781924684],[-121.0039112759495,53.41784505053346],[-121.00390615245136,53.41766571356693],[-121.00391808489896,53.417485961141175],[-121.00393753700399,53.417306533619154],[-121.00396639099505,53.41712749211268],[-121.00400833908199,53.41694956674479],[-121.00404464626817,53.41677140436684],[-121.00406221732912,53.41659189776986],[-121.00407226863945,53.41641206624342],[-121.00408419895855,53.416232322633185],[-121.00410741113883,53.416053044022135],[-121.00415493100097,53.415875918691206],[-121.00422488023723,53.41570084974192],[-121.00430033530945,53.41552714411074],[-121.00435537530487,53.4153503256733],[-121.00437294444671,53.41517081890888],[-121.00435271256586,53.41499140408831],[-121.00431536119004,53.414812950076104],[-121.00427988915477,53.41463458396648],[-121.00425771193284,53.41445564435723],[-121.00422989362374,53.41427647669655],[-121.00418489025462,53.414098824086054],[-121.00412652700246,53.413922299167474],[-121.00407192433366,53.413745932191745],[-121.00402504109688,53.413568209422344],[-121.00398003935014,53.41339055667418],[-121.00392933093269,53.413213230110976],[-121.00387855595976,53.41303646671427],[-121.00382402246309,53.412859536347206],[-121.00373297095528,53.41268781871218],[-121.00363024258519,53.412518970452666],[-121.00351972822286,53.41235204995613],[-121.00340337597278,53.412186564062274],[-121.00329293037244,53.412019080125674],[-121.00319020540067,53.411850231432666],[-121.00310103861591,53.41167859223878],[-121.00301771230545,53.41150550932458],[-121.00294391928685,53.41133170392687],[-121.00289133778782,53.411154297736104],[-121.00292012501932,53.410975819160136],[-121.00292829995603,53.410795908236345],[-121.00286028118799,53.410621222294864],[-121.0027865563003,53.41044686246273],[-121.0027186056788,53.41027161320804],[-121.00266595945988,53.41009477003099],[-121.00264191162022,53.40991575071712],[-121.00266512539743,53.409736480785575],[-121.00268646018313,53.40955712287941],[-121.00264341415603,53.409378994036906],[-121.00255425483769,53.40920735423069],[-121.00244570026936,53.40903994828679],[-121.0023293614004,53.4088744610814],[-121.00222282133643,53.4087060164615],[-121.00213171941344,53.408534851524685],[-121.00203679268981,53.40836408271682],[-121.00192045729726,53.40819859505839],[-121.00179640372555,53.40803447182628],[-121.0016820169733,53.40786849973464],[-121.00157930753284,53.40769965825645],[-121.001462975776,53.40753417009831],[-121.00130557460761,53.40738043164161],[-121.00115790626265,53.4072242900267],[-121.00101627605699,53.407065041882525],[-121.00091545204693,53.40689626986847],[-121.00089335915722,53.40671677470689],[-121.00092221777498,53.40653774197108],[-121.00096228846562,53.40635973773183],[-121.00099484000468,53.406181417296125],[-121.0010443085253,53.40600380820847],[-121.00111606697227,53.40582938250267],[-121.00119896995417,53.40565654843963],[-121.00129113767053,53.40548522695924],[-121.00140351618174,53.40531868145382],[-121.00151408008381,53.40515150253107],[-121.00158952743091,53.40497779774018],[-121.00165570993987,53.404802571321156],[-121.00176076550989,53.40463403756446],[-121.00191692063125,53.40448057184378],[-121.00207851462844,53.404329014715685],[-121.0022437337759,53.404178732871394],[-121.00241076542821,53.40402908407169],[-121.00259754011324,53.40388813544205],[-121.00283026033374,53.40377381626482],[-121.00308683454378,53.403681280430874],[-121.00336040904563,53.40360462441571],[-121.0036237691102,53.403518545056485],[-121.00383189660738,53.403388599703135],[-121.00406803717316,53.4032772342228],[-121.00432467259569,53.40318413249371],[-121.0045881598464,53.40309694245153],[-121.00485655459639,53.4030161303972],[-121.00513651123124,53.40294928025117],[-121.00534987249557,53.40282291261931],[-121.00547693167115,53.40265979299693],[-121.00560211031465,53.40249659425678],[-121.00580129433467,53.40236233492086],[-121.00604609062603,53.40225751087257],[-121.00630963544278,53.402169753774956],[-121.00656289848324,53.40207313683062],[-121.00670445570977,53.40191511737432],[-121.00689483288294,53.40177543724072],[-121.00708339620276,53.40163511463934],[-121.00721769753774,53.40147454380265],[-121.00732634875054,53.4013072802308],[-121.00743869222588,53.40114072869587],[-121.007591254397,53.40098541671036],[-121.00779586368327,53.40085307143988],[-121.00797360820793,53.400708358116134],[-121.00811522139261,53.40054978260981],[-121.0082477027745,53.400388568388756],[-121.0084380020822,53.40024943995436],[-121.0086565788234,53.40012666438228],[-121.00886998104508,53.39999973600189],[-121.00909202839819,53.39986361984508],[-121.00929844111582,53.39973190510516],[-121.00949403994801,53.39959580984145],[-121.00967902558945,53.39945364447616],[-121.00984963711909,53.39930526913236],[-121.01008903377318,53.39919795600952],[-121.01030934695407,53.39907637372076],[-121.01051568619178,53.398945211091245],[-121.0107003333017,53.39880584226822],[-121.01081090897745,53.398638099919914],[-121.01088241592069,53.39846533946553],[-121.01104744795371,53.398316162464944],[-121.01115587627184,53.39815057583784],[-121.01116965158396,53.397970899886786],[-121.01115510284308,53.397791167115514],[-121.01116699870136,53.39761141225169],[-121.01115225163653,53.397433351203404],[-121.01105939114001,53.397260995805006],[-121.01089387854513,53.39711198687299],[-121.01081183186274,53.396944011291026],[-121.01076111447797,53.396766686236994],[-121.01069315167864,53.396591449321186],[-121.01061170330186,53.396418449355785],[-121.01052059386161,53.396247289826256],[-121.0104178783872,53.39607844608887],[-121.01030744714166,53.39591096736184],[-121.01018916752606,53.395745971106905],[-121.01006699872242,53.395581925465855],[-121.00992926515035,53.39542172734695],[-121.00976778869402,53.395270630614476],[-121.00958652540508,53.395127130173655],[-121.00939533646137,53.39498770482741],[-121.00920206998521,53.39484988094491],[-121.00901477469424,53.394709495312306],[-121.00879743467321,53.39458357033577],[-121.00852875744407,53.394508272435615],[-121.00823797105437,53.3944601216791],[-121.0080119901897,53.39434337366206],[-121.00786440853966,53.394186685113745],[-121.00774030724652,53.394023121237936],[-121.00760044297675,53.39386507633011],[-121.00753639014007,53.393688868822196],[-121.00747421592729,53.39351274914501],[-121.0074349243307,53.39333477854011],[-121.00745428444557,53.39315590263411],[-121.00745666642365,53.392976870516975],[-121.00744965173116,53.39279745262145],[-121.00743693392879,53.39261835215843],[-121.00741864583249,53.392438451644686],[-121.00741351048532,53.39225911264146],[-121.00740844208413,53.39207921041172],[-121.00739391249873,53.39189946772974],[-121.0073641508373,53.39172077418796],[-121.00732103635302,53.391543208717856],[-121.00727034017775,53.391365881714194],[-121.00721199550293,53.39118935637808],[-121.0071651910336,53.39101106970605],[-121.00706022451766,53.39084549614536],[-121.006893071935,53.39069472154957],[-121.00669970060102,53.390558010800476],[-121.00646992001344,53.39044166494144],[-121.0062442970099,53.390322124107975],[-121.0060548871808,53.39018388951414],[-121.0058876080487,53.390034230939435],[-121.00571630657586,53.38988664914454],[-121.00563301264378,53.389713566244424],[-121.00560533867473,53.389533270351805],[-121.00544250553357,53.389393905343496],[-121.00518390632156,53.38929768345682],[-121.00496030484983,53.389177101619076],[-121.00477311480876,53.3890361546576],[-121.00467043997631,53.388867305372905],[-121.00464075788875,53.38868805661765],[-121.00466945647244,53.3885101299578],[-121.00473553334531,53.38833546364494],[-121.00487349209416,53.38817561559838],[-121.0050040680528,53.38801432504123],[-121.00518002080571,53.38786842746941],[-121.0053775236468,53.387731853954136],[-121.00554368224611,53.38758890446223],[-121.00560988682223,53.387413120103865],[-121.00568152775323,53.387239253293465],[-121.00576806725384,53.38706712670778],[-121.0058360820087,53.38689198435766],[-121.00594282223605,53.38672464190334],[-121.00602929269884,53.386553078296146],[-121.00613240639957,53.3863844602344],[-121.00623189438652,53.386214566666],[-121.00630708973954,53.38604252905341],[-121.0063283300989,53.385863731657444],[-121.00640378992959,53.385689458986754],[-121.00649401397028,53.38551805287048],[-121.00655826669863,53.385342743124134],[-121.00655326862486,53.38516228598244],[-121.00636262041591,53.38503466316494],[-121.00611008043057,53.38493532750796],[-121.00585312031276,53.38484142079715],[-121.0056024614431,53.38474216301987],[-121.00534738238623,53.384648334178465],[-121.00510081476762,53.384546444044815],[-121.0048793830747,53.38442370578867],[-121.00466787750227,53.384296892106725],[-121.0044544944768,53.384169999052965],[-121.00423695689116,53.38404630007289],[-121.0039948838898,53.383938414977905],[-121.00372915852383,53.383854799265436],[-121.00343772014173,53.38381278715585],[-121.00314119769367,53.383781782187675],[-121.00284708467453,53.38374639450961],[-121.00254896898642,53.38372879783771],[-121.00224731364865,53.38372509437075],[-121.0019465400757,53.383729854737375],[-121.00164422043709,53.38373173714211],[-121.00135928531648,53.383682688949925],[-121.00111072248843,53.38358182000493],[-121.0008579378279,53.383484708092205],[-121.00058136520329,53.3834129913167],[-121.00028946838724,53.38337487819447],[-120.99999511376316,53.38335743323024],[-120.99946101882468,53.38332372553741],[-120.99917639354057,53.38336734287557],[-120.9989143304364,53.38342762325427],[-120.99861839436602,53.38337585908433],[-120.9983278291446,53.38332656638468],[-120.99804128788068,53.38327519620171],[-120.99776458845896,53.383204590349095],[-120.99752649420905,53.38309516955808],[-120.99732936490717,53.38295883915634],[-120.99716804741767,53.38280717015529],[-120.9970244368306,53.382649508025025],[-120.9968572197251,53.3824998362135],[-120.99667404378086,53.382357353592795],[-120.99650079420441,53.38221079635075],[-120.99635329791036,53.38205409261195],[-120.99621955098671,53.381892918341165],[-120.99609164094201,53.38173030058694],[-120.99596567751881,53.381567198597445],[-120.99589008748372,53.38139330719626],[-120.99586990797377,53.38121388801434],[-120.99586864735997,53.38103414257874],[-120.9958787241095,53.380854317602775],[-120.99589068039205,53.38067456279394],[-120.99589317679971,53.380494975558456],[-120.99589567318608,53.380315388307146],[-120.99591514230325,53.38013595888221],[-120.99598687791612,53.379961534085865],[-120.99607719911762,53.379789572182574],[-120.99614893346923,53.3796151472591],[-120.99625206974228,53.379446537189736],[-120.99636627612615,53.37928008239839],[-120.99647122323076,53.37911210549582],[-120.99653557387117,53.378936246347116],[-120.9965380674257,53.37875665894598],[-120.996534925571,53.378576834188806],[-120.99653366219775,53.378397088529304],[-120.99653622169028,53.37821694681232],[-120.99653495832231,53.378037201121266],[-120.99652611528163,53.377857693229],[-120.996539879348,53.37767858041448],[-120.99665407979994,53.377512125203445],[-120.99676089975907,53.37734422701217],[-120.99682148968785,53.3771682093373],[-120.99687463149517,53.37699132091494],[-120.99692408310477,53.376813711029904],[-120.99697910347459,53.376636892697796],[-120.99704338119614,53.37646159627123],[-120.9971428164562,53.37629226375019],[-120.99729170283221,53.37613568740573],[-120.99741871270457,53.37597257427377],[-120.99749781540675,53.37579958208986],[-120.997569603023,53.3756246017006],[-120.99761153679681,53.375446675022125],[-120.99761214723974,53.37526700819599],[-120.99759196332901,53.37508758876997],[-120.99754890813584,53.374910009385914],[-120.99749639483355,53.37473259768908],[-120.99744569325098,53.37455582826283],[-120.99746891072002,53.3743765473379],[-120.99748273558238,53.37419687983966],[-120.99745873027071,53.37401785637005],[-120.99738120235969,53.37384444938665],[-120.99726310236241,53.37367887531248],[-120.99715466039582,53.37351146166687],[-120.9971116746041,53.37333332771759],[-120.99707814729561,53.37315502605283],[-120.99699297672511,53.372982419803066],[-120.99686898012885,53.37281884290945],[-120.99671367067663,53.372664611696344],[-120.99657995218956,53.3725034370921],[-120.99649471902515,53.37233138470092],[-120.99647641945717,53.37215204394239],[-120.99650903056715,53.371973158566654],[-120.99659926549221,53.371801758806505],[-120.9967298883232,53.37163992177013],[-120.99686775682244,53.37148063597374],[-120.99701481501755,53.37132342622818],[-120.9972245500706,53.371194678042414],[-120.9975120357041,53.37114221329571],[-120.9977514366533,53.37103380603202],[-120.99792372027659,53.370886642308534],[-120.99798241794255,53.37071054439489],[-120.99807452227435,53.370539222500824],[-120.99819970113107,53.370375465787816],[-120.99834480647786,53.3702187294975],[-120.99848635340484,53.3700601630967],[-120.9985944936157,53.369896811665576],[-120.99864023942204,53.36971848801635],[-120.99871751428151,53.36954485219964],[-120.99879854355345,53.369371383414105],[-120.99889802093713,53.36920149456658],[-120.99906311364968,53.369051214573304],[-120.99918828424121,53.36888745670073],[-120.99924684094933,53.36871247547589],[-120.99917327134365,53.36853754665368],[-120.99905323419243,53.3683724580664],[-120.99891167665896,53.36821375869052],[-120.99881101998878,53.36804442744101],[-120.99869681950922,53.36787789499011],[-120.99856887653924,53.36771583305713],[-120.99842738895725,53.367556578781205],[-120.99828382564898,53.367398916995676],[-120.99818129548993,53.36722950605943],[-120.99802975774527,53.3670754343175],[-120.99785274342139,53.36692928298047],[-120.99771508405698,53.36676962276975],[-120.99776191167471,53.36659807424813],[-120.9979235082154,53.36644540248544],[-120.9980792699366,53.36629417392115],[-120.99816022966259,53.36612125956637],[-120.99831269921509,53.36596595682649],[-120.99850113083136,53.365825645374755],[-120.99868587238572,53.365684612241836],[-120.99886718861379,53.365540631411626],[-120.99905554950915,53.36540088226567],[-120.99921874889189,53.36525052270184],[-120.99932197058226,53.36508079129929],[-120.9994392842319,53.36491951475174],[-120.99969757406552,53.36482650032776],[-120.99998984960197,53.3647809715493],[-121.00046707319395,53.36460844927036],[-121.00072858214365,53.36452006959284],[-121.00099176912912,53.364433440144545],[-121.00125488915421,53.364347364385345],[-121.00148564850477,53.36423185804898],[-121.00173178031116,53.3641299092183],[-121.00197468647148,53.36402333185355],[-121.00221293567682,53.363892407359266],[-121.00220178449521,53.363763907017415],[-121.00198802892724,53.36362520005384],[-121.00189119338292,53.36345546586917],[-121.00183686415076,53.36327742178662],[-121.00184302387656,53.3630985452336],[-121.0019768239504,53.36294132977165],[-121.00216582685607,53.36279598806483],[-121.00221605495788,53.362627393705054],[-121.00211754168721,53.36245590882884],[-121.00198228969515,53.3622918622631],[-121.00195573034398,53.36211834708685],[-121.00210635954917,53.3619624058748],[-121.0023606043451,53.36187146246541],[-121.00266038631423,53.36184196706488],[-121.00295954312683,53.36184949726811],[-121.00326240772297,53.3618734718681],[-121.0035380248592,53.361824988246745],[-121.00366805911906,53.36166761277675],[-121.00373818586291,53.36149030452406],[-121.00389753106917,53.36134034346877],[-121.00410551625657,53.361209831752824],[-121.00431866923344,53.36108346340151],[-121.0045318867612,53.3609565403826],[-121.00473624543066,53.36082475206783],[-121.00493019881615,53.3606852302501],[-121.00501971177307,53.36051941063513],[-121.00493051452486,53.36034887708949],[-121.0047793080964,53.36019202415363],[-121.0046180509599,53.36004036356096],[-121.00444694171298,53.35989222349791],[-121.00428562108944,53.3597411167101],[-121.00414407284732,53.359582422886774],[-121.00401425543113,53.35942029609497],[-121.00386674514127,53.35926415419738],[-121.00369168789634,53.35911752676771],[-121.00351448878509,53.35897305505649],[-121.00335920498281,53.358818840409384],[-121.0032333477667,53.358655190004185],[-121.00315622366826,53.35847842404984],[-121.00327579919798,53.35832959366246],[-121.00345465956056,53.35818999629342],[-121.00350043898726,53.358011106531215],[-121.0035180547619,53.357831031678714],[-121.00352809331514,53.357651204010246],[-121.00350782681387,53.3574723383142],[-121.00349707979377,53.35729275906486],[-121.00359074442399,53.35712374576742],[-121.00379689912876,53.356992592098486],[-121.00399366394576,53.35686105202124],[-121.0041299114523,53.356698879443584],[-121.00432305157857,53.35656606331613],[-121.00457476421633,53.35646434519197],[-121.00477675955972,53.356336384300995],[-121.00488362510335,53.356167368515244],[-121.0049292635712,53.35598959552305],[-121.00494311746759,53.35580936231601],[-121.00499237751602,53.3556328647301],[-121.00511017391082,53.35546711184387],[-121.00528585876528,53.3553223203496],[-121.00549206518834,53.35519060934601],[-121.00570175984261,53.355061290915586],[-121.00586094108239,53.35491244425456],[-121.00593829169854,53.354737684982794],[-121.00600994258198,53.35456325197165],[-121.00607602646444,53.3543880277307],[-121.00611421525659,53.35420937505171],[-121.00611478913827,53.354029706307585],[-121.00608894706203,53.35385004956111],[-121.00599768271431,53.35368111801228],[-121.00580890218548,53.353538973763335],[-121.00566858306262,53.35338594774106],[-121.00565226269411,53.353205568192486],[-121.00568307551319,53.35302548216411],[-121.00566441303047,53.35284893933897],[-121.00556188860187,53.35267953354951],[-121.005457421876,53.35251060296439],[-121.00536642830403,53.352339435816795],[-121.00526967089223,53.352169149156495],[-121.00514570341136,53.35200557921371],[-121.00505632412616,53.35183672576685],[-121.00504945917957,53.35165618661611],[-121.00505191483668,53.35147659663016],[-121.00504686142253,53.351296690707805],[-121.00501713838901,53.35111799302643],[-121.00495309445847,53.35094234366298],[-121.00487557922294,53.35076893065391],[-121.0048038948088,53.350594082749396],[-121.0047436728193,53.3504180369148],[-121.00469297115193,53.35024125952197],[-121.00464810002515,53.35006304726929],[-121.00460698367559,53.34988499295833],[-121.00457531943924,53.34970677927525],[-121.00455511812511,53.34952735877376],[-121.00455382141512,53.3493476106326],[-121.00455252471619,53.34916786247536],[-121.0045361449473,53.34898803667771],[-121.00451594414447,53.34880861610553],[-121.00449567664143,53.34862975873513],[-121.00447742018955,53.34844985389236],[-121.00446472840142,53.348270749220475],[-121.00445210253167,53.34809109025004],[-121.00443190251656,53.34791166958384],[-121.00440412845249,53.347732487217954],[-121.00434578931659,53.34755651992225],[-121.00424321725083,53.347387666832965],[-121.00413092835956,53.34722121689391],[-121.00404383842806,53.34704908877225],[-121.00397404085508,53.34687431904099],[-121.00390430967651,53.34669899497242],[-121.00382486263508,53.34652606513642],[-121.00372611506171,53.346356815232404],[-121.00360806716299,53.34619124521331],[-121.00348807734694,53.34602615033965],[-121.00338557826294,53.34585674210088],[-121.00334252745844,53.34567917119568],[-121.00341203127992,53.34550689496443],[-121.00356809507842,53.345352296201035],[-121.00373126654692,53.345201374675376],[-121.0038835740791,53.345046617472065],[-121.0040360789872,53.34489018827614],[-121.00425197377683,53.3447718084829],[-121.00452536331812,53.34469346685663],[-121.00478835289364,53.34460738244166],[-121.00504220105799,53.34450295241778],[-121.00514704681207,53.34435068904121],[-121.00500949935751,53.34419048120791],[-121.00478446026693,53.34406813665989],[-121.00456310948745,53.343946512877146],[-121.00435401606282,53.34381698580884],[-121.00416890748599,53.34367610480839],[-121.00400583881954,53.343524363150934],[-121.00390689799815,53.34335679387124],[-121.00389816351878,53.34317616595568],[-121.00395693031298,53.34299894518092],[-121.00410695308716,53.342847469978494],[-121.00432732118357,53.34272309717109],[-121.00452803786743,53.34258946931204],[-121.00470018156608,53.342442293709304],[-121.00486514878104,53.342292003678104],[-121.00503735694245,53.34214426434219],[-121.00518958178023,53.341990068453846],[-121.00525739462122,53.341816031119436],[-121.00531783114795,53.34164056925957],[-121.0054465170574,53.341478078044055],[-121.00559705958877,53.34132213081768],[-121.00574746944089,53.34116729195622],[-121.00590344176517,53.341013253017756],[-121.00606658807534,53.3408623279615],[-121.00622973427812,53.34071139372994],[-121.00637289663479,53.34055401210522],[-121.0064924564701,53.340388889853536],[-121.00659545538946,53.340220267560994],[-121.00668008363068,53.34004750309039],[-121.00672569706926,53.33986972798656],[-121.00677493102664,53.339693228265865],[-121.00689442001992,53.339528668764],[-121.0070503152664,53.339375191420196],[-121.00720446629101,53.33922050846314],[-121.00735311753421,53.3390644798912],[-121.00751082035357,53.33891163513751],[-121.00767576373065,53.338761340942234],[-121.00784975856985,53.3386142304977],[-121.00807137315746,53.33849496269702],[-121.00835237523592,53.33843153434459],[-121.0086364014109,53.33837440502262],[-121.00887907490417,53.338268375426054],[-121.00906366096538,53.3381273242538],[-121.00917395146094,53.337960695945924],[-121.00922705879874,53.33778323535943],[-121.0092464525872,53.33760379105237],[-121.0092545852343,53.337423882181184],[-121.00930749330708,53.33724809331172],[-121.00941603641701,53.33708026827879],[-121.00952826619724,53.336913155239706],[-121.00960905680923,53.336740784866386],[-121.00964158373698,53.336561901701685],[-121.00966841484373,53.33638333607641],[-121.00972889200511,53.33620730827161],[-121.00980056249026,53.33603230814278],[-121.00987585198838,53.33585859221988],[-121.0099548950791,53.33568502510075],[-121.01003762387958,53.335512178945955],[-121.01012960231742,53.33534084473756],[-121.0102508756601,53.33517692363322],[-121.01041579465644,53.33502662535609],[-121.01058601143635,53.33487935284046],[-121.01071465534181,53.3347168643152],[-121.01081581375344,53.33454759576924],[-121.01092615472245,53.33438040230934],[-121.01103468400554,53.33421257555791],[-121.0110707577796,53.33403552135509],[-121.01099519066565,53.33386163547275],[-121.01086549286721,53.333698950859194],[-121.01073767255215,53.33353634498173],[-121.0106312892816,53.33336790167027],[-121.01054607789482,53.33319585601568],[-121.01048391461333,53.33302028695764],[-121.01042369506862,53.33284423351885],[-121.0103672946216,53.332667783539115],[-121.01032623679178,53.33248917537435],[-121.01031171530317,53.3323094277756],[-121.01035529616173,53.33213268921219],[-121.01047843581097,53.33196884650974],[-121.01063254717859,53.3318141585353],[-121.01080281593306,53.33166633118331],[-121.01099460625385,53.33152783608497],[-121.01118814031057,53.331390528130555],[-121.01137811848183,53.33125139028056],[-121.01156628471358,53.33111161894919],[-121.01174378796556,53.330966340748994],[-121.01191223978121,53.33081786963958],[-121.01207894541925,53.33066821083009],[-121.01224927121449,53.33051981809078],[-121.01245687935894,53.33039097052558],[-121.01303879763546,53.33007905869866],[-121.01313007390779,53.32763737766385],[-121.0048010087032,53.32613192098167],[-121.00010388225371,53.32491205556288],[-120.99812893490899,53.323380006277034],[-120.99813385088812,53.3216882570749],[-120.99659844279562,53.32026679667177],[-120.99536702070634,53.31996832742897],[-120.99390177705959,53.319226465070365],[-120.99274272954122,53.31654439915016],[-120.99124393214159,53.315198521601594],[-120.9871318264602,53.31477772665343],[-120.98572170092699,53.31370226242645],[-120.98513421323024,53.30799888835838],[-120.98324499463861,53.30702385180509],[-120.97691071689596,53.304509450096724],[-120.97598045906217,53.30282856506842],[-120.97629803638985,53.29776428375855],[-120.97676190820115,53.292736515486936],[-120.9771296524557,53.2910426649518],[-120.97940428442612,53.28776452736009],[-120.97448776635255,53.282612619321746],[-120.97624261613947,53.27762551482514],[-120.97627568443474,53.276589675916],[-120.96768618886082,53.27836768454969],[-120.96498800482287,53.27812447411363],[-120.96208556612068,53.27719525352489],[-120.95941682502863,53.277084575114635],[-120.95083729025951,53.27902299487773],[-120.95032472993842,53.2799053208636],[-120.9457762628533,53.28101770196503],[-120.9391320952084,53.28288958612274],[-120.93561931879125,53.28428169278531],[-120.93278661223034,53.285781403881025],[-120.93070933737175,53.28751441782314],[-120.93072482104813,53.28813733456719],[-120.93172693351782,53.2913335772234],[-120.93463041244097,53.29388714861078],[-120.93944865390824,53.29694300345075],[-120.94110745141248,53.29882099900886],[-120.93627376806562,53.30090709389989],[-120.93095575336103,53.30225290545569],[-120.92268940340604,53.30441464725941],[-120.91880046304182,53.30615527683244],[-120.91414836555538,53.30709535545066],[-120.91059615713904,53.30591971210804],[-120.90530090315828,53.30257707137162],[-120.89981741288653,53.299924148900494],[-120.87995593572536,53.299351192733525],[-120.87811382735673,53.29701837511626],[-120.87432222143997,53.2928686139334],[-120.867398602657,53.28845168058016],[-120.86087339371512,53.28596956031592],[-120.85400239553161,53.28595450884366],[-120.84666077486872,53.28633646589936],[-120.84282153507144,53.28470131644295],[-120.83344461272418,53.28275285341829],[-120.82848020935961,53.28243298093601],[-120.8153412787644,53.28375397397772],[-120.80714224716293,53.28448689914986],[-120.80439492448805,53.278042582436164],[-120.80039748336753,53.27172301636122],[-120.79466568672892,53.264207607637545],[-120.78881494452231,53.261204818946105],[-120.77875830435404,53.25811297422093],[-120.7683355075092,53.25519108481407],[-120.76070219619297,53.25431551294853],[-120.75792937706544,53.25432649470572],[-120.75280589297229,53.255434226582814],[-120.74548926486598,53.25769934170088],[-120.74226759509685,53.25937464447085],[-120.73735292253714,53.26242109545427],[-120.7352832949626,53.264999549237004],[-120.73101666488385,53.26610686597198],[-120.72311546576704,53.26808126616526],[-120.71560547733729,53.26897219401078],[-120.71214100052282,53.26716105062752],[-120.7068552571565,53.26329783248027],[-120.69995894724619,53.2596706672675],[-120.69313850553216,53.25592847386119],[-120.69064422341509,53.253366314887366],[-120.68449874942222,53.25001893526254],[-120.67691985697525,53.24491022934825],[-120.67344092813225,53.239664168266145],[-120.67178227574063,53.23682113360805],[-120.67060973842965,53.23442240109647],[-120.66522876876229,53.2295869352177],[-120.65977223739611,53.22737968190713],[-120.65202165869977,53.22415446806657],[-120.64351620167582,53.22024452196074],[-120.634995424694,53.21599330946712],[-120.62638761696813,53.212202058672986],[-120.61806918834202,53.20863113233548],[-120.61087412701715,53.20334328536866],[-120.60283747121177,53.197826591540974],[-120.59221871888215,53.19169732574339],[-120.58781471736822,53.18897093596365],[-120.58076621161376,53.18927506047958],[-120.57421707751148,53.19072537043344],[-120.56822652397976,53.190519407062624],[-120.55918042669143,53.189861285607385],[-120.55124925510161,53.1867429247635],[-120.54581971521432,53.18487607598207],[-120.54233729645235,53.178886015721396],[-120.5404908910253,53.174206372181544],[-120.54057228963772,53.17066812577],[-120.54210561217452,53.16101190365096],[-120.53995376204371,53.15381659131023],[-120.53832281067756,53.15096890281284],[-120.53249881320889,53.14824066542282],[-120.5263889647906,53.14540445747242],[-120.52308937533648,53.149413921364484],[-120.52056424740815,53.15347329470969],[-120.51603133712356,53.15794231926725],[-120.51254234640315,53.162005691632714],[-120.50932188827322,53.165385845430954],[-120.5047564377638,53.16499996175401],[-120.48999977579764,53.1626376588545],[-120.47352886252554,53.15937004755062],[-120.4707696844726,53.158857707131325],[-120.4696109163248,53.15702949324633],[-120.4656898441216,53.15161720062951],[-120.46079232050036,53.145062598911416],[-120.45676092398368,53.13901869664365],[-120.45446761292611,53.13519552032072],[-120.45349010415396,53.131766766785105],[-120.45535883650263,53.12668196841566],[-120.45732472396423,53.12016484015962],[-120.45769217928364,53.11873623590527],[-120.45302621516699,53.11720994471486],[-120.44514694358502,53.11728268996732],[-120.43705730057367,53.11689879898301],[-120.42097831162921,53.110362766345276],[-120.41820062823379,53.107514863102146],[-120.41732438184032,53.10300410743055],[-120.41606537389583,53.09741364493472],[-120.41570117462646,53.084020959184485],[-120.4157558832078,53.07325501514711],[-120.4223472283608,53.065246516184544],[-120.43388712322522,53.058821434172266],[-120.4433220919037,53.049438524586584],[-120.4498142660667,53.04074414761551],[-120.45414583773189,53.03376459285127],[-120.4574931690191,53.024215381538006],[-120.45725638322341,53.0159410785913],[-120.45580101088828,53.0111446893542],[-120.44450883714619,53.00803053083985],[-120.44335477979303,53.0058630081444],[-120.442665498624,53.0020927309927],[-120.44763804618199,52.99339871277767],[-120.44693193057597,52.99330187930123],[-120.44647582731466,52.99323988854425],[-120.44601906665541,52.99318292726313],[-120.4455634047993,52.993117581788795],[-120.44510957339833,52.993038266833125],[-120.44467186924835,52.99295016231597],[-120.44423387431307,52.99286429028717],[-120.44378107110734,52.99277715972873],[-120.44334505569532,52.99267619963044],[-120.44292487546086,52.99256868445482],[-120.44250645347867,52.992447763089324],[-120.44209066825559,52.99230673320979],[-120.44168984074958,52.99216585089519],[-120.44128894329874,52.99202552126574],[-120.44088936595449,52.99187513676192],[-120.44050401543754,52.99173047642298],[-120.44010488285544,52.991576738068204],[-120.43973705405057,52.99141268044763],[-120.43937157200983,52.99123073986237],[-120.43902192623713,52.991042245183955],[-120.43870424384494,52.990838400608965],[-120.43843421134311,52.99061377058026],[-120.43816520802257,52.99038131159486],[-120.43791174770607,52.99014453327435],[-120.43764165115374,52.98992045539575],[-120.43729151059227,52.98973586959123],[-120.4369254675122,52.98955838945117],[-120.4365757725099,52.989370450324266],[-120.43625811434036,52.98916659895458],[-120.4359727859064,52.98894460149249],[-120.43570387927612,52.98871158260191],[-120.43546620268093,52.9884688003383],[-120.43530564319049,52.98820887615923],[-120.4352677960322,52.98792664788767],[-120.43524460968527,52.98764680352028],[-120.4352520638956,52.987361664630285],[-120.43524346540308,52.98708475818773],[-120.43525099219401,52.986799065144496],[-120.43524246766546,52.986521595614704],[-120.43521928225152,52.986241751007505],[-120.43518136357464,52.98596008537119],[-120.43512863808928,52.98567716168503],[-120.43507547493333,52.98539758014884],[-120.4349915999688,52.985123855955],[-120.43487759982682,52.98485152083007],[-120.43474776975633,52.9845857379445],[-120.43457249751911,52.984323982192045],[-120.43439737279584,52.98406111802179],[-120.43422225141028,52.98379824461364],[-120.43406237715594,52.98353328681055],[-120.43391782362647,52.98326568167879],[-120.43378859055954,52.982995429273736],[-120.43370487516006,52.982720586718564],[-120.43365201697462,52.9824387788769],[-120.43365882210443,52.98215866147064],[-120.43372528702648,52.98188025236305],[-120.43384994758189,52.981614704117206],[-120.4340481923364,52.98135882434257],[-120.43426131307137,52.981103648240804],[-120.43445969948294,52.980846650641254],[-120.43462854628939,52.98058657356013],[-120.43478317278561,52.98032076100005],[-120.43493735784843,52.98005829936282],[-120.43506259147628,52.97978828132009],[-120.43517367697454,52.97951198282459],[-120.43529890749275,52.97924196444241],[-120.43548196185574,52.978987612091444],[-120.4357232786529,52.978745574335946],[-120.4359935426918,52.978511083061406],[-120.4362490001551,52.9782753243427],[-120.43647550502718,52.97803201814993],[-120.436673204131,52.97778004758726],[-120.4367984200269,52.97751002733157],[-120.43687951510975,52.97723399051733],[-120.43696119488463,52.97695348535939],[-120.43704214141641,52.97667856540193],[-120.43712315953086,52.976403091281234],[-120.43720432419404,52.97612649106141],[-120.43727126954637,52.97584416476427],[-120.43733740810576,52.97556798669049],[-120.43740427907164,52.97528621428603],[-120.4374701230672,52.97501227017005],[-120.43752167684747,52.97473314514983],[-120.43757330257108,52.97445346599723],[-120.43761012423712,52.974172529087575],[-120.43763163146446,52.973894230751746],[-120.43765394306051,52.97360979298355],[-120.43766013362527,52.97333415105598],[-120.43766749651492,52.9730495636334],[-120.4376748581348,52.97276498509819],[-120.43768236722921,52.97247928051288],[-120.43759791535102,52.97221002431346],[-120.43734376065328,52.971979390520325],[-120.43702842494851,52.97175878313535],[-120.43675808434314,52.97153748895818],[-120.43645748350212,52.971318700783485],[-120.43615681194953,52.97110047481329],[-120.43585511954363,52.97089005855352],[-120.43557035400887,52.970664715433315],[-120.43528529974776,52.97044159678368],[-120.4349186975911,52.97026970261273],[-120.43451758944681,52.97013269930565],[-120.4340993394396,52.970012300541306],[-120.4336822626124,52.96988297273007],[-120.4332657755276,52.96974916625286],[-120.43286467761693,52.96961215727622],[-120.43246416840466,52.96947067868297],[-120.43206468762675,52.969321379298954],[-120.43166462345938,52.9691765467841],[-120.43126580717771,52.969022222366526],[-120.43094656763911,52.96883175890631],[-120.43066191576467,52.968605840647676],[-120.43040789409099,52.968374628398436],[-120.43015512173466,52.96813391610783],[-120.42991759180171,52.96789111966303],[-120.42968006458058,52.967648322703795],[-120.42944195366799,52.96740999346086],[-120.42918919133795,52.96716928789457],[-120.42895123246959,52.96692984053358],[-120.42869789047134,52.96669359313731],[-120.42847561601606,52.966448710151845],[-120.42826983125067,52.9661922349559],[-120.42812485930499,52.965928534102815],[-120.42799622952028,52.96565435836595],[-120.4278818864428,52.965385364465405],[-120.42776813253208,52.96511189324544],[-120.42765423227202,52.96483954786424],[-120.42754106784827,52.964561608105654],[-120.42742724442354,52.96428869941764],[-120.42728213754289,52.96402611428229],[-120.42709058336663,52.96377537281066],[-120.42683727048923,52.96353912096437],[-120.42655318858873,52.96330928682742],[-120.42629988147144,52.96307303375918],[-120.4260930255207,52.962824936633574],[-120.42591855566035,52.962558142305916],[-120.42578833564382,52.9622962601613],[-120.42567460345239,52.96202278641037],[-120.42556131159945,52.96174597027119],[-120.42543161025503,52.96148017343667],[-120.42531773585091,52.961207816263304],[-120.4252040084212,52.96093435081472],[-120.42502947913013,52.960668108926065],[-120.42483810004944,52.96041624622689],[-120.42455339022123,52.96019142912166],[-120.42425183140232,52.959980990708715],[-120.42393445174481,52.95977710253612],[-120.42361758925999,52.95956929932027],[-120.42331714057123,52.95935047604865],[-120.42303156546966,52.959132357454195],[-120.4227309021724,52.958915212680765],[-120.42244540696255,52.95869652961215],[-120.42214386916719,52.95848608561288],[-120.42184350968,52.95826669544379],[-120.42154249221166,52.95805233569154],[-120.42124206490926,52.95783350692678],[-120.42097402277074,52.95759598186836],[-120.42070605643575,52.957357902107226],[-120.42038746609934,52.957163494543124],[-120.41998293080769,52.95705381295284],[-120.41954719118297,52.95695387973284],[-120.41910858972066,52.956875731874824],[-120.41863863532735,52.95680845789475],[-120.41818237712317,52.956750824528875],[-120.41771066311178,52.95669695145159],[-120.4172538198257,52.956643782686335],[-120.41679639009928,52.9565950803443],[-120.41633661090049,52.95656424900256],[-120.41586130117159,52.9565377406734],[-120.4154003478148,52.95651584206082],[-120.41493821938046,52.95650287801938],[-120.41447609122778,52.95648991216486],[-120.4140108770225,52.95650040245866],[-120.41354103328203,52.95654607336953],[-120.41311079794967,52.95663185103836],[-120.41266378151947,52.956731432986],[-120.41222994123432,52.95684457053434],[-120.4118249555787,52.95696582251119],[-120.41143057309735,52.957120174246164],[-120.41107726754689,52.95730345459536],[-120.41069642540121,52.95746856419455],[-120.41031682980022,52.957624182170576],[-120.40990999335487,52.9577593860421],[-120.40947657654085,52.95786916226001],[-120.40904330459406,52.95797781983736],[-120.40862357628814,52.958097236447166],[-120.40820443413298,52.95821218340333],[-120.40778396546918,52.95833718219091],[-120.4073906586441,52.958483146964966],[-120.40700964447106,52.95864936156235],[-120.40667007411584,52.95884170931401],[-120.40631680676115,52.95902442114444],[-120.40593644648726,52.95918560109349],[-120.40555615634251,52.95934622575021],[-120.40516217068424,52.95949720517582],[-120.4047826109386,52.959652242142106],[-120.40438876693345,52.95980210192102],[-120.4039946986996,52.95995364038421],[-120.40358664185,52.96009775847233],[-120.40319330434707,52.96024370907644],[-120.40280011259962,52.960388532389096],[-120.4023796065469,52.96051351172149],[-120.40192266057198,52.96057437456213],[-120.40145636742734,52.96059263444195],[-120.40099184177565,52.96059748815508],[-120.40052783228538,52.96059842597675],[-120.40006507464948,52.96058987172148],[-120.39960231719967,52.960581315648454],[-120.39872845873448,52.96073976242976],[-120.39827150510631,52.96080061109969],[-120.39781337208011,52.960870385239446],[-120.39738180882797,52.96096559545545],[-120.39698792659465,52.96111543037156],[-120.39660684820385,52.9612816110553],[-120.39621296031498,52.9614314433518],[-120.39578072360933,52.96153167872888],[-120.39534981333168,52.961621850406935],[-120.39490469340288,52.9617062893692],[-120.39445757986572,52.96180581085302],[-120.39403954299276,52.96191177100689],[-120.39360427264864,52.962034892751326],[-120.3931974884486,52.962168921521666],[-120.39283125692747,52.962335799121455],[-120.3924778279359,52.96251902310069],[-120.39211100031818,52.96269036648481],[-120.39172988876732,52.96285653123416],[-120.391363645569,52.96302340420236],[-120.39096979629274,52.96317266477178],[-120.39054871192843,52.96330150673659],[-120.39012946966581,52.96341638901405],[-120.38970904409207,52.96354020587659],[-120.38929038777822,52.96365061710931],[-120.38885685774483,52.96376031706439],[-120.38841103746438,52.96384976239192],[-120.38796506881243,52.96394031409972],[-120.38751998322054,52.96402417100515],[-120.3872673879574,52.96401042156836],[-120.38702885149932,52.96400352961119],[-120.38680577754764,52.96399287918767],[-120.38656724126274,52.96398598629588],[-120.3863281141705,52.96398356094535],[-120.386105040499,52.96397290919483],[-120.38586709537253,52.96396154686203],[-120.38564453842754,52.96394698918812],[-120.38540777553052,52.96392668988528],[-120.38518765740555,52.96389369629755],[-120.38495192932172,52.9638655770447],[-120.38473122081624,52.96383705062082],[-120.38449623219144,52.96380334543429],[-120.38427670650901,52.96376588212628],[-120.38405769903409,52.963724504428406],[-120.38384039092688,52.963670285253855],[-120.38363965378167,52.96360393505391],[-120.38342404706762,52.9635368651047],[-120.38322279448934,52.963474419230764],[-120.38300600545526,52.96341629346804],[-120.38280475406113,52.96335384687545],[-120.38258914993106,52.9632867753882],[-120.38238782525933,52.96322489104754],[-120.38218827628043,52.96314959340707],[-120.38200507633243,52.963063844998146],[-120.38182084345345,52.962985906371614],[-120.3816378673033,52.962898477413425],[-120.3814399463009,52.96281090041561],[-120.38125571555281,52.96273296089351],[-120.38105498686237,52.96266660625198],[-120.3808387975324,52.962603999535304],[-120.38062164711828,52.9625486573869],[-120.38040361003974,52.96250001683436],[-120.3801858692141,52.96244914187804],[-120.37996731496294,52.96240441448119],[-120.37974839204213,52.962362474707064],[-120.37952887797725,52.96232500251972],[-120.37929390182772,52.96229128692594],[-120.37907372354671,52.96225883591388],[-120.37885302732023,52.962230298450315],[-120.37861746055975,52.962201049497075],[-120.37838130242898,52.96217626806161],[-120.37816045916611,52.96214884629658],[-120.37793976412296,52.96212030712027],[-120.37770419859953,52.962091056338885],[-120.37746789366427,52.96206739006739],[-120.37724779131976,52.96203438160818],[-120.3770282811508,52.961996904754116],[-120.37680928865109,52.96195552247374],[-120.37659140694177,52.96190575785287],[-120.37637360032168,52.96185542986202],[-120.37615586761542,52.9618045474375],[-120.37592119298789,52.96176859111646],[-120.37570227732867,52.96172664380741],[-120.37546730751745,52.961692920569114],[-120.37524365656303,52.961686716214544],[-120.37501637883187,52.96170788224265],[-120.37478606713002,52.961751941723016],[-120.37456936797389,52.96180620231148],[-120.37437907833254,52.9618870225258],[-120.37421482851136,52.96199719050272],[-120.3740374089568,52.96209380564985],[-120.37383779847725,52.96213202165647],[-120.37360223570995,52.96210276267317],[-120.37338568948734,52.962042939204984],[-120.3731855685673,52.96197210316331],[-120.37298767046181,52.96188450298131],[-120.37280412493006,52.961801528208895],[-120.37262154199792,52.96171129717656],[-120.37245434922714,52.961617863778365],[-120.37228834184108,52.96151549421655],[-120.37213720570006,52.9614138363105],[-120.37198718153716,52.961303796312066],[-120.37183649114402,52.961198787037254],[-120.37167033878417,52.9610975335686],[-120.3715197980034,52.96099140688599],[-120.37136918332975,52.96088584296674],[-120.37120318141163,52.96078347183059],[-120.37103643973633,52.96068668539972],[-120.3708694772393,52.96059156974271],[-120.37070288519472,52.96049366583945],[-120.37053681175618,52.960391856702365],[-120.37038627630041,52.960285728525974],[-120.3702195384346,52.960188940909724],[-120.3700684119501,52.96008728026809],[-120.36991839781668,52.95997723754696],[-120.3697681616542,52.9598688745776],[-120.36963405472218,52.959751733692464],[-120.3694989126782,52.95964240262564],[-120.36934867876671,52.959534039099346],[-120.36918327960767,52.95942719708184],[-120.3690320836333,52.9593260980257],[-120.36888200019062,52.95921661689592],[-120.3687473062768,52.9591039339691],[-120.36861305639806,52.95898790885478],[-120.36849427062046,52.95886811905192],[-120.36837541083192,52.958748892081985],[-120.36825714441781,52.9586251970356],[-120.36813835946965,52.958505415783264],[-120.36801942819342,52.95838674245371],[-120.36791410669315,52.958278280281576],[-120.36786233526045,52.95821734723681],[-120.36779599111603,52.958153467750044],[-120.36772816528024,52.95810075809054],[-120.36764398850661,52.958058505793986],[-120.3675446463311,52.9580177749341],[-120.36744448867438,52.957983191882704],[-120.36734507335922,52.95794301487797],[-120.3672454353374,52.95790451773555],[-120.36714490827431,52.957872722424824],[-120.36704430666558,52.95784148998855],[-120.36694303885822,52.95781527943445],[-120.36682764314351,52.957782771298085],[-120.36672585745252,52.95776046553872],[-120.36661046205246,52.95772795718843],[-120.36651023232045,52.957693927361504],[-120.36642613107935,52.95765112015954],[-120.36634277231207,52.95760271903411],[-120.36625911609713,52.95755656075448],[-120.36617560947734,52.95750927649329],[-120.36607775229243,52.957457374530975],[-120.3659936519541,52.95741456701409],[-120.36592597776313,52.95736073930828],[-120.36589011684015,52.957292699147835],[-120.36585492368337,52.95721962807344],[-120.36584842951461,52.9571558102009],[-120.36585791654905,52.95708432316058],[-120.36588205059712,52.95701521981339],[-120.36590625809035,52.956945562433795],[-120.36591515205099,52.95687854332055],[-120.36593987762976,52.95680498094772],[-120.36596364021666,52.95673867450356],[-120.3659730534423,52.95666774146059],[-120.3660119810204,52.95659991370436],[-120.36603626158573,52.956529702255594],[-120.36606039502954,52.956460598848764],[-120.36608386078362,52.95639652633801],[-120.36612286145655,52.95632814450903],[-120.3661617149661,52.9562608707144],[-120.36620004898087,52.95619751082339],[-120.36623897576688,52.95612968297277],[-120.36624838721296,52.95605875881752],[-120.3662725935622,52.95598910132226],[-120.3662962816582,52.95592334880349],[-120.36632033963375,52.95585480827911],[-120.36634461926495,52.95578459673516],[-120.36638302727913,52.95572067380515],[-120.36640782607653,52.955646548321155],[-120.36643136437272,52.955581921684185],[-120.36644070186284,52.95551155151552],[-120.36646498228524,52.95544133099631],[-120.36648933614072,52.95537055644349],[-120.36649808064199,52.955304654209414],[-120.36650756617209,52.95523316703657],[-120.36651705167029,52.955161679859756],[-120.36651122436301,52.955092831033916],[-120.36652078333599,52.95502078982514],[-120.36651480783196,52.954953057980845],[-120.36649418718521,52.95488293357531],[-120.3664885081633,52.954812967749405],[-120.36646788644208,52.95474285226916],[-120.36644741418533,52.95467161085903],[-120.36642619975599,52.954605963315416],[-120.36640513478923,52.95453918984199],[-120.36638518088367,52.954464043424025],[-120.36634924696878,52.95439656624572],[-120.36632862686459,52.95432644178755],[-120.36630756100367,52.954259677221266],[-120.36628634818119,52.95419402070018],[-120.36628126244595,52.95411958688461],[-120.3662600485482,52.95405393928901],[-120.36623957697093,52.95398269781312],[-120.3662037183936,52.9539146576089],[-120.36615239936701,52.9538503726887],[-120.36611602169042,52.953786246377014],[-120.36607957060778,52.953722674077476],[-120.36602899309149,52.95365280415779],[-120.36599261695555,52.95358866886452],[-120.36594144686114,52.95352326685201],[-120.36589027692405,52.9534578648147],[-120.36583792136567,52.953401398652666],[-120.36575545975371,52.95334630399764],[-120.36567136905134,52.953303487208245],[-120.36557144695077,52.95326722251649],[-120.36547122855777,52.953233191713565],[-120.36537286265542,52.953185202954295],[-120.36530527068734,52.95313081179257],[-120.36520631225754,52.95308729083938],[-120.36512237085954,52.95304335666436],[-120.36502274632258,52.95300485752763],[-120.3649239367195,52.95296021934725],[-120.36483984761692,52.95291740195409],[-120.36475627696178,52.952870679515],[-120.36467329949384,52.952819489069554],[-120.36459024750613,52.952768861525264],[-120.36452280545437,52.952713352914294],[-120.36443960559637,52.952663842246864],[-120.36437260868179,52.95260498258745],[-120.3643360864935,52.95254197266396],[-120.364269089914,52.95248311294139],[-120.36418618732613,52.95243136811564],[-120.36410313786169,52.952380731279966],[-120.36403562233457,52.95232578533794],[-120.36396847705748,52.95226805135856],[-120.3639018514973,52.95220640342037],[-120.36384972311595,52.952148256384895],[-120.36379796496234,52.95208732132768],[-120.36379273556072,52.95201400429554],[-120.36375688255521,52.951945963265246],[-120.3637203618444,52.95188295312559],[-120.36368443552145,52.951815466092846],[-120.36366396814734,52.95174423300849],[-120.36365807238086,52.95167593792395],[-120.36365299154428,52.951601503881264],[-120.36363163468317,52.951536972698165],[-120.36362648036572,52.95146309267323],[-120.36362065824208,52.95139424354998],[-120.36361490968093,52.951324840398534],[-120.36360908759494,52.951255991269065],[-120.36360378507737,52.95118322821668],[-120.36361327455126,52.95111174109827],[-120.36362217090407,52.9510447219213],[-120.36364645224278,52.950974510728784],[-120.36367058641693,52.95090540757888],[-120.36369405270601,52.950841335328555],[-120.3637190016128,52.95076609320483],[-120.36372782299956,52.95069963696709],[-120.3637371638894,52.95062926680449],[-120.36374687600971,52.950556099703185],[-120.36374046074631,52.950491718495364],[-120.36372043871779,52.95041713440297],[-120.36371469131205,52.95034772227933],[-120.36369355798139,52.95028151110994],[-120.36365755832574,52.95021458696485],[-120.36363709176663,52.9501433538066],[-120.36361647819311,52.95007322869285],[-120.36356531597833,52.95000782550859],[-120.36349824972596,52.94994952821841],[-120.36343007101428,52.94989961275738],[-120.3633306783756,52.94985943216786],[-120.36321412076587,52.949835856228894],[-120.36311287437026,52.94980964225488],[-120.36299616873325,52.94978718308604],[-120.3628962571698,52.94975091604746],[-120.36279671590687,52.94971186092584],[-120.36271219048982,52.949672392887926],[-120.36262862854394,52.94962566884725],[-120.36253020063207,52.94957823163408],[-120.36246209839275,52.949527752640435],[-120.36237913020352,52.949476560474906],[-120.36229556900794,52.94942983619232],[-120.36219721547907,52.94938184467024],[-120.36211313619158,52.949339025237535],[-120.3620141898447,52.94929550150236],[-120.36193018447399,52.94925212791184],[-120.3618302015121,52.94921641398192],[-120.3617305889135,52.949177911971184],[-120.36163119837879,52.94913773886573],[-120.36153114118314,52.9491025876399],[-120.36144706311767,52.94905976772432],[-120.36134759955738,52.94902014840106],[-120.36124865473501,52.94897662401436],[-120.36116457720267,52.948933803893794],[-120.36106511419983,52.94889418432898],[-120.36096616995927,52.948850659701534],[-120.36088164795073,52.94881119032923],[-120.36082500296087,52.94878711432742],[-120.36072613397836,52.94874302653537],[-120.36064146287713,52.94870468290815],[-120.36054266904209,52.94866003199987],[-120.3604585180789,52.94861777432702],[-120.3603595751015,52.94857424918271],[-120.3602750542046,52.94853477936842],[-120.36017603802429,52.948491808091624],[-120.36007709562871,52.94844828270666],[-120.35999316867758,52.948404344752475],[-120.35989415308545,52.94836137323526],[-120.35980948349327,52.94832302900099],[-120.35971113651333,52.9482750264347],[-120.35964296492686,52.94822510873062],[-120.35956007744687,52.94817335157914],[-120.35947585364289,52.94813165615114],[-120.35937706236129,52.9480870042496],[-120.3592781965056,52.9480429152232],[-120.3591941216139,52.948000102607494],[-120.35909466262804,52.94796048135614],[-120.35901058927094,52.947917659671354],[-120.35891164940236,52.947874133292096],[-120.35882816994778,52.947826843544625],[-120.35874520944657,52.94777564876628],[-120.35866165558112,52.94772892185722],[-120.35857810189917,52.94768219488746],[-120.35847916302043,52.9476386681385],[-120.35837918674588,52.9476029512438],[-120.35827869064397,52.94757114816821],[-120.35817789788625,52.947541578969854],[-120.35806194310415,52.9475135299714],[-120.35796196628651,52.94747782165561],[-120.35786072873688,52.94745160312904],[-120.35776023337986,52.947419799608],[-120.35764420559028,52.94739230421888],[-120.35754356211609,52.94736161749317],[-120.35744291878704,52.947330930680785],[-120.35732755876136,52.947298413031376],[-120.35722639564926,52.94727163993407],[-120.35712456532484,52.94724988869466],[-120.35700742457088,52.9472307744986],[-120.35689028392216,52.94721166018583],[-120.35677195586906,52.94720148159868],[-120.35665244033798,52.94720023873379],[-120.35654838381004,52.9471952416974],[-120.35642827451211,52.947198466524966],[-120.3563087589995,52.94719722331128],[-120.35619161875697,52.94717810830312],[-120.35608874998975,52.947164175023964],[-120.35597213013918,52.947141145901035],[-120.35585499020223,52.947122030557445],[-120.3557533094019,52.94709916115115],[-120.35563720895544,52.94707222673681],[-120.35553493450851,52.947053825057054],[-120.35541883432394,52.94702689042668],[-120.35531656008041,52.94700848855682],[-120.35521599283796,52.94697724581335],[-120.35510004154594,52.94694919388897],[-120.35499999489139,52.946914037067735],[-120.35490061718636,52.94687384929113],[-120.35483289895245,52.94682057782573],[-120.35476592452532,52.94676171249351],[-120.3547294215766,52.94669869936813],[-120.354782480501,52.946637173901934],[-120.35486497224251,52.94657931053326],[-120.35493274729023,52.946519616054076],[-120.35498565721439,52.94645920746821],[-120.35503879030435,52.946397118920416],[-120.35509244232463,52.946331125388596],[-120.35514550026592,52.946269599745165],[-120.35518376684952,52.94620680601329],[-120.35522218298372,52.946142886351694],[-120.35524684716519,52.94606987976657],[-120.35527039711357,52.94600525498517],[-120.35527989943155,52.945933768313814],[-120.35528955019059,52.945861164659256],[-120.35529831008179,52.945795262877105],[-120.35532327087435,52.94572002230168],[-120.35534682170088,52.945655388555394],[-120.3553710399764,52.945585732861396],[-120.35540938044048,52.94552237607238],[-120.35543404394117,52.94544936942047],[-120.35545774172881,52.94538362759743],[-120.35549675057095,52.945315239894555],[-120.35553560963567,52.94524797809188],[-120.35560278777284,52.945192751099135],[-120.35565576992047,52.945131779205404],[-120.35572413538884,52.945067616296846],[-120.35576188103016,52.94500872729488],[-120.35580073939595,52.94494146539217],[-120.3558397472816,52.944873077557276],[-120.35586381585095,52.94480453870965],[-120.35588810642896,52.94473432885074],[-120.35589745897272,52.94466395905523],[-120.3559063661285,52.94459694019883],[-120.35591586706373,52.94452545341491],[-120.3559395647802,52.944459702522025],[-120.35596437520563,52.944385578730724],[-120.35598799795082,52.944320390781],[-120.35601228804762,52.94425018087586],[-120.35602164027964,52.944179811049715],[-120.35604593142827,52.94410959219582],[-120.35606955389535,52.94404440421879],[-120.35607905443314,52.943972917397694],[-120.35607324554428,52.943904067588285],[-120.35605324005215,52.94382948189414],[-120.35604676381249,52.94376565402729],[-120.35604154878683,52.943692336280584],[-120.35603640740815,52.94361846450748],[-120.35601521573577,52.94355280571281],[-120.35597886213624,52.94348867586975],[-120.35587993685252,52.943445137890315],[-120.35578064004869,52.943404396748555],[-120.35538035471619,52.943377300075134],[-120.35514431458289,52.94335247177672],[-120.35494141728734,52.943303380601975],[-120.35472536356131,52.94324073416953],[-120.35452536330794,52.943169856688],[-120.35434237995419,52.94308350127173],[-120.35422375238893,52.942963141902624],[-120.35410542248167,52.94284054844532],[-120.35400210536187,52.94271755207338],[-120.3538845192681,52.942589373476174],[-120.35378046089284,52.942471961790275],[-120.35366280129942,52.94234434591028],[-120.35357531597089,52.94221479852465],[-120.35347244742464,52.94208845070191],[-120.35336846507178,52.94197048459414],[-120.35325028890051,52.94184677322382],[-120.35314727369395,52.94172154206822],[-120.35306045894532,52.94158697231091],[-120.35295751977964,52.94146117801174],[-120.35288527222691,52.94132955638664],[-120.35279823572907,52.941196666340915],[-120.35274189179117,52.94105794009434],[-120.35271557118752,52.940918408564805],[-120.35268932561227,52.94077831405988],[-120.35266300535388,52.94063878249495],[-120.35262122835897,52.94050300446402],[-120.35257974868043,52.940364992447826],[-120.35253797221985,52.94022921436481],[-120.35249708718258,52.940086734377296],[-120.35244015158712,52.93995247581164],[-120.35238373560523,52.93981431224628],[-120.35232687559042,52.93967949064579],[-120.35223925008634,52.939551067972694],[-120.35215177483212,52.93942151930879],[-120.35203412855464,52.93929390156411],[-120.35193067749181,52.939172020088584],[-120.35181251326951,52.93904830706418],[-120.3517091383037,52.938925862417996],[-120.35157566756953,52.93880478559177],[-120.35145639069061,52.938689453996666],[-120.35130694575497,52.938576035209884],[-120.35117169459957,52.93846836165196],[-120.35102180433407,52.93835830236152],[-120.35087124690736,52.93825326481024],[-120.3507053825658,52.93815086338666],[-120.35055438094383,52.93804917635337],[-120.3503884444672,52.93794732849206],[-120.3502220618621,52.93784884026153],[-120.35003955586183,52.93775912694345],[-120.34985727410563,52.937667733402556],[-120.34967268937021,52.9375936571994],[-120.34947324355858,52.93751886593834],[-120.34925782165064,52.93745174134236],[-120.34905681745467,52.93738867316513],[-120.34885618478995,52.93732281666769],[-120.34865622092818,52.937251937897884],[-120.34845789376291,52.93716876310671],[-120.34829040456793,52.937078644956955],[-120.34812395649251,52.93698070772965],[-120.34794264771243,52.93688205530246],[-120.34777634984435,52.93678300059571],[-120.3475927381521,52.936701665215075],[-120.34740927699822,52.9366192036326],[-120.34721050807114,52.936539386571106],[-120.34699464990427,52.93647559978494],[-120.34679164612608,52.93642761133739],[-120.34655683889558,52.936393829919695],[-120.34633451450189,52.93637863478852],[-120.34609613956002,52.93637165983906],[-120.34585776469628,52.936364684406996],[-120.34563425115917,52.936358423744366],[-120.34539468684969,52.9363603831636],[-120.34517057858196,52.936358589514],[-120.34493391353094,52.936338771489304],[-120.34469851339477,52.93630945425459],[-120.3444784209546,52.93627750103044],[-120.34425966740459,52.93623549464652],[-120.3440414354517,52.93618957398616],[-120.34382327774469,52.936143098902136],[-120.34360541800505,52.93609438947007],[-120.34338785626613,52.93604344569147],[-120.34317126137041,52.935985245667226],[-120.34295422197108,52.93593038721822],[-120.34275301055403,52.93586898814432],[-120.34253656618662,52.93580966997588],[-120.34232004862855,52.935750905424435],[-120.34210241638694,52.935700513276785],[-120.34188530482723,52.93564621580041],[-120.34168364991287,52.935588165796574],[-120.34148363233977,52.93551782878686],[-120.34131668462295,52.93542379570235],[-120.3411678733981,52.93530589594579],[-120.341049155952,52.935186639703964],[-120.34096120228914,52.93506099624084],[-120.3408741420242,52.93492865089107],[-120.34078730492769,52.934794634481115],[-120.34071518132554,52.93466244190284],[-120.34064290816303,52.93453137517402],[-120.34057138073207,52.934394714611756],[-120.34049895964625,52.93426476474176],[-120.34044273997311,52.9341254690726],[-120.340400561883,52.933993037073755],[-120.34035957463819,52.93385166929986],[-120.34031799237192,52.933714769374276],[-120.34027700566926,52.93357340154751],[-120.34023601923883,52.933432033694295],[-120.34014903837787,52.93329913365978],[-120.34006109127156,52.93317348937934],[-120.339942382873,52.93305423186588],[-120.33977641624543,52.93295293169082],[-120.33961000389071,52.932854982180764],[-120.33944314577266,52.93276038333435],[-120.33927680995644,52.932661870389694],[-120.3391103998891,52.932563920155935],[-120.33894451098506,52.93246206476151],[-120.33879519508292,52.93234807564803],[-120.33866007038961,52.93223982435776],[-120.33852598724711,52.93212376306833],[-120.33842281618165,52.932000189273424],[-120.3383358439069,52.93186728778284],[-120.33827941057748,52.931729670795555],[-120.33829801926557,52.931590049852474],[-120.33833111567053,52.93145393302218],[-120.33837959166624,52.931314627421656],[-120.33841268640535,52.93117851948113],[-120.33843233646034,52.931031079692765],[-120.33843548967037,52.93089521037748],[-120.33843916447415,52.9307554271937],[-120.338457623351,52.93061692311046],[-120.33847719796552,52.930470046216115],[-120.33851036676096,52.9303333752255],[-120.33852882522315,52.930194871095395],[-120.33853242463584,52.93005565080103],[-120.33853624790578,52.9299147505733],[-120.33853954955781,52.92977776419312],[-120.33852895937379,52.929632805818976],[-120.33851807274095,52.92949007243391],[-120.33850644071173,52.929352932818055],[-120.33848024902498,52.92921283415837],[-120.33845383363101,52.929074415403],[-120.33844294620198,52.92893169089777],[-120.33844617424576,52.92879525845473],[-120.33844977381037,52.92865603804356],[-120.33846882715764,52.928513065900844],[-120.33847257547751,52.92837272849489],[-120.33847632377268,52.92823239107659],[-120.33847999702172,52.92809261659913],[-120.33848382028887,52.92795171620352],[-120.33847285921622,52.92780954562028],[-120.33844644471695,52.92767112674412],[-120.33840487463884,52.927534225624655],[-120.33836345368074,52.92739620750839],[-120.33829179550906,52.92726067087046],[-120.33822028783992,52.92712400827131],[-120.33811735246857,52.92699876284195],[-120.33798239414622,52.9268894023842],[-120.33780003594711,52.92679910654011],[-120.33768593750622,52.926757633481316],[-120.33758587765128,52.926723024386185],[-120.3374860418643,52.92668673528262],[-120.33738598352947,52.92665211708024],[-120.3372865947136,52.926612476896324],[-120.33718608888245,52.92658121836751],[-120.33708670041818,52.92654157801308],[-120.33698619609225,52.926510310376514],[-120.33688665909149,52.92647178682082],[-120.33678742005208,52.92643102924162],[-120.33670281488727,52.92639266788317],[-120.33660335346111,52.92635358113276],[-120.336520014838,52.926305720936185],[-120.33642114819015,52.92626217508935],[-120.3363218362295,52.92622197112896],[-120.33622066255326,52.92619573366005],[-120.33612008463051,52.9261650282296],[-120.33600360696379,52.92614142502131],[-120.33590250753574,52.92611463326131],[-120.33578603012751,52.92609102983699],[-120.3356848570926,52.92606479190539],[-120.33556897562622,52.926036720393135],[-120.33546906930145,52.926000983579655],[-120.33538498801492,52.92595870740847],[-120.3353015764747,52.92591140928939],[-120.33520271318014,52.92586785347294],[-120.33511915308814,52.92582167218954],[-120.33503589223744,52.925773247974824],[-120.33493695447136,52.9257302548831],[-120.33485406575767,52.9256790425865],[-120.3347865552595,52.92562464193863],[-120.33471949295094,52.925566881412905],[-120.33465205787003,52.92551191773268],[-120.33456954169179,52.92545791727872],[-120.33450203309935,52.925403507524535],[-120.33443459855795,52.92534854371419],[-120.33435230699371,52.92529286318416],[-120.33426941983475,52.92524165046207],[-120.33420131496071,52.925191717331515],[-120.33411835429801,52.92514105851542],[-120.33403598847349,52.925085940708314],[-120.33396788531397,52.92503599850219],[-120.33386902422471,52.924992450477795],[-120.33376859980504,52.92496062604881],[-120.33364914738254,52.924959359821585],[-120.33352842930995,52.92496758321726],[-120.3334226421521,52.92497596927251],[-120.33330080606514,52.924992574147154],[-120.33319442288094,52.92500542786039],[-120.33307303357005,52.92501868160201],[-120.33296709720963,52.92502818421306],[-120.33284585675224,52.9250403207549],[-120.3327388773434,52.92505764191675],[-120.33261763673708,52.925069778223225],[-120.33250998607384,52.9250921299865],[-120.33238859630274,52.92510538302157],[-120.33228102052736,52.925127171624766],[-120.33217396676297,52.92514504628656],[-120.33206639077757,52.925166834693066],[-120.33194425558894,52.92518567208983],[-120.33183667938333,52.925207460285854],[-120.331729027962,52.92522981133293],[-120.33162130251276,52.92525271629517],[-120.33151365205613,52.92527505820896],[-120.33140473415368,52.925306898678976],[-120.33129581608833,52.9253387390475],[-120.33120100986355,52.92537688120781],[-120.33110694864928,52.92540943847733],[-120.33099862625495,52.925436810718075],[-120.3308890362685,52.925473681506965],[-120.33078138486896,52.925496022747964],[-120.33067306204505,52.925523394687595],[-120.3305665276906,52.9255373629836],[-120.33044766996059,52.9255316256599],[-120.33033060094456,52.925512484676],[-120.33021293579458,52.92549781142167],[-120.33011072416716,52.92547938742043],[-120.32999544423097,52.9254468425652],[-120.32989375396158,52.925424513478134],[-120.3297777289855,52.92539755321467],[-120.32967372890448,52.925392532365606],[-120.32955487169909,52.92538679413979],[-120.32943422556765,52.925394459321666],[-120.32931298306039,52.92540659222169],[-120.3292071200351,52.925415528498306],[-120.32908587740312,52.92542766116423],[-120.32897889549156,52.925444978904515],[-120.32887176439809,52.92546341350719],[-120.32876403682077,52.92548631585107],[-120.3286416010526,52.925507383736516],[-120.32853573644296,52.9255163283444],[-120.32841449333264,52.92552846031798],[-120.32829369748418,52.9255372412894],[-120.32818790788022,52.92554562263692],[-120.32806785751781,52.925548818581724],[-120.32794840361504,52.92554754656944],[-120.32784440338341,52.925542524104486],[-120.32772614250665,52.92553231619852],[-120.32760728517354,52.92552657600661],[-120.32748962092327,52.92551190003],[-120.32737195675409,52.925497223935565],[-120.32726974635752,52.92547879746728],[-120.32716865519261,52.925451989259344],[-120.32705442157639,52.92541162281892],[-120.32696930579827,52.925377159324526],[-120.32686925789984,52.925342541090586],[-120.32675450343322,52.925306079239625],[-120.32665348698244,52.92527871657552],[-120.3265529181264,52.92524800295302],[-120.32643689574687,52.92522103939348],[-120.32633587970197,52.9251936764554],[-120.32621881346385,52.9251745313779],[-120.32610115066507,52.92515985401013],[-120.32599834495181,52.925145894260275],[-120.3258812038141,52.92512731179253],[-120.3257806358728,52.92509659750738],[-120.3256807399707,52.925060852365455],[-120.32558136576847,52.92502120225964],[-120.3254973702295,52.92497836499015],[-120.32539799639052,52.924938714727624],[-120.3252981011801,52.92490296925741],[-120.32519857851355,52.924864435780414],[-120.32509868245128,52.92482869907493],[-120.32499811577979,52.92479798411553],[-120.32489822123526,52.92476223830278],[-120.32478235042697,52.924734156148986],[-120.32468178420699,52.924703440917526],[-120.32456412323991,52.92468876200896],[-120.32446191599935,52.92467033309325],[-120.32434350914532,52.92466123873807],[-120.32422584841152,52.92464655949099],[-120.32410878462652,52.924627412308546],[-120.32400717460831,52.924604515179645],[-120.32389122960883,52.92457699509079],[-120.3237906644029,52.92454627909492],[-120.32369024856956,52.92451444605863],[-120.32357370829226,52.92449138453573],[-120.32347329275058,52.92445955131332],[-120.32337213118142,52.924433302772535],[-120.32325670999028,52.92440186825025],[-120.32315510096855,52.924378970382605],[-120.323039157134,52.92435144945059],[-120.32293695136319,52.92433301920688],[-120.32281988901987,52.92431387073876],[-120.32270267752921,52.92429583910698],[-120.32260106905846,52.924272940759515],[-120.32248520109688,52.924244856335825],[-120.32238471291714,52.92421357618836],[-120.32228310481369,52.92419067756518],[-120.32216649095456,52.92416817758842],[-120.32204883233386,52.924153496160656],[-120.32194603037927,52.924139532862775],[-120.3218288197386,52.92412150035877],[-120.32171116136335,52.924106818592975],[-120.3216089567546,52.92408838719333],[-120.32149308994963,52.92406030178988],[-120.32139424388622,52.92401674326227],[-120.32130921071939,52.923981712701966],[-120.32120924594457,52.92394652668399],[-120.32110928133496,52.92391134058036],[-120.32099281815721,52.9238877224858],[-120.32089173352797,52.92386091779627],[-120.32077452410081,52.923842884239264],[-120.32065746407756,52.92382373361486],[-120.32054040415962,52.92380458287363],[-120.32043820078317,52.923786150454006],[-120.3203205438141,52.92377146729507],[-120.3202028869262,52.923756784018444],[-120.32009948925888,52.92374728690455],[-120.31998355031413,52.92371975401634],[-120.31988254197857,52.92369238551468],[-120.31978183242693,52.923662783026685],[-120.31968261631064,52.923622010957224],[-120.31956712477918,52.92359113574374],[-120.31946731169589,52.92355483128855],[-120.31938213169987,52.92352091627534],[-120.31928276695741,52.92348126081447],[-120.31918332713167,52.92344216821098],[-120.31908403802774,52.92340194963813],[-120.31898422579981,52.92336564476904],[-120.31888351764556,52.92333604150647],[-120.31876825209518,52.92330348561282],[-120.31868479013733,52.92325672964896],[-120.31860088029353,52.92321332446975],[-120.31850091956079,52.92317813613493],[-120.31838557945206,52.92314614280533],[-120.31828442413997,52.92311988987076],[-120.31816736722443,52.92310073676115],[-120.31804911545062,52.923090519117174],[-120.31794332991016,52.92309889126965],[-120.31783508021914,52.92312568849276],[-120.31773966935019,52.923168287651464],[-120.31764425829034,52.92321088673168],[-120.31754884703957,52.92325348573343],[-120.31746754488096,52.923302388204384],[-120.31740050121539,52.92335647722649],[-120.31731852583381,52.92341041031946],[-120.31725133241615,52.92346561619958],[-120.31716950722573,52.923518423303136],[-120.3171023134444,52.92357362909453],[-120.31702041256429,52.92362699903186],[-120.31669909130683,52.92368171594982],[-120.31647266037696,52.923697738789954],[-120.31623070114252,52.92371806401195],[-120.31600367213751,52.92373855372962],[-120.31577529802178,52.92376909550888],[-120.31554752133277,52.923795169068015],[-120.31531922071073,52.923825155957],[-120.31509263904817,52.923842293084675],[-120.31486560883314,52.92386278060552],[-120.31462611343628,52.92386467743183],[-120.31440207225617,52.9238628252004],[-120.31416257683838,52.923864721083454],[-120.31393973152613,52.92385393243352],[-120.31372219369986,52.92380348746065],[-120.3135398989803,52.923713162801384],[-120.31335708239811,52.92362674268197],[-120.31319076728087,52.923528755272976],[-120.31308806373322,52.923402370745556],[-120.31298543614528,52.92327542318032],[-120.31286727970537,52.92315278682658],[-120.3127488249275,52.9230323842272],[-120.31259841612885,52.9229272967643],[-120.31243210548955,52.922829308241134],[-120.31224989303615,52.92273841859158],[-120.31208305999965,52.922644343324066],[-120.31190129767242,52.922550102302765],[-120.31173401873849,52.922459368415346],[-120.31155225797339,52.92236512684429],[-120.31138565285256,52.92226937068879],[-120.31120329548217,52.92217959632748],[-120.31102101305818,52.922089267676796],[-120.31083708748989,52.92201121613627],[-120.31062023518169,52.92195574361362],[-120.31040196195472,52.921910886076674],[-120.31018391414467,52.92186434825795],[-120.30996579262055,52.921818364035396],[-120.3097471474265,52.9217762931585],[-120.30951289918033,52.92173908674758],[-120.30929350686456,52.92170259971536],[-120.30907426452569,52.92166499533598],[-120.30883897023119,52.92163560614282],[-120.30861965323393,52.92159856385133],[-120.3083855565693,52.921560238255694],[-120.30816676463789,52.92151928137281],[-120.30794804854077,52.921477761146356],[-120.30772880854778,52.92144015425538],[-120.30751076606998,52.921393611470805],[-120.30729302336182,52.92134483441029],[-120.30705952789614,52.9213020384298],[-120.30683849369503,52.92127783309718],[-120.30660073302329,52.92126687331399],[-120.30637730454302,52.92126053806654],[-120.30614081693453,52.92124007894562],[-120.30592038230549,52.92121140415197],[-120.30568434425385,52.92118759331219],[-120.30546331142858,52.92116338539513],[-120.30522562719871,52.92115185989903],[-120.30500160070297,52.92114998977068],[-120.30476212012695,52.92115186652876],[-120.30452323840373,52.92114927507192],[-120.30430100864386,52.921134000426875],[-120.30406272597085,52.92112694030859],[-120.30383750176642,52.92113400341514],[-120.30359674901491,52.92114536724827],[-120.30337152463575,52.92115242946293],[-120.30313384103333,52.921140899742376],[-120.30290981468723,52.921139025632264],[-120.30267093314886,52.921136430415736],[-120.30244570866343,52.92114349085876],[-120.302207426245,52.92113642698432],[-120.3019838493183,52.92113120032468],[-120.3017455670453,52.921124135515065],[-120.30150788404113,52.92111260251054],[-120.30128385791555,52.92111072530545],[-120.30104557587325,52.921103659078504],[-120.3008084924358,52.9210876569512],[-120.3005861145089,52.921073492218234],[-120.30034963072252,52.9210530214584],[-120.30012680362898,52.92104220663732],[-120.29988852216216,52.92103513806746],[-120.29966269836903,52.92104666088957],[-120.29942134439099,52.92106249282049],[-120.29919731862113,52.921060611643576],[-120.29895903720565,52.921053541191924],[-120.29873680994208,52.92103825603949],[-120.29850197587582,52.921005495395455],[-120.29614896638438,52.921046931891915],[-120.29023016301818,52.92069691817159],[-120.28322073020483,52.921229980869406],[-120.27629937639706,52.92210645337745],[-120.27403476640254,52.92226755595138],[-120.26664346969267,52.922855800623346],[-120.25955127163479,52.92333117096378],[-120.25415721854039,52.92330067275709],[-120.24981234519129,52.92269957696943],[-120.24652890196613,52.92176976178433],[-120.24079160480107,52.919970202851395],[-120.23530991992138,52.9195961031566],[-120.23058289270777,52.91928075209569],[-120.22453173334137,52.91924693853725],[-120.21751735331073,52.92068712795092],[-120.21093032849019,52.92436456679762],[-120.20520676534976,52.927185403615255],[-120.20426293501352,52.927635779721726],[-120.19876150886579,52.92805675130887],[-120.19336626427331,52.92813755084759],[-120.18941067352364,52.927315104570525],[-120.18690540245512,52.925075675803576],[-120.18652615224094,52.924787060303785],[-120.1806816879196,52.92378250891051],[-120.1770904606114,52.923470137890476],[-120.17662883320699,52.92323755008589],[-120.1743860770838,52.92214362080175],[-120.17064722040432,52.919093756924816],[-120.16749617591847,52.915360081268844],[-120.16653387898785,52.9115872120535],[-120.16499857334205,52.90741591436758],[-120.16270093290196,52.90357321157164],[-120.1612397287914,52.900934671574085],[-120.15725868256816,52.89651331076293],[-120.15307627246156,52.89204069205163],[-120.14982621487314,52.88916042421994],[-120.14581037284735,52.88685295988595],[-120.1437414804113,52.88592607318498],[-120.14131569286015,52.8847704880479],[-120.13869055263727,52.88332770803692],[-120.13785424717925,52.88234926630599],[-120.13665824546464,52.88051232471764],[-120.1359455747684,52.87885469079408],[-120.13549258661033,52.87748103138881],[-120.1349396777323,52.876507162425675],[-120.13446982954682,52.87644768581487],[-120.13069310692529,52.87642687444432],[-120.12769034496897,52.87588582914477],[-120.12656704737547,52.8753657521457],[-120.12507564452,52.87415816347889],[-120.12265917466732,52.871970335253174],[-120.11976197131413,52.87012828917],[-120.11516348739404,52.868385210714486],[-120.11104960999941,52.86670450129802],[-120.1107611627952,52.866414517059866],[-120.10910317664053,52.864689488543355],[-120.1061294408649,52.86232930567639],[-120.1041829754482,52.86031755603251],[-120.10186346999986,52.85830498826479],[-120.09999248463099,52.85715156574349],[-120.09842071036434,52.85502585232139],[-120.09680775084006,52.85050731940795],[-120.09538432376375,52.84666962002144],[-120.0947435942125,52.845584790068244],[-120.09113990898447,52.8411102921731],[-120.08768831689027,52.83919993166028],[-120.08338541369746,52.837402782183446],[-120.08019167276515,52.83600391547025],[-120.07639031898367,52.833180922482455],[-120.07444002653317,52.831001310271354],[-120.07004742423774,52.82942903376204],[-120.06678176212652,52.827696603576726],[-120.06444531530971,52.82636540177006],[-120.06321958960781,52.82584502225465],[-120.06068185640311,52.825423438182284],[-120.05663346274198,52.825454832439235],[-120.05116453248068,52.82518623278929],[-120.04741628782065,52.82424459579513],[-120.04656334473985,52.82383463031896],[-120.04181984617014,52.82083591515055],[-120.03869549024328,52.81693367121737],[-120.03725038713229,52.81361501670178],[-120.0355562840242,52.80909323282275],[-120.03391427444576,52.80622557096088],[-120.0336607823142,52.8046274835669],[-120.03361972992951,52.80193864621254],[-120.033680728768,52.79937309153517],[-120.03203562343087,52.79685046619148],[-120.02936151992002,52.79369106462287],[-120.02678053212257,52.79093388688892],[-120.02604479760332,52.79001292821645],[-120.0251654764872,52.78692585430671],[-120.02333791080417,52.784116487627834],[-120.0214140225748,52.78135782020748],[-120.02124666250249,52.78010651466182],[-120.02132121549492,52.777024239210725],[-120.02061624713691,52.77450494474123],[-120.01933951862452,52.77255586129154],[-120.01663162456626,52.77082260858559],[-120.01543355880936,52.770013981117344],[-120.01386761072682,52.76800446257575],[-120.01272844101923,52.764230196099],[-120.01230503344532,52.761833176960245],[-120.01039302959946,52.7587897032798],[-120.00707541769019,52.754830069821466],[-120.00579734600123,52.75321697030153],[-120.00358215240863,52.75074656335924],[-120.00127217921671,52.74884597342927],[-119.99978595340423,52.74786824793471],[-119.99853247540169,52.746824850034386],[-119.99578552679488,52.74623280040638],[-119.99328713014042,52.745357081883114],[-119.99224748732533,52.74491225682997],[-119.98795665377243,52.743544452672175],[-119.98478745246148,52.74204073862163],[-119.97927222196907,52.740803601120035],[-119.9747359503072,52.74012447394202],[-119.9716018444983,52.73953660408868],[-119.96950419742556,52.73899255601471],[-119.9689311395192,52.73883195986618],[-119.96672324986497,52.73748808224129],[-119.9648192719333,52.73431240874841],[-119.9646926245348,52.73099621716756],[-119.96453122773111,52.72676770742509],[-119.9645643274568,52.72516491057959],[-119.96305280470148,52.722272058962794],[-119.95963520169269,52.71917378038409],[-119.95666202888317,52.71767139771619],[-119.9527850598161,52.71698094193398],[-119.94918790703787,52.716627655335316],[-119.94669014890304,52.71786491180043],[-119.94452225247308,52.720238975484776],[-119.94099932014974,52.721773365953524],[-119.93611916456288,52.72206461100802],[-119.93140065165483,52.72184662970604],[-119.92511660240291,52.722272032506645],[-119.9206194841147,52.72290369317011],[-119.9195752009905,52.72291796985863],[-119.91373826120103,52.722711377561474],[-119.90749080367189,52.72193864363583],[-119.9039771457121,52.72089484871625],[-119.89660881130948,52.717447115730586],[-119.8913777553538,52.71602857119547],[-119.88894495285359,52.71388777351292],[-119.88692508653254,52.709800513094756],[-119.88456792046625,52.70474553657678],[-119.882839978187,52.69841852877015],[-119.87881429542576,52.69338502743674],[-119.8736970745797,52.68984813753252],[-119.86974581923046,52.68721142172374],[-119.86647250416316,52.6851405743954],[-119.86311845466282,52.68301249854961],[-119.86196483332456,52.682344364993064],[-119.86154908556014,52.68389181516964],[-119.86068233303682,52.68629975956775],[-119.85916975840206,52.68843861346347],[-119.85403691339356,52.689988121026516],[-119.84794502664563,52.69023874038626],[-119.83817200305285,52.687847972935046],[-119.83236979364226,52.68609313993286],[-119.82720429970554,52.68364152920766],[-119.82300730264093,52.68169767793615],[-119.81846255343115,52.67815007523167],[-119.81420136174225,52.67460097002434],[-119.80837570190927,52.67210214144959],[-119.8031498762186,52.67039423800446],[-119.79452565104057,52.66833044334926],[-119.78817813972708,52.666978991339015],[-119.78485979840755,52.666275736845236],[-119.77813061423204,52.66458722277988],[-119.77367565121897,52.66321545735544],[-119.7694849804231,52.661664671281606],[-119.76673012696375,52.66067085914925],[-119.765317187728,52.660570599425974],[-119.76503580745342,52.660766522555654],[-119.76227550816166,52.66266384023801],[-119.75875889365226,52.667395873579224],[-119.75539185718549,52.6734398368933],[-119.75312970751598,52.67609272711487],[-119.74981834292758,52.678593752704685],[-119.74566779592404,52.680929912431026],[-119.74009195879223,52.68019611563377],[-119.73491347524173,52.679797278343386],[-119.72813444344732,52.67976170044456],[-119.72510229204347,52.6788302304395],[-119.7203495498021,52.67745955132529],[-119.71626422426434,52.676306879543596],[-119.70977946097364,52.67609421564945],[-119.70003869574438,52.68020562292849],[-119.69230300830476,52.68584018000174],[-119.68522106922426,52.69106522858227],[-119.67718008746625,52.69561799891055],[-119.672832249224,52.69783877191969],[-119.66357622182461,52.699827448007014],[-119.65238434404932,52.700011111174796],[-119.64476500839692,52.70009453026467],[-119.63719005996457,52.70137771576999],[-119.63157403043817,52.702699223530004],[-119.6282062824048,52.70341850963046],[-119.62419654393433,52.704547700827824],[-119.61892543279195,52.70455176837856],[-119.61531567084218,52.703103677207196],[-119.61330621896687,52.69872216752554],[-119.61371048052278,52.696318148076735],[-119.61364561368934,52.69117874319418],[-119.61286334495476,52.68695544377212],[-119.61077378682228,52.682917123853215],[-119.60768218901238,52.67712574137197],[-119.60351970666835,52.67282845382329],[-119.59677358558793,52.667412380763786],[-119.58816572533098,52.66242014561023],[-119.58481472242647,52.66016972285181],[-119.58192663508075,52.657513081407494],[-119.58041420248416,52.6542152052854],[-119.5784792328137,52.651949637106526],[-119.57490614714689,52.65227330562062],[-119.56974670771741,52.65552939475432],[-119.56353731005868,52.65913474565148],[-119.5615931031916,52.65989624172051],[-119.55433829130524,52.66282955144946],[-119.55062727418158,52.664354730571425],[-119.54295770015777,52.66569057174819],[-119.53761388048743,52.666203260778985],[-119.53778850605345,52.66603229941502],[-119.54005395015552,52.663151211855414],[-119.54107732800455,52.659136649320494],[-119.54011852609774,52.65514791172323],[-119.5372993984319,52.65146458837799],[-119.53513747109722,52.64806014069885],[-119.53374058488545,52.64549824635435],[-119.5330958347311,52.642191921337805],[-119.53187010606392,52.63889386076912],[-119.5307630779561,52.63638455327035],[-119.53050239283877,52.633587940870854],[-119.52968296771039,52.63114408674298],[-119.52681486011441,52.62917506508981],[-119.51741186575389,52.62903731946674],[-119.50499417844031,52.63162113051732],[-119.498762900154,52.634082975633234],[-119.48881996574225,52.638067738345384],[-119.47981851504393,52.642496086251626],[-119.47789092375672,52.64411707647774],[-119.47258417320926,52.64605200893277],[-119.46672050786276,52.64822171439592],[-119.45820130885461,52.649274770387024],[-119.45288663008502,52.64727008904992],[-119.45039325535261,52.64529591758343],[-119.44597417636894,52.64133483995616],[-119.4379898523315,52.63832659988336],[-119.42681481519537,52.63809088998416],[-119.42299352786866,52.63915347012546],[-119.41280254825128,52.645073994130854],[-119.40715912532127,52.64878304856653],[-119.39947465273261,52.64971364394283],[-119.39139630167195,52.64972597221449],[-119.38372178574802,52.651164359052686],[-119.37541320960729,52.653522512946495],[-119.37066895958378,52.65533762630966],[-119.36664145544025,52.65617459668925],[-119.36109323889013,52.65588246883768],[-119.35830581375059,52.65362091522903],[-119.3595053950761,52.64829487463164],[-119.35900683288239,52.647100243118174],[-119.36097873164205,52.64331086645644],[-119.36158701675151,52.64073499633437],[-119.36226906567255,52.637875142161576],[-119.36215193615534,52.633075194154884],[-119.36171502564517,52.63033508363366],[-119.36162542367033,52.62679466911157],[-119.36346079581025,52.62483521475726],[-119.36726270203187,52.62275075036387],[-119.37363832355817,52.61863492067955],[-119.37458348265923,52.61502843690994],[-119.3725317352699,52.611676423057375],[-119.36822752350484,52.608286169297735],[-119.36542074048182,52.60482567726178],[-119.36344383111958,52.60090299146166],[-119.361765729806,52.597259007320446],[-119.35997030584042,52.592649703860374],[-119.35860284943189,52.59054929787285],[-119.3537583818719,52.58778883260286],[-119.34558959722447,52.58769028102237],[-119.33757386296217,52.59032938422831],[-119.32147046472473,52.595952642499746],[-119.3145350908084,52.59669618216905],[-119.30669477451801,52.59818889065134],[-119.29989436463619,52.6008172420649],[-119.29315040669114,52.60156327651944],[-119.28804864579773,52.60017498229932],[-119.28239884785074,52.599250763507776],[-119.27206350137463,52.59836071582027],[-119.26003975246005,52.59828678257157],[-119.25797153942496,52.59830495432788],[-119.25029629474504,52.59911000422459],[-119.24308865558754,52.59968049055268],[-119.23598341203048,52.60110544188167],[-119.22898865406576,52.60361280818869],[-119.2232946763101,52.60531501778357],[-119.21627358384954,52.6058232908486],[-119.21598772518843,52.6059389324502],[-119.21062361328352,52.60518266772518],[-119.20532886481301,52.603335747031856],[-119.20002638421008,52.60097916129182],[-119.19304344505682,52.59966131181612],[-119.18983337960968,52.6033965655722],[-119.19175243220982,52.6095474866967],[-119.19305164767128,52.61399226048396],[-119.18970203511644,52.61990379184266],[-119.18854286301872,52.6231672437774],[-119.18462989158614,52.62999211806835],[-119.18226247546413,52.633553600057844],[-119.17960206677449,52.63354259769162],[-119.17916245118052,52.63508592561476],[-119.17729387178409,52.63617008089698],[-119.17596926750397,52.63747973865359],[-119.1743768684819,52.63953431252049],[-119.17425837478018,52.64046250430508],[-119.17316989814667,52.6411306413983],[-119.17110229383883,52.64364377386424],[-119.17045616529869,52.64508039854332],[-119.16970524240396,52.64661391262618],[-119.16549996100238,52.64937325867842],[-119.15969993105328,52.652517453331896],[-119.15206965336672,52.656955235237625],[-119.14067059884535,52.66158925927566],[-119.13061641460834,52.66543392086534],[-119.1213458824183,52.667173841302464],[-119.11257822594057,52.66846701389888],[-119.10527868298544,52.67062111148327],[-119.1036494079247,52.66826529769781],[-119.09894937496784,52.66474015352758],[-119.09314878200057,52.663147283603394],[-119.08884065527558,52.658772119154065],[-119.0812932578708,52.65630136405985],[-119.07554807152037,52.64574673076185],[-119.07182432522505,52.6410917722273],[-119.06768506892392,52.64111249718081],[-119.06346129687165,52.637529389713166],[-119.05868181326501,52.633433778741946],[-119.0560368862108,52.63369115804836],[-119.05337426695058,52.6330504224999],[-119.05318138937376,52.633047372741686],[-119.05087194719898,52.62986892819917],[-119.05082717111321,52.626667868464445],[-119.04849622200778,52.62188714927187],[-119.04469415482272,52.61957161380751],[-119.04383317163783,52.61837426780412],[-119.04159520671766,52.61376048130561],[-119.0384410773553,52.61030252942301],[-119.03687244217858,52.60642291362524],[-119.03848448413906,52.60145127066382],[-119.03643351109473,52.59752360318266],[-119.0296373019404,52.59453715458915],[-119.02174038573045,52.59383983833268],[-119.01864425317916,52.593687386529],[-119.01546900433569,52.59456571854813],[-119.01223826498394,52.59823944237244],[-119.00766919313261,52.60054875855969],[-119.00035816571199,52.600988446600425],[-118.99410788846772,52.596856774929705],[-118.99315175964838,52.59035334189878],[-118.98971764240017,52.58700466252535],[-118.9885896974659,52.586270481690136],[-118.98171365362728,52.584252068710256],[-118.97530313373451,52.58320294236154],[-118.97050997375753,52.58225962141137],[-118.96890995831338,52.58186896495024],[-118.96389797656877,52.579727749570985],[-118.95880559987188,52.57735557636526],[-118.95475332421518,52.57652001945561],[-118.95055187281434,52.57740259937621],[-118.94698628622554,52.577761507820405],[-118.94510170785988,52.57657547318412],[-118.94206438698691,52.57436201270943],[-118.93884731873376,52.57260951605629],[-118.935350981521,52.571200396885914],[-118.9301743721516,52.56980224916407],[-118.92819263791999,52.56929878966922],[-118.92527005989591,52.56828636703204],[-118.92338122495666,52.56641308127989],[-118.9245516636616,52.562926984478516],[-118.92902071746944,52.56095944093838],[-118.93116628726814,52.559748865482284],[-118.93121853341532,52.55718376372504],[-118.93091576839277,52.55586938433207],[-118.93162444538665,52.55283615890499],[-118.93307346030322,52.549635036212976],[-118.93013354253851,52.54639685769045],[-118.92313595668094,52.54238047768415],[-118.91849616743436,52.539374645698736],[-118.91423669694122,52.53631686491571],[-118.91044143201782,52.53296897622899],[-118.90636339985791,52.52944988612961],[-118.90446136968262,52.52740235892115],[-118.90270162299822,52.521988459315175],[-118.90246619431774,52.51839288700663],[-118.90427221205043,52.51375889413249],[-118.90750308705118,52.50974588004118],[-118.9083637180755,52.504544363441106],[-118.90541677929055,52.50164662182685],[-118.89870785481426,52.49728689082278],[-118.89257745701805,52.494007536168844],[-118.8891710698382,52.49093974334798],[-118.88660714720355,52.488159463662655],[-118.88437039568936,52.482515689886355],[-118.88411759412782,52.4769799630629],[-118.88707115587296,52.47365117807049],[-118.89462189828005,52.47155815433941],[-118.90039823892103,52.47033058995095],[-118.90498879272627,52.469907848673444],[-118.90629001131664,52.46938864090722],[-118.90905511713551,52.4669170303571],[-118.91203116528307,52.4649606955036],[-118.91884953987416,52.463785254125824],[-118.92274426607263,52.46182504589456],[-118.92447124058586,52.45827142055239],[-118.92574837431499,52.455467649569144],[-118.93002665458793,52.453960417012404],[-118.93243184654636,52.4519502641765],[-118.9330407249915,52.448522178546725],[-118.93402560608624,52.44577883625222],[-118.93613403860515,52.443137721938655],[-118.9389016616577,52.44026917907266],[-118.94110045563993,52.43734512106119],[-118.93609590818907,52.434457752898176],[-118.92849840758113,52.43284270613452],[-118.92329264681442,52.427679734363274],[-118.92087039661506,52.421984060576435],[-118.92084075648849,52.42072669558031],[-118.92267733394624,52.41757688479297],[-118.92765855829812,52.413665955483374],[-118.9304154405328,52.40959549455138],[-118.92811120909997,52.40561103248318],[-118.92594112183673,52.404140180424946],[-118.92517684651861,52.4037487783135],[-118.92785769564627,52.40184632969813],[-118.93399132417271,52.39856153014824],[-118.94109573161367,52.39332358923473],[-118.94534666913093,52.3900485873608],[-118.94511152418285,52.386794287293625],[-118.93741801741885,52.38455268393679],[-118.93305601866203,52.37995428967498],[-118.93382787455636,52.37480784547217],[-118.93463970843163,52.37337706010308],[-118.93234581975334,52.369339033098946],[-118.92762394424396,52.366222304073375],[-118.9260003528859,52.363778050628234],[-118.92483722290413,52.360243191988424],[-118.92477671843693,52.35647659994977],[-118.92399291918518,52.353512985273944],[-118.9172789190809,52.34823571391216],[-118.90969020795116,52.34576545724294],[-118.9020047755412,52.344155116321865],[-118.89417360395687,52.343967283116584],[-118.8880161403358,52.344114493407844],[-118.88353950055601,52.34419577946147],[-118.87213664943421,52.34362104649766],[-118.86128878241155,52.342196069154035],[-118.85454986484446,52.34068197459156],[-118.84526393116451,52.33662401208554],[-118.83700900944285,52.33295074202797],[-118.82903610353377,52.330075712451674],[-118.82022524355355,52.32709282002346],[-118.81132432003322,52.32359425034565],[-118.80196837491611,52.32043955400404],[-118.79334257694664,52.317166137223765],[-118.7881839014017,52.31445262988454],[-118.78478632029879,52.31092869526066],[-118.78435795913325,52.307050822276885],[-118.79038635484544,52.30376921181692],[-118.80117559791472,52.302122748476904],[-118.80823848177482,52.299972463903536],[-118.80862187795366,52.29997547422975],[-118.81342879132873,52.29727149052806],[-118.81710714365802,52.29354049158277],[-118.82284621317069,52.29054988990602],[-118.83039841177019,52.29005256810682],[-118.83783616073664,52.288821441831445],[-118.84366206643821,52.285027947440106],[-118.84398035272272,52.280800717317376],[-118.84397859601286,52.28045580387652],[-118.84422824999774,52.27788580269644],[-118.84903051029396,52.274379695505246],[-118.85857790967628,52.27170503125825],[-118.87063671277691,52.267307515569094],[-118.87703423933525,52.264928229614064],[-118.88230205797042,52.26188180291404],[-118.88476914462123,52.258552168482076],[-118.88565847397197,52.2557545731973],[-118.88726608716584,52.25083670372092],[-118.88982685342464,52.24773756266722],[-118.88903192598691,52.243973056507826],[-118.87976006029848,52.24002775923205],[-118.87303012797487,52.23783870551521],[-118.86985197881401,52.23699782349651],[-118.85826899106485,52.2348317963213],[-118.84636099798104,52.23472060028706],[-118.84160762430648,52.234225752519585],[-118.83710889632908,52.23219763983221],[-118.83500803639096,52.228781223729136],[-118.83288996225096,52.22325189540518],[-118.83323570984976,52.220282632889706],[-118.8405496953425,52.21768137348067],[-118.84585270372993,52.21724982368312],[-118.85048001010473,52.215292075240306],[-118.85060947239367,52.2117527401029],[-118.84937401145133,52.20987145305185],[-118.84581447699766,52.20743466213362],[-118.84038118804813,52.20483912451904],[-118.83217009183895,52.202652088423875],[-118.82757401847464,52.20078855994275],[-118.82392307581125,52.19846978737596],[-118.81902771744521,52.1939817693639],[-118.81563554657772,52.19011346275732],[-118.81290018696764,52.18699200055162],[-118.80894479986769,52.18324041594672],[-118.80593013466373,52.180917213175796],[-118.80221732914413,52.17810231869261],[-118.80025291985923,52.178139041023925],[-118.79504747549421,52.17818610363808],[-118.7902105104945,52.17823063006979],[-118.78425374480467,52.179248989062415],[-118.77858141123664,52.181118312814036],[-118.77662116315848,52.18156908526455],[-118.77476744743367,52.18076650542111],[-118.76957505531253,52.17950083732917],[-118.76154793327105,52.18267544480546],[-118.75996651488344,52.18323652967417],[-118.75448140294534,52.184769397413014],[-118.74853631296989,52.18412717188288],[-118.74500573798186,52.18217488640049],[-118.73658819662101,52.17776007354746],[-118.73084726140117,52.17381100377742],[-118.72975321129408,52.17112541101892],[-118.72794610379087,52.16524225591536],[-118.72369573405261,52.161808862698805],[-118.71495523569565,52.16161469076666],[-118.70704735715512,52.163987808482965],[-118.70517523506516,52.16461315300917],[-118.69819103618359,52.1659565166775],[-118.69271830845939,52.16497594192713],[-118.68931444610799,52.16160102193888],[-118.68795025808093,52.157657768427036],[-118.68593180226297,52.15479897542051],[-118.67871028633373,52.151639789660855],[-118.67229399955755,52.152590990827385],[-118.67106264522857,52.1544711433839],[-118.67047831389857,52.15835042725047],[-118.667094316227,52.16250460439834],[-118.66346790947568,52.163573860108016],[-118.65861820427864,52.16412993659777],[-118.65118440971061,52.16490306786294],[-118.64457900885387,52.16591070434224],[-118.6409470727827,52.16692034300217],[-118.63598353228778,52.170558030778395],[-118.63204592571329,52.174305709353305],[-118.63174917372349,52.175959014735426],[-118.62837466095095,52.18011292077584],[-118.62061135430086,52.18339673809466],[-118.61213986749777,52.1858185438515],[-118.60868708276269,52.18722939421819],[-118.60642576283254,52.18882145283213],[-118.60026474891605,52.191418349348254],[-118.5964502617078,52.191410616765204],[-118.59153766041828,52.19076175172735],[-118.58503446235551,52.19028199359008],[-118.58215369127923,52.190156317963094],[-118.57870414133374,52.19093976624647],[-118.57738907462426,52.191733249450614],[-118.57597637396626,52.19360830543316],[-118.57463677870865,52.19651393174174],[-118.57357674243843,52.200620131255604],[-118.57271867676431,52.202951961535064],[-118.57165411793108,52.20665426951216],[-118.5702899046423,52.21149670536978],[-118.56923378540745,52.2149763263343],[-118.56815836657414,52.21925171140442],[-118.56803090511609,52.22238816009182],[-118.56556551878687,52.22659872975934],[-118.5650992651909,52.22682287669396],[-118.56341891242191,52.22733230240077],[-118.55865469057534,52.22845105259382],[-118.55462579740966,52.23094679091233],[-118.55338227589039,52.233451485126075],[-118.5533723500616,52.235217374619815],[-118.55326332032672,52.236361341061034],[-118.55443278238978,52.2394975300032],[-118.5557088087068,52.242530087381404],[-118.55761448364373,52.24653101102903],[-118.5602428818968,52.25275811007666],[-118.56184968509075,52.258239481599155],[-118.56135745911938,52.261604858953454],[-118.55803342489418,52.26632645548264],[-118.55604112083434,52.26991412327724],[-118.55487990326769,52.27287617556736],[-118.5542733391901,52.27818043207952],[-118.55220296171608,52.281189797627285],[-118.55123400104533,52.282609686812684],[-118.54711085859537,52.285106093980616],[-118.54384476388562,52.285378303223744],[-118.54152402313689,52.28479555129423],[-118.53631113966047,52.28369048144514],[-118.53148706684318,52.28264355897539],[-118.5289693117041,52.28268754691104],[-118.51992397938325,52.28316334945367],[-118.5127275544746,52.28489359698619],[-118.50897839697224,52.28590351173207],[-118.5029891822259,52.28798884464932],[-118.4979344154093,52.289962687076795],[-118.49210885373724,52.293813498298924],[-118.49049107970106,52.29665361147548],[-118.49061609888655,52.300764848107],[-118.4928109626474,52.30368140851562],[-118.49445492719946,52.3062002378247],[-118.49461156695028,52.309454406326786],[-118.49252776890665,52.311151567512034],[-118.49084237224592,52.31217335856375],[-118.48700179541888,52.313181855639],[-118.48270380675272,52.31418528272018],[-118.477761340586,52.314393515381525],[-118.47290233999428,52.315222536288374],[-118.46971100834577,52.316232205399295],[-118.46633486338123,52.317874623436445],[-118.46332290237477,52.32013654916711],[-118.45901205692121,52.3218801744524],[-118.45685520175105,52.322211239831795],[-118.45182303525071,52.32241821650756],[-118.44631344766789,52.3227341453666],[-118.44023105360276,52.3237857694495],[-118.43731632239009,52.325820103513024],[-118.43409572491406,52.32934006489912],[-118.43238366284648,52.33075286416055],[-118.4287865903699,52.3347272378811],[-118.4226861173189,52.337379581225214],[-118.41699414331003,52.33745849111915],[-118.40954625498237,52.336510281604035],[-118.40386674050802,52.33584859470636],[-118.4029313617698,52.33578656021617],[-118.39994767222215,52.33560115824179],[-118.39426036042653,52.33573730946215],[-118.3889293013781,52.336450262420215],[-118.38674946828168,52.338490173171984],[-118.3850134783448,52.34144665900447],[-118.38374669092352,52.34525994171466],[-118.38211686744386,52.34861633013535],[-118.38051409628346,52.34923065195093],[-118.37769240921027,52.35012881737924],[-118.37431240535085,52.35142194259214],[-118.37036303869964,52.35333816683712],[-118.36660442824301,52.3555944145856],[-118.3647635601769,52.359462712461685],[-118.36002889021418,52.363543002885315],[-118.35646348703203,52.36420499602149],[-118.35142044861219,52.364688010549635],[-118.34365243149476,52.36601319737587],[-118.33736622964885,52.36773937731715],[-118.33045324830438,52.3684962552329],[-118.3248507342997,52.368460146391506],[-118.31600204153358,52.367376016863346],[-118.31098661723256,52.36546463565616],[-118.30572183869596,52.362633745367745],[-118.3036359052224,52.35891130057176],[-118.30408524301627,52.35458283057809],[-118.30089991616347,52.349484653378326],[-118.29887055396622,52.3485082717449],[-118.29556145811915,52.34608830161578],[-118.29142723909241,52.34167188017892],[-118.28762965001873,52.340331498671794],[-118.28443691730958,52.341226979284656],[-118.27953367944325,52.34472874536667],[-118.27389679754485,52.34662790865291],[-118.27136543099121,52.3472960570943],[-118.26705742899229,52.34772466854584],[-118.25881748810403,52.34903853981747],[-118.2538387868252,52.351627649671336],[-118.25247868292522,52.35441340169707],[-118.25026019128045,52.358101892644584],[-118.24896269983772,52.36242554452376],[-118.24749663448358,52.36612326793044],[-118.24678246373878,52.36942591917875],[-118.24519668211502,52.37386667328192],[-118.23979378774945,52.37804581923792],[-118.23565360452096,52.37990176151402],[-118.22918803852659,52.38110521858696],[-118.22368573352705,52.38066563487283],[-118.22239066065279,52.37980437690905],[-118.22229156936649,52.379288521369915],[-118.2198202300341,52.38181662749434],[-118.21776604929421,52.385064647780816],[-118.21775859218253,52.390827635761624],[-118.21914371858725,52.396588926839236],[-118.22306314755463,52.39972810856773],[-118.22866816636207,52.40149616488344],[-118.23623852553965,52.40321135435537],[-118.24231227566041,52.40378371524711],[-118.23959797277259,52.40749131433547],[-118.23698377637129,52.41228142819027],[-118.23594556126335,52.41695726781971],[-118.23630861503199,52.42248768190726],[-118.2374338175027,52.42642719059559],[-118.2395818757251,52.42979353502806],[-118.24237878816078,52.43367236949235],[-118.24696066978055,52.43743880987237],[-118.2519967212936,52.44279945102605],[-118.25181481128827,52.446679995026095],[-118.24872618431199,52.45056125925096],[-118.24338111361095,52.450843062627165],[-118.23759159830658,52.451695357629895],[-118.2313202728653,52.45340483009615],[-118.22625632537391,52.456141686331975],[-118.22036543124031,52.4596720316689],[-118.21388948251631,52.46372276022734],[-118.20732760735615,52.46742289833877],[-118.20658407125445,52.467595644383465],[-118.1965573065008,52.47328734843849],[-118.19234017991468,52.47876231896469],[-118.19278928957287,52.482814636110014],[-118.19839621019048,52.486582986081366],[-118.20251514927668,52.48858140460057],[-118.20738338890982,52.48858375325795],[-118.21497445648092,52.488876916953046],[-118.22404822020766,52.489506345098135],[-118.22751799754006,52.48985333216386],[-118.23266621507494,52.489457264261524],[-118.23678774291861,52.49071307710747],[-118.24137591694314,52.494475674917105],[-118.24521131387627,52.49624988490872],[-118.24914015673528,52.49767329754231],[-118.2519496318936,52.499787468302266],[-118.25334330870683,52.50275368542952],[-118.25447306271869,52.50389581757092],[-118.25802558581863,52.504695540012406],[-118.26205516658652,52.505896246000724],[-118.26487099241895,52.50880370286314],[-118.26730149417055,52.51302496109323],[-118.26757937643983,52.51650345160042],[-118.26860198947259,52.52095783373016],[-118.27066358249292,52.52294939429612],[-118.2761932234365,52.52597390059074],[-118.2826624858659,52.52922909773866],[-118.28312117120927,52.53047563820799],[-118.28377708591988,52.5321941781331],[-118.28424435454095,52.53636102770568],[-118.28573411652435,52.538812583691765],[-118.28537134199628,52.543546093785295],[-118.28114030340545,52.5473128741414],[-118.27880263587188,52.54873720957154],[-118.27616726834398,52.5516452917809],[-118.27297882338931,52.55489765300829],[-118.26932560290467,52.56014353990796],[-118.27082033755154,52.56544767496549],[-118.27484997847178,52.567504407408975],[-118.27887675422669,52.56933188663531],[-118.28459633557603,52.570927122128005],[-118.29144463104765,52.57121233724524],[-118.29933534193707,52.57190219269601],[-118.30580157431126,52.573154538174954],[-118.31246924841317,52.57469435989946],[-118.3225936919281,52.577773286751075],[-118.32709331269434,52.57988153664837],[-118.33019763133538,52.58239135439308],[-118.33385344989853,52.5865558198945],[-118.3338678177022,52.589296366717704],[-118.33283464015233,52.59323280554812],[-118.33217919965536,52.59431587525221],[-118.33001410158037,52.595686673318355],[-118.32964848000348,52.59813890944294],[-118.32991880654279,52.59853949317884],[-118.33133167436583,52.6014455124949],[-118.33217992659225,52.60401608376417],[-118.33687626536855,52.60612370022034],[-118.34128160796966,52.60612065205772],[-118.34588092605794,52.60669613958004],[-118.34832515642987,52.60891942996858],[-118.34955030648972,52.610970620336055],[-118.35180052427913,52.61428021057331],[-118.35359637439849,52.61838397664248],[-118.35341203631269,52.62141006885298],[-118.35285120284496,52.62254735028735],[-118.35059285653217,52.62643035604562],[-118.35049492219893,52.629055716681286],[-118.35256797586638,52.63144772923863],[-118.35295093741743,52.6341322772513],[-118.34890365893926,52.63544578548657],[-118.3415902909605,52.63670164799906],[-118.33453728090785,52.63915909174865],[-118.33134324220615,52.64234948295913],[-118.32926869764067,52.64651884214099],[-118.3283326358147,52.648744048621026],[-118.32137800670164,52.65279186475923],[-118.31405545573419,52.652503930667606],[-118.30775568402326,52.65050855215699],[-118.29873594780864,52.65005114795531],[-118.2958168227544,52.65301881920362],[-118.29525134534549,52.656894694595266],[-118.29477483724155,52.66060733566419],[-118.29487166767093,52.66180429311339],[-118.29091436898464,52.66853306129151],[-118.28752731138711,52.67218273820674],[-118.28630252875126,52.67640165590881],[-118.2879994186326,52.67897173025635],[-118.29137218078331,52.682168966882365],[-118.29476487428425,52.68468079736446],[-118.2975813349609,52.68650504667363],[-118.30086747103823,52.69027171770626],[-118.3053891383179,52.692896587241634],[-118.30745814921283,52.69357876986367],[-118.3135675467592,52.695920765867456],[-118.31686289847718,52.697743878562186],[-118.31911116960141,52.700827610341555],[-118.32334815434115,52.70413407218311],[-118.32693172475605,52.7051071828101],[-118.33350935617922,52.70693312485791],[-118.34019326792802,52.707672154358875],[-118.34123241024744,52.70761696067974],[-118.3401063633681,52.710065346578716],[-118.33841091117682,52.71543212092751],[-118.33709480063735,52.72067836508333],[-118.3361516456803,52.725757462687135],[-118.33323433637845,52.73168760687308],[-118.32767724893056,52.73602550260374],[-118.32739559072166,52.73659487986674],[-118.33331780716267,52.73727883701678],[-118.33813004620382,52.73791048173952],[-118.3466037783034,52.73968162537613],[-118.35235210601695,52.7424183128212],[-118.35827920673914,52.7464091489983],[-118.36166926486861,52.749483471113955],[-118.36695750710908,52.75296639166856],[-118.37166634214353,52.75502017931656],[-118.37845099710243,52.75615756881093],[-118.38861755149341,52.75809213646863],[-118.395508574552,52.76014334681626],[-118.40040835622887,52.76356479217067],[-118.4028555384265,52.765501517874256],[-118.40984139400065,52.767784476255194],[-118.41531308832467,52.76959952487331],[-118.41645023422383,52.773193921716114],[-118.41663897943617,52.77741709812664],[-118.41692597236444,52.78050205401777],[-118.41730962871613,52.783296273843256],[-118.41674248288543,52.785808433856765],[-118.4173132111757,52.789230182168126],[-118.41760903223538,52.79419512215956],[-118.41685133013254,52.79727255777446],[-118.4124292803894,52.80178709175898],[-118.4089425546014,52.80407081887533],[-118.40376034727558,52.80789386155919],[-118.39943573326056,52.81251806123934],[-118.39933962117311,52.81280486605324],[-118.39651207373639,52.81691201271381],[-118.39434604533764,52.82233409266675],[-118.39397112989481,52.826101926053255],[-118.39378619549271,52.82872398514685],[-118.39359835030186,52.83186375867366],[-118.39521723752144,52.83460420237815],[-118.39842273178498,52.837508560599844],[-118.40031375598,52.840989041118924],[-118.39956063303079,52.84344341818208],[-118.39625504639626,52.845611374588486],[-118.39106632394515,52.84584218555217],[-118.38379829048785,52.84715420124254],[-118.38512271624782,52.847612896550764],[-118.38823313314725,52.84829313966677],[-118.39381006591223,52.84932297422867],[-118.39730225740153,52.85063076819671],[-118.40004008200304,52.85205739985463],[-118.40192610335566,52.851887931618684],[-118.40872667119605,52.85051234620538],[-118.4151486829449,52.84999717976135],[-118.42232362145793,52.85113252921748],[-118.42372984066785,52.85113508367055],[-118.42854776625627,52.85004705486941],[-118.43411807535573,52.849354051480056],[-118.43865395981675,52.850436655021234],[-118.44366629667228,52.85237537347953],[-118.45047013626193,52.85459338614942],[-118.45320831127485,52.858471575673455],[-118.4540710702398,52.86035517759681],[-118.45718058204812,52.86223026313975],[-118.45927484504304,52.864513766424544],[-118.46012403094247,52.867993907576285],[-118.45955950925426,52.8701619292495],[-118.45777252211877,52.870445799678684],[-118.45342693423865,52.871479901615444],[-118.45211037835635,52.87290691406037],[-118.44975571944155,52.876045947447935],[-118.44721057860792,52.87924366756444],[-118.44787749088532,52.883239587993934],[-118.44968340313841,52.88529498852945],[-118.45364912940798,52.88682794922386],[-118.45744305299247,52.888823590788874],[-118.46055851718133,52.89076190332295],[-118.46320591030249,52.89263844996548],[-118.46509912343747,52.894461356845284],[-118.46699905317521,52.89531884872678],[-118.46897717962196,52.897086834723076],[-118.4709697364422,52.899196605786315],[-118.47542652028497,52.900843626696485],[-118.47901546605448,52.90130277470937],[-118.4844042227134,52.901750468970114],[-118.49063989992094,52.903169468835095],[-118.49377260585388,52.905277986085935],[-118.49623865489885,52.90624387486861],[-118.50350639864394,52.906236209031626],[-118.50945777435479,52.90468861992903],[-118.51265965118327,52.90165515173687],[-118.51482115470432,52.89823289856996],[-118.51898269006648,52.89714302237102],[-118.52409000270397,52.899186274345944],[-118.5293012172306,52.901407732355544],[-118.53555145955713,52.90556056395933],[-118.53934060357568,52.90795290437392],[-118.5468987633602,52.907314237637536],[-118.54925752826672,52.90514297980673],[-118.5547322266049,52.902969650494086],[-118.5595386513829,52.899990848577914],[-118.56103755555958,52.89673718518503],[-118.5630873829325,52.89085024101002],[-118.5674265114557,52.88787760431966],[-118.5703369968026,52.88604921111094],[-118.57429689493358,52.884383046403],[-118.58146580481203,52.882258047524815],[-118.58958261764566,52.880358820857666],[-118.5950679161222,52.87938062700589],[-118.60289563217007,52.879305599575794],[-118.61037546037291,52.881745485735046],[-118.61142634697664,52.88431025178292],[-118.61183367421283,52.88704624815805],[-118.61185120698393,52.89012946334834],[-118.61271892589728,52.89417891033132],[-118.61216616107328,52.89606452726757],[-118.61209522861355,52.90017251989157],[-118.60822474878583,52.90149855372015],[-118.60539393134509,52.90270189905949],[-118.60475117205264,52.9047575970578],[-118.6073997359034,52.9062355819096],[-118.60985837880934,52.907084657767655],[-118.61242211509175,52.908621390154146],[-118.61432205418308,52.91078830256861],[-118.61688738006731,52.91266244758817],[-118.61870822247438,52.915458597957226],[-118.61881732697962,52.91853509659925],[-118.61789047094611,52.92110641464347],[-118.61600890888677,52.92356579222293],[-118.61498211238069,52.92688173994377],[-118.61529182816346,52.93104290194006],[-118.61492734535516,52.93167285711283],[-118.61313427840417,52.93344825873769],[-118.60831796899149,52.93528161310767],[-118.6083278476365,52.935568971882674],[-118.61174384827032,52.937213924917266],[-118.61477963902362,52.939149734787364],[-118.61799557752057,52.94125788574903],[-118.62046698414518,52.942563121787835],[-118.62340362108623,52.94386655818591],[-118.6255943277392,52.94506331745076],[-118.63110280334018,52.94778941025235],[-118.63697057153614,52.94983191448899],[-118.64170854103257,52.951129537414616],[-118.6469258348232,52.9526045695146],[-118.64864622412115,52.95539535821818],[-118.64999788556023,52.9592760829779],[-118.65446316884436,52.96137617620329],[-118.66063661030091,52.96444133002367],[-118.65988793934973,52.96547322271026],[-118.65706948271371,52.96918760465527],[-118.65776109149596,52.97255538542353],[-118.66070177750737,52.97437276236519],[-118.66545352701827,52.97630318288927],[-118.66811805198004,52.97971969011217],[-118.66701450302423,52.983321668001295],[-118.66200000225653,52.985329184174745],[-118.65623388112216,52.98716785352813],[-118.65009743135,52.9895807423667],[-118.64425184842425,52.99290720960356],[-118.64604588054314,52.993812646401935],[-118.64711030621616,52.99580853574908],[-118.64711951424277,52.9984357296335],[-118.64447600286877,52.99844430830074],[-118.64096276761241,52.99844736474131],[-118.63831446034203,52.998915162741],[-118.6368507304912,52.9998221563939],[-118.63722829459061,53.00136333542698],[-118.63893506402903,53.00467203515966],[-118.64196269658638,53.00763924745832],[-118.64651831684843,53.01123482634213],[-118.64972666661382,53.01420461826357],[-118.65210320752159,53.0185946998132],[-118.6478464109785,53.025895617044185],[-118.64984233238991,53.03005797889101],[-118.65098073010255,53.03120161208095],[-118.6556203400196,53.035024328598226],[-118.65979841009266,53.03822093604071],[-118.66578029361662,53.041417198218824],[-118.67288732956362,53.0414191519695],[-118.67762508702728,53.041132372695365],[-118.68227608606053,53.038566761184285],[-118.68510634407832,53.03497135413119],[-118.6895644852367,53.033602225575414],[-118.6943134919787,53.03576731002366],[-118.69601813387263,53.038337911172164],[-118.696696960811,53.04250012136394],[-118.69830417506618,53.0471175722614],[-118.70248742345196,53.04900150547017],[-118.70363064834663,53.04951793383985],[-118.71045898900877,53.05122989434921],[-118.7149201378929,53.05464671299602],[-118.7217562471941,53.058241780275864],[-118.72764507906754,53.05852309172051],[-118.73236945273187,53.05578441911855],[-118.73682722091425,53.05424449957983],[-118.74128991975738,53.05372467995959],[-118.74877709929953,53.05195501622331],[-118.75408095662486,53.04801343346834],[-118.75509845887936,53.04224771104936],[-118.75974114719736,53.03996434766303],[-118.76438836396589,53.042131904918456],[-118.76970384019079,53.044523909280564],[-118.77360669356035,53.04674440108454],[-118.77095983051129,53.05062701833524],[-118.76756428914487,53.053084379181456],[-118.76397421164211,53.05799414208494],[-118.76359177732529,53.05856026967002],[-118.76000023361203,53.06233168433399],[-118.75744136361583,53.06621389013612],[-118.76144627989602,53.069690624034614],[-118.76562236038777,53.07208289978944],[-118.7668574536126,53.07373960058381],[-118.76487751059884,53.075908323068056],[-118.7599546410783,53.078138224965535],[-118.75730367892857,53.08053365146865],[-118.7535084270204,53.08389991270222],[-118.74782051414506,53.085845773277136],[-118.74470260451936,53.08841326907029],[-118.74517858445289,53.09326338839314],[-118.74576119650118,53.09828168876474],[-118.74528946957497,53.099539482264],[-118.74301422686523,53.09999741432595],[-118.73779689276552,53.10085289524513],[-118.73599180218072,53.102338211091364],[-118.73477171280162,53.10593321075753],[-118.7308834441554,53.10964069912419],[-118.72708506704214,53.110899274208485],[-118.72557871023352,53.11335412877388],[-118.7277597243422,53.11580908113983],[-118.73109504587133,53.11934214942769],[-118.73746410712148,53.12230686436258],[-118.74336592653117,53.123790553922895],[-118.7515394446649,53.125723403060405],[-118.76789214299919,53.130622095758326],[-118.77751039003498,53.136267649861075],[-118.77866355945311,53.13991306822173],[-118.77914390474619,53.141682568959155],[-118.78133939539782,53.145047119227875],[-118.78115684107385,53.14778739620022],[-118.7793482168717,53.149555271766964],[-118.77936387462996,53.152808868460546],[-118.78079212565076,53.15423373410386],[-118.78613537568172,53.15919346641864],[-118.79251926505825,53.16318426245424],[-118.79365999168566,53.16329787227855],[-118.79575101216423,53.16358156999134],[-118.80117450840251,53.164202634155465],[-118.80706686615619,53.16516737325349],[-118.81212300652396,53.16927249136563],[-118.81442674849208,53.17149400976062],[-118.81794453367881,53.17251677431192],[-118.82174787099737,53.1735449736012],[-118.82604019287123,53.17639505961787],[-118.82785913654662,53.1797011046641],[-118.82939929536381,53.18260952970192],[-118.83415908744276,53.184313600751096],[-118.83815425564862,53.18510788272963],[-118.84425059606757,53.18595678116138],[-118.85253614715062,53.18731966855967],[-118.85740083152395,53.189480074796094],[-118.86084712222112,53.19289736858377],[-118.86113041167602,53.193183068976644],[-118.86352781684927,53.19620912716501],[-118.86743190957979,53.19870902379822],[-118.87125330171973,53.20036315348679],[-118.87258911008186,53.20218301888486],[-118.87375742806951,53.204637427053235],[-118.87518808864411,53.20571919304755],[-118.88109209950773,53.20656617840022],[-118.88985184093792,53.20729203154473],[-118.89879657620433,53.20790560378338],[-118.91205487857692,53.21102718348499],[-118.9177817524951,53.214550505353934],[-118.91932472362419,53.217575087676146],[-118.92068858223739,53.2226545220327],[-118.92348431147202,53.22675617705549],[-118.92682275435025,53.22834775773641],[-118.93388188002315,53.23078553634084],[-118.93810103630591,53.23414761252884],[-118.94372826901072,53.23676486496605],[-118.9482057001822,53.23606883928825],[-118.95096601748743,53.23526349477731],[-118.95753543487798,53.23513886986611],[-118.96219572061831,53.23524193312523],[-118.96735560932783,53.23660008309458],[-118.97557749081726,53.23977647447859],[-118.98090064525908,53.23970761656494],[-118.98756171875124,53.238037534625164],[-118.99507355775472,53.23596604928255],[-119.0025747511985,53.23395373683686],[-119.01057549302298,53.233017563383655],[-119.0202712318654,53.232137637711034],[-119.02311519722463,53.229449339370966],[-119.02260544223266,53.22596915455171],[-119.01981930600094,53.222664681835404],[-119.01683346585146,53.219020690822035],[-119.0146275863157,53.21731581457015],[-119.00253337865523,53.216946347050296],[-118.99765014977636,53.21438615083889],[-118.99305354019931,53.210286749104355],[-118.99044156864879,53.20550101692869],[-118.99088328536062,53.20075909184151],[-118.99144635799593,53.19927650208782],[-118.99322028049743,53.195678149074865],[-118.99834956066825,53.1933838494775],[-119.00450267562312,53.19000219578749],[-119.00837410851166,53.18565089699001],[-119.01136959065582,53.18085191550163],[-119.01248187260951,53.17804904575654],[-119.01918865071094,53.17130059777756],[-119.02427921452424,53.16666188799665],[-119.02472076456706,53.16335319533091],[-119.02137159846521,53.161018273859405],[-119.01287145763814,53.15595877820921],[-119.00390123512149,53.15147583435966],[-118.99815570594181,53.14635262768471],[-118.99935749912369,53.143554585730996],[-119.00484601676763,53.14068718018704],[-119.0138573100509,53.13735783656923],[-119.01801902184202,53.135858064817796],[-119.02208078523043,53.132593061699495],[-119.02223884762228,53.128995084349675],[-119.02354160741064,53.125572932118246],[-119.03311015753334,53.12394389051916],[-119.04225372309809,53.12534630221927],[-119.04380408523035,53.12899830272632],[-119.04406135110756,53.1367559384959],[-119.04420849460783,53.1414363030043],[-119.0468163000356,53.14662481977873],[-119.04969587630481,53.14861218834313],[-119.0539879982671,53.15025201916152],[-119.0589425070635,53.15235226082871],[-119.06152301408822,53.154057676713016],[-119.0650734679053,53.15700945266837],[-119.06908319763859,53.158543107650644],[-119.0766303035949,53.16137340502442],[-119.07986152934542,53.16233241804333],[-119.08539599409275,53.16430947406882],[-119.093956710223,53.16445559023028],[-119.0995551605589,53.16346765845635],[-119.10647838247446,53.16201989021879],[-119.11665604186608,53.16129691301442],[-119.12086081423512,53.163678707579095],[-119.12660662946534,53.16714294941486],[-119.13139693280276,53.17037564306764],[-119.13563216855522,53.17498741961958],[-119.13670089425612,53.17675158615386],[-119.13990045924183,53.182273238812876],[-119.14206212434821,53.18797423102743],[-119.14531451615066,53.189564519606805],[-119.14777486157638,53.18898239201024],[-119.15261692898649,53.187651342599295],[-119.15858452209143,53.185974472169285],[-119.16513843093502,53.184581157612676],[-119.17293457472933,53.18398030080237],[-119.17960021976894,53.18440604241467],[-119.183399146505,53.18439185162484],[-119.19092634651528,53.18470741373728],[-119.19778832094181,53.18587843770226],[-119.20552465063803,53.188357734477016],[-119.2120337247482,53.19135234956139],[-119.21633771330532,53.19316584150634],[-119.22026207682913,53.194343387398085],[-119.22730552806777,53.194772816872636],[-119.23271278158897,53.193379278181226],[-119.233518686723,53.19023460634451],[-119.2327949018881,53.186012386731136],[-119.23491555579105,53.181150086947156],[-119.24133248707726,53.17729632940297],[-119.2483561971476,53.175666665573424],[-119.25626711164686,53.17733997654664],[-119.25697366197865,53.18008151095914],[-119.25387667977837,53.18249323868951],[-119.24972290909236,53.185764027931036],[-119.24768934639233,53.18971532034048],[-119.24888631420087,53.19325027799545],[-119.25064407017089,53.19695456023427],[-119.25240797145375,53.20099903878583],[-119.2561103245315,53.206401158277245],[-119.25679563859796,53.20777058498226],[-119.26031041182654,53.213693002850704],[-119.2637980040381,53.21875384378285],[-119.26883284375604,53.2240450177373],[-119.27105512595107,53.226086485942034],[-119.27691430141651,53.23028630278171],[-119.28070649701851,53.235349100572904],[-119.28391465299538,53.23972861078577],[-119.28768721572057,53.244167600411565],[-119.28848366295325,53.24570171293898],[-119.29277547634442,53.2521917065947],[-119.29529509597775,53.25531964345221],[-119.29951958754904,53.257408577807276],[-119.30614179937798,53.26074432428708],[-119.31603280861411,53.26612116873842],[-119.31950721426401,53.26838407129775],[-119.32498388411331,53.27172928525443],[-119.32857064042388,53.275193862628804],[-119.33256901656391,53.28054275400805],[-119.33403278960361,53.28264400949633],[-119.33790459955651,53.28651191386927],[-119.3363129865368,53.28903022801371],[-119.33177937757122,53.29162537949405],[-119.32725225907636,53.29484249330571],[-119.3273154962423,53.298728951148256],[-119.33008566451981,53.299452168909426],[-119.3346716737487,53.299487571183306],[-119.34039772751179,53.29985867614931],[-119.34590411025708,53.29837224654062],[-119.34771361474687,53.30364401289639],[-119.35003108137003,53.30580134800086],[-119.35447912204155,53.30977338799326],[-119.35461069474768,53.31200035175681],[-119.35082885084283,53.31413319758129],[-119.34550941540665,53.31547685477297],[-119.3446098004637,53.3183925499437],[-119.34543147770698,53.32255776582814],[-119.34675004836954,53.32711770397487],[-119.34806893371702,53.331963993814014],[-119.35048855201175,53.334632166029245],[-119.3540769424487,53.33803702256748],[-119.35768655930445,53.34236337117954],[-119.36232654509963,53.34581893182835],[-119.36396452496547,53.34655313363208],[-119.36837238010128,53.34813203418503],[-119.37308858068211,53.35072999498687],[-119.3754284403754,53.35305715743998],[-119.37677582391834,53.35391106731181],[-119.38044236981575,53.35645902886412],[-119.38306423821625,53.358728596492845],[-119.38712536389195,53.36127300208307],[-119.38952390780007,53.36188998202756],[-119.3957520722604,53.36373960817853],[-119.3986523736167,53.36549655022527],[-119.40201248559036,53.36644636175934],[-119.40383510295008,53.36649541096468],[-119.4066846605055,53.366073251086725],[-119.41001600475461,53.36508652091589],[-119.41855602227407,53.3618431984714],[-119.42774935776399,53.35750815546501],[-119.43442604513535,53.356782662590824],[-119.43881120331338,53.35630077240977],[-119.44595697904892,53.35557021736787],[-119.45436545014317,53.356147682601375],[-119.46472573676682,53.358371771402894],[-119.47068322397189,53.35993351845655],[-119.47702790489055,53.362120957218536],[-119.4819111050856,53.36271678341418],[-119.48905661433795,53.361987550191856],[-119.50170919937301,53.36407639741558],[-119.50894882740737,53.36763009996743],[-119.51471621236375,53.37004813596278],[-119.51549886841441,53.37026922238829],[-119.51954731104594,53.36755814151558],[-119.52466485805907,53.36575691348817],[-119.53784247135545,53.365037750454086],[-119.54635521921391,53.365836391660366],[-119.54856486753523,53.36621981328704],[-119.5544499182611,53.36886832231355],[-119.55782886280065,53.37089898255469],[-119.56311289597099,53.372344436949255],[-119.56867468145134,53.37316348864682],[-119.5730131448736,53.37495993095274],[-119.5771632560247,53.37670437779729],[-119.58263877866135,53.378092880571884],[-119.58312059125296,53.37820667577228],[-119.5901711513162,53.38186560397915],[-119.59729273771619,53.384272520461835],[-119.60542762176448,53.38450128467349],[-119.6078810430413,53.38299395822989],[-119.60497191529889,53.38153297937634],[-119.60299618498692,53.378116592716665],[-119.598110644395,53.372953199443515],[-119.59247592547028,53.368941446939175],[-119.5924181455096,53.366544014467664],[-119.59599870174877,53.36428565848002],[-119.60572255791428,53.363189791848804],[-119.61537670998649,53.362946535576874],[-119.6174506770929,53.36213463231163],[-119.62026962953526,53.35960237621496],[-119.62214951129718,53.35827435094868],[-119.6244652057314,53.35985269186698],[-119.62452622266444,53.36214109225264],[-119.62764579238532,53.36480189763478],[-119.6323475858627,53.366305155812924],[-119.63763107596601,53.36706496935508],[-119.65112272822817,53.36804750562241],[-119.66345743753065,53.36858202341532],[-119.66749376728905,53.36929296868531],[-119.67626724790016,53.372993436231035],[-119.6783574988343,53.37669053283857],[-119.67852171281056,53.379719814946846],[-119.6800434683302,53.383076690551974],[-119.68304832844588,53.384822536053534],[-119.68708669360973,53.38593435969536],[-119.69141991267243,53.38709881136283],[-119.69279399511191,53.38902987966355],[-119.69389351006126,53.391077374812966],[-119.69619241541955,53.39128437528884],[-119.6977237473708,53.391162100315555],[-119.69848119772865,53.39075241868788],[-119.70712211846067,53.3881144251439],[-119.71559905238777,53.3874742054484],[-119.72318832755708,53.38872204142167],[-119.7254281694555,53.390133829955104],[-119.72595830796102,53.39235722452015],[-119.72661851986472,53.39583700109679],[-119.72760431142328,53.397543478036724],[-119.72967871913528,53.40026958957195],[-119.72965755192718,53.40284284196878],[-119.73010603201011,53.40591942731735],[-119.73344132658254,53.40892229616135],[-119.74010539531798,53.41183508558616],[-119.74078828831125,53.41222927665035],[-119.74391441397178,53.41471409939253],[-119.7450388915603,53.41813823701593],[-119.74729664450885,53.42046080384523],[-119.75039734111019,53.421801432218395],[-119.75494310652961,53.42370826461033],[-119.75596832787994,53.42638251000486],[-119.75784171476698,53.4286491954972],[-119.75961027330261,53.430298544848974],[-119.75988010384701,53.43377820774625],[-119.75716713479362,53.43603171979008],[-119.7564658818896,53.43860623722332],[-119.75764370694016,53.43985118885481],[-119.76045712250829,53.44119998101837],[-119.76637026830551,53.44452244639912],[-119.76933232528981,53.44803518583954],[-119.77019049898689,53.451741812584835],[-119.77143362622063,53.455101968768815],[-119.77401031559668,53.458564532551854],[-119.77676160358483,53.46156832695682],[-119.77857359523601,53.46498117122342],[-119.77925055374823,53.46869109281816],[-119.78016755114217,53.47068228932754],[-119.78616542752526,53.47336854576877],[-119.7891898841809,53.47546182554038],[-119.7899253028579,53.47796634339072],[-119.7894102806429,53.48031619224009],[-119.78723991097377,53.481764318832106],[-119.78135171893032,53.483642315492155],[-119.77736287717768,53.488755763487354],[-119.78015273645555,53.4932508113364],[-119.78480973851967,53.49497903575908],[-119.78787662693614,53.49546694242311],[-119.7924873898003,53.49577101446236],[-119.79911920101098,53.496457971088056],[-119.80066300310682,53.49678633416397],[-119.80639526941003,53.49976331371366],[-119.80980849899622,53.50201612441724],[-119.81147052556449,53.50308590349315],[-119.81680070388441,53.505611834142755],[-119.82285252348463,53.50972840819676],[-119.82839413779709,53.51607891448491],[-119.83220832709311,53.5191281531635],[-119.8329861386444,53.51941018925639],[-119.83641002720039,53.518518618109866],[-119.84152722429799,53.51601660994751],[-119.84725365079831,53.511738892086825],[-119.84821694095615,53.5080734832237],[-119.85718174232223,53.50290343063716],[-119.86561090568394,53.50282472103716],[-119.86853871667196,53.50468522469758],[-119.87204994893537,53.506706658494565],[-119.8761073949374,53.50821072253778],[-119.88191083648778,53.509705960245],[-119.8888846076613,53.51243538713974],[-119.89034210540964,53.51305100030655],[-119.89718588595998,53.51761606688526],[-119.8992186396675,53.52199057118188],[-119.89947151706045,53.52764785779247],[-119.89605940234325,53.5358530213656],[-119.89167717567754,53.53686358892293],[-119.88729062209825,53.53759043140136],[-119.88257171337283,53.54038186349592],[-119.87723026887622,53.54482943391871],[-119.87666204220203,53.54528878444365],[-119.86884900817215,53.54742545392167],[-119.86161357187214,53.549655480721206],[-119.86021123271101,53.554244500922046],[-119.86110479594674,53.558916886909145],[-119.86314938819994,53.563302744713454],[-119.86808331653104,53.5683948441589],[-119.87322674051,53.57040650193831],[-119.8808828254456,53.57279534274194],[-119.88302265970061,53.57374501541976],[-119.89104171212573,53.57927184191316],[-119.89753378161288,53.58486326887233],[-119.90239686672614,53.59058968315721],[-119.9047409083022,53.595254544783415],[-119.9053597907843,53.5968472866824],[-119.9120054173695,53.603815462796526],[-119.91868142958151,53.60557634794491],[-119.92720915641668,53.60840806746411],[-119.92779105867076,53.61183133166439],[-119.92315843010981,53.61461940156443],[-119.91804627770459,53.61735422071963],[-119.91401795205243,53.61744745174842],[-119.9085583201831,53.61807410429204],[-119.9039199710807,53.62057453005179],[-119.89971951782942,53.621530983491],[-119.89654624456229,53.62138962918057],[-119.89034330748389,53.6195017066445],[-119.88645964667293,53.61839613184963],[-119.8755114327606,53.61838372306955],[-119.87231582915454,53.61767051298075],[-119.8677960206438,53.61416878938824],[-119.86638960647218,53.61183710890284],[-119.85275367377018,53.60870870089048],[-119.84169193526684,53.60834595847061],[-119.83729304819282,53.609304057714844],[-119.8308701307476,53.609756564934344],[-119.8253360307576,53.607178262539215],[-119.81630128243309,53.603601438283356],[-119.80623125973658,53.60414636540355],[-119.80104475788232,53.60436285801229],[-119.79272212164204,53.60214910941432],[-119.78761146469033,53.59756177043448],[-119.78350235170417,53.59462818260774],[-119.7796129435675,53.59277526790129],[-119.77402776002042,53.5917979982205],[-119.76451629265001,53.5918714042496],[-119.75098422338591,53.59250216305876],[-119.74363966371934,53.59444619683483],[-119.74053686734827,53.597500810596785],[-119.7372949481397,53.602494671529996],[-119.73277572526416,53.60596228554827],[-119.72942980473262,53.60667438277603],[-119.72331878034085,53.60797534260347],[-119.71537758061143,53.609813362810456],[-119.71295580987575,53.61296961500571],[-119.71301411628664,53.61571442626572],[-119.71412423118524,53.61753510943605],[-119.71685833428144,53.61968416639822],[-119.71853116238314,53.621103134159206],[-119.7205045759736,53.62325534894325],[-119.72217908047368,53.62506961888372],[-119.7230904161231,53.62700230429582],[-119.72574359165971,53.62949432839125],[-119.72952985892842,53.630725548525284],[-119.73242180806047,53.63132718638685],[-119.73300625924216,53.63189371147644],[-119.73450993269384,53.63393944411563],[-119.73523546073584,53.636101203393814],[-119.73577339539375,53.638499397675474],[-119.73747348920286,53.641571385091424],[-119.73834151548289,53.645219905759525],[-119.73802536432333,53.6481383712345],[-119.73530471316678,53.65135585537718],[-119.73615106881736,53.65403333392242],[-119.73729463534775,53.65807861979996],[-119.73582130500628,53.660894250925125],[-119.73653819793307,53.662711400525154],[-119.74023119767077,53.66377414724631],[-119.74535871867202,53.66532510553828],[-119.74623631595479,53.665667342624566],[-119.75261207939107,53.666817723613896],[-119.75680430143397,53.668721271148485],[-119.75830945987957,53.67128220730996],[-119.76028528951491,53.67354888213841],[-119.76202772941025,53.67422061122897],[-119.7640623678591,53.67477205790827],[-119.76882523833106,53.67673860782379],[-119.76944367929593,53.678104469152224],[-119.77162219746836,53.680651904669844],[-119.77409123890482,53.683091835276166],[-119.77360518267382,53.68675478148229],[-119.7735146065239,53.69103372431689],[-119.77607142428064,53.693298788878636],[-119.77794488660786,53.694426826228344],[-119.78115040449096,53.6957174312443],[-119.78571786861797,53.69778878618827],[-119.78656285195338,53.70029858564547],[-119.7863561936794,53.70372920316586],[-119.78833312419329,53.705599482395556],[-119.79114133531614,53.7065975704003],[-119.79541757790948,53.70828116196632],[-119.79869740935479,53.708365740688144],[-119.80253046071297,53.70719030290558],[-119.80720898765229,53.70606751355312],[-119.8165186102972,53.70444413960083],[-119.82076274310377,53.70120927839412],[-119.83039448242529,53.69729487890215],[-119.83819647409459,53.69791233261871],[-119.84076434346764,53.700230914002326],[-119.84280048887439,53.70398428940171],[-119.843293555465,53.70838398700946],[-119.84307007780161,53.71072184315853],[-119.84488538134352,53.71391114325275],[-119.84673800348445,53.71457871192522],[-119.84989554249927,53.71415186367297],[-119.855863503921,53.71358312064281],[-119.86299521816156,53.713805147990485],[-119.86917309685695,53.71460469160694],[-119.87329997047587,53.71359615187602],[-119.87673444042824,53.712422757131876],[-119.88009141180903,53.711879419874684],[-119.88566258440714,53.71182691216264],[-119.89190532688657,53.71062398906984],[-119.90073601510474,53.70985568454764],[-119.90645289116716,53.71088838777669],[-119.90919340310178,53.71257714592731],[-119.91060543499411,53.714909343499116],[-119.91172959334673,53.71712624501053],[-119.91447770979549,53.71887144635996],[-119.9158905768237,53.72120133512107],[-119.91590532291102,53.721831109649706],[-119.91042186532752,53.72211046290165],[-119.90438689018151,53.723136673881804],[-119.89840996226044,53.7266788804973],[-119.89532897046898,53.72991094430715],[-119.89554754952529,53.73424606273167],[-119.89899689907858,53.73724604150021],[-119.90144770687252,53.7390482926788],[-119.8990005078706,53.741073241125235],[-119.89444047597583,53.74346209122978],[-119.89105086441144,53.7462916185797],[-119.88937782917763,53.748648207851694],[-119.88849788351652,53.75162874957565],[-119.88892111220916,53.75311077983937],[-119.89211349882085,53.75662168206706],[-119.89178410158998,53.75897035608002],[-119.88937369321707,53.76270819659186],[-119.88605584979452,53.76462054563506],[-119.88354506744307,53.767789352413956],[-119.8851496655549,53.77006077671472],[-119.88578535985648,53.77227880187024],[-119.88500010587249,53.77554466232766],[-119.8840115111885,53.778012037598295],[-119.88674152665149,53.7790692689119],[-119.89215530163729,53.779421704976315],[-119.904387075347,53.77856709098867],[-119.91168837166354,53.77780943335049],[-119.91932051626553,53.77802372207228],[-119.92867583818017,53.7779369612778],[-119.93666665467659,53.777575296830385],[-119.94256000346158,53.77746405648651],[-119.94750533623008,53.77872731785854],[-119.95385547093198,53.7813557180247],[-119.95827254924134,53.78405383894765],[-119.96543947222379,53.78821840156278],[-119.9719837523563,53.79089369646243],[-119.97619072071856,53.79273737072508],[-119.97925304656908,53.795106275040574],[-119.97834430793796,53.79705824044694],[-119.9753174323216,53.798976886313625],[-119.97324492753495,53.80105303745478],[-119.97379326378972,53.80327659586714],[-119.97557580405376,53.804572907928474],[-119.97801432314994,53.805348480816754],[-119.98139330164709,53.80543151307943],[-119.98408660062817,53.80529176712032],[-119.9907966997036,53.80356929357293],[-119.9919191804533,53.80235470508269],[-119.99275211475401,53.80102949959245],[-119.99451988713118,53.79872985001587],[-119.99669228265415,53.79722269431335],[-119.99881002016066,53.797257307564244],[-119.99941606005474,53.79781989314464],[-119.9992949309582,53.99995411932169],[-120.00129796570492,54.22588655184309],[-120.00142630374957,54.225879416745336],[-120.00173670846227,54.22582734289846],[-120.00213493899543,54.225728479313375],[-120.00243207585011,54.22559537962351],[-120.00268380438507,54.22540327679183],[-120.00283038977464,54.22525767252246],[-120.00290576866959,54.22515069735673],[-120.00291497618555,54.225021331366385],[-120.00301014595973,54.22488442219378],[-120.00313941236341,54.22473852712031],[-120.00338687811384,54.2246153311549],[-120.00362175905857,54.22463144920264],[-120.00376980173723,54.22471407942011],[-120.00383645248257,54.224944982941345],[-120.00397768668559,54.225127308075],[-120.00420685464894,54.22522237658347],[-120.00452491279735,54.22528981397433],[-120.00498359045949,54.225292273629634],[-120.00530707499952,54.225269503467224],[-120.00564925761125,54.225237532742206],[-120.00589169020904,54.22517534293732],[-120.00606912100821,54.225069475417115],[-120.00614696433277,54.224932273811774],[-120.00615137783876,54.22486224050613],[-120.00612878786494,54.22471276134678],[-120.00605247494852,54.224601087366764],[-120.00592798953814,54.22444938268422],[-120.00596788181001,54.22436087301867],[-120.0061234990118,54.22432530220936],[-120.0063271264925,54.224330877630095],[-120.00652807328309,54.22435486086099],[-120.00681048793057,54.22444188472105],[-120.00712376195266,54.224568648287274],[-120.00743695600718,54.22469597346411],[-120.00780772747491,54.22474577766766],[-120.00813120747038,54.22472299105469],[-120.00857851505657,54.2246445173147],[-120.0090286869735,54.2245066052803],[-120.0093176921782,54.22438939001217],[-120.009478167424,54.22429391941314],[-120.00947683494431,54.2240645678938],[-120.00934978723261,54.22394364469509],[-120.00919374796575,54.22377015290755],[-120.00915438933562,54.22359005665412],[-120.00928602017031,54.22341448399366],[-120.00951521596829,54.2233106137109],[-120.0100787908137,54.22325473294528],[-120.01045156918059,54.22326416664167],[-120.01100649434677,54.22334723262762],[-120.01157342733984,54.22348033400519],[-120.01200328599477,54.22364094435107],[-120.01251210749672,54.22388188267585],[-120.01294536743919,54.22399264629261],[-120.01331576707796,54.22403173334198],[-120.01369056673553,54.22400079459521],[-120.013848725193,54.223934426874116],[-120.01413154663824,54.22379329275042],[-120.01418727431886,54.22371512146277],[-120.01454662682282,54.223206865568415],[-120.0147825281335,54.22276501056594],[-120.01512078671298,54.22229560723494],[-120.01542546599181,54.22208361804782],[-120.01594661131682,54.221908168495084],[-120.01663211850075,54.221835810005466],[-120.0170322862495,54.22169652598541],[-120.0174555367813,54.221478023198856],[-120.01797089316749,54.22114324711894],[-120.01847769881644,54.22070800767727],[-120.019357764991,54.21981408269608],[-120.01996342257404,54.219401709331365],[-120.02055953304772,54.21914789479782],[-120.0213664925109,54.21900900711385],[-120.02220276615915,54.21896035125233],[-120.02287623601475,54.2190368406434],[-120.02320107022427,54.21924337444627],[-120.02342732449645,54.2193983973868],[-120.02379209532091,54.219515851643905],[-120.02404881241767,54.21946107661351],[-120.04160747718697,54.224145334923925],[-120.04178438697711,54.22450862053453],[-120.04234915050317,54.22499044288919],[-120.04303574764694,54.22562997742509],[-120.04346060363534,54.226185837252025],[-120.04375284607616,54.22673854943362],[-120.04351466947878,54.22727812280945],[-120.0434110315016,54.227820927447176],[-120.04328903233618,54.22859716787425],[-120.0433577170013,54.22949516983671],[-120.04375155859256,54.23047883218789],[-120.04430006962478,54.23119361232351],[-120.0450483455536,54.23187437108671],[-120.04579308417208,54.23263306558434],[-120.04652324487475,54.2335860296925],[-120.04685175281915,54.23456871447087],[-120.04691977705217,54.23548521619497],[-120.04715215517093,54.23595911519585],[-120.04765001428332,54.23643817288512],[-120.048424064418,54.23676838945236],[-120.04906530683223,54.23709657675473],[-120.05036812186043,54.237479150574316],[-120.05165456262633,54.23809523213722],[-120.05280299400026,54.23878544792093],[-120.05381498768458,54.23951222425981],[-120.05457102914502,54.24011461686754],[-120.05544503510934,54.24091553807555],[-120.0564737427599,54.24140709141652],[-120.05737692896798,54.241819439327344],[-120.0585418411749,54.24227663151839],[-120.0597667084166,54.242813172253825],[-120.06087891934168,54.243074450742114],[-120.06190774562349,54.243565957834036],[-120.06265829160589,54.24424781594085],[-120.06328366930296,54.24480778096792],[-120.06455866327475,54.2455995913112],[-120.06486056868012,54.24603469629617],[-120.06514787711592,54.246664638889285],[-120.06567693141224,54.24765200506772],[-120.0661005171304,54.24824702992222],[-120.0664822862489,54.248489917673915],[-120.06706578395,54.248698852058816],[-120.06805101892579,54.24887854323762],[-120.06916532659613,54.24909993589525],[-120.07066140582947,54.24960465870398],[-120.07208123080666,54.2502236389322],[-120.07335390729254,54.25103377440364],[-120.07416127911549,54.25183238824595],[-120.07489777961293,54.25270789264811],[-120.07581272932764,54.25389891950761],[-120.07609846675702,54.25456808228225],[-120.07646045780393,54.25508307144919],[-120.07661520613776,54.2557104286337],[-120.07689554735639,54.256457436569065],[-120.07718674144084,54.257048749073036],[-120.077437642564,54.25724980744914],[-120.0779704621351,54.257262337310266],[-120.07883560715818,54.257245577316766],[-120.07990474701288,54.25719268145669],[-120.08090632080555,54.257139859597906],[-120.08224253319796,54.257055022756965],[-120.08364073215651,54.257049058895035],[-120.08477331899854,54.25703799254916],[-120.08650420929371,54.25704035342148],[-120.08689771522177,54.257108986784615],[-120.0877450300069,54.257363820162816],[-120.08851979415292,54.25769377964885],[-120.08942012080954,54.258143925769154],[-120.09023687500749,54.258826554612874],[-120.09157388557846,54.259676679125995],[-120.09254331292038,54.26008970613475],[-120.09345274108313,54.260423373662746],[-120.09456741645097,54.260645095318175],[-120.09627322729733,54.26099784551778],[-120.09730653225867,54.261450459136206],[-120.09913061303214,54.26200166082042],[-120.10007497184473,54.26276514784243],[-120.10036132476462,54.26343313615007],[-120.10076390494989,54.264340529055254],[-120.10103406984514,54.26524260485507],[-120.10136950537745,54.26614729539104],[-120.10151945788697,54.266851351436515],[-120.10179487193592,54.267676692839636],[-120.10213756808875,54.26846373150078],[-120.10295665465405,54.26914636646492],[-120.10354071035644,54.26935456224979],[-120.1049248207282,54.26954374913211],[-120.10696388884246,54.26990465112234],[-120.10873618240919,54.270200869303686],[-120.1138005181842,54.27911113251169],[-120.11375169620206,54.27915540654591],[-120.1136445436951,54.279350802387405],[-120.11361186208968,54.27937675471393],[-120.1135002359401,54.27945505871533],[-120.11343231632911,54.27952481104798],[-120.11334761521468,54.27965780573934],[-120.11333354735007,54.27986390185388],[-120.1133290716632,54.27990863660259],[-120.11335272077076,54.28002665848891],[-120.11341751972684,54.28018095657458],[-120.11344700461858,54.28021778178197],[-120.11339306565534,54.28032474011974],[-120.11337580551024,54.280350874031974],[-120.11335718737607,54.280386489844226],[-120.11320448193622,54.28058979913201],[-120.11312880592847,54.28079458810336],[-120.11311138557447,54.28082183801806],[-120.11299727627716,54.28091744465864],[-120.1128042176647,54.281038440263416],[-120.11267708223447,54.28111712423423],[-120.11256353182573,54.28119533431656],[-120.11241617682603,54.28133427964441],[-120.11232243422906,54.281557305450164],[-120.11232818118691,54.28169243987793],[-120.11237939575976,54.2818471943303],[-120.11237747671706,54.28187407236008],[-120.11237299852466,54.28194577811643],[-120.112219084034,54.28215745194281],[-120.11213765252386,54.282227114741154],[-120.11207284357927,54.282288584536566],[-120.11179954465587,54.28244389537595],[-120.11146775032798,54.28258962488131],[-120.11111501322631,54.28278715596606],[-120.11085648867945,54.28296060522801],[-120.11077697469892,54.283003380175934],[-120.11076211052183,54.283012773114926],[-120.11053563119168,54.28315124877622],[-120.11029244219544,54.283352412380374],[-120.11024377262811,54.283395559997906],[-120.11019566342395,54.28342132039883],[-120.10993825061465,54.283586955417505],[-120.1096792390332,54.28375025580589],[-120.10959891973818,54.2838121046177],[-120.10942061987653,54.28395122658457],[-120.10908304450443,54.284150612395344],[-120.10900480485601,54.28418446680907],[-120.10882834579286,54.284270301368046],[-120.10862439725689,54.284345810993194],[-120.10832606728273,54.28444651520731],[-120.10823176583224,54.28447115651266],[-120.10796291997897,54.28458172414296],[-120.10777039091286,54.28468532447785],[-120.10751119938746,54.284876707290195],[-120.10743159758758,54.28492004251444],[-120.10735207498841,54.28496282413326],[-120.10716026101362,54.28507488239837],[-120.10712693431121,54.28509180263426],[-120.13394111801905,54.29550607636635],[-120.16726134647067,54.29420821535649],[-120.20000570647636,54.2786429714598],[-120.21288534401491,54.272515788839215],[-120.27719231084677,54.26992270380022],[-120.31393568437599,54.27429865821234],[-120.3295511795959,54.282701171262225],[-120.39525071868107,54.2664948704429],[-120.39999578795754,54.26605728975774],[-120.418511934513,54.26434786573474],[-120.43494601403872,54.25462482978379],[-120.42547159122005,54.2429962639008],[-120.43170027370334,54.23477772368251],[-120.44969886548388,54.22998152005668],[-120.4874854672082,54.21604891710258],[-120.50346257654948,54.206298459534096],[-120.52289469681654,54.20741925348729],[-120.54441475913116,54.215241304430556],[-120.56185341554968,54.21281247066207],[-120.56478419450542,54.20955680692266],[-120.56661972375208,54.214966060290976],[-120.56836250478827,54.22022003123686],[-120.57059954207598,54.2234832582815],[-120.57712201865942,54.22617438223177],[-120.57965654408632,54.22741991989964],[-120.58354202435702,54.229884908314254],[-120.58452207771995,54.232516559855],[-120.58177437558277,54.23605100175289],[-120.5789274070709,54.24045257752786],[-120.57892774946714,54.24501733554483],[-120.58086731127077,54.24832986269971],[-120.58340076507328,54.251821615382966],[-120.58181771109005,54.25575853236557],[-120.58191207042042,54.25855728460103],[-120.58571273125068,54.262276246579006],[-120.58814689723259,54.265359052082715],[-120.58892862785845,54.26598695652233],[-120.59252837019729,54.26913059482358],[-120.5953566071063,54.27227569262969],[-120.59739366737834,54.276158244383],[-120.60040116739846,54.28358822158245],[-120.60410585494745,54.289009364276005],[-120.60528021540921,54.2894748677904],[-120.61093055607334,54.290902824633726],[-120.61678543567736,54.2912433678968],[-120.62234996774639,54.29250522844448],[-120.62557795784383,54.29415762794693],[-120.62401216733683,54.29113220627252],[-120.62510037318008,54.28576231519095],[-120.6297915413393,54.28164802699891],[-120.63409574348019,54.28250322436856],[-120.636628311913,54.28439416613517],[-120.63954684878298,54.286050502195465],[-120.64697171714053,54.28867819529397],[-120.65429312327184,54.288901872812005],[-120.6612319151022,54.28707771563535],[-120.66973463996065,54.284737841364816],[-120.67978907876588,54.28364240455313],[-120.6833957322223,54.28500431528638],[-120.68896988466281,54.28906668228849],[-120.69551597301333,54.293863000725665],[-120.7038103556464,54.29505152977011],[-120.71367254293115,54.29522061411745],[-120.72061276218356,54.29481271495622],[-120.72480810102314,54.29629770469045],[-120.72940873983816,54.30040552739261],[-120.72403990961115,54.303847007429],[-120.71807947542372,54.305393846075795],[-120.7103548483098,54.30768118902722],[-120.70469574415696,54.310597175134944],[-120.70244137850085,54.3145418806943],[-120.70293922005708,54.31499483293488],[-120.69228484902467,54.318887404854685],[-120.6833907598694,54.322775281587745],[-120.6855342259306,54.32579797906418],[-120.69150382232874,54.32780182122067],[-120.69483205438834,54.330992841883436],[-120.69326239112237,54.33488646626226],[-120.69482874953614,54.33819819802538],[-120.69687933638473,54.34087515551454],[-120.6994255882103,54.346421711134774],[-120.6940454538343,54.35048163615369],[-120.68572286451146,54.351456956490736],[-120.67809404971837,54.35065619057324],[-120.66958996510354,54.35111934637753],[-120.66284138605138,54.35425553913997],[-120.65658200485811,54.358140655284444],[-120.65901509465112,54.360601502457506],[-120.66184329816505,54.36442732592424],[-120.66351124673801,54.368256084105106],[-120.66546983735584,54.37127994342441],[-120.6692716351752,54.37488764841021],[-120.67484685496991,54.37974079855265],[-120.68062429898298,54.38447668650554],[-120.68345660582709,54.38722387874688],[-120.68972405701936,54.3920165737511],[-120.69403861060812,54.396238641558725],[-120.70108928202946,54.39966321299436],[-120.70676387192492,54.401042016522716],[-120.70872473867807,54.40132488472791],[-120.71704048516555,54.4035995294073],[-120.72399692992065,54.40633576220813],[-120.7325208453405,54.40953464638395],[-120.73344606182671,54.409716150916466],[-120.7341671303053,54.40936214098005],[-120.73453276212973,54.40927350954704],[-120.73503194002085,54.40918503476731],[-120.73545214946043,54.40904822541991],[-120.73603381384754,54.40896555790937],[-120.73645360911794,54.40880177578505],[-120.73724483399906,54.4087000838507],[-120.73803372028271,54.40857133430248],[-120.73874312107625,54.40841331786908],[-120.73952954151166,54.40833386380131],[-120.74010944910981,54.40829489806161],[-120.74076695619043,54.40833002810157],[-120.74117676818975,54.40836456729881],[-120.74204342719392,54.40835369439318],[-120.74270719269033,54.40829475381555],[-120.74332860515078,54.408233981853414],[-120.74352076050675,54.408229921942954],[-120.74386450182237,54.40822117349695],[-120.74431817784489,54.40823064350484],[-120.74552193553797,54.40808156659126],[-120.74623735360349,54.407785641883414],[-120.74666240547518,54.4075501832696],[-120.74704861507439,54.40727037518178],[-120.74739439438495,54.406988822510634],[-120.74787056177094,54.406565782244726],[-120.74830075492032,54.40625979325029],[-120.74880826629663,54.40603012978352],[-120.74927464501081,54.40577398578916],[-120.74966871028026,54.405372105619605],[-120.74997088600696,54.40511337266218],[-120.7502273321012,54.40492453808176],[-120.75061119360076,54.404692907197045],[-120.75079762317472,54.404310148886864],[-120.75085985701182,54.40392989839759],[-120.75125102954173,54.403550349125226],[-120.7516846840859,54.40317150665305],[-120.7522833028021,54.40277394305446],[-120.75245952997615,54.4025614346994],[-120.75284486231381,54.402302910322575],[-120.75302295194217,54.402045562876744],[-120.7531161786708,54.401876642418934],[-120.7531712229526,54.40161287055915],[-120.75342612738295,54.40145091550823],[-120.75360763938711,54.40116676370922],[-120.75374329055946,54.400953628943526],[-120.75395576024229,54.40083588660064],[-120.75416808581934,54.400719260696825],[-120.75429937044561,54.40055534792342],[-120.7546035491474,54.40029556935643],[-120.75485657446592,54.40017844957814],[-120.75493553481749,54.39999992997492],[-120.7549497299101,54.39996460645432],[-120.75495989705414,54.39979435351662],[-120.75496326624307,54.39972262879998],[-120.75525970503725,54.39958379594221],[-120.7554310310808,54.39946989430934],[-120.75551988149165,54.39935019461801],[-120.75561739204,54.39908712826112],[-120.75563185634353,54.398822731328664],[-120.75564983118964,54.39848549281508],[-120.7553429917029,54.398070256091074],[-120.75522612599126,54.397924851914496],[-120.75592782795219,54.39791576883419],[-120.75682902184857,54.39802644497038],[-120.75719196402022,54.39815436812219],[-120.75772964947305,54.39814158171259],[-120.75813887158472,54.39819513274236],[-120.758590658308,54.39820335003978],[-120.75908342817728,54.39823915763406],[-120.759871115222,54.39813268585677],[-120.76070413627491,54.3980045775342],[-120.76120083450502,54.397964184398504],[-120.76182206331312,54.397903318142966],[-120.76190318204576,54.39790456162602],[-120.76219515662353,54.39786097284103],[-120.76294426810871,54.39770790431741],[-120.76320331832211,54.39749782257443],[-120.76353934422207,54.39738201005855],[-120.764039811859,54.397296849660016],[-120.76470814645886,54.397094256529286],[-120.76504231078606,54.39702327834675],[-120.76583801333938,54.396777867990856],[-120.76642108174788,54.3966670520697],[-120.76699823460194,54.39667838110811],[-120.76749248922152,54.39668726817608],[-120.76798481949456,54.39669607054946],[-120.7687280554669,54.396710035499915],[-120.76942069162058,54.39681727312783],[-120.77029087233305,54.396761443691965],[-120.77090965219239,54.39674983704141],[-120.77136818361852,54.39665947785317],[-120.77220013747076,54.396508789065926],[-120.77252923233537,54.39649259784538],[-120.77273828722157,54.39644654794257],[-120.77335691929468,54.39643604571228],[-120.77446796041896,54.39647923777872],[-120.77471231217773,54.396505444745785],[-120.77528087358357,54.39666010261627],[-120.77577030686842,54.39676756813328],[-120.7763761029336,54.39699456332977],[-120.77653678872464,54.39706995562906],[-120.77689886325217,54.39722023949976],[-120.77714018364011,54.397346253031046],[-120.77726045533534,54.39741991086386],[-120.7774168102725,54.39754452547751],[-120.7775328332277,54.39771232773477],[-120.7775293613677,54.39778516993781],[-120.77767679276074,54.39810142411551],[-120.77770288842105,54.39836755700631],[-120.77780011741424,54.39885009885619],[-120.77807399751183,54.399115627750106],[-120.77826378147626,54.3994336968562],[-120.77840669195521,54.399846328421155],[-120.77850311780894,54.40000093663459],[-120.77855803441166,54.400086388695],[-120.77883406088911,54.40033516321601],[-120.77943226792355,54.40068309194985],[-120.7800328916829,54.40098171168007],[-120.7809226165909,54.401335389466226],[-120.78161536256448,54.40144255776124],[-120.78239444466101,54.40155566675346],[-120.78333967286063,54.401595036432006],[-120.78382196642043,54.40182006813172],[-120.78455001298745,54.402075834970795],[-120.78503726219385,54.40220113274886],[-120.78560354132745,54.402405048474975],[-120.78612686233814,54.402657654051424],[-120.78652041620197,54.403002396930674],[-120.78667181770741,54.403242446995826],[-120.78709499714127,54.40378047629415],[-120.78739705739515,54.40431219697758],[-120.78757824534279,54.40477473682191],[-120.78775582475551,54.405280915887715],[-120.7879400027419,54.40572000126311],[-120.78835899842213,54.40635217083772],[-120.78859080419667,54.40664506643886],[-120.78898263382945,54.40698860190204],[-120.78917733061589,54.40720804122618],[-120.78957095368949,54.40755277397298],[-120.78950413958573,54.40803277308512],[-120.78916732764785,54.408169959408866],[-120.78865776091209,54.40844797991041],[-120.78826928465368,54.408778342572624],[-120.78837281380811,54.40916681255471],[-120.7884410394312,54.40940666874749],[-120.7885833144011,54.40984059013618],[-120.78872127043796,54.41032373509258],[-120.78907540334136,54.41064432020729],[-120.78868930644644,54.410925377938064],[-120.78826368802056,54.411182285267984],[-120.78704721190519,54.41156929698431],[-120.78657710450587,54.41187145817822],[-120.78632275574064,54.412014413358705],[-120.78630698522886,54.41227538031198],[-120.78625589641014,54.41249441029575],[-120.78619729307005,54.412802952790045],[-120.78613614681706,54.41316191814186],[-120.786001980573,54.41337963821073],[-120.78578770577205,54.41354227473807],[-120.7854870853574,54.4137292881776],[-120.78573573060343,54.41370736620272],[-120.78618813478016,54.41374245039991],[-120.78631418610463,54.41369506764368],[-120.78668499827192,54.41370195362785],[-120.78713442043458,54.41376048810425],[-120.78742138394529,54.41378736524994],[-120.78799638541761,54.4138479009837],[-120.78812003735025,54.413849822450274],[-120.78877288059638,54.41398330595517],[-120.78913994188089,54.414034940819],[-120.78946869990996,54.41406809241997],[-120.78987678235694,54.41414730673134],[-120.79024236503655,54.41422582503938],[-120.7904050691421,54.414301281169045],[-120.79056223797379,54.41442029428484],[-120.79064129784857,54.41449891074233],[-120.79076119968799,54.414545585925055],[-120.7910489423387,54.41455115202447],[-120.79137918677026,54.41455741170194],[-120.79179102883272,54.414591863191006],[-120.79223969734889,54.414671681376106],[-120.79256619270514,54.41472269428164],[-120.79293553548457,54.414756448064296],[-120.79309794267068,54.41480381464866],[-120.7933436314599,54.41483565077326],[-120.7937484263273,54.414986577691074],[-120.79402103815372,54.41527895678512],[-120.794257289888,54.41547657932362],[-120.79477947256026,54.41572459747523],[-120.79517504629403,54.41602447282573],[-120.79573314638074,54.41641663098349],[-120.79604397200517,54.416758922167354],[-120.79615044562438,54.417048690298294],[-120.79641396213128,54.41753493822185],[-120.79655725980531,54.41794643027016],[-120.7966637401264,54.41823619789051],[-120.7966462353007,54.41857232429802],[-120.79683864052323,54.41884105714047],[-120.79715710355235,54.41906239575825],[-120.7974654325691,54.419455106230714],[-120.79753088076075,54.419793651551466],[-120.79763646300577,54.42010583761776],[-120.79779264727786,54.420278697171064],[-120.79803280863392,54.42040011917413],[-120.79843710859016,54.4205554978226],[-120.79872307608875,54.42060588461638],[-120.79941244167783,54.420834065550416],[-120.79993892449752,54.42098791633411],[-120.80000181676407,54.4210568520556],[-120.8002898035009,54.42138131079404],[-120.80060592175032,54.4216519465686],[-120.80095559545116,54.4220396725828],[-120.80127158147728,54.42231142346287],[-120.80166219244929,54.422681804075374],[-120.80165478547377,54.42293863368853],[-120.8015903855429,54.423354730417174],[-120.80162647114695,54.42424561177979],[-120.80147452030118,54.42471075007779],[-120.80160870176555,54.42537786612184],[-120.80188948335989,54.42565260377894],[-120.80216003446748,54.426130150109024],[-120.80243515529715,54.42652591837647],[-120.8027859865034,54.427103456514665],[-120.80296078659421,54.42777117891068],[-120.80296493109427,54.42848664549716],[-120.8035716820274,54.4290009818523],[-120.80393889548122,54.429281644172775],[-120.80412607358969,54.42972980233971],[-120.80431144315301,54.43022279898706],[-120.80467660475938,54.43050449377278],[-120.80521255435899,54.430783360964604],[-120.80561175342301,54.431209111593326],[-120.8056666444457,54.43175381184493],[-120.80609479329524,54.432440183810826],[-120.80618508226512,54.43313349163534],[-120.80632160317799,54.43375241209209],[-120.80635461745503,54.43395032619857],[-120.80653663492585,54.434470123872586],[-120.80654321918387,54.4351362832219],[-120.80668895001983,54.435606249499344],[-120.80675189598695,54.43598061067683],[-120.80731741300767,54.436485303904],[-120.80776275338131,54.43688381409777],[-120.80783148373126,54.43718206356599],[-120.80780633888573,54.43764025715652],[-120.80711520708623,54.437897154696216],[-120.80679998285753,54.43825989603651],[-120.80614841725746,54.43857125064265],[-120.80545995026745,54.43880691834485],[-120.80501726378674,54.43916647006771],[-120.80451793466614,54.43977401302223],[-120.80419168037626,54.44036085902647],[-120.80392608102791,54.44057636406567],[-120.80390587762054,54.440949428725276],[-120.80405205226566,54.44137000938874],[-120.80373530066987,54.441759629396415],[-120.80365952793063,54.442387469588944],[-120.80379856371897,54.44295596885949],[-120.80387781349455,54.443843068921616],[-120.80468463415272,54.44459947813391],[-120.80522064767993,54.4456430329813],[-120.80462564540356,54.447263848345486],[-120.80569901090608,54.448577332259525],[-120.80674587022551,54.449580878365886],[-120.80687814996755,54.450249020470196],[-120.80680937011435,54.45155538667942],[-120.80656844552303,54.452095344207116],[-120.80563796259678,54.452877670511356],[-120.80511513278176,54.45392888710465],[-120.80477718546453,54.45471399224457],[-120.80494247456544,54.45558004963248],[-120.80471726942903,54.45663720717707],[-120.8048373204558,54.45721836717035],[-120.80488494504634,54.45745395832516],[-120.80522862372385,54.45815131870662],[-120.80588610041893,54.459323552049376],[-120.80574055758014,54.460440247981936],[-120.8046762109905,54.46135948123234],[-120.80313941229738,54.46236637570942],[-120.80232145564806,54.46261112280468],[-120.80129700219368,54.4635814394974],[-120.80115722380175,54.464590582519264],[-120.80076610754081,54.465594627119806],[-120.80051411728729,54.466327245361015],[-120.80053165445422,54.466799610616384],[-120.80047433194562,54.46706778596358],[-120.80000052299758,54.4672575710521],[-120.79952299566102,54.46744607305894],[-120.79887463478181,54.46768231167257],[-120.79792383720824,54.468056118877534],[-120.79698573579876,54.468528153497],[-120.79605619156905,54.46862774267105],[-120.7947128206718,54.46888708638088],[-120.7935074213669,54.469616065401176],[-120.7929111277783,54.47018912390076],[-120.79268594484796,54.470679205882846],[-120.79258459834386,54.471414876029925],[-120.79295714847925,54.47196079021662],[-120.79343687600748,54.47279200352736],[-120.79392039602473,54.47350210202407],[-120.7942023608222,54.474257497183984],[-120.79442470925017,54.4746128391885],[-120.79455225948671,54.47522577280445],[-120.79454175152642,54.47541509537043],[-120.7947960039189,54.47593124982738],[-120.79514210348265,54.476243584410184],[-120.795770601706,54.476561226133526],[-120.79640153799514,54.476783521482204],[-120.79699468272106,54.47698286658546],[-120.797627986446,54.477201887281375],[-120.7982504145703,54.47756754063834],[-120.79880725764636,54.477717043753515],[-120.79962360845833,54.477731628132915],[-120.8000007873102,54.47773872015822],[-120.80013427464203,54.47774104035984],[-120.80181881194855,54.47791163327585],[-120.80256260366512,54.478482308179395],[-120.80328169362718,54.47865217537705],[-120.80481203396884,54.4789991889455],[-120.80533736256672,54.479382002930855],[-120.8064997410336,54.47977171827254],[-120.80756963270842,54.48021812200096],[-120.80899600683895,54.48077400347394],[-120.81006946018887,54.48116214444988],[-120.81113204246259,54.481712631051785],[-120.81146441114596,54.48230280303687],[-120.8118056081921,54.482731653819975],[-120.81213992355065,54.48332190587008],[-120.81238432454245,54.483856681750666],[-120.81235592623993,54.48438659786911],[-120.81232752720318,54.48491651393554],[-120.81229912743218,54.485446429949775],[-120.81235872657352,54.486031739184355],[-120.81342059852528,54.48663494398085],[-120.81422186547185,54.48696880273259],[-120.81539191831955,54.487254318726016],[-120.81601426292266,54.48753115693826],[-120.81682744346209,54.48764878780993],[-120.8182653619442,54.48799393396733],[-120.8191513427457,54.488486310738345],[-120.81965977274936,54.48918835318101],[-120.81992145925496,54.4894038228318],[-120.82044469912782,54.48983587730236],[-120.82089244046375,54.4900064650245],[-120.82132489064222,54.49043578528824],[-120.82176249729162,54.49076314119072],[-120.822470601562,54.49114463886773],[-120.82344708746,54.49164306403991],[-120.82387944036037,54.49207349203066],[-120.82422613143734,54.49239922772578],[-120.82484247984524,54.49283183907356],[-120.82535997024647,54.493371419542605],[-120.82632627484043,54.49402771005644],[-120.82647424918837,54.494222622957246],[-120.82845989068521,54.49393509712378],[-120.83629630385018,54.492209783085734],[-120.83993382013554,54.49129465947738],[-120.84855648377993,54.48997012977275],[-120.85454729691445,54.48995334992271],[-120.85945553860012,54.49040269645005],[-120.87221457954334,54.491469349777695],[-120.87544570262982,54.48809290170471],[-120.87444036868105,54.48398162292349],[-120.87442950453362,54.47923841333327],[-120.87540424065163,54.47665646731354],[-120.87772537787775,54.47112192282083],[-120.87684181866607,54.467402004616275],[-120.87652171964201,54.463517106998026],[-120.88063092353109,54.4605367942465],[-120.88778151654341,54.45864500691473],[-120.90189693894575,54.45832863193626],[-120.9102410725026,54.45779687309463],[-120.91228905881559,54.45653499541063],[-120.91629978678006,54.454070473548796],[-120.92119924629105,54.454059041637166],[-120.926190593993,54.453305725736776],[-120.92932209545648,54.45129824897199],[-120.93609087894552,54.452711243289194],[-120.93866053187156,54.45624902037635],[-120.94093307463572,54.460187567859094],[-120.94516960176455,54.46291406276704],[-120.95302057201812,54.46386787193745],[-120.95574407786486,54.463421407473085],[-120.95600325947811,54.46337823418754],[-120.95563540574832,54.463281064324434],[-120.95537607642949,54.46319960857596],[-120.95491967105377,54.463066215379946],[-120.95465359586716,54.46297661991804],[-120.95427844802676,54.462844339566665],[-120.9539223068107,54.46269937153301],[-120.95371820689188,54.462578655871155],[-120.95347678754115,54.46246200948726],[-120.95314089848658,54.462388608426515],[-120.9527869695252,54.46228863727606],[-120.95247008754849,54.462202548014105],[-120.95214659660488,54.4621072025711],[-120.95186125368306,54.46204823948499],[-120.9516643235827,54.461995180302445],[-120.95140514777749,54.46192831724638],[-120.95104516723114,54.46184605386781],[-120.95078475413254,54.46177352456205],[-120.95054692661209,54.4617064205332],[-120.95021118744144,54.461616176219316],[-120.94991814046786,54.46152545299551],[-120.94952484194187,54.46141485994287],[-120.94928743191923,54.46134440238584],[-120.94876648143058,54.46120045273706],[-120.94846214178807,54.4611856037655],[-120.94810878288588,54.46111258728455],[-120.94778117429018,54.46106645911279],[-120.94751044653601,54.46096767232455],[-120.9471999209859,54.46087734086387],[-120.94699639361112,54.4608150185194],[-120.94665117192152,54.46069181171899],[-120.94625445238752,54.460546260980436],[-120.9459710613344,54.4604559276662],[-120.94570117166872,54.46033471656825],[-120.94527692208698,54.4601610759647],[-120.94494327836547,54.46003834368845],[-120.94449411348674,54.459846826476486],[-120.94394856273085,54.459635593727754],[-120.94370525426308,54.45955028440619],[-120.94335097225063,54.45939076424711],[-120.94307641738811,54.459260371415255],[-120.94286921811708,54.459055301760436],[-120.94267978877285,54.45883188194009],[-120.94234013020629,54.45860110954716],[-120.94219900871447,54.45850431583286],[-120.94200432338795,54.458401932439216],[-120.94179162248238,54.45821010523128],[-120.94167516675464,54.45805482859124],[-120.94156946266756,54.457859579122385],[-120.94149321187525,54.45772393350261],[-120.94143115396113,54.45755182608568],[-120.94135589870692,54.45729833402893],[-120.94133130108139,54.457105325433346],[-120.94133891904531,54.456933862325805],[-120.94147156293965,54.45676983032292],[-120.94158700630155,54.45655680705146],[-120.94165618358876,54.4563418648441],[-120.94169769048115,54.4560999520084],[-120.9417062725437,54.45592066973383],[-120.94163076252576,54.45559082090456],[-120.94159100733066,54.45544209320282],[-120.94158612013145,54.45516794215859],[-120.941395571206,54.45511063815501],[-120.94138215102531,54.45482715118024],[-120.94136843467737,54.454624489140954],[-120.94136794803305,54.454377466264226],[-120.94132296407149,54.45422403051165],[-120.94125349836307,54.45397077811678],[-120.94117066597705,54.45376300350181],[-120.94108423431372,54.45363142580206],[-120.94093902298629,54.45345811372924],[-120.94083251059948,54.45325384737838],[-120.9406803977201,54.45315210397212],[-120.94049813925476,54.45302777760103],[-120.94032193603348,54.45291717502952],[-120.94008116366376,54.45279603392683],[-120.93990772279993,54.45266309044956],[-120.93975177815479,54.45249831316238],[-120.93972263172799,54.452357883765096],[-120.93960193613471,54.4521900778844],[-120.93951744989046,54.45202714264343],[-120.93936012414147,54.45188925317631],[-120.9392071967126,54.451778491807865],[-120.93904863067401,54.45165065506323],[-120.93892034800795,54.451544284272195],[-120.93877265329839,54.45143823039271],[-120.93859067917155,54.4513273853035],[-120.93834483436292,54.45118469748487],[-120.93815350669209,54.45105549950166],[-120.93799837670032,54.45096260881758],[-120.93783884028561,54.450874025964126],[-120.93765603728279,54.45078559974377],[-120.93745797043375,54.45064826151488],[-120.93731772189885,54.45052904176051],[-120.93721808798585,54.45041038528353],[-120.93710827670118,54.45026436026727],[-120.93692936747449,54.45008178382292],[-120.93672293573005,54.44987111836213],[-120.93651978474274,54.449727953443094],[-120.9362080419435,54.44950730021862],[-120.93592640657451,54.44940353929933],[-120.9355516753243,54.44937899451148],[-120.90019704293914,54.431820391586676],[-120.90019360695696,54.43170796873094],[-120.89956806335617,54.41347569733991],[-121.00000592726954,54.408470969820414],[-121.1615493918998,54.40024351381978],[-121.17455705119326,54.44822047863594],[-121.1997453659312,54.45472236688214],[-121.34071713552498,54.49097497761964],[-121.39059488257539,54.49828739502625],[-121.39075188763105,54.498442579389724],[-121.3909851930936,54.498643288408694],[-121.39116901749827,54.4987669392253],[-121.39134277006418,54.49887674271695],[-121.39152693376587,54.499031828523556],[-121.39160681086905,54.499269391512925],[-121.39179211798854,54.49956928927456],[-121.3920967438527,54.4998254321957],[-121.39221405903443,54.500006050512035],[-121.39227387107015,54.50009471980376],[-121.39239588677792,54.50025082589767],[-121.39251844629496,54.50036767388043],[-121.39267206168967,54.50044978156152],[-121.39286689318203,54.50054466625398],[-121.39300053122551,54.50061479744417],[-121.3932424977506,54.500721559666836],[-121.39346524621327,54.50086126371922],[-121.3937424368349,54.50105127698231],[-121.39394369998675,54.50119241417397],[-121.39416385563148,54.5013724196132],[-121.39435488342201,54.50153561480952],[-121.39456467244382,54.50168717246571],[-121.39473693718556,54.50181038104365],[-121.39493065462001,54.50196694314893],[-121.39509066440307,54.50207846667545],[-121.39520296169245,54.50225215869529],[-121.39533393829538,54.502432165999906],[-121.39548635385998,54.502542280341345],[-121.39573452296014,54.50274914996068],[-121.39588556538773,54.50292317951488],[-121.39606503082653,54.50313755854952],[-121.39620319770064,54.50335711399687],[-121.39635290597369,54.503560270681405],[-121.39663412431186,54.50380092859565],[-121.39682088959272,54.50395049158812],[-121.39707253975484,54.50405761001204],[-121.3972765046484,54.50414048619149],[-121.39748558905802,54.50421233255116],[-121.39771473649827,54.504278201086684],[-121.39789867646886,54.504332265705024],[-121.39808977836833,54.50451229023515],[-121.39826085421045,54.50466350403497],[-121.39839506321886,54.50474599452807],[-121.39852936399613,54.50486215535676],[-121.39869199979258,54.50498499460244],[-121.39876694858185,54.50509443028977],[-121.39885664788376,54.5052796112752],[-121.39899036917016,54.50541819433047],[-121.39916337103016,54.50551785635881],[-121.39941137137696,54.505743788662095],[-121.39959054525873,54.505840315756764],[-121.39970497458097,54.50602979400133],[-121.3997521875986,54.506161751208815],[-121.39995030917758,54.50631398069352],[-121.40001404218347,54.50636800357063],[-121.40010267220914,54.50644204195395],[-121.4002918297526,54.50665677824405],[-121.40042226100957,54.50685920271957],[-121.40056109194929,54.507073165607935],[-121.40068245273758,54.50725280350913],[-121.40081483725837,54.50736888907713],[-121.400985967456,54.50748531102781],[-121.40108959359576,54.5075812355345],[-121.40120028384538,54.50771782622491],[-121.40133127488703,54.50779458054946],[-121.40156181333691,54.50793456048347],[-121.40176321589675,54.50805773192005],[-121.40201490420954,54.50816484010659],[-121.40223508564331,54.50832799558874],[-121.40258109955094,54.508562098095766],[-121.40276057737032,54.50875963188681],[-121.40289477810815,54.50887690535349],[-121.4030448827439,54.50897345477569],[-121.40316610047405,54.50905096128076],[-121.40331284654836,54.50914289502143],[-121.40355380797713,54.50927652946812],[-121.40371685302529,54.50939600943449],[-121.4038846220939,54.50945618877001],[-121.40407475168945,54.50959352065655],[-121.40419589560929,54.50968897886594],[-121.40439838559665,54.509871664301826],[-121.40462126997562,54.5100281830615],[-121.40482525075453,54.510145834533006],[-121.4050486209597,54.51024625930286],[-121.40526885439718,54.51037462131569],[-121.40546054748211,54.51051537618067],[-121.40556524433396,54.510619192025],[-121.40567884432032,54.51073007595253],[-121.40582417292057,54.510817464003864],[-121.40607531005676,54.51094698654644],[-121.40631742050199,54.51107055795083],[-121.40647102708644,54.51117060089123],[-121.406615682592,54.51124674030997],[-121.40684751327223,54.51137553513419],[-121.40707537954299,54.51155692498586],[-121.40731716945494,54.51170068214411],[-121.40747022971165,54.511788358631435],[-121.40777050920555,54.511946658026176],[-121.40815596194498,54.51217549145728],[-121.40835798270115,54.51227622919223],[-121.40851044391614,54.51242111507945],[-121.40864532612395,54.512498006680275],[-121.4087686954225,54.512642921042875],[-121.40889146413791,54.51275863488068],[-121.4090373839434,54.51282359632331],[-121.40922135184717,54.51291243178548],[-121.40949962508009,54.513111421624686],[-121.40985615442563,54.513304373212165],[-121.41013385684069,54.51352578436305],[-121.41024382070972,54.51396309302022],[-121.4102251389183,54.51421601318002],[-121.41012907790324,54.51438073750655],[-121.4098561379429,54.51454891641179],[-121.40982674336244,54.5147935785507],[-121.40989446651378,54.5149678228317],[-121.40999805738366,54.51508169240144],[-121.41005645083533,54.515235386049575],[-121.41020960915998,54.51556433955208],[-121.41027512856814,54.515775533995196],[-121.41037501126851,54.515939763748634],[-121.41050459167481,54.51604675348499],[-121.41070443101952,54.51618443768176],[-121.41085638685936,54.51628216746813],[-121.41095943148024,54.51638367103699],[-121.4110967404481,54.51649095031332],[-121.41120851481338,54.51658380374677],[-121.41137228902012,54.51671452102568],[-121.41153011708322,54.51679451486157],[-121.4116656971882,54.516882650729556],[-121.41177922891299,54.51695985847472],[-121.41183268697246,54.517053887930786],[-121.41178418290626,54.517192343872],[-121.41155916873775,54.51741731541994],[-121.41118392160854,54.517563700139625],[-121.41081100345195,54.51767201580136],[-121.41030774675889,54.517766456646264],[-121.40946459948258,54.51777854822166],[-121.40865784499367,54.517950234900475],[-121.40810064418206,54.51817955105798],[-121.40739315263315,54.518486260476884],[-121.40706064675537,54.51868361781961],[-121.40672620616056,54.5188809016423],[-121.40639590419103,54.51904130685477],[-121.40610546464201,54.519140365417414],[-121.40590771657229,54.51919128613534],[-121.40580975155378,54.51928635850482],[-121.4057741175969,54.51943090791533],[-121.40578879277085,54.51969742699596],[-121.40579609815168,54.51990867994322],[-121.40581264417523,54.52002040231394],[-121.40586508830552,54.52012337437323],[-121.40590759557259,54.52026300620595],[-121.405944664449,54.520347444535375],[-121.40610121264886,54.52047340828334],[-121.40631149083663,54.520656380732405],[-121.40656255798218,54.520873430585],[-121.40677138322914,54.521086647496965],[-121.40701592942766,54.521361806704846],[-121.40713382491509,54.521521104886546],[-121.40724301783983,54.52165426469491],[-121.40743373967716,54.52183874417093],[-121.4075221881203,54.521966635104796],[-121.40755835665422,54.522093683363025],[-121.40754071211013,54.52226808696251],[-121.40749349158489,54.522412201222586],[-121.40739398967959,54.522555472781995],[-121.40735038539316,54.522615556217126],[-121.40732677463691,54.522687613309465],[-121.40725135742775,54.5227891455225],[-121.4071947056725,54.522879038550926],[-121.40710563512721,54.52306759092593],[-121.40700002413193,54.52336886609241],[-121.40682753797138,54.52352286079104],[-121.40662964411996,54.5235749001475],[-121.40644910764837,54.523662380603916],[-121.40633030945192,54.52377013723675],[-121.40621218707528,54.52388914141864],[-121.40612434440145,54.52401489492992],[-121.40603028058233,54.52412694783591],[-121.40590064259301,54.52422756328812],[-121.40576902358669,54.52431127078692],[-121.40555269727366,54.52449279363264],[-121.40541705897303,54.524612260876545],[-121.40529838086317,54.52471889898838],[-121.40512567983994,54.524891961452155],[-121.40501449556251,54.52505274789967],[-121.40482255119447,54.525207130860814],[-121.40467192694828,54.52535633400595],[-121.40453033280495,54.525511487701834],[-121.40437852806079,54.525653912817596],[-121.4043119261419,54.52578046411477],[-121.40424607735208,54.525900310358686],[-121.40419683157387,54.52606230330617],[-121.40418867502287,54.526272974943694],[-121.40404762617453,54.5264404932351],[-121.40388494877291,54.526610564659926],[-121.40378006524269,54.5266806869799],[-121.40365616153314,54.526764682802735],[-121.40360417910539,54.52691647265835],[-121.4035638655551,54.527050745766275],[-121.40351624867708,54.527198210892564],[-121.40345834384536,54.527350900194605],[-121.40341408759397,54.527502980603856],[-121.40338663784117,54.52767813765023],[-121.40341530478797,54.527751038323906],[-121.40332007717394,54.527821523550564],[-121.40311730616607,54.527933974918305],[-121.40293666479225,54.52803940281738],[-121.40267233715456,54.52819891602377],[-121.40237838391452,54.52831130293356],[-121.40221983870696,54.52844449459528],[-121.40210071708479,54.52853764686477],[-121.40203041224349,54.528679769178794],[-121.40201621272271,54.52880604663983],[-121.40188417784209,54.528979513295724],[-121.40170332428856,54.52910400953544],[-121.4015846234888,54.5292106439741],[-121.40149102311256,54.52926660027368],[-121.40132848164077,54.52940076287476],[-121.40108074057531,54.529602419717044],[-121.40084605091836,54.52977426711486],[-121.40067540013017,54.529911490520306],[-121.40058765323508,54.53003612244586],[-121.40048865791125,54.53019175341099],[-121.4003581535304,54.53031702056128],[-121.40029236521696,54.530418911923306],[-121.40023315364208,54.53061756245029],[-121.40022505516454,54.5308102810082],[-121.40023163227343,54.53090704020602],[-121.40021750581104,54.53101536474483],[-121.4001806641273,54.53115313457466],[-121.4000714881251,54.53126124857862],[-121.400032985215,54.531310299786476],[-121.39998574807038,54.53136800009228],[-121.39987795397117,54.53146382145195],[-121.39975686542235,54.53164330953948],[-121.39963653021631,54.531816092522206],[-121.39958424142243,54.53200490339084],[-121.399429196761,54.53229645833522],[-121.39925489615108,54.53251771011328],[-121.39915609535791,54.53265426978045],[-121.39899275592931,54.53288154503205],[-121.39873808823025,54.53305824845819],[-121.39999633553415,54.5343782157326],[-121.43216961658136,54.5680385500428],[-121.43287038449425,54.56877057069855],[-121.43267022414,54.56896284781005],[-121.43245328127793,54.56914888713448],[-121.43222317373954,54.56933106804632],[-121.43192057998357,54.569466776626996],[-121.43158373868852,54.569578761861216],[-121.43123317373006,54.56967452306116],[-121.43086757645884,54.56974840026767],[-121.43048688854135,54.56978355827803],[-121.43021974478421,54.569810612281806],[-121.42932469825303,54.57107555308402],[-121.42965061352578,54.57107875101829],[-121.43034527083687,54.57153562042735],[-121.43301986650424,54.57248835126195],[-121.4378737756991,54.574518796805094],[-121.44104493298329,54.576037475196756],[-121.44214565827073,54.576895427518586],[-121.44417420076513,54.58002329012981],[-121.44342413469509,54.58242824198346],[-121.44122114805612,54.585874326340466],[-121.441469478567,54.58907953749869],[-121.44516234971535,54.59150624892358],[-121.44804049392187,54.59315741841988],[-121.4487418429759,54.59411714120314],[-121.45026657813297,54.59633735839167],[-121.453863152934,54.59991825541268],[-121.45676827716976,54.60287189028534],[-121.45484517721961,54.60534109174046],[-121.45253695228217,54.60861290462058],[-121.45395227505747,54.610146707178814],[-121.45722047048355,54.6111028695314],[-121.46045256765846,54.610567379437384],[-121.46625468138951,54.61041424881777],[-121.470689489021,54.610389826985624],[-121.47874364336323,54.60969995777985],[-121.4832863907362,54.610244622918884],[-121.48865876533446,54.61341403431356],[-121.49158459911251,54.617336987529974],[-121.494234627266,54.62235386928851],[-121.49574859762878,54.623998462967016],[-121.49467934355945,54.62452469280353],[-121.49096604837085,54.62603086579769],[-121.48962314016507,54.628046140204056],[-121.49073591893337,54.629801702082354],[-121.49490575304053,54.6314901477751],[-121.49867371559897,54.633298330386154],[-121.49990986116197,54.63563284109226],[-121.50004941680035,54.63803479538611],[-121.50292824516123,54.639163831486954],[-121.50609830982364,54.640052121847326],[-121.50552073250245,54.6411979315075],[-121.50594866626746,54.642398566155094],[-121.50734259465275,54.64358972572807],[-121.50744788495578,54.643764144661105],[-121.51330782629968,54.64651921669597],[-121.51866985192058,54.648429919186306],[-121.52254678401616,54.65040283340931],[-121.52574995144299,54.65284474002112],[-121.51994902944168,54.6535036361802],[-121.51910434947092,54.65580671352806],[-121.5223055633546,54.65841020960503],[-121.52269519121624,54.65840648425422],[-121.5245215733218,54.66091481577892],[-121.52280517095498,54.66350027909894],[-121.52243637673254,54.665156476785825],[-121.5232576708849,54.66703565544397],[-121.5213176067331,54.66853574218635],[-121.52138287274468,54.671626105212695],[-121.51805779022426,54.67325510545219],[-121.51687192122773,54.678229752426944],[-121.51699565968698,54.679087062085216],[-121.51786966245103,54.68388562714479],[-121.5149488949968,54.686076932065866],[-121.50698291539928,54.68739232950594],[-121.49959794348128,54.687956531466014],[-121.49275423047403,54.691089619230375],[-121.48829455413849,54.69477683429717],[-121.48650239621102,54.69913656714204],[-121.48323183531343,54.70361245618492],[-121.4805324255019,54.70757069217826],[-121.47843304578328,54.71159587176232],[-121.47981527253255,54.71655717913536],[-121.48017237276535,54.72050223984713],[-121.4764807698495,54.7235531437866],[-121.47523333131099,54.725796326718324],[-121.47804766655665,54.728117296413224],[-121.48015644503126,54.73005314978585],[-121.48555328210581,54.73356410862824],[-121.49033715655509,54.73628028426734],[-121.49445547571786,54.740363254121334],[-121.49641816162175,54.74504032571313],[-121.49639088236414,54.74880959124083],[-121.49459782456611,54.752882185108646],[-121.49335252793433,54.755529578976436],[-121.49525299532108,54.75682907463329],[-121.4995404648251,54.75827879640522],[-121.50214206632155,54.760438681610665],[-121.50634610174063,54.76321364632667],[-121.51071779855816,54.76489941180353],[-121.5144878721081,54.76567437010491],[-121.51786469337318,54.7663361282091],[-121.52264907993091,54.768817448179384],[-121.52563521136832,54.76976995412321],[-121.52589819961516,54.772912346512726],[-121.52468481601221,54.77670118743832],[-121.52402134658654,54.77847235580581],[-121.52306998660187,54.780304855435865],[-121.52075950803562,54.78341639598239],[-121.51964655277438,54.78713705751945],[-121.52091036665733,54.79182398526183],[-121.5227879714278,54.796614014918575],[-121.52303576397922,54.79946860598798],[-121.53036454795651,54.799878675265205],[-121.53980731361732,54.801810156642865],[-121.54549430168247,54.805086087444124],[-121.54673173766699,54.80719544114422],[-121.54881977213465,54.81266577380216],[-121.5489907441215,54.81666643562093],[-121.551104872828,54.81819702923392],[-121.55529332363035,54.82034106989202],[-121.55917888121866,54.82197135551893],[-121.56533947578777,54.82238192238016],[-121.56741317647885,54.82242967269378],[-121.57316420121276,54.823013595795004],[-121.57794218129047,54.82435219820211],[-121.58329854157728,54.82540616618994],[-121.589185836769,54.82776248475538],[-121.593984671899,54.83007058030975],[-121.59934207382057,54.83083661596226],[-121.60043816255829,54.831109155897806],[-121.6074062023638,54.83259657923633],[-121.61162413283152,54.83566410869363],[-121.61221707479545,54.83581987281073],[-121.61792650125426,54.83927239057166],[-121.62709206383103,54.84171640937676],[-121.64023978101736,54.84538675816523],[-121.64392933535899,54.846854642217345],[-121.64470790477196,54.85096606054478],[-121.64758270885727,54.855223334421055],[-121.66009212796669,54.85701985437377],[-121.66677289396398,54.85861922541909],[-121.67228275702064,54.861667013332664],[-121.67428358295555,54.86256299004557],[-121.68451663560765,54.86843254638076],[-121.6880961376177,54.873323666234334],[-121.69367033283324,54.878598469127475],[-121.6973774560664,54.88038829854456],[-121.70523275115126,54.88158659863891],[-121.71207633362746,54.881699124606754],[-121.71618199960972,54.88372658450288],[-121.7192789538707,54.884785482826516],[-121.72445979391368,54.88582681603909],[-121.72807912255675,54.88757670940906],[-121.72892450738286,54.88579305707134],[-121.72845237848814,54.88299447804662],[-121.72961488306196,54.88161670617527],[-121.73516526238808,54.88197035223367],[-121.73954817028591,54.882561633345134],[-121.7436006204241,54.882127195001516],[-121.74411687391168,54.87914742950481],[-121.74014951317744,54.87460378015734],[-121.73818022101545,54.871304772592616],[-121.73756941623574,54.870565665837304],[-121.73939545115823,54.86837610569539],[-121.74498174970944,54.86598432204006],[-121.74991379941643,54.86102091543892],[-121.75491677905869,54.858806063316266],[-121.75944703885364,54.85796583888108],[-121.76242721669244,54.85399384875509],[-121.76997864696266,54.85147117244962],[-121.77432425361347,54.85074077050117],[-121.77771289572584,54.84808379847303],[-121.78011604646771,54.84091469799349],[-121.78508880611336,54.838347720465826],[-121.79222577615211,54.83857377736343],[-121.79570106885184,54.842605294846244],[-121.79892801293974,54.84904233608228],[-121.8016355694716,54.85416027715263],[-121.80295098494274,54.85535380573774],[-121.80815314014039,54.85753214817295],[-121.81911858342869,54.859950767893665],[-121.82655375853284,54.860507889249604],[-121.83144538639418,54.86161571892986],[-121.83928266997732,54.86222155257306],[-121.84689405792903,54.86518841470705],[-121.84965797711227,54.864931521419145],[-121.85587987956931,54.86436012364985],[-121.86418426325606,54.867142760007155],[-121.86995833704228,54.86851192426245],[-121.87183280681542,54.87192195501492],[-121.87056270734466,54.87594457666683],[-121.87261137232211,54.87872327221034],[-121.8732991198984,54.88180636833463],[-121.86863727342985,54.885168029439356],[-121.85777063098097,54.88996353917712],[-121.85718345803645,54.89019508879806],[-121.84166221736606,54.89577513524764],[-121.83661428482142,54.89965218503898],[-121.84061416748173,54.90110629529552],[-121.8539528446681,54.89943741414065],[-121.86525671850234,54.8994398804018],[-121.87028664581877,54.90231845912393],[-121.8703730644603,54.90500453226971],[-121.87092439089443,54.91065855671425],[-121.86573141227952,54.91305121979415],[-121.85773892226744,54.91478439833875],[-121.85007363661022,54.92080868069984],[-121.84798334185186,54.92454336533713],[-121.8459470652679,54.92988619497586],[-121.84746465438553,54.93113079119905],[-121.85229410460522,54.93354559521079],[-121.86260895273358,54.93687996915209],[-121.86643614914972,54.94267962778643],[-121.86953286653412,54.94704581199407],[-121.87269364691694,54.9537113344802],[-121.87499275807316,54.95438039737645],[-121.87948186376615,54.95479044968843],[-121.88994911895232,54.95623391992058],[-121.89713515847251,54.957881636132406],[-121.9009280523478,54.962539206854636],[-121.90225397459834,54.96338183599793],[-121.91057397002331,54.96639439413542],[-121.92004373538013,54.974191279967],[-121.9196032048022,54.97980310487155],[-121.92137332520701,54.98247279724573],[-121.92806317330452,54.987547939363075],[-121.93291599524797,54.9903099416838],[-121.94005348735932,54.99298524267973],[-121.94105330029659,54.9966253368456],[-121.9383975364868,54.99791106443989],[-121.93584229283,54.9989757099938],[-121.93589730856633,55.000458121020365],[-121.93892330925357,55.00111386261534],[-121.94125348619265,55.002760680066196],[-121.94406614770561,55.0044501888972],[-121.94597649101686,55.006217737062364],[-121.94909803164143,55.007962105605216],[-121.95339212795064,55.008973049222526],[-121.95977376506603,55.01030327879195],[-121.96397406269963,55.01147229213303],[-121.96627718130982,55.01277672417604],[-121.96995838261168,55.01726659059726],[-121.97197001205122,55.018507567466],[-121.97458603955545,55.020145039435256],[-121.97723044223436,55.022761434510016],[-121.97971203717455,55.02291386171061],[-121.98549065023204,55.02338858744892],[-121.99139441746695,55.02529379247761],[-121.99407559075841,55.02533574117672],[-121.99764547136654,55.024966702402914],[-122.00012430408123,55.02483149208482],[-122.00247793044244,55.027231511362764],[-122.00545608381427,55.02871845702739],[-122.00824570614036,55.03020821702252],[-122.01042350777658,55.03089755482051],[-122.01270344757727,55.03198494526494],[-122.01448887532254,55.033469117407996],[-122.01646739726199,55.03506714664061],[-122.02164268414046,55.03770107566211],[-122.0219281487011,55.039747059385576],[-122.02132257519841,55.041907975693526],[-122.02221570054095,55.04368635519572],[-122.02399262344197,55.04574434365227],[-122.02398388619115,55.049503632998935],[-122.02655527399426,55.05115638777875],[-122.02904465616616,55.05236679162121],[-122.03281457996671,55.05430008765689],[-122.03460290441375,55.056412093150705],[-122.03637593204486,55.059322141877374],[-122.04005923763354,55.06086659216898],[-122.0443295688442,55.06235788966575],[-122.04642036854615,55.06395894341528],[-122.0511877585134,55.06664124969721],[-122.05687664632902,55.067620992055325],[-122.06322913471139,55.069052229170346],[-122.06611666915222,55.07184464315896],[-122.06939818963134,55.07447002700989],[-122.07078267258409,55.07510611243205],[-122.07685395954876,55.07750566902031],[-122.081928062993,55.08030405598737],[-122.08520360025273,55.08333253205615],[-122.08948975549963,55.08583651290075],[-122.09585706883821,55.08926722542395],[-122.1016316952294,55.09200602841743],[-122.10451528850253,55.095371509025064],[-122.10280439661297,55.09777611767254],[-122.10350152781444,55.09902721469888],[-122.10628926067467,55.10062210823206],[-122.10927502261372,55.101307988472726],[-122.11546692252733,55.10153800035427],[-122.12214400979009,55.10228530914192],[-122.12452508810884,55.10468350055899],[-122.12472642314162,55.1053716660036],[-122.12662062192403,55.106453651186094],[-122.13229918331245,55.1054824619406],[-122.13201281988056,55.102234648622904],[-122.13221356165157,55.097844644528976],[-122.13571022777333,55.09369199480499],[-122.14049002031805,55.09403826351683],[-122.14687514819754,55.0942099495762],[-122.15135050882624,55.091648430687506],[-122.15424904912307,55.090114479516245],[-122.15433784785549,55.0934726930362],[-122.15484590668757,55.09523795446199],[-122.15942954436599,55.09616056538006],[-122.16689688588806,55.09769254102423],[-122.17038048854245,55.10208865802475],[-122.17037625748564,55.1071037123344],[-122.172167926402,55.111268060187165],[-122.17555325616748,55.114063989332806],[-122.17954253685124,55.1169681296341],[-122.17975049902591,55.1194237939692],[-122.17575438696525,55.12272785732666],[-122.17455339674865,55.126261564647],[-122.17714050480683,55.12968773028849],[-122.18312341863195,55.133334945882666],[-122.1892200206718,55.13612405861157],[-122.19629949632353,55.13835084845726],[-122.20867629984947,55.14001243453844],[-122.212763823676,55.14091773023267],[-122.2213434588732,55.14160982456676],[-122.22702842829386,55.141603319933],[-122.23230654333257,55.13887487481714],[-122.2442765646871,55.131737695935314],[-122.25485127005123,55.13042451447615],[-122.26482938357252,55.13248356539676],[-122.2685275240783,55.136577957899824],[-122.2692389419817,55.14079779495481],[-122.26903709105488,55.14569889445259],[-122.26984301936426,55.149580663338305],[-122.2733481006092,55.15408172076991],[-122.27674982990442,55.1566418206245],[-122.2847352768405,55.16159970559494],[-122.28994384194274,55.16542451224556],[-122.29324764912909,55.170439204756846],[-122.29225565201253,55.17385443074538],[-122.28917150385635,55.17688423295897],[-122.28757980129068,55.17910633265735],[-122.28777964560868,55.181041056651296],[-122.28577744358074,55.18360971569348],[-122.28349676552212,55.184582159981794],[-122.28348109686944,55.18492258846954],[-122.28229322645977,55.186178879073275],[-122.27561312412016,55.190060678991195],[-122.2740104087208,55.19017411967144],[-122.26781453240288,55.19085841167136],[-122.25702052691035,55.19114384919376],[-122.24812716522199,55.192346980785786],[-122.24763648660303,55.194566001951685],[-122.25024572803035,55.1968516600456],[-122.2533287591398,55.1989631405145],[-122.25753166092996,55.201583724149664],[-122.25914345546184,55.20443123287404],[-122.2605450565275,55.207676094358554],[-122.26265096882085,55.20979379973975],[-122.26545297493381,55.210362425779984],[-122.26755070504659,55.21036261197629],[-122.27314517977358,55.21058423759465],[-122.27754017169603,55.21251905951137],[-122.27963728401258,55.214402933877416],[-122.28164096314723,55.21559320635183],[-122.2864417677421,55.217414224487875],[-122.28905493387357,55.2176447295311],[-122.2947442518907,55.21821804642786],[-122.29985045951125,55.21964392842617],[-122.30455289444537,55.221003769650686],[-122.30785019863218,55.221003010784315],[-122.31345165746761,55.22064885062042],[-122.32034731545484,55.222701014049335],[-122.32726597325698,55.22537243307339],[-122.32885550801842,55.22628053988178],[-122.33697968380324,55.22958798584919],[-122.33807177139767,55.23011464195283],[-122.33840314343678,55.23002796066839],[-122.33901757584385,55.23001688805178],[-122.33976260661781,55.23030456420401],[-122.34036153424469,55.23057223945524],[-122.34051799109965,55.23065197053096],[-122.34062574429508,55.23070335701582],[-122.34084725486974,55.23080518494286],[-122.34096236883808,55.23086239423885],[-122.34097325610117,55.23087280638357],[-122.34098984142912,55.23088562876167],[-122.34126697819907,55.23100479040885],[-122.34182519109835,55.23124322753916],[-122.34210233280433,55.23136238733034],[-122.34213194290561,55.231362136549336],[-122.3423390101387,55.23136261755749],[-122.34266855394425,55.23136109195339],[-122.34283027328085,55.2313613604222],[-122.34296051701428,55.23136070350628],[-122.34319031032744,55.2313932482277],[-122.34329152760652,55.23155993673281],[-122.34318608852669,55.23185174653975],[-122.34303580541757,55.232072716013896],[-122.34300643513647,55.23215707354974],[-122.3430714242406,55.232201594128504],[-122.34316928152933,55.232275113864226],[-122.34329844695364,55.23237310151402],[-122.34341031430831,55.2324660953345],[-122.34349233288613,55.232540270621286],[-122.34356492213664,55.23260968343555],[-122.34372583633014,55.23268393443514],[-122.34392768894848,55.23272014178279],[-122.3440084496616,55.23272139356341],[-122.34409066923548,55.23272829478532],[-122.34426691223601,55.23274244388511],[-122.34438878283972,55.232747145951436],[-122.34442656816113,55.23274377081554],[-122.34449800084282,55.23273914158641],[-122.3447395359044,55.23272941780869],[-122.34511505021506,55.232721386653004],[-122.34539138641948,55.23271941185002],[-122.3455116963815,55.232719581677635],[-122.34565625981477,55.23273504095063],[-122.34590129335515,55.23277363461469],[-122.34612604457023,55.2328183600972],[-122.34627447795758,55.232856358758596],[-122.34637837497716,55.23288520017223],[-122.3464598839371,55.23289992820621],[-122.34652823153382,55.23290754177884],[-122.34656137087907,55.232911878837506],[-122.34658412905478,55.232900212534474],[-122.34664952164734,55.23287522089198],[-122.34671450769882,55.23285470257421],[-122.34673261989036,55.23285074909338],[-122.34684126472617,55.2328707589309],[-122.34710400599184,55.23290987008888],[-122.34737512498957,55.23294362000738],[-122.34769695103981,55.232962037959034],[-122.34815926913322,55.232975608080935],[-122.34855096740168,55.23298486135116],[-122.34878341501465,55.23298831888298],[-122.3490351296017,55.23299682662607],[-122.34925133108537,55.233005413169906],[-122.3493103505296,55.233007144884816],[-122.34939151814979,55.233003919806954],[-122.34957600149298,55.23299251269504],[-122.34974697990006,55.23295604005007],[-122.3499102151815,55.23287448719384],[-122.35006018627206,55.232786938432],[-122.35011282059637,55.23275035756535],[-122.35010438067329,55.232778142995414],[-122.35010656474383,55.2328410010182],[-122.35014174859555,55.2328880072713],[-122.35016454416561,55.23289764653219],[-122.35022810721763,55.23289278317654],[-122.35035709907207,55.23288423241732],[-122.35042252787787,55.23288054501186],[-122.35044674466978,55.23287452742255],[-122.35054361176502,55.23285045701796],[-122.35066282966855,55.232819192861484],[-122.3507113646032,55.23280603924164],[-122.35078459974973,55.2328250070117],[-122.35093697218039,55.232863115515684],[-122.35102190990918,55.23288354767477],[-122.3511220398079,55.232888726833615],[-122.35134353417469,55.232904192889144],[-122.35160800518031,55.232924282704836],[-122.35184473108829,55.232945801083225],[-122.35198173290716,55.232957667248144],[-122.35201300703275,55.232960826830904],[-122.35205032402475,55.23298434731987],[-122.35212299081941,55.23303133058544],[-122.35216040940519,55.23305373269739],[-122.35221155975975,55.23305523232374],[-122.35231966098573,55.23305952288527],[-122.35237081135358,55.233061022446165],[-122.35242413196097,55.2330603429714],[-122.35254196838147,55.233066040054936],[-122.3526432546466,55.23308022241892],[-122.35282968300919,55.23311259893779],[-122.35318836358937,55.23318142088459],[-122.3535004379739,55.233242147963495],[-122.35368137146327,55.23326987685489],[-122.3538534827009,55.233286133769916],[-122.35398851893487,55.233297940075815],[-122.3540316989114,55.23330032670216],[-122.3540543537289,55.2332897773793],[-122.35408952242243,55.2332717455198],[-122.35414249849883,55.233253114129134],[-122.35420677148574,55.23324042032179],[-122.35426670414239,55.23323208457494],[-122.35429455102067,55.23322953656501],[-122.3543184632298,55.233226873260385],[-122.35441027877184,55.23321498636444],[-122.35453987916054,55.23319972119636],[-122.35462467722532,55.23319996302753],[-122.35471158487037,55.233220450309936],[-122.35481362293234,55.23324810870228],[-122.3548600278466,55.2332584387388],[-122.35486481456758,55.23327091345623],[-122.35487055473395,55.2332946292731],[-122.3548732727356,55.2333081647011],[-122.3549500808655,55.23335302489615],[-122.35519186373149,55.23347111815035],[-122.35548924074308,55.23358523273506],[-122.35568605871201,55.233633607590335],[-122.35585182333809,55.23363285604672],[-122.35612483869347,55.23362403210244],[-122.35650382886362,55.23364297979066],[-122.3568943615447,55.233686933209015],[-122.35713795093216,55.23371985542155],[-122.35721200137435,55.233729872626576],[-122.3573486021581,55.23374620628139],[-122.35770362287812,55.23379023877072],[-122.35809375309384,55.2338386618234],[-122.35831610849084,55.233866474903],[-122.35856777219169,55.23389738794485],[-122.35902418757189,55.233954475784486],[-122.3593948497196,55.23400008236142],[-122.35952368405299,55.23401506502404],[-122.35956497018375,55.2341037353882],[-122.35964945259317,55.234303558205],[-122.35985728881171,55.2344699864217],[-122.3601824188885,55.23462638968396],[-122.36048161402383,55.23480782361467],[-122.36059701379159,55.234884084290435],[-122.36069601869632,55.23479278982347],[-122.36089806320305,55.234609197384515],[-122.3609970667485,55.23451790268006],[-122.36106510339862,55.234572594115605],[-122.36120273979974,55.23468650781815],[-122.36128716797417,55.23475625552348],[-122.36137131770322,55.23474189665362],[-122.36158784702539,55.23470337593888],[-122.36186732126752,55.23471042645014],[-122.3622465037506,55.234814581532675],[-122.3626729064561,55.234920115765],[-122.36301139457731,55.23497261985075],[-122.36322619339404,55.23499683907829],[-122.36330221513411,55.23500691016637],[-122.36334842193905,55.235019473747876],[-122.36351761111231,55.23506814955871],[-122.36381927164449,55.235135273413356],[-122.36422157620778,55.2352019733942],[-122.3645615305419,55.23526012252662],[-122.36468739216922,55.235286225910784],[-122.36472572993138,55.23529855905946],[-122.36479266939352,55.23532181957338],[-122.36495606889517,55.23532547185092],[-122.36523373638241,55.235308914405195],[-122.36557122802856,55.23532886429611],[-122.36599164887348,55.23539160233579],[-122.36636201487458,55.235528004826506],[-122.36653618207654,55.23571810647386],[-122.36657572007131,55.23580448036108],[-122.36660694363975,55.235830060852805],[-122.36666762555161,55.23587892765121],[-122.36670101885213,55.23590232885618],[-122.36677174711822,55.23590551534348],[-122.36691900506925,55.235913178889824],[-122.36698983443091,55.235915246896816],[-122.36702318057374,55.235917341798164],[-122.36710581484449,55.23591975439998],[-122.36727880478705,55.235904621337156],[-122.36754851008082,55.235845216537406],[-122.367745316887,55.235784804542945],[-122.36783183808032,55.235766025310575],[-122.36790579391584,55.23577715451538],[-122.36794060230677,55.23578489838676],[-122.36799871210457,55.23584041725082],[-122.36811473012507,55.23595369161315],[-122.36832483726808,55.23605177106325],[-122.36863195883325,55.236145953539186],[-122.36879581000052,55.23621016435663],[-122.36880650389281,55.23622281078717],[-122.36881159831809,55.23623192989705],[-122.36896501076916,55.236258832771114],[-122.36927385622114,55.23629027078529],[-122.36949053235472,55.23631565497698],[-122.36964157412554,55.236346973047425],[-122.36984720148116,55.236385489911335],[-122.370023417533,55.23642202713795],[-122.37016194823184,55.23646082871288],[-122.37034245196647,55.23651543141579],[-122.37056750240932,55.23657918229532],[-122.37081036223074,55.23664233086364],[-122.37099011153293,55.23668345492918],[-122.37112632414875,55.23670424691368],[-122.37126283973276,55.23672168366923],[-122.37132529592465,55.23672911150417],[-122.37136600838349,55.23673702654538],[-122.37146080230893,55.236757731643415],[-122.37166174208743,55.23678265307001],[-122.37198189333462,55.236863751186824],[-122.37221925681874,55.23700971305992],[-122.37229725100322,55.2371072976097],[-122.37231500911606,55.23712912006767],[-122.37232373680867,55.23714170883707],[-122.37242988317074,55.23718965537831],[-122.37272446096556,55.23727000593024],[-122.37302771734142,55.237341638289145],[-122.37313805225752,55.237365037623114],[-122.37317079457542,55.23737384104818],[-122.37339333155906,55.237421815069936],[-122.37381257598307,55.23749794705893],[-122.37416235027888,55.23753505045749],[-122.3744141995154,55.23754238854228],[-122.37465676664786,55.23756515390604],[-122.37485902562653,55.23761926225517],[-122.37502940051169,55.23767692665954],[-122.37517136879309,55.23767769831899],[-122.37533775197059,55.2376264798616],[-122.37555882354488,55.23758133929246],[-122.3757272316932,55.23763894543331],[-122.3757608429263,55.23779129987539],[-122.37584293526349,55.23790918467443],[-122.37614958094163,55.237965209645786],[-122.37648175387307,55.23800067247199],[-122.37661474416595,55.2380135153172],[-122.37664208895576,55.238016554131605],[-122.37671373309635,55.238053400490884],[-122.37678972004888,55.23812961872743],[-122.37685788944098,55.23822691398243],[-122.37701914631688,55.23836392227123],[-122.37737847675264,55.238492119760956],[-122.37780576423131,55.23858865528604],[-122.37803492732588,55.238672695079586],[-122.37807509175335,55.2387086243399],[-122.3781154577667,55.23874231685601],[-122.3781938193361,55.238814118045156],[-122.37826405577279,55.23886662063613],[-122.37839271725912,55.23892755131569],[-122.37859312747175,55.239024208777494],[-122.3787468657621,55.23909147531048],[-122.37891129580618,55.239127656418006],[-122.3791348566317,55.23916443652294],[-122.37927491644787,55.2391864524701],[-122.39999950948803,55.22959975902007],[-122.4038284499668,55.22782786873004],[-122.40385282260371,55.227842028561184],[-122.40388466376592,55.227860889375144],[-122.40391543793264,55.227869627849515],[-122.40396274934183,55.22786987411156],[-122.40419850635584,55.22788005223914],[-122.40423008063928,55.2278798435489],[-122.4042466178091,55.227871351306476],[-122.40427745789356,55.22783524054446],[-122.40429362793225,55.22780879726608],[-122.40434143791562,55.22773729612066],[-122.40437344494785,55.22771018927689],[-122.40439088201147,55.22769163154154],[-122.40443782604848,55.227673926593845],[-122.404532881168,55.227647520585386],[-122.40459556213698,55.22763027038491],[-122.40475243267012,55.22764041021278],[-122.40481478095593,55.22764893963405],[-122.40484545517596,55.22765879626475],[-122.40486165957695,55.22767608367315],[-122.40490853826115,55.22770322769472],[-122.40493957993537,55.227731035329995],[-122.40495498453586,55.227757269817936],[-122.40497108904012,55.22777567559867],[-122.40504697762604,55.227875419491966],[-122.40507768711683,55.227929006826514],[-122.40517174809018,55.228046094865455],[-122.40520199038916,55.22808284952929],[-122.40521739529532,55.228109083985444],[-122.40520192558785,55.22812769867746],[-122.40516788678505,55.22819959804252],[-122.40513548264555,55.22829733397432],[-122.40511921298308,55.22832489574945],[-122.40510267581102,55.2283333881081],[-122.40505573129731,55.228351093307246],[-122.405024524082,55.22836925323507],[-122.40499214954463,55.22837840921923],[-122.40486678556255,55.22841290998983],[-122.40483441095421,55.22842206593299],[-122.40477092892978,55.22844826334562],[-122.40474088875057,55.22847542714065],[-122.40470888135725,55.228502534080356],[-122.40464416648052,55.22856457663916],[-122.40459562156252,55.22860017584553],[-122.40458051861668,55.228636741490845],[-122.40457928591188,55.22867258670046],[-122.40456288468799,55.22878984670355],[-122.4045624519415,55.228816744823476],[-122.40459199428702,55.228861328341125],[-122.40460729909732,55.228888681260464],[-122.4046541790224,55.22891582538019],[-122.40471636392618,55.228970322388335],[-122.40474830637832,55.228988064596585],[-122.40477828166034,55.229005749949515],[-122.4048886447484,55.22900669656356],[-122.40504632059523,55.22900788893022],[-122.40509373333244,55.22900701637601],[-122.40512600837023,55.22899897875179],[-122.40515641617836,55.22898976589143],[-122.40518879117013,55.22898060986425],[-122.40525153868161,55.22891851018093],[-122.40530008340339,55.228882910718085],[-122.40534666084802,55.22884725439821],[-122.40537866808593,55.22882014729386],[-122.40541110746007,55.228766142058504],[-122.40542844452965,55.22874870256339],[-122.40546058066228,55.22863189713793],[-122.4054763826063,55.228587502677314],[-122.40549381954145,55.228568944786296],[-122.40558857276628,55.2284797377936],[-122.40563631692837,55.228453085296856],[-122.40568442875579,55.22844438380827],[-122.40576134839763,55.22844436348763],[-122.4058255653541,55.22845406762184],[-122.40587207778185,55.22846326025617],[-122.4059815758189,55.22851800214932],[-122.40605843175376,55.228562830795056],[-122.4061533604258,55.22862612184821],[-122.40623048478223,55.22869001980096],[-122.40626242767934,55.22870776162036],[-122.40637032776152,55.2287803973741],[-122.40641720874952,55.228807540829806],[-122.40643251477984,55.22883489352468],[-122.40644872033602,55.22885218072805],[-122.40646402640472,55.22887953341915],[-122.40647853293989,55.22891583321068],[-122.4064943070915,55.2289600185351],[-122.40647471309578,55.22911306720207],[-122.40647428162353,55.22913996532927],[-122.40645971161011,55.229148514688795],[-122.40646007969126,55.22916646571384],[-122.40642690526803,55.22918456917367],[-122.40631551498626,55.22928338771683],[-122.40626813828598,55.22932799150136],[-122.40612607132869,55.22941695359448],[-122.40610953392037,55.22942544608742],[-122.40607789460681,55.22947050440729],[-122.40607746286554,55.22949740253382],[-122.40607659938128,55.22955119878714],[-122.40607536798099,55.22958704401387],[-122.40609067407541,55.22961439675229],[-122.40616816818196,55.22969624577493],[-122.40623008831092,55.229731672616104],[-122.4062785695439,55.22974092192355],[-122.40637239719685,55.22975035973602],[-122.40641971083197,55.229750605064524],[-122.40648239426767,55.229733353911584],[-122.40651280232012,55.22972414071949],[-122.40660866046161,55.229688786019615],[-122.40673486328038,55.22968906715359],[-122.40698636953411,55.229699694532385],[-122.40706525880992,55.22969973021835],[-122.40709593514416,55.22970958629616],[-122.40715748771267,55.22972706165226],[-122.40725285181834,55.22976345374152],[-122.40729973454668,55.22979059686697],[-122.40732998009993,55.22982735101857],[-122.40733034857546,55.22984530204186],[-122.40735989474223,55.22988988490611],[-122.40737600119974,55.22990829037863],[-122.40742128544952,55.22995332767576],[-122.40746816851266,55.22998047073808],[-122.40750011297965,55.22999821224166],[-122.40756236558356,55.23000785867721],[-122.4076561941599,55.2300172955226],[-122.40768777010217,55.230017085955495],[-122.40773588335573,55.23000838367325],[-122.40778399658848,55.229999681372455],[-122.40779856662873,55.22999113185737],[-122.40781590319146,55.22997369202826],[-122.40783057312487,55.22996402412058],[-122.40784754095475,55.229928633265196],[-122.40786559343611,55.229748629441616],[-122.40786565527166,55.22970378028671],[-122.40788342221812,55.22965944231555],[-122.40789889127407,55.229640827288364],[-122.40791505965878,55.22961438353633],[-122.40797817271363,55.22957023349745],[-122.40804255354172,55.22953396894585],[-122.40807296108635,55.22952475537294],[-122.40824557771178,55.22953534516052],[-122.40829209194187,55.22954453689164],[-122.40834057342329,55.22955378539615],[-122.40838745664102,55.2295809281116],[-122.4084027643045,55.229608280565756],[-122.40841657360511,55.229652408859046],[-122.40841614342494,55.22967930699407],[-122.4083994452586,55.229733767335745],[-122.40841592108809,55.22977012369359],[-122.40843016063121,55.22978735385061],[-122.4084777821558,55.229850398572516],[-122.4085557116614,55.22990534797494],[-122.4085856892997,55.22992303241252],[-122.40861843331287,55.22993182651274],[-122.40866414899736,55.229949965221806],[-122.40874293888125,55.22995111823449],[-122.4087753138304,55.22994196127417],[-122.40880652057271,55.229923800404194],[-122.4088850019395,55.22986215315226],[-122.40891700760129,55.22983504513652],[-122.4089498122428,55.22979898999389],[-122.40898181781067,55.229771881961575],[-122.4090615273582,55.22967438934327],[-122.40910980022703,55.22961971898547],[-122.40917211301078,55.229584515461],[-122.40920448756735,55.229575358389376],[-122.4093464279089,55.22957609109277],[-122.40953488281748,55.22958601490131],[-122.40956635855142,55.22958692324808],[-122.40964364988,55.229604851545524],[-122.40969053403602,55.22963199377044],[-122.40978510137248,55.2296773310435],[-122.4098303880583,55.22972236746387],[-122.40984649557858,55.22974077261658],[-122.40989215202227,55.22980376003035],[-122.40992409741754,55.22982150091189],[-122.40995551383763,55.22986725831648],[-122.41001663877597,55.22991163040024],[-122.410079690623,55.2299123284517],[-122.4101278032341,55.229903625245306],[-122.41017511707223,55.22990386914694],[-122.41025363697088,55.229885951798046],[-122.4103328556766,55.2298602056631],[-122.4104268433768,55.22982367287333],[-122.41050526317231,55.22980687375685],[-122.41056884343962,55.22977955502706],[-122.41064806173428,55.22975380869185],[-122.41074391631356,55.229718450808406],[-122.41079085991969,55.229700743463155],[-122.41080749627918,55.22969113195699],[-122.41085364122856,55.22968237171848],[-122.41090095481098,55.22968261534432],[-122.41112178480884,55.22968337923004],[-122.41115326065473,55.22968428717575],[-122.41118403779376,55.22969302385483],[-122.41127663971285,55.229738303249455],[-122.41132512211347,55.22974755059205],[-122.4114040114868,55.22974758352933],[-122.4114343186146,55.22973948752723],[-122.41146589431916,55.22973927700209],[-122.41154601020993,55.22970346456905],[-122.4116390982179,55.229676996391795],[-122.41165563456269,55.22966850316433],[-122.4117194844616,55.22966025324953],[-122.41176562917705,55.22965149267307],[-122.41187689236483,55.229642367564814],[-122.41201883299125,55.229643097222],[-122.4120496102867,55.22965183368712],[-122.41211223405206,55.22967942885684],[-122.41218936988759,55.229743323123394],[-122.41222051795273,55.22977001055509],[-122.41222009031368,55.22979690870341],[-122.41220296959472,55.229878267703924],[-122.41220174364095,55.22991411299201],[-122.41218674690104,55.22994956117068],[-122.41210651687067,55.230075072332184],[-122.41209035105499,55.23010151662931],[-122.41205791956753,55.23015552360966],[-122.41199385468663,55.23025459040729],[-122.41197768872479,55.23028103469013],[-122.41195976894515,55.23037134079853],[-122.41192743686166,55.2304242293537],[-122.41191191204051,55.23048769404147],[-122.41192615333426,55.23050492379957],[-122.41194103592058,55.230559173969525],[-122.41195671691737,55.23060447699935],[-122.41197165684291,55.23061387800624],[-122.41200317600472,55.23065851650461],[-122.41204926462834,55.23069460498226],[-122.41208121168161,55.23071234531147],[-122.41211189001609,55.23072220015431],[-122.41223809611358,55.2307224757109],[-122.41242655710326,55.23073239514391],[-122.41245893184269,55.23072323722531],[-122.41263118391417,55.23071586992523],[-122.41288162878499,55.23071636313888],[-122.41296158943446,55.23072651734593],[-122.41300730797911,55.23074465446141],[-122.41308534516611,55.2307984826394],[-122.41314834250569,55.23084402829791],[-122.41319523046896,55.230871169205685],[-122.4132105418908,55.23089852107134],[-122.41322595309526,55.23092475454185],[-122.41320968791152,55.230952317379256],[-122.41320926092104,55.23097921553336],[-122.4131453532813,55.23103231537418],[-122.413050239759,55.231103577125396],[-122.41300169921446,55.231139179615305],[-122.41295512589988,55.231174838804264],[-122.41293769127638,55.23119339774353],[-122.41290648541387,55.23121155965037],[-122.41281259649745,55.23124697592243],[-122.41278032119214,55.23125501554024],[-122.41273337664839,55.23127272363751],[-122.41265405691937,55.2312995896952],[-122.41262205261012,55.23132669867437],[-122.41252693746544,55.23139796002737],[-122.41244596406275,55.231487569400734],[-122.41241353193553,55.231541576479145],[-122.4123985347757,55.23157702468763],[-122.41238316684374,55.23159452188361],[-122.41238273929397,55.231621420036056],[-122.41239767969655,55.23163082099259],[-122.41241262010612,55.23164022194721],[-122.41242756052263,55.2316496229002],[-122.41253760337634,55.231676342495085],[-122.41258529014965,55.231694536491275],[-122.41261596935628,55.2317043912105],[-122.41264871569949,55.231713184252094],[-122.41272595606273,55.23177595980272],[-122.41277284482692,55.231803100871396],[-122.41289772915313,55.231840339451246],[-122.4129758244621,55.231849318537975],[-122.413022342447,55.231858508503684],[-122.41311697475548,55.23185899408943],[-122.41325812511678,55.23186866948076],[-122.4133219781779,55.231860418743004],[-122.41336892314821,55.231842710422995],[-122.41343250468792,55.23181539022699],[-122.41346361102391,55.23179834658118],[-122.41347987637567,55.2317707837088],[-122.41348158364433,55.23166319108312],[-122.41346712539811,55.2315820429368],[-122.41346718099393,55.231537193773384],[-122.41348334648161,55.23151074929474],[-122.41350040974802,55.23147423927167],[-122.4135157771483,55.23145674193788],[-122.41354895025549,55.231438636586496],[-122.41359552334919,55.231402977174746],[-122.4136120599903,55.231394483686394],[-122.4136756406568,55.23136716336718],[-122.41369020994046,55.23135861316201],[-122.41375289276384,55.23134135834712],[-122.41383258323111,55.23133244259535],[-122.41394295291182,55.231333381184726],[-122.41419340164153,55.231333871760164],[-122.4142407171857,55.231334114117075],[-122.4142725659789,55.23135297227914],[-122.41431982690074,55.231398063769205],[-122.41431860278617,55.231433909082014],[-122.41430280947878,55.23147830467361],[-122.41427080613805,55.23150541407688],[-122.4141599547933,55.231576223100134],[-122.41409514980545,55.231639388978266],[-122.4140469810275,55.231692942882624],[-122.41403081583701,55.23171938743476],[-122.41401572029356,55.2317559542323],[-122.41399838564983,55.23177339492686],[-122.41399912858586,55.23180929693895],[-122.41399870211391,55.23183619509736],[-122.41402815738776,55.2318818947797],[-122.41404356950177,55.231908128150934],[-122.41406047775243,55.231917585608876],[-122.41410656966286,55.23195367332832],[-122.41415425747412,55.231971866724066],[-122.41421651472582,55.231981509834334],[-122.41424809217494,55.231981298603664],[-122.41443655955509,55.231991214995524],[-122.41446813701066,55.23199100370911],[-122.41449844521155,55.231982906959864],[-122.41453044877862,55.231955797497214],[-122.41469036624407,55.23182136845578],[-122.41481668399061,55.231731943069725],[-122.41486442589905,55.231705287028646],[-122.4148809623966,55.23169679337161],[-122.4149594836981,55.23167887305308],[-122.41500759736574,55.2316701679602],[-122.41511600065692,55.23167104882433],[-122.41532100319263,55.231672470187064],[-122.4154148374688,55.23168190118735],[-122.41547836401092,55.23169942911179],[-122.41554179090899,55.231718075399115],[-122.41563519996596,55.23175440439688],[-122.41571207283438,55.23179922709427],[-122.4157597611884,55.231817419875],[-122.41585279837716,55.23183579770898],[-122.41604243533777,55.23185471550672],[-122.41618278893169,55.23187333474847],[-122.41621426660448,55.23187424141508],[-122.41627742131307,55.231873817932524],[-122.416355790284,55.231901864294905],[-122.41657541044279,55.23193846384337],[-122.41660619048282,55.23194719918367],[-122.41662309935211,55.231956656293605],[-122.41666999095507,55.23198379589521],[-122.41673102684413,55.23202928308591],[-122.41674596841386,55.23203868352094],[-122.41673134757453,55.232092083250585],[-122.41669732601768,55.23216398578709],[-122.41666489905082,55.2322179939754],[-122.41660131453295,55.23233389576065],[-122.41660168716702,55.23235184675961],[-122.41655235087505,55.232396397806134],[-122.41652034831961,55.23242350778942],[-122.4164899405189,55.232432723426925],[-122.41647340405855,55.23244121729806],[-122.41642608719927,55.23244097578953],[-122.41614298353136,55.23243057919398],[-122.41609566668654,55.23243033755981],[-122.41601794192854,55.23243931143007],[-122.41593824975361,55.232448228581084],[-122.4158598270792,55.23246503112225],[-122.41574850393604,55.232519008958725],[-122.41570155922395,55.232536718176604],[-122.41565381688362,55.23256337454029],[-122.41558990995375,55.23261647564197],[-122.41554253960938,55.23266108296548],[-122.41549427183143,55.23271575582902],[-122.41544610362705,55.23276931027878],[-122.41538336584351,55.23283141511603],[-122.41535173423601,55.23287647580309],[-122.4153355694275,55.23290292052688],[-122.4153339740977,55.23292081485009],[-122.41533386706311,55.2330105131878],[-122.41533211850043,55.23307437507551],[-122.41533046964099,55.23313711856824],[-122.41536279216882,55.23317280906262],[-122.41537810593964,55.23320016066635],[-122.41545498128345,55.23324498352733],[-122.41551878276631,55.233281580832106],[-122.41556530298756,55.23329076984882],[-122.41561182323007,55.23329995884814],[-122.41569071957075,55.23329998906959],[-122.4159265113599,55.23331014499551],[-122.41598877110665,55.23331978722064],[-122.41613109721158,55.233338463192794],[-122.41627145602142,55.23335708233664],[-122.41635072500623,55.23337506314138],[-122.41653919943187,55.23338497635201],[-122.41664877742288,55.23339485971295],[-122.41669529803309,55.23340404830762],[-122.41675755810935,55.23341369014855],[-122.41688334811856,55.2334408591683],[-122.41691412937456,55.233449594433466],[-122.41694677841234,55.23345950474238],[-122.41699409647235,55.23345974605314],[-122.41704061723642,55.233468934518754],[-122.41708793530809,55.23346917579396],[-122.41716603471284,55.23347815225386],[-122.41730639448873,55.23349677023157],[-122.41744951903776,55.23350649752245],[-122.41751060920961,55.23350713516452],[-122.41760524544897,55.23350761733952],[-122.41769945767426,55.23353499761713],[-122.41785720057455,55.23357990453675],[-122.4179820951194,55.23361713802261],[-122.41806014453093,55.23367096309411],[-122.41809129952942,55.23369764906488],[-122.41810661535449,55.23372500033416],[-122.41810576786045,55.233778796686664],[-122.41810534411259,55.233805694863065],[-122.41808706320343,55.23387805087968],[-122.41807286724658,55.2339045525974],[-122.41803884655442,55.23397645551003],[-122.41800641992751,55.234030464054825],[-122.41795984770165,55.23406612512307],[-122.41792784476655,55.23409323547132],[-122.41791130792737,55.234101729534466],[-122.41788089917706,55.23411094551283],[-122.41777009781123,55.23413690858935],[-122.41772315210137,55.23415461857143],[-122.41762771715936,55.23416308366298],[-122.41754919219875,55.234181005667324],[-122.41750224634023,55.23419871556624],[-122.41748491215535,55.234216156749085],[-122.41747024299141,55.2342258257971],[-122.41743754202851,55.2342607647988],[-122.417436320604,55.234296610149805],[-122.4174358964032,55.234323508324884],[-122.41745280646599,55.23433296532377],[-122.41746695184052,55.23435131285005],[-122.41749970139757,55.234360104617664],[-122.41751464401231,55.23436950496208],[-122.41757690577862,55.23437914639414],[-122.41768658637803,55.234387910445385],[-122.41773390553416,55.234388151475144],[-122.41784385975755,55.23441598478359],[-122.4179853934947,55.23444360581664],[-122.41804882587971,55.2344622508307],[-122.41812650368517,55.234498124866576],[-122.41821912447297,55.234543399114145],[-122.4182510773017,55.23456113786548],[-122.4183298263076,55.23460713398805],[-122.41835981174363,55.23462481607852],[-122.4184850834924,55.23468000005952],[-122.41859434167901,55.234715661490945],[-122.4187819763251,55.23477936766814],[-122.41882966959871,55.23479755927723],[-122.41890767235661,55.23480765304406],[-122.41900151478399,55.23481708134381],[-122.41908078786462,55.23483506041268],[-122.41911157066409,55.234843795135546],[-122.41922152708536,55.23487162722857],[-122.41933068684294,55.234908406413076],[-122.41937838051751,55.23492659781213],[-122.41942527743954,55.23495373638216],[-122.41950216064133,55.23499855675035],[-122.4195182746971,55.235016960658974],[-122.41950211176689,55.235043405927726],[-122.4195008921577,55.23507925130107],[-122.41950154046627,55.235116271687666],[-122.41945215506522,55.23520567307003],[-122.4194517322023,55.235232571253775],[-122.41942099966674,55.23526756739413],[-122.41940473697106,55.23529513104942],[-122.41937273403198,55.235322241771385],[-122.41930765692848,55.23536634098605],[-122.41929308738744,55.235374891851],[-122.41919802370218,55.23540130914168],[-122.41913406661868,55.23541068129304],[-122.41903979963563,55.23542815127548],[-122.41894515886239,55.23542767019044],[-122.41881973490236,55.2354184542458],[-122.41877241452818,55.2354182136286],[-122.41871015086774,55.23540857279362],[-122.41856983368787,55.23534510721731],[-122.41852213988275,55.23532691550805],[-122.41847561663242,55.23531772759456],[-122.41842909340332,55.23530853966367],[-122.41835029275282,55.23530739277923],[-122.41828633562115,55.23531676449514],[-122.41817670164241,55.2353517317516],[-122.41814549491981,55.23536989497687],[-122.41811232063996,55.23538800155798],[-122.41808121349816,55.23540504636958],[-122.4180338426328,55.23544965465001],[-122.41800183864721,55.23547676501993],[-122.41798520161426,55.235486377491355],[-122.41795329720847,55.23551236945141],[-122.4179055021748,55.23558387586263],[-122.41789003546343,55.23560249214097],[-122.41788998479147,55.23564734131975],[-122.41787254876769,55.2357544809165],[-122.41787095445304,55.235772375276],[-122.4178234325296,55.2358629510545],[-122.41780647097141,55.23589834328436],[-122.41777446647579,55.235925453596835],[-122.41774335877537,55.235942498324704],[-122.41771215139902,55.235960661442256],[-122.41766440632827,55.23598731858345],[-122.41760161829227,55.23600569377034],[-122.41745843366384,55.236040815832375],[-122.41741228286094,55.23604957852246],[-122.41734879699297,55.23607578236187],[-122.41729988127328,55.236093435538436],[-122.41718934734044,55.23613846750107],[-122.41709465335965,55.23618283419003],[-122.41704770496561,55.236200543920226],[-122.41698342125802,55.23623569474846],[-122.41695221331128,55.236253857675955],[-122.41687246198192,55.236307624607825],[-122.41684172638212,55.236342620114485],[-122.4167938806054,55.236370395319405],[-122.41673039382859,55.23639659884421],[-122.41668227488229,55.23640530460573],[-122.41663495336039,55.23640506317644],[-122.41647804566644,55.23639493831224],[-122.41638420015065,55.2363855081099],[-122.41629115219975,55.23636713066671],[-122.41619613676053,55.236348696487376],[-122.41610191897041,55.23632131506684],[-122.41599223344625,55.23631254961854],[-122.41592996906809,55.236302907392975],[-122.41581958571044,55.23630197056439],[-122.41577226431525,55.23630172880727],[-122.4157410557706,55.23631989143141],[-122.41570984719776,55.23633805404764],[-122.41561355577267,55.2364003139438],[-122.41558112393729,55.236454321866745],[-122.41551678522498,55.23653432111934],[-122.41550168922561,55.23657088811014],[-122.41545229315258,55.236660287915896],[-122.41545266531415,55.23667823892405],[-122.4154343712241,55.236839174534346],[-122.41543177151861,55.23695683278851],[-122.41543129253569,55.23702858014446],[-122.41544670753576,55.23705481335202],[-122.41546202284103,55.237082164953456],[-122.41550929182485,55.23712725601103],[-122.41552460720024,55.23715460760481],[-122.41557033420371,55.23717274378791],[-122.41561802886208,55.23719093663015],[-122.41571145069263,55.23722726558541],[-122.4158064679844,55.23724570013577],[-122.41591446106489,55.23727347848063],[-122.4160887551781,55.23730989385284],[-122.41619754618652,55.23732872478305],[-122.41624486879205,55.23732896637854],[-122.41654384761357,55.23733869764049],[-122.41666917735577,55.237349034275184],[-122.41679460684094,55.23735825238702],[-122.41688845472159,55.23736768228089],[-122.41701468169497,55.23736795299658],[-122.41712427064937,55.237377835942],[-122.41742315038549,55.23738868349018],[-122.4176274845441,55.237397929837186],[-122.41778519364755,55.23739910607375],[-122.41790982636299,55.23741727024281],[-122.41809949059548,55.23743618491583],[-122.41822402392857,55.23745546716835],[-122.4182556056524,55.23745525492134],[-122.41834945410166,55.237464683714286],[-122.41836636569926,55.23747414059147],[-122.41847605490696,55.23748290394948],[-122.41858484750028,55.237501732794684],[-122.4186633286677,55.237528659318315],[-122.41874171031522,55.23755670419088],[-122.41880445059567,55.23758317761264],[-122.41883630647392,55.23760203461621],[-122.41891277083096,55.23767375354375],[-122.4189438298745,55.23770155770764],[-122.41900577356971,55.237736978216226],[-122.41903762966406,55.23775583516844],[-122.41906916225898,55.237800471901636],[-122.41911404536178,55.237872403159976],[-122.41911441916815,55.237890354158836],[-122.41912931417764,55.237944603498896],[-122.41914383540662,55.23798090183858],[-122.41919068650505,55.23805288969043],[-122.41922104874298,55.238088522576966],[-122.41925210831971,55.23811632666485],[-122.41929980576118,55.238134518098356],[-122.41934590949202,55.238170603895156],[-122.41940865112721,55.23819707701381],[-122.41944050777465,55.23821593386371],[-122.41954977640937,55.23825159446643],[-122.4196112478503,55.238270182076334],[-122.41969132480924,55.23827921356851],[-122.4198174550641,55.238280599842845],[-122.41987865211688,55.23828011792427],[-122.41991093163875,55.23827207646253],[-122.4199902602669,55.23824520576869],[-122.42002067165846,55.23823598927242],[-122.42005374783751,55.23821900057861],[-122.42008617509188,55.238164991483856],[-122.42014943594683,55.23807486766156],[-122.42019765234528,55.23797646218393],[-122.42019924571255,55.2379585677917],[-122.42021644986471,55.237787509269566],[-122.42023223912369,55.237743112907395],[-122.42024919932585,55.23770772034234],[-122.42028200023105,55.23767166219385],[-122.42032857457201,55.23763600024762],[-122.42036174970791,55.23761789307317],[-122.4204071050371,55.23761807648627],[-122.42051749211178,55.23761900924901],[-122.42065983552526,55.237637680051186],[-122.42073874037472,55.23763770707456],[-122.42108297838195,55.23764872911609],[-122.42116188325338,55.23764875587133],[-122.42125573283491,55.23765818247456],[-122.42133580894497,55.23766721290915],[-122.42141302148664,55.23768625231205],[-122.42147656012098,55.23770377718434],[-122.4215234616949,55.23773091496984],[-122.42156919205696,55.237749048951144],[-122.42160104936217,55.23776790524779],[-122.42161726503254,55.23778519048797],[-122.42163141351956,55.237803537545894],[-122.4216479046087,55.237839892174094],[-122.42166205312893,55.23785823922857],[-122.42166121030138,55.23791203562178],[-122.42166116382991,55.237956884809705],[-122.42164500112715,55.23798333036236],[-122.42164537606365,55.23800128135377],[-122.42158174376588,55.23807345494376],[-122.42156558096411,55.238099900486304],[-122.42151666463383,55.23811755532175],[-122.42148625367444,55.23812677218321],[-122.42136012384431,55.238125387598956],[-122.4213293380462,55.238116653429714],[-122.42131242548223,55.23810719695449],[-122.4212504791866,55.238071777592154],[-122.42117172006141,55.2380257833045],[-122.42112678604197,55.23799870197484],[-122.42107829144729,55.237989458442925],[-122.42082663009289,55.23797997792034],[-122.42078005579522,55.23801564005368],[-122.4207481511894,55.23804163273465],[-122.42073146624413,55.238096094762724],[-122.42073062216741,55.2381498911507],[-122.4207127185281,55.23824019857051],[-122.42072729335086,55.23832022751524],[-122.42072762036861,55.23838302769883],[-122.42072630217808,55.238419991493124],[-122.42072508355713,55.23845583688748],[-122.4206607042845,55.23858068799889],[-122.42064476798973,55.23867105200802],[-122.42062649376068,55.23883198840465],[-122.42061018280612,55.23890440141543],[-122.42056079521889,55.23899380326268],[-122.42052874238193,55.239065763480546],[-122.42049589278967,55.239146670889305],[-122.42046276822603,55.2392085088935],[-122.42046351706738,55.239244410886734],[-122.42046257302688,55.23929932567727],[-122.42046055749195,55.239344118270104],[-122.42047555443585,55.23939724905538],[-122.42047620371075,55.23943426944883],[-122.420427141734,55.239586471436745],[-122.42042512614519,55.23963126403],[-122.4204238115138,55.23975680781168],[-122.42042334139927,55.2398285552017],[-122.42042212246577,55.23986440059701],[-122.42043659771514,55.23994554798535],[-122.42045149526814,55.23999979717575],[-122.42046798619131,55.24003615196619],[-122.42048223452855,55.240053380757765],[-122.42052988708751,55.240116420917744],[-122.42055977801542,55.24013522088579],[-122.42060663415576,55.24020720821667],[-122.42065152269197,55.240279138933964],[-122.42071407383743,55.240396428190884],[-122.42074443919299,55.24043206071228],[-122.42077470502672,55.24046881162661],[-122.42080666368783,55.24048654973012],[-122.42085356805379,55.24051368777364],[-122.42090009785515,55.24052287480237],[-122.42096354117508,55.24054151834042],[-122.42102660986933,55.24054221084947],[-122.42113710454664,55.240542024662766],[-122.42116672089243,55.24054175508891],[-122.42119900197133,55.24053371329199],[-122.42124754659584,55.24049810758214],[-122.42134365750107,55.24032707552256],[-122.42137561032698,55.24025623348883],[-122.4213922952961,55.2402017713655],[-122.42142509721009,55.24016571290909],[-122.42153558452598,55.24007694637909],[-122.42156758978957,55.24004983509176],[-122.42167882641267,55.23999697042403],[-122.42179016228958,55.239942987256285],[-122.4218683215522,55.23990711157694],[-122.42194675622243,55.23989030524268],[-122.42199567451921,55.239872650235995],[-122.42205846658278,55.23985427282855],[-122.4221689057385,55.23981035493313],[-122.42220011408882,55.23979219069373],[-122.42224786066944,55.239765531806086],[-122.42235872034188,55.23969471554051],[-122.4224700544702,55.23964073176618],[-122.42251780069225,55.23961407277546],[-122.42256592221318,55.239605364757146],[-122.42261324753437,55.23960560393295],[-122.42278483914755,55.23960605139382],[-122.42286285221947,55.23961614268702],[-122.42287986529713,55.239624480551],[-122.42295825396629,55.23965252277434],[-122.42300515881114,55.239679660005805],[-122.4231754446972,55.23980565073792],[-122.42322272552454,55.239850738877095],[-122.42323725113428,55.239887036744655],[-122.42326709847309,55.23995068525787],[-122.42328289538715,55.23999486849041],[-122.42331316321061,55.24003161878665],[-122.42337549006723,55.24008498811735],[-122.42339160793175,55.24010339153182],[-122.42342356745628,55.24012112896327],[-122.42345425574239,55.24013098101847],[-122.42350078569496,55.24014016707546],[-122.42372087738107,55.24014985583705],[-122.42376820334958,55.24015009457405],[-122.42379899123294,55.240158828141716],[-122.42383164741061,55.24016873665061],[-122.42386281126832,55.24019542119036],[-122.42401847605326,55.2402862313816],[-122.42408112457844,55.240313820553446],[-122.42412765488558,55.24032300637636],[-122.42417418521396,55.24033219218187],[-122.42422151139962,55.24033243074667],[-122.42425309534991,55.2403322169788],[-122.42428430316407,55.24031405221645],[-122.42434741503881,55.24026989384704],[-122.42436367635915,55.24024232953609],[-122.42436610722388,55.24017063866672],[-122.42435072869083,55.240099557360836],[-122.4243358258436,55.240045308636546],[-122.42429017871164,55.239937477276214],[-122.42427565213382,55.23990117953131],[-122.4242760718209,55.2398742813218],[-122.42427653506587,55.23980253391708],[-122.42429405526718,55.23969427498866],[-122.42429451847799,55.23962252758483],[-122.42430988429616,55.23960502890863],[-122.42434314623164,55.23949722228228],[-122.42436099881814,55.2394517635261],[-122.42440757160423,55.23941610004978],[-122.42443947493588,55.23939010642876],[-122.424456112041,55.23938049309255],[-122.42448769524279,55.23938027926516],[-122.42462929416725,55.23936304356382],[-122.42466077788956,55.239363948095786],[-122.4247396861269,55.239363972584464],[-122.42478621548595,55.239373158160674],[-122.42481737936053,55.23939984245994],[-122.42487843570964,55.2394453256821],[-122.42490950024305,55.239473128361915],[-122.4249410406978,55.23951776361409],[-122.4250020118667,55.23965294516571],[-122.42501653901016,55.239689242825214],[-122.42504849892207,55.23970697983925],[-122.42509540524016,55.239734116283664],[-122.42514310724115,55.239752305481545],[-122.4252349524188,55.239806521757814],[-122.42526770811328,55.239815311486154],[-122.42532918458456,55.23983389627612],[-122.42543878229688,55.239843771907346],[-122.42553460575797,55.239853251808476],[-122.42558113586433,55.239862437088156],[-122.4256119239211,55.23987117020758],[-122.42570615649473,55.239898544440706],[-122.4257526866926,55.23990772965628],[-122.42578417086638,55.23990863390437],[-122.42606850198455,55.23992801233329],[-122.42611395936957,55.23992707526379],[-122.42641286046324,55.23993790124088],[-122.42646135863173,55.23994714269704],[-122.42660053184105,55.24000159566282],[-122.4266947653927,55.24002896914834],[-122.42682086065084,55.240075197527325],[-122.42685085389327,55.240092877580466],[-122.42689935234914,55.24010211886613],[-122.4269616252346,55.24011175561039],[-122.42713476904895,55.24013915179426],[-122.42718209502505,55.24013938923406],[-122.42726020962834,55.24014835936817],[-122.42744754580741,55.24014925233991],[-122.42751140909874,55.2401409943214],[-122.42769991796551,55.240150890645914],[-122.42777882774794,55.240150913209135],[-122.42784189594694,55.240151602267225],[-122.42788763190784,55.24016973393182],[-122.42792038847746,55.2401785229628],[-122.42795145567892,55.24020632488543],[-122.4279498656704,55.24022421937975],[-122.42796608505815,55.24024150379651],[-122.42794978674168,55.24031391777583],[-122.42794777949122,55.240358710493],[-122.42790120875206,55.240394375295594],[-122.42786920748227,55.240421488211055],[-122.42783810058249,55.24043853546598],[-122.42779035690735,55.24046519649788],[-122.42775756045387,55.24050125663112],[-122.42774130135399,55.24052882138565],[-122.42773921446187,55.24066331249855],[-122.42775453949692,55.24069066259534],[-122.42777113668376,55.24072589801477],[-122.42784873587009,55.24076288440884],[-122.427926812342,55.240816703325024],[-122.42798825214949,55.240880136003945],[-122.42803553963279,55.24092522231972],[-122.42808165439605,55.24096130489016],[-122.42811361666959,55.24097904111939],[-122.42819163374001,55.24098912907593],[-122.42825321272446,55.241006594018145],[-122.42827012813844,55.24101604955284],[-122.4283001227191,55.241033729258305],[-122.4283162432162,55.24105213203675],[-122.42839459948624,55.24112502004262],[-122.42840885160324,55.241142247928934],[-122.42839217574198,55.241196710995744],[-122.42839293169594,55.24123261294648],[-122.42836051312015,55.24128662421607],[-122.42834314156181,55.24134891612122],[-122.42831030581978,55.24142982560453],[-122.42827868193055,55.24147488960331],[-122.42827746994571,55.24151073507967],[-122.42826248304722,55.24154618522406],[-122.4282919225464,55.241636730767546],[-122.42830814265052,55.241654015141584],[-122.42838695601438,55.24165515572588],[-122.42841736805974,55.24164593717697],[-122.42844857501278,55.241627771369444],[-122.42848085550736,55.24161972768467],[-122.42852907749928,55.24160989895479],[-122.42857523225848,55.24160113214155],[-122.42865366742923,55.241584321581804],[-122.42871763210846,55.2415749445374],[-122.42876495978277,55.241575181375794],[-122.42879565048581,55.241585032116],[-122.42885919849257,55.241602553227075],[-122.42890493656128,55.2416206845201],[-122.42895184771145,55.24164781951615],[-122.42903141761363,55.24168486164118],[-122.42920252561439,55.24180189689687],[-122.42923242184675,55.241820694785886],[-122.42948365522196,55.241901905761345],[-122.42951514104006,55.241902809066445],[-122.42957751667358,55.24191132609678],[-122.4298606905193,55.241921692157774],[-122.43022150513858,55.24192419328982],[-122.43041081751788,55.24192513825006],[-122.43055359626739,55.24191689951641],[-122.43063133609084,55.2419079165677],[-122.43088371940986,55.24190954842283],[-122.4309299732966,55.24189966232858],[-122.43107157832743,55.241882419299905],[-122.43113544362593,55.24187415942229],[-122.43121397754801,55.241856228841286],[-122.43124625767302,55.24184818443966],[-122.43129320640651,55.24183046934992],[-122.43130984288302,55.24182085509629],[-122.43132520648953,55.24180335555188],[-122.43135762150172,55.24174934350849],[-122.4313584871107,55.241650697830686],[-122.4313581078065,55.241632746863736],[-122.43134277996297,55.24160539720842],[-122.43131361361868,55.24153392176193],[-122.43128136951118,55.24149711697751],[-122.43115796343112,55.241398271476825],[-122.43112689309359,55.24137047035152],[-122.43109572350815,55.24134378762697],[-122.43106534829741,55.24130815762702],[-122.43105002077655,55.24128080793632],[-122.43103510845904,55.24122656000893],[-122.43102019618173,55.2411723120799],[-122.4309413566555,55.241082593166446],[-122.43092602930486,55.24105524346098],[-122.43083379454404,55.240983080408604],[-122.43072384976236,55.240910409354754],[-122.43067773268791,55.24087432776263],[-122.43063002685471,55.240856140682794],[-122.43052242952149,55.240801476858515],[-122.43044313957367,55.240783505064925],[-122.430364644175,55.24075658595788],[-122.4302242530329,55.24073798268815],[-122.43009932505676,55.24070076146063],[-122.43006736212898,55.24068302574134],[-122.43002124590387,55.24064694390678],[-122.42998969892821,55.24060230993746],[-122.42997399373088,55.24055700914612],[-122.42997482549917,55.24050321268632],[-122.42999187761403,55.24046670037993],[-122.43000686258668,55.24043125003035],[-122.4300388624237,55.24040413656559],[-122.43010193105829,55.24040482447942],[-122.43030707792894,55.24040510276484],[-122.43036935209943,55.240414737805445],[-122.43044746794781,55.24042370594074],[-122.43062168955531,55.240461219390724],[-122.43069901115206,55.24047913463265],[-122.43077740693548,55.240507171936585],[-122.43080819661337,55.24051590377198],[-122.43093360306922,55.240569956846386],[-122.43099705111193,55.240588595273614],[-122.43104278899139,55.240606725780246],[-122.4311847327815,55.240652282791366],[-122.43123047081791,55.240670413229175],[-122.43129429842325,55.24070700247119],[-122.43132508836625,55.24071573417893],[-122.43135705187446,55.24073346957557],[-122.43140358432781,55.24074265268057],[-122.43145091103887,55.2407428884984],[-122.43162358193649,55.2407534458869],[-122.43166973503894,55.24074467792766],[-122.43170290763368,55.2407265677282],[-122.43171747647501,55.24071801540823],[-122.43176601201303,55.240682405598726],[-122.43178068009519,55.24067273486231],[-122.43178226841766,55.24065484031855],[-122.43179763137346,55.24063734071729],[-122.43181309358506,55.24061872270522],[-122.43184578723134,55.24058377991284],[-122.43190940508686,55.24051160106594],[-122.43194264740927,55.240403792403335],[-122.43195959843175,55.24036839823706],[-122.43199201143626,55.24031438603443],[-122.43202363025432,55.24026932109699],[-122.43207182024051,55.240170911007546],[-122.432071440632,55.24015296004487],[-122.43207306367279,55.240090216299286],[-122.43209042891307,55.24002792388001],[-122.43212087369469,55.23997385522976],[-122.43215445987165,55.23992884667529],[-122.4322346470096,55.239803322510184],[-122.43223509606219,55.23973157507674],[-122.43227037391915,55.23953412435242],[-122.43228707847085,55.239434811576736],[-122.43230364907731,55.23938146640501],[-122.43232121667911,55.23918350796007],[-122.43232321900226,55.23913871517652],[-122.43233940972102,55.23906741904078],[-122.43238797723379,55.23898695979835],[-122.43241959456525,55.23894189476478],[-122.4324362295783,55.23893228036285],[-122.43251590043866,55.238834772670224],[-122.43256297866186,55.2387710895021],[-122.4326272870574,55.238691081432414],[-122.43267464555895,55.238646467591224],[-122.43272321189326,55.238566008220616],[-122.43273988080188,55.23851154458489],[-122.43274146861246,55.238493650031764],[-122.43275852043563,55.23832370818252],[-122.43276027566881,55.23821499683461],[-122.43276155175903,55.238089452939214],[-122.43274781210137,55.23804420891129],[-122.43271626414183,55.23799957564131],[-122.43270055689074,55.23795427520284],[-122.43268723139138,55.23788213293508],[-122.43270424902191,55.237757040291974],[-122.43270386915404,55.23773908933444],[-122.43272012372702,55.23771152393792],[-122.43275281422348,55.237676580915135],[-122.43278322226152,55.23766736130312],[-122.43279975742634,55.237658865263164],[-122.43283016544021,55.23764964563976],[-122.43289322980509,55.237650332139886],[-122.43297213468641,55.237650351412974],[-122.43300489031556,55.23765913910517],[-122.43303557906965,55.237668988797736],[-122.4330813145489,55.23768711855177],[-122.43320671524194,55.23774116932599],[-122.43328638055674,55.237777090312036],[-122.43356539210473,55.23792300113817],[-122.43361230208671,55.2379501343713],[-122.43375461975329,55.23801363939978],[-122.43386348726368,55.23807618568108],[-122.43394108693975,55.238113168272],[-122.43406687059533,55.2381851691363],[-122.43409714690657,55.23822191680649],[-122.43414326400722,55.23825799712526],[-122.43418896814694,55.238320975666504],[-122.43421972441838,55.23837455585044],[-122.43426660294634,55.2384465380317],[-122.43429643427442,55.23855503308821],[-122.43437410216289,55.23863574619422],[-122.43438901802188,55.238689993711134],[-122.43440396618996,55.238699392031904],[-122.4344351036866,55.23877092311791],[-122.43446490350847,55.238924267331946],[-122.43449445423741,55.239013692980144],[-122.43450975108469,55.23908589143803],[-122.43452428660036,55.239122187986695],[-122.43456999231809,55.23918516639228],[-122.43458532143325,55.23921251564543],[-122.43463140809128,55.23929344498268],[-122.43464791153669,55.239329797893014],[-122.43466295918972,55.23933807777194],[-122.43474173630419,55.239384063532036],[-122.43480331567507,55.239401525233724],[-122.4348493355791,55.239438723705504],[-122.43491247026002,55.23948313996932],[-122.43500629574189,55.23953740540963],[-122.43506853816586,55.23959188729783],[-122.43508386777485,55.239619236490405],[-122.43511462623036,55.23967281645871],[-122.4351283691056,55.239718060231],[-122.43512754424401,55.23977185672192],[-122.43514360446767,55.23987995701209],[-122.43515814084199,55.23991625348892],[-122.43517436320207,55.23993353696659],[-122.4351885186262,55.23995188248707],[-122.43526729754308,55.23999786791686],[-122.43529808780559,55.240006598642005],[-122.43532967144087,55.240006382065516],[-122.43555055855074,55.24000710262927],[-122.4356440358013,55.23999856744006],[-122.43567631355016,55.23999052189154],[-122.43570672266705,55.239981301564114],[-122.43575525378567,55.239945690202234],[-122.43588316730217,55.23979349960479],[-122.43591557457651,55.23973948638371],[-122.43591642896754,55.239640840689475],[-122.43593518400947,55.23940703618635],[-122.43595339726767,55.23924609754037],[-122.43593809776904,55.239173899258944],[-122.43590702584642,55.239146099330746],[-122.43589277122607,55.239128872305145],[-122.43581478652891,55.23907393997748],[-122.43579856424032,55.23905665658441],[-122.43576828574709,55.239019909325485],[-122.43575216265594,55.2390015075144],[-122.43575336790623,55.23896566197238],[-122.43576872848995,55.23894816188358],[-122.4358011045254,55.238938997891374],[-122.43584725463616,55.23893022838536],[-122.4358787382716,55.2389311300817],[-122.43598922845351,55.238930930719626],[-122.43605229488043,55.23893161562035],[-122.43609882632144,55.23894079697004],[-122.436131583684,55.238949583840686],[-122.43623997682214,55.23899529551256],[-122.43633421457406,55.23902266170284],[-122.43638112770518,55.23904979389545],[-122.43639607647223,55.23905919197736],[-122.43644457587403,55.23906842954548],[-122.43666346036903,55.23911394098519],[-122.43674157509457,55.23912290517222],[-122.4367730589008,55.23912380664249],[-122.43685234840497,55.239141774404295],[-122.4369138291972,55.23916035347512],[-122.43700768599251,55.23916976820955],[-122.43740054043256,55.239188864068616],[-122.43744904022125,55.2391981012458],[-122.43761970963462,55.2392534431867],[-122.43766820955149,55.239262680278635],[-122.43769899977232,55.23927141040976],[-122.43777780873474,55.23927254505177],[-122.43787166599392,55.239281959135326],[-122.43793562486421,55.239272577358946],[-122.43807683536735,55.23923737542637],[-122.43812416034677,55.23923760870858],[-122.43818801999917,55.23922934521652],[-122.43843772550503,55.23923873434394],[-122.43851770953512,55.23924887214655],[-122.4385634492802,55.2392669998896],[-122.43873618734251,55.2393212782],[-122.43886160072464,55.239375323287106],[-122.43897117332878,55.2394300362083],[-122.43900186489397,55.23943988443204],[-122.43911115418534,55.2394755278752],[-122.43920460252713,55.2395118392125],[-122.43926726025799,55.23953942074371],[-122.43934534962807,55.239593232496645],[-122.43943987472842,55.239639665692984],[-122.43954796306053,55.23971115433298],[-122.43967287030705,55.23979321527997],[-122.43979907878057,55.23983831210332],[-122.43986094507852,55.23987484065908],[-122.43992319459791,55.2399293201225],[-122.43995398581818,55.23993804969664],[-122.44004820232574,55.240010262279036],[-122.4401104523082,55.240064741649405],[-122.44021841815062,55.24018219732635],[-122.44032717687708,55.24029070558461],[-122.44035796846156,55.24029943505905],[-122.4404521865404,55.24037164733778],[-122.44053027911042,55.24042545835119],[-122.44057551327855,55.2404716020376],[-122.4406066884748,55.24049828238785],[-122.44066973215101,55.240543814152744],[-122.4407001152896,55.24057944180818],[-122.4407146569292,55.24061573763846],[-122.44080925990075,55.240705900585795],[-122.44084005190757,55.24071462994145],[-122.4409637892009,55.24078768599295],[-122.44105800951041,55.240859897816115],[-122.44107305905477,55.24086817692156],[-122.44116638865925,55.24095045441084],[-122.44122874061881,55.24100381480975],[-122.44129020168249,55.24106724092702],[-122.44132296190996,55.24107602643376],[-122.44135324702371,55.24111277234796],[-122.4413844232325,55.241139452504825],[-122.44141470845013,55.241176198404276],[-122.44144547652658,55.24122977681523],[-122.4414458603276,55.241247727750746],[-122.44150811411716,55.24130220642767],[-122.44155344939263,55.24134723134522],[-122.44158462591585,55.24137391145254],[-122.44171033444722,55.241447023031746],[-122.44172538434542,55.24145530205866],[-122.44174071918934,55.2414826504357],[-122.44177297285277,55.24151945251218],[-122.44180256575477,55.241564027237466],[-122.44195237271408,55.24165464623539],[-122.44201225209896,55.241735966674106],[-122.44219599721673,55.24184437429395],[-122.44241882741271,55.24191241274422],[-122.44264158247961,55.24193672000644],[-122.44276308496394,55.24196822407391],[-122.44282141731973,55.2420001649996],[-122.4429258677259,55.24209060757903],[-122.44304989571225,55.24238343393696],[-122.44306334024472,55.24245445670181],[-122.44307431080406,55.242553439918794],[-122.44304541690236,55.24267931498637],[-122.44303807942514,55.242985205563016],[-122.4430545467228,55.24311125579209],[-122.44310538246722,55.24318334715661],[-122.44322921920786,55.2432777071592],[-122.44338418138427,55.24331016669389],[-122.4434990041957,55.24332802407642],[-122.4436732724862,55.24332067006583],[-122.44375180364283,55.24330273157819],[-122.4438374367594,55.24324911609963],[-122.44396098776033,55.2431237029899],[-122.44407182920939,55.24303044277776],[-122.44416141858846,55.24293209031903],[-122.44425034697112,55.24277429291432],[-122.444294542336,55.242743039447085],[-122.44441441962103,55.242681432004694],[-122.44457265527322,55.24265455762024],[-122.44466574109262,55.24265048933587],[-122.44474061065226,55.242673931743774],[-122.44482068135213,55.2427277962924],[-122.44495502196416,55.24288188052757],[-122.44510894870072,55.243461475818584],[-122.4451731484391,55.243583282703],[-122.44526147893656,55.24365532273484],[-122.44532138809022,55.243691792381306],[-122.4454531334391,55.24371910118159],[-122.44560929572101,55.24371571230069],[-122.44575010973475,55.243707399944775],[-122.4459319642133,55.243681198227215],[-122.44602348948357,55.24365017444199],[-122.44617024541064,55.24355233177024],[-122.4463943538668,55.243427545215255],[-122.4464614905588,55.24335994498426],[-122.44659961898311,55.24318112599612],[-122.44672354733811,55.24307366106914],[-122.4469248361371,55.242916827374565],[-122.44701675431132,55.242881329176456],[-122.44708415839088,55.24287764716576],[-122.44739066225726,55.242892002781616],[-122.4476363491697,55.24292480414929],[-122.4478623484385,55.24297946797531],[-122.44801416791383,55.24300286204056],[-122.44816007526273,55.2430485120417],[-122.44846607015685,55.24311330633493],[-122.4487713744082,55.24318592883576],[-122.44908642870566,55.24323752514124],[-122.44942059398572,55.24322911878984],[-122.44951604373423,55.24322062932963],[-122.44997910619804,55.24322711090869],[-122.45031710835813,55.24321993284188],[-122.45056674983202,55.24320799147277],[-122.45095337893062,55.24314165148899],[-122.45123972646243,55.243116179365494],[-122.45148583264111,55.243077225623296],[-122.45176194473986,55.24305594545231],[-122.4521551464925,55.243049214896764],[-122.45227469800739,55.24305822898357],[-122.45246007425483,55.243081452844976],[-122.45265646887827,55.243113960381656],[-122.45282255493161,55.243154573698384],[-122.45298500146174,55.24319171934458],[-122.45312697921148,55.24323725135712],[-122.45335534479436,55.2433099122035],[-122.45345786534183,55.24335544066583],[-122.4535161972321,55.24343222580003],[-122.45353467646613,55.24351348150937],[-122.4534794194249,55.243737275845405],[-122.45347729771125,55.24396258427157],[-122.45334431733879,55.24412810193903],[-122.4531284762279,55.24431592545786],[-122.45292492307632,55.24454334221203],[-122.45277174699815,55.24478116436759],[-122.45272635975489,55.24487069117807],[-122.45283555380938,55.244997139457254],[-122.45292823200673,55.24506481253126],[-122.45327604439562,55.245237303746016],[-122.45351817611778,55.24540005531242],[-122.45360849361907,55.24547214551198],[-122.45367705854493,55.245567161865175],[-122.45381585081053,55.245805455035935],[-122.45392465090032,55.245958800688754],[-122.45400188434499,55.24602266912138],[-122.45411356240807,55.2460763063904],[-122.4542858270657,55.24627070296962],[-122.45460322652723,55.24654211381201],[-122.45473418872746,55.2466232094483],[-122.45497241243068,55.246718572251076],[-122.4554989369689,55.24699033024553],[-122.45588269695013,55.2471582308859],[-122.45597302675044,55.24720789476723],[-122.45605813849902,55.24727198608432],[-122.45607397835953,55.24729374056428],[-122.45607269235536,55.24733070475329],[-122.45591884224964,55.24753151060353],[-122.45585131165168,55.247648438896675],[-122.45581536607396,55.24778756999776],[-122.45581102680902,55.2478367808603],[-122.45583223630722,55.24808854178833],[-122.45582511468179,55.24828119173453],[-122.45581359286241,55.24832234943486],[-122.45577057955646,55.248362610473436],[-122.45571930305242,55.24838469642711],[-122.45538712314193,55.248593878841696],[-122.45539105515724,55.24861641555297],[-122.45545727129492,55.24869342399958],[-122.45553303733675,55.24875164330756],[-122.45560831477682,55.24879303009639],[-122.45570495139363,55.24881596397963],[-122.45576527642507,55.24882553028604],[-122.45600127201394,55.248812067299376],[-122.45611130423757,55.24877259299832],[-122.45624938854739,55.24870588631721],[-122.45659936245357,55.24858578589378],[-122.45683644814717,55.24851516937004],[-122.45703367210544,55.24847144873454],[-122.45719625630853,55.248417772010576],[-122.45750597992452,55.248261765293336],[-122.45774856935729,55.248218213413544],[-122.45788939662137,55.24820988733213],[-122.45797304413105,55.24822347995485],[-122.45814022913804,55.24834148192496],[-122.45822386842653,55.24842234822686],[-122.45830189339459,55.248544540408574],[-122.45834803008309,55.24869273487285],[-122.4583483963837,55.248912507315225],[-122.45825005414758,55.2491328349739],[-122.45824729460145,55.24916415103456],[-122.45831588239452,55.24921431562716],[-122.45837158225599,55.24923159768464],[-122.45842876042221,55.24923210325402],[-122.45852461670381,55.2492191331633],[-122.458738475236,55.24916579193112],[-122.45895066791464,55.24904176519564],[-122.45916452960998,55.248943573999085],[-122.45930851643821,55.24885460727334],[-122.4594095910138,55.24880478424653],[-122.45954609367426,55.24875596881722],[-122.45988059232434,55.24881145295592],[-122.46000517901167,55.24885311806169],[-122.46007583887426,55.24885736999321],[-122.46018980018493,55.248862853270175],[-122.46030110549889,55.248853684882604],[-122.46053858023544,55.248778587582734],[-122.46061071888256,55.248743638106454],[-122.46077842056806,55.24863179821318],[-122.46093509706832,55.24855552410563],[-122.46107159957651,55.2484618577737],[-122.46133987514065,55.24835063406834],[-122.46190397599848,55.248151392770716],[-122.4621193974286,55.24814742464894],[-122.46222312216184,55.24815710009381],[-122.46242387859725,55.24823007961823],[-122.46246058521328,55.24826139605839],[-122.46247593478965,55.248378440359005],[-122.46237496243026,55.24847199666989],[-122.46233667894997,55.24852584899468],[-122.46235478179621,55.24872370024462],[-122.46240369150291,55.24877330320809],[-122.46248891621013,55.248791422471946],[-122.46275984530781,55.248806970301885],[-122.46321628220355,55.24879975773895],[-122.46333860883762,55.2487998696577],[-122.463466052881,55.24878667207847],[-122.46360048404351,55.24876133933822],[-122.4636470329757,55.24874808578587],[-122.4637437718168,55.248702621148745],[-122.46375794290451,55.248676114200435],[-122.46376542158539,55.248613537752824],[-122.4636968272569,55.24847367769853],[-122.46343456001932,55.24833728503123],[-122.46330633027463,55.24820245774534],[-122.46320929754258,55.24807188042075],[-122.46332611103328,55.24797765238042],[-122.46341133440654,55.247950921781786],[-122.46356436230323,55.247916026455904],[-122.4637213265469,55.24790366738909],[-122.46387169702119,55.24787654481451],[-122.46407442164882,55.2478598791309],[-122.46434583533981,55.24780255748967],[-122.46473238826286,55.247759717765526],[-122.46498254454006,55.24771973070808],[-122.46531546401144,55.24770339676558],[-122.46620971133277,55.2476760896717],[-122.46630319988995,55.247667531468615],[-122.46662745540812,55.24761506878592],[-122.46749610872499,55.247542176916575],[-122.46770512789524,55.24752119914225],[-122.46791739525312,55.24750816178427],[-122.46804365435575,55.24750838078232],[-122.46840257009735,55.24764526315433],[-122.46850197132093,55.247704144670614],[-122.46874654374307,55.2478848733651],[-122.46887085734821,55.24804200799364],[-122.4689311967846,55.248141266385375],[-122.46894421012193,55.248307577041494],[-122.46893112650879,55.248344206364486],[-122.46873070943052,55.24869394971278],[-122.468605354417,55.24886306239312],[-122.46858676151884,55.24891747502625],[-122.4686116639822,55.24894845462064],[-122.46874964494077,55.24899497560728],[-122.46906998737356,55.2490545179731],[-122.46922736046285,55.249127376678835],[-122.46936504800857,55.24917725230281],[-122.46957183250123,55.249294118589255],[-122.46967281836503,55.249379953378835],[-122.46982421235852,55.24958831001317],[-122.46993115206448,55.24996583209186],[-122.47005350467104,55.25010048512949],[-122.4702661026681,55.250218636159815],[-122.47042308171861,55.25025111788492],[-122.4709051303266,55.25028945191738],[-122.4710428153577,55.25029447645332],[-122.47139789180454,55.25025072323025],[-122.47144247156093,55.250237410969085],[-122.47160700739795,55.2501613466069],[-122.47169497903984,55.25010329397874],[-122.47188626588289,55.24994725936241],[-122.47218059542188,55.249808720701886],[-122.47237859435126,55.24975602823588],[-122.4726231449935,55.24971250316633],[-122.47303341445803,55.24962433930223],[-122.4733020627929,55.24953104067621],[-122.47346698475562,55.24945050009129],[-122.47373089198769,55.24929876270815],[-122.47386775384427,55.24917818396256],[-122.47399516003857,55.249030427910675],[-122.4742424586675,55.248618095568574],[-122.47436672233796,55.24850612932885],[-122.47453035019677,55.24839527787562],[-122.47472085216882,55.2483154603226],[-122.47496038253895,55.248306546681526],[-122.47502504021205,55.24831174136238],[-122.47515839675438,55.248343548265595],[-122.47549609924353,55.24852017257493],[-122.47577699856731,55.248624550763935],[-122.47600690653984,55.2486803934417],[-122.47645591719525,55.2488478326349],[-122.4765288485377,55.24887120023026],[-122.47666141636401,55.24888952847065],[-122.47679240819508,55.24890332707919],[-122.47690479578263,55.24890426557511],[-122.47752576619904,55.248865778250426],[-122.47762791232178,55.24884848677176],[-122.47819668481198,55.24870760936981],[-122.4783186108782,55.24868975574942],[-122.47852920666728,55.24867328928398],[-122.47872889171074,55.24869127160006],[-122.47892771248316,55.24876416885121],[-122.47897782711982,55.24882276855841],[-122.47897148465121,55.24896274146619],[-122.47894001826981,55.249029124511544],[-122.4788208867071,55.249150209925226],[-122.47857874887492,55.24930145213697],[-122.47844297865907,55.249409733145164],[-122.47828839833544,55.249484966513215],[-122.47808520602432,55.24957452141328],[-122.47775151622339,55.24966711090565],[-122.47764504734992,55.24971118949702],[-122.47754291486349,55.24977333022651],[-122.47751093959975,55.249800455909295],[-122.47757248715686,55.24990871339456],[-122.47764110828166,55.24998129196712],[-122.47778709064445,55.25007175652219],[-122.47797606670987,55.25012195221247],[-122.4782557744059,55.250150047708004],[-122.4783663035428,55.250172235371146],[-122.4784680774911,55.25020426622572],[-122.4789675172678,55.25040451632697],[-122.47906851720708,55.25046791888815],[-122.47913950225161,55.250536078522906],[-122.47922515667494,55.250616986407984],[-122.47948757325915,55.250955167430774],[-122.47958346304289,55.25103187961538],[-122.47994647876415,55.25139308629968],[-122.48015290421586,55.25149198421411],[-122.48051071183338,55.25161982850056],[-122.48067451061142,55.2516872474694],[-122.48075178782483,55.25172867472047],[-122.4809960283648,55.251869003973574],[-122.48140958582361,55.252081391467776],[-122.48155400750343,55.252167322190395],[-122.4817599718581,55.25231665893933],[-122.48184199216547,55.25239409842604],[-122.48191390784564,55.25254188893336],[-122.48191940649292,55.25272704504857],[-122.4819150882847,55.2527538322133],[-122.4818820469531,55.2528156865942],[-122.4818220446404,55.252892476074905],[-122.48169542804229,55.2530088679556],[-122.48150376290113,55.25314696684346],[-122.48135509948074,55.25326722019135],[-122.48123751948742,55.25334798814331],[-122.4810189579596,55.253432628944054],[-122.48090461847815,55.25349891238751],[-122.48086950853794,55.253561829308005],[-122.48086356365528,55.25369732856888],[-122.48090506884634,55.2538543510342],[-122.48093108075007,55.253917874488465],[-122.48097450584379,55.25396282945135],[-122.48107985655116,55.254044292515566],[-122.48128276303046,55.254161028124265],[-122.48138140576512,55.254206422362785],[-122.48145002091715,55.25423414961096],[-122.4815600734417,55.254261926695264],[-122.48165281110712,55.25430715381676],[-122.48172664684665,55.254342876958304],[-122.48196097636625,55.25450646926693],[-122.48199022133367,55.25453308365618],[-122.48210072938161,55.25469093422125],[-122.48214770212971,55.25474047382931],[-122.4822689037055,55.2548212624409],[-122.48237033273867,55.25492503780043],[-122.48280162415935,55.255296012157935],[-122.48303016665179,55.25548074180178],[-122.48319272403357,55.2555851219695],[-122.48328862080805,55.255639406702834],[-122.4834259565968,55.25569374061596],[-122.48399809807538,55.255830991006555],[-122.48440925820007,55.25586838979455],[-122.48461558419243,55.25590112491723],[-122.48485980359797,55.255929323500496],[-122.48508749171154,55.25596602459906],[-122.48527018296511,55.25597566706658],[-122.48585130769258,55.25596516204976],[-122.48599697371581,55.25594684924514],[-122.48603840008744,55.255924473001464],[-122.48610972163765,55.255853607112044],[-122.48622801775157,55.25565176378012],[-122.4862745416411,55.255593652511266],[-122.48649657250947,55.255379039639664],[-122.4866102236483,55.25532058023018],[-122.48691825044236,55.25522836328249],[-122.4870690369469,55.255219163504954],[-122.4872146152526,55.25522439235869],[-122.48731403602683,55.25523840964447],[-122.48754095390835,55.25530647851814],[-122.48747356943383,55.25553554714983],[-122.48740141123024,55.25568375378926],[-122.48725396922273,55.25585786663187],[-122.4870852171883,55.25611771144022],[-122.48672867834021,55.25658416642866],[-122.48652525868081,55.25699215377702],[-122.48650368063102,55.25712609044391],[-122.48649540725374,55.25728843290158],[-122.48653260957592,55.25744981623993],[-122.4865495585352,55.25748168850013],[-122.4866513834773,55.2575585619506],[-122.48742535507479,55.258028884783094],[-122.4875579985388,55.2581144753376],[-122.48767952799085,55.258214327976354],[-122.48779985771472,55.2582827526907],[-122.48789575345599,55.25831460925762],[-122.48802129209913,55.25836860491271],[-122.48821629549728,55.258531074862574],[-122.48829480826237,55.258626349894],[-122.48854872385162,55.25885999595568],[-122.48868047872959,55.25893322678712],[-122.48873571643819,55.25895608755897],[-122.48890387311282,55.258996708333484],[-122.48901511650327,55.25901105737439],[-122.48905419900923,55.25901552306304],[-122.48925468189697,55.25911535786594],[-122.48939598972053,55.25919222087308],[-122.48950571420445,55.2592917386769],[-122.48957607779224,55.25941257087525],[-122.48955794306436,55.259529786759614],[-122.48932649583193,55.25980692768191],[-122.48912582248703,55.26018360260904],[-122.48909591607979,55.260367759253164],[-122.48909914376175,55.26048894111246],[-122.48912400020639,55.26056588436302],[-122.48962925470332,55.26095012935274],[-122.48980492006844,55.2610178694077],[-122.4899260434251,55.261077344431314],[-122.49026466924417,55.26120013195541],[-122.49038235956621,55.261276327895445],[-122.49039618707974,55.261343990270944],[-122.49034653633252,55.261437893734055],[-122.4902613172916,55.261487067423936],[-122.49015442510026,55.26151320593742],[-122.48949812427513,55.26154740172561],[-122.48918252703851,55.26156765530404],[-122.48913794059578,55.26158097392495],[-122.48906687873377,55.26160363693574],[-122.48893786729845,55.26167960529046],[-122.48883181244737,55.261786493575826],[-122.48881050432591,55.26187222604918],[-122.48880866315223,55.26207399228075],[-122.48887396338415,55.2624335001887],[-122.48901176619816,55.26270871900894],[-122.48916145371483,55.262938303030005],[-122.48929928561002,55.263100279881606],[-122.48946582804508,55.263204762954025],[-122.48973623951403,55.26331777989668],[-122.48998058179546,55.26345809166841],[-122.49089674799058,55.2640422754681],[-122.49118018649217,55.264187049996835],[-122.49135427463791,55.26422783392866],[-122.49170821681864,55.264107745699185],[-122.49189049236892,55.26403215372983],[-122.49223168992974,55.26385452338971],[-122.49239113241171,55.26379174207227],[-122.49253041228425,55.26375642288155],[-122.49261211849532,55.26374751215896],[-122.49274030010302,55.263748880045874],[-122.49281927262795,55.26377128604552],[-122.49296926073428,55.263839419180705],[-122.49327080035098,55.263957789556365],[-122.49348754189668,55.264030044241345],[-122.49358228454166,55.264075317965194],[-122.4936888923918,55.26418819820042],[-122.49385942285987,55.26433763558141],[-122.49399761760222,55.264427859485565],[-122.49425141921589,55.26455048928259],[-122.49441807811162,55.264653847289026],[-122.49463007886267,55.264825753849],[-122.4949669401979,55.26515029500259],[-122.4954688138794,55.26559720570771],[-122.4957444502703,55.265922263841546],[-122.49593251618076,55.26618767571211],[-122.49604307452978,55.266300664767705],[-122.49635142143677,55.266522369466145],[-122.49650183441248,55.2666084491631],[-122.49674222609025,55.26668136297908],[-122.49704543716491,55.26675828573814],[-122.49766112552813,55.26680587502608],[-122.49832928132977,55.26684036085359],[-122.49857515606483,55.2668730618049],[-122.49875714007594,55.26691405686619],[-122.49887394637555,55.26695546170659],[-122.49903670863921,55.26708112748352],[-122.49911487388734,55.2671808696222],[-122.49927731080284,55.26749152459253],[-122.49926280671774,55.26756735877344],[-122.49922537416427,55.26765712408986],[-122.49879530703325,55.267880487070286],[-122.49853807962818,55.268045920803466],[-122.49851292827212,55.2681080011345],[-122.49849048724992,55.268229581526946],[-122.49849349113386,55.26851220962734],[-122.49851527067817,55.26864736655963],[-122.49860667785936,55.26891229839778],[-122.49869120250274,55.26907500700798],[-122.49882786476296,55.26918312102211],[-122.49914765513884,55.26938720023098],[-122.49934626556815,55.26950938817917],[-122.49951765623953,55.26958147774425],[-122.49979564666116,55.269721592834095],[-122.49997127003195,55.26979043707292],[-122.50012127220513,55.26983613698271],[-122.50043479129603,55.26995370366389],[-122.50063416706185,55.27004451718652],[-122.5008390411676,55.2701175455917],[-122.50144859403807,55.27028154732404],[-122.50133985203144,55.270555429782966],[-122.50132502462905,55.270703012051115],[-122.50132277998108,55.270932795602135],[-122.5012253693908,55.27100854341673],[-122.50099577993738,55.27115121367083],[-122.50081394161487,55.2712896191019],[-122.50065183772489,55.27147342690723],[-122.50054029668775,55.271711351781704],[-122.50046823435694,55.27183602306377],[-122.50048738310271,55.27220543711474],[-122.50054676506991,55.272316983508176],[-122.50082946161386,55.27251665170251],[-122.50111065753704,55.27268824694314],[-122.50125476339987,55.27273377952412],[-122.501610468052,55.27286598197845],[-122.50199276270014,55.27310095955494],[-122.50229644351424,55.27319582037084],[-122.50254164686534,55.273304735231434],[-122.50313599072774,55.27366675286296],[-122.50319716546541,55.273689773132084],[-122.50334521633037,55.27373541388505],[-122.50340559007756,55.27374495714045],[-122.50353784033354,55.2737453060327],[-122.5043995253391,55.27368988633355],[-122.50446184586248,55.273677059691714],[-122.50463195742398,55.27362801592813],[-122.50482703256307,55.273723186111205],[-122.50499368258421,55.27385007318421],[-122.50530456943345,55.27404379412976],[-122.5054739467664,55.27413936340331],[-122.50575356983806,55.27428399439717],[-122.50591784264104,55.27439287421042],[-122.50622003213664,55.27464128744021],[-122.50692219692588,55.27539872942432],[-122.50705851377208,55.2755113083583],[-122.50716749956675,55.275574909193],[-122.50723103816686,55.27559350882948],[-122.50736134946465,55.275616223098865],[-122.5078568440837,55.27566263012133],[-122.50826061734374,55.275673949312036],[-122.5083242538332,55.275691429918965],[-122.50869223986757,55.27584189423862],[-122.50883563865756,55.27594121517586],[-122.5088810883863,55.275986215695504],[-122.50906017128021,55.27628835198413],[-122.50906848974356,55.2763289482166],[-122.50904609679955,55.27638213813091],[-122.50898372724289,55.27644093486753],[-122.50887094925018,55.27651177319167],[-122.50796540021516,55.27693486992524],[-122.5077013418488,55.2769969815005],[-122.50750558914437,55.27702288688863],[-122.507365060279,55.27702679518759],[-122.5070922458905,55.27700793368213],[-122.5069398988975,55.277011510116225],[-122.50675990315929,55.27703785619848],[-122.50651356949699,55.27710046238203],[-122.50641574058542,55.27715826351289],[-122.5063644791822,55.2772027950246],[-122.50631282851818,55.27725180039998],[-122.50616531591021,55.277449479068295],[-122.50618987584322,55.27748492510459],[-122.50625896092832,55.27753058952521],[-122.50640272485616,55.277603014724804],[-122.50656035053372,55.27765228329698],[-122.50693457325022,55.27773117066311],[-122.50711980068728,55.27780363645861],[-122.50728810379567,55.27788908182189],[-122.5074480177851,55.27795747375157],[-122.5078685712578,55.27807129310094],[-122.50814698847432,55.27816206644352],[-122.50833382599512,55.278261484210056],[-122.50843494223867,55.27832486310687],[-122.50880898887705,55.27858761608408],[-122.50892000639486,55.27869611994341],[-122.50897732890174,55.27878630098628],[-122.5090561551289,55.278992567965794],[-122.50905107922227,55.279119121063935],[-122.50901013250615,55.27922672978326],[-122.50889747378243,55.279409691495005],[-122.50880876467784,55.27952156765273],[-122.50870979575546,55.27970603409826],[-122.50862050967218,55.28000625527438],[-122.50863486429228,55.28015914052307],[-122.50865064833508,55.28018200684492],[-122.50870792175148,55.28022733868139],[-122.5087778894405,55.280262935457515],[-122.50885483627233,55.280286394596345],[-122.5090254357583,55.28030014492868],[-122.50953141086437,55.28015847615916],[-122.51010615856472,55.28004339838942],[-122.51041354345908,55.279960070965565],[-122.51055563708782,55.27993826363411],[-122.51075152563644,55.27993365964533],[-122.51107005655659,55.27994930812018],[-122.51122411939224,55.27997156189922],[-122.51164903290446,55.28008100494625],[-122.51205529150872,55.280155167118096],[-122.51237078646112,55.28018306035238],[-122.51288212963617,55.28025231326875],[-122.51334603160389,55.280344902552216],[-122.51362797221272,55.28039539850357],[-122.51382192092778,55.28041315923331],[-122.5140283685763,55.28042342104733],[-122.514223025504,55.28045577648136],[-122.51430798086176,55.28050075892027],[-122.51450000611715,55.28063170530878],[-122.51469982622403,55.280695597833784],[-122.51484713949067,55.28075017277805],[-122.51514218431613,55.28087727290251],[-122.51528239564429,55.28092267909143],[-122.5157135988834,55.28100537501428],[-122.51574451635221,55.28114975238265],[-122.51603196670779,55.28111406493487],[-122.51649648146778,55.28135914128769],[-122.51660788572373,55.28144073973757],[-122.51670594852413,55.28156232796168],[-122.51674436933651,55.281643006827515],[-122.5165540303377,55.28190228623023],[-122.51648181347059,55.28196081133925],[-122.51624230684024,55.28205838505018],[-122.51601187258916,55.28216518158544],[-122.51594317691179,55.28220586580693],[-122.51582638733026,55.28230014342963],[-122.51560254015568,55.282626877313426],[-122.51549729663124,55.28281565782347],[-122.51551676356628,55.282864413588825],[-122.51564762764993,55.28306316117492],[-122.51574580842815,55.28327444887403],[-122.51585730434915,55.28342332203613],[-122.51592327619285,55.28348234778268],[-122.51602283564314,55.28354119154611],[-122.51632996965981,55.28377962433271],[-122.5164140612068,55.28383467166614],[-122.5168055314146,55.28401155326157],[-122.51686879678341,55.284033503439574],[-122.51715670786375,55.28410658133401],[-122.51741649391172,55.28413963066694],[-122.51774626288682,55.2842082712143],[-122.51785884711794,55.28420805428655],[-122.51799071352653,55.2841904370922],[-122.51843314405012,55.284098530493715],[-122.51858270950436,55.28405898346089],[-122.51892931458309,55.2839789729558],[-122.51938046200183,55.28385479216235],[-122.51953557934593,55.28384230770116],[-122.519672190772,55.28383827561684],[-122.51993917886438,55.28387936919662],[-122.52011693389282,55.28392469700302],[-122.52031364628785,55.28400194731493],[-122.52042383900725,55.284052114814756],[-122.52073042248412,55.28422885515725],[-122.52115488975981,55.284526611126566],[-122.52143318892696,55.284824769361094],[-122.52150088359873,55.284978019813046],[-122.52151922872848,55.285062621133],[-122.52151774351313,55.28512536622872],[-122.52147756710768,55.285269999068916],[-122.52139840764158,55.28536309003176],[-122.52119839196979,55.28552904741953],[-122.52096691678238,55.2857389736647],[-122.52076880353138,55.28586013602152],[-122.52066977892183,55.28590894550087],[-122.5205915865321,55.28592245860246],[-122.52036543932593,55.28593408212054],[-122.51993820642188,55.28598717886755],[-122.51975230003116,55.28603580332525],[-122.51962126663304,55.286089323887175],[-122.51952973292113,55.286142826523225],[-122.51941736535021,55.28623162519997],[-122.51938658395042,55.28626776460359],[-122.5193062510215,55.28644266855868],[-122.51929055209135,55.28648707761687],[-122.51929216237195,55.28658242379129],[-122.5193757727732,55.286779846606784],[-122.51940826208663,55.28683793489709],[-122.51943471268227,55.28687455187189],[-122.51956283495129,55.28699137103159],[-122.51986662832317,55.2871321570055],[-122.51998584145659,55.28714669854798],[-122.52010434452144,55.287146644674074],[-122.52030960174717,55.28712546852323],[-122.52052997388098,55.28713498624859],[-122.5208984985895,55.28721254822575],[-122.52105055979266,55.28725827802983],[-122.521126461294,55.287294032929125],[-122.52122571480415,55.28740219585824],[-122.5212795567975,55.28751021204658],[-122.5212943175059,55.28763619732025],[-122.52129124928267,55.28776280601971],[-122.52126692822131,55.287838367859756],[-122.52121285961462,55.28791534154972],[-122.52110246105482,55.28800419676706],[-122.52085698613408,55.28814758221885],[-122.52059942908798,55.28831641721971],[-122.52047236178466,55.28839247340685],[-122.52038237471736,55.288428080947675],[-122.52023870558261,55.288467795224555],[-122.52012497795465,55.28850386078244],[-122.51988702370463,55.288605970509394],[-122.51976383174221,55.288637286662876],[-122.51951673727284,55.288685323297315],[-122.51909196017708,55.28875530446593],[-122.51882580914874,55.28877253525559],[-122.51867619552065,55.288789657910755],[-122.51856175140125,55.28887951927193],[-122.51853293749313,55.28891571352321],[-122.51849039302951,55.2889963717862],[-122.5184713548109,55.28919316953056],[-122.51850064453868,55.289288167969545],[-122.51856711022278,55.28940999248352],[-122.5186738554566,55.28952285159053],[-122.51874620636046,55.289554023922214],[-122.51887463009453,55.28959909582578],[-122.5191574493902,55.289663056145876],[-122.51954701811431,55.28983987418782],[-122.52007083290847,55.28999465270812],[-122.52043111248857,55.290144862464395],[-122.52057969509792,55.290230858258134],[-122.5207839330321,55.29031280187776],[-122.52089743809351,55.29039333309186],[-122.52104204935556,55.29052518617311],[-122.52132129369392,55.29083570315472],[-122.52141025211829,55.290903215498254],[-122.5215651383946,55.29098490120077],[-122.52161649807121,55.29100763745419],[-122.52167690210555,55.291017171874984],[-122.52188466576438,55.291012880392024],[-122.52198334665778,55.29099096855366],[-122.52206978478299,55.29095077592161],[-122.52231788810222,55.29077718895193],[-122.52244134022482,55.290651697572635],[-122.52250522903212,55.29055257357917],[-122.52269501758452,55.29018563538897],[-122.5227746678453,55.29008695113587],[-122.52281375114116,55.29006898156033],[-122.52317299650878,55.28998034122771],[-122.52321879874647,55.289976013258894],[-122.52335307293336,55.28997639610564],[-122.5234549499891,55.28998596562558],[-122.52357142783883,55.29000939665758],[-122.52366791180916,55.29003563335012],[-122.5237216291478,55.29005394975983],[-122.52383736646065,55.290108753118886],[-122.52396709489307,55.290230096698416],[-122.52401012323386,55.290280629225634],[-122.52404853317647,55.29033888121609],[-122.52411585981761,55.29049660427052],[-122.52415134143455,55.29070277123543],[-122.52421898844429,55.29081117091617],[-122.5244578434748,55.29104094929007],[-122.52451360117921,55.29110416969561],[-122.52482225126246,55.29155452527379],[-122.5249240546871,55.29177038975723],[-122.5249596944683,55.29188350229127],[-122.52497520835794,55.29197811459166],[-122.52499418956735,55.292534752468235],[-122.52501797292435,55.29262511061219],[-122.52507651305183,55.29270186251762],[-122.52523907434544,55.292831968305066],[-122.52541448976531,55.2929276754752],[-122.52550578267468,55.29296834120831],[-122.52576854409362,55.29303621110411],[-122.52623100482235,55.293101798971286],[-122.52626027208964,55.29310597836056],[-122.52639336038904,55.293097355099846],[-122.52675941663861,55.29306719536085],[-122.52687586989707,55.2930681986203],[-122.52735458056479,55.29312862922341],[-122.52745569267127,55.29314714339069],[-122.5276150245752,55.293223338968545],[-122.52780901659949,55.293287045835896],[-122.52811679136406,55.29340549690537],[-122.5282270196127,55.29345565755224],[-122.52852789426316,55.29363109569299],[-122.52866184297974,55.293726764048614],[-122.52880032649986,55.29388422366748],[-122.5289122138458,55.29398376194842],[-122.5291137804473,55.29409700968556],[-122.52965286369027,55.294373258479496],[-122.5297382154024,55.294391331801656],[-122.53024571615951,55.294393129761836],[-122.53034760605468,55.29440269365488],[-122.53049972692934,55.294402444085584],[-122.53081513694747,55.29436413509034],[-122.5312679407483,55.29447316090449],[-122.53138114040893,55.29487769476737],[-122.53137300261884,55.2950176160129],[-122.53135143979974,55.295084286777644],[-122.53132254989289,55.2953043555418],[-122.53133923258576,55.29561426610716],[-122.53143599778592,55.29591183015425],[-122.53158106474656,55.29622195017141],[-122.53161236126394,55.296317000435266],[-122.53165692874342,55.29650996283626],[-122.53169046332805,55.29676204081884],[-122.53180730947075,55.296987286467925],[-122.53184256870918,55.29703647846926],[-122.53209487453094,55.29724867549913],[-122.53220511828951,55.297298832647954],[-122.53249079516445,55.29737629436271],[-122.53262629206928,55.29738567000295],[-122.53274014979372,55.297416867115274],[-122.5334057149707,55.29746453209447],[-122.5339949631429,55.297480920447796],[-122.5341284900204,55.297490239650415],[-122.5343398806781,55.29751293570181],[-122.53446782488977,55.29754115935484],[-122.53472711589198,55.297626851527724],[-122.53474011111172,55.29784247933317],[-122.53469626698913,55.29812155521758],[-122.53466601276676,55.29817453065648],[-122.53462422350526,55.2982238218274],[-122.53441383935714,55.29832672650439],[-122.53402790538452,55.298563775464494],[-122.53378088485078,55.29867911451329],[-122.53357057454117,55.29882686717812],[-122.53350032284115,55.29888545704654],[-122.5334408724389,55.29897910390603],[-122.5333349753207,55.2992216971146],[-122.53332995275116,55.29927985882225],[-122.53334792451687,55.299414900393444],[-122.5334108184524,55.29948728408989],[-122.53385633675278,55.29995599507373],[-122.53389996739162,55.29999981326502],[-122.53401812613548,55.300118580665455],[-122.53421069565631,55.300245022948225],[-122.53445190198053,55.30040308908546],[-122.53459467966559,55.300511328572306],[-122.53490382483363,55.30063764723829],[-122.53514893795722,55.30077339690996],[-122.53523900354648,55.30082859599547],[-122.53537985416583,55.300959204508715],[-122.53556375275714,55.301300669897365],[-122.53576834478699,55.30158552992854],[-122.53600684165413,55.30198120734726],[-122.5360225882763,55.30218794190859],[-122.53600109500981,55.30234543085758],[-122.53598276947086,55.30294699480311],[-122.53594914453751,55.30315347851711],[-122.53586622814987,55.303404560747765],[-122.53584219268144,55.30368306644842],[-122.53584473656353,55.303836738724385],[-122.53586915509847,55.30398877655033],[-122.53610068225649,55.30428223245371],[-122.53619719349473,55.3043544274126],[-122.53634976381076,55.30441808935865],[-122.5366445826308,55.30450476343387],[-122.53688446085064,55.30456412333018],[-122.53726865623575,55.3046454306282],[-122.53756536694365,55.30468730785469],[-122.53793635927354,55.30471555093367],[-122.53835037218487,55.304771895842975],[-122.53885106024705,55.304854190707154],[-122.53936589138733,55.30490996789795],[-122.53978193317027,55.30494281956461],[-122.53996254623112,55.30497922588161],[-122.54037622207574,55.30506246278398],[-122.54063947331683,55.30512582742373],[-122.54081421786908,55.305184493119675],[-122.54094814773711,55.30523529895472],[-122.54128469000403,55.30543411575387],[-122.54155081819864,55.30555585929834],[-122.54167738233195,55.305669245745214],[-122.54170713332314,55.3057137969385],[-122.54182770612893,55.30598846619702],[-122.54189744158982,55.30611933584005],[-122.54194189386317,55.30622259588022],[-122.54200365758278,55.30630839731248],[-122.54213623526604,55.30642082883834],[-122.54226550176338,55.306502896643],[-122.5424878804181,55.30667387728192],[-122.54269761094167,55.306877020756545],[-122.54277164190955,55.3069351325944],[-122.54350044544196,55.307374661313105],[-122.54361995795207,55.30745533593966],[-122.54381778098059,55.30761330018558],[-122.54442159144484,55.308127839685774],[-122.54455057357765,55.30825922859134],[-122.54473877499542,55.30852904179371],[-122.54489506870212,55.308664550764796],[-122.54514314311571,55.30885866166347],[-122.54535761131726,55.30905296193279],[-122.5456732929798,55.30924221803643],[-122.54580666073691,55.30934569765395],[-122.54609614187393,55.309540953669966],[-122.54612570045367,55.30967967673612],[-122.54616853497423,55.309755981947774],[-122.54626954405427,55.3098910785254],[-122.54641709652881,55.31003643370946],[-122.54649979414502,55.31008581374607],[-122.54672837010473,55.310185202518674],[-122.5472546200018,55.310384771199296],[-122.54741122044878,55.31047095357056],[-122.54760075575601,55.31061074279079],[-122.5475835840313,55.31074144429375],[-122.54758673978871,55.31111824517324],[-122.54755123224002,55.311576942099954],[-122.54763585038668,55.31178782309284],[-122.54753846399333,55.312115871898484],[-122.54753855799964,55.31216072135269],[-122.54756557686207,55.31226013260068],[-122.54761514812306,55.312350077782796],[-122.54767178869854,55.31242676463316],[-122.54769520492077,55.31245319995795],[-122.5477885833968,55.3125163287719],[-122.54804410215925,55.31267027689984],[-122.54828274382758,55.31285963468351],[-122.54839665634312,55.31293678551481],[-122.54854341162682,55.31302269359427],[-122.54867430012305,55.31306331545297],[-122.54875171785511,55.313082276006675],[-122.54931768719278,55.31316521130887],[-122.54979638302524,55.313274879377744],[-122.55008821820712,55.31335134606633],[-122.55026685926687,55.313411226181046],[-122.55052628643101,55.31349688564087],[-122.55069550440349,55.31357444311083],[-122.55126615588232,55.313809977732255],[-122.5514152765323,55.31389146293519],[-122.55157305296427,55.31396421799337],[-122.55170717116398,55.314036318541284],[-122.55190510785962,55.314216694795974],[-122.55236191712588,55.314627341371036],[-122.55243141701723,55.31480752874162],[-122.55244349537755,55.314919979485516],[-122.55237378983242,55.31522525212371],[-122.55235817911466,55.31547596209788],[-122.55238195150734,55.315705337658876],[-122.55243606785629,55.31592658285609],[-122.55242410218507,55.316042853480766],[-122.55224084915733,55.316266504854646],[-122.55207634394083,55.31640995031483],[-122.55188456889432,55.31652573345871],[-122.55166596047466,55.31667777283518],[-122.551461536827,55.31682571950083],[-122.55129476851754,55.3170184329229],[-122.55128308554032,55.317085379936415],[-122.55130304825673,55.31719804894779],[-122.55134792149589,55.31729683170805],[-122.551496867636,55.31747248983326],[-122.55158401573159,55.31760831901535],[-122.55191115229077,55.31794138317985],[-122.55200359481417,55.31810762995842],[-122.55204616704191,55.318279224726844],[-122.55208606045869,55.31866600975354],[-122.55211444353992,55.31879572891885],[-122.55233314091974,55.31907982539223],[-122.55256996872072,55.31931397006462],[-122.55292844255959,55.31971965208883],[-122.55298894726803,55.31975159611142],[-122.55321585623962,55.31977917031488],[-122.55345728678803,55.31977575275673],[-122.55365961891417,55.31979031403657],[-122.55396001293711,55.319790767376006],[-122.55455950729196,55.319829755809764],[-122.55482825589085,55.31983045387095],[-122.5552460013331,55.319845357803054],[-122.55532002300994,55.31988103752756],[-122.55540288570407,55.31985978194628],[-122.55571088679513,55.31990977247989],[-122.55581717526181,55.31991495045919],[-122.55648106481509,55.319917588468066],[-122.5567016254545,55.31992704229881],[-122.5570534896128,55.31997263477761],[-122.5576202882564,55.320024159617695],[-122.55819897255401,55.32009843316669],[-122.5585749393438,55.32016262511491],[-122.55870783313888,55.32020329089534],[-122.55901552162965,55.3203261400794],[-122.5592501560805,55.320448093986194],[-122.55932764663953,55.320489472733314],[-122.55948348357647,55.32072361068973],[-122.55961533677322,55.32082254719284],[-122.55971439319895,55.32093515389018],[-122.55977960953453,55.32111970255116],[-122.55978732903961,55.321214093184395],[-122.55974378321753,55.321514484723885],[-122.5597614751794,55.321861412126935],[-122.55988012826786,55.32204519247758],[-122.56001709359785,55.32217678316191],[-122.56013394419112,55.322266335831884],[-122.56013094174124,55.32237052114786],[-122.5602499302709,55.32289626493453],[-122.56083381314022,55.323671394825915],[-122.56110276060878,55.3242696635764],[-122.5611833263213,55.32459814323511],[-122.56127100200571,55.324728373156674],[-122.56138590434797,55.324863838322464],[-122.561422374708,55.324899599867045],[-122.56154691928434,55.32494563774747],[-122.56169844372054,55.32497672302741],[-122.56193880962535,55.325009136039725],[-122.5624101759904,55.32511406431304],[-122.56261730463078,55.32514219638536],[-122.56285098925765,55.32518339273855],[-122.56327811073191,55.325297188705996],[-122.56355900872443,55.325410317779614],[-122.56369778532381,55.32542871653419],[-122.5639971449199,55.325510960736004],[-122.5644604766884,55.32570983703184],[-122.56472479821504,55.325855020331254],[-122.56484787384436,55.325941376018434],[-122.56513339241661,55.32616225986553],[-122.56531708998358,55.32627943469725],[-122.56558733494003,55.326424779112145],[-122.5659320264124,55.32676276966697],[-122.5660346193196,55.326857529356566],[-122.5661581795394,55.3269382911474],[-122.56631488512602,55.32702444993429],[-122.56644939877091,55.32706963588674],[-122.56664947492408,55.3271110206694],[-122.56689500853719,55.327152535199886],[-122.56754144297517,55.32722190005695],[-122.5680549527891,55.327250605851674],[-122.56837053257468,55.327305256347856],[-122.56853469187583,55.327373678747605],[-122.56899052458768,55.327591390403796],[-122.56910773452441,55.32765403586804],[-122.56942148797748,55.32779944699767],[-122.56956045348716,55.327885113499526],[-122.56961289011149,55.327988580875356],[-122.5696647399875,55.328168270697525],[-122.56969156761038,55.32861747094342],[-122.56965226331477,55.32870720364366],[-122.56956393789144,55.32879222466339],[-122.56945967861554,55.328855505426105],[-122.56917818306752,55.32898005945661],[-122.5687259761665,55.32913579389857],[-122.56836960161424,55.32921119774455],[-122.56805562302377,55.32932252300193],[-122.5678159592518,55.32942019620511],[-122.56752585776793,55.32957590238299],[-122.56739015179757,55.32968316251561],[-122.56726524676662,55.329849019990704],[-122.56707747416529,55.33003332800401],[-122.56693628907855,55.330158375462936],[-122.56680381627918,55.33029711648638],[-122.56677227790934,55.330342215924354],[-122.56668084267822,55.33060205033693],[-122.56666602216015,55.33070591016156],[-122.56667119454768,55.330876468647425],[-122.56674343091817,55.331164352352204],[-122.56680741197077,55.331271502244654],[-122.56684632604383,55.33137123523379],[-122.56688238832372,55.331550491978184],[-122.56687660656269,55.33164114669733],[-122.56685305276793,55.33168534478422],[-122.56665184539536,55.33186479808833],[-122.5665974019605,55.33190029781648],[-122.56633560088382,55.33202538838484],[-122.56601866356458,55.3323787982879],[-122.56585864137423,55.33258517095859],[-122.56573981008621,55.33281846416674],[-122.56573105681221,55.33294379306232],[-122.56573718185065,55.33321864580476],[-122.56589327743296,55.33352005037296],[-122.56602306228977,55.33371309910539],[-122.56615334640931,55.33383104373365],[-122.56622357338212,55.33391145798552],[-122.56653685040175,55.334316971217184],[-122.56667102545157,55.33441259912601],[-122.56690396644706,55.33460175884439],[-122.56707784478594,55.334718659757876],[-122.56731768179615,55.334827284953604],[-122.5674121380087,55.33485567068347],[-122.56763678678048,55.334887638530574],[-122.56784718638512,55.33490127540461],[-122.56808240597303,55.33490214083461],[-122.56811915718238,55.334888576817306],[-122.56826709725252,55.33477716732008],[-122.56838355518408,55.33473328228525],[-122.56868311916008,55.334675374078955],[-122.56888070333171,55.334653900852345],[-122.56912381190531,55.334654981339575],[-122.56951015525222,55.33466896952731],[-122.56972051810938,55.334706146540086],[-122.56984519828447,55.334751057660945],[-122.57005688851171,55.3348420860989],[-122.57030703974127,55.33496892739781],[-122.57037282963668,55.335008855427546],[-122.57069242037791,55.33524859935978],[-122.57087567550371,55.33551038149419],[-122.57090757383874,55.33559982962181],[-122.5709299941948,55.335869523331226],[-122.57092876463243,55.335999543631395],[-122.57095833288821,55.336139379710744],[-122.57101823197847,55.33622511281199],[-122.57135363264901,55.33658076830115],[-122.57161893655325,55.336761838491775],[-122.5721287726791,55.33713573897187],[-122.57241381113352,55.33731734951862],[-122.57274492109005,55.337538344261205],[-122.57305488075752,55.337706062798034],[-122.57343057921479,55.33789128222345],[-122.57364633523832,55.337981294442045],[-122.5740518892326,55.33811800102275],[-122.5744833740242,55.3383215662517],[-122.5751570365669,55.33860689543309],[-122.57526267546154,55.33864342988612],[-122.57579071704288,55.338735283174984],[-122.5759275725053,55.33875361421206],[-122.57612211718182,55.33876792252824],[-122.57629254316501,55.33876363024135],[-122.57644110948429,55.338737435989366],[-122.57670457708565,55.33863927717614],[-122.57673814696965,55.338616654095816],[-122.57687818564412,55.33850501782765],[-122.57693689295643,55.33844272294182],[-122.57702223346082,55.33827689165226],[-122.57700848828308,55.33815991476488],[-122.57698659717708,55.33809204504829],[-122.57692553695668,55.33801973718148],[-122.57689012303851,55.337948132956626],[-122.57688045075076,55.337876113863494],[-122.57690912029675,55.337795056418905],[-122.57698962240309,55.33773223838757],[-122.57713563914056,55.33764318899473],[-122.57722371340938,55.33760748621397],[-122.57741691639482,55.337567940581934],[-122.57753633179244,55.337558883868404],[-122.57771855748601,55.337578457649464],[-122.57827792929112,55.33755792385276],[-122.57856827544394,55.337584946334154],[-122.57864187347543,55.33762620495797],[-122.57875992463136,55.33772586123494],[-122.57892755107157,55.33784705752056],[-122.57920998473661,55.33803642820572],[-122.5796516103918,55.33819092234667],[-122.57974420583679,55.338218126137114],[-122.57997076065918,55.33825124441944],[-122.58010755114998,55.338247146100834],[-122.58049774759196,55.33821635890111],[-122.58058232149827,55.338198496238675],[-122.58068184921902,55.33816758957659],[-122.58085404801592,55.33809607081471],[-122.58108501214633,55.33798467975492],[-122.58144142621589,55.337770216767396],[-122.58156404599823,55.33767715790858],[-122.58185270574143,55.33739917425008],[-122.58201490280722,55.33728253410318],[-122.58218707836247,55.337071990748825],[-122.58239333157557,55.33687919795715],[-122.58249684850915,55.33673179994834],[-122.58262686773102,55.33657503752063],[-122.58281029187154,55.336302017393116],[-122.58286551783887,55.336234018982],[-122.58302245621533,55.3361093856824],[-122.58313307909172,55.33606420625248],[-122.58359786122898,55.33601639332309],[-122.58382557800232,55.336012538853765],[-122.58395163962915,55.33601823306644],[-122.58423336543605,55.33609994267053],[-122.58448083458357,55.33623564987376],[-122.58454248981361,55.336370754178134],[-122.58466282320316,55.33653661462914],[-122.5847428603474,55.33661840704945],[-122.58498534080702,55.33692887523244],[-122.58502859124951,55.33697826838471],[-122.58511775905713,55.33704573556828],[-122.58531180942958,55.33715867694155],[-122.58536759069169,55.337177020872076],[-122.58552856737185,55.33721393992621],[-122.58596592026966,55.33725617989558],[-122.58647358456273,55.337262223225316],[-122.58694913994013,55.33725056891657],[-122.58739427303661,55.33722462691922],[-122.58778647057538,55.337239838980814],[-122.58798588368919,55.337266594623664],[-122.58810260605992,55.337312390250624],[-122.5882792220332,55.33739794252305],[-122.58842505496152,55.33754319446671],[-122.58863717716088,55.337722771951874],[-122.58905933442955,55.33810653376645],[-122.58934531246379,55.338278038798556],[-122.58943753420547,55.33830970956762],[-122.58955183748536,55.338337499314086],[-122.58971914606286,55.338346557276424],[-122.59046375374503,55.33826376345554],[-122.59069383575067,55.33825547620124],[-122.59107178329187,55.33825234997605],[-122.59111687270044,55.338256945396054],[-122.59134079885393,55.33829781894575],[-122.5913985572676,55.33831621408403],[-122.59149912381538,55.33836604952029],[-122.5915376060886,55.338401856210695],[-122.59164119299894,55.338532496151366],[-122.59170263905258,55.33871692066274],[-122.59171680747045,55.33882942176221],[-122.5917119362612,55.33891001080303],[-122.59162573386197,55.33943571309607],[-122.59165882696864,55.33979089756678],[-122.5917207987074,55.34001569746109],[-122.59189371027128,55.34044757532654],[-122.59215643031969,55.34089311725796],[-122.59223397413342,55.34105107370076],[-122.59249945457196,55.34137112242191],[-122.59268389856281,55.34155105730306],[-122.59291258246309,55.341745653592945],[-122.59312020334937,55.341862315647845],[-122.5932619287016,55.341916636623004],[-122.59338057095897,55.34194005643353],[-122.59364164907053,55.34196288021777],[-122.59414692607722,55.34197443121458],[-122.5942082789663,55.34197386363517],[-122.59442318917638,55.341934884070376],[-122.59452516342165,55.3418984274821],[-122.59500762142912,55.34168960909441],[-122.59532556794441,55.34157832358104],[-122.59548287878451,55.341542255091966],[-122.59572854047524,55.34146711491587],[-122.59600631760682,55.34140966751829],[-122.5961624879155,55.34138702074093],[-122.59644337600308,55.34131620362671],[-122.59694692980088,55.34113822437536],[-122.59761340442763,55.340834634257504],[-122.59807033595574,55.340669954183696],[-122.59836069849341,55.340720473964545],[-122.59834497093964,55.34076601173705],[-122.59831309975196,55.340792050067684],[-122.59829691720905,55.34081963726128],[-122.59826540596235,55.34086474470211],[-122.59826479769366,55.34091854263212],[-122.59827769338831,55.34111621410582],[-122.59827738926049,55.34114311307156],[-122.59826190708249,55.341232381826835],[-122.59826084390754,55.341268229184635],[-122.59830692276383,55.341331147928635],[-122.59840126305815,55.34143125873764],[-122.59855750587661,55.34154763178495],[-122.59868259978387,55.341611583259485],[-122.59874552635445,55.341639084752394],[-122.59885644961528,55.341683590448326],[-122.59890237840773,55.341701659433554],[-122.59898184808313,55.3417206426551],[-122.59913976322808,55.341747369672746],[-122.59918720989849,55.34174754175813],[-122.59926425145585,55.34174852045199],[-122.5994071982247,55.341695238571816],[-122.5994542842474,55.341676341434855],[-122.59953511947197,55.34163257796447],[-122.59965970219636,55.34163260979953],[-122.5997083630007,55.34164178385616],[-122.59975474769723,55.341677803097625],[-122.5997861072495,55.34170444378837],[-122.59986315076524,55.34182202016587],[-122.59991150880775,55.3418580931152],[-122.59997322227248,55.34187659182303],[-122.59999961144712,55.34189188566618],[-122.60012967944657,55.3419671824868],[-122.60006523934787,55.34219077461149],[-122.59999999804931,55.34223720563551]]],[[[-117.84036248720119,52.272586028926696],[-117.84043670668854,52.27390999967265],[-117.83408616147165,52.2764592510469],[-117.82894283259097,52.27832853327529],[-117.82409875608329,52.28048742353482],[-117.8223162854379,52.28224526433502],[-117.82107383009856,52.286683938505824],[-117.8224648089094,52.28862209583661],[-117.82124477103211,52.29084131642789],[-117.81304616765634,52.290649362389246],[-117.80018509147283,52.29079490294542],[-117.79364666236256,52.29220817581448],[-117.78990708832471,52.294759265902655],[-117.79110568449482,52.29607246805695],[-117.79079846445795,52.30062831908101],[-117.78853564142781,52.30489102012571],[-117.78487492269353,52.30818349582136],[-117.78037830364492,52.312441180155155],[-117.77644145092647,52.31430808200303],[-117.77175560748627,52.3180001346709],[-117.76719587563524,52.317705614563216],[-117.75749652716931,52.31813558155724],[-117.74853903555668,52.31816741838689],[-117.74395162400532,52.319866656108694],[-117.74299082389663,52.32379184537459],[-117.74406666069594,52.32982652641336],[-117.7412400555333,52.333292691595204],[-117.73739099931747,52.33737814307408],[-117.73550271388446,52.3409632427481],[-117.73574471941077,52.34432428865102],[-117.73712749734915,52.346603798503764],[-117.72848122377314,52.354833030575875],[-117.71688675935218,52.357132544083136],[-117.70651195152308,52.359551238453896],[-117.70516673302173,52.36398712313317],[-117.71083547818591,52.3668503997408],[-117.7202442205681,52.368529182462254],[-117.72328484067428,52.37389090008912],[-117.73161698889001,52.38324885262022],[-117.7276292841294,52.39017924692073],[-117.72825835254189,52.39445275261464],[-117.73439307130431,52.396694256379554],[-117.74155800414684,52.40098063263385],[-117.75103547184348,52.40789789759982],[-117.75633519859497,52.41172226906026],[-117.76408207099577,52.41276812423316],[-117.78249645089258,52.41099551518295],[-117.79268575924009,52.41028021438006],[-117.80612036747581,52.41298694375694],[-117.81060076963618,52.414759785973104],[-117.81702176831485,52.41716615642966],[-117.8262798679258,52.41752684371522],[-117.83675247464822,52.41703752844054],[-117.84124168486456,52.41596435044884],[-117.84693805303151,52.41477914061351],[-117.8536569305083,52.41781197445968],[-117.86148511655098,52.420160662151055],[-117.86634727348758,52.42141973197608],[-117.87323444544842,52.42490651969724],[-117.87667538453033,52.42889806339994],[-117.882386313486,52.429362304884656],[-117.89265198603171,52.43091643088106],[-117.89909750935239,52.43314683486066],[-117.90245022750919,52.43400694326875],[-117.90815159262625,52.4357836407489],[-117.91319696309736,52.43789501436162],[-117.91494378443437,52.44239860712137],[-117.91557928791902,52.446267233002054],[-117.9230694748511,52.44690701477813],[-117.93288007894257,52.44822518485621],[-117.93680708721607,52.44943272403021],[-117.94342849996255,52.45154109618486],[-117.94529073552403,52.454106926121256],[-117.94855519227319,52.45821480121134],[-117.95341697116783,52.459983017798535],[-117.95621451220414,52.46152370852695],[-117.96162523648529,52.46551206319736],[-117.96796941328469,52.468880546402744],[-117.97020238062586,52.47304412188118],[-117.96953078653485,52.47884646319005],[-117.97101903378108,52.481124579475264],[-117.97410160377072,52.48289762919634],[-117.97896257065567,52.48461027496734],[-117.98129203361674,52.48922008801487],[-117.98277799188128,52.49429269853359],[-117.98426742302132,52.49617408417911],[-117.98529095917442,52.49816483187341],[-117.9887655182815,52.498169066699454],[-117.99362814058081,52.49765984290643],[-117.99947743309362,52.49624043833647],[-118.00040093824045,52.49630525711637],[-118.00210173680448,52.495865837810605],[-118.00467224527213,52.49434699052749],[-118.00543407205781,52.49384561981531],[-118.00712298849766,52.489807923687984],[-118.0085827273464,52.48731565373004],[-118.01023951887967,52.48488038376374],[-118.01199162718642,52.48233096201898],[-118.01400803661816,52.480353604152256],[-118.0149635500299,52.47944814790089],[-118.01714595763157,52.47793284498451],[-118.0185168377907,52.47583258225304],[-118.02081159934276,52.47363233763391],[-118.02242746904678,52.47244683456322],[-118.02451842511744,52.47149931201145],[-118.02574209122146,52.47082543824718],[-118.02679947663006,52.46968889963281],[-118.026455720925,52.46866467904764],[-118.02528811378664,52.46688382317448],[-118.02510538464091,52.46643018413319],[-118.02383000609261,52.46498989759386],[-118.02236332412139,52.463780652611234],[-118.0209957224947,52.462517847160484],[-118.02047378646799,52.46085750420295],[-118.02323995044505,52.45843136895131],[-118.02635753893752,52.457544354935976],[-118.03028699169715,52.45723763289717],[-118.03562812306482,52.45699848213359],[-118.03955729810076,52.457091887824646],[-118.04366698710334,52.457011996403835],[-118.04602161866005,52.45663555251451],[-118.04920378890114,52.45643653669241],[-118.05163960157482,52.45634191683927],[-118.05614619025262,52.45604064970833],[-118.05708965248753,52.455592641299866],[-118.05568949362538,52.45169922952757],[-118.05277785691585,52.44779913362909],[-118.05049581501007,52.44578642772602],[-118.04864675953236,52.44479943333928],[-118.04511163211114,52.44402715494977],[-118.04250758503976,52.44343321403837],[-118.03737694895874,52.44270789413177],[-118.0349596002397,52.44222755890501],[-118.03310029577996,52.441298234274065],[-118.03260531709938,52.43901258602253],[-118.03350312408503,52.43657397983107],[-118.03552336321876,52.43407945018397],[-118.03582368715439,52.43334034704338],[-118.03701749984829,52.430503576252704],[-118.03744454018798,52.428282454607746],[-118.03766895835524,52.42651384930561],[-118.0382730674985,52.42469633547574],[-118.03841225503167,52.42298730440899],[-118.03940146432522,52.42077154185013],[-118.0419606283027,52.41920178017433],[-118.0458142599262,52.41792451556845],[-118.04921152628253,52.4168690432821],[-118.05157600083082,52.415466783244284],[-118.05159755343561,52.41455003234816],[-118.05110107598509,52.41226887266502],[-118.04966054144604,52.409403967808245],[-118.04795309551909,52.40654099532341],[-118.04669472922872,52.40453457788789],[-118.04597643713795,52.4032127618661],[-118.04602739383448,52.40319765495433],[-118.04510743964448,52.402844519411666],[-118.04390370425098,52.40215375287985],[-118.04346986521206,52.40090673928065],[-118.04272110471791,52.40044971583488],[-118.04229313775971,52.400110638941484],[-118.04196611525337,52.39972660028445],[-118.04187372918314,52.399555548438485],[-118.04175805583925,52.3993902321867],[-118.04167319281572,52.39921856925573],[-118.04164160013711,52.399039288486115],[-118.0415776803024,52.398864553180516],[-118.04145621486794,52.39870052565082],[-118.0413308864329,52.39853736034193],[-118.04119752224808,52.39837758597294],[-118.04114965070706,52.398206209937854],[-118.04135914051547,52.398115145263525],[-118.04127640606544,52.39812186465603],[-118.04099581672317,52.398096928216304],[-118.04072969637919,52.39802391011156],[-118.040467396037,52.39793028905396],[-118.04020702795012,52.39783624068755],[-118.03994121946754,52.39776155439778],[-118.03966107607548,52.397724236269525],[-118.03937335210944,52.397707829592186],[-118.0390778706083,52.3977032974896],[-118.0387787017571,52.39770866374077],[-118.03848133141258,52.397724305722626],[-118.0381844478533,52.39774730849429],[-118.03789374188965,52.39777694452688],[-118.03761183800074,52.3978190348764],[-118.03734081623216,52.39789232264076],[-118.03707452536506,52.39798004095449],[-118.03680916218725,52.39806275067384],[-118.03653523290886,52.39812174009059],[-118.03625259261723,52.39813782163035],[-118.03596275846489,52.398112805247806],[-118.03566819328339,52.39807335690072],[-118.03537318457344,52.39804628624492],[-118.0350803254467,52.39804756503957],[-118.03478733283791,52.39805954627157],[-118.03449330522616,52.39807710502626],[-118.03420069442923,52.39809700773406],[-118.03390635717062,52.398116231352176],[-118.0336145708257,52.39813168601862],[-118.03332047105886,52.39813964358954],[-118.03302854210409,52.398135900352905],[-118.03273543436669,52.39811854710663],[-118.03244387787068,52.39809283466737],[-118.03215059721398,52.39806643420644],[-118.03185993910064,52.39804586305481],[-118.03156721579056,52.39803642091423],[-118.03126328034932,52.39803749601498],[-118.03096407633248,52.39805299284343],[-118.03068592543302,52.398094756837224],[-118.0304699639743,52.398200592021816],[-118.03029804076944,52.39835852734713],[-118.03011051546463,52.39850073177239],[-118.02992136863317,52.39864168717109],[-118.02969401679437,52.398748992974355],[-118.02940565053588,52.398805844175094],[-118.02909671457274,52.39884379694701],[-118.02882998205588,52.39890382443915],[-118.02867877931722,52.39902991052048],[-118.02864879963786,52.399221319633156],[-118.02858013941673,52.39940159926088],[-118.02839263804712,52.399533641209025],[-118.02815468634402,52.399648111132095],[-118.02793236481105,52.399768169694866],[-118.02781570055386,52.39992766137055],[-118.0277819342017,52.39999979023924],[-118.02773402759831,52.400108172472535],[-118.02761833213859,52.40028238707018],[-118.02738360761496,52.40033954480804],[-118.0270747202589,52.40032729125477],[-118.02677418637461,52.4003398711069],[-118.0264898768703,52.40039473926749],[-118.0262096049063,52.400457781687486],[-118.02592767374301,52.400499834699595],[-118.02564286912268,52.400487549003316],[-118.02535392092717,52.40043774054013],[-118.02506349023218,52.40040588790182],[-118.02476926648681,52.40038448564738],[-118.02447649544885,52.400385176339235],[-118.02418669257324,52.400409770155775],[-118.02389806547394,52.400447972591174],[-118.02361205908093,52.4004920045339],[-118.02333806264545,52.4005611134096],[-118.02305484951597,52.40059010257247],[-118.02275762552658,52.40058484156384],[-118.02246471490903,52.40059623923969],[-118.02217235714429,52.40062459598378],[-118.0218952506515,52.40068051850378],[-118.02162773740467,52.40075458296889],[-118.02136567541001,52.400839175696866],[-118.0211115142716,52.40093108126579],[-118.02086394347103,52.40102738458354],[-118.02061951077056,52.40112672859449],[-118.02037821614014,52.40122911331749],[-118.0201383367597,52.40133384239454],[-118.01990018066186,52.40143925843812],[-118.01966323108313,52.401548141605],[-118.01944118584693,52.40166651744692],[-118.01930122901369,52.40182157197598],[-118.01911016845197,52.401942643374625],[-118.01885254543447,52.402033177875566],[-118.0186289780852,52.402149750798685],[-118.01841200088829,52.40227072172758],[-118.01819481373802,52.40239281498844],[-118.01796586062348,52.40250844686892],[-118.01775567654568,52.402632710083374],[-118.01761446793809,52.40279444548613],[-118.01747622534376,52.402950185188494],[-118.01720189723162,52.402961155688274],[-118.01700421753452,52.40281891583676],[-118.01672712973858,52.40280488520182],[-118.0164546265512,52.40287577016945],[-118.01617860287826,52.402935699076146],[-118.01588964023483,52.4029755567568],[-118.01559929800733,52.403002909240065],[-118.01530312569557,52.40301180885995],[-118.01502155501775,52.40297207766088],[-118.01475282510873,52.40289318776242],[-118.0144921374663,52.4028108990911],[-118.01423431556401,52.40272316686236],[-118.01397628752164,52.4026365478856],[-118.0137183649426,52.40254936696041],[-118.01345533370355,52.40246973878037],[-118.01317911963426,52.40241119420428],[-118.01288878908163,52.40237874982233],[-118.0125907292847,52.402348027534984],[-118.01229277435709,52.40231674311381],[-118.01209507131261,52.402214545015056],[-118.01203751539258,52.40202611903928],[-118.01202871381163,52.4018444512841],[-118.01198544086475,52.40166886082674],[-118.01187343120992,52.40150432000583],[-118.0117308159599,52.40134499492272],[-118.011584128105,52.401187653760196],[-118.0114230865484,52.40103777804811],[-118.01126032182324,52.400887214497835],[-118.0111641903661,52.40071699977439],[-118.01108479171126,52.40055640542884],[-118.0109486736802,52.400372148864356],[-118.01081568985391,52.40022082425655],[-118.01067591112066,52.40006620550322],[-118.01055857504727,52.40000001112756],[-118.01045624842031,52.39994274068293],[-118.01025704944789,52.39980884718202],[-118.01011371948762,52.399653422755605],[-118.01004088758425,52.39947747759617],[-118.01004610248435,52.39930016080951],[-118.01008333819388,52.39911997355539],[-118.01010197694697,52.39894019006848],[-118.01011136783475,52.398760336682656],[-118.01013183329889,52.39858068830066],[-118.01015678658923,52.39839682816888],[-118.0102467027438,52.39823212778322],[-118.0104505060129,52.39810235608595],[-118.01067317767452,52.397980664529136],[-118.01089360663211,52.39786106504458],[-118.01111251578882,52.39773967261092],[-118.01132107378912,52.39761418089212],[-118.01149078401109,52.39746852568134],[-118.01164020942605,52.39731243596847],[-118.01182685715605,52.397175277914435],[-118.01203454972517,52.39703450016167],[-118.01217251320132,52.396900181462584],[-118.0122904324227,52.39674418174749],[-118.01232458476757,52.39657055020419],[-118.01228956337094,52.396390447314225],[-118.01225981904821,52.396211845775234],[-118.01228555442792,52.396033680232726],[-118.01240004697598,52.395925953738356],[-118.01244178773288,52.39576130240437],[-118.0124423312509,52.39560904179697],[-118.01238846396167,52.395470516100175],[-118.0123748362085,52.39527496771303],[-118.01241885390135,52.39509807305156],[-118.0124000825497,52.39492021973522],[-118.01234798257357,52.39474233113631],[-118.01228836358051,52.39456504255652],[-118.01222487928541,52.39438862423617],[-118.01208918572503,52.39423203126356],[-118.0118983578981,52.39409307569874],[-118.01171332828886,52.39395282327109],[-118.0115302327605,52.39381213538842],[-118.01138305405654,52.393657573202844],[-118.01126772064424,52.39349111205042],[-118.011112091415,52.39334216618697],[-118.01091240366621,52.39321105326676],[-118.01077164614394,52.39305186115401],[-118.0106754312967,52.39288219747837],[-118.01058428627229,52.39271514899952],[-118.01044322156051,52.3925576227221],[-118.01036622462549,52.39238421337052],[-118.01038992994022,52.39220703531894],[-118.01042345731965,52.39206664497734],[-118.01032655662863,52.39189073301936],[-118.01019471832427,52.391683636343586],[-118.01008764153781,52.39151266205961],[-118.01002585948333,52.39134707157995],[-118.00998668233098,52.391139612967514],[-118.00996588717754,52.39096274630653],[-118.00992828889429,52.390796569302346],[-118.00992411763164,52.390629884675235],[-118.00984336684321,52.39045677468134],[-118.00979870040695,52.39027882797851],[-118.00977283441397,52.39009936365112],[-118.00977470441948,52.38992011790468],[-118.00978968395184,52.38974008070725],[-118.00979348491822,52.38956040870428],[-118.00979739029864,52.3893801753047],[-118.00979570813051,52.389200115580216],[-118.00975600898661,52.389025336492715],[-118.0096353877829,52.388837631482176],[-118.00955180607873,52.38868971302139],[-118.00948641062293,52.38851371862344],[-118.00944008976947,52.388344682190635],[-118.00933231427449,52.38811780998955],[-118.00924592993037,52.388014823363186],[-118.00913983478377,52.38782868916708],[-118.00891623535145,52.38771678482594],[-118.00877815348697,52.387583151503186],[-118.00867335684626,52.38745971400196],[-118.00860373889746,52.38735619699684],[-118.00851721786808,52.387263913001156],[-118.00842926051524,52.38711964387886],[-118.0083243916066,52.387016507564745],[-118.00808152057226,52.386759435366976],[-118.00787372670214,52.38652283590809],[-118.0078007470062,52.38636775052179],[-118.00773120924292,52.38624392244084],[-118.00762480563486,52.38608935278267],[-118.00753857127762,52.38597565257662],[-118.00743525328815,52.38589405705456],[-118.00736564083785,52.385790539184484],[-118.00729413526159,52.3856772966493],[-118.00715319806525,52.385439673097224],[-118.00706381732574,52.38524339977472],[-118.00702599042394,52.385088485729746],[-118.00695480673974,52.384943676729094],[-118.0068656058205,52.38472654913993],[-118.00681273137016,52.38460275213627],[-118.00668953512616,52.38445886180092],[-118.00651815152273,52.384325179663094],[-118.00632415420223,52.384153833704254],[-118.00614818488793,52.384024906159254],[-118.00614786479058,52.383837610200075],[-118.00609580398529,52.383659717303736],[-118.00602087570329,52.3834853163834],[-118.00586382061195,52.383324418954594],[-118.00572856176403,52.38317574037932],[-118.00555581073715,52.38302955190764],[-118.00537522991193,52.38288564689978],[-118.00516684493441,52.3827618145881],[-118.00492454991797,52.38266101732678],[-118.00466738541775,52.382570482417755],[-118.00441377504116,52.38248075207139],[-118.00415813043635,52.38239200865132],[-118.00390014139994,52.382305918432365],[-118.00363990908915,52.382221937851114],[-118.00335849709336,52.382152277807265],[-118.00316657272333,52.38202957904054],[-118.00305578741902,52.38185890567626],[-118.00291092251851,52.3817022300647],[-118.00271089882378,52.38157332954938],[-118.00248890304704,52.381453063057435],[-118.00226690850813,52.38133279613022],[-118.00205957692573,52.3812033889646],[-118.00182340375157,52.38109962276547],[-118.00156227557223,52.381040394391654],[-118.00139477236435,52.38101527462749],[-118.00123695322574,52.38100774672597],[-118.0010919681239,52.38099095253556],[-118.0009194355567,52.38095307444314],[-118.0007741794207,52.38092779532023],[-118.00067683622488,52.38088383446188],[-118.00067349081037,52.380881915384265],[-118.00067321948904,52.38087343084814],[-118.00066987570051,52.38079197150974],[-118.00066760805552,52.380694792225086],[-118.00062223616015,52.38058053461355],[-118.00054881201598,52.38049761354131],[-118.00038889580976,52.38048147354559],[-118.00024551882792,52.38049581852333],[-118.00012295028205,52.38048790178005],[-118.00000038012159,52.38047999381809],[-117.99979671353888,52.38043036672457],[-117.99950460648309,52.38047785469954],[-117.99922263599312,52.380530555753516],[-117.99895400335778,52.38060110127246],[-117.99870294698835,52.3806965535597],[-117.9984358282633,52.38076889948741],[-117.99814579234986,52.38080524582934],[-117.9978519484402,52.380802401567365],[-117.99755993076018,52.38079969191993],[-117.99728967339229,52.380868993309875],[-117.99702789201494,52.38095241861468],[-117.99676459389156,52.38103404168339],[-117.99652021899523,52.381133336512285],[-117.99628170163226,52.38124093340248],[-117.99602864029121,52.3813272164003],[-117.99573980379121,52.38136702463832],[-117.99544797393602,52.38139308694098],[-117.99515545668136,52.38141290050307],[-117.9948613608894,52.38142131330361],[-117.994568797299,52.38140163595697],[-117.99429050072087,52.381345146693164],[-117.99404416815746,52.381246301261015],[-117.9938218859881,52.38112769335222],[-117.9935545654459,52.380893140580206],[-117.99354191418925,52.38088155174242],[-117.993460727528,52.380711218071596],[-117.9934462144586,52.38053083270778],[-117.99347760462118,52.38035249630207],[-117.99355255144654,52.380178862383026],[-117.99354341695347,52.37999941785069],[-117.99349465479757,52.37982399052698],[-117.99321485260214,52.37976570584398],[-117.99296547937611,52.379693163559736],[-117.99290951176518,52.37951667742019],[-117.99295982705473,52.379356005077135],[-117.99277861862149,52.37920582314935],[-117.99255400443897,52.379089866182035],[-117.99229298307701,52.37901031522558],[-117.99201350007718,52.37895035244128],[-117.99172824475681,52.37891142483367],[-117.99143350121403,52.37893332123206],[-117.99115919235506,52.3789250515276],[-117.9911089240307,52.378747830252514],[-117.99113139153347,52.37856774768462],[-117.9911267139895,52.37839424252469],[-117.99097793627335,52.37823897369469],[-117.99072411049153,52.37814072859418],[-117.99046033752889,52.37811569496092],[-117.99017938810564,52.378143064807425],[-117.98992354928143,52.3780655544173],[-117.98974721686778,52.377919088739205],[-117.98959651503742,52.37776424396191],[-117.98944164047926,52.3776119258828],[-117.98925664989032,52.37747219731001],[-117.98908987598135,52.37732413584471],[-117.98891903244495,52.37717804856938],[-117.98872173007622,52.37704479488426],[-117.98851811505492,52.376915616305084],[-117.98830432434414,52.37679137341923],[-117.98806345170242,52.376683305255774],[-117.9877922311981,52.37671810286227],[-117.98753504598379,52.37679675257524],[-117.98734724692645,52.37692025486645],[-117.9870448916647,52.37694330889081],[-117.98678609604393,52.37687178637048],[-117.98655654578019,52.37675265769758],[-117.98635518181712,52.37662137431378],[-117.98614682104446,52.37648790890071],[-117.98592792951341,52.37637120496168],[-117.98564331529796,52.376378561364504],[-117.98536710584686,52.376440093457376],[-117.98508666123159,52.376494553247355],[-117.98480773098484,52.37655081416091],[-117.98453303596906,52.37661413715492],[-117.98425524647163,52.376664275297074],[-117.98396265981272,52.37663497276971],[-117.98370177390161,52.37655484100715],[-117.98344886606063,52.37646172309535],[-117.98318422381062,52.37638188926395],[-117.98289940917266,52.37634071230723],[-117.98262074477977,52.37628642246484],[-117.98235344434747,52.37621092414185],[-117.98206846710977,52.376160708090644],[-117.98180420161871,52.37608879435445],[-117.98157577006695,52.37597367629031],[-117.98137452801623,52.375841831753],[-117.98122600376969,52.375685427428486],[-117.9811396006826,52.375513590567536],[-117.98108958539876,52.37533525070397],[-117.9811114692279,52.37515851099031],[-117.98114097412771,52.37498061183692],[-117.98108333823626,52.37480343131021],[-117.98100852644811,52.374629013094044],[-117.98099375479778,52.374450300489066],[-117.98096984730445,52.37427094540352],[-117.9809514209008,52.374091979326565],[-117.98098123841758,52.373912404921384],[-117.98093843253585,52.37373512405233],[-117.98086414211555,52.373557925568136],[-117.98070347464476,52.37341704123607],[-117.98044704148873,52.37332310178705],[-117.98019160358415,52.37323375257358],[-117.97993126589152,52.373150823194365],[-117.97966858106449,52.37307055543569],[-117.97940141052305,52.37299448878286],[-117.97914363023422,52.372907790536225],[-117.97889586418711,52.372807119379424],[-117.9786236008276,52.37275834328891],[-117.97832428641618,52.3727652202514],[-117.97801612958132,52.37275005604098],[-117.97785673840076,52.3726222253352],[-117.97793841883056,52.37245245778546],[-117.97811456175607,52.37230221230108],[-117.97821702670899,52.37214008695805],[-117.9781076738282,52.37197229530491],[-117.97801194556442,52.37180093565168],[-117.97794456583449,52.37162646073434],[-117.97789791026857,52.371450047624315],[-117.97779435533798,52.371280960717435],[-117.97774790873291,52.37110343370888],[-117.97767849581135,52.37092994557622],[-117.97754169316231,52.37077040270445],[-117.97741861812138,52.37060673940215],[-117.97729147500897,52.370445041087216],[-117.97711480064862,52.37030078296836],[-117.9769093200364,52.37017201795904],[-117.97667827355086,52.37006121813558],[-117.97642755909418,52.36996653611181],[-117.9761650033428,52.36988570779468],[-117.97588977737911,52.369823170443375],[-117.97561199598599,52.36976440835983],[-117.97535658916107,52.36967504827093],[-117.97511892404385,52.3695699862929],[-117.9748924753304,52.36945442887635],[-117.97468272831827,52.369328738688445],[-117.97448967968045,52.369192933637464],[-117.97432288525171,52.36904540247852],[-117.97417816771026,52.368888689521604],[-117.97404717754058,52.36872785650816],[-117.97390063480194,52.36857101634908],[-117.97372998221363,52.36842434441423],[-117.97352420936714,52.36829723945681],[-117.97329114629277,52.36818741969666],[-117.97303340699887,52.3681007075715],[-117.97278015555996,52.368009793403836],[-117.97254485251666,52.36790207285465],[-117.9723138293924,52.36779126415705],[-117.97208108345322,52.36767977570409],[-117.97187307558458,52.36755476846859],[-117.97168635946251,52.36741487508449],[-117.97151764939946,52.36726777418808],[-117.97136694529576,52.36711346585534],[-117.97120230811947,52.366964390620765],[-117.97104002040797,52.3668126530883],[-117.970893019933,52.36664844690193],[-117.97064629633856,52.366710851640114],[-117.97043620755092,52.36684463111592],[-117.97028136196509,52.36699972946144],[-117.97010912211596,52.3671389527412],[-117.96983566816877,52.36720570965698],[-117.96954731838042,52.36724322563863],[-117.96926842768063,52.367299449634444],[-117.96900395771958,52.367377542396675],[-117.96872187391577,52.36742113281061],[-117.96842357756543,52.36741282582914],[-117.96816301294695,52.36747991470639],[-117.96791468312573,52.36758056276964],[-117.96764607995168,52.36765103658281],[-117.96736979743142,52.367713078722204],[-117.96710067112986,52.36778634016158],[-117.96682741666548,52.36785197618571],[-117.96656596859086,52.36793365855135],[-117.96632473138826,52.36803593360854],[-117.96607247353153,52.3681278480224],[-117.9657892372227,52.36817755258587],[-117.96552689438828,52.36825409812197],[-117.96525990206767,52.36832580710457],[-117.96497457040486,52.368366906928586],[-117.96468380395648,52.368397474252916],[-117.96439366201089,52.368424699538586],[-117.9641050910337,52.368463315742865],[-117.96386457498801,52.36856168300068],[-117.96363262468962,52.368673624438415],[-117.96335904766508,52.36874091845496],[-117.96308870592321,52.36881070224995],[-117.96281131223309,52.36886870385869],[-117.96252048381578,52.36888967619771],[-117.96223012883273,52.36891800983437],[-117.96194427027511,52.368961882154004],[-117.96168301294324,52.36904244860282],[-117.96144489234324,52.36914774741884],[-117.9612410801628,52.36927742709388],[-117.96104405397786,52.36941040335293],[-117.9608535020371,52.36954834241852],[-117.96061871771562,52.369655568650494],[-117.96036351397659,52.36974331386889],[-117.96010637687846,52.36983149281864],[-117.95988950157687,52.36995180500055],[-117.95962802597901,52.370033480526324],[-117.95936968369055,52.370118189500495],[-117.95911739884622,52.37021008866112],[-117.95884098428441,52.3702726628139],[-117.95855155483679,52.37029597976625],[-117.95826034126175,52.37028926870455],[-117.95797470234643,52.37024288701615],[-117.95769344748305,52.37019286508211],[-117.95742398416594,52.370119409484644],[-117.95714539202329,52.37006505827406],[-117.95686476480122,52.370011693059496],[-117.95657704408261,52.36997644547569],[-117.95628572329746,52.3699505414459],[-117.95599310219555,52.36994147009183],[-117.95570845947294,52.36989967384468],[-117.95542091357993,52.369932699662165],[-117.95512751398914,52.369937670691094],[-117.95484717694059,52.369991505318936],[-117.95457660503307,52.370062382984486],[-117.9542912517141,52.370103456506875],[-117.95403576870774,52.37018271198908],[-117.95388461188115,52.370337481009024],[-117.9536013954195,52.37037701379399],[-117.95336131698441,52.37048272120819],[-117.95307318976823,52.37050893156442],[-117.95281717975386,52.37059097316608],[-117.95261020095974,52.37071760333376],[-117.95233570448389,52.3707797367171],[-117.95205958855705,52.370840628538886],[-117.95177401905293,52.370882809597994],[-117.95148285955834,52.370905420428095],[-117.95119049227235,52.370885072360196],[-117.95089776240674,52.37087654059226],[-117.95060978897688,52.37091178196105],[-117.95032087333145,52.370932289578384],[-117.95007342028694,52.37102789183787],[-117.94978528743337,52.37105409402665],[-117.9494999647852,52.371006025366135],[-117.94922633617003,52.37095482561791],[-117.94899556531178,52.37084285705907],[-117.9487281504177,52.37076838588572],[-117.94847890135871,52.3706760071954],[-117.94823262950378,52.370577625167655],[-117.94796506098386,52.37051386442404],[-117.94767097595089,52.370492818937905],[-117.94737788178466,52.370476363805054],[-117.94708713784526,52.370457246377015],[-117.94679529842684,52.3704340984405],[-117.94650841655437,52.37039437988866],[-117.94622153688032,52.37035465171714],[-117.94593110662426,52.37033386524468],[-117.94564276629863,52.37030193178852],[-117.94535165868919,52.37027488660514],[-117.94509620796424,52.37018601242681],[-117.9448193529238,52.37013232024918],[-117.94455581294656,52.37005698025171],[-117.9443725149646,52.36991897285129],[-117.94420367940708,52.36977294630151],[-117.94400054443884,52.36964202285496],[-117.94379099010595,52.36951572449691],[-117.94357726130023,52.36939195102784],[-117.94335058557158,52.369277998251235],[-117.94310636944556,52.36917861881882],[-117.94285327835418,52.36908708706505],[-117.9426001900075,52.3689955458435],[-117.94234475252367,52.368906665526886],[-117.94209411847027,52.36881191822665],[-117.94184849847724,52.36871018133341],[-117.94164036435188,52.368586233788804],[-117.94149597595755,52.36842836634085],[-117.94140201921833,52.36825821713291],[-117.9413389687616,52.368081195327704],[-117.9412321198073,52.36791070701514],[-117.94106909665301,52.36776339155026],[-117.94081497530586,52.36767741498958],[-117.94052890243948,52.36762362818443],[-117.94023885796057,52.367610750875265],[-117.93997894357682,52.36752606547008],[-117.93973537194074,52.367423337635444],[-117.93950443565575,52.36731246364437],[-117.93928206265457,52.367195416290976],[-117.93906428617568,52.36707360701898],[-117.93885486240627,52.36694674709916],[-117.93865765782171,52.36681395978132],[-117.93850075572968,52.36666368153781],[-117.93839157117515,52.366495851817064],[-117.9383111525533,52.36632268902081],[-117.93827442693869,52.36614355503579],[-117.93832571423525,52.3659688602738],[-117.93845765161016,52.365808246015575],[-117.93854892357842,52.36563746715743],[-117.93863471373963,52.36546630607801],[-117.93865180692629,52.365286411075225],[-117.93864300919427,52.36510639892332],[-117.93858910968692,52.36493001207715],[-117.93849710433723,52.3647594261225],[-117.93839747748177,52.364590005599354],[-117.93830354131632,52.3644198533857],[-117.93820970953601,52.3642491486655],[-117.93811384423968,52.36407942127986],[-117.93800842529538,52.36391129322699],[-117.93787769036956,52.36374985751023],[-117.93769078663969,52.363611584124165],[-117.93748107108077,52.363486387525604],[-117.93725893226333,52.363368222230086],[-117.93701497259597,52.36326771581476],[-117.93675467270981,52.36318525036302],[-117.93647677837343,52.363127508114424],[-117.93619079227192,52.36308330004883],[-117.93590282028548,52.363049676104495],[-117.93561061724762,52.36302873628971],[-117.93522033047024,52.3630274648804],[-117.93514923603772,52.36181860654939],[-117.93512207599069,52.36190415104125],[-117.93503604139453,52.36196810457533],[-117.93499260076956,52.36202205823032],[-117.93497885901105,52.3620854129841],[-117.93496674023292,52.36213025942359],[-117.93495284380006,52.362184576955734],[-117.93493889641454,52.362229304864634],[-117.93492499991476,52.36228362238934],[-117.93491120873433,52.36233737859411],[-117.93491198170375,52.36238256465497],[-117.93489818880319,52.362436329763895],[-117.93489896176075,52.36248151582148],[-117.93488699737767,52.36253539945005],[-117.93485812192945,52.36258077398415],[-117.93484448347925,52.36264357628881],[-117.93481576248895,52.36269798801858],[-117.93480197104003,52.36275174419334],[-117.93477492226144,52.36279724613555],[-117.93474620108115,52.36285165784163],[-117.93470337741338,52.36294176018597],[-117.93463257890778,52.363023132251406],[-117.93454471444005,52.36308695792766],[-117.9344734502096,52.3631412271753],[-117.93442990401014,52.36319573297673],[-117.93441564844188,52.3632223774649],[-117.93435925905374,52.363286142066244],[-117.93430099179591,52.36334018958137],[-117.93422931423804,52.3633769366621],[-117.93411133617299,52.36341383868758],[-117.93398036033655,52.36345096216801],[-117.93390639222898,52.36346046997991],[-117.93383409664605,52.363461067990265],[-117.93368798722867,52.363480210834254],[-117.93355502958201,52.36350816917338],[-117.93343872322345,52.363536160761896],[-117.9333077464372,52.36357328348027],[-117.93319018090294,52.36362769766158],[-117.93308931542435,52.36369174369298],[-117.93297388294403,52.363764368433124],[-117.93285865470179,52.36385561986754],[-117.93272657145663,52.3639282019578],[-117.93262555046662,52.36398321036782],[-117.93253930353619,52.36402853513954],[-117.93242147632323,52.3640744726333],[-117.93232030054439,52.36412044356839],[-117.93229065107943,52.36412063139258],[-117.93221866244072,52.364139302803714],[-117.93207087706251,52.364167353329535],[-117.93193974320579,52.364195437283726],[-117.93185334284371,52.364231715425774],[-117.93177998870861,52.36427737069],[-117.93173643796081,52.364331875434054],[-117.93170964261807,52.36438586140715],[-117.9316952795759,52.36441306684913],[-117.93174529312691,52.36421571801147],[-117.93179347431654,52.36403798216641],[-117.93183972277114,52.363860680106875],[-117.93188607456975,52.363682825601956],[-117.93193049533792,52.36350539597583],[-117.9319731942178,52.36332727751506],[-117.93201589107231,52.363149167923986],[-117.93205676234416,52.36297092190368],[-117.93209215091846,52.362792302317764],[-117.93211282037593,52.362613215271686],[-117.93211877089918,52.36243366077324],[-117.93210838323422,52.36225240653826],[-117.93208092654619,52.3620733461175],[-117.93202888450446,52.36189708329708],[-117.93192349459648,52.36172894944024],[-117.93178903163742,52.36156780404005],[-117.9316404217405,52.36141300967761],[-117.93148601790702,52.36125950767118],[-117.9313453448139,52.36110188169778],[-117.93123223567679,52.36093545567164],[-117.93118202528022,52.360759319810775],[-117.93115660930945,52.36057927274321],[-117.93111036607033,52.360401725670336],[-117.93104716017868,52.3602258109329],[-117.93098009212294,52.360050754860985],[-117.9308998189745,52.35987703367568],[-117.93081954647226,52.35970331241172],[-117.93076354607456,52.359528459826606],[-117.93079142106563,52.359350443882185],[-117.93083980987818,52.35917159405314],[-117.93088240357318,52.35899403671604],[-117.93094681220839,52.358818570623676],[-117.93101304870972,52.35864322305862],[-117.93107025484673,52.35846668555082],[-117.93112208412984,52.358289213102424],[-117.93116650248767,52.35811178303569],[-117.93119448029377,52.357933205486766],[-117.93119302188168,52.3577537017321],[-117.93118243012118,52.357573560483935],[-117.9311884875379,52.357393452934915],[-117.9312036781886,52.35721398282863],[-117.93122069536236,52.357034640188836],[-117.93123223246921,52.35685491504284],[-117.93124376947996,52.35667518987089],[-117.93125713302133,52.356495592165714],[-117.93126866983236,52.35631586694182],[-117.93127462299906,52.3561363116202],[-117.93126403129486,52.35595617015607],[-117.93125516088945,52.35577671747439],[-117.9312888256788,52.355597408339996],[-117.93134268796709,52.35541894026358],[-117.93131998585571,52.35524416368068],[-117.9312245858436,52.35507220199355],[-117.93111180578369,52.354904108952766],[-117.9309870217895,52.354740819406445],[-117.93092716328908,52.35456683387199],[-117.93090916356026,52.35438673457176],[-117.93088182056427,52.35420712038168],[-117.93085254756073,52.35402793106714],[-117.93081941267262,52.35384960044311],[-117.93078445155253,52.3536711422845],[-117.93074197562802,52.35349328780911],[-117.93069391686782,52.35331560319454],[-117.93064950979605,52.35313818245094],[-117.930603278287,52.35296062525304],[-117.93055715087308,52.3527825156061],[-117.93049954148697,52.35260642964823],[-117.93039052898645,52.35243802928224],[-117.93032112564707,52.352265633038634],[-117.93034383295358,52.35208555864711],[-117.93042811677358,52.35191259930667],[-117.93043386205593,52.35173416605419],[-117.93036863609562,52.351559235994756],[-117.93029031299362,52.35138507944685],[-117.93022153905781,52.351209341834036],[-117.93014300807943,52.351036298863335],[-117.93000806146799,52.35087793884243],[-117.92985970386822,52.350722027208356],[-117.92972507211178,52.35056200069038],[-117.9295926876219,52.35039986516072],[-117.9294642696807,52.35023631837393],[-117.92941345158562,52.35006352147101],[-117.92941940993362,52.34988397429219],[-117.929436955258,52.349701842141755],[-117.92943743447955,52.349521912345786],[-117.92943233102031,52.34934215236558],[-117.92942905391457,52.34916251988244],[-117.92942588222917,52.348982326057616],[-117.92943184037621,52.34880277872885],[-117.92946357729328,52.348623894047996],[-117.92950079111708,52.348445400807286],[-117.92952876954892,52.348266822334175],[-117.92955502687258,52.34808755499222],[-117.92956891670543,52.347905176439404],[-117.92974799362906,52.347769301182595],[-117.92998800355957,52.3476636407451],[-117.93016436572998,52.34752250248143],[-117.93038799426945,52.34740553364003],[-117.93057004185547,52.347263663526924],[-117.93066292297404,52.34709412967021],[-117.93069465186151,52.346915253327495],[-117.93070070981773,52.34673514432921],[-117.93070849022996,52.3465557152172],[-117.93073108754788,52.34637620127827],[-117.93077012205599,52.34619782591414],[-117.93083879160937,52.34601927197361],[-117.93102067283976,52.34588810447278],[-117.9312834142906,52.345799257057955],[-117.93150984536597,52.34568700471633],[-117.93167915404814,52.34553408918286],[-117.93174818336527,52.34536344930685],[-117.93175220152439,52.34518432628366],[-117.93173655015725,52.345001573425165],[-117.93174088104489,52.34482078421018],[-117.93178710913016,52.344643479556034],[-117.93185890250916,52.344467959644206],[-117.93195359866526,52.34429855187434],[-117.9321014050924,52.34414187829868],[-117.93228666745881,52.34400248756393],[-117.9324855976893,52.34386912366283],[-117.93266892621618,52.34373016613573],[-117.93273502723949,52.343555376877305],[-117.93275986030957,52.34337375322065],[-117.93283232337032,52.34320449000127],[-117.9330297348262,52.34306933146883],[-117.93321274556254,52.342932039145325],[-117.93332892769513,52.342766387082555],[-117.93336074768375,52.342586948091956],[-117.93332750756178,52.34240916902751],[-117.9332834151928,52.34223007274293],[-117.93315333570189,52.34207543890155],[-117.93298313359577,52.34192759930841],[-117.93289067610137,52.341759794695044],[-117.93283876056847,52.3415829681636],[-117.93271218254802,52.34141955132894],[-117.93252111305937,52.34128435351677],[-117.93239156080826,52.34112693882365],[-117.9322510553369,52.340968750185766],[-117.93207710508378,52.34082120659357],[-117.93189084086688,52.34068014155311],[-117.9316607449678,52.3405754982627],[-117.9313814412735,52.34050635049123],[-117.93110365004169,52.340439004596654],[-117.93088868661864,52.34033259984849],[-117.93079222612252,52.34015661471915],[-117.93065793824549,52.33999491292538],[-117.93051551153248,52.33983715586646],[-117.93042134754873,52.33966866018777],[-117.93037309477933,52.33949209619326],[-117.93033846152888,52.33931196087283],[-117.93029234978741,52.33913384924923],[-117.93024644746984,52.33895462384906],[-117.9301907890314,52.33877810205174],[-117.93010241895634,52.33860832236415],[-117.92993641614036,52.3384579441434],[-117.92971849654198,52.338337789713805],[-117.92947808880223,52.33822904450378],[-117.9292659635967,52.33810759671603],[-117.92913246830614,52.33795158909209],[-117.92903742797643,52.3377779571746],[-117.9289048745167,52.33761694190644],[-117.92875453157092,52.33746201346835],[-117.92858832877718,52.337312746918776],[-117.92839290781602,52.3371811804175],[-117.92817317316005,52.33706089542814],[-117.92800665944625,52.336913303052064],[-117.92790134784629,52.336745153404955],[-117.92777073295133,52.33658370293984],[-117.92762018857269,52.336429886640225],[-117.92748733171919,52.336270535727635],[-117.92736433563874,52.33610792881966],[-117.92720403831477,52.33595681533702],[-117.92715590823768,52.33577968817856],[-117.92704548748401,52.335619078606804],[-117.92690105356283,52.33546230274951],[-117.92669473919037,52.33533956655098],[-117.92649171555888,52.33520916143206],[-117.92628858775363,52.335079317264686],[-117.92607507955263,52.33495550831604],[-117.92586757166383,52.334829301833025],[-117.92568297012248,52.334689467486974],[-117.92550864931441,52.33454414079439],[-117.92532008591853,52.33440571680838],[-117.92515938376218,52.334256827760655],[-117.92507156643956,52.33408425487289],[-117.92496392378857,52.33391876337753],[-117.92478971225405,52.33377288310893],[-117.92457610939036,52.33364963259658],[-117.9243346965224,52.333546436069945],[-117.9241126422598,52.33342880422552],[-117.9238903817002,52.33331227676287],[-117.92365111091785,52.33320754026204],[-117.92340735330171,52.333107002928486],[-117.92315363198377,52.33301028186754],[-117.92297765285326,52.33287386099457],[-117.92286324103209,52.33270507703403],[-117.9227331810428,52.33254083162536],[-117.9225661811604,52.332396010787875],[-117.9223174187577,52.33230245950998],[-117.92206062370354,52.33221229071524],[-117.9218257477207,52.332103903148806],[-117.92162875292827,52.331971092269825],[-117.92144214421197,52.33183222803677],[-117.92124729208437,52.33169786909075],[-117.92103595362597,52.33157251206902],[-117.92081209296052,52.33145474607327],[-117.92056527077631,52.331360757314],[-117.9202963238675,52.33128609075985],[-117.92006552525774,52.33117573635272],[-117.91984156549535,52.33105852085471],[-117.9196089454261,52.33094802893542],[-117.91941347514036,52.33081700798304],[-117.91926339920072,52.330660952715135],[-117.91909918468238,52.33051124707063],[-117.91892704315559,52.330364362672235],[-117.91887039557984,52.330193402881],[-117.91900651501186,52.33003988061339],[-117.91896270394705,52.32985966345959],[-117.9187618696589,52.32972769691711],[-117.91856489512611,52.32959488059258],[-117.9184104438882,52.32944246225218],[-117.91821133317502,52.32931118372689],[-117.9180064325704,52.32918119677031],[-117.91781363783296,52.32904584576639],[-117.9176332620636,52.32890346464919],[-117.91745257433469,52.32876274936021],[-117.91725988702761,52.32862684498743],[-117.9170712720738,52.328488959369764],[-117.91687858718794,52.32835305433495],[-117.916661279094,52.32823008569852],[-117.91644569210897,52.328107805685924],[-117.91634732811575,52.327942391671705],[-117.91625162931956,52.327772641501994],[-117.91608550702104,52.32762335593038],[-117.915899666826,52.327480588758384],[-117.91569906064606,52.327347511863344],[-117.91544936192963,52.32731818493495],[-117.91525423391093,52.32718549048692],[-117.91510225643313,52.32702985405474],[-117.9149498596166,52.32687645374784],[-117.91478963998713,52.326725322040176],[-117.9146097026502,52.32658070853358],[-117.91448991061846,52.32642112211542],[-117.91443636741218,52.326243605098995],[-117.91429607997544,52.32608484050628],[-117.91414572571051,52.32593044416731],[-117.91399537084529,52.32577605652469],[-117.91386291196696,52.325615013674835],[-117.91371834994199,52.325459333914964],[-117.91354400109908,52.32531454952569],[-117.9133875482231,52.325163109935104],[-117.91324137359636,52.32500618803403],[-117.91305685491291,52.3248663325415],[-117.91290426524702,52.324714034095855],[-117.91276560420592,52.32455650896382],[-117.91255208122881,52.324433235440644],[-117.91237721769122,52.3242912290143],[-117.91220084341874,52.324147428396905],[-117.91198935871405,52.324023167880505],[-117.91176749259024,52.32390495023518],[-117.9115305474051,52.32379808835609],[-117.91131029941526,52.3236811113353],[-117.91115620827438,52.32352701652619],[-117.9109634602376,52.32339165354757],[-117.91070699682331,52.32330993521017],[-117.91046749835982,52.3232068457388],[-117.91028085780795,52.323068523926004],[-117.91016213892681,52.32290336404701],[-117.9099400740662,52.32278625651574],[-117.90978118937389,52.322638025067626],[-117.90967233159905,52.32246961026737],[-117.90958825034397,52.32229727976229],[-117.90946750162342,52.32213310494762],[-117.90929693624682,52.32198800817019],[-117.90910216630083,52.32185362780668],[-117.90888193480072,52.32173664599928],[-117.90864286844844,52.32163132521488],[-117.90843740617703,52.32150465280735],[-117.90824702373239,52.32136663313911],[-117.90803331988633,52.321244464703895],[-117.90780709619936,52.32112987703388],[-117.90759167364465,52.32100702749792],[-117.90739274030159,52.32087516824158],[-117.90718973730937,52.32074528920632],[-117.90697838929,52.320620457918835],[-117.90677131955793,52.32049254978468],[-117.90652417142869,52.320400757776376],[-117.90627327035688,52.32030926185486],[-117.90604950830601,52.320191466352966],[-117.9058380606619,52.320067194242355],[-117.90563945053964,52.31993366577864],[-117.90540363456373,52.31983081247252],[-117.9051374473573,52.31975179210778],[-117.90491488914883,52.31963745447956],[-117.9047101800802,52.319506881762415],[-117.90448611286648,52.31939074927374],[-117.90430582133756,52.3192483463742],[-117.90407053549526,52.319142710497886],[-117.90381224142436,52.31905125877422],[-117.90356380611829,52.31895655262438],[-117.90341643035029,52.31880629980847],[-117.90330802799923,52.3186356422204],[-117.90319117289312,52.31847060257625],[-117.90307421301921,52.31830612409937],[-117.90302437662001,52.31812885658042],[-117.90296531207893,52.31795150170443],[-117.90286937268701,52.317783414192995],[-117.90271126359117,52.31763127898195],[-117.90255894392688,52.317477861282846],[-117.90242858766334,52.31731581858875],[-117.90237103623339,52.317140266256686],[-117.90227145121513,52.316971922242644],[-117.90199576700024,52.31692382225403],[-117.90170840119954,52.31687884733997],[-117.90144140190185,52.31680426420917],[-117.90117675175706,52.31672702863279],[-117.90091690472838,52.31664392749999],[-117.90068633953493,52.31653297199255],[-117.90046026401767,52.3164178171817],[-117.90021644540079,52.31631834352844],[-117.89996887422588,52.31621916577186],[-117.89975244985067,52.31610186970524],[-117.89961428384763,52.315942100406794],[-117.89947590914187,52.31578344462234],[-117.89932178435413,52.31562988554586],[-117.89914752342503,52.31548507841993],[-117.89896491749906,52.315345318576036],[-117.89874422143285,52.31523110563224],[-117.89850844753929,52.315128237933884],[-117.89831181158536,52.314994272030845],[-117.8981130382886,52.31486184385245],[-117.89791833525419,52.3147274439697],[-117.89774011935127,52.31458404467489],[-117.8976348742583,52.31441642596953],[-117.89756608391366,52.31424176879208],[-117.89754062563026,52.31406282161621],[-117.8975094836155,52.313884604022746],[-117.89749346317544,52.313704630835744],[-117.89737110628359,52.313549351909664],[-117.89712443739046,52.313455311987546],[-117.89684817459775,52.3133907905172],[-117.89664674932631,52.313262686405274],[-117.89643964138749,52.31313531149178],[-117.89620472359917,52.31302798416218],[-117.89604462089446,52.31287682494853],[-117.89590209442642,52.31272069711179],[-117.8957218590214,52.312578280133394],[-117.89553948627065,52.31243740088646],[-117.89535100963279,52.31229948714262],[-117.89516243012827,52.31216212546967],[-117.89499612682481,52.31201447398502],[-117.89489121253156,52.31184518636933],[-117.89471364804548,52.311698441022216],[-117.8944572610865,52.31163643625309],[-117.8941608749967,52.31162973232745],[-117.89390352627507,52.3115434021581],[-117.89364926399463,52.311450508442285],[-117.89340303490289,52.3113542330692],[-117.89316244899291,52.311247637751435],[-117.89294263035451,52.31112894973194],[-117.892819312013,52.310969082830354],[-117.8927140948138,52.31080145918859],[-117.89250722014421,52.310672963318794],[-117.89231490185998,52.31053590192816],[-117.89207306553337,52.31043597751303],[-117.89179875825666,52.31037101958774],[-117.89150770960636,52.31035565559873],[-117.89121288108339,52.31036034617358],[-117.89092040269036,52.31036237545727],[-117.89063323720379,52.310326410508885],[-117.8903480674002,52.31027986037161],[-117.89006791108041,52.310226331317295],[-117.88979020984151,52.31016958867693],[-117.88951141878823,52.310108823771635],[-117.88922261718065,52.310091354828586],[-117.88892982472194,52.31009505407452],[-117.888634369448,52.31010307023844],[-117.8883414727075,52.31010732038608],[-117.8880470655188,52.310109775547915],[-117.88775391997167,52.31010553896094],[-117.88746245285502,52.31009240109052],[-117.88717210325771,52.31006353385359],[-117.88694242142951,52.30996784599179],[-117.8869144499029,52.30987109194774],[-117.88688943182495,52.30978808664436],[-117.88678178592579,52.3096236703143],[-117.8866257978626,52.30947052673208],[-117.88657561908094,52.30929547829334],[-117.8865855046411,52.30911562278463],[-117.88659356563491,52.30893563904978],[-117.88661815270162,52.30875624779253],[-117.8866663518132,52.30857908438934],[-117.88674342605609,52.30840564708681],[-117.88685797486643,52.30823934765008],[-117.8869074709988,52.30806510093131],[-117.88689911048992,52.30788396326942],[-117.88685503577457,52.30770595827349],[-117.88688316406251,52.30752738447614],[-117.88689831118427,52.30734902696254],[-117.88685809584649,52.307170164601295],[-117.8868788219984,52.30699163033254],[-117.88692347344438,52.30681365780004],[-117.88692605943754,52.3066332891335],[-117.88699218456327,52.30645907332192],[-117.88709974391675,52.30629059454616],[-117.88721751281689,52.30612678714271],[-117.88719575088606,52.3059480929475],[-117.88719265264213,52.305768453265046],[-117.88723365452228,52.30559021515178],[-117.88725651684592,52.30541014271276],[-117.8872384037739,52.305231704805614],[-117.88720548628677,52.30505335503037],[-117.8871931606606,52.304873635565286],[-117.88716410223451,52.30469442842493],[-117.88713129129721,52.304515517256206],[-117.88711145897959,52.304336398624365],[-117.88717424541281,52.30416025993737],[-117.88730685270704,52.304005954084964],[-117.88732778546718,52.3038263056084],[-117.88732286256356,52.30364653744269],[-117.88728254308461,52.30346823601002],[-117.88710195470608,52.303328031983966],[-117.8871096327405,52.303159864850386],[-117.88732647951231,52.30303913004541],[-117.88757378780153,52.302943095196255],[-117.8877991234492,52.30282634147715],[-117.88803986657082,52.302725899435856],[-117.88831195013299,52.30265530130271],[-117.88859530641135,52.30261314591165],[-117.88888832164234,52.30259819132784],[-117.88916827915628,52.302564254595055],[-117.88927936296459,52.302396590906184],[-117.88928204466178,52.3022156602646],[-117.88926606280836,52.30203568430461],[-117.889233349309,52.301856220968],[-117.88908660732592,52.3017031592625],[-117.88888792342611,52.3015707139034],[-117.8886916947164,52.30143505528429],[-117.8884241165117,52.30137394266608],[-117.88819142080081,52.30126506021263],[-117.88802528737794,52.30111684508744],[-117.88788903678382,52.300957188136124],[-117.88776639601882,52.30079397352226],[-117.88766701136996,52.3006250535282],[-117.8875792004629,52.300453570379034],[-117.88748367552984,52.30028379286341],[-117.88746201957973,52.300104545512184],[-117.88743734709058,52.30000012320482],[-117.8874179504791,52.29992653964874],[-117.88731257114983,52.29976002335278],[-117.88719014592128,52.29959569428626],[-117.8871363281502,52.299420388357035],[-117.88704862761823,52.299248343344544],[-117.88693767501441,52.299081994428114],[-117.88683057967708,52.29891479699801],[-117.88673709510992,52.29874403317019],[-117.88668166616077,52.298567485024094],[-117.88659568738234,52.2983961290539],[-117.8864771267806,52.29823094177122],[-117.88635053690803,52.2980691349862],[-117.88623187231066,52.29790450871024],[-117.88611321029707,52.297739873382135],[-117.88597087544927,52.29758317019841],[-117.88581086574425,52.29743199503736],[-117.88564068725556,52.29728574700342],[-117.88546461797976,52.297141341424336],[-117.88534574930625,52.29697782781121],[-117.88524070098771,52.29680963425959],[-117.88511808199071,52.29664641631509],[-117.88498175038411,52.29648731668856],[-117.88482967400603,52.29633331188337],[-117.88466153711414,52.29618607682683],[-117.88449736509678,52.2960374229909],[-117.88434336225178,52.29588385055817],[-117.88417512459397,52.29573716713377],[-117.88398686288886,52.295598671826944],[-117.88382665743961,52.29544860738057],[-117.88367662276315,52.29529361549486],[-117.88351031773577,52.29514650689623],[-117.88334422387972,52.294998284354946],[-117.88329221950879,52.29473508237656],[-117.88327626536008,52.294555104538304],[-117.8832168939786,52.29437996372615],[-117.88312728955952,52.29420834811294],[-117.88305483644231,52.294033984363],[-117.88298024584792,52.29386115836201],[-117.88285774793216,52.29369738526108],[-117.88271158050217,52.29354153474701],[-117.88253736007795,52.29339725256198],[-117.88237299590092,52.29324970908038],[-117.8822465401667,52.29308734479489],[-117.88210830236768,52.29292866546478],[-117.88196803173149,52.292770971362266],[-117.88182797218552,52.29261216338398],[-117.88168952737284,52.29245459718211],[-117.88154743603569,52.29229677423317],[-117.88142249399665,52.29213621219301],[-117.88137470618689,52.29195849874473],[-117.88130997903986,52.29178241935942],[-117.8812143920101,52.29161319682478],[-117.88108419207441,52.29145113578797],[-117.881053029993,52.29127346302087],[-117.88100503289444,52.29109687189597],[-117.8809115882451,52.29092610232596],[-117.88081428517009,52.29075619866792],[-117.88073069492988,52.29058217692249],[-117.8806829116818,52.29040446297251],[-117.88078940526908,52.29024155636652],[-117.88092560115106,52.29007792254094],[-117.88095258788316,52.28990546854514],[-117.88078308569729,52.28975587145675],[-117.8806510693219,52.28959368140395],[-117.88060093780355,52.289418627659444],[-117.88061663054302,52.28923747976721],[-117.88064122952761,52.289058095923046],[-117.88065316884772,52.28887725268163],[-117.88059125615851,52.28870588381161],[-117.88045742178437,52.28854355619857],[-117.88044470875343,52.28836606106974],[-117.88023689898631,52.28826285117834],[-117.87993731215626,52.28827393868983],[-117.87964361783344,52.28828317407956],[-117.8793516025813,52.28828350814827],[-117.87905772698056,52.28827411406047],[-117.87876525484688,52.28826707492237],[-117.87848294407068,52.28822576749445],[-117.87824866306939,52.28812577344199],[-117.87795341670497,52.28809427026134],[-117.87770753441859,52.28801659671825],[-117.87751020920976,52.28787744834626],[-117.87724900571328,52.28780264049081],[-117.87696112448909,52.28776149668035],[-117.87666809366077,52.2877476418027],[-117.87637615600067,52.28776715767604],[-117.8760841458905,52.28776747460425],[-117.87579016856756,52.28775863352355],[-117.87549675536586,52.287756593240125],[-117.87520523243457,52.287744538014806],[-117.87492843172889,52.287683856460966],[-117.87467105373258,52.28759859568095],[-117.87443001719551,52.28749529165235],[-117.87414939751801,52.28744506422464],[-117.87387473827694,52.28738284247728],[-117.87362697105532,52.28728584252391],[-117.87337215826788,52.287196804917585],[-117.87310528520864,52.28712271612982],[-117.87282838545464,52.28706259082397],[-117.87256396850636,52.28698528817574],[-117.87232273013942,52.28688309339022],[-117.87211978184503,52.286754263226186],[-117.8719277405851,52.28661660417759],[-117.8717437313974,52.28647555622791],[-117.87151719002104,52.286373834829575],[-117.87123750120855,52.28642635740878],[-117.87096138933417,52.28648928770498],[-117.87068331226706,52.286543051062495],[-117.87038945038222,52.286533634985915],[-117.87010239398698,52.286566451668335],[-117.86981968626579,52.28661537288349],[-117.86953122611166,52.28664583234324],[-117.86923575170844,52.28666451201919],[-117.86894553629632,52.28665534923354],[-117.86865742411199,52.2866057082255],[-117.8684317308441,52.28649952613549],[-117.86827480324632,52.28634233323439],[-117.8681793853001,52.286172537943585],[-117.86807411359345,52.28600600237369],[-117.86791624316335,52.28585381597498],[-117.86773621195809,52.28571135252526],[-117.86755190385523,52.2855719727763],[-117.86737176898026,52.28543007001711],[-117.86719784284354,52.28528465019799],[-117.86702167363113,52.285141328923366],[-117.86683544247974,52.28500237184081],[-117.86662000159205,52.284881108817586],[-117.8664046662841,52.284759293004285],[-117.8662081635651,52.28462582188601],[-117.86598876471761,52.284505966650364],[-117.86576059877275,52.28439340142822],[-117.86555361574948,52.28426652087551],[-117.86535069990688,52.28413767859542],[-117.86510363710991,52.284046909411344],[-117.86480997028235,52.28402676637105],[-117.86453247048152,52.28396996209119],[-117.86428004467531,52.28387825311379],[-117.8640408770622,52.28377505573443],[-117.86379732634079,52.28367550300104],[-117.86356713664523,52.28356391848804],[-117.86333267164622,52.28345540844456],[-117.86308866845835,52.283348491286404],[-117.86296354076816,52.283199164499635],[-117.86297888244637,52.28302025434634],[-117.86290126989825,52.282844377093234],[-117.86273262860566,52.28270044966562],[-117.86251419563972,52.28257558065337],[-117.86245173231663,52.28240754223318],[-117.8623415107759,52.282257577287886],[-117.86210554759897,52.28214727003054],[-117.86187281111852,52.2820394467856],[-117.86166402750189,52.28191243046052],[-117.86147193492381,52.28177531485081],[-117.86129001424642,52.281633264709505],[-117.86104735686504,52.281538850550625],[-117.86077391289294,52.28147046789629],[-117.86052824274685,52.28137245444599],[-117.86028737915035,52.28126856813089],[-117.86005047987862,52.28116326360754],[-117.85979860725108,52.28106875607051],[-117.85953137410564,52.28099686298877],[-117.85924038877177,52.28100172964881],[-117.85894544186804,52.28100800433067],[-117.85865340504144,52.28101842888331],[-117.85836105130912,52.28103052763563],[-117.85806828268723,52.28101551201119],[-117.85779775512708,52.280951281852396],[-117.85756696351318,52.28084302614368],[-117.85739512264611,52.28069660609867],[-117.85722135526521,52.28055060948857],[-117.85702672321226,52.2804172510288],[-117.85678555652835,52.280315032291014],[-117.85652825985896,52.280229721826274],[-117.85623868120116,52.28023693693149],[-117.85600679020797,52.280339624151374],[-117.85570511371328,52.28035218643971],[-117.8554622982246,52.28026846440064],[-117.85524923041797,52.28013492964712],[-117.85505481701324,52.280000454182876],[-117.85487678022324,52.27985754643548],[-117.85470891559092,52.279709704770084],[-117.85452884728493,52.279567781399564],[-117.85434054023294,52.279430349853904],[-117.8541522343779,52.27929291798741],[-117.85396617428847,52.27915338722111],[-117.85380602944316,52.279003831735544],[-117.8536621547593,52.278846405511416],[-117.85352010591845,52.27868909890351],[-117.85337816263372,52.2785312397329],[-117.85323793727089,52.27837407037491],[-117.85311163444067,52.2782116724249],[-117.85299315257325,52.278047000672046],[-117.85287123451579,52.27788096657166],[-117.85268584944684,52.27774768293203],[-117.8524411680055,52.27764463618805],[-117.85222387486425,52.277523778243754],[-117.85202755501885,52.27738972104932],[-117.85187352314499,52.2772372168982],[-117.85172163238735,52.27708316635315],[-117.85152917293094,52.276948252126076],[-117.851322582622,52.27681967940527],[-117.85111364272893,52.276693766108],[-117.85090063814326,52.27656981327152],[-117.85068742230206,52.27644698258468],[-117.8504702463206,52.276325559961656],[-117.85025286075843,52.2762052505634],[-117.85004392863496,52.27607932636732],[-117.8498392744376,52.27595032732545],[-117.84963858448018,52.27581991055997],[-117.84942601006459,52.27569372764192],[-117.84917923976289,52.275601810269634],[-117.8488970082149,52.27555084008204],[-117.8486115847609,52.27550697461704],[-117.84833724894632,52.27544357813647],[-117.84806761410655,52.27537487042107],[-117.84778815801138,52.27531901049706],[-117.84750764830639,52.27526871809359],[-117.84722264987066,52.275222621918985],[-117.84694182597131,52.275173994145845],[-117.84666247722852,52.27511757913377],[-117.84640544234682,52.27503113220886],[-117.84616208607788,52.274930989371505],[-117.845951242803,52.27480549010383],[-117.84578525121051,52.27465776376849],[-117.84563938636227,52.27450131183755],[-117.84546077226797,52.27436172100833],[-117.8452848242103,52.27421781310607],[-117.84510491600346,52.274075313207376],[-117.84495295584223,52.27392180577093],[-117.84480506268224,52.27376633747625],[-117.84467677117476,52.27360491451956],[-117.84036248720119,52.272586028926696]]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":41,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"7","REGION_NUMBER":7,"REGION_NAME":"Omineca","REGION_NUMBER_NAME":"7- Omineca","FEATURE_AREA_SQM":130343225016.561,"FEATURE_LENGTH_M":3539287.2428,"OBJECTID":5,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"MultiPolygon","coordinates":[[[[-122.59999999804931,55.34223720563551],[-122.59996943594632,55.34227112800909],[-122.59990550357475,55.342325442600675],[-122.59989017503788,55.3423429630522],[-122.59984166586817,55.342378638609496],[-122.59981091384569,55.34241479804551],[-122.59977788560788,55.342477802680655],[-122.59974591914948,55.342504959931986],[-122.5997152617859,55.342540000794735],[-122.59952370781487,55.34263007701746],[-122.59947595676371,55.34265680403301],[-122.59938197209692,55.34269236120949],[-122.59915975859005,55.3428174776498],[-122.59909637440003,55.34288862385469],[-122.59898423287399,55.34295171425648],[-122.59892191079271,55.34298701300299],[-122.5987942880668,55.343022774018756],[-122.59862012704899,55.3430942637741],[-122.59862058212639,55.343112214350626],[-122.59855825947602,55.343147512916296],[-122.59827250633002,55.343182326064934],[-122.59786125177851,55.34329780196843],[-122.59778350343298,55.3433517388995],[-122.59773499117122,55.343387413642326],[-122.59767120410231,55.34348657664829],[-122.59765511493333,55.34351304521806],[-122.5976225370437,55.34359399987168],[-122.59759056823773,55.34362115657459],[-122.5974635467489,55.343719716367374],[-122.59732149919668,55.34380889719965],[-122.59717717303145,55.343924923034585],[-122.59711423799149,55.34401401882556],[-122.59711231945508,55.34405993312042],[-122.59711231348945,55.34417653120346],[-122.59715747917801,55.34432014730813],[-122.59717417299554,55.34435647894103],[-122.59722070816031,55.34443734869148],[-122.59723512410824,55.34450052548271],[-122.59725115366365,55.34454468694616],[-122.5972963804706,55.34461767302318],[-122.59737382195794,55.344707233451444],[-122.59742066266166,55.34476120415641],[-122.59746795807273,55.34483312542817],[-122.59749937358161,55.34490573481035],[-122.5975620947781,55.344959017335704],[-122.59759260127674,55.34499572552703],[-122.5975583488735,55.34516632549589],[-122.59755925812586,55.34520222666496],[-122.59751165263917,55.34527380249771],[-122.5974466481468,55.34536396321564],[-122.59735159124435,55.345435366241745],[-122.59722441381271,55.34548907624859],[-122.59711387574376,55.34553314966066],[-122.59706611963331,55.34555987576317],[-122.59701866222672,55.34567630097401],[-122.59698501686253,55.345793102845526],[-122.59697004516977,55.345829692081686],[-122.59690543857216,55.34589183499831],[-122.59682571072067,55.345945717536246],[-122.59671501478991,55.34606153913945],[-122.59669882902344,55.34608912614197],[-122.59665091569371,55.34618760063013],[-122.59663376000847,55.346249916439895],[-122.59663350875898,55.34632278353222],[-122.59664801939633,55.34638484185578],[-122.5966944609175,55.3464668303689],[-122.59674175703725,55.34653875192922],[-122.5967867749297,55.34663751863655],[-122.59686335810615,55.3468537444555],[-122.59689410958626,55.34693418384632],[-122.59692369522257,55.347168187269666],[-122.59701783569827,55.34729407961982],[-122.59703179793802,55.3473393058635],[-122.59703179173795,55.34745590398879],[-122.59699875498755,55.347518907923735],[-122.59682304549848,55.34772489011733],[-122.59674498197444,55.34780572541002],[-122.59669646340485,55.34784139976684],[-122.59656988057615,55.347957909289555],[-122.59653638848629,55.34800296251196],[-122.59650318621857,55.348254313013335],[-122.59650196473044,55.34836190894377],[-122.59651759471377,55.348434088051775],[-122.59653140028227,55.34855106291859],[-122.59651545716325,55.34862238093487],[-122.59649784603548,55.34866674614739],[-122.59643511252271,55.34873006120736],[-122.59627649863825,55.34882775873044],[-122.59626000591571,55.34888224466815],[-122.59624406218276,55.348953562652405],[-122.59624153130993,55.34905327492723],[-122.59622634711435,55.349115644523415],[-122.59614706598535,55.34918747724466],[-122.5960198750495,55.34924118604708],[-122.59598754165202,55.34924927321005],[-122.59594129977788,55.34925810212176],[-122.59589308452576,55.34926687718812],[-122.59579938705303,55.349275532709996],[-122.59567204748018,55.349284391575715],[-122.59556210927158,55.349274665665746],[-122.59551465371653,55.34927449220271],[-122.59538852761386,55.349292352996535],[-122.59527697476486,55.34930164214769],[-122.59516749020773,55.34930986649124],[-122.59507333891698,55.34930057086707],[-122.59496188096259,55.34930874118923],[-122.5948359014642,55.3493714510092],[-122.59470794820777,55.349434106855604],[-122.59456694099694,55.349487437250794],[-122.59440883813429,55.34953245299404],[-122.59425113681876,55.349549451009544],[-122.59417201202405,55.34954953391334],[-122.59410831606486,55.349530978466404],[-122.59401523168812,55.34948583468932],[-122.59396656267316,55.34947665840619],[-122.59390408012669,55.34946710508764],[-122.59376247299562,55.349457634382155],[-122.59369837508528,55.34946709625223],[-122.5935245794273,55.34951056142552],[-122.59339783677166,55.34958221816754],[-122.59330321544483,55.3496715687539],[-122.59327047856543,55.349707672738994],[-122.59320560249807,55.349842680882006],[-122.5931899605597,55.349887099504784],[-122.59309412501509,55.34996744769527],[-122.59298347502548,55.35001263601932],[-122.59288901478439,55.3500302377268],[-122.59279410191071,55.350029888751386],[-122.5927474059056,55.35002076586978],[-122.59260579709364,55.35001129385219],[-122.59257488826769,55.35000260194615],[-122.59252773991419,55.349975528370166],[-122.59243237478593,55.349957228507584],[-122.592290005741,55.34995670449684],[-122.59218006651028,55.349946975608965],[-122.59214915782607,55.34993828359766],[-122.59211834422646,55.34992847303317],[-122.59210272157448,55.349856293362784],[-122.59210379047845,55.34982044602357],[-122.59208821671149,55.34979423448728],[-122.59205695102037,55.34976647329437],[-122.59203985613807,55.349758158476874],[-122.59194584824937,55.34979371008426],[-122.5918830572103,55.349811054730125],[-122.5918195054827,55.34983734770553],[-122.59180286272326,55.349846983470165],[-122.59170702449696,55.349927330595996],[-122.59169168947642,55.34994485005578],[-122.59161130729173,55.350169125400384],[-122.59154552090762,55.350268231455416],[-122.5915135426714,55.35029538662262],[-122.59143577223479,55.350349319642945],[-122.59140251060079,55.350438102549155],[-122.59140103715292,55.35050196740634],[-122.59141630194704,55.35055507800718],[-122.59143254121336,55.35057345981507],[-122.59146466292029,55.35059115426228],[-122.59149471614765,55.35060991334848],[-122.59152638592205,55.35060965716254],[-122.59158963038205,55.35061026331135],[-122.59185706446709,55.35062877835685],[-122.59203186627951,55.35062009818401],[-122.59231584853538,55.35063009499653],[-122.5923777162047,55.350693447069986],[-122.59240922215568,55.35076493923397],[-122.59239027789019,55.35091801834437],[-122.59235858809758,55.35103487292068],[-122.5922786798024,55.35116050116335],[-122.5921978664129,55.35125022812444],[-122.5920882114478,55.35133019834857],[-122.59208669024154,55.35134809507688],[-122.59203636166906,55.351591129668975],[-122.59202592628674,55.351690626330814],[-122.59200281982696,55.35186937805639],[-122.59195457962085,55.35199474978861],[-122.59192122268902,55.35208465139479],[-122.59189045608984,55.35212080891885],[-122.59179385192282,55.352210104495654],[-122.59173150913547,55.35224539968953],[-122.59163673442454,55.3522898994371],[-122.5915248636337,55.35232608422269],[-122.5915092188665,55.35237050264723],[-122.59149317020857,55.352442938597946],[-122.5914928614465,55.35246983758068],[-122.59150758001438,55.35250611610613],[-122.59156999642352,55.352586300669124],[-122.59161714719863,55.35261337461446],[-122.59169587432402,55.352641310858466],[-122.59169556569636,55.352668209842335],[-122.59167752197243,55.35285719011959],[-122.59166142509198,55.3528836579445],[-122.59162837543958,55.35294666049676],[-122.59159725096104,55.352963748785086],[-122.59150176178785,55.353063164948814],[-122.59142134674237,55.35312487389647],[-122.59134357069739,55.35317880687661],[-122.59129580164314,55.35320553079511],[-122.59126382089686,55.35323268590725],[-122.5912002633438,55.353258978577564],[-122.59116904333509,55.35327718530485],[-122.59115102014826,55.35334956731611],[-122.59121419799443,55.35342080370393],[-122.5912930694364,55.353493589813645],[-122.59137113235955,55.3535293560814],[-122.59141707134083,55.35354742784351],[-122.59148077243161,55.35356598467131],[-122.59152716352702,55.353602007016384],[-122.59160567892832,55.353655723761364],[-122.59179295816057,55.353872733892004],[-122.59185483000438,55.35393608624757],[-122.59187130958868,55.353998199070844],[-122.59185236174423,55.354151278155285],[-122.5918379295096,55.35420469888783],[-122.59180380975661,55.3543035488506],[-122.59178700012959,55.35438493322035],[-122.59180338470256,55.354448164601436],[-122.59181819936734,55.354483324552724],[-122.59184916002988,55.354537984810065],[-122.5919273692067,55.35461860034873],[-122.5919593992837,55.354637413222456],[-122.59202167607965,55.35467274796436],[-122.5921162915688,55.35469999651796],[-122.59214634817863,55.35471875545612],[-122.5921947148271,55.354754831445376],[-122.59225668374455,55.35481706506216],[-122.59225642449181,55.35488993221531],[-122.59222242906631,55.3551502301414],[-122.59217434992406,55.35520385339469],[-122.5921423681795,55.35523100873789],[-122.59203148926493,55.355301976692125],[-122.59190351271519,55.35536462970714],[-122.59179263300882,55.35543559745033],[-122.59158566247493,55.355543181106015],[-122.59144325117617,55.355659254361704],[-122.59136349657894,55.355713133471106],[-122.59129998308266,55.355785394365924],[-122.59128433671756,55.35582981277957],[-122.59126583770136,55.356000842435826],[-122.5912807954767,55.356080852079415],[-122.59131220859528,55.35615346310908],[-122.59132692835122,55.356189741671045],[-122.59137377432633,55.356243714713024],[-122.59140590054723,55.35626140918666],[-122.59145167705353,55.35635122955947],[-122.59150004504542,55.35638730582434],[-122.59153055468731,55.35642401554325],[-122.5916241044647,55.356487111836266],[-122.59163968052651,55.356513323450315],[-122.59170186485436,55.356549776905],[-122.59181317861575,55.35661335810588],[-122.59184333161203,55.35663099857505],[-122.59184392745085,55.35669379882818],[-122.59182573899476,55.356837929587115],[-122.59177810947206,55.3569095033271],[-122.59172926683796,55.35697207478786],[-122.59166651281262,55.35703538751154],[-122.59163376845143,55.357071491097614],[-122.59157065714113,55.35711573459791],[-122.59142809703951,55.357186958229086],[-122.5914115462453,55.357195475403906],[-122.59131604653965,55.357294891473245],[-122.59126948541468,55.3573306176603],[-122.59122049852884,55.35734833929597],[-122.59111023024546,55.357365508455324],[-122.59104809282505,55.35737502287742],[-122.59085899335014,55.3573653736931],[-122.59062242887347,55.35735554890046],[-122.59054217112184,55.35734550868668],[-122.59043287801717,55.35732794843693],[-122.59030698714346,55.35727293694555],[-122.59026028327342,55.357263813126536],[-122.59021236681524,55.35724568701347],[-122.59016490185468,55.357245511517554],[-122.58988163451417,55.357226561450105],[-122.58980249456924,55.35722664158572],[-122.58972304463848,55.35725362066407],[-122.58969115475695,55.3572796568415],[-122.58959534051542,55.35740597058969],[-122.58938827977505,55.35758418070948],[-122.58929367626962,55.35771949651584],[-122.58924527982357,55.357800017650945],[-122.58922796694941,55.35781748289042],[-122.58921329402673,55.35782717225223],[-122.58915017885829,55.357871414533335],[-122.58905341421936,55.35791585841427],[-122.58891160824312,55.35797813082766],[-122.58886428273537,55.35802280447251],[-122.58884822704064,55.35809524012973],[-122.58884715500719,55.358131087474455],[-122.58886232414164,55.358185316977234],[-122.58890885859192,55.35826618994986],[-122.58894067482697,55.35831078405578],[-122.58898523578357,55.358391603063104],[-122.58901664655666,55.3584642146891],[-122.58903150558702,55.35854534316856],[-122.58906377315672,55.35860788788691],[-122.58906270130217,55.35864373523564],[-122.58909366142112,55.358698396201795],[-122.58909335100203,55.3587252951977],[-122.5891090668694,55.35879635677275],[-122.5891245470088,55.358823687251395],[-122.58918673263237,55.35886014196778],[-122.5892655654961,55.35888696121913],[-122.58935897658432,55.35890520958677],[-122.58940765598376,55.35891438767521],[-122.58950151837713,55.35895058657817],[-122.5895327894576,55.35897834843957],[-122.589547913922,55.35898660968042],[-122.58962617315412,55.35911319488514],[-122.58970167024833,55.359365272755],[-122.58977912324899,55.35945483804081],[-122.58980977502509,55.35953639783469],[-122.58980929650971,55.359635045477596],[-122.58976166006843,55.35970661847157],[-122.58971433346821,55.35975129244731],[-122.5896488367394,55.359823498609884],[-122.58963349703704,55.359841017836445],[-122.58966424397543,55.35992145912492],[-122.58972688308022,55.359975864220054],[-122.59002455337517,55.36017459066961],[-122.5900395832384,55.36018397039708],[-122.59018151094227,55.3602831446253],[-122.59030648223558,55.360418853274226],[-122.5903352313975,55.36061583878403],[-122.59066308757393,55.36099477105727],[-122.59069369509137,55.36103036245437],[-122.59077243809239,55.36105829930713],[-122.59081914649667,55.36106742293859],[-122.59089950689564,55.361076344432895],[-122.59100947631713,55.3610860744603],[-122.5910403933438,55.3610947667647],[-122.59108679275049,55.36113078930428],[-122.5911964533389,55.36116741817549],[-122.59121355290844,55.361175733119225],[-122.59126040455365,55.36122970623466],[-122.59132304786603,55.36128411053755],[-122.59133807844859,55.36129349011005],[-122.5913702086979,55.36131118460295],[-122.59147865702094,55.3613388109576],[-122.59152733985854,55.36134798822257],[-122.59171645826821,55.36135763639952],[-122.59177850659144,55.36134924018714],[-122.59187344623845,55.36134958993478],[-122.59200037262781,55.36132278429264],[-122.59204860322185,55.361314010717095],[-122.59222071684714,55.36131422475436],[-122.59239404369598,55.361323440814374],[-122.59252101898153,55.361342602838405],[-122.5925983375942,55.36138731674826],[-122.59264519134973,55.361441289345656],[-122.5926779878744,55.36145115367203],[-122.59273982322699,55.36146853744811],[-122.59280308482546,55.36146914298331],[-122.59286710704714,55.36146080010722],[-122.59293077157847,55.3614333880167],[-122.59296123653606,55.361424129211905],[-122.59299358035692,55.36141604282117],[-122.5930885201726,55.361416391645484],[-122.59323016935991,55.36142586312789],[-122.59337181861412,55.36143533444984],[-122.5934344147374,55.36144376949977],[-122.59359124088664,55.36150746953919],[-122.59368511312256,55.36154366530951],[-122.59371724460753,55.36156135919941],[-122.59377943864865,55.361597811640976],[-122.59381071475335,55.3616255724399],[-122.59392121937638,55.361768730301925],[-122.59398234638076,55.36184103004675],[-122.59402950966219,55.36186810311],[-122.59412459676543,55.36191330079604],[-122.5942021302425,55.36193223324631],[-122.59429569706776,55.36199532757825],[-122.59440672316933,55.36208580552693],[-122.5945002906746,55.36214889970671],[-122.59455299651093,55.36218060831896],[-122.59460974544689,55.3622113060574],[-122.5946672547041,55.362233055379164],[-122.5949086827127,55.36230242483664],[-122.5950191101515,55.3623301019648],[-122.59508161299946,55.3623396547395],[-122.59520868779995,55.362357695484754],[-122.59541329765729,55.362394667800686],[-122.59552336679333,55.362403275306605],[-122.59571249113907,55.36241291743556],[-122.5958074333377,55.36241326419357],[-122.59585414446477,55.36242238594398],[-122.59594756678267,55.36244062939235],[-122.59599625197978,55.36244980491697],[-122.59602631621087,55.36246856293807],[-122.59604632044618,55.362489288923065],[-122.59539159385274,55.36248713055361],[-122.59224101578636,55.36247179839962],[-122.59222101038449,55.36466196604719],[-122.59099318676465,55.36660502222968],[-122.59279021725779,55.3704188767168],[-122.59931932054776,55.370436548922434],[-122.59947734989292,55.37057987403457],[-122.5999170579317,55.37073871750139],[-122.5999998701613,55.37076563754496],[-122.60024257402961,55.370843998959785],[-122.60029522254598,55.37096987877686],[-122.60029302496005,55.37113574736654],[-122.60030851748381,55.37116307649823],[-122.60032355723675,55.37128905344438],[-122.60035281956777,55.371503987525536],[-122.60054053232089,55.37169408592288],[-122.60061833612811,55.371756745551195],[-122.60072849082326,55.37181131672866],[-122.60078187845286,55.37183519286569],[-122.6007469659727,55.371873482260916],[-122.60072841855187,55.37190549033451],[-122.60057859664445,55.37220187655119],[-122.60056804180184,55.37223298106438],[-122.60051791000755,55.37249732595269],[-122.60043736413026,55.372816899730005],[-122.60043622540891,55.372830322385816],[-122.60040029333267,55.373090569321924],[-122.60040036996676,55.37311299417214],[-122.60042984574962,55.373418746240496],[-122.60043387150742,55.37344127860481],[-122.60050870436305,55.37370229880125],[-122.60051715379505,55.37371934590025],[-122.60104177377342,55.37479085995952],[-122.60162751389319,55.37602884173037],[-122.60207371318126,55.377045522606714],[-122.60262045937851,55.378067178994115],[-122.60343719664775,55.379803612819806],[-122.60429045509274,55.38146031088537],[-122.60512730291816,55.383007805308786],[-122.60580505015041,55.3844478248739],[-122.60628576405948,55.38533985704143],[-122.60667029806389,55.386199003436545],[-122.60707135095083,55.3871438032457],[-122.60774250430731,55.38835940320468],[-122.60786257446499,55.38860146544644],[-122.6080484792444,55.389024696706976],[-122.60806041218056,55.38904744341359],[-122.60837075479934,55.38949759668902],[-122.60854606121255,55.38971873508159],[-122.60870039803946,55.3899303348434],[-122.60870923318821,55.38994290716919],[-122.60874890340673,55.38998882946386],[-122.60877240520685,55.390015253546416],[-122.60878866841728,55.39003363318283],[-122.60879938429804,55.3900473776905],[-122.60882524035041,55.39006938113441],[-122.60885259831844,55.39009703101366],[-122.60897181282458,55.39020901714471],[-122.60920093496847,55.39042600959771],[-122.60958571730235,55.390862483892086],[-122.60960198122945,55.39088086342465],[-122.61000901343779,55.3912417029736],[-122.61025198776007,55.39143552530665],[-122.61027417858647,55.39145406555766],[-122.61058808286354,55.39165205399579],[-122.61085620000374,55.39180619638289],[-122.6111089765921,55.391977860128456],[-122.61137181023565,55.39217109761636],[-122.61140745189539,55.3921944870167],[-122.61154391492599,55.39226657744386],[-122.61158557788966,55.39228900897131],[-122.61161021844185,55.392302009738835],[-122.61163673988102,55.392316182646994],[-122.61166730696281,55.39232934414221],[-122.61170934856123,55.392347301365284],[-122.6117473445719,55.392366269984336],[-122.61198613363635,55.392492707129485],[-122.6123367491187,55.3926782327392],[-122.61237324325913,55.392691554768156],[-122.612791135788,55.39285423837453],[-122.61322294429816,55.393039720367454],[-122.61324984513078,55.39304941866634],[-122.61363831141598,55.39318551553305],[-122.61399912262806,55.39332086160503],[-122.61421996550455,55.393425506286576],[-122.61424103472419,55.39343392518789],[-122.6142755546282,55.393447193124324],[-122.61429060264189,55.393456569971235],[-122.61434571907587,55.39348384961784],[-122.61477031091613,55.39363773869129],[-122.61513771847461,55.39376541209682],[-122.6151587880657,55.39377383084391],[-122.61522058849934,55.39379232212846],[-122.61528643467197,55.39380980185792],[-122.61531173905578,55.39381497191694],[-122.6153679909959,55.39382882828853],[-122.61558161826476,55.39387833957318],[-122.61591611637063,55.39397372744552],[-122.61594339652497,55.39397895088889],[-122.61613586086457,55.39402116118175],[-122.61647196791955,55.39409753188778],[-122.61695463125295,55.39422047311225],[-122.61727059924768,55.39432432446336],[-122.61728800179279,55.39432928015971],[-122.61800574444351,55.39452921287387],[-122.61858151729604,55.39476902293961],[-122.61922701100052,55.3950039900414],[-122.61973261854574,55.395230684529295],[-122.62012676508657,55.3953938208167],[-122.62042909664945,55.395542139879566],[-122.62072718329046,55.395740794006265],[-122.62108312798517,55.3959578289564],[-122.62110956082165,55.395973118434966],[-122.62163464780228,55.396274325700475],[-122.62195032739102,55.39652278182138],[-122.62220053964863,55.396725743319934],[-122.62254680050762,55.39698735686934],[-122.62425351574389,55.39832949904323],[-122.6279889891824,55.39676998435903],[-122.63019205685073,55.39619262584839],[-122.63461314275584,55.396177253581286],[-122.6394302327854,55.39672844842455],[-122.6408246540399,55.39559102136814],[-122.64032029393648,55.395182829055514],[-122.63868046502597,55.39188301350071],[-122.64083376445944,55.386227755242274],[-122.64294580309615,55.37784483930885],[-122.64556364365119,55.368704190271515],[-122.64912263734186,55.35472770906412],[-122.6566480476412,55.34494730359009],[-122.65952072029329,55.34236949654849],[-122.66919511290196,55.336744678458984],[-122.67889146654592,55.334832768552246],[-122.6823058196613,55.335049174938526],[-122.68763509505318,55.335827550673194],[-122.69356667688137,55.33716873632243],[-122.69899673574804,55.33903447075501],[-122.6997094456599,55.339600401711614],[-122.70305417376606,55.342208963515105],[-122.70657160686078,55.34368299133624],[-122.70987892920826,55.34367158467361],[-122.71579103064074,55.34198880622724],[-122.72058579351366,55.34100283622475],[-122.7232834276955,55.34070600489808],[-122.72890093272218,55.34068300012921],[-122.73343287053882,55.341752362956356],[-122.74008377530991,55.34497549891532],[-122.74563574396768,55.34654635563302],[-122.74832521208752,55.34596178300831],[-122.75204390160597,55.345951004898126],[-122.75187751225707,55.34937251808561],[-122.75100420377518,55.350973028093435],[-122.7521401625747,55.3529666252887],[-122.75419033386478,55.35637405243451],[-122.75392687940104,55.35923701794519],[-122.75257316238752,55.3626635302409],[-122.75499715064548,55.36419733901284],[-122.75700784162677,55.36458140489391],[-122.76063616834871,55.36610153172678],[-122.76417153956172,55.36740390235817],[-122.76717473618413,55.36784938773468],[-122.77050054989242,55.36782783504698],[-122.7762293974518,55.36843324731353],[-122.77845068853327,55.37014069737317],[-122.78141169680104,55.373086823683956],[-122.7839264719178,55.37410222291444],[-122.78795299117073,55.37443005150171],[-122.7936612898141,55.37411937315061],[-122.79761227654375,55.37598743517092],[-122.79995024501203,55.378827421474995],[-122.80512145002321,55.381883343566244],[-122.8120839125084,55.38452739720534],[-122.82173765497998,55.38499758503947],[-122.82730852520305,55.382637186978506],[-122.83060306960016,55.38062236710484],[-122.83477902030211,55.37786755177824],[-122.83916618241211,55.37664246814806],[-122.84558268645131,55.37597966725805],[-122.85262628957793,55.37680303884493],[-122.85124514865933,55.378463110061084],[-122.84919503406185,55.38178324718918],[-122.84845785359067,55.38612293377263],[-122.84639795721922,55.389559376938024],[-122.84626240739449,55.393896313989636],[-122.84879657135211,55.39530540258063],[-122.85091788722963,55.39592384528392],[-122.85704786817415,55.396526563059524],[-122.86358944365217,55.39733659428982],[-122.8714483658318,55.39912982503197],[-122.87650056478623,55.4003592116713],[-122.88106235475348,55.4034144860589],[-122.87981777596904,55.40678210679162],[-122.87482900368026,55.40858549049214],[-122.86793801049006,55.41181172198511],[-122.86897067296069,55.41339795057226],[-122.87220565093246,55.41417840297707],[-122.87955539065989,55.415231926325404],[-122.88680195468082,55.41598651216825],[-122.89472618535542,55.415771086844366],[-122.90134983634434,55.41454548586308],[-122.9067532302044,55.413316258668786],[-122.91424952560713,55.411448002103086],[-122.92405396302988,55.40922363854749],[-122.93199811862414,55.40975962761196],[-122.93853341198705,55.409659808502134],[-122.94462933747926,55.408257639662885],[-122.95442099454027,55.40512496778402],[-122.96182273630643,55.40319784763949],[-122.9719165850451,55.400851345716696],[-122.97940135785711,55.39801060822429],[-122.98793071307972,55.39790263871768],[-122.99042947601973,55.402168315830394],[-122.98900436030146,55.40679678367412],[-122.98666033755985,55.41057814157719],[-122.98559783948512,55.412695622930976],[-122.98168729477985,55.41790970940558],[-122.98259495699855,55.42394845081194],[-122.98755405192108,55.42523371763382],[-122.99389121906401,55.4261125356259],[-122.99916306853585,55.42767385148371],[-123.00071404975263,55.430454922047105],[-123.00218907727701,55.434041167563976],[-123.00055418523908,55.43787566788734],[-122.99822123195686,55.44171134268918],[-122.99753553811516,55.443030957673386],[-122.99619275574945,55.44634338629312],[-122.99666958820106,55.44970846194327],[-122.99775912541426,55.4542091019752],[-122.99625427788914,55.45946348288535],[-122.99188385752439,55.46252385715433],[-122.9830615093581,55.46423046263731],[-122.9770161818151,55.46403080853991],[-122.97095725936293,55.462754482498134],[-122.96106029397488,55.46042524308743],[-122.95884175606645,55.45997680204384],[-122.94515151884177,55.45976894058196],[-122.93634081561297,55.4613021939444],[-122.9313625963861,55.464982373435014],[-122.93285913458311,55.46987932603675],[-122.93562749328451,55.47288839023706],[-122.94030601732965,55.47582750338037],[-122.94598188360442,55.47756224391674],[-122.95385517514586,55.47900047042953],[-122.95955242490317,55.48192772522166],[-122.95958662515024,55.483982037416375],[-122.959009701765,55.48593184097312],[-122.95821764458422,55.491750243788005],[-122.96080136990965,55.49556124134818],[-122.96296296124021,55.49845625891343],[-122.9637412347879,55.50221443419486],[-122.95894700664603,55.50407094418946],[-122.9534248679934,55.505470191375466],[-122.94854609895786,55.50800578241337],[-122.94598266675752,55.51161991783008],[-122.94293066135457,55.515177261330926],[-122.9407968998519,55.5198061379668],[-122.94128281927686,55.52424785575454],[-122.94205151497445,55.52852609058526],[-122.94540542031899,55.535575458117236],[-122.94647153749807,55.53888346383701],[-122.94742454931436,55.5407629008903],[-122.9497720209528,55.54290940161837],[-122.95415304459719,55.54528459929813],[-122.9543055601703,55.548077131119626],[-122.95040381000497,55.55003584573558],[-122.94692196498029,55.552112277537994],[-122.94486198162394,55.555550426204405],[-122.94168474622961,55.55841431281577],[-122.9352699206976,55.560562406993526],[-122.92996222078978,55.56298837260658],[-122.92909077177768,55.565217880307685],[-122.93107233905232,55.56840496668585],[-122.93455503792613,55.57152108053841],[-122.93994709673564,55.57422631278706],[-122.94206954004564,55.574556030052726],[-122.94774900520898,55.576012474878084],[-122.9534247817832,55.577522367757396],[-122.95578173693136,55.579785515595454],[-122.95864788813313,55.582051983355804],[-122.96179237413783,55.58254958690793],[-122.96783448542381,55.58177203649841],[-122.97133605009964,55.58050250593973],[-122.97332778086191,55.57962691662653],[-122.97759379614442,55.575613748056305],[-122.98276607406223,55.57159534676726],[-122.98746597297752,55.56939472011826],[-122.99143834031607,55.5662887460861],[-122.99823180360522,55.56288253027874],[-123.00697132788277,55.56128891886497],[-123.01535933665429,55.561408016362535],[-123.02080865763901,55.56212036912072],[-123.02404656691657,55.562206169859174],[-123.02543006829234,55.560714595319446],[-123.02631055055753,55.55956976476309],[-123.02758609385606,55.558030778019514],[-123.03170573482123,55.55737508834592],[-123.03688536020196,55.558717015844834],[-123.03965536586159,55.561033082660266],[-123.04151478443441,55.56340831829414],[-123.04233349334079,55.56437810370363],[-123.04448195910683,55.56521780487409],[-123.04823733942274,55.566911254874974],[-123.05089148533956,55.56865941427465],[-123.054679290373,55.57142943585719],[-123.0562130284086,55.57198549190772],[-123.05956581413324,55.573113195957156],[-123.06324407436917,55.57565620239879],[-123.06603479470554,55.57837561915467],[-123.06931442499005,55.58137538266616],[-123.07371018562701,55.583916867112514],[-123.07648801720391,55.586178423351534],[-123.07531099819523,55.588123688690516],[-123.07129560465562,55.58906127056402],[-123.06668907275782,55.5904601594596],[-123.06440398394007,55.592531885532736],[-123.06546319202431,55.59457416650442],[-123.06793009102775,55.59673897686703],[-123.07080610832296,55.59962164945654],[-123.07257931336324,55.60235301639518],[-123.07479850102112,55.606385952043844],[-123.07555646857686,55.609290892440015],[-123.07570014025475,55.61145522381504],[-123.07475457600206,55.61414117308287],[-123.07122889542634,55.61964534696923],[-123.07000936434301,55.624100318532356],[-123.0728863986586,55.62613108780618],[-123.07894825655282,55.626442488907415],[-123.08662984575099,55.62638764876163],[-123.09440881578246,55.62696225898986],[-123.0991904413427,55.62801420789993],[-123.10455494933167,55.62872073256082],[-123.11073006664034,55.629015262805424],[-123.11667804648765,55.6289276816165],[-123.12547470460575,55.62931745956678],[-123.13159354577871,55.63150160381208],[-123.13496408262608,55.63358696351438],[-123.13676608299102,55.637107014315454],[-123.13814264555118,55.63990003305231],[-123.13906621720335,55.64035144304454],[-123.13966813457078,55.640401003861555],[-123.14583711390182,55.64058602698916],[-123.14860808146501,55.64216422554665],[-123.150089214979,55.64529122277839],[-123.14915818107015,55.648946358172225],[-123.1460062762292,55.65245248500399],[-123.14072971831625,55.65579370291212],[-123.13431625811765,55.65875016515121],[-123.12971782619314,55.66084212738718],[-123.12768004970764,55.66433741250013],[-123.12774468650865,55.66763859127001],[-123.12841239968739,55.67031690909279],[-123.12778604899118,55.67369198594566],[-123.12684227927024,55.676602520885886],[-123.12690258207992,55.679742212030675],[-123.12743372796317,55.68100069580096],[-123.12999976228018,55.682574592944675],[-123.13227311601308,55.68467079492908],[-123.13019846275999,55.68645269841967],[-123.12718426552867,55.68732543758685],[-123.12277392890769,55.68941256896609],[-123.12113720129467,55.69306941598925],[-123.12168550731859,55.69541328764146],[-123.12373484037576,55.69641955499397],[-123.12759992691196,55.69725202394335],[-123.13035840967339,55.698606119661015],[-123.13234485978276,55.70115306599935],[-123.13371191372131,55.70388314583208],[-123.13680492437443,55.706141362480636],[-123.13949025169212,55.70852473661515],[-123.14056299413708,55.71114044605684],[-123.14021877343932,55.71370604897851],[-123.13934842569405,55.71559617632755],[-123.13640843847027,55.71984233145519],[-123.13337197115244,55.724310408224824],[-123.13452916678253,55.72664116594805],[-123.13667544488911,55.727658357318965],[-123.1389226481656,55.728606068282616],[-123.14252872664633,55.73086678830544],[-123.14450562802675,55.73313532556574],[-123.14686326943323,55.73477581747269],[-123.15117092879447,55.73662175382606],[-123.15352227108583,55.73768810693829],[-123.1624839964521,55.73990765988713],[-123.1670494845633,55.74039591723626],[-123.17319312748971,55.73868674993941],[-123.17894668239724,55.737739681490226],[-123.18338995360827,55.73724726969653],[-123.18804876271273,55.736867109963114],[-123.1910261999472,55.73428841447507],[-123.1955946111678,55.73088430234233],[-123.19672360369553,55.727331843597426],[-123.19359511509222,55.72324527075048],[-123.19097365967131,55.71944787392395],[-123.19396152482231,55.71760462637245],[-123.20104173418274,55.71703586403216],[-123.2093154412117,55.716062772928886],[-123.22299572770163,55.71241099923671],[-123.23482347882269,55.707820527857365],[-123.24245582172598,55.70546839526348],[-123.25305736137187,55.69985422788448],[-123.2647875635443,55.69958954447233],[-123.27017736210502,55.7010334624816],[-123.2797605968773,55.70346438367885],[-123.2887259740731,55.70584538895303],[-123.29840262720066,55.707873394691575],[-123.31825826386952,55.712332304063175],[-123.32811635882798,55.713841817953394],[-123.3308226941693,55.71656199765307],[-123.331709132169,55.71928841072023],[-123.33546378894827,55.72662110251065],[-123.3394507076151,55.72812191901599],[-123.34235755008548,55.73049639560327],[-123.34142395499917,55.733471234620644],[-123.338066847356,55.73686112709229],[-123.33390929690253,55.74026988055694],[-123.32768394421245,55.7459119995243],[-123.32531709038591,55.74856050385054],[-123.32380041095581,55.75233877781489],[-123.32102870612991,55.7545841310439],[-123.31524068728643,55.75771562889232],[-123.31277231489744,55.760424537933275],[-123.31214041998909,55.76362085235097],[-123.3124737213727,55.76436315622666],[-123.31510551735948,55.76822073266875],[-123.31551020151345,55.77169017093103],[-123.3126322134043,55.773825536891906],[-123.30832241242666,55.77632480595311],[-123.30817891584326,55.77820458764452],[-123.31039735822885,55.78132720696451],[-123.31217091073921,55.78370510192393],[-123.31481992796748,55.78756304331836],[-123.31508586863731,55.790249509641775],[-123.31621149385322,55.79394051015507],[-123.31881035030302,55.7999760069685],[-123.32120666985199,55.80262699414764],[-123.32563042441801,55.80487259731184],[-123.33022226550027,55.805579458848044],[-123.33615004261392,55.80712126978842],[-123.33947067491566,55.80961206103339],[-123.34167241475589,55.81233025226167],[-123.34141431190295,55.81427040697544],[-123.33941866386547,55.81897131959582],[-123.3376746347018,55.82206366075343],[-123.33834183737126,55.824283329357215],[-123.34193788861337,55.8257935906603],[-123.34564848703427,55.827987556688],[-123.35010166307866,55.83057354966624],[-123.35405793405441,55.83053991372841],[-123.357279715802,55.82999767265637],[-123.36527298940577,55.82895424507151],[-123.36846496301332,55.83030287774661],[-123.37498772331357,55.831155832624646],[-123.3796083641266,55.832937305865904],[-123.3801958014994,55.835675064400135],[-123.37844001678009,55.838256640558306],[-123.37580914077003,55.84244283090659],[-123.3749726370716,55.84467586385176],[-123.37450630058498,55.84639656997338],[-123.37275794395326,55.849094801890544],[-123.36850640431204,55.849929837017434],[-123.36462600274992,55.852646329802944],[-123.36387637897879,55.854764568510554],[-123.36393186486389,55.85681890341301],[-123.36471531081895,55.85948912700087],[-123.3649617237693,55.86132329617121],[-123.36740709039924,55.861410099828504],[-123.37726571664041,55.86131911619345],[-123.38579638498793,55.8609578397191],[-123.38755291461,55.86225831620283],[-123.39173752016455,55.86610135008689],[-123.39636170849356,55.86765805879866],[-123.39901343895227,55.86826850192336],[-123.4058344985668,55.86882999941683],[-123.41452475440568,55.870460402800184],[-123.42194345148732,55.87341808953761],[-123.42720462613056,55.876053520590915],[-123.42840189142751,55.87883927213502],[-123.4322230777366,55.88417073448772],[-123.43571515934781,55.88544295304884],[-123.44026129693442,55.884548803841724],[-123.44694091790092,55.88362584495862],[-123.45263921317704,55.88374967827678],[-123.45836592759888,55.884429684863484],[-123.46045143965456,55.883153642077886],[-123.46541352693589,55.88225799046752],[-123.46936116246759,55.88193357716261],[-123.47441950977915,55.88103054008264],[-123.47603160845551,55.88038134543429],[-123.47831807729727,55.87870559311092],[-123.4810050631477,55.877028815569744],[-123.48486162888236,55.87636143569689],[-123.48740544519264,55.87668095223833],[-123.49078296191183,55.8775010848422],[-123.49493275062365,55.87700955729906],[-123.49728801577712,55.8772713468402],[-123.49763470581792,55.87863196371962],[-123.49859680162922,55.88039922278275],[-123.4993259443814,55.880781215190694],[-123.50300820307385,55.88160703425256],[-123.50526569680066,55.88215362767091],[-123.5078279712263,55.882697218857096],[-123.51064726282785,55.88170379363562],[-123.51233157808196,55.880661098826195],[-123.51482712871304,55.8792039934667],[-123.51755136439708,55.87844165133483],[-123.5207967142066,55.87805703981353],[-123.52156795898142,55.87674530729535],[-123.51874690014702,55.87419767950059],[-123.51693359660864,55.87193872827416],[-123.51850583177409,55.86986277036535],[-123.52261696963727,55.86817723531224],[-123.52741995938605,55.86618235930199],[-123.53443276146517,55.865996540296],[-123.54126744613714,55.86661372618286],[-123.55116258829288,55.86748706977303],[-123.56147038874082,55.86869032799143],[-123.56985908217945,55.87036687544282],[-123.57553922515912,55.87311157830509],[-123.57767584169333,55.87616473005742],[-123.57859349540557,55.87923933989477],[-123.57966853694985,55.881052898805784],[-123.58192322678059,55.88166080563927],[-123.5846009279184,55.8824291516429],[-123.58787779686243,55.8833612677147],[-123.5931211517263,55.884904474618786],[-123.59553815010102,55.88443046950963],[-123.59724445466051,55.88378155663214],[-123.60099090671135,55.88305478153755],[-123.60456914041222,55.88404596039857],[-123.60574421091535,55.88528741988962],[-123.60956335910541,55.887071914639705],[-123.61569404955642,55.88774340855127],[-123.62157698451517,55.890140145880615],[-123.62550704220573,55.89249996920433],[-123.630038357704,55.893929625948644],[-123.63305824921406,55.89275797661456],[-123.63539350010632,55.89284645778828],[-123.63767900013723,55.894305568368075],[-123.64081876677524,55.89649773952445],[-123.6449395162069,55.89810745053285],[-123.64779674502415,55.898590889893065],[-123.64924252042296,55.899083914722176],[-123.65260193057358,55.90218528890904],[-123.65555537351992,55.90483978013262],[-123.6588887864821,55.90731296674595],[-123.66068109393625,55.9090045611766],[-123.66210180196524,55.91155883864057],[-123.66461837869738,55.91375680105784],[-123.66809004273452,55.9141793739124],[-123.67461865918973,55.91444287912127],[-123.6808994511364,55.916198594238],[-123.68205542804736,55.92001178438037],[-123.68072572305059,55.9229905820859],[-123.67940527787738,55.92580817857803],[-123.6801244104564,55.9285914227305],[-123.68104151823127,55.93155758052802],[-123.67886038894248,55.93591031028071],[-123.67732359496956,55.938849448025856],[-123.67436886337632,55.941332250404095],[-123.67039714619067,55.94445072302776],[-123.664588325807,55.946862885805615],[-123.65730642672294,55.948655898276755],[-123.64912741201435,55.95040497249721],[-123.6470262398172,55.951450721910376],[-123.63967530874673,55.954102100489315],[-123.63478054955989,55.957014088937264],[-123.63027581795265,55.962246148785475],[-123.62944015642998,55.96734054282145],[-123.62944276394481,55.967564715383936],[-123.62235619933139,55.96895606056144],[-123.61262450514553,55.970252416171135],[-123.60746109203808,55.97116813822531],[-123.60513139906799,55.9717068855522],[-123.59869584413,55.97451675580988],[-123.59840947691353,55.97816909746555],[-123.59903134573075,55.98141728023997],[-123.59976810835546,55.98489176396863],[-123.59815625981695,55.9886714363834],[-123.59311776284363,55.99329161519988],[-123.59215712550841,55.995075388951484],[-123.58662051980997,55.9973011447235],[-123.58589701045116,55.99993212283362],[-123.58158591727376,56.0033913020438],[-123.58019077568177,56.00700460591155],[-123.57798508479705,56.0104589933211],[-123.57336466324307,56.015256837259095],[-123.56905606662963,56.019934998783334],[-123.56373151496459,56.024638376764436],[-123.56275285205365,56.02824162005109],[-123.56139604467465,56.03015210090539],[-123.55940244221316,56.03143171797115],[-123.55519406563866,56.03599487531039],[-123.5508523598695,56.04009810731203],[-123.54679711225175,56.04346260741886],[-123.54210610529802,56.04642917639804],[-123.53896748220052,56.049784295333446],[-123.53711192337889,56.051918010758946],[-123.53343021855665,56.05441971854067],[-123.5261393651187,56.055936614819274],[-123.51705357332013,56.05603732326322],[-123.5093975962836,56.05618334999235],[-123.50949640480393,56.058695694955674],[-123.51095683152352,56.0623375068172],[-123.51554972945819,56.065081241456745],[-123.5158572605884,56.06531139656433],[-123.52031333786415,56.066913626957955],[-123.52084242248674,56.07027713103474],[-123.51635797631747,56.07039579495824],[-123.51249030712971,56.07094776476708],[-123.51020468273722,56.07526038726224],[-123.51034928520708,56.07628532033242],[-123.50823737309197,56.0801351052019],[-123.50584147442616,56.08159438444323],[-123.50104471165673,56.081536056391926],[-123.48546648276623,56.080287482296555],[-123.47927461801166,56.078873768120765],[-123.47689068259822,56.07786711965309],[-123.47302862182293,56.078310435715046],[-123.47190532106211,56.08100479504479],[-123.47255343201412,56.08471166894017],[-123.4712058020843,56.08713259310946],[-123.47274133189788,56.09031915643729],[-123.47399366184806,56.09063991706757],[-123.4764831932769,56.09478680799388],[-123.47486375184343,56.10069017475632],[-123.4734760808143,56.104984255557426],[-123.47318749752237,56.10847528895431],[-123.47456752837908,56.10982966842189],[-123.4762134806093,56.1130721812711],[-123.47449477919591,56.11623897118043],[-123.4745869015394,56.11857198383144],[-123.47098299629681,56.12095712858279],[-123.47055952518107,56.12353095731428],[-123.47082635298825,56.12489911233793],[-123.47320553138151,56.128532820632756],[-123.47421121793276,56.13120675719628],[-123.47672724152525,56.13271813459628],[-123.48036080187694,56.13416192133461],[-123.4820898351993,56.13688596686859],[-123.48215234574509,56.13842937702152],[-123.4839060375871,56.141781512990676],[-123.48659820695848,56.14534940487226],[-123.49103143044326,56.14895154732528],[-123.48980045785298,56.15205647173044],[-123.48768809309135,56.15556541977528],[-123.48681108176216,56.15969049123553],[-123.48837914720325,56.163442382688906],[-123.49439872263282,56.165999710558964],[-123.49896550117329,56.167550921735284],[-123.50019627220873,56.17028285344702],[-123.50168121806682,56.17460676728238],[-123.50263404105807,56.175620687665486],[-123.5077067767721,56.1771097476621],[-123.51254736816146,56.18048592314467],[-123.51158632955998,56.184950238964916],[-123.5057268951506,56.18718485898443],[-123.50056186969312,56.18890383419777],[-123.49806754867134,56.19053159127455],[-123.4976310910192,56.19281838368217],[-123.49904726436343,56.19772381248562],[-123.4934386155894,56.198519276154244],[-123.4886790058847,56.200183022017974],[-123.48862247596645,56.2043512489763],[-123.49022549339028,56.205817418465394],[-123.49464259670884,56.20902454436653],[-123.50081595343805,56.21232869368814],[-123.50891214485091,56.21515004728427],[-123.51621866601691,56.218717627802626],[-123.52622382397603,56.223350304875034],[-123.52683368561729,56.223164870484744],[-123.53831070273179,56.22292954268992],[-123.5420314219899,56.22624702657147],[-123.54152162728063,56.22922294348794],[-123.54255226583487,56.232129906970684],[-123.54608952008718,56.233229081221516],[-123.54925680571876,56.23559424700891],[-123.55105376249965,56.239968367676646],[-123.55246053202653,56.244639833684516],[-123.55249493291385,56.24538468746959],[-123.54983381066619,56.25095546133008],[-123.54496440491691,56.25250275031259],[-123.54145180617215,56.25459603727561],[-123.54283046107717,56.25841531089332],[-123.54764642455818,56.26109913653198],[-123.5510511493528,56.261514152700265],[-123.56058964341922,56.26140081181533],[-123.56436561216783,56.26079144681977],[-123.56350353409195,56.26216476557971],[-123.5619670595789,56.26527362326276],[-123.56033167038237,56.268147459587865],[-123.56000891721061,56.27021249946564],[-123.55865752373592,56.272679302275186],[-123.55564733707845,56.27448672990994],[-123.55209891783936,56.27583546634526],[-123.55328351006577,56.27708654220096],[-123.55925668365039,56.28307371488653],[-123.55922765657468,56.28483952422122],[-123.55637757673823,56.288479186894484],[-123.55435588028978,56.291811866058715],[-123.55501527651124,56.29551862586594],[-123.55833155682845,56.29662211381921],[-123.56055628751699,56.29809024062005],[-123.5625168554061,56.30120310067977],[-123.56579892119063,56.30391071043849],[-123.56498524890135,56.30683618594394],[-123.56278370742,56.31097258025444],[-123.56242067531433,56.314982613290155],[-123.56295984627194,56.31543224349159],[-123.56451959035874,56.31849260602467],[-123.56078331062052,56.320716814039756],[-123.55278820398345,56.321317278020906],[-123.54770059238486,56.32543409999659],[-123.54732286889819,56.33172136949731],[-123.55064817329017,56.33505786286057],[-123.55682492307807,56.33817974216379],[-123.56388463133764,56.342501701145345],[-123.56582297457541,56.3447084820898],[-123.5666427548484,56.350301254074736],[-123.56856423132481,56.35461480909885],[-123.57670095126086,56.354975324117326],[-123.58800385627511,56.354498366058706],[-123.60547794485083,56.353893904652985],[-123.61477192511296,56.354695056933885],[-123.616391254519,56.359531185240776],[-123.61790915737458,56.363908124156175],[-123.61745278530105,56.36820349964933],[-123.61231277733884,56.37106668716699],[-123.6108075691276,56.374454830842225],[-123.61227430230105,56.37780873636299],[-123.61525309135642,56.38006100931145],[-123.61966174380096,56.38229495307748],[-123.61891118408543,56.38395773129669],[-123.61530530309611,56.386921330394024],[-123.61559321862904,56.388854483613166],[-123.61284905240487,56.39231825753341],[-123.60700107676327,56.39581373110601],[-123.604345253123,56.398875510901114],[-123.60587546191839,56.40119955004305],[-123.60594578554692,56.40296728135046],[-123.60363040602999,56.406824487473315],[-123.60143060941638,56.40879186915207],[-123.59561465744987,56.41012654724974],[-123.58749485546986,56.41061959875738],[-123.57923052676527,56.410033402488025],[-123.56946513799019,56.410601832148934],[-123.55987570343204,56.41328904480079],[-123.55949159289854,56.41361911055576],[-123.55904949405114,56.41399963061758],[-123.55797238666723,56.41586439866645],[-123.55788242657924,56.41610142766533],[-123.55753818820264,56.41679988950488],[-123.55705780429733,56.41772665370823],[-123.55696453566368,56.418113814444396],[-123.55677611211695,56.41878834364817],[-123.55671829089236,56.41932301248514],[-123.55682679910466,56.4200233754245],[-123.5568511670201,56.420607807602266],[-123.55697905246609,56.42138812099192],[-123.55718412159574,56.421908744353125],[-123.55720132710059,56.42195838997403],[-123.55748174088298,56.422540974629484],[-123.55761413416934,56.42311961866556],[-123.55764593625581,56.423617886588204],[-123.55761890947447,56.42401751925346],[-123.5575646403386,56.424885153284684],[-123.55738626265078,56.425658513189425],[-123.55709550742807,56.426572082248896],[-123.55712047582065,56.42669249018896],[-123.55716398276725,56.426841272825826],[-123.55735797224995,56.42714984250784],[-123.55750922603976,56.427297314570964],[-123.55756778025899,56.42740042826157],[-123.55809445273832,56.42787897811139],[-123.55849457425963,56.42820492094769],[-123.55899636050185,56.42869196000642],[-123.5593638221346,56.42908565098998],[-123.55939824505182,56.429184941986954],[-123.55953132243638,56.42936344979196],[-123.55959492155426,56.42964599659104],[-123.5595891827606,56.42983531327689],[-123.55959016197451,56.4298846498929],[-123.55939101623903,56.43099051552714],[-123.55931481283177,56.43133204988037],[-123.55924489733754,56.43219042249397],[-123.55922894084344,56.432348160785786],[-123.55937432717485,56.43382486493433],[-123.55937089432035,56.43413976285278],[-123.55957493957332,56.43506835942789],[-123.55965506192182,56.435606778652925],[-123.55941782546451,56.43615148980344],[-123.55937856511753,56.43625946691301],[-123.55938905866978,56.43654660849359],[-123.55970194185169,56.43706703895113],[-123.55992056602074,56.43734020580607],[-123.559979981328,56.437397379312664],[-123.5603797975775,56.43782755044275],[-123.56060549698549,56.43798764303267],[-123.56085660447035,56.438228920737714],[-123.56124726343205,56.43844819187299],[-123.5622770517264,56.43904052742376],[-123.56252670599228,56.439272807110335],[-123.56259515979146,56.43938059006768],[-123.56270442054442,56.43955079594582],[-123.56272403185822,56.43975740803346],[-123.5626945104283,56.439937306751744],[-123.56287993087724,56.44025467210088],[-123.5630716423586,56.44043877348654],[-123.56321239595873,56.44052775383906],[-123.56334594298207,56.44063453102607],[-123.56349727162022,56.440781996986956],[-123.5635488612851,56.440867041789716],[-123.56355097923566,56.44106099202247],[-123.56336185401996,56.44168172329995],[-123.56325693249947,56.4424183824507],[-123.56306919405381,56.44301672288737],[-123.56300098399007,56.44342566519562],[-123.56285984827952,56.443961001418664],[-123.56252371486713,56.44468990639205],[-123.56232375846723,56.44502797285622],[-123.56169872145259,56.44566395938399],[-123.56160927056312,56.4457945222134],[-123.56128659643532,56.44620983715904],[-123.56107906539177,56.44666881244318],[-123.561099724217,56.44695614825958],[-123.56115740681227,56.44704131003437],[-123.56187566856168,56.44826438066222],[-123.56207197536185,56.44863575654469],[-123.56212456457864,56.4489326659358],[-123.56202863181841,56.44968743222488],[-123.56191329099471,56.45019972145686],[-123.56180080388181,56.45043857190797],[-123.56158183761441,56.45072247571583],[-123.56128928985436,56.45098032168724],[-123.56041427948092,56.45145127014423],[-123.56011352738344,56.45167757331236],[-123.55954960850127,56.45201656329925],[-123.5582882352808,56.45261913891823],[-123.55686529414466,56.453399088560495],[-123.55662164170423,56.45355697703994],[-123.55651430892934,56.45361546084383],[-123.55589312698321,56.453991455776965],[-123.55549346149247,56.45430329399399],[-123.55529054189988,56.45449221982693],[-123.55521841478824,56.45460517549646],[-123.5546782242706,56.4554075215192],[-123.55426499523445,56.455902922520536],[-123.55419713872418,56.45598009101018],[-123.55341183910038,56.456832684963416],[-123.55326854233948,56.45707542627165],[-123.5532384672489,56.45729566659445],[-123.55351010582442,56.457924055042845],[-123.55367540063135,56.45849773461634],[-123.55386249569538,56.459404731590936],[-123.55402453706354,56.459803491215915],[-123.55411167169312,56.46009994381739],[-123.55418462041911,56.46068755562359],[-123.55429855546275,56.461140321599004],[-123.55431828274072,56.461279686998104],[-123.55472154240117,56.462468781012774],[-123.55483438288456,56.462809437455526],[-123.55502811979845,56.463059722221494],[-123.55529503954793,56.46331027958999],[-123.5559948591634,56.46382351989871],[-123.55606117318013,56.46386849692532],[-123.55670996789576,56.46428772830105],[-123.55748573475884,56.464855087075506],[-123.55774400516549,56.46498441905483],[-123.55811733539082,56.46522466491888],[-123.55865320951577,56.46569441940101],[-123.558877800246,56.46593968032279],[-123.55949766372568,56.466529841801666],[-123.55976540607035,56.46686559208084],[-123.56012518013443,56.467160497352296],[-123.56069093955904,56.467575887512965],[-123.56089019661704,56.4676738276258],[-123.56118183748957,56.4678878525487],[-123.56171476495685,56.46817819620823],[-123.56186457970477,56.46825389890324],[-123.56214621084084,56.4684004784384],[-123.56320781604177,56.468821909049005],[-123.56369635303183,56.46897689563378],[-123.56413537009811,56.4690782592827],[-123.56506159543868,56.46925835745464],[-123.56628479905936,56.46943735352453],[-123.56651657290539,56.4695033953968],[-123.56673048029971,56.46952986738059],[-123.56680501093402,56.46957387341481],[-123.56709576051699,56.46963991104826],[-123.56745244192408,56.46982264797157],[-123.56763830294815,56.47003801584973],[-123.5677469101404,56.47025304079559],[-123.56776449947829,56.47029708837396],[-123.56780614375272,56.47083590019216],[-123.56775715655635,56.471393171086476],[-123.56762002937039,56.47218976199167],[-123.5676598388154,56.47266016578216],[-123.56769942670752,56.47306891691774],[-123.56777900147061,56.473423502333304],[-123.56778228571554,56.47372956552639],[-123.56773602848014,56.473949503204985],[-123.56735070504106,56.4751056804735],[-123.5673364647237,56.47536657662589],[-123.56744013319052,56.47569359698742],[-123.56773639779732,56.4761285078186],[-123.56819087770782,56.47670092045564],[-123.56861461499919,56.476951055527],[-123.56892126392961,56.47705662015963],[-123.5692204318787,56.47721696573308],[-123.56931116285416,56.477262397703015],[-123.56945262177918,56.477342416314066],[-123.56962015929722,56.47749354402968],[-123.56974553116028,56.47766853295557],[-123.57000379153254,56.478354917883365],[-123.57020212279609,56.4788933325703],[-123.57028701586111,56.47962015112153],[-123.5704129044711,56.480374646667634],[-123.57063027993566,56.48106474074123],[-123.57078561694856,56.48160794593512],[-123.57107713794122,56.482316255171824],[-123.57108781339426,56.482406127941225],[-123.57143662585996,56.48323993829721],[-123.57172458578272,56.48367916614357],[-123.57177533378842,56.48374625792777],[-123.57204250267176,56.48399678304731],[-123.57250903584955,56.48431272464116],[-123.57283257719764,56.48444213691738],[-123.57326374506948,56.48457470287061],[-123.57369447480514,56.484648972997356],[-123.57408294087907,56.48468321237157],[-123.57542971536803,56.48487901829609],[-123.57628915945874,56.48502750426264],[-123.57723382937334,56.48521233947477],[-123.5791795475057,56.48575566728001],[-123.57956099307984,56.485870461074796],[-123.58125688198194,56.48624427838042],[-123.58222486024074,56.4864149434785],[-123.58324326296342,56.48652714322255],[-123.58335839728392,56.486540518378185],[-123.58486905615655,56.48665411993347],[-123.58535763081662,56.48671486641403],[-123.58554735105949,56.48677223520928],[-123.58581269689589,56.4868568054483],[-123.58646155064116,56.48715482410973],[-123.58699213665287,56.487358705400496],[-123.58736549238357,56.48747332341031],[-123.58744700834995,56.48750399742721],[-123.5879766793672,56.487591285835045],[-123.58907562911077,56.48768477525619],[-123.58969626829179,56.487781610076986],[-123.59151798601032,56.48816325444692],[-123.59203040724856,56.48829952100686],[-123.59234591770071,56.48842873201012],[-123.59247923931343,56.488477186957454],[-123.59346601518892,56.488872293384745],[-123.59432291531137,56.489295223295],[-123.595031173984,56.48968734240007],[-123.59578557692421,56.49002427725566],[-123.5959186621428,56.49010971299819],[-123.59628486908834,56.4902421044954],[-123.59645811867387,56.49033613737209],[-123.59681520336652,56.49045154346198],[-123.5969748501909,56.49053523323384],[-123.59771995854469,56.49079240017195],[-123.59918980898357,56.49137359253663],[-123.60000094636065,56.49168241921417],[-123.60111636735155,56.492105648128586],[-123.6014786494733,56.49226933548248],[-123.60161922966832,56.49233248748421],[-123.60188602685739,56.492460764622535],[-123.60220132816352,56.49259443005179],[-123.60260761081089,56.49280377036647],[-123.60283121850871,56.492972711788916],[-123.6029573399174,56.493138712916654],[-123.60306080359018,56.49347466411426],[-123.60314876650739,56.4937979964203],[-123.60328349586496,56.494452859360074],[-123.60327726331055,56.49514992759258],[-123.60328497614523,56.49571947637493],[-123.60335191006423,56.49628564659159],[-123.60331294608964,56.49691933576486],[-123.6033387038616,56.49795662738024],[-123.60336557555217,56.49917440161021],[-123.60338491127486,56.499919025306745],[-123.6034785574288,56.49991853029772],[-123.60344107600011,56.499998534412086],[-123.60324374517396,56.50042751264047],[-123.60309994274128,56.50064788496142],[-123.60296365031856,56.500878485193354],[-123.6028198446394,56.50109885725118],[-123.60265657078197,56.501337920917514],[-123.60246049337115,56.5015808558702],[-123.60228501794728,56.50181969152816],[-123.60212246030167,56.50201393288038],[-123.6019391923995,56.50218088643111],[-123.6016172704121,56.50228584510374],[-123.60161620352781,56.502402396769426],[-123.60140271297367,56.5024981700469],[-123.60127935940112,56.50258441690678],[-123.60113753654079,56.50270618704943],[-123.60102062513546,56.50278694955736],[-123.6009375494078,56.50291317896068],[-123.60042778852424,56.50332511187786],[-123.60029288651441,56.50343355989366],[-123.60000116457516,56.50367582647868],[-123.59979537893398,56.50384459861625],[-123.59966526473632,56.50390830019926],[-123.59938525677016,56.504026366413626],[-123.59896903174587,56.50420801895663],[-123.59887467753269,56.504351970686535],[-123.59880640299498,56.504568146244196],[-123.59890101834107,56.50468424433627],[-123.59902864211554,56.50485924504515],[-123.59919917150883,56.504965552473216],[-123.59951445130855,56.50533236695252],[-123.59960166377965,56.50540349087351],[-123.59970848200844,56.505519816285464],[-123.59991119204378,56.505896856719374],[-123.60000009078384,56.506105880523535],[-123.60002138525155,56.50615671798813],[-123.60013571693345,56.506349403436545],[-123.60031035434501,56.50655442377115],[-123.60043247519963,56.50681899095759],[-123.60051634735316,56.507043612924825],[-123.6006068704984,56.5073255241074],[-123.60070022216868,56.50749539964909],[-123.60066065237889,56.508138048390165],[-123.60086479752057,56.508591334335485],[-123.60106401938823,56.50902547303124],[-123.60108548906368,56.50910657749661],[-123.60161531507164,56.50949420453813],[-123.60161566106154,56.509620870963474],[-123.60219885127671,56.51013390954334],[-123.60244820089753,56.510415420033624],[-123.60270486093012,56.510710516993534],[-123.60296845148241,56.510992292057146],[-123.60325737794341,56.51129247318962],[-123.60351970444962,56.51162802595749],[-123.60378947620733,56.51190879361576],[-123.60407231548199,56.512208859322286],[-123.60429578126734,56.51258067518438],[-123.6043264260699,56.51264513684184],[-123.60479773704455,56.512992428290836],[-123.60589859686957,56.5129344771417],[-123.60609745627734,56.512878774344095],[-123.60622837668166,56.51276912436773],[-123.60654841983569,56.51249710553889],[-123.60684809455527,56.5122583332725],[-123.6070762518422,56.512023833287635],[-123.60729841444497,56.51182060609572],[-123.60752074123334,56.511581513395],[-123.60780102016383,56.5112605537864],[-123.60797771287018,56.51103518253418],[-123.60823104095371,56.51075519323057],[-123.6084597872626,56.51044448230604],[-123.60866237147486,56.51012880076818],[-123.60885774017558,56.50976478689317],[-123.6090400943844,56.50948011325381],[-123.60916279379236,56.50920553846733],[-123.60932615684055,56.5089317200862],[-123.60952141834827,56.5087683411653],[-123.60955118898322,56.50874759820783],[-123.61001942938765,56.50801652654347],[-123.61169340709576,56.507206988845496],[-123.61383991659831,56.50645776638126],[-123.61548602447834,56.50606799332207],[-123.61712566412238,56.50578344210531],[-123.61979717646072,56.50583295277322],[-123.62313352673473,56.50589470662933],[-123.62484634529241,56.50597793619808],[-123.62645596345469,56.50621840016232],[-123.62823553692675,56.506776944643406],[-123.62973168027729,56.5072775555221],[-123.63066605531537,56.50761087085181],[-123.63207832551831,56.507951864768955],[-123.63337599267318,56.50702975735372],[-123.63494872590584,56.50626962219082],[-123.63593093873604,56.50581469050827],[-123.63719022536988,56.50552288848905],[-123.64010493060034,56.50468200074503],[-123.64174114782736,56.504449757742144],[-123.64393482826164,56.50448999774953],[-123.64576218986764,56.50426008781364],[-123.64895050585329,56.50363585957895],[-123.6498045591174,56.50354724324451],[-123.65154335168774,56.50336719204494],[-123.65384830551362,56.50314701770833],[-123.6551618982143,56.503538634866885],[-123.65567000568555,56.504599265832205],[-123.65602064275323,56.505131342364265],[-123.65702234154658,56.505938690591904],[-123.65766714423523,56.506318085099174],[-123.65838935559398,56.50669664503388],[-123.65846431485883,56.50670249429187],[-123.65921076831245,56.50671160975465],[-123.6600366168062,56.50678829685131],[-123.66069811459727,56.50685638268777],[-123.66126146553034,56.50689802020886],[-123.6619875240726,56.50690786915171],[-123.66257075089965,56.506855711031925],[-123.66330343640178,56.50672108338263],[-123.66392424345389,56.506619164283244],[-123.66460414412849,56.50651607448244],[-123.66539608884976,56.506445279640566],[-123.66555434252442,56.50645375878677],[-123.66846501696098,56.50614680842824],[-123.67031111983195,56.50560193280822],[-123.67185484851191,56.50531383163653],[-123.67428355705233,56.50462253670383],[-123.67633316631957,56.50387054257758],[-123.67770959109822,56.50321171206302],[-123.67905259818565,56.50307905905034],[-123.68002488492175,56.502780540265086],[-123.68127748166133,56.502593552653394],[-123.68294341665872,56.50346423235352],[-123.68418045312785,56.50353921167119],[-123.685383181922,56.504191913076674],[-123.68667635121936,56.504898910211764],[-123.68807346978248,56.50550128442097],[-123.68947470562425,56.50600059993214],[-123.69049895043388,56.50643932496858],[-123.69160014353322,56.50719437863208],[-123.69202504164159,56.50809643733547],[-123.69262666335001,56.50921126410759],[-123.69325629058807,56.50985359762792],[-123.69505566346992,56.51009547740412],[-123.697067905346,56.50997351230525],[-123.69718888133039,56.51095753139197],[-123.69724439305817,56.51105155532907],[-123.69714273978775,56.51139383043615],[-123.69710523024287,56.51175294657954],[-123.69730411974655,56.51214207755646],[-123.69748772387692,56.51241100496124],[-123.69786373827012,56.51279994550558],[-123.69828550781114,56.51313814582686],[-123.69869979514326,56.5134997482801],[-123.69906025676487,56.513807706488905],[-123.69941029151153,56.51411996035005],[-123.69977898066657,56.514392196951796],[-123.70048035662103,56.51478807242512],[-123.700659259856,56.5149302565122],[-123.70098102137872,56.51513552070961],[-123.70143986017005,56.51543290224352],[-123.70177047755112,56.51566073944305],[-123.70200703290328,56.51586111495559],[-123.70252019158085,56.51620429696559],[-123.70287566340784,56.51649422136426],[-123.70326279790584,56.516868773123704],[-123.70366572411022,56.51732094341207],[-123.70390259370295,56.517619954394185],[-123.70428478089285,56.51794061444014],[-123.70467839698621,56.51824018148838],[-123.70500188934471,56.51852056198881],[-123.70520040734401,56.518779656506624],[-123.70528724083384,56.51910288640878],[-123.7053337036843,56.519281928676655],[-123.70557211470992,56.51955518473297],[-123.70581537805107,56.519849822802975],[-123.70582272252166,56.51986340390445],[-123.7045997259369,56.51988640570023],[-123.702750322747,56.52048440155578],[-123.70119697158692,56.52092962796866],[-123.69887879979791,56.52136114866945],[-123.69599206271815,56.52173088137898],[-123.69378184749628,56.52195352844138],[-123.69194777026951,56.52228825078404],[-123.6905833255708,56.522737865038955],[-123.68970316890359,56.52308968876446],[-123.68759358380848,56.524839513656154],[-123.68696274064845,56.52582684207619],[-123.68687958457393,56.526266960625804],[-123.68643481957527,56.52665798067276],[-123.68419814513324,56.527354113550075],[-123.68119654749874,56.52803529587776],[-123.67896393812039,56.52862605429743],[-123.67936342599224,56.529953632092784],[-123.67944173269375,56.53021172119687],[-123.68004223553886,56.53137927983708],[-123.6803726055762,56.53222700260752],[-123.67988321362202,56.53268108742047],[-123.67926019213101,56.53325829516284],[-123.67823707376849,56.534396552606296],[-123.67875272750068,56.53504026722184],[-123.6793043891219,56.535729463808984],[-123.68145920409432,56.53645205354551],[-123.68363914225766,56.536753616214774],[-123.6847701804412,56.53698470365261],[-123.68595525446135,56.53795203497516],[-123.68713726152174,56.53897197991179],[-123.68880794061302,56.53979109544638],[-123.69003059857491,56.54012802077613],[-123.69096315656986,56.54051352751649],[-123.69129078776149,56.54141273078971],[-123.6917316514327,56.542051685156316],[-123.69235867574139,56.54274665818575],[-123.69315838459255,56.543759685646755],[-123.69310550882196,56.544652059999414],[-123.69264708584447,56.545958603533705],[-123.69288537867348,56.546750840656614],[-123.69358220267704,56.547920061701205],[-123.6952410048758,56.54894847573986],[-123.69692162284352,56.54960961656421],[-123.69825893138548,56.5496335502141],[-123.69979797961061,56.54945035617603],[-123.70153138790761,56.549219057331705],[-123.70267735242041,56.54923952648402],[-123.70373385977041,56.54915302842582],[-123.70535815684718,56.54918201072243],[-123.70818494240959,56.5498634396143],[-123.70921984239327,56.55014415080426],[-123.71127211499316,56.550969756582646],[-123.71394684471366,56.55101731177503],[-123.7161442740463,56.55100365926687],[-123.71778099904499,56.55082198449933],[-123.72028077436255,56.55055134658074],[-123.72218703967621,56.550637791123],[-123.72362007009045,56.55066315507639],[-123.72487713869384,56.55042199309935],[-123.72405036803166,56.55145872181838],[-123.7244673369977,56.55251745002525],[-123.72450770286905,56.553465278447376],[-123.72397097676125,56.554454459039626],[-123.72325105014355,56.555335037169485],[-123.72220406480912,56.55689354070309],[-123.72076498927801,56.55860313406185],[-123.71964702539529,56.5613697655781],[-123.71977379755099,56.562476052363124],[-123.7226325330453,56.56263203343287],[-123.72517251605782,56.56335955495111],[-123.72740193104504,56.56445030103877],[-123.72964879440585,56.5652790357772],[-123.7312534027466,56.56562229065736],[-123.7326533252114,56.56622531888504],[-123.73374776689012,56.56713903222647],[-123.73608253948387,56.568073437493446],[-123.73777385595682,56.56857617324678],[-123.74035105550487,56.5686741238782],[-123.74128791565639,56.569005525681035],[-123.74181443148296,56.56980384004524],[-123.74175958143645,56.570748872633075],[-123.7396089346301,56.57155288103771],[-123.73734627717587,56.57266872476163],[-123.73528809732768,56.57352697060777],[-123.73329809081665,56.574858265460065],[-123.73159611733907,56.57614304917138],[-123.72932778908803,56.57731246470816],[-123.72792712955832,56.57839179830248],[-123.72735030648364,56.58006290665393],[-123.7269822123664,56.58147653917717],[-123.72693621207085,56.58226369267902],[-123.72708883504693,56.582897432207325],[-123.72515026448744,56.58333620093181],[-123.72298683604538,56.5833999589875],[-123.7217978674308,56.58343497066572],[-123.71971385443616,56.583083116911084],[-123.7185668841888,56.5830627990953],[-123.71695246722798,56.582876141155765],[-123.7147573848618,56.58278451966187],[-123.71259010118503,56.58222034766602],[-123.71099426406609,56.58171897972607],[-123.70800456859311,56.580509054878334],[-123.70592963855964,56.581079612532534],[-123.70573079229744,56.58106261889365],[-123.70512014975887,56.581147010257716],[-123.70451678278123,56.58128084688452],[-123.70385506149279,56.58140131049521],[-123.70316731596927,56.581513460425064],[-123.70253258559208,56.58166017899025],[-123.70200825425616,56.58180213973481],[-123.70142568724052,56.5819632345253],[-123.70093412669647,56.58213716059729],[-123.7003126810847,56.58236929234475],[-123.69971646914621,56.582588421560104],[-123.69932456806966,56.582801111158965],[-123.69878714207456,56.58306051741613],[-123.69826325760872,56.583297746130654],[-123.69766064302834,56.5835212354525],[-123.69670618348489,56.5838314615266],[-123.69579422629297,56.58414692496614],[-123.69504178051623,56.584420402606696],[-123.69429588030064,56.584720894407724],[-123.69358247829271,56.58505783243328],[-123.69300540994801,56.58533107749637],[-123.69256104974822,56.58567058856293],[-123.69216340855469,56.586013177398776],[-123.6916534378793,56.586358235101066],[-123.6911898332769,56.58664359469529],[-123.69063210615823,56.586830868868255],[-123.69044627833958,56.58686900873626],[-123.68951223017721,56.587485551960484],[-123.68909064145488,56.58816172637199],[-123.68867012831406,56.588785237610566],[-123.68587725329222,56.589102730016535],[-123.68552191303195,56.58904142055022],[-123.68284707620583,56.58857522677959],[-123.68105670135868,56.58812266511742],[-123.67808164703045,56.58827978319677],[-123.67597896810328,56.58824185242209],[-123.67435509968467,56.58821253549719],[-123.67395467057574,56.58853036195368],[-123.67345134364807,56.588931516226694],[-123.67224765980423,56.58985579854795],[-123.67209986590622,56.59232470095018],[-123.67223798805888,56.59322055177941],[-123.67257816310142,56.593910446583614],[-123.6732203154493,56.59439506782063],[-123.67395937182076,56.59482875369236],[-123.6732374988287,56.59571019046387],[-123.67314951918453,56.59718034000748],[-123.67343949356133,56.598710000363944],[-123.67357137114021,56.599711103659864],[-123.67358221593759,56.6000072170616],[-123.6736043143622,56.600763102814504],[-123.67375503002833,56.601449573938574],[-123.67553020048545,56.602165367947514],[-123.67731172480497,56.60277588660012],[-123.67850490366703,56.60363806908414],[-123.6791076159085,56.60475301506938],[-123.6790699784044,56.60538340373681],[-123.67604024407817,56.60643287403319],[-123.67359575871745,56.60728211593472],[-123.67172287578057,56.60819432732449],[-123.67079653168942,56.60928167662078],[-123.6696407086447,56.61099594197107],[-123.66954624731638,56.61257135260443],[-123.66986340838847,56.61368118462776],[-123.672310958768,56.61435649312925],[-123.67351061592052,56.615114595345794],[-123.67364255097995,56.61611570749933],[-123.67260139549113,56.61751598020361],[-123.67225098360272,56.618561066178316],[-123.67162446927179,56.6194442363006],[-123.6708969598131,56.62037714117077],[-123.672454993098,56.62156207146064],[-123.67277657530252,56.622566612871665],[-123.67348360696943,56.62357811197105],[-123.67456685069422,56.62464907819603],[-123.67469884532538,56.62565019450363],[-123.67434211608833,56.62680054325714],[-123.67400000837257,56.627740423642905],[-123.67338395285338,56.62841306497597],[-123.67325664145925,56.62893647736451],[-123.673292752829,56.62993586712866],[-123.67247126038643,56.63086709276266],[-123.66990292184452,56.63218821867178],[-123.66773797727868,56.633147812150256],[-123.66535594126735,56.63452378752957],[-123.6638977041031,56.63649598448584],[-123.66275026763307,56.63805233484493],[-123.66219819761812,56.639250688038466],[-123.66259225251557,56.6406780506237],[-123.66382214903537,56.640909953641376],[-123.66514043299416,56.6413026172068],[-123.6659509493134,56.64215798816501],[-123.66620391101466,56.642740966498145],[-123.66710721688152,56.64365069290817],[-123.66764270183698,56.644291462912356],[-123.66821308047274,56.64598429448347],[-123.66748499203767,56.64691719379492],[-123.66627930210828,56.64784256942717],[-123.66507249815211,56.648819478120686],[-123.66435377797035,56.6495944812936],[-123.66429059906389,56.650644774708475],[-123.66443501242075,56.65143652893664],[-123.66439392579358,56.65211955623426],[-123.66478199075878,56.65297064831201],[-123.66500173053907,56.65298583586692],[-123.6657046842724,56.653017615592574],[-123.66628991807217,56.65310442934958],[-123.66718438109076,56.653247275677806],[-123.66846553985552,56.65331303609119],[-123.66964802570298,56.65342295935248],[-123.67051574973917,56.65353503393215],[-123.6715304093736,56.65371813217345],[-123.67281262804973,56.65397106405761],[-123.6738844172992,56.6541899230828],[-123.67478601524363,56.65441915634052],[-123.67561510244651,56.65449462968685],[-123.6764217177193,56.65446768803124],[-123.67741302231249,56.65442725307794],[-123.67816897805011,56.6544274116257],[-123.67930528812239,56.654353702489665],[-123.68017894778914,56.654298799489155],[-123.68118212078765,56.65423052594805],[-123.68183227425868,56.65415477972548],[-123.68237582855397,56.654084961454984],[-123.68293373426286,56.65401427780837],[-123.68368348551432,56.65394703706237],[-123.68432059035207,56.65395287187189],[-123.68507739470154,56.65410993515933],[-123.68553894499685,56.65431886370401],[-123.68598867673212,56.654657606057775],[-123.68639894269918,56.655041596918025],[-123.68667138931755,56.65537267310735],[-123.6868773935694,56.655721613019885],[-123.68705672170013,56.65600393956582],[-123.68727658002614,56.65632622499225],[-123.6875737891483,56.65658488288501],[-123.68793158235023,56.656924211813255],[-123.688163058971,56.65722316443032],[-123.6884683682684,56.657586211605654],[-123.68873490148293,56.657948563291356],[-123.68904107947269,56.658400177930275],[-123.68926824114907,56.65877191152536],[-123.6894752616518,56.65913880026972],[-123.68966029902498,56.6594974484964],[-123.68992657863132,56.65969277481133],[-123.69031982366293,56.65978052279851],[-123.69074111508658,56.65987773902875],[-123.69129446773078,56.66002215440669],[-123.69197345096343,56.66018450801788],[-123.69236830307716,56.66034850143154],[-123.69253491188155,56.660536434574325],[-123.69279422507721,56.660849327485764],[-123.6930665007866,56.661184870202206],[-123.6932926526584,56.6615745131016],[-123.69349794795562,56.66183375510611],[-123.69380340615015,56.66209254543356],[-123.6940732084894,56.6622980141079],[-123.69437139363669,56.66250735220836],[-123.69484008892714,56.662804926765574],[-123.69542741290978,56.66306650707606],[-123.69596125917704,56.66323072983786],[-123.69665875743661,56.663392267460175],[-123.69721787724747,56.66347510841691],[-123.69764550069746,56.66353542372032],[-123.69813275832452,56.663658452515875],[-123.69844292617728,56.66380410176769],[-123.69879376010725,56.66402221486704],[-123.69915019144052,56.66424939420025],[-123.69962510382706,56.66461543802282],[-123.70006229775073,56.66496287283491],[-123.70056444579532,56.665283440549615],[-123.70119153526453,56.665599506777035],[-123.701904500144,56.66594960625223],[-123.70234621051412,56.66611776523998],[-123.7029005311947,56.66631707160849],[-123.70345443546158,56.66659259105034],[-123.70401465941123,56.66689960638894],[-123.70459609211585,56.667228294073915],[-123.70512517960516,56.667543717876626],[-123.70548878785631,56.667788941371946],[-123.7058856993274,56.66812779271278],[-123.7062511316754,56.668480655228734],[-123.70657627479271,56.66878908449178],[-123.70682044252592,56.66898061853851],[-123.70717099130752,56.669135930945004],[-123.70767816324962,56.66930411316646],[-123.70814635565378,56.669440215117],[-123.70866539743365,56.6695805810402],[-123.70939117105603,56.6698198933479],[-123.71000987410146,56.66996874834273],[-123.71061568226287,56.67005908346494],[-123.71122892341575,56.67023137498701],[-123.71187483443357,56.67043899145227],[-123.71246681924765,56.670555974757164],[-123.7126868091584,56.67056884174245],[-123.71309826971681,56.67059294823687],[-123.7134964341177,56.6705305067405],[-123.71427877523729,56.67067775657374],[-123.71563265618516,56.67049099742719],[-123.71662427056424,56.66993015239669],[-123.71743624466987,56.66915651080465],[-123.71854232257549,56.668281578079565],[-123.72095264666217,56.6680618777411],[-123.7224126103282,56.66766731215354],[-123.72415739949916,56.6673293168206],[-123.7259918836383,56.66709936617312],[-123.72705462822547,56.66696004248615],[-123.72812654131461,56.666663943784584],[-123.7292076752233,56.66620995015913],[-123.73077778967543,56.66560650031159],[-123.73252849692913,56.665164254584425],[-123.7334146246385,56.664758362358945],[-123.73455787257367,56.664883806402415],[-123.7365289733323,56.6656021543734],[-123.73801729618,56.66636469132451],[-123.74054290751477,56.66746035337155],[-123.74314122485309,56.6689248932791],[-123.74514457300883,56.67074776207575],[-123.74592696333266,56.672127816689425],[-123.74624475253282,56.67323746125219],[-123.74675961178923,56.674297863609944],[-123.74835816939823,56.67648127067433],[-123.74932360299921,56.678022546598115],[-123.75009706832296,56.67956159010648],[-123.75169344124274,56.68016667559039],[-123.75541677074273,56.68044220807499],[-123.75844294267237,56.68117854997619],[-123.75992020338576,56.68215024071047],[-123.761000397131,56.68337844034717],[-123.76188568167929,56.68465481323114],[-123.76302566120431,56.686515103085355],[-123.76444270996717,56.688537108288344],[-123.76570919366816,56.68987385850598],[-123.76622276262384,56.690934157918974],[-123.76703654323278,56.691788916829374],[-123.76767268334633,56.69406079251585],[-123.76855231074501,56.6954435082557],[-123.76953415233427,56.69672149702828],[-123.76966278942034,56.697827817040434],[-123.77026557598008,56.69904769108399],[-123.7708065542349,56.69963542162694],[-123.77078492662271,56.70001167501191],[-123.77074012523425,56.70079105727219],[-123.77155421215625,56.7016457925697],[-123.76994300859695,56.70298549673116],[-123.76839925019351,56.70311575922733],[-123.76747306209465,56.70332057271067],[-123.76732596729428,56.703352778327826],[-123.76597086813436,56.70365216934065],[-123.76497303834783,56.704318665506904],[-123.76395399400745,56.70535244921172],[-123.7631400818368,56.70612748370444],[-123.76314154419408,56.706137597317365],[-123.76302330006595,56.70627230178691],[-123.76302344079475,56.70644716789791],[-123.76305062042776,56.70668527390418],[-123.7631496036576,56.70709724534849],[-123.76315334484231,56.70713878423096],[-123.76319071591274,56.707519423820074],[-123.76313058803504,56.70785241722826],[-123.76284897067043,56.70815915624108],[-123.7627000206092,56.70825858027435],[-123.7625596975963,56.70835030713654],[-123.76231734998596,56.70847277318822],[-123.76214629406394,56.70867157582091],[-123.76204758852695,56.70889292937507],[-123.76210217494106,56.70911693883161],[-123.76227973649924,56.709408092302105],[-123.7624507405985,56.709671108855055],[-123.76258430967525,56.70994468600022],[-123.76260450993149,56.71030373145869],[-123.76259198997953,56.710591592032806],[-123.76256614789068,56.71093302626535],[-123.76254848143466,56.71127460217835],[-123.76255468021432,56.711557182523705],[-123.76254977073225,56.71192588172205],[-123.76258956512217,56.71240632687383],[-123.76260835923736,56.71257703301751],[-123.76257102684328,56.712904817549926],[-123.76252519417271,56.713238059546605],[-123.76252652926303,56.713534007084405],[-123.76257278790442,56.71390247201175],[-123.76257401083735,56.71427127792653],[-123.76259663326174,56.715120211191426],[-123.76246367893904,56.71533200556361],[-123.76220195166144,56.71561218776362],[-123.76188077387411,56.71603593931908],[-123.76164452917422,56.7164062363721],[-123.76100787463,56.717367049615284],[-123.76066686004323,56.71788573431181],[-123.76043039838748,56.71825938897104],[-123.76009086871849,56.7188229356504],[-123.75974830237114,56.71933262444796],[-123.75927068389096,56.71998344981839],[-123.75892279461391,56.72040785397647],[-123.7586675211784,56.72085852457941],[-123.75830608279857,56.721269241316044],[-123.75795716325916,56.72167569076676],[-123.75764331831095,56.722077143526874],[-123.75732033818474,56.72238876242977],[-123.75684014716435,56.7227290377317],[-123.75629604004918,56.72300655018674],[-123.75584182040437,56.72321612368941],[-123.75580200831395,56.72337348416845],[-123.75586248384363,56.7235662145028],[-123.75595405851394,56.72385812727149],[-123.75614725591775,56.72419776309032],[-123.75623912336555,56.724449327082006],[-123.75635956411735,56.72484374606486],[-123.75649119215252,56.72508030716238],[-123.75679462308243,56.72542521867306],[-123.75694056917412,56.72566202786312],[-123.75696694719086,56.72591357555868],[-123.75700591841155,56.726159737181035],[-123.75725751495904,56.72637484013],[-123.75761345747988,56.726520013311166],[-123.7581656415139,56.72666971099796],[-123.75873218092045,56.72685440427404],[-123.75936485704909,56.727134400393155],[-123.75997099735167,56.727448682362464],[-123.76050566694155,56.72772473194368],[-123.76116421692772,56.72805336756095],[-123.76175831068043,56.72836406931211],[-123.7622314474168,56.728571789575795],[-123.76254125224517,56.728772196577594],[-123.76289714825278,56.728954344767324],[-123.76334569407355,56.72916275604806],[-123.76373358333682,56.729393655784236],[-123.76393970879795,56.72965279572664],[-123.7638558454976,56.730183789277454],[-123.76386149432706,56.73054707037215],[-123.7638627300463,56.730915879869215],[-123.76382412097888,56.73123019507277],[-123.76373216385423,56.731617569117766],[-123.76353598708081,56.73207263794263],[-123.76331940082454,56.73245561344322],[-123.76312974403895,56.73279758009803],[-123.76282836856272,56.73323065079143],[-123.762611728118,56.733578875552574],[-123.76242130770596,56.733898409592236],[-123.76221849949505,56.73429059006891],[-123.76215888784428,56.73454289036755],[-123.76217329289993,56.73478974656628],[-123.76226065704287,56.735084945432256],[-123.76233892805458,56.73550216935033],[-123.76238083766094,56.735910917244276],[-123.76245991174314,56.73627883374351],[-123.76258047652577,56.73663737997456],[-123.76275069077792,56.73702256712998],[-123.76304907505033,56.737492921885206],[-123.76329308564473,56.73784127342363],[-123.76349730910877,56.73824049942787],[-123.7639015520188,56.738934630207844],[-123.76417948742208,56.73944049880718],[-123.76431770978824,56.739919289875495],[-123.76436582633953,56.740256404769916],[-123.76432658574178,56.74065253985205],[-123.76436658553902,56.74098839355908],[-123.76458485840577,56.74114461641682],[-123.76486157299937,56.74128167238394],[-123.76531619341074,56.74142292414971],[-123.76597430452922,56.74165736641431],[-123.76663507048828,56.74184589244685],[-123.76739864761765,56.74213371258003],[-123.76792650593605,56.74235468564905],[-123.7689072493624,56.74267651138638],[-123.76991047743213,56.743070457596964],[-123.77042404280768,56.74329117357287],[-123.77114850150106,56.743548030778754],[-123.77152459584129,56.74370247845829],[-123.77211140536099,56.74386055637492],[-123.77244808729965,56.74395267033689],[-123.77280263859622,56.74412579898706],[-123.77316664944996,56.74431254085393],[-123.77324549116557,56.74443720232453],[-123.77335238947575,56.74475066505417],[-123.77339907370882,56.74504291377457],[-123.77347213354327,56.745410719823845],[-123.7734665790363,56.74572112497908],[-123.77345902904207,56.74606624502626],[-123.77344782381198,56.7464393257519],[-123.77341617324097,56.7467761843115],[-123.7732925199895,56.74711033754464],[-123.77330648565429,56.74736615301095],[-123.7732993423923,56.74781104435753],[-123.77332834657284,56.748197148338406],[-123.77337455619838,56.74856897641886],[-123.7736586473017,56.74886419279503],[-123.77400173168839,56.74905953922504],[-123.77452870545491,56.74926253365659],[-123.77511628191583,56.74951589018506],[-123.77550367330517,56.74976019542374],[-123.77578327055569,56.74999143582934],[-123.77599290675369,56.75026406814923],[-123.77623808990919,56.75055973033053],[-123.77675338509187,56.751216496615136],[-123.77663593825446,56.751585509649715],[-123.776569259829,56.751748020976535],[-123.77674824000819,56.75194838454577],[-123.77697939460262,56.75216757993126],[-123.77747491815065,56.752312852915985],[-123.77792876977787,56.75239911878508],[-123.77840302129741,56.752486854452876],[-123.77920107363667,56.752642922565364],[-123.77997068565058,56.75275926438748],[-123.78040658122804,56.75283736652917],[-123.78088678993826,56.75292855800614],[-123.78149474010033,56.753149726733945],[-123.78212757297997,56.75336571457026],[-123.78253604475421,56.753457911272946],[-123.78386610975924,56.75355245249338],[-123.78460449389455,56.75357070918582],[-123.785052249972,56.753513364705306],[-123.78540652241237,56.75337146813898],[-123.78576200620198,56.75324416362827],[-123.78609804717046,56.75313446036683],[-123.78646790865935,56.753113889473155],[-123.78709898217942,56.75321772840944],[-123.78778485915377,56.75340208848326],[-123.7883060813233,56.753564572840695],[-123.7889443301865,56.75375820045828],[-123.78962459898986,56.75396935717335],[-123.79016400081588,56.754208368429346],[-123.79079792355392,56.75444226650842],[-123.7914507873962,56.754739257437095],[-123.79207187386324,56.75498301829224],[-123.79267021055202,56.75530261157906],[-123.79309364820038,56.755564291424186],[-123.79332465712153,56.755752067356774],[-123.79328010531567,56.755922810748],[-123.7931553687247,56.75617065157321],[-123.7930445003661,56.75635483548079],[-123.79299118649872,56.75653551779279],[-123.79298482113202,56.75679098332257],[-123.79282804254566,56.757061816956586],[-123.79278221049066,56.757254957319326],[-123.79287464139074,56.75743028047098],[-123.79311365490209,56.75762155624455],[-123.7934679085584,56.75776771829783],[-123.79393644549575,56.757885563443764],[-123.79437192210338,56.75800844773216],[-123.79476072570137,56.75819554917694],[-123.79495389445775,56.75836474183413],[-123.79521059651535,56.75867737661511],[-123.79544913214554,56.758949347392075],[-123.79565325507073,56.75917813548629],[-123.79588591207593,56.759445521480735],[-123.79615669304408,56.75972700795268],[-123.79639472462455,56.75997206578873],[-123.79658503435279,56.760155779424544],[-123.79685095973133,56.76041476287293],[-123.7971878847132,56.76068616439634],[-123.79722763995932,56.760851619651575],[-123.79724176865584,56.76110743461785],[-123.79722256893652,56.761336900383746],[-123.79723537617275,56.76168797286308],[-123.7972894760337,56.76192541267701],[-123.79731563115105,56.76218591635886],[-123.79698776982889,56.76247514005481],[-123.79680986045348,56.76261334835788],[-123.79900830920279,56.76394434258315],[-123.80000693269874,56.764470238392896],[-123.80096777363035,56.76497642789434],[-123.8026148887699,56.7664235297183],[-123.80370774457343,56.76749353199466],[-123.8057676458836,56.7684218783354],[-123.80745277852873,56.76923959210444],[-123.80751030610158,56.76992434100048],[-123.80699350859204,56.77054667157465],[-123.80711457996796,56.77180978371614],[-123.80697667797322,56.77254390568062],[-123.806556061385,56.77316786649332],[-123.80593315686716,56.77399801276247],[-123.8048081886384,56.77518843084508],[-123.80380028841574,56.77601203668139],[-123.80353328414692,56.777322375880935],[-123.8033595760916,56.77868586335918],[-123.80311936341162,56.77952361833328],[-123.80239107490618,56.78051001862835],[-123.80109724159819,56.78127606843581],[-123.80009801592905,56.781942866503385],[-123.80000565360277,56.78208926212256],[-123.79957101610573,56.782775742558954],[-123.7985060452408,56.78459711682562],[-123.79815752084426,56.785642644339816],[-123.79694470665962,56.78667346274342],[-123.7962884064006,56.7880825438018],[-123.79622558413772,56.78918561908505],[-123.79587395856872,56.79028377747476],[-123.79562457969686,56.791278306939546],[-123.79520862410337,56.79184963870989],[-123.79002654642493,56.79333846467504],[-123.78581082057403,56.79473825310972],[-123.7810582720733,56.79544603843134],[-123.77755013841778,56.79622658746569],[-123.77807656085982,56.797129040131566],[-123.77969700029158,56.799050167454986],[-123.77981829812106,56.80000956026207],[-123.77982928897931,56.80010391066559],[-123.78046494088308,56.80242850374014],[-123.77912165214978,56.804035370879184],[-123.77728977109516,56.805790778659926],[-123.77608182231123,56.80671614591377],[-123.77498704172673,56.80724213618018],[-123.77482728990037,56.807380634899786],[-123.77440805847151,56.80771532994488],[-123.77377630614328,56.807822173599206],[-123.7731888859742,56.80787148544004],[-123.77280773234472,56.80790080182613],[-123.77226728087003,56.80802490234039],[-123.77174268743771,56.8081941129461],[-123.77118985294256,56.808354988549326],[-123.77069624604276,56.808520244496194],[-123.77025068677321,56.80863476063462],[-123.7699464234189,56.808682207523155],[-123.76984276772798,56.80877234326739],[-123.76967409630231,56.8090295071429],[-123.76992781342268,56.80943182695424],[-123.77006231346776,56.80966058243934],[-123.77010964934422,56.80990689367181],[-123.77015278876807,56.81022599681686],[-123.77021495349197,56.81053533869918],[-123.77036999970784,56.81079919830385],[-123.77058276788118,56.81102257490957],[-123.7707896651891,56.8112054945453],[-123.77110116051635,56.811495586962195],[-123.77118310187004,56.811711105867],[-123.77120579065003,56.81195811364595],[-123.77114900637521,56.8121959067928],[-123.77099853109792,56.81242199853478],[-123.77077187116075,56.81272412701228],[-123.77056239429774,56.81297722750344],[-123.7703942258673,56.813225433964156],[-123.77022502210227,56.81349155828613],[-123.77008124885675,56.81374354747266],[-123.77001874162708,56.81400926675823],[-123.77004728023424,56.81433260324012],[-123.77011000140631,56.81456124414731],[-123.77037665688634,56.814775460156746],[-123.77068777541083,56.81496577915419],[-123.77101140396815,56.8151170780222],[-123.77158798325553,56.81536464968355],[-123.77192577186186,56.815519552788686],[-123.77243666315506,56.815732360794],[-123.77296585578924,56.8158412293678],[-123.77357948420858,56.81590894962503],[-123.7743593098859,56.81601203167047],[-123.77505216793689,56.81609343720457],[-123.77576018979472,56.81623226981072],[-123.77625600293597,56.81642238361916],[-123.77671972472169,56.81663548536198],[-123.77713777017283,56.816893762005975],[-123.777523789376,56.81717390747493],[-123.77784999809919,56.81742387993031],[-123.77812904009332,56.817780657315296],[-123.77821921360317,56.81806805618745],[-123.77833354377553,56.818327844652686],[-123.77838913240652,56.81861016628981],[-123.77845138577614,56.81888363433473],[-123.77854154582664,56.819242776170995],[-123.77867661838165,56.819570179521364],[-123.77886409567829,56.81987830357027],[-123.77920390390992,56.820177829231504],[-123.77951535828096,56.820399519641605],[-123.77988087516137,56.820644555671265],[-123.78035773050287,56.820880288629205],[-123.78090082943885,56.82110594472811],[-123.78144317009277,56.82130916570243],[-123.78179597739711,56.82145421039975],[-123.78225338346051,56.82167166725119],[-123.78260356372022,56.82186262524637],[-123.78307557528117,56.822147588439584],[-123.7833215989206,56.822365907548864],[-123.78355577064806,56.82261204811233],[-123.78376746895769,56.82278493946548],[-123.7840577813245,56.82287510108509],[-123.7837875734111,56.82340070653802],[-123.78359842658071,56.82369341175741],[-123.78335789850514,56.8239874796062],[-123.78309090924877,56.82427773132615],[-123.78291490342244,56.82444847276373],[-123.78354746645864,56.8249402020139],[-123.78383034742717,56.825160271768],[-123.78712628757728,56.82666044772529],[-123.79294635194624,56.82852640510064],[-123.79978896871346,56.83003281069683],[-123.8019155035488,56.83103743658402],[-123.8039256962769,56.83438067419722],[-123.80557670536466,56.8362470633816],[-123.8077089403563,56.8394757268875],[-123.81216226167376,56.8460975608505],[-123.81489555524065,56.85149752570379],[-123.81466293657796,56.855609900112185],[-123.81252149091905,56.85890091225832],[-123.8109485089138,56.861143272985146],[-123.81268968100004,56.862894515804555],[-123.81438403087837,56.86344323003999],[-123.82011949039008,56.86576383745596],[-123.8237828057708,56.86812117296778],[-123.82440761676146,56.870741348761],[-123.82568431755544,56.873462134268664],[-123.82908403277281,56.87497189990427],[-123.83458796273526,56.87677678917889],[-123.83803581604191,56.87890590947005],[-123.84936522289318,56.89183777120348],[-123.84942439471052,56.895497720294564],[-123.84316717115095,56.89563602055563],[-123.83815075150163,56.89564223677738],[-123.83297386125332,56.89674866081975],[-123.83120585660173,56.89894323053483],[-123.83123667890449,56.90219919145624],[-123.83273240555181,56.905147801355604],[-123.83232061934636,56.9074995623291],[-123.82894753847164,56.90926374569873],[-123.82547984120131,56.91124150208346],[-123.82245233190422,56.91357632055779],[-123.81922791967783,56.91618578890097],[-123.81837006475276,56.91826099667244],[-123.81896007740485,56.921795462575545],[-123.81890789466269,56.925337085865806],[-123.81896241292472,56.9267011933303],[-123.82018270492894,56.92840773325555],[-123.82356685074383,56.93144198280654],[-123.82750957511337,56.93333753104212],[-123.82992171084166,56.93347650069318],[-123.83426283688189,56.93239203004733],[-123.84136267933684,56.92995423652808],[-123.84307047640611,56.9285566476089],[-123.8454585676851,56.928237550902836],[-123.85000665575124,56.92932632713584],[-123.85350495195263,56.93064870868847],[-123.85672441634021,56.93254932983796],[-123.86067363858233,56.93643490576348],[-123.86489217178554,56.939634227386634],[-123.86636570779494,56.93978398968187],[-123.87101955181782,56.938694458756494],[-123.87788602598383,56.93808036853829],[-123.88378752414341,56.93914519304888],[-123.88654756570014,56.9422572418688],[-123.88908828318543,56.94547328722648],[-123.89049146978415,56.946312180937774],[-123.8955255585551,56.948815218092186],[-123.89800359380844,56.952899986762745],[-123.89854230925809,56.95751837213117],[-123.89828668466876,56.96129884645344],[-123.89834324538256,56.96237595422416],[-123.89642864607775,56.96395031256678],[-123.89227611812589,56.966977127871395],[-123.89080088921692,56.9689441766087],[-123.89082890044894,56.97174275862974],[-123.89203236733633,56.97504469774871],[-123.89322264449419,56.975880108891744],[-123.89564564151283,56.976475378559854],[-123.9003778601906,56.97703615729569],[-123.90159239052952,56.978338235567065],[-123.90016323761958,56.98127473407975],[-123.89963522391109,56.983400687086764],[-123.89747371735676,56.98645987100976],[-123.89581971824468,56.98927612395387],[-123.89702437174299,56.99046150229],[-123.89837736073702,56.99255508023374],[-123.89664802660967,56.99372890920858],[-123.89515099217799,56.99517553087942],[-123.89635629934813,56.99635195961919],[-123.89995604128111,56.99716346207984],[-123.9047964344876,56.99790516129944],[-123.90787943370009,56.99882470883451],[-123.95479489043407,56.99908626218126],[-123.95449680106418,57.000041184784635],[-123.9541801215501,57.00134557943446],[-123.95285306311982,57.00273273630527],[-123.95109748349005,57.00411313669076],[-123.94842901132809,57.00590961067948],[-123.94898475724725,57.00693179493328],[-123.95079396714316,57.00857459883757],[-123.95307759631197,57.011534221386405],[-123.95637371674043,57.01345143432589],[-123.9614127922856,57.013925055013885],[-123.96736777741124,57.01330070927204],[-123.97185937682184,57.01320933796688],[-123.97752257874338,57.013736896707094],[-123.98151603712623,57.01433697810373],[-123.9853941188522,57.01430737019356],[-123.9887503752629,57.01416196641525],[-123.99242433491804,57.01488232899778],[-123.99444745308024,57.01594486238433],[-123.9967016010988,57.01827544322341],[-123.9972009668762,57.02135924316283],[-123.99654182464133,57.0238781601827],[-123.99341125591751,57.02853832390834],[-123.99151534660642,57.03197985027801],[-123.98761931995183,57.03515729638669],[-123.98181600925956,57.037551756429174],[-123.98152490741937,57.038695206225675],[-123.97773670798229,57.04199065604421],[-123.9742218270481,57.043846333797575],[-123.96977756753239,57.04609999719283],[-123.96170184951168,57.04988419775931],[-123.95589184337966,57.05233129482079],[-123.95215468548845,57.053671722163664],[-123.94421943640332,57.05476651164356],[-123.93614684483238,57.054719623893604],[-123.9277236273807,57.05351866162359],[-123.92364949228279,57.05435068029197],[-123.9225729743945,57.05715868455591],[-123.92323507981764,57.05835311681957],[-123.92433608357905,57.06028997792632],[-123.92434643305955,57.06132155420745],[-123.92422314395225,57.06452145547864],[-123.91966774391086,57.06689732111111],[-123.91764343286837,57.07011172814874],[-123.9175583566002,57.075034292842666],[-123.91941364633031,57.07799674881875],[-123.9224206065427,57.08105825532656],[-123.92418973379758,57.08470988171029],[-123.92459576248766,57.08790032433403],[-123.92520057656027,57.09138991092539],[-123.92767166724195,57.09399432717529],[-123.92942954738552,57.09695510663529],[-123.93075559814332,57.09934396733448],[-123.9330023425042,57.101218233946824],[-123.93631025906107,57.10365636110821],[-123.9371741053634,57.10450414159158],[-123.941204188832,57.106128406401616],[-123.94355153689982,57.107376241738166],[-123.94629871831071,57.10826259724504],[-123.95073449732084,57.10942655558935],[-123.95476060776272,57.1108350719194],[-123.95508086936776,57.11134235539891],[-123.95795300358611,57.11268783676993],[-123.96145247773003,57.113747076961],[-123.96705774054462,57.115646249675464],[-123.97067750718492,57.117568133401534],[-123.974584363332,57.11844499761099],[-123.98030192161892,57.120121105551256],[-123.98484638818779,57.12146493846859],[-123.98738050066093,57.12171929119412],[-123.99098078474857,57.122779275784886],[-123.99343041562292,57.1240187935375],[-123.99422711552323,57.12618358720539],[-123.99333687763084,57.12865431219821],[-123.99578897845008,57.13017186058539],[-123.99987394464169,57.13115830927956],[-124.00337564322315,57.13413579148958],[-124.00586854924545,57.13551923448319],[-124.00738280931003,57.13758727972523],[-124.007951419813,57.140340468905855],[-124.00774426834651,57.14432852388662],[-124.00669142343027,57.14802564704904],[-124.00684543843721,57.150476553917116],[-124.00768509057644,57.15088400245071],[-124.01153010432462,57.152395578931944],[-124.01559650610504,57.15379380452479],[-124.02079706534897,57.15599836537052],[-124.02430374486582,57.15831164639741],[-124.02628159137264,57.159130817686496],[-124.03095306978844,57.16166779447398],[-124.03790738008551,57.16491157699387],[-124.04300953293031,57.16682674268263],[-124.04614628081664,57.16799481042834],[-124.05310110032853,57.16736314452157],[-124.06421523728716,57.16372539992367],[-124.07561874025743,57.161866857576854],[-124.08115893554564,57.163329543688285],[-124.08454463818315,57.16649142710894],[-124.08844845114612,57.17056666281292],[-124.08988708667958,57.17194200468897],[-124.09193924952739,57.1743039029295],[-124.09423649949179,57.17973672775041],[-124.0943260568215,57.18493107804288],[-124.09429987760788,57.18612357491547],[-124.09399358152035,57.18994888555365],[-124.09261763394959,57.19461964172822],[-124.09164798338946,57.200776238420204],[-124.09196814046975,57.204996403813844],[-124.09496195492149,57.207129849973086],[-124.09715928473486,57.20828297450184],[-124.1021415798644,57.211117847108966],[-124.10848100200674,57.214689684949505],[-124.1132696426012,57.21677688359947],[-124.12092155863584,57.21831308656928],[-124.1275217284986,57.22000420353295],[-124.13027503653267,57.22372988749992],[-124.13240120886641,57.227401723710095],[-124.13560664212206,57.23003951231532],[-124.1370679770985,57.230347332245906],[-124.14405511340307,57.23369342524564],[-124.14735840180634,57.23673592059905],[-124.14811013470417,57.24142847826278],[-124.14727299695627,57.245694959331864],[-124.14759932189804,57.25026493079151],[-124.1537720643013,57.252352242396896],[-124.15882437533463,57.252557904555765],[-124.16690295789375,57.254034548017785],[-124.17211471579867,57.25646629524506],[-124.17492318706518,57.25813785905931],[-124.18053391352824,57.262673626829546],[-124.18357660175566,57.26816916493005],[-124.18231861070267,57.27227759930804],[-124.18089977766039,57.27382754288936],[-124.17886921301363,57.27601476849197],[-124.17687152892803,57.27833472542815],[-124.17649874891951,57.27844614110204],[-124.17586804017311,57.27843736398086],[-124.1753635223,57.278611970869946],[-124.17541480167387,57.278625017704044],[-124.17067760051914,57.284038176099926],[-124.17121815446234,57.28610644967959],[-124.17104377388354,57.28658276146723],[-124.17179171854137,57.28752938248898],[-124.17536168220624,57.28987081966732],[-124.17607121843342,57.290146413894234],[-124.17661183979953,57.290523924977975],[-124.17982522073129,57.29220999165414],[-124.17931279076802,57.29259080598374],[-124.1785125117881,57.2946964881577],[-124.1774529401334,57.295269265593475],[-124.17538406688281,57.29614304747684],[-124.17470476550928,57.29662355232742],[-124.17262338413455,57.29740854525432],[-124.1672066827415,57.29783299444233],[-124.16597073442296,57.297660987781875],[-124.16333808666317,57.29768019713809],[-124.16194214471166,57.29798466172336],[-124.15900466136308,57.29915658724794],[-124.15812719462741,57.299347201657],[-124.15554000676474,57.30126172446327],[-124.15486072032392,57.301562741077895],[-124.15331348559857,57.3027148612459],[-124.15298501754,57.30319235319494],[-124.1524742488357,57.30357309520734],[-124.15194680720803,57.30395472173966],[-124.15057402680311,57.30454642668255],[-124.15004655275712,57.30492804587222],[-124.14918467522592,57.30522197487647],[-124.14762184092962,57.30561812050725],[-124.14585130859942,57.305541524878684],[-124.14584328223027,57.30506489735481],[-124.14142591293896,57.304050460758226],[-124.13827478095786,57.30408424854857],[-124.13740480095964,57.30428716775538],[-124.13497164617176,57.30506098197699],[-124.13409473363669,57.30536244823455],[-124.13131648405012,57.30605280179035],[-124.12554087567335,57.30685389951724],[-124.12152955047354,57.307178842366675],[-124.11854536200902,57.30748700839549],[-124.11451691776914,57.30790343364039],[-124.11168665629951,57.30786944177124],[-124.11071865165064,57.30790707739201],[-124.10183818894953,57.31133988331436],[-124.098937727037,57.31229353322379],[-124.08963684815633,57.3126225938222],[-124.08386349177668,57.31317412598469],[-124.0837716191312,57.313182875046515],[-124.08329866303657,57.31333181762855],[-124.08311909174952,57.3131419459289],[-124.07841866057638,57.31479203996684],[-124.07494677958768,57.318365012943374],[-124.07022266841864,57.3259739713104],[-124.06959649828237,57.331162935174916],[-124.06961300480931,57.33116542051996],[-124.06969357331661,57.331175575791754],[-124.06977200772435,57.331186820888355],[-124.0698504421783,57.33119806593814],[-124.06992882002378,57.331210431373236],[-124.0700072545724,57.33122167632955],[-124.07008563251716,57.33123404167117],[-124.07016395386484,57.331247527398155],[-124.07024025442577,57.331259862096296],[-124.07031857588106,57.33127334773128],[-124.07039481990245,57.33128680277199],[-124.07047100733871,57.33130137820071],[-124.07054719483311,57.331315953585396],[-124.0706233823857,57.33133052892609],[-124.0706995133642,57.331346224655036],[-124.07077356691173,57.33136188979839],[-124.0708496980145,57.33137758544057],[-124.07092363843297,57.33139549136456],[-124.0709976355444,57.33141227681456],[-124.07106944198041,57.331431272551306],[-124.07114332598653,57.33145029878484],[-124.0712151325665,57.331469294442435],[-124.07128688260272,57.331489410493795],[-124.07135857610137,57.33151064693902],[-124.0714302696798,57.33153188334547],[-124.07149982922434,57.33155420961575],[-124.07156938885021,57.33157653584958],[-124.07163889195239,57.33159998247999],[-124.07170833853687,57.331624549506955],[-124.07177784181178,57.33164799606475],[-124.07184515446255,57.331673652927634],[-124.07191252380096,57.331698189323454],[-124.07197983663075,57.331723846118344],[-124.07204709295769,57.33175062331257],[-124.07211434937895,57.33177740047276],[-124.07218160589458,57.331804177599224],[-124.07224672839668,57.3318320446069],[-124.07231185099386,57.33185991158285],[-124.07237905120958,57.331887809043444],[-124.07244411741658,57.33191679638873],[-124.07250918372235,57.33194578370227],[-124.07257217259856,57.331974740471146],[-124.07263718252395,57.3320048481564],[-124.07270011502014,57.33203492529908],[-124.0727651251489,57.332065032922436],[-124.07282805784509,57.33209511000524],[-124.07289099064042,57.33212518705852],[-124.07295386696762,57.3321563845165],[-124.07301674339757,57.33218758194514],[-124.07307961993028,57.33221877934443],[-124.07314249656575,57.33224997671437],[-124.07320537330399,57.332281174055026],[-124.07326819358669,57.33231349180067],[-124.07332899298311,57.332344658581434],[-124.07339181347491,57.33237697626954],[-124.07345261307337,57.33240814299475],[-124.0735133562198,57.33244043012698],[-124.07357617702523,57.33247274772945],[-124.07363697692671,57.332503914371564],[-124.07369772038142,57.332536201421156],[-124.07375846393887,57.332568488443314],[-124.07381920759909,57.33260077543837],[-124.07388208546801,57.33263197246376],[-124.07394282933376,57.33266425940319],[-124.07400357330225,57.33269654631541],[-124.07406437390904,57.33272771276527],[-124.07412517461509,57.33275887918775],[-124.07418591888836,57.332791166018076],[-124.07424671979467,57.33282233238581],[-124.07430752080029,57.332853498726294],[-124.074368378432,57.33288354460407],[-124.0744291796344,57.33291471088966],[-124.07449003745944,57.33294475671255],[-124.07455083885864,57.332975922943376],[-124.07460961929088,57.333005938230244],[-124.07467042088516,57.333037104407246],[-124.07472914498909,57.33306824007782],[-124.0747878691888,57.33309937572275],[-124.07484653697108,57.33313163177813],[-124.0749052048525,57.333163887808055],[-124.07496179523635,57.33319611333722],[-124.07501838571568,57.333228338842645],[-124.0750749197839,57.33326168476076],[-124.07513151045592,57.3332939102192],[-124.07518804472005,57.33332725609029],[-124.07524457908292,57.33336060193788],[-124.07529903593678,57.33339391729192],[-124.07535343638692,57.33342835306044],[-124.07540789343241,57.33346166837123],[-124.07546229407728,57.33349610409663],[-124.07551669482028,57.33353053980039],[-124.07557109566143,57.3335649754826],[-124.07562341898151,57.33359938067834],[-124.07567782001702,57.3336338163183],[-124.0757301435276,57.33366822147335],[-124.07578454475745,57.33370265707095],[-124.07583681197356,57.33373818262219],[-124.07588913577047,57.33377258771677],[-124.0759434808105,57.33380814368829],[-124.07599580479939,57.33384254874238],[-124.07604807240361,57.33387807421351],[-124.07610039658265,57.33391247922778],[-124.07615266437993,57.333948004659206],[-124.07620498874905,57.33398240963397],[-124.07625725673938,57.33401793502574],[-124.07630958129863,57.33405233996065],[-124.07636184948204,57.33408786531284],[-124.07641417423139,57.33412227020799],[-124.07646644260788,57.334157795520625],[-124.07651876754733,57.334192200375995],[-124.07657109258108,57.334226605211505],[-124.07662543890252,57.33426216091391],[-124.07668191944431,57.334296626605415],[-124.07674053420742,57.334330002283366],[-124.0768011702771,57.33436452882006],[-124.07686394057603,57.33439796533741],[-124.07692671098494,57.334431401825626],[-124.07698948150376,57.33446483828475],[-124.07705427335145,57.33449942559513],[-124.07711704409385,57.33453286199514],[-124.07718183617254,57.33456744924447],[-124.07724247301846,57.33460197558413],[-124.07730310997405,57.33463650189665],[-124.0773595916815,57.3346709673072],[-124.07741601705078,57.33470655313257],[-124.07746615303793,57.334743168065685],[-124.07751421143628,57.334779752545664],[-124.07755805811665,57.334817396578885],[-124.07759774950523,57.33485497973107],[-124.07763322915552,57.33489362244467],[-124.07766034167086,57.3349332638575],[-124.07768324241859,57.33497396483984],[-124.07769991012142,57.3350145745233],[-124.0777081541952,57.335057303355406],[-124.07771432058483,57.33510000175666],[-124.07771835285152,57.33514379016613],[-124.07772244155927,57.335186458138054],[-124.0777264738444,57.33523024655038],[-124.0777284848585,57.33527288409338],[-124.0777325171597,57.33531667250852],[-124.07773447175337,57.33536043049342],[-124.07773642635155,57.33540418847996],[-124.0777363596645,57.33544679559727],[-124.07773831426924,57.33549055358683],[-124.07773813472039,57.33553540158548],[-124.07773801160305,57.33557912914662],[-124.07773788848543,57.33562285670927],[-124.07773568763413,57.33566655384192],[-124.07773556451356,57.33571028140782],[-124.07773330722223,57.33575509898279],[-124.07773110635806,57.33579879612006],[-124.07772884905621,57.33584361369822],[-124.07772457043643,57.33588728040694],[-124.07772231312171,57.33593209798823],[-124.07771803448452,57.33597576469979],[-124.07771369940421,57.3360205518523],[-124.07770936431375,57.33606533900639],[-124.07770502921312,57.336110126161834],[-124.0777006941023,57.336154913318865],[-124.07769635898134,57.336199700477266],[-124.07768994608534,57.33624445720497],[-124.07768353317434,57.33628921393398],[-124.07767712024827,57.33633397066421],[-124.07767278507932,57.3363787578285],[-124.07766429435104,57.3364234841288],[-124.07765788137988,57.33646824086306],[-124.07765146839368,57.336512997598575],[-124.07764297761058,57.33655772390242],[-124.07763650815545,57.336603601080675],[-124.07762801733469,57.33664832738673],[-124.07761952649403,57.336693053694034],[-124.07761305698774,57.336738930876116],[-124.0776045661094,57.336783657185684],[-124.07759607521116,57.33682838349625],[-124.07758545005572,57.33687419981437],[-124.07757695911496,57.336918926127126],[-124.07756841171532,57.33696477288138],[-124.07755992073443,57.33700949919626],[-124.07754929548518,57.33705531551818],[-124.07754080446178,57.33710004183507],[-124.07753017916438,57.337145858158806],[-124.07752168809844,57.337190584477895],[-124.0775110627529,57.33723640080347],[-124.07750043738187,57.33728221712994],[-124.07748986842714,57.33732691301645],[-124.07748132083157,57.33737275978029],[-124.07747075182938,57.33741745566858],[-124.07746012635957,57.337463271998494],[-124.07744950086425,57.33750908832928],[-124.07743893178707,57.33755378421998],[-124.07742830624113,57.33759960055243],[-124.07741975851053,57.337645447322465],[-124.0774091893608,57.33769014321577],[-124.07739856374118,57.33773595955096],[-124.07738799454155,57.337780655445755],[-124.07737736887132,57.337826471782684],[-124.07736679962181,57.33787116767913],[-124.07735617390094,57.33791698401765],[-124.07734554815458,57.33796280035703],[-124.07733497883007,57.338007496255905],[-124.07732643089605,57.33805334303501],[-124.07731586152408,57.33809803893572],[-124.07730523567892,57.33814385527857],[-124.07729466625707,57.33818855118087],[-124.07728611823411,57.33823439796419],[-124.07727554876482,57.33827909386819],[-124.07726705714843,57.338323820212096],[-124.07725643118185,57.338369636559406],[-124.07724793952292,57.33841436290546],[-124.07723736995911,57.33845905881302],[-124.07722882180673,57.33850490560269],[-124.07722033008537,57.33854963195187],[-124.07720976045177,57.3385943278621],[-124.07720126868816,57.33863905421324],[-124.07719277690468,57.33868378056551],[-124.07718422864842,57.338729627360706],[-124.07717781472697,57.33877438415576],[-124.07716932288588,57.33881911051141],[-124.0771608310249,57.33886383686823],[-124.07715441705345,57.338908593666986],[-124.07714800306694,57.33895335046711],[-124.0771415890654,57.338998107268495],[-124.07713511859404,57.33904398451345],[-124.07712870456216,57.33908874131752],[-124.07712431198165,57.33913464900665],[-124.07711784146639,57.33918052625572],[-124.0771114273913,57.339225283063946],[-124.0771070347743,57.33927119075756],[-124.07710056421513,57.339317068011],[-124.0770961715745,57.339362975707694],[-124.07708975744336,57.339407732521515],[-124.07708328684026,57.339453609779234],[-124.07707681622163,57.339499487038324],[-124.07707040204487,57.3395442438562],[-124.07706185344892,57.33959009067564],[-124.07705336129052,57.33963481705364],[-124.07704481265384,57.33968066387543],[-124.0770363204553,57.33972539025557],[-124.07702575028067,57.33977008619391],[-124.07701518008128,57.339814782133026],[-124.07700253189606,57.33985944762961],[-124.07698994014156,57.33990299268371],[-124.07697521393176,57.33994762773737],[-124.07696054414882,57.339991142347934],[-124.07694379636187,57.34003462651433],[-124.07692704853679,57.34007811068006],[-124.0769082226983,57.34012156440027],[-124.07688737530303,57.340163867231254],[-124.07686652786158,57.340206170060334],[-124.07684360239179,57.34024844244172],[-124.07681865535277,57.340289563931215],[-124.07679163027345,57.34033065497067],[-124.07675842763749,57.34037053422133],[-124.07671899095969,57.340410322121464],[-124.07667343316164,57.34044777777899],[-124.07662371928457,57.340485172523394],[-124.07656984931646,57.34052250634967],[-124.07651401419469,57.34055756881741],[-124.07645396649221,57.34059369080178],[-124.07639397515494,57.340628692316415],[-124.07632982769906,57.340663632896714],[-124.07626781461457,57.34069748345835],[-124.0762036669276,57.34073242397897],[-124.07613957560976,57.34076624402589],[-124.07607750570143,57.34080121494388],[-124.07601757018301,57.340835095849094],[-124.07595965608142,57.340870127631156],[-124.07590584141413,57.34090634075336],[-124.075854161159,57.34094146387292],[-124.07580865837492,57.34097779880334],[-124.07576725505227,57.34101531508829],[-124.07573208572323,57.34105292275197],[-124.07570309390618,57.34109174224262],[-124.07568241414694,57.34113068358547],[-124.07566785543747,57.341171957206804],[-124.07566160883125,57.34121335268645],[-124.07565530570999,57.341255868610865],[-124.0756511371147,57.34129729455756],[-124.07564899004905,57.34133987141398],[-124.0756489210215,57.341382478736676],[-124.07565093003899,57.341425116525606],[-124.07565288255911,57.341468874759684],[-124.07565489158559,57.341511512551634],[-124.07566100021928,57.341555331717984],[-124.07566710886701,57.341599150885685],[-124.07567321752875,57.341642970054735],[-124.075681404264,57.341686819689315],[-124.07569166907993,57.341730699789096],[-124.07570193391946,57.341774579889645],[-124.07571427684928,57.341818490454756],[-124.07572656330721,57.341863521464425],[-124.07573890629413,57.34190743203032],[-124.07575327088374,57.341952493504245],[-124.07576971358372,57.341997585440964],[-124.07578413474253,57.34204152647038],[-124.07580057751733,57.34208661840666],[-124.07581909841481,57.34213174080453],[-124.07583554126981,57.342176832739746],[-124.07585406225239,57.34222195513604],[-124.07587258327877,57.34226707753147],[-124.07589110434894,57.342312199925914],[-124.07591170355909,57.34235735278012],[-124.07593230281795,57.342402505632656],[-124.07595290212555,57.34244765848372],[-124.0759735014819,57.342492811333244],[-124.07599410088697,57.34253796418112],[-124.07601470034079,57.34258311702754],[-124.07603529984334,57.34262826987232],[-124.07605595588646,57.34267230227049],[-124.07607863360187,57.34271748557009],[-124.07609923325258,57.34276263840991],[-124.07611983295202,57.34280779124803],[-124.07614043270021,57.342852944084655],[-124.07616316711196,57.342897006931196],[-124.07618376695956,57.34294215976421],[-124.07620234521316,57.34298616169432],[-124.07622294515522,57.3430313145246],[-124.07624360163292,57.34307534690776],[-124.07626218002035,57.343119348834215],[-124.07628075845064,57.34316335075961],[-124.07629933692373,57.343207352684004],[-124.0763158372945,57.343251324153],[-124.07633441585088,57.34329532607558],[-124.07635299445009,57.34333932799707],[-124.0763715730921,57.34338332991753],[-124.07639015177698,57.343427331836935],[-124.07640878698736,57.34347021330941],[-124.07642736575741,57.3435142152267],[-124.07644594457032,57.343558217142935],[-124.07646452342605,57.34360221905815],[-124.07648315880536,57.34364510052621],[-124.07650381591546,57.34368913289054],[-124.07652239490164,57.343733134802314],[-124.07654310858379,57.34377604671743],[-124.0765616876576,57.3438200486267],[-124.0765824014311,57.34386296053877],[-124.07660305877359,57.34390699289543],[-124.07662163798025,57.34395099480092],[-124.07664235189222,57.34399390670811],[-124.07666300937476,57.34403793905998],[-124.07668372338043,57.34408085096365],[-124.07670438095774,57.34412488331219],[-124.07672509505713,57.34416779521236],[-124.07674575272922,57.34421182755759],[-124.07676646692232,57.34425473945428],[-124.0767871246892,57.344298771796126],[-124.076807838976,57.34434168368935],[-124.07682849683768,57.34438571602782],[-124.07684921121817,57.34442862791753],[-124.07687194738675,57.34447269069809],[-124.0768926618633,57.34451560258414],[-124.07691331991695,57.3445596349155],[-124.07693611270645,57.344602577242455],[-124.07695677085734,57.34464660957009],[-124.07697748552363,57.34468952144885],[-124.07700022199573,57.344733584216605],[-124.07702093675807,57.34477649609157],[-124.07704165156703,57.34481940796474],[-124.07706438819058,57.344863470726025],[-124.07708510309558,57.344906382595404],[-124.07710783982111,57.34495044535231],[-124.07712855482218,57.34499335721789],[-124.07714921340659,57.345037389529324],[-124.0771720067468,57.34508033183223],[-124.0771927218905,57.34512324369228],[-124.07721545886946,57.345167306438434],[-124.07723617410925,57.34521021829458],[-124.07725683293519,57.34525425059695],[-124.077279626526,57.345297192888786],[-124.07730028544918,57.345341225187404],[-124.07732100087873,57.34538413703632],[-124.07734373816122,57.34542819976969],[-124.07736445368681,57.345471111614835],[-124.077385169259,57.34551402345811],[-124.07740582842133,57.345558055748015],[-124.07742862236123,57.34560099802463],[-124.07744928162074,57.34564503031076],[-124.07746999738269,57.345687942146874],[-124.07749065673703,57.34573197442977],[-124.07751137259271,57.345774886262305],[-124.07755072615556,57.34586067948756],[-124.07763385768763,57.34586189685332],[-124.0777190110658,57.345864265047354],[-124.07780214261103,57.345865482306586],[-124.07788521771874,57.345867819961974],[-124.07796834927701,57.34586903711609],[-124.07805355912976,57.34587028464447],[-124.0781366906988,57.34587150169187],[-124.0782219569955,57.34587162866207],[-124.07830716686232,57.34587287602582],[-124.07839237673471,57.34587412333423],[-124.07847764303813,57.34587425013843],[-124.07856290934211,57.345874376887195],[-124.07864817564668,57.34587450358058],[-124.07873344195181,57.34587463021867],[-124.07881870825749,57.34587475680135],[-124.07890605285384,57.345874913742016],[-124.07899131916072,57.345875040212654],[-124.07907664187606,57.34587404617866],[-124.07916398647183,57.34587420294776],[-124.07925138747106,57.34587323920949],[-124.07933671017561,57.345872245006504],[-124.07942411116599,57.3458712811532],[-124.07951151215197,57.34587031724185],[-124.07959891313354,57.34586935327216],[-124.07968631411069,57.345868389244444],[-124.0797737150834,57.34586742515843],[-124.07986111605173,57.34586646101431],[-124.0799485733979,57.34586437636243],[-124.08003597435481,57.345863412101934],[-124.08012343168441,57.345861327333544],[-124.0802129109203,57.345860393349334],[-124.08030036823332,57.345858308463086],[-124.0803878255368,57.34585622351858],[-124.08047736112096,57.34585416890444],[-124.08056476204113,57.34585320429195],[-124.08065429760866,57.34585114955718],[-124.0807417548764,57.34584906437695],[-124.08083129042471,57.34584700952147],[-124.08092088231706,57.345843834154884],[-124.08100833955345,57.34584174879718],[-124.08109787507024,57.34583969375989],[-124.08118741057737,57.34583763866155],[-124.08127492412832,57.34583443267619],[-124.08136445961358,57.345832377457086],[-124.08145399508919,57.34583032217706],[-124.08154358689055,57.345827146385645],[-124.08163312234421,57.34582509098347],[-124.0817227141184,57.34582191506983],[-124.08181224955017,57.34581985954549],[-124.08190184129715,57.34581668350965],[-124.08199143302924,57.34581350741269],[-124.08208096842681,57.34581145170511],[-124.08217056013169,57.34580827548593],[-124.08226015182166,57.34580509920575],[-124.08234968718504,57.34580304331497],[-124.08243927884781,57.345799866912515],[-124.08252887049566,57.34579669044897],[-124.08261840582485,57.34579463437495],[-124.08270799744552,57.34579145778921],[-124.08279758905128,57.34578828114231],[-124.08288718064213,57.34578510443425],[-124.08297671592483,57.345783048115976],[-124.08306630748848,57.34577987128575],[-124.08315589903721,57.34577669439441],[-124.08324549057102,57.345773517441934],[-124.08333502580722,57.34577146087936],[-124.08342461731385,57.3457682838047],[-124.08351420880557,57.34576510666888],[-124.08360374400755,57.34576304992303],[-124.08369333547205,57.34575987266508],[-124.08378292692166,57.34575669534601],[-124.08387246208942,57.34575463841695],[-124.08396205351183,57.345751460975656],[-124.08405158865764,57.345749403924486],[-124.08414118005284,57.34574622636095],[-124.08423077143311,57.345743048736374],[-124.08432030654474,57.34574099150201],[-124.08440984164669,57.345738934206565],[-124.08449735470053,57.34573572607382],[-124.08458688978058,57.34573366865766],[-124.08467642485103,57.34573161118046],[-124.08476601615241,57.34572843319072],[-124.08485347291415,57.34572634527214],[-124.08494300795302,57.345724287613294],[-124.08503046469559,57.34572219957678],[-124.08511999971516,57.34572014179716],[-124.08520953472511,57.34571808395649],[-124.08529699143888,57.345715995742616],[-124.08538444814306,57.345713907470454],[-124.0854739269043,57.34571296990129],[-124.08556138359187,57.34571088151136],[-124.08564884026985,57.3457087930631],[-124.08573831901262,57.345707855313776],[-124.085825775674,57.34570576674774],[-124.08591317611891,57.34570479857542],[-124.08600057655936,57.34570383034493],[-124.08608803319717,57.34570174160415],[-124.0861754336262,57.345700773257285],[-124.08626283405079,57.3456998048523],[-124.08635023447094,57.345698836389126],[-124.08643550040864,57.345698958025814],[-124.08652290082247,57.34569798944763],[-124.08661030123189,57.345697020811365],[-124.08669556716636,57.34569714227914],[-124.08678296756943,57.34569617352792],[-124.08686823350256,57.34569629488359],[-124.08695349943625,57.34569641618393],[-124.0870408436573,57.34569656771349],[-124.08712610959215,57.34569668890177],[-124.08721137552752,57.34569681003467],[-124.08729664146344,57.34569693111213],[-124.08738190739987,57.345697052134305],[-124.0874671171756,57.3456982935537],[-124.08755030482828,57.34569838418861],[-124.08763551461246,57.345699625498796],[-124.08772072440215,57.34570086675366],[-124.08780385590964,57.34570207768072],[-124.08788906571027,57.34570331882644],[-124.08797219722845,57.34570452964695],[-124.08805527260787,57.34570686086776],[-124.08813840413902,57.34570807158298],[-124.0882214795363,57.345710402698685],[-124.08830455494372,57.3457127337618],[-124.08838763036131,57.345715064772385],[-124.08846862749989,57.34571736546836],[-124.0885516468081,57.345720816828354],[-124.08863472225836,57.345723147682584],[-124.08871566330433,57.34572656867936],[-124.0887966604871,57.34572886917308],[-124.08887760155973,57.345732290070046],[-124.08895848652932,57.34573683137065],[-124.08903942763332,57.34574025216794],[-124.08912036875185,57.34574367291537],[-124.08920125377443,57.34574821406638],[-124.08928006052457,57.34575272491846],[-124.08936094558536,57.34575726597115],[-124.08943975237307,57.34576177672736],[-124.08951850307825,57.34576740788998],[-124.08959730990551,57.34577191855171],[-124.08967606065487,57.34577754961984],[-124.08975481142744,57.34578318064081],[-124.08983148392919,57.345788781374125],[-124.0899102347479,57.34579441230195],[-124.08998685120754,57.345801133398375],[-124.09006346769416,57.34580785445017],[-124.09014216250351,57.34581460569283],[-124.09021670074839,57.34582129641973],[-124.09029331731598,57.34582801733753],[-124.09036987783426,57.34583585866479],[-124.09044436008647,57.34584366971662],[-124.09052092066722,57.34585151095583],[-124.09059540298087,57.3458593219221],[-124.090669885325,57.34586713284625],[-124.0907443116343,57.345876064182306],[-124.09081873797842,57.345884995476396],[-124.09089108605673,57.34589389650468],[-124.09096551246999,57.34590282771559],[-124.09103780455958,57.3459128491175],[-124.0911100966871,57.345922870479654],[-124.09118238885259,57.34593289180217],[-124.09125468105606,57.34594291308494],[-124.0913248389449,57.34595402456574],[-124.09139707517947,57.34596516622479],[-124.09146723315065,57.345976277629816],[-124.09153739116269,57.34598738899738],[-124.09160749317539,57.34599962078219],[-124.09167765127117,57.34601073207506],[-124.09174567506336,57.346022933575206],[-124.09181572117397,57.346036285704066],[-124.09188374505585,57.34604848713296],[-124.09195171295104,57.346061808981645],[-124.09201968089369,57.34607513079521],[-124.09208551454535,57.34608954282406],[-124.09215348258407,57.34610286456877],[-124.09221931633408,57.34611727653088],[-124.09228509411332,57.34613280891522],[-124.09235092796469,57.34614722081168],[-124.09241670584908,57.34616275313055],[-124.09248040546966,57.34617825521815],[-124.09254618346026,57.34619378747254],[-124.09260982717413,57.34621040995296],[-124.09267347094347,57.34622703240297],[-124.09273503644708,57.34624362462778],[-124.09279862432074,57.346261367472934],[-124.0928579996033,57.34628017035799],[-124.09291945326864,57.346299003408134],[-124.09297663834298,57.346320016959694],[-124.09303382348031,57.34634103048677],[-124.09309095268343,57.34636316444491],[-124.09314600362363,57.34638526819073],[-124.09319886430903,57.346409582638316],[-124.0932517250618,57.346433897064955],[-124.0933045298909,57.34645933192681],[-124.09335525645561,57.34648473658327],[-124.09340384876344,57.346511231492684],[-124.09345238515196,57.34653884684066],[-124.0935008656253,57.34656758262742],[-124.09354726783062,57.346596288215345],[-124.0935915357803,57.3466260840628],[-124.0936378261619,57.34665703053238],[-124.09367995992638,57.3466879166275],[-124.09372411612776,57.346719953344994],[-124.09376613807571,57.34675308032661],[-124.09380608174507,57.346786177118176],[-124.09384596950802,57.34682039435494],[-124.09388585734254,57.34685461158051],[-124.09392361091784,57.346889919075785],[-124.09396130859058,57.346926347017906],[-124.09399900633527,57.34696277495013],[-124.0940346257886,57.3469991726988],[-124.09407018934048,57.347036690895564],[-124.09410361862633,57.34707529936783],[-124.09413704797983,57.34711390783278],[-124.09417047740097,57.347152516290464],[-124.09420177255005,57.347192215026446],[-124.09423301179936,57.347233034213275],[-124.09426425111549,57.34727385339409],[-124.09429549049842,57.34731467256878],[-124.09432459560284,57.347356582025206],[-124.09435370077118,57.347398491476625],[-124.09438275004264,57.34744152138024],[-124.09440972098956,57.34748452111101],[-124.09443663603786,57.34752864129508],[-124.09446360710706,57.347571641017765],[-124.09448838792386,57.34761685148461],[-124.09451530315646,57.34766097165732],[-124.09454008409251,57.347706182117705],[-124.0945648650873,57.347751392575056],[-124.09458751177829,57.347797693321915],[-124.09461223693401,57.347844024231435],[-124.09463488373741,57.347890324973605],[-124.09465753059578,57.347936625713665],[-124.09468012155624,57.34798404690939],[-124.09470271257283,57.348031468103095],[-124.09472322522288,57.34807885913171],[-124.09474581634916,57.348126280321765],[-124.09476627315307,57.348174791805285],[-124.09478673000899,57.34822330328775],[-124.09480718691691,57.348271814768815],[-124.09482764387685,57.3483203262487],[-124.09484596650168,57.34836992802444],[-124.09486642356349,57.34841843950211],[-124.09488474628583,57.348468041276504],[-124.0949051475025,57.34851767321054],[-124.09492347032278,57.34856727498351],[-124.09494179319071,57.348616876755905],[-124.09496006016062,57.34866759898646],[-124.09497838312426,57.34871720075782],[-124.09499670613553,57.34876680252873],[-124.09501497325019,57.34881752475791],[-124.09503324041339,57.34886824698654],[-124.0950515635685,57.348917848755924],[-124.09506775235695,57.34896854082601],[-124.0950860196626,57.34901926305365],[-124.0951043429588,57.349068864821824],[-124.0951226103611,57.34911958704851],[-124.09513879932952,57.3491702791183],[-124.09515706682615,57.349221001344375],[-124.09517539031155,57.34927060311082],[-124.09519365790486,57.34932132533606],[-124.09521192554672,57.349372047560784],[-124.09523024917596,57.34942164932573],[-124.09524643841551,57.34947234139478],[-124.09526476213779,57.349521943159],[-124.09528308590768,57.34957154492268],[-124.09530348823233,57.34962117683979],[-124.09532175616371,57.34967189906172],[-124.09534013601575,57.34972038036381],[-124.0953584599789,57.34976998212512],[-124.09537886250769,57.34981961403855],[-124.09539932102406,57.34986812549085],[-124.0954176451351,57.34991772724979],[-124.09543810375338,57.349966238700134],[-124.09545856242366,57.35001475014918],[-124.09547907707845,57.35006214113673],[-124.09550161438618,57.35011068273403],[-124.095522129146,57.35015807371869],[-124.09554472249593,57.350205494852034],[-124.09556523736025,57.350252885833726],[-124.09558788674951,57.35029918650303],[-124.09561261474053,57.350345517319255],[-124.09563526424222,57.3503918179839],[-124.0956579137989,57.35043811864643],[-124.09568269789209,57.350483328994216],[-124.09570748204399,57.35052853933893],[-124.09573226625463,57.35057374968071],[-124.09575918501089,57.35061786970547],[-124.09578610382938,57.350661989726326],[-124.09581307863374,57.35070498928237],[-124.09583999757602,57.3507491092953],[-124.09586702842483,57.350790988382485],[-124.0958960819852,57.35083401807112],[-124.09592519153169,57.35087592729381],[-124.09595216664398,57.350918926828776],[-124.0959791977362,57.350960805898765],[-124.09600617296935,57.35100380542575],[-124.09603106967796,57.35104677480627],[-124.09605596644265,57.351089744183575],[-124.0960808632634,57.35113271355772],[-124.09610570422448,57.35117680339005],[-124.09613060115802,57.3512197727578],[-124.09615544223328,57.3512638625838],[-124.09617826068,57.35130680180518],[-124.09620310186698,57.351350891625394],[-124.09622799902375,57.3513938609808],[-124.09625076171804,57.351437920655826],[-124.0962756589853,57.35148089000525],[-124.09630055630862,57.35152385935164],[-124.09632539777817,57.351567949156475],[-124.09635029521431,57.351610918496455],[-124.0963751927065,57.35165388783318],[-124.09640009025479,57.35169685716669],[-124.09642706648253,57.35173985663323],[-124.0964540427711,57.35178285609569],[-124.09648107502608,57.35182473509203],[-124.09650805143549,57.35186773454637],[-124.09653716244262,57.35190964366894],[-124.0965662735137,57.35195155278654],[-124.09659751918855,57.35199237157032],[-124.09662870902864,57.35203431081037],[-124.09666203347989,57.352075159714474],[-124.09669541390227,57.35211488814905],[-124.09672873849532,57.352155737038856],[-124.09676627635463,57.352195525720866],[-124.09680173564152,57.352235284263145],[-124.0968414082038,57.35227398259372],[-124.09688108084657,57.35231268091354],[-124.09692075356979,57.35235137922267],[-124.09696256092505,57.35238898718586],[-124.09700639113292,57.35242774572687],[-124.0970502773197,57.352465383791554],[-124.09709416359303,57.35250302184266],[-124.09713804995295,57.35254065988039],[-124.09718401506912,57.352578328028784],[-124.09723211483256,57.35261490582257],[-124.09727808013102,57.352652573940276],[-124.09732618007823,57.35268915170182],[-124.09737428011762,57.35272572944684],[-124.09742445892917,57.35276233729583],[-124.09747469371486,57.3527978246632],[-124.09752487271751,57.35283443247598],[-124.09757718637738,57.35286994992507],[-124.09762742144677,57.35290543723725],[-124.09767973529944,57.352940954647536],[-124.09773412794128,57.35297650215362],[-124.09778649785974,57.35301089905983],[-124.09784089070075,57.35304644652366],[-124.09789533950907,57.35308087350219],[-124.0979497884156,57.35311530045917],[-124.09800637198467,57.353148637041706],[-124.09806289979143,57.353183094064875],[-124.09811948355984,57.35321643060053],[-124.0981760674271,57.35324976711275],[-124.09823265139325,57.353283103601456],[-124.09828923545824,57.35331644006665],[-124.0983479541878,57.353348686150035],[-124.09840667301658,57.35338093220789],[-124.09846539194464,57.35341317824042],[-124.09852411097192,57.35344542424754],[-124.09858283009845,57.353477670229196],[-124.09864160516888,57.353508795720956],[-124.09870245905846,57.353539951287374],[-124.09876123432241,57.35357107672711],[-124.0988221442485,57.35360111177491],[-124.09888299843273,57.353632267260004],[-124.09894396438834,57.35366118178793],[-124.09900487460207,57.35369121675322],[-124.09906786364513,57.35372128178542],[-124.09912882988306,57.35375019622964],[-124.09919193077894,57.35377802027365],[-124.09925705467803,57.35380699484461],[-124.09932015576135,57.35383481882833],[-124.09938527985474,57.35386379333707],[-124.09945051568998,57.353890526883625],[-124.09951569579702,57.35391838086364],[-124.09958087599924,57.35394623481196],[-124.09964819086005,57.35397299834838],[-124.09971342706618,57.353999731766635],[-124.09978074211436,57.35402649523634],[-124.09984805725695,57.35405325867209],[-124.09991537249398,57.35408002207392],[-124.09998274363157,57.35410566497605],[-124.10005005905553,57.35413242831011],[-124.10011743037617,57.35415807114425],[-124.10018682474661,57.3541848644871],[-124.10025419625175,57.354210507252226],[-124.10032156784744,57.35423614998333],[-124.10039101829761,57.35426182275395],[-124.10046041304884,57.35428861595456],[-124.10052778492104,57.35431425858148],[-124.10059723565212,57.35433993124476],[-124.10066460770688,57.354365573802674],[-124.10073405862339,57.35439124639465],[-124.10080143086068,57.354416888883435],[-124.10087082618213,57.354443681870514],[-124.10093819860391,57.35446932429025],[-124.10100764989338,57.35449499673971],[-124.10107496672302,57.354521759556974],[-124.10114233941987,57.35454740187368],[-124.10120965643645,57.35457416462298],[-124.10127702931632,57.35459980687166],[-124.10134434651981,57.354626569553076],[-124.10141166381776,57.35465333220063],[-124.10147898121014,57.354680094814256],[-124.10154416414666,57.35470794780569],[-124.10161148172831,57.35473471035256],[-124.10167666485486,57.354762563279564],[-124.10174184807657,57.35479041617473],[-124.10180703139346,57.35481826903823],[-124.1018722148055,57.35484612186995],[-124.10193526376428,57.354875065088265],[-124.10200044736693,57.35490291785765],[-124.10206349651683,57.35493186101577],[-124.10212654576235,57.35496080414422],[-124.10218953936091,57.35499086771069],[-124.10225258879954,57.35501981078015],[-124.10231563833385,57.355048753819865],[-124.10237863222656,57.35507881729782],[-124.10243954740689,57.35510885070518],[-124.10250254149645,57.35513891412511],[-124.10256345687024,57.355168947476486],[-124.10262645115667,57.35519901083847],[-124.10268736672391,57.35522904413384],[-124.10274828238704,57.35525907740169],[-124.1028112769679,57.3552891406773],[-124.1028721928245,57.35531917388918],[-124.10293305305571,57.355350327541615],[-124.10299396910584,57.355380360698646],[-124.10305488525191,57.35541039382796],[-124.10311574577776,57.355441547398186],[-124.10317666211735,57.35547158047265],[-124.103239601674,57.355502764016364],[-124.1033005182088,57.35553279703487],[-124.1033614348395,57.355562830025875],[-124.10342229585879,57.355593983457936],[-124.10348321268303,57.35562401639396],[-124.10354412960318,57.35565404930237],[-124.10360712546317,57.35568411220608],[-124.10366804257677,57.35571414505869],[-124.10376958987838,57.35576382626211],[-124.10378820618644,57.355807824748446],[-124.10380687823381,57.3558507027648],[-124.10382757348285,57.35589473126819],[-124.10384618992161,57.35593872975114],[-124.10386688526377,57.35598275825151],[-124.10388550179083,57.35602675673198],[-124.10390625291986,57.356069664760184],[-124.10392694840235,57.35611369325591],[-124.10394764393256,57.35615772174988],[-124.1039662606381,57.35620172022526],[-124.10398701195314,57.356244628246905],[-124.10400978650088,57.35628868675245],[-124.10403048222163,57.356332715239745],[-124.10405123368011,57.35637562325581],[-124.10407192949582,57.35641965173982],[-124.1040926253593,57.35646368022208],[-124.10411540015976,57.3565077387173],[-124.10413615180893,57.35655064672617],[-124.10415892671158,57.356594705216985],[-124.10417962277039,57.3566387336919],[-124.10420239777578,57.35668279217839],[-124.10422314961802,57.356725700179645],[-124.10424592472559,57.3567697586618],[-124.1042686998858,57.35681381714147],[-124.10428939619013,57.35685784560706],[-124.10431222713618,57.3569007836123],[-124.10433500245112,57.356944842085255],[-124.10435777781869,57.35698890055595],[-124.10437853000214,57.357031808543525],[-124.10440130547185,57.357075867009875],[-124.10442408099418,57.35711992547373],[-124.10444685656911,57.35716398393529],[-124.10446968787556,57.35720692192399],[-124.10449246355508,57.35725098038074],[-124.10451316035476,57.35729500882695],[-124.10453593613707,57.3573390672794],[-124.10455876764856,57.35738200525879],[-124.10458154353543,57.35742606370649],[-124.10460431947494,57.35747012215189],[-124.10462709546704,57.35751418059483],[-124.10464784823907,57.35755708855844],[-124.10467062433335,57.357601146997034],[-124.10469340048023,57.35764520543332],[-124.1047162323521,57.357688143396224],[-124.10473900860357,57.35773220182765],[-124.10475970594882,57.357776230252405],[-124.1047824823031,57.357820288679626],[-124.10480531437997,57.35786322663319],[-124.10482601187282,57.35790725505223],[-124.10484878838187,57.35795131347267],[-124.10486948597266,57.35799534188803],[-124.10489231825223,57.358038279832655],[-124.10491301594041,57.35808230824442],[-124.10493579265444,57.35812636665604],[-124.10495654610662,57.35816927459257],[-124.10497724394,57.35821330299881],[-124.10500002080639,57.35825736140412],[-124.10502071873772,57.358301389806776],[-124.1050414723806,57.35834429773598],[-124.10506217040692,57.358388326135305],[-124.10508286848102,57.35843235453292],[-124.1051035666029,57.35847638292877],[-124.10512432043416,57.35851929085112],[-124.105142939649,57.35856328924533],[-124.1051636379112,57.358607317636505],[-124.1051843362212,57.358651346026086],[-124.10520301122925,57.35869422394439],[-124.1052216306202,57.35873822233374],[-124.10524232906813,57.35878225071897],[-124.10526094854738,57.35882624910586],[-124.10527956806958,57.358870247491815],[-124.1052982432918,57.35891312540434],[-124.10531686289941,57.35895712378814],[-124.10533548254996,57.3590011221708],[-124.10535410224345,57.359045120552636],[-124.10537069860423,57.35908796846595],[-124.10538931838073,57.359131966845766],[-124.10540585916452,57.35917593523036],[-124.10542239998647,57.3592199036145],[-124.10543894084651,57.35926387199807],[-124.10545553739772,57.359306719908346],[-124.10547207833362,57.359350688290995],[-124.10548861930762,57.359394656673075],[-124.10550516031975,57.35943862505468],[-124.105519677969,57.359481442970214],[-124.10553413999979,57.359525381358935],[-124.10555068112106,57.359569349739516],[-124.10556514322087,57.35961328812795],[-124.105579605354,57.359657226516354],[-124.10559198845606,57.359701134913465],[-124.10560650630262,57.35974395282872],[-124.10561888946378,57.359787861226444],[-124.10563335172498,57.359831799615215],[-124.10564573494555,57.359875708013504],[-124.1056581181946,57.35991961641233],[-124.10567050147218,57.35996352481152],[-124.10568086134454,57.36000628274759],[-124.10569324467642,57.36005019114781],[-124.10570354895088,57.360094069558905],[-124.10571385324907,57.36013794797075],[-124.10572415757096,57.360181826383304],[-124.10573446191655,57.36022570479676],[-124.10574274283638,57.360268432748114],[-124.10575304722673,57.36031231116316],[-124.10576127254056,57.36035615959035],[-124.10576949787333,57.36040000801867],[-124.10577564411996,57.36044382645958],[-124.10577971127331,57.36048761491347],[-124.10578169932624,57.360531373380475],[-124.10577952915938,57.36057507187228],[-124.10577735898754,57.36061877036573],[-124.1057710305769,57.36066240888368],[-124.10576262303249,57.36070601741432],[-124.10575421546886,57.36074962594604],[-124.10574164963796,57.3607931745008],[-124.10572908377837,57.3608367230559],[-124.10571443876138,57.360880241622056],[-124.10569771457982,57.36092373019835],[-124.10567891122673,57.36096718878423],[-124.10566010783076,57.36101064736897],[-124.10563916960363,57.361055196436446],[-124.10561828697847,57.36109862502779],[-124.10559532516281,57.361142023625916],[-124.10557028414969,57.36118539223002],[-124.10554524307962,57.36122876083082],[-124.10552014629863,57.36127324990313],[-124.10549302596152,57.36131658850467],[-124.10546590556284,57.361359927102086],[-124.1054387851025,57.36140326569551],[-124.10540958542121,57.361446574290696],[-124.10538033001518,57.36149100335569],[-124.10535320936448,57.36153434193614],[-124.10532400948571,57.36157765051692],[-124.1052947538795,57.361622079567624],[-124.10526555386721,57.36166538813856],[-124.10523635378863,57.36170869670454],[-124.10520923281958,57.36175203526304],[-124.105179976946,57.361796464294656],[-124.10515285585053,57.36183980284465],[-124.10512573469344,57.36188314139064],[-124.10510069266,57.36192650993167],[-124.10507351571388,57.361970968945016],[-124.10504847356344,57.36201433747932],[-124.10502551054846,57.36205773601075],[-124.1050024918108,57.362102255014875],[-124.10498160788771,57.36214568354247],[-124.10496072391706,57.36218911206823],[-124.1049419191007,57.36223257059402],[-124.10492305856847,57.36227714959402],[-124.10490425366582,57.36232060811749],[-124.10488336951136,57.362364036637295],[-124.10486456452065,57.36240749515819],[-124.1048457594871,57.362450953677936],[-124.10482689873457,57.362495532672185],[-124.1048060143963,57.36253896118595],[-124.10478720923125,57.36258241970205],[-124.10476632480021,57.3626258482126],[-124.10474751954713,57.362669306726204],[-124.10472657934393,57.362713855709224],[-124.10470777400218,57.36275731422026],[-124.10468896861758,57.36280077273013],[-124.10466808395519,57.362844201232896],[-124.10464927848255,57.36288765974023],[-124.10462833804476,57.36293220871567],[-124.10460953248348,57.36297566722053],[-124.10459072687931,57.36301912572418],[-124.10456984198554,57.36306255421918],[-124.10455098060821,57.36310713319622],[-124.10453217487255,57.363150591696225],[-124.10451336909404,57.363194050195084],[-124.10449248401642,57.363237478684084],[-124.10447362246221,57.36328205765649],[-124.10445481655219,57.36332551615171],[-124.10443601059931,57.363368974645724],[-124.10441928386935,57.3634124631487],[-124.10440042214307,57.36345704211705],[-124.1043816160634,57.36350050060806],[-124.10436488921374,57.363543989108905],[-124.10434602735887,57.363588568074235],[-124.10432930043001,57.363632056573614],[-124.10431251777007,57.36367666554883],[-124.1042957907644,57.36372015404709],[-124.10427906372057,57.36376364254479],[-124.10426228094398,57.36380825151847],[-124.10424555382335,57.363851740015086],[-124.10423085026076,57.363896379000664],[-124.10421412306567,57.36393986749641],[-124.10419941943235,57.363984506481756],[-124.10418471576462,57.36402914546706],[-124.10417006776021,57.36407266397569],[-124.10415536402414,57.36411730296096],[-124.10414279525872,57.36416085148391],[-124.10412809145674,57.364205490469345],[-124.10411546693153,57.364250159469734],[-124.10410284237673,57.36429482847045],[-124.10409027349284,57.364338376994695],[-124.104075569561,57.3643830159809],[-124.10406294491554,57.364427684982694],[-124.10404829661918,57.364471203492045],[-124.1040356719126,57.36451587249454],[-124.10402304717643,57.36456054149743],[-124.10400834308027,57.364605180484276],[-124.10399577398626,57.36464872901064],[-124.1039810698242,57.364693367997674],[-124.10396844496536,57.36473803700188],[-124.10395582007695,57.36478270600655],[-124.10394117152207,57.36482622451675],[-124.10392854657255,57.364870893521946],[-124.10391384224616,57.364915532509634],[-124.10390121723509,57.36496020151562],[-124.10388656854975,57.36500372002609],[-124.10387394347754,57.36504838903266],[-124.10385923901887,57.365093028020794],[-124.10384661388507,57.365137697028025],[-124.10383190936,57.3651823360164],[-124.1038193398744,57.36522588454674],[-124.1038046352834,57.36527052353527],[-124.10379201002694,57.36531519254387],[-124.10377730536955,57.365359831532665],[-124.10376468005154,57.36540450054186],[-124.1037499753277,57.365449139530895],[-124.10373740566068,57.36549268806295],[-124.10372270087095,57.36553732705221],[-124.10371007543024,57.365581996062794],[-124.10369744995997,57.36562666507373],[-124.10368274507185,57.3656713040635],[-124.10367011954,57.36571597307512],[-124.1036554703008,57.365759491587035],[-124.10364284470784,57.36580416059929],[-124.10362813968737,57.36584879958948],[-124.10361551403287,57.365893468602366],[-124.103600808946,57.36593810759283],[-124.1035881832299,57.365982776606415],[-124.1035756132023,57.366026325142144],[-124.10356090801754,57.366070964133016],[-124.10354828221074,57.36611563314774],[-124.10353565637438,57.3661603021628],[-124.10352095109121,57.366204941154116],[-124.10350832519329,57.36624961016999],[-124.1034956992658,57.36629427918617],[-124.10348099388422,57.366338918178016],[-124.10346842361687,57.36638246671636],[-124.10345579759868,57.36642713573358],[-124.10344317155092,57.366471804751384],[-124.10342846603943,57.36651644374381],[-124.1034158399301,57.36656111276221],[-124.1034032137912,57.3666057817811],[-124.10339058762273,57.366650450800414],[-124.10337796142467,57.366695119820136],[-124.10336539092232,57.36673866836145],[-124.10335276466559,57.36678333738202],[-124.10333805892819,57.36682797637583],[-124.10332543260986,57.36687264539708],[-124.10331280626197,57.36691731441872],[-124.10330017988453,57.36696198344088],[-124.10328755347749,57.36700665246342],[-124.10327700650406,57.36705135151456],[-124.1032643800403,57.36709602053821],[-124.10325180927617,57.36713956908313],[-124.1032391827537,57.36718423810756],[-124.10322655620169,57.36722890713253],[-124.10321392962008,57.36727357615777],[-124.10320338248657,57.36731827521286],[-124.10319075584825,57.36736294423929],[-124.10317812918035,57.36740761326622],[-124.10316550248287,57.367452282293485],[-124.10315501097575,57.36749586087189],[-124.10314238422202,57.36754052990018],[-124.10313183693086,57.367585228959456],[-124.10311921012038,57.367629897988806],[-124.10310866277736,57.36767459704949],[-124.10309603591016,57.367719266079945],[-124.10308548851526,57.36776396514213],[-124.10307286159134,57.36780863417366],[-124.10306236988038,57.36785221275753],[-124.1030518224093,57.367896911821816],[-124.10304127491347,57.36794161088703],[-124.10302864787897,57.36798627992086],[-124.10301810033127,57.36803097898752],[-124.10300755275885,57.3680756780549],[-124.10299700516171,57.36812037712308],[-124.10298651327837,57.3681639557121],[-124.10297596563215,57.36820865478193],[-124.10296541796123,57.368253353852545],[-124.1029548702656,57.368298052923876],[-124.10294432254524,57.368342751996074],[-124.10293377480015,57.368387451069154],[-124.10292536230922,57.36843105969646],[-124.10291481451749,57.36847575877118],[-124.10290426670106,57.36852045784677],[-124.10289579840531,57.368565186957426],[-124.10288525054186,57.368609886034726],[-124.10287678220395,57.3686546151475],[-124.10286629003629,57.36869819374622],[-124.10285782165654,57.36874292286086],[-124.10284727369945,57.36878762194176],[-124.10283880527756,57.36883235105863],[-124.10283033683581,57.36887708017656],[-124.10282192411862,57.36892068881497],[-124.10281345563746,57.36896541793507],[-124.10280498713642,57.36901014705633],[-124.10279651861555,57.36905487617864],[-124.1027880500748,57.36909960530215],[-124.1027796372602,57.369143213945875],[-124.10277116868004,57.369187943071466],[-124.10276270008,57.36923267219826],[-124.10275423146012,57.3692774013261],[-124.10274789815415,57.36932104001076],[-124.1027394294973,57.369365769140884],[-124.10273304041196,57.36941052830899],[-124.1027245717178,57.36945525744155],[-124.10271823834834,57.36949889613111],[-124.10270976961723,57.36954362526604],[-124.10270338046728,57.36958838443934],[-124.10269699130235,57.36963314361388],[-124.10269065787182,57.3696767823086],[-124.10268426867715,57.36972154148588],[-124.10267787946748,57.36976630066454],[-124.10257612355926,57.36984556351445],[-124.12892657609808,57.40001060593253],[-124.13353186575036,57.40527556108072],[-124.13348770908539,57.40532651433884],[-124.13345445426665,57.40536753059324],[-124.1334211993763,57.405408546840654],[-124.13338794441437,57.40544956308111],[-124.13335463448071,57.4054916998422],[-124.13332137937456,57.40553271606863],[-124.1332901508835,57.40557488236995],[-124.13325689563536,57.405615898583],[-124.13322566700475,57.40565806487195],[-124.13319449321018,57.40569911062709],[-124.13316326444233,57.40574127690412],[-124.13313203560537,57.40578344317532],[-124.1331008066993,57.40582560944055],[-124.13306957772413,57.4058677756999],[-124.13303834867985,57.40590994195325],[-124.13300711956646,57.40595210820078],[-124.13297797199546,57.405994304001354],[-124.13294674274611,57.40603647023747],[-124.13291759504374,57.406078666027646],[-124.13288631074366,57.40612195278058],[-124.13285716290896,57.40616414856044],[-124.13282593338675,57.40620631477394],[-124.13279678542071,57.40624851054341],[-124.13276758247156,57.406291826836096],[-124.13273635274557,57.406333993032895],[-124.13270720458267,57.40637618878703],[-124.13267800143383,57.406419505064534],[-124.13264885314089,57.406461700808755],[-124.13261762314433,57.40650386698326],[-124.13258841979584,57.406547183245586],[-124.13255927130602,57.40658937897453],[-124.13253012275169,57.40663157469846],[-124.13249883755752,57.40667486137938],[-124.13246968887087,57.40671705709299],[-124.13244054011967,57.40675925280163],[-124.13240925471892,57.40680253946583],[-124.13238010583541,57.40684473516418],[-124.13235095688735,57.40688693085754],[-124.13231967128,57.406930217505085],[-124.13229052219964,57.40697241318813],[-124.13225929138801,57.40701457929579],[-124.13223014217621,57.40705677496839],[-124.13219891122864,57.40709894106466],[-124.13216768021195,57.40714110715505],[-124.13213853080195,57.40718330281183],[-124.13210729964929,57.40722546889083],[-124.1320760684275,57.40726763496405],[-124.13204483713663,57.40730980103126],[-124.13201360577662,57.407351967092524],[-124.13198237434749,57.40739413314786],[-124.131949116104,57.40743514909305],[-124.13191788453534,57.40747731513605],[-124.13188462614985,57.40751833106779],[-124.13185339444163,57.40756049709843],[-124.13182013591414,57.40760151301675],[-124.1317868223657,57.4076436494572],[-124.13175356369395,57.407684665361614],[-124.1317203049506,57.40772568125895],[-124.1316870461357,57.40776669714928],[-124.13165378724915,57.40780771303263],[-124.13161844657924,57.407848699328476],[-124.1315851875473,57.40788971519736],[-124.13154990168428,57.40792958094835],[-124.13151456078963,57.407970567220445],[-124.13147921981893,57.40801155348451],[-124.13144185200952,57.40805138962767],[-124.13140656584682,57.408091255345745],[-124.13136919788327,57.40813109147106],[-124.13133182984164,57.408170927587115],[-124.13129446172182,57.40821076369385],[-124.1312570935239,57.408250599791224],[-124.13121972524786,57.40829043587946],[-124.1311803301241,57.4083291218414],[-124.13114087995098,57.40836892832231],[-124.13110148466602,57.40840761426321],[-124.13106208930105,57.40844630019355],[-124.13102269385612,57.40848498611331],[-124.13098121658302,57.40852364243189],[-124.13093973922581,57.40856229873868],[-124.13089831676123,57.408599834504074],[-124.13085481246084,57.408637340664846],[-124.1308133348516,57.40867599693547],[-124.13076983038059,57.408713503070615],[-124.13072632582391,57.40875100919256],[-124.13068079440275,57.408787365176124],[-124.13063728967413,57.40882487127091],[-124.13059175807972,57.408861227225955],[-124.13054622639845,57.40889758316635],[-124.13049861286011,57.40893390949377],[-124.13045099923099,57.40897023580506],[-124.13040338551109,57.40900656210026],[-124.13035582669383,57.40904176784947],[-124.1303082127938,57.40907809411241],[-124.13025857201954,57.40911327022722],[-124.13020893115362,57.40914844632438],[-124.13015726341196,57.409182472270246],[-124.13010762236237,57.409217648331214],[-124.13005589943384,57.409252794769216],[-124.13000423141403,57.40928682065796],[-124.12995256330196,57.40932084652737],[-124.1299008950976,57.40935487237748],[-124.12984714500642,57.40938886859971],[-124.12979339481933,57.40942286480083],[-124.1297396995485,57.40945574045105],[-124.12968594917122,57.40948973661031],[-124.12963017191178,57.409522582606435],[-124.12957647635957,57.40955545819279],[-124.12952069890956,57.409588304144364],[-124.12946492136336,57.40962115007318],[-124.12940914372102,57.40965399597919],[-124.12935128417207,57.40968681224604],[-124.12929550633565,57.40971965810571],[-124.12923770161647,57.40975135379434],[-124.12917984177204,57.40978416998848],[-124.12912203685876,57.40981586562807],[-124.12906423184936,57.40984756124302],[-124.12900642674376,57.409879256833435],[-124.12894653971964,57.4099109227764],[-124.12888873442002,57.40994261831678],[-124.1288288471985,57.40997428420789],[-124.12876895987743,57.410005950072446],[-124.12870907245686,57.41003761591076],[-124.12864923998183,57.41006816119248],[-124.12858935236396,57.41009982697779],[-124.12852951969528,57.41013037220669],[-124.12846755004442,57.41016200830874],[-124.12840771718045,57.410192553483775],[-124.12834580238159,57.410223069000004],[-124.12828596932414,57.4102536141213],[-124.12822399927065,57.41028525011185],[-124.12816208417404,57.41031576554397],[-124.12810016897825,57.41034628094774],[-124.1280382536833,57.41037679632316],[-124.12797633828916,57.410407311670134],[-124.12791442279588,57.41043782698886],[-124.1278525072034,57.41046834227915],[-124.12779059151175,57.41049885754119],[-124.12772867572095,57.41052937277476],[-124.12766473304892,57.41055873780664],[-124.12760281706,57.41058925298252],[-124.12754090097191,57.41061976813015],[-124.12747690292302,57.410650253603094],[-124.12741498663497,57.41068076869285],[-124.12735104346712,57.41071013357603],[-124.12728912698095,57.410740648608204],[-124.12722721039562,57.41077116361189],[-124.12716321184149,57.410801648936186],[-124.12710129505619,57.41083216388226],[-124.12703735139249,57.41086152861665],[-124.1269754344091,57.41089204350502],[-124.1269114354505,57.41092252870994],[-124.12684951826711,57.41095304354049],[-124.12678760098457,57.4109835583428],[-124.12672360172195,57.41101404345861],[-124.12666168423944,57.41104455820321],[-124.12659976665778,57.41107507291941],[-124.1265378489769,57.411105587607274],[-124.12647384930948,57.41113607260474],[-124.12641193142866,57.41116658723487],[-124.12635001344864,57.411197101836684],[-124.12628809536946,57.41122761641008],[-124.12622617719111,57.41125813095515],[-124.12616628568917,57.41128979566897],[-124.12610436731221,57.41132031015823],[-124.12604244883607,57.411350824619284],[-124.12598047513528,57.41138245958206],[-124.125920638361,57.411413003657074],[-124.1258607463617,57.411444668235966],[-124.12579877235738,57.41147630311572],[-124.1257388801573,57.411507967640745],[-124.12567904299225,57.41153851160916],[-124.12561915059489,57.41157017608139],[-124.12555925809795,57.41160184052722],[-124.12549936550148,57.411633504946515],[-124.1254414995792,57.411666319548196],[-124.12538160678352,57.41169798391566],[-124.12532379580719,57.411729677936954],[-124.12526592958763,57.41176249246401],[-124.1252080632684,57.41179530696655],[-124.12515025200005,57.411827000914116],[-124.12509238548323,57.41185981536762],[-124.12503451886673,57.411892629796434],[-124.12497873407989,57.4119254738865],[-124.12492294919689,57.411958317953804],[-124.1248671090586,57.41199228252878],[-124.12481132398156,57.41202512655055],[-124.12475548364584,57.41205909108006],[-124.12469964321056,57.412093055586666],[-124.12464593978166,57.41212592923134],[-124.12459009915078,57.41215989369341],[-124.12453634036402,57.4121938878256],[-124.12448258148132,57.41222788193672],[-124.12442674055539,57.412261846332406],[-124.12437298147904,57.41229584040071],[-124.12431922230675,57.412329834448066],[-124.12426546303851,57.41236382847433],[-124.12420962171981,57.41239779278172],[-124.1241558622579,57.41243178676516],[-124.12410210270009,57.41246578072767],[-124.12404834304633,57.41249977466914],[-124.12399458329664,57.41253376858968],[-124.12394076826382,57.41256888301962],[-124.12388700832065,57.41260287689812],[-124.12383324828153,57.41263687075559],[-124.1237794881465,57.412670864592215],[-124.12372775469282,57.412706008643745],[-124.1236739943661,57.41274000243919],[-124.12362017874653,57.412775116744015],[-124.12356641822635,57.4128091104974],[-124.12351473958854,57.41284313393886],[-124.12346092367652,57.41287824818158],[-124.1234071628687,57.41291224187288],[-124.12335542874386,57.41294738578526],[-124.12330161253777,57.41298249996595],[-124.12324993342831,57.41301652330824],[-124.12319611702735,57.41305163744782],[-124.12314443772992,57.41308566075076],[-124.12309062113405,57.41312077484925],[-124.12303888643407,57.4131559186433],[-124.12298715163867,57.41319106241798],[-124.12293338996672,57.413225055924606],[-124.1228816549801,57.41326019965994],[-124.12282991989807,57.413295343375935],[-124.12277610271616,57.413330457352],[-124.12272436744134,57.41336560102853],[-124.12267268729677,57.413399624155],[-124.12262095183263,57.41343476779299],[-124.12256921627305,57.413469911411674],[-124.12251539860429,57.41350502528622],[-124.12246366285196,57.413540168865346],[-124.1224119270042,57.413575312425344],[-124.12236019106096,57.41361045596589],[-124.12230845502229,57.41364559948715],[-124.12225671888818,57.4136807429892],[-124.1222049826586,57.413715886471856],[-124.12215324633361,57.41375102993514],[-124.12210150991316,57.41378617337927],[-124.1220497733973,57.41382131680403],[-124.12199803678594,57.413856460209516],[-124.12194630007914,57.413891603595665],[-124.12189450802761,57.41392786749335],[-124.12184277112836,57.413963010840895],[-124.12179311617379,57.4139981839055],[-124.12174137908553,57.41403332721527],[-124.12168964190184,57.41406847050565],[-124.1216379046227,57.414103613776874],[-124.12158611198937,57.41413987755963],[-124.12153437451776,57.41417502079212],[-124.12148471900217,57.41421019374663],[-124.12143298134156,57.41424533694139],[-124.12138118832053,57.41428160064784],[-124.12132945046743,57.414316743803916],[-124.12127979457793,57.41435191668524],[-124.12122805653584,57.41438705980357],[-124.1211762631271,57.41442332343368],[-124.12112452489252,57.414458466513494],[-124.12107486862914,57.41449363932159],[-124.12102313020553,57.41452878236356],[-124.12097133640908,57.41456504591735],[-124.12091959779302,57.4146001889207],[-124.12086994115572,57.41463536165569],[-124.12081814706856,57.41467162515244],[-124.12076640816645,57.41470676809865],[-124.12071675124882,57.41474194077907],[-124.12066495687097,57.41477820421866],[-124.1206132176828,57.414813347107916],[-124.12056356048485,57.41484851973354],[-124.12051176581627,57.414884783116136],[-124.12046002634209,57.41491992594828],[-124.12041036886377,57.41495509851925],[-124.12035857390451,57.41499136184483],[-124.12030683414426,57.415026504619775],[-124.1202571763856,57.41506167713614],[-124.12020538113562,57.41509794040472],[-124.12015364108936,57.41513308312265],[-124.12010398305033,57.41516825558428],[-124.12005224281504,57.415203398264445],[-124.12000044717733,57.41523966145668],[-124.11995078885796,57.415274833863634],[-124.11989904833662,57.41530997648661],[-124.11984725240818,57.415346239621776],[-124.11979551169432,57.41538138220626],[-124.11974585300108,57.41541655454014],[-124.11969405678194,57.41545281761814],[-124.11964231578203,57.415487960145526],[-124.11959265680841,57.41552313242472],[-124.11954091561948,57.415558274914176],[-124.1194891190126,57.41559453791598],[-124.11943737763117,57.41562968036694],[-124.11938563615429,57.415664822798604],[-124.11933597671319,57.41569999498612],[-124.1192842350473,57.415735137380025],[-124.11923243795562,57.41577140028611],[-124.11918069609725,57.415806542641405],[-124.1191289541434,57.4158416849773],[-124.1190772120941,57.41587682729392],[-124.1190275520919,57.415911999371325],[-124.11897580985355,57.41594714165027],[-124.11892401218009,57.415983404441306],[-124.11887226974926,57.416018546681634],[-124.11882052722298,57.41605368890253],[-124.11876878460124,57.41608883110417],[-124.11871704188407,57.41612397328653],[-124.1186652990714,57.41615911544954],[-124.1186135561633,57.41619425759324],[-124.11856181315972,57.416229399717636],[-124.1185100700607,57.416264541822706],[-124.11845832686622,57.41629968390854],[-124.11840658357626,57.41633482597505],[-124.11833982216207,57.416378723739996],[-124.11832511484177,57.41642336626294],[-124.11831046284543,57.41646688825416],[-124.11829367328195,57.416511500985514],[-124.11827693903868,57.41655499318451],[-124.11826223157665,57.41659963570711],[-124.11824544189817,57.416644248437414],[-124.11822870754155,57.41668774063519],[-124.11820983559826,57.41673232357142],[-124.11819310116229,57.41677581576791],[-124.11817631132521,57.41682042849592],[-124.11815749461837,57.416863890897616],[-124.11814070470078,57.4169085036244],[-124.11812183254514,57.41695308655637],[-124.11810509791172,57.41699657874972],[-124.1180862256708,57.417041161679904],[-124.11806949095804,57.41708465387206],[-124.1180506186318,57.41712923680043],[-124.11803180162903,57.41717269919545],[-124.11801501142814,57.41721731191782],[-124.11799619434126,57.41726077431097],[-124.11797732184199,57.41730535723552],[-124.11796053151885,57.41734996995601],[-124.11794171430428,57.41739343234622],[-124.11792492390063,57.417438045065545],[-124.11790610660192,57.41748150745393],[-124.11788931611775,57.41752612017194],[-124.11787258096716,57.41756961235696],[-124.11785370817024,57.417614195275355],[-124.11783697294031,57.41765768745905],[-124.11782018229754,57.417702300174874],[-124.11780339161541,57.41774691289031],[-124.11778873851401,57.417790434872224],[-124.11777194775621,57.41783504758702],[-124.11775521233594,57.417878539768445],[-124.11774050375152,57.41792318228268],[-124.11772585051048,57.41796670426403],[-124.11771114185763,57.41801134677829],[-124.1176964331703,57.418055989292725],[-124.11768177982779,57.41809951127409],[-124.1176691533355,57.418144183590236],[-124.11765658219377,57.41818773537368],[-124.11764395564269,57.41823240769068],[-124.11763132906201,57.41827708000819],[-124.11761875783318,57.41832063179287],[-124.11760821346924,57.41836533391388],[-124.11759766908054,57.41841003603576],[-124.11758718004968,57.41845361762509],[-124.11757871789466,57.418498349551705],[-124.11756817343455,57.41854305167634],[-124.11755976662093,57.41858666307153],[-124.11755338669418,57.418631424804865],[-124.11754700675243,57.41867618653964],[-124.11754068218006,57.41871982774208],[-124.11753430220861,57.41876458947959],[-124.11753000452188,57.41880938102237],[-124.11752784451215,57.41885308183685],[-124.11752562911245,57.41889790318671],[-124.11752549601452,57.41894275434207],[-124.1175253629163,57.41898760549917],[-124.11752736751491,57.419031365928056],[-124.11753139904725,57.41907627669626],[-124.11753543058907,57.419121187466054],[-124.1175394621404,57.419166098237426],[-124.11754563140789,57.41920991827993],[-124.11755174530477,57.41925485885792],[-124.11755994154264,57.41929982924071],[-124.11756605547082,57.41934476982141],[-124.1175763340764,57.41938977000988],[-124.11758458575645,57.41943361986203],[-124.1175948644079,57.419478620052416],[-124.11760514308368,57.41952362024372],[-124.11761542178371,57.419568620435996],[-124.11762570050801,57.41961362062914],[-124.11763597925663,57.41965862082322],[-124.11764839576087,57.4197025302856],[-124.11765867456027,57.41974753048139],[-124.11767103573757,57.41979256047956],[-124.11768131458801,57.41983756067681],[-124.11769367582126,57.4198825906765],[-124.11770395472274,57.41992759087548],[-124.117716316012,57.41997262087641],[-124.11772659496451,57.42001762107711],[-124.11773692932186,57.42006150074367],[-124.11774720832271,57.42010650094613],[-124.11775540497457,57.42015147134928],[-124.11776568402152,57.42019647155366],[-124.11777388071457,57.42024144195909],[-124.11778207742694,57.420286412365606],[-124.1177881917755,57.42033135297362],[-124.11779430613853,57.42037629358303],[-124.11780042051599,57.42042123419386],[-124.11780445251735,57.42046614500661],[-124.1178084845282,57.42051105582091],[-124.11781043415313,57.42055593683748],[-124.11781238378263,57.42060081785565],[-124.11781225101642,57.42064566907607],[-124.11781211824986,57.42069052029822],[-124.117811985483,57.42073537152205],[-124.11781185271583,57.42078022274766],[-124.1178138023585,57.420825103774284],[-124.11781366959316,57.420869955003305],[-124.11781348144798,57.42091592676974],[-124.11781543109953,57.42096080780161],[-124.11781524295603,57.4210067795716],[-124.11781511019174,57.4210516308075],[-124.11781700447246,57.421097632380466],[-124.11781687170995,57.42114248361988],[-124.11781668356728,57.421188455396965],[-124.1178185778567,57.421234456975164],[-124.11781844509557,57.42127930821975],[-124.11781825695412,57.4213252800021],[-124.11781806881223,57.42137125178642],[-124.11781788066988,57.421417223572455],[-124.1178177479073,57.42146207482396],[-124.11781755976409,57.421508046613546],[-124.11781737162048,57.42155401840495],[-124.11781510102385,57.421599960398765],[-124.11781491287682,57.421645932193755],[-124.11781269765244,57.42169075365446],[-124.11781250950203,57.421736725452966],[-124.11781023888867,57.421782667453726],[-124.11780802365085,57.42182748891966],[-124.11780575302669,57.421873430923945],[-124.11780139992706,57.42191934313045],[-124.11779918467089,57.42196416460141],[-124.11779483155298,57.4220100768111],[-124.11779053380644,57.42205486848562],[-124.11778618066774,57.42210078069861],[-124.11777980041848,57.42214554257624],[-124.11777550263898,57.422190334255404],[-124.11776912236218,57.42223509613608],[-124.11776274207034,57.422279858018015],[-124.11775630638031,57.422325740438495],[-124.11774784356368,57.42237047252283],[-124.11773943611105,57.422414084071214],[-124.11773097325496,57.42245881615778],[-124.11772042787717,57.42250351844469],[-124.11770993785959,57.422547100195004],[-124.11769939243267,57.422591802483545],[-124.11768890236668,57.422635384235534],[-124.11767627437919,57.42268005672405],[-124.11766370174864,57.42272360867578],[-124.11764904657312,57.42276713082565],[-124.11763444675168,57.42280953243809],[-124.1176197915097,57.42285305458796],[-124.11760305371097,57.42289654693502],[-124.11758637126319,57.422938918743945],[-124.11756963338858,57.42298241109004],[-124.11755086833583,57.423024753094055],[-124.11753210324132,57.4230670950972],[-124.11751131096192,57.42310828675704],[-124.11748421563416,57.423150509539],[-124.11745301056119,57.42319155216868],[-124.11741555779656,57.42323250537534],[-124.1173719127164,57.42327224861569],[-124.11732618499941,57.423311962035676],[-124.11727629209133,57.423351615825275],[-124.11722223397943,57.42339120997968],[-124.11716614860526,57.42342965376561],[-124.11710589800971,57.42346803790758],[-124.11704564729271,57.4235064220231],[-124.11698123133792,57.42354474648719],[-124.11691687066326,57.423581950382975],[-124.11685250986288,57.42361915424843],[-124.11678814893679,57.42365635808367],[-124.11672170531881,57.423693532071724],[-124.1166573995569,57.42372961530735],[-124.1165951208236,57.42376684886931],[-124.11653289738996,57.42380296186495],[-124.1164727564122,57.42383910465306],[-124.11641469789609,57.42387527723643],[-124.11635872184749,57.42391147961782],[-124.1163069662801,57.423946621085115],[-124.11625932035054,57.423982942719434],[-124.1162158949282,57.42401820344922],[-124.11617449657852,57.42405461452915],[-124.11614148393264,57.42409002436331],[-124.11611263640387,57.4241254938431],[-124.1160879540037,57.42416102297124],[-124.11607154649441,57.424197791942525],[-124.11606144217487,57.42423352985661],[-124.1160596682247,57.42426938708021],[-124.11606414206832,57.42430533378665],[-124.11607272568673,57.42434246068637],[-124.11608761256657,57.424378556529135],[-124.11610660924997,57.42441583256272],[-124.11612971575067,57.42445428878558],[-124.11615704295028,57.424491684118614],[-124.11618853542629,57.424529139097665],[-124.11622413775956,57.424567774258385],[-124.11626396082688,57.42460534852019],[-124.1163058111612,57.42464407313321],[-124.11635188224842,57.42468173684086],[-124.1163999806221,57.424720550894314],[-124.1164522997673,57.424758304034704],[-124.11650670164246,57.42479608697565],[-124.1165631862539,57.42483389971468],[-124.11662180902829,57.42487062171002],[-124.1166845971806,57.424907403315174],[-124.1167473854542,57.42494418489153],[-124.11681225648563,57.42498099625443],[-124.11687718305548,57.425016687047204],[-124.11694424779874,57.42505128708299],[-124.11701339530629,57.42508591689776],[-124.1170825429396,57.425120546677114],[-124.11715388415517,57.4251529651522],[-124.11722522549222,57.425185383589366],[-124.1172944843008,57.42521777218109],[-124.11736588127786,57.42524907000408],[-124.11743733376922,57.425279247249335],[-124.11750884176868,57.42530830391672],[-124.11757832261347,57.42533621020297],[-124.1176478589509,57.42536299591306],[-124.11771739538615,57.42538978158703],[-124.11778496003184,57.42541429634486],[-124.11785252476452,57.4254388110684],[-124.11792222763094,57.42546223501542],[-124.11799193058309,57.42548565892599],[-124.11806168899986,57.42550796225981],[-124.11813144749834,57.42553026555716],[-124.11820334412224,57.42555147807081],[-124.11827524082622,57.42557269054553],[-124.11834713761027,57.42559390298152],[-124.1184211725154,57.42561402462791],[-124.11849312482515,57.42563411644427],[-124.11856715988559,57.42565423800921],[-124.11864333306218,57.42567326877857],[-124.11871742363796,57.42569226971888],[-124.11879359696572,57.425711300401844],[-124.11886774304591,57.42572918071741],[-124.1189439718759,57.42574709077304],[-124.11902228345873,57.42576503056526],[-124.1190985124331,57.42578294053192],[-124.11917474147918,57.425800850454785],[-124.11925310862554,57.425817669569305],[-124.11933147584112,57.42583448863751],[-124.11940984312591,57.42585130765916],[-124.1194882104799,57.42586812663453],[-124.11956657790313,57.4258849455633],[-124.11964494539554,57.42590176444576],[-124.11972331295718,57.42591858328173],[-124.11980173591635,57.425934281529855],[-124.11988010361412,57.425951100272925],[-124.11996060939782,57.42596682819361],[-124.12003897723271,57.425983646842504],[-124.12011740045595,57.42599934490329],[-124.120195768427,57.42601616345922],[-124.12027627447857,57.426031891187705],[-124.12035464258672,57.426048709649585],[-124.12043306607403,57.42606440752312],[-124.12051143431833,57.42608122589207],[-124.12059188533244,57.426098073970024],[-124.12067025371614,57.42611489224487],[-124.12074862216906,57.42613171047319],[-124.12082699069119,57.42614852865513],[-124.1209032212817,57.42616643758207],[-124.12098158994353,57.42618325567245],[-124.12105990338287,57.42620119425847],[-124.12113613418832,57.426219103051295],[-124.12121236506546,57.426237011800225],[-124.12128854072925,57.42625604104757],[-124.12136471646915,57.42627507025118],[-124.12144089228514,57.42629409941095],[-124.12151498546417,57.42631309878606],[-124.12159110615505,57.42633324840196],[-124.12166514421106,57.42635336823561],[-124.1217391823453,57.42637348802809],[-124.12181108257012,57.426394698585625],[-124.12188506559404,57.42641593883936],[-124.12195691071462,57.426438269860654],[-124.12202875591942,57.42646060084319],[-124.12209851848564,57.4264829020552],[-124.1221703085982,57.426506353504315],[-124.12223996081617,57.42653089572823],[-124.12230758565245,57.42655428764425],[-124.12237718279307,57.42657995033956],[-124.1224447525492,57.42660446272925],[-124.12251221189311,57.42663121617113],[-124.12257764384671,57.42665681931171],[-124.1226451033767,57.42668357268666],[-124.12271042502184,57.426711416849],[-124.12277574676249,57.42673926097966],[-124.12283898585966,57.4267670753584],[-124.12290430778972,57.42679491942653],[-124.12296749183675,57.42682385428845],[-124.12303067597976,57.426852789120744],[-124.12309386021877,57.426881723923465],[-124.12315698932275,57.426911779240264],[-124.12322011852638,57.42694183452752],[-124.12328116507912,57.426971860072236],[-124.12334221172813,57.42700188558951],[-124.12340534122725,57.42703194079021],[-124.12346633284831,57.42706308679539],[-124.12352732456911,57.42709423277313],[-124.12358831638964,57.427125378723424],[-124.12364930830996,57.427156524646264],[-124.12371030033,57.42718767054156],[-124.12377129244983,57.42721881640953],[-124.12383020190326,57.42724993254566],[-124.12389119422083,57.427281078359734],[-124.12395213142995,57.42731334469071],[-124.12401312394877,57.427344490449926],[-124.12407203379416,57.42737560648104],[-124.1241329713077,57.42740787273094],[-124.12419396412582,57.42743901840886],[-124.12425495704365,57.42747016405926],[-124.12431595006127,57.42750130968211],[-124.12437694317862,57.42753245527764],[-124.12443793639575,57.427563600845694],[-124.12449898490516,57.42759362584141],[-124.12455997832005,57.427624771354466],[-124.12462310981262,57.42765482598687],[-124.12468410342701,57.42768597144401],[-124.12474723511897,57.4277160260184],[-124.12481042209419,57.42774496001804],[-124.12487355398362,57.427775014533374],[-124.12493674115264,57.42780394847377],[-124.12499992841767,57.42783288238457],[-124.12506311577872,57.427861816265725],[-124.12512844121241,57.427889659255605],[-124.1251937667416,57.42791750221362],[-124.12525914753702,57.427944224594235],[-124.12527345132231,57.42795003509373],[-124.12570784887504,57.42805938737777],[-124.12605373554828,57.42814617211676],[-124.12639754097593,57.42823292628923],[-124.12674337566924,57.428320829774734],[-124.12708926707644,57.42840761181103],[-124.12743307722297,57.428494363297155],[-124.12777897177777,57.42858114353321],[-124.12812486790885,57.428667922866474],[-124.12847082069358,57.42875358074917],[-124.1288167750345,57.42883923772853],[-124.12916273093157,57.42892489380464],[-124.12950874343201,57.42900942842895],[-124.12985908832285,57.429090659721524],[-124.13021612354974,57.42916301450621],[-124.13057771100566,57.429227583678255],[-124.13095481495708,57.429273309664545],[-124.13128806230067,57.42936326483165],[-124.1315796467557,57.429495238005146],[-124.13187106829582,57.429630572197325],[-124.13219072409706,57.42974275864426],[-124.1325147674521,57.429850521257364],[-124.13282357277988,57.429971522757675],[-124.1331237736427,57.430098008071646],[-124.1334195908915,57.43022891581397],[-124.13370263788194,57.43036524837507],[-124.1339493430999,57.430520127475],[-124.13418311325896,57.430683793306],[-124.13443190546515,57.430838701083815],[-124.13468486565397,57.430993667476926],[-124.13494002067043,57.43114642182752],[-124.13520159137211,57.43129590261774],[-124.13548032203938,57.43143553408927],[-124.13577188202214,57.43156861875945],[-124.13605067163508,57.43170712850181],[-124.13632710599552,57.4318512109331],[-124.13659077001856,57.432000718558506],[-124.13682258724654,57.43216210929564],[-124.13700775678456,57.432339659066365],[-124.1371674378321,57.432526939680486],[-124.13732498255223,57.43271531119506],[-124.13750999267046,57.432896222009056],[-124.1377181378446,57.4330729747011],[-124.13788643191795,57.43325476971863],[-124.13794766662984,57.433451869403015],[-124.13793741798415,57.43366141342727],[-124.13795024817473,57.43386792011145],[-124.1379839648136,57.43407360108027],[-124.13797815655187,57.43427760139478],[-124.13791199102984,57.43447962623435],[-124.13781676985873,57.43467899720028],[-124.13773190884777,57.43487963611147],[-124.13765735333602,57.43508266354627],[-124.13757868541533,57.4352845114425],[-124.13747934885417,57.435482702769306],[-124.13735112006009,57.435674878400334],[-124.13719191540893,57.43586100875483],[-124.13701204113534,57.43604348231424],[-124.1368157183706,57.43622123743174],[-124.13660716835878,57.43639321247773],[-124.13635974717496,57.43655005934536],[-124.13608359677025,57.43669752815527],[-124.13583216946805,57.43685095337464],[-124.13566297494266,57.43702797002338],[-124.13559048751402,57.437231026176924],[-124.1355241395445,57.43743641200236],[-124.13541025815897,57.43763327493531],[-124.1352859588269,57.43782999018697],[-124.135136987205,57.438019627692526],[-124.13494903389241,57.43819637786826],[-124.13470334809604,57.438359974749915],[-124.13440508460998,57.438490307011755],[-124.13406559440521,57.438568472487646],[-124.13369205850402,57.43861812078855],[-124.13331051773199,57.438660926458105],[-124.13294690229968,57.438720805454196],[-124.13259199865428,57.43881556860974],[-124.13231823051275,57.43895633601509],[-124.132182015159,57.43914054498326],[-124.13209903298774,57.43934457227713],[-124.13204911011363,57.43955467554906],[-124.13202237966057,57.439759501367746],[-124.13204981908922,57.439965096166304],[-124.13208975969043,57.44017086843944],[-124.13209844836362,57.44037619713346],[-124.13205510457378,57.440579665950835],[-124.13198670317571,57.440783900445695],[-124.1318954922688,57.44098556847364],[-124.13178580357162,57.44118136746073],[-124.13157534014341,57.4413488234388],[-124.13135681570847,57.44151055795663],[-124.1313031038604,57.44171275823438],[-124.13130115071861,57.44192242156556],[-124.13133280999564,57.44212695550522],[-124.13139161138594,57.442330753519414],[-124.13146297006446,57.442533608484645],[-124.13152807864537,57.44273637469797],[-124.13156812934741,57.44293990649229],[-124.13156014670527,57.443144999049636],[-124.13151668686857,57.44335070929806],[-124.13148364488319,57.44355656748681],[-124.13150494313233,57.44375983318959],[-124.13160569673308,57.443958620234156],[-124.13171900857365,57.44415646415142],[-124.13176536791858,57.44435896430896],[-124.13176977835258,57.444566475731314],[-124.13173876540714,57.44477348434218],[-124.13166432357762,57.44497314840556],[-124.1315646008843,57.4451780602991],[-124.13144804196298,57.44538609717507],[-124.13129671780538,57.44558018423671],[-124.1310946180668,57.44574663785832],[-124.13082375886125,57.445869503536834],[-124.1304921453744,57.44595562262195],[-124.13011984537289,57.44602097860991],[-124.12973328787554,57.44607940288069],[-124.12935895663286,57.44614360654735],[-124.12900880351458,57.44622497309977],[-124.12867246423168,57.44632223402939],[-124.12834807507556,57.446430877554384],[-124.12803377249612,57.446546391869404],[-124.12773147487142,57.44667216838574],[-124.12742720167904,57.44679567344441],[-124.12712495521392,57.446920328030295],[-124.12683882606295,57.447056424839836],[-124.12651053351021,57.4471594017673],[-124.12617609793601,57.447260047753275],[-124.12586786798362,57.44737900767625],[-124.1255595257244,57.447500208018646],[-124.12524109329097,57.44761453585251],[-124.12490478731426,57.44771066670747],[-124.12455258159116,57.44779087126404],[-124.12421035201395,57.44788018789259],[-124.12391620105409,57.44800943628009],[-124.1236482549547,57.44815699925662],[-124.12338853193859,57.44830692168296],[-124.1231104383891,57.44844873222064],[-124.12280821993573,57.44857225650791],[-124.12249179892699,57.44868772808246],[-124.12217948859524,57.44880437893438],[-124.12187923764687,57.44893017198667],[-124.12162147573012,57.449082361891094],[-124.12132324939336,57.44920930400977],[-124.12101685115753,57.44933276477622],[-124.18410018474952,57.45502531446185],[-124.18069062335044,57.489301688739175],[-124.1806537424767,57.48950526854269],[-124.18061263511719,57.48970991138621],[-124.18057569979955,57.489914611868954],[-124.18054710909782,57.490119427610765],[-124.180535208205,57.49032447385072],[-124.18055668759816,57.490529981058536],[-124.18057190836184,57.49073540187652],[-124.18054123072412,57.490940188956436],[-124.18047508549273,57.491144486312685],[-124.18040476690909,57.49134872605141],[-124.18035750449927,57.491551041454294],[-124.18037288551267,57.49175310058859],[-124.18049691800806,57.49195329597705],[-124.18062517817178,57.49215242826722],[-124.1806386890028,57.492349976146784],[-124.18054284970881,57.49256395617059],[-124.18034001854254,57.492745060341065],[-124.18003421232767,57.49285297424643],[-124.17970807689335,57.49294939292887],[-124.17937386250406,57.49304009235089],[-124.17903146189185,57.4931273137112],[-124.17868296151599,57.493211085783145],[-124.17833044785672,57.493291437360796],[-124.17797381355975,57.493370609672795],[-124.17761514506637,57.493448631540026],[-124.17725444239657,57.49352550294566],[-124.17689577096597,57.493603522865946],[-124.17653709806338,57.49368154181543],[-124.17618045637329,57.49376070930196],[-124.17573922569416,57.493862253718724],[-124.17566897438145,57.49389043690503],[-124.1755946038313,57.493917441651114],[-124.17552221206485,57.49394671650427],[-124.17544987397415,57.49397487068811],[-124.17537962223889,57.49400305372298],[-124.17530931660802,57.494032357351365],[-124.17523901086878,57.49406166094305],[-124.17517079148843,57.49409099339133],[-124.17510465847157,57.49412035469943],[-124.1750385253526,57.494149715975105],[-124.17497233832988,57.49418019784863],[-124.17490823767464,57.49421070858723],[-124.17484622339177,57.494241248194],[-124.17478420900926,57.49427178777246],[-124.17472422719652,57.49430347685332],[-124.17466429909472,57.494334045277306],[-124.17460431708382,57.494365734305276],[-124.17454224848939,57.49439739440352],[-124.17448023360804,57.49442793384305],[-124.17441816480874,57.494459593884706],[-124.17435614972628,57.49449013326743],[-124.1742941345442,57.49452067262201],[-124.17422997894671,57.49455230367026],[-124.17416587706843,57.494582814057765],[-124.17410177508728,57.494613324415056],[-124.17403767300323,57.49464383474191],[-124.17397351698457,57.49467546566865],[-124.17390941469283,57.4947059759349],[-124.17384531229823,57.494736486170716],[-124.17378115596321,57.49476811700638],[-124.1737170533609,57.49479862718143],[-124.17365295065574,57.49482913732614],[-124.17358879400436,57.49486076807089],[-124.17352463724622,57.494892398785304],[-124.17346053422854,57.49492290883893],[-124.17339846377212,57.49495456841398],[-124.1733363932123,57.49498622796078],[-124.17327432254913,57.49501788747912],[-124.1732122517826,57.49504954696919],[-124.17315012705613,57.49508232706134],[-124.17309014260276,57.49511401542094],[-124.17303010418921,57.495146824384705],[-124.1729721521973,57.4951796622502],[-124.17291420010531,57.49521250009113],[-124.17285624791323,57.49524533790761],[-124.17280038215162,57.49527820463035],[-124.17274446242456,57.49531219196085],[-124.17269062913174,57.49534620820134],[-124.17263679574259,57.49538022442088],[-124.1725849949213,57.49541539018429],[-124.17253324787946,57.49544943529791],[-124.17248353340976,57.49548462995859],[-124.17243590539158,57.495519853538426],[-124.17238822340543,57.495556197732654],[-124.1723426278756,57.49559257084894],[-124.17229911880798,57.49562897288954],[-124.17225560965706,57.495665374916875],[-124.17221413309113,57.49570292650184],[-124.17217474299878,57.49574050701591],[-124.17213738549862,57.4957792370915],[-124.17210002792237,57.4958179671579],[-124.17206684339352,57.49585675510003],[-124.17203360490632,57.49589666366593],[-124.17200245291545,57.49593660116842],[-124.17197130085914,57.49597653866494],[-124.17194014873736,57.496016476155496],[-124.17191311580096,57.49605759216093],[-124.17188405012651,57.496097558586044],[-124.17185701707179,57.49613867458288],[-124.17182998395857,57.49617979057571],[-124.17180498347064,57.49622205614221],[-124.17178003682574,57.49626320107442],[-124.17175503622741,57.49630546663446],[-124.17173212216197,57.4963477611392],[-124.17170920804553,57.4963900556415],[-124.17168838047118,57.49643237908993],[-124.17166749894821,57.49647582316785],[-124.17164667128044,57.49651814661291],[-124.17162578966273,57.49656159068748],[-124.17160699459976,57.49660506371026],[-124.17158819949381,57.49664853673199],[-124.17156940434487,57.49669200975271],[-124.17155264185656,57.49673663235452],[-124.17153593323545,57.49678013432453],[-124.17151917066899,57.4968247569255],[-124.17150246197086,57.49686825889459],[-124.17148778594556,57.49691291044651],[-124.17147310988578,57.496957561998556],[-124.17145843379153,57.49700221355066],[-124.1714437576628,57.497046865102945],[-124.17143116812865,57.49709154560796],[-124.17141857856492,57.497136226113476],[-124.17140384842664,57.49718199829834],[-124.17139125880084,57.49722667880483],[-124.1713807018725,57.49727250889723],[-124.17136811218951,57.49731718940503],[-124.17135755520815,57.49736301949917],[-124.171344965468,57.4974077000083],[-124.1713344084336,57.497453530104245],[-124.17132385137373,57.497499360201196],[-124.17131329428841,57.4975451902991],[-124.17130279109223,57.49758989976582],[-124.1712922339564,57.49763572986577],[-124.1712816767951,57.49768155996655],[-124.17127111960835,57.49772739006845],[-124.17126264906247,57.49777324912659],[-124.17125214574372,57.49781795859822],[-124.1712436751548,57.49786381765894],[-124.17123311787164,57.497909647765034],[-124.171222560563,57.497955477872225],[-124.17121408990775,57.49800133693638],[-124.17120353255073,57.49804716704576],[-124.17119511577057,57.49809190547985],[-124.17118455836552,57.49813773559134],[-124.17117608762383,57.498183594660524],[-124.17116558408989,57.49822830414136],[-124.17115502661139,57.498274134256],[-124.17114660972389,57.49831887269589],[-124.17113605219733,57.498364702812616],[-124.17112554856631,57.49840941229734],[-124.17111499098922,57.49845524241606],[-124.17110448730843,57.498499951902744],[-124.17109189689435,57.49854463243236],[-124.17108139316169,57.49858934192063],[-124.1710708894043,57.498634051409944],[-124.17105829890633,57.49867873194161],[-124.17104570837878,57.49872341247379],[-124.17103317174583,57.49876697237338],[-124.17102058115952,57.498811652906646],[-124.1710079905436,57.49885633344045],[-124.17099325924451,57.4989021056486],[-124.170978581836,57.4989467572235],[-124.17096390439302,57.49899140879862],[-124.17094917298849,57.499037181007196],[-124.17093444154851,57.49908295321596],[-124.17091976400107,57.499127604791525],[-124.17090503249064,57.49917337700067],[-124.17089030094472,57.499219149210035],[-124.17087556936335,57.499264921419645],[-124.17086083774647,57.49931069362931],[-124.17084824677754,57.49935537416749],[-124.17083351509274,57.49940114637777],[-124.17082087013031,57.49944694755071],[-124.17080822513745,57.49949274872417],[-124.17079766687696,57.49953857886107],[-124.1707850757583,57.499583259402115],[-124.17077451744478,57.499629089540754],[-124.17076604587615,57.49967494864358],[-124.17075762822077,57.49971968711367],[-124.17074915661158,57.49976554621916],[-124.17074282569398,57.499810313655374],[-124.1707385815417,57.49985511005672],[-124.17073433737941,57.49989990645967],[-124.17073217999226,57.49994473182806],[-124.1707300226,57.49998955719807],[-124.17073203878275,57.5000344404975],[-124.17073410890515,57.50007820316424],[-124.1707361790323,57.50012196583273],[-124.17074242275876,57.500165786429996],[-124.1707486664996,57.50020960702868],[-124.17075699705694,57.500253456592205],[-124.17076955517663,57.50029624344864],[-124.17078211332462,57.50033903030548],[-124.17079675831002,57.50038184612547],[-124.17081349013996,57.500424690907955],[-124.17083236275401,57.50046644401743],[-124.17085332222571,57.5005082260875],[-124.17087428174344,57.50055000815587],[-124.17089732812802,57.50059181918347],[-124.17092246138643,57.500633659169395],[-124.17094759470011,57.50067549915201],[-124.17097486882552,57.50071624745636],[-124.17100422983934,57.500757024715924],[-124.17103353698907,57.50079892260563],[-124.17106498496416,57.50083972881362],[-124.1710964330068,57.50088053501561],[-124.17112996795596,57.50092137016904],[-124.17116355690065,57.50096108467991],[-124.1711991788365,57.50100194877554],[-124.17123480084892,57.50104281286305],[-124.17127047685842,57.50108255630679],[-124.17130818587329,57.501123449332546],[-124.17134594888766,57.50116322171331],[-124.17138579883574,57.501203023038144],[-124.17142559495112,57.501243944988076],[-124.17146544506723,57.50128374629162],[-124.17150529526678,57.50132354758458],[-124.17154723241337,57.50136337781769],[-124.17158916964785,57.50140320803891],[-124.17162902010216,57.50144300929852],[-124.17167304438046,57.501482868445436],[-124.1717149818786,57.501522698630815],[-124.17175697337142,57.501561408168],[-124.171800997921,57.50160126727628],[-124.17184293568381,57.50164109742512],[-124.1718869604158,57.501680956507485],[-124.1719288983566,57.50172078663176],[-124.17197292327103,57.501760645688236],[-124.17201486138978,57.5018004757879],[-124.17205894038497,57.501839214181736],[-124.17210087868054,57.50187904425688],[-124.172142817064,57.50191887431999],[-124.17218684243213,57.50195873331199],[-124.17222669409455,57.50199853441051],[-124.17226863274166,57.502038364437745],[-124.17231057147666,57.50207819445312],[-124.17235042339388,57.50211799551838],[-124.17239027539453,57.50215779657295],[-124.17243007359076,57.50219871825399],[-124.17246992575944,57.502238519287346],[-124.172507691097,57.50227829137432],[-124.17255529836955,57.502330535137546],[-124.17263861342565,57.50233505442105],[-124.17272192850152,57.50233957365205],[-124.17280315667881,57.502344063899386],[-124.17288647179402,57.502348583026546],[-124.1729697330568,57.502354222738425],[-124.17305299434433,57.502359862397824],[-124.17313630952387,57.502364381366945],[-124.17321957085834,57.50237002092116],[-124.17330283221752,57.50237566042283],[-124.1733860936014,57.50238129987189],[-124.1734672680887,57.50238691034788],[-124.17355052952165,57.502392549693184],[-124.17363379097927,57.50239818898598],[-124.17371705246157,57.50240382822614],[-124.17380031396861,57.50240946741373],[-124.17388357550035,57.50241510654885],[-124.17396683705677,57.50242074563136],[-124.17405009863792,57.502426384661284],[-124.1741312733195,57.502431994728695],[-124.17421453494966,57.502437633654836],[-124.17429785043771,57.502442151890314],[-124.17438111211484,57.50244779071128],[-124.17446442764495,57.502452308841576],[-124.17454768936902,57.502457947557396],[-124.17463100494119,57.50246246558233],[-124.17471437435408,57.50246586291633],[-124.17479560303654,57.50247035193647],[-124.17487891866534,57.50247486980482],[-124.1749622881276,57.502478266982074],[-124.17504565760476,57.50248166410666],[-124.17512902709682,57.5024850611786],[-124.17521245041004,57.502487337559074],[-124.17529587373326,57.50248961388688],[-124.175377210138,57.5024918612716],[-124.175460633481,57.50249413749511],[-124.17554411063053,57.502495293027216],[-124.1756275877851,57.502496448506356],[-124.17571106494476,57.50249760393268],[-124.17579459589865,57.50249763866735],[-124.17587603992345,57.502497644466686],[-124.17595962466184,57.50249655845789],[-124.17604315561364,57.50249659303501],[-124.17612668656557,57.502496627559296],[-124.17621027129454,57.502495541391646],[-124.17629385601872,57.502494455170876],[-124.17637535380882,57.50249334002278],[-124.17645893852344,57.50249225369743],[-124.17654252323331,57.50249116731917],[-124.17662610793839,57.502490080887775],[-124.17670969263868,57.50248899440348],[-124.17679333109389,57.502486787227],[-124.17687696953935,57.50248457999738],[-124.17695846729116,57.50248346448883],[-124.17704210571975,57.50248125715445],[-124.17712574413862,57.50247904976702],[-124.17720938254777,57.50247684232666],[-124.1772930209472,57.502474634833085],[-124.17737665933694,57.50247242728654],[-124.17745826452811,57.50246907019009],[-124.177541902896,57.502466862538725],[-124.17762559498928,57.502463534194696],[-124.17770923333525,57.50246132643722],[-124.17779292540168,57.50245799798697],[-124.17787661745345,57.50245466948366],[-124.17796025576536,57.50245246156687],[-124.17804186086214,57.502449104109225],[-124.17812555287254,57.50244577544797],[-124.17820924486828,57.502442446733546],[-124.17829293684936,57.502439117965956],[-124.17837668252872,57.50243466850542],[-124.17845828755051,57.502431310790186],[-124.17854197948526,57.50242798186452],[-124.17862572511092,57.50242353224589],[-124.17870941701389,57.50242020321402],[-124.17879310890221,57.50241687412896],[-124.17887476754721,57.50241239551596],[-124.17895845940386,57.50240906632591],[-124.17904220493911,57.5024046164428],[-124.17912595045473,57.50240016650643],[-124.17920964226245,57.502396837157136],[-124.17929130081534,57.50239235828618],[-124.17937504627481,57.50238790819167],[-124.17945873803373,57.502384578684214],[-124.17954248345646,57.502380128483345],[-124.17962414193424,57.502375649406304],[-124.17970788731793,57.50237119910037],[-124.17979163268201,57.50236674874134],[-124.17987329110171,57.50236226951008],[-124.17995698276052,57.502358939686324],[-124.18004072806845,57.50235448916913],[-124.18012447335676,57.50235003859868],[-124.18020613170131,57.50234555916128],[-124.18028987695058,57.502341108485815],[-124.18037362218024,57.502336657757205],[-124.1804552804667,57.50233217816546],[-124.18053902565734,57.50232772733184],[-124.18062068390513,57.50232324763764],[-124.18070442905669,57.50231879669889],[-124.1807882278303,57.5023132250664],[-124.18086993965683,57.50230762457734],[-124.18095368474481,57.5023031734803],[-124.18103539652533,57.50229757288879],[-124.18111924883551,57.50229088040516],[-124.1812030474868,57.50228530850906],[-124.1812847591922,57.50227970776287],[-124.18136855779458,57.50227413576168],[-124.18145032307363,57.502267414272175],[-124.18153412162467,57.50226184216579],[-124.18161588684802,57.50225512057364],[-124.18169973896235,57.50224842772105],[-124.18178150412757,57.50224170602626],[-124.18186535618318,57.50223501306846],[-124.18194712129022,57.50222829127108],[-124.18203097328708,57.50222159820799],[-124.18211273833602,57.502214876307875],[-124.18219450335602,57.502208154357234],[-124.18227835526488,57.50220146113684],[-124.18236012022678,57.50219473908345],[-124.18244397207687,57.502188045757926],[-124.18252573698062,57.50218132360193],[-124.182609588772,57.50217463017109],[-124.18269140720292,57.5021667872712],[-124.18277525893305,57.502160093735036],[-124.18285702371807,57.50215337137378],[-124.18294087538945,57.502146677732334],[-124.18302264011632,57.50213995526836],[-124.18310440481427,57.50213323275373],[-124.1831883099683,57.50212541831364],[-124.1832700746057,57.50211869569644],[-124.18335392612786,57.50211200179245],[-124.18343569070713,57.50210527907261],[-124.18351948860966,57.502099705704985],[-124.1836012531332,57.502092982882424],[-124.1836851045403,57.50208628876799],[-124.1837668690057,57.50207956584288],[-124.183850666803,57.50207399226482],[-124.18393243121264,57.50206726923711],[-124.18401414204719,57.502061666800444],[-124.1840979397688,57.50205609306528],[-124.18417970409621,57.50204936988423],[-124.18426350176644,57.50204379604402],[-124.1843452125017,57.50203819340219],[-124.18442895658912,57.50203374009861],[-124.18451066727837,57.502028137354344],[-124.18459446485326,57.50202256330386],[-124.18467820887703,57.502018109842034],[-124.18475986597184,57.5020136275853],[-124.18484360995652,57.50200917401848],[-124.18492526701262,57.50200469165928],[-124.18500901095825,57.5020002379874],[-124.18509066797566,57.50199575552581],[-124.18517435837033,57.50199242239107],[-124.18525804875033,57.5019890892031],[-124.18533965220739,57.501985727229574],[-124.18542334255817,57.50198239393674],[-124.18550494598621,57.501979031860834],[-124.1855885828081,57.50197681910541],[-124.1856722196202,57.50197460629697],[-124.18575376951476,57.50197236470938],[-124.18583740630747,57.50197015179608],[-124.18592098960059,57.50196905947213],[-124.1860045728889,57.50196796709521],[-124.18608606926462,57.50196684594457],[-124.18616965254334,57.50196575346297],[-124.18625318233715,57.501965781570966],[-124.18633676560873,57.5019646889834],[-124.18641820849243,57.50196468826995],[-124.18650168481138,57.50196583686314],[-124.18658521460566,57.50196586476071],[-124.18666869093221,57.50196701324812],[-124.18675222072919,57.5019670410399],[-124.1868356970634,57.501968189421476],[-124.18691703303361,57.50197042968547],[-124.18700050938024,57.50197157796272],[-124.18708393227632,57.501973846830026],[-124.18716740863547,57.50197499500164],[-124.18725083154902,57.5019772637633],[-124.18733425447255,57.50197953247228],[-124.18741767740602,57.50198180112839],[-124.18750104690614,57.501985190374796],[-124.1875823829519,57.50198743022833],[-124.18766575247908,57.50199081937065],[-124.18774917545707,57.50199308781698],[-124.18783254501152,57.50199647685375],[-124.1879159145808,57.5019998658379],[-124.18799928416496,57.50200325476926],[-124.18808265376397,57.50200664364786],[-124.18816596995413,57.50201115311721],[-124.18824933958534,57.5020145418905],[-124.1883327092314,57.502017930611025],[-124.18841602547595,57.50202243992239],[-124.18849939515421,57.50202582853756],[-124.18858271143584,57.502030337743534],[-124.18866608114625,57.50203372625336],[-124.18874939746496,57.50203823535411],[-124.18883271380346,57.502042744402125],[-124.1889160301617,57.50204725339759],[-124.18899939993892,57.50205064169664],[-124.18908271633427,57.50205515058674],[-124.18916603274936,57.5020596594242],[-124.18924934918418,57.50206416820908],[-124.18933266563882,57.50206867694125],[-124.18941598211319,57.50207318562087],[-124.18949935199187,57.50207657360384],[-124.18958266850332,57.50208108217804],[-124.18966598503454,57.50208559069965],[-124.18974930158552,57.50209009916862],[-124.18983261815627,57.502094607585036],[-124.18991598811905,57.502097995304545],[-124.18999930472687,57.50210250361555],[-124.19008262135443,57.50210701187399],[-124.19016599136671,57.50211039943544],[-124.19024930803135,57.50211490758856],[-124.19033267807579,57.502118295044625],[-124.19041604813508,57.50212168244803],[-124.19049936485412,57.502126190443136],[-124.19058273494558,57.50212957774109],[-124.19066610505189,57.50213296498643],[-124.19074947517306,57.5021363521789],[-124.19083284530909,57.5021397393188],[-124.19091626880282,57.502142005761314],[-124.19099963896612,57.5021453927957],[-124.19108306248219,57.502147659132696],[-124.19116643267274,57.50215104606168],[-124.19124985621119,57.50215331229313],[-124.19133327975955,57.502155578471786],[-124.19141461639559,57.502157815961255],[-124.19149803996368,57.50216008203578],[-124.1915814635417,57.50216234805732],[-124.19166483380887,57.50216573467113],[-124.19174825740924,57.50216800058722],[-124.19183168101955,57.50217026645056],[-124.19191510463985,57.50217253226101],[-124.19199852827003,57.50217479801885],[-124.19208189860167,57.502178184368915],[-124.19216532225423,57.502180450021065],[-124.19224874591673,57.50218271562053],[-124.19233216958915,57.50218498116715],[-124.19241553997284,57.50218836730627],[-124.19249896366763,57.50219063274734],[-124.19258238737237,57.50219289813563],[-124.1926657577957,57.502196284116536],[-124.19274918152274,57.502198549399324],[-124.19283260525977,57.5022008146293],[-124.19291597572274,57.502204200452],[-124.1929993994821,57.502206465576435],[-124.1930828232514,57.50220873064816],[-124.19316624703063,57.502210995666964],[-124.19324961754566,57.5022143812787],[-124.19333304134722,57.50221664619205],[-124.19341646515875,57.50221891105263],[-124.1934998889802,57.50222117586046],[-124.19358325954727,57.50222456126119],[-124.19366668339106,57.50222682596337],[-124.1937501072448,57.50222909061285],[-124.19383353110847,57.5022313552095],[-124.19391695498207,57.50223361975342],[-124.19400032561356,57.502237004890425],[-124.19408374950952,57.502239269328804],[-124.1941671734154,57.50224153371433],[-124.19425059733122,57.5022437980471],[-124.19433193432766,57.50224603373687],[-124.19441535826316,57.50224829796535],[-124.19449878220863,57.50225056214115],[-124.19458220616403,57.50225282626405],[-124.19466563012934,57.50225509033424],[-124.1947490541046,57.50225735435159],[-124.19483253131736,57.50225849766987],[-124.19491595531004,57.50226076158161],[-124.19499937931265,57.50226302544057],[-124.19508280332522,57.50226528924673],[-124.19516628056543,57.50226643235375],[-124.19524970459541,57.50226869605426],[-124.19533318184811,57.50226983905558],[-124.19541660589549,57.502272102650544],[-124.19550008316072,57.50227324554608],[-124.19558350722549,57.502275509035435],[-124.19566698450322,57.502276651825376],[-124.19575040858543,57.50227891520914],[-124.19583388587564,57.502280057893394],[-124.19591736317086,57.502281200524706],[-124.19600084047111,57.5022823431033],[-124.1960843177764,57.502283485628915],[-124.19616779508665,57.50228462810179],[-124.19625127240197,57.502285770521645],[-124.19633474972227,57.50228691288886],[-124.19641822704763,57.50228805520302],[-124.19649961744464,57.50228916890854],[-124.1965830947799,57.502290311118365],[-124.19666662529367,57.50229033262822],[-124.19675010263651,57.502291474732324],[-124.19683363315295,57.502291496136465],[-124.19691711050334,57.50229263813484],[-124.19700064102243,57.502292659433046],[-124.19708417154162,57.5022926806784],[-124.19716770206088,57.50229270187078],[-124.19725123258026,57.50229272301031],[-124.19733476309972,57.50229274409686],[-124.1974182936193,57.502292765130484],[-124.19750182413894,57.50229278611123],[-124.19758326772435,57.5022927785003],[-124.19766685138818,57.50229167872896],[-124.19775038190555,57.50229169955216],[-124.19783396556217,57.50229059967489],[-124.1979174960773,57.50229062039221],[-124.19800107972671,57.50228952040904],[-124.19808466337126,57.50228842037289],[-124.19816824701098,57.502287320283706],[-124.19825183064586,57.50228622014155],[-124.19833332734144,57.502285091419445],[-124.19841691096667,57.502283991172675],[-124.19850054770649,57.50228177022496],[-124.19858413131956,57.50228066987212],[-124.19866771492778,57.50227956946627],[-124.19875135164322,57.502277348359584],[-124.1988349352393,57.502276247847675],[-124.19891648500337,57.50227399811713],[-124.19900012169202,57.5022717768527],[-124.19908375837089,57.50226955553506],[-124.19916739504,57.50226733416439],[-124.19925103169935,57.50226511274064],[-124.19933466834888,57.5022628912639],[-124.19941621805472,57.502260641224396],[-124.19949985468477,57.50225841964272],[-124.19958349130505,57.50225619800814],[-124.19966712791556,57.50225397632042],[-124.19975076451631,57.502251754579746],[-124.19983445418734,57.50224841213759],[-124.19991809076608,57.50224619029069],[-124.19999964040153,57.502243939890334],[-124.2000833300335,57.502240597290246],[-124.20016696658047,57.50223837528551],[-124.20025065618546,57.50223503257919],[-124.2003342927104,57.50223281046829],[-124.20041589535545,57.50222943916193],[-124.20049958491886,57.50222609629769],[-124.2005832214096,57.502223874028786],[-124.20066691094607,57.5022205310584],[-124.20075060046781,57.50221718803475],[-124.20083423692428,57.502214965606704],[-124.20091583948665,57.50221159399094],[-124.20099952896685,57.50220825080928],[-124.20108321843229,57.502204907574594],[-124.20116685484227,57.50220268493558],[-124.20125054428075,57.50219934159459],[-124.20133423370453,57.5021959982006],[-124.20141583618185,57.50219262627538],[-124.20149952557631,57.50218928277643],[-124.20158316192757,57.502187059873314],[-124.20166685129506,57.502183716268135],[-124.2017505406478,57.502180372609935],[-124.20183214305466,57.502177000427025],[-124.20191583237808,57.5021736566638],[-124.20199946867064,57.50217143349665],[-124.20208315796708,57.502168089627226],[-124.2021668472488,57.50216474570477],[-124.2022505365158,57.502161401729126],[-124.20233208583126,57.50215914988608],[-124.2024157750714,57.5021558058056],[-124.20249946429684,57.50215246167192],[-124.2025831005086,57.50215023813449],[-124.20266678970704,57.50214689389465],[-124.20274839196075,57.5021435211448],[-124.2028320281383,57.50214129744947],[-124.20291571729517,57.502137953051594],[-124.20299935345068,57.50213572925016],[-124.20308304258056,57.50213238474613],[-124.20316667871404,57.502130160838526],[-124.20324828088746,57.50212678777928],[-124.20333191699895,57.50212456376684],[-124.20341555310065,57.50212233970136],[-124.20349918919257,57.502120115582855],[-124.20359539981916,57.502116941423594],[-124.2036762603932,57.502129257195215],[-124.20375503408899,57.50214154447637],[-124.20383584180507,57.502154980800206],[-124.20391670253794,57.50216729642477],[-124.20399547639028,57.50217958356265],[-124.20407633722718,57.50219189908951],[-124.20415511118209,57.50220418613237],[-124.20423591917276,57.50221762221168],[-124.20431678016848,57.50222993759154],[-124.20439555427993,57.50224222449105],[-124.2044764153797,57.502254539773226],[-124.204557223591,57.502267975656245],[-124.20463599785897,57.50228026241246],[-124.20471685911754,57.50229257754759],[-124.20479772042853,57.50230489263328],[-124.2048764419192,57.502318299896615],[-124.20495730333658,57.50233061488474],[-124.20503816480635,57.50234292982333],[-124.2051169393851,57.502355216292955],[-124.20519780095893,57.50236753113403],[-124.20527652272042,57.502380938159114],[-124.20535738440067,57.502393252902515],[-124.2054382461333,57.50240556759646],[-124.20551702097117,57.50241785382773],[-124.2055978298974,57.50243128907476],[-124.20567869178883,57.5024436036216],[-124.20575746678321,57.50245588970957],[-124.20583832877868,57.5024682041588],[-124.20591913792552,57.5024816392095],[-124.20599791307644,57.502493925154184],[-124.20607877523071,57.50250623945643],[-124.20615963743737,57.50251855370898],[-124.20623841274254,57.50253083951051],[-124.20631922216391,57.502544274316655],[-124.20639799757394,57.502556560023066],[-124.20647885999105,57.50256887408035],[-124.20655972246054,57.50258118808832],[-124.20663844514483,57.5025945943028],[-124.20671930772073,57.502606908213124],[-124.20680017034901,57.50261922207396],[-124.2068789460698,57.50263150749378],[-124.20695980880215,57.50264382125692],[-124.20704061871864,57.50265725562233],[-124.20711939459596,57.50266954089885],[-124.20720025748707,57.50268185451496],[-124.20727903346696,57.502694139696416],[-124.20735984360324,57.50270757386666],[-124.20744070665316,57.50271988733566],[-124.20751948278956,57.502732172373875],[-124.20760034594352,57.50274448574531],[-124.2076811563004,57.50275791971916],[-124.20775993259332,57.5027702046141],[-124.20784079590604,57.50278251783838],[-124.20792165927118,57.50279483101324],[-124.20800043571832,57.5028071157649],[-124.2080812463497,57.50282054949418],[-124.20816210987363,57.502832862522006],[-124.2082408864773,57.50284514713029],[-124.20832175010523,57.50285746006041],[-124.20840047398305,57.50287086522596],[-124.20848133771739,57.50288317805847],[-124.20856220150412,57.50289549084155],[-124.20864097836686,57.50290777521148],[-124.20872178943863,57.50292120854944],[-124.20880265338413,57.502933521185405],[-124.20888143040338,57.50294580541202],[-124.20896229445293,57.502958117950314],[-124.20904315855486,57.50297043043927],[-124.20912188292104,57.502983835175364],[-124.20920274712935,57.50299614756664],[-124.20928361139006,57.50300845990847],[-124.20936238872005,57.50302074384847],[-124.20944320028687,57.503034176745544],[-124.20952197772175,57.50304646059055],[-124.20960284219288,57.50305877273707],[-124.20968370671638,57.503071084834126],[-124.20976243151688,57.50308448918884],[-124.20984329614679,57.50309680118842],[-124.20992416082909,57.50310911313845],[-124.21000293857466,57.503121396696756],[-124.21008380336097,57.50313370854908],[-124.21016461542287,57.50314714100526],[-124.21024339332496,57.5031594244204],[-124.21032425827003,57.503171736125594],[-124.21040303627468,57.503184019445584],[-124.21048384855635,57.50319745170676],[-124.21056471366022,57.50320976326495],[-124.21064349182134,57.50322204644161],[-124.21072435702925,57.50323435790217],[-124.21080522228951,57.50324666931326],[-124.2108839478491,57.503260073000334],[-124.21096481321578,57.503272384313824],[-124.21104567863482,57.5032846955778],[-124.21112445710665,57.50329697846788],[-124.2112052698834,57.50331041028814],[-124.21128613546121,57.503322721404984],[-124.21136491408954,57.503335004151886],[-124.21144577977137,57.50334731517111],[-124.21152450576527,57.50336071847696],[-124.21160537155349,57.50337302939855],[-124.21168623739409,57.503385340270725],[-124.21176501628148,57.50339762277912],[-124.2118458822261,57.503409933553705],[-124.2119266954979,57.503423364933084],[-124.21200547454175,57.50343564729824],[-124.21208634064516,57.50344795792563],[-124.21216720680094,57.50346026850364],[-124.21224593328311,57.50347367137994],[-124.21232679954527,57.50348598186031],[-124.2124055788482,57.503498263987034],[-124.21248644521437,57.50351057436976],[-124.21256725892644,57.50352400535767],[-124.21264603838587,57.503536287341106],[-124.21272690491081,57.50354859757669],[-124.2128077714881,57.503560907762854],[-124.21288655110173,57.50357318960303],[-124.21296736508828,57.50358662034638],[-124.21304823182432,57.503598930385465],[-124.21312701159445,57.50361121208234],[-124.21320787843452,57.50362352202378],[-124.21328869264161,57.50363695257073],[-124.21336747256821,57.50364923412432],[-124.21344833956704,57.503661543918724],[-124.2135271195962,57.50367382537718],[-124.213607934023,57.503687255729034],[-124.2136888011806,57.50369956537626],[-124.21376758136623,57.503711846691495],[-124.21384844862783,57.503724156241034],[-124.21392931594183,57.50373646574114],[-124.21400804361731,57.50374986756845],[-124.21408891103766,57.50376217697099],[-124.2141717602194,57.503776755911346],[-124.2142630628947,57.50378920658785],[-124.2143586976514,57.5037983517808],[-124.21445641948422,57.503807525176065],[-124.21455408871587,57.50381781915473],[-124.21464544426067,57.503829148911215],[-124.21473038083411,57.503843755770006],[-124.21480258470973,57.503862675601354],[-124.21482512095398,57.503871951774855],[-124.21485996885833,57.50388588016098],[-124.21490028832127,57.5039167031719],[-124.21492150868036,57.503953995730015],[-124.2149342756442,57.50399341654187],[-124.21494490295458,57.504033929746086],[-124.21495547765078,57.50407556360704],[-124.21496610500672,57.50411607681247],[-124.21497250564957,57.50415765414764],[-124.21498094072213,57.50420038040394],[-124.21498525434107,57.5042419294782],[-124.21498951533329,57.504284599210436],[-124.214993723699,57.50432838960043],[-124.2149958450129,57.5043721517289],[-124.2149979663317,57.50441591385898],[-124.21500008765535,57.50445967599075],[-124.2150001219152,57.50450340986105],[-124.21500010353894,57.50454826438969],[-124.21499799808902,57.50459309065701],[-124.21499589263411,57.50463791692609],[-124.21499373453769,57.50468386385369],[-124.21498954199164,57.50472866186303],[-124.21498738388237,57.504774608794136],[-124.21498313868179,57.50482052746377],[-124.21497889347094,57.504866446135125],[-124.21497464824985,57.504912364808206],[-124.21496868438858,57.50495041062003],[-124.22222861901946,57.50569667552179],[-124.22276292685713,57.50570388050508],[-124.23464875274736,57.505199750146296],[-124.23820304548755,57.50277134128228],[-124.23932599596267,57.49980802326926],[-124.24362228904975,57.497209985251814],[-124.25182669625889,57.494968729231786],[-124.2654290788327,57.49373109859831],[-124.28004960108898,57.49507098087021],[-124.28648895660768,57.496356934994395],[-124.2892302031252,57.49705637745799],[-124.29786579060148,57.50041556945511],[-124.30057636819838,57.50367998802205],[-124.29856609981195,57.50902750942174],[-124.29838182482557,57.513142703919044],[-124.30053321511633,57.51697406033768],[-124.30794489041966,57.518666176536016],[-124.30962993125755,57.51873264203019],[-124.31619955603247,57.51945361911208],[-124.32500382241732,57.52029237713099],[-124.33439410793133,57.5230217985976],[-124.34282189502429,57.526770085157594],[-124.35114603245299,57.53063314892255],[-124.35863197798777,57.53381244682536],[-124.36063966736478,57.53455507210331],[-124.36460888480087,57.53828234659238],[-124.36844783149013,57.543891760010716],[-124.37155797240332,57.54819131425279],[-124.37289838011904,57.55047746839854],[-124.37838352038011,57.5532452033308],[-124.38896422125839,57.55540218812428],[-124.40064809022765,57.555625020175846],[-124.40414600573287,57.556779737806956],[-124.40525153061618,57.561126003135065],[-124.4038934196274,57.56636651176807],[-124.4026521662937,57.57081003746923],[-124.40204884699108,57.5748037751803],[-124.4023160178972,57.57839539458228],[-124.40409603696953,57.58059686606645],[-124.40493738145489,57.58163757294442],[-124.40514712743607,57.581725330338806],[-124.40548038289134,57.58186167629],[-124.40581364074208,57.58199802141731],[-124.40614267094242,57.582135436049924],[-124.40646519364178,57.58227837821416],[-124.40671724009101,57.58245523207054],[-124.40695218028196,57.58264085012746],[-124.40716801674748,57.582832965642226],[-124.40736460812255,57.58303494113648],[-124.40765320800989,57.58318868508236],[-124.40799731938266,57.58331618447202],[-124.40834352461665,57.58344370818422],[-124.40868977920165,57.583570110194756],[-124.4090403132456,57.583694320079736],[-124.40939294115448,57.58381855423621],[-124.40974561836572,57.583941666655484],[-124.41010248103309,57.58406482849959],[-124.4104594399615,57.584185747772786],[-124.41081640116556,57.58430666609473],[-124.41105447189065,57.58441830365512],[-124.41111468454831,57.58447958226531],[-124.41116521631685,57.58457214292315],[-124.41117391598576,57.584664200389994],[-124.41115671804458,57.58477500974287],[-124.41128930790026,57.58515675109029],[-124.41159713662452,57.58565161609307],[-124.4117160573281,57.586060105906235],[-124.41179556651312,57.58646027223737],[-124.41189136219943,57.58682138622663],[-124.41211056746032,57.58743405113783],[-124.41240857240186,57.588164286416706],[-124.41292013615669,57.588792798965784],[-124.41420638637585,57.58936445006622],[-124.41503709390541,57.58966934227335],[-124.4159915801723,57.589917401673226],[-124.41698649396443,57.59009977714363],[-124.4183204271397,57.590383764474225],[-124.41916266716864,57.59071456016077],[-124.42029851061454,57.591483956741676],[-124.42078932401347,57.591308161246644],[-124.42167194696603,57.59107200563582],[-124.42244503693091,57.59080201641095],[-124.42309640467512,57.590590002991675],[-124.42389080473619,57.590411091590944],[-124.42489257802615,57.59022791995674],[-124.42570137472417,57.590004314522275],[-124.42669940914973,57.58986033308327],[-124.4277904556983,57.58969390233031],[-124.428716380686,57.58972398214068],[-124.42963315049391,57.58977300998413],[-124.43053630431585,57.58984766128767],[-124.43141924361824,57.58995570758527],[-124.43227541676094,57.590103799761245],[-124.43311528585288,57.590292062413035],[-124.43393708536647,57.59051262529685],[-124.43474318663012,57.590758788601704],[-124.43553177642289,57.59102380290095],[-124.43630317907277,57.59129982273411],[-124.43705344181986,57.59158119477457],[-124.43780143897337,57.591867021201125],[-124.43854693998705,57.59216290619816],[-124.4390136439713,57.59302851541859],[-124.43861020508977,57.5947439383659],[-124.43856960623128,57.595170703132744],[-124.43850956110123,57.59556135416499],[-124.4384255305398,57.59597527078173],[-124.43829914470156,57.5964010220668],[-124.43799874885427,57.59723962671036],[-124.43803049803338,57.59753604622209],[-124.43782674198987,57.598162731589966],[-124.43770169169846,57.59875894901427],[-124.43827501273651,57.598765726427004],[-124.43902506579606,57.59875104029516],[-124.43972924037588,57.598782906154455],[-124.44089344366488,57.598878508831966],[-124.44190776143144,57.59890280834633],[-124.44315355063391,57.59915298200124],[-124.4445745704695,57.599418663131075],[-124.44564366196482,57.599690281927984],[-124.4464255932246,57.59997085127883],[-124.44650996139843,57.60000660593148],[-124.44711914603774,57.600262712539674],[-124.44759882375732,57.60040964249917],[-124.44823024975776,57.600583023141695],[-124.44877818742665,57.60095502619898],[-124.44938857560423,57.60138719293011],[-124.45005242272029,57.60184353286302],[-124.45056381836494,57.60254702847924],[-124.45055861472788,57.60293047964519],[-124.45063576509527,57.60375784217601],[-124.45103156741108,57.604063012294475],[-124.45122157423435,57.60448575747504],[-124.45136973538575,57.6050616415748],[-124.45143294719934,57.60551317823636],[-124.45128209771713,57.60597678471482],[-124.451181775101,57.60633108775355],[-124.45092383089032,57.6067508265372],[-124.45102977820254,57.60697634525066],[-124.45110399479904,57.60710729570601],[-124.45125858448364,57.60732104910346],[-124.45138841390124,57.60757712486373],[-124.45140474248416,57.607946252027645],[-124.45150724272551,57.608153787970366],[-124.45155864331272,57.60838203153621],[-124.45146199916888,57.608748713964076],[-124.4514558421597,57.609155705213034],[-124.45144366171878,57.60945385147412],[-124.45151004125168,57.60982805119351],[-124.45153497314683,57.610191672933865],[-124.45138214525142,57.61049826416793],[-124.45131269909581,57.61071163569221],[-124.45135537675706,57.61089716486848],[-124.451871868592,57.61127439503394],[-124.45236343335536,57.61185206002051],[-124.45267304516398,57.61221901497774],[-124.45273854980731,57.612512464512825],[-124.45284084069301,57.612930818984495],[-124.45283173551798,57.61315386911952],[-124.45288192693965,57.613566007009226],[-124.45302725451825,57.61405887722276],[-124.45322560440137,57.61453554701691],[-124.45342180950662,57.61506489701234],[-124.45350440569176,57.61550432783136],[-124.45340205527917,57.61595953739155],[-124.4533208410456,57.616307340586374],[-124.45315771889554,57.61660932970479],[-124.452926872467,57.61692846850052],[-124.45273380728756,57.61719422228373],[-124.45263986400421,57.61744319380231],[-124.45234128467197,57.61777948144766],[-124.45210195045094,57.61794713149879],[-124.45104237859005,57.618095080646455],[-124.45060572704362,57.618170704347264],[-124.45006601874499,57.61830791665222],[-124.44974390811436,57.61855308998341],[-124.44961774347497,57.61887233014419],[-124.44963581464422,57.619454547602736],[-124.44953186383997,57.61989628094684],[-124.44964130553751,57.62039546553269],[-124.44988608914319,57.620658500428334],[-124.45005243321663,57.6211493808901],[-124.45024939176021,57.6215576365522],[-124.45051871743088,57.62198916816592],[-124.4506080468711,57.62221225236547],[-124.45072195483118,57.622602713305504],[-124.45073789966361,57.62287876485779],[-124.45072291357084,57.623245287585114],[-124.45080183007636,57.623774392643355],[-124.45095757537635,57.62416646546073],[-124.4512097966164,57.62465835177824],[-124.45148951967748,57.62514383142464],[-124.45182830432353,57.62556832493894],[-124.45216175543949,57.625867157970504],[-124.4524217072443,57.626119152401785],[-124.45325613812355,57.62656514208147],[-124.45386467252585,57.6272080953437],[-124.45433518722243,57.62769131457763],[-124.45448633985646,57.62809454442096],[-124.45458345229989,57.628281832738296],[-124.4550738671694,57.62858585717763],[-124.45521982492211,57.62880847930443],[-124.45561896401736,57.62919329808854],[-124.4560307458575,57.629730774626466],[-124.45593401375551,57.62999654003414],[-124.45594283463305,57.63039698541267],[-124.45607955272182,57.63069239044108],[-124.45615042506,57.6311126244038],[-124.45632621364874,57.63137484318216],[-124.45660043395772,57.631638210561135],[-124.45708892255632,57.63219676509786],[-124.45724629593519,57.63234550561897],[-124.45734236696224,57.63271332711124],[-124.45767390663775,57.63316463640465],[-124.45761305490133,57.633424093828694],[-124.45767823357728,57.63362446495647],[-124.45749231258347,57.63386788551171],[-124.45754952464914,57.63405807117142],[-124.45750828574481,57.634401863354746],[-124.45755155794748,57.634677113777954],[-124.45756496114792,57.63496547285003],[-124.45757323744445,57.63507098207169],[-124.45765311557105,57.635373573407826],[-124.4577761668447,57.63559368368714],[-124.4578327896958,57.63579844097418],[-124.45789036682014,57.63603124471153],[-124.45796851552896,57.63637642960365],[-124.45803743390076,57.636588058756715],[-124.45813700387565,57.63671593923107],[-124.45819745863258,57.636878127492636],[-124.4583032394365,57.637368296893804],[-124.45842206620702,57.63758947903531],[-124.45853037583562,57.637811659945235],[-124.45863035396772,57.63803262229327],[-124.45871986022964,57.638253462572926],[-124.45879679981785,57.63847415639903],[-124.4588612181192,57.63869358290971],[-124.45891311490962,57.63891174212241],[-124.45895039531175,57.63912860964697],[-124.45897305907074,57.639344185495055],[-124.4589811515396,57.63955734878879],[-124.45896624810047,57.63976912279907],[-124.45891559772295,57.639983844630024],[-124.45883143133263,57.64019817599273],[-124.4587178922028,57.640413286524094],[-124.45857712018272,57.640628079673334],[-124.45841334993641,57.640841483292924],[-124.45822662672217,57.641052376410826],[-124.45802318887786,57.64126195307087],[-124.45780522221581,57.64146799584513],[-124.45757696179982,57.64166943262528],[-124.45733840754897,57.64186626335541],[-124.4570937490231,57.64205853684441],[-124.45684517238702,57.64224403572018],[-124.45659896222595,57.64242283328146],[-124.45634259531572,57.64259366197895],[-124.4560594499295,57.64275296349004],[-124.45575562775771,57.64290529455046],[-124.45543326930311,57.64304955858744],[-124.45509647286696,57.64318804616716],[-124.4547535265157,57.643323096834266],[-124.45440228963977,57.64345580695035],[-124.45405105030261,57.64358851615057],[-124.4537039983171,57.64372127340948],[-124.45336104217317,57.64385632053439],[-124.45206142832973,57.6449367503798],[-124.45176786416606,57.645093678712215],[-124.45148650083917,57.645259720655595],[-124.45121333167454,57.64543034368629],[-124.45095250085171,57.645606717807304],[-124.45069171345732,57.645781970554886],[-124.45043711700268,57.64595953821146],[-124.4501783280853,57.64613705632132],[-124.44994640531564,57.64632386017505],[-124.44971243108762,57.64650951821568],[-124.44946811690988,57.64669169043669],[-124.44923204298694,57.64687732313735],[-124.44922105925833,57.64704316559978],[-124.4491901637777,57.64723456751306],[-124.44932468377571,57.64773742244339],[-124.4495289483763,57.64791924491247],[-124.44969505920147,57.64806024858257],[-124.44983559995066,57.648416266685516],[-124.44996852757231,57.64865108123551],[-124.45030868219442,57.648944394555414],[-124.45064120956492,57.64916808910507],[-124.45106770473443,57.6494007329567],[-124.45131626154811,57.64957634270037],[-124.45171280346808,57.64977274811228],[-124.45201615034199,57.64999273343257],[-124.45229627863212,57.65037056802609],[-124.45262965477586,57.650574081787376],[-124.45311775475986,57.65083883949743],[-124.45355602127457,57.65114338443432],[-124.45402233816904,57.651531241510334],[-124.45453850495048,57.65187930774274],[-124.45497848725803,57.652142375100766],[-124.4553570235156,57.65242154515081],[-124.45571775062122,57.65272629918645],[-124.45600812920995,57.6528541667214],[-124.45634118157204,57.65306663878875],[-124.45658446013518,57.65321862704296],[-124.4569059115771,57.65335582647834],[-124.45707298728055,57.65347440363353],[-124.45727109027597,57.653551849374125],[-124.45743953801224,57.65363679912238],[-124.45768378351498,57.65376524655697],[-124.4578525983701,57.653841228602865],[-124.45800798263616,57.65383518943171],[-124.45828608255401,57.65390459439574],[-124.45863957502404,57.653975998438234],[-124.45899352191854,57.65408777834128],[-124.45939557852742,57.65415077445459],[-124.4598016947152,57.65411400922563],[-124.46037047794844,57.65430454317324],[-124.46084569817002,57.65447604347783],[-124.4614224191965,57.65483263697537],[-124.4619434802766,57.65506298070865],[-124.46292702994842,57.65536598121829],[-124.46368576459632,57.655474599691885],[-124.46463369125483,57.655519244651224],[-124.4655478242631,57.655621805322404],[-124.46680090094975,57.65605238059444],[-124.46772413159754,57.65650043209487],[-124.46849501699386,57.65682784237783],[-124.4687302680662,57.6570245723291],[-124.46889268239237,57.657259709249814],[-124.46905467719019,57.65766081300041],[-124.46961399940335,57.65808781932967],[-124.47068985673351,57.658029606443186],[-124.4718136691978,57.658081838874985],[-124.47256306069822,57.658216090827786],[-124.47350786218132,57.65849613581866],[-124.47457560456785,57.659055706020375],[-124.4751683501499,57.65933168050848],[-124.47622530945118,57.65969149826893],[-124.47675482051052,57.65992412308382],[-124.47703227579014,57.66011571673536],[-124.4773147836295,57.66018176761932],[-124.47756339843882,57.660256399452884],[-124.47796003043037,57.660404504800574],[-124.47835342144901,57.660633314745766],[-124.4790464609129,57.66091939622234],[-124.47987004685261,57.661296688076895],[-124.4806772417834,57.6616648151348],[-124.48188255688312,57.662145161923064],[-124.48232341642068,57.66244627609018],[-124.48264781501497,57.663141919337974],[-124.48329769525076,57.663669713039525],[-124.4841203060287,57.664073881476554],[-124.48498257321226,57.664325983764634],[-124.48576136737223,57.66456815395486],[-124.4864452961918,57.664665691296015],[-124.4874813720659,57.6647672496737],[-124.48855099108212,57.66486918293252],[-124.48943830581683,57.66491519830771],[-124.49069560997916,57.664938512881285],[-124.49176056523838,57.66494728806886],[-124.4927101495068,57.6648515692413],[-124.49364403029766,57.6647814578533],[-124.49456189752173,57.66474480069485],[-124.49547954019579,57.66471374179139],[-124.49639499621574,57.6646848945637],[-124.49731245793281,57.66465830665148],[-124.49822982941511,57.664633954230155],[-124.50008966044265,57.6655925577748],[-124.50116189128434,57.66552396094877],[-124.50180147044969,57.66547176615464],[-124.50246075571854,57.66539848411048],[-124.50340087601369,57.665329495929875],[-124.50471943285054,57.665182912652135],[-124.50536178987637,57.6650600822689],[-124.50609438092063,57.66498873150743],[-124.50671881154007,57.66489484940468],[-124.50754532393042,57.66483464311325],[-124.5083946741398,57.66467376075229],[-124.50924042004702,57.66455096090904],[-124.5101586419855,57.66455793541689],[-124.51107682016973,57.664566024484294],[-124.51199508687674,57.66457186532541],[-124.51805258890512,57.664699261742406],[-124.51943657542232,57.66507584811544],[-124.51986397137316,57.665354255269605],[-124.52090809997546,57.66659388517133],[-124.521549131547,57.66720212974591],[-124.52179010239999,57.667314720537554],[-124.52207392379829,57.667350411076264],[-124.52265253855921,57.667301920430184],[-124.52335451885543,57.66737031016512],[-124.52409549836631,57.66751426636614],[-124.52490133564099,57.667769962068654],[-124.52541702150165,57.668152506033536],[-124.52595717763259,57.66871474834326],[-124.52625735637484,57.669138624730124],[-124.52661226423285,57.66950367418474],[-124.5273451935682,57.670017592472036],[-124.52774021729134,57.67043018512549],[-124.52843699965861,57.670741838844194],[-124.52917225971733,57.67092719529984],[-124.5299926550123,57.67113480010478],[-124.53071871753767,57.67134135282018],[-124.5315565981625,57.67153119908192],[-124.53226803496258,57.671682631130984],[-124.53324696345938,57.672075886827066],[-124.53450761414508,57.672019198421445],[-124.53553949444199,57.672020524470106],[-124.53636006280283,57.67217089865787],[-124.5372781448383,57.672240481207325],[-124.53827322112285,57.67227165767394],[-124.53917918619591,57.6722749292034],[-124.5402247116972,57.67230328338504],[-124.54133585705551,57.67226170269077],[-124.59097560177018,57.68301652905516],[-124.5937603226292,57.6836191746061],[-124.59386036338917,57.683637058185845],[-124.59499270259117,57.68370963350681],[-124.5961380278955,57.68371505172552],[-124.59693287013424,57.68372347558313],[-124.59793114215425,57.68373404865734],[-124.5991142818093,57.68379479089507],[-124.59989239014294,57.68380189852793],[-124.59999745833035,57.68379740226665],[-124.60033363489161,57.68378413464839],[-124.60070189132882,57.683754383919904],[-124.60112274327736,57.68372070211415],[-124.60148088535392,57.683680749649454],[-124.60197382788733,57.6836265195782],[-124.60242424520128,57.68358753871245],[-124.60278489582424,57.68353639507724],[-124.60319357414433,57.68349136414888],[-124.60367623262401,57.68343141225326],[-124.60395426221686,57.68340182256076],[-124.60446632039609,57.68334105633595],[-124.60485591321014,57.68330142626973],[-124.6053063236849,57.6832624356145],[-124.60575652668443,57.68322904832385],[-124.60644149839447,57.683144302446934],[-124.60662876694364,57.68312945182832],[-124.60690741113622,57.683083041258435],[-124.60731896082606,57.683016721078694],[-124.6077185035489,57.682934573618404],[-124.60813107516579,57.68289741843341],[-124.60854570191458,57.6828614049804],[-124.60896024544601,57.68282763218965],[-124.60937470583399,57.68279610006175],[-124.60978908315234,57.682766808597094],[-124.61020551581473,57.682738658826835],[-124.6106219066928,57.68271162872773],[-124.61103825582366,57.68268571830024],[-124.6114546043843,57.68265980656459],[-124.61187095237473,57.682633893520645],[-124.61228734091017,57.68260685818815],[-124.6127037288506,57.68257982154726],[-124.61312019837705,57.68255054163684],[-124.61638402882133,57.68256674155282],[-124.61661628040751,57.68258374636543],[-124.61697448467157,57.68259870205735],[-124.61734107785851,57.682613744369256],[-124.61760684378199,57.68263221877622],[-124.61799481862879,57.68263626838546],[-124.61840870584467,57.68267759371842],[-124.61898444405415,57.682710513085645],[-124.61958917553139,57.6827538248596],[-124.62021677287954,57.68280297915789],[-124.62109957357534,57.68287273064474],[-124.62192621762202,57.68298674817571],[-124.62373400244752,57.683178245509126],[-124.62462933900865,57.68330753824631],[-124.62570901245516,57.68350265829011],[-124.6263611216341,57.68339728339856],[-124.62715577839758,57.683352817799964],[-124.62775315709995,57.68336798071179],[-124.62843419676707,57.68333242272924],[-124.6291976759751,57.68327977215461],[-124.62976363686782,57.68329347936704],[-124.63037746868476,57.68331777193473],[-124.6310074705331,57.68335904990796],[-124.6316222772513,57.68335643302161],[-124.63213903165857,57.68339653533485],[-124.6325914217517,57.6834180285262],[-124.63313838081208,57.68349320238621],[-124.63381662466263,57.683534964874156],[-124.63450708263183,57.68364525555132],[-124.6349908082889,57.6837287409116],[-124.63568304706685,57.683848015005154],[-124.63616472107603,57.68393035349832],[-124.63685817890948,57.684015991796464],[-124.63717929781292,57.68407088147878],[-124.63774244803447,57.684163023878774],[-124.63814032074467,57.684242250243784],[-124.63848596469437,57.68437364447725],[-124.63882515788889,57.684509457116626],[-124.63915802134179,57.684646325241026],[-124.6394844340766,57.68478761187148],[-124.63980451704313,57.68492995408362],[-124.64011609230039,57.6850755723706],[-124.64041915983115,57.68522446679359],[-124.64071375988975,57.685375516420486],[-124.64099335881218,57.68553538269489],[-124.64125799686404,57.68570294472313],[-124.64151190897053,57.68587712463459],[-124.641750900387,57.686057879473346],[-124.64198130338976,57.686244152850925],[-124.64220315818586,57.686434823821784],[-124.64241856212037,57.68662991393111],[-124.64262545798181,57.68682828072218],[-124.64282808074402,57.68702884622917],[-124.643028527805,57.68723163196361],[-124.6432247419268,57.687435495454366],[-124.64342305561657,57.68763938017823],[-124.64361927397877,57.687843243163705],[-124.64381976978191,57.68804490686227],[-124.64402240539097,57.688245470774746],[-124.64422931849603,57.68844383536565],[-124.64444268697596,57.688637780088634],[-124.64466243052975,57.68882954690353],[-124.64489274427793,57.68901917869954],[-124.64512939310848,57.689207753503624],[-124.6453681418501,57.68939634937214],[-124.64560899053454,57.689584966294035],[-124.64585197932219,57.689772483259205],[-124.646090695108,57.68996219892549],[-124.64632521809916,57.69015187131948],[-124.64655341051844,57.690342600027876],[-124.64677317467334,57.69053436365288],[-124.64698233263499,57.690729382808364],[-124.64717886683633,57.6909253941219],[-124.6473605591921,57.69112573922889],[-124.64752539202966,57.691328154772876],[-124.64767122735734,57.69153374040158],[-124.64779592714555,57.691743595765764],[-124.64790162885039,57.6919566213397],[-124.64798833217745,57.69217281717083],[-124.64806023226204,57.692392226120155],[-124.64811946666119,57.69261374862176],[-124.6481659950991,57.692838505695995],[-124.64820199524311,57.693064276762215],[-124.6482337602162,57.6932911260539],[-124.6482591921627,57.693519032167195],[-124.64828042882597,57.693746895510564],[-124.64830162568465,57.69397587990361],[-124.64832496068017,57.69420376474632],[-124.64835249162255,57.69443169244698],[-124.64838425864637,57.69465854199886],[-124.64842445754114,57.694884356208384],[-124.64847526643794,57.6951069144621],[-124.6485366054012,57.69532845875571],[-124.6486127505066,57.6955467898677],[-124.64870575984764,57.695763050176815],[-124.64881567374557,57.695976118640395],[-124.64894447025766,57.69618937962962],[-124.64909210966573,57.69640395409585],[-124.64925657442089,57.69661757857172],[-124.64944000279195,57.6968291533762],[-124.64963827915899,57.69703639364299],[-124.64985567971236,57.69723710005295],[-124.6500880086434,57.697431229750705],[-124.65033534606869,57.697616540638],[-124.65059983005273,57.69779193298841],[-124.65087948256075,57.697954022302405],[-124.65117430349272,57.69810280847762],[-124.65150123696289,57.6982339782238],[-124.65186661696397,57.69834647433934],[-124.65226612734025,57.69844361684016],[-124.65269121587833,57.6985298041018],[-124.65313131220428,57.6986071712426],[-124.653580002162,57.69867901717097],[-124.65402663564441,57.69874971925786],[-124.65446689679177,57.69882259793675],[-124.65488811739702,57.698899767476746],[-124.65528594187408,57.69898566951147],[-124.655651858416,57.69908358212466],[-124.65597319883892,57.69919561989358],[-124.65624770567605,57.699326245912566],[-124.65646263084646,57.69947981686008],[-124.65662652580347,57.6996519340895],[-124.65675847241064,57.69983718419793],[-124.65684465919605,57.700010756108824],[-124.65685641200082,57.70003442500361],[-124.65692877658664,57.70024262065844],[-124.65697568523916,57.7004584081715],[-124.65700129411012,57.70068295112682],[-124.6570056824574,57.7009140075152],[-124.65699518433608,57.70115052013794],[-124.656969879085,57.70139024696724],[-124.6569361009401,57.70163213079368],[-124.65689384973311,57.701876171612525],[-124.65684534300428,57.702119027644585],[-124.65716257826347,57.702524832628086],[-124.65733542881085,57.70274077542379],[-124.65754930331748,57.702924612538226],[-124.65796363420489,57.703079080188104],[-124.65829711839271,57.70326412759171],[-124.65859033975171,57.70345998072102],[-124.6587029379148,57.7037179257202],[-124.65893380159586,57.70395576078556],[-124.65908659083888,57.704205140972064],[-124.65922958912657,57.704553106933375],[-124.65924461798637,57.704958091845704],[-124.65936792369025,57.705447157669965],[-124.65949791690352,57.705688457048794],[-124.65964152063997,57.70601960776341],[-124.65964699863902,57.70622039770389],[-124.65956828912361,57.70619044450922],[-124.65957828167792,57.70638230878133],[-124.6594876330279,57.706511476727925],[-124.65931636569829,57.7066645002538],[-124.65915123355127,57.70682207136969],[-124.65900486757208,57.706983196507366],[-124.65887303110992,57.70714895427184],[-124.65874748915222,57.707314775657395],[-124.65862400488737,57.70748173921525],[-124.65850257833144,57.70764984495205],[-124.65838119047217,57.70781682958325],[-124.65825350577009,57.70798375038096],[-124.65811960371119,57.70814836528364],[-124.65797738563047,57.7083106530173],[-124.65782059538962,57.708469428762385],[-124.65764717402216,57.70862355018428],[-124.65744266978399,57.70876614224529],[-124.65716626429246,57.70886426982014],[-124.65684124213243,57.70891256133094],[-124.65651249984947,57.70894735722725],[-124.65618957478567,57.70899566842089],[-124.65588260119505,57.7090676905914],[-124.6555696493643,57.709130680003206],[-124.65524042556576,57.70917892501567],[-124.65498080062379,57.70927721844995],[-124.65490936124593,57.7094559216121],[-124.65490084171113,57.70963638488919],[-124.65489655935683,57.70981576978044],[-124.65488170369738,57.70999729023251],[-124.65484453499118,57.710097841425856],[-124.65452722457206,57.71028301993942],[-124.65426699168171,57.71039812742515],[-124.65401918994294,57.71051784640628],[-124.65382087815905,57.71066273913467],[-124.65366817836441,57.710823795012246],[-124.65348443512931,57.71097219960595],[-124.65321196116,57.71107708793275],[-124.65290896281637,57.71115475113589],[-124.6526100009591,57.71123694042398],[-124.65231103780218,57.71131912904421],[-124.65202434625627,57.71141041327476],[-124.65176619677099,57.711525537323276],[-124.65154510423065,57.71166122371826],[-124.65131989248717,57.71179462499582],[-124.65106791465412,57.711913174876635],[-124.6508016036146,57.712021485504906],[-124.6505209194479,57.71212067781468],[-124.6502260223346,57.71220626761738],[-124.64991699256021,57.71227601276735],[-124.64960194545246,57.712337845875595],[-124.64928483853474,57.712398535823226],[-124.64896785077974,57.71245586194493],[-124.6486488433668,57.712510923862624],[-124.64832971478698,57.71256934808604],[-124.64801474281681,57.71262893539183],[-124.64770974281014,57.71270320234172],[-124.6474331228569,57.71280579408164],[-124.64728339550132,57.71288276616255],[-124.64693118650491,57.71304402128166],[-124.64666275678043,57.71315230228225],[-124.64637591728558,57.71324693752643],[-124.64610344735165,57.71335069044446],[-124.64587824649942,57.71348296166807],[-124.64571516762832,57.71363941749346],[-124.64561243357865,57.71381106851853],[-124.64545770768717,57.71396873090054],[-124.64520157948924,57.71408498492247],[-124.6448985004063,57.714163751060966],[-124.64458342936258,57.71422557235237],[-124.64427029541503,57.71429189846637],[-124.64394755033267,57.71433345393302],[-124.64360946100742,57.714334479897836],[-124.64327367175329,57.71432992136812],[-124.64293957910448,57.71433659371794],[-124.64260879868992,57.714367970742245],[-124.64228572904894,57.71441849035559],[-124.64196867347856,57.714476920872755],[-124.64165759152849,57.71454438336178],[-124.64135660032957,57.714623162948754],[-124.64107591236868,57.714721214480186],[-124.6408156885924,57.71483405399577],[-124.64056979322334,57.71495713293644],[-124.64029115939502,57.71505632539128],[-124.6399820476724,57.715127168591344],[-124.6396891618976,57.71521387775948],[-124.63942477296361,57.71532555048621],[-124.63918302750423,57.71544979103249],[-124.63897841671248,57.715592355532706],[-124.63880908388994,57.715746496464455],[-124.63862933533454,57.71589828735158],[-124.63847449103129,57.71605818394675],[-124.63835298772143,57.71622515157692],[-124.63823769971029,57.716394425872394],[-124.63811619427409,57.71656139333963],[-124.6379946473746,57.71672948174722],[-124.63787104071477,57.716896427472925],[-124.63773701834637,57.717061023186325],[-124.6375801068186,57.71721977631576],[-124.63738585467178,57.71736580956315],[-124.63716879375308,57.717503757948414],[-124.63697042117178,57.71764750540811],[-124.6368030892273,57.717803907721006],[-124.63657577061397,57.717935021090014],[-124.6363031995582,57.718039875355124],[-124.63602449136553,57.718140180161335],[-124.63574170477587,57.718237078101104],[-124.63545282161695,57.7183283054847],[-124.63515990065484,57.7184150049122],[-124.6348995933124,57.71852895424049],[-124.63460666952689,57.7186156524622],[-124.63430155438515,57.71869101001045],[-124.63400858746203,57.71877882795029],[-124.63373196691487,57.718879149641715],[-124.6334552638453,57.718981712817516],[-124.63318061793123,57.71908541809892],[-124.6329080291647,57.71919026549884],[-124.63263543888615,57.71929511234885],[-124.63245090198917,57.71934591640373],[-124.63208819514634,57.71950366170906],[-124.63181358226672,57.719606243184174],[-124.63152871527713,57.719701989578446],[-124.6312276619095,57.71978074655532],[-124.63092862531553,57.7198617665893],[-124.6306315648426,57.71994617072079],[-124.63033458428477,57.72002833214134],[-124.63003340394121,57.72011044950929],[-124.62974453333084,57.72020054359146],[-124.62948423801737,57.72031336145544],[-124.62925683827838,57.720445583616645],[-124.62903561278735,57.72058123362179],[-124.62884546825792,57.720728419278224],[-124.62868850416886,57.72088716244286],[-124.62854191322894,57.7210493771288],[-124.62839951964621,57.721211635123666],[-124.62826544074014,57.72137622194461],[-124.62813136066656,57.72154080865606],[-124.62795779899507,57.72169377212694],[-124.62775525211595,57.721835220861905],[-124.62765657224324,57.7220080238141],[-124.62752260939716,57.722169246927564],[-124.6272827582825,57.722296851408245],[-124.62705949693976,57.72243023456223],[-124.6268568612999,57.72257392408101],[-124.62666044082503,57.722719920616946],[-124.62642894015566,57.72284873164994],[-124.62612377454562,57.72292407068282],[-124.62582087015592,57.72299494667086],[-124.62560991065692,57.723136305251145],[-124.62543834933894,57.72329152948258],[-124.62527098547183,57.723446797059964],[-124.62511189564526,57.723605514634244],[-124.62495906204069,57.72376541840242],[-124.62482285963958,57.723929980370215],[-124.6246742224311,57.72408992741911],[-124.62446951015295,57.72423247070866],[-124.62421942388718,57.72435211377302],[-124.62393857842098,57.72445125096032],[-124.6236476014457,57.72454018931187],[-124.62335452360661,57.72462910522972],[-124.62307573247278,57.72472938344754],[-124.62285869959113,57.72486394629083],[-124.62268102485211,57.7250134966355],[-124.62239395359813,57.7251103231154],[-124.62208674390466,57.725183389144],[-124.62176964858757,57.72523952989042],[-124.62146037799548,57.72531145161982],[-124.62117346494485,57.72540379136822],[-124.62090693231106,57.72551316435738],[-124.62063628086742,57.72562025107255],[-124.62034125171068,57.72570465445932],[-124.62002003218302,57.72575850529012],[-124.61971902942659,57.72583387350309],[-124.61961227260697,57.72599649442932],[-124.61967458653456,57.726130596489746],[-124.61967895437137,57.72635605459515],[-124.61969129974614,57.72653561610643],[-124.6196973464134,57.72671511206602],[-124.61968865486647,57.72689557606173],[-124.61965694921527,57.727073557555094],[-124.61958749072855,57.72725002452255],[-124.61946376836339,57.72741695477479],[-124.61930673709625,57.72757568785645],[-124.61914138777396,57.7277320912368],[-124.61896566161734,57.72788502198037],[-124.61876506564434,57.72802872176069],[-124.61854375811518,57.72816435525039],[-124.61833076580832,57.72830231798098],[-124.61814049975833,57.72845061041197],[-124.61797720049822,57.72860815539011],[-124.61784099124755,57.72877158992395],[-124.61772141464462,57.728939683608395],[-124.61761019493007,57.729108985819785],[-124.61751354943192,57.729281804330085],[-124.61746717423236,57.729458511410755],[-124.61757235107342,57.72962670569457],[-124.6177878244132,57.72976577041325],[-124.61796072967118,57.72992009150455],[-124.61814215849688,57.73007113683554],[-124.61835767745407,57.730209079654685],[-124.6185839019336,57.73034152636611],[-124.61877809807781,57.73048821802313],[-124.61897871811347,57.730631611930846],[-124.6191985249119,57.73076735513405],[-124.61942903727301,57.730897602143536],[-124.61966811441037,57.73102345207503],[-124.61992650124742,57.73113828795701],[-124.62021078384646,57.73123432798489],[-124.62043702095721,57.73136677166637],[-124.62060570368409,57.7315221668855],[-124.62076590642549,57.73167971660998],[-124.62094731399796,57.73183187939637],[-124.62116499404154,57.731968718692976],[-124.62140836534897,57.73209236721996],[-124.62166676478213,57.73220719982986],[-124.62192306586454,57.73232201012342],[-124.62216211944154,57.73244897676921],[-124.62236914427604,57.73259018921063],[-124.62256122585825,57.73273797486581],[-124.62274482741178,57.73288791508945],[-124.62293481201509,57.7330356784337],[-124.6231375613155,57.73317908821295],[-124.62336806112123,57.73331044971777],[-124.62364158305866,57.733414220848374],[-124.62393894122394,57.7334980524598],[-124.62422979664902,57.73358742323903],[-124.62450114134174,57.73369341291352],[-124.62476170192616,57.733807140416566],[-124.62500723764701,57.73392968329995],[-124.62523140768386,57.734062097371044],[-124.62542350794082,57.73420987909128],[-124.6255709788307,57.734371776960174],[-124.62572487344197,57.73453037686565],[-124.6258999329663,57.734684710082234],[-124.62608141639915,57.73483574524772],[-124.62627994639885,57.73498022799443],[-124.62644871003415,57.73513449528403],[-124.62652215605551,57.73531020437129],[-124.6265639790187,57.73548895029497],[-124.62659740193882,57.735667609230276],[-124.62660768311089,57.735847149966624],[-124.62661376412134,57.73602664723084],[-124.62669149441557,57.73620015779422],[-124.62684321954389,57.73636097701885],[-124.62702895584783,57.73651093358604],[-124.62724030291355,57.736649940382684],[-124.6274069370276,57.73680530600498],[-124.62748463184202,57.736979937278356],[-124.62755174496677,57.737156701941444],[-124.62762099964215,57.73733236729224],[-124.62767127161098,57.73751007911519],[-124.62772578521508,57.737686713372966],[-124.62774661417737,57.737865241997056],[-124.62787290330526,57.738032525769356],[-124.62806507478567,57.73817918318813],[-124.62829138100606,57.73831161436163],[-124.62846020842849,57.73846475854549],[-124.6284767593455,57.738645485837154],[-124.628472348254,57.738824874894526],[-124.62853736898016,57.73900161765396],[-124.62861717384104,57.73917627035783],[-124.6287777931809,57.7393820382955],[-124.62848440881152,57.73947657206736],[-124.62811319744436,57.739399837038775],[-124.62805021961435,57.73957189154599],[-124.62778576151861,57.739911203119625],[-124.62764955394947,57.74007464952188],[-124.62752372484542,57.740241567637455],[-124.6274125157864,57.74041087992768],[-124.62732634739997,57.74058493722688],[-124.62726114141587,57.740760332960896],[-124.62718753321509,57.74093564172356],[-124.6270930016853,57.74110849094238],[-124.6269901490886,57.74127901104481],[-124.62689351536537,57.7414518384337],[-124.62680738296268,57.74162477452372],[-124.62673377097238,57.74180008318218],[-124.62666015829899,57.7419753918297],[-124.62656772222496,57.74214826259983],[-124.62645440279046,57.742317552648956],[-124.6262952792402,57.742475153500806],[-124.62598675344988,57.742580740229606],[-124.62578066103973,57.74270084535247],[-124.62547125514976,57.742772777657365],[-124.62516798641057,57.74284925876618],[-124.62487279203238,57.742934794698286],[-124.6245756590659,57.743015823999606],[-124.62424267510646,57.74304265007844],[-124.62391344251635,57.74308185045165],[-124.62358824690442,57.74312557780464],[-124.62326305053976,57.74316930436215],[-124.62293970875855,57.74321977822816],[-124.62261455170733,57.7432623821507],[-124.6222912491477,57.74331173339157],[-124.62196790484931,57.74336220489572],[-124.62164468239835,57.74340931246743],[-124.62132137731456,57.74345866135142],[-124.62100408655277,57.74351592231221],[-124.6206907093949,57.74358107354909],[-124.62038330527335,57.74365525799022],[-124.62007594089528,57.74372832067547],[-124.61975860502122,57.743786699720864],[-124.61943541715388,57.743832680879926],[-124.61910815031499,57.74387525436725],[-124.61878294231306,57.74391896997294],[-124.61845962913026,57.743968311906286],[-124.61814228874293,57.74402668709843],[-124.61782688387636,57.744089567619184],[-124.61751357853598,57.744152469289354],[-124.6171961120302,57.74421420537379],[-124.61687679018144,57.7442691925065],[-124.61655557209696,57.74431855172138],[-124.61622821567332,57.744363360220106],[-124.61590106384959,57.74440256267199],[-124.61557201618132,57.744436137151716],[-124.61523909550334,57.74446069856887],[-124.61490242536135,57.74447288374986],[-124.6145682256293,57.74447500058836],[-124.61423204864218,57.74447373149415],[-124.61389587167767,57.74447246154789],[-124.61355977702543,57.74446894865461],[-124.6132236412809,57.7444665559572],[-124.61288738208464,57.744467525549894],[-124.61255120522063,57.74446625219582],[-124.61221754081612,57.74445378949845],[-124.61189355600843,57.74440666144566],[-124.61158950734547,57.74433170434131],[-124.6112633825756,57.74428567381218],[-124.6109393179552,57.744240785529556],[-124.61061311229841,57.74419699549864],[-124.61028690739782,57.74415320466733],[-124.60996066200218,57.744110534081685],[-124.60963441734351,57.744067862695445],[-124.60930825596279,57.74402294841727],[-124.60898423719904,57.74397693432406],[-124.60866244365182,57.743927578341136],[-124.6083408161415,57.74387373739898],[-124.60801918954789,57.74381989567984],[-124.607699581784,57.74376831732446],[-124.60737564981835,57.743720057223776],[-124.60704722823338,57.74367959952382],[-124.60671633468776,57.743649208346085],[-124.60638280349549,57.7436333678486],[-124.6060465929077,57.74363319905487],[-124.60571194496524,57.74364762506557],[-124.60537898344214,57.74367328276083],[-124.60502897944433,57.743648293803005],[-124.60473047332708,57.74376515211233],[-124.60441702463197,57.743831385960306],[-124.60411168708244,57.743905554811256],[-124.60395890195632,57.744002636938],[-124.60351916748756,57.74407426826764],[-124.60325657027468,57.74418589407641],[-124.60303099418888,57.744319217469204],[-124.60284264654753,57.74446863342235],[-124.60265017916721,57.744615762779425],[-124.60240207243685,57.744733147093754],[-124.60206712295708,57.74475541123477],[-124.6017310683885,57.74475074732557],[-124.60141567167668,57.744812467822534],[-124.6011163730411,57.744893422565966],[-124.6008090443882,57.744964198603384],[-124.60056895834188,57.7450917575673],[-124.6003372731758,57.745219404783455],[-124.59999352339595,57.7453088598518],[-124.59973471162094,57.74537453817984],[-124.59942931084262,57.745449817407966],[-124.5991218497799,57.74552395270769],[-124.59881447067775,57.745595845211575],[-124.59850498975648,57.74566771481184],[-124.59819554925983,57.74573846265085],[-124.59788614921561,57.7458080887289],[-124.59757271319323,57.74587318549096],[-124.59724742145791,57.745917969425264],[-124.59692801454577,57.74597402966851],[-124.59661054075609,57.74603459554815],[-124.59629718397423,57.7460974472227],[-124.59598370114506,57.74616366129255],[-124.59567429354227,57.746233282240446],[-124.59536690210844,57.74630516680552],[-124.59505946780892,57.746378171707015],[-124.59475199061615,57.746452296945094],[-124.59445266471084,57.74653323678239],[-124.59417371867971,57.74663121426211],[-124.59379971094002,57.74679883702753],[-124.59999871000687,57.74981840667995],[-124.6785101433718,57.7879927934391],[-124.67817021691965,57.78802754109613],[-124.67799484205884,57.7881693479122],[-124.67787927640681,57.78834539526815],[-124.67778906449105,57.788518330514286],[-124.67772186787167,57.78869485945192],[-124.67766514683213,57.788872614222825],[-124.67761894080525,57.78905047372478],[-124.67757904370072,57.789228396078414],[-124.67753700379762,57.78940741862188],[-124.67747611383315,57.789584010428975],[-124.67737335681373,57.789754577689074],[-124.67722670766909,57.789916857117205],[-124.67706338916344,57.79007448431389],[-124.67691260971748,57.790234479304985],[-124.67684961231173,57.790411050013994],[-124.67683284528327,57.79058920290814],[-124.6769362359523,57.79076070252896],[-124.6770079221101,57.79093637225775],[-124.67707119603932,57.79111195816508],[-124.67714708996036,57.791287669787025],[-124.67724417424098,57.791459106430224],[-124.67731165665258,57.79163473421553],[-124.67736854477556,57.79181249949215],[-124.67743178255296,57.791989206499814],[-124.67748660779073,57.792165829721135],[-124.67757944999315,57.79233834549484],[-124.67767864224362,57.79250980294495],[-124.67777358948226,57.792682339585774],[-124.67784738651082,57.792858030139406],[-124.677929754694,57.793029319960006],[-124.67806069687505,57.793195485732994],[-124.67819798953703,57.79336059309042],[-124.67835440999954,57.79352028312647],[-124.67853217960987,57.793671213336765],[-124.6787375301027,57.793815688656565],[-124.67895565949388,57.79395580473434],[-124.67917382975448,57.794094799351186],[-124.67938350953861,57.794235952206506],[-124.67956989645853,57.79438135918967],[-124.67966517093699,57.79454492581691],[-124.67964183043217,57.79473086492156],[-124.67968821701591,57.794908525187374],[-124.67975147084587,57.79508523163466],[-124.67980837566601,57.79526299647614],[-124.67986532025257,57.79543964020077],[-124.67991591571345,57.79561734233085],[-124.6799517480163,57.795796019242815],[-124.67994967849036,57.79597544096362],[-124.67996864401188,57.796155071794765],[-124.68004245805402,57.79633076173559],[-124.68008253791166,57.79650835942703],[-124.68008046896861,57.7966877812771],[-124.68007415368734,57.79686828247281],[-124.68008470602402,57.797047829822795],[-124.68010145148558,57.79723080329862],[-124.68015843963789,57.79740632611768],[-124.68032361326436,57.797557129085284],[-124.68055236656639,57.79769510531943],[-124.6806771041016,57.79785896433556],[-124.68074032830272,57.79803679195806],[-124.68081414961982,57.7982124817994],[-124.6808289523226,57.79839094999183],[-124.68082474397913,57.79857147242358],[-124.68082053559537,57.798751994887695],[-124.68076178878778,57.79892748960913],[-124.68061083279736,57.79909197472137],[-124.68048928779402,57.79925787341326],[-124.68048317011876,57.79943276944802],[-124.68054421391466,57.79961281880071],[-124.6806222056094,57.799789671951004],[-124.68078098845511,57.80000321614654],[-124.68082750450571,57.800177513559234],[-124.6808548912854,57.8003572285923],[-124.68088862878582,57.800535885201775],[-124.68092026284432,57.80071452094176],[-124.6810305076751,57.800932069016724],[-124.68121464706705,57.80102249748571],[-124.68146937547395,57.80114054291934],[-124.68174136679927,57.80124642247674],[-124.68202423118979,57.80134231568489],[-124.68232221527137,57.801427143081185],[-124.68264237422925,57.80147966565971],[-124.68297134075432,57.80152105959459],[-124.68328701984692,57.80158138682542],[-124.68358068364527,57.801669533104004],[-124.68386129558951,57.80176988611845],[-124.68413333727541,57.801874639712445],[-124.68440319843377,57.80198161418791],[-124.68467738608544,57.802085266394805],[-124.6849580431253,57.80218449600131],[-124.68524084457063,57.80228262471592],[-124.68552368655654,57.802379631704746],[-124.68580434801243,57.80247885955235],[-124.68608501094482,57.802578086816915],[-124.68636138951634,57.802679514153],[-124.68663336663053,57.80278650499042],[-124.6868967736261,57.80289789662752],[-124.68715803926297,57.803010388095274],[-124.68742144937109,57.80312177871698],[-124.68769343268033,57.803228767431314],[-124.68797414515839,57.803326869643904],[-124.68827437917636,57.80340834123168],[-124.68859896596764,57.80345528543387],[-124.68893037193084,57.803487716380786],[-124.68925947974398,57.80352573141973],[-124.68957058831123,57.80359721367522],[-124.68966994256243,57.80376642181843],[-124.68964508626786,57.80387608561584],[-124.68964906341053,57.80412510240879],[-124.6896849498968,57.80430377820924],[-124.68973770748111,57.80448149892098],[-124.68979892045265,57.80465818151516],[-124.68991725342612,57.804826455283504],[-124.69000172867753,57.80500000268358],[-124.69006083971172,57.80517666449961],[-124.69012415935008,57.805353367814675],[-124.6902128837366,57.805525835527675],[-124.69031427213248,57.80569730653748],[-124.690400855215,57.80587087457884],[-124.69044516318033,57.806049633456034],[-124.69046207967368,57.806229243850346],[-124.69047268407512,57.80640879205026],[-124.69047697629446,57.80658827805738],[-124.6904791644503,57.80676774335525],[-124.69048135262695,57.806947208685244],[-124.69048354082443,57.80712667404741],[-124.69048993731151,57.807306180924364],[-124.6905405987437,57.807483881109384],[-124.69061238004319,57.8076595464203],[-124.69068626617529,57.80783523246141],[-124.69073907233708,57.80801183226179],[-124.69075809529392,57.80819146370833],[-124.69075186810456,57.808370846340914],[-124.69072459881671,57.80855002163139],[-124.69067422183984,57.80872784768642],[-124.69060077577775,57.80890320333676],[-124.69051267725565,57.80907617150691],[-124.69041409564288,57.80924791479412],[-124.69030923931008,57.809418474662706],[-124.6902001735058,57.80958899298596],[-124.69009114565654,57.8097583901058],[-124.68996119086003,57.809924216240404],[-124.68982079137328,57.810087696229786],[-124.68969921249371,57.81025472631375],[-124.6895922458212,57.810425265034496],[-124.68949993048375,57.81059819128562],[-124.68942647531982,57.81077354661519],[-124.68935512380989,57.810948922694216],[-124.6892900457102,57.81112548219124],[-124.6892459715997,57.811303370444115],[-124.68924394543804,57.81148279508702],[-124.68931362393248,57.81165844104172],[-124.6894341200531,57.81182561603397],[-124.68957153032267,57.81199071470281],[-124.68968988528785,57.812158989908305],[-124.68976171047653,57.81233353535541],[-124.68981658407952,57.81251127821674],[-124.68986724933097,57.81268897958464],[-124.68991581061556,57.81286666021445],[-124.6900024083235,57.81304022976115],[-124.6901059593717,57.81321060182216],[-124.6901439611415,57.81338929987064],[-124.69018398987028,57.81357026098112],[-124.69041759151938,57.813693689009035],[-124.6905976089964,57.81384462685111],[-124.69069687806935,57.81401719940519],[-124.6908896810012,57.81416377673644],[-124.69114885424268,57.81427848318497],[-124.69128211080071,57.814442417880294],[-124.69141532961042,57.814607473617635],[-124.69166811605461,57.8147243592218],[-124.6919597194482,57.81481470971121],[-124.69220385742324,57.814938238343366],[-124.69239452747334,57.81508591406191],[-124.69256812915472,57.815240150760516],[-124.69269500377891,57.815406264371404],[-124.69284732901001,57.815567020589135],[-124.6930444351525,57.81571139412924],[-124.69324360856336,57.81585690924647],[-124.69344921391844,57.815999122717564],[-124.69362921569181,57.81615117795273],[-124.6936845475489,57.816377150097516],[-124.6936275034033,57.81650444408239],[-124.69353519168838,57.81667737419097],[-124.69344708846391,57.81685034565464],[-124.69337991466028,57.81702688750479],[-124.69333795763379,57.81720479886326],[-124.69332121773684,57.81738407975469],[-124.69331921063866,57.81756350555385],[-124.69331720352142,57.81774293138524],[-124.6933004632869,57.81792221237097],[-124.69325846603377,57.81810124501763],[-124.69318922322852,57.81827664514192],[-124.69309273451103,57.81844841269981],[-124.69297527497285,57.81861773088992],[-124.69277034667651,57.81875927171546],[-124.69254464116048,57.81889275707971],[-124.69227149603954,57.81899773683212],[-124.6919536386558,57.81905629292673],[-124.69163979534876,57.81912049548084],[-124.69133401993804,57.81919487059566],[-124.69101405463549,57.81925340372656],[-124.69070219609428,57.81932098827424],[-124.69043726728036,57.81943165302423],[-124.69020122012951,57.8195594250163],[-124.69001288118636,57.81970785461628],[-124.6897644356374,57.81982877444757],[-124.68954908140807,57.819966843249695],[-124.68934409394514,57.82010950013808],[-124.68917862944694,57.820266005074004],[-124.68902150506923,57.820424835197144],[-124.68879990807717,57.82056059826398],[-124.68849610326455,57.82063835118964],[-124.6882086291404,57.820730844660446],[-124.68790688760579,57.82080973818508],[-124.68759298378762,57.820875052450425],[-124.68726719121865,57.82091893928527],[-124.6869316933995,57.82093917708807],[-124.68660176782895,57.82098077838946],[-124.68639060524559,57.82111888383962],[-124.68622305821583,57.8212742432932],[-124.68606591718708,57.82143307008311],[-124.68590253820322,57.821589591960084],[-124.68572247469616,57.82174146250483],[-124.68552783147643,57.82188870246769],[-124.68532698916248,57.82203251623139],[-124.6851219744957,57.82217516690381],[-124.6849148924167,57.82231667529513],[-124.68470363794427,57.82245702056202],[-124.68449242102012,57.82259624435716],[-124.68428116340883,57.822736588991944],[-124.68406990422481,57.82287693331081],[-124.68385868260832,57.823016156157685],[-124.68364745943198,57.82315537868838],[-124.68343412967305,57.82329458004964],[-124.68322079833885,57.82343378108795],[-124.68300746542951,57.823572981803395],[-124.68279623599064,57.823712203059394],[-124.68258289993847,57.82385140313249],[-124.6823716673721,57.82399062375277],[-124.68216039405391,57.82413096521374],[-124.6819491191629,57.824271306358646],[-124.68173994778324,57.82441166806774],[-124.68153077484617,57.82455202946756],[-124.68132366623402,57.824693532601955],[-124.68111651684359,57.824836156591154],[-124.68091147100137,57.8249788011713],[-124.68071683151639,57.825124913410455],[-124.68053883536857,57.82527679836902],[-124.68036079853985,57.82542980427014],[-124.68019316825412,57.82558627795385],[-124.68007149674303,57.825753301826936],[-124.67995816630524,57.82592265156704],[-124.6798031239505,57.826080371444995],[-124.67961463295721,57.82623102959877],[-124.67942621900852,57.82637944519103],[-124.67926064654242,57.82653705992403],[-124.67909507269195,57.826694674475824],[-124.67886938913111,57.826824774201924],[-124.67858149050882,57.826927337855075],[-124.67832481496703,57.827040305344234],[-124.6781866030854,57.82719819098811],[-124.67810658995083,57.82737796480975],[-124.67799741699804,57.82754847619037],[-124.67788192725752,57.82771892468669],[-124.67773934317333,57.82788125272965],[-124.67753438599158,57.8280205290582],[-124.67727126597639,57.82813679527659],[-124.67698955082312,57.82824278195042],[-124.67667210343454,57.82828672696052],[-124.67633724301253,57.828286757292176],[-124.67599646049274,57.82827551227033],[-124.67565754713493,57.82827101430878],[-124.67532073915386,57.82826653646516],[-124.67498381302407,57.828265421246044],[-124.67464871627271,57.828272174280166],[-124.67431497553694,57.82830024949122],[-124.67398906390991,57.82834522526408],[-124.67367515213826,57.8284082648337],[-124.673363147333,57.828476930474395],[-124.67304716757566,57.8285388263974],[-124.67272912094462,57.82859957939116],[-124.67241516546186,57.82866373716064],[-124.67210724840072,57.82873580540445],[-124.67180338279165,57.828812399651596],[-124.67149745013326,57.82888785100857],[-124.67119151625029,57.828963301667216],[-124.67089165995972,57.82904554173784],[-124.67059998648111,57.829134592320095],[-124.6702918643536,57.829212262188456],[-124.67008083325727,57.82934361591228],[-124.66991937986353,57.82950238276854],[-124.66972050324934,57.8296473162757],[-124.66959877223253,57.82981433124457],[-124.66946238156966,57.82997895628842],[-124.6693009624308,57.8301366013358],[-124.66911038295379,57.830284981811715],[-124.66883299800541,57.83038650894944],[-124.66853316485292,57.83046762265834],[-124.66827429006396,57.83058167121329],[-124.66800301886234,57.830688865730615],[-124.66771144473091,57.83077454664242],[-124.66738776782194,57.830815042805156],[-124.66715149198765,57.83094501763687],[-124.66688843849924,57.83105790016528],[-124.66659673999405,57.831146942144564],[-124.66629280408257,57.83122464514171],[-124.66598282830076,57.83129443593996],[-124.66569108613692,57.831384597113576],[-124.66543839377448,57.8315020671358],[-124.66519177804362,57.831626327080265],[-124.66492672758557,57.8317358211811],[-124.66463907129425,57.83182938586052],[-124.66445716498339,57.83196999640037],[-124.66464332340907,57.832125520274126],[-124.66486178095163,57.8322611802356],[-124.66500130331623,57.832425207684864],[-124.66510690014229,57.83259562368611],[-124.6651786107293,57.83277130716203],[-124.66522072514717,57.832950058130834],[-124.66523967878454,57.833128576561926],[-124.66523753717905,57.8333080047688],[-124.665218511193,57.83348838503518],[-124.66522256712531,57.833671240220696],[-124.66509051343563,57.833831419053155],[-124.665025282175,57.83400797072071],[-124.66499366080772,57.83418710304824],[-124.66496625040148,57.834366277692766],[-124.66493883973462,57.83454545236417],[-124.6649072572217,57.8347234636048],[-124.66487142337193,57.834902553738715],[-124.66483348351099,57.835081622747246],[-124.6647955830095,57.83525957061321],[-124.66475974811945,57.835438660814106],[-124.66472816401233,57.83561667217291],[-124.66470285701489,57.83579586817216],[-124.66467754977681,57.835975064199005],[-124.66464592510667,57.83615419680004],[-124.6646164058764,57.83633335057779],[-124.66458271459217,57.83651134091159],[-124.66453428266757,57.836689183199034],[-124.66447325539588,57.83686577741204],[-124.66439963260616,57.83704112353251],[-124.66431762570907,57.83721526385165],[-124.66422091719875,57.83738813487981],[-124.66411169217676,57.83755751541073],[-124.66399408264755,57.8377256900683],[-124.66387019433732,57.8378926799932],[-124.66374209325645,57.83805962749994],[-124.66360985886605,57.83822429024186],[-124.66347341161085,57.83838891054019],[-124.66333489706678,57.838552388386425],[-124.66319220934683,57.83871470259945],[-124.66304324252864,57.83887583198843],[-124.66289010243621,57.83903579771104],[-124.6627348949299,57.83919462093357],[-124.66257547429933,57.83935340163251],[-124.66241605232554,57.83951218216584],[-124.66225666880857,57.83966984136515],[-124.66209935008746,57.839828642758725],[-124.66194203004059,57.839987443991745],[-124.66178053657893,57.840145081502214],[-124.66162321386784,57.8403038824089],[-124.66146795597597,57.840463825525866],[-124.66132314700019,57.840626116845755],[-124.6613047010118,57.84073023716357],[-124.66149231399558,57.84096429110784],[-124.6616659083957,57.841118572188414],[-124.6618161389787,57.841278225762125],[-124.66194296570058,57.84144437308133],[-124.66204642812579,57.84161589304542],[-124.66210335949438,57.841792552606655],[-124.66218143154641,57.841967181738084],[-124.66231672625126,57.84213229240666],[-124.66252033174925,57.84227229395716],[-124.66285925009355,57.84228018899122],[-124.66316637656865,57.842352814679494],[-124.66343638852193,57.842462078445536],[-124.66368061208819,57.84258566291736],[-124.66394212331217,57.84269708336032],[-124.6642164714205,57.84280302438796],[-124.66444786440984,57.842932086407664],[-124.66466201273121,57.84307219056445],[-124.6648912233238,57.84320347304322],[-124.66512472721463,57.84333255508494],[-124.66536033884432,57.843461657873654],[-124.66559603149815,57.84358851791397],[-124.66584022974902,57.84371321973468],[-124.66609090685974,57.84383349981084],[-124.66635020865401,57.84394825805412],[-124.66662465199026,57.8440519518987],[-124.66691209090723,57.8441456813067],[-124.66720390225247,57.84423496762368],[-124.6675000859539,57.844319810819464],[-124.66779837718224,57.84440467446447],[-124.668096749017,57.8444872950962],[-124.66840163888101,57.844564372462095],[-124.66871535095244,57.84463032172269],[-124.66903804341439,57.84468065810842],[-124.66936741172077,57.8447209663569],[-124.6696969786524,57.8447556679089],[-124.67003135223644,57.844773593128906],[-124.67036814886846,57.844782569155775],[-124.67070518298598,57.84478481726915],[-124.67104217759956,57.84478818570502],[-124.67137873739793,57.84480388623417],[-124.6717083859555,57.84483634045041],[-124.67203775847865,57.84487664209157],[-124.672364946472,57.84491916424435],[-124.67269439941154,57.84495722190761],[-124.67302615667235,57.844989693886355],[-124.67335799345592,57.84501992268287],[-124.6736921737979,57.84504344459257],[-124.67402773550327,57.845027724430444],[-124.67434821389062,57.845081390482974],[-124.67462916395924,57.845180646206785],[-124.67489497748454,57.84529096621065],[-124.67515646179291,57.845404607262196],[-124.67542442411583,57.84551382603883],[-124.6757097503982,57.84560863676812],[-124.6760324605792,57.84565895623188],[-124.67632212020132,57.84575044406507],[-124.6765363680666,57.84588940831902],[-124.67672713332259,57.846037111128915],[-124.67691786070327,57.84618593486764],[-124.67712360928871,57.84632705676936],[-124.67741319798301,57.84642078464931],[-124.67771160685997,57.84650338387734],[-124.67802535136525,57.84656931130532],[-124.67834136060779,57.846630774207284],[-124.67864410379886,57.846710049685896],[-124.67894029339799,57.84679598879586],[-124.67921916200679,57.84689521407059],[-124.67947637920628,57.84701104733576],[-124.67972068485608,57.84713460291665],[-124.67995851590365,57.847262580067174],[-124.6801942421996,57.84739053590392],[-124.68043422211278,57.847517411959444],[-124.68068071908834,57.8476387443759],[-124.68094652841779,57.84775017374238],[-124.68126930317491,57.84779935942466],[-124.68156550732367,57.84788529278326],[-124.68182269926763,57.84800224281075],[-124.68206916466622,57.84812469389753],[-124.6823091947807,57.84825044548036],[-124.6825449352391,57.84837839727909],[-124.6827806772985,57.8485063486766],[-124.68300994487613,57.84863872183048],[-124.68323070990958,57.848773253548984],[-124.68345354379403,57.848908926958245],[-124.68368285535755,57.84904017782097],[-124.68392933359041,57.849162625589784],[-124.68419087201254,57.84927624932417],[-124.68445245116193,57.849388751371144],[-124.6847052927829,57.849510139072244],[-124.68472168539482,57.849764898402334],[-124.68449322092977,57.84997125141822],[-124.68431925736321,57.85012542930779],[-124.68410585570624,57.85026239317241],[-124.68386748739708,57.85039013705508],[-124.68365817816304,57.85053050549413],[-124.68349048907668,57.85068586612569],[-124.68342535404048,57.850861308646046],[-124.68335807264079,57.851037851498255],[-124.68328447086289,57.85121433177945],[-124.68323825409674,57.8513910831959],[-124.68325511740275,57.85157182391105],[-124.68321100667276,57.851748596239176],[-124.68311438674283,57.8519203623652],[-124.68300723277453,57.85209202414787],[-124.68292110504161,57.85226501568563],[-124.68296344301928,57.85244040099545],[-124.68309672054889,57.85260659260002],[-124.6832087757959,57.85277706028389],[-124.68337404764503,57.852932352629004],[-124.68358621649472,57.85307240687522],[-124.68371957735866,57.85323635558218],[-124.68385711362167,57.85340146706794],[-124.68401170064305,57.85356113924542],[-124.68418969790358,57.85371431338763],[-124.68433796742255,57.85387392271053],[-124.68444156593435,57.85404542740836],[-124.68454305863821,57.854216911219034],[-124.68469343839236,57.85437654106389],[-124.68485443155338,57.8545340325385],[-124.6849411017201,57.85470761269405],[-124.68501080096,57.85488438977012],[-124.68507418045802,57.85506110435759],[-124.68511856013747,57.85523875269499],[-124.6851311814132,57.85542057341908],[-124.68518832016085,57.85559498318039],[-124.68535778707708,57.855751436352655],[-124.68555499651742,57.85589806925774],[-124.68573094335876,57.85605009968791],[-124.68584520586307,57.85621834417802],[-124.6859424579505,57.85639090686344],[-124.68603549716245,57.85656342788256],[-124.68611792454612,57.856738087199666],[-124.6861939928797,57.85691380526109],[-124.6862551962209,57.85709274123199],[-124.68635678359325,57.85726198180042],[-124.6865114361483,57.85742053050529],[-124.68668520883631,57.857574781496126],[-124.68687388793548,57.857724693096856],[-124.6870732205641,57.85787134484596],[-124.68728121705392,57.858011352310434],[-124.68750201319979,57.85814699942028],[-124.68773350208333,57.858278265323946],[-124.68797143070638,57.85840622959687],[-124.68821365303013,57.858531992622446],[-124.6884559160116,57.85865663402539],[-124.68870239461367,57.85878131654434],[-124.68896182914722,57.858897153636036],[-124.68924089177008,57.858994116721874],[-124.68955690651482,57.85905891734687],[-124.68988189643918,57.85910810345042],[-124.69014952950137,57.859170182973166],[-124.69056812494752,57.859133927206365],[-124.69081941229707,57.859241829358474],[-124.69100545780297,57.85928628040511],[-124.6912825061672,57.85950210712922],[-124.69150956873266,57.85964005238277],[-124.69173234094076,57.85978019822317],[-124.69195511480648,57.85992034371056],[-124.69218007527401,57.86005826715952],[-124.69240726125201,57.86019284735712],[-124.69263885763627,57.860321862597104],[-124.69287915639886,57.86044311186083],[-124.69312612817144,57.86055433199491],[-124.69343447322302,57.86059773788171],[-124.6937934990076,57.86057771044206],[-124.69413968737797,57.86056316393565],[-124.69447346599605,57.86054176524268],[-124.69480919593128,57.86052487119426],[-124.69514676077199,57.86051584538124],[-124.6954824125079,57.860501192038264],[-124.69580830491186,57.86046401051635],[-124.69614965623461,57.860467356698294],[-124.69648694861601,57.8604661759006],[-124.69680273093066,57.860416555482175],[-124.69711105361935,57.8603388217084],[-124.6974332328876,57.8602870193077],[-124.69775498485184,57.86024754935596],[-124.69809297280847,57.86022618284373],[-124.69842556898709,57.86017784476262],[-124.69870551766995,57.86025012166325],[-124.69896276978669,57.860369282420876],[-124.69921756792311,57.86049851291933],[-124.69949003774565,57.86060436247687],[-124.69981111066294,57.86064563477848],[-124.70015414546899,57.86066132451947],[-124.70048368677453,57.860701556353746],[-124.70081108298416,57.860742887998356],[-124.70114530393887,57.86076970490816],[-124.70147063299278,57.8608098931549],[-124.70177786901114,57.860885794637355],[-124.70208522217898,57.86095833180263],[-124.70241878928965,57.86100420599602],[-124.70271760022345,57.86108002310923],[-124.70297896917089,57.86120258091396],[-124.70313171652396,57.86135772677052],[-124.70319733770053,57.86153333322158],[-124.70323533452125,57.86171539988155],[-124.70328390626678,57.86189644805809],[-124.70338136870205,57.86206563537124],[-124.7035553862782,57.8622153802275],[-124.70378040292591,57.862353284382664],[-124.70400327541505,57.86249228885519],[-124.7042091373861,57.86263561360206],[-124.70442561426724,57.86277679824592],[-124.70464420002004,57.86291800307626],[-124.7048543198274,57.8630602467161],[-124.70504739034567,57.863207931990466],[-124.70521080636084,57.86335981471271],[-124.70532326348192,57.863522417170756],[-124.70534663716136,57.86370097641884],[-124.70534234632093,57.86388711756592],[-124.70537196517262,57.86406798081566],[-124.70546304355712,57.86423934787759],[-124.70557948783816,57.864408718532445],[-124.70571080016134,57.86457486899622],[-124.70585062010687,57.86473885893594],[-124.70600534689233,57.86489850739378],[-124.70619413957144,57.86504839270872],[-124.70637017394724,57.86520151846551],[-124.70653770319137,57.86535680448197],[-124.70670308791752,57.865513191037444],[-124.7068748347285,57.8656685176503],[-124.7070487673575,57.865821622123434],[-124.7072247703326,57.8659758680823],[-124.70739655988919,57.86613007288338],[-124.70757041981199,57.86628541917125],[-124.70767423520552,57.86645466551494],[-124.70773774050973,57.86663137138398],[-124.70779703147342,57.866808036318005],[-124.70788172814336,57.866981583225545],[-124.70798761587457,57.86715197112562],[-124.70810197301707,57.86732131961241],[-124.70821418521997,57.8674917687821],[-124.70831160736589,57.8676631958799],[-124.70834335097314,57.86784407962746],[-124.7084366364566,57.868013223347184],[-124.70864649142149,57.868164431456485],[-124.70885224829478,57.868312234710245],[-124.70892894581125,57.868473366045755],[-124.70888926626886,57.86864682718491],[-124.70878616669167,57.86882528085201],[-124.7086558212462,57.868998983699186],[-124.7085132135344,57.869161351549955],[-124.70834972079594,57.86931790860011],[-124.70817158876864,57.86947095858958],[-124.70798717088604,57.869622825752295],[-124.70780692830876,57.86977585483594],[-124.70761204621259,57.86992537675151],[-124.70741298575514,57.87007373623898],[-124.70724956146758,57.87022804965054],[-124.70718676497195,57.87039904290969],[-124.70723314375425,57.87058343442657],[-124.70730504621594,57.870761344376426],[-124.70739377246126,57.87094053933745],[-124.70760711492508,57.87117478107386],[-124.7079934941494,57.87134340724438],[-124.70829603685526,57.87143607183473],[-124.70855994966595,57.871548549469146],[-124.70878944813481,57.871680881290025],[-124.70901247120163,57.871817636261284],[-124.70925707311176,57.87194001948424],[-124.70952976921691,57.87204248606127],[-124.70982185931871,57.872132802604575],[-124.71012042777689,57.87221869493151],[-124.71041688981984,57.87230456616922],[-124.7107111686486,57.87239265877192],[-124.71100763340817,57.87247852870886],[-124.71129976881126,57.87256772082838],[-124.71158535200787,57.87266357841338],[-124.71186442145763,57.872764980287144],[-124.71214567691958,57.87286415954385],[-124.712431302859,57.87295889412145],[-124.71272996048393,57.87304253822399],[-124.71303080390771,57.87312395960588],[-124.71332946417344,57.873207602377185],[-124.71362816407202,57.87329012326344],[-124.71392682698247,57.8733737647084],[-124.71422549121966,57.87345740549045],[-124.71452197237554,57.87354326769234],[-124.71481630875861,57.87363023010665],[-124.71510842385501,57.87372053519376],[-124.71539839423433,57.87381194052304],[-124.71568836602138,57.87390334522906],[-124.71598266967598,57.87399142631942],[-124.71628138160634,57.8740739413171],[-124.71658879391445,57.87414868840206],[-124.71689628386247,57.87422119233477],[-124.71720369859332,57.87429593801069],[-124.71750245380676,57.87437732906924],[-124.71779021260254,57.874472072607226],[-124.71807145824697,57.87457236073856],[-124.7183527817231,57.87467040583605],[-124.71864709760516,57.87475848110376],[-124.71895022805256,57.87483542464355],[-124.71926205843062,57.87490460006902],[-124.71957611227803,57.874970431373995],[-124.7198901291022,57.87503738316815],[-124.72019981682776,57.87510765735955],[-124.72050509930604,57.87518349643161],[-124.72080375441394,57.87526824383223],[-124.72109593466193,57.87535741470231],[-124.72138585602563,57.8754510495926],[-124.7216821027254,57.8755447446065],[-124.7219762048694,57.875639539953056],[-124.72225314027528,57.87574314256131],[-124.72249386106334,57.87585761287493],[-124.72258512197185,57.87602672782757],[-124.72263111085077,57.8761628820057],[-124.72280731810292,57.87637655430729],[-124.7230592312018,57.876472063945975],[-124.72340173553275,57.87650787610893],[-124.7236983376497,57.87659147567936],[-124.72398612895593,57.87668620603604],[-124.72427825175838,57.87677761250772],[-124.72457033799523,57.87687013957609],[-124.72486250161819,57.87696042355338],[-124.72516784647544,57.877035130844796],[-124.72548878397406,57.87708531170647],[-124.72582083181177,57.87711877426477],[-124.72615502623377,57.87715113494367],[-124.72648033386619,57.87719686885579],[-124.72680545270035,57.87724820812657],[-124.72712838853894,57.87730176890431],[-124.72744688176569,57.87736201597047],[-124.72775882445544,57.87742892920576],[-124.72805984906104,57.87750695328608],[-124.72835643151805,57.877591663792806],[-124.7286485340912,57.87768418198872],[-124.7289341623998,57.877781124077046],[-124.7292133164945,57.877882490100816],[-124.72948603426002,57.877987158870276],[-124.72973932656285,57.87810510078911],[-124.7299839610319,57.8782296891657],[-124.73023288900661,57.87835207487013],[-124.73049473206389,57.878466732150635],[-124.73075872265686,57.878580287801505],[-124.73101623922904,57.87869826757225],[-124.73124811949624,57.878826096795244],[-124.73145214187474,57.878967119215446],[-124.73164758200181,57.879112545915305],[-124.73183443984665,57.87926237693469],[-124.7320127153723,57.87941661231179],[-124.73218459225163,57.87957302969654],[-124.73234589178027,57.87973046772045],[-124.73250079251537,57.879890087812264],[-124.73264929440244,57.88005188999541],[-124.73279135964243,57.88021699552785],[-124.73292280944318,57.88038424305483],[-124.73304368142094,57.880552511372976],[-124.73315182945076,57.88072290168067],[-124.73324518283735,57.88089427270806],[-124.7332815380553,57.881067344428686],[-124.73321428556079,57.88124840286403],[-124.73322300669481,57.881427941222825],[-124.73327611561818,57.881604537278626],[-124.7333439455532,57.88178239503225],[-124.73341599278953,57.881960292909824],[-124.73348597009021,57.8821370494813],[-124.73354751464764,57.88231372580493],[-124.73359430126278,57.88249026171217],[-124.73361371722861,57.882665415621375],[-124.73352775211977,57.8828384453023],[-124.73338497289862,57.88300756954043],[-124.73324870624828,57.883171147657144],[-124.73310611319268,57.8833346654584],[-124.73295726913166,57.88349588044531],[-124.7328021740122,57.88365479259576],[-124.7326407900331,57.88381252312632],[-124.73246686731562,57.883966769300244],[-124.73228462265475,57.88411757122871],[-124.73210026807502,57.884268352847215],[-124.73191173285713,57.88441797282025],[-124.73172323391918,57.88456647130921],[-124.73154094559204,57.8847183935531],[-124.73137958955803,57.88487500148714],[-124.73124119893265,57.88503855776849],[-124.73110905704125,57.885204416713734],[-124.73096855550969,57.88536795266755],[-124.73082180278375,57.885529185706496],[-124.73061819390995,57.885687633241965],[-124.73040626259454,57.88584263632559],[-124.73033546085487,57.885940662000046],[-124.73058450756385,57.88612361517365],[-124.73087121709737,57.88625309006713],[-124.73112020101345,57.886375475123906],[-124.73137140850486,57.88649451609899],[-124.73159034639865,57.886632316361585],[-124.73181576280386,57.88676569157821],[-124.73207559837229,57.88687920541152],[-124.73234835151378,57.88698499052944],[-124.73262543668532,57.887087451521424],[-124.73290900021748,57.88718548718685],[-124.73320126390077,57.88727575381836],[-124.73348916080442,57.88737046466847],[-124.73375548239689,57.887479550503336],[-124.73400241286978,57.887600789022564],[-124.7342428304396,57.88772757317177],[-124.73448324962894,57.887854356903375],[-124.73473443993251,57.887974512959204],[-124.7350050998086,57.88808027271146],[-124.73528220027399,57.88818272828969],[-124.73556141093344,57.888285203331115],[-124.73583640573013,57.88838763774847],[-124.7361091803704,57.888493415325996],[-124.73637547985653,57.888603617292354],[-124.73663526658909,57.88871936493415],[-124.73689509254818,57.8888339908363],[-124.73715925040017,57.88894529251232],[-124.73744061816824,57.88904666245031],[-124.7377242090002,57.88914468805779],[-124.73798407880805,57.889258190637754],[-124.73819462198735,57.88939590046872],[-124.73838151935661,57.88954684513289],[-124.73857481968322,57.889695607006495],[-124.73878743867107,57.88983445719185],[-124.73901075340545,57.88996892193657],[-124.73924905662129,57.89009679862927],[-124.73950242345126,57.89021584468907],[-124.73975364553608,57.89033599156778],[-124.7399769666977,57.89047045476156],[-124.74017890101238,57.89061368803734],[-124.74037228897588,57.89076020496585],[-124.74056131068791,57.89091116673588],[-124.74073971466343,57.89106427102612],[-124.74090960965619,57.89121953782505],[-124.74107099559014,57.891376967166025],[-124.74122165100763,57.89153990289449],[-124.74134614761859,57.89179119801359],[-124.74145288495826,57.89187969232486],[-124.74148932602391,57.892051642513216],[-124.74140740601334,57.8922303250879],[-124.74135922794063,57.89240932664726],[-124.74134475478603,57.892589768480285],[-124.74134082619244,57.89277031003408],[-124.741353806662,57.892949889869605],[-124.74139431623425,57.89312636516044],[-124.74153646918738,57.89329146358587],[-124.74161934703149,57.8934627312892],[-124.74163654704677,57.893642351092346],[-124.74164105573942,57.893822972583415],[-124.74165403800458,57.89400255258534],[-124.74166912941286,57.89418215255184],[-124.74168422096517,57.89436175255015],[-124.74169931266152,57.89454135257995],[-124.74171862260086,57.894720992505206],[-124.74173797021513,57.89489951120593],[-124.74176360773146,57.895079210985195],[-124.74179982838004,57.89525788919021],[-124.7418445232191,57.8954355258821],[-124.74189554577877,57.895613222378536],[-124.74194656882025,57.89579091888823],[-124.7420039197022,57.89596867519281],[-124.74207189173742,57.89614428862355],[-124.74215892161982,57.896317838862494],[-124.74226930284918,57.89648712320339],[-124.74239452412522,57.89665430441623],[-124.7425197465138,57.896821485540286],[-124.74263224002061,57.89699078958764],[-124.74273833205334,57.897162276338754],[-124.74283384161006,57.89733478472383],[-124.74291029426958,57.89750935637307],[-124.74292964897033,57.89768787541633],[-124.74293416435407,57.897868497620365],[-124.74299792568904,57.898044071099115],[-124.74308496423554,57.89821762107448],[-124.74315716388972,57.89839327418088],[-124.74321878043817,57.89856994899995],[-124.74326137663296,57.89874756591781],[-124.7432870240455,57.89892726612023],[-124.74331056240683,57.899106946444704],[-124.74334890358348,57.89928564488083],[-124.74340845062258,57.899461178608824],[-124.7434848728245,57.89963687157406],[-124.74356766118845,57.89981150297401],[-124.74365421974895,57.8999996292936],[-124.74365602958694,57.900008619286204],[-124.7437239043195,57.900187596394204],[-124.74374748299144,57.900366155614485],[-124.74377524320556,57.90054587592431],[-124.74381784426362,57.90072349302829],[-124.74387099270878,57.90090120964046],[-124.74393898236737,57.90107682301626],[-124.7440238854235,57.90125147429029],[-124.74410246098813,57.90142606585962],[-124.744164086941,57.90160274079717],[-124.744227822919,57.9017794356308],[-124.74431276632204,57.90195296558412],[-124.74442739270293,57.90212228890689],[-124.74453565427498,57.90229267376349],[-124.74460368696252,57.902467165789204],[-124.74460399196491,57.90264774905972],[-124.74461066289943,57.9028272707577],[-124.74463421002113,57.9030069515754],[-124.74466412335603,57.903185570812965],[-124.74469399956395,57.903365311342625],[-124.74471965696597,57.90354501213043],[-124.74478554580706,57.903720605671886],[-124.74487404198486,57.903914358176884],[-124.74498593144014,57.904102723013075],[-124.74515461600059,57.904233298744785],[-124.74541764105315,57.904255965973725],[-124.74576363424137,57.904195292666216],[-124.74612250800543,57.90412801003569],[-124.74645893980497,57.90410089348744],[-124.746796995159,57.904088372413376],[-124.74712997233584,57.90410159993384],[-124.74746020557005,57.90413386832521],[-124.74779010349519,57.90417622730585],[-124.74811778064853,57.904221929443494],[-124.74844768008604,57.90426428679922],[-124.74877746839563,57.90431000714338],[-124.74910733206755,57.90435348413701],[-124.7494356086955,57.90438124275178],[-124.74975394829596,57.904327029150416],[-124.75002551731635,57.90421965978813],[-124.75029501245129,57.904111148819965],[-124.75059725385907,57.904033228220605],[-124.75090978129045,57.90396325475034],[-124.7512223075594,57.90389328055179],[-124.75151225999274,57.90380402652508],[-124.75176727856258,57.90368640404311],[-124.75202440508892,57.90356880085601],[-124.75228563754227,57.90345460051953],[-124.75255508350305,57.90334720633244],[-124.75283485258042,57.90324663799832],[-124.75312076294726,57.90315173467984],[-124.75341081661581,57.9030591127858],[-124.75369265363909,57.90295968369424],[-124.75397237966075,57.90286023427879],[-124.75428677783391,57.902797000312844],[-124.7546113513292,57.90274507692452],[-124.75493596103381,57.90269203148035],[-124.75524628556573,57.902624270744916],[-124.75553832816982,57.90253502778872],[-124.75582222805669,57.90243673522538],[-124.75611837559978,57.902350894234466],[-124.75643280297086,57.90228653396851],[-124.7567452679914,57.90221766820004],[-124.75706172856867,57.902155568687235],[-124.75739006726813,57.90211713315108],[-124.75772639892187,57.90209223073395],[-124.75805677183584,57.90205605577045],[-124.75838721811776,57.90201763745305],[-124.7587176267332,57.9019803395851],[-124.75904977433927,57.901954273236356],[-124.75938939807344,57.90195743763823],[-124.75970615303044,57.90201422558128],[-124.76000943914448,57.90209556282708],[-124.76030621341543,57.90218244682006],[-124.76060302599265,57.902268208890725],[-124.7609108304805,57.90234061321965],[-124.76122733253774,57.90240524645059],[-124.76154609280816,57.902465413474424],[-124.76187144087831,57.90251778969105],[-124.76219501235202,57.902560054082066],[-124.76253682507486,57.90256098752809],[-124.7628592756507,57.902509024450396],[-124.76316551285467,57.902436721003426],[-124.76346989734577,57.902356548382535],[-124.76377424369849,57.90227749634229],[-124.76408473305342,57.902204108694555],[-124.76440310676743,57.902147617664525],[-124.76473151152213,57.90210692149045],[-124.76506206184261,57.90206512280069],[-124.76538450468183,57.90201315363604],[-124.76570505786339,57.90195443652237],[-124.7660072868047,57.901875359860306],[-124.76628915520472,57.90177366169731],[-124.76656076888226,57.90166289509903],[-124.76683245445967,57.90154988542016],[-124.76711017279409,57.901445903946566],[-124.76739784904488,57.90135995984483],[-124.76770551658952,57.90130784842225],[-124.7680434296268,57.90129863726729],[-124.76839122900665,57.901309705659244],[-124.76873281036836,57.90131735082138],[-124.76906987954024,57.901333926270745],[-124.76940476622822,57.90135272391418],[-124.76974212931377,57.90136032750124],[-124.77007982240848,57.90135783880048],[-124.77041736888864,57.901359834325255],[-124.7707547688749,57.90136631407679],[-124.77108987642747,57.90137837986015],[-124.77142687395921,57.90139719188652],[-124.77175699446744,57.90143276375583],[-124.7720847865989,57.9014750429836],[-124.7724126526333,57.90151507886402],[-124.77274266538748,57.90155401210818],[-124.7730727519517,57.90159070199328],[-124.7734050217202,57.90162516794841],[-124.77373289046724,57.90166520058493],[-124.77405835817956,57.901714183171194],[-124.77438615534808,57.90175645674709],[-124.77471395325308,57.90179872951789],[-124.77503062047725,57.901858844819806],[-124.77534274130595,57.901929012026024],[-124.77565933765726,57.90199136838621],[-124.77598022696938,57.90205152023078],[-124.77630555507744,57.90210498243634],[-124.7766337592128,57.90213491649455],[-124.77696785945143,57.902113309926726],[-124.77730646977196,57.902082771072365],[-124.77763496593485,57.90210373247685],[-124.77796058819305,57.90214822045575],[-124.77828591995069,57.902201677829176],[-124.77860910674246,57.90225623633713],[-124.77893680457626,57.9023018625577],[-124.77927323222723,57.902338595130196],[-124.7796181712667,57.902373161632674],[-124.77995743690497,57.902387486327534],[-124.78027484324122,57.9023601104763],[-124.78056853416012,57.90228316600236],[-124.78084432845084,57.902172408850355],[-124.78110786379987,57.90204920127646],[-124.78134622900498,57.90192127645245],[-124.7815370189572,57.90176375417643],[-124.78178534732078,57.90165386549124],[-124.78209132341921,57.901588246236855],[-124.78241373864373,57.90153623587049],[-124.78274644630005,57.90149217005477],[-124.78308122636,57.901449243960656],[-124.78340978608459,57.9014028953904],[-124.78374441961212,57.90136445272923],[-124.7840831626337,57.901329411573],[-124.78441164762702,57.90128530308506],[-124.78471547049614,57.90122077984535],[-124.7849887732836,57.901121207723406],[-124.78523148306667,57.900988829465966],[-124.78543043632342,57.90083922765271],[-124.78558741700039,57.90068251318916],[-124.78570882609694,57.90051650138506],[-124.78581357611515,57.90034360799175],[-124.78591625197238,57.90016957404193],[-124.78602282003084,57.900005669963036],[-124.78615785782317,57.89980949887689],[-124.78623521845405,57.89963523403991],[-124.78628948415002,57.89945739388924],[-124.78634374933307,57.89927955374926],[-124.78646096809112,57.899112381778984],[-124.78663488406818,57.89895357760138],[-124.78667834730376,57.898783490218904],[-124.78662296272594,57.898603529348996],[-124.78659081691909,57.898422658652045],[-124.78657761869445,57.89824308224524],[-124.78657074837616,57.898063563534876],[-124.78656809662358,57.897884083300426],[-124.78656759029404,57.89770350105021],[-124.78659865010383,57.897525449692246],[-124.78666553020601,57.897348846372466],[-124.78674921105906,57.897174639340896],[-124.78685598389968,57.89700400748509],[-124.78698370310815,57.89683805280249],[-124.78712818622958,57.896675615535884],[-124.7872873239136,57.896516676418834],[-124.78745693381856,57.8963600757134],[-124.78763479831527,57.8962091579814],[-124.78786481221579,57.89607666037166],[-124.78809897056016,57.895946443315076],[-124.78833516421278,57.89581848759558],[-124.788581757517,57.895695112497265],[-124.78884693433386,57.895584243583166],[-124.78913684171921,57.8954915446239],[-124.78944100648363,57.895414677036335],[-124.78976339472167,57.895361527941965],[-124.79009775173967,57.89532979717051],[-124.79043338837555,57.89532387390494],[-124.79077066562157,57.89533254544508],[-124.79110565381185,57.89534680332723],[-124.7914427153569,57.895362200780156],[-124.79177977717774,57.895377597380154],[-124.79211694724485,57.89538962931896],[-124.79245418948778,57.895399417865065],[-124.79279150384635,57.89540696301786],[-124.79312688902559,57.89540888185015],[-124.7934647428543,57.895399606251786],[-124.79380070304244,57.89538358307017],[-124.79413662701457,57.895368680311094],[-124.79447265848046,57.89535041289486],[-124.79480686778864,57.8953231553793],[-124.79513507238593,57.89528574833785],[-124.79546956776132,57.89524951900017],[-124.79577182381787,57.89516589027044],[-124.79585527827342,57.89499728426191],[-124.79589058183086,57.89481702684623],[-124.7959090483439,57.894635495599154],[-124.79592533386457,57.89445618784922],[-124.79594165510524,57.89427575886141],[-124.79595583127232,57.89409643210166],[-124.79596578923928,57.89391706722879],[-124.79597367396246,57.89373656204752],[-124.79597730471204,57.89355714002342],[-124.79597671742236,57.89337767988792],[-124.79596769416925,57.89319814349618],[-124.79595230818205,57.89301967118706],[-124.7959306312982,57.89284002042273],[-124.79590259186027,57.892661433735285],[-124.79587247961177,57.892481706733896],[-124.79584022283262,57.89230308195162],[-124.79580796635965,57.89212445719452],[-124.79577785499261,57.891944730271575],[-124.79575192585841,57.891766162793175],[-124.79573025065291,57.891586512229246],[-124.79571275755858,57.8914080211137],[-124.7956974093915,57.89122842784002],[-124.79568627911422,57.89104887275164],[-124.79567725780475,57.89086933677279],[-124.79566612772979,57.89068978174932],[-124.79565714248257,57.89050912457113],[-124.79564386789846,57.89033067179991],[-124.79562852049936,57.89015107871828],[-124.79560895562417,57.88997144751225],[-124.79558513745181,57.889792899443655],[-124.79555502901391,57.8896131729036],[-124.7955206674183,57.88943452949459],[-124.79548205272252,57.88925696921293],[-124.79544136551493,57.88907826860899],[-124.79539856994255,57.88889954894415],[-124.79535788351764,57.88872084838073],[-124.7953235595603,57.88854108382325],[-124.79520861092767,57.88831011823042],[-124.79514679409172,57.88819852166343],[-124.7949830869708,57.88804113934233],[-124.7948109105404,57.88788480174465],[-124.7946557127429,57.88772525291189],[-124.79450691411182,57.887563518688935],[-124.79436022542608,57.8874018034245],[-124.7942177912356,57.88723900496506],[-124.79407746692544,57.88707622548286],[-124.79394354160151,57.88691126067322],[-124.7938202324622,57.886744148769225],[-124.79370968394153,57.886573787650114],[-124.7936033895795,57.88640234342922],[-124.79349495164467,57.88623200130154],[-124.79337804438306,57.886062703921404],[-124.79324619836433,57.885898878955004],[-124.79309312395895,57.885739347743026],[-124.79292725564098,57.885584186692384],[-124.79275077398998,57.88543117236022],[-124.79256789619906,57.885280342955724],[-124.7923808027968,57.88512947506532],[-124.79219367491622,57.884979728192796],[-124.7920086930291,57.88482887895833],[-124.79183007415143,57.88467696564685],[-124.7916813357015,57.88451410751794],[-124.79153249054743,57.88435461301972],[-124.79132181651457,57.88421586703479],[-124.79110263810027,57.88407928665147],[-124.7908791723018,57.88394491013253],[-124.79065359963502,57.8838105141007],[-124.79042588409347,57.883677219800525],[-124.79020242309728,57.8835428422013],[-124.78998114422181,57.88340624090266],[-124.78975346955554,57.88327182425312],[-124.78952372414535,57.88313626680388],[-124.78928761907432,57.883001772697476],[-124.78905151569026,57.88286727819102],[-124.78881119718844,57.88273274491321],[-124.7885729887989,57.88259823040959],[-124.78833478211158,57.882463715498375],[-124.78809868550587,57.88232921937638],[-124.78786680733056,57.8821947612555],[-124.78763707528644,57.88205920070071],[-124.78741581443933,57.881922595346786],[-124.78720088024342,57.8817860472776],[-124.78699230875854,57.88164843527176],[-124.78679431659823,57.881509797794685],[-124.78660686752099,57.88137125614572],[-124.78630367928336,57.88122492940413],[-124.78638406095591,57.88108658631932],[-124.78642674563699,57.88094004843316],[-124.7865396542028,57.880773962366284],[-124.78669813664706,57.88056791480927],[-124.78688843468417,57.880421600851484],[-124.78709752499093,57.88028106581204],[-124.78732119093964,57.88014627118165],[-124.78755321606131,57.88001379551708],[-124.78778313130802,57.87988130026431],[-124.78800890066198,57.87974652373546],[-124.78813201495302,57.879590623762965],[-124.78804899218066,57.87941826624884],[-124.78795546523384,57.87924469146899],[-124.78785557845744,57.87907218030209],[-124.7877535844092,57.87889964988851],[-124.78765580765062,57.878727157835186],[-124.7875579956781,57.87855578698929],[-124.78745386012147,57.8783843584809],[-124.78734122068721,57.87821509558294],[-124.78720306787727,57.87805232957814],[-124.78706284425547,57.877888422996335],[-124.78693748708373,57.87772128705853],[-124.78682485195438,57.87755202383901],[-124.78676110163421,57.87737086885695],[-124.78655655557003,57.87724002271144],[-124.78626885574968,57.8771375789056],[-124.78602404221367,57.877013094157356],[-124.7857705087105,57.87689750201095],[-124.78546290059857,57.87682403579645],[-124.78514010306729,57.87676388912396],[-124.78482900493925,57.87666795804934],[-124.78454109700363,57.87657223804328],[-124.78440231069432,57.8764296518243],[-124.78439974320453,57.87624793306454],[-124.78440378943095,57.87605730214484],[-124.78432289953152,57.87588496218851],[-124.78420817364132,57.87571567781773],[-124.78408498058215,57.87554743758089],[-124.78396604081382,57.87537811453943],[-124.78387036231193,57.875206760836214],[-124.78379165708701,57.875032197484025],[-124.78372352860627,57.8748566092036],[-124.78365754493205,57.87467991894399],[-124.78359788569374,57.87450328648777],[-124.78353822701516,57.87432665403692],[-124.78347649720433,57.874148881078995],[-124.78341047970046,57.87397331206751],[-124.78334660694215,57.873796641084915],[-124.78328062689388,57.8736199508308],[-124.7832125033511,57.87344436254352],[-124.78313380485936,57.87326979911828],[-124.78304663941913,57.873096279812415],[-124.78295736693211,57.87292274120233],[-124.78286387958723,57.87274916400421],[-124.78276399711879,57.87257777140895],[-124.7826577558466,57.87240744216078],[-124.78254086771848,57.872240380154835],[-124.78239647042615,57.87207643106652],[-124.78223074262478,57.87192013763214],[-124.7820437207464,57.87177037852889],[-124.78180124522073,57.87164029979623],[-124.78160132586181,57.87149827300839],[-124.78148019343793,57.87133229286618],[-124.78135913465644,57.871164070165136],[-124.7812423650205,57.870993643516854],[-124.7811277041731,57.870823236102964],[-124.78101733240148,57.87065062476206],[-124.78091542879038,57.87047696936445],[-124.78081984922622,57.8703033718556],[-124.78073059362116,57.87012983224914],[-124.78065394862884,57.869957529738436],[-124.78058577133994,57.869784183240014],[-124.7805850399111,57.869611454854486],[-124.78069397910451,57.8694374883941],[-124.78081556315666,57.86926363774802],[-124.78088470931968,57.86908145560867],[-124.7808713307872,57.86890861148331],[-124.7810749278207,57.86874111997875],[-124.78134945901,57.868661760208],[-124.78170295357816,57.86861789152604],[-124.78200491766631,57.868537660047274],[-124.78229870386566,57.86844950208658],[-124.78258227695034,57.86835115594547],[-124.78284927776578,57.8682436850885],[-124.78311017170411,57.86812942846802],[-124.7833669575817,57.86801176910016],[-124.78362163428582,57.86789408998333],[-124.78387423804503,57.86777526989459],[-124.7841248050576,57.86765418761078],[-124.7843691201999,57.86753080463306],[-124.7846030769657,57.867401718787754],[-124.78483081806387,57.86726921109837],[-124.78505648620553,57.86713556255755],[-124.78528008139224,57.86700077317638],[-124.78549742476118,57.866863683255495],[-124.7857147665479,57.866726592998916],[-124.78594453485708,57.86659634519823],[-124.78618887331479,57.86647183777869],[-124.78645385142387,57.86636097696643],[-124.78673325521983,57.866260341276096],[-124.78701269363683,57.86615858377509],[-124.78728177373398,57.86605112347962],[-124.78754474649894,57.865936877630936],[-124.78780778984893,57.865820388807556],[-124.78804997358203,57.86569698010227],[-124.7882254391507,57.86555053208489],[-124.78831961536845,57.86537530451028],[-124.78855143778182,57.865246192815],[-124.78880822306319,57.86512740206095],[-124.78905668524028,57.865005170400046],[-124.78932164458972,57.864894304043396],[-124.78961531317266,57.86480837272552],[-124.78992137260045,57.86473040440752],[-124.79021714592771,57.86464449094333],[-124.79050059766983,57.86454837077831],[-124.790759407423,57.86443183796856],[-124.79099539441572,57.86430388168172],[-124.7912106300428,57.864165642424176],[-124.79141547123123,57.864022822186335],[-124.79161613214426,57.86387884213958],[-124.79181682749207,57.86373374057865],[-124.79201541396121,57.86358861960198],[-124.79220774884094,57.86344119849124],[-124.79241051094314,57.86329723646349],[-124.79263274048641,57.86313774901838],[-124.79286464215447,57.863005266407406],[-124.79309797760463,57.863025328350034],[-124.7933352162167,57.86318674163565],[-124.79357992813314,57.863312332403595],[-124.79387672558289,57.8633912894807],[-124.79419731513381,57.8634513950397],[-124.79451797748435,57.863509257363404],[-124.79483649760869,57.863568221061314],[-124.79514840976536,57.863636096614734],[-124.79545153507775,57.86371510745945],[-124.79573930075517,57.863813045069776],[-124.79603371257784,57.86390094817277],[-124.79635266839578,57.86394645345414],[-124.79668527220497,57.8639606777733],[-124.79702884281507,57.86396154172309],[-124.7973680913175,57.86396573039011],[-124.79770498198222,57.863977747790685],[-124.79803976550404,57.86398974529925],[-124.79837879973032,57.86400065879828],[-124.79871783415305,57.86401157143339],[-124.79904936893087,57.86399325500058],[-124.79936933156766,57.86394118658132],[-124.79961128552108,57.863889535129275],[-124.79968347154814,57.86387336306487],[-124.79999968202051,57.86380667905458],[-124.80041572227553,57.863716220228554],[-124.80072982279205,57.86364951549235],[-124.80105385208554,57.86360196597353],[-124.80138363162422,57.86357241238945],[-124.80171758964083,57.86354401718578],[-124.8020557261568,57.863516780331025],[-124.80239168354399,57.863491766118244],[-124.80272953395345,57.863473497435386],[-124.80306720586675,57.86346083407263],[-124.80340459256392,57.8634571397379],[-124.80373958695488,57.86346239548461],[-124.80407001073749,57.863478824859094],[-124.8044022929839,57.86350312100309],[-124.80473221923432,57.86353524603717],[-124.80505986083737,57.86357295750739],[-124.80538946817806,57.86361517204013],[-124.80571686224944,57.863660730550265],[-124.80604636445885,57.863706307169004],[-124.80637376011693,57.863751864066884],[-124.80670333496998,57.86379519658939],[-124.8070330171293,57.86383516458633],[-124.80736494936902,57.863870665710756],[-124.8076971307084,57.86389831734752],[-124.8080317037856,57.86391701713738],[-124.8083707402489,57.863927905174805],[-124.8087098833067,57.863935428635685],[-124.8090469191392,57.86394293236742],[-124.80938602702129,57.86395157534264],[-124.80972070771826,57.863966907172994],[-124.81005089055044,57.86399117036814],[-124.8103782935276,57.86403671742546],[-124.81068770530385,57.86411799259629],[-124.81094551479381,57.864231330949224],[-124.8111496501979,57.86437559272538],[-124.81132796760375,57.86453644685335],[-124.81151278566252,57.86469175105],[-124.81173853050848,57.864819381655366],[-124.81201387930874,57.86491156504431],[-124.81231072799417,57.86499048112714],[-124.8126183978585,57.86506052067598],[-124.81293892549051,57.86512394489713],[-124.81326384572587,57.86518179974511],[-124.81359098036133,57.865236308874636],[-124.8139202586946,57.8652897147501],[-124.81424107289197,57.865344165924576],[-124.8145730958088,57.865377406639745],[-124.81491228843902,57.865383793061376],[-124.81524997337766,57.865371098755276],[-124.81556177765829,57.865309946331095],[-124.81589173702892,57.86527475053171],[-124.81621179299154,57.86521927782032],[-124.81653181277693,57.86516492558327],[-124.81686384217713,57.865130867365565],[-124.81719776711878,57.86510355450325],[-124.81752779356192,57.865066112171846],[-124.81784176943445,57.865002730672],[-124.81811704035877,57.86489638557482],[-124.81841461181826,57.86481827683032],[-124.81874877904075,57.86478311139629],[-124.81908642214228,57.86477152860273],[-124.81941858487936,57.86480027224198],[-124.81975064270843,57.86483237877739],[-124.8200883562,57.8648185509577],[-124.82040731371333,57.86486511985676],[-124.8207280985617,57.86492067660831],[-124.82105777034894,57.86496173114139],[-124.82138758321392,57.86499829989074],[-124.82171739671934,57.86503486782396],[-124.82205167121634,57.86506362356156],[-124.8223859812839,57.8650912572177],[-124.82271361903791,57.865130046516676],[-124.82303012458779,57.86518780292214],[-124.82333774593013,57.86526006018362],[-124.82364305086944,57.86533902556439],[-124.82394403714537,57.865421316723655],[-124.82424720220239,57.86550138334596],[-124.8245460836355,57.86558365453292],[-124.82484489639938,57.86566816754308],[-124.82514813531544,57.86574598964508],[-124.8254623674554,57.86580932791195],[-124.82578973494799,57.8658570796185],[-124.82611060608359,57.86591038096093],[-124.82641381462396,57.86598932144218],[-124.82668664627178,57.86609603216726],[-124.82693159305457,57.86621819821842],[-124.82717432916623,57.86634370899203],[-124.82741281696147,57.86647030343661],[-124.8276490941269,57.866600242637006],[-124.82787687302195,57.86673234966098],[-124.82809822623867,57.86686776436233],[-124.82831104622426,57.867006468214726],[-124.82850890565155,57.867151769330576],[-124.82869823174991,57.86730035970019],[-124.82887898959892,57.86745336060841],[-124.82905764134087,57.86760634274731],[-124.82923207936551,57.867759287580114],[-124.82940223391323,57.86791443761888],[-124.82957024741202,57.8680706901728],[-124.82973404708339,57.86822690546536],[-124.82989781327412,57.86838424182958],[-124.8300594732046,57.86854155948567],[-124.83021045697653,57.86870326931806],[-124.83035294180507,57.86886714739477],[-124.83053174552612,57.86901564277953],[-124.83080022137638,57.869127914598124],[-124.83109458252507,57.869221346834955],[-124.83123520908926,57.869377356790025],[-124.8313351992471,57.86955207615332],[-124.8314394753136,57.869724589992785],[-124.8315734689537,57.86989063539397],[-124.83172449942211,57.87005122248151],[-124.83190535233256,57.87020197720818],[-124.83210749265345,57.870346189203204],[-124.83232031229353,57.8704860083887],[-124.83254595380619,57.870620331952615],[-124.83276738142106,57.870754618174296],[-124.8329652429846,57.87090103447356],[-124.8331083505672,57.87097743381753],[-124.83320785567385,57.871236264471],[-124.83335457871037,57.8714001767234],[-124.8334082472115,57.87157336707358],[-124.83340483165718,57.87175166477564],[-124.83336969455516,57.871933049079445],[-124.83331354829627,57.872112006097254],[-124.8332385351753,57.8722874330292],[-124.83313836614857,57.872458153138034],[-124.83302762216955,57.87262990203043],[-124.83293163225899,57.87280178026779],[-124.83286715537565,57.87297729954715],[-124.83282790303362,57.87315528319717],[-124.83280122819363,57.873335620310066],[-124.83278298473131,57.87351603140717],[-124.83276056001664,57.873695284301505],[-124.83272970337511,57.87387446326605],[-124.8326757286424,57.87405119635011],[-124.83251884638626,57.8742146895074],[-124.83223971464358,57.874308694605546],[-124.83191911805565,57.874379903966286],[-124.83168759690557,57.87450236487086],[-124.83149954126857,57.874651002976165],[-124.8313322507164,57.87480991726409],[-124.83117957544415,57.87497344599386],[-124.8310500520143,57.87513829951502],[-124.83095193867457,57.87531015825079],[-124.83086007885652,57.875484315016415],[-124.830759855721,57.87565615515224],[-124.83066381292046,57.875829153545155],[-124.83056569601771,57.87600101211818],[-124.83046128888162,57.876171693814605],[-124.83036186325765,57.87631774484777],[-124.83014997741547,57.87648636015942],[-124.82997019874571,57.8766395555608],[-124.82979249185287,57.87679389053778],[-124.82962525428648,57.87695056051367],[-124.82949157075336,57.87711313325845],[-124.82939133703661,57.877284972651466],[-124.82931626047042,57.877461519563184],[-124.82926222970646,57.87763937317289],[-124.82922717175812,57.87781739370287],[-124.8292320987309,57.87799800914073],[-124.82927082616708,57.87817667881224],[-124.82934121149911,57.878354505402676],[-124.82951512441426,57.87859380710402],[-124.82971608172598,57.87864155852848],[-124.82998255042956,57.878752693308776],[-124.83028590534673,57.878830504746524],[-124.83062041335042,57.878855875582595],[-124.83095067057144,57.87888232980321],[-124.8312518507035,57.87896236305331],[-124.83154425124384,57.879053534204076],[-124.83184318661857,57.87913803266594],[-124.8321443011279,57.87922030644027],[-124.83245430193729,57.87928807711794],[-124.8327841123097,57.87932910320129],[-124.83311634442184,57.87936005559709],[-124.83344187018153,57.8794032856097],[-124.8337581995596,57.879471108699],[-124.83404214240382,57.87956332177758],[-124.83427634692062,57.87969547501163],[-124.83452354978041,57.879816525994556],[-124.83478572033941,57.87993097815845],[-124.83506524444239,57.880029879761224],[-124.83535984016218,57.88011881855668],[-124.83563065659017,57.8802266153046],[-124.83586473211716,57.88036325088841],[-124.83617167634668,57.880393974405244],[-124.83650675666823,57.88040139026838],[-124.83680367487139,57.88048361674861],[-124.83708949865971,57.88058369069684],[-124.83735818044282,57.88069258682516],[-124.83759243824585,57.88082361311337],[-124.8378117663113,57.880960116465964],[-124.8380247017428,57.88109880678828],[-124.83824185542966,57.88123753359511],[-124.83845901071685,57.88137626006762],[-124.83862933401463,57.881529157944975],[-124.83874010555233,57.88169835957753],[-124.83884234081336,57.88187085137368],[-124.83898283924367,57.882033582766354],[-124.83914456117054,57.882192012856784],[-124.83931907318288,57.88234606802345],[-124.8395106613382,57.88249354244506],[-124.83972357714129,57.88263335153608],[-124.8399407804935,57.88277095452326],[-124.84015369946282,57.882910762966155],[-124.84038372936621,57.883042869164406],[-124.84064172330433,57.883157273436574],[-124.84098616305955,57.8832040142526],[-124.84121747477678,57.88329463211972],[-124.84120739005166,57.88348521105847],[-124.84121030127979,57.88366468747992],[-124.84129350775677,57.88383925507859],[-124.84140426355474,57.88400957616616],[-124.8415745072094,57.884165834498184],[-124.8417618619259,57.88431439052606],[-124.84176283983952,57.88448824239217],[-124.84170450270899,57.88467055072378],[-124.84169476511505,57.88484991726627],[-124.84171033011643,57.88502950401678],[-124.8416920891802,57.885211039775655],[-124.84159413620085,57.885378423053105],[-124.84140388773893,57.885529301008795],[-124.84128062951581,57.885696463876656],[-124.84120344881146,57.88587412193751],[-124.84124237924178,57.88604830448638],[-124.84135314130785,57.88621862600469],[-124.84148295109901,57.88638687008034],[-124.84161497421532,57.88655176859112],[-124.84176611436723,57.88671234703263],[-124.84194487538495,57.88686643616875],[-124.84220936423397,57.88697640779456],[-124.84241204791614,57.88710715134706],[-124.84242336542066,57.8872878230324],[-124.84246856007434,57.88746430303336],[-124.84257507996792,57.88763570838591],[-124.84269224782791,57.88780384152321],[-124.84282213801626,57.88796984201998],[-124.84291172215212,57.888143343098655],[-124.84298651145085,57.88831783713035],[-124.84308456664566,57.8884902901904],[-124.84318476596307,57.88866164025829],[-124.8432786054193,57.888834056587584],[-124.84335550657224,57.88900856885944],[-124.84340274754028,57.889187309730346],[-124.84343097529111,57.88936700700935],[-124.84346552974523,57.88954675927616],[-124.84352767147341,57.889721143335755],[-124.84362559500123,57.889898081354026],[-124.84376175416064,57.890066378799396],[-124.84394724467832,57.89020818667848],[-124.84426582707245,57.89027488258632],[-124.84454548732332,57.890372644057535],[-124.84476714278048,57.8905046704861],[-124.84498012342446,57.89064447232483],[-124.84518456691019,57.89078756450648],[-124.8453889431525,57.890932898951974],[-124.84559549865703,57.891076008834744],[-124.84580845122396,57.89121693070985],[-124.84603426514995,57.89135123426787],[-124.8463202991207,57.89144792567891],[-124.84664380130093,57.891492226946895],[-124.84697960082215,57.89147943350333],[-124.84731598392939,57.89144757746252],[-124.84764427411714,57.89140443476281],[-124.84797249490755,57.89136353381456],[-124.84830625253909,57.8913484762192],[-124.84864544478559,57.891362625772814],[-124.84897800190592,57.89138681128253],[-124.84931246267722,57.89141774186922],[-124.84964726672374,57.891437458816306],[-124.84998220817133,57.891452689801476],[-124.8503280027717,57.89145791947974],[-124.8506782550054,57.89145533570948],[-124.85100656217243,57.89148060102336],[-124.85128465331826,57.89156151105198],[-124.85153413195793,57.89168142883697],[-124.85176401593625,57.8918213655307],[-124.85198539741457,57.89196347167007],[-124.85219412681141,57.89210546837159],[-124.85234325962321,57.89226489626117],[-124.8524307547031,57.89243949480565],[-124.85254583836878,57.892608723208056],[-124.85268429295026,57.89277254504597],[-124.85285254824447,57.89292765091055],[-124.85304631813042,57.89307624691335],[-124.85326152143223,57.893213811478255],[-124.8534935985415,57.89335152100626],[-124.8537449660543,57.89347930201559],[-124.85401889391653,57.89355904890255],[-124.85435780829953,57.89351373775296],[-124.8546955957748,57.89350542810484],[-124.8550330078473,57.89350945172167],[-124.85537038588801,57.893514595767584],[-124.85570786630255,57.893516375106586],[-124.85604544900049,57.89351478973803],[-124.85638129744213,57.893500851272414],[-124.85671724782634,57.893483548107234],[-124.85705472802609,57.89348532403247],[-124.85738979282523,57.89349717256252],[-124.85772686477435,57.893512402197224],[-124.85806393699626,57.89352763097887],[-124.85839883242107,57.89354508339338],[-124.85873121106668,57.89357597230541],[-124.85906134523536,57.893611327455446],[-124.85939144604,57.893647803073485],[-124.85972151351002,57.89368539915968],[-124.86005158163948,57.89372299442915],[-124.86038161647348,57.893761710167375],[-124.86070947503828,57.89380264961338],[-124.86103730038094,57.893844709539536],[-124.86136505860497,57.89388901123216],[-124.86169070853477,57.893933294088555],[-124.86201629141814,57.89397981872295],[-124.86234187510648,57.89402634256335],[-124.86266739182567,57.89407510818283],[-124.86299294326577,57.894122751722264],[-124.86331846166236,57.89417151575501],[-124.86364187181962,57.89422026099377],[-124.86396739190037,57.89426902344492],[-124.86429073605818,57.89432000968673],[-124.86461408109207,57.89437099514605],[-124.8649373931823,57.89442310111031],[-124.86525859706983,57.89447518831731],[-124.86558194474804,57.89452617143458],[-124.86590743619719,57.89457605044614],[-124.86623085318364,57.89462478941721],[-124.8665586243136,57.89466907836163],[-124.86688642997692,57.89471224521296],[-124.86721430389655,57.89475316868246],[-124.86754438887327,57.89479074541998],[-124.8678744745091,57.89482832134043],[-124.86820459452683,57.894864775155455],[-124.86853933798484,57.89488780853322],[-124.8688766628158,57.89489516094237],[-124.86921412254948,57.89489802734085],[-124.86955164969994,57.89489865030593],[-124.86988676468343,57.8949093461167],[-124.87022432560914,57.894908846087475],[-124.87056202113621,57.894903860045034],[-124.87089958200373,57.894903358303985],[-124.8712371764947,57.89490173441766],[-124.87157487182374,57.894896745806584],[-124.87190878577617,57.89487714383385],[-124.8722429009955,57.89485081328561],[-124.87257299906094,57.894817718442944],[-124.87289526456351,57.89476436815043],[-124.87321759629901,57.89470877450135],[-124.87354183481263,57.894659925658],[-124.87387383785007,57.89463357317964],[-124.87420972320535,57.894618468440356],[-124.87454199367923,57.894583143977734],[-124.87487412943423,57.89455230384753],[-124.87520813915339,57.894529329738035],[-124.87554218196864,57.8945052335011],[-124.87586839083693,57.89446088197545],[-124.8761946324207,57.894415408362484],[-124.87652298231347,57.89436995174895],[-124.87684915538863,57.89432671911706],[-124.87716528407967,57.89426657740188],[-124.87733353968245,57.89414238012607],[-124.87756312465712,57.89401309183887],[-124.87765795927956,57.89380415733959],[-124.87776970126613,57.89366490277256],[-124.87791659421099,57.89354949738473],[-124.87801996817929,57.893478587982614],[-124.8781697741556,57.89340694817373],[-124.87833186618641,57.89334774899412],[-124.87855150316206,57.89326884606072],[-124.87884502672004,57.893258980803125],[-124.87897295272678,57.89342605047428],[-124.87921810819743,57.89348194981283],[-124.87953303003813,57.89353282798339],[-124.87987342176544,57.89350765286214],[-124.88021093661952,57.89350824880728],[-124.88054584212492,57.893525645518466],[-124.88087368720926,57.893567656593795],[-124.88119042104942,57.89362864019093],[-124.88148740786374,57.89371525326581],[-124.88173261225529,57.89384068574226],[-124.88163283911689,57.89400359706742],[-124.88148017127384,57.89417167186171],[-124.8813864568217,57.89434360654371],[-124.88136636030478,57.894522889154665],[-124.88136728811818,57.894704591579426],[-124.8813514095741,57.89488390969479],[-124.88132287604776,57.8950631215189],[-124.88130488799227,57.89524242197456],[-124.8813248979522,57.89542092014306],[-124.88140195564408,57.89559653289558],[-124.8814388396801,57.895775172865534],[-124.88146517812395,57.895953724267336],[-124.88149781108532,57.89613345014388],[-124.88156221579248,57.8963089566261],[-124.88158865517163,57.89648414422018],[-124.88154324773565,57.89666321465674],[-124.88163942543049,57.89683450177255],[-124.88179717201712,57.896992847006395],[-124.88196128101355,57.89715012391593],[-124.8820299081533,57.89732566577758],[-124.88203512441731,57.897505161553354],[-124.88203401287389,57.897684604234506],[-124.88203501061565,57.89786406465827],[-124.8820423362845,57.89804357824323],[-124.88208977233828,57.89822230703145],[-124.88208233305637,57.89840169672083],[-124.88205805232889,57.89857982347631],[-124.88202319132759,57.898758983009735],[-124.88198411128236,57.89893810714726],[-124.88191559969555,57.89911361946141],[-124.88186613848933,57.89928704858697],[-124.88193051699373,57.8994636767622],[-124.88198642520473,57.89964135539632],[-124.88201273563702,57.899821028703315],[-124.88203466091302,57.900006273110904],[-124.88205695286754,57.900179183268136],[-124.88205158916286,57.90035971232758],[-124.88203989706928,57.90054018829296],[-124.88199247738197,57.90071587802946],[-124.88188612550188,57.900886586669394],[-124.88174826383603,57.90105254435253],[-124.88160417249082,57.90121508487461],[-124.8814432372952,57.90137636221979],[-124.88132860973748,57.90154139315717],[-124.88135495169435,57.901719945648374],[-124.88137278914131,57.90190066988874],[-124.88135690758683,57.90207998934255],[-124.88131119224572,57.90226915244514],[-124.88127612423006,57.90245504027414],[-124.88145605518291,57.90257768241498],[-124.88172749852296,57.902674174843014],[-124.88203724870696,57.902759772487386],[-124.88235979098378,57.90284099043882],[-124.88266311534227,57.90292989743451],[-124.8829558266272,57.90302095787794],[-124.88323986799182,57.903119796040386],[-124.88347248192258,57.90324512039353],[-124.88366428296993,57.903394777030485],[-124.88392670070286,57.90351137777168],[-124.88405274079875,57.90367282014376],[-124.88408324992423,57.903853650451666],[-124.88401919128131,57.90402135097369],[-124.88395031405061,57.904209199600075],[-124.88386067215089,57.90438565838659],[-124.88378583038222,57.90456111961376],[-124.88373848031723,57.90473456809728],[-124.88381583448093,57.904901210715224],[-124.88399468778628,57.90506085278656],[-124.88410998526966,57.90522893480069],[-124.88412780435561,57.905410780635755],[-124.88404890863528,57.90558060031897],[-124.883846169677,57.90572807207743],[-124.88366650324473,57.90588022329314],[-124.88352451145295,57.90604278439172],[-124.88338878116554,57.906207641042066],[-124.88324467716495,57.906370184209685],[-124.8830461836535,57.90651656894582],[-124.88290224346632,57.906673505264045],[-124.88285468688807,57.906853681652635],[-124.88279460418835,57.90702926664768],[-124.8825727975329,57.90717882002508],[-124.88246893955075,57.90733609229532],[-124.88251662250025,57.9075069735071],[-124.88260221650528,57.907680415960954],[-124.88270887655912,57.90785515668845],[-124.8828133944385,57.908031000972954],[-124.88290103428632,57.908206703642435],[-124.8829569600732,57.908384383483224],[-124.88298961094321,57.90856411131408],[-124.88297795409459,57.908743467592124],[-124.88291358252616,57.90892126021454],[-124.88296116961719,57.909095505476074],[-124.88306582529265,57.909266864552606],[-124.8831810649372,57.90943719072519],[-124.88327510621686,57.90961070386041],[-124.88329295662915,57.90979142932633],[-124.88334262326775,57.90996681360916],[-124.88347705585853,57.910130570985814],[-124.88363486593147,57.91028891622995],[-124.8838011173414,57.91044733203974],[-124.88395678682858,57.91060678058414],[-124.88408904783203,57.91077276239574],[-124.88419371331092,57.91094412088538],[-124.88427506953,57.911118648846],[-124.8843183458354,57.91129622260905],[-124.88432990513583,57.911475773920955],[-124.88430560817586,57.91172568517305],[-124.88447462876537,57.91179103143707],[-124.88478439377911,57.91187886612955],[-124.88504694063828,57.91199322306723],[-124.88524954242257,57.912136239213766],[-124.88543925254062,57.91228699833388],[-124.88564825417836,57.912427824257506],[-124.8858936940503,57.91254988756811],[-124.88615839229597,57.91266313872977],[-124.88642098200141,57.912776371738815],[-124.88667282345457,57.912896243949675],[-124.88692466651275,57.913016115699534],[-124.8871721581718,57.913140436991036],[-124.88740474766577,57.91326911972815],[-124.88761593860973,57.91340771770307],[-124.88781420480278,57.913555180179145],[-124.88799331512095,57.91370809042555],[-124.88815541274948,57.91386534481904],[-124.88828556038914,57.91403242673085],[-124.88853708485321,57.9141635087372],[-124.88859512320795,57.914342326236294],[-124.88875681860866,57.9145848176836],[-124.88888903478986,57.91461059558724],[-124.88925123416344,57.914639412764316],[-124.88959249719068,57.91466244647427],[-124.88992993726559,57.914671988334135],[-124.8902676421746,57.91467255880055],[-124.89060353450714,57.91466301898014],[-124.8909399226113,57.91463665855056],[-124.89127594666378,57.91462263176536],[-124.8916137502781,57.9146198348669],[-124.89195171900525,57.91461143052344],[-124.89228704898052,57.91462094886012],[-124.89261977369397,57.91464726857936],[-124.89295230085601,57.91468031537661],[-124.8932848286023,57.91471336134491],[-124.89361053144007,57.91476317368011],[-124.89391440718883,57.914837479014565],[-124.89415336102107,57.91496620276055],[-124.89444840292047,57.91505389264694],[-124.8947606578535,57.91513050876333],[-124.8950643082592,57.915212660737176],[-124.8953335698046,57.915315837114505],[-124.8955598368785,57.91544557472719],[-124.89576239846618,57.91559193935798],[-124.89595417970716,57.91574606549787],[-124.89606705813452,57.91592757738334],[-124.89633537335592,57.91606327010465],[-124.89673851615942,57.916136148127045],[-124.89693409167384,57.91623310305875],[-124.89757688875382,57.916267585311076],[-124.89787168598038,57.916364238304354],[-124.89820222921577,57.91646567265616],[-124.8982365119013,57.9166644781812],[-124.89829222709308,57.9168522450428],[-124.89845441416723,57.91700836609728],[-124.89863783778861,57.91716017615871],[-124.89882983578727,57.91730757047631],[-124.89902394569302,57.917454981980505],[-124.89921591389083,57.91760349711011],[-124.89940577318539,57.91775199455165],[-124.89959777721427,57.917899387853716],[-124.89978978274792,57.9180467809017],[-124.89997964654566,57.91819527759427],[-124.90017162229535,57.918343791461695],[-124.90036148909986,57.918492287656136],[-124.9005535006529,57.91863967969498],[-124.90073908395422,57.918790383213974],[-124.90089700302873,57.918948709433955],[-124.90105917718975,57.919105948984665],[-124.9012384005446,57.91925772098173],[-124.9014218463721,57.91940952756704],[-124.90159246680238,57.91956683615458],[-124.90175662608793,57.919728577662106],[-124.90195521021118,57.91986817077908],[-124.90222858022388,57.92012166105517],[-124.90249873092404,57.920268572616344],[-124.90302856095767,57.92005310313041],[-124.90324922040108,57.92008744602927],[-124.90365098143118,57.920209641830006],[-124.90396417477959,57.920111275019835],[-124.90423109778364,57.920006918977606],[-124.9044980519697,57.91990144108509],[-124.90476422093425,57.91982287451611],[-124.90501631221308,57.919647734545656],[-124.90529589214286,57.91954348049437],[-124.90558968942548,57.91945840977913],[-124.90590783291576,57.919407186206776],[-124.90624639584034,57.91937968300371],[-124.90658469746566,57.91936114955608],[-124.90692510926948,57.91934263256527],[-124.90726509719542,57.91933869195622],[-124.90758053401721,57.919380534537595],[-124.90786028208123,57.91948825787907],[-124.90816633467543,57.91956254837187],[-124.90849232701385,57.919604475283144],[-124.90882491194044,57.91963748263277],[-124.90915964050613,57.919669385105685],[-124.90948998600216,57.91970685882897],[-124.90981770154917,57.919762255715185],[-124.91014096951714,57.91982546656739],[-124.91046469336598,57.91987297804162],[-124.91078559339837,57.919872237096676],[-124.9111024993594,57.91979070797719],[-124.91142268377455,57.91974173112533],[-124.91174712235538,57.91976457025179],[-124.91207717933078,57.919812129522334],[-124.91240489960536,57.919867520051284],[-124.91273275051608,57.919918424461144],[-124.91305862139649,57.91996482553218],[-124.91338231773167,57.92001345125384],[-124.91370809307051,57.92006321472903],[-124.91403182347126,57.92011071754847],[-124.91435763288139,57.92015935811107],[-124.91468334605477,57.920211361868986],[-124.91500906012887,57.920263364833524],[-124.91533711205687,57.92030753487609],[-124.91566561738443,57.92033600548978],[-124.91599931397747,57.92033086972838],[-124.9163378455232,57.92030446218714],[-124.91667403992105,57.92028588593832],[-124.91701215081265,57.92027405398024],[-124.91734993868796,57.92027343446986],[-124.91768740384916,57.920284027409615],[-124.91802272636967,57.92029572368591],[-124.91836012741973,57.920308557583624],[-124.91869749645983,57.92032251195805],[-124.91903275517704,57.92033644835496],[-124.91937009249665,57.92035152235791],[-124.91970746229683,57.920365474175824],[-124.92004480014717,57.92038054647107],[-124.92038005988083,57.920394479478816],[-124.920717462621,57.92040730740864],[-124.92105486559133,57.92042013448425],[-124.92139022253212,57.92043070095591],[-124.9217277223917,57.920440162332845],[-124.92206528670091,57.92044738019119],[-124.92240102972765,57.92044448813625],[-124.92273728662094,57.920423653922505],[-124.9230736073614,57.9204005761964],[-124.9234095745914,57.92038983227569],[-124.9237471066818,57.92039816720512],[-124.9240863003863,57.92042221697605],[-124.92441436435729,57.920466364677246],[-124.9247206179046,57.920535010556506],[-124.92501356798095,57.920625980219896],[-124.92529996337608,57.920724747505844],[-124.92558210703287,57.92082460147985],[-124.92585347494943,57.92093221912273],[-124.9261012754228,57.92105198376746],[-124.926321159165,57.92118834686893],[-124.92652818866341,57.921331335601835],[-124.92673729837507,57.92147546237037],[-124.92697455200474,57.92159514045044],[-124.92729882410062,57.92162466975979],[-124.9276404295607,57.92163863549571],[-124.92798206723901,57.92165147902137],[-124.92831692583069,57.92167996942936],[-124.92864056081251,57.92173192217417],[-124.9289531324223,57.921801730665486],[-124.92926132423142,57.92187711118193],[-124.92956088309475,57.921959151176914],[-124.92984957080398,57.922052319100644],[-124.93011670652722,57.92216101563002],[-124.93037732037203,57.92227638882057],[-124.93064225286105,57.9223884313864],[-124.9309244550596,57.92248715288538],[-124.93120451616544,57.92258697820254],[-124.93146951702964,57.922696776486454],[-124.93173442388019,57.92280993826702],[-124.93199725344657,57.92292196127875],[-124.93226436971601,57.92303177493883],[-124.93254223220829,57.92313494459977],[-124.93282661938075,57.9232314363817],[-124.93311749931925,57.92332237157889],[-124.93342136321756,57.92340219414429],[-124.93371013515782,57.923493111168206],[-124.93394288429164,57.92362395669463],[-124.93408599731158,57.92378885417946],[-124.93426550336618,57.92393609712288],[-124.93457750010786,57.92402719802298],[-124.93466391184182,57.9241815471981],[-124.93462445251714,57.924381996930954],[-124.93433890805046,57.924325877087114],[-124.93399960900959,57.924304095996206],[-124.9336619124041,57.92430027236104],[-124.93332578594237,57.924315527532755],[-124.93299148365449,57.92434089081139],[-124.93265513376518,57.92436399366599],[-124.93232284588855,57.92439273619369],[-124.93199439695348,57.92443496779817],[-124.93167404010057,57.92448960101761],[-124.9313576808823,57.924552116699765],[-124.93103716272664,57.92461235508995],[-124.93071680297204,57.92466698601835],[-124.93038834983831,57.92470921367639],[-124.93005986406175,57.92475256186564],[-124.92975987595598,57.92483315078694],[-124.92948457813236,57.924936369319276],[-124.92922786128007,57.92505431736312],[-124.92899612169687,57.92518480325112],[-124.92878523352655,57.925324429162224],[-124.92858684923351,57.92546976329214],[-124.9283988899538,57.92561966738434],[-124.92821722986154,57.92577074350953],[-124.92804602686482,57.925925268335796],[-124.92791879968055,57.9260924843572],[-124.92776016352109,57.92625047478631],[-124.92752009573806,57.92637640496762],[-124.92725514313582,57.926486432049344],[-124.92700048763993,57.92660551432773],[-124.92675209932595,57.926726889819946],[-124.92650370940855,57.926848264864525],[-124.92625739681603,57.92697077781165],[-124.92601312951842,57.92709555001374],[-124.9257772083454,57.92722375387493],[-124.92555587010288,57.927358804524964],[-124.92534492491886,57.92749954665077],[-124.92513608914176,57.92764030549064],[-124.92493348860047,57.92778447913891],[-124.92475180412794,57.92793555088282],[-124.92459103587622,57.9280935208113],[-124.92444913715119,57.92825612928219],[-124.92432399711555,57.92842335931819],[-124.92421564802956,57.9285940896266],[-124.92415780270355,57.92877083562177],[-124.92416533549024,57.92895035264388],[-124.92417286834888,57.92912986969937],[-124.92416984588341,57.92930930157632],[-124.92422177587756,57.929486933895],[-124.92433307378192,57.92965607261061],[-124.92445284919748,57.9298241580719],[-124.92456414913941,57.92999329665435],[-124.92467967233729,57.930162469242795],[-124.92481221393564,57.930327292643845],[-124.92496388525795,57.930487783834685],[-124.9251198122422,57.930647187590274],[-124.92528213814549,57.930804399575116],[-124.92542741578262,57.93096708193415],[-124.92553446908111,57.93113730720914],[-124.92562031529887,57.93131072627175],[-124.92570613026771,57.93148526665623],[-124.92581532955272,57.93165438747051],[-124.92594788138838,57.93181921000049],[-124.92605916193038,57.93198946903505],[-124.92612383605292,57.932164960494084],[-124.92615674594062,57.93234356083282],[-124.92617273402922,57.93252314645869],[-124.92617816591732,57.93270264706331],[-124.92616456430262,57.93288311595208],[-124.92614047016124,57.933061257121985],[-124.92610789855829,57.93324045162183],[-124.9260542455685,57.93341835467403],[-124.92600273542544,57.93359515340312],[-124.92598916468009,57.93377450109465],[-124.92600937525839,57.93395412103753],[-124.92604439751933,57.93413273875323],[-124.9260857541958,57.93431140752994],[-124.92613347740891,57.934489006012555],[-124.92618331245382,57.9346666215219],[-124.92623103657864,57.934844220035956],[-124.92627453835253,57.935021784547565],[-124.92631167427872,57.935200419402776],[-124.92633822142751,57.93538009059088],[-124.92634998881196,57.935559642752146],[-124.92633641901404,57.93573899084955],[-124.9262954322471,57.93591699651529],[-124.92623125104828,57.936093693743],[-124.92615235301243,57.93626802919231],[-124.92606923128365,57.936442330601864],[-124.92599033176484,57.93661666601917],[-124.92591562247546,57.93679215680368],[-124.9258409124886,57.93696764757883],[-124.92576201080854,57.937141982957336],[-124.92568099686724,57.93731630130254],[-124.92559998217465,57.93749061963038],[-124.92552107827974,57.937664954962315],[-124.92544425315782,57.93784042865521],[-124.92537587359338,57.93801597043046],[-124.92531379606766,57.93819268463037],[-124.92525382954678,57.938369415859675],[-124.92519175086373,57.93854613006845],[-124.9251317832053,57.93872286130869],[-124.92507181498308,57.93889959255486],[-124.92501395782504,57.93907634083617],[-124.92495398848503,57.93925307209509],[-124.92496325893897,57.93937203788522],[-124.9250050282613,57.93961015683389],[-124.92505486476345,57.939787773722486],[-124.9250983346363,57.93996646089754],[-124.92509742740515,57.940145911868],[-124.9250479511058,57.940324971219816],[-124.92507033655173,57.94050236685972],[-124.9252370244264,57.94065625051687],[-124.92546124315514,57.94079265189583],[-124.92570056612821,57.940917958478316],[-124.92595272133855,57.94103775994956],[-124.92620705396976,57.94115533525477],[-124.92646132413877,57.941275152804394],[-124.9267134841696,57.941394952881815],[-124.9269721411633,57.94150919670302],[-124.9272350552773,57.94162235266639],[-124.9274915396497,57.94173882122947],[-124.92772866766067,57.94186747138132],[-124.92794227971993,57.942006026546835],[-124.92813451951615,57.94215338246441],[-124.92832247325424,57.94230294689226],[-124.92853180240787,57.94244370994151],[-124.9287625390292,57.942574550148095],[-124.92900185239984,57.94270097239915],[-124.9292432792209,57.94282741119995],[-124.92947830824635,57.94295604142505],[-124.9296983323718,57.94309240209092],[-124.92989909591604,57.94323758073203],[-124.9300764069722,57.94339042218034],[-124.93023880863741,57.94354763023648],[-124.93038844458343,57.94370810054001],[-124.93052102707043,57.943874041974524],[-124.93061329301814,57.94404638961026],[-124.9306885687468,57.944221965784685],[-124.93074691784054,57.94439852780396],[-124.93076715686725,57.944578149035074],[-124.93077050048866,57.94475763479272],[-124.93078865976207,57.944936117787606],[-124.9308237149673,57.945114736313535],[-124.93086510644564,57.94529340567406],[-124.9309086103075,57.94547209199166],[-124.9309542584794,57.94564967390023],[-124.93099776317744,57.945828360255845],[-124.93103918816304,57.94600590833289],[-124.93107424555657,57.94618452699463],[-124.93110507920292,57.94636311181514],[-124.93112532099914,57.94654273336446],[-124.9311075459019,57.946722050158264],[-124.93106023354335,57.94690000855085],[-124.93101503281713,57.94707798389444],[-124.93100359321178,57.9472573515788],[-124.93101749870307,57.94743692251039],[-124.93103140432724,57.947616493474555],[-124.93101362827413,57.94779581045934],[-124.93096420198859,57.947973752085254],[-124.93089371762935,57.9481492816317],[-124.93081270376305,57.94832360511906],[-124.93072957698521,57.94849791165042],[-124.93065067377584,57.948672252042485],[-124.93056965765494,57.94884657547861],[-124.93048441640394,57.94902086501201],[-124.93040551095943,57.949195205355345],[-124.93034135832676,57.94937078566853],[-124.93028981456813,57.94954871039563],[-124.93022985332753,57.94972544598085],[-124.93016144256838,57.94990211378067],[-124.93011415365166,57.9500789510669],[-124.93009637205733,57.950258268396155],[-124.93009545651708,57.950438842719215],[-124.9301030220097,57.95061836350308],[-124.93011692444153,57.95079793516679],[-124.9301308589316,57.9509763854932],[-124.93014264931979,57.951155940273736],[-124.93015655213983,57.951335512035406],[-124.93017045509275,57.95151508382972],[-124.93018647051794,57.95169467260429],[-124.9302024860962,57.95187426141111],[-124.93022061418714,57.9520538671971],[-124.93023666200493,57.95223233469672],[-124.93025267805217,57.9524119235997],[-124.9302686942525,57.95259151253482],[-124.9302847106059,57.9527711015023],[-124.93029861470231,57.95295067355616],[-124.93031463135176,57.95313026258825],[-124.9303517724571,57.953310021104],[-124.93043689359843,57.95351147544128],[-124.93007291507763,57.95353098809931],[-124.92975794656304,57.95368436700792],[-124.92959977664354,57.95382217950322],[-124.92942857932798,57.95397222517965],[-124.9293252035254,57.954114963823706],[-124.92915134802041,57.954284055580274],[-124.92898558933896,57.954465550118236],[-124.92886338977092,57.954601407534476],[-124.92858195172043,57.9547640263248],[-124.9284294709108,57.95492431599199],[-124.92827068319737,57.9550834332039],[-124.92811400667715,57.95524256723402],[-124.92795732882992,57.95540170110687],[-124.92780903588124,57.955563145513516],[-124.92766704734983,57.95572576212048],[-124.92753133129713,57.95589067232383],[-124.92739145290952,57.95605330568349],[-124.92724523553436,57.95621588794201],[-124.92709485573243,57.956376193324076],[-124.92694236203728,57.95653648156478],[-124.92678356121411,57.95669559727792],[-124.92662059786052,57.9568524360686],[-124.92644502140863,57.957006929893126],[-124.92626112111762,57.9571568699675],[-124.92607299405286,57.957306775786705],[-124.9258869781484,57.95745669838003],[-124.9257177338667,57.95761124239324],[-124.92557780915739,57.95777499552442],[-124.92540017556432,57.95792722834981],[-124.92517446179131,57.958061127315744],[-124.9249821646275,57.95820875493124],[-124.92490324644669,57.958381972337314],[-124.92489174213571,57.95856246302114],[-124.92484227269554,57.95874040440603],[-124.92466264719805,57.958888133860704],[-124.92440152194726,57.95900380000266],[-124.92413421738287,57.959113807626466],[-124.92386899189383,57.9592249531535],[-124.92359755504746,57.959331561497194],[-124.9233157456184,57.959431355748706],[-124.92302983771722,57.95952662977993],[-124.92275212226942,57.95963094249711],[-124.92253269503435,57.95976600980898],[-124.92244956885374,57.959938070532814],[-124.92244439070795,57.96011861251419],[-124.92245403441243,57.96029815264308],[-124.92245945254967,57.96047765866534],[-124.92243737165828,57.96065806418777],[-124.92231013056634,57.96082079546266],[-124.92211777585094,57.96096954076055],[-124.9219233711049,57.96111602596594],[-124.92173940047223,57.96126708183929],[-124.92163308999609,57.96143671166898],[-124.92162160122851,57.96161608127538],[-124.92165662841445,57.961794705365456],[-124.9217001075873,57.961973397809096],[-124.92174150643548,57.96215095180997],[-124.92179558327582,57.96232860831615],[-124.9218517735711,57.96250628191365],[-124.92182741470002,57.96269227755308],[-124.9215782265353,57.96261174805779],[-124.92129815023966,57.962502927242845],[-124.92100052792011,57.9624163967325],[-124.92068526251725,57.96235552054627],[-124.92034972490737,57.9623382235466],[-124.920009413711,57.962339954961095],[-124.91967605397764,57.96232043061429],[-124.9193432107024,57.962282963343384],[-124.9190075130236,57.9622712698722],[-124.9186728633425,57.962296598244095],[-124.91834208391761,57.9623342952335],[-124.91801533591735,57.962378753968295],[-124.91769057085503,57.96242771457231],[-124.91736378895513,57.96247329309604],[-124.9170349579725,57.96251661090441],[-124.9167081421682,57.96256330920664],[-124.9163915021416,57.962623549106915],[-124.91607677992165,57.96269053371294],[-124.915746091518,57.96272486013913],[-124.91541292483339,57.9626985968481],[-124.91507348453482,57.962670038404035],[-124.91485888568565,57.962782700295435],[-124.91481983082247,57.96296408885237],[-124.91479310450863,57.96323082270625],[-124.91466882362741,57.96350910095258],[-124.9145940079756,57.963684590381504],[-124.91451707860854,57.963860062605306],[-124.91445702032767,57.964036793775676],[-124.91443493132202,57.96421607727273],[-124.91441706819829,57.96439539519555],[-124.91434228201366,57.96456976326648],[-124.91422955718397,57.964740457575815],[-124.91414423647929,57.96491361821393],[-124.91408199684207,57.96509257497713],[-124.91403662895766,57.965272790758476],[-124.91403362000601,57.96544998648968],[-124.91410047350278,57.96562326442558],[-124.91422873789438,57.96579255565669],[-124.9143485509042,57.96596177800052],[-124.9143878386652,57.966138196452945],[-124.91431929110675,57.966315980581385],[-124.91421501358836,57.966486743992164],[-124.91409600774251,57.96665514416481],[-124.91398119477428,57.96682470005541],[-124.91388533465248,57.96699665350385],[-124.91380420121456,57.96717097013733],[-124.91372729344764,57.967345321171145],[-124.91365457897908,57.96752082799807],[-124.91358186383104,57.967696334818065],[-124.91351126124506,57.96787185884339],[-124.9134406255612,57.9680485042502],[-124.91337002165338,57.96822402826649],[-124.9132973038147,57.968399535062936],[-124.91322247201558,57.96857502463588],[-124.91314555867406,57.96874937559497],[-124.91306653131812,57.96892370932313],[-124.91298327660816,57.9690980085961],[-124.9128957944856,57.969272273405956],[-124.91279992314924,57.969444226522654],[-124.91269774337903,57.96961500653945],[-124.91258080170378,57.96978454453448],[-124.91244916287397,57.96995059769174],[-124.9122986649452,57.97011088872706],[-124.91212511347359,57.970264261717],[-124.91193686435193,57.97041414968229],[-124.91174653282664,57.97056289877716],[-124.91156247500203,57.97071394213073],[-124.91137633479049,57.97086384661999],[-124.91119016058535,57.9710148722626],[-124.9110060983088,57.971165914921386],[-124.91083042325063,57.97131926914784],[-124.91067152420518,57.97147724678383],[-124.91052306096917,57.971639796113536],[-124.91038285509707,57.97180914269229],[-124.91025945811964,57.971981991434376],[-124.91016564873952,57.97215508180844],[-124.91011635196287,57.972324049177175],[-124.91021308147104,57.97248747953287],[-124.91040927687207,57.972647235598025],[-124.91056099248355,57.97280999314729],[-124.9106957361437,57.972974855282715],[-124.91079224219779,57.973146135072994],[-124.9108674835874,57.97332172785398],[-124.91099163013146,57.97348762490222],[-124.91116468238187,57.97364382607609],[-124.91135061254879,57.973793402175126],[-124.91153869027877,57.97394187388953],[-124.9117225423146,57.97409031088152],[-124.91196635627558,57.97421231684544],[-124.9119062369494,57.97439017020995],[-124.91195394403657,57.97456778130762],[-124.91206532028184,57.974736938337365],[-124.91221285671888,57.97489853850727],[-124.91238598550032,57.97505249554391],[-124.91257615481159,57.975202104619925],[-124.91277916993089,57.97534620981818],[-124.91302728772821,57.97546600566473],[-124.91329690080079,57.9755736378761],[-124.91351276500446,57.97571223833157],[-124.91376514737392,57.9758309458816],[-124.91402393728254,57.97594746179018],[-124.9142655598113,57.97607281077819],[-124.9144964533325,57.97620368034401],[-124.91472087767994,57.97633898353537],[-124.91494318991822,57.976474269179306],[-124.91516550375809,57.976609554472354],[-124.91538355932872,57.97674592644657],[-124.91559088582792,57.976887819175055],[-124.91577463879575,57.977040736640106],[-124.91596057176864,57.97719142825517],[-124.91618725052443,57.97732226070483],[-124.91646329203263,57.97742769544451],[-124.91676102285871,57.9775142374631],[-124.91708245947993,57.97758526796066],[-124.91740765983702,57.97759912351261],[-124.9177348964778,57.97754233016087],[-124.91804368962701,57.9774651965742],[-124.9183380403531,57.97737560694652],[-124.91860965483386,57.97726788585946],[-124.91885472503651,57.97712742102479],[-124.91909537223013,57.97699364990298],[-124.9193571069308,57.97693520036069],[-124.91965393723089,57.977053135032214],[-124.91986550909756,57.97719505539495],[-124.92001728406,57.97735780298047],[-124.92006513002107,57.97753204754261],[-124.92004507690056,57.97771471585402],[-124.92002716964356,57.9778962799075],[-124.92002835108242,57.97807575517628],[-124.92013983859289,57.978242663299135],[-124.92028953738313,57.97840427224989],[-124.92045409886231,57.97856375797611],[-124.92063150603444,57.97871773912035],[-124.92083662047733,57.97886409250078],[-124.92102046891681,57.97901476026249],[-124.92113625582293,57.979179459104294],[-124.92118602988818,57.97936044910457],[-124.92117450128481,57.979540943501526],[-124.92111659538755,57.97971657631408],[-124.92102281672972,57.97988967575004],[-124.92091635362198,57.980062672583344],[-124.92079944874608,57.980231098270146],[-124.92065301199214,57.980397041695355],[-124.92051294805837,57.98056191489067],[-124.92042771710238,57.980731718260856],[-124.92040993922119,57.98090879733872],[-124.92042592050299,57.98108839290221],[-124.92046089568458,57.98126926382279],[-124.92048952917668,57.981450083464274],[-124.92050339705057,57.9816296620208],[-124.92051303699904,57.98180920640787],[-124.92052267703973,57.98198875082866],[-124.92053020312332,57.98216827818229],[-124.92053984333823,57.98234782267091],[-124.92054948364535,57.982527367193384],[-124.92055912404462,57.982706911749666],[-124.92057087862582,57.98288647344021],[-124.9205826333194,57.98306603516434],[-124.920607072785,57.98324569952176],[-124.9206569786331,57.98342220488192],[-124.92073228674259,57.98359779402739],[-124.92083306192622,57.98377022410136],[-124.92094873376355,57.983939409572145],[-124.9210347117456,57.98411171989476],[-124.92105069737882,57.98429131599952],[-124.92105608004445,57.984471948081],[-124.921074212347,57.98465043993712],[-124.92109019839847,57.98483003614079],[-124.92109346712182,57.98501065123279],[-124.92111794252102,57.9851891944626],[-124.92117627804986,57.98536688977195],[-124.92127497800026,57.985538181339194],[-124.92141833580166,57.985700860426924],[-124.92160222005056,57.9858515284902],[-124.9217903665108,57.98600110907724],[-124.92196358575443,57.9861550555144],[-124.92209842736952,57.98631990848548],[-124.92223115587561,57.98648474427527],[-124.92237448924645,57.98664854391173],[-124.92248806258468,57.98681771149848],[-124.92261019077412,57.98698358305923],[-124.92281756893837,57.987126587524926],[-124.92301213398129,57.987273974965895],[-124.92323454083868,57.98740924837875],[-124.92347197485917,57.98753679093994],[-124.92372225739359,57.98765882833963],[-124.92404879407819,57.9877029630356],[-124.9243845600694,57.98772025119812],[-124.92472039060627,57.98773529569133],[-124.92505833577786,57.987750356369425],[-124.92539628122057,57.98776541619191],[-124.92573204839064,57.98778270096588],[-124.92606989816075,57.98780112332177],[-124.92640563389226,57.987819527814956],[-124.92674124172106,57.987842417116134],[-124.92707230073215,57.9878764857112],[-124.92739201953952,57.987937382444734],[-124.92772304794968,57.987972570842494],[-124.92805631943703,57.98800328974839],[-124.92838494658616,57.988048552248],[-124.92871620090123,57.98807588829053],[-124.92905113755653,57.988048291195554],[-124.92938421517005,57.98801170498859],[-124.92971517775406,57.98797510099611],[-124.93004992102055,57.9879542298815],[-124.93038693803898,57.98792776780248],[-124.93071572065081,57.987893387215415],[-124.93101805151788,57.987970960957455],[-124.93131580372722,57.98806083571942],[-124.93161371692548,57.98814510275269],[-124.93192034427257,57.98822046549363],[-124.93222915103904,57.988293601622246],[-124.93253795900858,57.988366737042156],[-124.93284459002082,57.988442097677684],[-124.93314680223577,57.98852415230513],[-124.93344257694352,57.98860951981252],[-124.93374043556935,57.988696024980065],[-124.9340382955677,57.98878252949098],[-124.9343449329871,57.98885788671351],[-124.93467619878088,57.98888520798843],[-124.93501188479897,57.98890583368753],[-124.9353498128294,57.98892198974348],[-124.93568774115067,57.98893814494421],[-124.93602563798112,57.988955420706304],[-124.9363612935966,57.988977164430004],[-124.9366967907929,57.98900451439444],[-124.9370386953103,57.98902967120167],[-124.93738265124821,57.98905708680224],[-124.93772222014033,57.989090074945786],[-124.93805096361531,57.98913194944746],[-124.93836029721301,57.98918712878366],[-124.93861995299417,57.98927892746077],[-124.9387844815007,57.98944399952396],[-124.93897678489526,57.98959919717034],[-124.93921857857768,57.98972450279807],[-124.93946895855348,57.98984538953559],[-124.93972574697655,57.98996408337318],[-124.93998468319121,57.990081672106136],[-124.94024147486081,57.990200364981746],[-124.94048974678634,57.99032123307731],[-124.94072728947705,57.99044762391858],[-124.94093276779013,57.99058609830512],[-124.94106341625982,57.990753142178114],[-124.94119829499489,57.99092021950084],[-124.94136524120664,57.99107521266383],[-124.94153641793487,57.99123023918075],[-124.94170971065456,57.991385282269796],[-124.94188515100099,57.99153922050148],[-124.9420606243898,57.991692037106695],[-124.94223606760859,57.991845974927955],[-124.94241151226618,57.991999912544074],[-124.94258698995084,57.992152728533064],[-124.94276881295443,57.992305594563526],[-124.94294855437772,57.99245732220281],[-124.94310910756202,57.99261450604756],[-124.94325249228638,57.992780527179974],[-124.94336617825087,57.99294967810761],[-124.94335891833782,57.993132453368524],[-124.94332369423165,57.99325668027769],[-124.9453945837082,57.994154693116975],[-124.94564501311899,57.99427556884476],[-124.9459019143551,57.99439200851461],[-124.94616307817982,57.99450735966952],[-124.94640274974638,57.994634879100374],[-124.94659059844497,57.99480012609489],[-124.94680962896882,57.99490953512756],[-124.94714120154741,57.99485270198159],[-124.94747258445447,57.99480259657389],[-124.94779954832777,57.994759185566394],[-124.94812657429486,57.99471353090716],[-124.94844756932291,57.99465661120725],[-124.94875839784572,57.9945850289249],[-124.94906303789547,57.99450778884423],[-124.94936565610205,57.994427167151194],[-124.9496662523967,57.994343163860194],[-124.94996883661113,57.99426366224041],[-124.95026734686837,57.994178519549486],[-124.95058419865713,57.99411819720568],[-124.9509151630497,57.99408266183361],[-124.95123816919144,57.994029116361276],[-124.95155514344691,57.99396430601748],[-124.95185974139217,57.99388818103273],[-124.95216234859758,57.99380755305362],[-124.9524587981282,57.993720146051665],[-124.95275114200348,57.99362821951293],[-124.95303306731415,57.993530602280515],[-124.95327770834038,57.993404650330135],[-124.95335240237486,57.993229133653344],[-124.95352567271122,57.99308355326738],[-124.95376825700978,57.992955341048635],[-124.9540274757431,57.99283735380308],[-124.95429493280783,57.9927272823136],[-124.95457069076214,57.99262288367681],[-124.95484849938553,57.99252074389048],[-124.95512425428336,57.99241634413339],[-124.95538756947968,57.992302873122384],[-124.95561754820163,57.99217119408043],[-124.95592265358923,57.99207599574631],[-124.95630316656674,57.9920071847678],[-124.95661010297385,57.991922094238944],[-124.95669858338643,57.99178257727336],[-124.95669256068489,57.99161876660601],[-124.95667182941828,57.99145147599332],[-124.956636420957,57.99127958400602],[-124.9565883877457,57.991105350013264],[-124.95652984452785,57.990928790533786],[-124.95646290601117,57.99074992208698],[-124.95638968686632,57.99056876119481],[-124.95631223937187,57.990387567228844],[-124.95623059476843,57.99020521875912],[-124.95615106546555,57.990022886812135],[-124.95607153693511,57.989840554853394],[-124.95599409247826,57.98965936084467],[-124.95592296101128,57.98947933787014],[-124.95586022571395,57.989301623902215],[-124.95586916421605,57.98913232231644],[-124.9560153234485,57.988971945821234],[-124.95617416806796,57.98881166841351],[-124.95633929227299,57.9886536832885],[-124.9565044150884,57.98849569798607],[-124.9566611723572,57.988334282128655],[-124.95681170970782,57.988168330853526],[-124.95697266192221,57.98800806916034],[-124.95716069483088,57.9878626005392],[-124.9573945886138,57.98774104488696],[-124.95767639537885,57.987645661306104],[-124.95798528289068,57.987565070206706],[-124.95829625232678,57.98748561632258],[-124.95858856447283,57.98739255619623],[-124.95885811483373,57.987281371286294],[-124.95913170575459,57.98717694734446],[-124.9594381611349,57.987107550632196],[-124.95976936605766,57.98706077937785],[-124.96008897126084,57.986974658758854],[-124.96038755865898,57.98696016003231],[-124.96066637509266,57.98704869956539],[-124.96094025032053,57.98716299827045],[-124.96120324515842,57.987288428349196],[-124.96144721248753,57.98741370985092],[-124.96165896965752,57.9875566869185],[-124.96187075944886,57.98769854225081],[-124.96211700106313,57.98781823192289],[-124.96240406856126,57.98791468362757],[-124.96271703702023,57.98799226775195],[-124.9630412911762,57.98804414058402],[-124.96337076588482,57.98806015997167],[-124.96371363922087,57.988050484341656],[-124.964056605211,57.988037443564615],[-124.9643904637626,57.98804788614758],[-124.96471705158123,57.98809192136213],[-124.96503667866229,57.98815833504132],[-124.96534558029653,57.98823027311721],[-124.96564354028368,57.98831558562548],[-124.96593932542912,57.988403123940465],[-124.96623511195384,57.98849066160821],[-124.9665374283695,57.98857151920604],[-124.9668529264667,57.988634531554986],[-124.96717495404197,57.988690863707504],[-124.96749698258353,57.98874719508661],[-124.96781465987563,57.9888079786836],[-124.96812136526017,57.98888325830549],[-124.96842365808527,57.98896523308934],[-124.96871513349785,57.98905609690219],[-124.96898500372379,57.98916361812208],[-124.96925695917705,57.98927227656296],[-124.96947513078935,57.989414169077286],[-124.96967819487148,57.98956716125158],[-124.96992039848944,57.989681196994276],[-124.97022555442449,57.9897362698731],[-124.97056328978566,57.98976018677059],[-124.97091414294307,57.98976850067196],[-124.97125874494492,57.989773400480814],[-124.97159366541189,57.989745696586134],[-124.97193014710514,57.98973819380684],[-124.97226699706106,57.989717233066514],[-124.9726017628343,57.989695133774205],[-124.97294020497075,57.98969325185591],[-124.97327849372567,57.98969697621078],[-124.97361684386654,57.989698456855606],[-124.97395335538131,57.98968982755011],[-124.97429005057715,57.98967446883759],[-124.9746268680144,57.98965462356987],[-124.9749616624593,57.98963139693407],[-124.97530270814049,57.98961158243974],[-124.9756477682544,57.98959964951759],[-124.97591177760815,57.98969028670864],[-124.97604040289315,57.98985952279679],[-124.97613507473532,57.99003298497941],[-124.97622551839913,57.99020641468925],[-124.9763308258111,57.99037771503647],[-124.97646806639837,57.990541408566465],[-124.9766266065825,57.99069965697074],[-124.97677871271482,57.99086122086847],[-124.97692873614501,57.99102164698453],[-124.97707873030012,57.99118319438849],[-124.97722664170789,57.99134360401968],[-124.97737449328231,57.991506256373476],[-124.97751385715523,57.99166996522751],[-124.97766174179965,57.991831495890246],[-124.97783310237101,57.991985354537526],[-124.97801295342187,57.99213815632294],[-124.97819921092061,57.99228876359345],[-124.97839405060273,57.9924349496442],[-124.97864239908134,57.99255798991205],[-124.9789014445394,57.99267662489288],[-124.97917348463628,57.992784142107254],[-124.97947828303556,57.992853772624365],[-124.9798115486847,57.9928877267504],[-124.98014910523294,57.99291946949601],[-124.98046686876863,57.99297910182026],[-124.98076695459534,57.993066640017275],[-124.98107163648552,57.99314075264596],[-124.98140294357565,57.99316907950609],[-124.9817457068169,57.993164964663606],[-124.98208046734224,57.99314396294964],[-124.98241347759281,57.993109487086144],[-124.98274851075453,57.993078390806446],[-124.98308308767052,57.99306411517497],[-124.9834215292805,57.993063328106906],[-124.98376196413055,57.99306704201127],[-124.98410644633758,57.99307751583258],[-124.98443304939028,57.99304522951647],[-124.9846895723607,57.99294510956433],[-124.98466127569442,57.99313109048758],[-124.98470723608679,57.9933086629592],[-124.98477648910806,57.99348529093664],[-124.98487124078603,57.993657626164044],[-124.98499360617363,57.993825684664756],[-124.9851351266258,57.99398940204928],[-124.98530009247733,57.99414656753656],[-124.98548430472293,57.99429602745674],[-124.98568341272983,57.9944422353275],[-124.98588469765907,57.99458621612034],[-124.98608380876455,57.99473242343959],[-124.98629364681614,57.994873103605656],[-124.98652919712029,57.99500164034272],[-124.98678408501874,57.99511910679056],[-124.98704752455879,57.995233272649],[-124.98732582995676,57.99534530743218],[-124.98762114637121,57.995454105648605],[-124.98789314085558,57.99556496972355],[-124.98809936529216,57.99568318637223],[-124.98796600611263,57.99584369533927],[-124.98783657311132,57.99601545064306],[-124.9877367773264,57.9961863089328],[-124.98763695038704,57.9963582886169],[-124.98752660859354,57.99652794518304],[-124.98740363692694,57.99669526256165],[-124.98728486371968,57.99686373338305],[-124.98717234341238,57.9970356165814],[-124.98707033617549,57.99720982283041],[-124.98707199009836,57.997383693951015],[-124.98716041731971,57.997555980134536],[-124.98726781943195,57.99773065356853],[-124.98732017293909,57.997907152712514],[-124.9873089263999,57.99808877777722],[-124.98735070567312,57.99826519675934],[-124.98743699100166,57.99843858832052],[-124.98753176739812,57.998610922578195],[-124.98763291995688,57.99878218347537],[-124.98773618846299,57.99895346036439],[-124.98783731263528,57.99912584261096],[-124.98793209260506,57.99929817671195],[-124.98801623770308,57.99947267349948],[-124.98808977803073,57.999648211552945],[-124.98815485875222,57.99982368547884],[-124.98822202493416,58.000000296877396],[-124.98824465386224,58.000181057449325],[-124.98840687986753,58.00036287585186],[-124.98846776330741,58.00053719626526],[-124.9884989146863,58.00071577811326],[-124.98853218149564,58.000894376012496],[-124.98857179405381,58.00107302200863],[-124.98861140698904,58.001251668027486],[-124.9886552808495,58.00142922466964],[-124.9886991249066,58.001607902775525],[-124.98874722996707,58.001785491498815],[-124.98879533548278,58.00196308023861],[-124.98884978706677,58.0021407170529],[-124.9889021239518,58.002318337860586],[-124.98894811565894,58.00249591062901],[-124.98899199256681,58.002673467398964],[-124.98904221562327,58.00285107223691],[-124.9891136521148,58.00302659434988],[-124.98920409644876,58.00320338202763],[-124.9894313385092,58.003328486404236],[-124.98975585262879,58.003376930850365],[-124.99005425452363,58.00329506270804],[-124.99032585060337,58.00318719269509],[-124.99059539019,58.00307706325793],[-124.99086695298207,58.00297031361589],[-124.99113642913001,58.00286242600477],[-124.99138514313755,58.00273979927395],[-124.99165250090759,58.00263189466916],[-124.99195720830609,58.002551191710204],[-124.99224532384473,58.002458024434986],[-124.99251899268279,58.00235128746982],[-124.99279054475241,58.002244533999274],[-124.99307862578029,58.002152486402586],[-124.99338538126489,58.002074039069804],[-124.99369618544664,58.00200235159834],[-124.99401100841017,58.00193854540411],[-124.99433390041548,58.00188938099616],[-124.99467200080103,58.00190426563803],[-124.99500804632075,58.00191689061059],[-124.99534620726176,58.00192953065377],[-124.99568442845066,58.00193992694853],[-124.99602267982688,58.001949200940324],[-124.99635890614272,58.0019550938364],[-124.99669936295926,58.00196101767541],[-124.99703570936602,58.00196242308165],[-124.99737456047049,58.00194926471988],[-124.99770948043964,58.00192485927503],[-124.99804615589443,58.00191392622368],[-124.99838437769029,58.001924315679055],[-124.99872009552487,58.00194926722368],[-124.99904901956452,58.0019909920562],[-124.99937118012762,58.00204836878215],[-124.99968026185336,58.00212022846342],[-124.99999971165329,58.00220001677978],[-125.0004937647886,58.00239664368113],[-125.00069508946721,58.00254284626967],[-125.00086656350261,58.00269779856325],[-125.00101247684854,58.00285928943741],[-125.00115198597749,58.00302297560483],[-125.00130853784412,58.00318230243554],[-125.00147146671037,58.00334055511887],[-125.0016322816643,58.00349879181376],[-125.00179309797427,58.00365702834198],[-125.00194968503169,58.00381523308021],[-125.00209346224891,58.00397782860622],[-125.00222231418691,58.00414479915619],[-125.00233418498539,58.00431388606937],[-125.00240991710902,58.00448943295395],[-125.0024538600352,58.004666985679094],[-125.00248293622099,58.00484667070418],[-125.00251627323915,58.00502526591194],[-125.00256867882695,58.00520288191259],[-125.00267837933998,58.00537419583228],[-125.00290985066259,58.005501552065965],[-125.00318410831942,58.00561128052951],[-125.00346712703461,58.005709857069476],[-125.00371570509525,58.005830609537114],[-125.00394706368765,58.005962449846805],[-125.00418488924413,58.00608985129121],[-125.00441839627642,58.00622058514433],[-125.0046283672867,58.00636123822879],[-125.00486831313947,58.00648865428023],[-125.0051384122738,58.00659610440829],[-125.00546402040538,58.006684898952265],[-125.00574227577141,58.006644347452],[-125.00597466727426,58.00649801650111],[-125.00618581337507,58.006354892085845],[-125.00634657330924,58.00619681066123],[-125.00648841176726,58.006034101598914],[-125.00669949393058,58.00589321934999],[-125.00692112190964,58.00575353690719],[-125.00725788835975,58.00574033767701],[-125.00753463180419,58.00583661551981],[-125.007805534458,58.00591378093013],[-125.00814924112323,58.00587819753394],[-125.00848633419707,58.00585265921374],[-125.00882351567375,58.00582375568187],[-125.00914627364013,58.00578016251707],[-125.00942203403982,58.00567340622554],[-125.00967279273003,58.00555188220952],[-125.00986708499171,58.00540526224386],[-125.00999630162131,58.005239091116806],[-125.01002266232784,58.00504187219359],[-125.01011141880338,58.00488549609791],[-125.0104087532438,58.004842833187595],[-125.010781264574,58.00483774177105],[-125.01110827206456,58.004793053801016],[-125.01143342929085,58.00473825629366],[-125.01174621827894,58.0046710280761],[-125.01204464152552,58.004586867774165],[-125.01232658337685,58.00448575984163],[-125.01259600870402,58.004377828750094],[-125.01285089063092,58.00425969458046],[-125.01309328543049,58.00413361596031],[-125.01333359276592,58.00400639983345],[-125.01356761148845,58.00387689350388],[-125.01382457279168,58.003759894619456],[-125.01411490591629,58.003661088399845],[-125.01443537658342,58.00362307419554],[-125.01477799611264,58.00362784610957],[-125.01508865455966,58.00356059453476],[-125.015378923969,58.003464028492616],[-125.01566293427298,58.00336405068941],[-125.01593862897711,58.00325840267186],[-125.01618929163428,58.00313910964037],[-125.01638348716303,58.002994723479944],[-125.01654427791382,58.00283326599841],[-125.01669237580514,58.002671714883384],[-125.01682366804135,58.002505553219024],[-125.01697384929038,58.0023451388762],[-125.01717018228086,58.00219964581776],[-125.01739586245729,58.00206446349403],[-125.01763611260678,58.00193836135941],[-125.01787847633993,58.00181227436903],[-125.01808108992488,58.00166906963406],[-125.01825858379584,58.001515584920995],[-125.01845702264028,58.0013701056539],[-125.0186701194898,58.00123034219468],[-125.01889367327772,58.00109514193389],[-125.01911719614596,58.0009610627687],[-125.0193302882149,58.000821298317526],[-125.01953709188453,58.00067924404862],[-125.01974389398879,58.00053718948119],[-125.01996741049717,58.000403108973316],[-125.02023270069525,58.000289524649276],[-125.0205413529585,58.000216637861534],[-125.02085003327976,58.000142628916414],[-125.02115868313629,58.000069740713066],[-125.02138052508614,57.99999958052285],[-125.02200490611115,57.99990657107941],[-125.02233188648638,57.99986073441293],[-125.02266929548986,57.99982058161295],[-125.02295287638539,57.99989780869126],[-125.02323158617453,57.999999676122115],[-125.02385339693282,58.0001679868182],[-125.02434041266514,58.000232116573656],[-125.02466526560158,58.00026814005642],[-125.02498947823167,58.000328834664586],[-125.02530108855636,58.0003860714874],[-125.02563452069494,58.00041766858098],[-125.02596801160301,58.000447021940765],[-125.02629924243553,58.00048196629855],[-125.02662806791226,58.00052810892776],[-125.02692200536166,58.00061437634859],[-125.02717271119293,58.00073622134805],[-125.02732513366522,58.000895486448044],[-125.02742009939593,58.001067792818915],[-125.02748748161358,58.001243263222094],[-125.02755057598644,58.00142094571754],[-125.02754595581843,58.00159925669017],[-125.0276069649226,58.001775802368044],[-125.02767220502068,58.00195237886004],[-125.02778418393025,58.00212144404038],[-125.02793444130073,58.00228293618761],[-125.0280018571494,58.00245728510739],[-125.02803528442962,58.0026369949261],[-125.02806028003783,58.002815521725054],[-125.02808101630322,58.00299513921297],[-125.02809963748798,58.00317474133514],[-125.0281161726039,58.00335320663725],[-125.0281326788353,58.00353279342714],[-125.02815764646226,58.003712441835994],[-125.02818687400772,58.00389099961136],[-125.02822667847904,58.004069634392394],[-125.02827920440511,58.00424724010794],[-125.02834659634783,58.0044227106797],[-125.02841821963958,58.004598212035376],[-125.02849195897053,58.004773728777224],[-125.02856784340035,58.004948139444615],[-125.02864581489688,58.00512368694785],[-125.02872593154733,58.00529812836886],[-125.02880604894254,58.005472569774696],[-125.02889042694079,58.00564592047728],[-125.02897477670018,58.005820392617174],[-125.02906127169818,58.00599375866052],[-125.02914988294349,58.00616714006112],[-125.02924061046552,58.0063405368148],[-125.02933348330194,58.00651282745827],[-125.02942847246858,58.006685133445544],[-125.0295255779947,58.0068574547722],[-125.02962479990963,58.00702979143389],[-125.02972405173288,58.00720100659375],[-125.0298275354945,58.007372252451866],[-125.02993104919172,58.00754237680099],[-125.0300387659107,58.00771365329547],[-125.03014865712812,58.00788270217803],[-125.03025852035387,58.0080528724621],[-125.03037264468355,58.0082219519488],[-125.03049314573887,58.00838995598619],[-125.03061790801158,58.00855686919872],[-125.03075119170099,58.00872160082294],[-125.03089296793266,58.00888527229451],[-125.03104541033498,58.00904565601154],[-125.03120640338453,58.009202736587426],[-125.0313822940328,58.00935656002637],[-125.03157099572334,58.00950598946215],[-125.03177465312625,58.009649918714125],[-125.03199761335536,58.00978389252844],[-125.03225054151248,58.00990462307179],[-125.03252288820313,58.0100109120677],[-125.03280821954195,58.01010607781655],[-125.03310218842724,58.01019457545263],[-125.03340262130288,58.01027863253253],[-125.03370308440508,58.01036156747951],[-125.03400140427237,58.01044560791895],[-125.03429752319092,58.01053299679531],[-125.03459367234282,58.01061926355825],[-125.03489411195962,58.010703317321635],[-125.03519463943132,58.01078400602007],[-125.03549728391106,58.01086470932968],[-125.03580207423114,58.0109443057702],[-125.03610475011945,58.01102388625127],[-125.0364052539614,58.01110569371966],[-125.03670573032215,58.011188621985525],[-125.03700403470664,58.01127377725945],[-125.037298022635,58.01136226577147],[-125.03758117431298,58.01146077061043],[-125.0378492008543,58.011571504296555],[-125.03810439065089,58.01168775336072],[-125.03836166905587,58.011805138654324],[-125.03863401811573,58.01191253687386],[-125.03892369715295,58.01200435581033],[-125.03922856143157,58.012081701593445],[-125.03954209107992,58.0121512572753],[-125.03985790987278,58.01221409862792],[-125.0401780760718,58.01227248377676],[-125.04050044510423,58.01232751895727],[-125.04082287242096,58.0123803104255],[-125.04114967555559,58.01242752415603],[-125.04148088302865,58.012468038646674],[-125.0418121771365,58.01250518791059],[-125.04214132745744,58.01254344264835],[-125.04247033534827,58.01258730392292],[-125.04279499792968,58.01263561993754],[-125.04312174856757,58.01268507179452],[-125.04344635565127,58.012735629170095],[-125.04376873345609,58.01279065648939],[-125.0440889392315,58.012847910829684],[-125.04440688733679,58.01291075661709],[-125.0447205191708,58.01297693579413],[-125.04502977770608,58.01304869133293],[-125.04533457745022,58.01312938767676],[-125.04562645518263,58.013218964379135],[-125.04591178711026,58.01331634540268],[-125.04618634163202,58.013421500569926],[-125.04644800295739,58.01353441484308],[-125.04669459826522,58.01365731614067],[-125.04692401171926,58.0137901894509],[-125.04713847314014,58.01392856407494],[-125.04734009835806,58.014072455179864],[-125.04753100322402,58.01422187791631],[-125.04770701278746,58.01437455921398],[-125.0478723303067,58.01453165077478],[-125.04802489668086,58.014690894612755],[-125.048171031159,58.01485345748499],[-125.04830653023383,58.0150181877859],[-125.04843565416161,58.0151839942264],[-125.0485583744285,58.015351998299366],[-125.04867686382755,58.01551997214708],[-125.04879109386798,58.01568903725497],[-125.04889468806353,58.015860269905005],[-125.04897492178299,58.01603470119705],[-125.04904454770978,58.01621017862026],[-125.04911417428785,58.01638565604066],[-125.04920078670028,58.01655901101487],[-125.04931502226508,58.0167280758653],[-125.04944627259567,58.016893896697795],[-125.04957540801584,58.017059702373736],[-125.04970666065744,58.01722552300989],[-125.04984429113104,58.017390267230056],[-125.049990472406,58.01755170711051],[-125.0501494367691,58.01770987271858],[-125.0503275610788,58.01786368766596],[-125.05052710355139,58.01800755952837],[-125.05075870168861,58.01813932044321],[-125.0510333050901,58.01824446619663],[-125.0513448486987,58.01831173664444],[-125.0516739462817,58.0183544540426],[-125.05200978980854,58.01838151499135],[-125.0523458037968,58.018401846225544],[-125.05268184646867,58.01842105513636],[-125.0530203170374,58.01842794193975],[-125.05335737906242,58.01840677592003],[-125.05369037814869,58.018378850193336],[-125.05402721312109,58.018366654314285],[-125.0543631998002,58.01838810195226],[-125.05468784311348,58.01843975379706],[-125.05500365545514,58.01850592419934],[-125.05531077835009,58.01858100582818],[-125.05561138459272,58.01866277074875],[-125.05590979130784,58.0187478844819],[-125.05620819937697,58.018832997556245],[-125.05650011923694,58.01892367252878],[-125.05677906143131,58.01902547201458],[-125.05703430419885,58.01914392880456],[-125.05726381600553,58.0192756636635],[-125.0574804913031,58.01941291595823],[-125.05769070686073,58.019554609059334],[-125.05789025839886,58.01969959166688],[-125.05808129023669,58.01984675727145],[-125.05826586223961,58.019998363793874],[-125.0584397981947,58.020152138465214],[-125.05860733051621,58.02030811115699],[-125.05876631474818,58.02046738846484],[-125.05891680709325,58.020627727455945],[-125.05905451862424,58.02079134131045],[-125.05917518849402,58.02095932174217],[-125.0592724676033,58.02113162408804],[-125.05934215115751,58.0213070971127],[-125.05938000613875,58.02148571105666],[-125.05938820467915,58.021665237883326],[-125.05937735619797,58.021844630625694],[-125.05935169313109,58.02202391908468],[-125.05931335975507,58.02220199667021],[-125.05927079326591,58.0223800444715],[-125.05922399360338,58.02255806248434],[-125.05917930989136,58.02273609542058],[-125.0591367421599,58.02291414328251],[-125.05908359195077,58.02309211663126],[-125.05902623652129,58.023268938691935],[-125.05896464768188,58.02344573094444],[-125.0588988253728,58.02362249338305],[-125.0588372634919,58.02379816415835],[-125.05877778935735,58.02397497133728],[-125.05872251946765,58.02415292983596],[-125.05867783147576,58.02433096291339],[-125.05864160903755,58.02450905566632],[-125.05860115324637,58.02468711861474],[-125.05855434752752,58.02486513683981],[-125.05850754136438,58.0250431550828],[-125.05846920089535,58.02522123301083],[-125.05844988081172,58.02540056670488],[-125.05846230886578,58.0255801241866],[-125.05853834658853,58.02575564322958],[-125.05874228011412,58.02589616941718],[-125.05906479346002,58.02595116060072],[-125.05940333314764,58.025958031286784],[-125.05974020620805,58.02594694239043],[-125.06007724769336,58.02592912370903],[-125.06041426076453,58.0259124256671],[-125.06075310927142,58.025906956549875],[-125.06109181731122,58.02590709402069],[-125.06143066567115,58.02590162318509],[-125.06176959809237,58.02589278702138],[-125.06210635769385,58.02588617811811],[-125.06244503751773,58.02588743364796],[-125.0627834091105,58.0259010247073],[-125.06311712760066,58.0259314075727],[-125.06344638944836,58.025970731850364],[-125.06377336744383,58.02601676942666],[-125.06410023430661,58.026067292166246],[-125.06442281292638,58.02612002744517],[-125.06474319196836,58.026176111602645],[-125.06506563265246,58.02623445278907],[-125.06538598568733,58.02629165690299],[-125.06570633969935,58.0263488602524],[-125.06602886714572,58.02640383465187],[-125.06635145137112,58.026456565293465],[-125.06667835344581,58.02650596025859],[-125.0670075403783,58.026548640258845],[-125.06733901199966,58.02658460527643],[-125.06767059576664,58.02661608350627],[-125.06800646906282,58.026645347461724],[-125.06834022626255,58.026674595813596],[-125.06867392828768,58.02670608631666],[-125.06900537506041,58.02674316869842],[-125.06933245009519,58.026785828231596],[-125.06965278652744,58.026844143641426],[-125.06995783475936,58.026921420518505],[-125.07025199524399,58.02701095947599],[-125.07054612934112,58.027101619287436],[-125.07084466485962,58.02718557894322],[-125.07115843490631,58.02725281855165],[-125.07149000002153,58.02728540881864],[-125.07182899808085,58.027274304135936],[-125.07215810625823,58.027235087758626],[-125.07247919088753,58.02717786789895],[-125.07279208519485,58.02710937357835],[-125.0730988501543,58.027031862528375],[-125.0734014359821,58.02695207843383],[-125.07370404821995,58.02687117216768],[-125.07400866502915,58.026794765866825],[-125.07431949207943,58.02672401034088],[-125.07464065204387,58.02666342083916],[-125.074963678655,58.02661293866389],[-125.07529291599955,58.026568107127346],[-125.07562206963809,58.02652663926136],[-125.07595325627238,58.02648854970596],[-125.07628232562307,58.02645044469669],[-125.07661353852406,58.02641123201447],[-125.07694271692598,58.02636863940884],[-125.07726988833703,58.02632154540182],[-125.07759296362629,58.026268813901886],[-125.07790993635146,58.026205944357685],[-125.07822284019512,58.02613631589832],[-125.07852950331618,58.02606215694168],[-125.07883624785423,58.0259846328074],[-125.07913884056369,58.02590371431722],[-125.07943725386423,58.0258205229936],[-125.07973572087333,58.025735088024724],[-125.0800321249699,58.02564739483573],[-125.08032641111832,58.02555968642719],[-125.08062075086939,58.02546973439271],[-125.08091294517577,58.02538088865048],[-125.08120728211726,58.02529093534141],[-125.08150159018417,58.02520210288554],[-125.08179586940305,58.02511439128267],[-125.08209223633344,58.02502781507528],[-125.08239066355168,58.02494349574183],[-125.08269532929138,58.024863705318865],[-125.08300200058346,58.024788414706805],[-125.08331078716014,58.02471313792016],[-125.08361333256035,58.02463333090073],[-125.08390554065382,58.024543357202035],[-125.0841790821858,58.024437551395316],[-125.08442972398059,58.024315884590074],[-125.08466362382762,58.02418625087241],[-125.08489752205803,58.02405661676348],[-125.08513977514704,58.023931526208386],[-125.08540500694178,58.02381893103376],[-125.08570341709589,58.02373460441148],[-125.08603646668924,58.02370547639812],[-125.08637499102515,58.02371227872383],[-125.08671340625979,58.0237235661603],[-125.08705030574716,58.02371016544761],[-125.08737537939308,58.02366078938307],[-125.0876902517815,58.02359563937171],[-125.08800108104633,58.023522609280135],[-125.08830566879482,58.023445049171045],[-125.08860822058932,58.02336410945868],[-125.08891074383817,58.02328429056036],[-125.08921738974216,58.02320898581093],[-125.08952615084395,58.023133694788534],[-125.08983282149374,58.023057267146996],[-125.09013737447336,58.02298082439286],[-125.09044404262809,58.02290439536104],[-125.09075070953322,58.02282796563145],[-125.09105941007054,58.022754914080124],[-125.09137017147765,58.02268411920041],[-125.09168505588634,58.022617838351174],[-125.09200403624146,58.02255719299423],[-125.09232505054722,58.02249992573534],[-125.09264807175336,58.022447158050866],[-125.09297521635648,58.02239890429544],[-125.09330227879387,58.0223540142169],[-125.09363137553798,58.02231250217488],[-125.09396456887681,58.02227662549186],[-125.09428552363148,58.02222159652296],[-125.09460039900651,58.02215530883563],[-125.09491527326873,58.02208902041091],[-125.09521158601501,58.02200241538742],[-125.09550787035135,58.02191693120645],[-125.09582274100916,58.021850640660034],[-125.09615980957508,58.02182936656102],[-125.09649272608186,58.02180469850838],[-125.09682955083541,58.02179351614639],[-125.09716463692276,58.02176661774551],[-125.09749961460112,58.021744204472434],[-125.0978361148467,58.02174647747609],[-125.09815917573684,58.02169145352557],[-125.09848627970729,58.02164430780635],[-125.09882136327384,58.02161740525419],[-125.09915237526424,58.02158374436599],[-125.09947339724894,58.02152533849906],[-125.09977794505802,58.02144775240367],[-125.10008246470278,58.021371287112395],[-125.1003476335414,58.02125866258815],[-125.10062528360827,58.02115509497895],[-125.1009049946983,58.02105378403212],[-125.10118261483862,58.0209513367792],[-125.10145399200191,58.02084436028759],[-125.10171497411298,58.02072946165937],[-125.10195506019072,58.0206032053463],[-125.1021700445031,58.0204644415259],[-125.10237034747439,58.02031997037775],[-125.10257064890297,58.02017549895193],[-125.10277933335558,58.02003444857981],[-125.10301108047508,58.01990252615182],[-125.10326784558268,58.01978647469485],[-125.1035350830955,58.01967497973505],[-125.1037939344651,58.01956006298865],[-125.1040465427087,58.019440617209945],[-125.10430956978054,58.019327970863124],[-125.10460586579818,58.01924022377296],[-125.1049386467414,58.01922002070313],[-125.10526770622867,58.01926709205396],[-125.1055902574518,58.0193208490299],[-125.10592389855806,58.0193533677314],[-125.10625314748242,58.01939258622638],[-125.10655606753546,58.01947088623932],[-125.10680930080143,58.019591476776355],[-125.10703470419422,58.019725340834626],[-125.10723656353808,58.01987026386576],[-125.10743630818162,58.0200151724739],[-125.10764462615147,58.02015565138861],[-125.10785717823315,58.020296158268245],[-125.10806547267394,58.02043775806194],[-125.10826522354087,58.02058266551989],[-125.1085551398126,58.02067433424694],[-125.10888651938072,58.02071356043063],[-125.10922245181754,58.02073935610275],[-125.10955396576306,58.02077297316799],[-125.10987433993407,58.02083007025978],[-125.110185930613,58.02090056811872],[-125.11049746927704,58.02097330824335],[-125.11081131155412,58.02103821127862],[-125.11113825146181,58.021086375667345],[-125.11147429504081,58.02110767971166],[-125.11181277397124,58.02111553905451],[-125.11214903054442,58.021127869449934],[-125.1124826138043,58.02116373631617],[-125.11280296924532,58.02122194790271],[-125.11311459519743,58.021291317466115],[-125.11342402644668,58.021364036745666],[-125.11373785055909,58.0214300544277],[-125.11406260183362,58.02148156212344],[-125.11439859765954,58.02150510181051],[-125.11472956820676,58.02147252382464],[-125.11504440115637,58.02140618800768],[-125.11536335987647,58.02134436546397],[-125.11568647089989,58.02128593466825],[-125.11591847662588,58.02141085405102],[-125.11603726029662,58.02157989066681],[-125.1161943773438,58.02173908579108],[-125.11642839826588,58.021868504334996],[-125.11668387505087,58.021985725976165],[-125.11694578177905,58.02209962462586],[-125.11719906618644,58.02222019581013],[-125.11744166470258,58.02234518260505],[-125.11767783649061,58.02247349153106],[-125.1179075815473,58.02260512262378],[-125.11812232873059,58.02274450602053],[-125.1183221307273,58.022889398802334],[-125.11851981783317,58.02303427734273],[-125.11872816772436,58.023175860930344],[-125.11895149239292,58.02331081293625],[-125.1191791042543,58.02344354950192],[-125.1194109769853,58.02357519210268],[-125.11965356531314,58.023701296563665],[-125.11990477907295,58.023820727381704],[-125.12017102028177,58.023931283325005],[-125.12044800330546,58.02403517942971],[-125.1207336378778,58.0241312801969],[-125.1210235857606,58.02422404371599],[-125.12131570412899,58.024314577536686],[-125.12160779764423,58.024406232227484],[-125.12189560704108,58.02450010146543],[-125.12218947874348,58.024606348317946],[-125.12246861511049,58.02470913271639],[-125.12274777923666,58.02481079504242],[-125.12303125662311,58.024909120081574],[-125.12332121620022,58.02500187869265],[-125.1236111772114,58.02509463668368],[-125.12390547755268,58.02518293580946],[-125.12420625989829,58.02526566841379],[-125.1245157454319,58.02533836231507],[-125.12483837643501,58.025392073166536],[-125.12517211437462,58.0254234225042],[-125.12550836165614,58.0254379623339],[-125.12584727465371,58.025428963623916],[-125.12618030806398,58.025399735485195],[-125.12651736515627,58.02537950621136],[-125.12685583356418,58.02538957047928],[-125.12718957316748,58.02542091477727],[-125.12751670273308,58.0254634317982],[-125.12784150784182,58.02551490622271],[-125.12816409298908,58.025570852058635],[-125.12848236775432,58.02563013401243],[-125.12879183853212,58.02570393953986],[-125.12906671588578,58.02580892567574],[-125.12928366551269,58.02594718390997],[-125.12944725896521,58.0261041625781],[-125.12958741480585,58.026267718407176],[-125.12973609043264,58.02642908626132],[-125.1298762487468,58.02659264184534],[-125.13001429163468,58.02675618352811],[-125.13019490295818,58.02690990716999],[-125.13048489571642,58.02700265043505],[-125.13082139311976,58.02700708337435],[-125.13115828029547,58.02699469289124],[-125.13149725794115,58.02698343682372],[-125.13183613154644,58.02697666591662],[-125.13216999322917,58.027003511807074],[-125.13247300288981,58.027082875196825],[-125.13275869147607,58.02717895057182],[-125.1330725723368,58.027246044753866],[-125.13340186708011,58.027287439678304],[-125.13373555133087,58.02732213220645],[-125.1340693656625,58.0273512163726],[-125.13440325816006,58.02737693518748],[-125.13473924192957,58.02740378838321],[-125.13507310949164,58.02743062703177],[-125.13540922348531,58.027451871012765],[-125.13574541538775,58.02746974962937],[-125.13607923259141,58.02749882877873],[-125.13640182126292,58.027555876351684],[-125.13670698685407,58.02763412236212],[-125.13700998540325,58.02771459702389],[-125.13732609824223,58.02777720889651],[-125.13765537655668,58.02781971486884],[-125.1379915212751,58.027839830855456],[-125.1383266833341,58.02781058601977],[-125.13863117600455,58.0277340323373],[-125.13895012389311,58.027673274562325],[-125.1392831670143,58.02764401369089],[-125.13962227672198,58.02762712946479],[-125.13995911512319,58.02761695979735],[-125.14029791580212,58.02761353194614],[-125.1406364337572,58.027622439819126],[-125.14097268105212,58.0276380622709],[-125.14131101965407,58.02765481898872],[-125.14164719052113,58.027673804266904],[-125.1419833873848,58.02769166719162],[-125.14232182950661,58.027703935319025],[-125.1426603743942,58.02771171655706],[-125.1429989706742,58.027717253920976],[-125.14333761828586,58.02772054741039],[-125.14367634277414,58.02772047551666],[-125.14401310412693,58.02771366015266],[-125.14435012121295,58.027695628856016],[-125.14468713797494,58.02767759670968],[-125.14502586207269,58.02767752139468],[-125.1453619328018,58.02770098336089],[-125.14569343844317,58.02773899702542],[-125.1460227514377,58.02778036086602],[-125.14635214173585,58.027818359369974],[-125.14668821455643,58.02784181800366],[-125.14702673608805,58.02785070968835],[-125.14736556372621,58.027846142405465],[-125.14770054013145,58.027824724619435],[-125.1480337051458,58.027789834385786],[-125.14836281437638,58.02774706577312],[-125.14868988251496,58.0277009183366],[-125.14901284366688,58.027649135591226],[-125.14933590567271,58.027592866031235],[-125.1496548095902,58.0275332042218],[-125.14997164663154,58.02747128516967],[-125.15029057391183,58.02741050034156],[-125.15060536837248,58.02734520180551],[-125.15091401479202,58.02727089010313],[-125.15121235576332,58.02718417385722],[-125.15147947803233,58.027073703619855],[-125.15165861186217,58.02692229407655],[-125.15175353449813,58.02675015963448],[-125.15181892465868,58.02657335099729],[-125.15186317320068,58.0263952864844],[-125.15187993054269,58.02621592580713],[-125.15189245449261,58.026036538289624],[-125.15190921153436,58.025857177678745],[-125.15192173522449,58.02567779022855],[-125.15193637538039,58.02549841624818],[-125.1519700645753,58.02531916322121],[-125.15203330930103,58.02514346282584],[-125.15212401795561,58.02497018007846],[-125.15223369864326,58.02480038270365],[-125.15235391033329,58.024632895429434],[-125.15248256171948,58.02446658329297],[-125.15260912078303,58.0242991361316],[-125.15273986106952,58.024133958738716],[-125.1528979880621,58.0239745632465],[-125.15314419609373,58.023851619299734],[-125.15346507739622,58.02379644807684],[-125.15380396882973,58.0237873784655],[-125.15414008606513,58.02380745373622],[-125.15447159147126,58.02384432395425],[-125.15480536564655,58.02387447770742],[-125.15514150945863,58.02389342895475],[-125.1554776536103,58.02391237935678],[-125.1558136971406,58.02393581493731],[-125.15614518009558,58.02397380251368],[-125.1564699863431,58.02402632875762],[-125.15679489434432,58.024074368189694],[-125.1571286472329,58.02410563765226],[-125.15746479428992,58.0241245830588],[-125.15780320928322,58.024136811923334],[-125.1581418258635,58.024140067877504],[-125.15843798355603,58.02405444396211],[-125.15860029383833,58.02389618990717],[-125.15880039773725,58.02375163365242],[-125.15905704165752,58.023634353005335],[-125.15933661332826,58.023532919473624],[-125.159634854847,58.02344842778621],[-125.15994135996237,58.02337296072596],[-125.16024995520165,58.02329862777888],[-125.16055854921792,58.02322429412498],[-125.16087331576063,58.02315785018921],[-125.16119833743029,58.023106051540516],[-125.16152938166134,58.02306887153363],[-125.16186433237216,58.023046296843596],[-125.16220313984964,58.023040570451876],[-125.16254164676157,58.023048301274784],[-125.16287796227599,58.02305938249621],[-125.16321656957014,58.0230626255842],[-125.16355540199683,58.02305577425671],[-125.16389234283137,58.0230388152658],[-125.16422540029514,58.02300612785296],[-125.16455036606436,58.022956564070384],[-125.164867139857,58.022894610005615],[-125.1651715883604,58.02281575324137],[-125.16543448039957,58.02270186466015],[-125.16564294245272,58.02256071575126],[-125.1658388291341,58.02241387971536],[-125.16603259787374,58.02226703020321],[-125.16625365395447,58.022130445705606],[-125.16651235495563,58.02201428565884],[-125.16679811900576,58.02191848383428],[-125.16709839746349,58.021836231845334],[-125.1674110990703,58.021766394894314],[-125.16774404264224,58.02173818477643],[-125.16808258868683,58.02174365853755],[-125.16842123427772,58.02174464541798],[-125.1687601035521,58.02173553788843],[-125.1690969308081,58.02172305181822],[-125.16943198910467,58.021694850658925],[-125.1697569118131,58.02164639578807],[-125.17009393643123,58.02162493515899],[-125.17042999339643,58.02164721241008],[-125.1707638104256,58.021675083208756],[-125.17109752882344,58.02170743919854],[-125.17142913141655,58.02173978122872],[-125.17176287572575,58.02177101405246],[-125.17209671959878,58.02179776001786],[-125.17243270507538,58.02182339675437],[-125.17276871574317,58.02184791114002],[-125.17310261046163,58.02187241158069],[-125.17343859729421,58.02189804578938],[-125.1737746092879,58.02192255764695],[-125.17410850532768,58.02194705557545],[-125.17444451819807,58.02197156574947],[-125.17478053150752,58.02199607507878],[-125.1751166439036,58.02201609753479],[-125.17545278131031,58.02203499763821],[-125.17578663016292,58.022061734390135],[-125.17611366227588,58.02210973979293],[-125.17642324689888,58.02218119167614],[-125.17672193066268,58.022267157233465],[-125.17702283063282,58.0223486491376],[-125.17733894039164,58.022412287476065],[-125.17766488628378,58.02246140403907],[-125.17799306469185,58.0225060469034],[-125.17832236732878,58.02254733089501],[-125.17865274499675,58.02258749902249],[-125.17898212271488,58.022625416865765],[-125.17931359299725,58.02266446840942],[-125.17964398968968,58.022704634194646],[-125.17997003920894,58.022749259113276],[-125.18029812484843,58.02279838236525],[-125.18062743258822,58.022839660688106],[-125.18096129228924,58.022866384531774],[-125.18129863688286,58.02287854732333],[-125.18163743986558,58.02287277164597],[-125.18197337002773,58.022853517606855],[-125.18230842873558,58.022825284117886],[-125.18262726408545,58.02276442241587],[-125.18293371734043,58.02268890266505],[-125.18325255051667,58.022628039479805],[-125.1835875086117,58.022604288827466],[-125.18391799001483,58.022639957898235],[-125.1842417494328,58.022693531639504],[-125.18456220474724,58.02275269271858],[-125.18486743164847,58.02283082830432],[-125.18515108114795,58.022927899777024],[-125.18543040178311,58.02302943088876],[-125.18571831151395,58.023125405478005],[-125.18602792281065,58.02319683518169],[-125.1863550752287,58.02324032952942],[-125.18668874804102,58.023276011157904],[-125.18701923831051,58.02331167258281],[-125.18735186261674,58.02334734616924],[-125.18769037745821,58.023355013271605],[-125.18801735887152,58.02330876979286],[-125.18831033141592,58.023219695860895],[-125.18857629066261,58.02310802405908],[-125.18881191502541,58.022979342679555],[-125.18901401404244,58.02283475417948],[-125.18918351638942,58.022679872643074],[-125.18932780675898,58.022516986327275],[-125.18946996252285,58.022354086940474],[-125.18963422670551,58.022196929841],[-125.18982371680053,58.02204777716667],[-125.19004047637758,58.02191000616777],[-125.1902980282514,58.021794915239035],[-125.19061689027637,58.02173179151826],[-125.19095534283001,58.02174169335355],[-125.19127587313562,58.021797473737266],[-125.19158762461765,58.02186778175528],[-125.19188636479004,58.02195259186688],[-125.19216783694849,58.02205300007635],[-125.19246662819411,58.02213556588639],[-125.19280039352486,58.02216674616484],[-125.1931390918108,58.02216542736576],[-125.19347012016352,58.02212704674192],[-125.19377238588103,58.02204811209347],[-125.1940757241565,58.021968061590385],[-125.19439353156278,58.02190492251038],[-125.19471233947893,58.02184403202798],[-125.19502801144102,58.02178087858685],[-125.19533759068082,58.021706471155646],[-125.19563162403358,58.021616266238745],[-125.19589645942357,58.021505695146665],[-125.19613623328199,58.02137926957322],[-125.19634250414256,58.02123581722027],[-125.19648145852925,58.02107289155261],[-125.19663201910812,58.020911157231424],[-125.19685609071668,58.02077678447158],[-125.19711675592387,58.02066282108409],[-125.19739929653774,58.02056469180036],[-125.19769954500937,58.02048012813765],[-125.19800906026336,58.020407957639684],[-125.19832678296856,58.02034705222694],[-125.19865269931786,58.02029965506043],[-125.19898777054863,58.020269136799435],[-125.19932459848411,58.02025545302652],[-125.19966301608734,58.02026645429437],[-125.19999915016314,58.02028529259823],[-125.19700838658457,58.02246242593713],[-125.20840129239795,58.021821537598235],[-125.22076563882138,58.019229194598],[-125.22570620223684,58.016942847874546],[-125.2418072756247,58.01109501970823],[-125.2496349456916,58.0073705503253],[-125.25682571336631,58.004961131875035],[-125.26220465089587,58.00341171624479],[-125.27057805770538,58.002766803911584],[-125.27552325149148,58.00216113505465],[-125.27543522599468,58.00206307663518],[-125.27526877359314,58.00191860616185],[-125.275201972079,58.001872257221954],[-125.27523520074125,58.001850005245124],[-125.27530362638566,58.001812241657916],[-125.27537407545502,58.00172401623102],[-125.27558979738654,58.00161751155389],[-125.27594126938392,58.00154763453594],[-125.27613196246337,58.00147688502921],[-125.27618698548056,58.00136614324612],[-125.27623091282717,58.00128226011099],[-125.27626437182471,58.0011927121422],[-125.27630264503293,58.00107290662178],[-125.27635230081452,58.00096662219799],[-125.27640039293652,58.00088612646969],[-125.27644872267452,58.000793294241674],[-125.27655484500832,58.00071984264194],[-125.27668821254159,58.00071495714684],[-125.27678149873765,58.00070424633195],[-125.27684983430497,58.00067096799475],[-125.27690964403172,58.00064100829787],[-125.27702398360483,58.000581060237685],[-125.27733551787726,58.00049638242147],[-125.27770859468316,58.00045690146889],[-125.27786097648841,58.000453239288994],[-125.27792422525276,58.00040983836578],[-125.27804091965722,58.00033644281313],[-125.27815523492679,58.000277615302494],[-125.2782489509394,58.000244473494355],[-125.27832444191101,58.00022357087876],[-125.2784918015937,58.00021101602323],[-125.27884743559548,58.00019835642101],[-125.27928684358226,58.000174931970506],[-125.27970551256396,58.00012896189499],[-125.28005378170901,58.00005905700111],[-125.28025462222246,58.000010788813626],[-125.28029178013507,58.00000313782005],[-125.28030876617123,57.99999986454021],[-125.28036288400443,57.99999118333358],[-125.28058158690534,57.999948619012926],[-125.28089993936244,57.999894253336464],[-125.28113353328284,57.99984728186867],[-125.28131708933317,57.999816864868606],[-125.28148130336199,57.999803167739415],[-125.28157432832627,57.999805911570036],[-125.28167269718368,57.99980531924516],[-125.28181990376441,57.999796016650954],[-125.28202744876303,57.99978367354437],[-125.28226537644838,57.99978607443479],[-125.28240085509859,57.99978119460929],[-125.28246843361232,57.99978716588584],[-125.2826153612649,57.999792441899],[-125.28288264442655,57.99980845878693],[-125.28315308762942,57.99982561371971],[-125.28331569961406,57.99983994608373],[-125.28342547497218,57.999851751449555],[-125.28361462105262,57.999861739403094],[-125.28389369688952,57.99986996624204],[-125.28427188711859,57.99989442646094],[-125.28466462765859,57.999932422931835],[-125.28482918491717,57.99995573678174],[-125.2849037530117,57.99987201516175],[-125.28505228561147,57.9997370953843],[-125.28515231583934,57.999650145157126],[-125.28517387337689,57.999628949925274],[-125.28526345801521,57.99959017307238],[-125.28546899377962,57.99951612514672],[-125.28572988129837,57.99942442724678],[-125.28591069401342,57.9993715570404],[-125.2860468533366,57.99933078555589],[-125.2862201043724,57.99928572579318],[-125.28646744477756,57.999238818572245],[-125.2867837314737,57.999181063107926],[-125.28710399187166,57.99913678747128],[-125.28731610248558,57.99910651476157],[-125.28740620047786,57.9990957795606],[-125.28748785477649,57.999084999236885],[-125.28768603765556,57.9990636245119],[-125.28792025841415,57.99903907687409],[-125.28803379277157,57.99901949335274],[-125.28806761369607,57.9990207953192],[-125.2881376471988,57.999008831020376],[-125.28826271672695,57.99899491687137],[-125.28834118939659,57.998984119068055],[-125.28841448895281,57.99896768558657],[-125.28854598867319,57.998949318998285],[-125.28864366740018,57.99892965046897],[-125.28868391867658,57.99892650009352],[-125.2888006334523,57.9989069328713],[-125.2890972828571,57.99888047250246],[-125.28941632331568,57.99884403614805],[-125.28958798829568,57.998827003922756],[-125.28969087753975,57.998811848806994],[-125.2897660833825,57.998805519238374],[-125.28982618195268,57.998815933442216],[-125.2900120585097,57.99883038139507],[-125.29026196162461,57.998814885961096],[-125.29047015562446,57.99876776328058],[-125.2906617036584,57.99870597089158],[-125.29093851250856,57.998609861137545],[-125.29129490337559,57.99849959235951],[-125.29169474487092,57.99838506674154],[-125.29216036340502,57.99825967260913],[-125.29249186152555,57.99817955221372],[-125.29263544178289,57.998137691839794],[-125.29273766341042,57.99810122027011],[-125.29295847747393,57.99805752546976],[-125.29336988066497,57.998002501505695],[-125.2937337591212,57.99799994054764],[-125.29392809347085,57.9980144277922],[-125.2940608260654,57.99798596785353],[-125.29424813404387,57.99792414800319],[-125.29447650408953,57.99787263939017],[-125.29461044929482,57.99783633405448],[-125.29473172488989,57.99779884004772],[-125.29494836791432,57.99775175512897],[-125.29528358038908,57.99769856614301],[-125.2956291988618,57.9976544041009],[-125.295809484148,57.99762843654833],[-125.2959115540466,57.99759981305634],[-125.29605598804837,57.997568048046965],[-125.2962174053379,57.99753300758725],[-125.29638544078264,57.99748342089867],[-125.29655848172261,57.9974484412942],[-125.29671949878887,57.9974347086972],[-125.29690790635038,57.99742672820568],[-125.29712070836642,57.99741551105892],[-125.29723504703023,57.997409383338685],[-125.29731156671438,57.99738959716193],[-125.29753787687908,57.99739078814719],[-125.29782690422935,57.99743156493587],[-125.29798724956719,57.99745371875831],[-125.29807522548809,57.99744296525505],[-125.29824170580012,57.99742028668036],[-125.29847078099912,57.9973867207515],[-125.2986351917213,57.99736066598933],[-125.29884809759157,57.99734383859799],[-125.29916701082468,57.99731298649593],[-125.29935681817723,57.99728706417077],[-125.29939934929541,57.99727494968316],[-125.29944690835761,57.99727632086562],[-125.29956882474461,57.997261258049676],[-125.29989041567704,57.997257336873865],[-125.30050555830867,57.997221305087564],[-125.30104731685267,57.99715123805434],[-125.3012426308654,57.99711300420803],[-125.3013275453393,57.997096624511975],[-125.30143788186591,57.99707813457307],[-125.30151823220888,57.99707967659804],[-125.30156465857438,57.99708552753133],[-125.30172041990085,57.9971267202074],[-125.30216363897229,57.997179510066886],[-125.30257808221727,57.997187283820224],[-125.30270850278907,57.99716889774973],[-125.30267911410797,57.99710032618375],[-125.30264178293672,57.99694647096304],[-125.3026549072354,57.99686578379095],[-125.3028099419268,57.996775743343655],[-125.303079390617,57.996617882036084],[-125.30334860808651,57.99647235669023],[-125.3037701533345,57.9963814624582],[-125.30421216617424,57.996384888529306],[-125.30450184171423,57.99627648055709],[-125.30481680530933,57.996002205977476],[-125.30503402044059,57.995865379423115],[-125.30507744796114,57.99586224067511],[-125.3050812626512,57.995884692646456],[-125.30520902043115,57.99600985586525],[-125.3055640739775,57.9960834860413],[-125.30593069097333,57.99593173263034],[-125.30606830880778,57.99581019304376],[-125.30614384625831,57.99584311223143],[-125.30630185952192,57.99593366185662],[-125.30652648296943,57.99602567893695],[-125.30675624880656,57.996068371695564],[-125.30689789011421,57.996072471966144],[-125.30701150533196,57.99604838646555],[-125.307152411847,57.996034536962625],[-125.30727421762575,57.99602507462111],[-125.30733935741274,57.99599064284613],[-125.3073475132708,57.99595030736597],[-125.30739891402781,57.99591580428021],[-125.30754438085104,57.99588403234271],[-125.30768261898541,57.99584324991916],[-125.3078844504232,57.995794945833026],[-125.3082060536665,57.99573268130201],[-125.30845642450547,57.99569023591481],[-125.30867254243317,57.99567004478302],[-125.30900763428856,57.995621307450484],[-125.30948755271018,57.995518359851665],[-125.30996381586121,57.995383986736336],[-125.31034769674764,57.99526932360936],[-125.31074777517152,57.99513679737241],[-125.31126632773831,57.994945436266576],[-125.311952446414,57.99478522026758],[-125.31263658782102,57.99473266451585],[-125.3130331852668,57.99473134120653],[-125.3131971192346,57.99473106311549],[-125.31336076959924,57.99474536420402],[-125.31359704414609,57.994779105784],[-125.31378169684788,57.994802487168386],[-125.31386592415905,57.994823108962066],[-125.31395146701091,57.99482915662321],[-125.31405010563984,57.994813961063734],[-125.31414369434874,57.99478528025111],[-125.31431142749727,57.99475025061842],[-125.31456170296748,57.99471227981688],[-125.31476319191955,57.994681909352586],[-125.31493595721331,57.994660364007366],[-125.31519005206245,57.99464484369104],[-125.31544640476069,57.99462148325248],[-125.31557179715382,57.994588478127675],[-125.31562821838124,57.9945685785451],[-125.3156567609992,57.994568724869524],[-125.31578262613344,57.99456824844505],[-125.31596857337946,57.994578174203255],[-125.31605735811486,57.99458087231888],[-125.31611663648228,57.99457781120607],[-125.31626558515349,57.99458642539981],[-125.31641251760678,57.99459054269297],[-125.31653512032464,57.99459453526215],[-125.31663236472556,57.9945972763068],[-125.31669156141444,57.994598700930176],[-125.31673392058657,57.99459555293861],[-125.31686481966821,57.99460856048709],[-125.31715858639075,57.994621279498084],[-125.31746623443405,57.99462621761953],[-125.31761316717476,57.99463033359135],[-125.31770487143078,57.99464650476116],[-125.31798928260463,57.99470852462482],[-125.31839361313315,57.99480592590318],[-125.31883057258754,57.99491246527212],[-125.31927188980761,57.99501117421456],[-125.31965761943496,57.995084923157606],[-125.31986000198853,57.99512184570234],[-125.3199042325878,57.995132165466366],[-125.31992942885763,57.995142388249825],[-125.32003156440811,57.99516758377918],[-125.32022101447323,57.99521789913367],[-125.32037344521692,57.99526802575939],[-125.32042385851152,57.995287349648116],[-125.32050323799339,57.99528438890695],[-125.32075121318533,57.99525648920811],[-125.32101645232936,57.99520960961823],[-125.32111646262389,57.995176470178954],[-125.32114522882344,57.99516427883836],[-125.32119548569679,57.995134251132896],[-125.32128103586703,57.99508197080784],[-125.32138679074686,57.99502306352992],[-125.32147234039729,57.99497078308852],[-125.32155031363833,57.99492855850998],[-125.32163145061567,57.99488634996559],[-125.32172326329106,57.994838587608164],[-125.32182244919319,57.99479198425077],[-125.32192471437766,57.994751004473095],[-125.32203334430702,57.99470893534264],[-125.32209197845876,57.99468343627264],[-125.32216344702849,57.99464902953452],[-125.3223478521031,57.99456921044432],[-125.32254819058257,57.99448498556464],[-125.32264624459562,57.994442862283854],[-125.32266965003076,57.994435129833775],[-125.32271835318376,57.99443201213598],[-125.32284234895836,57.99441693875806],[-125.32303341969707,57.99431920694875],[-125.32327805206293,57.994182490384475],[-125.32350416378142,57.99413540760312],[-125.32367172364569,57.99410933822107],[-125.32380409815516,57.99404046958136],[-125.32394344159599,57.993995189722604],[-125.3242385787404,57.9939316312662],[-125.3246547661794,57.99384064462055],[-125.3249942926457,57.99377843067954],[-125.32525933462595,57.99374163621734],[-125.3255456051723,57.99370046209123],[-125.32591254132785,57.99364287072064],[-125.32626660615381,57.993595307786244],[-125.32651972062567,57.99357527463691],[-125.3268583567579,57.99356240188859],[-125.32723512008405,57.993546355643375],[-125.32746366349379,57.99353965606716],[-125.32767430256777,57.99352837952803],[-125.3280193626991,57.99351104979647],[-125.3284765490358,57.99349204007633],[-125.32900640454775,57.993490218075685],[-125.32952868510147,57.99343788396858],[-125.32987812544384,57.99335327550785],[-125.33008762857898,57.993287031128524],[-125.33029965143368,57.993257811826275],[-125.330493406399,57.993245324549065],[-125.3306539930752,57.993253981055695],[-125.33075318990893,57.99326569440147],[-125.3308102502153,57.99326822365794],[-125.3309210342072,57.99316334871519],[-125.33113167036325,57.99303429889753],[-125.33157186150697,57.99307800296668],[-125.3320846528265,57.99308393451832],[-125.33245308055153,57.99300053599594],[-125.33275520708087,57.992959425801516],[-125.33309073454123,57.99294203536017],[-125.33333413662878,57.992932035201434],[-125.33340398501876,57.99292901922634],[-125.33343886788585,57.99293031501332],[-125.3335339943997,57.99293303318119],[-125.33362497094232,57.992931244173235],[-125.33365562719214,57.992931397206284],[-125.33376205526619,57.992953238788594],[-125.33398442295594,57.9929958475569],[-125.33416892044502,57.99302817268508],[-125.33430391051455,57.993049034699155],[-125.33436715609015,57.993060566062994],[-125.33452319514421,57.99308714080198],[-125.33493801302575,57.99313070725616],[-125.33536235702691,57.993174319849125],[-125.33556612818901,57.99319327982972],[-125.33561263444294,57.993194632901705],[-125.33571497659754,57.99320747980512],[-125.33601953342075,57.993148428753564],[-125.33632680370212,57.99299517631343],[-125.33650026243278,57.99293322914229],[-125.33665689272229,57.99298672265512],[-125.33678366137639,57.99305352679515],[-125.33681911792989,57.993081742887924],[-125.33688449896103,57.993092162067114],[-125.33705607284165,57.99313787816432],[-125.33721179731094,57.99318239375051],[-125.33739252701317,57.993187777362245],[-125.33774912058274,57.99317608776135],[-125.33814344744198,57.9931825298601],[-125.3384982634196,57.99321120695218],[-125.33892767100099,57.99326829245185],[-125.33926104399966,57.99331368528074],[-125.33946908983154,57.99332929565915],[-125.33968798336488,57.993330378605776],[-125.33982953903372,57.99333892992391],[-125.33991717779318,57.99334609289552],[-125.34003539154338,57.99335901496076],[-125.3401029676413,57.99336495702267],[-125.34017370475893,57.993372036272234],[-125.34033071934581,57.9934030954164],[-125.34059068867032,57.99347391889712],[-125.3409857585518,57.993619434339436],[-125.34133997688383,57.99374231510708],[-125.34146082224403,57.9937866536259],[-125.34156067940584,57.99382079413511],[-125.34190765827469,57.99387522023277],[-125.34227438687306,57.99394880989882],[-125.34239403831008,57.994060437560975],[-125.34242938721624,57.99415594751454],[-125.34245546624179,57.99423683103244],[-125.34244527796471,57.99433548148322],[-125.34243927506112,57.99437582944998],[-125.34248254057486,57.994381650551546],[-125.34262214306888,57.99438121648938],[-125.34278686900966,57.99439548674796],[-125.34293762387689,57.994422025617524],[-125.34314289256137,57.994476872520096],[-125.34341105296689,57.99450286690039],[-125.3435849453325,57.99447680372089],[-125.34362224172347,57.994460163137084],[-125.34386853761355,57.9944669819203],[-125.34438172466372,57.99445043612448],[-125.34474249911135,57.994442113105706],[-125.34496543603089,57.9944533015959],[-125.34528970946569,57.994476202729864],[-125.34556828943637,57.994511216654644],[-125.34570244028603,57.99451972542657],[-125.34583872301656,57.994528244510306],[-125.34601841144296,57.99453361131129],[-125.34611670682149,57.99453633601698],[-125.34615589955976,57.994533163192855],[-125.346181122108,57.99454225951208],[-125.3462260678539,57.994633329070666],[-125.34636485144621,57.99486169309466],[-125.34659884514113,57.995089401468505],[-125.34686454143491,57.995196131929234],[-125.3469983217597,57.9952270695507],[-125.34704133794568,57.995246347135556],[-125.34716237042117,57.99528058703547],[-125.34738014725221,57.99534558297637],[-125.34755467426419,57.995404759199104],[-125.347608360583,57.99541960235582],[-125.34764714739751,57.99543885907808],[-125.3478654299942,57.99547581673157],[-125.34827464584377,57.99547893672892],[-125.34861921027041,57.995430146491834],[-125.34874236394762,57.99540270738368],[-125.348808956988,57.9954041538368],[-125.34906185652596,57.9954569807633],[-125.34945564259331,57.995557600980206],[-125.34975346084948,57.99564317184274],[-125.34992779900074,57.99577412635956],[-125.35010248391187,57.99600826945992],[-125.3503213546689,57.99619439864844],[-125.3504536096832,57.996252243769945],[-125.35047248942848,57.99626130842325],[-125.3506259529059,57.99619363743844],[-125.35094993385044,57.996050526684144],[-125.35118677168302,57.99593166685752],[-125.35138313281595,57.99582943395862],[-125.3516210362781,57.99570945698235],[-125.3517470008808,57.9956416512091],[-125.35177251603189,57.99563392391733],[-125.35178650416054,57.99562053265853],[-125.35183249028533,57.99559047278635],[-125.35192593241777,57.99550792816971],[-125.35202511768365,57.99539849301921],[-125.35212362490387,57.9953283104485],[-125.35222033039848,57.9953007397897],[-125.35227145679079,57.99527967750611],[-125.3522982116788,57.99526186175289],[-125.35236338622742,57.99522292202889],[-125.35241385037283,57.99517942452524],[-125.35244299333976,57.99514479636444],[-125.3524824957051,57.995123677619205],[-125.35248493757736,57.995042934434224],[-125.35262872223913,57.99486193299242],[-125.35300689583521,57.99470225637993],[-125.35332745909591,57.994572582790354],[-125.35349029724878,57.99445111746296],[-125.35355245977276,57.99440318984476],[-125.35360447869108,57.99439110417547],[-125.353824131712,57.994348425323004],[-125.35419056299644,57.994255984436215],[-125.35448165260705,57.99417888060682],[-125.35458170773111,57.994141230125976],[-125.35467597711747,57.994071025316394],[-125.35495695243208,57.99396695328047],[-125.35528969996776,57.993927061681326],[-125.35545669764633,57.99393235449041],[-125.35554179303347,57.99390360384241],[-125.35568988203669,57.9938403877351],[-125.35589437151971,57.993756133303634],[-125.35603912469581,57.99370187349253],[-125.35615844149983,57.9936508556355],[-125.35632024730822,57.99358882660841],[-125.35645557007862,57.99352891291265],[-125.3565334240734,57.9934911539818],[-125.35661046190648,57.99343881033835],[-125.35670878244788,57.993378718053286],[-125.35683781697661,57.99331540890228],[-125.35701964274556,57.993257961897505],[-125.35720682338483,57.993196054058004],[-125.35741573988727,57.99316116886618],[-125.35763907369902,57.993149906214],[-125.35777345265399,57.99314494481665],[-125.35792907347852,57.99313559907959],[-125.35818956135638,57.99311554145549],[-125.3584139436173,57.993104282550746],[-125.35856200046993,57.99310387247789],[-125.3586518337166,57.99310654730111],[-125.35873518616064,57.99311816368565],[-125.35899286926755,57.99313846841869],[-125.35944599350577,57.99316980497878],[-125.35991923973471,57.993138427206745],[-125.36040940792245,57.99304431957432],[-125.36083930859756,57.993011609271676],[-125.36103785348546,57.99302714050307],[-125.36127543794771,57.993047344618574],[-125.36171356639039,57.993090939254145],[-125.3620122147229,57.99312713633744],[-125.36213536884598,57.99316137269134],[-125.3621866211006,57.99319414380939],[-125.36220639653007,57.993213305392494],[-125.36232387551033,57.99320713707527],[-125.36251973437228,57.99319461341877],[-125.36268484345602,57.993186429046645],[-125.36281287738561,57.99318143228583],[-125.36289760380477,57.99317398552855],[-125.36298760669114,57.99316768549095],[-125.3632391572008,57.99317561521917],[-125.3635304332411,57.99321065213834],[-125.36364111123648,57.99323136848673],[-125.36376990695194,57.99324431993955],[-125.3640663275815,57.99328835295707],[-125.3643499669966,57.993336810829696],[-125.36456920785199,57.99337935359896],[-125.36474527417147,57.99341159621035],[-125.3649085589115,57.99344826415583],[-125.36515317922307,57.993490926707445],[-125.36537348777318,57.9935334732319],[-125.36550546789526,57.993545316551746],[-125.36562679600202,57.99356271709027],[-125.36579139445807,57.99358480947665],[-125.36602753830019,57.99362855174571],[-125.36630159868604,57.993681446348006],[-125.36651148876109,57.99371384718773],[-125.3666698194981,57.99373142236924],[-125.36679945686078,57.993757834013714],[-125.36687064344453,57.99380079223183],[-125.36691548044902,57.993838017482496],[-125.36703334574196,57.99387222422918],[-125.36721183383676,57.993886529561266],[-125.36729216111323,57.99388915349907],[-125.36729426861646,57.993826354222314],[-125.36730379613033,57.99370078086119],[-125.36735226979872,57.993585486441596],[-125.36745993999234,57.99347159412782],[-125.36753318633848,57.99339230804646],[-125.36755581829522,57.99336661862484],[-125.36760784029475,57.99329171832867],[-125.36772782890162,57.99313750684677],[-125.36787746373498,57.99298007089886],[-125.36798037229707,57.99289756030389],[-125.36805211437974,57.9928451850994],[-125.36817742683611,57.99275044291074],[-125.36836264933108,57.9926156067868],[-125.36848380611377,57.99251635830823],[-125.36851832195352,57.99247614427576],[-125.36854112051653,57.99244148276907],[-125.36857245558605,57.99240125367978],[-125.36860687691353,57.99236664714335],[-125.36865120038084,57.992309655594454],[-125.36869634632912,57.99226612702761],[-125.36871145153265,57.99224825299429],[-125.36876309252621,57.992195782390354],[-125.3688828297202,57.992055028001644],[-125.36898490062858,57.99189624455657],[-125.36902876031151,57.99180335980161],[-125.36905170878434,57.99175972621552],[-125.36908999010583,57.991683638955024],[-125.36915636405533,57.99157291513691],[-125.36921689585317,57.99149468982932],[-125.36926861047208,57.99143773306513],[-125.36930523921038,57.99139752886826],[-125.36936178587212,57.991304704004364],[-125.36947652217971,57.991147101758294],[-125.3695597194752,57.99104094364122],[-125.36958552915074,57.99101526896203],[-125.36962103291754,57.99097954574807],[-125.3696888051584,57.990910327199984],[-125.36975569770325,57.99083101015986],[-125.36982350517037,57.9907606701332],[-125.36993078332837,57.99066920619119],[-125.37015837888093,57.99052783842529],[-125.37038915318954,57.9903864852948],[-125.37045272932647,57.99031612503247],[-125.3704574852346,57.99028474296317],[-125.37047567712341,57.99027136969103],[-125.3704927260999,57.99026359897273],[-125.37054368495332,57.99025150181047],[-125.37081284353675,57.99028081055586],[-125.37123197990357,57.990256989046365],[-125.37141729365015,57.99011429846239],[-125.3714443969893,57.990011239919696],[-125.37152078734819,57.98999589737999],[-125.3717182758368,57.989947477198555],[-125.37203760835034,57.98988504936226],[-125.37229202221225,57.989846990439695],[-125.37249948229994,57.989834506841284],[-125.37279577599438,57.98982131878585],[-125.37313125680944,57.989803827765705],[-125.37338544439329,57.98977922476642],[-125.37355484022018,57.98976656083304],[-125.37372644411255,57.9897482991047],[-125.37393094540002,57.9897234619356],[-125.37406231471883,57.98970837581814],[-125.37411643516438,57.98969629213421],[-125.37416828960309,57.98969429209655],[-125.3742414417144,57.98968229759426],[-125.37438873504841,57.98966392104634],[-125.37456870318623,57.989651305384136],[-125.37476996695031,57.98962981653083],[-125.37503182506853,57.98958842252443],[-125.37520885116297,57.98949840267591],[-125.3752782733667,57.98939329838282],[-125.37554982139176,57.98934185444643],[-125.37602173842858,57.98938668173053],[-125.3763115399846,57.98944523714338],[-125.37639369359371,57.98946468797895],[-125.37652919714266,57.98945522669889],[-125.37682828981468,57.98940054406071],[-125.37713370686158,57.98934701185972],[-125.37726731840733,57.98932408195944],[-125.3773679571272,57.989313335579496],[-125.37760831079471,57.989293146395916],[-125.37793534310978,57.989275603948855],[-125.37815118231255,57.989267636995976],[-125.37820092298836,57.98926450396165],[-125.37825264660478,57.98927035284114],[-125.37848100629621,57.98927253795914],[-125.37889968126062,57.989275608410225],[-125.37926814327969,57.98924591802407],[-125.3794267300816,57.98918272499612],[-125.379547464913,57.98904308795397],[-125.37975267864346,57.98884664252138],[-125.379904314902,57.98875649859885],[-125.37993903731623,57.98870282377629],[-125.37993432351529,57.988604102311555],[-125.38006282449291,57.98869779084827],[-125.38031710323999,57.988731497629296],[-125.38062879236324,57.98874528179472],[-125.38083016488682,57.98884491565788],[-125.38093588237662,57.98897438843191],[-125.38097734222764,57.989025052099805],[-125.38101108338259,57.989030816509405],[-125.38110401488895,57.9890379769627],[-125.38128370053984,57.98904217476369],[-125.38152888345891,57.9890500405854],[-125.38177719144103,57.989061285189536],[-125.38198631557006,57.9890757126677],[-125.38218085909185,57.98907661329499],[-125.38251068192285,57.98908150429988],[-125.38289522647739,57.98910234970401],[-125.3831192272158,57.98911235783948],[-125.38328824830685,57.9891221115816],[-125.38359240179209,57.989144826682896],[-125.38390411395257,57.9891574817051],[-125.38402028862265,57.989165868994405],[-125.38402405779993,57.989129995636404],[-125.38411483982195,57.9890104048628],[-125.38432709067433,57.988963155879226],[-125.38450287831016,57.98907612518819],[-125.38468846837807,57.98917119408781],[-125.38500462934404,57.98917152960103],[-125.3852547225535,57.989137912520135],[-125.38539503939788,57.98909257368249],[-125.38551838401486,57.989050521324074],[-125.38563281115228,57.98903646745024],[-125.3858950034874,57.989038795610554],[-125.38624860426675,57.98907631275813],[-125.38646418675833,57.989149085363046],[-125.38658225669859,57.989170938159916],[-125.38665637797864,57.98916454926608],[-125.38672205911575,57.98915699996603],[-125.38682048988866,57.98915072267337],[-125.3869210521541,57.98914445509867],[-125.38705443728482,57.98913497342441],[-125.38719635400012,57.989121044444985],[-125.38731495503202,57.98911037304939],[-125.38745573260576,57.98910092490843],[-125.38756480793872,57.98909133116147],[-125.38759976364902,57.98908700520484],[-125.38762512062303,57.98908824312836],[-125.38769602324152,57.98908520364863],[-125.38777218561528,57.98908330984233],[-125.3877996571979,57.98908455743202],[-125.38781898123533,57.98906670069594],[-125.38802322635263,57.988991369501434],[-125.38836326156198,57.9888886206908],[-125.38854810800804,57.988835631522775],[-125.38867740853644,57.988817156845094],[-125.38885799982756,57.98870021743039],[-125.38895302264366,57.98851446942216],[-125.3889969019803,57.98841709244383],[-125.38907366514893,57.988378188367314],[-125.38916769134539,57.98831805315139],[-125.38929385520302,57.988232268487934],[-125.38941656461756,57.98816329167421],[-125.38946456999551,57.988137714837606],[-125.38949619710291,57.988143467424344],[-125.38964452574811,57.988125078870134],[-125.38984930057875,57.98808115176959],[-125.3899535148473,57.98804461586245],[-125.38997925385132,57.98802230182544],[-125.39000286005883,57.98800109962056],[-125.39002580005246,57.98795634110842],[-125.39003724732294,57.98790255740405],[-125.39006829017691,57.987814094158885],[-125.3901603171649,57.98768104623368],[-125.39028615630508,57.98755039589719],[-125.39040084061762,57.98745446359251],[-125.39056287260212,57.987373327983555],[-125.39084323175294,57.987233288398784],[-125.39110018514629,57.987100992556044],[-125.39120606127364,57.9870274510865],[-125.39123214432833,57.98698382834191],[-125.39124300770403,57.986965932572325],[-125.39131304031558,57.986950549823426],[-125.3915658091284,57.986881042660755],[-125.39208286054958,57.9866837571079],[-125.39277698470673,57.98638969775465],[-125.39327768736023,57.986156442757434],[-125.3934683707904,57.98606758296487],[-125.39361213614752,57.986004306112925],[-125.39375959202114,57.98584234676905],[-125.39378695832465,57.98565404553456],[-125.3937776356472,57.98557661413979],[-125.39383562997003,57.98552079853362],[-125.39400612414852,57.98537240260929],[-125.39435198352373,57.98523377505242],[-125.3947972889348,57.98515616292477],[-125.39517422774895,57.98512198112351],[-125.39539228020604,57.985106145424886],[-125.39556799066888,57.98509348235518],[-125.39586114902711,57.985074621277754],[-125.39615121612104,57.9850512592541],[-125.39628360777512,57.98503727766273],[-125.39634089436046,57.98502519941386],[-125.396398180909,57.985013121140646],[-125.39651394682707,57.984979997280526],[-125.39673519337765,57.984896879087465],[-125.39699055699761,57.98479596942847],[-125.39719680282711,57.98472512008599],[-125.39729973589134,57.984702031808446],[-125.3973952061164,57.98468227449303],[-125.39758381599184,57.98465620808508],[-125.39778017713975,57.98460774481534],[-125.39786039116272,57.98455090623475],[-125.39786512343444,57.98451952338542],[-125.39799135516817,57.984559348098024],[-125.39824486816038,57.98463900189869],[-125.39841022481708,57.98467900261966],[-125.39856269227357,57.98466510927529],[-125.39879772734305,57.98464485825556],[-125.39894701452383,57.984630950147704],[-125.399010222244,57.98457964218386],[-125.3990795148837,57.98447789056508],[-125.39916986085268,57.984381841597134],[-125.39948010807485,57.98421948755819],[-125.40000024328477,57.98402330770421],[-125.40004807589361,57.98400669907576],[-125.40048771952172,57.983951474280516],[-125.40080775389293,57.98403702984948],[-125.40114047569907,57.984122641584335],[-125.40131418417207,57.98416828404605],[-125.40142035854235,57.98420689393449],[-125.40160753343085,57.984270541656954],[-125.40176553700269,57.98430714049347],[-125.40186986680962,57.984327796513156],[-125.40205832300279,57.98437799041389],[-125.40242909111444,57.98446489097277],[-125.4028294440623,57.98455304446135],[-125.40311230399816,57.98458347084954],[-125.4033481709734,57.98457667448645],[-125.40356962838842,57.984546260177275],[-125.40381164411964,57.984485654743295],[-125.40403061485414,57.984411487040276],[-125.4041094686007,57.984372583926266],[-125.40425390237623,57.98433173036995],[-125.40453507578349,57.98426793370639],[-125.40472707193626,57.984228413428035],[-125.40476418881235,57.98422072793562],[-125.40484437366072,57.98416500667932],[-125.4050632877142,57.98402690718093],[-125.40525663210312,57.98390215232641],[-125.40531856898284,57.98386317314015],[-125.40543593959967,57.98379527990619],[-125.4057119887894,57.98365406921835],[-125.40609005345443,57.983480786308256],[-125.40636700390274,57.98334967252922],[-125.4065034172958,57.98328074153739],[-125.40665278168646,57.98319504435747],[-125.40688188278435,57.98308054045371],[-125.40704711097766,57.9829949133613],[-125.40718871050903,57.98293161262579],[-125.40738964966246,57.98286072423267],[-125.40761374353085,57.982862840717765],[-125.40780360246153,57.98289060114646],[-125.40788122435762,57.98286178460965],[-125.40786441113266,57.982788807623656],[-125.4077989532654,57.98271561478962],[-125.40785617430886,57.98264072316955],[-125.40812248816144,57.98251292344888],[-125.40846332838044,57.982351806348184],[-125.40876196951294,57.98218489359696],[-125.40896866657602,57.98201532990022],[-125.40908758452606,57.98191603642622],[-125.40917261159872,57.98188725197119],[-125.40922143241242,57.98187513079361],[-125.40927426989323,57.98187648626465],[-125.40942755894024,57.98187604314128],[-125.40965679227332,57.98181985712679],[-125.4098195338854,57.981689352826656],[-125.40993057334822,57.98155301188575],[-125.41011549406129,57.9813564325213],[-125.41030112684582,57.98118116598178],[-125.41047921752106,57.98108325442319],[-125.41081108535369,57.98095349606914],[-125.41117268962226,57.98081489555233],[-125.41135625796664,57.98077084251601],[-125.41142389297438,57.980772262412664],[-125.41149060240255,57.98076582718756],[-125.41158457363768,57.980705676674],[-125.41170038871334,57.980600759518204],[-125.4117861134799,57.98052711365878],[-125.41184613466848,57.980474664332405],[-125.41193355148678,57.98042794357049],[-125.41209318181409,57.98036023105412],[-125.41233141998964,57.98026818997668],[-125.41254105542227,57.98017938728926],[-125.41266362502859,57.980115997247566],[-125.41276555812577,57.98008728499689],[-125.4129009485241,57.98008227286672],[-125.41307432265751,57.98008191395176],[-125.41324774935657,57.9800781903293],[-125.41334101524963,57.98006289838652],[-125.41335806823848,57.98005400078574],[-125.41341773611794,57.98002398066028],[-125.41353691396198,57.979974033778696],[-125.4135955160664,57.979944008893725],[-125.41367244393109,57.97996004891425],[-125.4138665208639,57.979987819209015],[-125.41405734848011,57.98002006123768],[-125.4141998663627,57.98003302422366],[-125.41430447099593,57.98003572652074],[-125.41440316997173,57.980011485116975],[-125.41450545116284,57.97996034165727],[-125.41456628895305,57.9799224751634],[-125.41469296012978,57.97986695228299],[-125.41491750866705,57.97977036035113],[-125.41506748614906,57.97971157460128],[-125.41515638249665,57.97970523481357],[-125.41532467073027,57.97969139184741],[-125.41551593392677,57.97969671599926],[-125.41567618549475,57.97972433549498],[-125.41579855819867,57.979740573270185],[-125.41587639562017,57.97976558855987],[-125.41594633699339,57.979821973219416],[-125.41603708763938,57.979900880321196],[-125.41612486830473,57.97996631552315],[-125.41620026105021,57.980012629773924],[-125.41625477443515,57.980042029088764],[-125.41628627680048,57.98005562573875],[-125.41637313218868,57.980112084170976],[-125.41651860738725,57.98020693228293],[-125.41669065812407,57.98029180227172],[-125.41683767107159,57.98035525277963],[-125.41695948914081,57.98040737734024],[-125.41711537729027,57.980443948615424],[-125.41730002424836,57.98046606486368],[-125.41738448495505,57.98047316306507],[-125.41740172856237,57.980451928497146],[-125.41742885953605,57.980407184100336],[-125.41745476835035,57.98037252850399],[-125.41756064841302,57.980361774960656],[-125.41780247549663,57.980310116388964],[-125.41807071405034,57.98019127831888],[-125.41827721912573,57.98003067252583],[-125.41843435098627,57.97991920037597],[-125.41855091525665,57.979832225845506],[-125.41859698440524,57.979793171616386],[-125.41862692890997,57.97977087067594],[-125.41868685253354,57.97972402578743],[-125.4187242572077,57.97969727104525],[-125.41874447097896,57.979689508104144],[-125.41877532503686,57.97967618365509],[-125.41882744094997,57.97965622238051],[-125.41889258882098,57.97961276486956],[-125.41894379526192,57.97958270546255],[-125.41895782286271,57.979564821425335],[-125.41898986369587,57.97954365110821],[-125.41906585913537,57.979482295633744],[-125.41912672581242,57.97944330565979],[-125.41916517803836,57.97941767693413],[-125.41919171686125,57.97940994145937],[-125.41926215750519,57.97936650681969],[-125.41944648904266,57.9792730970619],[-125.41965505352319,57.97918427873202],[-125.41978732058003,57.979107465625866],[-125.41991704853179,57.97898914330565],[-125.4200741711671,57.97887766934922],[-125.42022363530535,57.978850279606135],[-125.42040425548892,57.97886003679537],[-125.42061607454536,57.978834039005015],[-125.42076878681459,57.97880217648342],[-125.42092565771836,57.978774818110516],[-125.42114400818097,57.97873651057749],[-125.42135849302281,57.97867463299072],[-125.42154865742233,57.97861264964172],[-125.4216815004873,57.978567241138435],[-125.42183448702123,57.97851743351247],[-125.42212756770641,57.97843122073297],[-125.42243767985575,57.97833723006626],[-125.42271123515843,57.978213919785574],[-125.42307036224328,57.978094343673185],[-125.42338454011188,57.97807999972682],[-125.42363811621975,57.978087824646416],[-125.42397388129753,57.97804329023515],[-125.42426217521647,57.977992942335774],[-125.42447962387092,57.97794453141572],[-125.42469676299159,57.9779151854522],[-125.42483016738845,57.9779011801726],[-125.4249692772289,57.97786028173902],[-125.42520380794669,57.97779960602889],[-125.42537046734662,57.97775433958753],[-125.42542469130952,57.97773326331555],[-125.42551696651014,57.97771347241525],[-125.42568269691272,57.97765922905851],[-125.42582383340103,57.97762282474157],[-125.42599824435383,57.97762357511442],[-125.42623690019518,57.97763918188564],[-125.42635614264752,57.97765203179306],[-125.426384621199,57.977656640485165],[-125.4264561879422,57.97767713631348],[-125.42655833043312,57.97770224977166],[-125.42674394931993,57.97772996493184],[-125.42699233283626,57.97773215334078],[-125.42714692680035,57.977714872045475],[-125.42724040351558,57.97768499101765],[-125.42734011939127,57.97766186610076],[-125.42742070681437,57.977645388429906],[-125.42748111750839,57.977634431975],[-125.4275055050114,57.977630050343244],[-125.42756283862896,57.97761347281807],[-125.42771349443237,57.97757710734999],[-125.42790232091238,57.97753305440967],[-125.42799646274722,57.97745943463432],[-125.42798428506235,57.97735619835365],[-125.4279627973637,57.97731012203302],[-125.42807148667437,57.977321803597455],[-125.4283216913053,57.97734306396876],[-125.42851603859503,57.97735286899481],[-125.42863893804683,57.977334328675724],[-125.42875776299813,57.9773056767087],[-125.42883938049881,57.97729032416883],[-125.428982643402,57.977253925646316],[-125.42922450293838,57.97719776057788],[-125.42945269785207,57.977135928822804],[-125.4296236281644,57.977087310701414],[-125.42963344650936,57.97699762743707],[-125.42955055849949,57.97688735970678],[-125.42972417316261,57.97687015677583],[-125.4300565808037,57.97690634553643],[-125.43033051335706,57.97689629966165],[-125.43066632785046,57.97684726249798],[-125.43099481915306,57.97679370700743],[-125.43112091187952,57.97677405647871],[-125.43123944443359,57.97676446769064],[-125.43146074835798,57.97673849325609],[-125.4315697765256,57.9767288636788],[-125.4315909836272,57.97672446776057],[-125.43175586942472,57.97672517004852],[-125.43202432037829,57.976727434573796],[-125.4321544028326,57.97672238039684],[-125.43225644744504,57.976684681423436],[-125.43245847069088,57.97667656833671],[-125.43259276176143,57.97674331177113],[-125.4327023958996,57.97683238154116],[-125.4328865600709,57.97688699950029],[-125.43302237523474,57.97692234517255],[-125.43317418902656,57.976948786150324],[-125.43337024338085,57.97698550891379],[-125.43354542938899,57.977004197762554],[-125.43374527250096,57.97700055972312],[-125.43390804561423,57.97700125038093],[-125.43394616408663,57.97699692583233],[-125.43404467337866,57.9769827633473],[-125.43423969608541,57.97694770031007],[-125.4343403528736,57.97693242514912],[-125.43445501189385,57.97689926422614],[-125.43460804222526,57.976844956073485],[-125.43478253205299,57.976769428928556],[-125.43503060091454,57.976650472117264],[-125.43535431062463,57.97649258023331],[-125.43563837964392,57.97637040998769],[-125.43579686772676,57.97630378640129],[-125.43587546939243,57.97627832277024],[-125.43595293824353,57.976258462123724],[-125.43604347763853,57.97621173914985],[-125.43617493843804,57.976115840245896],[-125.4363582812039,57.97601343101506],[-125.4365659240866,57.97591112416113],[-125.43676314794885,57.97579980051543],[-125.43688275216245,57.97571843123834],[-125.43695548104046,57.97566153845042],[-125.43703255509033,57.97559681302109],[-125.43708387600918,57.97555777484919],[-125.43713064976703,57.97554002716804],[-125.43717747389961,57.97551891499546],[-125.437195550843,57.97551114030665],[-125.43726696151818,57.97547218680579],[-125.43750233087455,57.97535317207329],[-125.43779524254604,57.975204117235705],[-125.43797837505666,57.97511516377449],[-125.43803908935294,57.97501335735871],[-125.4381435811584,57.97488145311181],[-125.43833535977228,57.974850856815415],[-125.43846405107253,57.97486822190599],[-125.43856746805632,57.974808092772214],[-125.43875502553183,57.97470569818016],[-125.43895810890628,57.974625799851616],[-125.43910048746406,57.974575928200565],[-125.43919203400493,57.97453257212531],[-125.43926447244863,57.97449474349374],[-125.4393198162285,57.97446918016338],[-125.43940460239412,57.97445383456743],[-125.43952743677652,57.97443864874968],[-125.43962470475236,57.97443681417794],[-125.43990395965811,57.97442228487219],[-125.44037352248203,57.974404067080435],[-125.44062721092688,57.97440288775843],[-125.44068644720436,57.97439977140385],[-125.4407891914226,57.97438450021006],[-125.44098392726683,57.97436737126625],[-125.441282605631,57.97432600300092],[-125.44151775303963,57.97429221908824],[-125.44165233701715,57.97426922957861],[-125.44180855707401,57.97428334194999],[-125.44197318240577,57.974300853973425],[-125.44205545347894,57.974312413636426],[-125.44209123792952,57.97432265731612],[-125.44217973385709,57.97434209385513],[-125.44249092662164,57.97438264913213],[-125.44295025222284,57.974413728169125],[-125.44330525311506,57.97442306073824],[-125.44353094717852,57.974456527468064],[-125.44386682707515,57.97454316647362],[-125.44428579745447,57.974658189745064],[-125.44458050318487,57.97474241234284],[-125.44467196499592,57.974776439864556],[-125.44478131963632,57.97481502802421],[-125.44509919689106,57.97490495370443],[-125.44551830753647,57.97501100121322],[-125.44587223919147,57.97509322395346],[-125.44604920560008,57.975134334974435],[-125.44608287808798,57.975144568816624],[-125.44613901203459,57.97506517100772],[-125.44631950016422,57.974867403825094],[-125.44661156427273,57.97462860152071],[-125.4469045578959,57.97439877498692],[-125.44714679226968,57.974099200864465],[-125.44738753563648,57.97375587942702],[-125.44764995933106,57.973520317105624],[-125.44803353172958,57.97331105143498],[-125.44845983537891,57.973070557743036],[-125.44874315372951,57.97284966011877],[-125.44891906571401,57.97260252254155],[-125.44912553302918,57.97236111875746],[-125.44944621782007,57.97211457831173],[-125.44972393530985,57.97191496534957],[-125.44984779207914,57.971829116269554],[-125.44990761481692,57.97178562223033],[-125.45001113636486,57.97171651251533],[-125.45018709631952,57.971609568350146],[-125.45039824992494,57.97148033782921],[-125.4507302236806,57.97125515065922],[-125.45108985111334,57.97101886095729],[-125.45125741534746,57.9709062731665],[-125.45158846247581,57.97074500886968],[-125.45221093112951,57.97045596187462],[-125.4525805210065,57.97026008528949],[-125.45274873094854,57.970102636228674],[-125.45304884149587,57.969814506004404],[-125.45334062392594,57.96951736865967],[-125.4535502898412,57.96927148590293],[-125.4537613274699,57.969003177452976],[-125.4539804899557,57.968757333061546],[-125.45423344869627,57.96851274820361],[-125.45459367238769,57.96815868945234],[-125.45497487708485,57.9678148095707],[-125.45523556104699,57.96761960291259],[-125.45557860755943,57.96735519580844],[-125.45604672474485,57.966773899302126],[-125.45624976419536,57.96610628361118],[-125.45624183118638,57.965705858361055],[-125.45624021112815,57.9655981831037],[-125.45636017283535,57.9655605394022],[-125.45675519238246,57.96542756288602],[-125.45729675473326,57.96524471184866],[-125.45766560231812,57.965093681465056],[-125.45789887512602,57.964965651699266],[-125.45804811413903,57.96487541277153],[-125.45798565480501,57.96481010925392],[-125.45775815156071,57.96475871502536],[-125.45760511035624,57.96474575580773],[-125.45761524727142,57.96462915612107],[-125.45766621981146,57.964392716964866],[-125.45771205801158,57.96421794203838],[-125.45771840916403,57.96399814475328],[-125.4576882113289,57.96367389515238],[-125.45765794231978,57.96350217557304],[-125.45759976087864,57.96343352471441],[-125.45749843752755,57.96320543891927],[-125.45741899662337,57.96285295060828],[-125.4573689749606,57.96258581945263],[-125.45733136870561,57.962409583961154],[-125.45728153774431,57.96220189551206],[-125.45724955873197,57.96207503090091],[-125.45723825224738,57.96205255401201],[-125.4572141058588,57.96204236185768],[-125.4571488752184,57.96202303014685],[-125.45707322501187,57.961993562096644],[-125.45699433199282,57.96196856697848],[-125.45672616938033,57.96188111613264],[-125.45630975729767,57.961742591073204],[-125.45598510570234,57.961688554787834],[-125.45566019506632,57.961652461354625],[-125.4553586832053,57.96153234689607],[-125.45523324860369,57.9614387465275],[-125.4551130406725,57.961349653573556],[-125.4549101564135,57.96120526704448],[-125.45478128560715,57.96112959692349],[-125.45458126234384,57.961079431238865],[-125.45417489459248,57.96097795156034],[-125.45389909702901,57.96090728696925],[-125.45384641785516,57.96089697738562],[-125.45384667869075,57.96087903376429],[-125.45385571769746,57.960838695226265],[-125.45386488709786,57.96078938487967],[-125.45389004303091,57.96073116764817],[-125.45390843540702,57.960700961295096],[-125.45399781301852,57.96058580829527],[-125.45417795617054,57.96033083391188],[-125.4543011608055,57.96006889716636],[-125.45435524387852,57.95983695925486],[-125.45438723581124,57.95967110196318],[-125.45437869042011,57.95953199586079],[-125.45425476356341,57.959335219106705],[-125.45397400251342,57.95909742482047],[-125.45366485949533,57.95885054140553],[-125.4534819852056,57.95856716395885],[-125.4534274896168,57.95824618014907],[-125.45341365356022,57.95803527395103],[-125.45339859795602,57.95798025680252],[-125.45338097330074,57.95795775377544],[-125.45336849186468,57.957944244143825],[-125.45323995816382,57.95777436479984],[-125.45291431351852,57.95735581679407],[-125.4526043013796,57.95695191231406],[-125.45246331014962,57.95676740124165],[-125.4525367004783,57.95673405637703],[-125.45287053934351,57.956734304820046],[-125.45354560343965,57.956734829464125],[-125.45460345281721,57.956639342825376],[-125.45582686414802,57.95627311139785],[-125.45692071885858,57.95580428162974],[-125.45761650545309,57.95554018752476],[-125.45793459667395,57.95545960868301],[-125.45822251246204,57.95534638196788],[-125.45857845600408,57.95513137109931],[-125.45886924091621,57.954892542727016],[-125.4589816523764,57.95471579624392],[-125.45899944348473,57.95458128421426],[-125.45900997540465,57.95450954870457],[-125.45901855527428,57.95450061123105],[-125.45893801690063,57.95444532928789],[-125.45869761188203,57.95426715121134],[-125.45839917012285,57.95401135116109],[-125.4581939115778,57.95381312735818],[-125.45810088057138,57.95367143606165],[-125.45806513704815,57.953440254837396],[-125.45810293339483,57.9531633896454],[-125.45822495775795,57.952905932809344],[-125.45838236079182,57.95268563021681],[-125.45852729667276,57.952450696952866],[-125.45866178108413,57.95220787044442],[-125.45880471389398,57.951965078157684],[-125.45893606503328,57.95179289528688],[-125.4590081661257,57.951700100695575],[-125.45903612932071,57.95166544666159],[-125.45912175987041,57.95158728681659],[-125.45926844409924,57.95145105488875],[-125.45938843833771,57.95133378064851],[-125.45950507721818,57.95122882955764],[-125.45966686825483,57.951143127370365],[-125.45991570650492,57.951101517283945],[-125.46014449938056,57.951057582523525],[-125.46021680705269,57.951024229324226],[-125.46023928487132,57.9509301117477],[-125.4602968988596,57.95074304937706],[-125.46034586920776,57.95056941040012],[-125.46038014969322,57.95046188225429],[-125.46041820482485,57.950386893750796],[-125.46054506062063,57.95023263591772],[-125.46079045002409,57.949988013491954],[-125.46104707695564,57.949770352807676],[-125.46124347660974,57.94962759078828],[-125.4613660572833,57.949550700525805],[-125.4614310394876,57.94951170950256],[-125.46160015629846,57.94943052087602],[-125.46186353817096,57.94933064653012],[-125.4619824418977,57.949288508271714],[-125.46193581998116,57.94922439303626],[-125.46169878784269,57.949033898078994],[-125.46166055642215,57.94875336176002],[-125.46213206169736,57.94850179935442],[-125.46244718025638,57.94840325420249],[-125.46244316411077,57.94838865815766],[-125.46242274657126,57.948339228646695],[-125.46239031283024,57.94824376807733],[-125.462365713116,57.948116936344384],[-125.46239258489945,57.94801049964592],[-125.46247642465478,57.94790877873087],[-125.4625952857313,57.947795983668],[-125.46279717253613,57.9477115612074],[-125.4631417738177,57.9476176194166],[-125.46349554379194,57.94747436649981],[-125.46370882034657,57.947331669189104],[-125.46373940026699,57.947261136061435],[-125.46369514617416,57.9471790866938],[-125.46373060657514,57.94706259066535],[-125.46385825401502,57.94699917705744],[-125.46402701843712,57.94694153624882],[-125.46423900897896,57.946740513718225],[-125.46442208122578,57.94649339222955],[-125.46448366140893,57.946396066933],[-125.46464973118901,57.94623074821926],[-125.46498068914185,57.94590683467757],[-125.46522964492395,57.94563081708066],[-125.46538362521855,57.94542395275836],[-125.46552714979757,57.945283216259405],[-125.46584455509546,57.94509495088981],[-125.46630483996228,57.944810805890924],[-125.4667603208802,57.94456701499891],[-125.46734695309524,57.9443091668921],[-125.46792698699046,57.94406923431625],[-125.46840477722117,57.9438894538104],[-125.46876983056755,57.94376529852994],[-125.46894367038291,57.943720008735916],[-125.46909327587977,57.943670136133214],[-125.46932237695329,57.9436003924451],[-125.46951936890733,57.94356080167096],[-125.46968561741842,57.94353006048811],[-125.46984820987866,57.94345780830373],[-125.4699251770675,57.943391944637675],[-125.46994176920539,57.943339299149656],[-125.46991786753925,57.94331116611126],[-125.46994530837843,57.94331239673361],[-125.46999399622636,57.94330473965581],[-125.47013161145654,57.94328173473988],[-125.47031567575793,57.94326003575471],[-125.47053869477914,57.943247463386435],[-125.47072995289906,57.943239250641795],[-125.4707944103408,57.94323726347688],[-125.47080944728077,57.943219378842905],[-125.47087790098503,57.9431579669389],[-125.47107378689765,57.94304659224044],[-125.47132245661271,57.94293654811635],[-125.47143083245231,57.94288987401263],[-125.4714656813904,57.94281487036308],[-125.47154415799947,57.942641345948864],[-125.47161347648307,57.94251825358643],[-125.47168993427462,57.94248827557837],[-125.47186571095934,57.94252934671711],[-125.47208975038389,57.94259416064567],[-125.47220338953768,57.94262377008256],[-125.47231005344783,57.942623070795534],[-125.47252487176965,57.94259251836505],[-125.4727238412283,57.94256190290904],[-125.47294707427227,57.94253250460215],[-125.47336772509387,57.94250837198684],[-125.47377360704246,57.94248305823376],[-125.4739374214079,57.94247473258483],[-125.47399572847127,57.942458139866055],[-125.47406882070452,57.942442726968615],[-125.47418775170921,57.942396092306446],[-125.47434487087766,57.94233727141432],[-125.47450197387644,57.94227957179732],[-125.47475614958755,57.94222786207708],[-125.47514159666845,57.94215311686487],[-125.47548046906685,57.942086037941756],[-125.47570271215419,57.942052145087864],[-125.47587497087702,57.94204272876219],[-125.47595420985644,57.942040797226255],[-125.47595395970437,57.942058740532225],[-125.47595873090971,57.942094647866554],[-125.47600145520137,57.942060048739606],[-125.47601339220134,57.942037665296006],[-125.47603554391208,57.94203887387754],[-125.47609361618372,57.94204022362101],[-125.47614857455595,57.94203707503128],[-125.47629114038864,57.94203651363445],[-125.4765508827096,57.9420397767697],[-125.47681275266508,57.942041926230424],[-125.47709355247393,57.94204975701651],[-125.47732821627113,57.94203385446418],[-125.4774034182922,57.94201844802559],[-125.47743210864954,57.94200510227389],[-125.47745881303163,57.94198389810733],[-125.47747271950666,57.9419704944002],[-125.47748919132614,57.941925698248774],[-125.47751166722186,57.94182821429843],[-125.47754670567193,57.94173863020988],[-125.47756608741518,57.941711789744204],[-125.4775978136027,57.94170854951631],[-125.47766237582788,57.9416975873167],[-125.47779142358372,57.94168239162864],[-125.47794163755712,57.9416639141523],[-125.47808446797599,57.94164540760191],[-125.47823795010929,57.941619091966956],[-125.47850802655157,57.94156295132945],[-125.47891251354035,57.9414849052498],[-125.47926609466542,57.94142236036108],[-125.47940146113288,57.941408309323236],[-125.47951566146833,57.941397540064074],[-125.4797446051829,57.94133675028411],[-125.47999466753843,57.941276042495176],[-125.48023118911028,57.94127808638272],[-125.48035443450028,57.94129987565718],[-125.4804274133688,57.94129230948624],[-125.48061997171573,57.941266143419696],[-125.48086970695027,57.94122898457385],[-125.48103369865684,57.94120607122003],[-125.4811449242087,57.941181830793894],[-125.4813058025152,57.94115554044142],[-125.48151326680797,57.94112045895798],[-125.48164863134824,57.94110640564288],[-125.48169961143543,57.94108529504605],[-125.48174232929586,57.94105069411629],[-125.48175729830851,57.941037294113436],[-125.48180759802527,57.94106552754555],[-125.4819102941589,57.94112312401912],[-125.48196157980385,57.941155847291675],[-125.48199214944714,57.94116045214334],[-125.48206175049506,57.94116745166831],[-125.48212074555391,57.941177774505185],[-125.48220283288619,57.94119828065712],[-125.48238277712674,57.9412438401044],[-125.48263881482437,57.941286330084296],[-125.48291308926328,57.941307581496815],[-125.48307987088377,57.941312714357956],[-125.48324250575125,57.941312223354686],[-125.48348331324748,57.941309792019],[-125.4836354500131,57.941304773796446],[-125.48374210996656,57.94130406536415],[-125.48399864222579,57.94131066612136],[-125.4843991572957,57.941367170042355],[-125.48474590269291,57.941416735853984],[-125.48496081156894,57.94137831322684],[-125.48518982315349,57.941311906813226],[-125.48538943922044,57.94130931296189],[-125.48552449601794,57.94131768484551],[-125.48563758541947,57.941311392128085],[-125.48568403278578,57.94131269284341],[-125.48578941508839,57.94132880058521],[-125.48603377173667,57.94137572503998],[-125.48622949288617,57.941426947687184],[-125.4863692700697,57.94147571148717],[-125.48654390329695,57.94152460939305],[-125.48670410549704,57.941547656634896],[-125.4867885530704,57.94155022478592],[-125.4868476112651,57.941556059706116],[-125.48694895451146,57.941558692789044],[-125.4870576980648,57.94156135426863],[-125.4871199617086,57.94156383685273],[-125.48724361136125,57.94155758339595],[-125.48756464390232,57.94155769625346],[-125.4879328574867,57.94150527831504],[-125.48814228129073,57.94140290308927],[-125.48819585868748,57.941345911479324],[-125.48832582800978,57.941340802801136],[-125.48856850317705,57.94135631370152],[-125.488697164,57.941369143894214],[-125.48875465934519,57.94133459740648],[-125.48887094122176,57.94124756506177],[-125.48894809925001,57.94116486871361],[-125.48900702433895,57.94110341123622],[-125.4890561932248,57.94105986059177],[-125.48907909166257,57.9410061156148],[-125.48916637042156,57.940878597344586],[-125.48932572612232,57.94073004637489],[-125.48941313696417,57.94066981938303],[-125.48942170644598,57.940660880085],[-125.48944518111126,57.94064302575216],[-125.48952689384228,57.94061417928429],[-125.48964622619414,57.940536130143265],[-125.48971019334246,57.940413008403894],[-125.48970832795001,57.94031767253133],[-125.48968625423277,57.94023235294096],[-125.48973185321314,57.94006205732303],[-125.48987517742894,57.939850639702584],[-125.49000608527535,57.939697493189996],[-125.49004899168249,57.939648310729],[-125.49003855414482,57.939639298692384],[-125.48988534794391,57.9395680571683],[-125.48961248304926,57.939443646262156],[-125.48948126149688,57.93938594661247],[-125.4894711896919,57.93935001961361],[-125.48945423755956,57.93927705632723],[-125.48944410488593,57.93924561514995],[-125.48971396195255,57.93928029380751],[-125.4903114268916,57.93929603766662],[-125.49071480061897,57.939217951896666],[-125.49080902726905,57.93912186173279],[-125.49084678238617,57.939063687272075],[-125.49086831063384,57.93903348865012],[-125.4908747675826,57.939024541208596],[-125.49089741918158,57.93898873930995],[-125.49092858043144,57.93894960536821],[-125.49094155501284,57.9389272246618],[-125.49096425204583,57.93888805839169],[-125.49102148361031,57.93879519138054],[-125.49111856406888,57.93864415783965],[-125.49124608898425,57.938428192749335],[-125.49138149587623,57.938175247778254],[-125.49152522833442,57.93793242810426],[-125.49164202298387,57.93772875850721],[-125.49169066596468,57.93764483066995],[-125.49169818679424,57.937635887259944],[-125.49174212089294,57.937587829807896],[-125.49184392223022,57.93747830985402],[-125.491933933346,57.93738108151784],[-125.49200964870951,57.93732529454692],[-125.49214051259557,57.93725289500056],[-125.4922911258798,57.93720300076484],[-125.4924003854269,57.937165285510424],[-125.49248325685399,57.93712746970285],[-125.49252620250164,57.937074922219594],[-125.49253779039282,57.93699870363794],[-125.49255643990817,57.93686867946052],[-125.49257168802667,57.936756586508956],[-125.49258520577614,57.936693833413734],[-125.4925984813083,57.93664902355577],[-125.4926253380575,57.9366143589815],[-125.49271808220878,57.93654966440196],[-125.49287432570362,57.936472874754905],[-125.49299874409009,57.936408300492694],[-125.4931009811314,57.936343641771565],[-125.49328966874722,57.93620977806477],[-125.49349637291708,57.936071496540244],[-125.49363808988913,57.93597670670871],[-125.49376613245477,57.935877378771345],[-125.49386854790309,57.935799262081815],[-125.49395507197613,57.935724449517664],[-125.49401495225433,57.9356686014111],[-125.49404131804734,57.93559243892078],[-125.49406159034729,57.93549830917081],[-125.4940762146841,57.935432195694354],[-125.49408818228895,57.935405324921774],[-125.49413635083637,57.93535728288649],[-125.49421820627049,57.93523759215594],[-125.49428475882681,57.935077469054114],[-125.49436959293577,57.93497236916966],[-125.49454903883753,57.93489678724641],[-125.49478642525207,57.93483151828043],[-125.49502054648573,57.93477408708009],[-125.49524918389842,57.934731214302275],[-125.4953826495563,57.93469919593802],[-125.49545577629104,57.934678164127305],[-125.49555780879533,57.934628082490626],[-125.49570953142704,57.93457370275768],[-125.49588012048952,57.93452836626837],[-125.49597366068038,57.93448161672626],[-125.4959703747567,57.93433356540946],[-125.49594482226271,57.93411253199344],[-125.49594087494526,57.93401382450713],[-125.49599171712181,57.93400168019839],[-125.4961070577658,57.9339819291762],[-125.49620769457324,57.93395763645496],[-125.49626692260614,57.93395000976306],[-125.49630063196732,57.933955744686195],[-125.49645153568211,57.9340404278336],[-125.49673227473714,57.93420634956424],[-125.49689044235244,57.934300031708005],[-125.49690725972044,57.93430570271759],[-125.49704868858343,57.934309600974586],[-125.49729250614502,57.934316128296125],[-125.49756679795988,57.934332863605185],[-125.49794298272589,57.93438811340363],[-125.4984100124202,57.934441461019226],[-125.49889950532632,57.93447246131748],[-125.49929195680522,57.934496366275106],[-125.4995438595913,57.93445020904349],[-125.49978322670555,57.934393910739836],[-125.50001024568817,57.93447214644871],[-125.50019100500225,57.934535628735375],[-125.50027239610759,57.934528083363155],[-125.50030511888248,57.93452932754836],[-125.50033999594667,57.93452609377557],[-125.50045833289907,57.93451980828827],[-125.50067494039483,57.934508283335575],[-125.50082499533536,57.93449875182059],[-125.50096413514387,57.93451609542296],[-125.50119609462386,57.93454051530215],[-125.50147859815345,57.93457521738362],[-125.5017486705866,57.93459192829667],[-125.50187004754787,57.93459462496995],[-125.50190904570746,57.934600378238244],[-125.50199428837601,57.93462088386541],[-125.50204378501583,57.9346311623439],[-125.5020556872598,57.93460877668198],[-125.50208255072438,57.934574110340165],[-125.50209551715605,57.93455172865159],[-125.50218441077985,57.93453635959475],[-125.50244700166186,57.93448014324955],[-125.50280504195742,57.934391758795776],[-125.50320635892825,57.93430353470102],[-125.50362445002759,57.934225465432775],[-125.50389542357006,57.934173763508035],[-125.50412017911249,57.93410394501209],[-125.5044857711822,57.934002126137486],[-125.50483004132504,57.93391704964641],[-125.50495770769002,57.933843504529825],[-125.50507156640435,57.933775515553336],[-125.50539987230455,57.933780098736],[-125.50584755931769,57.93377839472697],[-125.50626603842176,57.93374966490773],[-125.50655000012055,57.93375295948303],[-125.50664177144698,57.93376002822953],[-125.50668809249446,57.93377029321935],[-125.50679780338574,57.933777428253144],[-125.507004364988,57.933806230046436],[-125.50738373408707,57.93386146491568],[-125.50776081658108,57.9339301483182],[-125.50798198438181,57.93397246059418],[-125.50814007067272,57.93399435264773],[-125.50821059328739,57.93401031393885],[-125.5082619595252,57.93395779272268],[-125.50836154739001,57.93385161713755],[-125.50844209944735,57.93374649279502],[-125.5085505280914,57.933610069080636],[-125.50870239457133,57.93346146887333],[-125.50881227141852,57.933374396510835],[-125.50887717869139,57.93333650455227],[-125.50892415896456,57.9332963035077],[-125.50896666716436,57.93327515154079],[-125.50899433627882,57.93325843091275],[-125.50913334810978,57.93320398924605],[-125.50937616128557,57.933125256487614],[-125.50948961481102,57.9330875429337],[-125.50957147127728,57.93304522701255],[-125.50978625162877,57.932929380761315],[-125.51002406682974,57.932828198407655],[-125.51014432076099,57.932754621209206],[-125.51013927213302,57.932655910375125],[-125.51022757816914,57.93260464575596],[-125.51056800079428,57.93264963487205],[-125.51090590736365,57.93264526775106],[-125.51110923454941,57.932597789088184],[-125.51126367706125,57.93257480393766],[-125.51132923422749,57.93256719379128],[-125.51141736355909,57.93252938578131],[-125.51170155087316,57.932433977995714],[-125.51210927681652,57.93233677889092],[-125.51236713457291,57.93223678732419],[-125.51242434442763,57.93213942592033],[-125.51250597742428,57.9321139299745],[-125.512689846291,57.9321011443396],[-125.51291182245245,57.932080647207336],[-125.51301959246335,57.932074312002435],[-125.51302832866831,57.93205191388004],[-125.51316175099551,57.93193912959381],[-125.51350514810451,57.93175533567971],[-125.51385270992624,57.93165679023226],[-125.5140005807577,57.93165172200657],[-125.51409484866306,57.93162739268153],[-125.51433564575203,57.93153967173301],[-125.51459841469782,57.9314666098998],[-125.5147256483714,57.9314244561736],[-125.51476702916037,57.931407784317685],[-125.51480114426373,57.93138211399041],[-125.51484494265523,57.9313430208912],[-125.51487907211573,57.931316229097284],[-125.51488769128628,57.93130280245759],[-125.51495586322402,57.931255947531895],[-125.5150837321539,57.931164449751975],[-125.51515401497153,57.9311176024137],[-125.51517313302874,57.9311086999544],[-125.51529196272821,57.931063150636874],[-125.51549862228514,57.931001098019806],[-125.51561384478839,57.93099030182657],[-125.5156569893745,57.9310005521285],[-125.51582080217588,57.930987689326585],[-125.51623185879728,57.93095777997839],[-125.51680521850784,57.93095088789347],[-125.51724001593585,57.93096367852254],[-125.51752583867969,57.93098490052436],[-125.51777363084186,57.93100934881763],[-125.51787793387297,57.931025427168244],[-125.51798406335153,57.931065063550435],[-125.5181994934491,57.931142104526714],[-125.51832379173509,57.931163862311635],[-125.51834302399106,57.931145987809025],[-125.51837186642142,57.931120297529475],[-125.51845054746512,57.93107684331951],[-125.5185704777691,57.931026809070616],[-125.5186894897133,57.93096667789949],[-125.51882467503066,57.93088081051672],[-125.51898612848498,57.93080400981338],[-125.51905728086798,57.93077062159198],[-125.51910605720607,57.93075397509705],[-125.51915578289305,57.93074630400885],[-125.51922700671214,57.93070730845828],[-125.5193642438773,57.930625933959895],[-125.51943750693397,57.93059255315572],[-125.51947052788636,57.9305702422232],[-125.51956830889664,57.93051900575346],[-125.51966289844023,57.930387009752764],[-125.51964490967008,57.93022432751879],[-125.51967027279538,57.93014030649297],[-125.5198375397471,57.93010389975263],[-125.52006623496422,57.93005201304029],[-125.52029175413502,57.93000011450878],[-125.52046980524726,57.9299458018196],[-125.52055263252792,57.929907968851786],[-125.52061476120792,57.929837537922545],[-125.52071885464494,57.929705575471246],[-125.52079888774719,57.9295555824773],[-125.52084060277772,57.92943012466016],[-125.52085833614181,57.92936402002726],[-125.52090335883055,57.92931034997856],[-125.52099168258788,57.929254592561584],[-125.5210500224032,57.92923349377291],[-125.52118905901852,57.92917455397778],[-125.52147525035788,57.92908361906087],[-125.52166678453183,57.92904841871717],[-125.5217004363114,57.92905863297252],[-125.52179081250489,57.929007368403234],[-125.5222284913537,57.92887547997678],[-125.52284788792994,57.928730782906285],[-125.52324112438122,57.92860658257026],[-125.52347506571304,57.92847283964086],[-125.52362088402226,57.92837803373572],[-125.52365493350759,57.92835684700728],[-125.52374520861133,57.9283145527768],[-125.5238694164924,57.92825892176588],[-125.52400635076177,57.92819997160954],[-125.52416344617717,57.928132121334244],[-125.5243156234802,57.928119206640346],[-125.5244706895912,57.9281276105093],[-125.52461555687358,57.92810906190875],[-125.52471754688383,57.92805783685541],[-125.52476426268518,57.92803669502569],[-125.52481314632307,57.92801107492569],[-125.52489501428015,57.92796426397832],[-125.52502279117078,57.92787724276145],[-125.52519121817208,57.927747749429145],[-125.52529917235898,57.927642713416425],[-125.52531961651994,57.92761138436172],[-125.52534499314918,57.92760811026076],[-125.52542016078519,57.92759155552961],[-125.52549735188884,57.92758061543856],[-125.52552485381035,57.92757622737537],[-125.52553978770533,57.92756394409395],[-125.52557390611588,57.92753714966803],[-125.52559418295488,57.9275203994202],[-125.52562701090208,57.92751154431431],[-125.52574625828616,57.92751533321615],[-125.52599097080936,57.927530783282734],[-125.52619029891964,57.9275449500551],[-125.52635586522979,57.927558996540476],[-125.52650442650113,57.9275808328702],[-125.526610908295,57.927592426108696],[-125.52671221667784,57.92759502892617],[-125.52685567811714,57.9276033888077],[-125.52704239627236,57.927613023552425],[-125.52716797766348,57.927616833659776],[-125.52729466261553,57.92761616158168],[-125.52747188907483,57.927625762056316],[-125.52760808001135,57.927624001890116],[-125.52773377417097,57.92761883990132],[-125.52798316100858,57.927598415022366],[-125.52831285677689,57.92757154497727],[-125.52851996319363,57.92755545542319],[-125.5286172741803,57.92754009872819],[-125.52869019972832,57.927532506189486],[-125.5288159496416,57.92752285739904],[-125.52902729197078,57.927505660540604],[-125.52922589686325,57.927494025827734],[-125.52933981606385,57.92750115717565],[-125.52945579035121,57.927512781662145],[-125.52963524027157,57.92751341514957],[-125.52972931938822,57.9275025322181],[-125.52973793238216,57.92748910467215],[-125.52978864263275,57.92748591911999],[-125.5299827444947,57.92749669729022],[-125.53023579126197,57.92752114090923],[-125.53042869224716,57.92754425064018],[-125.53063394969888,57.92759095500525],[-125.53078658491337,57.927626258840945],[-125.53083707139177,57.927641016020814],[-125.53086966036598,57.92765122419993],[-125.53096325279111,57.92768071250255],[-125.53108317081674,57.92771477935203],[-125.53119474217131,57.92774096626719],[-125.53127998525284,57.92776145301644],[-125.5313337032452,57.92777173539425],[-125.53136320400645,57.92777632511735],[-125.53141501755555,57.92776865684393],[-125.53159491574505,57.92773340142333],[-125.53209223114251,57.9276398213743],[-125.53271957309491,57.92761622814105],[-125.53305342677287,57.92776431414647],[-125.533161186945,57.92784319632039],[-125.53322910711177,57.927814275358635],[-125.5332756507955,57.927806587904975],[-125.53347027010444,57.92777586749108],[-125.53395214984715,57.92773493672819],[-125.53457899253162,57.927751706801544],[-125.53516733528092,57.92780871345393],[-125.53558061670762,57.92785164962265],[-125.53576606965842,57.92787921164218],[-125.53585559330942,57.92789522439],[-125.53625939834447,57.92793700395241],[-125.53695966561958,57.92807738272176],[-125.53734425230502,57.928308624871086],[-125.53740224767151,57.92848490093875],[-125.5374455213207,57.92857140628114],[-125.53750528620868,57.928605258561184],[-125.53762014720085,57.92862135805386],[-125.53777505603512,57.92864432532448],[-125.53786353518728,57.92866033310429],[-125.53797107071487,57.92867192091029],[-125.53817674311395,57.92868609172921],[-125.5383845851031,57.92869690525896],[-125.53858509821704,57.92870208561312],[-125.53882664842196,57.92871750113575],[-125.53905437419475,57.92874184036966],[-125.53919773280823,57.928759158558435],[-125.53928210026234,57.92876617921506],[-125.53935803649318,57.92877204918129],[-125.53947084563308,57.92878477549887],[-125.53960781592988,57.92880655715235],[-125.53973202278856,57.92883614505399],[-125.53984154713405,57.928857831677014],[-125.53993107485024,57.92887384170352],[-125.5400806536796,57.928814918723695],[-125.54031241670374,57.92876749403436],[-125.54045135666244,57.9288879732078],[-125.54049475308604,57.9290507396949],[-125.54062133302452,57.92905902653469],[-125.54081545341506,57.92898343381059],[-125.54095208674129,57.928945773658974],[-125.5410282289204,57.92893482094987],[-125.54109799622542,57.928927210733264],[-125.54117514766203,57.928920747397754],[-125.54125540278568,57.92891878068278],[-125.54160254570344,57.92893231160435],[-125.54226753654186,57.92902655984392],[-125.54266020130544,57.92920398269093],[-125.54272615278465,57.92933654548324],[-125.54275599423809,57.9293994516327],[-125.54288726265091,57.929457098220354],[-125.54314092855253,57.92951852879953],[-125.5433432311258,57.92955062401853],[-125.54347277090922,57.92957686222343],[-125.54356547727106,57.929592880697705],[-125.54365390667894,57.9296133704467],[-125.54375565711464,57.92958007393408],[-125.54382745183166,57.929491721519234],[-125.54387870772878,57.9294436726302],[-125.54394118955543,57.929428185515405],[-125.54398552655877,57.92942833722794],[-125.54404055597861,57.92941731055018],[-125.54413896702265,57.92939746027789],[-125.54441851254613,57.92932776194398],[-125.54488955677296,57.92922395075509],[-125.54528944204766,57.929154661507475],[-125.5457611089255,57.92908561574602],[-125.54644879925571,57.92896122892206],[-125.5471470007852,57.92884023878272],[-125.54770756210952,57.92875242280397],[-125.54804084364562,57.92868962828184],[-125.54842506664467,57.928605697161636],[-125.5489455752695,57.92851213282761],[-125.54927553289927,57.92846278192681],[-125.54961345102745,57.928453830900715],[-125.55007410222647,57.92842174205364],[-125.55030801509481,57.92836982133526],[-125.55048534331975,57.92828406455312],[-125.55083715927913,57.92817197989566],[-125.55124832793116,57.92803990731816],[-125.55167368940002,57.927867507493616],[-125.55214377282927,57.92766385485493],[-125.55254486917235,57.92749024930605],[-125.55269767442779,57.92742347272237],[-125.55271277279616,57.927396607578885],[-125.55278023605678,57.92713776926969],[-125.55286150501564,57.92669505267904],[-125.5528929471804,57.92644843004906],[-125.55289083874794,57.92635870367342],[-125.5528971383216,57.926273491479975],[-125.55300563142642,57.926204322988404],[-125.5533024385589,57.92609989806982],[-125.55368884171172,57.92591726825858],[-125.55399309518285,57.9257186615911],[-125.55414278209038,57.92564626561916],[-125.55430929123425,57.925669252417414],[-125.55461184074584,57.92570390865702],[-125.5548880469561,57.92573399025991],[-125.5550932463397,57.92569878780996],[-125.55540713114232,57.92557759295562],[-125.55578881969672,57.92543531511173],[-125.55606488636953,57.92529829183195],[-125.5562884394518,57.925138663374014],[-125.55646082309958,57.92502148086331],[-125.55681752946835,57.92493743446889],[-125.55741189211905,57.92484071879977],[-125.55798393621433,57.92475738433668],[-125.55854646973253,57.924674015927586],[-125.55899921471509,57.9245914033599],[-125.55937586927767,57.924516388110014],[-125.5597756909249,57.92444593429561],[-125.56017106609451,57.92439452991484],[-125.56064053493613,57.92432542487255],[-125.56101285683854,57.9242593626544],[-125.56118210315128,57.92422851843479],[-125.56125402097501,57.924216418877016],[-125.56144859883486,57.924185657723385],[-125.56185905949535,57.92410738230635],[-125.562410125469,57.92400938066121],[-125.56296841602432,57.92392597978666],[-125.56323922065366,57.92387527924241],[-125.56329852336702,57.923858651292804],[-125.56338647586406,57.923829780832776],[-125.56368761349658,57.92371188954539],[-125.56414137537564,57.923539544047436],[-125.56435761554486,57.923460625612066],[-125.56438093996624,57.92345172997052],[-125.5644846104864,57.92343188207977],[-125.56468033252466,57.923392148101435],[-125.56489198553133,57.923344615453225],[-125.56517375302924,57.92325805926271],[-125.56544187136383,57.92316585054585],[-125.56567483871191,57.92310044240224],[-125.56599233308599,57.923027458791154],[-125.56639906697997,57.92290429798432],[-125.56685692519078,57.92274092867155],[-125.56717471108284,57.92264214907003],[-125.56749209550216,57.922578133468264],[-125.567868609874,57.922512065919506],[-125.56803351785378,57.92249017091058],[-125.56810230686953,57.922473571613246],[-125.5682619972367,57.92244717347133],[-125.56840580859937,57.922424088163886],[-125.56867444560429,57.92237673414686],[-125.56909959631805,57.92230297017859],[-125.56934073867411,57.922260011854426],[-125.56943807063021,57.92224013966761],[-125.56956619441111,57.92220354460978],[-125.56972193027259,57.92215358078098],[-125.56987996492131,57.922085680441775],[-125.57002746151267,57.92201774591762],[-125.5701338512339,57.921944071208486],[-125.57016912074567,57.92190493303398],[-125.57017456016037,57.92189149276894],[-125.57018641781558,57.92186910133289],[-125.57020682551412,57.921838887085464],[-125.570224225039,57.921794083839366],[-125.57022901062425,57.92174475397299],[-125.57022413511687,57.92170885075714],[-125.5702413295273,57.92168199059782],[-125.57034967499534,57.92162177986166],[-125.57051956770704,57.92153260885511],[-125.57062137491525,57.921490320576105],[-125.57065729769089,57.9214870718785],[-125.57069112241656,57.921482694927946],[-125.57070809877958,57.92147489923685],[-125.57076564193147,57.92142686081659],[-125.57091606401781,57.921287159846685],[-125.5710128167672,57.92113270666923],[-125.57097278577464,57.921032765773354],[-125.57111245963081,57.92090985228416],[-125.57151596712539,57.92069582576794],[-125.57176435691068,57.920477935197425],[-125.57165702258126,57.92026450854213],[-125.57144350042448,57.92001597440517],[-125.57132763676042,57.91981037051565],[-125.5713055561182,57.91971048760606],[-125.5713249490581,57.91967578407101],[-125.57135938554555,57.91961757781946],[-125.5713888305735,57.919533561433774],[-125.5713426894759,57.91941565745826],[-125.57123138064468,57.91927287119981],[-125.57117422649534,57.919195305070225],[-125.57117443107043,57.9191773620325],[-125.57117430064359,57.919095493503455],[-125.57117262619185,57.918965396338514],[-125.57117123150206,57.918902588929754],[-125.57120835208391,57.91888588618777],[-125.57127814576761,57.91887377449511],[-125.57133860308006,57.91884817496164],[-125.5713938134661,57.91881919408166],[-125.57145456038552,57.918766679897125],[-125.57152170719131,57.91870970034824],[-125.57154521859289,57.91868398190726],[-125.57157401100964,57.91865715896396],[-125.57171294620856,57.91859816718326],[-125.57192025264506,57.91855846011486],[-125.57206720447074,57.91853538109477],[-125.57244864952452,57.91849623239786],[-125.57305290162849,57.918445460488854],[-125.57349547378449,57.91841211206786],[-125.5738873551129,57.918383085991515],[-125.57429517165151,57.91834401636342],[-125.5746417399473,57.91830811440848],[-125.57488489765143,57.91827076016468],[-125.57497805838773,57.91824526334959],[-125.57508284453698,57.91821756058785],[-125.57524699920457,57.918167617435216],[-125.57532321086498,57.9181476737456],[-125.57541319657103,57.9181221665113],[-125.57568424626224,57.91804452645037],[-125.57599960581074,57.917968148344],[-125.57627910839187,57.91788941251364],[-125.57658914677847,57.9178175020249],[-125.57683025182294,57.91777453034889],[-125.57697076476208,57.91776039733805],[-125.5770553163463,57.91774945098155],[-125.57708069442135,57.91774504562529],[-125.57708829183674,57.91772712608139],[-125.57711004122126,57.9176699997028],[-125.57714129253436,57.91761178200339],[-125.57717455780272,57.917563663998706],[-125.57720672141527,57.917518906927945],[-125.57724409003943,57.91747977375964],[-125.57733186049045,57.91737014735172],[-125.57748726939272,57.91715868090897],[-125.57764583399258,57.91694722434102],[-125.57773562448875,57.91684545448288],[-125.57778565539566,57.91680636132562],[-125.57783765004065,57.91678185358194],[-125.57795540806532,57.916726152788364],[-125.57815043659949,57.91665050998703],[-125.57829965547806,57.916613973625104],[-125.57837690921563,57.91659403153463],[-125.57843946860287,57.91656843551949],[-125.57847020167493,57.91655619651035],[-125.57849778988236,57.91654282606775],[-125.57864248536524,57.91653319046976],[-125.57884484881731,57.91655625986044],[-125.57896280222474,57.916577940738634],[-125.57902911360998,57.91659272948464],[-125.57909125843352,57.91660414060276],[-125.57914189962761,57.91660542205893],[-125.57917776681612,57.916606656831256],[-125.57934265486242,57.91658362652453],[-125.57968622832396,57.91652975849141],[-125.57998545824304,57.916479114221204],[-125.58019283187973,57.91643154430756],[-125.58043099982034,57.91636612742719],[-125.58062462458399,57.916321877982],[-125.58083603020064,57.91629114192223],[-125.58108968401231,57.91625717394619],[-125.58141522091626,57.91621221658899],[-125.58179733040124,57.91620444475715],[-125.58197240640033,57.91621396601344],[-125.5819811477109,57.91618707800482],[-125.58206040932419,57.91608190789054],[-125.58219382954573,57.91594550626222],[-125.58227701222462,57.91586726377091],[-125.58234533370347,57.915796824979424],[-125.58242128674195,57.91570510203728],[-125.58251106135288,57.91560332909295],[-125.5826381840434,57.91546354293699],[-125.58275026305458,57.915349503502966],[-125.5828014499563,57.91530144036341],[-125.58283776375013,57.91526230243899],[-125.58289106091664,57.91521424587787],[-125.5829208565381,57.915191909655384],[-125.58296737443722,57.91518420495086],[-125.58307832849482,57.915169973043994],[-125.58317126473993,57.9151635349993],[-125.5833132966299,57.9152032309364],[-125.58359086395424,57.915296059756486],[-125.58384738963063,57.915383214901134],[-125.58400950164553,57.91541960839585],[-125.58418859721985,57.91544708289872],[-125.58443149154785,57.915431018641314],[-125.58469737949012,57.91533876530299],[-125.58499718706851,57.915234280886175],[-125.58541718756186,57.91513802021719],[-125.58580856695475,57.915054005484315],[-125.58606777641933,57.91499425146834],[-125.5862803155987,57.91495453857443],[-125.58642765596797,57.91489555789485],[-125.58651855089062,57.91478593553274],[-125.58664732343304,57.914591198610445],[-125.58681029297912,57.91435731608687],[-125.58698343571936,57.914254677385706],[-125.58723638114367,57.91428349817126],[-125.58761254598315,57.91433400795756],[-125.58816239036447,57.91442542675478],[-125.58866045381922,57.914524533732006],[-125.58887652214811,57.914547630165934],[-125.58893053111706,57.91453097471664],[-125.58898125562934,57.91452440237756],[-125.58906474502444,57.91451232371917],[-125.5891387825009,57.91449685143795],[-125.58918430047046,57.91448465559581],[-125.58935242826597,57.91445265119998],[-125.58964534622777,57.914397480084865],[-125.58993392775143,57.91435126677251],[-125.59020765459607,57.91431397893535],[-125.59052567113056,57.91427794814913],[-125.59092508166802,57.914229830354756],[-125.59131153613701,57.91420858698195],[-125.59154789327668,57.91421043332271],[-125.59161906411398,57.91416803552638],[-125.59161998939233,57.914082806402064],[-125.59162087814262,57.914000941592526],[-125.59161804495,57.91396953166348],[-125.59164653198143,57.91397074045867],[-125.59173303514643,57.91397324852795],[-125.59185330516004,57.91397585999581],[-125.59194359126535,57.9140187525455],[-125.5919897294922,57.914142255897254],[-125.59214637077831,57.91429413442549],[-125.59242395319016,57.91438694475396],[-125.59256196535277,57.914408674905104],[-125.59266193620671,57.91443365302533],[-125.59290279052547,57.91450840648313],[-125.59314157910367,57.914577545831875],[-125.59338657137253,57.914660161372886],[-125.59371344436516,57.91478115630632],[-125.59403878854899,57.914947004743176],[-125.59428486755995,57.91512494725541],[-125.59447647001465,57.9152645934055],[-125.59467844966295,57.91532352471527],[-125.59478068463204,57.915336171928665],[-125.5948443580657,57.91540028961862],[-125.59498116785294,57.91553416105882],[-125.59510871424307,57.91564557472937],[-125.59518188249592,57.9157108426054],[-125.59520382940654,57.91572997436041],[-125.59527462494431,57.91572233912256],[-125.59551425999118,57.91561652679415],[-125.5957967788072,57.91544804159984],[-125.59610266634796,57.91536261577969],[-125.59660447316917,57.915312548334676],[-125.5970233019085,57.91522521940154],[-125.59723846965207,57.915136152148335],[-125.59746567253009,57.91500786934395],[-125.59765283473263,57.91487385788712],[-125.59773177392906,57.91479447165098],[-125.59775412223131,57.914777717028656],[-125.59776375482039,57.91476428843174],[-125.59780638393852,57.91472516556603],[-125.5979085735864,57.9146424850093],[-125.59805019821856,57.91452403622996],[-125.59817793984497,57.91442012459241],[-125.59829044057281,57.91435990433012],[-125.59834356310114,57.91422660924337],[-125.5983826474763,57.914025983487086],[-125.59850176524917,57.913938867687435],[-125.59869260683227,57.91395290037049],[-125.59890685951065,57.913950181181676],[-125.5990919556615,57.91390924385295],[-125.59928439108928,57.91377524616039],[-125.59950126551168,57.913624499607295],[-125.59962253757051,57.913532903443055],[-125.59972121182415,57.913481612261975],[-125.59983688131261,57.91342140028949],[-125.59988569480245,57.91339575305941],[-125.59991411707284,57.91340144577827],[-125.599998461384,57.91340842788414],[-125.6000659344709,57.91341423781775],[-125.60028411878784,57.91343844354548],[-125.60037790395101,57.913449939623696],[-125.60043050907912,57.91346467654462],[-125.60057878871089,57.913513344480215],[-125.60081855352186,57.913591444674],[-125.60106454352652,57.913679656327716],[-125.60120235097885,57.91371932044064],[-125.60137805615389,57.91376919106115],[-125.60168221930144,57.91384411797187],[-125.60195387036671,57.91390100350124],[-125.60216774298769,57.913934165037375],[-125.60231313717267,57.913955907108964],[-125.60248169884383,57.913982204041176],[-125.60276082492841,57.91403013845464],[-125.60303885761154,57.91408255491397],[-125.60336086735573,57.914167624424714],[-125.6037536577793,57.9142461748702],[-125.60405692438061,57.91430763603702],[-125.60418643708931,57.91433381475288],[-125.6042126727582,57.91434847183788],[-125.60424490436048,57.91439342648248],[-125.60432116578643,57.91446767018155],[-125.60444878339217,57.91457458903541],[-125.60459942827619,57.914699519684916],[-125.60475631992578,57.914731386471914],[-125.60496568061973,57.91469163441417],[-125.60515040224885,57.91468769613008],[-125.60526429699458,57.914694762478504],[-125.60534897463508,57.91467034095008],[-125.60539558140665,57.91465365691737],[-125.60542464565735,57.91469972337685],[-125.60555739382258,57.914820114050926],[-125.60579739481685,57.914978952079196],[-125.60601537014989,57.9151242668848],[-125.6061635362096,57.915285075627054],[-125.60626081646973,57.91546816331741],[-125.6063355039489,57.91559174611225],[-125.60643153186534,57.91569296244958],[-125.606499352968,57.91576605857438],[-125.60654932534563,57.9158312516427],[-125.60661495944696,57.91591331305034],[-125.60665237451171,57.915968375744264],[-125.60667424532097,57.9159953556903],[-125.60671051991977,57.9160593867978],[-125.60674333898713,57.91615032307937],[-125.60677634578953,57.91622331632685],[-125.60683031765727,57.91630982913474],[-125.60691440403559,57.91644241123545],[-125.60705289081388,57.91662225569482],[-125.60720628839252,57.91678756482748],[-125.60747171798369,57.91693862474911],[-125.60792075543415,57.917090224612025],[-125.60825659514099,57.91726952707185],[-125.60833747393013,57.917509760609676],[-125.60833597922075,57.91765330510723],[-125.60833046063463,57.91767571840059],[-125.60841151847481,57.91769614322723],[-125.6085913628236,57.91775498843074],[-125.60872373831981,57.917812572522024],[-125.60875102506374,57.9178272318409],[-125.60869986788704,57.91787530507401],[-125.60855305433425,57.91798814290032],[-125.60840037494319,57.91805610428855],[-125.60828478019228,57.91811071682677],[-125.6081444366808,57.91821011554101],[-125.60801169340046,57.918288228425325],[-125.60792672878712,57.91833956635175],[-125.60784254710578,57.918417821973286],[-125.6077368670937,57.918531901517056],[-125.60761619449734,57.918668366381105],[-125.60747234494762,57.91879915549298],[-125.60736053481698,57.9188952730928],[-125.6072923950694,57.91895226762101],[-125.6072328502047,57.9189947082479],[-125.60719984465128,57.919021526408166],[-125.60715679876478,57.91910102440426],[-125.60709564856951,57.919297102695495],[-125.60705661036312,57.91949885360394],[-125.60703861135673,57.91960534094455],[-125.60702436751063,57.91965464397722],[-125.60701733222106,57.91972191192541],[-125.60701745864684,57.919811630569676],[-125.60702706334362,57.919902498655716],[-125.60702947114885,57.91997428038699],[-125.60703702372936,57.92005953504165],[-125.60705580741399,57.92018183162746],[-125.60708719218238,57.92030865130122],[-125.60711269511921,57.920393958911994],[-125.60713740375496,57.920453470161824],[-125.6071726196003,57.92051749830512],[-125.60720778871753,57.920586012222515],[-125.60722534731376,57.920621951322005],[-125.60723264987668,57.92063094468322],[-125.60724882194457,57.92069940259796],[-125.60728213125203,57.92084417163801],[-125.60723348692946,57.92095505474837],[-125.60716227399872,57.92100194696702],[-125.60723767810642,57.92105824324672],[-125.60732427893763,57.92115494576248],[-125.60734021723238,57.92124583261532],[-125.60734506439128,57.9212862201835],[-125.60734795810166,57.92131314423465],[-125.60735444780637,57.92139839585568],[-125.60736647915938,57.9215610459623],[-125.60736530839756,57.92167319056564],[-125.60734258561304,57.92172583319733],[-125.60735147241984,57.92178529786164],[-125.60742603555684,57.92192233821754],[-125.60755045298751,57.92213690758612],[-125.60770514390767,57.92238296749133],[-125.60786190618917,57.92263464077843],[-125.60796700278914,57.92288055453878],[-125.60812271666688,57.923131103072244],[-125.60826415821346,57.92333338577936],[-125.6082289459931,57.92347122461232],[-125.6082150651967,57.923587818002666],[-125.60825973002034,57.92365635976674],[-125.60826492244597,57.92366534689412],[-125.60828972850015,57.92371588654516],[-125.60835690199458,57.92385290491345],[-125.60842299389587,57.92399328453741],[-125.60844468903491,57.92403932910099],[-125.60844775367433,57.92404830997228],[-125.60850486886358,57.92413931793487],[-125.60863893094256,57.924340457276564],[-125.6087668182755,57.924528120587155],[-125.60882409305341,57.924602306664006],[-125.60884079463253,57.92462029943288],[-125.60885740291496,57.92464726379766],[-125.60888009938117,57.924697797194426],[-125.60890188878858,57.92473487011899],[-125.60891230400875,57.92474835849487],[-125.60896230416616,57.9248124298205],[-125.60912078482625,57.925001304129054],[-125.60928294157397,57.9252428988359],[-125.60936218207485,57.92543826948777],[-125.60936761057606,57.92562781635794],[-125.60933312114665,57.9257970595141],[-125.60930604185648,57.925864269245004],[-125.60930594864782,57.92587324085459],[-125.60928005618325,57.92592699624015],[-125.60925155147275,57.92602896784179],[-125.60937701802561,57.92614484868901],[-125.60961862022144,57.92625882671631],[-125.60973232937161,57.92638813064],[-125.60974125564891,57.92654516482321],[-125.60966208432575,57.9266469881923],[-125.60950011298544,57.926692494610634],[-125.60942494927032,57.926712461094525],[-125.60961742896833,57.92678031425968],[-125.61000561326313,57.92690817879598],[-125.61030012917325,57.92700997414426],[-125.61049036141381,57.92709127732865],[-125.6106227262348,57.92715334590709],[-125.61071513011906,57.927200718304505],[-125.61092180742732,57.92732356393569],[-125.61124807542892,57.927520776315184],[-125.61157957007715,57.927722489109414],[-125.61185549467692,57.92788703018766],[-125.6120569561605,57.92800537298339],[-125.61219129921784,57.928080903657374],[-125.61232055818347,57.92813847560654],[-125.61252043126373,57.92820634615079],[-125.61273089588101,57.9282708827124],[-125.6128447870069,57.92828242849787],[-125.61298114935977,57.92826375927208],[-125.61322508593638,57.92825661702951],[-125.61347928503389,57.92827641981265],[-125.61369025861735,57.92829161086889],[-125.61383916667435,57.92828643498517],[-125.61389504836008,57.92829220433389],[-125.61419949737225,57.92835476785197],[-125.61483134103935,57.92850575334593],[-125.61522337026526,57.92867398749651],[-125.61528041708836,57.928773964636896],[-125.61528114300822,57.92880536840391],[-125.61538993077481,57.92890325188436],[-125.61561064898014,57.92910239213417],[-125.61576538253416,57.92924975334779],[-125.61584356209498,57.92934642675909],[-125.61588840202468,57.929401508957035],[-125.6159165180745,57.92943859912343],[-125.6159654433824,57.9295071509424],[-125.61598838139302,57.92953525426375],[-125.61600306890551,57.92954426849566],[-125.61617165278959,57.92957615581527],[-125.6165088328529,57.92963880836188],[-125.61673536735798,57.92968095510884],[-125.61677860057138,57.929686686875286],[-125.61685023666803,57.92970147219919],[-125.6170820586698,57.92974363355813],[-125.61743598398456,57.929820911232476],[-125.6178445658608,57.92992189597923],[-125.61825847674409,57.930017287294426],[-125.61858922785343,57.93009000957657],[-125.61889021537893,57.93007965570798],[-125.61927125506506,57.92998205369599],[-125.61952321826989,57.92991211941462],[-125.61957617161956,57.92989544823738],[-125.61972007066073,57.92986333572041],[-125.62010061228683,57.92991825246796],[-125.6205085913858,57.93018520774286],[-125.62077100017841,57.930439411313415],[-125.6208579288112,57.930509190998286],[-125.62087360856874,57.930523814970016],[-125.62102593338284,57.93059938801139],[-125.62135932279821,57.93072482096557],[-125.62164018382455,57.93082655269302],[-125.62172434560843,57.93085595033296],[-125.62176004728333,57.93087511699019],[-125.62190286562392,57.93095066206887],[-125.62209083426447,57.931049886325454],[-125.62216637102514,57.93109720308082],[-125.62224508351548,57.9311445287963],[-125.6225353528702,57.93125525725644],[-125.62289303154182,57.93138187670776],[-125.62307115227644,57.93151695945465],[-125.62315217123745,57.931649524481934],[-125.62328526072224,57.93174747043756],[-125.62347320896409,57.93185117871307],[-125.62373994729829,57.931993239885124],[-125.6240380005907,57.93217127660236],[-125.62429905281672,57.93235369435203],[-125.62449508316249,57.9324944332479],[-125.62464815705552,57.93260140614755],[-125.6247970536158,57.932703881153465],[-125.62486837413167,57.932751184571785],[-125.62501672624381,57.9326966489137],[-125.62532085560449,57.932583112020644],[-125.62566959898051,57.93265586740223],[-125.62605252670353,57.93289918458404],[-125.62626568143037,57.933017539126304],[-125.62634496575349,57.93300654649223],[-125.62647727726004,57.93297327258029],[-125.62658546493336,57.93292310857289],[-125.62663258604624,57.93285595105081],[-125.62664806806333,57.93278534041957],[-125.6266811656739,57.93264188216019],[-125.62680574649322,57.932429147616766],[-125.62699033433846,57.93233994501056],[-125.62709372933368,57.932346963280686],[-125.62711918924481,57.93233469810473],[-125.62722500703535,57.93231032129126],[-125.6274101516101,57.93227046529406],[-125.62752556791827,57.93223714314613],[-125.627563874095,57.932206969926504],[-125.62764571202696,57.93215112402115],[-125.62778928714089,57.93204610488539],[-125.62790296252818,57.93197352537559],[-125.62799739621802,57.931926686361884],[-125.62818896111882,57.93187787529943],[-125.62856446994519,57.931806025407646],[-125.62904247283245,57.93172436635817],[-125.62946154161976,57.93162347643978],[-125.62976024626624,57.931523372408265],[-125.62995722625138,57.931461115997216],[-125.63006311697944,57.93142888673639],[-125.63023128571687,57.93139683018876],[-125.63055108955288,57.93129790444437],[-125.63078242212124,57.93117742458513],[-125.63077143457213,57.93111459072131],[-125.63069166416251,57.93106726714136],[-125.6307854243955,57.930980050722425],[-125.63101018900207,57.93088310359792],[-125.63118434539551,57.930779287136],[-125.63134265709867,57.930675426633954],[-125.6315039126203,57.930595125366224],[-125.63162578609447,57.93054835973611],[-125.6318619303851,57.930473872461604],[-125.63222316519183,57.93034814153968],[-125.63242699520863,57.930232069035334],[-125.63250425318131,57.93010443240472],[-125.632606539806,57.93000826641553],[-125.63269571974679,57.92995692376407],[-125.63281863688904,57.92991015996058],[-125.6329774681558,57.92986125197796],[-125.63305161626771,57.92983566192614],[-125.63306437176277,57.929826725141226],[-125.6330899155636,57.92980548719452],[-125.6331166925677,57.92976518734339],[-125.633158561035,57.929694648857],[-125.63320239249236,57.929637573618734],[-125.63333691767797,57.92959196279231],[-125.63361734629879,57.92952208028552],[-125.63387890915523,57.92943980900906],[-125.6340358986226,57.92936285755421],[-125.63413145261285,57.929307045539886],[-125.63417397308977,57.929276882105455],[-125.63421327447918,57.92925119577226],[-125.63428763868862,57.929203175904384],[-125.63436732208275,57.92915180612976],[-125.63443433157288,57.92909928006018],[-125.63449924648584,57.929046748216],[-125.63458221850888,57.928981929499486],[-125.63472042105711,57.92888249603629],[-125.63488835481422,57.9287652001112],[-125.63501260642325,57.928688157880956],[-125.63506994783653,57.92865354882719],[-125.63510385855753,57.928640183841274],[-125.63516164367907,57.928669500691164],[-125.6353476986402,57.92875075692392],[-125.63556960851177,57.92883771838407],[-125.63577599142909,57.9288921139326],[-125.63599313758357,57.92892523031359],[-125.63609643804459,57.92894121323123],[-125.63615998245004,57.928920078478164],[-125.63636840075662,57.92887242338086],[-125.63662204584423,57.92884283506827],[-125.63681641257334,57.92882990704476],[-125.63697380795031,57.92882024249512],[-125.63717910950237,57.92876809170379],[-125.63751896446324,57.92866471826525],[-125.63795381925333,57.928563845059706],[-125.63831114966786,57.92850986249047],[-125.63847385612921,57.92849572464701],[-125.6386342680063,57.928500645645244],[-125.63890875206185,57.92849914665566],[-125.63909033033217,57.928498517022575],[-125.63912836512054,57.92849525556071],[-125.63916740403681,57.92849648275043],[-125.63934357278107,57.9285104174429],[-125.63958076832812,57.928543582218445],[-125.6396988480404,57.92855960230436],[-125.6397408904596,57.9285787812215],[-125.63979028779062,57.92860246594882],[-125.63980821427924,57.92860363588588],[-125.64007081511639,57.928520233910355],[-125.64070290735658,57.928325679516824],[-125.64140349263313,57.92814252135134],[-125.6420846538099,57.928003045310284],[-125.64255456052024,57.92787645719561],[-125.64266492083665,57.92770404448828],[-125.64264223837691,57.92753688245861],[-125.64263865543593,57.92746958378173],[-125.64267359889388,57.92745734115034],[-125.64280372262316,57.92742853138871],[-125.6429698685422,57.92738411723109],[-125.64303762882682,57.92736299054519],[-125.64313367499011,57.92736549074294],[-125.64332671251869,57.92737946533446],[-125.64342064755525,57.927381959674996],[-125.6434597279878,57.92737869978262],[-125.6435357945346,57.927372174361864],[-125.64358962763106,57.9273734398282],[-125.64374712577413,57.92735030977917],[-125.64412672895293,57.927284034952066],[-125.64449385887296,57.92719529609869],[-125.644745968374,57.92710288523026],[-125.64505440150377,57.92697137199411],[-125.64532579415136,57.92684873136134],[-125.64544670115323,57.926788492982496],[-125.64548270708585,57.92677625245402],[-125.64556760776775,57.92672825449783],[-125.64579800079125,57.92658643868061],[-125.64613950952419,57.926415759029204],[-125.64654088497095,57.92627776033998],[-125.64688271856438,57.926183340530734],[-125.64701826191317,57.9261377188355],[-125.64705967925417,57.92611203443559],[-125.64717677975354,57.92600692517026],[-125.64732721380713,57.92583573658581],[-125.64744795038526,57.92568129153195],[-125.6476229094985,57.92548437347958],[-125.64781462931755,57.92530095731756],[-125.647932688278,57.92520482187355],[-125.648072115515,57.925082948701466],[-125.64837218667914,57.92482580018877],[-125.64869576840911,57.92453731160771],[-125.64884054358373,57.92440647998563],[-125.64892263640951,57.924205951329895],[-125.64914281494941,57.92379831256135],[-125.64945325443483,57.923446985049985],[-125.64965423686454,57.92328602062955],[-125.6497344716351,57.92317184070792],[-125.64981225157807,57.922980272274835],[-125.64988585062676,57.92278420693824],[-125.64985996421342,57.92261703865766],[-125.64971179136198,57.92243384829971],[-125.64955907421205,57.92228541166853],[-125.64950664653293,57.9222482650091],[-125.64948570475549,57.92223026627921],[-125.64937701484658,57.922114468123816],[-125.64918818823946,57.92187621789657],[-125.64897633931825,57.92161884169719],[-125.64872949870151,57.92137819513288],[-125.64845006059677,57.92112400444559],[-125.64812628439313,57.920873060578145],[-125.64773703953102,57.92062418586486],[-125.64734455794891,57.920384273304954],[-125.6470139158451,57.920191625447075],[-125.64669884666681,57.92002593350096],[-125.64634149112493,57.91986797892541],[-125.64602174170979,57.91975161790019],[-125.64590394034809,57.91970868883548],[-125.64589671318402,57.91969072602777],[-125.64591327022404,57.91961450972835],[-125.64602789682124,57.919433135372834],[-125.64621398923015,57.91917232604807],[-125.64637556125331,57.91893836684367],[-125.64648681514072,57.91877941275981],[-125.64655927465039,57.918705587716055],[-125.6466156528647,57.918657513884845],[-125.64666157862045,57.91860044052384],[-125.6467000240995,57.91855231910506],[-125.64676835616224,57.9184683897607],[-125.64693163653448,57.91827480763877],[-125.64718983713092,57.917976058281766],[-125.64744334983236,57.91772664091822],[-125.64765513249459,57.917538793774575],[-125.64797957795957,57.91726376923134],[-125.64859010930441,57.91686725846508],[-125.64922948965774,57.916542595204184],[-125.64951552566713,57.916424472047666],[-125.64956637795036,57.91640329786586],[-125.64968003314655,57.91632509380319],[-125.64986714109351,57.91617755152709],[-125.65008089188468,57.916115310750385],[-125.65040415101168,57.9160791508545],[-125.65069987167138,57.9158264742166],[-125.65082133076606,57.91547465104592],[-125.65096381557935,57.91524400167887],[-125.65129637443414,57.91500151369344],[-125.65163209666646,57.9147579117536],[-125.65176374587668,57.91467190284221],[-125.65188729368036,57.91466213250954],[-125.65218190009331,57.91464271554952],[-125.652473373493,57.91461880389217],[-125.6526528465462,57.9146103001937],[-125.65284907910171,57.91461529754889],[-125.65308316577463,57.91463497228401],[-125.65323179068265,57.914652181250176],[-125.65336114896803,57.914700741042644],[-125.65360289350146,57.91480566640863],[-125.65389445445226,57.9148860484575],[-125.65411634445057,57.91485522359574],[-125.65428694791541,57.91477940654313],[-125.65446883054247,57.914738384059234],[-125.65467796367419,57.91471761840039],[-125.65494631339658,57.91468354817773],[-125.65522499915687,57.914673055003384],[-125.65550870602479,57.914689489472586],[-125.65579238897736,57.91471040914927],[-125.65601807688233,57.91472557115028],[-125.65633875708015,57.91473873490453],[-125.65685030484116,57.91476584726636],[-125.6571910437012,57.91477906063207],[-125.65730494846868,57.9147860824895],[-125.65745255974161,57.91479991973052],[-125.65769943534029,57.91480616161038],[-125.658014040247,57.9147912690106],[-125.65840624956215,57.91471265098004],[-125.65875880237898,57.91458682857484],[-125.65888908627672,57.91453221028776],[-125.65889891724069,57.91449634848366],[-125.65894628294313,57.914393294702364],[-125.65903206351867,57.914243237597134],[-125.65907487223977,57.914177180565076],[-125.65908132555018,57.91416373946856],[-125.65910392398428,57.91411445272538],[-125.65913666799275,57.913994539494034],[-125.65917461824486,57.913765857276466],[-125.65920770682872,57.91349230399579],[-125.65934602362651,57.913249299499945],[-125.6595894890729,57.91304917936694],[-125.6598915287276,57.912904160224976],[-125.66025270367665,57.912755926855304],[-125.66047720246709,57.91266790341433],[-125.66056722856919,57.91263000299475],[-125.66061276156977,57.91261329701876],[-125.66067419471952,57.91258765980412],[-125.66087788114291,57.91246706019613],[-125.66111588744214,57.91228486701639],[-125.66123489477665,57.91219320956044],[-125.66125715596652,57.912180930052436],[-125.66132321249066,57.91211044570892],[-125.6615263722118,57.91193152767284],[-125.66184041382965,57.91174167623568],[-125.66221315810387,57.911594588610704],[-125.66248431344775,57.91147976508082],[-125.66257332821237,57.911437374946146],[-125.66259243151627,57.911425087228004],[-125.66261795620812,57.911402722594055],[-125.66264554087968,57.91138597049268],[-125.66266732761306,57.91130976611318],[-125.66265894915965,57.91118414094251],[-125.66266504783519,57.91109331782299],[-125.66272914034856,57.911006005946156],[-125.6628101649577,57.91091312959003],[-125.66283895668711,57.91087843709873],[-125.66287141463296,57.910788802176576],[-125.66288840567506,57.91065987690297],[-125.66289314872715,57.91060157282297],[-125.66285135580249,57.910555487067704],[-125.66276439540191,57.91048573623987],[-125.66272475321952,57.910435170042845],[-125.66275154178412,57.910390379350645],[-125.66277729688365,57.91034222165072],[-125.66279011912287,57.91032431070512],[-125.66281170392254,57.91027053513155],[-125.66286893309064,57.9101237683768],[-125.66286531412166,57.90993983937797],[-125.66276947077009,57.90980277837959],[-125.66271502772778,57.90975553912931],[-125.66265338089899,57.90957034178994],[-125.6626057333717,57.90923602552052],[-125.66286187999016,57.90902696078329],[-125.66338605277802,57.90893296221775],[-125.66367313019668,57.9088058408084],[-125.66368337527918,57.90860400372695],[-125.66366310521423,57.90839199649605],[-125.66365068114217,57.90824841819605],[-125.6636703138091,57.90817669431286],[-125.66398956189074,57.908107969488235],[-125.66458883242187,57.90787285179348],[-125.66509537623969,57.90750404470096],[-125.66557333998419,57.90726525333063],[-125.66594535819269,57.90719329201629],[-125.66604364664565,57.907173352221626],[-125.6660470192528,57.90715093150049],[-125.66608160625013,57.9070579371331],[-125.66611636225923,57.906945878393486],[-125.66611261986758,57.906892039001654],[-125.66620736390877,57.906795831034955],[-125.6663439278263,57.906624590073775],[-125.66644350404871,57.90646110659109],[-125.6665184579786,57.90633681244347],[-125.66659090390641,57.90625737030224],[-125.6666514479422,57.90621042061514],[-125.66671404917038,57.906171326254096],[-125.6667871833838,57.9061322582163],[-125.66688815150374,57.90604952291087],[-125.66705930753004,57.90590191847524],[-125.66721206965045,57.905806976375494],[-125.66726504727238,57.9057813152156],[-125.66722958427759,57.905735246878095],[-125.6671212049046,57.90558357936296],[-125.66701289587894,57.905424061759895],[-125.6669464294176,57.90530502116609],[-125.66703111083501,57.90515495771476],[-125.66708340657635,57.904967805233845],[-125.66683223419759,57.904857274478196],[-125.66663528236114,57.90482089507642],[-125.66662240398917,57.904725539080694],[-125.66660567051754,57.90459092248911],[-125.6665845514167,57.904473116770355],[-125.66652809786397,57.90429690691226],[-125.6664506583346,57.9041060655883],[-125.66641649990981,57.90403308545058],[-125.66637834362392,57.90393318037331],[-125.66630136008617,57.903692996161396],[-125.66622558318005,57.90343487171429],[-125.66614960831494,57.903199175878655],[-125.66604113274805,57.902939848031046],[-125.66593880584921,57.902702964656875],[-125.66587882636,57.90256711831457],[-125.66586542289093,57.90253119817665],[-125.66584899265739,57.90248069155022],[-125.66579972214168,57.90232692881817],[-125.66575593413802,57.90215075079015],[-125.66574281982606,57.902082309244264],[-125.66571810031452,57.9020149600265],[-125.66576470394249,57.90187601684646],[-125.66580491129179,57.90174266488337],[-125.66563931701808,57.90162113237857],[-125.66546293583963,57.90152648744056],[-125.66538905567559,57.90141303516007],[-125.66531070112788,57.90120873399287],[-125.66529168867098,57.90097430277893],[-125.66535132286913,57.900791656032716],[-125.66539576678609,57.90065831498815],[-125.66539701324798,57.900518136715164],[-125.66537735241046,57.900356598363125],[-125.66534532296627,57.90016250688217],[-125.66531605093675,57.90001328038359],[-125.66531301458005,57.89999981534595],[-125.66529471593037,57.899922389271886],[-125.66527628767997,57.89985954173074],[-125.66527227786491,57.89983598119423],[-125.66524537122126,57.8997775981449],[-125.66535712699978,57.89954686028153],[-125.66546343941789,57.89933405190536],[-125.6652442885779,57.89930546496046],[-125.66504684828149,57.899327397502525],[-125.66501577303667,57.89926339670234],[-125.66492748399145,57.89910841453801],[-125.66481089437025,57.898934296469854],[-125.6647335387191,57.89885560029205],[-125.66469471957116,57.89883307357117],[-125.66466949443316,57.89882291701209],[-125.6645981882004,57.89877563657283],[-125.6644639246054,57.898691189663566],[-125.66437590227508,57.89862592380672],[-125.66434250912252,57.89858546747835],[-125.66429759498538,57.89853488906027],[-125.66418048967385,57.89841908456803],[-125.66402676657152,57.89827066559515],[-125.66390417027311,57.89817839745323],[-125.66379210913325,57.898089520149526],[-125.66370302616521,57.89802425120439],[-125.66361922579522,57.89795899554722],[-125.66349717984875,57.897807291691954],[-125.66335171261674,57.89767795749862],[-125.66314096092611,57.897654995586166],[-125.66294076714642,57.89763093861576],[-125.66281998046232,57.89757456043819],[-125.662681264872,57.89751701529164],[-125.66245859167157,57.89741215641097],[-125.66229160179007,57.897330988792326],[-125.66225705500577,57.89730286498509],[-125.66220115479442,57.89730160174778],[-125.66208836522294,57.897294586901914],[-125.6619851405965,57.89727862465845],[-125.66185267525859,57.89723006610619],[-125.66162671238945,57.897138654871966],[-125.66136511809071,57.89702360225917],[-125.66114958389046,57.896945674116026],[-125.66095689791452,57.89690929735211],[-125.66069934911744,57.896929948867836],[-125.6604896596537,57.89690586402165],[-125.66047586455254,57.89679816991214],[-125.66044926094636,57.89670726485955],[-125.6603168805774,57.89664973343849],[-125.66022229882996,57.8966113629391],[-125.66017927589728,57.89658770276823],[-125.66009528226458,57.896544873412246],[-125.65997034859691,57.89647951053327],[-125.65983067620273,57.896412988443586],[-125.65963640543974,57.896317169053034],[-125.65944003295112,57.89622246545747],[-125.65932346818639,57.89616497351682],[-125.65924794467931,57.89611880097021],[-125.65915463164082,57.89605800404495],[-125.65904033980937,57.895982574539715],[-125.65894475541526,57.895939714799255],[-125.65888168607681,57.89591600287659],[-125.65878281761803,57.89588547051808],[-125.65857483929274,57.89579073593775],[-125.65838494645446,57.89567810430081],[-125.6583273329483,57.895635341534124],[-125.65834978889986,57.89560063432589],[-125.65840840657872,57.89553461939988],[-125.65844900429529,57.895477529799905],[-125.6584682738499,57.89544617874223],[-125.65849005981393,57.895369976307855],[-125.65852172633862,57.89525006283726],[-125.65855974785372,57.89512904422456],[-125.65860200151582,57.8950046721317],[-125.65862310689872,57.89488809594161],[-125.65862351377852,57.89484323918086],[-125.65861763325849,57.894793880522805],[-125.65858113985703,57.89463117744349],[-125.65852108294841,57.894391034276644],[-125.65840818838811,57.894164212933774],[-125.65825368671803,57.89398887119226],[-125.65815687843066,57.893847320745614],[-125.65810466831029,57.893674484343414],[-125.65805847419912,57.89353418526374],[-125.65803488807934,57.89346123086029],[-125.6580270215349,57.89339840982231],[-125.65806886749108,57.893318894807635],[-125.6581606054167,57.8932047431437],[-125.65820470547435,57.8929940250556],[-125.65823174023481,57.89268906201491],[-125.65827246591483,57.89238525564701],[-125.65828970205892,57.892228297981184],[-125.65829522788715,57.89220139755341],[-125.65826181642441,57.8921643042172],[-125.65818752154858,57.892099069877034],[-125.65809831636166,57.89205174028244],[-125.65794883772703,57.8920210774303],[-125.65780044628461,57.891985931437574],[-125.65775304860044,57.891980202404056],[-125.65773391031824,57.89188034489223],[-125.6576842526199,57.89165929324265],[-125.65762789408394,57.891477474835746],[-125.65764047202428,57.891370970266216],[-125.65772592999858,57.891251195787795],[-125.65766384844557,57.8911198275952],[-125.65740749087169,57.891013752776374],[-125.65722647160808,57.890972915006934],[-125.65718855801445,57.890967210190894],[-125.65716032123436,57.89094022290928],[-125.65708709369152,57.8908749907748],[-125.65701800293012,57.89081874078463],[-125.65692579365019,57.89075345966935],[-125.65680219311483,57.8906611830122],[-125.65671522493767,57.89060040103069],[-125.65662301671776,57.89053511972045],[-125.65642603866813,57.89039443154359],[-125.65617981742307,57.89021772985949],[-125.65600928658644,57.89006925931964],[-125.65592246820297,57.88999053420315],[-125.65583140786352,57.88991628382824],[-125.65569418760346,57.88981387804521],[-125.65557187163962,57.889698053415486],[-125.65544663075272,57.889555306574884],[-125.65533505019681,57.88941708075561],[-125.65523389906718,57.88929346057368],[-125.65512109931052,57.88917429590995],[-125.65506997414883,57.88911360577412],[-125.6550458930182,57.889095600363994],[-125.65502530619807,57.88904059652875],[-125.65502705115571,57.88896434322715],[-125.65503051091264,57.88893295191345],[-125.65498516853997,57.888931712981005],[-125.65483582823016,57.888887589791274],[-125.6546261701874,57.888751352030305],[-125.65447669079997,57.888608541519055],[-125.65439004373329,57.888511872940576],[-125.65430648666303,57.888424183841295],[-125.65428379228898,57.88836917445341],[-125.6543463252016,57.888335693684134],[-125.6544588639652,57.888252999420594],[-125.65443455463881,57.88814415686949],[-125.65411029587679,57.88808612150354],[-125.65374849936192,57.88798200878842],[-125.65346844938762,57.88781755028159],[-125.65322818940446,57.88768571653255],[-125.65302230696263,57.887598829448095],[-125.6527543270504,57.88749832285316],[-125.65240341603757,57.88735834893294],[-125.65212306181692,57.88722977285524],[-125.65199007930184,57.88712737456035],[-125.6518834260373,57.887029530737465],[-125.65173066757764,57.88690016601435],[-125.65155177519804,57.886747182569806],[-125.65139464544117,57.886634627593004],[-125.65129410366606,57.8865603494997],[-125.65115269019458,57.886457928343376],[-125.65094347495263,57.88627682878457],[-125.65078798402027,57.88610259847642],[-125.65067837317079,57.88598231730907],[-125.65055915666717,57.8858754680748],[-125.6505007436538,57.88580690718344],[-125.65052571188268,57.885730715138685],[-125.65053493849166,57.88564551029297],[-125.65043507215881,57.88561160504774],[-125.65028842200194,57.88562131280372],[-125.65022719250048,57.885629001989074],[-125.65016840530566,57.88560081164338],[-125.6499975268719,57.8854927047368],[-125.6497797620387,57.88532503823914],[-125.64954496154084,57.88517526951596],[-125.64926679439648,57.88504108623011],[-125.64899062706529,57.88491700055811],[-125.64876069416209,57.88481210070164],[-125.64851101372066,57.88467574816255],[-125.64827208856973,57.88451699490872],[-125.64812863462579,57.88440895815388],[-125.64805145902116,57.88431791800441],[-125.64801211580212,57.88424043506001],[-125.64802608287314,57.88421355758377],[-125.64800508956337,57.884203409173125],[-125.64796847132301,57.88417191220339],[-125.64796781337635,57.88413041742361],[-125.64807401682039,57.88404883359222],[-125.64824816097176,57.883918086163106],[-125.64839695709054,57.883791757310796],[-125.64852041595427,57.88366872571329],[-125.64858137538788,57.88357580772672],[-125.64860974142434,57.883473832228205],[-125.64864241963862,57.883249631975744],[-125.64863708210396,57.883029817159134],[-125.64863687348924,57.882940102039775],[-125.64870893541784,57.882901042108145],[-125.64883289231149,57.88283632611665],[-125.64895186782958,57.8827413182193],[-125.64908734571179,57.882573460673925],[-125.64920682131553,57.88242462518739],[-125.64926222129014,57.88236309244409],[-125.64933457393354,57.88229263289204],[-125.64949617894983,57.88214839389402],[-125.64966075985652,57.88202322688228],[-125.64973505281026,57.88197071514098],[-125.6497679016876,57.88195398011074],[-125.64979661026814,57.88192714130304],[-125.64987410552028,57.88187127362295],[-125.65005683464402,57.88172260385623],[-125.65025249532556,57.88154368922416],[-125.65036433495445,57.881420625707044],[-125.65042723466061,57.88134677651949],[-125.65048607702607,57.881253852345516],[-125.65053767235463,57.881147451971124],[-125.65056883829727,57.88108473372059],[-125.65061275327965,57.88100971320507],[-125.65068977576402,57.880889922384945],[-125.65076127469504,57.88079815277929],[-125.65083483378034,57.880709752836765],[-125.65091167818132,57.88060902575756],[-125.65095463964764,57.880523909806705],[-125.65098351909522,57.880480249800044],[-125.65104536369786,57.88040527620378],[-125.65111365840758,57.88031686234559],[-125.65119311539718,57.88027445629118],[-125.65130628425752,57.88023662422396],[-125.65137390309229,57.88022110134228],[-125.65139611744426,57.88021218809341],[-125.6514350820362,57.88021789727846],[-125.65151299438719,57.88022931556999],[-125.65157830739965,57.88023509369311],[-125.65163416504643,57.88023636132319],[-125.6517237244289,57.88024332425852],[-125.65185327750999,57.880255998888096],[-125.65200595864782,57.88027770528889],[-125.65214593035401,57.88030386401611],[-125.65228915636916,57.880321059667494],[-125.65241551410361,57.880338211117525],[-125.65247767305002,57.880343980562806],[-125.65251135812791,57.88034967564863],[-125.65257030445166,57.88035992237894],[-125.65265032599414,57.880371345510135],[-125.65276003282462,57.8803649031767],[-125.65289102158141,57.88033720910635],[-125.65299469201797,57.88029935083547],[-125.65306562999527,57.88026589288969],[-125.65310164062289,57.88024804388616],[-125.65311125117073,57.8802357332179],[-125.65312820219091,57.880226805963986],[-125.65316622832061,57.88021905505322],[-125.65327585200055,57.88022158350876],[-125.65342012405756,57.88023878066598],[-125.6535158442926,57.8802637012931],[-125.65357892530473,57.88028292976693],[-125.65366944847302,57.88029886532937],[-125.65384003476763,57.88032173763875],[-125.65408870981712,57.880336962684076],[-125.65436073357088,57.88033542646675],[-125.65458861146772,57.88031919657179],[-125.65483129014085,57.88029851895504],[-125.65515714506452,57.88028927069353],[-125.65549335421402,57.88030247700318],[-125.65574604183105,57.88034013790545],[-125.65587336504663,57.88036625999425],[-125.65593543233594,57.880382120443315],[-125.65601022635424,57.8803879208969],[-125.65611770119098,57.8803949271715],[-125.65625153120783,57.880403122852286],[-125.65637897780643,57.880415787633666],[-125.65648847949467,57.88043177026943],[-125.65667914874868,57.880450205049826],[-125.65694253461834,57.88047106984555],[-125.65711770846957,57.880453578346895],[-125.65724671849043,57.880411296327914],[-125.6575003369325,57.880346906307295],[-125.65776778673892,57.88038460135118],[-125.6578691595316,57.880599054797216],[-125.6579352785826,57.88074837474703],[-125.65809831811184,57.88078916506515],[-125.65834773504884,57.880840269777714],[-125.6586096957766,57.880901499056165],[-125.65879488528905,57.880942345330894],[-125.65887272008446,57.88096273054648],[-125.65903298288123,57.88096201973502],[-125.65937151090469,57.88095279360043],[-125.65965197323891,57.880951268152124],[-125.65989850568722,57.88097096257386],[-125.66018588428241,57.88101991797272],[-125.66039326521103,57.88105633295708],[-125.66050489928443,57.8810700748726],[-125.66049242974955,57.88104985734724],[-125.66069801429403,57.8809337529453],[-125.66120029867963,57.88076793946936],[-125.66173167213087,57.88065154091334],[-125.66230604819505,57.88055879935534],[-125.66279148023514,57.88050844430788],[-125.66311733501821,57.880499176557514],[-125.66363962333213,57.88045451883915],[-125.66443165256635,57.880308489438534],[-125.66512693201675,57.88013417630374],[-125.66549056767903,57.880026312185386],[-125.66567237974984,57.87997294045929],[-125.66577915087238,57.87993956577812],[-125.66614177673405,57.87982721166775],[-125.66683524840926,57.87961699954481],[-125.66747402996234,57.87939094728501],[-125.66810472576584,57.879124500527105],[-125.6687685957088,57.878920933282544],[-125.6694684227491,57.87882286609545],[-125.67003658498123,57.87883324719782],[-125.67027388945378,57.878942613563844],[-125.67032400191398,57.878998808985415],[-125.67061153010248,57.87891092820157],[-125.67135886412728,57.878684004714295],[-125.67217693801847,57.87844491567861],[-125.67273823079177,57.878274718921695],[-125.67304172792109,57.87816668659929],[-125.67331773333039,57.87806980037353],[-125.673723357968,57.87797771709426],[-125.6740612977049,57.877910138195084],[-125.67434868276895,57.87783682764276],[-125.674763636484,57.87776158541398],[-125.67509147369749,57.87776575037536],[-125.67531342874018,57.87782124178683],[-125.6755805982228,57.87789142155849],[-125.67571680510136,57.87798931739122],[-125.67572231908477,57.87808353047044],[-125.67573767024807,57.87825963151716],[-125.6759087676516,57.87859198997392],[-125.6762607128507,57.878857502789],[-125.67657473611096,57.8789962015162],[-125.67686751081492,57.879156155019025],[-125.67716233155814,57.87932171998928],[-125.67738807146807,57.8794310456188],[-125.67760244751241,57.87951230770213],[-125.67791359544924,57.87961959644556],[-125.6782499324095,57.87974040247322],[-125.67849930499384,57.87979707634355],[-125.6787428767531,57.87979430015976],[-125.67918159323409,57.87977853690768],[-125.6797415505282,57.879761942550836],[-125.6800716666981,57.87974815787782],[-125.6801433850368,57.87974496596033],[-125.6802288288951,57.879738442700905],[-125.68054940984248,57.879729119640416],[-125.68107132480698,57.8797247640723],[-125.68146014877219,57.87974812366683],[-125.68157282089354,57.87976521464744],[-125.6815917596693,57.87976974565676],[-125.6816729104351,57.87977218260818],[-125.68187631561986,57.87978164031067],[-125.68211975654484,57.87979231474657],[-125.68239587872984,57.87980418814775],[-125.68274688111063,57.879813996619276],[-125.68307889950333,57.87982263754007],[-125.68336037741533,57.879825550284274],[-125.68350376668327,57.87982476988328],[-125.68374853479467,57.879804044571586],[-125.6843107870355,57.87976500793407],[-125.68479392065129,57.87973251014314],[-125.68513446477971,57.879732194720845],[-125.6854748796166,57.87974533522909],[-125.68562666517197,57.8797490580845],[-125.68564688247264,57.8797277987464],[-125.68573180369849,57.8796584708925],[-125.68585602310527,57.879553350131644],[-125.685923039021,57.87948285848472],[-125.68592947680006,57.87946941657201],[-125.68592970130867,57.879442502895564],[-125.68596195558631,57.879367443509956],[-125.68605109241496,57.87929812542728],[-125.6860998776981,57.87926347631047],[-125.6859957512334,57.87923295223238],[-125.68576526328773,57.87918642986654],[-125.68552809961318,57.879054663040556],[-125.68533075136884,57.87882542599704],[-125.68521937229234,57.878655827541486],[-125.68519667614886,57.87859633837356],[-125.68523743997928,57.87851232795928],[-125.6853090676335,57.87839250494415],[-125.6853602982347,57.87831749064913],[-125.6854027200804,57.878287312477205],[-125.68549288056504,57.878222482964055],[-125.68568273813051,57.878083874901016],[-125.68589699926781,57.87792738140676],[-125.68598824122411,57.87785806844454],[-125.68599678711854,57.877844631525164],[-125.68597164511974,57.877825508011156],[-125.68591622398164,57.87764482809466],[-125.68584318452669,57.87730150028717],[-125.68572532103042,57.87689863133925],[-125.68558114418266,57.876490093179264],[-125.68547363686629,57.87623527643329],[-125.68541114598032,57.87614429359699],[-125.68534549386005,57.876052181844145],[-125.68527292132049,57.875906225482694],[-125.68523573530022,57.87568970327335],[-125.6852565096996,57.87547443960299],[-125.68534299253386,57.87534231646135],[-125.68546954873625,57.87521028799381],[-125.68554636417551,57.87510057031685],[-125.68556472546285,57.875046785527104],[-125.68561494275913,57.87496728332953],[-125.68573437150415,57.87480383807163],[-125.68582409676445,57.874662751014405],[-125.6858331285149,57.87459100147453],[-125.68574538753299,57.87449435223903],[-125.68556143659153,57.87430551928848],[-125.68536201419857,57.87407515703267],[-125.68522240493634,57.873878578577376],[-125.68515308278471,57.87372365880375],[-125.6851298523014,57.87360136921314],[-125.68513817702375,57.8734892470588],[-125.68514566421341,57.87335020889663],[-125.6850994318021,57.87320543656369],[-125.68504004247256,57.873123432505196],[-125.68501598727532,57.873099825794974],[-125.6850161373577,57.87308188346239],[-125.68506273714056,57.87293060233353],[-125.68517060058463,57.87263704613043],[-125.68524391714672,57.87244097152121],[-125.68526988932747,57.87236029091044],[-125.6853040970174,57.87230317953427],[-125.68537625045632,57.87224615786836],[-125.68544522372757,57.87219025006734],[-125.68551215238776,57.87212873031837],[-125.68560530184827,57.872081850906184],[-125.68566239823258,57.872060678863065],[-125.68575011895209,57.872031729197815],[-125.68597523756179,57.871960489929734],[-125.6861919715367,57.87188138060126],[-125.68626917723351,57.87185128438933],[-125.68634753115624,57.87180885525939],[-125.68653927462303,57.87169267974164],[-125.68677352154424,57.871537354448186],[-125.68701522017433,57.87137195355503],[-125.687303275048,57.87120890402072],[-125.68763344163963,57.871051559827755],[-125.68796405147947,57.87084038795649],[-125.68836893461042,57.87044099158264],[-125.6889037547909,57.87000601273592],[-125.68934304652878,57.869779391941705],[-125.68965175209067,57.86966572805246],[-125.68988536571025,57.86958216665513],[-125.69001746281641,57.869540982131944],[-125.69023531979565,57.86945177636225],[-125.69058224853163,57.86930343552543],[-125.69079595138055,57.86920636931475],[-125.69085514841946,57.86918520000419],[-125.69090903031746,57.86916850397448],[-125.69107252301801,57.86915430526096],[-125.69132992952696,57.86912574585509],[-125.69147756724242,57.869115995518854],[-125.69153337299123,57.86912173195771],[-125.69157444011621,57.86912743421329],[-125.69162494777514,57.86913764398581],[-125.69174707002055,57.869154748129894],[-125.69188601913203,57.86917637677651],[-125.69207765756391,57.86919924862402],[-125.69226508035943,57.86922211044675],[-125.69239461830952,57.86923362408079],[-125.69261161665112,57.8692487038877],[-125.69291494914268,57.86927519673185],[-125.69315826904804,57.86929482203854],[-125.69331844499841,57.869298555525056],[-125.69341539193371,57.869301021745464],[-125.69357105094983,57.86934175115184],[-125.69381584273707,57.869437634737686],[-125.69404230057776,57.86945721962858],[-125.69426003829079,57.86938146398323],[-125.69447166965287,57.8692787800585],[-125.69467696697252,57.86917720269038],[-125.6949507260377,57.8690802676292],[-125.69555548051258,57.868979604052406],[-125.69659153605588,57.868849643715116],[-125.6974675636744,57.86869688337402],[-125.6978446801608,57.868590084668746],[-125.69800423968964,57.86853998334807],[-125.69843506784295,57.86843891194],[-125.6991487266434,57.86829137962165],[-125.69951611571119,57.86821483235751],[-125.69955419172604,57.86819809716288],[-125.69992996588127,57.86812717475564],[-125.7008588646623,57.86794871903416],[-125.70178571782168,57.86776128101052],[-125.70250374350859,57.8675913124367],[-125.70321030258181,57.867403371894284],[-125.70363805633994,57.86728882004107],[-125.70374367707899,57.86725989857966],[-125.70409512392176,57.86719676022092],[-125.70477280746925,57.867061453529715],[-125.70515070338321,57.86698603557845],[-125.7055308809463,57.86688819342315],[-125.70654419173385,57.86668969978179],[-125.7075589988201,57.86656857899082],[-125.70810854665788,57.86651035097908],[-125.70846328817731,57.866429265850634],[-125.70881789351755,57.866228188773995],[-125.70924289902128,57.86591960947385],[-125.70955297341456,57.86575207548269],[-125.70960060491849,57.86572638706602],[-125.72355248267212,57.85991359252498],[-125.78133372115934,57.89997507086784],[-125.78137155182961,57.89999980473236],[-125.78225721923411,57.900614685452496],[-125.78140121337685,57.90143081622896],[-125.78151731600977,57.906506680343455],[-125.78474466804654,57.91185005567516],[-125.78720537773441,57.92154344581638],[-125.78676646643979,57.93045172976732],[-125.78595859512515,57.932908719481446],[-125.78790349437452,57.93849233734449],[-125.79409348805206,57.94655884551831],[-125.79428631143011,57.954553210576165],[-125.79738896860438,57.959043998197714],[-125.80015230354229,57.96707822742941],[-125.80324157303818,57.971227971954676],[-125.80956462023576,57.974781176307516],[-125.825443221706,57.97861610283516],[-125.83368426875244,57.98141700925473],[-125.83541032015276,57.98123073094513],[-125.84952747799365,57.978510850040166],[-125.86430028961831,57.97630157190169],[-125.87904639077203,57.9765938928821],[-125.88141336651918,57.976811351235554],[-125.89123366205128,57.978730806450415],[-125.9041843090342,57.980526214529064],[-125.91289419282248,57.98080135212639],[-125.92446704961412,57.978888339634295],[-125.92823769479996,57.97937492251408],[-125.9407767419334,57.986020570725955],[-125.95091947741258,57.99131837006445],[-125.95763379525857,57.993375345155044],[-125.96215137654536,57.99327800614815],[-125.96662304247494,57.98770736203044],[-125.96730524038172,57.98136411123625],[-125.97052259728575,57.97665442851161],[-125.97189301654194,57.97591002949529],[-125.97972546733254,57.97145226593887],[-125.98681208700978,57.96711063017866],[-125.98884215588942,57.96320794385906],[-125.9897053559767,57.95954740363465],[-125.99173407435902,57.95856061816082],[-125.99494583317427,57.958192924334284],[-125.99966192847839,57.95821096377341],[-126.00293921807175,57.95960160093064],[-126.00567373552343,57.9613420949453],[-126.00907059217471,57.96576515406249],[-126.0118497515366,57.96938070920235],[-126.01583610516295,57.972224474276196],[-126.02028063152832,57.97100365617328],[-126.02304388722624,57.968688389292744],[-126.03138835223594,57.96642570715231],[-126.03715785143515,57.967393215597646],[-126.04868354455402,57.96977610016713],[-126.05633367538893,57.969046344122646],[-126.06219759311648,57.967042949843396],[-126.06328891454285,57.96311264747128],[-126.06318510091528,57.95290249942366],[-126.06382253004752,57.946334710787426],[-126.06365938321986,57.94479161584103],[-126.05955645850186,57.942137824760344],[-126.04996192855522,57.94011411793937],[-126.04804775615658,57.93621206068033],[-126.04853224616035,57.93119663661426],[-126.05295118097105,57.92723839920539],[-126.05810565897485,57.92380007281273],[-126.05878566501202,57.92261550695885],[-126.06748179289443,57.91560449941811],[-126.07224783803893,57.91416653645946],[-126.08208482872782,57.91516566311105],[-126.08857637181677,57.916767432530335],[-126.09886239871105,57.917137007242985],[-126.10093339539533,57.91613062753203],[-126.1108388178951,57.91484877940408],[-126.12363933856652,57.9171701484123],[-126.1297821084823,57.919846842338785],[-126.13776836654353,57.925338496113746],[-126.14534910541508,57.93019314971692],[-126.15319747689291,57.93339627203989],[-126.17011797637453,57.94192595485137],[-126.18289263321701,57.94561445518917],[-126.1956353625483,57.946744779160454],[-126.20786793654447,57.94563168856505],[-126.20898163093622,57.94554022790114],[-126.21495000940382,57.94318008543188],[-126.21822540506149,57.941093273801705],[-126.22011003317867,57.93905354887176],[-126.22627258600049,57.93345374383211],[-126.23623209818074,57.926276941071364],[-126.24064813333639,57.921576798969596],[-126.24059763968123,57.91945955767919],[-126.2341233250747,57.90902804841136],[-126.22929793747494,57.9011683499856],[-126.22656974588313,57.89499163347716],[-126.23174506697822,57.886065091567126],[-126.23241464222563,57.88504118259883],[-126.24510532990017,57.87931261598352],[-126.25445334682182,57.874298033443495],[-126.25541814610803,57.870142470907574],[-126.25490020095108,57.865406636475456],[-126.25663414599205,57.86050501684915],[-126.26411525746894,57.85713515181062],[-126.2661739579712,57.85607245083126],[-126.2806563967353,57.85514556770923],[-126.29294439391396,57.85608796088376],[-126.29762135995888,57.85754885352344],[-126.30267344722428,57.86106314052443],[-126.30770127538791,57.86549237565202],[-126.30853674016336,57.866360654591],[-126.31069034135388,57.87024918651915],[-126.3103846454196,57.87395506008002],[-126.3117126711175,57.87648188019571],[-126.31434454970278,57.878323795157485],[-126.31816197764097,57.87994751983457],[-126.32118930937838,57.88321481960383],[-126.32161816561883,57.88750214246917],[-126.32285759592293,57.889392126937985],[-126.32529677148582,57.89048968482098],[-126.32967264686323,57.891259443592894],[-126.3359506071958,57.89313674444536],[-126.34187713510676,57.89631553471437],[-126.34470378981905,57.89907149704965],[-126.34987505738256,57.902530028594335],[-126.35284758648041,57.90374233020586],[-126.36030726361821,57.905732011480715],[-126.36560182439362,57.90849880767149],[-126.36820163698553,57.91206239173188],[-126.37099701791041,57.916361080891846],[-126.37308404247321,57.918768665205455],[-126.37784585170667,57.921599313532184],[-126.38146629512924,57.92276430924778],[-126.38221787553934,57.922771127387385],[-126.38877088167578,57.922411239333904],[-126.39595705579626,57.92245288216344],[-126.40022640821081,57.923337313433514],[-126.40533973446652,57.924847076459876],[-126.4111557327807,57.92396795785787],[-126.41338180997076,57.920219803618636],[-126.41347571397519,57.91599378203077],[-126.41172704442053,57.912616832931036],[-126.41182379791157,57.90834597906621],[-126.4133578738022,57.906807061858146],[-126.4192168113834,57.90843954940444],[-126.42183716509246,57.91131121035035],[-126.42484614250867,57.915949036718764],[-126.42819443976113,57.91973340355095],[-126.43155576870667,57.92312289806187],[-126.43642106216556,57.92634591038692],[-126.43791027686314,57.92687036863437],[-126.44654651387032,57.92938077070195],[-126.45464450548275,57.93216162041223],[-126.46146337276717,57.93437221557837],[-126.46979547670922,57.93636181611225],[-126.48007798400748,57.93721341307213],[-126.48480024684795,57.93723221051848],[-126.49865149347711,57.93674148349465],[-126.50435133780826,57.936199658970565],[-126.52442961282391,57.9355659074531],[-126.52962471005273,57.93895476643163],[-126.53364858283221,57.941827747218085],[-126.53851248164807,57.94579183443329],[-126.54550440650354,57.95068018937553],[-126.547980005232,57.950293204531974],[-126.55529570761023,57.94935674270258],[-126.56227491154705,57.94939030098281],[-126.56943147576209,57.95136971891668],[-126.5746558605783,57.953500657214505],[-126.58180985391473,57.95576655127334],[-126.59379597912982,57.957822224793354],[-126.59539983366535,57.9582278032641],[-126.60266826633823,57.9603126404463],[-126.60766439517502,57.96335853845145],[-126.60966727026616,57.96553867549068],[-126.61432844223584,57.9696087412338],[-126.62091034074666,57.974208094614994],[-126.6232474842667,57.975812258775996],[-126.63378065190953,57.982142168637985],[-126.64070316245466,57.986048113962575],[-126.65281762459924,57.987927513265134],[-126.65786220435537,57.988225762610945],[-126.66847037646278,57.99016500524892],[-126.67183756799106,57.99491264853101],[-126.67222595497053,57.997880697711466],[-126.67240746608532,58.00004223998401],[-126.67054579211653,58.00743629302699],[-126.66648682271136,58.0153707650976],[-126.66685806653199,58.023695894067124],[-126.69657645938202,58.02389419405995],[-126.71900325835567,58.02708647177474],[-126.73616066213503,58.025611163773924],[-126.75867143893727,58.021375503452845],[-126.76774327328927,58.01977131294894],[-126.77113845163365,58.018701894822144],[-126.77100363062247,58.01584921042869],[-126.77024556727717,58.01345775942961],[-126.7748487066344,58.010712281337895],[-126.78498380548947,58.00885847243895],[-126.79861800107405,58.00822129877998],[-126.8020563692145,58.00817377225594],[-126.81307589317124,58.009049310609676],[-126.8148694908863,58.00828463504929],[-126.82067726955476,58.006041680065664],[-126.82925971232565,58.00335056116091],[-126.8342983766373,58.00007988602245],[-126.83591990611436,57.9992262742384],[-126.83958509400411,57.99838672572402],[-126.84646272677338,57.99845994635489],[-126.85408685176549,57.999218967664504],[-126.86106732960955,57.99980224662611],[-126.86249297396442,58.00007121097294],[-126.87280534510221,58.00068615168433],[-126.88341550837578,58.00005105945351],[-126.88805876127452,57.99879093281755],[-126.8895671682493,57.9983950451947],[-126.89387595012896,57.99754073550025],[-126.90000906840415,57.996647080005815],[-126.9013002190891,57.99659350338409],[-126.90764397019633,57.99620057003158],[-126.91548926096104,57.996452086680556],[-126.91870976375884,57.99679786256547],[-126.92527229615325,57.99584624735599],[-126.93065636676657,57.99459744123216],[-126.93916845021523,57.99204328232298],[-126.93992117490757,57.99182262806876],[-126.94724287961621,57.989832666162414],[-126.94907428139929,57.989326132646966],[-126.9480324430932,57.98504437861248],[-126.9463553993201,57.979501942125786],[-126.94510398092916,57.974135966665926],[-126.94468171146225,57.973107062418784],[-126.94384102919705,57.970483929431595],[-126.9507293602328,57.96849685624794],[-126.95975778284438,57.96782204417191],[-126.96395058854277,57.96680478557509],[-126.96621123828736,57.96635772781892],[-126.97256774270426,57.96304537634954],[-126.97132314664836,57.95643243704645],[-126.96490837450132,57.952252792865245],[-126.9635194986303,57.951275825359474],[-126.95711939565652,57.945902358724574],[-126.95574210359685,57.94332808971446],[-126.95554740021356,57.94019800840604],[-126.95569734040166,57.93425702541164],[-126.95369515959392,57.9290044419444],[-126.94901091698027,57.92403119380604],[-126.94773138180622,57.922936679677086],[-126.94068510779681,57.91853625591488],[-126.93384716182103,57.9153183909134],[-126.92914990582054,57.91246212001094],[-126.92766735645118,57.909942241732686],[-126.92725295102895,57.90845571546314],[-126.92727093807459,57.905889500788696],[-126.92912468933376,57.901614733691325],[-126.93108768713387,57.89750966585122],[-126.93239592660714,57.89483575454411],[-126.93318801001529,57.892919121244326],[-126.93059781408398,57.892928278205176],[-126.92875024188913,57.89294117884732],[-126.92287849721039,57.89298200794562],[-126.91667201849843,57.89352732588056],[-126.9146413209347,57.89377456820995],[-126.90810131624471,57.89392699979645],[-126.90293546304565,57.892930332149],[-126.89912938069307,57.89021061140608],[-126.89765943679407,57.886506073957605],[-126.89735685885526,57.88217459942512],[-126.89534935492874,57.87841088956504],[-126.89120764987786,57.87501138315369],[-126.8850428697419,57.87219943980034],[-126.88017063105588,57.86976447411762],[-126.87645433336539,57.86602080797112],[-126.87520522883001,57.86243131471349],[-126.87661815640834,57.85802581820449],[-126.8819951128143,57.85382736403674],[-126.88644146631633,57.851456173949636],[-126.89078806465811,57.849211109848774],[-126.8917025549668,57.84680952781823],[-126.88951801279951,57.84459020115619],[-126.88435943105216,57.843592863038815],[-126.88264149983297,57.84337101328346],[-126.87736977223682,57.842158838681776],[-126.87316153685606,57.84046398245955],[-126.86922679408131,57.83631796228427],[-126.86741521679325,57.83141337339206],[-126.86945556840192,57.82637598854513],[-126.87132805879938,57.8235735917776],[-126.87280409764413,57.82271161621053],[-126.87306573025617,57.819507085340554],[-126.87107062490391,57.81598543389933],[-126.8689827149842,57.81330768437552],[-126.86386462599378,57.80872080789597],[-126.8638419715713,57.807455997392324],[-126.864631155146,57.80419427709238],[-126.86734338260574,57.80065088089219],[-126.8793625133619,57.79737808254279],[-126.89259778613241,57.79632986967173],[-126.90603602466611,57.794650959965466],[-126.9206763281814,57.79434393650617],[-126.93214428373456,57.79563655432506],[-126.94124161716714,57.796038903574875],[-126.95572778131996,57.79349524123354],[-126.96995422037915,57.78922939027641],[-126.9781049168145,57.78569769753126],[-126.98086577730963,57.78019586655324],[-126.97839300010789,57.7749031338923],[-126.97520089987832,57.77075501470497],[-126.97396470971007,57.76334495241089],[-126.97333210809246,57.759070381430256],[-126.97208645119164,57.7558768445478],[-126.96637676689238,57.7537385949421],[-126.95599642101601,57.752782134714536],[-126.95161738092126,57.75281361747386],[-126.94847107893841,57.75054855127466],[-126.94793289297473,57.74547484846903],[-126.94697091146654,57.74062846797187],[-126.94706543928272,57.73513763553553],[-126.94893280106785,57.72793868054682],[-126.94892258833403,57.72736462502619],[-126.9470906074885,57.721726164646974],[-126.9425944913628,57.71616051036088],[-126.93672341704516,57.71105299817011],[-126.93356465243878,57.708106026025874],[-126.93175611383248,57.70337333822553],[-126.93223297577956,57.70075059503003],[-126.92996836135342,57.699510641145956],[-126.91770792066322,57.69964098501333],[-126.90672457075725,57.699644844062576],[-126.90137577744508,57.69888297312128],[-126.89348343350055,57.69881981820064],[-126.89166754874525,57.69870646616307],[-126.88377525797439,57.69864273295929],[-126.87297417974689,57.697162467646365],[-126.86630017008143,57.6938334263937],[-126.86132634612038,57.69020597301933],[-126.85445884554684,57.68796303166427],[-126.84642342306662,57.68589764790492],[-126.84197145573032,57.68169208528309],[-126.84265860090825,57.67552969476124],[-126.84272910907359,57.67554045870075],[-126.84300783782763,57.67553083553783],[-126.84321297097185,57.67551271034112],[-126.84330708694696,57.675500898275715],[-126.84338544186882,57.675488065267366],[-126.84349531872103,57.675477273944686],[-126.84357882449572,57.67545992293731],[-126.84359866277508,57.67545643274235],[-126.84364288225991,57.675416906633835],[-126.84372842521356,57.675350206773494],[-126.84378816362981,57.67530161158738],[-126.843845929878,57.675258635282255],[-126.84393168889346,57.67520090405939],[-126.84399066994919,57.67516576882296],[-126.84400936791552,57.67515780076472],[-126.84407379974408,57.67513160088685],[-126.84419266353633,57.67514766211142],[-126.84440390363281,57.675168740488516],[-126.84461050563642,57.6751225720587],[-126.84471755840451,57.6750792809711],[-126.84474484433929,57.67508022816017],[-126.84477256978371,57.675054262117804],[-126.84488700899601,57.67496607306686],[-126.84508645585593,57.674834733225225],[-126.84527797572916,57.67477071973517],[-126.8454268359657,57.67476864806472],[-126.84550215176391,57.674760318272895],[-126.84557029990991,57.67471278985481],[-126.84574267466614,57.674589470788554],[-126.8458682592523,57.674484390705786],[-126.84593492357202,57.6744178100449],[-126.84601901915654,57.674333177702394],[-126.84611468102332,57.674249592665454],[-126.8462037340644,57.67415259459843],[-126.84631716441181,57.67401956012513],[-126.84639553117191,57.67391366011605],[-126.84641465804283,57.67387765731302],[-126.84641429403858,57.673814868711574],[-126.8464129439018,57.67370723575986],[-126.84643330206707,57.673586008846414],[-126.84647465420687,57.67346576899157],[-126.84649831254022,57.67339834176722],[-126.84650713839304,57.67337137495301],[-126.84650063769072,57.67326826003982],[-126.84647269546947,57.673096885003694],[-126.8464554096415,57.672980383879775],[-126.84645502050483,57.67291647422656],[-126.84645727155586,57.672876094274464],[-126.8464608635312,57.672849160937126],[-126.84645910465142,57.672817776747756],[-126.84648005195851,57.67276942841028],[-126.84654577244235,57.67270733861963],[-126.84656677803245,57.672662353695735],[-126.84648217654082,57.672630377920584],[-126.84638622637469,57.67260632349914],[-126.8463577850858,57.67260089898642],[-126.84636167795094,57.672587418918425],[-126.84640033982174,57.67253447230127],[-126.84650408279312,57.67243738024838],[-126.84661180151754,57.67233129257685],[-126.84666254221756,57.672255843355074],[-126.84667601625233,57.6722019364744],[-126.84668006290089,57.67214808988326],[-126.8467021248221,57.67210309820342],[-126.84672271688531,57.67208614754054],[-126.84668548735878,57.67206283907045],[-126.84666049120189,57.67197666153867],[-126.8467208125089,57.67186078552543],[-126.84675813213681,57.671794392242816],[-126.84673606046854,57.67174519776817],[-126.84670108198902,57.67168150939871],[-126.84666544810038,57.67163576544411],[-126.84664932922182,57.67161792829442],[-126.84665006829493,57.671604468397206],[-126.84666563891257,57.67155054814206],[-126.84669548576987,57.67147859636273],[-126.84671158295163,57.67144821928596],[-126.84669438226939,57.67142926779975],[-126.84665886571433,57.671388008161614],[-126.84664169016378,57.67137017777333],[-126.84661410593078,57.67135577773502],[-126.84655560843628,57.67131915008125],[-126.84652804934774,57.67130587112939],[-126.84642838530513,57.67130314454989],[-126.8461643660408,57.67131268106807],[-126.84592111403666,57.67131311426013],[-126.84581047331274,57.67128915333804],[-126.84573932549146,57.67120214928329],[-126.8456421149857,57.671074946186124],[-126.84552830633433,57.67095569788538],[-126.84547172370156,57.67091008744172],[-126.84545147052573,57.670895640355695],[-126.84541123140603,57.67087795710106],[-126.84539003843994,57.67086800106037],[-126.84542301063874,57.670842001459846],[-126.8454816997737,57.67079341235826],[-126.8455115183266,57.67076743287641],[-126.84552359796224,57.670744930468004],[-126.84553267922477,57.670682081737596],[-126.84549866033802,57.670613901953246],[-126.84543433059844,57.67055040078058],[-126.84537636640972,57.67049022272379],[-126.84535593822025,57.67046792790856],[-126.84533550179006,57.670444511880554],[-126.84528489313568,57.67038540808838],[-126.84520166854385,57.670320906196054],[-126.84510512428491,57.67026994443304],[-126.8450362464244,57.67023786747713],[-126.84499608328322,57.67022354741551],[-126.84496985759199,57.67022259353811],[-126.84493840673208,57.67022279426581],[-126.84490148044429,57.67021293856763],[-126.84488336638066,57.67019959901884],[-126.84491355480742,57.67009625022294],[-126.8449941002826,57.66989951526937],[-126.84503815037118,57.66980616935448],[-126.84504298326401,57.66978819831386],[-126.84505933682932,57.669721939471074],[-126.84508972464103,57.66962755949823],[-126.84510519654324,57.66956915511937],[-126.84509516909291,57.669542308846744],[-126.84507893495066,57.66951998724043],[-126.84505849920363,57.66949657119068],[-126.8450432217133,57.66946975842807],[-126.84502582253505,57.66944183794565],[-126.84506911564841,57.66936195202726],[-126.84517664615096,57.66924689691144],[-126.84523521621638,57.66919382369309],[-126.84524638074365,57.669176933490874],[-126.84531219716196,57.66911932892966],[-126.84541631743258,57.66904017577196],[-126.84548978054069,57.66899597742997],[-126.84553553131532,57.668978866315456],[-126.84557393537322,57.6689618021099],[-126.84561015933367,57.66894026677359],[-126.84565750569521,57.66890072020131],[-126.84570559131299,57.66884771375659],[-126.84578014832667,57.66875865782555],[-126.84584835269277,57.668620306964826],[-126.84583156412903,57.66843204241202],[-126.8458101566333,57.66822474597378],[-126.84581697765836,57.66810809130785],[-126.84581962992631,57.66808564915476],[-126.84582156397788,57.66803181630212],[-126.84594495920226,57.66787629393802],[-126.84619416086508,57.667673995714736],[-126.8463346350711,57.667532940229876],[-126.84634421554715,57.667492513625696],[-126.84634906429712,57.66747454246943],[-126.84639760217142,57.66739462270182],[-126.84648290021285,57.66727073874512],[-126.84652352768269,57.66721217345606],[-126.84663492100985,57.66722379494766],[-126.84686668252296,57.66722679756408],[-126.84699030722297,57.66717554997059],[-126.8469761224528,57.66710388011341],[-126.84692917058156,57.667067178941636],[-126.8468438005202,57.667047542415716],[-126.8467615369543,57.666978550552194],[-126.84683562284373,57.66682222160338],[-126.84701275029704,57.66663271685896],[-126.84712196223477,57.66649970947107],[-126.8471637532099,57.666446742865254],[-126.84718581123356,57.6664017513473],[-126.84719758738792,57.66636579570036],[-126.84719834293561,57.66635233575955],[-126.84721271739926,57.66633878865899],[-126.84724558403146,57.666308304323316],[-126.8472599584615,57.66629475721836],[-126.84727330133606,57.66628233797299],[-126.8473012110331,57.666264219196464],[-126.84732187493596,57.66625063182829],[-126.84732326878705,57.666219227663426],[-126.84732595610332,57.66615193494467],[-126.84732838980939,57.66612052412671],[-126.8473508740694,57.666094591259395],[-126.84744221880467,57.66600654836266],[-126.8475551661964,57.66590042696171],[-126.84760010901084,57.66584744005995],[-126.84759980777916,57.66583398688897],[-126.8476542766298,57.66578542400892],[-126.84771599096351,57.66573232967612],[-126.84778619144168,57.66568366600042],[-126.84790365628614,57.66559209174577],[-126.84813031403355,57.66546057380294],[-126.84837311233673,57.66534801342107],[-126.84847501887369,57.6652643871885],[-126.84848419443529,57.66520602296797],[-126.84849117301262,57.66514318780123],[-126.84850014748955,57.665075854813324],[-126.848480374935,57.66503561627646],[-126.84843582212605,57.665012355431486],[-126.84841253521454,57.665002413366636],[-126.84842792472048,57.66494064556522],[-126.84853583453135,57.66484352574345],[-126.84859335324953,57.66479045792571],[-126.84861485465315,57.66476789493846],[-126.84864791985599,57.664746379069605],[-126.84869136657525,57.664720311603844],[-126.84870793684091,57.66471123530563],[-126.84874968923728,57.66470311880122],[-126.84880937009224,57.664699372351855],[-126.84883874506474,57.664700305245105],[-126.84883175194034,57.664668954883325],[-126.84881784113992,57.664609617449486],[-126.84881094860026,57.66458275147325],[-126.84882485334987,57.664501931794284],[-126.84879041679362,57.6643216302303],[-126.84868283229434,57.66419898178733],[-126.84864785751206,57.66413529438616],[-126.84866505041977,57.66401408844048],[-126.84863121823267,57.66386069320459],[-126.84858839556931,57.66377463099723],[-126.84858675264017,57.66374773137846],[-126.84859557475554,57.66372076467111],[-126.8486116671141,57.66369038758595],[-126.84864126850708,57.66365431761021],[-126.84868021966477,57.66361482391466],[-126.84870151927878,57.66358329217847],[-126.8486970249653,57.663569865920785],[-126.84868919344318,57.66354749101109],[-126.84864548099115,57.663515254843375],[-126.84862527246247,57.6635019293311],[-126.84862633842218,57.66345595100062],[-126.84860031210371,57.663370902404395],[-126.84854507843855,57.663338740071765],[-126.84851276942706,57.66334679597608],[-126.84848728666944,57.66333238299911],[-126.84847440710013,57.66331901048771],[-126.84843624583525,57.66330019374679],[-126.84834848567104,57.66326711856135],[-126.84826096851519,57.66324413306357],[-126.84823023669836,57.66322975367746],[-126.84821020430104,57.66322427576825],[-126.84814648537898,57.6631876826282],[-126.84805109558337,57.66314120107257],[-126.84800864159699,57.66311792669463],[-126.84801756443011,57.663095444420165],[-126.84803441217122,57.66305160751956],[-126.84804323451782,57.66302464086664],[-126.84804558374249,57.66298874564275],[-126.8480140001728,57.66288915626462],[-126.84792663014258,57.662779832969136],[-126.8478293984397,57.662697482917324],[-126.84775331424656,57.66262396740218],[-126.84772020234624,57.66259614809511],[-126.8477405879456,57.66257022867328],[-126.84777711625654,57.66251617448701],[-126.84779740134881,57.66248577068237],[-126.84780442871676,57.662472270614344],[-126.84782638323509,57.66242279478257],[-126.84788329666048,57.662342821142],[-126.84796185252786,57.662245890016635],[-126.84799752458173,57.66220081130376],[-126.84797196745791,57.662183034962254],[-126.84791809389792,57.66216431875896],[-126.8478885200458,57.66215441691457],[-126.84786829573977,57.662141091411364],[-126.84781316491657,57.66211341318491],[-126.84776545482748,57.66208905117164],[-126.84772935170615,57.6620220071408],[-126.84768848102553,57.66188211211586],[-126.84765785542453,57.661778031617395],[-126.84764384712135,57.66171420984904],[-126.84765461732277,57.66163341059441],[-126.8476585442738,57.66157508024586],[-126.84765071377801,57.661552705316836],[-126.84763124517458,57.66152591990277],[-126.84757236030103,57.6614713555507],[-126.84750258454399,57.661397799599044],[-126.84743403781904,57.66123902048559],[-126.84736199027574,57.66101747359666],[-126.84733768830809,57.66091559514125],[-126.84733306933761,57.660896563409025],[-126.84515364817867,57.65680672085013],[-126.8489706182728,57.65562179871177],[-126.85098780122547,57.654996641808914],[-126.85848264577614,57.64787542062842],[-126.85902834659046,57.64735610792356],[-126.87631240547397,57.64297531727868],[-126.87644781709214,57.64289593349463],[-126.87653657983726,57.64279219138084],[-126.8766914812175,57.64260391799047],[-126.87681653765222,57.642439388272095],[-126.87686999188685,57.64234933484404],[-126.87694520409644,57.64220419645938],[-126.87699627701049,57.64210182515194],[-126.87708824104058,57.64191060487082],[-126.87718134717757,57.64172386193557],[-126.8772560370544,57.64160115167635],[-126.87736171182227,57.64145917484721],[-126.87747175781587,57.64132501762161],[-126.87755244532103,57.64123478335513],[-126.87763903733506,57.641128812540146],[-126.87772132554521,57.64101726404046],[-126.87789289651245,57.64082551515525],[-126.87809982211999,57.64062231902669],[-126.87831825997026,57.640419046165086],[-126.8784423677655,57.6403038558933],[-126.87858026626498,57.64019642258525],[-126.87876800290076,57.64006959705122],[-126.87892470293052,57.63995979602511],[-126.87910408313961,57.63983414678366],[-126.87928992938893,57.6397163029861],[-126.87944399609192,57.63962894360192],[-126.87955988540007,57.63956650509309],[-126.87970877379749,57.639481422308045],[-126.87994225462594,57.63933971485839],[-126.88014997143303,57.63921611820979],[-126.88031647379415,57.63912306890092],[-126.88046336799397,57.63904248349549],[-126.88061890211219,57.63897305277758],[-126.88083927569217,57.63889870520409],[-126.8810431793117,57.638881650012955],[-126.8812567971574,57.63878716448115],[-126.881400358924,57.63874360103717],[-126.88157782666636,57.638671780574846],[-126.88174357107292,57.63859106812775],[-126.88191552133944,57.63850695039222],[-126.88204908809165,57.63843878568309],[-126.88230334650649,57.6382902081423],[-126.88244167068784,57.63820182906163],[-126.88259360291023,57.63811335904649],[-126.88291272129035,57.63796098387665],[-126.8833243372959,57.637776595708836],[-126.88349747630848,57.63769919540885],[-126.88355187852082,57.63756092006911],[-126.88362062096482,57.63745394352271],[-126.88370413186247,57.63735135322888],[-126.8837709284359,57.6372062676221],[-126.88377598638365,57.63706383696843],[-126.88372669207487,57.63688140500701],[-126.88369959777557,57.636618095860584],[-126.88381298614956,57.63644915312646],[-126.88389335319329,57.63630173442498],[-126.88410097492319,57.635996492437975],[-126.88428526903891,57.635813620624766],[-126.88447779056459,57.635758514208185],[-126.8845883620061,57.63569386447676],[-126.88467875291776,57.635617016057054],[-126.88480520012486,57.6354692886771],[-126.88497339301088,57.63526970515813],[-126.88520803232377,57.63508985898397],[-126.88553001263625,57.63492736743763],[-126.88566759251837,57.634852444908674],[-126.88587482985339,57.63471090298137],[-126.88600362356377,57.63448467251484],[-126.88623070690372,57.63416135743621],[-126.88657462116417,57.63390677538772],[-126.88672794514437,57.63374429014428],[-126.88671713234287,57.633595238766056],[-126.88676380369779,57.633486166372876],[-126.88688804084238,57.63342366562831],[-126.88688523875027,57.63325886334615],[-126.88676425337866,57.633057852856226],[-126.88670042296403,57.632970824739346],[-126.88657525430052,57.63285954068138],[-126.88655792235241,57.632700442037326],[-126.88666792605129,57.63252255014899],[-126.886827637513,57.632454205524695],[-126.88679954760899,57.63237254401763],[-126.88704680667983,57.6321959739661],[-126.8872609587622,57.63199271603343],[-126.8874064767453,57.6318101004416],[-126.88747395838688,57.63169528217118],[-126.88752048441266,57.63157948326836],[-126.88757324438328,57.63137282290253],[-126.88761430830134,57.63115839243904],[-126.88763015052353,57.631074193897554],[-126.88744559447763,57.631065341320465],[-126.88726417195184,57.631056467464965],[-126.88708035675387,57.63103415465641],[-126.88679760937268,57.630992322848826],[-126.88642080885784,57.63095896944425],[-126.88621174855211,57.63097718888231],[-126.8859392201829,57.630879225324506],[-126.88547733680817,57.630612102342404],[-126.88506623421091,57.63041079050961],[-126.88486597318314,57.63035719033042],[-126.8846533289455,57.63031152128286],[-126.88449007134044,57.63027224899239],[-126.8843098581862,57.63022524128002],[-126.88405055912908,57.63024491444313],[-126.88370033349375,57.63022819415564],[-126.88346557341458,57.63004251752308],[-126.88336293109157,57.62990753460013],[-126.88320702498912,57.629869332885704],[-126.88299391522158,57.62980348223961],[-126.88274441664717,57.62970423733028],[-126.88257968452014,57.62960218386117],[-126.88248062930124,57.62953108633266],[-126.88235954819275,57.629459014463386],[-126.88220702467851,57.62938603100833],[-126.88202016987113,57.62932336739299],[-126.88175415627155,57.629234321877455],[-126.88150031139617,57.62921807444908],[-126.88131364530632,57.62920810623853],[-126.88112816526456,57.62920373599485],[-126.88097304628259,57.62919916325029],[-126.88081237012646,57.62918117262054],[-126.88057235336221,57.62912895208277],[-126.88041601044063,57.62907168921176],[-126.88012494734707,57.6289861709103],[-126.87978982455196,57.6288975814175],[-126.87952224521403,57.628830966431],[-126.87931173641753,57.628786395984285],[-126.87913083606611,57.62875396187014],[-126.87898137826096,57.62872243976293],[-126.87877210828962,57.62868570881347],[-126.87849486594054,57.62865391397316],[-126.87824942997989,57.628638725716534],[-126.87789829604033,57.62862760236344],[-126.87771088063687,57.628629967548676],[-126.87754379512249,57.62865125839682],[-126.8773154090382,57.628694258974974],[-126.87702242364861,57.62875114226471],[-126.87685763918155,57.628781386783096],[-126.87664046798467,57.62881085713214],[-126.87641541304863,57.62881683364308],[-126.8762042598763,57.628744231923676],[-126.8759940664818,57.62871310883689],[-126.8757499266837,57.628753968598005],[-126.8754569671267,57.62876712046697],[-126.87530345297961,57.62874122719816],[-126.87497289487992,57.62866829254129],[-126.87464088517763,57.628577427081204],[-126.87447281890232,57.628511265026596],[-126.87429962905827,57.62844962153502],[-126.87400687357847,57.628425768454804],[-126.87358096063284,57.62839606703059],[-126.8732677361898,57.62839365078298],[-126.87307983437415,57.628420679548995],[-126.87291584550796,57.628439701644126],[-126.87273158977041,57.628443160145515],[-126.87248556656137,57.62844814712411],[-126.87210772257045,57.62841363893402],[-126.87165031789151,57.628380775298204],[-126.87132501572603,57.628353767136865],[-126.87092909629656,57.62830704122725],[-126.87073719311293,57.62829709263466],[-126.87050124723629,57.62828407000313],[-126.87018468473445,57.62827269864795],[-126.86981897300899,57.62826501347521],[-126.86950202498535,57.62823682467839],[-126.86936183031463,57.62819738231843],[-126.86918119845531,57.62817614515184],[-126.8689177786902,57.6281532092639],[-126.86860060098154,57.62811492882483],[-126.86840316347974,57.62809155853457],[-126.86823832597884,57.62807358004319],[-126.86801682082434,57.62805148840937],[-126.86776825977348,57.62803630127583],[-126.86750413668696,57.62802794309367],[-126.86731780045213,57.62798655881369],[-126.86715958371825,57.62784632234097],[-126.86687711281067,57.62790535655341],[-126.86656260564165,57.6279836608603],[-126.86637995428444,57.62801176689733],[-126.86621434443431,57.628006124396755],[-126.86603407397203,57.628000577695595],[-126.86584126289996,57.62799623407621],[-126.86558458166279,57.62799230823098],[-126.8653697201128,57.62798586580259],[-126.86517264364045,57.62797818545439],[-126.86486753598955,57.627963362798546],[-126.86463750244549,57.62793459396668],[-126.86438916395151,57.62788351994856],[-126.864221697933,57.62784200799928],[-126.86405297220539,57.62779153430026],[-126.86384148432008,57.62784112843228],[-126.86357338712915,57.6277957880672],[-126.86335548755436,57.627747877025016],[-126.863172008952,57.6277389837147],[-126.86292747068548,57.627717033929876],[-126.86257234893124,57.62766777448499],[-126.86238117504882,57.62764323317893],[-126.86221003376386,57.627624167098666],[-126.8620594114127,57.62758702751161],[-126.86191932889737,57.627552061504836],[-126.86175629396467,57.627521729802],[-126.86141903691065,57.627474593319846],[-126.86109448290141,57.627434100596005],[-126.8609452745587,57.62741264763869],[-126.86070877732672,57.62737494434549],[-126.86010894956597,57.62729587658803],[-126.85946048812922,57.627195819029104],[-126.8592076134523,57.627083097780606],[-126.85921402127681,57.62694963099492],[-126.85920626048423,57.62683868067247],[-126.85905946834986,57.62678469455717],[-126.85878619101084,57.62674162070712],[-126.85856928287987,57.62669033180872],[-126.85842469676528,57.62664193677984],[-126.85853589586377,57.62646518350609],[-126.85866047257116,57.62632422230585],[-126.8587626464105,57.62621143695455],[-126.8588967811123,57.6260760195789],[-126.85903046605713,57.62592154428325],[-126.85910276220564,57.62583025592925],[-126.85917175573182,57.625732261687766],[-126.85924362769738,57.62562303653058],[-126.85931770835812,57.625472311916525],[-126.85936550406313,57.625363243163534],[-126.85943282167553,57.62523722925976],[-126.85951238228692,57.62509768114421],[-126.85958161514415,57.624963806217096],[-126.85966333245976,57.62478051653475],[-126.85975004718132,57.624587103380925],[-126.85983005444238,57.62446661293093],[-126.85988882708374,57.62437989704063],[-126.8598898231265,57.624285708326184],[-126.85985903753681,57.624128938134824],[-126.85983714591266,57.623902594694506],[-126.85977110362329,57.62371465972874],[-126.85967132688246,57.623609914089215],[-126.85963898662845,57.62352266946517],[-126.85959261943128,57.62341757656753],[-126.85946672288907,57.623269273180654],[-126.85937162021514,57.623092739182475],[-126.85924453442955,57.62293771607691],[-126.85913241332715,57.62279605023482],[-126.85901032765102,57.62263090353606],[-126.85889177364953,57.62248255204192],[-126.85882515503572,57.62240786334107],[-126.85859620115697,57.62228601655898],[-126.85844809277609,57.62221970529884],[-126.85826867557256,57.62215808196092],[-126.8580622032086,57.62205739145216],[-126.85796925068702,57.62197614596393],[-126.8578183804122,57.62183360939037],[-126.8577190453574,57.621747920300216],[-126.8575221082751,57.621605682245175],[-126.85736353309176,57.621493467959006],[-126.85725279266318,57.62141233736502],[-126.85714611396077,57.62132557429027],[-126.85712864145253,57.62120123286671],[-126.85714171699304,57.62103857218525],[-126.85719918664542,57.62080162367511],[-126.8572308950197,57.62058278160843],[-126.85721662158461,57.62041469225256],[-126.85721009980638,57.620265613277795],[-126.85720993701531,57.62016582643653],[-126.85718128515455,57.6200101636929],[-126.85715432274122,57.61988252031362],[-126.857111687973,57.619664160386876],[-126.85704820491424,57.6193113902634],[-126.85699220274536,57.618918208149466],[-126.85701018065299,57.618601910183465],[-126.85709927210014,57.61823581807381],[-126.85718151395791,57.617843982597805],[-126.85718238438173,57.61751209888823],[-126.85711578238677,57.61725241010187],[-126.85707273961049,57.61715514393795],[-126.85671557996082,57.6171036407327],[-126.85648458886705,57.617167925026884],[-126.85634370589018,57.617234988940396],[-126.85616898442771,57.617194635768975],[-126.85606020097448,57.61710676467079],[-126.85583254577836,57.61699387522734],[-126.85555028435735,57.61692058108561],[-126.85537034768993,57.616881381841736],[-126.85510336965264,57.616788927342],[-126.85498069216713,57.61673478152231],[-126.85484113854088,57.61667513867109],[-126.85466843917779,57.61663140686584],[-126.85436161605261,57.61653696606785],[-126.85418964467851,57.61647865324359],[-126.8540028998338,57.61641595080078],[-126.85378236946752,57.61634001179463],[-126.85363137099614,57.616283805240776],[-126.85340814751638,57.616228064752136],[-126.85319993410711,57.61618792393134],[-126.85298950126324,57.616142191069954],[-126.85273729119886,57.616054121473525],[-126.85253273737487,57.61599041066678],[-126.85222294722908,57.6159498020941],[-126.85222948203032,57.61586791186617],[-126.85205283075625,57.61574123289619],[-126.85196308073292,57.615661084411116],[-126.85181503211258,57.6155487965195],[-126.85170997788295,57.61539362566547],[-126.85166659295702,57.615186482017926],[-126.85165385756125,57.61508565551939],[-126.8514069553702,57.615093973046825],[-126.85121822492484,57.61512882452113],[-126.85096319278975,57.61519437506347],[-126.85073240487036,57.61526761754659],[-126.8505455402178,57.61529236519684],[-126.85038786000193,57.61526422818446],[-126.85020411797186,57.6152407434136],[-126.85006438758134,57.615359368550195],[-126.84979395000839,57.6153454102632],[-126.84958284765176,57.61531649446208],[-126.84921778421163,57.61533117319497],[-126.84893660252811,57.61530494890947],[-126.84866720521238,57.615243891010216],[-126.84844633977711,57.615199339201645],[-126.84830080947098,57.61529333313532],[-126.8478616647808,57.615459846190504],[-126.84729823286528,57.615500458154166],[-126.84701621319759,57.61548320479513],[-126.84668316190803,57.61552570155292],[-126.8464227051647,57.61553633896707],[-126.84618696815731,57.61557596899161],[-126.84593906876262,57.615633615703544],[-126.84575963558062,57.61566279383688],[-126.84553306731145,57.61578533324],[-126.84514379810933,57.61584164009907],[-126.8449398523591,57.61585191331761],[-126.84496769546286,57.61573849362337],[-126.84488586045754,57.61563698694384],[-126.84470183929707,57.61564825367297],[-126.84444288366328,57.61563308986977],[-126.84422202092574,57.615588530988326],[-126.84400928387532,57.61553270781936],[-126.84370749887499,57.61547408901118],[-126.84338324116067,57.61544140059386],[-126.84319571425013,57.61543586952137],[-126.84302723829582,57.61544030754637],[-126.84279057603516,57.61543845282074],[-126.84262906249445,57.615426027884936],[-126.8423077397067,57.615336136706595],[-126.84206197356201,57.61525473317535],[-126.84190670167823,57.615192934624176],[-126.84176929287712,57.61513438577441],[-126.84160446759455,57.61506704168872],[-126.84143170619772,57.61506702015296],[-126.8410639449963,57.61500769407657],[-126.84075419192226,57.61496705856241],[-126.84052119801436,57.61494163118843],[-126.84029226748797,57.614910571561595],[-126.83996178623248,57.614880156783194],[-126.83970289203998,57.61491431631491],[-126.83953133553005,57.61492101186825],[-126.8393269631255,57.614911097489134],[-126.83902983238615,57.614873741429456],[-126.8387563446455,57.614863143587044],[-126.83854685422776,57.61485886649245],[-126.83834554015077,57.6148455675926],[-126.8381544962117,57.614823233651705],[-126.83789697338507,57.614777775525816],[-126.83773753314586,57.614764210306596],[-126.8375629191697,57.61477428629002],[-126.83733523033938,57.61479927384829],[-126.83690945894948,57.614815424281154],[-126.83668045877906,57.614828085778555],[-126.83644994178125,57.6148676653432],[-126.83617486398613,57.614927708003194],[-126.8359914618215,57.614966988762845],[-126.83581898955957,57.61497929129868],[-126.83564278268315,57.615012920068494],[-126.83544262285575,57.615004094263185],[-126.83514111027009,57.61495778754908],[-126.83493791879114,57.614906374434106],[-126.83468446315364,57.614855278369134],[-126.83447336712634,57.61482521730427],[-126.83418631539763,57.61476984754045],[-126.83396955840267,57.61472076096065],[-126.83383356403829,57.61467789188468],[-126.83364171286092,57.61457146638576],[-126.83344364787813,57.61446732220295],[-126.83325655295772,57.61438665383454],[-126.83294442818776,57.61438077233156],[-126.8327303108789,57.61416572930732],[-126.83265432500565,57.61404287576584],[-126.83268375914244,57.613952994276715],[-126.83253870869355,57.61392699898308],[-126.83242648806937,57.61382231274472],[-126.83235518341847,57.61372185362224],[-126.8323209518226,57.61364134268396],[-126.83221826850544,57.61354220226259],[-126.83210986793311,57.61342067374943],[-126.83200571228727,57.613302482050806],[-126.83194410984224,57.613214294909085],[-126.83190426036784,57.61311588005996],[-126.83173658593974,57.612965573090406],[-126.8315491308291,57.6128198751624],[-126.83128879440855,57.61264436292377],[-126.83102540555348,57.61256865615107],[-126.83068817894699,57.61246762527886],[-126.83032701049682,57.61242056150705],[-126.83002894381045,57.612434766520686],[-126.82986278627904,57.61244814286828],[-126.82957669158681,57.61243536292816],[-126.82921285884827,57.6124096156237],[-126.82887216125894,57.61238932826048],[-126.82865728862764,57.61237722095294],[-126.82839237516566,57.61237551767043],[-126.82813358762562,57.612365927090956],[-126.82796157536477,57.61235130775541],[-126.82781054748371,57.61233879919208],[-126.82763644194281,57.61232419254341],[-126.82735434024322,57.612302413219204],[-126.82709540670008,57.61228609433613],[-126.82694125515913,57.61227472552573],[-126.82676399388393,57.61225901627492],[-126.82641120638154,57.61221188944207],[-126.82602133507083,57.612144811832074],[-126.82573546880005,57.61209390144599],[-126.82541196888606,57.61204546783034],[-126.82510112846826,57.61200143920724],[-126.82492158055312,57.61197677219324],[-126.82465689597822,57.61193693929651],[-126.82450974085879,57.61190982725676],[-126.82425961131433,57.61176899502294],[-126.8239610896696,57.61161725200951],[-126.82362737095002,57.61148366680869],[-126.82337115381198,57.611400051952245],[-126.82318878605369,57.611341764284404],[-126.82304735488462,57.61128882748513],[-126.82290684079005,57.61123027884793],[-126.8227664655375,57.611177335185495],[-126.82252629311907,57.61115752707036],[-126.82230970081102,57.61116223816153],[-126.82211293937385,57.61116458317684],[-126.82195472849828,57.611158839828214],[-126.82176698288285,57.61114206793243],[-126.8215665001828,57.61106931512303],[-126.82137612117236,57.61097968129982],[-126.82119701173622,57.61092697667242],[-126.82097182262123,57.61087343679721],[-126.8207893715179,57.61081178281666],[-126.82059252117348,57.610713218521994],[-126.82044483425412,57.6105156836268],[-126.82037649984466,57.610260475217856],[-126.82028266244888,57.610133241314685],[-126.82006778109832,57.61011999902728],[-126.81976898124117,57.61014763985343],[-126.81958923880806,57.61016220874097],[-126.8194197415411,57.61011841174578],[-126.81926645142302,57.610048726613535],[-126.81913958747319,57.609991210698],[-126.81898322257202,57.6099249078891],[-126.81881536038847,57.609859797315394],[-126.81865398937848,57.609803615890094],[-126.81851798902268,57.609759610315166],[-126.81832866439164,57.609718177115916],[-126.81807668378569,57.60968385859206],[-126.81782660353926,57.60964055828258],[-126.81751999391238,57.60954827459708],[-126.81714977040349,57.609419384089634],[-126.81696656050052,57.60941827414107],[-126.8167321029527,57.60941972297609],[-126.816451687797,57.60942594003495],[-126.81608645847848,57.609431558953176],[-126.81574619740331,57.6094291744271],[-126.81558062807109,57.609421226533335],[-126.81541960725578,57.60943006827422],[-126.81525327223402,57.60943557901384],[-126.81506168881867,57.60943451806795],[-126.81485300433042,57.609417865558555],[-126.81454431518065,57.609374920361],[-126.81431931324886,57.609329216542875],[-126.81417407639739,57.6092931118107],[-126.8139807165447,57.60925842445737],[-126.81381254957854,57.60922694530337],[-126.81365802216463,57.60919650317456],[-126.81350386316201,57.60918399768361],[-126.81319139954068,57.60916013286102],[-126.81284955720625,57.60913308438688],[-126.8125436387953,57.60912151090793],[-126.8121969102619,57.60915951994841],[-126.81185253848238,57.609209846718905],[-126.81157837921988,57.609165561363916],[-126.81139768505115,57.609087065992576],[-126.81123252545481,57.60904883796599],[-126.81103212224343,57.60902764386247],[-126.8108718693411,57.60902302104765],[-126.81066907797738,57.60903659799941],[-126.81042981218269,57.609058246613756],[-126.81026777736585,57.609068209487205],[-126.81000457400897,57.60904739876457],[-126.80985458087221,57.60898440986834],[-126.8096211760411,57.608838963537735],[-126.80950903376703,57.608734258343425],[-126.80941532330532,57.60865971237235],[-126.8093269099565,57.60858849748345],[-126.80925732966926,57.608516046052145],[-126.80918723039723,57.6084200527532],[-126.8091095500671,57.60831177273122],[-126.8089903653157,57.60817123216562],[-126.80886803312922,57.608030710776454],[-126.80882250777647,57.607859447192716],[-126.8088444080466,57.607659741289254],[-126.80875884810035,57.60747638963015],[-126.80855925971613,57.607345310263305],[-126.80836038981846,57.60724786191874],[-126.80812124739332,57.607127114533405],[-126.8078985896304,57.606993932897915],[-126.80775772554244,57.60691631055237],[-126.80760005167079,57.60683654839513],[-126.80751308736687,57.60673393031045],[-126.80746390854485,57.6065873549871],[-126.80725966548616,57.60643387848107],[-126.80694291616862,57.60630575474461],[-126.80668826768635,57.60619406910721],[-126.80651671551294,57.60610093618418],[-126.80635066779747,57.60602010254094],[-126.8061796356017,57.60600096444601],[-126.80609884179471,57.605991366516236],[-126.80598554762541,57.60597972434803],[-126.80579294063381,57.605930445238464],[-126.80566925904702,57.60587289742255],[-126.80552316237885,57.60579530472412],[-126.80528579795657,57.605658845019065],[-126.80505228075,57.605555997105505],[-126.80480504868191,57.605447626370896],[-126.80448831589888,57.60531949686883],[-126.80420348175058,57.605214717478134],[-126.80398446357664,57.60515326344675],[-126.80377308942833,57.605106338002855],[-126.80354262780337,57.604850987570074],[-126.80335228765618,57.60461108956212],[-126.80327797684153,57.60451287683595],[-126.8033390834914,57.60443290123214],[-126.8034669409877,57.60429197580078],[-126.80352057015135,57.6042053184659],[-126.80354077400743,57.60412110670457],[-126.80355596480682,57.6040974694495],[-126.80360867413093,57.60401642361194],[-126.8036546762894,57.60391523720198],[-126.80367508615323,57.60379178269808],[-126.80371075251793,57.60354826861361],[-126.80379614467996,57.603231575146324],[-126.80393299736282,57.602824873934736],[-126.80405977928383,57.602436172929586],[-126.80416188602815,57.6021182566424],[-126.80394314850928,57.601970469981744],[-126.80363865104592,57.60172678273812],[-126.80336444921252,57.601480668350064],[-126.80318505669102,57.601312460098875],[-126.80307079029635,57.601204399772755],[-126.80291551440548,57.60108761905768],[-126.80266162933283,57.60091089327436],[-126.8022420157942,57.600666781080996],[-126.8014743460407,57.60024538988941],[-126.80109552615355,57.599999905709666],[-126.80057456660687,57.599663344859394],[-126.80000011062484,57.59922171504544],[-126.7999533119236,57.5991861205787],[-126.79960891918338,57.598984150105345],[-126.79941870189135,57.59894605962657],[-126.79922371718277,57.59893042130144],[-126.79876130225826,57.598888369898646],[-126.79827181640967,57.59880275442017],[-126.79772470134425,57.59881278526558],[-126.79705044525473,57.59879891479842],[-126.79659753091804,57.598760162088944],[-126.79647485889724,57.59874968970194],[-126.79621248349102,57.59871427187867],[-126.79602768282447,57.5986851133518],[-126.79585969253651,57.59870854873203],[-126.79546735740047,57.59881405937668],[-126.79527108187962,57.59873675817662],[-126.79508061540052,57.598636998174534],[-126.79494194837729,57.59856159225205],[-126.79482971519656,57.59849948134638],[-126.79472463425073,57.59842947909136],[-126.79459316755498,57.59834842363356],[-126.79447159697179,57.598289732121366],[-126.79427883266894,57.5982303472516],[-126.79403170262592,57.59812307813363],[-126.79388803401861,57.59805891299449],[-126.79372320376628,57.59798366303446],[-126.79350109596864,57.59787175796382],[-126.7933053446639,57.59776866373779],[-126.79317193125267,57.59769434569712],[-126.79304764592989,57.59760651862493],[-126.79288181139705,57.59748306308502],[-126.79272566131161,57.59737188220712],[-126.7926110613905,57.59729632960498],[-126.79249648535429,57.597221897944856],[-126.79248478776286,57.59706276102744],[-126.79235679778914,57.596847141499296],[-126.79205798274447,57.5966695447252],[-126.79186471674484,57.596535040719836],[-126.79182214575002,57.59645120763618],[-126.79174646833829,57.596335058818106],[-126.79167297765419,57.59622338157293],[-126.7916152374132,57.596113852297215],[-126.7915853653515,57.59598621726692],[-126.79158500092832,57.595868496060966],[-126.79159940188649,57.595756292290254],[-126.79160858624236,57.595645240954866],[-126.79161174182948,57.59559589035857],[-126.79161695312153,57.595444500551885],[-126.79162693460624,57.595321111551],[-126.79152074701274,57.5951468444536],[-126.79126913222348,57.59502390106569],[-126.791136106645,57.594967517701036],[-126.79079023490146,57.59484065304226],[-126.79097642978148,57.594786843439614],[-126.79129627449882,57.59471990037652],[-126.791429263052,57.59467425696284],[-126.79156539849987,57.59462859456401],[-126.79171179245422,57.59457390117018],[-126.79180975425872,57.59445446977141],[-126.79186623903703,57.59435322565658],[-126.7919607650057,57.59421923949902],[-126.79205122897953,57.594092004675],[-126.79211389649647,57.593986238726735],[-126.79217444772559,57.59387936427146],[-126.79224938861522,57.59376007061684],[-126.79234288054967,57.59362721161449],[-126.79252132097369,57.59345348085367],[-126.79254315112073,57.59329638574135],[-126.79244617817857,57.59316242665603],[-126.79238171730971,57.59308208882372],[-126.79231077658886,57.59289191494764],[-126.79227631425785,57.592794579620914],[-126.79217699351061,57.59264830160002],[-126.79214288964398,57.59256890286288],[-126.79215898208057,57.592437629293734],[-126.79222348971574,57.592219735253586],[-126.79219698479966,57.59200238693297],[-126.79221733937968,57.59182511985434],[-126.79236381588409,57.59172445730289],[-126.79256214937506,57.59165151281291],[-126.79275564789874,57.591548325422025],[-126.79256155474644,57.591473250218435],[-126.79208551417786,57.59132474686461],[-126.79153511289482,57.59117220265699],[-126.79105652012133,57.59100128757337],[-126.79059823206879,57.59095133564944],[-126.79006099882466,57.591028546418976],[-126.78960195400875,57.59099204960584],[-126.78934748274212,57.590881453164265],[-126.78919129536851,57.59081735834605],[-126.78883768149159,57.59071856480007],[-126.78850409492095,57.59062637782256],[-126.78821731679642,57.590572030527156],[-126.78801401039966,57.590556425712855],[-126.78785746414285,57.590524845397496],[-126.78759308183201,57.59038963906046],[-126.78730867634306,57.59024782452925],[-126.78706973139327,57.59012816197723],[-126.78691331838223,57.59005285421317],[-126.78668179216946,57.589988084048684],[-126.7862691512773,57.58991766443675],[-126.7859072446729,57.58987272863426],[-126.78560108151129,57.589790461867366],[-126.78524764238003,57.589649053511245],[-126.78494490141429,57.58952976639554],[-126.78477817286279,57.58946124447443],[-126.78467748240745,57.589399057160826],[-126.78454696066918,57.58931013891168],[-126.78432822303863,57.58920604793223],[-126.78405652478985,57.589069757075535],[-126.78386728994928,57.58897558078398],[-126.78374111821591,57.58889448414969],[-126.78363522738017,57.58878299561954],[-126.78355791495966,57.58868703385827],[-126.78341732654874,57.58856678163151],[-126.78317625564593,57.58839330899863],[-126.78300367153032,57.58829454819252],[-126.78286980606892,57.588246010204294],[-126.78268522535618,57.588174228065604],[-126.78253735982908,57.588106712876],[-126.78232695082686,57.58799920594349],[-126.78217515396048,57.58789359402801],[-126.78208041852545,57.58781455214053],[-126.78192359446791,57.587769512633685],[-126.78164971754317,57.587729650197204],[-126.78143024432549,57.58769058658562],[-126.78121550242487,57.58762682901055],[-126.78091649717294,57.58753554008129],[-126.78073215499896,57.587525417944846],[-126.78051973806114,57.58747285716648],[-126.78027411738488,57.58738237257219],[-126.7799650302774,57.58736065326378],[-126.7794845870423,57.5873489136855],[-126.77903047361549,57.58729553403381],[-126.77876352607015,57.58723656502122],[-126.77859748389324,57.58725099765336],[-126.7783897618794,57.5872230714261],[-126.77805244098012,57.587099488105665],[-126.77760021515026,57.58698442846812],[-126.77709757604316,57.586911146901684],[-126.77661587699698,57.58683774034478],[-126.77619549942575,57.58674491200615],[-126.77586644414295,57.58666724233882],[-126.77568468097493,57.58662906898362],[-126.7754316775184,57.5865868289003],[-126.77527014857172,57.58656647481708],[-126.77524429462704,57.58637602889712],[-126.77520726966686,57.58620246599228],[-126.77517206164354,57.58606701195765],[-126.7751127574051,57.58592945698892],[-126.77506377656537,57.58578511447616],[-126.77507408494324,57.58562360670396],[-126.77512456093493,57.58548316534923],[-126.77515999594112,57.58537420476765],[-126.7751278826694,57.58528694260672],[-126.77505363772207,57.58513490028557],[-126.77497317008678,57.584934684529756],[-126.77497046755941,57.58480240339911],[-126.7750396724597,57.5847078198949],[-126.77511972651357,57.58463223243475],[-126.77523197665585,57.58439164539706],[-126.77523157863072,57.584167415666776],[-126.7752122086413,57.58398702255729],[-126.77519792239589,57.58385144603781],[-126.77517484986895,57.583694619057965],[-126.77512527546229,57.58357270355239],[-126.77506270757453,57.58348001442656],[-126.77500641583772,57.583387288459654],[-126.77496672251246,57.58328773814836],[-126.77495192653414,57.583177951346016],[-126.77494540676112,57.583063631365924],[-126.77492431225814,57.582952760374646],[-126.77488659702676,57.58284759268442],[-126.77482621442046,57.582759375334156],[-126.77470450282097,57.58263900405384],[-126.77462179810608,57.58253297900616],[-126.77456137840545,57.5823920673435],[-126.77454221706614,57.582273336925304],[-126.77453286677569,57.582173608678666],[-126.77451954492436,57.58208511530696],[-126.77487303442183,57.58197877451225],[-126.77498908074094,57.58187270488841],[-126.77499690636904,57.58174372583276],[-126.77481889238642,57.58173467970337],[-126.77446513961954,57.58172554264798],[-126.77422752244979,57.58171796631978],[-126.77405049444609,57.58170554990543],[-126.77393970534155,57.58160753721286],[-126.77387153123374,57.58154739413299],[-126.77381203054604,57.58145132318245],[-126.77381270709867,57.5813302342487],[-126.7737788829717,57.581210468590136],[-126.77367189975588,57.58104292171437],[-126.77357752804902,57.58092911644196],[-126.77358229751704,57.580803518975635],[-126.77379393256992,57.5806666194466],[-126.77397689239314,57.58055903767516],[-126.77417206489447,57.580435687890066],[-126.77433217312047,57.58033608765995],[-126.77445428372945,57.580271465868705],[-126.77462715331221,57.58018300202573],[-126.77480339705535,57.58010572972666],[-126.77500984160798,57.580021553062366],[-126.77516148663864,57.57996909004551],[-126.77547127984877,57.579875336868966],[-126.77580854527055,57.57974442346933],[-126.77609778387823,57.579617154875656],[-126.77623873773183,57.579553541883485],[-126.77635574251774,57.579495675285976],[-126.77655680494011,57.57940480091165],[-126.77674485236041,57.579342031658335],[-126.77689764455137,57.57929516568225],[-126.77706284494086,57.57913835329747],[-126.77734058880908,57.57896181879165],[-126.77766620301746,57.57877266917266],[-126.77782030203798,57.57868767516626],[-126.77796991512817,57.57863858436554],[-126.77826810267372,57.578540408375225],[-126.77863375357657,57.5784171686208],[-126.77890192412012,57.578284412346854],[-126.7789854036943,57.57817292570796],[-126.7789826399382,57.57808885540494],[-126.77905915801766,57.57799534826544],[-126.77944376299368,57.57792917336668],[-126.78017154046277,57.5779192707921],[-126.7805908146791,57.577912308955014],[-126.78070479461239,57.57791051413693],[-126.78077694798282,57.577910087633136],[-126.78104647010068,57.57789391910681],[-126.7812783885922,57.57788021477554],[-126.78135009543074,57.57780691553585],[-126.78144995347256,57.57767851312741],[-126.78182377997733,57.577445343010716],[-126.78246859960122,57.57711526858486],[-126.78280192405191,57.57694736262949],[-126.78295065474317,57.57690724064916],[-126.78336066082541,57.5768061479477],[-126.78335004938572,57.5766974589404],[-126.78336493878766,57.57650677446503],[-126.78347186466257,57.576214640269775],[-126.78353332710809,57.576101039157315],[-126.78386589681219,57.57589725816288],[-126.78625996786052,57.57443449794297],[-126.79334181451459,57.57240098037057],[-126.80636841678023,57.570043900864114],[-126.81762182924628,57.56947242753179],[-126.82080484418918,57.56917463503016],[-126.82439699761647,57.5681207970846],[-126.82734408895477,57.56650584396916],[-126.82983320559656,57.5634676025849],[-126.8336142880468,57.561102825996336],[-126.8421916425966,57.5596940419288],[-126.85077735687578,57.55873310361509],[-126.85681832976317,57.558012375686936],[-126.86498017132989,57.557107075978074],[-126.87515159889115,57.555963732383205],[-126.88311541084217,57.55574924911296],[-126.89232177936435,57.554099785622434],[-126.90054249343568,57.55107514771666],[-126.90337542864232,57.54928885655163],[-126.90532754471354,57.54625286625853],[-126.9128011147506,57.54312496121678],[-126.91798924229049,57.542461130834454],[-126.92549809307573,57.54098258382283],[-126.93088366916814,57.53969798699769],[-126.9357591613292,57.53926885801605],[-126.94667279942993,57.53828512193315],[-126.95539764760376,57.539199876980156],[-126.96542563647941,57.54125259179268],[-126.97268056460304,57.54291243955368],[-126.97800743202565,57.54361751695681],[-126.99147011307203,57.54267394162047],[-127.00182704853863,57.54060453480857],[-127.00970456374209,57.53701059105032],[-127.01265170953396,57.53139118780228],[-127.01552601529545,57.52737778808587],[-127.02169311181473,57.52344649975712],[-127.0283757945937,57.519008634172025],[-127.03081938471725,57.51476508593862],[-127.03071838580301,57.51054142046647],[-127.0354622480274,57.50936517443633],[-127.04234052322143,57.508629323844495],[-127.05032553859948,57.50983060072434],[-127.05958082654729,57.51073418430188],[-127.06694870770525,57.51279149501147],[-127.06982671245207,57.51739628894098],[-127.07155583658565,57.52275483347207],[-127.0745118692942,57.53055202445347],[-127.0771145889834,57.53270138317298],[-127.07788110254118,57.53360999848867],[-127.08373974903405,57.534360277317866],[-127.09041751431147,57.533973385732374],[-127.09762445770087,57.533572784096],[-127.10462339821142,57.53335291793936],[-127.11066544304457,57.532961350660834],[-127.12667737270188,57.53238607143942],[-127.13845467236796,57.53206072493108],[-127.1434812213006,57.53356000468341],[-127.14556546735196,57.53594575375775],[-127.14497525559315,57.53771787536399],[-127.14206755541638,57.54002134063379],[-127.13889133643818,57.54421964129771],[-127.13847060999296,57.548277529209976],[-127.14010010990627,57.54963581452819],[-127.14356211379764,57.552000757602784],[-127.14366825342624,57.555767098683276],[-127.14313454203077,57.5596017828053],[-127.14135564921276,57.564523616898136],[-127.13886494549097,57.57048311174493],[-127.14450062033478,57.574497715379735],[-127.14696473254982,57.57522083481158],[-127.15101885523241,57.579634621024645],[-127.1553657826858,57.58308596518248],[-127.15900833713809,57.58790680136121],[-127.1605803306986,57.59086206798423],[-127.16460493629317,57.594208352709806],[-127.16823412671393,57.5984550356495],[-127.17344184160922,57.60206869752562],[-127.17644834708496,57.603127353992676],[-127.18307783973911,57.60438678658981],[-127.18860349941998,57.604112952952825],[-127.19422113811814,57.59978354194542],[-127.19797729182146,57.597291724033724],[-127.20334746531591,57.59548478124855],[-127.20924057517949,57.593322998578216],[-127.21593096093832,57.592974552742476],[-127.22072205031414,57.593280209572804],[-127.22725368491116,57.59116553524993],[-127.23101914923461,57.589085309913195],[-127.23545108664239,57.588012371606446],[-127.23971070554921,57.58820569131386],[-127.24777322257529,57.587681277283096],[-127.25406544333285,57.58482300315107],[-127.25788853737288,57.58119859271968],[-127.26230670416086,57.57966739957952],[-127.26624911188222,57.58003331856003],[-127.26954826246188,57.58011826028694],[-127.2771991635435,57.58004449821779],[-127.28065882920401,57.57853091977954],[-127.28573920010098,57.57780879705128],[-127.2870607148257,57.57932982615537],[-127.2893002725742,57.57954120812669],[-127.29800288153275,57.57911510087698],[-127.30340059171144,57.57838020662638],[-127.31113957762554,57.577747450994565],[-127.31648242253952,57.578609266569785],[-127.32032337603644,57.57908222968634],[-127.323235337901,57.57706168941749],[-127.32177898227852,57.57146988137731],[-127.32168426898049,57.56851066614314],[-127.32921219323899,57.56478423457523],[-127.33064773032255,57.56322690588386],[-127.32665717039708,57.558073362438094],[-127.32209110893206,57.55485406252958],[-127.32035430509185,57.55373224968631],[-127.31952989314087,57.547909973630546],[-127.32175914567921,57.54126781521603],[-127.32473058133806,57.53136212637584],[-127.32688108986014,57.52568949469381],[-127.32668913648418,57.519744432824034],[-127.32525659674558,57.51817118377924],[-127.32335712710581,57.515212296363295],[-127.32333405109125,57.51122099375495],[-127.32342388492033,57.50744384449677],[-127.31848625997226,57.50560968657789],[-127.31381979387183,57.505656275728455],[-127.30658784753167,57.501718729137195],[-127.30184543602711,57.49599821429798],[-127.30051800469526,57.49429813673572],[-127.29942847846857,57.493447808737756],[-127.29851077259951,57.49117859688963],[-127.30469919859966,57.489063454750195],[-127.3134834128346,57.48858152950506],[-127.3206045645928,57.485774648197136],[-127.32252538881083,57.479584368297274],[-127.31709896535719,57.47570114480017],[-127.31166262630224,57.47146801468316],[-127.30424354990421,57.464796743078864],[-127.30182424310057,57.45864981246057],[-127.30265809448603,57.45151102290218],[-127.30423885486641,57.444580129703624],[-127.30594209855715,57.441540637666826],[-127.31099878513788,57.43743631630496],[-127.32491399026097,57.435539005019486],[-127.33331131167024,57.43653945947875],[-127.34154265099268,57.43577414589991],[-127.35482437789993,57.43080367949389],[-127.36304168596244,57.42963353891296],[-127.37068236389408,57.42698897353644],[-127.37201421014947,57.42566559064852],[-127.37553018356707,57.42008593296626],[-127.37810598068816,57.414919661450796],[-127.38878397828788,57.40847515094049],[-127.38982812150158,57.408006696154374],[-127.39524257294026,57.405563581125904],[-127.40678336769125,57.402642257721716],[-127.41528844232333,57.40090066794012],[-127.4252276582951,57.39777071008003],[-127.43362876801868,57.395751005092535],[-127.43466796058573,57.395506471212876],[-127.44410172791332,57.396093799621106],[-127.4544213449213,57.394840948651535],[-127.46476515292852,57.39130884512785],[-127.46977420894265,57.38663381893392],[-127.46681441090709,57.38072037207297],[-127.46088574674089,57.37472334474147],[-127.45895157123165,57.37377618342823],[-127.45414292351799,57.36942572498322],[-127.45503889442125,57.36490442429749],[-127.45680116303654,57.36095650473165],[-127.45710622209509,57.357751225598086],[-127.46081689965219,57.352283836168795],[-127.47032426889281,57.346410751378855],[-127.48355012292598,57.33838733073836],[-127.48945481112614,57.335297973523225],[-127.49142463450585,57.33378230006058],[-127.49279492736989,57.33272746266905],[-127.4912263200801,57.32862638535919],[-127.49161045576093,57.328882113836734],[-127.4918552080376,57.32900153112799],[-127.4921142262029,57.3291140592187],[-127.49231526665216,57.32925863680309],[-127.49254976650536,57.32938153275893],[-127.49287964259749,57.32939235488741],[-127.49320548539947,57.32935277275317],[-127.49351363721149,57.329286484827456],[-127.49380975510935,57.32920463780211],[-127.49410154094797,57.32911835503529],[-127.49438899465505,57.329027636556724],[-127.49467329492794,57.32893583225925],[-127.4949596548773,57.328844003874316],[-127.49524931381099,57.32875662165277],[-127.49554426166489,57.3286714207027],[-127.49584113750886,57.328582833815894],[-127.4960086738831,57.32853495911323],[-127.49614126850231,57.32849757242624],[-127.49644828995469,57.32842904821416],[-127.49676264157648,57.32838846708215],[-127.49708830353484,57.32837129919062],[-127.49742271528434,57.328365241614904],[-127.49776069132993,57.3283703534741],[-127.49809904660734,57.32838555000681],[-127.49843252425204,57.32840864904345],[-127.4987590908148,57.32844079494459],[-127.49906471441555,57.3284956012195],[-127.49933232505248,57.32861474365582],[-127.4996015914556,57.328722655679584],[-127.4999116904058,57.32873256498113],[-127.50024528583437,57.32867942346148],[-127.50051199436709,57.32845776011207],[-127.50072372527653,57.32831856507505],[-127.50093127195672,57.328178296453245],[-127.50113357069633,57.328036966434915],[-127.5013241683705,57.32788904338397],[-127.50149901458171,57.32773681589286],[-127.50167490650519,57.32758457620537],[-127.50186337815703,57.327435555607096],[-127.50205186495833,57.32728653456596],[-127.50224033366788,57.327137513462425],[-127.50243621297184,57.32699177053613],[-127.50264477661503,57.32685148755792],[-127.50287144727648,57.32672220784669],[-127.50311723880682,57.32660391969213],[-127.50337573125381,57.326491091049256],[-127.50364269219023,57.3263826492419],[-127.50391391155308,57.3262764002735],[-127.50418515693615,57.32617127153512],[-127.50445320455911,57.32606393669586],[-127.50471381106942,57.32595220223938],[-127.50496379109782,57.3258349836464],[-127.50519364415288,57.32570790556758],[-127.50539586984404,57.32556544867345],[-127.50571889676134,57.325429453053424],[-127.5060514247293,57.32532361719464],[-127.50643640320177,57.325151033643],[-127.50686979307395,57.3250204946993],[-127.50720126725925,57.32491466798588],[-127.50743146327552,57.324849242317235],[-127.50875141293213,57.32414347661353],[-127.50901657481822,57.3240428920798],[-127.50924671366818,57.323923651197696],[-127.50941695667603,57.32376137615461],[-127.5095146069013,57.3235763930043],[-127.50945635381512,57.323443652682606],[-127.50938022574375,57.32325282097913],[-127.50915098360085,57.32310523093805],[-127.50899606783136,57.32294557482357],[-127.50888850564989,57.32277416307158],[-127.50880676973988,57.322599091007966],[-127.50875302563516,57.322422575968055],[-127.50876970535573,57.32223964569275],[-127.5087978459661,57.32205770474641],[-127.50872377266859,57.32189263449267],[-127.50851028953113,57.32174934678835],[-127.50832251649464,57.32159903665724],[-127.50816043674105,57.32144170440316],[-127.50800341035952,57.32128095062371],[-127.50784133327058,57.32112361801602],[-127.50766701537592,57.32097203136711],[-127.5074702033578,57.32082967171002],[-127.50721823692167,57.32071148833657],[-127.50693253709878,57.32060714506319],[-127.50666430989712,57.320498116182854],[-127.50646261222893,57.32036365889041],[-127.50631305271317,57.32020730199708],[-127.50618495950557,57.3200417298053],[-127.50607735730468,57.31986919575884],[-127.50598418023097,57.31969313280945],[-127.50590237584407,57.31951581820534],[-127.50582896916076,57.31934064938486],[-127.50577316627292,57.31916415743005],[-127.50573810755056,57.31898630632025],[-127.50571437659157,57.318806083046546],[-127.50569480006118,57.31862581211948],[-127.50567209976845,57.31844557706709],[-127.50563699799321,57.31826660545046],[-127.50559046433658,57.31808776504426],[-127.50553868596909,57.317907863747806],[-127.50548904593758,57.31772905901491],[-127.50544977497441,57.31755013531136],[-127.50542925847974,57.31737211751413],[-127.50543474085188,57.317194922500555],[-127.50548189600454,57.3170206125799],[-127.50556963238736,57.31684807913728],[-127.50567922892878,57.31667641585583],[-127.50579085728639,57.31650360808605],[-127.50588794579211,57.31633096713092],[-127.5059485180292,57.316154260941595],[-127.50597251367913,57.315972369179896],[-127.50598918728434,57.315789440403414],[-127.50602682349046,57.31561075535665],[-127.50611468675481,57.3154415834876],[-127.50626855509238,57.315286227877124],[-127.50646739351612,57.315138203307434],[-127.50668300585555,57.31499447013958],[-127.50688816027417,57.31484861456663],[-127.507053570313,57.31469648873288],[-127.50714888120172,57.31453171501102],[-127.50715951144568,57.31435334000573],[-127.50712936919184,57.3141687069287],[-127.50710237841672,57.31398515875679],[-127.50708804243251,57.313805949573016],[-127.50706741525964,57.31362569160415],[-127.50704269547523,57.313446601763424],[-127.5070179150903,57.31326639155671],[-127.50699734937118,57.313087254042344],[-127.5069829976024,57.31290804516783],[-127.50698007657013,57.31272870500437],[-127.50698966040797,57.31255034229672],[-127.50700958374688,57.31237073974522],[-127.5070367396188,57.312189933038646],[-127.50707115552251,57.31200904294077],[-127.50711499652455,57.311830286739735],[-127.507170267395,57.31165139921999],[-127.50723605397624,57.311475754123066],[-127.50731438861887,57.311302206992416],[-127.50742215007772,57.31113729034358],[-127.50760213956467,57.31098611760376],[-127.50773669194798,57.3108948843568],[-127.50781461748835,57.310842418763706],[-127.50801874288985,57.310697694518076],[-127.50826163069013,57.310561492929935],[-127.5084920291857,57.3104243134323],[-127.50862726635374,57.31027141176915],[-127.50864852065047,57.31009964147569],[-127.5086144426066,57.309920660014406],[-127.50855211755878,57.309736398021975],[-127.50853684090738,57.30969173037572],[-127.50848874650217,57.309552148063645],[-127.5084493813845,57.30937098528981],[-127.50846013688621,57.30919597264331],[-127.50855230480968,57.3090312345499],[-127.50871652026566,57.30887575745776],[-127.50891938042483,57.30872544101945],[-127.50912543406041,57.30857732969008],[-127.50931482945336,57.3084282886408],[-127.50943393583835,57.30834059467422],[-127.5095116600841,57.30828364608072],[-127.50971801907825,57.30814337788222],[-127.50993598292406,57.30800746009458],[-127.51015821454762,57.30787485605147],[-127.51038568851376,57.30774331234331],[-127.51061740254795,57.307613961567746],[-127.51085128015355,57.307486827620664],[-127.51108939783623,57.307361886567094],[-127.51133920893075,57.30724353682894],[-127.51160074119117,57.30713289910031],[-127.51185901587166,57.30701893514569],[-127.51211505172179,57.30690051215759],[-127.51224787491674,57.30673978714093],[-127.51234174209402,57.306566058206705],[-127.51240633312729,57.306387061401686],[-127.51244500433147,57.306209484562345],[-127.51246597298758,57.30603099079314],[-127.51247648730215,57.30585037543947],[-127.51248702927563,57.30567088087237],[-127.51250692318344,57.30549127848122],[-127.51254762501681,57.305312557225115],[-127.51260395188068,57.30513477685538],[-127.51265092631819,57.30495710434666],[-127.51266671076742,57.304778670497974],[-127.51266271720384,57.30459934370462],[-127.51264934414476,57.30441900403684],[-127.51263809190004,57.30423976101472],[-127.51263614707167,57.304059289591365],[-127.51264045891197,57.30387986711178],[-127.51263954392883,57.30369938386278],[-127.51262783893321,57.30353472019889],[-127.51262621566525,57.30352016489055],[-127.51257872616426,57.303343582100496],[-127.51248658925753,57.30316751423642],[-127.51241733629413,57.302992303520114],[-127.51242385837296,57.30281621895831],[-127.51246980098776,57.30263855872148],[-127.51253653312537,57.30246177979728],[-127.51260846347444,57.302284940901515],[-127.51267309039166,57.30210706514688],[-127.51270534996719,57.301925078420126],[-127.51274388214823,57.30174414043128],[-127.51285994227493,57.30158024535356],[-127.51302627310208,57.301426980978064],[-127.51320099598283,57.30127586171677],[-127.51338302007879,57.30112577904556],[-127.51357133216342,57.30097674462723],[-127.51376491360156,57.300829891269125],[-127.51396371995858,57.3006840983825],[-127.51416573609906,57.300540510287234],[-127.51437087318456,57.300396885839575],[-127.51457717174597,57.30025661088638],[-127.51478661905449,57.300117420312226],[-127.51497511855261,57.29999977186624],[-127.515004519087,57.299981494979455],[-127.51522876251643,57.29984885921691],[-127.51545829176344,57.299718404135874],[-127.51568993996065,57.29958904523419],[-127.51592158658943,57.299459685936775],[-127.51615215746088,57.29932921758651],[-127.51637748387856,57.29919768839429],[-127.51659752139554,57.29906397782535],[-127.51680804561185,57.29892589261736],[-127.51700905655831,57.29878343281751],[-127.51720685468932,57.298638767728164],[-127.51740253081665,57.29849300581832],[-127.51759499413677,57.29834503864596],[-127.51778218527735,57.29819489006216],[-127.51796517847374,57.29804366873158],[-127.51814082358686,57.29789029006679],[-127.51830910406771,57.297734754290396],[-127.51846899030647,57.297577073355214],[-127.51861845097844,57.29741839189453],[-127.51875842677711,57.29725645689888],[-127.51889417705459,57.29709232855576],[-127.51902977590508,57.2969248386077],[-127.51916005844303,57.29675404689417],[-127.51928511382252,57.296582194550325],[-127.5193996829162,57.296408221456865],[-127.51950384362655,57.29623324781596],[-127.51959345570738,57.29605844271061],[-127.51966538591505,57.295882721411274],[-127.51971867740096,57.29570833718933],[-127.51974917874901,57.29553533818653],[-127.5197496331733,57.295363808530986],[-127.51970129752381,57.29519284438875],[-127.51961044445122,57.29502349409102],[-127.51949050300536,57.294853359784575],[-127.51935393968179,57.29468341801247],[-127.51921219641774,57.29451353615295],[-127.5190776833769,57.29434244933861],[-127.51896386803693,57.29417000157453],[-127.51888219169346,57.2939960603744],[-127.51883571469125,57.293819469270744],[-127.51880689017962,57.293642673700475],[-127.51879249033503,57.29346346891762],[-127.5187894708308,57.29328301126243],[-127.51879372463205,57.29310246938148],[-127.51880211318178,57.29292187962952],[-127.51881051825771,57.29274128971089],[-127.5188137668839,57.29237914597485],[-127.51901487454153,57.29221426081516],[-127.51915268145713,57.29205010881802],[-127.51929471097102,57.291888149894746],[-127.51945141898085,57.2917293839266],[-127.51962395193434,57.29157716078285],[-127.51980275492632,57.29142598580367],[-127.5199867372186,57.29127475053676],[-127.52017397348894,57.291126840495856],[-127.52036747966525,57.2909799785506],[-127.52056631538048,57.29083641771994],[-127.52077041942657,57.29069503761767],[-127.5209819119482,57.29055693469253],[-127.52120288508394,57.29042208463223],[-127.52143338340383,57.29029160794075],[-127.52167131473949,57.29016552884902],[-127.52191667909949,57.290043847315275],[-127.5221674622045,57.28992770775373],[-127.5224330849653,57.28981924287302],[-127.52272758241632,57.289731742412194],[-127.52303870843572,57.28967095379317],[-127.52336001370077,57.289631346487184],[-127.523688097594,57.289605112451824],[-127.52402053890204,57.28958443229048],[-127.52435195039672,57.28956376325641],[-127.52468115189822,57.28953975586994],[-127.52501039770404,57.28951686820831],[-127.5253397325706,57.28949622082138],[-127.52566902234412,57.2894744520573],[-127.52599831174255,57.28945268246666],[-127.52632760076588,57.28943091204924],[-127.52665914397984,57.28941359883685],[-127.5269917777215,57.28939739315252],[-127.52732430500595,57.289378945718326],[-127.5276535926386,57.28935717197241],[-127.52797950612485,57.28932871029044],[-127.52829972913283,57.28928798233964],[-127.52860646758097,57.28922162617423],[-127.52890202056503,57.28913522043387],[-127.52919752737262,57.28904769348443],[-127.52950209715935,57.28897911834792],[-127.52982356934244,57.28894397742027],[-127.53015943716701,57.28893108912033],[-127.53049985961283,57.28892823643573],[-127.53083704243696,57.288922057478445],[-127.53116324752106,57.28890143192424],[-127.5314717424352,57.28885298562806],[-127.53176119444588,57.288770007847184],[-127.53203408265476,57.28866255938898],[-127.53228975329893,57.28853961658],[-127.53252862239667,57.28841238538559],[-127.53270740448126,57.28826231374113],[-127.53283755142584,57.28809038907816],[-127.53305476715266,57.28796677331242],[-127.53335594682012,57.28789150231211],[-127.53367295239707,57.28782277190076],[-127.53396969242523,57.28774082497609],[-127.5342717179608,57.28766105765655],[-127.53457690862903,57.287582373653606],[-127.53487996104005,57.287502592893006],[-127.53517666758422,57.28741952251779],[-127.5354637551818,57.287329837690194],[-127.53573599857961,57.28723247861392],[-127.53598911187314,57.28712413238193],[-127.53620184588564,57.28699271631772],[-127.53637739547646,57.286840435327235],[-127.53653274059381,57.28667605912663],[-127.53668388864313,57.28651061087458],[-127.53684780278361,57.28635286029697],[-127.53702534865283,57.286198312904204],[-127.53719660547694,57.28604271794852],[-127.53734482379622,57.2858817875974],[-127.53745229385929,57.28571460856891],[-127.5375386044098,57.285537588000786],[-127.53760081479138,57.28535524472039],[-127.5376214908112,57.28517226755381],[-127.53758540440353,57.28499780371667],[-127.53749661665648,57.284829563393245],[-127.53738401784405,57.2846627233732],[-127.53725283310554,57.284498343392926],[-127.53710504774195,57.284334157977334],[-127.53694594841473,57.284172347227745],[-127.53678069834042,57.284012850571365],[-127.53661348115607,57.28385561894224],[-127.53644535459291,57.283701761003584],[-127.53625570196695,57.283554881584145],[-127.5360486453293,57.2834138112175],[-127.53583447053593,57.28327618716617],[-127.53562429592924,57.283135152728754],[-127.53543462085455,57.28298715145213],[-127.5352651419112,57.2828254605688],[-127.53508863477434,57.28266945715397],[-127.53487572186309,57.2825374222691],[-127.53461034210737,57.28244299658157],[-127.53431357240673,57.28236799596503],[-127.53399762169651,57.28230667198161],[-127.5336746256385,57.28225103502296],[-127.5333545716636,57.282190878596246],[-127.53304660975031,57.28212161144102],[-127.53273960493107,57.28205009025371],[-127.53243055449218,57.28197971334719],[-127.53212449137504,57.28190593761152],[-127.53182655015131,57.28182758199744],[-127.5315417023825,57.28173898314092],[-127.53127399197466,57.28163785175684],[-127.53103434650674,57.28151172859025],[-127.53082613973639,57.28136730079661],[-127.53064979206793,57.28121465321053],[-127.5304909125223,57.28105731719455],[-127.53033819793139,57.28089878797735],[-127.53019059075943,57.28073795686147],[-127.53004709001381,57.28057595661405],[-127.5299056206446,57.28041281146937],[-127.52976727328605,57.28024962976941],[-127.52962991146302,57.280085315392704],[-127.52949358001308,57.279920988883624],[-127.52935519135934,57.27975668627193],[-127.52921580294142,57.27959351627748],[-127.52905444105495,57.279426118263146],[-127.52887319759036,57.279254467751954],[-127.52868465695153,57.27908178107958],[-127.52850129704166,57.27890903376189],[-127.52833570172498,57.278739442269476],[-127.52820142735025,57.278573969663526],[-127.52811111366874,57.27841807397465],[-127.52802774319534,57.278305818718756],[-127.52801012821462,57.27822867081179],[-127.52835051273172,57.27804533209734],[-127.52867429613659,57.2779664448679],[-127.529045084936,57.277894855882295],[-127.52940089992312,57.27781222994952],[-127.5296863168578,57.27770800346281],[-127.52993911514737,57.27759294649948],[-127.53018658192086,57.27747458810272],[-127.53043085346941,57.27735402441958],[-127.53067291403103,57.277230122911405],[-127.53091186907685,57.27710625722549],[-127.5311496870967,57.276980162258084],[-127.53138750354785,57.27685406687179],[-127.53162531843033,57.276727971066634],[-127.53186317664772,57.27660299537951],[-127.53210310810604,57.27647799501832],[-127.5323462317148,57.27635519901233],[-127.5325914900669,57.27623349864705],[-127.53284210522457,57.27611621940988],[-127.53310746692681,57.27600437248981],[-127.53338445471282,57.27589799430549],[-127.53366574193745,57.275794928398106],[-127.5339469660839,57.27569074155454],[-127.5342208454418,57.27558439795802],[-127.53448106584786,57.27547372946303],[-127.5347212515761,57.27535544763072],[-127.53493608917566,57.27522625162176],[-127.5351172348483,57.275085118240064],[-127.53525935871994,57.27492874688588],[-127.5353709115117,57.27476040187368],[-127.53545928166167,57.27458335990732],[-127.5355319191476,57.27440201799343],[-127.53559827032318,57.27421962865684],[-127.53566575651914,57.27403946812695],[-127.53573549678624,57.27386376540811],[-127.53578647460212,57.27368604043004],[-127.53581869022037,57.27350629321547],[-127.53583742878756,57.27332670396231],[-127.53584577751775,57.2731472364973],[-127.53583754594163,57.27296796337486],[-127.53581370167898,57.272787752194816],[-127.53578160432052,57.2726087588205],[-127.53573605924576,57.272431044123365],[-127.53566775599207,57.27225471719778],[-127.53560670601257,57.27207830527281],[-127.53560018826524,57.27181269069066],[-127.53566549744212,57.27173345124701],[-127.53594096803327,57.27161587476651],[-127.53609092351104,57.27144820036835],[-127.5363221955523,57.27131544635055],[-127.53654710736674,57.27117940332254],[-127.53674888281967,57.27103578382457],[-127.53691188158969,57.27088252929076],[-127.53704023638471,57.270719591398475],[-127.53715808257357,57.270553413486496],[-127.53726542026334,57.27038399558447],[-127.5373654430622,57.270213542368516],[-127.53746019703871,57.27004090879246],[-127.5375496822481,57.2698660948687],[-127.53763812112949,57.26969129317636],[-127.53772551369738,57.269516503717846],[-127.53781504153618,57.26934281021362],[-127.5379087007579,57.26916906817378],[-127.53800764354108,57.26899750617917],[-127.53811389913092,57.26882697933919],[-127.53822957029188,57.268658584006666],[-127.53836832888668,57.268496643868595],[-127.53853842700423,57.26833994089595],[-127.53872637280898,57.26818863339995],[-127.5389184823884,57.26803727673246],[-127.53909912825509,57.26788493338256],[-127.53925470044038,57.26772840011317],[-127.53937054370682,57.26756448602491],[-127.53944561305187,57.267393203509165],[-127.5394966552323,57.26721771904899],[-127.53952681880057,57.26703911673954],[-127.53954444623601,57.26685841963227],[-127.53955265739957,57.26667559107699],[-127.5395598681802,57.266493895356696],[-127.53956915313198,57.26631217528921],[-127.53958780885034,57.266131466190835],[-127.53960652610415,57.26595187744541],[-127.53962004935947,57.26577234975435],[-127.53963045289011,57.26559285874557],[-127.5396418565969,57.26541223495267],[-127.53965642488279,57.26523269504977],[-127.53967719895245,57.26505308224223],[-127.53970633118608,57.26487449228594],[-127.53974793658645,57.26469687681372],[-127.53979578062028,57.264519188029105],[-127.53984973976783,57.26433918526868],[-127.53991201149108,57.264159084803936],[-127.53998789144552,57.26398218753594],[-127.54008157279785,57.26380956520062],[-127.54019523629067,57.263643434225536],[-127.54033510397875,57.263483721401485],[-127.54050120415279,57.26333154735937],[-127.54069132708882,57.26318357482151],[-127.54089828339711,57.2630410092893],[-127.54111992057983,57.262902754947305],[-127.54134900427894,57.26276889683028],[-127.54158143158888,57.26264060422848],[-127.54182231759134,57.26251669587301],[-127.54207593389512,57.26239936354252],[-127.54233900901492,57.262285282517055],[-127.54260844020926,57.26217448927243],[-127.54287898896878,57.26206592440921],[-127.5431484170536,57.261955130073396],[-127.5434126216615,57.26184327565983],[-127.54366837648158,57.261728157110596],[-127.54391043097976,57.261607594247664],[-127.54413666596204,57.26148049107428],[-127.54434287169234,57.2613457762474],[-127.5445279743187,57.26120234147299],[-127.54469512184399,57.26105127077924],[-127.54484961465539,57.2608947438404],[-127.54499043625772,57.2607338937444],[-127.54512168935179,57.26056755109753],[-127.54524457168033,57.26039906495988],[-127.54536112405685,57.260228411282846],[-127.54547349890814,57.2600566857442],[-127.54558478222516,57.25988385194679],[-127.54569501930213,57.259711030411054],[-127.54580841977301,57.259539292518],[-127.54592507419552,57.25937087929256],[-127.54604797784863,57.25920351327244],[-127.54617395418062,57.259034989828834],[-127.54629361729664,57.25886429869148],[-127.54640188161808,57.25869374201507],[-127.54649034483484,57.25852117692094],[-127.54655180249728,57.25834780955937],[-127.54657677866223,57.25817038869649],[-127.54656745482852,57.2579911307064],[-127.54653420035054,57.25780991316838],[-127.54648438479231,57.25763001221668],[-127.54642948422658,57.25745241340669],[-127.54634776139795,57.25727849438528],[-127.54611729253021,57.25694041577685],[-127.5456659392701,57.25673274302964],[-127.54542446450516,57.256610034663595],[-127.54515978576924,57.25650329427545],[-127.54488296655848,57.25640454390028],[-127.54460210848475,57.25630808268606],[-127.54432629202073,57.25620819831132],[-127.54404731294068,57.25610722961223],[-127.54376126666652,57.25601082782445],[-127.54347622174595,57.2559132925898],[-127.5432003206458,57.25581116484645],[-127.54294375088902,57.25569984046489],[-127.54271365958024,57.25557587224603],[-127.54251407042669,57.25543697085628],[-127.5423369026902,57.25528771577297],[-127.54217703765086,57.25513040944759],[-127.54202731616272,57.25496737831773],[-127.54188169800763,57.25480317770498],[-127.54173503600555,57.254638989252705],[-127.5415813066183,57.25447936803153],[-127.54143065203289,57.25431858943541],[-127.5412851292151,57.2541566292707],[-127.54113965277834,57.25399578947858],[-127.54098695694704,57.25383615553937],[-127.54082201821264,57.25368114965649],[-127.54064678676573,57.25352850675556],[-127.54046747135855,57.253377032730484],[-127.54028301037599,57.25322674004881],[-127.540092465629,57.25307988180764],[-127.53989677537699,57.25293420486151],[-127.53969298959818,57.25279310699583],[-127.53948202997927,57.25265433525197],[-127.53926398674413,57.2525201306206],[-127.5390408147059,57.25238710696655],[-127.53881354234248,57.252255252180646],[-127.53858533324767,57.25212565012093],[-127.53835603560822,57.251994939438134],[-127.53812979636947,57.251863071427096],[-127.53790663210802,57.251730045909376],[-127.5376906446529,57.251594693702614],[-127.53748072732975,57.2514559067921],[-127.53727695833634,57.25131480533148],[-127.53707620263013,57.25117142614189],[-127.53687850523357,57.25102688975056],[-127.5366838827172,57.25088119597694],[-127.53649238007237,57.25073546534794],[-127.53630181728137,57.25058748136755],[-127.53611228436172,57.25043948506544],[-127.53592379788861,57.250291476251604],[-127.53573640283615,57.25014457544275],[-127.53554994764737,57.24999542130108],[-127.53536556726208,57.24984624260548],[-127.53518524505924,57.24969477403748],[-127.53500902598705,57.24954213612669],[-127.53483793838181,57.249388316838385],[-127.53467199878405,57.24923331599877],[-127.53450706052956,57.24907718221261],[-127.53434310703437,57.248919915678435],[-127.53418428488405,57.24876146782608],[-127.53403471224749,57.24860066939883],[-127.53389749065386,57.24843748410252],[-127.53377776650068,57.24827073066659],[-127.53367759626268,57.24810038505531],[-127.5335928332135,57.24792649587075],[-127.53352043710804,57.24775021977912],[-127.53345736290137,57.247573834528396],[-127.53339941911445,57.247396268171094],[-127.53336311810818,57.24721508530652],[-127.53339380046486,57.24702302885615],[-127.53333550318318,57.24686228223941],[-127.53309237141004,57.24674741993826],[-127.53276472237897,57.24667166165448],[-127.5324447022058,57.24663056540051],[-127.53211610802798,57.2466086262847],[-127.53178263705851,57.246594590638175],[-127.53145007664507,57.246577180392286],[-127.5311251813764,57.246543985197945],[-127.53080980061833,57.246489378326146],[-127.53050128168542,57.2464246012024],[-127.5302348968017,57.24635036276598],[-127.5298745038111,57.24625928550782],[-127.52964596131696,57.24622384001924],[-127.52922448523243,57.246238851674526],[-127.52890666339708,57.24620108430798],[-127.5285994172623,57.246116109316596],[-127.52833871918219,57.24600256455533],[-127.52823168950111,57.24584126375402],[-127.52820676358827,57.2456588262048],[-127.5283047950993,57.24549064823577],[-127.5284569338301,57.245327443862266],[-127.52864304827825,57.245209805071035],[-127.52888744540915,57.24504552322641],[-127.52906013338347,57.24490337786807],[-127.52906099152004,57.24471727641025],[-127.52892282160386,57.24455521891369],[-127.52871798654925,57.244411876081024],[-127.52847528571107,57.244281306292784],[-127.52820757692226,57.24417344857248],[-127.52791602239633,57.24409165229236],[-127.52759919079774,57.24402584469618],[-127.52727062118342,57.24397810975279],[-127.5269438574593,57.243949410470535],[-127.52662389472961,57.243960988215335],[-127.52631295061063,57.24404308501918],[-127.52606243611623,57.24415810779479],[-127.52586729428441,57.244309478914694],[-127.52563579173231,57.24443324758159],[-127.52533435744898,57.24451971535493],[-127.52501225420725,57.24455597672418],[-127.52468508418161,57.24454297092172],[-127.52435475321839,57.24450309635829],[-127.5240372812446,57.24444737688692],[-127.52373568064142,57.24437353549435],[-127.52344188261843,57.24428727131877],[-127.52314714690739,57.24420325947235],[-127.5228426550892,57.24413505485891],[-127.52251468936953,57.24407609071673],[-127.52217698359463,57.24403293340307],[-127.52185864604417,57.244033270294715],[-127.52158253184702,57.244104861696954],[-127.52133452135573,57.24423105646558],[-127.52094030188601,57.24438361163442],[-127.52080543581542,57.24446028694859],[-127.5204992207952,57.244531104572445],[-127.52018299965091,57.244585222185826],[-127.51985917401718,57.24463045905096],[-127.51953423036012,57.24467346602257],[-127.51921684493793,57.24472423170164],[-127.5189147265508,57.244793877021635],[-127.51862566830742,57.24487906459183],[-127.51834430102612,57.244975372634734],[-127.51807164148532,57.245081668384145],[-127.51780955166227,57.24519344619724],[-127.51755909297187,57.2453106938388],[-127.51733947855956,57.24547354581757],[-127.51715374339028,57.245653941404846],[-127.51698317758824,57.24571981600738],[-127.51684679431949,57.24557566196915],[-127.51669561893273,57.24537226459622],[-127.5164478673751,57.24524397338295],[-127.51614094394262,57.245192596764376],[-127.5157897274754,57.24527961865041],[-127.51550006845724,57.24529754446979],[-127.51543736809066,57.24515477841923],[-127.51543425904234,57.2449451821005],[-127.51545199007259,57.24476449137704],[-127.51547701279887,57.2445848373182],[-127.51550827107663,57.24440511111318],[-127.51554682085781,57.244226421563454],[-127.51559261765442,57.244047648148204],[-127.51564473850249,57.243871043596],[-127.51570513440001,57.243694343260955],[-127.51578951093333,57.24352072841404],[-127.5158937217766,57.24335024700315],[-127.51600310590085,57.24317970562964],[-127.51610834306746,57.24300921218964],[-127.51621672488325,57.242839803292114],[-127.51632719529594,57.24267037013078],[-127.51643553077123,57.242499840584664],[-127.51653869118721,57.24232937089548],[-127.51665009804596,57.2421576845977],[-127.51676669453543,57.241985938103454],[-127.51687286434053,57.24181319127531],[-127.51694998451154,57.24163965988513],[-127.51698148344205,57.24146665699972],[-127.51695337968316,57.24128089232716],[-127.51686317842812,57.24109808910084],[-127.51671074076016,57.24094066931323],[-127.51648923133277,57.24081992215701],[-127.51620225182627,57.24072123224387],[-127.51588199554568,57.24064646849159],[-127.51556361195259,57.24059298176416],[-127.51523131269201,57.240554228624426],[-127.51488727020727,57.24053354689986],[-127.51455039468982,57.24053632288288],[-127.51424286913101,57.24057351032963],[-127.51397585518795,57.24066515881825],[-127.51373320970235,57.240795760885554],[-127.51349604673699,57.24093414629554],[-127.51325095390182,57.24105580755308],[-127.51300794898538,57.241177444219915],[-127.51276073583647,57.24129800802278],[-127.51250825856174,57.24141639010973],[-127.51225591258994,57.24153813325895],[-127.51199708056456,57.2416532246642],[-127.51172505677891,57.2417494104366],[-127.51141209669247,57.241806832301826],[-127.51106713926542,57.241815297600034],[-127.51076145570981,57.24176837870094],[-127.51050179646504,57.2416525457454],[-127.51024205033347,57.24153447125867],[-127.5099591831798,57.241434599280495],[-127.50968550464327,57.241331257707834],[-127.50945559091343,57.2412072326759],[-127.509305167771,57.241047539333664],[-127.50918529213963,57.24087404150365],[-127.50902269936272,57.240721214304486],[-127.50875731992264,57.240617775293764],[-127.50844920699987,57.240535006471774],[-127.50820929113179,57.24042006283135],[-127.5080639176193,57.240256947027945],[-127.50795447502509,57.24008444913122],[-127.50787394812019,57.239909376145654],[-127.50782736681879,57.23972718611407],[-127.50788085483681,57.23955841699503],[-127.50814059726925,57.239439960343155],[-127.50844111821294,57.239356906057665],[-127.5085926867669,57.23920382199658],[-127.50860634605841,57.23902430128475],[-127.50865537485794,57.23884773612504],[-127.50874599097057,57.2386740548231],[-127.50880210486348,57.238492923920404],[-127.50871455202909,57.23832353772669],[-127.50845043899133,57.238225688995904],[-127.50810904038107,57.23821841156394],[-127.50777299206429,57.23821555571031],[-127.50746694400279,57.23815854465171],[-127.50718319679635,57.238062040501624],[-127.50692073750413,57.237952959541964],[-127.5066814899754,57.23782791670905],[-127.50641888479812,57.23771547342052],[-127.50617567140881,57.23759495942662],[-127.50601288407755,57.23743652632494],[-127.50597068051444,57.23725989085631],[-127.50595123268572,57.23708187264761],[-127.50593998750963,57.236901518079364],[-127.50593184313456,57.236721127870986],[-127.50592059815585,57.23654077335158],[-127.50590417997977,57.236360478359856],[-127.50589906492871,57.23617781135043],[-127.50589602254425,57.23599512052756],[-127.50588368925807,57.23581365761202],[-127.50584870637168,57.23563581828487],[-127.50577978235577,57.23546509544798],[-127.50566138156364,57.23530166771689],[-127.50549457664016,57.23514664364297],[-127.50529692157652,57.23499757918166],[-127.50508596442987,57.23485315144416],[-127.50487215614774,57.234715482268406],[-127.50462680603604,57.234592748483436],[-127.50436821454936,57.23447577149993],[-127.50412908518021,57.234352965359896],[-127.50394922382716,57.2342081786904],[-127.50385422001709,57.23403327069138],[-127.50378811660799,57.23385466765118],[-127.5037603026256,57.23367450379387],[-127.50370563467412,57.23349689043504],[-127.50350950729647,57.23336013725249],[-127.5032003159626,57.23330091102744],[-127.50287286938713,57.23325198277639],[-127.50256245940851,57.23318828500669],[-127.50225409552156,57.23312344202359],[-127.50194562814639,57.23305635749016],[-127.50163920692215,57.23298812776269],[-127.50133471078887,57.23291651221832],[-127.50103428937554,57.23284260723745],[-127.50073773378931,57.232761931192776],[-127.50044623705014,57.23267783347738],[-127.5001566383339,57.23258922933421],[-127.49986911339077,57.23250060081285],[-127.49958056185505,57.23241198344083],[-127.49929001044929,57.23232563038153],[-127.4989984324349,57.232239288453435],[-127.49870794411359,57.232154054433245],[-127.49841536809697,57.232068843684814],[-127.49812388173893,57.23198474084439],[-127.49783226509697,57.23189727583304],[-127.49753875277648,57.23181431592188],[-127.49723636262584,57.23174266701511],[-127.49692503401955,57.23168120872997],[-127.49660873625106,57.231625411579415],[-127.49628857407191,57.23157638390838],[-127.49596667415122,57.23153634340334],[-127.49563918740557,57.231512060083126],[-127.49530694964083,57.231499040314446],[-127.4949747121021,57.23148601970287],[-127.49464816679401,57.23145948114688],[-127.49431695216472,57.231419542969896],[-127.49398728570019,57.23136613418571],[-127.49370000289727,57.23128309475102],[-127.49348575234178,57.23115886521297],[-127.4933231157755,57.2310026583393],[-127.4931858248314,57.23083158908808],[-127.49304663763134,57.230665025390174],[-127.49291366862725,57.230498390664735],[-127.4927929598738,57.23032713199793],[-127.49266210915951,57.23016159393823],[-127.49249962786014,57.23000874750095],[-127.49229008018797,57.22987213155469],[-127.4920406132081,57.22974830138767],[-127.4917628783696,57.22964385003333],[-127.4914704845777,57.22956198527073],[-127.49116531247783,57.2294982015431],[-127.49084814424067,57.22944576380709],[-127.49052502189211,57.229400119149126],[-127.49019797392108,57.229360123424236],[-127.48987199809659,57.22932123569476],[-127.4895491832296,57.22928343219963],[-127.48922348689493,57.22925126572686],[-127.48889583303901,57.22922248373271],[-127.48856828341525,57.22919594175043],[-127.48824067409663,57.22916827862787],[-127.48791406610799,57.22913948230448],[-127.48758737150699,57.229108444146625],[-127.4872607209781,57.2290785256845],[-127.4869340709598,57.22904860640811],[-127.48660742145218,57.229018686317396],[-127.48628064191475,57.22898540388099],[-127.48595292211785,57.228954373318544],[-127.48562476735849,57.228939040938855],[-127.48528958491892,57.228956296601176],[-127.48495090979415,57.22899040608469],[-127.48462094240845,57.22900872187168],[-127.48431001904572,57.22898310173093],[-127.48400787668356,57.22891702517426],[-127.48371415655244,57.22882731139848],[-127.48343429202087,57.228720624917244],[-127.48317373274493,57.228603630098426],[-127.48293573588862,57.228480774172574],[-127.48271294322169,57.228348777602456],[-127.48250431035233,57.228207652296646],[-127.48230893964919,57.228060771498036],[-127.4821247856662,57.22790927942935],[-127.4819529794894,57.22775540533734],[-127.48181095270266,57.22759446793136],[-127.48169241832508,57.22742429647007],[-127.48157907368886,57.22725406619464],[-127.48144832534304,57.22708963783399],[-127.48127868443595,57.22693798052311],[-127.48105374761016,57.226803763715935],[-127.48081352321539,57.226676445508375],[-127.48060603750095,57.22653754656575],[-127.48045073381039,57.226381242133925],[-127.48031382031539,57.22621800357008],[-127.48019123932868,57.22605011881898],[-127.4800799176175,57.22587874367194],[-127.47997690178681,57.225707274550444],[-127.47988625938542,57.2255345444846],[-127.47982438327074,57.225354763168205],[-127.47977178034685,57.22517375601696],[-127.4797068756403,57.2249962509455],[-127.47960920889415,57.224829205220075],[-127.47945710256515,57.224675105793075],[-127.47924963261896,57.22453620491548],[-127.4790103861536,57.22440663080242],[-127.47876095445926,57.224281655348854],[-127.47851881136444,57.22415771811473],[-127.47827245589187,57.22403158604342],[-127.47801797060843,57.2239100293346],[-127.47775270498185,57.22380428783751],[-127.47747177330636,57.223722263610995],[-127.4771536374819,57.22369670853497],[-127.47680986339857,57.223705071882236],[-127.47647381518327,57.22369877421464],[-127.47614455194295,57.22368006820095],[-127.47581514284535,57.22365800001824],[-127.47548769309613,57.223632545933995],[-127.47516204008109,57.223600344808666],[-127.474837345539,57.223565890087606],[-127.47451260841852,57.223530314052404],[-127.47418882986302,57.22349248443125],[-127.47386503537179,57.223454654197035],[-127.47354025696416,57.22341795524304],[-127.47321552230389,57.223382375994134],[-127.47288786106532,57.22335131286244],[-127.47256114183575,57.22331799632868],[-127.47224322151006,57.223271128072874],[-127.47195384542006,57.22318470322331],[-127.47166447063653,57.223098277739666],[-127.47133681308802,57.22306721073233],[-127.47101022681221,57.22303725186577],[-127.4707119107446,57.222961013762735],[-127.47043342784177,57.22286101130345],[-127.47018324818038,57.222742754449506],[-127.46997469205087,57.22260160979041],[-127.46981318898882,57.222444242517284],[-127.4697711259469,57.22226647694666],[-127.4697630426105,57.222082724841236],[-127.46966141198548,57.22191908013506],[-127.46944478984719,57.22178363033174],[-127.46921469384037,57.2216483314575],[-127.4690531119219,57.22148872234306],[-127.46889266155307,57.22133134234851],[-127.4686428405539,57.22122204676614],[-127.46834118599872,57.22113911509099],[-127.46806077962239,57.22104249249794],[-127.4678360956314,57.22091273563177],[-127.46763674413796,57.22076812144667],[-127.46743230881914,57.22062580597566],[-127.46722278969484,57.22048578919422],[-127.46703371583152,57.220338816985],[-127.46671079723137,57.22002519606041],[-127.4672552658159,57.21990026799013],[-127.46756255527568,57.21983292603901],[-127.46784979687195,57.2197837440627],[-127.46816881828217,57.21975214078368],[-127.46852196792715,57.21969212900441],[-127.46884370043347,57.21965040473026],[-127.46915442844764,57.21959198833387],[-127.46945410860333,57.21951575938826],[-127.46974620059936,57.2194306470405],[-127.47003284550127,57.21933886927305],[-127.4703184448755,57.21924710261531],[-127.47060613118245,57.21915531187431],[-127.47088841325741,57.219057976278],[-127.4711516609096,57.21895076512158],[-127.47139531423298,57.21881911193665],[-127.47158161282778,57.21859730299808],[-127.47148407350234,57.218459396939416],[-127.47129279369969,57.21838980418033],[-127.47131538681288,57.21824942637784],[-127.47136688645313,57.21813338536747],[-127.47150236609698,57.21801864204925],[-127.47143244055638,57.2176820103131],[-127.47143154354616,57.21747015333653],[-127.4716105698998,57.21743675253404],[-127.47189569400594,57.217332656825135],[-127.47225659154581,57.21728599949669],[-127.47258329813921,57.21723972591481],[-127.47291472417287,57.21720797126002],[-127.47324833405918,57.21717955414491],[-127.47357219817584,57.217140036015586],[-127.473874439601,57.217077219818634],[-127.47415074209252,57.21698667036376],[-127.4744139663698,57.216879452817224],[-127.47466644275279,57.21676226694004],[-127.47491348790214,57.21663841584291],[-127.47515840012461,57.21651346732722],[-127.4754055284394,57.216391856331576],[-127.47565272498794,57.21627248607364],[-127.475896734548,57.216150909306805],[-127.47613755710776,57.21602712604958],[-127.47647430530957,57.21583836362581],[-127.47662345371484,57.21578287318378],[-127.47686534231488,57.21566019753033],[-127.47711145888128,57.215539715678666],[-127.47736714688372,57.21542585123629],[-127.4776398977593,57.21532412450197],[-127.47790624307041,57.215217985576636],[-127.47815551232107,57.21509858711639],[-127.47840057718382,57.214978114685955],[-127.47864138427379,57.21485432693336],[-127.47887691625093,57.21472835637],[-127.4791050150764,57.21459798543915],[-127.47933101415781,57.214466516854664],[-127.47955695181565,57.21433392758046],[-127.4797797024003,57.2141991319746],[-127.47999615045117,57.21406216529136],[-127.48020206648407,57.213920833427885],[-127.48039439500857,57.213776291993966],[-127.4805007497384,57.21363272304724],[-127.48059362278684,57.213435499086046],[-127.48072108386205,57.21327487631756],[-127.48084818060498,57.21310528964387],[-127.4809004195626,57.21292870317006],[-127.48094742797593,57.21275105490498],[-127.4809902932221,57.212573453536564],[-127.48102999941044,57.2123947669422],[-127.48106765045286,57.212216103618594],[-127.48110425719037,57.21203745212569],[-127.48113981963768,57.21185881246429],[-127.48117642569699,57.21168016100025],[-127.48121403200831,57.211500377235545],[-127.48125482332046,57.2113227993992],[-127.48129866955387,57.21114406599718],[-127.48135293168858,57.21096633566266],[-127.48141757644362,57.21078960875741],[-127.48148533577579,57.210612846571735],[-127.48151140937345,57.21042983046248],[-127.48159497034884,57.210259615253],[-127.48162017270468,57.21008109297529],[-127.48161846552651,57.20990287544134],[-127.4815959863294,57.2097237721673],[-127.48156415186789,57.20954365386687],[-127.48152926255534,57.20936469116448],[-127.48150157106993,57.20918452599214],[-127.4814894053517,57.20900418503998],[-127.48148656826353,57.2088237384822],[-127.48148575900467,57.208642148002376],[-127.481476708532,57.20846177185153],[-127.481450148495,57.208283835961446],[-127.48138448086547,57.2081130688134],[-127.48120349807057,57.20796042201233],[-127.48103885233111,57.20780198513507],[-127.48089768722221,57.207634314431914],[-127.48076990705957,57.20746425015067],[-127.48066786574073,57.20726362791674],[-127.48082697469647,57.20714524477578],[-127.48090008957145,57.20697290666151],[-127.48093043558846,57.20679320577169],[-127.48095141000994,57.20661248999844],[-127.48097451516772,57.206432871107744],[-127.48098931944575,57.20625334620354],[-127.48099378508307,57.206073938358095],[-127.48097959507167,57.20589474172528],[-127.48096847663736,57.205714389363216],[-127.48097811148774,57.20553492307558],[-127.48099504627679,57.205356495154156],[-127.48101813390457,57.20517687661607],[-127.48104123788343,57.204997257911],[-127.48106739644737,57.20481648366053],[-127.48086484621435,57.2044275540082],[-127.48076192788672,57.20425720882422],[-127.48068574240911,57.20408207709265],[-127.48066328755661,57.203902974269475],[-127.48066566699279,57.203723590384755],[-127.48067841736082,57.203544089139704],[-127.48069115104245,57.203364588105714],[-127.48069250316912,57.20318521592042],[-127.48066797796243,57.203006136660655],[-127.48059490994441,57.20283096979088],[-127.48052184259471,57.20265580290378],[-127.48046628297392,57.20247819590761],[-127.4804386447789,57.202299151949575],[-127.48045863525536,57.202119568990035],[-127.48049734928884,57.201942016101725],[-127.48052873688333,57.201762304184655],[-127.48053630202844,57.20158286190914],[-127.48053351329376,57.20140353684423],[-127.48053072458521,57.20122421180378],[-127.48054138744534,57.20104473453966],[-127.48058626889227,57.200865990970605],[-127.48066342767757,57.20069136596404],[-127.48071351996026,57.20051368438281],[-127.48072936680863,57.20033414850683],[-127.48073900142602,57.200154682974976],[-127.48074958896534,57.19999986818834],[-127.4807517502625,57.19997518221239],[-127.48076345535945,57.19979569328718],[-127.48077516034674,57.1996162043857],[-127.48078686522432,57.199436715507616],[-127.48079752638687,57.19925723846756],[-127.48080820401456,57.19907776126367],[-127.48081472372483,57.198898331154275],[-127.48082954240488,57.1987188071145],[-127.48087337619647,57.19854007557899],[-127.48091934006275,57.1983624409081],[-127.48096425992667,57.198184818061],[-127.48100292431637,57.198006145070885],[-127.48103123550452,57.19782758931916],[-127.48104500919432,57.19764807721796],[-127.48098272289127,57.19745709563467],[-127.48100189412109,57.1973100307636],[-127.48105273876955,57.197232107735665],[-127.48163977402979,57.19719967678602],[-127.48196846866917,57.19718250126884],[-127.48229829328343,57.197167554068315],[-127.48262805770561,57.197151485739816],[-127.482956534588,57.197128705319145],[-127.48328147967464,57.19709475436097],[-127.48359847468492,57.19704295714837],[-127.4839033781675,57.196973360722275],[-127.48419849392337,57.196891543904705],[-127.48448717976316,57.19680419450893],[-127.48477479388279,57.1967157356567],[-127.48506666143554,57.196630590797646],[-127.48536717383912,57.196554314913385],[-127.4856720702195,57.19648471439084],[-127.48597918294767,57.1964184508974],[-127.48628623457304,57.19635106639214],[-127.48659005722197,57.19628035492828],[-127.4868895203248,57.19620408742787],[-127.4871846672798,57.19612338440357],[-127.48747756847929,57.19603822233845],[-127.48776516994344,57.195949756963174],[-127.48804848201782,57.19585797681799],[-127.48832636367234,57.195759531985544],[-127.48859574439622,57.19565557842402],[-127.48885339611194,57.195542790003934],[-127.48910041623188,57.195423396254604],[-127.48938986193048,57.195329301373135],[-127.4895538856515,57.195179464518354],[-127.48991789033451,57.195085640258235],[-127.49066223946942,57.19526436184396],[-127.49035243726131,57.19502127752445],[-127.49029378941168,57.19484483151195],[-127.49025059114103,57.19466596751243],[-127.4902322648846,57.194487941106466],[-127.49033857003815,57.194318583369714],[-127.49046978924498,57.19415118358563],[-127.49057086464735,57.19398076430466],[-127.49058864574735,57.193798963576725],[-127.49067424405995,57.19362984161669],[-127.49083483646581,57.19347219549093],[-127.49101006717358,57.19331774521337],[-127.49119584953819,57.19316877926958],[-127.49135334069413,57.19301116787688],[-127.49149720743132,57.192849227777856],[-127.49163584533267,57.192686226189565],[-127.49176818396451,57.19252105436472],[-127.49189322360789,57.19235484470327],[-127.49199847209194,57.192185497795286],[-127.49207970187675,57.1920108199761],[-127.49216195775875,57.19183613041355],[-127.49224735359749,57.191662525959806],[-127.49232651092028,57.19148787167914],[-127.49237344005168,57.19131022222263],[-127.49238818507804,57.19113069810236],[-127.49239466576927,57.19095126831518],[-127.49240424338896,57.190771803209245],[-127.49242188335246,57.19058664124938],[-127.4926357814434,57.19046873974826],[-127.49292082239626,57.1903690822896],[-127.49309943312959,57.19022243754702],[-127.49320035545759,57.19004865531925],[-127.49325874355948,57.18987311677643],[-127.49330045569434,57.18969440573236],[-127.49334112410396,57.1895157066138],[-127.49339011621775,57.189338033419055],[-127.49344013464292,57.189160348503805],[-127.49348912584324,57.18898267531995],[-127.49352358239886,57.1888040471671],[-127.493518663752,57.18862474776961],[-127.49351423501386,57.18856426585015],[-127.49350485782193,57.18850944531112],[-127.49346005479032,57.188449424508065],[-127.49351343939857,57.18843760508356],[-127.49353990828577,57.18839918972417],[-127.49350595757436,57.18837827901468],[-127.49347963192751,57.18834046663184],[-127.49348041379302,57.18828104618712],[-127.49338379752986,57.188060197179645],[-127.49353930259518,57.18795865468979],[-127.49377555963292,57.187830407232475],[-127.4940193305723,57.18770879932473],[-127.49423675247012,57.18757516136002],[-127.49439730484484,57.18741751158592],[-127.4945547154871,57.18725877655544],[-127.49474285308078,57.18714452896047],[-127.49502051713887,57.18701580590044],[-127.49529502860813,57.18691290063468],[-127.49554207705836,57.18679573625768],[-127.49572992388141,57.18664786140885],[-127.49591247142642,57.18649668400071],[-127.49611404075083,57.18635537743975],[-127.4962704132333,57.18619665221917],[-127.49642992478468,57.18603901186293],[-127.4965842081954,57.185880310183215],[-127.49674269046652,57.185722681233955],[-127.49691267890653,57.18556828328683],[-127.49708477964424,57.185414981907385],[-127.49729159294779,57.18527585543359],[-127.49747839891293,57.185127989999955],[-127.49763269087263,57.18496928700321],[-127.49779430536583,57.18481274189074],[-127.49798843092823,57.18466703382687],[-127.49819309601168,57.18452568859296],[-127.49839460274225,57.184383258259956],[-127.4985866540235,57.18423757307512],[-127.49887314192027,57.18415021649617],[-127.49911682943528,57.18402747895896],[-127.49919304589639,57.1838584595641],[-127.49917042872313,57.18367712174517],[-127.49914478648665,57.183498060573804],[-127.49908522367843,57.18314003321107],[-127.49950543013817,57.18287178690089],[-127.49974492416041,57.18274797531993],[-127.49994748622485,57.182606651476476],[-127.50013108489043,57.18245657714184],[-127.50035050883912,57.18232290598864],[-127.5005730879811,57.18219031922018],[-127.50078087046592,57.18205005513076],[-127.50100448966128,57.181917455681855],[-127.50128348301152,57.18182457490818],[-127.50158077813278,57.18174941884474],[-127.50183825422639,57.18163548557668],[-127.50209895678795,57.18152487763287],[-127.50240483418231,57.18145746785096],[-127.5027260330324,57.181411179660444],[-127.50305582910146,57.18139954188693],[-127.50338565344416,57.18141480622089],[-127.50371318853558,57.18142449120729],[-127.50384066657571,57.18150709771353],[-127.50429057484777,57.18157478505136],[-127.50462401259166,57.18157655307235],[-127.50493635612801,57.18162115991552],[-127.50523463852797,57.1817029199262],[-127.50551571778827,57.18179496610438],[-127.5057556382919,57.181919993870046],[-127.50603879009387,57.18201201510287],[-127.5063379282737,57.18208927894155],[-127.5066251340284,57.18217901029874],[-127.50693117444743,57.18224722551124],[-127.50724801814813,57.182300742854295],[-127.50756944081218,57.182312730693894],[-127.50790209146017,57.18229432201741],[-127.50822333478531,57.182249140757555],[-127.50855031679077,57.18221846512281],[-127.5088786825824,57.1822225228265],[-127.50920314568133,57.1822591329463],[-127.50952661040569,57.18229687476825],[-127.50985577166759,57.18232109834639],[-127.51017438066418,57.18236674146256],[-127.51043043604942,57.182480364829885],[-127.51073758350466,57.18252389706358],[-127.51105330329588,57.18257517632569],[-127.51132553935142,57.18267852224426],[-127.51154307082327,57.18281276633906],[-127.51175044847443,57.18295161139928],[-127.51202667938557,57.183051546829454],[-127.51229184591234,57.18315945649299],[-127.51251852879875,57.18328910933979],[-127.51272900893844,57.18342791707919],[-127.5129344571607,57.18357014566079],[-127.51314084502685,57.183710121128954],[-127.51334719014709,57.183848975823494],[-127.5135556508228,57.183988926710335],[-127.51376720945356,57.18412884143122],[-127.51397562891312,57.184267671215245],[-127.51418409416142,57.18440762114459],[-127.51439251664742,57.18454645029359],[-127.51460202813278,57.184686387503994],[-127.51481045364898,57.18482521601622],[-127.51501892497906,57.18496516467384],[-127.51522735352182,57.18510399255098],[-127.51543785344165,57.18524279612106],[-127.51565038043799,57.18538045491107],[-127.51587001227911,57.18551466808975],[-127.51609271443499,57.1856477243543],[-127.51631038470578,57.18578420155509],[-127.5165662593687,57.18589221088448],[-127.51680261270876,57.18600380912186],[-127.51692536694523,57.186096547259076],[-127.51702894359578,57.186176056051394],[-127.51718415834652,57.18622582019789],[-127.5172918252268,57.18632994286448],[-127.51739720088713,57.18642848715353],[-127.51756398756572,57.18648260050401],[-127.5177262914445,57.18647623283602],[-127.51775242982583,57.186404186818045],[-127.51763885649318,57.18633376241311],[-127.51746147706457,57.186247263728426],[-127.51725591829167,57.18618126940607],[-127.51718596020909,57.18606213648529],[-127.5172411451043,57.185965092055596],[-127.51735575730704,57.18587856778695],[-127.51753302688579,57.18575320300147],[-127.51774210395737,57.185620742910736],[-127.51796019158418,57.18548033103384],[-127.51817535867254,57.1853444366104],[-127.51833373334894,57.18518678175983],[-127.51849630739348,57.1850301989303],[-127.51868405697653,57.18488229131699],[-127.5188801898509,57.184736528006304],[-127.5190837350456,57.184595162194576],[-127.51931997470312,57.18446910985027],[-127.51951739627941,57.18433005646659],[-127.51967163818814,57.18417244803225],[-127.51992690151715,57.184056262269536],[-127.5201642227079,57.18393131678563],[-127.5203930409085,57.18380086485305],[-127.52059343469948,57.183658412336925],[-127.52077793968063,57.18350717650159],[-127.52097310334509,57.18336366325648],[-127.52124130967863,57.18326077605184],[-127.52154483053812,57.18318662273675],[-127.52185609213613,57.183124709357784],[-127.5221660425138,57.1830560846311],[-127.52241719588591,57.182941062756214],[-127.52251927635277,57.182773969485446],[-127.52253483097584,57.18259219008096],[-127.5227321421657,57.182450891125185],[-127.5229873847493,57.182334699539894],[-127.52325864676034,57.18223065156018],[-127.52351079002025,57.18211449504586],[-127.52377886368681,57.182008241168184],[-127.52406418979272,57.18191972125503],[-127.52432984157828,57.18188299502925],[-127.5245456090414,57.181711211736896],[-127.52469130161398,57.181548092136865],[-127.5248833444457,57.18140460937607],[-127.52515455013034,57.18129943708007],[-127.52543227547933,57.18120203498194],[-127.52571211366552,57.18110572860533],[-127.52598551845136,57.18100389182596],[-127.52622918836876,57.18088334497914],[-127.52643264135857,57.18074084768647],[-127.52664359602007,57.180604988338544],[-127.52689166841097,57.180491114691975],[-127.52707467360374,57.18043292844102],[-127.52720787341737,57.18034617833878],[-127.52757754216034,57.1801143013431],[-127.52783500275939,57.180002558138334],[-127.52811689572064,57.17990622251723],[-127.52841071442414,57.179823198578404],[-127.52874753067246,57.179754243891125],[-127.52896722856671,57.17968217416669],[-127.5288007651958,57.17950588557696],[-127.52863979835061,57.17933737938201],[-127.52851715565176,57.17916954593513],[-127.52841407682823,57.17899924173671],[-127.52834497540874,57.178824056379895],[-127.52829338430311,57.17864642436953],[-127.52821600609865,57.17847133576183],[-127.52809341270498,57.17830462248027],[-127.5279810784049,57.178135547260574],[-127.52790886804513,57.17796039816583],[-127.52785107175441,57.177782838656604],[-127.52778709577203,57.17760647234575],[-127.5277005071209,57.17743373320915],[-127.52759231596325,57.17726460939987],[-127.52746864149599,57.17709678741975],[-127.52733372859515,57.17693245958017],[-127.52718653438974,57.17677163802935],[-127.5270086576737,57.17662014253639],[-127.5268154488018,57.17647330980006],[-127.52661309946068,57.176331067446114],[-127.5265407485803,57.176229903797584],[-127.52698602091273,57.17623367119038],[-127.5273036320763,57.17617727510537],[-127.5275676042972,57.17607330319391],[-127.5277952181011,57.175940610369885],[-127.52800498109883,57.175801399960974],[-127.5282031014014,57.17565559948169],[-127.5284106132873,57.17551193084088],[-127.52852626892223,57.17534915845226],[-127.52856782895411,57.175171558790915],[-127.52857709920438,57.174988731853055],[-127.52856990438184,57.17480833941678],[-127.52851210978176,57.1746307806219],[-127.5284358097292,57.17445680112305],[-127.52836464713222,57.17428164057189],[-127.52830369743447,57.17410299769347],[-127.52825313922106,57.173925354300245],[-127.52824189700128,57.17374725127251],[-127.52833749650779,57.173574624951286],[-127.52839354002428,57.173396856228585],[-127.52841535997729,57.17321724572649],[-127.52838135601343,57.17303940894401],[-127.52830710078766,57.17286428474272],[-127.52819783230831,57.17269405376219],[-127.52802974956849,57.1723462760075],[-127.52852910021673,57.17227990526647],[-127.52870175833546,57.17206714372152],[-127.52889826263404,57.171933691912656],[-127.52923104923006,57.171869266583464],[-127.52954418622564,57.17180507033269],[-127.52985852734918,57.171745343110366],[-127.53015887312887,57.17167232731651],[-127.53042487570345,57.17156832576719],[-127.53067472376748,57.17144881926177],[-127.53093207238673,57.17133595024299],[-127.5312075522495,57.171236319953444],[-127.53149266326993,57.17114442302006],[-127.5317864357323,57.17106251268398],[-127.53208454081022,57.17098503477544],[-127.53234288018773,57.17087103035031],[-127.53244847334445,57.17071621945993],[-127.53269102706264,57.17056989127379],[-127.53295263639355,57.17046033116198],[-127.53322594602251,57.170358480062],[-127.53351000287606,57.170266591021964],[-127.53381237087427,57.17019242200219],[-127.53410176878683,57.17010495286131],[-127.53445892176016,57.17000323600837],[-127.53461869130093,57.16988365835025],[-127.53482187526966,57.16973666741354],[-127.53504323586247,57.16960403529849],[-127.53531909650805,57.16951448046324],[-127.53562809440665,57.16945143899872],[-127.53594879333617,57.16939610608375],[-127.53626414750137,57.16933635131362],[-127.53656982262156,57.16926774179963],[-127.53687113405226,57.16919357801977],[-127.53716272122541,57.16910943916667],[-127.537431737264,57.169004266717046],[-127.53772850247172,57.16892006567343],[-127.5380576487541,57.16892067666665],[-127.53837433579987,57.16897187716551],[-127.53865540125484,57.16906385121662],[-127.53892770571953,57.16916937949488],[-127.53920804612764,57.16926920774058],[-127.53950603546876,57.169344166155796],[-127.53983248627445,57.1693291108697],[-127.54015538216164,57.169277104588794],[-127.54046167079936,57.16919838991461],[-127.54068853322462,57.169074650956084],[-127.54084149387263,57.1689147907845],[-127.54096296840304,57.16874409194812],[-127.54105538644961,57.16857149366689],[-127.54113215973669,57.168395716893755],[-127.54123401325057,57.16822637016778],[-127.54141008683877,57.16807520457831],[-127.5415986626524,57.167926133229884],[-127.54175161492303,57.16776627213117],[-127.54188055652244,57.16760108926852],[-127.54199172289348,57.16743163212119],[-127.54209766273327,57.16726111558733],[-127.54221094110679,57.16709275432454],[-127.54232835620729,57.16692434415563],[-127.54244581536051,57.16675705434078],[-127.5425652972439,57.16658861958492],[-127.54270366812747,57.16642668758482],[-127.54289331858796,57.16627872268311],[-127.54311565742603,57.166146065129915],[-127.5433274251239,57.166007927177674],[-127.54343970955217,57.1659438268472],[-127.54384851211516,57.16578990930299],[-127.54405816128414,57.165650674205494],[-127.54431147456093,57.16554230997334],[-127.54458364769378,57.165439327194214],[-127.54478704080985,57.16529904387884],[-127.5449892994671,57.165156531715844],[-127.54522539588227,57.16503155467024],[-127.54551581662243,57.16494516870914],[-127.54589339108938,57.16489025931725],[-127.54599015422792,57.16474899343367],[-127.546192495894,57.164608720338066],[-127.54657195698833,57.16452352043984],[-127.5467684330144,57.16444272725689],[-127.54705564403157,57.16435413386834],[-127.54733423362046,57.16425667415817],[-127.54750532286207,57.16416272879],[-127.54790903768291,57.16416579438268],[-127.54817187394373,57.16406291459917],[-127.5484249101192,57.16394781972486],[-127.54856137232333,57.163841952554804],[-127.5486266502513,57.16379297730686],[-127.5485866679095,57.163750854238316],[-127.54854348383788,57.163706527159185],[-127.54854202233349,57.16361910882691],[-127.54857293382331,57.16353915367857],[-127.54861411456216,57.16345683489494],[-127.54869770792075,57.16342557809028],[-127.54889041092397,57.16343114104988],[-127.54902973605698,57.16344742517233],[-127.54933875180367,57.163514383046206],[-127.54966596435533,57.1635194710665],[-127.55003455044566,57.16352406754321],[-127.55032709415566,57.16354189578785],[-127.55064394765719,57.16349553961338],[-127.55091729662094,57.163397013360054],[-127.55123278824658,57.16334282510922],[-127.55154631756302,57.163290901327514],[-127.55186784909442,57.16325793826014],[-127.55219578563398,57.16328094685979],[-127.55252286146161,57.163308448750904],[-127.55285070805766,57.16332921484439],[-127.55317780131601,57.163356714900914],[-127.55350726330666,57.1633662504447],[-127.55383918439463,57.163360062320365],[-127.55416671418527,57.16337298209311],[-127.55448912858323,57.16341286521764],[-127.5548188185919,57.16342799961237],[-127.55514927875845,57.1634363981818],[-127.55547981344296,57.163447036974844],[-127.55581075432515,57.163441976487256],[-127.55614025973784,57.16342684350299],[-127.5564471713607,57.16339068030646],[-127.55675708226134,57.16332645634291],[-127.55708065356069,57.163241891367036],[-127.55738197326595,57.163195703827014],[-127.55756948765861,57.163149751085534],[-127.55802179284281,57.163126423801856],[-127.55834295307062,57.16308448137142],[-127.55860875749828,57.162979302922274],[-127.55887871428037,57.16287407439041],[-127.55911473481595,57.16274907267064],[-127.55933381126123,57.16261418394906],[-127.55954229867172,57.16247381636309],[-127.55971202227143,57.162321580411316],[-127.5598449597824,57.162155210700355],[-127.56002313747571,57.162007357326594],[-127.56029090720618,57.16189990999059],[-127.56056737674557,57.16180244695487],[-127.56074643918313,57.16165121909818],[-127.56084913947227,57.161479604644875],[-127.56099375719947,57.16132094106779],[-127.56118861177106,57.16117624979825],[-127.5613855334029,57.16103153353771],[-127.56158245354834,57.160886816996154],[-127.56177730369247,57.16074212489596],[-127.56196896658464,57.16059522865741],[-127.56214167540422,57.160440711923215],[-127.56218344535723,57.16027206679539],[-127.56238340738031,57.160126191709146],[-127.56260348330517,57.15999128550501],[-127.56286922547957,57.1598849780119],[-127.56307675051083,57.15974685819639],[-127.56333942441009,57.159641707405044],[-127.56359880314652,57.159532111620365],[-127.56376004106713,57.15937548805286],[-127.56389613657873,57.15921131840598],[-127.56398119722212,57.1590387917054],[-127.56416973226412,57.15889192966151],[-127.56425679711305,57.15871825783659],[-127.56439181652553,57.15855297961219],[-127.56461835585294,57.15842471842469],[-127.56488176800686,57.1583128298119],[-127.56514203859619,57.15819985731862],[-127.5653539117747,57.158067286625595],[-127.56547003445297,57.157895507839086],[-127.56569665779612,57.157769485691006],[-127.5659675843517,57.15766423063534],[-127.5662525861252,57.15757449988319],[-127.56655158835527,57.1574980522965],[-127.5667917039976,57.157372987423045],[-127.56709200423063,57.157303248841146],[-127.56741639973679,57.15726572867679],[-127.56774307544399,57.15723378519765],[-127.56806756136871,57.157198504261856],[-127.56838420351072,57.15714874403906],[-127.5686897239867,57.15708006005208],[-127.56899308336239,57.15700915934897],[-127.56929639575911,57.15693713752485],[-127.56960195878149,57.15686957183664],[-127.57021870289529,57.156745580489094],[-127.57080030923942,57.15669823470808],[-127.57113007215867,57.15669090695101],[-127.5714602776068,57.156694782758265],[-127.57179086710636,57.15670762088914],[-127.57211969356565,57.156728326205695],[-127.57244538026524,57.156747947512926],[-127.57276431108679,57.15670375389994],[-127.57309592697229,57.15671657638093],[-127.57340937249722,57.156664600414544],[-127.57373726445276,57.15663711108902],[-127.57404830166061,57.156577315772076],[-127.57435705614297,57.15651194234667],[-127.57467930700915,57.156473308878205],[-127.57500842292315,57.15645028547784],[-127.57533718652843,57.15644408008962],[-127.57566328684375,57.15647377713671],[-127.57598999498526,57.156442933479426],[-127.57638519784527,57.156366423695964],[-127.57647761560861,57.15624872741058],[-127.5766351746146,57.15613024502722],[-127.57698055058948,57.156049850760326],[-127.57727949111063,57.15599804047639],[-127.57760856148872,57.156024333856465],[-127.57792833500669,57.15607652108766],[-127.57816426109038,57.15612747838745],[-127.57844094605764,57.156112926387515],[-127.57889658124355,57.1560468885874],[-127.5792164323583,57.156000426021535],[-127.5795606653974,57.15599290200564],[-127.57985927883634,57.15593324290855],[-127.58015712294703,57.15585453585995],[-127.58045167048289,57.155771384100674],[-127.58075504394742,57.15570157658011],[-127.5810682694499,57.15564510082102],[-127.5813847432654,57.15559194791041],[-127.58170019036585,57.1555388066542],[-127.58200665377105,57.155468958783835],[-127.58232476828057,57.15543035637686],[-127.58265623761115,57.155439793340875],[-127.58299506814286,57.15547716465629],[-127.58321522439189,57.15549691660855],[-127.5836066524819,57.15538007537984],[-127.5839331300464,57.155343609617546],[-127.58405970739274,57.15535216383647],[-127.58421396590354,57.155354777420925],[-127.58436689840838,57.15532489861497],[-127.58446982201518,57.15533710219411],[-127.58455361528377,57.15536186843361],[-127.58483375846586,57.15545599550982],[-127.58469156785875,57.15529517872373],[-127.5847058371223,57.15511452860443],[-127.58467210467356,57.15492437194076],[-127.58463154349874,57.15469394302133],[-127.5845086109977,57.15457324769121],[-127.58433534900111,57.154436347968684],[-127.58426496432689,57.15426008747502],[-127.58429069430125,57.15408154053671],[-127.58439542968073,57.15391212430869],[-127.58452507420331,57.153744647858865],[-127.58465476389549,57.15357829171384],[-127.58478868128303,57.15341412611252],[-127.5849006890108,57.153245742273796],[-127.58496575528827,57.15306783906807],[-127.58500892918713,57.152885717551754],[-127.5851012960406,57.15271757185956],[-127.58524078724412,57.152563426975355],[-127.58551220242016,57.15244691505368],[-127.58567383068981,57.15230258980862],[-127.58566514397094,57.15211773464737],[-127.58574693431312,57.15194411204212],[-127.5858505390182,57.151772466547094],[-127.58596042294582,57.151602986698755],[-127.58607365331244,57.15136396582857],[-127.58614844312919,57.15124647665041],[-127.586271397489,57.15109253149624],[-127.58627327973699,57.150913153040875],[-127.58627513216526,57.150732653998965],[-127.5862976938733,57.15055302449072],[-127.58635349799295,57.150376354255556],[-127.58640379905862,57.15019190403683],[-127.58646739379718,57.15000392946466],[-127.58653009534875,57.14984399001803],[-127.58662972394893,57.14967687623647],[-127.58677518638113,57.14951705247397],[-127.58694046968759,57.14936147165931],[-127.58711720943859,57.1492079933929],[-127.58751341736874,57.14900813013641],[-127.5876497313001,57.148777795396846],[-127.58764348894329,57.148676983864775],[-127.58761949270341,57.148571904226294],[-127.58761197878587,57.14839039826312],[-127.58763016529946,57.14820521706521],[-127.58762576139289,57.14802367335484],[-127.58747986842174,57.14787299441576],[-127.58727551638823,57.147734235391454],[-127.58704451639109,57.14760140468418],[-127.58680638173954,57.14747090220835],[-127.58658154193017,57.14733687494706],[-127.58635881780488,57.147203942607646],[-127.586101134828,57.147051256955756],[-127.5859651779116,57.1469901334269],[-127.58569714654283,57.14693733890955],[-127.58523798924881,57.146914887638204],[-127.5849754770675,57.146920315050956],[-127.58473631905717,57.14691536989372],[-127.58462506152271,57.146876364728556],[-127.58415765306874,57.14660403386541],[-127.58391782033192,57.14648251475228],[-127.58364772999765,57.14637929754558],[-127.58337353538914,57.146277250523575],[-127.58311035296344,57.146166101750914],[-127.5828201993638,57.146053037362904],[-127.58254640417648,57.145935290307236],[-127.58234551370165,57.14580432894301],[-127.58227094719743,57.14565165976744],[-127.58230822953271,57.14547745833421],[-127.5824051206635,57.145293567067235],[-127.58250717174101,57.14510961322848],[-127.58258782687663,57.144933765319095],[-127.58268202166711,57.14475999525102],[-127.58272231851564,57.14458351532389],[-127.58270256153021,57.144405521154226],[-127.58265898924098,57.14422669460573],[-127.58254647619218,57.14390634076909],[-127.58221057710341,57.143787103895],[-127.58164037115053,57.14347901867366],[-127.58105494361362,57.143202502394495],[-127.58069312629682,57.14300622903331],[-127.58044429843399,57.14284109554977],[-127.58030828324827,57.14267795964167],[-127.58039797846395,57.142570382849364],[-127.5805037712612,57.142402079187605],[-127.5805124430909,57.14218562835268],[-127.58071686407045,57.14202621968785],[-127.58095137203124,57.14184402726285],[-127.58115507065655,57.141692473392744],[-127.58144118201363,57.14163296128689],[-127.5816718494944,57.141558426496424],[-127.5821738586718,57.141417830664544],[-127.58243978373993,57.141119795749255],[-127.58254620223396,57.140991837538465],[-127.58246770286532,57.1408190394495],[-127.58242831680084,57.14064128360314],[-127.58239611254035,57.14046231979739],[-127.58238044776839,57.14028315562394],[-127.58238752441996,57.140103715944456],[-127.58240182856285,57.139924188719625],[-127.58240679145922,57.139743653733454],[-127.58241481739829,57.13956196069654],[-127.58242180131703,57.1393802803082],[-127.58240406952672,57.139201141329785],[-127.58233802466424,57.13902931350216],[-127.58218553911215,57.138867500588034],[-127.58197693474024,57.13872430268963],[-127.58174910002819,57.138591426045515],[-127.58150590898286,57.13846209787717],[-127.58124480668816,57.13834980055543],[-127.58096207395329,57.13826466762897],[-127.58065399124459,57.138216832603554],[-127.58032427692257,57.13819616165416],[-127.57998563761119,57.13818456552918],[-127.57965178935439,57.138163942902985],[-127.57933346492527,57.13811847059314],[-127.5790228108341,57.1380583323094],[-127.57871794456278,57.13798803470502],[-127.57841693735101,57.137910964012306],[-127.57812095297655,57.137830469073705],[-127.57783297894063,57.13774315095525],[-127.57755491129988,57.13764562393374],[-127.5772828330379,57.13754241921707],[-127.5770187783996,57.13743351228009],[-127.57676278051028,57.13731890277343],[-127.57648288164474,57.13722700046782],[-127.57617125992581,57.13716798822121],[-127.57585172190028,57.13711803842727],[-127.5755248656409,57.137065934238315],[-127.57527544440076,57.13696021024425],[-127.57510442138397,57.13679973433223],[-127.5750302070586,57.13662912304922],[-127.57507343908337,57.13644812764121],[-127.57510742263037,57.13626836474319],[-127.5751217759441,57.136088838626385],[-127.57512370958086,57.13590946233067],[-127.57512147941905,57.135729015324465],[-127.57510998484443,57.135549801041236],[-127.57505615176751,57.135372218395204],[-127.57505292612096,57.135192904425836],[-127.57506107792938,57.13501345325423],[-127.57506194051017,57.13483296906794],[-127.57502877966192,57.13465513718172],[-127.57494607148057,57.134479023847426],[-127.57495538689537,57.134302921611265],[-127.57501219887462,57.134125125585555],[-127.57508559282115,57.13394825049916],[-127.5751944019911,57.13377767391413],[-127.57527211253458,57.13360523049663],[-127.57522838659285,57.13342192150387],[-127.57520971189624,57.13324391510542],[-127.57534917204252,57.13308978300854],[-127.5755718800282,57.132948097783135],[-127.57578118861917,57.132807694824095],[-127.57601269709721,57.132679354080715],[-127.57618635753784,57.13252705021821],[-127.57640055185982,57.13227897574514],[-127.57643241250017,57.13209811761153],[-127.5763684275215,57.131925142316895],[-127.57624774854852,57.13175621426569],[-127.57613224624099,57.13158722365173],[-127.57601264058808,57.131419403447644],[-127.57583182732563,57.13127137804723],[-127.57560208325363,57.13114075715142],[-127.57537338246503,57.13101012329583],[-127.57513966224964,57.13088291247697],[-127.57489384763363,57.13076369380692],[-127.57462689230475,57.130658181064746],[-127.57437301363689,57.130543542522574],[-127.57412006972217,57.13042665034382],[-127.5738671733073,57.13031087808217],[-127.57361423246701,57.130193984943695],[-127.5733961087424,57.13011926792353],[-127.57299763336347,57.130109496598216],[-127.57270793762179,57.1300289149601],[-127.57245359256676,57.12995351173101],[-127.57215693334004,57.129829295719944],[-127.571893988008,57.12972036650055],[-127.57162488956953,57.12961263179077],[-127.57143799305074,57.129466915931296],[-127.57129774639532,57.12929934041696],[-127.57113433738304,57.12914661583923],[-127.57085766594126,57.129055785026424],[-127.57054910323181,57.129019142796174],[-127.57030446454613,57.1288774828519],[-127.5700889167225,57.12873883551309],[-127.56987439557788,57.12860017550716],[-127.56961578201975,57.128495673686835],[-127.56931110059669,57.12842759541756],[-127.56906774098077,57.12829152268284],[-127.56882759507278,57.12818343459907],[-127.56854266903166,57.12809269827935],[-127.56824875625783,57.128009915931635],[-127.56795885741995,57.127923721898625],[-127.5676908992793,57.12781820770855],[-127.5674612658923,57.12768869302322],[-127.56723166328328,57.127560298541894],[-127.56696273034149,57.127455915587625],[-127.56668078521047,57.12736177675818],[-127.56639380363754,57.1272710606041],[-127.566102918657,57.127185995391315],[-127.5657916979353,57.12713480179703],[-127.56547329857611,57.12708481449208],[-127.56518641333143,57.12699633649741],[-127.56488656112145,57.12691922276398],[-127.56458678495054,57.126844349339386],[-127.56430587521453,57.12675019314064],[-127.56410167378073,57.12661027964866],[-127.56387487749268,57.1264739993498],[-127.56365977441612,57.12654831614783],[-127.56329501088538,57.12662890843797],[-127.56297973029609,57.12668088372846],[-127.56265349319894,57.12671729616915],[-127.5623253927573,57.12673355309464],[-127.56199570313368,57.126736376879265],[-127.56166471479712,57.126732489702775],[-127.56133358976169,57.12672524049214],[-127.5610034608799,57.12671685758985],[-127.56067134006616,57.1267107395521],[-127.56034007872725,57.12670012662648],[-127.56001263208273,57.126681620681225],[-127.55968868154538,57.12664737895303],[-127.55937101706687,57.126589521551864],[-127.55908324455984,57.12650440381856],[-127.55885063085174,57.12637715203283],[-127.55863203019963,57.12623852315227],[-127.55836928436575,57.126132928187616],[-127.55806234754361,57.12605924646573],[-127.55774235536076,57.12602046900293],[-127.55740832740038,57.12601772832705],[-127.55707630413735,57.12601384194729],[-127.55676816774174,57.1259614694228],[-127.55647910798832,57.1258696358169],[-127.55617442528363,57.12580040663108],[-127.55586184057282,57.12574023844643],[-127.55555132347133,57.12568004489305],[-127.55524957051153,57.12560629492767],[-127.55496047166582,57.12551333758439],[-127.55465516148352,57.125454200873364],[-127.55432947714976,57.12542781328747],[-127.55399513698158,57.12541722108329],[-127.55366438765012,57.12541891563144],[-127.55334892254524,57.1254663860224],[-127.5530292039148,57.12551054342172],[-127.55269913376354,57.12552904152964],[-127.55251089075229,57.12555257799056],[-127.55205267127691,57.12552103505727],[-127.55172966126757,57.125560744623705],[-127.55141114622612,57.125609367484536],[-127.5510879989448,57.12564571426343],[-127.55075985749087,57.12566082171522],[-127.55042830721347,57.12566812224845],[-127.55009778185963,57.125675409769514],[-127.54976864426655,57.12566586589905],[-127.5494401247251,57.12564622541895],[-127.54911251140994,57.125623210548675],[-127.54861269162565,57.12555964195308],[-127.54851720667872,57.12549912291807],[-127.54823405170862,57.12542513633896],[-127.54793231481563,57.125351369478444],[-127.54762476939229,57.125287759231675],[-127.54730263722534,57.12524673990205],[-127.54697952587662,57.12520685232694],[-127.54666516476291,57.125153409053745],[-127.54635946388164,57.12508416934279],[-127.54605278421053,57.12501606146059],[-127.54573574050202,57.12497273618907],[-127.54540431781555,57.124957603778746],[-127.54510366018013,57.12488493867622],[-127.54488475271815,57.12476310529943],[-127.54456011033275,57.12471089964961],[-127.54430056239002,57.12463214170793],[-127.54418215916114,57.1244642809085],[-127.54416052470653,57.12428630802426],[-127.54415835062497,57.12410362124774],[-127.54416249490932,57.123924222568746],[-127.54418834601005,57.12374456716272],[-127.54417804098925,57.12356533943744],[-127.5441160567072,57.12338672299439],[-127.54402120579456,57.123212979010425],[-127.54383258758905,57.123072850983675],[-127.54356347934817,57.12296169778156],[-127.54331072431178,57.12284586699392],[-127.54305294802171,57.12273345789687],[-127.5427691483602,57.122642653596934],[-127.54247543952634,57.122562054185586],[-127.54234703356659,57.1224021568675],[-127.54237280208008,57.122220261219105],[-127.54237179666818,57.12204092378378],[-127.54235937259465,57.12186060034793],[-127.54233554655272,57.12167929071345],[-127.54231662486882,57.12149119756294],[-127.54225478767428,57.121315941710044],[-127.54210115040833,57.12117091456016],[-127.54185258936836,57.121056152682],[-127.54156422213217,57.12095419068312],[-127.54129311393297,57.120844177776796],[-127.54104137615394,57.12072721007936],[-127.54078962337826,57.12061024210181],[-127.54054597420807,57.12048869430978],[-127.54031448332977,57.1203613979755],[-127.54010631561646,57.120222616788844],[-127.53991742823872,57.12007464041682],[-127.5397305471663,57.11992551920961],[-127.53953051438471,57.11978327845773],[-127.53931521868026,57.119646822064425],[-127.53908768985374,57.11951499330099],[-127.53887270354238,57.11941216048599],[-127.53858738279907,57.119282133120315],[-127.53831858577057,57.11917769181814],[-127.5380527466666,57.11906985234837],[-127.53780309667647,57.11895285421335],[-127.53756151722524,57.11883127685218],[-127.53732395373055,57.11870628899053],[-127.53708737177601,57.11858016823996],[-127.53684979484926,57.11845517973326],[-127.53660819322239,57.11833248005769],[-127.53633743168656,57.11823029987258],[-127.53608373306925,57.11811558815413],[-127.53584113948378,57.11799401974433],[-127.53561058614564,57.11786334185035],[-127.53535897487043,57.11774860425248],[-127.53508722422038,57.11764755416706],[-127.53480942732772,57.11754993741352],[-127.53452761730475,57.11745573005117],[-127.53424582519453,57.11736152189253],[-127.53396401793795,57.11726731332653],[-127.53360510822093,57.11715719618564],[-127.5334041983682,57.1170698824488],[-127.53316921778875,57.116957187316366],[-127.53286258170597,57.11688792846213],[-127.53256492305508,57.116810717020485],[-127.5322741476055,57.11672445671473],[-127.53198741633733,57.116635906466165],[-127.53170361503861,57.11654283752715],[-127.53143983420804,57.1164338401549],[-127.53115126436995,57.116350914331136],[-127.53078607286606,57.11629018407183],[-127.53062885542234,57.11613173559854],[-127.53048394666116,57.115970900796775],[-127.53037793790048,57.115800642390674],[-127.53029550333652,57.115625623850924],[-127.53023576842634,57.11544921824425],[-127.5302524740439,57.11522035400385],[-127.53018877503402,57.115100041074086],[-127.5300265254798,57.114945013862496],[-127.52984470259202,57.11479133682418],[-127.52967214200447,57.11463643009366],[-127.52951384999997,57.114476872273514],[-127.52930199092076,57.11429552350092],[-127.5293091323129,57.11411160858206],[-127.52933427484841,57.113964473190194],[-127.52936882431553,57.11376790701734],[-127.52923406656306,57.11362824983886],[-127.52906662574458,57.1134721616217],[-127.52885792618011,57.11329189625764],[-127.5287552920286,57.11315410422217],[-127.52861228984936,57.11298876190062],[-127.52844296684214,57.1128371787461],[-127.528186281398,57.11272360872663],[-127.52783747635524,57.112606632949884],[-127.52780815208608,57.1124668611797],[-127.52769843432371,57.112306732984905],[-127.52740195129572,57.11220595748783],[-127.52714873687806,57.11210131230237],[-127.52693046570329,57.11196599301012],[-127.52672832223375,57.11182039645012],[-127.52655792605161,57.111667702761835],[-127.52648186561527,57.11149597085081],[-127.52644159399091,57.11131485299745],[-127.52637464470438,57.11113853084402],[-127.52628824025217,57.11099270101253],[-127.52620378546814,57.11079192334643],[-127.52605585291808,57.110632240988735],[-127.52587519659538,57.11048078752568],[-127.525657919242,57.11034433388837],[-127.5255400691424,57.11023922433699],[-127.52535588247122,57.11002504013296],[-127.52520491048404,57.10986651341807],[-127.52502426112098,57.10971505886189],[-127.52482329486723,57.109572808808196],[-127.52461421702166,57.10943401599066],[-127.52439897135051,57.10929641583183],[-127.52417772440273,57.109163369105204],[-127.52394331018942,57.10903720129142],[-127.52365661107574,57.1089475128466],[-127.52335701121221,57.10887142537391],[-127.52305351983158,57.10880098722653],[-127.52274903287407,57.108731680922226],[-127.52244252571387,57.108663518407056],[-127.52213413160418,57.10859986085767],[-127.52182865118881,57.10853168495672],[-127.52152907471827,57.10845559311864],[-127.52123348115876,57.10837609143885],[-127.52093988228845,57.108294324032144],[-127.52064326659766,57.10821483296631],[-127.52034569975969,57.108137594154634],[-127.52004419668444,57.10806488418757],[-127.5197267292064,57.108006931334096],[-127.51946030549577,57.10790690960348],[-127.51930425456321,57.10774955673902],[-127.5192753736883,57.10756830499563],[-127.5192816702998,57.107387764649125],[-127.51924672584204,57.107209946284215],[-127.51917779543892,57.1070347654129],[-127.51910779677466,57.10685847605784],[-127.51906867801267,57.10667958540926],[-127.51902140231967,57.10650303155162],[-127.5188949473914,57.10633636663361],[-127.51878492973505,57.10616726849424],[-127.51877046732763,57.105984728164486],[-127.51872117259872,57.10580931872412],[-127.518559097233,57.10565651910427],[-127.51835091063857,57.105513223145024],[-127.51814892227743,57.105369854776136],[-127.5179499977179,57.105225329576214],[-127.51773997164462,57.10508765869307],[-127.51749845438714,57.10496380465204],[-127.51724787343804,57.104845660132334],[-127.51707256744213,57.104697496366825],[-127.51693180111042,57.10453435904781],[-127.5166863524833,57.10441503296647],[-127.51645603437196,57.10428656333658],[-127.51628346998469,57.10412939949862],[-127.51607669509637,57.10399505113638],[-127.51566110750178,57.103884425368356],[-127.51554068459473,57.103791667715925],[-127.51531683577645,57.10366984653666],[-127.51505233464367,57.103591091545134],[-127.5148706696502,57.10343851532149],[-127.51461224271125,57.10333054534487],[-127.51432358674069,57.103241981143164],[-127.51402882413299,57.10315572899631],[-127.51374619044964,57.10306261005072],[-127.5134234064066,57.10297331893],[-127.51314662841496,57.10292384620497],[-127.51283173725365,57.10287705660876],[-127.51253245272102,57.102780765439135],[-127.51223595924284,57.10272927754119],[-127.51187828834884,57.10272445502725],[-127.5115701876579,57.10271905730187],[-127.5112403642933,57.10271278953486],[-127.51091631357573,57.10272214678383],[-127.51059815674196,57.1027762712535],[-127.51027472231974,57.10280131245695],[-127.50994526199767,57.102778223613946],[-127.5096370239768,57.102716777603206],[-127.50934141112938,57.1026350085316],[-127.50898697171888,57.10252813829926],[-127.50880117670286,57.10240138267322],[-127.50846672447109,57.10211941873628],[-127.50860294144395,57.10195755443816],[-127.50887258969763,57.10185243414049],[-127.50905687990634,57.101704585206456],[-127.50915341072408,57.10153197027031],[-127.50925622480139,57.10136152440549],[-127.50936838430212,57.10119209126758],[-127.50949718107928,57.101025828281095],[-127.50969305271404,57.100883449000186],[-127.5099276957359,57.10075519251132],[-127.51013194129926,57.100616078371964],[-127.51029508296246,57.100456142519896],[-127.5103015968988,57.10028008511873],[-127.51025835122853,57.10010012010513],[-127.51021514496843,57.09999973884037],[-127.51018327877185,57.099925007107984],[-127.51008966369811,57.099751229613865],[-127.50997557317018,57.099582172665535],[-127.50983181018293,57.09942018444569],[-127.50965440423047,57.09926979441231],[-127.50945548267094,57.09912413670411],[-127.5092555823068,57.098979610951275],[-127.50907207306666,57.098831532631046],[-127.50892534271082,57.098672940606974],[-127.50882869087103,57.098500318491055],[-127.50875973557811,57.0983228924418],[-127.50870415229386,57.09814419085397],[-127.50867938748698,57.09796064929352],[-127.50863112944701,57.09778410482838],[-127.50849284156159,57.09762989848855],[-127.50825635211449,57.09750036626265],[-127.50801478115898,57.097373134177055],[-127.50780070338286,57.09723549582585],[-127.50761816093348,57.0970851628342],[-127.50743964565571,57.09693254128685],[-127.5072754721215,57.0967763911345],[-127.50714203998314,57.09661428117824],[-127.50709672070911,57.09643321886867],[-127.50700384321439,57.09619890274094],[-127.5068968085909,57.096103741697384],[-127.50661380453434,57.09599940386227],[-127.5062912891649,57.09596725920835],[-127.50595693863208,57.09594982207455],[-127.5056747289739,57.09586564927312],[-127.505418092526,57.095748674713604],[-127.50518768842073,57.09561570443858],[-127.50500517826119,57.09543958713252],[-127.50483901279146,57.09531147971322],[-127.50471472127094,57.095144778593195],[-127.50460583886753,57.094975657874244],[-127.50443857945709,57.0948195401936],[-127.50424378682703,57.09467270699158],[-127.50401465338692,57.094545324706424],[-127.50376620299605,57.09442601099829],[-127.50350660784873,57.094312429775776],[-127.50323907787121,57.094206785776834],[-127.5029567554346,57.094119246027944],[-127.50262522134572,57.094093921857414],[-127.50229460807697,57.09409212507578],[-127.50196390720285,57.0940880866723],[-127.50163950552759,57.09406043609768],[-127.50131854997235,57.09401481072287],[-127.50100342321232,57.093960150334],[-127.50065898399193,57.093868836824385],[-127.50050245426868,57.093695777598846],[-127.50027431167634,57.09361993884498],[-127.49997376597494,57.09354156954472],[-127.49968835021448,57.093454058475366],[-127.4994490457646,57.09333014815363],[-127.49922993814039,57.09319479636057],[-127.49903823555324,57.093046799476056],[-127.49880211228121,57.092925093290994],[-127.49852960926974,57.0928239807161],[-127.49824404381842,57.09273198477439],[-127.49795648572723,57.09264225289892],[-127.49766507787798,57.09255928997253],[-127.49736759117702,57.09247975887195],[-127.49706818837167,57.09240361178218],[-127.49676585584436,57.092331981212126],[-127.49646643886487,57.092255832939124],[-127.4961749498713,57.09217062592276],[-127.4958923093908,57.09207410787815],[-127.4956572262328,57.091952384342704],[-127.49547582420759,57.09180314359091],[-127.49531265814917,57.09164472644296],[-127.49512610510479,57.09149554431628],[-127.49494879333042,57.091345135156196],[-127.49483479440825,57.09117606600271],[-127.49472792783041,57.091004673271414],[-127.49458941497181,57.09084261021314],[-127.49441921253789,57.09068875633207],[-127.49423360455826,57.09053732051585],[-127.49403280909301,57.090393904656665],[-127.49381688628068,57.09025962888438],[-127.49355758307041,57.09015162997901],[-127.49310171674892,57.0900088913123],[-127.49300962716846,57.0899516590928],[-127.4927472664811,57.08984481453616],[-127.49244191683906,57.089774329818695],[-127.49212494686921,57.08972415334467],[-127.49179952150774,57.08969536971523],[-127.4914695557044,57.08970923099617],[-127.49114084777692,57.08972868150753],[-127.49082577258082,57.08978048116775],[-127.49052203679028,57.08985793094039],[-127.4902052835295,57.089892934921664],[-127.48987792624432,57.08989443257213],[-127.48954597799774,57.089883652047384],[-127.48921392653659,57.08987063008108],[-127.48888399999421,57.08985870390662],[-127.48855492408063,57.089842283638696],[-127.48822602209874,57.08983034411369],[-127.48789588023507,57.08983971478443],[-127.48757404139607,57.08987701213696],[-127.48725574115682,57.089925477226],[-127.48693852412423,57.089975050071445],[-127.48662241712312,57.09002685126339],[-127.486307376746,57.09007976041621],[-127.48599243871469,57.09013490941042],[-127.48567163619484,57.09017219022291],[-127.48533929602051,57.09017821675982],[-127.48503381226172,57.090237739314496],[-127.48475134204743,57.0903317467185],[-127.48447099504959,57.09042685022669],[-127.48419175738711,57.090524182276575],[-127.48390817229591,57.09061595873663],[-127.48361489651111,57.090697756799926],[-127.48331190344744,57.09076845581579],[-127.48300026071578,57.09082916446747],[-127.48267725493658,57.09086310022245],[-127.48236002425303,57.090912661968595],[-127.48205061659017,57.09097782647817],[-127.48172360877422,57.091015167982874],[-127.4813678131304,57.09100239566224],[-127.48116109774631,57.09089153341558],[-127.48100001619105,57.0907319546337],[-127.48086147583862,57.09056763624308],[-127.48069337787035,57.090413741235785],[-127.48051819237583,57.09026328914634],[-127.48041351668165,57.09009298157958],[-127.48030878221586,57.0899215537413],[-127.48015188093387,57.08976304755629],[-127.47992487824892,57.08963447960072],[-127.47967755856311,57.08951510883449],[-127.47944840789435,57.0893843227031],[-127.47919511288873,57.08927062327621],[-127.47893164176111,57.08916040141681],[-127.47866321778389,57.08905583962052],[-127.4783857977244,57.088959225449955],[-127.47809639544064,57.08887283445166],[-127.47779606146023,57.08879777552459],[-127.47748781467944,57.088731772625664],[-127.47717478678244,57.08867591111372],[-127.47685407760883,57.0886347073223],[-127.47652665131211,57.088607029391774],[-127.47619935466851,57.08858271182855],[-127.47587033816369,57.088567379976354],[-127.47552919207551,57.08855890980967],[-127.47522400551834,57.08851864733298],[-127.47491446666277,57.08844592775747],[-127.47460627067025,57.08838103846316],[-127.47428108484414,57.08835781314636],[-127.4739497131898,57.088361558106506],[-127.4736190646542,57.08835744787733],[-127.47328837321413,57.08835221641318],[-127.4729587918729,57.08834921334045],[-127.47262952779288,57.08835405202886],[-127.47230287009079,57.088373431932474],[-127.47197889437159,57.0884084730962],[-127.47165503032714,57.088446874835306],[-127.47133324683337,57.08848525229561],[-127.47104968898888,57.088578121066675],[-127.47073361496643,57.08863100410444],[-127.47040518950331,57.088658245326734],[-127.47008224008908,57.088639467856446],[-127.469763089044,57.08858477858571],[-127.46945296454682,57.08852326157015],[-127.46915165244594,57.08844931488296],[-127.4688552543788,57.08836858689425],[-127.4685501316736,57.088302527929336],[-127.46822369544297,57.08827369723821],[-127.46790885069267,57.0882234385589],[-127.46755189346933,57.08809855396922],[-127.46737885718746,57.08805678638032],[-127.46729110712789,57.08811157577107],[-127.46724385601604,57.088226437079804],[-127.46685197138726,57.0885390867711],[-127.46675945533545,57.088712742727935],[-127.46667494057009,57.08887958338013],[-127.46645504632251,57.08893585799297],[-127.46616944907096,57.089002958691445],[-127.46608887288899,57.08908344688421],[-127.46565768175883,57.089313589588926],[-127.46542287537015,57.08943952458967],[-127.4652018219357,57.08957427172548],[-127.46488829556877,57.089694364679175],[-127.46467393348944,57.08978756317591],[-127.46444646754281,57.089916776613094],[-127.46422120949116,57.090049327507096],[-127.4639758137814,57.09016865344674],[-127.46372094597415,57.090283601682906],[-127.46346605046878,57.09039742884353],[-127.46320051417732,57.090503528691876],[-127.46292011258316,57.09059858589732],[-127.462632218523,57.090687001217184],[-127.46231490391189,57.09076229513785],[-127.46198641161027,57.09078839480489],[-127.46166674893563,57.090828966149644],[-127.46137333891606,57.09090847341773],[-127.46109086502211,57.09100354985142],[-127.46080262280331,57.091082997934414],[-127.46050967771731,57.091174827711306],[-127.46020883100807,57.09124881118447],[-127.45990359793042,57.09131611776301],[-127.45959299703738,57.09137787927862],[-127.45931997158291,57.0914504284961],[-127.45897718497082,57.09150806506674],[-127.4586762901474,57.09158092461948],[-127.45840012684744,57.091679287218575],[-127.45816317479947,57.09180411204767],[-127.4579336101365,57.091933337398046],[-127.45770616785416,57.092063659503104],[-127.45747660010254,57.092192884073505],[-127.4572428750227,57.09232103379573],[-127.45703954877456,57.09246117324784],[-127.45685518774592,57.09261118850578],[-127.45666969956694,57.092758974328426],[-127.45644537972663,57.09289038022513],[-127.45621688600146,57.09302071144326],[-127.45584313412766,57.09321543271648],[-127.45570580706003,57.09321696519944],[-127.45550933032533,57.09307456392928],[-127.45540241646603,57.09292443792713],[-127.45540397290186,57.09272042037993],[-127.45531079306511,57.09255108617152],[-127.45514985440634,57.09239259569816],[-127.45495634569468,57.09224679800374],[-127.4546998879432,57.09212972402477],[-127.45453409666028,57.09197913315595],[-127.4544130384562,57.091810109307595],[-127.45423283806845,57.09166079964892],[-127.4540291395048,57.09151847696843],[-127.45382444417878,57.09137728598873],[-127.45362587658423,57.091233784678494],[-127.45342118425755,57.0910925930951],[-127.45319624324065,57.09096171469947],[-127.45295808610597,57.09083658754174],[-127.45273110921451,57.09070685195665],[-127.45250613043605,57.090574852002256],[-127.45227611004506,57.090446270451125],[-127.45203593666983,57.090322285050085],[-127.45181507558264,57.09019023815575],[-127.45146787558018,57.09007640993016],[-127.45124759432578,57.0900138500254],[-127.45101856330442,57.089884134509724],[-127.45081200879521,57.089747443376176],[-127.4505315226228,57.089649683882286],[-127.45023221826479,57.08957342966841],[-127.44992405493868,57.089508482014466],[-127.44961197459348,57.0894491815554],[-127.44930085128853,57.08938762797885],[-127.4489976332774,57.089317018856626],[-127.44870712701096,57.08922721299025],[-127.44841089267011,57.08914979972642],[-127.44809174141925,57.08912195871272],[-127.44775738198454,57.08912903283496],[-127.44742668744655,57.08912373581149],[-127.44709772003128,57.0891094517946],[-127.44676781316053,57.08909741911966],[-127.44643711903122,57.08909211958783],[-127.44611039967828,57.089110313508755],[-127.44578522672776,57.08914193995629],[-127.4454589869696,57.089172456535955],[-127.44513251940018,57.08919737044925],[-127.44480611007066,57.089223403770035],[-127.44448191706321,57.08925389522117],[-127.44415184126578,57.08923737430127],[-127.4436997191896,57.08921659903562],[-127.44349235977221,57.08925027835813],[-127.4431482219419,57.089272020208995],[-127.44290348593597,57.08930050773803],[-127.4426160463764,57.089429224808136],[-127.44232058494912,57.089509832386845],[-127.44199804456433,57.08958401340234],[-127.44175043392927,57.08970107949941],[-127.44147910013201,57.08979150632344],[-127.44120822751162,57.08989425708423],[-127.44094160910367,57.090000322899535],[-127.44067498922337,57.090106388177986],[-127.44040621904199,57.09021023490151],[-127.44012042490438,57.09030081853357],[-127.43980746710062,57.09035583341957],[-127.43949365222548,57.090415340497145],[-127.43923536867345,57.09052355254147],[-127.43900051025874,57.090650560497046],[-127.43877474039957,57.090771863415256],[-127.43871016887468,57.090950794431805],[-127.4386847277259,57.09107100846097],[-127.43835990970163,57.09111270013917],[-127.43792512780412,57.09103118627828],[-127.43764871084738,57.09093111265462],[-127.43749830177626,57.09077584804601],[-127.4373751736523,57.09060459047376],[-127.43720816466033,57.09044726676337],[-127.43702778602609,57.09029121103078],[-127.43681515205213,57.090156806941266],[-127.43654825360339,57.090062230663705],[-127.436235148763,57.09000290964284],[-127.43590892528385,57.08995157839416],[-127.43559588072848,57.089893376072325],[-127.43527998291034,57.089841929634375],[-127.43495541408437,57.089807390896055],[-127.43463188648713,57.08977283990586],[-127.43431117200655,57.08973041109268],[-127.43399238099222,57.08968459774277],[-127.43367360725641,57.08963878343394],[-127.43335189612469,57.08959748411505],[-127.43303022748717,57.08955730441505],[-127.43272407455464,57.089490052629706],[-127.43241222984165,57.089436313083425],[-127.43208572759212,57.0894051511227],[-127.4317649772285,57.08936159565021],[-127.43146675301101,57.089285286980314],[-127.43140011852623,57.089243425174175],[-127.43121159735274,57.089200659012945],[-127.4305754266941,57.08906304549727],[-127.43026730070811,57.08899805143774],[-127.4299572361715,57.088936440522765],[-127.42965315829348,57.08886915892616],[-127.42939292095434,57.08875880322355],[-127.42914375748394,57.088640479619464],[-127.42890267113968,57.08851758361238],[-127.42866763026412,57.088390137500966],[-127.42842654701415,57.08826724063622],[-127.42816343679641,57.088162518411025],[-127.42786810955997,57.088080565704644],[-127.42757680453748,57.08799520572513],[-127.42732256493726,57.087879176113724],[-127.42706242425248,57.08777105666384],[-127.4267522499076,57.08770607695181],[-127.4264561131615,57.08762973433483],[-127.42619993951236,57.087517086379926],[-127.42595680498655,57.087394207603744],[-127.42573085545482,57.08726105276567],[-127.42543593106014,57.087189178128924],[-127.4251178797448,57.08713436851394],[-127.42481856232703,57.08705581531564],[-127.42453200964346,57.0869591881913],[-127.42424157841704,57.08686932800281],[-127.42393798378868,57.08681435771297],[-127.42361730337542,57.08679992435354],[-127.42328717193298,57.086809131501994],[-127.42295332614772,57.08682958698311],[-127.42261935551944,57.08684668037382],[-127.4222890574912,57.086851403347964],[-127.42195867642859,57.08685388466127],[-127.42162821238941,57.08685412431272],[-127.42129878891606,57.08685435178838],[-127.42096836631649,57.08685571018094],[-127.4206390920611,57.08686041782123],[-127.42030557584762,57.08688982982948],[-127.42000014694688,57.08692453952217],[-127.41965741875026,57.08692827028284],[-127.41933215971483,57.08695758991662],[-127.41900694157357,57.08698802915352],[-127.41868059957945,57.08701623807107],[-127.41835419087981,57.087042205166],[-127.41802557649919,57.08706483282877],[-127.4176965647232,57.08707625534562],[-127.4173554034761,57.08706651265124],[-127.41713712850986,57.08702853327372],[-127.41703046209241,57.086824574206425],[-127.4171814209384,57.08666152983364],[-127.41709242949607,57.08648876298926],[-127.41685758900827,57.08636577762137],[-127.41660026261779,57.08624864038892],[-127.41639379231118,57.08611077490226],[-127.41623816959954,57.08595106063697],[-127.41607135000966,57.08579595123037],[-127.41584961456397,57.08566385501543],[-127.41559542581378,57.085547802745694],[-127.41533020557003,57.085440836604874],[-127.41505999879413,57.08533840749417],[-127.4147907514555,57.085233725717785],[-127.41452248833528,57.085127911874466],[-127.41425220341401,57.08502324028716],[-127.41399405965142,57.084911711375746],[-127.41376530856509,57.08478529219467],[-127.41359537428679,57.084629092817],[-127.41348480063839,57.084458799624045],[-127.41335697662636,57.084296539322985],[-127.41314537549991,57.08415872472907],[-127.41290528532828,57.084032427045976],[-127.41264917540148,57.08391975277493],[-127.41238799646212,57.083809374638335],[-127.4121217731777,57.083702413197],[-127.41184848224401,57.08360001118016],[-127.41157024575438,57.08350326643306],[-127.41128408218441,57.08341557375976],[-127.41099189121424,57.08333242912006],[-127.41069475439897,57.083254941631274],[-127.4103946372831,57.08318084828604],[-127.41009249802316,57.083107896987656],[-127.40978837772128,57.083037208135],[-127.40948524138267,57.08296538709771],[-127.40918410491031,57.08289130204878],[-127.4088849764063,57.08281607377251],[-127.40858878961626,57.082736329627444],[-127.40829558569995,57.08265319004752],[-127.4080023665374,57.08257004999179],[-127.40770816575966,57.08248804074741],[-127.40741202498856,57.082409414362324],[-127.40711196184701,57.08233643392261],[-127.40680397054415,57.08227250517741],[-127.40649107369195,57.082215353758144],[-127.40617523698904,57.08216271672143],[-127.40586034307847,57.08210782705713],[-127.4055483909149,57.08204842151848],[-127.40524432834411,57.081978842538874],[-127.4049402668746,57.081909262853955],[-127.4046189791,57.08187685622354],[-127.4043207850006,57.081798245088315],[-127.40401574365927,57.081729794696585],[-127.40372564559274,57.081646611657106],[-127.40346136203277,57.08153512883237],[-127.40316242263536,57.08160559676481],[-127.40283636021319,57.08164048842049],[-127.40256309105908,57.081735337630604],[-127.40230394244551,57.08184908895293],[-127.40203727250781,57.081955074630585],[-127.4017706419816,57.082062180185865],[-127.4015039690938,57.08216816478946],[-127.40123410815988,57.08227194138426],[-127.40096207531083,57.08237237818086],[-127.40068260312667,57.08246729002824],[-127.40036977523609,57.08252557123764],[-127.40007321353906,57.08260497329955],[-127.4000000790053,57.082638263160845],[-127.39982135052992,57.08272088311466],[-127.39960421030894,57.08285435348215],[-127.39939344941948,57.08299335930717],[-127.39918583272484,57.083133451912005],[-127.3989792549956,57.08327353303966],[-127.39876953002886,57.08341252673772],[-127.39855980354466,57.0835515201124],[-127.39835003475832,57.08368939274646],[-127.39814347525555,57.08383059320105],[-127.39795900728504,57.08398276508516],[-127.39772344093953,57.08409289184855],[-127.3973912836596,57.084074033973216],[-127.39706767517941,57.08403490830428],[-127.39674406735834,57.083995781833615],[-127.3964293348165,57.0839453510011],[-127.39616014801273,57.0838406308785],[-127.39586314280832,57.08376647100775],[-127.39555115193531,57.08370592107098],[-127.39524320958887,57.08364308538385],[-127.394921549336,57.08360057106303],[-127.39459724878701,57.08357041357626],[-127.39426499237484,57.08357732849444],[-127.39394278113886,57.08354826790621],[-127.39362799116242,57.08349558931725],[-127.39331402283153,57.083437296938264],[-127.3929991368542,57.083382376175145],[-127.3926786029884,57.08334208605547],[-127.3923485838295,57.083325434318695],[-127.39201910926774,57.08332334701693],[-127.39168867543893,57.08332351082361],[-127.39135894093147,57.083314699516336],[-127.39102992249153,57.08329691292441],[-127.39069983982857,57.08327801600218],[-127.39037090311099,57.08326246858707],[-127.39004237207908,57.0832581245375],[-127.38971655408837,57.0832716843763],[-127.38939158685076,57.08330877221567],[-127.38907225802572,57.083359249404005],[-127.38876156724685,57.08341972148609],[-127.38845870028443,57.08349692229889],[-127.38815677510533,57.08357187067328],[-127.38784583829637,57.083625618061276],[-127.38752350954981,57.08365034376612],[-127.38719443705781,57.083659448483196],[-127.38686193584738,57.08365962202055],[-127.38652943463394,57.0836597947103],[-127.38619936176188,57.083670028399446],[-127.38587063605848,57.0836892137418],[-127.38554423348462,57.083715098676336],[-127.38521905646033,57.08374657402591],[-127.38489614534403,57.08378362875163],[-127.38457660475079,57.08382849284337],[-127.3842592655331,57.08387669533247],[-127.38393976378678,57.08392267828903],[-127.38361602774636,57.083965342825685],[-127.38329441965489,57.084010225683635],[-127.38298036749606,57.084063994422195],[-127.38267820172162,57.08413220743641],[-127.38237892956965,57.084223926922874],[-127.38211978504326,57.084339879187375],[-127.38195040433905,57.08448290110535],[-127.38187196605494,57.084656343105024],[-127.38183423713777,57.08484168312915],[-127.38179530611139,57.08502255249699],[-127.38176042322763,57.08520113728569],[-127.38173173371925,57.085379656473734],[-127.38170721339783,57.085559252360284],[-127.38168269284719,57.085738848265365],[-127.38166538989331,57.085918367730216],[-127.38165742605996,57.08609890913686],[-127.38163703416193,57.08627846136253],[-127.38157622895851,57.08645395827434],[-127.3814645896391,57.08662326847623],[-127.38134886034238,57.08679374275919],[-127.38129208521288,57.086966955197376],[-127.38131921865829,57.08714712501773],[-127.38132570564362,57.087327513508285],[-127.38130841682342,57.0875070329564],[-127.38128491725178,57.08768661819384],[-127.3812521345671,57.08786630175081],[-127.38120688273628,57.08804387565051],[-127.38112843382424,57.08821731764799],[-127.38102095714808,57.088387704387785],[-127.38089160662672,57.08855271835279],[-127.38075600395975,57.08871667752563],[-127.38062565082906,57.088882822708456],[-127.38049938582999,57.08904780364981],[-127.38038047551142,57.089216069207765],[-127.3802740168556,57.08938644461724],[-127.38013862097924,57.08964231099852],[-127.38013899438971,57.08973870046754],[-127.38012811841301,57.089924877274626],[-127.38011407283827,57.0901088459312],[-127.38005301306579,57.09027762004827],[-127.37984464244101,57.09039975574414],[-127.37953065958105,57.09048601985872],[-127.37925001102663,57.09057977673722],[-127.37896621533712,57.09067244541853],[-127.3786823780598,57.09076399305965],[-127.37839960381191,57.09085664969636],[-127.37812348154924,57.090961564832064],[-127.37783725370001,57.09104416903223],[-127.37750472871222,57.09104543914774],[-127.37719286836914,57.09098932670384],[-127.37690458234512,57.09089933908449],[-127.37661832237474,57.090808208613666],[-127.37633603287541,57.09071255222946],[-127.37603993308389,57.09063497458853],[-127.37572414917443,57.09058450436194],[-127.37539852332894,57.09054758738875],[-127.37507155529619,57.09053085910962],[-127.37474180284575,57.090523126180464],[-127.37441365076847,57.09050192532596],[-127.37408552261883,57.09048184425062],[-127.37375653094769,57.0904662548574],[-127.37342761967341,57.09045290549556],[-127.37309784468663,57.09044404780732],[-127.37276726944478,57.09044192282102],[-127.37243390900196,57.09044879311659],[-127.37211395469305,57.09048354284256],[-127.3717947035992,57.090538459716484],[-127.37148635249264,57.09060895312724],[-127.3712108372948,57.09070263853302],[-127.37098627727659,57.0908350176392],[-127.37078402843228,57.09098509553497],[-127.37055724048304,57.09111301390086],[-127.370273980903,57.09119220759178],[-127.36995127253631,57.09123706854293],[-127.36961894351076,57.09127306288549],[-127.3692982586472,57.09131678011185],[-127.36897436416245,57.0913571676716],[-127.36865157303896,57.09139978454808],[-127.36833736013915,57.09145127745163],[-127.36804050371099,57.091526125454344],[-127.36777172687673,57.09163542475706],[-127.36749098481447,57.09172803615638],[-127.36717538451855,57.09176945311027],[-127.36684233054942,57.09178527259203],[-127.36651007783841,57.09179435772004],[-127.36617738656682,57.091791117230756],[-127.36584577591618,57.09178898543039],[-127.36552222081342,57.09181030633423],[-127.3651952922047,57.091852957903264],[-127.36487511508646,57.09191122991943],[-127.36458364127763,57.09199273876154],[-127.3643293059063,57.092101879807046],[-127.36409423008985,57.09222987342522],[-127.36388031947365,57.09237221639677],[-127.36369044105616,57.092522153754054],[-127.3635410584614,57.092678392673676],[-127.36347312364924,57.09285955975793],[-127.36340196312769,57.0930373979825],[-127.36322832113626,57.09317931903647],[-127.36294681093004,57.09327977451459],[-127.36268745062492,57.09339344822707],[-127.36250073126573,57.09354559256699],[-127.3623001588463,57.093685551936325],[-127.36200327338689,57.09376038632281],[-127.3616860853617,57.09381637746687],[-127.361373082718,57.09387344500804],[-127.3610568144965,57.093926062455246],[-127.36073716169844,57.09397086847287],[-127.36041538025401,57.09401345419619],[-127.36010113493346,57.09406492736061],[-127.3597989523591,57.09413644934851],[-127.35950333730467,57.09421798984835],[-127.35920333643317,57.09429285025823],[-127.3588957581275,57.094357701239815],[-127.3585859948091,57.09441921169014],[-127.35827520622436,57.094480732072036],[-127.3579676248471,57.09454558087445],[-127.35766226594507,57.09461488921864],[-127.35736658655095,57.09469530463885],[-127.35709537533675,57.094795640171135],[-127.35683810867793,57.094910401165635],[-127.35655946057129,57.0950052086611],[-127.35625517585436,57.09507562335206],[-127.35594221747913,57.095134918967204],[-127.35561204188457,57.09517421741489],[-127.35531271090323,57.09523897415798],[-127.35507630781312,57.095360239990015],[-127.354869701131,57.09550585466939],[-127.354684887099,57.095654605288274],[-127.35451055542124,57.095807730219946],[-127.35429027537444,57.09594676083537],[-127.35419591525014,57.09611250539356],[-127.35416712898102,57.09629214035305],[-127.35415189288932,57.096474997239696],[-127.3541075299547,57.096652552199025],[-127.35400504155591,57.09682174359439],[-127.35385686418599,57.09698468392969],[-127.35368777345857,57.09713999513118],[-127.35349142203809,57.0972843804058],[-127.35325096563815,57.097407926672425],[-127.35299679906244,57.09752376870645],[-127.35272880393408,57.09762854509786],[-127.35242976464224,57.09770225888319],[-127.3518723719373,57.09780218704407],[-127.35158206830907,57.09771328487362],[-127.35135071175924,57.09759687111139],[-127.3512300112313,57.097425510127785],[-127.35104001738367,57.09728064620562],[-127.35073001326981,57.09721884665609],[-127.35026488247361,57.097151926829774],[-127.35010308665606,57.09710428378369],[-127.34980000691418,57.09703344360513],[-127.34951280344247,57.09694450491659],[-127.3492356289042,57.096846495100635],[-127.34896249093572,57.096746201281654],[-127.3486863435676,57.09664817972188],[-127.34840010772722,57.096556986963485],[-127.34811896579451,57.09646349926281],[-127.34806611870535,57.09640015690902],[-127.34774933917456,57.096350749790076],[-127.34745087864282,57.096117333474325],[-127.34717332467969,57.09597897281511],[-127.34699548933169,57.09585639481069],[-127.34669118788288,57.09577995600757],[-127.34638120287957,57.095718146193526],[-127.34606525908983,57.09566312222517],[-127.3457393989291,57.09567881321891],[-127.34541271418597,57.095670974092194],[-127.34513754594629,57.095570693478464],[-127.34484540582622,57.09548739997248],[-127.34461365157908,57.095358649579225],[-127.34431606404338,57.09529670717231],[-127.34410972623776,57.09515648556035],[-127.34384500824616,57.09505945720614],[-127.34353200611554,57.09499991353459],[-127.34322100820135,57.094938106796185],[-127.34293690235924,57.09484800134756],[-127.34271119694574,57.09471470208916],[-127.34243626108105,57.09462113867715],[-127.34212916322427,57.094552564194686],[-127.34185503584816,57.09445226620242],[-127.34154414596318,57.09439381699108],[-127.34116793471343,57.09435733465969],[-127.34094750297253,57.09425648279406],[-127.34072688409809,57.094120886293275],[-127.34053071194752,57.09397495064162],[-127.3403193971219,57.09383925790637],[-127.34002521557969,57.09375597492878],[-127.33979459036804,57.09362944650299],[-127.33958113685587,57.0934915329276],[-127.33937785367215,57.093349031238404],[-127.33922252196665,57.093189224353964],[-127.33900814938433,57.09305468189806],[-127.33873002801866,57.09295778116831],[-127.33842985692559,57.092880160434134],[-127.33812094937569,57.092818320448146],[-127.33779245969474,57.09281720609827],[-127.3374679927151,57.09278354522471],[-127.33716236177,57.092756415541174],[-127.33689158340542,57.09266279824586],[-127.33666675758619,57.09252387586107],[-127.33640396904318,57.09242232983378],[-127.33609327631487,57.092368349324005],[-127.3357645677789,57.09233136519371],[-127.33544473192623,57.09228196014893],[-127.33514667666317,57.09220543120357],[-127.33485251885004,57.092122136661544],[-127.33454354529108,57.092058047352616],[-127.33422379113077,57.0920108802114],[-127.33389862118376,57.091986184504535],[-127.33356795708211,57.0919817193027],[-127.33323668015944,57.09198958878154],[-127.33291009390527,57.092013101268115],[-127.33258602218675,57.092050037341544],[-127.33225663161812,57.09205228084928],[-127.33192343591422,57.092034387237696],[-127.33158798133879,57.092010911631604],[-127.33125577168414,57.09199188541641],[-127.33093039495671,57.091990722096966],[-127.33061629692548,57.09201746393813],[-127.33031810558846,57.09208551390774],[-127.3300311138927,57.09217922833518],[-127.32974535550268,57.092278533754715],[-127.32945083155343,57.0923633569436],[-127.32914972362137,57.09243703813688],[-127.32884651078805,57.09250961922808],[-127.32854219506136,57.09257996915772],[-127.32823461748337,57.09264586821917],[-127.3279247801594,57.092706185348696],[-127.32761057948952,57.09275982109818],[-127.32728875497907,57.09280232524931],[-127.32696345339804,57.09283365556714],[-127.32663581536897,57.092857162948604],[-127.32630767393009,57.09286610370164],[-127.32597613363122,57.09286611145558],[-127.32566756253479,57.09287373083766],[-127.3253168217069,57.09288626126407],[-127.32498800336195,57.0929052931261],[-127.32465882036676,57.09291424030312],[-127.32431809478113,57.09291769962606],[-127.32401256927793,57.0928636380058],[-127.32371964598643,57.09275564752778],[-127.32353091907326,57.09261409500001],[-127.32348903708188,57.092447514914504],[-127.32351474238936,57.092264557407724],[-127.32355269927957,57.092076992261184],[-127.32355572820727,57.09189538569833],[-127.32353303084479,57.0917162818517],[-127.32350104976884,57.09153727221551],[-127.32346905247162,57.09135826276226],[-127.32343913690265,57.09117923220777],[-127.32339685429262,57.091001447973454],[-127.32333600456776,57.09082385210793],[-127.32328634958768,57.090641659332256],[-127.32324277389172,57.0904560423875],[-127.32319811932675,57.09026931556406],[-127.3231453381006,57.09008603369624],[-127.32307621509935,57.08990852177126],[-127.32298362556493,57.08973909369621],[-127.3228593876276,57.08958007406711],[-127.32269640427809,57.08943601810129],[-127.32249970825283,57.089302391283226],[-127.32227541701182,57.089176889776276],[-127.32202966999319,57.08905833037875],[-127.32176557270905,57.088946681500445],[-127.32148824033483,57.08884077037202],[-127.32120174185597,57.088738314024],[-127.32091020681972,57.08863927057733],[-127.32061981298108,57.088543577452135],[-127.32033358863471,57.08844896233248],[-127.32005454559587,57.088353153096584],[-127.31977237657667,57.088256254078374],[-127.31948914637526,57.088158244371535],[-127.31920383635575,57.08806025510558],[-127.31891551588514,57.08796453734475],[-127.3186242618624,57.087873331958264],[-127.31832901706348,57.08778664961004],[-127.31803091544401,57.087706720479886],[-127.31773003373965,57.08763578543688],[-127.31742429051646,57.087573865480984],[-127.3171137624216,57.08752320146673],[-127.31679958315593,57.087486023576844],[-127.31648148895812,57.087455609446465],[-127.31615955109639,57.087433079158444],[-127.31583466181301,57.087415061183606],[-127.31550789998498,57.08740266545021],[-127.31517818649306,57.08739478199078],[-127.31484657835522,57.0873914001268],[-127.31451296573316,57.087390279285316],[-127.31417952298317,57.087393639207306],[-127.3138451162076,57.08739924965046],[-127.3135097070331,57.08740599016137],[-127.31317439086747,57.08741497053579],[-127.31284013693825,57.08742506018722],[-127.31250690693233,57.087435138677414],[-127.31217575798543,57.08744519537964],[-127.31184559469907,57.08745412049531],[-127.31151543125925,57.0874630447753],[-127.3111833559336,57.08747647076158],[-127.31084944507674,57.08749663933327],[-127.31051778972545,57.087522388540854],[-127.31019056911543,57.087557059003935],[-127.30987087186043,57.0876006197383],[-127.30956081720997,57.087654170352316],[-127.30926789060243,57.08772548159518],[-127.30900823463523,57.08783344570911],[-127.30876477988524,57.08796254253189],[-127.30851810360271,57.08808830872039],[-127.30824899075674,57.08819188284898],[-127.30794883920449,57.0882632635543],[-127.3076316560194,57.08832024349954],[-127.30730382135957,57.08836724194132],[-127.30697382835922,57.08841201951731],[-127.3066480187699,57.08845787517707],[-127.30633183459008,57.08851372109675],[-127.30603472777563,57.088583946031086],[-127.30576204224923,57.08867410076876],[-127.3055170139708,57.088787515569514],[-127.3052943036599,57.08891976069869],[-127.30508756451655,57.08906641645232],[-127.30489249305434,57.08922192180694],[-127.30470063968583,57.08938075717666],[-127.30450873015835,57.089538471997265],[-127.30431037471239,57.08968840517341],[-127.3040991936408,57.089826137129435],[-127.30386989750434,57.08994723734642],[-127.3036170878482,57.090045034689325],[-127.30333870008812,57.090119549647056],[-127.3030442628153,57.09017741186022],[-127.3027348980051,57.09022197250886],[-127.30241484469637,57.09025543082666],[-127.302085148781,57.090278897127426],[-127.30174802726945,57.090296832538876],[-127.30140762656778,57.090309195638234],[-127.30106409863726,57.09032046820735],[-127.30072155674024,57.09033060920762],[-127.30038119334314,57.09034409008121],[-127.30004511116323,57.0903620107188],[-127.29971651289631,57.090387701733036],[-127.29939109558401,57.090415601890435],[-127.29906469151226,57.0904446318887],[-127.2987393111307,57.09047365087422],[-127.29841396813454,57.090503789501554],[-127.29808758392342,57.0905339376743],[-127.29776223990532,57.09056407467788],[-127.29743685752815,57.09059309041745],[-127.29711041263243,57.090620995076776],[-127.29678391291371,57.09064777863047],[-127.29645735361873,57.090672320296264],[-127.29613073957672,57.09069574085553],[-127.29580302534352,57.09071692986363],[-127.2954752351658,57.09073587714098],[-127.29514541754341,57.09075596455023],[-127.29481357244376,57.090777192076],[-127.29448074054656,57.09079954937567],[-127.2941468297958,57.090820795696715],[-127.2938128431895,57.090839800254585],[-127.29347980498115,57.09085655289299],[-127.29314663210677,57.09086882269885],[-127.2928163972705,57.0908765792202],[-127.29248803868995,57.09087871217211],[-127.29216151881472,57.09087410111373],[-127.2918388650413,57.090861605154934],[-127.29152003988841,57.09084010386959],[-127.29120692014682,57.09080397457135],[-127.29090034206091,57.090747604890716],[-127.29059948666074,57.0906766071224],[-127.29030344759299,57.0905954735866],[-127.29000921124603,57.0905064757766],[-127.28971588757736,57.09041410581693],[-127.28942258183841,57.090321735040554],[-127.28889600187132,57.09017226489514],[-127.2886402151467,57.09005934681607],[-127.28838539544917,57.08994417705528],[-127.28813156387241,57.08982787623764],[-127.28787979868362,57.08971155454991],[-127.2876279974581,57.089594111930744],[-127.28737619777223,57.089476668835424],[-127.28712439962601,57.08935922526413],[-127.28687159988606,57.08924291193862],[-127.2866188181955,57.08912659797],[-127.28636403175125,57.089012544956745],[-127.28610723604655,57.088899632105615],[-127.28584839803946,57.08878785973014],[-127.28558758826254,57.08867834794742],[-127.28532374951361,57.08857110716196],[-127.28505691925665,57.088467257810066],[-127.28478608983237,57.0883668097971],[-127.28451122816382,57.08826976342278],[-127.28422734690342,57.088180651058124],[-127.28393643579977,57.0880972114089],[-127.28363950237379,57.088019434511324],[-127.28333860689068,57.08794617922889],[-127.28303364137926,57.08787520494803],[-127.28272769029488,57.08780536048422],[-127.28242071620816,57.087735525374946],[-127.28211476735058,57.087665679480686],[-127.2818117962877,57.08759244115259],[-127.2815118569816,57.087516930704815],[-127.28121589883021,57.08743689718894],[-127.2809229725356,57.08735459160047],[-127.28062999362331,57.08727116506581],[-127.28033905987404,57.087186596994066],[-127.28004811088796,57.08710202844062],[-127.27975816646752,57.08701632857821],[-127.27946818601981,57.086929507621186],[-127.27917824419512,57.08684380648038],[-127.27888826636028,57.086756984245106],[-127.27859832713139,57.08667128182607],[-127.27830740239756,57.08658670925986],[-127.27801543834403,57.08650214624581],[-127.27772351284536,57.086418703039094],[-127.2774295612006,57.08633639986028],[-127.27713568531976,57.08625633693516],[-127.27683874264841,57.08617742420599],[-127.27654088882828,57.08610188219482],[-127.27623998467536,57.086027490185266],[-127.2759330945057,57.085959880972396],[-127.2756191734302,57.08589794391086],[-127.27530024879522,57.085840538306584],[-127.27497729086922,57.08578653381759],[-127.2746533841463,57.0857347794505],[-127.27432947829608,57.08568302428107],[-127.27400557331858,57.085631268309356],[-127.27368576133567,57.08557835075646],[-127.2733689068763,57.08552092028205],[-127.27305811934119,57.08546006737911],[-127.27275545932191,57.0853946511661],[-127.27246078250607,57.08532131065408],[-127.27217724784069,57.08524113590677],[-127.27190580525887,57.08515187609951],[-127.27165147628598,57.08504899908136],[-127.2714223546123,57.08492794279],[-127.27121546292469,57.08479209883402],[-127.27102371520161,57.08464601964584],[-127.27084201181711,57.08449087580116],[-127.27066741645571,57.08433230003597],[-127.2704937724457,57.08417147316869],[-127.27031505086524,57.084012937189996],[-127.27012723379028,57.083860093655495],[-127.26992628677195,57.08371634425512],[-127.26970510331279,57.0835851205564],[-127.26946662383,57.08346191056919],[-127.26921285533895,57.08334445303432],[-127.26894692338746,57.08323383826719],[-127.26866886494078,57.08313118664732],[-127.26838388643132,57.08303756827709],[-127.26809096767086,57.08295411384204],[-127.26779322999425,57.082880792943904],[-127.2674836240532,57.0828232781275],[-127.26716108857408,57.082780458799604],[-127.26683161543689,57.082746672586445],[-127.26649712115996,57.08271741756407],[-127.26616366789285,57.08268815158331],[-127.2658362239885,57.08265322235991],[-127.26551774691562,57.082608117987704],[-127.26521322571377,57.082548306881655],[-127.26492667507722,57.082469266951584],[-127.26465809917842,57.082372119095595],[-127.26440351299772,57.08226026450507],[-127.26415990585697,57.08213709488945],[-127.26392329641827,57.08200713215041],[-127.26368869582681,57.081874907919534],[-127.26345305637459,57.08174269335898],[-127.26321343705366,57.08161500019968],[-127.26296379188932,57.08149637021662],[-127.26270315398487,57.0813890543352],[-127.26242545693688,57.08129647364376],[-127.26213581650181,57.0812174577083],[-127.26183611284588,57.08114638419417],[-127.26152841024019,57.081083233061776],[-127.26121573982314,57.08102573331596],[-127.26089801141683,57.08097164416807],[-127.26057825627655,57.080918694658166],[-127.26025853877235,57.080866864822475],[-127.25993980932151,57.0808139038567],[-127.25962507908906,57.08075642025261],[-127.25931427841101,57.08069329390252],[-127.25901049202594,57.080623374246294],[-127.2587146705671,57.08054441053911],[-127.25842474982524,57.080456422756434],[-127.2581388490626,57.080365033135884],[-127.25785287629179,57.08027140198218],[-127.2575669782661,57.08018001112016],[-127.25727713623623,57.08009426172191],[-127.25698239950225,57.080016404541674],[-127.25667982987419,57.07995207190323],[-127.25636255641538,57.07991141722396],[-127.25603359357737,57.07989216973816],[-127.25569962496213,57.07987745286126],[-127.25536856179725,57.079857103118734],[-127.2550472350409,57.079818725898505],[-127.25473169941174,57.079767963280084],[-127.25441804603074,57.07971157776019],[-127.25410530775443,57.079651820271636],[-127.25379262353053,57.07959318233373],[-127.25347800564758,57.07953904547633],[-127.25316048316162,57.079490539822146],[-127.2528391982134,57.07945327762903],[-127.25251212274252,57.0794283991517],[-127.2521831294512,57.079408021504],[-127.25185510390689,57.079385392125225],[-127.25153089887128,57.079353758800885],[-127.25121054759173,57.07931312124332],[-127.2508910749667,57.07926799124951],[-127.2505735215157,57.07921835884946],[-127.25025691985687,57.079166474947],[-127.24994232696417,57.079112329419175],[-127.24962771844372,57.079058183292744],[-127.24931511875221,57.079001775560705],[-127.24900147957494,57.078945377046026],[-127.24868886520619,57.0788889679757],[-127.24837623186322,57.07883143754255],[-127.24806358294217,57.078773906520325],[-127.24775095147156,57.07871637459309],[-127.24743930844025,57.078657711667],[-127.24712666233556,57.07860017840604],[-127.24681399732074,57.07854152378219],[-127.24650239348944,57.078483979082606],[-127.24618975020121,57.078426443582956],[-127.24587708803028,57.07836778672029],[-127.245565487011,57.078310239789516],[-127.24525281022456,57.07825158159294],[-127.24494121108259,57.078194033175414],[-127.24462855270873,57.07813537332944],[-127.24431691915676,57.078076702967],[-127.2440053228346,57.07801915232066],[-127.24369265079858,57.07796049039604],[-127.24338003249092,57.077902948025155],[-127.24306743485634,57.07784652552312],[-127.24275481841217,57.07778898165837],[-127.2424411987642,57.07773256741712],[-127.24212761626019,57.077677272882504],[-127.24181303050298,57.077623107961905],[-127.24149846214642,57.077568942127186],[-127.24118391435837,57.077515896151716],[-127.240868343587,57.07746285916214],[-127.24055377787398,57.077408691055226],[-127.24023919653416,57.077354522348635],[-127.2399235560751,57.077299242161544],[-127.23960899303334,57.07724507178218],[-127.2392944143649,57.07719090080316],[-127.2389788488706,57.077137859253945],[-127.2386632842475,57.077084816943184],[-127.23834673276684,57.077032904052565],[-127.23803023783391,57.07698323147054],[-127.2377137963264,57.076934678424614],[-127.23739531100136,57.07688726481535],[-127.23707691512577,57.076842091191914],[-127.23675665569559,57.07680365928184],[-127.23643054537817,57.07677536927942],[-127.23610264321844,57.07675606186064],[-127.23577378962835,57.07673900423914],[-127.23544387646949,57.07672083502886],[-127.23511687154632,57.07669703343774],[-127.23479078283592,57.07666985995319],[-127.23446467510142,57.07664156503777],[-127.23413955568888,57.076612139157916],[-127.23381443677427,57.07658271246828],[-127.23348931835763,57.07655328496877],[-127.23316312413627,57.07652274603733],[-127.23283800672579,57.07649331691538],[-127.23251288981326,57.076463886983554],[-127.23218678550423,57.07643558637638],[-127.23186166957892,57.076406154822415],[-127.23153554972619,57.07637785274397],[-127.23121043478817,57.07634841956764],[-127.23088532034818,57.07631898558161],[-127.23055918258315,57.07628956044697],[-127.23023410501496,57.07626124529924],[-127.22990798759083,57.07623293915391],[-127.2295818871604,57.0762046320379],[-127.22925580654356,57.076177444723655],[-127.22892977873813,57.076151376899894],[-127.22860377068916,57.07612642887825],[-127.2282767392448,57.076101489685605],[-127.22794970822493,57.076076549673296],[-127.22762168961064,57.07605273894102],[-127.2272936906787,57.0760300480008],[-127.22696581598554,57.076010717464825],[-127.2266370086024,57.07599475727511],[-127.2263083445333,57.075983278102704],[-127.22597881908466,57.075977410191],[-127.22565040554774,57.0759737725919],[-127.22532003512222,57.07597351494709],[-127.22499077647396,57.07597548761627],[-127.22466051317467,57.075978589686436],[-127.2243313450437,57.075983922231806],[-127.22400118869757,57.075990384018496],[-127.22367110360712,57.07599908589395],[-127.22334098269341,57.076006666471635],[-127.22301093297772,57.076016487138624],[-127.22268188777005,57.07602517675349],[-127.22235183772695,57.076034995752586],[-127.22202295387525,57.07604928617312],[-127.22169422879519,57.07606805746117],[-127.22136555811318,57.07608906900151],[-127.2210379274057,57.07611006997259],[-127.22070927251876,57.07613107970491],[-127.22038042282149,57.07614648644746],[-127.22005243530624,57.07615628031056],[-127.21972419864488,57.07615823010456],[-127.21939574859721,57.076153456291],[-127.21906708533574,57.07614195886827],[-127.21873831565199,57.076127099226284],[-127.21840943963244,57.07610887736421],[-127.21808049288396,57.07608841374528],[-127.21775154648584,57.076067949297],[-127.21742367627247,57.076048594770796],[-127.21707158790342,57.07604739818524],[-127.2168058850351,57.07610031356835],[-127.21649387149158,57.07615814361651],[-127.21617189804327,57.07616226763015],[-127.21584589819012,57.07613728771689],[-127.2155174966594,57.07610112143009],[-127.2151892918502,57.076071677259065],[-127.21485646681076,57.07605908723194],[-127.21447445643253,57.076058162391526],[-127.21421501320356,57.076113255753754],[-127.21406624142776,57.07617516383713],[-127.21409061154812,57.07639125032974],[-127.2141661073822,57.07659116971172],[-127.2141336120552,57.07677192027156],[-127.2140720570664,57.076947337416506],[-127.21400323311217,57.07712170142393],[-127.21392721090007,57.077297253214056],[-127.21384704064593,57.07747172279057],[-127.2137627246682,57.077646230918994],[-127.21367636018836,57.07782075807271],[-127.21358994301868,57.07799416487811],[-127.21350357697204,57.07816869196098],[-127.21342026291484,57.0783420698072],[-127.2133411474502,57.07851765014362],[-127.21326619523964,57.07869431251152],[-127.21319436592354,57.07887206659719],[-127.21312258783597,57.07905094097991],[-127.21304869286266,57.07922871423356],[-127.21297064967413,57.07940540524725],[-127.21288632547292,57.07957991305128],[-127.21279467741311,57.07975112653286],[-127.21269263598454,57.079920195014346],[-127.21257910641094,57.080084887053935],[-127.21244673239698,57.08024190861643],[-127.21223613781133,57.08037387880162],[-127.21196916687086,57.080486198210046],[-127.2116907424097,57.08059526108768],[-127.21144368992088,57.08071748152646],[-127.21122177858777,57.08085067598029],[-127.21100508914952,57.080986063162364],[-127.2107904979257,57.081122551301746],[-127.21057902888079,57.08126013090443],[-127.21036967458149,57.08139881133564],[-127.2101613780335,57.081538602413595],[-127.2099530799698,57.08167839317299],[-127.20974373989905,57.08181819326507],[-127.20952711034883,57.081955819027534],[-127.20930631501254,57.08209236225775],[-127.20908551810696,57.08222890512746],[-127.20886789515032,57.082367659799985],[-127.20865752338118,57.08250746770919],[-127.2084586023776,57.082650531576085],[-127.2082752777737,57.08279681304888],[-127.20811070870808,57.08294852452983],[-127.20796905963931,57.0831067483218],[-127.20785564131722,57.08327591851611],[-127.20776722672979,57.08345270267939],[-127.2076985386315,57.08363266653732],[-127.20764850151323,57.083814699284],[-127.2076128455717,57.0839943572806],[-127.20759457049925,57.084168250369224],[-127.20770721320604,57.08433532731599],[-127.20786217318351,57.084502012317884],[-127.20793477757458,57.084676184698594],[-127.20796935486355,57.084856313254456],[-127.2079770569122,57.08503556993153],[-127.20795585392706,57.085215094329314],[-127.20794500927754,57.085395643616884],[-127.2079753874535,57.08557356955761],[-127.20801714862368,57.08575251089429],[-127.20807230368159,57.08593020739141],[-127.20814291750601,57.08610663990753],[-127.2082340215675,57.086278399408734],[-127.20834977857581,57.08644544728977],[-127.208485037471,57.08660895201145],[-127.20862954530597,57.08677125012125],[-127.20877306550872,57.08693467805549],[-127.20890629843984,57.08709932200739],[-127.20904064368618,57.08726619714764],[-127.20912430663694,57.087463803659226],[-127.20915705665234,57.08761817081651],[-127.20921492058598,57.087783513202936],[-127.20914822578187,57.08796121829271],[-127.20907641187137,57.08814009161791],[-127.2090479419242,57.088318563180835],[-127.2090897275931,57.088497504374985],[-127.20910156527165,57.08867672317781],[-127.20902966275109,57.08885335576946],[-127.20893601632018,57.08902794825022],[-127.20897942595263,57.08922592818726],[-127.20907276497402,57.08936964678008],[-127.20910479314621,57.08953410810282],[-127.20913143817558,57.089724397833855],[-127.20907495831284,57.08989864600368],[-127.20896685516232,57.090073372609446],[-127.20891457441307,57.09024982343493],[-127.20894393671342,57.090427759264436],[-127.20900533285953,57.090606519033656],[-127.2090594939949,57.09078534585902],[-127.20907129696604,57.09096344448209],[-127.20902311015169,57.09113873670846],[-127.20894085902462,57.09131434462311],[-127.20884613017152,57.091487826515596],[-127.20876387748785,57.09166343436299],[-127.20871674789731,57.09183983755344],[-127.20871345812664,57.09203040503801],[-127.20870521072719,57.09219523994146],[-127.20869657371121,57.09238025298569],[-127.20868594041437,57.09260002954795],[-127.20859777327139,57.09275215526273],[-127.20859669068642,57.09291468224897],[-127.20852894331546,57.09309239732267],[-127.20847462661833,57.093269987967254],[-127.20844812591966,57.09344507933647],[-127.20847011135884,57.093618600788595],[-127.20858380988362,57.093785668629245],[-127.20873672792855,57.09395125222595],[-127.20886802571921,57.09411927762733],[-127.20897770299693,57.09428974489959],[-127.20909255237581,57.094460164176326],[-127.2092012425846,57.094631761277036],[-127.20929551288985,57.09480461278746],[-127.20936604279761,57.09497768432728],[-127.20940466058639,57.095154414110006],[-127.209422697367,57.095333576313074],[-127.20942117719578,57.09551516145046],[-127.20937130918402,57.09570279882917],[-127.20930382513279,57.095855854406956],[-127.2092738663246,57.096052273721284],[-127.20923289413548,57.09622749974917],[-127.20912869272414,57.096395466109534],[-127.20899757147322,57.09656144023426],[-127.20885185112604,57.09672306626371],[-127.20869890934269,57.09688475903843],[-127.20854909120138,57.09704754351673],[-127.2084054324175,57.097209149973864],[-127.20825141065262,57.097369731437986],[-127.20808909110141,57.097529268748694],[-127.20792673495751,57.09768768539176],[-127.2077695677765,57.09784717461619],[-127.2076238373831,57.09800879942466],[-127.20749780528627,57.09817248340064],[-127.2073966807825,57.09834042001997],[-127.20732775295629,57.09851366270811],[-127.20728788066393,57.09869111977578],[-127.20726774309809,57.09887175668636],[-127.20726109259853,57.09905451044865],[-127.20725857284492,57.099237226014466],[-127.2072518870124,57.09941885933905],[-127.20723277334602,57.09959948686097],[-127.20719182328425,57.09977583318435],[-127.20710829296742,57.099944727755876],[-127.2070377282651,57.1000003003325],[-127.2069188251798,57.10009554841789],[-127.20670232888102,57.10024101471023],[-127.20655850955282,57.100398137561726],[-127.20650609806611,57.10057122728027],[-127.20648791570856,57.100748483757705],[-127.20649158865344,57.10093114223893],[-127.20650352365686,57.10111372435146],[-127.20651129253616,57.101295224196605],[-127.20651282970626,57.10147566087317],[-127.20652571907154,57.101655992607654],[-127.20653761925506,57.10183745432535],[-127.20653499025399,57.10201680878241],[-127.20650127214631,57.10219308827612],[-127.20643340961918,57.1023674418389],[-127.20634070775527,57.10254090420401],[-127.20623864775258,57.10271221139544],[-127.20613662203606,57.102884639017084],[-127.2060377020817,57.10305703786793],[-127.20592527606505,57.1032273198437],[-127.20582527801392,57.10339860770807],[-127.2057677571413,57.10357398628123],[-127.2057485640533,57.10375237315149],[-127.20574700751352,57.10393283871237],[-127.20575683905513,57.10411431988782],[-127.20577080204451,57.10429576291303],[-127.20578266429084,57.10447610455744],[-127.20578626386131,57.10465652257271],[-127.20577639292227,57.10483594426247],[-127.20574577569344,57.10501219521557],[-127.20568825204059,57.1051875739595],[-127.2056018240992,57.105363219728],[-127.2054873940136,57.10553576167831],[-127.20534898741205,57.10570180010184],[-127.20518759138048,57.10585908416906],[-127.20500414350947,57.1060053635002],[-127.20479986065978,57.10614623084567],[-127.2045747426885,57.10628168610605],[-127.2043349165515,57.106409430995576],[-127.20408244804493,57.106529446371134],[-127.20382242318577,57.10663944360881],[-127.2035495267536,57.10673386759854],[-127.20324901942169,57.10680500844077],[-127.20293263943158,57.106863965911714],[-127.20261408735674,57.10691958017605],[-127.20230411344983,57.10698520197607],[-127.20199952179424,57.10705749835903],[-127.20169178690958,57.10712870215106],[-127.20138615178148,57.10720100669735],[-127.20108902423601,57.10728107793733],[-127.2008067068176,57.10737222038753],[-127.2005454670161,57.107476618122305],[-127.20030117301766,57.107594309271654],[-127.2000695879226,57.10772197044429],[-127.20000060932018,57.107762954105745],[-127.19984640484459,57.10785403722419],[-127.19962855172255,57.107991658710624],[-127.19941173824579,57.10812927027832],[-127.19919282232156,57.10826577998729],[-127.19896650748568,57.1083967532178],[-127.1987349830848,57.10852665308765],[-127.19849614819088,57.10865437804494],[-127.19824350678587,57.108769900338956],[-127.1979586861767,57.10884760974601],[-127.19762585127111,57.108876443198795],[-127.19723206267716,57.108905834967125],[-127.19684896414677,57.108913831995885],[-127.19674275307781,57.109020162714124],[-127.19697675121265,57.10906845357365],[-127.1973873209713,57.109080378851054],[-127.1977591091156,57.10910722938033],[-127.19808671654548,57.10914233015805],[-127.19841342324706,57.109181921659406],[-127.19873219824404,57.10923167255754],[-127.19903393016607,57.10929839152603],[-127.19932499220653,57.10938762421097],[-127.19957643348457,57.10953101968694],[-127.19983171190118,57.109665412891935],[-127.20000044732954,57.10974119801197],[-127.20004342197008,57.10976097760198],[-127.20012598326959,57.10992273707645],[-127.20012966185325,57.11010651745166],[-127.20011695256134,57.1102949318167],[-127.20013922525338,57.11047854126428],[-127.20015243799631,57.11067007977648],[-127.20018514633182,57.11085695576713],[-127.20029345777715,57.11101623686413],[-127.20050181522606,57.111136489860755],[-127.20076640293148,57.111237171311934],[-127.20106671910905,57.111324073634215],[-127.2013812886888,57.11140411916828],[-127.20169165729808,57.11148196099963],[-127.2019967484748,57.11155648825037],[-127.20232615894113,57.111615099297445],[-127.20265852084985,57.11166919904793],[-127.20297260500129,57.11173355381022],[-127.20324502966314,57.11182070829981],[-127.20345550193942,57.111942058102194],[-127.20361620760518,57.11209076622816],[-127.20374230121861,57.112256605716006],[-127.20385013365791,57.112432700933546],[-127.2039529340754,57.11261332579541],[-127.2040669152142,57.11278824336038],[-127.20420434997283,57.11295285708263],[-127.20438561882483,57.11309801225601],[-127.20463414155833,57.11321340515203],[-127.20492351320067,57.113312729002814],[-127.20521184499152,57.1134120618346],[-127.20545938260565,57.11352858314645],[-127.20564263818962,57.113671476710444],[-127.2057923040277,57.11383037186819],[-127.20591443768774,57.11400072948192],[-127.20601197261841,57.11417803923398],[-127.20608778621421,57.11435442882831],[-127.20615427553787,57.11452978374535],[-127.20622285038642,57.11470624020813],[-127.20629250246603,57.114883807532124],[-127.20636211997555,57.11506025434342],[-127.20643177334165,57.11523782163916],[-127.20650043769832,57.11541651889259],[-127.20656802606563,57.11559410526025],[-127.20663254257433,57.11577284084243],[-127.20669396849274,57.11595160499206],[-127.20675122712893,57.11612928684165],[-127.20680438887717,57.11630812739526],[-127.20685239355379,57.11648701563443],[-127.20689312298221,57.11666485032245],[-127.20692765373194,57.11684274233683],[-127.20695388412183,57.117019590287995],[-127.20697290942351,57.117197625704314],[-127.20698154905999,57.11737351551837],[-127.20697984029434,57.117549501037935],[-127.20695434094985,57.11772458572026],[-127.20690091788498,57.11789880776079],[-127.20682575344662,57.118072109966974],[-127.20673405690856,57.11824556497041],[-127.20662992569429,57.118418014033786],[-127.20651749253693,57.118589418929844],[-127.20640198564537,57.1187619729739],[-127.20628856071195,57.11893450768986],[-127.20618131765,57.119106985201526],[-127.20608449299463,57.11928160803946],[-127.2060031226832,57.11945496722317],[-127.20589285984883,57.11959721008724],[-127.20587082887327,57.11981709583827],[-127.20586798429775,57.11998972961778],[-127.20587679552433,57.12017122237953],[-127.20582965286572,57.12034874868999],[-127.20577009179584,57.12052526887293],[-127.20570634532447,57.12070070687267],[-127.2056395418806,57.120877293918575],[-127.20556961102245,57.121052788998654],[-127.20549966299215,57.12122828421651],[-127.20542973085497,57.12140377926693],[-127.205360858307,57.121580385342824],[-127.2052940165532,57.12175585182138],[-127.20522927600277,57.12193241971455],[-127.20516660149313,57.122108968521054],[-127.20510491627893,57.12228438735356],[-127.20504328221685,57.12246092653203],[-127.2049816310545,57.1226374658567],[-127.20491999585838,57.12281400502267],[-127.20485938517055,57.12299053472251],[-127.20479773231163,57.12316707402905],[-127.2047350538008,57.12334362278849],[-127.20467237471337,57.12352017154064],[-127.20460969504927,57.12369672028568],[-127.20454494807682,57.12387328809104],[-127.20448226724989,57.124049836820646],[-127.20442269423947,57.1242263568683],[-127.20436418095893,57.124403987962474],[-127.20430669225468,57.12458160959797],[-127.20424921955252,57.12475923107873],[-127.20418966299495,57.12493687177193],[-127.20412904559535,57.12511340140797],[-127.20406533569299,57.125289959552546],[-127.20399743987939,57.12546543545164],[-127.20392542632509,57.12564094930133],[-127.20384715991645,57.12581539994805],[-127.20376263849558,57.125987666567084],[-127.20366979721392,57.126158889012665],[-127.2035655253302,57.126327975107344],[-127.20344674927293,57.12649607398367],[-127.20331650717971,57.12666091593499],[-127.20317587784334,57.1268247326501],[-127.20302584913894,57.12698527332564],[-127.202870660175,57.1271458613746],[-127.20271022411272,57.12730425591154],[-127.20254764957122,57.127460428286234],[-127.2023840319716,57.12761661006914],[-127.20221832752779,57.12777169003349],[-127.20205053825791,57.12792678898559],[-127.20188069720774,57.128081906613254],[-127.2017087010994,57.12823480219113],[-127.20153364650963,57.12838884652458],[-127.20135645336839,57.12854066863586],[-127.2011771918322,57.128692509538155],[-127.20099476650293,57.12884213762963],[-127.2008091959041,57.12899067356002],[-127.20062048001508,57.129138117315605],[-127.20042860029763,57.129283348218436],[-127.2002325500131,57.12942749634166],[-127.2000217836713,57.12956393357321],[-127.2000004384347,57.12957533807739],[-127.19978375881425,57.12968829174435],[-127.19952999257762,57.12980494824202],[-127.19927311593985,57.129921632809015],[-127.19902667811432,57.1300415835181],[-127.19880336163729,57.13017365067424],[-127.19859889236533,57.130313390293495],[-127.19840385522178,57.130457526369796],[-127.19821616469433,57.130604957249005],[-127.19803165162246,57.130754600379426],[-127.19784922266875,57.13090534496958],[-127.19766680881872,57.13105608916999],[-127.19748121463186,57.13120462061351],[-127.19728830582721,57.131350977191346],[-127.19706522045358,57.13149088510499],[-127.19682962567919,57.13162754478154],[-127.19661273850784,57.131767395113776],[-127.19644577626116,57.13191687519794],[-127.19635368527899,57.132080240035684],[-127.19630528392422,57.13225217127612],[-127.19628497223594,57.13242944937669],[-127.19628335348683,57.13260991876487],[-127.19629632658318,57.13279361701409],[-127.19631755217054,57.13297723968868],[-127.19633778755029,57.133161992294085],[-127.196352758462,57.1333434306419],[-127.19637902127242,57.13352252389372],[-127.19643422603956,57.13370135201608],[-127.19644494170345,57.13387946690525],[-127.19640911689793,57.13405688735937],[-127.19635986262027,57.1342344308502],[-127.19630025483119,57.134412069183895],[-127.19623751885312,57.134588615324944],[-127.19617478229775,57.13476516145883],[-127.19611518936594,57.13494279962616],[-127.19603273379074,57.13511728465258],[-127.19590453286045,57.135283221843096],[-127.19573779701598,57.13544054503786],[-127.19552698166143,57.13557697562012],[-127.1952721215805,57.13569363388883],[-127.1949908161135,57.13579147938596],[-127.1946899074082,57.135856999291555],[-127.19426924270918,57.135895592705324],[-127.19394261011811,57.13586607487756],[-127.1936152663597,57.13584665027818],[-127.19327295218959,57.135877799342616],[-127.19296350327562,57.13586829714706],[-127.19273611523684,57.135738115188815],[-127.19249941730766,57.135608017870055],[-127.19219528320797,57.13553681930218],[-127.1918681844665,57.135491608873465],[-127.19153905599258,57.13548116209801],[-127.19121382066126,57.13549645823289],[-127.19088898420432,57.13552407912351],[-127.1905622720042,57.135558441322644],[-127.1902356452825,57.13559504359453],[-127.18990783697079,57.13562717246399],[-127.18958081032467,57.135651447530456],[-127.18925155876032,57.13567013785257],[-127.18892322812138,57.135685456448975],[-127.18859276041468,57.13569855199478],[-127.18826331790162,57.13571163737477],[-127.18793392639807,57.13572584229406],[-127.18760458748295,57.135742287574615],[-127.18727635959738,57.13576096359426],[-127.18694820072528,57.135781879831086],[-127.18662014546625,57.13580615680689],[-127.18628995311266,57.13582821069566],[-127.1859718320332,57.13587257084465],[-127.18570931585649,57.135976950526334],[-127.18546184055556,57.136099126524435],[-127.18520694640637,57.13621576519698],[-127.18493188289723,57.136315773824926],[-127.18464959026385,57.136415847441235],[-127.18436413411015,57.13651370745799],[-127.18407108640045,57.136600427312565],[-127.18376917987108,57.136668172588635],[-127.18345820753046,57.13671022008628],[-127.18313217500528,57.136733349061274],[-127.18279837959702,57.13673973498834],[-127.18246008584572,57.1367338315972],[-127.18212453981673,57.13671669410569],[-127.18179695317066,57.136689396214265],[-127.18148728372196,57.13663951871597],[-127.1811929470334,57.13655027259264],[-127.18089953368371,57.13645765497067],[-127.18059172780208,57.13640103352598],[-127.18026827977576,57.13637369442975],[-127.17993676932112,57.13635315238578],[-127.17960244198825,57.13634160162216],[-127.1792673139783,57.1363379030753],[-127.17893456334525,57.136344269717775],[-127.17860731710788,57.13636179418013],[-127.1782824642549,57.136389383735],[-127.17795166736876,57.13642599276295],[-127.17762225578025,57.13647379679833],[-127.17730256768525,57.13653496235481],[-127.17700302654374,57.13661275806863],[-127.17673091075595,57.136708239335015],[-127.17648832195528,57.13682250822988],[-127.1762647853753,57.13695117592508],[-127.17605399553389,57.13709093679839],[-127.17585270554355,57.137237336809726],[-127.17565459217376,57.137385949586935],[-127.17545755361256,57.13753567322731],[-127.1752541915232,57.1376820909718],[-127.17504129216663,57.137820748364796],[-127.17481357559475,57.13794833034701],[-127.17456680391427,57.13806151244633],[-127.17429680790283,57.138159211202904],[-127.17400673155181,57.13824251904486],[-127.17370189046768,57.13831699224231],[-127.17338852044125,57.13838257466956],[-127.17307086068423,57.13844371152875],[-127.17275424195273,57.13850483826173],[-127.1724428335752,57.13856703828369],[-127.1721325181618,57.13863146941738],[-127.17182020261451,57.138698159421345],[-127.17150467373165,57.13876151499094],[-127.1711879814643,57.138820396886764],[-127.17087002331874,57.13887144351646],[-127.17055068037297,57.138911293434745],[-127.17022988454013,57.13893770557462],[-127.16990659301283,57.13894956843392],[-127.16957873967688,57.13894802133268],[-127.16924741761979,57.138934175287964],[-127.1689147630083,57.13891025282649],[-127.16858392089858,57.138878467469496],[-127.16825601832463,57.1388410508192],[-127.16793208092885,57.138797993728176],[-127.16761627804765,57.13875037978838],[-127.16731110563504,57.138678011754756],[-127.16701571016125,57.138587622335315],[-127.16672335749992,57.13849496341929],[-127.16642938162258,57.1384168891903],[-127.16612402358219,57.13837254091867],[-127.16578634446215,57.13842150953876],[-127.16556755613391,57.13846941634355],[-127.16541253075265,57.13871065789634],[-127.16548070562663,57.13887817449032],[-127.16561820444942,57.13904731408927],[-127.16579770697611,57.139203749505086],[-127.1659974606038,57.13934543308746],[-127.16621353551326,57.13948024566239],[-127.16644088978958,57.139611594675756],[-127.16667234675509,57.13974178583987],[-127.1669027797559,57.1398719857686],[-127.16712702901454,57.14000336140763],[-127.16734926282206,57.14013587553549],[-127.16757255781542,57.14026950066064],[-127.16779578614171,57.140400884357675],[-127.16802111776194,57.14053336972605],[-127.1682484503431,57.14066359516577],[-127.16847781799694,57.14079268119556],[-127.16871838040251,57.140916062505205],[-127.16896815472039,57.141035998448245],[-127.16922097208366,57.14115366502708],[-127.16946767388046,57.141274748403376],[-127.1696990486483,57.14140157277417],[-127.16990795363985,57.14153756470614],[-127.17011200673505,57.14168368732301],[-127.17031108894038,57.141836579208125],[-127.1704907262285,57.14199637008915],[-127.17063839180959,57.142158688966],[-127.17073757756778,57.14232480474174],[-127.17077478350495,57.1424937176873],[-127.17074387281198,57.14266660368968],[-127.17066656553091,57.14284438887528],[-127.17056550398657,57.143023507741326],[-127.17046755145431,57.14320259868626],[-127.17039437741131,57.143380346724435],[-127.17037593952085,57.14355536265233],[-127.17051161403495,57.14373123940447],[-127.17068326331335,57.14390006861763],[-127.17068581232668,57.14405135897047],[-127.17044129639278,57.144172358980505],[-127.17014605652682,57.14429157123833],[-127.17001412439224,57.1444418245358],[-127.17000393917876,57.144616766611584],[-127.17004269902998,57.144802478711256],[-127.1700825014711,57.14498818148965],[-127.17012105697722,57.14516717041829],[-127.17016998655554,57.145347187273956],[-127.17017437977321,57.14552536141356],[-127.17012594666964,57.14570064625167],[-127.170064114006,57.14587717194895],[-127.16999395827439,57.146052651338806],[-127.16991761458505,57.1462281861253],[-127.16983915151435,57.14640261902254],[-127.16976176416216,57.14657816309689],[-127.16968958849978,57.146754781318414],[-127.16962667569065,57.14693019574435],[-127.169572136816,57.14710889771047],[-127.16952272501945,57.14728643293255],[-127.16947649140089,57.14746618138656],[-127.16942812098833,57.14764370728967],[-127.16937458830195,57.14782127940246],[-127.16931273221759,57.147997805170405],[-127.16923733897555,57.14817108956031],[-127.16914017029933,57.14834232711395],[-127.1689900174508,57.1485061928302],[-127.16880969706828,57.14866472407294],[-127.16863559602099,57.148823199438986],[-127.16849984757339,57.14898469407929],[-127.16843661842543,57.14915002339097],[-127.16845531018116,57.14932246593107],[-127.16853206285194,57.14949887256197],[-127.16863879598064,57.14967501100382],[-127.16875173453677,57.149851093877494],[-127.16885009456848,57.15002394458566],[-127.16894842133306,57.15019567470437],[-127.16905187699041,57.15036623804193],[-127.16915948648501,57.15053676415546],[-127.1692670462275,57.15070616981226],[-127.16937465763247,57.150876695791794],[-127.16948015106551,57.15104611982725],[-127.16954622906567,57.15121141326964],[-127.16968091864531,57.1513884217551],[-127.16968419900795,57.15152961879061],[-127.1692833180348,57.15161278707523],[-127.16898143799912,57.151686101617635],[-127.16871035774456,57.151786040219335],[-127.1684594790643,57.151903731100866],[-127.16821177778448,57.15202363477644],[-127.1679587936207,57.1521402226709],[-127.16770700438158,57.15226240361568],[-127.16745629006653,57.152385695311786],[-127.16719589994383,57.15249674367013],[-127.16691826344807,57.152585528643556],[-127.16661375753097,57.152640927597844],[-127.16628351098312,57.15266629280491],[-127.16594227518728,57.15267045919359],[-127.1656079801258,57.15266447517157],[-127.16527826882383,57.15263939506088],[-127.16494697090724,57.15259639476204],[-127.16461661406747,57.152550022710486],[-127.16429187929113,57.15251817070488],[-127.16397631996375,57.152516498940614],[-127.16367051245689,57.152562935845026],[-127.1633763888861,57.152654101746506],[-127.1631016089215,57.152768632505364],[-127.16284966417219,57.15288632198156],[-127.16262079170704,57.153013893263214],[-127.1624045828707,57.15315031823246],[-127.16219262759496,57.15329006754138],[-127.16197644963151,57.15342761237244],[-127.16174970727636,57.15355740487006],[-127.16151775027494,57.15368612248545],[-127.1612836554842,57.15381261699937],[-127.16104959307546,57.15394023164869],[-127.16081759748928,57.154067827515036],[-127.16059086479312,57.1541987387539],[-127.16036313853185,57.15433077926651],[-127.16012506869302,57.154462911220186],[-127.159911029447,57.15460267532983],[-127.1597646783758,57.15475753013319],[-127.15967984473215,57.15492865148063],[-127.15962415441763,57.155105118373974],[-127.15958620653369,57.15528703203358],[-127.15955449754287,57.15547001118369],[-127.15951651508449,57.155650804327955],[-127.15946188281522,57.15582838268777],[-127.1593780879681,57.1559994947255],[-127.15925160895843,57.15616201864861],[-127.15907736663604,57.15631824107164],[-127.15886760301207,57.15646356984297],[-127.158635720333,57.15659564425838],[-127.15839095099332,57.1567121406592],[-127.15809324857874,57.156788755286875],[-127.15777021508859,57.15684878098369],[-127.1574746465579,57.156927616974585],[-127.15723828101264,57.15704852013844],[-127.15703568700246,57.157191540764444],[-127.15683946618724,57.157340108886764],[-127.15662425495007,57.15747651550214],[-127.1564038114348,57.157610726374706],[-127.15618232381176,57.157744946113425],[-127.1559597582889,57.15787805416564],[-127.15573507162523,57.1580089389058],[-127.15550727224978,57.15813985078368],[-127.15527523281581,57.15826743720983],[-127.15503688472512,57.15839171644536],[-127.15477239905192,57.15850725945051],[-127.1544880319138,57.158615131639436],[-127.15420362944539,57.158721882669674],[-127.15393797804748,57.1588329508824],[-127.15370887186333,57.158954904375506],[-127.15353817565138,57.15909315457286],[-127.15345512017161,57.15925528963225],[-127.15344502402213,57.15943583509034],[-127.1534673040267,57.15962618242478],[-127.15347924078326,57.159816621081994],[-127.15344119166643,57.15999629249721],[-127.15332819662851,57.16016093351365],[-127.15318813873083,57.160320209022196],[-127.15303043634566,57.16047739837522],[-127.15285710777732,57.16063136285336],[-127.15267232406146,57.160783186450296],[-127.15247921304972,57.16093284153177],[-127.15228187910247,57.16108029187022],[-127.15208242407581,57.16122551891633],[-127.15188288365827,57.16136850471688],[-127.15166769949657,57.16150714468346],[-127.15143786396347,57.161640309144786],[-127.15120175314173,57.16177128678286],[-127.15096353826087,57.16190116167522],[-127.1507305357099,57.162032111084635],[-127.15050792637706,57.16216521027847],[-127.1503020171615,57.162302645495856],[-127.15012005789154,57.16244547386512],[-127.14997774142508,57.16259916164762],[-127.14991671407819,57.16277230933885],[-127.1499077774834,57.16295732803726],[-127.14991651879119,57.16314555376556],[-127.14991161905165,57.16332717444832],[-127.14992434675614,57.163509760907175],[-127.1499515739736,57.163693340661865],[-127.14997570635555,57.16387694766995],[-127.14997798909074,57.16405626355802],[-127.14993971769556,57.164229211198176],[-127.14984534923826,57.16439480644372],[-127.14970325966308,57.164556338034245],[-127.14952582857279,57.164712576074564],[-127.14932543582442,57.164862290699645],[-127.14911032356775,57.16500428848392],[-127.14888965959453,57.16513400536138],[-127.14861631231541,57.16523168020698],[-127.14831351128213,57.16531392135117],[-127.14804549325392,57.16541715242216],[-127.14768800340582,57.16550435587594],[-127.14742051170927,57.16552127554166],[-127.14709327029108,57.16554768587361],[-127.14676831509651,57.16558080042565],[-127.14644347682724,57.16561839654129],[-127.14611655196042,57.16565488929245],[-127.14579285567983,57.16569583631864],[-127.14547566709244,57.16574681315568],[-127.14517129345644,57.16581112713761],[-127.14489265064071,57.16590547796802],[-127.14463119439067,57.166020973839906],[-127.14436866032015,57.16613535777174],[-127.14408464819056,57.166223028774766],[-127.14377695599909,57.16628064342676],[-127.14345959277786,57.166326012605516],[-127.14313578775267,57.16636359139901],[-127.14280771036796,57.16639672334155],[-127.14247853937549,57.16642762231583],[-127.14215152051251,57.166461864200514],[-127.14182771305789,57.166499439757374],[-127.14150614086154,57.16654259923493],[-127.14118357504174,57.1665868874417],[-127.14086203473425,57.1666311658961],[-127.14053931752062,57.16667097042561],[-127.14021540673413,57.16670518031797],[-127.13989016923696,57.166729313327764],[-127.13954933837518,57.16675133977916],[-127.13919902150886,57.16676784377118],[-127.13885745755009,57.166765216116445],[-127.13854503823686,57.166733191616565],[-127.13835044020227,57.16669677772522],[-127.1380741689592,57.166523210301804],[-127.1378945186174,57.166362251376725],[-127.13770861283938,57.166200225840164],[-127.13748628047482,57.16606541745813],[-127.13723146019217,57.16595218752423],[-127.13696240740992,57.16584692686199],[-127.13668623915217,57.16574621094164],[-127.13641103214458,57.1656432444046],[-127.13614809118891,57.165534566444684],[-127.13590342420066,57.16541452068559],[-127.13569007299928,57.16526842289415],[-127.13549491286123,57.16510759573104],[-127.13530089667621,57.1649501209139],[-127.13508998427517,57.164816330365696],[-127.1348461544312,57.16472429665523],[-127.13455437843496,57.1646898418982],[-127.13422564492302,57.164700541085764],[-127.13387810944612,57.16474054457076],[-127.13353285755652,57.1647872523992],[-127.13320390821274,57.164825972036475],[-127.13287907959564,57.16486353427699],[-127.13255540896779,57.164905569055826],[-127.13223499829455,57.16495317901816],[-127.13192104192149,57.165008578214575],[-127.13161464857863,57.16507511962978],[-127.13132336539324,57.16516282560368],[-127.13104408021243,57.16527172317042],[-127.1307690802121,57.16538506644591],[-127.13049166258904,57.165487221588435],[-127.13020308908344,57.16556145145242],[-127.12989675681797,57.16559548373933],[-127.12957720102987,57.16560160843919],[-127.12924675538599,57.16558989291106],[-127.12891169350499,57.16556140373469],[-127.1285773284786,57.16552169923004],[-127.12824687132351,57.165474114224224],[-127.12792455914995,57.165421974719585],[-127.12761449709124,57.16536412451507],[-127.1273123495248,57.16529387602438],[-127.1270150708112,57.165213497259025],[-127.12672077337865,57.165128608752724],[-127.12642644432516,57.16504259902805],[-127.12613118912242,57.164959959171455],[-127.12583095190638,57.164884086645955],[-127.12552379516123,57.164819481477714],[-127.12520874187996,57.16476727286957],[-127.12489173544941,57.16471956369836],[-127.12457176610803,57.164676362636975],[-127.12424982710077,57.16463654027441],[-127.12392588549798,57.164598976034696],[-127.12360098400616,57.164563660938136],[-127.12327507318747,57.16452947455824],[-127.12294919577204,57.164496407928034],[-127.1226233189187,57.164463340486094],[-127.12229740982453,57.16442915167106],[-127.12173265337717,57.1643656286336],[-127.12143397223615,57.164448892496615],[-127.12113662747743,57.16454223179434],[-127.12083944507349,57.164641173232496],[-127.12054222838387,57.16473899344011],[-127.12024378750377,57.164830098400785],[-127.119945034042,57.164911117765534],[-127.11964373599255,57.164975345595224],[-127.1193407071038,57.16501604984643],[-127.11903381352036,57.16503100709371],[-127.11871699623035,57.16502475254811],[-127.11839147811902,57.16500400073412],[-127.11806037132838,57.16496872496788],[-127.11772885655694,57.164920001748456],[-127.11739913422196,57.164861174791774],[-127.11707527678031,57.164791088465364],[-127.11676155346305,57.164713068863904],[-127.11646203660845,57.16462596043345],[-127.11617995248139,57.16453309824681],[-127.11591940638685,57.16443332652408],[-127.11567707438158,57.16431994872168],[-127.1154519795181,57.16419409412429],[-127.11523900641211,57.16405804815751],[-127.11503515775173,57.16391519897894],[-127.11483834806708,57.16376556442282],[-127.11464460243985,57.163614782627256],[-127.11445183592086,57.16346175054471],[-127.1142560735662,57.16331210627108],[-127.11405418719285,57.163165876457164],[-127.11384420614309,57.16302531954875],[-127.11364119904123,57.16287573618716],[-127.11344417233275,57.16271825571264],[-127.1132430745947,57.16256305133012],[-127.11302891303166,57.16242140800011],[-127.11279272781147,57.1623046103352],[-127.11252446651787,57.16222395217035],[-127.11222916298843,57.162173786262464],[-127.11191683584548,57.16214281879352],[-127.11159150832268,57.16212765290067],[-127.1112571553182,57.16212265049161],[-127.11091576455378,57.162124432082884],[-127.11057131123351,57.1621273596456],[-127.11022781910826,57.16212803645815],[-127.10988725976249,57.16212308327015],[-127.10955466812385,57.16210685316878],[-127.10922183328442,57.16208277842218],[-127.10887466319866,57.16206330781675],[-127.10852434953927,57.162042742119155],[-127.10818001603943,57.16201427891363],[-127.10785287130435,57.161972219046305],[-127.10755208833056,57.16191088072443],[-127.10728885934114,57.1618245651201],[-127.1070662637433,57.161712125544405],[-127.10687205052085,57.161579270159265],[-127.10670011031513,57.16142941334442],[-127.10654443075174,57.16126933112081],[-127.10640090651711,57.161100179142295],[-127.10626245021956,57.16092762162907],[-127.1061229367328,57.160753952113986],[-127.10597941628656,57.160584799737876],[-127.10582371084288,57.16042359619491],[-127.10566698061322,57.16026240116727],[-127.10552038495545,57.160094395235824],[-127.10537480091365,57.15992525978001],[-127.10522110480349,57.159761796976476],[-127.10504911460956,57.15960969707016],[-127.10485071704997,57.159474632753565],[-127.10461573008988,57.15936229414184],[-127.10433991943687,57.159269354311],[-127.1040335638567,57.15919348448985],[-127.10370801688242,57.15913346773391],[-127.10337557698236,57.15908583755225],[-127.10304655500431,57.159049386022026],[-127.1027241107133,57.159025207336086],[-127.10239599194327,57.15902012990077],[-127.10206413894508,57.159028533138176],[-127.1017304259575,57.15904479704792],[-127.10139685798659,57.159065542215096],[-127.10106632004242,57.15908401933101],[-127.10073464266024,57.159099142706204],[-127.10040091288523,57.15911428252007],[-127.10006830535927,57.15913277453224],[-127.09974012413178,57.15916131594396],[-127.09942053845596,57.15920099254414],[-127.09911283556441,57.15925850174504],[-127.09881486660049,57.159330499199],[-127.09852449837554,57.159414761238516],[-127.09823951702552,57.15950682318783],[-127.09795775744439,57.15960334077412],[-127.09767607715331,57.15970209874831],[-127.09739431471915,57.159798615133944],[-127.09710932780303,57.15989067464524],[-127.09682751499682,57.15998494855554],[-127.09654571630173,57.16008034256796],[-127.09625852836142,57.160167935344724],[-127.09595570368387,57.160251175289],[-127.09563579737814,57.16035249106832],[-127.09531449460809,57.160441488597705],[-127.0950043713748,57.16048667916521],[-127.09472104991558,57.16045654866555],[-127.0944540101669,57.16038032705094],[-127.09419673960996,57.16028384811818],[-127.09394420288571,57.16017163741359],[-127.0936954369618,57.160047065527905],[-127.09344856619512,57.15991575234302],[-127.09319957990077,57.15978333558397],[-127.09294756441376,57.15965318537653],[-127.09268854197516,57.15953093912142],[-127.09242259171916,57.159419958607096],[-127.09214464575986,57.159323648635905],[-127.09185560230384,57.15923751829639],[-127.09155748263208,57.15915930896555],[-127.09125128079121,57.159087891446944],[-127.09093909722567,57.15902436897758],[-127.09062290483152,57.158965362554305],[-127.09030587852833,57.15891308731824],[-127.08998899581054,57.15886641427741],[-127.08966815229749,57.158825377655695],[-127.08934432553541,57.158788848443336],[-127.08901958408508,57.158756809378076],[-127.08869285469392,57.1587270277332],[-127.08836511501033,57.1586983745206],[-127.08803737581654,57.15866972048678],[-127.087710631381,57.158639936526],[-127.08738486650184,57.158607901942744],[-127.08706110728801,57.15857360820922],[-127.08674317351323,57.15852581528018],[-127.08644003344928,57.158452119518344],[-127.0861309577275,57.158388559864775],[-127.08581591576724,57.15833289486983],[-127.08549992729316,57.15828059947466],[-127.0851849022999,57.158226053665906],[-127.08487480443698,57.1581624995728],[-127.08456766035088,57.15809331609732],[-127.08427965409047,57.15800603986332],[-127.08400266983413,57.15790634246882],[-127.08371539214866,57.157807850700756],[-127.08342911030925,57.157708229236185],[-127.08315094612,57.15760293573873],[-127.08289121099712,57.157490763984214],[-127.08265701017115,57.15736717190603],[-127.08245764543724,57.157230961764135],[-127.08228588339841,57.157083314457466],[-127.08212634437406,57.15692884076913],[-127.08197909153824,57.15676978187644],[-127.08184101368609,57.15660616357975],[-127.08171320145449,57.15643909770712],[-127.081592527118,57.15626861017836],[-127.08147905381988,57.15609694214369],[-127.08137174043769,57.15592298141167],[-127.08126858009321,57.155750107082014],[-127.08116954263016,57.15557607776183],[-127.08107262118848,57.15540427254063],[-127.08097985412302,57.155232432908456],[-127.08089015073615,57.15505944707094],[-127.08080561103823,57.15488641848924],[-127.08072312552298,57.15471225206657],[-127.0806437351472,57.15453806002271],[-127.08056743986894,57.154363842363345],[-127.08049319868243,57.15418848687758],[-127.08041998410843,57.15401312288931],[-127.08034883860905,57.15383774178084],[-127.08027766219435,57.15366124009379],[-127.08020651799855,57.15348585895384],[-127.08013537445345,57.15331047779808],[-127.08006318910189,57.1531351052438],[-127.07998994694796,57.15295862059006],[-127.07991574267672,57.15278438552211],[-127.0798394226416,57.15260904710345],[-127.07976004063306,57.152434854796],[-127.07967756513841,57.1522606880318],[-127.07960522613074,57.15207971255348],[-127.07953797220222,57.15189533258333],[-127.07945941467531,57.15171328764317],[-127.07935734822443,57.15154152429637],[-127.07921645850753,57.151386893915294],[-127.07902239405226,57.15125399818139],[-127.07878636463896,57.15113714018911],[-127.07851860212531,57.15103175196064],[-127.07822630562951,57.15093665306578],[-127.07791882196965,57.150852887044245],[-127.07760537026896,57.150778136105664],[-127.07729215667037,57.15071122821047],[-127.07698426381403,57.15064987981949],[-127.07667332423885,57.150590797462144],[-127.07636042828585,57.150535092953675],[-127.07604655373544,57.15048163740577],[-127.07572960088264,57.15042932727886],[-127.07541272828247,57.15037925737148],[-127.07509380315753,57.150330324413964],[-127.07477388441376,57.1502825196799],[-127.07445399786052,57.1502358347257],[-127.0741331176369,57.15019027798512],[-127.07381122717253,57.15014584958683],[-127.07349036328439,57.15010141196828],[-127.07316847431036,57.15005698198952],[-127.07284762845595,57.150012542659624],[-127.07252676679941,57.14996810267907],[-127.07220694825801,57.14992365335772],[-127.07188515621563,57.149882581908045],[-127.07156132797715,57.149842647192024],[-127.0712365684861,57.14980608177105],[-127.07091179306873,57.149769515679445],[-127.070586023729,57.149734077749414],[-127.07026028626134,57.149699759570055],[-127.06993451811603,57.14966432001746],[-127.06961078750454,57.1496277421595],[-127.06928702626892,57.14959004293836],[-127.0689652713845,57.14955008486987],[-127.06864552290186,57.149507867969014],[-127.06832771844395,57.149461151126346],[-127.0680119205239,57.14941217548112],[-127.06770111493611,57.14935643337848],[-127.06740324607824,57.149282651778954],[-127.06711630849117,57.149193088791094],[-127.06683640087486,57.14909562206714],[-127.06655744354474,57.14899478455457],[-127.06627550180386,57.14889845408929],[-127.06598455802155,57.14881340464878],[-127.06567959101896,57.148744160391956],[-127.06536963326998,57.14868168103051],[-127.06505866531029,57.14862032999626],[-127.06474673477042,57.14856122770949],[-127.0644347740929,57.14850100411825],[-127.06412385672807,57.148440771294865],[-127.06381289271417,57.148379417306636],[-127.06350395221168,57.1483158044861],[-127.06319897709882,57.14824655459964],[-127.06289796952456,57.148170546843964],[-127.0625969776433,57.14809565909612],[-127.06229205349901,57.148027527531845],[-127.06197815702657,57.1479717971647],[-127.06165626824576,57.147926218333346],[-127.06132960482718,57.14789524809354],[-127.06100241213284,57.147882214370505],[-127.06067243568036,57.147880410573755],[-127.06034157183448,57.1478842172174],[-127.06001080083048,57.14789138471195],[-127.05967892546455,57.14789631869758],[-127.0593489799029,57.147895632121426],[-127.05901789921316,57.1478915914719],[-127.05868781343712,57.14788642110771],[-127.05835762061128,57.1478767675225],[-127.05802738049573,57.14786599267355],[-127.05769299002408,57.14785412977966],[-127.0573554275659,57.14784005007729],[-127.0570449424866,57.14779548845976],[-127.0568140254238,57.14767294636616],[-127.05658992421083,57.14753465738052],[-127.05632327360546,57.147429215659606],[-127.05604748071272,57.147329451381246],[-127.05577674429587,57.147225162425265],[-127.05552533921485,57.14710950861488],[-127.055294276983,57.14698136108201],[-127.05507439729566,57.14684639797984],[-127.0548524676678,57.14671145108613],[-127.05462039860763,57.146584431378315],[-127.05436800627814,57.14646990423962],[-127.05409315871776,57.14636676593951],[-127.05380014811453,57.146279464955214],[-127.05349529904547,57.14621355421236],[-127.05317942373345,57.14616006058452],[-127.05285756061308,57.14611446013754],[-127.05253174675657,57.146075615601355],[-127.05220405000097,57.146043510289424],[-127.05187761117422,57.14601923970659],[-127.05155284361818,57.1460184918812],[-127.05123390118766,57.14607934095353],[-127.05093721615283,57.146160184779326],[-127.05065027389941,57.14625664091806],[-127.05036208966507,57.14634526073365],[-127.05004706392558,57.1463982297212],[-127.04971403484679,57.146360556958676],[-127.04957234992438,57.14620926515688],[-127.04948654669495,57.1460216583826],[-127.0493844150078,57.14584202842029],[-127.04919780358814,57.14571239256554],[-127.04891144205708,57.14564071872203],[-127.04857517381313,57.145597465099925],[-127.04823483162914,57.145556484928576],[-127.04792286009118,57.14549398092105],[-127.04761684862716,57.145422461909895],[-127.04731180282097,57.1453486928351],[-127.04700582424242,57.14527829296419],[-127.04669595550254,57.14521689002919],[-127.04637934729557,57.145173473292175],[-127.04605601321484,57.14514916339865],[-127.0457248048874,57.1451394862527],[-127.04539076138792,57.14513991823254],[-127.04505578376724,57.14514371925595],[-127.04472175676699,57.14514414939284],[-127.0443916355449,57.14513670179255],[-127.04406836403638,57.1451146281088],[-127.04375068690975,57.14507009277038],[-127.04343958598216,57.14500084636659],[-127.04314550687127,57.14491128877231],[-127.04287788576556,57.144805828008174],[-127.04263370399295,57.144687850756846],[-127.04240476733877,57.14455966415551],[-127.04218496342784,57.14442467947372],[-127.04197122648442,57.14428516282759],[-127.04175750763885,57.14414564571428],[-127.04154176676593,57.144008386013496],[-127.0413321563732,57.143867714693634],[-127.0411305895828,57.14371913331237],[-127.04093110876548,57.1435705350266],[-127.04072657317927,57.14342645996052],[-127.04050886337333,57.143292576792696],[-127.04027197464563,57.14317565810718],[-127.04000574993069,57.14308250949408],[-127.03970110183283,57.14302216953934],[-127.03937322936694,57.14298218817266],[-127.03903723800457,57.1429478745951],[-127.03871028768197,57.14290340102238],[-127.03840540037203,57.14283409354464],[-127.03811566722784,57.142751215278075],[-127.03783189626279,57.14265932257734],[-127.03755214105391,57.14256291416238],[-127.03727336882642,57.14246425575216],[-127.03699461178283,57.142366717449285],[-127.0367118279506,57.142272572940925],[-127.03642401912421,57.14218407172771],[-127.03613423463572,57.14209894797938],[-127.03584238364625,57.14201383999106],[-127.03554955228907,57.14193098074543],[-127.0352556965788,57.14184812897697],[-127.03496187237039,57.141766397116314],[-127.03466801919,57.14168354403602],[-127.03437620482887,57.141599553361864],[-127.03408439174551,57.14151556204112],[-127.03379458729995,57.14142931258133],[-127.0335118182306,57.14133516121143],[-127.03324314604876,57.14122744810982],[-127.03297147255832,57.141123120617735],[-127.03267882156938,57.14104585767832],[-127.03236517604743,57.14099565927691],[-127.03204054246069,57.140960117372636],[-127.03171290656235,57.1409279607866],[-127.03138820031198,57.14088905544124],[-127.03107336503568,57.1408332593543],[-127.03076642668657,57.140762829782695],[-127.03045950302294,57.14069352018793],[-127.03014583319457,57.140642195907134],[-127.02982047988397,57.14061786222133],[-127.02948931478026,57.14060814394783],[-127.02915422485145,57.140606301366105],[-127.02882017708271,57.140604449716704],[-127.02849003793419,57.14059472083193],[-127.02816672375585,57.1405692461828],[-127.02785616784648,57.1405178919295],[-127.02755637658174,57.14044403625539],[-127.0272634250715,57.14035555571123],[-127.02697148703358,57.140265945758124],[-127.02667967031715,57.14018081741548],[-127.02639190032815,57.140092294237846],[-127.02611320472847,57.139994732758026],[-127.02584764252805,57.13988585955906],[-127.02563497944791,57.13970596011405],[-127.0105063798752,57.100000338488464],[-127.0000006552701,57.07237858182163],[-126.99837749160382,57.06810868559132],[-126.9986477541284,57.06798333496086],[-126.99881930573571,57.0678329631196],[-126.99896370618042,57.06767047101356],[-126.99909147853703,57.06750362324173],[-126.99920683794303,57.06733574975468],[-126.99930868613984,57.06716461753591],[-126.99939913269536,57.066991331183075],[-126.99948129426822,57.06681698756291],[-126.99954795610316,57.0666416420058],[-126.99959285239876,57.066463101110685],[-126.99963984114905,57.06628566490939],[-126.99969924092319,57.066109254277016],[-126.99975966375195,57.06593283579027],[-126.99982007338724,57.0657552966614],[-126.99988255879525,57.065578862335826],[-126.99994611287646,57.065403540534426],[-127.00000120440212,57.06525966415223],[-127.00001274098612,57.065227074407076],[-127.00008248487758,57.06505170509446],[-127.00015635543751,57.06487630410305],[-127.00023746897891,57.06470196824838],[-127.00032377828529,57.06452871322424],[-127.0004100868136,57.064355458164385],[-127.00049433094885,57.0641822189058],[-127.00057130162135,57.0640067939689],[-127.00063375156833,57.06382923899501],[-127.00068273753678,57.06364954589581],[-127.00073069951318,57.06346986065822],[-127.00079111345923,57.063293442025156],[-127.00087645193724,57.06312243568127],[-127.00101056660677,57.06296226208355],[-127.00121633104588,57.06281946978854],[-127.0014544373086,57.06268987749651],[-127.00170739547144,57.062575860882845],[-127.00198764526529,57.06247956570713],[-127.00227529952541,57.06238993738274],[-127.00257354576179,57.062311434270335],[-127.00280870345996,57.062187465824465],[-127.0030197117909,57.06204799253235],[-127.00325060596359,57.06191957316989],[-127.00351198319268,57.06181221262916],[-127.00378382266936,57.06171037465529],[-127.00406091545462,57.061611857841115],[-127.00434011233587,57.06151556568481],[-127.00461932432606,57.061419272809886],[-127.00489642565711,57.06132187487256],[-127.00519264060794,57.06124450211264],[-127.00549639060519,57.06117939859365],[-127.0057703131143,57.06107866111192],[-127.00604420486161,57.06097680255737],[-127.00633403201932,57.06089275209817],[-127.00663768927413,57.06082428442324],[-127.00694771184654,57.06076249125177],[-127.00726092489819,57.06070403487777],[-127.00757094549898,57.060642240229335],[-127.00786498176784,57.060561515999865],[-127.0081643599138,57.06048747417386],[-127.00848982068518,57.060463662762494],[-127.0088163504189,57.060440962994136],[-127.00914501491745,57.06042160807219],[-127.00947480732006,57.06040560577832],[-127.00980468775404,57.0603929641598],[-127.01013363285588,57.06038369114698],[-127.01046285583674,57.06038562246244],[-127.01079230160664,57.060395396339295],[-127.01112277099439,57.060405161445104],[-127.0114745147909,57.06040019112822],[-127.0117798990768,57.06039782116489],[-127.01210750876228,57.060377346215716],[-127.01243502956292,57.0603535089358],[-127.01276263852182,57.060333032341],[-127.01309254678256,57.06032150290575],[-127.01342275025257,57.060321177658956],[-127.01374151380507,57.060278352725135],[-127.01405474213901,57.060221000550904],[-127.01436155587473,57.060155852410695],[-127.01466405126149,57.06008289203278],[-127.01497617750846,57.060023304743765],[-127.0152480331495,57.059923683999095],[-127.0155113970724,57.059815162982325],[-127.01577263692245,57.05970441651805],[-127.01603812045747,57.059598119377526],[-127.01631409705395,57.05949846427365],[-127.01660792841601,57.059410997384944],[-127.01692135290004,57.05936148186417],[-127.01724581808767,57.05933989772652],[-127.01757362347213,57.0593272525608],[-127.01790361066965,57.059319072460276],[-127.0182357501136,57.05931423690802],[-127.0185679488538,57.05931164151021],[-127.01889802480429,57.05930682039364],[-127.01922707725271,57.05930200644355],[-127.0195571530378,57.05929718365807],[-127.01988725846842,57.05929348053686],[-127.02021739357336,57.05929089707978],[-127.02054654820374,57.059290561928215],[-127.02087677251092,57.05929133830086],[-127.0212060627132,57.05929548335392],[-127.02153440239013,57.05930299722402],[-127.02186397411621,57.059318345741374],[-127.02219158865314,57.05933707097535],[-127.02252025673435,57.05935690785753],[-127.02284889534,57.059375623412144],[-127.02317744479264,57.05939097664031],[-127.0235047755765,57.05939961421014],[-127.02383373871118,57.05939142713376],[-127.02416232696265,57.059369793367644],[-127.02448871869292,57.05934257236543],[-127.02481506358224,57.059314230177435],[-127.02513927151082,57.059282541773975],[-127.02546337272572,57.05924749119846],[-127.02578199435754,57.05920015486175],[-127.0260921824126,57.05914615972585],[-127.02641298647397,57.05918061824027],[-127.02673716372144,57.05922513600814],[-127.02706479326767,57.05924496962217],[-127.02739328339257,57.059258071226836],[-127.0277227237946,57.05926780231009],[-127.02805208792407,57.05927529169479],[-127.02838240217753,57.05927941054883],[-127.02871169308499,57.059283536642546],[-127.02904099755155,57.059288782532676],[-127.02937037862421,57.059296268456414],[-127.02969971330405,57.059302633180515],[-127.03003008801687,57.05930898885507],[-127.03035946945519,57.05931647227987],[-127.03068880447185,57.05932283450523],[-127.03101818615704,57.05933031626557],[-127.0313475514637,57.05933779732434],[-127.03167696347728,57.059346397917615],[-127.03200644937642,57.059358359301335],[-127.03223213603653,57.05938571143194],[-127.03264822564944,57.05931741313545],[-127.03297126678463,57.05928123150363],[-127.03329772537388,57.05925735006941],[-127.03362525360733,57.059234580068726],[-127.03394817257445,57.05919391403103],[-127.03426899738004,57.059152143069475],[-127.03459524489209,57.05915851991696],[-127.03492185450992,57.05917834190585],[-127.03524968544055,57.05920487779616],[-127.03557753050276,57.05923253349],[-127.03590426203645,57.059256835004135],[-127.03623487901858,57.05927213892425],[-127.03656647575686,57.05928519274389],[-127.03689311769112,57.05930613029182],[-127.03721107136855,57.059349550891135],[-127.03752217522826,57.05940647408461],[-127.03783034450089,57.05946902359426],[-127.0381365257013,57.0595349504307],[-127.03844180560628,57.05960536668825],[-127.03874502327254,57.05967579867688],[-127.03904934255807,57.059748462666285],[-127.03935256246605,57.05981889324892],[-127.03965680691567,57.0598893149672],[-127.03995808693128,57.05996424258943],[-127.0402584053322,57.0600414186786],[-127.0405586781004,57.060117473715955],[-127.04085993132152,57.06019127877009],[-127.04116407658952,57.0602572148735],[-127.0414740929822,57.06031189598667],[-127.04180259712786,57.06032496129124],[-127.04213662336144,57.06031332537377],[-127.04248643694277,57.06031276972897],[-127.0428180347045,57.0602877026198],[-127.04305459051656,57.06018270201263],[-127.0432573099355,57.06004771183903],[-127.04344411860272,57.05989715837546],[-127.04361727886517,57.05973774801288],[-127.04378316337096,57.05957615421081],[-127.04394600407693,57.05941682605872],[-127.04409024300843,57.05925652597189],[-127.0442146882858,57.05908965987161],[-127.04433601532408,57.05892169790867],[-127.04447190621602,57.05875810209755],[-127.04462340072355,57.05859886405734],[-127.04478109778749,57.058440696871095],[-127.04493674678041,57.05828254592003],[-127.04508612724956,57.0581222035752],[-127.04523758624102,57.057961844399955],[-127.0453838775819,57.05780152650211],[-127.04552182330023,57.05763791317902],[-127.04563384723261,57.057470024720864],[-127.04571059848257,57.05729457400731],[-127.04580081265243,57.0571212567202],[-127.04591553083769,57.05686256676552],[-127.04595537934841,57.056772588064476],[-127.04600214227466,57.056595136415325],[-127.04604372458581,57.05641660560909],[-127.04608220350396,57.056238099716005],[-127.04612170539208,57.056059585620964],[-127.04616744336087,57.05588214221566],[-127.04622141696538,57.05570463270625],[-127.04628264977785,57.055528185655696],[-127.0463469849634,57.055351713688154],[-127.04641130305347,57.05517524184344],[-127.04646944774966,57.0549988195507],[-127.04651826923913,57.05482135137494],[-127.04654642893942,57.05464292837369],[-127.04656214893004,57.05446236380624],[-127.04658202540394,57.05428288661715],[-127.04662155346608,57.05410549310771],[-127.04667553898437,57.053927983501275],[-127.0467357271134,57.053751544810254],[-127.04680005724666,57.053575072841134],[-127.04686334702897,57.05339860921409],[-127.04692457322314,57.05322216215027],[-127.04697853959824,57.05304465266187],[-127.0470232302804,57.05286721768797],[-127.04705963812054,57.052688728528786],[-127.04708982619994,57.05250916861719],[-127.04711591859531,57.05233076235947],[-127.04713785433214,57.052151268781564],[-127.04715772692411,57.051971791798216],[-127.04717451318665,57.05179233963221],[-127.04719025958046,57.05161289584107],[-127.04720394291614,57.05143346864711],[-127.0472010923939,57.05125305359798],[-127.04719104404323,57.051073817141834],[-127.04719132670044,57.05089449769493],[-127.0472153241385,57.050714987710215],[-127.04725481509222,57.05053647396987],[-127.04730051074228,57.05035791037427],[-127.04734310345086,57.05017937171908],[-127.04737331875866,57.05000093254685],[-127.04737767918252,57.0498204597242],[-127.04731601547165,57.04963939681927],[-127.04714998719813,57.049490553034246],[-127.04689655767555,57.049389481927854],[-127.04661654329344,57.04925948485817],[-127.0464737312495,57.04909140140522],[-127.04629930504085,57.048937020424205],[-127.04612674611059,57.048774779135485],[-127.04597571744787,57.0486078819163],[-127.04587204194198,57.04843724232559],[-127.04583649878892,57.04826829735988],[-127.04586480923695,57.04809547775864],[-127.04594047063145,57.04791891593259],[-127.04605329065835,57.04774317653044],[-127.04619101453291,57.04757284075569],[-127.04634441258159,57.04741022409503],[-127.04650629004456,57.04725538426969],[-127.04667640041826,57.04710047812158],[-127.04685483761415,57.04694774632136],[-127.04704051497023,57.04679607683578],[-127.04723453302482,57.04664770224657],[-127.0474358826785,57.04650375135488],[-127.04764664305856,57.04636420740973],[-127.04786481257018,57.046231327917255],[-127.04809136727106,57.04610398425922],[-127.04834105342916,57.04599214431242],[-127.0486180244801,57.04589801597413],[-127.04891280966982,57.045813830204295],[-127.04921387309885,57.04573295539625],[-127.04950966468834,57.04564763943317],[-127.04978970195106,57.04555236315971],[-127.05006023374641,57.04544931777953],[-127.05032868740484,57.04534516785595],[-127.05059499930674,57.045238793186364],[-127.05086028669986,57.04513242623096],[-127.05112451896541,57.04502494651451],[-127.05138873325357,57.04491746640375],[-127.05165296256531,57.044809985632085],[-127.0519171432495,57.044701383984986],[-127.05218242327864,57.04459501437842],[-127.05244874135862,57.04448863584345],[-127.05271614232706,57.04438448946838],[-127.05298560437217,57.04428032588458],[-127.05325721954358,57.04417950652009],[-127.05353092650158,57.044079790400595],[-127.05380878776202,57.04398116083177],[-127.05408979452787,57.043884746676234],[-127.05437399404506,57.04379166825924],[-127.05466247081998,57.043704158238235],[-127.05495519421079,57.04362109610408],[-127.05525225653113,57.04354584326575],[-127.05555469742683,57.043478391271044],[-127.05586681009478,57.0434254296634],[-127.05618640927771,57.04338249317396],[-127.05651138766066,57.04334735737875],[-127.05683852029883,57.04331556548165],[-127.05716459860913,57.04328266058526],[-127.05748745116435,57.0432452981347],[-127.05781024145071,57.04320569392834],[-127.05813306190242,57.043167209401695],[-127.05845478054886,57.04312649156411],[-127.05877113467716,57.043077971417546],[-127.05908305451962,57.0430182792527],[-127.05940838757685,57.04295847727654],[-127.05973773538858,57.0428952796425],[-127.06005241442153,57.04282323468102],[-127.06033573755789,57.042736874653755],[-127.0605699824521,57.0426284989219],[-127.06074148785314,57.04248925314289],[-127.06086062792917,57.04232129456664],[-127.06093596183268,57.042135760941925],[-127.06097817301686,57.04194601410201],[-127.06099895336762,57.04176428688669],[-127.06100127928165,57.04158719288361],[-127.06098602147586,57.0414080006354],[-127.0609562963965,57.04122780548939],[-127.06091523693027,57.041047702655256],[-127.06086491998386,57.04086879593998],[-127.06080943943373,57.04068993127382],[-127.06074991306775,57.04051334100471],[-127.06065749739348,57.04034150139627],[-127.06053838182083,57.04017324127137],[-127.06042435298359,57.040002698210536],[-127.06034428279774,57.03982963725353],[-127.06029091582957,57.039651876053966],[-127.0602498755521,57.0394728938189],[-127.06022941292245,57.039291502688194],[-127.0602337426987,57.039112151275106],[-127.06026495976556,57.0389348225249],[-127.06031163498778,57.038757367980445],[-127.06037068307575,57.03857981273489],[-127.06044007254465,57.03840329403105],[-127.0605198032577,57.0382278118521],[-127.06060784379031,57.038054503440726],[-127.06070518598472,57.03788223997784],[-127.06081606327167,57.03771434914523],[-127.06094869324659,57.03754964325918],[-127.06109374032215,57.037387077562514],[-127.06124188763472,57.03722448645843],[-127.06138384729219,57.03706194560617],[-127.06151025528682,57.03689616915266],[-127.06161078470993,57.03672724129969],[-127.06169777759067,57.03655394080369],[-127.06177856896076,57.0363795700845],[-127.06185103288352,57.03620302575898],[-127.06191625618007,57.03602541970749],[-127.06197220781253,57.03584788922275],[-127.06201780119795,57.035669322452314],[-127.06205412318455,57.0354908312714],[-127.06208013463333,57.03531242416087],[-127.06209481292076,57.03513410946541],[-127.06209707151078,57.03495477532555],[-127.06209212128802,57.034775499982096],[-127.06207892310435,57.034596291907434],[-127.06206054737368,57.0344160053442],[-127.06203910153042,57.034236864555176],[-127.06201556297803,57.034056620125405],[-127.06199408660946,57.033876358903925],[-127.06197366410554,57.033697209834145],[-127.06195837396582,57.03351689822254],[-127.0619482779863,57.033337665011025],[-127.06194022753024,57.033158415146346],[-127.06193318542175,57.03297803636242],[-127.06192617431161,57.032798778070216],[-127.06192020246232,57.032619511328456],[-127.06191418324195,57.032439124274305],[-127.06190821150436,57.032259857577074],[-127.0619012006415,57.03208059937369],[-127.06189518159455,57.031900212386724],[-127.06188817085791,57.031720954227694],[-127.06188322202478,57.03154167928253],[-127.06187824230794,57.031361283891464],[-127.06187227090518,57.0311820173278],[-127.0618621594451,57.03100278453709],[-127.06184690182728,57.03082359372021],[-127.06183265256593,57.0306432739856],[-127.0618194260812,57.03046294593557],[-127.06180306789066,57.03028152271753],[-127.06177854115654,57.030102407547545],[-127.06173959682123,57.02992453064037],[-127.0616811363894,57.02974905426086],[-127.06159700583855,57.02957714926033],[-127.06149128152667,57.029407661651234],[-127.06137115705532,57.02923941204569],[-127.06124384032627,57.02907234167679],[-127.06111756379835,57.028905262737716],[-127.0609984816208,57.02873700438216],[-127.06089070057514,57.02856753317951],[-127.06078498214913,57.02839804511675],[-127.06065282568511,57.02816713282682],[-127.06042957555397,57.028035585270466],[-127.06020631256429,57.02790291674341],[-127.06000241231192,57.027762245257385],[-127.05980660573415,57.027615904035585],[-127.05962203873152,57.02746610895595],[-127.05946410548727,57.02730937269488],[-127.05934301908896,57.02714337084865],[-127.05925168085582,57.026971523401805],[-127.05917365944661,57.02679620547385],[-127.05908943752895,57.02662093794734],[-127.05898167081972,57.02645146541563],[-127.05884510492828,57.02628446839093],[-127.05871373317399,57.0261185497452],[-127.05862243101494,57.025947822444586],[-127.05859697532786,57.02577207705713],[-127.0586209038853,57.025592568142024],[-127.05865920113477,57.02541070101617],[-127.05867793634613,57.02523011363181],[-127.05865342737988,57.02505099850544],[-127.05861222531618,57.02486529480095],[-127.0585423028448,57.02468430740742],[-127.0584243907725,57.02452052073833],[-127.05823716069698,57.0243853151094],[-127.05798560425886,57.02427304609616],[-127.05769939085238,57.02417450665454],[-127.0574110701865,57.024074862998575],[-127.05714925829565,57.02396379641098],[-127.05691683791233,57.023834559379814],[-127.0566874414304,57.02370305599645],[-127.05643690216216,57.02358965515216],[-127.05613387497291,57.02351702517746],[-127.05580866539866,57.023462505751986],[-127.0555259777919,57.02337962307592],[-127.05529882032161,57.023253702763945],[-127.05509386225548,57.023110791542955],[-127.0549122819253,57.02295536282655],[-127.0547573473309,57.02279411451924],[-127.05463942644957,57.02262920417652],[-127.05457070270833,57.022453808967825],[-127.05451938643853,57.02227378994773],[-127.0544547251376,57.02209612041239],[-127.0543449915923,57.02192890219505],[-127.05418603296675,57.02177104808869],[-127.05401886110019,57.02161438100346],[-127.05387523387063,57.02145191964041],[-127.05374898365898,57.021283713984836],[-127.05369164236222,57.021109347134164],[-127.05368572488078,57.02093120207427],[-127.0536993363374,57.02075065759951],[-127.05372223155346,57.02057003802369],[-127.05373895701624,57.02039058909971],[-127.05375360689405,57.02021003628081],[-127.0537631260118,57.0200306457103],[-127.05374893282004,57.019851447044545],[-127.05371620539856,57.01967239837818],[-127.0536865618311,57.01949332477498],[-127.0536816527783,57.01931405104854],[-127.05371178377914,57.0191344938076],[-127.05374194518171,57.01895605704259],[-127.05373599711592,57.018776791791524],[-127.05370527045363,57.01859548565664],[-127.05363345822086,57.018420115530425],[-127.05351552488266,57.01825408421212],[-127.05337605105049,57.01809158919327],[-127.05322323425399,57.01793144339277],[-127.05306632718325,57.01777245122769],[-127.05291044371253,57.01761345062481],[-127.05272671444263,57.017453554284025],[-127.05252646742254,57.01729267052444],[-127.05234898577211,57.0171349646245],[-127.05224312190626,57.01695762776557],[-127.05227582846801,57.01683408571187],[-127.05255156871625,57.016702975785776],[-127.05285199825346,57.01660752825446],[-127.05316053743002,57.01654451492597],[-127.05348274013964,57.016491476674595],[-127.05379544429363,57.016430669546715],[-127.0540754731854,57.01634322921974],[-127.05432479538429,57.01622577784616],[-127.05454782316659,57.01608948693914],[-127.05474374919324,57.015942208125],[-127.05491371872002,57.01578841507787],[-127.05505660333527,57.01562363422107],[-127.05515907433436,57.015451335782174],[-127.05520992800305,57.01527609348608],[-127.05521637015127,57.01509784900183],[-127.05519905810813,57.01491755563834],[-127.05517347174278,57.014736208646475],[-127.05516028192541,57.014555881918994],[-127.05516767072518,57.01437426773893],[-127.05525780315133,57.01420319003881],[-127.05540176407095,57.01404064161216],[-127.05557269979745,57.01388459857584],[-127.0557739863044,57.013745119790705],[-127.05601908675067,57.013625458029765],[-127.0562777433617,57.01351128935283],[-127.05652387943022,57.013391618234465],[-127.05676059450289,57.013266419589634],[-127.05696797800225,57.01312464806057],[-127.05716384889769,57.01297624545293],[-127.05737761305186,57.01284114569469],[-127.05764290473101,57.012743730978244],[-127.0579628854125,57.01268621670393],[-127.05828185729115,57.01262983054258],[-127.05853778732049,57.01252912796687],[-127.05871488605791,57.01237303070345],[-127.05890038071423,57.01222246844245],[-127.05905933987785,57.01211919137045],[-127.05906793344393,57.01194429154957],[-127.05920126735296,57.01180872232965],[-127.05941935966399,57.011644445691296],[-127.05957774963719,57.01148289600457],[-127.05968434173435,57.011311681409175],[-127.05980027619012,57.0111426320976],[-127.05992658939742,57.01097686030964],[-127.06006746654379,57.010815452639434],[-127.06023120999883,57.01066170353631],[-127.06042191224132,57.010513338168494],[-127.06063658076125,57.01037486360856],[-127.06086794949893,57.010244097536265],[-127.06111202060269,57.01012555525979],[-127.06137076217964,57.010015858549615],[-127.06163996020635,57.009911679570216],[-127.06191442387198,57.00981193989312],[-127.06219096326925,57.0097121826968],[-127.06246330156272,57.00961021778704],[-127.0627283106068,57.0095038293191],[-127.06291974010553,57.009382351232205],[-127.06311043931021,57.00927208586191],[-127.06343726388957,57.00912820791889],[-127.06362385588201,57.008980992134525],[-127.06377606635579,57.008820608595535],[-127.06390226190992,57.00865147186699],[-127.06408178433719,57.00850991673173],[-127.06436988168116,57.008419026026445],[-127.06462651091904,57.00830821937346],[-127.06480469706884,57.00815546713863],[-127.0649610825109,57.007997289495684],[-127.06511018443058,57.007836929858605],[-127.06526865889117,57.007679855470705],[-127.06544583208124,57.00752823137186],[-127.06565110861952,57.00738646330651],[-127.06586786347872,57.00725020445034],[-127.06599117935627,57.007088934258185],[-127.06606872835663,57.00691234893641],[-127.06619394764071,57.0067454594754],[-127.06636068622464,57.00658943681898],[-127.0665776514101,57.00646101999022],[-127.06688676718082,57.00638564128517],[-127.06719300022282,57.00631813038797],[-127.06750454700203,57.00625617869994],[-127.06781500861675,57.00619199375794],[-127.06812133176395,57.006127842027446],[-127.0684307839382,57.00606478459066],[-127.068740328426,57.006005087761636],[-127.06905196353595,57.00594649372422],[-127.06936469842387,57.005890131305236],[-127.06967848551939,57.005834880185695],[-127.06999338713598,57.005782981250555],[-127.07027317284037,57.00576499134523],[-127.07061277740648,57.00567478391228],[-127.07090093162648,57.00558724027108],[-127.07119012299725,57.00549968745204],[-127.07148895102955,57.00542550309185],[-127.07179944521313,57.00536354971176],[-127.07209934067625,57.005290475852696],[-127.07239491038112,57.00521071271919],[-127.07269268065714,57.00513541358487],[-127.07299677069099,57.0050656651828],[-127.07330303024088,57.00499926028382],[-127.07360927225096,57.004932854803386],[-127.07391552968768,57.00486644846961],[-127.07421859342277,57.004796705657654],[-127.07451950183444,57.004723617818286],[-127.07481297049583,57.00464274578961],[-127.07509898446585,57.00455296904296],[-127.07538185216816,57.00446097624992],[-127.07566786346105,57.0043711982646],[-127.07596239676907,57.004291435527],[-127.07626653686542,57.00422392041505],[-127.07657712415856,57.00416531688591],[-127.07689088684236,57.004110048448084],[-127.07720570191738,57.00405589124231],[-127.0775183781442,57.003998388866805],[-127.07783001501912,57.003940894341035],[-127.07814267289666,57.00388339060703],[-127.07845540910313,57.00382812687346],[-127.07877132088338,57.00377619817398],[-127.07908841078265,57.00372986245086],[-127.07941091034849,57.00369244671455],[-127.07973666517022,57.00366060668786],[-127.08006246584391,57.003631006867906],[-127.08038606493506,57.00359582098654],[-127.08070324577099,57.003552842662025],[-127.08101385235994,57.00349534901658],[-127.08131907865683,57.00343005439735],[-127.0816210163053,57.00335806216462],[-127.0819197446297,57.0032816130882],[-127.08221741835403,57.00320405138525],[-127.08251611279131,57.00312648050705],[-127.08281589096794,57.00305114132876],[-127.08311461453798,57.00297468952647],[-127.08341222041456,57.00289488422587],[-127.08371094158792,57.00281843106341],[-127.08401511955901,57.00275313879865],[-127.08441969000971,57.00273968252369],[-127.0846816420561,57.00271172369346],[-127.0849935622538,57.00270127908276],[-127.0853150968393,57.002740064519394],[-127.0856357365631,57.00278333944721],[-127.08596838638135,57.002777202419665],[-127.08622716580776,57.00267305907618],[-127.08647409811776,57.00255108284172],[-127.0867621928828,57.00246350428311],[-127.0870860607973,57.002438385732404],[-127.08741846937272,57.00242440206099],[-127.0877512424433,57.00242274223719],[-127.08807723967567,57.00243682806241],[-127.08838799044368,57.00249474802721],[-127.0886940902142,57.00257063743197],[-127.08901136488343,57.002603845865046],[-127.08934580275738,57.00258871959366],[-127.0896617213893,57.00253788494969],[-127.0899256164012,57.00243257064371],[-127.09016935811198,57.00230725191216],[-127.09041113319299,57.00218531131049],[-127.09064872276194,57.00206116391967],[-127.09087356835988,57.00192367444783],[-127.0911741327841,57.0017676185623],[-127.09139949204003,57.001793746713304],[-127.0917059950488,57.00184721152938],[-127.09196270918306,57.001961611393234],[-127.09221242826212,57.002083914404096],[-127.09248409686566,57.00218025651673],[-127.09279565143532,57.00223031430487],[-127.09312712592038,57.002255548549996],[-127.09345272184001,57.00229203839289],[-127.09377539540243,57.00233415551187],[-127.09409882432016,57.00233031656184],[-127.09442449175457,57.002296198935035],[-127.09474690067265,57.00225650436771],[-127.0950658915833,57.00220563069712],[-127.09538623883152,57.002165951881906],[-127.09571270100898,57.00215984197087],[-127.0960405677728,57.002167167883],[-127.09637068637244,57.00218119823861],[-127.09670070945332,57.00219186644578],[-127.09702940698627,57.00219245863473],[-127.09735767386671,57.002177363737566],[-127.09768592400776,57.00216226815171],[-127.09801524421431,57.002148283415714],[-127.09834237606452,57.00212983348516],[-127.0986661057046,57.00210020438294],[-127.09898635240606,57.00205715540136],[-127.09930324382715,57.00200516831275],[-127.09961609440964,57.00195545599837],[-127.09994212403545,57.00197063254119],[-127.10023269993407,57.002007401390145],[-127.1006053821837,57.00203226828185],[-127.10092478353002,57.00203180852248],[-127.10122899018621,57.00196871694284],[-127.10152734818271,57.00188101858912],[-127.10180046900754,57.00177560186842],[-127.10203187073442,57.00165260649241],[-127.10221406222811,57.0015020097636],[-127.1023691002474,57.00133931498679],[-127.1025149064128,57.001177818938906],[-127.10265031415285,57.0010130487081],[-127.10276812119118,57.00084506535134],[-127.10286003848226,57.0006728184492],[-127.10291889613245,57.000497489523895],[-127.10295290307026,57.00031788835554],[-127.10297657689951,57.00013725405888],[-127.10296438800329,56.99999951051966],[-127.10294994110325,56.99981919930858],[-127.1030512301827,56.99965023506288],[-127.10324695118864,56.99950512584515],[-127.10349602992761,56.99938870229431],[-127.10376823436896,56.99928777202194],[-127.10404358353486,56.99918905591029],[-127.10431049813113,56.99908368654418],[-127.1045805895784,56.99898165178074],[-127.10485066392052,56.99887849589153],[-127.10510704870354,56.9987653693271],[-127.10533081732035,56.99862898444596],[-127.10532075376622,56.998457601993536],[-127.10533310906463,56.99827818422624],[-127.1053135742221,56.99810015802377],[-127.10519844991971,56.9979296678456],[-127.10521704997446,56.997752438536644],[-127.10532961326317,56.99758225618006],[-127.10547336496347,56.99742189516262],[-127.10562744755681,56.997262566934],[-127.10578881138545,56.99710541807243],[-127.10595119564012,56.99694826034497],[-127.10611570290534,56.9967933257853],[-127.10628538267439,56.9966394677578],[-127.10645713750802,56.99648559187184],[-127.10662785276277,56.99633172460369],[-127.10681514267628,56.99618107826593],[-127.10695482755284,56.996022991664645],[-127.106951668971,56.995841464523195],[-127.10696093422501,56.995662073135485],[-127.10696916120952,56.99548269060019],[-127.10698872568378,56.99530321164657],[-127.10703407877949,56.995124634041744],[-127.10710217006798,56.994949225111945],[-127.10715788590169,56.99477280074639],[-127.10718980817285,56.99459321670223],[-127.1072073113368,56.994413755350436],[-127.10721141726623,56.99423440800391],[-127.10720008281608,56.99405519204909],[-127.10715170426703,56.993877411988024],[-127.10710436429974,56.993699623098806],[-127.10708375324621,56.99352048612566],[-127.10706212073721,56.99334135786274],[-127.1070332874978,56.9931622908772],[-127.10700135665728,56.992983250260345],[-127.10697357781245,56.99280529504194],[-127.10694164754557,56.992626254454315],[-127.10690665195806,56.9924483606587],[-127.10681515158086,56.99227543029979],[-127.10673185864827,56.99210130939944],[-127.10666807742822,56.991924781135545],[-127.10664952904159,56.99174562679484],[-127.10664231729464,56.99156637606422],[-127.10661248146265,56.99138843845778],[-127.10652408265224,56.99121548167594],[-127.10639979348637,56.99104843352861],[-127.10633703711417,56.990871896543474],[-127.10627736252603,56.990695333353756],[-127.10620537941635,56.99051999550075],[-127.10612314678959,56.99034698616109],[-127.10603371452717,56.99017403799353],[-127.10594837007827,56.98999993434899],[-127.10585279282684,56.98982815903924],[-127.10576336298337,56.98965521074732],[-127.10568523762846,56.98948104566347],[-127.1056142810248,56.98930569894858],[-127.10555153109321,56.989129161795276],[-127.10550006879635,56.98895140803855],[-127.10546406168056,56.9887735229817],[-127.10536949547021,56.98860061821784],[-127.10534065717397,56.988421551578476],[-127.10540566331072,56.988246170515154],[-127.10542009090481,56.98806673635875],[-127.10545204788323,56.98788827398965],[-127.10533820010522,56.987725619416345],[-127.10510685825741,56.9875964629631],[-127.10489397313422,56.98746378730264],[-127.1048055102874,56.98728858911048],[-127.10473559968636,56.987113233365655],[-127.10467697621691,56.98693666108306],[-127.10461423444144,56.98676012376363],[-127.1045525147097,56.98658357776357],[-127.10449904963076,56.986406961686704],[-127.10446713617152,56.98622792127564],[-127.10445066015005,56.98604874983785],[-127.10443316283227,56.98586958709055],[-127.10440125012455,56.98569054672905],[-127.10437757513401,56.985511436460314],[-127.10418921696129,56.985335965351794],[-127.103957642691,56.985233705868296],[-127.10380635160513,56.98512964419932],[-127.1036853195263,56.98496704956601],[-127.10369459737757,56.98478765974621],[-127.10370489655874,56.98460826128274],[-127.10360233602123,56.98444326855758],[-127.1034005345751,56.98430153136085],[-127.1032456487983,56.98414370633357],[-127.10314395240427,56.9839731025305],[-127.10299720979658,56.98381184613477],[-127.10289241825845,56.98364126843129],[-127.10272631583348,56.98348690006299],[-127.1024757826925,56.98318979831999],[-127.10279774669735,56.98299655175442],[-127.10296201454507,56.98283490013545],[-127.10323618906905,56.982699212963546],[-127.10369386542921,56.98253395125365],[-127.1039318627361,56.982394086744726],[-127.10438696540452,56.98206746468676],[-127.10517150838774,56.981738042798426],[-127.10559985377999,56.98162793742428],[-127.10591924714898,56.98148961887055],[-127.10622213298981,56.98135031920453],[-127.10647608045899,56.98122824546051],[-127.10674391746342,56.98112398413131],[-127.10709499433797,56.98101341042696],[-127.10738239793292,56.98090898125504],[-127.10771645042021,56.9807794990054],[-127.10806826905367,56.98065883010301],[-127.10838764552344,56.980520505581026],[-127.10870596039831,56.98041693077696],[-127.10907195490311,56.98032415562607],[-127.10942324370646,56.980221418619706],[-127.1097091131141,56.98010018695923],[-127.10999447603882,56.97999689006361],[-127.11030470754298,56.97989898374514],[-127.11065425713831,56.979771602997104],[-127.11098461949359,56.979693695629216],[-127.11138030425582,56.97959505689416],[-127.11168315545098,56.97945574469476],[-127.11200353023929,56.97931740268211],[-127.1123071559031,56.979169116860085],[-127.11255053601208,56.978967552365674],[-127.11278663413431,56.978763808330825],[-127.11287302338825,56.9785815171898],[-127.11307218548743,56.978382571410414],[-127.11339490314433,56.97807610214449],[-127.11426595987955,56.9775744186208],[-127.11492907823771,56.977217960189044],[-127.11522483007224,56.97711904544028],[-127.11564816368697,56.97687446664723],[-127.1157503933244,56.976813072471764],[-127.11587547686108,56.97661699921519],[-127.11687739430458,56.97587210621245],[-127.1178457260425,56.97524852876359],[-127.11808175021514,56.97515012074826],[-127.11875072833529,56.97513988580138],[-127.1196365407176,56.974973125765956],[-127.12135035217831,56.97417611986396],[-127.12318140001958,56.972387388745105],[-127.12457828377445,56.971567300791236],[-127.12548250860269,56.971083186084364],[-127.12622738087761,56.97088958291221],[-127.12654766515573,56.970540516012264],[-127.12672034035519,56.969967468759535],[-127.12643572701913,56.969317693453384],[-127.1262645121052,56.96870840133366],[-127.12639466645373,56.96812451655354],[-127.12658590782124,56.96776424007319],[-127.12775713943556,56.96771934722534],[-127.1281029495186,56.96771634792908],[-127.12825125224927,56.96771842344363],[-127.12854683679537,56.967722582825274],[-127.12882697522116,56.96772687561119],[-127.12899070774866,56.967728816349585],[-127.12932001783585,56.96772483637142],[-127.1296488324802,56.96773879086882],[-127.1299758353716,56.9677617257834],[-127.13035484293111,56.96776739755001],[-127.13074932967952,56.96777405431194],[-127.13112527323517,56.96781561250296],[-127.13152801063612,56.96782331583436],[-127.13195920312872,56.9678531840154],[-127.13233496722813,56.967958619549385],[-127.13269522097693,56.96799134433828],[-127.13304048990088,56.96800514697879],[-127.13336853450836,56.96802806432868],[-127.13353231797375,56.9680311196082],[-127.13390979787305,56.96805472538664],[-127.13411990536277,56.96809323807004],[-127.1344040517964,56.968163604595006],[-127.13447842034358,56.96820666275057],[-127.13473002283868,56.96846558833871],[-127.13482766826446,56.96863508116268],[-127.13495301281975,56.968800970142134],[-127.13509774051583,56.96896108640136],[-127.13527201179643,56.96911085841958],[-127.13545855267475,56.96925716103671],[-127.13566749059977,56.96939542300071],[-127.13590386446852,56.96952111742848],[-127.1361218786417,56.96965257529414],[-127.13621554836236,56.96982658478737],[-127.13627840734574,56.970003104819156],[-127.13637713402056,56.970173707994334],[-127.13650250683494,56.97034071619988],[-127.13660734487482,56.97050902446735],[-127.13674600939524,56.970672554257376],[-127.13688464203041,56.97083496351459],[-127.13702841401086,56.970997327721506],[-127.13715489599007,56.97116656712745],[-127.13747088315212,56.97119854539867],[-127.13803738170773,56.97127652090888],[-127.13835582635033,56.97132192385741],[-127.13867331691571,56.97136957577317],[-127.13898096260135,56.97143300284139],[-127.13928931550114,56.971485216066554],[-127.13961444637212,56.971512626305284],[-127.13993560981132,56.9715456739764],[-127.14022740356901,56.971629409554915],[-127.14050793655043,56.97164600162307],[-127.14078726801176,56.9715875171508],[-127.14111376250176,56.97159137713141],[-127.1414169648328,56.971643630544385],[-127.14164922084187,56.97176823045189],[-127.14196966598793,56.9718113656925],[-127.14229078396534,56.971842166605335],[-127.14259924431299,56.971897733205765],[-127.14286553827476,56.97198953183783],[-127.14320158424944,56.97203813046327],[-127.14352300440939,56.97207901196035],[-127.14382957613535,56.97214019576366],[-127.14410626765977,56.972235262554015],[-127.14443335059664,56.972259281589956],[-127.14475934627605,56.9722810679867],[-127.14508716783965,56.97229499262754],[-127.14541423505244,56.97231788865074],[-127.14572176612367,56.9723768182076],[-127.14601655848561,56.97245715251041],[-127.14633426791006,56.97251150817481],[-127.14659542704942,56.972396015853086],[-127.14680875235902,56.97226413434657],[-127.14707874336172,56.972168735694105],[-127.14740611101111,56.97220171032047],[-127.14768768311741,56.97228776095375],[-127.1479109413561,56.97242027421758],[-127.14798736465653,56.972601152476436],[-127.14822110761062,56.97267081372016],[-127.14856264281106,56.972661073952665],[-127.14889108911514,56.97266153517523],[-127.14922070667592,56.97266646800596],[-127.14954926979954,56.97267028862506],[-127.1498770295218,56.97268196039523],[-127.15019934942073,56.97271833478006],[-127.15041169110202,56.97276128466399],[-127.15083532132259,56.97281133041735],[-127.15115687318954,56.972821933209026],[-127.15148388150423,56.97284257317654],[-127.1518061372678,56.97287670278192],[-127.15212364080605,56.97292432206172],[-127.15243322859492,56.97298209699202],[-127.15274485950904,56.97303985308805],[-127.15303466728156,56.97312469866533],[-127.15333836744246,56.973192609952676],[-127.15365299701014,56.9732469752234],[-127.15395276613785,56.97332052345931],[-127.15425929716314,56.973379441929985],[-127.15454608171498,56.97346655243819],[-127.15483286756364,56.97355366231929],[-127.15511567169465,56.973645289742024],[-127.15541845932304,56.973716566467026],[-127.15573093656225,56.97376758381729],[-127.15605419132021,56.97380057344584],[-127.15636302350619,56.97386731148325],[-127.15663266201258,56.973965776925894],[-127.15675508876197,56.9741339138203],[-127.15687610886584,56.974289735441026],[-127.15714056291064,56.9743871253095],[-127.15739825853993,56.97449914389923],[-127.15762862570234,56.97462709503334],[-127.1578519152182,56.974759591589844],[-127.1580893646177,56.97488299611091],[-127.15834100830838,56.97499954961146],[-127.1585936237492,56.97511385259042],[-127.15885434098938,56.975223600114894],[-127.15908066716995,56.975353826227064],[-127.15930803251254,56.975484042708594],[-127.15952117366736,56.975621109828595],[-127.15968333482282,56.97577432097877],[-127.15983947301793,56.97593318916925],[-127.16007427107085,56.97589971565508],[-127.16029007658933,56.97554364901686],[-127.16034826323386,56.97535597278774],[-127.16047361262642,56.97514192121968],[-127.16066468112389,56.97495642136383],[-127.16053946625222,56.97449132697804],[-127.16065792712088,56.97432216481951],[-127.16114590193197,56.97414858364243],[-127.16181460960676,56.97399355897259],[-127.16202159483991,56.973789983770025],[-127.16224283941828,56.97364904006876],[-127.16231051287737,56.9736058487063],[-127.16259568658872,56.97350243691786],[-127.16287980384323,56.97339791324263],[-127.16316572496046,56.97328552790356],[-127.16341814697834,56.973154389670185],[-127.16367310554172,56.97300529703883],[-127.16391028456452,56.972847397407435],[-127.16416523919189,56.97269830384258],[-127.16437262787224,56.972508169698294],[-127.1643799801058,56.972376981933145],[-127.16455968221123,56.97208847375288],[-127.16517125466387,56.97198661608774],[-127.16554085422328,56.97195192482245],[-127.16609753454144,56.97187296868494],[-127.16638268526188,56.971769548715756],[-127.16666679692416,56.97166613743556],[-127.16695191064854,56.971561595836995],[-127.16731919606823,56.971450712612345],[-127.16768644541543,56.97133870796331],[-127.16800304380087,56.97125405396509],[-127.16832064433191,56.971168269485545],[-127.16865370835504,56.97108346597421],[-127.16898600537067,56.97100763409969],[-127.1693025981803,56.970922976957155],[-127.16960372476616,56.97083733742524],[-127.16990381251145,56.97075170653382],[-127.17018817946217,56.97065725078863],[-127.17048950608903,56.97054471057206],[-127.17077388654431,56.970450253411364],[-127.17084103453746,56.970423872806336],[-127.17105700795737,56.97038270377256],[-127.17143626717385,56.970361357035486],[-127.17180176125933,56.970294184485475],[-127.1721343344342,56.97022730760861],[-127.17245011510083,56.97015049495436],[-127.17354563348557,56.96981561087616],[-127.17399898789917,56.96975996695909],[-127.17424865416729,56.9697095228199],[-127.17429809178435,56.96971019713787],[-127.1746286527225,56.969679194424785],[-127.17499391205321,56.96960417004029],[-127.1753601567815,56.969528015014305],[-127.1757076911766,56.96948004562343],[-127.17603750160515,56.9694580117006],[-127.1764332001897,56.9694365016394],[-127.17684569049467,56.96942492473463],[-127.17725738273299,56.96942119865391],[-127.17762138146854,56.969373075082814],[-127.17801784170194,56.96934258767636],[-127.17834764963266,56.969320547897574],[-127.17872687788558,56.969299180066585],[-127.17914856736253,56.96884819739971],[-127.17924682259292,56.9682578175946],[-127.17932227218866,56.967426694113364],[-127.179317990871,56.966815951297185],[-127.17939077480203,56.96532588160958],[-127.17999952145787,56.96466587099446],[-127.18035895794984,56.96446984866441],[-127.18096967458655,56.96414378383197],[-127.18165536118599,56.96337547975887],[-127.18172868467789,56.962577997307314],[-127.18222894469228,56.96200749771295],[-127.18281845441612,56.96139471863543],[-127.18285455622967,56.960659213257415],[-127.18284240782728,56.95982776734851],[-127.18287158280052,56.95923577472493],[-127.18293461929375,56.95793631598562],[-127.18297962469336,56.95628400403104],[-127.18295437112002,56.955729490867135],[-127.1825260109553,56.9551181278315],[-127.18234265009653,56.95430729408115],[-127.18263317492135,56.95374766793456],[-127.18296071562222,56.95325382519274],[-127.18312705240788,56.95233670734844],[-127.18368507204343,56.95170852379226],[-127.18434616390574,56.95102000235066],[-127.18434099075687,56.9490431546059],[-127.18449758888951,56.94791095391427],[-127.1845146842908,56.946893214528316],[-127.18411580290778,56.94616728241277],[-127.18355263750801,56.94545181114299],[-127.18272535928791,56.94477908628494],[-127.18223955968351,56.944169371301676],[-127.18266717471228,56.94305040082719],[-127.18352744693152,56.941782922137534],[-127.18481613900668,56.94093403016691],[-127.18566165377352,56.94032787472423],[-127.18606896902688,56.93999131542875],[-127.18619661471814,56.93962592886793],[-127.18753466028699,56.93941534784004],[-127.18932702788976,56.939192750979814],[-127.19064024421793,56.93854529902121],[-127.19300063977201,56.936668922691105],[-127.19416164698848,56.93552861205925],[-127.19428541081298,56.93424429595628],[-127.19398314389153,56.93268708881704],[-127.19329835003845,56.93159735702299],[-127.19267791509016,56.930325482414936],[-127.19295239561444,56.92909133968258],[-127.19264957436883,56.92718112839746],[-127.19193213015713,56.92596169631555],[-127.19133198388866,56.92564220633829],[-127.19021994744313,56.925329646101325],[-127.18997276480238,56.92518398191365],[-127.18974761397236,56.92505268423907],[-127.18952144485914,56.92492139552395],[-127.18929429201803,56.9247912361179],[-127.18906708972301,56.92465995612164],[-127.18883890370036,56.924529805427056],[-127.18861175546823,56.924399644861296],[-127.18838559404973,56.924268354225404],[-127.18816045396622,56.92413705387956],[-127.18793735339104,56.92400461384771],[-127.18771629392496,56.923872154796044],[-127.18749727395166,56.92373855607968],[-127.18728231658447,56.92360379921808],[-127.1870704184701,56.92346789340065],[-127.1868615795952,56.92333083864246],[-127.18666691088056,56.923186930111136],[-127.18651289722354,56.92302696060515],[-127.1863955313086,56.92285544954727],[-127.18630791720776,56.92268142536607],[-127.18624079452218,56.92250497268667],[-127.18623001240633,56.922321281492],[-127.18623144618641,56.92213411675748],[-127.18622614033818,56.921961582281284],[-127.18629501975494,56.921793973673864],[-127.18640810878247,56.92162596125631],[-127.18654386417212,56.92145998303721],[-127.18669412945911,56.92129723412719],[-127.186853705656,56.92113664130994],[-127.1870133839505,56.92097940937188],[-127.18718762438647,56.92082764748614],[-127.18737741208484,56.9206802259184],[-127.18757238066598,56.92053387737429],[-127.18776218189555,56.920386455122596],[-127.1879374709018,56.92023580331784],[-127.18808888325289,56.92007752500719],[-127.18821850947639,56.91991272182191],[-127.18833153365358,56.91974358773699],[-127.18843007916844,56.91957122403799],[-127.18853988788742,56.91939763654452],[-127.18862499177105,56.91922315438476],[-127.18865344948203,56.919045828592374],[-127.18863552251109,56.91886444463934],[-127.18864425139621,56.918680575434735],[-127.18864670942101,56.9184934016404],[-127.18862700316876,56.918320999368134],[-127.18860852435216,56.91812168989435],[-127.18870229715549,56.917928077146456],[-127.18901129330081,56.917879301491446],[-127.18933381520884,56.91783600457098],[-127.18954873125534,56.91780377841379],[-127.18983509510588,56.91778770738388],[-127.18988296351216,56.917706580892606],[-127.18987116388617,56.91752402042178],[-127.1898161951691,56.91734185544598],[-127.18981797334672,56.917165894626756],[-127.18991971912592,56.916997983313706],[-127.19006171375254,56.91683530647036],[-127.19021505599152,56.91667364615365],[-127.1903497579856,56.91650767384195],[-127.19043906226669,56.91633651419009],[-127.190491122711,56.91615785122734],[-127.19052770472423,56.91597708881656],[-127.19057154189814,56.91579850123554],[-127.19065370993819,56.9156296482397],[-127.1909123122284,56.91551409004203],[-127.19119951976992,56.91542628558083],[-127.19145820641606,56.915314087504996],[-127.19169706049053,56.915191984907324],[-127.1918649858777,56.915036912868636],[-127.19195322587018,56.91486464135077],[-127.19204659568784,56.91469232270032],[-127.19219116063415,56.91448031078933],[-127.19219215326835,56.914345821956864],[-127.19218965453786,56.91416541795553],[-127.19218104040482,56.91398619077834],[-127.19215270748168,56.91390128040476],[-127.19194551026034,56.913783271206135],[-127.19185368218662,56.91370566751679],[-127.19173848017552,56.91353750451158],[-127.19165295320236,56.91336458648561],[-127.19158171137319,56.91318817536873],[-127.19154126726785,56.913010361005874],[-127.19149469182764,56.91283372357174],[-127.19141944463779,56.91266071118003],[-127.19130120732696,56.912493696457595],[-127.19113909926524,56.9123371700172],[-127.19098414361713,56.912179457145356],[-127.19076032536682,56.91202237556116],[-127.19080930365027,56.91184374117106],[-127.19107358018418,56.91171356206367],[-127.19096312211624,56.91163164613391],[-127.19059950984445,56.91157446457961],[-127.19030344922234,56.91150769756726],[-127.19010951845154,56.911386202209066],[-127.19006407388378,56.91117929630608],[-127.18996729805107,56.91100760130202],[-127.18986335575326,56.91083709257871],[-127.18978602990374,56.91066297795499],[-127.18973428428716,56.91048526697024],[-127.18966720169152,56.91030993781938],[-127.1895601878809,56.91013945709995],[-127.18941849503251,56.90997825925025],[-127.18926863323793,56.909818256748714],[-127.18909841072505,56.90966516450935],[-127.18890274867768,56.90952014961138],[-127.18870510187662,56.90937739393402],[-127.18852267204483,56.90922777474858],[-127.18833920778829,56.90907816480093],[-127.18817612475206,56.908922764835374],[-127.18801708448296,56.90876508638758],[-127.1878438314716,56.90861314108221],[-127.18766037276889,56.90846353023573],[-127.18748201078166,56.908312751889895],[-127.18733829457466,56.90815157060766],[-127.18719967482696,56.907989221939815],[-127.18719955400041,56.90771802376188],[-127.18720431477135,56.90753867494971],[-127.1872152409356,56.90735926978706],[-127.18720150536254,56.907180090130026],[-127.18718467900631,56.90700093875277],[-127.18720486135763,56.90682144902366],[-127.1872641775351,56.90664496346134],[-127.18732452893961,56.90646846842097],[-127.1873817709061,56.90629088114558],[-127.1873885857335,56.90611151370077],[-127.18739847488197,56.90593211816188],[-127.1873970693275,56.90575282593178],[-127.18739255495763,56.90557244149614],[-127.18735008309307,56.90539464550772],[-127.18726253879542,56.90522174430484],[-127.18715556774082,56.90505238266243],[-127.18705063461711,56.90488188167161],[-127.186950797254,56.90471021338368],[-127.18683156792024,56.904543204929304],[-127.18672560189883,56.904372713199784],[-127.18663498846993,56.904199839787985],[-127.18661300239302,56.90401961522277],[-127.18675199234653,56.90386033249692],[-127.18692097646918,56.90370749936419],[-127.18711380609793,56.90356117192178],[-127.18734849130718,56.90343911583767],[-127.18757366025775,56.90330818112976],[-127.18783393260408,56.903216147800286],[-127.18812733753055,56.90323251428335],[-127.18830574129096,56.90308519641009],[-127.18839289967204,56.90291181779794],[-127.18859000207057,56.90277105231613],[-127.18882882210735,56.90265007633385],[-127.18902177728869,56.90250822751371],[-127.18925316881833,56.902379474192735],[-127.1895246208936,56.902283973064876],[-127.18979898945157,56.90218284136219],[-127.19008717052415,56.90209615097348],[-127.19034482096222,56.901986206111694],[-127.19060240080744,56.901874020071084],[-127.19083497531108,56.90175085632613],[-127.19105383790499,56.901616611408684],[-127.19128003743138,56.90148678141642],[-127.1915250401529,56.901366864349185],[-127.19178894987222,56.901260221109226],[-127.19206019661488,56.901157992577716],[-127.19233253032931,56.90105799479959],[-127.19262924629217,56.90098242686404],[-127.19293659782299,56.900917967063194],[-127.19323647121587,56.90084461002263],[-127.19352147487743,56.900755699818816],[-127.19378958843434,56.900652375782784],[-127.19407351913085,56.90056235356504],[-127.19436276701317,56.90047788507625],[-127.19465622720871,56.900396739138294],[-127.19494968617038,56.90031559254126],[-127.19523269660802,56.90022893819544],[-127.19547141069086,56.90010570952589],[-127.19565927513908,56.899999758563716],[-127.19570071155425,56.899976963837936],[-127.19593208390715,56.899849319313844],[-127.19616449031614,56.89972166484632],[-127.19638021426726,56.89958631911589],[-127.1965949175643,56.899450982432676],[-127.1968095681777,56.89931452522363],[-127.19701901923588,56.89917587429171],[-127.19722539496132,56.8990372513819],[-127.19745257774015,56.89890740145608],[-127.19767977542794,56.898777550992165],[-127.1978954887895,56.89864220282724],[-127.19810804086111,56.89850464216924],[-127.19834780543495,56.898382519125605],[-127.19861481924956,56.89827807451135],[-127.19887345545574,56.89816810343865],[-127.19912991468651,56.89805478999131],[-127.19940642191332,56.897958100618254],[-127.1996735160091,56.897855894368604],[-127.1999236676167,56.89773815500938],[-127.20000062884647,56.89770158267808],[-127.20016969005681,56.89761933268392],[-127.20041774915993,56.89750049105419],[-127.200670106642,56.89738721246012],[-127.20095824591695,56.897301618698805],[-127.20127645485684,56.897257210240426],[-127.20160394622879,56.897247455358205],[-127.20193145387195,56.8972376994979],[-127.20223445994169,56.897167654387054],[-127.20251839665107,56.897078734085596],[-127.20278956915664,56.89697648357093],[-127.20307134384076,56.8968842201154],[-127.2033425484429,56.896783088789434],[-127.20362746390191,56.89669303630743],[-127.20392728415428,56.89661965477792],[-127.20427575099129,56.896623146422165],[-127.20463728132924,56.896518933061536],[-127.20482941718075,56.89645215195472],[-127.20510164963508,56.896351007371514],[-127.20509803770838,56.896169494871366],[-127.2051996267004,56.896000453566955],[-127.20525006161357,56.89583861108226],[-127.2052316476607,56.89564378822388],[-127.20524591003286,56.89547555769501],[-127.20529069130122,56.89529695792657],[-127.20534990708535,56.89512046543335],[-127.20542046515013,56.89494498825481],[-127.20549411249131,56.89476948236222],[-127.20551418688224,56.894589991375646],[-127.20555793044062,56.89441140123394],[-127.20570711481807,56.894253124144605],[-127.20597409659429,56.89414866452301],[-127.20623029822545,56.894028615378566],[-127.20632897827535,56.89386520362455],[-127.20637164680842,56.8936855025878],[-127.20643227575444,56.89352132376428],[-127.20650361627513,56.89333799426428],[-127.20657643377119,56.89313672056884],[-127.20654968842072,56.89297111259936],[-127.20653277847282,56.89279196539251],[-127.20650868666942,56.89261288496278],[-127.20648254074763,56.892433823644616],[-127.20645639506839,56.89225476234202],[-127.20643641260021,56.89207564377147],[-127.20642666687121,56.89189530942118],[-127.20638515776638,56.891717511622936],[-127.2064062968039,56.89153913155638],[-127.2064551952867,56.891361614132734],[-127.20646602741581,56.89118220924524],[-127.20647480517852,56.89100282347277],[-127.20648358285963,56.89082343772057],[-127.20649236045921,56.89064405198856],[-127.20649904872653,56.89046356504697],[-127.20649344658003,56.890284313024154],[-127.20646012075979,56.890105318728644],[-127.20644735591117,56.889927253978335],[-127.20639043411707,56.88974959969353],[-127.2063437837951,56.88957184993959],[-127.20629200666883,56.889394147843554],[-127.20622693970135,56.88921881056543],[-127.20613523922688,56.88904596209175],[-127.20607321157047,56.888869475893706],[-127.20596823889228,56.88869899198868],[-127.20587759465496,56.888527254247826],[-127.20582174781738,56.88835071057921],[-127.20579046446261,56.888171697403706],[-127.20576741425442,56.88799260775349],[-127.2057504751271,56.887812340698545],[-127.20573049823284,56.88763322253433],[-127.20570535955913,56.88745303169543],[-127.20568740214065,56.88727277416022],[-127.20569207451581,56.88709342705942],[-127.20572659231146,56.88691604399842],[-127.20578577469271,56.886738431788736],[-127.20586658560867,56.88656285989906],[-127.2059701299925,56.88639155931311],[-127.20609856658204,56.886227871852796],[-127.20625589813608,56.886068398292565],[-127.20645263937959,56.885920885306405],[-127.20666247335392,56.88579790452795],[-127.20687899642931,56.885659172138865],[-127.20711524907706,56.8855269797559],[-127.2073257636702,56.885392785093664],[-127.20748521078639,56.885235531663106],[-127.20755800527006,56.88506675726064],[-127.20764935466454,56.884900051456455],[-127.20771463542962,56.88472126108965],[-127.2077777028736,56.8845368880706],[-127.20776691761185,56.88435656433417],[-127.20768429735568,56.88417802979989],[-127.20754532775294,56.88400450218144],[-127.20739022444185,56.88387370910846],[-127.20715907502986,56.88374138200558],[-127.20696960311345,56.88359521913627],[-127.20684422582947,56.883429408979616],[-127.20673617553994,56.88325895502212],[-127.2066230698291,56.883090789300034],[-127.20656006581503,56.88291543380519],[-127.20656777112494,56.88273493828942],[-127.20655600833167,56.882555744452986],[-127.2065278151931,56.882376703403956],[-127.20647193927255,56.88219904039674],[-127.20657828154205,56.88198624981132],[-127.20690542879531,56.88200225846266],[-127.20723161126533,56.882020516557034],[-127.20755854885968,56.882029801648834],[-127.20788582079703,56.88201666990725],[-127.20821219762601,56.88200802825271],[-127.2085394509364,56.88202739374103],[-127.20886563439122,56.882045647728745],[-127.20919350244806,56.88205155810349],[-127.2095211436132,56.8820507458931],[-127.20984804691068,56.88205890489897],[-127.21015767691927,56.88207282739934],[-127.21047059051202,56.88206094368243],[-127.2107511677718,56.881967553787106],[-127.21101557525155,56.88181716125435],[-127.21123934673238,56.881746713330415],[-127.2115257296333,56.88164206109278],[-127.21180528263281,56.881548678454465],[-127.21204570627387,56.8814198000403],[-127.21206295220622,56.88124930082489],[-127.2120161453827,56.88106707281774],[-127.21198987624862,56.88088465299441],[-127.21201196694548,56.880705143432216],[-127.21203811094733,56.88052335473458],[-127.21209420091135,56.88034688954878],[-127.21235921019664,56.88024915896966],[-127.21261240336166,56.88013472859434],[-127.21280191044131,56.87998727364379],[-127.21300238630347,56.879829630075484],[-127.21310240512943,56.879646029946166],[-127.21316819615278,56.87948404202069],[-127.21332104694385,56.87931451615344],[-127.21353291199108,56.879192625903435],[-127.21376301184985,56.879062720220766],[-127.21400560798479,56.878938300431244],[-127.21424723799099,56.8788161305133],[-127.21449414963972,56.87869839328182],[-127.21474941515496,56.87858505994389],[-127.21501205121697,56.87847726030121],[-127.21528204144819,56.87837499446213],[-127.21556572298717,56.87828380623301],[-127.21585582727133,56.87820040170181],[-127.2161510913093,56.878118068797214],[-127.21645176212989,56.87804464967843],[-127.21676345737325,56.87799466000575],[-127.21710529769942,56.877989212591565],[-127.21744633127848,56.87799049571346],[-127.21773752447226,56.87794181669974],[-127.21793860558014,56.87780433134765],[-127.21810360872217,56.87763020312068],[-127.21831413169316,56.87749935241182],[-127.21860294837504,56.877440607940514],[-127.21892771871323,56.87741514439577],[-127.21926939317183,56.87740408956641],[-127.21960794353579,56.87739194255653],[-127.21993490790159,56.87737093843792],[-127.22026088876042,56.87735106338706],[-127.22058686928371,56.87733118751756],[-127.22091277863197,56.87730907020581],[-127.22123533209492,56.87727801849779],[-127.2215566728699,56.87724137417499],[-127.2218768362684,56.87720025755804],[-127.22219601589529,56.877160270058084],[-127.22251731931289,56.877122503047715],[-127.22284074657028,56.877086956511036],[-127.22316524368892,56.87705251972307],[-127.22348997226064,56.877025924455374],[-127.22381428540503,56.87701838326609],[-127.22413739722283,56.87703774809767],[-127.22446107772409,56.87707503709515],[-127.22478381136928,56.877114575522235],[-127.22510731543204,56.87714626135648],[-127.22543074892421,56.87717570576404],[-127.22575516589644,56.87720401943307],[-127.22607949306378,56.87722897120542],[-127.22640575100932,56.877250541981724],[-127.22673577691161,56.877260869849955],[-127.22706748410462,56.877259974512704],[-127.22735812556118,56.87719446928296],[-127.22761407701437,56.877072138636024],[-127.22783070604874,56.87694009378218],[-127.22790952085697,56.876770130265136],[-127.2279499809795,56.87658932325158],[-127.22798631456942,56.876407434652464],[-127.22804434353013,56.876229823299674],[-127.2280725885769,56.87605249385431],[-127.22800228417377,56.87587609721263],[-127.22788091292098,56.87570914902938],[-127.22773916728144,56.87554687614539],[-127.22761985162478,56.875379908321904],[-127.22751687392213,56.87520942390362],[-127.22742921824808,56.87503655318547],[-127.22730770969848,56.87486512332304],[-127.2271564719137,56.87469509522116],[-127.22704276845171,56.87451014360694],[-127.22705692801938,56.87434191298408],[-127.22696040038831,56.87418033243865],[-127.22689008804555,56.87400393556158],[-127.22688953522241,56.87382463770447],[-127.22693421047195,56.87364715343602],[-127.22702941349908,56.873475915155105],[-127.22701038021265,56.87329679213924],[-127.22696056670316,56.873119080893034],[-127.226925143143,56.872941233564],[-127.22693873320165,56.87275507821316],[-127.22703825412033,56.87259052302661],[-127.22728930031957,56.87247608400095],[-127.22757480183232,56.87237924875279],[-127.22785625020168,56.87228469251706],[-127.22814517679522,56.87219903001575],[-127.22846204154791,56.8721523248325],[-127.22875394575735,56.872095769495026],[-127.22897163269096,56.871965954123645],[-127.22917448200906,56.87182171060443],[-127.22937418686524,56.87167525527871],[-127.22956878461338,56.87152996869326],[-127.22971872927643,56.87136941609103],[-127.22986974318043,56.87120997382652],[-127.2300248979018,56.871051612772284],[-127.23017903297148,56.87089326120577],[-127.23031970586135,56.87073167520646],[-127.23043552543007,56.87056360093595],[-127.23055236235717,56.870395516919956],[-127.23065989591852,56.8702252797803],[-127.23078708436852,56.87005933865319],[-127.23092466376868,56.86989778138142],[-127.23110781993081,56.86974811850962],[-127.23132218354952,56.86961160687355],[-127.2315178340614,56.869467428038],[-127.2317437092986,56.86933753026916],[-127.23196224604435,56.86920321922796],[-127.23220175743492,56.86908215628964],[-127.2324885258597,56.86899426318844],[-127.23278063199851,56.86891304257363],[-127.23307589626084,56.86883403255844],[-127.23338083562106,56.86876837758159],[-127.23369111309283,56.868709394967865],[-127.23399603399903,56.86864373870639],[-127.23429664937508,56.86857139883392],[-127.2346047633843,56.8685090726721],[-127.23492605434437,56.86847351574969],[-127.23524291616515,56.86842791441914],[-127.23556647393099,56.86839905817114],[-127.23587965843926,56.868366938013914],[-127.23616882476769,56.86829022026982],[-127.23649011246776,56.868254659478815],[-127.23680340265416,56.86822589799759],[-127.23713183077157,56.868189146884355],[-127.23745206254797,56.868152473124205],[-127.23777558045596,56.86812249107099],[-127.23810022389473,56.86809585939373],[-127.23839016708293,56.868011284732745],[-127.23866632503102,56.86791339333311],[-127.23887849094642,56.8677735280766],[-127.23916918475972,56.86771247799119],[-127.2395084824585,56.86769466790952],[-127.23976474444623,56.867584637181544],[-127.2400643779974,56.867514534481806],[-127.24038126186117,56.86747004092878],[-127.24089289157104,56.867414718606035],[-127.24118504009081,56.86733571974884],[-127.24149441988638,56.86728120946615],[-127.24176271297463,56.86719459310522],[-127.24211032492794,56.867180058507806],[-127.24243919825011,56.8671892359796],[-127.24276612687963,56.86720179318235],[-127.2430930917754,56.867215469859815],[-127.24341825636208,56.86723700748131],[-127.2437426555394,56.867266396139655],[-127.2440612406469,56.86730704619603],[-127.24437800640673,56.867354436797406],[-127.24469377433643,56.86740295685332],[-127.24500759839378,56.86745485674104],[-127.24530575780217,56.86753043980557],[-127.24560684516007,56.867601511504205],[-127.2459109129381,56.86766919195615],[-127.24621296491777,56.867738011719965],[-127.2465101828826,56.86781584240891],[-127.24682008751628,56.86787337887227],[-127.24713197374842,56.86792865426353],[-127.24744195257438,56.867988429841255],[-127.24773710549259,56.86806627763279],[-127.24801837538665,56.86815882673561],[-127.24828162355817,56.868266117071684],[-127.24854385488356,56.86837341668235],[-127.24882614725759,56.86846595425075],[-127.24909942784315,56.86856530188014],[-127.24938464937163,56.86865332747849],[-127.24968084602706,56.86873116091484],[-127.24998096872831,56.86880335262386],[-127.2502810925513,56.86887554364202],[-127.25058514227415,56.868942092895544],[-127.25089319034716,56.86900524095121],[-127.25119629640017,56.869074039192796],[-127.25150720013514,56.869130434385944],[-127.25182299153566,56.86917893714378],[-127.25213783803504,56.86922968955869],[-127.25245072483087,56.86928382208403],[-127.25275672558793,56.86934698555097],[-127.25305693151147,56.86942141076722],[-127.2533541035101,56.86949698526528],[-127.25362208025663,56.86959077161753],[-127.25391429553295,56.86967199600848],[-127.2541824567424,56.86977138270013],[-127.25447269421906,56.86985486628702],[-127.25473391875256,56.86996216350055],[-127.25496696338163,56.870086542568494],[-127.25523024398932,56.870193818936386],[-127.25549254411814,56.87030222493037],[-127.25577281408829,56.87039476736739],[-127.25629985166717,56.87056000323036],[-127.25648821951779,56.87041585633006],[-127.25668169056914,56.87027053906994],[-127.25685853642115,56.87011977934901],[-127.25705511252808,56.869975552097415],[-127.2572967125693,56.869857783771494],[-127.25757499833388,56.86976319299847],[-127.25787772438417,56.86969413958069],[-127.25816345706569,56.86960731986859],[-127.25845129813777,56.869522720365566],[-127.25872452716182,56.86943041745218],[-127.25896181352806,56.86930708459141],[-127.25917194999474,56.869169446384106],[-127.25935497682364,56.86901974387528],[-127.25947778578266,56.86884933344576],[-127.25950595419607,56.868674238603916],[-127.25950543271813,56.86850054299043],[-127.25970117519199,56.86836304369375],[-127.25999756107494,56.86828844357019],[-127.26031197319233,56.86823159801588],[-127.26062993103086,56.86818928567865],[-127.26095223007786,56.86815365425455],[-127.26127018657355,56.868111340350204],[-127.26158584964251,56.86806120341792],[-127.26189346640639,56.86801674723515],[-127.26218184627086,56.867917565657834],[-127.26246337689527,56.86782853593994],[-127.26273631155821,56.86772838278382],[-127.26302843419012,56.86764933456344],[-127.2633066900097,56.86755473162977],[-127.26358544967125,56.867444434085556],[-127.26386648875591,56.867372215821014],[-127.26417674510337,56.86731428064686],[-127.26449587255516,56.86727642994577],[-127.26479007782204,56.8671984780609],[-127.2650831371326,56.86711717472722],[-127.26540442513364,56.86708266265012],[-127.26573135069499,56.867063783864666],[-127.26602555184934,56.86698582918851],[-127.26634907451209,56.8669568961966],[-127.26661579735304,56.86685567476965],[-127.26683274422265,56.866770628034594],[-127.26717650554941,56.866701151885515],[-127.26743183123676,56.86659667814751],[-127.26761272417387,56.86644586400433],[-127.26781972665957,56.86630824221615],[-127.26810126934008,56.866220320645944],[-127.2684295888304,56.866212627862716],[-127.26875317681106,56.86618592947086],[-127.26906450815781,56.8661302132723],[-127.26937347565733,56.86615856824403],[-127.26964694004123,56.866262353601265],[-127.26994586203088,56.86632890768315],[-127.2702587298586,56.86638187670713],[-127.27054901345281,56.86646644443666],[-127.27083430520464,56.86655554304562],[-127.27111660080946,56.86664691170869],[-127.27138593057313,56.866749613377614],[-127.27163820918886,56.866864808838606],[-127.27189045242048,56.8669788835272],[-127.27215677269655,56.86708385447348],[-127.27240703973105,56.86720018888835],[-127.27267632344729,56.86730176778531],[-127.27296852454107,56.86738182884699],[-127.2732607637749,56.86746300954465],[-127.27356576584167,56.86752613384932],[-127.27388149791392,56.86757234228161],[-127.27420679350823,56.86759716360441],[-127.27453288600712,56.86761525236755],[-127.27486158582498,56.86761874619759],[-127.27518845462424,56.86762898111529],[-127.27551463826401,56.86764930782896],[-127.27583897485643,56.86767637581413],[-127.27616146040197,56.86770906447219],[-127.27648833030979,56.86771929611527],[-127.27681545961616,56.867737368959986],[-127.27713979785932,56.8677644336945],[-127.27745440671542,56.86780728259593],[-127.27777589706999,56.86784109772268],[-127.27809646448416,56.867878283115665],[-127.2784132395664,56.86792447033394],[-127.27873854103703,56.86794928029896],[-127.27906193831164,56.86797859084775],[-127.279385373184,56.868009020879505],[-127.27970781096664,56.868040580602184],[-127.28002934236089,56.86807551043829],[-127.28035187191887,56.86810930897674],[-127.28067527175725,56.86813861550666],[-127.28099870924024,56.86816904151939],[-127.2813211868398,56.86820171752368],[-127.28164562290742,56.8682310114157],[-127.28195946611267,56.868281701646154],[-127.28226356570482,56.86834817662493],[-127.28255685008158,56.86842932636492],[-127.28284223765388,56.86851951880243],[-127.28314325287334,56.86858602226542],[-127.28346307193183,56.868538032048285],[-127.2837776377063,56.86848673105736],[-127.28407275708403,56.86840648473123],[-127.28433306092224,56.868298566028855],[-127.28452332887953,56.86815323802978],[-127.28470934035367,56.86800346928209],[-127.28492139370488,56.86786464887115],[-127.28519332665138,56.86776669913195],[-127.28549261812603,56.867688649505425],[-127.28580390013875,56.86763177279465],[-127.2861239691055,56.8675916180536],[-127.28645066496532,56.86756596532905],[-127.28677782466615,56.86755375505526],[-127.28711432633652,56.86754481322779],[-127.28745598942093,56.86753693995434],[-127.28779480521652,56.86753581798833],[-127.2881196611183,56.86754716099124],[-127.28842155145196,56.867577782464735],[-127.28859539877226,56.8677105344315],[-127.28874486395893,56.867881630779934],[-127.28900134511083,56.867997872047354],[-127.28930044247174,56.86806774229731],[-127.28961429439333,56.86811841400386],[-127.28993400686016,56.86816006141941],[-127.290256716475,56.868199436927306],[-127.29057742759137,56.868239952181455],[-127.29089614482434,56.868282727809365],[-127.29121582258264,56.86832325178463],[-127.29153553847135,56.868364895258765],[-127.2918493957389,56.868415561567744],[-127.29215645123793,56.86847750146927],[-127.29239465434182,56.86850762755039],[-127.2923348052592,56.86822245584144],[-127.29228017320442,56.868062745939206],[-127.29218380712707,56.86788327993],[-127.29212450806592,56.86770680662574],[-127.29206715009737,56.86752695201065],[-127.29198673744172,56.86736413689739],[-127.2919170254213,56.86718328465839],[-127.29181476665258,56.867011721807685],[-127.29171049331816,56.866841299623275],[-127.2916134143645,56.866670805744626],[-127.29153464628632,56.866495646872046],[-127.29147228116777,56.8663192040056],[-127.291408919411,56.8661438917142],[-127.29127811242078,56.86597821611479],[-127.29114429390836,56.86581481170239],[-127.29104311428486,56.86564435837793],[-127.29089398452015,56.865483347474814],[-127.29075610106689,56.86532110385854],[-127.29065590523076,56.865149519869746],[-127.29055776312352,56.86497791539697],[-127.29048007533495,56.864803866062246],[-127.29037278025005,56.864634593880425],[-127.29023186842592,56.86447350062965],[-127.29009502597049,56.86431124612348],[-127.28997342277566,56.86414435731934],[-127.28986407895627,56.863975105203984],[-127.28973635688874,56.863809397739196],[-127.2895720390894,56.86365413992853],[-127.28939147106547,56.863504646758095],[-127.28921802251142,56.863352841289206],[-127.28909446456686,56.86318821256902],[-127.28897591916314,56.86302017198189],[-127.28888291353266,56.86284851555567],[-127.28880216670579,56.86267449596891],[-127.28869791836601,56.8625040718346],[-127.28857329342345,56.86233833270449],[-127.28845177774005,56.86217368324766],[-127.28828526993951,56.86201396323324],[-127.28810996651976,56.86186777822547],[-127.28793549580519,56.86171598147487],[-127.28777015960578,56.86156073186229],[-127.28758452225905,56.86141240752898],[-127.2874446310099,56.86125018102918],[-127.28730267188051,56.86108797493208],[-127.28719946895858,56.86091753949725],[-127.28710952609218,56.86074473110826],[-127.28708508082671,56.860565669434145],[-127.2870554960855,56.860386658781984],[-127.2869013546059,56.86022793523388],[-127.28680936209882,56.86005514707994],[-127.28678392147926,56.85987721597284],[-127.28683557226412,56.85970188192384],[-127.28690893184574,56.8595308150567],[-127.2869027101964,56.859436742125006],[-127.28689591831397,56.85935612266615],[-127.28679458777843,56.85918006532799],[-127.2867721974857,56.85900098340725],[-127.28674134603436,56.85890715488201],[-127.28677036985106,56.85882281813102],[-127.28680548731221,56.85864428629341],[-127.28693759414026,56.858480481123294],[-127.28697384050382,56.85830530001544],[-127.28701820090986,56.858126676438616],[-127.2870635789295,56.85794804276334],[-127.2871933045329,56.85780555334799],[-127.28745992600878,56.857704289496425],[-127.28778396216512,56.85766297004494],[-127.28811198091292,56.85764850581638],[-127.2884386941555,56.857656466725714],[-127.28876636723002,56.85766217597459],[-127.28909413611746,56.85767124539469],[-127.28941928334667,56.85769378785815],[-127.28974565237925,56.85772192061119],[-127.29007405792257,56.857750032289154],[-127.29039558788705,56.857787176760624],[-127.29069833940022,56.85784579970407],[-127.2909615983375,56.85795188243272],[-127.29121205003395,56.85807378128073],[-127.29150499204471,56.85814594786961],[-127.2918207812866,56.85819547319914],[-127.29211990384859,56.85826869751055],[-127.29243079673705,56.858324994071005],[-127.29275039372074,56.858365514007616],[-127.29307097191446,56.85840490272913],[-127.29339053272653,56.8584443008124],[-127.29371199662963,56.85847919652269],[-127.29403244307646,56.858514101595205],[-127.29435679101306,56.858543363681335],[-127.29468187356761,56.858563652408655],[-127.29500959280752,56.85857046616517],[-127.29533795459658,56.85856606615087],[-127.29566262824028,56.85854377170899],[-127.29598040886967,56.85849913227981],[-127.29629376666202,56.8584455710531],[-127.29659740685119,56.858377537732984],[-127.29690211802719,56.858310613636895],[-127.2972122520475,56.85825259979672],[-127.29753236553736,56.858216898420196],[-127.29784477612834,56.85816558419442],[-127.29813880707228,56.85808643686441],[-127.29844125614868,56.85801392849302],[-127.29876187251419,56.85799278751256],[-127.29908369489243,56.85797723692159],[-127.29936915652335,56.85788808673399],[-127.29961977979781,56.857770148062315],[-127.29986098529724,56.85764670003234],[-127.30015107535813,56.85757319085316],[-127.30047306082002,56.85753186011567],[-127.30078534881481,56.85747717800375],[-127.30110309833405,56.857432526218346],[-127.30142777554515,56.857410217196254],[-127.30177429665068,56.8573966533144],[-127.30206722782516,56.85737690266322],[-127.30239060524251,56.85734675969532],[-127.30271750586193,56.85733002837052],[-127.30304461153092,56.85731889742863],[-127.30337064479735,56.85730665578408],[-127.30372164716194,56.85730424818616],[-127.30401987790887,56.857350558430795],[-127.30433655982911,56.85739556176313],[-127.30464848149275,56.85745181876617],[-127.30501730462571,56.857490692610426],[-127.30529536327674,56.85748677348861],[-127.30562277239034,56.85748459823334],[-127.30595112373942,56.85748017135267],[-127.3062773468282,56.8574735237679],[-127.30660470146874,56.85747022592581],[-127.30693156858463,56.85748262134296],[-127.30725707675899,56.85748494373969],[-127.30758546583812,56.85748163299456],[-127.30790871557325,56.85747837325052],[-127.30823550730963,56.85748852483553],[-127.30856280244377,56.85748298133969],[-127.30889122934663,56.857480787561165],[-127.30921884955819,56.8574853250301],[-127.30954374115132,56.85749997512986],[-127.30985864415804,56.85755282761679],[-127.31018011550798,56.85758768248972],[-127.31050507635358,56.85757431308684],[-127.310818841016,56.8575330396289],[-127.31114459955279,56.85754319434023],[-127.31147060284333,56.85756006969953],[-127.311798718507,56.85757916418816],[-127.31212577844082,56.857597147875175],[-127.31245372088378,56.85761063918168],[-127.31278369957262,56.8576241090483],[-127.31311354261139,56.85763309682283],[-127.31343667889338,56.85762646248609],[-127.31372739646996,56.85754170975207],[-127.31396654114202,56.85741937657262],[-127.31414847249708,56.857275209598484],[-127.31426083831032,56.85710821360838],[-127.31452000182595,56.85700136571133],[-127.31462621327812,56.85680417405532],[-127.31470237955962,56.85671935262264],[-127.31505165513228,56.85669675998114],[-127.31542221433334,56.856605590419214],[-127.31570873882384,56.85651863439623],[-127.31601236783456,56.85645167597945],[-127.31633348341843,56.856415917743995],[-127.31665459840798,56.856380158714316],[-127.3169790668617,56.85635220942877],[-127.3173035948173,56.85632650003762],[-127.31762361378532,56.85628850841268],[-127.31794361570516,56.85625051616605],[-127.31826823502968,56.856227044734176],[-127.31859553984991,56.8562225963607],[-127.31892171189936,56.856214796708166],[-127.31925008918031,56.85621145643114],[-127.31957767800057,56.856214847293444],[-127.3199062848478,56.85621822696708],[-127.32021593763017,56.856267745764754],[-127.32050522011251,56.856352211674775],[-127.3208228544213,56.8563949238193],[-127.32113574978264,56.856448890060356],[-127.32145056702466,56.85649947399657],[-127.3217762809356,56.85647822394356],[-127.32209857913567,56.85644692196294],[-127.32242630715778,56.85645478687022],[-127.32275309404456,56.85646490186895],[-127.32308072368315,56.85646940415149],[-127.32340937137336,56.85647389521749],[-127.32373523751802,56.856457121316055],[-127.32405815037579,56.8564739965328],[-127.32436222941182,56.85654037231875],[-127.3246873108405,56.85656058581221],[-127.32501465616446,56.85655724150522],[-127.32533737511012,56.856538254414694],[-127.32564513076072,56.85647235176189],[-127.32594711272547,56.856417714006966],[-127.32626482443669,56.856373000609494],[-127.32658754122927,56.8563540104103],[-127.32691488463864,56.856350661307715],[-127.32724080778068,56.856365256480856],[-127.32755756921884,56.85641244378454],[-127.3278762077072,56.85645400779999],[-127.32820132875824,56.85647533275071],[-127.32852894270012,56.85647982143813],[-127.32884880369329,56.85646757883151],[-127.3290180526102,56.85631455514801],[-127.32917688428104,56.85615715537769],[-127.3292767301002,56.8559857914873],[-127.32937344978308,56.855813338916626],[-127.32948259817698,56.85564412084181],[-127.3295834978123,56.85547386659981],[-127.32969160996632,56.85530465899116],[-127.32985252559591,56.85514835771467],[-127.33005080528994,56.85500400026718],[-127.33015273509886,56.854833735042],[-127.33029193557444,56.85467317333588],[-127.33039898589185,56.85450285540198],[-127.33049368317847,56.85433154347796],[-127.33059971374786,56.85416123585969],[-127.33067893218524,56.85398784133494],[-127.33066451185401,56.85380756311125],[-127.33063986916436,56.85362851046843],[-127.3305334085327,56.85345814202516],[-127.33040354964793,56.853293616889445],[-127.33027873699436,56.853126798563906],[-127.3301529296843,56.85296111100934],[-127.33002409196621,56.85279657510371],[-127.32990334832297,56.85262859410686],[-127.32976942915452,56.85246523078124],[-127.32965791409433,56.85229715496908],[-127.32947823983211,56.85214658783349],[-127.32930769414038,56.85199256491815],[-127.32910978477226,56.85184890822188],[-127.32882571632682,56.851766649779115],[-127.3285064827691,56.85173630127727],[-127.32817961884487,56.85172284001686],[-127.32789718194343,56.85162823563428],[-127.32771352892362,56.85148106893817],[-127.32765313552227,56.8513068648529],[-127.32771484984346,56.85113141044576],[-127.32778580614605,56.850955861380555],[-127.32786606487863,56.8507824583349],[-127.32798412371481,56.85060418547614],[-127.32804850346879,56.850446634164314],[-127.32812944766592,56.8502631380606],[-127.32819213745927,56.85008655285463],[-127.32821675703345,56.84990699566573],[-127.32820752644425,56.84972778525927],[-127.32816544753796,56.84954891136991],[-127.32817775495573,56.84936948037069],[-127.32816403568708,56.8491791094515],[-127.32812748072841,56.84901138558728],[-127.32809976670089,56.84883236461884],[-127.32811161218602,56.848639490577774],[-127.32804326107096,56.84847209246059],[-127.3278809671265,56.84831910438181],[-127.32772670614062,56.84816043059051],[-127.32757448192342,56.84800173578882],[-127.32738773922875,56.84785348014062],[-127.32721018484364,56.847704009538056],[-127.32712552314199,56.847540140025316],[-127.32705013780814,56.8473470385283],[-127.32712288188783,56.84722414263744],[-127.3273754801315,56.84710837065355],[-127.3276187747127,56.84699045213515],[-127.32784939382827,56.8468625770931],[-127.32807588563509,56.84673362326127],[-127.32829814031784,56.84660135047965],[-127.32852877127871,56.84647347409236],[-127.32879401804635,56.8463676555745],[-127.32908362166384,56.846283999883596],[-127.32938490260155,56.84621143033568],[-127.32969717383492,56.84616003978153],[-127.33001918681104,56.846123117029414],[-127.33034016505759,56.84608620409003],[-127.33066246896682,56.8460582419769],[-127.33098927826165,56.8460414393455],[-127.33131618663099,56.84602799683304],[-127.33164432188768,56.84602014416382],[-127.33197151653368,56.846014541635824],[-127.332298115378,56.84599213458576],[-127.33257100156517,56.845899677580185],[-127.33281417900416,56.845779509057415],[-127.33309739869775,56.84568918600152],[-127.3333752861424,56.84559331388802],[-127.33364473313603,56.84549080407145],[-127.3339409390108,56.84542051733911],[-127.3342590702761,56.845390347838126],[-127.33458855496131,56.845362301984785],[-127.33489536522912,56.84530198977604],[-127.33517431822176,56.84520722343866],[-127.3354511242529,56.845110237299316],[-127.33576441260846,56.84505882151632],[-127.33605615926612,56.84497848994848],[-127.33634936488573,56.8449104698813],[-127.3370704127944,56.84475062609111],[-127.33687525678728,56.84450833596056],[-127.33682537923535,56.844341872741396],[-127.33676591249038,56.844165422513704],[-127.33668907612633,56.84399139269264],[-127.33660913238317,56.843816274236495],[-127.33651289213412,56.84364468573439],[-127.3364299193417,56.84347071910454],[-127.3364049197422,56.84331184396879],[-127.33635675933633,56.84310614014891],[-127.33637769806762,56.84294006755394],[-127.33635817313458,56.84276096426723],[-127.33637970320108,56.84258255842303],[-127.3364063703138,56.84240409963433],[-127.33641142605454,56.8422236223523],[-127.33643398958048,56.84204520589957],[-127.33648117194038,56.841866535643554],[-127.33658302237107,56.84169626694754],[-127.33671175242391,56.841531324268296],[-127.33689438674827,56.8413826353373],[-127.33695100010668,56.8412094709518],[-127.33703340403964,56.84104052315181],[-127.33720034645219,56.840883030433076],[-127.3373507977767,56.84072346633553],[-127.33737745912386,56.84054500755579],[-127.33737637791684,56.84036571436657],[-127.33738658816027,56.84018630469982],[-127.33740603820924,56.84000679971902],[-127.33745837284077,56.83982919675676],[-127.33750662046566,56.83965163595985],[-127.33757343066664,56.839477245568354],[-127.33769693473354,56.83931011464555],[-127.33780600009703,56.839140891330274],[-127.33793262621413,56.838974848625604],[-127.33806132503511,56.83880990505795],[-127.33818072203107,56.83864281609782],[-127.33836019057937,56.83849191655392],[-127.33851576451194,56.83833229830568],[-127.33873076350888,56.83820008240117],[-127.33899485287974,56.83809313399587],[-127.33926632288977,56.83799171203947],[-127.3395320112885,56.837871298190095],[-127.33965543847982,56.83773218249678],[-127.33977853969279,56.83755384727889],[-127.33976412188595,56.837374692186586],[-127.33975790956141,56.837195452298936],[-127.33975576112316,56.837015049774784],[-127.33974442880523,56.8368358628508],[-127.33967474256319,56.83666064105575],[-127.33959786919911,56.83648549353105],[-127.3395169491802,56.83631150845882],[-127.33942579588953,56.83613874976534],[-127.33930916596682,56.83597073689431],[-127.33915490735019,56.835812077934136],[-127.33900979483832,56.83565108303173],[-127.3388799432846,56.83548656840118],[-127.33870437491713,56.835334853017],[-127.3385075497264,56.83519120149351],[-127.33830869714726,56.835048691282594],[-127.33807450080887,56.83492223476967],[-127.33786859648814,56.834783158686],[-127.33766972600868,56.83463952711383],[-127.3375267140359,56.834479629746795],[-127.3373866555544,56.83431633982998],[-127.33719998008654,56.83416921983881],[-127.33699707398594,56.834027870280806],[-127.3368195072066,56.83387729389001],[-127.33668052640971,56.8337151128563],[-127.33659552302704,56.83354116857227],[-127.3365493593904,56.83336346178115],[-127.33649911033469,56.83318579712816],[-127.33643761112022,56.833009369138395],[-127.33638939773682,56.832831683500444],[-127.33626466403193,56.83266599333332],[-127.33613788030607,56.832500324209605],[-127.33603145362382,56.832329962547284],[-127.33591383260801,56.83216195751015],[-127.33574538408543,56.83200792402562],[-127.33561361261806,56.831875925278176],[-127.33548272107201,56.831680040559164],[-127.33535289786157,56.831515522804764],[-127.33527708802258,56.83134036263118],[-127.33521051666328,56.83116510725622],[-127.33513982747846,56.8309898942963],[-127.3350466716967,56.83081715406097],[-127.33493922075495,56.83064680233013],[-127.33473837012127,56.830504308005814],[-127.33452429741544,56.83036531149053],[-127.33442520856677,56.83019935588227],[-127.33442084111269,56.830013373950855],[-127.33434618810767,56.82984156349025],[-127.33413006953803,56.82970258749936],[-127.33383528986845,56.82963278009125],[-127.33351577145295,56.82958900139513],[-127.33328773801699,56.82946135310597],[-127.3331152649095,56.82930847874249],[-127.33291142061375,56.82916825392928],[-127.33270646691027,56.829025798946894],[-127.33251987339908,56.82887979294829],[-127.33237788266156,56.82871875977166],[-127.33229290961717,56.828544813209795],[-127.33216519997583,56.82838139174486],[-127.33204327447284,56.82820670430571],[-127.33193718637597,56.82804530169999],[-127.33180436097246,56.827881932545324],[-127.33163086715088,56.82772906698029],[-127.33147874591805,56.827571499043],[-127.33142442604183,56.82739387521133],[-127.33141927117924,56.82721462559322],[-127.33146448496363,56.82703822038452],[-127.33159314947302,56.82687216405859],[-127.33173630630274,56.82671044123285],[-127.33191369384248,56.826559572817736],[-127.3320962537181,56.82640977162819],[-127.33228301309359,56.82626328892533],[-127.33249158240508,56.826124426160725],[-127.33271284081198,56.82599663895611],[-127.33295594767753,56.825877591741964],[-127.33316033377785,56.825736529639556],[-127.33333562194059,56.82558456022577],[-127.33343539262282,56.825414316840806],[-127.33350110216853,56.82523770008413],[-127.33356993399752,56.82506217181351],[-127.3336893465926,56.82489620866992],[-127.33386564600484,56.82474422814958],[-127.33398087771333,56.82457606650631],[-127.33407648073589,56.82440362430589],[-127.33415468280805,56.82423248185657],[-127.33423667624524,56.824052335212635],[-127.3344047284616,56.82389931826107],[-127.33459353400161,56.82375281117006],[-127.33483459261781,56.823634902130074],[-127.33511022799152,56.82353792850753],[-127.33536059700667,56.82342216381765],[-127.33558274790087,56.82329100055443],[-127.33581005427132,56.82316090439408],[-127.33608993982561,56.823068367396324],[-127.33637714774348,56.822980236820676],[-127.33664545086727,56.822878852951185],[-127.33686648333729,56.82274545771326],[-127.33709169288265,56.82261426026663],[-127.33727841500833,56.82246777071155],[-127.33748859933017,56.82234681339982],[-127.33781940625359,56.8223333123554],[-127.33814616701758,56.82232097289228],[-127.33847066674734,56.82230305276186],[-127.33878068231692,56.82225166228429],[-127.33906260472298,56.82215909773042],[-127.33935202125313,56.82207542020472],[-127.33963185166874,56.821981755380754],[-127.339864550817,56.82183030407817],[-127.34012638942865,56.82175027190585],[-127.34040199810127,56.8216532871413],[-127.34066491397445,56.82154522672356],[-127.34088493035073,56.821412955673686],[-127.34110910146059,56.82128176187975],[-127.34134465708684,56.8211538117498],[-127.34164960294788,56.82110470807642],[-127.34197036245776,56.821067766924806],[-127.34205358686948,56.82110164471825],[-127.3422793343271,56.82110490933859],[-127.34260215456831,56.82112733919559],[-127.34289916912961,56.82120382646319],[-127.34319214530018,56.82128259621323],[-127.34329777101368,56.821311758426525],[-127.3435048707702,56.8213096110604],[-127.34382705294166,56.821283856961365],[-127.34413863645884,56.82121898958808],[-127.34440034971566,56.82110645139506],[-127.34465311517974,56.821001850015506],[-127.34495756555056,56.82093817531842],[-127.34528292807589,56.820915746470895],[-127.34560945962298,56.82092692388935],[-127.34593712536122,56.82094145062765],[-127.34625938084358,56.82091793095886],[-127.34657784988451,56.82087427829726],[-127.34690233356704,56.820856337068264],[-127.34722890410733,56.82086863064099],[-127.34754900907105,56.82090116218774],[-127.34781394954747,56.82099926404787],[-127.34807515827862,56.82110748999105],[-127.34835634913834,56.82120093913142],[-127.34861148741501,56.82131146849633],[-127.34883454522173,56.82144362356758],[-127.34906767807058,56.82157007016434],[-127.34930380183106,56.821694243934296],[-127.3495760153868,56.82179450788492],[-127.34986412615949,56.82188003730304],[-127.35016407199255,56.82195199505177],[-127.35045419664475,56.82203638156263],[-127.35076281614847,56.822092558544384],[-127.3510841861171,56.82213179219157],[-127.35139589130154,56.822187935509334],[-127.3516859420967,56.82227007880424],[-127.35195820504644,56.822371458021614],[-127.35221541188862,56.82248195897415],[-127.35245020440385,56.822597175984676],[-127.35271339448126,56.822732267715374],[-127.35296658114459,56.82281591375322],[-127.3532651951048,56.82290805001251],[-127.35356997617849,56.82297098441303],[-127.35387288736878,56.823039540872784],[-127.35418749183867,56.82309004410559],[-127.35450682298712,56.82312929072044],[-127.35482808762065,56.82316515440281],[-127.35514646506084,56.82320665071981],[-127.35547239438708,56.8232290162854],[-127.35559723613922,56.82327925989768],[-127.35570944810952,56.8233498071658],[-127.35587456035319,56.82340747367686],[-127.35600418007448,56.82341844431113],[-127.35632170093585,56.8234644293304],[-127.35663910464604,56.823507052869324],[-127.35696648189104,56.82351258986385],[-127.35728956666715,56.823541704569706],[-127.35760417968356,56.82359219952315],[-127.35791200158127,56.8236539713607],[-127.35821785254645,56.823718004433374],[-127.3585352997848,56.8237617435689],[-127.3588264340192,56.82384498053061],[-127.35908460864795,56.823953216814346],[-127.35932985763745,56.82407279468244],[-127.35958708045189,56.82418328129149],[-127.3598563492188,56.82428579645824],[-127.36011960868368,56.82439285675771],[-127.36038386372334,56.824498785444376],[-127.36064114820688,56.82461039005246],[-127.3609123781457,56.82471064122214],[-127.36121079725892,56.82470862721862],[-127.36152155179136,56.82473674041768],[-127.36175351517576,56.824857574137646],[-127.36193728964916,56.82500805085032],[-127.36214688824522,56.82516385910383],[-127.36232901706018,56.82529642223599],[-127.36256323440278,56.82542283415889],[-127.36277521135885,56.82555844478803],[-127.36297311121669,56.82570204771752],[-127.36318007461527,56.82584107242397],[-127.36354763840708,56.82602547421819],[-127.36377392861668,56.82589757996615],[-127.36408366271574,56.825838287202544],[-127.36439228324517,56.825776764116355],[-127.36469874987044,56.825711901021954],[-127.36501178620875,56.825659295137825],[-127.3653237254324,56.82560445875008],[-127.36562809886075,56.82553849483954],[-127.36593675411392,56.825478088320004],[-127.36625185397911,56.82542545765735],[-127.36653606157344,56.82534065316252],[-127.366796759989,56.82522920041117],[-127.36706703321764,56.8251277319625],[-127.36733837818241,56.82502737228239],[-127.36760653507132,56.82492368372346],[-127.36786820509184,56.82481109787802],[-127.36813958539221,56.82471185677211],[-127.36844319097783,56.82465373882236],[-127.36877267243355,56.82463120762759],[-127.36909450845334,56.82459530856718],[-127.36939037079853,56.82452158108517],[-127.36967536030787,56.82443003744256],[-127.36994976136258,56.824329639909635],[-127.37021900291762,56.824228175698096],[-127.37048607332143,56.82412337193084],[-127.37074999512592,56.824016359612926],[-127.37100971839716,56.82390714987337],[-127.37126416297723,56.82379351286761],[-127.37151852659537,56.82367763491016],[-127.37176331154626,56.823551771999824],[-127.37196039825825,56.82341184523095],[-127.3720807539819,56.823248076422125],[-127.37213997263731,56.82306702456438],[-127.37215415791593,56.82288869092014],[-127.37206076043392,56.82271373790008],[-127.3720492826322,56.82253455542027],[-127.37211690121654,56.82235901794088],[-127.37226705689659,56.8221971747334],[-127.37238854386739,56.82203675567681],[-127.37230840436357,56.821859421204714],[-127.37214293973382,56.821705403368796],[-127.37196019803454,56.82155605089876],[-127.37175724749572,56.82141475670984],[-127.37156843669989,56.82126770930028],[-127.37140904949341,56.821111385006766],[-127.37128416385318,56.82094460954346],[-127.3712113356114,56.82077055915297],[-127.37119673874052,56.8205902892245],[-127.37120473645045,56.82041090083348],[-127.37125278851778,56.82023332982605],[-127.37133893983881,56.82005983814208],[-127.37140659704669,56.81988542153104],[-127.3714762643086,56.81970986297088],[-127.37155208208655,56.81953423927317],[-127.37157755403506,56.8193557866107],[-127.3715404417186,56.81917687588029],[-127.37142067944447,56.81901004656993],[-127.37123394841731,56.818862977014625],[-127.37101988844601,56.81872628225878],[-127.37085340898336,56.81857227401196],[-127.37074585077141,56.81840195311382],[-127.37069753769796,56.81822540210282],[-127.37067273236335,56.81804636109118],[-127.370666379913,56.81786712486385],[-127.3706795134343,56.81768768249055],[-127.3707018648742,56.81750814260446],[-127.37072318277238,56.81732861366788],[-127.3707445168747,56.81714908457431],[-127.37075968363506,56.81696962075267],[-127.37076153190988,56.81679029787381],[-127.37074731033387,56.81667838378841],[-127.37069896498483,56.81661613917405],[-127.37060574802813,56.81644566668843],[-127.37065389372218,56.81627033661719],[-127.37082090996438,56.81612176486018],[-127.37086794156974,56.8159442052289],[-127.37089134772555,56.81576577496802],[-127.3709589597321,56.815590238830744],[-127.37107089613828,56.81542095742054],[-127.37123983811875,56.815269002829595],[-127.37121704260164,56.815088820324604],[-127.3714473670745,56.81496199053898],[-127.3716766334419,56.81483405089728],[-127.37192585952708,56.81471934719284],[-127.372157331964,56.81459586590214],[-127.37243718780879,56.814506611573954],[-127.3727371066014,56.81443395369559],[-127.37305218678512,56.81438354730615],[-127.37337069110232,56.81434318964385],[-127.37369819090766,56.81432514869746],[-127.37402356071077,56.81430488822332],[-127.37438149469955,56.814306694334604],[-127.37467497614973,56.81428340860919],[-127.3750028332612,56.81427544636922],[-127.37532832146464,56.81425854328646],[-127.37565233785689,56.81422932791348],[-127.37597280858324,56.81418670164198],[-127.37626543154657,56.81411075107369],[-127.37646235067228,56.81396745743816],[-127.37663733561317,56.813813190150135],[-127.376807185787,56.81365897720171],[-127.37701037043396,56.81351897806878],[-127.37722595719403,56.81338220869068],[-127.37745835814505,56.813256466603946],[-127.37772859955857,56.81315721711715],[-127.37802409498883,56.813075628727205],[-127.37833133518559,56.81300736242751],[-127.37864102361229,56.81295027578828],[-127.378961805119,56.81294574064979],[-127.37928903808323,56.81297811732782],[-127.37962096535001,56.81299811608479],[-127.37994401930953,56.813028294337045],[-127.38020689797892,56.813125231094766],[-127.38043719985754,56.81325725454151],[-127.38067850687838,56.81338131578208],[-127.38094278297733,56.813488322037074],[-127.38120401724765,56.813596480856255],[-127.3814692894934,56.81370235481418],[-127.38175942053604,56.813786670794244],[-127.38208341200823,56.81378545569484],[-127.38241224016942,56.81377634363794],[-127.38273927479366,56.81377397377344],[-127.38305882087366,56.81373470167454],[-127.38337846283825,56.81369766905255],[-127.38370378221433,56.813676264055594],[-127.38402902105979,56.81365261780338],[-127.38434975843707,56.81361781236101],[-127.38464654096916,56.81354403951005],[-127.38495856489529,56.813523894108855],[-127.3852948004994,56.81354943559307],[-127.38562136163732,56.81356275256733],[-127.38594837785841,56.813560374777786],[-127.38627156430063,56.813536744831794],[-127.38658996752963,56.81349411425549],[-127.38689207900538,56.81342588240907],[-127.38720646089612,56.81338553465529],[-127.3875329811219,56.813397726591454],[-127.38785975465458,56.81338862266918],[-127.38818690628243,56.81338959970766],[-127.38851408174132,56.81339169631347],[-127.38884428767099,56.81336350208096],[-127.38916876915776,56.8133476955315],[-127.38948833468483,56.813337544144176],[-127.38981610021825,56.81332730398726],[-127.39014161422563,56.813311483915854],[-127.39046808064491,56.813293411501604],[-127.390794933167,56.81328654061057],[-127.39112224516657,56.81329199110432],[-127.39144950055825,56.81329632073061],[-127.39177604685693,56.8132804854541],[-127.39209902580691,56.813251239891564],[-127.39240979333483,56.81319634983617],[-127.39270972117906,56.8131247658235],[-127.39302478860631,56.81307543129578],[-127.39334457699705,56.813042854964564],[-127.39366664917999,56.81307413032754],[-127.39398881903017,56.813107645145614],[-127.39430429071729,56.813154679073584],[-127.39463006075587,56.81317470575263],[-127.39495704913904,56.81317118483188],[-127.39528365736622,56.81315758132314],[-127.39552996190558,56.81304958684088],[-127.39574560721776,56.81300131673501],[-127.39589521845186,56.81299858391832],[-127.39615177663138,56.812975647205114],[-127.39647507328709,56.81295535245899],[-127.39680208370234,56.812952947273565],[-127.39712894862143,56.812946060226814],[-127.3974564041246,56.81295597575216],[-127.39778379523,56.81296364984371],[-127.39810676699143,56.81293438930953],[-127.39841417311845,56.8128716764624],[-127.39872178079818,56.81281456395915],[-127.3990469221727,56.81278863958982],[-127.39937226575476,56.81276831547458],[-127.39969760899494,56.8127479905425],[-127.39997363326442,56.81269681957736],[-127.40000091105425,56.81268531824095],[-127.40022923607593,56.81259095682744],[-127.40067255247003,56.81228919111492],[-127.4011101491446,56.81239540303344],[-127.40139278325316,56.81244165424796],[-127.40168376207467,56.81252031347272],[-127.40198149571177,56.81244536956931],[-127.40228351482958,56.812375981841235],[-127.40259312221583,56.81231771775787],[-127.40288137564998,56.8122361504981],[-127.40309688017875,56.81209933800856],[-127.40330834814023,56.81196481019196],[-127.4035721368205,56.81185885205852],[-127.40384534392592,56.81175839456499],[-127.40415159275747,56.8116643022198],[-127.40438018629553,56.811549758719146],[-127.404647117273,56.81144600559706],[-127.40498890222116,56.81137057696641],[-127.40521799630011,56.81126947436391],[-127.40544794231741,56.81113586318128],[-127.40569905361825,56.81101995232995],[-127.40594805639208,56.81090294321806],[-127.4061981315332,56.81078704263025],[-127.40642110852707,56.81065910861378],[-127.40674230270011,56.810581657553264],[-127.40698253144087,56.810477068890265],[-127.40727666700883,56.81038870388294],[-127.40758182511017,56.81032151081415],[-127.40789128575568,56.81025987351408],[-127.40820411388732,56.81020604342408],[-127.40850204844831,56.81016582236473],[-127.40884215958143,56.81012962447636],[-127.40916859040205,56.81011150497368],[-127.40949599682887,56.81009225337559],[-127.40981778014165,56.81005961431393],[-127.41013383390717,56.81001022702696],[-127.41043800817964,56.80994415852335],[-127.41072602311442,56.80985697288668],[-127.41102181594447,56.809786511668676],[-127.41133991578268,56.80973709911648],[-127.4116668735804,56.80973353602769],[-127.41199426471992,56.80974229457896],[-127.41232285272959,56.80975552186867],[-127.41265140005392,56.809767628117484],[-127.41297872626443,56.80977414358661],[-127.413303577055,56.80976947869997],[-127.41362446056428,56.80974020190531],[-127.41394141713613,56.80968743344095],[-127.41424982945993,56.809625792253506],[-127.41454747550853,56.80954969939894],[-127.4148407175259,56.80946580937849],[-127.41515771117291,56.809414158153736],[-127.41546021587125,56.80935930252357],[-127.41578204545335,56.809327768688654],[-127.41610611297499,56.80930181285412],[-127.41643129520575,56.80927808532363],[-127.41675751014294,56.80925434567675],[-127.41708260949962,56.8092283760999],[-127.41740541232816,56.80919570690485],[-127.41772386866022,56.809156360546226],[-127.41803998708262,56.80910919440889],[-127.41835494841115,56.809058678198596],[-127.41867000748255,56.80901040145509],[-127.41898600028095,56.808959872397836],[-127.41930178674544,56.808903741546374],[-127.41961662142145,56.808849861660136],[-127.41993393260367,56.80880716040582],[-127.42025300010192,56.808784610909335],[-127.4205772775348,56.80879226118411],[-127.42090335360078,56.80882118337734],[-127.4212286604039,56.80885683713238],[-127.42155183568266,56.808890272160255],[-127.42187128252158,56.808933833225616],[-127.4221906065236,56.80897403289202],[-127.4225142811771,56.808992891523786],[-127.42284023975975,56.80899043178567],[-127.42316893508332,56.8089789759023],[-127.42349120866976,56.80895974516378],[-127.42382397601111,56.808975138624525],[-127.42415084168857,56.80899732006768],[-127.42447589086304,56.80899822818369],[-127.42479758630746,56.80896331134752],[-127.42511475249245,56.80891723697019],[-127.4254286450455,56.8088655945507],[-127.42574249547242,56.80881283116943],[-127.42605971699382,56.80876787450496],[-127.4263768800734,56.80872179704293],[-127.42668646322862,56.80866459571664],[-127.42697763883834,56.80858070066668],[-127.42724345563364,56.80847691256213],[-127.4274966167994,56.80836317747024],[-127.42774758628948,56.808246104062455],[-127.42800287691475,56.8081345858053],[-127.42829365703271,56.80804060619088],[-127.42851056138828,56.80791718299428],[-127.42861914095542,56.80774788672452],[-127.42871308194754,56.8075709072508],[-127.42881136974601,56.80740060370894],[-127.42885300854938,56.807223080486],[-127.42885970312172,56.8070437014772],[-127.42888587777671,56.80686410757],[-127.42889463820086,56.80668470580454],[-127.42893416841683,56.80650608522816],[-127.42901388154249,56.80633262457179],[-127.42906682447497,56.80615609730121],[-127.42913108947937,56.805980565742104],[-127.42921908189984,56.80580925494494],[-127.42929875092484,56.80563467398813],[-127.42931881516584,56.80545626820886],[-127.42932906670696,56.80523426515734],[-127.42954237272114,56.805097432077716],[-127.42974946209168,56.80495842596134],[-127.42995444260234,56.804818322138495],[-127.43013360324777,56.804672899838486],[-127.4302215468425,56.80450046829977],[-127.43032081175578,56.80432903232863],[-127.43037587835254,56.804154722500954],[-127.4303815901869,56.803976475178665],[-127.43046833245957,56.8037995741637],[-127.43051921578459,56.80362306921346],[-127.43053407496988,56.8034424795794],[-127.43057781754536,56.80326717417129],[-127.43067707771615,56.80309573805722],[-127.43068684551855,56.80291632535663],[-127.43075932066017,56.802741823149724],[-127.43082767121548,56.80256624583147],[-127.43089600475497,56.80239066867724],[-127.43096946944966,56.80221503479923],[-127.43103990897677,56.8020405549759],[-127.43105888898793,56.80186104053965],[-127.43106554736725,56.80168054163162],[-127.43108661791102,56.80150212477917],[-127.43109327609923,56.801321625909516],[-127.43108629269824,56.801077400553325],[-127.43108272904847,56.80089813534933],[-127.43108942858512,56.800718756742356],[-127.4310878728621,56.8005383487342],[-127.43105772575728,56.80036049802862],[-127.43097334652298,56.80018548796038],[-127.4308839194239,56.80001277494956],[-127.43087425000631,56.800000554614954],[-127.43076093632432,56.79984715659172],[-127.43061553626801,56.79968514777016],[-127.43045800735524,56.79952775541197],[-127.43029139038661,56.79937382523246],[-127.43011258692498,56.79922339141667],[-127.42991658128862,56.7990787506057],[-127.42976418902751,56.79892130079711],[-127.42962285373082,56.79875812550351],[-127.42943095076394,56.79861343874863],[-127.42922187081571,56.7984756652411],[-127.42901075952314,56.798337913842175],[-127.4287705069529,56.798216172797375],[-127.42849624637914,56.79811721953648],[-127.42820321442501,56.798037523826764],[-127.4279190825917,56.797948764118644],[-127.42764285955127,56.797852072054006],[-127.42735972183719,56.797762179546815],[-127.42707760183815,56.797672275223384],[-127.42676799238367,56.79761517206187],[-127.4264514925677,56.79756598862903],[-127.42612952299031,56.79753479507271],[-127.42580476090322,56.79751147601915],[-127.42518282625518,56.79749030675011],[-127.42539452317325,56.79722686518315],[-127.42540841230586,56.797047408411075],[-127.42542644087807,56.79686902673469],[-127.42549996118177,56.79669451674955],[-127.42558786602102,56.79652096900786],[-127.42567268819025,56.79634745515903],[-127.42575543560264,56.79617284346247],[-127.42583719079666,56.795999363298506],[-127.42591168266833,56.79582372178625],[-127.42600479715861,56.795652357735385],[-127.42616186997208,56.79549261628128],[-127.42637744670716,56.79536248764239],[-127.42668667518946,56.79529856562502],[-127.42685005615085,56.7951432364074],[-127.4269803369094,56.79497930661047],[-127.42710641946378,56.7948131816646],[-127.42723046829556,56.79464707901938],[-127.4273534420352,56.7944798674647],[-127.427479521361,56.794313742206306],[-127.42751196479755,56.79413744278392],[-127.42750125505331,56.793958257224546],[-127.4274874388021,56.79377798528844],[-127.42748082722454,56.79359875458422],[-127.42748748447777,56.79341825695529],[-127.4274888208604,56.79323221477606],[-127.42749524647284,56.79304499585775],[-127.42752137666953,56.79286428357846],[-127.42758074404001,56.79269553193759],[-127.42775965141333,56.792572529211505],[-127.4280963999041,56.79250493823045],[-127.42828902697715,56.79236497371826],[-127.42844814231528,56.79220520702755],[-127.42861462603958,56.79205096206786],[-127.42873864315457,56.79188485843929],[-127.42885127450047,56.791715518419025],[-127.4289535777991,56.79154405101097],[-127.42905277373436,56.79137149718382],[-127.4291581816771,56.7912011160062],[-127.42928535793507,56.791037218302364],[-127.42946224296492,56.79088734002174],[-127.42968163230702,56.79075043986806],[-127.4298761695682,56.79060708995155],[-127.42992294063508,56.79043063192066],[-127.42994295272779,56.79025110751916],[-127.42996497203318,56.790070440315276],[-127.43002924764906,56.789896030230636],[-127.43014395772661,56.789727786848495],[-127.43025759283304,56.78955843460192],[-127.4303691945828,56.78938910472879],[-127.43054815803468,56.78924032266653],[-127.43074785594531,56.78909803507048],[-127.43091636586938,56.788943764801196],[-127.43107761289262,56.78878733331108],[-127.43129816648968,56.78865490010965],[-127.43155327623964,56.78854225600817],[-127.43179267952355,56.78842081995297],[-127.43199654891086,56.78828072555703],[-127.4321723368571,56.78812973506146],[-127.43232322405296,56.787970054683065],[-127.43244307338482,56.78780287306936],[-127.43256498672885,56.787635668508834],[-127.43268381785113,56.78746849795146],[-127.43277272712409,56.7872960552516],[-127.4328112449936,56.787118567047045],[-127.43293532763259,56.78695470008885],[-127.4331039024635,56.78680266754493],[-127.43328694065801,56.78665383657157],[-127.43352424147896,56.78655931601332],[-127.43370116775127,56.78638365666261],[-127.43395205897794,56.786268813181344],[-127.43422504811905,56.786169413390795],[-127.43445811656298,56.78604355993756],[-127.43465523678589,56.78588784708153],[-127.43483782997959,56.785754707838414],[-127.43509494247891,56.78564203443188],[-127.43534062851364,56.7855250046317],[-127.4355631974766,56.785392541712696],[-127.43579834697746,56.78526778337094],[-127.4360271831481,56.78513861205709],[-127.43626450282991,56.785017190711294],[-127.4365374772067,56.784917786120445],[-127.4367737778754,56.78479637513364],[-127.4370435852645,56.78469476332148],[-127.43723086170773,56.78455036220891],[-127.43747022249345,56.784428915951004],[-127.43769068778124,56.78429535202966],[-127.43784580065665,56.78414010081158],[-127.43809146884298,56.78402306589792],[-127.43838250125715,56.78394138702531],[-127.43868671391608,56.783883094524626],[-127.43894291168088,56.78377378544208],[-127.43916032894805,56.78364137350223],[-127.43938500575865,56.783511121751346],[-127.43964951780012,56.78340508072057],[-127.43982351340023,56.78326194415311],[-127.43990420953934,56.783255443255314],[-127.43997397149565,56.78323001299597],[-127.44018300948052,56.783203033100214],[-127.44041652924753,56.78320043460069],[-127.44073139204322,56.78315322514802],[-127.44104882824357,56.783120554651966],[-127.44137160169711,56.783093427161056],[-127.44169671516522,56.78307411731048],[-127.44201952950915,56.78304810838489],[-127.44234719157478,56.78304221623973],[-127.44267425503512,56.78304753638717],[-127.4429993257081,56.78302710308603],[-127.44332135700313,56.78300782350221],[-127.44364943631665,56.78301312985623],[-127.44397645792198,56.783017326534186],[-127.44429953358686,56.7830260490001],[-127.44462563561811,56.783005600095294],[-127.44495209726504,56.78299523216317],[-127.44527874242766,56.782989343940294],[-127.44560595679793,56.78299913757923],[-127.44590502587491,56.7830507087115],[-127.44623188062803,56.78305041897708],[-127.44655782856776,56.78305350049087],[-127.44688402779353,56.78306330225441],[-127.44721202430135,56.783066359222964],[-127.44753869522427,56.7830615856589],[-127.44786580146156,56.7830680128682],[-127.44819213703605,56.783054276230395],[-127.44851367932338,56.78302154141083],[-127.4488389563391,56.78300669433532],[-127.44916596206448,56.78301087808695],[-127.44948893865168,56.782989331246775],[-127.44980271431402,56.7829409911207],[-127.45011739568753,56.78288927813739],[-127.45043108580464,56.78283869613683],[-127.45074473311821,56.782786993200695],[-127.4511093746532,56.78294764086297],[-127.45136122110574,56.78305127868026],[-127.45153186440464,56.783202893914066],[-127.45173188322501,56.783345214298116],[-127.4520205454328,56.78341930112316],[-127.45234712740056,56.78343917071582],[-127.45266818348729,56.78342099945305],[-127.452996225531,56.78342516194357],[-127.4533160509596,56.78345631143241],[-127.45357504226138,56.78355874420643],[-127.45379931509582,56.78369182396404],[-127.45397991844149,56.78383547975525],[-127.4541465791031,56.78398937780455],[-127.45440295828992,56.7841041655113],[-127.45465294101359,56.784212300721435],[-127.45495927716647,56.78426601084572],[-127.45523906303016,56.78434915565674],[-127.45551001926268,56.78444248501995],[-127.45577225601967,56.78454935970635],[-127.45603751662176,56.784655079219775],[-127.45632264777085,56.784743764892035],[-127.4565978164478,56.784840406620035],[-127.45683659365422,56.784949784530426],[-127.45709622042575,56.78506901318544],[-127.45735352142731,56.785180422972445],[-127.45757764790949,56.78530901560928],[-127.45774030015151,56.785465195841994],[-127.45786216813268,56.78562631784926],[-127.45810541425593,56.78574572910273],[-127.4582740441354,56.78592425445906],[-127.45845298305032,56.7860499928234],[-127.45858828997636,56.78621432479906],[-127.45872756854757,56.78637524994828],[-127.45884260304067,56.786545413428726],[-127.45894270453798,56.78672695166976],[-127.45908057386612,56.78687780653241],[-127.45928021707509,56.78700891379959],[-127.45925309829663,56.78726809041788],[-127.45915708642245,56.78743951202595],[-127.45905902505667,56.78761095667141],[-127.4589630114726,56.78778237817129],[-127.45887835730939,56.78795591289836],[-127.4587968094183,56.78813053322876],[-127.45874094551603,56.78830710540594],[-127.45869639930088,56.78848467069681],[-127.45867136571374,56.7886631367751],[-127.45864734805426,56.78884159141819],[-127.45862438855507,56.78902115480523],[-127.4585921755545,56.7891997018124],[-127.45857225466705,56.789378110333026],[-127.45860555873355,56.789554798528144],[-127.45859490753077,56.78973422330125],[-127.45858727896079,56.78991249338114],[-127.45860427781268,56.790091606658635],[-127.4585982787413,56.790231756141736],[-127.45885243065099,56.790394749362484],[-127.45909883341818,56.790515244552466],[-127.45934200374853,56.790631293114814],[-127.4595346571687,56.79076696193387],[-127.45964573517179,56.790967427661286],[-127.45979734880059,56.791074421796765],[-127.46027120132035,56.79124726214152],[-127.46048238517365,56.791384961969676],[-127.46066186387189,56.7915241398568],[-127.46091518720237,56.791664725560906],[-127.46110846097218,56.7917891786731],[-127.46128944171359,56.79194066604879],[-127.46148523229199,56.79207741747223],[-127.46163174921688,56.79223937939256],[-127.46185077444196,56.79236690274118],[-127.4620532834969,56.79246435450184],[-127.46209936509874,56.79265322528137],[-127.46224211129811,56.792633682597135],[-127.46243177048274,56.792608006548484],[-127.46262128573004,56.79263276146102],[-127.46294157611696,56.7926739689625],[-127.46325688017936,56.79271859401229],[-127.46357782331022,56.79274970665355],[-127.46389483863399,56.79278534555264],[-127.46421489372358,56.79281982864567],[-127.46452916778867,56.7928644622803],[-127.4647784721669,56.792952415284645],[-127.46511913108407,56.793016920857696],[-127.4653753481015,56.79312496638866],[-127.46563456329542,56.7932307361764],[-127.46593061623494,56.79330807187758],[-127.466232432824,56.793348359871366],[-127.46656461589262,56.79335132141619],[-127.4669031717042,56.79333291736437],[-127.46722831289334,56.793285527286564],[-127.46751948414806,56.793234038798396],[-127.46780946493702,56.79315118465927],[-127.46813712359129,56.79314298684338],[-127.46845062212111,56.793112535597416],[-127.46877017776632,56.793052877699566],[-127.46903581832116,56.79295012502094],[-127.46934025639563,56.79292425704826],[-127.46964900934587,56.79293083853335],[-127.46999198829334,56.79286754971313],[-127.47025443148921,56.79276146881639],[-127.4704659486682,56.792663810428564],[-127.47082247365756,56.792579072965374],[-127.47110846667611,56.79247272276217],[-127.47142443669223,56.7923996510437],[-127.47168017234439,56.79227907484965],[-127.47181112404618,56.7922462076924],[-127.4719710744543,56.792220855323684],[-127.47226704706227,56.792161456813595],[-127.47248351575946,56.79205925611794],[-127.47276181649272,56.791966437623074],[-127.47301374586884,56.79185374667407],[-127.47331126755414,56.79178088018228],[-127.47360019243648,56.79169802490015],[-127.47387785563363,56.791615297174],[-127.47418117900729,56.79153339731486],[-127.47448294803385,56.79146496237229],[-127.47478139480764,56.79138984059549],[-127.47505149840758,56.79132400635021],[-127.47531250803898,56.79118094953466],[-127.47561719177753,56.79113489192112],[-127.47597718555059,56.791115098882095],[-127.47617181167334,56.791032192178236],[-127.4763674289381,56.79081367383726],[-127.47664132703396,56.79079374006948],[-127.47686506735853,56.790694810957724],[-127.47720327573994,56.79061474726145],[-127.47744468288094,56.790495443632274],[-127.47769967040807,56.79038270850131],[-127.47792843972121,56.790254582914855],[-127.47816557371263,56.79013084405406],[-127.4784415842295,56.790032435989474],[-127.47874009787765,56.789959545499364],[-127.47905236357646,56.789897703810446],[-127.47937021296794,56.78984812483058],[-127.47969096687189,56.78982092510027],[-127.48001244413256,56.789839663440226],[-127.48033602546916,56.78988639347743],[-127.4806579485479,56.789916331749275],[-127.4809589736096,56.789882630546124],[-127.48128488679106,56.7898295926011],[-127.4816036795607,56.789777755981895],[-127.48191481774289,56.78974057480642],[-127.48223436769386,56.78968200397598],[-127.48254696886286,56.78962911523989],[-127.48286289160296,56.789582911669896],[-127.4831846140943,56.78955457147823],[-127.48348047757976,56.789519802836494],[-127.48379873491048,56.789427623029646],[-127.48409830931519,56.78935582854856],[-127.4843978232541,56.789282913395056],[-127.48469521779724,56.78920778052005],[-127.48499362734411,56.78913263530867],[-127.48552352388388,56.7890010413817],[-127.48554215882073,56.788819280108235],[-127.48555466393319,56.78863758919435],[-127.48557847141645,56.78845688925608],[-127.48562716359719,56.7882837483867],[-127.48582788520126,56.78814696514607],[-127.48610707229541,56.78805186600173],[-127.48622353875466,56.787882429489585],[-127.48629014886758,56.78766873881846],[-127.48647850360722,56.7875567511245],[-127.4866883163058,56.78741650015008],[-127.48690132130459,56.78727957414932],[-127.48712680494782,56.78714698708453],[-127.48737558004751,56.78703430392219],[-127.48769330914894,56.786982464261236],[-127.48801929344275,56.786985441386406],[-127.48833833263498,56.78702099676467],[-127.48865592701631,56.78707225726062],[-127.48893759554724,56.787148584810055],[-127.48925366040324,56.78721330941649],[-127.48958544766614,56.78720725055421],[-127.48985189519539,56.78720754618979],[-127.49023401327939,56.78723116429642],[-127.49056278186005,56.787253154273266],[-127.4908837416405,56.78725842339903],[-127.49118646016414,56.78724260924969],[-127.49153761456024,56.78723408095233],[-127.49186407244233,56.78722247433475],[-127.49219585937497,56.78721640878273],[-127.49253562461317,56.787204647067654],[-127.49286476226945,56.78720981698889],[-127.49316584572779,56.78725789493322],[-127.49343482189583,56.78735004853538],[-127.49368638300935,56.78746929850685],[-127.49393211887629,56.78759645989912],[-127.49418475887674,56.78771681717038],[-127.49440375728443,56.78781514904163],[-127.49477874900113,56.78783995677884],[-127.49511276249363,56.787838340756984],[-127.49543536417308,56.787806597732164],[-127.49576993364518,56.78779264626464],[-127.49608147526887,56.7877666327467],[-127.49639075463594,56.787787712596945],[-127.49671539802321,56.787835510058954],[-127.49701407630057,56.7879004169869],[-127.49729432541083,56.78799243239861],[-127.49761182875609,56.78801453490611],[-127.49775853140278,56.788018440946466],[-127.49796240617187,56.78801720258535],[-127.49831123855873,56.788027734181135],[-127.4985656168307,56.78803375497864],[-127.49884819894277,56.78802712138285],[-127.49922728393501,56.78802497289001],[-127.49955358170477,56.788035762126576],[-127.50000003716667,56.7880530029444],[-127.50001148507319,56.78787244285126],[-127.50008170111987,56.787701287775285],[-127.50021057070593,56.787536176936165],[-127.50032082806688,56.7873667990247],[-127.50043420897521,56.78719850548726],[-127.50054659984022,56.78703134399978],[-127.50066824356752,56.78686519581933],[-127.5007444432345,56.7866894883986],[-127.50085883640216,56.786521182778614],[-127.50092272684492,56.786345617992275],[-127.50096912543397,56.78616801468191],[-127.50100114044513,56.78598945749331],[-127.5010208205956,56.785809922682546],[-127.50107340706899,56.785633368290846],[-127.5011413650199,56.785456635628094],[-127.50117547058632,56.78527917487905],[-127.50128652248904,56.78505151241868],[-127.50133950003104,56.78475280088533],[-127.50117706964082,56.78468632418556],[-127.50091710261106,56.78458847902675],[-127.50072541150304,56.784428205199866],[-127.50071805445789,56.7842646733938],[-127.50046146735521,56.784121961608875],[-127.50024295985374,56.78398329065024],[-127.50010547892316,56.78382014636249],[-127.49990831725468,56.7836767448506],[-127.4996899878511,56.783542553641254],[-127.4994878301418,56.78340257142579],[-127.49927957212279,56.78326378024919],[-127.49910160745756,56.783113431275865],[-127.49892970253173,56.78296077058457],[-127.49874969225505,56.78281044487669],[-127.4985334201095,56.78267622806871],[-127.49831710610356,56.78254089074921],[-127.49810685192892,56.7824032416317],[-127.49787249604601,56.78227819841646],[-127.49761630348577,56.78217133807465],[-127.49737636893957,56.7820609271745],[-127.4971060142517,56.78195871235918],[-127.49682781426516,56.781865553028354],[-127.49654761061588,56.78177353694992],[-127.49623490203727,56.78171551590859],[-127.4961751248071,56.78165344987517],[-127.49619098832939,56.78148068459493],[-127.49640381353483,56.78134038278327],[-127.49667856913159,56.78123858763536],[-127.49690120672206,56.78111386078417],[-127.49704871894397,56.780954141350016],[-127.4971805565483,56.78078675844094],[-127.49734244744081,56.78062799300621],[-127.4974683709972,56.78046628153687],[-127.4974491050113,56.7802860779761],[-127.49744113955876,56.78010686434842],[-127.49754101681432,56.77993424757988],[-127.49770824806139,56.77978102322357],[-127.49793576952334,56.779650634745614],[-127.49815608563037,56.779519208606764],[-127.49843198605987,56.7794207583773],[-127.49870693953955,56.77932455983724],[-127.49885135704675,56.77916487419415],[-127.49885670657171,56.77898550649798],[-127.49887542059491,56.778807104701016],[-127.49894033956542,56.77863152976063],[-127.49899189351734,56.77845498894002],[-127.4989869583029,56.778274619769775],[-127.49897993164667,56.778093154183445],[-127.49917917472747,56.77778826803336],[-127.49943644508714,56.77781778666695],[-127.4997915906638,56.77783496396533],[-127.50007448878047,56.77783840915097],[-127.50046997172531,56.7778652029806],[-127.50075902439268,56.77789547117396],[-127.50109847120879,56.777903861662594],[-127.50142578695187,56.77791687464539],[-127.50175486322269,56.77792202174652],[-127.50207459541703,56.77795081034932],[-127.50238219735236,56.77800999684336],[-127.50268128762623,56.77808721203365],[-127.50297434883335,56.77816785855316],[-127.50325757853423,56.77825870458197],[-127.50354467189493,56.77834390181491],[-127.50385758177293,56.778407505861345],[-127.50180677442323,56.77741151863871],[-127.4976452236357,56.77598047493386],[-127.49567543415023,56.77421020453339],[-127.4939118582673,56.77289475475436],[-127.4912124109142,56.77044252354699],[-127.49007535099256,56.768151563681464],[-127.48955946573233,56.7666692808361],[-127.488218336948,56.763753099257805],[-127.48863792162025,56.76243935657757],[-127.49456832103701,56.76187789360657],[-127.4981088270402,56.76090456146439],[-127.50226975109699,56.75987910139142],[-127.5037371970737,56.75576496148221],[-127.50405117715071,56.75456894294101],[-127.503227582375,56.7517096666971],[-127.50313244582337,56.74896743845319],[-127.5066736774476,56.74725871340435],[-127.51207980420862,56.74686390277217],[-127.51748337595605,56.74703370024732],[-127.52049661730778,56.74715071351467],[-127.52496701174167,56.74675739629381],[-127.52912648193623,56.746762069167005],[-127.53172412419278,56.7472154472697],[-127.53546555765058,56.74749382424201],[-127.53889450138837,56.74750685591065],[-127.53889952946525,56.74600960400406],[-127.5352632949909,56.74510251473944],[-127.53297762547007,56.743838644019704],[-127.53194402414108,56.74138546904602],[-127.5322629955398,56.738476975145154],[-127.53174709192555,56.73596388078031],[-127.53269013596427,56.731783915336756],[-127.53269728362271,56.72813502842453],[-127.53270018093878,56.72665575217638],[-127.53363927662787,56.723910258866844],[-127.53406321592546,56.719395794262375],[-127.53334341577894,56.71694791190696],[-127.53251955974436,56.71277101360226],[-127.53252288263059,56.71088831992179],[-127.53242320791131,56.70940131034086],[-127.5312811388188,56.70808803184993],[-127.52618985810223,56.709403377014034],[-127.52203270948924,56.71190882566737],[-127.51943408111838,56.712880735933325],[-127.51620985492987,56.71533019406811],[-127.51298523634625,56.71641689589334],[-127.50716728694165,56.7164759219778],[-127.50197602344294,56.71647361328558],[-127.49449321849181,56.71725964009624],[-127.48940381147622,56.717381156177545],[-127.48555999659882,56.71725506974886],[-127.48057223115163,56.718056402419286],[-127.47891110314536,56.718514704797094],[-127.47631091643892,56.71867891022453],[-127.4728904109524,56.716853244805755],[-127.47061020087995,56.71496073221076],[-127.46905632888316,56.71382194064187],[-127.46708822367296,56.712275453337256],[-127.46532668919261,56.711130014137275],[-127.46502639481888,56.708730845298575],[-127.46264297133662,56.70735934017539],[-127.45880057401236,56.70724141958374],[-127.45380640457782,56.70929686625626],[-127.44871181666329,56.71089603796297],[-127.44590878140696,56.71123224058946],[-127.44186393882262,56.7099685869265],[-127.44010158802912,56.70916348492719],[-127.43761293825435,56.70790924200315],[-127.43492133641145,56.70636137206988],[-127.43326345230224,56.70533090339401],[-127.43098763337368,56.703679732014194],[-127.42943579274454,56.70246874947325],[-127.42611506011592,56.70167173826759],[-127.42518646601799,56.7005255433579],[-127.423743832983,56.69835407382725],[-127.42375262092497,56.696587939304955],[-127.4254231909584,56.69464211227942],[-127.42615670978165,56.69315484765582],[-127.42440259212476,56.69104062450476],[-127.42222928095936,56.689782638076856],[-127.41746168846556,56.68829314830484],[-127.4154983715111,56.687149288936574],[-127.41457082347837,56.685088636596156],[-127.41374994407438,56.683035777684495],[-127.41095135872253,56.6827436679485],[-127.40451788259676,56.68279588592248],[-127.40161226950873,56.682791603860586],[-127.39621610969938,56.68278732017877],[-127.39465341006489,56.68380823539773],[-127.39422336306663,56.68626019384489],[-127.39514391553452,56.688894788426445],[-127.39481908019282,56.69134561902421],[-127.39200418250873,56.69306132777544],[-127.38628640075545,56.69470955640385],[-127.38421107447417,56.69482146182071],[-127.37964200774778,56.69480760021493],[-127.37746352316064,56.69475017287062],[-127.37446260701311,56.69291752552856],[-127.37436697187408,56.69183383783761],[-127.37176494959533,56.69268623776031],[-127.36988400462353,56.694624607508544],[-127.37038787002317,56.697254829953415],[-127.3696430398312,56.700221025359745],[-127.36557475553188,56.70300724757277],[-127.36119868820371,56.70551868251667],[-127.3582857313011,56.70625754169028],[-127.35299060217083,56.706133816199554],[-127.3495657721716,56.70589173949309],[-127.34737608537782,56.70720548622878],[-127.34663177506528,56.70983088789906],[-127.34744935977182,56.711669058463485],[-127.34908958208996,56.714690926461856],[-127.34886496274886,56.71743642957873],[-127.34926226401947,56.71988857774359],[-127.34685562213542,56.722459626130245],[-127.3446462049314,56.72650773916781],[-127.34379203819685,56.72969906252939],[-127.34201219038906,56.731752524062934],[-127.33763540751825,56.733402555870406],[-127.3351416251227,56.73340144147626],[-127.3301440041878,56.73453767838715],[-127.32567213518548,56.73480772689499],[-127.32027500323439,56.73417268357195],[-127.31580849057838,56.73387756701682],[-127.31040219724235,56.73426416917618],[-127.30530200299485,56.735508052352806],[-127.30259795070108,56.73567875838194],[-127.30094371072244,56.73441348365242],[-127.29970869192984,56.732982613958676],[-127.2982663716544,56.73150002950734],[-127.2969358834572,56.72892263837614],[-127.29592107434654,56.72623450059083],[-127.29562728816836,56.723781175558216],[-127.29501814539688,56.722236425800645],[-127.29492023681111,56.72166368060352],[-127.29493702474518,56.71944032507217],[-127.2935017161043,56.71725840905114],[-127.29195468724382,56.71589336182384],[-127.29040470037997,56.71474347395856],[-127.28706381380785,56.71679378916364],[-127.2832073957512,56.71860709746309],[-127.27821300079728,56.7195171781583],[-127.2754974932109,56.72105003070126],[-127.27433310198467,56.723562592467054],[-127.27193716198488,56.72452745900531],[-127.26829389053952,56.72508319794561],[-127.26372159732115,56.725074197114594],[-127.25269400629807,56.726588957117805],[-127.2495444028439,56.73034863529866],[-127.24557842096353,56.73200050451994],[-127.24172707926881,56.732674028596996],[-127.23526845027793,56.73431363823722],[-127.23015953302047,56.73606558775384],[-127.22568504949048,56.736341159052024],[-127.22247432169726,56.73570819342385],[-127.22206065171551,56.73524595652358],[-127.2200998153777,56.733874999054386],[-127.2176225660548,56.732607487200525],[-127.21484356630816,56.72973814998231],[-127.21382102842486,56.72802660498507],[-127.21217521359854,56.72659879477713],[-127.20989381184548,56.72601059707697],[-127.20835151414114,56.72458177297864],[-127.20568040990548,56.721720219567885],[-127.19866298102484,56.71718683681275],[-127.19671721832566,56.71495485061355],[-127.19467408982605,56.71174664275775],[-127.19314109615163,56.70951976123194],[-127.19191674227523,56.7075141231219],[-127.19047806632246,56.706084158055],[-127.18697291647855,56.70384848180314],[-127.1863575306857,56.70321768109938],[-127.18410292649925,56.70046845341943],[-127.18205951389874,56.697493158709015],[-127.18197126296303,56.696005927246446],[-127.1809743265182,56.69257284155904],[-127.17913088118041,56.69016939031562],[-127.17668013862003,56.68674058993737],[-127.17504947250202,56.68432619015403],[-127.17300034399277,56.68158390962758],[-127.16992183912245,56.6787164762401],[-127.16859934347534,56.676433679113785],[-127.1673861828699,56.67390785761361],[-127.16452155186842,56.670133026815684],[-127.1601016141718,56.66686514920696],[-127.15680701474317,56.664626859579265],[-127.15423319623135,56.66301848128474],[-127.1459376987027,56.662644217696624],[-127.14148066061374,56.662513405643146],[-127.13766744138778,56.66079016975307],[-127.13187476312883,56.65939793696874],[-127.12731448182095,56.659213762458876],[-127.12214372381028,56.65794115725422],[-127.12028926453326,56.657025039729916],[-127.11885239873008,56.655926001300195],[-127.1174235501552,56.654038069483775],[-127.11725147025916,56.651180128889216],[-127.1169684057312,56.649183670310016],[-127.11605992678801,56.64723744448419],[-127.11525914557944,56.64494966379402],[-127.11415674329467,56.6420370303008],[-127.11263035803206,56.63985410815819],[-127.11140528378938,56.63842152232465],[-127.11102000785672,56.636085330806914],[-127.11352091943999,56.63534666997203],[-127.11602534086698,56.633810165906475],[-127.11595053468284,56.63152508740396],[-127.11360860161194,56.62843496000372],[-127.11187188095752,56.62637039341601],[-127.10951283069842,56.62448147251038],[-127.10394618267122,56.62252141988088],[-127.09816507486,56.6207870493147],[-127.09331667260932,56.61922378875594],[-127.0885619135171,56.61840353063861],[-127.08470928886399,56.6198163861694],[-127.08291360087482,56.62237711974751],[-127.07870541892633,56.626992757242355],[-127.07097651987792,56.63124315403572],[-127.06775191944709,56.63225588396437],[-127.06038554784368,56.63263039188348],[-127.05386804661181,56.631796433236765],[-127.04724153976824,56.631375353763374],[-127.04316827262039,56.63341619125225],[-127.0414922518661,56.634550174926794],[-127.03898412581177,56.635905967151956],[-127.03408974301485,56.6375408069962],[-127.03136874736519,56.639238769326596],[-127.03186167147038,56.6409647833673],[-127.03380292027371,56.64279572342496],[-127.03346306728709,56.64456426166134],[-127.03002491051663,56.64580183793389],[-127.02595190528314,56.647788345377315],[-127.02345136302412,56.648632852596386],[-127.01907889699503,56.649698272520745],[-127.01598081208525,56.64894288129852],[-127.01174218734317,56.648178439839164],[-127.00707971629556,56.64787430871867],[-127.00344592746835,56.648261164750295],[-127.00029974923532,56.65041891022374],[-126.99998089620813,56.650923338127676],[-126.99862042524077,56.65165991954141],[-126.99522976175247,56.65621269169742],[-126.99248394891102,56.659173876762274],[-126.98973132848587,56.662645979215185],[-126.9842869134748,56.6657621135458],[-126.97607037336567,56.666971847703714],[-126.97181877307071,56.666959112850094],[-126.96135192729228,56.66633834525239],[-126.95649521986759,56.66522710134321],[-126.9538077443545,56.664762962091025],[-126.95047253659288,56.66554050058906],[-126.94920180920732,56.66695712064684],[-126.94885251285582,56.669299162542025],[-126.94602906702339,56.670431361865326],[-126.94166666432717,56.67075009265915],[-126.93768792111528,56.67278688119679],[-126.93777515872547,56.67369156171284],[-126.93772319116714,56.67678435274613],[-126.93467450167876,56.678993561491524],[-126.93049688396805,56.680457902568286],[-126.92393358924042,56.68173303983545],[-126.91841762660982,56.68267770912308],[-126.91137229932505,56.68212707488751],[-126.90524662088082,56.68226876615047],[-126.8973325113858,56.68359682526337],[-126.89239698457689,56.68653520225794],[-126.89173302942622,56.68881651946584],[-126.88425573099782,56.689118913332095],[-126.88364775855116,56.68831635999369],[-126.87983485175391,56.68692616331489],[-126.87281363711455,56.68500184791202],[-126.87012771433994,56.684302898552964],[-126.86816204083698,56.68400240882724],[-126.86600909380674,56.68268131315686],[-126.86344952199337,56.68089680523722],[-126.85953687601895,56.6792736431628],[-126.8576925003214,56.67806688559712],[-126.85388236272348,56.67666696195714],[-126.84899153294771,56.67727287440636],[-126.8451434232672,56.67781799882932],[-126.84110289195947,56.67750377752141],[-126.83655466681567,56.67657424878981],[-126.83223304417477,56.674719876055306],[-126.82737271518984,56.67412368397466],[-126.82045217583226,56.67247378519019],[-126.81270222366317,56.67094526825542],[-126.80789680007683,56.67250815758299],[-126.80947634608498,56.676289743569946],[-126.81449218834916,56.679574630957475],[-126.81569644522556,56.681646526285284],[-126.8144944085674,56.684549281301685],[-126.81247520534403,56.686650468348276],[-126.81210016106456,56.689727269276695],[-126.81592951075599,56.69020508261296],[-126.82483603576024,56.691286858619826],[-126.82937426971343,56.6926381628055],[-126.83461807993166,56.69517689233548],[-126.83788519889622,56.69793441446685],[-126.83919838861875,56.699664804976585],[-126.84040250110218,56.70178132470608],[-126.83777163851359,56.70342080656669],[-126.83120908802572,56.70948667606593],[-126.83125661426355,56.712229211275215],[-126.83452987206677,56.714646198530325],[-126.83489323719557,56.71722535796993],[-126.8314432057423,56.71840390093599],[-126.82470043023221,56.717846546161475],[-126.8141143468699,56.717384817771034],[-126.80611395879657,56.71756045857222],[-126.80059696181861,56.71804293002597],[-126.80038572354479,56.718214545430925],[-126.7978867111256,56.7185437214815],[-126.7937067666712,56.71960026499842],[-126.79221383187627,56.721420057267444],[-126.79265267990586,56.72507449146148],[-126.79145493838574,56.727636444276456],[-126.78553196564728,56.7276008643687],[-126.77927865009104,56.72853506818589],[-126.77812066864452,56.729151565085715],[-126.77921824701941,56.73133206227063],[-126.77788880985848,56.735033060541134],[-126.77517828642063,56.74009584266623],[-126.77629174315166,56.74147852257703],[-126.7780030268069,56.74867500144484],[-126.78353448133429,56.752424279318795],[-126.78855082865824,56.75611373056372],[-126.7891893888489,56.76017040235177],[-126.78352566969461,56.76236508672528],[-126.77568693597523,56.764025791936554],[-126.76719589198048,56.76711512319673],[-126.76424321410452,56.76886259792209],[-126.75332955699798,56.76845151577576],[-126.74267890516587,56.77015344260769],[-126.73556136229209,56.7721571497434],[-126.72753155672571,56.772964456542326],[-126.72306715385302,56.77258610992864],[-126.71593076871314,56.77082408278601],[-126.71128505311957,56.7693079477882],[-126.69655045984753,56.76778360520656],[-126.68134702238346,56.76852786042095],[-126.66909860566446,56.771585625268024],[-126.66270123736268,56.77365328874942],[-126.65401989570555,56.775526032995934],[-126.64670625900614,56.77672805684966],[-126.64114637878066,56.778458809110056],[-126.63892980017557,56.77964400701303],[-126.62943400982151,56.78065860438714],[-126.62348112668928,56.781413468972104],[-126.61191442388086,56.78212300906724],[-126.60680604015525,56.782478710470336],[-126.60077370379993,56.78231861135301],[-126.59250014261534,56.780429570106044],[-126.58615374233501,56.77655034259057],[-126.58257964225405,56.77407460961384],[-126.5779006392606,56.77020541142723],[-126.57832913366911,56.76598168053085],[-126.57903812125993,56.76278750446298],[-126.58098445435441,56.76011662448286],[-126.58364871174922,56.75768449489122],[-126.58401211750972,56.75591705274788],[-126.58106387247113,56.75333092936422],[-126.57819451548514,56.75182000315083],[-126.57737722265078,56.75124103113846],[-126.5725553124273,56.74897679453973],[-126.56802927233994,56.74716821764941],[-126.56380757031394,56.74570773163696],[-126.56210510639825,56.74334881146179],[-126.56336131823569,56.73930087034667],[-126.5608281147143,56.73699934052876],[-126.55818523401314,56.73480579888874],[-126.55767937906496,56.73435085260277],[-126.5547093802669,56.73272334361705],[-126.55130993945303,56.73167125189641],[-126.5472080217157,56.72968986606151],[-126.54393723905187,56.72778552902209],[-126.54172257071436,56.72530304277022],[-126.53877090318525,56.723056641692125],[-126.53664364156228,56.72115632301592],[-126.53557268826319,56.71863313762781],[-126.53359129453882,56.71519050100936],[-126.52699853518439,56.71325461796675],[-126.52359021224613,56.71265001408951],[-126.52155071838317,56.711322750406715],[-126.51775719688456,56.70957226531299],[-126.51562814962516,56.707788150789405],[-126.51319224813987,56.705825960541574],[-126.51198860833286,56.704333895051924],[-126.506318640578,56.70285043853703],[-126.50076129372832,56.701267705662644],[-126.49695873202081,56.6998572596536],[-126.4889056424456,56.698247747849514],[-126.4848783599706,56.69752795698996],[-126.4788873009568,56.696447852025585],[-126.47795666751352,56.696325816341435],[-126.47035837488573,56.693575169200265],[-126.46791278825499,56.69206930223981],[-126.46595268992768,56.68816851996535],[-126.46344180194664,56.685345252675276],[-126.46049012409476,56.68349151488671],[-126.45898465170586,56.68182080188055],[-126.45770123309025,56.6796473616477],[-126.45619771713785,56.67786009572888],[-126.45699077146298,56.672327171226186],[-126.45513180197038,56.668596212762615],[-126.44907110847159,56.66660079420669],[-126.44413223771868,56.66530034272174],[-126.44218933975517,56.66437487703834],[-126.43903359527782,56.66239589915428],[-126.43609037957735,56.66030857550031],[-126.4319962392771,56.65845807938777],[-126.42787048137362,56.65778168870518],[-126.42448683685167,56.65987223523753],[-126.42205347076904,56.66138596954818],[-126.41883296111287,56.66152194096256],[-126.41321606397894,56.661988188399796],[-126.40809359336366,56.66325928214735],[-126.4073629706483,56.66341395824287],[-126.40336967094744,56.664977068631856],[-126.40021829042523,56.66620582333806],[-126.39632027916957,56.668055231509456],[-126.39200862717371,56.66984303970848],[-126.39232877885058,56.672817732867195],[-126.39224396180906,56.67544410947805],[-126.39285997985203,56.67887501899451],[-126.38204910992982,56.679454197248695],[-126.37647165516908,56.678610144268305],[-126.36847028214083,56.678866261889084],[-126.3599615261641,56.67884545009672],[-126.35149088711496,56.677730505267036],[-126.34388808995539,56.67845904483891],[-126.33609864977798,56.678667776897264],[-126.33288527107494,56.678523733438055],[-126.32634854084797,56.678513532946454],[-126.32091249312653,56.67965647713084],[-126.31333485505789,56.67969301447417],[-126.3073455292324,56.67877527540726],[-126.30199989426661,56.67730006048407],[-126.30090939349114,56.6757968531567],[-126.29640185710569,56.67415812378325],[-126.2893454354115,56.67408450415192],[-126.28375337468225,56.67379218143332],[-126.2825097288441,56.673732169409355],[-126.27547922300954,56.67297656341026],[-126.27156696734887,56.67212442547477],[-126.26914179683452,56.670336949397694],[-126.26662085069401,56.66825385682313],[-126.26628214354724,56.66607660690816],[-126.26640760999899,56.66248228969298],[-126.26652680736906,56.65916583662483],[-126.26298553793325,56.65661873093435],[-126.25369243647398,56.655499073872356],[-126.24756271439028,56.655770897500666],[-126.24001569015924,56.655059178705585],[-126.23867289241265,56.65487345315343],[-126.23395160615618,56.653519773242444],[-126.23053580430759,56.650505504561806],[-126.22699634035422,56.64807394062716],[-126.21956599344462,56.64708298516635],[-126.2153605649053,56.64863164708438],[-126.21044065280385,56.64989453546624],[-126.2052047166362,56.64840620909634],[-126.2038479509221,56.64587193670946],[-126.19881104588165,56.644625031297295],[-126.19530907484693,56.644074699039024],[-126.19004675472816,56.64338347582788],[-126.18663591928548,56.64305683953655],[-126.18396261043812,56.64240641003261],[-126.18119741303023,56.64151406463953],[-126.18033713632305,56.63957038919018],[-126.18023581095402,56.6395077927529],[-126.17923080270356,56.63869359858744],[-126.17624688978194,56.63809721801961],[-126.17121949033785,56.636723754467155],[-126.17062242407843,56.63322914938751],[-126.17098986101028,56.62907004612593],[-126.17316180165079,56.62645905459538],[-126.17448949161668,56.62425248772969],[-126.17490720298179,56.62140184805711],[-126.17613894813,56.61901615054218],[-126.17707367986304,56.616173766777145],[-126.17107796640892,56.60759584465637],[-126.168488164187,56.60488364528686],[-126.16424786906263,56.60192256564677],[-126.16112936538731,56.59960524528121],[-126.15269587620949,56.59533150428746],[-126.14975351821994,56.59370380999904],[-126.14670114650886,56.592300234009734],[-126.14517737020093,56.591540161494414],[-126.13879458774275,56.590552377357604],[-126.13371758318718,56.59066529509034],[-126.12929032999938,56.58998867762632],[-126.12703461760789,56.589390446193946],[-126.12387943762607,56.58798643531034],[-126.12037784404762,56.58754163952011],[-126.11639163997312,56.58623680625397],[-126.11588080796069,56.58548443354928],[-126.11443440228327,56.5833616630707],[-126.11378748839232,56.581354684676846],[-126.11065149244553,56.57949326412073],[-126.1069114105809,56.57722000831886],[-126.10774060543913,56.574548566365536],[-126.11083174044175,56.57229642073252],[-126.11539578840333,56.569379687128276],[-126.11641882615412,56.567048589870595],[-126.11664289564646,56.56397435114277],[-126.11820589222133,56.56107813814198],[-126.12398991827342,56.55868875751517],[-126.13091272113178,56.55625315531552],[-126.13348842185286,56.55388450007622],[-126.1338091949566,56.55091769670681],[-126.12861308237507,56.54886170372007],[-126.12279081469423,56.54696742080499],[-126.11933255521126,56.545500887541415],[-126.11682585878812,56.54347775198955],[-126.11356474594832,56.539609048357036],[-126.1112673928547,56.537576664291805],[-126.10785596097573,56.53491783618828],[-126.10627316798228,56.533064008261285],[-126.10554006676121,56.530716556230225],[-126.10374430787445,56.5290421166119],[-126.10075121860238,56.526320040612816],[-126.10469386739851,56.520715638417634],[-126.10957869135267,56.5173508242626],[-126.12013174349781,56.51444668091718],[-126.13038767159412,56.51381831406144],[-126.13980032104095,56.51358437520642],[-126.14523859010612,56.514564164063614],[-126.15441176077822,56.51523458552765],[-126.16301923291695,56.51436361090664],[-126.16806310453731,56.51219728142544],[-126.16817336805705,56.50922176580513],[-126.17076840401992,56.506225053966006],[-126.17297345801872,56.50528110208221],[-126.17926367743794,56.505577190268966],[-126.1859634937625,56.50599784621858],[-126.19086903152849,56.50742456849532],[-126.19484365833968,56.508951100965305],[-126.19975947083519,56.507285594035295],[-126.20316619976643,56.50459166969108],[-126.20689672755863,56.501484888247546],[-126.20387165525945,56.49945536430544],[-126.19967626045175,56.49838652012864],[-126.20007551086253,56.495930335589286],[-126.20093049315447,56.492335280715245],[-126.2010368361925,56.48949419737122],[-126.2015590253483,56.48646426716406],[-126.20136067229336,56.48348924169586],[-126.20142474680765,56.481723657548464],[-126.20510200095906,56.482793261159124],[-126.20874628380975,56.482034596492696],[-126.21282381520403,56.48059401146759],[-126.21418751657964,56.4771862480573],[-126.20869486362271,56.47489210118412],[-126.20111864019088,56.47321936686041],[-126.19350963554342,56.47238864629305],[-126.1871265398333,56.47197689989247],[-126.18010714476844,56.4719510873844],[-126.17168321780538,56.46820763741894],[-126.17073601502292,56.465851955462476],[-126.16494604861181,56.46338607837731],[-126.16166502795838,56.46283462255268],[-126.1597014013273,56.4601844048401],[-126.15548700798934,56.45706193513917],[-126.15229039633249,56.45427867420993],[-126.1463138996232,56.45140891949957],[-126.1412505983007,56.4488963571023],[-126.13790922688021,56.44720623384373],[-126.13312817199831,56.44554441156017],[-126.12651367778106,56.4458199513036],[-126.118986147404,56.44578234161911],[-126.11383078632052,56.445670515460655],[-126.10830985805984,56.444465469400555],[-126.10371356056359,56.44332217456574],[-126.10433961953918,56.44047186552301],[-126.10426086085906,56.43721885889187],[-126.10382589792432,56.43515803996534],[-126.11201038057185,56.43416537981818],[-126.11914067553796,56.43385426302387],[-126.12291624749456,56.43218384332893],[-126.12588226558486,56.4301556465763],[-126.12626585873376,56.42822852781748],[-126.12365435824482,56.42642979344103],[-126.12001383156489,56.42461405131776],[-126.11875596095315,56.41985663431179],[-126.11726318894847,56.41584323795001],[-126.11489649089599,56.41301353815668],[-126.11304965850178,56.41019230307951],[-126.11428970138793,56.40746690780754],[-126.1203182120731,56.40348249269759],[-126.1300529588623,56.39948513303995],[-126.13124396794042,56.398014239653435],[-126.13372244511002,56.395188820682336],[-126.1385136223007,56.3911331625214],[-126.14405044567889,56.38908385412479],[-126.15051175360497,56.38710491688932],[-126.15242980368073,56.385408942734465],[-126.15372955629257,56.3809714961078],[-126.15195659493249,56.376098618553804],[-126.15081849556412,56.37356389632982],[-126.14917471476049,56.37075195505781],[-126.14615932931312,56.36889147079453],[-126.14239627898968,56.36759631476263],[-126.13995713848911,56.36687313479088],[-126.13963073742092,56.36458835267237],[-126.14386188867574,56.36429690834794],[-126.1484894773234,56.36166596152318],[-126.14873200823111,56.360688897298076],[-126.14832160631083,56.360689373200984],[-126.15086004393909,56.3588403796646],[-126.15063739552072,56.35654654976589],[-126.1487548587182,56.3547027248903],[-126.14625700351073,56.352725159191486],[-126.14727414536941,56.35028652784289],[-126.15198029461703,56.34828266708188],[-126.15798018543916,56.347442007961796],[-126.16601715548299,56.34712715676436],[-126.17463371448753,56.34505460560339],[-126.18141755795936,56.34244641065135],[-126.18845934059907,56.341217509312266],[-126.19477193945829,56.34293758165342],[-126.1953731637927,56.343456418185696],[-126.20169020226862,56.345122377809496],[-126.20687620635225,56.34678089901821],[-126.21465853505839,56.34778071253515],[-126.21887127883295,56.34788111607802],[-126.22477613915878,56.34680449412402],[-126.23012411926491,56.346857722890135],[-126.23454521258478,56.34691242954991],[-126.22941279319154,56.34371359248276],[-126.2243584507677,56.34126716425213],[-126.22291971872576,56.3383393492909],[-126.22540067734776,56.33510895955397],[-126.22876386982115,56.333203212682925],[-126.2304102326539,56.330243057255466],[-126.23358741478621,56.32764750849568],[-126.23665522048627,56.325285076486885],[-126.23969612394103,56.32354990637174],[-126.24166952574699,56.320140944512964],[-126.24302108272975,56.31673313937234],[-126.24770397343411,56.31518283852841],[-126.2532684533519,56.314786613970426],[-126.25544938778172,56.31411915195047],[-126.25798839322859,56.30912269559165],[-126.25979532071229,56.304459249122225],[-126.2633835975458,56.30175461295536],[-126.27335282480183,56.30168888837235],[-126.28446794295947,56.30420064858502],[-126.28972978375086,56.30665315177851],[-126.29187776410612,56.30999077930264],[-126.29453986643138,56.31327342676906],[-126.29960882103951,56.32149699423895],[-126.30566999587079,56.32463700837221],[-126.3123394001394,56.32812474763689],[-126.31638273063012,56.330166942267795],[-126.3209010983746,56.33044245327514],[-126.32416124346562,56.32819392355161],[-126.32425035864776,56.32550532390305],[-126.32659673984969,56.323017094397414],[-126.33483345770622,56.322646318625374],[-126.34217148842342,56.32151571343681],[-126.34384209078257,56.32073160770112],[-126.34862175070802,56.31918630352871],[-126.35284079880559,56.31904928119272],[-126.35300256341706,56.31722970546625],[-126.3511304088248,56.31468987079702],[-126.3489306686578,56.31284091890468],[-126.34879451367145,56.31073540782493],[-126.35228902542609,56.30756253069283],[-126.35751978338315,56.30476108898263],[-126.3591478301176,56.302095058766945],[-126.36348641478139,56.29813988908029],[-126.36990476361564,56.29339895740037],[-126.37614406327685,56.28786965641007],[-126.38744538741464,56.28448444577007],[-126.39484877769362,56.28427360999219],[-126.40390335453218,56.28373453826216],[-126.40869716478109,56.28148798103065],[-126.41218142032695,56.281700821787666],[-126.4150300955977,56.282632523438934],[-126.41738520450161,56.28288472841355],[-126.4214496529889,56.28098059341297],[-126.42541856497864,56.278789891356794],[-126.43082094383358,56.28009804438405],[-126.4337089263368,56.28309026123461],[-126.43624255807977,56.28419282318016],[-126.43842390298934,56.286793059047454],[-126.43959782163822,56.28874256344206],[-126.44484234941775,56.29193252806414],[-126.44874932329238,56.29521659796247],[-126.45424604319254,56.296980471893],[-126.45686646244967,56.298718575715164],[-126.46331857175649,56.29940330023965],[-126.46628850790155,56.29976887800508],[-126.47260102754463,56.301770948492475],[-126.47862448136573,56.30308377620494],[-126.48960692493127,56.303517153103655],[-126.49764364957332,56.30273338781211],[-126.50090223187277,56.30378705993304],[-126.50080042755972,56.30738093698798],[-126.50289582742076,56.30963096498981],[-126.50772295827494,56.31326811595135],[-126.51192077731393,56.313995177695766],[-126.5174262425113,56.31186711500025],[-126.52238897566919,56.31082535351713],[-126.52832169641918,56.31178673620591],[-126.53488722819073,56.31229713347608],[-126.53703613216226,56.31260177778267],[-126.53910370696302,56.31221670454037],[-126.54573495649097,56.31016332079904],[-126.55123500469782,56.30832058310708],[-126.55698808675517,56.30836735206771],[-126.56301208652106,56.309729990924396],[-126.56804403802988,56.31000346990276],[-126.57291773478032,56.30837764832032],[-126.57807930791861,56.30756582464652],[-126.58309822934436,56.30806280382994],[-126.59072955664922,56.307095803844916],[-126.59869036334224,56.3053292417999],[-126.60240291366127,56.30484581790109],[-126.6078679711898,56.30403135867337],[-126.61271936477135,56.303201683726755],[-126.61610769372838,56.30323021323329],[-126.6166798193442,56.30100502993454],[-126.61544189041396,56.29711279214122],[-126.61427643119895,56.29460025148995],[-126.61763280278822,56.291877752405156],[-126.6186464090053,56.28835104133789],[-126.61890549003763,56.28618114314727],[-126.62312990219831,56.28570359390723],[-126.62954901504159,56.287804945427204],[-126.63022606534581,56.28814102101144],[-126.62802585246146,56.286617216718405],[-126.6279304346613,56.28646982319038],[-126.62767881496835,56.28635792183405],[-126.62736848369757,56.28624406779139],[-126.62710550086476,56.28618038832357],[-126.62697577363097,56.28616422209007],[-126.62693023488993,56.28616332524985],[-126.62690161132709,56.28614442275802],[-126.62686049283003,56.286103178167586],[-126.6267926483946,56.28603518056995],[-126.62673634946292,56.28599289020189],[-126.62671388399326,56.28597955832032],[-126.62665780182657,56.28595182903995],[-126.62658329818328,56.28590962784282],[-126.62647822210845,56.28585413441165],[-126.62632739155192,56.28578318271974],[-126.62617571928199,56.285722316487416],[-126.62606888986413,56.28568363383357],[-126.62601701338679,56.28566484502511],[-126.6259987369728,56.285660453850134],[-126.6258921940472,56.28563969233133],[-126.62565444042148,56.28557252590158],[-126.62537875652252,56.28547305973364],[-126.62519014318498,56.28537988820351],[-126.62513203852674,56.28535104799396],[-126.62509237253798,56.28533779994473],[-126.62495404007808,56.285289188905494],[-126.6247843814171,56.28524185099029],[-126.6246369392625,56.28519328413471],[-126.6244312152557,56.28510467578429],[-126.62422951980176,56.2850149272723],[-126.62414700097999,56.28497724449986],[-126.62410941192864,56.284967346512346],[-126.62398627518095,56.28498362994991],[-126.62379259235367,56.285015939860315],[-126.62361011901626,56.28498994610808],[-126.62346334242581,56.28491897132922],[-126.62329556741156,56.28486266094018],[-126.62303172343005,56.28480793874146],[-126.62278624479013,56.28476320803526],[-126.62264011101512,56.284732555202105],[-126.6224477396159,56.284720050013945],[-126.6220938434465,56.28466352399859],[-126.62166692455563,56.28453006064421],[-126.62138258139284,56.284393662604586],[-126.62130708470389,56.28435258339626],[-126.6211984625953,56.28439119693189],[-126.62096906377954,56.28446736260056],[-126.62078389754025,56.28452651057037],[-126.62064584841777,56.28455966569856],[-126.62049047229188,56.28458394344786],[-126.62036024612827,56.284599137632505],[-126.62027842465679,56.28460625566367],[-126.62020161485745,56.28460998882915],[-126.61997608432489,56.28454723331101],[-126.61957408362463,56.28445396814963],[-126.61927481221257,56.28446101908374],[-126.61919547202763,56.28449612855663],[-126.61912716003991,56.2845255837388],[-126.61897349381675,56.28459465800726],[-126.6188740497638,56.28463770578289],[-126.61885901279986,56.28464673990753],[-126.61882641954232,56.28463233552645],[-126.61870199112788,56.284566847987335],[-126.61853777500775,56.284479149527954],[-126.6184397133458,56.284418014828105],[-126.6183437630271,56.28436247067381],[-126.61822229156766,56.28429248771655],[-126.61817128264333,56.284264730239826],[-126.61808674853405,56.284227053349035],[-126.61786225764168,56.28410155982513],[-126.6176115413357,56.28391682384377],[-126.61745334309012,56.28376188502887],[-126.61738954671014,56.28369274289026],[-126.61732678761426,56.28362471587933],[-126.61727496326559,56.28341661535869],[-126.61732229949412,56.28314754708852],[-126.61712739845312,56.28297374237257],[-126.61652750093123,56.28283549626404],[-126.61607413485794,56.282754789828076],[-126.6159748507224,56.28274406663441],[-126.61591401390491,56.28273427828808],[-126.61566167881884,56.28270188889188],[-126.6153059462691,56.28265543459726],[-126.61504812582643,56.282596186445915],[-126.61490443326484,56.282526307357465],[-126.6148025477452,56.28247863033908],[-126.61469589645667,56.28245001895714],[-126.61457811156434,56.282420340850976],[-126.61446041463145,56.28239626303744],[-126.61435383265693,56.28237101153363],[-126.6142145923415,56.28232799423592],[-126.61407718056098,56.28227152603161],[-126.61403029255501,56.28224822781448],[-126.61386266665295,56.28220086582951],[-126.61348455486873,56.282080583134324],[-126.61322943249878,56.28199891512825],[-126.61317445502034,56.281975655411145],[-126.6131377508496,56.28195678867966],[-126.61302158834906,56.2819013376019],[-126.61283843626629,56.28183052530626],[-126.612732050773,56.28181871349508],[-126.61264699790834,56.281812400175795],[-126.61252504884665,56.281774899012575],[-126.61244617326196,56.28171030743458],[-126.61240053958704,56.281637715411534],[-126.61236651192995,56.28159643236427],[-126.6123272960903,56.28154621285135],[-126.6122856379516,56.28146912109509],[-126.61226376202747,56.28142777981787],[-126.61222457012474,56.28131483099478],[-126.61215443321534,56.28109785514713],[-126.61212148942322,56.28093110853969],[-126.61200507431509,56.280793885861314],[-126.61177179282924,56.28068634671593],[-126.61165301228527,56.28065667073812],[-126.61162867229213,56.28065230655203],[-126.61151594329817,56.280622601492134],[-126.61135562383791,56.28058864330485],[-126.61125916129336,56.280563340873925],[-126.61117274281848,56.28053462985761],[-126.61094822538145,56.28040464407262],[-126.61063761347843,56.28020113847083],[-126.61043629655147,56.28006656033501],[-126.61032679555535,56.27998419117712],[-126.6102477179778,56.27990615733776],[-126.61022092028804,56.27987380055248],[-126.61018842133754,56.27986499439614],[-126.6100978905324,56.279831821653104],[-126.61001646905851,56.279798605374026],[-126.60999204264326,56.27978864048026],[-126.60996923788841,56.27975290410198],[-126.60992454326973,56.279674705994225],[-126.60990173864266,56.27963896960565],[-126.60992377655228,56.27962542249809],[-126.60996745151381,56.279572566445225],[-126.60998858314922,56.279500775198514],[-126.60998826181954,56.27941564438024],[-126.60998219540473,56.27928573448389],[-126.6099823183107,56.2791636361946],[-126.60998054840596,56.279114357496816],[-126.6099768793132,56.27907404916186],[-126.60997476088805,56.27900236888293],[-126.60997520635975,56.27896652156364],[-126.6099729311054,56.278884760576176],[-126.60997016917024,56.27877275753455],[-126.60996940241309,56.27872347405779],[-126.60993999845071,56.27871801356413],[-126.60985887561641,56.2787038385434],[-126.60961450558918,56.2786624381133],[-126.60920189246737,56.27859607547929],[-126.60887288909849,56.278509150350466],[-126.60866996568275,56.27840146113681],[-126.60851286809469,56.278313716362966],[-126.60842814751382,56.27826259223355],[-126.60841920626551,56.27820774687049],[-126.6084242602132,56.27807778405822],[-126.60839444598649,56.27791550254197],[-126.60837618757029,56.27784725959508],[-126.60827733502886,56.27786341233691],[-126.60800203723083,56.27791288913518],[-126.60765837365952,56.27792348472754],[-126.60735439054322,56.27781963438401],[-126.60714405780415,56.27768957479812],[-126.6070061695706,56.277600616817956],[-126.6068389671802,56.27751291803817],[-126.60665655521792,56.27742305091594],[-126.60659050591642,56.27733711199304],[-126.60666885172063,56.27717207647848],[-126.60677626859244,56.276990100502424],[-126.60675135941035,56.27694877280044],[-126.60651943698848,56.27705740901603],[-126.606233169036,56.2771819848416],[-126.60600179458937,56.277195403837894],[-126.605779647913,56.27715053031457],[-126.605569100846,56.2771369659534],[-126.60536131991728,56.27710658573327],[-126.60516079766774,56.27702128293447],[-126.60505240461806,56.276812326062476],[-126.6049736040781,56.27655506215495],[-126.60477160069243,56.27630846270345],[-126.60463289607529,56.27603579985316],[-126.60463191167733,56.27590586593502],[-126.60463256926914,56.27588345962225],[-126.60463146382726,56.27581177460717],[-126.60462942444006,56.275744574652755],[-126.60462399799304,56.27572107696337],[-126.60441454518033,56.27584304493115],[-126.60398320975746,56.27606911601527],[-126.6036236743756,56.276164907991046],[-126.60338368051583,56.27614251785224],[-126.60322625664946,56.2760984545441],[-126.60309837365018,56.27600160413513],[-126.60297006170269,56.275877871791955],[-126.60293603474875,56.275769376814104],[-126.60297377158027,56.275658302966924],[-126.60299525842419,56.27560891456573],[-126.60300009924968,56.2755954498099],[-126.6030108162814,56.27556851541299],[-126.60291559841062,56.275557763027365],[-126.60266684480074,56.27555781608359],[-126.60243451497848,56.27550850421832],[-126.6022644957154,56.27543313465576],[-126.60214335583973,56.27538105794451],[-126.6020712132923,56.27535787446187],[-126.6020162345476,56.27533348993367],[-126.6019908109376,56.27532464840916],[-126.60191837627305,56.27528242350721],[-126.60173479385575,56.275180233307864],[-126.60156536795381,56.27507797622206],[-126.60142461476991,56.27499910734052],[-126.60125714397005,56.274892360024566],[-126.60115085549003,56.274818929506885],[-126.60113134448687,56.27479997857315],[-126.60109855987413,56.27477212879343],[-126.60100117400057,56.27468521437823],[-126.60089743114223,56.27458040723912],[-126.6008294285487,56.274497835185855],[-126.60078368747855,56.27441627861449],[-126.60076207552204,56.27432564733951],[-126.60075679555031,56.27424502072467],[-126.60072952907214,56.27418129984119],[-126.60065702924496,56.27413459393268],[-126.60058648411639,56.2740845183231],[-126.60054020421917,56.27403320849897],[-126.60050573249477,56.27396168032249],[-126.6004779863373,56.273866597209555],[-126.60040877706368,56.27377058873488],[-126.60029518467334,56.273682629815525],[-126.60024546995672,56.273605572387495],[-126.60027470474888,56.273533744939776],[-126.6003033651485,56.273489924144265],[-126.60032296921624,56.273449506358425],[-126.60034114251326,56.27338221149136],[-126.60035537340724,56.27332053593457],[-126.60036377893415,56.27327569011732],[-126.60036459229363,56.273262244397266],[-126.60033013035323,56.27325680549174],[-126.60025236355088,56.273196682224594],[-126.60019001961382,56.27308719952362],[-126.60017326837952,56.27298422364338],[-126.60015793067521,56.27290700476329],[-126.60013560945892,56.272835419468535],[-126.60012984325552,56.27278952006719],[-126.60013470089368,56.272776055360175],[-126.60009106329021,56.27276617884932],[-126.59999970870395,56.27274308446188],[-126.59997737988434,56.27273758850097],[-126.59987657422325,56.272691015079225],[-126.59981330658579,56.27265322666712],[-126.59973149758301,56.27259312207944],[-126.59967295192827,56.27253402844266],[-126.59963916728888,56.272506183021626],[-126.59959439013667,56.27248735042889],[-126.59956167705384,56.27246398059192],[-126.59955647673623,56.27245504372683],[-126.59955222704929,56.272441621770575],[-126.59954056563913,56.27240583143013],[-126.59951793853516,56.272315204803434],[-126.59948278428402,56.27219775315706],[-126.59944924961141,56.272120619584214],[-126.59941801108815,56.27206139775699],[-126.5993991961097,56.272021160333246],[-126.59938649872316,56.271984254687915],[-126.59936234664734,56.27192611977213],[-126.59933408110705,56.27186240335743],[-126.59932456290059,56.271835564216325],[-126.59932833310418,56.27181762401601],[-126.59930250059305,56.27178077996563],[-126.59902271491602,56.271667835670634],[-126.59853774631327,56.271492002968536],[-126.598286615143,56.27140132602869],[-126.59820124546262,56.27137260158434],[-126.59806496639217,56.27132059204642],[-126.59796941858778,56.27128743445387],[-126.59782809314544,56.2712354482808],[-126.59758918273015,56.27115031361021],[-126.59741312562399,56.271074966099604],[-126.59731815535126,56.271013801409254],[-126.59727310805455,56.27097704678261],[-126.59724850271844,56.27095475864395],[-126.597218696946,56.27092241339369],[-126.59719696307758,56.270890030416176],[-126.59718739451505,56.27085871074339],[-126.5971798317963,56.27082738169701],[-126.59717267411821,56.270755725118356],[-126.5971688611199,56.27063812649122],[-126.59717753827903,56.27054399279114],[-126.5971980743815,56.27043188117105],[-126.59718645903376,56.27026615229596],[-126.59701690954887,56.270087719495976],[-126.59673348704004,56.26993334156854],[-126.59655952715353,56.26986246378544],[-126.59652411781668,56.26986150892523],[-126.596516166302,56.26987050729177],[-126.59643979196896,56.26990110799571],[-126.59630292908136,56.269943192485385],[-126.5962040914926,56.269959335835544],[-126.59612883626932,56.2699305628568],[-126.59602082126874,56.26987505888635],[-126.59586592722957,56.26979512999396],[-126.59564699328567,56.269691976160836],[-126.59541813869207,56.26960231005736],[-126.59521553649235,56.269576370157694],[-126.59503464888752,56.269581693191085],[-126.59484451848913,56.26957809774651],[-126.59459167400364,56.269572553526565],[-126.59433689252805,56.26957261859405],[-126.59417216417214,56.26957786524962],[-126.59406430384912,56.26959852951742],[-126.59388401047104,56.26964417376267],[-126.5936237730897,56.269684588365365],[-126.59343559646803,56.269676501124145],[-126.59338083443974,56.269665553863305],[-126.59335866083045,56.269670137445566],[-126.59329509624894,56.26967827366568],[-126.59313016401426,56.26967007805502],[-126.5929207652248,56.269662088556835],[-126.59274283402313,56.26966291400369],[-126.59253596937563,56.26962242761156],[-126.59222291130988,56.26958019276106],[-126.59186774272607,56.269627764624616],[-126.5915823554174,56.26967613263016],[-126.5913609272941,56.26967603735244],[-126.59124268528342,56.269678824787825],[-126.59119918845535,56.26967790587167],[-126.59106273202379,56.269679657250315],[-126.59080954991822,56.26965170400231],[-126.59052704894178,56.26955667643083],[-126.59029064921361,56.26943455157644],[-126.59015958581857,56.26939259103403],[-126.59008023320575,56.26942656213191],[-126.59000308843841,56.26947396484783],[-126.5899134997931,56.26956735132212],[-126.58974258586073,56.269698078194125],[-126.58956446050092,56.26975378771296],[-126.58949474495506,56.26975634964074],[-126.58946050647823,56.26976546881979],[-126.58935976240427,56.26978945674436],[-126.58924399693667,56.269823595250685],[-126.58919660689335,56.26983165484532],[-126.58921433326229,56.26980020876962],[-126.58924076320245,56.26974295899183],[-126.58918823548602,56.2696782321922],[-126.5890484621622,56.269594864929346],[-126.58890735013878,56.26948910058946],[-126.58879131930782,56.26936977868322],[-126.58872545724454,56.26929279144416],[-126.58866860193928,56.26921016191048],[-126.58860766877547,56.269124190674624],[-126.58858487289856,56.26908733056762],[-126.58858978511206,56.26907834670425],[-126.58860650875738,56.26904690534214],[-126.58866785984144,56.268958130515344],[-126.58878746978658,56.268777234563416],[-126.58887962298701,56.268585263495844],[-126.58890531186599,56.2684776102787],[-126.58891650123364,56.268414830061815],[-126.58897508210867,56.26820957181477],[-126.58907431391094,56.26781594025492],[-126.58912446180472,56.26751998837928],[-126.58912150717234,56.267390064135434],[-126.58912231081739,56.267242200108896],[-126.58911738761968,56.26698122695909],[-126.58899481413847,56.26669615281482],[-126.58885175126946,56.26652654883159],[-126.58894060246386,56.266452209209994],[-126.58907637414566,56.266404536910784],[-126.58910011391802,56.26636970270666],[-126.58908250012304,56.2663417800733],[-126.58891774397772,56.26627645046877],[-126.5886308753264,56.266157915884286],[-126.58847980244879,56.26606115840035],[-126.5884533116749,56.26597950921347],[-126.58844455241301,56.265934743423486],[-126.58844037445839,56.265925801438186],[-126.58842619984567,56.2658575373701],[-126.58839977105409,56.26571315932063],[-126.58838291340821,56.2655328923061],[-126.58837874078661,56.26538953193934],[-126.58837584526964,56.265331297320365],[-126.58854619578483,56.26523081917375],[-126.58889769578722,56.26494132035667],[-126.58907276539568,56.26461678921671],[-126.5890694512361,56.26439613443091],[-126.58906885514901,56.264288602535416],[-126.58905616998636,56.26425169598476],[-126.58894790177354,56.26424547416356],[-126.58859931126104,56.26412162340059],[-126.58815977796831,56.263731594144026],[-126.58797708448665,56.26314323506414],[-126.58797507747865,56.26267166042772],[-126.58797325929623,56.262483483332744],[-126.58797547698885,56.2624285857033],[-126.5879730524336,56.26240171322539],[-126.5879715029256,56.262231457337776],[-126.58819922333575,56.261845077115915],[-126.58869467798614,56.26158516040195],[-126.58899510574602,56.26146503974309],[-126.58903190951388,56.26129012649341],[-126.58902637972338,56.26112436963181],[-126.58902259208467,56.261006771240545],[-126.58893510891095,56.26076746224594],[-126.58874730750651,56.260377395209574],[-126.58863047460773,56.260135981031],[-126.58859301272257,56.260064463995434],[-126.58859886309808,56.25991545703579],[-126.5886896582059,56.25970221013157],[-126.58880357843456,56.259547104412704],[-126.58888748615398,56.25948062880888],[-126.58891957664916,56.259463678632144],[-126.58893999266292,56.259477026321626],[-126.58902848827854,56.259514703447316],[-126.58916060420404,56.259562260714986],[-126.58924285020102,56.25958652471206],[-126.58933330046929,56.259619712014185],[-126.58955277635803,56.25969598977848],[-126.58971631805454,56.259749002211244],[-126.58975392544785,56.259763390569745],[-126.58982335306384,56.25974178720061],[-126.58998828519802,56.25968613827194],[-126.59031789521299,56.25955803869148],[-126.59076908229278,56.25938232980303],[-126.59098916975296,56.25929730060596],[-126.5910284610563,56.259289277788795],[-126.59111501039337,56.25926423405344],[-126.59127839002936,56.25923995484775],[-126.5915235431988,56.259208575935524],[-126.59180596559477,56.25916918286043],[-126.59219312834473,56.25910466038207],[-126.59267767643344,56.25899711925754],[-126.59309867471238,56.25889771238566],[-126.59347538679152,56.2588108315128],[-126.5938139452965,56.258740929129495],[-126.59395603682674,56.25871226483227],[-126.59402755028746,56.25869625022365],[-126.59435988994605,56.25861629394904],[-126.59487759990319,56.258496268504814],[-126.59526940451867,56.258404831439314],[-126.59560573087657,56.25832149288234],[-126.59597448258698,56.25824360292688],[-126.59622337991593,56.25819427508659],[-126.59644608335142,56.258149549657716],[-126.59676859639647,56.258088675529116],[-126.59699133357965,56.25804730944028],[-126.59723985232236,56.25797221791666],[-126.59763816671392,56.257844898303254],[-126.59787856436863,56.257768723372486],[-126.59796719560413,56.25774814583419],[-126.59805069612614,56.25772199150003],[-126.59834953979339,56.257634340551704],[-126.59893898301313,56.25744787369446],[-126.59944194954741,56.25729093382703],[-126.5997820945837,56.25719412450232],[-126.59999970981933,56.25714829659025],[-126.60003901329746,56.257140270933256],[-126.60019640035998,56.257121609177496],[-126.60047955343036,56.25713148004758],[-126.60090068680792,56.25717542601222],[-126.60113216201803,56.257242666198074],[-126.6012311828421,56.257307168959706],[-126.60152398030553,56.2572867480594],[-126.6019392004684,56.25720862200925],[-126.60216902702788,56.25716833360582],[-126.6022417594076,56.25716575044596],[-126.60230039427834,56.25716659416387],[-126.60234083745928,56.25716752363046],[-126.60237226168012,56.25717297621521],[-126.60240783274432,56.25718625029433],[-126.60249721723505,56.257214952691086],[-126.60281307385006,56.257248187324784],[-126.60346393025814,56.257310083226585],[-126.60438215541367,56.25734158725309],[-126.6051637624001,56.25723147271022],[-126.60545139094789,56.25713825744488],[-126.60551285840374,56.257125644447676],[-126.60559339900055,56.25710509994673],[-126.6057229688604,56.25705295869384],[-126.60603393418361,56.25696523221401],[-126.60664043431164,56.25677416813102],[-126.60743311882824,56.25646572025567],[-126.60804324761212,56.25624886875016],[-126.60828728049007,56.256212982285],[-126.60833689601174,56.25621834677801],[-126.6083618929807,56.25620142546865],[-126.6083920032443,56.256187840256196],[-126.60844220434332,56.25616631828847],[-126.60856364638411,56.256110852400276],[-126.6087542739593,56.256020332031376],[-126.60892683125559,56.255937738573415],[-126.60905115654627,56.25587329726685],[-126.60914431824298,56.25582020595702],[-126.60922248513539,56.255777267452196],[-126.60933164095017,56.255711778064445],[-126.609477711014,56.25561586838643],[-126.60958643206278,56.25552349722813],[-126.60962624709997,56.25548410193716],[-126.60964092688042,56.25545266764925],[-126.60968118726348,56.25537742538143],[-126.60973041171005,56.25529317910812],[-126.60977397279171,56.25523472332524],[-126.60986370779162,56.255155884376975],[-126.61004958862645,56.25502057869762],[-126.61026443488609,56.25486273135674],[-126.61045616730993,56.2547139553233],[-126.6106381934611,56.25459098887298],[-126.6108188425841,56.25450947432894],[-126.61096256247146,56.25445838023312],[-126.61103182945034,56.254427804848646],[-126.61113389637174,56.25436234783437],[-126.6113787738245,56.25418755268402],[-126.61163572221867,56.2540082186666],[-126.61176777213562,56.25392133471675],[-126.61188593564118,56.2538513194095],[-126.61211823662613,56.25371242791042],[-126.61238157536685,56.25355546478639],[-126.61255167334782,56.253445994605094],[-126.61264269717051,56.2533850699457],[-126.6126946335667,56.25334561557223],[-126.61280159958801,56.25327117252528],[-126.6130306603198,56.253118853107544],[-126.61329963442724,56.252934977437185],[-126.61354551194042,56.252760173346815],[-126.61375419848157,56.25259786914436],[-126.61384617183896,56.252469730049796],[-126.61381464684116,56.25239259117585],[-126.61378282046502,56.25236025975408],[-126.61391477244452,56.252267773314856],[-126.61418324264807,56.25211638257785],[-126.61434875980693,56.252038296245495],[-126.6143720272985,56.25203930448511],[-126.61436176428012,56.252029272496664],[-126.61432178484436,56.25199361997694],[-126.61425602461443,56.251924486923286],[-126.61420254856837,56.25186537612114],[-126.61412205998994,56.251823197425544],[-126.61395333367824,56.25176128013363],[-126.61378951216498,56.2516903778545],[-126.61371879654511,56.2516268691015],[-126.61367953884975,56.25157217037621],[-126.61360886000723,56.251512021840064],[-126.61353111595862,56.25145190720398],[-126.61348918557778,56.25141962425897],[-126.6134513511494,56.25139180222831],[-126.61333601711937,56.25131842621067],[-126.61316571546858,56.25122067068425],[-126.61304040005587,56.25115518337193],[-126.61294879068441,56.25111305733653],[-126.61283182366604,56.25106545215515],[-126.6126943834332,56.25100002268568],[-126.61258646707243,56.25094901342204],[-126.61255383416069,56.25093012738491],[-126.61250798691765,56.250906824110515],[-126.61234093843309,56.250822493711254],[-126.61214132803227,56.25072375721755],[-126.61204762977823,56.25067715996705],[-126.61196389678099,56.250621553711774],[-126.61180994257454,56.25053379945476],[-126.61170287386949,56.250472704064336],[-126.61159056914977,56.25039931201957],[-126.61142735722235,56.25030152030528],[-126.61131396386197,56.25022253249419],[-126.6112231515139,56.25016695965583],[-126.61113681618298,56.25013824890603],[-126.61110650215986,56.25013839394673],[-126.61112729517308,56.25011141088939],[-126.61111593437205,56.25003081453306],[-126.61108221059935,56.249876395356885],[-126.61106597077732,56.2497420552125],[-126.61106829627438,56.249697238141756],[-126.61104650912378,56.24966037747097],[-126.61099773632948,56.24957883994902],[-126.61096663785702,56.24952858202705],[-126.61092954652422,56.249482833358094],[-126.61085752452341,56.249400286845606],[-126.61079367358015,56.249323301963926],[-126.61070308942706,56.24928116947926],[-126.61060447547194,56.249243555913495],[-126.61058661757264,56.24913498689859],[-126.61060529245252,56.24903632457368],[-126.61060898558202,56.24901390395309],[-126.61059962082143,56.24899602635151],[-126.61055381945422,56.24890999389275],[-126.61046045786411,56.248754739565996],[-126.61038623478505,56.24859603327836],[-126.61041547505482,56.248461475777006],[-126.61041201698107,56.2483046715962],[-126.61033073011909,56.2481459990707],[-126.61038726072947,56.248012431333564],[-126.61047431235879,56.24789215946811],[-126.61044353734137,56.24779709401152],[-126.61041266751816,56.247761396828366],[-126.61040745057808,56.2477513404332],[-126.6103311032526,56.247714740426545],[-126.61018996952187,56.247671729030706],[-126.61004758029311,56.24767688982157],[-126.60989868465892,56.2477190463921],[-126.60978402067124,56.247753198324105],[-126.60975079102793,56.24776119800482],[-126.60968238830492,56.24771559850399],[-126.60959435535544,56.24757824057286],[-126.60961525336236,56.24742692092765],[-126.60967666233985,56.247347097337546],[-126.60970539877913,56.24731111544282],[-126.60971731465519,56.24729761678973],[-126.60967922457782,56.24725187258512],[-126.60960202745095,56.24716150914697],[-126.60954510681906,56.24707440933827],[-126.60951250654519,56.24699279418032],[-126.60949039178635,56.24693465206801],[-126.60948301523666,56.246915644769444],[-126.60948180415627,56.24690220878371],[-126.60948224971389,56.246866361950644],[-126.60938094258664,56.24678395448322],[-126.60918331137785,56.24668072363514],[-126.60905128410533,56.24663766758645],[-126.60897116067555,56.24661900715806],[-126.6088927092344,56.246576815624145],[-126.60885185969184,56.246549006699894],[-126.60877311430781,56.24648889414738],[-126.60862372339481,56.24636863030518],[-126.60852349112368,56.24629069765373],[-126.6085040937612,56.24627734831525],[-126.60848062140472,56.24626289824222],[-126.60839374093057,56.246198343640515],[-126.6082686878202,56.246083564199886],[-126.6081457950397,56.245977735530566],[-126.60804112967976,56.24594014890407],[-126.60798446276048,56.24593481794989],[-126.6079324218975,56.24590146128936],[-126.60782956945371,56.24585042410626],[-126.60771865059417,56.24579942522682],[-126.6076696331197,56.24576605407623],[-126.60767465448299,56.24569882140555],[-126.60760847921493,56.24553671505475],[-126.6074506659343,56.24539408707016],[-126.60736911011138,56.24534742882275],[-126.60727010937822,56.24528293114053],[-126.60704846561381,56.245129404726335],[-126.60689101979874,56.245010297408115],[-126.60681643955428,56.24489191634119],[-126.60673431060556,56.24474220702142],[-126.60660406875596,56.244618489551286],[-126.60626619788182,56.24439606484601],[-126.60586980095798,56.244113429110705],[-126.60570528254513,56.243994353970926],[-126.60568789060697,56.243979874570634],[-126.60563930931332,56.243974504246445],[-126.60551608613333,56.24397732885302],[-126.6053797035489,56.24397909557685],[-126.60523112702386,56.243975319219366],[-126.60499326449091,56.243948442652766],[-126.604781427519,56.243904640222176],[-126.60468397196028,56.24387485778971],[-126.60463114260567,56.243856065457564],[-126.6045984503914,56.24383269719056],[-126.60454607116623,56.243778058053415],[-126.60440414600934,56.243681277221924],[-126.60428990552252,56.24361124871836],[-126.60423592035318,56.243583500537746],[-126.60418404100464,56.24356022295153],[-126.60414319793924,56.243532412555986],[-126.60409095769145,56.2434867337447],[-126.60401296827399,56.24340869250557],[-126.60395870668046,56.243361903059764],[-126.60393627335583,56.24334856741598],[-126.60389663974341,56.24333419296245],[-126.60380405623675,56.243292065244965],[-126.60368684792559,56.24322653083433],[-126.603580778492,56.24316206381811],[-126.60351822873861,56.243101871632504],[-126.60349179213783,56.24302582674066],[-126.60347685787538,56.24290828214711],[-126.60346689811718,56.24278623347321],[-126.60346443288512,56.2426921529976],[-126.60344134774705,56.2425701663571],[-126.6033988528618,56.24243482970245],[-126.60333257683072,56.242329849291636],[-126.60324749653505,56.242184632496986],[-126.60319203600318,56.24199446999324],[-126.60308877236494,56.24184933900663],[-126.60291490932853,56.24177847078434],[-126.60282980717469,56.24176319053904],[-126.60282832323458,56.24173183351774],[-126.60280686219888,56.24165016433094],[-126.6027654027465,56.24158203126634],[-126.60274694302149,56.241564196099134],[-126.60272658324013,56.24155421090344],[-126.60265441756479,56.2415265479053],[-126.6025632545806,56.241511296089925],[-126.60245665373918,56.241477074601676],[-126.6022712763352,56.24137937640358],[-126.60205752720101,56.24127621099436],[-126.6019548319671,56.24123412967763],[-126.60195886038545,56.24116690208215],[-126.6018737876943,56.241021684442096],[-126.60162821833278,56.24088618416342],[-126.60144636520079,56.240819832219394],[-126.60129243964067,56.240730945657475],[-126.60107707686896,56.240587461112405],[-126.60090657791349,56.24047176868269],[-126.60082678616432,56.240407175849484],[-126.60078156494927,56.240356982183876],[-126.60078580105271,56.24030319539597],[-126.60084773880578,56.240192009832256],[-126.60081823230809,56.23998044168487],[-126.6005872241105,56.239738457450535],[-126.6003151793517,56.23958851744613],[-126.60011319905415,56.239526738868776],[-126.6000005969059,56.23949702416722],[-126.5999601719901,56.23949609396657],[-126.59993067895432,56.239482790826955],[-126.59988580237145,56.23945499810135],[-126.59986435765549,56.23944053699418],[-126.5998480576017,56.23943165242771],[-126.59978896996861,56.239399445857],[-126.59969515937857,56.239342759207936],[-126.59959677780705,56.239251369547524],[-126.59938660905017,56.2391168190539],[-126.59909629403516,56.239026329820526],[-126.59894442473174,56.239004639424444],[-126.59892415271274,56.23900025394216],[-126.59890394906964,56.23900034870408],[-126.59879540623574,56.23897061391832],[-126.5986011551034,56.2388863939074],[-126.59841505362087,56.23880549584063],[-126.59828097600425,56.2387579580203],[-126.59810595142278,56.238741975835175],[-126.59786031619568,56.238731924746396],[-126.59771250647267,56.23871133403057],[-126.59763097611483,56.23866466969402],[-126.5974704308238,56.23860381320731],[-126.59727671278208,56.238554313110484],[-126.59706409561359,56.238456735009784],[-126.59676203712657,56.23825764173731],[-126.59645648579382,56.238094408616696],[-126.59627760866293,56.23802355502367],[-126.59614324707539,56.23795697392502],[-126.59599448864874,56.23787365777211],[-126.59589834375794,56.23779569662762],[-126.59582233422208,56.237713160895616],[-126.59572496781963,56.23762176363779],[-126.59560758429407,56.237475572782316],[-126.59549115188481,56.2373248968329],[-126.59540173237667,56.23722450116308],[-126.59530766149149,56.23714989035851],[-126.59516989246848,56.23712476937117],[-126.59499260125357,56.23715807972181],[-126.59490705344422,56.23717864086349],[-126.59493949693976,56.23712024238749],[-126.5949871847128,56.2370001651381],[-126.594987100031,56.236928476538175],[-126.59495287394844,56.23686926857418],[-126.59492698397543,56.236760735582536],[-126.59490662903008,56.23668466087371],[-126.5948850680073,56.236661238381245],[-126.59485785452584,56.23666584572905],[-126.59483366251133,56.23666931885466],[-126.59476731691745,56.23669091058579],[-126.59470297452616,56.23671137281169],[-126.59468197366458,56.236724912308766],[-126.59463932784028,56.23671054909782],[-126.59450108573417,56.23665406567628],[-126.59425436360785,56.2365051153927],[-126.59400333166604,56.23633826245835],[-126.59389116828446,56.236269335528526],[-126.59377751038036,56.23623513979542],[-126.5935602454477,56.23616334088625],[-126.59342711702388,56.23611131311827],[-126.5934077298272,56.236097961543535],[-126.59332734750164,56.236060250342135],[-126.59318420255279,56.23601274943135],[-126.59302856513101,56.2359417834496],[-126.59292852582287,56.23587279938651],[-126.59271631016045,56.235733767239346],[-126.59232019501128,56.235523899082864],[-126.59207509854443,56.235415262207],[-126.59198093167633,56.23540001689025],[-126.59186107564125,56.23522247038242],[-126.59166925954314,56.2348279502692],[-126.59138710963445,56.234539141459095],[-126.59122032804005,56.23446486456001],[-126.5911999748738,56.234454877556],[-126.59118671712994,56.23444597783359],[-126.59111126377883,56.23439928135458],[-126.59098064318441,56.23431139506416],[-126.59086927368385,56.23422790011052],[-126.5907966739341,56.23416886872156],[-126.59076250785161,56.23411414001924],[-126.59065006997939,56.234026169274884],[-126.59039583770517,56.233913091016696],[-126.590205888096,56.233842280380046],[-126.59016411428189,56.23381895057479],[-126.5901346961936,56.23381012544628],[-126.59006038199003,56.23377238421183],[-126.58998803684105,56.23373015328281],[-126.58992256891636,56.233675569015915],[-126.58981073220257,56.233560711466104],[-126.5896481915462,56.23343152621171],[-126.58940003408388,56.23338674639972],[-126.58912022777817,56.233385797535696],[-126.58891275140165,56.233291542986265],[-126.5887381555589,56.23309968448752],[-126.58863535510031,56.23298030373783],[-126.58851917063389,56.232911390811445],[-126.58823059412337,56.23279734652762],[-126.58786510672509,56.232673574527944],[-126.58762327973814,56.23257835596861],[-126.58755888602482,56.23252824614546],[-126.58753733166976,56.23250482245239],[-126.58749596321246,56.23250837323529],[-126.58743117129558,56.232498590132],[-126.587313690988,56.23247784801129],[-126.58722019981953,56.232440193385685],[-126.58712086266236,56.232348798982706],[-126.58701227704209,56.23224736579605],[-126.58681693518831,56.23222138051474],[-126.58653436693561,56.23223836091357],[-126.58640019433278,56.232249058488726],[-126.58637420179302,56.23226710006846],[-126.58631720869744,56.23230656662306],[-126.58629221744333,56.232323483450486],[-126.58622115091565,56.2323674951393],[-126.58593714961202,56.232559222206795],[-126.5854629953679,56.23286943519669],[-126.58508354274508,56.23309520216763],[-126.58481610907269,56.23324764601145],[-126.58441664970404,56.2334197360408],[-126.5838920429925,56.233530789652086],[-126.5831922212725,56.23361127772175],[-126.58248127807974,56.23369181268453],[-126.58213053387604,56.233675490186954],[-126.58198686356708,56.23359213487383],[-126.58189641306737,56.23355446248334],[-126.58188112148895,56.23354557107855],[-126.58185437883579,56.23351320897738],[-126.58167792922308,56.233330310505295],[-126.58131227134878,56.23305754235062],[-126.58097449664984,56.23296162793848],[-126.58065912685767,56.232879052388284],[-126.58026995991825,56.23272288247896],[-126.57998934798965,56.23266815073168],[-126.57989154946438,56.2326797963436],[-126.57987537256919,56.232678749682705],[-126.57982412692856,56.232628576282146],[-126.57968270949007,56.23249144166896],[-126.57952585362942,56.232335334672534],[-126.57940463847785,56.232198108072126],[-126.57925986517223,56.23197025722648],[-126.57906580399944,56.23168774314497],[-126.57888486229459,56.23154070577048],[-126.57862097637576,56.23145453144283],[-126.57808437398671,56.23130014333318],[-126.57752508164036,56.23118169998065],[-126.57720515274482,56.231130500475146],[-126.57703309073963,56.2310371869071],[-126.57696841168564,56.2308291340464],[-126.576967320062,56.23061743340653],[-126.57696749611458,56.23049197746488],[-126.57696752636738,56.230424769217],[-126.57690927541282,56.23037910692338],[-126.57664622223267,56.23027948322598],[-126.57625230225132,56.23014124505381],[-126.57601974847071,56.23005604416943],[-126.57596189331427,56.2300361427739],[-126.57594768821988,56.230031726321236],[-126.57592937757927,56.230022847849305],[-126.57584928738466,56.23000304671134],[-126.57569915721332,56.22995891842551],[-126.57559067338626,56.22993028408805],[-126.57538383880168,56.22987632987375],[-126.5750572729413,56.2297848301399],[-126.57475359979254,56.22973915203326],[-126.574343348373,56.22972643664432],[-126.57397324940251,56.229696737400175],[-126.57386158227635,56.22965803470787],[-126.57386232215335,56.22964010923133],[-126.57386231163436,56.22950121261529],[-126.57386005786732,56.22920886769893],[-126.5739136829018,56.22900812261372],[-126.57401945774535,56.22892027657993],[-126.57407450395804,56.22888530489524],[-126.57401941115211,56.22884746807381],[-126.57388474211518,56.22875510241921],[-126.57373706764639,56.22867175615182],[-126.5735784728174,56.22860078025868],[-126.57345442840462,56.228544210713224],[-126.5734127681482,56.22852647570781],[-126.57332028520277,56.22848768640499],[-126.57311692865575,56.22839450829633],[-126.57296615378172,56.22830557441362],[-126.57287359463972,56.22819173618324],[-126.57253178281738,56.228023009345904],[-126.57190528045453,56.22786227816703],[-126.57128796185309,56.22770710351391],[-126.57079354551584,56.227531214027714],[-126.57056885383814,56.22742804614483],[-126.57055847821681,56.22740905025918],[-126.57051802647166,56.2273364224128],[-126.57043713958848,56.227191166615974],[-126.57047566304391,56.227062179187605],[-126.57063870200831,56.22695279758913],[-126.57069592331409,56.2268595707645],[-126.57064758828729,56.22680041981289],[-126.57060969386939,56.22676362482902],[-126.57059742890277,56.22675359845922],[-126.57058921970251,56.2267446740922],[-126.5704928920942,56.226648773221974],[-126.57032265053344,56.22647031273268],[-126.57023527476117,56.2263654106294],[-126.5702224243293,56.22631506207392],[-126.57020125104181,56.22624794870994],[-126.57017117614693,56.22619319656139],[-126.5701077517898,56.22613747322384],[-126.57001800637852,56.2260773868664],[-126.56997303620513,56.226040623306616],[-126.56994819809475,56.22599928931615],[-126.56990559915431,56.225917709858535],[-126.56988025716133,56.225841654009834],[-126.56988277448879,56.22580579854232],[-126.56988870349086,56.22579681101535],[-126.56983488094316,56.22577688891609],[-126.5697160544344,56.225730373762964],[-126.5695684489437,56.22565038295508],[-126.56936700572345,56.225548229493334],[-126.56912400594412,56.22543505969226],[-126.56894706071697,56.22535071846792],[-126.56885353922155,56.225308570266286],[-126.56878323599157,56.2252663185417],[-126.5687382029986,56.22522507432135],[-126.56870315482581,56.225175944679506],[-126.56865684446461,56.22511566388528],[-126.56859040265986,56.225061073409826],[-126.5684774279043,56.22499996935634],[-126.56837361491577,56.22494442506934],[-126.56830539735535,56.2249066443323],[-126.56825039675356,56.224874405379396],[-126.56818597551089,56.22481868557652],[-126.56811436417877,56.224755156824386],[-126.56804892542847,56.22469944148534],[-126.56799575050384,56.22465375272644],[-126.56795892719543,56.22462143276748],[-126.56790082494592,56.2245847269462],[-126.56777641263933,56.224501270555194],[-126.56765712277344,56.22442227179273],[-126.56761328798825,56.22439446344522],[-126.56761991130551,56.22436307031841],[-126.56758153406501,56.224223224575965],[-126.56745902581149,56.22399190213137],[-126.56733768436936,56.2238412238367],[-126.56725570313411,56.22375869850814],[-126.56709343770396,56.22357123755064],[-126.56678014034257,56.22320522624379],[-126.56647500778271,56.22284365853413],[-126.56635083017322,56.22270643355489],[-126.56621177351016,56.222587196554706],[-126.56589684326873,56.2223164015938],[-126.56561973800008,56.222076801927706],[-126.56547241422595,56.221944159249546],[-126.56537628831153,56.22186057534762],[-126.56530953403644,56.2217835820708],[-126.56508409975598,56.221625521922],[-126.56469190794182,56.22145811811559],[-126.55688375610328,56.209541802062176],[-126.55686635367839,56.20923944478546],[-126.55699791011503,56.20022301677258],[-126.55698410148798,56.20003153672935],[-126.55697860283462,56.200000197409224],[-126.55697416908802,56.19997221379633],[-126.55697593336795,56.199954284191676],[-126.55704381133988,56.19990134222225],[-126.55720520096239,56.19989503678627],[-126.55732155094697,56.19984412317276],[-126.55731269919113,56.199717588419716],[-126.55713222479552,56.19951675538551],[-126.55715340991371,56.19944497526553],[-126.55723655920963,56.1994020475668],[-126.55749398478886,56.19940652339771],[-126.5576998079418,56.19947395096749],[-126.55781273961999,56.199466736480524],[-126.55814547670353,56.19930286384679],[-126.55832555243894,56.19926175154296],[-126.5584095740144,56.199208738189526],[-126.55842988269144,56.19914704276001],[-126.55836779060391,56.19910923052811],[-126.55804814787496,56.19905798368253],[-126.5576938133772,56.19905169245483],[-126.5576462478505,56.19904181933038],[-126.55760028707321,56.19900393621118],[-126.55761808626426,56.198978095681596],[-126.55786691000809,56.198875076972755],[-126.55788469305948,56.19884811635833],[-126.55787018316536,56.19882129697233],[-126.55768216217494,56.19872802915909],[-126.5577049825456,56.19862935897442],[-126.55788666015805,56.19856023732777],[-126.55815076901008,56.198467232282894],[-126.55846153576265,56.19839194432355],[-126.55859566198916,56.19831406888687],[-126.55877975075077,56.19820125079178],[-126.55904785665984,56.19803541868703],[-126.55914270586575,56.197821060387064],[-126.55921964472539,56.19762582255806],[-126.55925357223869,56.1975987909812],[-126.55927225934073,56.19756398539045],[-126.55929985410035,56.19737568457271],[-126.55931141443018,56.19719529489564],[-126.55933915226264,56.19701707452822],[-126.5591569008292,56.19683305414153],[-126.55914729766585,56.19672556493892],[-126.5593485239746,56.19661267093033],[-126.5596891998,56.196583173626806],[-126.55973828655134,56.19655719552796],[-126.55973457253171,56.19636791194685],[-126.55948548719893,56.1962379509844],[-126.55939761752566,56.19609160098561],[-126.55937852192773,56.19588446301562],[-126.5592447429773,56.19570247051055],[-126.55914338299324,56.195529296711996],[-126.55894589994183,56.195337502117056],[-126.55884352508433,56.19516433256255],[-126.55870987848688,56.19499129992511],[-126.558576979482,56.194799221906116],[-126.55859728561688,56.19473752655815],[-126.55880088539185,56.19457869828654],[-126.55881780826286,56.194561822395315],[-126.55884300515723,56.1944183370709],[-126.55924281447173,56.19421944419459],[-126.55921628921335,56.19412883105344],[-126.55901717725719,56.19396392664062],[-126.55901422907628,56.193756718031835],[-126.55911766926341,56.193650973695966],[-126.55946649591881,56.193487027223625],[-126.55948414783954,56.19345110607368],[-126.55940930153197,56.193368545766994],[-126.55923593928695,56.19331105996782],[-126.55888152896947,56.193295811683264],[-126.55878979400259,56.19323124688428],[-126.55871143935377,56.19318454526702],[-126.55875027059624,56.193076844022436],[-126.55906693312414,56.19292200049416],[-126.5593615102597,56.1928467812717],[-126.55973358408124,56.19282722709025],[-126.56004355770632,56.192769860573456],[-126.56040199421373,56.192714520605065],[-126.56079108323688,56.19268592764041],[-126.56113083483294,56.19266539137079],[-126.56149567615155,56.192493528066564],[-126.56159836156488,56.192405706907564],[-126.56160086816388,56.19236985215686],[-126.56140884042743,56.19234829523869],[-126.5610384222581,56.192340964261085],[-126.56088018887468,56.1922834141791],[-126.5609369351187,56.19215883175462],[-126.56107755557039,56.19197227398913],[-126.56121239963497,56.191876470870206],[-126.56144742023059,56.191728701335826],[-126.56151941837611,56.19161301245184],[-126.56135020145527,56.191492784860685],[-126.56105015634868,56.19139665506758],[-126.56092261131487,56.191368093076264],[-126.56058863111802,56.191297874109885],[-126.56052656533475,56.19126118309192],[-126.56052907283876,56.191225328378444],[-126.56061294641233,56.191163353381945],[-126.56099417514862,56.191009341374325],[-126.56101182455971,56.19097342004823],[-126.56104031142524,56.19077727455864],[-126.56105362382205,56.19057895560205],[-126.56102458984284,56.190524197680894],[-126.56096163578535,56.190496471717964],[-126.56089496278277,56.190279462633995],[-126.56104193131459,56.190255293773525],[-126.5612927778931,56.190368441765926],[-126.56148466784973,56.190381038484404],[-126.56185595650925,56.19037940332292],[-126.5619212890491,56.190362313757575],[-126.56226606397009,56.190270064885496],[-126.56262108031152,56.19025953830875],[-126.56276968057303,56.190208477488504],[-126.5628085137939,56.190101895179936],[-126.56309029741843,56.189980799039404],[-126.56290883736442,56.18977997937367],[-126.5625555867096,56.18977257714015],[-126.56237544667482,56.18980585495011],[-126.56205186321067,56.18982632337063],[-126.56178500330314,56.18972220835979],[-126.56173183530416,56.189532023030175],[-126.56183538517435,56.18943523702113],[-126.5620542302699,56.18928641758099],[-126.56196638259264,56.18914118979911],[-126.56193113444093,56.18893412391237],[-126.56177643665144,56.188840715831624],[-126.56144325332735,56.188753694034624],[-126.56117879723824,56.18860476268286],[-126.5609142152494,56.18844687044029],[-126.56086989780371,56.18838209873063],[-126.56089034106311,56.188329363454194],[-126.56106771273643,56.188315141857636],[-126.56126549485498,56.18824706470679],[-126.5613213452376,56.18813032702079],[-126.56131350004483,56.18800490877227],[-126.56120875516122,56.18787655664856],[-126.56099512647693,56.18768371686956],[-126.56098225256424,56.187630008035484],[-126.56100002838947,56.187603047107075],[-126.56101707523693,56.18759513131873],[-126.56116314467705,56.18757992716591],[-126.56136093907169,56.18751184981581],[-126.56166257278181,56.1875799687579],[-126.56175856697187,56.18759074707734],[-126.5617756136612,56.18758283118759],[-126.56187487462617,56.18753982955958],[-126.56185074188942,56.18740440210225],[-126.56181386251114,56.1872242262523],[-126.56183339907243,56.18717933563144],[-126.56209651731984,56.187094167619485],[-126.56248293178287,56.187093583940396],[-126.56251697622352,56.18707551195323],[-126.56252514073336,56.18694106228529],[-126.56240601442123,56.186794852812234],[-126.562352991632,56.186614748347445],[-126.56240620262712,56.186526024714915],[-126.56256293727144,56.186339394539],[-126.56262237015214,56.186333531771695],[-126.56295272168428,56.186293989996166],[-126.56330944664234,56.18626441188712],[-126.56367510737745,56.186083577951095],[-126.56389492759287,56.185934751125785],[-126.56398056109221,56.18585596448657],[-126.56411938416309,56.18568733343193],[-126.56424558568776,56.18548291445319],[-126.56428289118715,56.18541106212802],[-126.60000015574035,56.173455435018724],[-126.60302344126039,56.17244314929009],[-126.60743870723385,56.16492751996414],[-126.60091615490299,56.15367672452053],[-126.60000012152531,56.153168033674326],[-126.59185857988156,56.148643936763506],[-126.59186445852556,56.14863270844461],[-126.60000042709856,56.13250555630207],[-126.60271189982407,56.127127500497686],[-126.62304240020434,56.12702964634746],[-126.62346546837942,56.127027575567055],[-126.62346292147578,56.12699398515591],[-126.62346691271495,56.12680130909979],[-126.62347549925104,56.12664333352955],[-126.62349474580232,56.12652338902878],[-126.62355248053943,56.126415577109505],[-126.62362052017231,56.126323396038515],[-126.62366659282469,56.12624252348677],[-126.62368287440768,56.12618979923794],[-126.62373313565536,56.126118987009896],[-126.62382829019091,56.12602107252814],[-126.62394758338337,56.12592079950187],[-126.62409313613799,56.12582487804103],[-126.6242097356996,56.12574589978985],[-126.62428438311278,56.12568840894408],[-126.62433713854543,56.12564894693037],[-126.62437192129839,56.12561853379221],[-126.6244225198556,56.12557012155505],[-126.62450183945771,56.1254902057583],[-126.62458413526372,56.125406915027206],[-126.6246723870664,56.1253191146416],[-126.62475480660723,56.125243663863316],[-126.62483909976062,56.1251603631695],[-126.62496197216528,56.12503206924905],[-126.62507880026548,56.12490380488553],[-126.62516195049112,56.12481154882952],[-126.62524925386059,56.12472711299339],[-126.62534363341594,56.12464376244003],[-126.62543901175535,56.124560406911115],[-126.62555014949703,56.12445457198039],[-126.6256856226481,56.12429597289317],[-126.62580310532628,56.124145302757405],[-126.6258611169065,56.12405653009564],[-126.6258698356143,56.1239713600078],[-126.62585897983098,56.12385828376511],[-126.62584078040913,56.12379116752008],[-126.62582796357805,56.12374530662287],[-126.62581883729106,56.12367814578054],[-126.6258182854088,56.123579580135605],[-126.6258174127895,56.12352469977269],[-126.62581921351686,56.12351124978257],[-126.62580259945247,56.123479968786214],[-126.62577511195381,56.123398336961074],[-126.62576541601457,56.123295335889516],[-126.62576714748101,56.123214680553346],[-126.62575096123321,56.1231464343244],[-126.62572181577983,56.12308721254257],[-126.62569072722795,56.123032480683555],[-126.62564042266895,56.122973362867064],[-126.62556623088253,56.12286843852134],[-126.6254652116682,56.12272332252866],[-126.62537850742041,56.12259157728815],[-126.62534194698117,56.122508869874544],[-126.62532346436107,56.12242383347714],[-126.62530052436395,56.122310816612895],[-126.62525772831621,56.1221530934932],[-126.62521167174783,56.1219808251567],[-126.62518167406247,56.121867842950465],[-126.62516866294328,56.12180966194517],[-126.62515750610177,56.121741390988184],[-126.62514809680498,56.121656310040414],[-126.62513825766725,56.12160707421423],[-126.625145674609,56.12156671441084],[-126.62517380698144,56.1214993706316],[-126.62519808683497,56.121442126611456],[-126.6252017596814,56.12141970669602],[-126.62519347112247,56.121405186176524],[-126.62512489821586,56.12133719716193],[-126.62495213560773,56.121176751804434],[-126.62472803719572,56.12101879833093],[-126.62454000014147,56.12091219189406],[-126.62444256761914,56.1208656258816],[-126.62440716561528,56.1208557186726],[-126.6243596617531,56.12084587080334],[-126.62430525806012,56.12084501750022],[-126.62422853728108,56.12083419275599],[-126.62413743234428,56.120805516986145],[-126.62405864716476,56.12072749664891],[-126.62398107924786,56.120600186188305],[-126.62385652171058,56.12049438773103],[-126.62367403014635,56.12041911549873],[-126.62352831062378,56.12037614562464],[-126.62343749108727,56.120365389461114],[-126.62337401418621,56.120363460100805],[-126.62332061025889,56.120362601485056],[-126.62327405151613,56.12034826821656],[-126.62322613906333,56.12031153969323],[-126.62311828365573,56.12024262185145],[-126.62296714943936,56.120176155889915],[-126.62286282053925,56.1201385831897],[-126.6227876904921,56.120100867572205],[-126.6227173755418,56.12004968724281],[-126.62265657588452,56.120026462664754],[-126.62258700366704,56.120021202447134],[-126.6225108589262,56.11998349163246],[-126.62243120512036,56.11991443532675],[-126.62237120851447,56.119877765573925],[-126.62233579180648,56.11986785787141],[-126.62230427806215,56.11984897033785],[-126.62228190891223,56.11983563856351],[-126.62225139428334,56.11981674613373],[-126.62216230738181,56.11978805911645],[-126.62204607343034,56.119762864961544],[-126.62198082139314,56.11971277959449],[-126.62197637459668,56.11962207380373],[-126.62198116076091,56.11954252383521],[-126.6219828741288,56.11952347388795],[-126.6219582867128,56.11943398659354],[-126.62190728296031,56.119328947048444],[-126.62186174930228,56.11925188308352],[-126.62183361163169,56.11919265561737],[-126.62183162176636,56.1191299401536],[-126.62186811567943,56.11908159791588],[-126.62196564367618,56.119007195370784],[-126.62209087444074,56.11890129479411],[-126.6221465107063,56.11885285893682],[-126.62219323266417,56.11881342736267],[-126.62231140449673,56.118707561070075],[-126.62242959180705,56.11860169459308],[-126.62252079162757,56.118509401086584],[-126.62260192017146,56.118417156770946],[-126.6227070057036,56.11831135411485],[-126.62288914921616,56.118174931868545],[-126.62307750958324,56.11804855976519],[-126.62325216147691,56.11794801661911],[-126.62344222814086,56.11786643931143],[-126.62359350544997,56.11781529422351],[-126.62369648022286,56.11776774588864],[-126.62381243043143,56.11771229324291],[-126.62395247886883,56.117652242011616],[-126.62408466569208,56.11760455018049],[-126.62420881345359,56.11755801772217],[-126.6243048164874,56.117514983446384],[-126.62434786173277,56.11749797095782],[-126.62438181757297,56.117479882943634],[-126.62444263615154,56.11744150149667],[-126.62450028157723,56.11739305475724],[-126.62452805275635,56.11736603630607],[-126.6246069430662,56.11732308575306],[-126.62474381748393,56.11725408848301],[-126.62488673207412,56.11718394132376],[-126.62511493509827,56.117094333655736],[-126.6254346636646,56.116997555388345],[-126.62570371587094,56.11694358890866],[-126.62584030030517,56.11691939556593],[-126.62595681489859,56.11689978113259],[-126.62611131206911,56.116862058310595],[-126.62623169417877,56.1168323437729],[-126.62641426326556,56.11678664183818],[-126.62667894575283,56.11671141303798],[-126.62688835516592,56.11664317644194],[-126.62703579311443,56.11660548725523],[-126.62718820264442,56.11656329303365],[-126.627403884654,56.11650958587969],[-126.62761974638525,56.116468198487105],[-126.62771617165672,56.11645204175683],[-126.62775244274049,56.11645298299034],[-126.62780159898317,56.116440419561386],[-126.6278706832478,56.11641543681009],[-126.62793962274615,56.11638037390492],[-126.6279836641555,56.116363355266465],[-126.62801863418929,56.11634638136587],[-126.62804561766495,56.116332807135265],[-126.62807354648794,56.116315867957994],[-126.62813844140057,56.11628082490008],[-126.62822128221578,56.11623337223223],[-126.62828899149295,56.11618487410156],[-126.6283785154885,56.11611498650146],[-126.62853113382421,56.11602350557575],[-126.62864828390482,56.11598036359215],[-126.6286835394983,56.11598130957306],[-126.62873750724789,56.1159552809115],[-126.62878111849069,56.115911381907964],[-126.62878746010354,56.11586654689684],[-126.62879113038564,56.11584412692422],[-126.6288527114681,56.11585390355624],[-126.6289970631883,56.11587447212472],[-126.62917148423016,56.115887051269894],[-126.62925826692312,56.11589782323694],[-126.62932000385429,56.115853834446064],[-126.62940018366129,56.115766070842575],[-126.62943571992676,56.1157210914461],[-126.62949061414263,56.11569057751382],[-126.62960145141265,56.11563066448255],[-126.6296553464181,56.115600155421],[-126.62960273882763,56.115459284017035],[-126.6292358978204,56.115128430551394],[-126.62866035107874,56.11471796039297],[-126.62833556394307,56.114307370304],[-126.62816762959919,56.114070739770135],[-126.62800437154144,56.113999859479044],[-126.62779037442134,56.113905707318764],[-126.62750034618655,56.113779446994236],[-126.6272797390791,56.113712208765165],[-126.62703724713671,56.11366187933165],[-126.62678628999568,56.11358582903195],[-126.62667871420918,56.113533714424506],[-126.62661597966708,56.1135149817207],[-126.62649653468706,56.113476366481464],[-126.62629328893303,56.11342360229699],[-126.6260061912312,56.11335444883961],[-126.62568564342357,56.113272018080615],[-126.62536007025963,56.113189611212945],[-126.6250057139566,56.11313310693562],[-126.62465062799694,56.11309452670561],[-126.62440972831546,56.11308114748248],[-126.6243281380447,56.11307930751362],[-126.62432475391783,56.11305692230442],[-126.62432685922363,56.112998667279435],[-126.62430357665714,56.11280052548957],[-126.62426191722044,56.1123325321193],[-126.62419020061385,56.111747076788255],[-126.62407421041556,56.111290648939615],[-126.62396200849412,56.111010056547215],[-126.62386584240451,56.11078763014126],[-126.62374271769883,56.11051605187324],[-126.62360801266296,56.110212047675915],[-126.62353091424886,56.11004889239498],[-126.62351222299581,56.11001314111228],[-126.62346308304272,56.10989913275321],[-126.6234160184651,56.10966078435108],[-126.62344914411344,56.10946348646373],[-126.62351023893069,56.10937918052742],[-126.62358715929108,56.1092768756079],[-126.62366913215102,56.10904909595618],[-126.62365343096137,56.10882067482213],[-126.62356359676677,56.108616138789735],[-126.62345867476333,56.108348951676895],[-126.62343492455186,56.108056724982916],[-126.62346540230854,56.10775639206637],[-126.62344140009394,56.10751233045544],[-126.62335907472158,56.10727303489032],[-126.62327403785403,56.10686237915656],[-126.62324486087807,56.10629127738716],[-126.62324892185582,56.10565728808178],[-126.62325875724558,56.10500646933946],[-126.62326729227415,56.1043366156455],[-126.62334070114734,56.10369556660976],[-126.6235124824086,56.10322652899138],[-126.62372955607744,56.102947683850836],[-126.62392180157443,56.102754086627215],[-126.62409268222126,56.1025460327798],[-126.62425776327193,56.10216327375595],[-126.62433920095908,56.10158490996363],[-126.62441149741267,56.10100211074375],[-126.62456821389172,56.100600351080196],[-126.62468849985282,56.10044070852103],[-126.62482137614516,56.10037621127512],[-126.62507622293298,56.10032231564888],[-126.62544040658732,56.1003070851364],[-126.62582839272861,56.10033317967574],[-126.62613387023671,56.10036079913702],[-126.62634852256093,56.10024885428605],[-126.62642409859245,56.09999982330718],[-126.6264327046759,56.09997177880742],[-126.62642990767375,56.09979593919047],[-126.62642310118262,56.09968396417786],[-126.6264072816371,56.09951266902829],[-126.6264021143563,56.099377164171074],[-126.62641089768844,56.099296474809236],[-126.62643019229301,56.099243735827024],[-126.62647434073716,56.09917183303507],[-126.62653190249736,56.09905618087134],[-126.62661880725322,56.0989504649508],[-126.62676539495344,56.09886349644809],[-126.62687702709614,56.09879350126654],[-126.62693644144565,56.098731603873134],[-126.62698960216449,56.09865629624918],[-126.62700916314779,56.09862035714593],[-126.62701578929492,56.09859344245845],[-126.62704226338163,56.09854962869092],[-126.62708874235152,56.09849675565125],[-126.62715923576317,56.09830935406294],[-126.62721650608074,56.097986487387004],[-126.62723666838313,56.097798213790725],[-126.62723832475118,56.09777580393511],[-126.62717575772692,56.09776603158797],[-126.62695860906636,56.09772117828339],[-126.62669558590089,56.09763958778125],[-126.62664892744101,56.09749084636225],[-126.62681141689552,56.097327633776736],[-126.62694239100912,56.09720825956228],[-126.62691484817199,56.097122148786276],[-126.62670787442025,56.09702012065832],[-126.62639458313336,56.09694213741866],[-126.62609085845872,56.09689546869405],[-126.62586135267333,56.09683275302246],[-126.6257489416203,56.09678962263504],[-126.62565874733765,56.09675198332538],[-126.62552779229051,56.09668206191884],[-126.62544221229986,56.09661751776299],[-126.62543970124806,56.09658616776017],[-126.62541287352369,56.09654485653184],[-126.62530010982863,56.09648044590148],[-126.62520884709643,56.096438331198776],[-126.62517231005793,56.09641946930628],[-126.62509004324299,56.09637282998431],[-126.62495886110008,56.09628946812549],[-126.62487759327496,56.09624282376407],[-126.62482495230184,56.09622404086353],[-126.62474900965488,56.09619529160792],[-126.62468910197373,56.09616310333084],[-126.62465853347753,56.09613973165689],[-126.62463719156285,56.0961263954314],[-126.62461079127691,56.09611196395123],[-126.62461043604058,56.09608956402576],[-126.62467925570532,56.096050023241304],[-126.62475841064477,56.09589954341093],[-126.62475663953056,56.09566097435195],[-126.62472363564409,56.09554800799592],[-126.62470147488203,56.09554699672188],[-126.62448501442219,56.09554357900602],[-126.62409037773993,56.09553991493724],[-126.62389504581402,56.09553639257866],[-126.62385218740614,56.095499639987544],[-126.62376869667506,56.09543956484799],[-126.62366406173639,56.0953795933022],[-126.62349736528817,56.09527736266545],[-126.62333355542813,56.09516615701319],[-126.62324898076368,56.09510160652608],[-126.62316601016803,56.09501016614126],[-126.62305584539597,56.094855014163954],[-126.6229181603641,56.09467759519323],[-126.62273529956907,56.09450711771082],[-126.62251654539094,56.0943592172605],[-126.62230851065767,56.09425158698483],[-126.62215339860012,56.094181780394685],[-126.62204085767014,56.094129686806276],[-126.62195975692649,56.09409312058017],[-126.62187769486911,56.094059919249034],[-126.62179988707057,56.09404013806137],[-126.62175248691885,56.09403476929951],[-126.62170524430957,56.094038360408],[-126.62162763264953,56.0940320191438],[-126.62148115594469,56.093998012187164],[-126.62125750115078,56.09392181882935],[-126.62107965798391,56.09387788383665],[-126.62100803095575,56.093867032653485],[-126.62096877106482,56.09386722427833],[-126.62094855363289,56.0938617225432],[-126.62090275910053,56.093829463661464],[-126.62079282614418,56.09375159437544],[-126.6207042152197,56.09368594187765],[-126.62067065735403,56.093663703953894],[-126.620657335995,56.09364920787579],[-126.62062766281281,56.09361799033494],[-126.62056739185947,56.09356228023556],[-126.62051750161487,56.09352556087182],[-126.62048068723331,56.09348877771933],[-126.6204296415303,56.093443103303635],[-126.62034493421002,56.093369590960634],[-126.62023477437023,56.093277161260936],[-126.62017446769396,56.093218090916594],[-126.62015899271564,56.09319464463495],[-126.62011384534088,56.09313998069635],[-126.62001421901739,56.09301277694761],[-126.6199596006441,56.09293239723989],[-126.6199142775783,56.092866533279604],[-126.61987065026472,56.09278049957692],[-126.61984570283201,56.09273021745997],[-126.619797051739,56.092644208214],[-126.61972265070293,56.09252136170286],[-126.61963151314123,56.09235827374573],[-126.61954237154801,56.09219405593551],[-126.61948179770795,56.092054340758594],[-126.6194681651349,56.09189199538231],[-126.61948741735475,56.091708208351235],[-126.61950861173167,56.09151993154759],[-126.61953873056882,56.091322650645125],[-126.61958968304238,56.091171191595755],[-126.61962329386131,56.09106798046802],[-126.61962662642786,56.090960436487975],[-126.61959423281911,56.09082058417695],[-126.61950987057476,56.09063954196734],[-126.6194338785978,56.090479740490764],[-126.61945535997592,56.09037322825031],[-126.61954123253504,56.09026640244152],[-126.6196218870747,56.09014728110769],[-126.61970728144057,56.09000909527091],[-126.61978426196337,56.08991239334334],[-126.61982293788397,56.0898763623412],[-126.61985826786692,56.089819066105505],[-126.61992173248628,56.08969442794821],[-126.61999121868901,56.08956976041624],[-126.62003827173059,56.089490005396854],[-126.62010424159378,56.08939671719082],[-126.62020781882282,56.089264042805205],[-126.62025669204823,56.08904426883144],[-126.62020037755066,56.088791405327214],[-126.6201469999819,56.088660616206624],[-126.62013348656454,56.08863380016718],[-126.62012527729561,56.0886237594675],[-126.62010387046618,56.08860594254253],[-126.6200904276166,56.0885836064745],[-126.62009999719676,56.088552197592826],[-126.62007921846731,56.08851085592736],[-126.62001416171734,56.08846973007498],[-126.61997261101145,56.08845089122798],[-126.61995628076617,56.08843640977774],[-126.61993601338641,56.08842754791104],[-126.61989351889072,56.08841319395715],[-126.61985296656938,56.08839435020692],[-126.6198689266649,56.08838531180008],[-126.62000765095964,56.08831183056888],[-126.62003868151317,56.088172789448436],[-126.61974668635042,56.08810028709257],[-126.61950386852155,56.08801858395492],[-126.61942244105072,56.08789577173867],[-126.61934631928119,56.08779085491604],[-126.61928939759501,56.08769144497965],[-126.61926452455093,56.087645642815396],[-126.61924182260789,56.087609910792125],[-126.61913320119044,56.08748611071437],[-126.61894729284641,56.08731116298918],[-126.6188058959828,56.08721440402247],[-126.61875010232706,56.087186673446794],[-126.61868014889589,56.08715341132047],[-126.61856850776934,56.08709346998372],[-126.61842728991807,56.08700903060978],[-126.61825822564539,56.08688104335423],[-126.61812970733102,56.08670693563579],[-126.61809294600396,56.08654470284965],[-126.61808970827619,56.08653127763763],[-126.61813023187763,56.08642019293648],[-126.61820229648299,56.08639520099706],[-126.61825535544911,56.08637702186415],[-126.6184241268973,56.086358280203655],[-126.61856570338314,56.086338550486694],[-126.61866113076114,56.08632688561943],[-126.61878961603439,56.08630609924277],[-126.61899749998682,56.086279325996834],[-126.61920940720549,56.086251412746705],[-126.61939198359373,56.086214681336735],[-126.61962231409544,56.08614299461451],[-126.61996510914061,56.085992353876335],[-126.6202707311738,56.08584525371689],[-126.62037752640539,56.08578872897383],[-126.62037731476354,56.08577528906153],[-126.62030607666085,56.08566138845326],[-126.62015614965686,56.08547058605497],[-126.62007110590152,56.08537355381856],[-126.62006793810723,56.085364608632695],[-126.62014596647039,56.085335106200375],[-126.62032401900223,56.08526703329703],[-126.62047898845799,56.08520243297966],[-126.62079997025609,56.08507317788082],[-126.62141046869381,56.08486074218039],[-126.62193654400068,56.08465543682034],[-126.62228323012054,56.08436924129337],[-126.62256024477603,56.08406882483282],[-126.62294630302975,56.08391908434876],[-126.62354164389761,56.08383216137196],[-126.62398197271861,56.083741515822126],[-126.62433833348241,56.083623278967714],[-126.62473415837272,56.08345556383229],[-126.624892786297,56.08330581418478],[-126.62489451947427,56.083161315567445],[-126.62489073406581,56.08298660195808],[-126.62487284110276,56.082873561966935],[-126.62485912939775,56.08283330651552],[-126.62485489154408,56.08281988639709],[-126.62486164251041,56.08280193198132],[-126.62486344170287,56.08278848220482],[-126.6248737411761,56.08261257934455],[-126.62489947252143,56.0822047445418],[-126.6249120975891,56.08179585410828],[-126.6249174709997,56.08143628277577],[-126.62492377133762,56.08107222662474],[-126.62492618425983,56.08084371897834],[-126.62492950640409,56.080609606496516],[-126.62493668182461,56.08017386121654],[-126.62494205806071,56.0797515657671],[-126.62492972499145,56.07954441214492],[-126.62481551541295,56.07944864667663],[-126.62461989412856,56.07935888135534],[-126.62447678772261,56.07921733436957],[-126.62435517975489,56.07897151457707],[-126.62425004469378,56.0787502555236],[-126.62419793143766,56.07863626351437],[-126.62416121910687,56.078541237204306],[-126.62411845447728,56.07844624058926],[-126.62408841748258,56.078391504252686],[-126.62401526167466,56.078219371484074],[-126.62389397925206,56.077740573957584],[-126.62386157093934,56.077218777586864],[-126.6239540742321,56.076896862044116],[-126.62405116461473,56.07667461067827],[-126.62408669709401,56.07650418482888],[-126.62407470354334,56.07638215545806],[-126.62404869691173,56.07626467515843],[-126.62402048332972,56.07613488485962],[-126.62397398457172,56.07599398352767],[-126.62391758577347,56.07586321143624],[-126.62386173702144,56.07576715895966],[-126.62379892719508,56.0756767409849],[-126.62372274646776,56.07556734728746],[-126.62363097039206,56.07542554785507],[-126.62361861497008,56.07540768724485],[-126.62352604379477,56.07521660835077],[-126.62348569403741,56.075018552933464],[-126.62347853366985,56.07482033480137],[-126.6234751097378,56.07466802142612],[-126.62347750336926,56.07456496282075],[-126.62349845124994,56.07442597086081],[-126.62353289920279,56.074251070323626],[-126.62355391760877,56.07411655832037],[-126.62355536241277,56.074080708852456],[-126.62347675549124,56.07267316103775],[-126.62223111260882,56.06934592498821],[-126.62258794190014,56.067354930291835],[-126.62622492786303,56.064810187169286],[-126.62842663675785,56.062541260012146],[-126.6249460337619,56.05875018210431],[-126.62294231373738,56.057191922072384],[-126.62288845302318,56.0553104728806],[-126.62606756788556,56.054649694820306],[-126.6324205986131,56.05377595195463],[-126.63684661651058,56.052329125422204],[-126.63946601124321,56.049547166068116],[-126.64314272321312,56.04529027993412],[-126.64605729251153,56.042909916038994],[-126.64938599566183,56.04042880378849],[-126.64825231025843,56.03670701964894],[-126.64767398073184,56.035213565087986],[-126.64904612435456,56.03339654114057],[-126.6556969872982,56.032538020054446],[-126.66137647214875,56.03405874603939],[-126.66606115502584,56.034374770122746],[-126.6714874005819,56.03367416485712],[-126.67085414763764,56.0302993947745],[-126.66947964499367,56.028003795665974],[-126.67104529490639,56.02647224798398],[-126.67789125599154,56.02595202666962],[-126.68504955762853,56.02525950139579],[-126.6862755237416,56.02520808036601],[-126.68919772443218,56.02666178276112],[-126.69345269163502,56.02806334788733],[-126.70151168771287,56.02811766001623],[-126.70969587479571,56.0270865345028],[-126.7153253216906,56.026382913119036],[-126.71536261459353,56.02467123711799],[-126.7160156709661,56.022785841568286],[-126.72408836907857,56.02227412292056],[-126.73201377045503,56.02358173438976],[-126.73383832227184,56.0242253268803],[-126.73873705552984,56.02870410306643],[-126.74081202137494,56.031747583536],[-126.74084029018869,56.035179333113064],[-126.74152728802311,56.03638500868975],[-126.7399543006678,56.038311753467475],[-126.74090315875742,56.04157685433884],[-126.74237532668819,56.044328139523486],[-126.74280804024902,56.04787402955818],[-126.74929432490232,56.04996858997327],[-126.75176733144178,56.04884286139267],[-126.7551359422705,56.048921456935446],[-126.75830958289812,56.04848140722469],[-126.75602926712334,56.045278111786814],[-126.75517125006739,56.04252332947039],[-126.7547356768328,56.03904022339085],[-126.75540142816087,56.03664377460877],[-126.76139250360052,56.03314024122324],[-126.76609690913467,56.02786102411207],[-126.76608061410813,56.02386468454678],[-126.76968026259352,56.02240026075974],[-126.7743592834443,56.023115548991896],[-126.77912862354152,56.024224379958184],[-126.7812864504899,56.023440509212115],[-126.78131827437782,56.02195284811297],[-126.78245881997046,56.02104976281109],[-126.78614763450996,56.02022052387901],[-126.79247267146252,56.02019913209144],[-126.79903003902244,56.01875122031983],[-126.80475997097916,56.01793545994719],[-126.80905367142695,56.01744222176182],[-126.81289470709442,56.01912021746837],[-126.81743407084434,56.0216090289421],[-126.82339783751439,56.024437924398065],[-126.82698752297419,56.028635096121704],[-126.82906337611699,56.03201767894495],[-126.8307307199644,56.035456670507166],[-126.83412807503863,56.039126240307915],[-126.8386785887429,56.04121102515193],[-126.84329287375051,56.04540997508067],[-126.84649511309635,56.048793788858596],[-126.84867373593536,56.0522918989125],[-126.85176704769778,56.05607955978507],[-126.85671669469549,56.05890480598163],[-126.85992363615554,56.061894002375276],[-126.86027399776559,56.06509066469236],[-126.86066505949633,56.06600202798251],[-126.86378377483854,56.068597458053596],[-126.8652560623027,56.07174168575756],[-126.86592661530926,56.0741476071239],[-126.8657513226232,56.078028881055324],[-126.86614182230878,56.07894919817381],[-126.8646722498109,56.081217354053315],[-126.8652169938398,56.0847621839695],[-126.86541446776074,56.08504759102138],[-126.87032043880234,56.09056095725928],[-126.87361214322158,56.09480382611915],[-126.87466795872238,56.09847058384989],[-126.8754927213679,56.10355477107556],[-126.87973037740159,56.10666191026144],[-126.88662751572828,56.109607040619046],[-126.888545223761,56.110875100046954],[-126.89256933767746,56.114610599578135],[-126.89474159752973,56.118905639262216],[-126.89579865028186,56.122688758236805],[-126.89867045670864,56.127892862683716],[-126.90167649469807,56.13140230725146],[-126.90329681438614,56.13237655234313],[-126.90454465844873,56.136955818211085],[-126.90761974456754,56.14240027321754],[-126.91227934934673,56.14498366311183],[-126.91878308397393,56.14765217649498],[-126.9222088417758,56.15069217320206],[-126.92368629681948,56.15406883011269],[-126.92840873724937,56.15912452147325],[-126.92993611242342,56.159758598451546],[-126.93145547212451,56.16056298112321],[-126.9388213938641,56.16083153681996],[-126.94340768324506,56.16211498333016],[-126.94600636855374,56.16589533062157],[-126.94955167585843,56.16813619153347],[-126.95576557907475,56.169944753504836],[-126.95912733872248,56.17115617403183],[-126.96556034111873,56.17215609194984],[-126.9709109516459,56.17064577846454],[-126.97299628535431,56.168308871786394],[-126.9758521229122,56.166593332547656],[-126.9773366383608,56.165703739735385],[-126.98278035624254,56.16470300807385],[-126.98356201317497,56.16047615551112],[-126.98363028859927,56.15619208299295],[-126.98779290533312,56.151930107897925],[-126.99543301551502,56.147622948942136],[-127.0006957202999,56.14461550129055],[-127.00401742452206,56.141443920480924],[-127.0063230419146,56.137966637243956],[-127.00632715868748,56.137733609283046],[-127.00612845054938,56.137331917921536],[-127.00628408873953,56.13396121871943],[-127.00868531974479,56.130662368707924],[-127.01025728469607,56.12815865416897],[-127.00849202337294,56.12300196284528],[-127.00610370897192,56.118710470926366],[-127.00090646580605,56.117604395544674],[-126.9976675359996,56.11530885068397],[-126.99617617769006,56.112730725207776],[-126.99526880773935,56.11181481397461],[-126.99469174835568,56.109462515957034],[-126.99423706128661,56.105693386585294],[-126.99344612070091,56.10391627873755],[-126.99412006956595,56.10010249632224],[-126.99642637940858,56.09627594093982],[-126.99747103812074,56.09491461296861],[-127.00149552524779,56.09230216884727],[-127.00552216910212,56.0895193158019],[-127.00568983114727,56.085127004942684],[-127.00350082755993,56.08140748276384],[-127.00150798736713,56.07802691038991],[-127.00019974510255,56.07671095572138],[-126.99601907696913,56.07634947849839],[-126.99112137052474,56.07603826073295],[-126.9884961352713,56.074024519215506],[-126.98425453281892,56.07080453874697],[-126.98040566127713,56.06890763913916],[-126.97666710329909,56.06637354327011],[-126.97254175403572,56.06253398837159],[-126.9698303106058,56.05959755724845],[-126.96834696660443,56.05657107474972],[-126.96677787531118,56.052622247345916],[-126.96387667623773,56.04895234919096],[-126.96187398035032,56.04648532853114],[-126.9605901179423,56.043968043162046],[-126.95900602437975,56.040879512802505],[-126.95741069627378,56.038642343282355],[-126.95518606021311,56.03743143802972],[-126.95224511911204,56.03627067124668],[-126.94952080120704,56.03437342282378],[-126.946491566991,56.03253215699723],[-126.94254028699758,56.030742471913904],[-126.93817222037788,56.02958300951759],[-126.93513141729089,56.02835986908974],[-126.93331663871339,56.0272172632909],[-126.93467911712399,56.025047671980694],[-126.93697128383702,56.022261871453225],[-126.93539869485421,56.01865327510117],[-126.93399896000763,56.01698789851122],[-126.93178376556706,56.015328495079466],[-126.93021770354791,56.01149577985165],[-126.92830758398473,56.00976240001316],[-126.92477033579775,56.00797813122514],[-126.92234257838938,56.00676816293932],[-126.92056470154358,56.00361790755975],[-126.91977450902856,56.00207341978249],[-126.91720360080627,56.00004000534153],[-126.91391082390021,55.9956998664979],[-126.91329270401762,55.994154106133266],[-126.91328860401931,55.99180642020541],[-126.91827731346488,55.99055175677921],[-126.91899075268907,55.99049282748419],[-126.9236756745884,55.989741951797924],[-126.93039896892752,55.9884204051951],[-126.93538722886686,55.987102341383405],[-126.94180046723797,55.98544196173877],[-126.95137679373514,55.98451924202552],[-126.95871019399435,55.984338589375675],[-126.9612579668612,55.98422074313886],[-126.95717383172239,55.98170675620877],[-126.9498278842772,55.97909165709659],[-126.93922383590979,55.97738742103921],[-126.93443502576147,55.97647294924164],[-126.9223010716992,55.97339862262633],[-126.91333178080961,55.97066779022376],[-126.9083316209909,55.96861586208432],[-126.90160654430719,55.96758857037001],[-126.89070721396932,55.9665723898353],[-126.88541003015168,55.96542668123684],[-126.87674759592929,55.96280764439006],[-126.87082892349953,55.95800075165331],[-126.86633982934805,55.95126628018112],[-126.87131302940853,55.94137559639876],[-126.87283458313672,55.94039738934935],[-126.89541418669319,55.93307142687355],[-126.89927572833311,55.93135053655902],[-126.90201395612429,55.927639327488876],[-126.90943814052106,55.92632281546877],[-126.91624922229458,55.92408736364043],[-126.91816905900609,55.920310031125034],[-126.9165296773372,55.91642406796971],[-126.91387758455916,55.91362066480969],[-126.90714987496939,55.90757588770713],[-126.90510623879216,55.904427458355904],[-126.90255538670947,55.90089731767804],[-126.89746326663952,55.898263297547025],[-126.89359491691657,55.895638368058044],[-126.88880424446455,55.89089618431855],[-126.88717281405052,55.88780732502359],[-126.88645363970393,55.88466726093278],[-126.88583626284127,55.880388514024524],[-126.88481044185404,55.87673089327813],[-126.88094346613877,55.873765110684005],[-126.87646524537794,55.87056152294382],[-126.87432703008751,55.86764628526061],[-126.87289719079135,55.86330143758007],[-126.87167406542979,55.86101602963261],[-126.86729936390716,55.85718420939971],[-126.86333256397259,55.85421861172827],[-126.86190821453938,55.85193449448654],[-126.858853807244,55.846390948227466],[-126.8554959045984,55.84296401481788],[-126.85153603837702,55.84067900555856],[-126.84899529783192,55.83930725759947],[-126.84523723292382,55.83754039557597],[-126.84361065560053,55.83554417271821],[-126.84167746321434,55.83120240018723],[-126.83923809479454,55.82857536416341],[-126.83111855136003,55.82776884314185],[-126.82208459394444,55.826627268255464],[-126.8182275120303,55.825370997769994],[-126.81112452465406,55.82171625125594],[-126.80696155869195,55.81702988180886],[-126.80280077705322,55.812056650384896],[-126.79945553127546,55.81006184394329],[-126.79874454218626,55.809940900233485],[-126.78840001775292,55.806511457798344],[-126.77937180923897,55.80428267277856],[-126.77024395949665,55.8027348198287],[-126.76324757095323,55.800958409031864],[-126.75605183737892,55.79775816898667],[-126.7513892787586,55.79432744130394],[-126.74672911927225,55.791299733753874],[-126.74480566024224,55.78860518496763],[-126.74419994773997,55.78666444573564],[-126.74420308706135,55.78560715259709],[-126.74420319965648,55.78529355358022],[-126.7443034703058,55.784728485492394],[-126.74491347089864,55.783121056580434],[-126.74765909989301,55.77889365041497],[-126.74887931357605,55.77523972154792],[-126.74898040485947,55.77324105647896],[-126.74807822488546,55.76695654100403],[-126.7477806049422,55.76186011616143],[-126.74768300490722,55.75752410323324],[-126.74758513514095,55.75529367009742],[-126.74738508184177,55.752723368030225],[-126.74698566211178,55.74803971768242],[-126.74587610299648,55.7450626478187],[-126.74101857928851,55.74122958398368],[-126.73363128605892,55.73836978762343],[-126.72553751106801,55.73521795977745],[-126.71856028733951,55.730697374189496],[-126.709963872012,55.727556391940325],[-126.69843073987181,55.72388459344283],[-126.69216551719315,55.721195387629756],[-126.68457990387184,55.718844565343154],[-126.68387203656152,55.71849897863298],[-126.67942710415885,55.716041175047415],[-126.67599703116707,55.7122607024082],[-126.67358193909301,55.70763251039748],[-126.67065820673034,55.704368860273185],[-126.66641177748672,55.70380005315333],[-126.6605392704307,55.70493301698401],[-126.65578069024211,55.70630182415733],[-126.64688620694949,55.704116847136326],[-126.64366245429518,55.70051365967739],[-126.63678895340794,55.69901649196125],[-126.63244634545178,55.69747043310618],[-126.63124685049374,55.69403595524335],[-126.63025083235695,55.69003599634379],[-126.62854336692561,55.687464163151255],[-126.62814541872402,55.686489552271276],[-126.62360673871977,55.68344792810904],[-126.61865740386797,55.68207464542492],[-126.61532589390731,55.68081870911161],[-126.613314874085,55.678239204932034],[-126.61009554026867,55.6754325837538],[-126.6037361479945,55.673250230474196],[-126.59828048767855,55.67238032057332],[-126.59514905820417,55.672153255328695],[-126.59292780335262,55.67192182900416],[-126.58879546527113,55.669396718506654],[-126.58446576349206,55.66607499623027],[-126.58053520006833,55.66413105364904],[-126.57538108447059,55.663885934853255],[-126.57154988555484,55.66250570920965],[-126.56902731088567,55.66204228602651],[-126.56114708814972,55.66105628511333],[-126.55700143025008,55.661907931175584],[-126.55294493538534,55.664246320987644],[-126.54767616366665,55.66629419677417],[-126.53857600110885,55.6673010837323],[-126.5324101260591,55.667282515889376],[-126.53129552097198,55.667627684643875],[-126.53119455507033,55.66722493503994],[-126.52961600648187,55.661963427981036],[-126.52813817724349,55.65630727099734],[-126.52795413394583,55.6531632824198],[-126.52737075586587,55.650074726673914],[-126.5236538708982,55.64686486015889],[-126.51557994606672,55.646047061537246],[-126.51093452073188,55.64575243346774],[-126.50740285883604,55.64522916239256],[-126.49590933980168,55.64194210090648],[-126.49046642833288,55.64067328936015],[-126.48188663636614,55.63990906472105],[-126.47986907753356,55.639612158968774],[-126.4751318334334,55.6384564653819],[-126.47102160561388,55.63485234670632],[-126.47267689173523,55.62988266201215],[-126.47765770721838,55.62555440217505],[-126.48071928280395,55.62167230414811],[-126.4812428989751,55.61899146250445],[-126.47807581430385,55.61115518537918],[-126.46864154799613,55.604892327483945],[-126.45868437174187,55.600700281529946],[-126.45758131877916,55.59995172384656],[-126.4467389768522,55.593808847251346],[-126.43930370402369,55.590296161734734],[-126.43095616453483,55.587762731705624],[-126.42843765525924,55.587359221266766],[-126.4195776253772,55.58566895415598],[-126.41111719168187,55.58420969750884],[-126.40568476595615,55.58282972294647],[-126.40600453298272,55.58105476822238],[-126.40503446565583,55.57710689512981],[-126.4028494567854,55.57372734971849],[-126.40065839360027,55.571091400648],[-126.40029349737813,55.5670967724373],[-126.40266276406439,55.56201830764057],[-126.40337729310717,55.56098571011619],[-126.4036237528745,55.556191767512544],[-126.3990362048423,55.551314738574085],[-126.39342637761413,55.54816091237305],[-126.39062033989364,55.54648536000599],[-126.3875445537816,55.5418451093204],[-126.38628238099913,55.53727089191578],[-126.39155830769806,55.5334110786418],[-126.39821751040157,55.53234190267614],[-126.40509058041785,55.52979342767777],[-126.40845027501756,55.52608241947249],[-126.41040826959721,55.52157855527391],[-126.4113305770006,55.51981059003921],[-126.4091793522523,55.51317893478718],[-126.40573149687155,55.505162797433286],[-126.40137502665551,55.49766015959937],[-126.40009166389487,55.4951467657711],[-126.39701917736556,55.49045303135284],[-126.39353491123119,55.48654891701123],[-126.38752976370739,55.48344988609216],[-126.37648505240065,55.481414021435576],[-126.36705702050529,55.478745330477274],[-126.36094253981024,55.476899620154676],[-126.35624931965346,55.473571344818566],[-126.35612184626342,55.46670911610791],[-126.3570014265252,55.45991569958737],[-126.3580382321912,55.45700107059876],[-126.35831123515572,55.450433360457346],[-126.35507897150532,55.44241533677319],[-126.35124572979026,55.43457810944231],[-126.34710065700091,55.4278167150892],[-126.34442299152111,55.424554103506395],[-126.34088172299145,55.417790854664354],[-126.33581202914824,55.413378862182334],[-126.32730307682577,55.410713744117416],[-126.31691068621012,55.40667316794467],[-126.3127190215942,55.404488791068964],[-126.30745294594779,55.399896982567064],[-126.30079545657156,55.39409886558793],[-126.29541024425457,55.39121799190279],[-126.28669684291015,55.38976006541925],[-126.28329169361648,55.38911383154551],[-126.27311123739044,55.38495270491725],[-126.26613906334292,55.38081084221466],[-126.25903689396606,55.37912358482996],[-126.25273486334923,55.37772099242898],[-126.24280547105329,55.37745399496218],[-126.23447893230295,55.37741614124954],[-126.2316753891117,55.37688384060951],[-126.23303771831844,55.37266170554655],[-126.24208380998907,55.3713902742755],[-126.24921667589196,55.37056099975866],[-126.25377400997755,55.36744311737099],[-126.25545778860277,55.361508950885835],[-126.25708506479664,55.35963322122604],[-126.25842641226004,55.35695176952732],[-126.2620751963053,55.35393400793996],[-126.26671714801407,55.35149634508533],[-126.27156807987953,55.35637740287333],[-126.27609998084073,55.362970118047876],[-126.27966689161978,55.36617840301623],[-126.28587104975635,55.36769632219908],[-126.29489628988013,55.36772910028482],[-126.2990094949101,55.36745951847515],[-126.30696619972701,55.36514676041777],[-126.31171169887885,55.36248319368417],[-126.31473792110359,55.36078238532992],[-126.3191529933273,55.36068159563139],[-126.3381066217918,55.36075716037307],[-126.35972172899356,55.36528373195697],[-126.37010557442264,55.369840351414844],[-126.3942719987165,55.3809471510248],[-126.39887164132298,55.382796011765414],[-126.40960334918779,55.38345114226727],[-126.41856253859662,55.38011561694338],[-126.41982041209437,55.37410891687057],[-126.4074621854034,55.36538800819727],[-126.39299179439755,55.357855139586654],[-126.38521861770703,55.35320281703035],[-126.37415266403224,55.34693837247711],[-126.36727914591775,55.342452471453974],[-126.36379135828543,55.34067091106889],[-126.36260224586447,55.33935741904388],[-126.36875392999458,55.335487096761256],[-126.37548819475083,55.33385443119613],[-126.37880576429163,55.332778305341854],[-126.3766371297657,55.329174450383135],[-126.37003960794605,55.3276622201536],[-126.36355894574798,55.324608382822774],[-126.3629576012356,55.324377203264596],[-126.35550032747963,55.31915775212475],[-126.34875844986418,55.31244870285573],[-126.3463038879192,55.307976133710376],[-126.34323608554274,55.30453547098981],[-126.3422784029016,55.300649982086945],[-126.33882703401224,55.295723107881706],[-126.33205344217308,55.29295514163278],[-126.3261727894438,55.29047115945175],[-126.32130340095364,55.287312392647955],[-126.31662976294618,55.28449337498648],[-126.314937649276,55.283521154335276],[-126.31597759626358,55.28032024257631],[-126.3162257879222,55.27614482804078],[-126.3173726084189,55.27215526368547],[-126.31918911842293,55.27084264608985],[-126.32341088471169,55.26926398007205],[-126.32364326275761,55.26628906764535],[-126.31978647643531,55.2622765407179],[-126.31642423919133,55.25888975553275],[-126.30282139261769,55.25032316279331],[-126.29069473694966,55.24427802930826],[-126.28373185893098,55.24132874628285],[-126.27696351425652,55.23872803453207],[-126.27189830775372,55.23614116821601],[-126.26675516179733,55.23165501871788],[-126.2636104713609,55.227478000404986],[-126.25848510893525,55.22191643511628],[-126.25847197292681,55.22293775389825],[-126.25841493644478,55.22739930447824],[-126.25576223388447,55.23149890780079],[-126.25292856641181,55.23400417326851],[-126.24819026048222,55.23712237590269],[-126.2417798656279,55.23818315333412],[-126.23977971006538,55.23811535050064],[-126.23482492534178,55.234783197259574],[-126.23239565232295,55.229627547384936],[-126.23255077762434,55.22545250855072],[-126.23411632028346,55.220665635743636],[-126.23406221414878,55.21711809841777],[-126.23331208781308,55.213742083462066],[-126.23312533038589,55.212604680941965],[-126.23200747743981,55.20671195944589],[-126.22887515260447,55.202175711878695],[-126.22798782526833,55.20120980421078],[-126.22576781296452,55.19565051842771],[-126.22146841308768,55.18866152936714],[-126.21637295065827,55.18171857799646],[-126.21371952738396,55.17868618192822],[-126.20829288935049,55.17414439461824],[-126.20016277297472,55.170332405447915],[-126.19281214953453,55.167781849832416],[-126.18929111517403,55.16285105050578],[-126.1881899186791,55.156330835635146],[-126.18457838255436,55.15082669264833],[-126.18206230766404,55.14567023389095],[-126.18096974621119,55.13852284638205],[-126.1821615408701,55.13195443358086],[-126.18681119798862,55.12780864424598],[-126.18710930607891,55.127691733435896],[-126.19295584499,55.12343640083309],[-126.195673859277,55.12161354763472],[-126.19392576782583,55.11840910290571],[-126.19047854121087,55.11553872143366],[-126.18265538377474,55.11212828431888],[-126.17720193411799,55.11004883027009],[-126.17147414173392,55.106589890786985],[-126.1663613952477,55.10204587446208],[-126.16186444199025,55.09630935370681],[-126.1586618898701,55.09069644486256],[-126.15752505958011,55.08685465300377],[-126.15755978363904,55.08468662746047],[-126.15808072867546,55.083145085502856],[-126.16011173263723,55.08058927989488],[-126.16173811857051,55.07824897546285],[-126.16287351662638,55.07585554361883],[-126.16341390772104,55.07288953623451],[-126.16376818870037,55.069287711902135],[-126.16382130303927,55.06569524353633],[-126.16324787264085,55.06409241056673],[-126.1614367549375,55.05881816763995],[-126.15881103620478,55.05474539728045],[-126.15657163147554,55.051541068617],[-126.15550884751391,55.049535681231625],[-126.15597112292565,55.045082679393914],[-126.1623244607124,55.039564986300206],[-126.16485840873959,55.03643509186877],[-126.1665879457228,55.03370040741161],[-126.16669806564337,55.033073157649476],[-126.16692203588653,55.031531977753694],[-126.16695872349283,55.02902352166831],[-126.16522979004024,55.02489592724786],[-126.16281825347151,55.0200256450752],[-126.15922284927392,55.0144043225965],[-126.15657868328708,55.011594695774676],[-126.15628706535952,55.01141589228265],[-126.15147974616048,55.013625678426294],[-126.1393096290311,55.01613045183562],[-126.13112321923538,55.018208821538416],[-126.114183999213,55.02045628086634],[-126.10144725193354,55.02106759082199],[-126.09011317158763,55.02078072087715],[-126.08634371762825,55.02024589093278],[-126.07901963131154,55.01814551415904],[-126.07361302195754,55.01468187683596],[-126.07108808137238,55.01112679786371],[-126.06919067103651,55.00597669258047],[-126.0692066310745,55.00500019914084],[-126.06966048052102,55.00180173387273],[-126.06996387781477,54.99999193092791],[-126.0681297930238,54.99541512264914],[-126.0591663947497,54.98608489807535],[-126.04361481186253,54.96989425687683],[-126.02816252138666,54.95483042015552],[-126.00318881614355,54.94082237599367],[-125.99992177230757,54.939962393886276],[-125.98501179298235,54.93937021941472],[-125.9797724472232,54.935696457072076],[-125.97615986737424,54.93372492631039],[-125.97296945725185,54.93254173766113],[-125.96766824135952,54.93047103328926],[-125.96128822161612,54.9285162296557],[-125.957380503182,54.926078210389385],[-125.95342835347924,54.92188416872015],[-125.94958663566965,54.91756462484477],[-125.94596203941843,54.91518906842819],[-125.94574458573679,54.91410498455553],[-125.94948335916342,54.912601527778214],[-125.94743952985425,54.90924120616269],[-125.94640995523902,54.90753863270969],[-125.9402590645869,54.90174856437757],[-125.93504425894348,54.89807291078497],[-125.93114016747377,54.896153657567815],[-125.92712888390835,54.893212937984245],[-125.9232120585503,54.89020943608235],[-125.91632615851802,54.88762488684572],[-125.90717410839044,54.885692247357625],[-125.9002382373977,54.88509557050527],[-125.89744256103404,54.884663267167376],[-125.89887320238336,54.881116841943545],[-125.90354002841069,54.87639939440687],[-125.90768224956838,54.87523794375812],[-125.91251130742631,54.874175387570006],[-125.9211047553556,54.87297176857987],[-125.91995539583553,54.86967426374767],[-125.91853755005675,54.86796224321574],[-125.91287248416954,54.86600539841168],[-125.90867464547604,54.86460482104312],[-125.90597691235648,54.86290961870975],[-125.90384562347496,54.85949474728274],[-125.90636631592156,54.85656722125661],[-125.91183964053442,54.85259363169259],[-125.91495206844365,54.84989031674561],[-125.91600297730132,54.84748117075204],[-125.91555609934004,54.844685778979084],[-125.91374847881029,54.84326906744052],[-125.91075351638898,54.84243378564039],[-125.90560440509432,54.841775973373686],[-125.90420114667995,54.84116570556292],[-125.89988581998581,54.83793717611543],[-125.89664999721982,54.83389416963994],[-125.89434579004713,54.83185860994813],[-125.88857742910542,54.82999909738777],[-125.88340146210905,54.82849822095913],[-125.8815020699125,54.827080947178445],[-125.8806793416176,54.825655732014894],[-125.87799786986375,54.82499016913625],[-125.87562628592558,54.82505050977609],[-125.87117889765386,54.82536845347999],[-125.86732602300319,54.82515831885129],[-125.86671903999034,54.824709732604646],[-125.85986240953481,54.82241767774309],[-125.8532077593221,54.82056445420728],[-125.8528023654941,54.82051021896847],[-125.84904364311217,54.82029962464703],[-125.84380405219838,54.81981828893477],[-125.84338373482487,54.81959378963348],[-125.84290126804314,54.81930649921973],[-125.8390088447197,54.817447038202],[-125.83394435696083,54.81622194382443],[-125.82947531805681,54.8144151541198],[-125.81920217237882,54.80967930346758],[-125.81263653318669,54.8062831245517],[-125.80874513950835,54.80476313310102],[-125.80655370405049,54.80323674011348],[-125.8011968027583,54.801785868866816],[-125.79197403028736,54.80022975207274],[-125.78404783401885,54.7983347935529],[-125.77749284918845,54.796710568023876],[-125.77054960448307,54.794915055173874],[-125.75912625904587,54.7916054118105],[-125.75565741873567,54.79037123971662],[-125.75485408024144,54.78916917933615],[-125.75511755275683,54.78683148558675],[-125.75664697027926,54.78390502528348],[-125.7577918918077,54.78008192094975],[-125.7615015716098,54.777311966859145],[-125.76384701556847,54.775936848648826],[-125.76768923472252,54.77437638649114],[-125.76497783521091,54.77170155005891],[-125.76198195636634,54.76977863367156],[-125.76128553045096,54.7689799611553],[-125.75910179180015,54.76151310879164],[-125.76028199810392,54.754196149688624],[-125.76307920263574,54.74990138594492],[-125.76678931338478,54.7465131218965],[-125.77536135082214,54.74509567681984],[-125.79117287631776,54.74672713632312],[-125.80562651098523,54.74927716979801],[-125.81287292028907,54.75151911705802],[-125.82492341345457,54.75225354622342],[-125.83950588925076,54.750804204357074],[-125.84707028513792,54.747732050856804],[-125.84940430608685,54.739779616816996],[-125.84518048671521,54.7287283044363],[-125.840814402736,54.71883232269482],[-125.83984263876721,54.716654094705866],[-125.83504978606058,54.712911975306845],[-125.82913289733965,54.70660591562221],[-125.82211549232215,54.699850040555226],[-125.81660452719774,54.694054599311166],[-125.81507525679608,54.684923351645814],[-125.81303246613821,54.67945542419167],[-125.8063308328344,54.67320974809512],[-125.80006854778301,54.66969683823234],[-125.78537394286361,54.66224521501737],[-125.77139018530771,54.6564326017938],[-125.73736894038979,54.646043992323015],[-125.72305009961369,54.643369666609495],[-125.71328734952728,54.642388653755894],[-125.70519109112695,54.64082855346897],[-125.70179280671846,54.63616174752277],[-125.70143542904697,54.63194126378397],[-125.70640457262665,54.627581338829145],[-125.71454251508825,54.62502935570018],[-125.72030576688468,54.622256430558174],[-125.72015961335293,54.61866359957119],[-125.71687575799015,54.61542191785118],[-125.7071615494961,54.61078529472489],[-125.69886666978114,54.60757584885011],[-125.69013831604954,54.60235795321521],[-125.68279963773308,54.598280810049054],[-125.67639212540121,54.59630206569812],[-125.66386367872923,54.59356276359895],[-125.65350673345577,54.591043347184005],[-125.64535214816834,54.592274273453405],[-125.63861861344071,54.595900888390105],[-125.63325869302135,54.60020317101463],[-125.63248861741796,54.601293853227055],[-125.62689526057117,54.60382129297545],[-125.62053206950291,54.605620426248976],[-125.61718971996964,54.60626403847792],[-125.61383826532371,54.606217693936685],[-125.6086172628155,54.60532316526029],[-125.6035998588161,54.60425885206347],[-125.59777745148408,54.60303043346079],[-125.59050156106353,54.602880923648264],[-125.58203641708707,54.60371241832077],[-125.57694498072327,54.60538819909189],[-125.5749825493664,54.606080211014984],[-125.57056974689338,54.60809851919625],[-125.56694043144577,54.6093668865827],[-125.56153566065227,54.60829948213831],[-125.55636820504607,54.603980591293116],[-125.55556255229997,54.60101225346077],[-125.55553714477115,54.599068063521116],[-125.5567876772882,54.596779092540345],[-125.5613002273072,54.59408971309206],[-125.56786531874921,54.592348114595104],[-125.572574234117,54.59153144058296],[-125.57512554403644,54.59083255188832],[-125.57432478598271,54.58877816870314],[-125.57164663638696,54.586788904102725],[-125.57095761134985,54.58593539090294],[-125.57217942868672,54.580340297822836],[-125.57556360149474,54.57553213138449],[-125.57740199104629,54.5716950790452],[-125.57767364808242,54.56941147239146],[-125.57546691644826,54.56542604952714],[-125.5706372567127,54.56326801363038],[-125.55961545677178,54.561831276273615],[-125.5539482982245,54.55556632775105],[-125.5530513184084,54.553968349685086],[-125.54734616451965,54.552728965356835],[-125.54310914196314,54.5518889982729],[-125.53629266456997,54.54757198955183],[-125.53282234700166,54.544790448243695],[-125.5292674753164,54.54131863229008],[-125.5250004931935,54.53785290698799],[-125.5217304200679,54.53397880983679],[-125.51747096418741,54.52999321485758],[-125.50794500468658,54.528709971879564],[-125.50069342072047,54.53021260941464],[-125.49914752352723,54.53376305859546],[-125.49887251951719,54.53724702408632],[-125.49996978769204,54.540001954274054],[-125.50097675556107,54.54255044577109],[-125.50366670368648,54.54687966055593],[-125.50457534811139,54.54990255094929],[-125.50381810709939,54.55356374761996],[-125.50187844603751,54.55630630930243],[-125.50090790820389,54.55836294477969],[-125.49917206968456,54.56088231709105],[-125.4955299676105,54.560831534095975],[-125.49160105281574,54.56016127622852],[-125.48775674078007,54.56017213583474],[-125.4847177448252,54.5602400199758],[-125.48186375962673,54.559161848352026],[-125.48155876390075,54.5587663577819],[-125.47821265404933,54.55739932485171],[-125.4761429209039,54.556835025319835],[-125.47308715524252,54.55701901649208],[-125.47122719732441,54.55701995921666],[-125.46993993025845,54.5558855476259],[-125.46679439714543,54.554635535908794],[-125.46394197925018,54.55350319425002],[-125.45949413655737,54.549971668746316],[-125.4539686083477,54.547133987333346],[-125.44846026975429,54.546526954708426],[-125.44109492311154,54.54688775724111],[-125.43667853809191,54.54689439530974],[-125.43008222590608,54.54543040430328],[-125.4227135506273,54.544930005790015],[-125.41800625302355,54.54579467752603],[-125.4121282183318,54.548319959561994],[-125.40859871133357,54.550211266840435],[-125.40546202244936,54.55171017765303],[-125.4008452305941,54.55160704247123],[-125.39730768495879,54.54977992728534],[-125.39415252856638,54.548312968158434],[-125.39001663339805,54.54820284197043],[-125.38618891694954,54.54821059086413],[-125.38540632998887,54.54769599081055],[-125.37861818525535,54.545708621890384],[-125.37310705373123,54.54435456358245],[-125.3641499349593,54.542426933786295],[-125.36121396155475,54.5419188918403],[-125.35767286679605,54.54147032027168],[-125.35178143035124,54.54170804455676],[-125.35040698664274,54.54239958055814],[-125.3474749642531,54.544570044679254],[-125.34462555272721,54.54543283146216],[-125.34060393234607,54.54594879337738],[-125.33196238460172,54.546591811183475],[-125.32635310512111,54.547519719340585],[-125.3206583328495,54.5479810152196],[-125.31614884712094,54.547982790004674],[-125.31044962084907,54.54685779322708],[-125.30728546608998,54.544286533394356],[-125.30424351766797,54.5418413134216],[-125.29961643829367,54.54151031268459],[-125.29569337464586,54.54258980121905],[-125.29265571058485,54.54442686621925],[-125.28911993468495,54.54637743695789],[-125.28283059994924,54.54449513765054],[-125.28027404808522,54.542724106358975],[-125.27801033921942,54.541931315078656],[-125.27565376427928,54.541137931891065],[-125.27201749999244,54.53999644430477],[-125.26455651022223,54.53875129436203],[-125.25619823880777,54.540017820472],[-125.25296302547719,54.54070591091433],[-125.24717427066967,54.54122593066214],[-125.24275102438563,54.5416287002745],[-125.23714528343608,54.541459506172934],[-125.23321828991425,54.54100492139061],[-125.22684621225082,54.54203997218031],[-125.2225159828032,54.543239987294314],[-125.21858805601205,54.54364503125236],[-125.21368500930468,54.5439899341609],[-125.20553107884594,54.54496762713344],[-125.19913886026356,54.546171342333096],[-125.18961526022426,54.54662832479161],[-125.18911820452597,54.546687750002064],[-125.17231784024499,54.54680827611828],[-125.15740195055292,54.54646462760805],[-125.14285212874776,54.54493010716897],[-125.1308735947398,54.542758084209304],[-125.12479101254456,54.54098555649763],[-125.1140963848027,54.5347086020826],[-125.1061462079723,54.52774295120811],[-125.09929035423272,54.518320920586255],[-125.0982134345967,54.51518607669443],[-125.0967575154326,54.50747900507946],[-125.09676416284206,54.5008578725447],[-125.09460481363399,54.49770602411104],[-125.08814219406011,54.49251515039581],[-125.07687424127627,54.489142388102024],[-125.06530495027963,54.48685039499927],[-125.05794903519873,54.485082623547875],[-125.04392520927017,54.483307234503684],[-125.0326513914938,54.484374353472376],[-125.02949092594433,54.489115910627284],[-125.02918861126236,54.49207919857868],[-125.0277122495526,54.49299032504689],[-125.02073569370853,54.495443391376426],[-125.01277889361366,54.49743120594979],[-125.00866279088501,54.499306345971796],[-125.00346054087633,54.49936262174984],[-124.99078796063779,54.500432435658674],[-124.97488535751134,54.50497721569838],[-124.96986720800405,54.506915183887884],[-124.96652011907896,54.50764853761282],[-124.95550903435569,54.51020713295467],[-124.94441130859441,54.512468323442775],[-124.93537661577393,54.5151407243217],[-124.92835870284779,54.52118116168068],[-124.9247014303568,54.5253960810547],[-124.92271582853834,54.52904322673784],[-124.91866840880336,54.53331725696698],[-124.91413383603162,54.53548125364779],[-124.9058755993227,54.53666210380277],[-124.89803301581753,54.53619751054036],[-124.8882994747611,54.53576901276445],[-124.87713030294368,54.53346289556016],[-124.8710443177054,54.53225106591849],[-124.86299821813576,54.53246330173307],[-124.85218339152023,54.53307019705275],[-124.84324469395975,54.53470637464336],[-124.8316538820805,54.534784442196965],[-124.82359746972408,54.534250306372186],[-124.81701747349389,54.534634890873456],[-124.80797753660933,54.534896628092426],[-124.79924674406077,54.53465000246394],[-124.79296700040359,54.53377285647999],[-124.78493462069602,54.53192821645481],[-124.77114899313216,54.52566177015916],[-124.76949344040322,54.524569903628944],[-124.76655242354083,54.522963287902726],[-124.75911877112436,54.520889984685674],[-124.75215892306221,54.519555798993956],[-124.74863939187506,54.5176561093063],[-124.74698996976288,54.516393744485086],[-124.74302718289722,54.51078873335894],[-124.74177865145607,54.50707528081601],[-124.73857263382949,54.50409430538273],[-124.73232418660696,54.50139535223145],[-124.72529432733096,54.49846391756239],[-124.71884477846983,54.495815921087775],[-124.71250071137595,54.49328517084791],[-124.709182129063,54.492013641485734],[-124.70380343694443,54.48982415136603],[-124.69814835039021,54.486609982242165],[-124.69386572246572,54.48357150176927],[-124.69326234093033,54.476773007688294],[-124.69918221639266,54.473538704153675],[-124.70832399893476,54.4711177813376],[-124.71305910250491,54.46959070093539],[-124.71475573225042,54.46629319107178],[-124.71576594570061,54.46366944005818],[-124.72120259702879,54.458950547029396],[-124.73115183330006,54.45527298767246],[-124.73704770489161,54.453120863847786],[-124.7421594153689,54.451309844199606],[-124.74609902470525,54.449388022620354],[-124.75462918481199,54.44901831898353],[-124.7596363691643,54.44908719359014],[-124.76561918622237,54.449103004464874],[-124.76875528562753,54.44763827970878],[-124.76896332953632,54.44688770665678],[-124.77911587055614,54.441326683568654],[-124.7927648599297,54.43765424718224],[-124.79639792250157,54.43709873276939],[-124.8070059018108,54.43426386280839],[-124.8132039546376,54.43103584284613],[-124.81497773666342,54.42954774509825],[-124.81498725388597,54.42761241483939],[-124.81185684874164,54.4268562021592],[-124.80913287187403,54.425942588175324],[-124.80591501193014,54.42342018507853],[-124.80103598240136,54.421186036397366],[-124.79801869548439,54.419229886226724],[-124.79803157495347,54.418262296120155],[-124.79922477234771,54.41655365606019],[-124.79904473305267,54.41478669650574],[-124.79384888162001,54.41392005985729],[-124.78876701264147,54.413385864854206],[-124.78399348191161,54.41183304620118],[-124.78008661667292,54.40919553621959],[-124.77767822711917,54.40604425228473],[-124.77810564577337,54.401541447365766],[-124.78312278110971,54.39847337501478],[-124.78461779641283,54.39648114859761],[-124.7890404267447,54.39363988596935],[-124.7919069117365,54.39119524150673],[-124.79417273032426,54.38869083194327],[-124.79908424732199,54.38755652375001],[-124.80291935530043,54.38573942964346],[-124.80282976092182,54.38351637360528],[-124.80335553581612,54.38083341669241],[-124.80318523810446,54.37661139751145],[-124.80467634462944,54.37416191540885],[-124.81301553237537,54.370757802981984],[-124.81656026252139,54.368767219955274],[-124.8176623758287,54.36585682848474],[-124.81385544024933,54.364646028475086],[-124.81044080800861,54.363214926380785],[-124.80538145221811,54.36052211636069],[-124.80149065586578,54.358512619516134],[-124.79885170372037,54.356963361931854],[-124.79486443706612,54.35616235645947],[-124.79426984096155,54.35592350274438],[-124.79183721240351,54.35471662723564],[-124.78782679812392,54.35471264039918],[-124.78323601516631,54.355034265617554],[-124.77766413527777,54.35410933261461],[-124.77105026868833,54.350897666272665],[-124.7670557436486,54.34883223080588],[-124.76531661486074,54.34665512963011],[-124.76817626229285,54.34489197059641],[-124.77365192255768,54.34485760944876],[-124.77708545116661,54.34348532372306],[-124.77681718838299,54.34057942146794],[-124.77333034134963,54.33754257882196],[-124.77051043898034,54.33593709096344],[-124.76614406637226,54.33295387268621],[-124.76137736514401,54.32997537908427],[-124.75367415570113,54.3277820846774],[-124.74498096842048,54.32724476962313],[-124.74098940846255,54.32671073092165],[-124.73454505334539,54.32624070098122],[-124.72790374610399,54.326162540094394],[-124.72566225695923,54.32587028274553],[-124.71629845835136,54.32412315943465],[-124.70799647041655,54.32392782143474],[-124.70093713884131,54.325384993666894],[-124.69417930787986,54.327526011100474],[-124.68800469938881,54.32875894886978],[-124.68409766037783,54.328008891839346],[-124.68225749419832,54.32674344639854],[-124.67993968518915,54.3245139915745],[-124.67305297199024,54.32106091584163],[-124.66595461355092,54.31704058470097],[-124.66199107465201,54.314281953902544],[-124.65879651179412,54.31158542714649],[-124.6535727825832,54.30734303254802],[-124.64814553203598,54.304639410426354],[-124.6390729933099,54.30317623589132],[-124.63401216263222,54.30247434891973],[-124.62856434513218,54.300907638369615],[-124.62702277241037,54.298166126394264],[-124.62665839345013,54.29662073016779],[-124.62031274893559,54.29613673787606],[-124.61894961332872,54.29636321987334],[-124.61326656126744,54.29770545833498],[-124.60565180105749,54.29785142386296],[-124.59980292210025,54.29725555985208],[-124.59375638231683,54.296137388203405],[-124.5863465856501,54.29525399017069],[-124.58342445725016,54.29467337897452],[-124.57379305885866,54.292571498393045],[-124.56728858531746,54.29048778552928],[-124.55980571790143,54.287773818439106],[-124.555451561371,54.285015922709555],[-124.55120330591699,54.281452618127986],[-124.54346643526675,54.27685272950869],[-124.53736312141622,54.27442267782957],[-124.53502275786899,54.273561112002255],[-124.52832959672521,54.27129374951783],[-124.52367245229802,54.26979453187692],[-124.52047195954329,54.26846520660217],[-124.51881575081727,54.267432416682205],[-124.5162323053757,54.264793179284275],[-124.51637151697076,54.264346813025085],[-124.51705021089948,54.2621685352314],[-124.51884943021103,54.25921531612425],[-124.51995740155952,54.25664795449132],[-124.52196255796545,54.25351797227907],[-124.52367518050441,54.25038440531973],[-124.52445351332678,54.24970383637623],[-124.52714812960375,54.24663590905419],[-124.52804099459202,54.245329414379036],[-124.5335885370292,54.23902499647307],[-124.54062565901663,54.23186899285841],[-124.54734359770345,54.22584686740419],[-124.55637471831632,54.22133051676777],[-124.56624127928737,54.219260845442285],[-124.57761823235049,54.22062231587381],[-124.58198678161445,54.22280617146466],[-124.58572593682923,54.226765816218155],[-124.58811689197996,54.23014511708109],[-124.58964776460653,54.23260034171709],[-124.59207535364197,54.232673305762376],[-124.59968954898598,54.232644814604605],[-124.60573321018241,54.23221250284684],[-124.61109423552357,54.23286534678066],[-124.62042545005133,54.23530155401061],[-124.64532388636427,54.239623149967194],[-124.65722660447489,54.239728385927755],[-124.6642295755371,54.2405582954899],[-124.67424565962577,54.24241537553169],[-124.67899491264168,54.24494927727972],[-124.68325738048999,54.247809266499495],[-124.68908762632081,54.24977200578779],[-124.69623836316626,54.24648858981061],[-124.69959030307723,54.24313728762072],[-124.70272736900095,54.242686929957216],[-124.71049045593257,54.24630909808652],[-124.71600224958286,54.249638164867974],[-124.72437577056522,54.2520113469109],[-124.7325501286049,54.252885411685924],[-124.73471136729272,54.25215522233442],[-124.73941752171481,54.24971302394124],[-124.74529261002259,54.24625223189878],[-124.75294094306334,54.24262119745553],[-124.76036548590186,54.241272403137195],[-124.76689571516445,54.24100729827374],[-124.77322258903989,54.241886763736645],[-124.77762027345135,54.241949002496675],[-124.78250101408807,54.24128114472447],[-124.78622096435005,54.239804000466386],[-124.78935370510374,54.237362100183255],[-124.79014159809364,54.23724449827702],[-124.79749071780323,54.23207545042254],[-124.80231247377586,54.22809077095098],[-124.80701680020604,54.22388073487492],[-124.8105622348056,54.219838391559456],[-124.81628045297902,54.21237623928062],[-124.81990235012711,54.2093558955218],[-124.82965701159097,54.20738935345292],[-124.83823614020908,54.207292532558604],[-124.84465983505122,54.207873545408255],[-124.85226275293073,54.20806214074965],[-124.86443926779545,54.20905477135992],[-124.87309637972041,54.21004940600171],[-124.88310935283928,54.21377990857723],[-124.88776525685542,54.21841043962857],[-124.88822957978607,54.221147653975606],[-124.88722999402827,54.22400586974074],[-124.8900393338232,54.22817133294471],[-124.89762182826979,54.22984430700153],[-124.90698131194273,54.231801616089044],[-124.91553072635301,54.235354887641456],[-124.92212566913797,54.23841531723263],[-124.92293108837296,54.238789836666115],[-124.93003017998724,54.241433153357],[-124.94874839334902,54.24271657113172],[-124.95664387207268,54.2425516465022],[-124.9667821839694,54.24250386311937],[-124.9767214701285,54.243035979001846],[-124.98092719334171,54.24029362365005],[-124.98434333865767,54.23898713851786],[-124.98971680864571,54.2368814610578],[-124.99704829828623,54.2339225794212],[-125.00737686443209,54.23290528734645],[-125.01419906297343,54.23251282037339],[-125.01967063822268,54.23200155744868],[-125.02347571630779,54.229774216405104],[-125.02397127732499,54.225728159634194],[-125.02828102997935,54.221623069287425],[-125.03988323316283,54.220541542614],[-125.04455609348831,54.21991533319338],[-125.05197354037878,54.218262051699774],[-125.05811804166737,54.21375806185772],[-125.06299012908589,54.21108080252553],[-125.06747835225153,54.21107951174348],[-125.07925867790539,54.21285392520435],[-125.0902679502251,54.211996080186246],[-125.09992146429974,54.209147000116715],[-125.10295505793758,54.20817486988652],[-125.10596601705933,54.20469364927564],[-125.10411629646207,54.20070169268121],[-125.09721412914007,54.19590165246127],[-125.08776345044149,54.191789932690874],[-125.08154231809638,54.189673198279365],[-125.07453830776898,54.18755913183133],[-125.06732359917376,54.186643713194826],[-125.05993482258116,54.186640464691266],[-125.0419066135186,54.187037093888954],[-125.03188093654322,54.18811341332667],[-125.03041087308863,54.188567615164445],[-125.01872120265435,54.18981771497983],[-125.00947063777801,54.19054900266482],[-125.00704202877971,54.190600840669816],[-125.00422287328418,54.189009676591084],[-124.99938857982912,54.17866545057145],[-124.99551861332417,54.17107086965558],[-124.99513985530642,54.16833479738912],[-124.99418755304251,54.164563514425566],[-124.99428913317827,54.161652206935024],[-124.99206843636611,54.15765532190167],[-124.98429745002193,54.15342385388989],[-124.97342314367485,54.147525856311916],[-124.9658711550097,54.14021258465142],[-124.95899289619523,54.132447603827416],[-124.95580566268993,54.12986641212972],[-124.95036759378617,54.125930522455455],[-124.9439734019685,54.12043585306722],[-124.94137653401529,54.11523392560684],[-124.94041259673256,54.11335271683854],[-124.93909442228025,54.10615470569125],[-124.94236567186218,54.093942987481185],[-124.94413152126275,54.08961244705502],[-124.94900900885396,54.08402754864303],[-124.95185320477677,54.08002883845821],[-124.95604527725651,54.07541444344953],[-124.95799152009474,54.07295805024351],[-124.97146943750339,53.99846835905917],[-124.96166842431477,53.99047926874498],[-124.96022322336516,53.9840888626934],[-124.95614556943615,53.98089493268752],[-124.95323525797106,53.97992267631975],[-124.94945811758862,53.97878150211349],[-124.94634938560323,53.977810145711956],[-124.94441239164328,53.97524381259844],[-124.94228427039833,53.972390700954605],[-124.93830523889432,53.96902393373121],[-124.93453333786337,53.96713744190421],[-124.93307952663996,53.966626695870566],[-124.93269755959719,53.96662500371296],[-124.93366593879128,53.9634282895101],[-124.93366791604655,53.960971847039154],[-124.93105495422193,53.95920579715226],[-124.92533622265327,53.9570329069846],[-124.9239715283713,53.95663821358261],[-124.91942604886498,53.95578213354765],[-124.91613647082931,53.95480835096111],[-124.91371161433811,53.95406965399516],[-124.91071273268068,53.95367073158992],[-124.90819505368576,53.95298261077848],[-124.90538832102293,53.951673493376674],[-124.90345270544955,53.95093174705913],[-124.9014193139119,53.94984686868407],[-124.8992822088713,53.948645068551116],[-124.89657253946078,53.94772812181649],[-124.89560406748483,53.947388251301874],[-124.89385962255542,53.94579061550808],[-124.89221612274949,53.943848872179835],[-124.88651051828839,53.94247848588184],[-124.88438159874951,53.94213900732728],[-124.88369765482281,53.94144882923982],[-124.88156754010554,53.94002218096851],[-124.88050355837947,53.938137722030994],[-124.8783862592863,53.935681150040125],[-124.87790271243378,53.9337975789574],[-124.87809701727316,53.93225636935802],[-124.8787765271295,53.93197032651234],[-124.87917401242119,53.92968720711709],[-124.87781297946422,53.92637959531956],[-124.87434380368184,53.924267114836155],[-124.87007991240091,53.92164188957561],[-124.86873401084307,53.91781453181742],[-124.86757033968536,53.91627009494933],[-124.86507127265918,53.91221397800974],[-124.86575639469396,53.90947656906277],[-124.86903957271282,53.907707302295144],[-124.87301468840394,53.906857359963716],[-124.87387549418929,53.906624004275145],[-124.87388839861322,53.90445771180442],[-124.87331272399344,53.90149059325336],[-124.87303299969584,53.89886452920335],[-124.87408736539194,53.89823757020715],[-124.87990053928223,53.89480855930639],[-124.88579790365722,53.89161697290054],[-124.89431775073669,53.88842231562881],[-124.89596637634895,53.88779389993539],[-124.90225249693273,53.88596664891971],[-124.90487197543426,53.88436848082361],[-124.90468231867793,53.87882973811167],[-124.90420209581484,53.8750632649328],[-124.90352565825351,53.87238212574236],[-124.90333104061312,53.869354187924706],[-124.90632257051246,53.8668990796265],[-124.91213354974207,53.86678201720438],[-124.92015045249352,53.86918357954221],[-124.92460180970491,53.8727261954925],[-124.9278782188781,53.87751669773456],[-124.92924211972732,53.88139732832095],[-124.92942444298983,53.883793310966645],[-124.93020213078196,53.88379573933625],[-124.94316549516694,53.885561843347546],[-124.96066770941593,53.887611108209676],[-124.97024349816314,53.89200481510356],[-124.97420720201009,53.8939428862147],[-124.98310651150712,53.89742077107672],[-124.99308376026332,53.90180591454423],[-124.99628240228067,53.90328542405923],[-125.00130093476854,53.904597356773124],[-125.00721567841045,53.90545104881966],[-125.01543254945078,53.90510343576822],[-125.01997864441842,53.90383664604827],[-125.02211141829521,53.90332470905698],[-125.03380497157525,53.90171921118601],[-125.04714894264741,53.90061627348831],[-125.05015438353549,53.90061423591676],[-125.05847656856761,53.90094444812111],[-125.06882532409449,53.90139058078123],[-125.07589542149177,53.90109552148992],[-125.08313695393325,53.89993941085678],[-125.08874155179163,53.89828045001463],[-125.0949395688792,53.896669374367264],[-125.09888845121864,53.89535202318198],[-125.10323944843203,53.893059103666054],[-125.11009932885283,53.88967790231684],[-125.1157836416196,53.88630449413138],[-125.11886316881571,53.88275441349222],[-125.1160530430635,53.8786509616718],[-125.11061189383146,53.8756935341499],[-125.10306325109225,53.87364707992653],[-125.09377789131796,53.87297829692731],[-125.08759677190153,53.87258718053512],[-125.08565780346957,53.87202081219643],[-125.08082209913725,53.87008480206127],[-125.07840030591973,53.86723738461829],[-125.07654668909976,53.863528393568174],[-125.07460584237712,53.86170110159086],[-125.06976666385397,53.86067864765346],[-125.06860950473701,53.86062657128501],[-125.06232889773321,53.86000654554802],[-125.05662631482255,53.85944393280044],[-125.04888723670364,53.85796996847287],[-125.03864278753815,53.85678188638458],[-125.03139913783984,53.85633121268307],[-125.02761845097403,53.855080320047826],[-125.02480798125262,53.85080267321574],[-125.02509702479702,53.85017212545474],[-125.02586414412715,53.84669183843491],[-125.02285592182635,53.841784115688796],[-125.02188397980315,53.84035697402235],[-125.02294872176242,53.836530740820045],[-125.0269913595516,53.832360089412575],[-125.0295934132973,53.831156765429164],[-125.03809312520424,53.82846942197743],[-125.04571080640622,53.82634520891094],[-125.05671367542365,53.82062003524564],[-125.06189949487806,53.81684755963339],[-125.06383379664129,53.8141053446726],[-125.06690394844907,53.807535359271526],[-125.07161046893692,53.80193342917381],[-125.07257571656766,53.80096129710963],[-125.07535701842396,53.79701732629353],[-125.07940466068419,53.79358538657275],[-125.0822954356969,53.791528458011996],[-125.09203428941468,53.78939793120062],[-125.10196820471977,53.78875958579002],[-125.10813843466765,53.78766184245194],[-125.11564651725021,53.78587689383405],[-125.12382513856656,53.78038526338737],[-125.12215834674731,53.77501869813811],[-125.11462658158379,53.77229294460854],[-125.10758310297281,53.770246922054696],[-125.10080729794372,53.76569160456471],[-125.09393612778891,53.75999426753561],[-125.09220995352138,53.75896858892639],[-125.08601554414037,53.755097301344804],[-125.0752136820949,53.75340377343813],[-125.06586937499345,53.75318582167206],[-125.06374610930479,53.75296317072558],[-125.05871960771539,53.752054606150175],[-125.05255581979131,53.75103212726688],[-125.04502766649344,53.74853214118793],[-125.04173518496701,53.745624206858906],[-125.03990296596794,53.743342842924754],[-125.03681217614181,53.74094774174127],[-125.0338221126363,53.73946857174164],[-125.02630766022897,53.7378205254687],[-125.01840533693294,53.73782897720539],[-125.01223710178549,53.73840737831336],[-125.01097250665835,53.73726275094062],[-125.0077868766339,53.73447066419359],[-125.00616054530724,53.73321265514595],[-125.01020274351501,53.731273368619235],[-125.01463308006318,53.72960991079799],[-125.01172399607482,53.72670200109424],[-125.00622726161737,53.72402634468566],[-124.99968777795682,53.723691398027256],[-124.99390680485314,53.724034577799586],[-124.98464960188936,53.723015063510516],[-124.97540293041517,53.720964871642785],[-124.97010474467122,53.71960044286691],[-124.96086280465656,53.71680756500698],[-124.95488377367263,53.71355625180816],[-124.9501540455581,53.71139099267262],[-124.94447406127895,53.71139267846662],[-124.9420745503183,53.71139114921905],[-124.93523318304008,53.71048203477714],[-124.9303150549783,53.70683110949531],[-124.92733607690587,53.702202553903795],[-124.93186363678478,53.699123089689465],[-124.94244894146563,53.69660338448636],[-124.95303446442645,53.69523492647517],[-124.96141462895167,53.695227146011334],[-124.97103593476257,53.69413608703554],[-124.97585291984956,53.692704773367595],[-124.98201414210699,53.68842081244411],[-124.97941036232008,53.68254263802803],[-124.9731370985146,53.67843770676878],[-124.96755115771732,53.67358499223719],[-124.96351062727805,53.669480256742425],[-124.95985883989863,53.665025867381836],[-124.95657174485076,53.662400542150905],[-124.94859122423247,53.65823736025953],[-124.94204871028684,53.654246531765004],[-124.94194571420701,53.65374655049455],[-124.94185952076147,53.65333184830493],[-124.94183916794356,53.65331206843236],[-124.95050755020081,53.649492064957144],[-124.95035377622764,53.64950135547067],[-124.95030380145162,53.649453310915426],[-124.95027731165042,53.64945139388889],[-124.95026364554971,53.64916505197916],[-124.95026040342348,53.649143173997494],[-124.95024035986671,53.64903545328782],[-124.95022270141126,53.648983766519336],[-124.95016837720016,53.648882466893426],[-124.95023169105126,53.6487765970342],[-124.95025621694865,53.64870567989747],[-124.95027802244326,53.64851654688759],[-124.95029325732749,53.648362640021396],[-124.95041483856149,53.64835194725222],[-124.95049283271494,53.64834086347573],[-124.95079189380107,53.64828243386742],[-124.95086438489712,53.64826402442787],[-124.9510420889584,53.64820732729867],[-124.95105929934758,53.64820131210752],[-124.95132892169335,53.64810733064548],[-124.95138449683827,53.64808317147987],[-124.95151880898985,53.64801825191705],[-124.951532242989,53.64801164795086],[-124.9515861754183,53.64797739196339],[-124.95162884954637,53.64793855636351],[-124.95179086956446,53.647751214918635],[-124.95192962840899,53.64758439005551],[-124.95210642754141,53.647412296551565],[-124.95223464286045,53.6472879490107],[-124.95234421746856,53.647226728557776],[-124.95185900110536,53.6472258440526],[-124.9296999631019,53.647191756124506],[-124.92949715126447,53.64719161947508],[-124.9252491644384,53.64808620258322],[-124.92524974383649,53.647989864797346],[-124.92525111846375,53.64077926154913],[-124.92878372853977,53.640779546673805],[-124.93858938282605,53.64077947960612],[-124.93942136277846,53.640779573708464],[-124.93999370534183,53.6407795956352],[-124.94008848533115,53.640778758648324],[-124.94007993166042,53.64059271859774],[-124.93998089910801,53.64038738875983],[-124.93984962861938,53.64018290264234],[-124.93967429872515,53.63999706181776],[-124.93955987054512,53.63980112198338],[-124.93956633508846,53.639620816132094],[-124.93958818416293,53.639431684362734],[-124.93968540865605,53.63925946838993],[-124.9398603709703,53.63908569109207],[-124.94001947928919,53.63893922424717],[-124.94022408672485,53.63879203961184],[-124.94047540682588,53.638671034126155],[-124.94071223444345,53.638523578100525],[-124.94100616905332,53.63836597964346],[-124.94119870820342,53.638246128717455],[-124.94140308143277,53.63810790216532],[-124.94157757830949,53.63795205151764],[-124.94173690290536,53.637796622180566],[-124.9419583236552,53.63765854535297],[-124.94214776118012,53.63751122342548],[-124.94240049567998,53.637408706390644],[-124.9427437873615,53.63732211654151],[-124.94302807641601,53.63724565193248],[-124.9432803686578,53.637160497793836],[-124.94362388267187,53.637064945265216],[-124.94393851015592,53.63698761693587],[-124.94428178096001,53.63690158715201],[-124.9446433466494,53.636841474839954],[-124.94498784592184,53.63678177568923],[-124.94527357010624,53.63672324272929],[-124.9455576249232,53.63665572328884],[-124.94591583470097,53.63657821794323],[-124.94621550922982,53.63649235452408],[-124.94646702377308,53.63636237619372],[-124.94660948457505,53.6361983945784],[-124.9466298565754,53.63599132427477],[-124.94685149132789,53.635843713648434],[-124.94708593507563,53.63571414850118],[-124.9474945248662,53.63536597671055],[-124.94762371696588,53.63520186828732],[-124.94772112386781,53.63502068532694],[-124.94789436587234,53.63483791917383],[-124.94802188530582,53.63466484243319],[-124.94802674411943,53.634622314937],[-124.95062192535008,53.634579547908956],[-124.95268726776749,53.63458306794128],[-124.95258984420857,53.632115951145124],[-124.95249635947089,53.632065841466186],[-124.95224763395785,53.63193483420645],[-124.95221596268132,53.63191327193925],[-124.95203759638201,53.63177223292316],[-124.95179489369127,53.63162783417481],[-124.95158418582622,53.631492121588366],[-124.95134482597018,53.631365675456806],[-124.95132063479143,53.63134809491714],[-124.95110471016471,53.631193846832346],[-124.95087159792244,53.631045049065904],[-124.9506517614202,53.63089581152909],[-124.95063503570442,53.6308827773528],[-124.95026808141384,53.63055580259609],[-124.95002349759554,53.63041138357474],[-124.9498130264251,53.630266707617345],[-124.94960859099896,53.6301080763714],[-124.94959197835972,53.63009056195241],[-124.94941664726167,53.62990474357573],[-124.94940561905649,53.629891203559254],[-124.94927199153594,53.62970462167188],[-124.94915542735747,53.62951763373365],[-124.94904666615189,53.62932175199541],[-124.94890288168797,53.629162531563],[-124.94877306112744,53.62897542679243],[-124.9487621317201,53.62895797110933],[-124.94867802667689,53.62876118519669],[-124.94867457585079,53.6287477116446],[-124.94862377950129,53.628582585757904],[-124.9485147981179,53.62839566365004],[-124.94850755898825,53.628382156816805],[-124.948439941181,53.628207920900024],[-124.94833755883221,53.62798464326071],[-124.94826872364197,53.62778351000374],[-124.94818616550799,53.62760074507067],[-124.94817937694732,53.6275693178289],[-124.94817063532945,53.62738943299065],[-124.94811873658372,53.62719292947663],[-124.94811539865405,53.627174975802916],[-124.94810532597658,53.626972682761675],[-124.94806970118655,53.626807125173734],[-124.94801592348576,53.626610049391125],[-124.94794731730734,53.626399955638014],[-124.94787781093854,53.62622570261369],[-124.94781053708587,53.62603802588897],[-124.94772487221519,53.62582833765446],[-124.94765225537823,53.6256271705629],[-124.94759692501303,53.62541663754558],[-124.94755830394661,53.62521968569568],[-124.94750597414715,53.62504054660668],[-124.9474381405994,53.624875270082164],[-124.94736897686255,53.62468757634938],[-124.94736385809031,53.62466512587994],[-124.94734051757106,53.62446327150651],[-124.94730345459837,53.62427977645603],[-124.94724957107996,53.62408718022313],[-124.94724623377068,53.62406922650186],[-124.94723793338538,53.62387198541751],[-124.94718738817019,53.623697333888],[-124.94709983701398,53.62348763730337],[-124.94704606836841,53.623290551851866],[-124.94704261851847,53.623277078222024],[-124.94702061080824,53.623097640846424],[-124.94693182201695,53.62293722522671],[-124.94692647828738,53.62292373492912],[-124.94686065710485,53.62275399448989],[-124.94674991755815,53.62256257355358],[-124.94674268000654,53.62254906658062],[-124.94667328379543,53.622370888005385],[-124.9466699468701,53.62235293425513],[-124.94662812281227,53.62213299246337],[-124.94658784067948,53.621927072113095],[-124.94656283701434,53.62171624047849],[-124.94654327331057,53.62128924370329],[-124.94651960040528,53.62110082920495],[-124.94652613084791,53.620916597003095],[-124.94652646906883,53.62090315668226],[-124.94652536439759,53.62087177926466],[-124.94652024654428,53.620849328723345],[-124.94651702254693,53.62082689485036],[-124.94650257097284,53.62072370236468],[-124.94647878582612,53.62053976792119],[-124.94644339821185,53.62036525814898],[-124.94636788839011,53.6202043941231],[-124.94611341595385,53.61985374812563],[-124.9459984487258,53.61968021334688],[-124.94578984060188,53.619539461961715],[-124.94576944617131,53.619521913574424],[-124.94557878636918,53.61934547106357],[-124.94556397462155,53.619331897266264],[-124.94543930230768,53.61916780320503],[-124.94527127206517,53.61899547602235],[-124.9452456623026,53.61895940150486],[-124.94517841192413,53.61877172273105],[-124.94509399130116,53.618588938287616],[-124.94508754518647,53.61854407042203],[-124.9451079161239,53.6183369988541],[-124.94511215513731,53.61831911179441],[-124.94517755200636,53.61812924118791],[-124.94521252190329,53.617944139147774],[-124.94521664795982,53.61793073219275],[-124.94534933264573,53.61755100744012],[-124.94536127313066,53.61752815146865],[-124.94548718115647,53.61734217468726],[-124.94560005793372,53.617147120749905],[-124.94572597796785,53.61696057919328],[-124.94582513150827,53.616783893192306],[-124.9459471493387,53.61660179812927],[-124.94609936573377,53.616423894319766],[-124.94620989249503,53.61624674351791],[-124.94633980566246,53.616051838855505],[-124.94646526794861,53.615883225860465],[-124.94656195881235,53.61572891412245],[-124.94667615629605,53.61555627629158],[-124.94668976368233,53.61554239706912],[-124.94685132839818,53.61536905567195],[-124.9469189224037,53.615241938857515],[-124.94692884112186,53.61522410169772],[-124.94694267390263,53.61520125324826],[-124.94695450016867,53.61518287721354],[-124.94697401370492,53.6151600787458],[-124.94699163340121,53.615137272573556],[-124.94710491223054,53.615001030773605],[-124.94728766860106,53.61481331161483],[-124.947430390754,53.61463588719031],[-124.94758259370073,53.614457981347606],[-124.94769099024717,53.61428977262047],[-124.94770848262893,53.614272001989875],[-124.94786769436534,53.61411656296155],[-124.94789668859939,53.61409329203527],[-124.94811796369585,53.61395520245359],[-124.94816780079223,53.613931550041855],[-124.94846017036649,53.6138282576307],[-124.94869347369887,53.613739000285655],[-124.94885746055449,53.61361945079088],[-124.94904888347175,53.613463172854814],[-124.94907585646374,53.61344492962655],[-124.94911420470108,53.61342622166376],[-124.94937391510395,53.61334112035151],[-124.94960443826947,53.613211506848444],[-124.9497725445783,53.61307854893962],[-124.94985629918006,53.612910686621206],[-124.94993090880942,53.61272985631752],[-124.94993564181388,53.61254112654185],[-124.9498970355549,53.61234361884805],[-124.94984660530133,53.61216449643081],[-124.9497810139301,53.611985796577564],[-124.94969212597248,53.611829853424275],[-124.9496905696596,53.611816396424565],[-124.94968521230085,53.61180347068336],[-124.94966884558539,53.6117764403509],[-124.94965970157952,53.611763472409976],[-124.94957415163357,53.61162549186243],[-124.94956535879675,53.611598527995746],[-124.94955634118928,53.61158052438275],[-124.94954732358956,53.611562520768985],[-124.94948962799468,53.61144662560232],[-124.94935394071442,53.61126898599949],[-124.94919752532351,53.611087247708284],[-124.94902405649682,53.61090592403306],[-124.94900756416756,53.61088392926408],[-124.94891322593494,53.61071898427466],[-124.94878845389337,53.61055936427643],[-124.94877932437232,53.61054584072554],[-124.9486869936601,53.6103764320385],[-124.94853782049047,53.610208199742154],[-124.94852489043626,53.610195198432024],[-124.9484064905357,53.6100081915995],[-124.94830726421976,53.6098118352474],[-124.94820768729056,53.609629474722134],[-124.94811157446205,53.609460023281],[-124.94800041414615,53.60928652295433],[-124.94787990070853,53.609108459144835],[-124.94778089018187,53.608903697556336],[-124.9477722116458,53.60887225339613],[-124.94774820250038,53.60869727855099],[-124.94773052837432,53.60857165173202],[-124.9477291979696,53.608549234425666],[-124.94772597427156,53.60852680046941],[-124.94772464387067,53.60850438316239],[-124.94772520676395,53.608481982505175],[-124.94772983642565,53.608297741570965],[-124.94775543302646,53.608108074641144],[-124.94776356899719,53.608085740576975],[-124.94777539289369,53.608067364405954],[-124.94792377001389,53.60788997987551],[-124.94797238181516,53.607839439001204],[-124.94798988556444,53.60782110378436],[-124.94801128814369,53.60779833068272],[-124.94802689859763,53.607779978814854],[-124.94804450066032,53.60775772795324],[-124.9480757212701,53.607721033166335],[-124.94821485446109,53.607534613720446],[-124.94835008764638,53.607352631992256],[-124.94849043666657,53.607193109644015],[-124.94863124870089,53.60701510208308],[-124.94864875181719,53.60699676676349],[-124.94884258656595,53.60681866917585],[-124.9490045726318,53.60662683919375],[-124.94916965493901,53.60646248754811],[-124.94935936141826,53.60629779624018],[-124.94937095954135,53.60628837121172],[-124.94957336903462,53.60614563210811],[-124.94983154127685,53.605817980068565],[-124.94984135833315,53.60580405823759],[-124.95002204266409,53.605621362195784],[-124.9504091390606,53.60528698927957],[-124.95062334807245,53.60512642742162],[-124.9507879691474,53.60497999400237],[-124.95095528167886,53.60480166041875],[-124.9510973933654,53.60464662262114],[-124.9512630206022,53.604459867238646],[-124.95145127948264,53.60427667081198],[-124.95146486771316,53.60426334651842],[-124.95164832931275,53.60412043787455],[-124.95181294285013,53.60397400298294],[-124.95195527255663,53.603810012784116],[-124.95210494948196,53.603655040056104],[-124.9522171981299,53.6034823794791],[-124.9522613656044,53.60330632638251],[-124.9522663250976,53.60310807993397],[-124.95227338784312,53.60290144529186],[-124.95229371564673,53.60269437113672],[-124.95231582420146,53.6024917936843],[-124.95235264228768,53.60230671387609],[-124.95235758733428,53.602109022878075],[-124.95238114001681,53.60192438253304],[-124.95241806937416,53.60173482251154],[-124.95242263975949,53.60170349462169],[-124.95242700014241,53.60168056253026],[-124.95242945341526,53.6016581783616],[-124.95243569265578,53.60163582734335],[-124.95244005280041,53.601612904210995],[-124.95245332974878,53.601536276630036],[-124.95246146193801,53.601513942184404],[-124.95256123687048,53.60130980405647],[-124.95257695472895,53.6012869803554],[-124.9525982396616,53.60126867755977],[-124.95261562637991,53.601254830725445],[-124.95283659407202,53.601125691971035],[-124.95288639912619,53.601102601965295],[-124.95321088988166,53.60099789450713],[-124.953508388063,53.600912550532165],[-124.95352933636228,53.60090769698217],[-124.95383966425656,53.60083926865351],[-124.95414072195501,53.600762925470555],[-124.95469963210523,53.60059640700497],[-124.95471679445433,53.600591511207],[-124.95497585498677,53.60052879804261],[-124.95522077707462,53.6004256306827],[-124.95542256555781,53.60030584660039],[-124.95561512578318,53.60017645473824],[-124.95580277406893,53.60001620744665],[-124.95583598671178,53.599975046881916],[-124.95586907353253,53.59993893096207],[-124.95586197418956,53.59976802142816],[-124.95586834830914,53.59958827617778],[-124.9558734998078,53.599381624493894],[-124.95587006866268,53.59929141626239],[-124.95578798050617,53.599090724793946],[-124.95577206159038,53.599045774523375],[-124.95536487110968,53.59745701846263],[-124.9552944947706,53.59724242965291],[-124.95522879177875,53.59706821181769],[-124.95507645526952,53.59672407429361],[-124.95507120994036,53.59670666855016],[-124.95505095557576,53.596607906606714],[-124.95504594788133,53.596580976039185],[-124.95504082842925,53.596558525632155],[-124.9550305895415,53.59651362481674],[-124.95502736285952,53.59649119094268],[-124.95501210249026,53.596419915094025],[-124.95499318230648,53.596343570470225],[-124.95497048406648,53.596191013489126],[-124.95493341246262,53.596007527575054],[-124.95489544718508,53.59585987397259],[-124.95489400157199,53.59584193678736],[-124.95487790527218,53.59550067391979],[-124.95488607797206,53.59532486059483],[-124.95489779108384,53.5952347755112],[-124.95490803699194,53.59520349704904],[-124.95498750283947,53.59505351745216],[-124.95501769545422,53.59498151835072],[-124.95518698248458,53.594645791302014],[-124.95528960516731,53.59447808918843],[-124.95544461366754,53.59425930236987],[-124.95549786570031,53.59417350541547],[-124.9555929294892,53.59400517239895],[-124.95565660730935,53.593880821034794],[-124.95284153129965,53.59388533719959],[-124.9513610985988,53.5938880516961],[-124.95411929098083,53.590020324333906],[-124.95363789531697,53.58807408961946],[-124.95210983719815,53.58499447765966],[-124.95066142240461,53.582370942336745],[-124.94960408514449,53.57985611962933],[-124.94720775630162,53.57460438566401],[-124.94259406143655,53.56667675992944],[-124.93971238258075,53.55913959456831],[-124.88165828890735,53.55886532803123],[-124.87023669290441,53.55538236715284],[-124.84058454551715,53.55577615714168],[-124.81974233316943,53.56192946986956],[-124.80410769744995,53.56305740672589],[-124.78433121103377,53.562418719667974],[-124.76486315318688,53.561088121632906],[-124.75689003507635,53.55999714026601],[-124.75018524124883,53.55901356739812],[-124.74500376954657,53.558208064316275],[-124.74029766634405,53.55820729087724],[-124.73635972557211,53.55882728445286],[-124.73099955578688,53.55893518081568],[-124.72657411245754,53.55915699430111],[-124.72080898264106,53.56211928370674],[-124.71589830382527,53.56433535862885],[-124.7091816185231,53.56472740494453],[-124.70312795022919,53.56472013380015],[-124.69737882584023,53.56465313489377],[-124.69152026459012,53.564698374264474],[-124.68844884252123,53.565152071761396],[-124.68566675379274,53.565547252497375],[-124.68229875747784,53.566283226303035],[-124.67913284377887,53.56684656158399],[-124.67817072201642,53.56615866543717],[-124.6721222814684,53.565978466917144],[-124.67031575196111,53.56471812888415],[-124.67060509559903,53.56466196753268],[-124.66830643679342,53.5631748435977],[-124.66168769293527,53.56191051602847],[-124.65756837550296,53.56058315806166],[-124.65441103827011,53.55852424043788],[-124.6515520424904,53.555667525603525],[-124.65023137103249,53.55297825326828],[-124.64927865582489,53.551553002612565],[-124.64584250096098,53.549259885497],[-124.63932711630632,53.54816126010122],[-124.63683981879103,53.54741921641576],[-124.63358076499321,53.54575741401875],[-124.63147772552554,53.544837024881616],[-124.62927796250213,53.5431760248393],[-124.62824090250322,53.54112051306923],[-124.62527565294315,53.539288181465224],[-124.62250760810208,53.538367257642314],[-124.62089463622186,53.53682097085584],[-124.62030839497851,53.536250637234254],[-124.61791691187871,53.53538604587047],[-124.61418888673568,53.53423645130758],[-124.61083138258934,53.534234975951264],[-124.60757435965279,53.53485136745334],[-124.6038275525592,53.53563897152947],[-124.6002638066872,53.53592217928371],[-124.5964339820154,53.53556744588502],[-124.59366304265774,53.53475840499112],[-124.59051009943545,53.53406859203377],[-124.5895498244767,53.533840459718355],[-124.58619289964558,53.53337332549038],[-124.58417608190678,53.533083339213384],[-124.58198143909985,53.53268587902582],[-124.58201922067862,53.53291041122529],[-124.58325424867022,53.53485330605995],[-124.5849637571996,53.53708191102132],[-124.58466356235927,53.53925476402782],[-124.58168452809421,53.54102049050741],[-124.57802850823137,53.54266829611914],[-124.57272831116715,53.54505655699108],[-124.57051597215495,53.54693817243736],[-124.52972177686728,53.53806227633034],[-124.52390039693253,53.53456474205967],[-124.48789990116298,53.52711549063481],[-124.46326772239154,53.515919095291146],[-124.44240649133556,53.51220158620829],[-124.43243459657667,53.51205984357704],[-124.4230437019854,53.511744546642596],[-124.41557235151144,53.51103942501628],[-124.39797067326853,53.50921282711073],[-124.38543178243968,53.507053866336555],[-124.38133325824718,53.50476071341688],[-124.38596625090219,53.50140929907503],[-124.39292005472507,53.49623287665008],[-124.3963107177429,53.49173150585608],[-124.39598680805,53.48636666517029],[-124.39488359353506,53.48242277697987],[-124.39622619466319,53.4816805683321],[-124.39715869001814,53.474662478848764],[-124.39559058631487,53.46826511383925],[-124.39227674588031,53.464886943727436],[-124.38427744704313,53.46086146933132],[-124.37054098876689,53.45687928222409],[-124.35376470548013,53.45001968367617],[-124.3374570582116,53.445566619604904],[-124.32261559715732,53.445680242315994],[-124.30862372905267,53.44830796824185],[-124.29593991910906,53.45288237650285],[-124.28475449645362,53.45951701888168],[-124.28275024574397,53.46607256636757],[-124.28180933798964,53.47172510562935],[-124.27842237910296,53.47513596368133],[-124.27534742627728,53.475349261484155],[-124.27106150026604,53.47379013816944],[-124.26832853853234,53.47120457327289],[-124.26492363159608,53.46771047053935],[-124.26054314678308,53.465180281394446],[-124.25792756262946,53.460885054369854],[-124.24936748773716,53.45650483983974],[-124.24193496296473,53.44722574317171],[-124.23337999426734,53.44318782732464],[-124.22008337521332,53.43604674891428],[-124.21256774423064,53.43321789454838],[-124.20531959928472,53.43192275980073],[-124.19068848847743,53.43179445221615],[-124.18236620635957,53.43198097863008],[-124.1685775007589,53.432257263865864],[-124.16263877784928,53.4327972827657],[-124.15562891562335,53.43401578146276],[-124.15236017916735,53.4352560916889],[-124.14909884646126,53.435980941658315],[-124.14410981433922,53.43652639810476],[-124.13867366079597,53.43557815173918],[-124.13649352228116,53.435056031080805],[-124.12846772018908,53.43398272892627],[-124.11654298694452,53.43203427005257],[-124.11225462867604,53.43075328986046],[-124.09756372149168,53.42861558850053],[-124.09160601315473,53.42989420832692],[-124.08920593037955,53.43091026824812],[-124.08536807397196,53.43168521838997],[-124.07702973698503,53.432205928243135],[-124.07387993333722,53.43178858543686],[-124.06843199322033,53.431470081308646],[-124.05983637594328,53.43102108995824],[-124.0524536403699,53.43142957243442],[-124.04701644558894,53.43608154738383],[-124.04059586709162,53.4423762714204],[-124.03288631223654,53.44552777194568],[-124.02066234855158,53.44898771958581],[-123.99991231397826,53.45707495544681],[-123.99688376223106,53.458523567953506],[-123.99555527540532,53.458833521774764],[-123.9898361656515,53.4593844026177],[-123.98048424196784,53.460112235372435],[-123.96989959358089,53.4610301540956],[-123.96269665870273,53.460401279432936],[-123.95998618574161,53.45993185687624],[-123.95752145487494,53.462485182456604],[-123.9524945380113,53.465544188038585],[-123.94571791608645,53.46823103345428],[-123.93455219300111,53.471383983179145],[-123.92661811360259,53.47391187107251],[-123.92395541997081,53.474299254894454],[-123.908240585757,53.47620776445569],[-123.88956507580399,53.4762731997495],[-123.87563004502381,53.473111870602956],[-123.86655704508198,53.46913265901437],[-123.85514299001363,53.4687373408077],[-123.85013547264208,53.468301404855296],[-123.84960427217327,53.46687576103613],[-123.84397239729539,53.463012814347756],[-123.83947695872332,53.46291293519462],[-123.82815183383902,53.46463035470799],[-123.81455270919649,53.466780807706975],[-123.80866415868934,53.467899395102435],[-123.8056851206809,53.465651819627816],[-123.79947063085373,53.461168507997705],[-123.79587762502446,53.455385618307524],[-123.79105927210556,53.45225237604869],[-123.78155161823234,53.4467273762448],[-123.77228140971967,53.44274988746133],[-123.76679570792365,53.43945179780214],[-123.7577145508426,53.43255079012237],[-123.74790102368888,53.42416465436188],[-123.74075887370927,53.42032394274371],[-123.72791894355477,53.422279829794526],[-123.71529430309722,53.42469354239014],[-123.7020309943176,53.42551156181574],[-123.6832895677855,53.42331082281638],[-123.6664922511104,53.42200043270141],[-123.64544948089033,53.414336973770986],[-123.62449611788976,53.40896194272359],[-123.60518597582137,53.40687127263076],[-123.59774429003429,53.40960428777966],[-123.58624468917345,53.41415570661772],[-123.5720208193485,53.41514824936341],[-123.55270979401446,53.41539403693425],[-123.5313916955192,53.41538267790686],[-123.51377488022068,53.41503178911675],[-123.49640248840073,53.41336518490678],[-123.48995886227297,53.41212423642297],[-123.4868548020961,53.40827270041919],[-123.48653075905513,53.404102028493845],[-123.48713613014057,53.39952277268096],[-123.48558207672197,53.39347537444597],[-123.48575515828304,53.387297423496605],[-123.48459687511685,53.378674466764316],[-123.48015517913556,53.374554999505314],[-123.47234686448918,53.369789328867505],[-123.46526758497033,53.36095258265368],[-123.46103653248588,53.35739952201064],[-123.45266007414052,53.355389171096775],[-123.43732841581803,53.35379851215729],[-123.42514511539194,53.35223148904437],[-123.41488686912844,53.350977490454206],[-123.40823979460816,53.348825516611946],[-123.39322474885255,53.34534309087677],[-123.37761268368327,53.34060059041298],[-123.36784139617077,53.339571786704425],[-123.35824518062614,53.341282606706166],[-123.34293562052336,53.343050044906825],[-123.33326771046707,53.34253135772542],[-123.31655840744332,53.33928689847357],[-123.29275938435212,53.33507933761528],[-123.24619059419801,53.33208747219923],[-123.21791105419905,53.33112140647047],[-123.19893992797411,53.32833404811629],[-123.17395472321763,53.32252366572792],[-123.16147431313466,53.31578471912617],[-123.14597742599804,53.303409476669735],[-123.13955123303315,53.29186531808849],[-123.13875969842492,53.29044693304099],[-123.1370957638221,53.28880399763328],[-123.13207328896539,53.28964867837386],[-123.1281659548207,53.289801986966424],[-123.12646020229005,53.29010436511991],[-123.12549670054679,53.29011242736134],[-123.11930884598789,53.29016925844901],[-123.11596229623684,53.29026121928689],[-123.11159477579417,53.2907604822551],[-123.10721699268916,53.29096893080155],[-123.10389481100661,53.291800049523744],[-123.09879334785644,53.29355805578925],[-123.09643401557565,53.2943867249903],[-123.0893968517641,53.2914756590836],[-123.0863371076782,53.29133330507024],[-123.08174796603821,53.29046089202415],[-123.07466169673418,53.289148888607166],[-123.07177955731225,53.28883505545957],[-123.06646252249891,53.28956656630769],[-123.06381329103182,53.290446296106545],[-123.06162818344623,53.290925948227695],[-123.05850171842093,53.291525758637896],[-123.0568303617964,53.29348246285608],[-123.05527538431728,53.296356449305044],[-123.05400522999174,53.298597220523135],[-123.05357618139207,53.300429970558504],[-123.05233311056281,53.30055777656868],[-123.04822301036376,53.30036145669197],[-123.0465975912575,53.300146105644394],[-123.04401723770795,53.29959803463989],[-123.04187573966549,53.2977293069174],[-123.0396581378085,53.29694741829672],[-123.03704179845653,53.29520186982656],[-123.03319427100945,53.29363404079643],[-123.03137566449716,53.29381619224549],[-123.03015448889744,53.29406204832819],[-123.02734843238893,53.29288113858006],[-123.02447983774641,53.29216225722909],[-123.02386306592324,53.29045360890921],[-123.02126988289324,53.289673149731016],[-123.01906259798673,53.28918209859586],[-123.01818719401922,53.28815596063227],[-123.01645493231635,53.2875450332309],[-123.01452750997672,53.28692861311011],[-123.01391795641185,53.285337251937925],[-123.01747352464083,53.28250226597363],[-123.01822963376641,53.281808673550664],[-123.0158203532232,53.28120201747629],[-123.01325610017383,53.28151033204351],[-123.01123661787459,53.28049906620901],[-123.01102065778227,53.27930053227718],[-123.01032008646534,53.27793559852957],[-123.00754092942118,53.277670420317804],[-123.00496805507521,53.27746645064199],[-123.00113762985787,53.27675464038529],[-122.99763266151571,53.27781255512242],[-122.9966334992235,53.279592064830176],[-122.99550368082403,53.280458843723125],[-122.99199940766093,53.28128955211866],[-122.98965197403032,53.283194606732096],[-122.98519347074111,53.283688618998525],[-122.98221945926268,53.2831992408344],[-122.97782379527834,53.282604616512536],[-122.97353610883016,53.28281323497206],[-122.96847677254415,53.28245363491451],[-122.96397316529179,53.281689780390536],[-122.96222899814703,53.284391903127904],[-122.96596936178553,53.285730065281854],[-122.96743886672698,53.28726463786933],[-122.96750433185832,53.290121275231975],[-122.9693507241616,53.29164919007986],[-122.9700456150145,53.293078146656654],[-122.96874663231121,53.29440125253281],[-122.96704783465944,53.2952139985115],[-122.96501026192453,53.29780549985495],[-122.96334654677759,53.300218138275575],[-122.96026129850567,53.298753179847544],[-122.95791262393149,53.29626023513601],[-122.95467251657921,53.296112662515235],[-122.95288281927901,53.297553649880584],[-122.94877991650138,53.29747291824432],[-122.94848829856632,53.29713518502099],[-122.94414360878095,53.29436856988369],[-122.94112801894607,53.296107501121526],[-122.93778939842485,53.296073558446004],[-122.93273777662493,53.296002549376475],[-122.92951840575516,53.29722458678662],[-122.92619445551767,53.29822684211448],[-122.92012020460196,53.29958324429461],[-122.91499719755306,53.300481877085225],[-122.90966469900445,53.30115504886441],[-122.90782434135438,53.30408327973487],[-122.90739003818264,53.306310249858825],[-122.90651105264998,53.309467592848755],[-122.90359253541699,53.311487944834894],[-122.89932293087362,53.3128359998249],[-122.89382686685532,53.314477597903384],[-122.89000169005347,53.31387508740918],[-122.88887745484642,53.310339038133066],[-122.88794437888785,53.30645922359998],[-122.88540329115241,53.303564977716206],[-122.87970331696012,53.30491909016454],[-122.87728373931827,53.30791297323286],[-122.8736203525079,53.31062063709349],[-122.87508961335695,53.31232908711991],[-122.87896539568933,53.31549749262093],[-122.88272812789246,53.31775894884357],[-122.88562545061261,53.31950976602264],[-122.88708485863958,53.32115834709992],[-122.88713055653976,53.3229862878183],[-122.88629034175602,53.32396286353913],[-122.88365811786487,53.326157910988],[-122.88238566879639,53.32422095250514],[-122.88138637347818,53.32205397850907],[-122.87923006343624,53.319040779969704],[-122.8752507606393,53.3156392213354],[-122.87119135283643,53.313325401965784],[-122.86673773853089,53.31004165620476],[-122.8657639649935,53.308964069726265],[-122.86252357788999,53.304358620647136],[-122.86124589837652,53.30231133426542],[-122.858867474461,53.29786702616002],[-122.85589462659402,53.2921167024107],[-122.85426300473114,53.28715711123111],[-122.85229494964987,53.28368678788084],[-122.85100114654516,53.281064179775285],[-122.84722589991269,53.278230398124855],[-122.84230695016211,53.27500662035415],[-122.84018674677016,53.27399020191006],[-122.83622536199387,53.271449937010466],[-122.82802493409615,53.266080049389075],[-122.82265748044348,53.26405679119587],[-122.81635899126344,53.26381609692146],[-122.80910861582694,53.26363413366452],[-122.80339464394116,53.26361986873441],[-122.80062814948155,53.26380769151989],[-122.79464145046227,53.2640172392638],[-122.7889701156933,53.262057652941806],[-122.78731693882828,53.26006708263483],[-122.78388582350087,53.25437442432177],[-122.77681414357333,53.24813184778062],[-122.76964582374325,53.24160743660431],[-122.76457931045006,53.23455391845708],[-122.76122014263069,53.227597263716554],[-122.75947545858607,53.22115343583116],[-122.75704169944851,53.212537880515484],[-122.750066908756,53.20498089721799],[-122.74382538685487,53.19690410983467],[-122.73790699005507,53.19031290112207],[-122.73112749370931,53.183038617907656],[-122.72700029251166,53.17546207644144],[-122.72065069952646,53.165213210645646],[-122.71559878274552,53.1583854791399],[-122.70832607837245,53.15043014086324],[-122.69909443951549,53.143397068042994],[-122.69265441142323,53.13886627685169],[-122.6842251547109,53.134287713253926],[-122.6757307500431,53.131707130836375],[-122.66478178774584,53.13022600878065],[-122.655549246201,53.129421679558504],[-122.65002665919737,53.12853731751206],[-122.63956520184328,53.1271668916252],[-122.63347682328941,53.127371635023934],[-122.62376211899546,53.12548208496813],[-122.61411972613362,53.121760904324454],[-122.6090275746716,53.1179564336595],[-122.60591140296636,53.11905710547059],[-122.6049687254056,53.11940972109419],[-122.60300162324818,53.12113335187107],[-122.60197238803346,53.122563678758716],[-122.59942644967367,53.123837627168086],[-122.59754152230774,53.124533237429354],[-122.59593814529323,53.125455673318655],[-122.59292731966481,53.12747157304475],[-122.58942461113217,53.12851694632306],[-122.5836624012484,53.13117503246024],[-122.58000431998484,53.13450790081084],[-122.58021181817314,53.13565188929197],[-122.58157018550891,53.137586889981954],[-122.58158869944438,53.13884319733816],[-122.58160590061985,53.13993007703772],[-122.57856598044691,53.14080009024992],[-122.57574133368679,53.14178843618128],[-122.57367284012973,53.1436247884715],[-122.57329993916409,53.1439695681268],[-122.5702719378209,53.14524185942185],[-122.5678119529865,53.14616657082194],[-122.56593198052794,53.1478910463621],[-122.56481536217092,53.14926525937156],[-122.56225646723439,53.1497411071895],[-122.55920095985276,53.149128389397696],[-122.55654755215006,53.14873706455341],[-122.55329612714513,53.14795302312976],[-122.55017064096769,53.14893762507056],[-122.54858166650963,53.15094628381244],[-122.5444152788365,53.1519968270004],[-122.54298986369527,53.15199891373674],[-122.53986639375131,53.15258509657716],[-122.53656970350153,53.15528622728513],[-122.53318451752857,53.158329622100524],[-122.52806303150898,53.158753725895814],[-122.52435416024741,53.15860272299354],[-122.51998163137333,53.158676064236175],[-122.5156408008429,53.161096898704386],[-122.51197406705984,53.16425426951604],[-122.50686426116054,53.167250593182416],[-122.50488824158982,53.168460376016625],[-122.50469643053285,53.169146836314916],[-122.50500445159365,53.170686584584296],[-122.50321903313463,53.17194853159228],[-122.50247464843329,53.17332648688211],[-122.50117618974843,53.174143434645146],[-122.49982974677116,53.174995411563906],[-122.4965938267911,53.17546052269066],[-122.49557233675678,53.176555968127246],[-122.49520335505964,53.177928731482325],[-122.4948369633246,53.17872667058588],[-122.49551331278731,53.17998513009508],[-122.49552905882972,53.18124421379765],[-122.49430231605638,53.18227803958239],[-122.49204033882725,53.183483088794205],[-122.49053137261323,53.18520176276061],[-122.48805309774201,53.18412707450331],[-122.48557365341445,53.18397101466785],[-122.48263024028007,53.183977796613206],[-122.47968021156164,53.18370330902992],[-122.47888774719387,53.182221426756904],[-122.47554966815567,53.18138056117241],[-122.47203891186689,53.182250773126434],[-122.47016782258173,53.18380136644356],[-122.46988276767195,53.1839785138686],[-122.46903247398365,53.185350329320535],[-122.46693115273463,53.18444234845065],[-122.46625764194229,53.18387761805029],[-122.46570086581913,53.184790384434],[-122.46647079025782,53.18581849231954],[-122.46515820030001,53.18679114292331],[-122.46211066039731,53.18732154966898],[-122.459659268769,53.18915976818138],[-122.45671565013026,53.18934315333543],[-122.45654682037954,53.190998909560825],[-122.45703821724858,53.1924820375471],[-122.45295417025852,53.19300923796243],[-122.45133383009438,53.19370553938156],[-122.45020572917088,53.19462018292273],[-122.44794231630084,53.19617608192593],[-122.44795246770099,53.197484950233914],[-122.44521785100426,53.19892570156909],[-122.44330573546208,53.19933661379949],[-122.44122877272211,53.19974254986488],[-122.44114462467135,53.20145524220952],[-122.44088419012448,53.204369116237544],[-122.43968157725203,53.20723166803632],[-122.43867576152842,53.21060941930541],[-122.43679659194954,53.213472908504684],[-122.43615853785789,53.21587116374719],[-122.4362505293474,53.21638378897275],[-122.43502009514458,53.217075355051406],[-122.4346623258992,53.218109535676625],[-122.43304207142367,53.21914552011323],[-122.43305037036306,53.22011499514747],[-122.42877100760182,53.22007242219802],[-122.42649142175607,53.2201949290035],[-122.42423990679369,53.22069572826227],[-122.42364194228648,53.22083584782824],[-122.42088742799665,53.22124174917639],[-122.41554228044131,53.22012041627876],[-122.4134399743852,53.21903929889269],[-122.41028926158201,53.217741270418394],[-122.40837196288254,53.216431203299685],[-122.4050161620038,53.214898508715365],[-122.4043292964301,53.212905505830705],[-122.40182543987696,53.20913699272791],[-122.39981192209017,53.207376786705744],[-122.39636527934148,53.20515954129312],[-122.39169283204849,53.20357961495993],[-122.38862989869294,53.202154043584535],[-122.38355083554276,53.197433678670436],[-122.38028423766366,53.194185374491504],[-122.38008743034779,53.19332675251028],[-122.37665648879027,53.1930534973361],[-122.37189875191889,53.19301545524271],[-122.36866488950204,53.19359557381236],[-122.36591548011806,53.1936059844002],[-122.36162850877338,53.193157920536486],[-122.35914785077333,53.19196650801642],[-122.35694859379578,53.19134519939801],[-122.35474923535212,53.190551633245235],[-122.35189234773053,53.188503132537114],[-122.34959839190468,53.188112108251254],[-122.34758950756873,53.187203110728035],[-122.34588197771696,53.186978187043984],[-122.34492475691715,53.186412368637725],[-122.34282581296927,53.18515777178837],[-122.33967011174506,53.18414305941091],[-122.33862767758283,53.18300238661811],[-122.33773354675462,53.17997703141677],[-122.33620513846105,53.17820873419065],[-122.33295434264082,53.17604767086528],[-122.32885887630017,53.17531932403661],[-122.32544012746176,53.17527040809087],[-122.32183117052077,53.175164428697656],[-122.31953829033661,53.17459948256333],[-122.31686491602228,53.173922238385515],[-122.31354105576668,53.173474840552046],[-122.3134406954799,53.17290402491085],[-122.31246881262389,53.17096535714737],[-122.3100862310569,53.170228009832165],[-122.30800434469273,53.1710336614849],[-122.30583768232366,53.17332429758857],[-122.30537251142792,53.17486811756858],[-122.30517749297248,53.175038168494616],[-122.30500240058021,53.1766981932567],[-122.30492747789354,53.178586285003924],[-122.30168900542769,53.17956270223989],[-122.30008195570377,53.18042570343374],[-122.30085805011542,53.18150906087082],[-122.29847012459332,53.181514041004625],[-122.29608731439971,53.18060364384523],[-122.29408952027583,53.18026958329784],[-122.29267292354922,53.18032842343021],[-122.29009466923561,53.18010737098516],[-122.28839257200248,53.18051061580561],[-122.28658037856452,53.18011549802836],[-122.28582409519007,53.18086196207206],[-122.2835512017311,53.181779017187395],[-122.28125812573086,53.18172941119525],[-122.27841925071942,53.18293319358258],[-122.27766252723553,53.184023474741615],[-122.27662607044638,53.1843678375695],[-122.27567908644339,53.18625318403855],[-122.27321458528291,53.188145154292386],[-122.26856235171722,53.188956695637444],[-122.26609314775946,53.1895362743041],[-122.26553662952306,53.190905436148846],[-122.26477887739898,53.192851654792676],[-122.26394152286308,53.194508139071154],[-122.26299859433254,53.196338551680626],[-122.26139467376032,53.19765891617139],[-122.25931447792073,53.19977649802544],[-122.2571300275824,53.200694203231954],[-122.25331728814224,53.20167589896571],[-122.25095197912765,53.20276671864654],[-122.25029949216628,53.204193931642735],[-122.24964643899436,53.205965552151746],[-122.25069631715714,53.20801830626182],[-122.25100416815454,53.210306165838126],[-122.24938990022736,53.21122495952923],[-122.24577730588956,53.21180159334177],[-122.24349234422145,53.21231814838945],[-122.24063600017658,53.2126689900762],[-122.23825144862491,53.21244628478352],[-122.23796620762803,53.212105681157105],[-122.23586406787503,53.21056911333169],[-122.23443268519524,53.20993793900184],[-122.2305258933817,53.20943160393998],[-122.2287276866594,53.20903943165522],[-122.22616267883234,53.209325707994076],[-122.22320169542782,53.209334515432516],[-122.22100775633419,53.20916746611882],[-122.21940406218164,53.20962507907154],[-122.21759948242698,53.210144137920615],[-122.21568570744476,53.21020415965955],[-122.21331077773321,53.210379552311366],[-122.21026942861037,53.21044549913811],[-122.20817291126345,53.20936017646821],[-122.20655531710173,53.208966722245414],[-122.20446162245321,53.20885529987599],[-122.20179630566837,53.209085104786006],[-122.19856717989593,53.21023641913698],[-122.19695799288776,53.21275465274611],[-122.19572562283433,53.21492482473484],[-122.19363164693023,53.214646600040425],[-122.19020564130028,53.21430753676696],[-122.18667512542132,53.2136284083954],[-122.18373422553012,53.213576855083915],[-122.18164120434565,53.21328946843771],[-122.17973229513224,53.213292972548395],[-122.17859248494595,53.21409769508664],[-122.17621796077054,53.2157579021056],[-122.17309261499233,53.21707684292907],[-122.17089660022035,53.21759266493115],[-122.1678550734547,53.21765303921594],[-122.16633219124958,53.21754091599658],[-122.16442370582958,53.219026936739645],[-122.16319763807208,53.22011427704931],[-122.15929800187831,53.22200525576819],[-122.15473488037736,53.222759291422896],[-122.15120953159769,53.22350537013558],[-122.14940553227153,53.22350676541733],[-122.14435436573264,53.223510173553144],[-122.14246319862279,53.22397202286528],[-122.13941665809176,53.2252320919775],[-122.1368554555523,53.226607788141],[-122.1341826280445,53.22837979032019],[-122.13333904295123,53.23003979198667],[-122.12962180365025,53.230899608382344],[-122.12629855118766,53.23090487140832],[-122.12372079317811,53.231305824659785],[-122.12221181744276,53.23267469591213],[-122.11973393303032,53.23296888504888],[-122.11668008306339,53.23331257998558],[-122.11429984372866,53.23434198926676],[-122.11050002235238,53.23543640390898],[-122.10812492756178,53.23640695375257],[-122.10659499035476,53.236691055561806],[-122.10346946369486,53.23943606913724],[-122.10270812877621,53.24035243023938],[-122.10194463469215,53.24178037188577],[-122.10147126233574,53.24332332790619],[-122.10109559258903,53.244296694074464],[-122.09996126084175,53.24892260861735],[-122.09759738932065,53.255779614058106],[-122.0946649289495,53.26389417474027],[-122.0903025699275,53.27800541466003],[-122.08916798285975,53.282286739148034],[-122.08794426993963,53.28817523566679],[-122.08727937041479,53.29177075216683],[-122.08518873024262,53.2953130489502],[-122.08423285422303,53.295714609475],[-122.08204756960507,53.296057617198606],[-122.0779465814341,53.29692017700614],[-122.07250559201523,53.29777751279436],[-122.07202798330655,53.297892981008985],[-122.06975022423154,53.299548312292764],[-122.0694556700278,53.30109202392011],[-122.06488682059621,53.302924372223394],[-122.062792225187,53.30309669707544],[-122.06088359711818,53.30321288075699],[-122.05801870420095,53.30372981786636],[-122.05506201247822,53.30538757756766],[-122.05192501939278,53.30607317931614],[-122.0464876719855,53.30687228092438],[-122.04439139097948,53.307219832483156],[-122.04029275313702,53.3099601246038],[-122.03427261244559,53.31150112116572],[-122.02912101381699,53.31133448064467],[-122.02597795615966,53.31127584847557],[-122.01720116972477,53.31025452088837],[-122.01166472333988,53.30922140950868],[-122.00498979466933,53.30796456303332],[-122.00366397285865,53.307966484860444],[-121.99960348534687,53.306625099482424],[-121.99855366780847,53.30657623883188],[-121.99711290050676,53.30620279248392],[-121.99596630872288,53.30622133684496],[-121.99494029312903,53.30703166047943],[-121.99284447995623,53.30689358079954],[-121.99023407968089,53.30630606301949],[-121.99020096004094,53.305387620223364],[-121.99023702580253,53.30390034944746],[-121.98834765567987,53.30444355261681],[-121.98725511080987,53.30326205056303],[-121.9875560964581,53.30136631551704],[-121.98618844641234,53.30070232558517],[-121.98458715298037,53.30106838298163],[-121.97993205320692,53.30171026031883],[-121.97946449694778,53.30171686042596],[-121.97614912679755,53.30268115819791],[-121.9724386096383,53.302734807630266],[-121.96824781399782,53.30308509871047],[-121.96457023888684,53.304052478267145],[-121.96325949060113,53.3045268872258],[-121.96071377877043,53.305312714973354],[-121.95534767483039,53.307388804667774],[-121.95412354343911,53.31009689501318],[-121.9539541497233,53.31295931844379],[-121.95243327106445,53.31561686988145],[-121.94827676592502,53.31653492200527],[-121.94778195031122,53.3163530741606],[-121.94721387612977,53.316149646141845],[-121.946437116381,53.31341705506624],[-121.94608394195461,53.30941462429332],[-121.94574821936729,53.30335250184838],[-121.94562298512237,53.2979214704296],[-121.94545461029912,53.294035286833164],[-121.93797813899644,53.295512138244085],[-121.93003158051111,53.297172156369385],[-121.92531493689934,53.29844439223738],[-121.9186591709659,53.29905107857855],[-121.90866916170711,53.299711905341695],[-121.90025956344837,53.301774294143314],[-121.89517844458503,53.30367972930983],[-121.8871714871287,53.306540145519755],[-121.8832168837376,53.30785122632712],[-121.87117622061912,53.310190735540324],[-121.85910107020976,53.311333255155],[-121.84814205950534,53.31153896239955],[-121.83847640190403,53.311157189049],[-121.83482693904114,53.31057969398396],[-121.81963739772362,53.30740879332144],[-121.81232689686621,53.30350136606875],[-121.80704183403783,53.30014313087531],[-121.79389267762086,53.28744906373916],[-121.7892805262753,53.28402116629989],[-121.78101626105256,53.27692167791684],[-121.7743252448046,53.27397914000325],[-121.76184436523108,53.266193490806465],[-121.75224365708178,53.26168363621593],[-121.73412468579386,53.25362516069206],[-121.7292438540952,53.25323105045415],[-121.72401330222043,53.2534672379739],[-121.72093434734086,53.25533768284739],[-121.71880824649847,53.25730701596232],[-121.71432700455802,53.259938688411616],[-121.71312698495662,53.25812189745025],[-121.7089777607934,53.25423019255195],[-121.70183279934612,53.251688253371114],[-121.68438021835892,53.251217746550346],[-121.66708592597311,53.238510677232256],[-121.6561070693716,53.238189371654656],[-121.64398537464466,53.24005032660888],[-121.64038939565778,53.24369461728675],[-121.63592729749219,53.2471233833089],[-121.6314755754086,53.24826476307597],[-121.62729686734366,53.248366534288884],[-121.61318818248738,53.248308553527245],[-121.60547749156419,53.24851276190605],[-121.60051745220923,53.25177648027734],[-121.59565317574447,53.25440373080037],[-121.58740859129709,53.256102377782184],[-121.58287015921357,53.257186024212245],[-121.57760364480778,53.253295889483326],[-121.57187853260051,53.24690191301837],[-121.56678826986494,53.24278765706047],[-121.56059349917307,53.233593130546836],[-121.55842766195214,53.22515552823107],[-121.55709065774845,53.222139530480476],[-121.55704894094043,53.221106885660895],[-121.55262510646665,53.219559448849],[-121.54853242537824,53.21943818495457],[-121.54360595854035,53.22023510506967],[-121.54058202372079,53.22124270648139],[-121.53356520319753,53.22246114562267],[-121.52784945924786,53.22218363571966],[-121.52213956825445,53.22241854385827],[-121.50901790318548,53.223190642183425],[-121.50226839167316,53.223721950489484],[-121.48993945570938,53.22551168869642],[-121.4812377870477,53.22755149069467],[-121.47753200640723,53.23125227637445],[-121.47654922789044,53.23326357126498],[-121.471054599017,53.23778216802382],[-121.46160416002043,53.24045494728477],[-121.4544065668613,53.241619866244825],[-121.44345205131333,53.24161882594079],[-121.43190186855624,53.24197608117264],[-121.428084396867,53.245404557178155],[-121.42808184069136,53.24640028415969],[-121.42857830235506,53.247790804018095],[-121.42846843965765,53.24824911170084],[-121.42721516934269,53.24884236089632],[-121.42560893147136,53.24977560726528],[-121.42008630030669,53.251152528472446],[-121.41203105852749,53.2509009008489],[-121.40993775079951,53.25436980358848],[-121.40974089435863,53.25479554020456],[-121.40475126470147,53.25845356959942],[-121.40508334573752,53.25885995192493],[-121.40531966941668,53.25890167461051],[-121.40361425141643,53.2593553441324],[-121.40342003639044,53.259341639725996],[-121.39828786196347,53.25974252091877],[-121.3986558421037,53.266856826920225],[-121.40352340177944,53.26709567978848],[-121.41531148887603,53.26724971822006],[-121.41528590122901,53.27080877568252],[-121.41517316925447,53.28375514630432],[-121.3442233512123,53.283896338779584],[-121.33815957556234,53.28369622825333],[-121.26952541325035,53.29094362812431],[-121.22559763665055,53.32915297460155],[-121.22611857863349,53.336795278825775],[-121.21745139565223,53.338994711338124],[-121.20909593646637,53.33884473179366],[-121.20099282257196,53.33833382507764],[-121.20059205372027,53.33668888548102],[-121.19806133428646,53.33520314326185],[-121.18948170332135,53.335964583041736],[-121.18381726471003,53.33906313313641],[-121.17803527761347,53.34199497037214],[-121.1696254142913,53.343232429844846],[-121.16681044277392,53.343701769778235],[-121.15826433454053,53.346903633593904],[-121.15696286086859,53.347952689372065],[-121.15686038007554,53.34812200421022],[-121.15675796329576,53.348290755640264],[-121.15665548188666,53.34846006133202],[-121.15655494088826,53.34862888914564],[-121.1564542704305,53.34879883452924],[-121.15635554041283,53.34896830204106],[-121.15626788179924,53.349139901046954],[-121.15620055331566,53.34931513220958],[-121.15613691434734,53.34949107981364],[-121.1560290514253,53.349657928684536],[-121.15588810130181,53.34981724702471],[-121.15574540130683,53.349975370916425],[-121.15559544764768,53.350130952876],[-121.15543642763353,53.3502833529664],[-121.15526290018914,53.350430678237636],[-121.15507331100181,53.35057004443706],[-121.15487666147847,53.35070518756293],[-121.15467994582549,53.350840893658244],[-121.15449572801307,53.350982724094],[-121.15433126077579,53.35113322075186],[-121.15418485925356,53.351290635058824],[-121.15405309184604,53.35145200625024],[-121.15393407907277,53.35161727562667],[-121.15385009635602,53.351789580245836],[-121.15380696834079,53.35196748699058],[-121.15374713437579,53.35214303198603],[-121.15363731376704,53.352310356197066],[-121.15351279394427,53.35247426857336],[-121.15341035318123,53.35264301675597],[-121.15332630138927,53.35281588422007],[-121.15324781685169,53.352989544833825],[-121.15316382859396,53.353161848851265],[-121.15307057924343,53.35333266085735],[-121.1529791429058,53.35350410378124],[-121.15292111708591,53.35368027923293],[-121.15285383129785,53.35385495374584],[-121.15277346625086,53.35402852836926],[-121.15269672607099,53.354203382825006],[-121.15262186395682,53.354378304925135],[-121.15254324483085,53.354553082601356],[-121.1524609994854,53.354726580302255],[-121.15237324812757,53.354898739248966],[-121.15227817893296,53.35506891053153],[-121.15217216519375,53.355235823157486],[-121.15205514086364,53.35540004934063],[-121.15192717177906,53.35556101680689],[-121.15178631519919,53.35571921215922],[-121.15163814033201,53.35587541970898],[-121.1514845238306,53.356029725038866],[-121.15132352401459,53.356182605816514],[-121.15115889633371,53.35633421535903],[-121.15099064076365,53.35648455365165],[-121.15082244789122,53.35663433733629],[-121.15065425485363,53.356784111830784],[-121.15048800230585,53.356933408401886],[-121.15031812184434,53.35708143369863],[-121.15014454850743,53.3572287510053],[-121.14997110383958,53.35737494144941],[-121.1497939662667,53.35752042388262],[-121.1496168274706,53.35766590604153],[-121.14943975136947,53.357810833568585],[-121.14926079725547,53.35795567517728],[-121.14908365478856,53.3581011565108],[-121.14890838893639,53.358246714279],[-121.14873299298533,53.358393389433736],[-121.14856135151402,53.358540217747766],[-121.14839139284071,53.35868880347332],[-121.14822862268,53.35884048548897],[-121.14807304107372,53.358995263823765],[-121.14792102019398,53.359151876343596],[-121.14777081109357,53.35930912868123],[-121.147618852934,53.35946517749312],[-121.14746326574948,53.35961996392384],[-121.14730236655316,53.35977172133386],[-121.14713440634796,53.359919255312796],[-121.14695575718805,53.360061303641416],[-121.14676279213873,53.36019659513539],[-121.14655195027711,53.36032328634491],[-121.14632873434319,53.360442742959],[-121.14609295244736,53.360556627974375],[-121.14585198737095,53.360666365996174],[-121.14560570913456,53.360773083585585],[-121.14536143658447,53.36087875977364],[-121.14511722678887,53.36098388110023],[-121.14486427201396,53.361083020868065],[-121.14459926635753,53.361172127108],[-121.14433166477318,53.36125102035047],[-121.14404033676995,53.361273919636226],[-121.14373831425507,53.36127504535762],[-121.14343986101873,53.36129428306608],[-121.143145105726,53.36133051514007],[-121.14286272755727,53.36139027715819],[-121.14260147167626,53.361479532541836],[-121.14237117876247,53.36159475819293],[-121.14217793485638,53.36173226849862],[-121.14204064793748,53.36189172310189],[-121.14191054874213,53.36205428339623],[-121.14174955622175,53.36220658746487],[-121.14154743277399,53.362339250954975],[-121.14129135092776,53.36243264118203],[-121.14100001856637,53.362471820161176],[-121.14069838110498,53.36248586344084],[-121.14039971847137,53.362490487294316],[-121.14009813857508,53.36248769648866],[-121.13979998741131,53.36247156110834],[-121.13950105568561,53.362445852627424],[-121.13920400233113,53.36242022025678],[-121.13890636759758,53.36239962100588],[-121.13860672701628,53.36238005283991],[-121.1383091579636,53.36235888880266],[-121.13801217002293,53.362332699104286],[-121.13771848259671,53.36229428255404],[-121.13742764218252,53.362247564331064],[-121.13713686650013,53.36220029104613],[-121.13684790536995,53.36215364829791],[-121.13655913922983,53.362105323915934],[-121.13626862396333,53.36205581322496],[-121.13598471312145,53.361998145794075],[-121.13570339239674,53.36193440311439],[-121.13541501579392,53.36188273197291],[-121.13511777552387,53.36185876137894],[-121.13481820774128,53.36185491647397],[-121.1345174124121,53.361861683905545],[-121.13421836567532,53.361869645154655],[-121.13391782872783,53.36187417579461],[-121.13361722758314,53.36187926002319],[-121.13331669050244,53.36188378914427],[-121.1330150512793,53.361881534728],[-121.13271729405521,53.361862037622416],[-121.1324238734011,53.36182137271913],[-121.13213984006373,53.36176481374072],[-121.13186312286534,53.361693955757694],[-121.13161023273193,53.36159656634223],[-121.13140655505403,53.361465250776355],[-121.1312190654115,53.361324500985845],[-121.1310395420649,53.36118014266158],[-121.13083191774516,53.361050353025874],[-121.1305787109328,53.36095575100232],[-121.13029526865697,53.36089415377038],[-121.13000095029979,53.36086131525024],[-121.12970048317804,53.36084899372457],[-121.1293991103741,53.360844494871145],[-121.12909987438442,53.36083783701007],[-121.12879979596613,53.36082216031089],[-121.1285023722779,53.360799854092896],[-121.12820287734958,53.360779142072545],[-121.12790422401021,53.36076745633091],[-121.12760388894863,53.36077029010316],[-121.12730413608553,53.36078438541571],[-121.12700541988575,53.36080581715482],[-121.126708063376,53.360831795723215],[-121.12641219595017,53.360861203500974],[-121.12611619861575,53.36089172817196],[-121.1258201366187,53.360922806449906],[-121.12552685816364,53.36096242483228],[-121.12523804723732,53.361012332393884],[-121.12494917034513,53.361062802537454],[-121.12466042333199,53.36111214540952],[-121.1243715450635,53.36116261414788],[-121.12408441551378,53.361214267970034],[-121.12379883877315,53.361268796740084],[-121.12351623975589,53.36133018480047],[-121.12324341689204,53.361404892040824],[-121.122973831644,53.36148421445067],[-121.12270094254518,53.361559474783505],[-121.12242313090785,53.3616283606402],[-121.1221373553234,53.36168455737722],[-121.12184872933048,53.36173278472521],[-121.12155667135211,53.36177805856035],[-121.1212633186397,53.361818220755445],[-121.1209687998943,53.361852162618945],[-121.12067305094064,53.361880438483354],[-121.1203740642957,53.36190408880338],[-121.12007540094386,53.36192494878643],[-121.11977686800057,53.361944681456414],[-121.11947839909641,53.36196385903659],[-121.11917980023762,53.361984153489075],[-121.11888281966014,53.36200675961632],[-121.1185853842993,53.362033281144384],[-121.11828924335447,53.36206490394125],[-121.1179957558156,53.36210617569266],[-121.11771650947138,53.36217105720151],[-121.11745182876102,53.36225675004746],[-121.11719912508354,53.36235304133623],[-121.11695146978732,53.362454597477196],[-121.11671236029675,53.36256379923062],[-121.11648898354369,53.36268375404403],[-121.11629027575326,53.36281875531362],[-121.11612381223043,53.3629685666677],[-121.11598642267971,53.36312799109296],[-121.11587085487552,53.36329448453369],[-121.11577743190534,53.36346526642118],[-121.11571366815767,53.363640627855375],[-121.1156759356355,53.363819314681884],[-121.11566074023509,53.36399891934319],[-121.11567390948551,53.3641780105346],[-121.11570974522691,53.364356910886485],[-121.11575523112478,53.36453396213967],[-121.11580058762405,53.36471213097606],[-121.1158517085084,53.36488941385486],[-121.11593741396551,53.36506138112745],[-121.11608535975421,53.36521738339851],[-121.11626679255717,53.3653612779474],[-121.1164582649026,53.365499979172675],[-121.11665576315613,53.3656355499431],[-121.11684931129751,53.365772646842856],[-121.11704078743065,53.36591134710255],[-121.11725448222901,53.366037475992535],[-121.11748650761844,53.36615201448535],[-121.1176842063228,53.36628591154977],[-121.11784194384796,53.36643893575643],[-121.11798789364516,53.36659597597414],[-121.11812400020501,53.36675653721966],[-121.11824262105151,53.36692142837355],[-121.11835340530139,53.36708880914716],[-121.11847202694376,53.36725370898631],[-121.1186022434702,53.36741627330098],[-121.11872669669287,53.367579723523384],[-121.11884337863648,53.3677451001059],[-121.11894840308987,53.36791336632617],[-121.11904371352847,53.36808403611489],[-121.11911978795975,53.368257850160475],[-121.11916140622377,53.368435863032126],[-121.11917264812814,53.368615439546886],[-121.11916692150974,53.36879487578322],[-121.11914798267553,53.36897432609502],[-121.1191140164837,53.36915316790008],[-121.11906515452816,53.369330265686756],[-121.11899763798115,53.36950548295783],[-121.11891716791091,53.36967847900795],[-121.11882374417058,53.3698492538115],[-121.11871373868436,53.37001654429277],[-121.11858358975752,53.37017851513819],[-121.11843336155236,53.370334611945324],[-121.11827594377375,53.370487601273865],[-121.11812396576714,53.37064249391832],[-121.11798830735589,53.37080311486461],[-121.11787460371696,53.37096969576191],[-121.11779781859428,53.371143399664135],[-121.11777887183321,53.3713228584924],[-121.11782618796803,53.37150053988491],[-121.11794099885772,53.37166583983569],[-121.11812842476975,53.37180717311541],[-121.11837551473646,53.37190604002519],[-121.11865856015264,53.37197157250916],[-121.11892897347691,53.3720483806623],[-121.1191798235446,53.372147400253006],[-121.11941616451608,53.372257609590676],[-121.11963793005806,53.372379580979484],[-121.119819599878,53.372521797650684],[-121.11993429167889,53.372688213211376],[-121.12004328474843,53.37285495149408],[-121.1201930872373,53.37301157956169],[-121.12030609740857,53.37317624560866],[-121.1203552393841,53.37335456627254],[-121.1203892897117,53.37353282397166],[-121.12044620572831,53.37370921796793],[-121.12052611739752,53.37388263061259],[-121.12062151205951,53.37405274430069],[-121.12073621119787,53.37421915896378],[-121.12084125935708,53.3743874229795],[-121.12090387932126,53.37456348485815],[-121.12093793191089,53.374741751235845],[-121.12096622055974,53.37492089481583],[-121.12099262987338,53.37509997016557],[-121.121019040449,53.37527903655281],[-121.12104739412244,53.3754576257289],[-121.12106998267402,53.375637101056014],[-121.12109069284753,53.375816499215745],[-121.12111710325203,53.375995574459424],[-121.12114539350517,53.37617471788711],[-121.12118864740128,53.37635504173719],[-121.12134799037555,53.376494658095],[-121.1216278960225,53.37657128238161],[-121.12187903868822,53.37666806083084],[-121.12203708964547,53.37681884346465],[-121.12211306255757,53.37699377246931],[-121.1221395433917,53.37717228410456],[-121.12214510009672,53.377352182516255],[-121.12216393704433,53.37753150320836],[-121.122192231745,53.37771065519373],[-121.12223005070034,53.377889066246304],[-121.12225270990301,53.37806798679828],[-121.12221693622521,53.37824618828651],[-121.12210867131684,53.378414675964834],[-121.12192623157019,53.37855541352665],[-121.12168017710805,53.3786587277924],[-121.12143399176388,53.378763159158694],[-121.12128069983663,53.378912953272454],[-121.12116336061256,53.379078255808835],[-121.12095059714966,53.37920371463888],[-121.12069067396699,53.379296351106774],[-121.1204194143902,53.3793728003156],[-121.12013649491105,53.37943585175119],[-121.11984489553531,53.37947609620409],[-121.11954390760013,53.37948338004952],[-121.1192449942843,53.37947279028626],[-121.11894459265639,53.37945876081578],[-121.11864529041343,53.37945152238039],[-121.11834339639121,53.37945034839077],[-121.11804305721483,53.37945204038627],[-121.11774316817977,53.37946611147628],[-121.11744981840003,53.379505146308816],[-121.11717045584267,53.37957002598294],[-121.11690236097144,53.3796516552954],[-121.11664430485696,53.37974436011811],[-121.1164175341522,53.379860243252594],[-121.11620805625454,53.379989755156],[-121.11598283670223,53.38010851316303],[-121.11576992277126,53.38023508027509],[-121.11559082197802,53.38037931528322],[-121.11542422215082,53.38052967870339],[-121.11525956535237,53.38067955584468],[-121.11510021858918,53.38083246295905],[-121.11496276688138,53.38099188480791],[-121.11485828789411,53.3811599658184],[-121.11477032877704,53.38133208582307],[-121.11466759712721,53.38150136149088],[-121.11455935909723,53.38166927875938],[-121.11449938478182,53.38184423814858],[-121.11447854031387,53.3820236182624],[-121.11441292862882,53.38219834582341],[-121.11431576556232,53.38236840720546],[-121.11424633052931,53.38254353446927],[-121.11419555265935,53.382720560783056],[-121.11414477540151,53.3828975781192],[-121.11409211779613,53.383074527101705],[-121.11401898731329,53.38324894532609],[-121.1139126211012,53.3834169391223],[-121.1138173321062,53.38358707725681],[-121.11377400239408,53.38376496667927],[-121.11376442740378,53.383944810074624],[-121.11378517600498,53.384123645506584],[-121.1138305452696,53.38430181338792],[-121.11388174606941,53.384478541084455],[-121.11392329379477,53.38465710870921],[-121.11394592134245,53.38483603025211],[-121.11395902538969,53.38501567414019],[-121.11396266920298,53.38519549498619],[-121.11395316015958,53.38537477499987],[-121.11393224718901,53.38555470904101],[-121.11387777183575,53.38573101716863],[-121.11384597401455,53.38590713479102],[-121.11397260223325,53.38606843056734],[-121.11416396686903,53.386208806015595],[-121.11435358363866,53.38634798629068],[-121.11454514511772,53.38648668917347],[-121.11473469997992,53.38662642315367],[-121.11491239686774,53.38677072704099],[-121.11505639729073,53.38692880965472],[-121.11517110950946,53.38709522863809],[-121.11525873645833,53.38726727177497],[-121.11530236613126,53.387444243981136],[-121.11531547677771,53.38762388749234],[-121.1153494518566,53.38780270866622],[-121.11540059887703,53.38797998973998],[-121.11545181073998,53.38815671644543],[-121.11550678230942,53.38833358864296],[-121.11555987417499,53.38851039250651],[-121.115616725795,53.38868734185684],[-121.11567558585554,53.38886325973535],[-121.11573632659758,53.389039245860126],[-121.11580089057367,53.3892148320685],[-121.11586739866316,53.38938994112534],[-121.1159414894506,53.389564795770696],[-121.1160195345164,53.38973812393441],[-121.11608986816762,53.389912824004334],[-121.11614108527493,53.39008955024765],[-121.11616936382545,53.390268693629835],[-121.11619388314888,53.39044769148256],[-121.11622786423749,53.39062651216094],[-121.11626372484534,53.39080541003712],[-121.11626368597061,53.39098451259014],[-121.11620921335512,53.39116082132051],[-121.11610277044656,53.39132937970048],[-121.11597066632767,53.39149126878085],[-121.11580953182194,53.39164298121312],[-121.11559500495781,53.3917666715994],[-121.11534024062537,53.39186288031905],[-121.11508210622083,53.39195558120448],[-121.11482397067945,53.39204828152604],[-121.11457950385021,53.39215333854852],[-121.11435946279751,53.392275677329366],[-121.11415536034077,53.39240708852634],[-121.11396000251102,53.39254448259674],[-121.11377734437099,53.392686324297635],[-121.11359630446378,53.392830478170204],[-121.11341889202977,53.392975903891084],[-121.1132451725784,53.39312203820683],[-121.11306957154682,53.39326810392623],[-121.11289759907142,53.393415432584845],[-121.11273100249143,53.39356523695518],[-121.1125752920195,53.39371884861776],[-121.11242495753189,53.39387493604947],[-121.11226924479769,53.39402854728878],[-121.1121099011098,53.39418089508106],[-121.11198146698219,53.39434348841499],[-121.1119401278048,53.39452033593686],[-121.11197214920769,53.394699643454615],[-121.11203865107592,53.394874745244934],[-121.11213010470709,53.39504639028852],[-121.11223322655378,53.39521513723892],[-121.11233440429586,53.3953843700696],[-121.11243370341595,53.39555352551729],[-121.11254654932564,53.39571986905201],[-121.11245659599433,53.395713924318976],[-121.11242945335356,53.39588237210887],[-121.11223945218637,53.396022230165265],[-121.11205495920501,53.396163428430825],[-121.11189197770553,53.396314503601154],[-121.11174895485533,53.39647257107151],[-121.1116259552831,53.39663707658555],[-121.11151040823067,53.396802445477164],[-121.1113929797337,53.39696774588465],[-121.11128287384878,53.3971350272885],[-121.11114885346272,53.397296833261905],[-121.11095009516526,53.39743070574083],[-121.11065855790123,53.397469246472866],[-121.1103568540825,53.39748154065611],[-121.11005522108817,53.39747699287407],[-121.10975585780261,53.39746916887824],[-121.10945474516353,53.39746014920815],[-121.10916096776135,53.3974205541629],[-121.10887912526084,53.397359547598576],[-121.10859961885807,53.39729470167154],[-121.10831583295055,53.39723417969182],[-121.10803172316119,53.39717644653842],[-121.10775708355453,53.397102258288406],[-121.1074931433886,53.397017280313925],[-121.10722311096826,53.39693597674657],[-121.10694367446627,53.396870572594494],[-121.10666443349582,53.39680349587181],[-121.10639829312996,53.39672122758498],[-121.1061473266935,53.39662218223118],[-121.10590258495597,53.39651834382709],[-121.10564967688028,53.39641977435193],[-121.10541336645278,53.39630842137799],[-121.10517893776763,53.396197136386064],[-121.10495507799878,53.396076188589305],[-121.10474327821841,53.39594899033003],[-121.10458554334208,53.39579538769356],[-121.10441380696231,53.395648511753606],[-121.1042480360125,53.39549906935582],[-121.10409808264477,53.395343540516095],[-121.10388213975645,53.39521953861016],[-121.10362074960867,53.395129041459086],[-121.10335261513467,53.39504781540179],[-121.10309479117852,53.39495914385023],[-121.10289337567075,53.394823951960696],[-121.10265059742692,53.39471962095187],[-121.10239965174125,53.39462056760224],[-121.1021157625392,53.39456114835086],[-121.10182454390369,53.39451601572795],[-121.10153319459914,53.394472008916644],[-121.10126052910336,53.39439731977621],[-121.10096275255134,53.39437606264979],[-121.10066384921774,53.394396873564375],[-121.10036314214113,53.39440075609411],[-121.10006262992333,53.3944029659606],[-121.09977134891327,53.3943583915733],[-121.0994712374398,53.39434096924138],[-121.09917391880896,53.39431579163211],[-121.09887438402582,53.39430962110586],[-121.09857486027514,53.39428716292673],[-121.09828559132966,53.39424154482244],[-121.09802817401564,53.39414950952091],[-121.09781659986128,53.39402062691991],[-121.09760891602431,53.39389078138915],[-121.09738081017547,53.39377413450272],[-121.0971505665803,53.39365963586743],[-121.09694094155516,53.3935302748845],[-121.09670655073882,53.393418973060605],[-121.09648072039833,53.39329904921557],[-121.09625054652189,53.39318399449367],[-121.09602860876566,53.39306309833488],[-121.09580680163968,53.392941093116924],[-121.09559497955115,53.392814441650096],[-121.09540144203648,53.392676748724675],[-121.09520998015536,53.392537461133315],[-121.09499621689913,53.39241129428062],[-121.09478252065777,53.392284563777075],[-121.09458691282099,53.392148472767616],[-121.09439733528141,53.392009261398705],[-121.09418364288356,53.39188252979542],[-121.09397792577471,53.39175219210831],[-121.09377836836705,53.3916176254223],[-121.09361854960362,53.39146616551239],[-121.09339883329658,53.39134255245765],[-121.09321496668538,53.391203008644005],[-121.09298507412946,53.39108571233757],[-121.0927630252947,53.39096593648535],[-121.09253086466596,53.39085191442441],[-121.09227795617639,53.39075387953299],[-121.09201836738886,53.39066455189035],[-121.09176954633632,53.39056387271094],[-121.09150139907491,53.390483174100105],[-121.09122209456692,53.390417178526825],[-121.09094558478083,53.39034342795362],[-121.09065349256215,53.39030609987702],[-121.09035509762957,53.390290404048365],[-121.09009798289539,53.390196116274666],[-121.08988398575262,53.39007217524747],[-121.08960540507734,53.390000024740665],[-121.08930350205505,53.38999821383005],[-121.0890250052716,53.39005464976709],[-121.08875744301811,53.39013061844645],[-121.08846117549881,53.39012904731148],[-121.08825386671134,53.38999638681532],[-121.08805829060991,53.389860284927735],[-121.08786686583167,53.38972098533667],[-121.087615918902,53.38962246384215],[-121.08736698392404,53.38952289298105],[-121.08714120108647,53.38940295119312],[-121.08689025879549,53.38930441921304],[-121.0866330920045,53.389210687166106],[-121.08636282283129,53.3891321343779],[-121.08609897582356,53.38904710864881],[-121.08584174651783,53.38895393813605],[-121.08557816299441,53.38886667610487],[-121.08528582549522,53.38883156102923],[-121.0849843220124,53.388826395394844],[-121.08468535213885,53.38881570993318],[-121.08439630178624,53.38886551764421],[-121.08412465329806,53.388944118892994],[-121.08384025786667,53.389002544673254],[-121.08354991486664,53.389047239064126],[-121.08325104076675,53.38906800631102],[-121.08295063160983,53.38906960973246],[-121.08265290199346,53.3890483067522],[-121.08235283546351,53.38903084122075],[-121.08205557952152,53.38905390941623],[-121.08177771667187,53.3891210185909],[-121.08153292287473,53.38922824301503],[-121.08133268659196,53.38935808177989],[-121.08122980197714,53.389527318964056],[-121.08116760216458,53.38970386390992],[-121.08102474799556,53.389859659831075],[-121.08080267745282,53.38998241323788],[-121.08057743539872,53.390099986084195],[-121.08031916936797,53.390193174906436],[-121.08005773307427,53.39028117407122],[-121.07981836988601,53.39039030016657],[-121.07956191465493,53.39048411944205],[-121.07930034414218,53.39057323449333],[-121.07904718754939,53.39067111526108],[-121.0787977221542,53.39076971436556],[-121.07852132939682,53.39084024638113],[-121.07828532480866,53.39095287768444],[-121.07806518459302,53.39107514943142],[-121.07788254278628,53.391215818576946],[-121.0777520403858,53.39137886061744],[-121.07763630875941,53.391544760283786],[-121.07748961091372,53.39170095940787],[-121.07736837063368,53.39186550772342],[-121.07717833711148,53.39200474682768],[-121.07693229114959,53.392106287065765],[-121.07664139474447,53.392155443712404],[-121.07634192613229,53.392164931208605],[-121.07604208323588,53.39216149265156],[-121.07574208968218,53.39217545780946],[-121.07544157322884,53.39219388349846],[-121.07514680510258,53.39222771140058],[-121.0748548122711,53.392270080467284],[-121.07456572657343,53.39231986422215],[-121.07427508891432,53.39236677102905],[-121.07398322521749,53.39240802039955],[-121.07368825846756,53.39244351654898],[-121.07339077667125,53.39246824387007],[-121.07309097707692,53.39248052154281],[-121.07279098027122,53.392494479261316],[-121.07249336657145,53.39252032189295],[-121.07219671456345,53.39255406457079],[-121.07190465150772,53.3925969807007],[-121.07162028048907,53.39265481393342],[-121.07134392937978,53.39272476597246],[-121.07108595497057,53.39281513629192],[-121.07089926168952,53.392957873834995],[-121.07078537796797,53.393123844652095],[-121.07068069251117,53.393291885856236],[-121.07057587619705,53.39346103556514],[-121.0704803893411,53.393631138141735],[-121.07040893912367,53.39380560658874],[-121.07033560902637,53.39397999703034],[-121.07028275342549,53.39415692564476],[-121.07022244623293,53.394332979177086],[-121.07014911444445,53.39450736945935],[-121.07007954068533,53.39468191558551],[-121.06998955594221,53.39485336907309],[-121.06985914279,53.395015284623256],[-121.06966725694768,53.39515387032397],[-121.06946999296972,53.39528999566486],[-121.06925161878851,53.39541288312069],[-121.0690208084738,53.395529082345384],[-121.06878851089898,53.395641850500695],[-121.06854720865536,53.395750875674686],[-121.06827756169838,53.39582784661886],[-121.06800752136661,53.39590816064924],[-121.06774595774561,53.395996695772624],[-121.06746621299116,53.39606313008016],[-121.06717263489664,53.39610260389621],[-121.06687462086985,53.39611550713239],[-121.06657422587128,53.396116514915214],[-121.06627238773889,53.396129814931754],[-121.06597367572323,53.39613257105806],[-121.06567389416989,53.39611226520956],[-121.06537572984568,53.39609427171957],[-121.0650792055543,53.39606231266023],[-121.06477850630812,53.396049827360315],[-121.06448021156895,53.39603294916997],[-121.06418257330819,53.39601048251992],[-121.06389879487155,53.39595040893977],[-121.0636286561265,53.39587068724978],[-121.06336520662197,53.395782258784074],[-121.06307972429968,53.395736711286965],[-121.06277718999317,53.395739866509494],[-121.06249156231198,53.39579201207465],[-121.06221012769414,53.39585668412538],[-121.06192106859568,53.39590587384567],[-121.06163510991412,53.39596081567185],[-121.06134294732156,53.39600426011743],[-121.06104685229256,53.39603295049562],[-121.06074778722014,53.396054769766614],[-121.06044885213403,53.396075479688065],[-121.0601481945583,53.396078706333014],[-121.05985035124229,53.3961061891474],[-121.05955028404586,53.39610438983321],[-121.05925067722725,53.39609867391314],[-121.05894982283905,53.39610356936692],[-121.05864767977216,53.39610336148496],[-121.05835062266907,53.396124144269514],[-121.05805007042305,53.39614252601781],[-121.05775043679655,53.39615309320056],[-121.05744958184506,53.39615798486291],[-121.05715014563606,53.39616686976218],[-121.05684998583838,53.39618190481687],[-121.0565497606266,53.39619749341146],[-121.05625025874299,53.396206930344],[-121.05594999430812,53.396206793785566],[-121.05564804720204,53.396204906460945],[-121.0553473231191,53.396208675277606],[-121.05504801759693,53.39621643735685],[-121.05474683260547,53.39622412048966],[-121.05444597574555,53.396229013501625],[-121.05414630350245,53.39622383903176],[-121.0538488661686,53.39619967472179],[-121.05354876169011,53.39618212769929],[-121.05324869422297,53.39618031250196],[-121.0529472460684,53.39619022614272],[-121.05264972562405,53.396214901586106],[-121.05237991612356,53.39629294509232],[-121.0521033112871,53.39636453310322],[-121.05181215963971,53.396415300793926],[-121.05151854733275,53.396390723910095],[-121.05123151124188,53.39642257044468],[-121.05093913678301,53.39646767011001],[-121.05066124069442,53.39653415210642],[-121.05040112228323,53.39662607099198],[-121.05012233262867,53.39668408754129],[-121.04982691986545,53.396722886009904],[-121.04953596097936,53.39677196736571],[-121.0492433116444,53.396787296341486],[-121.0489578015809,53.396725991364356],[-121.04866395570593,53.39668735562284],[-121.04836556056671,53.396655276654265],[-121.04807020735848,53.39666149702087],[-121.04781875455912,53.3967599526079],[-121.04762147878252,53.39689547840156],[-121.04743669892709,53.397037139641796],[-121.04724492708218,53.39717401724427],[-121.04706914658493,53.39731942202489],[-121.04682804190824,53.39742616803724],[-121.0465647430262,53.3975128974823],[-121.04630144305916,53.39759962634142],[-121.04601545249133,53.39765453060299],[-121.0457247462081,53.397701367579366],[-121.04543855709748,53.39775794226403],[-121.04515869903932,53.39782488732415],[-121.04487587185855,53.39788496990443],[-121.04460583905431,53.39796467647899],[-121.04436478979814,53.39807086317974],[-121.04411843104214,53.39817401603465],[-121.04388631575918,53.398284500410085],[-121.04375767101426,53.39844646545304],[-121.04367851871253,53.39862115825843],[-121.04363514073567,53.39879678572714],[-121.04368975797321,53.39897425332044],[-121.04377517154822,53.39914683286848],[-121.04386642247768,53.39931796669017],[-121.04396539030799,53.39948773313633],[-121.04406630379842,53.39965702355966],[-121.04415950188623,53.39982768118786],[-121.04424686504893,53.3999997754583],[-121.04433051053442,53.400251448521004],[-121.04438513259139,53.400428915670986],[-121.04444935099228,53.40060509381504],[-121.04452718745323,53.40077791355181],[-121.04462434719456,53.40094704668691],[-121.04473304862927,53.40111441480349],[-121.0448532254655,53.40128058109964],[-121.04497937193615,53.40144418403906],[-121.04511524725021,53.40160538029484],[-121.04525722303306,53.4017629045691],[-121.04541684041943,53.401914991849864],[-121.04559034138774,53.402061476450825],[-121.04576974590395,53.402205960757236],[-121.04594901990019,53.40235156230227],[-121.04611655680895,53.40250060043503],[-121.04627805972834,53.40265276483705],[-121.0464337942173,53.40280580261365],[-121.046591343088,53.402959481727244],[-121.04675096983316,53.40311156713196],[-121.04691650121958,53.40326164328417],[-121.0470859901781,53.40341020401518],[-121.0472594367323,53.40355724930852],[-121.04743295088362,53.40370373110877],[-121.04760834592886,53.403850290952285],[-121.04778186250265,53.4039967722235],[-121.04795336888024,53.40414429245092],[-121.04812085364624,53.4042938908652],[-121.04827653453358,53.404447489340924],[-121.04843604237287,53.40460068095795],[-121.04860949855014,53.40474772420054],[-121.04879871860845,53.40488924264673],[-121.04898599488487,53.4050312367885],[-121.04915569526136,53.40517812263615],[-121.04927468082438,53.40533860931858],[-121.04932524109803,53.40551871548015],[-121.04937412006603,53.405697062574944],[-121.04942118603026,53.405874768126345],[-121.04949127016393,53.40604950611084],[-121.04957665658142,53.406222635199484],[-121.04965445812718,53.40639601434783],[-121.0496940721162,53.406572852345796],[-121.04968032785308,53.406753640564986],[-121.04971034512329,53.40693176791055],[-121.04977842071727,53.40710754488503],[-121.0498370323564,53.40728348474149],[-121.04985745444031,53.40746289246036],[-121.04985700021805,53.40764311993596],[-121.0498433879708,53.407822790560836],[-121.04981292203252,53.40800120243822],[-121.0497636570005,53.408178831573295],[-121.04972567090081,53.40835693030937],[-121.04972145630565,53.408537001161896],[-121.04970220346827,53.40871643687537],[-121.04966797645386,53.408894692093114],[-121.04964301709092,53.409074456175226],[-121.04962000275727,53.40925374422146],[-121.04957047208913,53.40943360820831],[-121.04951282917659,53.40961818342067],[-121.04940303629874,53.40978038214989],[-121.04919141873093,53.40989285482339],[-121.04890479248049,53.40996851360281],[-121.04861760228408,53.410032918222264],[-121.04832364563427,53.410074580326174],[-121.04803305317398,53.41011975085342],[-121.0477422630239,53.41016659247557],[-121.04745166930417,53.410211761582275],[-121.04715784199512,53.41025230328868],[-121.04686292466126,53.41028606085773],[-121.04656497106254,53.41031351918672],[-121.04626619230206,53.410331949382936],[-121.0459658622201,53.410347511180966],[-121.04566836937316,53.41037105149475],[-121.04537305463558,53.410408157915164],[-121.04508090570154,53.41045045357568],[-121.04478888904269,53.41049162206528],[-121.04449660712615,53.41053503380393],[-121.04420729467948,53.41058529767905],[-121.04392438037672,53.41064537763076],[-121.04364456604073,53.41071120120506],[-121.04336300268845,53.41077582823546],[-121.0430813066169,53.410841572109284],[-121.04281468353278,53.41092366590239],[-121.0425666294705,53.411024501506255],[-121.04232705109817,53.411133551107],[-121.04209258397452,53.41124730543867],[-121.04186685619636,53.411367038833696],[-121.04163265031758,53.411478557228264],[-121.0413724852304,53.411569901442085],[-121.04110021413018,53.411651756154825],[-121.04085422904113,53.41175099477288],[-121.04064818649398,53.41187996520705],[-121.04046681358402,53.41202400645652],[-121.04028524100526,53.412169728150886],[-121.04009680771489,53.41230953938505],[-121.03990830667269,53.41244991353516],[-121.03972524610711,53.41259220339845],[-121.03956194243051,53.41274316933853],[-121.03940401283398,53.41289661430219],[-121.03923714407797,53.41304575111518],[-121.03906295226908,53.4131928931925],[-121.03887988561252,53.413335181705904],[-121.03868599957624,53.41347308351117],[-121.038486867909,53.413607397128416],[-121.0382841067401,53.41374043599367],[-121.03808315893484,53.41387410724352],[-121.03788032867503,53.414007708626386],[-121.03767588207259,53.41413898724577],[-121.03746074693505,53.4142647704162],[-121.03723518729257,53.414382823074995],[-121.03700425106868,53.41449839593539],[-121.03677855685933,53.41461756521872],[-121.03654755154456,53.41473370040169],[-121.03630625489606,53.4148409784937],[-121.0360526537171,53.414940447386414],[-121.03577279850543,53.41500625233017],[-121.03544627215396,53.41503529466805],[-121.03512584759147,53.41506066483868],[-121.03487505170978,53.415120376988526],[-121.03476680876902,53.4152528650748],[-121.034781890548,53.41544497338802],[-121.03481699515427,53.415643523825786],[-121.03483729067786,53.41582349661873],[-121.0348577195208,53.41600234295345],[-121.03485538731526,53.41618192790506],[-121.03484734785229,53.41636184053924],[-121.03484877604129,53.41654158247436],[-121.03485967200358,53.41672115371003],[-121.03485733976655,53.41690073860009],[-121.03482855186871,53.41708034187145],[-121.03483575287974,53.41725920176879],[-121.03487317035673,53.41743820026439],[-121.0349106536701,53.417616644453474],[-121.03492349597857,53.417795739818224],[-121.03490981667451,53.41797540786025],[-121.03490553770476,53.4181554773568],[-121.0349221407752,53.41833472968815],[-121.03492732998605,53.41851462846514],[-121.03489860785929,53.4186936683963],[-121.03487935267646,53.418872546559854],[-121.03491113074884,53.41905130938582],[-121.03494096216473,53.419230556901226],[-121.03495360747745,53.4194113239015],[-121.03494375402894,53.419590594541134],[-121.0348776213859,53.419766392481904],[-121.03475062455027,53.419929542128436],[-121.03455125106625,53.42006552946732],[-121.03429982545578,53.42016227468008],[-121.03402115253681,53.420233741342244],[-121.0337475913294,53.420309912906696],[-121.03347571079217,53.42038784308198],[-121.03321916816115,53.42047988043117],[-121.03298287607014,53.42059242029222],[-121.03276607780761,53.420715881069526],[-121.03256144942497,53.42084827692403],[-121.03235507255978,53.42097946743844],[-121.03213114528019,53.421099260370234],[-121.03190015710892,53.42121483190392],[-121.0316762939051,53.42133406075072],[-121.03145054793224,53.42145321954941],[-121.03121962257822,53.42156822652771],[-121.0309833856591,53.42168019914817],[-121.03074384879864,53.421788107399784],[-121.03049718553726,53.42189234838767],[-121.03025246710428,53.42199611316364],[-121.03000929786934,53.422102745271864],[-121.0297748685499,53.4222153572659],[-121.02955623868452,53.422338170303846],[-121.0293060061458,53.42244057985178],[-121.02903760111238,53.42252088304681],[-121.02874960478005,53.42257510336352],[-121.02844849085521,53.42258048489017],[-121.0281492288843,53.42257022081866],[-121.02788477970797,53.422649006874074],[-121.02762896645153,53.422750613819375],[-121.02736560180622,53.42283618226243],[-121.02710714931887,53.42292813665589],[-121.02686927795905,53.42303778744199],[-121.02664162871837,53.42315685839775],[-121.02642090526476,53.423281267689305],[-121.02627430470393,53.423434039883034],[-121.02618193472603,53.42360761419293],[-121.0260787434505,53.42377680981614],[-121.0259959736864,53.42394909648199],[-121.02594101340404,53.424125924187635],[-121.02587678327463,53.42430123218603],[-121.02579381258748,53.424475199365745],[-121.02568705554295,53.42464255658325],[-121.02554549314797,53.424800596885724],[-121.02539109596609,53.42495529717544],[-121.0252403275232,53.425111263114744],[-121.02508417985548,53.425264766841565],[-121.0249045108902,53.42540941640231],[-121.02471596611763,53.425549211356405],[-121.02452735442452,53.425689560274165],[-121.02434774740006,53.425833654694756],[-121.02418433713412,53.42598459859445],[-121.02401010476977,53.426131163475304],[-121.02381973988304,53.42627031507437],[-121.02362755876773,53.42640883340538],[-121.02343174856124,53.42654606762245],[-121.02323593601764,53.42668331044859],[-121.02304926171621,53.42682317243068],[-121.02289329888967,53.426974992470875],[-121.02279364934978,53.42714601411918],[-121.0227088453055,53.42731934594846],[-121.02260945910095,53.427488132455366],[-121.02246424661597,53.427644894003585],[-121.02230257080402,53.42779703137407],[-121.02215158149747,53.42795467388262],[-121.02196664514065,53.42809573920993],[-121.02172813448466,53.428210412584555],[-121.02144185288755,53.42823380125301],[-121.02113480439697,53.42820916199174],[-121.02083702844445,53.4281860241164],[-121.02053931854331,53.428162331228044],[-121.0202396614693,53.42813912206624],[-121.01994221728336,53.428113192732006],[-121.01964523785328,53.42808334701915],[-121.01935040357708,53.42805135330536],[-121.01905382264353,53.428018153690225],[-121.01875932119029,53.427983360354474],[-121.01846287270433,53.42794905073191],[-121.01816576291299,53.42792031880364],[-121.01786650660634,53.42789375124719],[-121.01757890920615,53.427848570841746],[-121.01732823157207,53.42774710486117],[-121.01709237693441,53.42763222591139],[-121.01681175027049,53.42757610527542],[-121.0165126298807,53.427548416840914],[-121.01621410720753,53.42751569455908],[-121.01591974424959,53.427479776723516],[-121.01562204211754,53.42745607154021],[-121.0153208679137,53.427445696455905],[-121.015019893367,53.4274336399336],[-121.01471967153103,53.42743116444758],[-121.0144208230643,53.42744896033282],[-121.01412088972154,53.427459971813356],[-121.01381832214794,53.42746133083755],[-121.01354029642012,53.42752659878208],[-121.01324536372574,53.427559155350636],[-121.01294739857076,53.427585411875185],[-121.01265120256714,53.42758085394432],[-121.01236044827381,53.42753047908267],[-121.01206374380067,53.42749837952742],[-121.0117664419261,53.42747131230655],[-121.01146880803734,53.42744704248137],[-121.01117044487489,53.427428913510454],[-121.0108693388763,53.427417963969894],[-121.01057777075691,53.42726310816041],[-121.01041032807815,53.427113458600765],[-121.0102429524484,53.42696325453202],[-121.0100949166214,53.42680936039089],[-121.00998998096478,53.426642683726996],[-121.00976824754626,53.426520511310414],[-121.0095004269547,53.42643627702747],[-121.00921109962616,53.42638988895917],[-121.0089273945816,53.42632800457],[-121.00866796213471,53.42623682501902],[-121.00840853187512,53.42614563595936],[-121.00815104922867,53.42605397099694],[-121.00788967366765,53.42596326507322],[-121.00763004698598,53.425873754972535],[-121.0073749127342,53.425778260603714],[-121.00711790011763,53.42568267780006],[-121.00696605211107,53.42552918499003],[-121.00690564789737,53.425353700910215],[-121.0068835197539,53.42517420844112],[-121.00689920165564,53.424994623195],[-121.00689413150981,53.42481472376539],[-121.00686817672307,53.42463562761308],[-121.00679817172379,53.424461429326335],[-121.006670158316,53.42429826306943],[-121.0065538265326,53.42413222693354],[-121.00649342604441,53.42395674252833],[-121.00640026034857,53.42378662061155],[-121.00631683057648,53.42361409526651],[-121.00615720527023,53.42346252037247],[-121.00600946140291,53.42330639491221],[-121.00588917523991,53.42314187184988],[-121.00576895699113,53.4229767854518],[-121.00564873862281,53.42281170785901],[-121.00547717162915,53.422665245504454],[-121.00528372492131,53.42252797135044],[-121.00506806686718,53.422402674479656],[-121.00483187695666,53.42229112335756],[-121.00459152977534,53.42218275723955],[-121.00436775521462,53.42206217619231],[-121.00418236824017,53.42192074631403],[-121.00406800024885,53.42175422335338],[-121.00399230451731,53.42158034046194],[-121.00392621021582,53.421405180760964],[-121.00382534016477,53.42123641236677],[-121.00367767976745,53.42107972064865],[-121.00351685790433,53.42092247572519],[-121.00344233383362,53.42077054539576],[-121.00368722486576,53.42064999471155],[-121.00387050828733,53.42050720654418],[-121.00398473006221,53.4203413019959],[-121.00402856160957,53.42016345588749],[-121.00407615343771,53.419985767733664],[-121.00413301353602,53.41980959196896],[-121.00416186734856,53.41963055956832],[-121.0041643307619,53.419450975529685],[-121.00415739268462,53.41927099651813],[-121.0041542152384,53.41909117547407],[-121.00415291809716,53.418911433406315],[-121.00414403396286,53.41873192961803],[-121.00412192108399,53.4185524360712],[-121.00407691253365,53.41837479272184],[-121.00402425152915,53.41819794189],[-121.00395816240821,53.418022781924684],[-121.0039112759495,53.41784505053346],[-121.00390615245136,53.41766571356693],[-121.00391808489896,53.417485961141175],[-121.00393753700399,53.417306533619154],[-121.00396639099505,53.41712749211268],[-121.00400833908199,53.41694956674479],[-121.00404464626817,53.41677140436684],[-121.00406221732912,53.41659189776986],[-121.00407226863945,53.41641206624342],[-121.00408419895855,53.416232322633185],[-121.00410741113883,53.416053044022135],[-121.00415493100097,53.415875918691206],[-121.00422488023723,53.41570084974192],[-121.00430033530945,53.41552714411074],[-121.00435537530487,53.4153503256733],[-121.00437294444671,53.41517081890888],[-121.00435271256586,53.41499140408831],[-121.00431536119004,53.414812950076104],[-121.00427988915477,53.41463458396648],[-121.00425771193284,53.41445564435723],[-121.00422989362374,53.41427647669655],[-121.00418489025462,53.414098824086054],[-121.00412652700246,53.413922299167474],[-121.00407192433366,53.413745932191745],[-121.00402504109688,53.413568209422344],[-121.00398003935014,53.41339055667418],[-121.00392933093269,53.413213230110976],[-121.00387855595976,53.41303646671427],[-121.00382402246309,53.412859536347206],[-121.00373297095528,53.41268781871218],[-121.00363024258519,53.412518970452666],[-121.00351972822286,53.41235204995613],[-121.00340337597278,53.412186564062274],[-121.00329293037244,53.412019080125674],[-121.00319020540067,53.411850231432666],[-121.00310103861591,53.41167859223878],[-121.00301771230545,53.41150550932458],[-121.00294391928685,53.41133170392687],[-121.00289133778782,53.411154297736104],[-121.00292012501932,53.410975819160136],[-121.00292829995603,53.410795908236345],[-121.00286028118799,53.410621222294864],[-121.0027865563003,53.41044686246273],[-121.0027186056788,53.41027161320804],[-121.00266595945988,53.41009477003099],[-121.00264191162022,53.40991575071712],[-121.00266512539743,53.409736480785575],[-121.00268646018313,53.40955712287941],[-121.00264341415603,53.409378994036906],[-121.00255425483769,53.40920735423069],[-121.00244570026936,53.40903994828679],[-121.0023293614004,53.4088744610814],[-121.00222282133643,53.4087060164615],[-121.00213171941344,53.408534851524685],[-121.00203679268981,53.40836408271682],[-121.00192045729726,53.40819859505839],[-121.00179640372555,53.40803447182628],[-121.0016820169733,53.40786849973464],[-121.00157930753284,53.40769965825645],[-121.001462975776,53.40753417009831],[-121.00130557460761,53.40738043164161],[-121.00115790626265,53.4072242900267],[-121.00101627605699,53.407065041882525],[-121.00091545204693,53.40689626986847],[-121.00089335915722,53.40671677470689],[-121.00092221777498,53.40653774197108],[-121.00096228846562,53.40635973773183],[-121.00099484000468,53.406181417296125],[-121.0010443085253,53.40600380820847],[-121.00111606697227,53.40582938250267],[-121.00119896995417,53.40565654843963],[-121.00129113767053,53.40548522695924],[-121.00140351618174,53.40531868145382],[-121.00151408008381,53.40515150253107],[-121.00158952743091,53.40497779774018],[-121.00165570993987,53.404802571321156],[-121.00176076550989,53.40463403756446],[-121.00191692063125,53.40448057184378],[-121.00207851462844,53.404329014715685],[-121.0022437337759,53.404178732871394],[-121.00241076542821,53.40402908407169],[-121.00259754011324,53.40388813544205],[-121.00283026033374,53.40377381626482],[-121.00308683454378,53.403681280430874],[-121.00336040904563,53.40360462441571],[-121.0036237691102,53.403518545056485],[-121.00383189660738,53.403388599703135],[-121.00406803717316,53.4032772342228],[-121.00432467259569,53.40318413249371],[-121.0045881598464,53.40309694245153],[-121.00485655459639,53.4030161303972],[-121.00513651123124,53.40294928025117],[-121.00534987249557,53.40282291261931],[-121.00547693167115,53.40265979299693],[-121.00560211031465,53.40249659425678],[-121.00580129433467,53.40236233492086],[-121.00604609062603,53.40225751087257],[-121.00630963544278,53.402169753774956],[-121.00656289848324,53.40207313683062],[-121.00670445570977,53.40191511737432],[-121.00689483288294,53.40177543724072],[-121.00708339620276,53.40163511463934],[-121.00721769753774,53.40147454380265],[-121.00732634875054,53.4013072802308],[-121.00743869222588,53.40114072869587],[-121.007591254397,53.40098541671036],[-121.00779586368327,53.40085307143988],[-121.00797360820793,53.400708358116134],[-121.00811522139261,53.40054978260981],[-121.0082477027745,53.400388568388756],[-121.0084380020822,53.40024943995436],[-121.0086565788234,53.40012666438228],[-121.00886998104508,53.39999973600189],[-121.00909202839819,53.39986361984508],[-121.00929844111582,53.39973190510516],[-121.00949403994801,53.39959580984145],[-121.00967902558945,53.39945364447616],[-121.00984963711909,53.39930526913236],[-121.01008903377318,53.39919795600952],[-121.01030934695407,53.39907637372076],[-121.01051568619178,53.398945211091245],[-121.0107003333017,53.39880584226822],[-121.01081090897745,53.398638099919914],[-121.01088241592069,53.39846533946553],[-121.01104744795371,53.398316162464944],[-121.01115587627184,53.39815057583784],[-121.01116965158396,53.397970899886786],[-121.01115510284308,53.397791167115514],[-121.01116699870136,53.39761141225169],[-121.01115225163653,53.397433351203404],[-121.01105939114001,53.397260995805006],[-121.01089387854513,53.39711198687299],[-121.01081183186274,53.396944011291026],[-121.01076111447797,53.396766686236994],[-121.01069315167864,53.396591449321186],[-121.01061170330186,53.396418449355785],[-121.01052059386161,53.396247289826256],[-121.0104178783872,53.39607844608887],[-121.01030744714166,53.39591096736184],[-121.01018916752606,53.395745971106905],[-121.01006699872242,53.395581925465855],[-121.00992926515035,53.39542172734695],[-121.00976778869402,53.395270630614476],[-121.00958652540508,53.395127130173655],[-121.00939533646137,53.39498770482741],[-121.00920206998521,53.39484988094491],[-121.00901477469424,53.394709495312306],[-121.00879743467321,53.39458357033577],[-121.00852875744407,53.394508272435615],[-121.00823797105437,53.3944601216791],[-121.0080119901897,53.39434337366206],[-121.00786440853966,53.394186685113745],[-121.00774030724652,53.394023121237936],[-121.00760044297675,53.39386507633011],[-121.00753639014007,53.393688868822196],[-121.00747421592729,53.39351274914501],[-121.0074349243307,53.39333477854011],[-121.00745428444557,53.39315590263411],[-121.00745666642365,53.392976870516975],[-121.00744965173116,53.39279745262145],[-121.00743693392879,53.39261835215843],[-121.00741864583249,53.392438451644686],[-121.00741351048532,53.39225911264146],[-121.00740844208413,53.39207921041172],[-121.00739391249873,53.39189946772974],[-121.0073641508373,53.39172077418796],[-121.00732103635302,53.391543208717856],[-121.00727034017775,53.391365881714194],[-121.00721199550293,53.39118935637808],[-121.0071651910336,53.39101106970605],[-121.00706022451766,53.39084549614536],[-121.006893071935,53.39069472154957],[-121.00669970060102,53.390558010800476],[-121.00646992001344,53.39044166494144],[-121.0062442970099,53.390322124107975],[-121.0060548871808,53.39018388951414],[-121.0058876080487,53.390034230939435],[-121.00571630657586,53.38988664914454],[-121.00563301264378,53.389713566244424],[-121.00560533867473,53.389533270351805],[-121.00544250553357,53.389393905343496],[-121.00518390632156,53.38929768345682],[-121.00496030484983,53.389177101619076],[-121.00477311480876,53.3890361546576],[-121.00467043997631,53.388867305372905],[-121.00464075788875,53.38868805661765],[-121.00466945647244,53.3885101299578],[-121.00473553334531,53.38833546364494],[-121.00487349209416,53.38817561559838],[-121.0050040680528,53.38801432504123],[-121.00518002080571,53.38786842746941],[-121.0053775236468,53.387731853954136],[-121.00554368224611,53.38758890446223],[-121.00560988682223,53.387413120103865],[-121.00568152775323,53.387239253293465],[-121.00576806725384,53.38706712670778],[-121.0058360820087,53.38689198435766],[-121.00594282223605,53.38672464190334],[-121.00602929269884,53.386553078296146],[-121.00613240639957,53.3863844602344],[-121.00623189438652,53.386214566666],[-121.00630708973954,53.38604252905341],[-121.0063283300989,53.385863731657444],[-121.00640378992959,53.385689458986754],[-121.00649401397028,53.38551805287048],[-121.00655826669863,53.385342743124134],[-121.00655326862486,53.38516228598244],[-121.00636262041591,53.38503466316494],[-121.00611008043057,53.38493532750796],[-121.00585312031276,53.38484142079715],[-121.0056024614431,53.38474216301987],[-121.00534738238623,53.384648334178465],[-121.00510081476762,53.384546444044815],[-121.0048793830747,53.38442370578867],[-121.00466787750227,53.384296892106725],[-121.0044544944768,53.384169999052965],[-121.00423695689116,53.38404630007289],[-121.0039948838898,53.383938414977905],[-121.00372915852383,53.383854799265436],[-121.00343772014173,53.38381278715585],[-121.00314119769367,53.383781782187675],[-121.00284708467453,53.38374639450961],[-121.00254896898642,53.38372879783771],[-121.00224731364865,53.38372509437075],[-121.0019465400757,53.383729854737375],[-121.00164422043709,53.38373173714211],[-121.00135928531648,53.383682688949925],[-121.00111072248843,53.38358182000493],[-121.0008579378279,53.383484708092205],[-121.00058136520329,53.3834129913167],[-121.00028946838724,53.38337487819447],[-120.99999511376316,53.38335743323024],[-120.99946101882468,53.38332372553741],[-120.99917639354057,53.38336734287557],[-120.9989143304364,53.38342762325427],[-120.99861839436602,53.38337585908433],[-120.9983278291446,53.38332656638468],[-120.99804128788068,53.38327519620171],[-120.99776458845896,53.383204590349095],[-120.99752649420905,53.38309516955808],[-120.99732936490717,53.38295883915634],[-120.99716804741767,53.38280717015529],[-120.9970244368306,53.382649508025025],[-120.9968572197251,53.3824998362135],[-120.99667404378086,53.382357353592795],[-120.99650079420441,53.38221079635075],[-120.99635329791036,53.38205409261195],[-120.99621955098671,53.381892918341165],[-120.99609164094201,53.38173030058694],[-120.99596567751881,53.381567198597445],[-120.99589008748372,53.38139330719626],[-120.99586990797377,53.38121388801434],[-120.99586864735997,53.38103414257874],[-120.9958787241095,53.380854317602775],[-120.99589068039205,53.38067456279394],[-120.99589317679971,53.380494975558456],[-120.99589567318608,53.380315388307146],[-120.99591514230325,53.38013595888221],[-120.99598687791612,53.379961534085865],[-120.99607719911762,53.379789572182574],[-120.99614893346923,53.3796151472591],[-120.99625206974228,53.379446537189736],[-120.99636627612615,53.37928008239839],[-120.99647122323076,53.37911210549582],[-120.99653557387117,53.378936246347116],[-120.9965380674257,53.37875665894598],[-120.996534925571,53.378576834188806],[-120.99653366219775,53.378397088529304],[-120.99653622169028,53.37821694681232],[-120.99653495832231,53.378037201121266],[-120.99652611528163,53.377857693229],[-120.996539879348,53.37767858041448],[-120.99665407979994,53.377512125203445],[-120.99676089975907,53.37734422701217],[-120.99682148968785,53.3771682093373],[-120.99687463149517,53.37699132091494],[-120.99692408310477,53.376813711029904],[-120.99697910347459,53.376636892697796],[-120.99704338119614,53.37646159627123],[-120.9971428164562,53.37629226375019],[-120.99729170283221,53.37613568740573],[-120.99741871270457,53.37597257427377],[-120.99749781540675,53.37579958208986],[-120.997569603023,53.3756246017006],[-120.99761153679681,53.375446675022125],[-120.99761214723974,53.37526700819599],[-120.99759196332901,53.37508758876997],[-120.99754890813584,53.374910009385914],[-120.99749639483355,53.37473259768908],[-120.99744569325098,53.37455582826283],[-120.99746891072002,53.3743765473379],[-120.99748273558238,53.37419687983966],[-120.99745873027071,53.37401785637005],[-120.99738120235969,53.37384444938665],[-120.99726310236241,53.37367887531248],[-120.99715466039582,53.37351146166687],[-120.9971116746041,53.37333332771759],[-120.99707814729561,53.37315502605283],[-120.99699297672511,53.372982419803066],[-120.99686898012885,53.37281884290945],[-120.99671367067663,53.372664611696344],[-120.99657995218956,53.3725034370921],[-120.99649471902515,53.37233138470092],[-120.99647641945717,53.37215204394239],[-120.99650903056715,53.371973158566654],[-120.99659926549221,53.371801758806505],[-120.9967298883232,53.37163992177013],[-120.99686775682244,53.37148063597374],[-120.99701481501755,53.37132342622818],[-120.9972245500706,53.371194678042414],[-120.9975120357041,53.37114221329571],[-120.9977514366533,53.37103380603202],[-120.99792372027659,53.370886642308534],[-120.99798241794255,53.37071054439489],[-120.99807452227435,53.370539222500824],[-120.99819970113107,53.370375465787816],[-120.99834480647786,53.3702187294975],[-120.99848635340484,53.3700601630967],[-120.9985944936157,53.369896811665576],[-120.99864023942204,53.36971848801635],[-120.99871751428151,53.36954485219964],[-120.99879854355345,53.369371383414105],[-120.99889802093713,53.36920149456658],[-120.99906311364968,53.369051214573304],[-120.99918828424121,53.36888745670073],[-120.99924684094933,53.36871247547589],[-120.99917327134365,53.36853754665368],[-120.99905323419243,53.3683724580664],[-120.99891167665896,53.36821375869052],[-120.99881101998878,53.36804442744101],[-120.99869681950922,53.36787789499011],[-120.99856887653924,53.36771583305713],[-120.99842738895725,53.367556578781205],[-120.99828382564898,53.367398916995676],[-120.99818129548993,53.36722950605943],[-120.99802975774527,53.3670754343175],[-120.99785274342139,53.36692928298047],[-120.99771508405698,53.36676962276975],[-120.99776191167471,53.36659807424813],[-120.9979235082154,53.36644540248544],[-120.9980792699366,53.36629417392115],[-120.99816022966259,53.36612125956637],[-120.99831269921509,53.36596595682649],[-120.99850113083136,53.365825645374755],[-120.99868587238572,53.365684612241836],[-120.99886718861379,53.365540631411626],[-120.99905554950915,53.36540088226567],[-120.99921874889189,53.36525052270184],[-120.99932197058226,53.36508079129929],[-120.9994392842319,53.36491951475174],[-120.99969757406552,53.36482650032776],[-120.99998984960197,53.3647809715493],[-121.00046707319395,53.36460844927036],[-121.00072858214365,53.36452006959284],[-121.00099176912912,53.364433440144545],[-121.00125488915421,53.364347364385345],[-121.00148564850477,53.36423185804898],[-121.00173178031116,53.3641299092183],[-121.00197468647148,53.36402333185355],[-121.00221293567682,53.363892407359266],[-121.00220178449521,53.363763907017415],[-121.00198802892724,53.36362520005384],[-121.00189119338292,53.36345546586917],[-121.00183686415076,53.36327742178662],[-121.00184302387656,53.3630985452336],[-121.0019768239504,53.36294132977165],[-121.00216582685607,53.36279598806483],[-121.00221605495788,53.362627393705054],[-121.00211754168721,53.36245590882884],[-121.00198228969515,53.3622918622631],[-121.00195573034398,53.36211834708685],[-121.00210635954917,53.3619624058748],[-121.0023606043451,53.36187146246541],[-121.00266038631423,53.36184196706488],[-121.00295954312683,53.36184949726811],[-121.00326240772297,53.3618734718681],[-121.0035380248592,53.361824988246745],[-121.00366805911906,53.36166761277675],[-121.00373818586291,53.36149030452406],[-121.00389753106917,53.36134034346877],[-121.00410551625657,53.361209831752824],[-121.00431866923344,53.36108346340151],[-121.0045318867612,53.3609565403826],[-121.00473624543066,53.36082475206783],[-121.00493019881615,53.3606852302501],[-121.00501971177307,53.36051941063513],[-121.00493051452486,53.36034887708949],[-121.0047793080964,53.36019202415363],[-121.0046180509599,53.36004036356096],[-121.00444694171298,53.35989222349791],[-121.00428562108944,53.3597411167101],[-121.00414407284732,53.359582422886774],[-121.00401425543113,53.35942029609497],[-121.00386674514127,53.35926415419738],[-121.00369168789634,53.35911752676771],[-121.00351448878509,53.35897305505649],[-121.00335920498281,53.358818840409384],[-121.0032333477667,53.358655190004185],[-121.00315622366826,53.35847842404984],[-121.00327579919798,53.35832959366246],[-121.00345465956056,53.35818999629342],[-121.00350043898726,53.358011106531215],[-121.0035180547619,53.357831031678714],[-121.00352809331514,53.357651204010246],[-121.00350782681387,53.3574723383142],[-121.00349707979377,53.35729275906486],[-121.00359074442399,53.35712374576742],[-121.00379689912876,53.356992592098486],[-121.00399366394576,53.35686105202124],[-121.0041299114523,53.356698879443584],[-121.00432305157857,53.35656606331613],[-121.00457476421633,53.35646434519197],[-121.00477675955972,53.356336384300995],[-121.00488362510335,53.356167368515244],[-121.0049292635712,53.35598959552305],[-121.00494311746759,53.35580936231601],[-121.00499237751602,53.3556328647301],[-121.00511017391082,53.35546711184387],[-121.00528585876528,53.3553223203496],[-121.00549206518834,53.35519060934601],[-121.00570175984261,53.355061290915586],[-121.00586094108239,53.35491244425456],[-121.00593829169854,53.354737684982794],[-121.00600994258198,53.35456325197165],[-121.00607602646444,53.3543880277307],[-121.00611421525659,53.35420937505171],[-121.00611478913827,53.354029706307585],[-121.00608894706203,53.35385004956111],[-121.00599768271431,53.35368111801228],[-121.00580890218548,53.353538973763335],[-121.00566858306262,53.35338594774106],[-121.00565226269411,53.353205568192486],[-121.00568307551319,53.35302548216411],[-121.00566441303047,53.35284893933897],[-121.00556188860187,53.35267953354951],[-121.005457421876,53.35251060296439],[-121.00536642830403,53.352339435816795],[-121.00526967089223,53.352169149156495],[-121.00514570341136,53.35200557921371],[-121.00505632412616,53.35183672576685],[-121.00504945917957,53.35165618661611],[-121.00505191483668,53.35147659663016],[-121.00504686142253,53.351296690707805],[-121.00501713838901,53.35111799302643],[-121.00495309445847,53.35094234366298],[-121.00487557922294,53.35076893065391],[-121.0048038948088,53.350594082749396],[-121.0047436728193,53.3504180369148],[-121.00469297115193,53.35024125952197],[-121.00464810002515,53.35006304726929],[-121.00460698367559,53.34988499295833],[-121.00457531943924,53.34970677927525],[-121.00455511812511,53.34952735877376],[-121.00455382141512,53.3493476106326],[-121.00455252471619,53.34916786247536],[-121.0045361449473,53.34898803667771],[-121.00451594414447,53.34880861610553],[-121.00449567664143,53.34862975873513],[-121.00447742018955,53.34844985389236],[-121.00446472840142,53.348270749220475],[-121.00445210253167,53.34809109025004],[-121.00443190251656,53.34791166958384],[-121.00440412845249,53.347732487217954],[-121.00434578931659,53.34755651992225],[-121.00424321725083,53.347387666832965],[-121.00413092835956,53.34722121689391],[-121.00404383842806,53.34704908877225],[-121.00397404085508,53.34687431904099],[-121.00390430967651,53.34669899497242],[-121.00382486263508,53.34652606513642],[-121.00372611506171,53.346356815232404],[-121.00360806716299,53.34619124521331],[-121.00348807734694,53.34602615033965],[-121.00338557826294,53.34585674210088],[-121.00334252745844,53.34567917119568],[-121.00341203127992,53.34550689496443],[-121.00356809507842,53.345352296201035],[-121.00373126654692,53.345201374675376],[-121.0038835740791,53.345046617472065],[-121.0040360789872,53.34489018827614],[-121.00425197377683,53.3447718084829],[-121.00452536331812,53.34469346685663],[-121.00478835289364,53.34460738244166],[-121.00504220105799,53.34450295241778],[-121.00514704681207,53.34435068904121],[-121.00500949935751,53.34419048120791],[-121.00478446026693,53.34406813665989],[-121.00456310948745,53.343946512877146],[-121.00435401606282,53.34381698580884],[-121.00416890748599,53.34367610480839],[-121.00400583881954,53.343524363150934],[-121.00390689799815,53.34335679387124],[-121.00389816351878,53.34317616595568],[-121.00395693031298,53.34299894518092],[-121.00410695308716,53.342847469978494],[-121.00432732118357,53.34272309717109],[-121.00452803786743,53.34258946931204],[-121.00470018156608,53.342442293709304],[-121.00486514878104,53.342292003678104],[-121.00503735694245,53.34214426434219],[-121.00518958178023,53.341990068453846],[-121.00525739462122,53.341816031119436],[-121.00531783114795,53.34164056925957],[-121.0054465170574,53.341478078044055],[-121.00559705958877,53.34132213081768],[-121.00574746944089,53.34116729195622],[-121.00590344176517,53.341013253017756],[-121.00606658807534,53.3408623279615],[-121.00622973427812,53.34071139372994],[-121.00637289663479,53.34055401210522],[-121.0064924564701,53.340388889853536],[-121.00659545538946,53.340220267560994],[-121.00668008363068,53.34004750309039],[-121.00672569706926,53.33986972798656],[-121.00677493102664,53.339693228265865],[-121.00689442001992,53.339528668764],[-121.0070503152664,53.339375191420196],[-121.00720446629101,53.33922050846314],[-121.00735311753421,53.3390644798912],[-121.00751082035357,53.33891163513751],[-121.00767576373065,53.338761340942234],[-121.00784975856985,53.3386142304977],[-121.00807137315746,53.33849496269702],[-121.00835237523592,53.33843153434459],[-121.0086364014109,53.33837440502262],[-121.00887907490417,53.338268375426054],[-121.00906366096538,53.3381273242538],[-121.00917395146094,53.337960695945924],[-121.00922705879874,53.33778323535943],[-121.0092464525872,53.33760379105237],[-121.0092545852343,53.337423882181184],[-121.00930749330708,53.33724809331172],[-121.00941603641701,53.33708026827879],[-121.00952826619724,53.336913155239706],[-121.00960905680923,53.336740784866386],[-121.00964158373698,53.336561901701685],[-121.00966841484373,53.33638333607641],[-121.00972889200511,53.33620730827161],[-121.00980056249026,53.33603230814278],[-121.00987585198838,53.33585859221988],[-121.0099548950791,53.33568502510075],[-121.01003762387958,53.335512178945955],[-121.01012960231742,53.33534084473756],[-121.0102508756601,53.33517692363322],[-121.01041579465644,53.33502662535609],[-121.01058601143635,53.33487935284046],[-121.01071465534181,53.3347168643152],[-121.01081581375344,53.33454759576924],[-121.01092615472245,53.33438040230934],[-121.01103468400554,53.33421257555791],[-121.0110707577796,53.33403552135509],[-121.01099519066565,53.33386163547275],[-121.01086549286721,53.333698950859194],[-121.01073767255215,53.33353634498173],[-121.0106312892816,53.33336790167027],[-121.01054607789482,53.33319585601568],[-121.01048391461333,53.33302028695764],[-121.01042369506862,53.33284423351885],[-121.0103672946216,53.332667783539115],[-121.01032623679178,53.33248917537435],[-121.01031171530317,53.3323094277756],[-121.01035529616173,53.33213268921219],[-121.01047843581097,53.33196884650974],[-121.01063254717859,53.3318141585353],[-121.01080281593306,53.33166633118331],[-121.01099460625385,53.33152783608497],[-121.01118814031057,53.331390528130555],[-121.01137811848183,53.33125139028056],[-121.01156628471358,53.33111161894919],[-121.01174378796556,53.330966340748994],[-121.01191223978121,53.33081786963958],[-121.01207894541925,53.33066821083009],[-121.01224927121449,53.33051981809078],[-121.01245687935894,53.33039097052558],[-121.01303879763546,53.33007905869866],[-121.01313007390779,53.32763737766385],[-121.0048010087032,53.32613192098167],[-121.00010388225371,53.32491205556288],[-120.99812893490899,53.323380006277034],[-120.99813385088812,53.3216882570749],[-120.99659844279562,53.32026679667177],[-120.99536702070634,53.31996832742897],[-120.99390177705959,53.319226465070365],[-120.99274272954122,53.31654439915016],[-120.99124393214159,53.315198521601594],[-120.9871318264602,53.31477772665343],[-120.98572170092699,53.31370226242645],[-120.98513421323024,53.30799888835838],[-120.98324499463861,53.30702385180509],[-120.97691071689596,53.304509450096724],[-120.97598045906217,53.30282856506842],[-120.97629803638985,53.29776428375855],[-120.97676190820115,53.292736515486936],[-120.9771296524557,53.2910426649518],[-120.97940428442612,53.28776452736009],[-120.97448776635255,53.282612619321746],[-120.97624261613947,53.27762551482514],[-120.97627568443474,53.276589675916],[-120.96768618886082,53.27836768454969],[-120.96498800482287,53.27812447411363],[-120.96208556612068,53.27719525352489],[-120.95941682502863,53.277084575114635],[-120.95083729025951,53.27902299487773],[-120.95032472993842,53.2799053208636],[-120.9457762628533,53.28101770196503],[-120.9391320952084,53.28288958612274],[-120.93561931879125,53.28428169278531],[-120.93278661223034,53.285781403881025],[-120.93070933737175,53.28751441782314],[-120.93072482104813,53.28813733456719],[-120.93172693351782,53.2913335772234],[-120.93463041244097,53.29388714861078],[-120.93944865390824,53.29694300345075],[-120.94110745141248,53.29882099900886],[-120.93627376806562,53.30090709389989],[-120.93095575336103,53.30225290545569],[-120.92268940340604,53.30441464725941],[-120.91880046304182,53.30615527683244],[-120.91414836555538,53.30709535545066],[-120.91059615713904,53.30591971210804],[-120.90530090315828,53.30257707137162],[-120.89981741288653,53.299924148900494],[-120.87995593572536,53.299351192733525],[-120.87811382735673,53.29701837511626],[-120.87432222143997,53.2928686139334],[-120.867398602657,53.28845168058016],[-120.86087339371512,53.28596956031592],[-120.85400239553161,53.28595450884366],[-120.84666077486872,53.28633646589936],[-120.84282153507144,53.28470131644295],[-120.83344461272418,53.28275285341829],[-120.82848020935961,53.28243298093601],[-120.8153412787644,53.28375397397772],[-120.80714224716293,53.28448689914986],[-120.80439492448805,53.278042582436164],[-120.80039748336753,53.27172301636122],[-120.79466568672892,53.264207607637545],[-120.78881494452231,53.261204818946105],[-120.77875830435404,53.25811297422093],[-120.7683355075092,53.25519108481407],[-120.76070219619297,53.25431551294853],[-120.75792937706544,53.25432649470572],[-120.75280589297229,53.255434226582814],[-120.74548926486598,53.25769934170088],[-120.74226759509685,53.25937464447085],[-120.73735292253714,53.26242109545427],[-120.7352832949626,53.264999549237004],[-120.73101666488385,53.26610686597198],[-120.72311546576704,53.26808126616526],[-120.71560547733729,53.26897219401078],[-120.71214100052282,53.26716105062752],[-120.7068552571565,53.26329783248027],[-120.69995894724619,53.2596706672675],[-120.69313850553216,53.25592847386119],[-120.69064422341509,53.253366314887366],[-120.68449874942222,53.25001893526254],[-120.67691985697525,53.24491022934825],[-120.67344092813225,53.239664168266145],[-120.67178227574063,53.23682113360805],[-120.67060973842965,53.23442240109647],[-120.66522876876229,53.2295869352177],[-120.65977223739611,53.22737968190713],[-120.65202165869977,53.22415446806657],[-120.64351620167582,53.22024452196074],[-120.634995424694,53.21599330946712],[-120.62638761696813,53.212202058672986],[-120.61806918834202,53.20863113233548],[-120.61087412701715,53.20334328536866],[-120.60283747121177,53.197826591540974],[-120.59221871888215,53.19169732574339],[-120.58781471736822,53.18897093596365],[-120.58076621161376,53.18927506047958],[-120.57421707751148,53.19072537043344],[-120.56822652397976,53.190519407062624],[-120.55918042669143,53.189861285607385],[-120.55124925510161,53.1867429247635],[-120.54581971521432,53.18487607598207],[-120.54233729645235,53.178886015721396],[-120.5404908910253,53.174206372181544],[-120.54057228963772,53.17066812577],[-120.54210561217452,53.16101190365096],[-120.53995376204371,53.15381659131023],[-120.53832281067756,53.15096890281284],[-120.53249881320889,53.14824066542282],[-120.5263889647906,53.14540445747242],[-120.52308937533648,53.149413921364484],[-120.52056424740815,53.15347329470969],[-120.51603133712356,53.15794231926725],[-120.51254234640315,53.162005691632714],[-120.50932188827322,53.165385845430954],[-120.5047564377638,53.16499996175401],[-120.48999977579764,53.1626376588545],[-120.47352886252554,53.15937004755062],[-120.4707696844726,53.158857707131325],[-120.4696109163248,53.15702949324633],[-120.4656898441216,53.15161720062951],[-120.46079232050036,53.145062598911416],[-120.45676092398368,53.13901869664365],[-120.45446761292611,53.13519552032072],[-120.45349010415396,53.131766766785105],[-120.45535883650263,53.12668196841566],[-120.45732472396423,53.12016484015962],[-120.45769217928364,53.11873623590527],[-120.45302621516699,53.11720994471486],[-120.44514694358502,53.11728268996732],[-120.43705730057367,53.11689879898301],[-120.42097831162921,53.110362766345276],[-120.41820062823379,53.107514863102146],[-120.41732438184032,53.10300410743055],[-120.41606537389583,53.09741364493472],[-120.41570117462646,53.084020959184485],[-120.4157558832078,53.07325501514711],[-120.4223472283608,53.065246516184544],[-120.43388712322522,53.058821434172266],[-120.4433220919037,53.049438524586584],[-120.4498142660667,53.04074414761551],[-120.45414583773189,53.03376459285127],[-120.4574931690191,53.024215381538006],[-120.45725638322341,53.0159410785913],[-120.45580101088828,53.0111446893542],[-120.44450883714619,53.00803053083985],[-120.44335477979303,53.0058630081444],[-120.442665498624,53.0020927309927],[-120.44763804618199,52.99339871277767],[-120.44693193057597,52.99330187930123],[-120.44647582731466,52.99323988854425],[-120.44601906665541,52.99318292726313],[-120.4455634047993,52.993117581788795],[-120.44510957339833,52.993038266833125],[-120.44467186924835,52.99295016231597],[-120.44423387431307,52.99286429028717],[-120.44378107110734,52.99277715972873],[-120.44334505569532,52.99267619963044],[-120.44292487546086,52.99256868445482],[-120.44250645347867,52.992447763089324],[-120.44209066825559,52.99230673320979],[-120.44168984074958,52.99216585089519],[-120.44128894329874,52.99202552126574],[-120.44088936595449,52.99187513676192],[-120.44050401543754,52.99173047642298],[-120.44010488285544,52.991576738068204],[-120.43973705405057,52.99141268044763],[-120.43937157200983,52.99123073986237],[-120.43902192623713,52.991042245183955],[-120.43870424384494,52.990838400608965],[-120.43843421134311,52.99061377058026],[-120.43816520802257,52.99038131159486],[-120.43791174770607,52.99014453327435],[-120.43764165115374,52.98992045539575],[-120.43729151059227,52.98973586959123],[-120.4369254675122,52.98955838945117],[-120.4365757725099,52.989370450324266],[-120.43625811434036,52.98916659895458],[-120.4359727859064,52.98894460149249],[-120.43570387927612,52.98871158260191],[-120.43546620268093,52.9884688003383],[-120.43530564319049,52.98820887615923],[-120.4352677960322,52.98792664788767],[-120.43524460968527,52.98764680352028],[-120.4352520638956,52.987361664630285],[-120.43524346540308,52.98708475818773],[-120.43525099219401,52.986799065144496],[-120.43524246766546,52.986521595614704],[-120.43521928225152,52.986241751007505],[-120.43518136357464,52.98596008537119],[-120.43512863808928,52.98567716168503],[-120.43507547493333,52.98539758014884],[-120.4349915999688,52.985123855955],[-120.43487759982682,52.98485152083007],[-120.43474776975633,52.9845857379445],[-120.43457249751911,52.984323982192045],[-120.43439737279584,52.98406111802179],[-120.43422225141028,52.98379824461364],[-120.43406237715594,52.98353328681055],[-120.43391782362647,52.98326568167879],[-120.43378859055954,52.982995429273736],[-120.43370487516006,52.982720586718564],[-120.43365201697462,52.9824387788769],[-120.43365882210443,52.98215866147064],[-120.43372528702648,52.98188025236305],[-120.43384994758189,52.981614704117206],[-120.4340481923364,52.98135882434257],[-120.43426131307137,52.981103648240804],[-120.43445969948294,52.980846650641254],[-120.43462854628939,52.98058657356013],[-120.43478317278561,52.98032076100005],[-120.43493735784843,52.98005829936282],[-120.43506259147628,52.97978828132009],[-120.43517367697454,52.97951198282459],[-120.43529890749275,52.97924196444241],[-120.43548196185574,52.978987612091444],[-120.4357232786529,52.978745574335946],[-120.4359935426918,52.978511083061406],[-120.4362490001551,52.9782753243427],[-120.43647550502718,52.97803201814993],[-120.436673204131,52.97778004758726],[-120.4367984200269,52.97751002733157],[-120.43687951510975,52.97723399051733],[-120.43696119488463,52.97695348535939],[-120.43704214141641,52.97667856540193],[-120.43712315953086,52.976403091281234],[-120.43720432419404,52.97612649106141],[-120.43727126954637,52.97584416476427],[-120.43733740810576,52.97556798669049],[-120.43740427907164,52.97528621428603],[-120.4374701230672,52.97501227017005],[-120.43752167684747,52.97473314514983],[-120.43757330257108,52.97445346599723],[-120.43761012423712,52.974172529087575],[-120.43763163146446,52.973894230751746],[-120.43765394306051,52.97360979298355],[-120.43766013362527,52.97333415105598],[-120.43766749651492,52.9730495636334],[-120.4376748581348,52.97276498509819],[-120.43768236722921,52.97247928051288],[-120.43759791535102,52.97221002431346],[-120.43734376065328,52.971979390520325],[-120.43702842494851,52.97175878313535],[-120.43675808434314,52.97153748895818],[-120.43645748350212,52.971318700783485],[-120.43615681194953,52.97110047481329],[-120.43585511954363,52.97089005855352],[-120.43557035400887,52.970664715433315],[-120.43528529974776,52.97044159678368],[-120.4349186975911,52.97026970261273],[-120.43451758944681,52.97013269930565],[-120.4340993394396,52.970012300541306],[-120.4336822626124,52.96988297273007],[-120.4332657755276,52.96974916625286],[-120.43286467761693,52.96961215727622],[-120.43246416840466,52.96947067868297],[-120.43206468762675,52.969321379298954],[-120.43166462345938,52.9691765467841],[-120.43126580717771,52.969022222366526],[-120.43094656763911,52.96883175890631],[-120.43066191576467,52.968605840647676],[-120.43040789409099,52.968374628398436],[-120.43015512173466,52.96813391610783],[-120.42991759180171,52.96789111966303],[-120.42968006458058,52.967648322703795],[-120.42944195366799,52.96740999346086],[-120.42918919133795,52.96716928789457],[-120.42895123246959,52.96692984053358],[-120.42869789047134,52.96669359313731],[-120.42847561601606,52.966448710151845],[-120.42826983125067,52.9661922349559],[-120.42812485930499,52.965928534102815],[-120.42799622952028,52.96565435836595],[-120.4278818864428,52.965385364465405],[-120.42776813253208,52.96511189324544],[-120.42765423227202,52.96483954786424],[-120.42754106784827,52.964561608105654],[-120.42742724442354,52.96428869941764],[-120.42728213754289,52.96402611428229],[-120.42709058336663,52.96377537281066],[-120.42683727048923,52.96353912096437],[-120.42655318858873,52.96330928682742],[-120.42629988147144,52.96307303375918],[-120.4260930255207,52.962824936633574],[-120.42591855566035,52.962558142305916],[-120.42578833564382,52.9622962601613],[-120.42567460345239,52.96202278641037],[-120.42556131159945,52.96174597027119],[-120.42543161025503,52.96148017343667],[-120.42531773585091,52.961207816263304],[-120.4252040084212,52.96093435081472],[-120.42502947913013,52.960668108926065],[-120.42483810004944,52.96041624622689],[-120.42455339022123,52.96019142912166],[-120.42425183140232,52.959980990708715],[-120.42393445174481,52.95977710253612],[-120.42361758925999,52.95956929932027],[-120.42331714057123,52.95935047604865],[-120.42303156546966,52.959132357454195],[-120.4227309021724,52.958915212680765],[-120.42244540696255,52.95869652961215],[-120.42214386916719,52.95848608561288],[-120.42184350968,52.95826669544379],[-120.42154249221166,52.95805233569154],[-120.42124206490926,52.95783350692678],[-120.42097402277074,52.95759598186836],[-120.42070605643575,52.957357902107226],[-120.42038746609934,52.957163494543124],[-120.41998293080769,52.95705381295284],[-120.41954719118297,52.95695387973284],[-120.41910858972066,52.956875731874824],[-120.41863863532735,52.95680845789475],[-120.41818237712317,52.956750824528875],[-120.41771066311178,52.95669695145159],[-120.4172538198257,52.956643782686335],[-120.41679639009928,52.9565950803443],[-120.41633661090049,52.95656424900256],[-120.41586130117159,52.9565377406734],[-120.4154003478148,52.95651584206082],[-120.41493821938046,52.95650287801938],[-120.41447609122778,52.95648991216486],[-120.4140108770225,52.95650040245866],[-120.41354103328203,52.95654607336953],[-120.41311079794967,52.95663185103836],[-120.41266378151947,52.956731432986],[-120.41222994123432,52.95684457053434],[-120.4118249555787,52.95696582251119],[-120.41143057309735,52.957120174246164],[-120.41107726754689,52.95730345459536],[-120.41069642540121,52.95746856419455],[-120.41031682980022,52.957624182170576],[-120.40990999335487,52.9577593860421],[-120.40947657654085,52.95786916226001],[-120.40904330459406,52.95797781983736],[-120.40862357628814,52.958097236447166],[-120.40820443413298,52.95821218340333],[-120.40778396546918,52.95833718219091],[-120.4073906586441,52.958483146964966],[-120.40700964447106,52.95864936156235],[-120.40667007411584,52.95884170931401],[-120.40631680676115,52.95902442114444],[-120.40593644648726,52.95918560109349],[-120.40555615634251,52.95934622575021],[-120.40516217068424,52.95949720517582],[-120.4047826109386,52.959652242142106],[-120.40438876693345,52.95980210192102],[-120.4039946986996,52.95995364038421],[-120.40358664185,52.96009775847233],[-120.40319330434707,52.96024370907644],[-120.40280011259962,52.960388532389096],[-120.4023796065469,52.96051351172149],[-120.40192266057198,52.96057437456213],[-120.40145636742734,52.96059263444195],[-120.40099184177565,52.96059748815508],[-120.40052783228538,52.96059842597675],[-120.40006507464948,52.96058987172148],[-120.39960231719967,52.960581315648454],[-120.39872845873448,52.96073976242976],[-120.39827150510631,52.96080061109969],[-120.39781337208011,52.960870385239446],[-120.39738180882797,52.96096559545545],[-120.39698792659465,52.96111543037156],[-120.39660684820385,52.9612816110553],[-120.39621296031498,52.9614314433518],[-120.39578072360933,52.96153167872888],[-120.39534981333168,52.961621850406935],[-120.39490469340288,52.9617062893692],[-120.39445757986572,52.96180581085302],[-120.39403954299276,52.96191177100689],[-120.39360427264864,52.962034892751326],[-120.3931974884486,52.962168921521666],[-120.39283125692747,52.962335799121455],[-120.3924778279359,52.96251902310069],[-120.39211100031818,52.96269036648481],[-120.39172988876732,52.96285653123416],[-120.391363645569,52.96302340420236],[-120.39096979629274,52.96317266477178],[-120.39054871192843,52.96330150673659],[-120.39012946966581,52.96341638901405],[-120.38970904409207,52.96354020587659],[-120.38929038777822,52.96365061710931],[-120.38885685774483,52.96376031706439],[-120.38841103746438,52.96384976239192],[-120.38796506881243,52.96394031409972],[-120.38751998322054,52.96402417100515],[-120.3872673879574,52.96401042156836],[-120.38702885149932,52.96400352961119],[-120.38680577754764,52.96399287918767],[-120.38656724126274,52.96398598629588],[-120.3863281141705,52.96398356094535],[-120.386105040499,52.96397290919483],[-120.38586709537253,52.96396154686203],[-120.38564453842754,52.96394698918812],[-120.38540777553052,52.96392668988528],[-120.38518765740555,52.96389369629755],[-120.38495192932172,52.9638655770447],[-120.38473122081624,52.96383705062082],[-120.38449623219144,52.96380334543429],[-120.38427670650901,52.96376588212628],[-120.38405769903409,52.963724504428406],[-120.38384039092688,52.963670285253855],[-120.38363965378167,52.96360393505391],[-120.38342404706762,52.9635368651047],[-120.38322279448934,52.963474419230764],[-120.38300600545526,52.96341629346804],[-120.38280475406113,52.96335384687545],[-120.38258914993106,52.9632867753882],[-120.38238782525933,52.96322489104754],[-120.38218827628043,52.96314959340707],[-120.38200507633243,52.963063844998146],[-120.38182084345345,52.962985906371614],[-120.3816378673033,52.962898477413425],[-120.3814399463009,52.96281090041561],[-120.38125571555281,52.96273296089351],[-120.38105498686237,52.96266660625198],[-120.3808387975324,52.962603999535304],[-120.38062164711828,52.9625486573869],[-120.38040361003974,52.96250001683436],[-120.3801858692141,52.96244914187804],[-120.37996731496294,52.96240441448119],[-120.37974839204213,52.962362474707064],[-120.37952887797725,52.96232500251972],[-120.37929390182772,52.96229128692594],[-120.37907372354671,52.96225883591388],[-120.37885302732023,52.962230298450315],[-120.37861746055975,52.962201049497075],[-120.37838130242898,52.96217626806161],[-120.37816045916611,52.96214884629658],[-120.37793976412296,52.96212030712027],[-120.37770419859953,52.962091056338885],[-120.37746789366427,52.96206739006739],[-120.37724779131976,52.96203438160818],[-120.3770282811508,52.961996904754116],[-120.37680928865109,52.96195552247374],[-120.37659140694177,52.96190575785287],[-120.37637360032168,52.96185542986202],[-120.37615586761542,52.9618045474375],[-120.37592119298789,52.96176859111646],[-120.37570227732867,52.96172664380741],[-120.37546730751745,52.961692920569114],[-120.37524365656303,52.961686716214544],[-120.37501637883187,52.96170788224265],[-120.37478606713002,52.961751941723016],[-120.37456936797389,52.96180620231148],[-120.37437907833254,52.9618870225258],[-120.37421482851136,52.96199719050272],[-120.3740374089568,52.96209380564985],[-120.37383779847725,52.96213202165647],[-120.37360223570995,52.96210276267317],[-120.37338568948734,52.962042939204984],[-120.3731855685673,52.96197210316331],[-120.37298767046181,52.96188450298131],[-120.37280412493006,52.961801528208895],[-120.37262154199792,52.96171129717656],[-120.37245434922714,52.961617863778365],[-120.37228834184108,52.96151549421655],[-120.37213720570006,52.9614138363105],[-120.37198718153716,52.961303796312066],[-120.37183649114402,52.961198787037254],[-120.37167033878417,52.9610975335686],[-120.3715197980034,52.96099140688599],[-120.37136918332975,52.96088584296674],[-120.37120318141163,52.96078347183059],[-120.37103643973633,52.96068668539972],[-120.3708694772393,52.96059156974271],[-120.37070288519472,52.96049366583945],[-120.37053681175618,52.960391856702365],[-120.37038627630041,52.960285728525974],[-120.3702195384346,52.960188940909724],[-120.3700684119501,52.96008728026809],[-120.36991839781668,52.95997723754696],[-120.3697681616542,52.9598688745776],[-120.36963405472218,52.959751733692464],[-120.3694989126782,52.95964240262564],[-120.36934867876671,52.959534039099346],[-120.36918327960767,52.95942719708184],[-120.3690320836333,52.9593260980257],[-120.36888200019062,52.95921661689592],[-120.3687473062768,52.9591039339691],[-120.36861305639806,52.95898790885478],[-120.36849427062046,52.95886811905192],[-120.36837541083192,52.958748892081985],[-120.36825714441781,52.9586251970356],[-120.36813835946965,52.958505415783264],[-120.36801942819342,52.95838674245371],[-120.36791410669315,52.958278280281576],[-120.36786233526045,52.95821734723681],[-120.36779599111603,52.958153467750044],[-120.36772816528024,52.95810075809054],[-120.36764398850661,52.958058505793986],[-120.3675446463311,52.9580177749341],[-120.36744448867438,52.957983191882704],[-120.36734507335922,52.95794301487797],[-120.3672454353374,52.95790451773555],[-120.36714490827431,52.957872722424824],[-120.36704430666558,52.95784148998855],[-120.36694303885822,52.95781527943445],[-120.36682764314351,52.957782771298085],[-120.36672585745252,52.95776046553872],[-120.36661046205246,52.95772795718843],[-120.36651023232045,52.957693927361504],[-120.36642613107935,52.95765112015954],[-120.36634277231207,52.95760271903411],[-120.36625911609713,52.95755656075448],[-120.36617560947734,52.95750927649329],[-120.36607775229243,52.957457374530975],[-120.3659936519541,52.95741456701409],[-120.36592597776313,52.95736073930828],[-120.36589011684015,52.957292699147835],[-120.36585492368337,52.95721962807344],[-120.36584842951461,52.9571558102009],[-120.36585791654905,52.95708432316058],[-120.36588205059712,52.95701521981339],[-120.36590625809035,52.956945562433795],[-120.36591515205099,52.95687854332055],[-120.36593987762976,52.95680498094772],[-120.36596364021666,52.95673867450356],[-120.3659730534423,52.95666774146059],[-120.3660119810204,52.95659991370436],[-120.36603626158573,52.956529702255594],[-120.36606039502954,52.956460598848764],[-120.36608386078362,52.95639652633801],[-120.36612286145655,52.95632814450903],[-120.3661617149661,52.9562608707144],[-120.36620004898087,52.95619751082339],[-120.36623897576688,52.95612968297277],[-120.36624838721296,52.95605875881752],[-120.3662725935622,52.95598910132226],[-120.3662962816582,52.95592334880349],[-120.36632033963375,52.95585480827911],[-120.36634461926495,52.95578459673516],[-120.36638302727913,52.95572067380515],[-120.36640782607653,52.955646548321155],[-120.36643136437272,52.955581921684185],[-120.36644070186284,52.95551155151552],[-120.36646498228524,52.95544133099631],[-120.36648933614072,52.95537055644349],[-120.36649808064199,52.955304654209414],[-120.36650756617209,52.95523316703657],[-120.36651705167029,52.955161679859756],[-120.36651122436301,52.955092831033916],[-120.36652078333599,52.95502078982514],[-120.36651480783196,52.954953057980845],[-120.36649418718521,52.95488293357531],[-120.3664885081633,52.954812967749405],[-120.36646788644208,52.95474285226916],[-120.36644741418533,52.95467161085903],[-120.36642619975599,52.954605963315416],[-120.36640513478923,52.95453918984199],[-120.36638518088367,52.954464043424025],[-120.36634924696878,52.95439656624572],[-120.36632862686459,52.95432644178755],[-120.36630756100367,52.954259677221266],[-120.36628634818119,52.95419402070018],[-120.36628126244595,52.95411958688461],[-120.3662600485482,52.95405393928901],[-120.36623957697093,52.95398269781312],[-120.3662037183936,52.9539146576089],[-120.36615239936701,52.9538503726887],[-120.36611602169042,52.953786246377014],[-120.36607957060778,52.953722674077476],[-120.36602899309149,52.95365280415779],[-120.36599261695555,52.95358866886452],[-120.36594144686114,52.95352326685201],[-120.36589027692405,52.9534578648147],[-120.36583792136567,52.953401398652666],[-120.36575545975371,52.95334630399764],[-120.36567136905134,52.953303487208245],[-120.36557144695077,52.95326722251649],[-120.36547122855777,52.953233191713565],[-120.36537286265542,52.953185202954295],[-120.36530527068734,52.95313081179257],[-120.36520631225754,52.95308729083938],[-120.36512237085954,52.95304335666436],[-120.36502274632258,52.95300485752763],[-120.3649239367195,52.95296021934725],[-120.36483984761692,52.95291740195409],[-120.36475627696178,52.952870679515],[-120.36467329949384,52.952819489069554],[-120.36459024750613,52.952768861525264],[-120.36452280545437,52.952713352914294],[-120.36443960559637,52.952663842246864],[-120.36437260868179,52.95260498258745],[-120.3643360864935,52.95254197266396],[-120.364269089914,52.95248311294139],[-120.36418618732613,52.95243136811564],[-120.36410313786169,52.952380731279966],[-120.36403562233457,52.95232578533794],[-120.36396847705748,52.95226805135856],[-120.3639018514973,52.95220640342037],[-120.36384972311595,52.952148256384895],[-120.36379796496234,52.95208732132768],[-120.36379273556072,52.95201400429554],[-120.36375688255521,52.951945963265246],[-120.3637203618444,52.95188295312559],[-120.36368443552145,52.951815466092846],[-120.36366396814734,52.95174423300849],[-120.36365807238086,52.95167593792395],[-120.36365299154428,52.951601503881264],[-120.36363163468317,52.951536972698165],[-120.36362648036572,52.95146309267323],[-120.36362065824208,52.95139424354998],[-120.36361490968093,52.951324840398534],[-120.36360908759494,52.951255991269065],[-120.36360378507737,52.95118322821668],[-120.36361327455126,52.95111174109827],[-120.36362217090407,52.9510447219213],[-120.36364645224278,52.950974510728784],[-120.36367058641693,52.95090540757888],[-120.36369405270601,52.950841335328555],[-120.3637190016128,52.95076609320483],[-120.36372782299956,52.95069963696709],[-120.3637371638894,52.95062926680449],[-120.36374687600971,52.950556099703185],[-120.36374046074631,52.950491718495364],[-120.36372043871779,52.95041713440297],[-120.36371469131205,52.95034772227933],[-120.36369355798139,52.95028151110994],[-120.36365755832574,52.95021458696485],[-120.36363709176663,52.9501433538066],[-120.36361647819311,52.95007322869285],[-120.36356531597833,52.95000782550859],[-120.36349824972596,52.94994952821841],[-120.36343007101428,52.94989961275738],[-120.3633306783756,52.94985943216786],[-120.36321412076587,52.949835856228894],[-120.36311287437026,52.94980964225488],[-120.36299616873325,52.94978718308604],[-120.3628962571698,52.94975091604746],[-120.36279671590687,52.94971186092584],[-120.36271219048982,52.949672392887926],[-120.36262862854394,52.94962566884725],[-120.36253020063207,52.94957823163408],[-120.36246209839275,52.949527752640435],[-120.36237913020352,52.949476560474906],[-120.36229556900794,52.94942983619232],[-120.36219721547907,52.94938184467024],[-120.36211313619158,52.949339025237535],[-120.3620141898447,52.94929550150236],[-120.36193018447399,52.94925212791184],[-120.3618302015121,52.94921641398192],[-120.3617305889135,52.949177911971184],[-120.36163119837879,52.94913773886573],[-120.36153114118314,52.9491025876399],[-120.36144706311767,52.94905976772432],[-120.36134759955738,52.94902014840106],[-120.36124865473501,52.94897662401436],[-120.36116457720267,52.948933803893794],[-120.36106511419983,52.94889418432898],[-120.36096616995927,52.948850659701534],[-120.36088164795073,52.94881119032923],[-120.36082500296087,52.94878711432742],[-120.36072613397836,52.94874302653537],[-120.36064146287713,52.94870468290815],[-120.36054266904209,52.94866003199987],[-120.3604585180789,52.94861777432702],[-120.3603595751015,52.94857424918271],[-120.3602750542046,52.94853477936842],[-120.36017603802429,52.948491808091624],[-120.36007709562871,52.94844828270666],[-120.35999316867758,52.948404344752475],[-120.35989415308545,52.94836137323526],[-120.35980948349327,52.94832302900099],[-120.35971113651333,52.9482750264347],[-120.35964296492686,52.94822510873062],[-120.35956007744687,52.94817335157914],[-120.35947585364289,52.94813165615114],[-120.35937706236129,52.9480870042496],[-120.3592781965056,52.9480429152232],[-120.3591941216139,52.948000102607494],[-120.35909466262804,52.94796048135614],[-120.35901058927094,52.947917659671354],[-120.35891164940236,52.947874133292096],[-120.35882816994778,52.947826843544625],[-120.35874520944657,52.94777564876628],[-120.35866165558112,52.94772892185722],[-120.35857810189917,52.94768219488746],[-120.35847916302043,52.9476386681385],[-120.35837918674588,52.9476029512438],[-120.35827869064397,52.94757114816821],[-120.35817789788625,52.947541578969854],[-120.35806194310415,52.9475135299714],[-120.35796196628651,52.94747782165561],[-120.35786072873688,52.94745160312904],[-120.35776023337986,52.947419799608],[-120.35764420559028,52.94739230421888],[-120.35754356211609,52.94736161749317],[-120.35744291878704,52.947330930680785],[-120.35732755876136,52.947298413031376],[-120.35722639564926,52.94727163993407],[-120.35712456532484,52.94724988869466],[-120.35700742457088,52.9472307744986],[-120.35689028392216,52.94721166018583],[-120.35677195586906,52.94720148159868],[-120.35665244033798,52.94720023873379],[-120.35654838381004,52.9471952416974],[-120.35642827451211,52.947198466524966],[-120.3563087589995,52.94719722331128],[-120.35619161875697,52.94717810830312],[-120.35608874998975,52.947164175023964],[-120.35597213013918,52.947141145901035],[-120.35585499020223,52.947122030557445],[-120.3557533094019,52.94709916115115],[-120.35563720895544,52.94707222673681],[-120.35553493450851,52.947053825057054],[-120.35541883432394,52.94702689042668],[-120.35531656008041,52.94700848855682],[-120.35521599283796,52.94697724581335],[-120.35510004154594,52.94694919388897],[-120.35499999489139,52.946914037067735],[-120.35490061718636,52.94687384929113],[-120.35483289895245,52.94682057782573],[-120.35476592452532,52.94676171249351],[-120.3547294215766,52.94669869936813],[-120.354782480501,52.946637173901934],[-120.35486497224251,52.94657931053326],[-120.35493274729023,52.946519616054076],[-120.35498565721439,52.94645920746821],[-120.35503879030435,52.946397118920416],[-120.35509244232463,52.946331125388596],[-120.35514550026592,52.946269599745165],[-120.35518376684952,52.94620680601329],[-120.35522218298372,52.946142886351694],[-120.35524684716519,52.94606987976657],[-120.35527039711357,52.94600525498517],[-120.35527989943155,52.945933768313814],[-120.35528955019059,52.945861164659256],[-120.35529831008179,52.945795262877105],[-120.35532327087435,52.94572002230168],[-120.35534682170088,52.945655388555394],[-120.3553710399764,52.945585732861396],[-120.35540938044048,52.94552237607238],[-120.35543404394117,52.94544936942047],[-120.35545774172881,52.94538362759743],[-120.35549675057095,52.945315239894555],[-120.35553560963567,52.94524797809188],[-120.35560278777284,52.945192751099135],[-120.35565576992047,52.945131779205404],[-120.35572413538884,52.945067616296846],[-120.35576188103016,52.94500872729488],[-120.35580073939595,52.94494146539217],[-120.3558397472816,52.944873077557276],[-120.35586381585095,52.94480453870965],[-120.35588810642896,52.94473432885074],[-120.35589745897272,52.94466395905523],[-120.3559063661285,52.94459694019883],[-120.35591586706373,52.94452545341491],[-120.3559395647802,52.944459702522025],[-120.35596437520563,52.944385578730724],[-120.35598799795082,52.944320390781],[-120.35601228804762,52.94425018087586],[-120.35602164027964,52.944179811049715],[-120.35604593142827,52.94410959219582],[-120.35606955389535,52.94404440421879],[-120.35607905443314,52.943972917397694],[-120.35607324554428,52.943904067588285],[-120.35605324005215,52.94382948189414],[-120.35604676381249,52.94376565402729],[-120.35604154878683,52.943692336280584],[-120.35603640740815,52.94361846450748],[-120.35601521573577,52.94355280571281],[-120.35597886213624,52.94348867586975],[-120.35587993685252,52.943445137890315],[-120.35578064004869,52.943404396748555],[-120.35538035471619,52.943377300075134],[-120.35514431458289,52.94335247177672],[-120.35494141728734,52.943303380601975],[-120.35472536356131,52.94324073416953],[-120.35452536330794,52.943169856688],[-120.35434237995419,52.94308350127173],[-120.35422375238893,52.942963141902624],[-120.35410542248167,52.94284054844532],[-120.35400210536187,52.94271755207338],[-120.3538845192681,52.942589373476174],[-120.35378046089284,52.942471961790275],[-120.35366280129942,52.94234434591028],[-120.35357531597089,52.94221479852465],[-120.35347244742464,52.94208845070191],[-120.35336846507178,52.94197048459414],[-120.35325028890051,52.94184677322382],[-120.35314727369395,52.94172154206822],[-120.35306045894532,52.94158697231091],[-120.35295751977964,52.94146117801174],[-120.35288527222691,52.94132955638664],[-120.35279823572907,52.941196666340915],[-120.35274189179117,52.94105794009434],[-120.35271557118752,52.940918408564805],[-120.35268932561227,52.94077831405988],[-120.35266300535388,52.94063878249495],[-120.35262122835897,52.94050300446402],[-120.35257974868043,52.940364992447826],[-120.35253797221985,52.94022921436481],[-120.35249708718258,52.940086734377296],[-120.35244015158712,52.93995247581164],[-120.35238373560523,52.93981431224628],[-120.35232687559042,52.93967949064579],[-120.35223925008634,52.939551067972694],[-120.35215177483212,52.93942151930879],[-120.35203412855464,52.93929390156411],[-120.35193067749181,52.939172020088584],[-120.35181251326951,52.93904830706418],[-120.3517091383037,52.938925862417996],[-120.35157566756953,52.93880478559177],[-120.35145639069061,52.938689453996666],[-120.35130694575497,52.938576035209884],[-120.35117169459957,52.93846836165196],[-120.35102180433407,52.93835830236152],[-120.35087124690736,52.93825326481024],[-120.3507053825658,52.93815086338666],[-120.35055438094383,52.93804917635337],[-120.3503884444672,52.93794732849206],[-120.3502220618621,52.93784884026153],[-120.35003955586183,52.93775912694345],[-120.34985727410563,52.937667733402556],[-120.34967268937021,52.9375936571994],[-120.34947324355858,52.93751886593834],[-120.34925782165064,52.93745174134236],[-120.34905681745467,52.93738867316513],[-120.34885618478995,52.93732281666769],[-120.34865622092818,52.937251937897884],[-120.34845789376291,52.93716876310671],[-120.34829040456793,52.937078644956955],[-120.34812395649251,52.93698070772965],[-120.34794264771243,52.93688205530246],[-120.34777634984435,52.93678300059571],[-120.3475927381521,52.936701665215075],[-120.34740927699822,52.9366192036326],[-120.34721050807114,52.936539386571106],[-120.34699464990427,52.93647559978494],[-120.34679164612608,52.93642761133739],[-120.34655683889558,52.936393829919695],[-120.34633451450189,52.93637863478852],[-120.34609613956002,52.93637165983906],[-120.34585776469628,52.936364684406996],[-120.34563425115917,52.936358423744366],[-120.34539468684969,52.9363603831636],[-120.34517057858196,52.936358589514],[-120.34493391353094,52.936338771489304],[-120.34469851339477,52.93630945425459],[-120.3444784209546,52.93627750103044],[-120.34425966740459,52.93623549464652],[-120.3440414354517,52.93618957398616],[-120.34382327774469,52.936143098902136],[-120.34360541800505,52.93609438947007],[-120.34338785626613,52.93604344569147],[-120.34317126137041,52.935985245667226],[-120.34295422197108,52.93593038721822],[-120.34275301055403,52.93586898814432],[-120.34253656618662,52.93580966997588],[-120.34232004862855,52.935750905424435],[-120.34210241638694,52.935700513276785],[-120.34188530482723,52.93564621580041],[-120.34168364991287,52.935588165796574],[-120.34148363233977,52.93551782878686],[-120.34131668462295,52.93542379570235],[-120.3411678733981,52.93530589594579],[-120.341049155952,52.935186639703964],[-120.34096120228914,52.93506099624084],[-120.3408741420242,52.93492865089107],[-120.34078730492769,52.934794634481115],[-120.34071518132554,52.93466244190284],[-120.34064290816303,52.93453137517402],[-120.34057138073207,52.934394714611756],[-120.34049895964625,52.93426476474176],[-120.34044273997311,52.9341254690726],[-120.340400561883,52.933993037073755],[-120.34035957463819,52.93385166929986],[-120.34031799237192,52.933714769374276],[-120.34027700566926,52.93357340154751],[-120.34023601923883,52.933432033694295],[-120.34014903837787,52.93329913365978],[-120.34006109127156,52.93317348937934],[-120.339942382873,52.93305423186588],[-120.33977641624543,52.93295293169082],[-120.33961000389071,52.932854982180764],[-120.33944314577266,52.93276038333435],[-120.33927680995644,52.932661870389694],[-120.3391103998891,52.932563920155935],[-120.33894451098506,52.93246206476151],[-120.33879519508292,52.93234807564803],[-120.33866007038961,52.93223982435776],[-120.33852598724711,52.93212376306833],[-120.33842281618165,52.932000189273424],[-120.3383358439069,52.93186728778284],[-120.33827941057748,52.931729670795555],[-120.33829801926557,52.931590049852474],[-120.33833111567053,52.93145393302218],[-120.33837959166624,52.931314627421656],[-120.33841268640535,52.93117851948113],[-120.33843233646034,52.931031079692765],[-120.33843548967037,52.93089521037748],[-120.33843916447415,52.9307554271937],[-120.338457623351,52.93061692311046],[-120.33847719796552,52.930470046216115],[-120.33851036676096,52.9303333752255],[-120.33852882522315,52.930194871095395],[-120.33853242463584,52.93005565080103],[-120.33853624790578,52.9299147505733],[-120.33853954955781,52.92977776419312],[-120.33852895937379,52.929632805818976],[-120.33851807274095,52.92949007243391],[-120.33850644071173,52.929352932818055],[-120.33848024902498,52.92921283415837],[-120.33845383363101,52.929074415403],[-120.33844294620198,52.92893169089777],[-120.33844617424576,52.92879525845473],[-120.33844977381037,52.92865603804356],[-120.33846882715764,52.928513065900844],[-120.33847257547751,52.92837272849489],[-120.33847632377268,52.92823239107659],[-120.33847999702172,52.92809261659913],[-120.33848382028887,52.92795171620352],[-120.33847285921622,52.92780954562028],[-120.33844644471695,52.92767112674412],[-120.33840487463884,52.927534225624655],[-120.33836345368074,52.92739620750839],[-120.33829179550906,52.92726067087046],[-120.33822028783992,52.92712400827131],[-120.33811735246857,52.92699876284195],[-120.33798239414622,52.9268894023842],[-120.33780003594711,52.92679910654011],[-120.33768593750622,52.926757633481316],[-120.33758587765128,52.926723024386185],[-120.3374860418643,52.92668673528262],[-120.33738598352947,52.92665211708024],[-120.3372865947136,52.926612476896324],[-120.33718608888245,52.92658121836751],[-120.33708670041818,52.92654157801308],[-120.33698619609225,52.926510310376514],[-120.33688665909149,52.92647178682082],[-120.33678742005208,52.92643102924162],[-120.33670281488727,52.92639266788317],[-120.33660335346111,52.92635358113276],[-120.336520014838,52.926305720936185],[-120.33642114819015,52.92626217508935],[-120.3363218362295,52.92622197112896],[-120.33622066255326,52.92619573366005],[-120.33612008463051,52.9261650282296],[-120.33600360696379,52.92614142502131],[-120.33590250753574,52.92611463326131],[-120.33578603012751,52.92609102983699],[-120.3356848570926,52.92606479190539],[-120.33556897562622,52.926036720393135],[-120.33546906930145,52.926000983579655],[-120.33538498801492,52.92595870740847],[-120.3353015764747,52.92591140928939],[-120.33520271318014,52.92586785347294],[-120.33511915308814,52.92582167218954],[-120.33503589223744,52.925773247974824],[-120.33493695447136,52.9257302548831],[-120.33485406575767,52.9256790425865],[-120.3347865552595,52.92562464193863],[-120.33471949295094,52.925566881412905],[-120.33465205787003,52.92551191773268],[-120.33456954169179,52.92545791727872],[-120.33450203309935,52.925403507524535],[-120.33443459855795,52.92534854371419],[-120.33435230699371,52.92529286318416],[-120.33426941983475,52.92524165046207],[-120.33420131496071,52.925191717331515],[-120.33411835429801,52.92514105851542],[-120.33403598847349,52.925085940708314],[-120.33396788531397,52.92503599850219],[-120.33386902422471,52.924992450477795],[-120.33376859980504,52.92496062604881],[-120.33364914738254,52.924959359821585],[-120.33352842930995,52.92496758321726],[-120.3334226421521,52.92497596927251],[-120.33330080606514,52.924992574147154],[-120.33319442288094,52.92500542786039],[-120.33307303357005,52.92501868160201],[-120.33296709720963,52.92502818421306],[-120.33284585675224,52.9250403207549],[-120.3327388773434,52.92505764191675],[-120.33261763673708,52.925069778223225],[-120.33250998607384,52.9250921299865],[-120.33238859630274,52.92510538302157],[-120.33228102052736,52.925127171624766],[-120.33217396676297,52.92514504628656],[-120.33206639077757,52.925166834693066],[-120.33194425558894,52.92518567208983],[-120.33183667938333,52.925207460285854],[-120.331729027962,52.92522981133293],[-120.33162130251276,52.92525271629517],[-120.33151365205613,52.92527505820896],[-120.33140473415368,52.925306898678976],[-120.33129581608833,52.9253387390475],[-120.33120100986355,52.92537688120781],[-120.33110694864928,52.92540943847733],[-120.33099862625495,52.925436810718075],[-120.3308890362685,52.925473681506965],[-120.33078138486896,52.925496022747964],[-120.33067306204505,52.925523394687595],[-120.3305665276906,52.9255373629836],[-120.33044766996059,52.9255316256599],[-120.33033060094456,52.925512484676],[-120.33021293579458,52.92549781142167],[-120.33011072416716,52.92547938742043],[-120.32999544423097,52.9254468425652],[-120.32989375396158,52.925424513478134],[-120.3297777289855,52.92539755321467],[-120.32967372890448,52.925392532365606],[-120.32955487169909,52.92538679413979],[-120.32943422556765,52.925394459321666],[-120.32931298306039,52.92540659222169],[-120.3292071200351,52.925415528498306],[-120.32908587740312,52.92542766116423],[-120.32897889549156,52.925444978904515],[-120.32887176439809,52.92546341350719],[-120.32876403682077,52.92548631585107],[-120.3286416010526,52.925507383736516],[-120.32853573644296,52.9255163283444],[-120.32841449333264,52.92552846031798],[-120.32829369748418,52.9255372412894],[-120.32818790788022,52.92554562263692],[-120.32806785751781,52.925548818581724],[-120.32794840361504,52.92554754656944],[-120.32784440338341,52.925542524104486],[-120.32772614250665,52.92553231619852],[-120.32760728517354,52.92552657600661],[-120.32748962092327,52.92551190003],[-120.32737195675409,52.925497223935565],[-120.32726974635752,52.92547879746728],[-120.32716865519261,52.925451989259344],[-120.32705442157639,52.92541162281892],[-120.32696930579827,52.925377159324526],[-120.32686925789984,52.925342541090586],[-120.32675450343322,52.925306079239625],[-120.32665348698244,52.92527871657552],[-120.3265529181264,52.92524800295302],[-120.32643689574687,52.92522103939348],[-120.32633587970197,52.9251936764554],[-120.32621881346385,52.9251745313779],[-120.32610115066507,52.92515985401013],[-120.32599834495181,52.925145894260275],[-120.3258812038141,52.92512731179253],[-120.3257806358728,52.92509659750738],[-120.3256807399707,52.925060852365455],[-120.32558136576847,52.92502120225964],[-120.3254973702295,52.92497836499015],[-120.32539799639052,52.924938714727624],[-120.3252981011801,52.92490296925741],[-120.32519857851355,52.924864435780414],[-120.32509868245128,52.92482869907493],[-120.32499811577979,52.92479798411553],[-120.32489822123526,52.92476223830278],[-120.32478235042697,52.924734156148986],[-120.32468178420699,52.924703440917526],[-120.32456412323991,52.92468876200896],[-120.32446191599935,52.92467033309325],[-120.32434350914532,52.92466123873807],[-120.32422584841152,52.92464655949099],[-120.32410878462652,52.924627412308546],[-120.32400717460831,52.924604515179645],[-120.32389122960883,52.92457699509079],[-120.3237906644029,52.92454627909492],[-120.32369024856956,52.92451444605863],[-120.32357370829226,52.92449138453573],[-120.32347329275058,52.92445955131332],[-120.32337213118142,52.924433302772535],[-120.32325670999028,52.92440186825025],[-120.32315510096855,52.924378970382605],[-120.323039157134,52.92435144945059],[-120.32293695136319,52.92433301920688],[-120.32281988901987,52.92431387073876],[-120.32270267752921,52.92429583910698],[-120.32260106905846,52.924272940759515],[-120.32248520109688,52.924244856335825],[-120.32238471291714,52.92421357618836],[-120.32228310481369,52.92419067756518],[-120.32216649095456,52.92416817758842],[-120.32204883233386,52.924153496160656],[-120.32194603037927,52.924139532862775],[-120.3218288197386,52.92412150035877],[-120.32171116136335,52.924106818592975],[-120.3216089567546,52.92408838719333],[-120.32149308994963,52.92406030178988],[-120.32139424388622,52.92401674326227],[-120.32130921071939,52.923981712701966],[-120.32120924594457,52.92394652668399],[-120.32110928133496,52.92391134058036],[-120.32099281815721,52.9238877224858],[-120.32089173352797,52.92386091779627],[-120.32077452410081,52.923842884239264],[-120.32065746407756,52.92382373361486],[-120.32054040415962,52.92380458287363],[-120.32043820078317,52.923786150454006],[-120.3203205438141,52.92377146729507],[-120.3202028869262,52.923756784018444],[-120.32009948925888,52.92374728690455],[-120.31998355031413,52.92371975401634],[-120.31988254197857,52.92369238551468],[-120.31978183242693,52.923662783026685],[-120.31968261631064,52.923622010957224],[-120.31956712477918,52.92359113574374],[-120.31946731169589,52.92355483128855],[-120.31938213169987,52.92352091627534],[-120.31928276695741,52.92348126081447],[-120.31918332713167,52.92344216821098],[-120.31908403802774,52.92340194963813],[-120.31898422579981,52.92336564476904],[-120.31888351764556,52.92333604150647],[-120.31876825209518,52.92330348561282],[-120.31868479013733,52.92325672964896],[-120.31860088029353,52.92321332446975],[-120.31850091956079,52.92317813613493],[-120.31838557945206,52.92314614280533],[-120.31828442413997,52.92311988987076],[-120.31816736722443,52.92310073676115],[-120.31804911545062,52.923090519117174],[-120.31794332991016,52.92309889126965],[-120.31783508021914,52.92312568849276],[-120.31773966935019,52.923168287651464],[-120.31764425829034,52.92321088673168],[-120.31754884703957,52.92325348573343],[-120.31746754488096,52.923302388204384],[-120.31740050121539,52.92335647722649],[-120.31731852583381,52.92341041031946],[-120.31725133241615,52.92346561619958],[-120.31716950722573,52.923518423303136],[-120.3171023134444,52.92357362909453],[-120.31702041256429,52.92362699903186],[-120.31669909130683,52.92368171594982],[-120.31647266037696,52.923697738789954],[-120.31623070114252,52.92371806401195],[-120.31600367213751,52.92373855372962],[-120.31577529802178,52.92376909550888],[-120.31554752133277,52.923795169068015],[-120.31531922071073,52.923825155957],[-120.31509263904817,52.923842293084675],[-120.31486560883314,52.92386278060552],[-120.31462611343628,52.92386467743183],[-120.31440207225617,52.9238628252004],[-120.31416257683838,52.923864721083454],[-120.31393973152613,52.92385393243352],[-120.31372219369986,52.92380348746065],[-120.3135398989803,52.923713162801384],[-120.31335708239811,52.92362674268197],[-120.31319076728087,52.923528755272976],[-120.31308806373322,52.923402370745556],[-120.31298543614528,52.92327542318032],[-120.31286727970537,52.92315278682658],[-120.3127488249275,52.9230323842272],[-120.31259841612885,52.9229272967643],[-120.31243210548955,52.922829308241134],[-120.31224989303615,52.92273841859158],[-120.31208305999965,52.922644343324066],[-120.31190129767242,52.922550102302765],[-120.31173401873849,52.922459368415346],[-120.31155225797339,52.92236512684429],[-120.31138565285256,52.92226937068879],[-120.31120329548217,52.92217959632748],[-120.31102101305818,52.922089267676796],[-120.31083708748989,52.92201121613627],[-120.31062023518169,52.92195574361362],[-120.31040196195472,52.921910886076674],[-120.31018391414467,52.92186434825795],[-120.30996579262055,52.921818364035396],[-120.3097471474265,52.9217762931585],[-120.30951289918033,52.92173908674758],[-120.30929350686456,52.92170259971536],[-120.30907426452569,52.92166499533598],[-120.30883897023119,52.92163560614282],[-120.30861965323393,52.92159856385133],[-120.3083855565693,52.921560238255694],[-120.30816676463789,52.92151928137281],[-120.30794804854077,52.921477761146356],[-120.30772880854778,52.92144015425538],[-120.30751076606998,52.921393611470805],[-120.30729302336182,52.92134483441029],[-120.30705952789614,52.9213020384298],[-120.30683849369503,52.92127783309718],[-120.30660073302329,52.92126687331399],[-120.30637730454302,52.92126053806654],[-120.30614081693453,52.92124007894562],[-120.30592038230549,52.92121140415197],[-120.30568434425385,52.92118759331219],[-120.30546331142858,52.92116338539513],[-120.30522562719871,52.92115185989903],[-120.30500160070297,52.92114998977068],[-120.30476212012695,52.92115186652876],[-120.30452323840373,52.92114927507192],[-120.30430100864386,52.921134000426875],[-120.30406272597085,52.92112694030859],[-120.30383750176642,52.92113400341514],[-120.30359674901491,52.92114536724827],[-120.30337152463575,52.92115242946293],[-120.30313384103333,52.921140899742376],[-120.30290981468723,52.921139025632264],[-120.30267093314886,52.921136430415736],[-120.30244570866343,52.92114349085876],[-120.302207426245,52.92113642698432],[-120.3019838493183,52.92113120032468],[-120.3017455670453,52.921124135515065],[-120.30150788404113,52.92111260251054],[-120.30128385791555,52.92111072530545],[-120.30104557587325,52.921103659078504],[-120.3008084924358,52.9210876569512],[-120.3005861145089,52.921073492218234],[-120.30034963072252,52.9210530214584],[-120.30012680362898,52.92104220663732],[-120.29988852216216,52.92103513806746],[-120.29966269836903,52.92104666088957],[-120.29942134439099,52.92106249282049],[-120.29919731862113,52.921060611643576],[-120.29895903720565,52.921053541191924],[-120.29873680994208,52.92103825603949],[-120.29850197587582,52.921005495395455],[-120.29614896638438,52.921046931891915],[-120.29023016301818,52.92069691817159],[-120.28322073020483,52.921229980869406],[-120.27629937639706,52.92210645337745],[-120.27403476640254,52.92226755595138],[-120.26664346969267,52.922855800623346],[-120.25955127163479,52.92333117096378],[-120.25415721854039,52.92330067275709],[-120.24981234519129,52.92269957696943],[-120.24652890196613,52.92176976178433],[-120.24079160480107,52.919970202851395],[-120.23530991992138,52.9195961031566],[-120.23058289270777,52.91928075209569],[-120.22453173334137,52.91924693853725],[-120.21751735331073,52.92068712795092],[-120.21093032849019,52.92436456679762],[-120.20520676534976,52.927185403615255],[-120.20426293501352,52.927635779721726],[-120.19876150886579,52.92805675130887],[-120.19336626427331,52.92813755084759],[-120.18941067352364,52.927315104570525],[-120.18690540245512,52.925075675803576],[-120.18652615224094,52.924787060303785],[-120.1806816879196,52.92378250891051],[-120.1770904606114,52.923470137890476],[-120.17662883320699,52.92323755008589],[-120.1743860770838,52.92214362080175],[-120.17064722040432,52.919093756924816],[-120.16749617591847,52.915360081268844],[-120.16653387898785,52.9115872120535],[-120.16499857334205,52.90741591436758],[-120.16270093290196,52.90357321157164],[-120.1612397287914,52.900934671574085],[-120.15725868256816,52.89651331076293],[-120.15307627246156,52.89204069205163],[-120.14982621487314,52.88916042421994],[-120.14581037284735,52.88685295988595],[-120.1437414804113,52.88592607318498],[-120.14131569286015,52.8847704880479],[-120.13869055263727,52.88332770803692],[-120.13785424717925,52.88234926630599],[-120.13665824546464,52.88051232471764],[-120.1359455747684,52.87885469079408],[-120.13549258661033,52.87748103138881],[-120.1349396777323,52.876507162425675],[-120.13446982954682,52.87644768581487],[-120.13069310692529,52.87642687444432],[-120.12769034496897,52.87588582914477],[-120.12656704737547,52.8753657521457],[-120.12507564452,52.87415816347889],[-120.12265917466732,52.871970335253174],[-120.11976197131413,52.87012828917],[-120.11516348739404,52.868385210714486],[-120.11104960999941,52.86670450129802],[-120.1107611627952,52.866414517059866],[-120.10910317664053,52.864689488543355],[-120.1061294408649,52.86232930567639],[-120.1041829754482,52.86031755603251],[-120.10186346999986,52.85830498826479],[-120.09999248463099,52.85715156574349],[-120.09842071036434,52.85502585232139],[-120.09680775084006,52.85050731940795],[-120.09538432376375,52.84666962002144],[-120.0947435942125,52.845584790068244],[-120.09113990898447,52.8411102921731],[-120.08768831689027,52.83919993166028],[-120.08338541369746,52.837402782183446],[-120.08019167276515,52.83600391547025],[-120.07639031898367,52.833180922482455],[-120.07444002653317,52.831001310271354],[-120.07004742423774,52.82942903376204],[-120.06678176212652,52.827696603576726],[-120.06444531530971,52.82636540177006],[-120.06321958960781,52.82584502225465],[-120.06068185640311,52.825423438182284],[-120.05663346274198,52.825454832439235],[-120.05116453248068,52.82518623278929],[-120.04741628782065,52.82424459579513],[-120.04656334473985,52.82383463031896],[-120.04181984617014,52.82083591515055],[-120.03869549024328,52.81693367121737],[-120.03725038713229,52.81361501670178],[-120.0355562840242,52.80909323282275],[-120.03391427444576,52.80622557096088],[-120.0336607823142,52.8046274835669],[-120.03361972992951,52.80193864621254],[-120.033680728768,52.79937309153517],[-120.03203562343087,52.79685046619148],[-120.02936151992002,52.79369106462287],[-120.02678053212257,52.79093388688892],[-120.02604479760332,52.79001292821645],[-120.0251654764872,52.78692585430671],[-120.02333791080417,52.784116487627834],[-120.0214140225748,52.78135782020748],[-120.02124666250249,52.78010651466182],[-120.02132121549492,52.777024239210725],[-120.02061624713691,52.77450494474123],[-120.01933951862452,52.77255586129154],[-120.01663162456626,52.77082260858559],[-120.01543355880936,52.770013981117344],[-120.01386761072682,52.76800446257575],[-120.01272844101923,52.764230196099],[-120.01230503344532,52.761833176960245],[-120.01039302959946,52.7587897032798],[-120.00707541769019,52.754830069821466],[-120.00579734600123,52.75321697030153],[-120.00358215240863,52.75074656335924],[-120.00127217921671,52.74884597342927],[-119.99978595340423,52.74786824793471],[-119.99853247540169,52.746824850034386],[-119.99578552679488,52.74623280040638],[-119.99328713014042,52.745357081883114],[-119.99224748732533,52.74491225682997],[-119.98795665377243,52.743544452672175],[-119.98478745246148,52.74204073862163],[-119.97927222196907,52.740803601120035],[-119.9747359503072,52.74012447394202],[-119.9716018444983,52.73953660408868],[-119.96950419742556,52.73899255601471],[-119.9689311395192,52.73883195986618],[-119.96672324986497,52.73748808224129],[-119.9648192719333,52.73431240874841],[-119.9646926245348,52.73099621716756],[-119.96453122773111,52.72676770742509],[-119.9645643274568,52.72516491057959],[-119.96305280470148,52.722272058962794],[-119.95963520169269,52.71917378038409],[-119.95666202888317,52.71767139771619],[-119.9527850598161,52.71698094193398],[-119.94918790703787,52.716627655335316],[-119.94669014890304,52.71786491180043],[-119.94452225247308,52.720238975484776],[-119.94099932014974,52.721773365953524],[-119.93611916456288,52.72206461100802],[-119.93140065165483,52.72184662970604],[-119.92511660240291,52.722272032506645],[-119.9206194841147,52.72290369317011],[-119.9195752009905,52.72291796985863],[-119.91373826120103,52.722711377561474],[-119.90749080367189,52.72193864363583],[-119.9039771457121,52.72089484871625],[-119.89660881130948,52.717447115730586],[-119.8913777553538,52.71602857119547],[-119.88894495285359,52.71388777351292],[-119.88692508653254,52.709800513094756],[-119.88456792046625,52.70474553657678],[-119.882839978187,52.69841852877015],[-119.87881429542576,52.69338502743674],[-119.8736970745797,52.68984813753252],[-119.86974581923046,52.68721142172374],[-119.86647250416316,52.6851405743954],[-119.86311845466282,52.68301249854961],[-119.86196483332456,52.682344364993064],[-119.86154908556014,52.68389181516964],[-119.86068233303682,52.68629975956775],[-119.85916975840206,52.68843861346347],[-119.85403691339356,52.689988121026516],[-119.84794502664563,52.69023874038626],[-119.83817200305285,52.687847972935046],[-119.83236979364226,52.68609313993286],[-119.82720429970554,52.68364152920766],[-119.82300730264093,52.68169767793615],[-119.81846255343115,52.67815007523167],[-119.81420136174225,52.67460097002434],[-119.80837570190927,52.67210214144959],[-119.8031498762186,52.67039423800446],[-119.79452565104057,52.66833044334926],[-119.78817813972708,52.666978991339015],[-119.78485979840755,52.666275736845236],[-119.77813061423204,52.66458722277988],[-119.77367565121897,52.66321545735544],[-119.7694849804231,52.661664671281606],[-119.76673012696375,52.66067085914925],[-119.765317187728,52.660570599425974],[-119.76503580745342,52.660766522555654],[-119.76227550816166,52.66266384023801],[-119.75875889365226,52.667395873579224],[-119.75539185718549,52.6734398368933],[-119.75312970751598,52.67609272711487],[-119.74981834292758,52.678593752704685],[-119.74566779592404,52.680929912431026],[-119.74009195879223,52.68019611563377],[-119.73491347524173,52.679797278343386],[-119.72813444344732,52.67976170044456],[-119.72510229204347,52.6788302304395],[-119.7203495498021,52.67745955132529],[-119.71626422426434,52.676306879543596],[-119.70977946097364,52.67609421564945],[-119.70003869574438,52.68020562292849],[-119.69230300830476,52.68584018000174],[-119.68522106922426,52.69106522858227],[-119.67718008746625,52.69561799891055],[-119.672832249224,52.69783877191969],[-119.66357622182461,52.699827448007014],[-119.65238434404932,52.700011111174796],[-119.64476500839692,52.70009453026467],[-119.63719005996457,52.70137771576999],[-119.63157403043817,52.702699223530004],[-119.6282062824048,52.70341850963046],[-119.62419654393433,52.704547700827824],[-119.61892543279195,52.70455176837856],[-119.61531567084218,52.703103677207196],[-119.61330621896687,52.69872216752554],[-119.61371048052278,52.696318148076735],[-119.61364561368934,52.69117874319418],[-119.61286334495476,52.68695544377212],[-119.61077378682228,52.682917123853215],[-119.60768218901238,52.67712574137197],[-119.60351970666835,52.67282845382329],[-119.59677358558793,52.667412380763786],[-119.58816572533098,52.66242014561023],[-119.58481472242647,52.66016972285181],[-119.58192663508075,52.657513081407494],[-119.58041420248416,52.6542152052854],[-119.5784792328137,52.651949637106526],[-119.57490614714689,52.65227330562062],[-119.56974670771741,52.65552939475432],[-119.56353731005868,52.65913474565148],[-119.5615931031916,52.65989624172051],[-119.55433829130524,52.66282955144946],[-119.55062727418158,52.664354730571425],[-119.54295770015777,52.66569057174819],[-119.53761388048743,52.666203260778985],[-119.53778850605345,52.66603229941502],[-119.54005395015552,52.663151211855414],[-119.54107732800455,52.659136649320494],[-119.54011852609774,52.65514791172323],[-119.5372993984319,52.65146458837799],[-119.53513747109722,52.64806014069885],[-119.53374058488545,52.64549824635435],[-119.5330958347311,52.642191921337805],[-119.53187010606392,52.63889386076912],[-119.5307630779561,52.63638455327035],[-119.53050239283877,52.633587940870854],[-119.52968296771039,52.63114408674298],[-119.52681486011441,52.62917506508981],[-119.51741186575389,52.62903731946674],[-119.50499417844031,52.63162113051732],[-119.498762900154,52.634082975633234],[-119.48881996574225,52.638067738345384],[-119.47981851504393,52.642496086251626],[-119.47789092375672,52.64411707647774],[-119.47258417320926,52.64605200893277],[-119.46672050786276,52.64822171439592],[-119.45820130885461,52.649274770387024],[-119.45288663008502,52.64727008904992],[-119.45039325535261,52.64529591758343],[-119.44597417636894,52.64133483995616],[-119.4379898523315,52.63832659988336],[-119.42681481519537,52.63809088998416],[-119.42299352786866,52.63915347012546],[-119.41280254825128,52.645073994130854],[-119.40715912532127,52.64878304856653],[-119.39947465273261,52.64971364394283],[-119.39139630167195,52.64972597221449],[-119.38372178574802,52.651164359052686],[-119.37541320960729,52.653522512946495],[-119.37066895958378,52.65533762630966],[-119.36664145544025,52.65617459668925],[-119.36109323889013,52.65588246883768],[-119.35830581375059,52.65362091522903],[-119.3595053950761,52.64829487463164],[-119.35900683288239,52.647100243118174],[-119.36097873164205,52.64331086645644],[-119.36158701675151,52.64073499633437],[-119.36226906567255,52.637875142161576],[-119.36215193615534,52.633075194154884],[-119.36171502564517,52.63033508363366],[-119.36162542367033,52.62679466911157],[-119.36346079581025,52.62483521475726],[-119.36726270203187,52.62275075036387],[-119.37363832355817,52.61863492067955],[-119.37458348265923,52.61502843690994],[-119.3725317352699,52.611676423057375],[-119.36822752350484,52.608286169297735],[-119.36542074048182,52.60482567726178],[-119.36344383111958,52.60090299146166],[-119.361765729806,52.597259007320446],[-119.35997030584042,52.592649703860374],[-119.35860284943189,52.59054929787285],[-119.3537583818719,52.58778883260286],[-119.34558959722447,52.58769028102237],[-119.33757386296217,52.59032938422831],[-119.32147046472473,52.595952642499746],[-119.3145350908084,52.59669618216905],[-119.30669477451801,52.59818889065134],[-119.29989436463619,52.6008172420649],[-119.29315040669114,52.60156327651944],[-119.28804864579773,52.60017498229932],[-119.28239884785074,52.599250763507776],[-119.27206350137463,52.59836071582027],[-119.26003975246005,52.59828678257157],[-119.25797153942496,52.59830495432788],[-119.25029629474504,52.59911000422459],[-119.24308865558754,52.59968049055268],[-119.23598341203048,52.60110544188167],[-119.22898865406576,52.60361280818869],[-119.2232946763101,52.60531501778357],[-119.21627358384954,52.6058232908486],[-119.21598772518843,52.6059389324502],[-119.21062361328352,52.60518266772518],[-119.20532886481301,52.603335747031856],[-119.20002638421008,52.60097916129182],[-119.19304344505682,52.59966131181612],[-119.18983337960968,52.6033965655722],[-119.19175243220982,52.6095474866967],[-119.19305164767128,52.61399226048396],[-119.18970203511644,52.61990379184266],[-119.18854286301872,52.6231672437774],[-119.18462989158614,52.62999211806835],[-119.18226247546413,52.633553600057844],[-119.17960206677449,52.63354259769162],[-119.17916245118052,52.63508592561476],[-119.17729387178409,52.63617008089698],[-119.17596926750397,52.63747973865359],[-119.1743768684819,52.63953431252049],[-119.17425837478018,52.64046250430508],[-119.17316989814667,52.6411306413983],[-119.17110229383883,52.64364377386424],[-119.17045616529869,52.64508039854332],[-119.16970524240396,52.64661391262618],[-119.16549996100238,52.64937325867842],[-119.15969993105328,52.652517453331896],[-119.15206965336672,52.656955235237625],[-119.14067059884535,52.66158925927566],[-119.13061641460834,52.66543392086534],[-119.1213458824183,52.667173841302464],[-119.11257822594057,52.66846701389888],[-119.10527868298544,52.67062111148327],[-119.1036494079247,52.66826529769781],[-119.09894937496784,52.66474015352758],[-119.09314878200057,52.663147283603394],[-119.08884065527558,52.658772119154065],[-119.0812932578708,52.65630136405985],[-119.07554807152037,52.64574673076185],[-119.07182432522505,52.6410917722273],[-119.06768506892392,52.64111249718081],[-119.06346129687165,52.637529389713166],[-119.05868181326501,52.633433778741946],[-119.0560368862108,52.63369115804836],[-119.05337426695058,52.6330504224999],[-119.05318138937376,52.633047372741686],[-119.05087194719898,52.62986892819917],[-119.05082717111321,52.626667868464445],[-119.04849622200778,52.62188714927187],[-119.04469415482272,52.61957161380751],[-119.04383317163783,52.61837426780412],[-119.04159520671766,52.61376048130561],[-119.0384410773553,52.61030252942301],[-119.03687244217858,52.60642291362524],[-119.03848448413906,52.60145127066382],[-119.03643351109473,52.59752360318266],[-119.0296373019404,52.59453715458915],[-119.02174038573045,52.59383983833268],[-119.01864425317916,52.593687386529],[-119.01546900433569,52.59456571854813],[-119.01223826498394,52.59823944237244],[-119.00766919313261,52.60054875855969],[-119.00035816571199,52.600988446600425],[-118.99410788846772,52.596856774929705],[-118.99315175964838,52.59035334189878],[-118.98971764240017,52.58700466252535],[-118.9885896974659,52.586270481690136],[-118.98171365362728,52.584252068710256],[-118.97530313373451,52.58320294236154],[-118.97050997375753,52.58225962141137],[-118.96890995831338,52.58186896495024],[-118.96389797656877,52.579727749570985],[-118.95880559987188,52.57735557636526],[-118.95475332421518,52.57652001945561],[-118.95055187281434,52.57740259937621],[-118.94698628622554,52.577761507820405],[-118.94510170785988,52.57657547318412],[-118.94206438698691,52.57436201270943],[-118.93884731873376,52.57260951605629],[-118.935350981521,52.571200396885914],[-118.9301743721516,52.56980224916407],[-118.92819263791999,52.56929878966922],[-118.92527005989591,52.56828636703204],[-118.92338122495666,52.56641308127989],[-118.9245516636616,52.562926984478516],[-118.92902071746944,52.56095944093838],[-118.93116628726814,52.559748865482284],[-118.93121853341532,52.55718376372504],[-118.93091576839277,52.55586938433207],[-118.93162444538665,52.55283615890499],[-118.93307346030322,52.549635036212976],[-118.93013354253851,52.54639685769045],[-118.92313595668094,52.54238047768415],[-118.91849616743436,52.539374645698736],[-118.91423669694122,52.53631686491571],[-118.91044143201782,52.53296897622899],[-118.90636339985791,52.52944988612961],[-118.90446136968262,52.52740235892115],[-118.90270162299822,52.521988459315175],[-118.90246619431774,52.51839288700663],[-118.90427221205043,52.51375889413249],[-118.90750308705118,52.50974588004118],[-118.9083637180755,52.504544363441106],[-118.90541677929055,52.50164662182685],[-118.89870785481426,52.49728689082278],[-118.89257745701805,52.494007536168844],[-118.8891710698382,52.49093974334798],[-118.88660714720355,52.488159463662655],[-118.88437039568936,52.482515689886355],[-118.88411759412782,52.4769799630629],[-118.88707115587296,52.47365117807049],[-118.89462189828005,52.47155815433941],[-118.90039823892103,52.47033058995095],[-118.90498879272627,52.469907848673444],[-118.90629001131664,52.46938864090722],[-118.90905511713551,52.4669170303571],[-118.91203116528307,52.4649606955036],[-118.91884953987416,52.463785254125824],[-118.92274426607263,52.46182504589456],[-118.92447124058586,52.45827142055239],[-118.92574837431499,52.455467649569144],[-118.93002665458793,52.453960417012404],[-118.93243184654636,52.4519502641765],[-118.9330407249915,52.448522178546725],[-118.93402560608624,52.44577883625222],[-118.93613403860515,52.443137721938655],[-118.9389016616577,52.44026917907266],[-118.94110045563993,52.43734512106119],[-118.93609590818907,52.434457752898176],[-118.92849840758113,52.43284270613452],[-118.92329264681442,52.427679734363274],[-118.92087039661506,52.421984060576435],[-118.92084075648849,52.42072669558031],[-118.92267733394624,52.41757688479297],[-118.92765855829812,52.413665955483374],[-118.9304154405328,52.40959549455138],[-118.92811120909997,52.40561103248318],[-118.92594112183673,52.404140180424946],[-118.92517684651861,52.4037487783135],[-118.92785769564627,52.40184632969813],[-118.93399132417271,52.39856153014824],[-118.94109573161367,52.39332358923473],[-118.94534666913093,52.3900485873608],[-118.94511152418285,52.386794287293625],[-118.93741801741885,52.38455268393679],[-118.93305601866203,52.37995428967498],[-118.93382787455636,52.37480784547217],[-118.93463970843163,52.37337706010308],[-118.93234581975334,52.369339033098946],[-118.92762394424396,52.366222304073375],[-118.9260003528859,52.363778050628234],[-118.92483722290413,52.360243191988424],[-118.92477671843693,52.35647659994977],[-118.92399291918518,52.353512985273944],[-118.9172789190809,52.34823571391216],[-118.90969020795116,52.34576545724294],[-118.9020047755412,52.344155116321865],[-118.89417360395687,52.343967283116584],[-118.8880161403358,52.344114493407844],[-118.88353950055601,52.34419577946147],[-118.87213664943421,52.34362104649766],[-118.86128878241155,52.342196069154035],[-118.85454986484446,52.34068197459156],[-118.84526393116451,52.33662401208554],[-118.83700900944285,52.33295074202797],[-118.82903610353377,52.330075712451674],[-118.82022524355355,52.32709282002346],[-118.81132432003322,52.32359425034565],[-118.80196837491611,52.32043955400404],[-118.79334257694664,52.317166137223765],[-118.7881839014017,52.31445262988454],[-118.78478632029879,52.31092869526066],[-118.78435795913325,52.307050822276885],[-118.79038635484544,52.30376921181692],[-118.80117559791472,52.302122748476904],[-118.80823848177482,52.299972463903536],[-118.80862187795366,52.29997547422975],[-118.81342879132873,52.29727149052806],[-118.81710714365802,52.29354049158277],[-118.82284621317069,52.29054988990602],[-118.83039841177019,52.29005256810682],[-118.83783616073664,52.288821441831445],[-118.84366206643821,52.285027947440106],[-118.84398035272272,52.280800717317376],[-118.84397859601286,52.28045580387652],[-118.84422824999774,52.27788580269644],[-118.84903051029396,52.274379695505246],[-118.85857790967628,52.27170503125825],[-118.87063671277691,52.267307515569094],[-118.87703423933525,52.264928229614064],[-118.88230205797042,52.26188180291404],[-118.88476914462123,52.258552168482076],[-118.88565847397197,52.2557545731973],[-118.88726608716584,52.25083670372092],[-118.88982685342464,52.24773756266722],[-118.88903192598691,52.243973056507826],[-118.87976006029848,52.24002775923205],[-118.87303012797487,52.23783870551521],[-118.86985197881401,52.23699782349651],[-118.85826899106485,52.2348317963213],[-118.84636099798104,52.23472060028706],[-118.84160762430648,52.234225752519585],[-118.83710889632908,52.23219763983221],[-118.83500803639096,52.228781223729136],[-118.83288996225096,52.22325189540518],[-118.83323570984976,52.220282632889706],[-118.8405496953425,52.21768137348067],[-118.84585270372993,52.21724982368312],[-118.85048001010473,52.215292075240306],[-118.85060947239367,52.2117527401029],[-118.84937401145133,52.20987145305185],[-118.84581447699766,52.20743466213362],[-118.84038118804813,52.20483912451904],[-118.83217009183895,52.202652088423875],[-118.82757401847464,52.20078855994275],[-118.82392307581125,52.19846978737596],[-118.81902771744521,52.1939817693639],[-118.81563554657772,52.19011346275732],[-118.81290018696764,52.18699200055162],[-118.80894479986769,52.18324041594672],[-118.80593013466373,52.180917213175796],[-118.80221732914413,52.17810231869261],[-118.80025291985923,52.178139041023925],[-118.79504747549421,52.17818610363808],[-118.7902105104945,52.17823063006979],[-118.78425374480467,52.179248989062415],[-118.77858141123664,52.181118312814036],[-118.77662116315848,52.18156908526455],[-118.77476744743367,52.18076650542111],[-118.76957505531253,52.17950083732917],[-118.76154793327105,52.18267544480546],[-118.75996651488344,52.18323652967417],[-118.75448140294534,52.184769397413014],[-118.74853631296989,52.18412717188288],[-118.74500573798186,52.18217488640049],[-118.73658819662101,52.17776007354746],[-118.73084726140117,52.17381100377742],[-118.72975321129408,52.17112541101892],[-118.72794610379087,52.16524225591536],[-118.72369573405261,52.161808862698805],[-118.71495523569565,52.16161469076666],[-118.70704735715512,52.163987808482965],[-118.70517523506516,52.16461315300917],[-118.69819103618359,52.1659565166775],[-118.69271830845939,52.16497594192713],[-118.68931444610799,52.16160102193888],[-118.68795025808093,52.157657768427036],[-118.68593180226297,52.15479897542051],[-118.67871028633373,52.151639789660855],[-118.67229399955755,52.152590990827385],[-118.67106264522857,52.1544711433839],[-118.67047831389857,52.15835042725047],[-118.667094316227,52.16250460439834],[-118.66346790947568,52.163573860108016],[-118.65861820427864,52.16412993659777],[-118.65118440971061,52.16490306786294],[-118.64457900885387,52.16591070434224],[-118.6409470727827,52.16692034300217],[-118.63598353228778,52.170558030778395],[-118.63204592571329,52.174305709353305],[-118.63174917372349,52.175959014735426],[-118.62837466095095,52.18011292077584],[-118.62061135430086,52.18339673809466],[-118.61213986749777,52.1858185438515],[-118.60868708276269,52.18722939421819],[-118.60642576283254,52.18882145283213],[-118.60026474891605,52.191418349348254],[-118.5964502617078,52.191410616765204],[-118.59153766041828,52.19076175172735],[-118.58503446235551,52.19028199359008],[-118.58215369127923,52.190156317963094],[-118.57870414133374,52.19093976624647],[-118.57738907462426,52.191733249450614],[-118.57597637396626,52.19360830543316],[-118.57463677870865,52.19651393174174],[-118.57357674243843,52.200620131255604],[-118.57271867676431,52.202951961535064],[-118.57165411793108,52.20665426951216],[-118.5702899046423,52.21149670536978],[-118.56923378540745,52.2149763263343],[-118.56815836657414,52.21925171140442],[-118.56803090511609,52.22238816009182],[-118.56556551878687,52.22659872975934],[-118.5650992651909,52.22682287669396],[-118.56341891242191,52.22733230240077],[-118.55865469057534,52.22845105259382],[-118.55462579740966,52.23094679091233],[-118.55338227589039,52.233451485126075],[-118.5533723500616,52.235217374619815],[-118.55326332032672,52.236361341061034],[-118.55443278238978,52.2394975300032],[-118.5557088087068,52.242530087381404],[-118.55761448364373,52.24653101102903],[-118.5602428818968,52.25275811007666],[-118.56184968509075,52.258239481599155],[-118.56135745911938,52.261604858953454],[-118.55803342489418,52.26632645548264],[-118.55604112083434,52.26991412327724],[-118.55487990326769,52.27287617556736],[-118.5542733391901,52.27818043207952],[-118.55220296171608,52.281189797627285],[-118.55123400104533,52.282609686812684],[-118.54711085859537,52.285106093980616],[-118.54384476388562,52.285378303223744],[-118.54152402313689,52.28479555129423],[-118.53631113966047,52.28369048144514],[-118.53148706684318,52.28264355897539],[-118.5289693117041,52.28268754691104],[-118.51992397938325,52.28316334945367],[-118.5127275544746,52.28489359698619],[-118.50897839697224,52.28590351173207],[-118.5029891822259,52.28798884464932],[-118.4979344154093,52.289962687076795],[-118.49210885373724,52.293813498298924],[-118.49049107970106,52.29665361147548],[-118.49061609888655,52.300764848107],[-118.4928109626474,52.30368140851562],[-118.49445492719946,52.3062002378247],[-118.49461156695028,52.309454406326786],[-118.49252776890665,52.311151567512034],[-118.49084237224592,52.31217335856375],[-118.48700179541888,52.313181855639],[-118.48270380675272,52.31418528272018],[-118.477761340586,52.314393515381525],[-118.47290233999428,52.315222536288374],[-118.46971100834577,52.316232205399295],[-118.46633486338123,52.317874623436445],[-118.46332290237477,52.32013654916711],[-118.45901205692121,52.3218801744524],[-118.45685520175105,52.322211239831795],[-118.45182303525071,52.32241821650756],[-118.44631344766789,52.3227341453666],[-118.44023105360276,52.3237857694495],[-118.43731632239009,52.325820103513024],[-118.43409572491406,52.32934006489912],[-118.43238366284648,52.33075286416055],[-118.4287865903699,52.3347272378811],[-118.4226861173189,52.337379581225214],[-118.41699414331003,52.33745849111915],[-118.40954625498237,52.336510281604035],[-118.40386674050802,52.33584859470636],[-118.4029313617698,52.33578656021617],[-118.39994767222215,52.33560115824179],[-118.39426036042653,52.33573730946215],[-118.3889293013781,52.336450262420215],[-118.38674946828168,52.338490173171984],[-118.3850134783448,52.34144665900447],[-118.38374669092352,52.34525994171466],[-118.38211686744386,52.34861633013535],[-118.38051409628346,52.34923065195093],[-118.37769240921027,52.35012881737924],[-118.37431240535085,52.35142194259214],[-118.37036303869964,52.35333816683712],[-118.36660442824301,52.3555944145856],[-118.3647635601769,52.359462712461685],[-118.36002889021418,52.363543002885315],[-118.35646348703203,52.36420499602149],[-118.35142044861219,52.364688010549635],[-118.34365243149476,52.36601319737587],[-118.33736622964885,52.36773937731715],[-118.33045324830438,52.3684962552329],[-118.3248507342997,52.368460146391506],[-118.31600204153358,52.367376016863346],[-118.31098661723256,52.36546463565616],[-118.30572183869596,52.362633745367745],[-118.3036359052224,52.35891130057176],[-118.30408524301627,52.35458283057809],[-118.30089991616347,52.349484653378326],[-118.29887055396622,52.3485082717449],[-118.29556145811915,52.34608830161578],[-118.29142723909241,52.34167188017892],[-118.28762965001873,52.340331498671794],[-118.28443691730958,52.341226979284656],[-118.27953367944325,52.34472874536667],[-118.27389679754485,52.34662790865291],[-118.27136543099121,52.3472960570943],[-118.26705742899229,52.34772466854584],[-118.25881748810403,52.34903853981747],[-118.2538387868252,52.351627649671336],[-118.25247868292522,52.35441340169707],[-118.25026019128045,52.358101892644584],[-118.24896269983772,52.36242554452376],[-118.24749663448358,52.36612326793044],[-118.24678246373878,52.36942591917875],[-118.24519668211502,52.37386667328192],[-118.23979378774945,52.37804581923792],[-118.23565360452096,52.37990176151402],[-118.22918803852659,52.38110521858696],[-118.22368573352705,52.38066563487283],[-118.22239066065279,52.37980437690905],[-118.22229156936649,52.379288521369915],[-118.2198202300341,52.38181662749434],[-118.21776604929421,52.385064647780816],[-118.21775859218253,52.390827635761624],[-118.21914371858725,52.396588926839236],[-118.22306314755463,52.39972810856773],[-118.22866816636207,52.40149616488344],[-118.23623852553965,52.40321135435537],[-118.24231227566041,52.40378371524711],[-118.23959797277259,52.40749131433547],[-118.23698377637129,52.41228142819027],[-118.23594556126335,52.41695726781971],[-118.23630861503199,52.42248768190726],[-118.2374338175027,52.42642719059559],[-118.2395818757251,52.42979353502806],[-118.24237878816078,52.43367236949235],[-118.24696066978055,52.43743880987237],[-118.2519967212936,52.44279945102605],[-118.25181481128827,52.446679995026095],[-118.24872618431199,52.45056125925096],[-118.24338111361095,52.450843062627165],[-118.23759159830658,52.451695357629895],[-118.2313202728653,52.45340483009615],[-118.22625632537391,52.456141686331975],[-118.22036543124031,52.4596720316689],[-118.21388948251631,52.46372276022734],[-118.20732760735615,52.46742289833877],[-118.20658407125445,52.467595644383465],[-118.1965573065008,52.47328734843849],[-118.19234017991468,52.47876231896469],[-118.19278928957287,52.482814636110014],[-118.19839621019048,52.486582986081366],[-118.20251514927668,52.48858140460057],[-118.20738338890982,52.48858375325795],[-118.21497445648092,52.488876916953046],[-118.22404822020766,52.489506345098135],[-118.22751799754006,52.48985333216386],[-118.23266621507494,52.489457264261524],[-118.23678774291861,52.49071307710747],[-118.24137591694314,52.494475674917105],[-118.24521131387627,52.49624988490872],[-118.24914015673528,52.49767329754231],[-118.2519496318936,52.499787468302266],[-118.25334330870683,52.50275368542952],[-118.25447306271869,52.50389581757092],[-118.25802558581863,52.504695540012406],[-118.26205516658652,52.505896246000724],[-118.26487099241895,52.50880370286314],[-118.26730149417055,52.51302496109323],[-118.26757937643983,52.51650345160042],[-118.26860198947259,52.52095783373016],[-118.27066358249292,52.52294939429612],[-118.2761932234365,52.52597390059074],[-118.2826624858659,52.52922909773866],[-118.28312117120927,52.53047563820799],[-118.28377708591988,52.5321941781331],[-118.28424435454095,52.53636102770568],[-118.28573411652435,52.538812583691765],[-118.28537134199628,52.543546093785295],[-118.28114030340545,52.5473128741414],[-118.27880263587188,52.54873720957154],[-118.27616726834398,52.5516452917809],[-118.27297882338931,52.55489765300829],[-118.26932560290467,52.56014353990796],[-118.27082033755154,52.56544767496549],[-118.27484997847178,52.567504407408975],[-118.27887675422669,52.56933188663531],[-118.28459633557603,52.570927122128005],[-118.29144463104765,52.57121233724524],[-118.29933534193707,52.57190219269601],[-118.30580157431126,52.573154538174954],[-118.31246924841317,52.57469435989946],[-118.3225936919281,52.577773286751075],[-118.32709331269434,52.57988153664837],[-118.33019763133538,52.58239135439308],[-118.33385344989853,52.5865558198945],[-118.3338678177022,52.589296366717704],[-118.33283464015233,52.59323280554812],[-118.33217919965536,52.59431587525221],[-118.33001410158037,52.595686673318355],[-118.32964848000348,52.59813890944294],[-118.32991880654279,52.59853949317884],[-118.33133167436583,52.6014455124949],[-118.33217992659225,52.60401608376417],[-118.33687626536855,52.60612370022034],[-118.34128160796966,52.60612065205772],[-118.34588092605794,52.60669613958004],[-118.34832515642987,52.60891942996858],[-118.34955030648972,52.610970620336055],[-118.35180052427913,52.61428021057331],[-118.35359637439849,52.61838397664248],[-118.35341203631269,52.62141006885298],[-118.35285120284496,52.62254735028735],[-118.35059285653217,52.62643035604562],[-118.35049492219893,52.629055716681286],[-118.35256797586638,52.63144772923863],[-118.35295093741743,52.6341322772513],[-118.34890365893926,52.63544578548657],[-118.3415902909605,52.63670164799906],[-118.33453728090785,52.63915909174865],[-118.33134324220615,52.64234948295913],[-118.32926869764067,52.64651884214099],[-118.3283326358147,52.648744048621026],[-118.32137800670164,52.65279186475923],[-118.31405545573419,52.652503930667606],[-118.30775568402326,52.65050855215699],[-118.29873594780864,52.65005114795531],[-118.2958168227544,52.65301881920362],[-118.29525134534549,52.656894694595266],[-118.29477483724155,52.66060733566419],[-118.29487166767093,52.66180429311339],[-118.29091436898464,52.66853306129151],[-118.28752731138711,52.67218273820674],[-118.28630252875126,52.67640165590881],[-118.2879994186326,52.67897173025635],[-118.29137218078331,52.682168966882365],[-118.29476487428425,52.68468079736446],[-118.2975813349609,52.68650504667363],[-118.30086747103823,52.69027171770626],[-118.3053891383179,52.692896587241634],[-118.30745814921283,52.69357876986367],[-118.3135675467592,52.695920765867456],[-118.31686289847718,52.697743878562186],[-118.31911116960141,52.700827610341555],[-118.32334815434115,52.70413407218311],[-118.32693172475605,52.7051071828101],[-118.33350935617922,52.70693312485791],[-118.34019326792802,52.707672154358875],[-118.34123241024744,52.70761696067974],[-118.3401063633681,52.710065346578716],[-118.33841091117682,52.71543212092751],[-118.33709480063735,52.72067836508333],[-118.3361516456803,52.725757462687135],[-118.33323433637845,52.73168760687308],[-118.32767724893056,52.73602550260374],[-118.32739559072166,52.73659487986674],[-118.33331780716267,52.73727883701678],[-118.33813004620382,52.73791048173952],[-118.3466037783034,52.73968162537613],[-118.35235210601695,52.7424183128212],[-118.35827920673914,52.7464091489983],[-118.36166926486861,52.749483471113955],[-118.36695750710908,52.75296639166856],[-118.37166634214353,52.75502017931656],[-118.37845099710243,52.75615756881093],[-118.38861755149341,52.75809213646863],[-118.395508574552,52.76014334681626],[-118.40040835622887,52.76356479217067],[-118.4028555384265,52.765501517874256],[-118.40984139400065,52.767784476255194],[-118.41531308832467,52.76959952487331],[-118.41645023422383,52.773193921716114],[-118.41663897943617,52.77741709812664],[-118.41692597236444,52.78050205401777],[-118.41730962871613,52.783296273843256],[-118.41674248288543,52.785808433856765],[-118.4173132111757,52.789230182168126],[-118.41760903223538,52.79419512215956],[-118.41685133013254,52.79727255777446],[-118.4124292803894,52.80178709175898],[-118.4089425546014,52.80407081887533],[-118.40376034727558,52.80789386155919],[-118.39943573326056,52.81251806123934],[-118.39933962117311,52.81280486605324],[-118.39651207373639,52.81691201271381],[-118.39434604533764,52.82233409266675],[-118.39397112989481,52.826101926053255],[-118.39378619549271,52.82872398514685],[-118.39359835030186,52.83186375867366],[-118.39521723752144,52.83460420237815],[-118.39842273178498,52.837508560599844],[-118.40031375598,52.840989041118924],[-118.39956063303079,52.84344341818208],[-118.39625504639626,52.845611374588486],[-118.39106632394515,52.84584218555217],[-118.38379829048785,52.84715420124254],[-118.38512271624782,52.847612896550764],[-118.38823313314725,52.84829313966677],[-118.39381006591223,52.84932297422867],[-118.39730225740153,52.85063076819671],[-118.40004008200304,52.85205739985463],[-118.40192610335566,52.851887931618684],[-118.40872667119605,52.85051234620538],[-118.4151486829449,52.84999717976135],[-118.42232362145793,52.85113252921748],[-118.42372984066785,52.85113508367055],[-118.42854776625627,52.85004705486941],[-118.43411807535573,52.849354051480056],[-118.43865395981675,52.850436655021234],[-118.44366629667228,52.85237537347953],[-118.45047013626193,52.85459338614942],[-118.45320831127485,52.858471575673455],[-118.4540710702398,52.86035517759681],[-118.45718058204812,52.86223026313975],[-118.45927484504304,52.864513766424544],[-118.46012403094247,52.867993907576285],[-118.45955950925426,52.8701619292495],[-118.45777252211877,52.870445799678684],[-118.45342693423865,52.871479901615444],[-118.45211037835635,52.87290691406037],[-118.44975571944155,52.876045947447935],[-118.44721057860792,52.87924366756444],[-118.44787749088532,52.883239587993934],[-118.44968340313841,52.88529498852945],[-118.45364912940798,52.88682794922386],[-118.45744305299247,52.888823590788874],[-118.46055851718133,52.89076190332295],[-118.46320591030249,52.89263844996548],[-118.46509912343747,52.894461356845284],[-118.46699905317521,52.89531884872678],[-118.46897717962196,52.897086834723076],[-118.4709697364422,52.899196605786315],[-118.47542652028497,52.900843626696485],[-118.47901546605448,52.90130277470937],[-118.4844042227134,52.901750468970114],[-118.49063989992094,52.903169468835095],[-118.49377260585388,52.905277986085935],[-118.49623865489885,52.90624387486861],[-118.50350639864394,52.906236209031626],[-118.50945777435479,52.90468861992903],[-118.51265965118327,52.90165515173687],[-118.51482115470432,52.89823289856996],[-118.51898269006648,52.89714302237102],[-118.52409000270397,52.899186274345944],[-118.5293012172306,52.901407732355544],[-118.53555145955713,52.90556056395933],[-118.53934060357568,52.90795290437392],[-118.5468987633602,52.907314237637536],[-118.54925752826672,52.90514297980673],[-118.5547322266049,52.902969650494086],[-118.5595386513829,52.899990848577914],[-118.56103755555958,52.89673718518503],[-118.5630873829325,52.89085024101002],[-118.5674265114557,52.88787760431966],[-118.5703369968026,52.88604921111094],[-118.57429689493358,52.884383046403],[-118.58146580481203,52.882258047524815],[-118.58958261764566,52.880358820857666],[-118.5950679161222,52.87938062700589],[-118.60289563217007,52.879305599575794],[-118.61037546037291,52.881745485735046],[-118.61142634697664,52.88431025178292],[-118.61183367421283,52.88704624815805],[-118.61185120698393,52.89012946334834],[-118.61271892589728,52.89417891033132],[-118.61216616107328,52.89606452726757],[-118.61209522861355,52.90017251989157],[-118.60822474878583,52.90149855372015],[-118.60539393134509,52.90270189905949],[-118.60475117205264,52.9047575970578],[-118.6073997359034,52.9062355819096],[-118.60985837880934,52.907084657767655],[-118.61242211509175,52.908621390154146],[-118.61432205418308,52.91078830256861],[-118.61688738006731,52.91266244758817],[-118.61870822247438,52.915458597957226],[-118.61881732697962,52.91853509659925],[-118.61789047094611,52.92110641464347],[-118.61600890888677,52.92356579222293],[-118.61498211238069,52.92688173994377],[-118.61529182816346,52.93104290194006],[-118.61492734535516,52.93167285711283],[-118.61313427840417,52.93344825873769],[-118.60831796899149,52.93528161310767],[-118.6083278476365,52.935568971882674],[-118.61174384827032,52.937213924917266],[-118.61477963902362,52.939149734787364],[-118.61799557752057,52.94125788574903],[-118.62046698414518,52.942563121787835],[-118.62340362108623,52.94386655818591],[-118.6255943277392,52.94506331745076],[-118.63110280334018,52.94778941025235],[-118.63697057153614,52.94983191448899],[-118.64170854103257,52.951129537414616],[-118.6469258348232,52.9526045695146],[-118.64864622412115,52.95539535821818],[-118.64999788556023,52.9592760829779],[-118.65446316884436,52.96137617620329],[-118.66063661030091,52.96444133002367],[-118.65988793934973,52.96547322271026],[-118.65706948271371,52.96918760465527],[-118.65776109149596,52.97255538542353],[-118.66070177750737,52.97437276236519],[-118.66545352701827,52.97630318288927],[-118.66811805198004,52.97971969011217],[-118.66701450302423,52.983321668001295],[-118.66200000225653,52.985329184174745],[-118.65623388112216,52.98716785352813],[-118.65009743135,52.9895807423667],[-118.64425184842425,52.99290720960356],[-118.64604588054314,52.993812646401935],[-118.64711030621616,52.99580853574908],[-118.64711951424277,52.9984357296335],[-118.64447600286877,52.99844430830074],[-118.64096276761241,52.99844736474131],[-118.63831446034203,52.998915162741],[-118.6368507304912,52.9998221563939],[-118.63722829459061,53.00136333542698],[-118.63893506402903,53.00467203515966],[-118.64196269658638,53.00763924745832],[-118.64651831684843,53.01123482634213],[-118.64972666661382,53.01420461826357],[-118.65210320752159,53.0185946998132],[-118.6478464109785,53.025895617044185],[-118.64984233238991,53.03005797889101],[-118.65098073010255,53.03120161208095],[-118.6556203400196,53.035024328598226],[-118.65979841009266,53.03822093604071],[-118.66578029361662,53.041417198218824],[-118.67288732956362,53.0414191519695],[-118.67762508702728,53.041132372695365],[-118.68227608606053,53.038566761184285],[-118.68510634407832,53.03497135413119],[-118.6895644852367,53.033602225575414],[-118.6943134919787,53.03576731002366],[-118.69601813387263,53.038337911172164],[-118.696696960811,53.04250012136394],[-118.69830417506618,53.0471175722614],[-118.70248742345196,53.04900150547017],[-118.70363064834663,53.04951793383985],[-118.71045898900877,53.05122989434921],[-118.7149201378929,53.05464671299602],[-118.7217562471941,53.058241780275864],[-118.72764507906754,53.05852309172051],[-118.73236945273187,53.05578441911855],[-118.73682722091425,53.05424449957983],[-118.74128991975738,53.05372467995959],[-118.74877709929953,53.05195501622331],[-118.75408095662486,53.04801343346834],[-118.75509845887936,53.04224771104936],[-118.75974114719736,53.03996434766303],[-118.76438836396589,53.042131904918456],[-118.76970384019079,53.044523909280564],[-118.77360669356035,53.04674440108454],[-118.77095983051129,53.05062701833524],[-118.76756428914487,53.053084379181456],[-118.76397421164211,53.05799414208494],[-118.76359177732529,53.05856026967002],[-118.76000023361203,53.06233168433399],[-118.75744136361583,53.06621389013612],[-118.76144627989602,53.069690624034614],[-118.76562236038777,53.07208289978944],[-118.7668574536126,53.07373960058381],[-118.76487751059884,53.075908323068056],[-118.7599546410783,53.078138224965535],[-118.75730367892857,53.08053365146865],[-118.7535084270204,53.08389991270222],[-118.74782051414506,53.085845773277136],[-118.74470260451936,53.08841326907029],[-118.74517858445289,53.09326338839314],[-118.74576119650118,53.09828168876474],[-118.74528946957497,53.099539482264],[-118.74301422686523,53.09999741432595],[-118.73779689276552,53.10085289524513],[-118.73599180218072,53.102338211091364],[-118.73477171280162,53.10593321075753],[-118.7308834441554,53.10964069912419],[-118.72708506704214,53.110899274208485],[-118.72557871023352,53.11335412877388],[-118.7277597243422,53.11580908113983],[-118.73109504587133,53.11934214942769],[-118.73746410712148,53.12230686436258],[-118.74336592653117,53.123790553922895],[-118.7515394446649,53.125723403060405],[-118.76789214299919,53.130622095758326],[-118.77751039003498,53.136267649861075],[-118.77866355945311,53.13991306822173],[-118.77914390474619,53.141682568959155],[-118.78133939539782,53.145047119227875],[-118.78115684107385,53.14778739620022],[-118.7793482168717,53.149555271766964],[-118.77936387462996,53.152808868460546],[-118.78079212565076,53.15423373410386],[-118.78613537568172,53.15919346641864],[-118.79251926505825,53.16318426245424],[-118.79365999168566,53.16329787227855],[-118.79575101216423,53.16358156999134],[-118.80117450840251,53.164202634155465],[-118.80706686615619,53.16516737325349],[-118.81212300652396,53.16927249136563],[-118.81442674849208,53.17149400976062],[-118.81794453367881,53.17251677431192],[-118.82174787099737,53.1735449736012],[-118.82604019287123,53.17639505961787],[-118.82785913654662,53.1797011046641],[-118.82939929536381,53.18260952970192],[-118.83415908744276,53.184313600751096],[-118.83815425564862,53.18510788272963],[-118.84425059606757,53.18595678116138],[-118.85253614715062,53.18731966855967],[-118.85740083152395,53.189480074796094],[-118.86084712222112,53.19289736858377],[-118.86113041167602,53.193183068976644],[-118.86352781684927,53.19620912716501],[-118.86743190957979,53.19870902379822],[-118.87125330171973,53.20036315348679],[-118.87258911008186,53.20218301888486],[-118.87375742806951,53.204637427053235],[-118.87518808864411,53.20571919304755],[-118.88109209950773,53.20656617840022],[-118.88985184093792,53.20729203154473],[-118.89879657620433,53.20790560378338],[-118.91205487857692,53.21102718348499],[-118.9177817524951,53.214550505353934],[-118.91932472362419,53.217575087676146],[-118.92068858223739,53.2226545220327],[-118.92348431147202,53.22675617705549],[-118.92682275435025,53.22834775773641],[-118.93388188002315,53.23078553634084],[-118.93810103630591,53.23414761252884],[-118.94372826901072,53.23676486496605],[-118.9482057001822,53.23606883928825],[-118.95096601748743,53.23526349477731],[-118.95753543487798,53.23513886986611],[-118.96219572061831,53.23524193312523],[-118.96735560932783,53.23660008309458],[-118.97557749081726,53.23977647447859],[-118.98090064525908,53.23970761656494],[-118.98756171875124,53.238037534625164],[-118.99507355775472,53.23596604928255],[-119.0025747511985,53.23395373683686],[-119.01057549302298,53.233017563383655],[-119.0202712318654,53.232137637711034],[-119.02311519722463,53.229449339370966],[-119.02260544223266,53.22596915455171],[-119.01981930600094,53.222664681835404],[-119.01683346585146,53.219020690822035],[-119.0146275863157,53.21731581457015],[-119.00253337865523,53.216946347050296],[-118.99765014977636,53.21438615083889],[-118.99305354019931,53.210286749104355],[-118.99044156864879,53.20550101692869],[-118.99088328536062,53.20075909184151],[-118.99144635799593,53.19927650208782],[-118.99322028049743,53.195678149074865],[-118.99834956066825,53.1933838494775],[-119.00450267562312,53.19000219578749],[-119.00837410851166,53.18565089699001],[-119.01136959065582,53.18085191550163],[-119.01248187260951,53.17804904575654],[-119.01918865071094,53.17130059777756],[-119.02427921452424,53.16666188799665],[-119.02472076456706,53.16335319533091],[-119.02137159846521,53.161018273859405],[-119.01287145763814,53.15595877820921],[-119.00390123512149,53.15147583435966],[-118.99815570594181,53.14635262768471],[-118.99935749912369,53.143554585730996],[-119.00484601676763,53.14068718018704],[-119.0138573100509,53.13735783656923],[-119.01801902184202,53.135858064817796],[-119.02208078523043,53.132593061699495],[-119.02223884762228,53.128995084349675],[-119.02354160741064,53.125572932118246],[-119.03311015753334,53.12394389051916],[-119.04225372309809,53.12534630221927],[-119.04380408523035,53.12899830272632],[-119.04406135110756,53.1367559384959],[-119.04420849460783,53.1414363030043],[-119.0468163000356,53.14662481977873],[-119.04969587630481,53.14861218834313],[-119.0539879982671,53.15025201916152],[-119.0589425070635,53.15235226082871],[-119.06152301408822,53.154057676713016],[-119.0650734679053,53.15700945266837],[-119.06908319763859,53.158543107650644],[-119.0766303035949,53.16137340502442],[-119.07986152934542,53.16233241804333],[-119.08539599409275,53.16430947406882],[-119.093956710223,53.16445559023028],[-119.0995551605589,53.16346765845635],[-119.10647838247446,53.16201989021879],[-119.11665604186608,53.16129691301442],[-119.12086081423512,53.163678707579095],[-119.12660662946534,53.16714294941486],[-119.13139693280276,53.17037564306764],[-119.13563216855522,53.17498741961958],[-119.13670089425612,53.17675158615386],[-119.13990045924183,53.182273238812876],[-119.14206212434821,53.18797423102743],[-119.14531451615066,53.189564519606805],[-119.14777486157638,53.18898239201024],[-119.15261692898649,53.187651342599295],[-119.15858452209143,53.185974472169285],[-119.16513843093502,53.184581157612676],[-119.17293457472933,53.18398030080237],[-119.17960021976894,53.18440604241467],[-119.183399146505,53.18439185162484],[-119.19092634651528,53.18470741373728],[-119.19778832094181,53.18587843770226],[-119.20552465063803,53.188357734477016],[-119.2120337247482,53.19135234956139],[-119.21633771330532,53.19316584150634],[-119.22026207682913,53.194343387398085],[-119.22730552806777,53.194772816872636],[-119.23271278158897,53.193379278181226],[-119.233518686723,53.19023460634451],[-119.2327949018881,53.186012386731136],[-119.23491555579105,53.181150086947156],[-119.24133248707726,53.17729632940297],[-119.2483561971476,53.175666665573424],[-119.25626711164686,53.17733997654664],[-119.25697366197865,53.18008151095914],[-119.25387667977837,53.18249323868951],[-119.24972290909236,53.185764027931036],[-119.24768934639233,53.18971532034048],[-119.24888631420087,53.19325027799545],[-119.25064407017089,53.19695456023427],[-119.25240797145375,53.20099903878583],[-119.2561103245315,53.206401158277245],[-119.25679563859796,53.20777058498226],[-119.26031041182654,53.213693002850704],[-119.2637980040381,53.21875384378285],[-119.26883284375604,53.2240450177373],[-119.27105512595107,53.226086485942034],[-119.27691430141651,53.23028630278171],[-119.28070649701851,53.235349100572904],[-119.28391465299538,53.23972861078577],[-119.28768721572057,53.244167600411565],[-119.28848366295325,53.24570171293898],[-119.29277547634442,53.2521917065947],[-119.29529509597775,53.25531964345221],[-119.29951958754904,53.257408577807276],[-119.30614179937798,53.26074432428708],[-119.31603280861411,53.26612116873842],[-119.31950721426401,53.26838407129775],[-119.32498388411331,53.27172928525443],[-119.32857064042388,53.275193862628804],[-119.33256901656391,53.28054275400805],[-119.33403278960361,53.28264400949633],[-119.33790459955651,53.28651191386927],[-119.3363129865368,53.28903022801371],[-119.33177937757122,53.29162537949405],[-119.32725225907636,53.29484249330571],[-119.3273154962423,53.298728951148256],[-119.33008566451981,53.299452168909426],[-119.3346716737487,53.299487571183306],[-119.34039772751179,53.29985867614931],[-119.34590411025708,53.29837224654062],[-119.34771361474687,53.30364401289639],[-119.35003108137003,53.30580134800086],[-119.35447912204155,53.30977338799326],[-119.35461069474768,53.31200035175681],[-119.35082885084283,53.31413319758129],[-119.34550941540665,53.31547685477297],[-119.3446098004637,53.3183925499437],[-119.34543147770698,53.32255776582814],[-119.34675004836954,53.32711770397487],[-119.34806893371702,53.331963993814014],[-119.35048855201175,53.334632166029245],[-119.3540769424487,53.33803702256748],[-119.35768655930445,53.34236337117954],[-119.36232654509963,53.34581893182835],[-119.36396452496547,53.34655313363208],[-119.36837238010128,53.34813203418503],[-119.37308858068211,53.35072999498687],[-119.3754284403754,53.35305715743998],[-119.37677582391834,53.35391106731181],[-119.38044236981575,53.35645902886412],[-119.38306423821625,53.358728596492845],[-119.38712536389195,53.36127300208307],[-119.38952390780007,53.36188998202756],[-119.3957520722604,53.36373960817853],[-119.3986523736167,53.36549655022527],[-119.40201248559036,53.36644636175934],[-119.40383510295008,53.36649541096468],[-119.4066846605055,53.366073251086725],[-119.41001600475461,53.36508652091589],[-119.41855602227407,53.3618431984714],[-119.42774935776399,53.35750815546501],[-119.43442604513535,53.356782662590824],[-119.43881120331338,53.35630077240977],[-119.44595697904892,53.35557021736787],[-119.45436545014317,53.356147682601375],[-119.46472573676682,53.358371771402894],[-119.47068322397189,53.35993351845655],[-119.47702790489055,53.362120957218536],[-119.4819111050856,53.36271678341418],[-119.48905661433795,53.361987550191856],[-119.50170919937301,53.36407639741558],[-119.50894882740737,53.36763009996743],[-119.51471621236375,53.37004813596278],[-119.51549886841441,53.37026922238829],[-119.51954731104594,53.36755814151558],[-119.52466485805907,53.36575691348817],[-119.53784247135545,53.365037750454086],[-119.54635521921391,53.365836391660366],[-119.54856486753523,53.36621981328704],[-119.5544499182611,53.36886832231355],[-119.55782886280065,53.37089898255469],[-119.56311289597099,53.372344436949255],[-119.56867468145134,53.37316348864682],[-119.5730131448736,53.37495993095274],[-119.5771632560247,53.37670437779729],[-119.58263877866135,53.378092880571884],[-119.58312059125296,53.37820667577228],[-119.5901711513162,53.38186560397915],[-119.59729273771619,53.384272520461835],[-119.60542762176448,53.38450128467349],[-119.6078810430413,53.38299395822989],[-119.60497191529889,53.38153297937634],[-119.60299618498692,53.378116592716665],[-119.598110644395,53.372953199443515],[-119.59247592547028,53.368941446939175],[-119.5924181455096,53.366544014467664],[-119.59599870174877,53.36428565848002],[-119.60572255791428,53.363189791848804],[-119.61537670998649,53.362946535576874],[-119.6174506770929,53.36213463231163],[-119.62026962953526,53.35960237621496],[-119.62214951129718,53.35827435094868],[-119.6244652057314,53.35985269186698],[-119.62452622266444,53.36214109225264],[-119.62764579238532,53.36480189763478],[-119.6323475858627,53.366305155812924],[-119.63763107596601,53.36706496935508],[-119.65112272822817,53.36804750562241],[-119.66345743753065,53.36858202341532],[-119.66749376728905,53.36929296868531],[-119.67626724790016,53.372993436231035],[-119.6783574988343,53.37669053283857],[-119.67852171281056,53.379719814946846],[-119.6800434683302,53.383076690551974],[-119.68304832844588,53.384822536053534],[-119.68708669360973,53.38593435969536],[-119.69141991267243,53.38709881136283],[-119.69279399511191,53.38902987966355],[-119.69389351006126,53.391077374812966],[-119.69619241541955,53.39128437528884],[-119.6977237473708,53.391162100315555],[-119.69848119772865,53.39075241868788],[-119.70712211846067,53.3881144251439],[-119.71559905238777,53.3874742054484],[-119.72318832755708,53.38872204142167],[-119.7254281694555,53.390133829955104],[-119.72595830796102,53.39235722452015],[-119.72661851986472,53.39583700109679],[-119.72760431142328,53.397543478036724],[-119.72967871913528,53.40026958957195],[-119.72965755192718,53.40284284196878],[-119.73010603201011,53.40591942731735],[-119.73344132658254,53.40892229616135],[-119.74010539531798,53.41183508558616],[-119.74078828831125,53.41222927665035],[-119.74391441397178,53.41471409939253],[-119.7450388915603,53.41813823701593],[-119.74729664450885,53.42046080384523],[-119.75039734111019,53.421801432218395],[-119.75494310652961,53.42370826461033],[-119.75596832787994,53.42638251000486],[-119.75784171476698,53.4286491954972],[-119.75961027330261,53.430298544848974],[-119.75988010384701,53.43377820774625],[-119.75716713479362,53.43603171979008],[-119.7564658818896,53.43860623722332],[-119.75764370694016,53.43985118885481],[-119.76045712250829,53.44119998101837],[-119.76637026830551,53.44452244639912],[-119.76933232528981,53.44803518583954],[-119.77019049898689,53.451741812584835],[-119.77143362622063,53.455101968768815],[-119.77401031559668,53.458564532551854],[-119.77676160358483,53.46156832695682],[-119.77857359523601,53.46498117122342],[-119.77925055374823,53.46869109281816],[-119.78016755114217,53.47068228932754],[-119.78616542752526,53.47336854576877],[-119.7891898841809,53.47546182554038],[-119.7899253028579,53.47796634339072],[-119.7894102806429,53.48031619224009],[-119.78723991097377,53.481764318832106],[-119.78135171893032,53.483642315492155],[-119.77736287717768,53.488755763487354],[-119.78015273645555,53.4932508113364],[-119.78480973851967,53.49497903575908],[-119.78787662693614,53.49546694242311],[-119.7924873898003,53.49577101446236],[-119.79911920101098,53.496457971088056],[-119.80066300310682,53.49678633416397],[-119.80639526941003,53.49976331371366],[-119.80980849899622,53.50201612441724],[-119.81147052556449,53.50308590349315],[-119.81680070388441,53.505611834142755],[-119.82285252348463,53.50972840819676],[-119.82839413779709,53.51607891448491],[-119.83220832709311,53.5191281531635],[-119.8329861386444,53.51941018925639],[-119.83641002720039,53.518518618109866],[-119.84152722429799,53.51601660994751],[-119.84725365079831,53.511738892086825],[-119.84821694095615,53.5080734832237],[-119.85718174232223,53.50290343063716],[-119.86561090568394,53.50282472103716],[-119.86853871667196,53.50468522469758],[-119.87204994893537,53.506706658494565],[-119.8761073949374,53.50821072253778],[-119.88191083648778,53.509705960245],[-119.8888846076613,53.51243538713974],[-119.89034210540964,53.51305100030655],[-119.89718588595998,53.51761606688526],[-119.8992186396675,53.52199057118188],[-119.89947151706045,53.52764785779247],[-119.89605940234325,53.5358530213656],[-119.89167717567754,53.53686358892293],[-119.88729062209825,53.53759043140136],[-119.88257171337283,53.54038186349592],[-119.87723026887622,53.54482943391871],[-119.87666204220203,53.54528878444365],[-119.86884900817215,53.54742545392167],[-119.86161357187214,53.549655480721206],[-119.86021123271101,53.554244500922046],[-119.86110479594674,53.558916886909145],[-119.86314938819994,53.563302744713454],[-119.86808331653104,53.5683948441589],[-119.87322674051,53.57040650193831],[-119.8808828254456,53.57279534274194],[-119.88302265970061,53.57374501541976],[-119.89104171212573,53.57927184191316],[-119.89753378161288,53.58486326887233],[-119.90239686672614,53.59058968315721],[-119.9047409083022,53.595254544783415],[-119.9053597907843,53.5968472866824],[-119.9120054173695,53.603815462796526],[-119.91868142958151,53.60557634794491],[-119.92720915641668,53.60840806746411],[-119.92779105867076,53.61183133166439],[-119.92315843010981,53.61461940156443],[-119.91804627770459,53.61735422071963],[-119.91401795205243,53.61744745174842],[-119.9085583201831,53.61807410429204],[-119.9039199710807,53.62057453005179],[-119.89971951782942,53.621530983491],[-119.89654624456229,53.62138962918057],[-119.89034330748389,53.6195017066445],[-119.88645964667293,53.61839613184963],[-119.8755114327606,53.61838372306955],[-119.87231582915454,53.61767051298075],[-119.8677960206438,53.61416878938824],[-119.86638960647218,53.61183710890284],[-119.85275367377018,53.60870870089048],[-119.84169193526684,53.60834595847061],[-119.83729304819282,53.609304057714844],[-119.8308701307476,53.609756564934344],[-119.8253360307576,53.607178262539215],[-119.81630128243309,53.603601438283356],[-119.80623125973658,53.60414636540355],[-119.80104475788232,53.60436285801229],[-119.79272212164204,53.60214910941432],[-119.78761146469033,53.59756177043448],[-119.78350235170417,53.59462818260774],[-119.7796129435675,53.59277526790129],[-119.77402776002042,53.5917979982205],[-119.76451629265001,53.5918714042496],[-119.75098422338591,53.59250216305876],[-119.74363966371934,53.59444619683483],[-119.74053686734827,53.597500810596785],[-119.7372949481397,53.602494671529996],[-119.73277572526416,53.60596228554827],[-119.72942980473262,53.60667438277603],[-119.72331878034085,53.60797534260347],[-119.71537758061143,53.609813362810456],[-119.71295580987575,53.61296961500571],[-119.71301411628664,53.61571442626572],[-119.71412423118524,53.61753510943605],[-119.71685833428144,53.61968416639822],[-119.71853116238314,53.621103134159206],[-119.7205045759736,53.62325534894325],[-119.72217908047368,53.62506961888372],[-119.7230904161231,53.62700230429582],[-119.72574359165971,53.62949432839125],[-119.72952985892842,53.630725548525284],[-119.73242180806047,53.63132718638685],[-119.73300625924216,53.63189371147644],[-119.73450993269384,53.63393944411563],[-119.73523546073584,53.636101203393814],[-119.73577339539375,53.638499397675474],[-119.73747348920286,53.641571385091424],[-119.73834151548289,53.645219905759525],[-119.73802536432333,53.6481383712345],[-119.73530471316678,53.65135585537718],[-119.73615106881736,53.65403333392242],[-119.73729463534775,53.65807861979996],[-119.73582130500628,53.660894250925125],[-119.73653819793307,53.662711400525154],[-119.74023119767077,53.66377414724631],[-119.74535871867202,53.66532510553828],[-119.74623631595479,53.665667342624566],[-119.75261207939107,53.666817723613896],[-119.75680430143397,53.668721271148485],[-119.75830945987957,53.67128220730996],[-119.76028528951491,53.67354888213841],[-119.76202772941025,53.67422061122897],[-119.7640623678591,53.67477205790827],[-119.76882523833106,53.67673860782379],[-119.76944367929593,53.678104469152224],[-119.77162219746836,53.680651904669844],[-119.77409123890482,53.683091835276166],[-119.77360518267382,53.68675478148229],[-119.7735146065239,53.69103372431689],[-119.77607142428064,53.693298788878636],[-119.77794488660786,53.694426826228344],[-119.78115040449096,53.6957174312443],[-119.78571786861797,53.69778878618827],[-119.78656285195338,53.70029858564547],[-119.7863561936794,53.70372920316586],[-119.78833312419329,53.705599482395556],[-119.79114133531614,53.7065975704003],[-119.79541757790948,53.70828116196632],[-119.79869740935479,53.708365740688144],[-119.80253046071297,53.70719030290558],[-119.80720898765229,53.70606751355312],[-119.8165186102972,53.70444413960083],[-119.82076274310377,53.70120927839412],[-119.83039448242529,53.69729487890215],[-119.83819647409459,53.69791233261871],[-119.84076434346764,53.700230914002326],[-119.84280048887439,53.70398428940171],[-119.843293555465,53.70838398700946],[-119.84307007780161,53.71072184315853],[-119.84488538134352,53.71391114325275],[-119.84673800348445,53.71457871192522],[-119.84989554249927,53.71415186367297],[-119.855863503921,53.71358312064281],[-119.86299521816156,53.713805147990485],[-119.86917309685695,53.71460469160694],[-119.87329997047587,53.71359615187602],[-119.87673444042824,53.712422757131876],[-119.88009141180903,53.711879419874684],[-119.88566258440714,53.71182691216264],[-119.89190532688657,53.71062398906984],[-119.90073601510474,53.70985568454764],[-119.90645289116716,53.71088838777669],[-119.90919340310178,53.71257714592731],[-119.91060543499411,53.714909343499116],[-119.91172959334673,53.71712624501053],[-119.91447770979549,53.71887144635996],[-119.9158905768237,53.72120133512107],[-119.91590532291102,53.721831109649706],[-119.91042186532752,53.72211046290165],[-119.90438689018151,53.723136673881804],[-119.89840996226044,53.7266788804973],[-119.89532897046898,53.72991094430715],[-119.89554754952529,53.73424606273167],[-119.89899689907858,53.73724604150021],[-119.90144770687252,53.7390482926788],[-119.8990005078706,53.741073241125235],[-119.89444047597583,53.74346209122978],[-119.89105086441144,53.7462916185797],[-119.88937782917763,53.748648207851694],[-119.88849788351652,53.75162874957565],[-119.88892111220916,53.75311077983937],[-119.89211349882085,53.75662168206706],[-119.89178410158998,53.75897035608002],[-119.88937369321707,53.76270819659186],[-119.88605584979452,53.76462054563506],[-119.88354506744307,53.767789352413956],[-119.8851496655549,53.77006077671472],[-119.88578535985648,53.77227880187024],[-119.88500010587249,53.77554466232766],[-119.8840115111885,53.778012037598295],[-119.88674152665149,53.7790692689119],[-119.89215530163729,53.779421704976315],[-119.904387075347,53.77856709098867],[-119.91168837166354,53.77780943335049],[-119.91932051626553,53.77802372207228],[-119.92867583818017,53.7779369612778],[-119.93666665467659,53.777575296830385],[-119.94256000346158,53.77746405648651],[-119.94750533623008,53.77872731785854],[-119.95385547093198,53.7813557180247],[-119.95827254924134,53.78405383894765],[-119.96543947222379,53.78821840156278],[-119.9719837523563,53.79089369646243],[-119.97619072071856,53.79273737072508],[-119.97925304656908,53.795106275040574],[-119.97834430793796,53.79705824044694],[-119.9753174323216,53.798976886313625],[-119.97324492753495,53.80105303745478],[-119.97379326378972,53.80327659586714],[-119.97557580405376,53.804572907928474],[-119.97801432314994,53.805348480816754],[-119.98139330164709,53.80543151307943],[-119.98408660062817,53.80529176712032],[-119.9907966997036,53.80356929357293],[-119.9919191804533,53.80235470508269],[-119.99275211475401,53.80102949959245],[-119.99451988713118,53.79872985001587],[-119.99669228265415,53.79722269431335],[-119.99881002016066,53.797257307564244],[-119.99941606005474,53.79781989314464],[-119.9992949309582,53.99995411932169],[-120.00129796570492,54.22588655184309],[-120.00142630374957,54.225879416745336],[-120.00173670846227,54.22582734289846],[-120.00213493899543,54.225728479313375],[-120.00243207585011,54.22559537962351],[-120.00268380438507,54.22540327679183],[-120.00283038977464,54.22525767252246],[-120.00290576866959,54.22515069735673],[-120.00291497618555,54.225021331366385],[-120.00301014595973,54.22488442219378],[-120.00313941236341,54.22473852712031],[-120.00338687811384,54.2246153311549],[-120.00362175905857,54.22463144920264],[-120.00376980173723,54.22471407942011],[-120.00383645248257,54.224944982941345],[-120.00397768668559,54.225127308075],[-120.00420685464894,54.22522237658347],[-120.00452491279735,54.22528981397433],[-120.00498359045949,54.225292273629634],[-120.00530707499952,54.225269503467224],[-120.00564925761125,54.225237532742206],[-120.00589169020904,54.22517534293732],[-120.00606912100821,54.225069475417115],[-120.00614696433277,54.224932273811774],[-120.00615137783876,54.22486224050613],[-120.00612878786494,54.22471276134678],[-120.00605247494852,54.224601087366764],[-120.00592798953814,54.22444938268422],[-120.00596788181001,54.22436087301867],[-120.0061234990118,54.22432530220936],[-120.0063271264925,54.224330877630095],[-120.00652807328309,54.22435486086099],[-120.00681048793057,54.22444188472105],[-120.00712376195266,54.224568648287274],[-120.00743695600718,54.22469597346411],[-120.00780772747491,54.22474577766766],[-120.00813120747038,54.22472299105469],[-120.00857851505657,54.2246445173147],[-120.0090286869735,54.2245066052803],[-120.0093176921782,54.22438939001217],[-120.009478167424,54.22429391941314],[-120.00947683494431,54.2240645678938],[-120.00934978723261,54.22394364469509],[-120.00919374796575,54.22377015290755],[-120.00915438933562,54.22359005665412],[-120.00928602017031,54.22341448399366],[-120.00951521596829,54.2233106137109],[-120.0100787908137,54.22325473294528],[-120.01045156918059,54.22326416664167],[-120.01100649434677,54.22334723262762],[-120.01157342733984,54.22348033400519],[-120.01200328599477,54.22364094435107],[-120.01251210749672,54.22388188267585],[-120.01294536743919,54.22399264629261],[-120.01331576707796,54.22403173334198],[-120.01369056673553,54.22400079459521],[-120.013848725193,54.223934426874116],[-120.01413154663824,54.22379329275042],[-120.01418727431886,54.22371512146277],[-120.01454662682282,54.223206865568415],[-120.0147825281335,54.22276501056594],[-120.01512078671298,54.22229560723494],[-120.01542546599181,54.22208361804782],[-120.01594661131682,54.221908168495084],[-120.01663211850075,54.221835810005466],[-120.0170322862495,54.22169652598541],[-120.0174555367813,54.221478023198856],[-120.01797089316749,54.22114324711894],[-120.01847769881644,54.22070800767727],[-120.019357764991,54.21981408269608],[-120.01996342257404,54.219401709331365],[-120.02055953304772,54.21914789479782],[-120.0213664925109,54.21900900711385],[-120.02220276615915,54.21896035125233],[-120.02287623601475,54.2190368406434],[-120.02320107022427,54.21924337444627],[-120.02342732449645,54.2193983973868],[-120.02379209532091,54.219515851643905],[-120.02404881241767,54.21946107661351],[-120.04160747718697,54.224145334923925],[-120.04178438697711,54.22450862053453],[-120.04234915050317,54.22499044288919],[-120.04303574764694,54.22562997742509],[-120.04346060363534,54.226185837252025],[-120.04375284607616,54.22673854943362],[-120.04351466947878,54.22727812280945],[-120.0434110315016,54.227820927447176],[-120.04328903233618,54.22859716787425],[-120.0433577170013,54.22949516983671],[-120.04375155859256,54.23047883218789],[-120.04430006962478,54.23119361232351],[-120.0450483455536,54.23187437108671],[-120.04579308417208,54.23263306558434],[-120.04652324487475,54.2335860296925],[-120.04685175281915,54.23456871447087],[-120.04691977705217,54.23548521619497],[-120.04715215517093,54.23595911519585],[-120.04765001428332,54.23643817288512],[-120.048424064418,54.23676838945236],[-120.04906530683223,54.23709657675473],[-120.05036812186043,54.237479150574316],[-120.05165456262633,54.23809523213722],[-120.05280299400026,54.23878544792093],[-120.05381498768458,54.23951222425981],[-120.05457102914502,54.24011461686754],[-120.05544503510934,54.24091553807555],[-120.0564737427599,54.24140709141652],[-120.05737692896798,54.241819439327344],[-120.0585418411749,54.24227663151839],[-120.0597667084166,54.242813172253825],[-120.06087891934168,54.243074450742114],[-120.06190774562349,54.243565957834036],[-120.06265829160589,54.24424781594085],[-120.06328366930296,54.24480778096792],[-120.06455866327475,54.2455995913112],[-120.06486056868012,54.24603469629617],[-120.06514787711592,54.246664638889285],[-120.06567693141224,54.24765200506772],[-120.0661005171304,54.24824702992222],[-120.0664822862489,54.248489917673915],[-120.06706578395,54.248698852058816],[-120.06805101892579,54.24887854323762],[-120.06916532659613,54.24909993589525],[-120.07066140582947,54.24960465870398],[-120.07208123080666,54.2502236389322],[-120.07335390729254,54.25103377440364],[-120.07416127911549,54.25183238824595],[-120.07489777961293,54.25270789264811],[-120.07581272932764,54.25389891950761],[-120.07609846675702,54.25456808228225],[-120.07646045780393,54.25508307144919],[-120.07661520613776,54.2557104286337],[-120.07689554735639,54.256457436569065],[-120.07718674144084,54.257048749073036],[-120.077437642564,54.25724980744914],[-120.0779704621351,54.257262337310266],[-120.07883560715818,54.257245577316766],[-120.07990474701288,54.25719268145669],[-120.08090632080555,54.257139859597906],[-120.08224253319796,54.257055022756965],[-120.08364073215651,54.257049058895035],[-120.08477331899854,54.25703799254916],[-120.08650420929371,54.25704035342148],[-120.08689771522177,54.257108986784615],[-120.0877450300069,54.257363820162816],[-120.08851979415292,54.25769377964885],[-120.08942012080954,54.258143925769154],[-120.09023687500749,54.258826554612874],[-120.09157388557846,54.259676679125995],[-120.09254331292038,54.26008970613475],[-120.09345274108313,54.260423373662746],[-120.09456741645097,54.260645095318175],[-120.09627322729733,54.26099784551778],[-120.09730653225867,54.261450459136206],[-120.09913061303214,54.26200166082042],[-120.10007497184473,54.26276514784243],[-120.10036132476462,54.26343313615007],[-120.10076390494989,54.264340529055254],[-120.10103406984514,54.26524260485507],[-120.10136950537745,54.26614729539104],[-120.10151945788697,54.266851351436515],[-120.10179487193592,54.267676692839636],[-120.10213756808875,54.26846373150078],[-120.10295665465405,54.26914636646492],[-120.10354071035644,54.26935456224979],[-120.1049248207282,54.26954374913211],[-120.10696388884246,54.26990465112234],[-120.10873618240919,54.270200869303686],[-120.1138005181842,54.27911113251169],[-120.11375169620206,54.27915540654591],[-120.1136445436951,54.279350802387405],[-120.11361186208968,54.27937675471393],[-120.1135002359401,54.27945505871533],[-120.11343231632911,54.27952481104798],[-120.11334761521468,54.27965780573934],[-120.11333354735007,54.27986390185388],[-120.1133290716632,54.27990863660259],[-120.11335272077076,54.28002665848891],[-120.11341751972684,54.28018095657458],[-120.11344700461858,54.28021778178197],[-120.11339306565534,54.28032474011974],[-120.11337580551024,54.280350874031974],[-120.11335718737607,54.280386489844226],[-120.11320448193622,54.28058979913201],[-120.11312880592847,54.28079458810336],[-120.11311138557447,54.28082183801806],[-120.11299727627716,54.28091744465864],[-120.1128042176647,54.281038440263416],[-120.11267708223447,54.28111712423423],[-120.11256353182573,54.28119533431656],[-120.11241617682603,54.28133427964441],[-120.11232243422906,54.281557305450164],[-120.11232818118691,54.28169243987793],[-120.11237939575976,54.2818471943303],[-120.11237747671706,54.28187407236008],[-120.11237299852466,54.28194577811643],[-120.112219084034,54.28215745194281],[-120.11213765252386,54.282227114741154],[-120.11207284357927,54.282288584536566],[-120.11179954465587,54.28244389537595],[-120.11146775032798,54.28258962488131],[-120.11111501322631,54.28278715596606],[-120.11085648867945,54.28296060522801],[-120.11077697469892,54.283003380175934],[-120.11076211052183,54.283012773114926],[-120.11053563119168,54.28315124877622],[-120.11029244219544,54.283352412380374],[-120.11024377262811,54.283395559997906],[-120.11019566342395,54.28342132039883],[-120.10993825061465,54.283586955417505],[-120.1096792390332,54.28375025580589],[-120.10959891973818,54.2838121046177],[-120.10942061987653,54.28395122658457],[-120.10908304450443,54.284150612395344],[-120.10900480485601,54.28418446680907],[-120.10882834579286,54.284270301368046],[-120.10862439725689,54.284345810993194],[-120.10832606728273,54.28444651520731],[-120.10823176583224,54.28447115651266],[-120.10796291997897,54.28458172414296],[-120.10777039091286,54.28468532447785],[-120.10751119938746,54.284876707290195],[-120.10743159758758,54.28492004251444],[-120.10735207498841,54.28496282413326],[-120.10716026101362,54.28507488239837],[-120.10712693431121,54.28509180263426],[-120.13394111801905,54.29550607636635],[-120.16726134647067,54.29420821535649],[-120.20000570647636,54.2786429714598],[-120.21288534401491,54.272515788839215],[-120.27719231084677,54.26992270380022],[-120.31393568437599,54.27429865821234],[-120.3295511795959,54.282701171262225],[-120.39525071868107,54.2664948704429],[-120.39999578795754,54.26605728975774],[-120.418511934513,54.26434786573474],[-120.43494601403872,54.25462482978379],[-120.42547159122005,54.2429962639008],[-120.43170027370334,54.23477772368251],[-120.44969886548388,54.22998152005668],[-120.4874854672082,54.21604891710258],[-120.50346257654948,54.206298459534096],[-120.52289469681654,54.20741925348729],[-120.54441475913116,54.215241304430556],[-120.56185341554968,54.21281247066207],[-120.56478419450542,54.20955680692266],[-120.56661972375208,54.214966060290976],[-120.56836250478827,54.22022003123686],[-120.57059954207598,54.2234832582815],[-120.57712201865942,54.22617438223177],[-120.57965654408632,54.22741991989964],[-120.58354202435702,54.229884908314254],[-120.58452207771995,54.232516559855],[-120.58177437558277,54.23605100175289],[-120.5789274070709,54.24045257752786],[-120.57892774946714,54.24501733554483],[-120.58086731127077,54.24832986269971],[-120.58340076507328,54.251821615382966],[-120.58181771109005,54.25575853236557],[-120.58191207042042,54.25855728460103],[-120.58571273125068,54.262276246579006],[-120.58814689723259,54.265359052082715],[-120.58892862785845,54.26598695652233],[-120.59252837019729,54.26913059482358],[-120.5953566071063,54.27227569262969],[-120.59739366737834,54.276158244383],[-120.60040116739846,54.28358822158245],[-120.60410585494745,54.289009364276005],[-120.60528021540921,54.2894748677904],[-120.61093055607334,54.290902824633726],[-120.61678543567736,54.2912433678968],[-120.62234996774639,54.29250522844448],[-120.62557795784383,54.29415762794693],[-120.62401216733683,54.29113220627252],[-120.62510037318008,54.28576231519095],[-120.6297915413393,54.28164802699891],[-120.63409574348019,54.28250322436856],[-120.636628311913,54.28439416613517],[-120.63954684878298,54.286050502195465],[-120.64697171714053,54.28867819529397],[-120.65429312327184,54.288901872812005],[-120.6612319151022,54.28707771563535],[-120.66973463996065,54.284737841364816],[-120.67978907876588,54.28364240455313],[-120.6833957322223,54.28500431528638],[-120.68896988466281,54.28906668228849],[-120.69551597301333,54.293863000725665],[-120.7038103556464,54.29505152977011],[-120.71367254293115,54.29522061411745],[-120.72061276218356,54.29481271495622],[-120.72480810102314,54.29629770469045],[-120.72940873983816,54.30040552739261],[-120.72403990961115,54.303847007429],[-120.71807947542372,54.305393846075795],[-120.7103548483098,54.30768118902722],[-120.70469574415696,54.310597175134944],[-120.70244137850085,54.3145418806943],[-120.70293922005708,54.31499483293488],[-120.69228484902467,54.318887404854685],[-120.6833907598694,54.322775281587745],[-120.6855342259306,54.32579797906418],[-120.69150382232874,54.32780182122067],[-120.69483205438834,54.330992841883436],[-120.69326239112237,54.33488646626226],[-120.69482874953614,54.33819819802538],[-120.69687933638473,54.34087515551454],[-120.6994255882103,54.346421711134774],[-120.6940454538343,54.35048163615369],[-120.68572286451146,54.351456956490736],[-120.67809404971837,54.35065619057324],[-120.66958996510354,54.35111934637753],[-120.66284138605138,54.35425553913997],[-120.65658200485811,54.358140655284444],[-120.65901509465112,54.360601502457506],[-120.66184329816505,54.36442732592424],[-120.66351124673801,54.368256084105106],[-120.66546983735584,54.37127994342441],[-120.6692716351752,54.37488764841021],[-120.67484685496991,54.37974079855265],[-120.68062429898298,54.38447668650554],[-120.68345660582709,54.38722387874688],[-120.68972405701936,54.3920165737511],[-120.69403861060812,54.396238641558725],[-120.70108928202946,54.39966321299436],[-120.70676387192492,54.401042016522716],[-120.70872473867807,54.40132488472791],[-120.71704048516555,54.4035995294073],[-120.72399692992065,54.40633576220813],[-120.7325208453405,54.40953464638395],[-120.73344606182671,54.409716150916466],[-120.7341671303053,54.40936214098005],[-120.73453276212973,54.40927350954704],[-120.73503194002085,54.40918503476731],[-120.73545214946043,54.40904822541991],[-120.73603381384754,54.40896555790937],[-120.73645360911794,54.40880177578505],[-120.73724483399906,54.4087000838507],[-120.73803372028271,54.40857133430248],[-120.73874312107625,54.40841331786908],[-120.73952954151166,54.40833386380131],[-120.74010944910981,54.40829489806161],[-120.74076695619043,54.40833002810157],[-120.74117676818975,54.40836456729881],[-120.74204342719392,54.40835369439318],[-120.74270719269033,54.40829475381555],[-120.74332860515078,54.408233981853414],[-120.74352076050675,54.408229921942954],[-120.74386450182237,54.40822117349695],[-120.74431817784489,54.40823064350484],[-120.74552193553797,54.40808156659126],[-120.74623735360349,54.407785641883414],[-120.74666240547518,54.4075501832696],[-120.74704861507439,54.40727037518178],[-120.74739439438495,54.406988822510634],[-120.74787056177094,54.406565782244726],[-120.74830075492032,54.40625979325029],[-120.74880826629663,54.40603012978352],[-120.74927464501081,54.40577398578916],[-120.74966871028026,54.405372105619605],[-120.74997088600696,54.40511337266218],[-120.7502273321012,54.40492453808176],[-120.75061119360076,54.404692907197045],[-120.75079762317472,54.404310148886864],[-120.75085985701182,54.40392989839759],[-120.75125102954173,54.403550349125226],[-120.7516846840859,54.40317150665305],[-120.7522833028021,54.40277394305446],[-120.75245952997615,54.4025614346994],[-120.75284486231381,54.402302910322575],[-120.75302295194217,54.402045562876744],[-120.7531161786708,54.401876642418934],[-120.7531712229526,54.40161287055915],[-120.75342612738295,54.40145091550823],[-120.75360763938711,54.40116676370922],[-120.75374329055946,54.400953628943526],[-120.75395576024229,54.40083588660064],[-120.75416808581934,54.400719260696825],[-120.75429937044561,54.40055534792342],[-120.7546035491474,54.40029556935643],[-120.75485657446592,54.40017844957814],[-120.75493553481749,54.39999992997492],[-120.7549497299101,54.39996460645432],[-120.75495989705414,54.39979435351662],[-120.75496326624307,54.39972262879998],[-120.75525970503725,54.39958379594221],[-120.7554310310808,54.39946989430934],[-120.75551988149165,54.39935019461801],[-120.75561739204,54.39908712826112],[-120.75563185634353,54.398822731328664],[-120.75564983118964,54.39848549281508],[-120.7553429917029,54.398070256091074],[-120.75522612599126,54.397924851914496],[-120.75592782795219,54.39791576883419],[-120.75682902184857,54.39802644497038],[-120.75719196402022,54.39815436812219],[-120.75772964947305,54.39814158171259],[-120.75813887158472,54.39819513274236],[-120.758590658308,54.39820335003978],[-120.75908342817728,54.39823915763406],[-120.759871115222,54.39813268585677],[-120.76070413627491,54.3980045775342],[-120.76120083450502,54.397964184398504],[-120.76182206331312,54.397903318142966],[-120.76190318204576,54.39790456162602],[-120.76219515662353,54.39786097284103],[-120.76294426810871,54.39770790431741],[-120.76320331832211,54.39749782257443],[-120.76353934422207,54.39738201005855],[-120.764039811859,54.397296849660016],[-120.76470814645886,54.397094256529286],[-120.76504231078606,54.39702327834675],[-120.76583801333938,54.396777867990856],[-120.76642108174788,54.3966670520697],[-120.76699823460194,54.39667838110811],[-120.76749248922152,54.39668726817608],[-120.76798481949456,54.39669607054946],[-120.7687280554669,54.396710035499915],[-120.76942069162058,54.39681727312783],[-120.77029087233305,54.396761443691965],[-120.77090965219239,54.39674983704141],[-120.77136818361852,54.39665947785317],[-120.77220013747076,54.396508789065926],[-120.77252923233537,54.39649259784538],[-120.77273828722157,54.39644654794257],[-120.77335691929468,54.39643604571228],[-120.77446796041896,54.39647923777872],[-120.77471231217773,54.396505444745785],[-120.77528087358357,54.39666010261627],[-120.77577030686842,54.39676756813328],[-120.7763761029336,54.39699456332977],[-120.77653678872464,54.39706995562906],[-120.77689886325217,54.39722023949976],[-120.77714018364011,54.397346253031046],[-120.77726045533534,54.39741991086386],[-120.7774168102725,54.39754452547751],[-120.7775328332277,54.39771232773477],[-120.7775293613677,54.39778516993781],[-120.77767679276074,54.39810142411551],[-120.77770288842105,54.39836755700631],[-120.77780011741424,54.39885009885619],[-120.77807399751183,54.399115627750106],[-120.77826378147626,54.3994336968562],[-120.77840669195521,54.399846328421155],[-120.77850311780894,54.40000093663459],[-120.77855803441166,54.400086388695],[-120.77883406088911,54.40033516321601],[-120.77943226792355,54.40068309194985],[-120.7800328916829,54.40098171168007],[-120.7809226165909,54.401335389466226],[-120.78161536256448,54.40144255776124],[-120.78239444466101,54.40155566675346],[-120.78333967286063,54.401595036432006],[-120.78382196642043,54.40182006813172],[-120.78455001298745,54.402075834970795],[-120.78503726219385,54.40220113274886],[-120.78560354132745,54.402405048474975],[-120.78612686233814,54.402657654051424],[-120.78652041620197,54.403002396930674],[-120.78667181770741,54.403242446995826],[-120.78709499714127,54.40378047629415],[-120.78739705739515,54.40431219697758],[-120.78757824534279,54.40477473682191],[-120.78775582475551,54.405280915887715],[-120.7879400027419,54.40572000126311],[-120.78835899842213,54.40635217083772],[-120.78859080419667,54.40664506643886],[-120.78898263382945,54.40698860190204],[-120.78917733061589,54.40720804122618],[-120.78957095368949,54.40755277397298],[-120.78950413958573,54.40803277308512],[-120.78916732764785,54.408169959408866],[-120.78865776091209,54.40844797991041],[-120.78826928465368,54.408778342572624],[-120.78837281380811,54.40916681255471],[-120.7884410394312,54.40940666874749],[-120.7885833144011,54.40984059013618],[-120.78872127043796,54.41032373509258],[-120.78907540334136,54.41064432020729],[-120.78868930644644,54.410925377938064],[-120.78826368802056,54.411182285267984],[-120.78704721190519,54.41156929698431],[-120.78657710450587,54.41187145817822],[-120.78632275574064,54.412014413358705],[-120.78630698522886,54.41227538031198],[-120.78625589641014,54.41249441029575],[-120.78619729307005,54.412802952790045],[-120.78613614681706,54.41316191814186],[-120.786001980573,54.41337963821073],[-120.78578770577205,54.41354227473807],[-120.7854870853574,54.4137292881776],[-120.78573573060343,54.41370736620272],[-120.78618813478016,54.41374245039991],[-120.78631418610463,54.41369506764368],[-120.78668499827192,54.41370195362785],[-120.78713442043458,54.41376048810425],[-120.78742138394529,54.41378736524994],[-120.78799638541761,54.4138479009837],[-120.78812003735025,54.413849822450274],[-120.78877288059638,54.41398330595517],[-120.78913994188089,54.414034940819],[-120.78946869990996,54.41406809241997],[-120.78987678235694,54.41414730673134],[-120.79024236503655,54.41422582503938],[-120.7904050691421,54.414301281169045],[-120.79056223797379,54.41442029428484],[-120.79064129784857,54.41449891074233],[-120.79076119968799,54.414545585925055],[-120.7910489423387,54.41455115202447],[-120.79137918677026,54.41455741170194],[-120.79179102883272,54.414591863191006],[-120.79223969734889,54.414671681376106],[-120.79256619270514,54.41472269428164],[-120.79293553548457,54.414756448064296],[-120.79309794267068,54.41480381464866],[-120.7933436314599,54.41483565077326],[-120.7937484263273,54.414986577691074],[-120.79402103815372,54.41527895678512],[-120.794257289888,54.41547657932362],[-120.79477947256026,54.41572459747523],[-120.79517504629403,54.41602447282573],[-120.79573314638074,54.41641663098349],[-120.79604397200517,54.416758922167354],[-120.79615044562438,54.417048690298294],[-120.79641396213128,54.41753493822185],[-120.79655725980531,54.41794643027016],[-120.7966637401264,54.41823619789051],[-120.7966462353007,54.41857232429802],[-120.79683864052323,54.41884105714047],[-120.79715710355235,54.41906239575825],[-120.7974654325691,54.419455106230714],[-120.79753088076075,54.419793651551466],[-120.79763646300577,54.42010583761776],[-120.79779264727786,54.420278697171064],[-120.79803280863392,54.42040011917413],[-120.79843710859016,54.4205554978226],[-120.79872307608875,54.42060588461638],[-120.79941244167783,54.420834065550416],[-120.79993892449752,54.42098791633411],[-120.80000181676407,54.4210568520556],[-120.8002898035009,54.42138131079404],[-120.80060592175032,54.4216519465686],[-120.80095559545116,54.4220396725828],[-120.80127158147728,54.42231142346287],[-120.80166219244929,54.422681804075374],[-120.80165478547377,54.42293863368853],[-120.8015903855429,54.423354730417174],[-120.80162647114695,54.42424561177979],[-120.80147452030118,54.42471075007779],[-120.80160870176555,54.42537786612184],[-120.80188948335989,54.42565260377894],[-120.80216003446748,54.426130150109024],[-120.80243515529715,54.42652591837647],[-120.8027859865034,54.427103456514665],[-120.80296078659421,54.42777117891068],[-120.80296493109427,54.42848664549716],[-120.8035716820274,54.4290009818523],[-120.80393889548122,54.429281644172775],[-120.80412607358969,54.42972980233971],[-120.80431144315301,54.43022279898706],[-120.80467660475938,54.43050449377278],[-120.80521255435899,54.430783360964604],[-120.80561175342301,54.431209111593326],[-120.8056666444457,54.43175381184493],[-120.80609479329524,54.432440183810826],[-120.80618508226512,54.43313349163534],[-120.80632160317799,54.43375241209209],[-120.80635461745503,54.43395032619857],[-120.80653663492585,54.434470123872586],[-120.80654321918387,54.4351362832219],[-120.80668895001983,54.435606249499344],[-120.80675189598695,54.43598061067683],[-120.80731741300767,54.436485303904],[-120.80776275338131,54.43688381409777],[-120.80783148373126,54.43718206356599],[-120.80780633888573,54.43764025715652],[-120.80711520708623,54.437897154696216],[-120.80679998285753,54.43825989603651],[-120.80614841725746,54.43857125064265],[-120.80545995026745,54.43880691834485],[-120.80501726378674,54.43916647006771],[-120.80451793466614,54.43977401302223],[-120.80419168037626,54.44036085902647],[-120.80392608102791,54.44057636406567],[-120.80390587762054,54.440949428725276],[-120.80405205226566,54.44137000938874],[-120.80373530066987,54.441759629396415],[-120.80365952793063,54.442387469588944],[-120.80379856371897,54.44295596885949],[-120.80387781349455,54.443843068921616],[-120.80468463415272,54.44459947813391],[-120.80522064767993,54.4456430329813],[-120.80462564540356,54.447263848345486],[-120.80569901090608,54.448577332259525],[-120.80674587022551,54.449580878365886],[-120.80687814996755,54.450249020470196],[-120.80680937011435,54.45155538667942],[-120.80656844552303,54.452095344207116],[-120.80563796259678,54.452877670511356],[-120.80511513278176,54.45392888710465],[-120.80477718546453,54.45471399224457],[-120.80494247456544,54.45558004963248],[-120.80471726942903,54.45663720717707],[-120.8048373204558,54.45721836717035],[-120.80488494504634,54.45745395832516],[-120.80522862372385,54.45815131870662],[-120.80588610041893,54.459323552049376],[-120.80574055758014,54.460440247981936],[-120.8046762109905,54.46135948123234],[-120.80313941229738,54.46236637570942],[-120.80232145564806,54.46261112280468],[-120.80129700219368,54.4635814394974],[-120.80115722380175,54.464590582519264],[-120.80076610754081,54.465594627119806],[-120.80051411728729,54.466327245361015],[-120.80053165445422,54.466799610616384],[-120.80047433194562,54.46706778596358],[-120.80000052299758,54.4672575710521],[-120.79952299566102,54.46744607305894],[-120.79887463478181,54.46768231167257],[-120.79792383720824,54.468056118877534],[-120.79698573579876,54.468528153497],[-120.79605619156905,54.46862774267105],[-120.7947128206718,54.46888708638088],[-120.7935074213669,54.469616065401176],[-120.7929111277783,54.47018912390076],[-120.79268594484796,54.470679205882846],[-120.79258459834386,54.471414876029925],[-120.79295714847925,54.47196079021662],[-120.79343687600748,54.47279200352736],[-120.79392039602473,54.47350210202407],[-120.7942023608222,54.474257497183984],[-120.79442470925017,54.4746128391885],[-120.79455225948671,54.47522577280445],[-120.79454175152642,54.47541509537043],[-120.7947960039189,54.47593124982738],[-120.79514210348265,54.476243584410184],[-120.795770601706,54.476561226133526],[-120.79640153799514,54.476783521482204],[-120.79699468272106,54.47698286658546],[-120.797627986446,54.477201887281375],[-120.7982504145703,54.47756754063834],[-120.79880725764636,54.477717043753515],[-120.79962360845833,54.477731628132915],[-120.8000007873102,54.47773872015822],[-120.80013427464203,54.47774104035984],[-120.80181881194855,54.47791163327585],[-120.80256260366512,54.478482308179395],[-120.80328169362718,54.47865217537705],[-120.80481203396884,54.4789991889455],[-120.80533736256672,54.479382002930855],[-120.8064997410336,54.47977171827254],[-120.80756963270842,54.48021812200096],[-120.80899600683895,54.48077400347394],[-120.81006946018887,54.48116214444988],[-120.81113204246259,54.481712631051785],[-120.81146441114596,54.48230280303687],[-120.8118056081921,54.482731653819975],[-120.81213992355065,54.48332190587008],[-120.81238432454245,54.483856681750666],[-120.81235592623993,54.48438659786911],[-120.81232752720318,54.48491651393554],[-120.81229912743218,54.485446429949775],[-120.81235872657352,54.486031739184355],[-120.81342059852528,54.48663494398085],[-120.81422186547185,54.48696880273259],[-120.81539191831955,54.487254318726016],[-120.81601426292266,54.48753115693826],[-120.81682744346209,54.48764878780993],[-120.8182653619442,54.48799393396733],[-120.8191513427457,54.488486310738345],[-120.81965977274936,54.48918835318101],[-120.81992145925496,54.4894038228318],[-120.82044469912782,54.48983587730236],[-120.82089244046375,54.4900064650245],[-120.82132489064222,54.49043578528824],[-120.82176249729162,54.49076314119072],[-120.822470601562,54.49114463886773],[-120.82344708746,54.49164306403991],[-120.82387944036037,54.49207349203066],[-120.82422613143734,54.49239922772578],[-120.82484247984524,54.49283183907356],[-120.82535997024647,54.493371419542605],[-120.82632627484043,54.49402771005644],[-120.82647424918837,54.494222622957246],[-120.82845989068521,54.49393509712378],[-120.83629630385018,54.492209783085734],[-120.83993382013554,54.49129465947738],[-120.84855648377993,54.48997012977275],[-120.85454729691445,54.48995334992271],[-120.85945553860012,54.49040269645005],[-120.87221457954334,54.491469349777695],[-120.87544570262982,54.48809290170471],[-120.87444036868105,54.48398162292349],[-120.87442950453362,54.47923841333327],[-120.87540424065163,54.47665646731354],[-120.87772537787775,54.47112192282083],[-120.87684181866607,54.467402004616275],[-120.87652171964201,54.463517106998026],[-120.88063092353109,54.4605367942465],[-120.88778151654341,54.45864500691473],[-120.90189693894575,54.45832863193626],[-120.9102410725026,54.45779687309463],[-120.91228905881559,54.45653499541063],[-120.91629978678006,54.454070473548796],[-120.92119924629105,54.454059041637166],[-120.926190593993,54.453305725736776],[-120.92932209545648,54.45129824897199],[-120.93609087894552,54.452711243289194],[-120.93866053187156,54.45624902037635],[-120.94093307463572,54.460187567859094],[-120.94516960176455,54.46291406276704],[-120.95302057201812,54.46386787193745],[-120.95574407786486,54.463421407473085],[-120.95600325947811,54.46337823418754],[-120.95563540574832,54.463281064324434],[-120.95537607642949,54.46319960857596],[-120.95491967105377,54.463066215379946],[-120.95465359586716,54.46297661991804],[-120.95427844802676,54.462844339566665],[-120.9539223068107,54.46269937153301],[-120.95371820689188,54.462578655871155],[-120.95347678754115,54.46246200948726],[-120.95314089848658,54.462388608426515],[-120.9527869695252,54.46228863727606],[-120.95247008754849,54.462202548014105],[-120.95214659660488,54.4621072025711],[-120.95186125368306,54.46204823948499],[-120.9516643235827,54.461995180302445],[-120.95140514777749,54.46192831724638],[-120.95104516723114,54.46184605386781],[-120.95078475413254,54.46177352456205],[-120.95054692661209,54.4617064205332],[-120.95021118744144,54.461616176219316],[-120.94991814046786,54.46152545299551],[-120.94952484194187,54.46141485994287],[-120.94928743191923,54.46134440238584],[-120.94876648143058,54.46120045273706],[-120.94846214178807,54.4611856037655],[-120.94810878288588,54.46111258728455],[-120.94778117429018,54.46106645911279],[-120.94751044653601,54.46096767232455],[-120.9471999209859,54.46087734086387],[-120.94699639361112,54.4608150185194],[-120.94665117192152,54.46069181171899],[-120.94625445238752,54.460546260980436],[-120.9459710613344,54.4604559276662],[-120.94570117166872,54.46033471656825],[-120.94527692208698,54.4601610759647],[-120.94494327836547,54.46003834368845],[-120.94449411348674,54.459846826476486],[-120.94394856273085,54.459635593727754],[-120.94370525426308,54.45955028440619],[-120.94335097225063,54.45939076424711],[-120.94307641738811,54.459260371415255],[-120.94286921811708,54.459055301760436],[-120.94267978877285,54.45883188194009],[-120.94234013020629,54.45860110954716],[-120.94219900871447,54.45850431583286],[-120.94200432338795,54.458401932439216],[-120.94179162248238,54.45821010523128],[-120.94167516675464,54.45805482859124],[-120.94156946266756,54.457859579122385],[-120.94149321187525,54.45772393350261],[-120.94143115396113,54.45755182608568],[-120.94135589870692,54.45729833402893],[-120.94133130108139,54.457105325433346],[-120.94133891904531,54.456933862325805],[-120.94147156293965,54.45676983032292],[-120.94158700630155,54.45655680705146],[-120.94165618358876,54.4563418648441],[-120.94169769048115,54.4560999520084],[-120.9417062725437,54.45592066973383],[-120.94163076252576,54.45559082090456],[-120.94159100733066,54.45544209320282],[-120.94158612013145,54.45516794215859],[-120.941395571206,54.45511063815501],[-120.94138215102531,54.45482715118024],[-120.94136843467737,54.454624489140954],[-120.94136794803305,54.454377466264226],[-120.94132296407149,54.45422403051165],[-120.94125349836307,54.45397077811678],[-120.94117066597705,54.45376300350181],[-120.94108423431372,54.45363142580206],[-120.94093902298629,54.45345811372924],[-120.94083251059948,54.45325384737838],[-120.9406803977201,54.45315210397212],[-120.94049813925476,54.45302777760103],[-120.94032193603348,54.45291717502952],[-120.94008116366376,54.45279603392683],[-120.93990772279993,54.45266309044956],[-120.93975177815479,54.45249831316238],[-120.93972263172799,54.452357883765096],[-120.93960193613471,54.4521900778844],[-120.93951744989046,54.45202714264343],[-120.93936012414147,54.45188925317631],[-120.9392071967126,54.451778491807865],[-120.93904863067401,54.45165065506323],[-120.93892034800795,54.451544284272195],[-120.93877265329839,54.45143823039271],[-120.93859067917155,54.4513273853035],[-120.93834483436292,54.45118469748487],[-120.93815350669209,54.45105549950166],[-120.93799837670032,54.45096260881758],[-120.93783884028561,54.450874025964126],[-120.93765603728279,54.45078559974377],[-120.93745797043375,54.45064826151488],[-120.93731772189885,54.45052904176051],[-120.93721808798585,54.45041038528353],[-120.93710827670118,54.45026436026727],[-120.93692936747449,54.45008178382292],[-120.93672293573005,54.44987111836213],[-120.93651978474274,54.449727953443094],[-120.9362080419435,54.44950730021862],[-120.93592640657451,54.44940353929933],[-120.9355516753243,54.44937899451148],[-120.90019704293914,54.431820391586676],[-120.90019360695696,54.43170796873094],[-120.89956806335617,54.41347569733991],[-121.00000592726954,54.408470969820414],[-121.1615493918998,54.40024351381978],[-121.17455705119326,54.44822047863594],[-121.1997453659312,54.45472236688214],[-121.34071713552498,54.49097497761964],[-121.39059488257539,54.49828739502625],[-121.39075188763105,54.498442579389724],[-121.3909851930936,54.498643288408694],[-121.39116901749827,54.4987669392253],[-121.39134277006418,54.49887674271695],[-121.39152693376587,54.499031828523556],[-121.39160681086905,54.499269391512925],[-121.39179211798854,54.49956928927456],[-121.3920967438527,54.4998254321957],[-121.39221405903443,54.500006050512035],[-121.39227387107015,54.50009471980376],[-121.39239588677792,54.50025082589767],[-121.39251844629496,54.50036767388043],[-121.39267206168967,54.50044978156152],[-121.39286689318203,54.50054466625398],[-121.39300053122551,54.50061479744417],[-121.3932424977506,54.500721559666836],[-121.39346524621327,54.50086126371922],[-121.3937424368349,54.50105127698231],[-121.39394369998675,54.50119241417397],[-121.39416385563148,54.5013724196132],[-121.39435488342201,54.50153561480952],[-121.39456467244382,54.50168717246571],[-121.39473693718556,54.50181038104365],[-121.39493065462001,54.50196694314893],[-121.39509066440307,54.50207846667545],[-121.39520296169245,54.50225215869529],[-121.39533393829538,54.502432165999906],[-121.39548635385998,54.502542280341345],[-121.39573452296014,54.50274914996068],[-121.39588556538773,54.50292317951488],[-121.39606503082653,54.50313755854952],[-121.39620319770064,54.50335711399687],[-121.39635290597369,54.503560270681405],[-121.39663412431186,54.50380092859565],[-121.39682088959272,54.50395049158812],[-121.39707253975484,54.50405761001204],[-121.3972765046484,54.50414048619149],[-121.39748558905802,54.50421233255116],[-121.39771473649827,54.504278201086684],[-121.39789867646886,54.504332265705024],[-121.39808977836833,54.50451229023515],[-121.39826085421045,54.50466350403497],[-121.39839506321886,54.50474599452807],[-121.39852936399613,54.50486215535676],[-121.39869199979258,54.50498499460244],[-121.39876694858185,54.50509443028977],[-121.39885664788376,54.5052796112752],[-121.39899036917016,54.50541819433047],[-121.39916337103016,54.50551785635881],[-121.39941137137696,54.505743788662095],[-121.39959054525873,54.505840315756764],[-121.39970497458097,54.50602979400133],[-121.3997521875986,54.506161751208815],[-121.39995030917758,54.50631398069352],[-121.40001404218347,54.50636800357063],[-121.40010267220914,54.50644204195395],[-121.4002918297526,54.50665677824405],[-121.40042226100957,54.50685920271957],[-121.40056109194929,54.507073165607935],[-121.40068245273758,54.50725280350913],[-121.40081483725837,54.50736888907713],[-121.400985967456,54.50748531102781],[-121.40108959359576,54.5075812355345],[-121.40120028384538,54.50771782622491],[-121.40133127488703,54.50779458054946],[-121.40156181333691,54.50793456048347],[-121.40176321589675,54.50805773192005],[-121.40201490420954,54.50816484010659],[-121.40223508564331,54.50832799558874],[-121.40258109955094,54.508562098095766],[-121.40276057737032,54.50875963188681],[-121.40289477810815,54.50887690535349],[-121.4030448827439,54.50897345477569],[-121.40316610047405,54.50905096128076],[-121.40331284654836,54.50914289502143],[-121.40355380797713,54.50927652946812],[-121.40371685302529,54.50939600943449],[-121.4038846220939,54.50945618877001],[-121.40407475168945,54.50959352065655],[-121.40419589560929,54.50968897886594],[-121.40439838559665,54.509871664301826],[-121.40462126997562,54.5100281830615],[-121.40482525075453,54.510145834533006],[-121.4050486209597,54.51024625930286],[-121.40526885439718,54.51037462131569],[-121.40546054748211,54.51051537618067],[-121.40556524433396,54.510619192025],[-121.40567884432032,54.51073007595253],[-121.40582417292057,54.510817464003864],[-121.40607531005676,54.51094698654644],[-121.40631742050199,54.51107055795083],[-121.40647102708644,54.51117060089123],[-121.406615682592,54.51124674030997],[-121.40684751327223,54.51137553513419],[-121.40707537954299,54.51155692498586],[-121.40731716945494,54.51170068214411],[-121.40747022971165,54.511788358631435],[-121.40777050920555,54.511946658026176],[-121.40815596194498,54.51217549145728],[-121.40835798270115,54.51227622919223],[-121.40851044391614,54.51242111507945],[-121.40864532612395,54.512498006680275],[-121.4087686954225,54.512642921042875],[-121.40889146413791,54.51275863488068],[-121.4090373839434,54.51282359632331],[-121.40922135184717,54.51291243178548],[-121.40949962508009,54.513111421624686],[-121.40985615442563,54.513304373212165],[-121.41013385684069,54.51352578436305],[-121.41024382070972,54.51396309302022],[-121.4102251389183,54.51421601318002],[-121.41012907790324,54.51438073750655],[-121.4098561379429,54.51454891641179],[-121.40982674336244,54.5147935785507],[-121.40989446651378,54.5149678228317],[-121.40999805738366,54.51508169240144],[-121.41005645083533,54.515235386049575],[-121.41020960915998,54.51556433955208],[-121.41027512856814,54.515775533995196],[-121.41037501126851,54.515939763748634],[-121.41050459167481,54.51604675348499],[-121.41070443101952,54.51618443768176],[-121.41085638685936,54.51628216746813],[-121.41095943148024,54.51638367103699],[-121.4110967404481,54.51649095031332],[-121.41120851481338,54.51658380374677],[-121.41137228902012,54.51671452102568],[-121.41153011708322,54.51679451486157],[-121.4116656971882,54.516882650729556],[-121.41177922891299,54.51695985847472],[-121.41183268697246,54.517053887930786],[-121.41178418290626,54.517192343872],[-121.41155916873775,54.51741731541994],[-121.41118392160854,54.517563700139625],[-121.41081100345195,54.51767201580136],[-121.41030774675889,54.517766456646264],[-121.40946459948258,54.51777854822166],[-121.40865784499367,54.517950234900475],[-121.40810064418206,54.51817955105798],[-121.40739315263315,54.518486260476884],[-121.40706064675537,54.51868361781961],[-121.40672620616056,54.5188809016423],[-121.40639590419103,54.51904130685477],[-121.40610546464201,54.519140365417414],[-121.40590771657229,54.51919128613534],[-121.40580975155378,54.51928635850482],[-121.4057741175969,54.51943090791533],[-121.40578879277085,54.51969742699596],[-121.40579609815168,54.51990867994322],[-121.40581264417523,54.52002040231394],[-121.40586508830552,54.52012337437323],[-121.40590759557259,54.52026300620595],[-121.405944664449,54.520347444535375],[-121.40610121264886,54.52047340828334],[-121.40631149083663,54.520656380732405],[-121.40656255798218,54.520873430585],[-121.40677138322914,54.521086647496965],[-121.40701592942766,54.521361806704846],[-121.40713382491509,54.521521104886546],[-121.40724301783983,54.52165426469491],[-121.40743373967716,54.52183874417093],[-121.4075221881203,54.521966635104796],[-121.40755835665422,54.522093683363025],[-121.40754071211013,54.52226808696251],[-121.40749349158489,54.522412201222586],[-121.40739398967959,54.522555472781995],[-121.40735038539316,54.522615556217126],[-121.40732677463691,54.522687613309465],[-121.40725135742775,54.5227891455225],[-121.4071947056725,54.522879038550926],[-121.40710563512721,54.52306759092593],[-121.40700002413193,54.52336886609241],[-121.40682753797138,54.52352286079104],[-121.40662964411996,54.5235749001475],[-121.40644910764837,54.523662380603916],[-121.40633030945192,54.52377013723675],[-121.40621218707528,54.52388914141864],[-121.40612434440145,54.52401489492992],[-121.40603028058233,54.52412694783591],[-121.40590064259301,54.52422756328812],[-121.40576902358669,54.52431127078692],[-121.40555269727366,54.52449279363264],[-121.40541705897303,54.524612260876545],[-121.40529838086317,54.52471889898838],[-121.40512567983994,54.524891961452155],[-121.40501449556251,54.52505274789967],[-121.40482255119447,54.525207130860814],[-121.40467192694828,54.52535633400595],[-121.40453033280495,54.525511487701834],[-121.40437852806079,54.525653912817596],[-121.4043119261419,54.52578046411477],[-121.40424607735208,54.525900310358686],[-121.40419683157387,54.52606230330617],[-121.40418867502287,54.526272974943694],[-121.40404762617453,54.5264404932351],[-121.40388494877291,54.526610564659926],[-121.40378006524269,54.5266806869799],[-121.40365616153314,54.526764682802735],[-121.40360417910539,54.52691647265835],[-121.4035638655551,54.527050745766275],[-121.40351624867708,54.527198210892564],[-121.40345834384536,54.527350900194605],[-121.40341408759397,54.527502980603856],[-121.40338663784117,54.52767813765023],[-121.40341530478797,54.527751038323906],[-121.40332007717394,54.527821523550564],[-121.40311730616607,54.527933974918305],[-121.40293666479225,54.52803940281738],[-121.40267233715456,54.52819891602377],[-121.40237838391452,54.52831130293356],[-121.40221983870696,54.52844449459528],[-121.40210071708479,54.52853764686477],[-121.40203041224349,54.528679769178794],[-121.40201621272271,54.52880604663983],[-121.40188417784209,54.528979513295724],[-121.40170332428856,54.52910400953544],[-121.4015846234888,54.5292106439741],[-121.40149102311256,54.52926660027368],[-121.40132848164077,54.52940076287476],[-121.40108074057531,54.529602419717044],[-121.40084605091836,54.52977426711486],[-121.40067540013017,54.529911490520306],[-121.40058765323508,54.53003612244586],[-121.40048865791125,54.53019175341099],[-121.4003581535304,54.53031702056128],[-121.40029236521696,54.530418911923306],[-121.40023315364208,54.53061756245029],[-121.40022505516454,54.5308102810082],[-121.40023163227343,54.53090704020602],[-121.40021750581104,54.53101536474483],[-121.4001806641273,54.53115313457466],[-121.4000714881251,54.53126124857862],[-121.400032985215,54.531310299786476],[-121.39998574807038,54.53136800009228],[-121.39987795397117,54.53146382145195],[-121.39975686542235,54.53164330953948],[-121.39963653021631,54.531816092522206],[-121.39958424142243,54.53200490339084],[-121.399429196761,54.53229645833522],[-121.39925489615108,54.53251771011328],[-121.39915609535791,54.53265426978045],[-121.39899275592931,54.53288154503205],[-121.39873808823025,54.53305824845819],[-121.39999633553415,54.5343782157326],[-121.43216961658136,54.5680385500428],[-121.43287038449425,54.56877057069855],[-121.43267022414,54.56896284781005],[-121.43245328127793,54.56914888713448],[-121.43222317373954,54.56933106804632],[-121.43192057998357,54.569466776626996],[-121.43158373868852,54.569578761861216],[-121.43123317373006,54.56967452306116],[-121.43086757645884,54.56974840026767],[-121.43048688854135,54.56978355827803],[-121.43021974478421,54.569810612281806],[-121.42932469825303,54.57107555308402],[-121.42965061352578,54.57107875101829],[-121.43034527083687,54.57153562042735],[-121.43301986650424,54.57248835126195],[-121.4378737756991,54.574518796805094],[-121.44104493298329,54.576037475196756],[-121.44214565827073,54.576895427518586],[-121.44417420076513,54.58002329012981],[-121.44342413469509,54.58242824198346],[-121.44122114805612,54.585874326340466],[-121.441469478567,54.58907953749869],[-121.44516234971535,54.59150624892358],[-121.44804049392187,54.59315741841988],[-121.4487418429759,54.59411714120314],[-121.45026657813297,54.59633735839167],[-121.453863152934,54.59991825541268],[-121.45676827716976,54.60287189028534],[-121.45484517721961,54.60534109174046],[-121.45253695228217,54.60861290462058],[-121.45395227505747,54.610146707178814],[-121.45722047048355,54.6111028695314],[-121.46045256765846,54.610567379437384],[-121.46625468138951,54.61041424881777],[-121.470689489021,54.610389826985624],[-121.47874364336323,54.60969995777985],[-121.4832863907362,54.610244622918884],[-121.48865876533446,54.61341403431356],[-121.49158459911251,54.617336987529974],[-121.494234627266,54.62235386928851],[-121.49574859762878,54.623998462967016],[-121.49467934355945,54.62452469280353],[-121.49096604837085,54.62603086579769],[-121.48962314016507,54.628046140204056],[-121.49073591893337,54.629801702082354],[-121.49490575304053,54.6314901477751],[-121.49867371559897,54.633298330386154],[-121.49990986116197,54.63563284109226],[-121.50004941680035,54.63803479538611],[-121.50292824516123,54.639163831486954],[-121.50609830982364,54.640052121847326],[-121.50552073250245,54.6411979315075],[-121.50594866626746,54.642398566155094],[-121.50734259465275,54.64358972572807],[-121.50744788495578,54.643764144661105],[-121.51330782629968,54.64651921669597],[-121.51866985192058,54.648429919186306],[-121.52254678401616,54.65040283340931],[-121.52574995144299,54.65284474002112],[-121.51994902944168,54.6535036361802],[-121.51910434947092,54.65580671352806],[-121.5223055633546,54.65841020960503],[-121.52269519121624,54.65840648425422],[-121.5245215733218,54.66091481577892],[-121.52280517095498,54.66350027909894],[-121.52243637673254,54.665156476785825],[-121.5232576708849,54.66703565544397],[-121.5213176067331,54.66853574218635],[-121.52138287274468,54.671626105212695],[-121.51805779022426,54.67325510545219],[-121.51687192122773,54.678229752426944],[-121.51699565968698,54.679087062085216],[-121.51786966245103,54.68388562714479],[-121.5149488949968,54.686076932065866],[-121.50698291539928,54.68739232950594],[-121.49959794348128,54.687956531466014],[-121.49275423047403,54.691089619230375],[-121.48829455413849,54.69477683429717],[-121.48650239621102,54.69913656714204],[-121.48323183531343,54.70361245618492],[-121.4805324255019,54.70757069217826],[-121.47843304578328,54.71159587176232],[-121.47981527253255,54.71655717913536],[-121.48017237276535,54.72050223984713],[-121.4764807698495,54.7235531437866],[-121.47523333131099,54.725796326718324],[-121.47804766655665,54.728117296413224],[-121.48015644503126,54.73005314978585],[-121.48555328210581,54.73356410862824],[-121.49033715655509,54.73628028426734],[-121.49445547571786,54.740363254121334],[-121.49641816162175,54.74504032571313],[-121.49639088236414,54.74880959124083],[-121.49459782456611,54.752882185108646],[-121.49335252793433,54.755529578976436],[-121.49525299532108,54.75682907463329],[-121.4995404648251,54.75827879640522],[-121.50214206632155,54.760438681610665],[-121.50634610174063,54.76321364632667],[-121.51071779855816,54.76489941180353],[-121.5144878721081,54.76567437010491],[-121.51786469337318,54.7663361282091],[-121.52264907993091,54.768817448179384],[-121.52563521136832,54.76976995412321],[-121.52589819961516,54.772912346512726],[-121.52468481601221,54.77670118743832],[-121.52402134658654,54.77847235580581],[-121.52306998660187,54.780304855435865],[-121.52075950803562,54.78341639598239],[-121.51964655277438,54.78713705751945],[-121.52091036665733,54.79182398526183],[-121.5227879714278,54.796614014918575],[-121.52303576397922,54.79946860598798],[-121.53036454795651,54.799878675265205],[-121.53980731361732,54.801810156642865],[-121.54549430168247,54.805086087444124],[-121.54673173766699,54.80719544114422],[-121.54881977213465,54.81266577380216],[-121.5489907441215,54.81666643562093],[-121.551104872828,54.81819702923392],[-121.55529332363035,54.82034106989202],[-121.55917888121866,54.82197135551893],[-121.56533947578777,54.82238192238016],[-121.56741317647885,54.82242967269378],[-121.57316420121276,54.823013595795004],[-121.57794218129047,54.82435219820211],[-121.58329854157728,54.82540616618994],[-121.589185836769,54.82776248475538],[-121.593984671899,54.83007058030975],[-121.59934207382057,54.83083661596226],[-121.60043816255829,54.831109155897806],[-121.6074062023638,54.83259657923633],[-121.61162413283152,54.83566410869363],[-121.61221707479545,54.83581987281073],[-121.61792650125426,54.83927239057166],[-121.62709206383103,54.84171640937676],[-121.64023978101736,54.84538675816523],[-121.64392933535899,54.846854642217345],[-121.64470790477196,54.85096606054478],[-121.64758270885727,54.855223334421055],[-121.66009212796669,54.85701985437377],[-121.66677289396398,54.85861922541909],[-121.67228275702064,54.861667013332664],[-121.67428358295555,54.86256299004557],[-121.68451663560765,54.86843254638076],[-121.6880961376177,54.873323666234334],[-121.69367033283324,54.878598469127475],[-121.6973774560664,54.88038829854456],[-121.70523275115126,54.88158659863891],[-121.71207633362746,54.881699124606754],[-121.71618199960972,54.88372658450288],[-121.7192789538707,54.884785482826516],[-121.72445979391368,54.88582681603909],[-121.72807912255675,54.88757670940906],[-121.72892450738286,54.88579305707134],[-121.72845237848814,54.88299447804662],[-121.72961488306196,54.88161670617527],[-121.73516526238808,54.88197035223367],[-121.73954817028591,54.882561633345134],[-121.7436006204241,54.882127195001516],[-121.74411687391168,54.87914742950481],[-121.74014951317744,54.87460378015734],[-121.73818022101545,54.871304772592616],[-121.73756941623574,54.870565665837304],[-121.73939545115823,54.86837610569539],[-121.74498174970944,54.86598432204006],[-121.74991379941643,54.86102091543892],[-121.75491677905869,54.858806063316266],[-121.75944703885364,54.85796583888108],[-121.76242721669244,54.85399384875509],[-121.76997864696266,54.85147117244962],[-121.77432425361347,54.85074077050117],[-121.77771289572584,54.84808379847303],[-121.78011604646771,54.84091469799349],[-121.78508880611336,54.838347720465826],[-121.79222577615211,54.83857377736343],[-121.79570106885184,54.842605294846244],[-121.79892801293974,54.84904233608228],[-121.8016355694716,54.85416027715263],[-121.80295098494274,54.85535380573774],[-121.80815314014039,54.85753214817295],[-121.81911858342869,54.859950767893665],[-121.82655375853284,54.860507889249604],[-121.83144538639418,54.86161571892986],[-121.83928266997732,54.86222155257306],[-121.84689405792903,54.86518841470705],[-121.84965797711227,54.864931521419145],[-121.85587987956931,54.86436012364985],[-121.86418426325606,54.867142760007155],[-121.86995833704228,54.86851192426245],[-121.87183280681542,54.87192195501492],[-121.87056270734466,54.87594457666683],[-121.87261137232211,54.87872327221034],[-121.8732991198984,54.88180636833463],[-121.86863727342985,54.885168029439356],[-121.85777063098097,54.88996353917712],[-121.85718345803645,54.89019508879806],[-121.84166221736606,54.89577513524764],[-121.83661428482142,54.89965218503898],[-121.84061416748173,54.90110629529552],[-121.8539528446681,54.89943741414065],[-121.86525671850234,54.8994398804018],[-121.87028664581877,54.90231845912393],[-121.8703730644603,54.90500453226971],[-121.87092439089443,54.91065855671425],[-121.86573141227952,54.91305121979415],[-121.85773892226744,54.91478439833875],[-121.85007363661022,54.92080868069984],[-121.84798334185186,54.92454336533713],[-121.8459470652679,54.92988619497586],[-121.84746465438553,54.93113079119905],[-121.85229410460522,54.93354559521079],[-121.86260895273358,54.93687996915209],[-121.86643614914972,54.94267962778643],[-121.86953286653412,54.94704581199407],[-121.87269364691694,54.9537113344802],[-121.87499275807316,54.95438039737645],[-121.87948186376615,54.95479044968843],[-121.88994911895232,54.95623391992058],[-121.89713515847251,54.957881636132406],[-121.9009280523478,54.962539206854636],[-121.90225397459834,54.96338183599793],[-121.91057397002331,54.96639439413542],[-121.92004373538013,54.974191279967],[-121.9196032048022,54.97980310487155],[-121.92137332520701,54.98247279724573],[-121.92806317330452,54.987547939363075],[-121.93291599524797,54.9903099416838],[-121.94005348735932,54.99298524267973],[-121.94105330029659,54.9966253368456],[-121.9383975364868,54.99791106443989],[-121.93584229283,54.9989757099938],[-121.93589730856633,55.000458121020365],[-121.93892330925357,55.00111386261534],[-121.94125348619265,55.002760680066196],[-121.94406614770561,55.0044501888972],[-121.94597649101686,55.006217737062364],[-121.94909803164143,55.007962105605216],[-121.95339212795064,55.008973049222526],[-121.95977376506603,55.01030327879195],[-121.96397406269963,55.01147229213303],[-121.96627718130982,55.01277672417604],[-121.96995838261168,55.01726659059726],[-121.97197001205122,55.018507567466],[-121.97458603955545,55.020145039435256],[-121.97723044223436,55.022761434510016],[-121.97971203717455,55.02291386171061],[-121.98549065023204,55.02338858744892],[-121.99139441746695,55.02529379247761],[-121.99407559075841,55.02533574117672],[-121.99764547136654,55.024966702402914],[-122.00012430408123,55.02483149208482],[-122.00247793044244,55.027231511362764],[-122.00545608381427,55.02871845702739],[-122.00824570614036,55.03020821702252],[-122.01042350777658,55.03089755482051],[-122.01270344757727,55.03198494526494],[-122.01448887532254,55.033469117407996],[-122.01646739726199,55.03506714664061],[-122.02164268414046,55.03770107566211],[-122.0219281487011,55.039747059385576],[-122.02132257519841,55.041907975693526],[-122.02221570054095,55.04368635519572],[-122.02399262344197,55.04574434365227],[-122.02398388619115,55.049503632998935],[-122.02655527399426,55.05115638777875],[-122.02904465616616,55.05236679162121],[-122.03281457996671,55.05430008765689],[-122.03460290441375,55.056412093150705],[-122.03637593204486,55.059322141877374],[-122.04005923763354,55.06086659216898],[-122.0443295688442,55.06235788966575],[-122.04642036854615,55.06395894341528],[-122.0511877585134,55.06664124969721],[-122.05687664632902,55.067620992055325],[-122.06322913471139,55.069052229170346],[-122.06611666915222,55.07184464315896],[-122.06939818963134,55.07447002700989],[-122.07078267258409,55.07510611243205],[-122.07685395954876,55.07750566902031],[-122.081928062993,55.08030405598737],[-122.08520360025273,55.08333253205615],[-122.08948975549963,55.08583651290075],[-122.09585706883821,55.08926722542395],[-122.1016316952294,55.09200602841743],[-122.10451528850253,55.095371509025064],[-122.10280439661297,55.09777611767254],[-122.10350152781444,55.09902721469888],[-122.10628926067467,55.10062210823206],[-122.10927502261372,55.101307988472726],[-122.11546692252733,55.10153800035427],[-122.12214400979009,55.10228530914192],[-122.12452508810884,55.10468350055899],[-122.12472642314162,55.1053716660036],[-122.12662062192403,55.106453651186094],[-122.13229918331245,55.1054824619406],[-122.13201281988056,55.102234648622904],[-122.13221356165157,55.097844644528976],[-122.13571022777333,55.09369199480499],[-122.14049002031805,55.09403826351683],[-122.14687514819754,55.0942099495762],[-122.15135050882624,55.091648430687506],[-122.15424904912307,55.090114479516245],[-122.15433784785549,55.0934726930362],[-122.15484590668757,55.09523795446199],[-122.15942954436599,55.09616056538006],[-122.16689688588806,55.09769254102423],[-122.17038048854245,55.10208865802475],[-122.17037625748564,55.1071037123344],[-122.172167926402,55.111268060187165],[-122.17555325616748,55.114063989332806],[-122.17954253685124,55.1169681296341],[-122.17975049902591,55.1194237939692],[-122.17575438696525,55.12272785732666],[-122.17455339674865,55.126261564647],[-122.17714050480683,55.12968773028849],[-122.18312341863195,55.133334945882666],[-122.1892200206718,55.13612405861157],[-122.19629949632353,55.13835084845726],[-122.20867629984947,55.14001243453844],[-122.212763823676,55.14091773023267],[-122.2213434588732,55.14160982456676],[-122.22702842829386,55.141603319933],[-122.23230654333257,55.13887487481714],[-122.2442765646871,55.131737695935314],[-122.25485127005123,55.13042451447615],[-122.26482938357252,55.13248356539676],[-122.2685275240783,55.136577957899824],[-122.2692389419817,55.14079779495481],[-122.26903709105488,55.14569889445259],[-122.26984301936426,55.149580663338305],[-122.2733481006092,55.15408172076991],[-122.27674982990442,55.1566418206245],[-122.2847352768405,55.16159970559494],[-122.28994384194274,55.16542451224556],[-122.29324764912909,55.170439204756846],[-122.29225565201253,55.17385443074538],[-122.28917150385635,55.17688423295897],[-122.28757980129068,55.17910633265735],[-122.28777964560868,55.181041056651296],[-122.28577744358074,55.18360971569348],[-122.28349676552212,55.184582159981794],[-122.28348109686944,55.18492258846954],[-122.28229322645977,55.186178879073275],[-122.27561312412016,55.190060678991195],[-122.2740104087208,55.19017411967144],[-122.26781453240288,55.19085841167136],[-122.25702052691035,55.19114384919376],[-122.24812716522199,55.192346980785786],[-122.24763648660303,55.194566001951685],[-122.25024572803035,55.1968516600456],[-122.2533287591398,55.1989631405145],[-122.25753166092996,55.201583724149664],[-122.25914345546184,55.20443123287404],[-122.2605450565275,55.207676094358554],[-122.26265096882085,55.20979379973975],[-122.26545297493381,55.210362425779984],[-122.26755070504659,55.21036261197629],[-122.27314517977358,55.21058423759465],[-122.27754017169603,55.21251905951137],[-122.27963728401258,55.214402933877416],[-122.28164096314723,55.21559320635183],[-122.2864417677421,55.217414224487875],[-122.28905493387357,55.2176447295311],[-122.2947442518907,55.21821804642786],[-122.29985045951125,55.21964392842617],[-122.30455289444537,55.221003769650686],[-122.30785019863218,55.221003010784315],[-122.31345165746761,55.22064885062042],[-122.32034731545484,55.222701014049335],[-122.32726597325698,55.22537243307339],[-122.32885550801842,55.22628053988178],[-122.33697968380324,55.22958798584919],[-122.33807177139767,55.23011464195283],[-122.33840314343678,55.23002796066839],[-122.33901757584385,55.23001688805178],[-122.33976260661781,55.23030456420401],[-122.34036153424469,55.23057223945524],[-122.34051799109965,55.23065197053096],[-122.34062574429508,55.23070335701582],[-122.34084725486974,55.23080518494286],[-122.34096236883808,55.23086239423885],[-122.34097325610117,55.23087280638357],[-122.34098984142912,55.23088562876167],[-122.34126697819907,55.23100479040885],[-122.34182519109835,55.23124322753916],[-122.34210233280433,55.23136238733034],[-122.34213194290561,55.231362136549336],[-122.3423390101387,55.23136261755749],[-122.34266855394425,55.23136109195339],[-122.34283027328085,55.2313613604222],[-122.34296051701428,55.23136070350628],[-122.34319031032744,55.2313932482277],[-122.34329152760652,55.23155993673281],[-122.34318608852669,55.23185174653975],[-122.34303580541757,55.232072716013896],[-122.34300643513647,55.23215707354974],[-122.3430714242406,55.232201594128504],[-122.34316928152933,55.232275113864226],[-122.34329844695364,55.23237310151402],[-122.34341031430831,55.2324660953345],[-122.34349233288613,55.232540270621286],[-122.34356492213664,55.23260968343555],[-122.34372583633014,55.23268393443514],[-122.34392768894848,55.23272014178279],[-122.3440084496616,55.23272139356341],[-122.34409066923548,55.23272829478532],[-122.34426691223601,55.23274244388511],[-122.34438878283972,55.232747145951436],[-122.34442656816113,55.23274377081554],[-122.34449800084282,55.23273914158641],[-122.3447395359044,55.23272941780869],[-122.34511505021506,55.232721386653004],[-122.34539138641948,55.23271941185002],[-122.3455116963815,55.232719581677635],[-122.34565625981477,55.23273504095063],[-122.34590129335515,55.23277363461469],[-122.34612604457023,55.2328183600972],[-122.34627447795758,55.232856358758596],[-122.34637837497716,55.23288520017223],[-122.3464598839371,55.23289992820621],[-122.34652823153382,55.23290754177884],[-122.34656137087907,55.232911878837506],[-122.34658412905478,55.232900212534474],[-122.34664952164734,55.23287522089198],[-122.34671450769882,55.23285470257421],[-122.34673261989036,55.23285074909338],[-122.34684126472617,55.2328707589309],[-122.34710400599184,55.23290987008888],[-122.34737512498957,55.23294362000738],[-122.34769695103981,55.232962037959034],[-122.34815926913322,55.232975608080935],[-122.34855096740168,55.23298486135116],[-122.34878341501465,55.23298831888298],[-122.3490351296017,55.23299682662607],[-122.34925133108537,55.233005413169906],[-122.3493103505296,55.233007144884816],[-122.34939151814979,55.233003919806954],[-122.34957600149298,55.23299251269504],[-122.34974697990006,55.23295604005007],[-122.3499102151815,55.23287448719384],[-122.35006018627206,55.232786938432],[-122.35011282059637,55.23275035756535],[-122.35010438067329,55.232778142995414],[-122.35010656474383,55.2328410010182],[-122.35014174859555,55.2328880072713],[-122.35016454416561,55.23289764653219],[-122.35022810721763,55.23289278317654],[-122.35035709907207,55.23288423241732],[-122.35042252787787,55.23288054501186],[-122.35044674466978,55.23287452742255],[-122.35054361176502,55.23285045701796],[-122.35066282966855,55.232819192861484],[-122.3507113646032,55.23280603924164],[-122.35078459974973,55.2328250070117],[-122.35093697218039,55.232863115515684],[-122.35102190990918,55.23288354767477],[-122.3511220398079,55.232888726833615],[-122.35134353417469,55.232904192889144],[-122.35160800518031,55.232924282704836],[-122.35184473108829,55.232945801083225],[-122.35198173290716,55.232957667248144],[-122.35201300703275,55.232960826830904],[-122.35205032402475,55.23298434731987],[-122.35212299081941,55.23303133058544],[-122.35216040940519,55.23305373269739],[-122.35221155975975,55.23305523232374],[-122.35231966098573,55.23305952288527],[-122.35237081135358,55.233061022446165],[-122.35242413196097,55.2330603429714],[-122.35254196838147,55.233066040054936],[-122.3526432546466,55.23308022241892],[-122.35282968300919,55.23311259893779],[-122.35318836358937,55.23318142088459],[-122.3535004379739,55.233242147963495],[-122.35368137146327,55.23326987685489],[-122.3538534827009,55.233286133769916],[-122.35398851893487,55.233297940075815],[-122.3540316989114,55.23330032670216],[-122.3540543537289,55.2332897773793],[-122.35408952242243,55.2332717455198],[-122.35414249849883,55.233253114129134],[-122.35420677148574,55.23324042032179],[-122.35426670414239,55.23323208457494],[-122.35429455102067,55.23322953656501],[-122.3543184632298,55.233226873260385],[-122.35441027877184,55.23321498636444],[-122.35453987916054,55.23319972119636],[-122.35462467722532,55.23319996302753],[-122.35471158487037,55.233220450309936],[-122.35481362293234,55.23324810870228],[-122.3548600278466,55.2332584387388],[-122.35486481456758,55.23327091345623],[-122.35487055473395,55.2332946292731],[-122.3548732727356,55.2333081647011],[-122.3549500808655,55.23335302489615],[-122.35519186373149,55.23347111815035],[-122.35548924074308,55.23358523273506],[-122.35568605871201,55.233633607590335],[-122.35585182333809,55.23363285604672],[-122.35612483869347,55.23362403210244],[-122.35650382886362,55.23364297979066],[-122.3568943615447,55.233686933209015],[-122.35713795093216,55.23371985542155],[-122.35721200137435,55.233729872626576],[-122.3573486021581,55.23374620628139],[-122.35770362287812,55.23379023877072],[-122.35809375309384,55.2338386618234],[-122.35831610849084,55.233866474903],[-122.35856777219169,55.23389738794485],[-122.35902418757189,55.233954475784486],[-122.3593948497196,55.23400008236142],[-122.35952368405299,55.23401506502404],[-122.35956497018375,55.2341037353882],[-122.35964945259317,55.234303558205],[-122.35985728881171,55.2344699864217],[-122.3601824188885,55.23462638968396],[-122.36048161402383,55.23480782361467],[-122.36059701379159,55.234884084290435],[-122.36069601869632,55.23479278982347],[-122.36089806320305,55.234609197384515],[-122.3609970667485,55.23451790268006],[-122.36106510339862,55.234572594115605],[-122.36120273979974,55.23468650781815],[-122.36128716797417,55.23475625552348],[-122.36137131770322,55.23474189665362],[-122.36158784702539,55.23470337593888],[-122.36186732126752,55.23471042645014],[-122.3622465037506,55.234814581532675],[-122.3626729064561,55.234920115765],[-122.36301139457731,55.23497261985075],[-122.36322619339404,55.23499683907829],[-122.36330221513411,55.23500691016637],[-122.36334842193905,55.235019473747876],[-122.36351761111231,55.23506814955871],[-122.36381927164449,55.235135273413356],[-122.36422157620778,55.2352019733942],[-122.3645615305419,55.23526012252662],[-122.36468739216922,55.235286225910784],[-122.36472572993138,55.23529855905946],[-122.36479266939352,55.23532181957338],[-122.36495606889517,55.23532547185092],[-122.36523373638241,55.235308914405195],[-122.36557122802856,55.23532886429611],[-122.36599164887348,55.23539160233579],[-122.36636201487458,55.235528004826506],[-122.36653618207654,55.23571810647386],[-122.36657572007131,55.23580448036108],[-122.36660694363975,55.235830060852805],[-122.36666762555161,55.23587892765121],[-122.36670101885213,55.23590232885618],[-122.36677174711822,55.23590551534348],[-122.36691900506925,55.235913178889824],[-122.36698983443091,55.235915246896816],[-122.36702318057374,55.235917341798164],[-122.36710581484449,55.23591975439998],[-122.36727880478705,55.235904621337156],[-122.36754851008082,55.235845216537406],[-122.367745316887,55.235784804542945],[-122.36783183808032,55.235766025310575],[-122.36790579391584,55.23577715451538],[-122.36794060230677,55.23578489838676],[-122.36799871210457,55.23584041725082],[-122.36811473012507,55.23595369161315],[-122.36832483726808,55.23605177106325],[-122.36863195883325,55.236145953539186],[-122.36879581000052,55.23621016435663],[-122.36880650389281,55.23622281078717],[-122.36881159831809,55.23623192989705],[-122.36896501076916,55.236258832771114],[-122.36927385622114,55.23629027078529],[-122.36949053235472,55.23631565497698],[-122.36964157412554,55.236346973047425],[-122.36984720148116,55.236385489911335],[-122.370023417533,55.23642202713795],[-122.37016194823184,55.23646082871288],[-122.37034245196647,55.23651543141579],[-122.37056750240932,55.23657918229532],[-122.37081036223074,55.23664233086364],[-122.37099011153293,55.23668345492918],[-122.37112632414875,55.23670424691368],[-122.37126283973276,55.23672168366923],[-122.37132529592465,55.23672911150417],[-122.37136600838349,55.23673702654538],[-122.37146080230893,55.236757731643415],[-122.37166174208743,55.23678265307001],[-122.37198189333462,55.236863751186824],[-122.37221925681874,55.23700971305992],[-122.37229725100322,55.2371072976097],[-122.37231500911606,55.23712912006767],[-122.37232373680867,55.23714170883707],[-122.37242988317074,55.23718965537831],[-122.37272446096556,55.23727000593024],[-122.37302771734142,55.237341638289145],[-122.37313805225752,55.237365037623114],[-122.37317079457542,55.23737384104818],[-122.37339333155906,55.237421815069936],[-122.37381257598307,55.23749794705893],[-122.37416235027888,55.23753505045749],[-122.3744141995154,55.23754238854228],[-122.37465676664786,55.23756515390604],[-122.37485902562653,55.23761926225517],[-122.37502940051169,55.23767692665954],[-122.37517136879309,55.23767769831899],[-122.37533775197059,55.2376264798616],[-122.37555882354488,55.23758133929246],[-122.3757272316932,55.23763894543331],[-122.3757608429263,55.23779129987539],[-122.37584293526349,55.23790918467443],[-122.37614958094163,55.237965209645786],[-122.37648175387307,55.23800067247199],[-122.37661474416595,55.2380135153172],[-122.37664208895576,55.238016554131605],[-122.37671373309635,55.238053400490884],[-122.37678972004888,55.23812961872743],[-122.37685788944098,55.23822691398243],[-122.37701914631688,55.23836392227123],[-122.37737847675264,55.238492119760956],[-122.37780576423131,55.23858865528604],[-122.37803492732588,55.238672695079586],[-122.37807509175335,55.2387086243399],[-122.3781154577667,55.23874231685601],[-122.3781938193361,55.238814118045156],[-122.37826405577279,55.23886662063613],[-122.37839271725912,55.23892755131569],[-122.37859312747175,55.239024208777494],[-122.3787468657621,55.23909147531048],[-122.37891129580618,55.239127656418006],[-122.3791348566317,55.23916443652294],[-122.37927491644787,55.2391864524701],[-122.39999950948803,55.22959975902007],[-122.4038284499668,55.22782786873004],[-122.40385282260371,55.227842028561184],[-122.40388466376592,55.227860889375144],[-122.40391543793264,55.227869627849515],[-122.40396274934183,55.22786987411156],[-122.40419850635584,55.22788005223914],[-122.40423008063928,55.2278798435489],[-122.4042466178091,55.227871351306476],[-122.40427745789356,55.22783524054446],[-122.40429362793225,55.22780879726608],[-122.40434143791562,55.22773729612066],[-122.40437344494785,55.22771018927689],[-122.40439088201147,55.22769163154154],[-122.40443782604848,55.227673926593845],[-122.404532881168,55.227647520585386],[-122.40459556213698,55.22763027038491],[-122.40475243267012,55.22764041021278],[-122.40481478095593,55.22764893963405],[-122.40484545517596,55.22765879626475],[-122.40486165957695,55.22767608367315],[-122.40490853826115,55.22770322769472],[-122.40493957993537,55.227731035329995],[-122.40495498453586,55.227757269817936],[-122.40497108904012,55.22777567559867],[-122.40504697762604,55.227875419491966],[-122.40507768711683,55.227929006826514],[-122.40517174809018,55.228046094865455],[-122.40520199038916,55.22808284952929],[-122.40521739529532,55.228109083985444],[-122.40520192558785,55.22812769867746],[-122.40516788678505,55.22819959804252],[-122.40513548264555,55.22829733397432],[-122.40511921298308,55.22832489574945],[-122.40510267581102,55.2283333881081],[-122.40505573129731,55.228351093307246],[-122.405024524082,55.22836925323507],[-122.40499214954463,55.22837840921923],[-122.40486678556255,55.22841290998983],[-122.40483441095421,55.22842206593299],[-122.40477092892978,55.22844826334562],[-122.40474088875057,55.22847542714065],[-122.40470888135725,55.228502534080356],[-122.40464416648052,55.22856457663916],[-122.40459562156252,55.22860017584553],[-122.40458051861668,55.228636741490845],[-122.40457928591188,55.22867258670046],[-122.40456288468799,55.22878984670355],[-122.4045624519415,55.228816744823476],[-122.40459199428702,55.228861328341125],[-122.40460729909732,55.228888681260464],[-122.4046541790224,55.22891582538019],[-122.40471636392618,55.228970322388335],[-122.40474830637832,55.228988064596585],[-122.40477828166034,55.229005749949515],[-122.4048886447484,55.22900669656356],[-122.40504632059523,55.22900788893022],[-122.40509373333244,55.22900701637601],[-122.40512600837023,55.22899897875179],[-122.40515641617836,55.22898976589143],[-122.40518879117013,55.22898060986425],[-122.40525153868161,55.22891851018093],[-122.40530008340339,55.228882910718085],[-122.40534666084802,55.22884725439821],[-122.40537866808593,55.22882014729386],[-122.40541110746007,55.228766142058504],[-122.40542844452965,55.22874870256339],[-122.40546058066228,55.22863189713793],[-122.4054763826063,55.228587502677314],[-122.40549381954145,55.228568944786296],[-122.40558857276628,55.2284797377936],[-122.40563631692837,55.228453085296856],[-122.40568442875579,55.22844438380827],[-122.40576134839763,55.22844436348763],[-122.4058255653541,55.22845406762184],[-122.40587207778185,55.22846326025617],[-122.4059815758189,55.22851800214932],[-122.40605843175376,55.228562830795056],[-122.4061533604258,55.22862612184821],[-122.40623048478223,55.22869001980096],[-122.40626242767934,55.22870776162036],[-122.40637032776152,55.2287803973741],[-122.40641720874952,55.228807540829806],[-122.40643251477984,55.22883489352468],[-122.40644872033602,55.22885218072805],[-122.40646402640472,55.22887953341915],[-122.40647853293989,55.22891583321068],[-122.4064943070915,55.2289600185351],[-122.40647471309578,55.22911306720207],[-122.40647428162353,55.22913996532927],[-122.40645971161011,55.229148514688795],[-122.40646007969126,55.22916646571384],[-122.40642690526803,55.22918456917367],[-122.40631551498626,55.22928338771683],[-122.40626813828598,55.22932799150136],[-122.40612607132869,55.22941695359448],[-122.40610953392037,55.22942544608742],[-122.40607789460681,55.22947050440729],[-122.40607746286554,55.22949740253382],[-122.40607659938128,55.22955119878714],[-122.40607536798099,55.22958704401387],[-122.40609067407541,55.22961439675229],[-122.40616816818196,55.22969624577493],[-122.40623008831092,55.229731672616104],[-122.4062785695439,55.22974092192355],[-122.40637239719685,55.22975035973602],[-122.40641971083197,55.229750605064524],[-122.40648239426767,55.229733353911584],[-122.40651280232012,55.22972414071949],[-122.40660866046161,55.229688786019615],[-122.40673486328038,55.22968906715359],[-122.40698636953411,55.229699694532385],[-122.40706525880992,55.22969973021835],[-122.40709593514416,55.22970958629616],[-122.40715748771267,55.22972706165226],[-122.40725285181834,55.22976345374152],[-122.40729973454668,55.22979059686697],[-122.40732998009993,55.22982735101857],[-122.40733034857546,55.22984530204186],[-122.40735989474223,55.22988988490611],[-122.40737600119974,55.22990829037863],[-122.40742128544952,55.22995332767576],[-122.40746816851266,55.22998047073808],[-122.40750011297965,55.22999821224166],[-122.40756236558356,55.23000785867721],[-122.4076561941599,55.2300172955226],[-122.40768777010217,55.230017085955495],[-122.40773588335573,55.23000838367325],[-122.40778399658848,55.229999681372455],[-122.40779856662873,55.22999113185737],[-122.40781590319146,55.22997369202826],[-122.40783057312487,55.22996402412058],[-122.40784754095475,55.229928633265196],[-122.40786559343611,55.229748629441616],[-122.40786565527166,55.22970378028671],[-122.40788342221812,55.22965944231555],[-122.40789889127407,55.229640827288364],[-122.40791505965878,55.22961438353633],[-122.40797817271363,55.22957023349745],[-122.40804255354172,55.22953396894585],[-122.40807296108635,55.22952475537294],[-122.40824557771178,55.22953534516052],[-122.40829209194187,55.22954453689164],[-122.40834057342329,55.22955378539615],[-122.40838745664102,55.2295809281116],[-122.4084027643045,55.229608280565756],[-122.40841657360511,55.229652408859046],[-122.40841614342494,55.22967930699407],[-122.4083994452586,55.229733767335745],[-122.40841592108809,55.22977012369359],[-122.40843016063121,55.22978735385061],[-122.4084777821558,55.229850398572516],[-122.4085557116614,55.22990534797494],[-122.4085856892997,55.22992303241252],[-122.40861843331287,55.22993182651274],[-122.40866414899736,55.229949965221806],[-122.40874293888125,55.22995111823449],[-122.4087753138304,55.22994196127417],[-122.40880652057271,55.229923800404194],[-122.4088850019395,55.22986215315226],[-122.40891700760129,55.22983504513652],[-122.4089498122428,55.22979898999389],[-122.40898181781067,55.229771881961575],[-122.4090615273582,55.22967438934327],[-122.40910980022703,55.22961971898547],[-122.40917211301078,55.229584515461],[-122.40920448756735,55.229575358389376],[-122.4093464279089,55.22957609109277],[-122.40953488281748,55.22958601490131],[-122.40956635855142,55.22958692324808],[-122.40964364988,55.229604851545524],[-122.40969053403602,55.22963199377044],[-122.40978510137248,55.2296773310435],[-122.4098303880583,55.22972236746387],[-122.40984649557858,55.22974077261658],[-122.40989215202227,55.22980376003035],[-122.40992409741754,55.22982150091189],[-122.40995551383763,55.22986725831648],[-122.41001663877597,55.22991163040024],[-122.410079690623,55.2299123284517],[-122.4101278032341,55.229903625245306],[-122.41017511707223,55.22990386914694],[-122.41025363697088,55.229885951798046],[-122.4103328556766,55.2298602056631],[-122.4104268433768,55.22982367287333],[-122.41050526317231,55.22980687375685],[-122.41056884343962,55.22977955502706],[-122.41064806173428,55.22975380869185],[-122.41074391631356,55.229718450808406],[-122.41079085991969,55.229700743463155],[-122.41080749627918,55.22969113195699],[-122.41085364122856,55.22968237171848],[-122.41090095481098,55.22968261534432],[-122.41112178480884,55.22968337923004],[-122.41115326065473,55.22968428717575],[-122.41118403779376,55.22969302385483],[-122.41127663971285,55.229738303249455],[-122.41132512211347,55.22974755059205],[-122.4114040114868,55.22974758352933],[-122.4114343186146,55.22973948752723],[-122.41146589431916,55.22973927700209],[-122.41154601020993,55.22970346456905],[-122.4116390982179,55.229676996391795],[-122.41165563456269,55.22966850316433],[-122.4117194844616,55.22966025324953],[-122.41176562917705,55.22965149267307],[-122.41187689236483,55.229642367564814],[-122.41201883299125,55.229643097222],[-122.4120496102867,55.22965183368712],[-122.41211223405206,55.22967942885684],[-122.41218936988759,55.229743323123394],[-122.41222051795273,55.22977001055509],[-122.41222009031368,55.22979690870341],[-122.41220296959472,55.229878267703924],[-122.41220174364095,55.22991411299201],[-122.41218674690104,55.22994956117068],[-122.41210651687067,55.230075072332184],[-122.41209035105499,55.23010151662931],[-122.41205791956753,55.23015552360966],[-122.41199385468663,55.23025459040729],[-122.41197768872479,55.23028103469013],[-122.41195976894515,55.23037134079853],[-122.41192743686166,55.2304242293537],[-122.41191191204051,55.23048769404147],[-122.41192615333426,55.23050492379957],[-122.41194103592058,55.230559173969525],[-122.41195671691737,55.23060447699935],[-122.41197165684291,55.23061387800624],[-122.41200317600472,55.23065851650461],[-122.41204926462834,55.23069460498226],[-122.41208121168161,55.23071234531147],[-122.41211189001609,55.23072220015431],[-122.41223809611358,55.2307224757109],[-122.41242655710326,55.23073239514391],[-122.41245893184269,55.23072323722531],[-122.41263118391417,55.23071586992523],[-122.41288162878499,55.23071636313888],[-122.41296158943446,55.23072651734593],[-122.41300730797911,55.23074465446141],[-122.41308534516611,55.2307984826394],[-122.41314834250569,55.23084402829791],[-122.41319523046896,55.230871169205685],[-122.4132105418908,55.23089852107134],[-122.41322595309526,55.23092475454185],[-122.41320968791152,55.230952317379256],[-122.41320926092104,55.23097921553336],[-122.4131453532813,55.23103231537418],[-122.413050239759,55.231103577125396],[-122.41300169921446,55.231139179615305],[-122.41295512589988,55.231174838804264],[-122.41293769127638,55.23119339774353],[-122.41290648541387,55.23121155965037],[-122.41281259649745,55.23124697592243],[-122.41278032119214,55.23125501554024],[-122.41273337664839,55.23127272363751],[-122.41265405691937,55.2312995896952],[-122.41262205261012,55.23132669867437],[-122.41252693746544,55.23139796002737],[-122.41244596406275,55.231487569400734],[-122.41241353193553,55.231541576479145],[-122.4123985347757,55.23157702468763],[-122.41238316684374,55.23159452188361],[-122.41238273929397,55.231621420036056],[-122.41239767969655,55.23163082099259],[-122.41241262010612,55.23164022194721],[-122.41242756052263,55.2316496229002],[-122.41253760337634,55.231676342495085],[-122.41258529014965,55.231694536491275],[-122.41261596935628,55.2317043912105],[-122.41264871569949,55.231713184252094],[-122.41272595606273,55.23177595980272],[-122.41277284482692,55.231803100871396],[-122.41289772915313,55.231840339451246],[-122.4129758244621,55.231849318537975],[-122.413022342447,55.231858508503684],[-122.41311697475548,55.23185899408943],[-122.41325812511678,55.23186866948076],[-122.4133219781779,55.231860418743004],[-122.41336892314821,55.231842710422995],[-122.41343250468792,55.23181539022699],[-122.41346361102391,55.23179834658118],[-122.41347987637567,55.2317707837088],[-122.41348158364433,55.23166319108312],[-122.41346712539811,55.2315820429368],[-122.41346718099393,55.231537193773384],[-122.41348334648161,55.23151074929474],[-122.41350040974802,55.23147423927167],[-122.4135157771483,55.23145674193788],[-122.41354895025549,55.231438636586496],[-122.41359552334919,55.231402977174746],[-122.4136120599903,55.231394483686394],[-122.4136756406568,55.23136716336718],[-122.41369020994046,55.23135861316201],[-122.41375289276384,55.23134135834712],[-122.41383258323111,55.23133244259535],[-122.41394295291182,55.231333381184726],[-122.41419340164153,55.231333871760164],[-122.4142407171857,55.231334114117075],[-122.4142725659789,55.23135297227914],[-122.41431982690074,55.231398063769205],[-122.41431860278617,55.231433909082014],[-122.41430280947878,55.23147830467361],[-122.41427080613805,55.23150541407688],[-122.4141599547933,55.231576223100134],[-122.41409514980545,55.231639388978266],[-122.4140469810275,55.231692942882624],[-122.41403081583701,55.23171938743476],[-122.41401572029356,55.2317559542323],[-122.41399838564983,55.23177339492686],[-122.41399912858586,55.23180929693895],[-122.41399870211391,55.23183619509736],[-122.41402815738776,55.2318818947797],[-122.41404356950177,55.231908128150934],[-122.41406047775243,55.231917585608876],[-122.41410656966286,55.23195367332832],[-122.41415425747412,55.231971866724066],[-122.41421651472582,55.231981509834334],[-122.41424809217494,55.231981298603664],[-122.41443655955509,55.231991214995524],[-122.41446813701066,55.23199100370911],[-122.41449844521155,55.231982906959864],[-122.41453044877862,55.231955797497214],[-122.41469036624407,55.23182136845578],[-122.41481668399061,55.231731943069725],[-122.41486442589905,55.231705287028646],[-122.4148809623966,55.23169679337161],[-122.4149594836981,55.23167887305308],[-122.41500759736574,55.2316701679602],[-122.41511600065692,55.23167104882433],[-122.41532100319263,55.231672470187064],[-122.4154148374688,55.23168190118735],[-122.41547836401092,55.23169942911179],[-122.41554179090899,55.231718075399115],[-122.41563519996596,55.23175440439688],[-122.41571207283438,55.23179922709427],[-122.4157597611884,55.231817419875],[-122.41585279837716,55.23183579770898],[-122.41604243533777,55.23185471550672],[-122.41618278893169,55.23187333474847],[-122.41621426660448,55.23187424141508],[-122.41627742131307,55.231873817932524],[-122.416355790284,55.231901864294905],[-122.41657541044279,55.23193846384337],[-122.41660619048282,55.23194719918367],[-122.41662309935211,55.231956656293605],[-122.41666999095507,55.23198379589521],[-122.41673102684413,55.23202928308591],[-122.41674596841386,55.23203868352094],[-122.41673134757453,55.232092083250585],[-122.41669732601768,55.23216398578709],[-122.41666489905082,55.2322179939754],[-122.41660131453295,55.23233389576065],[-122.41660168716702,55.23235184675961],[-122.41655235087505,55.232396397806134],[-122.41652034831961,55.23242350778942],[-122.4164899405189,55.232432723426925],[-122.41647340405855,55.23244121729806],[-122.41642608719927,55.23244097578953],[-122.41614298353136,55.23243057919398],[-122.41609566668654,55.23243033755981],[-122.41601794192854,55.23243931143007],[-122.41593824975361,55.232448228581084],[-122.4158598270792,55.23246503112225],[-122.41574850393604,55.232519008958725],[-122.41570155922395,55.232536718176604],[-122.41565381688362,55.23256337454029],[-122.41558990995375,55.23261647564197],[-122.41554253960938,55.23266108296548],[-122.41549427183143,55.23271575582902],[-122.41544610362705,55.23276931027878],[-122.41538336584351,55.23283141511603],[-122.41535173423601,55.23287647580309],[-122.4153355694275,55.23290292052688],[-122.4153339740977,55.23292081485009],[-122.41533386706311,55.2330105131878],[-122.41533211850043,55.23307437507551],[-122.41533046964099,55.23313711856824],[-122.41536279216882,55.23317280906262],[-122.41537810593964,55.23320016066635],[-122.41545498128345,55.23324498352733],[-122.41551878276631,55.233281580832106],[-122.41556530298756,55.23329076984882],[-122.41561182323007,55.23329995884814],[-122.41569071957075,55.23329998906959],[-122.4159265113599,55.23331014499551],[-122.41598877110665,55.23331978722064],[-122.41613109721158,55.233338463192794],[-122.41627145602142,55.23335708233664],[-122.41635072500623,55.23337506314138],[-122.41653919943187,55.23338497635201],[-122.41664877742288,55.23339485971295],[-122.41669529803309,55.23340404830762],[-122.41675755810935,55.23341369014855],[-122.41688334811856,55.2334408591683],[-122.41691412937456,55.233449594433466],[-122.41694677841234,55.23345950474238],[-122.41699409647235,55.23345974605314],[-122.41704061723642,55.233468934518754],[-122.41708793530809,55.23346917579396],[-122.41716603471284,55.23347815225386],[-122.41730639448873,55.23349677023157],[-122.41744951903776,55.23350649752245],[-122.41751060920961,55.23350713516452],[-122.41760524544897,55.23350761733952],[-122.41769945767426,55.23353499761713],[-122.41785720057455,55.23357990453675],[-122.4179820951194,55.23361713802261],[-122.41806014453093,55.23367096309411],[-122.41809129952942,55.23369764906488],[-122.41810661535449,55.23372500033416],[-122.41810576786045,55.233778796686664],[-122.41810534411259,55.233805694863065],[-122.41808706320343,55.23387805087968],[-122.41807286724658,55.2339045525974],[-122.41803884655442,55.23397645551003],[-122.41800641992751,55.234030464054825],[-122.41795984770165,55.23406612512307],[-122.41792784476655,55.23409323547132],[-122.41791130792737,55.234101729534466],[-122.41788089917706,55.23411094551283],[-122.41777009781123,55.23413690858935],[-122.41772315210137,55.23415461857143],[-122.41762771715936,55.23416308366298],[-122.41754919219875,55.234181005667324],[-122.41750224634023,55.23419871556624],[-122.41748491215535,55.234216156749085],[-122.41747024299141,55.2342258257971],[-122.41743754202851,55.2342607647988],[-122.417436320604,55.234296610149805],[-122.4174358964032,55.234323508324884],[-122.41745280646599,55.23433296532377],[-122.41746695184052,55.23435131285005],[-122.41749970139757,55.234360104617664],[-122.41751464401231,55.23436950496208],[-122.41757690577862,55.23437914639414],[-122.41768658637803,55.234387910445385],[-122.41773390553416,55.234388151475144],[-122.41784385975755,55.23441598478359],[-122.4179853934947,55.23444360581664],[-122.41804882587971,55.2344622508307],[-122.41812650368517,55.234498124866576],[-122.41821912447297,55.234543399114145],[-122.4182510773017,55.23456113786548],[-122.4183298263076,55.23460713398805],[-122.41835981174363,55.23462481607852],[-122.4184850834924,55.23468000005952],[-122.41859434167901,55.234715661490945],[-122.4187819763251,55.23477936766814],[-122.41882966959871,55.23479755927723],[-122.41890767235661,55.23480765304406],[-122.41900151478399,55.23481708134381],[-122.41908078786462,55.23483506041268],[-122.41911157066409,55.234843795135546],[-122.41922152708536,55.23487162722857],[-122.41933068684294,55.234908406413076],[-122.41937838051751,55.23492659781213],[-122.41942527743954,55.23495373638216],[-122.41950216064133,55.23499855675035],[-122.4195182746971,55.235016960658974],[-122.41950211176689,55.235043405927726],[-122.4195008921577,55.23507925130107],[-122.41950154046627,55.235116271687666],[-122.41945215506522,55.23520567307003],[-122.4194517322023,55.235232571253775],[-122.41942099966674,55.23526756739413],[-122.41940473697106,55.23529513104942],[-122.41937273403198,55.235322241771385],[-122.41930765692848,55.23536634098605],[-122.41929308738744,55.235374891851],[-122.41919802370218,55.23540130914168],[-122.41913406661868,55.23541068129304],[-122.41903979963563,55.23542815127548],[-122.41894515886239,55.23542767019044],[-122.41881973490236,55.2354184542458],[-122.41877241452818,55.2354182136286],[-122.41871015086774,55.23540857279362],[-122.41856983368787,55.23534510721731],[-122.41852213988275,55.23532691550805],[-122.41847561663242,55.23531772759456],[-122.41842909340332,55.23530853966367],[-122.41835029275282,55.23530739277923],[-122.41828633562115,55.23531676449514],[-122.41817670164241,55.2353517317516],[-122.41814549491981,55.23536989497687],[-122.41811232063996,55.23538800155798],[-122.41808121349816,55.23540504636958],[-122.4180338426328,55.23544965465001],[-122.41800183864721,55.23547676501993],[-122.41798520161426,55.235486377491355],[-122.41795329720847,55.23551236945141],[-122.4179055021748,55.23558387586263],[-122.41789003546343,55.23560249214097],[-122.41788998479147,55.23564734131975],[-122.41787254876769,55.2357544809165],[-122.41787095445304,55.235772375276],[-122.4178234325296,55.2358629510545],[-122.41780647097141,55.23589834328436],[-122.41777446647579,55.235925453596835],[-122.41774335877537,55.235942498324704],[-122.41771215139902,55.235960661442256],[-122.41766440632827,55.23598731858345],[-122.41760161829227,55.23600569377034],[-122.41745843366384,55.236040815832375],[-122.41741228286094,55.23604957852246],[-122.41734879699297,55.23607578236187],[-122.41729988127328,55.236093435538436],[-122.41718934734044,55.23613846750107],[-122.41709465335965,55.23618283419003],[-122.41704770496561,55.236200543920226],[-122.41698342125802,55.23623569474846],[-122.41695221331128,55.236253857675955],[-122.41687246198192,55.236307624607825],[-122.41684172638212,55.236342620114485],[-122.4167938806054,55.236370395319405],[-122.41673039382859,55.23639659884421],[-122.41668227488229,55.23640530460573],[-122.41663495336039,55.23640506317644],[-122.41647804566644,55.23639493831224],[-122.41638420015065,55.2363855081099],[-122.41629115219975,55.23636713066671],[-122.41619613676053,55.236348696487376],[-122.41610191897041,55.23632131506684],[-122.41599223344625,55.23631254961854],[-122.41592996906809,55.236302907392975],[-122.41581958571044,55.23630197056439],[-122.41577226431525,55.23630172880727],[-122.4157410557706,55.23631989143141],[-122.41570984719776,55.23633805404764],[-122.41561355577267,55.2364003139438],[-122.41558112393729,55.236454321866745],[-122.41551678522498,55.23653432111934],[-122.41550168922561,55.23657088811014],[-122.41545229315258,55.236660287915896],[-122.41545266531415,55.23667823892405],[-122.4154343712241,55.236839174534346],[-122.41543177151861,55.23695683278851],[-122.41543129253569,55.23702858014446],[-122.41544670753576,55.23705481335202],[-122.41546202284103,55.237082164953456],[-122.41550929182485,55.23712725601103],[-122.41552460720024,55.23715460760481],[-122.41557033420371,55.23717274378791],[-122.41561802886208,55.23719093663015],[-122.41571145069263,55.23722726558541],[-122.4158064679844,55.23724570013577],[-122.41591446106489,55.23727347848063],[-122.4160887551781,55.23730989385284],[-122.41619754618652,55.23732872478305],[-122.41624486879205,55.23732896637854],[-122.41654384761357,55.23733869764049],[-122.41666917735577,55.237349034275184],[-122.41679460684094,55.23735825238702],[-122.41688845472159,55.23736768228089],[-122.41701468169497,55.23736795299658],[-122.41712427064937,55.237377835942],[-122.41742315038549,55.23738868349018],[-122.4176274845441,55.237397929837186],[-122.41778519364755,55.23739910607375],[-122.41790982636299,55.23741727024281],[-122.41809949059548,55.23743618491583],[-122.41822402392857,55.23745546716835],[-122.4182556056524,55.23745525492134],[-122.41834945410166,55.237464683714286],[-122.41836636569926,55.23747414059147],[-122.41847605490696,55.23748290394948],[-122.41858484750028,55.237501732794684],[-122.4186633286677,55.237528659318315],[-122.41874171031522,55.23755670419088],[-122.41880445059567,55.23758317761264],[-122.41883630647392,55.23760203461621],[-122.41891277083096,55.23767375354375],[-122.4189438298745,55.23770155770764],[-122.41900577356971,55.237736978216226],[-122.41903762966406,55.23775583516844],[-122.41906916225898,55.237800471901636],[-122.41911404536178,55.237872403159976],[-122.41911441916815,55.237890354158836],[-122.41912931417764,55.237944603498896],[-122.41914383540662,55.23798090183858],[-122.41919068650505,55.23805288969043],[-122.41922104874298,55.238088522576966],[-122.41925210831971,55.23811632666485],[-122.41929980576118,55.238134518098356],[-122.41934590949202,55.238170603895156],[-122.41940865112721,55.23819707701381],[-122.41944050777465,55.23821593386371],[-122.41954977640937,55.23825159446643],[-122.4196112478503,55.238270182076334],[-122.41969132480924,55.23827921356851],[-122.4198174550641,55.238280599842845],[-122.41987865211688,55.23828011792427],[-122.41991093163875,55.23827207646253],[-122.4199902602669,55.23824520576869],[-122.42002067165846,55.23823598927242],[-122.42005374783751,55.23821900057861],[-122.42008617509188,55.238164991483856],[-122.42014943594683,55.23807486766156],[-122.42019765234528,55.23797646218393],[-122.42019924571255,55.2379585677917],[-122.42021644986471,55.237787509269566],[-122.42023223912369,55.237743112907395],[-122.42024919932585,55.23770772034234],[-122.42028200023105,55.23767166219385],[-122.42032857457201,55.23763600024762],[-122.42036174970791,55.23761789307317],[-122.4204071050371,55.23761807648627],[-122.42051749211178,55.23761900924901],[-122.42065983552526,55.237637680051186],[-122.42073874037472,55.23763770707456],[-122.42108297838195,55.23764872911609],[-122.42116188325338,55.23764875587133],[-122.42125573283491,55.23765818247456],[-122.42133580894497,55.23766721290915],[-122.42141302148664,55.23768625231205],[-122.42147656012098,55.23770377718434],[-122.4215234616949,55.23773091496984],[-122.42156919205696,55.237749048951144],[-122.42160104936217,55.23776790524779],[-122.42161726503254,55.23778519048797],[-122.42163141351956,55.237803537545894],[-122.4216479046087,55.237839892174094],[-122.42166205312893,55.23785823922857],[-122.42166121030138,55.23791203562178],[-122.42166116382991,55.237956884809705],[-122.42164500112715,55.23798333036236],[-122.42164537606365,55.23800128135377],[-122.42158174376588,55.23807345494376],[-122.42156558096411,55.238099900486304],[-122.42151666463383,55.23811755532175],[-122.42148625367444,55.23812677218321],[-122.42136012384431,55.238125387598956],[-122.4213293380462,55.238116653429714],[-122.42131242548223,55.23810719695449],[-122.4212504791866,55.238071777592154],[-122.42117172006141,55.2380257833045],[-122.42112678604197,55.23799870197484],[-122.42107829144729,55.237989458442925],[-122.42082663009289,55.23797997792034],[-122.42078005579522,55.23801564005368],[-122.4207481511894,55.23804163273465],[-122.42073146624413,55.238096094762724],[-122.42073062216741,55.2381498911507],[-122.4207127185281,55.23824019857051],[-122.42072729335086,55.23832022751524],[-122.42072762036861,55.23838302769883],[-122.42072630217808,55.238419991493124],[-122.42072508355713,55.23845583688748],[-122.4206607042845,55.23858068799889],[-122.42064476798973,55.23867105200802],[-122.42062649376068,55.23883198840465],[-122.42061018280612,55.23890440141543],[-122.42056079521889,55.23899380326268],[-122.42052874238193,55.239065763480546],[-122.42049589278967,55.239146670889305],[-122.42046276822603,55.2392085088935],[-122.42046351706738,55.239244410886734],[-122.42046257302688,55.23929932567727],[-122.42046055749195,55.239344118270104],[-122.42047555443585,55.23939724905538],[-122.42047620371075,55.23943426944883],[-122.420427141734,55.239586471436745],[-122.42042512614519,55.23963126403],[-122.4204238115138,55.23975680781168],[-122.42042334139927,55.2398285552017],[-122.42042212246577,55.23986440059701],[-122.42043659771514,55.23994554798535],[-122.42045149526814,55.23999979717575],[-122.42046798619131,55.24003615196619],[-122.42048223452855,55.240053380757765],[-122.42052988708751,55.240116420917744],[-122.42055977801542,55.24013522088579],[-122.42060663415576,55.24020720821667],[-122.42065152269197,55.240279138933964],[-122.42071407383743,55.240396428190884],[-122.42074443919299,55.24043206071228],[-122.42077470502672,55.24046881162661],[-122.42080666368783,55.24048654973012],[-122.42085356805379,55.24051368777364],[-122.42090009785515,55.24052287480237],[-122.42096354117508,55.24054151834042],[-122.42102660986933,55.24054221084947],[-122.42113710454664,55.240542024662766],[-122.42116672089243,55.24054175508891],[-122.42119900197133,55.24053371329199],[-122.42124754659584,55.24049810758214],[-122.42134365750107,55.24032707552256],[-122.42137561032698,55.24025623348883],[-122.4213922952961,55.2402017713655],[-122.42142509721009,55.24016571290909],[-122.42153558452598,55.24007694637909],[-122.42156758978957,55.24004983509176],[-122.42167882641267,55.23999697042403],[-122.42179016228958,55.239942987256285],[-122.4218683215522,55.23990711157694],[-122.42194675622243,55.23989030524268],[-122.42199567451921,55.239872650235995],[-122.42205846658278,55.23985427282855],[-122.4221689057385,55.23981035493313],[-122.42220011408882,55.23979219069373],[-122.42224786066944,55.239765531806086],[-122.42235872034188,55.23969471554051],[-122.4224700544702,55.23964073176618],[-122.42251780069225,55.23961407277546],[-122.42256592221318,55.239605364757146],[-122.42261324753437,55.23960560393295],[-122.42278483914755,55.23960605139382],[-122.42286285221947,55.23961614268702],[-122.42287986529713,55.239624480551],[-122.42295825396629,55.23965252277434],[-122.42300515881114,55.239679660005805],[-122.4231754446972,55.23980565073792],[-122.42322272552454,55.239850738877095],[-122.42323725113428,55.239887036744655],[-122.42326709847309,55.23995068525787],[-122.42328289538715,55.23999486849041],[-122.42331316321061,55.24003161878665],[-122.42337549006723,55.24008498811735],[-122.42339160793175,55.24010339153182],[-122.42342356745628,55.24012112896327],[-122.42345425574239,55.24013098101847],[-122.42350078569496,55.24014016707546],[-122.42372087738107,55.24014985583705],[-122.42376820334958,55.24015009457405],[-122.42379899123294,55.240158828141716],[-122.42383164741061,55.24016873665061],[-122.42386281126832,55.24019542119036],[-122.42401847605326,55.2402862313816],[-122.42408112457844,55.240313820553446],[-122.42412765488558,55.24032300637636],[-122.42417418521396,55.24033219218187],[-122.42422151139962,55.24033243074667],[-122.42425309534991,55.2403322169788],[-122.42428430316407,55.24031405221645],[-122.42434741503881,55.24026989384704],[-122.42436367635915,55.24024232953609],[-122.42436610722388,55.24017063866672],[-122.42435072869083,55.240099557360836],[-122.4243358258436,55.240045308636546],[-122.42429017871164,55.239937477276214],[-122.42427565213382,55.23990117953131],[-122.4242760718209,55.2398742813218],[-122.42427653506587,55.23980253391708],[-122.42429405526718,55.23969427498866],[-122.42429451847799,55.23962252758483],[-122.42430988429616,55.23960502890863],[-122.42434314623164,55.23949722228228],[-122.42436099881814,55.2394517635261],[-122.42440757160423,55.23941610004978],[-122.42443947493588,55.23939010642876],[-122.424456112041,55.23938049309255],[-122.42448769524279,55.23938027926516],[-122.42462929416725,55.23936304356382],[-122.42466077788956,55.239363948095786],[-122.4247396861269,55.239363972584464],[-122.42478621548595,55.239373158160674],[-122.42481737936053,55.23939984245994],[-122.42487843570964,55.2394453256821],[-122.42490950024305,55.239473128361915],[-122.4249410406978,55.23951776361409],[-122.4250020118667,55.23965294516571],[-122.42501653901016,55.239689242825214],[-122.42504849892207,55.23970697983925],[-122.42509540524016,55.239734116283664],[-122.42514310724115,55.239752305481545],[-122.4252349524188,55.239806521757814],[-122.42526770811328,55.239815311486154],[-122.42532918458456,55.23983389627612],[-122.42543878229688,55.239843771907346],[-122.42553460575797,55.239853251808476],[-122.42558113586433,55.239862437088156],[-122.4256119239211,55.23987117020758],[-122.42570615649473,55.239898544440706],[-122.4257526866926,55.23990772965628],[-122.42578417086638,55.23990863390437],[-122.42606850198455,55.23992801233329],[-122.42611395936957,55.23992707526379],[-122.42641286046324,55.23993790124088],[-122.42646135863173,55.23994714269704],[-122.42660053184105,55.24000159566282],[-122.4266947653927,55.24002896914834],[-122.42682086065084,55.240075197527325],[-122.42685085389327,55.240092877580466],[-122.42689935234914,55.24010211886613],[-122.4269616252346,55.24011175561039],[-122.42713476904895,55.24013915179426],[-122.42718209502505,55.24013938923406],[-122.42726020962834,55.24014835936817],[-122.42744754580741,55.24014925233991],[-122.42751140909874,55.2401409943214],[-122.42769991796551,55.240150890645914],[-122.42777882774794,55.240150913209135],[-122.42784189594694,55.240151602267225],[-122.42788763190784,55.24016973393182],[-122.42792038847746,55.2401785229628],[-122.42795145567892,55.24020632488543],[-122.4279498656704,55.24022421937975],[-122.42796608505815,55.24024150379651],[-122.42794978674168,55.24031391777583],[-122.42794777949122,55.240358710493],[-122.42790120875206,55.240394375295594],[-122.42786920748227,55.240421488211055],[-122.42783810058249,55.24043853546598],[-122.42779035690735,55.24046519649788],[-122.42775756045387,55.24050125663112],[-122.42774130135399,55.24052882138565],[-122.42773921446187,55.24066331249855],[-122.42775453949692,55.24069066259534],[-122.42777113668376,55.24072589801477],[-122.42784873587009,55.24076288440884],[-122.427926812342,55.240816703325024],[-122.42798825214949,55.240880136003945],[-122.42803553963279,55.24092522231972],[-122.42808165439605,55.24096130489016],[-122.42811361666959,55.24097904111939],[-122.42819163374001,55.24098912907593],[-122.42825321272446,55.241006594018145],[-122.42827012813844,55.24101604955284],[-122.4283001227191,55.241033729258305],[-122.4283162432162,55.24105213203675],[-122.42839459948624,55.24112502004262],[-122.42840885160324,55.241142247928934],[-122.42839217574198,55.241196710995744],[-122.42839293169594,55.24123261294648],[-122.42836051312015,55.24128662421607],[-122.42834314156181,55.24134891612122],[-122.42831030581978,55.24142982560453],[-122.42827868193055,55.24147488960331],[-122.42827746994571,55.24151073507967],[-122.42826248304722,55.24154618522406],[-122.4282919225464,55.241636730767546],[-122.42830814265052,55.241654015141584],[-122.42838695601438,55.24165515572588],[-122.42841736805974,55.24164593717697],[-122.42844857501278,55.241627771369444],[-122.42848085550736,55.24161972768467],[-122.42852907749928,55.24160989895479],[-122.42857523225848,55.24160113214155],[-122.42865366742923,55.241584321581804],[-122.42871763210846,55.2415749445374],[-122.42876495978277,55.241575181375794],[-122.42879565048581,55.241585032116],[-122.42885919849257,55.241602553227075],[-122.42890493656128,55.2416206845201],[-122.42895184771145,55.24164781951615],[-122.42903141761363,55.24168486164118],[-122.42920252561439,55.24180189689687],[-122.42923242184675,55.241820694785886],[-122.42948365522196,55.241901905761345],[-122.42951514104006,55.241902809066445],[-122.42957751667358,55.24191132609678],[-122.4298606905193,55.241921692157774],[-122.43022150513858,55.24192419328982],[-122.43041081751788,55.24192513825006],[-122.43055359626739,55.24191689951641],[-122.43063133609084,55.2419079165677],[-122.43088371940986,55.24190954842283],[-122.4309299732966,55.24189966232858],[-122.43107157832743,55.241882419299905],[-122.43113544362593,55.24187415942229],[-122.43121397754801,55.241856228841286],[-122.43124625767302,55.24184818443966],[-122.43129320640651,55.24183046934992],[-122.43130984288302,55.24182085509629],[-122.43132520648953,55.24180335555188],[-122.43135762150172,55.24174934350849],[-122.4313584871107,55.241650697830686],[-122.4313581078065,55.241632746863736],[-122.43134277996297,55.24160539720842],[-122.43131361361868,55.24153392176193],[-122.43128136951118,55.24149711697751],[-122.43115796343112,55.241398271476825],[-122.43112689309359,55.24137047035152],[-122.43109572350815,55.24134378762697],[-122.43106534829741,55.24130815762702],[-122.43105002077655,55.24128080793632],[-122.43103510845904,55.24122656000893],[-122.43102019618173,55.2411723120799],[-122.4309413566555,55.241082593166446],[-122.43092602930486,55.24105524346098],[-122.43083379454404,55.240983080408604],[-122.43072384976236,55.240910409354754],[-122.43067773268791,55.24087432776263],[-122.43063002685471,55.240856140682794],[-122.43052242952149,55.240801476858515],[-122.43044313957367,55.240783505064925],[-122.430364644175,55.24075658595788],[-122.4302242530329,55.24073798268815],[-122.43009932505676,55.24070076146063],[-122.43006736212898,55.24068302574134],[-122.43002124590387,55.24064694390678],[-122.42998969892821,55.24060230993746],[-122.42997399373088,55.24055700914612],[-122.42997482549917,55.24050321268632],[-122.42999187761403,55.24046670037993],[-122.43000686258668,55.24043125003035],[-122.4300388624237,55.24040413656559],[-122.43010193105829,55.24040482447942],[-122.43030707792894,55.24040510276484],[-122.43036935209943,55.240414737805445],[-122.43044746794781,55.24042370594074],[-122.43062168955531,55.240461219390724],[-122.43069901115206,55.24047913463265],[-122.43077740693548,55.240507171936585],[-122.43080819661337,55.24051590377198],[-122.43093360306922,55.240569956846386],[-122.43099705111193,55.240588595273614],[-122.43104278899139,55.240606725780246],[-122.4311847327815,55.240652282791366],[-122.43123047081791,55.240670413229175],[-122.43129429842325,55.24070700247119],[-122.43132508836625,55.24071573417893],[-122.43135705187446,55.24073346957557],[-122.43140358432781,55.24074265268057],[-122.43145091103887,55.2407428884984],[-122.43162358193649,55.2407534458869],[-122.43166973503894,55.24074467792766],[-122.43170290763368,55.2407265677282],[-122.43171747647501,55.24071801540823],[-122.43176601201303,55.240682405598726],[-122.43178068009519,55.24067273486231],[-122.43178226841766,55.24065484031855],[-122.43179763137346,55.24063734071729],[-122.43181309358506,55.24061872270522],[-122.43184578723134,55.24058377991284],[-122.43190940508686,55.24051160106594],[-122.43194264740927,55.240403792403335],[-122.43195959843175,55.24036839823706],[-122.43199201143626,55.24031438603443],[-122.43202363025432,55.24026932109699],[-122.43207182024051,55.240170911007546],[-122.432071440632,55.24015296004487],[-122.43207306367279,55.240090216299286],[-122.43209042891307,55.24002792388001],[-122.43212087369469,55.23997385522976],[-122.43215445987165,55.23992884667529],[-122.4322346470096,55.239803322510184],[-122.43223509606219,55.23973157507674],[-122.43227037391915,55.23953412435242],[-122.43228707847085,55.239434811576736],[-122.43230364907731,55.23938146640501],[-122.43232121667911,55.23918350796007],[-122.43232321900226,55.23913871517652],[-122.43233940972102,55.23906741904078],[-122.43238797723379,55.23898695979835],[-122.43241959456525,55.23894189476478],[-122.4324362295783,55.23893228036285],[-122.43251590043866,55.238834772670224],[-122.43256297866186,55.2387710895021],[-122.4326272870574,55.238691081432414],[-122.43267464555895,55.238646467591224],[-122.43272321189326,55.238566008220616],[-122.43273988080188,55.23851154458489],[-122.43274146861246,55.238493650031764],[-122.43275852043563,55.23832370818252],[-122.43276027566881,55.23821499683461],[-122.43276155175903,55.238089452939214],[-122.43274781210137,55.23804420891129],[-122.43271626414183,55.23799957564131],[-122.43270055689074,55.23795427520284],[-122.43268723139138,55.23788213293508],[-122.43270424902191,55.237757040291974],[-122.43270386915404,55.23773908933444],[-122.43272012372702,55.23771152393792],[-122.43275281422348,55.237676580915135],[-122.43278322226152,55.23766736130312],[-122.43279975742634,55.237658865263164],[-122.43283016544021,55.23764964563976],[-122.43289322980509,55.237650332139886],[-122.43297213468641,55.237650351412974],[-122.43300489031556,55.23765913910517],[-122.43303557906965,55.237668988797736],[-122.4330813145489,55.23768711855177],[-122.43320671524194,55.23774116932599],[-122.43328638055674,55.237777090312036],[-122.43356539210473,55.23792300113817],[-122.43361230208671,55.2379501343713],[-122.43375461975329,55.23801363939978],[-122.43386348726368,55.23807618568108],[-122.43394108693975,55.238113168272],[-122.43406687059533,55.2381851691363],[-122.43409714690657,55.23822191680649],[-122.43414326400722,55.23825799712526],[-122.43418896814694,55.238320975666504],[-122.43421972441838,55.23837455585044],[-122.43426660294634,55.2384465380317],[-122.43429643427442,55.23855503308821],[-122.43437410216289,55.23863574619422],[-122.43438901802188,55.238689993711134],[-122.43440396618996,55.238699392031904],[-122.4344351036866,55.23877092311791],[-122.43446490350847,55.238924267331946],[-122.43449445423741,55.239013692980144],[-122.43450975108469,55.23908589143803],[-122.43452428660036,55.239122187986695],[-122.43456999231809,55.23918516639228],[-122.43458532143325,55.23921251564543],[-122.43463140809128,55.23929344498268],[-122.43464791153669,55.239329797893014],[-122.43466295918972,55.23933807777194],[-122.43474173630419,55.239384063532036],[-122.43480331567507,55.239401525233724],[-122.4348493355791,55.239438723705504],[-122.43491247026002,55.23948313996932],[-122.43500629574189,55.23953740540963],[-122.43506853816586,55.23959188729783],[-122.43508386777485,55.239619236490405],[-122.43511462623036,55.23967281645871],[-122.4351283691056,55.239718060231],[-122.43512754424401,55.23977185672192],[-122.43514360446767,55.23987995701209],[-122.43515814084199,55.23991625348892],[-122.43517436320207,55.23993353696659],[-122.4351885186262,55.23995188248707],[-122.43526729754308,55.23999786791686],[-122.43529808780559,55.240006598642005],[-122.43532967144087,55.240006382065516],[-122.43555055855074,55.24000710262927],[-122.4356440358013,55.23999856744006],[-122.43567631355016,55.23999052189154],[-122.43570672266705,55.239981301564114],[-122.43575525378567,55.239945690202234],[-122.43588316730217,55.23979349960479],[-122.43591557457651,55.23973948638371],[-122.43591642896754,55.239640840689475],[-122.43593518400947,55.23940703618635],[-122.43595339726767,55.23924609754037],[-122.43593809776904,55.239173899258944],[-122.43590702584642,55.239146099330746],[-122.43589277122607,55.239128872305145],[-122.43581478652891,55.23907393997748],[-122.43579856424032,55.23905665658441],[-122.43576828574709,55.239019909325485],[-122.43575216265594,55.2390015075144],[-122.43575336790623,55.23896566197238],[-122.43576872848995,55.23894816188358],[-122.4358011045254,55.238938997891374],[-122.43584725463616,55.23893022838536],[-122.4358787382716,55.2389311300817],[-122.43598922845351,55.238930930719626],[-122.43605229488043,55.23893161562035],[-122.43609882632144,55.23894079697004],[-122.436131583684,55.238949583840686],[-122.43623997682214,55.23899529551256],[-122.43633421457406,55.23902266170284],[-122.43638112770518,55.23904979389545],[-122.43639607647223,55.23905919197736],[-122.43644457587403,55.23906842954548],[-122.43666346036903,55.23911394098519],[-122.43674157509457,55.23912290517222],[-122.4367730589008,55.23912380664249],[-122.43685234840497,55.239141774404295],[-122.4369138291972,55.23916035347512],[-122.43700768599251,55.23916976820955],[-122.43740054043256,55.239188864068616],[-122.43744904022125,55.2391981012458],[-122.43761970963462,55.2392534431867],[-122.43766820955149,55.239262680278635],[-122.43769899977232,55.23927141040976],[-122.43777780873474,55.23927254505177],[-122.43787166599392,55.239281959135326],[-122.43793562486421,55.239272577358946],[-122.43807683536735,55.23923737542637],[-122.43812416034677,55.23923760870858],[-122.43818801999917,55.23922934521652],[-122.43843772550503,55.23923873434394],[-122.43851770953512,55.23924887214655],[-122.4385634492802,55.2392669998896],[-122.43873618734251,55.2393212782],[-122.43886160072464,55.239375323287106],[-122.43897117332878,55.2394300362083],[-122.43900186489397,55.23943988443204],[-122.43911115418534,55.2394755278752],[-122.43920460252713,55.2395118392125],[-122.43926726025799,55.23953942074371],[-122.43934534962807,55.239593232496645],[-122.43943987472842,55.239639665692984],[-122.43954796306053,55.23971115433298],[-122.43967287030705,55.23979321527997],[-122.43979907878057,55.23983831210332],[-122.43986094507852,55.23987484065908],[-122.43992319459791,55.2399293201225],[-122.43995398581818,55.23993804969664],[-122.44004820232574,55.240010262279036],[-122.4401104523082,55.240064741649405],[-122.44021841815062,55.24018219732635],[-122.44032717687708,55.24029070558461],[-122.44035796846156,55.24029943505905],[-122.4404521865404,55.24037164733778],[-122.44053027911042,55.24042545835119],[-122.44057551327855,55.2404716020376],[-122.4406066884748,55.24049828238785],[-122.44066973215101,55.240543814152744],[-122.4407001152896,55.24057944180818],[-122.4407146569292,55.24061573763846],[-122.44080925990075,55.240705900585795],[-122.44084005190757,55.24071462994145],[-122.4409637892009,55.24078768599295],[-122.44105800951041,55.240859897816115],[-122.44107305905477,55.24086817692156],[-122.44116638865925,55.24095045441084],[-122.44122874061881,55.24100381480975],[-122.44129020168249,55.24106724092702],[-122.44132296190996,55.24107602643376],[-122.44135324702371,55.24111277234796],[-122.4413844232325,55.241139452504825],[-122.44141470845013,55.241176198404276],[-122.44144547652658,55.24122977681523],[-122.4414458603276,55.241247727750746],[-122.44150811411716,55.24130220642767],[-122.44155344939263,55.24134723134522],[-122.44158462591585,55.24137391145254],[-122.44171033444722,55.241447023031746],[-122.44172538434542,55.24145530205866],[-122.44174071918934,55.2414826504357],[-122.44177297285277,55.24151945251218],[-122.44180256575477,55.241564027237466],[-122.44195237271408,55.24165464623539],[-122.44201225209896,55.241735966674106],[-122.44219599721673,55.24184437429395],[-122.44241882741271,55.24191241274422],[-122.44264158247961,55.24193672000644],[-122.44276308496394,55.24196822407391],[-122.44282141731973,55.2420001649996],[-122.4429258677259,55.24209060757903],[-122.44304989571225,55.24238343393696],[-122.44306334024472,55.24245445670181],[-122.44307431080406,55.242553439918794],[-122.44304541690236,55.24267931498637],[-122.44303807942514,55.242985205563016],[-122.4430545467228,55.24311125579209],[-122.44310538246722,55.24318334715661],[-122.44322921920786,55.2432777071592],[-122.44338418138427,55.24331016669389],[-122.4434990041957,55.24332802407642],[-122.4436732724862,55.24332067006583],[-122.44375180364283,55.24330273157819],[-122.4438374367594,55.24324911609963],[-122.44396098776033,55.2431237029899],[-122.44407182920939,55.24303044277776],[-122.44416141858846,55.24293209031903],[-122.44425034697112,55.24277429291432],[-122.444294542336,55.242743039447085],[-122.44441441962103,55.242681432004694],[-122.44457265527322,55.24265455762024],[-122.44466574109262,55.24265048933587],[-122.44474061065226,55.242673931743774],[-122.44482068135213,55.2427277962924],[-122.44495502196416,55.24288188052757],[-122.44510894870072,55.243461475818584],[-122.4451731484391,55.243583282703],[-122.44526147893656,55.24365532273484],[-122.44532138809022,55.243691792381306],[-122.4454531334391,55.24371910118159],[-122.44560929572101,55.24371571230069],[-122.44575010973475,55.243707399944775],[-122.4459319642133,55.243681198227215],[-122.44602348948357,55.24365017444199],[-122.44617024541064,55.24355233177024],[-122.4463943538668,55.243427545215255],[-122.4464614905588,55.24335994498426],[-122.44659961898311,55.24318112599612],[-122.44672354733811,55.24307366106914],[-122.4469248361371,55.242916827374565],[-122.44701675431132,55.242881329176456],[-122.44708415839088,55.24287764716576],[-122.44739066225726,55.242892002781616],[-122.4476363491697,55.24292480414929],[-122.4478623484385,55.24297946797531],[-122.44801416791383,55.24300286204056],[-122.44816007526273,55.2430485120417],[-122.44846607015685,55.24311330633493],[-122.4487713744082,55.24318592883576],[-122.44908642870566,55.24323752514124],[-122.44942059398572,55.24322911878984],[-122.44951604373423,55.24322062932963],[-122.44997910619804,55.24322711090869],[-122.45031710835813,55.24321993284188],[-122.45056674983202,55.24320799147277],[-122.45095337893062,55.24314165148899],[-122.45123972646243,55.243116179365494],[-122.45148583264111,55.243077225623296],[-122.45176194473986,55.24305594545231],[-122.4521551464925,55.243049214896764],[-122.45227469800739,55.24305822898357],[-122.45246007425483,55.243081452844976],[-122.45265646887827,55.243113960381656],[-122.45282255493161,55.243154573698384],[-122.45298500146174,55.24319171934458],[-122.45312697921148,55.24323725135712],[-122.45335534479436,55.2433099122035],[-122.45345786534183,55.24335544066583],[-122.4535161972321,55.24343222580003],[-122.45353467646613,55.24351348150937],[-122.4534794194249,55.243737275845405],[-122.45347729771125,55.24396258427157],[-122.45334431733879,55.24412810193903],[-122.4531284762279,55.24431592545786],[-122.45292492307632,55.24454334221203],[-122.45277174699815,55.24478116436759],[-122.45272635975489,55.24487069117807],[-122.45283555380938,55.244997139457254],[-122.45292823200673,55.24506481253126],[-122.45327604439562,55.245237303746016],[-122.45351817611778,55.24540005531242],[-122.45360849361907,55.24547214551198],[-122.45367705854493,55.245567161865175],[-122.45381585081053,55.245805455035935],[-122.45392465090032,55.245958800688754],[-122.45400188434499,55.24602266912138],[-122.45411356240807,55.2460763063904],[-122.4542858270657,55.24627070296962],[-122.45460322652723,55.24654211381201],[-122.45473418872746,55.2466232094483],[-122.45497241243068,55.246718572251076],[-122.4554989369689,55.24699033024553],[-122.45588269695013,55.2471582308859],[-122.45597302675044,55.24720789476723],[-122.45605813849902,55.24727198608432],[-122.45607397835953,55.24729374056428],[-122.45607269235536,55.24733070475329],[-122.45591884224964,55.24753151060353],[-122.45585131165168,55.247648438896675],[-122.45581536607396,55.24778756999776],[-122.45581102680902,55.2478367808603],[-122.45583223630722,55.24808854178833],[-122.45582511468179,55.24828119173453],[-122.45581359286241,55.24832234943486],[-122.45577057955646,55.248362610473436],[-122.45571930305242,55.24838469642711],[-122.45538712314193,55.248593878841696],[-122.45539105515724,55.24861641555297],[-122.45545727129492,55.24869342399958],[-122.45553303733675,55.24875164330756],[-122.45560831477682,55.24879303009639],[-122.45570495139363,55.24881596397963],[-122.45576527642507,55.24882553028604],[-122.45600127201394,55.248812067299376],[-122.45611130423757,55.24877259299832],[-122.45624938854739,55.24870588631721],[-122.45659936245357,55.24858578589378],[-122.45683644814717,55.24851516937004],[-122.45703367210544,55.24847144873454],[-122.45719625630853,55.248417772010576],[-122.45750597992452,55.248261765293336],[-122.45774856935729,55.248218213413544],[-122.45788939662137,55.24820988733213],[-122.45797304413105,55.24822347995485],[-122.45814022913804,55.24834148192496],[-122.45822386842653,55.24842234822686],[-122.45830189339459,55.248544540408574],[-122.45834803008309,55.24869273487285],[-122.4583483963837,55.248912507315225],[-122.45825005414758,55.2491328349739],[-122.45824729460145,55.24916415103456],[-122.45831588239452,55.24921431562716],[-122.45837158225599,55.24923159768464],[-122.45842876042221,55.24923210325402],[-122.45852461670381,55.2492191331633],[-122.458738475236,55.24916579193112],[-122.45895066791464,55.24904176519564],[-122.45916452960998,55.248943573999085],[-122.45930851643821,55.24885460727334],[-122.4594095910138,55.24880478424653],[-122.45954609367426,55.24875596881722],[-122.45988059232434,55.24881145295592],[-122.46000517901167,55.24885311806169],[-122.46007583887426,55.24885736999321],[-122.46018980018493,55.248862853270175],[-122.46030110549889,55.248853684882604],[-122.46053858023544,55.248778587582734],[-122.46061071888256,55.248743638106454],[-122.46077842056806,55.24863179821318],[-122.46093509706832,55.24855552410563],[-122.46107159957651,55.2484618577737],[-122.46133987514065,55.24835063406834],[-122.46190397599848,55.248151392770716],[-122.4621193974286,55.24814742464894],[-122.46222312216184,55.24815710009381],[-122.46242387859725,55.24823007961823],[-122.46246058521328,55.24826139605839],[-122.46247593478965,55.248378440359005],[-122.46237496243026,55.24847199666989],[-122.46233667894997,55.24852584899468],[-122.46235478179621,55.24872370024462],[-122.46240369150291,55.24877330320809],[-122.46248891621013,55.248791422471946],[-122.46275984530781,55.248806970301885],[-122.46321628220355,55.24879975773895],[-122.46333860883762,55.2487998696577],[-122.463466052881,55.24878667207847],[-122.46360048404351,55.24876133933822],[-122.4636470329757,55.24874808578587],[-122.4637437718168,55.248702621148745],[-122.46375794290451,55.248676114200435],[-122.46376542158539,55.248613537752824],[-122.4636968272569,55.24847367769853],[-122.46343456001932,55.24833728503123],[-122.46330633027463,55.24820245774534],[-122.46320929754258,55.24807188042075],[-122.46332611103328,55.24797765238042],[-122.46341133440654,55.247950921781786],[-122.46356436230323,55.247916026455904],[-122.4637213265469,55.24790366738909],[-122.46387169702119,55.24787654481451],[-122.46407442164882,55.2478598791309],[-122.46434583533981,55.24780255748967],[-122.46473238826286,55.247759717765526],[-122.46498254454006,55.24771973070808],[-122.46531546401144,55.24770339676558],[-122.46620971133277,55.2476760896717],[-122.46630319988995,55.247667531468615],[-122.46662745540812,55.24761506878592],[-122.46749610872499,55.247542176916575],[-122.46770512789524,55.24752119914225],[-122.46791739525312,55.24750816178427],[-122.46804365435575,55.24750838078232],[-122.46840257009735,55.24764526315433],[-122.46850197132093,55.247704144670614],[-122.46874654374307,55.2478848733651],[-122.46887085734821,55.24804200799364],[-122.4689311967846,55.248141266385375],[-122.46894421012193,55.248307577041494],[-122.46893112650879,55.248344206364486],[-122.46873070943052,55.24869394971278],[-122.468605354417,55.24886306239312],[-122.46858676151884,55.24891747502625],[-122.4686116639822,55.24894845462064],[-122.46874964494077,55.24899497560728],[-122.46906998737356,55.2490545179731],[-122.46922736046285,55.249127376678835],[-122.46936504800857,55.24917725230281],[-122.46957183250123,55.249294118589255],[-122.46967281836503,55.249379953378835],[-122.46982421235852,55.24958831001317],[-122.46993115206448,55.24996583209186],[-122.47005350467104,55.25010048512949],[-122.4702661026681,55.250218636159815],[-122.47042308171861,55.25025111788492],[-122.4709051303266,55.25028945191738],[-122.4710428153577,55.25029447645332],[-122.47139789180454,55.25025072323025],[-122.47144247156093,55.250237410969085],[-122.47160700739795,55.2501613466069],[-122.47169497903984,55.25010329397874],[-122.47188626588289,55.24994725936241],[-122.47218059542188,55.249808720701886],[-122.47237859435126,55.24975602823588],[-122.4726231449935,55.24971250316633],[-122.47303341445803,55.24962433930223],[-122.4733020627929,55.24953104067621],[-122.47346698475562,55.24945050009129],[-122.47373089198769,55.24929876270815],[-122.47386775384427,55.24917818396256],[-122.47399516003857,55.249030427910675],[-122.4742424586675,55.248618095568574],[-122.47436672233796,55.24850612932885],[-122.47453035019677,55.24839527787562],[-122.47472085216882,55.2483154603226],[-122.47496038253895,55.248306546681526],[-122.47502504021205,55.24831174136238],[-122.47515839675438,55.248343548265595],[-122.47549609924353,55.24852017257493],[-122.47577699856731,55.248624550763935],[-122.47600690653984,55.2486803934417],[-122.47645591719525,55.2488478326349],[-122.4765288485377,55.24887120023026],[-122.47666141636401,55.24888952847065],[-122.47679240819508,55.24890332707919],[-122.47690479578263,55.24890426557511],[-122.47752576619904,55.248865778250426],[-122.47762791232178,55.24884848677176],[-122.47819668481198,55.24870760936981],[-122.4783186108782,55.24868975574942],[-122.47852920666728,55.24867328928398],[-122.47872889171074,55.24869127160006],[-122.47892771248316,55.24876416885121],[-122.47897782711982,55.24882276855841],[-122.47897148465121,55.24896274146619],[-122.47894001826981,55.249029124511544],[-122.4788208867071,55.249150209925226],[-122.47857874887492,55.24930145213697],[-122.47844297865907,55.249409733145164],[-122.47828839833544,55.249484966513215],[-122.47808520602432,55.24957452141328],[-122.47775151622339,55.24966711090565],[-122.47764504734992,55.24971118949702],[-122.47754291486349,55.24977333022651],[-122.47751093959975,55.249800455909295],[-122.47757248715686,55.24990871339456],[-122.47764110828166,55.24998129196712],[-122.47778709064445,55.25007175652219],[-122.47797606670987,55.25012195221247],[-122.4782557744059,55.250150047708004],[-122.4783663035428,55.250172235371146],[-122.4784680774911,55.25020426622572],[-122.4789675172678,55.25040451632697],[-122.47906851720708,55.25046791888815],[-122.47913950225161,55.250536078522906],[-122.47922515667494,55.250616986407984],[-122.47948757325915,55.250955167430774],[-122.47958346304289,55.25103187961538],[-122.47994647876415,55.25139308629968],[-122.48015290421586,55.25149198421411],[-122.48051071183338,55.25161982850056],[-122.48067451061142,55.2516872474694],[-122.48075178782483,55.25172867472047],[-122.4809960283648,55.251869003973574],[-122.48140958582361,55.252081391467776],[-122.48155400750343,55.252167322190395],[-122.4817599718581,55.25231665893933],[-122.48184199216547,55.25239409842604],[-122.48191390784564,55.25254188893336],[-122.48191940649292,55.25272704504857],[-122.4819150882847,55.2527538322133],[-122.4818820469531,55.2528156865942],[-122.4818220446404,55.252892476074905],[-122.48169542804229,55.2530088679556],[-122.48150376290113,55.25314696684346],[-122.48135509948074,55.25326722019135],[-122.48123751948742,55.25334798814331],[-122.4810189579596,55.253432628944054],[-122.48090461847815,55.25349891238751],[-122.48086950853794,55.253561829308005],[-122.48086356365528,55.25369732856888],[-122.48090506884634,55.2538543510342],[-122.48093108075007,55.253917874488465],[-122.48097450584379,55.25396282945135],[-122.48107985655116,55.254044292515566],[-122.48128276303046,55.254161028124265],[-122.48138140576512,55.254206422362785],[-122.48145002091715,55.25423414961096],[-122.4815600734417,55.254261926695264],[-122.48165281110712,55.25430715381676],[-122.48172664684665,55.254342876958304],[-122.48196097636625,55.25450646926693],[-122.48199022133367,55.25453308365618],[-122.48210072938161,55.25469093422125],[-122.48214770212971,55.25474047382931],[-122.4822689037055,55.2548212624409],[-122.48237033273867,55.25492503780043],[-122.48280162415935,55.255296012157935],[-122.48303016665179,55.25548074180178],[-122.48319272403357,55.2555851219695],[-122.48328862080805,55.255639406702834],[-122.4834259565968,55.25569374061596],[-122.48399809807538,55.255830991006555],[-122.48440925820007,55.25586838979455],[-122.48461558419243,55.25590112491723],[-122.48485980359797,55.255929323500496],[-122.48508749171154,55.25596602459906],[-122.48527018296511,55.25597566706658],[-122.48585130769258,55.25596516204976],[-122.48599697371581,55.25594684924514],[-122.48603840008744,55.255924473001464],[-122.48610972163765,55.255853607112044],[-122.48622801775157,55.25565176378012],[-122.4862745416411,55.255593652511266],[-122.48649657250947,55.255379039639664],[-122.4866102236483,55.25532058023018],[-122.48691825044236,55.25522836328249],[-122.4870690369469,55.255219163504954],[-122.4872146152526,55.25522439235869],[-122.48731403602683,55.25523840964447],[-122.48754095390835,55.25530647851814],[-122.48747356943383,55.25553554714983],[-122.48740141123024,55.25568375378926],[-122.48725396922273,55.25585786663187],[-122.4870852171883,55.25611771144022],[-122.48672867834021,55.25658416642866],[-122.48652525868081,55.25699215377702],[-122.48650368063102,55.25712609044391],[-122.48649540725374,55.25728843290158],[-122.48653260957592,55.25744981623993],[-122.4865495585352,55.25748168850013],[-122.4866513834773,55.2575585619506],[-122.48742535507479,55.258028884783094],[-122.4875579985388,55.2581144753376],[-122.48767952799085,55.258214327976354],[-122.48779985771472,55.2582827526907],[-122.48789575345599,55.25831460925762],[-122.48802129209913,55.25836860491271],[-122.48821629549728,55.258531074862574],[-122.48829480826237,55.258626349894],[-122.48854872385162,55.25885999595568],[-122.48868047872959,55.25893322678712],[-122.48873571643819,55.25895608755897],[-122.48890387311282,55.258996708333484],[-122.48901511650327,55.25901105737439],[-122.48905419900923,55.25901552306304],[-122.48925468189697,55.25911535786594],[-122.48939598972053,55.25919222087308],[-122.48950571420445,55.2592917386769],[-122.48957607779224,55.25941257087525],[-122.48955794306436,55.259529786759614],[-122.48932649583193,55.25980692768191],[-122.48912582248703,55.26018360260904],[-122.48909591607979,55.260367759253164],[-122.48909914376175,55.26048894111246],[-122.48912400020639,55.26056588436302],[-122.48962925470332,55.26095012935274],[-122.48980492006844,55.2610178694077],[-122.4899260434251,55.261077344431314],[-122.49026466924417,55.26120013195541],[-122.49038235956621,55.261276327895445],[-122.49039618707974,55.261343990270944],[-122.49034653633252,55.261437893734055],[-122.4902613172916,55.261487067423936],[-122.49015442510026,55.26151320593742],[-122.48949812427513,55.26154740172561],[-122.48918252703851,55.26156765530404],[-122.48913794059578,55.26158097392495],[-122.48906687873377,55.26160363693574],[-122.48893786729845,55.26167960529046],[-122.48883181244737,55.261786493575826],[-122.48881050432591,55.26187222604918],[-122.48880866315223,55.26207399228075],[-122.48887396338415,55.2624335001887],[-122.48901176619816,55.26270871900894],[-122.48916145371483,55.262938303030005],[-122.48929928561002,55.263100279881606],[-122.48946582804508,55.263204762954025],[-122.48973623951403,55.26331777989668],[-122.48998058179546,55.26345809166841],[-122.49089674799058,55.2640422754681],[-122.49118018649217,55.264187049996835],[-122.49135427463791,55.26422783392866],[-122.49170821681864,55.264107745699185],[-122.49189049236892,55.26403215372983],[-122.49223168992974,55.26385452338971],[-122.49239113241171,55.26379174207227],[-122.49253041228425,55.26375642288155],[-122.49261211849532,55.26374751215896],[-122.49274030010302,55.263748880045874],[-122.49281927262795,55.26377128604552],[-122.49296926073428,55.263839419180705],[-122.49327080035098,55.263957789556365],[-122.49348754189668,55.264030044241345],[-122.49358228454166,55.264075317965194],[-122.4936888923918,55.26418819820042],[-122.49385942285987,55.26433763558141],[-122.49399761760222,55.264427859485565],[-122.49425141921589,55.26455048928259],[-122.49441807811162,55.264653847289026],[-122.49463007886267,55.264825753849],[-122.4949669401979,55.26515029500259],[-122.4954688138794,55.26559720570771],[-122.4957444502703,55.265922263841546],[-122.49593251618076,55.26618767571211],[-122.49604307452978,55.266300664767705],[-122.49635142143677,55.266522369466145],[-122.49650183441248,55.2666084491631],[-122.49674222609025,55.26668136297908],[-122.49704543716491,55.26675828573814],[-122.49766112552813,55.26680587502608],[-122.49832928132977,55.26684036085359],[-122.49857515606483,55.2668730618049],[-122.49875714007594,55.26691405686619],[-122.49887394637555,55.26695546170659],[-122.49903670863921,55.26708112748352],[-122.49911487388734,55.2671808696222],[-122.49927731080284,55.26749152459253],[-122.49926280671774,55.26756735877344],[-122.49922537416427,55.26765712408986],[-122.49879530703325,55.267880487070286],[-122.49853807962818,55.268045920803466],[-122.49851292827212,55.2681080011345],[-122.49849048724992,55.268229581526946],[-122.49849349113386,55.26851220962734],[-122.49851527067817,55.26864736655963],[-122.49860667785936,55.26891229839778],[-122.49869120250274,55.26907500700798],[-122.49882786476296,55.26918312102211],[-122.49914765513884,55.26938720023098],[-122.49934626556815,55.26950938817917],[-122.49951765623953,55.26958147774425],[-122.49979564666116,55.269721592834095],[-122.49997127003195,55.26979043707292],[-122.50012127220513,55.26983613698271],[-122.50043479129603,55.26995370366389],[-122.50063416706185,55.27004451718652],[-122.5008390411676,55.2701175455917],[-122.50144859403807,55.27028154732404],[-122.50133985203144,55.270555429782966],[-122.50132502462905,55.270703012051115],[-122.50132277998108,55.270932795602135],[-122.5012253693908,55.27100854341673],[-122.50099577993738,55.27115121367083],[-122.50081394161487,55.2712896191019],[-122.50065183772489,55.27147342690723],[-122.50054029668775,55.271711351781704],[-122.50046823435694,55.27183602306377],[-122.50048738310271,55.27220543711474],[-122.50054676506991,55.272316983508176],[-122.50082946161386,55.27251665170251],[-122.50111065753704,55.27268824694314],[-122.50125476339987,55.27273377952412],[-122.501610468052,55.27286598197845],[-122.50199276270014,55.27310095955494],[-122.50229644351424,55.27319582037084],[-122.50254164686534,55.273304735231434],[-122.50313599072774,55.27366675286296],[-122.50319716546541,55.273689773132084],[-122.50334521633037,55.27373541388505],[-122.50340559007756,55.27374495714045],[-122.50353784033354,55.2737453060327],[-122.5043995253391,55.27368988633355],[-122.50446184586248,55.273677059691714],[-122.50463195742398,55.27362801592813],[-122.50482703256307,55.273723186111205],[-122.50499368258421,55.27385007318421],[-122.50530456943345,55.27404379412976],[-122.5054739467664,55.27413936340331],[-122.50575356983806,55.27428399439717],[-122.50591784264104,55.27439287421042],[-122.50622003213664,55.27464128744021],[-122.50692219692588,55.27539872942432],[-122.50705851377208,55.2755113083583],[-122.50716749956675,55.275574909193],[-122.50723103816686,55.27559350882948],[-122.50736134946465,55.275616223098865],[-122.5078568440837,55.27566263012133],[-122.50826061734374,55.275673949312036],[-122.5083242538332,55.275691429918965],[-122.50869223986757,55.27584189423862],[-122.50883563865756,55.27594121517586],[-122.5088810883863,55.275986215695504],[-122.50906017128021,55.27628835198413],[-122.50906848974356,55.2763289482166],[-122.50904609679955,55.27638213813091],[-122.50898372724289,55.27644093486753],[-122.50887094925018,55.27651177319167],[-122.50796540021516,55.27693486992524],[-122.5077013418488,55.2769969815005],[-122.50750558914437,55.27702288688863],[-122.507365060279,55.27702679518759],[-122.5070922458905,55.27700793368213],[-122.5069398988975,55.277011510116225],[-122.50675990315929,55.27703785619848],[-122.50651356949699,55.27710046238203],[-122.50641574058542,55.27715826351289],[-122.5063644791822,55.2772027950246],[-122.50631282851818,55.27725180039998],[-122.50616531591021,55.277449479068295],[-122.50618987584322,55.27748492510459],[-122.50625896092832,55.27753058952521],[-122.50640272485616,55.277603014724804],[-122.50656035053372,55.27765228329698],[-122.50693457325022,55.27773117066311],[-122.50711980068728,55.27780363645861],[-122.50728810379567,55.27788908182189],[-122.5074480177851,55.27795747375157],[-122.5078685712578,55.27807129310094],[-122.50814698847432,55.27816206644352],[-122.50833382599512,55.278261484210056],[-122.50843494223867,55.27832486310687],[-122.50880898887705,55.27858761608408],[-122.50892000639486,55.27869611994341],[-122.50897732890174,55.27878630098628],[-122.5090561551289,55.278992567965794],[-122.50905107922227,55.279119121063935],[-122.50901013250615,55.27922672978326],[-122.50889747378243,55.279409691495005],[-122.50880876467784,55.27952156765273],[-122.50870979575546,55.27970603409826],[-122.50862050967218,55.28000625527438],[-122.50863486429228,55.28015914052307],[-122.50865064833508,55.28018200684492],[-122.50870792175148,55.28022733868139],[-122.5087778894405,55.280262935457515],[-122.50885483627233,55.280286394596345],[-122.5090254357583,55.28030014492868],[-122.50953141086437,55.28015847615916],[-122.51010615856472,55.28004339838942],[-122.51041354345908,55.279960070965565],[-122.51055563708782,55.27993826363411],[-122.51075152563644,55.27993365964533],[-122.51107005655659,55.27994930812018],[-122.51122411939224,55.27997156189922],[-122.51164903290446,55.28008100494625],[-122.51205529150872,55.280155167118096],[-122.51237078646112,55.28018306035238],[-122.51288212963617,55.28025231326875],[-122.51334603160389,55.280344902552216],[-122.51362797221272,55.28039539850357],[-122.51382192092778,55.28041315923331],[-122.5140283685763,55.28042342104733],[-122.514223025504,55.28045577648136],[-122.51430798086176,55.28050075892027],[-122.51450000611715,55.28063170530878],[-122.51469982622403,55.280695597833784],[-122.51484713949067,55.28075017277805],[-122.51514218431613,55.28087727290251],[-122.51528239564429,55.28092267909143],[-122.5157135988834,55.28100537501428],[-122.51574451635221,55.28114975238265],[-122.51603196670779,55.28111406493487],[-122.51649648146778,55.28135914128769],[-122.51660788572373,55.28144073973757],[-122.51670594852413,55.28156232796168],[-122.51674436933651,55.281643006827515],[-122.5165540303377,55.28190228623023],[-122.51648181347059,55.28196081133925],[-122.51624230684024,55.28205838505018],[-122.51601187258916,55.28216518158544],[-122.51594317691179,55.28220586580693],[-122.51582638733026,55.28230014342963],[-122.51560254015568,55.282626877313426],[-122.51549729663124,55.28281565782347],[-122.51551676356628,55.282864413588825],[-122.51564762764993,55.28306316117492],[-122.51574580842815,55.28327444887403],[-122.51585730434915,55.28342332203613],[-122.51592327619285,55.28348234778268],[-122.51602283564314,55.28354119154611],[-122.51632996965981,55.28377962433271],[-122.5164140612068,55.28383467166614],[-122.5168055314146,55.28401155326157],[-122.51686879678341,55.284033503439574],[-122.51715670786375,55.28410658133401],[-122.51741649391172,55.28413963066694],[-122.51774626288682,55.2842082712143],[-122.51785884711794,55.28420805428655],[-122.51799071352653,55.2841904370922],[-122.51843314405012,55.284098530493715],[-122.51858270950436,55.28405898346089],[-122.51892931458309,55.2839789729558],[-122.51938046200183,55.28385479216235],[-122.51953557934593,55.28384230770116],[-122.519672190772,55.28383827561684],[-122.51993917886438,55.28387936919662],[-122.52011693389282,55.28392469700302],[-122.52031364628785,55.28400194731493],[-122.52042383900725,55.284052114814756],[-122.52073042248412,55.28422885515725],[-122.52115488975981,55.284526611126566],[-122.52143318892696,55.284824769361094],[-122.52150088359873,55.284978019813046],[-122.52151922872848,55.285062621133],[-122.52151774351313,55.28512536622872],[-122.52147756710768,55.285269999068916],[-122.52139840764158,55.28536309003176],[-122.52119839196979,55.28552904741953],[-122.52096691678238,55.2857389736647],[-122.52076880353138,55.28586013602152],[-122.52066977892183,55.28590894550087],[-122.5205915865321,55.28592245860246],[-122.52036543932593,55.28593408212054],[-122.51993820642188,55.28598717886755],[-122.51975230003116,55.28603580332525],[-122.51962126663304,55.286089323887175],[-122.51952973292113,55.286142826523225],[-122.51941736535021,55.28623162519997],[-122.51938658395042,55.28626776460359],[-122.5193062510215,55.28644266855868],[-122.51929055209135,55.28648707761687],[-122.51929216237195,55.28658242379129],[-122.5193757727732,55.286779846606784],[-122.51940826208663,55.28683793489709],[-122.51943471268227,55.28687455187189],[-122.51956283495129,55.28699137103159],[-122.51986662832317,55.2871321570055],[-122.51998584145659,55.28714669854798],[-122.52010434452144,55.287146644674074],[-122.52030960174717,55.28712546852323],[-122.52052997388098,55.28713498624859],[-122.5208984985895,55.28721254822575],[-122.52105055979266,55.28725827802983],[-122.521126461294,55.287294032929125],[-122.52122571480415,55.28740219585824],[-122.5212795567975,55.28751021204658],[-122.5212943175059,55.28763619732025],[-122.52129124928267,55.28776280601971],[-122.52126692822131,55.287838367859756],[-122.52121285961462,55.28791534154972],[-122.52110246105482,55.28800419676706],[-122.52085698613408,55.28814758221885],[-122.52059942908798,55.28831641721971],[-122.52047236178466,55.28839247340685],[-122.52038237471736,55.288428080947675],[-122.52023870558261,55.288467795224555],[-122.52012497795465,55.28850386078244],[-122.51988702370463,55.288605970509394],[-122.51976383174221,55.288637286662876],[-122.51951673727284,55.288685323297315],[-122.51909196017708,55.28875530446593],[-122.51882580914874,55.28877253525559],[-122.51867619552065,55.288789657910755],[-122.51856175140125,55.28887951927193],[-122.51853293749313,55.28891571352321],[-122.51849039302951,55.2889963717862],[-122.5184713548109,55.28919316953056],[-122.51850064453868,55.289288167969545],[-122.51856711022278,55.28940999248352],[-122.5186738554566,55.28952285159053],[-122.51874620636046,55.289554023922214],[-122.51887463009453,55.28959909582578],[-122.5191574493902,55.289663056145876],[-122.51954701811431,55.28983987418782],[-122.52007083290847,55.28999465270812],[-122.52043111248857,55.290144862464395],[-122.52057969509792,55.290230858258134],[-122.5207839330321,55.29031280187776],[-122.52089743809351,55.29039333309186],[-122.52104204935556,55.29052518617311],[-122.52132129369392,55.29083570315472],[-122.52141025211829,55.290903215498254],[-122.5215651383946,55.29098490120077],[-122.52161649807121,55.29100763745419],[-122.52167690210555,55.291017171874984],[-122.52188466576438,55.291012880392024],[-122.52198334665778,55.29099096855366],[-122.52206978478299,55.29095077592161],[-122.52231788810222,55.29077718895193],[-122.52244134022482,55.290651697572635],[-122.52250522903212,55.29055257357917],[-122.52269501758452,55.29018563538897],[-122.5227746678453,55.29008695113587],[-122.52281375114116,55.29006898156033],[-122.52317299650878,55.28998034122771],[-122.52321879874647,55.289976013258894],[-122.52335307293336,55.28997639610564],[-122.5234549499891,55.28998596562558],[-122.52357142783883,55.29000939665758],[-122.52366791180916,55.29003563335012],[-122.5237216291478,55.29005394975983],[-122.52383736646065,55.290108753118886],[-122.52396709489307,55.290230096698416],[-122.52401012323386,55.290280629225634],[-122.52404853317647,55.29033888121609],[-122.52411585981761,55.29049660427052],[-122.52415134143455,55.29070277123543],[-122.52421898844429,55.29081117091617],[-122.5244578434748,55.29104094929007],[-122.52451360117921,55.29110416969561],[-122.52482225126246,55.29155452527379],[-122.5249240546871,55.29177038975723],[-122.5249596944683,55.29188350229127],[-122.52497520835794,55.29197811459166],[-122.52499418956735,55.292534752468235],[-122.52501797292435,55.29262511061219],[-122.52507651305183,55.29270186251762],[-122.52523907434544,55.292831968305066],[-122.52541448976531,55.2929276754752],[-122.52550578267468,55.29296834120831],[-122.52576854409362,55.29303621110411],[-122.52623100482235,55.293101798971286],[-122.52626027208964,55.29310597836056],[-122.52639336038904,55.293097355099846],[-122.52675941663861,55.29306719536085],[-122.52687586989707,55.2930681986203],[-122.52735458056479,55.29312862922341],[-122.52745569267127,55.29314714339069],[-122.5276150245752,55.293223338968545],[-122.52780901659949,55.293287045835896],[-122.52811679136406,55.29340549690537],[-122.5282270196127,55.29345565755224],[-122.52852789426316,55.29363109569299],[-122.52866184297974,55.293726764048614],[-122.52880032649986,55.29388422366748],[-122.5289122138458,55.29398376194842],[-122.5291137804473,55.29409700968556],[-122.52965286369027,55.294373258479496],[-122.5297382154024,55.294391331801656],[-122.53024571615951,55.294393129761836],[-122.53034760605468,55.29440269365488],[-122.53049972692934,55.294402444085584],[-122.53081513694747,55.29436413509034],[-122.5312679407483,55.29447316090449],[-122.53138114040893,55.29487769476737],[-122.53137300261884,55.2950176160129],[-122.53135143979974,55.295084286777644],[-122.53132254989289,55.2953043555418],[-122.53133923258576,55.29561426610716],[-122.53143599778592,55.29591183015425],[-122.53158106474656,55.29622195017141],[-122.53161236126394,55.296317000435266],[-122.53165692874342,55.29650996283626],[-122.53169046332805,55.29676204081884],[-122.53180730947075,55.296987286467925],[-122.53184256870918,55.29703647846926],[-122.53209487453094,55.29724867549913],[-122.53220511828951,55.297298832647954],[-122.53249079516445,55.29737629436271],[-122.53262629206928,55.29738567000295],[-122.53274014979372,55.297416867115274],[-122.5334057149707,55.29746453209447],[-122.5339949631429,55.297480920447796],[-122.5341284900204,55.297490239650415],[-122.5343398806781,55.29751293570181],[-122.53446782488977,55.29754115935484],[-122.53472711589198,55.297626851527724],[-122.53474011111172,55.29784247933317],[-122.53469626698913,55.29812155521758],[-122.53466601276676,55.29817453065648],[-122.53462422350526,55.2982238218274],[-122.53441383935714,55.29832672650439],[-122.53402790538452,55.298563775464494],[-122.53378088485078,55.29867911451329],[-122.53357057454117,55.29882686717812],[-122.53350032284115,55.29888545704654],[-122.5334408724389,55.29897910390603],[-122.5333349753207,55.2992216971146],[-122.53332995275116,55.29927985882225],[-122.53334792451687,55.299414900393444],[-122.5334108184524,55.29948728408989],[-122.53385633675278,55.29995599507373],[-122.53389996739162,55.29999981326502],[-122.53401812613548,55.300118580665455],[-122.53421069565631,55.300245022948225],[-122.53445190198053,55.30040308908546],[-122.53459467966559,55.300511328572306],[-122.53490382483363,55.30063764723829],[-122.53514893795722,55.30077339690996],[-122.53523900354648,55.30082859599547],[-122.53537985416583,55.300959204508715],[-122.53556375275714,55.301300669897365],[-122.53576834478699,55.30158552992854],[-122.53600684165413,55.30198120734726],[-122.5360225882763,55.30218794190859],[-122.53600109500981,55.30234543085758],[-122.53598276947086,55.30294699480311],[-122.53594914453751,55.30315347851711],[-122.53586622814987,55.303404560747765],[-122.53584219268144,55.30368306644842],[-122.53584473656353,55.303836738724385],[-122.53586915509847,55.30398877655033],[-122.53610068225649,55.30428223245371],[-122.53619719349473,55.3043544274126],[-122.53634976381076,55.30441808935865],[-122.5366445826308,55.30450476343387],[-122.53688446085064,55.30456412333018],[-122.53726865623575,55.3046454306282],[-122.53756536694365,55.30468730785469],[-122.53793635927354,55.30471555093367],[-122.53835037218487,55.304771895842975],[-122.53885106024705,55.304854190707154],[-122.53936589138733,55.30490996789795],[-122.53978193317027,55.30494281956461],[-122.53996254623112,55.30497922588161],[-122.54037622207574,55.30506246278398],[-122.54063947331683,55.30512582742373],[-122.54081421786908,55.305184493119675],[-122.54094814773711,55.30523529895472],[-122.54128469000403,55.30543411575387],[-122.54155081819864,55.30555585929834],[-122.54167738233195,55.305669245745214],[-122.54170713332314,55.3057137969385],[-122.54182770612893,55.30598846619702],[-122.54189744158982,55.30611933584005],[-122.54194189386317,55.30622259588022],[-122.54200365758278,55.30630839731248],[-122.54213623526604,55.30642082883834],[-122.54226550176338,55.306502896643],[-122.5424878804181,55.30667387728192],[-122.54269761094167,55.306877020756545],[-122.54277164190955,55.3069351325944],[-122.54350044544196,55.307374661313105],[-122.54361995795207,55.30745533593966],[-122.54381778098059,55.30761330018558],[-122.54442159144484,55.308127839685774],[-122.54455057357765,55.30825922859134],[-122.54473877499542,55.30852904179371],[-122.54489506870212,55.308664550764796],[-122.54514314311571,55.30885866166347],[-122.54535761131726,55.30905296193279],[-122.5456732929798,55.30924221803643],[-122.54580666073691,55.30934569765395],[-122.54609614187393,55.309540953669966],[-122.54612570045367,55.30967967673612],[-122.54616853497423,55.309755981947774],[-122.54626954405427,55.3098910785254],[-122.54641709652881,55.31003643370946],[-122.54649979414502,55.31008581374607],[-122.54672837010473,55.310185202518674],[-122.5472546200018,55.310384771199296],[-122.54741122044878,55.31047095357056],[-122.54760075575601,55.31061074279079],[-122.5475835840313,55.31074144429375],[-122.54758673978871,55.31111824517324],[-122.54755123224002,55.311576942099954],[-122.54763585038668,55.31178782309284],[-122.54753846399333,55.312115871898484],[-122.54753855799964,55.31216072135269],[-122.54756557686207,55.31226013260068],[-122.54761514812306,55.312350077782796],[-122.54767178869854,55.31242676463316],[-122.54769520492077,55.31245319995795],[-122.5477885833968,55.3125163287719],[-122.54804410215925,55.31267027689984],[-122.54828274382758,55.31285963468351],[-122.54839665634312,55.31293678551481],[-122.54854341162682,55.31302269359427],[-122.54867430012305,55.31306331545297],[-122.54875171785511,55.313082276006675],[-122.54931768719278,55.31316521130887],[-122.54979638302524,55.313274879377744],[-122.55008821820712,55.31335134606633],[-122.55026685926687,55.313411226181046],[-122.55052628643101,55.31349688564087],[-122.55069550440349,55.31357444311083],[-122.55126615588232,55.313809977732255],[-122.5514152765323,55.31389146293519],[-122.55157305296427,55.31396421799337],[-122.55170717116398,55.314036318541284],[-122.55190510785962,55.314216694795974],[-122.55236191712588,55.314627341371036],[-122.55243141701723,55.31480752874162],[-122.55244349537755,55.314919979485516],[-122.55237378983242,55.31522525212371],[-122.55235817911466,55.31547596209788],[-122.55238195150734,55.315705337658876],[-122.55243606785629,55.31592658285609],[-122.55242410218507,55.316042853480766],[-122.55224084915733,55.316266504854646],[-122.55207634394083,55.31640995031483],[-122.55188456889432,55.31652573345871],[-122.55166596047466,55.31667777283518],[-122.551461536827,55.31682571950083],[-122.55129476851754,55.3170184329229],[-122.55128308554032,55.317085379936415],[-122.55130304825673,55.31719804894779],[-122.55134792149589,55.31729683170805],[-122.551496867636,55.31747248983326],[-122.55158401573159,55.31760831901535],[-122.55191115229077,55.31794138317985],[-122.55200359481417,55.31810762995842],[-122.55204616704191,55.318279224726844],[-122.55208606045869,55.31866600975354],[-122.55211444353992,55.31879572891885],[-122.55233314091974,55.31907982539223],[-122.55256996872072,55.31931397006462],[-122.55292844255959,55.31971965208883],[-122.55298894726803,55.31975159611142],[-122.55321585623962,55.31977917031488],[-122.55345728678803,55.31977575275673],[-122.55365961891417,55.31979031403657],[-122.55396001293711,55.319790767376006],[-122.55455950729196,55.319829755809764],[-122.55482825589085,55.31983045387095],[-122.5552460013331,55.319845357803054],[-122.55532002300994,55.31988103752756],[-122.55540288570407,55.31985978194628],[-122.55571088679513,55.31990977247989],[-122.55581717526181,55.31991495045919],[-122.55648106481509,55.319917588468066],[-122.5567016254545,55.31992704229881],[-122.5570534896128,55.31997263477761],[-122.5576202882564,55.320024159617695],[-122.55819897255401,55.32009843316669],[-122.5585749393438,55.32016262511491],[-122.55870783313888,55.32020329089534],[-122.55901552162965,55.3203261400794],[-122.5592501560805,55.320448093986194],[-122.55932764663953,55.320489472733314],[-122.55948348357647,55.32072361068973],[-122.55961533677322,55.32082254719284],[-122.55971439319895,55.32093515389018],[-122.55977960953453,55.32111970255116],[-122.55978732903961,55.321214093184395],[-122.55974378321753,55.321514484723885],[-122.5597614751794,55.321861412126935],[-122.55988012826786,55.32204519247758],[-122.56001709359785,55.32217678316191],[-122.56013394419112,55.322266335831884],[-122.56013094174124,55.32237052114786],[-122.5602499302709,55.32289626493453],[-122.56083381314022,55.323671394825915],[-122.56110276060878,55.3242696635764],[-122.5611833263213,55.32459814323511],[-122.56127100200571,55.324728373156674],[-122.56138590434797,55.324863838322464],[-122.561422374708,55.324899599867045],[-122.56154691928434,55.32494563774747],[-122.56169844372054,55.32497672302741],[-122.56193880962535,55.325009136039725],[-122.5624101759904,55.32511406431304],[-122.56261730463078,55.32514219638536],[-122.56285098925765,55.32518339273855],[-122.56327811073191,55.325297188705996],[-122.56355900872443,55.325410317779614],[-122.56369778532381,55.32542871653419],[-122.5639971449199,55.325510960736004],[-122.5644604766884,55.32570983703184],[-122.56472479821504,55.325855020331254],[-122.56484787384436,55.325941376018434],[-122.56513339241661,55.32616225986553],[-122.56531708998358,55.32627943469725],[-122.56558733494003,55.326424779112145],[-122.5659320264124,55.32676276966697],[-122.5660346193196,55.326857529356566],[-122.5661581795394,55.3269382911474],[-122.56631488512602,55.32702444993429],[-122.56644939877091,55.32706963588674],[-122.56664947492408,55.3271110206694],[-122.56689500853719,55.327152535199886],[-122.56754144297517,55.32722190005695],[-122.5680549527891,55.327250605851674],[-122.56837053257468,55.327305256347856],[-122.56853469187583,55.327373678747605],[-122.56899052458768,55.327591390403796],[-122.56910773452441,55.32765403586804],[-122.56942148797748,55.32779944699767],[-122.56956045348716,55.327885113499526],[-122.56961289011149,55.327988580875356],[-122.5696647399875,55.328168270697525],[-122.56969156761038,55.32861747094342],[-122.56965226331477,55.32870720364366],[-122.56956393789144,55.32879222466339],[-122.56945967861554,55.328855505426105],[-122.56917818306752,55.32898005945661],[-122.5687259761665,55.32913579389857],[-122.56836960161424,55.32921119774455],[-122.56805562302377,55.32932252300193],[-122.5678159592518,55.32942019620511],[-122.56752585776793,55.32957590238299],[-122.56739015179757,55.32968316251561],[-122.56726524676662,55.329849019990704],[-122.56707747416529,55.33003332800401],[-122.56693628907855,55.330158375462936],[-122.56680381627918,55.33029711648638],[-122.56677227790934,55.330342215924354],[-122.56668084267822,55.33060205033693],[-122.56666602216015,55.33070591016156],[-122.56667119454768,55.330876468647425],[-122.56674343091817,55.331164352352204],[-122.56680741197077,55.331271502244654],[-122.56684632604383,55.33137123523379],[-122.56688238832372,55.331550491978184],[-122.56687660656269,55.33164114669733],[-122.56685305276793,55.33168534478422],[-122.56665184539536,55.33186479808833],[-122.5665974019605,55.33190029781648],[-122.56633560088382,55.33202538838484],[-122.56601866356458,55.3323787982879],[-122.56585864137423,55.33258517095859],[-122.56573981008621,55.33281846416674],[-122.56573105681221,55.33294379306232],[-122.56573718185065,55.33321864580476],[-122.56589327743296,55.33352005037296],[-122.56602306228977,55.33371309910539],[-122.56615334640931,55.33383104373365],[-122.56622357338212,55.33391145798552],[-122.56653685040175,55.334316971217184],[-122.56667102545157,55.33441259912601],[-122.56690396644706,55.33460175884439],[-122.56707784478594,55.334718659757876],[-122.56731768179615,55.334827284953604],[-122.5674121380087,55.33485567068347],[-122.56763678678048,55.334887638530574],[-122.56784718638512,55.33490127540461],[-122.56808240597303,55.33490214083461],[-122.56811915718238,55.334888576817306],[-122.56826709725252,55.33477716732008],[-122.56838355518408,55.33473328228525],[-122.56868311916008,55.334675374078955],[-122.56888070333171,55.334653900852345],[-122.56912381190531,55.334654981339575],[-122.56951015525222,55.33466896952731],[-122.56972051810938,55.334706146540086],[-122.56984519828447,55.334751057660945],[-122.57005688851171,55.3348420860989],[-122.57030703974127,55.33496892739781],[-122.57037282963668,55.335008855427546],[-122.57069242037791,55.33524859935978],[-122.57087567550371,55.33551038149419],[-122.57090757383874,55.33559982962181],[-122.5709299941948,55.335869523331226],[-122.57092876463243,55.335999543631395],[-122.57095833288821,55.336139379710744],[-122.57101823197847,55.33622511281199],[-122.57135363264901,55.33658076830115],[-122.57161893655325,55.336761838491775],[-122.5721287726791,55.33713573897187],[-122.57241381113352,55.33731734951862],[-122.57274492109005,55.337538344261205],[-122.57305488075752,55.337706062798034],[-122.57343057921479,55.33789128222345],[-122.57364633523832,55.337981294442045],[-122.5740518892326,55.33811800102275],[-122.5744833740242,55.3383215662517],[-122.5751570365669,55.33860689543309],[-122.57526267546154,55.33864342988612],[-122.57579071704288,55.338735283174984],[-122.5759275725053,55.33875361421206],[-122.57612211718182,55.33876792252824],[-122.57629254316501,55.33876363024135],[-122.57644110948429,55.338737435989366],[-122.57670457708565,55.33863927717614],[-122.57673814696965,55.338616654095816],[-122.57687818564412,55.33850501782765],[-122.57693689295643,55.33844272294182],[-122.57702223346082,55.33827689165226],[-122.57700848828308,55.33815991476488],[-122.57698659717708,55.33809204504829],[-122.57692553695668,55.33801973718148],[-122.57689012303851,55.337948132956626],[-122.57688045075076,55.337876113863494],[-122.57690912029675,55.337795056418905],[-122.57698962240309,55.33773223838757],[-122.57713563914056,55.33764318899473],[-122.57722371340938,55.33760748621397],[-122.57741691639482,55.337567940581934],[-122.57753633179244,55.337558883868404],[-122.57771855748601,55.337578457649464],[-122.57827792929112,55.33755792385276],[-122.57856827544394,55.337584946334154],[-122.57864187347543,55.33762620495797],[-122.57875992463136,55.33772586123494],[-122.57892755107157,55.33784705752056],[-122.57920998473661,55.33803642820572],[-122.5796516103918,55.33819092234667],[-122.57974420583679,55.338218126137114],[-122.57997076065918,55.33825124441944],[-122.58010755114998,55.338247146100834],[-122.58049774759196,55.33821635890111],[-122.58058232149827,55.338198496238675],[-122.58068184921902,55.33816758957659],[-122.58085404801592,55.33809607081471],[-122.58108501214633,55.33798467975492],[-122.58144142621589,55.337770216767396],[-122.58156404599823,55.33767715790858],[-122.58185270574143,55.33739917425008],[-122.58201490280722,55.33728253410318],[-122.58218707836247,55.337071990748825],[-122.58239333157557,55.33687919795715],[-122.58249684850915,55.33673179994834],[-122.58262686773102,55.33657503752063],[-122.58281029187154,55.336302017393116],[-122.58286551783887,55.336234018982],[-122.58302245621533,55.3361093856824],[-122.58313307909172,55.33606420625248],[-122.58359786122898,55.33601639332309],[-122.58382557800232,55.336012538853765],[-122.58395163962915,55.33601823306644],[-122.58423336543605,55.33609994267053],[-122.58448083458357,55.33623564987376],[-122.58454248981361,55.336370754178134],[-122.58466282320316,55.33653661462914],[-122.5847428603474,55.33661840704945],[-122.58498534080702,55.33692887523244],[-122.58502859124951,55.33697826838471],[-122.58511775905713,55.33704573556828],[-122.58531180942958,55.33715867694155],[-122.58536759069169,55.337177020872076],[-122.58552856737185,55.33721393992621],[-122.58596592026966,55.33725617989558],[-122.58647358456273,55.337262223225316],[-122.58694913994013,55.33725056891657],[-122.58739427303661,55.33722462691922],[-122.58778647057538,55.337239838980814],[-122.58798588368919,55.337266594623664],[-122.58810260605992,55.337312390250624],[-122.5882792220332,55.33739794252305],[-122.58842505496152,55.33754319446671],[-122.58863717716088,55.337722771951874],[-122.58905933442955,55.33810653376645],[-122.58934531246379,55.338278038798556],[-122.58943753420547,55.33830970956762],[-122.58955183748536,55.338337499314086],[-122.58971914606286,55.338346557276424],[-122.59046375374503,55.33826376345554],[-122.59069383575067,55.33825547620124],[-122.59107178329187,55.33825234997605],[-122.59111687270044,55.338256945396054],[-122.59134079885393,55.33829781894575],[-122.5913985572676,55.33831621408403],[-122.59149912381538,55.33836604952029],[-122.5915376060886,55.338401856210695],[-122.59164119299894,55.338532496151366],[-122.59170263905258,55.33871692066274],[-122.59171680747045,55.33882942176221],[-122.5917119362612,55.33891001080303],[-122.59162573386197,55.33943571309607],[-122.59165882696864,55.33979089756678],[-122.5917207987074,55.34001569746109],[-122.59189371027128,55.34044757532654],[-122.59215643031969,55.34089311725796],[-122.59223397413342,55.34105107370076],[-122.59249945457196,55.34137112242191],[-122.59268389856281,55.34155105730306],[-122.59291258246309,55.341745653592945],[-122.59312020334937,55.341862315647845],[-122.5932619287016,55.341916636623004],[-122.59338057095897,55.34194005643353],[-122.59364164907053,55.34196288021777],[-122.59414692607722,55.34197443121458],[-122.5942082789663,55.34197386363517],[-122.59442318917638,55.341934884070376],[-122.59452516342165,55.3418984274821],[-122.59500762142912,55.34168960909441],[-122.59532556794441,55.34157832358104],[-122.59548287878451,55.341542255091966],[-122.59572854047524,55.34146711491587],[-122.59600631760682,55.34140966751829],[-122.5961624879155,55.34138702074093],[-122.59644337600308,55.34131620362671],[-122.59694692980088,55.34113822437536],[-122.59761340442763,55.340834634257504],[-122.59807033595574,55.340669954183696],[-122.59836069849341,55.340720473964545],[-122.59834497093964,55.34076601173705],[-122.59831309975196,55.340792050067684],[-122.59829691720905,55.34081963726128],[-122.59826540596235,55.34086474470211],[-122.59826479769366,55.34091854263212],[-122.59827769338831,55.34111621410582],[-122.59827738926049,55.34114311307156],[-122.59826190708249,55.341232381826835],[-122.59826084390754,55.341268229184635],[-122.59830692276383,55.341331147928635],[-122.59840126305815,55.34143125873764],[-122.59855750587661,55.34154763178495],[-122.59868259978387,55.341611583259485],[-122.59874552635445,55.341639084752394],[-122.59885644961528,55.341683590448326],[-122.59890237840773,55.341701659433554],[-122.59898184808313,55.3417206426551],[-122.59913976322808,55.341747369672746],[-122.59918720989849,55.34174754175813],[-122.59926425145585,55.34174852045199],[-122.5994071982247,55.341695238571816],[-122.5994542842474,55.341676341434855],[-122.59953511947197,55.34163257796447],[-122.59965970219636,55.34163260979953],[-122.5997083630007,55.34164178385616],[-122.59975474769723,55.341677803097625],[-122.5997861072495,55.34170444378837],[-122.59986315076524,55.34182202016587],[-122.59991150880775,55.3418580931152],[-122.59997322227248,55.34187659182303],[-122.59999961144712,55.34189188566618],[-122.60012967944657,55.3419671824868],[-122.60006523934787,55.34219077461149],[-122.59999999804931,55.34223720563551]]],[[[-117.84036248720119,52.272586028926696],[-117.84043670668854,52.27390999967265],[-117.83408616147165,52.2764592510469],[-117.82894283259097,52.27832853327529],[-117.82409875608329,52.28048742353482],[-117.8223162854379,52.28224526433502],[-117.82107383009856,52.286683938505824],[-117.8224648089094,52.28862209583661],[-117.82124477103211,52.29084131642789],[-117.81304616765634,52.290649362389246],[-117.80018509147283,52.29079490294542],[-117.79364666236256,52.29220817581448],[-117.78990708832471,52.294759265902655],[-117.79110568449482,52.29607246805695],[-117.79079846445795,52.30062831908101],[-117.78853564142781,52.30489102012571],[-117.78487492269353,52.30818349582136],[-117.78037830364492,52.312441180155155],[-117.77644145092647,52.31430808200303],[-117.77175560748627,52.3180001346709],[-117.76719587563524,52.317705614563216],[-117.75749652716931,52.31813558155724],[-117.74853903555668,52.31816741838689],[-117.74395162400532,52.319866656108694],[-117.74299082389663,52.32379184537459],[-117.74406666069594,52.32982652641336],[-117.7412400555333,52.333292691595204],[-117.73739099931747,52.33737814307408],[-117.73550271388446,52.3409632427481],[-117.73574471941077,52.34432428865102],[-117.73712749734915,52.346603798503764],[-117.72848122377314,52.354833030575875],[-117.71688675935218,52.357132544083136],[-117.70651195152308,52.359551238453896],[-117.70516673302173,52.36398712313317],[-117.71083547818591,52.3668503997408],[-117.7202442205681,52.368529182462254],[-117.72328484067428,52.37389090008912],[-117.73161698889001,52.38324885262022],[-117.7276292841294,52.39017924692073],[-117.72825835254189,52.39445275261464],[-117.73439307130431,52.396694256379554],[-117.74155800414684,52.40098063263385],[-117.75103547184348,52.40789789759982],[-117.75633519859497,52.41172226906026],[-117.76408207099577,52.41276812423316],[-117.78249645089258,52.41099551518295],[-117.79268575924009,52.41028021438006],[-117.80612036747581,52.41298694375694],[-117.81060076963618,52.414759785973104],[-117.81702176831485,52.41716615642966],[-117.8262798679258,52.41752684371522],[-117.83675247464822,52.41703752844054],[-117.84124168486456,52.41596435044884],[-117.84693805303151,52.41477914061351],[-117.8536569305083,52.41781197445968],[-117.86148511655098,52.420160662151055],[-117.86634727348758,52.42141973197608],[-117.87323444544842,52.42490651969724],[-117.87667538453033,52.42889806339994],[-117.882386313486,52.429362304884656],[-117.89265198603171,52.43091643088106],[-117.89909750935239,52.43314683486066],[-117.90245022750919,52.43400694326875],[-117.90815159262625,52.4357836407489],[-117.91319696309736,52.43789501436162],[-117.91494378443437,52.44239860712137],[-117.91557928791902,52.446267233002054],[-117.9230694748511,52.44690701477813],[-117.93288007894257,52.44822518485621],[-117.93680708721607,52.44943272403021],[-117.94342849996255,52.45154109618486],[-117.94529073552403,52.454106926121256],[-117.94855519227319,52.45821480121134],[-117.95341697116783,52.459983017798535],[-117.95621451220414,52.46152370852695],[-117.96162523648529,52.46551206319736],[-117.96796941328469,52.468880546402744],[-117.97020238062586,52.47304412188118],[-117.96953078653485,52.47884646319005],[-117.97101903378108,52.481124579475264],[-117.97410160377072,52.48289762919634],[-117.97896257065567,52.48461027496734],[-117.98129203361674,52.48922008801487],[-117.98277799188128,52.49429269853359],[-117.98426742302132,52.49617408417911],[-117.98529095917442,52.49816483187341],[-117.9887655182815,52.498169066699454],[-117.99362814058081,52.49765984290643],[-117.99947743309362,52.49624043833647],[-118.00040093824045,52.49630525711637],[-118.00210173680448,52.495865837810605],[-118.00467224527213,52.49434699052749],[-118.00543407205781,52.49384561981531],[-118.00712298849766,52.489807923687984],[-118.0085827273464,52.48731565373004],[-118.01023951887967,52.48488038376374],[-118.01199162718642,52.48233096201898],[-118.01400803661816,52.480353604152256],[-118.0149635500299,52.47944814790089],[-118.01714595763157,52.47793284498451],[-118.0185168377907,52.47583258225304],[-118.02081159934276,52.47363233763391],[-118.02242746904678,52.47244683456322],[-118.02451842511744,52.47149931201145],[-118.02574209122146,52.47082543824718],[-118.02679947663006,52.46968889963281],[-118.026455720925,52.46866467904764],[-118.02528811378664,52.46688382317448],[-118.02510538464091,52.46643018413319],[-118.02383000609261,52.46498989759386],[-118.02236332412139,52.463780652611234],[-118.0209957224947,52.462517847160484],[-118.02047378646799,52.46085750420295],[-118.02323995044505,52.45843136895131],[-118.02635753893752,52.457544354935976],[-118.03028699169715,52.45723763289717],[-118.03562812306482,52.45699848213359],[-118.03955729810076,52.457091887824646],[-118.04366698710334,52.457011996403835],[-118.04602161866005,52.45663555251451],[-118.04920378890114,52.45643653669241],[-118.05163960157482,52.45634191683927],[-118.05614619025262,52.45604064970833],[-118.05708965248753,52.455592641299866],[-118.05568949362538,52.45169922952757],[-118.05277785691585,52.44779913362909],[-118.05049581501007,52.44578642772602],[-118.04864675953236,52.44479943333928],[-118.04511163211114,52.44402715494977],[-118.04250758503976,52.44343321403837],[-118.03737694895874,52.44270789413177],[-118.0349596002397,52.44222755890501],[-118.03310029577996,52.441298234274065],[-118.03260531709938,52.43901258602253],[-118.03350312408503,52.43657397983107],[-118.03552336321876,52.43407945018397],[-118.03582368715439,52.43334034704338],[-118.03701749984829,52.430503576252704],[-118.03744454018798,52.428282454607746],[-118.03766895835524,52.42651384930561],[-118.0382730674985,52.42469633547574],[-118.03841225503167,52.42298730440899],[-118.03940146432522,52.42077154185013],[-118.0419606283027,52.41920178017433],[-118.0458142599262,52.41792451556845],[-118.04921152628253,52.4168690432821],[-118.05157600083082,52.415466783244284],[-118.05159755343561,52.41455003234816],[-118.05110107598509,52.41226887266502],[-118.04966054144604,52.409403967808245],[-118.04795309551909,52.40654099532341],[-118.04669472922872,52.40453457788789],[-118.04597643713795,52.4032127618661],[-118.04602739383448,52.40319765495433],[-118.04510743964448,52.402844519411666],[-118.04390370425098,52.40215375287985],[-118.04346986521206,52.40090673928065],[-118.04272110471791,52.40044971583488],[-118.04229313775971,52.400110638941484],[-118.04196611525337,52.39972660028445],[-118.04187372918314,52.399555548438485],[-118.04175805583925,52.3993902321867],[-118.04167319281572,52.39921856925573],[-118.04164160013711,52.399039288486115],[-118.0415776803024,52.398864553180516],[-118.04145621486794,52.39870052565082],[-118.0413308864329,52.39853736034193],[-118.04119752224808,52.39837758597294],[-118.04114965070706,52.398206209937854],[-118.04135914051547,52.398115145263525],[-118.04127640606544,52.39812186465603],[-118.04099581672317,52.398096928216304],[-118.04072969637919,52.39802391011156],[-118.040467396037,52.39793028905396],[-118.04020702795012,52.39783624068755],[-118.03994121946754,52.39776155439778],[-118.03966107607548,52.397724236269525],[-118.03937335210944,52.397707829592186],[-118.0390778706083,52.3977032974896],[-118.0387787017571,52.39770866374077],[-118.03848133141258,52.397724305722626],[-118.0381844478533,52.39774730849429],[-118.03789374188965,52.39777694452688],[-118.03761183800074,52.3978190348764],[-118.03734081623216,52.39789232264076],[-118.03707452536506,52.39798004095449],[-118.03680916218725,52.39806275067384],[-118.03653523290886,52.39812174009059],[-118.03625259261723,52.39813782163035],[-118.03596275846489,52.398112805247806],[-118.03566819328339,52.39807335690072],[-118.03537318457344,52.39804628624492],[-118.0350803254467,52.39804756503957],[-118.03478733283791,52.39805954627157],[-118.03449330522616,52.39807710502626],[-118.03420069442923,52.39809700773406],[-118.03390635717062,52.398116231352176],[-118.0336145708257,52.39813168601862],[-118.03332047105886,52.39813964358954],[-118.03302854210409,52.398135900352905],[-118.03273543436669,52.39811854710663],[-118.03244387787068,52.39809283466737],[-118.03215059721398,52.39806643420644],[-118.03185993910064,52.39804586305481],[-118.03156721579056,52.39803642091423],[-118.03126328034932,52.39803749601498],[-118.03096407633248,52.39805299284343],[-118.03068592543302,52.398094756837224],[-118.0304699639743,52.398200592021816],[-118.03029804076944,52.39835852734713],[-118.03011051546463,52.39850073177239],[-118.02992136863317,52.39864168717109],[-118.02969401679437,52.398748992974355],[-118.02940565053588,52.398805844175094],[-118.02909671457274,52.39884379694701],[-118.02882998205588,52.39890382443915],[-118.02867877931722,52.39902991052048],[-118.02864879963786,52.399221319633156],[-118.02858013941673,52.39940159926088],[-118.02839263804712,52.399533641209025],[-118.02815468634402,52.399648111132095],[-118.02793236481105,52.399768169694866],[-118.02781570055386,52.39992766137055],[-118.0277819342017,52.39999979023924],[-118.02773402759831,52.400108172472535],[-118.02761833213859,52.40028238707018],[-118.02738360761496,52.40033954480804],[-118.0270747202589,52.40032729125477],[-118.02677418637461,52.4003398711069],[-118.0264898768703,52.40039473926749],[-118.0262096049063,52.400457781687486],[-118.02592767374301,52.400499834699595],[-118.02564286912268,52.400487549003316],[-118.02535392092717,52.40043774054013],[-118.02506349023218,52.40040588790182],[-118.02476926648681,52.40038448564738],[-118.02447649544885,52.400385176339235],[-118.02418669257324,52.400409770155775],[-118.02389806547394,52.400447972591174],[-118.02361205908093,52.4004920045339],[-118.02333806264545,52.4005611134096],[-118.02305484951597,52.40059010257247],[-118.02275762552658,52.40058484156384],[-118.02246471490903,52.40059623923969],[-118.02217235714429,52.40062459598378],[-118.0218952506515,52.40068051850378],[-118.02162773740467,52.40075458296889],[-118.02136567541001,52.400839175696866],[-118.0211115142716,52.40093108126579],[-118.02086394347103,52.40102738458354],[-118.02061951077056,52.40112672859449],[-118.02037821614014,52.40122911331749],[-118.0201383367597,52.40133384239454],[-118.01990018066186,52.40143925843812],[-118.01966323108313,52.401548141605],[-118.01944118584693,52.40166651744692],[-118.01930122901369,52.40182157197598],[-118.01911016845197,52.401942643374625],[-118.01885254543447,52.402033177875566],[-118.0186289780852,52.402149750798685],[-118.01841200088829,52.40227072172758],[-118.01819481373802,52.40239281498844],[-118.01796586062348,52.40250844686892],[-118.01775567654568,52.402632710083374],[-118.01761446793809,52.40279444548613],[-118.01747622534376,52.402950185188494],[-118.01720189723162,52.402961155688274],[-118.01700421753452,52.40281891583676],[-118.01672712973858,52.40280488520182],[-118.0164546265512,52.40287577016945],[-118.01617860287826,52.402935699076146],[-118.01588964023483,52.4029755567568],[-118.01559929800733,52.403002909240065],[-118.01530312569557,52.40301180885995],[-118.01502155501775,52.40297207766088],[-118.01475282510873,52.40289318776242],[-118.0144921374663,52.4028108990911],[-118.01423431556401,52.40272316686236],[-118.01397628752164,52.4026365478856],[-118.0137183649426,52.40254936696041],[-118.01345533370355,52.40246973878037],[-118.01317911963426,52.40241119420428],[-118.01288878908163,52.40237874982233],[-118.0125907292847,52.402348027534984],[-118.01229277435709,52.40231674311381],[-118.01209507131261,52.402214545015056],[-118.01203751539258,52.40202611903928],[-118.01202871381163,52.4018444512841],[-118.01198544086475,52.40166886082674],[-118.01187343120992,52.40150432000583],[-118.0117308159599,52.40134499492272],[-118.011584128105,52.401187653760196],[-118.0114230865484,52.40103777804811],[-118.01126032182324,52.400887214497835],[-118.0111641903661,52.40071699977439],[-118.01108479171126,52.40055640542884],[-118.0109486736802,52.400372148864356],[-118.01081568985391,52.40022082425655],[-118.01067591112066,52.40006620550322],[-118.01055857504727,52.40000001112756],[-118.01045624842031,52.39994274068293],[-118.01025704944789,52.39980884718202],[-118.01011371948762,52.399653422755605],[-118.01004088758425,52.39947747759617],[-118.01004610248435,52.39930016080951],[-118.01008333819388,52.39911997355539],[-118.01010197694697,52.39894019006848],[-118.01011136783475,52.398760336682656],[-118.01013183329889,52.39858068830066],[-118.01015678658923,52.39839682816888],[-118.0102467027438,52.39823212778322],[-118.0104505060129,52.39810235608595],[-118.01067317767452,52.397980664529136],[-118.01089360663211,52.39786106504458],[-118.01111251578882,52.39773967261092],[-118.01132107378912,52.39761418089212],[-118.01149078401109,52.39746852568134],[-118.01164020942605,52.39731243596847],[-118.01182685715605,52.397175277914435],[-118.01203454972517,52.39703450016167],[-118.01217251320132,52.396900181462584],[-118.0122904324227,52.39674418174749],[-118.01232458476757,52.39657055020419],[-118.01228956337094,52.396390447314225],[-118.01225981904821,52.396211845775234],[-118.01228555442792,52.396033680232726],[-118.01240004697598,52.395925953738356],[-118.01244178773288,52.39576130240437],[-118.0124423312509,52.39560904179697],[-118.01238846396167,52.395470516100175],[-118.0123748362085,52.39527496771303],[-118.01241885390135,52.39509807305156],[-118.0124000825497,52.39492021973522],[-118.01234798257357,52.39474233113631],[-118.01228836358051,52.39456504255652],[-118.01222487928541,52.39438862423617],[-118.01208918572503,52.39423203126356],[-118.0118983578981,52.39409307569874],[-118.01171332828886,52.39395282327109],[-118.0115302327605,52.39381213538842],[-118.01138305405654,52.393657573202844],[-118.01126772064424,52.39349111205042],[-118.011112091415,52.39334216618697],[-118.01091240366621,52.39321105326676],[-118.01077164614394,52.39305186115401],[-118.0106754312967,52.39288219747837],[-118.01058428627229,52.39271514899952],[-118.01044322156051,52.3925576227221],[-118.01036622462549,52.39238421337052],[-118.01038992994022,52.39220703531894],[-118.01042345731965,52.39206664497734],[-118.01032655662863,52.39189073301936],[-118.01019471832427,52.391683636343586],[-118.01008764153781,52.39151266205961],[-118.01002585948333,52.39134707157995],[-118.00998668233098,52.391139612967514],[-118.00996588717754,52.39096274630653],[-118.00992828889429,52.390796569302346],[-118.00992411763164,52.390629884675235],[-118.00984336684321,52.39045677468134],[-118.00979870040695,52.39027882797851],[-118.00977283441397,52.39009936365112],[-118.00977470441948,52.38992011790468],[-118.00978968395184,52.38974008070725],[-118.00979348491822,52.38956040870428],[-118.00979739029864,52.3893801753047],[-118.00979570813051,52.389200115580216],[-118.00975600898661,52.389025336492715],[-118.0096353877829,52.388837631482176],[-118.00955180607873,52.38868971302139],[-118.00948641062293,52.38851371862344],[-118.00944008976947,52.388344682190635],[-118.00933231427449,52.38811780998955],[-118.00924592993037,52.388014823363186],[-118.00913983478377,52.38782868916708],[-118.00891623535145,52.38771678482594],[-118.00877815348697,52.387583151503186],[-118.00867335684626,52.38745971400196],[-118.00860373889746,52.38735619699684],[-118.00851721786808,52.387263913001156],[-118.00842926051524,52.38711964387886],[-118.0083243916066,52.387016507564745],[-118.00808152057226,52.386759435366976],[-118.00787372670214,52.38652283590809],[-118.0078007470062,52.38636775052179],[-118.00773120924292,52.38624392244084],[-118.00762480563486,52.38608935278267],[-118.00753857127762,52.38597565257662],[-118.00743525328815,52.38589405705456],[-118.00736564083785,52.385790539184484],[-118.00729413526159,52.3856772966493],[-118.00715319806525,52.385439673097224],[-118.00706381732574,52.38524339977472],[-118.00702599042394,52.385088485729746],[-118.00695480673974,52.384943676729094],[-118.0068656058205,52.38472654913993],[-118.00681273137016,52.38460275213627],[-118.00668953512616,52.38445886180092],[-118.00651815152273,52.384325179663094],[-118.00632415420223,52.384153833704254],[-118.00614818488793,52.384024906159254],[-118.00614786479058,52.383837610200075],[-118.00609580398529,52.383659717303736],[-118.00602087570329,52.3834853163834],[-118.00586382061195,52.383324418954594],[-118.00572856176403,52.38317574037932],[-118.00555581073715,52.38302955190764],[-118.00537522991193,52.38288564689978],[-118.00516684493441,52.3827618145881],[-118.00492454991797,52.38266101732678],[-118.00466738541775,52.382570482417755],[-118.00441377504116,52.38248075207139],[-118.00415813043635,52.38239200865132],[-118.00390014139994,52.382305918432365],[-118.00363990908915,52.382221937851114],[-118.00335849709336,52.382152277807265],[-118.00316657272333,52.38202957904054],[-118.00305578741902,52.38185890567626],[-118.00291092251851,52.3817022300647],[-118.00271089882378,52.38157332954938],[-118.00248890304704,52.381453063057435],[-118.00226690850813,52.38133279613022],[-118.00205957692573,52.3812033889646],[-118.00182340375157,52.38109962276547],[-118.00156227557223,52.381040394391654],[-118.00139477236435,52.38101527462749],[-118.00123695322574,52.38100774672597],[-118.0010919681239,52.38099095253556],[-118.0009194355567,52.38095307444314],[-118.0007741794207,52.38092779532023],[-118.00067683622488,52.38088383446188],[-118.00067349081037,52.380881915384265],[-118.00067321948904,52.38087343084814],[-118.00066987570051,52.38079197150974],[-118.00066760805552,52.380694792225086],[-118.00062223616015,52.38058053461355],[-118.00054881201598,52.38049761354131],[-118.00038889580976,52.38048147354559],[-118.00024551882792,52.38049581852333],[-118.00012295028205,52.38048790178005],[-118.00000038012159,52.38047999381809],[-117.99979671353888,52.38043036672457],[-117.99950460648309,52.38047785469954],[-117.99922263599312,52.380530555753516],[-117.99895400335778,52.38060110127246],[-117.99870294698835,52.3806965535597],[-117.9984358282633,52.38076889948741],[-117.99814579234986,52.38080524582934],[-117.9978519484402,52.380802401567365],[-117.99755993076018,52.38079969191993],[-117.99728967339229,52.380868993309875],[-117.99702789201494,52.38095241861468],[-117.99676459389156,52.38103404168339],[-117.99652021899523,52.381133336512285],[-117.99628170163226,52.38124093340248],[-117.99602864029121,52.3813272164003],[-117.99573980379121,52.38136702463832],[-117.99544797393602,52.38139308694098],[-117.99515545668136,52.38141290050307],[-117.9948613608894,52.38142131330361],[-117.994568797299,52.38140163595697],[-117.99429050072087,52.381345146693164],[-117.99404416815746,52.381246301261015],[-117.9938218859881,52.38112769335222],[-117.9935545654459,52.380893140580206],[-117.99354191418925,52.38088155174242],[-117.993460727528,52.380711218071596],[-117.9934462144586,52.38053083270778],[-117.99347760462118,52.38035249630207],[-117.99355255144654,52.380178862383026],[-117.99354341695347,52.37999941785069],[-117.99349465479757,52.37982399052698],[-117.99321485260214,52.37976570584398],[-117.99296547937611,52.379693163559736],[-117.99290951176518,52.37951667742019],[-117.99295982705473,52.379356005077135],[-117.99277861862149,52.37920582314935],[-117.99255400443897,52.379089866182035],[-117.99229298307701,52.37901031522558],[-117.99201350007718,52.37895035244128],[-117.99172824475681,52.37891142483367],[-117.99143350121403,52.37893332123206],[-117.99115919235506,52.3789250515276],[-117.9911089240307,52.378747830252514],[-117.99113139153347,52.37856774768462],[-117.9911267139895,52.37839424252469],[-117.99097793627335,52.37823897369469],[-117.99072411049153,52.37814072859418],[-117.99046033752889,52.37811569496092],[-117.99017938810564,52.378143064807425],[-117.98992354928143,52.3780655544173],[-117.98974721686778,52.377919088739205],[-117.98959651503742,52.37776424396191],[-117.98944164047926,52.3776119258828],[-117.98925664989032,52.37747219731001],[-117.98908987598135,52.37732413584471],[-117.98891903244495,52.37717804856938],[-117.98872173007622,52.37704479488426],[-117.98851811505492,52.376915616305084],[-117.98830432434414,52.37679137341923],[-117.98806345170242,52.376683305255774],[-117.9877922311981,52.37671810286227],[-117.98753504598379,52.37679675257524],[-117.98734724692645,52.37692025486645],[-117.9870448916647,52.37694330889081],[-117.98678609604393,52.37687178637048],[-117.98655654578019,52.37675265769758],[-117.98635518181712,52.37662137431378],[-117.98614682104446,52.37648790890071],[-117.98592792951341,52.37637120496168],[-117.98564331529796,52.376378561364504],[-117.98536710584686,52.376440093457376],[-117.98508666123159,52.376494553247355],[-117.98480773098484,52.37655081416091],[-117.98453303596906,52.37661413715492],[-117.98425524647163,52.376664275297074],[-117.98396265981272,52.37663497276971],[-117.98370177390161,52.37655484100715],[-117.98344886606063,52.37646172309535],[-117.98318422381062,52.37638188926395],[-117.98289940917266,52.37634071230723],[-117.98262074477977,52.37628642246484],[-117.98235344434747,52.37621092414185],[-117.98206846710977,52.376160708090644],[-117.98180420161871,52.37608879435445],[-117.98157577006695,52.37597367629031],[-117.98137452801623,52.375841831753],[-117.98122600376969,52.375685427428486],[-117.9811396006826,52.375513590567536],[-117.98108958539876,52.37533525070397],[-117.9811114692279,52.37515851099031],[-117.98114097412771,52.37498061183692],[-117.98108333823626,52.37480343131021],[-117.98100852644811,52.374629013094044],[-117.98099375479778,52.374450300489066],[-117.98096984730445,52.37427094540352],[-117.9809514209008,52.374091979326565],[-117.98098123841758,52.373912404921384],[-117.98093843253585,52.37373512405233],[-117.98086414211555,52.373557925568136],[-117.98070347464476,52.37341704123607],[-117.98044704148873,52.37332310178705],[-117.98019160358415,52.37323375257358],[-117.97993126589152,52.373150823194365],[-117.97966858106449,52.37307055543569],[-117.97940141052305,52.37299448878286],[-117.97914363023422,52.372907790536225],[-117.97889586418711,52.372807119379424],[-117.9786236008276,52.37275834328891],[-117.97832428641618,52.3727652202514],[-117.97801612958132,52.37275005604098],[-117.97785673840076,52.3726222253352],[-117.97793841883056,52.37245245778546],[-117.97811456175607,52.37230221230108],[-117.97821702670899,52.37214008695805],[-117.9781076738282,52.37197229530491],[-117.97801194556442,52.37180093565168],[-117.97794456583449,52.37162646073434],[-117.97789791026857,52.371450047624315],[-117.97779435533798,52.371280960717435],[-117.97774790873291,52.37110343370888],[-117.97767849581135,52.37092994557622],[-117.97754169316231,52.37077040270445],[-117.97741861812138,52.37060673940215],[-117.97729147500897,52.370445041087216],[-117.97711480064862,52.37030078296836],[-117.9769093200364,52.37017201795904],[-117.97667827355086,52.37006121813558],[-117.97642755909418,52.36996653611181],[-117.9761650033428,52.36988570779468],[-117.97588977737911,52.369823170443375],[-117.97561199598599,52.36976440835983],[-117.97535658916107,52.36967504827093],[-117.97511892404385,52.3695699862929],[-117.9748924753304,52.36945442887635],[-117.97468272831827,52.369328738688445],[-117.97448967968045,52.369192933637464],[-117.97432288525171,52.36904540247852],[-117.97417816771026,52.368888689521604],[-117.97404717754058,52.36872785650816],[-117.97390063480194,52.36857101634908],[-117.97372998221363,52.36842434441423],[-117.97352420936714,52.36829723945681],[-117.97329114629277,52.36818741969666],[-117.97303340699887,52.3681007075715],[-117.97278015555996,52.368009793403836],[-117.97254485251666,52.36790207285465],[-117.9723138293924,52.36779126415705],[-117.97208108345322,52.36767977570409],[-117.97187307558458,52.36755476846859],[-117.97168635946251,52.36741487508449],[-117.97151764939946,52.36726777418808],[-117.97136694529576,52.36711346585534],[-117.97120230811947,52.366964390620765],[-117.97104002040797,52.3668126530883],[-117.970893019933,52.36664844690193],[-117.97064629633856,52.366710851640114],[-117.97043620755092,52.36684463111592],[-117.97028136196509,52.36699972946144],[-117.97010912211596,52.3671389527412],[-117.96983566816877,52.36720570965698],[-117.96954731838042,52.36724322563863],[-117.96926842768063,52.367299449634444],[-117.96900395771958,52.367377542396675],[-117.96872187391577,52.36742113281061],[-117.96842357756543,52.36741282582914],[-117.96816301294695,52.36747991470639],[-117.96791468312573,52.36758056276964],[-117.96764607995168,52.36765103658281],[-117.96736979743142,52.367713078722204],[-117.96710067112986,52.36778634016158],[-117.96682741666548,52.36785197618571],[-117.96656596859086,52.36793365855135],[-117.96632473138826,52.36803593360854],[-117.96607247353153,52.3681278480224],[-117.9657892372227,52.36817755258587],[-117.96552689438828,52.36825409812197],[-117.96525990206767,52.36832580710457],[-117.96497457040486,52.368366906928586],[-117.96468380395648,52.368397474252916],[-117.96439366201089,52.368424699538586],[-117.9641050910337,52.368463315742865],[-117.96386457498801,52.36856168300068],[-117.96363262468962,52.368673624438415],[-117.96335904766508,52.36874091845496],[-117.96308870592321,52.36881070224995],[-117.96281131223309,52.36886870385869],[-117.96252048381578,52.36888967619771],[-117.96223012883273,52.36891800983437],[-117.96194427027511,52.368961882154004],[-117.96168301294324,52.36904244860282],[-117.96144489234324,52.36914774741884],[-117.9612410801628,52.36927742709388],[-117.96104405397786,52.36941040335293],[-117.9608535020371,52.36954834241852],[-117.96061871771562,52.369655568650494],[-117.96036351397659,52.36974331386889],[-117.96010637687846,52.36983149281864],[-117.95988950157687,52.36995180500055],[-117.95962802597901,52.370033480526324],[-117.95936968369055,52.370118189500495],[-117.95911739884622,52.37021008866112],[-117.95884098428441,52.3702726628139],[-117.95855155483679,52.37029597976625],[-117.95826034126175,52.37028926870455],[-117.95797470234643,52.37024288701615],[-117.95769344748305,52.37019286508211],[-117.95742398416594,52.370119409484644],[-117.95714539202329,52.37006505827406],[-117.95686476480122,52.370011693059496],[-117.95657704408261,52.36997644547569],[-117.95628572329746,52.3699505414459],[-117.95599310219555,52.36994147009183],[-117.95570845947294,52.36989967384468],[-117.95542091357993,52.369932699662165],[-117.95512751398914,52.369937670691094],[-117.95484717694059,52.369991505318936],[-117.95457660503307,52.370062382984486],[-117.9542912517141,52.370103456506875],[-117.95403576870774,52.37018271198908],[-117.95388461188115,52.370337481009024],[-117.9536013954195,52.37037701379399],[-117.95336131698441,52.37048272120819],[-117.95307318976823,52.37050893156442],[-117.95281717975386,52.37059097316608],[-117.95261020095974,52.37071760333376],[-117.95233570448389,52.3707797367171],[-117.95205958855705,52.370840628538886],[-117.95177401905293,52.370882809597994],[-117.95148285955834,52.370905420428095],[-117.95119049227235,52.370885072360196],[-117.95089776240674,52.37087654059226],[-117.95060978897688,52.37091178196105],[-117.95032087333145,52.370932289578384],[-117.95007342028694,52.37102789183787],[-117.94978528743337,52.37105409402665],[-117.9494999647852,52.371006025366135],[-117.94922633617003,52.37095482561791],[-117.94899556531178,52.37084285705907],[-117.9487281504177,52.37076838588572],[-117.94847890135871,52.3706760071954],[-117.94823262950378,52.370577625167655],[-117.94796506098386,52.37051386442404],[-117.94767097595089,52.370492818937905],[-117.94737788178466,52.370476363805054],[-117.94708713784526,52.370457246377015],[-117.94679529842684,52.3704340984405],[-117.94650841655437,52.37039437988866],[-117.94622153688032,52.37035465171714],[-117.94593110662426,52.37033386524468],[-117.94564276629863,52.37030193178852],[-117.94535165868919,52.37027488660514],[-117.94509620796424,52.37018601242681],[-117.9448193529238,52.37013232024918],[-117.94455581294656,52.37005698025171],[-117.9443725149646,52.36991897285129],[-117.94420367940708,52.36977294630151],[-117.94400054443884,52.36964202285496],[-117.94379099010595,52.36951572449691],[-117.94357726130023,52.36939195102784],[-117.94335058557158,52.369277998251235],[-117.94310636944556,52.36917861881882],[-117.94285327835418,52.36908708706505],[-117.9426001900075,52.3689955458435],[-117.94234475252367,52.368906665526886],[-117.94209411847027,52.36881191822665],[-117.94184849847724,52.36871018133341],[-117.94164036435188,52.368586233788804],[-117.94149597595755,52.36842836634085],[-117.94140201921833,52.36825821713291],[-117.9413389687616,52.368081195327704],[-117.9412321198073,52.36791070701514],[-117.94106909665301,52.36776339155026],[-117.94081497530586,52.36767741498958],[-117.94052890243948,52.36762362818443],[-117.94023885796057,52.367610750875265],[-117.93997894357682,52.36752606547008],[-117.93973537194074,52.367423337635444],[-117.93950443565575,52.36731246364437],[-117.93928206265457,52.367195416290976],[-117.93906428617568,52.36707360701898],[-117.93885486240627,52.36694674709916],[-117.93865765782171,52.36681395978132],[-117.93850075572968,52.36666368153781],[-117.93839157117515,52.366495851817064],[-117.9383111525533,52.36632268902081],[-117.93827442693869,52.36614355503579],[-117.93832571423525,52.3659688602738],[-117.93845765161016,52.365808246015575],[-117.93854892357842,52.36563746715743],[-117.93863471373963,52.36546630607801],[-117.93865180692629,52.365286411075225],[-117.93864300919427,52.36510639892332],[-117.93858910968692,52.36493001207715],[-117.93849710433723,52.3647594261225],[-117.93839747748177,52.364590005599354],[-117.93830354131632,52.3644198533857],[-117.93820970953601,52.3642491486655],[-117.93811384423968,52.36407942127986],[-117.93800842529538,52.36391129322699],[-117.93787769036956,52.36374985751023],[-117.93769078663969,52.363611584124165],[-117.93748107108077,52.363486387525604],[-117.93725893226333,52.363368222230086],[-117.93701497259597,52.36326771581476],[-117.93675467270981,52.36318525036302],[-117.93647677837343,52.363127508114424],[-117.93619079227192,52.36308330004883],[-117.93590282028548,52.363049676104495],[-117.93561061724762,52.36302873628971],[-117.93522033047024,52.3630274648804],[-117.93514923603772,52.36181860654939],[-117.93512207599069,52.36190415104125],[-117.93503604139453,52.36196810457533],[-117.93499260076956,52.36202205823032],[-117.93497885901105,52.3620854129841],[-117.93496674023292,52.36213025942359],[-117.93495284380006,52.362184576955734],[-117.93493889641454,52.362229304864634],[-117.93492499991476,52.36228362238934],[-117.93491120873433,52.36233737859411],[-117.93491198170375,52.36238256465497],[-117.93489818880319,52.362436329763895],[-117.93489896176075,52.36248151582148],[-117.93488699737767,52.36253539945005],[-117.93485812192945,52.36258077398415],[-117.93484448347925,52.36264357628881],[-117.93481576248895,52.36269798801858],[-117.93480197104003,52.36275174419334],[-117.93477492226144,52.36279724613555],[-117.93474620108115,52.36285165784163],[-117.93470337741338,52.36294176018597],[-117.93463257890778,52.363023132251406],[-117.93454471444005,52.36308695792766],[-117.9344734502096,52.3631412271753],[-117.93442990401014,52.36319573297673],[-117.93441564844188,52.3632223774649],[-117.93435925905374,52.363286142066244],[-117.93430099179591,52.36334018958137],[-117.93422931423804,52.3633769366621],[-117.93411133617299,52.36341383868758],[-117.93398036033655,52.36345096216801],[-117.93390639222898,52.36346046997991],[-117.93383409664605,52.363461067990265],[-117.93368798722867,52.363480210834254],[-117.93355502958201,52.36350816917338],[-117.93343872322345,52.363536160761896],[-117.9333077464372,52.36357328348027],[-117.93319018090294,52.36362769766158],[-117.93308931542435,52.36369174369298],[-117.93297388294403,52.363764368433124],[-117.93285865470179,52.36385561986754],[-117.93272657145663,52.3639282019578],[-117.93262555046662,52.36398321036782],[-117.93253930353619,52.36402853513954],[-117.93242147632323,52.3640744726333],[-117.93232030054439,52.36412044356839],[-117.93229065107943,52.36412063139258],[-117.93221866244072,52.364139302803714],[-117.93207087706251,52.364167353329535],[-117.93193974320579,52.364195437283726],[-117.93185334284371,52.364231715425774],[-117.93177998870861,52.36427737069],[-117.93173643796081,52.364331875434054],[-117.93170964261807,52.36438586140715],[-117.9316952795759,52.36441306684913],[-117.93174529312691,52.36421571801147],[-117.93179347431654,52.36403798216641],[-117.93183972277114,52.363860680106875],[-117.93188607456975,52.363682825601956],[-117.93193049533792,52.36350539597583],[-117.9319731942178,52.36332727751506],[-117.93201589107231,52.363149167923986],[-117.93205676234416,52.36297092190368],[-117.93209215091846,52.362792302317764],[-117.93211282037593,52.362613215271686],[-117.93211877089918,52.36243366077324],[-117.93210838323422,52.36225240653826],[-117.93208092654619,52.3620733461175],[-117.93202888450446,52.36189708329708],[-117.93192349459648,52.36172894944024],[-117.93178903163742,52.36156780404005],[-117.9316404217405,52.36141300967761],[-117.93148601790702,52.36125950767118],[-117.9313453448139,52.36110188169778],[-117.93123223567679,52.36093545567164],[-117.93118202528022,52.360759319810775],[-117.93115660930945,52.36057927274321],[-117.93111036607033,52.360401725670336],[-117.93104716017868,52.3602258109329],[-117.93098009212294,52.360050754860985],[-117.9308998189745,52.35987703367568],[-117.93081954647226,52.35970331241172],[-117.93076354607456,52.359528459826606],[-117.93079142106563,52.359350443882185],[-117.93083980987818,52.35917159405314],[-117.93088240357318,52.35899403671604],[-117.93094681220839,52.358818570623676],[-117.93101304870972,52.35864322305862],[-117.93107025484673,52.35846668555082],[-117.93112208412984,52.358289213102424],[-117.93116650248767,52.35811178303569],[-117.93119448029377,52.357933205486766],[-117.93119302188168,52.3577537017321],[-117.93118243012118,52.357573560483935],[-117.9311884875379,52.357393452934915],[-117.9312036781886,52.35721398282863],[-117.93122069536236,52.357034640188836],[-117.93123223246921,52.35685491504284],[-117.93124376947996,52.35667518987089],[-117.93125713302133,52.356495592165714],[-117.93126866983236,52.35631586694182],[-117.93127462299906,52.3561363116202],[-117.93126403129486,52.35595617015607],[-117.93125516088945,52.35577671747439],[-117.9312888256788,52.355597408339996],[-117.93134268796709,52.35541894026358],[-117.93131998585571,52.35524416368068],[-117.9312245858436,52.35507220199355],[-117.93111180578369,52.354904108952766],[-117.9309870217895,52.354740819406445],[-117.93092716328908,52.35456683387199],[-117.93090916356026,52.35438673457176],[-117.93088182056427,52.35420712038168],[-117.93085254756073,52.35402793106714],[-117.93081941267262,52.35384960044311],[-117.93078445155253,52.3536711422845],[-117.93074197562802,52.35349328780911],[-117.93069391686782,52.35331560319454],[-117.93064950979605,52.35313818245094],[-117.930603278287,52.35296062525304],[-117.93055715087308,52.3527825156061],[-117.93049954148697,52.35260642964823],[-117.93039052898645,52.35243802928224],[-117.93032112564707,52.352265633038634],[-117.93034383295358,52.35208555864711],[-117.93042811677358,52.35191259930667],[-117.93043386205593,52.35173416605419],[-117.93036863609562,52.351559235994756],[-117.93029031299362,52.35138507944685],[-117.93022153905781,52.351209341834036],[-117.93014300807943,52.351036298863335],[-117.93000806146799,52.35087793884243],[-117.92985970386822,52.350722027208356],[-117.92972507211178,52.35056200069038],[-117.9295926876219,52.35039986516072],[-117.9294642696807,52.35023631837393],[-117.92941345158562,52.35006352147101],[-117.92941940993362,52.34988397429219],[-117.929436955258,52.349701842141755],[-117.92943743447955,52.349521912345786],[-117.92943233102031,52.34934215236558],[-117.92942905391457,52.34916251988244],[-117.92942588222917,52.348982326057616],[-117.92943184037621,52.34880277872885],[-117.92946357729328,52.348623894047996],[-117.92950079111708,52.348445400807286],[-117.92952876954892,52.348266822334175],[-117.92955502687258,52.34808755499222],[-117.92956891670543,52.347905176439404],[-117.92974799362906,52.347769301182595],[-117.92998800355957,52.3476636407451],[-117.93016436572998,52.34752250248143],[-117.93038799426945,52.34740553364003],[-117.93057004185547,52.347263663526924],[-117.93066292297404,52.34709412967021],[-117.93069465186151,52.346915253327495],[-117.93070070981773,52.34673514432921],[-117.93070849022996,52.3465557152172],[-117.93073108754788,52.34637620127827],[-117.93077012205599,52.34619782591414],[-117.93083879160937,52.34601927197361],[-117.93102067283976,52.34588810447278],[-117.9312834142906,52.345799257057955],[-117.93150984536597,52.34568700471633],[-117.93167915404814,52.34553408918286],[-117.93174818336527,52.34536344930685],[-117.93175220152439,52.34518432628366],[-117.93173655015725,52.345001573425165],[-117.93174088104489,52.34482078421018],[-117.93178710913016,52.344643479556034],[-117.93185890250916,52.344467959644206],[-117.93195359866526,52.34429855187434],[-117.9321014050924,52.34414187829868],[-117.93228666745881,52.34400248756393],[-117.9324855976893,52.34386912366283],[-117.93266892621618,52.34373016613573],[-117.93273502723949,52.343555376877305],[-117.93275986030957,52.34337375322065],[-117.93283232337032,52.34320449000127],[-117.9330297348262,52.34306933146883],[-117.93321274556254,52.342932039145325],[-117.93332892769513,52.342766387082555],[-117.93336074768375,52.342586948091956],[-117.93332750756178,52.34240916902751],[-117.9332834151928,52.34223007274293],[-117.93315333570189,52.34207543890155],[-117.93298313359577,52.34192759930841],[-117.93289067610137,52.341759794695044],[-117.93283876056847,52.3415829681636],[-117.93271218254802,52.34141955132894],[-117.93252111305937,52.34128435351677],[-117.93239156080826,52.34112693882365],[-117.9322510553369,52.340968750185766],[-117.93207710508378,52.34082120659357],[-117.93189084086688,52.34068014155311],[-117.9316607449678,52.3405754982627],[-117.9313814412735,52.34050635049123],[-117.93110365004169,52.340439004596654],[-117.93088868661864,52.34033259984849],[-117.93079222612252,52.34015661471915],[-117.93065793824549,52.33999491292538],[-117.93051551153248,52.33983715586646],[-117.93042134754873,52.33966866018777],[-117.93037309477933,52.33949209619326],[-117.93033846152888,52.33931196087283],[-117.93029234978741,52.33913384924923],[-117.93024644746984,52.33895462384906],[-117.9301907890314,52.33877810205174],[-117.93010241895634,52.33860832236415],[-117.92993641614036,52.3384579441434],[-117.92971849654198,52.338337789713805],[-117.92947808880223,52.33822904450378],[-117.9292659635967,52.33810759671603],[-117.92913246830614,52.33795158909209],[-117.92903742797643,52.3377779571746],[-117.9289048745167,52.33761694190644],[-117.92875453157092,52.33746201346835],[-117.92858832877718,52.337312746918776],[-117.92839290781602,52.3371811804175],[-117.92817317316005,52.33706089542814],[-117.92800665944625,52.336913303052064],[-117.92790134784629,52.336745153404955],[-117.92777073295133,52.33658370293984],[-117.92762018857269,52.336429886640225],[-117.92748733171919,52.336270535727635],[-117.92736433563874,52.33610792881966],[-117.92720403831477,52.33595681533702],[-117.92715590823768,52.33577968817856],[-117.92704548748401,52.335619078606804],[-117.92690105356283,52.33546230274951],[-117.92669473919037,52.33533956655098],[-117.92649171555888,52.33520916143206],[-117.92628858775363,52.335079317264686],[-117.92607507955263,52.33495550831604],[-117.92586757166383,52.334829301833025],[-117.92568297012248,52.334689467486974],[-117.92550864931441,52.33454414079439],[-117.92532008591853,52.33440571680838],[-117.92515938376218,52.334256827760655],[-117.92507156643956,52.33408425487289],[-117.92496392378857,52.33391876337753],[-117.92478971225405,52.33377288310893],[-117.92457610939036,52.33364963259658],[-117.9243346965224,52.333546436069945],[-117.9241126422598,52.33342880422552],[-117.9238903817002,52.33331227676287],[-117.92365111091785,52.33320754026204],[-117.92340735330171,52.333107002928486],[-117.92315363198377,52.33301028186754],[-117.92297765285326,52.33287386099457],[-117.92286324103209,52.33270507703403],[-117.9227331810428,52.33254083162536],[-117.9225661811604,52.332396010787875],[-117.9223174187577,52.33230245950998],[-117.92206062370354,52.33221229071524],[-117.9218257477207,52.332103903148806],[-117.92162875292827,52.331971092269825],[-117.92144214421197,52.33183222803677],[-117.92124729208437,52.33169786909075],[-117.92103595362597,52.33157251206902],[-117.92081209296052,52.33145474607327],[-117.92056527077631,52.331360757314],[-117.9202963238675,52.33128609075985],[-117.92006552525774,52.33117573635272],[-117.91984156549535,52.33105852085471],[-117.9196089454261,52.33094802893542],[-117.91941347514036,52.33081700798304],[-117.91926339920072,52.330660952715135],[-117.91909918468238,52.33051124707063],[-117.91892704315559,52.330364362672235],[-117.91887039557984,52.330193402881],[-117.91900651501186,52.33003988061339],[-117.91896270394705,52.32985966345959],[-117.9187618696589,52.32972769691711],[-117.91856489512611,52.32959488059258],[-117.9184104438882,52.32944246225218],[-117.91821133317502,52.32931118372689],[-117.9180064325704,52.32918119677031],[-117.91781363783296,52.32904584576639],[-117.9176332620636,52.32890346464919],[-117.91745257433469,52.32876274936021],[-117.91725988702761,52.32862684498743],[-117.9170712720738,52.328488959369764],[-117.91687858718794,52.32835305433495],[-117.916661279094,52.32823008569852],[-117.91644569210897,52.328107805685924],[-117.91634732811575,52.327942391671705],[-117.91625162931956,52.327772641501994],[-117.91608550702104,52.32762335593038],[-117.915899666826,52.327480588758384],[-117.91569906064606,52.327347511863344],[-117.91544936192963,52.32731818493495],[-117.91525423391093,52.32718549048692],[-117.91510225643313,52.32702985405474],[-117.9149498596166,52.32687645374784],[-117.91478963998713,52.326725322040176],[-117.9146097026502,52.32658070853358],[-117.91448991061846,52.32642112211542],[-117.91443636741218,52.326243605098995],[-117.91429607997544,52.32608484050628],[-117.91414572571051,52.32593044416731],[-117.91399537084529,52.32577605652469],[-117.91386291196696,52.325615013674835],[-117.91371834994199,52.325459333914964],[-117.91354400109908,52.32531454952569],[-117.9133875482231,52.325163109935104],[-117.91324137359636,52.32500618803403],[-117.91305685491291,52.3248663325415],[-117.91290426524702,52.324714034095855],[-117.91276560420592,52.32455650896382],[-117.91255208122881,52.324433235440644],[-117.91237721769122,52.3242912290143],[-117.91220084341874,52.324147428396905],[-117.91198935871405,52.324023167880505],[-117.91176749259024,52.32390495023518],[-117.9115305474051,52.32379808835609],[-117.91131029941526,52.3236811113353],[-117.91115620827438,52.32352701652619],[-117.9109634602376,52.32339165354757],[-117.91070699682331,52.32330993521017],[-117.91046749835982,52.3232068457388],[-117.91028085780795,52.323068523926004],[-117.91016213892681,52.32290336404701],[-117.9099400740662,52.32278625651574],[-117.90978118937389,52.322638025067626],[-117.90967233159905,52.32246961026737],[-117.90958825034397,52.32229727976229],[-117.90946750162342,52.32213310494762],[-117.90929693624682,52.32198800817019],[-117.90910216630083,52.32185362780668],[-117.90888193480072,52.32173664599928],[-117.90864286844844,52.32163132521488],[-117.90843740617703,52.32150465280735],[-117.90824702373239,52.32136663313911],[-117.90803331988633,52.321244464703895],[-117.90780709619936,52.32112987703388],[-117.90759167364465,52.32100702749792],[-117.90739274030159,52.32087516824158],[-117.90718973730937,52.32074528920632],[-117.90697838929,52.320620457918835],[-117.90677131955793,52.32049254978468],[-117.90652417142869,52.320400757776376],[-117.90627327035688,52.32030926185486],[-117.90604950830601,52.320191466352966],[-117.9058380606619,52.320067194242355],[-117.90563945053964,52.31993366577864],[-117.90540363456373,52.31983081247252],[-117.9051374473573,52.31975179210778],[-117.90491488914883,52.31963745447956],[-117.9047101800802,52.319506881762415],[-117.90448611286648,52.31939074927374],[-117.90430582133756,52.3192483463742],[-117.90407053549526,52.319142710497886],[-117.90381224142436,52.31905125877422],[-117.90356380611829,52.31895655262438],[-117.90341643035029,52.31880629980847],[-117.90330802799923,52.3186356422204],[-117.90319117289312,52.31847060257625],[-117.90307421301921,52.31830612409937],[-117.90302437662001,52.31812885658042],[-117.90296531207893,52.31795150170443],[-117.90286937268701,52.317783414192995],[-117.90271126359117,52.31763127898195],[-117.90255894392688,52.317477861282846],[-117.90242858766334,52.31731581858875],[-117.90237103623339,52.317140266256686],[-117.90227145121513,52.316971922242644],[-117.90199576700024,52.31692382225403],[-117.90170840119954,52.31687884733997],[-117.90144140190185,52.31680426420917],[-117.90117675175706,52.31672702863279],[-117.90091690472838,52.31664392749999],[-117.90068633953493,52.31653297199255],[-117.90046026401767,52.3164178171817],[-117.90021644540079,52.31631834352844],[-117.89996887422588,52.31621916577186],[-117.89975244985067,52.31610186970524],[-117.89961428384763,52.315942100406794],[-117.89947590914187,52.31578344462234],[-117.89932178435413,52.31562988554586],[-117.89914752342503,52.31548507841993],[-117.89896491749906,52.315345318576036],[-117.89874422143285,52.31523110563224],[-117.89850844753929,52.315128237933884],[-117.89831181158536,52.314994272030845],[-117.8981130382886,52.31486184385245],[-117.89791833525419,52.3147274439697],[-117.89774011935127,52.31458404467489],[-117.8976348742583,52.31441642596953],[-117.89756608391366,52.31424176879208],[-117.89754062563026,52.31406282161621],[-117.8975094836155,52.313884604022746],[-117.89749346317544,52.313704630835744],[-117.89737110628359,52.313549351909664],[-117.89712443739046,52.313455311987546],[-117.89684817459775,52.3133907905172],[-117.89664674932631,52.313262686405274],[-117.89643964138749,52.31313531149178],[-117.89620472359917,52.31302798416218],[-117.89604462089446,52.31287682494853],[-117.89590209442642,52.31272069711179],[-117.8957218590214,52.312578280133394],[-117.89553948627065,52.31243740088646],[-117.89535100963279,52.31229948714262],[-117.89516243012827,52.31216212546967],[-117.89499612682481,52.31201447398502],[-117.89489121253156,52.31184518636933],[-117.89471364804548,52.311698441022216],[-117.8944572610865,52.31163643625309],[-117.8941608749967,52.31162973232745],[-117.89390352627507,52.3115434021581],[-117.89364926399463,52.311450508442285],[-117.89340303490289,52.3113542330692],[-117.89316244899291,52.311247637751435],[-117.89294263035451,52.31112894973194],[-117.892819312013,52.310969082830354],[-117.8927140948138,52.31080145918859],[-117.89250722014421,52.310672963318794],[-117.89231490185998,52.31053590192816],[-117.89207306553337,52.31043597751303],[-117.89179875825666,52.31037101958774],[-117.89150770960636,52.31035565559873],[-117.89121288108339,52.31036034617358],[-117.89092040269036,52.31036237545727],[-117.89063323720379,52.310326410508885],[-117.8903480674002,52.31027986037161],[-117.89006791108041,52.310226331317295],[-117.88979020984151,52.31016958867693],[-117.88951141878823,52.310108823771635],[-117.88922261718065,52.310091354828586],[-117.88892982472194,52.31009505407452],[-117.888634369448,52.31010307023844],[-117.8883414727075,52.31010732038608],[-117.8880470655188,52.310109775547915],[-117.88775391997167,52.31010553896094],[-117.88746245285502,52.31009240109052],[-117.88717210325771,52.31006353385359],[-117.88694242142951,52.30996784599179],[-117.8869144499029,52.30987109194774],[-117.88688943182495,52.30978808664436],[-117.88678178592579,52.3096236703143],[-117.8866257978626,52.30947052673208],[-117.88657561908094,52.30929547829334],[-117.8865855046411,52.30911562278463],[-117.88659356563491,52.30893563904978],[-117.88661815270162,52.30875624779253],[-117.8866663518132,52.30857908438934],[-117.88674342605609,52.30840564708681],[-117.88685797486643,52.30823934765008],[-117.8869074709988,52.30806510093131],[-117.88689911048992,52.30788396326942],[-117.88685503577457,52.30770595827349],[-117.88688316406251,52.30752738447614],[-117.88689831118427,52.30734902696254],[-117.88685809584649,52.307170164601295],[-117.8868788219984,52.30699163033254],[-117.88692347344438,52.30681365780004],[-117.88692605943754,52.3066332891335],[-117.88699218456327,52.30645907332192],[-117.88709974391675,52.30629059454616],[-117.88721751281689,52.30612678714271],[-117.88719575088606,52.3059480929475],[-117.88719265264213,52.305768453265046],[-117.88723365452228,52.30559021515178],[-117.88725651684592,52.30541014271276],[-117.8872384037739,52.305231704805614],[-117.88720548628677,52.30505335503037],[-117.8871931606606,52.304873635565286],[-117.88716410223451,52.30469442842493],[-117.88713129129721,52.304515517256206],[-117.88711145897959,52.304336398624365],[-117.88717424541281,52.30416025993737],[-117.88730685270704,52.304005954084964],[-117.88732778546718,52.3038263056084],[-117.88732286256356,52.30364653744269],[-117.88728254308461,52.30346823601002],[-117.88710195470608,52.303328031983966],[-117.8871096327405,52.303159864850386],[-117.88732647951231,52.30303913004541],[-117.88757378780153,52.302943095196255],[-117.8877991234492,52.30282634147715],[-117.88803986657082,52.302725899435856],[-117.88831195013299,52.30265530130271],[-117.88859530641135,52.30261314591165],[-117.88888832164234,52.30259819132784],[-117.88916827915628,52.302564254595055],[-117.88927936296459,52.302396590906184],[-117.88928204466178,52.3022156602646],[-117.88926606280836,52.30203568430461],[-117.889233349309,52.301856220968],[-117.88908660732592,52.3017031592625],[-117.88888792342611,52.3015707139034],[-117.8886916947164,52.30143505528429],[-117.8884241165117,52.30137394266608],[-117.88819142080081,52.30126506021263],[-117.88802528737794,52.30111684508744],[-117.88788903678382,52.300957188136124],[-117.88776639601882,52.30079397352226],[-117.88766701136996,52.3006250535282],[-117.8875792004629,52.300453570379034],[-117.88748367552984,52.30028379286341],[-117.88746201957973,52.300104545512184],[-117.88743734709058,52.30000012320482],[-117.8874179504791,52.29992653964874],[-117.88731257114983,52.29976002335278],[-117.88719014592128,52.29959569428626],[-117.8871363281502,52.299420388357035],[-117.88704862761823,52.299248343344544],[-117.88693767501441,52.299081994428114],[-117.88683057967708,52.29891479699801],[-117.88673709510992,52.29874403317019],[-117.88668166616077,52.298567485024094],[-117.88659568738234,52.2983961290539],[-117.8864771267806,52.29823094177122],[-117.88635053690803,52.2980691349862],[-117.88623187231066,52.29790450871024],[-117.88611321029707,52.297739873382135],[-117.88597087544927,52.29758317019841],[-117.88581086574425,52.29743199503736],[-117.88564068725556,52.29728574700342],[-117.88546461797976,52.297141341424336],[-117.88534574930625,52.29697782781121],[-117.88524070098771,52.29680963425959],[-117.88511808199071,52.29664641631509],[-117.88498175038411,52.29648731668856],[-117.88482967400603,52.29633331188337],[-117.88466153711414,52.29618607682683],[-117.88449736509678,52.2960374229909],[-117.88434336225178,52.29588385055817],[-117.88417512459397,52.29573716713377],[-117.88398686288886,52.295598671826944],[-117.88382665743961,52.29544860738057],[-117.88367662276315,52.29529361549486],[-117.88351031773577,52.29514650689623],[-117.88334422387972,52.294998284354946],[-117.88329221950879,52.29473508237656],[-117.88327626536008,52.294555104538304],[-117.8832168939786,52.29437996372615],[-117.88312728955952,52.29420834811294],[-117.88305483644231,52.294033984363],[-117.88298024584792,52.29386115836201],[-117.88285774793216,52.29369738526108],[-117.88271158050217,52.29354153474701],[-117.88253736007795,52.29339725256198],[-117.88237299590092,52.29324970908038],[-117.8822465401667,52.29308734479489],[-117.88210830236768,52.29292866546478],[-117.88196803173149,52.292770971362266],[-117.88182797218552,52.29261216338398],[-117.88168952737284,52.29245459718211],[-117.88154743603569,52.29229677423317],[-117.88142249399665,52.29213621219301],[-117.88137470618689,52.29195849874473],[-117.88130997903986,52.29178241935942],[-117.8812143920101,52.29161319682478],[-117.88108419207441,52.29145113578797],[-117.881053029993,52.29127346302087],[-117.88100503289444,52.29109687189597],[-117.8809115882451,52.29092610232596],[-117.88081428517009,52.29075619866792],[-117.88073069492988,52.29058217692249],[-117.8806829116818,52.29040446297251],[-117.88078940526908,52.29024155636652],[-117.88092560115106,52.29007792254094],[-117.88095258788316,52.28990546854514],[-117.88078308569729,52.28975587145675],[-117.8806510693219,52.28959368140395],[-117.88060093780355,52.289418627659444],[-117.88061663054302,52.28923747976721],[-117.88064122952761,52.289058095923046],[-117.88065316884772,52.28887725268163],[-117.88059125615851,52.28870588381161],[-117.88045742178437,52.28854355619857],[-117.88044470875343,52.28836606106974],[-117.88023689898631,52.28826285117834],[-117.87993731215626,52.28827393868983],[-117.87964361783344,52.28828317407956],[-117.8793516025813,52.28828350814827],[-117.87905772698056,52.28827411406047],[-117.87876525484688,52.28826707492237],[-117.87848294407068,52.28822576749445],[-117.87824866306939,52.28812577344199],[-117.87795341670497,52.28809427026134],[-117.87770753441859,52.28801659671825],[-117.87751020920976,52.28787744834626],[-117.87724900571328,52.28780264049081],[-117.87696112448909,52.28776149668035],[-117.87666809366077,52.2877476418027],[-117.87637615600067,52.28776715767604],[-117.8760841458905,52.28776747460425],[-117.87579016856756,52.28775863352355],[-117.87549675536586,52.287756593240125],[-117.87520523243457,52.287744538014806],[-117.87492843172889,52.287683856460966],[-117.87467105373258,52.28759859568095],[-117.87443001719551,52.28749529165235],[-117.87414939751801,52.28744506422464],[-117.87387473827694,52.28738284247728],[-117.87362697105532,52.28728584252391],[-117.87337215826788,52.287196804917585],[-117.87310528520864,52.28712271612982],[-117.87282838545464,52.28706259082397],[-117.87256396850636,52.28698528817574],[-117.87232273013942,52.28688309339022],[-117.87211978184503,52.286754263226186],[-117.8719277405851,52.28661660417759],[-117.8717437313974,52.28647555622791],[-117.87151719002104,52.286373834829575],[-117.87123750120855,52.28642635740878],[-117.87096138933417,52.28648928770498],[-117.87068331226706,52.286543051062495],[-117.87038945038222,52.286533634985915],[-117.87010239398698,52.286566451668335],[-117.86981968626579,52.28661537288349],[-117.86953122611166,52.28664583234324],[-117.86923575170844,52.28666451201919],[-117.86894553629632,52.28665534923354],[-117.86865742411199,52.2866057082255],[-117.8684317308441,52.28649952613549],[-117.86827480324632,52.28634233323439],[-117.8681793853001,52.286172537943585],[-117.86807411359345,52.28600600237369],[-117.86791624316335,52.28585381597498],[-117.86773621195809,52.28571135252526],[-117.86755190385523,52.2855719727763],[-117.86737176898026,52.28543007001711],[-117.86719784284354,52.28528465019799],[-117.86702167363113,52.285141328923366],[-117.86683544247974,52.28500237184081],[-117.86662000159205,52.284881108817586],[-117.8664046662841,52.284759293004285],[-117.8662081635651,52.28462582188601],[-117.86598876471761,52.284505966650364],[-117.86576059877275,52.28439340142822],[-117.86555361574948,52.28426652087551],[-117.86535069990688,52.28413767859542],[-117.86510363710991,52.284046909411344],[-117.86480997028235,52.28402676637105],[-117.86453247048152,52.28396996209119],[-117.86428004467531,52.28387825311379],[-117.8640408770622,52.28377505573443],[-117.86379732634079,52.28367550300104],[-117.86356713664523,52.28356391848804],[-117.86333267164622,52.28345540844456],[-117.86308866845835,52.283348491286404],[-117.86296354076816,52.283199164499635],[-117.86297888244637,52.28302025434634],[-117.86290126989825,52.282844377093234],[-117.86273262860566,52.28270044966562],[-117.86251419563972,52.28257558065337],[-117.86245173231663,52.28240754223318],[-117.8623415107759,52.282257577287886],[-117.86210554759897,52.28214727003054],[-117.86187281111852,52.2820394467856],[-117.86166402750189,52.28191243046052],[-117.86147193492381,52.28177531485081],[-117.86129001424642,52.281633264709505],[-117.86104735686504,52.281538850550625],[-117.86077391289294,52.28147046789629],[-117.86052824274685,52.28137245444599],[-117.86028737915035,52.28126856813089],[-117.86005047987862,52.28116326360754],[-117.85979860725108,52.28106875607051],[-117.85953137410564,52.28099686298877],[-117.85924038877177,52.28100172964881],[-117.85894544186804,52.28100800433067],[-117.85865340504144,52.28101842888331],[-117.85836105130912,52.28103052763563],[-117.85806828268723,52.28101551201119],[-117.85779775512708,52.280951281852396],[-117.85756696351318,52.28084302614368],[-117.85739512264611,52.28069660609867],[-117.85722135526521,52.28055060948857],[-117.85702672321226,52.2804172510288],[-117.85678555652835,52.280315032291014],[-117.85652825985896,52.280229721826274],[-117.85623868120116,52.28023693693149],[-117.85600679020797,52.280339624151374],[-117.85570511371328,52.28035218643971],[-117.8554622982246,52.28026846440064],[-117.85524923041797,52.28013492964712],[-117.85505481701324,52.280000454182876],[-117.85487678022324,52.27985754643548],[-117.85470891559092,52.279709704770084],[-117.85452884728493,52.279567781399564],[-117.85434054023294,52.279430349853904],[-117.8541522343779,52.27929291798741],[-117.85396617428847,52.27915338722111],[-117.85380602944316,52.279003831735544],[-117.8536621547593,52.278846405511416],[-117.85352010591845,52.27868909890351],[-117.85337816263372,52.2785312397329],[-117.85323793727089,52.27837407037491],[-117.85311163444067,52.2782116724249],[-117.85299315257325,52.278047000672046],[-117.85287123451579,52.27788096657166],[-117.85268584944684,52.27774768293203],[-117.8524411680055,52.27764463618805],[-117.85222387486425,52.277523778243754],[-117.85202755501885,52.27738972104932],[-117.85187352314499,52.2772372168982],[-117.85172163238735,52.27708316635315],[-117.85152917293094,52.276948252126076],[-117.851322582622,52.27681967940527],[-117.85111364272893,52.276693766108],[-117.85090063814326,52.27656981327152],[-117.85068742230206,52.27644698258468],[-117.8504702463206,52.276325559961656],[-117.85025286075843,52.2762052505634],[-117.85004392863496,52.27607932636732],[-117.8498392744376,52.27595032732545],[-117.84963858448018,52.27581991055997],[-117.84942601006459,52.27569372764192],[-117.84917923976289,52.275601810269634],[-117.8488970082149,52.27555084008204],[-117.8486115847609,52.27550697461704],[-117.84833724894632,52.27544357813647],[-117.84806761410655,52.27537487042107],[-117.84778815801138,52.27531901049706],[-117.84750764830639,52.27526871809359],[-117.84722264987066,52.275222621918985],[-117.84694182597131,52.275173994145845],[-117.84666247722852,52.27511757913377],[-117.84640544234682,52.27503113220886],[-117.84616208607788,52.274930989371505],[-117.845951242803,52.27480549010383],[-117.84578525121051,52.27465776376849],[-117.84563938636227,52.27450131183755],[-117.84546077226797,52.27436172100833],[-117.8452848242103,52.27421781310607],[-117.84510491600346,52.274075313207376],[-117.84495295584223,52.27392180577093],[-117.84480506268224,52.27376633747625],[-117.84467677117476,52.27360491451956],[-117.84036248720119,52.272586028926696]]]]}' + )), 4326)))); + +INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Kootenay','4','4- Kootenay','AR10100000','WHSE Admin Boundary',6 + , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-118.29501042408857,50.13489706932168],[-118.29497954728096,50.134664882052995],[-118.2928350087489,50.13296012275089],[-118.29069719526458,50.128570166184964],[-118.2916564226439,50.12384108492328],[-118.29367962430575,50.11864473792788],[-118.29367951342863,50.11715609719167],[-118.29366497900097,50.1120290472007],[-118.29106785409111,50.10769875441861],[-118.2890995809473,50.103311970892655],[-118.29211599552727,50.09896929624853],[-118.30409128856405,50.09609846451458],[-118.31431465300084,50.09733327555918],[-118.31938938868467,50.098750808210774],[-118.33067782406872,50.099179822025],[-118.33919599994921,50.09927796089269],[-118.34602865356375,50.095783376272166],[-118.35490501628973,50.093251519503816],[-118.36751235808079,50.0915139876754],[-118.37479020385035,50.091035418092424],[-118.37762731402393,50.08920961840106],[-118.37974212562034,50.08641073220924],[-118.37972345061594,50.08258928440636],[-118.37934849817461,50.080303323576246],[-118.37934805339725,50.0792182722934],[-118.38671562822054,50.07760546868171],[-118.39941611589407,50.07745620213688],[-118.40669545396922,50.07703513566304],[-118.42356499742348,50.077328939945474],[-118.4406172578689,50.07745249359582],[-118.44620851111007,50.07720679299081],[-118.45357910027634,50.075470680069266],[-118.46206751461608,50.07173782518277],[-118.46605453314578,50.06938620124961],[-118.4687941196174,50.06760758400561],[-118.47294019613706,50.06480051990264],[-118.48178761864013,50.06031858205476],[-118.48249972475574,50.05991992997216],[-118.49248991807116,50.054290079964524],[-118.49609903727028,50.05148615844883],[-118.49707392193514,50.051025190408645],[-118.50103629238184,50.046503889365255],[-118.50001762307745,50.04017464252983],[-118.49269920576455,50.03586817220539],[-118.48958336767984,50.034336811332025],[-118.4827280197591,50.03173838180237],[-118.47419657581419,50.029772419416354],[-118.4651412176916,50.02809177889635],[-118.46194015140283,50.02792793548545],[-118.45057805197689,50.02636520430418],[-118.44310719838143,50.02394141998997],[-118.4400865297427,50.022526351838344],[-118.43447269192025,50.019744691058506],[-118.43010821452182,50.016795928510234],[-118.42698303793495,50.01281319783381],[-118.42696415601259,50.00972686652298],[-118.433241719419,50.006405875242784],[-118.44156634559016,50.006375960394315],[-118.44716167289393,50.006644201916444],[-118.45273761568315,50.00525504310548],[-118.45857994517591,50.00352627564962],[-118.46504318110964,50.00253392707918],[-118.46840869898757,50.001440488932914],[-118.46954541947487,49.99999804785048],[-118.46953809507288,49.999026144692614],[-118.46934385944071,49.99520287107203],[-118.46789198585765,49.99126755276443],[-118.467615092414,49.98921410235885],[-118.46519272011932,49.984706081021095],[-118.46287447443085,49.981518456389644],[-118.4613536078918,49.98003530962206],[-118.45949063824102,49.97850197804715],[-118.45451437580861,49.97748113927058],[-118.45265842470978,49.977259249148595],[-118.44936453692513,49.976409083145654],[-118.44669857829844,49.97464880542129],[-118.44625055370192,49.974138619749255],[-118.44402806221873,49.97283273683425],[-118.44047998700438,49.9726711290782],[-118.43685006573021,49.9737606283615],[-118.43207542411587,49.97583045350565],[-118.43031162317496,49.97657191377444],[-118.42817778695667,49.97709331507523],[-118.42348960432645,49.97653516888504],[-118.42002282905399,49.97563140939063],[-118.41638768543724,49.97489727405739],[-118.41549585170915,49.97461217185316],[-118.41177238297847,49.973651890579724],[-118.40918680215177,49.972174786790724],[-118.40829519190181,49.970460887739456],[-118.40872154054902,49.96731816867858],[-118.41110638926331,49.96537508764456],[-118.41384473418927,49.96400075352343],[-118.41506979227862,49.961024786356745],[-118.41461731753346,49.95919895212112],[-118.41487536708166,49.95748289924997],[-118.41380350531163,49.954917199846385],[-118.41377978711486,49.951781059543585],[-118.41492297337585,49.94954655562371],[-118.41579533207222,49.94691853138666],[-118.41604426777094,49.944751934803534],[-118.41630089224418,49.94337994954236],[-118.41514233430036,49.940242989159756],[-118.41326458792604,49.93721939504103],[-118.41219044606913,49.93567923846995],[-118.41147613266754,49.93391368201576],[-118.41324420430814,49.93305474964394],[-118.41606827519318,49.93207863843421],[-118.41669574210493,49.93184355510663],[-118.41667546606705,49.93070384374954],[-118.41622717992556,49.92750874451584],[-118.41576446883636,49.92465287477084],[-118.4157608511323,49.924254160986266],[-118.4146869028797,49.92111673213326],[-118.41467363709187,49.91934671679796],[-118.4151024942902,49.9166035992746],[-118.41535824316624,49.91523604252216],[-118.41545347857551,49.91483231597535],[-118.41597078298636,49.91357560970636],[-118.41601692401008,49.91345616862783],[-118.4158778796819,49.91331368177805],[-118.41586476867215,49.913129643004034],[-118.41588190743997,49.91294262299287],[-118.41588254562907,49.912760099848924],[-118.41588837282893,49.91257794614087],[-118.41591140930554,49.912397548467816],[-118.41597003458385,49.91222414450305],[-118.41606424828588,49.91205773419431],[-118.41617384652834,49.91189352285007],[-118.41629354646574,49.91173170418261],[-118.41642180244237,49.911571049429334],[-118.41655178764348,49.91141051466081],[-118.41668340828518,49.91125066309099],[-118.41681175530752,49.91108944455574],[-118.4169316354318,49.91092651645317],[-118.41704141388212,49.91076118648662],[-118.41714445718381,49.91059425822774],[-118.41724095142791,49.91042461419226],[-118.41733061837648,49.910253926179436],[-118.41741527895653,49.910081769020366],[-118.41749302010165,49.909909122193504],[-118.41756556897646,49.90973612374768],[-118.4176124461904,49.90955964218425],[-118.41762327171988,49.90937895661278],[-118.41761833925852,49.909198316058195],[-118.41761022652418,49.90901575442396],[-118.41757532707518,49.90883641473318],[-118.41748564320632,49.908670796124674],[-118.41733271135826,49.90851718017703],[-118.41715477983234,49.90837708373953],[-118.41696717696527,49.90824252797314],[-118.41676578943309,49.908117197173176],[-118.41654604399963,49.90800753807419],[-118.41631003966826,49.90791145361888],[-118.41605960157591,49.907828491723926],[-118.41579936138513,49.907762365353875],[-118.41553203309388,49.9077177937702],[-118.41525471457771,49.907691184034014],[-118.41497479286284,49.90768020968851],[-118.41469464668765,49.90768109306786],[-118.41441838783805,49.90769015885434],[-118.41413946843646,49.90770469124011],[-118.41386172053788,49.90772269563011],[-118.41358369251648,49.90774238003573],[-118.41330594417018,49.90776038301624],[-118.41302875396568,49.90777503279576],[-118.41275076423986,49.90778397415092],[-118.41247472955443,49.907781176602356],[-118.41219899537074,49.907745055932935],[-118.41193390444957,49.90768706559961],[-118.41167796791093,49.907616145649456],[-118.41142688754121,49.90753708884404],[-118.41117618185726,49.90745578752237],[-118.41092491706557,49.90737784704587],[-118.41066851912727,49.90730971397851],[-118.41040423171209,49.90725742765273],[-118.41012976605577,49.907224220227384],[-118.40985189658046,49.90720094034633],[-118.40957374734005,49.90717934047084],[-118.40929349599884,49.907159854590425],[-118.40902038069251,49.907181560060515],[-118.40875490541475,49.90723092672736],[-118.40849013450739,49.9072865637215],[-118.40822807940263,49.90734690170203],[-118.4079655572554,49.90741003724801],[-118.4077031267628,49.907472617884565],[-118.40736459242406,49.90755081373817],[-118.40710351921992,49.90761573928167],[-118.40684426762385,49.907680230247244],[-118.40658328533574,49.9077446002657],[-118.40632403227546,49.9078090899892],[-118.40606477848394,49.90787357909378],[-118.40580379399513,49.90793794723893],[-118.4055445387394,49.90800243510134],[-118.4052835527829,49.90806680199629],[-118.40502429606298,49.90813128861676],[-118.40476503861186,49.90819577461813],[-118.40450395654415,49.908260702851464],[-118.40424469762554,49.90832518761052],[-118.40398370799737,49.90838955138153],[-118.40372444761461,49.9084540348985],[-118.40346509406763,49.9085190720673],[-118.40320573829202,49.908584117556394],[-118.40294619689942,49.908650270966525],[-118.40268656082199,49.908716986965985],[-118.40242865397616,49.908783822737675],[-118.40216901638537,49.908850537498786],[-118.40190956443352,49.9089161341604],[-118.40165029814044,49.90898061272422],[-118.40138976639861,49.909042181036014],[-118.40112605432982,49.909101827210314],[-118.40086271441929,49.90915923779307],[-118.40059783027658,49.9092154098406],[-118.40033313191962,49.90927046376846],[-118.40006679688919,49.90932483341509],[-118.39999980365086,49.909338257050265],[-118.39973365278931,49.9093915173477],[-118.39946759528276,49.90944421378838],[-118.39919999362046,49.90949567166227],[-118.39893412136472,49.90954724932773],[-118.39866670497766,49.909597588419985],[-118.39839928800181,49.90964792685636],[-118.39813023441678,49.90969758097032],[-118.3978630027644,49.90974680062065],[-118.3975958630435,49.90979546535117],[-118.39732708674035,49.909843445748976],[-118.39705676637526,49.909890187537854],[-118.39678836200136,49.90993593167146],[-118.39651841360413,49.90998043719072],[-118.39624855869727,49.910024378839],[-118.39597715830482,49.91006709079836],[-118.39570603798104,49.910108121414474],[-118.39543482463709,49.91014970562038],[-118.39516543336012,49.9101908553982],[-118.39489267409047,49.91023120922475],[-118.39462066215275,49.91026708357532],[-118.39434621521974,49.910296574629115],[-118.39406797656416,49.91031732691768],[-118.39379015428582,49.91032510268346],[-118.39351157842007,49.91031642901035],[-118.39323542715151,49.91029323657051],[-118.39296324712467,49.9102567455053],[-118.39269952281055,49.910201064312126],[-118.39245495753647,49.910114503738114],[-118.39221661047154,49.91002215377148],[-118.39196069145386,49.90995118800331],[-118.39168622452537,49.90991792557051],[-118.3914088640646,49.9099019875318],[-118.39112972974331,49.909896669115895],[-118.39085148621587,49.90989649465609],[-118.390573056013,49.90989743694742],[-118.39029462579867,49.909898378531324],[-118.39001572959161,49.90990210857942],[-118.38973828254348,49.90990763916535],[-118.38946055462418,49.90991484970204],[-118.38918100401096,49.90992249319008],[-118.38890290397028,49.90993192828403],[-118.38862470970527,49.909941925868885],[-118.38834670205082,49.90995080529393],[-118.38806878691096,49.909959129756906],[-118.3877909657898,49.90996689031898],[-118.38751314457438,49.909974650176636],[-118.38723340651063,49.9099834061485],[-118.38695684892555,49.90999407438829],[-118.38667818617704,49.91000686512913],[-118.38640069442046,49.910023119218586],[-118.38612427795911,49.91004340879934],[-118.38584893672127,49.91006773387938],[-118.38557294213575,49.91009596486737],[-118.38529849039679,49.910125433271176],[-118.38502394564422,49.910155455240535],[-118.38474911955228,49.91018715716139],[-118.38447583624752,49.910220096514955],[-118.38420236571432,49.910254152631694],[-118.3839303437615,49.910290009387886],[-118.3836563118589,49.910327416475404],[-118.38338545997026,49.91036673596062],[-118.38311432657548,49.91040773541008],[-118.38284454895768,49.91045108977586],[-118.38257448976755,49.91049612410919],[-118.3823057877787,49.910543504430464],[-118.38203843996376,49.91059324862824],[-118.38177226238031,49.91064645627433],[-118.38151132058756,49.91071021207048],[-118.38125898323347,49.9107853028171],[-118.38101206977453,49.91086981541784],[-118.3807726839455,49.910961635762774],[-118.3805391898709,49.9110600799709],[-118.38031340873177,49.91116472350943],[-118.38010595814046,49.91128533326375],[-118.37992567212594,49.91142141351369],[-118.3797499215681,49.911561762253044],[-118.37956799758963,49.911697157924365],[-118.37937634737602,49.91182791323384],[-118.3791830587526,49.91195799317717],[-118.37897270089087,49.9120750157711],[-118.378728862398,49.91216199947401],[-118.37847071413337,49.91222989598128],[-118.37820442862831,49.91228365802958],[-118.37793183040573,49.91232284315664],[-118.37765703209479,49.912343795283725],[-118.3773781657348,49.91233676124435],[-118.37710930515263,49.912290858001455],[-118.37686896790689,49.91220002581852],[-118.3766985330535,49.91205755850415],[-118.37658968072314,49.91189225006998],[-118.37654063140188,49.911714729685784],[-118.37657738159167,49.91153698712429],[-118.37667220553453,49.911367812498234],[-118.37679550240168,49.91120628741579],[-118.3769203428854,49.911045991447864],[-118.3770452752519,49.91088514105589],[-118.37718348568312,49.91072860912073],[-118.37732323815459,49.910573315201255],[-118.37745644373665,49.91041530305231],[-118.3775697293833,49.91025081729428],[-118.37765781408964,49.91008004094],[-118.37771349550465,49.90990418047487],[-118.37775725376241,49.909726357024226],[-118.37776814257128,49.90954623864711],[-118.37772792791168,49.90936820470188],[-118.37766821601025,49.90919164013411],[-118.37757559011477,49.90902351253042],[-118.37745033028006,49.90886215012791],[-118.3773139438237,49.90870453255411],[-118.37717363172956,49.908549462314326],[-118.37702775536378,49.90839627329138],[-118.37687823466324,49.90824395094562],[-118.37672862070654,49.90809219155216],[-118.37656961025037,49.90794429766046],[-118.37639133757985,49.907806933016005],[-118.37619380424155,49.90768008859127],[-118.37599454212618,49.90755312297749],[-118.3757949070601,49.90742839185151],[-118.37559363748528,49.90730297633558],[-118.37539994232519,49.907174137154996],[-118.37521784238572,49.907038763688],[-118.37504935029908,49.90689528725212],[-118.3748903494357,49.90674739068198],[-118.37473883008792,49.90659662486881],[-118.37460044857825,49.90644056322251],[-118.3744603396886,49.906284371593244],[-118.37430901035228,49.906132487654574],[-118.37413678349539,49.9059904485854],[-118.3739228996631,49.90587772287684],[-118.37368077836574,49.90578732525011],[-118.37342968096934,49.905708735451675],[-118.37317171128961,49.905639839411],[-118.37291327540699,49.90557373187171],[-118.37265530726683,49.90550483460268],[-118.37239743270729,49.90543538247286],[-118.37213918620888,49.90536815565615],[-118.3718759824938,49.90530963487246],[-118.3716017923026,49.90526447248183],[-118.3713469131694,49.90519804872965],[-118.37111447938291,49.90510209942646],[-118.37088508480845,49.904998457429556],[-118.37066209773097,49.90488790985236],[-118.370447247958,49.90477057763004],[-118.37024581609643,49.90464627820766],[-118.37006145176483,49.90451411815624],[-118.36989480772534,49.90437019995969],[-118.3697378420381,49.90422074463465],[-118.36958106604082,49.9040701626843],[-118.36941652918944,49.90392412972418],[-118.3692362839514,49.90378830344699],[-118.36902181586244,49.90366874233173],[-118.36879757877782,49.90355527179205],[-118.36859204294777,49.90343463380847],[-118.36843541123307,49.90329367361105],[-118.36834264403284,49.90312665427944],[-118.36828363244238,49.902946167617706],[-118.36821714104853,49.902768549432416],[-118.36810067254034,49.90260722539179],[-118.36793605282779,49.9024617441621],[-118.36774497106985,49.90232798757112],[-118.36754767258682,49.90220000918208],[-118.3673482711391,49.90207414432667],[-118.36714667385647,49.90195094723964],[-118.36693951282072,49.90182963069481],[-118.36673015593884,49.901710981883724],[-118.36651677920409,49.90159544301762],[-118.36629709127666,49.90148624539622],[-118.36606552878725,49.90138526093587],[-118.3658297591147,49.90128850374097],[-118.36559179345294,49.90119441415046],[-118.36534531792509,49.90110934271737],[-118.36512937446756,49.90099871297017],[-118.3649458815764,49.90086151969727],[-118.3647944145109,49.90071073892214],[-118.36465599185648,49.900555217707534],[-118.36453080079824,49.90039383867211],[-118.36442940591242,49.900226210399055],[-118.36433256157713,49.900000112759564],[-118.36427090390062,49.899825089309076],[-118.3642057876103,49.8996498237852],[-118.36413155668554,49.899476742284115],[-118.36404839700326,49.899304736299804],[-118.3639651435555,49.89913329339583],[-118.36387469248945,49.898963038046965],[-118.36377867899513,49.898794654425565],[-118.36366999782229,49.89862877591925],[-118.36355201518711,49.89846619875468],[-118.36342683374185,49.89830481799652],[-118.36329599574037,49.898145872062855],[-118.36316132659495,49.89798890982647],[-118.36302291773059,49.89783338596934],[-118.36287913410891,49.89767861627425],[-118.36273525705747,49.897524409541866],[-118.362593111927,49.8973703146728],[-118.36244741445624,49.89721654071797],[-118.36229961389334,49.89706488036581],[-118.36214269809396,49.896915412667894],[-118.36197793049429,49.896771038783136],[-118.36180002693554,49.89663196769222],[-118.36160650873667,49.89650254800839],[-118.36139690981778,49.896385559815776],[-118.3611736129815,49.896277226485594],[-118.36094793134248,49.89617268710128],[-118.36071000233811,49.896078586249864],[-118.36051899049008,49.896017732892],[-118.36027972991845,49.89585853606836],[-118.36005634386876,49.895750763566326],[-118.35983688680638,49.895640434692204],[-118.35961570142777,49.89552998429029],[-118.35939414235699,49.89542176827798],[-118.35916875083294,49.89531554449675],[-118.35894097587799,49.895213105675325],[-118.35870726279137,49.89511478175051],[-118.35846906204803,49.89502235650484],[-118.35822464423427,49.89493570881752],[-118.35797601750765,49.89485329701853],[-118.35772664350327,49.89477534540478],[-118.35747315493909,49.89470106645867],[-118.35721555177417,49.89463046015278],[-118.35695738859543,49.89456319656565],[-118.35669684005015,49.89449972669705],[-118.35643572988266,49.89443960847191],[-118.35617069237045,49.89438204539328],[-118.35590453225944,49.894331177262266],[-118.35563046576124,49.894296152161616],[-118.35535414999335,49.89427453542881],[-118.35507661511112,49.89426018570338],[-118.35479973735956,49.894241919833675],[-118.3545818020597,49.89421647706905],[-118.3542466286269,49.8942223895983],[-118.35396960566835,49.89421541698069],[-118.35368991591224,49.89421390958977],[-118.35341171656766,49.89422437224355],[-118.35313626565552,49.8942497330796],[-118.35293598939307,49.8942441740472],[-118.3530564908157,49.89404742606948],[-118.35320235816988,49.893876757872],[-118.35336261151204,49.89372461666664],[-118.35356570967288,49.89359865828567],[-118.3537211881965,49.89345410503846],[-118.35377039931565,49.89327553324695],[-118.35377964939092,49.89309529204427],[-118.35381137978212,49.89291662592503],[-118.35387231974191,49.89274113694272],[-118.35393325923414,49.89256564788428],[-118.35399756374169,49.892390955312436],[-118.35406023152183,49.8922155872599],[-118.35411434567713,49.892039059093314],[-118.3541581785806,49.891861240727174],[-118.35421565737352,49.89168550898329],[-118.35430379351311,49.89151474706936],[-118.35443692861334,49.89135732196738],[-118.35460777357228,49.89121496588757],[-118.35479777350737,49.891083565878745],[-118.3549940322168,49.89095656555742],[-118.35519202052177,49.89082967706517],[-118.35522516594098,49.89080938795117],[-118.35267594821089,49.875131137546646],[-118.34554068146969,49.855151842851534],[-118.35354944943015,49.84249110996028],[-118.35368324658762,49.84231846328208],[-118.35370740850215,49.84217430598737],[-118.35370332930474,49.84202138371568],[-118.35369925013453,49.841868461411565],[-118.35366523335702,49.84164390916012],[-118.35364522423764,49.84141919978795],[-118.35364036416217,49.84123965705328],[-118.35362182172031,49.84106876032905],[-118.35361696327217,49.84088920856635],[-118.35361357122157,49.84076346955984],[-118.35360707845325,49.84058324226501],[-118.35361599522273,49.840394490039834],[-118.35361100086045,49.84020532264206],[-118.35364939621222,49.84007007802958],[-118.35378364379962,49.839915553031844],[-118.35386428332629,49.839788925115215],[-118.35392896090165,49.83965326289251],[-118.35395458885678,49.839562908958136],[-118.35394881188681,49.83934712098974],[-118.35395727056512,49.83914023707534],[-118.35393725960844,49.838915535918865],[-118.3539319422259,49.83871786122625],[-118.35393899551175,49.83851936288759],[-118.35393413459242,49.83833981944619],[-118.35394552798319,49.83824055227715],[-118.35402547717779,49.83808674031082],[-118.35415971768326,49.83793221442791],[-118.35437821459082,49.83778586041992],[-118.35441977061879,49.83776729339295],[-118.35448659818279,49.83771262713021],[-118.3546104856774,49.83763029650424],[-118.35484321346041,49.83749285449881],[-118.35488235442924,49.83744698247603],[-118.35490618647641,49.83729432594917],[-118.35490233285839,49.83715046391296],[-118.35490118712372,49.83710515779933],[-118.35489632408085,49.836925605109414],[-118.35487924641922,49.836808520656994],[-118.35484784245781,49.83668307749619],[-118.35482828796187,49.836476489261194],[-118.35482512204072,49.83635981075758],[-118.35482204901149,49.83624257795018],[-118.3548341273422,49.83617049410585],[-118.35487101771973,49.83604418838961],[-118.35490940586314,49.83590894255668],[-118.35490555235157,49.83576508024486],[-118.35491547377124,49.83561200839845],[-118.3549101510527,49.83541434179026],[-118.35490538102698,49.83523423439514],[-118.35489902022319,49.835063621333354],[-118.3549229453446,49.83491040107358],[-118.35494687030595,49.83475718077616],[-118.35497079510725,49.83460396044103],[-118.35501087870551,49.83453158880539],[-118.35511641060492,49.83435017376878],[-118.35518280384085,49.83421463093709],[-118.3552750183825,49.83406054774907],[-118.35538387976906,49.83394268232237],[-118.35549110792167,49.8338241323938],[-118.35559654193042,49.83364327994393],[-118.35568979309858,49.83346213362855],[-118.35578246302414,49.833326172390045],[-118.35586285610806,49.83319048057618],[-118.3558998629877,49.83300086622908],[-118.35590681401005,49.832802920481974],[-118.35591549046413,49.83260510476087],[-118.35599611122869,49.83247847399253],[-118.3560891019632,49.83235101036062],[-118.3561839541833,49.83223329227409],[-118.35630302029843,49.83203360451919],[-118.35634140085314,49.83189835743319],[-118.35636724762412,49.831817072190944],[-118.35637978118122,49.8317631103085],[-118.35645775451717,49.83160011276427],[-118.35653745424528,49.83143723625852],[-118.3566010999552,49.83126588894877],[-118.35659894203117,49.83118489160038],[-118.35664962307071,49.83098662992525],[-118.3567008306672,49.83086867226388],[-118.35675367058296,49.830751398917634],[-118.35686160229307,49.8305972862786],[-118.35696780636619,49.83044305237609],[-118.35703349985833,49.83028032377599],[-118.3570974659849,49.83011747397767],[-118.35716283465923,49.829946247150204],[-118.35717251771693,49.82978411255639],[-118.35718047382574,49.82962185680418],[-118.35719185801393,49.829522588099586],[-118.35719038631369,49.829468783449954],[-118.35721475998031,49.82933368413398],[-118.35725313558142,49.829198436222605],[-118.3572777384957,49.82907239816096],[-118.35732701132127,49.828882512560924],[-118.35739237887277,49.82871127636327],[-118.35743029421964,49.828557905623406],[-118.3574377899928,49.82837752692291],[-118.35744668860372,49.82818877119779],[-118.35744066851343,49.827963909744916],[-118.35743464698503,49.82773905716186],[-118.35743225815332,49.82764899809803],[-118.35742816781585,49.827496072892004],[-118.3574237535854,49.82733464954715],[-118.35742159439208,49.82725365177402],[-118.3574170181367,49.82714535778685],[-118.35738609986846,49.82697528236584],[-118.35738152372478,49.82686698833543],[-118.35737959421344,49.82679505185612],[-118.35737812238034,49.82674124700568],[-118.357377663211,49.826723124309865],[-118.35737550412802,49.82664212646721],[-118.35738509141255,49.82648055434707],[-118.35747753929998,49.82627277494527],[-118.35750096531072,49.826164183620904],[-118.35749687487646,49.82601125810271],[-118.35750678552613,49.82585818395422],[-118.35750292470402,49.825714319732036],[-118.35751283526923,49.82556124551994],[-118.35699671000526,49.822384067065315],[-118.35369978075299,49.82208488959425],[-118.34486872148916,49.82107746925169],[-118.3369149217838,49.821089291832486],[-118.33152777827982,49.82121225947115],[-118.32868590699398,49.82099183062615],[-118.32763422625975,49.82076343177399],[-118.32620980418297,49.81951033181733],[-118.3233757275581,49.81774856197744],[-118.32099442441674,49.81695146563613],[-118.31639892845101,49.81627518989932],[-118.31303749836998,49.81582261732492],[-118.31109107908152,49.815597612912136],[-118.30896766697673,49.81434973846351],[-118.30745520781649,49.811550014759796],[-118.30585580950456,49.80818946421155],[-118.30584465848212,49.80767530475148],[-118.30284363381813,49.806995098670484],[-118.29904020870165,49.806599563007346],[-118.29710205079199,49.80574839917599],[-118.29602747946535,49.80375398438102],[-118.29637885986357,49.801919809125714],[-118.29840712166686,49.79900560120126],[-118.30016502782317,49.797693251569605],[-118.30086896954114,49.79592074097152],[-118.29715051579302,49.79461285837937],[-118.29238000062124,49.79399478823065],[-118.28874995242698,49.79348894988124],[-118.28751373828182,49.79303443080589],[-118.28680391559426,49.79194433771247],[-118.28501770402406,49.785898945497635],[-118.2842139500306,49.782306937245814],[-118.28376056058121,49.77870807399931],[-118.28657820948716,49.7744250931398],[-118.29115526094495,49.771047006544684],[-118.29317682467,49.76899408315734],[-118.29449807806037,49.766705512806645],[-118.29325284231786,49.76465300637166],[-118.29299326280017,49.76453679394625],[-118.29078199099717,49.76299877231894],[-118.28882553625796,49.760034052510385],[-118.28872936348972,49.75729502388266],[-118.28872454621451,49.75484178999584],[-118.28951265235368,49.752899940806415],[-118.29091633585658,49.750782896874895],[-118.2925844294058,49.74866931409719],[-118.29397949653945,49.74627059547673],[-118.29450455486514,49.74381757200681],[-118.28964571919819,49.741768892413866],[-118.28709115159864,49.74194226879358],[-118.28717275324044,49.74228562930634],[-118.2840885335239,49.742290182335644],[-118.28108610027698,49.74023990301195],[-118.28027218734768,49.737044924187174],[-118.27983359534535,49.733280004664884],[-118.27867366175671,49.730483366838435],[-118.27751746212942,49.72865674619526],[-118.2763690834323,49.725462771706],[-118.27653436951202,49.72192330497924],[-118.27731680016032,49.718445212972945],[-118.2771302418223,49.71781557894944],[-118.27509674265305,49.71656213010579],[-118.27245076776762,49.71439479657632],[-118.27111662372805,49.71131411155792],[-118.2703093144248,49.70949007663358],[-118.27012826867163,49.70560976042241],[-118.2698589838508,49.702582135533405],[-118.27011033556037,49.700928955470665],[-118.27037886549701,49.69876126343141],[-118.27267080638212,49.69864383736878],[-118.27442981996107,49.69904095370676],[-118.27574430684201,49.69777722984053],[-118.27512285110689,49.69510005708993],[-118.27527419392793,49.688587142363716],[-118.27614283049739,49.68385170859379],[-118.27630779585877,49.680313151645336],[-118.27744173855876,49.677803179886865],[-118.2767388264063,49.67660122944048],[-118.27363424413198,49.67295384275708],[-118.2723936260847,49.66924278648898],[-118.2714189297608,49.66668111601281],[-118.2686836770832,49.66588573426344],[-118.2631391175767,49.66588936619477],[-118.25528792607619,49.66544708761462],[-118.25229029921707,49.665051621647684],[-118.24779712972192,49.664604117258065],[-118.24497755698839,49.66398022292587],[-118.24207762146612,49.66226859657688],[-118.24224027023617,49.65810073085348],[-118.24212938259345,49.649544283133224],[-118.24078356717735,49.64326576603627],[-118.23972573568385,49.641208318353925],[-118.23970781456897,49.63481880839801],[-118.24058155058898,49.630479943112235],[-118.24250179769247,49.62785160158441],[-118.24689498240147,49.624589579640485],[-118.24900015841304,49.61979346675046],[-118.25002929292543,49.61345777878185],[-118.25108309077436,49.61191495510346],[-118.25308321845137,49.60534601394289],[-118.25228307373301,49.60061189826577],[-118.25147391081907,49.597414389854364],[-118.25173150287317,49.593418716750655],[-118.25304127661026,49.59010967582364],[-118.25328944523379,49.58839269428477],[-118.25134693346942,49.58548455483926],[-118.24809810189318,49.583149751636405],[-118.2449097480476,49.57938924559367],[-118.24411747962418,49.57510955933945],[-118.24285682279194,49.5688312736625],[-118.24257799810003,49.56192636754265],[-118.24282985460835,49.559530826728796],[-118.24519624261181,49.55621712040017],[-118.25055569001333,49.554268734853125],[-118.25476201036321,49.55231624653243],[-118.25581451109652,49.55134850808176],[-118.25631795021685,49.54729156370134],[-118.2571807268136,49.54192652005857],[-118.25805328078464,49.53798587834062],[-118.25875170589556,49.5358196379742],[-118.26338841528984,49.53204124878604],[-118.27057467571365,49.52837527833134],[-118.2742585888729,49.52637129430514],[-118.27688864348899,49.52476937893068],[-118.27697837363613,49.524483352674835],[-118.27563759908068,49.51866331802322],[-118.2743862595693,49.51346953604108],[-118.27481096638145,49.50895993769529],[-118.27646168906219,49.505992753430625],[-118.28135527045909,49.50107024158266],[-118.28153269259484,49.499930659948824],[-118.28414490272938,49.49478521402783],[-118.28456108758863,49.49073311277701],[-118.28366541864978,49.486395028052414],[-118.28312540161458,49.48365937523352],[-118.28003672513967,49.47858533969866],[-118.27940097769444,49.47328081888777],[-118.28027769346048,49.471279849820384],[-118.27832634673582,49.468774165123655],[-118.27577781655478,49.46734862691454],[-118.27568269766705,49.465353993930016],[-118.27075462036399,49.46050992287034],[-118.2638910397971,49.453905033022515],[-118.25930971157892,49.448826764650484],[-118.25535781903194,49.447182036513865],[-118.25314485282048,49.44261969496606],[-118.25655461829177,49.440726383542035],[-118.25864759249063,49.436275388348896],[-118.25888495760626,49.43164803489186],[-118.26062364192482,49.42765218314099],[-118.26500553797634,49.42433481660103],[-118.26981296441201,49.423183990654096],[-118.27261223958646,49.42260400657735],[-118.27454264227629,49.42191679073572],[-118.27347758855556,49.4199233014911],[-118.26988942639895,49.41901294143772],[-118.26523834106793,49.417254899404064],[-118.26426729576966,49.41668462400947],[-118.26136458199318,49.414747602496575],[-118.25820115500515,49.410818439159854],[-118.25686571236992,49.40648285585879],[-118.25602405262572,49.403290123784295],[-118.24554417198965,49.403290407800874],[-118.24350789867854,49.400000028229044],[-118.21818200635526,49.35909529081233],[-118.21845790394713,49.35911068544353],[-118.21885064766977,49.35911018961947],[-118.21900059000059,49.35906216917792],[-118.21924761424737,49.358982110871445],[-118.21949463613143,49.35890206093583],[-118.219752736978,49.35883836380188],[-118.22002701920967,49.35881204724743],[-118.22029717487862,49.35883070743754],[-118.22056324262903,49.358883863474595],[-118.2208328467567,49.358916053275244],[-118.22110524475,49.35894193475816],[-118.22138019969485,49.35896291216845],[-118.22165452886266,49.35897734347832],[-118.22192801208828,49.35899679188586],[-118.22240321171365,49.35904071036363],[-118.22240332164236,49.35128432955952],[-118.22266997858691,49.351231150007656],[-118.22289991464777,49.35114957185825],[-118.22298982705071,49.350975275631],[-118.22310889212193,49.35081270708841],[-118.22323935162409,49.350654355805155],[-118.22337308734018,49.35049708280239],[-118.22350686737725,49.35033954126203],[-118.22363404860434,49.3501801019749],[-118.22374636977715,49.35001647577721],[-118.22384553965948,49.3498487860228],[-118.22393981659849,49.34967933980656],[-118.22404069368376,49.34951177309815],[-118.22414655419314,49.349345416958],[-118.22425744481234,49.34917999409163],[-118.22437640736028,49.349017978280116],[-118.22451483521337,49.348863595750245],[-118.22468569158147,49.34872201886328],[-118.22486457135201,49.348584135077076],[-118.2250450184692,49.34844720610269],[-118.2252648460126,49.34834340186894],[-118.22551374597825,49.34826205591459],[-118.22575137879642,49.348165465484946],[-118.225973477154,49.348058428833724],[-118.22614200566109,49.34792035769765],[-118.22628370133084,49.34776705104717],[-118.22641276287267,49.347606613080686],[-118.22653702637106,49.34744385519509],[-118.22666447252188,49.34728273007288],[-118.22680464282291,49.347128190197346],[-118.22696708473956,49.34698515222545],[-118.22715820740459,49.34685663147946],[-118.227369984924,49.346738943535996],[-118.22758774869756,49.34662677504105],[-118.22780817512465,49.346519324897294],[-118.22804237717627,49.346422482686435],[-118.22827320791552,49.34632511618831],[-118.22849063762469,49.34621490468103],[-118.22867429199805,49.346079342669],[-118.22880282383991,49.34592196945916],[-118.22890704394626,49.34575492996847],[-118.2290129717945,49.34558801356562],[-118.22912374264689,49.345423139352285],[-118.22923778807638,49.34525935223561],[-118.22935676983603,49.345097052715005],[-118.22948386984297,49.3449378825883],[-118.22963413284762,49.34478491863916],[-118.22975444389913,49.34462497795448],[-118.22977019612472,49.3444492848058],[-118.22965523788871,49.344289921020724],[-118.22961973564882,49.344110540139795],[-118.22967677229877,49.34393613149959],[-118.22978592179591,49.343770578411345],[-118.22989678044186,49.34360513944357],[-118.22998086693185,49.343434383570354],[-118.23003818303906,49.34325830190535],[-118.23008709826732,49.343080763295596],[-118.23013762813902,49.34290390240074],[-118.23018136924372,49.34272628024703],[-118.23021656959627,49.34254803302717],[-118.23024498285409,49.342369015618864],[-118.23027367903256,49.342188316548835],[-118.23029905163285,49.34200681642973],[-118.23020701264632,49.34184485930666],[-118.23002869006356,49.34170242658035],[-118.22983971073143,49.341571944769065],[-118.22963935128193,49.34144744075971],[-118.22943292652292,49.341328157130555],[-118.22921636154037,49.341217756234],[-118.22902179002746,49.34108970291222],[-118.22884623238527,49.34095142337651],[-118.22868779195288,49.340803912565896],[-118.22853494894811,49.34065397151132],[-118.22837257572141,49.34050929067785],[-118.22818938911762,49.34037526663412],[-118.2279947757748,49.340247497534556],[-118.22780438152684,49.340115215975956],[-118.22761422338105,49.339981538681855],[-118.22740288726695,49.339870949119074],[-118.22715090363961,49.33980664953573],[-118.22687523313256,49.339770063722895],[-118.22660548792847,49.339729097378935],[-118.22633716820238,49.3396899352352],[-118.22606549373647,49.33966042569143],[-118.22579405468468,49.33962952009306],[-118.22555002481111,49.33954881531399],[-118.2253153710165,49.339453513454906],[-118.22508498312047,49.33935342180456],[-118.22486857788009,49.339242180021905],[-118.22465013689788,49.339132764427404],[-118.22442349856584,49.339030959035405],[-118.22418870804032,49.338936495457816],[-118.22395401342425,49.33884146784284],[-118.22375306966988,49.33872058395931],[-118.22356819527917,49.33858642841674],[-118.22338711520794,49.33845028300425],[-118.22320973448605,49.33831271125384],[-118.22304188464743,49.3381698881106],[-118.2228983632689,49.33801608279393],[-118.2227416600013,49.337868685954376],[-118.22255466016888,49.33773691863012],[-118.22236775486142,49.33760459638729],[-118.22218663391514,49.33746873499448],[-118.22201670674936,49.33732801396282],[-118.22175646311652,49.3372820616696],[-118.22148096421006,49.3372548162067],[-118.22120447811399,49.33723342878928],[-118.22092867361874,49.33722851297814],[-118.22065269415167,49.337234891690244],[-118.22037804581774,49.337243629226414],[-118.22010287867374,49.33725544302056],[-118.21982871233661,49.33727157452437],[-118.2195554999835,49.33729230102853],[-118.21928333654023,49.33731705902857],[-118.2190105122664,49.33734573408716],[-118.21874534566068,49.33739051567078],[-118.2184771860135,49.33743253636955],[-118.21820554989108,49.33746440973717],[-118.2179316297932,49.33748931821008],[-118.2176551762475,49.337498488932106],[-118.21740270016302,49.33743724335345],[-118.21723169190508,49.33729275987497],[-118.21718704168343,49.33711667368802],[-118.21718836021253,49.33693456548962],[-118.21720481664536,49.33675496336255],[-118.21723161525023,49.33657554712494],[-118.21725675379277,49.336395721187756],[-118.21727856942638,49.33621509379686],[-118.21730375435057,49.336034990468775],[-118.21734070575087,49.335856878020785],[-118.21739607035971,49.33568235029158],[-118.21748161457253,49.33551339817558],[-118.21759406218997,49.33534894293105],[-118.21771818352323,49.33518702404702],[-118.21784235225248,49.3350248187529],[-118.2179581667868,49.334860887109826],[-118.21808076599952,49.33469772620462],[-118.2181865190491,49.33453193572839],[-118.21824501146202,49.33435933561872],[-118.21825463070819,49.33417923903205],[-118.21825072734242,49.33399731438374],[-118.21825688216992,49.33381725712438],[-118.21826987055474,49.333637684478646],[-118.21828632011712,49.333458090246175],[-118.21830447907121,49.33327861041959],[-118.21832263788467,49.33309913054174],[-118.21833738056148,49.332919403811104],[-118.21835036687466,49.332739839859194],[-118.21836164661042,49.332560143512424],[-118.21837121677245,49.33238033266045],[-118.21838249633987,49.332200636214694],[-118.21840245589144,49.3320207248638],[-118.21837374494459,49.33184238517451],[-118.21833288854532,49.33166430865383],[-118.21829023252519,49.33148665429468],[-118.21824766882209,49.33130845424524],[-118.21817128996844,49.33113600441341],[-118.21808973964987,49.33096347049835],[-118.21800268916685,49.330792802431866],[-118.21790653574371,49.330624862528644],[-118.2177814519127,49.33046446509881],[-118.217643567596,49.33030822157609],[-118.2175073438424,49.33015238748581],[-118.21736941311724,49.329996429770866],[-118.21723138830498,49.32984103535965],[-118.21709160978854,49.32968579460059],[-118.21695358834113,49.3295303908178],[-118.21681385844776,49.32937487234185],[-118.21667764022743,49.32921903698867],[-118.2165414711884,49.32906291519714],[-118.21648639591469,49.32888720406099],[-118.21646324162568,49.328706719859085],[-118.21643112453181,49.328528131907184],[-118.21636528601866,49.328354748012],[-118.21627834180929,49.32818351437467],[-118.21618063251049,49.328014616988746],[-118.21606675275032,49.32784935817485],[-118.21594158925888,49.32768951252259],[-118.21580338755638,49.32753523384084],[-118.2156525263331,49.32738427696165],[-118.21549593032698,49.327236581049455],[-118.21533392840352,49.327090196135096],[-118.21517003117354,49.326944805582514],[-118.21500589813553,49.3268008190688],[-118.21482863515041,49.32666294494545],[-118.21464573101365,49.3265277771012],[-118.21446064800372,49.32639528514966],[-118.2142700656674,49.326264658632425],[-118.21405981514091,49.32614816405896],[-118.21379495334192,49.32610949422981],[-118.21351589541398,49.32610374896929],[-118.21323929970299,49.32609365412503],[-118.21297453395947,49.3260544187675],[-118.21272349348703,49.325985057327955],[-118.21247874682096,49.32589888477569],[-118.21224049139028,49.32580497827194],[-118.21201167037142,49.32570638454528],[-118.21180683338495,49.32558858334405],[-118.21160043159195,49.325469817425905],[-118.21139028494905,49.325352762952825],[-118.21115696897012,49.325260342605006],[-118.21088917016507,49.32521862783681],[-118.2106137332434,49.32522218136416],[-118.21033801101028,49.32522742473103],[-118.21006314962607,49.325237808881354],[-118.20979389972536,49.32526615370486],[-118.20953317113306,49.32532594272248],[-118.2092653084309,49.3253665459733],[-118.20899616176806,49.32540451156401],[-118.20872440242006,49.32543747082739],[-118.20848380343064,49.325521357589416],[-118.20824230827208,49.32561054797031],[-118.20799216024986,49.325679310948864],[-118.2077162568616,49.325695843027454],[-118.20744262720572,49.325709143744845],[-118.20716485587218,49.325706019100934],[-118.20689446383706,49.32567966131134],[-118.20663438538473,49.3256229309957],[-118.20637799807315,49.325554579376586],[-118.20611867755707,49.325493366563066],[-118.20584473868976,49.32547778601326],[-118.20557344301092,49.32544655173052],[-118.20530346924413,49.32540749024905],[-118.20504083774509,49.325355659329254],[-118.2047950226868,49.32527590046286],[-118.20455195384858,49.32519011971975],[-118.20432950328755,49.32508460855797],[-118.20410937620264,49.32497558010508],[-118.20390873315104,49.324853538776416],[-118.20374691664144,49.32470630413541],[-118.20360326532627,49.32455386547551],[-118.20366436577108,49.32438654480238],[-118.20373965806941,49.32411471870387],[-118.2000001512669,49.32463047829351],[-118.18933341097788,49.326100465794624],[-118.1762251979872,49.30000001717016],[-118.175737230922,49.29902540796294],[-118.17569194145977,49.2989358058856],[-118.16540456391843,49.27822338207022],[-118.14579657094164,49.26851215368962],[-118.14463921716062,49.26990706750609],[-118.14254308072411,49.272080368194665],[-118.13913726102034,49.27293710374553],[-118.13668944121684,49.27059839586214],[-118.13529606583178,49.268720752590255],[-118.13432327418326,49.26672610785234],[-118.13048111901557,49.26381881491182],[-118.12720281253264,49.26311783388512],[-118.12488358304651,49.262624816828314],[-118.12304676832144,49.26262412416746],[-118.11597527314764,49.26246184366676],[-118.11124738675049,49.25989715969977],[-118.10819071346855,49.257900651371514],[-118.10329386004193,49.25430881365661],[-118.09996718789043,49.250663706004836],[-118.09813799191485,49.249408803014155],[-118.09166366183841,49.24633084407623],[-118.0872129983995,49.24393749527125],[-118.08686301290854,49.2434815321999],[-118.08065229357041,49.23669584658453],[-118.07532015565108,49.2282563991896],[-118.0745341518095,49.22688258044863],[-118.07182312704211,49.22152078546667],[-118.06910757640998,49.21296860045687],[-118.0676304169782,49.20766052421663],[-118.06761809584974,49.2012123531235],[-118.06857318541172,49.19499439033517],[-118.06979829988651,49.19025800851403],[-118.07345442842538,49.18557720477841],[-118.07641517164886,49.182377395652054],[-118.07657968727808,49.17924000613398],[-118.0716079653498,49.17679061946379],[-118.06899974356207,49.176563333255],[-118.06786338474667,49.17667775832709],[-118.05992554876134,49.17536971065432],[-118.05242510410318,49.17400539681164],[-118.04823213025516,49.17200819882502],[-118.04657553386242,49.16921122191984],[-118.04570548776478,49.165848621761526],[-118.04465645787158,49.16128152695739],[-118.0432622226782,49.15888631012302],[-118.03924907547832,49.15649400896644],[-118.03602200200135,49.15369987811991],[-118.03819724724801,49.15050430014628],[-118.04682874430452,49.14878787059066],[-118.05528467304035,49.14752855422009],[-118.0618220979141,49.147411464846805],[-118.05676372333679,49.14484811153405],[-118.05266078471439,49.14153662261376],[-118.0526614118056,49.14097050502921],[-118.05083005663121,49.135261083315086],[-118.05055850622539,49.127445854500635],[-118.0492561750047,49.122028848790045],[-118.04854851482682,49.118606404645746],[-118.04907764982443,49.11592173122405],[-118.05194765222083,49.1126732719736],[-118.05167433444784,49.1085636699734],[-118.05098537101803,49.107362044801825],[-118.05159003897374,49.104395598951335],[-118.05358676737148,49.10085581062107],[-118.0522843546188,49.096807384049285],[-118.05228082030861,49.09578342551973],[-118.05080017409912,49.09213417434792],[-118.05227239427208,49.08916326916844],[-118.05322660115326,49.08608227731833],[-118.0511264012623,49.08163306066189],[-118.0486885160796,49.07706918959187],[-118.04790788280397,49.074558606720245],[-118.04825168661422,49.07239086184056],[-118.04982320754542,49.06947996533284],[-118.0508548699699,49.06690918811944],[-118.05077197929157,49.06337624639228],[-118.05138413792942,49.06229094962739],[-118.05076740196169,49.0585824416839],[-118.05155027849823,49.055615457815314],[-118.05389484924552,49.05276276932823],[-118.05310716655296,49.04916892897302],[-118.05066715938032,49.0463132642754],[-118.04831444814003,49.04294927806781],[-118.04717255740823,49.0382157059934],[-118.04716910531981,49.03462195705536],[-118.05100101936343,49.03102454721339],[-118.05508635931423,49.02891557769295],[-118.0568990196453,49.025145302463685],[-118.05611078811123,49.02252072687416],[-118.05506983352878,49.02041048308151],[-118.05507133741867,49.016301740808494],[-118.05801208658909,49.01276105440183],[-118.05957473874813,49.00996679300916],[-118.0598359047411,49.006426591699324],[-118.06000611445265,49.00317747837421],[-118.06408497957354,48.998081252488724],[-117.9986569285472,48.99990734331106],[-117.62727633132124,48.999890564756086],[-117.07487204636551,48.99986781483132],[-116.97481567321815,48.99986059582969],[-116.49633073928747,48.99978469188819],[-116.26295387040425,48.99991480562652],[-116.17432049715948,48.99984466993351],[-115.99720892073319,48.99979504571306],[-115.51682995905334,48.99971466212451],[-115.17530987731412,48.99965904969159],[-114.96202503304163,48.99969806582189],[-114.72194729441438,48.99955992583671],[-114.06922444892692,48.999586687200036],[-114.06219678666805,48.99956484583952],[-114.06396153388391,49.0020080528882],[-114.06435552814848,49.005149237662515],[-114.06369886257556,49.008283768980384],[-114.0622701780023,49.0112434175871],[-114.05742922882399,49.01486615789367],[-114.05292878284673,49.01872251030689],[-114.05062167856047,49.022075427629765],[-114.04961204961704,49.025606073843605],[-114.05130114223147,49.02904005333004],[-114.05419570997643,49.03317157543865],[-114.05457158268224,49.03745339923735],[-114.05587841934506,49.04328065826996],[-114.0586184681848,49.04672780581137],[-114.06325218707086,49.05143033313636],[-114.06869992992004,49.05437993021063],[-114.07283422155143,49.057425979036566],[-114.07521823052049,49.06080996239348],[-114.07906164996128,49.060259616532136],[-114.08334546317576,49.05982866005352],[-114.09341302272337,49.062342352334554],[-114.098259658626,49.06505302732824],[-114.10223363675605,49.06776263221087],[-114.10646126636647,49.071211731617524],[-114.11240443657415,49.075755206671026],[-114.1195117443275,49.078365368487205],[-114.12729906126091,49.0838883612203],[-114.13369939924418,49.087637419419686],[-114.14041027209646,49.09412247238436],[-114.14331608736055,49.098307873466304],[-114.14620687059993,49.10368801172735],[-114.14414115917914,49.10881285457648],[-114.14407352738603,49.113666359952695],[-114.14494639391512,49.119666335789674],[-114.14874571164597,49.12254232815193],[-114.15305314003214,49.12684626559581],[-114.15631747851548,49.131431185285656],[-114.1583589618431,49.13526619601823],[-114.158050378154,49.138522402073946],[-114.15444241326617,49.14078572678789],[-114.14916995935904,49.14304092739018],[-114.1434648817903,49.14551827755275],[-114.14613728597107,49.14776209511451],[-114.14908597819073,49.14914813119675],[-114.15255089964216,49.15133597535042],[-114.15522807840122,49.15334777024342],[-114.1585973206465,49.15650492303989],[-114.16187798170789,49.15898111818697],[-114.16645375624465,49.1632308141481],[-114.17277395273832,49.166802897890236],[-114.18672897104128,49.16899195805036],[-114.20118237364218,49.17249320074763],[-114.20725081883594,49.17543367972078],[-114.20921643433321,49.1790992543867],[-114.2146993272986,49.187864360338885],[-114.22132820266488,49.18949303932758],[-114.22614252165052,49.18843586129871],[-114.23097798908714,49.18571745996646],[-114.23666061121786,49.18517483473809],[-114.23971549704824,49.186162163773346],[-114.24277679529077,49.185600297139004],[-114.2452497456955,49.18298742332619],[-114.24923104028566,49.179525201088104],[-114.25430086757757,49.17909283364544],[-114.260492542429,49.180090932235814],[-114.26362123040909,49.18078851974135],[-114.26990405454382,49.18104771112839],[-114.2761185668791,49.180046495581074],[-114.28239494050268,49.18218758623218],[-114.28400065773988,49.18641730187],[-114.28545535926551,49.189110950400355],[-114.28928841311252,49.190101662418925],[-114.29278058631252,49.19062995651751],[-114.29878691475014,49.19225543812719],[-114.303759925418,49.19324554141565],[-114.30732951382014,49.19434583303414],[-114.30905494962529,49.196580977274266],[-114.31086252858319,49.19898588302944],[-114.3150541598652,49.20026568174145],[-114.3179343491709,49.19970355274713],[-114.32266146288447,49.19909118443438],[-114.32825678815604,49.19894530819028],[-114.33298483872608,49.19810849736025],[-114.33605675168366,49.19629342984374],[-114.3407103922215,49.1945408915215],[-114.3458596665505,49.19456218127111],[-114.34892234602366,49.19514262057372],[-114.35100269428096,49.19669591366345],[-114.3534215642882,49.199218982690866],[-114.35541183041842,49.20162453635223],[-114.36071288814428,49.203412201574],[-114.364557981419,49.20342840904176],[-114.37112086361047,49.20374258533289],[-114.3804512277488,49.20531472262849],[-114.38759741009927,49.207229100246806],[-114.39499031825082,49.21136494914213],[-114.39690016795868,49.21371334070594],[-114.3957413783877,49.21605070918197],[-114.3926585261502,49.21763919044478],[-114.39011222532166,49.21974487449321],[-114.39191866024755,49.22283471769019],[-114.39767132995951,49.22400203103651],[-114.39932530197709,49.225602954261404],[-114.39834662524933,49.22788688934104],[-114.39718076092137,49.23102342182884],[-114.39768762719204,49.23348052301573],[-114.3977432257073,49.23668001635984],[-114.39719183584204,49.23936379037876],[-114.39505503608166,49.2438123622494],[-114.39181168447935,49.244596145775574],[-114.38261450205675,49.245990520253365],[-114.3750758722235,49.248139194080075],[-114.37819188388158,49.25094608727723],[-114.38062398927754,49.25249660306134],[-114.38898049637388,49.25675418625684],[-114.3934441483626,49.2580846328066],[-114.39797796639266,49.25924801075099],[-114.40793342020682,49.26053803869297],[-114.41597884486248,49.260906538026596],[-114.42595584374689,49.26122797185257],[-114.43013968367208,49.26306691284792],[-114.43634546175714,49.263947510030896],[-114.44262791110296,49.265852451065186],[-114.44407391515253,49.27122758682679],[-114.44393775674678,49.276255115619094],[-114.4439985875106,49.279169562368786],[-114.44429756058031,49.28545593887525],[-114.4440990453839,49.28962382712083],[-114.44564744026756,49.29265656108506],[-114.44746795293808,49.294773454470594],[-114.45371174109545,49.302336809901064],[-114.45867967490895,49.30406529121786],[-114.4628684950697,49.30584810443441],[-114.46802373853174,49.3085527184007],[-114.47236996258204,49.311875605693764],[-114.47789457163238,49.31161208537382],[-114.48321810310242,49.31259487533156],[-114.48426283703171,49.31437150959275],[-114.48538198704604,49.31757421109643],[-114.48604854540584,49.32191661916259],[-114.48287316782384,49.324249692640336],[-114.47926999335904,49.32589891649174],[-114.47593536382827,49.3270873057272],[-114.47476941857472,49.33045759061767],[-114.47570079458083,49.334740772520085],[-114.47690928807253,49.33697615639576],[-114.4790687138455,49.34080871264216],[-114.48051712192124,49.34475514857833],[-114.48286839137181,49.34704759994574],[-114.48678295612342,49.350887103043604],[-114.49421535622096,49.353482960936745],[-114.49858863435131,49.35560827719091],[-114.50183686481873,49.35510398048941],[-114.51006949370021,49.35495306745481],[-114.51689539048596,49.356748138568236],[-114.51949488824927,49.359951691047115],[-114.52043326936223,49.36355636726724],[-114.5222528164098,49.36681534090382],[-114.52512471094138,49.3709960145889],[-114.52474575067828,49.37379402981447],[-114.52517727476055,49.37619431434127],[-114.52937365247074,49.37798046714815],[-114.53533458171502,49.378509224230044],[-114.5418361725784,49.37692881145384],[-114.54674207585346,49.37665647842222],[-114.55489376563072,49.3766737595286],[-114.5612786040471,49.37868907465054],[-114.56504254427433,49.38104069229696],[-114.56896616896763,49.38499148445407],[-114.57052229349092,49.38842843299834],[-114.57384315592593,49.390660030739824],[-114.58031947633597,49.39147739583221],[-114.58347511170268,49.39308649829769],[-114.58538130955307,49.39674716874743],[-114.58587861643386,49.40068986640712],[-114.58823159769216,49.40429475024814],[-114.58979258466407,49.40732766449601],[-114.58977662070346,49.410755909791284],[-114.59072182964148,49.41413412443696],[-114.59366042395007,49.420997734685756],[-114.59495539853319,49.42448643560298],[-114.59475721034214,49.428255858004356],[-114.59466079491102,49.430999143094176],[-114.59508437674486,49.432998857473244],[-114.59672799378228,49.43654664381534],[-114.59820325946603,49.44032319294119],[-114.59616472683274,49.44363462000921],[-114.5942981672971,49.445973532957964],[-114.59428554796567,49.44899683024922],[-114.59752109996556,49.45237780025958],[-114.59530911189766,49.45391553895098],[-114.59300929802559,49.456141821495535],[-114.59185573766621,49.45808235304019],[-114.5922732855384,49.461340406551436],[-114.59366802908373,49.46460067968508],[-114.5916293274574,49.46762661539892],[-114.58941365444326,49.46973588401736],[-114.5891394614571,49.471733242934405],[-114.5897363176986,49.4752244701717],[-114.58969140588604,49.481795752726434],[-114.5907096708323,49.48808206945487],[-114.59086470586428,49.49065584852323],[-114.58971052601076,49.4926509844988],[-114.58890096677803,49.49539363741572],[-114.58967158094764,49.49785264242765],[-114.58903899218039,49.50162295007374],[-114.58655042910212,49.504875148989335],[-114.58372906745886,49.507610638403484],[-114.57964796594183,49.513486974882746],[-114.57793813328378,49.517479076824955],[-114.57669153546303,49.52062306473871],[-114.57254872252437,49.52186799823083],[-114.56866828633358,49.5236288800655],[-114.5670609985181,49.526310099922696],[-114.56687709534532,49.5293395468895],[-114.56614385370122,49.533279126915815],[-114.56611160040542,49.53665278716184],[-114.56644487910084,49.53962771844387],[-114.56808863620459,49.54357287283683],[-114.56807373429177,49.546374081453465],[-114.56795857367183,49.54974398953834],[-114.56721821378669,49.554885864721044],[-114.57097596867385,49.55838345101991],[-114.5776499209777,49.56080001038411],[-114.58036208168595,49.56394931886514],[-114.58423432037313,49.5643618138781],[-114.58767401408684,49.561854575091296],[-114.59235119912591,49.560611810994686],[-114.5985270329164,49.55913895949132],[-114.60257242881954,49.5582943479368],[-114.60594088895448,49.55561734894026],[-114.60745271726418,49.55230312195532],[-114.6079133646503,49.54938810941469],[-114.6135552765259,49.547971484548576],[-114.61679489207515,49.54900872292941],[-114.62172741952044,49.54987831668163],[-114.62516011817884,49.548397546107985],[-114.62755823537589,49.546237895611945],[-114.63205481509202,49.544527488886864],[-114.63786060516841,49.54351434177812],[-114.64278354961782,49.543576050813115],[-114.6477124053187,49.54513497714936],[-114.65070036728774,49.546680023590675],[-114.65340378774039,49.549203118094674],[-114.65727090352122,49.551040978893674],[-114.66184014397436,49.552192768818465],[-114.66632730366351,49.55294272715263],[-114.67229649058802,49.55364096680924],[-114.67493610508109,49.55518501772062],[-114.68004226516804,49.55462344174218],[-114.68418667270808,49.55274645335496],[-114.68798352043656,49.550237144209795],[-114.69229653789016,49.547731787714575],[-114.69501575696567,49.55087829138175],[-114.69728863038102,49.55351144966054],[-114.70097053178017,49.55780366714882],[-114.70526779178296,49.56221310793046],[-114.70762548684073,49.56501706980489],[-114.71088015860343,49.567023656765144],[-114.71641357860061,49.57028795167845],[-114.71930696940673,49.57143636948443],[-114.71903531634725,49.57435088132961],[-114.72157574295267,49.57670365722678],[-114.72703091520651,49.57790957933809],[-114.73000715730022,49.5802569638763],[-114.7314995876584,49.5828324317208],[-114.73157361821686,49.588207582670925],[-114.73216450486794,49.5944389849064],[-114.73522292592364,49.59901304355431],[-114.7400628389843,49.6007379295399],[-114.74163790392494,49.60536865993883],[-114.7456790255966,49.60886036331156],[-114.74654211785085,49.612177654624254],[-114.74432610011286,49.61417799776381],[-114.74229248722023,49.61691475460496],[-114.73840663678165,49.62068473339923],[-114.73177932048812,49.62261688930226],[-114.72473116908868,49.62392451305952],[-114.71988354089859,49.624376957151114],[-114.7160029377433,49.625337982183794],[-114.71343722151342,49.62647736128869],[-114.71051374568049,49.630421816179364],[-114.70143174642482,49.63269014824668],[-114.69859379106387,49.63588714543522],[-114.69532810074539,49.63662265240455],[-114.69313474520108,49.63438801695512],[-114.68732612381618,49.632208463961454],[-114.68405648809149,49.634542227097675],[-114.67963413656352,49.63756597093496],[-114.67503153825658,49.63990157419785],[-114.66919307177204,49.643203561873506],[-114.66611269307049,49.64251129286468],[-114.66383826065208,49.63953510926188],[-114.65969362073243,49.63900878600006],[-114.65827140150951,49.64095166697853],[-114.65737720801283,49.643984167918966],[-114.65595125762883,49.64723757045192],[-114.65441910656388,49.652889812879025],[-114.65269632419029,49.66026457757199],[-114.6534712485344,49.66357541613002],[-114.65601061218906,49.66656010533592],[-114.65917287136482,49.66856456079543],[-114.66303182407746,49.67199897129735],[-114.66302344142979,49.674401710774355],[-114.66098486408347,49.67616779360187],[-114.66193942239842,49.679944258398635],[-114.66314810486253,49.683376624864586],[-114.66313960217107,49.685892634419616],[-114.66418383084718,49.688238307828115],[-114.66557880278795,49.69069759429684],[-114.66830569984506,49.69304988516056],[-114.67031774783047,49.69585103781313],[-114.66605325369588,49.70007389853054],[-114.66065382560818,49.703720981613685],[-114.65250329156656,49.70741861055448],[-114.64533841158452,49.709916369327615],[-114.64055650230507,49.712764244386186],[-114.63911482499103,49.71556025406814],[-114.63283096742022,49.71828884598896],[-114.63105100519196,49.72119958196586],[-114.62988981129315,49.72376874935191],[-114.62916633715437,49.72565331060854],[-114.62915420119917,49.72856986999087],[-114.62834527035544,49.73073985009334],[-114.62691804186271,49.73291033172524],[-114.62813105989915,49.7351959981791],[-114.63120819656405,49.73817458993737],[-114.63410784272511,49.73984009678149],[-114.63683688611646,49.74185201980338],[-114.63778041519123,49.745051001122754],[-114.63741802678817,49.74768410652363],[-114.63863193227246,49.74968831548326],[-114.6414462854892,49.75209331274787],[-114.64433669537033,49.75667219098621],[-114.64661797602392,49.75862532068415],[-114.65146832093063,49.761718252990605],[-114.65321223847552,49.76475704052192],[-114.64948358284943,49.76657436894169],[-114.646825040482,49.76759503832785],[-114.6444276040432,49.76976530677991],[-114.64158078887559,49.772157731621796],[-114.63802661177122,49.775523018789514],[-114.63560919295014,49.77928878403964],[-114.63400013957815,49.781225591930145],[-114.63141744209109,49.78384996386514],[-114.63043941537225,49.78607388244183],[-114.63306238779431,49.790714058909025],[-114.63435895014302,49.79351650803214],[-114.6358441433835,49.79837820562144],[-114.63660011130291,49.80261278481219],[-114.63788398043475,49.80895693942755],[-114.63838759001976,49.813020338367835],[-114.64066118467946,49.817659739489564],[-114.64055506741764,49.819603793746616],[-114.63725161743726,49.82302055326447],[-114.63598808501476,49.82604580360633],[-114.63640898198284,49.829820889233275],[-114.63860382408741,49.8333707214998],[-114.6407035291741,49.836120236867124],[-114.64413677083505,49.83978757187431],[-114.64632214467437,49.84219686161686],[-114.64755068939508,49.84505478932564],[-114.64913355958689,49.84711569096877],[-114.65282286123012,49.850384043096454],[-114.65510678999864,49.85296615024192],[-114.65607040197692,49.8551966789695],[-114.65674890223157,49.858455716002425],[-114.66008066168034,49.863724335610186],[-114.66335778412216,49.86453405590361],[-114.66581123495948,49.86785246098174],[-114.66666905303777,49.87214560705465],[-114.66752972567245,49.876089466318774],[-114.66909359988672,49.880152206105244],[-114.67129909856482,49.88198538777265],[-114.6743881878074,49.884513510192335],[-114.67915228200357,49.88806770991799],[-114.68126059571546,49.889615516978886],[-114.68187308427721,49.892018375328526],[-114.68432598052813,49.896197153034365],[-114.68492009114806,49.90036950393603],[-114.684460475034,49.902945805011946],[-114.68373357990093,49.90591492137327],[-114.68306768428813,49.912084910774254],[-114.68303936991435,49.916717171517796],[-114.68381897148325,49.91992110608439],[-114.68520036278409,49.9245566261375],[-114.6852566903488,49.92964158218051],[-114.68488040280816,49.9324479104775],[-114.68495575899911,49.935987690321774],[-114.68848244406337,49.939888246116375],[-114.69059196880511,49.942233047188616],[-114.68809148509489,49.94382741523247],[-114.6839924276601,49.9470187996904],[-114.6823753067431,49.94987640034749],[-114.68137975011912,49.952504962311416],[-114.67922301727278,49.95678573608282],[-114.67768585243392,49.96118389870605],[-114.6766881776547,49.96460908620557],[-114.67374752603565,49.966262743849015],[-114.66878202591046,49.966133919417274],[-114.66123650059353,49.96548328421527],[-114.65821584205338,49.965988109455566],[-114.6518984244562,49.968436197612895],[-114.65028166969941,49.970773870309976],[-114.64822090350633,49.97465619241561],[-114.64685606239811,49.977564285119925],[-114.64746616719644,49.980368171275146],[-114.64806108166714,49.983739670158904],[-114.64830077240879,49.98740140041283],[-114.64721833435277,49.98991430085658],[-114.64797526777879,49.99517420599087],[-114.65018610045247,49.99655450310688],[-114.6536431044905,49.9971914562258],[-114.66195735463856,49.999700249494076],[-114.66098694457497,50.00244457614901],[-114.65939644557179,50.00495640767986],[-114.65701148245934,50.00843790577465],[-114.65435752762447,50.011694422963444],[-114.65311916861141,50.01415181369716],[-114.65260148801319,50.017003584708156],[-114.65295147414038,50.017861948781544],[-114.65252122889693,50.01963283344111],[-114.65217679889226,50.021455912866266],[-114.65218094530857,50.024368286584334],[-114.65228775154569,50.02636471580042],[-114.65263592827863,50.02790646351705],[-114.65408195828873,50.03104522608875],[-114.65559115479914,50.032411847853794],[-114.65604223324014,50.03281169394923],[-114.65782128545334,50.03394853290216],[-114.65951385091392,50.03509226845173],[-114.65969253964178,50.036916250429364],[-114.6588983262201,50.03771466736128],[-114.65801639954411,50.03897521972462],[-114.65802867170108,50.03999701083695],[-114.65918507934683,50.04074228742651],[-114.6602444926281,50.041423380988434],[-114.66292751003336,50.04284820921527],[-114.66443853162806,50.04370257330546],[-114.66594748279061,50.04507291693292],[-114.66775020523048,50.04786647049442],[-114.66712576726383,50.04849533632744],[-114.66606313528285,50.04906669406355],[-114.66304595733752,50.049986868094614],[-114.66063854462465,50.05123847290941],[-114.65949899008478,50.05329921146698],[-114.65906538008686,50.056322963147565],[-114.6596076815393,50.05951650923464],[-114.66104138046725,50.0623718904748],[-114.66380839490812,50.0647636777783],[-114.6653213081623,50.065049563848504],[-114.6686069095891,50.064360323419535],[-114.6729673921913,50.06378491589116],[-114.67429591644765,50.064411209597594],[-114.67573708706375,50.06554772992826],[-114.67875891397334,50.0674908561344],[-114.68036972542676,50.06845936824849],[-114.68518579423275,50.072391953895526],[-114.68599964350615,50.07507431640821],[-114.6863628692672,50.07729619004109],[-114.68886141201382,50.08009003254264],[-114.68914246010395,50.08071956829788],[-114.69048097250551,50.083342976082186],[-114.69237017313382,50.08648095774164],[-114.69468767294651,50.08853134134665],[-114.69753128133505,50.08944223559779],[-114.69825225271477,50.08984184699126],[-114.70004348871467,50.09331771043868],[-114.70317804581326,50.097479991063615],[-114.70666959659391,50.1006137691717],[-114.70925690156572,50.10226991994009],[-114.7115766750961,50.10375094262668],[-114.71657104295758,50.10659808803504],[-114.71898905419427,50.108934059931066],[-114.72061215139915,50.11224166348383],[-114.7217726448932,50.112867979400626],[-114.72552174112234,50.115943792644565],[-114.72802433234378,50.11834165851622],[-114.72752083816235,50.12313482303626],[-114.725830090645,50.12519593343772],[-114.72539003700075,50.12553970943887],[-114.72075318300104,50.14283853125455],[-114.72076368065196,50.14455287914776],[-114.72860300848583,50.144996548621435],[-114.72372992036607,50.150315719230505],[-114.7216951434406,50.154257125815256],[-114.72180147071954,50.15796826210981],[-114.72351003904345,50.16235847270776],[-114.72729766779462,50.1694915333341],[-114.72587660269244,50.17165788389118],[-114.72340073019461,50.17543204869566],[-114.72216244287809,50.1773765495845],[-114.71958565570712,50.18183440861308],[-114.71872524403179,50.18679986757432],[-114.72006779140544,50.189652330946494],[-114.72302725604075,50.19301681260467],[-114.72615802824146,50.196038663903316],[-114.72867811558854,50.19980139021847],[-114.72949569654315,50.202657537679826],[-114.7305811823711,50.20722191092115],[-114.73122845595468,50.210702782249605],[-114.7328312632,50.21178380665741],[-114.73910149409758,50.214915393561505],[-114.73750551549806,50.21885541208047],[-114.74046740817033,50.22256285565975],[-114.74414067564265,50.225755031544466],[-114.74540354476844,50.2268360871785],[-114.75211501585738,50.23099669481994],[-114.75676976095639,50.23373270255693],[-114.75733202492789,50.2390407013198],[-114.75975822800271,50.24206134458361],[-114.76235480323326,50.24502655439862],[-114.75841606439431,50.2610167299473],[-114.75780337957679,50.262842508292614],[-114.75522630956182,50.26695551778223],[-114.7521230139315,50.26981871331019],[-114.74802390649329,50.27308193572089],[-114.74749600823186,50.275475024775055],[-114.74975116091757,50.27907081178471],[-114.75040033292704,50.283007987598964],[-114.74951395980644,50.28592460171124],[-114.74784348616622,50.291064049850775],[-114.75055098792545,50.29802419539041],[-114.75350834600928,50.29910401520135],[-114.7618286470553,50.30034548510193],[-114.76522778750254,50.300569752040474],[-114.76906866271838,50.3001645215112],[-114.77541222884896,50.299359501718904],[-114.7773879310507,50.30146836614349],[-114.77758523508432,50.30500495478969],[-114.77742585594666,50.30888783577781],[-114.77725210442169,50.3117465249279],[-114.77825849986314,50.316428349514744],[-114.78114567886205,50.31927638490184],[-114.78571202255375,50.32223733371849],[-114.78750441797831,50.32297791354263],[-114.79046356642799,50.324572516763006],[-114.79396373120036,50.326565239497874],[-114.79487330646542,50.32964758364441],[-114.79290966036291,50.33027577815637],[-114.7891655607271,50.33142453114785],[-114.77898614628022,50.33537820809151],[-114.76721922995063,50.34384817742708],[-114.76330027273168,50.347677276015226],[-114.7628696576982,50.35076159279198],[-114.76440386046342,50.35407199260268],[-114.76656531669423,50.35720932094118],[-114.76998118183825,50.359716078649384],[-114.77355552863533,50.36079420318712],[-114.77892484084724,50.36078723527329],[-114.78197401993427,50.35952496212639],[-114.78250066999529,50.359411539402984],[-114.78473682880218,50.35798368356196],[-114.78804206793708,50.356777564903155],[-114.79071958787516,50.3572857903423],[-114.7999877819976,50.36549650225342],[-114.80313560523369,50.36794506365738],[-114.80832077772499,50.368050333087275],[-114.81343446736304,50.36941290959158],[-114.81202468186102,50.3725536896766],[-114.80953136274032,50.37507055392826],[-114.80829047663481,50.37827458233262],[-114.80847602574212,50.38032779111782],[-114.8103710270494,50.381295372950945],[-114.81215236309677,50.38169115499431],[-114.81582937169605,50.38242432291353],[-114.81799423642013,50.38379569348665],[-114.81899332911428,50.38630124453664],[-114.81907759289206,50.38687737945698],[-114.82070370098472,50.38972534780624],[-114.82232820698408,50.39023747690898],[-114.82554863468033,50.38954755766528],[-114.82965313811412,50.38845322939543],[-114.83270313030319,50.38930456002323],[-114.84319230170293,50.39077242119108],[-114.84866656630707,50.39201546154539],[-114.85565186456768,50.39394308614614],[-114.85746263377116,50.39542713750585],[-114.85873355631693,50.397994861832636],[-114.85982152318228,50.401127422717174],[-114.86019287512777,50.403359983814205],[-114.85725928770215,50.40536001254036],[-114.85646198799978,50.40696237754387],[-114.85727569288171,50.408618821971196],[-114.85792030069656,50.41152901548964],[-114.85812309638807,50.41518481205381],[-114.85787048689204,50.41803534227993],[-114.85787050343191,50.41923913174333],[-114.85788721658015,50.42129299066599],[-114.85853220710754,50.4241451515374],[-114.8624854235274,50.426248480308075],[-114.86852192699074,50.42989468575541],[-114.8708822116418,50.43565912811344],[-114.8725122258837,50.438625453810246],[-114.8729703121094,50.43965145668905],[-114.8740392192339,50.43925178603783],[-114.8782473217021,50.437981641069975],[-114.88433706165404,50.43671210966474],[-114.88720431860683,50.43687889946617],[-114.89567412474509,50.4425707000997],[-114.90477509852269,50.44883121950454],[-114.9108253555245,50.455901182445345],[-114.91363005469651,50.459090535403014],[-114.91823608518764,50.463648712182895],[-114.92212625229028,50.467182882736665],[-114.92493347679657,50.470829095806536],[-114.92793241414846,50.47716296630853],[-114.93247798339837,50.48451725511569],[-114.93535366753581,50.48639330621189],[-114.93860109521687,50.48832533124471],[-114.94249281849002,50.49111661651714],[-114.94492759447887,50.493855907818386],[-114.94547227775932,50.49396228530036],[-114.94637621571063,50.495734469516776],[-114.94765217822287,50.497618982445005],[-114.94828489832453,50.49869826192765],[-114.95270610855245,50.501027645643426],[-114.9555991182392,50.50353451633879],[-114.95595789266638,50.504278744817626],[-114.95814061667319,50.5075243621012],[-114.95897730625548,50.510208191376144],[-114.960783294894,50.512205187824414],[-114.96214847650293,50.51431091437677],[-114.9638715610755,50.51687647490623],[-114.9661578304269,50.52138548655667],[-114.97369642580051,50.531704088264064],[-114.97651392069481,50.53591957399529],[-114.9810287581642,50.53898978835083],[-114.98655216021454,50.54457944217978],[-115.00067531583014,50.55767588578015],[-115.00532488484431,50.56474327249285],[-115.00773181475148,50.57250542128957],[-115.01031086268989,50.57997817086531],[-115.01329895208798,50.582769836696194],[-115.01619426595148,50.58384722677181],[-115.01879906842898,50.58383858028176],[-115.02265900990903,50.58302887491788],[-115.02586947306985,50.58096278976249],[-115.0269377974505,50.57969934452008],[-115.03052022275101,50.57786333356086],[-115.03500688320285,50.57653586366563],[-115.04048308508823,50.575602537730155],[-115.04461727002902,50.575359822030926],[-115.04747351375721,50.57420655630115],[-115.04971128656362,50.57242646566344],[-115.06304731967425,50.5859196690511],[-115.06427253119139,50.5859966589974],[-115.06853035847412,50.58490092255092],[-115.07053432696229,50.58518447661588],[-115.07308561041886,50.58387424451803],[-115.07867502197162,50.581131888840886],[-115.08763536114891,50.57775531833223],[-115.09082797739387,50.57709283580118],[-115.09419536557668,50.576885049430345],[-115.09767103056848,50.575999186909506],[-115.09970144106553,50.57541150376616],[-115.10366283639297,50.574935935794564],[-115.10726927703718,50.57386382815934],[-115.11118401049256,50.572288484229816],[-115.11356283507286,50.57161845991334],[-115.11545516688402,50.57030496780322],[-115.11603981278986,50.56948928445416],[-115.12163682492258,50.569982309137565],[-115.12788941760216,50.57065948054931],[-115.13276197669569,50.57183967812583],[-115.13532575347696,50.57299306951647],[-115.137977017878,50.57319933706367],[-115.1419720146088,50.57134683412084],[-115.14650936654407,50.570142955206634],[-115.1503032473535,50.571175403742934],[-115.15252348566962,50.5719202011417],[-115.15606643413135,50.57157331748972],[-115.16053641575652,50.57023275009456],[-115.16523392905978,50.56865982781675],[-115.16840161559013,50.5678547821405],[-115.17172522066768,50.56746718182916],[-115.17275110879733,50.56541570965415],[-115.17419019641025,50.562307122247],[-115.17567376044666,50.558896094762815],[-115.17908012730382,50.55680639601186],[-115.18299268900073,50.55545705882544],[-115.1867235345084,50.55538909711365],[-115.18868144330769,50.55444122021241],[-115.18871643535816,50.55228863751586],[-115.18762252859014,50.54889775602472],[-115.18542271647831,50.54659552151951],[-115.18337842715258,50.544536836942584],[-115.1827509800698,50.54288002716109],[-115.18444068256966,50.54055949527654],[-115.1846260854912,50.53914370158975],[-115.18714410391695,50.53764857549877],[-115.1881075648124,50.53573123784264],[-115.1889184834836,50.5347397637681],[-115.19100351495824,50.53414809208112],[-115.19547145242514,50.53344489606164],[-115.1982940255298,50.533050298230826],[-115.20038445011096,50.53219879931443],[-115.20246936834637,50.53101494042096],[-115.2040955531525,50.52942428014238],[-115.2050314133851,50.527972290213214],[-115.20477135610909,50.52786673530255],[-115.20486079992514,50.52785106290326],[-115.20492181521891,50.527834872129624],[-115.20499691072747,50.52781949547299],[-115.20546223381584,50.527725269077685],[-115.20547698492751,50.52772330369147],[-115.20594248714278,50.52780578094077],[-115.20614168538171,50.52798604166045],[-115.20632921380098,50.52815550673976],[-115.20649122599335,50.528194081525115],[-115.20655855255734,50.52821089429304],[-115.20658604470778,50.52821529279419],[-115.206626147067,50.52822659700335],[-115.20701562444253,50.5283283280736],[-115.20705050216823,50.5283612819066],[-115.20709892465173,50.528397269646206],[-115.20739872848223,50.52863395425503],[-115.20741160465737,50.52863975873962],[-115.20772334940295,50.528886136386134],[-115.20792135305929,50.52907139320067],[-115.20811509143421,50.52933349521672],[-115.2081234141935,50.52935816993086],[-115.20815601560487,50.52940056297383],[-115.20816875923578,50.52940691793457],[-115.20818969067712,50.529438507049974],[-115.2083730991966,50.52968426337771],[-115.2084067746636,50.529722207375016],[-115.20842891071726,50.52974880578867],[-115.20843937660482,50.529764600315964],[-115.20844997750102,50.52977983539244],[-115.2086740290238,50.5300346745959],[-115.2087996021593,50.530165123263544],[-115.20890292437177,50.53032861814504],[-115.20903548320845,50.530489291215915],[-115.20905748715673,50.530516440049034],[-115.20920493186394,50.5306745964555],[-115.20932084541049,50.53078591993945],[-115.20935425465485,50.530824973618216],[-115.20936592534095,50.530835777389285],[-115.20938806465038,50.53086236669562],[-115.20947942912775,50.53095709086141],[-115.2096842590401,50.531054948962456],[-115.20973469636135,50.531082605845015],[-115.20976098638631,50.53109199419632],[-115.20978620508346,50.53110582262261],[-115.20984951972738,50.53113928364177],[-115.21001886275566,50.53138422321101],[-115.21011360009904,50.531524152237836],[-115.21020721842636,50.53190542115673],[-115.21021784211068,50.53197974112903],[-115.21033380519411,50.53220923355905],[-115.21035246184931,50.532250261769725],[-115.21037366396907,50.53228074034415],[-115.21051255081787,50.53247440643099],[-115.21055468768924,50.53253647351708],[-115.2105862223917,50.53258330576327],[-115.21059802881156,50.532593549931626],[-115.21060514939768,50.53262321501249],[-115.21079168749557,50.5329152817617],[-115.2108127552438,50.532946319677784],[-115.21120023226827,50.533293255726605],[-115.21125605230723,50.53335779643369],[-115.2115183712261,50.533631701384884],[-115.21155191731648,50.53367020369706],[-115.2115855962959,50.533708155426815],[-115.21181530891606,50.5339396766405],[-115.21184899046108,50.533977619397874],[-115.2118828048918,50.53401501157263],[-115.21196491903473,50.534088939676074],[-115.21216189180632,50.53427862784561],[-115.2125263114623,50.53460285071138],[-115.21265579029784,50.53471720341704],[-115.21285370703079,50.53490300069834],[-115.21299494450288,50.53490942709284],[-115.21306456069847,50.53491679614901],[-115.21313404195824,50.53492472461322],[-115.21338553924633,50.534947610043154],[-115.21347852915363,50.53503566142803],[-115.21351207796384,50.53507416308282],[-115.2135354256782,50.535095760758416],[-115.21354575964328,50.53511211415383],[-115.21370691945124,50.53527272847632],[-115.21366257723285,50.53539735701981],[-115.21361636254497,50.535529746811164],[-115.2139352834522,50.53574669379059],[-115.21427038056359,50.5358373940534],[-115.21432417401334,50.535851168944376],[-115.21455811343638,50.53588766905618],[-115.21478134362576,50.53596856970497],[-115.2148477467399,50.53598926682389],[-115.21491508806734,50.53600607437152],[-115.21528387512889,50.536134713270265],[-115.21535014592573,50.536155960658185],[-115.215390390342,50.53616671102333],[-115.21541668451121,50.536176097979144],[-115.21585294933193,50.53632099158734],[-115.21591814981184,50.53634667874319],[-115.2165131811888,50.53666217947622],[-115.21689247910834,50.53686569131786],[-115.21694292735702,50.53689334473437],[-115.21696828427997,50.536906620858986],[-115.21699364335937,50.53691988809727],[-115.21709494062779,50.536973534206275],[-115.21732343267335,50.53709186435643],[-115.21738783205723,50.53712088071736],[-115.21771953626963,50.53710728080166],[-115.21793950250802,50.53708332590872],[-115.21795332036758,50.5370852395612],[-115.21861926956038,50.537284375086614],[-115.21864747136912,50.5373450757485],[-115.21881287077582,50.537606650558494],[-115.21883408113801,50.537637127320195],[-115.21885194482829,50.537681483931934],[-115.21886981069493,50.537725831658115],[-115.21899309233666,50.53798442722565],[-115.21899700537344,50.5380274208507],[-115.21903016072407,50.538067581309434],[-115.21909409396436,50.53821698602177],[-115.2191859297445,50.53836911651154],[-115.21933845546786,50.53862488716266],[-115.21958700171544,50.53883777323802],[-115.21988399449182,50.53908664040383],[-115.21993270852298,50.539121503168246],[-115.21994518679057,50.53912897561779],[-115.2199823582689,50.53915248523122],[-115.22024365647954,50.539371732110155],[-115.22027828480086,50.53940579138285],[-115.2203151890565,50.53943041091127],[-115.22042456722613,50.53974672611897],[-115.22050690893306,50.539938265878895],[-115.22063944003172,50.54015855831629],[-115.22076397002397,50.54023434749166],[-115.22088488654842,50.540325126426865],[-115.22114452038768,50.54043285323027],[-115.22119470763036,50.54046161463254],[-115.22165006872804,50.5405867567396],[-115.22171741946354,50.540603560073826],[-115.2217836998664,50.54062480351205],[-115.22185118343533,50.540641056186516],[-115.22208174966553,50.540810139662646],[-115.22211678293529,50.54084252880792],[-115.22223466509209,50.54100515163928],[-115.22241919224594,50.54112827230648],[-115.22247377567473,50.54131652580825],[-115.22250536885464,50.54142242971084],[-115.22261415617754,50.54162279327151],[-115.22263202516922,50.54166714906029],[-115.22265096666001,50.541707055815976],[-115.22270658401214,50.54183178453815],[-115.22285113204265,50.54194304668643],[-115.22288482886314,50.541980985730035],[-115.22293341348723,50.54201640651566],[-115.2232190362979,50.54225335157708],[-115.22323138326324,50.54226137420799],[-115.22365502195146,50.542458967343855],[-115.22395114143892,50.54253389079066],[-115.22442315910871,50.54264928315318],[-115.22449158412604,50.542661644605694],[-115.2249098405059,50.542822349346665],[-115.224975323087,50.542846920947646],[-115.22502792322656,50.542865690167304],[-115.22544484795472,50.54303193418014],[-115.22570637875198,50.54313188856705],[-115.22615834441619,50.543330526636986],[-115.22623657854243,50.54336145026929],[-115.22655771249222,50.54351039436616],[-115.22662319697194,50.543534964976295],[-115.22664829513154,50.5435493399497],[-115.22667459595434,50.54355872415909],[-115.2270235059833,50.543710941394934],[-115.22708792107437,50.543739951904186],[-115.22715233624838,50.54376896237508],[-115.2272049383713,50.54378773054415],[-115.22745314798286,50.54400226720528],[-115.22758403121983,50.544111042109094],[-115.22768954775297,50.544384364257475],[-115.22774638705211,50.54450409040837],[-115.22788761359892,50.544807028769696],[-115.22790656106483,50.544846934477356],[-115.22791596740798,50.544867167060595],[-115.22792430388049,50.54489183982371],[-115.22802371723645,50.54507196466782],[-115.22804752229501,50.54515098255388],[-115.22807962108408,50.545195580146],[-115.22809843407983,50.54523604526481],[-115.22822584653886,50.5455370616739],[-115.22828295404317,50.545655686217636],[-115.22853252085784,50.54604247260595],[-115.2286180743841,50.54616159139769],[-115.22867402711266,50.54634429047549],[-115.22867781745366,50.546387833903424],[-115.22868749192487,50.54640695633845],[-115.22869596176494,50.54643107841505],[-115.22874977546658,50.54662265775293],[-115.22873172297453,50.546697581338705],[-115.22873497847942,50.54674334483533],[-115.22872962926053,50.546765545728924],[-115.2287245474977,50.54678663657701],[-115.22867716364047,50.5471018419236],[-115.22861702964899,50.54741068577273],[-115.22856340318393,50.547633245014374],[-115.22855604667517,50.54766377563861],[-115.2286811507288,50.54791513761213],[-115.22870477983808,50.54793562172114],[-115.22872359453959,50.54797608659908],[-115.22874240927487,50.54801655147193],[-115.22887633959881,50.548231290589285],[-115.22889555684664,50.548270085918936],[-115.22891330199627,50.54831499092013],[-115.2289215048503,50.548340222966466],[-115.2289322497064,50.548354905162775],[-115.22902819769946,50.5485494589045],[-115.22908812057211,50.54865642270958],[-115.22918308826407,50.548795773073756],[-115.22937703515328,50.54905783172177],[-115.22941052006024,50.54915597124239],[-115.22948565098436,50.549318380586385],[-115.22948039574715,50.549458749126714],[-115.22948365221212,50.54950451244739],[-115.22947723319811,50.54953115347321],[-115.2294869086837,50.54955027576551],[-115.22948245580302,50.5496873141387],[-115.22933185305226,50.54977885297035],[-115.22928116200241,50.549811399463316],[-115.22923073834635,50.54984283589025],[-115.22912868827846,50.54991069941801],[-115.22890180339327,50.55008170471778],[-115.22879868023107,50.550154016965266],[-115.22836140112042,50.55048683755995],[-115.22829381104066,50.55053023225153],[-115.2281085629704,50.55076551484729],[-115.22808537795927,50.550802453807705],[-115.22806727758027,50.550818293167566],[-115.22804743735522,50.55084135220814],[-115.2279251855074,50.55099302680816],[-115.22787480443706,50.551083546296965],[-115.22784921149292,50.55113047552421],[-115.22783231362041,50.55114132411484],[-115.22782923833412,50.55115408509524],[-115.22781020036915,50.551173813974515],[-115.22762686426697,50.551460409025104],[-115.22757728462808,50.55154759822106],[-115.2273741929034,50.55197541896919],[-115.22727070415026,50.55228628426913],[-115.22726013778274,50.55233012615789],[-115.22725398458172,50.55235565693018],[-115.22724970408994,50.55237341746675],[-115.2271958861588,50.55253745054721],[-115.22711705539504,50.5526274658041],[-115.22707897757911,50.552666923244416],[-115.22704210254706,50.552701389963346],[-115.2268851094433,50.552878640637466],[-115.22676628285657,50.55295679959152],[-115.22666488982394,50.55302188996314],[-115.22630764667008,50.55331877932751],[-115.22624972529678,50.55338129510615],[-115.22597148668113,50.55364670169734],[-115.22593461214015,50.55368115912781],[-115.22589666511357,50.55372006553862],[-115.22570911805974,50.55396477402379],[-115.22568499397784,50.554005592996546],[-115.22566260805115,50.55403920122371],[-115.22564677888204,50.55404560933426],[-115.22560040354826,50.55411947704714],[-115.22584407358416,50.55429379268775],[-115.22591764289851,50.5543441460523],[-115.22641840880493,50.55469636620025],[-115.2267473373959,50.554931834344046],[-115.22679687440679,50.55496337222231],[-115.22680829011344,50.554975274993026],[-115.22683232233945,50.554994098720435],[-115.22701491379044,50.55512553043997],[-115.22704960311891,50.555218670374906],[-115.22708144054216,50.55526437773734],[-115.22709191889821,50.5552801700169],[-115.22708870827334,50.555293490367184],[-115.22710025684655,50.55530484252877],[-115.22722675361895,50.555609745931285],[-115.22738161219162,50.55597478669052],[-115.22739984973391,50.55613618874983],[-115.22743333573283,50.55641212862279],[-115.22743873102421,50.55644901138834],[-115.22744198592024,50.55649477437933],[-115.22744818388055,50.55652832705561],[-115.227459732861,50.556539679162775],[-115.22749161421913,50.556822279050856],[-115.2274986149155,50.55685250162686],[-115.22751043154285,50.55686274369618],[-115.22751649475906,50.55689685580777],[-115.22767278810154,50.55719670272034],[-115.22778877019385,50.55742672933864],[-115.2279351230546,50.55770856346741],[-115.22807759729167,50.558006497151965],[-115.22811023821849,50.55804888286165],[-115.22810702769742,50.55806220319651],[-115.22812812127962,50.55809322799952],[-115.22824638317991,50.55831381421518],[-115.22825177936491,50.55835069685602],[-115.22825450014075,50.558398679772964],[-115.2282502194692,50.558416440217435],[-115.22825882617464,50.55844000252063],[-115.22831167306836,50.558754185723544],[-115.22838240615971,50.55929052268423],[-115.22855414189743,50.559585628509325],[-115.22857202386544,50.55962998237319],[-115.22858036342986,50.559654654643644],[-115.22859097817364,50.55966988724407],[-115.22874295952329,50.559928417864576],[-115.22876191410853,50.55996832269177],[-115.228769986301,50.55999410496476],[-115.22877966373402,50.560013227074954],[-115.22895153752833,50.560307781454284],[-115.22909090467705,50.560559390728216],[-115.22927415374251,50.56080676384569],[-115.2294923243081,50.56108708206402],[-115.22952510363251,50.56112890774618],[-115.22953317646989,50.561154689927335],[-115.22955881828939,50.56116685276151],[-115.22956608857444,50.561195965020595],[-115.22982136306325,50.56138162227023],[-115.22987104415097,50.56141259907846],[-115.22990556186957,50.561447213892954],[-115.23023348794702,50.56168710990615],[-115.23038026051537,50.56178947047509],[-115.23077642897105,50.562101915241435],[-115.23091865450553,50.56222315441687],[-115.2309660276373,50.56238228678641],[-115.23098418272961,50.5624255212027],[-115.2309882441563,50.562467953670755],[-115.231067243914,50.56273299356531],[-115.23108432925237,50.56278066806142],[-115.23108111927363,50.562793988405446],[-115.2314152632355,50.56306743275016],[-115.23156904526327,50.56320002255548],[-115.23155030197714,50.563574248784036],[-115.23153244601242,50.56388550250476],[-115.23152174625521,50.563929903633884],[-115.23151746634642,50.56394766408464],[-115.23152821577264,50.56396234575149],[-115.23152500584095,50.563975666089256],[-115.23150268514783,50.56424615678041],[-115.23150621223384,50.564290809191014],[-115.23149551235446,50.564335210295816],[-115.23147671839088,50.56465035325497],[-115.2314631889556,50.56500293773053],[-115.23144723792241,50.56518770474032],[-115.2314397478192,50.56521878547617],[-115.23147152761557,50.56550193181498],[-115.23147438493662,50.565549363663266],[-115.23149267447619,50.565592047257496],[-115.23151263496362,50.565864951921874],[-115.23151682988144,50.56590683362077],[-115.23152864979853,50.565917075150615],[-115.231520892124,50.56594926588991],[-115.23153169169653,50.56602303016745],[-115.23169294132659,50.56624325445752],[-115.23186601267373,50.5664737199421],[-115.23217288751745,50.56668257612554],[-115.2322835500174,50.566756988711596],[-115.23247093595107,50.5669280711633],[-115.23251741512884,50.566972366897716],[-115.2325532787185,50.56700142164474],[-115.2326009606705,50.56704072666134],[-115.23288241049873,50.56717723499591],[-115.23293397243819,50.567200440029254],[-115.23298339460898,50.56723252525607],[-115.23304878442289,50.56725764194755],[-115.23336302444473,50.56743597334472],[-115.23362784387126,50.567582218912264],[-115.2339556996572,50.56782266162246],[-115.23428369373953,50.56806254384184],[-115.2343182220872,50.568097148127706],[-115.23436684388146,50.56813256279288],[-115.23467026273353,50.56835585092731],[-115.23469698194985,50.56836356347167],[-115.2347336482389,50.56838929625783],[-115.2347453368884,50.56840008799002],[-115.23509131181422,50.56862467813269],[-115.23545919401714,50.568876968932535],[-115.23565114916535,50.56902916618578],[-115.23583114907676,50.56917168150465],[-115.23603909390653,50.56919820262152],[-115.23610983653009,50.56920111681597],[-115.23613615430718,50.5692104984952],[-115.23617830510194,50.56921347067972],[-115.23631724684503,50.56922985747636],[-115.23659045432731,50.569282042808375],[-115.23665905578419,50.56929384579874],[-115.23667274955389,50.56929631650709],[-115.23672752464773,50.569306199323286],[-115.23674135319327,50.569308110566276],[-115.23721175546183,50.56937213273198],[-115.23758563251356,50.56942163831174],[-115.23801808943573,50.569524557817175],[-115.23830031474164,50.569598639547],[-115.23839115129826,50.569696106132895],[-115.23842394515542,50.56973792875602],[-115.23845673907351,50.56977975136744],[-115.23850309233518,50.569824603907136],[-115.23873828290151,50.56997532679838],[-115.23878771225377,50.57000740933945],[-115.23881082285207,50.570030110826195],[-115.23883620488145,50.5700433814288],[-115.23889946325156,50.57007737489677],[-115.23901032366557,50.570329027502716],[-115.23906521964331,50.570457073810495],[-115.23915790237596,50.57078420867658],[-115.23919810841352,50.57085459172805],[-115.23934805180355,50.571121975764264],[-115.23936888976645,50.57115411686131],[-115.23940262236383,50.57119204955157],[-115.23943648761988,50.57122943165128],[-115.23966439613704,50.57146976504226],[-115.2396999984443,50.5714999362453],[-115.23973480092735,50.57153342866861],[-115.2400293147986,50.57179388308134],[-115.24007446978314,50.57184372558769],[-115.24005992531467,50.572319463142684],[-115.24005595227621,50.57263263462614],[-115.24004525884574,50.57267703610321],[-115.24005280510555,50.57270503723309],[-115.24004852772778,50.57272279782254],[-115.24004021632167,50.572994647596126],[-115.24002845343536,50.57304348919742],[-115.24003279168203,50.57308481075182],[-115.24002542783369,50.57323405602275],[-115.23997283348247,50.5733931004022],[-115.23985154439391,50.57371870012753],[-115.2396545118482,50.57388411323759],[-115.23935324730405,50.57412628602373],[-115.23930146663416,50.57416327625218],[-115.23926458335337,50.57419774612139],[-115.23899886146263,50.574410998161085],[-115.23896117562745,50.57444879801542],[-115.23891046376349,50.57448134792005],[-115.23860678476812,50.57473350879309],[-115.23855420063093,50.57477382873841],[-115.2378604911498,50.57498400525395],[-115.23741438358896,50.57511549378661],[-115.237353183273,50.575132252029285],[-115.23730768306376,50.575143160088615],[-115.23729118065569,50.57515234031884],[-115.2371835450621,50.57518388715462],[-115.23687261502603,50.57516949388602],[-115.23682938888892,50.57517096208913],[-115.23680186297514,50.575166580197546],[-115.23673097828687,50.57516421703683],[-115.23623572280337,50.57514378412183],[-115.23588143242138,50.5751314154919],[-115.23538778247618,50.575104318661765],[-115.23490622155529,50.57508635955753],[-115.2348356045716,50.57508288516823],[-115.23476485492853,50.575079961304475],[-115.23434008335235,50.575063553838106],[-115.23431229025502,50.575060281350325],[-115.23427040160212,50.57505619846037],[-115.23419871473773,50.5750571637461],[-115.23390228440213,50.57504190311292],[-115.23371667446821,50.57510049264853],[-115.23328130634395,50.575246645851394],[-115.23297007789435,50.57535207510735],[-115.2329535745253,50.575361254692055],[-115.23286695695569,50.575483461993315],[-115.23274679470049,50.57562625722485],[-115.23270870236723,50.57566571548943],[-115.23268778342853,50.575693214722165],[-115.23266967252155,50.57570906323191],[-115.2324705154557,50.57594242527922],[-115.23243255531426,50.57598133286709],[-115.23242747198843,50.57600242313543],[-115.23240856037332,50.576021592758856],[-115.23215640652991,50.57629694055887],[-115.23179804471017,50.576716442973854],[-115.23173068612992,50.57675872835908],[-115.23134151626783,50.5769502792],[-115.23129199910551,50.57697783492902],[-115.23126019351635,50.57699120295747],[-115.2312265127136,50.577012349925745],[-115.23116223140609,50.57704186539887],[-115.23083429749468,50.57709794534632],[-115.23076153694085,50.577103348451196],[-115.23070046631324,50.5771195435514],[-115.2302250038072,50.57719474830485],[-115.22960174192342,50.577290195250086],[-115.22939300750598,50.57732607421898],[-115.22885726971866,50.5774141463209],[-115.22886467706441,50.577442698609985],[-115.22887542884772,50.577457380292664],[-115.22898303973756,50.57772236067104],[-115.22900186713747,50.57776282403737],[-115.22901034304508,50.577786945170814],[-115.22901868621314,50.57781161686471],[-115.22913156531945,50.57811402926592],[-115.22916007451505,50.57817361424364],[-115.2294090731248,50.57862279513411],[-115.22942683075065,50.57866769839755],[-115.22944258009171,50.57872093112024],[-115.22945966977724,50.57876860494104],[-115.22946480177475,50.57880659661055],[-115.22956091116083,50.579119306117924],[-115.22957331647885,50.57918640938975],[-115.22970525884487,50.57964689667132],[-115.22974131079485,50.57973448298161],[-115.22984660881947,50.579949819608025],[-115.22987953709341,50.57999108478735],[-115.2298854724752,50.58002574637356],[-115.22989622520836,50.580040427911634],[-115.23003552384175,50.580292589419585],[-115.23005435326262,50.580333052481976],[-115.2300640356135,50.58035217400863],[-115.2300722449501,50.58037740498809],[-115.23017161252115,50.580558070707056],[-115.23027588284243,50.58065912409575],[-115.23061220905912,50.580983325924656],[-115.23067757977142,50.58112716616646],[-115.2308181402314,50.581433408454444],[-115.23083603310874,50.58147776077878],[-115.2308562018205,50.58151267363311],[-115.23111846896093,50.58172910422485],[-115.2311672378367,50.58176396026108],[-115.2312156043057,50.58180048571959],[-115.23132202069574,50.581892657950256],[-115.2315289178609,50.58204234066343],[-115.23187797526796,50.58231380852207],[-115.23191921825865,50.582498466701686],[-115.23198661935389,50.582811780227935],[-115.231990816292,50.58285366104837],[-115.23200884575714,50.58289745366608],[-115.2320584860127,50.5831658643931],[-115.23206161480968,50.58321217632698],[-115.23207022825103,50.58323573762648],[-115.23226719963259,50.58354521107455],[-115.23242142556802,50.583794840277506],[-115.23257337764747,50.58405390866245],[-115.2326532599293,50.584196888365426],[-115.23277771571674,50.58433285137159],[-115.23282541622373,50.584372155466305],[-115.23282314283362,50.584381586058655],[-115.23284625780377,50.584404288388484],[-115.23285915321235,50.58441008953213],[-115.23305001231405,50.584626369176846],[-115.23307526815641,50.58464019142053],[-115.23312283653021,50.584680045935215],[-115.23315750945082,50.5847140993223],[-115.23345501479103,50.58496235692901],[-115.23355108839965,50.58503818500439],[-115.23400361531822,50.58535494361226],[-115.23401316771714,50.58537461524189],[-115.23424197481297,50.585670706840766],[-115.23426495631259,50.58569396828336],[-115.2342778522735,50.58569976925365],[-115.23429869550513,50.585731901852235],[-115.23451428905214,50.5859642205897],[-115.23454668876313,50.586007712979445],[-115.23456913763192,50.58603318548109],[-115.23457935822739,50.586050086471566],[-115.234713375698,50.58620572744953],[-115.23479768418633,50.58633038570746],[-115.23493175739947,50.58654510754562],[-115.2351986761299,50.58680173826779],[-115.23522406869232,50.58681500054446],[-115.23546252232795,50.587071128905535],[-115.23549719886063,50.58710518146547],[-115.23553093800925,50.58714312347623],[-115.2357461444523,50.58737710000114],[-115.23579398561198,50.587415843235966],[-115.23580313686823,50.58743718411317],[-115.23607841473145,50.58771848333829],[-115.23614830482245,50.58778436799442],[-115.23660481184191,50.58814410537998],[-115.23673905567453,50.58823954358818],[-115.23688544918903,50.588403202219936],[-115.23688858331683,50.58844951372471],[-115.23689827031713,50.58846863446915],[-115.23689185013492,50.58849527466278],[-115.23691288596706,50.588585937128315],[-115.23704892641798,50.58873324531935],[-115.23709636781408,50.58877365738302],[-115.23711988952117,50.588794689252715],[-115.23713011170155,50.58881158995263],[-115.2371533638009,50.58883374070246],[-115.23736871944168,50.589067163049016],[-115.23737920927663,50.589082953712094],[-115.23754372250667,50.589230762295244],[-115.2379373911455,50.58943610933378],[-115.23799326097236,50.58944155124889],[-115.23839510790273,50.58949432441792],[-115.23845632735994,50.58947756589373],[-115.23847203449891,50.589471706801525],[-115.2385026442035,50.589463327522324],[-115.23853539368007,50.58944606814887],[-115.2385966130194,50.589429309546595],[-115.23879905261461,50.5893604137054],[-115.23899199566576,50.58933092735666],[-115.23900797014431,50.58932395817588],[-115.23905308201864,50.58931471906701],[-115.23912612877528,50.58930820061007],[-115.23915633599205,50.58930149060801],[-115.2394768598921,50.589276467343666],[-115.2396131903177,50.589303949759255],[-115.23995288424499,50.58937735708424],[-115.24031569848202,50.589473472886226],[-115.24040311506268,50.58946664431326],[-115.24065005572302,50.5894503658805],[-115.24090428052881,50.589463188540094],[-115.24097492054341,50.589466659018925],[-115.24104663021319,50.589465689386024],[-115.24146840124088,50.589435759655856],[-115.24152534109055,50.58943675972765],[-115.24154024561973,50.58943423025611],[-115.2416130248132,50.58942882018659],[-115.24165733407072,50.58942291007825],[-115.24208966706419,50.589349127829166],[-115.24211920647643,50.58934518763208],[-115.24290921783862,50.58921079896621],[-115.24338679014578,50.58912722039967],[-115.24340169446782,50.58912469067802],[-115.24344693784587,50.589114899215424],[-115.24352198982018,50.589100048260754],[-115.24377494359378,50.589058782928554],[-115.24392477761305,50.58903019942853],[-115.24395418191762,50.58902681819534],[-115.24399969455133,50.58901590760251],[-115.2440585052648,50.58900913620845],[-115.24435803768984,50.588952527692015],[-115.24453847919332,50.58891556245961],[-115.24498864713945,50.58882702874689],[-115.24536750576897,50.58885652653312],[-115.24563422488743,50.58887680754675],[-115.24583371540164,50.58893882176109],[-115.24590007836134,50.58896004957993],[-115.24594010999715,50.58897189822874],[-115.24596751053085,50.58897683724198],[-115.2461131351901,50.58902509225428],[-115.2463398929579,50.589092603975466],[-115.24640759276679,50.58910828133833],[-115.24647288714611,50.589133948931725],[-115.24692667280306,50.58926786039253],[-115.2473135623391,50.589382763121016],[-115.24770379336978,50.589483793520834],[-115.24802873233233,50.58955914703192],[-115.24816587054372,50.589583288866415],[-115.24823450811664,50.58959507555137],[-115.24824794146409,50.58959865480845],[-115.2483019421083,50.58961186178672],[-115.24845385014977,50.58963403234409],[-115.2486742011127,50.589728180081615],[-115.24874083379896,50.58974829615254],[-115.24880532877283,50.589777292462514],[-115.24884509467971,50.58979025009015],[-115.24920800626774,50.58994540891359],[-115.24954685774024,50.590081757391886],[-115.2498527721269,50.590295558448155],[-115.25018395381736,50.59052317687244],[-115.25023261232195,50.59055858364361],[-115.25024524454382,50.5905654927675],[-115.2502812709031,50.590593990391966],[-115.25035599564342,50.59063988522824],[-115.25056085884233,50.59079841128152],[-115.25059434627448,50.590837458595225],[-115.25064314010183,50.59087230571446],[-115.25082447607943,50.59100980228263],[-115.25092561085754,50.59112415550427],[-115.25097226784177,50.59116788277253],[-115.25110956332627,50.591310182590895],[-115.2512352978778,50.59144112417817],[-115.25133643466903,50.59155547696706],[-115.25137125918262,50.591588973818546],[-115.25150749068465,50.59173570434744],[-115.25166984656971,50.59183329110742],[-115.2517205103066,50.59186037631993],[-115.25178394158449,50.591893810986996],[-115.2520832580226,50.59207571619401],[-115.25214695702645,50.592108040605886],[-115.25219748885245,50.59213567617212],[-115.25228498360362,50.59218792793605],[-115.25251285712082,50.59236969875104],[-115.25274193354436,50.59254647831703],[-115.25305543758078,50.592788269525585],[-115.25323465160062,50.592934642177546],[-115.25338344827888,50.593029198237495],[-115.25343318051787,50.5930601633368],[-115.25344581393327,50.59306707207666],[-115.25348398132859,50.59308668824584],[-115.25378023962855,50.59328135854621],[-115.25383077377495,50.593308993332116],[-115.25385510488982,50.59332670030435],[-115.25388050663092,50.593339958221165],[-115.25424153932585,50.593562510392864],[-115.25426693917704,50.59357577709812],[-115.2547531387822,50.593991125355714],[-115.25480287302665,50.5940220898073],[-115.25503311578586,50.59425350474687],[-115.2550668789001,50.59429143162828],[-115.2550877388171,50.5943235688803],[-115.25510050745622,50.59432991795996],[-115.25533182167675,50.59455689202133],[-115.2553653160453,50.59459593772281],[-115.25538671262932,50.594625845938424],[-115.25539801134538,50.59463830466479],[-115.25558413334079,50.59481544321763],[-115.25563261499217,50.59491103805563],[-115.25569474629981,50.59506874116928],[-115.25587991545126,50.595428111493426],[-115.25592305678913,50.59554590701771],[-115.2560212240987,50.59573210543886],[-115.25604048502996,50.59577089384149],[-115.25604857927203,50.59579667301533],[-115.25605814138702,50.59581635138469],[-115.25618286414633,50.596070447280795],[-115.25621235636997,50.59612613443767],[-115.25623134842171,50.59616604171323],[-115.25669540137082,50.596079379086056],[-115.25718912957964,50.59598821088944],[-115.25751716614732,50.595932063468645],[-115.25799611993362,50.5958428638045],[-115.25801169216633,50.59583756146591],[-115.25805707369636,50.595827204681854],[-115.25813092935107,50.595817343661935],[-115.25832495550205,50.59578338384767],[-115.25852663026119,50.595836494405866],[-115.25859407744416,50.595853274281545],[-115.25866179169199,50.595868944065586],[-115.25911861857425,50.59599059419605],[-115.25989818417746,50.596197000587644],[-115.2599383583607,50.59620829351373],[-115.26031292744246,50.59637476312521],[-115.26037743936922,50.59640375250006],[-115.2604290489705,50.59642694397232],[-115.26076344480754,50.59658212816114],[-115.26082795732181,50.5966111172678],[-115.26084152617992,50.596614144388155],[-115.2608783649852,50.596639308211834],[-115.26103493184807,50.596701662041156],[-115.26104409696241,50.59672300060309],[-115.26129631966144,50.59680374633863],[-115.2619811416292,50.59704750493051],[-115.26203382054942,50.59706625541404],[-115.26249066870199,50.59718789153619],[-115.26255825391945,50.597204109514536],[-115.26258486051177,50.59721237456313],[-115.26262490388099,50.59722421709503],[-115.26301416961597,50.59732963311143],[-115.26308175523498,50.59734585076926],[-115.26314840564038,50.59736595803305],[-115.26360419223934,50.59749202977936],[-115.26400596651662,50.59760490043306],[-115.26440355382822,50.597616259827745],[-115.26489933626222,50.59763545679875],[-115.26494378504232,50.59762897801113],[-115.26497332788718,50.59762503179079],[-115.26504505003682,50.59762404671239],[-115.26546701604161,50.59759346690477],[-115.26551026277981,50.597591987620945],[-115.26553967105573,50.59758860072262],[-115.26561259504224,50.59758261554776],[-115.26575697208177,50.59757676373371],[-115.26609898248624,50.59752193924041],[-115.26633719157142,50.59748259633553],[-115.2669288052762,50.59745997267411],[-115.26704297322664,50.5974608366617],[-115.26742885812557,50.59746138841821],[-115.26749964507233,50.597464291441646],[-115.26757136691042,50.597463304736124],[-115.26799889760645,50.59746903483456],[-115.2680563817914,50.59746780118832],[-115.26809989511487,50.597465210827835],[-115.26845426345061,50.59765638721665],[-115.26850507830332,50.597682905125424],[-115.26890323051882,50.59787037942953],[-115.26918498325989,50.5980067908477],[-115.26937800992746,50.59809596341319],[-115.26956676921107,50.59820289680944],[-115.26963035499976,50.59823577045726],[-115.26967983741491,50.59826783817886],[-115.26980661250356,50.59833523709239],[-115.2700302517327,50.59841602069056],[-115.27008293560873,50.598434767335576],[-115.2701221817974,50.59844993737718],[-115.27014852376894,50.59845931068076],[-115.27023898584916,50.59849933711879],[-115.27058330018512,50.598613418677694],[-115.27071407860988,50.59866416540177],[-115.2710898744065,50.59888524712022],[-115.271230091315,50.598956220822345],[-115.27162906629275,50.599140354864986],[-115.27169438961208,50.599166007355855],[-115.27171979777121,50.59917926999022],[-115.27174520807903,50.59919252373797],[-115.27181053154031,50.59921817615919],[-115.27207672974389,50.59935988428515],[-115.27212621513866,50.599391950876324],[-115.27215255807913,50.59940132369528],[-115.272190739001,50.59942093330211],[-115.27251999603347,50.599597732585536],[-115.27283648509874,50.59976817497478],[-115.27290007762159,50.59980103781298],[-115.27326312296832,50.60001575601975],[-115.27331380891376,50.60004283113911],[-115.2733255150366,50.60005361840459],[-115.27336329594122,50.60007489715423],[-115.27361246656889,50.60022800691853],[-115.27367592590655,50.600261428776],[-115.27372648010923,50.600289054299466],[-115.27375055615825,50.60030786685526],[-115.27377730104207,50.60031556971842],[-115.2741402203295,50.600530844413186],[-115.27419090951624,50.60055791023597],[-115.2747831986779,50.60088972574185],[-115.27514719609782,50.60110054779769],[-115.27519668559512,50.601132612957265],[-115.27524750834712,50.60115912767836],[-115.27556095141445,50.60134233239718],[-115.27561150798894,50.60136995702902],[-115.2756498264694,50.60138900592126],[-115.27567603693271,50.60139893736644],[-115.27592655587428,50.601546491291266],[-115.275946609968,50.60164158527609],[-115.27598384316448,50.60202233434647],[-115.27600200494584,50.60218483836347],[-115.27600744553553,50.60222171672062],[-115.27608558151246,50.60249170278355],[-115.27610472825536,50.60253104687999],[-115.27612187642134,50.60257871215545],[-115.27620201231284,50.60284037683909],[-115.27621916069978,50.60288804208176],[-115.27622753440639,50.60291270948347],[-115.27622300181335,50.6029315808951],[-115.27624121461655,50.60297481467797],[-115.27644006936274,50.603218453209905],[-115.27675796720719,50.60362132259526],[-115.27682567641513,50.603696611710554],[-115.27704435115336,50.60397682208483],[-115.27707787137578,50.60401586081031],[-115.27709822043877,50.604050204847404],[-115.27711086057325,50.604057110810594],[-115.27729654923635,50.60429607058157],[-115.2773292722355,50.60433843058689],[-115.27736332618187,50.60437524904203],[-115.27753771227711,50.6046017430914],[-115.27759584871052,50.604657364216436],[-115.27779205013437,50.60491210955776],[-115.27798148037901,50.605135517886694],[-115.27821387635228,50.60541819099466],[-115.27824766525166,50.60545611921594],[-115.27828145634066,50.60549403854453],[-115.27844614088714,50.605701423004305],[-115.27846622517252,50.60573687680616],[-115.27849908254659,50.60577868579228],[-115.27853300631512,50.60581605442792],[-115.27866934672632,50.60602238843449],[-115.2787517019887,50.60609626073443],[-115.27920871548778,50.606515445755676],[-115.27924703774129,50.60653450217292],[-115.27956158136868,50.60677288440751],[-115.27961014834905,50.60680882824676],[-115.2796472725605,50.6068328754658],[-115.27965991386804,50.60683978111663],[-115.27998950223845,50.60707507693092],[-115.28000081089354,50.60708753297336],[-115.28003793554377,50.60711158005413],[-115.28036939371209,50.60733910406368],[-115.2806029204767,50.60749806172161],[-115.28103355553174,50.607669888636956],[-115.28138394614612,50.60781859322927],[-115.2814484880578,50.60784756999703],[-115.28149798946829,50.60787963209593],[-115.28154962311982,50.60790281345865],[-115.28176413724235,50.608021866191244],[-115.28186234142345,50.60808932034051],[-115.28191210990848,50.608120272156434],[-115.28196281018982,50.608147343075025],[-115.28209599347497,50.608307354312814],[-115.28217940648831,50.608436422579935],[-115.28225855798927,50.60858324332248],[-115.28286641634253,50.608553009472956],[-115.28289583260808,50.60854960915584],[-115.28335581598918,50.60853967777429],[-115.28337072236083,50.6085371516431],[-115.28342768730822,50.60853813026476],[-115.28350049235728,50.608532692943115],[-115.28382977393517,50.60853109918832],[-115.28392055069033,50.60851036487854],[-115.28398044672946,50.60849913218365],[-115.28405538335201,50.60848481374599],[-115.2841144799394,50.60847691126174],[-115.28430948786291,50.60837938674261],[-115.28449742217316,50.60837090515317],[-115.28465793769367,50.60835750275795],[-115.28495752324909,50.608420046733094],[-115.28528997319646,50.608524405623186],[-115.2857427378061,50.608663706229976],[-115.28579650591361,50.60867800481742],[-115.28587702599499,50.608700003258335],[-115.28622734241945,50.60867034368408],[-115.28628404118861,50.60867243094413],[-115.28635578048096,50.60867143215504],[-115.28642658628537,50.608674323109184],[-115.2866111903519,50.60867971864405],[-115.28670964759212,50.60886532755747],[-115.28689378928348,50.60923019079994],[-115.2870659978617,50.609346839789524],[-115.28738046832459,50.60958575862741],[-115.28742917671634,50.609621148325616],[-115.28746724084301,50.60964130306363],[-115.2877776154351,50.60971852368427],[-115.28788090401885,50.60970524149168],[-115.28789554414726,50.6097038248604],[-115.28792522715966,50.6096993131181],[-115.28795464166134,50.60969592035054],[-115.28802864777619,50.609685480177504],[-115.28824906345491,50.60966083774106],[-115.2885078022848,50.60971486923859],[-115.28863011716619,50.609741487462],[-115.28903670776029,50.60995411280815],[-115.28918989749201,50.610030857404844],[-115.289446366171,50.61015396596821],[-115.28953925976849,50.610243615273774],[-115.28958783846767,50.610279554612276],[-115.28963681568314,50.61031383321061],[-115.28988568996564,50.61052821318844],[-115.2899344013487,50.61056360175117],[-115.28996900511332,50.61059818698391],[-115.29028083650996,50.6108481983275],[-115.29055979402092,50.61111603356433],[-115.29076049899761,50.61129279403143],[-115.29091608651359,50.61141918402272],[-115.29109310743264,50.61151584455922],[-115.29115659567962,50.61154925600122],[-115.29118308179096,50.61155807356818],[-115.29120743960605,50.61157576310634],[-115.29153912492716,50.61174306321824],[-115.29158863781592,50.61177512068237],[-115.29163921595683,50.61180273769119],[-115.29202028379491,50.612002653230164],[-115.29244088915335,50.61221661035176],[-115.29258250406788,50.612401283047184],[-115.2928013192692,50.61268145954293],[-115.29283539432473,50.61271826401626],[-115.2928678696817,50.612761738016474],[-115.29302013719634,50.61296163551453],[-115.29305314757289,50.61300288034771],[-115.29307297823314,50.613039450194194],[-115.29309414239084,50.613070460605556],[-115.29310492364819,50.61308513544718],[-115.29330777083356,50.613372287455114],[-115.29350223755424,50.613634764331266],[-115.29355653880525,50.61388537582718],[-115.29361057146168,50.6141967359822],[-115.2936289397329,50.614239406838934],[-115.29363639425246,50.61426795353677],[-115.29363319912332,50.61428127485075],[-115.29366181379802,50.61440047932086],[-115.29374127953163,50.61454618073968],[-115.29376018058858,50.61458663133815],[-115.29376843189733,50.61461185656808],[-115.2937790816795,50.61462708193149],[-115.29394972590158,50.61492928710596],[-115.2940893595332,50.61518190836128],[-115.29405367868365,50.615449931245195],[-115.29403530164913,50.615765065176674],[-115.29402465125067,50.61580946951372],[-115.29401932604354,50.61583167168086],[-115.29402904322326,50.61585078681755],[-115.29401772341237,50.616017239025844],[-115.29405046832916,50.616119232033626],[-115.29406750649649,50.616167453259266],[-115.29407815674824,50.616182678565586],[-115.29408654272368,50.61620734422911],[-115.29421366476903,50.61651214887891],[-115.29422311591874,50.61653237409091],[-115.29444555388626,50.61703609112871],[-115.29449001403232,50.61714887758518],[-115.29448615116935,50.617343876115854],[-115.2944894786834,50.6173896337549],[-115.2944797613188,50.61743014823254],[-115.2944717706258,50.617701987315534],[-115.29447509815171,50.61774774493535],[-115.29446444771796,50.617792149208476],[-115.29446884028816,50.617833466396554],[-115.2946381715924,50.61808158151443],[-115.29470393450154,50.618165188689964],[-115.29479073000303,50.61851890083755],[-115.2947973858315,50.618610415965584],[-115.29478180876765,50.618854258835945],[-115.29479432234307,50.61892135159461],[-115.29481162862895,50.61896846243801],[-115.29480936435766,50.61897790277973],[-115.29481455613974,50.619015889577355],[-115.2948648773007,50.619283150398665],[-115.29486900412418,50.619325577602616],[-115.29487646027381,50.61935412404295],[-115.29487220010918,50.61937188573363],[-115.29489230220706,50.61946697426347],[-115.29495606942338,50.61967817902277],[-115.29501970517373,50.619889934304396],[-115.29523431189294,50.62018786517745],[-115.29535173548041,50.62035427573809],[-115.29533389575353,50.62048829100154],[-115.2953245767992,50.62052714468463],[-115.2953204508936,50.62054434687451],[-115.29531299571283,50.620575429818096],[-115.2952763842356,50.62072807368996],[-115.29526373726222,50.62084043740091],[-115.2952670658261,50.6208861948244],[-115.29527784966602,50.6209008693179],[-115.29527345744863,50.62091918160281],[-115.29527026233187,50.62093250285723],[-115.29527691949329,50.6210240176912],[-115.29532578081576,50.62123774952958],[-115.29537131388743,50.6214057239024],[-115.29539461307093,50.62148749086102],[-115.2954022024164,50.62169439205468],[-115.29542483721815,50.62177892979741],[-115.29544068138156,50.621891779611225],[-115.29553893772537,50.622078487873914],[-115.29557088993596,50.62212418080424],[-115.295589930018,50.62216407123162],[-115.29566209232914,50.6223999402689],[-115.29570096973481,50.62241676157317],[-115.29576767187199,50.62243684870703],[-115.29579403323656,50.62244621567383],[-115.295819329591,50.62246002304938],[-115.29613406949338,50.62257908670826],[-115.2960869405314,50.62265630795568],[-115.29585382164355,50.62297223422857],[-115.2957538360977,50.62315054803551],[-115.29560978415316,50.62345294118276],[-115.29558568625004,50.62349377186218],[-115.29556145410406,50.62353516202565],[-115.29548756237611,50.62366431460719],[-115.295455211464,50.6237991874712],[-115.29544469263614,50.62384304090514],[-115.29543430798948,50.6238863348448],[-115.29534510635334,50.6241985806228],[-115.2953218066447,50.62423608090772],[-115.29504913058466,50.62465722124066],[-115.29502583039155,50.62469472144299],[-115.29492290825549,50.62500451209871],[-115.29489867681576,50.62504589316218],[-115.29488829136565,50.625089186988475],[-115.2948177235816,50.62526409607907],[-115.29496445023537,50.62524876632716],[-115.29502250176938,50.62524529860785],[-115.29503714673189,50.62524388106461],[-115.29509626341245,50.625235972913956],[-115.295595426962,50.625182624169426],[-115.2958593208948,50.62515591671111],[-115.29643237584517,50.62509268735338],[-115.29691702343969,50.62504019979658],[-115.29697507455388,50.62503673105927],[-115.29699065229758,50.62503142345762],[-115.29704963417028,50.62502407376075],[-115.29747503022104,50.624980052454234],[-115.297534014077,50.62497269361972],[-115.29760790892992,50.624962806767634],[-115.29782852841235,50.62493758633786],[-115.29808722434937,50.62487288720786],[-115.2988562484856,50.62464857059082],[-115.29930240141279,50.62451795384343],[-115.29936364582845,50.62450116254703],[-115.29943966892792,50.6244823935982],[-115.29962433227962,50.62442813843303],[-115.29980794532958,50.62449758147044],[-115.29987358771791,50.624522106538656],[-115.29988597093616,50.62453011985774],[-115.29994029484153,50.62454219112411],[-115.30035838545322,50.624707587221515],[-115.30043760845439,50.624735134152616],[-115.30080525362756,50.62499162333874],[-115.30100710737709,50.62504466397435],[-115.30118020443848,50.62509832072203],[-115.30134399450907,50.62525046902537],[-115.30139153218586,50.62529085190166],[-115.30142748676295,50.62531988239611],[-115.30150885021703,50.62539817660635],[-115.30176770339872,50.62551181412466],[-115.30180911290718,50.62551809159327],[-115.30185012217586,50.62552603865802],[-115.30187741911652,50.62553151431113],[-115.30208127351266,50.6255762226704],[-115.30235235958811,50.625579164589006],[-115.30272423941553,50.62557935180756],[-115.30320224240961,50.625614227685325],[-115.30325710069566,50.625624077084716],[-115.30369848410591,50.625632691792596],[-115.3037702500658,50.62563168180934],[-115.30382723710915,50.625632649979465],[-115.30384095171824,50.62563511225484],[-115.30426848661571,50.625641821929435],[-115.30433932241829,50.62564469255838],[-115.3044100241346,50.625648122642744],[-115.304595764262,50.62564904778459],[-115.3048744605738,50.62573960746342],[-115.30494010753813,50.6257641295107],[-115.3051915222601,50.62590884241422],[-115.30552961612385,50.626050014576485],[-115.30554027259677,50.62606523860625],[-115.30583404708783,50.62627197398736],[-115.3058709353578,50.626297122025285],[-115.30592047448711,50.6263291725587],[-115.30593339133763,50.62633496494276],[-115.30597120974797,50.626356231956414],[-115.30624607078235,50.62652251823491],[-115.30628389162644,50.626543776256696],[-115.30634847645453,50.62657273794391],[-115.30636019527846,50.62658353027289],[-115.3063982822465,50.62660367813083],[-115.30677967518463,50.62680298012416],[-115.30723618077037,50.62704702528014],[-115.30744192473844,50.62714359060111],[-115.30784129802987,50.62732758865622],[-115.30789296758874,50.627350757265255],[-115.3079194684161,50.62735956180464],[-115.30795755461222,50.62737971799195],[-115.30798272554827,50.62739407314697],[-115.3081509182749,50.62746826069065],[-115.30821033652528,50.62757850198519],[-115.3082283240831,50.62762283937841],[-115.30823778387126,50.62764306313129],[-115.3082473777215,50.62766272737911],[-115.30825683752664,50.62768295112953],[-115.30857806618933,50.627894602321355],[-115.308650784618,50.62794933697822],[-115.30868913761162,50.62796838277409],[-115.30898842937748,50.628271613732956],[-115.30901268669116,50.62834949616332],[-115.30914021232748,50.62865316032359],[-115.30915700546264,50.62870248864204],[-115.30916420414691,50.628732152812645],[-115.30919651820157,50.629015255081455],[-115.30920092540462,50.629056571131116],[-115.30920519856986,50.62909844668252],[-115.30922353113326,50.62938019734144],[-115.30921528620112,50.62941461126457],[-115.30910578415431,50.629692528873996],[-115.30901784213619,50.62994016365333],[-115.3089055458824,50.63022973276251],[-115.30887452152838,50.63023980060654],[-115.30882499535203,50.63026738015519],[-115.30879011528823,50.630293540338926],[-115.30877453711453,50.630298849556475],[-115.30847298209933,50.63048267434489],[-115.30842132747446,50.6305191346924],[-115.30838963889448,50.63053197326533],[-115.30835595427997,50.630553142191786],[-115.30806799867193,50.63079960673286],[-115.30783089762917,50.6310129407932],[-115.30769528011287,50.63128038234369],[-115.30753849581376,50.63157644519393],[-115.30751307428545,50.63162282865183],[-115.3075090839713,50.6316394804444],[-115.30750389549438,50.631661132214454],[-115.30745744266171,50.63173557768932],[-115.30748427598462,50.631981812819646],[-115.30747576322011,50.63201733662574],[-115.3074995561986,50.632335962063074],[-115.30754285138195,50.63287171758982],[-115.30753768044003,50.63295299775625],[-115.30736075459937,50.63315397508858],[-115.30732281098042,50.63319290550936],[-115.30730457127574,50.63320931567249],[-115.30728460338804,50.63323293715132],[-115.30714575127917,50.633394433060396],[-115.30715456278288,50.633477064885774],[-115.30714392114561,50.63352146953189],[-115.30715684022003,50.63352726172427],[-115.30714699669738,50.63356833601975],[-115.30717291437954,50.63387808889043],[-115.30760452017157,50.634345746843564],[-115.30788786717967,50.63465595707747],[-115.30789865844147,50.634670630106946],[-115.30790506129118,50.634703615614704],[-115.30798543940551,50.63496524730343],[-115.30800369785389,50.635008465343226],[-115.30802182225897,50.635052242876235],[-115.30811966229435,50.635360422722066],[-115.30813645681509,50.63540975079774],[-115.30871573760575,50.635738910210016],[-115.3087271955,50.63575080340743],[-115.30903050983265,50.635977751470364],[-115.3090792638569,50.636013130579386],[-115.30909191788876,50.636020032647664],[-115.30910337382613,50.63603193468327],[-115.30912908198643,50.63604406919575],[-115.30928759876859,50.63615877797871],[-115.30939536781578,50.636246429026436],[-115.3094438564178,50.63628291808251],[-115.30946823481243,50.63630060310254],[-115.30949274516213,50.63631773749839],[-115.30961409913921,50.636408409363774],[-115.30977476702496,50.63657386462744],[-115.3099590169563,50.63676033488515],[-115.31023838439734,50.637027561887145],[-115.3102711622545,50.637069910544966],[-115.31023582649173,50.637336821445416],[-115.31022518698425,50.63738122618028],[-115.31021986722264,50.63740342854651],[-115.31021454745576,50.63742563091191],[-115.31021164066317,50.63749747919506],[-115.3100165814597,50.637654682610446],[-115.30997863846996,50.63769360484452],[-115.30996079583936,50.63770835461834],[-115.30994082734905,50.6377319764457],[-115.30963818366988,50.63797987128452],[-115.30943899612062,50.638154284835515],[-115.30895676961624,50.63825590354431],[-115.30848812559489,50.638360541317574],[-115.30841394507507,50.63837154533778],[-115.30835295118447,50.63838723121606],[-115.30820206147213,50.63841978953216],[-115.30793169573745,50.63841353155349],[-115.307902129865,50.638417488974696],[-115.3078608395861,50.638410663251896],[-115.30778905331837,50.638411675853874],[-115.30729067444958,50.63840155162818],[-115.30645147248705,50.638380633856904],[-115.3059538904328,50.63836718221127],[-115.30589688720116,50.63836621514344],[-115.3058822383065,50.63836763409146],[-115.30581151647407,50.63836420499338],[-115.30538385822672,50.63835751022127],[-115.30531420090813,50.63834964038562],[-115.30524228268662,50.63835120195981],[-115.30521391308253,50.63835016763549],[-115.30474817495832,50.63838294160383],[-115.30435568520807,50.63840860215532],[-115.30390353023314,50.638444394256986],[-115.30340955255221,50.6384755773535],[-115.30335068608866,50.63848237968798],[-115.30333683556951,50.63848046800003],[-115.30329341660136,50.63848252138952],[-115.30327770292251,50.63848838039638],[-115.30285564502977,50.63851799184952],[-115.30278359229968,50.63852011132725],[-115.30271060686714,50.638526120544824],[-115.30221556481958,50.63856172986206],[-115.30148824676971,50.63861123028982],[-115.3013721101717,50.638618172323056],[-115.30088026076523,50.63864045456034],[-115.30080727488291,50.63864646253088],[-115.30076412399784,50.638647395959936],[-115.30073442316095,50.6386519109663],[-115.30028572399092,50.638673257161926],[-115.30025522649338,50.63868109343837],[-115.30018024469862,50.6386954222536],[-115.29971264069474,50.638795582709164],[-115.29927566662516,50.638887345707744],[-115.29889888995352,50.63896675658962],[-115.29858217710162,50.639034375453264],[-115.29843114260859,50.639007834250435],[-115.29841862145204,50.63900038039315],[-115.29840370582531,50.6390029084454],[-115.29836348161294,50.63899163885786],[-115.29829488970925,50.638979324290574],[-115.29828024037495,50.63898074223863],[-115.29803517392662,50.63892863880303],[-115.29789159929247,50.6389306513047],[-115.29781874675663,50.63893609783282],[-115.29776147667405,50.63893623669228],[-115.29774802464543,50.63893266362143],[-115.29724524696198,50.6389408153591],[-115.29721581189631,50.638944219341155],[-115.2964124354145,50.639012444853996],[-115.29591511797436,50.6390574663185],[-115.29584333040577,50.63905847122703],[-115.29578446203439,50.6390652695614],[-115.29535986225775,50.63910540282956],[-115.2952880746002,50.63910640738051],[-115.29524478890964,50.639107898153085],[-115.2952150893452,50.63911240280579],[-115.29514143707854,50.63912117782353],[-115.29472309655935,50.63907558935775],[-115.29466715820037,50.6390701762322],[-115.29431781015246,50.63903523348248],[-115.293885755261,50.63898716958128],[-115.29382875150365,50.63898619634308],[-115.29339256391212,50.639014978038226],[-115.29331984496791,50.63901986214743],[-115.29326177551526,50.63902332892247],[-115.2930579995171,50.63903768254733],[-115.2928353128609,50.63901158623477],[-115.29276539029797,50.63900481863884],[-115.29269480061438,50.639000830624994],[-115.29220814208968,50.63894179570451],[-115.29136947378758,50.63885891626047],[-115.29088175264371,50.63880431582518],[-115.29085311660994,50.638804387916935],[-115.29081196286924,50.63879699640742],[-115.2907412415125,50.63879355775035],[-115.290322910637,50.63874794387379],[-115.29026697321568,50.63874252853814],[-115.29025352184077,50.63873895456219],[-115.29018373227007,50.6387316347506],[-115.28969468143438,50.638682579457054],[-115.2896533936779,50.638675746992824],[-115.28885842130757,50.63858969048709],[-115.28836937346233,50.638540629371136],[-115.28829891923198,50.63853607909903],[-115.28823006424318,50.63852486839676],[-115.28781200283177,50.638478143899206],[-115.28778336913324,50.63847820632203],[-115.28774114999753,50.638475253929045],[-115.28767149558716,50.63846737307046],[-115.28760184120125,50.63845949216841],[-115.28727023998094,50.6382910756374],[-115.28680946349975,50.63806471298091],[-115.28659066182178,50.63796287576585],[-115.28619421346424,50.63776659324879],[-115.28613321264467,50.63778226698014],[-115.28607114543516,50.63780238091817],[-115.28567397225969,50.6379070342754],[-115.28561377086477,50.63791937754298],[-115.28555170323357,50.63793949118847],[-115.28509352607887,50.63805981583509],[-115.28457327804263,50.63820025167558],[-115.28431368607168,50.638268248565936],[-115.28385443567261,50.63839300829269],[-115.28379343318728,50.63840868073188],[-115.28376173201478,50.638421512180685],[-115.28373109741774,50.63842990340577],[-115.28333417990982,50.63853343829437],[-115.28327211041093,50.638553550655885],[-115.2832116408288,50.63856700266899],[-115.28319685675561,50.63856897810188],[-115.28275158429707,50.638695087963825],[-115.28255405685066,50.63874296864966],[-115.28226288908449,50.638823241225516],[-115.28209506341015,50.63886661100716],[-115.28195760384438,50.63890270873856],[-115.2816516518343,50.638984946087774],[-115.28164243282187,50.639082875169294],[-115.28162989772788,50.63913504741255],[-115.2816256304552,50.63915280817514],[-115.28162136317911,50.639170568937146],[-115.28158585566459,50.639437470062774],[-115.28157518736128,50.63948187194797],[-115.28157198686618,50.63949519251283],[-115.28156665270348,50.639517393453644],[-115.2815634522033,50.639530714017695],[-115.28151634105761,50.6398459064731],[-115.28144532329294,50.640379708129394],[-115.2813984792824,50.640693781289194],[-115.28138781049589,50.640738183089674],[-115.28138354297536,50.64075594380895],[-115.2813771416883,50.64078258488679],[-115.28134056455865,50.64105392559741],[-115.28132989562943,50.64109832737325],[-115.28131949340316,50.64114161910136],[-115.28127344576673,50.641452370671026],[-115.28123071545306,50.64180886992006],[-115.28120135565193,50.641990611317965],[-115.28115210764273,50.64231467415077],[-115.28115835751977,50.64234822035203],[-115.28116460740613,50.64238176655154],[-115.28117539179891,50.642396442031306],[-115.28124110931871,50.642658955688134],[-115.2812442929237,50.64270526291377],[-115.28125187659961,50.64273325888425],[-115.28126239437029,50.64274904439131],[-115.28134514762631,50.64305977950133],[-115.28135991619769,50.64311743202571],[-115.28148924141384,50.64359170233538],[-115.28157199992327,50.64390242808344],[-115.28157518182336,50.643948744110986],[-115.28159328409296,50.64399252546975],[-115.2816592752548,50.644253919457874],[-115.28164860588089,50.64429832109434],[-115.28163806878653,50.64434217214697],[-115.28157616910752,50.64465932914291],[-115.2814765043295,50.64519319744633],[-115.28146276805417,50.645250360025564],[-115.28144157981664,50.645278976149044],[-115.28126662279706,50.645471028773],[-115.28122731242183,50.645515499925715],[-115.281203590823,50.64555465691762],[-115.28099038790057,50.645786740009754],[-115.28095241291454,50.64582565198212],[-115.28093322372521,50.64584594715088],[-115.28091430341469,50.64586512339847],[-115.28066312202711,50.64613611771075],[-115.28052840280428,50.64627981738316],[-115.28013361700043,50.646552800304256],[-115.2798045095703,50.64679069053611],[-115.27975388013853,50.646822696750675],[-115.27970311616856,50.64685526239746],[-115.27942677083361,50.64705225610564],[-115.2793761387038,50.64708427101888],[-115.27935828443896,50.647099006847206],[-115.27932537416471,50.64711683648352],[-115.27899652727953,50.64735360525863],[-115.27884409722527,50.647451860484644],[-115.27822343555256,50.64753313228216],[-115.27773665565489,50.64759330731817],[-115.2776636542796,50.64759929119154],[-115.27763421206167,50.6476026899678],[-115.27761849185055,50.64760854529347],[-115.2776047719741,50.647606079856025],[-115.27717700741597,50.64765890432601],[-115.27711692299206,50.64767069228811],[-115.27704405377531,50.64767612518257],[-115.276556205362,50.64774072627568],[-115.27598083093389,50.647812181320504],[-115.2757273091991,50.64785462691481],[-115.27566815936316,50.647862524576496],[-115.27555861588365,50.64796095268826],[-115.27529428184523,50.64804835759455],[-115.2752788280876,50.64805310256655],[-115.27520489036442,50.64806297433901],[-115.2747994867903,50.64814181150753],[-115.27472528188746,50.64815279298033],[-115.27466412844011,50.648169019690535],[-115.27455968196573,50.64818672021116],[-115.27420595240226,50.64828873866543],[-115.27377427833949,50.64841727705612],[-115.27341616895842,50.648477976494014],[-115.27292737114671,50.64854645114244],[-115.27286728442184,50.64855823680204],[-115.27332575313253,50.64867538090228],[-115.2733805005994,50.648685795302846],[-115.27340794054948,50.64869072720915],[-115.27344803263284,50.64870256511756],[-115.27363717598641,50.64874929837617],[-115.27364814025623,50.64894176408284],[-115.27378541918264,50.6490851271948],[-115.27421119353639,50.64933824890868],[-115.27448928089478,50.64949128872165],[-115.27457504676215,50.64955128060733],[-115.27462458920083,50.64958334415636],[-115.27464882656875,50.64960159595631],[-115.27467319635787,50.64961929718218],[-115.27495419772391,50.64981975282038],[-115.27500494085376,50.64984682555153],[-115.27502931305153,50.64986451781417],[-115.27505341620241,50.649883328968926],[-115.2753599934631,50.65009648512995],[-115.27538329610518,50.65011862626248],[-115.27579582698849,50.6505459462778],[-115.27583071757208,50.65057942422463],[-115.27609798316254,50.650837047132555],[-115.27614565973842,50.650876880088525],[-115.27615711073658,50.65088878529741],[-115.27617934868165,50.65091535743832],[-115.27642691669554,50.651135857704496],[-115.27646167368785,50.651169894879985],[-115.27649522860223,50.65120893157057],[-115.27654304044327,50.6512482048892],[-115.2765791321168,50.65127669192663],[-115.27662667506775,50.65131708410579],[-115.2766614323515,50.65135112121166],[-115.27695841908272,50.65160423329747],[-115.27699437679131,50.65163327963836],[-115.27712811005227,50.65202959447823],[-115.27724306045072,50.65208730440538],[-115.27754103474462,50.652217271116804],[-115.27765625303388,50.65227387058465],[-115.27770606755169,50.652304822639714],[-115.27774402896215,50.65232553911854],[-115.27775775028701,50.65232800452496],[-115.2779860532822,50.652450083045274],[-115.27805570408258,50.652517605734694],[-115.27810351867957,50.65255687832283],[-115.27813734292627,50.65259480443323],[-115.27840463372506,50.6528524211925],[-115.27865129038308,50.65307679664526],[-115.2788361223462,50.65332017988667],[-115.27908887904869,50.653638286529414],[-115.27909833119925,50.65365851212431],[-115.27912163753014,50.65368065238148],[-115.27924571835665,50.6539385854248],[-115.27927634239946,50.653989831394455],[-115.27946888093115,50.65432027649217],[-115.27956847605141,50.654501441472135],[-115.27950000887706,50.65484579344341],[-115.27948237503855,50.654978690609646],[-115.27953960504546,50.65515745056577],[-115.27954372069482,50.65519987651374],[-115.27955557503884,50.65521011184001],[-115.27956502773007,50.655230337357416],[-115.27956182551752,50.65524365761387],[-115.27963502422378,50.655475087599044],[-115.2796414092914,50.65550807390725],[-115.27965818008056,50.65555740508141],[-115.27966896714337,50.65557208047579],[-115.27966349563943,50.655594840349686],[-115.2797610535584,50.65590358806339],[-115.279914776361,50.656395544041004],[-115.27993381493118,50.65643544438609],[-115.28007668000241,50.65673438600521],[-115.28010864326683,50.6567800725923],[-115.28012754981617,50.65682052345631],[-115.28025244348679,50.65707513323255],[-115.28028440717227,50.657120819750716],[-115.28030344637793,50.657160719998345],[-115.28039971668969,50.65735575443622],[-115.28046003925493,50.657462125944015],[-115.28058068737695,50.65767485994111],[-115.28091785792408,50.65788016812468],[-115.28092958093899,50.657890953842745],[-115.2810628883818,50.658110592290186],[-115.28113255257958,50.65817811260176],[-115.28118037588891,50.65821738360538],[-115.28121620927178,50.658246978926144],[-115.2813803193926,50.658398040508615],[-115.2814963588331,50.658451305526874],[-115.28156070672074,50.65848139049313],[-115.28161373264774,50.65849902031126],[-115.28201301202408,50.65868421402833],[-115.28203845688185,50.658697473361904],[-115.28238216166402,50.65893521233273],[-115.28249443521055,50.65912327860987],[-115.28266810944321,50.65941326582465],[-115.282686884938,50.65945427557943],[-115.28270926331564,50.65948029557495],[-115.28271885279112,50.659499961270186],[-115.28281820569843,50.65968223225156],[-115.28285829285531,50.6597537020181],[-115.28287653720776,50.65979692289052],[-115.28288705954334,50.65981270792273],[-115.28290930375033,50.65983928731864],[-115.28305206711035,50.66013877448392],[-115.28317698657592,50.660393379977435],[-115.28293774361556,50.66061442368469],[-115.28277407354952,50.66075929477832],[-115.28262227436736,50.66085477410303],[-115.28255643836704,50.66089042582677],[-115.28250699459524,50.66091744209832],[-115.28218940231093,50.66110704495368],[-115.28215341551397,50.66113763591487],[-115.28210250263112,50.66117076154759],[-115.28177436802147,50.66140420448633],[-115.28161709329993,50.661522442185884],[-115.2814958075575,50.66161008004785],[-115.28137225209434,50.661707157354634],[-115.28121817744572,50.66181207424509],[-115.28119925053358,50.66183125017567],[-115.28090269059008,50.66205241945665],[-115.28086469964573,50.662091339523876],[-115.28083178112284,50.66210916040569],[-115.28081405372807,50.6621233456354],[-115.28069062774534,50.662219871560204],[-115.28052374214985,50.66237805924987],[-115.28050374508659,50.66240168398629],[-115.28049947515903,50.66241944421224],[-115.28027498185331,50.66269813296291],[-115.28014419414136,50.66288481430963],[-115.28023629905071,50.66321631861457],[-115.28027876868171,50.663337425157934],[-115.2803793222037,50.66351469798355],[-115.28041222361023,50.66355650351132],[-115.28042194532244,50.66357561874252],[-115.28043113328445,50.66359695399716],[-115.2805836320185,50.66385593198189],[-115.28061840199996,50.663889967345334],[-115.28064264952049,50.663908217530945],[-115.28066729630629,50.663924807132126],[-115.28084168106793,50.664092763657486],[-115.28091760908,50.66419382008567],[-115.28125422325759,50.664639868145485],[-115.2812871263022,50.664681673359176],[-115.28153571134656,50.664957904205274],[-115.28156968232386,50.66499526926705],[-115.28160351886079,50.66503319376359],[-115.28180534590564,50.66526570447124],[-115.28183824992139,50.6653075094912],[-115.28186143128572,50.66533019943487],[-115.28188581244797,50.66534789875228],[-115.28208790921762,50.66557929884828],[-115.28212081372598,50.66562110376927],[-115.28242122656634,50.66597958730421],[-115.28244347355113,50.66600616659773],[-115.28252180998263,50.6660972315786],[-115.2825523136965,50.66614902647271],[-115.28269524237697,50.66638833523548],[-115.28272828253004,50.66642958048993],[-115.28273640481396,50.66645535553853],[-115.28274599365545,50.666475029948195],[-115.28275758486512,50.666486374810674],[-115.2831129760248,50.66661619325505],[-115.28316454566598,50.66663992280623],[-115.28323024054107,50.666664456441325],[-115.28338868125857,50.666720122400406],[-115.28364972889275,50.666825466829934],[-115.28382096401569,50.666887477416374],[-115.28416806157739,50.667170963796],[-115.28422828717008,50.667218256607214],[-115.28454314975657,50.66745715802164],[-115.28459191865629,50.66749254650859],[-115.28464175482713,50.66752349490365],[-115.28489652485804,50.667714560988394],[-115.28492197781581,50.66772781064131],[-115.28497474918393,50.66774654868495],[-115.28501365969483,50.667763381685624],[-115.28503937950504,50.66777552129321],[-115.28545675046831,50.66794540481476],[-115.28549499544899,50.66796500825012],[-115.2856472828036,50.66816546206726],[-115.28582794848839,50.66842658075776],[-115.28590562800088,50.66852042258687],[-115.28610857082415,50.66868885858982],[-115.28614334873188,50.668722892035106],[-115.28617932608073,50.66875193482131],[-115.28619198581538,50.66875883921888],[-115.28645542997731,50.66897344726317],[-115.28649020836815,50.66900748058881],[-115.28650286822257,50.66901438494902],[-115.28653898048466,50.66904286815925],[-115.28657495834554,50.6690719108068],[-115.28677362818809,50.66931773164112],[-115.286919934624,50.66948352857946],[-115.28697602299667,50.66960764646512],[-115.28688215639247,50.669819487146874],[-115.28681256617921,50.66993030707025],[-115.28686238491636,50.670080514835824],[-115.28688063518113,50.67012374340188],[-115.28689968789047,50.67016363302505],[-115.28690834675969,50.67018718761703],[-115.28691780591281,50.67020741215024],[-115.28694311463941,50.67028085540228],[-115.28692442003947,50.67047781713215],[-115.28691161555909,50.67053109803335],[-115.28675457926032,50.67070785741287],[-115.28683705660058,50.67084134374446],[-115.28702132847943,50.671147113459135],[-115.28708513418474,50.67135830079228],[-115.28713602245932,50.671504068109044],[-115.28725955118423,50.671645506027815],[-115.28729353197991,50.671682869048894],[-115.28732857986046,50.67171579198549],[-115.28734110616159,50.67172325567734],[-115.28735070027838,50.671742920687784],[-115.28757404877193,50.67194570162744],[-115.28760776330456,50.67198417455787],[-115.28762042416967,50.67199107876681],[-115.28809502422936,50.672161368490166],[-115.28821350782849,50.67220463547247],[-115.28877299694062,50.67249842596211],[-115.28902980520809,50.67274078635904],[-115.28905552895358,50.672752924968776],[-115.28910404043813,50.672789421280946],[-115.28913868936381,50.672824013076955],[-115.28921185797975,50.67287708800601],[-115.28929353778241,50.67307353669205],[-115.2893125917519,50.67311343464334],[-115.2893179195677,50.67315085978823],[-115.2893284472949,50.67316664396175],[-115.2893404193323,50.67335521300707],[-115.28937026153994,50.67346941062505],[-115.28939543528367,50.67360303802061],[-115.28938633695455,50.67387929856491],[-115.28945749981014,50.6740003283637],[-115.28958449557145,50.67424659288938],[-115.28963114209117,50.67429085904871],[-115.28966486014595,50.67432933125024],[-115.28971270597661,50.67436860672004],[-115.28994434050303,50.674596597121514],[-115.2899771266411,50.674638949846546],[-115.29001217879514,50.67467187182429],[-115.29027753544224,50.67493833351033],[-115.29039295526229,50.67505399314696],[-115.29078973982519,50.67536951170393],[-115.29110362556769,50.67561284124946],[-115.2911514761571,50.67565210716218],[-115.29117693332438,50.67566536414298],[-115.29118733001835,50.67568169866484],[-115.29121292162206,50.67569439618586],[-115.29147403398237,50.67585935543493],[-115.29146976711318,50.67587711579627],[-115.2914730958907,50.675922870324236],[-115.29146642889614,50.67595062088644],[-115.29147615799519,50.67596973487203],[-115.29147239983345,50.67628342859165],[-115.29147665732093,50.676384927797876],[-115.2916168545412,50.6768147578143],[-115.29165403409183,50.67695805849581],[-115.29171440630824,50.677124046718056],[-115.29173239742421,50.677168384149816],[-115.29175172411107,50.67720716258872],[-115.29182155989788,50.67739337465363],[-115.29185994483987,50.6774720503763],[-115.29187780396607,50.67751693833686],[-115.29188753357948,50.67753605225103],[-115.29188206559145,50.677558812128844],[-115.29198175933553,50.677799586245015],[-115.2920093484499,50.67786358806466],[-115.2922054105604,50.67823976504123],[-115.2922881846058,50.67837213612641],[-115.29244493186036,50.67867351763139],[-115.2924638587359,50.67871396534944],[-115.29247452114176,50.67872919855121],[-115.29247212109746,50.67873918874203],[-115.29248185122856,50.678758302576576],[-115.29253050200833,50.6788538717304],[-115.29268299625926,50.678994119868],[-115.29273071743172,50.679033944396416],[-115.29275271031693,50.67906163124241],[-115.2929105392384,50.67917967860906],[-115.29303130624875,50.67933276851183],[-115.29311808464264,50.679448488485825],[-115.29332482804979,50.6798398870264],[-115.29340093980993,50.680000016454024],[-115.29345265834196,50.68014244932744],[-115.29347092117185,50.68018566741814],[-115.293481718663,50.68020034104613],[-115.29348878298723,50.68023055497616],[-115.29359728790078,50.68049433010617],[-115.29361634884187,50.68053422697062],[-115.29361941349721,50.6805810912029],[-115.29364794100934,50.68064120289099],[-115.29377831061156,50.68087358987534],[-115.29389921909949,50.68108574408469],[-115.2941162439767,50.681374775168514],[-115.29422422417316,50.68152151055839],[-115.29432047263528,50.68165746181435],[-115.29435246812662,50.6817031429635],[-115.29436299962806,50.68171892650152],[-115.2943712636091,50.68174414966346],[-115.29457496440733,50.68202904688212],[-115.29458229639394,50.68205815065552],[-115.29459189375613,50.68207782368178],[-115.29472000772559,50.68237926482561],[-115.29491104618678,50.682776525434754],[-115.29489598109883,50.682898870973474],[-115.29489131407723,50.68321644286063],[-115.29489571343917,50.68325775680358],[-115.29490331247278,50.683285750492466],[-115.29489904625423,50.683303510828296],[-115.29489158125416,50.683394216255856],[-115.29496383943093,50.683570434800664],[-115.2949829028917,50.68361033128605],[-115.29499023540083,50.68363943497801],[-115.29499983541278,50.683659099052115],[-115.29512808888357,50.68395998859178],[-115.29518115063681,50.684096869892215],[-115.29520061517144,50.684313988945796],[-115.29530220672237,50.68448736326421],[-115.29549392739489,50.68482220877609],[-115.29554192388557,50.68486092180638],[-115.29575990980297,50.68508643417113],[-115.29579350683376,50.68512546347763],[-115.2958413716601,50.68516472693542],[-115.2960010967444,50.68533463251522],[-115.29597390107021,50.68544785463927],[-115.29589404524624,50.685780310190005],[-115.29584591958574,50.68598066434182],[-115.29577126231729,50.68629146977833],[-115.29575846382464,50.68634475069381],[-115.29575006373078,50.686379720732006],[-115.29568500415554,50.68665056529471],[-115.29567433857656,50.686694966030785],[-115.29566793921902,50.68672160647087],[-115.29558941421764,50.68704850233195],[-115.29544742388984,50.687579957474235],[-115.29535902804578,50.68788829892026],[-115.29534542864305,50.687944909735435],[-115.29533702792818,50.68797987967612],[-115.29527303017879,50.68824628342288],[-115.29524863053878,50.68828822088856],[-115.29523809853606,50.68833206204906],[-115.29520556588815,50.688467483883365],[-115.2951634331509,50.68864286621253],[-115.29514383347495,50.68878408117828],[-115.29493809715153,50.689163430225264],[-115.29493303036979,50.68918452047855],[-115.29479382794275,50.68946579850562],[-115.2947707605864,50.68950218574338],[-115.29474835882473,50.68953580238388],[-115.2947451586698,50.689549122532654],[-115.29461221995726,50.68980431936873],[-115.29460195366254,50.68984705037881],[-115.29458075275477,50.68987566747961],[-115.29457675246836,50.68989231765287],[-115.29445994579422,50.69013998732698],[-115.29443327642443,50.690191364052595],[-115.29424912820323,50.690719306554776],[-115.29414698389841,50.691025182629836],[-115.2941365824631,50.69106847297981],[-115.29411644749959,50.69109264991538],[-115.29411111340957,50.69111485009204],[-115.29401950119208,50.691376885013405],[-115.29400896726472,50.691420725897515],[-115.29400496662862,50.691437376019685],[-115.29399776547616,50.69146734623855],[-115.29389561775722,50.691773221812475],[-115.29372279131363,50.692253991608794],[-115.29372612360122,50.692299745180556],[-115.2937495820989,50.6926194695477],[-115.2937539813316,50.69266078307519],[-115.29375731368118,50.692706536623945],[-115.29377877596973,50.69297494839187],[-115.29378210836788,50.693020701922876],[-115.29377570698601,50.69304734205474],[-115.2937853063438,50.69306701489409],[-115.29379609994758,50.693379826746906],[-115.29382849327355,50.69372199408254],[-115.29376754745431,50.693916001570024],[-115.2936652602957,50.69422242660814],[-115.29364005570118,50.694267693436096],[-115.29363578793937,50.69428545349246],[-115.29362951859115,50.69431154301425],[-115.29353683221635,50.69457800767991],[-115.2935412314452,50.694619321119966],[-115.29353056185307,50.69466372123193],[-115.29351214872442,50.69497882529277],[-115.29346412345296,50.69547677229192],[-115.29346852270297,50.695518085690864],[-115.29343610655675,50.695831836075804],[-115.29342543657249,50.695876236114024],[-115.29342983582603,50.69591754949489],[-115.29341649297042,50.696151930247744],[-115.29340795690834,50.696187450263665],[-115.29339648655362,50.69623518028161],[-115.29338928422538,50.69626515029084],[-115.29338608318754,50.69627847029453],[-115.2933248607161,50.69659284365478],[-115.29326643603186,50.696955190196135],[-115.29322535480269,50.697126130035194],[-115.29316439681536,50.697439392993715],[-115.29316799568456,50.69748403630311],[-115.29315732504243,50.697528436228914],[-115.29310677004183,50.69779840909529],[-115.29309636603415,50.697841699001174],[-115.29308916324783,50.69787166893409],[-115.29308489492546,50.69788942889373],[-115.29307315702155,50.69793826877969],[-115.29311048594938,50.69820027130334],[-115.2931628840382,50.69851881089748],[-115.29317688571322,50.69857978804301],[-115.29319381842032,50.698688187859126],[-115.2931960835563,50.698738381084596],[-115.29323541228945,50.69905168652169],[-115.29323874458488,50.69909743973986],[-115.29324821268142,50.69911766304269],[-115.29324501139833,50.69913098299738],[-115.2932579475599,50.69913677634801],[-115.29327074674735,50.699262376580165],[-115.29344945296083,50.6993534732626],[-115.29351413425458,50.699382439874434],[-115.29356587934963,50.69940561313615],[-115.29396263750986,50.69960296503694],[-115.29405159177068,50.69965017783914],[-115.29418162183943,50.69976496343695],[-115.29419549087646,50.699766876122894],[-115.2943859379652,50.69980913135876],[-115.2944407526743,50.69981953478606],[-115.29450943647925,50.69983185083302],[-115.29483631744291,50.6999026266978],[-115.2949188727316,50.699916846216105],[-115.29498862375782,50.699924721970255],[-115.29505744017393,50.699936487119025],[-115.29534698077731,50.69998377263044],[-115.2955428987415,50.700003266440184],[-115.295894855899,50.700029322804816],[-115.29638951397605,50.699998184167676],[-115.29671613006018,50.699950799425714],[-115.2968696364977,50.699967901555425],[-115.29693912125812,50.699976886094156],[-115.29700807267497,50.699988090597714],[-115.2971626460792,50.70000075230754],[-115.29742671433372,50.70003478606949],[-115.29749553369089,50.7000465408337],[-115.29756635205987,50.70004997495548],[-115.29778961091144,50.700074949916775],[-115.29806007992792,50.7000823420381],[-115.2981023576804,50.700085290306916],[-115.29825786608873,50.70009406103586],[-115.29848752514218,50.7000923944342],[-115.29893870552156,50.70006328697439],[-115.29898951990441,50.70009034717345],[-115.29900232483178,50.700096690416174],[-115.2993652395518,50.70031573784921],[-115.29939058088306,50.70032954313295],[-115.29979458422882,50.700616159979035],[-115.29991329400856,50.700718486128594],[-115.30021940808606,50.700995083007825],[-115.30021407583759,50.70101728321584],[-115.30021741539184,50.70106303611912],[-115.30019570701793,50.701332386009334],[-115.30018304386269,50.701385107038284],[-115.30043927302674,50.70157113046508],[-115.30048689903275,50.701671133606325],[-115.3006906011605,50.70201620478725],[-115.30082599591326,50.70216840563797],[-115.30095098516391,50.70230427320177],[-115.30121028040139,50.702417901605926],[-115.30125789967641,50.70245828082763],[-115.30149093851071,50.702681240176176],[-115.30152455369333,50.70272026694416],[-115.30157244229382,50.70275952712593],[-115.30172384530049,50.70290475842533],[-115.30179348578906,50.70303244513854],[-115.3018371096039,50.703089465375356],[-115.30191796552299,50.703289787260275],[-115.3022639745007,50.70346004999317],[-115.30232840082462,50.70349012136919],[-115.3023790889096,50.703517730481764],[-115.30272656644182,50.70368189110889],[-115.3027783212488,50.703705059982525],[-115.30281620334786,50.70372632610731],[-115.30282900985323,50.70373266888386],[-115.30300881950112,50.70381930972964],[-115.30306820359412,50.703989726576815],[-115.30307994184024,50.70400051825582],[-115.30334477187927,50.704389525239414],[-115.3034065469248,50.704490319445476],[-115.30348820185411,50.704627677604385],[-115.30359626862456,50.704774399883846],[-115.30362775479973,50.70482230602981],[-115.30392658007263,50.705069780137336],[-115.30396019916174,50.705108806061794],[-115.30401022478668,50.70513918497577],[-115.3041521693935,50.70526419033124],[-115.30427691079487,50.70540116368842],[-115.3046383322109,50.705805740238965],[-115.30467756350824,50.70588107885949],[-115.30486636734885,50.70616903728283],[-115.30489705627511,50.706220273035875],[-115.30511933745188,50.706488183842886],[-115.30515322729579,50.70652609044767],[-115.30518511721164,50.706572326593],[-115.30538751756943,50.70680368203351],[-115.30542034180448,50.70684602860347],[-115.30574484572027,50.70728507827254],[-115.30577526989987,50.70733742373194],[-115.3059175084224,50.70752093964101],[-115.30601063642156,50.707610564804106],[-115.30605826552437,50.70765094173044],[-115.30608028278472,50.7076786161309],[-115.3060932230664,50.70768440793567],[-115.30614098664081,50.70772422537535],[-115.3063716624192,50.70789754018077],[-115.3064067525712,50.70793045571017],[-115.30643196605162,50.70794481871934],[-115.30645531618411,50.70796694295566],[-115.30678565325198,50.70820269055149],[-115.3069063987791,50.70829667878345],[-115.30711312881881,50.70868914841896],[-115.30720227945545,50.70885505463809],[-115.30722592934856,50.70899532362438],[-115.3072300761045,50.70903774583669],[-115.30724195098077,50.70904797756541],[-115.30724716370298,50.709085959708084],[-115.30728232056927,50.70935738473428],[-115.30730167241991,50.70939616788097],[-115.30731008307777,50.70942082980983],[-115.30731969400178,50.70944049222389],[-115.30746197642193,50.709743269436494],[-115.3074778664215,50.70979647386506],[-115.30775586015511,50.710250331725696],[-115.30792842873954,50.710546371531386],[-115.30796258836642,50.71058317596585],[-115.30796900209288,50.710616158492556],[-115.30798141051028,50.71062417009109],[-115.30812475071063,50.710862874194206],[-115.30813529389783,50.71087865588754],[-115.3081691874727,50.710916570260636],[-115.3081938723784,50.710933143973925],[-115.30820308323662,50.71095447574156],[-115.30835160416267,50.71111190682547],[-115.30845115651172,50.711234520933644],[-115.30848278670186,50.71128186589665],[-115.30849150061731,50.71142467227433],[-115.30870343685444,50.711735864928094],[-115.3087362678257,50.71177821027677],[-115.30890603244413,50.71202627595221],[-115.30893912814969,50.71206752009021],[-115.30895795180814,50.71210851397903],[-115.30911584271973,50.71234634773267],[-115.3091277189014,50.712356579220916],[-115.3091614822673,50.71239504379496],[-115.30919750951975,50.71242407765384],[-115.3092093857406,50.712434309132405],[-115.30946027230144,50.712702691980084],[-115.30956303075767,50.7128119757829],[-115.3100405814841,50.71309143701514],[-115.31007754347186,50.713116581063275],[-115.31043753307821,50.71328872716972],[-115.31048823721915,50.71331633228122],[-115.31052639964685,50.71333647664962],[-115.31053894142245,50.71334393736877],[-115.31069252082139,50.7134206429426],[-115.31083357668457,50.71354952808795],[-115.31086854238245,50.713582992565115],[-115.31087895289618,50.713599333398456],[-115.31090364027831,50.71361590646028],[-115.31113867024864,50.713890704167234],[-115.31119805556055,50.71394186042555],[-115.31131076288956,50.71424858905625],[-115.31137232363918,50.71441011923301],[-115.31139983077145,50.7144746640527],[-115.31148594604642,50.71465332649993],[-115.3115145170176,50.71471344007565],[-115.3115336105527,50.71475332338307],[-115.31155256984913,50.71479376613503],[-115.31163226929834,50.71493944625068],[-115.31156173671987,50.715054165190686],[-115.31153880408067,50.71508999534277],[-115.31152266396383,50.71509752444699],[-115.31149919630539,50.715135583507035],[-115.31131572490862,50.71542225994023],[-115.31101131769421,50.71591419368598],[-115.31099424573759,50.71592560332468],[-115.31081076788486,50.71621227866124],[-115.31078343670198,50.71626642830842],[-115.31076023424781,50.716303377145216],[-115.31060102190062,50.71654866312435],[-115.31057675335543,50.71659005196972],[-115.31055541784174,50.71661922176701],[-115.31053741186034,50.716634520817536],[-115.31035419464664,50.7169200851503],[-115.31005163199639,50.717404245320026],[-115.31003229319252,50.71742509433675],[-115.31000496033154,50.717479243716014],[-115.30994407094495,50.717732885885454],[-115.30993354638888,50.71777672690615],[-115.30992288751027,50.71782112736947],[-115.30987294346706,50.71808888133044],[-115.30986228445433,50.71813328177159],[-115.30985189189659,50.718176572198566],[-115.30977701159303,50.718488485180735],[-115.30970388189812,50.718852809715024],[-115.30966377487492,50.71901987058657],[-115.30960210244079,50.71933646444245],[-115.30959144286368,50.71938086479246],[-115.30958637955716,50.71940195495757],[-115.30958118406674,50.71942359568624],[-115.30954334232557,50.71958121689061],[-115.30944930720442,50.71967436114838],[-115.30939754856819,50.71971082696366],[-115.30936060164682,50.71974530516339],[-115.30907007932493,50.720000075665595],[-115.30861081784983,50.72042028363463],[-115.30859094403505,50.72044335233765],[-115.30836593405604,50.72072374789333],[-115.30832685114238,50.72076711462191],[-115.30828963599815,50.720802702428394],[-115.30810223876017,50.72104584009423],[-115.30806515540921,50.72108087725273],[-115.30804101640881,50.7211217058847],[-115.30802180727174,50.72114200390064],[-115.3078688436437,50.721420826130995],[-115.30781936435211,50.72150748271798],[-115.30791817508174,50.72175267008149],[-115.30816158944043,50.72187325769427],[-115.30827702520914,50.721929820847045],[-115.3086019587696,50.72200942569675],[-115.30865466953497,50.722028710775405],[-115.30868229254165,50.72203307413064],[-115.30898618990732,50.722259999062146],[-115.30903503764854,50.722295374565896],[-115.30907213884895,50.72231996811225],[-115.30925742317216,50.72256327205649],[-115.30930227371807,50.722615297486094],[-115.30941855063382,50.722787782410656],[-115.30975356365654,50.72306426909149],[-115.30991039175277,50.72318728572806],[-115.31006708639235,50.723310861569],[-115.31011673563067,50.72334290654186],[-115.31016571975792,50.723377722063574],[-115.31039662374508,50.72355047479341],[-115.31043133041725,50.72358504901824],[-115.31046536984384,50.723622402684015],[-115.31048859581203,50.72364508511068],[-115.31074743500737,50.723940342798414],[-115.31083514269639,50.72405272175289],[-115.31109689753056,50.7242761375968],[-115.31123037249547,50.72437702936748],[-115.31143486323279,50.7245404086895],[-115.31160406997809,50.72455218106805],[-115.31167506027523,50.72455505557736],[-115.31174591841378,50.724558480605054],[-115.31178822012922,50.72456142360584],[-115.31204476406523,50.72474685586697],[-115.31207947080134,50.7247814384111],[-115.31212832372682,50.724816812457],[-115.31239302045262,50.725028014981525],[-115.31242706260727,50.72506536798612],[-115.31283488309853,50.725456751812835],[-115.31294298297641,50.72548420882599],[-115.31340527308058,50.72558896735051],[-115.31347413368952,50.72560072079041],[-115.31354179646988,50.7256174647927],[-115.31356835644799,50.72562626696102],[-115.3139374919134,50.725701037059146],[-115.31402036714265,50.72571413200839],[-115.31407428452962,50.725728414955896],[-115.31445636826768,50.72580897408482],[-115.31453444854601,50.72584204886494],[-115.31496848054122,50.726004840294905],[-115.31529025882553,50.726097745458766],[-115.31535805516127,50.726113937784405],[-115.3157770939485,50.726160003557304],[-115.31584595818626,50.726171746647104],[-115.31590200769624,50.72617714858673],[-115.31591575370223,50.72617960908215],[-115.31598554924271,50.726187471473615],[-115.31636457821294,50.726280784763915],[-115.31637699246207,50.72628879528153],[-115.31643117765152,50.72630196706589],[-115.31644492372479,50.726304427495826],[-115.31675282685342,50.7263954274322],[-115.31688602650048,50.726437791527225],[-115.31707460950345,50.72648833629349],[-115.31725160809009,50.7265871620644],[-115.31740268433093,50.72661477614963],[-115.3176025578781,50.726558518021285],[-115.31762283033343,50.726533778413184],[-115.31773353868023,50.726430878089936],[-115.31773779996038,50.72641311778697],[-115.3178052415596,50.726251535447894],[-115.31781642729356,50.72620491463448],[-115.31783882794875,50.72617130370133],[-115.31774621301538,50.72590003649043],[-115.31773566291739,50.72588425598387],[-115.31772711134417,50.72586014588872],[-115.31771027242166,50.725810824554934],[-115.31765496198135,50.72568284087617],[-115.31761216926871,50.72550268622042],[-115.31751081175254,50.7250886152591],[-115.31756680018977,50.72497476368533],[-115.31757612157757,50.7249359129693],[-115.31778743916949,50.72483192351265],[-115.31791857798983,50.72476335445787],[-115.31798208278461,50.724737674759055],[-115.31803170761202,50.72471009423688],[-115.31825903340612,50.72459912447085],[-115.31834760240238,50.72452872436578],[-115.31836440945936,50.72451842374163],[-115.31839842619911,50.72449614413064],[-115.31844911570647,50.724464123322896],[-115.31872763051813,50.724259280853296],[-115.31876484237993,50.72422368083402],[-115.31884405700013,50.72413250919197],[-115.31914543108941,50.724011637730115],[-115.31945082904109,50.72393374590427],[-115.31963481455755,50.723883895225406],[-115.31993821490515,50.72381432281667],[-115.3199837115632,50.72380394238518],[-115.32004508376049,50.72378714170649],[-115.32035354155218,50.72369647762991],[-115.32041810843239,50.72366635639883],[-115.32046493605966,50.723650425624875],[-115.32048161024373,50.72364067524599],[-115.32054511198238,50.72361499405617],[-115.32068985430796,50.72354944103625],[-115.32098057022955,50.723472965733976],[-115.32101192043449,50.72346179448535],[-115.32146684593137,50.72329835401328],[-115.32171831817406,50.72320617650121],[-115.32196885872854,50.723117879089536],[-115.32211985417112,50.72302623395195],[-115.3221537337496,50.72300451261541],[-115.3221833541024,50.723000551812305],[-115.32223417338263,50.72296796977341],[-115.32243385510192,50.7228526312843],[-115.3225734025927,50.72280871700444],[-115.32258901125202,50.72280340644209],[-115.3226358372078,50.72278747474179],[-115.32269907032033,50.72276290233703],[-115.32313571019634,50.72261587474992],[-115.32337010386104,50.72253510484804],[-115.32365681624165,50.72247527305205],[-115.32393487895439,50.72245151234087],[-115.32441921310212,50.72240447034936],[-115.32447738805288,50.72240098768924],[-115.32449339661792,50.722394007357664],[-115.32455157154938,50.722390524658806],[-115.324891040307,50.72240958931486],[-115.32499271228463,50.72240405367056],[-115.32500858664301,50.72239763272609],[-115.32505275006615,50.72239280042032],[-115.32512693341491,50.72238233700767],[-115.32531813064705,50.722362136714715],[-115.32561875838945,50.7223638307266],[-115.32564837801334,50.72235986900168],[-115.32624288956985,50.7224511870964],[-115.32644627617802,50.72249973533412],[-115.32690763683402,50.72260831906085],[-115.32697556619257,50.72262394493877],[-115.32700292313969,50.72262942268623],[-115.32704296344386,50.722641790867115],[-115.32735525202156,50.72271445065236],[-115.32743573103595,50.722737526114514],[-115.32750233044105,50.722758701903764],[-115.3275702602344,50.72277432741728],[-115.32801242558772,50.72290320787731],[-115.32814708771761,50.722939457894434],[-115.32878945798521,50.72313019169057],[-115.32895028285446,50.72317690881234],[-115.32924577416611,50.72325986549834],[-115.32931357337705,50.723276040527374],[-115.32933880281284,50.72329039810356],[-115.32955780672208,50.72333362024266],[-115.32970608535052,50.72337287777027],[-115.32975787679972,50.723396033597986],[-115.32982261618638,50.7234249783479],[-115.32983529806083,50.72343187734496],[-115.32998987494467,50.72350467472537],[-115.33019531216023,50.723604517127704],[-115.33027047416593,50.723649791568164],[-115.33033308623305,50.723687616432656],[-115.33065123930072,50.72373584575935],[-115.33069473951366,50.72373378192327],[-115.33076572973641,50.72373664430247],[-115.33095187644825,50.72373752541453],[-115.33117083499117,50.723721122380724],[-115.33125743530366,50.723718663809024],[-115.33147426585117,50.72371114061763],[-115.33181600718521,50.723720753168585],[-115.33210688750995,50.72370332032932],[-115.33235214203094,50.723696822809785],[-115.33262502070997,50.72369469105748],[-115.33266825272028,50.72369374539111],[-115.33274137267365,50.72368771716979],[-115.3330904283477,50.7236667947792],[-115.33317636255735,50.723667114307716],[-115.3332332088141,50.723669177388985],[-115.33327551109858,50.72367211225542],[-115.33330393316801,50.723673148214736],[-115.33357508422984,50.72367822508859],[-115.33368709972214,50.72374919263866],[-115.33375489914629,50.72376537384298],[-115.33392961175174,50.723813982595146],[-115.33409983442219,50.7237616497987],[-115.33415841510372,50.72345725476547],[-115.33417303991882,50.723396201356096],[-115.33421061331848,50.7231795010912],[-115.33423074107378,50.72315531784286],[-115.33425605282773,50.723109492809826],[-115.33428136665718,50.723063658888016],[-115.33445421864802,50.722820799270174],[-115.33445834108252,50.72280358884586],[-115.33447846853565,50.72277940554226],[-115.33450245035806,50.72273913075117],[-115.3345489546601,50.72266467317869],[-115.33484708596964,50.72255707991545],[-115.33487883196929,50.72254423522558],[-115.33511009326226,50.722416579910856],[-115.33546721752757,50.72218236287842],[-115.33548508536434,50.72216761050265],[-115.33580594084042,50.72196510832842],[-115.33585050252086,50.72195860220888],[-115.33589705703109,50.72194377500154],[-115.33591186625111,50.721941792776335],[-115.3359741593543,50.721921102511025],[-115.33614118228711,50.72188208730691],[-115.33637156107939,50.72181794108518],[-115.33640237461351,50.72180898563421],[-115.33643292442207,50.72180113136353],[-115.33650816536333,50.72178622898727],[-115.33676316709317,50.721798830786284],[-115.33695991644417,50.72187511167182],[-115.33698754210674,50.72187946802743],[-115.33711524212211,50.72188493811874],[-115.33776427850142,50.72204787764667],[-115.33779190434848,50.72205223380248],[-115.33811874960826,50.722123991140464],[-115.3382457870279,50.722132230679975],[-115.33831690915885,50.722134528788445],[-115.33836000771178,50.72213413151393],[-115.33856500072794,50.72217599726059],[-115.33873952136686,50.72216552708376],[-115.33879689754411,50.72216536718822],[-115.33886775397384,50.722168775020506],[-115.33888269709078,50.722166232924216],[-115.33891018916572,50.722171148280545],[-115.33893874436758,50.7221716233301],[-115.33908045727914,50.72217843876972],[-115.33942830123485,50.72216249631572],[-115.3394855455855,50.722162886664194],[-115.33962188295551,50.722132280847426],[-115.33998461071086,50.72205416348172],[-115.3401926009614,50.72202363381026],[-115.34025210292664,50.722014592541775],[-115.34062325995154,50.721961132171],[-115.34073854323825,50.72195859025592],[-115.3407681612589,50.72195462451974],[-115.34079857647295,50.721947328536515],[-115.34087155855894,50.72194185446083],[-115.34101659156882,50.72193479588745],[-115.34132133675378,50.7219192369526],[-115.34136443507326,50.721918838518754],[-115.34143741704388,50.72191336407308],[-115.34159712703548,50.72190487238611],[-115.34186374921501,50.72192880941822],[-115.34193460550404,50.72193221530594],[-115.34221484239403,50.721959159404044],[-115.3426414430808,50.72197348281622],[-115.34278634413525,50.72196697254686],[-115.34307827152996,50.72194507076301],[-115.34326839612402,50.72192928007424],[-115.3433108291967,50.72193166054363],[-115.34332563808509,50.721929677335424],[-115.3433392525204,50.72193268507086],[-115.34341329694473,50.72192276899119],[-115.34355726683528,50.72192014746251],[-115.34383518166646,50.72189689667931],[-115.3438786794893,50.72189482770441],[-115.3439082971903,50.721890861135265],[-115.34395258984212,50.72188547075073],[-115.34445097801503,50.72177949835496],[-115.3444962012955,50.721770218003556],[-115.34517600811974,50.7216249094661],[-115.34525204484798,50.721606662044344],[-115.34561382784867,50.7215324161081],[-115.34573309387531,50.72151321766088],[-115.34579312526036,50.72150195325118],[-115.34586743403625,50.721490925447334],[-115.34588210880159,50.72148950138567],[-115.34624030095382,50.72131043143776],[-115.34627005191949,50.72130590475244],[-115.34633008289235,50.721294640051326],[-115.34663010344994,50.721238875547186],[-115.34681544336661,50.72124306050873],[-115.34715916202849,50.721244295992875],[-115.34755001896696,50.72104848380485],[-115.34780992271038,50.72092072420623],[-115.34789465784532,50.7209260234117],[-115.34795595321728,50.720969389007266],[-115.34800509581976,50.72100363741864],[-115.34805370740132,50.72104010600333],[-115.34837140956535,50.72126994004928],[-115.34843722004986,50.72129443368753],[-115.34881594832459,50.72144892912455],[-115.34885519699435,50.721464619801104],[-115.34930133273652,50.721636946307754],[-115.34961351865564,50.721710094554155],[-115.35012991129098,50.721828416764765],[-115.35014259583616,50.72183531346881],[-115.35016889525177,50.7218452170747],[-115.35019439605544,50.72185845986167],[-115.35054497921804,50.722010807567756],[-115.3506107919758,50.72203529990401],[-115.35062214920154,50.72204774706649],[-115.35066153070956,50.722062886486206],[-115.3508838081419,50.7221523766088],[-115.35107753108592,50.722241394340664],[-115.35142705622546,50.72239818850464],[-115.35164947064145,50.72248711757556],[-115.35180280961119,50.7225052538165],[-115.35181655645924,50.72250770990449],[-115.3522627317869,50.72238022670308],[-115.35232408994337,50.72236340826256],[-115.35238757164173,50.722337708934056],[-115.35262323838462,50.72225132709095],[-115.35273831231643,50.722189701321916],[-115.35275312087316,50.722187716864354],[-115.3527877812976,50.722162655892966],[-115.35283844361975,50.72213061939532],[-115.35308565564877,50.72199594240595],[-115.35321659844453,50.721927891185565],[-115.35341407251182,50.72182137805793],[-115.3537112250882,50.72171761528553],[-115.35394263953316,50.72164899236841],[-115.3539889223372,50.72163526772677],[-115.35431895137981,50.72157384373278],[-115.35440979045354,50.72155361428806],[-115.35448595493934,50.72153480996297],[-115.35454624954555,50.72152243073632],[-115.35468284220275,50.721490687519605],[-115.35493078610737,50.72141286652269],[-115.35500721551395,50.72139295172499],[-115.35506830591505,50.721377241871714],[-115.35528504212172,50.721310041414746],[-115.35552475769096,50.72126663264935],[-115.35571752862309,50.721239719601094],[-115.35573326655297,50.7212338448994],[-115.35591282125371,50.721202255671145],[-115.35622604526117,50.721151141205105],[-115.3563463671056,50.72112749094693],[-115.3567483065674,50.72106501596973],[-115.35678946558468,50.72101275137158],[-115.35681448775823,50.720968031232225],[-115.35683261342213,50.72095216530201],[-115.35702531796724,50.72068563338917],[-115.35706329031922,50.720646698987565],[-115.3570864568849,50.72060974072802],[-115.35746537350936,50.720403676290466],[-115.35751337952813,50.72038272993882],[-115.3581130806337,50.72015243722397],[-115.35816811526792,50.72010207675865],[-115.35818716756287,50.7200823296009],[-115.35825488731213,50.72003886489226],[-115.35850817305831,50.71987864272042],[-115.35852709140667,50.71985945500223],[-115.35855896241877,50.71984604403922],[-115.35861054754405,50.71981011495916],[-115.35896328406358,50.71959358409853],[-115.35901380750265,50.719562095325564],[-115.35938262875668,50.719398200049845],[-115.3594174148909,50.71937258631597],[-115.3595353898987,50.71929874193398],[-115.35985006427478,50.719061512277655],[-115.36002987262391,50.719028806221296],[-115.36020968071092,50.71899609987421],[-115.36032102648707,50.71877002192378],[-115.3603242092588,50.71875670036047],[-115.36034869831317,50.71871419069028],[-115.36044050730375,50.71844989852483],[-115.3604447509214,50.718432136429065],[-115.3604511163416,50.71840549328447],[-115.36047560508403,50.718362983568895],[-115.36051945297311,50.71823944313795],[-115.36052091581946,50.71805334687228],[-115.36052348510988,50.71780262814652],[-115.36094841719135,50.71770373821302],[-115.36124136878325,50.71767734831559],[-115.3614156458045,50.71760777088111],[-115.36146404372091,50.717585162001505],[-115.36152751342418,50.71755945733392],[-115.36155832113305,50.71755048601766],[-115.36183916042043,50.717454796918425],[-115.3619026297244,50.71742909203382],[-115.36196503822643,50.717407827656025],[-115.36202850739188,50.71738212269844],[-115.36244025968647,50.717218369987506],[-115.36253652326442,50.717175371573084],[-115.36326924541102,50.71716790610516],[-115.36382879984164,50.71716538595526],[-115.36384267721856,50.71716728994877],[-115.36387136312575,50.71716719911598],[-115.36388404846505,50.71717409429736],[-115.36391246712267,50.717175122476014],[-115.36432736383905,50.7172382093376],[-115.36439609345315,50.71725048212904],[-115.36442345168854,50.7172559507453],[-115.36446482310485,50.71726275487801],[-115.36494950961891,50.717333680439985],[-115.3653915026043,50.71740334195941],[-115.36578531200452,50.71737468914342],[-115.36626928232,50.71732857555333],[-115.36634132708474,50.71732696587736],[-115.36641429853523,50.717321475082386],[-115.36683838079124,50.71728607505798],[-115.36686799341913,50.71728210237927],[-115.36691121852456,50.71728114345246],[-115.36696938352476,50.717277638640525],[-115.36727594341228,50.71725423777086],[-115.36745785946874,50.71721263849602],[-115.36763871502563,50.71717547952171],[-115.3682719721401,50.717044310641],[-115.36837747046235,50.717022633835164],[-115.36835011861888,50.71677699785962],[-115.3683467084295,50.716731247864274],[-115.3683425031862,50.71668882832234],[-115.36832584885016,50.71645841750689],[-115.36833432946293,50.716422892632515],[-115.36832455886271,50.71640378627477],[-115.36833091931656,50.71637714261752],[-115.36832750917716,50.716331392599955],[-115.36833099847203,50.71601660119092],[-115.3683334889126,50.71582606372412],[-115.36825847760716,50.715479904232915],[-115.36825003232128,50.71545524708022],[-115.36813057241172,50.71517522013558],[-115.368124512403,50.71514057158261],[-115.36811262203737,50.71513034640596],[-115.36809321304537,50.715091582956],[-115.36803883220738,50.71495918202697],[-115.36798471670842,50.71482567089722],[-115.36797826039242,50.71479268311186],[-115.3679655750972,50.71478578837626],[-115.36794855154851,50.71473703350229],[-115.36785049050792,50.71448744781044],[-115.36781959049499,50.714436789398114],[-115.36772470895735,50.714173890539826],[-115.36806463878436,50.71401060801343],[-115.36846709801759,50.713825505682756],[-115.3685308233904,50.71379868676528],[-115.3685792136139,50.7137760747009],[-115.36891900376447,50.713613349016136],[-115.36898259501295,50.71358708935353],[-115.36904605475472,50.71356138029215],[-115.36943529084306,50.71337160006443],[-115.3696912468516,50.71325988126497],[-115.3701274100627,50.71305358741063],[-115.37052985220492,50.71286847743711],[-115.37058035995615,50.712836983182655],[-115.37064275795986,50.712815713840804],[-115.37098266476231,50.71265243105202],[-115.37103211223359,50.71262537723974],[-115.37109450972898,50.71260410764012],[-115.37149813703765,50.712413993899695],[-115.37191735794413,50.712218570018436],[-115.37217687838545,50.71209185368128],[-115.3725793034497,50.71190673611199],[-115.37264289013808,50.711880474312245],[-115.37269127622127,50.71185786041485],[-115.37303103693769,50.71169512185046],[-115.37306316269081,50.71168059645004],[-115.37309475655798,50.7116683002612],[-115.3731582112307,50.71164258880492],[-115.37354754677695,50.711452234288714],[-115.37412737101216,50.71118419177438],[-115.37423947377523,50.71113475495595],[-115.37462773888743,50.71094884613505],[-115.37469225098141,50.71091869308721],[-115.37475464436918,50.71089742139972],[-115.37493403920979,50.71080616946336],[-115.37485300158741,50.710545169283854],[-115.3747545394963,50.710237075692966],[-115.37474609162803,50.710212418879195],[-115.37473764376905,50.710187762063974],[-115.37473224033278,50.710150342667184],[-115.3746394480783,50.70987855806551],[-115.37463285411118,50.70984613000126],[-115.37461688449096,50.709792935155996],[-115.37451842567101,50.70948484108334],[-115.3744404124998,50.70927125123321],[-115.374343280167,50.70895760593338],[-115.37424508988458,50.70864840113917],[-115.37424826780553,50.708635079020276],[-115.37422819531517,50.70859908734062],[-115.37422279249489,50.708561667849025],[-115.37412868247199,50.70829543319809],[-115.37412447255431,50.708253013451944],[-115.37410717996553,50.708205369318144],[-115.37400793364233,50.70790060474966],[-115.3739835205741,50.707822743870395],[-115.37404064089428,50.707763493436154],[-115.37425076892536,50.70748328792549],[-115.37426795505237,50.70747130897815],[-115.37428898210096,50.707443228002894],[-115.37432692827237,50.70740428712511],[-115.374513248749,50.707163805548426],[-115.37453440684618,50.70713517386788],[-115.37455132795394,50.707124305051224],[-115.37457539891267,50.7070834613889],[-115.37480058772849,50.70680015705015],[-115.37506213180602,50.706484563198245],[-115.37518735588822,50.70631998402002],[-115.37541147788073,50.70604111892259],[-115.37543170919812,50.70601636823304],[-115.37544968879257,50.70600105853451],[-115.3754876327377,50.705962117195995],[-115.37567500010569,50.7057171925377],[-115.37571201796892,50.70568213231257],[-115.37573608709805,50.70564128833044],[-115.37596046705747,50.70536131172307],[-115.3761606444769,50.705122729330256],[-115.37637232299669,50.705196395141876],[-115.37642517654703,50.70521508907762],[-115.37649177304912,50.70523623608885],[-115.3769268914181,50.705394341038975],[-115.37745635903686,50.70557739536516],[-115.37766791052401,50.705651609334225],[-115.37810422721942,50.70580471821145],[-115.37817003124815,50.705829194775134],[-115.37822262158045,50.70584899803562],[-115.37860701208187,50.70597953062279],[-115.37865880867703,50.70600266424545],[-115.37872554080907,50.70602325036861],[-115.37916173132083,50.706176914581995],[-115.37990171746065,50.70643860857845],[-115.38033871214486,50.706588928658945],[-115.38040451854182,50.70661340388304],[-115.38045737544007,50.706632095878724],[-115.38082684565487,50.70676515952555],[-115.38089371118203,50.70678519367774],[-115.38095925351949,50.70681077876398],[-115.38139651789183,50.70695999332517],[-115.38171287097106,50.70707547264317],[-115.38213547147883,50.70722611305685],[-115.38257274592463,50.707375314056954],[-115.38262547125863,50.70739456454927],[-115.38266471945343,50.70741024360336],[-115.38269101547313,50.707420148600434],[-115.38306063215644,50.70755264519202],[-115.38312723525306,50.707573788186814],[-115.38315379607083,50.70758258287404],[-115.38319410301169,50.7075938209423],[-115.38361644878174,50.70774556585753],[-115.38399981288791,50.70788052038534],[-115.38449399580564,50.70773083797824],[-115.38513950428963,50.70754739248936],[-115.38527801581199,50.70750728924808],[-115.38572368239144,50.70738078034646],[-115.38575447615911,50.707371811130066],[-115.3857858010983,50.70736061261216],[-115.3858611347505,50.70734511719584],[-115.38624679597301,50.707229892315254],[-115.38630891423597,50.70720972428637],[-115.3863702388882,50.70719288684404],[-115.3868309658319,50.70706327431671],[-115.38701546746533,50.70701054060085],[-115.38760095404486,50.70683836748461],[-115.38806061590074,50.70671319067226],[-115.38812193921741,50.70669635225795],[-115.38818405589936,50.70667618317307],[-115.38856957212253,50.70656150972569],[-115.38860010241571,50.706553641047336],[-115.3886307638696,50.70654522169473],[-115.38869314457065,50.706523942109676],[-115.38915266688018,50.70639932030269],[-115.38953712262759,50.70628907545531],[-115.38975781284296,50.70638515116149],[-115.3898082935095,50.70641383068166],[-115.38982097979333,50.70642072300387],[-115.38985930309575,50.70644028974511],[-115.39025945507304,50.70662508520604],[-115.39059538453726,50.706778748712004],[-115.39094241648215,50.70694596467996],[-115.39135685051703,50.707130986976175],[-115.39140759743768,50.707158555529],[-115.39145834442066,50.7071861240578],[-115.39180696903905,50.70734667594384],[-115.39185771648003,50.70737424428511],[-115.39188427889022,50.707383036897546],[-115.39192353030899,50.707398712697156],[-115.39232290620974,50.70758683121336],[-115.39285140281203,50.70783443554874],[-115.39300602812709,50.707907147030895],[-115.39340647048752,50.70809082067143],[-115.39345695540389,50.70811949848421],[-115.39352171380939,50.708148406823724],[-115.39385634414553,50.70830761135551],[-115.39392216043271,50.70833207856245],[-115.39397291028709,50.70835964591033],[-115.39437230332824,50.70854775688268],[-115.39464350129634,50.708672500032925],[-115.39478557791372,50.70873775767021],[-115.3950555877114,50.70886750024476],[-115.39545485871459,50.70905615790397],[-115.3955206769709,50.709080624147184],[-115.39557142865355,50.70910819074402],[-115.39592114009224,50.709264288514795],[-115.39597189222856,50.709291854923585],[-115.39602264442722,50.70931942130859],[-115.39643712132104,50.709504424229564],[-115.40400811068426,50.712131617059846],[-115.40808761702192,50.71425883504429],[-115.41234467380052,50.720463238531636],[-115.40867810832904,50.72653972829496],[-115.40749812552252,50.73216278571049],[-115.40875401443799,50.735741896025424],[-115.41317032448801,50.73748750843068],[-115.41936139907207,50.74063473903887],[-115.4230244575293,50.745312287586344],[-115.42684381298932,50.749757562991874],[-115.43021570214034,50.75403680070149],[-115.43696645388557,50.75562547336843],[-115.44228050835441,50.75541258581569],[-115.44310352479349,50.755510197733585],[-115.44771331758982,50.75754100931304],[-115.451995069679,50.758597521519455],[-115.45868861734363,50.75710263948374],[-115.46498126189738,50.75469402570854],[-115.47031025091331,50.75453687511155],[-115.47629955853532,50.75716615577024],[-115.48027391881504,50.760980534225745],[-115.48052527480652,50.76240468646989],[-115.48104209511374,50.767256287074986],[-115.48179204736385,50.77330660256706],[-115.4878821560921,50.77958959937355],[-115.49368215710793,50.78376665731865],[-115.49780599700496,50.786720558291215],[-115.50314420923098,50.78878784360395],[-115.51079202092804,50.7881840673891],[-115.51454710020488,50.7857695541685],[-115.52373454715,50.786849529501595],[-115.52975197758073,50.7898756490271],[-115.53191434898936,50.79349154024948],[-115.53349332008149,50.79769708857304],[-115.53962479603287,50.79774573143811],[-115.54644671949723,50.79864219102602],[-115.55354005666213,50.80473712444433],[-115.55703796693068,50.80787282537337],[-115.56119471827743,50.81150608992294],[-115.56084968833889,50.8170095472097],[-115.5568675292875,50.825890604842954],[-115.55849615398643,50.83112144761782],[-115.56205913886292,50.8336845281704],[-115.56954420642786,50.83857093448528],[-115.57856027347108,50.841653229377684],[-115.59390312568122,50.844777024517576],[-115.60272522217554,50.84562996199263],[-115.60876878398034,50.84190345636568],[-115.61135694514216,50.8379617270117],[-115.6176075823952,50.83635250195358],[-115.62923238955503,50.83737434425144],[-115.63842702430986,50.84210444067767],[-115.64010865301964,50.84659586384872],[-115.64106791439848,50.85092121432937],[-115.64078472225538,50.857617031737405],[-115.64270574956917,50.86330328967416],[-115.64642618122042,50.86848624266644],[-115.64537545602532,50.87274461523526],[-115.63433810981739,50.87600015495593],[-115.62698024621193,50.879066647501176],[-115.61878455870703,50.87974821849404],[-115.61194888934395,50.88217263739462],[-115.60987269956685,50.8858206264861],[-115.60435363003579,50.88752896727819],[-115.5969895389672,50.88704586200296],[-115.58864184646336,50.888242292492734],[-115.58297881818612,50.889210488752],[-115.576518160647,50.8900833139914],[-115.56734877453972,50.89146518190571],[-115.56110337600542,50.894964721999195],[-115.56205980428054,50.89951896981743],[-115.56496733236027,50.90501409493914],[-115.56936536774715,50.90778431283052],[-115.5718932540179,50.90939304868688],[-115.57877959691291,50.91314982416963],[-115.58974309132024,50.91676740448492],[-115.59910208030185,50.921096933121134],[-115.6067145750577,50.92809486993272],[-115.60574203547924,50.932119797396076],[-115.6004931357091,50.93737523263719],[-115.59945409694461,50.938367615970655],[-115.59854619867804,50.941990618766496],[-115.60327057866606,50.94578614602952],[-115.60924928974848,50.94927109015495],[-115.6104415343395,50.95296781051304],[-115.61036269988212,50.95840069247301],[-115.61291995787312,50.96229709774112],[-115.61905217340619,50.96698287763353],[-115.62307945051822,50.971250564533975],[-115.62606714719197,50.976392016483864],[-115.62709597560594,50.980549019851004],[-115.62805466873874,50.98156171630239],[-115.6302275059142,50.98323525827641],[-115.63571781865447,50.98575756208638],[-115.64167438777758,50.99238680509372],[-115.64451387415156,50.99638978724162],[-115.64789679306892,50.998502975175505],[-115.65228135315579,50.998984404235735],[-115.65790318480947,50.999044241308916],[-115.66365053219002,50.99955389784555],[-115.66561313215051,50.9999142911661],[-115.66814770403958,51.00214674047108],[-115.67014711296994,51.00432618360384],[-115.67368381856892,51.00856728009393],[-115.67813299768494,51.0114336328234],[-115.68257459431108,51.01464391526972],[-115.6865626713154,51.01899811175511],[-115.68683343828685,51.022599362103804],[-115.6876434731924,51.02648577536901],[-115.68874022879913,51.02809124446645],[-115.6913789895416,51.02592759698714],[-115.69738102718064,51.02251043035235],[-115.70457258749984,51.020297341229686],[-115.70930115536697,51.01887560316306],[-115.71285050250403,51.016881114755904],[-115.71857015584344,51.01683724323325],[-115.7228509859316,51.01833213648861],[-115.72683702200185,51.0209113515795],[-115.73084616366293,51.022523235384995],[-115.73439042573412,51.02384040928646],[-115.73492733745941,51.02544147357855],[-115.7328342805564,51.029613340974024],[-115.73591937329226,51.03247676669422],[-115.74092744231852,51.032772272829334],[-115.74410298412694,51.031579059759],[-115.74847144297935,51.03158470173435],[-115.75383945176267,51.033314017051886],[-115.75792817374922,51.03508854327942],[-115.76548495550344,51.040076800734546],[-115.7702964551487,51.048146497976965],[-115.77074999590056,51.051860495909295],[-115.76883464998963,51.054089673919385],[-115.76311248283601,51.058425826012176],[-115.75964807327703,51.06254212107168],[-115.75927466105944,51.06608460286526],[-115.75736316895318,51.069225903132995],[-115.75263126438146,51.07201690895336],[-115.74898218478933,51.07418226218545],[-115.75171456864987,51.073728907174015],[-115.75954810798075,51.07163143134896],[-115.76500987180954,51.07060994749116],[-115.77302077377566,51.070110014614094],[-115.77993326193348,51.069490430739855],[-115.78621590253633,51.06915939377453],[-115.79613271568648,51.07002726250044],[-115.80032558389937,51.07249647424624],[-115.80205629899373,51.07575431704823],[-115.8066953082182,51.07942175142647],[-115.80870778294107,51.08039725900409],[-115.8133521145053,51.08160391486571],[-115.82081251907694,51.08155383622457],[-115.82508589145442,51.07973410601609],[-115.82909071040868,51.07613209072268],[-115.83127586060074,51.074476656803995],[-115.8358265790398,51.074708848207266],[-115.83973740734287,51.07671979452047],[-115.84092929453959,51.07831584205246],[-115.84320830533804,51.079578531036724],[-115.84702206653226,51.07912528764854],[-115.85140073265264,51.078160165982446],[-115.85521866966181,51.079133554682066],[-115.85850182520997,51.0819973590382],[-115.86588519901075,51.086119213302084],[-115.87088474578731,51.08641319083098],[-115.87707714031107,51.085218346392146],[-115.88481236627997,51.08396595452],[-115.89155241778644,51.086367178881595],[-115.89448327747623,51.08952040181627],[-115.89603041584637,51.09203438092729],[-115.90048639547048,51.09060378623298],[-115.90192994335233,51.08580415504335],[-115.90146693586296,51.08151443176873],[-115.90064955661151,51.07808106165488],[-115.90556079655695,51.07951530157914],[-115.91038699600222,51.08094389493411],[-115.91612463875681,51.082490684355776],[-115.92086729254677,51.08586986806646],[-115.92507320815923,51.09027639808158],[-115.92890396041732,51.09525548790352],[-115.93373917673733,51.09697104739429],[-115.93911637631669,51.09782979758688],[-115.94421849625205,51.09983413194187],[-115.94714661102626,51.103208617247276],[-115.94734006909387,51.10749723916363],[-115.94899031559949,51.11058849096935],[-115.95247093983073,51.112301001224836],[-115.9567564254165,51.113904745074294],[-115.96112640302736,51.1165356049216],[-115.96214365549615,51.11911290925457],[-115.9657981023445,51.120827996455326],[-115.97045136411202,51.122598378072084],[-115.98084433183881,51.12574819301799],[-115.98585514464247,51.126201406106105],[-115.9909587856715,51.124716310621324],[-115.99459516587555,51.124541296284484],[-115.9980070723141,51.124017958474525],[-116.003989457333,51.125346639351285],[-116.00924617225847,51.128159795708754],[-116.0116754298069,51.13312875148339],[-116.01164224336257,51.13723368568211],[-116.00943786160018,51.140653091157084],[-116.00823005677691,51.14349879637013],[-116.00857177094784,51.14760596123797],[-116.01117529256689,51.1525755436037],[-116.01623815201901,51.15715536156854],[-116.0180518306446,51.15904147901719],[-116.02066032812012,51.16150439589997],[-116.02638462046703,51.16374288230636],[-116.03145691356035,51.16803693126159],[-116.03124771471512,51.17094543216027],[-116.02731733865674,51.17355650489491],[-116.02385415734577,51.175314745420216],[-116.02111094786333,51.17753254024089],[-116.01863322179312,51.17991786349977],[-116.01624341677311,51.184021360906556],[-116.01466169161593,51.188067548892725],[-116.01202180857462,51.189312826719814],[-116.00900733033826,51.19004014230693],[-116.00381702193884,51.19002775282098],[-116.00109206169543,51.190816932943356],[-115.99750939715358,51.19468408591278],[-115.99613880271559,51.195878422082636],[-115.99694779389444,51.19747735503438],[-115.99811397606376,51.19890522251832],[-116.00074069145593,51.201995121182364],[-116.00135465435696,51.20439099863145],[-116.00115117716304,51.20707334863639],[-116.00250425058272,51.209528814982065],[-116.00323104012278,51.21021638223828],[-116.00304385578642,51.210212177368234],[-116.00111391257524,51.21323206692428],[-115.99918685159433,51.21521792053107],[-116.00117637457772,51.217739699374086],[-116.00361409753212,51.22020102290229],[-116.00695608908794,51.22288896937359],[-116.01142209340898,51.22330340105217],[-116.01717072945492,51.22246594962485],[-116.02273854893694,51.220827845638645],[-116.02664561757871,51.221408484215786],[-116.036828813643,51.224064255930585],[-116.04546075451248,51.228143778006576],[-116.0466985912538,51.229072335735644],[-116.05116427669735,51.23243907885492],[-116.05586781492612,51.23917949940886],[-116.05857394735459,51.244381727683724],[-116.0640092241431,51.24827545577127],[-116.07139102154359,51.24932244310077],[-116.07666678877062,51.250589755291365],[-116.08523747799353,51.251183229476894],[-116.09252051706554,51.251256249895356],[-116.09990228434022,51.25127629739528],[-116.10144674698105,51.25162144979796],[-116.11018844655612,51.25358160558889],[-116.11992365744615,51.2568612296407],[-116.1283031111309,51.25973297931538],[-116.1363165489048,51.2619152618098],[-116.14487441871024,51.263933327149324],[-116.15187576784957,51.26805491130018],[-116.15413257999217,51.27227772778522],[-116.15284556602765,51.27666940191131],[-116.150637652639,51.27980090249046],[-116.14916545193608,51.28288126955601],[-116.14915318790716,51.28630138900023],[-116.15178814421517,51.288190918756186],[-116.155874913183,51.291624845410205],[-116.15723852652044,51.2940810177462],[-116.16005589891779,51.29619526420699],[-116.16488853736017,51.29740192993487],[-116.17374067673943,51.29696949032315],[-116.17993442338515,51.29766499808415],[-116.1828535542966,51.29971833688118],[-116.18612601474226,51.30155371127797],[-116.1911393677081,51.301564941342185],[-116.19461568740805,51.299172200225385],[-116.199094525534,51.29598646654867],[-116.20302569083528,51.29519147136211],[-116.21169531486139,51.29355353828522],[-116.21515873131398,51.29355578339997],[-116.21871262051782,51.296474992271044],[-116.22316903332863,51.299444154020414],[-116.22709441552284,51.30076114828361],[-116.23293092046642,51.30117565637501],[-116.23867818709617,51.30146995404499],[-116.24269708187262,51.302041155353315],[-116.24715006655755,51.30398878614708],[-116.25335879440523,51.306453620764],[-116.25863956810801,51.30885642035381],[-116.26147144392911,51.31079781767293],[-116.26457025958533,51.313826427487435],[-116.2682966822621,51.316969206238184],[-116.27047858326294,51.32027905941253],[-116.27212349416261,51.32536155933831],[-116.27248249997733,51.326163956760716],[-116.27549728438252,51.327875968855544],[-116.28013612323835,51.33182015847982],[-116.28424332356396,51.33718842188938],[-116.28560823662174,51.34203788220582],[-116.28304190158683,51.34688575076453],[-116.28038153144064,51.35156575757216],[-116.27772759896672,51.35509946451516],[-116.27772963283152,51.35777839149258],[-116.28083248635966,51.36080808167831],[-116.28702712781435,51.363838576713746],[-116.2878521334517,51.363783392999245],[-116.29241663415607,51.36532745240886],[-116.2977095321162,51.36870031677367],[-116.3009044212661,51.373096838147305],[-116.30482512718123,51.37835125679247],[-116.30692581241632,51.3821198996136],[-116.30683357397744,51.38543096581324],[-116.30198264139007,51.38839283714948],[-116.29648713343742,51.39209925472292],[-116.29255943484321,51.3958051024844],[-116.29154309554146,51.399282992231605],[-116.29007973809335,51.40287642301002],[-116.28696648391706,51.40447147034865],[-116.2821162136253,51.406233367119164],[-116.27936849689364,51.40833995975719],[-116.28009709379951,51.41062547218733],[-116.28155981211579,51.41268029990287],[-116.28419406828179,51.415482123383214],[-116.28629458059063,51.41793947026925],[-116.28802480789287,51.42147932791316],[-116.29013347715173,51.42370507331376],[-116.29049715849388,51.42462259773851],[-116.29149267590812,51.42701922149149],[-116.29130470892407,51.42964076436917],[-116.28763664129323,51.43340406790054],[-116.28488895583963,51.43556975516046],[-116.28351608902668,51.43756607374441],[-116.283597145803,51.44041463591574],[-116.28405106605715,51.443614658044986],[-116.28368472877439,51.44657928592648],[-116.28183890810017,51.45011650497094],[-116.28192735049107,51.45234107240093],[-116.28193027005894,51.45462339995809],[-116.28311575211094,51.45616430843268],[-116.2833500905647,51.456353781336624],[-116.2867724060046,51.45902480255989],[-116.29134336347107,51.460912181434395],[-116.29545794088554,51.461774858716375],[-116.30379446521124,51.462359458239966],[-116.30800125546239,51.463332609682176],[-116.312578163723,51.463619357996784],[-116.31696979342465,51.46362560131779],[-116.32201324275707,51.46311733399789],[-116.32703945697564,51.462949942491186],[-116.33510007398395,51.463928689256264],[-116.34086162642626,51.46695752059195],[-116.34690948749179,51.46941650743605],[-116.3533139494299,51.47078734013948],[-116.36045746909498,51.47336281221814],[-116.36365563410354,51.47582103448367],[-116.3656658822624,51.478389602427924],[-116.36768981460744,51.481360117446606],[-116.37079643214932,51.48443753496051],[-116.37620482861789,51.48849891014068],[-116.37959461703004,51.49174954177287],[-116.38379805614618,51.495804078582154],[-116.38700802722029,51.499348183480194],[-116.38884481883754,51.50185547552937],[-116.39222587458806,51.505287070116125],[-116.39379115549448,51.51201928969885],[-116.39314813900867,51.51481620278823],[-116.39269010510786,51.517101766423465],[-116.39268866882674,51.51989427973689],[-116.39077706611899,51.52349316839376],[-116.38536328643622,51.52685504317704],[-116.37985811907028,51.53016478277956],[-116.3796806775502,51.530905471961574],[-116.38114332850789,51.53233585950412],[-116.38517028707147,51.535819489152864],[-116.38646141946447,51.53935754910208],[-116.38710509141787,51.542328812988],[-116.39012235676891,51.5443790261413],[-116.39626650659582,51.54592686710952],[-116.40296805279966,51.547127592610785],[-116.40893457244694,51.548558282405914],[-116.41516027800476,51.55066947817509],[-116.42030923761652,51.55244293625987],[-116.42818791202993,51.55472996192994],[-116.43415126199116,51.55518302862558],[-116.43552931046271,51.55501247146777],[-116.44379231642642,51.55701265875187],[-116.44883998111727,51.55872346163743],[-116.45654496627947,51.56215002623237],[-116.46177587301356,51.56563080939381],[-116.46326121273843,51.569111768623266],[-116.4639001295471,51.572597834879154],[-116.46537449417684,51.57539575580171],[-116.46740005905728,51.57847491229895],[-116.46942365459756,51.58229980703797],[-116.4694304310826,51.583271624466285],[-116.46805138776524,51.58772205905725],[-116.46613788132592,51.59114495245951],[-116.46596024447896,51.59463237318818],[-116.46706242621063,51.59720130422457],[-116.4682615720167,51.59959384103351],[-116.47119664061522,51.60359196729834],[-116.47395726299946,51.606786897944815],[-116.47552368704339,51.60810027256582],[-116.47891954698272,51.609588778721836],[-116.48288200302311,51.61095549803587],[-116.48444186903146,51.61323821911427],[-116.48609191464554,51.61597840888552],[-116.48959235973312,51.61786182193508],[-116.49189608428846,51.61934481982677],[-116.49382174607796,51.62357032872571],[-116.49797119547333,51.62636519295277],[-116.50384686456063,51.626594700179595],[-116.51046517885227,51.62636198842945],[-116.51560532017207,51.627155252341545],[-116.52010983354779,51.629666460361115],[-116.52481393368797,51.632806995808785],[-116.52903584797308,51.63514530541682],[-116.53308630462838,51.63719918100271],[-116.53980572713733,51.63764989004333],[-116.54550447771346,51.63816284208057],[-116.55102457556745,51.64004078771979],[-116.55682165133415,51.64266465494989],[-116.5581045002748,51.64334802194389],[-116.56316896609039,51.64551499789505],[-116.56814286022548,51.647562698010866],[-116.5694306536652,51.64950816762209],[-116.5710070301186,51.65167280703165],[-116.57449642611346,51.65201243599329],[-116.57652304619457,51.65229672140613],[-116.5789117577017,51.653609155571914],[-116.58269824785437,51.655143889819485],[-116.58757048330122,51.65719739763873],[-116.59439056908182,51.6615299228203],[-116.59624214959197,51.66432227185289],[-116.59460087096963,51.666379988599225],[-116.59109917197105,51.66832653448556],[-116.58936605569336,51.669927891990376],[-116.58734981135812,51.67284053577062],[-116.58782311272152,51.6762656215827],[-116.58691488000176,51.679864190379],[-116.58362303943044,51.683064879804874],[-116.57875278719172,51.68518231909181],[-116.57718764048921,51.68660963695648],[-116.57995609852155,51.68860800683683],[-116.58299692772606,51.69009076884535],[-116.58742584012606,51.692252561672476],[-116.5886238803053,51.694420405020516],[-116.58431093884928,51.69625387222017],[-116.58146654333694,51.6985948285217],[-116.5826654685942,51.70116396829065],[-116.58285592700476,51.701567897571],[-116.58525656330289,51.70344726397882],[-116.58572488588291,51.70601633913998],[-116.58418034583057,51.71127030572305],[-116.58520766285287,51.71429756908015],[-116.58677467329925,51.7154367326689],[-116.59046025991637,51.71651644581068],[-116.5954377922477,51.71845371758196],[-116.59718665194129,51.720852467537064],[-116.59876325734997,51.723304819754034],[-116.60218007453436,51.72495647937196],[-116.60522683453259,51.72540912267511],[-116.61010466748404,51.72523779997577],[-116.6177466597197,51.72608420387746],[-116.62346418609377,51.72744689150132],[-116.6298288220869,51.73103787684985],[-116.63223422889686,51.735087044427644],[-116.63280392547105,51.73685889703741],[-116.6314486076957,51.741255060558785],[-116.62676595612845,51.74628964227935],[-116.62493185384983,51.74971114753131],[-116.62880104245615,51.75056623478776],[-116.63571272294844,51.750270892957595],[-116.64179770217306,51.750553197519835],[-116.6473331762974,51.75203117877695],[-116.64936832269561,51.75447826545259],[-116.64947391210828,51.75705243941165],[-116.64903824734539,51.76241857887327],[-116.64722907697755,51.768589989196876],[-116.64568022141265,51.773275733113444],[-116.64395112784855,51.777844824619315],[-116.64360353661915,51.78184406540592],[-116.64351171167034,51.784585828933544],[-116.64241648557203,51.786409600178395],[-116.64316804507928,51.78829404332574],[-116.64612236318584,51.78994702609839],[-116.65000461822821,51.79171287347686],[-116.6535224571165,51.79388083919944],[-116.65427246915046,51.79604786158249],[-116.65465522796107,51.798560920687954],[-116.65558412441852,51.80289556427434],[-116.65660344761483,51.80346961055745],[-116.66094223587834,51.804890549645485],[-116.6650198634769,51.80671018667396],[-116.66926582841862,51.80836129114062],[-116.67286712188698,51.810013740997924],[-116.67721676034947,51.81200388307592],[-116.67787110227958,51.81223220878887],[-116.67906351054046,51.81165945731988],[-116.6826454776629,51.80971302681704],[-116.68503491954125,51.80833930005459],[-116.69075182880577,51.805587488273744],[-116.69496777553763,51.80306921669056],[-116.70086131358174,51.801402728392354],[-116.70722877080036,51.80053200919207],[-116.71145765933696,51.7993859201047],[-116.71366577937462,51.79857950607347],[-116.71616462382205,51.80011577765165],[-116.71996515968608,51.802622843574916],[-116.72522623549715,51.80398451798357],[-116.7323436497153,51.80522884303325],[-116.73769801924294,51.805673859869664],[-116.74441654528108,51.80514692304467],[-116.74809441969909,51.803764160611756],[-116.75104467142815,51.80153156061707],[-116.75259209747465,51.79942031183876],[-116.7537720287391,51.796556983715284],[-116.75441514263372,51.7955294990946],[-116.75530324748158,51.79238457135881],[-116.75850893837082,51.78832370534918],[-116.76143028713831,51.78511635937014],[-116.76454528535984,51.781684295881675],[-116.76755906352861,51.77796797876906],[-116.77250937492718,51.774297152486525],[-116.77553496336387,51.77217654744504],[-116.77865168158033,51.76914082977],[-116.7799262672007,51.767200110933715],[-116.7840366167041,51.76347672897182],[-116.78781532784636,51.762492564813144],[-116.79093975306816,51.761626144280115],[-116.79359174822571,51.759395213848954],[-116.79779487744834,51.75550025477943],[-116.8018249784842,51.75200518580412],[-116.80420172115318,51.748855440146535],[-116.80691384458417,51.744392399975304],[-116.80799299007478,51.74108120446322],[-116.81213307449966,51.739411323438176],[-116.81626779102726,51.73894435790942],[-116.81846280081258,51.73761945021806],[-116.81752754620267,51.735396593979615],[-116.81279421323545,51.73170086971783],[-116.80825072606314,51.72794046718597],[-116.80677616158835,51.72737618885377],[-116.80059527215032,51.72493595731894],[-116.79560169612584,51.72317566948148],[-116.7927431393781,51.721413816843004],[-116.7930064052475,51.72009867031398],[-116.79473211679105,51.71781150200441],[-116.79811834717597,51.715689248104425],[-116.80215386967932,51.71270492092086],[-116.80608203773363,51.70932608765627],[-116.80706396391821,51.70577906551392],[-116.80796264101613,51.70463576384523],[-116.81302881650907,51.704795339193865],[-116.8191108635856,51.70477997429837],[-116.82379390290194,51.7041910025921],[-116.82894965667128,51.70406301802936],[-116.83446641516868,51.70416355247026],[-116.84257536960153,51.70465306745366],[-116.8476419770257,51.7054360372402],[-116.85327685755799,51.70713257042397],[-116.85786640675704,51.70705667532988],[-116.86026115173124,51.706367582850035],[-116.86475681599353,51.7049260766779],[-116.87146891414308,51.704271471440066],[-116.87689987408103,51.705339098744226],[-116.88133508808922,51.70669755542677],[-116.88631844484684,51.707531999473254],[-116.88953169897178,51.70683895863342],[-116.89256171293721,51.705973382518096],[-116.89723860758757,51.70526675360684],[-116.89826020769429,51.70555211809147],[-116.89919431836292,51.7073764741483],[-116.90216189419107,51.70890946729961],[-116.90574929343659,51.709013254274154],[-116.9084964271807,51.70831181699149],[-116.91097941733845,51.70796579241119],[-116.91365946334305,51.708636896163405],[-116.9150471428428,51.709550172173365],[-116.91589197661635,51.71131572833151],[-116.91610885829422,51.71343032583486],[-116.91778172973584,51.71571096152364],[-116.92047124943618,51.71718102163204],[-116.92380894712534,51.71967981635327],[-116.9246560229303,51.72122660555326],[-116.9246821894234,51.72390831385132],[-116.92452617232374,51.72585058002738],[-116.9254611764015,51.72795848494383],[-116.92778126776261,51.72875025886681],[-116.92980937370572,51.72925972188733],[-116.93360133735565,51.730846650971365],[-116.93637797020001,51.73197484224005],[-116.94034451210324,51.733216378538046],[-116.9413805524697,51.73498324525391],[-116.9414002457511,51.73692757866951],[-116.94199030657232,51.73978522778983],[-116.94367974653096,51.742348703782675],[-116.94682732709789,51.74387753788243],[-116.9504360924918,51.74494708801744],[-116.9532063170032,51.746252906475064],[-116.9548737659024,51.74772939409598],[-116.95748870545863,51.75034801680351],[-116.95991745201927,51.75301960749834],[-116.96141460644107,51.75461415763913],[-116.9656645294757,51.75591211585719],[-116.96955422197722,51.75732606407532],[-116.9701162764484,51.75835382969419],[-116.9703123827489,51.7596652199785],[-116.96987575499169,51.76212331983136],[-116.9698125410912,51.76383872717749],[-116.96965518183957,51.765725892381774],[-116.97013085131773,51.76738227407718],[-116.96940910412057,51.769098593696455],[-116.96619219904062,51.769795512106114],[-116.9614139989098,51.77061267351952],[-116.96005178611554,51.772733826483964],[-116.96100716321872,51.775531376976836],[-116.9611263124349,51.7782693249483],[-116.96244808597386,51.78078325576406],[-116.96294975195438,51.78414629588711],[-116.96123426240791,51.78775518438536],[-116.95969726442198,51.79050360237884],[-116.96287836160572,51.793863221749774],[-116.96456876011939,51.79608515862539],[-116.96754765133302,51.79858898791131],[-116.96997853853571,51.80154791489838],[-116.97443299999712,51.803929260118736],[-116.97748475319639,51.804604527590115],[-116.98072092010177,51.80573243291703],[-116.98443706365425,51.80800681527467],[-116.99010751713385,51.811805326698014],[-116.986340968623,51.8133041615775],[-116.98415047438257,51.81468729061024],[-116.98204883197036,51.81698306756886],[-116.98161076544459,51.81881287592618],[-116.98247600016714,51.82120878119522],[-116.98379652986196,51.82331673478533],[-116.98372019375203,51.824744364662074],[-116.98207198827792,51.826122873820744],[-116.97987066189417,51.82698953057702],[-116.97775342092898,51.82836820014688],[-116.97695698794071,51.83128786290411],[-116.97838074141463,51.834592908975374],[-116.98347254528458,51.835544493340514],[-116.98790916614712,51.83569954967327],[-116.99307238572183,51.8351056816903],[-116.99574402036829,51.834868910937864],[-117.00146788883353,51.83552868874449],[-117.01073244941502,51.83777140899398],[-117.01620654941507,51.840208884023916],[-117.02011889522885,51.84304487311522],[-117.02329863783878,51.846521157609594],[-117.02647939071653,51.85056264251248],[-117.02985257684048,51.85374577812791],[-117.0325749068368,51.858025099195764],[-117.03514904292922,51.86338020501574],[-117.03417822223473,51.867728748748334],[-117.03063146007021,51.87134358027421],[-117.02203076014469,51.87755518901817],[-117.01590232622183,51.88272235756975],[-117.01188257549008,51.88634082286684],[-117.01146310884246,51.889712962723856],[-117.01414617150726,51.890215781041576],[-117.0162802796819,51.89060695895479],[-117.02027742761418,51.89270016393002],[-117.02502044210364,51.895941612807896],[-117.0294076394095,51.899062150556205],[-117.03462574466278,51.90235394749925],[-117.03929206667806,51.90576324584833],[-117.04349565258137,51.90871605103966],[-117.04517147562886,51.91047975803891],[-117.0508457005406,51.9125679416759],[-117.05437269180953,51.91403952598333],[-117.05772921835785,51.91648165850345],[-117.06101211319024,51.919781523385126],[-117.06401130727352,51.92239439820558],[-117.06877630168226,51.926200344931146],[-117.07465578738199,51.929944965169916],[-117.07885197058154,51.93295537499406],[-117.0842569903507,51.93544495309799],[-117.0894688729268,51.93787678141034],[-117.09431396113287,51.94030970628086],[-117.09518468006384,51.943220235569164],[-117.09519660810919,51.94430625683779],[-117.09659861986611,51.94527388321641],[-117.0996901155128,51.94845666603031],[-117.100105776853,51.951368416742035],[-117.10070622118013,51.954167377704174],[-117.10360447211654,51.95643522650744],[-117.10767659479046,51.95641953427937],[-117.11172904316395,51.955425064813774],[-117.1166370761646,51.95534345948633],[-117.12100447669845,51.957040511793345],[-117.12467020216133,51.96130505999828],[-117.1288023830164,51.96494497783636],[-117.13271387975665,51.96657898968407],[-117.13773971468729,51.96844098335264],[-117.14213254686169,51.971388992011654],[-117.14864018621279,51.973697942260564],[-117.15531842695928,51.973950330688616],[-117.16124084261156,51.973802095004096],[-117.16706236161119,51.973715838922764],[-117.17382271065058,51.97385312849404],[-117.17958682621794,51.97541967708786],[-117.18322902706632,51.97694509769482],[-117.18899022153339,51.97816790392832],[-117.19456429482668,51.980023540898486],[-117.19544015804995,51.98207699776203],[-117.19629779144508,51.98378663630357],[-117.19654026394781,51.98772828062188],[-117.19735116922077,51.99183848283498],[-117.20258098971486,51.994385789457525],[-117.20610008335719,51.99493576405812],[-117.21103281557434,51.995763638356415],[-117.21486414518243,51.99774641548254],[-117.21600673737554,51.99979575224064],[-117.21805545759453,52.00259706651224],[-117.22171876813668,52.00621079681664],[-117.2289335986457,52.008191750952165],[-117.23430285970223,52.00890555746572],[-117.23296627540212,52.012093730388855],[-117.22958748547461,52.01447302590684],[-117.22511222650604,52.015875039065605],[-117.21774349553019,52.01863431510874],[-117.21338331156637,52.02482687035543],[-117.21333172414698,52.02899369544779],[-117.21775409707845,52.03141349743778],[-117.22355410479453,52.034587182402426],[-117.22722255833843,52.03797310220881],[-117.23409053028526,52.03915101052652],[-117.24289960635295,52.03982707499686],[-117.25152284109427,52.040840782586606],[-117.25949029531003,52.0432811436701],[-117.2657526355859,52.04673669063493],[-117.2668325550974,52.04947863518893],[-117.26754373336219,52.05222524105915],[-117.2703625683994,52.05663497010746],[-117.27517771008992,52.05808374378975],[-117.28074341352922,52.05982661020981],[-117.28877311574799,52.064319840665576],[-117.2944804311393,52.06799784322218],[-117.30186601414441,52.07248622742148],[-117.30098155512258,52.07607736321063],[-117.29675525790164,52.08039460995797],[-117.29425791272037,52.08643362350072],[-117.29304291345531,52.09407359384418],[-117.29257954464067,52.1020027078823],[-117.29412826877434,52.11193880386283],[-117.29431858482623,52.118672366363654],[-117.29373171592334,52.12809112091474],[-117.29690023912572,52.13489881304127],[-117.30202211125075,52.14262913621364],[-117.3067883242565,52.14847267791911],[-117.31004654132532,52.15602409532132],[-117.30965186469346,52.16589468486536],[-117.31035618423647,52.17616961894967],[-117.31288655195385,52.182291388787675],[-117.31496560360429,52.18076294011613],[-117.31874498852285,52.1767256632022],[-117.32450269096458,52.16996544864215],[-117.3263806800607,52.16106551837787],[-117.32747994120807,52.15456885644196],[-117.3295269029928,52.14761103894458],[-117.33815067958751,52.14211826714835],[-117.34086254262037,52.14139010525481],[-117.35196584248294,52.13984486932468],[-117.36043848604474,52.13965182548586],[-117.36711796024493,52.1410517410914],[-117.3752174953543,52.14154514747567],[-117.38435340266058,52.14061393914021],[-117.39367666196003,52.1396277340489],[-117.4054076654443,52.13950421740295],[-117.4180515872612,52.14161006775578],[-117.42389195297714,52.143233598989305],[-117.4349433924091,52.146016576701804],[-117.44118447474705,52.1464424338981],[-117.44817899795882,52.144926053380765],[-117.45554339713195,52.14369823757418],[-117.46410329911168,52.14372880268935],[-117.47442982238867,52.1451902287502],[-117.48132089203017,52.146131897907026],[-117.48835279849753,52.14770639196496],[-117.49344888118752,52.15005309188347],[-117.49712057700174,52.15312085684497],[-117.49935014490777,52.15392940781835],[-117.5028594214842,52.155878208045934],[-117.50793872699478,52.15749393474888],[-117.5127743729746,52.15780065467631],[-117.51594561622335,52.15644689379818],[-117.51572248807578,52.15240569785998],[-117.5159373763521,52.14996198748921],[-117.51939570009435,52.14826911759982],[-117.5243515845576,52.145329761394684],[-117.53253301033094,52.14405466080527],[-117.54477370756534,52.14621123688164],[-117.55208933288732,52.14732318929833],[-117.5585044307153,52.14723652351274],[-117.56040555908156,52.14377055739553],[-117.55935218807014,52.13807431102812],[-117.55772659230976,52.13334662580876],[-117.55851046543229,52.13016561310621],[-117.56682558474841,52.128711853105116],[-117.56743581089857,52.128605315310246],[-117.57493590503758,52.13147753109629],[-117.58065386530964,52.134802431497654],[-117.5841567474767,52.137321782881536],[-117.59369987726437,52.13872122357759],[-117.59778643686212,52.13953372772212],[-117.60387933535546,52.142914576339],[-117.60771955026642,52.14810656438858],[-117.61101961705926,52.15335152081056],[-117.61421925876998,52.159117390900015],[-117.61749131488011,52.165273941984005],[-117.62062360777126,52.16926869532098],[-117.62273570658415,52.17069608297997],[-117.63332159731246,52.17170290248077],[-117.63878821156335,52.174393337254486],[-117.64311984491178,52.177996825277226],[-117.64930489750967,52.18353646324536],[-117.65520272192832,52.18782309364364],[-117.65721885268503,52.191816219797346],[-117.65857540815509,52.19563559920791],[-117.66450308418173,52.197871818300456],[-117.67557387231658,52.197395973081555],[-117.68125551592183,52.19724048225513],[-117.69037819496012,52.19630355085979],[-117.69542973288358,52.19267512903107],[-117.70008953083779,52.19069469616542],[-117.7087473677231,52.18855793232827],[-117.7158056845409,52.189829216355605],[-117.72473538946296,52.18888375017689],[-117.7298484040777,52.18906889061022],[-117.73552094520073,52.19033756705383],[-117.7407034399295,52.19370480058297],[-117.74065943917948,52.197864136271214],[-117.73989785126415,52.202071881955945],[-117.74992000548052,52.2032920804907],[-117.75447326765668,52.20432932063407],[-117.76310016547143,52.20822233201287],[-117.77097904478079,52.213026210868094],[-117.7815509392982,52.21702998884385],[-117.7916899259801,52.217734798378935],[-117.80134244479619,52.22037756218529],[-117.80830946045822,52.22340810411698],[-117.81302296363883,52.22797047218716],[-117.81418678690751,52.23793382344653],[-117.81775948213875,52.24602636664342],[-117.82370107380264,52.25036192548963],[-117.83092805427782,52.257039114678584],[-117.83203162495283,52.259087794851716],[-117.83313217219835,52.26154252817692],[-117.83739580568754,52.266564046172505],[-117.8402614096812,52.27077995998723],[-117.84036248720119,52.272586028926696],[-117.84467677117476,52.27360491451956],[-117.84480506268224,52.27376633747625],[-117.84495295584223,52.27392180577093],[-117.84510491600346,52.274075313207376],[-117.8452848242103,52.27421781310607],[-117.84546077226797,52.27436172100833],[-117.84563938636227,52.27450131183755],[-117.84578525121051,52.27465776376849],[-117.845951242803,52.27480549010383],[-117.84616208607788,52.274930989371505],[-117.84640544234682,52.27503113220886],[-117.84666247722852,52.27511757913377],[-117.84694182597131,52.275173994145845],[-117.84722264987066,52.275222621918985],[-117.84750764830639,52.27526871809359],[-117.84778815801138,52.27531901049706],[-117.84806761410655,52.27537487042107],[-117.84833724894632,52.27544357813647],[-117.8486115847609,52.27550697461704],[-117.8488970082149,52.27555084008204],[-117.84917923976289,52.275601810269634],[-117.84942601006459,52.27569372764192],[-117.84963858448018,52.27581991055997],[-117.8498392744376,52.27595032732545],[-117.85004392863496,52.27607932636732],[-117.85025286075843,52.2762052505634],[-117.8504702463206,52.276325559961656],[-117.85068742230206,52.27644698258468],[-117.85090063814326,52.27656981327152],[-117.85111364272893,52.276693766108],[-117.851322582622,52.27681967940527],[-117.85152917293094,52.276948252126076],[-117.85172163238735,52.27708316635315],[-117.85187352314499,52.2772372168982],[-117.85202755501885,52.27738972104932],[-117.85222387486425,52.277523778243754],[-117.8524411680055,52.27764463618805],[-117.85268584944684,52.27774768293203],[-117.85287123451579,52.27788096657166],[-117.85299315257325,52.278047000672046],[-117.85311163444067,52.2782116724249],[-117.85323793727089,52.27837407037491],[-117.85337816263372,52.2785312397329],[-117.85352010591845,52.27868909890351],[-117.8536621547593,52.278846405511416],[-117.85380602944316,52.279003831735544],[-117.85396617428847,52.27915338722111],[-117.8541522343779,52.27929291798741],[-117.85434054023294,52.279430349853904],[-117.85452884728493,52.279567781399564],[-117.85470891559092,52.279709704770084],[-117.85487678022324,52.27985754643548],[-117.85505481701324,52.280000454182876],[-117.85524923041797,52.28013492964712],[-117.8554622982246,52.28026846440064],[-117.85570511371328,52.28035218643971],[-117.85600679020797,52.280339624151374],[-117.85623868120116,52.28023693693149],[-117.85652825985896,52.280229721826274],[-117.85678555652835,52.280315032291014],[-117.85702672321226,52.2804172510288],[-117.85722135526521,52.28055060948857],[-117.85739512264611,52.28069660609867],[-117.85756696351318,52.28084302614368],[-117.85779775512708,52.280951281852396],[-117.85806828268723,52.28101551201119],[-117.85836105130912,52.28103052763563],[-117.85865340504144,52.28101842888331],[-117.85894544186804,52.28100800433067],[-117.85924038877177,52.28100172964881],[-117.85953137410564,52.28099686298877],[-117.85979860725108,52.28106875607051],[-117.86005047987862,52.28116326360754],[-117.86028737915035,52.28126856813089],[-117.86052824274685,52.28137245444599],[-117.86077391289294,52.28147046789629],[-117.86104735686504,52.281538850550625],[-117.86129001424642,52.281633264709505],[-117.86147193492381,52.28177531485081],[-117.86166402750189,52.28191243046052],[-117.86187281111852,52.2820394467856],[-117.86210554759897,52.28214727003054],[-117.8623415107759,52.282257577287886],[-117.86245173231663,52.28240754223318],[-117.86251419563972,52.28257558065337],[-117.86273262860566,52.28270044966562],[-117.86290126989825,52.282844377093234],[-117.86297888244637,52.28302025434634],[-117.86296354076816,52.283199164499635],[-117.86308866845835,52.283348491286404],[-117.86333267164622,52.28345540844456],[-117.86356713664523,52.28356391848804],[-117.86379732634079,52.28367550300104],[-117.8640408770622,52.28377505573443],[-117.86428004467531,52.28387825311379],[-117.86453247048152,52.28396996209119],[-117.86480997028235,52.28402676637105],[-117.86510363710991,52.284046909411344],[-117.86535069990688,52.28413767859542],[-117.86555361574948,52.28426652087551],[-117.86576059877275,52.28439340142822],[-117.86598876471761,52.284505966650364],[-117.8662081635651,52.28462582188601],[-117.8664046662841,52.284759293004285],[-117.86662000159205,52.284881108817586],[-117.86683544247974,52.28500237184081],[-117.86702167363113,52.285141328923366],[-117.86719784284354,52.28528465019799],[-117.86737176898026,52.28543007001711],[-117.86755190385523,52.2855719727763],[-117.86773621195809,52.28571135252526],[-117.86791624316335,52.28585381597498],[-117.86807411359345,52.28600600237369],[-117.8681793853001,52.286172537943585],[-117.86827480324632,52.28634233323439],[-117.8684317308441,52.28649952613549],[-117.86865742411199,52.2866057082255],[-117.86894553629632,52.28665534923354],[-117.86923575170844,52.28666451201919],[-117.86953122611166,52.28664583234324],[-117.86981968626579,52.28661537288349],[-117.87010239398698,52.286566451668335],[-117.87038945038222,52.286533634985915],[-117.87068331226706,52.286543051062495],[-117.87096138933417,52.28648928770498],[-117.87123750120855,52.28642635740878],[-117.87151719002104,52.286373834829575],[-117.8717437313974,52.28647555622791],[-117.8719277405851,52.28661660417759],[-117.87211978184503,52.286754263226186],[-117.87232273013942,52.28688309339022],[-117.87256396850636,52.28698528817574],[-117.87282838545464,52.28706259082397],[-117.87310528520864,52.28712271612982],[-117.87337215826788,52.287196804917585],[-117.87362697105532,52.28728584252391],[-117.87387473827694,52.28738284247728],[-117.87414939751801,52.28744506422464],[-117.87443001719551,52.28749529165235],[-117.87467105373258,52.28759859568095],[-117.87492843172889,52.287683856460966],[-117.87520523243457,52.287744538014806],[-117.87549675536586,52.287756593240125],[-117.87579016856756,52.28775863352355],[-117.8760841458905,52.28776747460425],[-117.87637615600067,52.28776715767604],[-117.87666809366077,52.2877476418027],[-117.87696112448909,52.28776149668035],[-117.87724900571328,52.28780264049081],[-117.87751020920976,52.28787744834626],[-117.87770753441859,52.28801659671825],[-117.87795341670497,52.28809427026134],[-117.87824866306939,52.28812577344199],[-117.87848294407068,52.28822576749445],[-117.87876525484688,52.28826707492237],[-117.87905772698056,52.28827411406047],[-117.8793516025813,52.28828350814827],[-117.87964361783344,52.28828317407956],[-117.87993731215626,52.28827393868983],[-117.88023689898631,52.28826285117834],[-117.88044470875343,52.28836606106974],[-117.88045742178437,52.28854355619857],[-117.88059125615851,52.28870588381161],[-117.88065316884772,52.28887725268163],[-117.88064122952761,52.289058095923046],[-117.88061663054302,52.28923747976721],[-117.88060093780355,52.289418627659444],[-117.8806510693219,52.28959368140395],[-117.88078308569729,52.28975587145675],[-117.88095258788316,52.28990546854514],[-117.88092560115106,52.29007792254094],[-117.88078940526908,52.29024155636652],[-117.8806829116818,52.29040446297251],[-117.88073069492988,52.29058217692249],[-117.88081428517009,52.29075619866792],[-117.8809115882451,52.29092610232596],[-117.88100503289444,52.29109687189597],[-117.881053029993,52.29127346302087],[-117.88108419207441,52.29145113578797],[-117.8812143920101,52.29161319682478],[-117.88130997903986,52.29178241935942],[-117.88137470618689,52.29195849874473],[-117.88142249399665,52.29213621219301],[-117.88154743603569,52.29229677423317],[-117.88168952737284,52.29245459718211],[-117.88182797218552,52.29261216338398],[-117.88196803173149,52.292770971362266],[-117.88210830236768,52.29292866546478],[-117.8822465401667,52.29308734479489],[-117.88237299590092,52.29324970908038],[-117.88253736007795,52.29339725256198],[-117.88271158050217,52.29354153474701],[-117.88285774793216,52.29369738526108],[-117.88298024584792,52.29386115836201],[-117.88305483644231,52.294033984363],[-117.88312728955952,52.29420834811294],[-117.8832168939786,52.29437996372615],[-117.88327626536008,52.294555104538304],[-117.88329221950879,52.29473508237656],[-117.88334422387972,52.294998284354946],[-117.88351031773577,52.29514650689623],[-117.88367662276315,52.29529361549486],[-117.88382665743961,52.29544860738057],[-117.88398686288886,52.295598671826944],[-117.88417512459397,52.29573716713377],[-117.88434336225178,52.29588385055817],[-117.88449736509678,52.2960374229909],[-117.88466153711414,52.29618607682683],[-117.88482967400603,52.29633331188337],[-117.88498175038411,52.29648731668856],[-117.88511808199071,52.29664641631509],[-117.88524070098771,52.29680963425959],[-117.88534574930625,52.29697782781121],[-117.88546461797976,52.297141341424336],[-117.88564068725556,52.29728574700342],[-117.88581086574425,52.29743199503736],[-117.88597087544927,52.29758317019841],[-117.88611321029707,52.297739873382135],[-117.88623187231066,52.29790450871024],[-117.88635053690803,52.2980691349862],[-117.8864771267806,52.29823094177122],[-117.88659568738234,52.2983961290539],[-117.88668166616077,52.298567485024094],[-117.88673709510992,52.29874403317019],[-117.88683057967708,52.29891479699801],[-117.88693767501441,52.299081994428114],[-117.88704862761823,52.299248343344544],[-117.8871363281502,52.299420388357035],[-117.88719014592128,52.29959569428626],[-117.88731257114983,52.29976002335278],[-117.8874179504791,52.29992653964874],[-117.88743734709058,52.30000012320482],[-117.88746201957973,52.300104545512184],[-117.88748367552984,52.30028379286341],[-117.8875792004629,52.300453570379034],[-117.88766701136996,52.3006250535282],[-117.88776639601882,52.30079397352226],[-117.88788903678382,52.300957188136124],[-117.88802528737794,52.30111684508744],[-117.88819142080081,52.30126506021263],[-117.8884241165117,52.30137394266608],[-117.8886916947164,52.30143505528429],[-117.88888792342611,52.3015707139034],[-117.88908660732592,52.3017031592625],[-117.889233349309,52.301856220968],[-117.88926606280836,52.30203568430461],[-117.88928204466178,52.3022156602646],[-117.88927936296459,52.302396590906184],[-117.88916827915628,52.302564254595055],[-117.88888832164234,52.30259819132784],[-117.88859530641135,52.30261314591165],[-117.88831195013299,52.30265530130271],[-117.88803986657082,52.302725899435856],[-117.8877991234492,52.30282634147715],[-117.88757378780153,52.302943095196255],[-117.88732647951231,52.30303913004541],[-117.8871096327405,52.303159864850386],[-117.88710195470608,52.303328031983966],[-117.88728254308461,52.30346823601002],[-117.88732286256356,52.30364653744269],[-117.88732778546718,52.3038263056084],[-117.88730685270704,52.304005954084964],[-117.88717424541281,52.30416025993737],[-117.88711145897959,52.304336398624365],[-117.88713129129721,52.304515517256206],[-117.88716410223451,52.30469442842493],[-117.8871931606606,52.304873635565286],[-117.88720548628677,52.30505335503037],[-117.8872384037739,52.305231704805614],[-117.88725651684592,52.30541014271276],[-117.88723365452228,52.30559021515178],[-117.88719265264213,52.305768453265046],[-117.88719575088606,52.3059480929475],[-117.88721751281689,52.30612678714271],[-117.88709974391675,52.30629059454616],[-117.88699218456327,52.30645907332192],[-117.88692605943754,52.3066332891335],[-117.88692347344438,52.30681365780004],[-117.8868788219984,52.30699163033254],[-117.88685809584649,52.307170164601295],[-117.88689831118427,52.30734902696254],[-117.88688316406251,52.30752738447614],[-117.88685503577457,52.30770595827349],[-117.88689911048992,52.30788396326942],[-117.8869074709988,52.30806510093131],[-117.88685797486643,52.30823934765008],[-117.88674342605609,52.30840564708681],[-117.8866663518132,52.30857908438934],[-117.88661815270162,52.30875624779253],[-117.88659356563491,52.30893563904978],[-117.8865855046411,52.30911562278463],[-117.88657561908094,52.30929547829334],[-117.8866257978626,52.30947052673208],[-117.88678178592579,52.3096236703143],[-117.88688943182495,52.30978808664436],[-117.8869144499029,52.30987109194774],[-117.88694242142951,52.30996784599179],[-117.88717210325771,52.31006353385359],[-117.88746245285502,52.31009240109052],[-117.88775391997167,52.31010553896094],[-117.8880470655188,52.310109775547915],[-117.8883414727075,52.31010732038608],[-117.888634369448,52.31010307023844],[-117.88892982472194,52.31009505407452],[-117.88922261718065,52.310091354828586],[-117.88951141878823,52.310108823771635],[-117.88979020984151,52.31016958867693],[-117.89006791108041,52.310226331317295],[-117.8903480674002,52.31027986037161],[-117.89063323720379,52.310326410508885],[-117.89092040269036,52.31036237545727],[-117.89121288108339,52.31036034617358],[-117.89150770960636,52.31035565559873],[-117.89179875825666,52.31037101958774],[-117.89207306553337,52.31043597751303],[-117.89231490185998,52.31053590192816],[-117.89250722014421,52.310672963318794],[-117.8927140948138,52.31080145918859],[-117.892819312013,52.310969082830354],[-117.89294263035451,52.31112894973194],[-117.89316244899291,52.311247637751435],[-117.89340303490289,52.3113542330692],[-117.89364926399463,52.311450508442285],[-117.89390352627507,52.3115434021581],[-117.8941608749967,52.31162973232745],[-117.8944572610865,52.31163643625309],[-117.89471364804548,52.311698441022216],[-117.89489121253156,52.31184518636933],[-117.89499612682481,52.31201447398502],[-117.89516243012827,52.31216212546967],[-117.89535100963279,52.31229948714262],[-117.89553948627065,52.31243740088646],[-117.8957218590214,52.312578280133394],[-117.89590209442642,52.31272069711179],[-117.89604462089446,52.31287682494853],[-117.89620472359917,52.31302798416218],[-117.89643964138749,52.31313531149178],[-117.89664674932631,52.313262686405274],[-117.89684817459775,52.3133907905172],[-117.89712443739046,52.313455311987546],[-117.89737110628359,52.313549351909664],[-117.89749346317544,52.313704630835744],[-117.8975094836155,52.313884604022746],[-117.89754062563026,52.31406282161621],[-117.89756608391366,52.31424176879208],[-117.8976348742583,52.31441642596953],[-117.89774011935127,52.31458404467489],[-117.89791833525419,52.3147274439697],[-117.8981130382886,52.31486184385245],[-117.89831181158536,52.314994272030845],[-117.89850844753929,52.315128237933884],[-117.89874422143285,52.31523110563224],[-117.89896491749906,52.315345318576036],[-117.89914752342503,52.31548507841993],[-117.89932178435413,52.31562988554586],[-117.89947590914187,52.31578344462234],[-117.89961428384763,52.315942100406794],[-117.89975244985067,52.31610186970524],[-117.89996887422588,52.31621916577186],[-117.90021644540079,52.31631834352844],[-117.90046026401767,52.3164178171817],[-117.90068633953493,52.31653297199255],[-117.90091690472838,52.31664392749999],[-117.90117675175706,52.31672702863279],[-117.90144140190185,52.31680426420917],[-117.90170840119954,52.31687884733997],[-117.90199576700024,52.31692382225403],[-117.90227145121513,52.316971922242644],[-117.90237103623339,52.317140266256686],[-117.90242858766334,52.31731581858875],[-117.90255894392688,52.317477861282846],[-117.90271126359117,52.31763127898195],[-117.90286937268701,52.317783414192995],[-117.90296531207893,52.31795150170443],[-117.90302437662001,52.31812885658042],[-117.90307421301921,52.31830612409937],[-117.90319117289312,52.31847060257625],[-117.90330802799923,52.3186356422204],[-117.90341643035029,52.31880629980847],[-117.90356380611829,52.31895655262438],[-117.90381224142436,52.31905125877422],[-117.90407053549526,52.319142710497886],[-117.90430582133756,52.3192483463742],[-117.90448611286648,52.31939074927374],[-117.9047101800802,52.319506881762415],[-117.90491488914883,52.31963745447956],[-117.9051374473573,52.31975179210778],[-117.90540363456373,52.31983081247252],[-117.90563945053964,52.31993366577864],[-117.9058380606619,52.320067194242355],[-117.90604950830601,52.320191466352966],[-117.90627327035688,52.32030926185486],[-117.90652417142869,52.320400757776376],[-117.90677131955793,52.32049254978468],[-117.90697838929,52.320620457918835],[-117.90718973730937,52.32074528920632],[-117.90739274030159,52.32087516824158],[-117.90759167364465,52.32100702749792],[-117.90780709619936,52.32112987703388],[-117.90803331988633,52.321244464703895],[-117.90824702373239,52.32136663313911],[-117.90843740617703,52.32150465280735],[-117.90864286844844,52.32163132521488],[-117.90888193480072,52.32173664599928],[-117.90910216630083,52.32185362780668],[-117.90929693624682,52.32198800817019],[-117.90946750162342,52.32213310494762],[-117.90958825034397,52.32229727976229],[-117.90967233159905,52.32246961026737],[-117.90978118937389,52.322638025067626],[-117.9099400740662,52.32278625651574],[-117.91016213892681,52.32290336404701],[-117.91028085780795,52.323068523926004],[-117.91046749835982,52.3232068457388],[-117.91070699682331,52.32330993521017],[-117.9109634602376,52.32339165354757],[-117.91115620827438,52.32352701652619],[-117.91131029941526,52.3236811113353],[-117.9115305474051,52.32379808835609],[-117.91176749259024,52.32390495023518],[-117.91198935871405,52.324023167880505],[-117.91220084341874,52.324147428396905],[-117.91237721769122,52.3242912290143],[-117.91255208122881,52.324433235440644],[-117.91276560420592,52.32455650896382],[-117.91290426524702,52.324714034095855],[-117.91305685491291,52.3248663325415],[-117.91324137359636,52.32500618803403],[-117.9133875482231,52.325163109935104],[-117.91354400109908,52.32531454952569],[-117.91371834994199,52.325459333914964],[-117.91386291196696,52.325615013674835],[-117.91399537084529,52.32577605652469],[-117.91414572571051,52.32593044416731],[-117.91429607997544,52.32608484050628],[-117.91443636741218,52.326243605098995],[-117.91448991061846,52.32642112211542],[-117.9146097026502,52.32658070853358],[-117.91478963998713,52.326725322040176],[-117.9149498596166,52.32687645374784],[-117.91510225643313,52.32702985405474],[-117.91525423391093,52.32718549048692],[-117.91544936192963,52.32731818493495],[-117.91569906064606,52.327347511863344],[-117.915899666826,52.327480588758384],[-117.91608550702104,52.32762335593038],[-117.91625162931956,52.327772641501994],[-117.91634732811575,52.327942391671705],[-117.91644569210897,52.328107805685924],[-117.916661279094,52.32823008569852],[-117.91687858718794,52.32835305433495],[-117.9170712720738,52.328488959369764],[-117.91725988702761,52.32862684498743],[-117.91745257433469,52.32876274936021],[-117.9176332620636,52.32890346464919],[-117.91781363783296,52.32904584576639],[-117.9180064325704,52.32918119677031],[-117.91821133317502,52.32931118372689],[-117.9184104438882,52.32944246225218],[-117.91856489512611,52.32959488059258],[-117.9187618696589,52.32972769691711],[-117.91896270394705,52.32985966345959],[-117.91900651501186,52.33003988061339],[-117.91887039557984,52.330193402881],[-117.91892704315559,52.330364362672235],[-117.91909918468238,52.33051124707063],[-117.91926339920072,52.330660952715135],[-117.91941347514036,52.33081700798304],[-117.9196089454261,52.33094802893542],[-117.91984156549535,52.33105852085471],[-117.92006552525774,52.33117573635272],[-117.9202963238675,52.33128609075985],[-117.92056527077631,52.331360757314],[-117.92081209296052,52.33145474607327],[-117.92103595362597,52.33157251206902],[-117.92124729208437,52.33169786909075],[-117.92144214421197,52.33183222803677],[-117.92162875292827,52.331971092269825],[-117.9218257477207,52.332103903148806],[-117.92206062370354,52.33221229071524],[-117.9223174187577,52.33230245950998],[-117.9225661811604,52.332396010787875],[-117.9227331810428,52.33254083162536],[-117.92286324103209,52.33270507703403],[-117.92297765285326,52.33287386099457],[-117.92315363198377,52.33301028186754],[-117.92340735330171,52.333107002928486],[-117.92365111091785,52.33320754026204],[-117.9238903817002,52.33331227676287],[-117.9241126422598,52.33342880422552],[-117.9243346965224,52.333546436069945],[-117.92457610939036,52.33364963259658],[-117.92478971225405,52.33377288310893],[-117.92496392378857,52.33391876337753],[-117.92507156643956,52.33408425487289],[-117.92515938376218,52.334256827760655],[-117.92532008591853,52.33440571680838],[-117.92550864931441,52.33454414079439],[-117.92568297012248,52.334689467486974],[-117.92586757166383,52.334829301833025],[-117.92607507955263,52.33495550831604],[-117.92628858775363,52.335079317264686],[-117.92649171555888,52.33520916143206],[-117.92669473919037,52.33533956655098],[-117.92690105356283,52.33546230274951],[-117.92704548748401,52.335619078606804],[-117.92715590823768,52.33577968817856],[-117.92720403831477,52.33595681533702],[-117.92736433563874,52.33610792881966],[-117.92748733171919,52.336270535727635],[-117.92762018857269,52.336429886640225],[-117.92777073295133,52.33658370293984],[-117.92790134784629,52.336745153404955],[-117.92800665944625,52.336913303052064],[-117.92817317316005,52.33706089542814],[-117.92839290781602,52.3371811804175],[-117.92858832877718,52.337312746918776],[-117.92875453157092,52.33746201346835],[-117.9289048745167,52.33761694190644],[-117.92903742797643,52.3377779571746],[-117.92913246830614,52.33795158909209],[-117.9292659635967,52.33810759671603],[-117.92947808880223,52.33822904450378],[-117.92971849654198,52.338337789713805],[-117.92993641614036,52.3384579441434],[-117.93010241895634,52.33860832236415],[-117.9301907890314,52.33877810205174],[-117.93024644746984,52.33895462384906],[-117.93029234978741,52.33913384924923],[-117.93033846152888,52.33931196087283],[-117.93037309477933,52.33949209619326],[-117.93042134754873,52.33966866018777],[-117.93051551153248,52.33983715586646],[-117.93065793824549,52.33999491292538],[-117.93079222612252,52.34015661471915],[-117.93088868661864,52.34033259984849],[-117.93110365004169,52.340439004596654],[-117.9313814412735,52.34050635049123],[-117.9316607449678,52.3405754982627],[-117.93189084086688,52.34068014155311],[-117.93207710508378,52.34082120659357],[-117.9322510553369,52.340968750185766],[-117.93239156080826,52.34112693882365],[-117.93252111305937,52.34128435351677],[-117.93271218254802,52.34141955132894],[-117.93283876056847,52.3415829681636],[-117.93289067610137,52.341759794695044],[-117.93298313359577,52.34192759930841],[-117.93315333570189,52.34207543890155],[-117.9332834151928,52.34223007274293],[-117.93332750756178,52.34240916902751],[-117.93336074768375,52.342586948091956],[-117.93332892769513,52.342766387082555],[-117.93321274556254,52.342932039145325],[-117.9330297348262,52.34306933146883],[-117.93283232337032,52.34320449000127],[-117.93275986030957,52.34337375322065],[-117.93273502723949,52.343555376877305],[-117.93266892621618,52.34373016613573],[-117.9324855976893,52.34386912366283],[-117.93228666745881,52.34400248756393],[-117.9321014050924,52.34414187829868],[-117.93195359866526,52.34429855187434],[-117.93185890250916,52.344467959644206],[-117.93178710913016,52.344643479556034],[-117.93174088104489,52.34482078421018],[-117.93173655015725,52.345001573425165],[-117.93175220152439,52.34518432628366],[-117.93174818336527,52.34536344930685],[-117.93167915404814,52.34553408918286],[-117.93150984536597,52.34568700471633],[-117.9312834142906,52.345799257057955],[-117.93102067283976,52.34588810447278],[-117.93083879160937,52.34601927197361],[-117.93077012205599,52.34619782591414],[-117.93073108754788,52.34637620127827],[-117.93070849022996,52.3465557152172],[-117.93070070981773,52.34673514432921],[-117.93069465186151,52.346915253327495],[-117.93066292297404,52.34709412967021],[-117.93057004185547,52.347263663526924],[-117.93038799426945,52.34740553364003],[-117.93016436572998,52.34752250248143],[-117.92998800355957,52.3476636407451],[-117.92974799362906,52.347769301182595],[-117.92956891670543,52.347905176439404],[-117.92955502687258,52.34808755499222],[-117.92952876954892,52.348266822334175],[-117.92950079111708,52.348445400807286],[-117.92946357729328,52.348623894047996],[-117.92943184037621,52.34880277872885],[-117.92942588222917,52.348982326057616],[-117.92942905391457,52.34916251988244],[-117.92943233102031,52.34934215236558],[-117.92943743447955,52.349521912345786],[-117.929436955258,52.349701842141755],[-117.92941940993362,52.34988397429219],[-117.92941345158562,52.35006352147101],[-117.9294642696807,52.35023631837393],[-117.9295926876219,52.35039986516072],[-117.92972507211178,52.35056200069038],[-117.92985970386822,52.350722027208356],[-117.93000806146799,52.35087793884243],[-117.93014300807943,52.351036298863335],[-117.93022153905781,52.351209341834036],[-117.93029031299362,52.35138507944685],[-117.93036863609562,52.351559235994756],[-117.93043386205593,52.35173416605419],[-117.93042811677358,52.35191259930667],[-117.93034383295358,52.35208555864711],[-117.93032112564707,52.352265633038634],[-117.93039052898645,52.35243802928224],[-117.93049954148697,52.35260642964823],[-117.93055715087308,52.3527825156061],[-117.930603278287,52.35296062525304],[-117.93064950979605,52.35313818245094],[-117.93069391686782,52.35331560319454],[-117.93074197562802,52.35349328780911],[-117.93078445155253,52.3536711422845],[-117.93081941267262,52.35384960044311],[-117.93085254756073,52.35402793106714],[-117.93088182056427,52.35420712038168],[-117.93090916356026,52.35438673457176],[-117.93092716328908,52.35456683387199],[-117.9309870217895,52.354740819406445],[-117.93111180578369,52.354904108952766],[-117.9312245858436,52.35507220199355],[-117.93131998585571,52.35524416368068],[-117.93134268796709,52.35541894026358],[-117.9312888256788,52.355597408339996],[-117.93125516088945,52.35577671747439],[-117.93126403129486,52.35595617015607],[-117.93127462299906,52.3561363116202],[-117.93126866983236,52.35631586694182],[-117.93125713302133,52.356495592165714],[-117.93124376947996,52.35667518987089],[-117.93123223246921,52.35685491504284],[-117.93122069536236,52.357034640188836],[-117.9312036781886,52.35721398282863],[-117.9311884875379,52.357393452934915],[-117.93118243012118,52.357573560483935],[-117.93119302188168,52.3577537017321],[-117.93119448029377,52.357933205486766],[-117.93116650248767,52.35811178303569],[-117.93112208412984,52.358289213102424],[-117.93107025484673,52.35846668555082],[-117.93101304870972,52.35864322305862],[-117.93094681220839,52.358818570623676],[-117.93088240357318,52.35899403671604],[-117.93083980987818,52.35917159405314],[-117.93079142106563,52.359350443882185],[-117.93076354607456,52.359528459826606],[-117.93081954647226,52.35970331241172],[-117.9308998189745,52.35987703367568],[-117.93098009212294,52.360050754860985],[-117.93104716017868,52.3602258109329],[-117.93111036607033,52.360401725670336],[-117.93115660930945,52.36057927274321],[-117.93118202528022,52.360759319810775],[-117.93123223567679,52.36093545567164],[-117.9313453448139,52.36110188169778],[-117.93148601790702,52.36125950767118],[-117.9316404217405,52.36141300967761],[-117.93178903163742,52.36156780404005],[-117.93192349459648,52.36172894944024],[-117.93202888450446,52.36189708329708],[-117.93208092654619,52.3620733461175],[-117.93210838323422,52.36225240653826],[-117.93211877089918,52.36243366077324],[-117.93211282037593,52.362613215271686],[-117.93209215091846,52.362792302317764],[-117.93205676234416,52.36297092190368],[-117.93201589107231,52.363149167923986],[-117.9319731942178,52.36332727751506],[-117.93193049533792,52.36350539597583],[-117.93188607456975,52.363682825601956],[-117.93183972277114,52.363860680106875],[-117.93179347431654,52.36403798216641],[-117.93174529312691,52.36421571801147],[-117.9316952795759,52.36441306684913],[-117.93170964261807,52.36438586140715],[-117.93173643796081,52.364331875434054],[-117.93177998870861,52.36427737069],[-117.93185334284371,52.364231715425774],[-117.93193974320579,52.364195437283726],[-117.93207087706251,52.364167353329535],[-117.93221866244072,52.364139302803714],[-117.93229065107943,52.36412063139258],[-117.93232030054439,52.36412044356839],[-117.93242147632323,52.3640744726333],[-117.93253930353619,52.36402853513954],[-117.93262555046662,52.36398321036782],[-117.93272657145663,52.3639282019578],[-117.93285865470179,52.36385561986754],[-117.93297388294403,52.363764368433124],[-117.93308931542435,52.36369174369298],[-117.93319018090294,52.36362769766158],[-117.9333077464372,52.36357328348027],[-117.93343872322345,52.363536160761896],[-117.93355502958201,52.36350816917338],[-117.93368798722867,52.363480210834254],[-117.93383409664605,52.363461067990265],[-117.93390639222898,52.36346046997991],[-117.93398036033655,52.36345096216801],[-117.93411133617299,52.36341383868758],[-117.93422931423804,52.3633769366621],[-117.93430099179591,52.36334018958137],[-117.93435925905374,52.363286142066244],[-117.93441564844188,52.3632223774649],[-117.93442990401014,52.36319573297673],[-117.9344734502096,52.3631412271753],[-117.93454471444005,52.36308695792766],[-117.93463257890778,52.363023132251406],[-117.93470337741338,52.36294176018597],[-117.93474620108115,52.36285165784163],[-117.93477492226144,52.36279724613555],[-117.93480197104003,52.36275174419334],[-117.93481576248895,52.36269798801858],[-117.93484448347925,52.36264357628881],[-117.93485812192945,52.36258077398415],[-117.93488699737767,52.36253539945005],[-117.93489896176075,52.36248151582148],[-117.93489818880319,52.362436329763895],[-117.93491198170375,52.36238256465497],[-117.93491120873433,52.36233737859411],[-117.93492499991476,52.36228362238934],[-117.93493889641454,52.362229304864634],[-117.93495284380006,52.362184576955734],[-117.93496674023292,52.36213025942359],[-117.93497885901105,52.3620854129841],[-117.93499260076956,52.36202205823032],[-117.93503604139453,52.36196810457533],[-117.93512207599069,52.36190415104125],[-117.93514923603772,52.36181860654939],[-117.93522033047024,52.3630274648804],[-117.93561061724762,52.36302873628971],[-117.93590282028548,52.363049676104495],[-117.93619079227192,52.36308330004883],[-117.93647677837343,52.363127508114424],[-117.93675467270981,52.36318525036302],[-117.93701497259597,52.36326771581476],[-117.93725893226333,52.363368222230086],[-117.93748107108077,52.363486387525604],[-117.93769078663969,52.363611584124165],[-117.93787769036956,52.36374985751023],[-117.93800842529538,52.36391129322699],[-117.93811384423968,52.36407942127986],[-117.93820970953601,52.3642491486655],[-117.93830354131632,52.3644198533857],[-117.93839747748177,52.364590005599354],[-117.93849710433723,52.3647594261225],[-117.93858910968692,52.36493001207715],[-117.93864300919427,52.36510639892332],[-117.93865180692629,52.365286411075225],[-117.93863471373963,52.36546630607801],[-117.93854892357842,52.36563746715743],[-117.93845765161016,52.365808246015575],[-117.93832571423525,52.3659688602738],[-117.93827442693869,52.36614355503579],[-117.9383111525533,52.36632268902081],[-117.93839157117515,52.366495851817064],[-117.93850075572968,52.36666368153781],[-117.93865765782171,52.36681395978132],[-117.93885486240627,52.36694674709916],[-117.93906428617568,52.36707360701898],[-117.93928206265457,52.367195416290976],[-117.93950443565575,52.36731246364437],[-117.93973537194074,52.367423337635444],[-117.93997894357682,52.36752606547008],[-117.94023885796057,52.367610750875265],[-117.94052890243948,52.36762362818443],[-117.94081497530586,52.36767741498958],[-117.94106909665301,52.36776339155026],[-117.9412321198073,52.36791070701514],[-117.9413389687616,52.368081195327704],[-117.94140201921833,52.36825821713291],[-117.94149597595755,52.36842836634085],[-117.94164036435188,52.368586233788804],[-117.94184849847724,52.36871018133341],[-117.94209411847027,52.36881191822665],[-117.94234475252367,52.368906665526886],[-117.9426001900075,52.3689955458435],[-117.94285327835418,52.36908708706505],[-117.94310636944556,52.36917861881882],[-117.94335058557158,52.369277998251235],[-117.94357726130023,52.36939195102784],[-117.94379099010595,52.36951572449691],[-117.94400054443884,52.36964202285496],[-117.94420367940708,52.36977294630151],[-117.9443725149646,52.36991897285129],[-117.94455581294656,52.37005698025171],[-117.9448193529238,52.37013232024918],[-117.94509620796424,52.37018601242681],[-117.94535165868919,52.37027488660514],[-117.94564276629863,52.37030193178852],[-117.94593110662426,52.37033386524468],[-117.94622153688032,52.37035465171714],[-117.94650841655437,52.37039437988866],[-117.94679529842684,52.3704340984405],[-117.94708713784526,52.370457246377015],[-117.94737788178466,52.370476363805054],[-117.94767097595089,52.370492818937905],[-117.94796506098386,52.37051386442404],[-117.94823262950378,52.370577625167655],[-117.94847890135871,52.3706760071954],[-117.9487281504177,52.37076838588572],[-117.94899556531178,52.37084285705907],[-117.94922633617003,52.37095482561791],[-117.9494999647852,52.371006025366135],[-117.94978528743337,52.37105409402665],[-117.95007342028694,52.37102789183787],[-117.95032087333145,52.370932289578384],[-117.95060978897688,52.37091178196105],[-117.95089776240674,52.37087654059226],[-117.95119049227235,52.370885072360196],[-117.95148285955834,52.370905420428095],[-117.95177401905293,52.370882809597994],[-117.95205958855705,52.370840628538886],[-117.95233570448389,52.3707797367171],[-117.95261020095974,52.37071760333376],[-117.95281717975386,52.37059097316608],[-117.95307318976823,52.37050893156442],[-117.95336131698441,52.37048272120819],[-117.9536013954195,52.37037701379399],[-117.95388461188115,52.370337481009024],[-117.95403576870774,52.37018271198908],[-117.9542912517141,52.370103456506875],[-117.95457660503307,52.370062382984486],[-117.95484717694059,52.369991505318936],[-117.95512751398914,52.369937670691094],[-117.95542091357993,52.369932699662165],[-117.95570845947294,52.36989967384468],[-117.95599310219555,52.36994147009183],[-117.95628572329746,52.3699505414459],[-117.95657704408261,52.36997644547569],[-117.95686476480122,52.370011693059496],[-117.95714539202329,52.37006505827406],[-117.95742398416594,52.370119409484644],[-117.95769344748305,52.37019286508211],[-117.95797470234643,52.37024288701615],[-117.95826034126175,52.37028926870455],[-117.95855155483679,52.37029597976625],[-117.95884098428441,52.3702726628139],[-117.95911739884622,52.37021008866112],[-117.95936968369055,52.370118189500495],[-117.95962802597901,52.370033480526324],[-117.95988950157687,52.36995180500055],[-117.96010637687846,52.36983149281864],[-117.96036351397659,52.36974331386889],[-117.96061871771562,52.369655568650494],[-117.9608535020371,52.36954834241852],[-117.96104405397786,52.36941040335293],[-117.9612410801628,52.36927742709388],[-117.96144489234324,52.36914774741884],[-117.96168301294324,52.36904244860282],[-117.96194427027511,52.368961882154004],[-117.96223012883273,52.36891800983437],[-117.96252048381578,52.36888967619771],[-117.96281131223309,52.36886870385869],[-117.96308870592321,52.36881070224995],[-117.96335904766508,52.36874091845496],[-117.96363262468962,52.368673624438415],[-117.96386457498801,52.36856168300068],[-117.9641050910337,52.368463315742865],[-117.96439366201089,52.368424699538586],[-117.96468380395648,52.368397474252916],[-117.96497457040486,52.368366906928586],[-117.96525990206767,52.36832580710457],[-117.96552689438828,52.36825409812197],[-117.9657892372227,52.36817755258587],[-117.96607247353153,52.3681278480224],[-117.96632473138826,52.36803593360854],[-117.96656596859086,52.36793365855135],[-117.96682741666548,52.36785197618571],[-117.96710067112986,52.36778634016158],[-117.96736979743142,52.367713078722204],[-117.96764607995168,52.36765103658281],[-117.96791468312573,52.36758056276964],[-117.96816301294695,52.36747991470639],[-117.96842357756543,52.36741282582914],[-117.96872187391577,52.36742113281061],[-117.96900395771958,52.367377542396675],[-117.96926842768063,52.367299449634444],[-117.96954731838042,52.36724322563863],[-117.96983566816877,52.36720570965698],[-117.97010912211596,52.3671389527412],[-117.97028136196509,52.36699972946144],[-117.97043620755092,52.36684463111592],[-117.97064629633856,52.366710851640114],[-117.970893019933,52.36664844690193],[-117.97104002040797,52.3668126530883],[-117.97120230811947,52.366964390620765],[-117.97136694529576,52.36711346585534],[-117.97151764939946,52.36726777418808],[-117.97168635946251,52.36741487508449],[-117.97187307558458,52.36755476846859],[-117.97208108345322,52.36767977570409],[-117.9723138293924,52.36779126415705],[-117.97254485251666,52.36790207285465],[-117.97278015555996,52.368009793403836],[-117.97303340699887,52.3681007075715],[-117.97329114629277,52.36818741969666],[-117.97352420936714,52.36829723945681],[-117.97372998221363,52.36842434441423],[-117.97390063480194,52.36857101634908],[-117.97404717754058,52.36872785650816],[-117.97417816771026,52.368888689521604],[-117.97432288525171,52.36904540247852],[-117.97448967968045,52.369192933637464],[-117.97468272831827,52.369328738688445],[-117.9748924753304,52.36945442887635],[-117.97511892404385,52.3695699862929],[-117.97535658916107,52.36967504827093],[-117.97561199598599,52.36976440835983],[-117.97588977737911,52.369823170443375],[-117.9761650033428,52.36988570779468],[-117.97642755909418,52.36996653611181],[-117.97667827355086,52.37006121813558],[-117.9769093200364,52.37017201795904],[-117.97711480064862,52.37030078296836],[-117.97729147500897,52.370445041087216],[-117.97741861812138,52.37060673940215],[-117.97754169316231,52.37077040270445],[-117.97767849581135,52.37092994557622],[-117.97774790873291,52.37110343370888],[-117.97779435533798,52.371280960717435],[-117.97789791026857,52.371450047624315],[-117.97794456583449,52.37162646073434],[-117.97801194556442,52.37180093565168],[-117.9781076738282,52.37197229530491],[-117.97821702670899,52.37214008695805],[-117.97811456175607,52.37230221230108],[-117.97793841883056,52.37245245778546],[-117.97785673840076,52.3726222253352],[-117.97801612958132,52.37275005604098],[-117.97832428641618,52.3727652202514],[-117.9786236008276,52.37275834328891],[-117.97889586418711,52.372807119379424],[-117.97914363023422,52.372907790536225],[-117.97940141052305,52.37299448878286],[-117.97966858106449,52.37307055543569],[-117.97993126589152,52.373150823194365],[-117.98019160358415,52.37323375257358],[-117.98044704148873,52.37332310178705],[-117.98070347464476,52.37341704123607],[-117.98086414211555,52.373557925568136],[-117.98093843253585,52.37373512405233],[-117.98098123841758,52.373912404921384],[-117.9809514209008,52.374091979326565],[-117.98096984730445,52.37427094540352],[-117.98099375479778,52.374450300489066],[-117.98100852644811,52.374629013094044],[-117.98108333823626,52.37480343131021],[-117.98114097412771,52.37498061183692],[-117.9811114692279,52.37515851099031],[-117.98108958539876,52.37533525070397],[-117.9811396006826,52.375513590567536],[-117.98122600376969,52.375685427428486],[-117.98137452801623,52.375841831753],[-117.98157577006695,52.37597367629031],[-117.98180420161871,52.37608879435445],[-117.98206846710977,52.376160708090644],[-117.98235344434747,52.37621092414185],[-117.98262074477977,52.37628642246484],[-117.98289940917266,52.37634071230723],[-117.98318422381062,52.37638188926395],[-117.98344886606063,52.37646172309535],[-117.98370177390161,52.37655484100715],[-117.98396265981272,52.37663497276971],[-117.98425524647163,52.376664275297074],[-117.98453303596906,52.37661413715492],[-117.98480773098484,52.37655081416091],[-117.98508666123159,52.376494553247355],[-117.98536710584686,52.376440093457376],[-117.98564331529796,52.376378561364504],[-117.98592792951341,52.37637120496168],[-117.98614682104446,52.37648790890071],[-117.98635518181712,52.37662137431378],[-117.98655654578019,52.37675265769758],[-117.98678609604393,52.37687178637048],[-117.9870448916647,52.37694330889081],[-117.98734724692645,52.37692025486645],[-117.98753504598379,52.37679675257524],[-117.9877922311981,52.37671810286227],[-117.98806345170242,52.376683305255774],[-117.98830432434414,52.37679137341923],[-117.98851811505492,52.376915616305084],[-117.98872173007622,52.37704479488426],[-117.98891903244495,52.37717804856938],[-117.98908987598135,52.37732413584471],[-117.98925664989032,52.37747219731001],[-117.98944164047926,52.3776119258828],[-117.98959651503742,52.37776424396191],[-117.98974721686778,52.377919088739205],[-117.98992354928143,52.3780655544173],[-117.99017938810564,52.378143064807425],[-117.99046033752889,52.37811569496092],[-117.99072411049153,52.37814072859418],[-117.99097793627335,52.37823897369469],[-117.9911267139895,52.37839424252469],[-117.99113139153347,52.37856774768462],[-117.9911089240307,52.378747830252514],[-117.99115919235506,52.3789250515276],[-117.99143350121403,52.37893332123206],[-117.99172824475681,52.37891142483367],[-117.99201350007718,52.37895035244128],[-117.99229298307701,52.37901031522558],[-117.99255400443897,52.379089866182035],[-117.99277861862149,52.37920582314935],[-117.99295982705473,52.379356005077135],[-117.99290951176518,52.37951667742019],[-117.99296547937611,52.379693163559736],[-117.99321485260214,52.37976570584398],[-117.99349465479757,52.37982399052698],[-117.99354341695347,52.37999941785069],[-117.99355255144654,52.380178862383026],[-117.99347760462118,52.38035249630207],[-117.9934462144586,52.38053083270778],[-117.993460727528,52.380711218071596],[-117.99354191418925,52.38088155174242],[-117.9935545654459,52.380893140580206],[-117.9938218859881,52.38112769335222],[-117.99404416815746,52.381246301261015],[-117.99429050072087,52.381345146693164],[-117.994568797299,52.38140163595697],[-117.9948613608894,52.38142131330361],[-117.99515545668136,52.38141290050307],[-117.99544797393602,52.38139308694098],[-117.99573980379121,52.38136702463832],[-117.99602864029121,52.3813272164003],[-117.99628170163226,52.38124093340248],[-117.99652021899523,52.381133336512285],[-117.99676459389156,52.38103404168339],[-117.99702789201494,52.38095241861468],[-117.99728967339229,52.380868993309875],[-117.99755993076018,52.38079969191993],[-117.9978519484402,52.380802401567365],[-117.99814579234986,52.38080524582934],[-117.9984358282633,52.38076889948741],[-117.99870294698835,52.3806965535597],[-117.99895400335778,52.38060110127246],[-117.99922263599312,52.380530555753516],[-117.99950460648309,52.38047785469954],[-117.99979671353888,52.38043036672457],[-118.00000038012159,52.38047999381809],[-118.00012295028205,52.38048790178005],[-118.00024551882792,52.38049581852333],[-118.00038889580976,52.38048147354559],[-118.00054881201598,52.38049761354131],[-118.00062223616015,52.38058053461355],[-118.00066760805552,52.380694792225086],[-118.00066987570051,52.38079197150974],[-118.00067321948904,52.38087343084814],[-118.00067349081037,52.380881915384265],[-118.00067683622488,52.38088383446188],[-118.0007741794207,52.38092779532023],[-118.0009194355567,52.38095307444314],[-118.0010919681239,52.38099095253556],[-118.00123695322574,52.38100774672597],[-118.00139477236435,52.38101527462749],[-118.00156227557223,52.381040394391654],[-118.00182340375157,52.38109962276547],[-118.00205957692573,52.3812033889646],[-118.00226690850813,52.38133279613022],[-118.00248890304704,52.381453063057435],[-118.00271089882378,52.38157332954938],[-118.00291092251851,52.3817022300647],[-118.00305578741902,52.38185890567626],[-118.00316657272333,52.38202957904054],[-118.00335849709336,52.382152277807265],[-118.00363990908915,52.382221937851114],[-118.00390014139994,52.382305918432365],[-118.00415813043635,52.38239200865132],[-118.00441377504116,52.38248075207139],[-118.00466738541775,52.382570482417755],[-118.00492454991797,52.38266101732678],[-118.00516684493441,52.3827618145881],[-118.00537522991193,52.38288564689978],[-118.00555581073715,52.38302955190764],[-118.00572856176403,52.38317574037932],[-118.00586382061195,52.383324418954594],[-118.00602087570329,52.3834853163834],[-118.00609580398529,52.383659717303736],[-118.00614786479058,52.383837610200075],[-118.00614818488793,52.384024906159254],[-118.00632415420223,52.384153833704254],[-118.00651815152273,52.384325179663094],[-118.00668953512616,52.38445886180092],[-118.00681273137016,52.38460275213627],[-118.0068656058205,52.38472654913993],[-118.00695480673974,52.384943676729094],[-118.00702599042394,52.385088485729746],[-118.00706381732574,52.38524339977472],[-118.00715319806525,52.385439673097224],[-118.00729413526159,52.3856772966493],[-118.00736564083785,52.385790539184484],[-118.00743525328815,52.38589405705456],[-118.00753857127762,52.38597565257662],[-118.00762480563486,52.38608935278267],[-118.00773120924292,52.38624392244084],[-118.0078007470062,52.38636775052179],[-118.00787372670214,52.38652283590809],[-118.00808152057226,52.386759435366976],[-118.0083243916066,52.387016507564745],[-118.00842926051524,52.38711964387886],[-118.00851721786808,52.387263913001156],[-118.00860373889746,52.38735619699684],[-118.00867335684626,52.38745971400196],[-118.00877815348697,52.387583151503186],[-118.00891623535145,52.38771678482594],[-118.00913983478377,52.38782868916708],[-118.00924592993037,52.388014823363186],[-118.00933231427449,52.38811780998955],[-118.00944008976947,52.388344682190635],[-118.00948641062293,52.38851371862344],[-118.00955180607873,52.38868971302139],[-118.0096353877829,52.388837631482176],[-118.00975600898661,52.389025336492715],[-118.00979570813051,52.389200115580216],[-118.00979739029864,52.3893801753047],[-118.00979348491822,52.38956040870428],[-118.00978968395184,52.38974008070725],[-118.00977470441948,52.38992011790468],[-118.00977283441397,52.39009936365112],[-118.00979870040695,52.39027882797851],[-118.00984336684321,52.39045677468134],[-118.00992411763164,52.390629884675235],[-118.00992828889429,52.390796569302346],[-118.00996588717754,52.39096274630653],[-118.00998668233098,52.391139612967514],[-118.01002585948333,52.39134707157995],[-118.01008764153781,52.39151266205961],[-118.01019471832427,52.391683636343586],[-118.01032655662863,52.39189073301936],[-118.01042345731965,52.39206664497734],[-118.01038992994022,52.39220703531894],[-118.01036622462549,52.39238421337052],[-118.01044322156051,52.3925576227221],[-118.01058428627229,52.39271514899952],[-118.0106754312967,52.39288219747837],[-118.01077164614394,52.39305186115401],[-118.01091240366621,52.39321105326676],[-118.011112091415,52.39334216618697],[-118.01126772064424,52.39349111205042],[-118.01138305405654,52.393657573202844],[-118.0115302327605,52.39381213538842],[-118.01171332828886,52.39395282327109],[-118.0118983578981,52.39409307569874],[-118.01208918572503,52.39423203126356],[-118.01222487928541,52.39438862423617],[-118.01228836358051,52.39456504255652],[-118.01234798257357,52.39474233113631],[-118.0124000825497,52.39492021973522],[-118.01241885390135,52.39509807305156],[-118.0123748362085,52.39527496771303],[-118.01238846396167,52.395470516100175],[-118.0124423312509,52.39560904179697],[-118.01244178773288,52.39576130240437],[-118.01240004697598,52.395925953738356],[-118.01228555442792,52.396033680232726],[-118.01225981904821,52.396211845775234],[-118.01228956337094,52.396390447314225],[-118.01232458476757,52.39657055020419],[-118.0122904324227,52.39674418174749],[-118.01217251320132,52.396900181462584],[-118.01203454972517,52.39703450016167],[-118.01182685715605,52.397175277914435],[-118.01164020942605,52.39731243596847],[-118.01149078401109,52.39746852568134],[-118.01132107378912,52.39761418089212],[-118.01111251578882,52.39773967261092],[-118.01089360663211,52.39786106504458],[-118.01067317767452,52.397980664529136],[-118.0104505060129,52.39810235608595],[-118.0102467027438,52.39823212778322],[-118.01015678658923,52.39839682816888],[-118.01013183329889,52.39858068830066],[-118.01011136783475,52.398760336682656],[-118.01010197694697,52.39894019006848],[-118.01008333819388,52.39911997355539],[-118.01004610248435,52.39930016080951],[-118.01004088758425,52.39947747759617],[-118.01011371948762,52.399653422755605],[-118.01025704944789,52.39980884718202],[-118.01045624842031,52.39994274068293],[-118.01055857504727,52.40000001112756],[-118.01067591112066,52.40006620550322],[-118.01081568985391,52.40022082425655],[-118.0109486736802,52.400372148864356],[-118.01108479171126,52.40055640542884],[-118.0111641903661,52.40071699977439],[-118.01126032182324,52.400887214497835],[-118.0114230865484,52.40103777804811],[-118.011584128105,52.401187653760196],[-118.0117308159599,52.40134499492272],[-118.01187343120992,52.40150432000583],[-118.01198544086475,52.40166886082674],[-118.01202871381163,52.4018444512841],[-118.01203751539258,52.40202611903928],[-118.01209507131261,52.402214545015056],[-118.01229277435709,52.40231674311381],[-118.0125907292847,52.402348027534984],[-118.01288878908163,52.40237874982233],[-118.01317911963426,52.40241119420428],[-118.01345533370355,52.40246973878037],[-118.0137183649426,52.40254936696041],[-118.01397628752164,52.4026365478856],[-118.01423431556401,52.40272316686236],[-118.0144921374663,52.4028108990911],[-118.01475282510873,52.40289318776242],[-118.01502155501775,52.40297207766088],[-118.01530312569557,52.40301180885995],[-118.01559929800733,52.403002909240065],[-118.01588964023483,52.4029755567568],[-118.01617860287826,52.402935699076146],[-118.0164546265512,52.40287577016945],[-118.01672712973858,52.40280488520182],[-118.01700421753452,52.40281891583676],[-118.01720189723162,52.402961155688274],[-118.01747622534376,52.402950185188494],[-118.01761446793809,52.40279444548613],[-118.01775567654568,52.402632710083374],[-118.01796586062348,52.40250844686892],[-118.01819481373802,52.40239281498844],[-118.01841200088829,52.40227072172758],[-118.0186289780852,52.402149750798685],[-118.01885254543447,52.402033177875566],[-118.01911016845197,52.401942643374625],[-118.01930122901369,52.40182157197598],[-118.01944118584693,52.40166651744692],[-118.01966323108313,52.401548141605],[-118.01990018066186,52.40143925843812],[-118.0201383367597,52.40133384239454],[-118.02037821614014,52.40122911331749],[-118.02061951077056,52.40112672859449],[-118.02086394347103,52.40102738458354],[-118.0211115142716,52.40093108126579],[-118.02136567541001,52.400839175696866],[-118.02162773740467,52.40075458296889],[-118.0218952506515,52.40068051850378],[-118.02217235714429,52.40062459598378],[-118.02246471490903,52.40059623923969],[-118.02275762552658,52.40058484156384],[-118.02305484951597,52.40059010257247],[-118.02333806264545,52.4005611134096],[-118.02361205908093,52.4004920045339],[-118.02389806547394,52.400447972591174],[-118.02418669257324,52.400409770155775],[-118.02447649544885,52.400385176339235],[-118.02476926648681,52.40038448564738],[-118.02506349023218,52.40040588790182],[-118.02535392092717,52.40043774054013],[-118.02564286912268,52.400487549003316],[-118.02592767374301,52.400499834699595],[-118.0262096049063,52.400457781687486],[-118.0264898768703,52.40039473926749],[-118.02677418637461,52.4003398711069],[-118.0270747202589,52.40032729125477],[-118.02738360761496,52.40033954480804],[-118.02761833213859,52.40028238707018],[-118.02773402759831,52.400108172472535],[-118.0277819342017,52.39999979023924],[-118.02781570055386,52.39992766137055],[-118.02793236481105,52.399768169694866],[-118.02815468634402,52.399648111132095],[-118.02839263804712,52.399533641209025],[-118.02858013941673,52.39940159926088],[-118.02864879963786,52.399221319633156],[-118.02867877931722,52.39902991052048],[-118.02882998205588,52.39890382443915],[-118.02909671457274,52.39884379694701],[-118.02940565053588,52.398805844175094],[-118.02969401679437,52.398748992974355],[-118.02992136863317,52.39864168717109],[-118.03011051546463,52.39850073177239],[-118.03029804076944,52.39835852734713],[-118.0304699639743,52.398200592021816],[-118.03068592543302,52.398094756837224],[-118.03096407633248,52.39805299284343],[-118.03126328034932,52.39803749601498],[-118.03156721579056,52.39803642091423],[-118.03185993910064,52.39804586305481],[-118.03215059721398,52.39806643420644],[-118.03244387787068,52.39809283466737],[-118.03273543436669,52.39811854710663],[-118.03302854210409,52.398135900352905],[-118.03332047105886,52.39813964358954],[-118.0336145708257,52.39813168601862],[-118.03390635717062,52.398116231352176],[-118.03420069442923,52.39809700773406],[-118.03449330522616,52.39807710502626],[-118.03478733283791,52.39805954627157],[-118.0350803254467,52.39804756503957],[-118.03537318457344,52.39804628624492],[-118.03566819328339,52.39807335690072],[-118.03596275846489,52.398112805247806],[-118.03625259261723,52.39813782163035],[-118.03653523290886,52.39812174009059],[-118.03680916218725,52.39806275067384],[-118.03707452536506,52.39798004095449],[-118.03734081623216,52.39789232264076],[-118.03761183800074,52.3978190348764],[-118.03789374188965,52.39777694452688],[-118.0381844478533,52.39774730849429],[-118.03848133141258,52.397724305722626],[-118.0387787017571,52.39770866374077],[-118.0390778706083,52.3977032974896],[-118.03937335210944,52.397707829592186],[-118.03966107607548,52.397724236269525],[-118.03994121946754,52.39776155439778],[-118.04020702795012,52.39783624068755],[-118.040467396037,52.39793028905396],[-118.04072969637919,52.39802391011156],[-118.04099581672317,52.398096928216304],[-118.04127640606544,52.39812186465603],[-118.04135914051547,52.398115145263525],[-118.04114965070706,52.398206209937854],[-118.04119752224808,52.39837758597294],[-118.0413308864329,52.39853736034193],[-118.04145621486794,52.39870052565082],[-118.0415776803024,52.398864553180516],[-118.04164160013711,52.399039288486115],[-118.04167319281572,52.39921856925573],[-118.04175805583925,52.3993902321867],[-118.04187372918314,52.399555548438485],[-118.04196611525337,52.39972660028445],[-118.04229313775971,52.400110638941484],[-118.04272110471791,52.40044971583488],[-118.04346986521206,52.40090673928065],[-118.04390370425098,52.40215375287985],[-118.04510743964448,52.402844519411666],[-118.04602739383448,52.40319765495433],[-118.04964900019249,52.40210463579635],[-118.0568371480277,52.40273577581062],[-118.06223469787972,52.4037558053942],[-118.06810329709822,52.404312641423004],[-118.07398503543027,52.40487909433688],[-118.08115554080243,52.40584981828391],[-118.08516703011433,52.40611344595093],[-118.08843289877899,52.406081210917584],[-118.09443154230362,52.40504890170866],[-118.10025663503912,52.40407214512157],[-118.10549798570423,52.403770421746955],[-118.11053694018715,52.40392446885043],[-118.1164113925822,52.404369810472225],[-118.12218430163958,52.40504592970375],[-118.12844004815217,52.405836919884536],[-118.13308895976546,52.40650315425449],[-118.13692183253683,52.40693329651008],[-118.14029566470751,52.40639091889169],[-118.14279260531953,52.40327204697224],[-118.14326693639298,52.39865561580182],[-118.14322920973453,52.395866017244245],[-118.1430759412307,52.394436713502415],[-118.14795535259324,52.39310704134317],[-118.153385894669,52.39297457749533],[-118.15618681075266,52.39288529050172],[-118.16169250380757,52.39258384346759],[-118.16721285127666,52.392282573132555],[-118.17021860222584,52.391962639869284],[-118.17378198580195,52.391020550756934],[-118.17702790445452,52.387510785411756],[-118.18070818870699,52.38559802023501],[-118.18366367838486,52.38294652111031],[-118.18426028126315,52.38129506309478],[-118.18309223499077,52.378600119326066],[-118.18287996116051,52.37569793253],[-118.18534103980464,52.373888222032434],[-118.1923558946108,52.37308685770221],[-118.19833788149191,52.373243447339725],[-118.20403555621185,52.373171921223246],[-118.21317122821286,52.37340714605749],[-118.21774543603381,52.37389821720873],[-118.22188976707494,52.37700991025578],[-118.22229156936649,52.379288521369915],[-118.22239066065279,52.37980437690905],[-118.22368573352705,52.38066563487283],[-118.22918803852659,52.38110521858696],[-118.23565360452096,52.37990176151402],[-118.23979378774945,52.37804581923792],[-118.24519668211502,52.37386667328192],[-118.24678246373878,52.36942591917875],[-118.24749663448358,52.36612326793044],[-118.24896269983772,52.36242554452376],[-118.25026019128045,52.358101892644584],[-118.25247868292522,52.35441340169707],[-118.2538387868252,52.351627649671336],[-118.25881748810403,52.34903853981747],[-118.26705742899229,52.34772466854584],[-118.27136543099121,52.3472960570943],[-118.27389679754485,52.34662790865291],[-118.27953367944325,52.34472874536667],[-118.28443691730958,52.341226979284656],[-118.28762965001873,52.340331498671794],[-118.29142723909241,52.34167188017892],[-118.29556145811915,52.34608830161578],[-118.29887055396622,52.3485082717449],[-118.30089991616347,52.349484653378326],[-118.30408524301627,52.35458283057809],[-118.3036359052224,52.35891130057176],[-118.30572183869596,52.362633745367745],[-118.31098661723256,52.36546463565616],[-118.31600204153358,52.367376016863346],[-118.3248507342997,52.368460146391506],[-118.33045324830438,52.3684962552329],[-118.33736622964885,52.36773937731715],[-118.34365243149476,52.36601319737587],[-118.35142044861219,52.364688010549635],[-118.35646348703203,52.36420499602149],[-118.36002889021418,52.363543002885315],[-118.3647635601769,52.359462712461685],[-118.36660442824301,52.3555944145856],[-118.37036303869964,52.35333816683712],[-118.37431240535085,52.35142194259214],[-118.37769240921027,52.35012881737924],[-118.38051409628346,52.34923065195093],[-118.38211686744386,52.34861633013535],[-118.38374669092352,52.34525994171466],[-118.3850134783448,52.34144665900447],[-118.38674946828168,52.338490173171984],[-118.3889293013781,52.336450262420215],[-118.39426036042653,52.33573730946215],[-118.39994767222215,52.33560115824179],[-118.4029313617698,52.33578656021617],[-118.40386674050802,52.33584859470636],[-118.40954625498237,52.336510281604035],[-118.41699414331003,52.33745849111915],[-118.4226861173189,52.337379581225214],[-118.4287865903699,52.3347272378811],[-118.43238366284648,52.33075286416055],[-118.43409572491406,52.32934006489912],[-118.43731632239009,52.325820103513024],[-118.44023105360276,52.3237857694495],[-118.44631344766789,52.3227341453666],[-118.45182303525071,52.32241821650756],[-118.45685520175105,52.322211239831795],[-118.45901205692121,52.3218801744524],[-118.46332290237477,52.32013654916711],[-118.46633486338123,52.317874623436445],[-118.46971100834577,52.316232205399295],[-118.47290233999428,52.315222536288374],[-118.477761340586,52.314393515381525],[-118.48270380675272,52.31418528272018],[-118.48700179541888,52.313181855639],[-118.49084237224592,52.31217335856375],[-118.49252776890665,52.311151567512034],[-118.49461156695028,52.309454406326786],[-118.49445492719946,52.3062002378247],[-118.4928109626474,52.30368140851562],[-118.49061609888655,52.300764848107],[-118.49049107970106,52.29665361147548],[-118.49210885373724,52.293813498298924],[-118.4979344154093,52.289962687076795],[-118.5029891822259,52.28798884464932],[-118.50897839697224,52.28590351173207],[-118.5127275544746,52.28489359698619],[-118.51992397938325,52.28316334945367],[-118.5289693117041,52.28268754691104],[-118.53148706684318,52.28264355897539],[-118.53631113966047,52.28369048144514],[-118.54152402313689,52.28479555129423],[-118.54384476388562,52.285378303223744],[-118.54711085859537,52.285106093980616],[-118.55123400104533,52.282609686812684],[-118.55220296171608,52.281189797627285],[-118.5542733391901,52.27818043207952],[-118.55487990326769,52.27287617556736],[-118.55604112083434,52.26991412327724],[-118.55803342489418,52.26632645548264],[-118.56135745911938,52.261604858953454],[-118.56184968509075,52.258239481599155],[-118.5602428818968,52.25275811007666],[-118.55761448364373,52.24653101102903],[-118.5557088087068,52.242530087381404],[-118.55443278238978,52.2394975300032],[-118.55326332032672,52.236361341061034],[-118.5533723500616,52.235217374619815],[-118.55338227589039,52.233451485126075],[-118.55462579740966,52.23094679091233],[-118.55865469057534,52.22845105259382],[-118.56341891242191,52.22733230240077],[-118.5650992651909,52.22682287669396],[-118.56556551878687,52.22659872975934],[-118.56803090511609,52.22238816009182],[-118.56815836657414,52.21925171140442],[-118.56923378540745,52.2149763263343],[-118.5702899046423,52.21149670536978],[-118.57165411793108,52.20665426951216],[-118.57271867676431,52.202951961535064],[-118.57357674243843,52.200620131255604],[-118.57463677870865,52.19651393174174],[-118.57597637396626,52.19360830543316],[-118.57738907462426,52.191733249450614],[-118.57870414133374,52.19093976624647],[-118.58215369127923,52.190156317963094],[-118.58503446235551,52.19028199359008],[-118.59153766041828,52.19076175172735],[-118.5964502617078,52.191410616765204],[-118.60026474891605,52.191418349348254],[-118.60642576283254,52.18882145283213],[-118.60868708276269,52.18722939421819],[-118.61213986749777,52.1858185438515],[-118.62061135430086,52.18339673809466],[-118.62837466095095,52.18011292077584],[-118.63174917372349,52.175959014735426],[-118.63204592571329,52.174305709353305],[-118.63598353228778,52.170558030778395],[-118.6409470727827,52.16692034300217],[-118.64457900885387,52.16591070434224],[-118.65118440971061,52.16490306786294],[-118.65861820427864,52.16412993659777],[-118.66346790947568,52.163573860108016],[-118.667094316227,52.16250460439834],[-118.67047831389857,52.15835042725047],[-118.67106264522857,52.1544711433839],[-118.67229399955755,52.152590990827385],[-118.67871028633373,52.151639789660855],[-118.68593180226297,52.15479897542051],[-118.68795025808093,52.157657768427036],[-118.68931444610799,52.16160102193888],[-118.69271830845939,52.16497594192713],[-118.69819103618359,52.1659565166775],[-118.70517523506516,52.16461315300917],[-118.70704735715512,52.163987808482965],[-118.71495523569565,52.16161469076666],[-118.72369573405261,52.161808862698805],[-118.72794610379087,52.16524225591536],[-118.72975321129408,52.17112541101892],[-118.73084726140117,52.17381100377742],[-118.73658819662101,52.17776007354746],[-118.74500573798186,52.18217488640049],[-118.74853631296989,52.18412717188288],[-118.75448140294534,52.184769397413014],[-118.75996651488344,52.18323652967417],[-118.76154793327105,52.18267544480546],[-118.76957505531253,52.17950083732917],[-118.77476744743367,52.18076650542111],[-118.77662116315848,52.18156908526455],[-118.77858141123664,52.181118312814036],[-118.78425374480467,52.179248989062415],[-118.7902105104945,52.17823063006979],[-118.79504747549421,52.17818610363808],[-118.80025291985923,52.178139041023925],[-118.80221732914413,52.17810231869261],[-118.80547286563605,52.17614807124124],[-118.81142894659308,52.173534540551884],[-118.81357684244298,52.17274726394159],[-118.81879899854401,52.17046908636536],[-118.82604439518687,52.16814769520719],[-118.8314459693597,52.16655466332102],[-118.83406357090213,52.163995429319996],[-118.83446729896495,52.15783254094839],[-118.83429474430731,52.1553228184225],[-118.83404443009358,52.15035319502567],[-118.83469950687339,52.1477326737099],[-118.83620189287298,52.144881452256804],[-118.83936502754645,52.14266038252933],[-118.8434687569593,52.140442492565604],[-118.8467277260768,52.13799337049762],[-118.84916130120095,52.13457388670226],[-118.84980418917675,52.13388807918592],[-118.85030007343387,52.129554254790705],[-118.85031734361682,52.12464580106089],[-118.85069283466612,52.12219605499265],[-118.85377973427423,52.119175456782784],[-118.85778138390658,52.11666687868258],[-118.85992632314863,52.11364740147487],[-118.86021632092616,52.11171185480204],[-118.86124894603124,52.10857148121834],[-118.86367157659777,52.10537930338488],[-118.86610081056796,52.10241232686371],[-118.8642528416118,52.10007140604906],[-118.86240360566775,52.09836314676103],[-118.86176813063518,52.09624617373325],[-118.85972344776926,52.093675422956444],[-118.8581656495721,52.09207362715842],[-118.85491727793591,52.09029969757101],[-118.85316065924233,52.089102994202],[-118.85521297607049,52.08619336113173],[-118.86144386654865,52.08386668933543],[-118.86552235058983,52.08176057758201],[-118.86961972565338,52.07953719295173],[-118.87008203044506,52.07913818493668],[-118.87195873228184,52.07451911343601],[-118.87030164677316,52.070577904663494],[-118.8678937567079,52.068522797423384],[-118.8604916482151,52.0659427568276],[-118.85428538512328,52.06421868022847],[-118.85021955438883,52.06216200212303],[-118.84727350889007,52.05759400612623],[-118.84850399142354,52.05102911751295],[-118.85102082245422,52.047786147617494],[-118.85723936251352,52.045680639808204],[-118.86511508173942,52.04438160444701],[-118.87068030992106,52.04347397812779],[-118.87197985997756,52.04324697194372],[-118.8757799895364,52.04245044184961],[-118.8812514941816,52.04228877747319],[-118.88579917733874,52.04149600029252],[-118.8911777788996,52.040020280373554],[-118.8961823570933,52.03813803078056],[-118.9008191383437,52.036885920634205],[-118.90462305943535,52.03552075836534],[-118.90795598045275,52.03523924056538],[-118.91583146249955,52.03741911613209],[-118.9205529942001,52.03941698981961],[-118.92778812763888,52.03725453569004],[-118.93399343733769,52.03366364430592],[-118.93881700629025,52.030532913265574],[-118.94346503826276,52.0273946159645],[-118.94523680529466,52.020201822039525],[-118.94616948426433,52.015640006458035],[-118.94608702969806,52.01010525682023],[-118.94691846739443,52.00787776550727],[-118.94887378094576,52.00514010389552],[-118.95341134547748,52.0042851686742],[-118.9568450005998,52.00309411546178],[-118.95869390537875,52.001548804864555],[-118.96015400803256,51.9999593329084],[-118.96077031580604,51.99932326592808],[-118.961037872339,51.997493280111165],[-118.96139319089245,51.99674879450412],[-118.96286245880484,51.994287648768164],[-118.96524974375197,51.99176840286037],[-118.96706510122164,51.98861624741486],[-118.96806995694656,51.98729910964562],[-118.96944079571362,51.98426504399274],[-118.97116041612254,51.97979978207779],[-118.97132451006962,51.978424323606134],[-118.96908338283005,51.97597681479273],[-118.96500676097698,51.97427929947911],[-118.959722417227,51.97406823937576],[-118.95481305147904,51.97317170669273],[-118.94888707736486,51.97222089815833],[-118.94562952284275,51.9699971122422],[-118.94060817525931,51.96853181397997],[-118.93551593246048,51.96786429939994],[-118.93181028577364,51.96695917115216],[-118.92700550404336,51.967316494431685],[-118.92145083038537,51.96751011952751],[-118.91812361437522,51.96751989964679],[-118.91458882621465,51.966557117791254],[-118.91236749350195,51.965536247056264],[-118.90865289937473,51.96343345658132],[-118.90502329295475,51.96206777927147],[-118.90113434693986,51.96076648867389],[-118.89752398352202,51.95946483939611],[-118.89417929397764,51.9583311228874],[-118.8915805351196,51.95702604263651],[-118.89018553222448,51.95525797212715],[-118.88978915710672,51.95240056164158],[-118.89116615205045,51.95034065001666],[-118.89539569524945,51.946955835895935],[-118.89695209649108,51.94540797021587],[-118.89693859253012,51.94432630021474],[-118.89729267319841,51.94198145949258],[-118.89884287830802,51.93831998509158],[-118.90104666788325,51.93585365924789],[-118.90166914401578,51.93293937411028],[-118.90404660461434,51.92967566778665],[-118.90837003340992,51.926862660597315],[-118.91502214415637,51.926729977779615],[-118.92261129852312,51.927044197229364],[-118.92779556695793,51.927026311677814],[-118.93888735813202,51.92722263630771],[-118.93935233700559,51.92733357018134],[-118.94407036783093,51.92829373089497],[-118.94825020839481,51.93004606722416],[-118.95287838662293,51.93174353202419],[-118.95779109358553,51.93259052929604],[-118.96491824118694,51.93404606062951],[-118.9704764183663,51.93488703148317],[-118.9764009534997,51.935092624036926],[-118.98166146065007,51.93478730777021],[-118.98497108966986,51.932602079456494],[-118.9875130702887,51.9277339335306],[-118.9872753244496,51.92167854099822],[-118.98309044060153,51.917869015989645],[-118.97760732316864,51.914854740016004],[-118.97528093269828,51.91394910789002],[-118.97322034421362,51.9112182932127],[-118.97355514150455,51.90715475445102],[-118.97353012284495,51.90332606692431],[-118.97118560308338,51.90036472729037],[-118.97081845555218,51.899740381946216],[-118.96753670584364,51.89552227127603],[-118.96545243400229,51.88987140979467],[-118.96533382998508,51.885812025224354],[-118.96630131359439,51.881184337461185],[-118.96643133095759,51.87495327319684],[-118.967617851255,51.872948028618936],[-118.97137285017925,51.87087691588131],[-118.97618363257378,51.870231369284134],[-118.98125035087644,51.86981038424817],[-118.984664872206,51.86957355901051],[-118.99001186422979,51.86840924888734],[-118.99044670235503,51.86589063870393],[-118.98720888021383,51.86476071702848],[-118.9827596355249,51.863350143823645],[-118.97905613789719,51.862391438431466],[-118.97451457384223,51.8609218658556],[-118.96951744582599,51.85865547428417],[-118.96571268458554,51.85724207153464],[-118.95607188068108,51.85270511562407],[-118.95413654235394,51.8520240461973],[-118.95246316741522,51.850717788783534],[-118.9517915727711,51.84854852098769],[-118.951045693548,51.84728982788385],[-118.95085724680139,51.847009969970834],[-118.94936495001286,51.845579571119075],[-118.94889227556672,51.843356034184836],[-118.94979397628299,51.84112484475134],[-118.94940420749228,51.83884047526671],[-118.94912259155022,51.83832438210672],[-118.94863115707382,51.83558572353041],[-118.94889635214345,51.83403771303246],[-118.9513716381879,51.83191823339116],[-118.95532593006996,51.830133339803005],[-118.95881036188851,51.82863325825027],[-118.96268487719966,51.82788068506256],[-118.96554098806527,51.82701344782893],[-118.96598213752512,51.82500459128283],[-118.96366111049319,51.82364446827382],[-118.96115798104348,51.822508625435056],[-118.96041750150503,51.821940607792854],[-118.9599366332639,51.82039845809282],[-118.96093240323609,51.81857254495384],[-118.96138251281012,51.81650899969782],[-118.96192999758765,51.81565009233708],[-118.96097652692495,51.812515011874304],[-118.95845852038029,51.81012031901656],[-118.9540162449289,51.80762206968672],[-118.95234797650232,51.80665579097078],[-118.94900366944552,51.80432141730053],[-118.94621351049177,51.80199184322126],[-118.94545526799718,51.79919204686259],[-118.94406023569,51.7966307142147],[-118.94282528625939,51.79389270005282],[-118.94152547950503,51.792637891790925],[-118.93912596607697,51.7925881533322],[-118.93536070536184,51.79340290292462],[-118.93251055653064,51.79415246276011],[-118.92891481665234,51.79490987961193],[-118.92532023265139,51.79520964986478],[-118.9201531800669,51.79413925167377],[-118.91590400542273,51.792270608724934],[-118.91357632313058,51.790162627242765],[-118.90831284146373,51.78852375442879],[-118.90479974893906,51.787786400278584],[-118.8998217514188,51.787175366643346],[-118.89603951053368,51.78701670835567],[-118.8925337614328,51.786683513281766],[-118.88764277009682,51.785271956422044],[-118.88384313026096,51.7819127323089],[-118.88334596063339,51.77825430939593],[-118.88581030403691,51.775219584728944],[-118.89012384833715,51.773096989004046],[-118.89443636779713,51.76936621092722],[-118.89560678308769,51.76576152715433],[-118.89540269256555,51.7638804371354],[-118.89342782291916,51.75971067867566],[-118.8918302068363,51.754748800569914],[-118.89022317865319,51.749667897863695],[-118.89028781509924,51.74640740572604],[-118.89009349364058,51.744468253540106],[-118.88721096604814,51.74042086369071],[-118.88654523955628,51.73842408641405],[-118.88653484572974,51.73625175865934],[-118.88642548324938,51.73459742409851],[-118.88870535435848,51.73115775275593],[-118.89502308122617,51.72851086570749],[-118.89989611330164,51.726320983020656],[-118.90768323283424,51.72349839885273],[-118.91456441738293,51.72050630125719],[-118.91822860637079,51.7180331672418],[-118.91727551992074,51.713579950572665],[-118.91549898080159,51.7112420777666],[-118.91476163706338,51.71022060213631],[-118.91482022913874,51.706446816581334],[-118.91700268860392,51.70403378827819],[-118.92003027847461,51.70242456085098],[-118.92285675219912,51.69944838485922],[-118.92291409097933,51.695677905203034],[-118.9232640751142,51.69441570548926],[-118.92315180931843,51.6907034352164],[-118.92265813316806,51.68727914222788],[-118.92078234820326,51.68385120311646],[-118.91744802495442,51.68089331933335],[-118.91579370135774,51.67987505754561],[-118.91061263459314,51.67646268958795],[-118.90811111913854,51.67429918259507],[-118.90607333267378,51.67241814177681],[-118.90566955101141,51.66916662359796],[-118.90470481100567,51.66345413985066],[-118.90396136733024,51.661400604188934],[-118.89950765358141,51.657469163086326],[-118.8971076788559,51.65513800000692],[-118.89570362711999,51.65285597857618],[-118.89422263786064,51.65069031566568],[-118.89088933941446,51.647841280902604],[-118.88858150356913,51.64664917152554],[-118.88397204650639,51.64512311250435],[-118.88066696702523,51.644788386448475],[-118.87533666158485,51.64492312752615],[-118.87185457359651,51.64567513401665],[-118.8675421817599,51.64643417546797],[-118.86560717451422,51.646437992556656],[-118.85963252619523,51.64588447540406],[-118.85438332726675,51.64498612516489],[-118.8506178888577,51.6439090561105],[-118.84905342817478,51.64351478193034],[-118.84609258965804,51.64152078154863],[-118.84395845939376,51.63838587041403],[-118.84119148831653,51.63645462904277],[-118.83355937822313,51.63493167619026],[-118.83006786900683,51.63494162916018],[-118.82777413725267,51.63500727835871],[-118.82114719052268,51.63445163369207],[-118.81865490011074,51.632005491027435],[-118.81717415614884,51.63075066110406],[-118.81504148365113,51.62647069195851],[-118.81510985258103,51.6230428901966],[-118.81609972639826,51.61966879810962],[-118.81597490881792,51.61458316246726],[-118.81521683019714,51.61167418512308],[-118.81243482396523,51.607284182274135],[-118.81277210347162,51.6032813606489],[-118.81478337387199,51.60076504911531],[-118.81531449015463,51.599387519868195],[-118.81437431073458,51.59590770325423],[-118.81390330792708,51.592933913965965],[-118.81525728429087,51.59070187783355],[-118.82039141342085,51.588802932795765],[-118.8243243316621,51.58714024162261],[-118.8253039781973,51.58399654693149],[-118.82529010182412,51.58142038537033],[-118.82526201635329,51.57662489251333],[-118.82523619070648,51.57199300474214],[-118.82529320727998,51.56845160057634],[-118.82529010415593,51.56793836983484],[-118.82564381764571,51.5654226030953],[-118.82534413834267,51.561310647179084],[-118.82484218047874,51.55577417816649],[-118.82599914499517,51.55056635602948],[-118.82780062837654,51.54656232750816],[-118.82987930710443,51.54210333732447],[-118.83095439353237,51.53889960782583],[-118.83093549869304,51.53644087300077],[-118.83072403895171,51.532497338696494],[-118.82777157641605,51.52908246295808],[-118.8215322983778,51.52847135107676],[-118.81621438817277,51.52825821159838],[-118.81172042331968,51.52655782625758],[-118.80483369431086,51.525032515907164],[-118.79851281494234,51.524480869804094],[-118.7927300965965,51.52489224937452],[-118.7906467611101,51.527242383357425],[-118.78746127102995,51.53073578573789],[-118.78583281340073,51.53410992589866],[-118.7812647422092,51.53691761080028],[-118.77933362538326,51.536925545587586],[-118.77649011727665,51.536129981588296],[-118.77243558179055,51.5320298039098],[-118.76975873891237,51.52740885238252],[-118.76845458573641,51.52467170593722],[-118.76549699947067,51.52175860282082],[-118.75808424383965,51.52246513664009],[-118.75031383367224,51.525509787252616],[-118.74565192521476,51.52826110598385],[-118.74117109650899,51.52947604852689],[-118.73759881171411,51.528794622638394],[-118.73126386362833,51.526925067717535],[-118.72713241988683,51.52550543312611],[-118.72400171535732,51.523738763635194],[-118.71912035942843,51.51792480460251],[-118.71360690996136,51.513304846580766],[-118.70809253086988,51.51131562475629],[-118.70277798724922,51.509784456383144],[-118.69755215442905,51.508593681803895],[-118.69351540767335,51.50723060033934],[-118.69066626344635,51.50500726494476],[-118.69065590826483,51.503066713050266],[-118.69668521789501,51.49985976265492],[-118.70454209863472,51.496467922587875],[-118.71048374061849,51.49360206851101],[-118.71267524608841,51.49131648974362],[-118.7116423202477,51.487147055051416],[-118.71034832461059,51.48446418382015],[-118.70732158233703,51.48087070604706],[-118.70272515559752,51.47739480820339],[-118.69584708935011,51.47518254972815],[-118.69071277498684,51.47398971749121],[-118.68631137089847,51.47222587397322],[-118.68245408872372,51.46989412253988],[-118.67787393245304,51.46607741517237],[-118.67493353556038,51.46442157006836],[-118.67154857168126,51.46317393861287],[-118.66577322818823,51.461753370666194],[-118.65862865024694,51.461766450066406],[-118.65672129937002,51.46199640744175],[-118.6493904955362,51.463035111242846],[-118.64463147281252,51.462816368711074],[-118.63723241907955,51.46322161009814],[-118.63293488126659,51.464829808404765],[-118.63201826816925,51.4654571215974],[-118.63127876500077,51.46546033889153],[-118.62899255687655,51.46414636314918],[-118.6272421525967,51.45981316893955],[-118.62759036391381,51.45609766076709],[-118.62767691726596,51.45204193639584],[-118.62812781742005,51.44987224927792],[-118.6301381180435,51.44729930682106],[-118.62518117657733,51.44490378396954],[-118.6190525261953,51.44422798643311],[-118.61429046905245,51.44343571611641],[-118.6108233367213,51.442867080560035],[-118.61008758665999,51.441041254112626],[-118.60952274096879,51.43578772197675],[-118.60886358492748,51.432473879953115],[-118.6073007581354,51.428765957599516],[-118.60601427390596,51.42487974851659],[-118.60828378637811,51.42093822988516],[-118.61074697637027,51.41825357926383],[-118.61384709952479,51.41556649102049],[-118.61439004459446,51.41276428226534],[-118.61118354393638,51.40962470193804],[-118.6109993174705,51.408998423724604],[-118.60705593511743,51.40688841966004],[-118.59975019665113,51.405241912641635],[-118.59489597830022,51.4031321723481],[-118.59471159911493,51.40199254490969],[-118.59369745556697,51.39942170916004],[-118.59150158783949,51.39742548460244],[-118.5875648916604,51.39605965608644],[-118.5851920619358,51.39554532672749],[-118.58116398098548,51.394466014854935],[-118.57925287841564,51.39190096869529],[-118.58298078963486,51.38806508907417],[-118.58618076175286,51.38555616389397],[-118.58717793427039,51.382298037767086],[-118.58717196640768,51.380358355850944],[-118.58788950040764,51.376870352461744],[-118.59263690653238,51.373666296414406],[-118.6006576818361,51.37171491264302],[-118.60805474789447,51.368392709472495],[-118.61269281060437,51.364618981052566],[-118.61286237526504,51.359988943425186],[-118.61194398591552,51.35719147277856],[-118.61101358062116,51.35239862780614],[-118.60927446459966,51.34760359613401],[-118.6083508992575,51.34389244240116],[-118.6097020040368,51.34023143043242],[-118.6120691778401,51.33714400264035],[-118.61234028876873,51.333717464835516],[-118.60721090363705,51.32933044028501],[-118.6005328986964,51.32470959400041],[-118.59879671726355,51.32180235123429],[-118.59841876159456,51.31751634495908],[-118.59822277290476,51.313007021702546],[-118.59648826435505,51.31095326951854],[-118.59337732718926,51.30970212784276],[-118.58999227949253,51.30690413369108],[-118.58871580678168,51.305135280752445],[-118.58633720671622,51.30262324100778],[-118.58305368024843,51.300514777489205],[-118.57703227766224,51.29983666601544],[-118.56891241836284,51.300132486737205],[-118.56381117015492,51.30059064766439],[-118.5611632777162,51.30054018498705],[-118.55678879048853,51.299685234754016],[-118.55468058231777,51.2983196489736],[-118.55313180862004,51.29723240519182],[-118.55112527838288,51.29364221631334],[-118.55074741400587,51.28998238833721],[-118.54855420923026,51.28707311234134],[-118.54673616479856,51.28587428824998],[-118.54554517858092,51.2818193186069],[-118.54926561666751,51.27576911610538],[-118.55281792265468,51.27250429877669],[-118.55472323150396,51.26959210512374],[-118.55535333964177,51.26867914936252],[-118.55935596146331,51.264790606779876],[-118.56336218154982,51.261304435819504],[-118.56936348336424,51.25872881718191],[-118.57382572580542,51.2558670342186],[-118.57508474978096,51.253011852707004],[-118.57417171914861,51.25003779760599],[-118.57289226655604,51.24821414664083],[-118.57288699401775,51.2454166660735],[-118.57361264096653,51.24238810359566],[-118.57361221798777,51.24136184976526],[-118.57041074119292,51.23776741977114],[-118.56602313478122,51.23342939973906],[-118.56154931363923,51.22892351272344],[-118.55663400227071,51.22499018309906],[-118.54815532417268,51.21997336106594],[-118.54486642731763,51.21717383543185],[-118.54322897588247,51.215520032966005],[-118.54240022842595,51.21129504944543],[-118.54575945144327,51.2080369316673],[-118.5513023213802,51.20643590553109],[-118.55686486510415,51.20591299261506],[-118.56232039808977,51.204826451574476],[-118.56304636126136,51.20453590160294],[-118.56385349336135,51.20316349445997],[-118.56430992455391,51.20036475260926],[-118.56375278136224,51.196998021213325],[-118.55964790588949,51.193403514045244],[-118.55555245459665,51.19095421785287],[-118.55418511256974,51.189581277409445],[-118.55135747767716,51.18696120651225],[-118.54698069062253,51.184222057474024],[-118.54079418123985,51.18086166108581],[-118.53760358306778,51.17954697021572],[-118.53351927105227,51.178751194976236],[-118.52923271020758,51.17881245147555],[-118.52113951993643,51.178820822531996],[-118.51395418295905,51.178824153566886],[-118.50413625923986,51.179407722378144],[-118.49867946254035,51.17906595238034],[-118.49521577338797,51.17826441995501],[-118.49258040186207,51.17826686022047],[-118.48712298214338,51.1779295483671],[-118.48239214475628,51.17712986107699],[-118.47621146302336,51.175881986960384],[-118.47183949089967,51.17365277265952],[-118.47093646746706,51.17176851632837],[-118.47111092879364,51.168798449256784],[-118.47175481087206,51.16628415699849],[-118.47120733531563,51.164003283096214],[-118.46911380142703,51.16006644188886],[-118.46829328031666,51.15795344545478],[-118.47047337248732,51.155038124657935],[-118.47727996236446,51.1530949753113],[-118.48228924507438,51.15240984654663],[-118.48610178872373,51.150466263665216],[-118.48818155780715,51.14618288883525],[-118.48882431920417,51.14103937540884],[-118.48881523529309,51.140753801222395],[-118.48508719631253,51.136189316081506],[-118.4800807386613,51.133905241130186],[-118.47536557175526,51.13202584622552],[-118.4720912529941,51.12945723415988],[-118.47262250054335,51.12557136121163],[-118.47653015581899,51.12288794347586],[-118.47681098264275,51.11911902030475],[-118.47552991475835,51.11717996166099],[-118.47534396536773,51.11683568000382],[-118.47625613808553,51.113413207080065],[-118.47843371498088,51.11049646764836],[-118.47825424066514,51.10689701335749],[-118.47579409844798,51.102676320364615],[-118.47569462112666,51.10233105295577],[-118.47414970770718,51.10084826745187],[-118.47206731899675,51.09770749884989],[-118.47088357522674,51.09536961545055],[-118.46470808071564,51.09331411465475],[-118.4608934402732,51.091660631452505],[-118.45953142750308,51.08834779583238],[-118.4602492026525,51.08446695886746],[-118.46025538413978,51.07995418970091],[-118.45797915755372,51.07847045275887],[-118.45335603540082,51.07710198876138],[-118.44781565983342,51.07664963406592],[-118.44290876374329,51.076021257558125],[-118.43974292627274,51.074198363990554],[-118.43765042493163,51.07282190726718],[-118.43510679700019,51.07282707157003],[-118.43183845968967,51.073627061084565],[-118.42985078499662,51.07374129352881],[-118.42903209028401,51.07374023126323],[-118.4275795982538,51.07122603806383],[-118.42476450672703,51.0678601124181],[-118.4216773931905,51.06592001072089],[-118.41931752654213,51.06426431700228],[-118.41732307192721,51.06232057138643],[-118.41678882512058,51.05998561321655],[-118.41778253566832,51.058037850271944],[-118.42105335653584,51.057638644673425],[-118.42567501185738,51.0583267677677],[-118.42821733667913,51.05832460180767],[-118.43065548204851,51.05792309349899],[-118.43147308242055,51.05649841469207],[-118.43229112355411,51.05187303342643],[-118.43383254062435,51.0487294765436],[-118.43147232985811,51.04564826011967],[-118.42820821766375,51.042565735708955],[-118.42693490417582,51.03959670283727],[-118.42703540125689,51.036400995606186],[-118.42666580864183,51.03394112616002],[-118.42485809681655,51.03183446654389],[-118.42294616326164,51.03000292769615],[-118.41904824237065,51.02669198873482],[-118.41823644456517,51.024639544069686],[-118.41887517537249,51.02241261136641],[-118.42078188627967,51.020070510585434],[-118.4222297463798,51.017557373608405],[-118.42277393236175,51.01630275465511],[-118.42240951254674,51.01373082124854],[-118.4209584935721,51.01122139414765],[-118.41833271168667,51.00836769913394],[-118.41343713027992,51.00511579774953],[-118.41099040104795,51.00340119765426],[-118.40907939772221,51.00157439193495],[-118.4089633152444,50.9999042005841],[-118.40902779800965,50.999526999399535],[-118.40883873400696,50.99878716542599],[-118.407029302557,50.99771000859873],[-118.40358455708908,50.996970641177825],[-118.40113599769911,50.99703143573189],[-118.39859473052736,50.997717517296564],[-118.3973355247408,50.99828682068694],[-118.39643657460529,50.999934994688886],[-118.39589356135241,51.00050944839307],[-118.39472369069372,51.00147766264925],[-118.39317265710886,51.002158627185324],[-118.3912782393656,51.002331940871066],[-118.38955177883366,51.00227842093148],[-118.38782628776048,51.00113156175236],[-118.38720225095066,51.00033726685881],[-118.38692721689021,50.999933599822185],[-118.38402734532532,50.99819202441043],[-118.3823052769842,50.996023578340306],[-118.37876748612402,50.99340525140303],[-118.3770341622007,50.99038579738267],[-118.37576459508558,50.98758979976025],[-118.37394933097438,50.98479949885215],[-118.37132108927354,50.9822359947402],[-118.36896185318732,50.980695553902414],[-118.36833155595224,50.98035848319838],[-118.36506615676602,50.97950356419257],[-118.36334768921701,50.9788246488727],[-118.35999724739536,50.97779836751852],[-118.35890087962895,50.97717086632072],[-118.3564562448835,50.97546395404024],[-118.35347034789945,50.972155144753195],[-118.3509339811546,50.96981800753146],[-118.3503941745031,50.968790364429495],[-118.34939439684771,50.966854563689914],[-118.34920564218736,50.96212332492496],[-118.34884038658409,50.9594998139993],[-118.34782819743329,50.956305887580235],[-118.3460295034621,50.95385243027728],[-118.34439815171936,50.95317400249151],[-118.34121890375054,50.951749387336065],[-118.33878255657751,50.95083734987497],[-118.33634273971217,50.94953039849138],[-118.33172667797761,50.94804879480973],[-118.32910433472527,50.94713731375083],[-118.32854679279161,50.94588470471372],[-118.32719107562787,50.94286502345701],[-118.32583592708832,50.93984308375562],[-118.32393270224631,50.93676089978297],[-118.32130368590904,50.93448244668184],[-118.32040706754967,50.933287774142514],[-118.3199494851176,50.930546384255045],[-118.32084658238354,50.92792231237717],[-118.32084577631302,50.92518970106483],[-118.31967277792235,50.92136707600775],[-118.31821251328512,50.91771662422846],[-118.3178519272061,50.91640515310757],[-118.31558680999244,50.91418360048863],[-118.31359589236033,50.911784931507036],[-118.3120607840536,50.908820791812175],[-118.31233123486805,50.90642687009023],[-118.31467629975451,50.90345806199164],[-118.31512343132097,50.9011175044658],[-118.31413652489181,50.899124329367815],[-118.311421328951,50.89553745218843],[-118.30924539409055,50.893138838284145],[-118.30626322482337,50.88977616075115],[-118.30355437458711,50.887897374401255],[-118.30209849720381,50.88771065854389],[-118.30047516510712,50.88749938824301],[-118.2971413229191,50.88749817668488],[-118.29668312919661,50.88749989225209],[-118.29063762307699,50.88778796982641],[-118.28403489586533,50.88939123340037],[-118.27925351860152,50.89195909214067],[-118.27680752869118,50.89401410401916],[-118.2752755319454,50.895667011208474],[-118.26895397002826,50.894816928961745],[-118.26189317007065,50.89328058827083],[-118.25557966954908,50.89139976420575],[-118.25322746494584,50.890771364947646],[-118.25160355746236,50.889576828783625],[-118.25332102690213,50.88678005620513],[-118.25910356485731,50.88660788602126],[-118.26543126572913,50.88552116567786],[-118.26985399707216,50.8823830234185],[-118.27238091348175,50.880272216079824],[-118.274547531442,50.87941198144368],[-118.27988586819255,50.87758640960698],[-118.28394392503274,50.87604650408137],[-118.28900416893455,50.87284789042597],[-118.29161789211051,50.86948301615357],[-118.29242650942585,50.86497598226044],[-118.29143501553222,50.8608708816564],[-118.28980382924232,50.857158019000025],[-118.28709481986769,50.85248692192191],[-118.2854703481116,50.8499776694187],[-118.28510690913284,50.84935174635465],[-118.28167610755769,50.84769774973909],[-118.27579944248077,50.84695906379913],[-118.27345374008036,50.846222948213985],[-118.26994213492175,50.843142790440965],[-118.26822014146482,50.83823668958119],[-118.27011183419981,50.833675853696995],[-118.27255232412662,50.830481154598274],[-118.27327766241369,50.829512151549444],[-118.27408422650291,50.82551812522704],[-118.27055962077037,50.82392316219116],[-118.26668641280689,50.82392738571552],[-118.26451948055497,50.82398038434548],[-118.26064811009263,50.822903688541814],[-118.25973611470141,50.8190207655612],[-118.2628089181168,50.814569615065004],[-118.26596753624354,50.81143219882367],[-118.26613975623381,50.81126288210923],[-118.26464673436396,50.80794896161951],[-118.26000859369165,50.80475491080064],[-118.25975535139132,50.79999996882443],[-118.25966631401232,50.79832166473041],[-118.25465028601057,50.79747622500087],[-118.26098815923572,50.79403636715028],[-118.25761742076048,50.792754109692005],[-118.25709335858691,50.78321566980083],[-118.25270744378177,50.7814746476584],[-118.24767000625843,50.775760910251904],[-118.24703223415065,50.77465593937416],[-118.24549650215668,50.77100696612163],[-118.24342043362002,50.768497801219404],[-118.23900272280034,50.76616030913862],[-118.23431783251324,50.764622871692865],[-118.23108536681745,50.76285956223272],[-118.2293702504637,50.76131668191023],[-118.22910450923672,50.75989187049642],[-118.22946431739983,50.756922589017],[-118.23126705724728,50.75418841313003],[-118.23216168466378,50.75281858722905],[-118.23090961989217,50.74837005939072],[-118.22748222135199,50.74552096041582],[-118.22325127487865,50.74278331836022],[-118.21630936662079,50.74021680604928],[-118.21064386412404,50.73867783103703],[-118.20929044039909,50.73834135889047],[-118.20515781130551,50.736684590962575],[-118.20290630835626,50.73389429656282],[-118.20444074735607,50.72984144360751],[-118.2058809260394,50.72681782506633],[-118.20587443228438,50.72522009087455],[-118.20480924690308,50.71906526013593],[-118.20381456900235,50.71267128552613],[-118.20219965354994,50.706402630039435],[-118.2020250029142,50.705034240910024],[-118.20166527095351,50.698190400618024],[-118.2031156784683,50.69493984869652],[-118.20679898490489,50.68974975534502],[-118.20923347483696,50.68558984892912],[-118.20959244388057,50.68222035964616],[-118.20707775158422,50.67874709705371],[-118.20628022372156,50.67817377466511],[-118.20096341830832,50.67623332299749],[-118.19548300532543,50.67457989255915],[-118.1893624274723,50.67333192048067],[-118.18315977372865,50.67247377837427],[-118.17642439475532,50.67173084850008],[-118.17299898710337,50.67030562174247],[-118.17318913976605,50.664659521098834],[-118.18281948119693,50.66186816069758],[-118.18829895677737,50.65992692914536],[-118.18956744863263,50.659756859294106],[-118.1947864592968,50.65889738216472],[-118.19999141034795,50.658443954758575],[-118.20430600287118,50.65598978910204],[-118.20313857687081,50.652230041377706],[-118.20134051475421,50.64988501455488],[-118.19981491344485,50.648346501105415],[-118.19981811032031,50.64424352786961],[-118.19946277660264,50.639339211440884],[-118.19793150607117,50.63677385095076],[-118.19497836954802,50.634610664690655],[-118.1882078755534,50.634712887402486],[-118.18819377957124,50.63483447115332],[-118.18823064475046,50.634959649933236],[-118.18823897016924,50.635013895364],[-118.1882216013627,50.635031879275274],[-118.18819788388907,50.63504546676702],[-118.18813727855311,50.63508695331635],[-118.18807852702807,50.635128009921715],[-118.18805227325304,50.63514593799617],[-118.18797020471153,50.63521867749364],[-118.18780478910269,50.63535108756376],[-118.18765223088093,50.63541999623301],[-118.18754093817701,50.63542572158015],[-118.18739245288462,50.63544069655468],[-118.18716539298325,50.63548798444154],[-118.18694851052288,50.635589087463146],[-118.18680572921657,50.63569370612473],[-118.18669329479025,50.63576713667828],[-118.18656289224141,50.63583139411878],[-118.18639451712976,50.63590936506315],[-118.18616050906354,50.635925088807184],[-118.18581567079231,50.635892908613734],[-118.18546879133315,50.63588261875893],[-118.18512259458261,50.63586841713984],[-118.18469046134568,50.635796195024575],[-118.18409917329258,50.6356675751101],[-118.18342195415721,50.635480931618815],[-118.18304018313044,50.63535462986369],[-118.18297163565235,50.635319299112076],[-118.18296079639107,50.63531005800515],[-118.18287781186795,50.63530647422299],[-118.18246934878702,50.63533307068845],[-118.18185001540499,50.63537531956549],[-118.18151691484074,50.63538801366567],[-118.18136919363188,50.63535784326464],[-118.18118280950719,50.63531477252424],[-118.18106633093981,50.63528906168811],[-118.18104221631125,50.635284534274255],[-118.18109060540796,50.635180613003236],[-118.1812159763979,50.63494146013772],[-118.1813275009332,50.634751033378954],[-118.1813917011616,50.63463805752999],[-118.1814443692346,50.634489246159625],[-118.18147455455131,50.63425524731886],[-118.1814675332868,50.6339898229916],[-118.1814582024771,50.6338191287671],[-118.1814688018155,50.633697298189205],[-118.18148239505648,50.63347681777481],[-118.18147408749698,50.63315763328222],[-118.18145201183843,50.6328256116718],[-118.1814885284164,50.63255534484273],[-118.18158179777097,50.63238792694137],[-118.1816617191837,50.632296954696564],[-118.18161655756359,50.6321175272359],[-118.18142727517461,50.631836436038036],[-118.18128059105841,50.63165776603179],[-118.181020967117,50.631494305648786],[-118.18061577974956,50.631278219147184],[-118.18043437258021,50.63117618684914],[-118.1804376888493,50.631167382142806],[-118.18044100511707,50.63115857743633],[-118.18045056732198,50.631144563770405],[-118.18047466847406,50.63110840907563],[-118.18051465514958,50.630991468168325],[-118.1805056976137,50.63075754003486],[-118.18043437668,50.63056497063936],[-118.18038662321321,50.630502288091385],[-118.18038281265237,50.630493550741626],[-118.1803745117724,50.63047996886535],[-118.18034472123969,50.63042646927182],[-118.18032877561029,50.63031405702117],[-118.18037870741696,50.63016053356568],[-118.18042580594714,50.63000286073928],[-118.18036270013114,50.62985493161935],[-118.18024112991563,50.62972603991879],[-118.18018996318006,50.62967272443551],[-118.18017707251063,50.62965486941652],[-118.18014875454365,50.62962349983647],[-118.18015322138461,50.62954698863669],[-118.18021417570293,50.629371085434414],[-118.18029259749517,50.62917663686705],[-118.18036818730256,50.62897802994377],[-118.1804756570602,50.628657961027244],[-118.1805578243982,50.628279059444985],[-118.18060123557642,50.62788781966794],[-118.18068321684979,50.62754052991065],[-118.18075089643943,50.62734645398582],[-118.18076678023246,50.627265667383064],[-118.18076910556026,50.62721160105949],[-118.18076068093244,50.62711723460766],[-118.1807625970142,50.62700439011348],[-118.18072146569585,50.62688342438276],[-118.1805903268427,50.626727881750746],[-118.18044631011465,50.62658498011743],[-118.18029664149716,50.62647445314949],[-118.18011398231036,50.62635933293364],[-118.18000795734574,50.62628407505593],[-118.17998442764882,50.626266039700276],[-118.17997534815876,50.626256921992905],[-118.17996978106284,50.62624806079413],[-118.17995786892445,50.626234793734376],[-118.17993785477924,50.626216997020464],[-118.17984735312379,50.626154700052744],[-118.17969154031482,50.626048818674654],[-118.17958180499053,50.62596426044482],[-118.1795123864446,50.62589327141846],[-118.17946327640468,50.625848577915654],[-118.17945234192324,50.62583989886007],[-118.1794340851105,50.62582222584598],[-118.17941153328225,50.62580877842438],[-118.17936418194812,50.625764199744076],[-118.17928744021168,50.62568422552507],[-118.1792444792694,50.625634876554834],[-118.17924066934292,50.625626139114985],[-118.17927907187325,50.625436779201465],[-118.17928705260094,50.62501422698148],[-118.17918263296124,50.62473628630789],[-118.17905328422752,50.624652035226],[-118.17891222076639,50.62456357806117],[-118.17878736414518,50.624484162344665],[-118.1787448773829,50.62438118533338],[-118.17873458160817,50.62420590083387],[-118.1787282917381,50.62404841505083],[-118.17870180120352,50.623904762511174],[-118.17865549597803,50.62375236529822],[-118.17857902446886,50.623569027588864],[-118.1784635904212,50.62331346544498],[-118.17839003971712,50.623103226980895],[-118.17823821581743,50.62289311185344],[-118.17795442676629,50.622644329527176],[-118.17778681829853,50.62252461520723],[-118.1777511834738,50.62248425957593],[-118.17770753815489,50.6224083062808],[-118.17764885211147,50.62229627784951],[-118.17746358193314,50.62218605565587],[-118.17715426261329,50.62206313019128],[-118.1769995536846,50.622001952843426],[-118.17697241714762,50.621984222652735],[-118.17695894755083,50.62197988374326],[-118.17693991354717,50.62196667450802],[-118.17689833041796,50.621940017276614],[-118.17682785411473,50.621895505960886],[-118.17676821269366,50.621860236457536],[-118.17668182182915,50.62178465869949],[-118.17653617555438,50.621651242201466],[-118.17639708045081,50.62157195776165],[-118.17626980564634,50.62153699959062],[-118.17608036442452,50.621511776672286],[-118.1758540359609,50.6215144667399],[-118.17565395614353,50.62148906245649],[-118.17545728518314,50.62142378530238],[-118.17524021717918,50.62136328809743],[-118.175060731388,50.62134216375828],[-118.17494028842594,50.62129864714536],[-118.17483408715339,50.62121433149938],[-118.17476390349384,50.621147803369276],[-118.1747181200009,50.62109430287674],[-118.17466999833557,50.62105418620824],[-118.17456721893744,50.62100118589895],[-118.1744030462792,50.620912781875546],[-118.1742682308393,50.62070724776929],[-118.17416725486382,50.62034875457895],[-118.17398020496246,50.62000452770919],[-118.17373031670489,50.61971461907381],[-118.17360164822587,50.61946376380663],[-118.17359040192675,50.61932457248196],[-118.17358854199219,50.61928432824968],[-118.17358492381737,50.619243969051794],[-118.17357846907014,50.619158777460456],[-118.17357748589806,50.61911351539061],[-118.17358080262005,50.61910471076092],[-118.1735842176234,50.61909534363401],[-118.17358382435258,50.61907723880505],[-118.17357913282127,50.61903284501173],[-118.17355832982787,50.618938172339426],[-118.17353206347333,50.61884423511056],[-118.17352287557613,50.61875433142645],[-118.17357789112397,50.61859212814753],[-118.17363260971098,50.618411266397565],[-118.1735792040166,50.61825892407261],[-118.1734957473109,50.618156442957314],[-118.17344059852957,50.61808532456566],[-118.17336807385686,50.61799152306061],[-118.17331965557324,50.61790224175348],[-118.1733111625748,50.61787960671789],[-118.17324840910568,50.61786219222391],[-118.17311675722138,50.61783200033476],[-118.17299612902853,50.61777942900735],[-118.17285109610143,50.61767316434402],[-118.17266116483567,50.61750837114977],[-118.17243131706711,50.617317604959794],[-118.17214224314068,50.61718084154394],[-118.17187260049603,50.61711605750506],[-118.17171401491116,50.61707719375547],[-118.17165019002279,50.617055743731726],[-118.17155698684672,50.61698871831301],[-118.17136159841334,50.61682466705917],[-118.17111468553793,50.616660369622245],[-118.1708226006165,50.61659174869009],[-118.17052964612888,50.61659932438218],[-118.17027474912027,50.61659263726228],[-118.16996315340214,50.61656443185582],[-118.16965595130901,50.61657212971527],[-118.16930551831541,50.61659316300692],[-118.16888843261313,50.616588584971076],[-118.16869862719365,50.616585918495325],[-118.16869306351644,50.616577056630405],[-118.1686080596656,50.616442817152894],[-118.16845796027178,50.616192699426385],[-118.16836758987347,50.61605865027749],[-118.16833138369853,50.61603180801867],[-118.16825448433661,50.61598344688206],[-118.16812927930441,50.615885913489166],[-118.1680049521169,50.61578336213852],[-118.16791048717982,50.615703255379316],[-118.16781690022493,50.61562829924945],[-118.16767988823939,50.615516943214736],[-118.16753546032302,50.61539715463889],[-118.16737688429299,50.61527692750018],[-118.16716395367503,50.615121797168555],[-118.16699522921087,50.61498843376179],[-118.16692252975402,50.61492624043606],[-118.16686427130693,50.61487298439064],[-118.16681235670511,50.614824126052625],[-118.16676297932948,50.61477092745136],[-118.16669545157562,50.614699499922644],[-118.16652175409543,50.61454374810301],[-118.16623115497968,50.61430404345508],[-118.16599783949255,50.614113006313126],[-118.16585546888518,50.61400183828784],[-118.16575213243911,50.613921663017855],[-118.16562039943058,50.613851350447575],[-118.16541616330298,50.613799084546535],[-118.16521836916459,50.61376082215749],[-118.16499305846354,50.6136460558989],[-118.16468266418258,50.61343827396609],[-118.16445355375053,50.613274085373966],[-118.16437022365811,50.613211708524965],[-118.16426640381981,50.61311398930241],[-118.16406481402026,50.61294496409996],[-118.16388176361757,50.61281227290405],[-118.16376262365064,50.612741156744185],[-118.16365314534572,50.612665633981166],[-118.16355781697068,50.612590541021845],[-118.16345829204933,50.6125191105302],[-118.1632984658869,50.6124264731251],[-118.16308712174452,50.61230308027095],[-118.16291891584919,50.612075398549344],[-118.16286507935594,50.6117428103013],[-118.16286226744711,50.61150478330792],[-118.16284539362968,50.61142845200926],[-118.16282997777022,50.611414934757434],[-118.16285691109307,50.611382941805324],[-118.16292346406848,50.611297255044356],[-118.16297528426891,50.611183980686675],[-118.16304027788082,50.61106654798425],[-118.16316859746128,50.61095301882537],[-118.16340717434863,50.61082920883436],[-118.16375259418014,50.610704466361554],[-118.1640403445239,50.610624793728874],[-118.1642130539932,50.61054208446331],[-118.16441708602382,50.61039210606506],[-118.16466004979513,50.61022284029226],[-118.16484495562635,50.61009070886452],[-118.16497609655636,50.60998133623494],[-118.1650972846112,50.609867871084596],[-118.16516373188972,50.60981325110506],[-118.16517778249687,50.60980407472136],[-118.16523730253405,50.60975856468745],[-118.16538005323882,50.60965396147168],[-118.16552290008106,50.60954880449205],[-118.16561735109097,50.60943571053132],[-118.16568116463941,50.60930463522898],[-118.16573356063795,50.609218516924734],[-118.1658672337453,50.609104802888915],[-118.16607125557702,50.60891413785704],[-118.16621722089116,50.60875044841412],[-118.1662885437471,50.60863742020862],[-118.16642377482172,50.60851477689177],[-118.1666293530725,50.60838636244288],[-118.16682195297912,50.60828132751916],[-118.16709270205165,50.60808521273778],[-118.16743720953598,50.60780277840364],[-118.1677062942609,50.60757546966638],[-118.16784746862679,50.60743912601881],[-118.16795917845512,50.60729843339828],[-118.16808074116783,50.60716239524178],[-118.16818767081207,50.607089725076925],[-118.16833811562415,50.607042723627806],[-118.16853119562955,50.60699591163099],[-118.1686959832049,50.606958391536466],[-118.16884613533799,50.60694357385349],[-118.16903092369039,50.606923852379985],[-118.16926936829107,50.60683108869696],[-118.16949932081599,50.606685182968775],[-118.16959561165334,50.60661233016126],[-118.16946955337492,50.60655032987718],[-118.16921275452387,50.60642260875433],[-118.1690271814587,50.60633493985171],[-118.16889975985046,50.60629092006015],[-118.16873857965722,50.60621627092314],[-118.1685493004863,50.60611930069721],[-118.16837094965616,50.606031010489026],[-118.16824128563319,50.60596931439144],[-118.16812488885729,50.60590291456198],[-118.16800273631924,50.60581859109421],[-118.16790273168974,50.605729612423715],[-118.16786643599083,50.605662648676955],[-118.16788838504685,50.60560827539873],[-118.16793238464554,50.605549800617894],[-118.16796682157114,50.60549517912567],[-118.1680784263368,50.60531437396484],[-118.16825187854278,50.60499331464177],[-118.16828650523782,50.6047952068565],[-118.16817284170092,50.604692844617155],[-118.1679109856691,50.604614475479295],[-118.16751118012475,50.60454218360583],[-118.16725351954058,50.60433812624889],[-118.16719946647152,50.60407783371893],[-118.16717956126683,50.60390695069662],[-118.16715536440664,50.60378095861225],[-118.16718560417205,50.60358762968918],[-118.167348813016,50.603325169521284],[-118.16755124167504,50.60314342905753],[-118.16769318740438,50.60315515070844],[-118.16788098893294,50.60322998282429],[-118.16809512632626,50.603204996528504],[-118.1682681908518,50.603140385433],[-118.16841393760606,50.60304898878659],[-118.16848485638826,50.60291784427053],[-118.1684908006777,50.602792290244],[-118.16850415733336,50.602593810242695],[-118.16841605284418,50.60236557902463],[-118.16822288926066,50.60229092937042],[-118.16813635804716,50.60228764008765],[-118.16815059956032,50.60224684111004],[-118.16815869445729,50.6022106970056],[-118.16817917803776,50.60213418350705],[-118.16818375795363,50.60198592693398],[-118.16809878006838,50.60181101887379],[-118.16796688198049,50.60169098066899],[-118.16787820377421,50.60162878719858],[-118.16783732678208,50.60159822412203],[-118.16779215787689,50.60153119366547],[-118.16774571724616,50.601369735200244],[-118.16772425058036,50.60120778035011],[-118.16772200432561,50.60114943883046],[-118.16768941868817,50.60105110045038],[-118.1676162483919,50.600849339364544],[-118.16757380999043,50.60070567141957],[-118.16756171185219,50.60064267518011],[-118.16755088068695,50.60056226017488],[-118.16749858915736,50.6004139463956],[-118.16742083652973,50.600207902309116],[-118.1673942993742,50.60006479653736],[-118.16740736970081,50.6000001878859],[-118.16741887820749,50.59989366429697],[-118.16741955735326,50.59976773789271],[-118.16745038093819,50.599672746901575],[-118.16753300432725,50.59958649351739],[-118.16761835735826,50.59950496129457],[-118.16769766369582,50.59942751243178],[-118.16777218865114,50.59933673708367],[-118.1678071091293,50.59926915184047],[-118.1678264209409,50.59917899717983],[-118.16784826746643,50.599043827263074],[-118.16787664926737,50.59892211665807],[-118.16791420228834,50.59880895358556],[-118.16796492315432,50.59869164046393],[-118.16802598461615,50.59859652474505],[-118.1681373781787,50.598447340302684],[-118.16827218092169,50.598265912996126],[-118.16834465315519,50.59816652301322],[-118.1683810368315,50.59812106860814],[-118.1684728237905,50.59804337974893],[-118.16860245929718,50.59795253617239],[-118.1686717145559,50.59790206309713],[-118.16870487884259,50.59787502844205],[-118.16874935769467,50.59783410452467],[-118.16878076605119,50.597806945873174],[-118.16881939273075,50.59777916700853],[-118.16887976833235,50.59769813022292],[-118.16893331526323,50.59758496627856],[-118.16896784141301,50.59749927521269],[-118.16899212782737,50.59747218312514],[-118.16902656124306,50.597458226824315],[-118.16905367501337,50.59739460951367],[-118.16905171690946,50.59727357667866],[-118.16904234674209,50.5971746176282],[-118.1690377587062,50.59712966889361],[-118.16902702643863,50.597089366181194],[-118.16895552207095,50.59700013881851],[-118.16883904625091,50.5968529425832],[-118.16878967964753,50.5966777186857],[-118.16881590660653,50.596466596890224],[-118.16884837955452,50.59629093261559],[-118.16886739581426,50.59622279356635],[-118.16885978428616,50.59616463338832],[-118.1688239782339,50.59600335563895],[-118.16878777755805,50.595783306362314],[-118.16877040366394,50.59556740646125],[-118.16877214477644,50.59529297365361],[-118.16887464157239,50.59495051488893],[-118.16897489572435,50.59466157050615],[-118.16888309965948,50.59446471197122],[-118.16879930601364,50.59430343495395],[-118.16893204179587,50.594072716640106],[-118.16910476345747,50.593765722279706],[-118.16893795625796,50.593438712774145],[-118.16858417675742,50.593154432574245],[-118.16844176933564,50.59304381862682],[-118.16832696743467,50.59296848031313],[-118.16798539036009,50.59274663230088],[-118.16760509434535,50.59251244910341],[-118.16737832515037,50.59240660452564],[-118.16720334770591,50.592350181488506],[-118.16695658481818,50.59222654522717],[-118.16669489939059,50.592035761554186],[-118.16645438168155,50.591876409259264],[-118.16623571283012,50.59177509309409],[-118.16604688978788,50.59169622237893],[-118.1658628471298,50.59163067796407],[-118.16570621044401,50.591591365978786],[-118.16552655620914,50.59156172637601],[-118.1652671212906,50.591510631992975],[-118.16501412396856,50.59146338139062],[-118.16484490615794,50.591424878560865],[-118.16468661498287,50.5913543721311],[-118.16450969643239,50.59124809273669],[-118.16435920936674,50.59113295127624],[-118.16417273769166,50.590959333687564],[-118.16403006304283,50.590718188724296],[-118.16408332713398,50.59047450996715],[-118.16420378466765,50.590293772062886],[-118.16405242066115,50.59025482982076],[-118.1636490340889,50.59032575449007],[-118.16344070781508,50.590368656708506],[-118.16339301797585,50.590346639176964],[-118.16321435091862,50.59024023353793],[-118.16298009968969,50.59004515863566],[-118.16286922224965,50.58986615093367],[-118.16284855600955,50.589740403909566],[-118.16283178956763,50.589633010504365],[-118.16281492400203,50.58955667718738],[-118.16279493462022,50.58949821016882],[-118.16277514118327,50.58944878697074],[-118.16276675483451,50.58943576561967],[-118.16279532976027,50.589434964939194],[-118.1630293001964,50.58942833319771],[-118.16374330485746,50.58934942426806],[-118.16460681899537,50.58922853127053],[-118.1649769376932,50.589175021611474],[-118.16503369882211,50.58916547351414],[-118.1652306082551,50.58905566902482],[-118.16552797244637,50.58885917280812],[-118.1657153221458,50.58872270511434],[-118.16591027953235,50.58856303823891],[-118.16639644521885,50.58829288693333],[-118.16695974878172,50.588089756243214],[-118.16725602760721,50.58800108678774],[-118.16742269645819,50.58793206903244],[-118.16762125422431,50.58785344431822],[-118.16786915793965,50.58775683706327],[-118.16810213880241,50.58766426428479],[-118.1682318435631,50.587613541879655],[-118.16835442958185,50.58756287698794],[-118.16853884090698,50.587453314678115],[-118.16869857709378,50.58731206339369],[-118.16884504942485,50.58717552455477],[-118.16900429818355,50.587057396315416],[-118.1691090319703,50.58696649398734],[-118.16919445648188,50.586884396799],[-118.16932980991967,50.586770799509644],[-118.16947569437576,50.58664777693375],[-118.16957691546385,50.58655662619698],[-118.16955701473503,50.58646709102634],[-118.16943997999961,50.58633341073458],[-118.1693025610008,50.58616383418225],[-118.16916309535621,50.58598563426191],[-118.16908507291978,50.585882955239605],[-118.16903455115644,50.585775439073785],[-118.16897349336045,50.58559599682211],[-118.16893652661787,50.58546175144858],[-118.16891945745319,50.58541705038126],[-118.1689082419989,50.58538970177188],[-118.16889390140591,50.58530903747367],[-118.16887634229036,50.58520610881431],[-118.1688664911789,50.585160778579215],[-118.16886999960377,50.585120350938126],[-118.16888393667466,50.58498970956324],[-118.16891396314044,50.58482799858712],[-118.16895900856726,50.584692205521826],[-118.16900990636768,50.584583942722475],[-118.16905436938637,50.58450234241137],[-118.16909200719006,50.58443946790743],[-118.16912223495757,50.58439866753446],[-118.16915685141036,50.58435308815199],[-118.16922081727031,50.58427173528451],[-118.16928975427187,50.58417209507341],[-118.16937117458096,50.58407219752121],[-118.16948174792304,50.58392747353676],[-118.16954892852952,50.5838277091616],[-118.16956764898029,50.58379174539913],[-118.16958588352836,50.58376873634519],[-118.16963980488038,50.58371436035683],[-118.1697214192883,50.58362351530184],[-118.16978323946091,50.583564608124796],[-118.16987655702637,50.58351866355469],[-118.17001102464042,50.58344058974223],[-118.17016323790176,50.58336264809751],[-118.1703308606688,50.58329821398317],[-118.17051798709846,50.58326454259643],[-118.17070267751093,50.58324481778564],[-118.17078254162305,50.58323519931815],[-118.17089320913371,50.583130595879545],[-118.17125252277563,50.582884227904515],[-118.17181261356201,50.58265825339218],[-118.17229899054908,50.58251859183198],[-118.17247508197902,50.58239543906905],[-118.17247554495066,50.58221978142614],[-118.17249161442905,50.58206668403371],[-118.1727347933027,50.58195617624909],[-118.173192103566,50.581830277593134],[-118.17344493795764,50.58175604544411],[-118.1734704836698,50.581742030526186],[-118.1734761358124,50.58171983211789],[-118.17349864446477,50.58161125419092],[-118.17359573481761,50.58142151038233],[-118.17376206820666,50.58130331651245],[-118.17388609638256,50.58127478556553],[-118.17401363480502,50.581246502261635],[-118.17422258989308,50.58119967784264],[-118.17442510794893,50.58113883126303],[-118.17450192687255,50.58103465598975],[-118.17455572759616,50.58089947945378],[-118.17473249324188,50.58080292777718],[-118.17495333795434,50.58072868557792],[-118.17513176063669,50.580632810718946],[-118.17535512853881,50.58051356021948],[-118.17563466235566,50.58039826404014],[-118.17580938354958,50.58033376331256],[-118.175974943179,50.58029121315969],[-118.17643700754488,50.58017863622779],[-118.17708861680246,50.58002857881977],[-118.17750990999285,50.579884874374486],[-118.17771882592861,50.57971600684348],[-118.17786650854111,50.579562035565296],[-118.17793328137945,50.579484826858916],[-118.17811012441229,50.579357200225346],[-118.17841809226876,50.57916030304312],[-118.17857650872052,50.579046624478586],[-118.17858498600674,50.57902858428987],[-118.17858361477816,50.57900589027196],[-118.17853942883096,50.578943450676135],[-118.17839293938393,50.578805441377426],[-118.17820823045614,50.57867264443253],[-118.17805735567815,50.57853941403671],[-118.1778343975656,50.578289801180816],[-118.17757564676957,50.57799076816477],[-118.17743196372044,50.57774505717547],[-118.17736287948706,50.57753002711234],[-118.1773144770274,50.57735939125162],[-118.1772707682025,50.5772433202076],[-118.17720522251383,50.57714039654298],[-118.17712676630387,50.576867081368974],[-118.17706841614877,50.57626469318355],[-118.17703696062839,50.5755998086556],[-118.17702242782043,50.5751637824674],[-118.17701924722209,50.574907077007076],[-118.17702145852118,50.57477220876329],[-118.17701501326093,50.57472768889595],[-118.17698058054062,50.57466029585419],[-118.17692157540945,50.574570821971015],[-118.17683341248876,50.57445500259212],[-118.17671774817312,50.574303346058066],[-118.17662227136816,50.57417854070678],[-118.17656384948829,50.57407554915577],[-118.17652736022218,50.57395885663415],[-118.17651533729845,50.57382412248465],[-118.17650848031091,50.57368014443477],[-118.17650210869766,50.57352320252642],[-118.17650645056071,50.573325220338],[-118.17654618081286,50.573117867447486],[-118.1766025978931,50.57297778541666],[-118.17657957350053,50.572906108154136],[-118.17644843419673,50.572853357132026],[-118.17632353732664,50.57280555697652],[-118.17627507928124,50.57278801795344],[-118.1762155049025,50.57275273713472],[-118.17612453384464,50.57270395057165],[-118.1760857274747,50.57268200369914],[-118.17603990165165,50.57265956137117],[-118.17572526181036,50.572487640016774],[-118.17515068941037,50.572196819130426],[-118.17456716997148,50.571977666368774],[-118.1739839768386,50.571929714776495],[-118.17357043910305,50.57201915558917],[-118.17338238451842,50.572048253078684],[-118.17322853363872,50.57197298682954],[-118.17302135265514,50.571867397935584],[-118.17277010265674,50.57173949778346],[-118.1725092980713,50.571584925855795],[-118.1722628252599,50.57142967492374],[-118.1720577893969,50.571301646628235],[-118.17189916549688,50.57121304285327],[-118.17182263156278,50.57117318090387],[-118.17181171183238,50.57116450052603],[-118.17179367625485,50.57115587803585],[-118.17176939928778,50.57114230425305],[-118.171669272976,50.57108494856871],[-118.17151952122587,50.570996410277935],[-118.1714401611629,50.57095238928382],[-118.17133194294172,50.5708905116383],[-118.17111648274845,50.57077134446042],[-118.17086446482553,50.57064790434172],[-118.17058037594978,50.57052501844518],[-118.17033869796452,50.57042376613108],[-118.17004613131812,50.570318927518095],[-118.16973124215573,50.57020968186633],[-118.16961279410539,50.5701657182417],[-118.16958227959542,50.57015735270049],[-118.16951764527796,50.5701307492533],[-118.16946821758766,50.57010861874955],[-118.16944023904044,50.570095903707745],[-118.1692583240991,50.56999831018643],[-118.168952794625,50.569835488334334],[-118.16880860872486,50.569755817544234],[-118.16882264608928,50.56974664025642],[-118.16888688551194,50.56967377657769],[-118.16905210967423,50.56947020941059],[-118.16923711777794,50.56919402717814],[-118.16931090094214,50.56899528941514],[-118.1693236637152,50.5688916803784],[-118.16937122894102,50.5687922203791],[-118.16944326170457,50.56867471126097],[-118.16953274139168,50.56853866604361],[-118.16962495038092,50.568407333162995],[-118.16968313920493,50.56830806314568],[-118.16971354822624,50.568235638375],[-118.16976968351233,50.5680463921019],[-118.1698562205222,50.56770336802405],[-118.16990124040053,50.56749638796783],[-118.16989957520327,50.56738384122486],[-118.16982498504099,50.56715994144852],[-118.16966783199535,50.56694093811105],[-118.16952072535358,50.56677630974932],[-118.16941913890538,50.56657479030812],[-118.16939358485133,50.566354914652436],[-118.16942242365447,50.56613888188278],[-118.16945867100044,50.56593128178338],[-118.16950827467664,50.56576926079622],[-118.16956372935577,50.565624592599264],[-118.16960602176007,50.56545357624621],[-118.16963671313565,50.56527779011111],[-118.1697127335927,50.56513740409389],[-118.16986800172093,50.56500091751574],[-118.17000270392643,50.564900833936484],[-118.17006849516513,50.56485972560374],[-118.17019656974199,50.564777251979095],[-118.17045554631295,50.56462662331322],[-118.17067095303896,50.56451190223462],[-118.1708413272469,50.564410948099116],[-118.17103957207563,50.564252077957455],[-118.17113147702084,50.56414276012212],[-118.17112872687771,50.563944833736485],[-118.17081580693974,50.5636108765893],[-118.17019567467514,50.56341904968063],[-118.16999604611073,50.563331502332574],[-118.17041339706272,50.563097721151095],[-118.17124654062175,50.56276111306468],[-118.17239449175831,50.56238120100743],[-118.17340683679703,50.5619436764259],[-118.17411994730575,50.561572024250346],[-118.17496571504995,50.56128486860468],[-118.17580331595431,50.56114627655084],[-118.17639121363015,50.561054454415356],[-118.1770042307862,50.560859322627145],[-118.17776673620317,50.56059112760076],[-118.17854109385485,50.560214165099765],[-118.17897870967315,50.559863708373214],[-118.17908470802327,50.559714134535255],[-118.17916355112466,50.559699930275805],[-118.17932826501287,50.559702515530866],[-118.17951266924162,50.559714399325436],[-118.17964220510741,50.55973539999038],[-118.17975156947466,50.5597702350397],[-118.1798974833762,50.559809348516914],[-118.1800520698497,50.55983946520245],[-118.18014427699164,50.55986066034891],[-118.18012299563296,50.559748429640244],[-118.18009262661613,50.5595558960036],[-118.1800753461422,50.55946146533833],[-118.1800767815649,50.55937173598983],[-118.18007631504625,50.55911973792306],[-118.18007320540883,50.55883196627474],[-118.18007060160062,50.558602415006824],[-118.17992736363945,50.558374798661845],[-118.17963774486851,50.55816171829874],[-118.17947534807783,50.55806438576799],[-118.1794545860349,50.5580510521333],[-118.17944015938997,50.55804212474814],[-118.1794292413751,50.55803344497914],[-118.1794112080407,50.5580248325152],[-118.17924318916694,50.558031052826166],[-118.17883179711804,50.55797659058666],[-118.17844951185911,50.55779594283529],[-118.17826624860191,50.55764516026811],[-118.17821994430308,50.55760517481256],[-118.17835246771025,50.557527527185385],[-118.17883988996064,50.55728849654088],[-118.17934639187989,50.55699092631239],[-118.17941094700267,50.55678362292824],[-118.17930469197002,50.55669025188005],[-118.1792864616881,50.55667258629419],[-118.17929912193183,50.55664071291384],[-118.17937860619938,50.55650056644384],[-118.17951235139061,50.55628345756185],[-118.17961589451579,50.55610716202355],[-118.17967959176897,50.555976070243446],[-118.17979347192875,50.55582196305432],[-118.17996871067362,50.55555016657873],[-118.18009939953272,50.555238499817825],[-118.18026858547411,50.55494027919819],[-118.18047841280695,50.5546635742249],[-118.18044736397694,50.55447495053468],[-118.18022589554474,50.554288706960165],[-118.18011270284066,50.55412310264625],[-118.180200653613,50.55396490537558],[-118.18038068796739,50.55378778852805],[-118.1804780090633,50.55368788608636],[-118.18048628463478,50.5536607831494],[-118.18049846240608,50.553652042963975],[-118.18050800813917,50.55363802798085],[-118.1805403545334,50.55361545301423],[-118.18061128238679,50.55356509359457],[-118.18068454462669,50.55350134013174],[-118.18072263390951,50.553456003024536],[-118.18075263256019,50.55340614483906],[-118.18079100621938,50.553338799341624],[-118.18082002874951,50.553284352675384],[-118.1808326869558,50.55325247898924],[-118.18083813408947,50.55322122631666],[-118.18084679034747,50.55317156135237],[-118.18084813578821,50.55311290172949],[-118.18084802622586,50.55307277818289],[-118.18086788556201,50.553009775590574],[-118.18100552546403,50.552841534634055],[-118.18120023653262,50.55256997177022],[-118.18125336262715,50.55232627353],[-118.1812354057847,50.55224591364286],[-118.18121969533566,50.55218323017449],[-118.18119012825062,50.552057415520515],[-118.18117441793032,50.5519947320313],[-118.18120570039319,50.55199862990203],[-118.18136951011178,50.55200623938577],[-118.18165726404999,50.55198529907931],[-118.18189373773035,50.55190199411056],[-118.18200412009551,50.55182899081192],[-118.18205770432691,50.55179661510823],[-118.18208137826348,50.55178303648615],[-118.18223463937727,50.5517187080031],[-118.18258451616109,50.551575609610985],[-118.18283539788438,50.55146054347339],[-118.18291899092281,50.551418985711194],[-118.1829928410983,50.55138238998056],[-118.18310478976868,50.55134114233986],[-118.18328339027244,50.551294418839056],[-118.18341502204392,50.551252299775925],[-118.18346179052554,50.55123865083822],[-118.18347942526181,50.55122915643684],[-118.18351830159673,50.55122003973826],[-118.1836109602057,50.55118759076098],[-118.1837585723201,50.55114546880856],[-118.18394944578394,50.551089441104224],[-118.18414743142971,50.55103335438905],[-118.18433918221035,50.55098247699975],[-118.18453288104635,50.550930606830114],[-118.18473534967687,50.550879354953175],[-118.18491832890469,50.55082785792281],[-118.18504177083453,50.55078176976007],[-118.1851324747425,50.550740142633714],[-118.18518878582891,50.55071247753098],[-118.18535988726366,50.55068838933461],[-118.18566954914758,50.55065373555678],[-118.18584971553595,50.550638764682404],[-118.18592523290909,50.55063335226993],[-118.18603884796886,50.55062328693779],[-118.18615682720787,50.550567773265094],[-118.1862449307501,50.55037794637814],[-118.18628856671162,50.55011719900951],[-118.18630146753834,50.549981952551654],[-118.18630282377627,50.54996396995586],[-118.18645278013865,50.54994912751579],[-118.18676068208408,50.549914346969885],[-118.1869390926917,50.54989924169355],[-118.18699404565882,50.54988955825442],[-118.18716143591021,50.549856166731736],[-118.18745403567034,50.54981748507373],[-118.187690225367,50.54979685336829],[-118.18784076048081,50.54976848224193],[-118.18799089539432,50.54972201354322],[-118.18812465260413,50.549657432537416],[-118.1882171038533,50.549615935441786],[-118.188372817006,50.54961900516481],[-118.1886519039273,50.549647721400824],[-118.18905002370641,50.54959443797472],[-118.18960106181258,50.54941747704195],[-118.1901667641693,50.549339847287335],[-118.19064611577193,50.54941148270606],[-118.19108238856877,50.54946540022753],[-118.19137221717564,50.54953441255528],[-118.19145789590762,50.549582817166424],[-118.19147865760023,50.54959614869852],[-118.19160127870279,50.54966693425532],[-118.19179613024964,50.54978178650456],[-118.1919863997979,50.54989236535585],[-118.19221371091652,50.55002476212471],[-118.19244305622497,50.55013527353588],[-118.19261176588545,50.550196307387175],[-118.19268252219919,50.5502182415429],[-118.19271477998183,50.55022673348332],[-118.19278455927389,50.55024407920573],[-118.19290217823503,50.55025179776691],[-118.19309686534865,50.55024517831217],[-118.19323835441301,50.550248368655005],[-118.19328025732236,50.550252451062356],[-118.19332907245837,50.55024742105381],[-118.19346324869531,50.550241617244005],[-118.19367138543464,50.55023933407438],[-118.19392029720022,50.55030884579802],[-118.19417624478078,50.550409359242956],[-118.1943310342901,50.55048918685749],[-118.19441819267509,50.55055973010816],[-118.19452261263304,50.55065352640731],[-118.19464691829661,50.55075549368018],[-118.19480045327319,50.55085274965391],[-118.19502454845718,50.55096287599828],[-118.1952332382569,50.55105949705204],[-118.19535644521436,50.551116760443605],[-118.19545528284286,50.551161008382444],[-118.19553618484252,50.551196083746625],[-118.19562146967283,50.55122637881619],[-118.19579427020399,50.55127414589981],[-118.19606686199879,50.55133006225086],[-118.19635212667895,50.55139478858269],[-118.1965779551835,50.55146435802612],[-118.19678011346508,50.551547517693656],[-118.1969276940243,50.55161779432617],[-118.19704321489564,50.55168864213622],[-118.19722083132994,50.55179041013792],[-118.1974758170596,50.55188632749108],[-118.19784587632552,50.551963790924276],[-118.19817297784324,50.55206365474479],[-118.19833775148501,50.552188243514],[-118.1986836492289,50.552404675328646],[-118.19920324135255,50.552674009651746],[-118.19943018463698,50.5527882850367],[-118.19949633443059,50.55276526489334],[-118.19962765749732,50.552714627264024],[-118.19971103577237,50.55266400385363],[-118.19975045614534,50.55260067748618],[-118.19978353825306,50.552532954905374],[-118.19983853504456,50.55245152643119],[-118.19993425914184,50.55236052749172],[-118.2000004080497,50.55233750703665],[-118.20006665469617,50.55231392397593],[-118.20022773822446,50.55231678498322],[-118.20039613634418,50.552328639136526],[-118.2005724235843,50.55233596849489],[-118.20068967674568,50.55236624980696],[-118.2007511992836,50.552410694967755],[-118.20080628123445,50.55244111936409],[-118.20088055337203,50.552463295191366],[-118.20101125665283,50.55249792147144],[-118.20116768409504,50.55252756999118],[-118.20126825317612,50.55253125896833],[-118.20145024215782,50.5524751465714],[-118.20182969832697,50.55234537215866],[-118.20216937431832,50.55218906090505],[-118.2023184919252,50.55209730752449],[-118.20236582943559,50.55207013273354],[-118.20245466800881,50.55202893066977],[-118.20263800326012,50.5519548335469],[-118.20285077025609,50.551885067026994],[-118.20301843137256,50.55182963433935],[-118.20312031544505,50.55177466166165],[-118.20318848281055,50.55171957603348],[-118.20326579195624,50.5516425364993],[-118.203366292425,50.551564869114934],[-118.20348034820435,50.55150115337744],[-118.20357201476371,50.55146409952079],[-118.2036519117116,50.55145390346383],[-118.20381953165318,50.55147021728415],[-118.20406910991356,50.55149512668858],[-118.20418595825556,50.55150729814703],[-118.20416981115525,50.55142651166534],[-118.20414618453363,50.55125593117168],[-118.20415903052061,50.551120691764474],[-118.20423357038088,50.55099826255537],[-118.20432817217993,50.550862556711984],[-118.20439849917372,50.550713274834834],[-118.20444199434219,50.550524259358276],[-118.2044644831663,50.5503846094559],[-118.20446640539454,50.550353108687915],[-118.20448754196782,50.550343866707266],[-118.20454957130286,50.550293428393275],[-118.20462491902363,50.55020721125307],[-118.20467862712047,50.55011269241933],[-118.20472659582911,50.55003076763974],[-118.20476513337093,50.549972466715865],[-118.2047858660476,50.549945109512954],[-118.20483893091901,50.54978275389707],[-118.20492499797774,50.54947131919299],[-118.20499653696535,50.54926393907107],[-118.20513411030294,50.54913634486251],[-118.205376529695,50.549008208758444],[-118.20556598175135,50.548929458236614],[-118.20567594839764,50.548879002307224],[-118.20588505470853,50.548768868129066],[-118.20619660738312,50.548590230908594],[-118.20650144970627,50.54842976807497],[-118.20682860648715,50.54827370331133],[-118.20719988419854,50.548098704386454],[-118.20759240082901,50.54792406836583],[-118.2079619562528,50.54778962087941],[-118.20839151374304,50.54763679503821],[-118.20882474135797,50.5474525899025],[-118.20912589380862,50.547323497268025],[-118.20928945053551,50.54728132617137],[-118.20942799518342,50.54727073121912],[-118.20964272615039,50.547250805236345],[-118.20989254625208,50.54724351481564],[-118.21023884486667,50.54725317611297],[-118.21058999804785,50.547245100020646],[-118.2107239577801,50.547230231165784],[-118.21070052472331,50.547181129906804],[-118.21064340638733,50.5470601699195],[-118.21058305035787,50.54691695463785],[-118.21052899168626,50.54673746636937],[-118.21045696813354,50.546518290862394],[-118.21037405239697,50.54632095544551],[-118.21029485049695,50.54613291078604],[-118.21022255739854,50.545935752529864],[-118.21016183641731,50.545815108039776],[-118.21011510866133,50.54575702898161],[-118.21001077355946,50.54567286249316],[-118.20982353899508,50.545503776724786],[-118.20971821633599,50.545302595872464],[-118.20975315724769,50.545162691118406],[-118.2097891550767,50.54510872968896],[-118.20980967732258,50.545072327156994],[-118.2099199583963,50.54495861799746],[-118.21013540119026,50.54478113156677],[-118.21031181307258,50.544644395242194],[-118.21037389435661,50.544562891494934],[-118.21039770827217,50.54440525636884],[-118.21039670465193,50.54417582512167],[-118.21036746874584,50.54406812334648],[-118.21033726570215,50.54406825930542],[-118.21032176098504,50.54405531010611],[-118.21026751597911,50.54397918499778],[-118.21015835896794,50.543841006428025],[-118.2101587141515,50.54370601804916],[-118.21030364049199,50.54355632968271],[-118.21041897283875,50.54343394554397],[-118.21045547357365,50.54339752756037],[-118.21047387305602,50.543383572791655],[-118.21052908450106,50.543351860016934],[-118.21086900257566,50.543244697665],[-118.21147954781314,50.54311249736832],[-118.21192420213967,50.54310760350297],[-118.21230509186503,50.54315302768272],[-118.21275099589973,50.54313070110374],[-118.21304364995805,50.54301964969106],[-118.21315624218795,50.54289254219265],[-118.21319488243603,50.54276193568569],[-118.21322135246933,50.542640081959384],[-118.21322518401769,50.54257707952529],[-118.21319924572454,50.54246057165863],[-118.2131396424699,50.54220047469373],[-118.21310003125075,50.541958161258755],[-118.2131324727443,50.541863274262],[-118.21333227529082,50.54184737339251],[-118.213633031055,50.54185326531977],[-118.21376836312066,50.54186107837989],[-118.21377048285339,50.5418386303131],[-118.21375599025276,50.541676612099266],[-118.2137244251443,50.54139813972402],[-118.213712322501,50.54119165563509],[-118.21373589580804,50.541096714602766],[-118.21379358777678,50.541019980671635],[-118.21385431279916,50.54095645774916],[-118.2139056010688,50.54090639919841],[-118.21398549934416,50.540824446916794],[-118.21413147884502,50.540678787615064],[-118.21430498883788,50.54049721758049],[-118.21438068890672,50.540316672708464],[-118.21447904570269,50.54018970253794],[-118.21479743546016,50.540114343149085],[-118.21502920292016,50.54002668546806],[-118.21506332803983,50.539962991878724],[-118.21506838453374,50.53995430842135],[-118.21506241350129,50.53992733270618],[-118.2150452718896,50.539841958434145],[-118.215024892214,50.53973431990771],[-118.2150527454661,50.53963515101857],[-118.21517304830003,50.539535139933314],[-118.21538708155389,50.53944736520502],[-118.21560765500006,50.53937304756199],[-118.2157444843169,50.53933125043213],[-118.2158220961842,50.53930337840646],[-118.21589852548037,50.53926185595715],[-118.2159853679395,50.53921146599475],[-118.21609087496033,50.53912510243115],[-118.21619401336224,50.53901145587931],[-118.21624050933195,50.53894806188659],[-118.21623995702873,50.53888984018329],[-118.21623854184081,50.538754718808235],[-118.21623568513648,50.538638143208175],[-118.21623311206635,50.538601807096576],[-118.2162129161228,50.53857497072195],[-118.21615681808308,50.53849927840418],[-118.216100718683,50.53842359498113],[-118.21605075240169,50.538343253643454],[-118.21597404967274,50.53822261834412],[-118.21588868792622,50.53811097367363],[-118.21583485021226,50.53805295718243],[-118.21576854360609,50.53799519423597],[-118.2157535199505,50.53788737165848],[-118.2157673706158,50.53772564591519],[-118.21562554783047,50.537560888735484],[-118.21548576197135,50.53747649420277],[-118.21538271741198,50.53740541078778],[-118.21513983510526,50.53729117281099],[-118.21490559410495,50.53723968371784],[-118.2148291235826,50.537240527645345],[-118.21476863063354,50.53724135563925],[-118.21463429133073,50.53723813199997],[-118.21455030134958,50.53722092988894],[-118.21445580069997,50.5372131576407],[-118.21426689709469,50.53719705031456],[-118.21405517381554,50.53715901016365],[-118.21385911574104,50.537102293717375],[-118.21371773204926,50.53706805849898],[-118.21354604200263,50.537024353030375],[-118.21326229533287,50.53695130227845],[-118.21299266376909,50.53686851391397],[-118.21278245219216,50.53678085446672],[-118.21257837294766,50.5366885458454],[-118.21241386224827,50.536613707041695],[-118.21228180782151,50.536556407645826],[-118.2121506364524,50.53650425002001],[-118.21201956300949,50.536451529649135],[-118.21188565992608,50.53639466013006],[-118.21178508499756,50.53635030269101],[-118.21172377589117,50.53631492494591],[-118.21168195122462,50.53627977833634],[-118.21166556768854,50.53626167833518],[-118.21165464874468,50.536253001499055],[-118.21159546042381,50.53619517549785],[-118.21143906857695,50.53605311396212],[-118.21122605062338,50.53587938387506],[-118.21104698138187,50.53575550403812],[-118.21084038192278,50.53566753377194],[-118.21053527621403,50.53555398800457],[-118.21019906263288,50.53540492682807],[-118.20992678205707,50.535286348132075],[-118.20976551608396,50.535233769796776],[-118.20963714208857,50.53514508012445],[-118.20945612315897,50.53501202100653],[-118.20933243931522,50.53493721921617],[-118.20928127718713,50.534914982108226],[-118.20909915706773,50.53484962798991],[-118.2086330019097,50.534692550596176],[-118.20783924412488,50.53440847480315],[-118.20697462398434,50.53406235227698],[-118.20654130703315,50.5339002267546],[-118.20648266799854,50.533900619976116],[-118.20645196833772,50.53388321088547],[-118.20637779468603,50.53382996710529],[-118.20628400581356,50.53373636669311],[-118.20616699908679,50.53360271645673],[-118.20603196446297,50.53346045766888],[-118.20590687127776,50.5333222788486],[-118.2057584901837,50.53317512121785],[-118.2056195813423,50.533055186612415],[-118.20556889971532,50.533019983147405],[-118.20553722451402,50.53299797650442],[-118.20547474417012,50.53294895351552],[-118.20544397656649,50.53285017887139],[-118.20543983451445,50.53267984490767],[-118.20540923458829,50.53254944534949],[-118.20539080119293,50.532522730214886],[-118.20538524222982,50.53251386035051],[-118.20534739905628,50.532455832780975],[-118.20528680543518,50.532334629990594],[-118.20524299840129,50.532249625879835],[-118.20523342981632,50.5322229651552],[-118.2052136485019,50.53221423319648],[-118.2051857795466,50.532200972901805],[-118.20510012066757,50.53215256890811],[-118.20494945465829,50.53205948305015],[-118.20481553884892,50.53196192650545],[-118.20471464595276,50.53186839348824],[-118.20465186942039,50.53181087030689],[-118.20456044912136,50.53174455157763],[-118.20427563345292,50.53161659493141],[-118.20391220886751,50.5314814134522],[-118.20375982795808,50.53142888071547],[-118.20383555030962,50.53136076877157],[-118.20388778736535,50.53116219662735],[-118.20377908891018,50.53092969742548],[-118.20373238979947,50.530759186814834],[-118.20379503703475,50.53066416707684],[-118.20381400655441,50.5306366949111],[-118.20379928537993,50.53061927070915],[-118.20377276651122,50.53058802680047],[-118.20376636355596,50.53050227415559],[-118.203878616783,50.530326005067096],[-118.20410064893214,50.53016141398779],[-118.2042563322677,50.53009272087018],[-118.20429441227867,50.53008805270358],[-118.20424057344124,50.529999521302315],[-118.20414312452324,50.529824877759786],[-118.20414054010857,50.529645604270236],[-118.20416142593423,50.52946403287441],[-118.20420159746256,50.529283819087965],[-118.20426553880448,50.52910979811933],[-118.20437730977935,50.52894649288427],[-118.20453525595431,50.528793208311576],[-118.20469475889811,50.52864117207297],[-118.20480244072354,50.52848095928323],[-118.20476293835597,50.52829965640845],[-118.2047899608698,50.528123605810286],[-118.20488136816277,50.52795490758786],[-118.20499021068018,50.527787997020596],[-118.20510080403966,50.52762121865173],[-118.20520282599388,50.527452697927636],[-118.20528770141807,50.52728071945582],[-118.20536575884681,50.52710712208848],[-118.20543348890352,50.52693167689126],[-118.20548553761985,50.526754558400924],[-118.20551469872343,50.526576389274425],[-118.20553586753547,50.52639314703389],[-118.20554690647866,50.52620692291213],[-118.2055379817003,50.52602325265285],[-118.20550286499378,50.52584734728072],[-118.20542228264215,50.525688010031686],[-118.20519916067096,50.525572873658945],[-118.20496542501749,50.52545755001256],[-118.20484355465672,50.52530095503202],[-118.2047656891853,50.52512598974148],[-118.20471742443729,50.524944069032614],[-118.20469350946337,50.52476499233383],[-118.20470202155477,50.52458311842934],[-118.20475095193544,50.52440352044657],[-118.20484576182841,50.52423562197433],[-118.20496930627108,50.52407596522063],[-118.20511008889174,50.523919221232525],[-118.20525759279255,50.52376464057401],[-118.20540353644226,50.5236088200357],[-118.20553925233095,50.52345058001944],[-118.20568080620069,50.523289370185346],[-118.20578593464839,50.5231233273363],[-118.20580019522724,50.52294919774864],[-118.2057656612673,50.52276994304159],[-118.20570639327215,50.52259006800672],[-118.20564294070347,50.522413857445876],[-118.20555757989177,50.522241193582204],[-118.20546491787954,50.522069705914014],[-118.20539377756502,50.52189690390116],[-118.205383885281,50.52171881392387],[-118.2054416707742,50.521539278372536],[-118.20553988031364,50.52137218812023],[-118.20565367189471,50.521207324612995],[-118.20577944335663,50.521044994667974],[-118.20591349338282,50.52088607663653],[-118.20605728496132,50.52073236380331],[-118.20622123795093,50.5205851590813],[-118.20638684668474,50.520438631143755],[-118.2065390122856,50.520287767064765],[-118.20667286362463,50.520129964227124],[-118.20679853075873,50.519968195508554],[-118.20691406709261,50.51980345381102],[-118.20701927896737,50.51963685542269],[-118.20709546595845,50.5194636944307],[-118.20715626392446,50.519287190432166],[-118.20725962473061,50.51912102199773],[-118.20740038391438,50.51896427415815],[-118.20756422999801,50.51881762080161],[-118.20774931237045,50.51868150105834],[-118.2079741468737,50.518571906609424],[-118.2081871953839,50.5184586530397],[-118.20831967009623,50.51829849197931],[-118.2084250669703,50.51813077569058],[-118.20852530063885,50.51796213553161],[-118.20868709682142,50.517817026913676],[-118.20887402058995,50.517680474817894],[-118.2090211037955,50.517528120513965],[-118.2091485080621,50.517366471971975],[-118.20926393307538,50.51720228097468],[-118.20942016475415,50.517048310246004],[-118.20960221207402,50.516909154236934],[-118.20984537502844,50.51683700305455],[-118.21013737498484,50.51682082325767],[-118.21042199458223,50.51682673033398],[-118.21070339990534,50.51683071116907],[-118.21094615329042,50.51674045062707],[-118.21111134527885,50.51659614750001],[-118.2112555902985,50.51643963199555],[-118.21144132867057,50.516299603227594],[-118.21167411127644,50.5161747431158],[-118.21176315545279,50.51602960177535],[-118.21170387239026,50.515849728452736],[-118.21156319739323,50.515678826651595],[-118.21137855337246,50.51554662821665],[-118.21117103732168,50.515423558718005],[-118.21094610114174,50.515308871716684],[-118.21070871490244,50.515204598088935],[-118.21046365027698,50.515113911809706],[-118.21021169157179,50.51504251751422],[-118.20994067842828,50.5149991500523],[-118.2096582870045,50.51497023933455],[-118.20937404561643,50.514941767154376],[-118.2090968073624,50.51490360894374],[-118.20881897740774,50.51485863800941],[-118.20858297331267,50.51476688543906],[-118.20837857702944,50.51463612008984],[-118.20823297053727,50.514483504414606],[-118.20813408774059,50.514317228594734],[-118.2080542820882,50.51414325615739],[-118.20798002485299,50.513967983785946],[-118.20788912329891,50.51379661976518],[-118.20778508291629,50.51362941079407],[-118.20767004233748,50.51346425660325],[-118.20753972154205,50.51330537548631],[-118.20738321891133,50.51315425074834],[-118.20719139322338,50.51302266771593],[-118.20696522074185,50.51291522359747],[-118.2067203698147,50.51282341254314],[-118.20646560342243,50.512747851383786],[-118.20619226330867,50.51269753920965],[-118.20593244332552,50.512630660160646],[-118.20566882016996,50.512555033834076],[-118.20541356308546,50.51247209557312],[-118.2051846761898,50.51237010568028],[-118.20500152559852,50.51223969838913],[-118.20485661723991,50.512083166449216],[-118.20472766674534,50.511916467909835],[-118.2045887932123,50.511755840749466],[-118.20441771250667,50.51161724279316],[-118.20420488669937,50.51150452183474],[-118.20397970636668,50.51140165992568],[-118.203742848944,50.51130475453542],[-118.20349966975644,50.51121361330477],[-118.20325074861029,50.511124896333754],[-118.20299978440568,50.51103773421083],[-118.20275067139856,50.51095013236395],[-118.20250185086661,50.510860851090555],[-118.20225906268476,50.51076748350061],[-118.20202230998285,50.51067001177213],[-118.2017857505916,50.510571432196116],[-118.20155114015094,50.51047185038065],[-118.20131847556208,50.51037128419804],[-118.20108425490248,50.51026946885006],[-118.20085373262603,50.51016679262246],[-118.2006234068147,50.510062990713436],[-118.20039327438244,50.50995808098379],[-118.20016295069722,50.50985427809388],[-118.19999992324477,50.50978177447747],[-118.19993077786697,50.50975091381509],[-118.19969860610117,50.509647549038206],[-118.19946847794087,50.50954263734019],[-118.19923854629853,50.50943659996329],[-118.19901435712764,50.50932814643883],[-118.1987924054908,50.50921702977817],[-118.19857629561513,50.50910292549901],[-118.19836816468352,50.508983742496326],[-118.19817219865037,50.50885580755789],[-118.19799209633888,50.50871825153426],[-118.19782016689344,50.50857450068743],[-118.19765222901175,50.508428201499605],[-118.19748224966776,50.50828344842061],[-118.19730614065739,50.50814335207396],[-118.19712633397071,50.50800412460585],[-118.19694866869449,50.507862787849696],[-118.19677090678138,50.50772201337844],[-118.19659314752977,50.507581229668496],[-118.196409548793,50.50744343270263],[-118.1962236184611,50.507308851697374],[-118.19602980610156,50.50717880375703],[-118.1958295739187,50.50705508231987],[-118.19561104984392,50.50694475977551],[-118.19537423381668,50.50684783602141],[-118.19512544897428,50.506758546714885],[-118.194876180913,50.506672043014106],[-118.19463109828077,50.50658187454325],[-118.19438192837009,50.506494816052665],[-118.19412867425727,50.50641084965578],[-118.19388777749568,50.50631702426264],[-118.19367529483203,50.50620260356329],[-118.19348120276405,50.5060742298472],[-118.19329723316844,50.5059386510618],[-118.19311764168168,50.505798300477835],[-118.19294194400723,50.50565596428158],[-118.19276235475203,50.505515613074756],[-118.19258043218514,50.50537848670195],[-118.19240065111295,50.505239251115654],[-118.19221882701011,50.50510157044297],[-118.19202707982778,50.504969959941185],[-118.19182316982031,50.50484709996525],[-118.19160748509763,50.50473075794864],[-118.19138985670405,50.50461539918981],[-118.19118011102873,50.504495515849925],[-118.19098671346153,50.50436322616212],[-118.1907953596268,50.50422938984249],[-118.19058104613316,50.50411539295626],[-118.19033511178826,50.50403024232314],[-118.19007039892206,50.50396128463707],[-118.18980462006091,50.503898461224125],[-118.1895177293214,50.50385504674024],[-118.18924465614275,50.50380357609],[-118.18902714477025,50.50370799872414],[-118.18887219929246,50.503558639720495],[-118.18876065520432,50.5033841039389],[-118.18868620025357,50.5032104862772],[-118.18866586485964,50.50303164870432],[-118.18865857148147,50.50284921179567],[-118.18862217628853,50.502670930995414],[-118.18857497635163,50.5024935869441],[-118.18852232614627,50.5023169880613],[-118.18846792419053,50.50214026544022],[-118.18841527481683,50.50196366642998],[-118.18836632428506,50.501786198459875],[-118.1883303178167,50.50160569375993],[-118.18829440947931,50.50142462641796],[-118.1882490621059,50.50124684304393],[-118.18817957703722,50.501075274464256],[-118.188065907831,50.50091300728536],[-118.18790250503275,50.50076135809598],[-118.18770942353075,50.50062739218578],[-118.1874905621674,50.50051928530478],[-118.18723297578249,50.500440082788316],[-118.18697043069578,50.5003689996778],[-118.18671206941605,50.50029426093879],[-118.18645147070131,50.500222192972835],[-118.18618727681613,50.500160600575846],[-118.18591657040092,50.50011605749904],[-118.18563692143269,50.50010253019068],[-118.18535173444518,50.500110640812096],[-118.18507054201395,50.50012637302793],[-118.18478857097837,50.50014657844702],[-118.18450903640384,50.50017316551247],[-118.18423184028524,50.50020669682981],[-118.18396000184381,50.50025020605533],[-118.18369283873878,50.500307613476295],[-118.18342966935697,50.500372642633934],[-118.18316328721191,50.50043574481562],[-118.18289621990175,50.5004925877216],[-118.18262749619086,50.50054875255837],[-118.18235614265637,50.50059964164661],[-118.18208166935848,50.50063788009129],[-118.18179278336109,50.50065702020567],[-118.18152402810396,50.50062164393925],[-118.18128046153795,50.50052307802125],[-118.1810909048755,50.50038934814914],[-118.18100188493122,50.50021808308506],[-118.1809113079115,50.50004557787936],[-118.18085542322575,50.49999982039196],[-118.18073927321507,50.499902906390304],[-118.18053531573858,50.49977041756825],[-118.18030508979254,50.4996665722299],[-118.18005316876007,50.49959566187796],[-118.17978655429691,50.499537841708005],[-118.17951099051905,50.49949067907736],[-118.1792301725639,50.499453323186145],[-118.1789496502196,50.4994244577223],[-118.17866942332711,50.49940408268896],[-118.178388420367,50.49939835078261],[-118.17810411199918,50.499401415282],[-118.17781756483056,50.4994071502631],[-118.17753500684003,50.49941034607954],[-118.17725410196117,50.499404048722276],[-118.1769775744134,50.49938280089206],[-118.17670649138879,50.49934047673221],[-118.17643881194178,50.49927861336866],[-118.1761790147597,50.49920204735965],[-118.17592787836918,50.49911649272076],[-118.17568647513622,50.49902597573161],[-118.17544818595177,50.49892776846739],[-118.17521797446476,50.49882392141109],[-118.17499233827606,50.49871417790481],[-118.17477293142304,50.49859922444592],[-118.17456306343922,50.498480425089575],[-118.17438288010864,50.49834394529039],[-118.17422109013017,50.49819351563407],[-118.17404918011852,50.49805027981215],[-118.17384525235686,50.497927948386895],[-118.17362536683022,50.49781577866178],[-118.17339750062027,50.49770870291108],[-118.17317158348276,50.49760062543666],[-118.17295199219194,50.49748678445418],[-118.17274670701909,50.497362094548606],[-118.17258599796462,50.49721568859097],[-118.17246577435685,50.49705068545315],[-118.17245000432746,50.497029230119644],[-118.17234749960659,50.496884680923074],[-118.17219769246317,50.49673679436924],[-118.17194433742164,50.496633552654075],[-118.17169273508179,50.496540613213966],[-118.17166810723648,50.49649875171077],[-118.17149992165866,50.496456343271426],[-118.17134368242314,50.49619274103774],[-118.17075539335993,50.49568104100341],[-118.16992186790225,50.4952536823216],[-118.16942861890921,50.49510238703505],[-118.16896622590185,50.4949572235666],[-118.16832086416142,50.49475278667409],[-118.16581821069153,50.49408349880511],[-118.16525180890483,50.4936806621671],[-118.16466818902508,50.49332576224047],[-118.16384595683948,50.49290535985029],[-118.16324443730383,50.492754844781075],[-118.16232604571354,50.49270278219888],[-118.16136793587263,50.49276655844527],[-118.16082488807942,50.4928399553949],[-118.16013090566962,50.492853494827855],[-118.15960801642339,50.49281136222541],[-118.1591456817672,50.49264581738854],[-118.15855430724152,50.49246774399538],[-118.1579965995287,50.492350805344685],[-118.15743773609807,50.492179549764444],[-118.15676102347791,50.49202309772779],[-118.15620331673973,50.49194683022365],[-118.15556441696761,50.492000415189885],[-118.15525698704869,50.49202437923055],[-118.15455346254022,50.49209258684462],[-118.15405304248776,50.4921452431048],[-118.15367278279984,50.492291731353156],[-118.15321902267938,50.49251380727246],[-118.15305188377681,50.4926584669162],[-118.15281068872086,50.49279052427331],[-118.15255424940145,50.4928067974813],[-118.1517491890251,50.492623700113214],[-118.15135082253818,50.4924575775511],[-118.15083690808012,50.492394559732816],[-118.15013108192574,50.49233375301925],[-118.1491813674004,50.492308738633774],[-118.14865905196687,50.49233439622545],[-118.14809525791443,50.492414730628035],[-118.14748875503123,50.49245530937489],[-118.14677289774903,50.49242145059062],[-118.14619447035905,50.49235214109566],[-118.14565695578462,50.49220097972102],[-118.14516437358978,50.492117417941316],[-118.14461796942385,50.49204755267238],[-118.14435987653314,50.492063128983666],[-118.14436152080368,50.4890923524258],[-118.14435990237162,50.48902047487139],[-118.14435847258619,50.48895766013934],[-118.14437134854954,50.48889416163159],[-118.14437011051812,50.48884039186099],[-118.14435447337958,50.488777698325485],[-118.1443534255723,50.48873298244876],[-118.1443649303662,50.48868746735609],[-118.14439210538525,50.48863346407645],[-118.1445031939795,50.4885153471931],[-118.1445717177989,50.488478401042855],[-118.1446561018955,50.48844202053045],[-118.14473883270458,50.488404953024734],[-118.14483723500831,50.488359388277296],[-118.14491977520419,50.48831326672752],[-118.14500425706527,50.48827632338211],[-118.14511530327795,50.48823957556102],[-118.14522819916334,50.48820238942476],[-118.14535374090956,50.48817401138486],[-118.14543879340303,50.48816422942222],[-118.1455358238458,50.48813664749997],[-118.14563489291014,50.48811769011877],[-118.14573221039133,50.48809860829773],[-118.14583127928961,50.48807965074054],[-118.14591595047833,50.48805176059807],[-118.14598399304518,50.4879972683033],[-118.1460540758214,50.48795139165453],[-118.14615120220827,50.48792325555462],[-118.14626466819084,50.487913230074376],[-118.14636188818922,50.487894701329964],[-118.1464317798076,50.487839770528815],[-118.14644474481526,50.48778588816496],[-118.14652766358455,50.487757873206164],[-118.1465986986719,50.487757265746],[-118.14666992441897,50.48776571214911],[-118.14672605270391,50.48780980875446],[-118.14675427609191,50.48780051181719],[-118.14683894618614,50.487772620961586],[-118.14692157564518,50.487736114362924],[-118.14697745006713,50.48769035865377],[-118.14703284614113,50.48762704872904],[-118.14706020806706,50.48758209863618],[-118.14709993298247,50.48752728617039],[-118.1471411217609,50.4874640977387],[-118.14718249962624,50.487409972128084],[-118.14720995959595,50.48736445942259],[-118.14723732274683,50.48731950034188],[-118.14734789072095,50.487255025942304],[-118.14744453485068,50.487209343424496],[-118.14754321940762,50.487172276492196],[-118.14765407153872,50.48712646323939],[-118.14766808749518,50.487117287692755],[-118.14773835806508,50.487080463846176],[-118.14779413253011,50.48703527025373],[-118.14789087405246,50.48698902477061],[-118.14800376452067,50.486951835756244],[-118.14810059984248,50.48691519763678],[-118.1481989012874,50.486860022276275],[-118.14828114601242,50.486805406792165],[-118.14835074586323,50.48674197442826],[-118.14839027746861,50.48667810752655],[-118.14844566875666,50.486614805747784],[-118.14851507705525,50.48654231934694],[-118.14856852551941,50.48646983926902],[-118.14859655664667,50.48645148792833],[-118.1486521399811,50.486397231019986],[-118.14873409947725,50.48632394476115],[-118.1488033142212,50.486242413161825],[-118.14885870595512,50.4861791022135],[-118.14892655103569,50.48611555406741],[-118.1490112166248,50.48608766149807],[-118.14910833715514,50.486059522748036],[-118.14917812584983,50.48600514373149],[-118.14927623281707,50.48594091343112],[-118.14938726980176,50.485904161233755],[-118.14947212592536,50.48588532223083],[-118.14956905449728,50.485848129145744],[-118.14966744634594,50.485802559976065],[-118.14969276889099,50.48573881442522],[-118.14971955322684,50.48566670179263],[-118.14971811764575,50.485603877940406],[-118.14974528439977,50.48554987314607],[-118.14981555083297,50.48551304791423],[-118.14994089090168,50.48547561066735],[-118.15006632537118,50.48544778084402],[-118.15019360781716,50.48541952152112],[-118.15031913869628,50.48539113777221],[-118.15038978720982,50.4853724200282],[-118.1504588756703,50.48536263189076],[-118.15052971550726,50.485352967986096],[-118.15060055531389,50.485343304036164],[-118.1506978647103,50.48532421779963],[-118.15081084190611,50.48529664235369],[-118.15092197432877,50.48525932602454],[-118.15104906417736,50.48522201178526],[-118.15116009950845,50.48518524885347],[-118.15128543755081,50.4851478100743],[-118.15139812901451,50.48510156359553],[-118.15152355998539,50.48507374104342],[-118.15165084046339,50.48504548003764],[-118.15176235491654,50.485026270717626],[-118.15185966313766,50.48500718345576],[-118.15194470825033,50.4849973964737],[-118.1520433842717,50.48496032544243],[-118.15214040378602,50.48493273764237],[-118.15225347737615,50.48490459814593],[-118.1523358118835,50.48484941695806],[-118.15241941571969,50.4847768146579],[-118.1524730491929,50.484713377546655],[-118.15254292844249,50.484658442685195],[-118.15263936990362,50.48460370156783],[-118.15273737220595,50.48454002174043],[-118.15284830928374,50.48449364951459],[-118.15296089926505,50.48444796398386],[-118.15308642570001,50.484419577073574],[-118.15319949741405,50.48439143659638],[-118.15331120157134,50.48438127964093],[-118.15341083512216,50.4843894770421],[-118.15350852531179,50.484388496190455],[-118.15362246309263,50.48439600844851],[-118.15383380080377,50.484394048089555],[-118.15391728505597,50.48439318929984],[-118.15401653449973,50.48438327829022],[-118.15411403252153,50.484373242972175],[-118.15418467786677,50.484354522790916],[-118.1542271034785,50.484345101447204],[-118.15426933690034,50.484326626153255],[-118.15430856760224,50.48425426559283],[-118.15432133154977,50.48419131920673],[-118.15432027241185,50.48414661210129],[-118.1543193115048,50.48410134242106],[-118.15430385592106,50.4840476949275],[-118.1542883988149,50.48399405635802],[-118.15430145156334,50.483939610249465],[-118.15438543649677,50.48388510533607],[-118.15443935501737,50.483830167501985],[-118.15448072079467,50.48377603893056],[-118.15449348436674,50.48371309248752],[-118.15449204064139,50.483650277475476],[-118.15444798143,50.48358782104023],[-118.15441841686997,50.483533742385696],[-118.1543885619618,50.483471172349375],[-118.15437291432254,50.4834084708799],[-118.1543716629633,50.483354709787214],[-118.15437031764542,50.48329133217287],[-118.15436849128945,50.48321040030461],[-118.15435245784172,50.4831295998479],[-118.154364837038,50.483048545473615],[-118.15437759900679,50.482985607917094],[-118.15434755389522,50.48291397494826],[-118.15430349404367,50.48285152732869],[-118.15430205216954,50.4827887033177],[-118.15437055926732,50.482751750862235],[-118.15446913016042,50.4827152401467],[-118.15453763700984,50.48267828758492],[-118.15459301632178,50.482614973498826],[-118.15463447902215,50.48256028221537],[-118.15467584340114,50.48250615348645],[-118.15468860634178,50.48244320692229],[-118.15471391990752,50.48237945996278],[-118.15474088648226,50.48231639977634],[-118.15476804680408,50.48226238460487],[-118.15482342372323,50.482199079301274],[-118.15486246096388,50.48211765546795],[-118.15486111499351,50.48205427776284],[-118.15486063221367,50.48203673242036],[-118.15484459986072,50.481955922987815],[-118.15484344619723,50.48190159922982],[-118.15484238659572,50.481856892003066],[-118.1548414252136,50.48181162219942],[-118.1548403671752,50.48176690603791],[-118.1548525512842,50.48167680644025],[-118.1549077366364,50.48160443815587],[-118.1549609766832,50.48152290059679],[-118.15501596936355,50.48144147828003],[-118.15507115260688,50.48136911882322],[-118.15512458597047,50.481296626198635],[-118.15516537158665,50.48121533530194],[-118.15516402521769,50.481151957529846],[-118.15514856963989,50.481098309958696],[-118.15509049789762,50.4810450390706],[-118.15503223554036,50.48098270524895],[-118.15500238146892,50.480920135180696],[-118.1550010353377,50.48085675738352],[-118.15499920794899,50.48077582528257],[-118.15499757131072,50.48070395607628],[-118.15500994868266,50.48062290138743],[-118.15502251675838,50.48055090959364],[-118.15502049703707,50.480460923486774],[-118.15504707741385,50.480379755123536],[-118.15505847263847,50.48033479210077],[-118.15508543750975,50.48027173167156],[-118.15512670513341,50.480207986067704],[-118.15516787598975,50.480144794089476],[-118.15518005900677,50.4800546942755],[-118.15517648011894,50.47997363789384],[-118.15517445855757,50.479883660655354],[-118.15517301556564,50.47982083642548],[-118.15517195568644,50.47977612908703],[-118.15517032036816,50.47970425086491],[-118.1551686834962,50.47963238156607],[-118.1551670481883,50.47956050333111],[-118.15516570186638,50.479497125429546],[-118.15514986063849,50.47942537870468],[-118.15513402101983,50.479353623041405],[-118.1551043602033,50.47930010686335],[-118.15504590777361,50.479228718925306],[-118.15503045143612,50.479175080139996],[-118.15500040782533,50.47910344701085],[-118.15497065325098,50.479040314212405],[-118.15494060826596,50.478968689984896],[-118.15489811189792,50.47889730358131],[-118.15486806712329,50.47882567932148],[-118.15485222816322,50.47875392356498],[-118.15485059183237,50.478682054177106],[-118.15484720590894,50.4786100516443],[-118.15484576185447,50.47854723624122],[-118.15481766236351,50.478484781214135],[-118.15477370439686,50.478421770862994],[-118.154715828778,50.478377553602435],[-118.15464394302478,50.47834250390751],[-118.15455989336591,50.47831620124863],[-118.15445959824753,50.47828140539037],[-118.15435940149935,50.47824604686353],[-118.15428926737215,50.478211121149954],[-118.15421728673806,50.47816646352242],[-118.15414501590772,50.47811331441864],[-118.15411535863839,50.4780597889647],[-118.15411410773433,50.47800602751411],[-118.15414136287062,50.47795145856181],[-118.15423973288348,50.477905884897886],[-118.15430842477184,50.47787798626409],[-118.15437867553463,50.477841157797094],[-118.154446884665,50.47779571363893],[-118.15447385043262,50.477732644230784],[-118.1544867089587,50.47766914367166],[-118.15447106163604,50.47760645069667],[-118.15446981187968,50.47755268029031],[-118.15446856056738,50.477498918810134],[-118.15446721528797,50.47743554073875],[-118.154466157723,50.47739082433208],[-118.15437968412598,50.47733779783351],[-118.15433563123344,50.47727534086699],[-118.15430607094376,50.47722126176114],[-118.15427835575333,50.47717692345289],[-118.1542629025899,50.47712327549497],[-118.15424754611867,50.47706907388412],[-118.15423228360343,50.47702448886025],[-118.15421663841674,50.47696178686968],[-118.1541730670153,50.47691688419597],[-118.15412901326067,50.476854436044725],[-118.15412795604442,50.47680971960284],[-118.15412680337519,50.47675539549207],[-118.15412555249365,50.47670163395512],[-118.1541099075672,50.476638931924484],[-118.15409426112525,50.47657623881664],[-118.15407909714345,50.4765310911672],[-118.15407871294204,50.476512983124316],[-118.1540488647087,50.476450403524616],[-118.15403341050794,50.476396764416435],[-118.15398955109526,50.47634336126359],[-118.15395999183082,50.47628928200337],[-118.15385931756889,50.476236377466385],[-118.15374696093794,50.47621992664691],[-118.15363314199995,50.47621185186341],[-118.15353527752362,50.4762037788088],[-118.15343547005293,50.47618652741014],[-118.15333731549262,50.47616996273136],[-118.15326572292811,50.476143412428634],[-118.15317944660954,50.47609943001163],[-118.15309521008062,50.47606407214333],[-118.15298071778926,50.47602939718103],[-118.15285396683824,50.47600401373844],[-118.15274014860462,50.47599593803756],[-118.1526424765665,50.47599691822367],[-118.15254266989467,50.47597966601821],[-118.15244451611201,50.47596310054614],[-118.15231630302404,50.475946092624866],[-118.15220385263443,50.47592003256074],[-118.15208936295278,50.47588534774344],[-118.15200531935939,50.475859043071445],[-118.15193362983132,50.47583305447576],[-118.15184783538646,50.475806625427694],[-118.15176312049857,50.475753712114816],[-118.15169104804083,50.47570961529032],[-118.15163308555844,50.4756557796641],[-118.15158922970647,50.47560237551443],[-118.15154537239889,50.47554898027362],[-118.15150326778112,50.4754957003443],[-118.15143129423534,50.475451040761286],[-118.15134501946892,50.475407065811254],[-118.15126068898127,50.47537226016723],[-118.151160692709,50.47534595266699],[-118.15107422691449,50.47529292346075],[-118.15100371696272,50.47523988746318],[-118.1509315528557,50.47518617350057],[-118.15087368515117,50.47514195406117],[-118.15080142466205,50.47508879365327],[-118.15075737735775,50.47502634402359],[-118.15072938241138,50.47496333404481],[-118.15069953984758,50.47490075342505],[-118.15068389874607,50.47483805970212],[-118.15065443914062,50.47479358715403],[-118.15063908779615,50.47473938488824],[-118.15063784112543,50.47468562317814],[-118.15063640461526,50.474622798486095],[-118.15063515795094,50.47456903676811],[-118.15063496654952,50.47455998271886],[-118.15063225855732,50.47451458819494],[-118.15061875302175,50.47447011787997],[-118.15058890937794,50.4744075461221],[-118.15055935545664,50.47435346582745],[-118.15051550214089,50.4743000611678],[-118.15047164736932,50.474246665417],[-118.15041387957606,50.474201883110815],[-118.15032955205865,50.47416707670785],[-118.15021535627875,50.474140890292034],[-118.15011526508484,50.474115144386175],[-118.1500028205286,50.47408908203418],[-118.14988833718365,50.474054394869334],[-118.14978980610356,50.47401971889834],[-118.14970344272523,50.47396612596252],[-118.14961873380658,50.47391321089348],[-118.14951806993463,50.473860302265685],[-118.1494174078585,50.47380738461344],[-118.14933298741857,50.47376296973101],[-118.14926072939257,50.47370981715974],[-118.14921687823902,50.473656411944695],[-118.14915882307494,50.47360313746569],[-118.1490881269275,50.47354104607786],[-118.14901577674499,50.47347827669346],[-118.14895772204744,50.47342500209756],[-118.14888527551908,50.47336278626444],[-118.1488003761043,50.47330082539503],[-118.14871391856157,50.473247785287256],[-118.14861354650088,50.47320336728893],[-118.14852902970482,50.47315951433702],[-118.14844314561824,50.47313363621642],[-118.14824673228411,50.47316207320029],[-118.14814925717855,50.473172103507025],[-118.14804974350228,50.47317350898671],[-118.14799274294697,50.47316494164008],[-118.14794975397375,50.473147198523634],[-118.14783731307983,50.47312113394784],[-118.1477228322947,50.473086453438675],[-118.14763831814325,50.47304259087284],[-118.14758007485037,50.47298026145591],[-118.1475647278151,50.4729260586436],[-118.14757768874574,50.47287216622569],[-118.14757625499314,50.472809350282986],[-118.14754622745203,50.4727377145743],[-118.14753040071011,50.47266596616387],[-118.14750104235875,50.472620939015314],[-118.14748559881187,50.47256728981267],[-118.14747034449937,50.47252270361168],[-118.1474549977515,50.4724685007536],[-118.14745375649667,50.47241472992714],[-118.14745251368467,50.472360968026784],[-118.14745117841126,50.472297589468255],[-118.14744974641313,50.472234764549576],[-118.14743411075005,50.47217207016235],[-118.14736204980217,50.47212796140344],[-118.14729008572526,50.47208329895066],[-118.14723184415132,50.47202096927709],[-118.14716134382694,50.47196793062549],[-118.14707575020086,50.47195055184902],[-118.14698967702911,50.471915627410326],[-118.14690526251708,50.47187121057839],[-118.14683320256646,50.47182710145989],[-118.1467753431846,50.471782879701315],[-118.14674531759768,50.471711243685164],[-118.14674369443208,50.47163937355293],[-118.14672834885728,50.4715851705352],[-118.14671290658333,50.47153152115641],[-118.14668326089344,50.4714780022123],[-118.14664078464004,50.47140661198869],[-118.1465967466867,50.47134416042458],[-118.14656719955514,50.471290078862715],[-118.14655175757373,50.47123642944189],[-118.14653593293924,50.471164680756495],[-118.1465204910379,50.47111103132298],[-118.1465051459108,50.471056828239035],[-118.14650495535277,50.47104777414333],[-118.14647511967547,50.470985201015296],[-118.14647368907768,50.47092237598206],[-118.1464722569236,50.47085955987369],[-118.14648502801236,50.47079661334696],[-118.14652473885188,50.4707417999508],[-118.14658011319766,50.47067849785647],[-118.14659288408478,50.47061555130329],[-118.14660565337601,50.4705526136735],[-118.14660450992092,50.47049828906481],[-118.14657486659847,50.47044476109368],[-118.14648841558213,50.47039172799562],[-118.14641683621282,50.470365173088084],[-118.14631850793194,50.47033953905306],[-118.14624673824228,50.47030392992983],[-118.14617448938894,50.47025077512294],[-118.14614484673908,50.47019724702065],[-118.14613220557483,50.470188438702486],[-118.14607501868544,50.470170816233676],[-118.14598914013284,50.470144945049206],[-118.14590492035089,50.470109581466716],[-118.14581933073289,50.47009220168189],[-118.14571944298228,50.47007549686312],[-118.14562140285129,50.470058362665064],[-118.14554972621335,50.47003236976206],[-118.14546375618909,50.46999688148326],[-118.14542204460257,50.469961707102264],[-118.14537905969105,50.4699439629205],[-118.14536361802207,50.46989032217487],[-118.14536266640239,50.46984505162019],[-118.14533321529946,50.469800577386025],[-118.14528965964979,50.469755670829805],[-118.14520359204597,50.46972074491186],[-118.14510488531535,50.469677001555205],[-118.14501834555635,50.469614350573806],[-118.14496030054748,50.46956107363359],[-118.14491664874632,50.46951672056215],[-118.1448745560208,50.46946344665221],[-118.14483100115284,50.469418539897326],[-118.14480155085211,50.469374065498684],[-118.14478639858581,50.46932891617876],[-118.14475675662709,50.46927539657451],[-118.14472730649292,50.469230922148405],[-118.14462665879827,50.46917800878027],[-118.14452824072475,50.469142765357574],[-118.14445618745339,50.46909865454769],[-118.14438423108209,50.46905399004439],[-118.1443135470682,50.46899190419747],[-118.14425531515467,50.46892956379473],[-118.14419727192718,50.46887628641044],[-118.14413942047142,50.4688320541873],[-118.14409567687908,50.46877809298378],[-118.14405320569877,50.468706710461646],[-118.14403757753658,50.46864400639301],[-118.14402194785715,50.46858131124691],[-118.1440189600635,50.468527415742464],[-118.14403183067614,50.46846391567199],[-118.14401601101953,50.46839216638143],[-118.14398656219156,50.46834769171023],[-118.14395692182568,50.46829417182756],[-118.14395578161582,50.46823984703986],[-118.14395473468034,50.46819513002527],[-118.14395349615235,50.46814136780517],[-118.14395254598392,50.46809609714048],[-118.14395149905499,50.4680513801178],[-118.14395130902193,50.468042325984136],[-118.14393567967066,50.46797963077918],[-118.14393472952351,50.46793436010535],[-118.14390490102816,50.467871777115924],[-118.14387507105488,50.46780920304345],[-118.14384524272496,50.46774662002835],[-118.14381551124106,50.4676834833557],[-118.14377323152931,50.46762115476862],[-118.14368660079586,50.4675590562347],[-118.14361416938812,50.467496845441175],[-118.14359892217433,50.46745224949899],[-118.14361198303351,50.46739780353439],[-118.14361055497392,50.4673349871152],[-118.14362332905635,50.46727204064314],[-118.14365068203826,50.467227090260025],[-118.14366374276986,50.46717264427413],[-118.14367476605246,50.4671095733966],[-118.1436735278877,50.467055811101254],[-118.14364379709905,50.46699267432859],[-118.1436161002242,50.46694832386926],[-118.14360066167518,50.46689468267971],[-118.14368297390799,50.46683950667829],[-118.14376712983572,50.46679406279082],[-118.14384944168155,50.46673888665916],[-118.14387660410281,50.46668488204146],[-118.14388956764488,50.46663098963804],[-118.1438739388681,50.46656829431495],[-118.143829721022,50.46649677819868],[-118.14375757943104,50.46644305899357],[-118.14370110066452,50.46638085141887],[-118.14364287296542,50.46631851049348],[-118.14358464386646,50.466256178462544],[-118.14351240618787,50.46620301272765],[-118.14345379756764,50.466122572307256],[-118.14342378101757,50.46605093489139],[-118.14342197342611,50.465970010049425],[-118.14342054723684,50.465907184586996],[-118.14341921781575,50.46584380547407],[-118.1433891999452,50.46577217695386],[-118.14333272408655,50.46570996021034],[-118.14326067590254,50.465665857367036],[-118.14318929579656,50.465648354385436],[-118.14309145609235,50.46564027202177],[-118.14302045576467,50.465640877255645],[-118.1429349687802,50.46563310295927],[-118.14282273929682,50.46561608722638],[-118.14272248144738,50.46558128022234],[-118.14265034263734,50.465527560236936],[-118.14257985783857,50.465474518250474],[-118.14256423128136,50.46541182265335],[-118.14256299604676,50.4653580513028],[-118.1425881274075,50.46528525159456],[-118.14260090077482,50.46522231401027],[-118.1425992860023,50.46515043431068],[-118.14256945963736,50.46508785967663],[-118.14252562477692,50.46503445124986],[-118.14250961898553,50.46495364726933],[-118.14250781463781,50.464872713372856],[-118.14250705571789,50.464836496684875],[-118.1425063881947,50.46480989674312],[-118.14254784918403,50.464755208768764],[-118.14261742309188,50.46469177826916],[-118.14265684516636,50.4646284742435],[-118.142655230326,50.46455659449189],[-118.14265428153506,50.46451132361517],[-118.14265285489957,50.46444850695924],[-118.14265142982885,50.46438568136863],[-118.14264962368873,50.464304756347204],[-118.14264943393259,50.464295702169295],[-118.14264819862706,50.464241930745395],[-118.14266106994609,50.46417843049695],[-118.14265964331165,50.464115613815196],[-118.1426296293565,50.464043976006586],[-118.14257159433,50.463990697450356],[-118.14248535166045,50.46394670606439],[-118.1424151560038,50.46390216440618],[-118.1423711312181,50.46383971058631],[-118.14238371633911,50.463767709800194],[-118.14242313793432,50.463704405785094],[-118.14246412180545,50.46363216304178],[-118.14250491426053,50.463550875020125],[-118.14253179524458,50.46347819956753],[-118.14251598128033,50.46340644069075],[-118.14245775749393,50.46334410784393],[-118.14239934572744,50.463272711842244],[-118.14238372018313,50.46321001604874],[-118.14242489337471,50.46314682746722],[-118.14246635293524,50.463092139410556],[-118.1425057738246,50.46302883531306],[-118.14250415928201,50.462956955416956],[-118.14251674238393,50.46288496346678],[-118.14251550727506,50.46283119194747],[-118.14251493810613,50.46280402936303],[-118.14251436893788,50.462776866777645],[-118.14254153057232,50.46272286222167],[-118.14256831423651,50.46265074033266],[-118.1425940132948,50.462605102970755],[-118.14263537382541,50.46255097739128],[-118.14267654606361,50.46248778866485],[-118.14270313805292,50.462406621453],[-118.14272973150733,50.46232544529681],[-118.14275457281688,50.46224415365395],[-118.1427669671107,50.46216309848037],[-118.14279355874616,50.46208193121424],[-118.14283435076787,50.4620006339857],[-118.1428735803968,50.46192827546782],[-118.14287244165145,50.46187395024089],[-118.14278814297882,50.461839137580256],[-118.14267436226201,50.46183105142131],[-118.14251925769263,50.46180590666057],[-118.14240528741108,50.4617887660192],[-118.14227820305176,50.4617452616449],[-118.14216366407118,50.461700958131374],[-118.14206497626157,50.46165722056791],[-118.14197873854377,50.46161322866131],[-118.14186585231703,50.46156961182466],[-118.1417513141868,50.461525307876194],[-118.14165281826601,50.461490615218054],[-118.14158087679571,50.46144594847724],[-118.1415512438137,50.461392427495085],[-118.14153543213882,50.46132066829307],[-118.141548205852,50.46125773052081],[-118.14156098109048,50.46119478381241],[-118.14154545576777,50.461131525162465],[-118.14150162439967,50.461078124999496],[-118.14147199331396,50.46102459504197],[-118.1414709474453,50.4609798865342],[-118.1414698104118,50.46092556122898],[-118.1414685766036,50.46087178956754],[-118.14149554883281,50.46080873092094],[-118.14152058260582,50.460736484691594],[-118.14154765301852,50.46067286344446],[-118.14157462501842,50.46060980476311],[-118.1415874000367,50.460546858001116],[-118.14157177656355,50.46048416188159],[-118.1415667260132,50.46047250194555],[-118.15624158495162,50.45848319482529],[-118.15646339564738,50.45850176182419],[-118.1567451148868,50.45850196819753],[-118.1570291692215,50.45848878772474],[-118.15731361437547,50.4584733650836],[-118.15759591798158,50.4584600589871],[-118.15787841959232,50.45843545651158],[-118.15815965646544,50.45840794297867],[-118.15844089120864,50.45839059920718],[-118.1587167730208,50.458393785814074],[-118.15898837198205,50.45843169097009],[-118.15925354747692,50.45849627046406],[-118.1595150282993,50.45857187884487],[-118.15976882634726,50.45865090143963],[-118.16001066081232,50.458747725549664],[-118.16025561077466,50.45883685049582],[-118.16051865210072,50.458893364860735],[-118.16079200599,50.4589313897028],[-118.16107041659036,50.458960740935275],[-118.16135125990104,50.45898630419565],[-118.1616321035298,50.4590118667447],[-118.16191032212693,50.45904232320015],[-118.16218455204968,50.45908549635441],[-118.16245634935129,50.4591426265906],[-118.16264130874903,50.459179469891986],[-118.16272698222106,50.45919627434729],[-118.16299965876878,50.45922803466387],[-118.1632749637072,50.45921421780421],[-118.1635507575698,50.45916709373807],[-118.16382917698624,50.45912523585694],[-118.16410574689836,50.45909398627408],[-118.16438542819412,50.45906521665828],[-118.16466413646144,50.459042027675416],[-118.1649447890724,50.459028016243444],[-118.16522592677352,50.459021388361734],[-118.16550813479901,50.459018786289064],[-118.16579034279196,50.45901618349893],[-118.16607216182135,50.45900564206484],[-118.16635582917472,50.45898449087773],[-118.16663793882424,50.458972278065694],[-118.16691314499236,50.458989517251965],[-118.16718572696067,50.459031991431836],[-118.1674544183314,50.45908662885558],[-118.16772194515276,50.459147954332785],[-118.16798947114535,50.45920928809078],[-118.16825806809858,50.45926447722886],[-118.1685303605547,50.45930862696805],[-118.16880761291863,50.4593344770332],[-118.16908797486711,50.45934247493448],[-118.16936999025738,50.45934097932021],[-118.16965414490346,50.45933737441572],[-118.16993713307241,50.45934046644321],[-118.17021798289785,50.45935583679673],[-118.17049727778169,50.459380136659355],[-118.17077482350228,50.45941448231995],[-118.17104478573064,50.4594618507562],[-118.17131027685527,50.45952472248324],[-118.17157596308522,50.45958647729134],[-118.1718502055544,50.45962962653865],[-118.17213125218237,50.459643875766695],[-118.17240840391878,50.459619427137994],[-118.17268351131345,50.45957618292317],[-118.17295239060496,50.45951781566277],[-118.17322613658733,50.4594823840692],[-118.17350688565791,50.45946779732231],[-118.17378841501429,50.45945890626374],[-118.17407081958275,50.459455166141176],[-118.17435254328906,50.45945533675975],[-118.1746350475716,50.45946120305602],[-118.17491463420733,50.45947365137874],[-118.17519548655528,50.4594890091369],[-118.17547672763241,50.45950213361205],[-118.17575894018367,50.45950967594191],[-118.17604202775428,50.45951218979768],[-118.17632336332747,50.45951458798867],[-118.176605576098,50.45952212816612],[-118.17688429037652,50.4595395903579],[-118.17716874508496,50.459564798701564],[-118.17744532591131,50.45960470912079],[-118.17770353275125,50.45966874902359],[-118.1779380223055,50.459767262196486],[-118.1781506375695,50.459889657416085],[-118.1783497374097,50.46001844567555],[-118.17853892223503,50.46015330318001],[-118.17871050798203,50.46029765504869],[-118.17885019993649,50.460452180664426],[-118.17895605315269,50.460617872601226],[-118.1790429446551,50.460790702748106],[-118.17912264203589,50.46096414483521],[-118.17916917885915,50.46114485086102],[-118.1792328303215,50.46131885724029],[-118.17939197462441,50.46146345734763],[-118.17961646443473,50.46157877841837],[-118.17985903751763,50.461671647452185],[-118.18012377725758,50.4617389630907],[-118.18039881444047,50.46176745550796],[-118.18068045952498,50.46177833417965],[-118.18096618503874,50.46177594042652],[-118.18124684957925,50.46176188782768],[-118.18152556582633,50.461738656589475],[-118.18180389006595,50.46170748680617],[-118.18208153020304,50.46167005738702],[-118.18235479242179,50.46162722814547],[-118.18262707995422,50.46157980927305],[-118.18289518349613,50.46152587432818],[-118.18316231062492,50.46146735871077],[-118.18342642190336,50.461405799716175],[-118.1836909206092,50.46134200749293],[-118.1839553223102,50.46127876831848],[-118.18421797115539,50.461215413691384],[-118.18448402413453,50.46115285961085],[-118.18474667305752,50.46108949479251],[-118.18500961152681,50.46102445936218],[-118.18527118674918,50.4609570669698],[-118.18552984216275,50.46088607759495],[-118.18578567395325,50.460810937571104],[-118.18603926565577,50.46072828907787],[-118.1862837112,50.46063708357857],[-118.18651220233276,50.460535709977755],[-118.18668154380352,50.46038721537726],[-118.18688123903519,50.46026798594403],[-118.18713949532301,50.46018905491644],[-118.18741487752031,50.4601339337802],[-118.18769086016381,50.460116144848826],[-118.18797385930695,50.46012936134621],[-118.18825939976261,50.460168746933206],[-118.18852482281241,50.46023213112163],[-118.18875807244869,50.460327711384664],[-118.18896129248044,50.46046354941912],[-118.18910432720406,50.460619425753656],[-118.18917443151521,50.46078709970987],[-118.1891998076573,50.46096743383158],[-118.18921020973056,50.46115236008976],[-118.18923004434888,50.4613339931101],[-118.18923645983489,50.46152146717665],[-118.18924861278137,50.4617065169735],[-118.18931006405069,50.46187300965452],[-118.18948713132593,50.46200642882533],[-118.18975364853029,50.462094185991596],[-118.19002334970435,50.46213301661489],[-118.19030675000165,50.46214399451652],[-118.19059500355883,50.46213723440149],[-118.19087586124502,50.46212204115673],[-118.19115515643529,50.46209543682501],[-118.19143113830556,50.46205729778254],[-118.19170195987518,50.46200805411247],[-118.19196489367307,50.46194300228282],[-118.19222237519374,50.46186852484096],[-118.19248112105099,50.46179696565973],[-118.1927495041084,50.461741336927865],[-118.19302187910479,50.46169332994557],[-118.19329980138158,50.461654193534386],[-118.19357870458744,50.46162981571864],[-118.19385528780023,50.461629003417684],[-118.1941328651037,50.46166329058132],[-118.1944107390857,50.461706077472876],[-118.19468928630283,50.46173478166171],[-118.1949687067348,50.46175845725918],[-118.19524841736957,50.46178046214171],[-118.19552812827705,50.46180246631898],[-118.19580754801767,50.46182614873354],[-118.19608638829315,50.461853170470036],[-118.196366688105,50.46188199400618],[-118.19664601949522,50.46191639843195],[-118.19691087491563,50.461972949892846],[-118.19715882829273,50.462055418669244],[-118.19739725989011,50.46215191382148],[-118.19762675416817,50.46225906858221],[-118.19784438802124,50.462373304833655],[-118.19805191521128,50.462494728311476],[-118.19825088959273,50.46262459677864],[-118.19843654583163,50.462759735505394],[-118.19861228757749,50.46290095422444],[-118.19876508526029,50.46305185363685],[-118.19890612157414,50.46320926333941],[-118.19904919933748,50.46336512632872],[-118.1992098736959,50.46351150011627],[-118.1993937857551,50.463646513582205],[-118.19958528280492,50.46377867177706],[-118.19978446249378,50.463907412036434],[-118.19999939820593,50.46403727234143],[-118.20020109802674,50.464151499620414],[-118.20041874751874,50.46426573055738],[-118.2006405781846,50.46437629643277],[-118.20086454799747,50.46448475268815],[-118.20109425602412,50.464590783647786],[-118.20132619923008,50.464694151251685],[-118.20156232198522,50.464793862636704],[-118.20180087505582,50.46488978537659],[-118.20204380279031,50.464980926598784],[-118.2022911996294,50.46506674150954],[-118.20254141388122,50.46514653506318],[-118.20279784941471,50.46522111678026],[-118.20305681101557,50.465291356044084],[-118.20331810501519,50.46535836916465],[-118.20358153776846,50.46542327245326],[-118.20384526244351,50.46548649615534],[-118.20411064107465,50.46555040528909],[-118.20437417210427,50.46561475298312],[-118.20463722072338,50.465681886402145],[-118.20489618782992,50.46575212133564],[-118.20515253468757,50.46582725125715],[-118.20540868729381,50.4659035058399],[-118.20566717377082,50.46597652531391],[-118.20592876515398,50.46604186220419],[-118.20619589183981,50.46609571933903],[-118.20647049798978,50.466137103746284],[-118.20674645776614,50.466170682083046],[-118.20702640415817,50.46620171121342],[-118.20730431062246,50.46623428628639],[-118.20758017563516,50.46626841624767],[-118.20785788786436,50.4663021151956],[-118.20813394720093,50.46633512744502],[-118.20841185528595,50.466367699740296],[-118.2086883983483,50.46639792423864],[-118.20896698359324,50.466426592436726],[-118.20924624708917,50.466451348295536],[-118.20952667008545,50.4664694143668],[-118.20980757770516,50.46648468442318],[-118.2100883895671,50.4665005074717],[-118.21036852382512,50.466520241455314],[-118.21064798055119,50.466543886379085],[-118.21092695478694,50.46657031697867],[-118.21120417850429,50.46659662355458],[-118.21148315339165,50.46662305275499],[-118.21118215079899,50.466549873533054],[-118.21092316933526,50.46647965333108],[-118.2106642861653,50.46640886988466],[-118.21040831370006,50.46633152006827],[-118.21016079700418,50.46624628601375],[-118.20991755667623,50.46615683273548],[-118.20967480171505,50.46606458360739],[-118.20943418392868,50.46597023354594],[-118.2091956089276,50.46587432733622],[-118.20895888325546,50.46577798132685],[-118.20872069722738,50.46567984140197],[-118.20848834506641,50.46557872204351],[-118.20826036543787,50.46547282988109],[-118.20803851071976,50.46536227938129],[-118.20781344653604,50.46524980270454],[-118.20759450578143,50.46513267665437],[-118.20739296712884,50.46500717622289],[-118.20721835995896,50.46486944416018],[-118.20707632347036,50.46471761808136],[-118.20695752161159,50.46455443909018],[-118.20685019266885,50.46438641861505],[-118.20674120976848,50.464217720906795],[-118.20661696471633,50.4640552876061],[-118.20647920835297,50.46389924206235],[-118.20633211721548,50.46374593725441],[-118.20617938942593,50.463594485754946],[-118.20602296616508,50.4634439124731],[-118.20584593302982,50.46329978687395],[-118.20567055417838,50.46315634700873],[-118.2055397090461,50.46300135639686],[-118.20546302085647,50.46283041321828],[-118.20541997593858,50.4626494027999],[-118.20540552114917,50.462467026881114],[-118.20541869153686,50.462288849283176],[-118.20547416708547,50.46211196352862],[-118.20556105633766,50.461937861755416],[-118.20566769544511,50.461772492515244],[-118.2058268617673,50.46162099581047],[-118.2059739661207,50.461467518676365],[-118.20605842503178,50.46129719568312],[-118.20611418790669,50.4611186304202],[-118.20613659118197,50.46093828307618],[-118.20613254168968,50.46075720098536],[-118.20610427336264,50.46057272116793],[-118.20603517162372,50.460398913537865],[-118.20589762930517,50.46025192960786],[-118.20567881529693,50.460134236420295],[-118.20545669326287,50.46001518855001],[-118.2052594602227,50.45988545599523],[-118.20506242030635,50.45975461566246],[-118.20487879823744,50.4596179319652],[-118.2047233694614,50.45947194488306],[-118.20462704882587,50.45930186644338],[-118.20457117467257,50.45912334885893],[-118.20453290381077,50.45894550285777],[-118.20450921808006,50.45876529522201],[-118.20448358847455,50.45858608044973],[-118.20443812282876,50.458408856918496],[-118.20437651592356,50.45823275512899],[-118.20430606102279,50.45805658981051],[-118.20422063346285,50.457885027565425],[-118.20411284745285,50.45771978943703],[-118.2039786184784,50.45756399536656],[-118.20381648892176,50.45741583392],[-118.20364288983839,50.457272513245634],[-118.20346725182456,50.45713073887088],[-118.2032741171695,50.45699790913121],[-118.20307524915043,50.4568674950582],[-118.20292741971708,50.45671864082527],[-118.2028176956632,50.45655440301507],[-118.20272498529961,50.45638401551773],[-118.20263801162557,50.45621120297262],[-118.20254714907502,50.45604038500911],[-118.2024343159645,50.45587365815405],[-118.20231409336624,50.4557086789017],[-118.20221565226198,50.45554070678911],[-118.20216621306311,50.45536603003868],[-118.2021385546973,50.45518836054601],[-118.20212003403732,50.455009084595844],[-118.2021104604834,50.45482930066926],[-118.20210642768683,50.45464821706028],[-118.20210589562242,50.45446738034523],[-118.20211071061064,50.45428636028695],[-118.20211533352176,50.454106447597134],[-118.2021218027438,50.45392610462939],[-118.20214081377149,50.45374495584432],[-118.20217888607776,50.45356627255657],[-118.20224438072596,50.45339292261893],[-118.2023458584549,50.453226621785475],[-118.20247145088884,50.45306429090737],[-118.20259704396828,50.452901950923746],[-118.20270221188191,50.45273478917082],[-118.20278851463395,50.45256402764228],[-118.20286810521449,50.452391102137966],[-118.2029441946554,50.452217929630564],[-118.20302203377115,50.45204488048709],[-118.20310677574753,50.45187288769769],[-118.20320163300062,50.45170385926989],[-118.20330329540629,50.4515364497977],[-118.20341011176065,50.45136996424719],[-118.20352042778178,50.45120372545046],[-118.20363229967523,50.451038726300666],[-118.20374932540396,50.45087465103845],[-118.20386965562294,50.45071194777833],[-118.20399329340377,50.45055059864868],[-118.20412042914747,50.45038950515223],[-118.2042629302205,50.4502317461521],[-118.20442488287846,50.45008440784493],[-118.20461572616296,50.44995435725205],[-118.20482115893255,50.44983211524201],[-118.20503456747261,50.44971495534773],[-118.20525779948211,50.44960243830239],[-118.20548560290949,50.44949420273541],[-118.20571447746075,50.44939000179771],[-118.20595084496127,50.44929366924404],[-118.20620550482475,50.449214445974214],[-118.20646571425154,50.449144083903334],[-118.20672874532,50.44907787971481],[-118.2069976155565,50.449018866595324],[-118.20726775087259,50.448962771562854],[-118.20753652377752,50.44890431084209],[-118.20779614752325,50.44883730362605],[-118.20803738067056,50.44875374000736],[-118.20823005554684,50.44862324371488],[-118.20840424043543,50.44847676290799],[-118.20858572509765,50.44833926686101],[-118.20876399927404,50.44819984476217],[-118.20894227080247,50.4480604312837],[-118.20912384962047,50.44792237164],[-118.20931515291602,50.447789526180244],[-118.20951949059986,50.44766324005978],[-118.20971390509501,50.44753287329687],[-118.20987369500484,50.44738762699106],[-118.20999593731868,50.44722392336775],[-118.21007928186857,50.447049559223835],[-118.21011887229008,50.44687212036578],[-118.2101408657896,50.44669400175456],[-118.21015070612128,50.446514457060644],[-118.21015529465788,50.44633455123192],[-118.21011310865043,50.44573946182066],[-118.20762122619111,50.44424396671914],[-118.20856413889126,50.43803384061428],[-118.21482045257522,50.43593114989428],[-118.21509148092328,50.434170495358856],[-118.21511579310268,50.43418350824417],[-118.21525151118956,50.434217929969925],[-118.21545206060848,50.43425635843585],[-118.21555714524793,50.43427336209997],[-118.21567585002867,50.43430376420677],[-118.2159432843155,50.434354804567306],[-118.2162295433985,50.43437892939426],[-118.2164239320516,50.43438132254886],[-118.21657306919242,50.43442007778248],[-118.21682888273568,50.43450758722435],[-118.21717759589104,50.434580178430636],[-118.21745670149961,50.43463542693357],[-118.21767606470755,50.43471867647389],[-118.2178950656967,50.43482449990062],[-118.21802965242122,50.43488595810439],[-118.21817540077838,50.43493408175833],[-118.21844389739694,50.435142829011546],[-118.21866420053092,50.43544592149405],[-118.21873132277156,50.435580036793795],[-118.21883507187503,50.4356150228477],[-118.21910369822626,50.43567970758739],[-118.21941855484505,50.435712608019074],[-118.21969617208097,50.43581747393627],[-118.21987321551701,50.436022597963536],[-118.2199192140032,50.43612527564007],[-118.21998554447892,50.43607966570695],[-118.22021271403422,50.43593350159676],[-118.22046378469591,50.435782248893055],[-118.22060415672664,50.435718112495096],[-118.22078703908434,50.43568465788429],[-118.22115608601341,50.43568069771234],[-118.22151711054292,50.43571289166337],[-118.22170024751655,50.43572917293973],[-118.22183094160826,50.43570051345349],[-118.22212158892044,50.43564809204572],[-118.2225883752224,50.4356114481545],[-118.22319485733799,50.43559650322681],[-118.22401680089347,50.435718194897944],[-118.2247294888624,50.435980211152525],[-118.22497658686619,50.43614901476126],[-118.22499169770728,50.436184546884164],[-118.2250009557628,50.43620270845597],[-118.22501360278834,50.436211508160994],[-118.22511175277208,50.436196944306474],[-118.2252940681845,50.43617700225349],[-118.22556096136499,50.43616979027948],[-118.22592116762063,50.436165752495576],[-118.22617582615757,50.43616784813176],[-118.2264909393089,50.43616854607292],[-118.2271735186303,50.43614368194109],[-118.22783455008063,50.43606926963364],[-118.22810138662166,50.43602136853406],[-118.22813131058622,50.43601217338953],[-118.22812549497455,50.43588181722196],[-118.22822290934658,50.43561521450192],[-118.22844850705741,50.43547796473623],[-118.22860089459873,50.43546721246794],[-118.22875066378982,50.43546136526113],[-118.22922340845386,50.43545167190157],[-118.22980073428027,50.435441420654236],[-118.23014422307487,50.4354418439242],[-118.23024278411813,50.435445384208734],[-118.23039789926885,50.43543934118444],[-118.23075625394722,50.435435718417274],[-118.23108174847314,50.43542753334347],[-118.23140813270497,50.435496238798095],[-118.23182614552981,50.43568043116622],[-118.23210637135068,50.43582160638947],[-118.23218457443315,50.435861002749256],[-118.23220422160776,50.43587029362137],[-118.23225332551662,50.43588334556564],[-118.23233111360595,50.435904633145704],[-118.23246643469669,50.43592092506504],[-118.23266453795121,50.43593259007841],[-118.23278109347793,50.435944742160615],[-118.23289898486978,50.43593889950326],[-118.23310335170717,50.43591428458601],[-118.2332339419567,50.43588617434967],[-118.23330252110557,50.43585822541727],[-118.2334069826392,50.43577630010073],[-118.2335882445573,50.43563931474854],[-118.23383537949226,50.4355515969267],[-118.2340159387439,50.43553151755593],[-118.23407095041769,50.43553086383419],[-118.23409223516286,50.43553066925937],[-118.23414549713105,50.43552989253483],[-118.23423505632613,50.43549324783182],[-118.23434465353326,50.43540207347053],[-118.2344820665195,50.43532416246461],[-118.23461506376735,50.43528209083519],[-118.23467742855378,50.435259354272766],[-118.23472071917398,50.43528556522692],[-118.2348548183488,50.435329448052066],[-118.23506578768142,50.43543071971748],[-118.23525871539204,50.43555444335281],[-118.2353459862369,50.435674701871],[-118.23536272187262,50.43581373327666],[-118.23536916985425,50.43589950304423],[-118.2354050127426,50.4359483500274],[-118.23547119465046,50.436006108531224],[-118.23550904612418,50.43603305781321],[-118.23552092441274,50.436046322015066],[-118.23556257923998,50.43608201774653],[-118.23565210169384,50.436148195864746],[-118.2357339537264,50.43615620691335],[-118.23575100504041,50.43605740789608],[-118.2359373143493,50.435983491194975],[-118.23624195829746,50.43606534358814],[-118.23635085226702,50.436275826572874],[-118.2364598309851,50.4364139888104],[-118.23657855545541,50.43644436847017],[-118.23661531592946,50.43645712066665],[-118.23665732566438,50.43647024162648],[-118.23667424515968,50.43647482015113],[-118.23675039954843,50.43650558976047],[-118.23701247494807,50.43658784801254],[-118.23737049971311,50.43667853611737],[-118.2376182268086,50.43672079680809],[-118.23773371092574,50.43672890880902],[-118.23782307794373,50.43675495589844],[-118.23790051711401,50.436798813888096],[-118.23793106582039,50.43681677905773],[-118.23802593804234,50.43688277016751],[-118.2383314740569,50.43696976801933],[-118.23870396587208,50.436925303388485],[-118.23891767606439,50.43684652658639],[-118.23899705623847,50.436827812069694],[-118.2390674484919,50.436840665463016],[-118.2393853614614,50.43688672123458],[-118.23999584323775,50.43699230003294],[-118.24041218099168,50.43707351302573],[-118.24060968347669,50.43712975876021],[-118.24080970801289,50.43718165234403],[-118.24098478212447,50.43719338441761],[-118.2411980932497,50.43716824354988],[-118.2414120772685,50.437139199225214],[-118.24151766985908,50.43710198418485],[-118.2416432646321,50.437051474955545],[-118.24193861537682,50.43697164466057],[-118.24233299365517,50.43688238574999],[-118.2426419724331,50.43681593985997],[-118.24277538589536,50.43679196714157],[-118.24284592001554,50.436773189477954],[-118.2430063138223,50.43672626059745],[-118.24329250886413,50.43663787466776],[-118.24355664765102,50.436554150130355],[-118.24365252584333,50.43652190113137],[-118.2436724129443,50.43649899860865],[-118.24371316537757,50.4364577910435],[-118.24373470517284,50.43643557400593],[-118.24380904325358,50.43642554190545],[-118.24395489576781,50.43640131100635],[-118.24402913827551,50.436391832510964],[-118.24412574273339,50.436386183340076],[-118.24433031549522,50.43637060206617],[-118.24445607087954,50.43636021884276],[-118.2445101035003,50.43635497139009],[-118.24462418783637,50.43634037905025],[-118.24493651967732,50.436305801006945],[-118.24531259448926,50.43626100598818],[-118.24546117543177,50.43624148444121],[-118.24566822469302,50.4362526237227],[-118.24609158853629,50.43629306986662],[-118.24633229918251,50.43637605675683],[-118.24638241695614,50.436465448885336],[-118.24643138573275,50.436510132152726],[-118.24656909490932,50.43655369253872],[-118.24687093505617,50.436631367070305],[-118.24717333524401,50.43669552070346],[-118.24740590070519,50.43673330537695],[-118.24761610408578,50.43676726089653],[-118.24782815453342,50.43680077607791],[-118.2480427230605,50.4368299567543],[-118.24816540087166,50.43683743243438],[-118.24820087842305,50.43683709172606],[-118.24821126179297,50.43682822013162],[-118.24831167402186,50.43683130441338],[-118.24855354869871,50.43685618030833],[-118.24876580963348,50.43689875692041],[-118.24883018595044,50.43691570169586],[-118.24888391238136,50.43690195157942],[-118.24908041085764,50.43688183587117],[-118.2493898765524,50.436874162739],[-118.24962684984195,50.43687609374841],[-118.24970314823705,50.43687523471801],[-118.24972977987926,50.43687484261249],[-118.24979646454254,50.43687838946717],[-118.24993410282414,50.43688126269949],[-118.25017859469646,50.43690122928839],[-118.25036370783917,50.43692664022949],[-118.25041816293974,50.43693949848549],[-118.25044325606075,50.43694803779144],[-118.25051463229147,50.436965472419175],[-118.25072112817294,50.43699012234299],[-118.2510497834059,50.437004698483],[-118.25132834910367,50.43700163276562],[-118.25151009846856,50.43699516774108],[-118.25166979326963,50.43699336616935],[-118.25176203238283,50.43699249346752],[-118.25180237415182,50.43704616894639],[-118.2518965765533,50.437157287987866],[-118.25211162970804,50.43713225775386],[-118.25242059432112,50.43696296082831],[-118.25266552672142,50.436856969958086],[-118.25294149459299,50.43681756036635],[-118.25332914225513,50.43677749999915],[-118.2537476514448,50.436763899616686],[-118.25413730117661,50.43680477124036],[-118.2544079469799,50.43687854733224],[-118.25452361078689,50.43692676211594],[-118.2545858947827,50.436966155293234],[-118.2546882151204,50.43705073127413],[-118.25479140156621,50.43713027863782],[-118.25485674581269,50.437193045073],[-118.25493176337247,50.43728191726805],[-118.25503516294731,50.43737051865958],[-118.25512453967174,50.43739656072338],[-118.25515817090569,50.437396657850215],[-118.25518599602792,50.43740990716689],[-118.25523989648664,50.43743628314644],[-118.255265971822,50.43744940981038],[-118.25530833224626,50.43743994931782],[-118.25539459063175,50.43741209663757],[-118.25543596995092,50.437398047643036],[-118.2555044056685,50.437401713693625],[-118.25567119641221,50.4373998431125],[-118.25594365066335,50.43740141752074],[-118.25636618471454,50.43740560730119],[-118.25683974815391,50.43736025557295],[-118.25726406811567,50.43718942915828],[-118.25753634379984,50.437006809958326],[-118.25758566884677,50.436884844402755],[-118.25767393551571,50.436793855172304],[-118.25791027049956,50.43676860565358],[-118.2581491235461,50.43673901237088],[-118.25846456866599,50.436614221229284],[-118.25887545335151,50.43643905845497],[-118.25928249443199,50.43628621447161],[-118.25968415277748,50.436164638917454],[-118.25998112035236,50.43608543683699],[-118.26018035240212,50.43602877566752],[-118.2604020983702,50.435954473335414],[-118.2605462223171,50.4358990320445],[-118.2606881261225,50.435897671169236],[-118.26092377166937,50.435917564071865],[-118.26109534651428,50.43592901934518],[-118.26129628537281,50.43594478148543],[-118.26160570063249,50.43600938598264],[-118.26190568569304,50.43611852584169],[-118.26211946139297,50.43618321120218],[-118.26223952509187,50.43619557737993],[-118.26233928563416,50.43621273182327],[-118.26251859896595,50.436251275099174],[-118.26285601154767,50.436225183185364],[-118.26328160875086,50.43621147417844],[-118.26355284685525,50.436374531771385],[-118.26371486095171,50.4365033847757],[-118.26399188683475,50.4365092190339],[-118.26428703104472,50.43653326956193],[-118.26442531134464,50.436563287624644],[-118.26452962143793,50.436615785663996],[-118.2646869737849,50.43669967467788],[-118.26486637976502,50.43677889708938],[-118.2650365120846,50.43683996099023],[-118.26511354943898,50.436865691451395],[-118.26512740067179,50.43688812920837],[-118.26516339551381,50.43694657454693],[-118.26526856423652,50.43703528891324],[-118.26540645528246,50.43710878431993],[-118.26849619104328,50.43593689957032],[-118.26884799090071,50.430344741237114],[-118.26893280322543,50.42515193605624],[-118.26892266881816,50.423726967493955],[-118.26839003933664,50.41751181724336],[-118.26899653360483,50.41175488789197],[-118.27140258691085,50.40673009197717],[-118.27202995472807,50.404394901130466],[-118.26799451181402,50.40217341691791],[-118.26191198487659,50.4013224599887],[-118.25609794102215,50.400475293014736],[-118.25288219368761,50.398596543919275],[-118.25467266906985,50.39682831124178],[-118.26799596454339,50.39664181969047],[-118.27523590605752,50.39577572111715],[-118.2781729544313,50.394578348943284],[-118.28746625215122,50.39023082936972],[-118.29468790826526,50.38474707946909],[-118.30057526584936,50.377953501741885],[-118.30012565911788,50.377438523087676],[-118.29735295560721,50.37396143121334],[-118.29564708307525,50.37111409358044],[-118.29455983275967,50.36655281812469],[-118.2943850539993,50.36501064783711],[-118.2951731798256,50.361476374615215],[-118.29704443579631,50.357478726816474],[-118.2977501117366,50.35343187123792],[-118.29765125391505,50.34995539062676],[-118.29629176253495,50.34442409590841],[-118.29414294363217,50.34020485649323],[-118.28895575882659,50.339125228191584],[-118.28154290465696,50.339652953327864],[-118.27484556130037,50.34045859229105],[-118.26770848898748,50.34069397715841],[-118.26145056931863,50.3396774916537],[-118.25876628877137,50.33711480447031],[-118.25805124293903,50.33329300577464],[-118.2586707183507,50.33067236530246],[-118.25598490813583,50.32713473576387],[-118.2605321296291,50.32114319059514],[-118.26676262256863,50.31628727750535],[-118.26693899698495,50.31600018395736],[-118.26711401431416,50.31052762028371],[-118.26470052176819,50.305569436199775],[-118.26370096290773,50.30134725789304],[-118.26566475522614,50.29672911353593],[-118.2691283234284,50.2908549985459],[-118.26984233903444,50.28965408530306],[-118.27142838684303,50.28212187434908],[-118.27141290082182,50.2761910316806],[-118.2701509326113,50.268718703235756],[-118.26844039974418,50.26205557394107],[-118.26673978135398,50.256409049900014],[-118.26556956076017,50.25310638740213],[-118.26262195183675,50.24922607763437],[-118.26028316710759,50.24558286034419],[-118.2611764458016,50.24119047883508],[-118.26125284368285,50.238108151669906],[-118.26062840367275,50.23640055934662],[-118.2591062390739,50.23252306574113],[-118.25669608406271,50.22773871582668],[-118.25606093286093,50.226424747659316],[-118.25276173766663,50.224034747875805],[-118.24946630394732,50.22261181150824],[-118.246157827944,50.21953936140153],[-118.24446270186691,50.21651616646571],[-118.24061956390452,50.213441918529945],[-118.23644279374821,50.21042530533442],[-118.23615876284553,50.206660031410884],[-118.23650735245968,50.20306884769119],[-118.23721710401598,50.199590195343895],[-118.23783756326681,50.1995882488084],[-118.24166581254084,50.19485250287245],[-118.24619238155331,50.19171047962924],[-118.25063915593118,50.18919507639111],[-118.25668022667706,50.18485232907313],[-118.2585528315577,50.18148267505787],[-118.2584492899054,50.17846428374233],[-118.25594731679465,50.17316313507559],[-118.25388700025793,50.17071653131146],[-118.25273984924539,50.16803758626203],[-118.2580657115348,50.166541946458544],[-118.26784507158922,50.162879883030705],[-118.27325997649989,50.160195127155454],[-118.27486762380268,50.1591078779677],[-118.27795634920761,50.15288531907205],[-118.27928142321436,50.147920434206604],[-118.28140484553576,50.144216003020496],[-118.28265031616918,50.14318458220402],[-118.28841812558626,50.13981253584466],[-118.29268175839816,50.137749169226254],[-118.2951650757473,50.13580820133448],[-118.29501042408857,50.13489706932168]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":42,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"4","REGION_NUMBER":4,"REGION_NAME":"Kootenay","REGION_NUMBER_NAME":"4- Kootenay","FEATURE_AREA_SQM":75890334095.3826,"FEATURE_LENGTH_M":1599485.4037,"OBJECTID":6,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-118.29501042408857,50.13489706932168],[-118.29497954728096,50.134664882052995],[-118.2928350087489,50.13296012275089],[-118.29069719526458,50.128570166184964],[-118.2916564226439,50.12384108492328],[-118.29367962430575,50.11864473792788],[-118.29367951342863,50.11715609719167],[-118.29366497900097,50.1120290472007],[-118.29106785409111,50.10769875441861],[-118.2890995809473,50.103311970892655],[-118.29211599552727,50.09896929624853],[-118.30409128856405,50.09609846451458],[-118.31431465300084,50.09733327555918],[-118.31938938868467,50.098750808210774],[-118.33067782406872,50.099179822025],[-118.33919599994921,50.09927796089269],[-118.34602865356375,50.095783376272166],[-118.35490501628973,50.093251519503816],[-118.36751235808079,50.0915139876754],[-118.37479020385035,50.091035418092424],[-118.37762731402393,50.08920961840106],[-118.37974212562034,50.08641073220924],[-118.37972345061594,50.08258928440636],[-118.37934849817461,50.080303323576246],[-118.37934805339725,50.0792182722934],[-118.38671562822054,50.07760546868171],[-118.39941611589407,50.07745620213688],[-118.40669545396922,50.07703513566304],[-118.42356499742348,50.077328939945474],[-118.4406172578689,50.07745249359582],[-118.44620851111007,50.07720679299081],[-118.45357910027634,50.075470680069266],[-118.46206751461608,50.07173782518277],[-118.46605453314578,50.06938620124961],[-118.4687941196174,50.06760758400561],[-118.47294019613706,50.06480051990264],[-118.48178761864013,50.06031858205476],[-118.48249972475574,50.05991992997216],[-118.49248991807116,50.054290079964524],[-118.49609903727028,50.05148615844883],[-118.49707392193514,50.051025190408645],[-118.50103629238184,50.046503889365255],[-118.50001762307745,50.04017464252983],[-118.49269920576455,50.03586817220539],[-118.48958336767984,50.034336811332025],[-118.4827280197591,50.03173838180237],[-118.47419657581419,50.029772419416354],[-118.4651412176916,50.02809177889635],[-118.46194015140283,50.02792793548545],[-118.45057805197689,50.02636520430418],[-118.44310719838143,50.02394141998997],[-118.4400865297427,50.022526351838344],[-118.43447269192025,50.019744691058506],[-118.43010821452182,50.016795928510234],[-118.42698303793495,50.01281319783381],[-118.42696415601259,50.00972686652298],[-118.433241719419,50.006405875242784],[-118.44156634559016,50.006375960394315],[-118.44716167289393,50.006644201916444],[-118.45273761568315,50.00525504310548],[-118.45857994517591,50.00352627564962],[-118.46504318110964,50.00253392707918],[-118.46840869898757,50.001440488932914],[-118.46954541947487,49.99999804785048],[-118.46953809507288,49.999026144692614],[-118.46934385944071,49.99520287107203],[-118.46789198585765,49.99126755276443],[-118.467615092414,49.98921410235885],[-118.46519272011932,49.984706081021095],[-118.46287447443085,49.981518456389644],[-118.4613536078918,49.98003530962206],[-118.45949063824102,49.97850197804715],[-118.45451437580861,49.97748113927058],[-118.45265842470978,49.977259249148595],[-118.44936453692513,49.976409083145654],[-118.44669857829844,49.97464880542129],[-118.44625055370192,49.974138619749255],[-118.44402806221873,49.97283273683425],[-118.44047998700438,49.9726711290782],[-118.43685006573021,49.9737606283615],[-118.43207542411587,49.97583045350565],[-118.43031162317496,49.97657191377444],[-118.42817778695667,49.97709331507523],[-118.42348960432645,49.97653516888504],[-118.42002282905399,49.97563140939063],[-118.41638768543724,49.97489727405739],[-118.41549585170915,49.97461217185316],[-118.41177238297847,49.973651890579724],[-118.40918680215177,49.972174786790724],[-118.40829519190181,49.970460887739456],[-118.40872154054902,49.96731816867858],[-118.41110638926331,49.96537508764456],[-118.41384473418927,49.96400075352343],[-118.41506979227862,49.961024786356745],[-118.41461731753346,49.95919895212112],[-118.41487536708166,49.95748289924997],[-118.41380350531163,49.954917199846385],[-118.41377978711486,49.951781059543585],[-118.41492297337585,49.94954655562371],[-118.41579533207222,49.94691853138666],[-118.41604426777094,49.944751934803534],[-118.41630089224418,49.94337994954236],[-118.41514233430036,49.940242989159756],[-118.41326458792604,49.93721939504103],[-118.41219044606913,49.93567923846995],[-118.41147613266754,49.93391368201576],[-118.41324420430814,49.93305474964394],[-118.41606827519318,49.93207863843421],[-118.41669574210493,49.93184355510663],[-118.41667546606705,49.93070384374954],[-118.41622717992556,49.92750874451584],[-118.41576446883636,49.92465287477084],[-118.4157608511323,49.924254160986266],[-118.4146869028797,49.92111673213326],[-118.41467363709187,49.91934671679796],[-118.4151024942902,49.9166035992746],[-118.41535824316624,49.91523604252216],[-118.41545347857551,49.91483231597535],[-118.41597078298636,49.91357560970636],[-118.41601692401008,49.91345616862783],[-118.4158778796819,49.91331368177805],[-118.41586476867215,49.913129643004034],[-118.41588190743997,49.91294262299287],[-118.41588254562907,49.912760099848924],[-118.41588837282893,49.91257794614087],[-118.41591140930554,49.912397548467816],[-118.41597003458385,49.91222414450305],[-118.41606424828588,49.91205773419431],[-118.41617384652834,49.91189352285007],[-118.41629354646574,49.91173170418261],[-118.41642180244237,49.911571049429334],[-118.41655178764348,49.91141051466081],[-118.41668340828518,49.91125066309099],[-118.41681175530752,49.91108944455574],[-118.4169316354318,49.91092651645317],[-118.41704141388212,49.91076118648662],[-118.41714445718381,49.91059425822774],[-118.41724095142791,49.91042461419226],[-118.41733061837648,49.910253926179436],[-118.41741527895653,49.910081769020366],[-118.41749302010165,49.909909122193504],[-118.41756556897646,49.90973612374768],[-118.4176124461904,49.90955964218425],[-118.41762327171988,49.90937895661278],[-118.41761833925852,49.909198316058195],[-118.41761022652418,49.90901575442396],[-118.41757532707518,49.90883641473318],[-118.41748564320632,49.908670796124674],[-118.41733271135826,49.90851718017703],[-118.41715477983234,49.90837708373953],[-118.41696717696527,49.90824252797314],[-118.41676578943309,49.908117197173176],[-118.41654604399963,49.90800753807419],[-118.41631003966826,49.90791145361888],[-118.41605960157591,49.907828491723926],[-118.41579936138513,49.907762365353875],[-118.41553203309388,49.9077177937702],[-118.41525471457771,49.907691184034014],[-118.41497479286284,49.90768020968851],[-118.41469464668765,49.90768109306786],[-118.41441838783805,49.90769015885434],[-118.41413946843646,49.90770469124011],[-118.41386172053788,49.90772269563011],[-118.41358369251648,49.90774238003573],[-118.41330594417018,49.90776038301624],[-118.41302875396568,49.90777503279576],[-118.41275076423986,49.90778397415092],[-118.41247472955443,49.907781176602356],[-118.41219899537074,49.907745055932935],[-118.41193390444957,49.90768706559961],[-118.41167796791093,49.907616145649456],[-118.41142688754121,49.90753708884404],[-118.41117618185726,49.90745578752237],[-118.41092491706557,49.90737784704587],[-118.41066851912727,49.90730971397851],[-118.41040423171209,49.90725742765273],[-118.41012976605577,49.907224220227384],[-118.40985189658046,49.90720094034633],[-118.40957374734005,49.90717934047084],[-118.40929349599884,49.907159854590425],[-118.40902038069251,49.907181560060515],[-118.40875490541475,49.90723092672736],[-118.40849013450739,49.9072865637215],[-118.40822807940263,49.90734690170203],[-118.4079655572554,49.90741003724801],[-118.4077031267628,49.907472617884565],[-118.40736459242406,49.90755081373817],[-118.40710351921992,49.90761573928167],[-118.40684426762385,49.907680230247244],[-118.40658328533574,49.9077446002657],[-118.40632403227546,49.9078090899892],[-118.40606477848394,49.90787357909378],[-118.40580379399513,49.90793794723893],[-118.4055445387394,49.90800243510134],[-118.4052835527829,49.90806680199629],[-118.40502429606298,49.90813128861676],[-118.40476503861186,49.90819577461813],[-118.40450395654415,49.908260702851464],[-118.40424469762554,49.90832518761052],[-118.40398370799737,49.90838955138153],[-118.40372444761461,49.9084540348985],[-118.40346509406763,49.9085190720673],[-118.40320573829202,49.908584117556394],[-118.40294619689942,49.908650270966525],[-118.40268656082199,49.908716986965985],[-118.40242865397616,49.908783822737675],[-118.40216901638537,49.908850537498786],[-118.40190956443352,49.9089161341604],[-118.40165029814044,49.90898061272422],[-118.40138976639861,49.909042181036014],[-118.40112605432982,49.909101827210314],[-118.40086271441929,49.90915923779307],[-118.40059783027658,49.9092154098406],[-118.40033313191962,49.90927046376846],[-118.40006679688919,49.90932483341509],[-118.39999980365086,49.909338257050265],[-118.39973365278931,49.9093915173477],[-118.39946759528276,49.90944421378838],[-118.39919999362046,49.90949567166227],[-118.39893412136472,49.90954724932773],[-118.39866670497766,49.909597588419985],[-118.39839928800181,49.90964792685636],[-118.39813023441678,49.90969758097032],[-118.3978630027644,49.90974680062065],[-118.3975958630435,49.90979546535117],[-118.39732708674035,49.909843445748976],[-118.39705676637526,49.909890187537854],[-118.39678836200136,49.90993593167146],[-118.39651841360413,49.90998043719072],[-118.39624855869727,49.910024378839],[-118.39597715830482,49.91006709079836],[-118.39570603798104,49.910108121414474],[-118.39543482463709,49.91014970562038],[-118.39516543336012,49.9101908553982],[-118.39489267409047,49.91023120922475],[-118.39462066215275,49.91026708357532],[-118.39434621521974,49.910296574629115],[-118.39406797656416,49.91031732691768],[-118.39379015428582,49.91032510268346],[-118.39351157842007,49.91031642901035],[-118.39323542715151,49.91029323657051],[-118.39296324712467,49.9102567455053],[-118.39269952281055,49.910201064312126],[-118.39245495753647,49.910114503738114],[-118.39221661047154,49.91002215377148],[-118.39196069145386,49.90995118800331],[-118.39168622452537,49.90991792557051],[-118.3914088640646,49.9099019875318],[-118.39112972974331,49.909896669115895],[-118.39085148621587,49.90989649465609],[-118.390573056013,49.90989743694742],[-118.39029462579867,49.909898378531324],[-118.39001572959161,49.90990210857942],[-118.38973828254348,49.90990763916535],[-118.38946055462418,49.90991484970204],[-118.38918100401096,49.90992249319008],[-118.38890290397028,49.90993192828403],[-118.38862470970527,49.909941925868885],[-118.38834670205082,49.90995080529393],[-118.38806878691096,49.909959129756906],[-118.3877909657898,49.90996689031898],[-118.38751314457438,49.909974650176636],[-118.38723340651063,49.9099834061485],[-118.38695684892555,49.90999407438829],[-118.38667818617704,49.91000686512913],[-118.38640069442046,49.910023119218586],[-118.38612427795911,49.91004340879934],[-118.38584893672127,49.91006773387938],[-118.38557294213575,49.91009596486737],[-118.38529849039679,49.910125433271176],[-118.38502394564422,49.910155455240535],[-118.38474911955228,49.91018715716139],[-118.38447583624752,49.910220096514955],[-118.38420236571432,49.910254152631694],[-118.3839303437615,49.910290009387886],[-118.3836563118589,49.910327416475404],[-118.38338545997026,49.91036673596062],[-118.38311432657548,49.91040773541008],[-118.38284454895768,49.91045108977586],[-118.38257448976755,49.91049612410919],[-118.3823057877787,49.910543504430464],[-118.38203843996376,49.91059324862824],[-118.38177226238031,49.91064645627433],[-118.38151132058756,49.91071021207048],[-118.38125898323347,49.9107853028171],[-118.38101206977453,49.91086981541784],[-118.3807726839455,49.910961635762774],[-118.3805391898709,49.9110600799709],[-118.38031340873177,49.91116472350943],[-118.38010595814046,49.91128533326375],[-118.37992567212594,49.91142141351369],[-118.3797499215681,49.911561762253044],[-118.37956799758963,49.911697157924365],[-118.37937634737602,49.91182791323384],[-118.3791830587526,49.91195799317717],[-118.37897270089087,49.9120750157711],[-118.378728862398,49.91216199947401],[-118.37847071413337,49.91222989598128],[-118.37820442862831,49.91228365802958],[-118.37793183040573,49.91232284315664],[-118.37765703209479,49.912343795283725],[-118.3773781657348,49.91233676124435],[-118.37710930515263,49.912290858001455],[-118.37686896790689,49.91220002581852],[-118.3766985330535,49.91205755850415],[-118.37658968072314,49.91189225006998],[-118.37654063140188,49.911714729685784],[-118.37657738159167,49.91153698712429],[-118.37667220553453,49.911367812498234],[-118.37679550240168,49.91120628741579],[-118.3769203428854,49.911045991447864],[-118.3770452752519,49.91088514105589],[-118.37718348568312,49.91072860912073],[-118.37732323815459,49.910573315201255],[-118.37745644373665,49.91041530305231],[-118.3775697293833,49.91025081729428],[-118.37765781408964,49.91008004094],[-118.37771349550465,49.90990418047487],[-118.37775725376241,49.909726357024226],[-118.37776814257128,49.90954623864711],[-118.37772792791168,49.90936820470188],[-118.37766821601025,49.90919164013411],[-118.37757559011477,49.90902351253042],[-118.37745033028006,49.90886215012791],[-118.3773139438237,49.90870453255411],[-118.37717363172956,49.908549462314326],[-118.37702775536378,49.90839627329138],[-118.37687823466324,49.90824395094562],[-118.37672862070654,49.90809219155216],[-118.37656961025037,49.90794429766046],[-118.37639133757985,49.907806933016005],[-118.37619380424155,49.90768008859127],[-118.37599454212618,49.90755312297749],[-118.3757949070601,49.90742839185151],[-118.37559363748528,49.90730297633558],[-118.37539994232519,49.907174137154996],[-118.37521784238572,49.907038763688],[-118.37504935029908,49.90689528725212],[-118.3748903494357,49.90674739068198],[-118.37473883008792,49.90659662486881],[-118.37460044857825,49.90644056322251],[-118.3744603396886,49.906284371593244],[-118.37430901035228,49.906132487654574],[-118.37413678349539,49.9059904485854],[-118.3739228996631,49.90587772287684],[-118.37368077836574,49.90578732525011],[-118.37342968096934,49.905708735451675],[-118.37317171128961,49.905639839411],[-118.37291327540699,49.90557373187171],[-118.37265530726683,49.90550483460268],[-118.37239743270729,49.90543538247286],[-118.37213918620888,49.90536815565615],[-118.3718759824938,49.90530963487246],[-118.3716017923026,49.90526447248183],[-118.3713469131694,49.90519804872965],[-118.37111447938291,49.90510209942646],[-118.37088508480845,49.904998457429556],[-118.37066209773097,49.90488790985236],[-118.370447247958,49.90477057763004],[-118.37024581609643,49.90464627820766],[-118.37006145176483,49.90451411815624],[-118.36989480772534,49.90437019995969],[-118.3697378420381,49.90422074463465],[-118.36958106604082,49.9040701626843],[-118.36941652918944,49.90392412972418],[-118.3692362839514,49.90378830344699],[-118.36902181586244,49.90366874233173],[-118.36879757877782,49.90355527179205],[-118.36859204294777,49.90343463380847],[-118.36843541123307,49.90329367361105],[-118.36834264403284,49.90312665427944],[-118.36828363244238,49.902946167617706],[-118.36821714104853,49.902768549432416],[-118.36810067254034,49.90260722539179],[-118.36793605282779,49.9024617441621],[-118.36774497106985,49.90232798757112],[-118.36754767258682,49.90220000918208],[-118.3673482711391,49.90207414432667],[-118.36714667385647,49.90195094723964],[-118.36693951282072,49.90182963069481],[-118.36673015593884,49.901710981883724],[-118.36651677920409,49.90159544301762],[-118.36629709127666,49.90148624539622],[-118.36606552878725,49.90138526093587],[-118.3658297591147,49.90128850374097],[-118.36559179345294,49.90119441415046],[-118.36534531792509,49.90110934271737],[-118.36512937446756,49.90099871297017],[-118.3649458815764,49.90086151969727],[-118.3647944145109,49.90071073892214],[-118.36465599185648,49.900555217707534],[-118.36453080079824,49.90039383867211],[-118.36442940591242,49.900226210399055],[-118.36433256157713,49.900000112759564],[-118.36427090390062,49.899825089309076],[-118.3642057876103,49.8996498237852],[-118.36413155668554,49.899476742284115],[-118.36404839700326,49.899304736299804],[-118.3639651435555,49.89913329339583],[-118.36387469248945,49.898963038046965],[-118.36377867899513,49.898794654425565],[-118.36366999782229,49.89862877591925],[-118.36355201518711,49.89846619875468],[-118.36342683374185,49.89830481799652],[-118.36329599574037,49.898145872062855],[-118.36316132659495,49.89798890982647],[-118.36302291773059,49.89783338596934],[-118.36287913410891,49.89767861627425],[-118.36273525705747,49.897524409541866],[-118.362593111927,49.8973703146728],[-118.36244741445624,49.89721654071797],[-118.36229961389334,49.89706488036581],[-118.36214269809396,49.896915412667894],[-118.36197793049429,49.896771038783136],[-118.36180002693554,49.89663196769222],[-118.36160650873667,49.89650254800839],[-118.36139690981778,49.896385559815776],[-118.3611736129815,49.896277226485594],[-118.36094793134248,49.89617268710128],[-118.36071000233811,49.896078586249864],[-118.36051899049008,49.896017732892],[-118.36027972991845,49.89585853606836],[-118.36005634386876,49.895750763566326],[-118.35983688680638,49.895640434692204],[-118.35961570142777,49.89552998429029],[-118.35939414235699,49.89542176827798],[-118.35916875083294,49.89531554449675],[-118.35894097587799,49.895213105675325],[-118.35870726279137,49.89511478175051],[-118.35846906204803,49.89502235650484],[-118.35822464423427,49.89493570881752],[-118.35797601750765,49.89485329701853],[-118.35772664350327,49.89477534540478],[-118.35747315493909,49.89470106645867],[-118.35721555177417,49.89463046015278],[-118.35695738859543,49.89456319656565],[-118.35669684005015,49.89449972669705],[-118.35643572988266,49.89443960847191],[-118.35617069237045,49.89438204539328],[-118.35590453225944,49.894331177262266],[-118.35563046576124,49.894296152161616],[-118.35535414999335,49.89427453542881],[-118.35507661511112,49.89426018570338],[-118.35479973735956,49.894241919833675],[-118.3545818020597,49.89421647706905],[-118.3542466286269,49.8942223895983],[-118.35396960566835,49.89421541698069],[-118.35368991591224,49.89421390958977],[-118.35341171656766,49.89422437224355],[-118.35313626565552,49.8942497330796],[-118.35293598939307,49.8942441740472],[-118.3530564908157,49.89404742606948],[-118.35320235816988,49.893876757872],[-118.35336261151204,49.89372461666664],[-118.35356570967288,49.89359865828567],[-118.3537211881965,49.89345410503846],[-118.35377039931565,49.89327553324695],[-118.35377964939092,49.89309529204427],[-118.35381137978212,49.89291662592503],[-118.35387231974191,49.89274113694272],[-118.35393325923414,49.89256564788428],[-118.35399756374169,49.892390955312436],[-118.35406023152183,49.8922155872599],[-118.35411434567713,49.892039059093314],[-118.3541581785806,49.891861240727174],[-118.35421565737352,49.89168550898329],[-118.35430379351311,49.89151474706936],[-118.35443692861334,49.89135732196738],[-118.35460777357228,49.89121496588757],[-118.35479777350737,49.891083565878745],[-118.3549940322168,49.89095656555742],[-118.35519202052177,49.89082967706517],[-118.35522516594098,49.89080938795117],[-118.35267594821089,49.875131137546646],[-118.34554068146969,49.855151842851534],[-118.35354944943015,49.84249110996028],[-118.35368324658762,49.84231846328208],[-118.35370740850215,49.84217430598737],[-118.35370332930474,49.84202138371568],[-118.35369925013453,49.841868461411565],[-118.35366523335702,49.84164390916012],[-118.35364522423764,49.84141919978795],[-118.35364036416217,49.84123965705328],[-118.35362182172031,49.84106876032905],[-118.35361696327217,49.84088920856635],[-118.35361357122157,49.84076346955984],[-118.35360707845325,49.84058324226501],[-118.35361599522273,49.840394490039834],[-118.35361100086045,49.84020532264206],[-118.35364939621222,49.84007007802958],[-118.35378364379962,49.839915553031844],[-118.35386428332629,49.839788925115215],[-118.35392896090165,49.83965326289251],[-118.35395458885678,49.839562908958136],[-118.35394881188681,49.83934712098974],[-118.35395727056512,49.83914023707534],[-118.35393725960844,49.838915535918865],[-118.3539319422259,49.83871786122625],[-118.35393899551175,49.83851936288759],[-118.35393413459242,49.83833981944619],[-118.35394552798319,49.83824055227715],[-118.35402547717779,49.83808674031082],[-118.35415971768326,49.83793221442791],[-118.35437821459082,49.83778586041992],[-118.35441977061879,49.83776729339295],[-118.35448659818279,49.83771262713021],[-118.3546104856774,49.83763029650424],[-118.35484321346041,49.83749285449881],[-118.35488235442924,49.83744698247603],[-118.35490618647641,49.83729432594917],[-118.35490233285839,49.83715046391296],[-118.35490118712372,49.83710515779933],[-118.35489632408085,49.836925605109414],[-118.35487924641922,49.836808520656994],[-118.35484784245781,49.83668307749619],[-118.35482828796187,49.836476489261194],[-118.35482512204072,49.83635981075758],[-118.35482204901149,49.83624257795018],[-118.3548341273422,49.83617049410585],[-118.35487101771973,49.83604418838961],[-118.35490940586314,49.83590894255668],[-118.35490555235157,49.83576508024486],[-118.35491547377124,49.83561200839845],[-118.3549101510527,49.83541434179026],[-118.35490538102698,49.83523423439514],[-118.35489902022319,49.835063621333354],[-118.3549229453446,49.83491040107358],[-118.35494687030595,49.83475718077616],[-118.35497079510725,49.83460396044103],[-118.35501087870551,49.83453158880539],[-118.35511641060492,49.83435017376878],[-118.35518280384085,49.83421463093709],[-118.3552750183825,49.83406054774907],[-118.35538387976906,49.83394268232237],[-118.35549110792167,49.8338241323938],[-118.35559654193042,49.83364327994393],[-118.35568979309858,49.83346213362855],[-118.35578246302414,49.833326172390045],[-118.35586285610806,49.83319048057618],[-118.3558998629877,49.83300086622908],[-118.35590681401005,49.832802920481974],[-118.35591549046413,49.83260510476087],[-118.35599611122869,49.83247847399253],[-118.3560891019632,49.83235101036062],[-118.3561839541833,49.83223329227409],[-118.35630302029843,49.83203360451919],[-118.35634140085314,49.83189835743319],[-118.35636724762412,49.831817072190944],[-118.35637978118122,49.8317631103085],[-118.35645775451717,49.83160011276427],[-118.35653745424528,49.83143723625852],[-118.3566010999552,49.83126588894877],[-118.35659894203117,49.83118489160038],[-118.35664962307071,49.83098662992525],[-118.3567008306672,49.83086867226388],[-118.35675367058296,49.830751398917634],[-118.35686160229307,49.8305972862786],[-118.35696780636619,49.83044305237609],[-118.35703349985833,49.83028032377599],[-118.3570974659849,49.83011747397767],[-118.35716283465923,49.829946247150204],[-118.35717251771693,49.82978411255639],[-118.35718047382574,49.82962185680418],[-118.35719185801393,49.829522588099586],[-118.35719038631369,49.829468783449954],[-118.35721475998031,49.82933368413398],[-118.35725313558142,49.829198436222605],[-118.3572777384957,49.82907239816096],[-118.35732701132127,49.828882512560924],[-118.35739237887277,49.82871127636327],[-118.35743029421964,49.828557905623406],[-118.3574377899928,49.82837752692291],[-118.35744668860372,49.82818877119779],[-118.35744066851343,49.827963909744916],[-118.35743464698503,49.82773905716186],[-118.35743225815332,49.82764899809803],[-118.35742816781585,49.827496072892004],[-118.3574237535854,49.82733464954715],[-118.35742159439208,49.82725365177402],[-118.3574170181367,49.82714535778685],[-118.35738609986846,49.82697528236584],[-118.35738152372478,49.82686698833543],[-118.35737959421344,49.82679505185612],[-118.35737812238034,49.82674124700568],[-118.357377663211,49.826723124309865],[-118.35737550412802,49.82664212646721],[-118.35738509141255,49.82648055434707],[-118.35747753929998,49.82627277494527],[-118.35750096531072,49.826164183620904],[-118.35749687487646,49.82601125810271],[-118.35750678552613,49.82585818395422],[-118.35750292470402,49.825714319732036],[-118.35751283526923,49.82556124551994],[-118.35699671000526,49.822384067065315],[-118.35369978075299,49.82208488959425],[-118.34486872148916,49.82107746925169],[-118.3369149217838,49.821089291832486],[-118.33152777827982,49.82121225947115],[-118.32868590699398,49.82099183062615],[-118.32763422625975,49.82076343177399],[-118.32620980418297,49.81951033181733],[-118.3233757275581,49.81774856197744],[-118.32099442441674,49.81695146563613],[-118.31639892845101,49.81627518989932],[-118.31303749836998,49.81582261732492],[-118.31109107908152,49.815597612912136],[-118.30896766697673,49.81434973846351],[-118.30745520781649,49.811550014759796],[-118.30585580950456,49.80818946421155],[-118.30584465848212,49.80767530475148],[-118.30284363381813,49.806995098670484],[-118.29904020870165,49.806599563007346],[-118.29710205079199,49.80574839917599],[-118.29602747946535,49.80375398438102],[-118.29637885986357,49.801919809125714],[-118.29840712166686,49.79900560120126],[-118.30016502782317,49.797693251569605],[-118.30086896954114,49.79592074097152],[-118.29715051579302,49.79461285837937],[-118.29238000062124,49.79399478823065],[-118.28874995242698,49.79348894988124],[-118.28751373828182,49.79303443080589],[-118.28680391559426,49.79194433771247],[-118.28501770402406,49.785898945497635],[-118.2842139500306,49.782306937245814],[-118.28376056058121,49.77870807399931],[-118.28657820948716,49.7744250931398],[-118.29115526094495,49.771047006544684],[-118.29317682467,49.76899408315734],[-118.29449807806037,49.766705512806645],[-118.29325284231786,49.76465300637166],[-118.29299326280017,49.76453679394625],[-118.29078199099717,49.76299877231894],[-118.28882553625796,49.760034052510385],[-118.28872936348972,49.75729502388266],[-118.28872454621451,49.75484178999584],[-118.28951265235368,49.752899940806415],[-118.29091633585658,49.750782896874895],[-118.2925844294058,49.74866931409719],[-118.29397949653945,49.74627059547673],[-118.29450455486514,49.74381757200681],[-118.28964571919819,49.741768892413866],[-118.28709115159864,49.74194226879358],[-118.28717275324044,49.74228562930634],[-118.2840885335239,49.742290182335644],[-118.28108610027698,49.74023990301195],[-118.28027218734768,49.737044924187174],[-118.27983359534535,49.733280004664884],[-118.27867366175671,49.730483366838435],[-118.27751746212942,49.72865674619526],[-118.2763690834323,49.725462771706],[-118.27653436951202,49.72192330497924],[-118.27731680016032,49.718445212972945],[-118.2771302418223,49.71781557894944],[-118.27509674265305,49.71656213010579],[-118.27245076776762,49.71439479657632],[-118.27111662372805,49.71131411155792],[-118.2703093144248,49.70949007663358],[-118.27012826867163,49.70560976042241],[-118.2698589838508,49.702582135533405],[-118.27011033556037,49.700928955470665],[-118.27037886549701,49.69876126343141],[-118.27267080638212,49.69864383736878],[-118.27442981996107,49.69904095370676],[-118.27574430684201,49.69777722984053],[-118.27512285110689,49.69510005708993],[-118.27527419392793,49.688587142363716],[-118.27614283049739,49.68385170859379],[-118.27630779585877,49.680313151645336],[-118.27744173855876,49.677803179886865],[-118.2767388264063,49.67660122944048],[-118.27363424413198,49.67295384275708],[-118.2723936260847,49.66924278648898],[-118.2714189297608,49.66668111601281],[-118.2686836770832,49.66588573426344],[-118.2631391175767,49.66588936619477],[-118.25528792607619,49.66544708761462],[-118.25229029921707,49.665051621647684],[-118.24779712972192,49.664604117258065],[-118.24497755698839,49.66398022292587],[-118.24207762146612,49.66226859657688],[-118.24224027023617,49.65810073085348],[-118.24212938259345,49.649544283133224],[-118.24078356717735,49.64326576603627],[-118.23972573568385,49.641208318353925],[-118.23970781456897,49.63481880839801],[-118.24058155058898,49.630479943112235],[-118.24250179769247,49.62785160158441],[-118.24689498240147,49.624589579640485],[-118.24900015841304,49.61979346675046],[-118.25002929292543,49.61345777878185],[-118.25108309077436,49.61191495510346],[-118.25308321845137,49.60534601394289],[-118.25228307373301,49.60061189826577],[-118.25147391081907,49.597414389854364],[-118.25173150287317,49.593418716750655],[-118.25304127661026,49.59010967582364],[-118.25328944523379,49.58839269428477],[-118.25134693346942,49.58548455483926],[-118.24809810189318,49.583149751636405],[-118.2449097480476,49.57938924559367],[-118.24411747962418,49.57510955933945],[-118.24285682279194,49.5688312736625],[-118.24257799810003,49.56192636754265],[-118.24282985460835,49.559530826728796],[-118.24519624261181,49.55621712040017],[-118.25055569001333,49.554268734853125],[-118.25476201036321,49.55231624653243],[-118.25581451109652,49.55134850808176],[-118.25631795021685,49.54729156370134],[-118.2571807268136,49.54192652005857],[-118.25805328078464,49.53798587834062],[-118.25875170589556,49.5358196379742],[-118.26338841528984,49.53204124878604],[-118.27057467571365,49.52837527833134],[-118.2742585888729,49.52637129430514],[-118.27688864348899,49.52476937893068],[-118.27697837363613,49.524483352674835],[-118.27563759908068,49.51866331802322],[-118.2743862595693,49.51346953604108],[-118.27481096638145,49.50895993769529],[-118.27646168906219,49.505992753430625],[-118.28135527045909,49.50107024158266],[-118.28153269259484,49.499930659948824],[-118.28414490272938,49.49478521402783],[-118.28456108758863,49.49073311277701],[-118.28366541864978,49.486395028052414],[-118.28312540161458,49.48365937523352],[-118.28003672513967,49.47858533969866],[-118.27940097769444,49.47328081888777],[-118.28027769346048,49.471279849820384],[-118.27832634673582,49.468774165123655],[-118.27577781655478,49.46734862691454],[-118.27568269766705,49.465353993930016],[-118.27075462036399,49.46050992287034],[-118.2638910397971,49.453905033022515],[-118.25930971157892,49.448826764650484],[-118.25535781903194,49.447182036513865],[-118.25314485282048,49.44261969496606],[-118.25655461829177,49.440726383542035],[-118.25864759249063,49.436275388348896],[-118.25888495760626,49.43164803489186],[-118.26062364192482,49.42765218314099],[-118.26500553797634,49.42433481660103],[-118.26981296441201,49.423183990654096],[-118.27261223958646,49.42260400657735],[-118.27454264227629,49.42191679073572],[-118.27347758855556,49.4199233014911],[-118.26988942639895,49.41901294143772],[-118.26523834106793,49.417254899404064],[-118.26426729576966,49.41668462400947],[-118.26136458199318,49.414747602496575],[-118.25820115500515,49.410818439159854],[-118.25686571236992,49.40648285585879],[-118.25602405262572,49.403290123784295],[-118.24554417198965,49.403290407800874],[-118.24350789867854,49.400000028229044],[-118.21818200635526,49.35909529081233],[-118.21845790394713,49.35911068544353],[-118.21885064766977,49.35911018961947],[-118.21900059000059,49.35906216917792],[-118.21924761424737,49.358982110871445],[-118.21949463613143,49.35890206093583],[-118.219752736978,49.35883836380188],[-118.22002701920967,49.35881204724743],[-118.22029717487862,49.35883070743754],[-118.22056324262903,49.358883863474595],[-118.2208328467567,49.358916053275244],[-118.22110524475,49.35894193475816],[-118.22138019969485,49.35896291216845],[-118.22165452886266,49.35897734347832],[-118.22192801208828,49.35899679188586],[-118.22240321171365,49.35904071036363],[-118.22240332164236,49.35128432955952],[-118.22266997858691,49.351231150007656],[-118.22289991464777,49.35114957185825],[-118.22298982705071,49.350975275631],[-118.22310889212193,49.35081270708841],[-118.22323935162409,49.350654355805155],[-118.22337308734018,49.35049708280239],[-118.22350686737725,49.35033954126203],[-118.22363404860434,49.3501801019749],[-118.22374636977715,49.35001647577721],[-118.22384553965948,49.3498487860228],[-118.22393981659849,49.34967933980656],[-118.22404069368376,49.34951177309815],[-118.22414655419314,49.349345416958],[-118.22425744481234,49.34917999409163],[-118.22437640736028,49.349017978280116],[-118.22451483521337,49.348863595750245],[-118.22468569158147,49.34872201886328],[-118.22486457135201,49.348584135077076],[-118.2250450184692,49.34844720610269],[-118.2252648460126,49.34834340186894],[-118.22551374597825,49.34826205591459],[-118.22575137879642,49.348165465484946],[-118.225973477154,49.348058428833724],[-118.22614200566109,49.34792035769765],[-118.22628370133084,49.34776705104717],[-118.22641276287267,49.347606613080686],[-118.22653702637106,49.34744385519509],[-118.22666447252188,49.34728273007288],[-118.22680464282291,49.347128190197346],[-118.22696708473956,49.34698515222545],[-118.22715820740459,49.34685663147946],[-118.227369984924,49.346738943535996],[-118.22758774869756,49.34662677504105],[-118.22780817512465,49.346519324897294],[-118.22804237717627,49.346422482686435],[-118.22827320791552,49.34632511618831],[-118.22849063762469,49.34621490468103],[-118.22867429199805,49.346079342669],[-118.22880282383991,49.34592196945916],[-118.22890704394626,49.34575492996847],[-118.2290129717945,49.34558801356562],[-118.22912374264689,49.345423139352285],[-118.22923778807638,49.34525935223561],[-118.22935676983603,49.345097052715005],[-118.22948386984297,49.3449378825883],[-118.22963413284762,49.34478491863916],[-118.22975444389913,49.34462497795448],[-118.22977019612472,49.3444492848058],[-118.22965523788871,49.344289921020724],[-118.22961973564882,49.344110540139795],[-118.22967677229877,49.34393613149959],[-118.22978592179591,49.343770578411345],[-118.22989678044186,49.34360513944357],[-118.22998086693185,49.343434383570354],[-118.23003818303906,49.34325830190535],[-118.23008709826732,49.343080763295596],[-118.23013762813902,49.34290390240074],[-118.23018136924372,49.34272628024703],[-118.23021656959627,49.34254803302717],[-118.23024498285409,49.342369015618864],[-118.23027367903256,49.342188316548835],[-118.23029905163285,49.34200681642973],[-118.23020701264632,49.34184485930666],[-118.23002869006356,49.34170242658035],[-118.22983971073143,49.341571944769065],[-118.22963935128193,49.34144744075971],[-118.22943292652292,49.341328157130555],[-118.22921636154037,49.341217756234],[-118.22902179002746,49.34108970291222],[-118.22884623238527,49.34095142337651],[-118.22868779195288,49.340803912565896],[-118.22853494894811,49.34065397151132],[-118.22837257572141,49.34050929067785],[-118.22818938911762,49.34037526663412],[-118.2279947757748,49.340247497534556],[-118.22780438152684,49.340115215975956],[-118.22761422338105,49.339981538681855],[-118.22740288726695,49.339870949119074],[-118.22715090363961,49.33980664953573],[-118.22687523313256,49.339770063722895],[-118.22660548792847,49.339729097378935],[-118.22633716820238,49.3396899352352],[-118.22606549373647,49.33966042569143],[-118.22579405468468,49.33962952009306],[-118.22555002481111,49.33954881531399],[-118.2253153710165,49.339453513454906],[-118.22508498312047,49.33935342180456],[-118.22486857788009,49.339242180021905],[-118.22465013689788,49.339132764427404],[-118.22442349856584,49.339030959035405],[-118.22418870804032,49.338936495457816],[-118.22395401342425,49.33884146784284],[-118.22375306966988,49.33872058395931],[-118.22356819527917,49.33858642841674],[-118.22338711520794,49.33845028300425],[-118.22320973448605,49.33831271125384],[-118.22304188464743,49.3381698881106],[-118.2228983632689,49.33801608279393],[-118.2227416600013,49.337868685954376],[-118.22255466016888,49.33773691863012],[-118.22236775486142,49.33760459638729],[-118.22218663391514,49.33746873499448],[-118.22201670674936,49.33732801396282],[-118.22175646311652,49.3372820616696],[-118.22148096421006,49.3372548162067],[-118.22120447811399,49.33723342878928],[-118.22092867361874,49.33722851297814],[-118.22065269415167,49.337234891690244],[-118.22037804581774,49.337243629226414],[-118.22010287867374,49.33725544302056],[-118.21982871233661,49.33727157452437],[-118.2195554999835,49.33729230102853],[-118.21928333654023,49.33731705902857],[-118.2190105122664,49.33734573408716],[-118.21874534566068,49.33739051567078],[-118.2184771860135,49.33743253636955],[-118.21820554989108,49.33746440973717],[-118.2179316297932,49.33748931821008],[-118.2176551762475,49.337498488932106],[-118.21740270016302,49.33743724335345],[-118.21723169190508,49.33729275987497],[-118.21718704168343,49.33711667368802],[-118.21718836021253,49.33693456548962],[-118.21720481664536,49.33675496336255],[-118.21723161525023,49.33657554712494],[-118.21725675379277,49.336395721187756],[-118.21727856942638,49.33621509379686],[-118.21730375435057,49.336034990468775],[-118.21734070575087,49.335856878020785],[-118.21739607035971,49.33568235029158],[-118.21748161457253,49.33551339817558],[-118.21759406218997,49.33534894293105],[-118.21771818352323,49.33518702404702],[-118.21784235225248,49.3350248187529],[-118.2179581667868,49.334860887109826],[-118.21808076599952,49.33469772620462],[-118.2181865190491,49.33453193572839],[-118.21824501146202,49.33435933561872],[-118.21825463070819,49.33417923903205],[-118.21825072734242,49.33399731438374],[-118.21825688216992,49.33381725712438],[-118.21826987055474,49.333637684478646],[-118.21828632011712,49.333458090246175],[-118.21830447907121,49.33327861041959],[-118.21832263788467,49.33309913054174],[-118.21833738056148,49.332919403811104],[-118.21835036687466,49.332739839859194],[-118.21836164661042,49.332560143512424],[-118.21837121677245,49.33238033266045],[-118.21838249633987,49.332200636214694],[-118.21840245589144,49.3320207248638],[-118.21837374494459,49.33184238517451],[-118.21833288854532,49.33166430865383],[-118.21829023252519,49.33148665429468],[-118.21824766882209,49.33130845424524],[-118.21817128996844,49.33113600441341],[-118.21808973964987,49.33096347049835],[-118.21800268916685,49.330792802431866],[-118.21790653574371,49.330624862528644],[-118.2177814519127,49.33046446509881],[-118.217643567596,49.33030822157609],[-118.2175073438424,49.33015238748581],[-118.21736941311724,49.329996429770866],[-118.21723138830498,49.32984103535965],[-118.21709160978854,49.32968579460059],[-118.21695358834113,49.3295303908178],[-118.21681385844776,49.32937487234185],[-118.21667764022743,49.32921903698867],[-118.2165414711884,49.32906291519714],[-118.21648639591469,49.32888720406099],[-118.21646324162568,49.328706719859085],[-118.21643112453181,49.328528131907184],[-118.21636528601866,49.328354748012],[-118.21627834180929,49.32818351437467],[-118.21618063251049,49.328014616988746],[-118.21606675275032,49.32784935817485],[-118.21594158925888,49.32768951252259],[-118.21580338755638,49.32753523384084],[-118.2156525263331,49.32738427696165],[-118.21549593032698,49.327236581049455],[-118.21533392840352,49.327090196135096],[-118.21517003117354,49.326944805582514],[-118.21500589813553,49.3268008190688],[-118.21482863515041,49.32666294494545],[-118.21464573101365,49.3265277771012],[-118.21446064800372,49.32639528514966],[-118.2142700656674,49.326264658632425],[-118.21405981514091,49.32614816405896],[-118.21379495334192,49.32610949422981],[-118.21351589541398,49.32610374896929],[-118.21323929970299,49.32609365412503],[-118.21297453395947,49.3260544187675],[-118.21272349348703,49.325985057327955],[-118.21247874682096,49.32589888477569],[-118.21224049139028,49.32580497827194],[-118.21201167037142,49.32570638454528],[-118.21180683338495,49.32558858334405],[-118.21160043159195,49.325469817425905],[-118.21139028494905,49.325352762952825],[-118.21115696897012,49.325260342605006],[-118.21088917016507,49.32521862783681],[-118.2106137332434,49.32522218136416],[-118.21033801101028,49.32522742473103],[-118.21006314962607,49.325237808881354],[-118.20979389972536,49.32526615370486],[-118.20953317113306,49.32532594272248],[-118.2092653084309,49.3253665459733],[-118.20899616176806,49.32540451156401],[-118.20872440242006,49.32543747082739],[-118.20848380343064,49.325521357589416],[-118.20824230827208,49.32561054797031],[-118.20799216024986,49.325679310948864],[-118.2077162568616,49.325695843027454],[-118.20744262720572,49.325709143744845],[-118.20716485587218,49.325706019100934],[-118.20689446383706,49.32567966131134],[-118.20663438538473,49.3256229309957],[-118.20637799807315,49.325554579376586],[-118.20611867755707,49.325493366563066],[-118.20584473868976,49.32547778601326],[-118.20557344301092,49.32544655173052],[-118.20530346924413,49.32540749024905],[-118.20504083774509,49.325355659329254],[-118.2047950226868,49.32527590046286],[-118.20455195384858,49.32519011971975],[-118.20432950328755,49.32508460855797],[-118.20410937620264,49.32497558010508],[-118.20390873315104,49.324853538776416],[-118.20374691664144,49.32470630413541],[-118.20360326532627,49.32455386547551],[-118.20366436577108,49.32438654480238],[-118.20373965806941,49.32411471870387],[-118.2000001512669,49.32463047829351],[-118.18933341097788,49.326100465794624],[-118.1762251979872,49.30000001717016],[-118.175737230922,49.29902540796294],[-118.17569194145977,49.2989358058856],[-118.16540456391843,49.27822338207022],[-118.14579657094164,49.26851215368962],[-118.14463921716062,49.26990706750609],[-118.14254308072411,49.272080368194665],[-118.13913726102034,49.27293710374553],[-118.13668944121684,49.27059839586214],[-118.13529606583178,49.268720752590255],[-118.13432327418326,49.26672610785234],[-118.13048111901557,49.26381881491182],[-118.12720281253264,49.26311783388512],[-118.12488358304651,49.262624816828314],[-118.12304676832144,49.26262412416746],[-118.11597527314764,49.26246184366676],[-118.11124738675049,49.25989715969977],[-118.10819071346855,49.257900651371514],[-118.10329386004193,49.25430881365661],[-118.09996718789043,49.250663706004836],[-118.09813799191485,49.249408803014155],[-118.09166366183841,49.24633084407623],[-118.0872129983995,49.24393749527125],[-118.08686301290854,49.2434815321999],[-118.08065229357041,49.23669584658453],[-118.07532015565108,49.2282563991896],[-118.0745341518095,49.22688258044863],[-118.07182312704211,49.22152078546667],[-118.06910757640998,49.21296860045687],[-118.0676304169782,49.20766052421663],[-118.06761809584974,49.2012123531235],[-118.06857318541172,49.19499439033517],[-118.06979829988651,49.19025800851403],[-118.07345442842538,49.18557720477841],[-118.07641517164886,49.182377395652054],[-118.07657968727808,49.17924000613398],[-118.0716079653498,49.17679061946379],[-118.06899974356207,49.176563333255],[-118.06786338474667,49.17667775832709],[-118.05992554876134,49.17536971065432],[-118.05242510410318,49.17400539681164],[-118.04823213025516,49.17200819882502],[-118.04657553386242,49.16921122191984],[-118.04570548776478,49.165848621761526],[-118.04465645787158,49.16128152695739],[-118.0432622226782,49.15888631012302],[-118.03924907547832,49.15649400896644],[-118.03602200200135,49.15369987811991],[-118.03819724724801,49.15050430014628],[-118.04682874430452,49.14878787059066],[-118.05528467304035,49.14752855422009],[-118.0618220979141,49.147411464846805],[-118.05676372333679,49.14484811153405],[-118.05266078471439,49.14153662261376],[-118.0526614118056,49.14097050502921],[-118.05083005663121,49.135261083315086],[-118.05055850622539,49.127445854500635],[-118.0492561750047,49.122028848790045],[-118.04854851482682,49.118606404645746],[-118.04907764982443,49.11592173122405],[-118.05194765222083,49.1126732719736],[-118.05167433444784,49.1085636699734],[-118.05098537101803,49.107362044801825],[-118.05159003897374,49.104395598951335],[-118.05358676737148,49.10085581062107],[-118.0522843546188,49.096807384049285],[-118.05228082030861,49.09578342551973],[-118.05080017409912,49.09213417434792],[-118.05227239427208,49.08916326916844],[-118.05322660115326,49.08608227731833],[-118.0511264012623,49.08163306066189],[-118.0486885160796,49.07706918959187],[-118.04790788280397,49.074558606720245],[-118.04825168661422,49.07239086184056],[-118.04982320754542,49.06947996533284],[-118.0508548699699,49.06690918811944],[-118.05077197929157,49.06337624639228],[-118.05138413792942,49.06229094962739],[-118.05076740196169,49.0585824416839],[-118.05155027849823,49.055615457815314],[-118.05389484924552,49.05276276932823],[-118.05310716655296,49.04916892897302],[-118.05066715938032,49.0463132642754],[-118.04831444814003,49.04294927806781],[-118.04717255740823,49.0382157059934],[-118.04716910531981,49.03462195705536],[-118.05100101936343,49.03102454721339],[-118.05508635931423,49.02891557769295],[-118.0568990196453,49.025145302463685],[-118.05611078811123,49.02252072687416],[-118.05506983352878,49.02041048308151],[-118.05507133741867,49.016301740808494],[-118.05801208658909,49.01276105440183],[-118.05957473874813,49.00996679300916],[-118.0598359047411,49.006426591699324],[-118.06000611445265,49.00317747837421],[-118.06408497957354,48.998081252488724],[-117.9986569285472,48.99990734331106],[-117.62727633132124,48.999890564756086],[-117.07487204636551,48.99986781483132],[-116.97481567321815,48.99986059582969],[-116.49633073928747,48.99978469188819],[-116.26295387040425,48.99991480562652],[-116.17432049715948,48.99984466993351],[-115.99720892073319,48.99979504571306],[-115.51682995905334,48.99971466212451],[-115.17530987731412,48.99965904969159],[-114.96202503304163,48.99969806582189],[-114.72194729441438,48.99955992583671],[-114.06922444892692,48.999586687200036],[-114.06219678666805,48.99956484583952],[-114.06396153388391,49.0020080528882],[-114.06435552814848,49.005149237662515],[-114.06369886257556,49.008283768980384],[-114.0622701780023,49.0112434175871],[-114.05742922882399,49.01486615789367],[-114.05292878284673,49.01872251030689],[-114.05062167856047,49.022075427629765],[-114.04961204961704,49.025606073843605],[-114.05130114223147,49.02904005333004],[-114.05419570997643,49.03317157543865],[-114.05457158268224,49.03745339923735],[-114.05587841934506,49.04328065826996],[-114.0586184681848,49.04672780581137],[-114.06325218707086,49.05143033313636],[-114.06869992992004,49.05437993021063],[-114.07283422155143,49.057425979036566],[-114.07521823052049,49.06080996239348],[-114.07906164996128,49.060259616532136],[-114.08334546317576,49.05982866005352],[-114.09341302272337,49.062342352334554],[-114.098259658626,49.06505302732824],[-114.10223363675605,49.06776263221087],[-114.10646126636647,49.071211731617524],[-114.11240443657415,49.075755206671026],[-114.1195117443275,49.078365368487205],[-114.12729906126091,49.0838883612203],[-114.13369939924418,49.087637419419686],[-114.14041027209646,49.09412247238436],[-114.14331608736055,49.098307873466304],[-114.14620687059993,49.10368801172735],[-114.14414115917914,49.10881285457648],[-114.14407352738603,49.113666359952695],[-114.14494639391512,49.119666335789674],[-114.14874571164597,49.12254232815193],[-114.15305314003214,49.12684626559581],[-114.15631747851548,49.131431185285656],[-114.1583589618431,49.13526619601823],[-114.158050378154,49.138522402073946],[-114.15444241326617,49.14078572678789],[-114.14916995935904,49.14304092739018],[-114.1434648817903,49.14551827755275],[-114.14613728597107,49.14776209511451],[-114.14908597819073,49.14914813119675],[-114.15255089964216,49.15133597535042],[-114.15522807840122,49.15334777024342],[-114.1585973206465,49.15650492303989],[-114.16187798170789,49.15898111818697],[-114.16645375624465,49.1632308141481],[-114.17277395273832,49.166802897890236],[-114.18672897104128,49.16899195805036],[-114.20118237364218,49.17249320074763],[-114.20725081883594,49.17543367972078],[-114.20921643433321,49.1790992543867],[-114.2146993272986,49.187864360338885],[-114.22132820266488,49.18949303932758],[-114.22614252165052,49.18843586129871],[-114.23097798908714,49.18571745996646],[-114.23666061121786,49.18517483473809],[-114.23971549704824,49.186162163773346],[-114.24277679529077,49.185600297139004],[-114.2452497456955,49.18298742332619],[-114.24923104028566,49.179525201088104],[-114.25430086757757,49.17909283364544],[-114.260492542429,49.180090932235814],[-114.26362123040909,49.18078851974135],[-114.26990405454382,49.18104771112839],[-114.2761185668791,49.180046495581074],[-114.28239494050268,49.18218758623218],[-114.28400065773988,49.18641730187],[-114.28545535926551,49.189110950400355],[-114.28928841311252,49.190101662418925],[-114.29278058631252,49.19062995651751],[-114.29878691475014,49.19225543812719],[-114.303759925418,49.19324554141565],[-114.30732951382014,49.19434583303414],[-114.30905494962529,49.196580977274266],[-114.31086252858319,49.19898588302944],[-114.3150541598652,49.20026568174145],[-114.3179343491709,49.19970355274713],[-114.32266146288447,49.19909118443438],[-114.32825678815604,49.19894530819028],[-114.33298483872608,49.19810849736025],[-114.33605675168366,49.19629342984374],[-114.3407103922215,49.1945408915215],[-114.3458596665505,49.19456218127111],[-114.34892234602366,49.19514262057372],[-114.35100269428096,49.19669591366345],[-114.3534215642882,49.199218982690866],[-114.35541183041842,49.20162453635223],[-114.36071288814428,49.203412201574],[-114.364557981419,49.20342840904176],[-114.37112086361047,49.20374258533289],[-114.3804512277488,49.20531472262849],[-114.38759741009927,49.207229100246806],[-114.39499031825082,49.21136494914213],[-114.39690016795868,49.21371334070594],[-114.3957413783877,49.21605070918197],[-114.3926585261502,49.21763919044478],[-114.39011222532166,49.21974487449321],[-114.39191866024755,49.22283471769019],[-114.39767132995951,49.22400203103651],[-114.39932530197709,49.225602954261404],[-114.39834662524933,49.22788688934104],[-114.39718076092137,49.23102342182884],[-114.39768762719204,49.23348052301573],[-114.3977432257073,49.23668001635984],[-114.39719183584204,49.23936379037876],[-114.39505503608166,49.2438123622494],[-114.39181168447935,49.244596145775574],[-114.38261450205675,49.245990520253365],[-114.3750758722235,49.248139194080075],[-114.37819188388158,49.25094608727723],[-114.38062398927754,49.25249660306134],[-114.38898049637388,49.25675418625684],[-114.3934441483626,49.2580846328066],[-114.39797796639266,49.25924801075099],[-114.40793342020682,49.26053803869297],[-114.41597884486248,49.260906538026596],[-114.42595584374689,49.26122797185257],[-114.43013968367208,49.26306691284792],[-114.43634546175714,49.263947510030896],[-114.44262791110296,49.265852451065186],[-114.44407391515253,49.27122758682679],[-114.44393775674678,49.276255115619094],[-114.4439985875106,49.279169562368786],[-114.44429756058031,49.28545593887525],[-114.4440990453839,49.28962382712083],[-114.44564744026756,49.29265656108506],[-114.44746795293808,49.294773454470594],[-114.45371174109545,49.302336809901064],[-114.45867967490895,49.30406529121786],[-114.4628684950697,49.30584810443441],[-114.46802373853174,49.3085527184007],[-114.47236996258204,49.311875605693764],[-114.47789457163238,49.31161208537382],[-114.48321810310242,49.31259487533156],[-114.48426283703171,49.31437150959275],[-114.48538198704604,49.31757421109643],[-114.48604854540584,49.32191661916259],[-114.48287316782384,49.324249692640336],[-114.47926999335904,49.32589891649174],[-114.47593536382827,49.3270873057272],[-114.47476941857472,49.33045759061767],[-114.47570079458083,49.334740772520085],[-114.47690928807253,49.33697615639576],[-114.4790687138455,49.34080871264216],[-114.48051712192124,49.34475514857833],[-114.48286839137181,49.34704759994574],[-114.48678295612342,49.350887103043604],[-114.49421535622096,49.353482960936745],[-114.49858863435131,49.35560827719091],[-114.50183686481873,49.35510398048941],[-114.51006949370021,49.35495306745481],[-114.51689539048596,49.356748138568236],[-114.51949488824927,49.359951691047115],[-114.52043326936223,49.36355636726724],[-114.5222528164098,49.36681534090382],[-114.52512471094138,49.3709960145889],[-114.52474575067828,49.37379402981447],[-114.52517727476055,49.37619431434127],[-114.52937365247074,49.37798046714815],[-114.53533458171502,49.378509224230044],[-114.5418361725784,49.37692881145384],[-114.54674207585346,49.37665647842222],[-114.55489376563072,49.3766737595286],[-114.5612786040471,49.37868907465054],[-114.56504254427433,49.38104069229696],[-114.56896616896763,49.38499148445407],[-114.57052229349092,49.38842843299834],[-114.57384315592593,49.390660030739824],[-114.58031947633597,49.39147739583221],[-114.58347511170268,49.39308649829769],[-114.58538130955307,49.39674716874743],[-114.58587861643386,49.40068986640712],[-114.58823159769216,49.40429475024814],[-114.58979258466407,49.40732766449601],[-114.58977662070346,49.410755909791284],[-114.59072182964148,49.41413412443696],[-114.59366042395007,49.420997734685756],[-114.59495539853319,49.42448643560298],[-114.59475721034214,49.428255858004356],[-114.59466079491102,49.430999143094176],[-114.59508437674486,49.432998857473244],[-114.59672799378228,49.43654664381534],[-114.59820325946603,49.44032319294119],[-114.59616472683274,49.44363462000921],[-114.5942981672971,49.445973532957964],[-114.59428554796567,49.44899683024922],[-114.59752109996556,49.45237780025958],[-114.59530911189766,49.45391553895098],[-114.59300929802559,49.456141821495535],[-114.59185573766621,49.45808235304019],[-114.5922732855384,49.461340406551436],[-114.59366802908373,49.46460067968508],[-114.5916293274574,49.46762661539892],[-114.58941365444326,49.46973588401736],[-114.5891394614571,49.471733242934405],[-114.5897363176986,49.4752244701717],[-114.58969140588604,49.481795752726434],[-114.5907096708323,49.48808206945487],[-114.59086470586428,49.49065584852323],[-114.58971052601076,49.4926509844988],[-114.58890096677803,49.49539363741572],[-114.58967158094764,49.49785264242765],[-114.58903899218039,49.50162295007374],[-114.58655042910212,49.504875148989335],[-114.58372906745886,49.507610638403484],[-114.57964796594183,49.513486974882746],[-114.57793813328378,49.517479076824955],[-114.57669153546303,49.52062306473871],[-114.57254872252437,49.52186799823083],[-114.56866828633358,49.5236288800655],[-114.5670609985181,49.526310099922696],[-114.56687709534532,49.5293395468895],[-114.56614385370122,49.533279126915815],[-114.56611160040542,49.53665278716184],[-114.56644487910084,49.53962771844387],[-114.56808863620459,49.54357287283683],[-114.56807373429177,49.546374081453465],[-114.56795857367183,49.54974398953834],[-114.56721821378669,49.554885864721044],[-114.57097596867385,49.55838345101991],[-114.5776499209777,49.56080001038411],[-114.58036208168595,49.56394931886514],[-114.58423432037313,49.5643618138781],[-114.58767401408684,49.561854575091296],[-114.59235119912591,49.560611810994686],[-114.5985270329164,49.55913895949132],[-114.60257242881954,49.5582943479368],[-114.60594088895448,49.55561734894026],[-114.60745271726418,49.55230312195532],[-114.6079133646503,49.54938810941469],[-114.6135552765259,49.547971484548576],[-114.61679489207515,49.54900872292941],[-114.62172741952044,49.54987831668163],[-114.62516011817884,49.548397546107985],[-114.62755823537589,49.546237895611945],[-114.63205481509202,49.544527488886864],[-114.63786060516841,49.54351434177812],[-114.64278354961782,49.543576050813115],[-114.6477124053187,49.54513497714936],[-114.65070036728774,49.546680023590675],[-114.65340378774039,49.549203118094674],[-114.65727090352122,49.551040978893674],[-114.66184014397436,49.552192768818465],[-114.66632730366351,49.55294272715263],[-114.67229649058802,49.55364096680924],[-114.67493610508109,49.55518501772062],[-114.68004226516804,49.55462344174218],[-114.68418667270808,49.55274645335496],[-114.68798352043656,49.550237144209795],[-114.69229653789016,49.547731787714575],[-114.69501575696567,49.55087829138175],[-114.69728863038102,49.55351144966054],[-114.70097053178017,49.55780366714882],[-114.70526779178296,49.56221310793046],[-114.70762548684073,49.56501706980489],[-114.71088015860343,49.567023656765144],[-114.71641357860061,49.57028795167845],[-114.71930696940673,49.57143636948443],[-114.71903531634725,49.57435088132961],[-114.72157574295267,49.57670365722678],[-114.72703091520651,49.57790957933809],[-114.73000715730022,49.5802569638763],[-114.7314995876584,49.5828324317208],[-114.73157361821686,49.588207582670925],[-114.73216450486794,49.5944389849064],[-114.73522292592364,49.59901304355431],[-114.7400628389843,49.6007379295399],[-114.74163790392494,49.60536865993883],[-114.7456790255966,49.60886036331156],[-114.74654211785085,49.612177654624254],[-114.74432610011286,49.61417799776381],[-114.74229248722023,49.61691475460496],[-114.73840663678165,49.62068473339923],[-114.73177932048812,49.62261688930226],[-114.72473116908868,49.62392451305952],[-114.71988354089859,49.624376957151114],[-114.7160029377433,49.625337982183794],[-114.71343722151342,49.62647736128869],[-114.71051374568049,49.630421816179364],[-114.70143174642482,49.63269014824668],[-114.69859379106387,49.63588714543522],[-114.69532810074539,49.63662265240455],[-114.69313474520108,49.63438801695512],[-114.68732612381618,49.632208463961454],[-114.68405648809149,49.634542227097675],[-114.67963413656352,49.63756597093496],[-114.67503153825658,49.63990157419785],[-114.66919307177204,49.643203561873506],[-114.66611269307049,49.64251129286468],[-114.66383826065208,49.63953510926188],[-114.65969362073243,49.63900878600006],[-114.65827140150951,49.64095166697853],[-114.65737720801283,49.643984167918966],[-114.65595125762883,49.64723757045192],[-114.65441910656388,49.652889812879025],[-114.65269632419029,49.66026457757199],[-114.6534712485344,49.66357541613002],[-114.65601061218906,49.66656010533592],[-114.65917287136482,49.66856456079543],[-114.66303182407746,49.67199897129735],[-114.66302344142979,49.674401710774355],[-114.66098486408347,49.67616779360187],[-114.66193942239842,49.679944258398635],[-114.66314810486253,49.683376624864586],[-114.66313960217107,49.685892634419616],[-114.66418383084718,49.688238307828115],[-114.66557880278795,49.69069759429684],[-114.66830569984506,49.69304988516056],[-114.67031774783047,49.69585103781313],[-114.66605325369588,49.70007389853054],[-114.66065382560818,49.703720981613685],[-114.65250329156656,49.70741861055448],[-114.64533841158452,49.709916369327615],[-114.64055650230507,49.712764244386186],[-114.63911482499103,49.71556025406814],[-114.63283096742022,49.71828884598896],[-114.63105100519196,49.72119958196586],[-114.62988981129315,49.72376874935191],[-114.62916633715437,49.72565331060854],[-114.62915420119917,49.72856986999087],[-114.62834527035544,49.73073985009334],[-114.62691804186271,49.73291033172524],[-114.62813105989915,49.7351959981791],[-114.63120819656405,49.73817458993737],[-114.63410784272511,49.73984009678149],[-114.63683688611646,49.74185201980338],[-114.63778041519123,49.745051001122754],[-114.63741802678817,49.74768410652363],[-114.63863193227246,49.74968831548326],[-114.6414462854892,49.75209331274787],[-114.64433669537033,49.75667219098621],[-114.64661797602392,49.75862532068415],[-114.65146832093063,49.761718252990605],[-114.65321223847552,49.76475704052192],[-114.64948358284943,49.76657436894169],[-114.646825040482,49.76759503832785],[-114.6444276040432,49.76976530677991],[-114.64158078887559,49.772157731621796],[-114.63802661177122,49.775523018789514],[-114.63560919295014,49.77928878403964],[-114.63400013957815,49.781225591930145],[-114.63141744209109,49.78384996386514],[-114.63043941537225,49.78607388244183],[-114.63306238779431,49.790714058909025],[-114.63435895014302,49.79351650803214],[-114.6358441433835,49.79837820562144],[-114.63660011130291,49.80261278481219],[-114.63788398043475,49.80895693942755],[-114.63838759001976,49.813020338367835],[-114.64066118467946,49.817659739489564],[-114.64055506741764,49.819603793746616],[-114.63725161743726,49.82302055326447],[-114.63598808501476,49.82604580360633],[-114.63640898198284,49.829820889233275],[-114.63860382408741,49.8333707214998],[-114.6407035291741,49.836120236867124],[-114.64413677083505,49.83978757187431],[-114.64632214467437,49.84219686161686],[-114.64755068939508,49.84505478932564],[-114.64913355958689,49.84711569096877],[-114.65282286123012,49.850384043096454],[-114.65510678999864,49.85296615024192],[-114.65607040197692,49.8551966789695],[-114.65674890223157,49.858455716002425],[-114.66008066168034,49.863724335610186],[-114.66335778412216,49.86453405590361],[-114.66581123495948,49.86785246098174],[-114.66666905303777,49.87214560705465],[-114.66752972567245,49.876089466318774],[-114.66909359988672,49.880152206105244],[-114.67129909856482,49.88198538777265],[-114.6743881878074,49.884513510192335],[-114.67915228200357,49.88806770991799],[-114.68126059571546,49.889615516978886],[-114.68187308427721,49.892018375328526],[-114.68432598052813,49.896197153034365],[-114.68492009114806,49.90036950393603],[-114.684460475034,49.902945805011946],[-114.68373357990093,49.90591492137327],[-114.68306768428813,49.912084910774254],[-114.68303936991435,49.916717171517796],[-114.68381897148325,49.91992110608439],[-114.68520036278409,49.9245566261375],[-114.6852566903488,49.92964158218051],[-114.68488040280816,49.9324479104775],[-114.68495575899911,49.935987690321774],[-114.68848244406337,49.939888246116375],[-114.69059196880511,49.942233047188616],[-114.68809148509489,49.94382741523247],[-114.6839924276601,49.9470187996904],[-114.6823753067431,49.94987640034749],[-114.68137975011912,49.952504962311416],[-114.67922301727278,49.95678573608282],[-114.67768585243392,49.96118389870605],[-114.6766881776547,49.96460908620557],[-114.67374752603565,49.966262743849015],[-114.66878202591046,49.966133919417274],[-114.66123650059353,49.96548328421527],[-114.65821584205338,49.965988109455566],[-114.6518984244562,49.968436197612895],[-114.65028166969941,49.970773870309976],[-114.64822090350633,49.97465619241561],[-114.64685606239811,49.977564285119925],[-114.64746616719644,49.980368171275146],[-114.64806108166714,49.983739670158904],[-114.64830077240879,49.98740140041283],[-114.64721833435277,49.98991430085658],[-114.64797526777879,49.99517420599087],[-114.65018610045247,49.99655450310688],[-114.6536431044905,49.9971914562258],[-114.66195735463856,49.999700249494076],[-114.66098694457497,50.00244457614901],[-114.65939644557179,50.00495640767986],[-114.65701148245934,50.00843790577465],[-114.65435752762447,50.011694422963444],[-114.65311916861141,50.01415181369716],[-114.65260148801319,50.017003584708156],[-114.65295147414038,50.017861948781544],[-114.65252122889693,50.01963283344111],[-114.65217679889226,50.021455912866266],[-114.65218094530857,50.024368286584334],[-114.65228775154569,50.02636471580042],[-114.65263592827863,50.02790646351705],[-114.65408195828873,50.03104522608875],[-114.65559115479914,50.032411847853794],[-114.65604223324014,50.03281169394923],[-114.65782128545334,50.03394853290216],[-114.65951385091392,50.03509226845173],[-114.65969253964178,50.036916250429364],[-114.6588983262201,50.03771466736128],[-114.65801639954411,50.03897521972462],[-114.65802867170108,50.03999701083695],[-114.65918507934683,50.04074228742651],[-114.6602444926281,50.041423380988434],[-114.66292751003336,50.04284820921527],[-114.66443853162806,50.04370257330546],[-114.66594748279061,50.04507291693292],[-114.66775020523048,50.04786647049442],[-114.66712576726383,50.04849533632744],[-114.66606313528285,50.04906669406355],[-114.66304595733752,50.049986868094614],[-114.66063854462465,50.05123847290941],[-114.65949899008478,50.05329921146698],[-114.65906538008686,50.056322963147565],[-114.6596076815393,50.05951650923464],[-114.66104138046725,50.0623718904748],[-114.66380839490812,50.0647636777783],[-114.6653213081623,50.065049563848504],[-114.6686069095891,50.064360323419535],[-114.6729673921913,50.06378491589116],[-114.67429591644765,50.064411209597594],[-114.67573708706375,50.06554772992826],[-114.67875891397334,50.0674908561344],[-114.68036972542676,50.06845936824849],[-114.68518579423275,50.072391953895526],[-114.68599964350615,50.07507431640821],[-114.6863628692672,50.07729619004109],[-114.68886141201382,50.08009003254264],[-114.68914246010395,50.08071956829788],[-114.69048097250551,50.083342976082186],[-114.69237017313382,50.08648095774164],[-114.69468767294651,50.08853134134665],[-114.69753128133505,50.08944223559779],[-114.69825225271477,50.08984184699126],[-114.70004348871467,50.09331771043868],[-114.70317804581326,50.097479991063615],[-114.70666959659391,50.1006137691717],[-114.70925690156572,50.10226991994009],[-114.7115766750961,50.10375094262668],[-114.71657104295758,50.10659808803504],[-114.71898905419427,50.108934059931066],[-114.72061215139915,50.11224166348383],[-114.7217726448932,50.112867979400626],[-114.72552174112234,50.115943792644565],[-114.72802433234378,50.11834165851622],[-114.72752083816235,50.12313482303626],[-114.725830090645,50.12519593343772],[-114.72539003700075,50.12553970943887],[-114.72075318300104,50.14283853125455],[-114.72076368065196,50.14455287914776],[-114.72860300848583,50.144996548621435],[-114.72372992036607,50.150315719230505],[-114.7216951434406,50.154257125815256],[-114.72180147071954,50.15796826210981],[-114.72351003904345,50.16235847270776],[-114.72729766779462,50.1694915333341],[-114.72587660269244,50.17165788389118],[-114.72340073019461,50.17543204869566],[-114.72216244287809,50.1773765495845],[-114.71958565570712,50.18183440861308],[-114.71872524403179,50.18679986757432],[-114.72006779140544,50.189652330946494],[-114.72302725604075,50.19301681260467],[-114.72615802824146,50.196038663903316],[-114.72867811558854,50.19980139021847],[-114.72949569654315,50.202657537679826],[-114.7305811823711,50.20722191092115],[-114.73122845595468,50.210702782249605],[-114.7328312632,50.21178380665741],[-114.73910149409758,50.214915393561505],[-114.73750551549806,50.21885541208047],[-114.74046740817033,50.22256285565975],[-114.74414067564265,50.225755031544466],[-114.74540354476844,50.2268360871785],[-114.75211501585738,50.23099669481994],[-114.75676976095639,50.23373270255693],[-114.75733202492789,50.2390407013198],[-114.75975822800271,50.24206134458361],[-114.76235480323326,50.24502655439862],[-114.75841606439431,50.2610167299473],[-114.75780337957679,50.262842508292614],[-114.75522630956182,50.26695551778223],[-114.7521230139315,50.26981871331019],[-114.74802390649329,50.27308193572089],[-114.74749600823186,50.275475024775055],[-114.74975116091757,50.27907081178471],[-114.75040033292704,50.283007987598964],[-114.74951395980644,50.28592460171124],[-114.74784348616622,50.291064049850775],[-114.75055098792545,50.29802419539041],[-114.75350834600928,50.29910401520135],[-114.7618286470553,50.30034548510193],[-114.76522778750254,50.300569752040474],[-114.76906866271838,50.3001645215112],[-114.77541222884896,50.299359501718904],[-114.7773879310507,50.30146836614349],[-114.77758523508432,50.30500495478969],[-114.77742585594666,50.30888783577781],[-114.77725210442169,50.3117465249279],[-114.77825849986314,50.316428349514744],[-114.78114567886205,50.31927638490184],[-114.78571202255375,50.32223733371849],[-114.78750441797831,50.32297791354263],[-114.79046356642799,50.324572516763006],[-114.79396373120036,50.326565239497874],[-114.79487330646542,50.32964758364441],[-114.79290966036291,50.33027577815637],[-114.7891655607271,50.33142453114785],[-114.77898614628022,50.33537820809151],[-114.76721922995063,50.34384817742708],[-114.76330027273168,50.347677276015226],[-114.7628696576982,50.35076159279198],[-114.76440386046342,50.35407199260268],[-114.76656531669423,50.35720932094118],[-114.76998118183825,50.359716078649384],[-114.77355552863533,50.36079420318712],[-114.77892484084724,50.36078723527329],[-114.78197401993427,50.35952496212639],[-114.78250066999529,50.359411539402984],[-114.78473682880218,50.35798368356196],[-114.78804206793708,50.356777564903155],[-114.79071958787516,50.3572857903423],[-114.7999877819976,50.36549650225342],[-114.80313560523369,50.36794506365738],[-114.80832077772499,50.368050333087275],[-114.81343446736304,50.36941290959158],[-114.81202468186102,50.3725536896766],[-114.80953136274032,50.37507055392826],[-114.80829047663481,50.37827458233262],[-114.80847602574212,50.38032779111782],[-114.8103710270494,50.381295372950945],[-114.81215236309677,50.38169115499431],[-114.81582937169605,50.38242432291353],[-114.81799423642013,50.38379569348665],[-114.81899332911428,50.38630124453664],[-114.81907759289206,50.38687737945698],[-114.82070370098472,50.38972534780624],[-114.82232820698408,50.39023747690898],[-114.82554863468033,50.38954755766528],[-114.82965313811412,50.38845322939543],[-114.83270313030319,50.38930456002323],[-114.84319230170293,50.39077242119108],[-114.84866656630707,50.39201546154539],[-114.85565186456768,50.39394308614614],[-114.85746263377116,50.39542713750585],[-114.85873355631693,50.397994861832636],[-114.85982152318228,50.401127422717174],[-114.86019287512777,50.403359983814205],[-114.85725928770215,50.40536001254036],[-114.85646198799978,50.40696237754387],[-114.85727569288171,50.408618821971196],[-114.85792030069656,50.41152901548964],[-114.85812309638807,50.41518481205381],[-114.85787048689204,50.41803534227993],[-114.85787050343191,50.41923913174333],[-114.85788721658015,50.42129299066599],[-114.85853220710754,50.4241451515374],[-114.8624854235274,50.426248480308075],[-114.86852192699074,50.42989468575541],[-114.8708822116418,50.43565912811344],[-114.8725122258837,50.438625453810246],[-114.8729703121094,50.43965145668905],[-114.8740392192339,50.43925178603783],[-114.8782473217021,50.437981641069975],[-114.88433706165404,50.43671210966474],[-114.88720431860683,50.43687889946617],[-114.89567412474509,50.4425707000997],[-114.90477509852269,50.44883121950454],[-114.9108253555245,50.455901182445345],[-114.91363005469651,50.459090535403014],[-114.91823608518764,50.463648712182895],[-114.92212625229028,50.467182882736665],[-114.92493347679657,50.470829095806536],[-114.92793241414846,50.47716296630853],[-114.93247798339837,50.48451725511569],[-114.93535366753581,50.48639330621189],[-114.93860109521687,50.48832533124471],[-114.94249281849002,50.49111661651714],[-114.94492759447887,50.493855907818386],[-114.94547227775932,50.49396228530036],[-114.94637621571063,50.495734469516776],[-114.94765217822287,50.497618982445005],[-114.94828489832453,50.49869826192765],[-114.95270610855245,50.501027645643426],[-114.9555991182392,50.50353451633879],[-114.95595789266638,50.504278744817626],[-114.95814061667319,50.5075243621012],[-114.95897730625548,50.510208191376144],[-114.960783294894,50.512205187824414],[-114.96214847650293,50.51431091437677],[-114.9638715610755,50.51687647490623],[-114.9661578304269,50.52138548655667],[-114.97369642580051,50.531704088264064],[-114.97651392069481,50.53591957399529],[-114.9810287581642,50.53898978835083],[-114.98655216021454,50.54457944217978],[-115.00067531583014,50.55767588578015],[-115.00532488484431,50.56474327249285],[-115.00773181475148,50.57250542128957],[-115.01031086268989,50.57997817086531],[-115.01329895208798,50.582769836696194],[-115.01619426595148,50.58384722677181],[-115.01879906842898,50.58383858028176],[-115.02265900990903,50.58302887491788],[-115.02586947306985,50.58096278976249],[-115.0269377974505,50.57969934452008],[-115.03052022275101,50.57786333356086],[-115.03500688320285,50.57653586366563],[-115.04048308508823,50.575602537730155],[-115.04461727002902,50.575359822030926],[-115.04747351375721,50.57420655630115],[-115.04971128656362,50.57242646566344],[-115.06304731967425,50.5859196690511],[-115.06427253119139,50.5859966589974],[-115.06853035847412,50.58490092255092],[-115.07053432696229,50.58518447661588],[-115.07308561041886,50.58387424451803],[-115.07867502197162,50.581131888840886],[-115.08763536114891,50.57775531833223],[-115.09082797739387,50.57709283580118],[-115.09419536557668,50.576885049430345],[-115.09767103056848,50.575999186909506],[-115.09970144106553,50.57541150376616],[-115.10366283639297,50.574935935794564],[-115.10726927703718,50.57386382815934],[-115.11118401049256,50.572288484229816],[-115.11356283507286,50.57161845991334],[-115.11545516688402,50.57030496780322],[-115.11603981278986,50.56948928445416],[-115.12163682492258,50.569982309137565],[-115.12788941760216,50.57065948054931],[-115.13276197669569,50.57183967812583],[-115.13532575347696,50.57299306951647],[-115.137977017878,50.57319933706367],[-115.1419720146088,50.57134683412084],[-115.14650936654407,50.570142955206634],[-115.1503032473535,50.571175403742934],[-115.15252348566962,50.5719202011417],[-115.15606643413135,50.57157331748972],[-115.16053641575652,50.57023275009456],[-115.16523392905978,50.56865982781675],[-115.16840161559013,50.5678547821405],[-115.17172522066768,50.56746718182916],[-115.17275110879733,50.56541570965415],[-115.17419019641025,50.562307122247],[-115.17567376044666,50.558896094762815],[-115.17908012730382,50.55680639601186],[-115.18299268900073,50.55545705882544],[-115.1867235345084,50.55538909711365],[-115.18868144330769,50.55444122021241],[-115.18871643535816,50.55228863751586],[-115.18762252859014,50.54889775602472],[-115.18542271647831,50.54659552151951],[-115.18337842715258,50.544536836942584],[-115.1827509800698,50.54288002716109],[-115.18444068256966,50.54055949527654],[-115.1846260854912,50.53914370158975],[-115.18714410391695,50.53764857549877],[-115.1881075648124,50.53573123784264],[-115.1889184834836,50.5347397637681],[-115.19100351495824,50.53414809208112],[-115.19547145242514,50.53344489606164],[-115.1982940255298,50.533050298230826],[-115.20038445011096,50.53219879931443],[-115.20246936834637,50.53101494042096],[-115.2040955531525,50.52942428014238],[-115.2050314133851,50.527972290213214],[-115.20477135610909,50.52786673530255],[-115.20486079992514,50.52785106290326],[-115.20492181521891,50.527834872129624],[-115.20499691072747,50.52781949547299],[-115.20546223381584,50.527725269077685],[-115.20547698492751,50.52772330369147],[-115.20594248714278,50.52780578094077],[-115.20614168538171,50.52798604166045],[-115.20632921380098,50.52815550673976],[-115.20649122599335,50.528194081525115],[-115.20655855255734,50.52821089429304],[-115.20658604470778,50.52821529279419],[-115.206626147067,50.52822659700335],[-115.20701562444253,50.5283283280736],[-115.20705050216823,50.5283612819066],[-115.20709892465173,50.528397269646206],[-115.20739872848223,50.52863395425503],[-115.20741160465737,50.52863975873962],[-115.20772334940295,50.528886136386134],[-115.20792135305929,50.52907139320067],[-115.20811509143421,50.52933349521672],[-115.2081234141935,50.52935816993086],[-115.20815601560487,50.52940056297383],[-115.20816875923578,50.52940691793457],[-115.20818969067712,50.529438507049974],[-115.2083730991966,50.52968426337771],[-115.2084067746636,50.529722207375016],[-115.20842891071726,50.52974880578867],[-115.20843937660482,50.529764600315964],[-115.20844997750102,50.52977983539244],[-115.2086740290238,50.5300346745959],[-115.2087996021593,50.530165123263544],[-115.20890292437177,50.53032861814504],[-115.20903548320845,50.530489291215915],[-115.20905748715673,50.530516440049034],[-115.20920493186394,50.5306745964555],[-115.20932084541049,50.53078591993945],[-115.20935425465485,50.530824973618216],[-115.20936592534095,50.530835777389285],[-115.20938806465038,50.53086236669562],[-115.20947942912775,50.53095709086141],[-115.2096842590401,50.531054948962456],[-115.20973469636135,50.531082605845015],[-115.20976098638631,50.53109199419632],[-115.20978620508346,50.53110582262261],[-115.20984951972738,50.53113928364177],[-115.21001886275566,50.53138422321101],[-115.21011360009904,50.531524152237836],[-115.21020721842636,50.53190542115673],[-115.21021784211068,50.53197974112903],[-115.21033380519411,50.53220923355905],[-115.21035246184931,50.532250261769725],[-115.21037366396907,50.53228074034415],[-115.21051255081787,50.53247440643099],[-115.21055468768924,50.53253647351708],[-115.2105862223917,50.53258330576327],[-115.21059802881156,50.532593549931626],[-115.21060514939768,50.53262321501249],[-115.21079168749557,50.5329152817617],[-115.2108127552438,50.532946319677784],[-115.21120023226827,50.533293255726605],[-115.21125605230723,50.53335779643369],[-115.2115183712261,50.533631701384884],[-115.21155191731648,50.53367020369706],[-115.2115855962959,50.533708155426815],[-115.21181530891606,50.5339396766405],[-115.21184899046108,50.533977619397874],[-115.2118828048918,50.53401501157263],[-115.21196491903473,50.534088939676074],[-115.21216189180632,50.53427862784561],[-115.2125263114623,50.53460285071138],[-115.21265579029784,50.53471720341704],[-115.21285370703079,50.53490300069834],[-115.21299494450288,50.53490942709284],[-115.21306456069847,50.53491679614901],[-115.21313404195824,50.53492472461322],[-115.21338553924633,50.534947610043154],[-115.21347852915363,50.53503566142803],[-115.21351207796384,50.53507416308282],[-115.2135354256782,50.535095760758416],[-115.21354575964328,50.53511211415383],[-115.21370691945124,50.53527272847632],[-115.21366257723285,50.53539735701981],[-115.21361636254497,50.535529746811164],[-115.2139352834522,50.53574669379059],[-115.21427038056359,50.5358373940534],[-115.21432417401334,50.535851168944376],[-115.21455811343638,50.53588766905618],[-115.21478134362576,50.53596856970497],[-115.2148477467399,50.53598926682389],[-115.21491508806734,50.53600607437152],[-115.21528387512889,50.536134713270265],[-115.21535014592573,50.536155960658185],[-115.215390390342,50.53616671102333],[-115.21541668451121,50.536176097979144],[-115.21585294933193,50.53632099158734],[-115.21591814981184,50.53634667874319],[-115.2165131811888,50.53666217947622],[-115.21689247910834,50.53686569131786],[-115.21694292735702,50.53689334473437],[-115.21696828427997,50.536906620858986],[-115.21699364335937,50.53691988809727],[-115.21709494062779,50.536973534206275],[-115.21732343267335,50.53709186435643],[-115.21738783205723,50.53712088071736],[-115.21771953626963,50.53710728080166],[-115.21793950250802,50.53708332590872],[-115.21795332036758,50.5370852395612],[-115.21861926956038,50.537284375086614],[-115.21864747136912,50.5373450757485],[-115.21881287077582,50.537606650558494],[-115.21883408113801,50.537637127320195],[-115.21885194482829,50.537681483931934],[-115.21886981069493,50.537725831658115],[-115.21899309233666,50.53798442722565],[-115.21899700537344,50.5380274208507],[-115.21903016072407,50.538067581309434],[-115.21909409396436,50.53821698602177],[-115.2191859297445,50.53836911651154],[-115.21933845546786,50.53862488716266],[-115.21958700171544,50.53883777323802],[-115.21988399449182,50.53908664040383],[-115.21993270852298,50.539121503168246],[-115.21994518679057,50.53912897561779],[-115.2199823582689,50.53915248523122],[-115.22024365647954,50.539371732110155],[-115.22027828480086,50.53940579138285],[-115.2203151890565,50.53943041091127],[-115.22042456722613,50.53974672611897],[-115.22050690893306,50.539938265878895],[-115.22063944003172,50.54015855831629],[-115.22076397002397,50.54023434749166],[-115.22088488654842,50.540325126426865],[-115.22114452038768,50.54043285323027],[-115.22119470763036,50.54046161463254],[-115.22165006872804,50.5405867567396],[-115.22171741946354,50.540603560073826],[-115.2217836998664,50.54062480351205],[-115.22185118343533,50.540641056186516],[-115.22208174966553,50.540810139662646],[-115.22211678293529,50.54084252880792],[-115.22223466509209,50.54100515163928],[-115.22241919224594,50.54112827230648],[-115.22247377567473,50.54131652580825],[-115.22250536885464,50.54142242971084],[-115.22261415617754,50.54162279327151],[-115.22263202516922,50.54166714906029],[-115.22265096666001,50.541707055815976],[-115.22270658401214,50.54183178453815],[-115.22285113204265,50.54194304668643],[-115.22288482886314,50.541980985730035],[-115.22293341348723,50.54201640651566],[-115.2232190362979,50.54225335157708],[-115.22323138326324,50.54226137420799],[-115.22365502195146,50.542458967343855],[-115.22395114143892,50.54253389079066],[-115.22442315910871,50.54264928315318],[-115.22449158412604,50.542661644605694],[-115.2249098405059,50.542822349346665],[-115.224975323087,50.542846920947646],[-115.22502792322656,50.542865690167304],[-115.22544484795472,50.54303193418014],[-115.22570637875198,50.54313188856705],[-115.22615834441619,50.543330526636986],[-115.22623657854243,50.54336145026929],[-115.22655771249222,50.54351039436616],[-115.22662319697194,50.543534964976295],[-115.22664829513154,50.5435493399497],[-115.22667459595434,50.54355872415909],[-115.2270235059833,50.543710941394934],[-115.22708792107437,50.543739951904186],[-115.22715233624838,50.54376896237508],[-115.2272049383713,50.54378773054415],[-115.22745314798286,50.54400226720528],[-115.22758403121983,50.544111042109094],[-115.22768954775297,50.544384364257475],[-115.22774638705211,50.54450409040837],[-115.22788761359892,50.544807028769696],[-115.22790656106483,50.544846934477356],[-115.22791596740798,50.544867167060595],[-115.22792430388049,50.54489183982371],[-115.22802371723645,50.54507196466782],[-115.22804752229501,50.54515098255388],[-115.22807962108408,50.545195580146],[-115.22809843407983,50.54523604526481],[-115.22822584653886,50.5455370616739],[-115.22828295404317,50.545655686217636],[-115.22853252085784,50.54604247260595],[-115.2286180743841,50.54616159139769],[-115.22867402711266,50.54634429047549],[-115.22867781745366,50.546387833903424],[-115.22868749192487,50.54640695633845],[-115.22869596176494,50.54643107841505],[-115.22874977546658,50.54662265775293],[-115.22873172297453,50.546697581338705],[-115.22873497847942,50.54674334483533],[-115.22872962926053,50.546765545728924],[-115.2287245474977,50.54678663657701],[-115.22867716364047,50.5471018419236],[-115.22861702964899,50.54741068577273],[-115.22856340318393,50.547633245014374],[-115.22855604667517,50.54766377563861],[-115.2286811507288,50.54791513761213],[-115.22870477983808,50.54793562172114],[-115.22872359453959,50.54797608659908],[-115.22874240927487,50.54801655147193],[-115.22887633959881,50.548231290589285],[-115.22889555684664,50.548270085918936],[-115.22891330199627,50.54831499092013],[-115.2289215048503,50.548340222966466],[-115.2289322497064,50.548354905162775],[-115.22902819769946,50.5485494589045],[-115.22908812057211,50.54865642270958],[-115.22918308826407,50.548795773073756],[-115.22937703515328,50.54905783172177],[-115.22941052006024,50.54915597124239],[-115.22948565098436,50.549318380586385],[-115.22948039574715,50.549458749126714],[-115.22948365221212,50.54950451244739],[-115.22947723319811,50.54953115347321],[-115.2294869086837,50.54955027576551],[-115.22948245580302,50.5496873141387],[-115.22933185305226,50.54977885297035],[-115.22928116200241,50.549811399463316],[-115.22923073834635,50.54984283589025],[-115.22912868827846,50.54991069941801],[-115.22890180339327,50.55008170471778],[-115.22879868023107,50.550154016965266],[-115.22836140112042,50.55048683755995],[-115.22829381104066,50.55053023225153],[-115.2281085629704,50.55076551484729],[-115.22808537795927,50.550802453807705],[-115.22806727758027,50.550818293167566],[-115.22804743735522,50.55084135220814],[-115.2279251855074,50.55099302680816],[-115.22787480443706,50.551083546296965],[-115.22784921149292,50.55113047552421],[-115.22783231362041,50.55114132411484],[-115.22782923833412,50.55115408509524],[-115.22781020036915,50.551173813974515],[-115.22762686426697,50.551460409025104],[-115.22757728462808,50.55154759822106],[-115.2273741929034,50.55197541896919],[-115.22727070415026,50.55228628426913],[-115.22726013778274,50.55233012615789],[-115.22725398458172,50.55235565693018],[-115.22724970408994,50.55237341746675],[-115.2271958861588,50.55253745054721],[-115.22711705539504,50.5526274658041],[-115.22707897757911,50.552666923244416],[-115.22704210254706,50.552701389963346],[-115.2268851094433,50.552878640637466],[-115.22676628285657,50.55295679959152],[-115.22666488982394,50.55302188996314],[-115.22630764667008,50.55331877932751],[-115.22624972529678,50.55338129510615],[-115.22597148668113,50.55364670169734],[-115.22593461214015,50.55368115912781],[-115.22589666511357,50.55372006553862],[-115.22570911805974,50.55396477402379],[-115.22568499397784,50.554005592996546],[-115.22566260805115,50.55403920122371],[-115.22564677888204,50.55404560933426],[-115.22560040354826,50.55411947704714],[-115.22584407358416,50.55429379268775],[-115.22591764289851,50.5543441460523],[-115.22641840880493,50.55469636620025],[-115.2267473373959,50.554931834344046],[-115.22679687440679,50.55496337222231],[-115.22680829011344,50.554975274993026],[-115.22683232233945,50.554994098720435],[-115.22701491379044,50.55512553043997],[-115.22704960311891,50.555218670374906],[-115.22708144054216,50.55526437773734],[-115.22709191889821,50.5552801700169],[-115.22708870827334,50.555293490367184],[-115.22710025684655,50.55530484252877],[-115.22722675361895,50.555609745931285],[-115.22738161219162,50.55597478669052],[-115.22739984973391,50.55613618874983],[-115.22743333573283,50.55641212862279],[-115.22743873102421,50.55644901138834],[-115.22744198592024,50.55649477437933],[-115.22744818388055,50.55652832705561],[-115.227459732861,50.556539679162775],[-115.22749161421913,50.556822279050856],[-115.2274986149155,50.55685250162686],[-115.22751043154285,50.55686274369618],[-115.22751649475906,50.55689685580777],[-115.22767278810154,50.55719670272034],[-115.22778877019385,50.55742672933864],[-115.2279351230546,50.55770856346741],[-115.22807759729167,50.558006497151965],[-115.22811023821849,50.55804888286165],[-115.22810702769742,50.55806220319651],[-115.22812812127962,50.55809322799952],[-115.22824638317991,50.55831381421518],[-115.22825177936491,50.55835069685602],[-115.22825450014075,50.558398679772964],[-115.2282502194692,50.558416440217435],[-115.22825882617464,50.55844000252063],[-115.22831167306836,50.558754185723544],[-115.22838240615971,50.55929052268423],[-115.22855414189743,50.559585628509325],[-115.22857202386544,50.55962998237319],[-115.22858036342986,50.559654654643644],[-115.22859097817364,50.55966988724407],[-115.22874295952329,50.559928417864576],[-115.22876191410853,50.55996832269177],[-115.228769986301,50.55999410496476],[-115.22877966373402,50.560013227074954],[-115.22895153752833,50.560307781454284],[-115.22909090467705,50.560559390728216],[-115.22927415374251,50.56080676384569],[-115.2294923243081,50.56108708206402],[-115.22952510363251,50.56112890774618],[-115.22953317646989,50.561154689927335],[-115.22955881828939,50.56116685276151],[-115.22956608857444,50.561195965020595],[-115.22982136306325,50.56138162227023],[-115.22987104415097,50.56141259907846],[-115.22990556186957,50.561447213892954],[-115.23023348794702,50.56168710990615],[-115.23038026051537,50.56178947047509],[-115.23077642897105,50.562101915241435],[-115.23091865450553,50.56222315441687],[-115.2309660276373,50.56238228678641],[-115.23098418272961,50.5624255212027],[-115.2309882441563,50.562467953670755],[-115.231067243914,50.56273299356531],[-115.23108432925237,50.56278066806142],[-115.23108111927363,50.562793988405446],[-115.2314152632355,50.56306743275016],[-115.23156904526327,50.56320002255548],[-115.23155030197714,50.563574248784036],[-115.23153244601242,50.56388550250476],[-115.23152174625521,50.563929903633884],[-115.23151746634642,50.56394766408464],[-115.23152821577264,50.56396234575149],[-115.23152500584095,50.563975666089256],[-115.23150268514783,50.56424615678041],[-115.23150621223384,50.564290809191014],[-115.23149551235446,50.564335210295816],[-115.23147671839088,50.56465035325497],[-115.2314631889556,50.56500293773053],[-115.23144723792241,50.56518770474032],[-115.2314397478192,50.56521878547617],[-115.23147152761557,50.56550193181498],[-115.23147438493662,50.565549363663266],[-115.23149267447619,50.565592047257496],[-115.23151263496362,50.565864951921874],[-115.23151682988144,50.56590683362077],[-115.23152864979853,50.565917075150615],[-115.231520892124,50.56594926588991],[-115.23153169169653,50.56602303016745],[-115.23169294132659,50.56624325445752],[-115.23186601267373,50.5664737199421],[-115.23217288751745,50.56668257612554],[-115.2322835500174,50.566756988711596],[-115.23247093595107,50.5669280711633],[-115.23251741512884,50.566972366897716],[-115.2325532787185,50.56700142164474],[-115.2326009606705,50.56704072666134],[-115.23288241049873,50.56717723499591],[-115.23293397243819,50.567200440029254],[-115.23298339460898,50.56723252525607],[-115.23304878442289,50.56725764194755],[-115.23336302444473,50.56743597334472],[-115.23362784387126,50.567582218912264],[-115.2339556996572,50.56782266162246],[-115.23428369373953,50.56806254384184],[-115.2343182220872,50.568097148127706],[-115.23436684388146,50.56813256279288],[-115.23467026273353,50.56835585092731],[-115.23469698194985,50.56836356347167],[-115.2347336482389,50.56838929625783],[-115.2347453368884,50.56840008799002],[-115.23509131181422,50.56862467813269],[-115.23545919401714,50.568876968932535],[-115.23565114916535,50.56902916618578],[-115.23583114907676,50.56917168150465],[-115.23603909390653,50.56919820262152],[-115.23610983653009,50.56920111681597],[-115.23613615430718,50.5692104984952],[-115.23617830510194,50.56921347067972],[-115.23631724684503,50.56922985747636],[-115.23659045432731,50.569282042808375],[-115.23665905578419,50.56929384579874],[-115.23667274955389,50.56929631650709],[-115.23672752464773,50.569306199323286],[-115.23674135319327,50.569308110566276],[-115.23721175546183,50.56937213273198],[-115.23758563251356,50.56942163831174],[-115.23801808943573,50.569524557817175],[-115.23830031474164,50.569598639547],[-115.23839115129826,50.569696106132895],[-115.23842394515542,50.56973792875602],[-115.23845673907351,50.56977975136744],[-115.23850309233518,50.569824603907136],[-115.23873828290151,50.56997532679838],[-115.23878771225377,50.57000740933945],[-115.23881082285207,50.570030110826195],[-115.23883620488145,50.5700433814288],[-115.23889946325156,50.57007737489677],[-115.23901032366557,50.570329027502716],[-115.23906521964331,50.570457073810495],[-115.23915790237596,50.57078420867658],[-115.23919810841352,50.57085459172805],[-115.23934805180355,50.571121975764264],[-115.23936888976645,50.57115411686131],[-115.23940262236383,50.57119204955157],[-115.23943648761988,50.57122943165128],[-115.23966439613704,50.57146976504226],[-115.2396999984443,50.5714999362453],[-115.23973480092735,50.57153342866861],[-115.2400293147986,50.57179388308134],[-115.24007446978314,50.57184372558769],[-115.24005992531467,50.572319463142684],[-115.24005595227621,50.57263263462614],[-115.24004525884574,50.57267703610321],[-115.24005280510555,50.57270503723309],[-115.24004852772778,50.57272279782254],[-115.24004021632167,50.572994647596126],[-115.24002845343536,50.57304348919742],[-115.24003279168203,50.57308481075182],[-115.24002542783369,50.57323405602275],[-115.23997283348247,50.5733931004022],[-115.23985154439391,50.57371870012753],[-115.2396545118482,50.57388411323759],[-115.23935324730405,50.57412628602373],[-115.23930146663416,50.57416327625218],[-115.23926458335337,50.57419774612139],[-115.23899886146263,50.574410998161085],[-115.23896117562745,50.57444879801542],[-115.23891046376349,50.57448134792005],[-115.23860678476812,50.57473350879309],[-115.23855420063093,50.57477382873841],[-115.2378604911498,50.57498400525395],[-115.23741438358896,50.57511549378661],[-115.237353183273,50.575132252029285],[-115.23730768306376,50.575143160088615],[-115.23729118065569,50.57515234031884],[-115.2371835450621,50.57518388715462],[-115.23687261502603,50.57516949388602],[-115.23682938888892,50.57517096208913],[-115.23680186297514,50.575166580197546],[-115.23673097828687,50.57516421703683],[-115.23623572280337,50.57514378412183],[-115.23588143242138,50.5751314154919],[-115.23538778247618,50.575104318661765],[-115.23490622155529,50.57508635955753],[-115.2348356045716,50.57508288516823],[-115.23476485492853,50.575079961304475],[-115.23434008335235,50.575063553838106],[-115.23431229025502,50.575060281350325],[-115.23427040160212,50.57505619846037],[-115.23419871473773,50.5750571637461],[-115.23390228440213,50.57504190311292],[-115.23371667446821,50.57510049264853],[-115.23328130634395,50.575246645851394],[-115.23297007789435,50.57535207510735],[-115.2329535745253,50.575361254692055],[-115.23286695695569,50.575483461993315],[-115.23274679470049,50.57562625722485],[-115.23270870236723,50.57566571548943],[-115.23268778342853,50.575693214722165],[-115.23266967252155,50.57570906323191],[-115.2324705154557,50.57594242527922],[-115.23243255531426,50.57598133286709],[-115.23242747198843,50.57600242313543],[-115.23240856037332,50.576021592758856],[-115.23215640652991,50.57629694055887],[-115.23179804471017,50.576716442973854],[-115.23173068612992,50.57675872835908],[-115.23134151626783,50.5769502792],[-115.23129199910551,50.57697783492902],[-115.23126019351635,50.57699120295747],[-115.2312265127136,50.577012349925745],[-115.23116223140609,50.57704186539887],[-115.23083429749468,50.57709794534632],[-115.23076153694085,50.577103348451196],[-115.23070046631324,50.5771195435514],[-115.2302250038072,50.57719474830485],[-115.22960174192342,50.577290195250086],[-115.22939300750598,50.57732607421898],[-115.22885726971866,50.5774141463209],[-115.22886467706441,50.577442698609985],[-115.22887542884772,50.577457380292664],[-115.22898303973756,50.57772236067104],[-115.22900186713747,50.57776282403737],[-115.22901034304508,50.577786945170814],[-115.22901868621314,50.57781161686471],[-115.22913156531945,50.57811402926592],[-115.22916007451505,50.57817361424364],[-115.2294090731248,50.57862279513411],[-115.22942683075065,50.57866769839755],[-115.22944258009171,50.57872093112024],[-115.22945966977724,50.57876860494104],[-115.22946480177475,50.57880659661055],[-115.22956091116083,50.579119306117924],[-115.22957331647885,50.57918640938975],[-115.22970525884487,50.57964689667132],[-115.22974131079485,50.57973448298161],[-115.22984660881947,50.579949819608025],[-115.22987953709341,50.57999108478735],[-115.2298854724752,50.58002574637356],[-115.22989622520836,50.580040427911634],[-115.23003552384175,50.580292589419585],[-115.23005435326262,50.580333052481976],[-115.2300640356135,50.58035217400863],[-115.2300722449501,50.58037740498809],[-115.23017161252115,50.580558070707056],[-115.23027588284243,50.58065912409575],[-115.23061220905912,50.580983325924656],[-115.23067757977142,50.58112716616646],[-115.2308181402314,50.581433408454444],[-115.23083603310874,50.58147776077878],[-115.2308562018205,50.58151267363311],[-115.23111846896093,50.58172910422485],[-115.2311672378367,50.58176396026108],[-115.2312156043057,50.58180048571959],[-115.23132202069574,50.581892657950256],[-115.2315289178609,50.58204234066343],[-115.23187797526796,50.58231380852207],[-115.23191921825865,50.582498466701686],[-115.23198661935389,50.582811780227935],[-115.231990816292,50.58285366104837],[-115.23200884575714,50.58289745366608],[-115.2320584860127,50.5831658643931],[-115.23206161480968,50.58321217632698],[-115.23207022825103,50.58323573762648],[-115.23226719963259,50.58354521107455],[-115.23242142556802,50.583794840277506],[-115.23257337764747,50.58405390866245],[-115.2326532599293,50.584196888365426],[-115.23277771571674,50.58433285137159],[-115.23282541622373,50.584372155466305],[-115.23282314283362,50.584381586058655],[-115.23284625780377,50.584404288388484],[-115.23285915321235,50.58441008953213],[-115.23305001231405,50.584626369176846],[-115.23307526815641,50.58464019142053],[-115.23312283653021,50.584680045935215],[-115.23315750945082,50.5847140993223],[-115.23345501479103,50.58496235692901],[-115.23355108839965,50.58503818500439],[-115.23400361531822,50.58535494361226],[-115.23401316771714,50.58537461524189],[-115.23424197481297,50.585670706840766],[-115.23426495631259,50.58569396828336],[-115.2342778522735,50.58569976925365],[-115.23429869550513,50.585731901852235],[-115.23451428905214,50.5859642205897],[-115.23454668876313,50.586007712979445],[-115.23456913763192,50.58603318548109],[-115.23457935822739,50.586050086471566],[-115.234713375698,50.58620572744953],[-115.23479768418633,50.58633038570746],[-115.23493175739947,50.58654510754562],[-115.2351986761299,50.58680173826779],[-115.23522406869232,50.58681500054446],[-115.23546252232795,50.587071128905535],[-115.23549719886063,50.58710518146547],[-115.23553093800925,50.58714312347623],[-115.2357461444523,50.58737710000114],[-115.23579398561198,50.587415843235966],[-115.23580313686823,50.58743718411317],[-115.23607841473145,50.58771848333829],[-115.23614830482245,50.58778436799442],[-115.23660481184191,50.58814410537998],[-115.23673905567453,50.58823954358818],[-115.23688544918903,50.588403202219936],[-115.23688858331683,50.58844951372471],[-115.23689827031713,50.58846863446915],[-115.23689185013492,50.58849527466278],[-115.23691288596706,50.588585937128315],[-115.23704892641798,50.58873324531935],[-115.23709636781408,50.58877365738302],[-115.23711988952117,50.588794689252715],[-115.23713011170155,50.58881158995263],[-115.2371533638009,50.58883374070246],[-115.23736871944168,50.589067163049016],[-115.23737920927663,50.589082953712094],[-115.23754372250667,50.589230762295244],[-115.2379373911455,50.58943610933378],[-115.23799326097236,50.58944155124889],[-115.23839510790273,50.58949432441792],[-115.23845632735994,50.58947756589373],[-115.23847203449891,50.589471706801525],[-115.2385026442035,50.589463327522324],[-115.23853539368007,50.58944606814887],[-115.2385966130194,50.589429309546595],[-115.23879905261461,50.5893604137054],[-115.23899199566576,50.58933092735666],[-115.23900797014431,50.58932395817588],[-115.23905308201864,50.58931471906701],[-115.23912612877528,50.58930820061007],[-115.23915633599205,50.58930149060801],[-115.2394768598921,50.589276467343666],[-115.2396131903177,50.589303949759255],[-115.23995288424499,50.58937735708424],[-115.24031569848202,50.589473472886226],[-115.24040311506268,50.58946664431326],[-115.24065005572302,50.5894503658805],[-115.24090428052881,50.589463188540094],[-115.24097492054341,50.589466659018925],[-115.24104663021319,50.589465689386024],[-115.24146840124088,50.589435759655856],[-115.24152534109055,50.58943675972765],[-115.24154024561973,50.58943423025611],[-115.2416130248132,50.58942882018659],[-115.24165733407072,50.58942291007825],[-115.24208966706419,50.589349127829166],[-115.24211920647643,50.58934518763208],[-115.24290921783862,50.58921079896621],[-115.24338679014578,50.58912722039967],[-115.24340169446782,50.58912469067802],[-115.24344693784587,50.589114899215424],[-115.24352198982018,50.589100048260754],[-115.24377494359378,50.589058782928554],[-115.24392477761305,50.58903019942853],[-115.24395418191762,50.58902681819534],[-115.24399969455133,50.58901590760251],[-115.2440585052648,50.58900913620845],[-115.24435803768984,50.588952527692015],[-115.24453847919332,50.58891556245961],[-115.24498864713945,50.58882702874689],[-115.24536750576897,50.58885652653312],[-115.24563422488743,50.58887680754675],[-115.24583371540164,50.58893882176109],[-115.24590007836134,50.58896004957993],[-115.24594010999715,50.58897189822874],[-115.24596751053085,50.58897683724198],[-115.2461131351901,50.58902509225428],[-115.2463398929579,50.589092603975466],[-115.24640759276679,50.58910828133833],[-115.24647288714611,50.589133948931725],[-115.24692667280306,50.58926786039253],[-115.2473135623391,50.589382763121016],[-115.24770379336978,50.589483793520834],[-115.24802873233233,50.58955914703192],[-115.24816587054372,50.589583288866415],[-115.24823450811664,50.58959507555137],[-115.24824794146409,50.58959865480845],[-115.2483019421083,50.58961186178672],[-115.24845385014977,50.58963403234409],[-115.2486742011127,50.589728180081615],[-115.24874083379896,50.58974829615254],[-115.24880532877283,50.589777292462514],[-115.24884509467971,50.58979025009015],[-115.24920800626774,50.58994540891359],[-115.24954685774024,50.590081757391886],[-115.2498527721269,50.590295558448155],[-115.25018395381736,50.59052317687244],[-115.25023261232195,50.59055858364361],[-115.25024524454382,50.5905654927675],[-115.2502812709031,50.590593990391966],[-115.25035599564342,50.59063988522824],[-115.25056085884233,50.59079841128152],[-115.25059434627448,50.590837458595225],[-115.25064314010183,50.59087230571446],[-115.25082447607943,50.59100980228263],[-115.25092561085754,50.59112415550427],[-115.25097226784177,50.59116788277253],[-115.25110956332627,50.591310182590895],[-115.2512352978778,50.59144112417817],[-115.25133643466903,50.59155547696706],[-115.25137125918262,50.591588973818546],[-115.25150749068465,50.59173570434744],[-115.25166984656971,50.59183329110742],[-115.2517205103066,50.59186037631993],[-115.25178394158449,50.591893810986996],[-115.2520832580226,50.59207571619401],[-115.25214695702645,50.592108040605886],[-115.25219748885245,50.59213567617212],[-115.25228498360362,50.59218792793605],[-115.25251285712082,50.59236969875104],[-115.25274193354436,50.59254647831703],[-115.25305543758078,50.592788269525585],[-115.25323465160062,50.592934642177546],[-115.25338344827888,50.593029198237495],[-115.25343318051787,50.5930601633368],[-115.25344581393327,50.59306707207666],[-115.25348398132859,50.59308668824584],[-115.25378023962855,50.59328135854621],[-115.25383077377495,50.593308993332116],[-115.25385510488982,50.59332670030435],[-115.25388050663092,50.593339958221165],[-115.25424153932585,50.593562510392864],[-115.25426693917704,50.59357577709812],[-115.2547531387822,50.593991125355714],[-115.25480287302665,50.5940220898073],[-115.25503311578586,50.59425350474687],[-115.2550668789001,50.59429143162828],[-115.2550877388171,50.5943235688803],[-115.25510050745622,50.59432991795996],[-115.25533182167675,50.59455689202133],[-115.2553653160453,50.59459593772281],[-115.25538671262932,50.594625845938424],[-115.25539801134538,50.59463830466479],[-115.25558413334079,50.59481544321763],[-115.25563261499217,50.59491103805563],[-115.25569474629981,50.59506874116928],[-115.25587991545126,50.595428111493426],[-115.25592305678913,50.59554590701771],[-115.2560212240987,50.59573210543886],[-115.25604048502996,50.59577089384149],[-115.25604857927203,50.59579667301533],[-115.25605814138702,50.59581635138469],[-115.25618286414633,50.596070447280795],[-115.25621235636997,50.59612613443767],[-115.25623134842171,50.59616604171323],[-115.25669540137082,50.596079379086056],[-115.25718912957964,50.59598821088944],[-115.25751716614732,50.595932063468645],[-115.25799611993362,50.5958428638045],[-115.25801169216633,50.59583756146591],[-115.25805707369636,50.595827204681854],[-115.25813092935107,50.595817343661935],[-115.25832495550205,50.59578338384767],[-115.25852663026119,50.595836494405866],[-115.25859407744416,50.595853274281545],[-115.25866179169199,50.595868944065586],[-115.25911861857425,50.59599059419605],[-115.25989818417746,50.596197000587644],[-115.2599383583607,50.59620829351373],[-115.26031292744246,50.59637476312521],[-115.26037743936922,50.59640375250006],[-115.2604290489705,50.59642694397232],[-115.26076344480754,50.59658212816114],[-115.26082795732181,50.5966111172678],[-115.26084152617992,50.596614144388155],[-115.2608783649852,50.596639308211834],[-115.26103493184807,50.596701662041156],[-115.26104409696241,50.59672300060309],[-115.26129631966144,50.59680374633863],[-115.2619811416292,50.59704750493051],[-115.26203382054942,50.59706625541404],[-115.26249066870199,50.59718789153619],[-115.26255825391945,50.597204109514536],[-115.26258486051177,50.59721237456313],[-115.26262490388099,50.59722421709503],[-115.26301416961597,50.59732963311143],[-115.26308175523498,50.59734585076926],[-115.26314840564038,50.59736595803305],[-115.26360419223934,50.59749202977936],[-115.26400596651662,50.59760490043306],[-115.26440355382822,50.597616259827745],[-115.26489933626222,50.59763545679875],[-115.26494378504232,50.59762897801113],[-115.26497332788718,50.59762503179079],[-115.26504505003682,50.59762404671239],[-115.26546701604161,50.59759346690477],[-115.26551026277981,50.597591987620945],[-115.26553967105573,50.59758860072262],[-115.26561259504224,50.59758261554776],[-115.26575697208177,50.59757676373371],[-115.26609898248624,50.59752193924041],[-115.26633719157142,50.59748259633553],[-115.2669288052762,50.59745997267411],[-115.26704297322664,50.5974608366617],[-115.26742885812557,50.59746138841821],[-115.26749964507233,50.597464291441646],[-115.26757136691042,50.597463304736124],[-115.26799889760645,50.59746903483456],[-115.2680563817914,50.59746780118832],[-115.26809989511487,50.597465210827835],[-115.26845426345061,50.59765638721665],[-115.26850507830332,50.597682905125424],[-115.26890323051882,50.59787037942953],[-115.26918498325989,50.5980067908477],[-115.26937800992746,50.59809596341319],[-115.26956676921107,50.59820289680944],[-115.26963035499976,50.59823577045726],[-115.26967983741491,50.59826783817886],[-115.26980661250356,50.59833523709239],[-115.2700302517327,50.59841602069056],[-115.27008293560873,50.598434767335576],[-115.2701221817974,50.59844993737718],[-115.27014852376894,50.59845931068076],[-115.27023898584916,50.59849933711879],[-115.27058330018512,50.598613418677694],[-115.27071407860988,50.59866416540177],[-115.2710898744065,50.59888524712022],[-115.271230091315,50.598956220822345],[-115.27162906629275,50.599140354864986],[-115.27169438961208,50.599166007355855],[-115.27171979777121,50.59917926999022],[-115.27174520807903,50.59919252373797],[-115.27181053154031,50.59921817615919],[-115.27207672974389,50.59935988428515],[-115.27212621513866,50.599391950876324],[-115.27215255807913,50.59940132369528],[-115.272190739001,50.59942093330211],[-115.27251999603347,50.599597732585536],[-115.27283648509874,50.59976817497478],[-115.27290007762159,50.59980103781298],[-115.27326312296832,50.60001575601975],[-115.27331380891376,50.60004283113911],[-115.2733255150366,50.60005361840459],[-115.27336329594122,50.60007489715423],[-115.27361246656889,50.60022800691853],[-115.27367592590655,50.600261428776],[-115.27372648010923,50.600289054299466],[-115.27375055615825,50.60030786685526],[-115.27377730104207,50.60031556971842],[-115.2741402203295,50.600530844413186],[-115.27419090951624,50.60055791023597],[-115.2747831986779,50.60088972574185],[-115.27514719609782,50.60110054779769],[-115.27519668559512,50.601132612957265],[-115.27524750834712,50.60115912767836],[-115.27556095141445,50.60134233239718],[-115.27561150798894,50.60136995702902],[-115.2756498264694,50.60138900592126],[-115.27567603693271,50.60139893736644],[-115.27592655587428,50.601546491291266],[-115.275946609968,50.60164158527609],[-115.27598384316448,50.60202233434647],[-115.27600200494584,50.60218483836347],[-115.27600744553553,50.60222171672062],[-115.27608558151246,50.60249170278355],[-115.27610472825536,50.60253104687999],[-115.27612187642134,50.60257871215545],[-115.27620201231284,50.60284037683909],[-115.27621916069978,50.60288804208176],[-115.27622753440639,50.60291270948347],[-115.27622300181335,50.6029315808951],[-115.27624121461655,50.60297481467797],[-115.27644006936274,50.603218453209905],[-115.27675796720719,50.60362132259526],[-115.27682567641513,50.603696611710554],[-115.27704435115336,50.60397682208483],[-115.27707787137578,50.60401586081031],[-115.27709822043877,50.604050204847404],[-115.27711086057325,50.604057110810594],[-115.27729654923635,50.60429607058157],[-115.2773292722355,50.60433843058689],[-115.27736332618187,50.60437524904203],[-115.27753771227711,50.6046017430914],[-115.27759584871052,50.604657364216436],[-115.27779205013437,50.60491210955776],[-115.27798148037901,50.605135517886694],[-115.27821387635228,50.60541819099466],[-115.27824766525166,50.60545611921594],[-115.27828145634066,50.60549403854453],[-115.27844614088714,50.605701423004305],[-115.27846622517252,50.60573687680616],[-115.27849908254659,50.60577868579228],[-115.27853300631512,50.60581605442792],[-115.27866934672632,50.60602238843449],[-115.2787517019887,50.60609626073443],[-115.27920871548778,50.606515445755676],[-115.27924703774129,50.60653450217292],[-115.27956158136868,50.60677288440751],[-115.27961014834905,50.60680882824676],[-115.2796472725605,50.6068328754658],[-115.27965991386804,50.60683978111663],[-115.27998950223845,50.60707507693092],[-115.28000081089354,50.60708753297336],[-115.28003793554377,50.60711158005413],[-115.28036939371209,50.60733910406368],[-115.2806029204767,50.60749806172161],[-115.28103355553174,50.607669888636956],[-115.28138394614612,50.60781859322927],[-115.2814484880578,50.60784756999703],[-115.28149798946829,50.60787963209593],[-115.28154962311982,50.60790281345865],[-115.28176413724235,50.608021866191244],[-115.28186234142345,50.60808932034051],[-115.28191210990848,50.608120272156434],[-115.28196281018982,50.608147343075025],[-115.28209599347497,50.608307354312814],[-115.28217940648831,50.608436422579935],[-115.28225855798927,50.60858324332248],[-115.28286641634253,50.608553009472956],[-115.28289583260808,50.60854960915584],[-115.28335581598918,50.60853967777429],[-115.28337072236083,50.6085371516431],[-115.28342768730822,50.60853813026476],[-115.28350049235728,50.608532692943115],[-115.28382977393517,50.60853109918832],[-115.28392055069033,50.60851036487854],[-115.28398044672946,50.60849913218365],[-115.28405538335201,50.60848481374599],[-115.2841144799394,50.60847691126174],[-115.28430948786291,50.60837938674261],[-115.28449742217316,50.60837090515317],[-115.28465793769367,50.60835750275795],[-115.28495752324909,50.608420046733094],[-115.28528997319646,50.608524405623186],[-115.2857427378061,50.608663706229976],[-115.28579650591361,50.60867800481742],[-115.28587702599499,50.608700003258335],[-115.28622734241945,50.60867034368408],[-115.28628404118861,50.60867243094413],[-115.28635578048096,50.60867143215504],[-115.28642658628537,50.608674323109184],[-115.2866111903519,50.60867971864405],[-115.28670964759212,50.60886532755747],[-115.28689378928348,50.60923019079994],[-115.2870659978617,50.609346839789524],[-115.28738046832459,50.60958575862741],[-115.28742917671634,50.609621148325616],[-115.28746724084301,50.60964130306363],[-115.2877776154351,50.60971852368427],[-115.28788090401885,50.60970524149168],[-115.28789554414726,50.6097038248604],[-115.28792522715966,50.6096993131181],[-115.28795464166134,50.60969592035054],[-115.28802864777619,50.609685480177504],[-115.28824906345491,50.60966083774106],[-115.2885078022848,50.60971486923859],[-115.28863011716619,50.609741487462],[-115.28903670776029,50.60995411280815],[-115.28918989749201,50.610030857404844],[-115.289446366171,50.61015396596821],[-115.28953925976849,50.610243615273774],[-115.28958783846767,50.610279554612276],[-115.28963681568314,50.61031383321061],[-115.28988568996564,50.61052821318844],[-115.2899344013487,50.61056360175117],[-115.28996900511332,50.61059818698391],[-115.29028083650996,50.6108481983275],[-115.29055979402092,50.61111603356433],[-115.29076049899761,50.61129279403143],[-115.29091608651359,50.61141918402272],[-115.29109310743264,50.61151584455922],[-115.29115659567962,50.61154925600122],[-115.29118308179096,50.61155807356818],[-115.29120743960605,50.61157576310634],[-115.29153912492716,50.61174306321824],[-115.29158863781592,50.61177512068237],[-115.29163921595683,50.61180273769119],[-115.29202028379491,50.612002653230164],[-115.29244088915335,50.61221661035176],[-115.29258250406788,50.612401283047184],[-115.2928013192692,50.61268145954293],[-115.29283539432473,50.61271826401626],[-115.2928678696817,50.612761738016474],[-115.29302013719634,50.61296163551453],[-115.29305314757289,50.61300288034771],[-115.29307297823314,50.613039450194194],[-115.29309414239084,50.613070460605556],[-115.29310492364819,50.61308513544718],[-115.29330777083356,50.613372287455114],[-115.29350223755424,50.613634764331266],[-115.29355653880525,50.61388537582718],[-115.29361057146168,50.6141967359822],[-115.2936289397329,50.614239406838934],[-115.29363639425246,50.61426795353677],[-115.29363319912332,50.61428127485075],[-115.29366181379802,50.61440047932086],[-115.29374127953163,50.61454618073968],[-115.29376018058858,50.61458663133815],[-115.29376843189733,50.61461185656808],[-115.2937790816795,50.61462708193149],[-115.29394972590158,50.61492928710596],[-115.2940893595332,50.61518190836128],[-115.29405367868365,50.615449931245195],[-115.29403530164913,50.615765065176674],[-115.29402465125067,50.61580946951372],[-115.29401932604354,50.61583167168086],[-115.29402904322326,50.61585078681755],[-115.29401772341237,50.616017239025844],[-115.29405046832916,50.616119232033626],[-115.29406750649649,50.616167453259266],[-115.29407815674824,50.616182678565586],[-115.29408654272368,50.61620734422911],[-115.29421366476903,50.61651214887891],[-115.29422311591874,50.61653237409091],[-115.29444555388626,50.61703609112871],[-115.29449001403232,50.61714887758518],[-115.29448615116935,50.617343876115854],[-115.2944894786834,50.6173896337549],[-115.2944797613188,50.61743014823254],[-115.2944717706258,50.617701987315534],[-115.29447509815171,50.61774774493535],[-115.29446444771796,50.617792149208476],[-115.29446884028816,50.617833466396554],[-115.2946381715924,50.61808158151443],[-115.29470393450154,50.618165188689964],[-115.29479073000303,50.61851890083755],[-115.2947973858315,50.618610415965584],[-115.29478180876765,50.618854258835945],[-115.29479432234307,50.61892135159461],[-115.29481162862895,50.61896846243801],[-115.29480936435766,50.61897790277973],[-115.29481455613974,50.619015889577355],[-115.2948648773007,50.619283150398665],[-115.29486900412418,50.619325577602616],[-115.29487646027381,50.61935412404295],[-115.29487220010918,50.61937188573363],[-115.29489230220706,50.61946697426347],[-115.29495606942338,50.61967817902277],[-115.29501970517373,50.619889934304396],[-115.29523431189294,50.62018786517745],[-115.29535173548041,50.62035427573809],[-115.29533389575353,50.62048829100154],[-115.2953245767992,50.62052714468463],[-115.2953204508936,50.62054434687451],[-115.29531299571283,50.620575429818096],[-115.2952763842356,50.62072807368996],[-115.29526373726222,50.62084043740091],[-115.2952670658261,50.6208861948244],[-115.29527784966602,50.6209008693179],[-115.29527345744863,50.62091918160281],[-115.29527026233187,50.62093250285723],[-115.29527691949329,50.6210240176912],[-115.29532578081576,50.62123774952958],[-115.29537131388743,50.6214057239024],[-115.29539461307093,50.62148749086102],[-115.2954022024164,50.62169439205468],[-115.29542483721815,50.62177892979741],[-115.29544068138156,50.621891779611225],[-115.29553893772537,50.622078487873914],[-115.29557088993596,50.62212418080424],[-115.295589930018,50.62216407123162],[-115.29566209232914,50.6223999402689],[-115.29570096973481,50.62241676157317],[-115.29576767187199,50.62243684870703],[-115.29579403323656,50.62244621567383],[-115.295819329591,50.62246002304938],[-115.29613406949338,50.62257908670826],[-115.2960869405314,50.62265630795568],[-115.29585382164355,50.62297223422857],[-115.2957538360977,50.62315054803551],[-115.29560978415316,50.62345294118276],[-115.29558568625004,50.62349377186218],[-115.29556145410406,50.62353516202565],[-115.29548756237611,50.62366431460719],[-115.295455211464,50.6237991874712],[-115.29544469263614,50.62384304090514],[-115.29543430798948,50.6238863348448],[-115.29534510635334,50.6241985806228],[-115.2953218066447,50.62423608090772],[-115.29504913058466,50.62465722124066],[-115.29502583039155,50.62469472144299],[-115.29492290825549,50.62500451209871],[-115.29489867681576,50.62504589316218],[-115.29488829136565,50.625089186988475],[-115.2948177235816,50.62526409607907],[-115.29496445023537,50.62524876632716],[-115.29502250176938,50.62524529860785],[-115.29503714673189,50.62524388106461],[-115.29509626341245,50.625235972913956],[-115.295595426962,50.625182624169426],[-115.2958593208948,50.62515591671111],[-115.29643237584517,50.62509268735338],[-115.29691702343969,50.62504019979658],[-115.29697507455388,50.62503673105927],[-115.29699065229758,50.62503142345762],[-115.29704963417028,50.62502407376075],[-115.29747503022104,50.624980052454234],[-115.297534014077,50.62497269361972],[-115.29760790892992,50.624962806767634],[-115.29782852841235,50.62493758633786],[-115.29808722434937,50.62487288720786],[-115.2988562484856,50.62464857059082],[-115.29930240141279,50.62451795384343],[-115.29936364582845,50.62450116254703],[-115.29943966892792,50.6244823935982],[-115.29962433227962,50.62442813843303],[-115.29980794532958,50.62449758147044],[-115.29987358771791,50.624522106538656],[-115.29988597093616,50.62453011985774],[-115.29994029484153,50.62454219112411],[-115.30035838545322,50.624707587221515],[-115.30043760845439,50.624735134152616],[-115.30080525362756,50.62499162333874],[-115.30100710737709,50.62504466397435],[-115.30118020443848,50.62509832072203],[-115.30134399450907,50.62525046902537],[-115.30139153218586,50.62529085190166],[-115.30142748676295,50.62531988239611],[-115.30150885021703,50.62539817660635],[-115.30176770339872,50.62551181412466],[-115.30180911290718,50.62551809159327],[-115.30185012217586,50.62552603865802],[-115.30187741911652,50.62553151431113],[-115.30208127351266,50.6255762226704],[-115.30235235958811,50.625579164589006],[-115.30272423941553,50.62557935180756],[-115.30320224240961,50.625614227685325],[-115.30325710069566,50.625624077084716],[-115.30369848410591,50.625632691792596],[-115.3037702500658,50.62563168180934],[-115.30382723710915,50.625632649979465],[-115.30384095171824,50.62563511225484],[-115.30426848661571,50.625641821929435],[-115.30433932241829,50.62564469255838],[-115.3044100241346,50.625648122642744],[-115.304595764262,50.62564904778459],[-115.3048744605738,50.62573960746342],[-115.30494010753813,50.6257641295107],[-115.3051915222601,50.62590884241422],[-115.30552961612385,50.626050014576485],[-115.30554027259677,50.62606523860625],[-115.30583404708783,50.62627197398736],[-115.3058709353578,50.626297122025285],[-115.30592047448711,50.6263291725587],[-115.30593339133763,50.62633496494276],[-115.30597120974797,50.626356231956414],[-115.30624607078235,50.62652251823491],[-115.30628389162644,50.626543776256696],[-115.30634847645453,50.62657273794391],[-115.30636019527846,50.62658353027289],[-115.3063982822465,50.62660367813083],[-115.30677967518463,50.62680298012416],[-115.30723618077037,50.62704702528014],[-115.30744192473844,50.62714359060111],[-115.30784129802987,50.62732758865622],[-115.30789296758874,50.627350757265255],[-115.3079194684161,50.62735956180464],[-115.30795755461222,50.62737971799195],[-115.30798272554827,50.62739407314697],[-115.3081509182749,50.62746826069065],[-115.30821033652528,50.62757850198519],[-115.3082283240831,50.62762283937841],[-115.30823778387126,50.62764306313129],[-115.3082473777215,50.62766272737911],[-115.30825683752664,50.62768295112953],[-115.30857806618933,50.627894602321355],[-115.308650784618,50.62794933697822],[-115.30868913761162,50.62796838277409],[-115.30898842937748,50.628271613732956],[-115.30901268669116,50.62834949616332],[-115.30914021232748,50.62865316032359],[-115.30915700546264,50.62870248864204],[-115.30916420414691,50.628732152812645],[-115.30919651820157,50.629015255081455],[-115.30920092540462,50.629056571131116],[-115.30920519856986,50.62909844668252],[-115.30922353113326,50.62938019734144],[-115.30921528620112,50.62941461126457],[-115.30910578415431,50.629692528873996],[-115.30901784213619,50.62994016365333],[-115.3089055458824,50.63022973276251],[-115.30887452152838,50.63023980060654],[-115.30882499535203,50.63026738015519],[-115.30879011528823,50.630293540338926],[-115.30877453711453,50.630298849556475],[-115.30847298209933,50.63048267434489],[-115.30842132747446,50.6305191346924],[-115.30838963889448,50.63053197326533],[-115.30835595427997,50.630553142191786],[-115.30806799867193,50.63079960673286],[-115.30783089762917,50.6310129407932],[-115.30769528011287,50.63128038234369],[-115.30753849581376,50.63157644519393],[-115.30751307428545,50.63162282865183],[-115.3075090839713,50.6316394804444],[-115.30750389549438,50.631661132214454],[-115.30745744266171,50.63173557768932],[-115.30748427598462,50.631981812819646],[-115.30747576322011,50.63201733662574],[-115.3074995561986,50.632335962063074],[-115.30754285138195,50.63287171758982],[-115.30753768044003,50.63295299775625],[-115.30736075459937,50.63315397508858],[-115.30732281098042,50.63319290550936],[-115.30730457127574,50.63320931567249],[-115.30728460338804,50.63323293715132],[-115.30714575127917,50.633394433060396],[-115.30715456278288,50.633477064885774],[-115.30714392114561,50.63352146953189],[-115.30715684022003,50.63352726172427],[-115.30714699669738,50.63356833601975],[-115.30717291437954,50.63387808889043],[-115.30760452017157,50.634345746843564],[-115.30788786717967,50.63465595707747],[-115.30789865844147,50.634670630106946],[-115.30790506129118,50.634703615614704],[-115.30798543940551,50.63496524730343],[-115.30800369785389,50.635008465343226],[-115.30802182225897,50.635052242876235],[-115.30811966229435,50.635360422722066],[-115.30813645681509,50.63540975079774],[-115.30871573760575,50.635738910210016],[-115.3087271955,50.63575080340743],[-115.30903050983265,50.635977751470364],[-115.3090792638569,50.636013130579386],[-115.30909191788876,50.636020032647664],[-115.30910337382613,50.63603193468327],[-115.30912908198643,50.63604406919575],[-115.30928759876859,50.63615877797871],[-115.30939536781578,50.636246429026436],[-115.3094438564178,50.63628291808251],[-115.30946823481243,50.63630060310254],[-115.30949274516213,50.63631773749839],[-115.30961409913921,50.636408409363774],[-115.30977476702496,50.63657386462744],[-115.3099590169563,50.63676033488515],[-115.31023838439734,50.637027561887145],[-115.3102711622545,50.637069910544966],[-115.31023582649173,50.637336821445416],[-115.31022518698425,50.63738122618028],[-115.31021986722264,50.63740342854651],[-115.31021454745576,50.63742563091191],[-115.31021164066317,50.63749747919506],[-115.3100165814597,50.637654682610446],[-115.30997863846996,50.63769360484452],[-115.30996079583936,50.63770835461834],[-115.30994082734905,50.6377319764457],[-115.30963818366988,50.63797987128452],[-115.30943899612062,50.638154284835515],[-115.30895676961624,50.63825590354431],[-115.30848812559489,50.638360541317574],[-115.30841394507507,50.63837154533778],[-115.30835295118447,50.63838723121606],[-115.30820206147213,50.63841978953216],[-115.30793169573745,50.63841353155349],[-115.307902129865,50.638417488974696],[-115.3078608395861,50.638410663251896],[-115.30778905331837,50.638411675853874],[-115.30729067444958,50.63840155162818],[-115.30645147248705,50.638380633856904],[-115.3059538904328,50.63836718221127],[-115.30589688720116,50.63836621514344],[-115.3058822383065,50.63836763409146],[-115.30581151647407,50.63836420499338],[-115.30538385822672,50.63835751022127],[-115.30531420090813,50.63834964038562],[-115.30524228268662,50.63835120195981],[-115.30521391308253,50.63835016763549],[-115.30474817495832,50.63838294160383],[-115.30435568520807,50.63840860215532],[-115.30390353023314,50.638444394256986],[-115.30340955255221,50.6384755773535],[-115.30335068608866,50.63848237968798],[-115.30333683556951,50.63848046800003],[-115.30329341660136,50.63848252138952],[-115.30327770292251,50.63848838039638],[-115.30285564502977,50.63851799184952],[-115.30278359229968,50.63852011132725],[-115.30271060686714,50.638526120544824],[-115.30221556481958,50.63856172986206],[-115.30148824676971,50.63861123028982],[-115.3013721101717,50.638618172323056],[-115.30088026076523,50.63864045456034],[-115.30080727488291,50.63864646253088],[-115.30076412399784,50.638647395959936],[-115.30073442316095,50.6386519109663],[-115.30028572399092,50.638673257161926],[-115.30025522649338,50.63868109343837],[-115.30018024469862,50.6386954222536],[-115.29971264069474,50.638795582709164],[-115.29927566662516,50.638887345707744],[-115.29889888995352,50.63896675658962],[-115.29858217710162,50.639034375453264],[-115.29843114260859,50.639007834250435],[-115.29841862145204,50.63900038039315],[-115.29840370582531,50.6390029084454],[-115.29836348161294,50.63899163885786],[-115.29829488970925,50.638979324290574],[-115.29828024037495,50.63898074223863],[-115.29803517392662,50.63892863880303],[-115.29789159929247,50.6389306513047],[-115.29781874675663,50.63893609783282],[-115.29776147667405,50.63893623669228],[-115.29774802464543,50.63893266362143],[-115.29724524696198,50.6389408153591],[-115.29721581189631,50.638944219341155],[-115.2964124354145,50.639012444853996],[-115.29591511797436,50.6390574663185],[-115.29584333040577,50.63905847122703],[-115.29578446203439,50.6390652695614],[-115.29535986225775,50.63910540282956],[-115.2952880746002,50.63910640738051],[-115.29524478890964,50.639107898153085],[-115.2952150893452,50.63911240280579],[-115.29514143707854,50.63912117782353],[-115.29472309655935,50.63907558935775],[-115.29466715820037,50.6390701762322],[-115.29431781015246,50.63903523348248],[-115.293885755261,50.63898716958128],[-115.29382875150365,50.63898619634308],[-115.29339256391212,50.639014978038226],[-115.29331984496791,50.63901986214743],[-115.29326177551526,50.63902332892247],[-115.2930579995171,50.63903768254733],[-115.2928353128609,50.63901158623477],[-115.29276539029797,50.63900481863884],[-115.29269480061438,50.639000830624994],[-115.29220814208968,50.63894179570451],[-115.29136947378758,50.63885891626047],[-115.29088175264371,50.63880431582518],[-115.29085311660994,50.638804387916935],[-115.29081196286924,50.63879699640742],[-115.2907412415125,50.63879355775035],[-115.290322910637,50.63874794387379],[-115.29026697321568,50.63874252853814],[-115.29025352184077,50.63873895456219],[-115.29018373227007,50.6387316347506],[-115.28969468143438,50.638682579457054],[-115.2896533936779,50.638675746992824],[-115.28885842130757,50.63858969048709],[-115.28836937346233,50.638540629371136],[-115.28829891923198,50.63853607909903],[-115.28823006424318,50.63852486839676],[-115.28781200283177,50.638478143899206],[-115.28778336913324,50.63847820632203],[-115.28774114999753,50.638475253929045],[-115.28767149558716,50.63846737307046],[-115.28760184120125,50.63845949216841],[-115.28727023998094,50.6382910756374],[-115.28680946349975,50.63806471298091],[-115.28659066182178,50.63796287576585],[-115.28619421346424,50.63776659324879],[-115.28613321264467,50.63778226698014],[-115.28607114543516,50.63780238091817],[-115.28567397225969,50.6379070342754],[-115.28561377086477,50.63791937754298],[-115.28555170323357,50.63793949118847],[-115.28509352607887,50.63805981583509],[-115.28457327804263,50.63820025167558],[-115.28431368607168,50.638268248565936],[-115.28385443567261,50.63839300829269],[-115.28379343318728,50.63840868073188],[-115.28376173201478,50.638421512180685],[-115.28373109741774,50.63842990340577],[-115.28333417990982,50.63853343829437],[-115.28327211041093,50.638553550655885],[-115.2832116408288,50.63856700266899],[-115.28319685675561,50.63856897810188],[-115.28275158429707,50.638695087963825],[-115.28255405685066,50.63874296864966],[-115.28226288908449,50.638823241225516],[-115.28209506341015,50.63886661100716],[-115.28195760384438,50.63890270873856],[-115.2816516518343,50.638984946087774],[-115.28164243282187,50.639082875169294],[-115.28162989772788,50.63913504741255],[-115.2816256304552,50.63915280817514],[-115.28162136317911,50.639170568937146],[-115.28158585566459,50.639437470062774],[-115.28157518736128,50.63948187194797],[-115.28157198686618,50.63949519251283],[-115.28156665270348,50.639517393453644],[-115.2815634522033,50.639530714017695],[-115.28151634105761,50.6398459064731],[-115.28144532329294,50.640379708129394],[-115.2813984792824,50.640693781289194],[-115.28138781049589,50.640738183089674],[-115.28138354297536,50.64075594380895],[-115.2813771416883,50.64078258488679],[-115.28134056455865,50.64105392559741],[-115.28132989562943,50.64109832737325],[-115.28131949340316,50.64114161910136],[-115.28127344576673,50.641452370671026],[-115.28123071545306,50.64180886992006],[-115.28120135565193,50.641990611317965],[-115.28115210764273,50.64231467415077],[-115.28115835751977,50.64234822035203],[-115.28116460740613,50.64238176655154],[-115.28117539179891,50.642396442031306],[-115.28124110931871,50.642658955688134],[-115.2812442929237,50.64270526291377],[-115.28125187659961,50.64273325888425],[-115.28126239437029,50.64274904439131],[-115.28134514762631,50.64305977950133],[-115.28135991619769,50.64311743202571],[-115.28148924141384,50.64359170233538],[-115.28157199992327,50.64390242808344],[-115.28157518182336,50.643948744110986],[-115.28159328409296,50.64399252546975],[-115.2816592752548,50.644253919457874],[-115.28164860588089,50.64429832109434],[-115.28163806878653,50.64434217214697],[-115.28157616910752,50.64465932914291],[-115.2814765043295,50.64519319744633],[-115.28146276805417,50.645250360025564],[-115.28144157981664,50.645278976149044],[-115.28126662279706,50.645471028773],[-115.28122731242183,50.645515499925715],[-115.281203590823,50.64555465691762],[-115.28099038790057,50.645786740009754],[-115.28095241291454,50.64582565198212],[-115.28093322372521,50.64584594715088],[-115.28091430341469,50.64586512339847],[-115.28066312202711,50.64613611771075],[-115.28052840280428,50.64627981738316],[-115.28013361700043,50.646552800304256],[-115.2798045095703,50.64679069053611],[-115.27975388013853,50.646822696750675],[-115.27970311616856,50.64685526239746],[-115.27942677083361,50.64705225610564],[-115.2793761387038,50.64708427101888],[-115.27935828443896,50.647099006847206],[-115.27932537416471,50.64711683648352],[-115.27899652727953,50.64735360525863],[-115.27884409722527,50.647451860484644],[-115.27822343555256,50.64753313228216],[-115.27773665565489,50.64759330731817],[-115.2776636542796,50.64759929119154],[-115.27763421206167,50.6476026899678],[-115.27761849185055,50.64760854529347],[-115.2776047719741,50.647606079856025],[-115.27717700741597,50.64765890432601],[-115.27711692299206,50.64767069228811],[-115.27704405377531,50.64767612518257],[-115.276556205362,50.64774072627568],[-115.27598083093389,50.647812181320504],[-115.2757273091991,50.64785462691481],[-115.27566815936316,50.647862524576496],[-115.27555861588365,50.64796095268826],[-115.27529428184523,50.64804835759455],[-115.2752788280876,50.64805310256655],[-115.27520489036442,50.64806297433901],[-115.2747994867903,50.64814181150753],[-115.27472528188746,50.64815279298033],[-115.27466412844011,50.648169019690535],[-115.27455968196573,50.64818672021116],[-115.27420595240226,50.64828873866543],[-115.27377427833949,50.64841727705612],[-115.27341616895842,50.648477976494014],[-115.27292737114671,50.64854645114244],[-115.27286728442184,50.64855823680204],[-115.27332575313253,50.64867538090228],[-115.2733805005994,50.648685795302846],[-115.27340794054948,50.64869072720915],[-115.27344803263284,50.64870256511756],[-115.27363717598641,50.64874929837617],[-115.27364814025623,50.64894176408284],[-115.27378541918264,50.6490851271948],[-115.27421119353639,50.64933824890868],[-115.27448928089478,50.64949128872165],[-115.27457504676215,50.64955128060733],[-115.27462458920083,50.64958334415636],[-115.27464882656875,50.64960159595631],[-115.27467319635787,50.64961929718218],[-115.27495419772391,50.64981975282038],[-115.27500494085376,50.64984682555153],[-115.27502931305153,50.64986451781417],[-115.27505341620241,50.649883328968926],[-115.2753599934631,50.65009648512995],[-115.27538329610518,50.65011862626248],[-115.27579582698849,50.6505459462778],[-115.27583071757208,50.65057942422463],[-115.27609798316254,50.650837047132555],[-115.27614565973842,50.650876880088525],[-115.27615711073658,50.65088878529741],[-115.27617934868165,50.65091535743832],[-115.27642691669554,50.651135857704496],[-115.27646167368785,50.651169894879985],[-115.27649522860223,50.65120893157057],[-115.27654304044327,50.6512482048892],[-115.2765791321168,50.65127669192663],[-115.27662667506775,50.65131708410579],[-115.2766614323515,50.65135112121166],[-115.27695841908272,50.65160423329747],[-115.27699437679131,50.65163327963836],[-115.27712811005227,50.65202959447823],[-115.27724306045072,50.65208730440538],[-115.27754103474462,50.652217271116804],[-115.27765625303388,50.65227387058465],[-115.27770606755169,50.652304822639714],[-115.27774402896215,50.65232553911854],[-115.27775775028701,50.65232800452496],[-115.2779860532822,50.652450083045274],[-115.27805570408258,50.652517605734694],[-115.27810351867957,50.65255687832283],[-115.27813734292627,50.65259480443323],[-115.27840463372506,50.6528524211925],[-115.27865129038308,50.65307679664526],[-115.2788361223462,50.65332017988667],[-115.27908887904869,50.653638286529414],[-115.27909833119925,50.65365851212431],[-115.27912163753014,50.65368065238148],[-115.27924571835665,50.6539385854248],[-115.27927634239946,50.653989831394455],[-115.27946888093115,50.65432027649217],[-115.27956847605141,50.654501441472135],[-115.27950000887706,50.65484579344341],[-115.27948237503855,50.654978690609646],[-115.27953960504546,50.65515745056577],[-115.27954372069482,50.65519987651374],[-115.27955557503884,50.65521011184001],[-115.27956502773007,50.655230337357416],[-115.27956182551752,50.65524365761387],[-115.27963502422378,50.655475087599044],[-115.2796414092914,50.65550807390725],[-115.27965818008056,50.65555740508141],[-115.27966896714337,50.65557208047579],[-115.27966349563943,50.655594840349686],[-115.2797610535584,50.65590358806339],[-115.279914776361,50.656395544041004],[-115.27993381493118,50.65643544438609],[-115.28007668000241,50.65673438600521],[-115.28010864326683,50.6567800725923],[-115.28012754981617,50.65682052345631],[-115.28025244348679,50.65707513323255],[-115.28028440717227,50.657120819750716],[-115.28030344637793,50.657160719998345],[-115.28039971668969,50.65735575443622],[-115.28046003925493,50.657462125944015],[-115.28058068737695,50.65767485994111],[-115.28091785792408,50.65788016812468],[-115.28092958093899,50.657890953842745],[-115.2810628883818,50.658110592290186],[-115.28113255257958,50.65817811260176],[-115.28118037588891,50.65821738360538],[-115.28121620927178,50.658246978926144],[-115.2813803193926,50.658398040508615],[-115.2814963588331,50.658451305526874],[-115.28156070672074,50.65848139049313],[-115.28161373264774,50.65849902031126],[-115.28201301202408,50.65868421402833],[-115.28203845688185,50.658697473361904],[-115.28238216166402,50.65893521233273],[-115.28249443521055,50.65912327860987],[-115.28266810944321,50.65941326582465],[-115.282686884938,50.65945427557943],[-115.28270926331564,50.65948029557495],[-115.28271885279112,50.659499961270186],[-115.28281820569843,50.65968223225156],[-115.28285829285531,50.6597537020181],[-115.28287653720776,50.65979692289052],[-115.28288705954334,50.65981270792273],[-115.28290930375033,50.65983928731864],[-115.28305206711035,50.66013877448392],[-115.28317698657592,50.660393379977435],[-115.28293774361556,50.66061442368469],[-115.28277407354952,50.66075929477832],[-115.28262227436736,50.66085477410303],[-115.28255643836704,50.66089042582677],[-115.28250699459524,50.66091744209832],[-115.28218940231093,50.66110704495368],[-115.28215341551397,50.66113763591487],[-115.28210250263112,50.66117076154759],[-115.28177436802147,50.66140420448633],[-115.28161709329993,50.661522442185884],[-115.2814958075575,50.66161008004785],[-115.28137225209434,50.661707157354634],[-115.28121817744572,50.66181207424509],[-115.28119925053358,50.66183125017567],[-115.28090269059008,50.66205241945665],[-115.28086469964573,50.662091339523876],[-115.28083178112284,50.66210916040569],[-115.28081405372807,50.6621233456354],[-115.28069062774534,50.662219871560204],[-115.28052374214985,50.66237805924987],[-115.28050374508659,50.66240168398629],[-115.28049947515903,50.66241944421224],[-115.28027498185331,50.66269813296291],[-115.28014419414136,50.66288481430963],[-115.28023629905071,50.66321631861457],[-115.28027876868171,50.663337425157934],[-115.2803793222037,50.66351469798355],[-115.28041222361023,50.66355650351132],[-115.28042194532244,50.66357561874252],[-115.28043113328445,50.66359695399716],[-115.2805836320185,50.66385593198189],[-115.28061840199996,50.663889967345334],[-115.28064264952049,50.663908217530945],[-115.28066729630629,50.663924807132126],[-115.28084168106793,50.664092763657486],[-115.28091760908,50.66419382008567],[-115.28125422325759,50.664639868145485],[-115.2812871263022,50.664681673359176],[-115.28153571134656,50.664957904205274],[-115.28156968232386,50.66499526926705],[-115.28160351886079,50.66503319376359],[-115.28180534590564,50.66526570447124],[-115.28183824992139,50.6653075094912],[-115.28186143128572,50.66533019943487],[-115.28188581244797,50.66534789875228],[-115.28208790921762,50.66557929884828],[-115.28212081372598,50.66562110376927],[-115.28242122656634,50.66597958730421],[-115.28244347355113,50.66600616659773],[-115.28252180998263,50.6660972315786],[-115.2825523136965,50.66614902647271],[-115.28269524237697,50.66638833523548],[-115.28272828253004,50.66642958048993],[-115.28273640481396,50.66645535553853],[-115.28274599365545,50.666475029948195],[-115.28275758486512,50.666486374810674],[-115.2831129760248,50.66661619325505],[-115.28316454566598,50.66663992280623],[-115.28323024054107,50.666664456441325],[-115.28338868125857,50.666720122400406],[-115.28364972889275,50.666825466829934],[-115.28382096401569,50.666887477416374],[-115.28416806157739,50.667170963796],[-115.28422828717008,50.667218256607214],[-115.28454314975657,50.66745715802164],[-115.28459191865629,50.66749254650859],[-115.28464175482713,50.66752349490365],[-115.28489652485804,50.667714560988394],[-115.28492197781581,50.66772781064131],[-115.28497474918393,50.66774654868495],[-115.28501365969483,50.667763381685624],[-115.28503937950504,50.66777552129321],[-115.28545675046831,50.66794540481476],[-115.28549499544899,50.66796500825012],[-115.2856472828036,50.66816546206726],[-115.28582794848839,50.66842658075776],[-115.28590562800088,50.66852042258687],[-115.28610857082415,50.66868885858982],[-115.28614334873188,50.668722892035106],[-115.28617932608073,50.66875193482131],[-115.28619198581538,50.66875883921888],[-115.28645542997731,50.66897344726317],[-115.28649020836815,50.66900748058881],[-115.28650286822257,50.66901438494902],[-115.28653898048466,50.66904286815925],[-115.28657495834554,50.6690719108068],[-115.28677362818809,50.66931773164112],[-115.286919934624,50.66948352857946],[-115.28697602299667,50.66960764646512],[-115.28688215639247,50.669819487146874],[-115.28681256617921,50.66993030707025],[-115.28686238491636,50.670080514835824],[-115.28688063518113,50.67012374340188],[-115.28689968789047,50.67016363302505],[-115.28690834675969,50.67018718761703],[-115.28691780591281,50.67020741215024],[-115.28694311463941,50.67028085540228],[-115.28692442003947,50.67047781713215],[-115.28691161555909,50.67053109803335],[-115.28675457926032,50.67070785741287],[-115.28683705660058,50.67084134374446],[-115.28702132847943,50.671147113459135],[-115.28708513418474,50.67135830079228],[-115.28713602245932,50.671504068109044],[-115.28725955118423,50.671645506027815],[-115.28729353197991,50.671682869048894],[-115.28732857986046,50.67171579198549],[-115.28734110616159,50.67172325567734],[-115.28735070027838,50.671742920687784],[-115.28757404877193,50.67194570162744],[-115.28760776330456,50.67198417455787],[-115.28762042416967,50.67199107876681],[-115.28809502422936,50.672161368490166],[-115.28821350782849,50.67220463547247],[-115.28877299694062,50.67249842596211],[-115.28902980520809,50.67274078635904],[-115.28905552895358,50.672752924968776],[-115.28910404043813,50.672789421280946],[-115.28913868936381,50.672824013076955],[-115.28921185797975,50.67287708800601],[-115.28929353778241,50.67307353669205],[-115.2893125917519,50.67311343464334],[-115.2893179195677,50.67315085978823],[-115.2893284472949,50.67316664396175],[-115.2893404193323,50.67335521300707],[-115.28937026153994,50.67346941062505],[-115.28939543528367,50.67360303802061],[-115.28938633695455,50.67387929856491],[-115.28945749981014,50.6740003283637],[-115.28958449557145,50.67424659288938],[-115.28963114209117,50.67429085904871],[-115.28966486014595,50.67432933125024],[-115.28971270597661,50.67436860672004],[-115.28994434050303,50.674596597121514],[-115.2899771266411,50.674638949846546],[-115.29001217879514,50.67467187182429],[-115.29027753544224,50.67493833351033],[-115.29039295526229,50.67505399314696],[-115.29078973982519,50.67536951170393],[-115.29110362556769,50.67561284124946],[-115.2911514761571,50.67565210716218],[-115.29117693332438,50.67566536414298],[-115.29118733001835,50.67568169866484],[-115.29121292162206,50.67569439618586],[-115.29147403398237,50.67585935543493],[-115.29146976711318,50.67587711579627],[-115.2914730958907,50.675922870324236],[-115.29146642889614,50.67595062088644],[-115.29147615799519,50.67596973487203],[-115.29147239983345,50.67628342859165],[-115.29147665732093,50.676384927797876],[-115.2916168545412,50.6768147578143],[-115.29165403409183,50.67695805849581],[-115.29171440630824,50.677124046718056],[-115.29173239742421,50.677168384149816],[-115.29175172411107,50.67720716258872],[-115.29182155989788,50.67739337465363],[-115.29185994483987,50.6774720503763],[-115.29187780396607,50.67751693833686],[-115.29188753357948,50.67753605225103],[-115.29188206559145,50.677558812128844],[-115.29198175933553,50.677799586245015],[-115.2920093484499,50.67786358806466],[-115.2922054105604,50.67823976504123],[-115.2922881846058,50.67837213612641],[-115.29244493186036,50.67867351763139],[-115.2924638587359,50.67871396534944],[-115.29247452114176,50.67872919855121],[-115.29247212109746,50.67873918874203],[-115.29248185122856,50.678758302576576],[-115.29253050200833,50.6788538717304],[-115.29268299625926,50.678994119868],[-115.29273071743172,50.679033944396416],[-115.29275271031693,50.67906163124241],[-115.2929105392384,50.67917967860906],[-115.29303130624875,50.67933276851183],[-115.29311808464264,50.679448488485825],[-115.29332482804979,50.6798398870264],[-115.29340093980993,50.680000016454024],[-115.29345265834196,50.68014244932744],[-115.29347092117185,50.68018566741814],[-115.293481718663,50.68020034104613],[-115.29348878298723,50.68023055497616],[-115.29359728790078,50.68049433010617],[-115.29361634884187,50.68053422697062],[-115.29361941349721,50.6805810912029],[-115.29364794100934,50.68064120289099],[-115.29377831061156,50.68087358987534],[-115.29389921909949,50.68108574408469],[-115.2941162439767,50.681374775168514],[-115.29422422417316,50.68152151055839],[-115.29432047263528,50.68165746181435],[-115.29435246812662,50.6817031429635],[-115.29436299962806,50.68171892650152],[-115.2943712636091,50.68174414966346],[-115.29457496440733,50.68202904688212],[-115.29458229639394,50.68205815065552],[-115.29459189375613,50.68207782368178],[-115.29472000772559,50.68237926482561],[-115.29491104618678,50.682776525434754],[-115.29489598109883,50.682898870973474],[-115.29489131407723,50.68321644286063],[-115.29489571343917,50.68325775680358],[-115.29490331247278,50.683285750492466],[-115.29489904625423,50.683303510828296],[-115.29489158125416,50.683394216255856],[-115.29496383943093,50.683570434800664],[-115.2949829028917,50.68361033128605],[-115.29499023540083,50.68363943497801],[-115.29499983541278,50.683659099052115],[-115.29512808888357,50.68395998859178],[-115.29518115063681,50.684096869892215],[-115.29520061517144,50.684313988945796],[-115.29530220672237,50.68448736326421],[-115.29549392739489,50.68482220877609],[-115.29554192388557,50.68486092180638],[-115.29575990980297,50.68508643417113],[-115.29579350683376,50.68512546347763],[-115.2958413716601,50.68516472693542],[-115.2960010967444,50.68533463251522],[-115.29597390107021,50.68544785463927],[-115.29589404524624,50.685780310190005],[-115.29584591958574,50.68598066434182],[-115.29577126231729,50.68629146977833],[-115.29575846382464,50.68634475069381],[-115.29575006373078,50.686379720732006],[-115.29568500415554,50.68665056529471],[-115.29567433857656,50.686694966030785],[-115.29566793921902,50.68672160647087],[-115.29558941421764,50.68704850233195],[-115.29544742388984,50.687579957474235],[-115.29535902804578,50.68788829892026],[-115.29534542864305,50.687944909735435],[-115.29533702792818,50.68797987967612],[-115.29527303017879,50.68824628342288],[-115.29524863053878,50.68828822088856],[-115.29523809853606,50.68833206204906],[-115.29520556588815,50.688467483883365],[-115.2951634331509,50.68864286621253],[-115.29514383347495,50.68878408117828],[-115.29493809715153,50.689163430225264],[-115.29493303036979,50.68918452047855],[-115.29479382794275,50.68946579850562],[-115.2947707605864,50.68950218574338],[-115.29474835882473,50.68953580238388],[-115.2947451586698,50.689549122532654],[-115.29461221995726,50.68980431936873],[-115.29460195366254,50.68984705037881],[-115.29458075275477,50.68987566747961],[-115.29457675246836,50.68989231765287],[-115.29445994579422,50.69013998732698],[-115.29443327642443,50.690191364052595],[-115.29424912820323,50.690719306554776],[-115.29414698389841,50.691025182629836],[-115.2941365824631,50.69106847297981],[-115.29411644749959,50.69109264991538],[-115.29411111340957,50.69111485009204],[-115.29401950119208,50.691376885013405],[-115.29400896726472,50.691420725897515],[-115.29400496662862,50.691437376019685],[-115.29399776547616,50.69146734623855],[-115.29389561775722,50.691773221812475],[-115.29372279131363,50.692253991608794],[-115.29372612360122,50.692299745180556],[-115.2937495820989,50.6926194695477],[-115.2937539813316,50.69266078307519],[-115.29375731368118,50.692706536623945],[-115.29377877596973,50.69297494839187],[-115.29378210836788,50.693020701922876],[-115.29377570698601,50.69304734205474],[-115.2937853063438,50.69306701489409],[-115.29379609994758,50.693379826746906],[-115.29382849327355,50.69372199408254],[-115.29376754745431,50.693916001570024],[-115.2936652602957,50.69422242660814],[-115.29364005570118,50.694267693436096],[-115.29363578793937,50.69428545349246],[-115.29362951859115,50.69431154301425],[-115.29353683221635,50.69457800767991],[-115.2935412314452,50.694619321119966],[-115.29353056185307,50.69466372123193],[-115.29351214872442,50.69497882529277],[-115.29346412345296,50.69547677229192],[-115.29346852270297,50.695518085690864],[-115.29343610655675,50.695831836075804],[-115.29342543657249,50.695876236114024],[-115.29342983582603,50.69591754949489],[-115.29341649297042,50.696151930247744],[-115.29340795690834,50.696187450263665],[-115.29339648655362,50.69623518028161],[-115.29338928422538,50.69626515029084],[-115.29338608318754,50.69627847029453],[-115.2933248607161,50.69659284365478],[-115.29326643603186,50.696955190196135],[-115.29322535480269,50.697126130035194],[-115.29316439681536,50.697439392993715],[-115.29316799568456,50.69748403630311],[-115.29315732504243,50.697528436228914],[-115.29310677004183,50.69779840909529],[-115.29309636603415,50.697841699001174],[-115.29308916324783,50.69787166893409],[-115.29308489492546,50.69788942889373],[-115.29307315702155,50.69793826877969],[-115.29311048594938,50.69820027130334],[-115.2931628840382,50.69851881089748],[-115.29317688571322,50.69857978804301],[-115.29319381842032,50.698688187859126],[-115.2931960835563,50.698738381084596],[-115.29323541228945,50.69905168652169],[-115.29323874458488,50.69909743973986],[-115.29324821268142,50.69911766304269],[-115.29324501139833,50.69913098299738],[-115.2932579475599,50.69913677634801],[-115.29327074674735,50.699262376580165],[-115.29344945296083,50.6993534732626],[-115.29351413425458,50.699382439874434],[-115.29356587934963,50.69940561313615],[-115.29396263750986,50.69960296503694],[-115.29405159177068,50.69965017783914],[-115.29418162183943,50.69976496343695],[-115.29419549087646,50.699766876122894],[-115.2943859379652,50.69980913135876],[-115.2944407526743,50.69981953478606],[-115.29450943647925,50.69983185083302],[-115.29483631744291,50.6999026266978],[-115.2949188727316,50.699916846216105],[-115.29498862375782,50.699924721970255],[-115.29505744017393,50.699936487119025],[-115.29534698077731,50.69998377263044],[-115.2955428987415,50.700003266440184],[-115.295894855899,50.700029322804816],[-115.29638951397605,50.699998184167676],[-115.29671613006018,50.699950799425714],[-115.2968696364977,50.699967901555425],[-115.29693912125812,50.699976886094156],[-115.29700807267497,50.699988090597714],[-115.2971626460792,50.70000075230754],[-115.29742671433372,50.70003478606949],[-115.29749553369089,50.7000465408337],[-115.29756635205987,50.70004997495548],[-115.29778961091144,50.700074949916775],[-115.29806007992792,50.7000823420381],[-115.2981023576804,50.700085290306916],[-115.29825786608873,50.70009406103586],[-115.29848752514218,50.7000923944342],[-115.29893870552156,50.70006328697439],[-115.29898951990441,50.70009034717345],[-115.29900232483178,50.700096690416174],[-115.2993652395518,50.70031573784921],[-115.29939058088306,50.70032954313295],[-115.29979458422882,50.700616159979035],[-115.29991329400856,50.700718486128594],[-115.30021940808606,50.700995083007825],[-115.30021407583759,50.70101728321584],[-115.30021741539184,50.70106303611912],[-115.30019570701793,50.701332386009334],[-115.30018304386269,50.701385107038284],[-115.30043927302674,50.70157113046508],[-115.30048689903275,50.701671133606325],[-115.3006906011605,50.70201620478725],[-115.30082599591326,50.70216840563797],[-115.30095098516391,50.70230427320177],[-115.30121028040139,50.702417901605926],[-115.30125789967641,50.70245828082763],[-115.30149093851071,50.702681240176176],[-115.30152455369333,50.70272026694416],[-115.30157244229382,50.70275952712593],[-115.30172384530049,50.70290475842533],[-115.30179348578906,50.70303244513854],[-115.3018371096039,50.703089465375356],[-115.30191796552299,50.703289787260275],[-115.3022639745007,50.70346004999317],[-115.30232840082462,50.70349012136919],[-115.3023790889096,50.703517730481764],[-115.30272656644182,50.70368189110889],[-115.3027783212488,50.703705059982525],[-115.30281620334786,50.70372632610731],[-115.30282900985323,50.70373266888386],[-115.30300881950112,50.70381930972964],[-115.30306820359412,50.703989726576815],[-115.30307994184024,50.70400051825582],[-115.30334477187927,50.704389525239414],[-115.3034065469248,50.704490319445476],[-115.30348820185411,50.704627677604385],[-115.30359626862456,50.704774399883846],[-115.30362775479973,50.70482230602981],[-115.30392658007263,50.705069780137336],[-115.30396019916174,50.705108806061794],[-115.30401022478668,50.70513918497577],[-115.3041521693935,50.70526419033124],[-115.30427691079487,50.70540116368842],[-115.3046383322109,50.705805740238965],[-115.30467756350824,50.70588107885949],[-115.30486636734885,50.70616903728283],[-115.30489705627511,50.706220273035875],[-115.30511933745188,50.706488183842886],[-115.30515322729579,50.70652609044767],[-115.30518511721164,50.706572326593],[-115.30538751756943,50.70680368203351],[-115.30542034180448,50.70684602860347],[-115.30574484572027,50.70728507827254],[-115.30577526989987,50.70733742373194],[-115.3059175084224,50.70752093964101],[-115.30601063642156,50.707610564804106],[-115.30605826552437,50.70765094173044],[-115.30608028278472,50.7076786161309],[-115.3060932230664,50.70768440793567],[-115.30614098664081,50.70772422537535],[-115.3063716624192,50.70789754018077],[-115.3064067525712,50.70793045571017],[-115.30643196605162,50.70794481871934],[-115.30645531618411,50.70796694295566],[-115.30678565325198,50.70820269055149],[-115.3069063987791,50.70829667878345],[-115.30711312881881,50.70868914841896],[-115.30720227945545,50.70885505463809],[-115.30722592934856,50.70899532362438],[-115.3072300761045,50.70903774583669],[-115.30724195098077,50.70904797756541],[-115.30724716370298,50.709085959708084],[-115.30728232056927,50.70935738473428],[-115.30730167241991,50.70939616788097],[-115.30731008307777,50.70942082980983],[-115.30731969400178,50.70944049222389],[-115.30746197642193,50.709743269436494],[-115.3074778664215,50.70979647386506],[-115.30775586015511,50.710250331725696],[-115.30792842873954,50.710546371531386],[-115.30796258836642,50.71058317596585],[-115.30796900209288,50.710616158492556],[-115.30798141051028,50.71062417009109],[-115.30812475071063,50.710862874194206],[-115.30813529389783,50.71087865588754],[-115.3081691874727,50.710916570260636],[-115.3081938723784,50.710933143973925],[-115.30820308323662,50.71095447574156],[-115.30835160416267,50.71111190682547],[-115.30845115651172,50.711234520933644],[-115.30848278670186,50.71128186589665],[-115.30849150061731,50.71142467227433],[-115.30870343685444,50.711735864928094],[-115.3087362678257,50.71177821027677],[-115.30890603244413,50.71202627595221],[-115.30893912814969,50.71206752009021],[-115.30895795180814,50.71210851397903],[-115.30911584271973,50.71234634773267],[-115.3091277189014,50.712356579220916],[-115.3091614822673,50.71239504379496],[-115.30919750951975,50.71242407765384],[-115.3092093857406,50.712434309132405],[-115.30946027230144,50.712702691980084],[-115.30956303075767,50.7128119757829],[-115.3100405814841,50.71309143701514],[-115.31007754347186,50.713116581063275],[-115.31043753307821,50.71328872716972],[-115.31048823721915,50.71331633228122],[-115.31052639964685,50.71333647664962],[-115.31053894142245,50.71334393736877],[-115.31069252082139,50.7134206429426],[-115.31083357668457,50.71354952808795],[-115.31086854238245,50.713582992565115],[-115.31087895289618,50.713599333398456],[-115.31090364027831,50.71361590646028],[-115.31113867024864,50.713890704167234],[-115.31119805556055,50.71394186042555],[-115.31131076288956,50.71424858905625],[-115.31137232363918,50.71441011923301],[-115.31139983077145,50.7144746640527],[-115.31148594604642,50.71465332649993],[-115.3115145170176,50.71471344007565],[-115.3115336105527,50.71475332338307],[-115.31155256984913,50.71479376613503],[-115.31163226929834,50.71493944625068],[-115.31156173671987,50.715054165190686],[-115.31153880408067,50.71508999534277],[-115.31152266396383,50.71509752444699],[-115.31149919630539,50.715135583507035],[-115.31131572490862,50.71542225994023],[-115.31101131769421,50.71591419368598],[-115.31099424573759,50.71592560332468],[-115.31081076788486,50.71621227866124],[-115.31078343670198,50.71626642830842],[-115.31076023424781,50.716303377145216],[-115.31060102190062,50.71654866312435],[-115.31057675335543,50.71659005196972],[-115.31055541784174,50.71661922176701],[-115.31053741186034,50.716634520817536],[-115.31035419464664,50.7169200851503],[-115.31005163199639,50.717404245320026],[-115.31003229319252,50.71742509433675],[-115.31000496033154,50.717479243716014],[-115.30994407094495,50.717732885885454],[-115.30993354638888,50.71777672690615],[-115.30992288751027,50.71782112736947],[-115.30987294346706,50.71808888133044],[-115.30986228445433,50.71813328177159],[-115.30985189189659,50.718176572198566],[-115.30977701159303,50.718488485180735],[-115.30970388189812,50.718852809715024],[-115.30966377487492,50.71901987058657],[-115.30960210244079,50.71933646444245],[-115.30959144286368,50.71938086479246],[-115.30958637955716,50.71940195495757],[-115.30958118406674,50.71942359568624],[-115.30954334232557,50.71958121689061],[-115.30944930720442,50.71967436114838],[-115.30939754856819,50.71971082696366],[-115.30936060164682,50.71974530516339],[-115.30907007932493,50.720000075665595],[-115.30861081784983,50.72042028363463],[-115.30859094403505,50.72044335233765],[-115.30836593405604,50.72072374789333],[-115.30832685114238,50.72076711462191],[-115.30828963599815,50.720802702428394],[-115.30810223876017,50.72104584009423],[-115.30806515540921,50.72108087725273],[-115.30804101640881,50.7211217058847],[-115.30802180727174,50.72114200390064],[-115.3078688436437,50.721420826130995],[-115.30781936435211,50.72150748271798],[-115.30791817508174,50.72175267008149],[-115.30816158944043,50.72187325769427],[-115.30827702520914,50.721929820847045],[-115.3086019587696,50.72200942569675],[-115.30865466953497,50.722028710775405],[-115.30868229254165,50.72203307413064],[-115.30898618990732,50.722259999062146],[-115.30903503764854,50.722295374565896],[-115.30907213884895,50.72231996811225],[-115.30925742317216,50.72256327205649],[-115.30930227371807,50.722615297486094],[-115.30941855063382,50.722787782410656],[-115.30975356365654,50.72306426909149],[-115.30991039175277,50.72318728572806],[-115.31006708639235,50.723310861569],[-115.31011673563067,50.72334290654186],[-115.31016571975792,50.723377722063574],[-115.31039662374508,50.72355047479341],[-115.31043133041725,50.72358504901824],[-115.31046536984384,50.723622402684015],[-115.31048859581203,50.72364508511068],[-115.31074743500737,50.723940342798414],[-115.31083514269639,50.72405272175289],[-115.31109689753056,50.7242761375968],[-115.31123037249547,50.72437702936748],[-115.31143486323279,50.7245404086895],[-115.31160406997809,50.72455218106805],[-115.31167506027523,50.72455505557736],[-115.31174591841378,50.724558480605054],[-115.31178822012922,50.72456142360584],[-115.31204476406523,50.72474685586697],[-115.31207947080134,50.7247814384111],[-115.31212832372682,50.724816812457],[-115.31239302045262,50.725028014981525],[-115.31242706260727,50.72506536798612],[-115.31283488309853,50.725456751812835],[-115.31294298297641,50.72548420882599],[-115.31340527308058,50.72558896735051],[-115.31347413368952,50.72560072079041],[-115.31354179646988,50.7256174647927],[-115.31356835644799,50.72562626696102],[-115.3139374919134,50.725701037059146],[-115.31402036714265,50.72571413200839],[-115.31407428452962,50.725728414955896],[-115.31445636826768,50.72580897408482],[-115.31453444854601,50.72584204886494],[-115.31496848054122,50.726004840294905],[-115.31529025882553,50.726097745458766],[-115.31535805516127,50.726113937784405],[-115.3157770939485,50.726160003557304],[-115.31584595818626,50.726171746647104],[-115.31590200769624,50.72617714858673],[-115.31591575370223,50.72617960908215],[-115.31598554924271,50.726187471473615],[-115.31636457821294,50.726280784763915],[-115.31637699246207,50.72628879528153],[-115.31643117765152,50.72630196706589],[-115.31644492372479,50.726304427495826],[-115.31675282685342,50.7263954274322],[-115.31688602650048,50.726437791527225],[-115.31707460950345,50.72648833629349],[-115.31725160809009,50.7265871620644],[-115.31740268433093,50.72661477614963],[-115.3176025578781,50.726558518021285],[-115.31762283033343,50.726533778413184],[-115.31773353868023,50.726430878089936],[-115.31773779996038,50.72641311778697],[-115.3178052415596,50.726251535447894],[-115.31781642729356,50.72620491463448],[-115.31783882794875,50.72617130370133],[-115.31774621301538,50.72590003649043],[-115.31773566291739,50.72588425598387],[-115.31772711134417,50.72586014588872],[-115.31771027242166,50.725810824554934],[-115.31765496198135,50.72568284087617],[-115.31761216926871,50.72550268622042],[-115.31751081175254,50.7250886152591],[-115.31756680018977,50.72497476368533],[-115.31757612157757,50.7249359129693],[-115.31778743916949,50.72483192351265],[-115.31791857798983,50.72476335445787],[-115.31798208278461,50.724737674759055],[-115.31803170761202,50.72471009423688],[-115.31825903340612,50.72459912447085],[-115.31834760240238,50.72452872436578],[-115.31836440945936,50.72451842374163],[-115.31839842619911,50.72449614413064],[-115.31844911570647,50.724464123322896],[-115.31872763051813,50.724259280853296],[-115.31876484237993,50.72422368083402],[-115.31884405700013,50.72413250919197],[-115.31914543108941,50.724011637730115],[-115.31945082904109,50.72393374590427],[-115.31963481455755,50.723883895225406],[-115.31993821490515,50.72381432281667],[-115.3199837115632,50.72380394238518],[-115.32004508376049,50.72378714170649],[-115.32035354155218,50.72369647762991],[-115.32041810843239,50.72366635639883],[-115.32046493605966,50.723650425624875],[-115.32048161024373,50.72364067524599],[-115.32054511198238,50.72361499405617],[-115.32068985430796,50.72354944103625],[-115.32098057022955,50.723472965733976],[-115.32101192043449,50.72346179448535],[-115.32146684593137,50.72329835401328],[-115.32171831817406,50.72320617650121],[-115.32196885872854,50.723117879089536],[-115.32211985417112,50.72302623395195],[-115.3221537337496,50.72300451261541],[-115.3221833541024,50.723000551812305],[-115.32223417338263,50.72296796977341],[-115.32243385510192,50.7228526312843],[-115.3225734025927,50.72280871700444],[-115.32258901125202,50.72280340644209],[-115.3226358372078,50.72278747474179],[-115.32269907032033,50.72276290233703],[-115.32313571019634,50.72261587474992],[-115.32337010386104,50.72253510484804],[-115.32365681624165,50.72247527305205],[-115.32393487895439,50.72245151234087],[-115.32441921310212,50.72240447034936],[-115.32447738805288,50.72240098768924],[-115.32449339661792,50.722394007357664],[-115.32455157154938,50.722390524658806],[-115.324891040307,50.72240958931486],[-115.32499271228463,50.72240405367056],[-115.32500858664301,50.72239763272609],[-115.32505275006615,50.72239280042032],[-115.32512693341491,50.72238233700767],[-115.32531813064705,50.722362136714715],[-115.32561875838945,50.7223638307266],[-115.32564837801334,50.72235986900168],[-115.32624288956985,50.7224511870964],[-115.32644627617802,50.72249973533412],[-115.32690763683402,50.72260831906085],[-115.32697556619257,50.72262394493877],[-115.32700292313969,50.72262942268623],[-115.32704296344386,50.722641790867115],[-115.32735525202156,50.72271445065236],[-115.32743573103595,50.722737526114514],[-115.32750233044105,50.722758701903764],[-115.3275702602344,50.72277432741728],[-115.32801242558772,50.72290320787731],[-115.32814708771761,50.722939457894434],[-115.32878945798521,50.72313019169057],[-115.32895028285446,50.72317690881234],[-115.32924577416611,50.72325986549834],[-115.32931357337705,50.723276040527374],[-115.32933880281284,50.72329039810356],[-115.32955780672208,50.72333362024266],[-115.32970608535052,50.72337287777027],[-115.32975787679972,50.723396033597986],[-115.32982261618638,50.7234249783479],[-115.32983529806083,50.72343187734496],[-115.32998987494467,50.72350467472537],[-115.33019531216023,50.723604517127704],[-115.33027047416593,50.723649791568164],[-115.33033308623305,50.723687616432656],[-115.33065123930072,50.72373584575935],[-115.33069473951366,50.72373378192327],[-115.33076572973641,50.72373664430247],[-115.33095187644825,50.72373752541453],[-115.33117083499117,50.723721122380724],[-115.33125743530366,50.723718663809024],[-115.33147426585117,50.72371114061763],[-115.33181600718521,50.723720753168585],[-115.33210688750995,50.72370332032932],[-115.33235214203094,50.723696822809785],[-115.33262502070997,50.72369469105748],[-115.33266825272028,50.72369374539111],[-115.33274137267365,50.72368771716979],[-115.3330904283477,50.7236667947792],[-115.33317636255735,50.723667114307716],[-115.3332332088141,50.723669177388985],[-115.33327551109858,50.72367211225542],[-115.33330393316801,50.723673148214736],[-115.33357508422984,50.72367822508859],[-115.33368709972214,50.72374919263866],[-115.33375489914629,50.72376537384298],[-115.33392961175174,50.723813982595146],[-115.33409983442219,50.7237616497987],[-115.33415841510372,50.72345725476547],[-115.33417303991882,50.723396201356096],[-115.33421061331848,50.7231795010912],[-115.33423074107378,50.72315531784286],[-115.33425605282773,50.723109492809826],[-115.33428136665718,50.723063658888016],[-115.33445421864802,50.722820799270174],[-115.33445834108252,50.72280358884586],[-115.33447846853565,50.72277940554226],[-115.33450245035806,50.72273913075117],[-115.3345489546601,50.72266467317869],[-115.33484708596964,50.72255707991545],[-115.33487883196929,50.72254423522558],[-115.33511009326226,50.722416579910856],[-115.33546721752757,50.72218236287842],[-115.33548508536434,50.72216761050265],[-115.33580594084042,50.72196510832842],[-115.33585050252086,50.72195860220888],[-115.33589705703109,50.72194377500154],[-115.33591186625111,50.721941792776335],[-115.3359741593543,50.721921102511025],[-115.33614118228711,50.72188208730691],[-115.33637156107939,50.72181794108518],[-115.33640237461351,50.72180898563421],[-115.33643292442207,50.72180113136353],[-115.33650816536333,50.72178622898727],[-115.33676316709317,50.721798830786284],[-115.33695991644417,50.72187511167182],[-115.33698754210674,50.72187946802743],[-115.33711524212211,50.72188493811874],[-115.33776427850142,50.72204787764667],[-115.33779190434848,50.72205223380248],[-115.33811874960826,50.722123991140464],[-115.3382457870279,50.722132230679975],[-115.33831690915885,50.722134528788445],[-115.33836000771178,50.72213413151393],[-115.33856500072794,50.72217599726059],[-115.33873952136686,50.72216552708376],[-115.33879689754411,50.72216536718822],[-115.33886775397384,50.722168775020506],[-115.33888269709078,50.722166232924216],[-115.33891018916572,50.722171148280545],[-115.33893874436758,50.7221716233301],[-115.33908045727914,50.72217843876972],[-115.33942830123485,50.72216249631572],[-115.3394855455855,50.722162886664194],[-115.33962188295551,50.722132280847426],[-115.33998461071086,50.72205416348172],[-115.3401926009614,50.72202363381026],[-115.34025210292664,50.722014592541775],[-115.34062325995154,50.721961132171],[-115.34073854323825,50.72195859025592],[-115.3407681612589,50.72195462451974],[-115.34079857647295,50.721947328536515],[-115.34087155855894,50.72194185446083],[-115.34101659156882,50.72193479588745],[-115.34132133675378,50.7219192369526],[-115.34136443507326,50.721918838518754],[-115.34143741704388,50.72191336407308],[-115.34159712703548,50.72190487238611],[-115.34186374921501,50.72192880941822],[-115.34193460550404,50.72193221530594],[-115.34221484239403,50.721959159404044],[-115.3426414430808,50.72197348281622],[-115.34278634413525,50.72196697254686],[-115.34307827152996,50.72194507076301],[-115.34326839612402,50.72192928007424],[-115.3433108291967,50.72193166054363],[-115.34332563808509,50.721929677335424],[-115.3433392525204,50.72193268507086],[-115.34341329694473,50.72192276899119],[-115.34355726683528,50.72192014746251],[-115.34383518166646,50.72189689667931],[-115.3438786794893,50.72189482770441],[-115.3439082971903,50.721890861135265],[-115.34395258984212,50.72188547075073],[-115.34445097801503,50.72177949835496],[-115.3444962012955,50.721770218003556],[-115.34517600811974,50.7216249094661],[-115.34525204484798,50.721606662044344],[-115.34561382784867,50.7215324161081],[-115.34573309387531,50.72151321766088],[-115.34579312526036,50.72150195325118],[-115.34586743403625,50.721490925447334],[-115.34588210880159,50.72148950138567],[-115.34624030095382,50.72131043143776],[-115.34627005191949,50.72130590475244],[-115.34633008289235,50.721294640051326],[-115.34663010344994,50.721238875547186],[-115.34681544336661,50.72124306050873],[-115.34715916202849,50.721244295992875],[-115.34755001896696,50.72104848380485],[-115.34780992271038,50.72092072420623],[-115.34789465784532,50.7209260234117],[-115.34795595321728,50.720969389007266],[-115.34800509581976,50.72100363741864],[-115.34805370740132,50.72104010600333],[-115.34837140956535,50.72126994004928],[-115.34843722004986,50.72129443368753],[-115.34881594832459,50.72144892912455],[-115.34885519699435,50.721464619801104],[-115.34930133273652,50.721636946307754],[-115.34961351865564,50.721710094554155],[-115.35012991129098,50.721828416764765],[-115.35014259583616,50.72183531346881],[-115.35016889525177,50.7218452170747],[-115.35019439605544,50.72185845986167],[-115.35054497921804,50.722010807567756],[-115.3506107919758,50.72203529990401],[-115.35062214920154,50.72204774706649],[-115.35066153070956,50.722062886486206],[-115.3508838081419,50.7221523766088],[-115.35107753108592,50.722241394340664],[-115.35142705622546,50.72239818850464],[-115.35164947064145,50.72248711757556],[-115.35180280961119,50.7225052538165],[-115.35181655645924,50.72250770990449],[-115.3522627317869,50.72238022670308],[-115.35232408994337,50.72236340826256],[-115.35238757164173,50.722337708934056],[-115.35262323838462,50.72225132709095],[-115.35273831231643,50.722189701321916],[-115.35275312087316,50.722187716864354],[-115.3527877812976,50.722162655892966],[-115.35283844361975,50.72213061939532],[-115.35308565564877,50.72199594240595],[-115.35321659844453,50.721927891185565],[-115.35341407251182,50.72182137805793],[-115.3537112250882,50.72171761528553],[-115.35394263953316,50.72164899236841],[-115.3539889223372,50.72163526772677],[-115.35431895137981,50.72157384373278],[-115.35440979045354,50.72155361428806],[-115.35448595493934,50.72153480996297],[-115.35454624954555,50.72152243073632],[-115.35468284220275,50.721490687519605],[-115.35493078610737,50.72141286652269],[-115.35500721551395,50.72139295172499],[-115.35506830591505,50.721377241871714],[-115.35528504212172,50.721310041414746],[-115.35552475769096,50.72126663264935],[-115.35571752862309,50.721239719601094],[-115.35573326655297,50.7212338448994],[-115.35591282125371,50.721202255671145],[-115.35622604526117,50.721151141205105],[-115.3563463671056,50.72112749094693],[-115.3567483065674,50.72106501596973],[-115.35678946558468,50.72101275137158],[-115.35681448775823,50.720968031232225],[-115.35683261342213,50.72095216530201],[-115.35702531796724,50.72068563338917],[-115.35706329031922,50.720646698987565],[-115.3570864568849,50.72060974072802],[-115.35746537350936,50.720403676290466],[-115.35751337952813,50.72038272993882],[-115.3581130806337,50.72015243722397],[-115.35816811526792,50.72010207675865],[-115.35818716756287,50.7200823296009],[-115.35825488731213,50.72003886489226],[-115.35850817305831,50.71987864272042],[-115.35852709140667,50.71985945500223],[-115.35855896241877,50.71984604403922],[-115.35861054754405,50.71981011495916],[-115.35896328406358,50.71959358409853],[-115.35901380750265,50.719562095325564],[-115.35938262875668,50.719398200049845],[-115.3594174148909,50.71937258631597],[-115.3595353898987,50.71929874193398],[-115.35985006427478,50.719061512277655],[-115.36002987262391,50.719028806221296],[-115.36020968071092,50.71899609987421],[-115.36032102648707,50.71877002192378],[-115.3603242092588,50.71875670036047],[-115.36034869831317,50.71871419069028],[-115.36044050730375,50.71844989852483],[-115.3604447509214,50.718432136429065],[-115.3604511163416,50.71840549328447],[-115.36047560508403,50.718362983568895],[-115.36051945297311,50.71823944313795],[-115.36052091581946,50.71805334687228],[-115.36052348510988,50.71780262814652],[-115.36094841719135,50.71770373821302],[-115.36124136878325,50.71767734831559],[-115.3614156458045,50.71760777088111],[-115.36146404372091,50.717585162001505],[-115.36152751342418,50.71755945733392],[-115.36155832113305,50.71755048601766],[-115.36183916042043,50.717454796918425],[-115.3619026297244,50.71742909203382],[-115.36196503822643,50.717407827656025],[-115.36202850739188,50.71738212269844],[-115.36244025968647,50.717218369987506],[-115.36253652326442,50.717175371573084],[-115.36326924541102,50.71716790610516],[-115.36382879984164,50.71716538595526],[-115.36384267721856,50.71716728994877],[-115.36387136312575,50.71716719911598],[-115.36388404846505,50.71717409429736],[-115.36391246712267,50.717175122476014],[-115.36432736383905,50.7172382093376],[-115.36439609345315,50.71725048212904],[-115.36442345168854,50.7172559507453],[-115.36446482310485,50.71726275487801],[-115.36494950961891,50.717333680439985],[-115.3653915026043,50.71740334195941],[-115.36578531200452,50.71737468914342],[-115.36626928232,50.71732857555333],[-115.36634132708474,50.71732696587736],[-115.36641429853523,50.717321475082386],[-115.36683838079124,50.71728607505798],[-115.36686799341913,50.71728210237927],[-115.36691121852456,50.71728114345246],[-115.36696938352476,50.717277638640525],[-115.36727594341228,50.71725423777086],[-115.36745785946874,50.71721263849602],[-115.36763871502563,50.71717547952171],[-115.3682719721401,50.717044310641],[-115.36837747046235,50.717022633835164],[-115.36835011861888,50.71677699785962],[-115.3683467084295,50.716731247864274],[-115.3683425031862,50.71668882832234],[-115.36832584885016,50.71645841750689],[-115.36833432946293,50.716422892632515],[-115.36832455886271,50.71640378627477],[-115.36833091931656,50.71637714261752],[-115.36832750917716,50.716331392599955],[-115.36833099847203,50.71601660119092],[-115.3683334889126,50.71582606372412],[-115.36825847760716,50.715479904232915],[-115.36825003232128,50.71545524708022],[-115.36813057241172,50.71517522013558],[-115.368124512403,50.71514057158261],[-115.36811262203737,50.71513034640596],[-115.36809321304537,50.715091582956],[-115.36803883220738,50.71495918202697],[-115.36798471670842,50.71482567089722],[-115.36797826039242,50.71479268311186],[-115.3679655750972,50.71478578837626],[-115.36794855154851,50.71473703350229],[-115.36785049050792,50.71448744781044],[-115.36781959049499,50.714436789398114],[-115.36772470895735,50.714173890539826],[-115.36806463878436,50.71401060801343],[-115.36846709801759,50.713825505682756],[-115.3685308233904,50.71379868676528],[-115.3685792136139,50.7137760747009],[-115.36891900376447,50.713613349016136],[-115.36898259501295,50.71358708935353],[-115.36904605475472,50.71356138029215],[-115.36943529084306,50.71337160006443],[-115.3696912468516,50.71325988126497],[-115.3701274100627,50.71305358741063],[-115.37052985220492,50.71286847743711],[-115.37058035995615,50.712836983182655],[-115.37064275795986,50.712815713840804],[-115.37098266476231,50.71265243105202],[-115.37103211223359,50.71262537723974],[-115.37109450972898,50.71260410764012],[-115.37149813703765,50.712413993899695],[-115.37191735794413,50.712218570018436],[-115.37217687838545,50.71209185368128],[-115.3725793034497,50.71190673611199],[-115.37264289013808,50.711880474312245],[-115.37269127622127,50.71185786041485],[-115.37303103693769,50.71169512185046],[-115.37306316269081,50.71168059645004],[-115.37309475655798,50.7116683002612],[-115.3731582112307,50.71164258880492],[-115.37354754677695,50.711452234288714],[-115.37412737101216,50.71118419177438],[-115.37423947377523,50.71113475495595],[-115.37462773888743,50.71094884613505],[-115.37469225098141,50.71091869308721],[-115.37475464436918,50.71089742139972],[-115.37493403920979,50.71080616946336],[-115.37485300158741,50.710545169283854],[-115.3747545394963,50.710237075692966],[-115.37474609162803,50.710212418879195],[-115.37473764376905,50.710187762063974],[-115.37473224033278,50.710150342667184],[-115.3746394480783,50.70987855806551],[-115.37463285411118,50.70984613000126],[-115.37461688449096,50.709792935155996],[-115.37451842567101,50.70948484108334],[-115.3744404124998,50.70927125123321],[-115.374343280167,50.70895760593338],[-115.37424508988458,50.70864840113917],[-115.37424826780553,50.708635079020276],[-115.37422819531517,50.70859908734062],[-115.37422279249489,50.708561667849025],[-115.37412868247199,50.70829543319809],[-115.37412447255431,50.708253013451944],[-115.37410717996553,50.708205369318144],[-115.37400793364233,50.70790060474966],[-115.3739835205741,50.707822743870395],[-115.37404064089428,50.707763493436154],[-115.37425076892536,50.70748328792549],[-115.37426795505237,50.70747130897815],[-115.37428898210096,50.707443228002894],[-115.37432692827237,50.70740428712511],[-115.374513248749,50.707163805548426],[-115.37453440684618,50.70713517386788],[-115.37455132795394,50.707124305051224],[-115.37457539891267,50.7070834613889],[-115.37480058772849,50.70680015705015],[-115.37506213180602,50.706484563198245],[-115.37518735588822,50.70631998402002],[-115.37541147788073,50.70604111892259],[-115.37543170919812,50.70601636823304],[-115.37544968879257,50.70600105853451],[-115.3754876327377,50.705962117195995],[-115.37567500010569,50.7057171925377],[-115.37571201796892,50.70568213231257],[-115.37573608709805,50.70564128833044],[-115.37596046705747,50.70536131172307],[-115.3761606444769,50.705122729330256],[-115.37637232299669,50.705196395141876],[-115.37642517654703,50.70521508907762],[-115.37649177304912,50.70523623608885],[-115.3769268914181,50.705394341038975],[-115.37745635903686,50.70557739536516],[-115.37766791052401,50.705651609334225],[-115.37810422721942,50.70580471821145],[-115.37817003124815,50.705829194775134],[-115.37822262158045,50.70584899803562],[-115.37860701208187,50.70597953062279],[-115.37865880867703,50.70600266424545],[-115.37872554080907,50.70602325036861],[-115.37916173132083,50.706176914581995],[-115.37990171746065,50.70643860857845],[-115.38033871214486,50.706588928658945],[-115.38040451854182,50.70661340388304],[-115.38045737544007,50.706632095878724],[-115.38082684565487,50.70676515952555],[-115.38089371118203,50.70678519367774],[-115.38095925351949,50.70681077876398],[-115.38139651789183,50.70695999332517],[-115.38171287097106,50.70707547264317],[-115.38213547147883,50.70722611305685],[-115.38257274592463,50.707375314056954],[-115.38262547125863,50.70739456454927],[-115.38266471945343,50.70741024360336],[-115.38269101547313,50.707420148600434],[-115.38306063215644,50.70755264519202],[-115.38312723525306,50.707573788186814],[-115.38315379607083,50.70758258287404],[-115.38319410301169,50.7075938209423],[-115.38361644878174,50.70774556585753],[-115.38399981288791,50.70788052038534],[-115.38449399580564,50.70773083797824],[-115.38513950428963,50.70754739248936],[-115.38527801581199,50.70750728924808],[-115.38572368239144,50.70738078034646],[-115.38575447615911,50.707371811130066],[-115.3857858010983,50.70736061261216],[-115.3858611347505,50.70734511719584],[-115.38624679597301,50.707229892315254],[-115.38630891423597,50.70720972428637],[-115.3863702388882,50.70719288684404],[-115.3868309658319,50.70706327431671],[-115.38701546746533,50.70701054060085],[-115.38760095404486,50.70683836748461],[-115.38806061590074,50.70671319067226],[-115.38812193921741,50.70669635225795],[-115.38818405589936,50.70667618317307],[-115.38856957212253,50.70656150972569],[-115.38860010241571,50.706553641047336],[-115.3886307638696,50.70654522169473],[-115.38869314457065,50.706523942109676],[-115.38915266688018,50.70639932030269],[-115.38953712262759,50.70628907545531],[-115.38975781284296,50.70638515116149],[-115.3898082935095,50.70641383068166],[-115.38982097979333,50.70642072300387],[-115.38985930309575,50.70644028974511],[-115.39025945507304,50.70662508520604],[-115.39059538453726,50.706778748712004],[-115.39094241648215,50.70694596467996],[-115.39135685051703,50.707130986976175],[-115.39140759743768,50.707158555529],[-115.39145834442066,50.7071861240578],[-115.39180696903905,50.70734667594384],[-115.39185771648003,50.70737424428511],[-115.39188427889022,50.707383036897546],[-115.39192353030899,50.707398712697156],[-115.39232290620974,50.70758683121336],[-115.39285140281203,50.70783443554874],[-115.39300602812709,50.707907147030895],[-115.39340647048752,50.70809082067143],[-115.39345695540389,50.70811949848421],[-115.39352171380939,50.708148406823724],[-115.39385634414553,50.70830761135551],[-115.39392216043271,50.70833207856245],[-115.39397291028709,50.70835964591033],[-115.39437230332824,50.70854775688268],[-115.39464350129634,50.708672500032925],[-115.39478557791372,50.70873775767021],[-115.3950555877114,50.70886750024476],[-115.39545485871459,50.70905615790397],[-115.3955206769709,50.709080624147184],[-115.39557142865355,50.70910819074402],[-115.39592114009224,50.709264288514795],[-115.39597189222856,50.709291854923585],[-115.39602264442722,50.70931942130859],[-115.39643712132104,50.709504424229564],[-115.40400811068426,50.712131617059846],[-115.40808761702192,50.71425883504429],[-115.41234467380052,50.720463238531636],[-115.40867810832904,50.72653972829496],[-115.40749812552252,50.73216278571049],[-115.40875401443799,50.735741896025424],[-115.41317032448801,50.73748750843068],[-115.41936139907207,50.74063473903887],[-115.4230244575293,50.745312287586344],[-115.42684381298932,50.749757562991874],[-115.43021570214034,50.75403680070149],[-115.43696645388557,50.75562547336843],[-115.44228050835441,50.75541258581569],[-115.44310352479349,50.755510197733585],[-115.44771331758982,50.75754100931304],[-115.451995069679,50.758597521519455],[-115.45868861734363,50.75710263948374],[-115.46498126189738,50.75469402570854],[-115.47031025091331,50.75453687511155],[-115.47629955853532,50.75716615577024],[-115.48027391881504,50.760980534225745],[-115.48052527480652,50.76240468646989],[-115.48104209511374,50.767256287074986],[-115.48179204736385,50.77330660256706],[-115.4878821560921,50.77958959937355],[-115.49368215710793,50.78376665731865],[-115.49780599700496,50.786720558291215],[-115.50314420923098,50.78878784360395],[-115.51079202092804,50.7881840673891],[-115.51454710020488,50.7857695541685],[-115.52373454715,50.786849529501595],[-115.52975197758073,50.7898756490271],[-115.53191434898936,50.79349154024948],[-115.53349332008149,50.79769708857304],[-115.53962479603287,50.79774573143811],[-115.54644671949723,50.79864219102602],[-115.55354005666213,50.80473712444433],[-115.55703796693068,50.80787282537337],[-115.56119471827743,50.81150608992294],[-115.56084968833889,50.8170095472097],[-115.5568675292875,50.825890604842954],[-115.55849615398643,50.83112144761782],[-115.56205913886292,50.8336845281704],[-115.56954420642786,50.83857093448528],[-115.57856027347108,50.841653229377684],[-115.59390312568122,50.844777024517576],[-115.60272522217554,50.84562996199263],[-115.60876878398034,50.84190345636568],[-115.61135694514216,50.8379617270117],[-115.6176075823952,50.83635250195358],[-115.62923238955503,50.83737434425144],[-115.63842702430986,50.84210444067767],[-115.64010865301964,50.84659586384872],[-115.64106791439848,50.85092121432937],[-115.64078472225538,50.857617031737405],[-115.64270574956917,50.86330328967416],[-115.64642618122042,50.86848624266644],[-115.64537545602532,50.87274461523526],[-115.63433810981739,50.87600015495593],[-115.62698024621193,50.879066647501176],[-115.61878455870703,50.87974821849404],[-115.61194888934395,50.88217263739462],[-115.60987269956685,50.8858206264861],[-115.60435363003579,50.88752896727819],[-115.5969895389672,50.88704586200296],[-115.58864184646336,50.888242292492734],[-115.58297881818612,50.889210488752],[-115.576518160647,50.8900833139914],[-115.56734877453972,50.89146518190571],[-115.56110337600542,50.894964721999195],[-115.56205980428054,50.89951896981743],[-115.56496733236027,50.90501409493914],[-115.56936536774715,50.90778431283052],[-115.5718932540179,50.90939304868688],[-115.57877959691291,50.91314982416963],[-115.58974309132024,50.91676740448492],[-115.59910208030185,50.921096933121134],[-115.6067145750577,50.92809486993272],[-115.60574203547924,50.932119797396076],[-115.6004931357091,50.93737523263719],[-115.59945409694461,50.938367615970655],[-115.59854619867804,50.941990618766496],[-115.60327057866606,50.94578614602952],[-115.60924928974848,50.94927109015495],[-115.6104415343395,50.95296781051304],[-115.61036269988212,50.95840069247301],[-115.61291995787312,50.96229709774112],[-115.61905217340619,50.96698287763353],[-115.62307945051822,50.971250564533975],[-115.62606714719197,50.976392016483864],[-115.62709597560594,50.980549019851004],[-115.62805466873874,50.98156171630239],[-115.6302275059142,50.98323525827641],[-115.63571781865447,50.98575756208638],[-115.64167438777758,50.99238680509372],[-115.64451387415156,50.99638978724162],[-115.64789679306892,50.998502975175505],[-115.65228135315579,50.998984404235735],[-115.65790318480947,50.999044241308916],[-115.66365053219002,50.99955389784555],[-115.66561313215051,50.9999142911661],[-115.66814770403958,51.00214674047108],[-115.67014711296994,51.00432618360384],[-115.67368381856892,51.00856728009393],[-115.67813299768494,51.0114336328234],[-115.68257459431108,51.01464391526972],[-115.6865626713154,51.01899811175511],[-115.68683343828685,51.022599362103804],[-115.6876434731924,51.02648577536901],[-115.68874022879913,51.02809124446645],[-115.6913789895416,51.02592759698714],[-115.69738102718064,51.02251043035235],[-115.70457258749984,51.020297341229686],[-115.70930115536697,51.01887560316306],[-115.71285050250403,51.016881114755904],[-115.71857015584344,51.01683724323325],[-115.7228509859316,51.01833213648861],[-115.72683702200185,51.0209113515795],[-115.73084616366293,51.022523235384995],[-115.73439042573412,51.02384040928646],[-115.73492733745941,51.02544147357855],[-115.7328342805564,51.029613340974024],[-115.73591937329226,51.03247676669422],[-115.74092744231852,51.032772272829334],[-115.74410298412694,51.031579059759],[-115.74847144297935,51.03158470173435],[-115.75383945176267,51.033314017051886],[-115.75792817374922,51.03508854327942],[-115.76548495550344,51.040076800734546],[-115.7702964551487,51.048146497976965],[-115.77074999590056,51.051860495909295],[-115.76883464998963,51.054089673919385],[-115.76311248283601,51.058425826012176],[-115.75964807327703,51.06254212107168],[-115.75927466105944,51.06608460286526],[-115.75736316895318,51.069225903132995],[-115.75263126438146,51.07201690895336],[-115.74898218478933,51.07418226218545],[-115.75171456864987,51.073728907174015],[-115.75954810798075,51.07163143134896],[-115.76500987180954,51.07060994749116],[-115.77302077377566,51.070110014614094],[-115.77993326193348,51.069490430739855],[-115.78621590253633,51.06915939377453],[-115.79613271568648,51.07002726250044],[-115.80032558389937,51.07249647424624],[-115.80205629899373,51.07575431704823],[-115.8066953082182,51.07942175142647],[-115.80870778294107,51.08039725900409],[-115.8133521145053,51.08160391486571],[-115.82081251907694,51.08155383622457],[-115.82508589145442,51.07973410601609],[-115.82909071040868,51.07613209072268],[-115.83127586060074,51.074476656803995],[-115.8358265790398,51.074708848207266],[-115.83973740734287,51.07671979452047],[-115.84092929453959,51.07831584205246],[-115.84320830533804,51.079578531036724],[-115.84702206653226,51.07912528764854],[-115.85140073265264,51.078160165982446],[-115.85521866966181,51.079133554682066],[-115.85850182520997,51.0819973590382],[-115.86588519901075,51.086119213302084],[-115.87088474578731,51.08641319083098],[-115.87707714031107,51.085218346392146],[-115.88481236627997,51.08396595452],[-115.89155241778644,51.086367178881595],[-115.89448327747623,51.08952040181627],[-115.89603041584637,51.09203438092729],[-115.90048639547048,51.09060378623298],[-115.90192994335233,51.08580415504335],[-115.90146693586296,51.08151443176873],[-115.90064955661151,51.07808106165488],[-115.90556079655695,51.07951530157914],[-115.91038699600222,51.08094389493411],[-115.91612463875681,51.082490684355776],[-115.92086729254677,51.08586986806646],[-115.92507320815923,51.09027639808158],[-115.92890396041732,51.09525548790352],[-115.93373917673733,51.09697104739429],[-115.93911637631669,51.09782979758688],[-115.94421849625205,51.09983413194187],[-115.94714661102626,51.103208617247276],[-115.94734006909387,51.10749723916363],[-115.94899031559949,51.11058849096935],[-115.95247093983073,51.112301001224836],[-115.9567564254165,51.113904745074294],[-115.96112640302736,51.1165356049216],[-115.96214365549615,51.11911290925457],[-115.9657981023445,51.120827996455326],[-115.97045136411202,51.122598378072084],[-115.98084433183881,51.12574819301799],[-115.98585514464247,51.126201406106105],[-115.9909587856715,51.124716310621324],[-115.99459516587555,51.124541296284484],[-115.9980070723141,51.124017958474525],[-116.003989457333,51.125346639351285],[-116.00924617225847,51.128159795708754],[-116.0116754298069,51.13312875148339],[-116.01164224336257,51.13723368568211],[-116.00943786160018,51.140653091157084],[-116.00823005677691,51.14349879637013],[-116.00857177094784,51.14760596123797],[-116.01117529256689,51.1525755436037],[-116.01623815201901,51.15715536156854],[-116.0180518306446,51.15904147901719],[-116.02066032812012,51.16150439589997],[-116.02638462046703,51.16374288230636],[-116.03145691356035,51.16803693126159],[-116.03124771471512,51.17094543216027],[-116.02731733865674,51.17355650489491],[-116.02385415734577,51.175314745420216],[-116.02111094786333,51.17753254024089],[-116.01863322179312,51.17991786349977],[-116.01624341677311,51.184021360906556],[-116.01466169161593,51.188067548892725],[-116.01202180857462,51.189312826719814],[-116.00900733033826,51.19004014230693],[-116.00381702193884,51.19002775282098],[-116.00109206169543,51.190816932943356],[-115.99750939715358,51.19468408591278],[-115.99613880271559,51.195878422082636],[-115.99694779389444,51.19747735503438],[-115.99811397606376,51.19890522251832],[-116.00074069145593,51.201995121182364],[-116.00135465435696,51.20439099863145],[-116.00115117716304,51.20707334863639],[-116.00250425058272,51.209528814982065],[-116.00323104012278,51.21021638223828],[-116.00304385578642,51.210212177368234],[-116.00111391257524,51.21323206692428],[-115.99918685159433,51.21521792053107],[-116.00117637457772,51.217739699374086],[-116.00361409753212,51.22020102290229],[-116.00695608908794,51.22288896937359],[-116.01142209340898,51.22330340105217],[-116.01717072945492,51.22246594962485],[-116.02273854893694,51.220827845638645],[-116.02664561757871,51.221408484215786],[-116.036828813643,51.224064255930585],[-116.04546075451248,51.228143778006576],[-116.0466985912538,51.229072335735644],[-116.05116427669735,51.23243907885492],[-116.05586781492612,51.23917949940886],[-116.05857394735459,51.244381727683724],[-116.0640092241431,51.24827545577127],[-116.07139102154359,51.24932244310077],[-116.07666678877062,51.250589755291365],[-116.08523747799353,51.251183229476894],[-116.09252051706554,51.251256249895356],[-116.09990228434022,51.25127629739528],[-116.10144674698105,51.25162144979796],[-116.11018844655612,51.25358160558889],[-116.11992365744615,51.2568612296407],[-116.1283031111309,51.25973297931538],[-116.1363165489048,51.2619152618098],[-116.14487441871024,51.263933327149324],[-116.15187576784957,51.26805491130018],[-116.15413257999217,51.27227772778522],[-116.15284556602765,51.27666940191131],[-116.150637652639,51.27980090249046],[-116.14916545193608,51.28288126955601],[-116.14915318790716,51.28630138900023],[-116.15178814421517,51.288190918756186],[-116.155874913183,51.291624845410205],[-116.15723852652044,51.2940810177462],[-116.16005589891779,51.29619526420699],[-116.16488853736017,51.29740192993487],[-116.17374067673943,51.29696949032315],[-116.17993442338515,51.29766499808415],[-116.1828535542966,51.29971833688118],[-116.18612601474226,51.30155371127797],[-116.1911393677081,51.301564941342185],[-116.19461568740805,51.299172200225385],[-116.199094525534,51.29598646654867],[-116.20302569083528,51.29519147136211],[-116.21169531486139,51.29355353828522],[-116.21515873131398,51.29355578339997],[-116.21871262051782,51.296474992271044],[-116.22316903332863,51.299444154020414],[-116.22709441552284,51.30076114828361],[-116.23293092046642,51.30117565637501],[-116.23867818709617,51.30146995404499],[-116.24269708187262,51.302041155353315],[-116.24715006655755,51.30398878614708],[-116.25335879440523,51.306453620764],[-116.25863956810801,51.30885642035381],[-116.26147144392911,51.31079781767293],[-116.26457025958533,51.313826427487435],[-116.2682966822621,51.316969206238184],[-116.27047858326294,51.32027905941253],[-116.27212349416261,51.32536155933831],[-116.27248249997733,51.326163956760716],[-116.27549728438252,51.327875968855544],[-116.28013612323835,51.33182015847982],[-116.28424332356396,51.33718842188938],[-116.28560823662174,51.34203788220582],[-116.28304190158683,51.34688575076453],[-116.28038153144064,51.35156575757216],[-116.27772759896672,51.35509946451516],[-116.27772963283152,51.35777839149258],[-116.28083248635966,51.36080808167831],[-116.28702712781435,51.363838576713746],[-116.2878521334517,51.363783392999245],[-116.29241663415607,51.36532745240886],[-116.2977095321162,51.36870031677367],[-116.3009044212661,51.373096838147305],[-116.30482512718123,51.37835125679247],[-116.30692581241632,51.3821198996136],[-116.30683357397744,51.38543096581324],[-116.30198264139007,51.38839283714948],[-116.29648713343742,51.39209925472292],[-116.29255943484321,51.3958051024844],[-116.29154309554146,51.399282992231605],[-116.29007973809335,51.40287642301002],[-116.28696648391706,51.40447147034865],[-116.2821162136253,51.406233367119164],[-116.27936849689364,51.40833995975719],[-116.28009709379951,51.41062547218733],[-116.28155981211579,51.41268029990287],[-116.28419406828179,51.415482123383214],[-116.28629458059063,51.41793947026925],[-116.28802480789287,51.42147932791316],[-116.29013347715173,51.42370507331376],[-116.29049715849388,51.42462259773851],[-116.29149267590812,51.42701922149149],[-116.29130470892407,51.42964076436917],[-116.28763664129323,51.43340406790054],[-116.28488895583963,51.43556975516046],[-116.28351608902668,51.43756607374441],[-116.283597145803,51.44041463591574],[-116.28405106605715,51.443614658044986],[-116.28368472877439,51.44657928592648],[-116.28183890810017,51.45011650497094],[-116.28192735049107,51.45234107240093],[-116.28193027005894,51.45462339995809],[-116.28311575211094,51.45616430843268],[-116.2833500905647,51.456353781336624],[-116.2867724060046,51.45902480255989],[-116.29134336347107,51.460912181434395],[-116.29545794088554,51.461774858716375],[-116.30379446521124,51.462359458239966],[-116.30800125546239,51.463332609682176],[-116.312578163723,51.463619357996784],[-116.31696979342465,51.46362560131779],[-116.32201324275707,51.46311733399789],[-116.32703945697564,51.462949942491186],[-116.33510007398395,51.463928689256264],[-116.34086162642626,51.46695752059195],[-116.34690948749179,51.46941650743605],[-116.3533139494299,51.47078734013948],[-116.36045746909498,51.47336281221814],[-116.36365563410354,51.47582103448367],[-116.3656658822624,51.478389602427924],[-116.36768981460744,51.481360117446606],[-116.37079643214932,51.48443753496051],[-116.37620482861789,51.48849891014068],[-116.37959461703004,51.49174954177287],[-116.38379805614618,51.495804078582154],[-116.38700802722029,51.499348183480194],[-116.38884481883754,51.50185547552937],[-116.39222587458806,51.505287070116125],[-116.39379115549448,51.51201928969885],[-116.39314813900867,51.51481620278823],[-116.39269010510786,51.517101766423465],[-116.39268866882674,51.51989427973689],[-116.39077706611899,51.52349316839376],[-116.38536328643622,51.52685504317704],[-116.37985811907028,51.53016478277956],[-116.3796806775502,51.530905471961574],[-116.38114332850789,51.53233585950412],[-116.38517028707147,51.535819489152864],[-116.38646141946447,51.53935754910208],[-116.38710509141787,51.542328812988],[-116.39012235676891,51.5443790261413],[-116.39626650659582,51.54592686710952],[-116.40296805279966,51.547127592610785],[-116.40893457244694,51.548558282405914],[-116.41516027800476,51.55066947817509],[-116.42030923761652,51.55244293625987],[-116.42818791202993,51.55472996192994],[-116.43415126199116,51.55518302862558],[-116.43552931046271,51.55501247146777],[-116.44379231642642,51.55701265875187],[-116.44883998111727,51.55872346163743],[-116.45654496627947,51.56215002623237],[-116.46177587301356,51.56563080939381],[-116.46326121273843,51.569111768623266],[-116.4639001295471,51.572597834879154],[-116.46537449417684,51.57539575580171],[-116.46740005905728,51.57847491229895],[-116.46942365459756,51.58229980703797],[-116.4694304310826,51.583271624466285],[-116.46805138776524,51.58772205905725],[-116.46613788132592,51.59114495245951],[-116.46596024447896,51.59463237318818],[-116.46706242621063,51.59720130422457],[-116.4682615720167,51.59959384103351],[-116.47119664061522,51.60359196729834],[-116.47395726299946,51.606786897944815],[-116.47552368704339,51.60810027256582],[-116.47891954698272,51.609588778721836],[-116.48288200302311,51.61095549803587],[-116.48444186903146,51.61323821911427],[-116.48609191464554,51.61597840888552],[-116.48959235973312,51.61786182193508],[-116.49189608428846,51.61934481982677],[-116.49382174607796,51.62357032872571],[-116.49797119547333,51.62636519295277],[-116.50384686456063,51.626594700179595],[-116.51046517885227,51.62636198842945],[-116.51560532017207,51.627155252341545],[-116.52010983354779,51.629666460361115],[-116.52481393368797,51.632806995808785],[-116.52903584797308,51.63514530541682],[-116.53308630462838,51.63719918100271],[-116.53980572713733,51.63764989004333],[-116.54550447771346,51.63816284208057],[-116.55102457556745,51.64004078771979],[-116.55682165133415,51.64266465494989],[-116.5581045002748,51.64334802194389],[-116.56316896609039,51.64551499789505],[-116.56814286022548,51.647562698010866],[-116.5694306536652,51.64950816762209],[-116.5710070301186,51.65167280703165],[-116.57449642611346,51.65201243599329],[-116.57652304619457,51.65229672140613],[-116.5789117577017,51.653609155571914],[-116.58269824785437,51.655143889819485],[-116.58757048330122,51.65719739763873],[-116.59439056908182,51.6615299228203],[-116.59624214959197,51.66432227185289],[-116.59460087096963,51.666379988599225],[-116.59109917197105,51.66832653448556],[-116.58936605569336,51.669927891990376],[-116.58734981135812,51.67284053577062],[-116.58782311272152,51.6762656215827],[-116.58691488000176,51.679864190379],[-116.58362303943044,51.683064879804874],[-116.57875278719172,51.68518231909181],[-116.57718764048921,51.68660963695648],[-116.57995609852155,51.68860800683683],[-116.58299692772606,51.69009076884535],[-116.58742584012606,51.692252561672476],[-116.5886238803053,51.694420405020516],[-116.58431093884928,51.69625387222017],[-116.58146654333694,51.6985948285217],[-116.5826654685942,51.70116396829065],[-116.58285592700476,51.701567897571],[-116.58525656330289,51.70344726397882],[-116.58572488588291,51.70601633913998],[-116.58418034583057,51.71127030572305],[-116.58520766285287,51.71429756908015],[-116.58677467329925,51.7154367326689],[-116.59046025991637,51.71651644581068],[-116.5954377922477,51.71845371758196],[-116.59718665194129,51.720852467537064],[-116.59876325734997,51.723304819754034],[-116.60218007453436,51.72495647937196],[-116.60522683453259,51.72540912267511],[-116.61010466748404,51.72523779997577],[-116.6177466597197,51.72608420387746],[-116.62346418609377,51.72744689150132],[-116.6298288220869,51.73103787684985],[-116.63223422889686,51.735087044427644],[-116.63280392547105,51.73685889703741],[-116.6314486076957,51.741255060558785],[-116.62676595612845,51.74628964227935],[-116.62493185384983,51.74971114753131],[-116.62880104245615,51.75056623478776],[-116.63571272294844,51.750270892957595],[-116.64179770217306,51.750553197519835],[-116.6473331762974,51.75203117877695],[-116.64936832269561,51.75447826545259],[-116.64947391210828,51.75705243941165],[-116.64903824734539,51.76241857887327],[-116.64722907697755,51.768589989196876],[-116.64568022141265,51.773275733113444],[-116.64395112784855,51.777844824619315],[-116.64360353661915,51.78184406540592],[-116.64351171167034,51.784585828933544],[-116.64241648557203,51.786409600178395],[-116.64316804507928,51.78829404332574],[-116.64612236318584,51.78994702609839],[-116.65000461822821,51.79171287347686],[-116.6535224571165,51.79388083919944],[-116.65427246915046,51.79604786158249],[-116.65465522796107,51.798560920687954],[-116.65558412441852,51.80289556427434],[-116.65660344761483,51.80346961055745],[-116.66094223587834,51.804890549645485],[-116.6650198634769,51.80671018667396],[-116.66926582841862,51.80836129114062],[-116.67286712188698,51.810013740997924],[-116.67721676034947,51.81200388307592],[-116.67787110227958,51.81223220878887],[-116.67906351054046,51.81165945731988],[-116.6826454776629,51.80971302681704],[-116.68503491954125,51.80833930005459],[-116.69075182880577,51.805587488273744],[-116.69496777553763,51.80306921669056],[-116.70086131358174,51.801402728392354],[-116.70722877080036,51.80053200919207],[-116.71145765933696,51.7993859201047],[-116.71366577937462,51.79857950607347],[-116.71616462382205,51.80011577765165],[-116.71996515968608,51.802622843574916],[-116.72522623549715,51.80398451798357],[-116.7323436497153,51.80522884303325],[-116.73769801924294,51.805673859869664],[-116.74441654528108,51.80514692304467],[-116.74809441969909,51.803764160611756],[-116.75104467142815,51.80153156061707],[-116.75259209747465,51.79942031183876],[-116.7537720287391,51.796556983715284],[-116.75441514263372,51.7955294990946],[-116.75530324748158,51.79238457135881],[-116.75850893837082,51.78832370534918],[-116.76143028713831,51.78511635937014],[-116.76454528535984,51.781684295881675],[-116.76755906352861,51.77796797876906],[-116.77250937492718,51.774297152486525],[-116.77553496336387,51.77217654744504],[-116.77865168158033,51.76914082977],[-116.7799262672007,51.767200110933715],[-116.7840366167041,51.76347672897182],[-116.78781532784636,51.762492564813144],[-116.79093975306816,51.761626144280115],[-116.79359174822571,51.759395213848954],[-116.79779487744834,51.75550025477943],[-116.8018249784842,51.75200518580412],[-116.80420172115318,51.748855440146535],[-116.80691384458417,51.744392399975304],[-116.80799299007478,51.74108120446322],[-116.81213307449966,51.739411323438176],[-116.81626779102726,51.73894435790942],[-116.81846280081258,51.73761945021806],[-116.81752754620267,51.735396593979615],[-116.81279421323545,51.73170086971783],[-116.80825072606314,51.72794046718597],[-116.80677616158835,51.72737618885377],[-116.80059527215032,51.72493595731894],[-116.79560169612584,51.72317566948148],[-116.7927431393781,51.721413816843004],[-116.7930064052475,51.72009867031398],[-116.79473211679105,51.71781150200441],[-116.79811834717597,51.715689248104425],[-116.80215386967932,51.71270492092086],[-116.80608203773363,51.70932608765627],[-116.80706396391821,51.70577906551392],[-116.80796264101613,51.70463576384523],[-116.81302881650907,51.704795339193865],[-116.8191108635856,51.70477997429837],[-116.82379390290194,51.7041910025921],[-116.82894965667128,51.70406301802936],[-116.83446641516868,51.70416355247026],[-116.84257536960153,51.70465306745366],[-116.8476419770257,51.7054360372402],[-116.85327685755799,51.70713257042397],[-116.85786640675704,51.70705667532988],[-116.86026115173124,51.706367582850035],[-116.86475681599353,51.7049260766779],[-116.87146891414308,51.704271471440066],[-116.87689987408103,51.705339098744226],[-116.88133508808922,51.70669755542677],[-116.88631844484684,51.707531999473254],[-116.88953169897178,51.70683895863342],[-116.89256171293721,51.705973382518096],[-116.89723860758757,51.70526675360684],[-116.89826020769429,51.70555211809147],[-116.89919431836292,51.7073764741483],[-116.90216189419107,51.70890946729961],[-116.90574929343659,51.709013254274154],[-116.9084964271807,51.70831181699149],[-116.91097941733845,51.70796579241119],[-116.91365946334305,51.708636896163405],[-116.9150471428428,51.709550172173365],[-116.91589197661635,51.71131572833151],[-116.91610885829422,51.71343032583486],[-116.91778172973584,51.71571096152364],[-116.92047124943618,51.71718102163204],[-116.92380894712534,51.71967981635327],[-116.9246560229303,51.72122660555326],[-116.9246821894234,51.72390831385132],[-116.92452617232374,51.72585058002738],[-116.9254611764015,51.72795848494383],[-116.92778126776261,51.72875025886681],[-116.92980937370572,51.72925972188733],[-116.93360133735565,51.730846650971365],[-116.93637797020001,51.73197484224005],[-116.94034451210324,51.733216378538046],[-116.9413805524697,51.73498324525391],[-116.9414002457511,51.73692757866951],[-116.94199030657232,51.73978522778983],[-116.94367974653096,51.742348703782675],[-116.94682732709789,51.74387753788243],[-116.9504360924918,51.74494708801744],[-116.9532063170032,51.746252906475064],[-116.9548737659024,51.74772939409598],[-116.95748870545863,51.75034801680351],[-116.95991745201927,51.75301960749834],[-116.96141460644107,51.75461415763913],[-116.9656645294757,51.75591211585719],[-116.96955422197722,51.75732606407532],[-116.9701162764484,51.75835382969419],[-116.9703123827489,51.7596652199785],[-116.96987575499169,51.76212331983136],[-116.9698125410912,51.76383872717749],[-116.96965518183957,51.765725892381774],[-116.97013085131773,51.76738227407718],[-116.96940910412057,51.769098593696455],[-116.96619219904062,51.769795512106114],[-116.9614139989098,51.77061267351952],[-116.96005178611554,51.772733826483964],[-116.96100716321872,51.775531376976836],[-116.9611263124349,51.7782693249483],[-116.96244808597386,51.78078325576406],[-116.96294975195438,51.78414629588711],[-116.96123426240791,51.78775518438536],[-116.95969726442198,51.79050360237884],[-116.96287836160572,51.793863221749774],[-116.96456876011939,51.79608515862539],[-116.96754765133302,51.79858898791131],[-116.96997853853571,51.80154791489838],[-116.97443299999712,51.803929260118736],[-116.97748475319639,51.804604527590115],[-116.98072092010177,51.80573243291703],[-116.98443706365425,51.80800681527467],[-116.99010751713385,51.811805326698014],[-116.986340968623,51.8133041615775],[-116.98415047438257,51.81468729061024],[-116.98204883197036,51.81698306756886],[-116.98161076544459,51.81881287592618],[-116.98247600016714,51.82120878119522],[-116.98379652986196,51.82331673478533],[-116.98372019375203,51.824744364662074],[-116.98207198827792,51.826122873820744],[-116.97987066189417,51.82698953057702],[-116.97775342092898,51.82836820014688],[-116.97695698794071,51.83128786290411],[-116.97838074141463,51.834592908975374],[-116.98347254528458,51.835544493340514],[-116.98790916614712,51.83569954967327],[-116.99307238572183,51.8351056816903],[-116.99574402036829,51.834868910937864],[-117.00146788883353,51.83552868874449],[-117.01073244941502,51.83777140899398],[-117.01620654941507,51.840208884023916],[-117.02011889522885,51.84304487311522],[-117.02329863783878,51.846521157609594],[-117.02647939071653,51.85056264251248],[-117.02985257684048,51.85374577812791],[-117.0325749068368,51.858025099195764],[-117.03514904292922,51.86338020501574],[-117.03417822223473,51.867728748748334],[-117.03063146007021,51.87134358027421],[-117.02203076014469,51.87755518901817],[-117.01590232622183,51.88272235756975],[-117.01188257549008,51.88634082286684],[-117.01146310884246,51.889712962723856],[-117.01414617150726,51.890215781041576],[-117.0162802796819,51.89060695895479],[-117.02027742761418,51.89270016393002],[-117.02502044210364,51.895941612807896],[-117.0294076394095,51.899062150556205],[-117.03462574466278,51.90235394749925],[-117.03929206667806,51.90576324584833],[-117.04349565258137,51.90871605103966],[-117.04517147562886,51.91047975803891],[-117.0508457005406,51.9125679416759],[-117.05437269180953,51.91403952598333],[-117.05772921835785,51.91648165850345],[-117.06101211319024,51.919781523385126],[-117.06401130727352,51.92239439820558],[-117.06877630168226,51.926200344931146],[-117.07465578738199,51.929944965169916],[-117.07885197058154,51.93295537499406],[-117.0842569903507,51.93544495309799],[-117.0894688729268,51.93787678141034],[-117.09431396113287,51.94030970628086],[-117.09518468006384,51.943220235569164],[-117.09519660810919,51.94430625683779],[-117.09659861986611,51.94527388321641],[-117.0996901155128,51.94845666603031],[-117.100105776853,51.951368416742035],[-117.10070622118013,51.954167377704174],[-117.10360447211654,51.95643522650744],[-117.10767659479046,51.95641953427937],[-117.11172904316395,51.955425064813774],[-117.1166370761646,51.95534345948633],[-117.12100447669845,51.957040511793345],[-117.12467020216133,51.96130505999828],[-117.1288023830164,51.96494497783636],[-117.13271387975665,51.96657898968407],[-117.13773971468729,51.96844098335264],[-117.14213254686169,51.971388992011654],[-117.14864018621279,51.973697942260564],[-117.15531842695928,51.973950330688616],[-117.16124084261156,51.973802095004096],[-117.16706236161119,51.973715838922764],[-117.17382271065058,51.97385312849404],[-117.17958682621794,51.97541967708786],[-117.18322902706632,51.97694509769482],[-117.18899022153339,51.97816790392832],[-117.19456429482668,51.980023540898486],[-117.19544015804995,51.98207699776203],[-117.19629779144508,51.98378663630357],[-117.19654026394781,51.98772828062188],[-117.19735116922077,51.99183848283498],[-117.20258098971486,51.994385789457525],[-117.20610008335719,51.99493576405812],[-117.21103281557434,51.995763638356415],[-117.21486414518243,51.99774641548254],[-117.21600673737554,51.99979575224064],[-117.21805545759453,52.00259706651224],[-117.22171876813668,52.00621079681664],[-117.2289335986457,52.008191750952165],[-117.23430285970223,52.00890555746572],[-117.23296627540212,52.012093730388855],[-117.22958748547461,52.01447302590684],[-117.22511222650604,52.015875039065605],[-117.21774349553019,52.01863431510874],[-117.21338331156637,52.02482687035543],[-117.21333172414698,52.02899369544779],[-117.21775409707845,52.03141349743778],[-117.22355410479453,52.034587182402426],[-117.22722255833843,52.03797310220881],[-117.23409053028526,52.03915101052652],[-117.24289960635295,52.03982707499686],[-117.25152284109427,52.040840782586606],[-117.25949029531003,52.0432811436701],[-117.2657526355859,52.04673669063493],[-117.2668325550974,52.04947863518893],[-117.26754373336219,52.05222524105915],[-117.2703625683994,52.05663497010746],[-117.27517771008992,52.05808374378975],[-117.28074341352922,52.05982661020981],[-117.28877311574799,52.064319840665576],[-117.2944804311393,52.06799784322218],[-117.30186601414441,52.07248622742148],[-117.30098155512258,52.07607736321063],[-117.29675525790164,52.08039460995797],[-117.29425791272037,52.08643362350072],[-117.29304291345531,52.09407359384418],[-117.29257954464067,52.1020027078823],[-117.29412826877434,52.11193880386283],[-117.29431858482623,52.118672366363654],[-117.29373171592334,52.12809112091474],[-117.29690023912572,52.13489881304127],[-117.30202211125075,52.14262913621364],[-117.3067883242565,52.14847267791911],[-117.31004654132532,52.15602409532132],[-117.30965186469346,52.16589468486536],[-117.31035618423647,52.17616961894967],[-117.31288655195385,52.182291388787675],[-117.31496560360429,52.18076294011613],[-117.31874498852285,52.1767256632022],[-117.32450269096458,52.16996544864215],[-117.3263806800607,52.16106551837787],[-117.32747994120807,52.15456885644196],[-117.3295269029928,52.14761103894458],[-117.33815067958751,52.14211826714835],[-117.34086254262037,52.14139010525481],[-117.35196584248294,52.13984486932468],[-117.36043848604474,52.13965182548586],[-117.36711796024493,52.1410517410914],[-117.3752174953543,52.14154514747567],[-117.38435340266058,52.14061393914021],[-117.39367666196003,52.1396277340489],[-117.4054076654443,52.13950421740295],[-117.4180515872612,52.14161006775578],[-117.42389195297714,52.143233598989305],[-117.4349433924091,52.146016576701804],[-117.44118447474705,52.1464424338981],[-117.44817899795882,52.144926053380765],[-117.45554339713195,52.14369823757418],[-117.46410329911168,52.14372880268935],[-117.47442982238867,52.1451902287502],[-117.48132089203017,52.146131897907026],[-117.48835279849753,52.14770639196496],[-117.49344888118752,52.15005309188347],[-117.49712057700174,52.15312085684497],[-117.49935014490777,52.15392940781835],[-117.5028594214842,52.155878208045934],[-117.50793872699478,52.15749393474888],[-117.5127743729746,52.15780065467631],[-117.51594561622335,52.15644689379818],[-117.51572248807578,52.15240569785998],[-117.5159373763521,52.14996198748921],[-117.51939570009435,52.14826911759982],[-117.5243515845576,52.145329761394684],[-117.53253301033094,52.14405466080527],[-117.54477370756534,52.14621123688164],[-117.55208933288732,52.14732318929833],[-117.5585044307153,52.14723652351274],[-117.56040555908156,52.14377055739553],[-117.55935218807014,52.13807431102812],[-117.55772659230976,52.13334662580876],[-117.55851046543229,52.13016561310621],[-117.56682558474841,52.128711853105116],[-117.56743581089857,52.128605315310246],[-117.57493590503758,52.13147753109629],[-117.58065386530964,52.134802431497654],[-117.5841567474767,52.137321782881536],[-117.59369987726437,52.13872122357759],[-117.59778643686212,52.13953372772212],[-117.60387933535546,52.142914576339],[-117.60771955026642,52.14810656438858],[-117.61101961705926,52.15335152081056],[-117.61421925876998,52.159117390900015],[-117.61749131488011,52.165273941984005],[-117.62062360777126,52.16926869532098],[-117.62273570658415,52.17069608297997],[-117.63332159731246,52.17170290248077],[-117.63878821156335,52.174393337254486],[-117.64311984491178,52.177996825277226],[-117.64930489750967,52.18353646324536],[-117.65520272192832,52.18782309364364],[-117.65721885268503,52.191816219797346],[-117.65857540815509,52.19563559920791],[-117.66450308418173,52.197871818300456],[-117.67557387231658,52.197395973081555],[-117.68125551592183,52.19724048225513],[-117.69037819496012,52.19630355085979],[-117.69542973288358,52.19267512903107],[-117.70008953083779,52.19069469616542],[-117.7087473677231,52.18855793232827],[-117.7158056845409,52.189829216355605],[-117.72473538946296,52.18888375017689],[-117.7298484040777,52.18906889061022],[-117.73552094520073,52.19033756705383],[-117.7407034399295,52.19370480058297],[-117.74065943917948,52.197864136271214],[-117.73989785126415,52.202071881955945],[-117.74992000548052,52.2032920804907],[-117.75447326765668,52.20432932063407],[-117.76310016547143,52.20822233201287],[-117.77097904478079,52.213026210868094],[-117.7815509392982,52.21702998884385],[-117.7916899259801,52.217734798378935],[-117.80134244479619,52.22037756218529],[-117.80830946045822,52.22340810411698],[-117.81302296363883,52.22797047218716],[-117.81418678690751,52.23793382344653],[-117.81775948213875,52.24602636664342],[-117.82370107380264,52.25036192548963],[-117.83092805427782,52.257039114678584],[-117.83203162495283,52.259087794851716],[-117.83313217219835,52.26154252817692],[-117.83739580568754,52.266564046172505],[-117.8402614096812,52.27077995998723],[-117.84036248720119,52.272586028926696],[-117.84467677117476,52.27360491451956],[-117.84480506268224,52.27376633747625],[-117.84495295584223,52.27392180577093],[-117.84510491600346,52.274075313207376],[-117.8452848242103,52.27421781310607],[-117.84546077226797,52.27436172100833],[-117.84563938636227,52.27450131183755],[-117.84578525121051,52.27465776376849],[-117.845951242803,52.27480549010383],[-117.84616208607788,52.274930989371505],[-117.84640544234682,52.27503113220886],[-117.84666247722852,52.27511757913377],[-117.84694182597131,52.275173994145845],[-117.84722264987066,52.275222621918985],[-117.84750764830639,52.27526871809359],[-117.84778815801138,52.27531901049706],[-117.84806761410655,52.27537487042107],[-117.84833724894632,52.27544357813647],[-117.8486115847609,52.27550697461704],[-117.8488970082149,52.27555084008204],[-117.84917923976289,52.275601810269634],[-117.84942601006459,52.27569372764192],[-117.84963858448018,52.27581991055997],[-117.8498392744376,52.27595032732545],[-117.85004392863496,52.27607932636732],[-117.85025286075843,52.2762052505634],[-117.8504702463206,52.276325559961656],[-117.85068742230206,52.27644698258468],[-117.85090063814326,52.27656981327152],[-117.85111364272893,52.276693766108],[-117.851322582622,52.27681967940527],[-117.85152917293094,52.276948252126076],[-117.85172163238735,52.27708316635315],[-117.85187352314499,52.2772372168982],[-117.85202755501885,52.27738972104932],[-117.85222387486425,52.277523778243754],[-117.8524411680055,52.27764463618805],[-117.85268584944684,52.27774768293203],[-117.85287123451579,52.27788096657166],[-117.85299315257325,52.278047000672046],[-117.85311163444067,52.2782116724249],[-117.85323793727089,52.27837407037491],[-117.85337816263372,52.2785312397329],[-117.85352010591845,52.27868909890351],[-117.8536621547593,52.278846405511416],[-117.85380602944316,52.279003831735544],[-117.85396617428847,52.27915338722111],[-117.8541522343779,52.27929291798741],[-117.85434054023294,52.279430349853904],[-117.85452884728493,52.279567781399564],[-117.85470891559092,52.279709704770084],[-117.85487678022324,52.27985754643548],[-117.85505481701324,52.280000454182876],[-117.85524923041797,52.28013492964712],[-117.8554622982246,52.28026846440064],[-117.85570511371328,52.28035218643971],[-117.85600679020797,52.280339624151374],[-117.85623868120116,52.28023693693149],[-117.85652825985896,52.280229721826274],[-117.85678555652835,52.280315032291014],[-117.85702672321226,52.2804172510288],[-117.85722135526521,52.28055060948857],[-117.85739512264611,52.28069660609867],[-117.85756696351318,52.28084302614368],[-117.85779775512708,52.280951281852396],[-117.85806828268723,52.28101551201119],[-117.85836105130912,52.28103052763563],[-117.85865340504144,52.28101842888331],[-117.85894544186804,52.28100800433067],[-117.85924038877177,52.28100172964881],[-117.85953137410564,52.28099686298877],[-117.85979860725108,52.28106875607051],[-117.86005047987862,52.28116326360754],[-117.86028737915035,52.28126856813089],[-117.86052824274685,52.28137245444599],[-117.86077391289294,52.28147046789629],[-117.86104735686504,52.281538850550625],[-117.86129001424642,52.281633264709505],[-117.86147193492381,52.28177531485081],[-117.86166402750189,52.28191243046052],[-117.86187281111852,52.2820394467856],[-117.86210554759897,52.28214727003054],[-117.8623415107759,52.282257577287886],[-117.86245173231663,52.28240754223318],[-117.86251419563972,52.28257558065337],[-117.86273262860566,52.28270044966562],[-117.86290126989825,52.282844377093234],[-117.86297888244637,52.28302025434634],[-117.86296354076816,52.283199164499635],[-117.86308866845835,52.283348491286404],[-117.86333267164622,52.28345540844456],[-117.86356713664523,52.28356391848804],[-117.86379732634079,52.28367550300104],[-117.8640408770622,52.28377505573443],[-117.86428004467531,52.28387825311379],[-117.86453247048152,52.28396996209119],[-117.86480997028235,52.28402676637105],[-117.86510363710991,52.284046909411344],[-117.86535069990688,52.28413767859542],[-117.86555361574948,52.28426652087551],[-117.86576059877275,52.28439340142822],[-117.86598876471761,52.284505966650364],[-117.8662081635651,52.28462582188601],[-117.8664046662841,52.284759293004285],[-117.86662000159205,52.284881108817586],[-117.86683544247974,52.28500237184081],[-117.86702167363113,52.285141328923366],[-117.86719784284354,52.28528465019799],[-117.86737176898026,52.28543007001711],[-117.86755190385523,52.2855719727763],[-117.86773621195809,52.28571135252526],[-117.86791624316335,52.28585381597498],[-117.86807411359345,52.28600600237369],[-117.8681793853001,52.286172537943585],[-117.86827480324632,52.28634233323439],[-117.8684317308441,52.28649952613549],[-117.86865742411199,52.2866057082255],[-117.86894553629632,52.28665534923354],[-117.86923575170844,52.28666451201919],[-117.86953122611166,52.28664583234324],[-117.86981968626579,52.28661537288349],[-117.87010239398698,52.286566451668335],[-117.87038945038222,52.286533634985915],[-117.87068331226706,52.286543051062495],[-117.87096138933417,52.28648928770498],[-117.87123750120855,52.28642635740878],[-117.87151719002104,52.286373834829575],[-117.8717437313974,52.28647555622791],[-117.8719277405851,52.28661660417759],[-117.87211978184503,52.286754263226186],[-117.87232273013942,52.28688309339022],[-117.87256396850636,52.28698528817574],[-117.87282838545464,52.28706259082397],[-117.87310528520864,52.28712271612982],[-117.87337215826788,52.287196804917585],[-117.87362697105532,52.28728584252391],[-117.87387473827694,52.28738284247728],[-117.87414939751801,52.28744506422464],[-117.87443001719551,52.28749529165235],[-117.87467105373258,52.28759859568095],[-117.87492843172889,52.287683856460966],[-117.87520523243457,52.287744538014806],[-117.87549675536586,52.287756593240125],[-117.87579016856756,52.28775863352355],[-117.8760841458905,52.28776747460425],[-117.87637615600067,52.28776715767604],[-117.87666809366077,52.2877476418027],[-117.87696112448909,52.28776149668035],[-117.87724900571328,52.28780264049081],[-117.87751020920976,52.28787744834626],[-117.87770753441859,52.28801659671825],[-117.87795341670497,52.28809427026134],[-117.87824866306939,52.28812577344199],[-117.87848294407068,52.28822576749445],[-117.87876525484688,52.28826707492237],[-117.87905772698056,52.28827411406047],[-117.8793516025813,52.28828350814827],[-117.87964361783344,52.28828317407956],[-117.87993731215626,52.28827393868983],[-117.88023689898631,52.28826285117834],[-117.88044470875343,52.28836606106974],[-117.88045742178437,52.28854355619857],[-117.88059125615851,52.28870588381161],[-117.88065316884772,52.28887725268163],[-117.88064122952761,52.289058095923046],[-117.88061663054302,52.28923747976721],[-117.88060093780355,52.289418627659444],[-117.8806510693219,52.28959368140395],[-117.88078308569729,52.28975587145675],[-117.88095258788316,52.28990546854514],[-117.88092560115106,52.29007792254094],[-117.88078940526908,52.29024155636652],[-117.8806829116818,52.29040446297251],[-117.88073069492988,52.29058217692249],[-117.88081428517009,52.29075619866792],[-117.8809115882451,52.29092610232596],[-117.88100503289444,52.29109687189597],[-117.881053029993,52.29127346302087],[-117.88108419207441,52.29145113578797],[-117.8812143920101,52.29161319682478],[-117.88130997903986,52.29178241935942],[-117.88137470618689,52.29195849874473],[-117.88142249399665,52.29213621219301],[-117.88154743603569,52.29229677423317],[-117.88168952737284,52.29245459718211],[-117.88182797218552,52.29261216338398],[-117.88196803173149,52.292770971362266],[-117.88210830236768,52.29292866546478],[-117.8822465401667,52.29308734479489],[-117.88237299590092,52.29324970908038],[-117.88253736007795,52.29339725256198],[-117.88271158050217,52.29354153474701],[-117.88285774793216,52.29369738526108],[-117.88298024584792,52.29386115836201],[-117.88305483644231,52.294033984363],[-117.88312728955952,52.29420834811294],[-117.8832168939786,52.29437996372615],[-117.88327626536008,52.294555104538304],[-117.88329221950879,52.29473508237656],[-117.88334422387972,52.294998284354946],[-117.88351031773577,52.29514650689623],[-117.88367662276315,52.29529361549486],[-117.88382665743961,52.29544860738057],[-117.88398686288886,52.295598671826944],[-117.88417512459397,52.29573716713377],[-117.88434336225178,52.29588385055817],[-117.88449736509678,52.2960374229909],[-117.88466153711414,52.29618607682683],[-117.88482967400603,52.29633331188337],[-117.88498175038411,52.29648731668856],[-117.88511808199071,52.29664641631509],[-117.88524070098771,52.29680963425959],[-117.88534574930625,52.29697782781121],[-117.88546461797976,52.297141341424336],[-117.88564068725556,52.29728574700342],[-117.88581086574425,52.29743199503736],[-117.88597087544927,52.29758317019841],[-117.88611321029707,52.297739873382135],[-117.88623187231066,52.29790450871024],[-117.88635053690803,52.2980691349862],[-117.8864771267806,52.29823094177122],[-117.88659568738234,52.2983961290539],[-117.88668166616077,52.298567485024094],[-117.88673709510992,52.29874403317019],[-117.88683057967708,52.29891479699801],[-117.88693767501441,52.299081994428114],[-117.88704862761823,52.299248343344544],[-117.8871363281502,52.299420388357035],[-117.88719014592128,52.29959569428626],[-117.88731257114983,52.29976002335278],[-117.8874179504791,52.29992653964874],[-117.88743734709058,52.30000012320482],[-117.88746201957973,52.300104545512184],[-117.88748367552984,52.30028379286341],[-117.8875792004629,52.300453570379034],[-117.88766701136996,52.3006250535282],[-117.88776639601882,52.30079397352226],[-117.88788903678382,52.300957188136124],[-117.88802528737794,52.30111684508744],[-117.88819142080081,52.30126506021263],[-117.8884241165117,52.30137394266608],[-117.8886916947164,52.30143505528429],[-117.88888792342611,52.3015707139034],[-117.88908660732592,52.3017031592625],[-117.889233349309,52.301856220968],[-117.88926606280836,52.30203568430461],[-117.88928204466178,52.3022156602646],[-117.88927936296459,52.302396590906184],[-117.88916827915628,52.302564254595055],[-117.88888832164234,52.30259819132784],[-117.88859530641135,52.30261314591165],[-117.88831195013299,52.30265530130271],[-117.88803986657082,52.302725899435856],[-117.8877991234492,52.30282634147715],[-117.88757378780153,52.302943095196255],[-117.88732647951231,52.30303913004541],[-117.8871096327405,52.303159864850386],[-117.88710195470608,52.303328031983966],[-117.88728254308461,52.30346823601002],[-117.88732286256356,52.30364653744269],[-117.88732778546718,52.3038263056084],[-117.88730685270704,52.304005954084964],[-117.88717424541281,52.30416025993737],[-117.88711145897959,52.304336398624365],[-117.88713129129721,52.304515517256206],[-117.88716410223451,52.30469442842493],[-117.8871931606606,52.304873635565286],[-117.88720548628677,52.30505335503037],[-117.8872384037739,52.305231704805614],[-117.88725651684592,52.30541014271276],[-117.88723365452228,52.30559021515178],[-117.88719265264213,52.305768453265046],[-117.88719575088606,52.3059480929475],[-117.88721751281689,52.30612678714271],[-117.88709974391675,52.30629059454616],[-117.88699218456327,52.30645907332192],[-117.88692605943754,52.3066332891335],[-117.88692347344438,52.30681365780004],[-117.8868788219984,52.30699163033254],[-117.88685809584649,52.307170164601295],[-117.88689831118427,52.30734902696254],[-117.88688316406251,52.30752738447614],[-117.88685503577457,52.30770595827349],[-117.88689911048992,52.30788396326942],[-117.8869074709988,52.30806510093131],[-117.88685797486643,52.30823934765008],[-117.88674342605609,52.30840564708681],[-117.8866663518132,52.30857908438934],[-117.88661815270162,52.30875624779253],[-117.88659356563491,52.30893563904978],[-117.8865855046411,52.30911562278463],[-117.88657561908094,52.30929547829334],[-117.8866257978626,52.30947052673208],[-117.88678178592579,52.3096236703143],[-117.88688943182495,52.30978808664436],[-117.8869144499029,52.30987109194774],[-117.88694242142951,52.30996784599179],[-117.88717210325771,52.31006353385359],[-117.88746245285502,52.31009240109052],[-117.88775391997167,52.31010553896094],[-117.8880470655188,52.310109775547915],[-117.8883414727075,52.31010732038608],[-117.888634369448,52.31010307023844],[-117.88892982472194,52.31009505407452],[-117.88922261718065,52.310091354828586],[-117.88951141878823,52.310108823771635],[-117.88979020984151,52.31016958867693],[-117.89006791108041,52.310226331317295],[-117.8903480674002,52.31027986037161],[-117.89063323720379,52.310326410508885],[-117.89092040269036,52.31036237545727],[-117.89121288108339,52.31036034617358],[-117.89150770960636,52.31035565559873],[-117.89179875825666,52.31037101958774],[-117.89207306553337,52.31043597751303],[-117.89231490185998,52.31053590192816],[-117.89250722014421,52.310672963318794],[-117.8927140948138,52.31080145918859],[-117.892819312013,52.310969082830354],[-117.89294263035451,52.31112894973194],[-117.89316244899291,52.311247637751435],[-117.89340303490289,52.3113542330692],[-117.89364926399463,52.311450508442285],[-117.89390352627507,52.3115434021581],[-117.8941608749967,52.31162973232745],[-117.8944572610865,52.31163643625309],[-117.89471364804548,52.311698441022216],[-117.89489121253156,52.31184518636933],[-117.89499612682481,52.31201447398502],[-117.89516243012827,52.31216212546967],[-117.89535100963279,52.31229948714262],[-117.89553948627065,52.31243740088646],[-117.8957218590214,52.312578280133394],[-117.89590209442642,52.31272069711179],[-117.89604462089446,52.31287682494853],[-117.89620472359917,52.31302798416218],[-117.89643964138749,52.31313531149178],[-117.89664674932631,52.313262686405274],[-117.89684817459775,52.3133907905172],[-117.89712443739046,52.313455311987546],[-117.89737110628359,52.313549351909664],[-117.89749346317544,52.313704630835744],[-117.8975094836155,52.313884604022746],[-117.89754062563026,52.31406282161621],[-117.89756608391366,52.31424176879208],[-117.8976348742583,52.31441642596953],[-117.89774011935127,52.31458404467489],[-117.89791833525419,52.3147274439697],[-117.8981130382886,52.31486184385245],[-117.89831181158536,52.314994272030845],[-117.89850844753929,52.315128237933884],[-117.89874422143285,52.31523110563224],[-117.89896491749906,52.315345318576036],[-117.89914752342503,52.31548507841993],[-117.89932178435413,52.31562988554586],[-117.89947590914187,52.31578344462234],[-117.89961428384763,52.315942100406794],[-117.89975244985067,52.31610186970524],[-117.89996887422588,52.31621916577186],[-117.90021644540079,52.31631834352844],[-117.90046026401767,52.3164178171817],[-117.90068633953493,52.31653297199255],[-117.90091690472838,52.31664392749999],[-117.90117675175706,52.31672702863279],[-117.90144140190185,52.31680426420917],[-117.90170840119954,52.31687884733997],[-117.90199576700024,52.31692382225403],[-117.90227145121513,52.316971922242644],[-117.90237103623339,52.317140266256686],[-117.90242858766334,52.31731581858875],[-117.90255894392688,52.317477861282846],[-117.90271126359117,52.31763127898195],[-117.90286937268701,52.317783414192995],[-117.90296531207893,52.31795150170443],[-117.90302437662001,52.31812885658042],[-117.90307421301921,52.31830612409937],[-117.90319117289312,52.31847060257625],[-117.90330802799923,52.3186356422204],[-117.90341643035029,52.31880629980847],[-117.90356380611829,52.31895655262438],[-117.90381224142436,52.31905125877422],[-117.90407053549526,52.319142710497886],[-117.90430582133756,52.3192483463742],[-117.90448611286648,52.31939074927374],[-117.9047101800802,52.319506881762415],[-117.90491488914883,52.31963745447956],[-117.9051374473573,52.31975179210778],[-117.90540363456373,52.31983081247252],[-117.90563945053964,52.31993366577864],[-117.9058380606619,52.320067194242355],[-117.90604950830601,52.320191466352966],[-117.90627327035688,52.32030926185486],[-117.90652417142869,52.320400757776376],[-117.90677131955793,52.32049254978468],[-117.90697838929,52.320620457918835],[-117.90718973730937,52.32074528920632],[-117.90739274030159,52.32087516824158],[-117.90759167364465,52.32100702749792],[-117.90780709619936,52.32112987703388],[-117.90803331988633,52.321244464703895],[-117.90824702373239,52.32136663313911],[-117.90843740617703,52.32150465280735],[-117.90864286844844,52.32163132521488],[-117.90888193480072,52.32173664599928],[-117.90910216630083,52.32185362780668],[-117.90929693624682,52.32198800817019],[-117.90946750162342,52.32213310494762],[-117.90958825034397,52.32229727976229],[-117.90967233159905,52.32246961026737],[-117.90978118937389,52.322638025067626],[-117.9099400740662,52.32278625651574],[-117.91016213892681,52.32290336404701],[-117.91028085780795,52.323068523926004],[-117.91046749835982,52.3232068457388],[-117.91070699682331,52.32330993521017],[-117.9109634602376,52.32339165354757],[-117.91115620827438,52.32352701652619],[-117.91131029941526,52.3236811113353],[-117.9115305474051,52.32379808835609],[-117.91176749259024,52.32390495023518],[-117.91198935871405,52.324023167880505],[-117.91220084341874,52.324147428396905],[-117.91237721769122,52.3242912290143],[-117.91255208122881,52.324433235440644],[-117.91276560420592,52.32455650896382],[-117.91290426524702,52.324714034095855],[-117.91305685491291,52.3248663325415],[-117.91324137359636,52.32500618803403],[-117.9133875482231,52.325163109935104],[-117.91354400109908,52.32531454952569],[-117.91371834994199,52.325459333914964],[-117.91386291196696,52.325615013674835],[-117.91399537084529,52.32577605652469],[-117.91414572571051,52.32593044416731],[-117.91429607997544,52.32608484050628],[-117.91443636741218,52.326243605098995],[-117.91448991061846,52.32642112211542],[-117.9146097026502,52.32658070853358],[-117.91478963998713,52.326725322040176],[-117.9149498596166,52.32687645374784],[-117.91510225643313,52.32702985405474],[-117.91525423391093,52.32718549048692],[-117.91544936192963,52.32731818493495],[-117.91569906064606,52.327347511863344],[-117.915899666826,52.327480588758384],[-117.91608550702104,52.32762335593038],[-117.91625162931956,52.327772641501994],[-117.91634732811575,52.327942391671705],[-117.91644569210897,52.328107805685924],[-117.916661279094,52.32823008569852],[-117.91687858718794,52.32835305433495],[-117.9170712720738,52.328488959369764],[-117.91725988702761,52.32862684498743],[-117.91745257433469,52.32876274936021],[-117.9176332620636,52.32890346464919],[-117.91781363783296,52.32904584576639],[-117.9180064325704,52.32918119677031],[-117.91821133317502,52.32931118372689],[-117.9184104438882,52.32944246225218],[-117.91856489512611,52.32959488059258],[-117.9187618696589,52.32972769691711],[-117.91896270394705,52.32985966345959],[-117.91900651501186,52.33003988061339],[-117.91887039557984,52.330193402881],[-117.91892704315559,52.330364362672235],[-117.91909918468238,52.33051124707063],[-117.91926339920072,52.330660952715135],[-117.91941347514036,52.33081700798304],[-117.9196089454261,52.33094802893542],[-117.91984156549535,52.33105852085471],[-117.92006552525774,52.33117573635272],[-117.9202963238675,52.33128609075985],[-117.92056527077631,52.331360757314],[-117.92081209296052,52.33145474607327],[-117.92103595362597,52.33157251206902],[-117.92124729208437,52.33169786909075],[-117.92144214421197,52.33183222803677],[-117.92162875292827,52.331971092269825],[-117.9218257477207,52.332103903148806],[-117.92206062370354,52.33221229071524],[-117.9223174187577,52.33230245950998],[-117.9225661811604,52.332396010787875],[-117.9227331810428,52.33254083162536],[-117.92286324103209,52.33270507703403],[-117.92297765285326,52.33287386099457],[-117.92315363198377,52.33301028186754],[-117.92340735330171,52.333107002928486],[-117.92365111091785,52.33320754026204],[-117.9238903817002,52.33331227676287],[-117.9241126422598,52.33342880422552],[-117.9243346965224,52.333546436069945],[-117.92457610939036,52.33364963259658],[-117.92478971225405,52.33377288310893],[-117.92496392378857,52.33391876337753],[-117.92507156643956,52.33408425487289],[-117.92515938376218,52.334256827760655],[-117.92532008591853,52.33440571680838],[-117.92550864931441,52.33454414079439],[-117.92568297012248,52.334689467486974],[-117.92586757166383,52.334829301833025],[-117.92607507955263,52.33495550831604],[-117.92628858775363,52.335079317264686],[-117.92649171555888,52.33520916143206],[-117.92669473919037,52.33533956655098],[-117.92690105356283,52.33546230274951],[-117.92704548748401,52.335619078606804],[-117.92715590823768,52.33577968817856],[-117.92720403831477,52.33595681533702],[-117.92736433563874,52.33610792881966],[-117.92748733171919,52.336270535727635],[-117.92762018857269,52.336429886640225],[-117.92777073295133,52.33658370293984],[-117.92790134784629,52.336745153404955],[-117.92800665944625,52.336913303052064],[-117.92817317316005,52.33706089542814],[-117.92839290781602,52.3371811804175],[-117.92858832877718,52.337312746918776],[-117.92875453157092,52.33746201346835],[-117.9289048745167,52.33761694190644],[-117.92903742797643,52.3377779571746],[-117.92913246830614,52.33795158909209],[-117.9292659635967,52.33810759671603],[-117.92947808880223,52.33822904450378],[-117.92971849654198,52.338337789713805],[-117.92993641614036,52.3384579441434],[-117.93010241895634,52.33860832236415],[-117.9301907890314,52.33877810205174],[-117.93024644746984,52.33895462384906],[-117.93029234978741,52.33913384924923],[-117.93033846152888,52.33931196087283],[-117.93037309477933,52.33949209619326],[-117.93042134754873,52.33966866018777],[-117.93051551153248,52.33983715586646],[-117.93065793824549,52.33999491292538],[-117.93079222612252,52.34015661471915],[-117.93088868661864,52.34033259984849],[-117.93110365004169,52.340439004596654],[-117.9313814412735,52.34050635049123],[-117.9316607449678,52.3405754982627],[-117.93189084086688,52.34068014155311],[-117.93207710508378,52.34082120659357],[-117.9322510553369,52.340968750185766],[-117.93239156080826,52.34112693882365],[-117.93252111305937,52.34128435351677],[-117.93271218254802,52.34141955132894],[-117.93283876056847,52.3415829681636],[-117.93289067610137,52.341759794695044],[-117.93298313359577,52.34192759930841],[-117.93315333570189,52.34207543890155],[-117.9332834151928,52.34223007274293],[-117.93332750756178,52.34240916902751],[-117.93336074768375,52.342586948091956],[-117.93332892769513,52.342766387082555],[-117.93321274556254,52.342932039145325],[-117.9330297348262,52.34306933146883],[-117.93283232337032,52.34320449000127],[-117.93275986030957,52.34337375322065],[-117.93273502723949,52.343555376877305],[-117.93266892621618,52.34373016613573],[-117.9324855976893,52.34386912366283],[-117.93228666745881,52.34400248756393],[-117.9321014050924,52.34414187829868],[-117.93195359866526,52.34429855187434],[-117.93185890250916,52.344467959644206],[-117.93178710913016,52.344643479556034],[-117.93174088104489,52.34482078421018],[-117.93173655015725,52.345001573425165],[-117.93175220152439,52.34518432628366],[-117.93174818336527,52.34536344930685],[-117.93167915404814,52.34553408918286],[-117.93150984536597,52.34568700471633],[-117.9312834142906,52.345799257057955],[-117.93102067283976,52.34588810447278],[-117.93083879160937,52.34601927197361],[-117.93077012205599,52.34619782591414],[-117.93073108754788,52.34637620127827],[-117.93070849022996,52.3465557152172],[-117.93070070981773,52.34673514432921],[-117.93069465186151,52.346915253327495],[-117.93066292297404,52.34709412967021],[-117.93057004185547,52.347263663526924],[-117.93038799426945,52.34740553364003],[-117.93016436572998,52.34752250248143],[-117.92998800355957,52.3476636407451],[-117.92974799362906,52.347769301182595],[-117.92956891670543,52.347905176439404],[-117.92955502687258,52.34808755499222],[-117.92952876954892,52.348266822334175],[-117.92950079111708,52.348445400807286],[-117.92946357729328,52.348623894047996],[-117.92943184037621,52.34880277872885],[-117.92942588222917,52.348982326057616],[-117.92942905391457,52.34916251988244],[-117.92943233102031,52.34934215236558],[-117.92943743447955,52.349521912345786],[-117.929436955258,52.349701842141755],[-117.92941940993362,52.34988397429219],[-117.92941345158562,52.35006352147101],[-117.9294642696807,52.35023631837393],[-117.9295926876219,52.35039986516072],[-117.92972507211178,52.35056200069038],[-117.92985970386822,52.350722027208356],[-117.93000806146799,52.35087793884243],[-117.93014300807943,52.351036298863335],[-117.93022153905781,52.351209341834036],[-117.93029031299362,52.35138507944685],[-117.93036863609562,52.351559235994756],[-117.93043386205593,52.35173416605419],[-117.93042811677358,52.35191259930667],[-117.93034383295358,52.35208555864711],[-117.93032112564707,52.352265633038634],[-117.93039052898645,52.35243802928224],[-117.93049954148697,52.35260642964823],[-117.93055715087308,52.3527825156061],[-117.930603278287,52.35296062525304],[-117.93064950979605,52.35313818245094],[-117.93069391686782,52.35331560319454],[-117.93074197562802,52.35349328780911],[-117.93078445155253,52.3536711422845],[-117.93081941267262,52.35384960044311],[-117.93085254756073,52.35402793106714],[-117.93088182056427,52.35420712038168],[-117.93090916356026,52.35438673457176],[-117.93092716328908,52.35456683387199],[-117.9309870217895,52.354740819406445],[-117.93111180578369,52.354904108952766],[-117.9312245858436,52.35507220199355],[-117.93131998585571,52.35524416368068],[-117.93134268796709,52.35541894026358],[-117.9312888256788,52.355597408339996],[-117.93125516088945,52.35577671747439],[-117.93126403129486,52.35595617015607],[-117.93127462299906,52.3561363116202],[-117.93126866983236,52.35631586694182],[-117.93125713302133,52.356495592165714],[-117.93124376947996,52.35667518987089],[-117.93123223246921,52.35685491504284],[-117.93122069536236,52.357034640188836],[-117.9312036781886,52.35721398282863],[-117.9311884875379,52.357393452934915],[-117.93118243012118,52.357573560483935],[-117.93119302188168,52.3577537017321],[-117.93119448029377,52.357933205486766],[-117.93116650248767,52.35811178303569],[-117.93112208412984,52.358289213102424],[-117.93107025484673,52.35846668555082],[-117.93101304870972,52.35864322305862],[-117.93094681220839,52.358818570623676],[-117.93088240357318,52.35899403671604],[-117.93083980987818,52.35917159405314],[-117.93079142106563,52.359350443882185],[-117.93076354607456,52.359528459826606],[-117.93081954647226,52.35970331241172],[-117.9308998189745,52.35987703367568],[-117.93098009212294,52.360050754860985],[-117.93104716017868,52.3602258109329],[-117.93111036607033,52.360401725670336],[-117.93115660930945,52.36057927274321],[-117.93118202528022,52.360759319810775],[-117.93123223567679,52.36093545567164],[-117.9313453448139,52.36110188169778],[-117.93148601790702,52.36125950767118],[-117.9316404217405,52.36141300967761],[-117.93178903163742,52.36156780404005],[-117.93192349459648,52.36172894944024],[-117.93202888450446,52.36189708329708],[-117.93208092654619,52.3620733461175],[-117.93210838323422,52.36225240653826],[-117.93211877089918,52.36243366077324],[-117.93211282037593,52.362613215271686],[-117.93209215091846,52.362792302317764],[-117.93205676234416,52.36297092190368],[-117.93201589107231,52.363149167923986],[-117.9319731942178,52.36332727751506],[-117.93193049533792,52.36350539597583],[-117.93188607456975,52.363682825601956],[-117.93183972277114,52.363860680106875],[-117.93179347431654,52.36403798216641],[-117.93174529312691,52.36421571801147],[-117.9316952795759,52.36441306684913],[-117.93170964261807,52.36438586140715],[-117.93173643796081,52.364331875434054],[-117.93177998870861,52.36427737069],[-117.93185334284371,52.364231715425774],[-117.93193974320579,52.364195437283726],[-117.93207087706251,52.364167353329535],[-117.93221866244072,52.364139302803714],[-117.93229065107943,52.36412063139258],[-117.93232030054439,52.36412044356839],[-117.93242147632323,52.3640744726333],[-117.93253930353619,52.36402853513954],[-117.93262555046662,52.36398321036782],[-117.93272657145663,52.3639282019578],[-117.93285865470179,52.36385561986754],[-117.93297388294403,52.363764368433124],[-117.93308931542435,52.36369174369298],[-117.93319018090294,52.36362769766158],[-117.9333077464372,52.36357328348027],[-117.93343872322345,52.363536160761896],[-117.93355502958201,52.36350816917338],[-117.93368798722867,52.363480210834254],[-117.93383409664605,52.363461067990265],[-117.93390639222898,52.36346046997991],[-117.93398036033655,52.36345096216801],[-117.93411133617299,52.36341383868758],[-117.93422931423804,52.3633769366621],[-117.93430099179591,52.36334018958137],[-117.93435925905374,52.363286142066244],[-117.93441564844188,52.3632223774649],[-117.93442990401014,52.36319573297673],[-117.9344734502096,52.3631412271753],[-117.93454471444005,52.36308695792766],[-117.93463257890778,52.363023132251406],[-117.93470337741338,52.36294176018597],[-117.93474620108115,52.36285165784163],[-117.93477492226144,52.36279724613555],[-117.93480197104003,52.36275174419334],[-117.93481576248895,52.36269798801858],[-117.93484448347925,52.36264357628881],[-117.93485812192945,52.36258077398415],[-117.93488699737767,52.36253539945005],[-117.93489896176075,52.36248151582148],[-117.93489818880319,52.362436329763895],[-117.93491198170375,52.36238256465497],[-117.93491120873433,52.36233737859411],[-117.93492499991476,52.36228362238934],[-117.93493889641454,52.362229304864634],[-117.93495284380006,52.362184576955734],[-117.93496674023292,52.36213025942359],[-117.93497885901105,52.3620854129841],[-117.93499260076956,52.36202205823032],[-117.93503604139453,52.36196810457533],[-117.93512207599069,52.36190415104125],[-117.93514923603772,52.36181860654939],[-117.93522033047024,52.3630274648804],[-117.93561061724762,52.36302873628971],[-117.93590282028548,52.363049676104495],[-117.93619079227192,52.36308330004883],[-117.93647677837343,52.363127508114424],[-117.93675467270981,52.36318525036302],[-117.93701497259597,52.36326771581476],[-117.93725893226333,52.363368222230086],[-117.93748107108077,52.363486387525604],[-117.93769078663969,52.363611584124165],[-117.93787769036956,52.36374985751023],[-117.93800842529538,52.36391129322699],[-117.93811384423968,52.36407942127986],[-117.93820970953601,52.3642491486655],[-117.93830354131632,52.3644198533857],[-117.93839747748177,52.364590005599354],[-117.93849710433723,52.3647594261225],[-117.93858910968692,52.36493001207715],[-117.93864300919427,52.36510639892332],[-117.93865180692629,52.365286411075225],[-117.93863471373963,52.36546630607801],[-117.93854892357842,52.36563746715743],[-117.93845765161016,52.365808246015575],[-117.93832571423525,52.3659688602738],[-117.93827442693869,52.36614355503579],[-117.9383111525533,52.36632268902081],[-117.93839157117515,52.366495851817064],[-117.93850075572968,52.36666368153781],[-117.93865765782171,52.36681395978132],[-117.93885486240627,52.36694674709916],[-117.93906428617568,52.36707360701898],[-117.93928206265457,52.367195416290976],[-117.93950443565575,52.36731246364437],[-117.93973537194074,52.367423337635444],[-117.93997894357682,52.36752606547008],[-117.94023885796057,52.367610750875265],[-117.94052890243948,52.36762362818443],[-117.94081497530586,52.36767741498958],[-117.94106909665301,52.36776339155026],[-117.9412321198073,52.36791070701514],[-117.9413389687616,52.368081195327704],[-117.94140201921833,52.36825821713291],[-117.94149597595755,52.36842836634085],[-117.94164036435188,52.368586233788804],[-117.94184849847724,52.36871018133341],[-117.94209411847027,52.36881191822665],[-117.94234475252367,52.368906665526886],[-117.9426001900075,52.3689955458435],[-117.94285327835418,52.36908708706505],[-117.94310636944556,52.36917861881882],[-117.94335058557158,52.369277998251235],[-117.94357726130023,52.36939195102784],[-117.94379099010595,52.36951572449691],[-117.94400054443884,52.36964202285496],[-117.94420367940708,52.36977294630151],[-117.9443725149646,52.36991897285129],[-117.94455581294656,52.37005698025171],[-117.9448193529238,52.37013232024918],[-117.94509620796424,52.37018601242681],[-117.94535165868919,52.37027488660514],[-117.94564276629863,52.37030193178852],[-117.94593110662426,52.37033386524468],[-117.94622153688032,52.37035465171714],[-117.94650841655437,52.37039437988866],[-117.94679529842684,52.3704340984405],[-117.94708713784526,52.370457246377015],[-117.94737788178466,52.370476363805054],[-117.94767097595089,52.370492818937905],[-117.94796506098386,52.37051386442404],[-117.94823262950378,52.370577625167655],[-117.94847890135871,52.3706760071954],[-117.9487281504177,52.37076838588572],[-117.94899556531178,52.37084285705907],[-117.94922633617003,52.37095482561791],[-117.9494999647852,52.371006025366135],[-117.94978528743337,52.37105409402665],[-117.95007342028694,52.37102789183787],[-117.95032087333145,52.370932289578384],[-117.95060978897688,52.37091178196105],[-117.95089776240674,52.37087654059226],[-117.95119049227235,52.370885072360196],[-117.95148285955834,52.370905420428095],[-117.95177401905293,52.370882809597994],[-117.95205958855705,52.370840628538886],[-117.95233570448389,52.3707797367171],[-117.95261020095974,52.37071760333376],[-117.95281717975386,52.37059097316608],[-117.95307318976823,52.37050893156442],[-117.95336131698441,52.37048272120819],[-117.9536013954195,52.37037701379399],[-117.95388461188115,52.370337481009024],[-117.95403576870774,52.37018271198908],[-117.9542912517141,52.370103456506875],[-117.95457660503307,52.370062382984486],[-117.95484717694059,52.369991505318936],[-117.95512751398914,52.369937670691094],[-117.95542091357993,52.369932699662165],[-117.95570845947294,52.36989967384468],[-117.95599310219555,52.36994147009183],[-117.95628572329746,52.3699505414459],[-117.95657704408261,52.36997644547569],[-117.95686476480122,52.370011693059496],[-117.95714539202329,52.37006505827406],[-117.95742398416594,52.370119409484644],[-117.95769344748305,52.37019286508211],[-117.95797470234643,52.37024288701615],[-117.95826034126175,52.37028926870455],[-117.95855155483679,52.37029597976625],[-117.95884098428441,52.3702726628139],[-117.95911739884622,52.37021008866112],[-117.95936968369055,52.370118189500495],[-117.95962802597901,52.370033480526324],[-117.95988950157687,52.36995180500055],[-117.96010637687846,52.36983149281864],[-117.96036351397659,52.36974331386889],[-117.96061871771562,52.369655568650494],[-117.9608535020371,52.36954834241852],[-117.96104405397786,52.36941040335293],[-117.9612410801628,52.36927742709388],[-117.96144489234324,52.36914774741884],[-117.96168301294324,52.36904244860282],[-117.96194427027511,52.368961882154004],[-117.96223012883273,52.36891800983437],[-117.96252048381578,52.36888967619771],[-117.96281131223309,52.36886870385869],[-117.96308870592321,52.36881070224995],[-117.96335904766508,52.36874091845496],[-117.96363262468962,52.368673624438415],[-117.96386457498801,52.36856168300068],[-117.9641050910337,52.368463315742865],[-117.96439366201089,52.368424699538586],[-117.96468380395648,52.368397474252916],[-117.96497457040486,52.368366906928586],[-117.96525990206767,52.36832580710457],[-117.96552689438828,52.36825409812197],[-117.9657892372227,52.36817755258587],[-117.96607247353153,52.3681278480224],[-117.96632473138826,52.36803593360854],[-117.96656596859086,52.36793365855135],[-117.96682741666548,52.36785197618571],[-117.96710067112986,52.36778634016158],[-117.96736979743142,52.367713078722204],[-117.96764607995168,52.36765103658281],[-117.96791468312573,52.36758056276964],[-117.96816301294695,52.36747991470639],[-117.96842357756543,52.36741282582914],[-117.96872187391577,52.36742113281061],[-117.96900395771958,52.367377542396675],[-117.96926842768063,52.367299449634444],[-117.96954731838042,52.36724322563863],[-117.96983566816877,52.36720570965698],[-117.97010912211596,52.3671389527412],[-117.97028136196509,52.36699972946144],[-117.97043620755092,52.36684463111592],[-117.97064629633856,52.366710851640114],[-117.970893019933,52.36664844690193],[-117.97104002040797,52.3668126530883],[-117.97120230811947,52.366964390620765],[-117.97136694529576,52.36711346585534],[-117.97151764939946,52.36726777418808],[-117.97168635946251,52.36741487508449],[-117.97187307558458,52.36755476846859],[-117.97208108345322,52.36767977570409],[-117.9723138293924,52.36779126415705],[-117.97254485251666,52.36790207285465],[-117.97278015555996,52.368009793403836],[-117.97303340699887,52.3681007075715],[-117.97329114629277,52.36818741969666],[-117.97352420936714,52.36829723945681],[-117.97372998221363,52.36842434441423],[-117.97390063480194,52.36857101634908],[-117.97404717754058,52.36872785650816],[-117.97417816771026,52.368888689521604],[-117.97432288525171,52.36904540247852],[-117.97448967968045,52.369192933637464],[-117.97468272831827,52.369328738688445],[-117.9748924753304,52.36945442887635],[-117.97511892404385,52.3695699862929],[-117.97535658916107,52.36967504827093],[-117.97561199598599,52.36976440835983],[-117.97588977737911,52.369823170443375],[-117.9761650033428,52.36988570779468],[-117.97642755909418,52.36996653611181],[-117.97667827355086,52.37006121813558],[-117.9769093200364,52.37017201795904],[-117.97711480064862,52.37030078296836],[-117.97729147500897,52.370445041087216],[-117.97741861812138,52.37060673940215],[-117.97754169316231,52.37077040270445],[-117.97767849581135,52.37092994557622],[-117.97774790873291,52.37110343370888],[-117.97779435533798,52.371280960717435],[-117.97789791026857,52.371450047624315],[-117.97794456583449,52.37162646073434],[-117.97801194556442,52.37180093565168],[-117.9781076738282,52.37197229530491],[-117.97821702670899,52.37214008695805],[-117.97811456175607,52.37230221230108],[-117.97793841883056,52.37245245778546],[-117.97785673840076,52.3726222253352],[-117.97801612958132,52.37275005604098],[-117.97832428641618,52.3727652202514],[-117.9786236008276,52.37275834328891],[-117.97889586418711,52.372807119379424],[-117.97914363023422,52.372907790536225],[-117.97940141052305,52.37299448878286],[-117.97966858106449,52.37307055543569],[-117.97993126589152,52.373150823194365],[-117.98019160358415,52.37323375257358],[-117.98044704148873,52.37332310178705],[-117.98070347464476,52.37341704123607],[-117.98086414211555,52.373557925568136],[-117.98093843253585,52.37373512405233],[-117.98098123841758,52.373912404921384],[-117.9809514209008,52.374091979326565],[-117.98096984730445,52.37427094540352],[-117.98099375479778,52.374450300489066],[-117.98100852644811,52.374629013094044],[-117.98108333823626,52.37480343131021],[-117.98114097412771,52.37498061183692],[-117.9811114692279,52.37515851099031],[-117.98108958539876,52.37533525070397],[-117.9811396006826,52.375513590567536],[-117.98122600376969,52.375685427428486],[-117.98137452801623,52.375841831753],[-117.98157577006695,52.37597367629031],[-117.98180420161871,52.37608879435445],[-117.98206846710977,52.376160708090644],[-117.98235344434747,52.37621092414185],[-117.98262074477977,52.37628642246484],[-117.98289940917266,52.37634071230723],[-117.98318422381062,52.37638188926395],[-117.98344886606063,52.37646172309535],[-117.98370177390161,52.37655484100715],[-117.98396265981272,52.37663497276971],[-117.98425524647163,52.376664275297074],[-117.98453303596906,52.37661413715492],[-117.98480773098484,52.37655081416091],[-117.98508666123159,52.376494553247355],[-117.98536710584686,52.376440093457376],[-117.98564331529796,52.376378561364504],[-117.98592792951341,52.37637120496168],[-117.98614682104446,52.37648790890071],[-117.98635518181712,52.37662137431378],[-117.98655654578019,52.37675265769758],[-117.98678609604393,52.37687178637048],[-117.9870448916647,52.37694330889081],[-117.98734724692645,52.37692025486645],[-117.98753504598379,52.37679675257524],[-117.9877922311981,52.37671810286227],[-117.98806345170242,52.376683305255774],[-117.98830432434414,52.37679137341923],[-117.98851811505492,52.376915616305084],[-117.98872173007622,52.37704479488426],[-117.98891903244495,52.37717804856938],[-117.98908987598135,52.37732413584471],[-117.98925664989032,52.37747219731001],[-117.98944164047926,52.3776119258828],[-117.98959651503742,52.37776424396191],[-117.98974721686778,52.377919088739205],[-117.98992354928143,52.3780655544173],[-117.99017938810564,52.378143064807425],[-117.99046033752889,52.37811569496092],[-117.99072411049153,52.37814072859418],[-117.99097793627335,52.37823897369469],[-117.9911267139895,52.37839424252469],[-117.99113139153347,52.37856774768462],[-117.9911089240307,52.378747830252514],[-117.99115919235506,52.3789250515276],[-117.99143350121403,52.37893332123206],[-117.99172824475681,52.37891142483367],[-117.99201350007718,52.37895035244128],[-117.99229298307701,52.37901031522558],[-117.99255400443897,52.379089866182035],[-117.99277861862149,52.37920582314935],[-117.99295982705473,52.379356005077135],[-117.99290951176518,52.37951667742019],[-117.99296547937611,52.379693163559736],[-117.99321485260214,52.37976570584398],[-117.99349465479757,52.37982399052698],[-117.99354341695347,52.37999941785069],[-117.99355255144654,52.380178862383026],[-117.99347760462118,52.38035249630207],[-117.9934462144586,52.38053083270778],[-117.993460727528,52.380711218071596],[-117.99354191418925,52.38088155174242],[-117.9935545654459,52.380893140580206],[-117.9938218859881,52.38112769335222],[-117.99404416815746,52.381246301261015],[-117.99429050072087,52.381345146693164],[-117.994568797299,52.38140163595697],[-117.9948613608894,52.38142131330361],[-117.99515545668136,52.38141290050307],[-117.99544797393602,52.38139308694098],[-117.99573980379121,52.38136702463832],[-117.99602864029121,52.3813272164003],[-117.99628170163226,52.38124093340248],[-117.99652021899523,52.381133336512285],[-117.99676459389156,52.38103404168339],[-117.99702789201494,52.38095241861468],[-117.99728967339229,52.380868993309875],[-117.99755993076018,52.38079969191993],[-117.9978519484402,52.380802401567365],[-117.99814579234986,52.38080524582934],[-117.9984358282633,52.38076889948741],[-117.99870294698835,52.3806965535597],[-117.99895400335778,52.38060110127246],[-117.99922263599312,52.380530555753516],[-117.99950460648309,52.38047785469954],[-117.99979671353888,52.38043036672457],[-118.00000038012159,52.38047999381809],[-118.00012295028205,52.38048790178005],[-118.00024551882792,52.38049581852333],[-118.00038889580976,52.38048147354559],[-118.00054881201598,52.38049761354131],[-118.00062223616015,52.38058053461355],[-118.00066760805552,52.380694792225086],[-118.00066987570051,52.38079197150974],[-118.00067321948904,52.38087343084814],[-118.00067349081037,52.380881915384265],[-118.00067683622488,52.38088383446188],[-118.0007741794207,52.38092779532023],[-118.0009194355567,52.38095307444314],[-118.0010919681239,52.38099095253556],[-118.00123695322574,52.38100774672597],[-118.00139477236435,52.38101527462749],[-118.00156227557223,52.381040394391654],[-118.00182340375157,52.38109962276547],[-118.00205957692573,52.3812033889646],[-118.00226690850813,52.38133279613022],[-118.00248890304704,52.381453063057435],[-118.00271089882378,52.38157332954938],[-118.00291092251851,52.3817022300647],[-118.00305578741902,52.38185890567626],[-118.00316657272333,52.38202957904054],[-118.00335849709336,52.382152277807265],[-118.00363990908915,52.382221937851114],[-118.00390014139994,52.382305918432365],[-118.00415813043635,52.38239200865132],[-118.00441377504116,52.38248075207139],[-118.00466738541775,52.382570482417755],[-118.00492454991797,52.38266101732678],[-118.00516684493441,52.3827618145881],[-118.00537522991193,52.38288564689978],[-118.00555581073715,52.38302955190764],[-118.00572856176403,52.38317574037932],[-118.00586382061195,52.383324418954594],[-118.00602087570329,52.3834853163834],[-118.00609580398529,52.383659717303736],[-118.00614786479058,52.383837610200075],[-118.00614818488793,52.384024906159254],[-118.00632415420223,52.384153833704254],[-118.00651815152273,52.384325179663094],[-118.00668953512616,52.38445886180092],[-118.00681273137016,52.38460275213627],[-118.0068656058205,52.38472654913993],[-118.00695480673974,52.384943676729094],[-118.00702599042394,52.385088485729746],[-118.00706381732574,52.38524339977472],[-118.00715319806525,52.385439673097224],[-118.00729413526159,52.3856772966493],[-118.00736564083785,52.385790539184484],[-118.00743525328815,52.38589405705456],[-118.00753857127762,52.38597565257662],[-118.00762480563486,52.38608935278267],[-118.00773120924292,52.38624392244084],[-118.0078007470062,52.38636775052179],[-118.00787372670214,52.38652283590809],[-118.00808152057226,52.386759435366976],[-118.0083243916066,52.387016507564745],[-118.00842926051524,52.38711964387886],[-118.00851721786808,52.387263913001156],[-118.00860373889746,52.38735619699684],[-118.00867335684626,52.38745971400196],[-118.00877815348697,52.387583151503186],[-118.00891623535145,52.38771678482594],[-118.00913983478377,52.38782868916708],[-118.00924592993037,52.388014823363186],[-118.00933231427449,52.38811780998955],[-118.00944008976947,52.388344682190635],[-118.00948641062293,52.38851371862344],[-118.00955180607873,52.38868971302139],[-118.0096353877829,52.388837631482176],[-118.00975600898661,52.389025336492715],[-118.00979570813051,52.389200115580216],[-118.00979739029864,52.3893801753047],[-118.00979348491822,52.38956040870428],[-118.00978968395184,52.38974008070725],[-118.00977470441948,52.38992011790468],[-118.00977283441397,52.39009936365112],[-118.00979870040695,52.39027882797851],[-118.00984336684321,52.39045677468134],[-118.00992411763164,52.390629884675235],[-118.00992828889429,52.390796569302346],[-118.00996588717754,52.39096274630653],[-118.00998668233098,52.391139612967514],[-118.01002585948333,52.39134707157995],[-118.01008764153781,52.39151266205961],[-118.01019471832427,52.391683636343586],[-118.01032655662863,52.39189073301936],[-118.01042345731965,52.39206664497734],[-118.01038992994022,52.39220703531894],[-118.01036622462549,52.39238421337052],[-118.01044322156051,52.3925576227221],[-118.01058428627229,52.39271514899952],[-118.0106754312967,52.39288219747837],[-118.01077164614394,52.39305186115401],[-118.01091240366621,52.39321105326676],[-118.011112091415,52.39334216618697],[-118.01126772064424,52.39349111205042],[-118.01138305405654,52.393657573202844],[-118.0115302327605,52.39381213538842],[-118.01171332828886,52.39395282327109],[-118.0118983578981,52.39409307569874],[-118.01208918572503,52.39423203126356],[-118.01222487928541,52.39438862423617],[-118.01228836358051,52.39456504255652],[-118.01234798257357,52.39474233113631],[-118.0124000825497,52.39492021973522],[-118.01241885390135,52.39509807305156],[-118.0123748362085,52.39527496771303],[-118.01238846396167,52.395470516100175],[-118.0124423312509,52.39560904179697],[-118.01244178773288,52.39576130240437],[-118.01240004697598,52.395925953738356],[-118.01228555442792,52.396033680232726],[-118.01225981904821,52.396211845775234],[-118.01228956337094,52.396390447314225],[-118.01232458476757,52.39657055020419],[-118.0122904324227,52.39674418174749],[-118.01217251320132,52.396900181462584],[-118.01203454972517,52.39703450016167],[-118.01182685715605,52.397175277914435],[-118.01164020942605,52.39731243596847],[-118.01149078401109,52.39746852568134],[-118.01132107378912,52.39761418089212],[-118.01111251578882,52.39773967261092],[-118.01089360663211,52.39786106504458],[-118.01067317767452,52.397980664529136],[-118.0104505060129,52.39810235608595],[-118.0102467027438,52.39823212778322],[-118.01015678658923,52.39839682816888],[-118.01013183329889,52.39858068830066],[-118.01011136783475,52.398760336682656],[-118.01010197694697,52.39894019006848],[-118.01008333819388,52.39911997355539],[-118.01004610248435,52.39930016080951],[-118.01004088758425,52.39947747759617],[-118.01011371948762,52.399653422755605],[-118.01025704944789,52.39980884718202],[-118.01045624842031,52.39994274068293],[-118.01055857504727,52.40000001112756],[-118.01067591112066,52.40006620550322],[-118.01081568985391,52.40022082425655],[-118.0109486736802,52.400372148864356],[-118.01108479171126,52.40055640542884],[-118.0111641903661,52.40071699977439],[-118.01126032182324,52.400887214497835],[-118.0114230865484,52.40103777804811],[-118.011584128105,52.401187653760196],[-118.0117308159599,52.40134499492272],[-118.01187343120992,52.40150432000583],[-118.01198544086475,52.40166886082674],[-118.01202871381163,52.4018444512841],[-118.01203751539258,52.40202611903928],[-118.01209507131261,52.402214545015056],[-118.01229277435709,52.40231674311381],[-118.0125907292847,52.402348027534984],[-118.01288878908163,52.40237874982233],[-118.01317911963426,52.40241119420428],[-118.01345533370355,52.40246973878037],[-118.0137183649426,52.40254936696041],[-118.01397628752164,52.4026365478856],[-118.01423431556401,52.40272316686236],[-118.0144921374663,52.4028108990911],[-118.01475282510873,52.40289318776242],[-118.01502155501775,52.40297207766088],[-118.01530312569557,52.40301180885995],[-118.01559929800733,52.403002909240065],[-118.01588964023483,52.4029755567568],[-118.01617860287826,52.402935699076146],[-118.0164546265512,52.40287577016945],[-118.01672712973858,52.40280488520182],[-118.01700421753452,52.40281891583676],[-118.01720189723162,52.402961155688274],[-118.01747622534376,52.402950185188494],[-118.01761446793809,52.40279444548613],[-118.01775567654568,52.402632710083374],[-118.01796586062348,52.40250844686892],[-118.01819481373802,52.40239281498844],[-118.01841200088829,52.40227072172758],[-118.0186289780852,52.402149750798685],[-118.01885254543447,52.402033177875566],[-118.01911016845197,52.401942643374625],[-118.01930122901369,52.40182157197598],[-118.01944118584693,52.40166651744692],[-118.01966323108313,52.401548141605],[-118.01990018066186,52.40143925843812],[-118.0201383367597,52.40133384239454],[-118.02037821614014,52.40122911331749],[-118.02061951077056,52.40112672859449],[-118.02086394347103,52.40102738458354],[-118.0211115142716,52.40093108126579],[-118.02136567541001,52.400839175696866],[-118.02162773740467,52.40075458296889],[-118.0218952506515,52.40068051850378],[-118.02217235714429,52.40062459598378],[-118.02246471490903,52.40059623923969],[-118.02275762552658,52.40058484156384],[-118.02305484951597,52.40059010257247],[-118.02333806264545,52.4005611134096],[-118.02361205908093,52.4004920045339],[-118.02389806547394,52.400447972591174],[-118.02418669257324,52.400409770155775],[-118.02447649544885,52.400385176339235],[-118.02476926648681,52.40038448564738],[-118.02506349023218,52.40040588790182],[-118.02535392092717,52.40043774054013],[-118.02564286912268,52.400487549003316],[-118.02592767374301,52.400499834699595],[-118.0262096049063,52.400457781687486],[-118.0264898768703,52.40039473926749],[-118.02677418637461,52.4003398711069],[-118.0270747202589,52.40032729125477],[-118.02738360761496,52.40033954480804],[-118.02761833213859,52.40028238707018],[-118.02773402759831,52.400108172472535],[-118.0277819342017,52.39999979023924],[-118.02781570055386,52.39992766137055],[-118.02793236481105,52.399768169694866],[-118.02815468634402,52.399648111132095],[-118.02839263804712,52.399533641209025],[-118.02858013941673,52.39940159926088],[-118.02864879963786,52.399221319633156],[-118.02867877931722,52.39902991052048],[-118.02882998205588,52.39890382443915],[-118.02909671457274,52.39884379694701],[-118.02940565053588,52.398805844175094],[-118.02969401679437,52.398748992974355],[-118.02992136863317,52.39864168717109],[-118.03011051546463,52.39850073177239],[-118.03029804076944,52.39835852734713],[-118.0304699639743,52.398200592021816],[-118.03068592543302,52.398094756837224],[-118.03096407633248,52.39805299284343],[-118.03126328034932,52.39803749601498],[-118.03156721579056,52.39803642091423],[-118.03185993910064,52.39804586305481],[-118.03215059721398,52.39806643420644],[-118.03244387787068,52.39809283466737],[-118.03273543436669,52.39811854710663],[-118.03302854210409,52.398135900352905],[-118.03332047105886,52.39813964358954],[-118.0336145708257,52.39813168601862],[-118.03390635717062,52.398116231352176],[-118.03420069442923,52.39809700773406],[-118.03449330522616,52.39807710502626],[-118.03478733283791,52.39805954627157],[-118.0350803254467,52.39804756503957],[-118.03537318457344,52.39804628624492],[-118.03566819328339,52.39807335690072],[-118.03596275846489,52.398112805247806],[-118.03625259261723,52.39813782163035],[-118.03653523290886,52.39812174009059],[-118.03680916218725,52.39806275067384],[-118.03707452536506,52.39798004095449],[-118.03734081623216,52.39789232264076],[-118.03761183800074,52.3978190348764],[-118.03789374188965,52.39777694452688],[-118.0381844478533,52.39774730849429],[-118.03848133141258,52.397724305722626],[-118.0387787017571,52.39770866374077],[-118.0390778706083,52.3977032974896],[-118.03937335210944,52.397707829592186],[-118.03966107607548,52.397724236269525],[-118.03994121946754,52.39776155439778],[-118.04020702795012,52.39783624068755],[-118.040467396037,52.39793028905396],[-118.04072969637919,52.39802391011156],[-118.04099581672317,52.398096928216304],[-118.04127640606544,52.39812186465603],[-118.04135914051547,52.398115145263525],[-118.04114965070706,52.398206209937854],[-118.04119752224808,52.39837758597294],[-118.0413308864329,52.39853736034193],[-118.04145621486794,52.39870052565082],[-118.0415776803024,52.398864553180516],[-118.04164160013711,52.399039288486115],[-118.04167319281572,52.39921856925573],[-118.04175805583925,52.3993902321867],[-118.04187372918314,52.399555548438485],[-118.04196611525337,52.39972660028445],[-118.04229313775971,52.400110638941484],[-118.04272110471791,52.40044971583488],[-118.04346986521206,52.40090673928065],[-118.04390370425098,52.40215375287985],[-118.04510743964448,52.402844519411666],[-118.04602739383448,52.40319765495433],[-118.04964900019249,52.40210463579635],[-118.0568371480277,52.40273577581062],[-118.06223469787972,52.4037558053942],[-118.06810329709822,52.404312641423004],[-118.07398503543027,52.40487909433688],[-118.08115554080243,52.40584981828391],[-118.08516703011433,52.40611344595093],[-118.08843289877899,52.406081210917584],[-118.09443154230362,52.40504890170866],[-118.10025663503912,52.40407214512157],[-118.10549798570423,52.403770421746955],[-118.11053694018715,52.40392446885043],[-118.1164113925822,52.404369810472225],[-118.12218430163958,52.40504592970375],[-118.12844004815217,52.405836919884536],[-118.13308895976546,52.40650315425449],[-118.13692183253683,52.40693329651008],[-118.14029566470751,52.40639091889169],[-118.14279260531953,52.40327204697224],[-118.14326693639298,52.39865561580182],[-118.14322920973453,52.395866017244245],[-118.1430759412307,52.394436713502415],[-118.14795535259324,52.39310704134317],[-118.153385894669,52.39297457749533],[-118.15618681075266,52.39288529050172],[-118.16169250380757,52.39258384346759],[-118.16721285127666,52.392282573132555],[-118.17021860222584,52.391962639869284],[-118.17378198580195,52.391020550756934],[-118.17702790445452,52.387510785411756],[-118.18070818870699,52.38559802023501],[-118.18366367838486,52.38294652111031],[-118.18426028126315,52.38129506309478],[-118.18309223499077,52.378600119326066],[-118.18287996116051,52.37569793253],[-118.18534103980464,52.373888222032434],[-118.1923558946108,52.37308685770221],[-118.19833788149191,52.373243447339725],[-118.20403555621185,52.373171921223246],[-118.21317122821286,52.37340714605749],[-118.21774543603381,52.37389821720873],[-118.22188976707494,52.37700991025578],[-118.22229156936649,52.379288521369915],[-118.22239066065279,52.37980437690905],[-118.22368573352705,52.38066563487283],[-118.22918803852659,52.38110521858696],[-118.23565360452096,52.37990176151402],[-118.23979378774945,52.37804581923792],[-118.24519668211502,52.37386667328192],[-118.24678246373878,52.36942591917875],[-118.24749663448358,52.36612326793044],[-118.24896269983772,52.36242554452376],[-118.25026019128045,52.358101892644584],[-118.25247868292522,52.35441340169707],[-118.2538387868252,52.351627649671336],[-118.25881748810403,52.34903853981747],[-118.26705742899229,52.34772466854584],[-118.27136543099121,52.3472960570943],[-118.27389679754485,52.34662790865291],[-118.27953367944325,52.34472874536667],[-118.28443691730958,52.341226979284656],[-118.28762965001873,52.340331498671794],[-118.29142723909241,52.34167188017892],[-118.29556145811915,52.34608830161578],[-118.29887055396622,52.3485082717449],[-118.30089991616347,52.349484653378326],[-118.30408524301627,52.35458283057809],[-118.3036359052224,52.35891130057176],[-118.30572183869596,52.362633745367745],[-118.31098661723256,52.36546463565616],[-118.31600204153358,52.367376016863346],[-118.3248507342997,52.368460146391506],[-118.33045324830438,52.3684962552329],[-118.33736622964885,52.36773937731715],[-118.34365243149476,52.36601319737587],[-118.35142044861219,52.364688010549635],[-118.35646348703203,52.36420499602149],[-118.36002889021418,52.363543002885315],[-118.3647635601769,52.359462712461685],[-118.36660442824301,52.3555944145856],[-118.37036303869964,52.35333816683712],[-118.37431240535085,52.35142194259214],[-118.37769240921027,52.35012881737924],[-118.38051409628346,52.34923065195093],[-118.38211686744386,52.34861633013535],[-118.38374669092352,52.34525994171466],[-118.3850134783448,52.34144665900447],[-118.38674946828168,52.338490173171984],[-118.3889293013781,52.336450262420215],[-118.39426036042653,52.33573730946215],[-118.39994767222215,52.33560115824179],[-118.4029313617698,52.33578656021617],[-118.40386674050802,52.33584859470636],[-118.40954625498237,52.336510281604035],[-118.41699414331003,52.33745849111915],[-118.4226861173189,52.337379581225214],[-118.4287865903699,52.3347272378811],[-118.43238366284648,52.33075286416055],[-118.43409572491406,52.32934006489912],[-118.43731632239009,52.325820103513024],[-118.44023105360276,52.3237857694495],[-118.44631344766789,52.3227341453666],[-118.45182303525071,52.32241821650756],[-118.45685520175105,52.322211239831795],[-118.45901205692121,52.3218801744524],[-118.46332290237477,52.32013654916711],[-118.46633486338123,52.317874623436445],[-118.46971100834577,52.316232205399295],[-118.47290233999428,52.315222536288374],[-118.477761340586,52.314393515381525],[-118.48270380675272,52.31418528272018],[-118.48700179541888,52.313181855639],[-118.49084237224592,52.31217335856375],[-118.49252776890665,52.311151567512034],[-118.49461156695028,52.309454406326786],[-118.49445492719946,52.3062002378247],[-118.4928109626474,52.30368140851562],[-118.49061609888655,52.300764848107],[-118.49049107970106,52.29665361147548],[-118.49210885373724,52.293813498298924],[-118.4979344154093,52.289962687076795],[-118.5029891822259,52.28798884464932],[-118.50897839697224,52.28590351173207],[-118.5127275544746,52.28489359698619],[-118.51992397938325,52.28316334945367],[-118.5289693117041,52.28268754691104],[-118.53148706684318,52.28264355897539],[-118.53631113966047,52.28369048144514],[-118.54152402313689,52.28479555129423],[-118.54384476388562,52.285378303223744],[-118.54711085859537,52.285106093980616],[-118.55123400104533,52.282609686812684],[-118.55220296171608,52.281189797627285],[-118.5542733391901,52.27818043207952],[-118.55487990326769,52.27287617556736],[-118.55604112083434,52.26991412327724],[-118.55803342489418,52.26632645548264],[-118.56135745911938,52.261604858953454],[-118.56184968509075,52.258239481599155],[-118.5602428818968,52.25275811007666],[-118.55761448364373,52.24653101102903],[-118.5557088087068,52.242530087381404],[-118.55443278238978,52.2394975300032],[-118.55326332032672,52.236361341061034],[-118.5533723500616,52.235217374619815],[-118.55338227589039,52.233451485126075],[-118.55462579740966,52.23094679091233],[-118.55865469057534,52.22845105259382],[-118.56341891242191,52.22733230240077],[-118.5650992651909,52.22682287669396],[-118.56556551878687,52.22659872975934],[-118.56803090511609,52.22238816009182],[-118.56815836657414,52.21925171140442],[-118.56923378540745,52.2149763263343],[-118.5702899046423,52.21149670536978],[-118.57165411793108,52.20665426951216],[-118.57271867676431,52.202951961535064],[-118.57357674243843,52.200620131255604],[-118.57463677870865,52.19651393174174],[-118.57597637396626,52.19360830543316],[-118.57738907462426,52.191733249450614],[-118.57870414133374,52.19093976624647],[-118.58215369127923,52.190156317963094],[-118.58503446235551,52.19028199359008],[-118.59153766041828,52.19076175172735],[-118.5964502617078,52.191410616765204],[-118.60026474891605,52.191418349348254],[-118.60642576283254,52.18882145283213],[-118.60868708276269,52.18722939421819],[-118.61213986749777,52.1858185438515],[-118.62061135430086,52.18339673809466],[-118.62837466095095,52.18011292077584],[-118.63174917372349,52.175959014735426],[-118.63204592571329,52.174305709353305],[-118.63598353228778,52.170558030778395],[-118.6409470727827,52.16692034300217],[-118.64457900885387,52.16591070434224],[-118.65118440971061,52.16490306786294],[-118.65861820427864,52.16412993659777],[-118.66346790947568,52.163573860108016],[-118.667094316227,52.16250460439834],[-118.67047831389857,52.15835042725047],[-118.67106264522857,52.1544711433839],[-118.67229399955755,52.152590990827385],[-118.67871028633373,52.151639789660855],[-118.68593180226297,52.15479897542051],[-118.68795025808093,52.157657768427036],[-118.68931444610799,52.16160102193888],[-118.69271830845939,52.16497594192713],[-118.69819103618359,52.1659565166775],[-118.70517523506516,52.16461315300917],[-118.70704735715512,52.163987808482965],[-118.71495523569565,52.16161469076666],[-118.72369573405261,52.161808862698805],[-118.72794610379087,52.16524225591536],[-118.72975321129408,52.17112541101892],[-118.73084726140117,52.17381100377742],[-118.73658819662101,52.17776007354746],[-118.74500573798186,52.18217488640049],[-118.74853631296989,52.18412717188288],[-118.75448140294534,52.184769397413014],[-118.75996651488344,52.18323652967417],[-118.76154793327105,52.18267544480546],[-118.76957505531253,52.17950083732917],[-118.77476744743367,52.18076650542111],[-118.77662116315848,52.18156908526455],[-118.77858141123664,52.181118312814036],[-118.78425374480467,52.179248989062415],[-118.7902105104945,52.17823063006979],[-118.79504747549421,52.17818610363808],[-118.80025291985923,52.178139041023925],[-118.80221732914413,52.17810231869261],[-118.80547286563605,52.17614807124124],[-118.81142894659308,52.173534540551884],[-118.81357684244298,52.17274726394159],[-118.81879899854401,52.17046908636536],[-118.82604439518687,52.16814769520719],[-118.8314459693597,52.16655466332102],[-118.83406357090213,52.163995429319996],[-118.83446729896495,52.15783254094839],[-118.83429474430731,52.1553228184225],[-118.83404443009358,52.15035319502567],[-118.83469950687339,52.1477326737099],[-118.83620189287298,52.144881452256804],[-118.83936502754645,52.14266038252933],[-118.8434687569593,52.140442492565604],[-118.8467277260768,52.13799337049762],[-118.84916130120095,52.13457388670226],[-118.84980418917675,52.13388807918592],[-118.85030007343387,52.129554254790705],[-118.85031734361682,52.12464580106089],[-118.85069283466612,52.12219605499265],[-118.85377973427423,52.119175456782784],[-118.85778138390658,52.11666687868258],[-118.85992632314863,52.11364740147487],[-118.86021632092616,52.11171185480204],[-118.86124894603124,52.10857148121834],[-118.86367157659777,52.10537930338488],[-118.86610081056796,52.10241232686371],[-118.8642528416118,52.10007140604906],[-118.86240360566775,52.09836314676103],[-118.86176813063518,52.09624617373325],[-118.85972344776926,52.093675422956444],[-118.8581656495721,52.09207362715842],[-118.85491727793591,52.09029969757101],[-118.85316065924233,52.089102994202],[-118.85521297607049,52.08619336113173],[-118.86144386654865,52.08386668933543],[-118.86552235058983,52.08176057758201],[-118.86961972565338,52.07953719295173],[-118.87008203044506,52.07913818493668],[-118.87195873228184,52.07451911343601],[-118.87030164677316,52.070577904663494],[-118.8678937567079,52.068522797423384],[-118.8604916482151,52.0659427568276],[-118.85428538512328,52.06421868022847],[-118.85021955438883,52.06216200212303],[-118.84727350889007,52.05759400612623],[-118.84850399142354,52.05102911751295],[-118.85102082245422,52.047786147617494],[-118.85723936251352,52.045680639808204],[-118.86511508173942,52.04438160444701],[-118.87068030992106,52.04347397812779],[-118.87197985997756,52.04324697194372],[-118.8757799895364,52.04245044184961],[-118.8812514941816,52.04228877747319],[-118.88579917733874,52.04149600029252],[-118.8911777788996,52.040020280373554],[-118.8961823570933,52.03813803078056],[-118.9008191383437,52.036885920634205],[-118.90462305943535,52.03552075836534],[-118.90795598045275,52.03523924056538],[-118.91583146249955,52.03741911613209],[-118.9205529942001,52.03941698981961],[-118.92778812763888,52.03725453569004],[-118.93399343733769,52.03366364430592],[-118.93881700629025,52.030532913265574],[-118.94346503826276,52.0273946159645],[-118.94523680529466,52.020201822039525],[-118.94616948426433,52.015640006458035],[-118.94608702969806,52.01010525682023],[-118.94691846739443,52.00787776550727],[-118.94887378094576,52.00514010389552],[-118.95341134547748,52.0042851686742],[-118.9568450005998,52.00309411546178],[-118.95869390537875,52.001548804864555],[-118.96015400803256,51.9999593329084],[-118.96077031580604,51.99932326592808],[-118.961037872339,51.997493280111165],[-118.96139319089245,51.99674879450412],[-118.96286245880484,51.994287648768164],[-118.96524974375197,51.99176840286037],[-118.96706510122164,51.98861624741486],[-118.96806995694656,51.98729910964562],[-118.96944079571362,51.98426504399274],[-118.97116041612254,51.97979978207779],[-118.97132451006962,51.978424323606134],[-118.96908338283005,51.97597681479273],[-118.96500676097698,51.97427929947911],[-118.959722417227,51.97406823937576],[-118.95481305147904,51.97317170669273],[-118.94888707736486,51.97222089815833],[-118.94562952284275,51.9699971122422],[-118.94060817525931,51.96853181397997],[-118.93551593246048,51.96786429939994],[-118.93181028577364,51.96695917115216],[-118.92700550404336,51.967316494431685],[-118.92145083038537,51.96751011952751],[-118.91812361437522,51.96751989964679],[-118.91458882621465,51.966557117791254],[-118.91236749350195,51.965536247056264],[-118.90865289937473,51.96343345658132],[-118.90502329295475,51.96206777927147],[-118.90113434693986,51.96076648867389],[-118.89752398352202,51.95946483939611],[-118.89417929397764,51.9583311228874],[-118.8915805351196,51.95702604263651],[-118.89018553222448,51.95525797212715],[-118.88978915710672,51.95240056164158],[-118.89116615205045,51.95034065001666],[-118.89539569524945,51.946955835895935],[-118.89695209649108,51.94540797021587],[-118.89693859253012,51.94432630021474],[-118.89729267319841,51.94198145949258],[-118.89884287830802,51.93831998509158],[-118.90104666788325,51.93585365924789],[-118.90166914401578,51.93293937411028],[-118.90404660461434,51.92967566778665],[-118.90837003340992,51.926862660597315],[-118.91502214415637,51.926729977779615],[-118.92261129852312,51.927044197229364],[-118.92779556695793,51.927026311677814],[-118.93888735813202,51.92722263630771],[-118.93935233700559,51.92733357018134],[-118.94407036783093,51.92829373089497],[-118.94825020839481,51.93004606722416],[-118.95287838662293,51.93174353202419],[-118.95779109358553,51.93259052929604],[-118.96491824118694,51.93404606062951],[-118.9704764183663,51.93488703148317],[-118.9764009534997,51.935092624036926],[-118.98166146065007,51.93478730777021],[-118.98497108966986,51.932602079456494],[-118.9875130702887,51.9277339335306],[-118.9872753244496,51.92167854099822],[-118.98309044060153,51.917869015989645],[-118.97760732316864,51.914854740016004],[-118.97528093269828,51.91394910789002],[-118.97322034421362,51.9112182932127],[-118.97355514150455,51.90715475445102],[-118.97353012284495,51.90332606692431],[-118.97118560308338,51.90036472729037],[-118.97081845555218,51.899740381946216],[-118.96753670584364,51.89552227127603],[-118.96545243400229,51.88987140979467],[-118.96533382998508,51.885812025224354],[-118.96630131359439,51.881184337461185],[-118.96643133095759,51.87495327319684],[-118.967617851255,51.872948028618936],[-118.97137285017925,51.87087691588131],[-118.97618363257378,51.870231369284134],[-118.98125035087644,51.86981038424817],[-118.984664872206,51.86957355901051],[-118.99001186422979,51.86840924888734],[-118.99044670235503,51.86589063870393],[-118.98720888021383,51.86476071702848],[-118.9827596355249,51.863350143823645],[-118.97905613789719,51.862391438431466],[-118.97451457384223,51.8609218658556],[-118.96951744582599,51.85865547428417],[-118.96571268458554,51.85724207153464],[-118.95607188068108,51.85270511562407],[-118.95413654235394,51.8520240461973],[-118.95246316741522,51.850717788783534],[-118.9517915727711,51.84854852098769],[-118.951045693548,51.84728982788385],[-118.95085724680139,51.847009969970834],[-118.94936495001286,51.845579571119075],[-118.94889227556672,51.843356034184836],[-118.94979397628299,51.84112484475134],[-118.94940420749228,51.83884047526671],[-118.94912259155022,51.83832438210672],[-118.94863115707382,51.83558572353041],[-118.94889635214345,51.83403771303246],[-118.9513716381879,51.83191823339116],[-118.95532593006996,51.830133339803005],[-118.95881036188851,51.82863325825027],[-118.96268487719966,51.82788068506256],[-118.96554098806527,51.82701344782893],[-118.96598213752512,51.82500459128283],[-118.96366111049319,51.82364446827382],[-118.96115798104348,51.822508625435056],[-118.96041750150503,51.821940607792854],[-118.9599366332639,51.82039845809282],[-118.96093240323609,51.81857254495384],[-118.96138251281012,51.81650899969782],[-118.96192999758765,51.81565009233708],[-118.96097652692495,51.812515011874304],[-118.95845852038029,51.81012031901656],[-118.9540162449289,51.80762206968672],[-118.95234797650232,51.80665579097078],[-118.94900366944552,51.80432141730053],[-118.94621351049177,51.80199184322126],[-118.94545526799718,51.79919204686259],[-118.94406023569,51.7966307142147],[-118.94282528625939,51.79389270005282],[-118.94152547950503,51.792637891790925],[-118.93912596607697,51.7925881533322],[-118.93536070536184,51.79340290292462],[-118.93251055653064,51.79415246276011],[-118.92891481665234,51.79490987961193],[-118.92532023265139,51.79520964986478],[-118.9201531800669,51.79413925167377],[-118.91590400542273,51.792270608724934],[-118.91357632313058,51.790162627242765],[-118.90831284146373,51.78852375442879],[-118.90479974893906,51.787786400278584],[-118.8998217514188,51.787175366643346],[-118.89603951053368,51.78701670835567],[-118.8925337614328,51.786683513281766],[-118.88764277009682,51.785271956422044],[-118.88384313026096,51.7819127323089],[-118.88334596063339,51.77825430939593],[-118.88581030403691,51.775219584728944],[-118.89012384833715,51.773096989004046],[-118.89443636779713,51.76936621092722],[-118.89560678308769,51.76576152715433],[-118.89540269256555,51.7638804371354],[-118.89342782291916,51.75971067867566],[-118.8918302068363,51.754748800569914],[-118.89022317865319,51.749667897863695],[-118.89028781509924,51.74640740572604],[-118.89009349364058,51.744468253540106],[-118.88721096604814,51.74042086369071],[-118.88654523955628,51.73842408641405],[-118.88653484572974,51.73625175865934],[-118.88642548324938,51.73459742409851],[-118.88870535435848,51.73115775275593],[-118.89502308122617,51.72851086570749],[-118.89989611330164,51.726320983020656],[-118.90768323283424,51.72349839885273],[-118.91456441738293,51.72050630125719],[-118.91822860637079,51.7180331672418],[-118.91727551992074,51.713579950572665],[-118.91549898080159,51.7112420777666],[-118.91476163706338,51.71022060213631],[-118.91482022913874,51.706446816581334],[-118.91700268860392,51.70403378827819],[-118.92003027847461,51.70242456085098],[-118.92285675219912,51.69944838485922],[-118.92291409097933,51.695677905203034],[-118.9232640751142,51.69441570548926],[-118.92315180931843,51.6907034352164],[-118.92265813316806,51.68727914222788],[-118.92078234820326,51.68385120311646],[-118.91744802495442,51.68089331933335],[-118.91579370135774,51.67987505754561],[-118.91061263459314,51.67646268958795],[-118.90811111913854,51.67429918259507],[-118.90607333267378,51.67241814177681],[-118.90566955101141,51.66916662359796],[-118.90470481100567,51.66345413985066],[-118.90396136733024,51.661400604188934],[-118.89950765358141,51.657469163086326],[-118.8971076788559,51.65513800000692],[-118.89570362711999,51.65285597857618],[-118.89422263786064,51.65069031566568],[-118.89088933941446,51.647841280902604],[-118.88858150356913,51.64664917152554],[-118.88397204650639,51.64512311250435],[-118.88066696702523,51.644788386448475],[-118.87533666158485,51.64492312752615],[-118.87185457359651,51.64567513401665],[-118.8675421817599,51.64643417546797],[-118.86560717451422,51.646437992556656],[-118.85963252619523,51.64588447540406],[-118.85438332726675,51.64498612516489],[-118.8506178888577,51.6439090561105],[-118.84905342817478,51.64351478193034],[-118.84609258965804,51.64152078154863],[-118.84395845939376,51.63838587041403],[-118.84119148831653,51.63645462904277],[-118.83355937822313,51.63493167619026],[-118.83006786900683,51.63494162916018],[-118.82777413725267,51.63500727835871],[-118.82114719052268,51.63445163369207],[-118.81865490011074,51.632005491027435],[-118.81717415614884,51.63075066110406],[-118.81504148365113,51.62647069195851],[-118.81510985258103,51.6230428901966],[-118.81609972639826,51.61966879810962],[-118.81597490881792,51.61458316246726],[-118.81521683019714,51.61167418512308],[-118.81243482396523,51.607284182274135],[-118.81277210347162,51.6032813606489],[-118.81478337387199,51.60076504911531],[-118.81531449015463,51.599387519868195],[-118.81437431073458,51.59590770325423],[-118.81390330792708,51.592933913965965],[-118.81525728429087,51.59070187783355],[-118.82039141342085,51.588802932795765],[-118.8243243316621,51.58714024162261],[-118.8253039781973,51.58399654693149],[-118.82529010182412,51.58142038537033],[-118.82526201635329,51.57662489251333],[-118.82523619070648,51.57199300474214],[-118.82529320727998,51.56845160057634],[-118.82529010415593,51.56793836983484],[-118.82564381764571,51.5654226030953],[-118.82534413834267,51.561310647179084],[-118.82484218047874,51.55577417816649],[-118.82599914499517,51.55056635602948],[-118.82780062837654,51.54656232750816],[-118.82987930710443,51.54210333732447],[-118.83095439353237,51.53889960782583],[-118.83093549869304,51.53644087300077],[-118.83072403895171,51.532497338696494],[-118.82777157641605,51.52908246295808],[-118.8215322983778,51.52847135107676],[-118.81621438817277,51.52825821159838],[-118.81172042331968,51.52655782625758],[-118.80483369431086,51.525032515907164],[-118.79851281494234,51.524480869804094],[-118.7927300965965,51.52489224937452],[-118.7906467611101,51.527242383357425],[-118.78746127102995,51.53073578573789],[-118.78583281340073,51.53410992589866],[-118.7812647422092,51.53691761080028],[-118.77933362538326,51.536925545587586],[-118.77649011727665,51.536129981588296],[-118.77243558179055,51.5320298039098],[-118.76975873891237,51.52740885238252],[-118.76845458573641,51.52467170593722],[-118.76549699947067,51.52175860282082],[-118.75808424383965,51.52246513664009],[-118.75031383367224,51.525509787252616],[-118.74565192521476,51.52826110598385],[-118.74117109650899,51.52947604852689],[-118.73759881171411,51.528794622638394],[-118.73126386362833,51.526925067717535],[-118.72713241988683,51.52550543312611],[-118.72400171535732,51.523738763635194],[-118.71912035942843,51.51792480460251],[-118.71360690996136,51.513304846580766],[-118.70809253086988,51.51131562475629],[-118.70277798724922,51.509784456383144],[-118.69755215442905,51.508593681803895],[-118.69351540767335,51.50723060033934],[-118.69066626344635,51.50500726494476],[-118.69065590826483,51.503066713050266],[-118.69668521789501,51.49985976265492],[-118.70454209863472,51.496467922587875],[-118.71048374061849,51.49360206851101],[-118.71267524608841,51.49131648974362],[-118.7116423202477,51.487147055051416],[-118.71034832461059,51.48446418382015],[-118.70732158233703,51.48087070604706],[-118.70272515559752,51.47739480820339],[-118.69584708935011,51.47518254972815],[-118.69071277498684,51.47398971749121],[-118.68631137089847,51.47222587397322],[-118.68245408872372,51.46989412253988],[-118.67787393245304,51.46607741517237],[-118.67493353556038,51.46442157006836],[-118.67154857168126,51.46317393861287],[-118.66577322818823,51.461753370666194],[-118.65862865024694,51.461766450066406],[-118.65672129937002,51.46199640744175],[-118.6493904955362,51.463035111242846],[-118.64463147281252,51.462816368711074],[-118.63723241907955,51.46322161009814],[-118.63293488126659,51.464829808404765],[-118.63201826816925,51.4654571215974],[-118.63127876500077,51.46546033889153],[-118.62899255687655,51.46414636314918],[-118.6272421525967,51.45981316893955],[-118.62759036391381,51.45609766076709],[-118.62767691726596,51.45204193639584],[-118.62812781742005,51.44987224927792],[-118.6301381180435,51.44729930682106],[-118.62518117657733,51.44490378396954],[-118.6190525261953,51.44422798643311],[-118.61429046905245,51.44343571611641],[-118.6108233367213,51.442867080560035],[-118.61008758665999,51.441041254112626],[-118.60952274096879,51.43578772197675],[-118.60886358492748,51.432473879953115],[-118.6073007581354,51.428765957599516],[-118.60601427390596,51.42487974851659],[-118.60828378637811,51.42093822988516],[-118.61074697637027,51.41825357926383],[-118.61384709952479,51.41556649102049],[-118.61439004459446,51.41276428226534],[-118.61118354393638,51.40962470193804],[-118.6109993174705,51.408998423724604],[-118.60705593511743,51.40688841966004],[-118.59975019665113,51.405241912641635],[-118.59489597830022,51.4031321723481],[-118.59471159911493,51.40199254490969],[-118.59369745556697,51.39942170916004],[-118.59150158783949,51.39742548460244],[-118.5875648916604,51.39605965608644],[-118.5851920619358,51.39554532672749],[-118.58116398098548,51.394466014854935],[-118.57925287841564,51.39190096869529],[-118.58298078963486,51.38806508907417],[-118.58618076175286,51.38555616389397],[-118.58717793427039,51.382298037767086],[-118.58717196640768,51.380358355850944],[-118.58788950040764,51.376870352461744],[-118.59263690653238,51.373666296414406],[-118.6006576818361,51.37171491264302],[-118.60805474789447,51.368392709472495],[-118.61269281060437,51.364618981052566],[-118.61286237526504,51.359988943425186],[-118.61194398591552,51.35719147277856],[-118.61101358062116,51.35239862780614],[-118.60927446459966,51.34760359613401],[-118.6083508992575,51.34389244240116],[-118.6097020040368,51.34023143043242],[-118.6120691778401,51.33714400264035],[-118.61234028876873,51.333717464835516],[-118.60721090363705,51.32933044028501],[-118.6005328986964,51.32470959400041],[-118.59879671726355,51.32180235123429],[-118.59841876159456,51.31751634495908],[-118.59822277290476,51.313007021702546],[-118.59648826435505,51.31095326951854],[-118.59337732718926,51.30970212784276],[-118.58999227949253,51.30690413369108],[-118.58871580678168,51.305135280752445],[-118.58633720671622,51.30262324100778],[-118.58305368024843,51.300514777489205],[-118.57703227766224,51.29983666601544],[-118.56891241836284,51.300132486737205],[-118.56381117015492,51.30059064766439],[-118.5611632777162,51.30054018498705],[-118.55678879048853,51.299685234754016],[-118.55468058231777,51.2983196489736],[-118.55313180862004,51.29723240519182],[-118.55112527838288,51.29364221631334],[-118.55074741400587,51.28998238833721],[-118.54855420923026,51.28707311234134],[-118.54673616479856,51.28587428824998],[-118.54554517858092,51.2818193186069],[-118.54926561666751,51.27576911610538],[-118.55281792265468,51.27250429877669],[-118.55472323150396,51.26959210512374],[-118.55535333964177,51.26867914936252],[-118.55935596146331,51.264790606779876],[-118.56336218154982,51.261304435819504],[-118.56936348336424,51.25872881718191],[-118.57382572580542,51.2558670342186],[-118.57508474978096,51.253011852707004],[-118.57417171914861,51.25003779760599],[-118.57289226655604,51.24821414664083],[-118.57288699401775,51.2454166660735],[-118.57361264096653,51.24238810359566],[-118.57361221798777,51.24136184976526],[-118.57041074119292,51.23776741977114],[-118.56602313478122,51.23342939973906],[-118.56154931363923,51.22892351272344],[-118.55663400227071,51.22499018309906],[-118.54815532417268,51.21997336106594],[-118.54486642731763,51.21717383543185],[-118.54322897588247,51.215520032966005],[-118.54240022842595,51.21129504944543],[-118.54575945144327,51.2080369316673],[-118.5513023213802,51.20643590553109],[-118.55686486510415,51.20591299261506],[-118.56232039808977,51.204826451574476],[-118.56304636126136,51.20453590160294],[-118.56385349336135,51.20316349445997],[-118.56430992455391,51.20036475260926],[-118.56375278136224,51.196998021213325],[-118.55964790588949,51.193403514045244],[-118.55555245459665,51.19095421785287],[-118.55418511256974,51.189581277409445],[-118.55135747767716,51.18696120651225],[-118.54698069062253,51.184222057474024],[-118.54079418123985,51.18086166108581],[-118.53760358306778,51.17954697021572],[-118.53351927105227,51.178751194976236],[-118.52923271020758,51.17881245147555],[-118.52113951993643,51.178820822531996],[-118.51395418295905,51.178824153566886],[-118.50413625923986,51.179407722378144],[-118.49867946254035,51.17906595238034],[-118.49521577338797,51.17826441995501],[-118.49258040186207,51.17826686022047],[-118.48712298214338,51.1779295483671],[-118.48239214475628,51.17712986107699],[-118.47621146302336,51.175881986960384],[-118.47183949089967,51.17365277265952],[-118.47093646746706,51.17176851632837],[-118.47111092879364,51.168798449256784],[-118.47175481087206,51.16628415699849],[-118.47120733531563,51.164003283096214],[-118.46911380142703,51.16006644188886],[-118.46829328031666,51.15795344545478],[-118.47047337248732,51.155038124657935],[-118.47727996236446,51.1530949753113],[-118.48228924507438,51.15240984654663],[-118.48610178872373,51.150466263665216],[-118.48818155780715,51.14618288883525],[-118.48882431920417,51.14103937540884],[-118.48881523529309,51.140753801222395],[-118.48508719631253,51.136189316081506],[-118.4800807386613,51.133905241130186],[-118.47536557175526,51.13202584622552],[-118.4720912529941,51.12945723415988],[-118.47262250054335,51.12557136121163],[-118.47653015581899,51.12288794347586],[-118.47681098264275,51.11911902030475],[-118.47552991475835,51.11717996166099],[-118.47534396536773,51.11683568000382],[-118.47625613808553,51.113413207080065],[-118.47843371498088,51.11049646764836],[-118.47825424066514,51.10689701335749],[-118.47579409844798,51.102676320364615],[-118.47569462112666,51.10233105295577],[-118.47414970770718,51.10084826745187],[-118.47206731899675,51.09770749884989],[-118.47088357522674,51.09536961545055],[-118.46470808071564,51.09331411465475],[-118.4608934402732,51.091660631452505],[-118.45953142750308,51.08834779583238],[-118.4602492026525,51.08446695886746],[-118.46025538413978,51.07995418970091],[-118.45797915755372,51.07847045275887],[-118.45335603540082,51.07710198876138],[-118.44781565983342,51.07664963406592],[-118.44290876374329,51.076021257558125],[-118.43974292627274,51.074198363990554],[-118.43765042493163,51.07282190726718],[-118.43510679700019,51.07282707157003],[-118.43183845968967,51.073627061084565],[-118.42985078499662,51.07374129352881],[-118.42903209028401,51.07374023126323],[-118.4275795982538,51.07122603806383],[-118.42476450672703,51.0678601124181],[-118.4216773931905,51.06592001072089],[-118.41931752654213,51.06426431700228],[-118.41732307192721,51.06232057138643],[-118.41678882512058,51.05998561321655],[-118.41778253566832,51.058037850271944],[-118.42105335653584,51.057638644673425],[-118.42567501185738,51.0583267677677],[-118.42821733667913,51.05832460180767],[-118.43065548204851,51.05792309349899],[-118.43147308242055,51.05649841469207],[-118.43229112355411,51.05187303342643],[-118.43383254062435,51.0487294765436],[-118.43147232985811,51.04564826011967],[-118.42820821766375,51.042565735708955],[-118.42693490417582,51.03959670283727],[-118.42703540125689,51.036400995606186],[-118.42666580864183,51.03394112616002],[-118.42485809681655,51.03183446654389],[-118.42294616326164,51.03000292769615],[-118.41904824237065,51.02669198873482],[-118.41823644456517,51.024639544069686],[-118.41887517537249,51.02241261136641],[-118.42078188627967,51.020070510585434],[-118.4222297463798,51.017557373608405],[-118.42277393236175,51.01630275465511],[-118.42240951254674,51.01373082124854],[-118.4209584935721,51.01122139414765],[-118.41833271168667,51.00836769913394],[-118.41343713027992,51.00511579774953],[-118.41099040104795,51.00340119765426],[-118.40907939772221,51.00157439193495],[-118.4089633152444,50.9999042005841],[-118.40902779800965,50.999526999399535],[-118.40883873400696,50.99878716542599],[-118.407029302557,50.99771000859873],[-118.40358455708908,50.996970641177825],[-118.40113599769911,50.99703143573189],[-118.39859473052736,50.997717517296564],[-118.3973355247408,50.99828682068694],[-118.39643657460529,50.999934994688886],[-118.39589356135241,51.00050944839307],[-118.39472369069372,51.00147766264925],[-118.39317265710886,51.002158627185324],[-118.3912782393656,51.002331940871066],[-118.38955177883366,51.00227842093148],[-118.38782628776048,51.00113156175236],[-118.38720225095066,51.00033726685881],[-118.38692721689021,50.999933599822185],[-118.38402734532532,50.99819202441043],[-118.3823052769842,50.996023578340306],[-118.37876748612402,50.99340525140303],[-118.3770341622007,50.99038579738267],[-118.37576459508558,50.98758979976025],[-118.37394933097438,50.98479949885215],[-118.37132108927354,50.9822359947402],[-118.36896185318732,50.980695553902414],[-118.36833155595224,50.98035848319838],[-118.36506615676602,50.97950356419257],[-118.36334768921701,50.9788246488727],[-118.35999724739536,50.97779836751852],[-118.35890087962895,50.97717086632072],[-118.3564562448835,50.97546395404024],[-118.35347034789945,50.972155144753195],[-118.3509339811546,50.96981800753146],[-118.3503941745031,50.968790364429495],[-118.34939439684771,50.966854563689914],[-118.34920564218736,50.96212332492496],[-118.34884038658409,50.9594998139993],[-118.34782819743329,50.956305887580235],[-118.3460295034621,50.95385243027728],[-118.34439815171936,50.95317400249151],[-118.34121890375054,50.951749387336065],[-118.33878255657751,50.95083734987497],[-118.33634273971217,50.94953039849138],[-118.33172667797761,50.94804879480973],[-118.32910433472527,50.94713731375083],[-118.32854679279161,50.94588470471372],[-118.32719107562787,50.94286502345701],[-118.32583592708832,50.93984308375562],[-118.32393270224631,50.93676089978297],[-118.32130368590904,50.93448244668184],[-118.32040706754967,50.933287774142514],[-118.3199494851176,50.930546384255045],[-118.32084658238354,50.92792231237717],[-118.32084577631302,50.92518970106483],[-118.31967277792235,50.92136707600775],[-118.31821251328512,50.91771662422846],[-118.3178519272061,50.91640515310757],[-118.31558680999244,50.91418360048863],[-118.31359589236033,50.911784931507036],[-118.3120607840536,50.908820791812175],[-118.31233123486805,50.90642687009023],[-118.31467629975451,50.90345806199164],[-118.31512343132097,50.9011175044658],[-118.31413652489181,50.899124329367815],[-118.311421328951,50.89553745218843],[-118.30924539409055,50.893138838284145],[-118.30626322482337,50.88977616075115],[-118.30355437458711,50.887897374401255],[-118.30209849720381,50.88771065854389],[-118.30047516510712,50.88749938824301],[-118.2971413229191,50.88749817668488],[-118.29668312919661,50.88749989225209],[-118.29063762307699,50.88778796982641],[-118.28403489586533,50.88939123340037],[-118.27925351860152,50.89195909214067],[-118.27680752869118,50.89401410401916],[-118.2752755319454,50.895667011208474],[-118.26895397002826,50.894816928961745],[-118.26189317007065,50.89328058827083],[-118.25557966954908,50.89139976420575],[-118.25322746494584,50.890771364947646],[-118.25160355746236,50.889576828783625],[-118.25332102690213,50.88678005620513],[-118.25910356485731,50.88660788602126],[-118.26543126572913,50.88552116567786],[-118.26985399707216,50.8823830234185],[-118.27238091348175,50.880272216079824],[-118.274547531442,50.87941198144368],[-118.27988586819255,50.87758640960698],[-118.28394392503274,50.87604650408137],[-118.28900416893455,50.87284789042597],[-118.29161789211051,50.86948301615357],[-118.29242650942585,50.86497598226044],[-118.29143501553222,50.8608708816564],[-118.28980382924232,50.857158019000025],[-118.28709481986769,50.85248692192191],[-118.2854703481116,50.8499776694187],[-118.28510690913284,50.84935174635465],[-118.28167610755769,50.84769774973909],[-118.27579944248077,50.84695906379913],[-118.27345374008036,50.846222948213985],[-118.26994213492175,50.843142790440965],[-118.26822014146482,50.83823668958119],[-118.27011183419981,50.833675853696995],[-118.27255232412662,50.830481154598274],[-118.27327766241369,50.829512151549444],[-118.27408422650291,50.82551812522704],[-118.27055962077037,50.82392316219116],[-118.26668641280689,50.82392738571552],[-118.26451948055497,50.82398038434548],[-118.26064811009263,50.822903688541814],[-118.25973611470141,50.8190207655612],[-118.2628089181168,50.814569615065004],[-118.26596753624354,50.81143219882367],[-118.26613975623381,50.81126288210923],[-118.26464673436396,50.80794896161951],[-118.26000859369165,50.80475491080064],[-118.25975535139132,50.79999996882443],[-118.25966631401232,50.79832166473041],[-118.25465028601057,50.79747622500087],[-118.26098815923572,50.79403636715028],[-118.25761742076048,50.792754109692005],[-118.25709335858691,50.78321566980083],[-118.25270744378177,50.7814746476584],[-118.24767000625843,50.775760910251904],[-118.24703223415065,50.77465593937416],[-118.24549650215668,50.77100696612163],[-118.24342043362002,50.768497801219404],[-118.23900272280034,50.76616030913862],[-118.23431783251324,50.764622871692865],[-118.23108536681745,50.76285956223272],[-118.2293702504637,50.76131668191023],[-118.22910450923672,50.75989187049642],[-118.22946431739983,50.756922589017],[-118.23126705724728,50.75418841313003],[-118.23216168466378,50.75281858722905],[-118.23090961989217,50.74837005939072],[-118.22748222135199,50.74552096041582],[-118.22325127487865,50.74278331836022],[-118.21630936662079,50.74021680604928],[-118.21064386412404,50.73867783103703],[-118.20929044039909,50.73834135889047],[-118.20515781130551,50.736684590962575],[-118.20290630835626,50.73389429656282],[-118.20444074735607,50.72984144360751],[-118.2058809260394,50.72681782506633],[-118.20587443228438,50.72522009087455],[-118.20480924690308,50.71906526013593],[-118.20381456900235,50.71267128552613],[-118.20219965354994,50.706402630039435],[-118.2020250029142,50.705034240910024],[-118.20166527095351,50.698190400618024],[-118.2031156784683,50.69493984869652],[-118.20679898490489,50.68974975534502],[-118.20923347483696,50.68558984892912],[-118.20959244388057,50.68222035964616],[-118.20707775158422,50.67874709705371],[-118.20628022372156,50.67817377466511],[-118.20096341830832,50.67623332299749],[-118.19548300532543,50.67457989255915],[-118.1893624274723,50.67333192048067],[-118.18315977372865,50.67247377837427],[-118.17642439475532,50.67173084850008],[-118.17299898710337,50.67030562174247],[-118.17318913976605,50.664659521098834],[-118.18281948119693,50.66186816069758],[-118.18829895677737,50.65992692914536],[-118.18956744863263,50.659756859294106],[-118.1947864592968,50.65889738216472],[-118.19999141034795,50.658443954758575],[-118.20430600287118,50.65598978910204],[-118.20313857687081,50.652230041377706],[-118.20134051475421,50.64988501455488],[-118.19981491344485,50.648346501105415],[-118.19981811032031,50.64424352786961],[-118.19946277660264,50.639339211440884],[-118.19793150607117,50.63677385095076],[-118.19497836954802,50.634610664690655],[-118.1882078755534,50.634712887402486],[-118.18819377957124,50.63483447115332],[-118.18823064475046,50.634959649933236],[-118.18823897016924,50.635013895364],[-118.1882216013627,50.635031879275274],[-118.18819788388907,50.63504546676702],[-118.18813727855311,50.63508695331635],[-118.18807852702807,50.635128009921715],[-118.18805227325304,50.63514593799617],[-118.18797020471153,50.63521867749364],[-118.18780478910269,50.63535108756376],[-118.18765223088093,50.63541999623301],[-118.18754093817701,50.63542572158015],[-118.18739245288462,50.63544069655468],[-118.18716539298325,50.63548798444154],[-118.18694851052288,50.635589087463146],[-118.18680572921657,50.63569370612473],[-118.18669329479025,50.63576713667828],[-118.18656289224141,50.63583139411878],[-118.18639451712976,50.63590936506315],[-118.18616050906354,50.635925088807184],[-118.18581567079231,50.635892908613734],[-118.18546879133315,50.63588261875893],[-118.18512259458261,50.63586841713984],[-118.18469046134568,50.635796195024575],[-118.18409917329258,50.6356675751101],[-118.18342195415721,50.635480931618815],[-118.18304018313044,50.63535462986369],[-118.18297163565235,50.635319299112076],[-118.18296079639107,50.63531005800515],[-118.18287781186795,50.63530647422299],[-118.18246934878702,50.63533307068845],[-118.18185001540499,50.63537531956549],[-118.18151691484074,50.63538801366567],[-118.18136919363188,50.63535784326464],[-118.18118280950719,50.63531477252424],[-118.18106633093981,50.63528906168811],[-118.18104221631125,50.635284534274255],[-118.18109060540796,50.635180613003236],[-118.1812159763979,50.63494146013772],[-118.1813275009332,50.634751033378954],[-118.1813917011616,50.63463805752999],[-118.1814443692346,50.634489246159625],[-118.18147455455131,50.63425524731886],[-118.1814675332868,50.6339898229916],[-118.1814582024771,50.6338191287671],[-118.1814688018155,50.633697298189205],[-118.18148239505648,50.63347681777481],[-118.18147408749698,50.63315763328222],[-118.18145201183843,50.6328256116718],[-118.1814885284164,50.63255534484273],[-118.18158179777097,50.63238792694137],[-118.1816617191837,50.632296954696564],[-118.18161655756359,50.6321175272359],[-118.18142727517461,50.631836436038036],[-118.18128059105841,50.63165776603179],[-118.181020967117,50.631494305648786],[-118.18061577974956,50.631278219147184],[-118.18043437258021,50.63117618684914],[-118.1804376888493,50.631167382142806],[-118.18044100511707,50.63115857743633],[-118.18045056732198,50.631144563770405],[-118.18047466847406,50.63110840907563],[-118.18051465514958,50.630991468168325],[-118.1805056976137,50.63075754003486],[-118.18043437668,50.63056497063936],[-118.18038662321321,50.630502288091385],[-118.18038281265237,50.630493550741626],[-118.1803745117724,50.63047996886535],[-118.18034472123969,50.63042646927182],[-118.18032877561029,50.63031405702117],[-118.18037870741696,50.63016053356568],[-118.18042580594714,50.63000286073928],[-118.18036270013114,50.62985493161935],[-118.18024112991563,50.62972603991879],[-118.18018996318006,50.62967272443551],[-118.18017707251063,50.62965486941652],[-118.18014875454365,50.62962349983647],[-118.18015322138461,50.62954698863669],[-118.18021417570293,50.629371085434414],[-118.18029259749517,50.62917663686705],[-118.18036818730256,50.62897802994377],[-118.1804756570602,50.628657961027244],[-118.1805578243982,50.628279059444985],[-118.18060123557642,50.62788781966794],[-118.18068321684979,50.62754052991065],[-118.18075089643943,50.62734645398582],[-118.18076678023246,50.627265667383064],[-118.18076910556026,50.62721160105949],[-118.18076068093244,50.62711723460766],[-118.1807625970142,50.62700439011348],[-118.18072146569585,50.62688342438276],[-118.1805903268427,50.626727881750746],[-118.18044631011465,50.62658498011743],[-118.18029664149716,50.62647445314949],[-118.18011398231036,50.62635933293364],[-118.18000795734574,50.62628407505593],[-118.17998442764882,50.626266039700276],[-118.17997534815876,50.626256921992905],[-118.17996978106284,50.62624806079413],[-118.17995786892445,50.626234793734376],[-118.17993785477924,50.626216997020464],[-118.17984735312379,50.626154700052744],[-118.17969154031482,50.626048818674654],[-118.17958180499053,50.62596426044482],[-118.1795123864446,50.62589327141846],[-118.17946327640468,50.625848577915654],[-118.17945234192324,50.62583989886007],[-118.1794340851105,50.62582222584598],[-118.17941153328225,50.62580877842438],[-118.17936418194812,50.625764199744076],[-118.17928744021168,50.62568422552507],[-118.1792444792694,50.625634876554834],[-118.17924066934292,50.625626139114985],[-118.17927907187325,50.625436779201465],[-118.17928705260094,50.62501422698148],[-118.17918263296124,50.62473628630789],[-118.17905328422752,50.624652035226],[-118.17891222076639,50.62456357806117],[-118.17878736414518,50.624484162344665],[-118.1787448773829,50.62438118533338],[-118.17873458160817,50.62420590083387],[-118.1787282917381,50.62404841505083],[-118.17870180120352,50.623904762511174],[-118.17865549597803,50.62375236529822],[-118.17857902446886,50.623569027588864],[-118.1784635904212,50.62331346544498],[-118.17839003971712,50.623103226980895],[-118.17823821581743,50.62289311185344],[-118.17795442676629,50.622644329527176],[-118.17778681829853,50.62252461520723],[-118.1777511834738,50.62248425957593],[-118.17770753815489,50.6224083062808],[-118.17764885211147,50.62229627784951],[-118.17746358193314,50.62218605565587],[-118.17715426261329,50.62206313019128],[-118.1769995536846,50.622001952843426],[-118.17697241714762,50.621984222652735],[-118.17695894755083,50.62197988374326],[-118.17693991354717,50.62196667450802],[-118.17689833041796,50.621940017276614],[-118.17682785411473,50.621895505960886],[-118.17676821269366,50.621860236457536],[-118.17668182182915,50.62178465869949],[-118.17653617555438,50.621651242201466],[-118.17639708045081,50.62157195776165],[-118.17626980564634,50.62153699959062],[-118.17608036442452,50.621511776672286],[-118.1758540359609,50.6215144667399],[-118.17565395614353,50.62148906245649],[-118.17545728518314,50.62142378530238],[-118.17524021717918,50.62136328809743],[-118.175060731388,50.62134216375828],[-118.17494028842594,50.62129864714536],[-118.17483408715339,50.62121433149938],[-118.17476390349384,50.621147803369276],[-118.1747181200009,50.62109430287674],[-118.17466999833557,50.62105418620824],[-118.17456721893744,50.62100118589895],[-118.1744030462792,50.620912781875546],[-118.1742682308393,50.62070724776929],[-118.17416725486382,50.62034875457895],[-118.17398020496246,50.62000452770919],[-118.17373031670489,50.61971461907381],[-118.17360164822587,50.61946376380663],[-118.17359040192675,50.61932457248196],[-118.17358854199219,50.61928432824968],[-118.17358492381737,50.619243969051794],[-118.17357846907014,50.619158777460456],[-118.17357748589806,50.61911351539061],[-118.17358080262005,50.61910471076092],[-118.1735842176234,50.61909534363401],[-118.17358382435258,50.61907723880505],[-118.17357913282127,50.61903284501173],[-118.17355832982787,50.618938172339426],[-118.17353206347333,50.61884423511056],[-118.17352287557613,50.61875433142645],[-118.17357789112397,50.61859212814753],[-118.17363260971098,50.618411266397565],[-118.1735792040166,50.61825892407261],[-118.1734957473109,50.618156442957314],[-118.17344059852957,50.61808532456566],[-118.17336807385686,50.61799152306061],[-118.17331965557324,50.61790224175348],[-118.1733111625748,50.61787960671789],[-118.17324840910568,50.61786219222391],[-118.17311675722138,50.61783200033476],[-118.17299612902853,50.61777942900735],[-118.17285109610143,50.61767316434402],[-118.17266116483567,50.61750837114977],[-118.17243131706711,50.617317604959794],[-118.17214224314068,50.61718084154394],[-118.17187260049603,50.61711605750506],[-118.17171401491116,50.61707719375547],[-118.17165019002279,50.617055743731726],[-118.17155698684672,50.61698871831301],[-118.17136159841334,50.61682466705917],[-118.17111468553793,50.616660369622245],[-118.1708226006165,50.61659174869009],[-118.17052964612888,50.61659932438218],[-118.17027474912027,50.61659263726228],[-118.16996315340214,50.61656443185582],[-118.16965595130901,50.61657212971527],[-118.16930551831541,50.61659316300692],[-118.16888843261313,50.616588584971076],[-118.16869862719365,50.616585918495325],[-118.16869306351644,50.616577056630405],[-118.1686080596656,50.616442817152894],[-118.16845796027178,50.616192699426385],[-118.16836758987347,50.61605865027749],[-118.16833138369853,50.61603180801867],[-118.16825448433661,50.61598344688206],[-118.16812927930441,50.615885913489166],[-118.1680049521169,50.61578336213852],[-118.16791048717982,50.615703255379316],[-118.16781690022493,50.61562829924945],[-118.16767988823939,50.615516943214736],[-118.16753546032302,50.61539715463889],[-118.16737688429299,50.61527692750018],[-118.16716395367503,50.615121797168555],[-118.16699522921087,50.61498843376179],[-118.16692252975402,50.61492624043606],[-118.16686427130693,50.61487298439064],[-118.16681235670511,50.614824126052625],[-118.16676297932948,50.61477092745136],[-118.16669545157562,50.614699499922644],[-118.16652175409543,50.61454374810301],[-118.16623115497968,50.61430404345508],[-118.16599783949255,50.614113006313126],[-118.16585546888518,50.61400183828784],[-118.16575213243911,50.613921663017855],[-118.16562039943058,50.613851350447575],[-118.16541616330298,50.613799084546535],[-118.16521836916459,50.61376082215749],[-118.16499305846354,50.6136460558989],[-118.16468266418258,50.61343827396609],[-118.16445355375053,50.613274085373966],[-118.16437022365811,50.613211708524965],[-118.16426640381981,50.61311398930241],[-118.16406481402026,50.61294496409996],[-118.16388176361757,50.61281227290405],[-118.16376262365064,50.612741156744185],[-118.16365314534572,50.612665633981166],[-118.16355781697068,50.612590541021845],[-118.16345829204933,50.6125191105302],[-118.1632984658869,50.6124264731251],[-118.16308712174452,50.61230308027095],[-118.16291891584919,50.612075398549344],[-118.16286507935594,50.6117428103013],[-118.16286226744711,50.61150478330792],[-118.16284539362968,50.61142845200926],[-118.16282997777022,50.611414934757434],[-118.16285691109307,50.611382941805324],[-118.16292346406848,50.611297255044356],[-118.16297528426891,50.611183980686675],[-118.16304027788082,50.61106654798425],[-118.16316859746128,50.61095301882537],[-118.16340717434863,50.61082920883436],[-118.16375259418014,50.610704466361554],[-118.1640403445239,50.610624793728874],[-118.1642130539932,50.61054208446331],[-118.16441708602382,50.61039210606506],[-118.16466004979513,50.61022284029226],[-118.16484495562635,50.61009070886452],[-118.16497609655636,50.60998133623494],[-118.1650972846112,50.609867871084596],[-118.16516373188972,50.60981325110506],[-118.16517778249687,50.60980407472136],[-118.16523730253405,50.60975856468745],[-118.16538005323882,50.60965396147168],[-118.16552290008106,50.60954880449205],[-118.16561735109097,50.60943571053132],[-118.16568116463941,50.60930463522898],[-118.16573356063795,50.609218516924734],[-118.1658672337453,50.609104802888915],[-118.16607125557702,50.60891413785704],[-118.16621722089116,50.60875044841412],[-118.1662885437471,50.60863742020862],[-118.16642377482172,50.60851477689177],[-118.1666293530725,50.60838636244288],[-118.16682195297912,50.60828132751916],[-118.16709270205165,50.60808521273778],[-118.16743720953598,50.60780277840364],[-118.1677062942609,50.60757546966638],[-118.16784746862679,50.60743912601881],[-118.16795917845512,50.60729843339828],[-118.16808074116783,50.60716239524178],[-118.16818767081207,50.607089725076925],[-118.16833811562415,50.607042723627806],[-118.16853119562955,50.60699591163099],[-118.1686959832049,50.606958391536466],[-118.16884613533799,50.60694357385349],[-118.16903092369039,50.606923852379985],[-118.16926936829107,50.60683108869696],[-118.16949932081599,50.606685182968775],[-118.16959561165334,50.60661233016126],[-118.16946955337492,50.60655032987718],[-118.16921275452387,50.60642260875433],[-118.1690271814587,50.60633493985171],[-118.16889975985046,50.60629092006015],[-118.16873857965722,50.60621627092314],[-118.1685493004863,50.60611930069721],[-118.16837094965616,50.606031010489026],[-118.16824128563319,50.60596931439144],[-118.16812488885729,50.60590291456198],[-118.16800273631924,50.60581859109421],[-118.16790273168974,50.605729612423715],[-118.16786643599083,50.605662648676955],[-118.16788838504685,50.60560827539873],[-118.16793238464554,50.605549800617894],[-118.16796682157114,50.60549517912567],[-118.1680784263368,50.60531437396484],[-118.16825187854278,50.60499331464177],[-118.16828650523782,50.6047952068565],[-118.16817284170092,50.604692844617155],[-118.1679109856691,50.604614475479295],[-118.16751118012475,50.60454218360583],[-118.16725351954058,50.60433812624889],[-118.16719946647152,50.60407783371893],[-118.16717956126683,50.60390695069662],[-118.16715536440664,50.60378095861225],[-118.16718560417205,50.60358762968918],[-118.167348813016,50.603325169521284],[-118.16755124167504,50.60314342905753],[-118.16769318740438,50.60315515070844],[-118.16788098893294,50.60322998282429],[-118.16809512632626,50.603204996528504],[-118.1682681908518,50.603140385433],[-118.16841393760606,50.60304898878659],[-118.16848485638826,50.60291784427053],[-118.1684908006777,50.602792290244],[-118.16850415733336,50.602593810242695],[-118.16841605284418,50.60236557902463],[-118.16822288926066,50.60229092937042],[-118.16813635804716,50.60228764008765],[-118.16815059956032,50.60224684111004],[-118.16815869445729,50.6022106970056],[-118.16817917803776,50.60213418350705],[-118.16818375795363,50.60198592693398],[-118.16809878006838,50.60181101887379],[-118.16796688198049,50.60169098066899],[-118.16787820377421,50.60162878719858],[-118.16783732678208,50.60159822412203],[-118.16779215787689,50.60153119366547],[-118.16774571724616,50.601369735200244],[-118.16772425058036,50.60120778035011],[-118.16772200432561,50.60114943883046],[-118.16768941868817,50.60105110045038],[-118.1676162483919,50.600849339364544],[-118.16757380999043,50.60070567141957],[-118.16756171185219,50.60064267518011],[-118.16755088068695,50.60056226017488],[-118.16749858915736,50.6004139463956],[-118.16742083652973,50.600207902309116],[-118.1673942993742,50.60006479653736],[-118.16740736970081,50.6000001878859],[-118.16741887820749,50.59989366429697],[-118.16741955735326,50.59976773789271],[-118.16745038093819,50.599672746901575],[-118.16753300432725,50.59958649351739],[-118.16761835735826,50.59950496129457],[-118.16769766369582,50.59942751243178],[-118.16777218865114,50.59933673708367],[-118.1678071091293,50.59926915184047],[-118.1678264209409,50.59917899717983],[-118.16784826746643,50.599043827263074],[-118.16787664926737,50.59892211665807],[-118.16791420228834,50.59880895358556],[-118.16796492315432,50.59869164046393],[-118.16802598461615,50.59859652474505],[-118.1681373781787,50.598447340302684],[-118.16827218092169,50.598265912996126],[-118.16834465315519,50.59816652301322],[-118.1683810368315,50.59812106860814],[-118.1684728237905,50.59804337974893],[-118.16860245929718,50.59795253617239],[-118.1686717145559,50.59790206309713],[-118.16870487884259,50.59787502844205],[-118.16874935769467,50.59783410452467],[-118.16878076605119,50.597806945873174],[-118.16881939273075,50.59777916700853],[-118.16887976833235,50.59769813022292],[-118.16893331526323,50.59758496627856],[-118.16896784141301,50.59749927521269],[-118.16899212782737,50.59747218312514],[-118.16902656124306,50.597458226824315],[-118.16905367501337,50.59739460951367],[-118.16905171690946,50.59727357667866],[-118.16904234674209,50.5971746176282],[-118.1690377587062,50.59712966889361],[-118.16902702643863,50.597089366181194],[-118.16895552207095,50.59700013881851],[-118.16883904625091,50.5968529425832],[-118.16878967964753,50.5966777186857],[-118.16881590660653,50.596466596890224],[-118.16884837955452,50.59629093261559],[-118.16886739581426,50.59622279356635],[-118.16885978428616,50.59616463338832],[-118.1688239782339,50.59600335563895],[-118.16878777755805,50.595783306362314],[-118.16877040366394,50.59556740646125],[-118.16877214477644,50.59529297365361],[-118.16887464157239,50.59495051488893],[-118.16897489572435,50.59466157050615],[-118.16888309965948,50.59446471197122],[-118.16879930601364,50.59430343495395],[-118.16893204179587,50.594072716640106],[-118.16910476345747,50.593765722279706],[-118.16893795625796,50.593438712774145],[-118.16858417675742,50.593154432574245],[-118.16844176933564,50.59304381862682],[-118.16832696743467,50.59296848031313],[-118.16798539036009,50.59274663230088],[-118.16760509434535,50.59251244910341],[-118.16737832515037,50.59240660452564],[-118.16720334770591,50.592350181488506],[-118.16695658481818,50.59222654522717],[-118.16669489939059,50.592035761554186],[-118.16645438168155,50.591876409259264],[-118.16623571283012,50.59177509309409],[-118.16604688978788,50.59169622237893],[-118.1658628471298,50.59163067796407],[-118.16570621044401,50.591591365978786],[-118.16552655620914,50.59156172637601],[-118.1652671212906,50.591510631992975],[-118.16501412396856,50.59146338139062],[-118.16484490615794,50.591424878560865],[-118.16468661498287,50.5913543721311],[-118.16450969643239,50.59124809273669],[-118.16435920936674,50.59113295127624],[-118.16417273769166,50.590959333687564],[-118.16403006304283,50.590718188724296],[-118.16408332713398,50.59047450996715],[-118.16420378466765,50.590293772062886],[-118.16405242066115,50.59025482982076],[-118.1636490340889,50.59032575449007],[-118.16344070781508,50.590368656708506],[-118.16339301797585,50.590346639176964],[-118.16321435091862,50.59024023353793],[-118.16298009968969,50.59004515863566],[-118.16286922224965,50.58986615093367],[-118.16284855600955,50.589740403909566],[-118.16283178956763,50.589633010504365],[-118.16281492400203,50.58955667718738],[-118.16279493462022,50.58949821016882],[-118.16277514118327,50.58944878697074],[-118.16276675483451,50.58943576561967],[-118.16279532976027,50.589434964939194],[-118.1630293001964,50.58942833319771],[-118.16374330485746,50.58934942426806],[-118.16460681899537,50.58922853127053],[-118.1649769376932,50.589175021611474],[-118.16503369882211,50.58916547351414],[-118.1652306082551,50.58905566902482],[-118.16552797244637,50.58885917280812],[-118.1657153221458,50.58872270511434],[-118.16591027953235,50.58856303823891],[-118.16639644521885,50.58829288693333],[-118.16695974878172,50.588089756243214],[-118.16725602760721,50.58800108678774],[-118.16742269645819,50.58793206903244],[-118.16762125422431,50.58785344431822],[-118.16786915793965,50.58775683706327],[-118.16810213880241,50.58766426428479],[-118.1682318435631,50.587613541879655],[-118.16835442958185,50.58756287698794],[-118.16853884090698,50.587453314678115],[-118.16869857709378,50.58731206339369],[-118.16884504942485,50.58717552455477],[-118.16900429818355,50.587057396315416],[-118.1691090319703,50.58696649398734],[-118.16919445648188,50.586884396799],[-118.16932980991967,50.586770799509644],[-118.16947569437576,50.58664777693375],[-118.16957691546385,50.58655662619698],[-118.16955701473503,50.58646709102634],[-118.16943997999961,50.58633341073458],[-118.1693025610008,50.58616383418225],[-118.16916309535621,50.58598563426191],[-118.16908507291978,50.585882955239605],[-118.16903455115644,50.585775439073785],[-118.16897349336045,50.58559599682211],[-118.16893652661787,50.58546175144858],[-118.16891945745319,50.58541705038126],[-118.1689082419989,50.58538970177188],[-118.16889390140591,50.58530903747367],[-118.16887634229036,50.58520610881431],[-118.1688664911789,50.585160778579215],[-118.16886999960377,50.585120350938126],[-118.16888393667466,50.58498970956324],[-118.16891396314044,50.58482799858712],[-118.16895900856726,50.584692205521826],[-118.16900990636768,50.584583942722475],[-118.16905436938637,50.58450234241137],[-118.16909200719006,50.58443946790743],[-118.16912223495757,50.58439866753446],[-118.16915685141036,50.58435308815199],[-118.16922081727031,50.58427173528451],[-118.16928975427187,50.58417209507341],[-118.16937117458096,50.58407219752121],[-118.16948174792304,50.58392747353676],[-118.16954892852952,50.5838277091616],[-118.16956764898029,50.58379174539913],[-118.16958588352836,50.58376873634519],[-118.16963980488038,50.58371436035683],[-118.1697214192883,50.58362351530184],[-118.16978323946091,50.583564608124796],[-118.16987655702637,50.58351866355469],[-118.17001102464042,50.58344058974223],[-118.17016323790176,50.58336264809751],[-118.1703308606688,50.58329821398317],[-118.17051798709846,50.58326454259643],[-118.17070267751093,50.58324481778564],[-118.17078254162305,50.58323519931815],[-118.17089320913371,50.583130595879545],[-118.17125252277563,50.582884227904515],[-118.17181261356201,50.58265825339218],[-118.17229899054908,50.58251859183198],[-118.17247508197902,50.58239543906905],[-118.17247554495066,50.58221978142614],[-118.17249161442905,50.58206668403371],[-118.1727347933027,50.58195617624909],[-118.173192103566,50.581830277593134],[-118.17344493795764,50.58175604544411],[-118.1734704836698,50.581742030526186],[-118.1734761358124,50.58171983211789],[-118.17349864446477,50.58161125419092],[-118.17359573481761,50.58142151038233],[-118.17376206820666,50.58130331651245],[-118.17388609638256,50.58127478556553],[-118.17401363480502,50.581246502261635],[-118.17422258989308,50.58119967784264],[-118.17442510794893,50.58113883126303],[-118.17450192687255,50.58103465598975],[-118.17455572759616,50.58089947945378],[-118.17473249324188,50.58080292777718],[-118.17495333795434,50.58072868557792],[-118.17513176063669,50.580632810718946],[-118.17535512853881,50.58051356021948],[-118.17563466235566,50.58039826404014],[-118.17580938354958,50.58033376331256],[-118.175974943179,50.58029121315969],[-118.17643700754488,50.58017863622779],[-118.17708861680246,50.58002857881977],[-118.17750990999285,50.579884874374486],[-118.17771882592861,50.57971600684348],[-118.17786650854111,50.579562035565296],[-118.17793328137945,50.579484826858916],[-118.17811012441229,50.579357200225346],[-118.17841809226876,50.57916030304312],[-118.17857650872052,50.579046624478586],[-118.17858498600674,50.57902858428987],[-118.17858361477816,50.57900589027196],[-118.17853942883096,50.578943450676135],[-118.17839293938393,50.578805441377426],[-118.17820823045614,50.57867264443253],[-118.17805735567815,50.57853941403671],[-118.1778343975656,50.578289801180816],[-118.17757564676957,50.57799076816477],[-118.17743196372044,50.57774505717547],[-118.17736287948706,50.57753002711234],[-118.1773144770274,50.57735939125162],[-118.1772707682025,50.5772433202076],[-118.17720522251383,50.57714039654298],[-118.17712676630387,50.576867081368974],[-118.17706841614877,50.57626469318355],[-118.17703696062839,50.5755998086556],[-118.17702242782043,50.5751637824674],[-118.17701924722209,50.574907077007076],[-118.17702145852118,50.57477220876329],[-118.17701501326093,50.57472768889595],[-118.17698058054062,50.57466029585419],[-118.17692157540945,50.574570821971015],[-118.17683341248876,50.57445500259212],[-118.17671774817312,50.574303346058066],[-118.17662227136816,50.57417854070678],[-118.17656384948829,50.57407554915577],[-118.17652736022218,50.57395885663415],[-118.17651533729845,50.57382412248465],[-118.17650848031091,50.57368014443477],[-118.17650210869766,50.57352320252642],[-118.17650645056071,50.573325220338],[-118.17654618081286,50.573117867447486],[-118.1766025978931,50.57297778541666],[-118.17657957350053,50.572906108154136],[-118.17644843419673,50.572853357132026],[-118.17632353732664,50.57280555697652],[-118.17627507928124,50.57278801795344],[-118.1762155049025,50.57275273713472],[-118.17612453384464,50.57270395057165],[-118.1760857274747,50.57268200369914],[-118.17603990165165,50.57265956137117],[-118.17572526181036,50.572487640016774],[-118.17515068941037,50.572196819130426],[-118.17456716997148,50.571977666368774],[-118.1739839768386,50.571929714776495],[-118.17357043910305,50.57201915558917],[-118.17338238451842,50.572048253078684],[-118.17322853363872,50.57197298682954],[-118.17302135265514,50.571867397935584],[-118.17277010265674,50.57173949778346],[-118.1725092980713,50.571584925855795],[-118.1722628252599,50.57142967492374],[-118.1720577893969,50.571301646628235],[-118.17189916549688,50.57121304285327],[-118.17182263156278,50.57117318090387],[-118.17181171183238,50.57116450052603],[-118.17179367625485,50.57115587803585],[-118.17176939928778,50.57114230425305],[-118.171669272976,50.57108494856871],[-118.17151952122587,50.570996410277935],[-118.1714401611629,50.57095238928382],[-118.17133194294172,50.5708905116383],[-118.17111648274845,50.57077134446042],[-118.17086446482553,50.57064790434172],[-118.17058037594978,50.57052501844518],[-118.17033869796452,50.57042376613108],[-118.17004613131812,50.570318927518095],[-118.16973124215573,50.57020968186633],[-118.16961279410539,50.5701657182417],[-118.16958227959542,50.57015735270049],[-118.16951764527796,50.5701307492533],[-118.16946821758766,50.57010861874955],[-118.16944023904044,50.570095903707745],[-118.1692583240991,50.56999831018643],[-118.168952794625,50.569835488334334],[-118.16880860872486,50.569755817544234],[-118.16882264608928,50.56974664025642],[-118.16888688551194,50.56967377657769],[-118.16905210967423,50.56947020941059],[-118.16923711777794,50.56919402717814],[-118.16931090094214,50.56899528941514],[-118.1693236637152,50.5688916803784],[-118.16937122894102,50.5687922203791],[-118.16944326170457,50.56867471126097],[-118.16953274139168,50.56853866604361],[-118.16962495038092,50.568407333162995],[-118.16968313920493,50.56830806314568],[-118.16971354822624,50.568235638375],[-118.16976968351233,50.5680463921019],[-118.1698562205222,50.56770336802405],[-118.16990124040053,50.56749638796783],[-118.16989957520327,50.56738384122486],[-118.16982498504099,50.56715994144852],[-118.16966783199535,50.56694093811105],[-118.16952072535358,50.56677630974932],[-118.16941913890538,50.56657479030812],[-118.16939358485133,50.566354914652436],[-118.16942242365447,50.56613888188278],[-118.16945867100044,50.56593128178338],[-118.16950827467664,50.56576926079622],[-118.16956372935577,50.565624592599264],[-118.16960602176007,50.56545357624621],[-118.16963671313565,50.56527779011111],[-118.1697127335927,50.56513740409389],[-118.16986800172093,50.56500091751574],[-118.17000270392643,50.564900833936484],[-118.17006849516513,50.56485972560374],[-118.17019656974199,50.564777251979095],[-118.17045554631295,50.56462662331322],[-118.17067095303896,50.56451190223462],[-118.1708413272469,50.564410948099116],[-118.17103957207563,50.564252077957455],[-118.17113147702084,50.56414276012212],[-118.17112872687771,50.563944833736485],[-118.17081580693974,50.5636108765893],[-118.17019567467514,50.56341904968063],[-118.16999604611073,50.563331502332574],[-118.17041339706272,50.563097721151095],[-118.17124654062175,50.56276111306468],[-118.17239449175831,50.56238120100743],[-118.17340683679703,50.5619436764259],[-118.17411994730575,50.561572024250346],[-118.17496571504995,50.56128486860468],[-118.17580331595431,50.56114627655084],[-118.17639121363015,50.561054454415356],[-118.1770042307862,50.560859322627145],[-118.17776673620317,50.56059112760076],[-118.17854109385485,50.560214165099765],[-118.17897870967315,50.559863708373214],[-118.17908470802327,50.559714134535255],[-118.17916355112466,50.559699930275805],[-118.17932826501287,50.559702515530866],[-118.17951266924162,50.559714399325436],[-118.17964220510741,50.55973539999038],[-118.17975156947466,50.5597702350397],[-118.1798974833762,50.559809348516914],[-118.1800520698497,50.55983946520245],[-118.18014427699164,50.55986066034891],[-118.18012299563296,50.559748429640244],[-118.18009262661613,50.5595558960036],[-118.1800753461422,50.55946146533833],[-118.1800767815649,50.55937173598983],[-118.18007631504625,50.55911973792306],[-118.18007320540883,50.55883196627474],[-118.18007060160062,50.558602415006824],[-118.17992736363945,50.558374798661845],[-118.17963774486851,50.55816171829874],[-118.17947534807783,50.55806438576799],[-118.1794545860349,50.5580510521333],[-118.17944015938997,50.55804212474814],[-118.1794292413751,50.55803344497914],[-118.1794112080407,50.5580248325152],[-118.17924318916694,50.558031052826166],[-118.17883179711804,50.55797659058666],[-118.17844951185911,50.55779594283529],[-118.17826624860191,50.55764516026811],[-118.17821994430308,50.55760517481256],[-118.17835246771025,50.557527527185385],[-118.17883988996064,50.55728849654088],[-118.17934639187989,50.55699092631239],[-118.17941094700267,50.55678362292824],[-118.17930469197002,50.55669025188005],[-118.1792864616881,50.55667258629419],[-118.17929912193183,50.55664071291384],[-118.17937860619938,50.55650056644384],[-118.17951235139061,50.55628345756185],[-118.17961589451579,50.55610716202355],[-118.17967959176897,50.555976070243446],[-118.17979347192875,50.55582196305432],[-118.17996871067362,50.55555016657873],[-118.18009939953272,50.555238499817825],[-118.18026858547411,50.55494027919819],[-118.18047841280695,50.5546635742249],[-118.18044736397694,50.55447495053468],[-118.18022589554474,50.554288706960165],[-118.18011270284066,50.55412310264625],[-118.180200653613,50.55396490537558],[-118.18038068796739,50.55378778852805],[-118.1804780090633,50.55368788608636],[-118.18048628463478,50.5536607831494],[-118.18049846240608,50.553652042963975],[-118.18050800813917,50.55363802798085],[-118.1805403545334,50.55361545301423],[-118.18061128238679,50.55356509359457],[-118.18068454462669,50.55350134013174],[-118.18072263390951,50.553456003024536],[-118.18075263256019,50.55340614483906],[-118.18079100621938,50.553338799341624],[-118.18082002874951,50.553284352675384],[-118.1808326869558,50.55325247898924],[-118.18083813408947,50.55322122631666],[-118.18084679034747,50.55317156135237],[-118.18084813578821,50.55311290172949],[-118.18084802622586,50.55307277818289],[-118.18086788556201,50.553009775590574],[-118.18100552546403,50.552841534634055],[-118.18120023653262,50.55256997177022],[-118.18125336262715,50.55232627353],[-118.1812354057847,50.55224591364286],[-118.18121969533566,50.55218323017449],[-118.18119012825062,50.552057415520515],[-118.18117441793032,50.5519947320313],[-118.18120570039319,50.55199862990203],[-118.18136951011178,50.55200623938577],[-118.18165726404999,50.55198529907931],[-118.18189373773035,50.55190199411056],[-118.18200412009551,50.55182899081192],[-118.18205770432691,50.55179661510823],[-118.18208137826348,50.55178303648615],[-118.18223463937727,50.5517187080031],[-118.18258451616109,50.551575609610985],[-118.18283539788438,50.55146054347339],[-118.18291899092281,50.551418985711194],[-118.1829928410983,50.55138238998056],[-118.18310478976868,50.55134114233986],[-118.18328339027244,50.551294418839056],[-118.18341502204392,50.551252299775925],[-118.18346179052554,50.55123865083822],[-118.18347942526181,50.55122915643684],[-118.18351830159673,50.55122003973826],[-118.1836109602057,50.55118759076098],[-118.1837585723201,50.55114546880856],[-118.18394944578394,50.551089441104224],[-118.18414743142971,50.55103335438905],[-118.18433918221035,50.55098247699975],[-118.18453288104635,50.550930606830114],[-118.18473534967687,50.550879354953175],[-118.18491832890469,50.55082785792281],[-118.18504177083453,50.55078176976007],[-118.1851324747425,50.550740142633714],[-118.18518878582891,50.55071247753098],[-118.18535988726366,50.55068838933461],[-118.18566954914758,50.55065373555678],[-118.18584971553595,50.550638764682404],[-118.18592523290909,50.55063335226993],[-118.18603884796886,50.55062328693779],[-118.18615682720787,50.550567773265094],[-118.1862449307501,50.55037794637814],[-118.18628856671162,50.55011719900951],[-118.18630146753834,50.549981952551654],[-118.18630282377627,50.54996396995586],[-118.18645278013865,50.54994912751579],[-118.18676068208408,50.549914346969885],[-118.1869390926917,50.54989924169355],[-118.18699404565882,50.54988955825442],[-118.18716143591021,50.549856166731736],[-118.18745403567034,50.54981748507373],[-118.187690225367,50.54979685336829],[-118.18784076048081,50.54976848224193],[-118.18799089539432,50.54972201354322],[-118.18812465260413,50.549657432537416],[-118.1882171038533,50.549615935441786],[-118.188372817006,50.54961900516481],[-118.1886519039273,50.549647721400824],[-118.18905002370641,50.54959443797472],[-118.18960106181258,50.54941747704195],[-118.1901667641693,50.549339847287335],[-118.19064611577193,50.54941148270606],[-118.19108238856877,50.54946540022753],[-118.19137221717564,50.54953441255528],[-118.19145789590762,50.549582817166424],[-118.19147865760023,50.54959614869852],[-118.19160127870279,50.54966693425532],[-118.19179613024964,50.54978178650456],[-118.1919863997979,50.54989236535585],[-118.19221371091652,50.55002476212471],[-118.19244305622497,50.55013527353588],[-118.19261176588545,50.550196307387175],[-118.19268252219919,50.5502182415429],[-118.19271477998183,50.55022673348332],[-118.19278455927389,50.55024407920573],[-118.19290217823503,50.55025179776691],[-118.19309686534865,50.55024517831217],[-118.19323835441301,50.550248368655005],[-118.19328025732236,50.550252451062356],[-118.19332907245837,50.55024742105381],[-118.19346324869531,50.550241617244005],[-118.19367138543464,50.55023933407438],[-118.19392029720022,50.55030884579802],[-118.19417624478078,50.550409359242956],[-118.1943310342901,50.55048918685749],[-118.19441819267509,50.55055973010816],[-118.19452261263304,50.55065352640731],[-118.19464691829661,50.55075549368018],[-118.19480045327319,50.55085274965391],[-118.19502454845718,50.55096287599828],[-118.1952332382569,50.55105949705204],[-118.19535644521436,50.551116760443605],[-118.19545528284286,50.551161008382444],[-118.19553618484252,50.551196083746625],[-118.19562146967283,50.55122637881619],[-118.19579427020399,50.55127414589981],[-118.19606686199879,50.55133006225086],[-118.19635212667895,50.55139478858269],[-118.1965779551835,50.55146435802612],[-118.19678011346508,50.551547517693656],[-118.1969276940243,50.55161779432617],[-118.19704321489564,50.55168864213622],[-118.19722083132994,50.55179041013792],[-118.1974758170596,50.55188632749108],[-118.19784587632552,50.551963790924276],[-118.19817297784324,50.55206365474479],[-118.19833775148501,50.552188243514],[-118.1986836492289,50.552404675328646],[-118.19920324135255,50.552674009651746],[-118.19943018463698,50.5527882850367],[-118.19949633443059,50.55276526489334],[-118.19962765749732,50.552714627264024],[-118.19971103577237,50.55266400385363],[-118.19975045614534,50.55260067748618],[-118.19978353825306,50.552532954905374],[-118.19983853504456,50.55245152643119],[-118.19993425914184,50.55236052749172],[-118.2000004080497,50.55233750703665],[-118.20006665469617,50.55231392397593],[-118.20022773822446,50.55231678498322],[-118.20039613634418,50.552328639136526],[-118.2005724235843,50.55233596849489],[-118.20068967674568,50.55236624980696],[-118.2007511992836,50.552410694967755],[-118.20080628123445,50.55244111936409],[-118.20088055337203,50.552463295191366],[-118.20101125665283,50.55249792147144],[-118.20116768409504,50.55252756999118],[-118.20126825317612,50.55253125896833],[-118.20145024215782,50.5524751465714],[-118.20182969832697,50.55234537215866],[-118.20216937431832,50.55218906090505],[-118.2023184919252,50.55209730752449],[-118.20236582943559,50.55207013273354],[-118.20245466800881,50.55202893066977],[-118.20263800326012,50.5519548335469],[-118.20285077025609,50.551885067026994],[-118.20301843137256,50.55182963433935],[-118.20312031544505,50.55177466166165],[-118.20318848281055,50.55171957603348],[-118.20326579195624,50.5516425364993],[-118.203366292425,50.551564869114934],[-118.20348034820435,50.55150115337744],[-118.20357201476371,50.55146409952079],[-118.2036519117116,50.55145390346383],[-118.20381953165318,50.55147021728415],[-118.20406910991356,50.55149512668858],[-118.20418595825556,50.55150729814703],[-118.20416981115525,50.55142651166534],[-118.20414618453363,50.55125593117168],[-118.20415903052061,50.551120691764474],[-118.20423357038088,50.55099826255537],[-118.20432817217993,50.550862556711984],[-118.20439849917372,50.550713274834834],[-118.20444199434219,50.550524259358276],[-118.2044644831663,50.5503846094559],[-118.20446640539454,50.550353108687915],[-118.20448754196782,50.550343866707266],[-118.20454957130286,50.550293428393275],[-118.20462491902363,50.55020721125307],[-118.20467862712047,50.55011269241933],[-118.20472659582911,50.55003076763974],[-118.20476513337093,50.549972466715865],[-118.2047858660476,50.549945109512954],[-118.20483893091901,50.54978275389707],[-118.20492499797774,50.54947131919299],[-118.20499653696535,50.54926393907107],[-118.20513411030294,50.54913634486251],[-118.205376529695,50.549008208758444],[-118.20556598175135,50.548929458236614],[-118.20567594839764,50.548879002307224],[-118.20588505470853,50.548768868129066],[-118.20619660738312,50.548590230908594],[-118.20650144970627,50.54842976807497],[-118.20682860648715,50.54827370331133],[-118.20719988419854,50.548098704386454],[-118.20759240082901,50.54792406836583],[-118.2079619562528,50.54778962087941],[-118.20839151374304,50.54763679503821],[-118.20882474135797,50.5474525899025],[-118.20912589380862,50.547323497268025],[-118.20928945053551,50.54728132617137],[-118.20942799518342,50.54727073121912],[-118.20964272615039,50.547250805236345],[-118.20989254625208,50.54724351481564],[-118.21023884486667,50.54725317611297],[-118.21058999804785,50.547245100020646],[-118.2107239577801,50.547230231165784],[-118.21070052472331,50.547181129906804],[-118.21064340638733,50.5470601699195],[-118.21058305035787,50.54691695463785],[-118.21052899168626,50.54673746636937],[-118.21045696813354,50.546518290862394],[-118.21037405239697,50.54632095544551],[-118.21029485049695,50.54613291078604],[-118.21022255739854,50.545935752529864],[-118.21016183641731,50.545815108039776],[-118.21011510866133,50.54575702898161],[-118.21001077355946,50.54567286249316],[-118.20982353899508,50.545503776724786],[-118.20971821633599,50.545302595872464],[-118.20975315724769,50.545162691118406],[-118.2097891550767,50.54510872968896],[-118.20980967732258,50.545072327156994],[-118.2099199583963,50.54495861799746],[-118.21013540119026,50.54478113156677],[-118.21031181307258,50.544644395242194],[-118.21037389435661,50.544562891494934],[-118.21039770827217,50.54440525636884],[-118.21039670465193,50.54417582512167],[-118.21036746874584,50.54406812334648],[-118.21033726570215,50.54406825930542],[-118.21032176098504,50.54405531010611],[-118.21026751597911,50.54397918499778],[-118.21015835896794,50.543841006428025],[-118.2101587141515,50.54370601804916],[-118.21030364049199,50.54355632968271],[-118.21041897283875,50.54343394554397],[-118.21045547357365,50.54339752756037],[-118.21047387305602,50.543383572791655],[-118.21052908450106,50.543351860016934],[-118.21086900257566,50.543244697665],[-118.21147954781314,50.54311249736832],[-118.21192420213967,50.54310760350297],[-118.21230509186503,50.54315302768272],[-118.21275099589973,50.54313070110374],[-118.21304364995805,50.54301964969106],[-118.21315624218795,50.54289254219265],[-118.21319488243603,50.54276193568569],[-118.21322135246933,50.542640081959384],[-118.21322518401769,50.54257707952529],[-118.21319924572454,50.54246057165863],[-118.2131396424699,50.54220047469373],[-118.21310003125075,50.541958161258755],[-118.2131324727443,50.541863274262],[-118.21333227529082,50.54184737339251],[-118.213633031055,50.54185326531977],[-118.21376836312066,50.54186107837989],[-118.21377048285339,50.5418386303131],[-118.21375599025276,50.541676612099266],[-118.2137244251443,50.54139813972402],[-118.213712322501,50.54119165563509],[-118.21373589580804,50.541096714602766],[-118.21379358777678,50.541019980671635],[-118.21385431279916,50.54095645774916],[-118.2139056010688,50.54090639919841],[-118.21398549934416,50.540824446916794],[-118.21413147884502,50.540678787615064],[-118.21430498883788,50.54049721758049],[-118.21438068890672,50.540316672708464],[-118.21447904570269,50.54018970253794],[-118.21479743546016,50.540114343149085],[-118.21502920292016,50.54002668546806],[-118.21506332803983,50.539962991878724],[-118.21506838453374,50.53995430842135],[-118.21506241350129,50.53992733270618],[-118.2150452718896,50.539841958434145],[-118.215024892214,50.53973431990771],[-118.2150527454661,50.53963515101857],[-118.21517304830003,50.539535139933314],[-118.21538708155389,50.53944736520502],[-118.21560765500006,50.53937304756199],[-118.2157444843169,50.53933125043213],[-118.2158220961842,50.53930337840646],[-118.21589852548037,50.53926185595715],[-118.2159853679395,50.53921146599475],[-118.21609087496033,50.53912510243115],[-118.21619401336224,50.53901145587931],[-118.21624050933195,50.53894806188659],[-118.21623995702873,50.53888984018329],[-118.21623854184081,50.538754718808235],[-118.21623568513648,50.538638143208175],[-118.21623311206635,50.538601807096576],[-118.2162129161228,50.53857497072195],[-118.21615681808308,50.53849927840418],[-118.216100718683,50.53842359498113],[-118.21605075240169,50.538343253643454],[-118.21597404967274,50.53822261834412],[-118.21588868792622,50.53811097367363],[-118.21583485021226,50.53805295718243],[-118.21576854360609,50.53799519423597],[-118.2157535199505,50.53788737165848],[-118.2157673706158,50.53772564591519],[-118.21562554783047,50.537560888735484],[-118.21548576197135,50.53747649420277],[-118.21538271741198,50.53740541078778],[-118.21513983510526,50.53729117281099],[-118.21490559410495,50.53723968371784],[-118.2148291235826,50.537240527645345],[-118.21476863063354,50.53724135563925],[-118.21463429133073,50.53723813199997],[-118.21455030134958,50.53722092988894],[-118.21445580069997,50.5372131576407],[-118.21426689709469,50.53719705031456],[-118.21405517381554,50.53715901016365],[-118.21385911574104,50.537102293717375],[-118.21371773204926,50.53706805849898],[-118.21354604200263,50.537024353030375],[-118.21326229533287,50.53695130227845],[-118.21299266376909,50.53686851391397],[-118.21278245219216,50.53678085446672],[-118.21257837294766,50.5366885458454],[-118.21241386224827,50.536613707041695],[-118.21228180782151,50.536556407645826],[-118.2121506364524,50.53650425002001],[-118.21201956300949,50.536451529649135],[-118.21188565992608,50.53639466013006],[-118.21178508499756,50.53635030269101],[-118.21172377589117,50.53631492494591],[-118.21168195122462,50.53627977833634],[-118.21166556768854,50.53626167833518],[-118.21165464874468,50.536253001499055],[-118.21159546042381,50.53619517549785],[-118.21143906857695,50.53605311396212],[-118.21122605062338,50.53587938387506],[-118.21104698138187,50.53575550403812],[-118.21084038192278,50.53566753377194],[-118.21053527621403,50.53555398800457],[-118.21019906263288,50.53540492682807],[-118.20992678205707,50.535286348132075],[-118.20976551608396,50.535233769796776],[-118.20963714208857,50.53514508012445],[-118.20945612315897,50.53501202100653],[-118.20933243931522,50.53493721921617],[-118.20928127718713,50.534914982108226],[-118.20909915706773,50.53484962798991],[-118.2086330019097,50.534692550596176],[-118.20783924412488,50.53440847480315],[-118.20697462398434,50.53406235227698],[-118.20654130703315,50.5339002267546],[-118.20648266799854,50.533900619976116],[-118.20645196833772,50.53388321088547],[-118.20637779468603,50.53382996710529],[-118.20628400581356,50.53373636669311],[-118.20616699908679,50.53360271645673],[-118.20603196446297,50.53346045766888],[-118.20590687127776,50.5333222788486],[-118.2057584901837,50.53317512121785],[-118.2056195813423,50.533055186612415],[-118.20556889971532,50.533019983147405],[-118.20553722451402,50.53299797650442],[-118.20547474417012,50.53294895351552],[-118.20544397656649,50.53285017887139],[-118.20543983451445,50.53267984490767],[-118.20540923458829,50.53254944534949],[-118.20539080119293,50.532522730214886],[-118.20538524222982,50.53251386035051],[-118.20534739905628,50.532455832780975],[-118.20528680543518,50.532334629990594],[-118.20524299840129,50.532249625879835],[-118.20523342981632,50.5322229651552],[-118.2052136485019,50.53221423319648],[-118.2051857795466,50.532200972901805],[-118.20510012066757,50.53215256890811],[-118.20494945465829,50.53205948305015],[-118.20481553884892,50.53196192650545],[-118.20471464595276,50.53186839348824],[-118.20465186942039,50.53181087030689],[-118.20456044912136,50.53174455157763],[-118.20427563345292,50.53161659493141],[-118.20391220886751,50.5314814134522],[-118.20375982795808,50.53142888071547],[-118.20383555030962,50.53136076877157],[-118.20388778736535,50.53116219662735],[-118.20377908891018,50.53092969742548],[-118.20373238979947,50.530759186814834],[-118.20379503703475,50.53066416707684],[-118.20381400655441,50.5306366949111],[-118.20379928537993,50.53061927070915],[-118.20377276651122,50.53058802680047],[-118.20376636355596,50.53050227415559],[-118.203878616783,50.530326005067096],[-118.20410064893214,50.53016141398779],[-118.2042563322677,50.53009272087018],[-118.20429441227867,50.53008805270358],[-118.20424057344124,50.529999521302315],[-118.20414312452324,50.529824877759786],[-118.20414054010857,50.529645604270236],[-118.20416142593423,50.52946403287441],[-118.20420159746256,50.529283819087965],[-118.20426553880448,50.52910979811933],[-118.20437730977935,50.52894649288427],[-118.20453525595431,50.528793208311576],[-118.20469475889811,50.52864117207297],[-118.20480244072354,50.52848095928323],[-118.20476293835597,50.52829965640845],[-118.2047899608698,50.528123605810286],[-118.20488136816277,50.52795490758786],[-118.20499021068018,50.527787997020596],[-118.20510080403966,50.52762121865173],[-118.20520282599388,50.527452697927636],[-118.20528770141807,50.52728071945582],[-118.20536575884681,50.52710712208848],[-118.20543348890352,50.52693167689126],[-118.20548553761985,50.526754558400924],[-118.20551469872343,50.526576389274425],[-118.20553586753547,50.52639314703389],[-118.20554690647866,50.52620692291213],[-118.2055379817003,50.52602325265285],[-118.20550286499378,50.52584734728072],[-118.20542228264215,50.525688010031686],[-118.20519916067096,50.525572873658945],[-118.20496542501749,50.52545755001256],[-118.20484355465672,50.52530095503202],[-118.2047656891853,50.52512598974148],[-118.20471742443729,50.524944069032614],[-118.20469350946337,50.52476499233383],[-118.20470202155477,50.52458311842934],[-118.20475095193544,50.52440352044657],[-118.20484576182841,50.52423562197433],[-118.20496930627108,50.52407596522063],[-118.20511008889174,50.523919221232525],[-118.20525759279255,50.52376464057401],[-118.20540353644226,50.5236088200357],[-118.20553925233095,50.52345058001944],[-118.20568080620069,50.523289370185346],[-118.20578593464839,50.5231233273363],[-118.20580019522724,50.52294919774864],[-118.2057656612673,50.52276994304159],[-118.20570639327215,50.52259006800672],[-118.20564294070347,50.522413857445876],[-118.20555757989177,50.522241193582204],[-118.20546491787954,50.522069705914014],[-118.20539377756502,50.52189690390116],[-118.205383885281,50.52171881392387],[-118.2054416707742,50.521539278372536],[-118.20553988031364,50.52137218812023],[-118.20565367189471,50.521207324612995],[-118.20577944335663,50.521044994667974],[-118.20591349338282,50.52088607663653],[-118.20605728496132,50.52073236380331],[-118.20622123795093,50.5205851590813],[-118.20638684668474,50.520438631143755],[-118.2065390122856,50.520287767064765],[-118.20667286362463,50.520129964227124],[-118.20679853075873,50.519968195508554],[-118.20691406709261,50.51980345381102],[-118.20701927896737,50.51963685542269],[-118.20709546595845,50.5194636944307],[-118.20715626392446,50.519287190432166],[-118.20725962473061,50.51912102199773],[-118.20740038391438,50.51896427415815],[-118.20756422999801,50.51881762080161],[-118.20774931237045,50.51868150105834],[-118.2079741468737,50.518571906609424],[-118.2081871953839,50.5184586530397],[-118.20831967009623,50.51829849197931],[-118.2084250669703,50.51813077569058],[-118.20852530063885,50.51796213553161],[-118.20868709682142,50.517817026913676],[-118.20887402058995,50.517680474817894],[-118.2090211037955,50.517528120513965],[-118.2091485080621,50.517366471971975],[-118.20926393307538,50.51720228097468],[-118.20942016475415,50.517048310246004],[-118.20960221207402,50.516909154236934],[-118.20984537502844,50.51683700305455],[-118.21013737498484,50.51682082325767],[-118.21042199458223,50.51682673033398],[-118.21070339990534,50.51683071116907],[-118.21094615329042,50.51674045062707],[-118.21111134527885,50.51659614750001],[-118.2112555902985,50.51643963199555],[-118.21144132867057,50.516299603227594],[-118.21167411127644,50.5161747431158],[-118.21176315545279,50.51602960177535],[-118.21170387239026,50.515849728452736],[-118.21156319739323,50.515678826651595],[-118.21137855337246,50.51554662821665],[-118.21117103732168,50.515423558718005],[-118.21094610114174,50.515308871716684],[-118.21070871490244,50.515204598088935],[-118.21046365027698,50.515113911809706],[-118.21021169157179,50.51504251751422],[-118.20994067842828,50.5149991500523],[-118.2096582870045,50.51497023933455],[-118.20937404561643,50.514941767154376],[-118.2090968073624,50.51490360894374],[-118.20881897740774,50.51485863800941],[-118.20858297331267,50.51476688543906],[-118.20837857702944,50.51463612008984],[-118.20823297053727,50.514483504414606],[-118.20813408774059,50.514317228594734],[-118.2080542820882,50.51414325615739],[-118.20798002485299,50.513967983785946],[-118.20788912329891,50.51379661976518],[-118.20778508291629,50.51362941079407],[-118.20767004233748,50.51346425660325],[-118.20753972154205,50.51330537548631],[-118.20738321891133,50.51315425074834],[-118.20719139322338,50.51302266771593],[-118.20696522074185,50.51291522359747],[-118.2067203698147,50.51282341254314],[-118.20646560342243,50.512747851383786],[-118.20619226330867,50.51269753920965],[-118.20593244332552,50.512630660160646],[-118.20566882016996,50.512555033834076],[-118.20541356308546,50.51247209557312],[-118.2051846761898,50.51237010568028],[-118.20500152559852,50.51223969838913],[-118.20485661723991,50.512083166449216],[-118.20472766674534,50.511916467909835],[-118.2045887932123,50.511755840749466],[-118.20441771250667,50.51161724279316],[-118.20420488669937,50.51150452183474],[-118.20397970636668,50.51140165992568],[-118.203742848944,50.51130475453542],[-118.20349966975644,50.51121361330477],[-118.20325074861029,50.511124896333754],[-118.20299978440568,50.51103773421083],[-118.20275067139856,50.51095013236395],[-118.20250185086661,50.510860851090555],[-118.20225906268476,50.51076748350061],[-118.20202230998285,50.51067001177213],[-118.2017857505916,50.510571432196116],[-118.20155114015094,50.51047185038065],[-118.20131847556208,50.51037128419804],[-118.20108425490248,50.51026946885006],[-118.20085373262603,50.51016679262246],[-118.2006234068147,50.510062990713436],[-118.20039327438244,50.50995808098379],[-118.20016295069722,50.50985427809388],[-118.19999992324477,50.50978177447747],[-118.19993077786697,50.50975091381509],[-118.19969860610117,50.509647549038206],[-118.19946847794087,50.50954263734019],[-118.19923854629853,50.50943659996329],[-118.19901435712764,50.50932814643883],[-118.1987924054908,50.50921702977817],[-118.19857629561513,50.50910292549901],[-118.19836816468352,50.508983742496326],[-118.19817219865037,50.50885580755789],[-118.19799209633888,50.50871825153426],[-118.19782016689344,50.50857450068743],[-118.19765222901175,50.508428201499605],[-118.19748224966776,50.50828344842061],[-118.19730614065739,50.50814335207396],[-118.19712633397071,50.50800412460585],[-118.19694866869449,50.507862787849696],[-118.19677090678138,50.50772201337844],[-118.19659314752977,50.507581229668496],[-118.196409548793,50.50744343270263],[-118.1962236184611,50.507308851697374],[-118.19602980610156,50.50717880375703],[-118.1958295739187,50.50705508231987],[-118.19561104984392,50.50694475977551],[-118.19537423381668,50.50684783602141],[-118.19512544897428,50.506758546714885],[-118.194876180913,50.506672043014106],[-118.19463109828077,50.50658187454325],[-118.19438192837009,50.506494816052665],[-118.19412867425727,50.50641084965578],[-118.19388777749568,50.50631702426264],[-118.19367529483203,50.50620260356329],[-118.19348120276405,50.5060742298472],[-118.19329723316844,50.5059386510618],[-118.19311764168168,50.505798300477835],[-118.19294194400723,50.50565596428158],[-118.19276235475203,50.505515613074756],[-118.19258043218514,50.50537848670195],[-118.19240065111295,50.505239251115654],[-118.19221882701011,50.50510157044297],[-118.19202707982778,50.504969959941185],[-118.19182316982031,50.50484709996525],[-118.19160748509763,50.50473075794864],[-118.19138985670405,50.50461539918981],[-118.19118011102873,50.504495515849925],[-118.19098671346153,50.50436322616212],[-118.1907953596268,50.50422938984249],[-118.19058104613316,50.50411539295626],[-118.19033511178826,50.50403024232314],[-118.19007039892206,50.50396128463707],[-118.18980462006091,50.503898461224125],[-118.1895177293214,50.50385504674024],[-118.18924465614275,50.50380357609],[-118.18902714477025,50.50370799872414],[-118.18887219929246,50.503558639720495],[-118.18876065520432,50.5033841039389],[-118.18868620025357,50.5032104862772],[-118.18866586485964,50.50303164870432],[-118.18865857148147,50.50284921179567],[-118.18862217628853,50.502670930995414],[-118.18857497635163,50.5024935869441],[-118.18852232614627,50.5023169880613],[-118.18846792419053,50.50214026544022],[-118.18841527481683,50.50196366642998],[-118.18836632428506,50.501786198459875],[-118.1883303178167,50.50160569375993],[-118.18829440947931,50.50142462641796],[-118.1882490621059,50.50124684304393],[-118.18817957703722,50.501075274464256],[-118.188065907831,50.50091300728536],[-118.18790250503275,50.50076135809598],[-118.18770942353075,50.50062739218578],[-118.1874905621674,50.50051928530478],[-118.18723297578249,50.500440082788316],[-118.18697043069578,50.5003689996778],[-118.18671206941605,50.50029426093879],[-118.18645147070131,50.500222192972835],[-118.18618727681613,50.500160600575846],[-118.18591657040092,50.50011605749904],[-118.18563692143269,50.50010253019068],[-118.18535173444518,50.500110640812096],[-118.18507054201395,50.50012637302793],[-118.18478857097837,50.50014657844702],[-118.18450903640384,50.50017316551247],[-118.18423184028524,50.50020669682981],[-118.18396000184381,50.50025020605533],[-118.18369283873878,50.500307613476295],[-118.18342966935697,50.500372642633934],[-118.18316328721191,50.50043574481562],[-118.18289621990175,50.5004925877216],[-118.18262749619086,50.50054875255837],[-118.18235614265637,50.50059964164661],[-118.18208166935848,50.50063788009129],[-118.18179278336109,50.50065702020567],[-118.18152402810396,50.50062164393925],[-118.18128046153795,50.50052307802125],[-118.1810909048755,50.50038934814914],[-118.18100188493122,50.50021808308506],[-118.1809113079115,50.50004557787936],[-118.18085542322575,50.49999982039196],[-118.18073927321507,50.499902906390304],[-118.18053531573858,50.49977041756825],[-118.18030508979254,50.4996665722299],[-118.18005316876007,50.49959566187796],[-118.17978655429691,50.499537841708005],[-118.17951099051905,50.49949067907736],[-118.1792301725639,50.499453323186145],[-118.1789496502196,50.4994244577223],[-118.17866942332711,50.49940408268896],[-118.178388420367,50.49939835078261],[-118.17810411199918,50.499401415282],[-118.17781756483056,50.4994071502631],[-118.17753500684003,50.49941034607954],[-118.17725410196117,50.499404048722276],[-118.1769775744134,50.49938280089206],[-118.17670649138879,50.49934047673221],[-118.17643881194178,50.49927861336866],[-118.1761790147597,50.49920204735965],[-118.17592787836918,50.49911649272076],[-118.17568647513622,50.49902597573161],[-118.17544818595177,50.49892776846739],[-118.17521797446476,50.49882392141109],[-118.17499233827606,50.49871417790481],[-118.17477293142304,50.49859922444592],[-118.17456306343922,50.498480425089575],[-118.17438288010864,50.49834394529039],[-118.17422109013017,50.49819351563407],[-118.17404918011852,50.49805027981215],[-118.17384525235686,50.497927948386895],[-118.17362536683022,50.49781577866178],[-118.17339750062027,50.49770870291108],[-118.17317158348276,50.49760062543666],[-118.17295199219194,50.49748678445418],[-118.17274670701909,50.497362094548606],[-118.17258599796462,50.49721568859097],[-118.17246577435685,50.49705068545315],[-118.17245000432746,50.497029230119644],[-118.17234749960659,50.496884680923074],[-118.17219769246317,50.49673679436924],[-118.17194433742164,50.496633552654075],[-118.17169273508179,50.496540613213966],[-118.17166810723648,50.49649875171077],[-118.17149992165866,50.496456343271426],[-118.17134368242314,50.49619274103774],[-118.17075539335993,50.49568104100341],[-118.16992186790225,50.4952536823216],[-118.16942861890921,50.49510238703505],[-118.16896622590185,50.4949572235666],[-118.16832086416142,50.49475278667409],[-118.16581821069153,50.49408349880511],[-118.16525180890483,50.4936806621671],[-118.16466818902508,50.49332576224047],[-118.16384595683948,50.49290535985029],[-118.16324443730383,50.492754844781075],[-118.16232604571354,50.49270278219888],[-118.16136793587263,50.49276655844527],[-118.16082488807942,50.4928399553949],[-118.16013090566962,50.492853494827855],[-118.15960801642339,50.49281136222541],[-118.1591456817672,50.49264581738854],[-118.15855430724152,50.49246774399538],[-118.1579965995287,50.492350805344685],[-118.15743773609807,50.492179549764444],[-118.15676102347791,50.49202309772779],[-118.15620331673973,50.49194683022365],[-118.15556441696761,50.492000415189885],[-118.15525698704869,50.49202437923055],[-118.15455346254022,50.49209258684462],[-118.15405304248776,50.4921452431048],[-118.15367278279984,50.492291731353156],[-118.15321902267938,50.49251380727246],[-118.15305188377681,50.4926584669162],[-118.15281068872086,50.49279052427331],[-118.15255424940145,50.4928067974813],[-118.1517491890251,50.492623700113214],[-118.15135082253818,50.4924575775511],[-118.15083690808012,50.492394559732816],[-118.15013108192574,50.49233375301925],[-118.1491813674004,50.492308738633774],[-118.14865905196687,50.49233439622545],[-118.14809525791443,50.492414730628035],[-118.14748875503123,50.49245530937489],[-118.14677289774903,50.49242145059062],[-118.14619447035905,50.49235214109566],[-118.14565695578462,50.49220097972102],[-118.14516437358978,50.492117417941316],[-118.14461796942385,50.49204755267238],[-118.14435987653314,50.492063128983666],[-118.14436152080368,50.4890923524258],[-118.14435990237162,50.48902047487139],[-118.14435847258619,50.48895766013934],[-118.14437134854954,50.48889416163159],[-118.14437011051812,50.48884039186099],[-118.14435447337958,50.488777698325485],[-118.1443534255723,50.48873298244876],[-118.1443649303662,50.48868746735609],[-118.14439210538525,50.48863346407645],[-118.1445031939795,50.4885153471931],[-118.1445717177989,50.488478401042855],[-118.1446561018955,50.48844202053045],[-118.14473883270458,50.488404953024734],[-118.14483723500831,50.488359388277296],[-118.14491977520419,50.48831326672752],[-118.14500425706527,50.48827632338211],[-118.14511530327795,50.48823957556102],[-118.14522819916334,50.48820238942476],[-118.14535374090956,50.48817401138486],[-118.14543879340303,50.48816422942222],[-118.1455358238458,50.48813664749997],[-118.14563489291014,50.48811769011877],[-118.14573221039133,50.48809860829773],[-118.14583127928961,50.48807965074054],[-118.14591595047833,50.48805176059807],[-118.14598399304518,50.4879972683033],[-118.1460540758214,50.48795139165453],[-118.14615120220827,50.48792325555462],[-118.14626466819084,50.487913230074376],[-118.14636188818922,50.487894701329964],[-118.1464317798076,50.487839770528815],[-118.14644474481526,50.48778588816496],[-118.14652766358455,50.487757873206164],[-118.1465986986719,50.487757265746],[-118.14666992441897,50.48776571214911],[-118.14672605270391,50.48780980875446],[-118.14675427609191,50.48780051181719],[-118.14683894618614,50.487772620961586],[-118.14692157564518,50.487736114362924],[-118.14697745006713,50.48769035865377],[-118.14703284614113,50.48762704872904],[-118.14706020806706,50.48758209863618],[-118.14709993298247,50.48752728617039],[-118.1471411217609,50.4874640977387],[-118.14718249962624,50.487409972128084],[-118.14720995959595,50.48736445942259],[-118.14723732274683,50.48731950034188],[-118.14734789072095,50.487255025942304],[-118.14744453485068,50.487209343424496],[-118.14754321940762,50.487172276492196],[-118.14765407153872,50.48712646323939],[-118.14766808749518,50.487117287692755],[-118.14773835806508,50.487080463846176],[-118.14779413253011,50.48703527025373],[-118.14789087405246,50.48698902477061],[-118.14800376452067,50.486951835756244],[-118.14810059984248,50.48691519763678],[-118.1481989012874,50.486860022276275],[-118.14828114601242,50.486805406792165],[-118.14835074586323,50.48674197442826],[-118.14839027746861,50.48667810752655],[-118.14844566875666,50.486614805747784],[-118.14851507705525,50.48654231934694],[-118.14856852551941,50.48646983926902],[-118.14859655664667,50.48645148792833],[-118.1486521399811,50.486397231019986],[-118.14873409947725,50.48632394476115],[-118.1488033142212,50.486242413161825],[-118.14885870595512,50.4861791022135],[-118.14892655103569,50.48611555406741],[-118.1490112166248,50.48608766149807],[-118.14910833715514,50.486059522748036],[-118.14917812584983,50.48600514373149],[-118.14927623281707,50.48594091343112],[-118.14938726980176,50.485904161233755],[-118.14947212592536,50.48588532223083],[-118.14956905449728,50.485848129145744],[-118.14966744634594,50.485802559976065],[-118.14969276889099,50.48573881442522],[-118.14971955322684,50.48566670179263],[-118.14971811764575,50.485603877940406],[-118.14974528439977,50.48554987314607],[-118.14981555083297,50.48551304791423],[-118.14994089090168,50.48547561066735],[-118.15006632537118,50.48544778084402],[-118.15019360781716,50.48541952152112],[-118.15031913869628,50.48539113777221],[-118.15038978720982,50.4853724200282],[-118.1504588756703,50.48536263189076],[-118.15052971550726,50.485352967986096],[-118.15060055531389,50.485343304036164],[-118.1506978647103,50.48532421779963],[-118.15081084190611,50.48529664235369],[-118.15092197432877,50.48525932602454],[-118.15104906417736,50.48522201178526],[-118.15116009950845,50.48518524885347],[-118.15128543755081,50.4851478100743],[-118.15139812901451,50.48510156359553],[-118.15152355998539,50.48507374104342],[-118.15165084046339,50.48504548003764],[-118.15176235491654,50.485026270717626],[-118.15185966313766,50.48500718345576],[-118.15194470825033,50.4849973964737],[-118.1520433842717,50.48496032544243],[-118.15214040378602,50.48493273764237],[-118.15225347737615,50.48490459814593],[-118.1523358118835,50.48484941695806],[-118.15241941571969,50.4847768146579],[-118.1524730491929,50.484713377546655],[-118.15254292844249,50.484658442685195],[-118.15263936990362,50.48460370156783],[-118.15273737220595,50.48454002174043],[-118.15284830928374,50.48449364951459],[-118.15296089926505,50.48444796398386],[-118.15308642570001,50.484419577073574],[-118.15319949741405,50.48439143659638],[-118.15331120157134,50.48438127964093],[-118.15341083512216,50.4843894770421],[-118.15350852531179,50.484388496190455],[-118.15362246309263,50.48439600844851],[-118.15383380080377,50.484394048089555],[-118.15391728505597,50.48439318929984],[-118.15401653449973,50.48438327829022],[-118.15411403252153,50.484373242972175],[-118.15418467786677,50.484354522790916],[-118.1542271034785,50.484345101447204],[-118.15426933690034,50.484326626153255],[-118.15430856760224,50.48425426559283],[-118.15432133154977,50.48419131920673],[-118.15432027241185,50.48414661210129],[-118.1543193115048,50.48410134242106],[-118.15430385592106,50.4840476949275],[-118.1542883988149,50.48399405635802],[-118.15430145156334,50.483939610249465],[-118.15438543649677,50.48388510533607],[-118.15443935501737,50.483830167501985],[-118.15448072079467,50.48377603893056],[-118.15449348436674,50.48371309248752],[-118.15449204064139,50.483650277475476],[-118.15444798143,50.48358782104023],[-118.15441841686997,50.483533742385696],[-118.1543885619618,50.483471172349375],[-118.15437291432254,50.4834084708799],[-118.1543716629633,50.483354709787214],[-118.15437031764542,50.48329133217287],[-118.15436849128945,50.48321040030461],[-118.15435245784172,50.4831295998479],[-118.154364837038,50.483048545473615],[-118.15437759900679,50.482985607917094],[-118.15434755389522,50.48291397494826],[-118.15430349404367,50.48285152732869],[-118.15430205216954,50.4827887033177],[-118.15437055926732,50.482751750862235],[-118.15446913016042,50.4827152401467],[-118.15453763700984,50.48267828758492],[-118.15459301632178,50.482614973498826],[-118.15463447902215,50.48256028221537],[-118.15467584340114,50.48250615348645],[-118.15468860634178,50.48244320692229],[-118.15471391990752,50.48237945996278],[-118.15474088648226,50.48231639977634],[-118.15476804680408,50.48226238460487],[-118.15482342372323,50.482199079301274],[-118.15486246096388,50.48211765546795],[-118.15486111499351,50.48205427776284],[-118.15486063221367,50.48203673242036],[-118.15484459986072,50.481955922987815],[-118.15484344619723,50.48190159922982],[-118.15484238659572,50.481856892003066],[-118.1548414252136,50.48181162219942],[-118.1548403671752,50.48176690603791],[-118.1548525512842,50.48167680644025],[-118.1549077366364,50.48160443815587],[-118.1549609766832,50.48152290059679],[-118.15501596936355,50.48144147828003],[-118.15507115260688,50.48136911882322],[-118.15512458597047,50.481296626198635],[-118.15516537158665,50.48121533530194],[-118.15516402521769,50.481151957529846],[-118.15514856963989,50.481098309958696],[-118.15509049789762,50.4810450390706],[-118.15503223554036,50.48098270524895],[-118.15500238146892,50.480920135180696],[-118.1550010353377,50.48085675738352],[-118.15499920794899,50.48077582528257],[-118.15499757131072,50.48070395607628],[-118.15500994868266,50.48062290138743],[-118.15502251675838,50.48055090959364],[-118.15502049703707,50.480460923486774],[-118.15504707741385,50.480379755123536],[-118.15505847263847,50.48033479210077],[-118.15508543750975,50.48027173167156],[-118.15512670513341,50.480207986067704],[-118.15516787598975,50.480144794089476],[-118.15518005900677,50.4800546942755],[-118.15517648011894,50.47997363789384],[-118.15517445855757,50.479883660655354],[-118.15517301556564,50.47982083642548],[-118.15517195568644,50.47977612908703],[-118.15517032036816,50.47970425086491],[-118.1551686834962,50.47963238156607],[-118.1551670481883,50.47956050333111],[-118.15516570186638,50.479497125429546],[-118.15514986063849,50.47942537870468],[-118.15513402101983,50.479353623041405],[-118.1551043602033,50.47930010686335],[-118.15504590777361,50.479228718925306],[-118.15503045143612,50.479175080139996],[-118.15500040782533,50.47910344701085],[-118.15497065325098,50.479040314212405],[-118.15494060826596,50.478968689984896],[-118.15489811189792,50.47889730358131],[-118.15486806712329,50.47882567932148],[-118.15485222816322,50.47875392356498],[-118.15485059183237,50.478682054177106],[-118.15484720590894,50.4786100516443],[-118.15484576185447,50.47854723624122],[-118.15481766236351,50.478484781214135],[-118.15477370439686,50.478421770862994],[-118.154715828778,50.478377553602435],[-118.15464394302478,50.47834250390751],[-118.15455989336591,50.47831620124863],[-118.15445959824753,50.47828140539037],[-118.15435940149935,50.47824604686353],[-118.15428926737215,50.478211121149954],[-118.15421728673806,50.47816646352242],[-118.15414501590772,50.47811331441864],[-118.15411535863839,50.4780597889647],[-118.15411410773433,50.47800602751411],[-118.15414136287062,50.47795145856181],[-118.15423973288348,50.477905884897886],[-118.15430842477184,50.47787798626409],[-118.15437867553463,50.477841157797094],[-118.154446884665,50.47779571363893],[-118.15447385043262,50.477732644230784],[-118.1544867089587,50.47766914367166],[-118.15447106163604,50.47760645069667],[-118.15446981187968,50.47755268029031],[-118.15446856056738,50.477498918810134],[-118.15446721528797,50.47743554073875],[-118.154466157723,50.47739082433208],[-118.15437968412598,50.47733779783351],[-118.15433563123344,50.47727534086699],[-118.15430607094376,50.47722126176114],[-118.15427835575333,50.47717692345289],[-118.1542629025899,50.47712327549497],[-118.15424754611867,50.47706907388412],[-118.15423228360343,50.47702448886025],[-118.15421663841674,50.47696178686968],[-118.1541730670153,50.47691688419597],[-118.15412901326067,50.476854436044725],[-118.15412795604442,50.47680971960284],[-118.15412680337519,50.47675539549207],[-118.15412555249365,50.47670163395512],[-118.1541099075672,50.476638931924484],[-118.15409426112525,50.47657623881664],[-118.15407909714345,50.4765310911672],[-118.15407871294204,50.476512983124316],[-118.1540488647087,50.476450403524616],[-118.15403341050794,50.476396764416435],[-118.15398955109526,50.47634336126359],[-118.15395999183082,50.47628928200337],[-118.15385931756889,50.476236377466385],[-118.15374696093794,50.47621992664691],[-118.15363314199995,50.47621185186341],[-118.15353527752362,50.4762037788088],[-118.15343547005293,50.47618652741014],[-118.15333731549262,50.47616996273136],[-118.15326572292811,50.476143412428634],[-118.15317944660954,50.47609943001163],[-118.15309521008062,50.47606407214333],[-118.15298071778926,50.47602939718103],[-118.15285396683824,50.47600401373844],[-118.15274014860462,50.47599593803756],[-118.1526424765665,50.47599691822367],[-118.15254266989467,50.47597966601821],[-118.15244451611201,50.47596310054614],[-118.15231630302404,50.475946092624866],[-118.15220385263443,50.47592003256074],[-118.15208936295278,50.47588534774344],[-118.15200531935939,50.475859043071445],[-118.15193362983132,50.47583305447576],[-118.15184783538646,50.475806625427694],[-118.15176312049857,50.475753712114816],[-118.15169104804083,50.47570961529032],[-118.15163308555844,50.4756557796641],[-118.15158922970647,50.47560237551443],[-118.15154537239889,50.47554898027362],[-118.15150326778112,50.4754957003443],[-118.15143129423534,50.475451040761286],[-118.15134501946892,50.475407065811254],[-118.15126068898127,50.47537226016723],[-118.151160692709,50.47534595266699],[-118.15107422691449,50.47529292346075],[-118.15100371696272,50.47523988746318],[-118.1509315528557,50.47518617350057],[-118.15087368515117,50.47514195406117],[-118.15080142466205,50.47508879365327],[-118.15075737735775,50.47502634402359],[-118.15072938241138,50.47496333404481],[-118.15069953984758,50.47490075342505],[-118.15068389874607,50.47483805970212],[-118.15065443914062,50.47479358715403],[-118.15063908779615,50.47473938488824],[-118.15063784112543,50.47468562317814],[-118.15063640461526,50.474622798486095],[-118.15063515795094,50.47456903676811],[-118.15063496654952,50.47455998271886],[-118.15063225855732,50.47451458819494],[-118.15061875302175,50.47447011787997],[-118.15058890937794,50.4744075461221],[-118.15055935545664,50.47435346582745],[-118.15051550214089,50.4743000611678],[-118.15047164736932,50.474246665417],[-118.15041387957606,50.474201883110815],[-118.15032955205865,50.47416707670785],[-118.15021535627875,50.474140890292034],[-118.15011526508484,50.474115144386175],[-118.1500028205286,50.47408908203418],[-118.14988833718365,50.474054394869334],[-118.14978980610356,50.47401971889834],[-118.14970344272523,50.47396612596252],[-118.14961873380658,50.47391321089348],[-118.14951806993463,50.473860302265685],[-118.1494174078585,50.47380738461344],[-118.14933298741857,50.47376296973101],[-118.14926072939257,50.47370981715974],[-118.14921687823902,50.473656411944695],[-118.14915882307494,50.47360313746569],[-118.1490881269275,50.47354104607786],[-118.14901577674499,50.47347827669346],[-118.14895772204744,50.47342500209756],[-118.14888527551908,50.47336278626444],[-118.1488003761043,50.47330082539503],[-118.14871391856157,50.473247785287256],[-118.14861354650088,50.47320336728893],[-118.14852902970482,50.47315951433702],[-118.14844314561824,50.47313363621642],[-118.14824673228411,50.47316207320029],[-118.14814925717855,50.473172103507025],[-118.14804974350228,50.47317350898671],[-118.14799274294697,50.47316494164008],[-118.14794975397375,50.473147198523634],[-118.14783731307983,50.47312113394784],[-118.1477228322947,50.473086453438675],[-118.14763831814325,50.47304259087284],[-118.14758007485037,50.47298026145591],[-118.1475647278151,50.4729260586436],[-118.14757768874574,50.47287216622569],[-118.14757625499314,50.472809350282986],[-118.14754622745203,50.4727377145743],[-118.14753040071011,50.47266596616387],[-118.14750104235875,50.472620939015314],[-118.14748559881187,50.47256728981267],[-118.14747034449937,50.47252270361168],[-118.1474549977515,50.4724685007536],[-118.14745375649667,50.47241472992714],[-118.14745251368467,50.472360968026784],[-118.14745117841126,50.472297589468255],[-118.14744974641313,50.472234764549576],[-118.14743411075005,50.47217207016235],[-118.14736204980217,50.47212796140344],[-118.14729008572526,50.47208329895066],[-118.14723184415132,50.47202096927709],[-118.14716134382694,50.47196793062549],[-118.14707575020086,50.47195055184902],[-118.14698967702911,50.471915627410326],[-118.14690526251708,50.47187121057839],[-118.14683320256646,50.47182710145989],[-118.1467753431846,50.471782879701315],[-118.14674531759768,50.471711243685164],[-118.14674369443208,50.47163937355293],[-118.14672834885728,50.4715851705352],[-118.14671290658333,50.47153152115641],[-118.14668326089344,50.4714780022123],[-118.14664078464004,50.47140661198869],[-118.1465967466867,50.47134416042458],[-118.14656719955514,50.471290078862715],[-118.14655175757373,50.47123642944189],[-118.14653593293924,50.471164680756495],[-118.1465204910379,50.47111103132298],[-118.1465051459108,50.471056828239035],[-118.14650495535277,50.47104777414333],[-118.14647511967547,50.470985201015296],[-118.14647368907768,50.47092237598206],[-118.1464722569236,50.47085955987369],[-118.14648502801236,50.47079661334696],[-118.14652473885188,50.4707417999508],[-118.14658011319766,50.47067849785647],[-118.14659288408478,50.47061555130329],[-118.14660565337601,50.4705526136735],[-118.14660450992092,50.47049828906481],[-118.14657486659847,50.47044476109368],[-118.14648841558213,50.47039172799562],[-118.14641683621282,50.470365173088084],[-118.14631850793194,50.47033953905306],[-118.14624673824228,50.47030392992983],[-118.14617448938894,50.47025077512294],[-118.14614484673908,50.47019724702065],[-118.14613220557483,50.470188438702486],[-118.14607501868544,50.470170816233676],[-118.14598914013284,50.470144945049206],[-118.14590492035089,50.470109581466716],[-118.14581933073289,50.47009220168189],[-118.14571944298228,50.47007549686312],[-118.14562140285129,50.470058362665064],[-118.14554972621335,50.47003236976206],[-118.14546375618909,50.46999688148326],[-118.14542204460257,50.469961707102264],[-118.14537905969105,50.4699439629205],[-118.14536361802207,50.46989032217487],[-118.14536266640239,50.46984505162019],[-118.14533321529946,50.469800577386025],[-118.14528965964979,50.469755670829805],[-118.14520359204597,50.46972074491186],[-118.14510488531535,50.469677001555205],[-118.14501834555635,50.469614350573806],[-118.14496030054748,50.46956107363359],[-118.14491664874632,50.46951672056215],[-118.1448745560208,50.46946344665221],[-118.14483100115284,50.469418539897326],[-118.14480155085211,50.469374065498684],[-118.14478639858581,50.46932891617876],[-118.14475675662709,50.46927539657451],[-118.14472730649292,50.469230922148405],[-118.14462665879827,50.46917800878027],[-118.14452824072475,50.469142765357574],[-118.14445618745339,50.46909865454769],[-118.14438423108209,50.46905399004439],[-118.1443135470682,50.46899190419747],[-118.14425531515467,50.46892956379473],[-118.14419727192718,50.46887628641044],[-118.14413942047142,50.4688320541873],[-118.14409567687908,50.46877809298378],[-118.14405320569877,50.468706710461646],[-118.14403757753658,50.46864400639301],[-118.14402194785715,50.46858131124691],[-118.1440189600635,50.468527415742464],[-118.14403183067614,50.46846391567199],[-118.14401601101953,50.46839216638143],[-118.14398656219156,50.46834769171023],[-118.14395692182568,50.46829417182756],[-118.14395578161582,50.46823984703986],[-118.14395473468034,50.46819513002527],[-118.14395349615235,50.46814136780517],[-118.14395254598392,50.46809609714048],[-118.14395149905499,50.4680513801178],[-118.14395130902193,50.468042325984136],[-118.14393567967066,50.46797963077918],[-118.14393472952351,50.46793436010535],[-118.14390490102816,50.467871777115924],[-118.14387507105488,50.46780920304345],[-118.14384524272496,50.46774662002835],[-118.14381551124106,50.4676834833557],[-118.14377323152931,50.46762115476862],[-118.14368660079586,50.4675590562347],[-118.14361416938812,50.467496845441175],[-118.14359892217433,50.46745224949899],[-118.14361198303351,50.46739780353439],[-118.14361055497392,50.4673349871152],[-118.14362332905635,50.46727204064314],[-118.14365068203826,50.467227090260025],[-118.14366374276986,50.46717264427413],[-118.14367476605246,50.4671095733966],[-118.1436735278877,50.467055811101254],[-118.14364379709905,50.46699267432859],[-118.1436161002242,50.46694832386926],[-118.14360066167518,50.46689468267971],[-118.14368297390799,50.46683950667829],[-118.14376712983572,50.46679406279082],[-118.14384944168155,50.46673888665916],[-118.14387660410281,50.46668488204146],[-118.14388956764488,50.46663098963804],[-118.1438739388681,50.46656829431495],[-118.143829721022,50.46649677819868],[-118.14375757943104,50.46644305899357],[-118.14370110066452,50.46638085141887],[-118.14364287296542,50.46631851049348],[-118.14358464386646,50.466256178462544],[-118.14351240618787,50.46620301272765],[-118.14345379756764,50.466122572307256],[-118.14342378101757,50.46605093489139],[-118.14342197342611,50.465970010049425],[-118.14342054723684,50.465907184586996],[-118.14341921781575,50.46584380547407],[-118.1433891999452,50.46577217695386],[-118.14333272408655,50.46570996021034],[-118.14326067590254,50.465665857367036],[-118.14318929579656,50.465648354385436],[-118.14309145609235,50.46564027202177],[-118.14302045576467,50.465640877255645],[-118.1429349687802,50.46563310295927],[-118.14282273929682,50.46561608722638],[-118.14272248144738,50.46558128022234],[-118.14265034263734,50.465527560236936],[-118.14257985783857,50.465474518250474],[-118.14256423128136,50.46541182265335],[-118.14256299604676,50.4653580513028],[-118.1425881274075,50.46528525159456],[-118.14260090077482,50.46522231401027],[-118.1425992860023,50.46515043431068],[-118.14256945963736,50.46508785967663],[-118.14252562477692,50.46503445124986],[-118.14250961898553,50.46495364726933],[-118.14250781463781,50.464872713372856],[-118.14250705571789,50.464836496684875],[-118.1425063881947,50.46480989674312],[-118.14254784918403,50.464755208768764],[-118.14261742309188,50.46469177826916],[-118.14265684516636,50.4646284742435],[-118.142655230326,50.46455659449189],[-118.14265428153506,50.46451132361517],[-118.14265285489957,50.46444850695924],[-118.14265142982885,50.46438568136863],[-118.14264962368873,50.464304756347204],[-118.14264943393259,50.464295702169295],[-118.14264819862706,50.464241930745395],[-118.14266106994609,50.46417843049695],[-118.14265964331165,50.464115613815196],[-118.1426296293565,50.464043976006586],[-118.14257159433,50.463990697450356],[-118.14248535166045,50.46394670606439],[-118.1424151560038,50.46390216440618],[-118.1423711312181,50.46383971058631],[-118.14238371633911,50.463767709800194],[-118.14242313793432,50.463704405785094],[-118.14246412180545,50.46363216304178],[-118.14250491426053,50.463550875020125],[-118.14253179524458,50.46347819956753],[-118.14251598128033,50.46340644069075],[-118.14245775749393,50.46334410784393],[-118.14239934572744,50.463272711842244],[-118.14238372018313,50.46321001604874],[-118.14242489337471,50.46314682746722],[-118.14246635293524,50.463092139410556],[-118.1425057738246,50.46302883531306],[-118.14250415928201,50.462956955416956],[-118.14251674238393,50.46288496346678],[-118.14251550727506,50.46283119194747],[-118.14251493810613,50.46280402936303],[-118.14251436893788,50.462776866777645],[-118.14254153057232,50.46272286222167],[-118.14256831423651,50.46265074033266],[-118.1425940132948,50.462605102970755],[-118.14263537382541,50.46255097739128],[-118.14267654606361,50.46248778866485],[-118.14270313805292,50.462406621453],[-118.14272973150733,50.46232544529681],[-118.14275457281688,50.46224415365395],[-118.1427669671107,50.46216309848037],[-118.14279355874616,50.46208193121424],[-118.14283435076787,50.4620006339857],[-118.1428735803968,50.46192827546782],[-118.14287244165145,50.46187395024089],[-118.14278814297882,50.461839137580256],[-118.14267436226201,50.46183105142131],[-118.14251925769263,50.46180590666057],[-118.14240528741108,50.4617887660192],[-118.14227820305176,50.4617452616449],[-118.14216366407118,50.461700958131374],[-118.14206497626157,50.46165722056791],[-118.14197873854377,50.46161322866131],[-118.14186585231703,50.46156961182466],[-118.1417513141868,50.461525307876194],[-118.14165281826601,50.461490615218054],[-118.14158087679571,50.46144594847724],[-118.1415512438137,50.461392427495085],[-118.14153543213882,50.46132066829307],[-118.141548205852,50.46125773052081],[-118.14156098109048,50.46119478381241],[-118.14154545576777,50.461131525162465],[-118.14150162439967,50.461078124999496],[-118.14147199331396,50.46102459504197],[-118.1414709474453,50.4609798865342],[-118.1414698104118,50.46092556122898],[-118.1414685766036,50.46087178956754],[-118.14149554883281,50.46080873092094],[-118.14152058260582,50.460736484691594],[-118.14154765301852,50.46067286344446],[-118.14157462501842,50.46060980476311],[-118.1415874000367,50.460546858001116],[-118.14157177656355,50.46048416188159],[-118.1415667260132,50.46047250194555],[-118.15624158495162,50.45848319482529],[-118.15646339564738,50.45850176182419],[-118.1567451148868,50.45850196819753],[-118.1570291692215,50.45848878772474],[-118.15731361437547,50.4584733650836],[-118.15759591798158,50.4584600589871],[-118.15787841959232,50.45843545651158],[-118.15815965646544,50.45840794297867],[-118.15844089120864,50.45839059920718],[-118.1587167730208,50.458393785814074],[-118.15898837198205,50.45843169097009],[-118.15925354747692,50.45849627046406],[-118.1595150282993,50.45857187884487],[-118.15976882634726,50.45865090143963],[-118.16001066081232,50.458747725549664],[-118.16025561077466,50.45883685049582],[-118.16051865210072,50.458893364860735],[-118.16079200599,50.4589313897028],[-118.16107041659036,50.458960740935275],[-118.16135125990104,50.45898630419565],[-118.1616321035298,50.4590118667447],[-118.16191032212693,50.45904232320015],[-118.16218455204968,50.45908549635441],[-118.16245634935129,50.4591426265906],[-118.16264130874903,50.459179469891986],[-118.16272698222106,50.45919627434729],[-118.16299965876878,50.45922803466387],[-118.1632749637072,50.45921421780421],[-118.1635507575698,50.45916709373807],[-118.16382917698624,50.45912523585694],[-118.16410574689836,50.45909398627408],[-118.16438542819412,50.45906521665828],[-118.16466413646144,50.459042027675416],[-118.1649447890724,50.459028016243444],[-118.16522592677352,50.459021388361734],[-118.16550813479901,50.459018786289064],[-118.16579034279196,50.45901618349893],[-118.16607216182135,50.45900564206484],[-118.16635582917472,50.45898449087773],[-118.16663793882424,50.458972278065694],[-118.16691314499236,50.458989517251965],[-118.16718572696067,50.459031991431836],[-118.1674544183314,50.45908662885558],[-118.16772194515276,50.459147954332785],[-118.16798947114535,50.45920928809078],[-118.16825806809858,50.45926447722886],[-118.1685303605547,50.45930862696805],[-118.16880761291863,50.4593344770332],[-118.16908797486711,50.45934247493448],[-118.16936999025738,50.45934097932021],[-118.16965414490346,50.45933737441572],[-118.16993713307241,50.45934046644321],[-118.17021798289785,50.45935583679673],[-118.17049727778169,50.459380136659355],[-118.17077482350228,50.45941448231995],[-118.17104478573064,50.4594618507562],[-118.17131027685527,50.45952472248324],[-118.17157596308522,50.45958647729134],[-118.1718502055544,50.45962962653865],[-118.17213125218237,50.459643875766695],[-118.17240840391878,50.459619427137994],[-118.17268351131345,50.45957618292317],[-118.17295239060496,50.45951781566277],[-118.17322613658733,50.4594823840692],[-118.17350688565791,50.45946779732231],[-118.17378841501429,50.45945890626374],[-118.17407081958275,50.459455166141176],[-118.17435254328906,50.45945533675975],[-118.1746350475716,50.45946120305602],[-118.17491463420733,50.45947365137874],[-118.17519548655528,50.4594890091369],[-118.17547672763241,50.45950213361205],[-118.17575894018367,50.45950967594191],[-118.17604202775428,50.45951218979768],[-118.17632336332747,50.45951458798867],[-118.176605576098,50.45952212816612],[-118.17688429037652,50.4595395903579],[-118.17716874508496,50.459564798701564],[-118.17744532591131,50.45960470912079],[-118.17770353275125,50.45966874902359],[-118.1779380223055,50.459767262196486],[-118.1781506375695,50.459889657416085],[-118.1783497374097,50.46001844567555],[-118.17853892223503,50.46015330318001],[-118.17871050798203,50.46029765504869],[-118.17885019993649,50.460452180664426],[-118.17895605315269,50.460617872601226],[-118.1790429446551,50.460790702748106],[-118.17912264203589,50.46096414483521],[-118.17916917885915,50.46114485086102],[-118.1792328303215,50.46131885724029],[-118.17939197462441,50.46146345734763],[-118.17961646443473,50.46157877841837],[-118.17985903751763,50.461671647452185],[-118.18012377725758,50.4617389630907],[-118.18039881444047,50.46176745550796],[-118.18068045952498,50.46177833417965],[-118.18096618503874,50.46177594042652],[-118.18124684957925,50.46176188782768],[-118.18152556582633,50.461738656589475],[-118.18180389006595,50.46170748680617],[-118.18208153020304,50.46167005738702],[-118.18235479242179,50.46162722814547],[-118.18262707995422,50.46157980927305],[-118.18289518349613,50.46152587432818],[-118.18316231062492,50.46146735871077],[-118.18342642190336,50.461405799716175],[-118.1836909206092,50.46134200749293],[-118.1839553223102,50.46127876831848],[-118.18421797115539,50.461215413691384],[-118.18448402413453,50.46115285961085],[-118.18474667305752,50.46108949479251],[-118.18500961152681,50.46102445936218],[-118.18527118674918,50.4609570669698],[-118.18552984216275,50.46088607759495],[-118.18578567395325,50.460810937571104],[-118.18603926565577,50.46072828907787],[-118.1862837112,50.46063708357857],[-118.18651220233276,50.460535709977755],[-118.18668154380352,50.46038721537726],[-118.18688123903519,50.46026798594403],[-118.18713949532301,50.46018905491644],[-118.18741487752031,50.4601339337802],[-118.18769086016381,50.460116144848826],[-118.18797385930695,50.46012936134621],[-118.18825939976261,50.460168746933206],[-118.18852482281241,50.46023213112163],[-118.18875807244869,50.460327711384664],[-118.18896129248044,50.46046354941912],[-118.18910432720406,50.460619425753656],[-118.18917443151521,50.46078709970987],[-118.1891998076573,50.46096743383158],[-118.18921020973056,50.46115236008976],[-118.18923004434888,50.4613339931101],[-118.18923645983489,50.46152146717665],[-118.18924861278137,50.4617065169735],[-118.18931006405069,50.46187300965452],[-118.18948713132593,50.46200642882533],[-118.18975364853029,50.462094185991596],[-118.19002334970435,50.46213301661489],[-118.19030675000165,50.46214399451652],[-118.19059500355883,50.46213723440149],[-118.19087586124502,50.46212204115673],[-118.19115515643529,50.46209543682501],[-118.19143113830556,50.46205729778254],[-118.19170195987518,50.46200805411247],[-118.19196489367307,50.46194300228282],[-118.19222237519374,50.46186852484096],[-118.19248112105099,50.46179696565973],[-118.1927495041084,50.461741336927865],[-118.19302187910479,50.46169332994557],[-118.19329980138158,50.461654193534386],[-118.19357870458744,50.46162981571864],[-118.19385528780023,50.461629003417684],[-118.1941328651037,50.46166329058132],[-118.1944107390857,50.461706077472876],[-118.19468928630283,50.46173478166171],[-118.1949687067348,50.46175845725918],[-118.19524841736957,50.46178046214171],[-118.19552812827705,50.46180246631898],[-118.19580754801767,50.46182614873354],[-118.19608638829315,50.461853170470036],[-118.196366688105,50.46188199400618],[-118.19664601949522,50.46191639843195],[-118.19691087491563,50.461972949892846],[-118.19715882829273,50.462055418669244],[-118.19739725989011,50.46215191382148],[-118.19762675416817,50.46225906858221],[-118.19784438802124,50.462373304833655],[-118.19805191521128,50.462494728311476],[-118.19825088959273,50.46262459677864],[-118.19843654583163,50.462759735505394],[-118.19861228757749,50.46290095422444],[-118.19876508526029,50.46305185363685],[-118.19890612157414,50.46320926333941],[-118.19904919933748,50.46336512632872],[-118.1992098736959,50.46351150011627],[-118.1993937857551,50.463646513582205],[-118.19958528280492,50.46377867177706],[-118.19978446249378,50.463907412036434],[-118.19999939820593,50.46403727234143],[-118.20020109802674,50.464151499620414],[-118.20041874751874,50.46426573055738],[-118.2006405781846,50.46437629643277],[-118.20086454799747,50.46448475268815],[-118.20109425602412,50.464590783647786],[-118.20132619923008,50.464694151251685],[-118.20156232198522,50.464793862636704],[-118.20180087505582,50.46488978537659],[-118.20204380279031,50.464980926598784],[-118.2022911996294,50.46506674150954],[-118.20254141388122,50.46514653506318],[-118.20279784941471,50.46522111678026],[-118.20305681101557,50.465291356044084],[-118.20331810501519,50.46535836916465],[-118.20358153776846,50.46542327245326],[-118.20384526244351,50.46548649615534],[-118.20411064107465,50.46555040528909],[-118.20437417210427,50.46561475298312],[-118.20463722072338,50.465681886402145],[-118.20489618782992,50.46575212133564],[-118.20515253468757,50.46582725125715],[-118.20540868729381,50.4659035058399],[-118.20566717377082,50.46597652531391],[-118.20592876515398,50.46604186220419],[-118.20619589183981,50.46609571933903],[-118.20647049798978,50.466137103746284],[-118.20674645776614,50.466170682083046],[-118.20702640415817,50.46620171121342],[-118.20730431062246,50.46623428628639],[-118.20758017563516,50.46626841624767],[-118.20785788786436,50.4663021151956],[-118.20813394720093,50.46633512744502],[-118.20841185528595,50.466367699740296],[-118.2086883983483,50.46639792423864],[-118.20896698359324,50.466426592436726],[-118.20924624708917,50.466451348295536],[-118.20952667008545,50.4664694143668],[-118.20980757770516,50.46648468442318],[-118.2100883895671,50.4665005074717],[-118.21036852382512,50.466520241455314],[-118.21064798055119,50.466543886379085],[-118.21092695478694,50.46657031697867],[-118.21120417850429,50.46659662355458],[-118.21148315339165,50.46662305275499],[-118.21118215079899,50.466549873533054],[-118.21092316933526,50.46647965333108],[-118.2106642861653,50.46640886988466],[-118.21040831370006,50.46633152006827],[-118.21016079700418,50.46624628601375],[-118.20991755667623,50.46615683273548],[-118.20967480171505,50.46606458360739],[-118.20943418392868,50.46597023354594],[-118.2091956089276,50.46587432733622],[-118.20895888325546,50.46577798132685],[-118.20872069722738,50.46567984140197],[-118.20848834506641,50.46557872204351],[-118.20826036543787,50.46547282988109],[-118.20803851071976,50.46536227938129],[-118.20781344653604,50.46524980270454],[-118.20759450578143,50.46513267665437],[-118.20739296712884,50.46500717622289],[-118.20721835995896,50.46486944416018],[-118.20707632347036,50.46471761808136],[-118.20695752161159,50.46455443909018],[-118.20685019266885,50.46438641861505],[-118.20674120976848,50.464217720906795],[-118.20661696471633,50.4640552876061],[-118.20647920835297,50.46389924206235],[-118.20633211721548,50.46374593725441],[-118.20617938942593,50.463594485754946],[-118.20602296616508,50.4634439124731],[-118.20584593302982,50.46329978687395],[-118.20567055417838,50.46315634700873],[-118.2055397090461,50.46300135639686],[-118.20546302085647,50.46283041321828],[-118.20541997593858,50.4626494027999],[-118.20540552114917,50.462467026881114],[-118.20541869153686,50.462288849283176],[-118.20547416708547,50.46211196352862],[-118.20556105633766,50.461937861755416],[-118.20566769544511,50.461772492515244],[-118.2058268617673,50.46162099581047],[-118.2059739661207,50.461467518676365],[-118.20605842503178,50.46129719568312],[-118.20611418790669,50.4611186304202],[-118.20613659118197,50.46093828307618],[-118.20613254168968,50.46075720098536],[-118.20610427336264,50.46057272116793],[-118.20603517162372,50.460398913537865],[-118.20589762930517,50.46025192960786],[-118.20567881529693,50.460134236420295],[-118.20545669326287,50.46001518855001],[-118.2052594602227,50.45988545599523],[-118.20506242030635,50.45975461566246],[-118.20487879823744,50.4596179319652],[-118.2047233694614,50.45947194488306],[-118.20462704882587,50.45930186644338],[-118.20457117467257,50.45912334885893],[-118.20453290381077,50.45894550285777],[-118.20450921808006,50.45876529522201],[-118.20448358847455,50.45858608044973],[-118.20443812282876,50.458408856918496],[-118.20437651592356,50.45823275512899],[-118.20430606102279,50.45805658981051],[-118.20422063346285,50.457885027565425],[-118.20411284745285,50.45771978943703],[-118.2039786184784,50.45756399536656],[-118.20381648892176,50.45741583392],[-118.20364288983839,50.457272513245634],[-118.20346725182456,50.45713073887088],[-118.2032741171695,50.45699790913121],[-118.20307524915043,50.4568674950582],[-118.20292741971708,50.45671864082527],[-118.2028176956632,50.45655440301507],[-118.20272498529961,50.45638401551773],[-118.20263801162557,50.45621120297262],[-118.20254714907502,50.45604038500911],[-118.2024343159645,50.45587365815405],[-118.20231409336624,50.4557086789017],[-118.20221565226198,50.45554070678911],[-118.20216621306311,50.45536603003868],[-118.2021385546973,50.45518836054601],[-118.20212003403732,50.455009084595844],[-118.2021104604834,50.45482930066926],[-118.20210642768683,50.45464821706028],[-118.20210589562242,50.45446738034523],[-118.20211071061064,50.45428636028695],[-118.20211533352176,50.454106447597134],[-118.2021218027438,50.45392610462939],[-118.20214081377149,50.45374495584432],[-118.20217888607776,50.45356627255657],[-118.20224438072596,50.45339292261893],[-118.2023458584549,50.453226621785475],[-118.20247145088884,50.45306429090737],[-118.20259704396828,50.452901950923746],[-118.20270221188191,50.45273478917082],[-118.20278851463395,50.45256402764228],[-118.20286810521449,50.452391102137966],[-118.2029441946554,50.452217929630564],[-118.20302203377115,50.45204488048709],[-118.20310677574753,50.45187288769769],[-118.20320163300062,50.45170385926989],[-118.20330329540629,50.4515364497977],[-118.20341011176065,50.45136996424719],[-118.20352042778178,50.45120372545046],[-118.20363229967523,50.451038726300666],[-118.20374932540396,50.45087465103845],[-118.20386965562294,50.45071194777833],[-118.20399329340377,50.45055059864868],[-118.20412042914747,50.45038950515223],[-118.2042629302205,50.4502317461521],[-118.20442488287846,50.45008440784493],[-118.20461572616296,50.44995435725205],[-118.20482115893255,50.44983211524201],[-118.20503456747261,50.44971495534773],[-118.20525779948211,50.44960243830239],[-118.20548560290949,50.44949420273541],[-118.20571447746075,50.44939000179771],[-118.20595084496127,50.44929366924404],[-118.20620550482475,50.449214445974214],[-118.20646571425154,50.449144083903334],[-118.20672874532,50.44907787971481],[-118.2069976155565,50.449018866595324],[-118.20726775087259,50.448962771562854],[-118.20753652377752,50.44890431084209],[-118.20779614752325,50.44883730362605],[-118.20803738067056,50.44875374000736],[-118.20823005554684,50.44862324371488],[-118.20840424043543,50.44847676290799],[-118.20858572509765,50.44833926686101],[-118.20876399927404,50.44819984476217],[-118.20894227080247,50.4480604312837],[-118.20912384962047,50.44792237164],[-118.20931515291602,50.447789526180244],[-118.20951949059986,50.44766324005978],[-118.20971390509501,50.44753287329687],[-118.20987369500484,50.44738762699106],[-118.20999593731868,50.44722392336775],[-118.21007928186857,50.447049559223835],[-118.21011887229008,50.44687212036578],[-118.2101408657896,50.44669400175456],[-118.21015070612128,50.446514457060644],[-118.21015529465788,50.44633455123192],[-118.21011310865043,50.44573946182066],[-118.20762122619111,50.44424396671914],[-118.20856413889126,50.43803384061428],[-118.21482045257522,50.43593114989428],[-118.21509148092328,50.434170495358856],[-118.21511579310268,50.43418350824417],[-118.21525151118956,50.434217929969925],[-118.21545206060848,50.43425635843585],[-118.21555714524793,50.43427336209997],[-118.21567585002867,50.43430376420677],[-118.2159432843155,50.434354804567306],[-118.2162295433985,50.43437892939426],[-118.2164239320516,50.43438132254886],[-118.21657306919242,50.43442007778248],[-118.21682888273568,50.43450758722435],[-118.21717759589104,50.434580178430636],[-118.21745670149961,50.43463542693357],[-118.21767606470755,50.43471867647389],[-118.2178950656967,50.43482449990062],[-118.21802965242122,50.43488595810439],[-118.21817540077838,50.43493408175833],[-118.21844389739694,50.435142829011546],[-118.21866420053092,50.43544592149405],[-118.21873132277156,50.435580036793795],[-118.21883507187503,50.4356150228477],[-118.21910369822626,50.43567970758739],[-118.21941855484505,50.435712608019074],[-118.21969617208097,50.43581747393627],[-118.21987321551701,50.436022597963536],[-118.2199192140032,50.43612527564007],[-118.21998554447892,50.43607966570695],[-118.22021271403422,50.43593350159676],[-118.22046378469591,50.435782248893055],[-118.22060415672664,50.435718112495096],[-118.22078703908434,50.43568465788429],[-118.22115608601341,50.43568069771234],[-118.22151711054292,50.43571289166337],[-118.22170024751655,50.43572917293973],[-118.22183094160826,50.43570051345349],[-118.22212158892044,50.43564809204572],[-118.2225883752224,50.4356114481545],[-118.22319485733799,50.43559650322681],[-118.22401680089347,50.435718194897944],[-118.2247294888624,50.435980211152525],[-118.22497658686619,50.43614901476126],[-118.22499169770728,50.436184546884164],[-118.2250009557628,50.43620270845597],[-118.22501360278834,50.436211508160994],[-118.22511175277208,50.436196944306474],[-118.2252940681845,50.43617700225349],[-118.22556096136499,50.43616979027948],[-118.22592116762063,50.436165752495576],[-118.22617582615757,50.43616784813176],[-118.2264909393089,50.43616854607292],[-118.2271735186303,50.43614368194109],[-118.22783455008063,50.43606926963364],[-118.22810138662166,50.43602136853406],[-118.22813131058622,50.43601217338953],[-118.22812549497455,50.43588181722196],[-118.22822290934658,50.43561521450192],[-118.22844850705741,50.43547796473623],[-118.22860089459873,50.43546721246794],[-118.22875066378982,50.43546136526113],[-118.22922340845386,50.43545167190157],[-118.22980073428027,50.435441420654236],[-118.23014422307487,50.4354418439242],[-118.23024278411813,50.435445384208734],[-118.23039789926885,50.43543934118444],[-118.23075625394722,50.435435718417274],[-118.23108174847314,50.43542753334347],[-118.23140813270497,50.435496238798095],[-118.23182614552981,50.43568043116622],[-118.23210637135068,50.43582160638947],[-118.23218457443315,50.435861002749256],[-118.23220422160776,50.43587029362137],[-118.23225332551662,50.43588334556564],[-118.23233111360595,50.435904633145704],[-118.23246643469669,50.43592092506504],[-118.23266453795121,50.43593259007841],[-118.23278109347793,50.435944742160615],[-118.23289898486978,50.43593889950326],[-118.23310335170717,50.43591428458601],[-118.2332339419567,50.43588617434967],[-118.23330252110557,50.43585822541727],[-118.2334069826392,50.43577630010073],[-118.2335882445573,50.43563931474854],[-118.23383537949226,50.4355515969267],[-118.2340159387439,50.43553151755593],[-118.23407095041769,50.43553086383419],[-118.23409223516286,50.43553066925937],[-118.23414549713105,50.43552989253483],[-118.23423505632613,50.43549324783182],[-118.23434465353326,50.43540207347053],[-118.2344820665195,50.43532416246461],[-118.23461506376735,50.43528209083519],[-118.23467742855378,50.435259354272766],[-118.23472071917398,50.43528556522692],[-118.2348548183488,50.435329448052066],[-118.23506578768142,50.43543071971748],[-118.23525871539204,50.43555444335281],[-118.2353459862369,50.435674701871],[-118.23536272187262,50.43581373327666],[-118.23536916985425,50.43589950304423],[-118.2354050127426,50.4359483500274],[-118.23547119465046,50.436006108531224],[-118.23550904612418,50.43603305781321],[-118.23552092441274,50.436046322015066],[-118.23556257923998,50.43608201774653],[-118.23565210169384,50.436148195864746],[-118.2357339537264,50.43615620691335],[-118.23575100504041,50.43605740789608],[-118.2359373143493,50.435983491194975],[-118.23624195829746,50.43606534358814],[-118.23635085226702,50.436275826572874],[-118.2364598309851,50.4364139888104],[-118.23657855545541,50.43644436847017],[-118.23661531592946,50.43645712066665],[-118.23665732566438,50.43647024162648],[-118.23667424515968,50.43647482015113],[-118.23675039954843,50.43650558976047],[-118.23701247494807,50.43658784801254],[-118.23737049971311,50.43667853611737],[-118.2376182268086,50.43672079680809],[-118.23773371092574,50.43672890880902],[-118.23782307794373,50.43675495589844],[-118.23790051711401,50.436798813888096],[-118.23793106582039,50.43681677905773],[-118.23802593804234,50.43688277016751],[-118.2383314740569,50.43696976801933],[-118.23870396587208,50.436925303388485],[-118.23891767606439,50.43684652658639],[-118.23899705623847,50.436827812069694],[-118.2390674484919,50.436840665463016],[-118.2393853614614,50.43688672123458],[-118.23999584323775,50.43699230003294],[-118.24041218099168,50.43707351302573],[-118.24060968347669,50.43712975876021],[-118.24080970801289,50.43718165234403],[-118.24098478212447,50.43719338441761],[-118.2411980932497,50.43716824354988],[-118.2414120772685,50.437139199225214],[-118.24151766985908,50.43710198418485],[-118.2416432646321,50.437051474955545],[-118.24193861537682,50.43697164466057],[-118.24233299365517,50.43688238574999],[-118.2426419724331,50.43681593985997],[-118.24277538589536,50.43679196714157],[-118.24284592001554,50.436773189477954],[-118.2430063138223,50.43672626059745],[-118.24329250886413,50.43663787466776],[-118.24355664765102,50.436554150130355],[-118.24365252584333,50.43652190113137],[-118.2436724129443,50.43649899860865],[-118.24371316537757,50.4364577910435],[-118.24373470517284,50.43643557400593],[-118.24380904325358,50.43642554190545],[-118.24395489576781,50.43640131100635],[-118.24402913827551,50.436391832510964],[-118.24412574273339,50.436386183340076],[-118.24433031549522,50.43637060206617],[-118.24445607087954,50.43636021884276],[-118.2445101035003,50.43635497139009],[-118.24462418783637,50.43634037905025],[-118.24493651967732,50.436305801006945],[-118.24531259448926,50.43626100598818],[-118.24546117543177,50.43624148444121],[-118.24566822469302,50.4362526237227],[-118.24609158853629,50.43629306986662],[-118.24633229918251,50.43637605675683],[-118.24638241695614,50.436465448885336],[-118.24643138573275,50.436510132152726],[-118.24656909490932,50.43655369253872],[-118.24687093505617,50.436631367070305],[-118.24717333524401,50.43669552070346],[-118.24740590070519,50.43673330537695],[-118.24761610408578,50.43676726089653],[-118.24782815453342,50.43680077607791],[-118.2480427230605,50.4368299567543],[-118.24816540087166,50.43683743243438],[-118.24820087842305,50.43683709172606],[-118.24821126179297,50.43682822013162],[-118.24831167402186,50.43683130441338],[-118.24855354869871,50.43685618030833],[-118.24876580963348,50.43689875692041],[-118.24883018595044,50.43691570169586],[-118.24888391238136,50.43690195157942],[-118.24908041085764,50.43688183587117],[-118.2493898765524,50.436874162739],[-118.24962684984195,50.43687609374841],[-118.24970314823705,50.43687523471801],[-118.24972977987926,50.43687484261249],[-118.24979646454254,50.43687838946717],[-118.24993410282414,50.43688126269949],[-118.25017859469646,50.43690122928839],[-118.25036370783917,50.43692664022949],[-118.25041816293974,50.43693949848549],[-118.25044325606075,50.43694803779144],[-118.25051463229147,50.436965472419175],[-118.25072112817294,50.43699012234299],[-118.2510497834059,50.437004698483],[-118.25132834910367,50.43700163276562],[-118.25151009846856,50.43699516774108],[-118.25166979326963,50.43699336616935],[-118.25176203238283,50.43699249346752],[-118.25180237415182,50.43704616894639],[-118.2518965765533,50.437157287987866],[-118.25211162970804,50.43713225775386],[-118.25242059432112,50.43696296082831],[-118.25266552672142,50.436856969958086],[-118.25294149459299,50.43681756036635],[-118.25332914225513,50.43677749999915],[-118.2537476514448,50.436763899616686],[-118.25413730117661,50.43680477124036],[-118.2544079469799,50.43687854733224],[-118.25452361078689,50.43692676211594],[-118.2545858947827,50.436966155293234],[-118.2546882151204,50.43705073127413],[-118.25479140156621,50.43713027863782],[-118.25485674581269,50.437193045073],[-118.25493176337247,50.43728191726805],[-118.25503516294731,50.43737051865958],[-118.25512453967174,50.43739656072338],[-118.25515817090569,50.437396657850215],[-118.25518599602792,50.43740990716689],[-118.25523989648664,50.43743628314644],[-118.255265971822,50.43744940981038],[-118.25530833224626,50.43743994931782],[-118.25539459063175,50.43741209663757],[-118.25543596995092,50.437398047643036],[-118.2555044056685,50.437401713693625],[-118.25567119641221,50.4373998431125],[-118.25594365066335,50.43740141752074],[-118.25636618471454,50.43740560730119],[-118.25683974815391,50.43736025557295],[-118.25726406811567,50.43718942915828],[-118.25753634379984,50.437006809958326],[-118.25758566884677,50.436884844402755],[-118.25767393551571,50.436793855172304],[-118.25791027049956,50.43676860565358],[-118.2581491235461,50.43673901237088],[-118.25846456866599,50.436614221229284],[-118.25887545335151,50.43643905845497],[-118.25928249443199,50.43628621447161],[-118.25968415277748,50.436164638917454],[-118.25998112035236,50.43608543683699],[-118.26018035240212,50.43602877566752],[-118.2604020983702,50.435954473335414],[-118.2605462223171,50.4358990320445],[-118.2606881261225,50.435897671169236],[-118.26092377166937,50.435917564071865],[-118.26109534651428,50.43592901934518],[-118.26129628537281,50.43594478148543],[-118.26160570063249,50.43600938598264],[-118.26190568569304,50.43611852584169],[-118.26211946139297,50.43618321120218],[-118.26223952509187,50.43619557737993],[-118.26233928563416,50.43621273182327],[-118.26251859896595,50.436251275099174],[-118.26285601154767,50.436225183185364],[-118.26328160875086,50.43621147417844],[-118.26355284685525,50.436374531771385],[-118.26371486095171,50.4365033847757],[-118.26399188683475,50.4365092190339],[-118.26428703104472,50.43653326956193],[-118.26442531134464,50.436563287624644],[-118.26452962143793,50.436615785663996],[-118.2646869737849,50.43669967467788],[-118.26486637976502,50.43677889708938],[-118.2650365120846,50.43683996099023],[-118.26511354943898,50.436865691451395],[-118.26512740067179,50.43688812920837],[-118.26516339551381,50.43694657454693],[-118.26526856423652,50.43703528891324],[-118.26540645528246,50.43710878431993],[-118.26849619104328,50.43593689957032],[-118.26884799090071,50.430344741237114],[-118.26893280322543,50.42515193605624],[-118.26892266881816,50.423726967493955],[-118.26839003933664,50.41751181724336],[-118.26899653360483,50.41175488789197],[-118.27140258691085,50.40673009197717],[-118.27202995472807,50.404394901130466],[-118.26799451181402,50.40217341691791],[-118.26191198487659,50.4013224599887],[-118.25609794102215,50.400475293014736],[-118.25288219368761,50.398596543919275],[-118.25467266906985,50.39682831124178],[-118.26799596454339,50.39664181969047],[-118.27523590605752,50.39577572111715],[-118.2781729544313,50.394578348943284],[-118.28746625215122,50.39023082936972],[-118.29468790826526,50.38474707946909],[-118.30057526584936,50.377953501741885],[-118.30012565911788,50.377438523087676],[-118.29735295560721,50.37396143121334],[-118.29564708307525,50.37111409358044],[-118.29455983275967,50.36655281812469],[-118.2943850539993,50.36501064783711],[-118.2951731798256,50.361476374615215],[-118.29704443579631,50.357478726816474],[-118.2977501117366,50.35343187123792],[-118.29765125391505,50.34995539062676],[-118.29629176253495,50.34442409590841],[-118.29414294363217,50.34020485649323],[-118.28895575882659,50.339125228191584],[-118.28154290465696,50.339652953327864],[-118.27484556130037,50.34045859229105],[-118.26770848898748,50.34069397715841],[-118.26145056931863,50.3396774916537],[-118.25876628877137,50.33711480447031],[-118.25805124293903,50.33329300577464],[-118.2586707183507,50.33067236530246],[-118.25598490813583,50.32713473576387],[-118.2605321296291,50.32114319059514],[-118.26676262256863,50.31628727750535],[-118.26693899698495,50.31600018395736],[-118.26711401431416,50.31052762028371],[-118.26470052176819,50.305569436199775],[-118.26370096290773,50.30134725789304],[-118.26566475522614,50.29672911353593],[-118.2691283234284,50.2908549985459],[-118.26984233903444,50.28965408530306],[-118.27142838684303,50.28212187434908],[-118.27141290082182,50.2761910316806],[-118.2701509326113,50.268718703235756],[-118.26844039974418,50.26205557394107],[-118.26673978135398,50.256409049900014],[-118.26556956076017,50.25310638740213],[-118.26262195183675,50.24922607763437],[-118.26028316710759,50.24558286034419],[-118.2611764458016,50.24119047883508],[-118.26125284368285,50.238108151669906],[-118.26062840367275,50.23640055934662],[-118.2591062390739,50.23252306574113],[-118.25669608406271,50.22773871582668],[-118.25606093286093,50.226424747659316],[-118.25276173766663,50.224034747875805],[-118.24946630394732,50.22261181150824],[-118.246157827944,50.21953936140153],[-118.24446270186691,50.21651616646571],[-118.24061956390452,50.213441918529945],[-118.23644279374821,50.21042530533442],[-118.23615876284553,50.206660031410884],[-118.23650735245968,50.20306884769119],[-118.23721710401598,50.199590195343895],[-118.23783756326681,50.1995882488084],[-118.24166581254084,50.19485250287245],[-118.24619238155331,50.19171047962924],[-118.25063915593118,50.18919507639111],[-118.25668022667706,50.18485232907313],[-118.2585528315577,50.18148267505787],[-118.2584492899054,50.17846428374233],[-118.25594731679465,50.17316313507559],[-118.25388700025793,50.17071653131146],[-118.25273984924539,50.16803758626203],[-118.2580657115348,50.166541946458544],[-118.26784507158922,50.162879883030705],[-118.27325997649989,50.160195127155454],[-118.27486762380268,50.1591078779677],[-118.27795634920761,50.15288531907205],[-118.27928142321436,50.147920434206604],[-118.28140484553576,50.144216003020496],[-118.28265031616918,50.14318458220402],[-118.28841812558626,50.13981253584466],[-118.29268175839816,50.137749169226254],[-118.2951650757473,50.13580820133448],[-118.29501042408857,50.13489706932168]]]}' + )), 4326)))); + +INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Vancouver Island','1','1- Vancouver Island','AR10100000','WHSE Admin Boundary',7 + , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-126.78420523580463,49.48310633376914],[-126.50121288240169,49.24957660622653],[-126.0005235751567,48.82976509921817],[-125.48211577015613,48.6859457570275],[-124.75727664957519,48.51690669238596],[-123.99975442452109,48.30523951946273],[-123.90248586353144,48.27980240134232],[-123.67320700265964,48.24082106282676],[-123.53989655275734,48.224764478027055],[-123.3815040248219,48.25443232801455],[-123.24498922448338,48.28226854504484],[-123.11436838665627,48.422789974488325],[-123.15599371999896,48.44996995892382],[-123.21038650077581,48.537605713480055],[-123.26468310036863,48.69260361760367],[-123.0050642751287,48.76707723957745],[-123.00382942644562,48.83068965804488],[-123.31161842820045,49.00029028909575],[-123.31462061244859,49.00247496556385],[-123.52431234971202,49.156904447890106],[-123.52577513320652,49.15774249751906],[-123.86200795058586,49.34875907279831],[-124.00023291633309,49.42419205607542],[-124.02306001004446,49.433344981319074],[-124.04814010502469,49.4435420692261],[-124.0843032742771,49.45804944481162],[-124.11960787039664,49.472846431950856],[-124.15812531472385,49.49032391543544],[-124.18315414257538,49.504035137095045],[-124.22117144266582,49.51892892989595],[-124.23685744800484,49.523944251761534],[-124.27008027551634,49.533132286377025],[-124.30229518791089,49.54153143494938],[-124.32344950339066,49.550089235383524],[-124.35804880373438,49.55808542319792],[-124.39241839418914,49.5682453403214],[-124.41737648032523,49.578363734533816],[-124.44627591774979,49.58959758821449],[-124.46611616652906,49.59752354289299],[-124.4911646276783,49.60711086197482],[-124.51540951184454,49.619625516831114],[-124.5517807950956,49.638167089979966],[-124.59131948222404,49.65776505664209],[-124.63383790547314,49.68122979025696],[-124.67751917735802,49.70430926117986],[-124.71511471019251,49.72837199333778],[-124.74619197390928,49.75223537280125],[-124.78168362111893,49.776784539819076],[-124.78550381109564,49.779830118162685],[-124.78732570889623,49.78128272641043],[-124.80030687172598,49.79029449813117],[-124.82125974472328,49.81032089993528],[-124.84360777894467,49.83746230898465],[-124.8794624004956,49.8798178852306],[-124.89258290620486,49.9010604776211],[-124.89640657192966,49.92372785349895],[-124.89435748326568,49.93704912217991],[-124.89337496515779,49.94368169167384],[-124.88246386410493,49.960853422640504],[-124.8739429178801,49.974624632173885],[-124.8635638646137,49.98832012664997],[-124.85831640672328,49.99571701581407],[-124.85737605682162,50.000405372218545],[-124.85740815472968,50.00246590876188],[-124.85819159864973,50.00572169716722],[-124.85830894736674,50.01218219807871],[-124.85869434713591,50.02298938443552],[-124.85999929262667,50.0349927922842],[-124.86105688422012,50.04853988199309],[-124.86283876233911,50.06219534886659],[-124.86333718814335,50.07357161345582],[-124.86614341759145,50.085445759646674],[-124.86749822750666,50.09109903192159],[-124.86754930267386,50.0912934199069],[-124.86940539418842,50.09760301795057],[-124.87161173739617,50.10616033966782],[-124.87435888529549,50.118894482333936],[-124.87588954983711,50.12883407136619],[-124.87953169334904,50.13715096257827],[-124.88710551856437,50.146693507095094],[-124.89865639277448,50.15860462932877],[-124.91085575231152,50.17233601964823],[-124.92035674407397,50.17968672287064],[-124.93033827841667,50.188173804660714],[-124.9421566024747,50.19916128748139],[-124.94932089350777,50.20561084064118],[-124.95623744141818,50.21195189278005],[-124.9639291158771,50.2212626557629],[-124.97167182919165,50.22907829130429],[-124.97934178233173,50.23712967240334],[-124.99132628898289,50.24679064043783],[-124.99864738921458,50.25123853707671],[-125.00166580772502,50.25430111806823],[-125.0031594575528,50.25527073981298],[-125.00645148715755,50.25739635205207],[-125.0126291665174,50.2623121344719],[-125.0265517979605,50.273842181131926],[-125.03501675899082,50.28096132656114],[-125.04006618683799,50.28708562477807],[-125.05393644709818,50.296439043053965],[-125.0643693010396,50.303194438432165],[-125.07585784965555,50.31273923829022],[-125.08931634111991,50.3230634150889],[-125.10267712086521,50.33224470851213],[-125.10831939149038,50.33613404594153],[-125.11467296282461,50.340350608245096],[-125.11995915226605,50.345309274176216],[-125.12016111418657,50.34504238989067],[-125.12487895320092,50.348193804720964],[-125.13449742251186,50.35386214482817],[-125.14288286554968,50.36017608823967],[-125.14800210825133,50.36457870946568],[-125.14897171076181,50.36760180635426],[-125.14790875022527,50.374761698083645],[-125.1478097379114,50.381509933474035],[-125.14811315984684,50.38631111891224],[-125.15321463723335,50.39334961009296],[-125.160472285647,50.397275176548646],[-125.16914831933524,50.400663275150926],[-125.1774013923086,50.4041637983269],[-125.18180082699604,50.406025629348115],[-125.18981050333396,50.40907913136638],[-125.19838559128773,50.41047199100208],[-125.20937422779646,50.41232229819627],[-125.21797834269593,50.416173788292305],[-125.22654782844407,50.422133266037996],[-125.23560719214721,50.4292321255004],[-125.24467871447031,50.43661554730118],[-125.25118384201528,50.441797300168794],[-125.26079938335974,50.44637600409574],[-125.26885432592545,50.449139686408785],[-125.27893045007036,50.45067027894477],[-125.28734243452834,50.450567930410784],[-125.29363954880681,50.448771740574536],[-125.29910933919903,50.44579172020905],[-125.30546347478683,50.445708674586456],[-125.31686684884777,50.44985502429081],[-125.3393151592094,50.46381012012161],[-125.36417484084994,50.47967850440401],[-125.37157815103092,50.48455356659827],[-125.37409064495897,50.48738404800617],[-125.37960891151475,50.489030641491695],[-125.38519270105299,50.49003713764805],[-125.38730113661846,50.4915565951824],[-125.39269251480371,50.492227510008156],[-125.39701451228534,50.49274018247244],[-125.3990106211186,50.49637927012844],[-125.40254297222258,50.50331002379063],[-125.40873604304889,50.506427224887325],[-125.41178621970111,50.50615758359294],[-125.41523284614499,50.50468034238647],[-125.42657880261879,50.51751366279115],[-125.41902802462101,50.525395063125686],[-125.41902306765917,50.52796914669105],[-125.42317855442468,50.53185866814298],[-125.42736165137691,50.53363171995925],[-125.43202761816188,50.536312836711964],[-125.43633620080928,50.539398484877815],[-125.44007225919744,50.54089362834749],[-125.44641489718809,50.54280762780628],[-125.42082907092151,50.551052528560746],[-125.4259287967797,50.55858651738944],[-125.42620316022679,50.564761259075325],[-125.44443218651264,50.57309394739782],[-125.44583447184836,50.575077446453875],[-125.44690699293572,50.577465248661696],[-125.44718273145034,50.580320185389354],[-125.44225027499691,50.58616552469248],[-125.43885743811468,50.58969996277189],[-125.43996024239975,50.59305933023044],[-125.44789305104024,50.59958306331534],[-125.4342579971718,50.60823343028387],[-125.43374240362117,50.61213256978433],[-125.42593618532263,50.612291940453986],[-125.42114723280939,50.61418967855642],[-125.41656397427,50.61436902787688],[-125.41565015709389,50.61941027277189],[-125.41397377706654,50.62326611783075],[-125.41221611211532,50.62466279750479],[-125.40886883558701,50.62648168296741],[-125.400619696212,50.629966483018464],[-125.3872251613555,50.63311425226454],[-125.37813843978122,50.63558100791185],[-125.3747399271492,50.638890947475765],[-125.3748642326331,50.64317676450312],[-125.37275002438135,50.64463312675192],[-125.36542869507748,50.646105406223406],[-125.36046658024256,50.64879903208103],[-125.36186440905577,50.655985312480446],[-125.34537247559186,50.66700879553856],[-125.33366235380085,50.669158318729814],[-125.33032242356232,50.67194557319329],[-125.32798490582957,50.67489204319924],[-125.33092687054776,50.67983810093933],[-125.33336602337691,50.68626492901997],[-125.3066275140965,50.69186519300165],[-125.30271579005135,50.69385918939626],[-125.2992977176406,50.6968734773697],[-125.2964448146642,50.70085575025644],[-125.28926853188723,50.704951419821356],[-125.28658193455242,50.70818777836372],[-125.2931556805995,50.7145136318041],[-125.29199784458129,50.71784339880214],[-125.29208733546176,50.72384836258314],[-125.29187854638388,50.728994665349255],[-125.27699197995022,50.73443934673918],[-125.27450826794986,50.73899257807273],[-125.27275696837938,50.743818845573145],[-125.26970573917512,50.747459313612076],[-125.26460295649363,50.75163806948243],[-125.25794723063461,50.755320663917026],[-125.25302208754961,50.75978522612066],[-125.24961442160026,50.76337106501338],[-125.24430370523471,50.76704106814006],[-125.2379185172427,50.77043345730422],[-125.22859902893812,50.77277623750712],[-125.22423981155083,50.774598672600625],[-125.22180994671217,50.77806465276624],[-125.22174573872026,50.78257832534707],[-125.21878703767686,50.786219608312585],[-125.21511827660376,50.79066253085484],[-125.21349304997653,50.79348777568797],[-125.21257773387644,50.79629664619204],[-125.20883212431819,50.79777471446998],[-125.20164980380812,50.79928994004908],[-125.19823562604034,50.7996680396957],[-125.19482829029249,50.80045195547951],[-125.19168055344436,50.80100579029608],[-125.18553783082848,50.80072771527765],[-125.17633868436974,50.80375132134899],[-125.16113018918608,50.80912860209673],[-125.15818684319316,50.81688318928948],[-125.15145652842993,50.81827564925389],[-125.14842985526023,50.823569938988726],[-125.14810002882577,50.82821103569747],[-125.15166866132651,50.8333139552245],[-125.15575470465963,50.84116228254985],[-125.16083037985028,50.84179321540695],[-125.1648025321783,50.8414047022766],[-125.16812183120147,50.84096685021753],[-125.17243134180013,50.840002370051764],[-125.17857369842663,50.8398163103734],[-125.18353416982022,50.83975996300913],[-125.18681083028493,50.840868889460666],[-125.18695724565849,50.842977827560745],[-125.18741870298189,50.846521596807406],[-125.18687819417431,50.84967300724958],[-125.18484293469908,50.85450204921478],[-125.18292123504307,50.8569820973374],[-125.18025609351672,50.858902623651176],[-125.17681977219854,50.871811175036584],[-125.19441184413778,50.87726937366231],[-125.21856776700692,50.87527140428913],[-125.22594222923996,50.870721935553306],[-125.22799195470375,50.86978125733317],[-125.23449268007926,50.86964958919101],[-125.23908742964434,50.87205304620434],[-125.24376412724735,50.87468531236765],[-125.24493720209728,50.877643535635244],[-125.2449494155574,50.8811305453394],[-125.23808867577031,50.88476413942611],[-125.23045869391085,50.886741200050366],[-125.22802626853952,50.89003007000464],[-125.22849688570874,50.89408375466591],[-125.23015811772929,50.8984099787035],[-125.23279731164325,50.90215515462001],[-125.23703257500618,50.90496643546129],[-125.24286142315057,50.90615268050567],[-125.24678508343214,50.90724612883113],[-125.24855920079409,50.90922651947855],[-125.24924859722277,50.911395512382384],[-125.2495241137991,50.914481134951444],[-125.24870993169031,50.918034868424144],[-125.24699583246993,50.92091629549987],[-125.24288667331372,50.92313606820911],[-125.23822594832937,50.92428044143338],[-125.23150416481957,50.92355937103171],[-125.22617842786279,50.923623249836226],[-125.22469122073596,50.925640936218336],[-125.22432228241443,50.92884785753953],[-125.2227204604353,50.93252669930713],[-125.21864597941943,50.93263424210343],[-125.21070455854004,50.93318824059881],[-125.2091136073355,50.93457353071411],[-125.20799243161443,50.93676587702367],[-125.20605324271237,50.938501150577345],[-125.20193839045481,50.940036841183776],[-125.197991121444,50.94174196334853],[-125.19634010319982,50.94405107532707],[-125.19519555079529,50.951441132503085],[-125.19544326590335,50.954294770229204],[-125.19717187091881,50.95799079552734],[-125.2019284439777,50.95971076467535],[-125.22889347955883,50.956020178271906],[-125.25159256673413,50.9583823358218],[-125.25145142360539,50.97868456624442],[-125.25886523586773,50.987173855725345],[-125.26440759143144,50.994311757991994],[-125.26448018408477,50.99682605023095],[-125.26440925156535,51.00026040150671],[-125.28103876895375,51.00286662380631],[-125.29160862753722,51.0072541285057],[-125.30182297782684,51.0126126988723],[-125.3093493670787,51.01850102294929],[-125.31640392524763,51.02365071357683],[-125.32096710107368,51.031325561316855],[-125.31881409621339,51.03773007506113],[-125.31055141083581,51.04223961881496],[-125.29755439261112,51.04449221263908],[-125.28721079360776,51.04410840631086],[-125.27592230450506,51.04565768759568],[-125.2666185939475,51.04800337547658],[-125.2487756831385,51.04782732957269],[-125.24205861416662,51.05243363906017],[-125.23462619485802,51.05869922168834],[-125.24247771539771,51.06304612174434],[-125.2487370372786,51.069577821034216],[-125.252296012367,51.0770890270262],[-125.25515577767824,51.08632334282253],[-125.2652133489247,51.08557230045165],[-125.27378492814607,51.08917515390336],[-125.29232307384031,51.09699537825284],[-125.29360801757298,51.103380117089436],[-125.28553272348739,51.10954199740659],[-125.28431708272419,51.11845073739086],[-125.28106469203261,51.1250383489191],[-125.28383704564322,51.13404468889999],[-125.29478817124085,51.138024965820506],[-125.30767419043939,51.1373169364831],[-125.32747258487397,51.138269479229876],[-125.31951772836938,51.14580405209159],[-125.31227658428256,51.15235644277702],[-125.30061237667744,51.155174080689854],[-125.2923314741757,51.159337769704216],[-125.28109912910138,51.167114349949614],[-125.28874609856219,51.174088908976465],[-125.29262498493968,51.18314077394559],[-125.29899809982642,51.190351163400635],[-125.31633183305563,51.193833698399],[-125.32848540106981,51.19808695108481],[-125.33344681258473,51.206334426243416],[-125.34109871235741,51.21301780888122],[-125.33037987467897,51.21303447087091],[-125.32423421779458,51.22044152611263],[-125.33088367094187,51.22713183193511],[-125.3345835638869,51.23561671131426],[-125.33323738347438,51.24218927923524],[-125.32862234247591,51.24867341009343],[-125.3208050311718,51.254375622172155],[-125.30271545209709,51.26094301259391],[-125.2907439367393,51.264104907237645],[-125.28742183756363,51.27263543502105],[-125.287168992978,51.27942958049995],[-125.27526527597777,51.28070503829794],[-125.25904344332228,51.28525689817973],[-125.24395975386986,51.2876887042947],[-125.23475816223562,51.29270961395288],[-125.22024012104579,51.296222141996815],[-125.21480014937612,51.30424370560333],[-125.20473621185393,51.31371883301223],[-125.20419125953096,51.3200611280624],[-125.20848624488487,51.32728841796474],[-125.21479781503827,51.33512867114934],[-125.22780930965877,51.34048067672947],[-125.23620261896039,51.352928640505084],[-125.24518264877985,51.36160903726104],[-125.25440979974954,51.36863634127172],[-125.25598227516524,51.36919198365195],[-125.25874652987572,51.370715313756726],[-125.26059632390115,51.37189431437459],[-125.26236456677414,51.37365677029126],[-125.26256315760344,51.37382187960916],[-125.26486372943066,51.3747187374156],[-125.266705096887,51.37555872146182],[-125.26799025729231,51.376117943161496],[-125.27020003485038,51.377300787717644],[-125.27196683652166,51.37831411828013],[-125.27463812225749,51.37943531207339],[-125.27729987802212,51.38026801824495],[-125.28033391404433,51.38121185983969],[-125.2818082786497,51.3816559853445],[-125.28455840183767,51.38237799634351],[-125.28711373736746,51.382696473806675],[-125.29060052042362,51.38323950777682],[-125.29837922638279,51.38436895723279],[-125.30231503069618,51.38473432464558],[-125.30523300460676,51.38487845486784],[-125.30862213548876,51.38525147373671],[-125.3115600495445,51.3859655570411],[-125.31532542286567,51.38713280111982],[-125.32000459675356,51.38782909812466],[-125.32036426665728,51.38782845264813],[-125.32550962238986,51.389096173566564],[-125.3275214399127,51.38924948897171],[-126.00006220311604,51.509830853323486],[-126.02980966965389,51.51532052005944],[-126.06966739243508,51.52175411735039],[-126.07881140539581,51.5233888008515],[-126.08229589078645,51.52271324712994],[-126.08725043303393,51.52210546488721],[-126.09100854554102,51.52171717433506],[-126.09843194352096,51.52105978750395],[-126.10503378993135,51.52011211756016],[-126.10862281988851,51.518578589690975],[-126.11102406480614,51.516359000404165],[-126.11170953348365,51.511794751688605],[-126.10964932264115,51.50710190304629],[-126.1062163653211,51.50229585841471],[-126.10349551610794,51.49948535318163],[-126.10288592285227,51.49628865877946],[-126.10292051151224,51.492575320513296],[-126.10277448989473,51.48909267682491],[-126.10296177025447,51.488633670299144],[-126.10198586839306,51.485548331623335],[-126.10000504932202,51.482286044428236],[-126.09883385669823,51.48034288589551],[-126.09838826283293,51.47891065537065],[-126.09704558710636,51.4759366265006],[-126.09743305557215,51.473937694331774],[-126.09911115673289,51.470635138187276],[-126.1019092600112,51.465276835699584],[-126.10358233632431,51.46242462867718],[-126.1056174378828,51.46003371247955],[-126.11076917881635,51.45696886184911],[-126.12121944257574,51.4542550092764],[-126.12854840856319,51.45274081153638],[-126.14046118899562,51.450208624460615],[-126.14366505149506,51.449474821103635],[-126.14962115585453,51.44846303646472],[-126.15456851721892,51.44716623072172],[-126.15567139986976,51.44665538261195],[-126.158792156716,51.4452335468267],[-126.16429756798682,51.44262682559873],[-126.16870880568831,51.44006746725292],[-126.1721002964412,51.43904929662237],[-126.17457706701116,51.437798510115826],[-126.17586333672102,51.437117213464184],[-126.1767827882168,51.43655146469163],[-126.17826957076485,51.435834482849],[-126.17853770340105,51.436035440571445],[-126.17999020998795,51.437299230439734],[-126.18327177326161,51.43788186477485],[-126.1864827388974,51.43686355284824],[-126.19033083009441,51.435847448831574],[-126.19370101694092,51.43672413182785],[-126.1977003212021,51.43896106449866],[-126.20177860985407,51.44263263086898],[-126.20568047251253,51.445393373010184],[-126.21103094799538,51.449927259954016],[-126.21302791470279,51.451588429656844],[-126.21668054519482,51.45188667919412],[-126.22125236268381,51.451785317453854],[-126.22371559735211,51.45225617882821],[-126.22571988468698,51.45294779084682],[-126.22845693302814,51.45358684566115],[-126.23210684856595,51.45434402514226],[-126.23457509604798,51.454354098061174],[-126.2369597559456,51.45338880820795],[-126.23908469527927,51.450708631837394],[-126.24192829492283,51.44975124219018],[-126.24640447693197,51.44982633154285],[-126.2496030993276,51.45022940027164],[-126.25443824304445,51.45133272265555],[-126.2576306412435,51.45202728178526],[-126.26375923955761,51.451478075724154],[-126.26889077999948,51.450014865647546],[-126.27255020788576,51.449623021950764],[-126.27794068423512,51.4500407746617],[-126.28031270992427,51.45067274443778],[-126.28249248422425,51.45262618443927],[-126.28586223681022,51.45406445031492],[-126.28796220414145,51.454352520174965],[-126.29353209236395,51.45482853891053],[-126.29554354275895,51.455063411637205],[-126.30119552541952,51.45724973330367],[-126.30283437872484,51.458282009000214],[-126.30565279791513,51.46057546711159],[-126.3073756311719,51.462124640235565],[-126.30884521420057,51.46144527817743],[-126.3137963669766,51.45923225007221],[-126.3162770793817,51.457924531983465],[-126.32103483764062,51.45695926707374],[-126.32596808186055,51.45783207931487],[-126.32961958350973,51.45852778560503],[-126.33610397477665,51.45952017861106],[-126.33874880247231,51.46066844351975],[-126.3422174204123,51.461648119409766],[-126.34669130896668,51.462511881366865],[-126.34953287672293,51.46126741694245],[-126.35229257842354,51.45870040794604],[-126.3563368581113,51.45500348022954],[-126.35955499140253,51.452437647128754],[-126.3614793166525,51.45112957452385],[-126.36265810779251,51.452790726806484],[-126.36319715441489,51.454502152685656],[-126.36500951328887,51.45696733020439],[-126.36728383368698,51.458970446739805],[-126.3691092583083,51.45971957035751],[-126.37148465176303,51.4598913346639],[-126.37550344526598,51.46099105019274],[-126.37713726503881,51.46247776245484],[-126.37667155532695,51.4644717908216],[-126.37509721644352,51.467442721080815],[-126.37297730218594,51.47068858607383],[-126.3712280441948,51.47262787527193],[-126.37084345156396,51.47531323753585],[-126.37404172268113,51.47606395194309],[-126.37669375838324,51.47624255028436],[-126.38236207880753,51.47631113581853],[-126.38666127471674,51.47671898894934],[-126.39077234918709,51.477645625851416],[-126.39552740395987,51.477424445445365],[-126.39873304251458,51.47663409806185],[-126.40303845251418,51.47573038697037],[-126.40624085705429,51.47510644137755],[-126.41145980732453,51.47443249313671],[-126.41657969486805,51.47444526146388],[-126.4208780685152,51.47484677203135],[-126.42361156788473,51.476739336463126],[-126.42369860743561,51.4778266821769],[-126.42459667305808,51.480800238291714],[-126.42870529929237,51.48246427455337],[-126.43217272717006,51.484409946520266],[-126.43436228601023,51.48595427964902],[-126.43646002366823,51.48767337697011],[-126.43947376765186,51.48842183517912],[-126.4430447763051,51.487399981630794],[-126.4480875879455,51.48517853978089],[-126.45010807009936,51.4836964134962],[-126.45048630395416,51.48050148815652],[-126.45086392428496,51.478045310563125],[-126.45115768767222,51.473649147465764],[-126.45290552183316,51.470680969817124],[-126.4556633420928,51.46679996575201],[-126.45824113012388,51.463148480848055],[-126.46274730307296,51.456812205209985],[-126.4673226022092,51.45550777311922],[-126.46997342402155,51.45522926977143],[-126.47317943366875,51.45340350978498],[-126.47547148788928,51.451349811529724],[-126.47822326549216,51.44861648820519],[-126.4779640220985,51.445298932684175],[-126.47842721150562,51.44284894136417],[-126.47862063904678,51.439933355900784],[-126.48054634759704,51.43805104386413],[-126.48375324547801,51.4360499213984],[-126.48449385813876,51.43291824776021],[-126.48724370681228,51.430572848376976],[-126.48879841139879,51.43012243525948],[-126.49227384722381,51.42904326548021],[-126.49091006939935,51.427153638116664],[-126.49200758282372,51.42647179829459],[-126.49475241065105,51.4256761882868],[-126.4979509718365,51.42522521344648],[-126.5003282196888,51.42528151597867],[-126.50178676420201,51.425739567398495],[-126.50461775776489,51.42620272925392],[-126.50837155414393,51.42317860244657],[-126.51056761435927,51.422437236165635],[-126.5126686199488,51.4220401302876],[-126.51532012957807,51.4214761262645],[-126.52016388057977,51.42056320727466],[-126.5239137772482,51.41908293353013],[-126.52793935955714,51.41742903445955],[-126.53058820884387,51.41623357304709],[-126.53561317238736,51.41572024574524],[-126.54018243396307,51.415841087074405],[-126.54346955336428,51.41624669297691],[-126.54912952131353,51.41739247713204],[-126.55278687012495,51.41688274339844],[-126.55598415966001,51.41614121961056],[-126.558544997542,51.41431275031572],[-126.55991597769446,51.412600603203174],[-126.5618373543153,51.41003581410877],[-126.56412573669694,51.408262964270726],[-126.5660511755444,51.405978008541226],[-126.56824095712432,51.40523946787966],[-126.57052233066727,51.40484206241506],[-126.57454517711435,51.40438475420892],[-126.57737451304203,51.40421556345375],[-126.58468115859047,51.404505222707265],[-126.58787571394294,51.40467777154235],[-126.59098112067342,51.40531239532174],[-126.59298974158055,51.406052525822794],[-126.59654907081773,51.40731462221616],[-126.60184433021921,51.40874243592099],[-126.60476624207199,51.409999232026365],[-126.60951648228304,51.412112317421595],[-126.61362569782995,51.41228260405205],[-126.61792031388019,51.41245677750512],[-126.61800864294734,51.41343185197294],[-126.61444498159617,51.41445985227095],[-126.61143087528681,51.41594142379198],[-126.60960303902341,51.41805382860577],[-126.60832156660352,51.42182435000949],[-126.60868519318021,51.42541997615349],[-126.61051122120506,51.42868013341412],[-126.61242703792652,51.43119253623301],[-126.61470946734835,51.43467846103841],[-126.61680919194329,51.43730366456562],[-126.61973590395013,51.43873673724823],[-126.62430355602817,51.44141786476417],[-126.62530796189932,51.442161800749545],[-126.63006035118336,51.44461728574469],[-126.63490341299972,51.445140633060966],[-126.64194271479623,51.44530920210825],[-126.64779152782641,51.445823513350554],[-126.65163345208336,51.446508924827285],[-126.65757583413925,51.44844930981581],[-126.66223838191726,51.45039236191124],[-126.6642506489564,51.45187504219121],[-126.66681060274185,51.454671628861256],[-126.66855075078739,51.4570713248585],[-126.67047230474708,51.45912885181207],[-126.67120399669257,51.46004227409776],[-126.67468148544116,51.463644964430046],[-126.67733345444752,51.46489752765298],[-126.68163318273274,51.46586697430169],[-126.68776061668753,51.46723303968377],[-126.69197328619423,51.470431322657234],[-126.69389743827891,51.473633902293884],[-126.69334956333945,51.4761458566278],[-126.69463247113643,51.4788867215363],[-126.69893297755934,51.47917001611702],[-126.70167642047184,51.47831168174194],[-126.70460060054243,51.476141202018006],[-126.70907508247286,51.471570152539606],[-126.70980408255308,51.46962466992829],[-126.70961734857924,51.46608278155527],[-126.70851403052906,51.46328707518386],[-126.7075034484085,51.45986248864427],[-126.7108852840003,51.45779553234968],[-126.7167304127561,51.45488158957541],[-126.72047174085452,51.45116784343446],[-126.72211250110009,51.448427162423215],[-126.72521504703197,51.44425335383723],[-126.72639844755128,51.44236371014747],[-126.72748905305944,51.43905703806182],[-126.72921762074661,51.43580066058814],[-126.72839154381829,51.433798756920844],[-126.72336028042015,51.43123354675422],[-126.71915398657264,51.42883399545984],[-126.71531104318377,51.42483765754505],[-126.71229259664561,51.42204046118924],[-126.70872145365202,51.41746884925942],[-126.70460631709041,51.414728764004174],[-126.70176804935298,51.41027633272666],[-126.69920648534567,51.40570934453731],[-126.69956893176146,51.40434276059478],[-126.70157234854041,51.40062329989818],[-126.70531224316245,51.397365939630504],[-126.7081380985529,51.39462409983289],[-126.71133036803661,51.39176375028226],[-126.71333248293736,51.388338002306185],[-126.7115916923829,51.383481599924544],[-126.71030463309766,51.379257378073866],[-126.71239884460309,51.373768722270256],[-126.7161307908761,51.36960040621382],[-126.71932149535881,51.36656472408467],[-126.7216873637327,51.364335326892636],[-126.72469475882477,51.36227850301845],[-126.72697387395192,51.36125070019535],[-126.72824619206091,51.358789723759884],[-126.7265099980348,51.35713966152156],[-126.72413721491051,51.35622184591335],[-126.72221675703805,51.35411115974096],[-126.72430897981026,51.35091227539059],[-126.72503565261304,51.34931541876434],[-126.72721907544212,51.346170860272075],[-126.72885448521713,51.343366960910096],[-126.73030930761043,51.34068087949022],[-126.73294914931128,51.338678323177255],[-126.73504348964828,51.33747984062288],[-126.74115076306786,51.33662037581626],[-126.74634652823936,51.335353102567076],[-126.74807503962475,51.33352897679736],[-126.74961843747984,51.33112367079372],[-126.75006776248584,51.327753859775115],[-126.75069616287801,51.32330057819363],[-126.75104995374126,51.319125687581675],[-126.75159000190284,51.31735759702101],[-126.75423027829395,51.31541281920998],[-126.7554142873387,51.314779912652334],[-126.75960340017009,51.31392321935145],[-126.76188105062884,51.31357520944626],[-126.76543119551096,51.3118075043625],[-126.76761565525888,51.311114960457765],[-126.76816023623692,51.309342251951264],[-126.76495973229856,51.305979598049014],[-126.76403838758388,51.302830959426565],[-126.76448550055822,51.29946548689637],[-126.76712776004342,51.29866100056573],[-126.7726838559538,51.29905523898194],[-126.77587476232985,51.29950975796892],[-126.78598560408408,51.29795375470102],[-126.79591527645326,51.297139840088114],[-126.80045987714226,51.29399497822265],[-126.80518188775648,51.289984602926815],[-126.80791548000713,51.28992921627296],[-126.80956148840727,51.29158048067969],[-126.8119369906707,51.29317711486001],[-126.81339952697081,51.29488798710277],[-126.81477693859945,51.297914601647356],[-126.81298669120665,51.30597263348216],[-126.81191570745935,51.31231809615156],[-126.81302088069779,51.31477041803517],[-126.81622640667375,51.31904732508303],[-126.81814271021359,51.31921752739717],[-126.8267161199408,51.32006419469949],[-126.83546536539814,51.319934918584174],[-126.84129252466076,51.31797801504314],[-126.84694238504957,51.31757177630016],[-126.85569366633665,51.3176675876455],[-126.85868978937395,51.31532604001258],[-126.86049355814168,51.311094811528505],[-126.86174508835538,51.30617594204793],[-126.8645603117464,51.304002213419274],[-126.86948780633385,51.30548274354341],[-126.87305255544757,51.30729562898772],[-126.87560330929725,51.30729276658849],[-126.88043781633024,51.30785170474991],[-126.88580796776529,51.30664559577951],[-126.88998872955246,51.304863953024274],[-126.89152777176025,51.303029475711554],[-126.8933261826985,51.298401006856906],[-126.8947762425217,51.297198947317305],[-126.89713034590797,51.29434013060587],[-126.90003118543177,51.29164466746915],[-126.9034780052409,51.28929825511755],[-126.90919499370086,51.28493715998722],[-126.91172460942116,51.282139988113265],[-126.91380539956016,51.27973351801054],[-126.91606153088627,51.276014312692276],[-126.91740572869412,51.272580746139525],[-126.91528969592187,51.2688738914058],[-126.91335275932259,51.26487712564269],[-126.91333564161602,51.26230742422888],[-126.91486767381194,51.25990419297799],[-126.9193126141421,51.25703625796568],[-126.9202991363653,51.254635680814495],[-126.92008977857456,51.25029609931205],[-126.92052140222823,51.24686588396983],[-126.92077910050962,51.24378215949624],[-126.92386669010405,51.242920357965055],[-126.92932320099074,51.24215909355685],[-126.93258566208326,51.240038147605624],[-126.9371318368563,51.239393427771724],[-126.94204563841451,51.23927011054877],[-126.94576878627448,51.237946765780656],[-126.95011764740333,51.2351389329798],[-126.95611451326056,51.23415185484562],[-126.9587639011064,51.235173668112864],[-126.96240880397173,51.23618693954692],[-126.96677207093566,51.235204222867246],[-126.9723287021403,51.23638598148244],[-126.97479026056223,51.23695283943184],[-126.97907431911575,51.23791012776559],[-126.98272815518256,51.23961790444238],[-126.98410008131192,51.240297838529656],[-126.98747598619376,51.24166110684224],[-126.99039190429984,51.24216417815907],[-126.99375758869864,51.24169752771628],[-126.99975400473684,51.24053308346887],[-127.00602359236606,51.239256462729536],[-127.00946481924719,51.23736228605576],[-127.01173054016078,51.23615693226481],[-127.01681819526338,51.23488353690307],[-127.01981364085783,51.234017104397914],[-127.02425248980492,51.231830652207584],[-127.03016118945543,51.23118495829745],[-127.03380792974268,51.23202647377085],[-127.0357304891619,51.23339205965736],[-127.03893531780194,51.23555330615573],[-127.03939096744908,51.23572419036263],[-127.04330585312265,51.23605567263232],[-127.04757672128852,51.23518009005165],[-127.0525755393496,51.234476564771306],[-127.05648153545614,51.23360797057624],[-127.06266273923633,51.232899115011094],[-127.06684592875237,51.232653213735595],[-127.07112025745013,51.23247194202348],[-127.07411560857967,51.23154008839235],[-127.0773884381632,51.23119133672951],[-127.08248292133723,51.231286314566425],[-127.08875207913967,51.23028395439185],[-127.09083157276997,51.22896598279101],[-127.08954907216895,51.22800477823862],[-127.08626688699749,51.22755603414916],[-127.0822559773902,51.22643126251782],[-127.08196955527872,51.225231483227894],[-127.08514376154305,51.224132069332356],[-127.0893284886212,51.22416869182708],[-127.09469254564999,51.22363764387879],[-127.10021824560398,51.221502690582895],[-127.1114035864951,51.2208876481304],[-127.11731336109233,51.220459569295954],[-127.12230806218805,51.21969910185366],[-127.12648525608752,51.21917101539832],[-127.13191392559125,51.216227397520626],[-127.13663627510796,51.21552793089903],[-127.14116496166504,51.21385212228648],[-127.14434110079262,51.21308825018079],[-127.14868835904304,51.211413411083115],[-127.15348969724563,51.209854416962],[-127.15748229572787,51.20892525948612],[-127.16447625970429,51.208148565059],[-127.1674651841174,51.207107066039526],[-127.16754407704971,51.20602151683532],[-127.16742849116837,51.203909365529874],[-127.17125233476683,51.20428448722938],[-127.17698992687662,51.20506266609196],[-127.1811783565195,51.20550155052081],[-127.18946354281073,51.20609025878061],[-127.19465388850841,51.20657869742091],[-127.19728641392172,51.206164743317586],[-127.1999051994304,51.2047811735566],[-127.20124466548293,51.202722034537935],[-127.20413153855941,51.20070362735419],[-127.20674763840805,51.19920767923934],[-127.21075357658047,51.19953013593497],[-127.21222392236537,51.200777561566824],[-127.21315664205748,51.20266431084902],[-127.21344834681148,51.20403100210756],[-127.21374510708917,51.20597451064325],[-127.21422166263709,51.20774549588225],[-127.21605775966162,51.20922070014846],[-127.21899196698064,51.21092084338673],[-127.22054466520173,51.211363114881],[-127.22574458296643,51.212485828351994],[-127.22758445598564,51.21430255852276],[-127.22897054866215,51.215836310660166],[-127.2321891392742,51.218678350250556],[-127.23502696487803,51.21986397533197],[-127.23675439585728,51.21996966091018],[-127.24149237393715,51.22028470806732],[-127.24922718999701,51.22047724611878],[-127.25714742974448,51.220950577830145],[-127.26369886664251,51.22091790750502],[-127.26785976133854,51.219180492044124],[-127.27048493559204,51.21825594398225],[-127.2703664857624,51.21624771663904],[-127.26962682343894,51.21556803346943],[-127.26870153881482,51.214379762569784],[-127.26742718989082,51.21432672427687],[-127.2664247235751,51.21410227270014],[-127.26568409119496,51.21313413118708],[-127.2671259033833,51.212152751320446],[-127.27068149256257,51.21270486060878],[-127.2735045468857,51.2129783534997],[-127.27858841059248,51.21231991127548],[-127.28159436213036,51.212474407882965],[-127.28432070027306,51.212344681440705],[-127.28778047740532,51.21267343034968],[-127.29215500019846,51.21316165669167],[-127.29689700702538,51.214052902515974],[-127.29999566502566,51.21449092528916],[-127.30309376065027,51.21475547071938],[-127.30536770661263,51.214743246624096],[-127.30709706921064,51.21473167542383],[-127.31009185273557,51.21431706726126],[-127.31381571830015,51.213841717915884],[-127.31598188401381,51.21285521055819],[-127.3178662409058,51.21106889168619],[-127.31967140765236,51.21014823981222],[-127.32176513798788,51.21013723118878],[-127.32596189718949,51.21108527893198],[-127.33080796811686,51.21271128200443],[-127.33372763356715,51.213205487339536],[-127.3366646234225,51.215133795795694],[-127.3410640317183,51.21715748130884],[-127.3449152762818,51.219082576367086],[-127.34746329123541,51.21911956204985],[-127.35063982428552,51.218702835112126],[-127.35589849618835,51.21747483824238],[-127.35779774844832,51.21671800210533],[-127.36097229181375,51.216069804974175],[-127.36279209891082,51.216288614254225],[-127.36681367620191,51.217403936279695],[-127.37138615013396,51.21903265487048],[-127.3754109264736,51.220264917729416],[-127.37870582420402,51.221499220567395],[-127.3832819327626,51.22301517100427],[-127.38395165454476,51.22506763948545],[-127.3839854318419,51.22718288567037],[-127.3840057572978,51.228436882992305],[-127.38338749953328,51.229585894796394],[-127.38705609284258,51.23116330175432],[-127.38978514262949,51.231319457340135],[-127.39506023310688,51.23111080919459],[-127.40069096014834,51.23044631647034],[-127.40368665000989,51.22996693917148],[-127.40594019802381,51.22863585845923],[-127.40901178912601,51.227364120508064],[-127.41129367887595,51.22769256301585],[-127.41321360305761,51.22824547152606],[-127.41531947851914,51.22903620695219],[-127.41669417344055,51.229657056990085],[-127.42206302419761,51.22961488181281],[-127.42642757879815,51.22930061330087],[-127.43170358200388,51.22926981840978],[-127.43826000967375,51.22962374529765],[-127.44226660365851,51.229712420208855],[-127.44754503157993,51.22967187641658],[-127.45281789560225,51.2293522496411],[-127.45935973185708,51.228902627422016],[-127.4581741516177,51.22862779753912],[-127.46316668147298,51.22791059984426],[-127.46796645925195,51.22673494551137],[-127.47359148992368,51.225891220968606],[-127.47733151480507,51.226268902058564],[-127.47979071139227,51.22636411538057],[-127.48368544933973,51.22541794214012],[-127.48391947632125,51.2234153091609],[-127.48262430015801,51.222114609887676],[-127.47932757342934,51.2209972527366],[-127.47502250640714,51.21953773153236],[-127.47063021224058,51.21808703096134],[-127.46869403524603,51.216727734682394],[-127.46649042347498,51.21548579597557],[-127.46602769814514,51.215091659180366],[-127.46417129332899,51.213047703826746],[-127.46287120712162,51.21162505325486],[-127.46038805395706,51.20998703604118],[-127.4564392922543,51.20789757922771],[-127.45513886835809,51.20647989677295],[-127.45512049272588,51.205455936562785],[-127.45647021024469,51.20458438423531],[-127.45892443689077,51.20456730347914],[-127.46147189031316,51.2046067631443],[-127.46282985295728,51.2043703136165],[-127.46483459786583,51.20435612291834],[-127.46719370344213,51.20417116736471],[-127.47181940916892,51.20344371304527],[-127.47410206628645,51.20400546176587],[-127.47731400033271,51.20552309825296],[-127.48098238266154,51.20715813561393],[-127.48327379791161,51.20805294458861],[-127.48556859660775,51.20917943796423],[-127.48885148218135,51.209612124424645],[-127.49239743922641,51.20952941743815],[-127.49484576324998,51.20916929922173],[-127.49737985107295,51.20840560622185],[-127.49972348750917,51.20736264550547],[-127.5019614870117,51.20539841125806],[-127.50339685466746,51.204306273293774],[-127.50581572293474,51.20240351423769],[-127.50787994495492,51.200901095438745],[-127.51013226866506,51.19979851832343],[-127.51158307327248,51.19961747910735],[-127.51395446541186,51.199883162158756],[-127.5169701616416,51.20065814507168],[-127.52097865678826,51.20102796042187],[-127.5242623865372,51.201517973726155],[-127.52844664238634,51.201656166336456],[-127.53008434306558,51.20164914954096],[-127.53406131615873,51.200246580823055],[-127.53705005655799,51.1997670689793],[-127.54178015305374,51.199845146983186],[-127.5453262569349,51.199815764019306],[-127.54923659624977,51.19972851868387],[-127.55186018235938,51.19908132835135],[-127.5554841404271,51.19836249082219],[-127.56011919287417,51.19815937165803],[-127.56439769138319,51.19840998478873],[-127.56721780623533,51.19844160001704],[-127.56894453393737,51.19837216078536],[-127.57381359125625,51.19633561274263],[-127.57731448633159,51.194135566181124],[-127.58101771688072,51.192849618536165],[-127.58418399153375,51.19207788044313],[-127.58789737224518,51.19136066086164],[-127.59441666007943,51.18999646080576],[-127.59802416383734,51.188536191536926],[-127.59925796533811,51.18670029890265],[-127.60172379147848,51.18725352640495],[-127.605026226241,51.18870739120069],[-127.6083332490932,51.19028175741856],[-127.6112653242897,51.19128835518365],[-127.61397960386986,51.19063615721728],[-127.61679940220485,51.19067045695579],[-127.61898854201951,51.19098987141146],[-127.62207104125947,51.190567910221525],[-127.62722230740354,51.18903904296601],[-127.6325590659448,51.18779180829999],[-127.63853715713557,51.18682797295972],[-127.64388975817577,51.18626524443072],[-127.65026508656587,51.18672619713108],[-127.65683118779057,51.18764084276041],[-127.66161060275392,51.18982459606671],[-127.66327389110688,51.191011853894366],[-127.66983517412928,51.18758677723008],[-127.67696577675903,51.185347749934536],[-127.6897745383358,51.18483796850796],[-127.7041998503823,51.18444434253508],[-127.78919233803991,51.163730139475156],[-128.51015794216093,51.162322942706254],[-129.14083181955903,50.990181987118206],[-129.21220035388623,50.866259600877015],[-129.18291478260645,50.7106223890779],[-128.45155323875647,50.271254373500746],[-128.1178202702018,50.084739180204835],[-127.79716106242684,49.933934326850284],[-127.22098503175606,49.728999418938585],[-126.78420523580463,49.48310633376914]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":43,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"1","REGION_NUMBER":1,"REGION_NAME":"Vancouver Island","REGION_NUMBER_NAME":"1- Vancouver Island","FEATURE_AREA_SQM":70801547213.1266,"FEATURE_LENGTH_M":1410309.4209,"OBJECTID":7,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-126.78420523580463,49.48310633376914],[-126.50121288240169,49.24957660622653],[-126.0005235751567,48.82976509921817],[-125.48211577015613,48.6859457570275],[-124.75727664957519,48.51690669238596],[-123.99975442452109,48.30523951946273],[-123.90248586353144,48.27980240134232],[-123.67320700265964,48.24082106282676],[-123.53989655275734,48.224764478027055],[-123.3815040248219,48.25443232801455],[-123.24498922448338,48.28226854504484],[-123.11436838665627,48.422789974488325],[-123.15599371999896,48.44996995892382],[-123.21038650077581,48.537605713480055],[-123.26468310036863,48.69260361760367],[-123.0050642751287,48.76707723957745],[-123.00382942644562,48.83068965804488],[-123.31161842820045,49.00029028909575],[-123.31462061244859,49.00247496556385],[-123.52431234971202,49.156904447890106],[-123.52577513320652,49.15774249751906],[-123.86200795058586,49.34875907279831],[-124.00023291633309,49.42419205607542],[-124.02306001004446,49.433344981319074],[-124.04814010502469,49.4435420692261],[-124.0843032742771,49.45804944481162],[-124.11960787039664,49.472846431950856],[-124.15812531472385,49.49032391543544],[-124.18315414257538,49.504035137095045],[-124.22117144266582,49.51892892989595],[-124.23685744800484,49.523944251761534],[-124.27008027551634,49.533132286377025],[-124.30229518791089,49.54153143494938],[-124.32344950339066,49.550089235383524],[-124.35804880373438,49.55808542319792],[-124.39241839418914,49.5682453403214],[-124.41737648032523,49.578363734533816],[-124.44627591774979,49.58959758821449],[-124.46611616652906,49.59752354289299],[-124.4911646276783,49.60711086197482],[-124.51540951184454,49.619625516831114],[-124.5517807950956,49.638167089979966],[-124.59131948222404,49.65776505664209],[-124.63383790547314,49.68122979025696],[-124.67751917735802,49.70430926117986],[-124.71511471019251,49.72837199333778],[-124.74619197390928,49.75223537280125],[-124.78168362111893,49.776784539819076],[-124.78550381109564,49.779830118162685],[-124.78732570889623,49.78128272641043],[-124.80030687172598,49.79029449813117],[-124.82125974472328,49.81032089993528],[-124.84360777894467,49.83746230898465],[-124.8794624004956,49.8798178852306],[-124.89258290620486,49.9010604776211],[-124.89640657192966,49.92372785349895],[-124.89435748326568,49.93704912217991],[-124.89337496515779,49.94368169167384],[-124.88246386410493,49.960853422640504],[-124.8739429178801,49.974624632173885],[-124.8635638646137,49.98832012664997],[-124.85831640672328,49.99571701581407],[-124.85737605682162,50.000405372218545],[-124.85740815472968,50.00246590876188],[-124.85819159864973,50.00572169716722],[-124.85830894736674,50.01218219807871],[-124.85869434713591,50.02298938443552],[-124.85999929262667,50.0349927922842],[-124.86105688422012,50.04853988199309],[-124.86283876233911,50.06219534886659],[-124.86333718814335,50.07357161345582],[-124.86614341759145,50.085445759646674],[-124.86749822750666,50.09109903192159],[-124.86754930267386,50.0912934199069],[-124.86940539418842,50.09760301795057],[-124.87161173739617,50.10616033966782],[-124.87435888529549,50.118894482333936],[-124.87588954983711,50.12883407136619],[-124.87953169334904,50.13715096257827],[-124.88710551856437,50.146693507095094],[-124.89865639277448,50.15860462932877],[-124.91085575231152,50.17233601964823],[-124.92035674407397,50.17968672287064],[-124.93033827841667,50.188173804660714],[-124.9421566024747,50.19916128748139],[-124.94932089350777,50.20561084064118],[-124.95623744141818,50.21195189278005],[-124.9639291158771,50.2212626557629],[-124.97167182919165,50.22907829130429],[-124.97934178233173,50.23712967240334],[-124.99132628898289,50.24679064043783],[-124.99864738921458,50.25123853707671],[-125.00166580772502,50.25430111806823],[-125.0031594575528,50.25527073981298],[-125.00645148715755,50.25739635205207],[-125.0126291665174,50.2623121344719],[-125.0265517979605,50.273842181131926],[-125.03501675899082,50.28096132656114],[-125.04006618683799,50.28708562477807],[-125.05393644709818,50.296439043053965],[-125.0643693010396,50.303194438432165],[-125.07585784965555,50.31273923829022],[-125.08931634111991,50.3230634150889],[-125.10267712086521,50.33224470851213],[-125.10831939149038,50.33613404594153],[-125.11467296282461,50.340350608245096],[-125.11995915226605,50.345309274176216],[-125.12016111418657,50.34504238989067],[-125.12487895320092,50.348193804720964],[-125.13449742251186,50.35386214482817],[-125.14288286554968,50.36017608823967],[-125.14800210825133,50.36457870946568],[-125.14897171076181,50.36760180635426],[-125.14790875022527,50.374761698083645],[-125.1478097379114,50.381509933474035],[-125.14811315984684,50.38631111891224],[-125.15321463723335,50.39334961009296],[-125.160472285647,50.397275176548646],[-125.16914831933524,50.400663275150926],[-125.1774013923086,50.4041637983269],[-125.18180082699604,50.406025629348115],[-125.18981050333396,50.40907913136638],[-125.19838559128773,50.41047199100208],[-125.20937422779646,50.41232229819627],[-125.21797834269593,50.416173788292305],[-125.22654782844407,50.422133266037996],[-125.23560719214721,50.4292321255004],[-125.24467871447031,50.43661554730118],[-125.25118384201528,50.441797300168794],[-125.26079938335974,50.44637600409574],[-125.26885432592545,50.449139686408785],[-125.27893045007036,50.45067027894477],[-125.28734243452834,50.450567930410784],[-125.29363954880681,50.448771740574536],[-125.29910933919903,50.44579172020905],[-125.30546347478683,50.445708674586456],[-125.31686684884777,50.44985502429081],[-125.3393151592094,50.46381012012161],[-125.36417484084994,50.47967850440401],[-125.37157815103092,50.48455356659827],[-125.37409064495897,50.48738404800617],[-125.37960891151475,50.489030641491695],[-125.38519270105299,50.49003713764805],[-125.38730113661846,50.4915565951824],[-125.39269251480371,50.492227510008156],[-125.39701451228534,50.49274018247244],[-125.3990106211186,50.49637927012844],[-125.40254297222258,50.50331002379063],[-125.40873604304889,50.506427224887325],[-125.41178621970111,50.50615758359294],[-125.41523284614499,50.50468034238647],[-125.42657880261879,50.51751366279115],[-125.41902802462101,50.525395063125686],[-125.41902306765917,50.52796914669105],[-125.42317855442468,50.53185866814298],[-125.42736165137691,50.53363171995925],[-125.43202761816188,50.536312836711964],[-125.43633620080928,50.539398484877815],[-125.44007225919744,50.54089362834749],[-125.44641489718809,50.54280762780628],[-125.42082907092151,50.551052528560746],[-125.4259287967797,50.55858651738944],[-125.42620316022679,50.564761259075325],[-125.44443218651264,50.57309394739782],[-125.44583447184836,50.575077446453875],[-125.44690699293572,50.577465248661696],[-125.44718273145034,50.580320185389354],[-125.44225027499691,50.58616552469248],[-125.43885743811468,50.58969996277189],[-125.43996024239975,50.59305933023044],[-125.44789305104024,50.59958306331534],[-125.4342579971718,50.60823343028387],[-125.43374240362117,50.61213256978433],[-125.42593618532263,50.612291940453986],[-125.42114723280939,50.61418967855642],[-125.41656397427,50.61436902787688],[-125.41565015709389,50.61941027277189],[-125.41397377706654,50.62326611783075],[-125.41221611211532,50.62466279750479],[-125.40886883558701,50.62648168296741],[-125.400619696212,50.629966483018464],[-125.3872251613555,50.63311425226454],[-125.37813843978122,50.63558100791185],[-125.3747399271492,50.638890947475765],[-125.3748642326331,50.64317676450312],[-125.37275002438135,50.64463312675192],[-125.36542869507748,50.646105406223406],[-125.36046658024256,50.64879903208103],[-125.36186440905577,50.655985312480446],[-125.34537247559186,50.66700879553856],[-125.33366235380085,50.669158318729814],[-125.33032242356232,50.67194557319329],[-125.32798490582957,50.67489204319924],[-125.33092687054776,50.67983810093933],[-125.33336602337691,50.68626492901997],[-125.3066275140965,50.69186519300165],[-125.30271579005135,50.69385918939626],[-125.2992977176406,50.6968734773697],[-125.2964448146642,50.70085575025644],[-125.28926853188723,50.704951419821356],[-125.28658193455242,50.70818777836372],[-125.2931556805995,50.7145136318041],[-125.29199784458129,50.71784339880214],[-125.29208733546176,50.72384836258314],[-125.29187854638388,50.728994665349255],[-125.27699197995022,50.73443934673918],[-125.27450826794986,50.73899257807273],[-125.27275696837938,50.743818845573145],[-125.26970573917512,50.747459313612076],[-125.26460295649363,50.75163806948243],[-125.25794723063461,50.755320663917026],[-125.25302208754961,50.75978522612066],[-125.24961442160026,50.76337106501338],[-125.24430370523471,50.76704106814006],[-125.2379185172427,50.77043345730422],[-125.22859902893812,50.77277623750712],[-125.22423981155083,50.774598672600625],[-125.22180994671217,50.77806465276624],[-125.22174573872026,50.78257832534707],[-125.21878703767686,50.786219608312585],[-125.21511827660376,50.79066253085484],[-125.21349304997653,50.79348777568797],[-125.21257773387644,50.79629664619204],[-125.20883212431819,50.79777471446998],[-125.20164980380812,50.79928994004908],[-125.19823562604034,50.7996680396957],[-125.19482829029249,50.80045195547951],[-125.19168055344436,50.80100579029608],[-125.18553783082848,50.80072771527765],[-125.17633868436974,50.80375132134899],[-125.16113018918608,50.80912860209673],[-125.15818684319316,50.81688318928948],[-125.15145652842993,50.81827564925389],[-125.14842985526023,50.823569938988726],[-125.14810002882577,50.82821103569747],[-125.15166866132651,50.8333139552245],[-125.15575470465963,50.84116228254985],[-125.16083037985028,50.84179321540695],[-125.1648025321783,50.8414047022766],[-125.16812183120147,50.84096685021753],[-125.17243134180013,50.840002370051764],[-125.17857369842663,50.8398163103734],[-125.18353416982022,50.83975996300913],[-125.18681083028493,50.840868889460666],[-125.18695724565849,50.842977827560745],[-125.18741870298189,50.846521596807406],[-125.18687819417431,50.84967300724958],[-125.18484293469908,50.85450204921478],[-125.18292123504307,50.8569820973374],[-125.18025609351672,50.858902623651176],[-125.17681977219854,50.871811175036584],[-125.19441184413778,50.87726937366231],[-125.21856776700692,50.87527140428913],[-125.22594222923996,50.870721935553306],[-125.22799195470375,50.86978125733317],[-125.23449268007926,50.86964958919101],[-125.23908742964434,50.87205304620434],[-125.24376412724735,50.87468531236765],[-125.24493720209728,50.877643535635244],[-125.2449494155574,50.8811305453394],[-125.23808867577031,50.88476413942611],[-125.23045869391085,50.886741200050366],[-125.22802626853952,50.89003007000464],[-125.22849688570874,50.89408375466591],[-125.23015811772929,50.8984099787035],[-125.23279731164325,50.90215515462001],[-125.23703257500618,50.90496643546129],[-125.24286142315057,50.90615268050567],[-125.24678508343214,50.90724612883113],[-125.24855920079409,50.90922651947855],[-125.24924859722277,50.911395512382384],[-125.2495241137991,50.914481134951444],[-125.24870993169031,50.918034868424144],[-125.24699583246993,50.92091629549987],[-125.24288667331372,50.92313606820911],[-125.23822594832937,50.92428044143338],[-125.23150416481957,50.92355937103171],[-125.22617842786279,50.923623249836226],[-125.22469122073596,50.925640936218336],[-125.22432228241443,50.92884785753953],[-125.2227204604353,50.93252669930713],[-125.21864597941943,50.93263424210343],[-125.21070455854004,50.93318824059881],[-125.2091136073355,50.93457353071411],[-125.20799243161443,50.93676587702367],[-125.20605324271237,50.938501150577345],[-125.20193839045481,50.940036841183776],[-125.197991121444,50.94174196334853],[-125.19634010319982,50.94405107532707],[-125.19519555079529,50.951441132503085],[-125.19544326590335,50.954294770229204],[-125.19717187091881,50.95799079552734],[-125.2019284439777,50.95971076467535],[-125.22889347955883,50.956020178271906],[-125.25159256673413,50.9583823358218],[-125.25145142360539,50.97868456624442],[-125.25886523586773,50.987173855725345],[-125.26440759143144,50.994311757991994],[-125.26448018408477,50.99682605023095],[-125.26440925156535,51.00026040150671],[-125.28103876895375,51.00286662380631],[-125.29160862753722,51.0072541285057],[-125.30182297782684,51.0126126988723],[-125.3093493670787,51.01850102294929],[-125.31640392524763,51.02365071357683],[-125.32096710107368,51.031325561316855],[-125.31881409621339,51.03773007506113],[-125.31055141083581,51.04223961881496],[-125.29755439261112,51.04449221263908],[-125.28721079360776,51.04410840631086],[-125.27592230450506,51.04565768759568],[-125.2666185939475,51.04800337547658],[-125.2487756831385,51.04782732957269],[-125.24205861416662,51.05243363906017],[-125.23462619485802,51.05869922168834],[-125.24247771539771,51.06304612174434],[-125.2487370372786,51.069577821034216],[-125.252296012367,51.0770890270262],[-125.25515577767824,51.08632334282253],[-125.2652133489247,51.08557230045165],[-125.27378492814607,51.08917515390336],[-125.29232307384031,51.09699537825284],[-125.29360801757298,51.103380117089436],[-125.28553272348739,51.10954199740659],[-125.28431708272419,51.11845073739086],[-125.28106469203261,51.1250383489191],[-125.28383704564322,51.13404468889999],[-125.29478817124085,51.138024965820506],[-125.30767419043939,51.1373169364831],[-125.32747258487397,51.138269479229876],[-125.31951772836938,51.14580405209159],[-125.31227658428256,51.15235644277702],[-125.30061237667744,51.155174080689854],[-125.2923314741757,51.159337769704216],[-125.28109912910138,51.167114349949614],[-125.28874609856219,51.174088908976465],[-125.29262498493968,51.18314077394559],[-125.29899809982642,51.190351163400635],[-125.31633183305563,51.193833698399],[-125.32848540106981,51.19808695108481],[-125.33344681258473,51.206334426243416],[-125.34109871235741,51.21301780888122],[-125.33037987467897,51.21303447087091],[-125.32423421779458,51.22044152611263],[-125.33088367094187,51.22713183193511],[-125.3345835638869,51.23561671131426],[-125.33323738347438,51.24218927923524],[-125.32862234247591,51.24867341009343],[-125.3208050311718,51.254375622172155],[-125.30271545209709,51.26094301259391],[-125.2907439367393,51.264104907237645],[-125.28742183756363,51.27263543502105],[-125.287168992978,51.27942958049995],[-125.27526527597777,51.28070503829794],[-125.25904344332228,51.28525689817973],[-125.24395975386986,51.2876887042947],[-125.23475816223562,51.29270961395288],[-125.22024012104579,51.296222141996815],[-125.21480014937612,51.30424370560333],[-125.20473621185393,51.31371883301223],[-125.20419125953096,51.3200611280624],[-125.20848624488487,51.32728841796474],[-125.21479781503827,51.33512867114934],[-125.22780930965877,51.34048067672947],[-125.23620261896039,51.352928640505084],[-125.24518264877985,51.36160903726104],[-125.25440979974954,51.36863634127172],[-125.25598227516524,51.36919198365195],[-125.25874652987572,51.370715313756726],[-125.26059632390115,51.37189431437459],[-125.26236456677414,51.37365677029126],[-125.26256315760344,51.37382187960916],[-125.26486372943066,51.3747187374156],[-125.266705096887,51.37555872146182],[-125.26799025729231,51.376117943161496],[-125.27020003485038,51.377300787717644],[-125.27196683652166,51.37831411828013],[-125.27463812225749,51.37943531207339],[-125.27729987802212,51.38026801824495],[-125.28033391404433,51.38121185983969],[-125.2818082786497,51.3816559853445],[-125.28455840183767,51.38237799634351],[-125.28711373736746,51.382696473806675],[-125.29060052042362,51.38323950777682],[-125.29837922638279,51.38436895723279],[-125.30231503069618,51.38473432464558],[-125.30523300460676,51.38487845486784],[-125.30862213548876,51.38525147373671],[-125.3115600495445,51.3859655570411],[-125.31532542286567,51.38713280111982],[-125.32000459675356,51.38782909812466],[-125.32036426665728,51.38782845264813],[-125.32550962238986,51.389096173566564],[-125.3275214399127,51.38924948897171],[-126.00006220311604,51.509830853323486],[-126.02980966965389,51.51532052005944],[-126.06966739243508,51.52175411735039],[-126.07881140539581,51.5233888008515],[-126.08229589078645,51.52271324712994],[-126.08725043303393,51.52210546488721],[-126.09100854554102,51.52171717433506],[-126.09843194352096,51.52105978750395],[-126.10503378993135,51.52011211756016],[-126.10862281988851,51.518578589690975],[-126.11102406480614,51.516359000404165],[-126.11170953348365,51.511794751688605],[-126.10964932264115,51.50710190304629],[-126.1062163653211,51.50229585841471],[-126.10349551610794,51.49948535318163],[-126.10288592285227,51.49628865877946],[-126.10292051151224,51.492575320513296],[-126.10277448989473,51.48909267682491],[-126.10296177025447,51.488633670299144],[-126.10198586839306,51.485548331623335],[-126.10000504932202,51.482286044428236],[-126.09883385669823,51.48034288589551],[-126.09838826283293,51.47891065537065],[-126.09704558710636,51.4759366265006],[-126.09743305557215,51.473937694331774],[-126.09911115673289,51.470635138187276],[-126.1019092600112,51.465276835699584],[-126.10358233632431,51.46242462867718],[-126.1056174378828,51.46003371247955],[-126.11076917881635,51.45696886184911],[-126.12121944257574,51.4542550092764],[-126.12854840856319,51.45274081153638],[-126.14046118899562,51.450208624460615],[-126.14366505149506,51.449474821103635],[-126.14962115585453,51.44846303646472],[-126.15456851721892,51.44716623072172],[-126.15567139986976,51.44665538261195],[-126.158792156716,51.4452335468267],[-126.16429756798682,51.44262682559873],[-126.16870880568831,51.44006746725292],[-126.1721002964412,51.43904929662237],[-126.17457706701116,51.437798510115826],[-126.17586333672102,51.437117213464184],[-126.1767827882168,51.43655146469163],[-126.17826957076485,51.435834482849],[-126.17853770340105,51.436035440571445],[-126.17999020998795,51.437299230439734],[-126.18327177326161,51.43788186477485],[-126.1864827388974,51.43686355284824],[-126.19033083009441,51.435847448831574],[-126.19370101694092,51.43672413182785],[-126.1977003212021,51.43896106449866],[-126.20177860985407,51.44263263086898],[-126.20568047251253,51.445393373010184],[-126.21103094799538,51.449927259954016],[-126.21302791470279,51.451588429656844],[-126.21668054519482,51.45188667919412],[-126.22125236268381,51.451785317453854],[-126.22371559735211,51.45225617882821],[-126.22571988468698,51.45294779084682],[-126.22845693302814,51.45358684566115],[-126.23210684856595,51.45434402514226],[-126.23457509604798,51.454354098061174],[-126.2369597559456,51.45338880820795],[-126.23908469527927,51.450708631837394],[-126.24192829492283,51.44975124219018],[-126.24640447693197,51.44982633154285],[-126.2496030993276,51.45022940027164],[-126.25443824304445,51.45133272265555],[-126.2576306412435,51.45202728178526],[-126.26375923955761,51.451478075724154],[-126.26889077999948,51.450014865647546],[-126.27255020788576,51.449623021950764],[-126.27794068423512,51.4500407746617],[-126.28031270992427,51.45067274443778],[-126.28249248422425,51.45262618443927],[-126.28586223681022,51.45406445031492],[-126.28796220414145,51.454352520174965],[-126.29353209236395,51.45482853891053],[-126.29554354275895,51.455063411637205],[-126.30119552541952,51.45724973330367],[-126.30283437872484,51.458282009000214],[-126.30565279791513,51.46057546711159],[-126.3073756311719,51.462124640235565],[-126.30884521420057,51.46144527817743],[-126.3137963669766,51.45923225007221],[-126.3162770793817,51.457924531983465],[-126.32103483764062,51.45695926707374],[-126.32596808186055,51.45783207931487],[-126.32961958350973,51.45852778560503],[-126.33610397477665,51.45952017861106],[-126.33874880247231,51.46066844351975],[-126.3422174204123,51.461648119409766],[-126.34669130896668,51.462511881366865],[-126.34953287672293,51.46126741694245],[-126.35229257842354,51.45870040794604],[-126.3563368581113,51.45500348022954],[-126.35955499140253,51.452437647128754],[-126.3614793166525,51.45112957452385],[-126.36265810779251,51.452790726806484],[-126.36319715441489,51.454502152685656],[-126.36500951328887,51.45696733020439],[-126.36728383368698,51.458970446739805],[-126.3691092583083,51.45971957035751],[-126.37148465176303,51.4598913346639],[-126.37550344526598,51.46099105019274],[-126.37713726503881,51.46247776245484],[-126.37667155532695,51.4644717908216],[-126.37509721644352,51.467442721080815],[-126.37297730218594,51.47068858607383],[-126.3712280441948,51.47262787527193],[-126.37084345156396,51.47531323753585],[-126.37404172268113,51.47606395194309],[-126.37669375838324,51.47624255028436],[-126.38236207880753,51.47631113581853],[-126.38666127471674,51.47671898894934],[-126.39077234918709,51.477645625851416],[-126.39552740395987,51.477424445445365],[-126.39873304251458,51.47663409806185],[-126.40303845251418,51.47573038697037],[-126.40624085705429,51.47510644137755],[-126.41145980732453,51.47443249313671],[-126.41657969486805,51.47444526146388],[-126.4208780685152,51.47484677203135],[-126.42361156788473,51.476739336463126],[-126.42369860743561,51.4778266821769],[-126.42459667305808,51.480800238291714],[-126.42870529929237,51.48246427455337],[-126.43217272717006,51.484409946520266],[-126.43436228601023,51.48595427964902],[-126.43646002366823,51.48767337697011],[-126.43947376765186,51.48842183517912],[-126.4430447763051,51.487399981630794],[-126.4480875879455,51.48517853978089],[-126.45010807009936,51.4836964134962],[-126.45048630395416,51.48050148815652],[-126.45086392428496,51.478045310563125],[-126.45115768767222,51.473649147465764],[-126.45290552183316,51.470680969817124],[-126.4556633420928,51.46679996575201],[-126.45824113012388,51.463148480848055],[-126.46274730307296,51.456812205209985],[-126.4673226022092,51.45550777311922],[-126.46997342402155,51.45522926977143],[-126.47317943366875,51.45340350978498],[-126.47547148788928,51.451349811529724],[-126.47822326549216,51.44861648820519],[-126.4779640220985,51.445298932684175],[-126.47842721150562,51.44284894136417],[-126.47862063904678,51.439933355900784],[-126.48054634759704,51.43805104386413],[-126.48375324547801,51.4360499213984],[-126.48449385813876,51.43291824776021],[-126.48724370681228,51.430572848376976],[-126.48879841139879,51.43012243525948],[-126.49227384722381,51.42904326548021],[-126.49091006939935,51.427153638116664],[-126.49200758282372,51.42647179829459],[-126.49475241065105,51.4256761882868],[-126.4979509718365,51.42522521344648],[-126.5003282196888,51.42528151597867],[-126.50178676420201,51.425739567398495],[-126.50461775776489,51.42620272925392],[-126.50837155414393,51.42317860244657],[-126.51056761435927,51.422437236165635],[-126.5126686199488,51.4220401302876],[-126.51532012957807,51.4214761262645],[-126.52016388057977,51.42056320727466],[-126.5239137772482,51.41908293353013],[-126.52793935955714,51.41742903445955],[-126.53058820884387,51.41623357304709],[-126.53561317238736,51.41572024574524],[-126.54018243396307,51.415841087074405],[-126.54346955336428,51.41624669297691],[-126.54912952131353,51.41739247713204],[-126.55278687012495,51.41688274339844],[-126.55598415966001,51.41614121961056],[-126.558544997542,51.41431275031572],[-126.55991597769446,51.412600603203174],[-126.5618373543153,51.41003581410877],[-126.56412573669694,51.408262964270726],[-126.5660511755444,51.405978008541226],[-126.56824095712432,51.40523946787966],[-126.57052233066727,51.40484206241506],[-126.57454517711435,51.40438475420892],[-126.57737451304203,51.40421556345375],[-126.58468115859047,51.404505222707265],[-126.58787571394294,51.40467777154235],[-126.59098112067342,51.40531239532174],[-126.59298974158055,51.406052525822794],[-126.59654907081773,51.40731462221616],[-126.60184433021921,51.40874243592099],[-126.60476624207199,51.409999232026365],[-126.60951648228304,51.412112317421595],[-126.61362569782995,51.41228260405205],[-126.61792031388019,51.41245677750512],[-126.61800864294734,51.41343185197294],[-126.61444498159617,51.41445985227095],[-126.61143087528681,51.41594142379198],[-126.60960303902341,51.41805382860577],[-126.60832156660352,51.42182435000949],[-126.60868519318021,51.42541997615349],[-126.61051122120506,51.42868013341412],[-126.61242703792652,51.43119253623301],[-126.61470946734835,51.43467846103841],[-126.61680919194329,51.43730366456562],[-126.61973590395013,51.43873673724823],[-126.62430355602817,51.44141786476417],[-126.62530796189932,51.442161800749545],[-126.63006035118336,51.44461728574469],[-126.63490341299972,51.445140633060966],[-126.64194271479623,51.44530920210825],[-126.64779152782641,51.445823513350554],[-126.65163345208336,51.446508924827285],[-126.65757583413925,51.44844930981581],[-126.66223838191726,51.45039236191124],[-126.6642506489564,51.45187504219121],[-126.66681060274185,51.454671628861256],[-126.66855075078739,51.4570713248585],[-126.67047230474708,51.45912885181207],[-126.67120399669257,51.46004227409776],[-126.67468148544116,51.463644964430046],[-126.67733345444752,51.46489752765298],[-126.68163318273274,51.46586697430169],[-126.68776061668753,51.46723303968377],[-126.69197328619423,51.470431322657234],[-126.69389743827891,51.473633902293884],[-126.69334956333945,51.4761458566278],[-126.69463247113643,51.4788867215363],[-126.69893297755934,51.47917001611702],[-126.70167642047184,51.47831168174194],[-126.70460060054243,51.476141202018006],[-126.70907508247286,51.471570152539606],[-126.70980408255308,51.46962466992829],[-126.70961734857924,51.46608278155527],[-126.70851403052906,51.46328707518386],[-126.7075034484085,51.45986248864427],[-126.7108852840003,51.45779553234968],[-126.7167304127561,51.45488158957541],[-126.72047174085452,51.45116784343446],[-126.72211250110009,51.448427162423215],[-126.72521504703197,51.44425335383723],[-126.72639844755128,51.44236371014747],[-126.72748905305944,51.43905703806182],[-126.72921762074661,51.43580066058814],[-126.72839154381829,51.433798756920844],[-126.72336028042015,51.43123354675422],[-126.71915398657264,51.42883399545984],[-126.71531104318377,51.42483765754505],[-126.71229259664561,51.42204046118924],[-126.70872145365202,51.41746884925942],[-126.70460631709041,51.414728764004174],[-126.70176804935298,51.41027633272666],[-126.69920648534567,51.40570934453731],[-126.69956893176146,51.40434276059478],[-126.70157234854041,51.40062329989818],[-126.70531224316245,51.397365939630504],[-126.7081380985529,51.39462409983289],[-126.71133036803661,51.39176375028226],[-126.71333248293736,51.388338002306185],[-126.7115916923829,51.383481599924544],[-126.71030463309766,51.379257378073866],[-126.71239884460309,51.373768722270256],[-126.7161307908761,51.36960040621382],[-126.71932149535881,51.36656472408467],[-126.7216873637327,51.364335326892636],[-126.72469475882477,51.36227850301845],[-126.72697387395192,51.36125070019535],[-126.72824619206091,51.358789723759884],[-126.7265099980348,51.35713966152156],[-126.72413721491051,51.35622184591335],[-126.72221675703805,51.35411115974096],[-126.72430897981026,51.35091227539059],[-126.72503565261304,51.34931541876434],[-126.72721907544212,51.346170860272075],[-126.72885448521713,51.343366960910096],[-126.73030930761043,51.34068087949022],[-126.73294914931128,51.338678323177255],[-126.73504348964828,51.33747984062288],[-126.74115076306786,51.33662037581626],[-126.74634652823936,51.335353102567076],[-126.74807503962475,51.33352897679736],[-126.74961843747984,51.33112367079372],[-126.75006776248584,51.327753859775115],[-126.75069616287801,51.32330057819363],[-126.75104995374126,51.319125687581675],[-126.75159000190284,51.31735759702101],[-126.75423027829395,51.31541281920998],[-126.7554142873387,51.314779912652334],[-126.75960340017009,51.31392321935145],[-126.76188105062884,51.31357520944626],[-126.76543119551096,51.3118075043625],[-126.76761565525888,51.311114960457765],[-126.76816023623692,51.309342251951264],[-126.76495973229856,51.305979598049014],[-126.76403838758388,51.302830959426565],[-126.76448550055822,51.29946548689637],[-126.76712776004342,51.29866100056573],[-126.7726838559538,51.29905523898194],[-126.77587476232985,51.29950975796892],[-126.78598560408408,51.29795375470102],[-126.79591527645326,51.297139840088114],[-126.80045987714226,51.29399497822265],[-126.80518188775648,51.289984602926815],[-126.80791548000713,51.28992921627296],[-126.80956148840727,51.29158048067969],[-126.8119369906707,51.29317711486001],[-126.81339952697081,51.29488798710277],[-126.81477693859945,51.297914601647356],[-126.81298669120665,51.30597263348216],[-126.81191570745935,51.31231809615156],[-126.81302088069779,51.31477041803517],[-126.81622640667375,51.31904732508303],[-126.81814271021359,51.31921752739717],[-126.8267161199408,51.32006419469949],[-126.83546536539814,51.319934918584174],[-126.84129252466076,51.31797801504314],[-126.84694238504957,51.31757177630016],[-126.85569366633665,51.3176675876455],[-126.85868978937395,51.31532604001258],[-126.86049355814168,51.311094811528505],[-126.86174508835538,51.30617594204793],[-126.8645603117464,51.304002213419274],[-126.86948780633385,51.30548274354341],[-126.87305255544757,51.30729562898772],[-126.87560330929725,51.30729276658849],[-126.88043781633024,51.30785170474991],[-126.88580796776529,51.30664559577951],[-126.88998872955246,51.304863953024274],[-126.89152777176025,51.303029475711554],[-126.8933261826985,51.298401006856906],[-126.8947762425217,51.297198947317305],[-126.89713034590797,51.29434013060587],[-126.90003118543177,51.29164466746915],[-126.9034780052409,51.28929825511755],[-126.90919499370086,51.28493715998722],[-126.91172460942116,51.282139988113265],[-126.91380539956016,51.27973351801054],[-126.91606153088627,51.276014312692276],[-126.91740572869412,51.272580746139525],[-126.91528969592187,51.2688738914058],[-126.91335275932259,51.26487712564269],[-126.91333564161602,51.26230742422888],[-126.91486767381194,51.25990419297799],[-126.9193126141421,51.25703625796568],[-126.9202991363653,51.254635680814495],[-126.92008977857456,51.25029609931205],[-126.92052140222823,51.24686588396983],[-126.92077910050962,51.24378215949624],[-126.92386669010405,51.242920357965055],[-126.92932320099074,51.24215909355685],[-126.93258566208326,51.240038147605624],[-126.9371318368563,51.239393427771724],[-126.94204563841451,51.23927011054877],[-126.94576878627448,51.237946765780656],[-126.95011764740333,51.2351389329798],[-126.95611451326056,51.23415185484562],[-126.9587639011064,51.235173668112864],[-126.96240880397173,51.23618693954692],[-126.96677207093566,51.235204222867246],[-126.9723287021403,51.23638598148244],[-126.97479026056223,51.23695283943184],[-126.97907431911575,51.23791012776559],[-126.98272815518256,51.23961790444238],[-126.98410008131192,51.240297838529656],[-126.98747598619376,51.24166110684224],[-126.99039190429984,51.24216417815907],[-126.99375758869864,51.24169752771628],[-126.99975400473684,51.24053308346887],[-127.00602359236606,51.239256462729536],[-127.00946481924719,51.23736228605576],[-127.01173054016078,51.23615693226481],[-127.01681819526338,51.23488353690307],[-127.01981364085783,51.234017104397914],[-127.02425248980492,51.231830652207584],[-127.03016118945543,51.23118495829745],[-127.03380792974268,51.23202647377085],[-127.0357304891619,51.23339205965736],[-127.03893531780194,51.23555330615573],[-127.03939096744908,51.23572419036263],[-127.04330585312265,51.23605567263232],[-127.04757672128852,51.23518009005165],[-127.0525755393496,51.234476564771306],[-127.05648153545614,51.23360797057624],[-127.06266273923633,51.232899115011094],[-127.06684592875237,51.232653213735595],[-127.07112025745013,51.23247194202348],[-127.07411560857967,51.23154008839235],[-127.0773884381632,51.23119133672951],[-127.08248292133723,51.231286314566425],[-127.08875207913967,51.23028395439185],[-127.09083157276997,51.22896598279101],[-127.08954907216895,51.22800477823862],[-127.08626688699749,51.22755603414916],[-127.0822559773902,51.22643126251782],[-127.08196955527872,51.225231483227894],[-127.08514376154305,51.224132069332356],[-127.0893284886212,51.22416869182708],[-127.09469254564999,51.22363764387879],[-127.10021824560398,51.221502690582895],[-127.1114035864951,51.2208876481304],[-127.11731336109233,51.220459569295954],[-127.12230806218805,51.21969910185366],[-127.12648525608752,51.21917101539832],[-127.13191392559125,51.216227397520626],[-127.13663627510796,51.21552793089903],[-127.14116496166504,51.21385212228648],[-127.14434110079262,51.21308825018079],[-127.14868835904304,51.211413411083115],[-127.15348969724563,51.209854416962],[-127.15748229572787,51.20892525948612],[-127.16447625970429,51.208148565059],[-127.1674651841174,51.207107066039526],[-127.16754407704971,51.20602151683532],[-127.16742849116837,51.203909365529874],[-127.17125233476683,51.20428448722938],[-127.17698992687662,51.20506266609196],[-127.1811783565195,51.20550155052081],[-127.18946354281073,51.20609025878061],[-127.19465388850841,51.20657869742091],[-127.19728641392172,51.206164743317586],[-127.1999051994304,51.2047811735566],[-127.20124466548293,51.202722034537935],[-127.20413153855941,51.20070362735419],[-127.20674763840805,51.19920767923934],[-127.21075357658047,51.19953013593497],[-127.21222392236537,51.200777561566824],[-127.21315664205748,51.20266431084902],[-127.21344834681148,51.20403100210756],[-127.21374510708917,51.20597451064325],[-127.21422166263709,51.20774549588225],[-127.21605775966162,51.20922070014846],[-127.21899196698064,51.21092084338673],[-127.22054466520173,51.211363114881],[-127.22574458296643,51.212485828351994],[-127.22758445598564,51.21430255852276],[-127.22897054866215,51.215836310660166],[-127.2321891392742,51.218678350250556],[-127.23502696487803,51.21986397533197],[-127.23675439585728,51.21996966091018],[-127.24149237393715,51.22028470806732],[-127.24922718999701,51.22047724611878],[-127.25714742974448,51.220950577830145],[-127.26369886664251,51.22091790750502],[-127.26785976133854,51.219180492044124],[-127.27048493559204,51.21825594398225],[-127.2703664857624,51.21624771663904],[-127.26962682343894,51.21556803346943],[-127.26870153881482,51.214379762569784],[-127.26742718989082,51.21432672427687],[-127.2664247235751,51.21410227270014],[-127.26568409119496,51.21313413118708],[-127.2671259033833,51.212152751320446],[-127.27068149256257,51.21270486060878],[-127.2735045468857,51.2129783534997],[-127.27858841059248,51.21231991127548],[-127.28159436213036,51.212474407882965],[-127.28432070027306,51.212344681440705],[-127.28778047740532,51.21267343034968],[-127.29215500019846,51.21316165669167],[-127.29689700702538,51.214052902515974],[-127.29999566502566,51.21449092528916],[-127.30309376065027,51.21475547071938],[-127.30536770661263,51.214743246624096],[-127.30709706921064,51.21473167542383],[-127.31009185273557,51.21431706726126],[-127.31381571830015,51.213841717915884],[-127.31598188401381,51.21285521055819],[-127.3178662409058,51.21106889168619],[-127.31967140765236,51.21014823981222],[-127.32176513798788,51.21013723118878],[-127.32596189718949,51.21108527893198],[-127.33080796811686,51.21271128200443],[-127.33372763356715,51.213205487339536],[-127.3366646234225,51.215133795795694],[-127.3410640317183,51.21715748130884],[-127.3449152762818,51.219082576367086],[-127.34746329123541,51.21911956204985],[-127.35063982428552,51.218702835112126],[-127.35589849618835,51.21747483824238],[-127.35779774844832,51.21671800210533],[-127.36097229181375,51.216069804974175],[-127.36279209891082,51.216288614254225],[-127.36681367620191,51.217403936279695],[-127.37138615013396,51.21903265487048],[-127.3754109264736,51.220264917729416],[-127.37870582420402,51.221499220567395],[-127.3832819327626,51.22301517100427],[-127.38395165454476,51.22506763948545],[-127.3839854318419,51.22718288567037],[-127.3840057572978,51.228436882992305],[-127.38338749953328,51.229585894796394],[-127.38705609284258,51.23116330175432],[-127.38978514262949,51.231319457340135],[-127.39506023310688,51.23111080919459],[-127.40069096014834,51.23044631647034],[-127.40368665000989,51.22996693917148],[-127.40594019802381,51.22863585845923],[-127.40901178912601,51.227364120508064],[-127.41129367887595,51.22769256301585],[-127.41321360305761,51.22824547152606],[-127.41531947851914,51.22903620695219],[-127.41669417344055,51.229657056990085],[-127.42206302419761,51.22961488181281],[-127.42642757879815,51.22930061330087],[-127.43170358200388,51.22926981840978],[-127.43826000967375,51.22962374529765],[-127.44226660365851,51.229712420208855],[-127.44754503157993,51.22967187641658],[-127.45281789560225,51.2293522496411],[-127.45935973185708,51.228902627422016],[-127.4581741516177,51.22862779753912],[-127.46316668147298,51.22791059984426],[-127.46796645925195,51.22673494551137],[-127.47359148992368,51.225891220968606],[-127.47733151480507,51.226268902058564],[-127.47979071139227,51.22636411538057],[-127.48368544933973,51.22541794214012],[-127.48391947632125,51.2234153091609],[-127.48262430015801,51.222114609887676],[-127.47932757342934,51.2209972527366],[-127.47502250640714,51.21953773153236],[-127.47063021224058,51.21808703096134],[-127.46869403524603,51.216727734682394],[-127.46649042347498,51.21548579597557],[-127.46602769814514,51.215091659180366],[-127.46417129332899,51.213047703826746],[-127.46287120712162,51.21162505325486],[-127.46038805395706,51.20998703604118],[-127.4564392922543,51.20789757922771],[-127.45513886835809,51.20647989677295],[-127.45512049272588,51.205455936562785],[-127.45647021024469,51.20458438423531],[-127.45892443689077,51.20456730347914],[-127.46147189031316,51.2046067631443],[-127.46282985295728,51.2043703136165],[-127.46483459786583,51.20435612291834],[-127.46719370344213,51.20417116736471],[-127.47181940916892,51.20344371304527],[-127.47410206628645,51.20400546176587],[-127.47731400033271,51.20552309825296],[-127.48098238266154,51.20715813561393],[-127.48327379791161,51.20805294458861],[-127.48556859660775,51.20917943796423],[-127.48885148218135,51.209612124424645],[-127.49239743922641,51.20952941743815],[-127.49484576324998,51.20916929922173],[-127.49737985107295,51.20840560622185],[-127.49972348750917,51.20736264550547],[-127.5019614870117,51.20539841125806],[-127.50339685466746,51.204306273293774],[-127.50581572293474,51.20240351423769],[-127.50787994495492,51.200901095438745],[-127.51013226866506,51.19979851832343],[-127.51158307327248,51.19961747910735],[-127.51395446541186,51.199883162158756],[-127.5169701616416,51.20065814507168],[-127.52097865678826,51.20102796042187],[-127.5242623865372,51.201517973726155],[-127.52844664238634,51.201656166336456],[-127.53008434306558,51.20164914954096],[-127.53406131615873,51.200246580823055],[-127.53705005655799,51.1997670689793],[-127.54178015305374,51.199845146983186],[-127.5453262569349,51.199815764019306],[-127.54923659624977,51.19972851868387],[-127.55186018235938,51.19908132835135],[-127.5554841404271,51.19836249082219],[-127.56011919287417,51.19815937165803],[-127.56439769138319,51.19840998478873],[-127.56721780623533,51.19844160001704],[-127.56894453393737,51.19837216078536],[-127.57381359125625,51.19633561274263],[-127.57731448633159,51.194135566181124],[-127.58101771688072,51.192849618536165],[-127.58418399153375,51.19207788044313],[-127.58789737224518,51.19136066086164],[-127.59441666007943,51.18999646080576],[-127.59802416383734,51.188536191536926],[-127.59925796533811,51.18670029890265],[-127.60172379147848,51.18725352640495],[-127.605026226241,51.18870739120069],[-127.6083332490932,51.19028175741856],[-127.6112653242897,51.19128835518365],[-127.61397960386986,51.19063615721728],[-127.61679940220485,51.19067045695579],[-127.61898854201951,51.19098987141146],[-127.62207104125947,51.190567910221525],[-127.62722230740354,51.18903904296601],[-127.6325590659448,51.18779180829999],[-127.63853715713557,51.18682797295972],[-127.64388975817577,51.18626524443072],[-127.65026508656587,51.18672619713108],[-127.65683118779057,51.18764084276041],[-127.66161060275392,51.18982459606671],[-127.66327389110688,51.191011853894366],[-127.66983517412928,51.18758677723008],[-127.67696577675903,51.185347749934536],[-127.6897745383358,51.18483796850796],[-127.7041998503823,51.18444434253508],[-127.78919233803991,51.163730139475156],[-128.51015794216093,51.162322942706254],[-129.14083181955903,50.990181987118206],[-129.21220035388623,50.866259600877015],[-129.18291478260645,50.7106223890779],[-128.45155323875647,50.271254373500746],[-128.1178202702018,50.084739180204835],[-127.79716106242684,49.933934326850284],[-127.22098503175606,49.728999418938585],[-126.78420523580463,49.48310633376914]]]}' + )), 4326)))); + +INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Lower Mainland','2','2- Lower Mainland','AR10100000','WHSE Admin Boundary',8 + , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.00000098564614,49.202448339532594],[-121.00014568560898,49.202476491248454],[-121.00033534342066,49.20253380075804],[-121.00060345069075,49.20262830204319],[-121.00100749787137,49.20272067027828],[-121.00120867010956,49.202782735764934],[-121.00130398333712,49.202806904940935],[-121.00153481777824,49.20286471676341],[-121.00225328792033,49.20308418211366],[-121.00249148086802,49.20316939404701],[-121.00258585860254,49.20320226207662],[-121.00291488323614,49.20325757321046],[-121.00304963328311,49.203282443638244],[-121.00311602465521,49.20328806119983],[-121.0034538512703,49.203325453084865],[-121.00376378516587,49.203366629290336],[-121.00408961770134,49.20340374213232],[-121.00455436353974,49.203474938857134],[-121.00475676299932,49.20350971394525],[-121.00505370764371,49.2035598661685],[-121.00514483297535,49.203575093945965],[-121.00548540530092,49.20363488494033],[-121.00607936509324,49.20376648904696],[-121.00637857213604,49.203843532238466],[-121.00689292905916,49.20399654117625],[-121.00693949315192,49.204010819206815],[-121.00709708027766,49.20406296498349],[-121.0072747577575,49.204119985472005],[-121.00748967814263,49.204182125693414],[-121.00761318225665,49.20421576241304],[-121.00789769312178,49.20430171110753],[-121.00818981686837,49.20439674644119],[-121.00851431817019,49.20451020068443],[-121.00890989797597,49.20466558665036],[-121.00922047599713,49.204796718978436],[-121.00976147576883,49.20505358646164],[-121.01001621122808,49.20519284690138],[-121.01018610313048,49.20529038500115],[-121.01033299874523,49.20537812247219],[-121.01046170497406,49.20544330698201],[-121.01059457531139,49.205517698415576],[-121.01074879274594,49.20560126302753],[-121.01091033106331,49.205680655125576],[-121.01158811637711,49.20611951336692],[-121.01167605104814,49.2061165411791],[-121.0117485410139,49.20611341266933],[-121.01203340145064,49.20610039116808],[-121.01239935954486,49.20608407034468],[-121.01257010035403,49.206077886976225],[-121.0128544788059,49.206069343516944],[-121.01311018768011,49.2060558168236],[-121.01342887410952,49.20604774233772],[-121.01370764151456,49.20604344826503],[-121.01407776112679,49.20603634665678],[-121.01437707146124,49.206032722625444],[-121.01452330678725,49.206030760940074],[-121.01482190214735,49.20601779977688],[-121.01524642220868,49.20601602863827],[-121.01533042542691,49.206017662689064],[-121.01617775604413,49.20601403559426],[-121.01772736813847,49.20615767184248],[-121.01798835479397,49.20620697073865],[-121.01848654059181,49.206319128205315],[-121.01934979377015,49.20659931020535],[-121.02008655175297,49.20695371234838],[-121.02031311056457,49.20708374756445],[-121.02080165988166,49.20739789681413],[-121.021040591117,49.2075727692942],[-121.02160807695581,49.20806398674091],[-121.02182456145451,49.20828800478073],[-121.02197206523998,49.20843440200442],[-121.02204371988987,49.20850313190501],[-121.0222263302391,49.20869062747717],[-121.02235270302229,49.20880981715358],[-121.02252839983572,49.20896569169706],[-121.0227158778187,49.209139876749134],[-121.02299392874222,49.20941467691397],[-121.0230312562011,49.20945108678896],[-121.02305922968225,49.209478600689174],[-121.02320442340613,49.20956651936228],[-121.02327726124004,49.20960823401419],[-121.02348273619363,49.20971078599858],[-121.02364431054654,49.20979015852108],[-121.02390764346548,49.20989791040119],[-121.0243926192414,49.21011770205381],[-121.02454564856394,49.21019667811966],[-121.02468170788289,49.21025767199628],[-121.02509393065353,49.210467041930386],[-121.02530777556268,49.21058774283352],[-121.02550326820835,49.21070335449841],[-121.0257578662077,49.210860612401376],[-121.02597617755207,49.21100378663221],[-121.0261633306186,49.21113311437013],[-121.02629386590814,49.21122965355837],[-121.02690477666484,49.211573116068735],[-121.02731768564709,49.21187245687573],[-121.02738147049486,49.211918550310685],[-121.02815674486232,49.21247598481226],[-121.0283420673325,49.21265456941461],[-121.0284956967385,49.212792215156384],[-121.0286340945267,49.21291167101643],[-121.02885325406858,49.213095200401675],[-121.02922022549791,49.21343865308497],[-121.02934860467369,49.21357146818752],[-121.02941878260641,49.21362207793121],[-121.02967223384377,49.213806340100575],[-121.03007371638316,49.214132488300955],[-121.0301674643734,49.21421971728371],[-121.03035200031485,49.21435765829266],[-121.03043150811231,49.21441743192989],[-121.0305345306452,49.214482251822744],[-121.03059118719513,49.21451475032356],[-121.0311269463611,49.214838636562135],[-121.03130496090856,49.21490917203376],[-121.03152076652098,49.215011893970775],[-121.03157448561288,49.215039744919906],[-121.03174467108933,49.21511922081384],[-121.03202277704591,49.215249908677265],[-121.03217040942161,49.21531536843634],[-121.03225280458248,49.21534821433722],[-121.03245586652298,49.21544161212692],[-121.03269741467696,49.21554467089379],[-121.03348105486167,49.215944834536494],[-121.03364590582922,49.2160420974708],[-121.03370085566429,49.21607452437529],[-121.03387179821118,49.21616304510321],[-121.03464413897159,49.21665290532209],[-121.03487114031655,49.21682775839383],[-121.0351114023887,49.217007165241576],[-121.03524023214877,49.21710390120606],[-121.0354100384484,49.217219155155796],[-121.03587929198952,49.21758703675512],[-121.03605164757153,49.21774272952294],[-121.03615132366683,49.217838959246045],[-121.03619721771332,49.21787575821577],[-121.03628606753664,49.21794470025347],[-121.03636777840615,49.218000067773744],[-121.03650574002852,49.21801150700521],[-121.03682141214007,49.21804832552309],[-121.0371897606191,49.2180906837207],[-121.037462564949,49.21812666144454],[-121.03776869784912,49.21817234891432],[-121.03800469549743,49.2181990138906],[-121.03821450491999,49.21822954236896],[-121.03848683070647,49.21827000671571],[-121.03869616063413,49.218305023476056],[-121.03907384514618,49.21824404430542],[-121.03936243318638,49.21821278541391],[-121.0401233481567,49.21816748075982],[-121.04039876498811,49.21816296921912],[-121.04166053840656,49.21823855425757],[-121.04196202620686,49.21827950437116],[-121.04323263712,49.21856187973013],[-121.04350356265789,49.21864765955713],[-121.04397218913017,49.2188130227995],[-121.04412377891461,49.21887385566418],[-121.04425961818703,49.218921277605176],[-121.0443604186363,49.218958903321074],[-121.04461838998658,49.21905338625878],[-121.04476236096686,49.21910512460067],[-121.0450723550448,49.219227380899156],[-121.04580653918696,49.2195772321996],[-121.04586314787987,49.219578149340315],[-121.04617856633313,49.219601393975694],[-121.04682536566406,49.2196754208017],[-121.04715335860868,49.21972574930434],[-121.04724969007187,49.219740889755705],[-121.04755020328673,49.2197910899693],[-121.04793238089594,49.21986505691387],[-121.04805520444712,49.219889589358175],[-121.04818144716442,49.219914287906306],[-121.04851580406299,49.21996941603337],[-121.04880156587413,49.21988415507216],[-121.04943680887166,49.21972839798514],[-121.04964571750607,49.2196869702233],[-121.0510554826298,49.21953550731023],[-121.05127600775091,49.219530132176196],[-121.0516217508779,49.21952684760736],[-121.05184128749485,49.21953073717543],[-121.05297724416444,49.219626345508054],[-121.05323585069193,49.21966670972048],[-121.05369084829756,49.21975076794255],[-121.0542135000898,49.21984497800969],[-121.05444541252481,49.21989397481313],[-121.05535022449634,49.220143043230564],[-121.0555937619403,49.220228092839406],[-121.05652129178979,49.22063495973802],[-121.05666750990258,49.22071414059594],[-121.05703111327921,49.22088195770328],[-121.0572460467624,49.22099360579696],[-121.05780805181985,49.22133152328466],[-121.05793050780753,49.221391837350204],[-121.05839993816008,49.221647115468336],[-121.05862742941775,49.22178612430209],[-121.05910295644853,49.22211329884795],[-121.05916459954672,49.22216377461087],[-121.05928464553637,49.22197248442985],[-121.05937399566996,49.221843502435604],[-121.05943186620426,49.221768059018174],[-121.05950480921163,49.22164790604131],[-121.05967226016546,49.22139872768475],[-121.05981852106734,49.22120328016017],[-121.05997917130365,49.220985656668034],[-121.06013667668378,49.220781413347225],[-121.06030744223078,49.22058172988942],[-121.06039391850247,49.22047968260367],[-121.0604288156982,49.220426300419504],[-121.06052910006089,49.22027526282816],[-121.06077156617232,49.21995086568709],[-121.06095842565956,49.21972908351857],[-121.06101143795411,49.219666941109665],[-121.06104049328805,49.21963613568441],[-121.06106711512717,49.21959590744895],[-121.06123510251228,49.219373818638076],[-121.06144291056304,49.21911662681697],[-121.06158040518825,49.2189388198126],[-121.06166687560642,49.21883677125135],[-121.06168909102449,49.21880564295622],[-121.06181387517847,49.218650368346005],[-121.06196504674594,49.21847318806091],[-121.06210110385649,49.21830884819826],[-121.06215066249959,49.21824683558697],[-121.06225886722895,49.21811814734481],[-121.06237240167046,49.21797166744237],[-121.06263084554122,49.21767449781555],[-121.06274226620778,49.21756400152716],[-121.06285778426599,49.21743114580295],[-121.06312193468747,49.21716102444915],[-121.0631622622871,49.21712114437723],[-121.06342924592319,49.21682436443184],[-121.06358433348088,49.21664256150596],[-121.06362390574465,49.21659362415012],[-121.06376791769814,49.216402859139784],[-121.06387317059793,49.21626953177471],[-121.06395542707877,49.216158545450845],[-121.06410633602364,49.21596752773746],[-121.06426531449854,49.21578139998284],[-121.06453819723875,49.2154936305732],[-121.06459930122611,49.21543608888878],[-121.06467574682652,49.21534739192008],[-121.06478250411543,49.215232177635684],[-121.06493909050491,49.2150684865066],[-121.06504632405202,49.21494878254967],[-121.06520139902317,49.214766976779714],[-121.06535551678923,49.2145941584489],[-121.06548694609707,49.214456949531794],[-121.0656647048072,49.21423953327038],[-121.06583320567748,49.214044528433924],[-121.06588572655198,49.213986881443816],[-121.06596845163712,49.213871403825095],[-121.06654706758361,49.21322884432097],[-121.06665925289997,49.21312712200404],[-121.06683501357031,49.21289607853927],[-121.06693680059993,49.21276286913853],[-121.06700465893194,49.21267405681715],[-121.06717819854808,49.21244771100791],[-121.06717736516651,49.212407071502334],[-121.06717167754434,49.212218177137004],[-121.0671643871259,49.21206051743236],[-121.06716385839316,49.2118715796235],[-121.06717689298353,49.2115389117582],[-121.06726618808429,49.21097373526353],[-121.06729869601428,49.210861883541064],[-121.06731805325923,49.210776767580555],[-121.06775949942246,49.20980789581313],[-121.06784829487637,49.20968368114587],[-121.06847449491252,49.20899676141976],[-121.06865972250996,49.208838049033396],[-121.06886992744283,49.208670609725445],[-121.06899703568392,49.20857380010629],[-121.06904200253229,49.20853864165199],[-121.0697409099559,49.20810486155043],[-121.07054438003655,49.20775396428952],[-121.07101035442415,49.20760443968814],[-121.07134497064918,49.20751092045606],[-121.07147223291794,49.207477273008095],[-121.07185923698832,49.20737572051466],[-121.07252537198977,49.20723394470763],[-121.07271954428347,49.207201102723175],[-121.07384972431296,49.20708957040482],[-121.07404103545596,49.20708366276845],[-121.07498494445036,49.20710852420472],[-121.07525914394444,49.20713092956331],[-121.07645046036795,49.20731737441542],[-121.07660296553632,49.20735339244399],[-121.0766549203607,49.20736563908477],[-121.07721708916152,49.20752358053865],[-121.07729016783316,49.207547222781116],[-121.07764667349849,49.207652061501456],[-121.07818295080803,49.20782741806924],[-121.07833157698273,49.207883836425985],[-121.07839215335093,49.207911985955846],[-121.07860996470404,49.20799637851283],[-121.07868424875353,49.20802486576301],[-121.07884565982438,49.208090330846275],[-121.07895409009338,49.20813701618279],[-121.07979037598173,49.20836696684551],[-121.07994385322692,49.20841007078138],[-121.08011992697789,49.208466892691774],[-121.08061288615514,49.20864590456788],[-121.08084172054333,49.2087398183119],[-121.0811029639945,49.20885212934392],[-121.08130438697846,49.20894534896978],[-121.08138288083084,49.208982769251165],[-121.08155781278772,49.209066603725375],[-121.08216150669226,49.20940038476045],[-121.0822594326663,49.209465190801716],[-121.08234042536023,49.20951146714947],[-121.08247420986683,49.20959454820613],[-121.08294291175605,49.2099215896879],[-121.08311555942636,49.210059460369116],[-121.08324991182646,49.21016963340862],[-121.0832749777259,49.21019248601588],[-121.08334005066453,49.21024310503095],[-121.08393750121436,49.21076577966276],[-121.08400829971923,49.210843447067],[-121.08409872378049,49.21093046446897],[-121.084390499488,49.211241245203645],[-121.08453535589197,49.211414492968416],[-121.08458995117371,49.21148295708523],[-121.08466857159938,49.21155167890563],[-121.08509693184247,49.211967938472604],[-121.08528085279204,49.21217792067335],[-121.08546600868316,49.212392478985784],[-121.08561152189539,49.21246227728402],[-121.08573785526015,49.21251851452582],[-121.08588726437246,49.21258397904486],[-121.08610416024575,49.21267733480466],[-121.08617674657526,49.21270573865749],[-121.08632742071251,49.212775491703596],[-121.08651826902302,49.21285525208853],[-121.0868576084353,49.21300917585599],[-121.08699673235982,49.21307444901182],[-121.08736425099616,49.21323811071355],[-121.08742658005791,49.21326604562477],[-121.08754902280072,49.213326614125776],[-121.08767852620326,49.21336918026287],[-121.08847609710178,49.21370639596965],[-121.088789996324,49.21387353396849],[-121.08889749960287,49.213929187844656],[-121.0890073792746,49.21396239423133],[-121.0893588015696,49.214067237592225],[-121.08942113294248,49.21409517131548],[-121.08957102748731,49.21415614109751],[-121.08962180541036,49.21417960505523],[-121.0898386867745,49.21427323142476],[-121.09013819400293,49.214381623179634],[-121.09017918838391,49.21440012957787],[-121.09043532715724,49.21451246147597],[-121.09075800904203,49.21466166016135],[-121.09101398982412,49.21479174816236],[-121.09115217486628,49.21486599473686],[-121.09132638578264,49.21494076468254],[-121.09199927571925,49.215271428094866],[-121.09211783591017,49.215336315846265],[-121.09225307850177,49.21540592457418],[-121.09238610817916,49.215480214041364],[-121.09250808831588,49.21554526618753],[-121.09274942032425,49.21568398375363],[-121.09284832310422,49.21573980957759],[-121.0930631587823,49.21586914465496],[-121.09357078163225,49.21621933195648],[-121.09363881930305,49.21627458959966],[-121.09372699090939,49.21633442759141],[-121.09394192824792,49.216495342978355],[-121.09404067450603,49.21656892511859],[-121.0940819285978,49.21660125466529],[-121.0941487616733,49.216651666221594],[-121.09423472051031,49.21671619368654],[-121.0943747525762,49.216821817631065],[-121.09454916976912,49.21695974645823],[-121.09465801929629,49.21705154385779],[-121.09471158970977,49.21709739907425],[-121.09498105332258,49.217295197401626],[-121.09507635447999,49.217368892090015],[-121.09529082662051,49.217534294013525],[-121.09557441869417,49.21777727657606],[-121.0956505658352,49.21783713335878],[-121.09579183989088,49.21794732264155],[-121.09583015102058,49.21797500621675],[-121.09594185304968,49.218039865312434],[-121.09617757327246,49.21818311785667],[-121.09639319041875,49.21832150264696],[-121.09663461732396,49.21849207135969],[-121.0969019727777,49.21864493658516],[-121.09712959391095,49.218783586483006],[-121.09729069355843,49.21888508544077],[-121.09740850829793,49.218940919187524],[-121.09760874176001,49.219029826920924],[-121.09777611000695,49.21910454394474],[-121.09788113547572,49.21915133211903],[-121.09852885543123,49.21939593972103],[-121.09877777555454,49.21947944634584],[-121.09879602277519,49.21948563598769],[-121.09902621245669,49.21958379855349],[-121.0992558994095,49.21968672844283],[-121.09931824427068,49.21971465620687],[-121.09943482775034,49.21976592036609],[-121.10021267385605,49.220080152598705],[-121.1002968356224,49.220113024070386],[-121.10055397869895,49.220216351994374],[-121.10073288189406,49.22029582004843],[-121.10090073292015,49.2203660515753],[-121.10106734942397,49.22043170657546],[-121.10130565442795,49.220534464243215],[-121.10157635651797,49.22065588204047],[-121.1019160907534,49.220823302834276],[-121.10195190636071,49.22084212792907],[-121.10202578060661,49.2208748096786],[-121.1021902154261,49.22094488357842],[-121.10225893023102,49.220977610181265],[-121.10251516385502,49.22108963391634],[-121.1026287786407,49.22113652783525],[-121.10281190079142,49.22122492626252],[-121.10355405098318,49.221552169186054],[-121.1037698910958,49.22167250281738],[-121.10392509203047,49.22176498876608],[-121.10426855183698,49.22194610357532],[-121.10444012417196,49.2220300221328],[-121.10468170954825,49.222150684916755],[-121.10476195471122,49.222188165163494],[-121.10497703826394,49.22229943955127],[-121.10555562035056,49.2226462981325],[-121.1062252777593,49.22310725200183],[-121.10637564796048,49.22321303828354],[-121.10653485833849,49.22333276802926],[-121.1067629551465,49.22351624625806],[-121.10724751759467,49.22374463956335],[-121.1074637159715,49.22382917245133],[-121.10760166452998,49.22388985076764],[-121.10776190536635,49.22395098215069],[-121.10815874649263,49.22411504694123],[-121.10840300954217,49.22422679971032],[-121.10852034838088,49.2242873887043],[-121.10871847275607,49.22438039957658],[-121.1089426006832,49.22448756455906],[-121.10931152379955,49.224655715779555],[-121.10953052358553,49.224762646505624],[-121.10973454552428,49.224864954045515],[-121.1100281973837,49.225013616579965],[-121.11024404100284,49.22513421497141],[-121.11037494278142,49.22521290197153],[-121.11059674255098,49.225342223513806],[-121.11102483278496,49.225601306762094],[-121.11116337265426,49.22568907258671],[-121.11137735895115,49.225827348206515],[-121.11150266045377,49.22591029035638],[-121.1116036389753,49.2259794345182],[-121.11172767478081,49.22605808761682],[-121.11186326981496,49.22614120773973],[-121.1121196639205,49.226284789468885],[-121.11233286233094,49.22641428481372],[-121.11245755562844,49.2264704119427],[-121.1126923151282,49.22659101488716],[-121.11291427948454,49.22670258314083],[-121.11306922416635,49.22678150913953],[-121.11330050649836,49.22690252117267],[-121.11334399586819,49.22693015259978],[-121.11341275670908,49.226962593450395],[-121.11348664874977,49.22699526704619],[-121.113550693017,49.227023542218376],[-121.11361774377009,49.22705590533788],[-121.11387571841377,49.22716826597191],[-121.11440166203583,49.22742865997062],[-121.1149333957087,49.22766676794924],[-121.11519511987542,49.22779253920306],[-121.11529457849286,49.22784356658923],[-121.1153864006873,49.22788551438188],[-121.11550004508511,49.22793239425835],[-121.11568198089846,49.228016202860935],[-121.11573078470099,49.22802603041556],[-121.11577271757133,49.22803582605521],[-121.11704393747756,49.22841627448061],[-121.11727294287495,49.22851010807931],[-121.11755355246353,49.228636160674334],[-121.11773269618425,49.22869757295848],[-121.11793504397143,49.22879977786816],[-121.11819855990072,49.228876002058605],[-121.11869447152309,49.229095549861505],[-121.11881062742286,49.229151281847855],[-121.11889605769005,49.22918869638869],[-121.11911182918008,49.22927770371246],[-121.11914987049921,49.2292918325093],[-121.11919773238851,49.229310628504074],[-121.1192409344433,49.229324711436796],[-121.11943724723695,49.229386330200576],[-121.11966938998737,49.22946676756586],[-121.11988581673309,49.22953323930674],[-121.11999404498235,49.22956633583723],[-121.12010177171655,49.22960420011225],[-121.12021436598017,49.2296284723909],[-121.12051687712035,49.22970984021077],[-121.1206520601666,49.229748108637075],[-121.1207239577348,49.22976715365137],[-121.12088736352042,49.22981487395172],[-121.12100588627953,49.22984814699892],[-121.1212505383123,49.22992407703956],[-121.12147457740309,49.22999991192931],[-121.12153400072258,49.230023181965144],[-121.12164096280773,49.23005199716989],[-121.12191213020577,49.230137291168724],[-121.12201691008705,49.230170518042314],[-121.12213198334143,49.230203922240605],[-121.12254644846364,49.23033207944036],[-121.12279187275702,49.230417053424915],[-121.12298037933348,49.23048761321549],[-121.12325137295716,49.23059094826215],[-121.12342787803236,49.23066124351022],[-121.1236124934672,49.23073613680486],[-121.12379242069149,49.23080658631259],[-121.1239296146091,49.23085847397342],[-121.12415867521935,49.23095201425735],[-121.1244184377384,49.23106413911257],[-121.12466274812415,49.23117612325196],[-121.1249078254205,49.23129717224327],[-121.12508371590262,49.2313897113442],[-121.12552946161962,49.23161287215969],[-121.12595834249387,49.23184935972005],[-121.12606669880559,49.23191403144702],[-121.12623227104152,49.232006669886495],[-121.12663157654794,49.23219755562703],[-121.12669174305212,49.232230157514344],[-121.12675069912879,49.23225792309321],[-121.12685873293022,49.23230932640068],[-121.12698003842628,49.232365281471374],[-121.12711163794823,49.232421413353435],[-121.12721846290664,49.23246797104109],[-121.12733507993265,49.232519482397066],[-121.12746249098787,49.23256641165343],[-121.12776890042821,49.23269275348656],[-121.12783393287603,49.23271177152747],[-121.12828848946859,49.23286765511255],[-121.12855950972953,49.2329709674735],[-121.12877407826713,49.23305538808462],[-121.12901764211843,49.23315830563189],[-121.12931919367914,49.23329824413611],[-121.12942897260535,49.23334944378345],[-121.12966413146407,49.23343422501422],[-121.13030750353633,49.233723531644124],[-121.13035708515129,49.23374239989082],[-121.1307619034028,49.23389743998203],[-121.13095123427782,49.23397675450948],[-121.13100721595436,49.23400015187812],[-121.13110171883457,49.234033175195066],[-121.13163473093257,49.23424418401301],[-121.13190559123919,49.23436553213419],[-121.13207725937,49.23444940514333],[-121.13227544409338,49.23454265863917],[-121.13249796471547,49.23464969572329],[-121.13269101908239,49.234742716543856],[-121.13282933007706,49.23481690745556],[-121.13289560800406,49.23484048021977],[-121.13310113920349,49.23492927342048],[-121.13321779814551,49.23498049987479],[-121.13334519362577,49.23502769138033],[-121.13362856743349,49.23514452977155],[-121.1337965227854,49.23521469953762],[-121.13396320888668,49.23528058956603],[-121.13410122606605,49.23534123293501],[-121.13414098762053,49.23535543358436],[-121.13427106618573,49.235393452811934],[-121.13466767687623,49.23551229015152],[-121.13487604052374,49.23557414271065],[-121.13514232409895,49.23559180633796],[-121.1353078231926,49.23560350190109],[-121.13582259953628,49.23561180630006],[-121.13611162318497,49.235625703789445],[-121.13637103543351,49.23564333378563],[-121.1366591469492,49.23566593052718],[-121.13702993749608,49.23570324694875],[-121.13718903520943,49.235710428526765],[-121.1374228712437,49.23570970634809],[-121.13787414690391,49.2357171013755],[-121.13820266548677,49.23573136832784],[-121.1384964114248,49.23574941489881],[-121.13857782057867,49.2357598547491],[-121.13865456822117,49.2357655734031],[-121.13881195566582,49.23577267539071],[-121.13906372719218,49.23578122117825],[-121.1392287573522,49.23579740027008],[-121.13942218808317,49.23580499991537],[-121.13967177860756,49.235817956646606],[-121.13988485656343,49.23583489504185],[-121.14005769941687,49.23584213310159],[-121.14030511002787,49.23585949176351],[-121.14050320293909,49.23587181053275],[-121.14071816231542,49.23587079805295],[-121.14094857762092,49.23586991390554],[-121.14126429476674,49.23587513184632],[-121.14149376932804,49.235883225645],[-121.142152522953,49.235911804663026],[-121.1424462424087,49.23593011882874],[-121.14273435865799,49.23595269933857],[-121.14299159426419,49.23597472583759],[-121.14327877064261,49.23600628401586],[-121.14383578982478,49.23608721003193],[-121.14407864152948,49.236131707640595],[-121.14433523899203,49.23617625586837],[-121.14457124860316,49.23622044393553],[-121.14485731893716,49.236279003425956],[-121.14508598733372,49.236327649887656],[-121.1452268121966,49.236361628850304],[-121.14532445079529,49.23638124797661],[-121.14614088989549,49.2365291170241],[-121.14638672783265,49.236577965803136],[-121.14651947042006,49.236607068122666],[-121.14689883029367,49.23664473593648],[-121.14722796077959,49.236686066967266],[-121.1474023511876,49.23671139669677],[-121.14750733350586,49.23672655413925],[-121.147609363181,49.23673707677218],[-121.14790731195292,49.23676430801298],[-121.14804146622734,49.23677993073905],[-121.14829649835224,49.23680664442711],[-121.1486020916377,49.236842959769625],[-121.14872595157404,49.236858406741895],[-121.14910548310694,49.23687803142323],[-121.14944024926515,49.23691480986861],[-121.14961339960854,49.236935578385804],[-121.14974628463278,49.23694691073535],[-121.15002287561626,49.236964721372146],[-121.1504682280424,49.23701240194662],[-121.15066666090408,49.23703796047325],[-121.15086553342098,49.23705931637867],[-121.1512881195231,49.237111038818526],[-121.15154690859559,49.2371511662154],[-121.151678415593,49.23717568660052],[-121.15214016688574,49.23721450829765],[-121.15246759526214,49.23725574632766],[-121.15259316933484,49.23727125684955],[-121.1528794216685,49.23731176860304],[-121.15329842448776,49.23738136456108],[-121.15339090615511,49.23740103279874],[-121.15349418116803,49.237416107437475],[-121.15372098713814,49.23743335580279],[-121.15404938684881,49.23746532248789],[-121.15431082941423,49.23749654098727],[-121.15452469295991,49.23752250657887],[-121.15476085564265,49.23754891527261],[-121.15487958703157,49.23756412434099],[-121.15505022965924,49.23757602938442],[-121.15583335236842,49.2376648038636],[-121.15613409950615,49.23771469115267],[-121.15618808363043,49.23772445266153],[-121.15628277702048,49.23773941838659],[-121.15633549025581,49.23774489165218],[-121.15673156497468,49.23778722688822],[-121.15698271798774,49.237818246815245],[-121.1571931618904,49.23784406227254],[-121.15771122955967,49.23791978045788],[-121.15798454775876,49.237968997947995],[-121.15839012284808,49.23805207036469],[-121.15867528440386,49.238119572285896],[-121.15912814570137,49.23824366671014],[-121.1594396693115,49.23833857603872],[-121.1597057918817,49.2384238306961],[-121.16019344011231,49.23859346219427],[-121.16029434799239,49.238631256747794],[-121.16055269316921,49.2387251811022],[-121.16066047326005,49.238763013325375],[-121.16090507474351,49.23885687874926],[-121.1613359332849,49.239043692535816],[-121.16153935901379,49.23913683479694],[-121.16175432244096,49.23923472573771],[-121.16237239507643,49.2395548328266],[-121.16256785306531,49.23967495869922],[-121.16270343460288,49.23972644117504],[-121.16345285044456,49.240089362167716],[-121.16406064118374,49.24035992984728],[-121.16430325123969,49.240489511740996],[-121.16492758520894,49.24088176450976],[-121.16507000094444,49.240983158253776],[-121.16516905780668,49.24108824443844],[-121.16588420441515,49.241549410281294],[-121.16608345106924,49.241732288011235],[-121.16629531911124,49.24194251552372],[-121.16636972485038,49.24202027864244],[-121.16651046523037,49.24212131519719],[-121.16654072237135,49.24214437758856],[-121.16689206476761,49.24225345338602],[-121.16703232465142,49.2423096411099],[-121.16726635442801,49.24238977285371],[-121.1673262554686,49.24240880595846],[-121.16861433741958,49.242915095601916],[-121.16865022609171,49.24293361955397],[-121.16870110440942,49.24295676688299],[-121.16906009517157,49.24312452703618],[-121.16911392823224,49.243152317218005],[-121.16952428684043,49.24338806192917],[-121.16968560005392,49.24348973625178],[-121.16992027369025,49.24364629090233],[-121.16998689100839,49.24368338614408],[-121.17014024922243,49.243762429772616],[-121.17097423060233,49.244288358975425],[-121.17118738617239,49.24445352644444],[-121.17134123549685,49.24457741621832],[-121.17142346250165,49.244646224642416],[-121.17146700399431,49.244673822906385],[-121.17169948196296,49.244835064713754],[-121.17191357768026,49.24499125136108],[-121.17221830083012,49.24523466379764],[-121.17232737010673,49.24532637881827],[-121.17241774703551,49.24539949364776],[-121.17269937499526,49.2455840802819],[-121.17296590219811,49.24568255949433],[-121.17305311670985,49.24572001583247],[-121.1735421128134,49.24584481393151],[-121.17380161788489,49.24591169113353],[-121.1739039538461,49.24593601263582],[-121.17405079781365,49.24597867359236],[-121.17418013329062,49.246007866555146],[-121.17431932752599,49.24604144307906],[-121.17456431088006,49.24609920621117],[-121.17479259147565,49.246152278620116],[-121.17493520800593,49.246186016566746],[-121.17514131495737,49.246220892091884],[-121.1754566624049,49.2462798369793],[-121.17551408291011,49.24628974191654],[-121.17563188011071,49.24631418557168],[-121.17571975254721,49.246328827607186],[-121.17576218175593,49.246334110020825],[-121.17609047230604,49.246384331671585],[-121.17615305653172,49.2463941787365],[-121.17633872948201,49.24641066330344],[-121.17655874310563,49.24642755703789],[-121.17671881780984,49.24642570093948],[-121.17704835813404,49.24643087011398],[-121.17726930616305,49.2464387831222],[-121.17750226155626,49.24644695337801],[-121.17772022445183,49.246450510000095],[-121.1779497575995,49.24645852613756],[-121.17839849907587,49.24647465427184],[-121.17866545598102,49.24646996376746],[-121.17871180387472,49.24647063013915],[-121.17936074659858,49.24646273024516],[-121.17965342914013,49.24645862882936],[-121.18018037083402,49.246466691590726],[-121.18045575675526,49.24648013613003],[-121.1806195939048,49.24649169444533],[-121.18087392024171,49.246509274903225],[-121.18094086139097,49.24651029293277],[-121.18122234361043,49.246514707421596],[-121.18147247087408,49.24652306861498],[-121.18177532443926,49.24653688999326],[-121.1819820588054,49.246549236611955],[-121.18219740808006,49.246561399663285],[-121.18241101640618,49.24657377312125],[-121.18283947904929,49.246603075946496],[-121.18310363746475,49.24662531244048],[-121.18332707698056,49.24664234535339],[-121.18399462622652,49.246720109935275],[-121.18420777033658,49.24673696052146],[-121.18485516645373,49.246810156479306],[-121.18503132660253,49.246835501465185],[-121.1851500627325,49.24685095537049],[-121.18536401549434,49.246876581110214],[-121.18565032669677,49.24691728369451],[-121.18636035064405,49.24704964051862],[-121.18664731839293,49.24711715301234],[-121.18680960779089,49.24716020608197],[-121.18706739918562,49.24722725318027],[-121.18743988789748,49.24733212299318],[-121.18803912988513,49.247521539947634],[-121.18875531895496,49.24779342112439],[-121.18902466733859,49.24791482528584],[-121.18907898379862,49.24793811562555],[-121.18932182753909,49.24804987404278],[-121.19001481605278,49.24842952090358],[-121.1902163244133,49.248558610575955],[-121.19046341573815,49.24872891206861],[-121.19089174186762,49.24904148696119],[-121.19127717339487,49.24935328239257],[-121.19143735055229,49.24949968545575],[-121.19174680486896,49.24986446027086],[-121.19191010455548,49.2500470943339],[-121.19247705465494,49.25068101783117],[-121.1925730987283,49.25084908545067],[-121.19268102997636,49.25103516563031],[-121.19272039989178,49.251103162123016],[-121.19286392242934,49.25129421238997],[-121.19290889165565,49.25135795709938],[-121.1930395978977,49.25153997375488],[-121.19319859776853,49.25178076013014],[-121.19333271479218,49.25191332258171],[-121.19346558760525,49.2520413098633],[-121.19390060920318,49.252538535834894],[-121.19396197365644,49.25259342181659],[-121.19431699908712,49.25290045475979],[-121.19441209432864,49.25297826893452],[-121.19445391605058,49.253006068602964],[-121.19489982509747,49.253332098897324],[-121.19510106923111,49.253497239461545],[-121.19527156957645,49.25364382433369],[-121.19541599662512,49.25377655426569],[-121.19563928185694,49.25397791141144],[-121.19570920683887,49.25403318671502],[-121.19589502448187,49.254197917371734],[-121.19604912166534,49.254303735134755],[-121.19632313763067,49.25454654699596],[-121.19640277820567,49.25462422941843],[-121.1964641474434,49.2546791227837],[-121.19653659680264,49.2547432420422],[-121.19656174249658,49.25476606674312],[-121.19659921357594,49.25480269228436],[-121.19668024982204,49.254866914454],[-121.19696379031237,49.25510083918661],[-121.19712400523272,49.255247232536504],[-121.19736670151359,49.255493714965716],[-121.1974905429536,49.25562609228328],[-121.1975433290723,49.25568087302325],[-121.19762639583872,49.25575871591044],[-121.19803491728864,49.2561473369003],[-121.1935443732081,49.25832895324734],[-121.19320027299709,49.25849655947991],[-121.18913854736616,49.26046879180888],[-121.18910653339859,49.260429304332135],[-121.18903252609502,49.26034706946477],[-121.18864215848386,49.25999925975956],[-121.18858424283985,49.25994424581837],[-121.18839764953836,49.25977043943087],[-121.18825415610131,49.2596287221179],[-121.18809410771566,49.25946427279419],[-121.18801665054306,49.259382171624324],[-121.18776465331021,49.25917584676735],[-121.18759166531767,49.259020119231714],[-121.187557155123,49.25898813323401],[-121.18749112094997,49.2589285252843],[-121.18734343730286,49.25882721297825],[-121.1870494349052,49.258561782397656],[-121.1870026009917,49.258516003320274],[-121.18679196868027,49.25834196783833],[-121.1864460056642,49.258030517922506],[-121.18641616563085,49.25800325042224],[-121.18638806617095,49.2579757809947],[-121.18609659992872,49.25776881613853],[-121.18589614925216,49.257612706523766],[-121.18579763556622,49.257534732499394],[-121.18559811863356,49.257369652050755],[-121.18550819382773,49.25729177264869],[-121.18511868607506,49.25695272590019],[-121.18494820470451,49.25680613470596],[-121.18474962766638,49.256632064321046],[-121.18426236490852,49.25612514283971],[-121.18411792991736,49.25594306174317],[-121.18408435732731,49.25590209527676],[-121.18395025425679,49.25576953111469],[-121.18381742686203,49.255641245508464],[-121.18347925028826,49.25527178372566],[-121.18334841644334,49.25510779143722],[-121.18324101126242,49.25496655025801],[-121.18312390104147,49.254802882186965],[-121.18294465577361,49.25452566000189],[-121.18291248492648,49.25447122425452],[-121.1826462856667,49.254120753042386],[-121.18250858128968,49.253907116594426],[-121.18232287616874,49.2538906428289],[-121.18172858552606,49.25381841256403],[-121.18159906828913,49.25380726393953],[-121.1814712625825,49.25379619167528],[-121.18135671090828,49.25378994265302],[-121.18112760765234,49.253777444243745],[-121.18090242313819,49.25376033043654],[-121.18083033713904,49.253759082816565],[-121.18054364769877,49.253754716117705],[-121.18027976098466,49.25374601894186],[-121.1799922938848,49.25373259503771],[-121.17981470975917,49.25372071089552],[-121.17956672328845,49.25370792391805],[-121.1789297174544,49.25371580414698],[-121.17866443130625,49.25372056283461],[-121.17837509592981,49.25372510198721],[-121.17788244800234,49.253717152228056],[-121.17733797069289,49.2536950455252],[-121.17712339579494,49.25369165031889],[-121.17690241327375,49.253683737098896],[-121.17666942167395,49.2536755656378],[-121.1765887496783,49.25367421057944],[-121.17645266921663,49.25367657311476],[-121.17571717042895,49.253656057547815],[-121.17534654403275,49.25363214209492],[-121.17504458165912,49.25360931468392],[-121.17499524119985,49.253604291259784],[-121.17444796909516,49.25355949221371],[-121.17377395916505,49.253476873262606],[-121.1735219337078,49.253436837359935],[-121.17326474538177,49.253396849282154],[-121.17301272173307,49.25335680320666],[-121.17264409903335,49.25329716357206],[-121.17237288305219,49.253243293091224],[-121.17219935303807,49.25320901623116],[-121.17199443210852,49.25317898004743],[-121.17135649895498,49.25304721825694],[-121.17111319435077,49.252989525131305],[-121.17088317292419,49.252936368805706],[-121.1707439605023,49.25290278820072],[-121.17049897593692,49.25284472965972],[-121.17026892692947,49.25279185036665],[-121.16993357355878,49.252710011678815],[-121.16967111007611,49.25263820454121],[-121.16947540806866,49.25258573520464],[-121.16888615441648,49.25243245953522],[-121.16872386227922,49.25238938883897],[-121.16845325543265,49.252313262257495],[-121.16803675607119,49.252185208978865],[-121.16779284627336,49.25210040849039],[-121.16752632315487,49.25200163012844],[-121.16737278140064,49.251940618749195],[-121.16721018517187,49.25188400032638],[-121.1668431326987,49.25174350005802],[-121.16657288389409,49.25163102036712],[-121.16629838054781,49.251509887300536],[-121.16604279060465,49.251388762825414],[-121.16577485770533,49.2512541116377],[-121.16553221538588,49.25112426579235],[-121.16523368755995,49.25095328375179],[-121.16514787425501,49.2509023527217],[-121.16510433161409,49.250874743189655],[-121.1646435590684,49.250561452015],[-121.16460172836706,49.250533919048955],[-121.16412519644896,49.25020694568977],[-121.16394575224189,49.250064703791516],[-121.16375181516652,49.2499130696282],[-121.16356348067488,49.249757184903814],[-121.16353023682157,49.24972975713708],[-121.16345770856319,49.24968336294779],[-121.16312332396667,49.249444242625756],[-121.16291017417252,49.24927906047923],[-121.16282748313,49.249214735610444],[-121.16265539994805,49.249117358942186],[-121.16242649664025,49.24898784185927],[-121.16217685945735,49.248826369576186],[-121.16173528338835,49.248675458389414],[-121.16156458876158,49.2486142358307],[-121.16113361953782,49.24847704129933],[-121.1608752479825,49.24838284137139],[-121.16027109933745,49.24812594928293],[-121.16004204489616,49.24801445304339],[-121.15995017069618,49.24797227517376],[-121.15969381399087,49.247842357401204],[-121.15961737134649,49.24780058366082],[-121.15938754640794,49.24768003000508],[-121.15896613244321,49.24743500043828],[-121.1587374118335,49.247287440110526],[-121.15862008446985,49.24720915112796],[-121.15843241742475,49.24708006056585],[-121.15831260646894,49.24699263835223],[-121.15825159613291,49.24695127719137],[-121.15765969732564,49.24652802570105],[-121.15748591862061,49.24638123504627],[-121.15716345318678,49.24606142786862],[-121.15713319815106,49.2460383629852],[-121.15697033182646,49.24596817408378],[-121.15674129595504,49.24585667047492],[-121.15659261801176,49.245782328346515],[-121.15592097995818,49.24549728660301],[-121.15566467727459,49.24536708042111],[-121.15511911351108,49.245043722015396],[-121.1550780953029,49.24502496281735],[-121.15495233232586,49.24497815297854],[-121.15476576302629,49.24492098581441],[-121.15469070936648,49.24491535564079],[-121.15429457477072,49.24487302235024],[-121.1539808088936,49.244832127610735],[-121.15364913106602,49.244781684675324],[-121.15348030951812,49.24475210668586],[-121.15321617596766,49.24472979762569],[-121.15294610794656,49.244698479301995],[-121.15266182402661,49.24467159076126],[-121.15246167640565,49.2446456718919],[-121.15227863982452,49.24462052244894],[-121.15219332046402,49.24461442865716],[-121.15197845754946,49.24459771616077],[-121.15135300598438,49.24452897817203],[-121.15110571306273,49.244493600935826],[-121.15084296169344,49.24445809579149],[-121.15042392781547,49.24438821269399],[-121.1503296923652,49.24436875244163],[-121.14986787144652,49.244329923418036],[-121.14959438587888,49.24429844265183],[-121.14907452103958,49.24422287857094],[-121.14893615121755,49.24419804714352],[-121.14885127369806,49.244187739524875],[-121.14862021378997,49.24416154927673],[-121.14852675105053,49.244151143542915],[-121.14844998833391,49.24414543198349],[-121.14839897982017,49.24414003196019],[-121.14812626778303,49.2441176035663],[-121.14789473879081,49.24409590129127],[-121.14759036864217,49.24406387257513],[-121.14751015494645,49.24405828458886],[-121.14696644400489,49.24401349967752],[-121.14671134298789,49.24398707046731],[-121.14640573424604,49.243950462833915],[-121.14619821981722,49.243929279231075],[-121.14593627552134,49.24390253988034],[-121.14587668320259,49.24389703161107],[-121.14557573783493,49.24386515136608],[-121.14523844274353,49.243819228099305],[-121.14501470098105,49.24378884896408],[-121.14491734853642,49.24378276644722],[-121.14438534922245,49.24372468418916],[-121.14409906477003,49.24368415029667],[-121.1437931296569,49.24363427692359],[-121.14346583310241,49.24357498678117],[-121.14321996213664,49.24352612288675],[-121.14306879160843,49.24349224459772],[-121.14231950372005,49.243358672149476],[-121.1422063942331,49.243338912955636],[-121.14190656646478,49.24328000825969],[-121.14161405488807,49.24321691283598],[-121.1414415250347,49.24317361597688],[-121.14138756684534,49.24316356882197],[-121.14122047000103,49.24313404873505],[-121.14087646988324,49.24311937503515],[-121.14079065414597,49.24311804904753],[-121.14057737223084,49.24311913882616],[-121.14034692094906,49.24312002217108],[-121.14007233643989,49.24311553139825],[-121.13979648241539,49.243106751598475],[-121.13952112831656,49.24309320324615],[-121.1392737086403,49.24307556462818],[-121.13910989386235,49.24306394349021],[-121.13895932566834,49.243057150780224],[-121.13875604032798,49.24304487607685],[-121.13856476128329,49.24303286302354],[-121.13836147615352,49.243020587576396],[-121.13809125598031,49.24300726717555],[-121.13792277859879,49.24299093210585],[-121.13772415599927,49.24298337657209],[-121.13746473236775,49.24296546269788],[-121.13734850235925,49.24295908965718],[-121.13724894066883,49.242957699815754],[-121.13702710348998,49.242958405465714],[-121.13673877390941,49.24295384513194],[-121.13646292147598,49.242945056809035],[-121.13621674378426,49.24293197789531],[-121.13616181587737,49.24293118544232],[-121.13588646388038,49.2429176278126],[-121.13518503951512,49.24285240994596],[-121.13473369494419,49.24284500375176],[-121.13443087952484,49.2428310502954],[-121.13420355400126,49.242818529350735],[-121.13388796419316,49.24279525563073],[-121.13384380279132,49.242790157802865],[-121.13356718332344,49.242772305852085],[-121.13327731729964,49.242749632795814],[-121.13295921978988,49.242717501194925],[-121.13268575518872,49.24268597750428],[-121.13216596515326,49.24261005344361],[-121.13189435704989,49.242560857188984],[-121.13162667302961,49.242507038068055],[-121.13131406072088,49.24243906316701],[-121.13124682988278,49.242424468636735],[-121.1309479657927,49.242356545500485],[-121.1304492975094,49.24222687870081],[-121.13016429774044,49.2421415457738],[-121.12995983359609,49.24207507158968],[-121.12985502022926,49.24204186200937],[-121.12958577679481,49.241970203604225],[-121.12932732994584,49.24189396242824],[-121.12879436075069,49.24171452559235],[-121.12854980914467,49.24162058779791],[-121.12832758927144,49.24152681109738],[-121.12811171301713,49.2414381111855],[-121.12792362594016,49.24136307207344],[-121.127744596016,49.241283642686206],[-121.12762795652777,49.24123213245774],[-121.12750223150074,49.24118529036555],[-121.12721715459008,49.24106808123199],[-121.12706243268948,49.24100273200008],[-121.12688246194482,49.240932280056604],[-121.12646030732097,49.240745446841714],[-121.1261920787343,49.24061518470563],[-121.12604641634663,49.24054544415771],[-121.12592603446721,49.24048050981812],[-121.1257671285249,49.24040593858306],[-121.12570179017375,49.24037338272617],[-121.12560011045034,49.240326777958686],[-121.12537008599953,49.24024194263144],[-121.12511274758143,49.24013895536191],[-121.12500248535005,49.2400922413059],[-121.12495632181293,49.24007351662837],[-121.1248917805812,49.24004973824289],[-121.12448689808772,49.239894964900124],[-121.12424330989084,49.23979202919818],[-121.12397214343538,49.23965711705117],[-121.12384300466015,49.239610115725725],[-121.12314360621164,49.23929738088183],[-121.12294353071762,49.23922206909594],[-121.1228973688756,49.23920334351288],[-121.12285760746518,49.23918913880326],[-121.1224906406999,49.23906624194845],[-121.1222341107445,49.23897202564152],[-121.1218613978032,49.23882208095729],[-121.12174474173922,49.23877084252375],[-121.12161905953849,49.238723706077884],[-121.12133398235589,49.23860676829037],[-121.12113019747424,49.23851775230007],[-121.12091263815279,49.23842896010822],[-121.12064007207748,49.23830750765836],[-121.12043673203995,49.23821428819373],[-121.12022014967205,49.238116237321215],[-121.11981489220113,49.23791631903748],[-121.11976967791475,49.237888613184],[-121.11923503284567,49.23762785298981],[-121.11875154170303,49.23735474720569],[-121.11860905858398,49.23727132709892],[-121.11834305546186,49.23713663283425],[-121.11826448426126,49.2370992410621],[-121.1181500189397,49.23704359566061],[-121.11794872317468,49.236963707388],[-121.11777049170175,49.23689332632094],[-121.11758757194981,49.236818501260494],[-121.11753799318481,49.236799618255176],[-121.11749478469339,49.23678553480037],[-121.11718509731068,49.23669030336247],[-121.1170601603467,49.2366525052089],[-121.11689844516442,49.23660485714881],[-121.11652245886508,49.23648631959811],[-121.11638991595044,49.236439145053446],[-121.11628981366034,49.23641036576091],[-121.11616738421294,49.236381413221],[-121.1158648372393,49.23630003402916],[-121.11559270014315,49.23622369553136],[-121.11527269657618,49.23612855881842],[-121.11504052814381,49.236048112806216],[-121.11482407797503,49.235981632002726],[-121.11471583846105,49.23594853060827],[-121.11452808700554,49.23588701341861],[-121.11434331470697,49.235829853174785],[-121.11394988312907,49.23569755046823],[-121.113693389107,49.23560331337656],[-121.11338947488548,49.23548605721828],[-121.11316433740302,49.23538788213633],[-121.11291392497124,49.235284897077555],[-121.11280713815623,49.23523803810301],[-121.11255080165917,49.23512604122491],[-121.11232788088229,49.23502317417429],[-121.11202084359729,49.23491930474909],[-121.11170293165351,49.23478816416549],[-121.1114045882777,49.234715984011075],[-121.11113420778415,49.23463943336923],[-121.11043034383582,49.23440308941117],[-121.11039448498678,49.23438454586422],[-121.11035473152592,49.23437033644393],[-121.11019052732992,49.234313822358],[-121.10966746088808,49.23410710631652],[-121.10943765020174,49.234004479198525],[-121.10937528007621,49.23397655789019],[-121.10918867393234,49.23388801698975],[-121.10898835425529,49.233799132761526],[-121.1086654808734,49.23364999296415],[-121.10853826939933,49.23358500620444],[-121.10813636858775,49.23340295508253],[-121.10791125230621,49.23330476872959],[-121.10748226592754,49.23308624535673],[-121.10730108832318,49.23301148011812],[-121.10695392955826,49.23284825801251],[-121.10675751348333,49.23275503547528],[-121.10649796849424,49.23262483298191],[-121.10629952407645,49.232518273210864],[-121.10613351601708,49.232430093682716],[-121.1059704852912,49.232346280398524],[-121.10592775728213,49.23232771177074],[-121.10582830030155,49.23227666711812],[-121.1057364771116,49.23223472044914],[-121.10492266795463,49.231803033053055],[-121.10478757302509,49.231715128174436],[-121.10469324923677,49.23166432460937],[-121.10427866674296,49.23142359765389],[-121.10411627177365,49.23131754389921],[-121.10392739858231,49.231201823761545],[-121.10369722326861,49.231054056476275],[-121.1035451242356,49.23094818098815],[-121.1034615991121,49.230892796697795],[-121.10311062819629,49.23068455701943],[-121.10297798248222,49.23060607141884],[-121.10289990875249,49.23056417866524],[-121.1028525271741,49.23054087707403],[-121.10280638206044,49.23052214265033],[-121.10248250082019,49.23035038095553],[-121.10220857765039,49.23024263605787],[-121.10214498152567,49.23021013423381],[-121.10198149070149,49.230130813041534],[-121.10191694660027,49.230107289922515],[-121.10170243955781,49.2300228245073],[-121.10156448049256,49.22996213921272],[-121.10140251662187,49.229900921393956],[-121.10100564993095,49.22973683319133],[-121.10076308614865,49.22962514240617],[-121.10053179257216,49.22950439131921],[-121.10032539907192,49.22942451419597],[-121.09954890554869,49.22904720192166],[-121.09929300944096,49.22889910150118],[-121.09883192067153,49.22859477625501],[-121.09862283346911,49.22844287641795],[-121.09843635796389,49.228304699062804],[-121.0981482865476,49.228070838395986],[-121.09809299065626,49.22802489883192],[-121.09782718854272,49.22784053495595],[-121.09773664661382,49.22780287011714],[-121.09721174227876,49.22753340721015],[-121.09713709963115,49.2274916658003],[-121.09708503816385,49.22746391692429],[-121.09670103087689,49.2272597967805],[-121.09650323509544,49.22718002304317],[-121.09631668079003,49.227091458968204],[-121.09615052178488,49.22702130787634],[-121.09594167555633,49.22693228748509],[-121.09586187458085,49.226890589873676],[-121.09562471547753,49.226760537422976],[-121.09520307295985,49.22658739342761],[-121.09514759206928,49.22655949678372],[-121.09502539054094,49.22651248426787],[-121.09484647316906,49.22643300749845],[-121.0946786093756,49.22636276719817],[-121.09455517334524,49.22631118682426],[-121.09435345944694,49.2262360299751],[-121.09404471357878,49.22610044839932],[-121.09368280119271,49.22596386036249],[-121.09345559669613,49.22586976692241],[-121.08243471677596,49.232222280060256],[-121.07416112920697,49.23548441509927],[-121.0732510636299,49.2358798032891],[-121.07234208207205,49.236216310237715],[-121.07070983012869,49.236775162018816],[-121.0687002997137,49.238117157937765],[-121.0681002848731,49.2389259273005],[-121.06752018033873,49.23974125271017],[-121.0669400563906,49.24055656501473],[-121.06634000899416,49.241365043267955],[-121.06576650779105,49.24218234855902],[-121.06529502003255,49.24302631894089],[-121.06499708083915,49.24390332650994],[-121.06489823627692,49.24479959261329],[-121.06503522417556,49.24569313488278],[-121.06537409949004,49.246563775727026],[-121.06582704144542,49.247412859603735],[-121.06644495262029,49.24821451257681],[-121.06722230891847,49.24895607353783],[-121.0680777466793,49.24965890542517],[-121.06896769162562,49.25034470427772],[-121.0698816690598,49.25101495684861],[-121.06991221150379,49.251034966450796],[-121.06993149283764,49.25104768536643],[-121.0699507436253,49.25106069158342],[-121.06997002402548,49.25107341947005],[-121.0699892757895,49.25108641670133],[-121.07000855621091,49.251099144580635],[-121.0700278375978,49.25111186347789],[-121.07004711804036,49.25112459134974],[-121.0700663994484,49.25113731023962],[-121.0700856799121,49.25115003810417],[-121.07010667252659,49.25116283526845],[-121.07012595301195,49.25117556312522],[-121.07014526406348,49.25118800367349],[-121.07016454456985,49.251200731522935],[-121.07018553722904,49.25121352867084],[-121.07020484831234,49.25122596920768],[-121.07022412885081,49.2512386970458],[-121.07024515114381,49.25125121585485],[-121.07026443170379,49.2512639436852],[-121.0702837428292,49.25127638420698],[-121.07030473555544,49.2512891813303],[-121.07032404574733,49.25130163082276],[-121.07034506809572,49.25131414961109],[-121.07036437926362,49.25132659011752],[-121.07038365988761,49.25133931792514],[-121.07040468226916,49.251351836701204],[-121.0704239934687,49.25136427719623],[-121.07044498531855,49.25137708326891],[-121.07046429653937,49.25138952375624],[-121.07048360777057,49.25140196423994],[-121.07050463020742,49.251414482995294],[-121.07052391090636,49.251427210776185],[-121.07054493336554,49.251439729523284],[-121.0705642446392,49.251452169991545],[-121.07058352537014,49.251464897761075],[-121.07060454786244,49.25147741649582],[-121.07062385916777,49.25148985695275],[-121.07064485112952,49.251502662984066],[-121.07066416245615,49.25151510343332],[-121.0706834432406,49.251527831183736],[-121.07070446578832,49.251540349897844],[-121.07072374754908,49.25155306866229],[-121.07074305796306,49.25156551807476],[-121.07076233974483,49.2515782368319],[-121.07078333178474,49.251591042834534],[-121.07080261358814,49.25160376158393],[-121.07082192499911,49.25161620200306],[-121.07084120586877,49.251628929723445],[-121.0708621989081,49.25164172673146],[-121.07088145020278,49.25165473277075],[-121.07090073110479,49.25166746047965],[-121.07092001297208,49.251680179206694],[-121.07093929389524,49.25169290690818],[-121.07095854618747,49.25170590395442],[-121.07097782713187,49.25171863164857],[-121.07099707849082,49.25173163766563],[-121.0710163308153,49.25174463470081],[-121.07103558219582,49.25175764071051],[-121.07105483358714,49.251770646716544],[-121.07107237377936,49.251783574452595],[-121.07109162614643,49.251796571473264],[-121.07111087756961,49.25180957746853],[-121.07113009940828,49.251822861786735],[-121.07114763964118,49.251835789509464],[-121.07116686150123,49.251849073820544],[-121.07118437215932,49.25186227986348],[-121.07120359404085,49.25187556416748],[-121.07122110471937,49.25188877020389],[-121.07124032662237,49.25190205450091],[-121.07125780772678,49.251915538857354],[-121.0712753184358,49.25192874488415],[-121.07129451077653,49.251942307497245],[-121.07131199095714,49.25195580082244],[-121.07132947210259,49.251969285166226],[-121.07134695325823,49.25198276950691],[-121.07136440387536,49.25199654114935],[-121.07138188505137,49.25201002548388],[-121.07139933664376,49.2520237881418],[-121.07141678729187,49.252037559774955],[-121.07143249713636,49.25205153147098],[-121.07144994875937,49.2520652941199],[-121.07146739943808,49.25207906574395],[-121.07148311026646,49.25209302845352],[-121.07150053137222,49.25210707839824],[-121.07151624126544,49.252121050080575],[-121.07153363279869,49.25213537834599],[-121.07154931311851,49.25214962834947],[-121.07156499344791,49.25216387835043],[-121.07158061460139,49.25217868500194],[-121.07159623481023,49.25219350062917],[-121.07161011420996,49.252208516322646],[-121.07162570580032,49.252223601293146],[-121.07163952507901,49.25223918261353],[-121.071653374914,49.25225447662691],[-121.07166716557347,49.25227032729132],[-121.07168095528775,49.25228618693181],[-121.0716930051438,49.25230223766198],[-121.07170676528429,49.25231837562507],[-121.07171878461095,49.25233471365646],[-121.07173080394611,49.252351051686055],[-121.0717427936978,49.2523676680405],[-121.07175475291159,49.25238457169804],[-121.07176503144666,49.25240110979366],[-121.07177696108543,49.25241829177441],[-121.07178721004418,49.25243510819369],[-121.07179742846411,49.252452211916264],[-121.07180764689156,49.25246931563752],[-121.071817835735,49.25248669768384],[-121.07182802458607,49.25250407972872],[-121.07183650220638,49.2525213835181],[-121.07184497983302,49.252538687306384],[-121.07185513911429,49.25255634767379],[-121.07186361675424,49.25257365145969],[-121.07187035356823,49.25259115531734],[-121.07187880067438,49.252608746405805],[-121.07188724874152,49.252626328514985],[-121.07189395598083,49.2526441106962],[-121.07190069186191,49.25266162352837],[-121.07190742870264,49.25267912738147],[-121.07191413595733,49.252696909560015],[-121.07192087185368,49.252714422389516],[-121.07192757911861,49.25273220456638],[-121.07193260473278,49.2527496301632],[-121.07193934064375,49.25276714299013],[-121.0719443662661,49.25278456858562],[-121.07194939189222,49.252801994180345],[-121.07195441752212,49.25281941977442],[-121.07195773095104,49.25283677609386],[-121.07196275658782,49.25285420168666],[-121.07196607097688,49.25287154902667],[-121.0719676435708,49.25288910541879],[-121.07197092837328,49.2529067310842],[-121.07197250097025,49.25292428747527],[-121.07197404493202,49.25294211321402],[-121.07197390627661,49.252959591352315],[-121.07197544928556,49.2529774260683],[-121.07197528199416,49.2529951735537],[-121.07197508415715,49.25301320834325],[-121.07197317506258,49.2530311648804],[-121.07197300681557,49.253048921342604],[-121.07197109771873,49.25306687787882],[-121.0719691886204,49.25308483441439],[-121.07196724992956,49.253103069275774],[-121.07196534082827,49.25312102581033],[-121.07196340117983,49.2531392696489],[-121.07195978081354,49.2531571479303],[-121.07195784211598,49.253175382789536],[-121.07195419215353,49.253193539396094],[-121.07195054218825,49.25321169600196],[-121.07194860253023,49.25322993983778],[-121.07194495255987,49.2532480964425],[-121.07194130258667,49.25326625304655],[-121.07193765261064,49.253284409650014],[-121.07193571294451,49.25330265348357],[-121.07193206296338,49.25332081008587],[-121.07192841297945,49.25333896668747],[-121.07192476299262,49.25335712328848],[-121.0719228233184,49.25337536711977],[-121.07191920291807,49.25339324539354],[-121.07191726419471,49.25341148024545],[-121.07191361419784,49.25342963684415],[-121.07191170506236,49.25344759336882],[-121.07190976633377,49.25346582821921],[-121.07190785719534,49.2534837847429],[-121.07190594805542,49.253501741266035],[-121.07190397877605,49.25352026341915],[-121.0716976595287,49.25470059247331],[-121.07137598694871,49.255574818651354],[-121.07100529853491,49.25644088327928],[-121.07057234829175,49.25729394892148],[-121.07008061524623,49.25813361479471],[-121.0695620491596,49.25896668272533],[-121.0690501901064,49.25980119155249],[-121.06852828230006,49.260632982532904],[-121.06787882311001,49.26114400910145],[-121.06714784727824,49.261483558415186],[-121.06578806786078,49.26192964858336],[-121.06488410515553,49.26214905087893],[-121.06326917714962,49.26218054829969],[-121.06182112248268,49.262566720373336],[-121.06016491741688,49.263711322893066],[-121.05877365900069,49.264919083484656],[-121.0576261711687,49.266775732173656],[-121.05720244304247,49.268409838592234],[-121.05636075249338,49.26933375777639],[-121.05561893908417,49.26996622693765],[-121.05539163493431,49.27119348833614],[-121.05697163847529,49.2720406870083],[-121.05803150938073,49.272410106479875],[-121.0589099835482,49.27283521100765],[-121.0595742021299,49.27367252746272],[-121.05929112696613,49.274552429113186],[-121.05905898448695,49.275438605805185],[-121.05905022796018,49.27547231569335],[-121.0590466008765,49.27549019293806],[-121.05904126172555,49.27550799172798],[-121.05903763463563,49.27552586897146],[-121.0590340075429,49.27554374621434],[-121.05903038044737,49.27556162345662],[-121.05902504128201,49.27557942224381],[-121.05902141418022,49.2755972994848],[-121.05901778707566,49.27561517672517],[-121.05901247758244,49.27563269719706],[-121.05900713840201,49.27565049598144],[-121.0590018289007,49.27566801645185],[-121.05899480732447,49.27568545846652],[-121.05898778670047,49.275702891502604],[-121.05898079479707,49.27572005520223],[-121.05897209177321,49.27573713146792],[-121.05896509985884,49.27575429516572],[-121.0589563661817,49.27577165872018],[-121.05894766313918,49.27578873498259],[-121.05894064152433,49.2758061769906],[-121.05893190782827,49.275823540541765],[-121.05892317508324,49.27584089511395],[-121.05891615345126,49.27585833711906],[-121.05890741973626,49.27587570066688],[-121.05889868601467,49.275893064213584],[-121.05889166532317,49.275910497237824],[-121.05888290190506,49.27592813909544],[-121.05887416816445,49.27594550263873],[-121.0588654344173,49.2759628661809],[-121.0588584127452,49.275980308179015],[-121.05884964930127,49.27599795003208],[-121.05884091649263,49.276015304593045],[-121.0588321827199,49.27603266813071],[-121.05882344894064,49.27605003166719],[-121.05881474579701,49.276067107911636],[-121.05880601200472,49.276084471445856],[-121.05879727820592,49.276101834978874],[-121.05878686295638,49.27611883276167],[-121.05877815882879,49.276135917979275],[-121.05876945565237,49.27615299421786],[-121.05875903942356,49.27617000097458],[-121.05875033623373,49.27618707721078],[-121.05873994967538,49.276203805651754],[-121.05872956406716,49.27622052511346],[-121.05871917845143,49.27623724457382],[-121.05870879282823,49.276253964032726],[-121.05869843688295,49.2762704051773],[-121.05868808093034,49.27628684632051],[-121.05867775465595,49.27630300914942],[-121.05866571628063,49.27631909351682],[-121.05865538999127,49.27633525634278],[-121.05864338224323,49.27635105341626],[-121.05863137352941,49.276366859465845],[-121.05861936576503,49.276382656535866],[-121.0586073876785,49.276398175291355],[-121.05859540862636,49.276413703023],[-121.05858174811237,49.27642886500086],[-121.0585681479197,49.27644346137331],[-121.05855115320755,49.27645762250705],[-121.05853250575895,49.27647114855023],[-121.0585104944313,49.27648395206144],[-121.05848854246516,49.27649619894244],[-121.05846496840557,49.27650752343943],[-121.05844148435351,49.27651800401503],[-121.05841637725162,49.276527571183266],[-121.05838961837058,49.27653649427771],[-121.05836469128887,49.27654437360176],[-121.0583381124301,49.27655160885142],[-121.05831168200267,49.2765574525311],[-121.05828705465025,49.276562521776654],[-121.05826083394314,49.276566399299575],[-121.05823473390059,49.276569145609706],[-121.05820875260915,49.276570778662936],[-121.05818120957258,49.27657092372343],[-121.05815375656017,49.27657022486108],[-121.05812639261573,49.276568691053946],[-121.05809908900919,49.2765665916368],[-121.05807016237146,49.27656357880541],[-121.05804300817589,49.27656007883319],[-121.05801420222014,49.27655593478076],[-121.05798713710286,49.27655159985662],[-121.05795839053742,49.276546899164025],[-121.05793135607856,49.27654227693544],[-121.05790435227318,49.27653736740969],[-121.05787902992554,49.27653282364016],[-121.05785202517343,49.27652792307913],[-121.05782505011786,49.276522744198616],[-121.05779978812565,49.276517634807405],[-121.05777281308188,49.27651245591384],[-121.05774758079234,49.276507068197795],[-121.05772066610118,49.27650132368825],[-121.05769375141669,49.27649557917194],[-121.05766857852895,49.2764896348122],[-121.05764169450738,49.27648360299239],[-121.05761652163281,49.27647765862052],[-121.05758969700933,49.27647107016264],[-121.05756455384056,49.276464847465924],[-121.05753947102133,49.27645805916046],[-121.05751264642014,49.2764514706833],[-121.05748759330855,49.27644440405308],[-121.05746254020455,49.27643733741704],[-121.05743748806606,49.27643026179734],[-121.05741246467056,49.2764229168371],[-121.05738744224087,49.27641556289308],[-121.05736244855476,49.27640793960852],[-121.05733748552836,49.27640002902783],[-121.05731252251049,49.27639211844128],[-121.05728930224676,49.27638399904046],[-121.05726436893981,49.2763758101301],[-121.05723946533588,49.276367342901466],[-121.05721630448606,49.27635866685976],[-121.05719143155254,49.27634991232947],[-121.05716830041501,49.27634095796479],[-121.05714345719481,49.27633192511076],[-121.05712032607552,49.27632297073556],[-121.05709725435527,49.276313459730375],[-121.0570724418167,49.27630413956937],[-121.05704937011564,49.27629462855366],[-121.05702632907739,49.27628483024269],[-121.05700325739538,49.27627531921686],[-121.05698024607219,49.276265242583264],[-121.05695720506311,49.2762554442571],[-121.05693419375976,49.276245367613434],[-121.05691118246641,49.27623529096467],[-121.05688820087931,49.27622493599845],[-121.05686518960609,49.276214859339625],[-121.05684392108374,49.276204573874466],[-121.05682093952687,49.276194218893394],[-121.05679798767699,49.27618358559495],[-121.0567767191839,49.276173300116014],[-121.05675376735451,49.27616266680793],[-121.0567326176693,49.27615126807027],[-121.05671149864973,49.27613958203816],[-121.05669040933817,49.27612761768931],[-121.05666937943245,49.27611509671129],[-121.056650091318,49.276102375908565],[-121.05662909209032,49.276089567631985],[-121.05660983465337,49.27607655953138],[-121.05658886418841,49.27606348191191],[-121.05656963647161,49.27605019549125],[-121.05655037906764,49.276037187379266],[-121.056529379897,49.27602437908202],[-121.05651009185864,49.27601165825266],[-121.05648903235564,49.275999415549734],[-121.05646794316515,49.27598745115483],[-121.05644853540608,49.27597585254118],[-121.05642735618217,49.275964732053076],[-121.05640440549404,49.275954089689456],[-121.05638310653622,49.27594409141974],[-121.05636000545624,49.27593485856403],[-121.05633681528735,49.27592646064046],[-121.05631353411228,49.275918915604585],[-121.05628845177118,49.27591212700302],[-121.05626331003783,49.275905895020365],[-121.05623813765325,49.275899950321964],[-121.05621287617487,49.27589484055473],[-121.05618590167023,49.275889661260024],[-121.05616055014396,49.27588539539539],[-121.05613345589038,49.27588133831476],[-121.05610804497206,49.27587762906259],[-121.05608089132589,49.27587412859338],[-121.0560537070247,49.27587091540754],[-121.0560264939842,49.275867971549346],[-121.05599753821522,49.27586523647209],[-121.05597026482046,49.27586285820214],[-121.05594299142847,49.27586047992538],[-121.05591571803932,49.27585810164172],[-121.05588670287896,49.27585592315927],[-121.05585939979319,49.275853823173634],[-121.05583209575173,49.2758517321589],[-121.0558030805993,49.275849553654005],[-121.05577580722372,49.27584717533498],[-121.0557485041481,49.27584507532123],[-121.05571951870677,49.275842618481526],[-121.0556922750427,49.27583996182914],[-121.05566503138178,49.27583730516977],[-121.05563781838565,49.27583436121355],[-121.05561063509661,49.27583113893814],[-121.05520777443863,49.27586595614085],[-121.05502644582764,49.27595292811636],[-121.05494100252983,49.27607644185101],[-121.05488355635693,49.2762116686799],[-121.05484257139305,49.276353857385566],[-121.05480978726507,49.27649980532588],[-121.05477865561174,49.276646388369045],[-121.05474430847717,49.27679085716756],[-121.05470503564311,49.27693311524125],[-121.0546724902707,49.27707681856504],[-121.05464330951641,49.27722123551819],[-121.05461076375076,49.277364938760904],[-121.05457323090455,49.27750700585423],[-121.05452566557958,49.277646348328325],[-121.05446304916057,49.2777816263255],[-121.05437168628707,49.277912193643274],[-121.05424163165068,49.278034508633844],[-121.05409069668744,49.278142892493605],[-121.0539235633288,49.27822572338216],[-121.05370354772359,49.27825594938048],[-121.05348256837584,49.278279084755034],[-121.05326363171274,49.27829920089497],[-121.05304649617972,49.27831856020798],[-121.05282900092587,49.2783412857423],[-121.05261006272713,49.27836140953322],[-121.05239178403272,49.27837535618707],[-121.05216845790754,49.27838823178028],[-121.05194852292873,49.27838546544287],[-121.05174254629901,49.27834866859996],[-121.05154701494172,49.27827851911071],[-121.05135737060951,49.27820158439119],[-121.05117490446412,49.27812188427864],[-121.05099451076038,49.278038895775936],[-121.05081390860629,49.277957864109446],[-121.05062979168481,49.277877527842065],[-121.05044561688835,49.27779773889339],[-121.05025540558906,49.27772614394022],[-121.05005555598703,49.277664246642544],[-121.04984402489845,49.27761506566962],[-121.0496309387506,49.27759654105566],[-121.04940668349033,49.27760203344999],[-121.04918207170006,49.27762695998121],[-121.0489788800398,49.27767684046553],[-121.04880023409368,49.27775462432424],[-121.04863817176852,49.27785431647489],[-121.04848863608402,49.27796558118138],[-121.04835426904448,49.27807979770324],[-121.04825459732794,49.27820744393165],[-121.04817469065334,49.278343332441146],[-121.04808994742775,49.278476174957554],[-121.04800520371694,49.2786090173808],[-121.04792211122283,49.27874250393661],[-121.04784070066816,49.278876347341885],[-121.04776436666207,49.27901098317421],[-121.04769301806546,49.27914726432526],[-121.0476283978127,49.279284982152376],[-121.04756548936581,49.27942277854781],[-121.04750089906534,49.279560208955296],[-121.04742621467715,49.27969548864097],[-121.04734483077567,49.279829053171866],[-121.04726008246057,49.2799618947395],[-121.04717365120358,49.280094379264156],[-121.04708553699226,49.28022650674184],[-121.04700081696699,49.28035906971852],[-121.04691774916787,49.2804922678639],[-121.04683804487838,49.28062618880614],[-121.04675996212656,49.280761032211714],[-121.04668359116317,49.280895954183],[-121.04660890224184,49.28103123303113],[-121.04653250063289,49.28116643314815],[-121.04645615906291,49.28130106759098],[-121.04637639156628,49.28143555362174],[-121.04629500159041,49.28156911701127],[-121.04621523412592,49.28170359389101],[-121.04613366366966,49.28183883592542],[-121.04604878723552,49.281972807323676],[-121.04595736266458,49.2821036450049],[-121.0458527481628,49.28222909513384],[-121.04573007852147,49.28234638101045],[-121.04558607887272,49.282453944733014],[-121.04542898032506,49.28255526787286],[-121.0452668632568,49.2826552415275],[-121.0451096730568,49.28275740806938],[-121.04496392860982,49.28286517052802],[-121.04482301982266,49.282975978804494],[-121.04467895560862,49.28308410680575],[-121.04452353549436,49.28318578551967],[-121.0443583805477,49.283281946459624],[-121.04419004039404,49.28337570535305],[-121.04402004678333,49.283468828667736],[-121.04385326774748,49.28356406620786],[-121.04369640181889,49.28366314225748],[-121.04355086067221,49.283768945545454],[-121.04343142522193,49.28388807372536],[-121.04333491200472,49.28401811609614],[-121.0432415827726,49.28415056016054],[-121.04313350180568,49.284276128166695],[-121.04300565299711,49.284393452776406],[-121.04286957125922,49.28450730435555],[-121.04272537859086,49.284616542722006],[-121.04257319316707,49.28472006360336],[-121.04241298520205,49.284818145273505],[-121.04224304327923,49.2849107000021],[-121.04206676142111,49.28499817247226],[-121.04188594333621,49.285079788511105],[-121.04169890454894,49.2851552090207],[-121.04150717873148,49.28522618252833],[-121.04131082646967,49.285292143424265],[-121.04111152848567,49.28535346668156],[-121.04090769450407,49.285408933395146],[-121.04070265806666,49.28545955389602],[-121.04049455590658,49.28550665890639],[-121.04028507258589,49.28555058750862],[-121.0400757686485,49.28559283690091],[-121.03986318950194,49.285633527874545],[-121.03965235315643,49.285674009906344],[-121.03944148567444,49.285714778805506],[-121.03923061782187,49.28575554729046],[-121.03901978036981,49.28579602808025],[-121.0388073195711,49.285835594772124],[-121.03859657082239,49.28587523982092],[-121.03838416988859,49.28591424009158],[-121.03817348101227,49.28595331872627],[-121.0379610784035,49.28599232713794],[-121.0377486763994,49.28603132615233],[-121.03753795663738,49.28607068184354],[-121.03732555295693,49.286109688998856],[-121.03711339037501,49.28614644237914],[-121.03689792286738,49.28618191554426],[-121.03668422709971,49.28621691047975],[-121.03646881858695,49.286251826179935],[-121.03625500286769,49.28628793347305],[-121.03604271738709,49.28632581590568],[-121.03583190439086,49.28636601213634],[-121.0356224426054,49.2864096533374],[-121.03541769621924,49.28645746275287],[-121.03521412100027,49.286510395955936],[-121.0350162815589,49.28657403105764],[-121.03482426921252,49.28664751522533],[-121.03463988677557,49.286730083443565],[-121.03446499484602,49.28682043205888],[-121.03430491360379,49.286917091929304],[-121.03416099359893,49.287023517494696],[-121.03403326469214,49.28713943051328],[-121.03391181317373,49.287260991380855],[-121.03379360592427,49.28738438858163],[-121.03367218297929,49.28750567083361],[-121.03353937476874,49.28762078103913],[-121.03339689180737,49.287729815973584],[-121.0332445550099,49.28783444540806],[-121.03308744113436,49.28793547147487],[-121.0329271423155,49.28803409520262],[-121.03276525068642,49.28813151762796],[-121.03260329867817,49.28822949639786],[-121.03244134502285,49.28832748388787],[-121.03227942149798,49.28842518384271],[-121.03211587531315,49.28852196078225],[-121.0319507960293,49.28861697979841],[-121.03178253182313,49.28870959642219],[-121.03161111255758,49.288799532339446],[-121.03143491626695,49.28888586476835],[-121.03125565547973,49.28896867258001],[-121.03107495315916,49.28904886955636],[-121.03088938332641,49.28912630687069],[-121.03070228048544,49.28920198617938],[-121.03051364561338,49.289275898497735],[-121.03032338720567,49.28934889667177],[-121.03013321875817,49.28942105062685],[-121.02994139788409,49.289492559749185],[-121.029749546551,49.28956434682256],[-121.02955940619647,49.28963622144476],[-121.02936914577282,49.289709208921394],[-121.02918050575042,49.289783127832855],[-121.02899024412805,49.28985611462597],[-121.02879841969298,49.289927621671985],[-121.02860500161785,49.2899979362394],[-121.02840996196184,49.29006731866385],[-121.02821489088142,49.29013698800503],[-121.028021501891,49.29020701422958],[-121.02782796195488,49.2902784405705],[-121.02763772605361,49.2903511466288],[-121.02745067273136,49.290426263569614],[-121.02726677401924,49.290504051752215],[-121.02708768077153,49.290585164701966],[-121.02691333224024,49.29067016801499],[-121.02674366959887,49.29075960933156],[-121.02657331310634,49.29085550508618],[-121.026407491055,49.290957248311166],[-121.02624455060813,49.29106420345706],[-121.02608806925012,49.291175110063456],[-121.02594324261423,49.2912896664474],[-121.02581019321511,49.29140673253188],[-121.02569240514065,49.29152591870367],[-121.02559345606137,49.29164596455803],[-121.0255182409284,49.29176936938484],[-121.02550422324666,49.29191588657203],[-121.02554750006757,49.29207378819996],[-121.02563305472911,49.292222650963126],[-121.0257474642409,49.29234323474897],[-121.02589944598873,49.29241847529026],[-121.02611231511818,49.2924556365317],[-121.02635325471013,49.29247181688698],[-121.02658944703988,49.29248412398565],[-121.02681040797891,49.29249402318465],[-121.02703807255303,49.29248957961907],[-121.02726603881942,49.292482325667386],[-121.0274879021698,49.29248382069359],[-121.02769897470598,49.29250566715325],[-121.02789315198496,49.292556632543175],[-121.02808852750617,49.29262850210418],[-121.0282787608104,49.292716211049246],[-121.02845378722407,49.2928173197393],[-121.02860366336206,49.29292825745137],[-121.02871835314856,49.29304631533026],[-121.02879611382694,49.293171692850265],[-121.0288469195097,49.293307673579484],[-121.02887789343022,49.29345203268411],[-121.02888945463896,49.29360086503447],[-121.02888878714823,49.2937513801967],[-121.0288779331268,49.293900586852146],[-121.02886239293477,49.29404534631405],[-121.02884195547306,49.294187624618104],[-121.02881463717807,49.294329865460476],[-121.02878389232558,49.29447195737952],[-121.02874798021676,49.29461408178269],[-121.02870864147715,49.29475605725531],[-121.02866587800322,49.29489786583902],[-121.02861968783647,49.29503952548464],[-121.02857184536902,49.29518054057474],[-121.02852228986663,49.29532147667805],[-121.0284710820359,49.29546176822203],[-121.02841822090019,49.295601424181825],[-121.028365389326,49.295740801790146],[-121.0283091319057,49.29588002146532],[-121.02825290499231,49.29601895380866],[-121.02819496400382,49.29615781613014],[-121.02813537061618,49.29629603388045],[-121.02807403420691,49.296434450922504],[-121.02801101452474,49.29657251066138],[-121.02794799446737,49.2967105703348],[-121.0278850039183,49.29684835164711],[-121.02782030115469,49.29698604497013],[-121.02775391411805,49.297123389959985],[-121.0276892096175,49.29726109212485],[-121.0276245355822,49.29739850694979],[-121.02755814737544,49.29753585173414],[-121.02749347256868,49.297673266423836],[-121.02742540159737,49.29781024484561],[-121.02735904209885,49.297947311127395],[-121.02729100021615,49.298084011113076],[-121.02722295793232,49.29822071102764],[-121.02715320239358,49.29835733191427],[-121.02708344644387,49.298493952727895],[-121.02701372093722,49.29863028619636],[-121.0269439641661,49.298766906863825],[-121.02687423687482,49.29890324916353],[-121.02680450917362,49.29903959139034],[-121.0267330382872,49.299176132875154],[-121.0266633097606,49.299312474954846],[-121.0265935817883,49.2994488079844],[-121.02652382254836,49.299585428212545],[-121.02639244499659,49.29986299532085],[-121.02634453099152,49.300004564989976],[-121.02633977918651,49.30001675073758],[-121.02629342637616,49.300159808745356],[-121.02624361753605,49.30030298705395],[-121.02619726414298,49.30044604495896],[-121.02615785285522,49.30058857484516],[-121.02613055245385,49.30073053534606],[-121.02612053178247,49.30087188509678],[-121.02613473441886,49.30101208715921],[-121.02616976263879,49.30115072324084],[-121.02622384483678,49.301288261960806],[-121.0262934954553,49.30142510193753],[-121.02637005815942,49.301561701130844],[-121.02645007716183,49.30169817988411],[-121.02652832386434,49.3018351361703],[-121.02660134142211,49.301972699332744],[-121.02666390016968,49.302111476345864],[-121.02671251520066,49.30225185690897],[-121.02676269213053,49.302393725803576],[-121.02681617484399,49.30253687471805],[-121.02686959810096,49.30268058016146],[-121.02692293104542,49.302825129403644],[-121.02697109535788,49.302969720003055],[-121.02701754694142,49.303114231590975],[-121.02705543267682,49.30325835731511],[-121.02708484505358,49.30340123537476],[-121.02710575217002,49.30354316202463],[-121.02711304565207,49.30368361312949],[-121.02710678516063,49.30382203210766],[-121.02708351456113,49.30395853933583],[-121.02703641133762,49.30409254067904],[-121.02696541550358,49.30422459269254],[-121.02687569598282,49.30435465392038],[-121.02676896570878,49.30448280327939],[-121.02563362837144,49.305724220142],[-121.03012982499347,49.309867631447844],[-121.03466574230694,49.31534947656013],[-121.03893587018617,49.319978992057685],[-121.04285905366287,49.3223243464787],[-121.05165583103965,49.32677113940921],[-121.0573203425294,49.32869248062506],[-121.06625529474503,49.32902367017121],[-121.06606473331088,49.328743205366884],[-121.07189250624197,49.32745695027486],[-121.0773280976566,49.327781624553374],[-121.08082627927269,49.33064817069486],[-121.08314969162491,49.33484772678355],[-121.07808585317663,49.33788617980323],[-121.07363884222465,49.343667790678104],[-121.07041546277154,49.34959865357726],[-121.07016518892202,49.350006689592135],[-121.07200839333856,49.35289084489544],[-121.0693572073759,49.35486996630238],[-121.06515894070219,49.35739062719673],[-121.06356936582813,49.35975270602168],[-121.06351250455303,49.36067274679838],[-121.06701403613798,49.36365271300716],[-121.06997265225003,49.36577929217924],[-121.07564549056602,49.3679322513786],[-121.07688603016527,49.3681970939703],[-121.08050942468033,49.36900819467971],[-121.08979079188624,49.37173386447349],[-121.09298605861584,49.37294450217151],[-121.10186211310794,49.376644813468914],[-121.10372953710919,49.37776588504151],[-121.11123617483331,49.38216996625138],[-121.11442079938689,49.385841528827214],[-121.11523405267923,49.389371732873414],[-121.11260923873196,49.3917524004031],[-121.10933995810534,49.39357085906348],[-121.1029860123016,49.39480759860744],[-121.0976206139574,49.39699783145015],[-121.0961360188523,49.39993408564697],[-121.0966642534119,49.402498211438875],[-121.10030456823118,49.40656052070943],[-121.100893690462,49.40855347565003],[-121.09967729234386,49.411432269805594],[-121.09630791643318,49.41313505551956],[-121.0910955381556,49.416979147808476],[-121.08957329990291,49.418831222934685],[-121.08865248553957,49.42307537507329],[-121.08850271914947,49.426559953440496],[-121.08880232127024,49.430103801937186],[-121.08930047494935,49.432041337964456],[-121.0893643152362,49.43403750864246],[-121.08836481250543,49.4381094642819],[-121.08717386017275,49.44475671125216],[-121.0869279142646,49.44784532489817],[-121.0846675641615,49.454280746918904],[-121.08305815792625,49.45836265520301],[-121.08149256570967,49.46164212941789],[-121.08061099589474,49.46433682284394],[-121.08260046551523,49.46602691651898],[-121.08628728266564,49.46878013666306],[-121.07796704689962,49.47214887529383],[-121.0724704699186,49.47314160391747],[-121.06748875893382,49.473841285963296],[-121.05551985805373,49.475375333370486],[-121.05352781919466,49.476033818686865],[-121.05714261337938,49.47958011148062],[-121.06016976546738,49.483712744588374],[-121.06157700063332,49.48632191232089],[-121.0634131430796,49.488930013931416],[-121.06415281658185,49.49028666152302],[-121.06640127768509,49.491629137706276],[-121.0708946398546,49.494997487340285],[-121.07531047756902,49.4987090274193],[-121.07626628022409,49.50115420634152],[-121.07701888688614,49.50537298494325],[-121.07720491375231,49.51114141014743],[-121.07595052662165,49.51601863257202],[-121.07047543261179,49.520381622135844],[-121.06287267885915,49.524316087307916],[-121.05868497403287,49.52517148934149],[-121.04992811493861,49.5259200133847],[-121.04282953824654,49.52938720244584],[-121.04341273995534,49.53104084202562],[-121.04691091360677,49.53647640492935],[-121.04933854319324,49.540675059737644],[-121.049052565124,49.543077207659906],[-121.04653248649416,49.546428005514336],[-121.04172605044968,49.5504351974617],[-121.03849215747496,49.55384788973891],[-121.03526350894366,49.56298443122319],[-121.03445586659979,49.56533530788638],[-121.03491810304604,49.57144898729194],[-121.03298898911063,49.577128869287094],[-121.03026543497178,49.58002609326568],[-121.02332202493561,49.58337557861188],[-121.01706866235435,49.58597371769787],[-121.00855234916469,49.589114020381345],[-120.99698935183368,49.59349597508908],[-120.99402750551775,49.594731948428034],[-120.98923530550687,49.60462302344509],[-120.98578925217447,49.612958948834304],[-120.9840360401252,49.616065013650676],[-120.98213976709505,49.62060617968673],[-120.98061472997185,49.62542735832646],[-120.98056235334712,49.626795642633944],[-120.9806705525546,49.629995177895374],[-120.97565162006907,49.63314610440043],[-120.97086554724298,49.637838348533464],[-120.96720521886687,49.641997483574606],[-120.96461739823269,49.64408814079844],[-120.95984117044765,49.652209919971355],[-120.95787164073262,49.654348800062266],[-120.95798773825761,49.658347291940636],[-120.95812296798603,49.6628037176348],[-120.95713556636717,49.66812842446568],[-120.95645946111222,49.67516673932587],[-120.95644712272217,49.67767975523308],[-120.96365819192576,49.673461679353224],[-120.97121693759509,49.66745124962257],[-120.97648287347221,49.664363750094914],[-120.99335432379216,49.65399617671553],[-121.00118266468125,49.64913862415656],[-121.01020294195332,49.64644811414702],[-121.01405623125568,49.64418399205633],[-121.0172370122994,49.644151136765785],[-121.01772008881251,49.644174398031254],[-121.01775041277932,49.6419761424871],[-121.02433642536528,49.6394508132238],[-121.02847610891347,49.63657883051055],[-121.02857194429366,49.63659054359729],[-121.02959383122483,49.63637689238689],[-121.03224359034552,49.634963376753525],[-121.03522817418273,49.63494247624254],[-121.03858898304402,49.63413500064468],[-121.04177724347335,49.6346681857836],[-121.04448574255616,49.63399140482796],[-121.04774361674556,49.633750430983675],[-121.04972172258354,49.63315690631105],[-121.05134117473567,49.63164307034179],[-121.05261732642846,49.631384428570485],[-121.05580380097103,49.632449129864426],[-121.05998900432469,49.63209554080945],[-121.06065269621476,49.63134065929032],[-121.06042561696654,49.62855027832947],[-121.06107087982573,49.62719209998694],[-121.06259815106863,49.62601431546308],[-121.06395115946614,49.62568352200117],[-121.06787075284637,49.62573069188257],[-121.07160088816681,49.624958161766145],[-121.07375730657661,49.62489360665839],[-121.07927665098556,49.625670532448964],[-121.08186710491383,49.62556741223635],[-121.0856252983647,49.62686393030866],[-121.09008059500991,49.62708948348127],[-121.09088705437873,49.62693993473232],[-121.09247953190284,49.62592306311381],[-121.09382762271828,49.62550602679025],[-121.09723943738688,49.626022327160854],[-121.09813841416388,49.62578503657162],[-121.10374814075577,49.62259347473009],[-121.10986279834796,49.615300051978664],[-121.11108411933475,49.614897120568344],[-121.11218917962158,49.61376196176884],[-121.11642038016757,49.61151766451781],[-121.1165021718153,49.61126971851656],[-121.1200441701002,49.610551400359256],[-121.12294037693577,49.6108231483613],[-121.12363431547445,49.61133837927621],[-121.12338424084399,49.61578674885095],[-121.12538378058831,49.61967976254056],[-121.12749078744199,49.61994640121285],[-121.13419356468215,49.62277326090614],[-121.13742763265243,49.62208734495184],[-121.13865543942467,49.6209667467176],[-121.14126748942527,49.619604845471194],[-121.1436894625913,49.61951556389309],[-121.14777359008403,49.61865376069181],[-121.15071745323574,49.61847943572027],[-121.15476032010783,49.617480563462614],[-121.15454588039154,49.61476356023185],[-121.15547990925447,49.61302080294366],[-121.156876923408,49.61186641621179],[-121.15880067196537,49.61110656776328],[-121.16059985909558,49.60863225320333],[-121.16325718776649,49.60774889862493],[-121.17104050532994,49.603589702579605],[-121.17657104344617,49.60305714284527],[-121.17657319562798,49.60277237600336],[-121.17724212123626,49.59745169933438],[-121.18054772487079,49.59195947488704],[-121.19000134776363,49.585697343831306],[-121.20118288765376,49.587545543759695],[-121.20825351930958,49.59255403992454],[-121.20878795480225,49.59380832368261],[-121.21165027244652,49.58854199985969],[-121.21817496436225,49.58068779453108],[-121.22771365215297,49.57540011484576],[-121.23125366621225,49.57772769884433],[-121.23638164693256,49.58171249505519],[-121.24319668062807,49.58694127924933],[-121.24737489759313,49.59115316875991],[-121.2536421632974,49.59473261292385],[-121.257882115052,49.596883205728595],[-121.26637719494664,49.60239425949653],[-121.27732974319298,49.60720813335048],[-121.28544311532491,49.610263334576146],[-121.29667240285941,49.61593080731514],[-121.30622668729596,49.620920919869064],[-121.30828661445642,49.624915854943495],[-121.30929821193772,49.629539919391895],[-121.31101686076036,49.63376002176533],[-121.31352767331863,49.63837478742444],[-121.31622767180302,49.644539938070935],[-121.32076169924514,49.64932180783495],[-121.32217643783683,49.650685808492064],[-121.32328384210507,49.6547966851167],[-121.32541128262254,49.66524558845265],[-121.32675854972615,49.66809674271248],[-121.32967804070024,49.66968237159779],[-121.33824405724114,49.67101526935323],[-121.35277877610302,49.67151968767494],[-121.3620732455428,49.675541419069994],[-121.37119957669951,49.680695339562796],[-121.39643997657333,49.677315785541154],[-121.41377033079654,49.67500079626063],[-121.4150558238821,49.67922193984943],[-121.41735219358155,49.67943750173305],[-121.42104753879522,49.6798211446272],[-121.42563743905718,49.680142547500935],[-121.43154150068584,49.68050877111472],[-121.43472020393283,49.68106461025554],[-121.44232979692464,49.68382599451448],[-121.44721017527382,49.6865414353755],[-121.45402475482388,49.68907601815096],[-121.46288979092115,49.69348575003975],[-121.47217039721322,49.69595168988268],[-121.4793334220711,49.697512718100725],[-121.48960987961922,49.70088136129581],[-121.49956260938002,49.70105252895068],[-121.50827665870578,49.70026035083271],[-121.51619926104745,49.69946475788674],[-121.52608441502127,49.700039659695086],[-121.53015508637625,49.70172420478018],[-121.53381644689799,49.70490639330848],[-121.53919274389925,49.711165259394726],[-121.54590226829623,49.717869705225155],[-121.54990558853534,49.7204146226279],[-121.55745981433026,49.72430835389333],[-121.56442622073237,49.73027048721833],[-121.56853514762479,49.73447530104774],[-121.57389349466706,49.738556034302206],[-121.57931218664339,49.74086762694031],[-121.58143748815888,49.74159695569207],[-121.58879280422028,49.743431191610085],[-121.59965776410276,49.74519258352166],[-121.60813217591908,49.74536754330716],[-121.61087763633459,49.74557721011285],[-121.61715488542048,49.747075453937214],[-121.62707827333735,49.7499833473512],[-121.63817271000954,49.753450723176634],[-121.64250786255256,49.75405033434285],[-121.64996850797655,49.7515954468381],[-121.65673738524315,49.750858866564386],[-121.66389751509155,49.75097879028337],[-121.67139677461714,49.75103961193715],[-121.67821234981206,49.7523078067367],[-121.68988669435772,49.75393662077747],[-121.69085772362995,49.75410451136866],[-121.6994593708611,49.756492686595344],[-121.70959088402847,49.76110778909935],[-121.71157043117651,49.76297860234795],[-121.71428505811778,49.76650452663303],[-121.71373049684962,49.77005513639889],[-121.70937421263339,49.77351824851569],[-121.70669355808026,49.776454740486706],[-121.7064788401993,49.77948764498696],[-121.70347423612938,49.78453760223118],[-121.70407183498196,49.788249459921026],[-121.70729786924075,49.79137489128534],[-121.70881537926878,49.792102948441254],[-121.7125201914551,49.791903905321924],[-121.7180133245238,49.792661776644756],[-121.72416111693745,49.795646674071406],[-121.72814931297482,49.801507960394275],[-121.73000830828717,49.806637116555216],[-121.72922669561832,49.81247998319671],[-121.72595890731536,49.81707350362573],[-121.71884069853684,49.81981956282539],[-121.71073133546827,49.820507654191566],[-121.71174892274024,49.823016677187],[-121.71659950042232,49.827556112840085],[-121.71886421987729,49.831024955908724],[-121.72405177551882,49.83435869630732],[-121.72526765031267,49.838183801587235],[-121.72509121399638,49.84275395488725],[-121.72789831599377,49.847140055278956],[-121.73333655406137,49.84915645655956],[-121.7380254281916,49.84980331902056],[-121.74389690772695,49.85136254096283],[-121.75324289067808,49.85540652699608],[-121.75525606523918,49.85847774914521],[-121.75531898230159,49.86185156937345],[-121.75751352590522,49.86612559468638],[-121.76070279412087,49.871246582134674],[-121.7654014290663,49.87166507229089],[-121.77057060983383,49.869106925148444],[-121.7771198614961,49.864421873206716],[-121.78056381739187,49.86016334880711],[-121.78154875596316,49.85597989318693],[-121.78253114755745,49.851973100214444],[-121.78330592063651,49.85082065435351],[-121.78399032180421,49.849439510507636],[-121.78760696647248,49.84449601824362],[-121.79411288177874,49.84204126489111],[-121.79826872998494,49.84257776289456],[-121.80300195761292,49.845169312660516],[-121.80810479164947,49.847988186371225],[-121.81624296072171,49.85295260447558],[-121.81865435943823,49.854302028431775],[-121.82418946548884,49.85683142966641],[-121.83121195487608,49.858483795228395],[-121.84241511299388,49.86211203752087],[-121.84758679656308,49.86406503396406],[-121.85228905216111,49.86505472589259],[-121.85763178923278,49.86666522534736],[-121.8671280919327,49.868411650731026],[-121.8721915425946,49.86911291811211],[-121.87868822958987,49.871225811649545],[-121.88507142422091,49.87197448872691],[-121.89004159456773,49.872325183302664],[-121.89763682916666,49.87214644646867],[-121.90321511825083,49.87255255412418],[-121.9106408828219,49.872086782534865],[-121.91803484719136,49.870414648258986],[-121.9226678827763,49.86814036717472],[-121.92727563631941,49.86426790775236],[-121.93334977165937,49.85940273899983],[-121.94028938457784,49.85716678948978],[-121.94710027508992,49.857161070377835],[-121.95471489650375,49.85783034325338],[-121.95789290263603,49.8578009396777],[-121.96652211559847,49.85628557457485],[-121.97129351458285,49.85223672256578],[-121.97253585674474,49.84856547016907],[-121.96971932726608,49.84481611796218],[-121.96750475395115,49.84071845272081],[-121.96998586594462,49.83720715124428],[-121.97735624097666,49.835077178772515],[-121.98281262981682,49.8336532425879],[-121.9870172370499,49.8284052119661],[-121.98976851843499,49.8216265128755],[-121.9908762692211,49.81978299935657],[-121.99606765427264,49.81881709740672],[-121.99948994865456,49.817870628792484],[-122.000136424423,49.817478849139654],[-122.00340648801793,49.81747693333498],[-122.00800417202258,49.816451605227336],[-122.01162953704014,49.81508548225935],[-122.01463775247886,49.81377384831757],[-122.02055539853579,49.812921131857806],[-122.02550757700408,49.81389178624887],[-122.02895532201208,49.81520608473866],[-122.0325764068774,49.817091181542224],[-122.03582202515405,49.819459010151114],[-122.0376026489484,49.820750218774364],[-122.04149314813193,49.824517005952494],[-122.04282281788295,49.825716339113086],[-122.04687728567572,49.82840014333442],[-122.05014772801381,49.82936896700102],[-122.05686878474509,49.830512341499094],[-122.06216787074707,49.832171467333126],[-122.07038445336927,49.83616714000032],[-122.0772842497536,49.83816446235906],[-122.08090492044293,49.8387970079849],[-122.08860523349298,49.841535446339975],[-122.09319540498781,49.84467610801606],[-122.09814896319368,49.84650169218454],[-122.10089001753225,49.84815414510501],[-122.10213573842455,49.85118121772516],[-122.1057608440284,49.85586567994659],[-122.11071657109665,49.861287918988474],[-122.1136319248584,49.86385461924451],[-122.12019221392661,49.86893705797913],[-122.12487424342706,49.87384443336611],[-122.1286924947447,49.87892810356348],[-122.13391159358079,49.88492108417286],[-122.14020481379532,49.88959688554962],[-122.14100120245055,49.89039716483969],[-122.14356775998648,49.895652072339196],[-122.15119272154699,49.903409801653645],[-122.15545205121256,49.90729086650044],[-122.158466927088,49.9092348048497],[-122.16015319123638,49.90957310576807],[-122.1657170108706,49.909057272871],[-122.17307469205556,49.908592630795795],[-122.1808681239556,49.90858279502304],[-122.19113546442856,49.90983191105874],[-122.1937001428618,49.91017097510936],[-122.1999079046829,49.910622969036496],[-122.21256405015276,49.91249543277175],[-122.22133695095839,49.913626922836585],[-122.23320085945818,49.914811729948404],[-122.23834510757209,49.91549110332204],[-122.24223880371011,49.91679870155867],[-122.24472804878405,49.919250488513114],[-122.24491162663719,49.92227483552817],[-122.24075798981994,49.92513520895525],[-122.23448713993574,49.92897333716321],[-122.23272652124459,49.931888640055234],[-122.23317829937197,49.935372401693506],[-122.23530911223962,49.93862516245959],[-122.23744537382377,49.94164619423407],[-122.2404658633403,49.94392824184361],[-122.246597016421,49.947915499008445],[-122.25387736776,49.95304346027714],[-122.26046092569032,49.95886060730925],[-122.26419907253523,49.96416561109433],[-122.26465304816541,49.968848780569],[-122.26466621343093,49.97022224086819],[-122.26040731014197,49.972796645861784],[-122.25254008068728,49.97680579304081],[-122.24660683724804,49.982066236376824],[-122.24228324676939,49.98641591007562],[-122.24077367957923,49.98812827385471],[-122.24317911344882,49.98977893405338],[-122.24664535276419,49.991946944995235],[-122.25064727628549,49.99473747375627],[-122.25225139135306,49.99713984561839],[-122.25296238227372,49.99970469175916],[-122.2526470796921,50.0038803397268],[-122.25166276417436,50.00650766931929],[-122.25166625019266,50.00884350361462],[-122.25165641210349,50.00930287692429],[-122.25270741728663,50.01147246492584],[-122.25323117190405,50.01478822682216],[-122.25323500880235,50.01593115597896],[-122.25126295895612,50.019691731716705],[-122.25035398056089,50.027341756973584],[-122.25138379500022,50.033340090964515],[-122.25616925149512,50.039060207699514],[-122.25961605344345,50.04134726318488],[-122.26483839850785,50.04432025694857],[-122.27183641320808,50.048326070175456],[-122.27351859145259,50.0489564808391],[-122.28052278225519,50.051192366348424],[-122.28681504995731,50.05410701217036],[-122.28680572001981,50.05627903795684],[-122.28502066138694,50.06101739518603],[-122.28199532153327,50.06535255152002],[-122.27975277554287,50.071056539281926],[-122.27901981565267,50.074717492688556],[-122.27883301229261,50.07888413825868],[-122.2722421936646,50.08572680206191],[-122.26850600518975,50.08726147198499],[-122.26201263274932,50.089307141871075],[-122.24743821470823,50.09277158010166],[-122.24030556532287,50.09761857181999],[-122.2396706773887,50.10292771141473],[-122.24106550127976,50.10823979565891],[-122.2458347121342,50.113557877217694],[-122.25098042868754,50.11653118602762],[-122.25266885873611,50.117622772436434],[-122.25647574847969,50.12121910905336],[-122.25745006307302,50.12282302641535],[-122.25894745910372,50.12487903735436],[-122.26108446899087,50.12665295016858],[-122.26648408287654,50.13116877391493],[-122.27286961374148,50.136145210968564],[-122.27409697746282,50.14031216084663],[-122.27220928411283,50.144024271485236],[-122.27558498818678,50.14779749533908],[-122.28259979857711,50.151117983826744],[-122.28800444147613,50.15597576894878],[-122.28870517978935,50.16043572172916],[-122.29011258639888,50.165856088239046],[-122.29364598743777,50.172028624028044],[-122.29639847273369,50.17317540015225],[-122.30369274340043,50.17278413192315],[-122.31135231545319,50.17341662736076],[-122.31526082201482,50.17621890204676],[-122.31524974360363,50.18032895259807],[-122.31327143865597,50.18535086883591],[-122.30846735581463,50.18769048522007],[-122.30168634800192,50.19122083917898],[-122.29989258239164,50.195331217106805],[-122.29738787844819,50.1990385367391],[-122.28830769452068,50.20028744624547],[-122.27947968120382,50.20187601789808],[-122.27563040165859,50.20775160995888],[-122.27535867201527,50.20935238324139],[-122.27257898766598,50.216542591015234],[-122.26649697181176,50.22052933601064],[-122.26693534212748,50.22338827968665],[-122.27486039925921,50.22430648941258],[-122.28322499616884,50.22483167149648],[-122.28919923021355,50.22575283047224],[-122.29569746081182,50.227307202396325],[-122.30450300405062,50.22811385836097],[-122.3108331128642,50.22812098882657],[-122.31412728518745,50.228694603631745],[-122.3242803389211,50.22916162327423],[-122.33434879281022,50.22894034829993],[-122.34307964713042,50.22911592891395],[-122.34984231741021,50.230375430824814],[-122.35786033886421,50.232613029978175],[-122.36088602778248,50.234443042158105],[-122.35962888918645,50.238036264006666],[-122.35489719974862,50.24083472087326],[-122.34616386195358,50.24379810443671],[-122.34232104364918,50.24722225183456],[-122.3426714515004,50.25018908139197],[-122.3456043427169,50.2521322453316],[-122.35255477917029,50.254766667591106],[-122.35825594949648,50.25722611305571],[-122.36484268749598,50.25950966711437],[-122.37081509528795,50.26368380615801],[-122.36767856594867,50.26899027489369],[-122.3668622875966,50.276015894561326],[-122.36292577283355,50.282692965372696],[-122.35809903226061,50.2874918049268],[-122.35747984200735,50.289947795126444],[-122.35933046539687,50.295426136189256],[-122.36004423009943,50.29913748700035],[-122.36342249743936,50.30696065297457],[-122.3669784213522,50.31170910462229],[-122.37000367971024,50.31519252887787],[-122.37678034256649,50.31890459618879],[-122.37963615732151,50.31942276804661],[-122.38382317640226,50.319827509890935],[-122.38695341777672,50.32113789141202],[-122.39122178254293,50.32599243134667],[-122.396657864558,50.33068066095843],[-122.40299478646423,50.333077457579144],[-122.41433161704524,50.33399506914899],[-122.42477462289786,50.33234179052925],[-122.4324539558276,50.330402725163594],[-122.4381735395656,50.32869021074909],[-122.4387080526177,50.32869055545839],[-122.43941647125922,50.332915976111494],[-122.44004532223664,50.33708143382539],[-122.44173906835523,50.34148414186268],[-122.4450455159772,50.343992863067136],[-122.44994855621657,50.34696210872527],[-122.45655352008123,50.35084939963096],[-122.46120887137074,50.35358520157945],[-122.47021825034498,50.359692089929695],[-122.47460246922354,50.36466287532608],[-122.4809487488396,50.369400029453374],[-122.4833544106203,50.36996683578354],[-122.49005181303585,50.371110065492964],[-122.49988790208111,50.371907926606376],[-122.50783606400249,50.37236083693765],[-122.51427691566332,50.37446838839585],[-122.51830049543689,50.377436915317],[-122.52232417565399,50.382972745636344],[-122.52448067262209,50.38679436963926],[-122.52447590365608,50.39216639917863],[-122.52332821061083,50.3953658138715],[-122.52154364691455,50.39896692835016],[-122.52270526553671,50.401994780820644],[-122.52393445289658,50.40213288942948],[-122.52398061903392,50.402333945703624],[-122.52398266006279,50.40251338393006],[-122.52397197191742,50.40269803655636],[-122.52397015379621,50.40288185190048],[-122.52399687843636,50.40306093098488],[-122.52404665857357,50.403237926528725],[-122.5241088238325,50.4034141860437],[-122.52417107590922,50.403589323620864],[-122.52424395636609,50.40376367001642],[-122.52432228084858,50.40393593797247],[-122.52441123390373,50.40410741471225],[-122.52449667373772,50.404278781100125],[-122.52455361413534,50.40445431832622],[-122.52457147088224,50.404634243177426],[-122.52461945452575,50.40481174841351],[-122.5246657685842,50.40498806763283],[-122.5246396579122,50.40516717978513],[-122.52462057499189,50.405346512370556],[-122.52462608987312,50.40552661659102],[-122.52462457678364,50.40570650029197],[-122.5245949515122,50.40588550203316],[-122.52455649740929,50.406064793540736],[-122.52453042919218,50.40624334000802],[-122.5245376145258,50.406424621012285],[-122.52458358391308,50.40660543632547],[-122.52470568107631,50.40675826737873],[-122.52492910811974,50.40687605047597],[-122.52511970161757,50.4070085381646],[-122.52530292205459,50.407145301483354],[-122.52546603979467,50.407291546073445],[-122.52560365303485,50.40744880295835],[-122.52572677909171,50.407611228124075],[-122.5258373475362,50.40777663299691],[-122.52593175777021,50.4079460292743],[-122.52598686496535,50.40812263171855],[-122.52604913080408,50.408297767208545],[-122.5261453000332,50.40846721829066],[-122.52625767271326,50.40863211224579],[-122.52638624829736,50.40879245800237],[-122.52652206868942,50.408950223777005],[-122.52666517811824,50.409104835153066],[-122.52683923810686,50.409246364012446],[-122.52697004881715,50.40940059832129],[-122.52697913135209,50.40958024625882],[-122.52695469808319,50.40976053486654],[-122.52693035089598,50.409939701570806],[-122.52690424633776,50.41011881314619],[-122.52687466999707,50.410297258066954],[-122.52684505062807,50.41047625938082],[-122.5268189454219,50.41065537081602],[-122.52675615474267,50.41083051628636],[-122.52668290589823,50.41100421828197],[-122.52661137091121,50.4111785317196],[-122.52653464998505,50.411351557950915],[-122.52643885779432,50.411520612532975],[-122.5263344084825,50.411687704266605],[-122.52622652951642,50.411853572799906],[-122.52612726410246,50.41202195140431],[-122.5260435536668,50.41219420029197],[-122.52596331431407,50.412367115714645],[-122.52587103237504,50.41253627978745],[-122.52574768012516,50.41269715539689],[-122.52559672767224,50.41285042704055],[-122.52544933227703,50.41300324324833],[-122.52529846480374,50.41315538360081],[-122.52514078258882,50.41330450313446],[-122.5249660870938,50.41344578373619],[-122.5247778072236,50.41358044843898],[-122.52462882204455,50.41373096459919],[-122.52453297485467,50.41390057346925],[-122.52445439767527,50.41407466440137],[-122.52435808630597,50.414227399159145],[-122.52412537561324,50.41432130956184],[-122.5239676854594,50.414470427209984],[-122.52381667821038,50.414624252527574],[-122.52365212929534,50.41477090544642],[-122.52348595185488,50.41491581569825],[-122.5233300148826,50.41506498746591],[-122.52318251821978,50.41521892208464],[-122.5230419201415,50.41537476431182],[-122.52290646400886,50.41553245005144],[-122.52277786370787,50.41569259988005],[-122.52266301962854,50.41585711270184],[-122.52256026019103,50.41602482053466],[-122.52249050161714,50.41619862893583],[-122.52250406236945,50.41638853777467],[-122.52248934507755,50.416556759334824],[-122.5222070634737,50.4165850105515],[-122.52192718669738,50.41660490686703],[-122.52165423910543,50.41664919346176],[-122.52139349255978,50.41671803589362],[-122.52113450195841,50.416786941855385],[-122.52085100848782,50.416762297456884],[-122.52057228401517,50.416721491490115],[-122.52033108291515,50.4167881383112],[-122.52010425642656,50.41689684467493],[-122.51987849456255,50.41701458048965],[-122.51964168291711,50.41711566722679],[-122.51938093061396,50.41718450488648],[-122.51910260560717,50.417184200914996],[-122.51881781337573,50.41717637894826],[-122.51853356770066,50.41718431723503],[-122.51827663062602,50.41724934076856],[-122.51803972834767,50.4173515369207],[-122.51778313568356,50.41741207193752],[-122.5175020135366,50.41742517079876],[-122.5172303385271,50.41747566732133],[-122.51696790886508,50.41754333117595],[-122.51673486317999,50.41764114762833],[-122.51651611866846,50.417759097464106],[-122.5162814858465,50.417854622988415],[-122.51601460285188,50.41791145685456],[-122.51573478483786,50.417953264111134],[-122.5154664464667,50.41800611047332],[-122.51525023359257,50.4181140164898],[-122.51505187996594,50.41824160126771],[-122.51478371157938,50.41829221126092],[-122.5145041069181,50.4183312063148],[-122.51424188507134,50.418396054569456],[-122.51398393852091,50.41847397365482],[-122.5137526820314,50.418571282584004],[-122.51357085762264,50.418712879567664],[-122.51335931488647,50.41876020273697],[-122.51319242073845,50.41861718836402],[-122.51295493033795,50.418521441885055],[-122.51271006511908,50.41842995201857],[-122.51246700135094,50.418337960482674],[-122.51223521966928,50.41823676919127],[-122.51201485117359,50.41812468199828],[-122.5117713571208,50.418038298074656],[-122.5114958442004,50.4180015109136],[-122.51124690605505,50.41791720351251],[-122.5110018735009,50.41782796244831],[-122.51075868675562,50.41773764536288],[-122.51052506782979,50.41763751691679],[-122.51029526864266,50.41753356775269],[-122.51006551421442,50.417429052694736],[-122.50983764801197,50.41732291423728],[-122.50959828435438,50.41722878332577],[-122.50935124117913,50.417142848681955],[-122.50910226874578,50.417059092806056],[-122.50884947845714,50.41697915652883],[-122.50859462768882,50.41690309519824],[-122.50833595966338,50.41683084444967],[-122.50807737922277,50.41675747125806],[-122.50781884335085,50.416683532053064],[-122.50755666300903,50.41661116869632],[-122.50729598058064,50.41654222560507],[-122.50703139327513,50.4164782238342],[-122.50676804407456,50.416420998849354],[-122.50650052943172,50.41637208065318],[-122.50622672289171,50.41635894961914],[-122.50594263121596,50.41638766943562],[-122.50565927747112,50.41640684846654],[-122.50538067665677,50.416387374523794],[-122.50510470108922,50.41635674597048],[-122.5048274464571,50.416319886737725],[-122.5045521671256,50.41628027318249],[-122.50417732442784,50.416229654893705],[-122.50379189623234,50.41647502128743],[-122.50359008951752,50.41660135309698],[-122.50337843223126,50.41671837715019],[-122.50314874554026,50.416817963294626],[-122.50289751476656,50.416900000498295],[-122.50263827804294,50.416971663331246],[-122.50237565635986,50.417041527379105],[-122.5021195414103,50.4171183526436],[-122.50188325477994,50.41721210507583],[-122.50167822914132,50.41733439144792],[-122.50148125036297,50.41746649486726],[-122.50127446434978,50.417588733942964],[-122.50106429308279,50.417709174403335],[-122.50084418459491,50.417821428691745],[-122.50060450751026,50.417913380099634],[-122.50034526133676,50.41798503748169],[-122.5000875978779,50.41805899340902],[-122.49983164720177,50.41813356964233],[-122.49957569637658,50.41820813630339],[-122.49931803038612,50.41828209042215],[-122.49906053752143,50.418353800287896],[-122.49879824954351,50.41841917742324],[-122.49854225154851,50.41849430707158],[-122.49829913827033,50.41858502053246],[-122.49806424548058,50.41868330748296],[-122.49783581563521,50.41878911242914],[-122.49761239680174,50.4188984400227],[-122.4973906466512,50.41900895349781],[-122.4971770743405,50.41912758805744],[-122.49697026908255,50.4192498188538],[-122.4967083217552,50.41931069471538],[-122.4964295218464,50.419338991341526],[-122.49614974761755,50.419357135314954],[-122.49586776415121,50.41935834013515],[-122.49558673847014,50.419347204222035],[-122.49530601735808,50.41933214571579],[-122.49502499197833,50.419321008378894],[-122.49474247052196,50.41930644928025],[-122.49445994924766,50.419291889461675],[-122.49417879401395,50.41928242822114],[-122.4938984813408,50.419284805454325],[-122.49362495231667,50.419313261848124],[-122.49335785796829,50.41937228472134],[-122.4930890486424,50.41943069490695],[-122.49281169857869,50.41946295992688],[-122.49253170390934,50.41948390380096],[-122.49225192721862,50.41950203793831],[-122.49197197597773,50.419522415002625],[-122.49170521280021,50.419554454647475],[-122.49159204653492,50.41971843370267],[-122.49149755863935,50.419891433821654],[-122.49140328761648,50.42006163377157],[-122.49133516049962,50.420235477326955],[-122.49128263306365,50.42041262167725],[-122.49124236476335,50.420590711917974],[-122.49120732484995,50.420769534443735],[-122.49118441317638,50.42095099008721],[-122.49123970591285,50.42112367607353],[-122.49137724214714,50.421280972700515],[-122.49152369763085,50.42143686910918],[-122.49165943498748,50.42159466610096],[-122.49179161418297,50.42175291701169],[-122.49192370713574,50.421912289546775],[-122.49204683868811,50.4220736273453],[-122.49215547444975,50.422240128975176],[-122.49224622946416,50.42241000498098],[-122.49230649619233,50.422586778872294],[-122.49237937149167,50.42276002024323],[-122.49249881740135,50.42292348973434],[-122.49263794683144,50.423083083696184],[-122.4927972389283,50.4232326365781],[-122.49299241145091,50.42335126985516],[-122.49326589452072,50.423414460835446],[-122.49351105268309,50.42350206222981],[-122.49375410562922,50.42359409471422],[-122.49399535799144,50.423686636444955],[-122.49424043193022,50.4237753580096],[-122.49448357494104,50.423866267051785],[-122.49471156907317,50.42397074898121],[-122.4949335505331,50.4240846035554],[-122.49514437734052,50.42420597684378],[-122.49533684456495,50.42433689020157],[-122.495494740657,50.42448189614364],[-122.49562145126231,50.42464277522274],[-122.49573533561968,50.42481000493949],[-122.49585299818322,50.42497397124269],[-122.49596525746813,50.42513945787503],[-122.49608480971433,50.42530180120716],[-122.4962278660697,50.42545645766886],[-122.49637812920379,50.425609083582636],[-122.49653208227816,50.42575958574249],[-122.49669144057879,50.425908567139224],[-122.49685268862102,50.42605591663361],[-122.49703045332201,50.426194800352754],[-122.49722289130943,50.42632626653125],[-122.49741168395227,50.426459308459386],[-122.49760223548982,50.42659240559062],[-122.49779103036188,50.42672544682888],[-122.49797978248384,50.42685905311653],[-122.4981685364184,50.42699265008634],[-122.49835909243512,50.42712574582885],[-122.49855505317768,50.427257329587],[-122.49874736926473,50.42739048014992],[-122.49892343107132,50.42752873968324],[-122.4990469947885,50.42768501594409],[-122.49910540647869,50.42786341665644],[-122.49923938793671,50.428021712975486],[-122.49935531303942,50.428185628360474],[-122.49946939483215,50.42835060090977],[-122.49958352060568,50.428515016889975],[-122.49969584550102,50.42867994259813],[-122.4998081719124,50.428844859184125],[-122.49992230016748,50.42900927471449],[-122.50003818713952,50.42917374560152],[-122.5001541619339,50.429337094524406],[-122.50027549824058,50.42949948799562],[-122.50039868029839,50.42966081499422],[-122.50052902499168,50.429820685597214],[-122.50066301724291,50.42997897981048],[-122.50079881218772,50.43013676393467],[-122.50093460738546,50.4302945568361],[-122.50106860246338,50.43045285046589],[-122.50119547975083,50.43061204375413],[-122.50130065386313,50.43077842367371],[-122.50144387618984,50.430931385152654],[-122.50147769005648,50.43110900709683],[-122.50149181871997,50.43129050589361],[-122.50151315330476,50.43146998296988],[-122.50153273007466,50.431649404517984],[-122.50155230700011,50.43182882602259],[-122.50157188408105,50.432008247483544],[-122.50159313237461,50.432188846190336],[-122.50153214587745,50.43236178452852],[-122.50142232533071,50.43252812557231],[-122.50130045867127,50.43269071264497],[-122.50117520516504,50.432851510351384],[-122.50104647852301,50.43301163151169],[-122.50090566243423,50.433168555036985],[-122.50076660272003,50.43332554282325],[-122.50067422744921,50.43349411610296],[-122.50063033757925,50.433673783043304],[-122.500641164592,50.43385237035128],[-122.50068912907125,50.43402931406803],[-122.50074408311934,50.434207036124356],[-122.50077420656069,50.434386790171],[-122.50079909908908,50.434565821269594],[-122.50091526441928,50.43472692469494],[-122.50104022112731,50.43488830542387],[-122.50114536148992,50.435055241018226],[-122.50124689872499,50.43522319627828],[-122.50134663545289,50.435391652337415],[-122.50144461478821,50.43556005278653],[-122.50155516272466,50.43572547609286],[-122.50168192645526,50.435886345993836],[-122.50179788060585,50.43605025722008],[-122.50189762121481,50.436218712610426],[-122.50196343566721,50.43639284462858],[-122.50199892689528,50.4365716424829],[-122.5020220241731,50.4367511737569],[-122.50203628755618,50.436930984021686],[-122.50205942829157,50.437109958794686],[-122.50211263327489,50.437287624016214],[-122.50220710315642,50.437455912446],[-122.50234103699866,50.437615324926405],[-122.5025041897283,50.437761606701436],[-122.50267832824848,50.437902603031354],[-122.5028286977013,50.43805466142712],[-122.50297357578066,50.438209362193604],[-122.50311309388229,50.43836500919087],[-122.50324892190345,50.43852279764229],[-122.50339745016589,50.438675921492376],[-122.50353152254428,50.43883364510867],[-122.50365096441219,50.43899822111222],[-122.5037777878989,50.43915853155121],[-122.50395571236588,50.43929628010644],[-122.5041465549396,50.439426554884314],[-122.50426076882651,50.43959040737231],[-122.50434787073677,50.4397629589282],[-122.50442253514736,50.439936800526546],[-122.50448832095898,50.4401114956271],[-122.50455050443566,50.44028719260291],[-122.50461092936976,50.44046284304536],[-122.50467671737144,50.44063752894562],[-122.50477111692808,50.44080693628755],[-122.50491579363039,50.44096443399267],[-122.50504983431743,50.441122720710716],[-122.50511584182635,50.44129460620326],[-122.50513873636683,50.44147694475095],[-122.50512474893159,50.44165755392237],[-122.5050494354482,50.4418334141319],[-122.50486312688693,50.44196305208621],[-122.50461004475379,50.44204446978301],[-122.50436008710766,50.44213105033433],[-122.50416489643253,50.442261531670916],[-122.50395307727216,50.44237910948782],[-122.50372946893872,50.44248957695782],[-122.50351927526005,50.44260889653911],[-122.50332078091586,50.44273645643983],[-122.50312901523218,50.44286815958396],[-122.50294397751966,50.44300401497873],[-122.50277252764126,50.443146488093575],[-122.50260947797294,50.443294281824095],[-122.50244312806826,50.44343915538511],[-122.5022611242591,50.44358129482059],[-122.50206338086323,50.44372180389697],[-122.50182680497097,50.44379474898778],[-122.5015511379324,50.44380347728495],[-122.50125864944978,50.44377907160317],[-122.50097981909607,50.44373766136395],[-122.50072057459668,50.44367100421984],[-122.50046984362585,50.44358549804101],[-122.50021503153617,50.44350716742358],[-122.49995639856319,50.44343265594776],[-122.4996959209888,50.443359210139384],[-122.49943272857003,50.44329804787809],[-122.49916089273071,50.44325742049066],[-122.49888243336265,50.44323400910079],[-122.49859963085281,50.443221138457815],[-122.49831621845122,50.44321612858739],[-122.49803426018815,50.44321509530331],[-122.49775438257527,50.44323267740358],[-122.49747539175995,50.44326154119661],[-122.49719392936778,50.44327682275957],[-122.4969114914304,50.44328196094105],[-122.49663203185774,50.44327143997145],[-122.49635444471177,50.443236804367366],[-122.49608941199944,50.44317670038902],[-122.49585191582817,50.443079798433054],[-122.49559724493048,50.44299977896995],[-122.49533607994721,50.44293529718198],[-122.49505698720064,50.44294277640672],[-122.49478764800622,50.44300623254451],[-122.49451426501273,50.44300827721777],[-122.49423535845159,50.44296797177818],[-122.49397072269817,50.44290281019673],[-122.49371948578691,50.442824019397946],[-122.4934723767576,50.44273748674715],[-122.49322548626726,50.44264815356074],[-122.49297644638347,50.44256380774254],[-122.49271748200249,50.442493766449104],[-122.4924565856422,50.44242591248814],[-122.49220363958555,50.44234649720406],[-122.49196795845535,50.44224907708693],[-122.49173442882991,50.4421466685515],[-122.49148908568755,50.44206018704964],[-122.491239572904,50.441982002601186],[-122.49104550171528,50.44184822938767],[-122.49079610770794,50.44174587438651],[-122.49055887333803,50.44175916511865],[-122.49037271143935,50.4419090265256],[-122.49015245844019,50.44202125620767],[-122.48990920166763,50.4421119486171],[-122.48964984290659,50.44218302243187],[-122.4893797022462,50.442234070218674],[-122.48910225278583,50.44226576864154],[-122.4888236555475,50.44228955820878],[-122.48854360550311,50.442309360662684],[-122.48826197072891,50.44232687212659],[-122.48797994320849,50.44234942640511],[-122.48769668090021,50.442365193576165],[-122.48742052726789,50.44235756974166],[-122.48715107826571,50.44230910715143],[-122.48688904428785,50.442233331906706],[-122.48664366593489,50.442147405078785],[-122.4864082598712,50.44204660778676],[-122.48617087846596,50.44194855422074],[-122.48592181158877,50.4418647578745],[-122.48566514469265,50.4417880251086],[-122.485398463723,50.44172671797338],[-122.48512445543757,50.44169160031157],[-122.48484763993606,50.44166989655873],[-122.4845667403134,50.44165536769255],[-122.48428377698137,50.441644704100135],[-122.48400076973161,50.44163460516275],[-122.48371978319045,50.44162119593136],[-122.4834393646794,50.44160049891174],[-122.48316127338076,50.441572560907844],[-122.48288379444347,50.44153676975533],[-122.48261044469933,50.44149323702401],[-122.48234135579324,50.441440275588405],[-122.48208065601204,50.44137015358706],[-122.48184091632903,50.44127989630729],[-122.48163356223532,50.44115861191392],[-122.4813850336374,50.44106806565827],[-122.48112403098172,50.44100187208784],[-122.4808463909152,50.440990810739],[-122.48055768469519,50.44100863583522],[-122.4802920820625,50.44097883777338],[-122.4800572653659,50.44087073082076],[-122.47978230315383,50.440847948455705],[-122.4795065462537,50.44081276105519],[-122.4792393542835,50.440758169706086],[-122.47895363260864,50.4407603415944],[-122.47869637282024,50.44082695866098],[-122.4784512095021,50.44091925739203],[-122.47822591938326,50.44102793066309],[-122.47802406313858,50.44115252492527],[-122.47783381294171,50.44128649298711],[-122.4776436057469,50.441419895326],[-122.47745854145067,50.44155514308529],[-122.47727681689501,50.441692754770564],[-122.4771001918338,50.44183276831879],[-122.4769235649768,50.44197279053591],[-122.47674843333277,50.44211622466813],[-122.47656002124809,50.44224912448843],[-122.47632359424405,50.44234225414848],[-122.47606557729813,50.442418395561866],[-122.47580773469949,50.44249229282451],[-122.47561716669344,50.442472182908524],[-122.47546872014641,50.44231902260619],[-122.47532568147106,50.442164342626704],[-122.47523494970586,50.44199446593595],[-122.47516391164511,50.44182070798504],[-122.47499353586743,50.44167753743339],[-122.4747881319388,50.44155405266744],[-122.47455635973401,50.44145222020076],[-122.47431891954433,50.44135526298164],[-122.47407365753084,50.44126818649271],[-122.47382593760055,50.441190018731966],[-122.47361504463049,50.441069172870264],[-122.47340964723772,50.44094568545917],[-122.4732390180159,50.4408058684003],[-122.47312139631049,50.440641881351155],[-122.47299111741196,50.440481980711105],[-122.47280225042034,50.440350021324015],[-122.47254741620264,50.440272757612085],[-122.47232132542459,50.4401660356794],[-122.47211773744807,50.440042045285274],[-122.47193274218627,50.43990570915497],[-122.47176444945275,50.439758658565864],[-122.47156794207939,50.43963432554664],[-122.47132462909985,50.43954504623413],[-122.4710721307364,50.43946053901062],[-122.4708441573241,50.43935544513996],[-122.47062761173552,50.439239468904205],[-122.47040526613064,50.43913005493258],[-122.47017373525067,50.43902541306112],[-122.46993644849779,50.43892676800047],[-122.46968905535631,50.438844669061],[-122.46940901226256,50.438819440451525],[-122.46914993037853,50.43875158737903],[-122.46890113249992,50.43866494358119],[-122.46866749816283,50.438564729592834],[-122.46844335887872,50.438455811992476],[-122.46822488998657,50.43834201847347],[-122.46800466399617,50.43822816849351],[-122.46778052727825,50.438119258482814],[-122.4675545463487,50.43801140478002],[-122.46733225778762,50.43790142808452],[-122.46711928880828,50.43778499146999],[-122.4669583593625,50.437634235604875],[-122.46673163596401,50.4375359197073],[-122.46646918122696,50.43746626105256],[-122.46621230887128,50.43739284818815],[-122.46595148181132,50.43732493148369],[-122.46568872167776,50.437259201651024],[-122.46542605016515,50.43719234941976],[-122.46516544475017,50.437121630910056],[-122.46490277481209,50.437054777428585],[-122.46463738087576,50.43700020672801],[-122.46435453980388,50.437010861962506],[-122.46413433044816,50.43691949559454],[-122.46399495115104,50.436763799327835],[-122.46386119948632,50.43660377504117],[-122.4637201082806,50.43644745691516],[-122.46351053950302,50.43633281247191],[-122.46325939229273,50.43625395207197],[-122.46305430884904,50.436127079441675],[-122.46283168884541,50.43602158055467],[-122.46256880929852,50.43595752139556],[-122.46228988687672,50.43591825708403],[-122.4620037989346,50.43592543779293],[-122.46173344738418,50.43591174407893],[-122.46151461157231,50.43580298943955],[-122.46130052508246,50.43567863284518],[-122.46104951695885,50.4355980892109],[-122.4607807523701,50.43554170979447],[-122.46051603176338,50.4354787203478],[-122.4602474001709,50.435420661463766],[-122.45997274580598,50.435394455574645],[-122.45968903485827,50.43539383407772],[-122.4594072567395,50.435413507019454],[-122.4591390121532,50.43546285959663],[-122.45887608335691,50.43553430615086],[-122.45860410396502,50.43556385352148],[-122.45831371246179,50.43555850780685],[-122.45829685349854,50.435391531322495],[-122.45834350739962,50.43520128540416],[-122.45848421429366,50.43504777265874],[-122.45852110851561,50.43486958521047],[-122.45839256797673,50.43471084421891],[-122.45825145724216,50.43455508414226],[-122.45810129389825,50.43440239932969],[-122.4579273080493,50.43426133245092],[-122.45770497404614,50.43415244875053],[-122.45744650847654,50.43407728094463],[-122.45719371442777,50.433997228641694],[-122.45699358007818,50.43387500008746],[-122.45681801854063,50.4337316226747],[-122.45664039152517,50.43359211944191],[-122.45645542500817,50.43345632178738],[-122.45625749342865,50.43332853917483],[-122.4560539810715,50.43320450928047],[-122.4558485793669,50.43308210992663],[-122.45563957472712,50.432960719520985],[-122.45543237287991,50.43283882852009],[-122.45522701892516,50.432715862588026],[-122.45502355585799,50.43259127431113],[-122.45482743378025,50.43246298883281],[-122.4546314453411,50.43233301584653],[-122.4544335238431,50.43220522980106],[-122.4542244833533,50.43208439299456],[-122.45399487214199,50.43197865091171],[-122.45380781041936,50.431847270436194],[-122.45364303443048,50.4317014251409],[-122.45348564375789,50.43155131747818],[-122.45333005576647,50.431400709414206],[-122.45316893134353,50.43125328868737],[-122.45299136906598,50.431113222783964],[-122.45277099667032,50.43100214148267],[-122.45254513091336,50.43089369985847],[-122.45231724384313,50.43078856680454],[-122.45207788432955,50.43069487872987],[-122.45183483438824,50.430603312149415],[-122.45158985047479,50.43051394126351],[-122.4513447355944,50.43042624799338],[-122.45109588577967,50.43034124154154],[-122.45084101320475,50.430265605184864],[-122.45057435933676,50.430205335252246],[-122.45031575178093,50.43013239400267],[-122.45006870713848,50.4300468851137],[-122.44983898402015,50.42994281232732],[-122.44962627412274,50.42982409744738],[-122.44944499251665,50.42968671294048],[-122.44929487441442,50.429534024257585],[-122.44921547507155,50.42935604374647],[-122.44901946534989,50.4292491084373],[-122.44876139530491,50.42916943286256],[-122.44854869188062,50.42905071580192],[-122.4483638565457,50.4289137821201],[-122.44818451677406,50.42877420818565],[-122.44799203526954,50.428644891929416],[-122.44776452325084,50.42853526215187],[-122.44750214935206,50.42846556682646],[-122.44722908138014,50.42844219441265],[-122.44694783465279,50.42843317892079],[-122.44666425661738,50.428431393369124],[-122.44637887630425,50.428430116105474],[-122.44609754150272,50.428422220225706],[-122.44581497896647,50.42840753665955],[-122.4455354816546,50.42842106567327],[-122.44525857183203,50.42844648977637],[-122.4449794628791,50.4284774566674],[-122.44470202227468,50.42850960998047],[-122.44442462580918,50.42854119722808],[-122.44414876618352,50.4285756401023],[-122.4438742213517,50.4286157564899],[-122.44360099262794,50.428661528451805],[-122.44333088084521,50.428712464981324],[-122.44306537853613,50.428771987805824],[-122.44280290527584,50.42883778803848],[-122.44253599807138,50.428892757139565],[-122.44226330474852,50.42881990204211],[-122.442039929675,50.42872501275453],[-122.4420734564317,50.42854559475882],[-122.44198467941361,50.42837517907499],[-122.44188887195932,50.42820453756723],[-122.44183578224829,50.42802851968074],[-122.44181117085154,50.427848917560674],[-122.44182356094137,50.42766937867214],[-122.44184473967583,50.4274901218922],[-122.44183599277655,50.42731046215593],[-122.4418219720356,50.42713064206183],[-122.44179389029291,50.426950361505746],[-122.4417833414146,50.426771210583965],[-122.44183936433326,50.42659701289067],[-122.44192869554567,50.42642500007522],[-122.44200405218135,50.426251422937945],[-122.44204627800573,50.42607339932811],[-122.44207272816888,50.425894311428536],[-122.44208867589602,50.42571432852844],[-122.44209051826051,50.4255344505741],[-122.44208001309663,50.425354733992556],[-122.44205184230765,50.42517558384578],[-122.4419988000816,50.42499900000064],[-122.44193688092273,50.42482326469167],[-122.44190335041019,50.42464505789775],[-122.44188757259727,50.424465180784765],[-122.4418788699675,50.42428496397595],[-122.44186660831903,50.424105190664356],[-122.44184191052095,50.42392670944303],[-122.44173521374634,50.42376021535733],[-122.44157789030042,50.42361008931626],[-122.4414656126353,50.42344735628816],[-122.4414001386496,50.42327206386538],[-122.44134187233374,50.42309475357571],[-122.44123112231054,50.42277855523175],[-122.44104193606837,50.422652704145385],[-122.44083284258053,50.42253352781276],[-122.44060920300514,50.42242007370219],[-122.44037813670504,50.422311436796775],[-122.44014685073323,50.42220559933771],[-122.43991147542613,50.42210694446395],[-122.43966075776981,50.42202410753626],[-122.4394081957384,50.421942326361716],[-122.43917255798112,50.421847035202624],[-122.43896009048139,50.421726064103765],[-122.43875689873641,50.421599200746016],[-122.43853071575475,50.42149577280401],[-122.43827538311493,50.42142683737364],[-122.4380026844936,50.4213770284135],[-122.4377261620244,50.42133102750026],[-122.4374554883555,50.42127789939676],[-122.43718423954813,50.421232066626544],[-122.43690577107049,50.42121074261828],[-122.43662312345639,50.4211977226492],[-122.43634183539376,50.421189801955975],[-122.43606014929044,50.42118692402709],[-122.43577801970892,50.421189663205716],[-122.43549781156743,50.42121269760547],[-122.43522184266064,50.42127129765523],[-122.43512873918428,50.42126774484419],[-122.43519498630702,50.42107587471094],[-122.43519861340953,50.42089605236645],[-122.43524613276396,50.420718208737725],[-122.43522866999497,50.42053770788951],[-122.43515425995616,50.420364372007654],[-122.43497850983819,50.420224888309654],[-122.43481388165924,50.42007844756537],[-122.43468010486013,50.419920637300386],[-122.43455547125356,50.419758613516144],[-122.43444520771382,50.41959312023134],[-122.43434751274076,50.41942465733556],[-122.43425878278052,50.419254233530054],[-122.43417550291927,50.41908173573093],[-122.43409393644536,50.41890985975843],[-122.43401061390239,50.41873791816004],[-122.43393265206129,50.41856503333259],[-122.4338672590281,50.41838917002232],[-122.43381632388943,50.418208715610156],[-122.43374543784479,50.41803549139464],[-122.43360933785996,50.41788490991216],[-122.43340257507707,50.41775904478743],[-122.43320319733597,50.41762891843746],[-122.43300246184232,50.41749369164702],[-122.4328359154211,50.41734943444227],[-122.43277315609966,50.41718491007104],[-122.43279814636156,50.41700240050323],[-122.43281795308073,50.4168185993935],[-122.43278094983856,50.4166402749147],[-122.4327261958415,50.416463637154784],[-122.43266076587535,50.41628833804563],[-122.4325935351617,50.416113538682154],[-122.43258197704097,50.41592535368914],[-122.43249575554869,50.4157679457805],[-122.43225696059645,50.4156685953374],[-122.43202594889799,50.41555994011637],[-122.43178059850625,50.41547668908325],[-122.43151616922185,50.41541194172083],[-122.43125363059657,50.415345572146954],[-122.43098775626852,50.415276836217686],[-122.4307183675259,50.41520799540505],[-122.43047855925654,50.41512154595341],[-122.43033267318413,50.414983572762594],[-122.43027521444914,50.41479672423122],[-122.43019367125278,50.41462483549601],[-122.43011397388261,50.414451890480294],[-122.43002707157129,50.41428095347284],[-122.42992219831284,50.41411450263823],[-122.42981381141318,50.41394793842666],[-122.42972150620574,50.413778518357304],[-122.42963460596414,50.4136075898726],[-122.42954058964217,50.41343754758114],[-122.42942680082264,50.413272500123234],[-122.4293612108655,50.41309944192028],[-122.42934026021227,50.41291882516959],[-122.42932629436584,50.412738991293004],[-122.42931408507312,50.412559222978025],[-122.42927705443645,50.412381461756546],[-122.42922943726299,50.412203917099234],[-122.42917290139141,50.412027776376085],[-122.42910929275361,50.411851974429936],[-122.42904564061071,50.41167672881032],[-122.42897667362872,50.41150186961261],[-122.42889698642266,50.41132892304689],[-122.42880464599861,50.41116005806156],[-122.42869257868769,50.4109956224201],[-122.42856974753326,50.410833655716225],[-122.42843975621906,50.41067314045022],[-122.4283115228996,50.41051268164525],[-122.42819598957723,50.410347566700764],[-122.42807496374233,50.41018509058837],[-122.42788991265985,50.41005260668785],[-122.42767933258033,50.409931103472836],[-122.42748158540283,50.40980326577759],[-122.42730234193883,50.409664211159715],[-122.42712863622125,50.409521969858105],[-122.42695488757354,50.409380284661566],[-122.42676259343948,50.40925037203868],[-122.42656287325764,50.40912527588732],[-122.42640200362493,50.40897669938786],[-122.42618905412905,50.40886298895967],[-122.42593856862078,50.4087784324866],[-122.42568606069092,50.40869718408895],[-122.42543153029494,50.40861924375389],[-122.42517695673227,50.40854185922928],[-122.42492809832099,50.408459044290716],[-122.42469656417458,50.40835765989911],[-122.42450999589282,50.4082223044172],[-122.42436543782516,50.408068060876026],[-122.42423907214749,50.407906531767665],[-122.424121669814,50.407743042485585],[-122.42400967207035,50.4075780450059],[-122.42390488129423,50.40741102170854],[-122.42381103230815,50.40723929505916],[-122.42378281233042,50.4070618144058],[-122.42377945601261,50.406881762415786],[-122.42379204487,50.406700542660374],[-122.42381860079225,50.40652088940658],[-122.4238763806913,50.40634730950398],[-122.4239951626653,50.4061818888367],[-122.42401982699475,50.40600386586332],[-122.42399174055913,50.40582469782868],[-122.42395126667414,50.40564626349827],[-122.4239001190076,50.405469167004654],[-122.4238455916106,50.40529026985384],[-122.42375859702115,50.4051210131366],[-122.42361400666466,50.40496733339544],[-122.42342952374219,50.40482810151392],[-122.42321866869455,50.40471051976063],[-122.42297788439664,50.404615021963544],[-122.42274461748302,50.40451357627741],[-122.42256523114409,50.40437676562138],[-122.42238782521721,50.40423720244754],[-122.4221771981541,50.40411680968192],[-122.42196468245291,50.40399803793845],[-122.42176346378275,50.40387007560289],[-122.42155653145312,50.40374755153642],[-122.42132071472913,50.403656151011944],[-122.42104422875714,50.403611229271156],[-122.42081039317087,50.40351707546285],[-122.4205978838805,50.40339830101022],[-122.42036629574807,50.4032980376908],[-122.42011378434647,50.403217332450005],[-122.41985798224471,50.40313371309702],[-122.41963369096679,50.403030309986846],[-122.41945638830548,50.40288962010435],[-122.41931393291631,50.402731495007956],[-122.41921979945604,50.40256369419308],[-122.41915435305076,50.40238950585216],[-122.4191068302741,50.40221139822484],[-122.41906826939959,50.402031330934776],[-122.41903493488806,50.40185199037512],[-122.41901038351018,50.40167294270799],[-122.41899466069798,50.401493613585984],[-122.4189825403539,50.40131327622566],[-122.41896150357796,50.4011343330408],[-122.41891573956879,50.40095628184585],[-122.41882886071951,50.400785898556975],[-122.41877422527037,50.40060868502761],[-122.4187231035847,50.40043158502867],[-122.4186006036933,50.40026623978418],[-122.41837039276474,50.4001710722498],[-122.41811394429492,50.40009585745702],[-122.41784795687116,50.40002989766365],[-122.41771118289186,50.40000017373914],[-122.41757959077763,50.399971732904945],[-122.41731051355302,50.39992254177074],[-122.41703541025888,50.39988271916191],[-122.41675999633605,50.39984681762692],[-122.41648287106507,50.39981029319294],[-122.41620754702711,50.39977326849784],[-122.41593213442854,50.39973736490109],[-122.41565667740224,50.39970202599754],[-122.41537937585998,50.3996677423661],[-122.41510383065808,50.39963352386925],[-122.4148261289248,50.39960429136366],[-122.41454667092162,50.3995750012968],[-122.4142711717977,50.39954021534773],[-122.41400843932281,50.39947772538276],[-122.41375402586004,50.39939919196303],[-122.41350150314932,50.39931903664609],[-122.41325663133027,50.39923125580857],[-122.41303079606884,50.39912553838431],[-122.41282215252104,50.39900294039876],[-122.41262629666402,50.39887456597661],[-122.41243980365958,50.39873918857854],[-122.41226429680427,50.39859854333587],[-122.41210346742967,50.39845050053933],[-122.41195349008598,50.398298877164194],[-122.41181080807368,50.39814410686655],[-122.41167726559922,50.39798514274846],[-122.41150950321592,50.3978357495524],[-122.41127649356034,50.39775397148238],[-122.41099075499586,50.397737397651476],[-122.41071373574104,50.397699745890186],[-122.41043469367959,50.3976653928782],[-122.41015738141067,50.397653597650205],[-122.4098782419111,50.39766479377252],[-122.40959821062651,50.39768720700933],[-122.40931940058427,50.397716407174435],[-122.40904036759196,50.39774840660314],[-122.40869813242419,50.39782222722476],[-122.39999960894586,50.39665751253361],[-122.35713201942228,50.39090815449026],[-122.35713049984851,50.385817018549425],[-122.35711298449037,50.38581588440371],[-122.35674422002118,50.38580375091122],[-122.35635011888861,50.38575647356514],[-122.35602904677854,50.38572060515181],[-122.35565668086657,50.385709474208426],[-122.35534022803549,50.38572548454259],[-122.35492422432475,50.38573147727876],[-122.3545630561273,50.38575613591487],[-122.35425465782804,50.38578141523333],[-122.3539085232171,50.385816131514574],[-122.35356797335193,50.38584708958608],[-122.35318598311108,50.38591155749058],[-122.35264570784048,50.38590838274252],[-122.35213764521247,50.38596418603423],[-122.35186372075302,50.386020395560806],[-122.35162016029697,50.386136658079685],[-122.35131272328282,50.38621538146877],[-122.3510226752706,50.38627498973002],[-122.35044489763257,50.38634367631749],[-122.35036299833469,50.386333103620785],[-122.35028113465259,50.386431073602715],[-122.3502518944305,50.38646610132435],[-122.35019206594562,50.386531046495925],[-122.34997581513248,50.386766860947766],[-122.34983674845255,50.386897244831125],[-122.34967535106581,50.387107873343446],[-122.34942552519091,50.3873015314795],[-122.34936254482417,50.38736187335051],[-122.34912972228702,50.3874976051907],[-122.34899785781197,50.38753880453413],[-122.34880748653954,50.387606759733345],[-122.34866557112665,50.38766338256558],[-122.34826605104621,50.38787908640214],[-122.34801424729297,50.38796638422896],[-122.34782754204005,50.388076073964655],[-122.34771847889847,50.38816189762396],[-122.34738860440244,50.3883872109391],[-122.34726913940517,50.38847099944182],[-122.34708810711155,50.3885758093213],[-122.346853082377,50.38876038546675],[-122.34659558169153,50.388874485935666],[-122.34627654364077,50.389030986871795],[-122.34583821580384,50.38926902127699],[-122.34560998179002,50.38930422911715],[-122.34531030066084,50.38946079936181],[-122.3451889820784,50.38954564928779],[-122.34503154662585,50.38970691374624],[-122.34485076253159,50.38983029097899],[-122.34473383025797,50.38988266787231],[-122.34445519807312,50.38999663290464],[-122.34415217755617,50.39015084045081],[-122.34386090029925,50.390246948661854],[-122.34361278332338,50.390310172343504],[-122.34333921621148,50.39038324455835],[-122.34320903373766,50.39044699658855],[-122.34305648928749,50.39048244942682],[-122.34273295889567,50.3905201280442],[-122.34243655745499,50.390527209184626],[-122.34215756666842,50.390558484146375],[-122.34213959645528,50.39056294735208],[-122.34200826091116,50.3905974167722],[-122.34184787277091,50.39064273151252],[-122.34161124139085,50.39069452503711],[-122.34111078566399,50.39085119950712],[-122.34077370030361,50.39094746887804],[-122.34050925318434,50.3910382736365],[-122.34025257100521,50.39116363442755],[-122.34000285321645,50.39124648479562],[-122.33950385355011,50.391428502522906],[-122.3391455906302,50.391590435629176],[-122.33878245385138,50.3917038337403],[-122.33869467141008,50.39172230140901],[-122.33837568151354,50.391812422629464],[-122.33821890596218,50.39183479012591],[-122.33798094009622,50.39196808009291],[-122.33765572383571,50.39206979867201],[-122.33751169542884,50.39208696308855],[-122.33737827774368,50.39212529044201],[-122.33705490619535,50.39222594359508],[-122.33695843176298,50.392242997680775],[-122.3367991064072,50.39229678058002],[-122.33672982207598,50.392325981315814],[-122.33641179986896,50.392490919759915],[-122.33623149923727,50.392586181161796],[-122.33563365564889,50.392944312277926],[-122.33534946789122,50.393082806793274],[-122.33502295441701,50.393156923421714],[-122.33475560808088,50.39323973688401],[-122.33442285967304,50.39328215272455],[-122.33436118944357,50.3933042887706],[-122.3340392291326,50.39347415618965],[-122.33399158957457,50.39351869343779],[-122.33377149233678,50.39369192321478],[-122.33370287493256,50.393777948074174],[-122.33345972304548,50.39399652830404],[-122.33327140971356,50.39412526200759],[-122.33312858972911,50.394192516376364],[-122.33282952826366,50.39427540898805],[-122.33253057060648,50.39429193561151],[-122.33241732654993,50.39432024480551],[-122.33207298936044,50.39441849807614],[-122.33169890379112,50.39449271223846],[-122.33114986708219,50.394552698200705],[-122.33095284444454,50.39459340986228],[-122.33076635943482,50.39463447032669],[-122.33060373378306,50.394685318982106],[-122.33039628817781,50.394745929661816],[-122.33017878452192,50.39482195303733],[-122.32982773612234,50.39495934310308],[-122.32951885463545,50.39503290369346],[-122.32924163232786,50.39510694597233],[-122.32902289471329,50.39519810577687],[-122.32869843139521,50.39526833129174],[-122.32837311964381,50.395283982274286],[-122.32829725576464,50.395307336112594],[-122.32798061278699,50.39534632608221],[-122.32775114721606,50.39535277209077],[-122.32764271060876,50.3953868596813],[-122.32748804172398,50.39549138853781],[-122.3273219436339,50.395584857604874],[-122.32704181750138,50.39567286204118],[-122.32676112044928,50.395746216208316],[-122.3264870139693,50.39580348403244],[-122.3262848719873,50.39582039824051],[-122.32620446685591,50.395834602108124],[-122.32589228920729,50.395905227204466],[-122.3256262098567,50.395950387089854],[-122.32538234676213,50.39598222870997],[-122.32518798141027,50.39605506929],[-122.32491010690308,50.39613695264709],[-122.32463971327452,50.39621345988375],[-122.32431368234292,50.39634604869604],[-122.32410266262784,50.39640708725162],[-122.32383550645501,50.396443776144736],[-122.3234905885032,50.39650543468254],[-122.32329551385568,50.39652201131087],[-122.3232238424926,50.39653706990035],[-122.32294486881966,50.39658910177758],[-122.32263268086972,50.39665971762681],[-122.32228794228831,50.3967191289811],[-122.32208412564546,50.39677816252147],[-122.32187919217277,50.39682927639517],[-122.32158362627305,50.396933625905056],[-122.32144999427857,50.39701747533738],[-122.321196936712,50.39720534218195],[-122.32099845229777,50.39728535421998],[-122.32091231249328,50.39734828577845],[-122.32075411295641,50.397409390243546],[-122.32052000080188,50.397451101258866],[-122.32030028495085,50.39746742097082],[-122.32012814932017,50.3975050087568],[-122.32003559589474,50.397581790383846],[-122.31984432486556,50.3977677662018],[-122.31967733471198,50.39787187528917],[-122.31950380051232,50.3979482148995],[-122.31919182595843,50.39801602115468],[-122.31886329229383,50.398070894965414],[-122.31874636107804,50.3980793805508],[-122.31841873996042,50.398123044942096],[-122.318095069858,50.398139836824846],[-122.31782856571682,50.39814672305748],[-122.31764823795986,50.398176719396325],[-122.31747000500158,50.398224223175575],[-122.31733960785243,50.398268251446176],[-122.31716396461516,50.39837038658523],[-122.31695743599165,50.3984624963983],[-122.31684022078065,50.39851764306701],[-122.31651248536784,50.39864902843227],[-122.31641169934238,50.39867547766106],[-122.31614993916176,50.39877531388636],[-122.31601379408754,50.39880340301551],[-122.31579900964459,50.398867117469464],[-122.31565448371173,50.39893316878781],[-122.31530447518871,50.39907842250052],[-122.31494728314381,50.399203757561736],[-122.31463487053375,50.39931990097154],[-122.31434897015517,50.399413297109795],[-122.31396533929181,50.39960355154711],[-122.31375460447838,50.39976862426871],[-122.3135371053425,50.39997339549787],[-122.3135155402477,50.40000023852209],[-122.31346640871995,50.4000627137837],[-122.31326077328146,50.40025157503172],[-122.31313006289932,50.40032089046066],[-122.31285414211646,50.400421372624066],[-122.31248738843708,50.400577307875494],[-122.31213513889823,50.40066343267869],[-122.31201566427534,50.400681391569854],[-122.31176683358744,50.40073046789889],[-122.3116782897844,50.40075788754133],[-122.31147173907681,50.40084998685812],[-122.31117900905413,50.40091897015032],[-122.3110560981309,50.4009789871484],[-122.31071346581123,50.40107667538256],[-122.3106348186365,50.40111229711171],[-122.31033799308132,50.401274495955924],[-122.31014903454019,50.401474587920305],[-122.30994188138172,50.401573979809335],[-122.30981634016572,50.40164458847662],[-122.30953553106563,50.401783141307],[-122.3092549347795,50.40189751396217],[-122.30907259949208,50.40199491490873],[-122.30893770792844,50.40205058931253],[-122.30866367645686,50.40217080305044],[-122.30836138370485,50.40233506414653],[-122.30816902351097,50.402447318153975],[-122.3078713239062,50.40264153240929],[-122.30756492962075,50.402834340303244],[-122.30753859451255,50.40285483260129],[-122.30751648913369,50.40290976622699],[-122.30741111305322,50.40307833976871],[-122.30729197231302,50.403264450276474],[-122.30720660930153,50.403360582190714],[-122.30703958259214,50.40348605115869],[-122.30685292967152,50.40357149032773],[-122.30642675611537,50.403699565038636],[-122.30616534447539,50.40377295430218],[-122.30594944840679,50.403892850871074],[-122.3057266758636,50.40403219629094],[-122.30541028673265,50.40423928689237],[-122.30534195400419,50.40429942667273],[-122.30507219891574,50.404496257488084],[-122.30483799542043,50.40462453928766],[-122.30457311358172,50.40478329007848],[-122.3044564095034,50.404896370347736],[-122.30424143830703,50.40511246506737],[-122.3040076464975,50.405321740787706],[-122.30367076082703,50.40560686610409],[-122.30349062660305,50.40572007823508],[-122.30322393060291,50.40587933228942],[-122.30306925109777,50.4060473811645],[-122.30296559584495,50.40619463784465],[-122.30290825653016,50.40624951935652],[-122.30275641088897,50.40644747268563],[-122.30258008550936,50.406686215354064],[-122.30245912326635,50.40680814942769],[-122.30228853493408,50.40697679093754],[-122.30222657734627,50.407045023902974],[-122.30197080101084,50.40724287199806],[-122.30163944553858,50.407460133297135],[-122.3013898413709,50.407625577519696],[-122.30129980781386,50.40767093550571],[-122.30109643120916,50.407745126484585],[-122.30081634117226,50.40778806984431],[-122.30069094054038,50.40783506268359],[-122.30056262369312,50.40787464264191],[-122.30037086456174,50.407979021618196],[-122.30026502871642,50.40804522124029],[-122.30022055357628,50.40813653197038],[-122.3001313171078,50.408301138856515],[-122.3000496480919,50.40843787974258],[-122.29999476623873,50.40861318978138],[-122.2999638144449,50.408754440908446],[-122.29991772668113,50.408951414767806],[-122.29979959272214,50.40921065951749],[-122.29963986290986,50.40931105027308],[-122.29944859039952,50.409387892219385],[-122.29916220607187,50.409443002650725],[-122.29898968586262,50.4094844784219],[-122.29877487300642,50.40954759371272],[-122.298577801467,50.40958769070873],[-122.29834040439562,50.40960393598076],[-122.29790803231917,50.4096991549064],[-122.29761456153678,50.40973321231118],[-122.2971994339134,50.409832936992714],[-122.29699150607722,50.40989797068945],[-122.29673996884846,50.40993623489344],[-122.29654468807527,50.409954451160026],[-122.296273814855,50.40997070670265],[-122.29603983670077,50.409988186189],[-122.29564186127267,50.409986126597374],[-122.29528951001879,50.40996478799499],[-122.2951025825724,50.409945597513094],[-122.29490677812161,50.40992724356253],[-122.29381327186935,50.40992103361805],[-122.29351428857305,50.409936333013555],[-122.29326810272848,50.40995228248371],[-122.29298530656865,50.40998499334691],[-122.29274426032688,50.41002416654274],[-122.29238377386072,50.41014482291431],[-122.2922058355755,50.41018779868445],[-122.29204940129443,50.41024779833047],[-122.29194789071349,50.410304012423424],[-122.29171960859311,50.41050950696502],[-122.29159590880245,50.41057847500267],[-122.29147301105402,50.410702024670385],[-122.29139555577032,50.41080853258292],[-122.29109038493239,50.41102776527343],[-122.29079246328784,50.4112230532416],[-122.29062626243287,50.411423317801976],[-122.29036902753245,50.41163797199309],[-122.29026401589367,50.411758178156184],[-122.29005812630497,50.411905374349246],[-122.28995920767174,50.41199429126722],[-122.28978488975368,50.41212173188322],[-122.28966816971278,50.41221286875605],[-122.2894871445135,50.41233615216528],[-122.28923085071061,50.412474910216964],[-122.2890991298966,50.412491301562795],[-122.2890656552732,50.41249130504441],[-122.28899515103568,50.41251313002585],[-122.28886806095846,50.41255891972662],[-122.28855999634061,50.41257728539697],[-122.28837963294336,50.4125852978276],[-122.28769031439872,50.41263362807711],[-122.28736713738691,50.412685784488424],[-122.28705333992464,50.41270956866372],[-122.28624919755975,50.41291150706125],[-122.28603993609751,50.41292811192722],[-122.28572822741432,50.413012141196745],[-122.28550445178811,50.413055252527926],[-122.28531669621775,50.41311025181521],[-122.28508294216897,50.41321039012886],[-122.28473645901796,50.41328875164506],[-122.2843828013847,50.413325822511055],[-122.28410103578946,50.413324245590715],[-122.28384655725375,50.41337644665],[-122.28359092731509,50.413464033752874],[-122.28317764292834,50.413668938447806],[-122.28296020003816,50.41374205872513],[-122.28271575652391,50.413843525247756],[-122.28252716548286,50.41392998505264],[-122.2823606341559,50.4140694903262],[-122.28206385258223,50.41422881117505],[-122.28188747169693,50.414380915405346],[-122.28173272561995,50.41450563561291],[-122.28149147567332,50.41471799047149],[-122.28137954218808,50.414814894529265],[-122.28127075205677,50.41491641199591],[-122.28107476599041,50.41513534213298],[-122.28095377054932,50.41527806547411],[-122.2809099891632,50.41536038544307],[-122.28076666068029,50.4155175385736],[-122.28058795816229,50.41567632038801],[-122.28042765631874,50.415804217593255],[-122.28023013207846,50.41595617633569],[-122.27997434383435,50.41608818246418],[-122.27978680173773,50.416183113220555],[-122.27968281392086,50.41629041419819],[-122.2796230313827,50.41639581618279],[-122.27957712275634,50.41656805339598],[-122.27941293619939,50.41682853952104],[-122.2793430718254,50.41694935830732],[-122.27926876997888,50.417102636837114],[-122.27915063227641,50.41729606802529],[-122.27906587803282,50.417426500348135],[-122.27896410837435,50.417635102766646],[-122.27883093969302,50.41781846389891],[-122.27859650566583,50.41818288293742],[-122.27842874494839,50.41835833323671],[-122.27834051886005,50.41853083100917],[-122.27814524239373,50.41871941155201],[-122.27802727992193,50.418846487064236],[-122.27783717980111,50.41901499545026],[-122.27758696221849,50.41914325138906],[-122.27737322914344,50.41923504891267],[-122.27719709057733,50.419362409548604],[-122.27691172411691,50.419532223613885],[-122.27664078373326,50.41971938399934],[-122.27631263755714,50.41991643570585],[-122.27617954520963,50.42005593102128],[-122.27580908211733,50.42023188053272],[-122.27566526044373,50.42033052363334],[-122.27524965371627,50.42062641807001],[-122.27500811247967,50.42077745513855],[-122.2748001897081,50.42092680554296],[-122.27458043018599,50.42102739335619],[-122.27436926948091,50.421151889624475],[-122.27198744831755,50.420376117353385],[-122.26986182444726,50.42272786753377],[-122.27278442109431,50.42380642270858],[-122.27309052008168,50.42391963669415],[-122.27429796083754,50.42436458013047],[-122.29670913637378,50.4353585923554],[-122.29683630087142,50.435462940084285],[-122.29703444377122,50.43560452481848],[-122.29715326189294,50.43576764510446],[-122.29725228463806,50.43593571851564],[-122.2973530196377,50.43610441582671],[-122.29746647448093,50.43626848115509],[-122.2975979237454,50.436428081636535],[-122.2977494935779,50.436578789378736],[-122.29792284926357,50.436721793622944],[-122.29809625168437,50.43686424123939],[-122.29824782464318,50.43701494821905],[-122.29838658662491,50.43717141752953],[-122.2985197997173,50.437331075441676],[-122.29864399361017,50.43749324824595],[-122.29875565303918,50.437657809605184],[-122.29885468589089,50.43782588119066],[-122.29893225507021,50.43799774384299],[-122.29899543938058,50.43817305809878],[-122.2990549705856,50.438349932862195],[-122.2991181095025,50.43852581227492],[-122.29919017727626,50.4387002981236],[-122.29926039561064,50.4388758468332],[-122.2993377849036,50.43904994327179],[-122.299433306191,50.43921790564839],[-122.29955954325747,50.43937676185949],[-122.29970927878263,50.43952853829398],[-122.29987349389587,50.43967573209151],[-122.3000449725606,50.439820351753305],[-122.3002147398843,50.43996435612075],[-122.30040092820055,50.440101602107326],[-122.30059798825025,50.44023526955883],[-122.3007734472587,50.44037439716361],[-122.30090186374977,50.44052826742205],[-122.3009651511933,50.440702458371405],[-122.30100133219618,50.440884742400335],[-122.30105731229547,50.44106206347385],[-122.30113480347015,50.4412350455264],[-122.30121761591099,50.44140763815708],[-122.30129871720513,50.44157960673041],[-122.30137264834092,50.4417530275229],[-122.30142159844739,50.44193011360203],[-122.30145454181324,50.442108915003374],[-122.30150705451886,50.442285561944196],[-122.30155776388219,50.44246270649848],[-122.30159075451137,50.44264094243915],[-122.3016112536277,50.44282102000878],[-122.30161944642728,50.44300067800673],[-122.3016170438722,50.443180549361244],[-122.30161274483721,50.44336204895562],[-122.3016014137241,50.44354330493209],[-122.30157087984075,50.44372223774512],[-122.30150915766407,50.44389450662676],[-122.3014021811475,50.44405964229717],[-122.30126910637728,50.4442205331061],[-122.30113778888564,50.44438148238164],[-122.30102895967062,50.44454768056163],[-122.30096876228131,50.44472281618044],[-122.30093119210666,50.44490151391104],[-122.300874464762,50.44507732305143],[-122.30081246219477,50.44525295613449],[-122.30078548691259,50.445431440378236],[-122.30076549816461,50.44561072453175],[-122.3007472211895,50.445790632605345],[-122.30072273684466,50.44604624584945],[-122.30072555983553,50.44622684882376],[-122.30072121131275,50.44640890402216],[-122.30072579189668,50.44658957455276],[-122.3007553575838,50.446766570874075],[-122.30082411211063,50.446938693297454],[-122.30092146029459,50.44710614611012],[-122.30103657651152,50.44727194215328],[-122.30115530222197,50.447436733734946],[-122.30126505312892,50.44760347512288],[-122.30135333672892,50.447773999007524],[-122.30142010645766,50.44794887073564],[-122.3014743849285,50.44812556609035],[-122.30152329599946,50.448303216019816],[-122.3015525437458,50.44848414191686],[-122.30159446827835,50.44866099183246],[-122.3017027412193,50.4488243090174],[-122.30186320399665,50.44897474573692],[-122.30202019735486,50.44912449961107],[-122.30217908770766,50.449272633930434],[-122.30233978312538,50.44942027030954],[-122.30250223875983,50.44956795609221],[-122.30266298261468,50.449715026651994],[-122.3028145212958,50.44986685557936],[-122.30295514337091,50.4500228100101],[-122.30308665207487,50.450182401259156],[-122.3032001631226,50.45034645785233],[-122.303277679175,50.450519427439716],[-122.30334085155617,50.45069530178885],[-122.30343974625518,50.45086560979903],[-122.30345877371016,50.451042261704565],[-122.30344763189476,50.45122127289975],[-122.30342940965701,50.451400614864745],[-122.30340757834536,50.45158096116315],[-122.30338755096373,50.45176080971561],[-122.30337631677807,50.45194094236309],[-122.30337040368389,50.452120694513326],[-122.30337152469482,50.45230068111258],[-122.30337967989504,50.45248090216049],[-122.30336039951845,50.45267314692861],[-122.30334098147533,50.45286706958775],[-122.30336153853906,50.45304657925129],[-122.30346408084755,50.45319395669598],[-122.303644908016,50.453311327711255],[-122.30386941252961,50.45341215928811],[-122.30412306627346,50.4535015903739],[-122.30439129549478,50.45358531633596],[-122.3046577208092,50.4536695483346],[-122.30490961896362,50.45375891899252],[-122.30516193116318,50.453843246274566],[-122.30541419874068,50.45392812929685],[-122.30563288329495,50.45403551116732],[-122.3058085488613,50.45417295048448],[-122.3059599756729,50.454326452217096],[-122.30610395605969,50.4544847621925],[-122.30624821225558,50.45463971606976],[-122.30637081545531,50.454800687569424],[-122.30632974098297,50.454979267741905],[-122.3062764930141,50.455155759888626],[-122.30622148670382,50.455332184421295],[-122.30616647922889,50.45550861786105],[-122.30610614974593,50.45568543182049],[-122.30605641816547,50.45586203189155],[-122.30605407816154,50.45604134414762],[-122.30608885515744,50.4562196343247],[-122.30613247149238,50.456397661021974],[-122.30617076575395,50.45657607722392],[-122.30618786462006,50.45675490308871],[-122.30619075570056,50.45693494720181],[-122.30618480686482,50.45711526368175],[-122.3061789042749,50.457295014827615],[-122.30611019244823,50.4574664837617],[-122.30591801892122,50.45759504363856],[-122.30567898772902,50.457692800844264],[-122.30545981993494,50.45780640684889],[-122.30524569799273,50.457922987725944],[-122.30502819560758,50.45803776407742],[-122.30480407017234,50.458147262823765],[-122.30457674736664,50.458252722744014],[-122.30434761914147,50.45835867989766],[-122.3041268705307,50.458469972375674],[-122.30392112195211,50.458591895384565],[-122.303723661035,50.45872027544369],[-122.3035244865297,50.45884803122048],[-122.30330354890818,50.45896157418563],[-122.30310640674703,50.4590860229696],[-122.30298880088976,50.45925137058971],[-122.30289554249823,50.45942089471675],[-122.30282130828319,50.459594993781444],[-122.30275577569462,50.45977050752459],[-122.30271481994743,50.45994740733386],[-122.3027548632906,50.46012587358812],[-122.3028217030557,50.460300176503054],[-122.3028938655067,50.460474098911085],[-122.30297135143881,50.46064763182922],[-122.30305068877296,50.46082010167617],[-122.30313720048888,50.46099111903554],[-122.30322722989094,50.46116226251204],[-122.30331735264222,50.46133227530029],[-122.30340562451107,50.461503359937254],[-122.30348677024331,50.461675322621566],[-122.30355893745492,50.46184924430091],[-122.3036221731172,50.462024550729616],[-122.30368365034653,50.46219979846763],[-122.30374151826842,50.46237605050701],[-122.30383344991044,50.46254556492043],[-122.3039432937702,50.46271173524601],[-122.304053184029,50.462877349112844],[-122.30413785187827,50.46304943722282],[-122.30423154534454,50.4632190097745],[-122.30439911631143,50.46339104365537],[-122.30457057413054,50.46355870803604],[-122.30464244790325,50.46369324629663],[-122.30443047627975,50.463740168117944],[-122.30409192397558,50.46373900993195],[-122.3038086355895,50.463730694953696],[-122.30352944145662,50.46375850501929],[-122.30328749803718,50.46384828787188],[-122.30305671693789,50.46395250508656],[-122.3028357994979,50.46406548111522],[-122.30263502380194,50.46419093261689],[-122.3024780492647,50.46434147086683],[-122.30236913124911,50.464508222559566],[-122.3022449323126,50.46466772572863],[-122.30205595925662,50.464799759851665],[-122.30185166007142,50.46492509253812],[-122.30165240653113,50.465053409260086],[-122.30145986569165,50.46518589029428],[-122.30128098247553,50.465323882917666],[-122.3011565941989,50.4654856189324],[-122.30100326670174,50.4656345852849],[-122.30081743607542,50.46577122085117],[-122.30063155795244,50.465908421368454],[-122.30042919288844,50.466031566735474],[-122.30019681899111,50.466133475861604],[-122.29994629126296,50.46622014933263],[-122.29968691031354,50.46628572510976],[-122.29940416933333,50.46629203834835],[-122.29912405120166,50.46626638987709],[-122.29884448643854,50.46623400215251],[-122.29856575982213,50.46621289734592],[-122.29828797449949,50.46622330493196],[-122.29801099067502,50.4662669207676],[-122.29773001820743,50.466294657455336],[-122.29748396954474,50.46636967051963],[-122.29727784506173,50.466495501114565],[-122.29708875772758,50.466628648077624],[-122.29690462383316,50.466765900930255],[-122.29673062929959,50.46690854849481],[-122.29657719025153,50.46705863006476],[-122.2964525039983,50.46722372523841],[-122.29633966932893,50.46739484829895],[-122.29622025864796,50.467560119340774],[-122.29607412857601,50.46770707025843],[-122.29587437700764,50.46781961515787],[-122.29561438169907,50.467892476117115],[-122.29533438234962,50.467951163425745],[-122.29507114358096,50.46802054083376],[-122.2948114230245,50.46809002615262],[-122.29454396545277,50.46814632326299],[-122.29426510698029,50.46816962352182],[-122.29398097078482,50.468192746769915],[-122.29371114520555,50.46823490895508],[-122.29348532118588,50.46834263782157],[-122.29328436181487,50.46846975861631],[-122.29308682743088,50.46859811818298],[-122.29289262584167,50.46872883812623],[-122.29269846886386,50.46885900140173],[-122.2925122309609,50.469000108867284],[-122.29231964719564,50.46913256442954],[-122.29208218552856,50.469210102411814],[-122.291793594219,50.46922294936116],[-122.2915230690036,50.4692735135797],[-122.29126328928247,50.469343555770095],[-122.29100332424782,50.469415840515765],[-122.29074354290093,50.469485881477716],[-122.29050460040622,50.46958136139842],[-122.29030529405232,50.46970965701504],[-122.29016210251987,50.46986344691675],[-122.29003756887205,50.47002630011946],[-122.28990965468316,50.470187348620925],[-122.28974956057371,50.470332133201445],[-122.28951038039482,50.47043041932429],[-122.28926480908659,50.47052060949856],[-122.2890291918413,50.47061844697387],[-122.28883334866497,50.470747422757],[-122.28865264555999,50.4708853352307],[-122.28842837081015,50.47099535547359],[-122.28823590466537,50.47112612574199],[-122.28809256272334,50.47128159956123],[-122.28800274205129,50.47145122637439],[-122.28794056082873,50.47162796809949],[-122.28789064752702,50.47180568709061],[-122.28784596588724,50.471984138923816],[-122.28772873295455,50.47214385086993],[-122.28750778285671,50.47225623894806],[-122.2872769688755,50.472359856999596],[-122.2870912079091,50.472494781600304],[-122.28692382806247,50.47264213460655],[-122.28678922754786,50.47279845716045],[-122.28673574395964,50.472976613909935],[-122.28664596062958,50.473145682968386],[-122.2864769099551,50.47329185472112],[-122.28623807648383,50.47338564713438],[-122.28602077422522,50.473496463016865],[-122.28585366433916,50.47364044950389],[-122.28569312882289,50.473790279187796],[-122.28552254465701,50.473933582049334],[-122.28535191283639,50.47407744989637],[-122.28520165308963,50.474230996945195],[-122.28504801181896,50.474382748066816],[-122.2848375086783,50.4744965965861],[-122.28458357037461,50.474580882493036],[-122.28435621071574,50.47468516831209],[-122.28416705094637,50.47481829191822],[-122.28397275016441,50.474949560525914],[-122.28375020320694,50.47505962969512],[-122.2834874598809,50.47512224960596],[-122.28349864013339,50.47528625869584],[-122.28361547704216,50.475452691221896],[-122.28369296115211,50.47562566910183],[-122.28379377991281,50.47579381411723],[-122.28389460016439,50.47596195003353],[-122.2839507414437,50.47613702888244],[-122.2839781773288,50.47631789423862],[-122.28402181830275,50.47649480361712],[-122.28411537165185,50.4766655118868],[-122.28425605845774,50.47682092852936],[-122.28444262759683,50.476954830312756],[-122.28464748621397,50.477080904682516],[-122.28483586365533,50.477214299408885],[-122.28498914834901,50.47736676271049],[-122.28509548573469,50.47753227451038],[-122.28517830343989,50.477704871341565],[-122.28524681502381,50.4778797962482],[-122.28530287152265,50.478055995566535],[-122.285339342282,50.47823435525801],[-122.28536868352805,50.47841359187083],[-122.28539983038266,50.47859233104402],[-122.28543449657656,50.47877118797823],[-122.28548347012794,50.4789477166626],[-122.28553596392214,50.479124354120266],[-122.28558308627808,50.47930194534714],[-122.28563025557845,50.47947897124572],[-122.28566770327167,50.479666918241236],[-122.2856932076393,50.479871335263915],[-122.28575833966731,50.480023095080625],[-122.2859691561683,50.47996997786156],[-122.28623623255054,50.47991931005936],[-122.2864671298218,50.480029381604396],[-122.28670733395931,50.48013358294892],[-122.28696188946,50.48021351249382],[-122.28719936202093,50.480308057191785],[-122.28741174384619,50.48042875361537],[-122.28759449513466,50.480566452755944],[-122.2877100171805,50.48072776948467],[-122.28779090640533,50.480902547949924],[-122.28798523447495,50.48102826234512],[-122.28822257457867,50.48112449159527],[-122.28846357386695,50.48121915120422],[-122.2887046665015,50.48131268871298],[-122.28894585246492,50.481405104121436],[-122.28918875328137,50.481498134137276],[-122.28942799693074,50.48159273276507],[-122.28966895472362,50.48168795497323],[-122.28990820038624,50.481782552544374],[-122.29015110521877,50.481875580412336],[-122.2903942414198,50.481965808307976],[-122.29064122059609,50.482052232307694],[-122.29089033027128,50.48213421932692],[-122.2911472635828,50.482206912201924],[-122.2914102607192,50.48227025207106],[-122.29167899972835,50.48232815092012],[-122.29194602549079,50.482385434016166],[-122.29221282093673,50.48244552487132],[-122.29247744266434,50.48251059885672],[-122.29274572328835,50.4825741029454],[-122.29301187529984,50.4826420428411],[-122.29326117698837,50.482721781347635],[-122.29348029456995,50.48282526233189],[-122.29364108175868,50.48297289619994],[-122.29379038877752,50.48313140182913],[-122.293969605278,50.483269528773796],[-122.29416169352979,50.48340134633389],[-122.29435748752702,50.4835310289581],[-122.29455508812708,50.483660213678405],[-122.29475824569012,50.48378620959291],[-122.29495043063085,50.483916904137324],[-122.29511863430673,50.48406028441082],[-122.29525928989297,50.48421680726127],[-122.29537813743787,50.484381041188314],[-122.29546651720658,50.48455099672181],[-122.29552966107117,50.484727424406074],[-122.29561438386757,50.48489894909757],[-122.29574244865127,50.485058424673774],[-122.29588310951343,50.48521494654155],[-122.29601830757593,50.48537353512508],[-122.29614994049308,50.48553257131396],[-122.29625990417472,50.48569762295297],[-122.29635000323559,50.485868201509376],[-122.29644010297775,50.486038779956885],[-122.29655002251107,50.486204396474704],[-122.29667253829447,50.48636705923512],[-122.29680607486526,50.486524466342956],[-122.29698151718078,50.48666584407091],[-122.29718663919981,50.48678965066674],[-122.29742194727244,50.48688972184904],[-122.29766290453321,50.48698548238843],[-122.2979075668264,50.48707911667478],[-122.29815042455691,50.487173248005845],[-122.29838944077059,50.48727119136471],[-122.29861739170518,50.487374955126946],[-122.29883052843057,50.48748721243129],[-122.29901199729646,50.48761979033248],[-122.2991544838159,50.48777580098263],[-122.29928391444781,50.48794038212827],[-122.29942089256073,50.48809902472171],[-122.29955615811043,50.488257043166016],[-122.29972488375796,50.4884589221066],[-122.3000914336352,50.4885082554263],[-122.30035244466896,50.48857487068153],[-122.30063334565186,50.48859267335736],[-122.30091341917428,50.488620560445725],[-122.30119701221074,50.48864857310784],[-122.30146875815495,50.488691926106206],[-122.30172213391533,50.48876559819681],[-122.30196528400995,50.48885636526454],[-122.30220228141215,50.48895760627386],[-122.30243173431423,50.48906477635841],[-122.30265391803005,50.48917451983454],[-122.30281391715823,50.48931087394164],[-122.30309171807315,50.489323501591095],[-122.30338243729649,50.489329244209145],[-122.30364808093394,50.489382519058594],[-122.3038985084826,50.48947070788192],[-122.30414745292303,50.4895554728211],[-122.30442409384075,50.4895607438521],[-122.3046696573397,50.48964371254044],[-122.30491277249061,50.48973502935591],[-122.30515200084503,50.48983071471847],[-122.30539285268266,50.48992813600802],[-122.30563208307937,50.49002382031394],[-122.30587321202816,50.49011788480724],[-122.30611045499676,50.4902163089147],[-122.30633080139349,50.490327107872815],[-122.30653420568756,50.4904508380751],[-122.30672812126326,50.49058269130318],[-122.30692027866766,50.4907144766356],[-122.30711979864782,50.49084257485232],[-122.30732839568965,50.49096760077017],[-122.30752972357996,50.491095200469786],[-122.3077128095553,50.49123005628381],[-122.30784685844195,50.49138184133355],[-122.30790274435292,50.49156139100489],[-122.3079549723616,50.49174251035256],[-122.30807471356454,50.49189662608844],[-122.30829863874557,50.49200698170635],[-122.30851303035499,50.49212600773714],[-122.30864833909328,50.49228402329732],[-122.30869380680713,50.492461534318664],[-122.30873204995315,50.49264106325177],[-122.30884591838159,50.4928022970534],[-122.30899753149504,50.49295522204275],[-122.30909496302856,50.49312322342324],[-122.30916002418897,50.493298578453874],[-122.30922684600596,50.49347399193504],[-122.30927773507487,50.49365000017381],[-122.30929476846194,50.49382993893311],[-122.30928363850232,50.49400895021609],[-122.30927607510411,50.49418751324105],[-122.3092667059025,50.494366573996736],[-122.30924844307735,50.49454647261927],[-122.30923018084134,50.49472636222635],[-122.30922423917131,50.49490667044929],[-122.30933992158397,50.49506739655303],[-122.30948589520587,50.49522464010399],[-122.30959949731793,50.49538923731215],[-122.3097022633375,50.495556847949786],[-122.30980326988147,50.495724399940514],[-122.30995887573567,50.49587183228444],[-122.3101641207842,50.495995057214714],[-122.31037871992476,50.49611183593358],[-122.3106082279111,50.49621899715693],[-122.31077476696497,50.49636229304068],[-122.31083983932801,50.496537646388255],[-122.31079929544562,50.496709489625346],[-122.31079706399439,50.49688767136909],[-122.31078936874485,50.497067911722105],[-122.31079760721826,50.49724756595834],[-122.31081288772018,50.497427445186524],[-122.31083530068413,50.497606445786666],[-122.3108645259333,50.4977884797625],[-122.31096428681784,50.49794979866251],[-122.31118788187933,50.49806463388026],[-122.31135049541629,50.49821286309794],[-122.3114121438022,50.49838697716449],[-122.31144855136961,50.49856755794995],[-122.3114778715211,50.49874846998818],[-122.31142166839946,50.49891754344786],[-122.31126428136038,50.49907200864225],[-122.31109701922196,50.49921771539206],[-122.31092299066488,50.49935981421583],[-122.3107694884462,50.49950990938588],[-122.31064327878518,50.49967159967507],[-122.31053597421018,50.49983953217007],[-122.31046104454327,50.50000011044755],[-122.31045665095374,50.50001065272515],[-122.31044511119882,50.50019470528824],[-122.3105703938215,50.50034619284237],[-122.310720323261,50.50049849926338],[-122.31082305954266,50.50066666410333],[-122.31094566608685,50.500829308221185],[-122.31111560603425,50.50097440660116],[-122.31137036794284,50.50105372185436],[-122.31160484770541,50.50114360872342],[-122.31171824258327,50.50131101094653],[-122.3118902226963,50.501452801870165],[-122.3120879982963,50.50158138727948],[-122.31216947835662,50.501750535703046],[-122.31225040827769,50.501926413374996],[-122.31233424632966,50.50208833444994],[-122.31222410938716,50.502247743932784],[-122.31207690930398,50.502407046741766],[-122.31193151495773,50.50256584254339],[-122.31179163027768,50.50272201417656],[-122.31168793483695,50.50288895154157],[-122.3116084732401,50.50306175012377],[-122.31152034644707,50.5032325693468],[-122.31142179309538,50.503401359672615],[-122.31132499955349,50.5035702083687],[-122.31124729591981,50.503743065040425],[-122.31121152340842,50.50392125541767],[-122.3112091103195,50.50410166972358],[-122.31116629507265,50.504279626029955],[-122.31103145496894,50.50443877125812],[-122.3110072091435,50.504605531612185],[-122.31125801108239,50.504690337535635],[-122.31149335196069,50.50479149825618],[-122.31163083699832,50.50494508000164],[-122.31174966143959,50.505110970058645],[-122.31191244030926,50.505257510355136],[-122.31209360639396,50.50539510648306],[-122.31228019279065,50.50553119988219],[-122.31245589561566,50.50567086304526],[-122.31260042989543,50.50582466835068],[-122.31272120444163,50.50598837255787],[-122.3128618059439,50.50614711199197],[-122.3130227852538,50.50629415726948],[-122.3132704916776,50.50637379904752],[-122.31355251881291,50.50637922262222],[-122.31383434456562,50.50636552961063],[-122.31411623371842,50.506372638569445],[-122.31439175746345,50.506414398062844],[-122.31465886294468,50.50647274640714],[-122.31493258163647,50.50651500240538],[-122.31521055526616,50.506548411135086],[-122.31548935552755,50.506571716214566],[-122.31576983430332,50.50655290839439],[-122.316051495299,50.506562820813286],[-122.31633256073737,50.50658001813408],[-122.31661085709669,50.506609493433025],[-122.31688675134305,50.50664676051138],[-122.31716047317856,50.50668901101322],[-122.3174340114484,50.50673351292077],[-122.31770759645774,50.5067774488888],[-122.31798118200017,50.50682138418108],[-122.3182545847708,50.50686756190816],[-122.31852540260145,50.50692377458119],[-122.31879743196238,50.506986774298205],[-122.31906507665775,50.50701701474794],[-122.31932173825494,50.50694398566552],[-122.31958052545296,50.50686653709203],[-122.31983894604332,50.506793565163186],[-122.3200925872208,50.506714253489015],[-122.3203462275061,50.50663494122813],[-122.32060459936713,50.50656253276311],[-122.32086900564042,50.506502694194005],[-122.32113949194667,50.50645486918746],[-122.32141471098818,50.50641393889654],[-122.32169123163793,50.506378683016905],[-122.32196928399358,50.50634628418298],[-122.32224900506645,50.50631506453091],[-122.32252701122275,50.50628322059261],[-122.32280631923108,50.506257051040194],[-122.32308759295408,50.50625005494795],[-122.32336916214108,50.50626107038432],[-122.32365009157824,50.506279927058976],[-122.32393106663939,50.50629822672884],[-122.3242205940474,50.50629825756976],[-122.32451012218775,50.506298278683836],[-122.32476356601792,50.506351093941284],[-122.32496949422782,50.50646699529692],[-122.3251592339879,50.50660822598248],[-122.32536415815997,50.50673646374365],[-122.32559583702954,50.50683972092494],[-122.32583126738238,50.50694028574541],[-122.32603502839152,50.5070611782924],[-122.32620323430203,50.50720675051858],[-122.32636593015945,50.50735495609186],[-122.32652320738613,50.50750467347371],[-122.32670826894932,50.50763843194656],[-122.32692287416793,50.507756307569636],[-122.32714502670211,50.50786824265477],[-122.32734865864929,50.50799081051088],[-122.32750223774404,50.50814264406308],[-122.32757818486925,50.50831553506216],[-122.3276812760894,50.508480318012815],[-122.32785694668517,50.50862107787762],[-122.32799061192713,50.50877900843859],[-122.32811158773912,50.50894100849515],[-122.32831305467805,50.509068567704674],[-122.3285750943304,50.50912446461995],[-122.3288569820304,50.509153460331014],[-122.32908918358395,50.50925054582516],[-122.32930384875587,50.50936785135049],[-122.32951101494761,50.5094905314334],[-122.32971262572569,50.50961640119226],[-122.32987525044254,50.50976572275019],[-122.33010601666253,50.50985881789962],[-122.33036280569759,50.509935903813286],[-122.33054964945467,50.51006971368055],[-122.33069416746676,50.510224625151196],[-122.3308114978063,50.51038819243804],[-122.33093966810337,50.5105487439746],[-122.33108039399448,50.51070689419825],[-122.33126385800158,50.5108389085255],[-122.3314991845138,50.510941147671616],[-122.33172682934935,50.51105100455637],[-122.3318774137737,50.51119655105785],[-122.33197298115131,50.51136726984695],[-122.33206687968556,50.511536808794254],[-122.3321554049329,50.5117072947013],[-122.33224569174868,50.511877838662755],[-122.33234315947404,50.512046937297946],[-122.33245688740307,50.51221150772347],[-122.33248453979812,50.51239235302071],[-122.33254294994349,50.51256409289038],[-122.33269304024228,50.512715802105184],[-122.33286476460371,50.512862044810326],[-122.33302754804714,50.51300968330855],[-122.33305778584578,50.51318049240492],[-122.33297676437108,50.51335155910355],[-122.33286960099842,50.51351839774978],[-122.33277282077411,50.513687819314846],[-122.3325987586667,50.51383051481965],[-122.33246085423835,50.51398452534475],[-122.33236917107872,50.51415637301877],[-122.33232837416408,50.51433214134623],[-122.33245516533194,50.5144881459733],[-122.33253011163623,50.51465200163401],[-122.33248565553431,50.51482934042107],[-122.33245899192845,50.51500501761102],[-122.33234324623345,50.51516875625122],[-122.33221878585078,50.51533108237952],[-122.33208019095443,50.51549349932499],[-122.33216069467977,50.51565416485744],[-122.33227772520866,50.51582165046131],[-122.33246130485267,50.515952540429275],[-122.33267957812623,50.51606939849243],[-122.3328589073434,50.516209143892084],[-122.33294929714208,50.51637856478595],[-122.3330073037143,50.51655534607914],[-122.3330333364839,50.51673445428361],[-122.33304162190122,50.5169146588126],[-122.3330534756101,50.51709441433311],[-122.33308845175054,50.51727212632672],[-122.33315901573512,50.517446514977664],[-122.33322601200037,50.51762135252024],[-122.33328944123716,50.5177966299877],[-122.33335287096716,50.5179719073814],[-122.33341806233574,50.51814724284281],[-122.33349219728314,50.51832118211602],[-122.33352017675085,50.51849810485527],[-122.3335944492463,50.51867036614415],[-122.33367752817364,50.518842918034245],[-122.33375889256814,50.5190148464277],[-122.33384201803942,50.51918684183272],[-122.33392875854993,50.51935782288246],[-122.33402805596855,50.51952641136078],[-122.33414722909653,50.51968947510273],[-122.33427113977369,50.51985943339961],[-122.33443491185989,50.519995287804186],[-122.33471647839716,50.520007395855664],[-122.33498812578709,50.520054595098436],[-122.33525737372719,50.520109586420205],[-122.33552902229923,50.520156784335306],[-122.33580256989836,50.52020235287414],[-122.33607607206743,50.520248485999325],[-122.33635174619731,50.5202896340471],[-122.33663121769779,50.520327523962024],[-122.33689685558174,50.52038351666552],[-122.33714449916584,50.520465346953756],[-122.33738581143142,50.520559895811516],[-122.33761930488998,50.52066374054404],[-122.33784340003535,50.5207745889935],[-122.33805642683242,50.520891261593775],[-122.33824324764832,50.52102617828099],[-122.3384226138306,50.52116591385554],[-122.33863758759995,50.52128040024398],[-122.33890947505076,50.52132478146412],[-122.33918723905587,50.52136205056097],[-122.33946319629825,50.52139982617925],[-122.33973924587987,50.52143647058529],[-122.34001714760569,50.52147205976034],[-122.34029360781805,50.521503660283926],[-122.34057219421311,50.52153083193259],[-122.34085383383125,50.521520426345745],[-122.34112939955101,50.52147609230124],[-122.34139752563229,50.5214146352095],[-122.34166662203165,50.5213847059901],[-122.34193732888622,50.52144366000863],[-122.3422151872129,50.52147979997986],[-122.34249526266952,50.52151038947692],[-122.3427749433,50.521524096944276],[-122.34305550370301,50.5215052206076],[-122.34333615492926,50.521485222006675],[-122.34361624502563,50.521493884842876],[-122.3438970498748,50.52151549835959],[-122.34417758188123,50.521540475835856],[-122.34445811419852,50.52156545260352],[-122.34471341520813,50.52164020317333],[-122.34496057964735,50.521728179999116],[-122.34520774505133,50.521816156265906],[-122.34546304872383,50.521890905091325],[-122.34573449157838,50.52194087737117],[-122.34600385488416,50.521994720980395],[-122.34625129674619,50.52207933022659],[-122.34648870433261,50.52217879475536],[-122.34673022731803,50.52227108001548],[-122.34697938826686,50.5223563018354],[-122.34723451601003,50.52243328965832],[-122.34749999755739,50.52249149999589],[-122.34777574166746,50.52253205433597],[-122.34804940627194,50.522576480020675],[-122.34832053748038,50.52263037588409],[-122.34858579462959,50.522691383024195],[-122.3488371766478,50.522771059717954],[-122.34908431024012,50.52285958354662],[-122.34935187586522,50.52291392635565],[-122.34962536325921,50.52296058228527],[-122.34990106633813,50.523001696596246],[-122.35017912243366,50.52303557347535],[-122.35045754248388,50.52306496341955],[-122.35073984912786,50.52308998216021],[-122.35102306478734,50.523103784584194],[-122.3513025870031,50.52309778092433],[-122.35157841468133,50.52307198018047],[-122.35185524138686,50.523033841583896],[-122.35212913501879,50.52298830094674],[-122.35240172164468,50.52293708501307],[-122.35267259134692,50.52288525427708],[-122.35294178989461,50.522832243484146],[-122.35320796422577,50.52277295227514],[-122.353474365241,50.52271085203212],[-122.35373891337314,50.522649814889476],[-122.35400829085057,50.52259455837321],[-122.35427762263672,50.52253985749593],[-122.35455043069952,50.52248583684337],[-122.35482282926104,50.52243686704191],[-122.35509784296103,50.52239921883532],[-122.35537334616747,50.52237733861526],[-122.35565918262772,50.522380527685556],[-122.35594302198326,50.522408399421565],[-122.35621095688258,50.52245823052072],[-122.35646447535802,50.52253346151074],[-122.35671130471496,50.52262589837416],[-122.35695063605776,50.52272371143236],[-122.35718640072685,50.522821964730824],[-122.35741828012986,50.52292459722961],[-122.35764821853684,50.523029405633025],[-122.35787820300013,50.523133657250966],[-122.3581119376516,50.52323522445218],[-122.35835344510868,50.52332804063685],[-122.35860448521127,50.52341218144436],[-122.35884233547851,50.523506567897215],[-122.35905913438125,50.523621063228966],[-122.35926274291303,50.52374581336215],[-122.3594626027499,50.523873256047096],[-122.3596699176665,50.52399587772175],[-122.35988843674862,50.52411099436208],[-122.36010144644158,50.52422873682992],[-122.36029747106166,50.52435998349529],[-122.3604459318826,50.524511604286744],[-122.360514760962,50.52468703786572],[-122.36052491914879,50.524867296288825],[-122.36050165555298,50.52504589288047],[-122.36046597021175,50.52522521597855],[-122.36042152295157,50.52540368519181],[-122.36036492633156,50.52557950722212],[-122.36034712745327,50.52575603364003],[-122.36037151268756,50.525935075695834],[-122.36038700074097,50.526114941729915],[-122.36045953631951,50.52628824729977],[-122.36053022031041,50.52646261663718],[-122.36058663147361,50.52663876733517],[-122.3606341448442,50.52681575098096],[-122.36066386205174,50.5269944006021],[-122.36068287397691,50.527174390752684],[-122.36070193173542,50.52735381559314],[-122.36071566004772,50.5275336235606],[-122.36071701190828,50.527713592796],[-122.3607361149872,50.52789246121785],[-122.36078358531027,50.52807000082264],[-122.36083643064433,50.528246600899614],[-122.36090359600028,50.52842085416899],[-122.36100658313256,50.52858896681071],[-122.36110202581929,50.52876302158234],[-122.3612907263157,50.5288321760397],[-122.36158256820673,50.52882711573583],[-122.36185905364506,50.52881537135662],[-122.36213928901167,50.52880093327207],[-122.36242100930241,50.5288118404889],[-122.36270236664039,50.52882724221063],[-122.36298756477967,50.52883882861228],[-122.36326874205024,50.528856463051355],[-122.36354106099698,50.52889630634184],[-122.36379593743024,50.52897717652178],[-122.36402411429164,50.529082478569386],[-122.36421655765545,50.52921472379558],[-122.36442174061818,50.52934232967083],[-122.3646585970845,50.52942767284842],[-122.36494293979065,50.529449904582016],[-122.36522127292918,50.52948094415202],[-122.36549974259749,50.529510296193486],[-122.36578128710336,50.52952343801286],[-122.36606337410267,50.52952985871143],[-122.36634541629341,50.529536834989834],[-122.36662497297876,50.5295527254486],[-122.36690669905363,50.52956362129011],[-122.36718851502188,50.52957340382589],[-122.36747024136224,50.529584298239335],[-122.36775192224344,50.52959575720731],[-122.36801950548872,50.52965061093548],[-122.36828257110777,50.52971768605355],[-122.36853402712606,50.529797317522075],[-122.36875083532408,50.52991235834115],[-122.3689600105242,50.53003445409768],[-122.3692015760288,50.53012725491645],[-122.3694670864045,50.530185968542895],[-122.36974877155366,50.53019742244392],[-122.3700306825131,50.53020607620325],[-122.37031309116712,50.53020855614923],[-122.3705971711193,50.53021221449559],[-122.37086945990106,50.53025259606843],[-122.37113885806261,50.5303069345237],[-122.37140631372417,50.53036346688958],[-122.37167363486164,50.53042167647198],[-122.37194082150428,50.53048156327162],[-122.3722060657386,50.530543644005206],[-122.37246941385528,50.53060734444378],[-122.37273258202605,50.53067328738821],[-122.37299380860101,50.53074141532548],[-122.37325485530081,50.53081178577836],[-122.37351405079518,50.53088321967454],[-122.37377311199265,50.530956330825475],[-122.37403208299455,50.531030571906726],[-122.37428748664891,50.53110525368959],[-122.37454284636036,50.53118049117669],[-122.37479820620202,50.53125573704301],[-122.37499231568516,50.531367775043464],[-122.37523579826369,50.53145893324501],[-122.37548312160916,50.53154627587659],[-122.37573234268756,50.53163199755259],[-122.3759816997526,50.531716040794706],[-122.37623110323888,50.53179951819848],[-122.37648235964072,50.531881930924115],[-122.37673379745789,50.531962099936145],[-122.37700321290788,50.53201642406973],[-122.3772836481262,50.53204356082063],[-122.37755767023413,50.53208454864143],[-122.37782089994688,50.53214991415313],[-122.37808164622771,50.53222420313166],[-122.3783328636374,50.53230716793155],[-122.37855250766518,50.53240935315227],[-122.37864798146364,50.53258394834302],[-122.37873844055672,50.532755015412015],[-122.37894200988876,50.532881405973946],[-122.37905324869186,50.533035715528285],[-122.37907382782461,50.53321912332246],[-122.37909648495878,50.533398658512034],[-122.37911205031027,50.53357852028974],[-122.37912942233534,50.533757883144176],[-122.37914851086292,50.53393786864261],[-122.37916217913124,50.53411935971679],[-122.3792188083517,50.53429381246876],[-122.37932747804994,50.534458158173486],[-122.37945765146254,50.5346187064034],[-122.37958782580264,50.53477925444954],[-122.37980605922228,50.5350090172902],[-122.37999130093161,50.53514381303485],[-122.38012324056548,50.5353044177536],[-122.38031196347791,50.53543988401324],[-122.38052833336195,50.53556106520391],[-122.38076763403525,50.53557280049015],[-122.38104709038365,50.53554647654165],[-122.3813277667241,50.535526947649146],[-122.38160880407828,50.53550292280407],[-122.38189015621654,50.53547497624605],[-122.38217128234571,50.53544983738239],[-122.38244997079163,50.535433047721924],[-122.38272451415241,50.53546784952727],[-122.3828916523662,50.535608230913205],[-122.3830325933825,50.535766875734],[-122.38321405448843,50.53590490700966],[-122.38344045979697,50.53601123253451],[-122.38367440892262,50.53611162281984],[-122.38391021180539,50.53621093939981],[-122.38414615047591,50.536308577600856],[-122.3843838520931,50.53640627262241],[-122.38462168947217,50.53650228925738],[-122.38486124512976,50.5365989189957],[-122.38509718789223,50.536696555132835],[-122.38533484895602,50.536794804373635],[-122.38557070373213,50.536893561051684],[-122.38581026350472,50.5369901886996],[-122.3860500043579,50.53708457268171],[-122.386293630212,50.53717458446378],[-122.38654123103414,50.537259102452495],[-122.38679858733396,50.537332134360604],[-122.38706375771184,50.53739585699977],[-122.38733087079981,50.53745739314827],[-122.3875960426675,50.53752111450855],[-122.38785159556664,50.537594642973346],[-122.38808953730349,50.53768952150986],[-122.38830620809964,50.53780733149684],[-122.38851185898015,50.53793039631943],[-122.38870635390349,50.538060411850395],[-122.38889890803367,50.53819261289951],[-122.38909521182757,50.538322128671226],[-122.38929531133608,50.53844838490319],[-122.38949902522116,50.5385736426614],[-122.38969533311938,50.538703148341064],[-122.38993174704065,50.53879516612097],[-122.39019697506235,50.5388583248769],[-122.3904583208041,50.53892584583143],[-122.39059902007652,50.53906592176293],[-122.390612781338,50.539246845019335],[-122.39068184028247,50.53942113517722],[-122.39079585032339,50.53958564034213],[-122.3909223754612,50.53974830282144],[-122.39105075349005,50.53990990078202],[-122.39117018684145,50.54007289927807],[-122.39126816176316,50.54023913193992],[-122.39125188063728,50.540420203624635],[-122.39129266040031,50.5405946991399],[-122.39139411580523,50.54076161130134],[-122.39150984935881,50.54092672898451],[-122.39162553845313,50.54109241178418],[-122.39172871374798,50.541259937054605],[-122.39179963211686,50.541433161738375],[-122.39184362421264,50.54161170123894],[-122.39189660787872,50.54178827464283],[-122.39200692426665,50.54195490679877],[-122.39223012606014,50.5420577345183],[-122.39249379410296,50.54211858720265],[-122.39276297437357,50.54217680245082],[-122.39302836142389,50.54223826735623],[-122.39329812752746,50.54228918662417],[-122.39357204680685,50.542332377603955],[-122.39384610173545,50.54237388106823],[-122.39412205445434,50.54241375419412],[-122.39439827643156,50.542450270900254],[-122.39467458939781,50.54248565637729],[-122.39495000392033,50.542532265828726],[-122.39522334286016,50.54258273844072],[-122.39549675015004,50.5425882332929],[-122.39576994477831,50.54253018284873],[-122.39602519067067,50.542453566957334],[-122.39626913334654,50.54236364792078],[-122.39651750903924,50.54228455019416],[-122.39680424864012,50.54230003679073],[-122.39706262438577,50.54225049863227],[-122.39730203996731,50.542150877044605],[-122.39754783036862,50.542059890726655],[-122.39780940197966,50.54199246279391],[-122.3980831848779,50.54194905315517],[-122.39836493874775,50.5419385021377],[-122.39864805053296,50.54193305907645],[-122.39892940009112,50.54192755819278],[-122.39921273565203,50.54191931424784],[-122.39949629572193,50.541908261161105],[-122.39976646319164,50.54186584578944],[-122.39999852144882,50.54179184328406],[-122.40002020543464,50.54178579885781],[-122.40027254406913,50.54170119898854],[-122.40053731959702,50.54163780876935],[-122.40080724596046,50.54157627598047],[-122.40108160659867,50.54152556421476],[-122.4013560253301,50.54149621876858],[-122.40162915783098,50.54150506328046],[-122.40190439498768,50.541553889746055],[-122.40217904976045,50.541610010258324],[-122.40244837358654,50.54166652422446],[-122.4025067490573,50.541665598307354],[-122.4041456178757,50.5420717259192],[-122.40531131437422,50.5426070231511],[-122.40700141005715,50.54363378048492],[-122.40784157688245,50.54457400994607],[-122.4090650869492,50.545449029276604],[-122.41010099308403,50.546173483845386],[-122.41119793813851,50.54695273881306],[-122.41170157903736,50.547661111482995],[-122.41232420791219,50.54887201522688],[-122.41266298173264,50.54952107590744],[-122.4131476694436,50.55020183946046],[-122.41326355130782,50.55036637629933],[-122.4135198242573,50.550609657112666],[-122.41366899821774,50.55075558509747],[-122.41407408982451,50.55119369884926],[-122.41439035890009,50.551504697723054],[-122.4146140698664,50.55175760270793],[-122.41479426197452,50.55191353387368],[-122.4149297421181,50.55209837385267],[-122.41513942986131,50.552283366943705],[-122.4153377296791,50.55232292891337],[-122.41571653092109,50.55231490400276],[-122.416158545716,50.55220096851133],[-122.41647824256911,50.552202846658496],[-122.41688818557151,50.55229195787125],[-122.41721813795418,50.552564590437875],[-122.41759476989786,50.55282804842909],[-122.41833600083231,50.55315103792264],[-122.41966890931583,50.55354480544753],[-122.42186499105205,50.554039990540026],[-122.42288230298745,50.554180678427144],[-122.42338980263273,50.55426559935903],[-122.42407164656812,50.554491626304035],[-122.42491817848749,50.55482470285532],[-122.4255528089697,50.55508911478641],[-122.42623518495621,50.555286466888646],[-122.42717338366813,50.555600540784965],[-122.42774696559196,50.55585510602463],[-122.42825464535507,50.55602715787041],[-122.42949799817124,50.556304355322254],[-122.43087691016521,50.556543719790604],[-122.43250173862549,50.556735303618765],[-122.4348320526002,50.55694499242159],[-122.4358349892616,50.55691137704347],[-122.43686823456838,50.55689670598005],[-122.43759706712342,50.556909943777065],[-122.43805255290553,50.556960520471435],[-122.43852227685844,50.55716616469744],[-122.43901938321102,50.55751716819174],[-122.43951733164637,50.55779061065672],[-122.43997952492168,50.557845891574615],[-122.44089047779224,50.5579475797799],[-122.44190764992702,50.558136434037095],[-122.44282564025198,50.55819392107282],[-122.44442220196449,50.55816291147469],[-122.44510671190753,50.55808866808371],[-122.44739522307859,50.55797854200842],[-122.44803317420661,50.558068640285285],[-122.44906330178124,50.558228040412],[-122.45017291776486,50.5583208217369],[-122.45077904036569,50.5584784769748],[-122.45213319096663,50.55887701468014],[-122.45337623399656,50.55918316196883],[-122.45448042555289,50.559681638737395],[-122.45569011631545,50.560142430300445],[-122.45668911906452,50.56056331870001],[-122.45704653024319,50.560782724281694],[-122.45704553997751,50.56092999013015],[-122.45704558733398,50.56122121314824],[-122.45703985689285,50.56248373883074],[-122.45704062960972,50.56263106055453],[-122.45703986356538,50.56275302960728],[-122.47860130236664,50.56636363962801],[-122.47874301753198,50.56635969903919],[-122.47971960258452,50.56670994472576],[-122.48164760491943,50.56730335385317],[-122.48504188556065,50.56824779977255],[-122.48735828963673,50.569233985215554],[-122.48974777587487,50.570032406546304],[-122.49206558483435,50.570980301625454],[-122.49338428151913,50.57170662821985],[-122.49500604341458,50.57265049594456],[-122.49516693762503,50.57280903736834],[-122.49523928839712,50.57287877909409],[-122.49529914757056,50.57292733093325],[-122.49535591746104,50.57297015458338],[-122.4954684957651,50.57306814844399],[-122.49558967329521,50.57316922852606],[-122.4956620091645,50.573216482233484],[-122.49571858886591,50.57323906118578],[-122.49579426106395,50.57326618143884],[-122.4958630973827,50.57329027985155],[-122.49590992582132,50.57330187453662],[-122.49602748566019,50.57333593617667],[-122.49627936746094,50.57341583073068],[-122.49643582906403,50.573472480290285],[-122.49646806964503,50.5734897946526],[-122.49648319847702,50.573499832792116],[-122.49651006119689,50.57351810208651],[-122.49654552281079,50.57353945764569],[-122.49659099747352,50.573568441443896],[-122.49663466535142,50.57359792598804],[-122.49666139682549,50.5736178821415],[-122.49668534405025,50.573628189035595],[-122.49672348610639,50.57363782769355],[-122.49685795048951,50.57363644140291],[-122.49717678921022,50.57369651332745],[-122.49740957225305,50.573817404883755],[-122.49745970079358,50.57387745020323],[-122.49750842442317,50.57388742182088],[-122.49760410891197,50.57390730048276],[-122.49765394158825,50.573925735145394],[-122.4977225619638,50.57395263192217],[-122.49795216213117,50.57400089644371],[-122.49824283154888,50.57405952047296],[-122.49839385842732,50.5740951998669],[-122.49844179749002,50.57411525657464],[-122.4984951753785,50.57415628958975],[-122.4985533810941,50.57422615015882],[-122.4986211823423,50.57433172550352],[-122.4987012591587,50.574461298714205],[-122.49875935268076,50.57455532475172],[-122.49880578213173,50.57461750159069],[-122.49884598707146,50.57466879657831],[-122.49887326164985,50.574704510200355],[-122.49889400574496,50.57473327210411],[-122.49890993890882,50.574755703099854],[-122.49894117717923,50.574785919694115],[-122.49900637758866,50.574834070682336],[-122.49908370528642,50.57488540975329],[-122.49916954519576,50.57494095643879],[-122.49926496269399,50.57500973908985],[-122.49934265808491,50.57507907920179],[-122.49940482987203,50.57514344222699],[-122.49947190019871,50.57521301448049],[-122.49953067643929,50.57527557951384],[-122.49955362118577,50.57529878874303],[-122.49961264136384,50.57533550124955],[-122.49999644059555,50.575560640214185],[-122.50066162269707,50.57605492320187],[-122.50108143595206,50.57652181119353],[-122.50118614096603,50.576721299782946],[-122.5012940610287,50.57681126961987],[-122.50153297146268,50.576899180140394],[-122.5018014536829,50.576970588262846],[-122.50196873495106,50.57702475411455],[-122.5020981314404,50.57706592709988],[-122.50222001803137,50.57708999851004],[-122.5022656549201,50.57709424904444],[-122.50234893493754,50.577137344526065],[-122.50259224448247,50.57725967911177],[-122.50283916989983,50.57738100244664],[-122.50296149003279,50.57744499651184],[-122.50305374003851,50.577509178374974],[-122.50315075891547,50.57758024717205],[-122.50322258667647,50.57763422535625],[-122.50328413728347,50.57768394967522],[-122.50335261235941,50.577735573662146],[-122.50341473029401,50.57777800297008],[-122.50350909474827,50.57783774447273],[-122.50366618739699,50.57793207277334],[-122.50382186639644,50.57802185000232],[-122.50395579429977,50.5780957691345],[-122.50406770935258,50.57815719507393],[-122.50412175126442,50.57818980864986],[-122.50416825864878,50.57822837379586],[-122.50428021520736,50.578334774657904],[-122.50440140396934,50.57845888838707],[-122.50445344181435,50.57851729875036],[-122.50447453986808,50.57854157305321],[-122.50448451209773,50.578549756865016],[-122.50459035341318,50.57862111042574],[-122.50476987803422,50.578745365836724],[-122.50486548645213,50.57881190015595],[-122.50487837623535,50.57882804602001],[-122.50489873424425,50.578861849405264],[-122.50492875930405,50.57890776666423],[-122.50497683443577,50.578971682917455],[-122.50502477933294,50.57903727706874],[-122.50507474955216,50.57909956179174],[-122.50512798597491,50.579165322141385],[-122.50516511039419,50.57921089569701],[-122.50520310561548,50.579245262144944],[-122.50523417694178,50.579277720021764],[-122.5052342850036,50.57929908596149],[-122.50524166421684,50.57936340543749],[-122.50527040243844,50.57949416561366],[-122.50531536259548,50.57962094703552],[-122.505409034428,50.579735200001636],[-122.50553713375253,50.57983872432456],[-122.5056479664876,50.57991416413359],[-122.50574220733921,50.579975590483954],[-122.50578915360296,50.5800085468395],[-122.50582980625911,50.58005423991234],[-122.5058980045167,50.580132270842974],[-122.50594806428522,50.58019343348556],[-122.5059920486897,50.58026452434445],[-122.50609776488587,50.58038309456901],[-122.50621822400562,50.5805167351733],[-122.50625554247515,50.58081023616772],[-122.50623924433644,50.581429802915814],[-122.50622128965531,50.58216174217135],[-122.50620963103259,50.58265327899896],[-122.50621161010949,50.582832668726674],[-122.50622066807084,50.58289816486452],[-122.50623029056966,50.58304744644962],[-122.50624087077031,50.58327545276857],[-122.50625445547512,50.58351030840359],[-122.50628391504891,50.58383672487761],[-122.50634157575503,50.58418708027469],[-122.50639869442735,50.584385075345416],[-122.50643669479211,50.58446497228225],[-122.50647626334239,50.584570211510574],[-122.50653824016501,50.584728440522554],[-122.50659185474335,50.584903271897005],[-122.50666080066557,50.58515391509943],[-122.50672674206297,50.58539771780451],[-122.50675039221177,50.58550302358181],[-122.50683406202263,50.58551858518278],[-122.50706924038309,50.58556419687815],[-122.50729912720783,50.585609641928386],[-122.50739126972671,50.58562995744381],[-122.50744830571215,50.58564693106858],[-122.50763938517147,50.58569115705281],[-122.50791646604911,50.585743703978245],[-122.50820765967391,50.5857966931525],[-122.5084981142116,50.58585921067706],[-122.50878094720528,50.58592880089385],[-122.50905095374723,50.58600417619614],[-122.5093150604429,50.586087227017764],[-122.50954486744065,50.586179329006264],[-122.5097584947809,50.586274853540054],[-122.5100017402092,50.58635331747235],[-122.51024696845016,50.58642902771259],[-122.51041819403983,50.58650130083597],[-122.5105122575841,50.586542478512456],[-122.5106198009059,50.58656946260216],[-122.51075759421065,50.586594022349985],[-122.51089994053312,50.58662827702369],[-122.511031029804,50.58669366870281],[-122.51112631701888,50.586764674435514],[-122.51117473348454,50.58680161366012],[-122.51119150396266,50.58681338287408],[-122.51124754265467,50.58684324845307],[-122.51135308604641,50.58689602864652],[-122.51147045611098,50.586955925554165],[-122.51163084098361,50.58703122070113],[-122.51180281087582,50.58709395354791],[-122.51191654266161,50.5871323736197],[-122.51201624906089,50.587169229515965],[-122.51215618627997,50.58725738369137],[-122.51230734761462,50.587406036577825],[-122.51240671807598,50.58753844940325],[-122.51247182648788,50.58763380959813],[-122.51251449925738,50.58769923393581],[-122.51252654913411,50.58774908206331],[-122.51256901034357,50.587862845797005],[-122.51266032631926,50.58800793104809],[-122.51270772637052,50.58808081606198],[-122.51271678934974,50.58810077135995],[-122.5127295106655,50.58811915933419],[-122.51274619506951,50.588132049895705],[-122.51277747035651,50.5881392184997],[-122.51286049523333,50.58816318303894],[-122.51299246217545,50.58821734731076],[-122.5130958988674,50.58827455687445],[-122.5131444304122,50.58833286087343],[-122.51317691177259,50.58839290147804],[-122.51322279160696,50.588485409757496],[-122.51328525051896,50.58861498265886],[-122.51332374529812,50.588688703549025],[-122.51333280797724,50.5887086677551],[-122.51337380583897,50.58877291479219],[-122.51345383883064,50.588881109438354],[-122.51355826623882,50.58899399908545],[-122.51356891468618,50.589130376051855],[-122.51344834510694,50.58929412209889],[-122.51346913653197,50.58939090787555],[-122.51367258693506,50.58943551029249],[-122.51383219448718,50.5894753655894],[-122.51394438756662,50.58951091971608],[-122.51401879396334,50.58955485103571],[-122.51405471807341,50.5896161324183],[-122.51406786414611,50.589697495594564],[-122.51405228713077,50.589807191222974],[-122.51402136157567,50.58995519058747],[-122.51400557414128,50.59011322547251],[-122.51401885784297,50.59023844150134],[-122.51404350177371,50.59030836397266],[-122.51405269586094,50.59032664119694],[-122.51407733302428,50.590351023882114],[-122.51416720942632,50.59042354775934],[-122.51431278368088,50.59053042185429],[-122.51448055477185,50.59064754332978],[-122.51468707001062,50.59074395841739],[-122.51486005762872,50.590793792366405],[-122.51492781901005,50.59080940674021],[-122.51495147499043,50.59082363957077],[-122.51498441248059,50.59085502793313],[-122.51501987922204,50.59089942069917],[-122.51504974879893,50.59094757775595],[-122.51509815572715,50.591007558626046],[-122.51517198319787,50.59108182750737],[-122.5152635222716,50.59117857979718],[-122.51537053198793,50.591303915521046],[-122.51545479804736,50.59140324612118],[-122.51551779760632,50.59145750449142],[-122.51560854760773,50.59151881112833],[-122.51573576492116,50.59161161629523],[-122.5158580376026,50.59169976917639],[-122.51592578386028,50.59173842644414],[-122.51594492996809,50.59174239893075],[-122.51601071130756,50.591760765864464],[-122.51610080161477,50.59178494885671],[-122.51615109613026,50.591797766848494],[-122.51622036305294,50.59181680045247],[-122.5163793299919,50.59186505948287],[-122.51654990824701,50.59192324300088],[-122.51666210888068,50.591958803256816],[-122.51677862082595,50.59198437050314],[-122.51703823839846,50.592034664101526],[-122.51743209876035,50.592109954281895],[-122.51771783516531,50.592165552022294],[-122.51789446352778,50.592191317527735],[-122.5180598273995,50.592202680773575],[-122.51813211963326,50.592205500717654],[-122.51818341355595,50.5922054238817],[-122.51828621954644,50.59220245268178],[-122.5183682446412,50.59219377620407],[-122.51841829530292,50.592186914457876],[-122.51843434745852,50.59218516810665],[-122.51847877415008,50.5921595746361],[-122.51885573210656,50.591973489387726],[-122.51966687605264,50.59159298648292],[-122.52038701710522,50.59124561008809],[-122.52070001319106,50.59106314011032],[-122.52079495045297,50.590978969839725],[-122.52083581743011,50.59093077783007],[-122.52086854238155,50.590896389660486],[-122.52089669823859,50.59087534141149],[-122.52094401450647,50.59083522124271],[-122.5209960739346,50.59077950893561],[-122.52101747611772,50.59075431886918],[-122.5210394707571,50.5907443300936],[-122.52106688855329,50.59073281991279],[-122.52108677256882,50.5907272534049],[-122.52111751638743,50.590695609512636],[-122.52121421561634,50.59061150298277],[-122.52134414598521,50.59050931299108],[-122.52144075763098,50.59042632784951],[-122.52150503563878,50.590372679299605],[-122.52155334818727,50.59031966488473],[-122.5215945463001,50.590221446362996],[-122.52164213481062,50.59008633414165],[-122.52169693942886,50.58997224285076],[-122.52173206358401,50.5898839532213],[-122.52175149727945,50.58976988041405],[-122.52175176981466,50.58960630525419],[-122.52171891380357,50.589436630442556],[-122.52165454942445,50.58928564158278],[-122.52157393124229,50.58911616438074],[-122.52148768886829,50.58892795546986],[-122.52142118580798,50.5887589103662],[-122.5214025895293,50.588633529522255],[-122.52140643557485,50.58853808264766],[-122.52141424365004,50.58843713804448],[-122.52141800289814,50.588342812753716],[-122.52142073536048,50.5883074866219],[-122.521421646643,50.58829570526236],[-122.52143302621556,50.58826289813232],[-122.52146538740963,50.58818745621507],[-122.52152360258448,50.58805210936596],[-122.5215835524287,50.58789433031162],[-122.5216193109629,50.587752093010586],[-122.52163125387264,50.58764340735015],[-122.52164335562303,50.587555531066144],[-122.52165661487669,50.587475552211004],[-122.52166709745681,50.58743147378695],[-122.52169551101456,50.58740706042274],[-122.52174442737659,50.58734619447561],[-122.52176828475085,50.58724350286094],[-122.52175599292723,50.587150924265096],[-122.5217601712311,50.58707403442047],[-122.5217807029536,50.58699147657885],[-122.52178722259359,50.586884312244365],[-122.52182750500769,50.58672929098603],[-122.52190383523316,50.586588321876306],[-122.52193541377862,50.58652297415752],[-122.52193301327743,50.586508282930126],[-122.52196770099196,50.586494193530676],[-122.52205752249976,50.58645315303756],[-122.52214747429174,50.5864104255684],[-122.52221909084062,50.58637612842453],[-122.5222933393279,50.586330661301716],[-122.52236118158541,50.586276565961874],[-122.52240703086466,50.58623246865472],[-122.52258882445452,50.586076806583236],[-122.5229019598246,50.585800458668025],[-122.52306224799928,50.58562557688058],[-122.52307969884603,50.58558283139274],[-122.52309373747873,50.5855613503691],[-122.52306056513048,50.58548723268297],[-122.5229704512655,50.58537198402402],[-122.52298557145708,50.585267894622014],[-122.52317538500408,50.585145654266746],[-122.52341983854538,50.58502567882901],[-122.52358956886079,50.58495734431153],[-122.52364258908706,50.5849348237233],[-122.52379114575504,50.58502603867436],[-122.52410431034423,50.58520672076835],[-122.52430471864011,50.585290560444506],[-122.52436371114356,50.58528228462499],[-122.52442990251028,50.58524949861087],[-122.52451740468727,50.58519264326107],[-122.52485468387022,50.585107054697666],[-122.5256305668915,50.58492891124139],[-122.52630471928568,50.58469417630064],[-122.526456170376,50.58451901398802],[-122.52639392694243,50.58440913568335],[-122.52632326560372,50.584270886439725],[-122.52625102552962,50.584107295082084],[-122.52621924735642,50.5839921796347],[-122.52621315597395,50.58395657778729],[-122.52637327929544,50.58389804910226],[-122.52672093610519,50.58376948833196],[-122.52698158285436,50.58366856679074],[-122.52718840030325,50.583577774103375],[-122.52743125482327,50.58343244757709],[-122.52754922612941,50.58325567200867],[-122.52756849147,50.58309774401752],[-122.52757586268876,50.58297936264991],[-122.52771314876169,50.58280431409873],[-122.52799222844709,50.58255612182202],[-122.5281567922882,50.58237124754157],[-122.52822526054246,50.58224014773201],[-122.5283224589355,50.58212625168578],[-122.52845083337995,50.582043685204404],[-122.52868762647964,50.581953825350666],[-122.5289497087353,50.581879927979244],[-122.52906061561858,50.58179456713305],[-122.5290604622989,50.58165907699111],[-122.52909745887865,50.58156916124176],[-122.5291743540436,50.581535024534055],[-122.5292406336508,50.581478061110865],[-122.52926635415248,50.58139678805662],[-122.52927692510028,50.58132853418727],[-122.52933003472064,50.5812818453585],[-122.52938718058085,50.581251589615135],[-122.5294074055521,50.58124153506662],[-122.52943811652466,50.581255985111795],[-122.52954953244046,50.58127857466105],[-122.52973172942596,50.58127751284138],[-122.52989913293595,50.58126193970417],[-122.53006313874445,50.581244569350304],[-122.53053874219424,50.581244788051826],[-122.53119928006308,50.581070880345756],[-122.53148806986657,50.580673438706846],[-122.53153402157648,50.58044438549599],[-122.53158143796897,50.58042562618479],[-122.5316357795672,50.580408773765136],[-122.53193690299679,50.58035575810571],[-122.53242346921145,50.58023657506373],[-122.53270114977998,50.579937166751066],[-122.53279443158259,50.57955274088095],[-122.53281566539573,50.57936901383217],[-122.53279089406557,50.57934632189835],[-122.53278625145673,50.579337740266375],[-122.53279963544377,50.5793246655801],[-122.53285088880563,50.57927904160814],[-122.53313741576244,50.579117075279825],[-122.53367226835294,50.57889876070962],[-122.53424371136565,50.57884798349611],[-122.53474589594937,50.57891591487636],[-122.53496102595405,50.578946227453685],[-122.53506299418737,50.57890780396341],[-122.53538374267094,50.57878343407486],[-122.53573116817834,50.57863404375018],[-122.53587023156197,50.578550111022714],[-122.53588791933176,50.578527051129164],[-122.53590624795628,50.57851862737103],[-122.53593726840185,50.57850610158563],[-122.53596841804628,50.578491897830474],[-122.53604401437958,50.578451527861915],[-122.53616793014008,50.578380614908184],[-122.53628327874152,50.578329115165296],[-122.53640313402971,50.578310927621615],[-122.53659567262707,50.578359080446766],[-122.53685043473729,50.57849462764054],[-122.53712254683654,50.578588547811414],[-122.53737085548575,50.57857828881152],[-122.5374972116936,50.57854455298388],[-122.5376055904786,50.57849171063191],[-122.53782996310473,50.5783789590676],[-122.53807783102475,50.57823657269729],[-122.53829472607123,50.5780831119768],[-122.53846713276018,50.57795636536905],[-122.53859405228287,50.577892298228626],[-122.53877349555711,50.57783492033602],[-122.53911523994502,50.577805078663374],[-122.53952412001229,50.57784478382764],[-122.53973692390385,50.57788231848478],[-122.53988868667108,50.57790896832365],[-122.5404168085944,50.57798441802704],[-122.54136353570956,50.57811111804273],[-122.54216624423016,50.57822545358409],[-122.54246143084649,50.578272298791674],[-122.54250496481104,50.57828095557142],[-122.54255546693445,50.57829096223989],[-122.54262132636875,50.578308183141054],[-122.54267784911228,50.578331868688664],[-122.54285353269064,50.57836936773536],[-122.54314351944953,50.578391872166236],[-122.54331568173407,50.57838317306769],[-122.5433952270002,50.57836034343164],[-122.54348126667952,50.57834502810632],[-122.54354016036869,50.57833786369437],[-122.54373021854627,50.578326347122534],[-122.54397967668775,50.57839312030128],[-122.54408545371858,50.578443070392716],[-122.54413431981754,50.5784743784903],[-122.54422022213849,50.57852989018115],[-122.54439319550018,50.578579678981114],[-122.54458656196702,50.578617166895356],[-122.54483503662759,50.5786507447149],[-122.54491552459619,50.57866167272305],[-122.54498245936345,50.57868792908527],[-122.54501166826147,50.57869895517825],[-122.54503279088532,50.57870016892834],[-122.54511723659573,50.57870560714068],[-122.54529232674675,50.57868181316652],[-122.54547546275641,50.578645334695075],[-122.54567894678405,50.578597129385294],[-122.54590199900713,50.5786164235383],[-122.54623982454346,50.57866064297348],[-122.54652989981902,50.57870506081973],[-122.54689529842027,50.57880466795047],[-122.54722318736502,50.57888623580873],[-122.54747368411489,50.57898564713525],[-122.54754853626173,50.57902394840475],[-122.54766761165934,50.579084984102465],[-122.54794771125661,50.57909817442281],[-122.54807070448562,50.57908512670461],[-122.54833454421856,50.579056769596654],[-122.5487302808198,50.57901452438702],[-122.54903485867064,50.5790312777499],[-122.54922466023399,50.57902311673004],[-122.54951555808937,50.57898772610229],[-122.54998085582466,50.57896055935499],[-122.55014286698487,50.57896895713367],[-122.5502893915346,50.57899486333912],[-122.55041685852983,50.57901568109189],[-122.55060717676433,50.579023831737466],[-122.55077194080073,50.579019388897514],[-122.55181880970078,50.57883203949453],[-122.55283776012278,50.57877817458435],[-122.55402266830552,50.579073479837135],[-122.55550316856188,50.57991871624142],[-122.55687596611075,50.58108608664871],[-122.55908623140253,50.58207752772149],[-122.55992992047253,50.58272086083368],[-122.56094089855964,50.58348909102284],[-122.56283406250982,50.58432898436299],[-122.5634997132518,50.584387774616985],[-122.56377597199105,50.584382258897996],[-122.5640486883739,50.58433052813017],[-122.56432706138101,50.58434362267103],[-122.5646048854282,50.584387055424614],[-122.56487483973393,50.584440929725695],[-122.56513645436038,50.584511401222386],[-122.56537299533522,50.58460921421939],[-122.56559431227893,50.584721163460934],[-122.56587041026246,50.58474092955428],[-122.5661410532824,50.58478582759297],[-122.56635837319459,50.58478803811809],[-122.56655894391753,50.58487068011751],[-122.56675045595425,50.58500251087597],[-122.56695857370639,50.58512529273451],[-122.56718953039045,50.58522685976468],[-122.56744921725257,50.585299523592795],[-122.56770890563791,50.585372177835595],[-122.56797706304317,50.58542654646229],[-122.56825630907707,50.58545146736086],[-122.56854493237469,50.58546936442309],[-122.56881798862963,50.58550589348578],[-122.56902456383759,50.585625817368715],[-122.56913572857528,50.58579114280895],[-122.56919823688564,50.58596845904691],[-122.56935113277925,50.58611988870501],[-122.56958790558639,50.586214883952834],[-122.56985534280787,50.58627878648618],[-122.57002389494656,50.58631771168352],[-122.57024849249864,50.586410081491856],[-122.56989287317322,50.58706187873278],[-122.57049473394582,50.587517221461624],[-122.5712437311646,50.5880838926155],[-122.57618458568852,50.59007930525544],[-122.58588238406904,50.593154795715],[-122.58668982574379,50.59332796989687],[-122.59396932537332,50.59360387186383],[-122.60043422524136,50.59473694765061],[-122.60572841704658,50.59770017701267],[-122.60708033661939,50.5994727321826],[-122.60959830149523,50.60060794203594],[-122.6136441189922,50.60362881701047],[-122.61284669017056,50.608202632989716],[-122.60685469333708,50.614837422591386],[-122.60389337759133,50.61843625099538],[-122.60202973064047,50.62454962441113],[-122.60285130936958,50.629974809637325],[-122.60725185253746,50.632827815785504],[-122.60986801856576,50.633624712198504],[-122.61740607665271,50.63544349366414],[-122.62622818336949,50.637143257686866],[-122.63440235824874,50.6380481757495],[-122.63521516160334,50.63816266415012],[-122.62928805249446,50.64033859831564],[-122.62407477335121,50.64337336729484],[-122.62156953701398,50.646175287477746],[-122.62104328784031,50.64902819155884],[-122.62231229350184,50.65268477365972],[-122.62446920257473,50.65565212590124],[-122.62645071836447,50.6566204411642],[-122.62995079774129,50.656045110804804],[-122.63686545815222,50.65243811049651],[-122.64136038528923,50.65048727714497],[-122.65151806760592,50.6504737393106],[-122.6582458503453,50.650294068885614],[-122.66031703557042,50.649491153421934],[-122.66749607570615,50.64570870222914],[-122.67511967306154,50.64106955750187],[-122.67969084377775,50.64168814497925],[-122.68770510032657,50.64401532919584],[-122.69318083610078,50.64177969785346],[-122.70413769571283,50.642616417578985],[-122.7074794487908,50.64552268079104],[-122.71028379240467,50.64997038276438],[-122.7164059735269,50.65264137226723],[-122.72154355440443,50.65309108966114],[-122.72729415030585,50.652905475015906],[-122.73284840318885,50.65054997554238],[-122.73850506267814,50.6504818809631],[-122.74346860761375,50.65235361755662],[-122.75237105599892,50.65559048315319],[-122.75993193112103,50.65642878853964],[-122.7670217151622,50.65515601010034],[-122.7740324111164,50.65359780040971],[-122.77886212433681,50.65084198192553],[-122.78092699685547,50.65009514815404],[-122.7856825394796,50.64836427600618],[-122.79240700124754,50.64543435601106],[-122.80130290633224,50.64540853604655],[-122.81748174686219,50.64633211444683],[-122.82467178756544,50.64739824387387],[-122.82539014981342,50.64785482984424],[-122.82879372087919,50.64618705107328],[-122.83254433054579,50.64240577837038],[-122.83333644071872,50.63920461781419],[-122.83554450277512,50.63519728697983],[-122.84198618845097,50.63117738449877],[-122.84826588245788,50.62864299299298],[-122.85623119625531,50.625475822306775],[-122.85772224594147,50.621359587287714],[-122.85745435302111,50.62033253634282],[-122.86165021954565,50.61699954250603],[-122.8741128578004,50.61484860228239],[-122.8833418596509,50.61298573288173],[-122.89472785145342,50.61020384997123],[-122.89801617804825,50.60704936837301],[-122.9030267051785,50.60394496646859],[-122.90248024090872,50.60366224547367],[-122.91117027645004,50.601972110063926],[-122.92516887630013,50.59980874969844],[-122.93339519340864,50.596803065251535],[-122.93578769448874,50.59324685535736],[-122.93818137648009,50.5904987767033],[-122.94407125410355,50.58687164120145],[-122.94361853653469,50.58687381923502],[-122.9418677056177,50.582254907194475],[-122.94047408177053,50.57654701519802],[-122.93949722929159,50.56866595259481],[-122.93982911010747,50.56586442401895],[-122.94267780855716,50.56242731982886],[-122.94307419151308,50.5582561991438],[-122.94300326097968,50.55076803397412],[-122.94594149480781,50.54870126298518],[-122.94747697978774,50.54898005328519],[-122.95324941690635,50.552843280239124],[-122.95821722165685,50.556706635029244],[-122.96148923933727,50.56057735820477],[-122.96546752474391,50.564044590135005],[-122.97221912511074,50.56601186179204],[-122.97607554376931,50.566683284752266],[-122.98155408339775,50.566144771988306],[-122.9848916948135,50.567387971217],[-122.98877184225735,50.570455409225346],[-122.99374716948668,50.57449081577109],[-122.99496520983027,50.57911635114277],[-122.99439945460189,50.593511590495716],[-122.99628341118579,50.60173028049362],[-122.996680009038,50.60447668491762],[-123.00543292537525,50.60072191049088],[-123.01768316961945,50.596892758352695],[-123.02362801686641,50.59811738837198],[-123.03020940388988,50.60020387535601],[-123.03588027388163,50.60194763872653],[-123.03758789239203,50.60222519161003],[-123.03994431917208,50.59673004506638],[-123.03836139792016,50.59091032663689],[-123.03764072678297,50.58274027186443],[-123.03957704462454,50.580391041644916],[-123.04476688266303,50.57887680106001],[-123.05114518074993,50.57907076766654],[-123.05916253749321,50.58166180656239],[-123.06357338159289,50.58340856864811],[-123.07135721009446,50.587653676440674],[-123.08046549623961,50.59178007108451],[-123.08424668026419,50.593012667162085],[-123.09012905981426,50.5965310194703],[-123.09449703781921,50.600732732831446],[-123.09457049956067,50.60616415469118],[-123.09388690063317,50.60907964723677],[-123.096430924484,50.61175061294383],[-123.09932584593572,50.61293533011162],[-123.10473497805145,50.61485125412139],[-123.11580253731435,50.61724457742275],[-123.12426477546641,50.61857154182437],[-123.13291114067295,50.620125109495106],[-123.13841924939769,50.621632236871555],[-123.14287185332776,50.62572322841341],[-123.14456590658975,50.63091545810623],[-123.14335854912896,50.635434836737545],[-123.14300040791153,50.63572402997191],[-123.15213777609524,50.63361202039032],[-123.16164145978915,50.63218515308167],[-123.16766586153591,50.63272507293829],[-123.17184775714294,50.6355525868535],[-123.17276955553314,50.63777637006099],[-123.17337810969572,50.641830149454385],[-123.17416955471941,50.647255047234744],[-123.17522121193059,50.651247510362815],[-123.18263115698309,50.65434956198502],[-123.18509492108124,50.65639018700938],[-123.18791947370165,50.659684410777736],[-123.18850184081833,50.662825373375355],[-123.18838942400897,50.666883196915954],[-123.1917497360299,50.669780038062484],[-123.19586162459376,50.67358004416397],[-123.19978577883977,50.678129158120704],[-123.19928857838738,50.68087484558909],[-123.19890741297259,50.68493929634749],[-123.20252577530287,50.686684204266584],[-123.20678561372475,50.6888293548851],[-123.2066815381109,50.69391710324491],[-123.20935366255219,50.69767361936468],[-123.21393028219933,50.703414269023725],[-123.21795815012388,50.70773358536318],[-123.2236219333309,50.71358452608106],[-123.23073436632173,50.71965531783838],[-123.2373437873085,50.72217985032765],[-123.24374287514917,50.72259982758247],[-123.25184824229333,50.722488398932576],[-123.26222889612413,50.72413561403633],[-123.27424749893451,50.72708253317814],[-123.28322163277599,50.73113667112746],[-123.28411886871571,50.730843889709945],[-123.29988347178467,50.72581947748415],[-123.3068951449093,50.72502871062462],[-123.318463820689,50.72843184363485],[-123.3245884411303,50.73347473801676],[-123.33154451159615,50.73982638156133],[-123.33402487840124,50.74249281855787],[-123.34018514168221,50.750104509438565],[-123.34084043841325,50.751018939827595],[-123.3336023844318,50.754842852359054],[-123.32491916444992,50.757650871207446],[-123.31765750624058,50.75993059592484],[-123.31391643297486,50.761957479429334],[-123.30900484226464,50.76479534463515],[-123.3101292376759,50.76758406583991],[-123.31478330657114,50.77046773068469],[-123.31933468703936,50.77317906335906],[-123.32187275112237,50.77418703032432],[-123.32555750203481,50.77358990806233],[-123.3387948316255,50.77304018674018],[-123.34899018100627,50.77422338417249],[-123.35802878343341,50.78010090878216],[-123.3627654338043,50.788406858378934],[-123.36455573937214,50.797081803376315],[-123.3755771002372,50.79397059445467],[-123.3877731589168,50.78993026588609],[-123.40175034224985,50.78599408937495],[-123.41516039227972,50.784458507082235],[-123.42341878534677,50.78753861738128],[-123.42753137292868,50.790363824915886],[-123.43661485925374,50.79395111894197],[-123.44591804935592,50.794957104947294],[-123.45210564667484,50.793307516526625],[-123.47185816194438,50.78937224808005],[-123.48066448220143,50.78809652844132],[-123.49781507454212,50.78463564886787],[-123.50999561817612,50.78138290835501],[-123.5224316807129,50.78939201447843],[-123.54258246159297,50.791499234039065],[-123.56504264538425,50.79243705485555],[-123.57747968468315,50.783859613359105],[-123.59240387559552,50.77857697480685],[-123.60431009902587,50.774974581771865],[-123.60886620854014,50.777389603025846],[-123.61352799341658,50.78369287781314],[-123.61875148050044,50.78746968383539],[-123.62346979906363,50.78873944421169],[-123.6348636373437,50.789999853090826],[-123.64824335064964,50.79158730870173],[-123.65206402942643,50.79320596227602],[-123.66323040186613,50.796409829575836],[-123.67877177717703,50.797450654567825],[-123.68466823142647,50.799335863428304],[-123.69310521618462,50.80485527778944],[-123.694544757432,50.81524481241226],[-123.69328926665857,50.829954271382],[-123.69357821102524,50.83069088693171],[-123.69900134098619,50.83109678056663],[-123.713818843894,50.83208554347996],[-123.7197805578779,50.832249261892194],[-123.71796883663396,50.83878541922383],[-123.71651847048076,50.84909441571455],[-123.71660066267242,50.85583921143249],[-123.71983076905026,50.86947024697695],[-123.72208834404536,50.873185564795556],[-123.72207387584295,50.873469432119414],[-123.72433583291445,50.87850335971254],[-123.72740823915733,50.88216205192268],[-123.73136758901481,50.88433863000838],[-123.73931971296032,50.88467844019241],[-123.74744829870713,50.88490723603936],[-123.74907060556149,50.88490782240891],[-123.75485698780588,50.88501994102562],[-123.76243325419564,50.885480868746065],[-123.76478435759057,50.88655936873921],[-123.76478785308981,50.894739150555516],[-123.76432822792853,50.898803529186374],[-123.7639720448351,50.90080005962185],[-123.763968400337,50.90400084881232],[-123.76406461846881,50.905491449404664],[-123.77752209165891,50.90857624912334],[-123.78619670555263,50.910229740776686],[-123.79071957897668,50.91205914231136],[-123.80662497963432,50.9114784695725],[-123.813302982463,50.91089965044195],[-123.81936903084151,50.91410113702231],[-123.8275934876016,50.91832565072078],[-123.83383573697783,50.92175263081372],[-123.8378225137443,50.92500888383088],[-123.83962525292638,50.9307278726212],[-123.84062790709602,50.934441951982784],[-123.84695332137161,50.93443995696843],[-123.85834808294405,50.93448505281553],[-123.86593899138457,50.93453252735847],[-123.86947359729723,50.93658854904306],[-123.87382536797912,50.939442103754175],[-123.87699828799879,50.94372523018924],[-123.87900346805445,50.94950333391833],[-123.88532374839511,50.947547845857926],[-123.88984842999554,50.94588504972316],[-123.89291723756895,50.943362058683036],[-123.89624236465546,50.93992798832311],[-123.90402310967235,50.93837839680277],[-123.91540928666842,50.9370991285095],[-123.92028811377465,50.936348524567684],[-123.92552463497506,50.93525451681699],[-123.93267373538372,50.93438304773564],[-123.94099386786029,50.93591223017454],[-123.94489591467999,50.93779848636789],[-123.9524998469395,50.94315983656207],[-123.96003205049784,50.94794772641249],[-123.97036801855488,50.954732398966954],[-123.97527088347175,50.95786801490397],[-123.98188646431566,50.9619140076917],[-123.9862306760413,50.963565781892676],[-123.99067128737052,50.96498328140762],[-123.9947538054329,50.96549363262791],[-123.9983086361717,50.963787884650564],[-123.99835239806687,50.96376564928804],[-123.99771466570334,50.96050734481203],[-123.99911841545969,50.95876488177187],[-123.99981479540835,50.95849206524224],[-124.02737937507496,50.937553681848925],[-124.03078116221049,50.9366538640399],[-124.03680328215833,50.93868464595095],[-124.03898906584216,50.94470638666277],[-124.04087902398027,50.950338842840324],[-124.05590223261225,50.97085877412662],[-124.05763898092883,50.973208698864276],[-124.06067668099105,50.97384396024804],[-124.06403918209236,50.97389634747737],[-124.06760615656486,50.97646851579144],[-124.06814370081261,50.97821259947198],[-124.06836771561048,50.9799535319537],[-124.06984813085728,50.9813303516599],[-124.07134763770422,50.98193830436804],[-124.07440304102282,50.98218159937648],[-124.08087929050177,50.98113754960013],[-124.08488798037344,50.98043398158634],[-124.08764412194121,50.98067181584182],[-124.09004758907771,50.981486916422924],[-124.09093267603595,50.982463124934874],[-124.09144639479173,50.98478661327623],[-124.09108344541913,50.98593586308376],[-124.09006368487108,50.98843428584908],[-124.08935999331463,50.99054394047651],[-124.08464650602008,50.993357278585634],[-124.08116885063525,50.99561438485762],[-124.07773892645567,51.0007253394263],[-124.07803958822961,51.001692753511854],[-124.07975886051426,51.003178456276956],[-124.08183035437298,51.0060961354172],[-124.08363054712143,51.007697675819955],[-124.0849039485546,51.00861146613917],[-124.08815282680632,51.01004277954308],[-124.09150135053846,51.01181758790473],[-124.09258422242716,51.01318840330197],[-124.0927528190278,51.015583418032406],[-124.09329176419796,51.018328852291916],[-124.09455830059605,51.01941474428977],[-124.09617510272557,51.01998725633648],[-124.09690041680346,51.0200472483414],[-124.10269466582528,51.02005253086527],[-124.11121472104928,51.02006122136955],[-124.11962986502408,51.02086413215758],[-124.12795445075224,51.02246995057627],[-124.13646944915384,51.02602014606013],[-124.14289239061122,51.02944980799342],[-124.14577112472642,51.03367906132495],[-124.1470371936604,51.038590692022034],[-124.14739198037748,51.04138771897591],[-124.14856288898007,51.044476610605756],[-124.15099345586893,51.0481857305366],[-124.15316191707953,51.04996047617776],[-124.15860851223118,51.051901699229624],[-124.16177482361557,51.05304307687298],[-124.1633936643262,51.05361572327356],[-124.16720507969684,51.05505208503595],[-124.17054867740771,51.057450747655444],[-124.17136250016452,51.06058795797782],[-124.17054530708427,51.063787359071654],[-124.16908941106236,51.06584015814982],[-124.16545066540536,51.069547643928075],[-124.16164158597826,51.07252133879198],[-124.16136564647562,51.07297490082091],[-124.15774799284856,51.07200244220666],[-124.15439490010154,51.07120035438402],[-124.1478604503799,51.070970673720154],[-124.14486952763828,51.07176853159196],[-124.143507529248,51.07393314518517],[-124.14359084111103,51.076730646409565],[-124.14403622370843,51.07941341947636],[-124.14385273521941,51.08141331495451],[-124.14357138412497,51.08336051417131],[-124.14384781343409,51.08461352221201],[-124.14438838804045,51.08501705706821],[-124.14746374797326,51.08633129273689],[-124.15262863549643,51.08827362972573],[-124.15789150926354,51.08993159947997],[-124.15834173816816,51.090105120456954],[-124.16441345144428,51.09364920776361],[-124.16766224515334,51.096333672510895],[-124.16974175835523,51.09964738292295],[-124.17046511827027,51.101873050550516],[-124.17155153961333,51.105702726392025],[-124.17309320505139,51.10889870283651],[-124.17480702753787,51.112783386629935],[-124.1755218593812,51.115924932552446],[-124.17679169874836,51.11844057572089],[-124.17877586452761,51.12237722802215],[-124.18049330798836,51.12654751861838],[-124.18049582029178,51.126835521167],[-124.17967746258049,51.12900191214069],[-124.17893717682989,51.13379933134314],[-124.17930664021779,51.136654536465024],[-124.1829311271503,51.13899866710647],[-124.18446988423148,51.13951291468298],[-124.18909301660607,51.14054147616305],[-124.19527067419193,51.141001988334935],[-124.2019969969093,51.141345175636744],[-124.20435589676246,51.14140296556879],[-124.21015766875317,51.14231918785255],[-124.21452229492942,51.14374729157153],[-124.21659903325913,51.14477645685914],[-124.22050680405188,51.14654453433848],[-124.22469062696483,51.147859359226565],[-124.22740437231751,51.14871760027237],[-124.2299482551726,51.149171785386486],[-124.23747884878566,51.15020293580942],[-124.24483821087469,51.15014256070315],[-124.2500141814717,51.149915946225114],[-124.25374666055356,51.14854193675932],[-124.25728833992575,51.145459082179705],[-124.2609995391881,51.14351646784111],[-124.26518412431574,51.143001655679],[-124.27081398922246,51.14248640603905],[-124.27770533412631,51.14191156741135],[-124.28452031247991,51.14145638747539],[-124.28896761069086,51.14042381701837],[-124.29359490107167,51.13768017933664],[-124.29586985378192,51.136192357024335],[-124.29895706487594,51.135160165630985],[-124.30294659213865,51.13447431579884],[-124.30476161459461,51.135278444028],[-124.30603357707201,51.13681753296084],[-124.30775485669899,51.13858393780491],[-124.31131116777772,51.14064104173134],[-124.31448247933349,51.142293193055885],[-124.3195657692517,51.144857776371154],[-124.3218371753369,51.14685889031835],[-124.32394019018224,51.14839719122681],[-124.32621018266249,51.14930649235558],[-124.32802416250411,51.1501652078677],[-124.33247057263546,51.15067555528522],[-124.33701222212584,51.15055625601306],[-124.34227436678918,51.14992257690956],[-124.34418062446248,51.14946675534477],[-124.35271970483353,51.147684000697886],[-124.3616110985545,51.146418171903214],[-124.36324087725154,51.14607644857415],[-124.36961004239576,51.14566859290309],[-124.37460405874984,51.14646583152189],[-124.37805544555056,51.14914450114258],[-124.37823775539155,51.15159874209531],[-124.37770436308912,51.15405391181685],[-124.37679958427069,51.15531104678099],[-124.37562468548235,51.156516007016684],[-124.37318453590628,51.159433100232626],[-124.37145879473806,51.16159937720684],[-124.36873387935572,51.164458375136064],[-124.36811140760776,51.16737074172144],[-124.36838695984007,51.16805440691773],[-124.36902051533244,51.17068576472747],[-124.37057489824272,51.1735908305702],[-124.37185267247327,51.176624329405435],[-124.37330915967398,51.17947572958226],[-124.37195388769092,51.18284445888212],[-124.3703320170793,51.18644617060112],[-124.37024782951785,51.189128274054035],[-124.37115890078827,51.190845363084186],[-124.37334579635592,51.19215203634311],[-124.37561356518617,51.192035957167],[-124.37680263619563,51.19203565337266],[-124.38016553660664,51.19174495443059],[-124.3850656363164,51.190940169362975],[-124.38889118408696,51.19013442959988],[-124.39078887335226,51.18915855533969],[-124.3945141827541,51.18715687370062],[-124.39731607280406,51.18572791238904],[-124.40032457680472,51.184522374039794],[-124.4064842280151,51.18091705626812],[-124.4093060070086,51.179310726225395],[-124.40929971890785,51.177887875241545],[-124.41309712122194,51.175822058724876],[-124.41415226211015,51.1683352370825],[-124.41864907212465,51.16107511592966],[-124.42532400486984,51.15249257045238],[-124.44136326126889,51.1493904249909],[-124.45586439823552,51.15959080789837],[-124.4727196688849,51.16315232131888],[-124.4949650312945,51.17039204172015],[-124.49503565969668,51.17042047959774],[-124.50993931533691,51.17260948024239],[-124.52275617730206,51.1742932753365],[-124.5351398902135,51.17654636241061],[-124.55405983507882,51.181294095442006],[-124.66792288856557,51.21303640219291],[-124.77208784980488,51.24185863850983],[-125.25440979974954,51.36863634127172],[-125.24518264877985,51.36160903726104],[-125.23620261896039,51.352928640505084],[-125.22780930965877,51.34048067672947],[-125.21479781503827,51.33512867114934],[-125.20848624488487,51.32728841796474],[-125.20419125953096,51.3200611280624],[-125.20473621185393,51.31371883301223],[-125.21480014937612,51.30424370560333],[-125.22024012104579,51.296222141996815],[-125.23475816223562,51.29270961395288],[-125.24395975386986,51.2876887042947],[-125.25904344332228,51.28525689817973],[-125.27526527597777,51.28070503829794],[-125.287168992978,51.27942958049995],[-125.28742183756363,51.27263543502105],[-125.2907439367393,51.264104907237645],[-125.30271545209709,51.26094301259391],[-125.3208050311718,51.254375622172155],[-125.32862234247591,51.24867341009343],[-125.33323738347438,51.24218927923524],[-125.3345835638869,51.23561671131426],[-125.33088367094187,51.22713183193511],[-125.32423421779458,51.22044152611263],[-125.33037987467897,51.21303447087091],[-125.34109871235741,51.21301780888122],[-125.33344681258473,51.206334426243416],[-125.32848540106981,51.19808695108481],[-125.31633183305563,51.193833698399],[-125.29899809982642,51.190351163400635],[-125.29262498493968,51.18314077394559],[-125.28874609856219,51.174088908976465],[-125.28109912910138,51.167114349949614],[-125.2923314741757,51.159337769704216],[-125.30061237667744,51.155174080689854],[-125.31227658428256,51.15235644277702],[-125.31951772836938,51.14580405209159],[-125.32747258487397,51.138269479229876],[-125.30767419043939,51.1373169364831],[-125.29478817124085,51.138024965820506],[-125.28383704564322,51.13404468889999],[-125.28106469203261,51.1250383489191],[-125.28431708272419,51.11845073739086],[-125.28553272348739,51.10954199740659],[-125.29360801757298,51.103380117089436],[-125.29232307384031,51.09699537825284],[-125.27378492814607,51.08917515390336],[-125.2652133489247,51.08557230045165],[-125.25515577767824,51.08632334282253],[-125.252296012367,51.0770890270262],[-125.2487370372786,51.069577821034216],[-125.24247771539771,51.06304612174434],[-125.23462619485802,51.05869922168834],[-125.24205861416662,51.05243363906017],[-125.2487756831385,51.04782732957269],[-125.2666185939475,51.04800337547658],[-125.27592230450506,51.04565768759568],[-125.28721079360776,51.04410840631086],[-125.29755439261112,51.04449221263908],[-125.31055141083581,51.04223961881496],[-125.31881409621339,51.03773007506113],[-125.32096710107368,51.031325561316855],[-125.31640392524763,51.02365071357683],[-125.3093493670787,51.01850102294929],[-125.30182297782684,51.0126126988723],[-125.29160862753722,51.0072541285057],[-125.28103876895375,51.00286662380631],[-125.26440925156535,51.00026040150671],[-125.26448018408477,50.99682605023095],[-125.26440759143144,50.994311757991994],[-125.25886523586773,50.987173855725345],[-125.25145142360539,50.97868456624442],[-125.25159256673413,50.9583823358218],[-125.22889347955883,50.956020178271906],[-125.2019284439777,50.95971076467535],[-125.19717187091881,50.95799079552734],[-125.19544326590335,50.954294770229204],[-125.19519555079529,50.951441132503085],[-125.19634010319982,50.94405107532707],[-125.197991121444,50.94174196334853],[-125.20193839045481,50.940036841183776],[-125.20605324271237,50.938501150577345],[-125.20799243161443,50.93676587702367],[-125.2091136073355,50.93457353071411],[-125.21070455854004,50.93318824059881],[-125.21864597941943,50.93263424210343],[-125.2227204604353,50.93252669930713],[-125.22432228241443,50.92884785753953],[-125.22469122073596,50.925640936218336],[-125.22617842786279,50.923623249836226],[-125.23150416481957,50.92355937103171],[-125.23822594832937,50.92428044143338],[-125.24288667331372,50.92313606820911],[-125.24699583246993,50.92091629549987],[-125.24870993169031,50.918034868424144],[-125.2495241137991,50.914481134951444],[-125.24924859722277,50.911395512382384],[-125.24855920079409,50.90922651947855],[-125.24678508343214,50.90724612883113],[-125.24286142315057,50.90615268050567],[-125.23703257500618,50.90496643546129],[-125.23279731164325,50.90215515462001],[-125.23015811772929,50.8984099787035],[-125.22849688570874,50.89408375466591],[-125.22802626853952,50.89003007000464],[-125.23045869391085,50.886741200050366],[-125.23808867577031,50.88476413942611],[-125.2449494155574,50.8811305453394],[-125.24493720209728,50.877643535635244],[-125.24376412724735,50.87468531236765],[-125.23908742964434,50.87205304620434],[-125.23449268007926,50.86964958919101],[-125.22799195470375,50.86978125733317],[-125.22594222923996,50.870721935553306],[-125.21856776700692,50.87527140428913],[-125.19441184413778,50.87726937366231],[-125.17681977219854,50.871811175036584],[-125.18025609351672,50.858902623651176],[-125.18292123504307,50.8569820973374],[-125.18484293469908,50.85450204921478],[-125.18687819417431,50.84967300724958],[-125.18741870298189,50.846521596807406],[-125.18695724565849,50.842977827560745],[-125.18681083028493,50.840868889460666],[-125.18353416982022,50.83975996300913],[-125.17857369842663,50.8398163103734],[-125.17243134180013,50.840002370051764],[-125.16812183120147,50.84096685021753],[-125.1648025321783,50.8414047022766],[-125.16083037985028,50.84179321540695],[-125.15575470465963,50.84116228254985],[-125.15166866132651,50.8333139552245],[-125.14810002882577,50.82821103569747],[-125.14842985526023,50.823569938988726],[-125.15145652842993,50.81827564925389],[-125.15818684319316,50.81688318928948],[-125.16113018918608,50.80912860209673],[-125.17633868436974,50.80375132134899],[-125.18553783082848,50.80072771527765],[-125.19168055344436,50.80100579029608],[-125.19482829029249,50.80045195547951],[-125.19823562604034,50.7996680396957],[-125.20164980380812,50.79928994004908],[-125.20883212431819,50.79777471446998],[-125.21257773387644,50.79629664619204],[-125.21349304997653,50.79348777568797],[-125.21511827660376,50.79066253085484],[-125.21878703767686,50.786219608312585],[-125.22174573872026,50.78257832534707],[-125.22180994671217,50.77806465276624],[-125.22423981155083,50.774598672600625],[-125.22859902893812,50.77277623750712],[-125.2379185172427,50.77043345730422],[-125.24430370523471,50.76704106814006],[-125.24961442160026,50.76337106501338],[-125.25302208754961,50.75978522612066],[-125.25794723063461,50.755320663917026],[-125.26460295649363,50.75163806948243],[-125.26970573917512,50.747459313612076],[-125.27275696837938,50.743818845573145],[-125.27450826794986,50.73899257807273],[-125.27699197995022,50.73443934673918],[-125.29187854638388,50.728994665349255],[-125.29208733546176,50.72384836258314],[-125.29199784458129,50.71784339880214],[-125.2931556805995,50.7145136318041],[-125.28658193455242,50.70818777836372],[-125.28926853188723,50.704951419821356],[-125.2964448146642,50.70085575025644],[-125.2992977176406,50.6968734773697],[-125.30271579005135,50.69385918939626],[-125.3066275140965,50.69186519300165],[-125.33336602337691,50.68626492901997],[-125.33092687054776,50.67983810093933],[-125.32798490582957,50.67489204319924],[-125.33032242356232,50.67194557319329],[-125.33366235380085,50.669158318729814],[-125.34537247559186,50.66700879553856],[-125.36186440905577,50.655985312480446],[-125.36046658024256,50.64879903208103],[-125.36542869507748,50.646105406223406],[-125.37275002438135,50.64463312675192],[-125.3748642326331,50.64317676450312],[-125.3747399271492,50.638890947475765],[-125.37813843978122,50.63558100791185],[-125.3872251613555,50.63311425226454],[-125.400619696212,50.629966483018464],[-125.40886883558701,50.62648168296741],[-125.41221611211532,50.62466279750479],[-125.41397377706654,50.62326611783075],[-125.41565015709389,50.61941027277189],[-125.41656397427,50.61436902787688],[-125.42114723280939,50.61418967855642],[-125.42593618532263,50.612291940453986],[-125.43374240362117,50.61213256978433],[-125.4342579971718,50.60823343028387],[-125.44789305104024,50.59958306331534],[-125.43996024239975,50.59305933023044],[-125.43885743811468,50.58969996277189],[-125.44225027499691,50.58616552469248],[-125.44718273145034,50.580320185389354],[-125.44690699293572,50.577465248661696],[-125.44583447184836,50.575077446453875],[-125.44443218651264,50.57309394739782],[-125.42620316022679,50.564761259075325],[-125.4259287967797,50.55858651738944],[-125.42082907092151,50.551052528560746],[-125.44641489718809,50.54280762780628],[-125.44007225919744,50.54089362834749],[-125.43633620080928,50.539398484877815],[-125.43202761816188,50.536312836711964],[-125.42736165137691,50.53363171995925],[-125.42317855442468,50.53185866814298],[-125.41902306765917,50.52796914669105],[-125.41902802462101,50.525395063125686],[-125.42657880261879,50.51751366279115],[-125.41523284614499,50.50468034238647],[-125.41178621970111,50.50615758359294],[-125.40873604304889,50.506427224887325],[-125.40254297222258,50.50331002379063],[-125.3990106211186,50.49637927012844],[-125.39701451228534,50.49274018247244],[-125.39269251480371,50.492227510008156],[-125.38730113661846,50.4915565951824],[-125.38519270105299,50.49003713764805],[-125.37960891151475,50.489030641491695],[-125.37409064495897,50.48738404800617],[-125.37157815103092,50.48455356659827],[-125.36417484084994,50.47967850440401],[-125.3393151592094,50.46381012012161],[-125.31686684884777,50.44985502429081],[-125.30546347478683,50.445708674586456],[-125.29910933919903,50.44579172020905],[-125.29363954880681,50.448771740574536],[-125.28734243452834,50.450567930410784],[-125.27893045007036,50.45067027894477],[-125.26885432592545,50.449139686408785],[-125.26079938335974,50.44637600409574],[-125.25118384201528,50.441797300168794],[-125.24467871447031,50.43661554730118],[-125.23560719214721,50.4292321255004],[-125.22654782844407,50.422133266037996],[-125.21797834269593,50.416173788292305],[-125.20937422779646,50.41232229819627],[-125.19838559128773,50.41047199100208],[-125.18981050333396,50.40907913136638],[-125.18180082699604,50.406025629348115],[-125.1774013923086,50.4041637983269],[-125.16914831933524,50.400663275150926],[-125.160472285647,50.397275176548646],[-125.15321463723335,50.39334961009296],[-125.14811315984684,50.38631111891224],[-125.1478097379114,50.381509933474035],[-125.14790875022527,50.374761698083645],[-125.14897171076181,50.36760180635426],[-125.14800210825133,50.36457870946568],[-125.14288286554968,50.36017608823967],[-125.13449742251186,50.35386214482817],[-125.12487895320092,50.348193804720964],[-125.12016111418657,50.34504238989067],[-125.11995915226605,50.345309274176216],[-125.11467296282461,50.340350608245096],[-125.10831939149038,50.33613404594153],[-125.10267712086521,50.33224470851213],[-125.08931634111991,50.3230634150889],[-125.07585784965555,50.31273923829022],[-125.0643693010396,50.303194438432165],[-125.05393644709818,50.296439043053965],[-125.04006618683799,50.28708562477807],[-125.03501675899082,50.28096132656114],[-125.0265517979605,50.273842181131926],[-125.0126291665174,50.2623121344719],[-125.00645148715755,50.25739635205207],[-125.0031594575528,50.25527073981298],[-125.00166580772502,50.25430111806823],[-124.99864738921458,50.25123853707671],[-124.99132628898289,50.24679064043783],[-124.97934178233173,50.23712967240334],[-124.97167182919165,50.22907829130429],[-124.9639291158771,50.2212626557629],[-124.95623744141818,50.21195189278005],[-124.94932089350777,50.20561084064118],[-124.9421566024747,50.19916128748139],[-124.93033827841667,50.188173804660714],[-124.92035674407397,50.17968672287064],[-124.91085575231152,50.17233601964823],[-124.89865639277448,50.15860462932877],[-124.88710551856437,50.146693507095094],[-124.87953169334904,50.13715096257827],[-124.87588954983711,50.12883407136619],[-124.87435888529549,50.118894482333936],[-124.87161173739617,50.10616033966782],[-124.86940539418842,50.09760301795057],[-124.86754930267386,50.0912934199069],[-124.86749822750666,50.09109903192159],[-124.86614341759145,50.085445759646674],[-124.86333718814335,50.07357161345582],[-124.86283876233911,50.06219534886659],[-124.86105688422012,50.04853988199309],[-124.85999929262667,50.0349927922842],[-124.85869434713591,50.02298938443552],[-124.85830894736674,50.01218219807871],[-124.85819159864973,50.00572169716722],[-124.85740815472968,50.00246590876188],[-124.85737605682162,50.000405372218545],[-124.85831640672328,49.99571701581407],[-124.8635638646137,49.98832012664997],[-124.8739429178801,49.974624632173885],[-124.88246386410493,49.960853422640504],[-124.89337496515779,49.94368169167384],[-124.89435748326568,49.93704912217991],[-124.89640657192966,49.92372785349895],[-124.89258290620486,49.9010604776211],[-124.8794624004956,49.8798178852306],[-124.84360777894467,49.83746230898465],[-124.82125974472328,49.81032089993528],[-124.80030687172598,49.79029449813117],[-124.78732570889623,49.78128272641043],[-124.78550381109564,49.779830118162685],[-124.78168362111893,49.776784539819076],[-124.74619197390928,49.75223537280125],[-124.71511471019251,49.72837199333778],[-124.67751917735802,49.70430926117986],[-124.63383790547314,49.68122979025696],[-124.59131948222404,49.65776505664209],[-124.5517807950956,49.638167089979966],[-124.51540951184454,49.619625516831114],[-124.4911646276783,49.60711086197482],[-124.46611616652906,49.59752354289299],[-124.44627591774979,49.58959758821449],[-124.41737648032523,49.578363734533816],[-124.39241839418914,49.5682453403214],[-124.35804880373438,49.55808542319792],[-124.32344950339066,49.550089235383524],[-124.30229518791089,49.54153143494938],[-124.27008027551634,49.533132286377025],[-124.23685744800484,49.523944251761534],[-124.22117144266582,49.51892892989595],[-124.18315414257538,49.504035137095045],[-124.15812531472385,49.49032391543544],[-124.11960787039664,49.472846431950856],[-124.0843032742771,49.45804944481162],[-124.04814010502469,49.4435420692261],[-124.02306001004446,49.433344981319074],[-124.00023291633309,49.42419205607542],[-123.86200795058586,49.34875907279831],[-123.52577513320652,49.15774249751906],[-123.52431234971202,49.156904447890106],[-123.31462061244859,49.00247496556385],[-122.43695033126275,49.00119241581397],[-122.09338539307937,48.99872556162368],[-122.09343726938906,48.998759012650325],[-121.26744165666047,48.99807311390355],[-121.01947224134005,49.000291265736806],[-121.06054086989715,49.10001075675777],[-121.06156202790714,49.1024840774002],[-121.0609464715397,49.10190502024723],[-121.06060755329605,49.101626325927654],[-121.0603311813085,49.101420435027975],[-121.06011449745297,49.10133037908408],[-121.05977043553563,49.101180886885246],[-121.0594014441052,49.10108861461584],[-121.05896764514523,49.101009440254046],[-121.05868364282988,49.10100454890732],[-121.0582884155766,49.100997922795074],[-121.05784831069057,49.101091040331355],[-121.05749372630497,49.10118582703481],[-121.05713531600311,49.10138111890554],[-121.05686437491609,49.10159199571432],[-121.05655294405659,49.10171612700158],[-121.05622058524129,49.101811373330065],[-121.0558813840017,49.10193872743308],[-121.05563838634104,49.102160760232884],[-121.05550049773171,49.10234532665443],[-121.05544834531632,49.102545688999044],[-121.05553830372833,49.10302162168912],[-121.05552448538072,49.10340959170602],[-121.05552718470015,49.10388404210284],[-121.05544796987994,49.104242208239114],[-121.05532795764125,49.10448428667145],[-121.05518601845284,49.104755243265984],[-121.05489296869203,49.104980321095674],[-121.05464731454595,49.10509817219856],[-121.05427331831396,49.105149470768254],[-121.05401152578519,49.10514503149961],[-121.05361796986313,49.10513846682388],[-121.05304836297522,49.10514325688889],[-121.05243428693407,49.10514711441765],[-121.05179849432432,49.10519396961596],[-121.05109194571942,49.10532582593408],[-121.05053939387264,49.10546025351143],[-121.04917864268818,49.10553797943629],[-121.0486258999532,49.10565801322621],[-121.04805378509755,49.105734566078404],[-121.0477632259269,49.105887556562905],[-121.04732168229714,49.10600960685427],[-121.04677295773398,49.10604351866379],[-121.0463349235678,49.106036013435585],[-121.04558656370361,49.10610949614036],[-121.04517112662408,49.106131229153426],[-121.04462239906312,49.10616512998711],[-121.0442913584837,49.106231353343084],[-121.04384809572142,49.10635331958427],[-121.04349347246946,49.106447780983366],[-121.04302967628394,49.106569355918936],[-121.04261133461661,49.10663436064849],[-121.04225670576011,49.106728826909745],[-121.04198952383845,49.10683915954883],[-121.0418943320796,49.107024562282014],[-121.04179564300256,49.107339237540046],[-121.04169584533595,49.10763214020432],[-121.04165662229528,49.10804826689362],[-121.04167111353618,49.10825000377809],[-121.04167773895435,49.10863806974916],[-121.04146026539793,49.10916637668917],[-121.04096375896034,49.10954615845253],[-121.04051390257384,49.10982601058679],[-121.0399978385487,49.11014791555707],[-121.03948583852686,49.110383436993075],[-121.03912593491306,49.11060736391489],[-121.03865552609474,49.110886819096514],[-121.03842601607647,49.111141871744266],[-121.03832055505677,49.111600048696495],[-121.03839368816477,49.111975114118344],[-121.03848756464143,49.112364664545105],[-121.03864932624917,49.11271251803243],[-121.03887478302974,49.11309009638488],[-121.03907683500162,49.11351031493198],[-121.03917221671357,49.11388583725526],[-121.03915251032635,49.1143598218493],[-121.03911613416497,49.114732922736295],[-121.03912929900467,49.1149630771461],[-121.03924809144635,49.11529597574156],[-121.03953896753859,49.11570336387917],[-121.03994948869745,49.11637148524774],[-121.04050244545684,49.11734398284769],[-121.0407287519724,49.118147978913456],[-121.04117278142724,49.11900066369867],[-121.04130219545073,49.119298510406246],[-121.04138198199783,49.11972406640972],[-121.04139902678074,49.12019127787716],[-121.04134850384618,49.12056852340127],[-121.04123368172424,49.12109845624695],[-121.04126081359176,49.121599701638175],[-121.04143649012326,49.1219783529736],[-121.04181019511755,49.12217241531325],[-121.04241705751333,49.12249567440392],[-121.04293139141657,49.12278617196524],[-121.04331871119723,49.12314215973924],[-121.04361813924854,49.12348619535658],[-121.04383540728048,49.12402186263158],[-121.0445079743587,49.125128698920456],[-121.04550630116285,49.12639747559278],[-121.04496981967684,49.12673256599905],[-121.04418878870607,49.12715761471],[-121.04359795889505,49.127648390173455],[-121.0432450844066,49.12814309152485],[-121.04283777619827,49.12876218359611],[-121.04258389676858,49.129164722288515],[-121.04229009232229,49.12937874129484],[-121.04166713395296,49.12943064563408],[-121.04038144881909,49.12940882739368],[-121.03923774831186,49.12935829194909],[-121.0380015336574,49.12927470412103],[-121.0372891457665,49.129184279350234],[-121.035454816604,49.128968143460256],[-121.03300680764232,49.128733194778064],[-121.03002367575573,49.128434520141155],[-121.0281741277379,49.128152688386606],[-121.02599408076738,49.12780222966208],[-121.02320077443535,49.12728513755263],[-121.0202113949663,49.12683784403789],[-121.01756666166419,49.12666364329594],[-121.0150797478266,49.12645720857353],[-121.01373904389291,49.12653317988419],[-121.01216578747281,49.12657070788527],[-121.01067782968683,49.12693197355102],[-121.00918283408213,49.12748634464],[-121.00838307095579,49.127794931226006],[-121.00708813328032,49.128322471281116],[-121.00583246364288,49.128707722959135],[-121.00507119775435,49.128928961327404],[-121.00418692511653,49.12930522451457],[-121.00331951770708,49.129540413184564],[-121.00241717462539,49.12946235437904],[-121.00145522030965,49.12906144269527],[-121.00082722280055,49.128792796565854],[-121.00015313271174,49.128442488760165],[-120.99999683343684,49.1283489169018],[-120.99945857171008,49.12802747585006],[-120.99873052115727,49.12750938450874],[-120.99821678573562,49.127135500186064],[-120.9975479786761,49.12668867830147],[-120.99717009947952,49.12631152868401],[-120.99688984270922,49.12591973710822],[-120.99673634995051,49.12546560502386],[-120.99647017663324,49.12475184637402],[-120.99629975019113,49.124136452536305],[-120.99607446571186,49.12360057949841],[-120.9959449233486,49.123163063285844],[-120.99571961737954,49.122659332196555],[-120.99558831334453,49.122254166299086],[-120.9955039852198,49.12193833677051],[-120.99512620837072,49.121544809120245],[-120.99442827169042,49.121210264585024],[-120.9931877210383,49.120882564943024],[-120.99226193853458,49.120721259627295],[-120.99160484497114,49.120580918976145],[-120.99023220638819,49.12049267176057],[-120.98925502157206,49.12037884810429],[-120.98866976112768,49.12028809866396],[-120.98796484246728,49.12009841419168],[-120.98696019540104,49.12003264286045],[-120.98646715487533,49.120088600033675],[-120.9856558422334,49.12009050693375],[-120.98503600059644,49.12024093713904],[-120.98470702780685,49.12047685026738],[-120.98444986714527,49.120762374729196],[-120.98421660186452,49.121064807108354],[-120.98396205833401,49.12131012202954],[-120.98345478769232,49.12170438089212],[-120.98270636263612,49.12198134688751],[-120.98188783977538,49.12219270152566],[-120.98131411801182,49.122392085057164],[-120.98076606831387,49.12257601475818],[-120.98029335399148,49.12274514179945],[-120.97977107404193,49.122880924526164],[-120.97913077562897,49.122950274010016],[-120.97848698945306,49.12305189098287],[-120.97789277131747,49.12320263155291],[-120.97724362572993,49.12343315025477],[-120.97667159782492,49.12361650772492],[-120.97609595816317,49.1238967164622],[-120.97574298616112,49.12411597780898],[-120.97548569822757,49.12441782930019],[-120.97529761095194,49.12479342527367],[-120.97519110725064,49.125017153729324],[-120.9750811131727,49.12527316206668],[-120.97491420373031,49.125785955042616],[-120.97481561577646,49.126380636799844],[-120.9747773568413,49.12671867530266],[-120.97481094338788,49.12710604465537],[-120.97494568148487,49.127398594779535],[-120.97513001629058,49.127724201378165],[-120.97530911436395,49.128114141869396],[-120.97544198808198,49.128503328051835],[-120.9753816278065,49.12876024869007],[-120.97532304979843,49.12898480950785],[-120.97550924172673,49.129229849228494],[-120.97589765438777,49.12934953574801],[-120.97641293364147,49.129358672928134],[-120.977119747731,49.129500008075404],[-120.97750639496377,49.12966783266209],[-120.97802418633367,49.13024111690889],[-120.97818286378231,49.130566364543895],[-120.97846128545069,49.13095811328435],[-120.97912820042662,49.13145319463952],[-120.9796806817846,49.131769195864514],[-120.98043796799381,49.132491834043954],[-120.98167775776282,49.133527753944016],[-120.98291060213384,49.13448549608935],[-120.9834303289723,49.13499425666632],[-120.98363696279439,49.13535246674964],[-120.98381425786047,49.135855383441196],[-120.98398987998134,49.136357941438995],[-120.9841494468331,49.1372635958345],[-120.98427356306587,49.13784609477102],[-120.98432411280173,49.13839498261265],[-120.98433023913476,49.138878635950576],[-120.9844286968819,49.1394605041112],[-120.98441621133856,49.13978281867698],[-120.98460068041662,49.140092331531065],[-120.98498214753917,49.140356881106854],[-120.98546646440698,49.140542762187806],[-120.98638550528005,49.14089725072555],[-120.98698021837947,49.14114129095053],[-120.98757156058589,49.141353017046704],[-120.98793085618095,49.14156887266174],[-120.98811539222243,49.141846227122215],[-120.98827420976582,49.142171175718495],[-120.98843825858825,49.14239991718939],[-120.9887647501085,49.142824611382565],[-120.988966136704,49.14331171272065],[-120.98907172757372,49.14373259512484],[-120.98905754847891,49.14407089974804],[-120.98904335075622,49.144425284380446],[-120.98895022811185,49.14489104755678],[-120.98893243059587,49.14535834552484],[-120.98908772072937,49.145747982384364],[-120.98937340179555,49.14599451855037],[-120.98968654907192,49.14616139650154],[-120.99002547985049,49.14628012212271],[-120.99064127141311,49.14683870619043],[-120.99111862011574,49.14718552785106],[-120.99162521940607,49.14743615019736],[-120.99210261436568,49.14775082492616],[-120.99260389536583,49.14814641857721],[-120.99305555492208,49.14850896222148],[-120.99336525292914,49.14873996318778],[-120.99389939978514,49.1489103505876],[-120.994705967681,49.14900486604337],[-120.99539094176949,49.149081315900254],[-120.9964441384494,49.14916417924004],[-120.99751191877284,49.149223174411894],[-120.9984184099691,49.149569063299055],[-120.99933418169046,49.15000420754212],[-120.99995716340669,49.15040175856317],[-121.00000015154588,49.150432806018884],[-121.00077002487379,49.1509962212188],[-121.00123010417852,49.151536490985336],[-121.00282880679944,49.152913639381424],[-121.00283559303246,49.152930315150535],[-121.00322820340408,49.15326863131667],[-121.00355187081193,49.15370554036257],[-121.00374564900186,49.154105667772754],[-121.00383467262772,49.154538439087716],[-121.00376240966203,49.15500291520283],[-121.00343021262134,49.155411041013295],[-121.0028105016568,49.1557798511585],[-121.00214592431477,49.15597540765718],[-121.00157420779888,49.15610534202125],[-121.00124217680653,49.156176761318235],[-121.00102621347986,49.15623806382942],[-121.00083040812883,49.15630340736227],[-121.00063460222789,49.15636875053259],[-121.00043720898995,49.15643289157367],[-121.00024011769412,49.15649422183515],[-121.00003835541594,49.15655111137085],[-120.99999951954509,49.156561153835675],[-120.99983375156243,49.156602508215784],[-120.99962777215367,49.15665073650124],[-120.99941864874214,49.156696282479665],[-120.99920982650472,49.156739026620116],[-120.9989978003939,49.15677964512532],[-120.99878601655388,49.15681800949842],[-120.99857438220918,49.156854981718645],[-120.9983613125637,49.156889342032656],[-120.99814567337879,49.156915686495466],[-120.99792713215986,49.1569371038424],[-120.99770859073973,49.15695852074521],[-120.9974930108156,49.156984307205455],[-120.99728161643507,49.15701903214635],[-120.99707724923712,49.15706817898887],[-120.99687981814925,49.15713259178754],[-120.99668995743001,49.15720638041168],[-120.99650482530285,49.15728406148731],[-120.9963322363455,49.15737274857042],[-120.99617700867735,49.15747550846557],[-120.99603316007257,49.15758414887896],[-120.99590389300066,49.1577008041489],[-120.99579433135132,49.157825703757915],[-120.99571466007177,49.15795989026584],[-120.99569402914172,49.15810360138991],[-120.9958132750525,49.15822335750509],[-120.99594148250634,49.158339587036494],[-120.99607152012493,49.15845476452165],[-120.99620500271332,49.15856983139184],[-120.99633848692919,49.158684889097394],[-120.99647026317459,49.15879987613583],[-120.9966020100893,49.15891514133817],[-120.99673193005916,49.15903144028462],[-120.99685828348731,49.15914898983033],[-120.99697927273549,49.15926854557114],[-120.99707871238721,49.15939697064716],[-120.9971674838327,49.159528842683095],[-120.99726332736235,49.159658796668566],[-120.99736618500161,49.159787371318444],[-120.99747077992592,49.1599157559227],[-120.99757363773954,49.16004433930266],[-120.99767122212488,49.1601740849409],[-120.99775831898756,49.16030559854657],[-120.99783142286984,49.160439556302556],[-120.99788873310422,49.16057674077006],[-120.9979337888042,49.16071616155045],[-120.99797177110698,49.16085751823405],[-120.99800100314792,49.16100044406763],[-120.99802496223744,49.16114452328051],[-120.99804199858684,49.16128913770855],[-120.99805558954161,49.16143387157707],[-120.99806573506966,49.161578724887256],[-120.9980742338044,49.16172293306181],[-120.99808108476326,49.16186650508029],[-120.99808278243722,49.162010117108615],[-120.99807758804707,49.162153977035814],[-120.99807062587941,49.16229831418538],[-120.99805853930206,49.16244242197771],[-120.99804477578746,49.16258616297889],[-120.9980275665912,49.16273002342081],[-120.99800867944909,49.162873526048806],[-120.99798814528941,49.163016383539315],[-120.99795226957961,49.163158256704676],[-120.99789095894945,49.16329724127287],[-120.99781293126044,49.1634320733105],[-120.99772480693453,49.16356502792802],[-120.99761850119104,49.16369148784594],[-120.99748931203138,49.163807299916236],[-120.99734990509143,49.16392235679404],[-120.99720073389702,49.16403244737379],[-120.99704078597313,49.16413103639786],[-120.99686737105988,49.16421123080656],[-120.99666351639803,49.16425532125008],[-120.99643999731126,49.164274817931215],[-120.99621824684475,49.16429382794664],[-120.99599892960515,49.164306182868515],[-120.99578218147497,49.164326552736924],[-120.99557176567421,49.16436780018116],[-120.99537152047662,49.16442616045397],[-120.9951771387031,49.1644938170646],[-120.99497527554983,49.164551253102815],[-120.9947691039927,49.164600881178636],[-120.99456146700726,49.164648175690715],[-120.99435391959727,49.164694634772225],[-120.9941462808036,49.16474193745598],[-120.99394010848484,49.16479155495204],[-120.99373692757412,49.16484526375955],[-120.99354745335576,49.16491512224633],[-120.9933699177979,49.165001607654496],[-120.99318014039106,49.16507426685486],[-120.99298257893969,49.165139515722956],[-120.99277927439996,49.16519434504136],[-120.99256957806583,49.16522885249422],[-120.99235007344396,49.16524288797659],[-120.99212803102257,49.16524862022229],[-120.99190879920664,49.1652601227957],[-120.99169607924917,49.165290824106854],[-120.99148879819812,49.16533475459316],[-120.99128274145832,49.16538324461441],[-120.99107796804323,49.16543574647314],[-120.99087459895473,49.16549113783294],[-120.99067275618397,49.16554828737983],[-120.99047082187974,49.165606280544715],[-120.99026888804059,49.16566426434731],[-120.99006701278047,49.16572170006349],[-120.98987258785293,49.16578962530845],[-120.98969381853465,49.16587153561413],[-120.98951474635975,49.16595624697469],[-120.98934055413709,49.16604345040291],[-120.98916776693234,49.16613353447294],[-120.989003064316,49.166228227159905],[-120.98884638622204,49.16632808517905],[-120.9886977026158,49.16643338690291],[-120.98855374780658,49.16654258149293],[-120.9884129969763,49.16665389240393],[-120.98827556930746,49.16676621526718],[-120.98814622723049,49.16688313792316],[-120.98804989332369,49.16701230997497],[-120.9879769247076,49.16714765123644],[-120.98791222317506,49.16728591340728],[-120.98785764695225,49.167425784399484],[-120.98781838302367,49.1675669194022],[-120.98779095258622,49.16770974285211],[-120.98777370978436,49.1678536005246],[-120.98776674483366,49.167997657406616],[-120.98776667188741,49.16814147596706],[-120.98776830790653,49.168285365113974],[-120.98777165096872,49.16842934280486],[-120.98777673306911,49.16857311274331],[-120.98778352321352,49.16871696224662],[-120.9877902823897,49.16886109903518],[-120.98779707261804,49.16900494847409],[-120.9878038628884,49.169148797880936],[-120.98780891415652,49.1692928549766],[-120.9878122884273,49.169436545126906],[-120.987813923664,49.169580442966385],[-120.98781385183021,49.16972425219944],[-120.98781033287533,49.16986818952538],[-120.98779998165783,49.17001180843431],[-120.98778618420349,49.17015554645587],[-120.98776726245174,49.17029904565375],[-120.98774663250737,49.17044246521955],[-120.98772261728526,49.17058543823854],[-120.98769518477374,49.17072826100367],[-120.9876643359107,49.170870924533894],[-120.98763007066505,49.17101342882636],[-120.98758735580097,49.17115469108769],[-120.98753789935172,49.171294790908966],[-120.98748002319293,49.171433370342875],[-120.98741702233876,49.17157171090979],[-120.98734727875969,49.17170889798551],[-120.98727088447829,49.17184407858836],[-120.98718789954005,49.1719766960311],[-120.98709316944709,49.17210678981546],[-120.98698007286129,49.172232084138024],[-120.98685077339606,49.17234843860702],[-120.986700599249,49.17245142131842],[-120.98652949127819,49.17254157988604],[-120.98634394863417,49.17262232133176],[-120.98615718192238,49.17269849352557],[-120.98597059589585,49.17277298638884],[-120.98578071414255,49.17284619734006],[-120.98559089287498,49.17291884229724],[-120.98540116118885,49.17299065190297],[-120.98521145994584,49.17306217385187],[-120.98502004994937,49.17313361581897],[-120.98482863936489,49.173205057438146],[-120.98463890533444,49.17327686567013],[-120.98444908052596,49.1733495085677],[-120.98426093226885,49.17342251808913],[-120.98407263308903,49.17349691895243],[-120.98388894186141,49.173576335050434],[-120.98371935013806,49.173668256628375],[-120.98356248432064,49.17376950648057],[-120.98343314099166,49.1738861438882],[-120.98335358793821,49.174018638957605],[-120.9832905412375,49.174157254899015],[-120.98323588290977,49.17429767874812],[-120.9831880571114,49.174438421215],[-120.98316911943094,49.174581918663904],[-120.98317586612963,49.174726045468624],[-120.9831946005578,49.17487045158815],[-120.9832099487027,49.1750144200007],[-120.9832065062879,49.17515751202735],[-120.9831791173577,49.17529977597308],[-120.98314831272673,49.17544187156368],[-120.9831140302768,49.17558437342234],[-120.98307465387477,49.17572634891453],[-120.9830335679951,49.17586825366875],[-120.98298909636488,49.176009711720035],[-120.98293955978187,49.176150374036034],[-120.98288666745528,49.17629031130524],[-120.98283047950869,49.17642896685484],[-120.98276757933273,49.17656618133012],[-120.98269293221256,49.17670088068901],[-120.98260650895112,49.17683333426388],[-120.98251505148197,49.176964704725044],[-120.98242194534221,49.177095438734064],[-120.98233045675705,49.1772270873195],[-120.98224570875585,49.177359907492594],[-120.98217771069943,49.17749660404404],[-120.98213326498968,49.17763778305614],[-120.9821126454674,49.17778091261978],[-120.98210566149513,49.17792496694585],[-120.98210380251865,49.17806926029673],[-120.98210874588577,49.17821415966986],[-120.9821068869073,49.178358452956985],[-120.98209313051474,49.178501622768025],[-120.98206070232281,49.178642802666836],[-120.9820128995522,49.17878325636495],[-120.98195487631044,49.17892295355188],[-120.98188846219347,49.179060851591295],[-120.9818103315811,49.17919594711196],[-120.9817240224767,49.17932727716467],[-120.98161937470812,49.17945352857592],[-120.98150471956357,49.17957704809729],[-120.98139009389647,49.17970028914099],[-120.98130214560082,49.17979911107812],[-120.98100039960984,49.18008084117265],[-120.98078814453302,49.18039240917764],[-120.98046077033861,49.18083170567831],[-120.98034023385512,49.18097779767745],[-120.97969231637678,49.18163421676278],[-120.97914014599883,49.18197672549869],[-120.97882219518866,49.18213812921255],[-120.9780454693285,49.182476929055255],[-120.97698338434085,49.182866126916046],[-120.97609409781552,49.183165810274964],[-120.97545874703526,49.18345141184049],[-120.97528014614083,49.183689527190445],[-120.97484662388739,49.18588602121798],[-120.97481529391482,49.18608025516645],[-120.9748070169801,49.18612498713888],[-120.97492319026334,49.186289175944076],[-120.97496364359768,49.18634379975484],[-120.97510754524917,49.18655326474476],[-120.97525784182565,49.18679885212249],[-120.97530790400972,49.18690749811345],[-120.97533710438587,49.18697089961281],[-120.97540917470982,49.187098340895695],[-120.97562377072097,49.18747974055849],[-120.97563996202673,49.18752054371175],[-120.97643630607209,49.18785832258207],[-120.97665065771506,49.18798818218831],[-120.97707477331295,49.18827445891267],[-120.97722080247642,49.18838504761492],[-120.97752664133984,49.18863760204511],[-120.97769866402912,49.18879367321182],[-120.97797119994792,49.18906836765925],[-120.97812929164535,49.18924211471402],[-120.97815380888801,49.189269481611475],[-120.97832539834091,49.189461345989436],[-120.97846979149575,49.189634741792034],[-120.97863428462395,49.18984460126543],[-120.97867275465552,49.18988587479043],[-120.9787450843273,49.1899634151034],[-120.97885243692417,49.19008234766165],[-120.97899803882527,49.19022872797358],[-120.97909067253828,49.19032497383006],[-120.97925466585056,49.190507746772155],[-120.97947331097183,49.19074099354712],[-120.97964636795456,49.190919387955255],[-120.97993147424708,49.191252746746116],[-120.98007100474157,49.19143944792368],[-120.98020461179841,49.191617408377425],[-120.98037575215623,49.19184534137025],[-120.98041083778713,49.19188617639919],[-120.98044808771664,49.19192288030835],[-120.9807272774361,49.19194577466568],[-120.98137576280125,49.191984195240416],[-120.98167625891989,49.192016535837205],[-120.98301336127027,49.192278248080505],[-120.98331148571357,49.19236433493389],[-120.98451729893218,49.19283985549455],[-120.98473195858597,49.192951374472926],[-120.98499124784105,49.19312672073372],[-120.98506154686734,49.19315961195917],[-120.98525339563702,49.193243835344845],[-120.98555206099294,49.19338859341946],[-120.98565939319896,49.19344435188739],[-120.98597990542078,49.19362538139585],[-120.98612765832758,49.19370445341615],[-120.98694671813,49.1942628690579],[-120.98713249496417,49.194419282353],[-120.98758776728053,49.194863463548735],[-120.98774494499942,49.195046173268246],[-120.98811728921464,49.19557446766722],[-120.98821963098112,49.195756039254555],[-120.98836888274279,49.19605991529297],[-120.98844376097107,49.19624133547078],[-120.98859272045924,49.196945612229875],[-120.98861008133547,49.19713478477684],[-120.98864181421017,49.197477185553396],[-120.98865171963782,49.197576335984735],[-120.98863174007694,49.197665919646205],[-120.9885521444824,49.197894007095144],[-120.98874199919902,49.19793330126481],[-120.98960683041527,49.19816418527729],[-120.98994494571052,49.19827805466781],[-120.99075405638419,49.19861151164429],[-120.99103613662847,49.198751247061516],[-120.99171625334859,49.199150040331425],[-120.99178343471277,49.199196027465945],[-120.99182460222255,49.19922839694929],[-120.99185990213978,49.199251470014076],[-120.99238256327057,49.199660969167205],[-120.99258311216437,49.19980819467421],[-120.99282145772975,49.20000313402182],[-120.99296042225521,49.2001161825895],[-120.99307908847892,49.2002263195867],[-120.99342734424792,49.200596685649074],[-120.99348450044192,49.20065601985564],[-120.99351074194139,49.20068346228507],[-120.99397350729244,49.20077266147599],[-120.99410779111699,49.20080175398904],[-120.99421386705019,49.20082163001217],[-120.99427928535624,49.200836231323564],[-120.9945367688165,49.20088570672715],[-120.99509342196586,49.20101226533027],[-120.99527030212217,49.20106052642327],[-120.99534087875665,49.20107508718025],[-120.99543370524951,49.201090402695726],[-120.99698861272564,49.20151770083731],[-120.99711361473523,49.20156918689073],[-120.99717510158774,49.20158840399581],[-120.99737532591087,49.20165917671722],[-120.99755372364751,49.20172527117764],[-120.99785925649394,49.20180714515295],[-120.99826013022864,49.201912911824294],[-120.99846671076573,49.2019884893441],[-120.99868699602492,49.202064423491294],[-120.99888329140707,49.202139810981954],[-120.99961692318665,49.202345905357035],[-120.99979506865083,49.202398449162985],[-120.99991685221676,49.2024320243657],[-121.00000098564614,49.202448339532594]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":44,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"2","REGION_NUMBER":2,"REGION_NAME":"Lower Mainland","REGION_NUMBER_NAME":"2- Lower Mainland","FEATURE_AREA_SQM":43566876627.4522,"FEATURE_LENGTH_M":1257869.1954,"OBJECTID":8,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-121.00000098564614,49.202448339532594],[-121.00014568560898,49.202476491248454],[-121.00033534342066,49.20253380075804],[-121.00060345069075,49.20262830204319],[-121.00100749787137,49.20272067027828],[-121.00120867010956,49.202782735764934],[-121.00130398333712,49.202806904940935],[-121.00153481777824,49.20286471676341],[-121.00225328792033,49.20308418211366],[-121.00249148086802,49.20316939404701],[-121.00258585860254,49.20320226207662],[-121.00291488323614,49.20325757321046],[-121.00304963328311,49.203282443638244],[-121.00311602465521,49.20328806119983],[-121.0034538512703,49.203325453084865],[-121.00376378516587,49.203366629290336],[-121.00408961770134,49.20340374213232],[-121.00455436353974,49.203474938857134],[-121.00475676299932,49.20350971394525],[-121.00505370764371,49.2035598661685],[-121.00514483297535,49.203575093945965],[-121.00548540530092,49.20363488494033],[-121.00607936509324,49.20376648904696],[-121.00637857213604,49.203843532238466],[-121.00689292905916,49.20399654117625],[-121.00693949315192,49.204010819206815],[-121.00709708027766,49.20406296498349],[-121.0072747577575,49.204119985472005],[-121.00748967814263,49.204182125693414],[-121.00761318225665,49.20421576241304],[-121.00789769312178,49.20430171110753],[-121.00818981686837,49.20439674644119],[-121.00851431817019,49.20451020068443],[-121.00890989797597,49.20466558665036],[-121.00922047599713,49.204796718978436],[-121.00976147576883,49.20505358646164],[-121.01001621122808,49.20519284690138],[-121.01018610313048,49.20529038500115],[-121.01033299874523,49.20537812247219],[-121.01046170497406,49.20544330698201],[-121.01059457531139,49.205517698415576],[-121.01074879274594,49.20560126302753],[-121.01091033106331,49.205680655125576],[-121.01158811637711,49.20611951336692],[-121.01167605104814,49.2061165411791],[-121.0117485410139,49.20611341266933],[-121.01203340145064,49.20610039116808],[-121.01239935954486,49.20608407034468],[-121.01257010035403,49.206077886976225],[-121.0128544788059,49.206069343516944],[-121.01311018768011,49.2060558168236],[-121.01342887410952,49.20604774233772],[-121.01370764151456,49.20604344826503],[-121.01407776112679,49.20603634665678],[-121.01437707146124,49.206032722625444],[-121.01452330678725,49.206030760940074],[-121.01482190214735,49.20601779977688],[-121.01524642220868,49.20601602863827],[-121.01533042542691,49.206017662689064],[-121.01617775604413,49.20601403559426],[-121.01772736813847,49.20615767184248],[-121.01798835479397,49.20620697073865],[-121.01848654059181,49.206319128205315],[-121.01934979377015,49.20659931020535],[-121.02008655175297,49.20695371234838],[-121.02031311056457,49.20708374756445],[-121.02080165988166,49.20739789681413],[-121.021040591117,49.2075727692942],[-121.02160807695581,49.20806398674091],[-121.02182456145451,49.20828800478073],[-121.02197206523998,49.20843440200442],[-121.02204371988987,49.20850313190501],[-121.0222263302391,49.20869062747717],[-121.02235270302229,49.20880981715358],[-121.02252839983572,49.20896569169706],[-121.0227158778187,49.209139876749134],[-121.02299392874222,49.20941467691397],[-121.0230312562011,49.20945108678896],[-121.02305922968225,49.209478600689174],[-121.02320442340613,49.20956651936228],[-121.02327726124004,49.20960823401419],[-121.02348273619363,49.20971078599858],[-121.02364431054654,49.20979015852108],[-121.02390764346548,49.20989791040119],[-121.0243926192414,49.21011770205381],[-121.02454564856394,49.21019667811966],[-121.02468170788289,49.21025767199628],[-121.02509393065353,49.210467041930386],[-121.02530777556268,49.21058774283352],[-121.02550326820835,49.21070335449841],[-121.0257578662077,49.210860612401376],[-121.02597617755207,49.21100378663221],[-121.0261633306186,49.21113311437013],[-121.02629386590814,49.21122965355837],[-121.02690477666484,49.211573116068735],[-121.02731768564709,49.21187245687573],[-121.02738147049486,49.211918550310685],[-121.02815674486232,49.21247598481226],[-121.0283420673325,49.21265456941461],[-121.0284956967385,49.212792215156384],[-121.0286340945267,49.21291167101643],[-121.02885325406858,49.213095200401675],[-121.02922022549791,49.21343865308497],[-121.02934860467369,49.21357146818752],[-121.02941878260641,49.21362207793121],[-121.02967223384377,49.213806340100575],[-121.03007371638316,49.214132488300955],[-121.0301674643734,49.21421971728371],[-121.03035200031485,49.21435765829266],[-121.03043150811231,49.21441743192989],[-121.0305345306452,49.214482251822744],[-121.03059118719513,49.21451475032356],[-121.0311269463611,49.214838636562135],[-121.03130496090856,49.21490917203376],[-121.03152076652098,49.215011893970775],[-121.03157448561288,49.215039744919906],[-121.03174467108933,49.21511922081384],[-121.03202277704591,49.215249908677265],[-121.03217040942161,49.21531536843634],[-121.03225280458248,49.21534821433722],[-121.03245586652298,49.21544161212692],[-121.03269741467696,49.21554467089379],[-121.03348105486167,49.215944834536494],[-121.03364590582922,49.2160420974708],[-121.03370085566429,49.21607452437529],[-121.03387179821118,49.21616304510321],[-121.03464413897159,49.21665290532209],[-121.03487114031655,49.21682775839383],[-121.0351114023887,49.217007165241576],[-121.03524023214877,49.21710390120606],[-121.0354100384484,49.217219155155796],[-121.03587929198952,49.21758703675512],[-121.03605164757153,49.21774272952294],[-121.03615132366683,49.217838959246045],[-121.03619721771332,49.21787575821577],[-121.03628606753664,49.21794470025347],[-121.03636777840615,49.218000067773744],[-121.03650574002852,49.21801150700521],[-121.03682141214007,49.21804832552309],[-121.0371897606191,49.2180906837207],[-121.037462564949,49.21812666144454],[-121.03776869784912,49.21817234891432],[-121.03800469549743,49.2181990138906],[-121.03821450491999,49.21822954236896],[-121.03848683070647,49.21827000671571],[-121.03869616063413,49.218305023476056],[-121.03907384514618,49.21824404430542],[-121.03936243318638,49.21821278541391],[-121.0401233481567,49.21816748075982],[-121.04039876498811,49.21816296921912],[-121.04166053840656,49.21823855425757],[-121.04196202620686,49.21827950437116],[-121.04323263712,49.21856187973013],[-121.04350356265789,49.21864765955713],[-121.04397218913017,49.2188130227995],[-121.04412377891461,49.21887385566418],[-121.04425961818703,49.218921277605176],[-121.0443604186363,49.218958903321074],[-121.04461838998658,49.21905338625878],[-121.04476236096686,49.21910512460067],[-121.0450723550448,49.219227380899156],[-121.04580653918696,49.2195772321996],[-121.04586314787987,49.219578149340315],[-121.04617856633313,49.219601393975694],[-121.04682536566406,49.2196754208017],[-121.04715335860868,49.21972574930434],[-121.04724969007187,49.219740889755705],[-121.04755020328673,49.2197910899693],[-121.04793238089594,49.21986505691387],[-121.04805520444712,49.219889589358175],[-121.04818144716442,49.219914287906306],[-121.04851580406299,49.21996941603337],[-121.04880156587413,49.21988415507216],[-121.04943680887166,49.21972839798514],[-121.04964571750607,49.2196869702233],[-121.0510554826298,49.21953550731023],[-121.05127600775091,49.219530132176196],[-121.0516217508779,49.21952684760736],[-121.05184128749485,49.21953073717543],[-121.05297724416444,49.219626345508054],[-121.05323585069193,49.21966670972048],[-121.05369084829756,49.21975076794255],[-121.0542135000898,49.21984497800969],[-121.05444541252481,49.21989397481313],[-121.05535022449634,49.220143043230564],[-121.0555937619403,49.220228092839406],[-121.05652129178979,49.22063495973802],[-121.05666750990258,49.22071414059594],[-121.05703111327921,49.22088195770328],[-121.0572460467624,49.22099360579696],[-121.05780805181985,49.22133152328466],[-121.05793050780753,49.221391837350204],[-121.05839993816008,49.221647115468336],[-121.05862742941775,49.22178612430209],[-121.05910295644853,49.22211329884795],[-121.05916459954672,49.22216377461087],[-121.05928464553637,49.22197248442985],[-121.05937399566996,49.221843502435604],[-121.05943186620426,49.221768059018174],[-121.05950480921163,49.22164790604131],[-121.05967226016546,49.22139872768475],[-121.05981852106734,49.22120328016017],[-121.05997917130365,49.220985656668034],[-121.06013667668378,49.220781413347225],[-121.06030744223078,49.22058172988942],[-121.06039391850247,49.22047968260367],[-121.0604288156982,49.220426300419504],[-121.06052910006089,49.22027526282816],[-121.06077156617232,49.21995086568709],[-121.06095842565956,49.21972908351857],[-121.06101143795411,49.219666941109665],[-121.06104049328805,49.21963613568441],[-121.06106711512717,49.21959590744895],[-121.06123510251228,49.219373818638076],[-121.06144291056304,49.21911662681697],[-121.06158040518825,49.2189388198126],[-121.06166687560642,49.21883677125135],[-121.06168909102449,49.21880564295622],[-121.06181387517847,49.218650368346005],[-121.06196504674594,49.21847318806091],[-121.06210110385649,49.21830884819826],[-121.06215066249959,49.21824683558697],[-121.06225886722895,49.21811814734481],[-121.06237240167046,49.21797166744237],[-121.06263084554122,49.21767449781555],[-121.06274226620778,49.21756400152716],[-121.06285778426599,49.21743114580295],[-121.06312193468747,49.21716102444915],[-121.0631622622871,49.21712114437723],[-121.06342924592319,49.21682436443184],[-121.06358433348088,49.21664256150596],[-121.06362390574465,49.21659362415012],[-121.06376791769814,49.216402859139784],[-121.06387317059793,49.21626953177471],[-121.06395542707877,49.216158545450845],[-121.06410633602364,49.21596752773746],[-121.06426531449854,49.21578139998284],[-121.06453819723875,49.2154936305732],[-121.06459930122611,49.21543608888878],[-121.06467574682652,49.21534739192008],[-121.06478250411543,49.215232177635684],[-121.06493909050491,49.2150684865066],[-121.06504632405202,49.21494878254967],[-121.06520139902317,49.214766976779714],[-121.06535551678923,49.2145941584489],[-121.06548694609707,49.214456949531794],[-121.0656647048072,49.21423953327038],[-121.06583320567748,49.214044528433924],[-121.06588572655198,49.213986881443816],[-121.06596845163712,49.213871403825095],[-121.06654706758361,49.21322884432097],[-121.06665925289997,49.21312712200404],[-121.06683501357031,49.21289607853927],[-121.06693680059993,49.21276286913853],[-121.06700465893194,49.21267405681715],[-121.06717819854808,49.21244771100791],[-121.06717736516651,49.212407071502334],[-121.06717167754434,49.212218177137004],[-121.0671643871259,49.21206051743236],[-121.06716385839316,49.2118715796235],[-121.06717689298353,49.2115389117582],[-121.06726618808429,49.21097373526353],[-121.06729869601428,49.210861883541064],[-121.06731805325923,49.210776767580555],[-121.06775949942246,49.20980789581313],[-121.06784829487637,49.20968368114587],[-121.06847449491252,49.20899676141976],[-121.06865972250996,49.208838049033396],[-121.06886992744283,49.208670609725445],[-121.06899703568392,49.20857380010629],[-121.06904200253229,49.20853864165199],[-121.0697409099559,49.20810486155043],[-121.07054438003655,49.20775396428952],[-121.07101035442415,49.20760443968814],[-121.07134497064918,49.20751092045606],[-121.07147223291794,49.207477273008095],[-121.07185923698832,49.20737572051466],[-121.07252537198977,49.20723394470763],[-121.07271954428347,49.207201102723175],[-121.07384972431296,49.20708957040482],[-121.07404103545596,49.20708366276845],[-121.07498494445036,49.20710852420472],[-121.07525914394444,49.20713092956331],[-121.07645046036795,49.20731737441542],[-121.07660296553632,49.20735339244399],[-121.0766549203607,49.20736563908477],[-121.07721708916152,49.20752358053865],[-121.07729016783316,49.207547222781116],[-121.07764667349849,49.207652061501456],[-121.07818295080803,49.20782741806924],[-121.07833157698273,49.207883836425985],[-121.07839215335093,49.207911985955846],[-121.07860996470404,49.20799637851283],[-121.07868424875353,49.20802486576301],[-121.07884565982438,49.208090330846275],[-121.07895409009338,49.20813701618279],[-121.07979037598173,49.20836696684551],[-121.07994385322692,49.20841007078138],[-121.08011992697789,49.208466892691774],[-121.08061288615514,49.20864590456788],[-121.08084172054333,49.2087398183119],[-121.0811029639945,49.20885212934392],[-121.08130438697846,49.20894534896978],[-121.08138288083084,49.208982769251165],[-121.08155781278772,49.209066603725375],[-121.08216150669226,49.20940038476045],[-121.0822594326663,49.209465190801716],[-121.08234042536023,49.20951146714947],[-121.08247420986683,49.20959454820613],[-121.08294291175605,49.2099215896879],[-121.08311555942636,49.210059460369116],[-121.08324991182646,49.21016963340862],[-121.0832749777259,49.21019248601588],[-121.08334005066453,49.21024310503095],[-121.08393750121436,49.21076577966276],[-121.08400829971923,49.210843447067],[-121.08409872378049,49.21093046446897],[-121.084390499488,49.211241245203645],[-121.08453535589197,49.211414492968416],[-121.08458995117371,49.21148295708523],[-121.08466857159938,49.21155167890563],[-121.08509693184247,49.211967938472604],[-121.08528085279204,49.21217792067335],[-121.08546600868316,49.212392478985784],[-121.08561152189539,49.21246227728402],[-121.08573785526015,49.21251851452582],[-121.08588726437246,49.21258397904486],[-121.08610416024575,49.21267733480466],[-121.08617674657526,49.21270573865749],[-121.08632742071251,49.212775491703596],[-121.08651826902302,49.21285525208853],[-121.0868576084353,49.21300917585599],[-121.08699673235982,49.21307444901182],[-121.08736425099616,49.21323811071355],[-121.08742658005791,49.21326604562477],[-121.08754902280072,49.213326614125776],[-121.08767852620326,49.21336918026287],[-121.08847609710178,49.21370639596965],[-121.088789996324,49.21387353396849],[-121.08889749960287,49.213929187844656],[-121.0890073792746,49.21396239423133],[-121.0893588015696,49.214067237592225],[-121.08942113294248,49.21409517131548],[-121.08957102748731,49.21415614109751],[-121.08962180541036,49.21417960505523],[-121.0898386867745,49.21427323142476],[-121.09013819400293,49.214381623179634],[-121.09017918838391,49.21440012957787],[-121.09043532715724,49.21451246147597],[-121.09075800904203,49.21466166016135],[-121.09101398982412,49.21479174816236],[-121.09115217486628,49.21486599473686],[-121.09132638578264,49.21494076468254],[-121.09199927571925,49.215271428094866],[-121.09211783591017,49.215336315846265],[-121.09225307850177,49.21540592457418],[-121.09238610817916,49.215480214041364],[-121.09250808831588,49.21554526618753],[-121.09274942032425,49.21568398375363],[-121.09284832310422,49.21573980957759],[-121.0930631587823,49.21586914465496],[-121.09357078163225,49.21621933195648],[-121.09363881930305,49.21627458959966],[-121.09372699090939,49.21633442759141],[-121.09394192824792,49.216495342978355],[-121.09404067450603,49.21656892511859],[-121.0940819285978,49.21660125466529],[-121.0941487616733,49.216651666221594],[-121.09423472051031,49.21671619368654],[-121.0943747525762,49.216821817631065],[-121.09454916976912,49.21695974645823],[-121.09465801929629,49.21705154385779],[-121.09471158970977,49.21709739907425],[-121.09498105332258,49.217295197401626],[-121.09507635447999,49.217368892090015],[-121.09529082662051,49.217534294013525],[-121.09557441869417,49.21777727657606],[-121.0956505658352,49.21783713335878],[-121.09579183989088,49.21794732264155],[-121.09583015102058,49.21797500621675],[-121.09594185304968,49.218039865312434],[-121.09617757327246,49.21818311785667],[-121.09639319041875,49.21832150264696],[-121.09663461732396,49.21849207135969],[-121.0969019727777,49.21864493658516],[-121.09712959391095,49.218783586483006],[-121.09729069355843,49.21888508544077],[-121.09740850829793,49.218940919187524],[-121.09760874176001,49.219029826920924],[-121.09777611000695,49.21910454394474],[-121.09788113547572,49.21915133211903],[-121.09852885543123,49.21939593972103],[-121.09877777555454,49.21947944634584],[-121.09879602277519,49.21948563598769],[-121.09902621245669,49.21958379855349],[-121.0992558994095,49.21968672844283],[-121.09931824427068,49.21971465620687],[-121.09943482775034,49.21976592036609],[-121.10021267385605,49.220080152598705],[-121.1002968356224,49.220113024070386],[-121.10055397869895,49.220216351994374],[-121.10073288189406,49.22029582004843],[-121.10090073292015,49.2203660515753],[-121.10106734942397,49.22043170657546],[-121.10130565442795,49.220534464243215],[-121.10157635651797,49.22065588204047],[-121.1019160907534,49.220823302834276],[-121.10195190636071,49.22084212792907],[-121.10202578060661,49.2208748096786],[-121.1021902154261,49.22094488357842],[-121.10225893023102,49.220977610181265],[-121.10251516385502,49.22108963391634],[-121.1026287786407,49.22113652783525],[-121.10281190079142,49.22122492626252],[-121.10355405098318,49.221552169186054],[-121.1037698910958,49.22167250281738],[-121.10392509203047,49.22176498876608],[-121.10426855183698,49.22194610357532],[-121.10444012417196,49.2220300221328],[-121.10468170954825,49.222150684916755],[-121.10476195471122,49.222188165163494],[-121.10497703826394,49.22229943955127],[-121.10555562035056,49.2226462981325],[-121.1062252777593,49.22310725200183],[-121.10637564796048,49.22321303828354],[-121.10653485833849,49.22333276802926],[-121.1067629551465,49.22351624625806],[-121.10724751759467,49.22374463956335],[-121.1074637159715,49.22382917245133],[-121.10760166452998,49.22388985076764],[-121.10776190536635,49.22395098215069],[-121.10815874649263,49.22411504694123],[-121.10840300954217,49.22422679971032],[-121.10852034838088,49.2242873887043],[-121.10871847275607,49.22438039957658],[-121.1089426006832,49.22448756455906],[-121.10931152379955,49.224655715779555],[-121.10953052358553,49.224762646505624],[-121.10973454552428,49.224864954045515],[-121.1100281973837,49.225013616579965],[-121.11024404100284,49.22513421497141],[-121.11037494278142,49.22521290197153],[-121.11059674255098,49.225342223513806],[-121.11102483278496,49.225601306762094],[-121.11116337265426,49.22568907258671],[-121.11137735895115,49.225827348206515],[-121.11150266045377,49.22591029035638],[-121.1116036389753,49.2259794345182],[-121.11172767478081,49.22605808761682],[-121.11186326981496,49.22614120773973],[-121.1121196639205,49.226284789468885],[-121.11233286233094,49.22641428481372],[-121.11245755562844,49.2264704119427],[-121.1126923151282,49.22659101488716],[-121.11291427948454,49.22670258314083],[-121.11306922416635,49.22678150913953],[-121.11330050649836,49.22690252117267],[-121.11334399586819,49.22693015259978],[-121.11341275670908,49.226962593450395],[-121.11348664874977,49.22699526704619],[-121.113550693017,49.227023542218376],[-121.11361774377009,49.22705590533788],[-121.11387571841377,49.22716826597191],[-121.11440166203583,49.22742865997062],[-121.1149333957087,49.22766676794924],[-121.11519511987542,49.22779253920306],[-121.11529457849286,49.22784356658923],[-121.1153864006873,49.22788551438188],[-121.11550004508511,49.22793239425835],[-121.11568198089846,49.228016202860935],[-121.11573078470099,49.22802603041556],[-121.11577271757133,49.22803582605521],[-121.11704393747756,49.22841627448061],[-121.11727294287495,49.22851010807931],[-121.11755355246353,49.228636160674334],[-121.11773269618425,49.22869757295848],[-121.11793504397143,49.22879977786816],[-121.11819855990072,49.228876002058605],[-121.11869447152309,49.229095549861505],[-121.11881062742286,49.229151281847855],[-121.11889605769005,49.22918869638869],[-121.11911182918008,49.22927770371246],[-121.11914987049921,49.2292918325093],[-121.11919773238851,49.229310628504074],[-121.1192409344433,49.229324711436796],[-121.11943724723695,49.229386330200576],[-121.11966938998737,49.22946676756586],[-121.11988581673309,49.22953323930674],[-121.11999404498235,49.22956633583723],[-121.12010177171655,49.22960420011225],[-121.12021436598017,49.2296284723909],[-121.12051687712035,49.22970984021077],[-121.1206520601666,49.229748108637075],[-121.1207239577348,49.22976715365137],[-121.12088736352042,49.22981487395172],[-121.12100588627953,49.22984814699892],[-121.1212505383123,49.22992407703956],[-121.12147457740309,49.22999991192931],[-121.12153400072258,49.230023181965144],[-121.12164096280773,49.23005199716989],[-121.12191213020577,49.230137291168724],[-121.12201691008705,49.230170518042314],[-121.12213198334143,49.230203922240605],[-121.12254644846364,49.23033207944036],[-121.12279187275702,49.230417053424915],[-121.12298037933348,49.23048761321549],[-121.12325137295716,49.23059094826215],[-121.12342787803236,49.23066124351022],[-121.1236124934672,49.23073613680486],[-121.12379242069149,49.23080658631259],[-121.1239296146091,49.23085847397342],[-121.12415867521935,49.23095201425735],[-121.1244184377384,49.23106413911257],[-121.12466274812415,49.23117612325196],[-121.1249078254205,49.23129717224327],[-121.12508371590262,49.2313897113442],[-121.12552946161962,49.23161287215969],[-121.12595834249387,49.23184935972005],[-121.12606669880559,49.23191403144702],[-121.12623227104152,49.232006669886495],[-121.12663157654794,49.23219755562703],[-121.12669174305212,49.232230157514344],[-121.12675069912879,49.23225792309321],[-121.12685873293022,49.23230932640068],[-121.12698003842628,49.232365281471374],[-121.12711163794823,49.232421413353435],[-121.12721846290664,49.23246797104109],[-121.12733507993265,49.232519482397066],[-121.12746249098787,49.23256641165343],[-121.12776890042821,49.23269275348656],[-121.12783393287603,49.23271177152747],[-121.12828848946859,49.23286765511255],[-121.12855950972953,49.2329709674735],[-121.12877407826713,49.23305538808462],[-121.12901764211843,49.23315830563189],[-121.12931919367914,49.23329824413611],[-121.12942897260535,49.23334944378345],[-121.12966413146407,49.23343422501422],[-121.13030750353633,49.233723531644124],[-121.13035708515129,49.23374239989082],[-121.1307619034028,49.23389743998203],[-121.13095123427782,49.23397675450948],[-121.13100721595436,49.23400015187812],[-121.13110171883457,49.234033175195066],[-121.13163473093257,49.23424418401301],[-121.13190559123919,49.23436553213419],[-121.13207725937,49.23444940514333],[-121.13227544409338,49.23454265863917],[-121.13249796471547,49.23464969572329],[-121.13269101908239,49.234742716543856],[-121.13282933007706,49.23481690745556],[-121.13289560800406,49.23484048021977],[-121.13310113920349,49.23492927342048],[-121.13321779814551,49.23498049987479],[-121.13334519362577,49.23502769138033],[-121.13362856743349,49.23514452977155],[-121.1337965227854,49.23521469953762],[-121.13396320888668,49.23528058956603],[-121.13410122606605,49.23534123293501],[-121.13414098762053,49.23535543358436],[-121.13427106618573,49.235393452811934],[-121.13466767687623,49.23551229015152],[-121.13487604052374,49.23557414271065],[-121.13514232409895,49.23559180633796],[-121.1353078231926,49.23560350190109],[-121.13582259953628,49.23561180630006],[-121.13611162318497,49.235625703789445],[-121.13637103543351,49.23564333378563],[-121.1366591469492,49.23566593052718],[-121.13702993749608,49.23570324694875],[-121.13718903520943,49.235710428526765],[-121.1374228712437,49.23570970634809],[-121.13787414690391,49.2357171013755],[-121.13820266548677,49.23573136832784],[-121.1384964114248,49.23574941489881],[-121.13857782057867,49.2357598547491],[-121.13865456822117,49.2357655734031],[-121.13881195566582,49.23577267539071],[-121.13906372719218,49.23578122117825],[-121.1392287573522,49.23579740027008],[-121.13942218808317,49.23580499991537],[-121.13967177860756,49.235817956646606],[-121.13988485656343,49.23583489504185],[-121.14005769941687,49.23584213310159],[-121.14030511002787,49.23585949176351],[-121.14050320293909,49.23587181053275],[-121.14071816231542,49.23587079805295],[-121.14094857762092,49.23586991390554],[-121.14126429476674,49.23587513184632],[-121.14149376932804,49.235883225645],[-121.142152522953,49.235911804663026],[-121.1424462424087,49.23593011882874],[-121.14273435865799,49.23595269933857],[-121.14299159426419,49.23597472583759],[-121.14327877064261,49.23600628401586],[-121.14383578982478,49.23608721003193],[-121.14407864152948,49.236131707640595],[-121.14433523899203,49.23617625586837],[-121.14457124860316,49.23622044393553],[-121.14485731893716,49.236279003425956],[-121.14508598733372,49.236327649887656],[-121.1452268121966,49.236361628850304],[-121.14532445079529,49.23638124797661],[-121.14614088989549,49.2365291170241],[-121.14638672783265,49.236577965803136],[-121.14651947042006,49.236607068122666],[-121.14689883029367,49.23664473593648],[-121.14722796077959,49.236686066967266],[-121.1474023511876,49.23671139669677],[-121.14750733350586,49.23672655413925],[-121.147609363181,49.23673707677218],[-121.14790731195292,49.23676430801298],[-121.14804146622734,49.23677993073905],[-121.14829649835224,49.23680664442711],[-121.1486020916377,49.236842959769625],[-121.14872595157404,49.236858406741895],[-121.14910548310694,49.23687803142323],[-121.14944024926515,49.23691480986861],[-121.14961339960854,49.236935578385804],[-121.14974628463278,49.23694691073535],[-121.15002287561626,49.236964721372146],[-121.1504682280424,49.23701240194662],[-121.15066666090408,49.23703796047325],[-121.15086553342098,49.23705931637867],[-121.1512881195231,49.237111038818526],[-121.15154690859559,49.2371511662154],[-121.151678415593,49.23717568660052],[-121.15214016688574,49.23721450829765],[-121.15246759526214,49.23725574632766],[-121.15259316933484,49.23727125684955],[-121.1528794216685,49.23731176860304],[-121.15329842448776,49.23738136456108],[-121.15339090615511,49.23740103279874],[-121.15349418116803,49.237416107437475],[-121.15372098713814,49.23743335580279],[-121.15404938684881,49.23746532248789],[-121.15431082941423,49.23749654098727],[-121.15452469295991,49.23752250657887],[-121.15476085564265,49.23754891527261],[-121.15487958703157,49.23756412434099],[-121.15505022965924,49.23757602938442],[-121.15583335236842,49.2376648038636],[-121.15613409950615,49.23771469115267],[-121.15618808363043,49.23772445266153],[-121.15628277702048,49.23773941838659],[-121.15633549025581,49.23774489165218],[-121.15673156497468,49.23778722688822],[-121.15698271798774,49.237818246815245],[-121.1571931618904,49.23784406227254],[-121.15771122955967,49.23791978045788],[-121.15798454775876,49.237968997947995],[-121.15839012284808,49.23805207036469],[-121.15867528440386,49.238119572285896],[-121.15912814570137,49.23824366671014],[-121.1594396693115,49.23833857603872],[-121.1597057918817,49.2384238306961],[-121.16019344011231,49.23859346219427],[-121.16029434799239,49.238631256747794],[-121.16055269316921,49.2387251811022],[-121.16066047326005,49.238763013325375],[-121.16090507474351,49.23885687874926],[-121.1613359332849,49.239043692535816],[-121.16153935901379,49.23913683479694],[-121.16175432244096,49.23923472573771],[-121.16237239507643,49.2395548328266],[-121.16256785306531,49.23967495869922],[-121.16270343460288,49.23972644117504],[-121.16345285044456,49.240089362167716],[-121.16406064118374,49.24035992984728],[-121.16430325123969,49.240489511740996],[-121.16492758520894,49.24088176450976],[-121.16507000094444,49.240983158253776],[-121.16516905780668,49.24108824443844],[-121.16588420441515,49.241549410281294],[-121.16608345106924,49.241732288011235],[-121.16629531911124,49.24194251552372],[-121.16636972485038,49.24202027864244],[-121.16651046523037,49.24212131519719],[-121.16654072237135,49.24214437758856],[-121.16689206476761,49.24225345338602],[-121.16703232465142,49.2423096411099],[-121.16726635442801,49.24238977285371],[-121.1673262554686,49.24240880595846],[-121.16861433741958,49.242915095601916],[-121.16865022609171,49.24293361955397],[-121.16870110440942,49.24295676688299],[-121.16906009517157,49.24312452703618],[-121.16911392823224,49.243152317218005],[-121.16952428684043,49.24338806192917],[-121.16968560005392,49.24348973625178],[-121.16992027369025,49.24364629090233],[-121.16998689100839,49.24368338614408],[-121.17014024922243,49.243762429772616],[-121.17097423060233,49.244288358975425],[-121.17118738617239,49.24445352644444],[-121.17134123549685,49.24457741621832],[-121.17142346250165,49.244646224642416],[-121.17146700399431,49.244673822906385],[-121.17169948196296,49.244835064713754],[-121.17191357768026,49.24499125136108],[-121.17221830083012,49.24523466379764],[-121.17232737010673,49.24532637881827],[-121.17241774703551,49.24539949364776],[-121.17269937499526,49.2455840802819],[-121.17296590219811,49.24568255949433],[-121.17305311670985,49.24572001583247],[-121.1735421128134,49.24584481393151],[-121.17380161788489,49.24591169113353],[-121.1739039538461,49.24593601263582],[-121.17405079781365,49.24597867359236],[-121.17418013329062,49.246007866555146],[-121.17431932752599,49.24604144307906],[-121.17456431088006,49.24609920621117],[-121.17479259147565,49.246152278620116],[-121.17493520800593,49.246186016566746],[-121.17514131495737,49.246220892091884],[-121.1754566624049,49.2462798369793],[-121.17551408291011,49.24628974191654],[-121.17563188011071,49.24631418557168],[-121.17571975254721,49.246328827607186],[-121.17576218175593,49.246334110020825],[-121.17609047230604,49.246384331671585],[-121.17615305653172,49.2463941787365],[-121.17633872948201,49.24641066330344],[-121.17655874310563,49.24642755703789],[-121.17671881780984,49.24642570093948],[-121.17704835813404,49.24643087011398],[-121.17726930616305,49.2464387831222],[-121.17750226155626,49.24644695337801],[-121.17772022445183,49.246450510000095],[-121.1779497575995,49.24645852613756],[-121.17839849907587,49.24647465427184],[-121.17866545598102,49.24646996376746],[-121.17871180387472,49.24647063013915],[-121.17936074659858,49.24646273024516],[-121.17965342914013,49.24645862882936],[-121.18018037083402,49.246466691590726],[-121.18045575675526,49.24648013613003],[-121.1806195939048,49.24649169444533],[-121.18087392024171,49.246509274903225],[-121.18094086139097,49.24651029293277],[-121.18122234361043,49.246514707421596],[-121.18147247087408,49.24652306861498],[-121.18177532443926,49.24653688999326],[-121.1819820588054,49.246549236611955],[-121.18219740808006,49.246561399663285],[-121.18241101640618,49.24657377312125],[-121.18283947904929,49.246603075946496],[-121.18310363746475,49.24662531244048],[-121.18332707698056,49.24664234535339],[-121.18399462622652,49.246720109935275],[-121.18420777033658,49.24673696052146],[-121.18485516645373,49.246810156479306],[-121.18503132660253,49.246835501465185],[-121.1851500627325,49.24685095537049],[-121.18536401549434,49.246876581110214],[-121.18565032669677,49.24691728369451],[-121.18636035064405,49.24704964051862],[-121.18664731839293,49.24711715301234],[-121.18680960779089,49.24716020608197],[-121.18706739918562,49.24722725318027],[-121.18743988789748,49.24733212299318],[-121.18803912988513,49.247521539947634],[-121.18875531895496,49.24779342112439],[-121.18902466733859,49.24791482528584],[-121.18907898379862,49.24793811562555],[-121.18932182753909,49.24804987404278],[-121.19001481605278,49.24842952090358],[-121.1902163244133,49.248558610575955],[-121.19046341573815,49.24872891206861],[-121.19089174186762,49.24904148696119],[-121.19127717339487,49.24935328239257],[-121.19143735055229,49.24949968545575],[-121.19174680486896,49.24986446027086],[-121.19191010455548,49.2500470943339],[-121.19247705465494,49.25068101783117],[-121.1925730987283,49.25084908545067],[-121.19268102997636,49.25103516563031],[-121.19272039989178,49.251103162123016],[-121.19286392242934,49.25129421238997],[-121.19290889165565,49.25135795709938],[-121.1930395978977,49.25153997375488],[-121.19319859776853,49.25178076013014],[-121.19333271479218,49.25191332258171],[-121.19346558760525,49.2520413098633],[-121.19390060920318,49.252538535834894],[-121.19396197365644,49.25259342181659],[-121.19431699908712,49.25290045475979],[-121.19441209432864,49.25297826893452],[-121.19445391605058,49.253006068602964],[-121.19489982509747,49.253332098897324],[-121.19510106923111,49.253497239461545],[-121.19527156957645,49.25364382433369],[-121.19541599662512,49.25377655426569],[-121.19563928185694,49.25397791141144],[-121.19570920683887,49.25403318671502],[-121.19589502448187,49.254197917371734],[-121.19604912166534,49.254303735134755],[-121.19632313763067,49.25454654699596],[-121.19640277820567,49.25462422941843],[-121.1964641474434,49.2546791227837],[-121.19653659680264,49.2547432420422],[-121.19656174249658,49.25476606674312],[-121.19659921357594,49.25480269228436],[-121.19668024982204,49.254866914454],[-121.19696379031237,49.25510083918661],[-121.19712400523272,49.255247232536504],[-121.19736670151359,49.255493714965716],[-121.1974905429536,49.25562609228328],[-121.1975433290723,49.25568087302325],[-121.19762639583872,49.25575871591044],[-121.19803491728864,49.2561473369003],[-121.1935443732081,49.25832895324734],[-121.19320027299709,49.25849655947991],[-121.18913854736616,49.26046879180888],[-121.18910653339859,49.260429304332135],[-121.18903252609502,49.26034706946477],[-121.18864215848386,49.25999925975956],[-121.18858424283985,49.25994424581837],[-121.18839764953836,49.25977043943087],[-121.18825415610131,49.2596287221179],[-121.18809410771566,49.25946427279419],[-121.18801665054306,49.259382171624324],[-121.18776465331021,49.25917584676735],[-121.18759166531767,49.259020119231714],[-121.187557155123,49.25898813323401],[-121.18749112094997,49.2589285252843],[-121.18734343730286,49.25882721297825],[-121.1870494349052,49.258561782397656],[-121.1870026009917,49.258516003320274],[-121.18679196868027,49.25834196783833],[-121.1864460056642,49.258030517922506],[-121.18641616563085,49.25800325042224],[-121.18638806617095,49.2579757809947],[-121.18609659992872,49.25776881613853],[-121.18589614925216,49.257612706523766],[-121.18579763556622,49.257534732499394],[-121.18559811863356,49.257369652050755],[-121.18550819382773,49.25729177264869],[-121.18511868607506,49.25695272590019],[-121.18494820470451,49.25680613470596],[-121.18474962766638,49.256632064321046],[-121.18426236490852,49.25612514283971],[-121.18411792991736,49.25594306174317],[-121.18408435732731,49.25590209527676],[-121.18395025425679,49.25576953111469],[-121.18381742686203,49.255641245508464],[-121.18347925028826,49.25527178372566],[-121.18334841644334,49.25510779143722],[-121.18324101126242,49.25496655025801],[-121.18312390104147,49.254802882186965],[-121.18294465577361,49.25452566000189],[-121.18291248492648,49.25447122425452],[-121.1826462856667,49.254120753042386],[-121.18250858128968,49.253907116594426],[-121.18232287616874,49.2538906428289],[-121.18172858552606,49.25381841256403],[-121.18159906828913,49.25380726393953],[-121.1814712625825,49.25379619167528],[-121.18135671090828,49.25378994265302],[-121.18112760765234,49.253777444243745],[-121.18090242313819,49.25376033043654],[-121.18083033713904,49.253759082816565],[-121.18054364769877,49.253754716117705],[-121.18027976098466,49.25374601894186],[-121.1799922938848,49.25373259503771],[-121.17981470975917,49.25372071089552],[-121.17956672328845,49.25370792391805],[-121.1789297174544,49.25371580414698],[-121.17866443130625,49.25372056283461],[-121.17837509592981,49.25372510198721],[-121.17788244800234,49.253717152228056],[-121.17733797069289,49.2536950455252],[-121.17712339579494,49.25369165031889],[-121.17690241327375,49.253683737098896],[-121.17666942167395,49.2536755656378],[-121.1765887496783,49.25367421057944],[-121.17645266921663,49.25367657311476],[-121.17571717042895,49.253656057547815],[-121.17534654403275,49.25363214209492],[-121.17504458165912,49.25360931468392],[-121.17499524119985,49.253604291259784],[-121.17444796909516,49.25355949221371],[-121.17377395916505,49.253476873262606],[-121.1735219337078,49.253436837359935],[-121.17326474538177,49.253396849282154],[-121.17301272173307,49.25335680320666],[-121.17264409903335,49.25329716357206],[-121.17237288305219,49.253243293091224],[-121.17219935303807,49.25320901623116],[-121.17199443210852,49.25317898004743],[-121.17135649895498,49.25304721825694],[-121.17111319435077,49.252989525131305],[-121.17088317292419,49.252936368805706],[-121.1707439605023,49.25290278820072],[-121.17049897593692,49.25284472965972],[-121.17026892692947,49.25279185036665],[-121.16993357355878,49.252710011678815],[-121.16967111007611,49.25263820454121],[-121.16947540806866,49.25258573520464],[-121.16888615441648,49.25243245953522],[-121.16872386227922,49.25238938883897],[-121.16845325543265,49.252313262257495],[-121.16803675607119,49.252185208978865],[-121.16779284627336,49.25210040849039],[-121.16752632315487,49.25200163012844],[-121.16737278140064,49.251940618749195],[-121.16721018517187,49.25188400032638],[-121.1668431326987,49.25174350005802],[-121.16657288389409,49.25163102036712],[-121.16629838054781,49.251509887300536],[-121.16604279060465,49.251388762825414],[-121.16577485770533,49.2512541116377],[-121.16553221538588,49.25112426579235],[-121.16523368755995,49.25095328375179],[-121.16514787425501,49.2509023527217],[-121.16510433161409,49.250874743189655],[-121.1646435590684,49.250561452015],[-121.16460172836706,49.250533919048955],[-121.16412519644896,49.25020694568977],[-121.16394575224189,49.250064703791516],[-121.16375181516652,49.2499130696282],[-121.16356348067488,49.249757184903814],[-121.16353023682157,49.24972975713708],[-121.16345770856319,49.24968336294779],[-121.16312332396667,49.249444242625756],[-121.16291017417252,49.24927906047923],[-121.16282748313,49.249214735610444],[-121.16265539994805,49.249117358942186],[-121.16242649664025,49.24898784185927],[-121.16217685945735,49.248826369576186],[-121.16173528338835,49.248675458389414],[-121.16156458876158,49.2486142358307],[-121.16113361953782,49.24847704129933],[-121.1608752479825,49.24838284137139],[-121.16027109933745,49.24812594928293],[-121.16004204489616,49.24801445304339],[-121.15995017069618,49.24797227517376],[-121.15969381399087,49.247842357401204],[-121.15961737134649,49.24780058366082],[-121.15938754640794,49.24768003000508],[-121.15896613244321,49.24743500043828],[-121.1587374118335,49.247287440110526],[-121.15862008446985,49.24720915112796],[-121.15843241742475,49.24708006056585],[-121.15831260646894,49.24699263835223],[-121.15825159613291,49.24695127719137],[-121.15765969732564,49.24652802570105],[-121.15748591862061,49.24638123504627],[-121.15716345318678,49.24606142786862],[-121.15713319815106,49.2460383629852],[-121.15697033182646,49.24596817408378],[-121.15674129595504,49.24585667047492],[-121.15659261801176,49.245782328346515],[-121.15592097995818,49.24549728660301],[-121.15566467727459,49.24536708042111],[-121.15511911351108,49.245043722015396],[-121.1550780953029,49.24502496281735],[-121.15495233232586,49.24497815297854],[-121.15476576302629,49.24492098581441],[-121.15469070936648,49.24491535564079],[-121.15429457477072,49.24487302235024],[-121.1539808088936,49.244832127610735],[-121.15364913106602,49.244781684675324],[-121.15348030951812,49.24475210668586],[-121.15321617596766,49.24472979762569],[-121.15294610794656,49.244698479301995],[-121.15266182402661,49.24467159076126],[-121.15246167640565,49.2446456718919],[-121.15227863982452,49.24462052244894],[-121.15219332046402,49.24461442865716],[-121.15197845754946,49.24459771616077],[-121.15135300598438,49.24452897817203],[-121.15110571306273,49.244493600935826],[-121.15084296169344,49.24445809579149],[-121.15042392781547,49.24438821269399],[-121.1503296923652,49.24436875244163],[-121.14986787144652,49.244329923418036],[-121.14959438587888,49.24429844265183],[-121.14907452103958,49.24422287857094],[-121.14893615121755,49.24419804714352],[-121.14885127369806,49.244187739524875],[-121.14862021378997,49.24416154927673],[-121.14852675105053,49.244151143542915],[-121.14844998833391,49.24414543198349],[-121.14839897982017,49.24414003196019],[-121.14812626778303,49.2441176035663],[-121.14789473879081,49.24409590129127],[-121.14759036864217,49.24406387257513],[-121.14751015494645,49.24405828458886],[-121.14696644400489,49.24401349967752],[-121.14671134298789,49.24398707046731],[-121.14640573424604,49.243950462833915],[-121.14619821981722,49.243929279231075],[-121.14593627552134,49.24390253988034],[-121.14587668320259,49.24389703161107],[-121.14557573783493,49.24386515136608],[-121.14523844274353,49.243819228099305],[-121.14501470098105,49.24378884896408],[-121.14491734853642,49.24378276644722],[-121.14438534922245,49.24372468418916],[-121.14409906477003,49.24368415029667],[-121.1437931296569,49.24363427692359],[-121.14346583310241,49.24357498678117],[-121.14321996213664,49.24352612288675],[-121.14306879160843,49.24349224459772],[-121.14231950372005,49.243358672149476],[-121.1422063942331,49.243338912955636],[-121.14190656646478,49.24328000825969],[-121.14161405488807,49.24321691283598],[-121.1414415250347,49.24317361597688],[-121.14138756684534,49.24316356882197],[-121.14122047000103,49.24313404873505],[-121.14087646988324,49.24311937503515],[-121.14079065414597,49.24311804904753],[-121.14057737223084,49.24311913882616],[-121.14034692094906,49.24312002217108],[-121.14007233643989,49.24311553139825],[-121.13979648241539,49.243106751598475],[-121.13952112831656,49.24309320324615],[-121.1392737086403,49.24307556462818],[-121.13910989386235,49.24306394349021],[-121.13895932566834,49.243057150780224],[-121.13875604032798,49.24304487607685],[-121.13856476128329,49.24303286302354],[-121.13836147615352,49.243020587576396],[-121.13809125598031,49.24300726717555],[-121.13792277859879,49.24299093210585],[-121.13772415599927,49.24298337657209],[-121.13746473236775,49.24296546269788],[-121.13734850235925,49.24295908965718],[-121.13724894066883,49.242957699815754],[-121.13702710348998,49.242958405465714],[-121.13673877390941,49.24295384513194],[-121.13646292147598,49.242945056809035],[-121.13621674378426,49.24293197789531],[-121.13616181587737,49.24293118544232],[-121.13588646388038,49.2429176278126],[-121.13518503951512,49.24285240994596],[-121.13473369494419,49.24284500375176],[-121.13443087952484,49.2428310502954],[-121.13420355400126,49.242818529350735],[-121.13388796419316,49.24279525563073],[-121.13384380279132,49.242790157802865],[-121.13356718332344,49.242772305852085],[-121.13327731729964,49.242749632795814],[-121.13295921978988,49.242717501194925],[-121.13268575518872,49.24268597750428],[-121.13216596515326,49.24261005344361],[-121.13189435704989,49.242560857188984],[-121.13162667302961,49.242507038068055],[-121.13131406072088,49.24243906316701],[-121.13124682988278,49.242424468636735],[-121.1309479657927,49.242356545500485],[-121.1304492975094,49.24222687870081],[-121.13016429774044,49.2421415457738],[-121.12995983359609,49.24207507158968],[-121.12985502022926,49.24204186200937],[-121.12958577679481,49.241970203604225],[-121.12932732994584,49.24189396242824],[-121.12879436075069,49.24171452559235],[-121.12854980914467,49.24162058779791],[-121.12832758927144,49.24152681109738],[-121.12811171301713,49.2414381111855],[-121.12792362594016,49.24136307207344],[-121.127744596016,49.241283642686206],[-121.12762795652777,49.24123213245774],[-121.12750223150074,49.24118529036555],[-121.12721715459008,49.24106808123199],[-121.12706243268948,49.24100273200008],[-121.12688246194482,49.240932280056604],[-121.12646030732097,49.240745446841714],[-121.1261920787343,49.24061518470563],[-121.12604641634663,49.24054544415771],[-121.12592603446721,49.24048050981812],[-121.1257671285249,49.24040593858306],[-121.12570179017375,49.24037338272617],[-121.12560011045034,49.240326777958686],[-121.12537008599953,49.24024194263144],[-121.12511274758143,49.24013895536191],[-121.12500248535005,49.2400922413059],[-121.12495632181293,49.24007351662837],[-121.1248917805812,49.24004973824289],[-121.12448689808772,49.239894964900124],[-121.12424330989084,49.23979202919818],[-121.12397214343538,49.23965711705117],[-121.12384300466015,49.239610115725725],[-121.12314360621164,49.23929738088183],[-121.12294353071762,49.23922206909594],[-121.1228973688756,49.23920334351288],[-121.12285760746518,49.23918913880326],[-121.1224906406999,49.23906624194845],[-121.1222341107445,49.23897202564152],[-121.1218613978032,49.23882208095729],[-121.12174474173922,49.23877084252375],[-121.12161905953849,49.238723706077884],[-121.12133398235589,49.23860676829037],[-121.12113019747424,49.23851775230007],[-121.12091263815279,49.23842896010822],[-121.12064007207748,49.23830750765836],[-121.12043673203995,49.23821428819373],[-121.12022014967205,49.238116237321215],[-121.11981489220113,49.23791631903748],[-121.11976967791475,49.237888613184],[-121.11923503284567,49.23762785298981],[-121.11875154170303,49.23735474720569],[-121.11860905858398,49.23727132709892],[-121.11834305546186,49.23713663283425],[-121.11826448426126,49.2370992410621],[-121.1181500189397,49.23704359566061],[-121.11794872317468,49.236963707388],[-121.11777049170175,49.23689332632094],[-121.11758757194981,49.236818501260494],[-121.11753799318481,49.236799618255176],[-121.11749478469339,49.23678553480037],[-121.11718509731068,49.23669030336247],[-121.1170601603467,49.2366525052089],[-121.11689844516442,49.23660485714881],[-121.11652245886508,49.23648631959811],[-121.11638991595044,49.236439145053446],[-121.11628981366034,49.23641036576091],[-121.11616738421294,49.236381413221],[-121.1158648372393,49.23630003402916],[-121.11559270014315,49.23622369553136],[-121.11527269657618,49.23612855881842],[-121.11504052814381,49.236048112806216],[-121.11482407797503,49.235981632002726],[-121.11471583846105,49.23594853060827],[-121.11452808700554,49.23588701341861],[-121.11434331470697,49.235829853174785],[-121.11394988312907,49.23569755046823],[-121.113693389107,49.23560331337656],[-121.11338947488548,49.23548605721828],[-121.11316433740302,49.23538788213633],[-121.11291392497124,49.235284897077555],[-121.11280713815623,49.23523803810301],[-121.11255080165917,49.23512604122491],[-121.11232788088229,49.23502317417429],[-121.11202084359729,49.23491930474909],[-121.11170293165351,49.23478816416549],[-121.1114045882777,49.234715984011075],[-121.11113420778415,49.23463943336923],[-121.11043034383582,49.23440308941117],[-121.11039448498678,49.23438454586422],[-121.11035473152592,49.23437033644393],[-121.11019052732992,49.234313822358],[-121.10966746088808,49.23410710631652],[-121.10943765020174,49.234004479198525],[-121.10937528007621,49.23397655789019],[-121.10918867393234,49.23388801698975],[-121.10898835425529,49.233799132761526],[-121.1086654808734,49.23364999296415],[-121.10853826939933,49.23358500620444],[-121.10813636858775,49.23340295508253],[-121.10791125230621,49.23330476872959],[-121.10748226592754,49.23308624535673],[-121.10730108832318,49.23301148011812],[-121.10695392955826,49.23284825801251],[-121.10675751348333,49.23275503547528],[-121.10649796849424,49.23262483298191],[-121.10629952407645,49.232518273210864],[-121.10613351601708,49.232430093682716],[-121.1059704852912,49.232346280398524],[-121.10592775728213,49.23232771177074],[-121.10582830030155,49.23227666711812],[-121.1057364771116,49.23223472044914],[-121.10492266795463,49.231803033053055],[-121.10478757302509,49.231715128174436],[-121.10469324923677,49.23166432460937],[-121.10427866674296,49.23142359765389],[-121.10411627177365,49.23131754389921],[-121.10392739858231,49.231201823761545],[-121.10369722326861,49.231054056476275],[-121.1035451242356,49.23094818098815],[-121.1034615991121,49.230892796697795],[-121.10311062819629,49.23068455701943],[-121.10297798248222,49.23060607141884],[-121.10289990875249,49.23056417866524],[-121.1028525271741,49.23054087707403],[-121.10280638206044,49.23052214265033],[-121.10248250082019,49.23035038095553],[-121.10220857765039,49.23024263605787],[-121.10214498152567,49.23021013423381],[-121.10198149070149,49.230130813041534],[-121.10191694660027,49.230107289922515],[-121.10170243955781,49.2300228245073],[-121.10156448049256,49.22996213921272],[-121.10140251662187,49.229900921393956],[-121.10100564993095,49.22973683319133],[-121.10076308614865,49.22962514240617],[-121.10053179257216,49.22950439131921],[-121.10032539907192,49.22942451419597],[-121.09954890554869,49.22904720192166],[-121.09929300944096,49.22889910150118],[-121.09883192067153,49.22859477625501],[-121.09862283346911,49.22844287641795],[-121.09843635796389,49.228304699062804],[-121.0981482865476,49.228070838395986],[-121.09809299065626,49.22802489883192],[-121.09782718854272,49.22784053495595],[-121.09773664661382,49.22780287011714],[-121.09721174227876,49.22753340721015],[-121.09713709963115,49.2274916658003],[-121.09708503816385,49.22746391692429],[-121.09670103087689,49.2272597967805],[-121.09650323509544,49.22718002304317],[-121.09631668079003,49.227091458968204],[-121.09615052178488,49.22702130787634],[-121.09594167555633,49.22693228748509],[-121.09586187458085,49.226890589873676],[-121.09562471547753,49.226760537422976],[-121.09520307295985,49.22658739342761],[-121.09514759206928,49.22655949678372],[-121.09502539054094,49.22651248426787],[-121.09484647316906,49.22643300749845],[-121.0946786093756,49.22636276719817],[-121.09455517334524,49.22631118682426],[-121.09435345944694,49.2262360299751],[-121.09404471357878,49.22610044839932],[-121.09368280119271,49.22596386036249],[-121.09345559669613,49.22586976692241],[-121.08243471677596,49.232222280060256],[-121.07416112920697,49.23548441509927],[-121.0732510636299,49.2358798032891],[-121.07234208207205,49.236216310237715],[-121.07070983012869,49.236775162018816],[-121.0687002997137,49.238117157937765],[-121.0681002848731,49.2389259273005],[-121.06752018033873,49.23974125271017],[-121.0669400563906,49.24055656501473],[-121.06634000899416,49.241365043267955],[-121.06576650779105,49.24218234855902],[-121.06529502003255,49.24302631894089],[-121.06499708083915,49.24390332650994],[-121.06489823627692,49.24479959261329],[-121.06503522417556,49.24569313488278],[-121.06537409949004,49.246563775727026],[-121.06582704144542,49.247412859603735],[-121.06644495262029,49.24821451257681],[-121.06722230891847,49.24895607353783],[-121.0680777466793,49.24965890542517],[-121.06896769162562,49.25034470427772],[-121.0698816690598,49.25101495684861],[-121.06991221150379,49.251034966450796],[-121.06993149283764,49.25104768536643],[-121.0699507436253,49.25106069158342],[-121.06997002402548,49.25107341947005],[-121.0699892757895,49.25108641670133],[-121.07000855621091,49.251099144580635],[-121.0700278375978,49.25111186347789],[-121.07004711804036,49.25112459134974],[-121.0700663994484,49.25113731023962],[-121.0700856799121,49.25115003810417],[-121.07010667252659,49.25116283526845],[-121.07012595301195,49.25117556312522],[-121.07014526406348,49.25118800367349],[-121.07016454456985,49.251200731522935],[-121.07018553722904,49.25121352867084],[-121.07020484831234,49.25122596920768],[-121.07022412885081,49.2512386970458],[-121.07024515114381,49.25125121585485],[-121.07026443170379,49.2512639436852],[-121.0702837428292,49.25127638420698],[-121.07030473555544,49.2512891813303],[-121.07032404574733,49.25130163082276],[-121.07034506809572,49.25131414961109],[-121.07036437926362,49.25132659011752],[-121.07038365988761,49.25133931792514],[-121.07040468226916,49.251351836701204],[-121.0704239934687,49.25136427719623],[-121.07044498531855,49.25137708326891],[-121.07046429653937,49.25138952375624],[-121.07048360777057,49.25140196423994],[-121.07050463020742,49.251414482995294],[-121.07052391090636,49.251427210776185],[-121.07054493336554,49.251439729523284],[-121.0705642446392,49.251452169991545],[-121.07058352537014,49.251464897761075],[-121.07060454786244,49.25147741649582],[-121.07062385916777,49.25148985695275],[-121.07064485112952,49.251502662984066],[-121.07066416245615,49.25151510343332],[-121.0706834432406,49.251527831183736],[-121.07070446578832,49.251540349897844],[-121.07072374754908,49.25155306866229],[-121.07074305796306,49.25156551807476],[-121.07076233974483,49.2515782368319],[-121.07078333178474,49.251591042834534],[-121.07080261358814,49.25160376158393],[-121.07082192499911,49.25161620200306],[-121.07084120586877,49.251628929723445],[-121.0708621989081,49.25164172673146],[-121.07088145020278,49.25165473277075],[-121.07090073110479,49.25166746047965],[-121.07092001297208,49.251680179206694],[-121.07093929389524,49.25169290690818],[-121.07095854618747,49.25170590395442],[-121.07097782713187,49.25171863164857],[-121.07099707849082,49.25173163766563],[-121.0710163308153,49.25174463470081],[-121.07103558219582,49.25175764071051],[-121.07105483358714,49.251770646716544],[-121.07107237377936,49.251783574452595],[-121.07109162614643,49.251796571473264],[-121.07111087756961,49.25180957746853],[-121.07113009940828,49.251822861786735],[-121.07114763964118,49.251835789509464],[-121.07116686150123,49.251849073820544],[-121.07118437215932,49.25186227986348],[-121.07120359404085,49.25187556416748],[-121.07122110471937,49.25188877020389],[-121.07124032662237,49.25190205450091],[-121.07125780772678,49.251915538857354],[-121.0712753184358,49.25192874488415],[-121.07129451077653,49.251942307497245],[-121.07131199095714,49.25195580082244],[-121.07132947210259,49.251969285166226],[-121.07134695325823,49.25198276950691],[-121.07136440387536,49.25199654114935],[-121.07138188505137,49.25201002548388],[-121.07139933664376,49.2520237881418],[-121.07141678729187,49.252037559774955],[-121.07143249713636,49.25205153147098],[-121.07144994875937,49.2520652941199],[-121.07146739943808,49.25207906574395],[-121.07148311026646,49.25209302845352],[-121.07150053137222,49.25210707839824],[-121.07151624126544,49.252121050080575],[-121.07153363279869,49.25213537834599],[-121.07154931311851,49.25214962834947],[-121.07156499344791,49.25216387835043],[-121.07158061460139,49.25217868500194],[-121.07159623481023,49.25219350062917],[-121.07161011420996,49.252208516322646],[-121.07162570580032,49.252223601293146],[-121.07163952507901,49.25223918261353],[-121.071653374914,49.25225447662691],[-121.07166716557347,49.25227032729132],[-121.07168095528775,49.25228618693181],[-121.0716930051438,49.25230223766198],[-121.07170676528429,49.25231837562507],[-121.07171878461095,49.25233471365646],[-121.07173080394611,49.252351051686055],[-121.0717427936978,49.2523676680405],[-121.07175475291159,49.25238457169804],[-121.07176503144666,49.25240110979366],[-121.07177696108543,49.25241829177441],[-121.07178721004418,49.25243510819369],[-121.07179742846411,49.252452211916264],[-121.07180764689156,49.25246931563752],[-121.071817835735,49.25248669768384],[-121.07182802458607,49.25250407972872],[-121.07183650220638,49.2525213835181],[-121.07184497983302,49.252538687306384],[-121.07185513911429,49.25255634767379],[-121.07186361675424,49.25257365145969],[-121.07187035356823,49.25259115531734],[-121.07187880067438,49.252608746405805],[-121.07188724874152,49.252626328514985],[-121.07189395598083,49.2526441106962],[-121.07190069186191,49.25266162352837],[-121.07190742870264,49.25267912738147],[-121.07191413595733,49.252696909560015],[-121.07192087185368,49.252714422389516],[-121.07192757911861,49.25273220456638],[-121.07193260473278,49.2527496301632],[-121.07193934064375,49.25276714299013],[-121.0719443662661,49.25278456858562],[-121.07194939189222,49.252801994180345],[-121.07195441752212,49.25281941977442],[-121.07195773095104,49.25283677609386],[-121.07196275658782,49.25285420168666],[-121.07196607097688,49.25287154902667],[-121.0719676435708,49.25288910541879],[-121.07197092837328,49.2529067310842],[-121.07197250097025,49.25292428747527],[-121.07197404493202,49.25294211321402],[-121.07197390627661,49.252959591352315],[-121.07197544928556,49.2529774260683],[-121.07197528199416,49.2529951735537],[-121.07197508415715,49.25301320834325],[-121.07197317506258,49.2530311648804],[-121.07197300681557,49.253048921342604],[-121.07197109771873,49.25306687787882],[-121.0719691886204,49.25308483441439],[-121.07196724992956,49.253103069275774],[-121.07196534082827,49.25312102581033],[-121.07196340117983,49.2531392696489],[-121.07195978081354,49.2531571479303],[-121.07195784211598,49.253175382789536],[-121.07195419215353,49.253193539396094],[-121.07195054218825,49.25321169600196],[-121.07194860253023,49.25322993983778],[-121.07194495255987,49.2532480964425],[-121.07194130258667,49.25326625304655],[-121.07193765261064,49.253284409650014],[-121.07193571294451,49.25330265348357],[-121.07193206296338,49.25332081008587],[-121.07192841297945,49.25333896668747],[-121.07192476299262,49.25335712328848],[-121.0719228233184,49.25337536711977],[-121.07191920291807,49.25339324539354],[-121.07191726419471,49.25341148024545],[-121.07191361419784,49.25342963684415],[-121.07191170506236,49.25344759336882],[-121.07190976633377,49.25346582821921],[-121.07190785719534,49.2534837847429],[-121.07190594805542,49.253501741266035],[-121.07190397877605,49.25352026341915],[-121.0716976595287,49.25470059247331],[-121.07137598694871,49.255574818651354],[-121.07100529853491,49.25644088327928],[-121.07057234829175,49.25729394892148],[-121.07008061524623,49.25813361479471],[-121.0695620491596,49.25896668272533],[-121.0690501901064,49.25980119155249],[-121.06852828230006,49.260632982532904],[-121.06787882311001,49.26114400910145],[-121.06714784727824,49.261483558415186],[-121.06578806786078,49.26192964858336],[-121.06488410515553,49.26214905087893],[-121.06326917714962,49.26218054829969],[-121.06182112248268,49.262566720373336],[-121.06016491741688,49.263711322893066],[-121.05877365900069,49.264919083484656],[-121.0576261711687,49.266775732173656],[-121.05720244304247,49.268409838592234],[-121.05636075249338,49.26933375777639],[-121.05561893908417,49.26996622693765],[-121.05539163493431,49.27119348833614],[-121.05697163847529,49.2720406870083],[-121.05803150938073,49.272410106479875],[-121.0589099835482,49.27283521100765],[-121.0595742021299,49.27367252746272],[-121.05929112696613,49.274552429113186],[-121.05905898448695,49.275438605805185],[-121.05905022796018,49.27547231569335],[-121.0590466008765,49.27549019293806],[-121.05904126172555,49.27550799172798],[-121.05903763463563,49.27552586897146],[-121.0590340075429,49.27554374621434],[-121.05903038044737,49.27556162345662],[-121.05902504128201,49.27557942224381],[-121.05902141418022,49.2755972994848],[-121.05901778707566,49.27561517672517],[-121.05901247758244,49.27563269719706],[-121.05900713840201,49.27565049598144],[-121.0590018289007,49.27566801645185],[-121.05899480732447,49.27568545846652],[-121.05898778670047,49.275702891502604],[-121.05898079479707,49.27572005520223],[-121.05897209177321,49.27573713146792],[-121.05896509985884,49.27575429516572],[-121.0589563661817,49.27577165872018],[-121.05894766313918,49.27578873498259],[-121.05894064152433,49.2758061769906],[-121.05893190782827,49.275823540541765],[-121.05892317508324,49.27584089511395],[-121.05891615345126,49.27585833711906],[-121.05890741973626,49.27587570066688],[-121.05889868601467,49.275893064213584],[-121.05889166532317,49.275910497237824],[-121.05888290190506,49.27592813909544],[-121.05887416816445,49.27594550263873],[-121.0588654344173,49.2759628661809],[-121.0588584127452,49.275980308179015],[-121.05884964930127,49.27599795003208],[-121.05884091649263,49.276015304593045],[-121.0588321827199,49.27603266813071],[-121.05882344894064,49.27605003166719],[-121.05881474579701,49.276067107911636],[-121.05880601200472,49.276084471445856],[-121.05879727820592,49.276101834978874],[-121.05878686295638,49.27611883276167],[-121.05877815882879,49.276135917979275],[-121.05876945565237,49.27615299421786],[-121.05875903942356,49.27617000097458],[-121.05875033623373,49.27618707721078],[-121.05873994967538,49.276203805651754],[-121.05872956406716,49.27622052511346],[-121.05871917845143,49.27623724457382],[-121.05870879282823,49.276253964032726],[-121.05869843688295,49.2762704051773],[-121.05868808093034,49.27628684632051],[-121.05867775465595,49.27630300914942],[-121.05866571628063,49.27631909351682],[-121.05865538999127,49.27633525634278],[-121.05864338224323,49.27635105341626],[-121.05863137352941,49.276366859465845],[-121.05861936576503,49.276382656535866],[-121.0586073876785,49.276398175291355],[-121.05859540862636,49.276413703023],[-121.05858174811237,49.27642886500086],[-121.0585681479197,49.27644346137331],[-121.05855115320755,49.27645762250705],[-121.05853250575895,49.27647114855023],[-121.0585104944313,49.27648395206144],[-121.05848854246516,49.27649619894244],[-121.05846496840557,49.27650752343943],[-121.05844148435351,49.27651800401503],[-121.05841637725162,49.276527571183266],[-121.05838961837058,49.27653649427771],[-121.05836469128887,49.27654437360176],[-121.0583381124301,49.27655160885142],[-121.05831168200267,49.2765574525311],[-121.05828705465025,49.276562521776654],[-121.05826083394314,49.276566399299575],[-121.05823473390059,49.276569145609706],[-121.05820875260915,49.276570778662936],[-121.05818120957258,49.27657092372343],[-121.05815375656017,49.27657022486108],[-121.05812639261573,49.276568691053946],[-121.05809908900919,49.2765665916368],[-121.05807016237146,49.27656357880541],[-121.05804300817589,49.27656007883319],[-121.05801420222014,49.27655593478076],[-121.05798713710286,49.27655159985662],[-121.05795839053742,49.276546899164025],[-121.05793135607856,49.27654227693544],[-121.05790435227318,49.27653736740969],[-121.05787902992554,49.27653282364016],[-121.05785202517343,49.27652792307913],[-121.05782505011786,49.276522744198616],[-121.05779978812565,49.276517634807405],[-121.05777281308188,49.27651245591384],[-121.05774758079234,49.276507068197795],[-121.05772066610118,49.27650132368825],[-121.05769375141669,49.27649557917194],[-121.05766857852895,49.2764896348122],[-121.05764169450738,49.27648360299239],[-121.05761652163281,49.27647765862052],[-121.05758969700933,49.27647107016264],[-121.05756455384056,49.276464847465924],[-121.05753947102133,49.27645805916046],[-121.05751264642014,49.2764514706833],[-121.05748759330855,49.27644440405308],[-121.05746254020455,49.27643733741704],[-121.05743748806606,49.27643026179734],[-121.05741246467056,49.2764229168371],[-121.05738744224087,49.27641556289308],[-121.05736244855476,49.27640793960852],[-121.05733748552836,49.27640002902783],[-121.05731252251049,49.27639211844128],[-121.05728930224676,49.27638399904046],[-121.05726436893981,49.2763758101301],[-121.05723946533588,49.276367342901466],[-121.05721630448606,49.27635866685976],[-121.05719143155254,49.27634991232947],[-121.05716830041501,49.27634095796479],[-121.05714345719481,49.27633192511076],[-121.05712032607552,49.27632297073556],[-121.05709725435527,49.276313459730375],[-121.0570724418167,49.27630413956937],[-121.05704937011564,49.27629462855366],[-121.05702632907739,49.27628483024269],[-121.05700325739538,49.27627531921686],[-121.05698024607219,49.276265242583264],[-121.05695720506311,49.2762554442571],[-121.05693419375976,49.276245367613434],[-121.05691118246641,49.27623529096467],[-121.05688820087931,49.27622493599845],[-121.05686518960609,49.276214859339625],[-121.05684392108374,49.276204573874466],[-121.05682093952687,49.276194218893394],[-121.05679798767699,49.27618358559495],[-121.0567767191839,49.276173300116014],[-121.05675376735451,49.27616266680793],[-121.0567326176693,49.27615126807027],[-121.05671149864973,49.27613958203816],[-121.05669040933817,49.27612761768931],[-121.05666937943245,49.27611509671129],[-121.056650091318,49.276102375908565],[-121.05662909209032,49.276089567631985],[-121.05660983465337,49.27607655953138],[-121.05658886418841,49.27606348191191],[-121.05656963647161,49.27605019549125],[-121.05655037906764,49.276037187379266],[-121.056529379897,49.27602437908202],[-121.05651009185864,49.27601165825266],[-121.05648903235564,49.275999415549734],[-121.05646794316515,49.27598745115483],[-121.05644853540608,49.27597585254118],[-121.05642735618217,49.275964732053076],[-121.05640440549404,49.275954089689456],[-121.05638310653622,49.27594409141974],[-121.05636000545624,49.27593485856403],[-121.05633681528735,49.27592646064046],[-121.05631353411228,49.275918915604585],[-121.05628845177118,49.27591212700302],[-121.05626331003783,49.275905895020365],[-121.05623813765325,49.275899950321964],[-121.05621287617487,49.27589484055473],[-121.05618590167023,49.275889661260024],[-121.05616055014396,49.27588539539539],[-121.05613345589038,49.27588133831476],[-121.05610804497206,49.27587762906259],[-121.05608089132589,49.27587412859338],[-121.0560537070247,49.27587091540754],[-121.0560264939842,49.275867971549346],[-121.05599753821522,49.27586523647209],[-121.05597026482046,49.27586285820214],[-121.05594299142847,49.27586047992538],[-121.05591571803932,49.27585810164172],[-121.05588670287896,49.27585592315927],[-121.05585939979319,49.275853823173634],[-121.05583209575173,49.2758517321589],[-121.0558030805993,49.275849553654005],[-121.05577580722372,49.27584717533498],[-121.0557485041481,49.27584507532123],[-121.05571951870677,49.275842618481526],[-121.0556922750427,49.27583996182914],[-121.05566503138178,49.27583730516977],[-121.05563781838565,49.27583436121355],[-121.05561063509661,49.27583113893814],[-121.05520777443863,49.27586595614085],[-121.05502644582764,49.27595292811636],[-121.05494100252983,49.27607644185101],[-121.05488355635693,49.2762116686799],[-121.05484257139305,49.276353857385566],[-121.05480978726507,49.27649980532588],[-121.05477865561174,49.276646388369045],[-121.05474430847717,49.27679085716756],[-121.05470503564311,49.27693311524125],[-121.0546724902707,49.27707681856504],[-121.05464330951641,49.27722123551819],[-121.05461076375076,49.277364938760904],[-121.05457323090455,49.27750700585423],[-121.05452566557958,49.277646348328325],[-121.05446304916057,49.2777816263255],[-121.05437168628707,49.277912193643274],[-121.05424163165068,49.278034508633844],[-121.05409069668744,49.278142892493605],[-121.0539235633288,49.27822572338216],[-121.05370354772359,49.27825594938048],[-121.05348256837584,49.278279084755034],[-121.05326363171274,49.27829920089497],[-121.05304649617972,49.27831856020798],[-121.05282900092587,49.2783412857423],[-121.05261006272713,49.27836140953322],[-121.05239178403272,49.27837535618707],[-121.05216845790754,49.27838823178028],[-121.05194852292873,49.27838546544287],[-121.05174254629901,49.27834866859996],[-121.05154701494172,49.27827851911071],[-121.05135737060951,49.27820158439119],[-121.05117490446412,49.27812188427864],[-121.05099451076038,49.278038895775936],[-121.05081390860629,49.277957864109446],[-121.05062979168481,49.277877527842065],[-121.05044561688835,49.27779773889339],[-121.05025540558906,49.27772614394022],[-121.05005555598703,49.277664246642544],[-121.04984402489845,49.27761506566962],[-121.0496309387506,49.27759654105566],[-121.04940668349033,49.27760203344999],[-121.04918207170006,49.27762695998121],[-121.0489788800398,49.27767684046553],[-121.04880023409368,49.27775462432424],[-121.04863817176852,49.27785431647489],[-121.04848863608402,49.27796558118138],[-121.04835426904448,49.27807979770324],[-121.04825459732794,49.27820744393165],[-121.04817469065334,49.278343332441146],[-121.04808994742775,49.278476174957554],[-121.04800520371694,49.2786090173808],[-121.04792211122283,49.27874250393661],[-121.04784070066816,49.278876347341885],[-121.04776436666207,49.27901098317421],[-121.04769301806546,49.27914726432526],[-121.0476283978127,49.279284982152376],[-121.04756548936581,49.27942277854781],[-121.04750089906534,49.279560208955296],[-121.04742621467715,49.27969548864097],[-121.04734483077567,49.279829053171866],[-121.04726008246057,49.2799618947395],[-121.04717365120358,49.280094379264156],[-121.04708553699226,49.28022650674184],[-121.04700081696699,49.28035906971852],[-121.04691774916787,49.2804922678639],[-121.04683804487838,49.28062618880614],[-121.04675996212656,49.280761032211714],[-121.04668359116317,49.280895954183],[-121.04660890224184,49.28103123303113],[-121.04653250063289,49.28116643314815],[-121.04645615906291,49.28130106759098],[-121.04637639156628,49.28143555362174],[-121.04629500159041,49.28156911701127],[-121.04621523412592,49.28170359389101],[-121.04613366366966,49.28183883592542],[-121.04604878723552,49.281972807323676],[-121.04595736266458,49.2821036450049],[-121.0458527481628,49.28222909513384],[-121.04573007852147,49.28234638101045],[-121.04558607887272,49.282453944733014],[-121.04542898032506,49.28255526787286],[-121.0452668632568,49.2826552415275],[-121.0451096730568,49.28275740806938],[-121.04496392860982,49.28286517052802],[-121.04482301982266,49.282975978804494],[-121.04467895560862,49.28308410680575],[-121.04452353549436,49.28318578551967],[-121.0443583805477,49.283281946459624],[-121.04419004039404,49.28337570535305],[-121.04402004678333,49.283468828667736],[-121.04385326774748,49.28356406620786],[-121.04369640181889,49.28366314225748],[-121.04355086067221,49.283768945545454],[-121.04343142522193,49.28388807372536],[-121.04333491200472,49.28401811609614],[-121.0432415827726,49.28415056016054],[-121.04313350180568,49.284276128166695],[-121.04300565299711,49.284393452776406],[-121.04286957125922,49.28450730435555],[-121.04272537859086,49.284616542722006],[-121.04257319316707,49.28472006360336],[-121.04241298520205,49.284818145273505],[-121.04224304327923,49.2849107000021],[-121.04206676142111,49.28499817247226],[-121.04188594333621,49.285079788511105],[-121.04169890454894,49.2851552090207],[-121.04150717873148,49.28522618252833],[-121.04131082646967,49.285292143424265],[-121.04111152848567,49.28535346668156],[-121.04090769450407,49.285408933395146],[-121.04070265806666,49.28545955389602],[-121.04049455590658,49.28550665890639],[-121.04028507258589,49.28555058750862],[-121.0400757686485,49.28559283690091],[-121.03986318950194,49.285633527874545],[-121.03965235315643,49.285674009906344],[-121.03944148567444,49.285714778805506],[-121.03923061782187,49.28575554729046],[-121.03901978036981,49.28579602808025],[-121.0388073195711,49.285835594772124],[-121.03859657082239,49.28587523982092],[-121.03838416988859,49.28591424009158],[-121.03817348101227,49.28595331872627],[-121.0379610784035,49.28599232713794],[-121.0377486763994,49.28603132615233],[-121.03753795663738,49.28607068184354],[-121.03732555295693,49.286109688998856],[-121.03711339037501,49.28614644237914],[-121.03689792286738,49.28618191554426],[-121.03668422709971,49.28621691047975],[-121.03646881858695,49.286251826179935],[-121.03625500286769,49.28628793347305],[-121.03604271738709,49.28632581590568],[-121.03583190439086,49.28636601213634],[-121.0356224426054,49.2864096533374],[-121.03541769621924,49.28645746275287],[-121.03521412100027,49.286510395955936],[-121.0350162815589,49.28657403105764],[-121.03482426921252,49.28664751522533],[-121.03463988677557,49.286730083443565],[-121.03446499484602,49.28682043205888],[-121.03430491360379,49.286917091929304],[-121.03416099359893,49.287023517494696],[-121.03403326469214,49.28713943051328],[-121.03391181317373,49.287260991380855],[-121.03379360592427,49.28738438858163],[-121.03367218297929,49.28750567083361],[-121.03353937476874,49.28762078103913],[-121.03339689180737,49.287729815973584],[-121.0332445550099,49.28783444540806],[-121.03308744113436,49.28793547147487],[-121.0329271423155,49.28803409520262],[-121.03276525068642,49.28813151762796],[-121.03260329867817,49.28822949639786],[-121.03244134502285,49.28832748388787],[-121.03227942149798,49.28842518384271],[-121.03211587531315,49.28852196078225],[-121.0319507960293,49.28861697979841],[-121.03178253182313,49.28870959642219],[-121.03161111255758,49.288799532339446],[-121.03143491626695,49.28888586476835],[-121.03125565547973,49.28896867258001],[-121.03107495315916,49.28904886955636],[-121.03088938332641,49.28912630687069],[-121.03070228048544,49.28920198617938],[-121.03051364561338,49.289275898497735],[-121.03032338720567,49.28934889667177],[-121.03013321875817,49.28942105062685],[-121.02994139788409,49.289492559749185],[-121.029749546551,49.28956434682256],[-121.02955940619647,49.28963622144476],[-121.02936914577282,49.289709208921394],[-121.02918050575042,49.289783127832855],[-121.02899024412805,49.28985611462597],[-121.02879841969298,49.289927621671985],[-121.02860500161785,49.2899979362394],[-121.02840996196184,49.29006731866385],[-121.02821489088142,49.29013698800503],[-121.028021501891,49.29020701422958],[-121.02782796195488,49.2902784405705],[-121.02763772605361,49.2903511466288],[-121.02745067273136,49.290426263569614],[-121.02726677401924,49.290504051752215],[-121.02708768077153,49.290585164701966],[-121.02691333224024,49.29067016801499],[-121.02674366959887,49.29075960933156],[-121.02657331310634,49.29085550508618],[-121.026407491055,49.290957248311166],[-121.02624455060813,49.29106420345706],[-121.02608806925012,49.291175110063456],[-121.02594324261423,49.2912896664474],[-121.02581019321511,49.29140673253188],[-121.02569240514065,49.29152591870367],[-121.02559345606137,49.29164596455803],[-121.0255182409284,49.29176936938484],[-121.02550422324666,49.29191588657203],[-121.02554750006757,49.29207378819996],[-121.02563305472911,49.292222650963126],[-121.0257474642409,49.29234323474897],[-121.02589944598873,49.29241847529026],[-121.02611231511818,49.2924556365317],[-121.02635325471013,49.29247181688698],[-121.02658944703988,49.29248412398565],[-121.02681040797891,49.29249402318465],[-121.02703807255303,49.29248957961907],[-121.02726603881942,49.292482325667386],[-121.0274879021698,49.29248382069359],[-121.02769897470598,49.29250566715325],[-121.02789315198496,49.292556632543175],[-121.02808852750617,49.29262850210418],[-121.0282787608104,49.292716211049246],[-121.02845378722407,49.2928173197393],[-121.02860366336206,49.29292825745137],[-121.02871835314856,49.29304631533026],[-121.02879611382694,49.293171692850265],[-121.0288469195097,49.293307673579484],[-121.02887789343022,49.29345203268411],[-121.02888945463896,49.29360086503447],[-121.02888878714823,49.2937513801967],[-121.0288779331268,49.293900586852146],[-121.02886239293477,49.29404534631405],[-121.02884195547306,49.294187624618104],[-121.02881463717807,49.294329865460476],[-121.02878389232558,49.29447195737952],[-121.02874798021676,49.29461408178269],[-121.02870864147715,49.29475605725531],[-121.02866587800322,49.29489786583902],[-121.02861968783647,49.29503952548464],[-121.02857184536902,49.29518054057474],[-121.02852228986663,49.29532147667805],[-121.0284710820359,49.29546176822203],[-121.02841822090019,49.295601424181825],[-121.028365389326,49.295740801790146],[-121.0283091319057,49.29588002146532],[-121.02825290499231,49.29601895380866],[-121.02819496400382,49.29615781613014],[-121.02813537061618,49.29629603388045],[-121.02807403420691,49.296434450922504],[-121.02801101452474,49.29657251066138],[-121.02794799446737,49.2967105703348],[-121.0278850039183,49.29684835164711],[-121.02782030115469,49.29698604497013],[-121.02775391411805,49.297123389959985],[-121.0276892096175,49.29726109212485],[-121.0276245355822,49.29739850694979],[-121.02755814737544,49.29753585173414],[-121.02749347256868,49.297673266423836],[-121.02742540159737,49.29781024484561],[-121.02735904209885,49.297947311127395],[-121.02729100021615,49.298084011113076],[-121.02722295793232,49.29822071102764],[-121.02715320239358,49.29835733191427],[-121.02708344644387,49.298493952727895],[-121.02701372093722,49.29863028619636],[-121.0269439641661,49.298766906863825],[-121.02687423687482,49.29890324916353],[-121.02680450917362,49.29903959139034],[-121.0267330382872,49.299176132875154],[-121.0266633097606,49.299312474954846],[-121.0265935817883,49.2994488079844],[-121.02652382254836,49.299585428212545],[-121.02639244499659,49.29986299532085],[-121.02634453099152,49.300004564989976],[-121.02633977918651,49.30001675073758],[-121.02629342637616,49.300159808745356],[-121.02624361753605,49.30030298705395],[-121.02619726414298,49.30044604495896],[-121.02615785285522,49.30058857484516],[-121.02613055245385,49.30073053534606],[-121.02612053178247,49.30087188509678],[-121.02613473441886,49.30101208715921],[-121.02616976263879,49.30115072324084],[-121.02622384483678,49.301288261960806],[-121.0262934954553,49.30142510193753],[-121.02637005815942,49.301561701130844],[-121.02645007716183,49.30169817988411],[-121.02652832386434,49.3018351361703],[-121.02660134142211,49.301972699332744],[-121.02666390016968,49.302111476345864],[-121.02671251520066,49.30225185690897],[-121.02676269213053,49.302393725803576],[-121.02681617484399,49.30253687471805],[-121.02686959810096,49.30268058016146],[-121.02692293104542,49.302825129403644],[-121.02697109535788,49.302969720003055],[-121.02701754694142,49.303114231590975],[-121.02705543267682,49.30325835731511],[-121.02708484505358,49.30340123537476],[-121.02710575217002,49.30354316202463],[-121.02711304565207,49.30368361312949],[-121.02710678516063,49.30382203210766],[-121.02708351456113,49.30395853933583],[-121.02703641133762,49.30409254067904],[-121.02696541550358,49.30422459269254],[-121.02687569598282,49.30435465392038],[-121.02676896570878,49.30448280327939],[-121.02563362837144,49.305724220142],[-121.03012982499347,49.309867631447844],[-121.03466574230694,49.31534947656013],[-121.03893587018617,49.319978992057685],[-121.04285905366287,49.3223243464787],[-121.05165583103965,49.32677113940921],[-121.0573203425294,49.32869248062506],[-121.06625529474503,49.32902367017121],[-121.06606473331088,49.328743205366884],[-121.07189250624197,49.32745695027486],[-121.0773280976566,49.327781624553374],[-121.08082627927269,49.33064817069486],[-121.08314969162491,49.33484772678355],[-121.07808585317663,49.33788617980323],[-121.07363884222465,49.343667790678104],[-121.07041546277154,49.34959865357726],[-121.07016518892202,49.350006689592135],[-121.07200839333856,49.35289084489544],[-121.0693572073759,49.35486996630238],[-121.06515894070219,49.35739062719673],[-121.06356936582813,49.35975270602168],[-121.06351250455303,49.36067274679838],[-121.06701403613798,49.36365271300716],[-121.06997265225003,49.36577929217924],[-121.07564549056602,49.3679322513786],[-121.07688603016527,49.3681970939703],[-121.08050942468033,49.36900819467971],[-121.08979079188624,49.37173386447349],[-121.09298605861584,49.37294450217151],[-121.10186211310794,49.376644813468914],[-121.10372953710919,49.37776588504151],[-121.11123617483331,49.38216996625138],[-121.11442079938689,49.385841528827214],[-121.11523405267923,49.389371732873414],[-121.11260923873196,49.3917524004031],[-121.10933995810534,49.39357085906348],[-121.1029860123016,49.39480759860744],[-121.0976206139574,49.39699783145015],[-121.0961360188523,49.39993408564697],[-121.0966642534119,49.402498211438875],[-121.10030456823118,49.40656052070943],[-121.100893690462,49.40855347565003],[-121.09967729234386,49.411432269805594],[-121.09630791643318,49.41313505551956],[-121.0910955381556,49.416979147808476],[-121.08957329990291,49.418831222934685],[-121.08865248553957,49.42307537507329],[-121.08850271914947,49.426559953440496],[-121.08880232127024,49.430103801937186],[-121.08930047494935,49.432041337964456],[-121.0893643152362,49.43403750864246],[-121.08836481250543,49.4381094642819],[-121.08717386017275,49.44475671125216],[-121.0869279142646,49.44784532489817],[-121.0846675641615,49.454280746918904],[-121.08305815792625,49.45836265520301],[-121.08149256570967,49.46164212941789],[-121.08061099589474,49.46433682284394],[-121.08260046551523,49.46602691651898],[-121.08628728266564,49.46878013666306],[-121.07796704689962,49.47214887529383],[-121.0724704699186,49.47314160391747],[-121.06748875893382,49.473841285963296],[-121.05551985805373,49.475375333370486],[-121.05352781919466,49.476033818686865],[-121.05714261337938,49.47958011148062],[-121.06016976546738,49.483712744588374],[-121.06157700063332,49.48632191232089],[-121.0634131430796,49.488930013931416],[-121.06415281658185,49.49028666152302],[-121.06640127768509,49.491629137706276],[-121.0708946398546,49.494997487340285],[-121.07531047756902,49.4987090274193],[-121.07626628022409,49.50115420634152],[-121.07701888688614,49.50537298494325],[-121.07720491375231,49.51114141014743],[-121.07595052662165,49.51601863257202],[-121.07047543261179,49.520381622135844],[-121.06287267885915,49.524316087307916],[-121.05868497403287,49.52517148934149],[-121.04992811493861,49.5259200133847],[-121.04282953824654,49.52938720244584],[-121.04341273995534,49.53104084202562],[-121.04691091360677,49.53647640492935],[-121.04933854319324,49.540675059737644],[-121.049052565124,49.543077207659906],[-121.04653248649416,49.546428005514336],[-121.04172605044968,49.5504351974617],[-121.03849215747496,49.55384788973891],[-121.03526350894366,49.56298443122319],[-121.03445586659979,49.56533530788638],[-121.03491810304604,49.57144898729194],[-121.03298898911063,49.577128869287094],[-121.03026543497178,49.58002609326568],[-121.02332202493561,49.58337557861188],[-121.01706866235435,49.58597371769787],[-121.00855234916469,49.589114020381345],[-120.99698935183368,49.59349597508908],[-120.99402750551775,49.594731948428034],[-120.98923530550687,49.60462302344509],[-120.98578925217447,49.612958948834304],[-120.9840360401252,49.616065013650676],[-120.98213976709505,49.62060617968673],[-120.98061472997185,49.62542735832646],[-120.98056235334712,49.626795642633944],[-120.9806705525546,49.629995177895374],[-120.97565162006907,49.63314610440043],[-120.97086554724298,49.637838348533464],[-120.96720521886687,49.641997483574606],[-120.96461739823269,49.64408814079844],[-120.95984117044765,49.652209919971355],[-120.95787164073262,49.654348800062266],[-120.95798773825761,49.658347291940636],[-120.95812296798603,49.6628037176348],[-120.95713556636717,49.66812842446568],[-120.95645946111222,49.67516673932587],[-120.95644712272217,49.67767975523308],[-120.96365819192576,49.673461679353224],[-120.97121693759509,49.66745124962257],[-120.97648287347221,49.664363750094914],[-120.99335432379216,49.65399617671553],[-121.00118266468125,49.64913862415656],[-121.01020294195332,49.64644811414702],[-121.01405623125568,49.64418399205633],[-121.0172370122994,49.644151136765785],[-121.01772008881251,49.644174398031254],[-121.01775041277932,49.6419761424871],[-121.02433642536528,49.6394508132238],[-121.02847610891347,49.63657883051055],[-121.02857194429366,49.63659054359729],[-121.02959383122483,49.63637689238689],[-121.03224359034552,49.634963376753525],[-121.03522817418273,49.63494247624254],[-121.03858898304402,49.63413500064468],[-121.04177724347335,49.6346681857836],[-121.04448574255616,49.63399140482796],[-121.04774361674556,49.633750430983675],[-121.04972172258354,49.63315690631105],[-121.05134117473567,49.63164307034179],[-121.05261732642846,49.631384428570485],[-121.05580380097103,49.632449129864426],[-121.05998900432469,49.63209554080945],[-121.06065269621476,49.63134065929032],[-121.06042561696654,49.62855027832947],[-121.06107087982573,49.62719209998694],[-121.06259815106863,49.62601431546308],[-121.06395115946614,49.62568352200117],[-121.06787075284637,49.62573069188257],[-121.07160088816681,49.624958161766145],[-121.07375730657661,49.62489360665839],[-121.07927665098556,49.625670532448964],[-121.08186710491383,49.62556741223635],[-121.0856252983647,49.62686393030866],[-121.09008059500991,49.62708948348127],[-121.09088705437873,49.62693993473232],[-121.09247953190284,49.62592306311381],[-121.09382762271828,49.62550602679025],[-121.09723943738688,49.626022327160854],[-121.09813841416388,49.62578503657162],[-121.10374814075577,49.62259347473009],[-121.10986279834796,49.615300051978664],[-121.11108411933475,49.614897120568344],[-121.11218917962158,49.61376196176884],[-121.11642038016757,49.61151766451781],[-121.1165021718153,49.61126971851656],[-121.1200441701002,49.610551400359256],[-121.12294037693577,49.6108231483613],[-121.12363431547445,49.61133837927621],[-121.12338424084399,49.61578674885095],[-121.12538378058831,49.61967976254056],[-121.12749078744199,49.61994640121285],[-121.13419356468215,49.62277326090614],[-121.13742763265243,49.62208734495184],[-121.13865543942467,49.6209667467176],[-121.14126748942527,49.619604845471194],[-121.1436894625913,49.61951556389309],[-121.14777359008403,49.61865376069181],[-121.15071745323574,49.61847943572027],[-121.15476032010783,49.617480563462614],[-121.15454588039154,49.61476356023185],[-121.15547990925447,49.61302080294366],[-121.156876923408,49.61186641621179],[-121.15880067196537,49.61110656776328],[-121.16059985909558,49.60863225320333],[-121.16325718776649,49.60774889862493],[-121.17104050532994,49.603589702579605],[-121.17657104344617,49.60305714284527],[-121.17657319562798,49.60277237600336],[-121.17724212123626,49.59745169933438],[-121.18054772487079,49.59195947488704],[-121.19000134776363,49.585697343831306],[-121.20118288765376,49.587545543759695],[-121.20825351930958,49.59255403992454],[-121.20878795480225,49.59380832368261],[-121.21165027244652,49.58854199985969],[-121.21817496436225,49.58068779453108],[-121.22771365215297,49.57540011484576],[-121.23125366621225,49.57772769884433],[-121.23638164693256,49.58171249505519],[-121.24319668062807,49.58694127924933],[-121.24737489759313,49.59115316875991],[-121.2536421632974,49.59473261292385],[-121.257882115052,49.596883205728595],[-121.26637719494664,49.60239425949653],[-121.27732974319298,49.60720813335048],[-121.28544311532491,49.610263334576146],[-121.29667240285941,49.61593080731514],[-121.30622668729596,49.620920919869064],[-121.30828661445642,49.624915854943495],[-121.30929821193772,49.629539919391895],[-121.31101686076036,49.63376002176533],[-121.31352767331863,49.63837478742444],[-121.31622767180302,49.644539938070935],[-121.32076169924514,49.64932180783495],[-121.32217643783683,49.650685808492064],[-121.32328384210507,49.6547966851167],[-121.32541128262254,49.66524558845265],[-121.32675854972615,49.66809674271248],[-121.32967804070024,49.66968237159779],[-121.33824405724114,49.67101526935323],[-121.35277877610302,49.67151968767494],[-121.3620732455428,49.675541419069994],[-121.37119957669951,49.680695339562796],[-121.39643997657333,49.677315785541154],[-121.41377033079654,49.67500079626063],[-121.4150558238821,49.67922193984943],[-121.41735219358155,49.67943750173305],[-121.42104753879522,49.6798211446272],[-121.42563743905718,49.680142547500935],[-121.43154150068584,49.68050877111472],[-121.43472020393283,49.68106461025554],[-121.44232979692464,49.68382599451448],[-121.44721017527382,49.6865414353755],[-121.45402475482388,49.68907601815096],[-121.46288979092115,49.69348575003975],[-121.47217039721322,49.69595168988268],[-121.4793334220711,49.697512718100725],[-121.48960987961922,49.70088136129581],[-121.49956260938002,49.70105252895068],[-121.50827665870578,49.70026035083271],[-121.51619926104745,49.69946475788674],[-121.52608441502127,49.700039659695086],[-121.53015508637625,49.70172420478018],[-121.53381644689799,49.70490639330848],[-121.53919274389925,49.711165259394726],[-121.54590226829623,49.717869705225155],[-121.54990558853534,49.7204146226279],[-121.55745981433026,49.72430835389333],[-121.56442622073237,49.73027048721833],[-121.56853514762479,49.73447530104774],[-121.57389349466706,49.738556034302206],[-121.57931218664339,49.74086762694031],[-121.58143748815888,49.74159695569207],[-121.58879280422028,49.743431191610085],[-121.59965776410276,49.74519258352166],[-121.60813217591908,49.74536754330716],[-121.61087763633459,49.74557721011285],[-121.61715488542048,49.747075453937214],[-121.62707827333735,49.7499833473512],[-121.63817271000954,49.753450723176634],[-121.64250786255256,49.75405033434285],[-121.64996850797655,49.7515954468381],[-121.65673738524315,49.750858866564386],[-121.66389751509155,49.75097879028337],[-121.67139677461714,49.75103961193715],[-121.67821234981206,49.7523078067367],[-121.68988669435772,49.75393662077747],[-121.69085772362995,49.75410451136866],[-121.6994593708611,49.756492686595344],[-121.70959088402847,49.76110778909935],[-121.71157043117651,49.76297860234795],[-121.71428505811778,49.76650452663303],[-121.71373049684962,49.77005513639889],[-121.70937421263339,49.77351824851569],[-121.70669355808026,49.776454740486706],[-121.7064788401993,49.77948764498696],[-121.70347423612938,49.78453760223118],[-121.70407183498196,49.788249459921026],[-121.70729786924075,49.79137489128534],[-121.70881537926878,49.792102948441254],[-121.7125201914551,49.791903905321924],[-121.7180133245238,49.792661776644756],[-121.72416111693745,49.795646674071406],[-121.72814931297482,49.801507960394275],[-121.73000830828717,49.806637116555216],[-121.72922669561832,49.81247998319671],[-121.72595890731536,49.81707350362573],[-121.71884069853684,49.81981956282539],[-121.71073133546827,49.820507654191566],[-121.71174892274024,49.823016677187],[-121.71659950042232,49.827556112840085],[-121.71886421987729,49.831024955908724],[-121.72405177551882,49.83435869630732],[-121.72526765031267,49.838183801587235],[-121.72509121399638,49.84275395488725],[-121.72789831599377,49.847140055278956],[-121.73333655406137,49.84915645655956],[-121.7380254281916,49.84980331902056],[-121.74389690772695,49.85136254096283],[-121.75324289067808,49.85540652699608],[-121.75525606523918,49.85847774914521],[-121.75531898230159,49.86185156937345],[-121.75751352590522,49.86612559468638],[-121.76070279412087,49.871246582134674],[-121.7654014290663,49.87166507229089],[-121.77057060983383,49.869106925148444],[-121.7771198614961,49.864421873206716],[-121.78056381739187,49.86016334880711],[-121.78154875596316,49.85597989318693],[-121.78253114755745,49.851973100214444],[-121.78330592063651,49.85082065435351],[-121.78399032180421,49.849439510507636],[-121.78760696647248,49.84449601824362],[-121.79411288177874,49.84204126489111],[-121.79826872998494,49.84257776289456],[-121.80300195761292,49.845169312660516],[-121.80810479164947,49.847988186371225],[-121.81624296072171,49.85295260447558],[-121.81865435943823,49.854302028431775],[-121.82418946548884,49.85683142966641],[-121.83121195487608,49.858483795228395],[-121.84241511299388,49.86211203752087],[-121.84758679656308,49.86406503396406],[-121.85228905216111,49.86505472589259],[-121.85763178923278,49.86666522534736],[-121.8671280919327,49.868411650731026],[-121.8721915425946,49.86911291811211],[-121.87868822958987,49.871225811649545],[-121.88507142422091,49.87197448872691],[-121.89004159456773,49.872325183302664],[-121.89763682916666,49.87214644646867],[-121.90321511825083,49.87255255412418],[-121.9106408828219,49.872086782534865],[-121.91803484719136,49.870414648258986],[-121.9226678827763,49.86814036717472],[-121.92727563631941,49.86426790775236],[-121.93334977165937,49.85940273899983],[-121.94028938457784,49.85716678948978],[-121.94710027508992,49.857161070377835],[-121.95471489650375,49.85783034325338],[-121.95789290263603,49.8578009396777],[-121.96652211559847,49.85628557457485],[-121.97129351458285,49.85223672256578],[-121.97253585674474,49.84856547016907],[-121.96971932726608,49.84481611796218],[-121.96750475395115,49.84071845272081],[-121.96998586594462,49.83720715124428],[-121.97735624097666,49.835077178772515],[-121.98281262981682,49.8336532425879],[-121.9870172370499,49.8284052119661],[-121.98976851843499,49.8216265128755],[-121.9908762692211,49.81978299935657],[-121.99606765427264,49.81881709740672],[-121.99948994865456,49.817870628792484],[-122.000136424423,49.817478849139654],[-122.00340648801793,49.81747693333498],[-122.00800417202258,49.816451605227336],[-122.01162953704014,49.81508548225935],[-122.01463775247886,49.81377384831757],[-122.02055539853579,49.812921131857806],[-122.02550757700408,49.81389178624887],[-122.02895532201208,49.81520608473866],[-122.0325764068774,49.817091181542224],[-122.03582202515405,49.819459010151114],[-122.0376026489484,49.820750218774364],[-122.04149314813193,49.824517005952494],[-122.04282281788295,49.825716339113086],[-122.04687728567572,49.82840014333442],[-122.05014772801381,49.82936896700102],[-122.05686878474509,49.830512341499094],[-122.06216787074707,49.832171467333126],[-122.07038445336927,49.83616714000032],[-122.0772842497536,49.83816446235906],[-122.08090492044293,49.8387970079849],[-122.08860523349298,49.841535446339975],[-122.09319540498781,49.84467610801606],[-122.09814896319368,49.84650169218454],[-122.10089001753225,49.84815414510501],[-122.10213573842455,49.85118121772516],[-122.1057608440284,49.85586567994659],[-122.11071657109665,49.861287918988474],[-122.1136319248584,49.86385461924451],[-122.12019221392661,49.86893705797913],[-122.12487424342706,49.87384443336611],[-122.1286924947447,49.87892810356348],[-122.13391159358079,49.88492108417286],[-122.14020481379532,49.88959688554962],[-122.14100120245055,49.89039716483969],[-122.14356775998648,49.895652072339196],[-122.15119272154699,49.903409801653645],[-122.15545205121256,49.90729086650044],[-122.158466927088,49.9092348048497],[-122.16015319123638,49.90957310576807],[-122.1657170108706,49.909057272871],[-122.17307469205556,49.908592630795795],[-122.1808681239556,49.90858279502304],[-122.19113546442856,49.90983191105874],[-122.1937001428618,49.91017097510936],[-122.1999079046829,49.910622969036496],[-122.21256405015276,49.91249543277175],[-122.22133695095839,49.913626922836585],[-122.23320085945818,49.914811729948404],[-122.23834510757209,49.91549110332204],[-122.24223880371011,49.91679870155867],[-122.24472804878405,49.919250488513114],[-122.24491162663719,49.92227483552817],[-122.24075798981994,49.92513520895525],[-122.23448713993574,49.92897333716321],[-122.23272652124459,49.931888640055234],[-122.23317829937197,49.935372401693506],[-122.23530911223962,49.93862516245959],[-122.23744537382377,49.94164619423407],[-122.2404658633403,49.94392824184361],[-122.246597016421,49.947915499008445],[-122.25387736776,49.95304346027714],[-122.26046092569032,49.95886060730925],[-122.26419907253523,49.96416561109433],[-122.26465304816541,49.968848780569],[-122.26466621343093,49.97022224086819],[-122.26040731014197,49.972796645861784],[-122.25254008068728,49.97680579304081],[-122.24660683724804,49.982066236376824],[-122.24228324676939,49.98641591007562],[-122.24077367957923,49.98812827385471],[-122.24317911344882,49.98977893405338],[-122.24664535276419,49.991946944995235],[-122.25064727628549,49.99473747375627],[-122.25225139135306,49.99713984561839],[-122.25296238227372,49.99970469175916],[-122.2526470796921,50.0038803397268],[-122.25166276417436,50.00650766931929],[-122.25166625019266,50.00884350361462],[-122.25165641210349,50.00930287692429],[-122.25270741728663,50.01147246492584],[-122.25323117190405,50.01478822682216],[-122.25323500880235,50.01593115597896],[-122.25126295895612,50.019691731716705],[-122.25035398056089,50.027341756973584],[-122.25138379500022,50.033340090964515],[-122.25616925149512,50.039060207699514],[-122.25961605344345,50.04134726318488],[-122.26483839850785,50.04432025694857],[-122.27183641320808,50.048326070175456],[-122.27351859145259,50.0489564808391],[-122.28052278225519,50.051192366348424],[-122.28681504995731,50.05410701217036],[-122.28680572001981,50.05627903795684],[-122.28502066138694,50.06101739518603],[-122.28199532153327,50.06535255152002],[-122.27975277554287,50.071056539281926],[-122.27901981565267,50.074717492688556],[-122.27883301229261,50.07888413825868],[-122.2722421936646,50.08572680206191],[-122.26850600518975,50.08726147198499],[-122.26201263274932,50.089307141871075],[-122.24743821470823,50.09277158010166],[-122.24030556532287,50.09761857181999],[-122.2396706773887,50.10292771141473],[-122.24106550127976,50.10823979565891],[-122.2458347121342,50.113557877217694],[-122.25098042868754,50.11653118602762],[-122.25266885873611,50.117622772436434],[-122.25647574847969,50.12121910905336],[-122.25745006307302,50.12282302641535],[-122.25894745910372,50.12487903735436],[-122.26108446899087,50.12665295016858],[-122.26648408287654,50.13116877391493],[-122.27286961374148,50.136145210968564],[-122.27409697746282,50.14031216084663],[-122.27220928411283,50.144024271485236],[-122.27558498818678,50.14779749533908],[-122.28259979857711,50.151117983826744],[-122.28800444147613,50.15597576894878],[-122.28870517978935,50.16043572172916],[-122.29011258639888,50.165856088239046],[-122.29364598743777,50.172028624028044],[-122.29639847273369,50.17317540015225],[-122.30369274340043,50.17278413192315],[-122.31135231545319,50.17341662736076],[-122.31526082201482,50.17621890204676],[-122.31524974360363,50.18032895259807],[-122.31327143865597,50.18535086883591],[-122.30846735581463,50.18769048522007],[-122.30168634800192,50.19122083917898],[-122.29989258239164,50.195331217106805],[-122.29738787844819,50.1990385367391],[-122.28830769452068,50.20028744624547],[-122.27947968120382,50.20187601789808],[-122.27563040165859,50.20775160995888],[-122.27535867201527,50.20935238324139],[-122.27257898766598,50.216542591015234],[-122.26649697181176,50.22052933601064],[-122.26693534212748,50.22338827968665],[-122.27486039925921,50.22430648941258],[-122.28322499616884,50.22483167149648],[-122.28919923021355,50.22575283047224],[-122.29569746081182,50.227307202396325],[-122.30450300405062,50.22811385836097],[-122.3108331128642,50.22812098882657],[-122.31412728518745,50.228694603631745],[-122.3242803389211,50.22916162327423],[-122.33434879281022,50.22894034829993],[-122.34307964713042,50.22911592891395],[-122.34984231741021,50.230375430824814],[-122.35786033886421,50.232613029978175],[-122.36088602778248,50.234443042158105],[-122.35962888918645,50.238036264006666],[-122.35489719974862,50.24083472087326],[-122.34616386195358,50.24379810443671],[-122.34232104364918,50.24722225183456],[-122.3426714515004,50.25018908139197],[-122.3456043427169,50.2521322453316],[-122.35255477917029,50.254766667591106],[-122.35825594949648,50.25722611305571],[-122.36484268749598,50.25950966711437],[-122.37081509528795,50.26368380615801],[-122.36767856594867,50.26899027489369],[-122.3668622875966,50.276015894561326],[-122.36292577283355,50.282692965372696],[-122.35809903226061,50.2874918049268],[-122.35747984200735,50.289947795126444],[-122.35933046539687,50.295426136189256],[-122.36004423009943,50.29913748700035],[-122.36342249743936,50.30696065297457],[-122.3669784213522,50.31170910462229],[-122.37000367971024,50.31519252887787],[-122.37678034256649,50.31890459618879],[-122.37963615732151,50.31942276804661],[-122.38382317640226,50.319827509890935],[-122.38695341777672,50.32113789141202],[-122.39122178254293,50.32599243134667],[-122.396657864558,50.33068066095843],[-122.40299478646423,50.333077457579144],[-122.41433161704524,50.33399506914899],[-122.42477462289786,50.33234179052925],[-122.4324539558276,50.330402725163594],[-122.4381735395656,50.32869021074909],[-122.4387080526177,50.32869055545839],[-122.43941647125922,50.332915976111494],[-122.44004532223664,50.33708143382539],[-122.44173906835523,50.34148414186268],[-122.4450455159772,50.343992863067136],[-122.44994855621657,50.34696210872527],[-122.45655352008123,50.35084939963096],[-122.46120887137074,50.35358520157945],[-122.47021825034498,50.359692089929695],[-122.47460246922354,50.36466287532608],[-122.4809487488396,50.369400029453374],[-122.4833544106203,50.36996683578354],[-122.49005181303585,50.371110065492964],[-122.49988790208111,50.371907926606376],[-122.50783606400249,50.37236083693765],[-122.51427691566332,50.37446838839585],[-122.51830049543689,50.377436915317],[-122.52232417565399,50.382972745636344],[-122.52448067262209,50.38679436963926],[-122.52447590365608,50.39216639917863],[-122.52332821061083,50.3953658138715],[-122.52154364691455,50.39896692835016],[-122.52270526553671,50.401994780820644],[-122.52393445289658,50.40213288942948],[-122.52398061903392,50.402333945703624],[-122.52398266006279,50.40251338393006],[-122.52397197191742,50.40269803655636],[-122.52397015379621,50.40288185190048],[-122.52399687843636,50.40306093098488],[-122.52404665857357,50.403237926528725],[-122.5241088238325,50.4034141860437],[-122.52417107590922,50.403589323620864],[-122.52424395636609,50.40376367001642],[-122.52432228084858,50.40393593797247],[-122.52441123390373,50.40410741471225],[-122.52449667373772,50.404278781100125],[-122.52455361413534,50.40445431832622],[-122.52457147088224,50.404634243177426],[-122.52461945452575,50.40481174841351],[-122.5246657685842,50.40498806763283],[-122.5246396579122,50.40516717978513],[-122.52462057499189,50.405346512370556],[-122.52462608987312,50.40552661659102],[-122.52462457678364,50.40570650029197],[-122.5245949515122,50.40588550203316],[-122.52455649740929,50.406064793540736],[-122.52453042919218,50.40624334000802],[-122.5245376145258,50.406424621012285],[-122.52458358391308,50.40660543632547],[-122.52470568107631,50.40675826737873],[-122.52492910811974,50.40687605047597],[-122.52511970161757,50.4070085381646],[-122.52530292205459,50.407145301483354],[-122.52546603979467,50.407291546073445],[-122.52560365303485,50.40744880295835],[-122.52572677909171,50.407611228124075],[-122.5258373475362,50.40777663299691],[-122.52593175777021,50.4079460292743],[-122.52598686496535,50.40812263171855],[-122.52604913080408,50.408297767208545],[-122.5261453000332,50.40846721829066],[-122.52625767271326,50.40863211224579],[-122.52638624829736,50.40879245800237],[-122.52652206868942,50.408950223777005],[-122.52666517811824,50.409104835153066],[-122.52683923810686,50.409246364012446],[-122.52697004881715,50.40940059832129],[-122.52697913135209,50.40958024625882],[-122.52695469808319,50.40976053486654],[-122.52693035089598,50.409939701570806],[-122.52690424633776,50.41011881314619],[-122.52687466999707,50.410297258066954],[-122.52684505062807,50.41047625938082],[-122.5268189454219,50.41065537081602],[-122.52675615474267,50.41083051628636],[-122.52668290589823,50.41100421828197],[-122.52661137091121,50.4111785317196],[-122.52653464998505,50.411351557950915],[-122.52643885779432,50.411520612532975],[-122.5263344084825,50.411687704266605],[-122.52622652951642,50.411853572799906],[-122.52612726410246,50.41202195140431],[-122.5260435536668,50.41219420029197],[-122.52596331431407,50.412367115714645],[-122.52587103237504,50.41253627978745],[-122.52574768012516,50.41269715539689],[-122.52559672767224,50.41285042704055],[-122.52544933227703,50.41300324324833],[-122.52529846480374,50.41315538360081],[-122.52514078258882,50.41330450313446],[-122.5249660870938,50.41344578373619],[-122.5247778072236,50.41358044843898],[-122.52462882204455,50.41373096459919],[-122.52453297485467,50.41390057346925],[-122.52445439767527,50.41407466440137],[-122.52435808630597,50.414227399159145],[-122.52412537561324,50.41432130956184],[-122.5239676854594,50.414470427209984],[-122.52381667821038,50.414624252527574],[-122.52365212929534,50.41477090544642],[-122.52348595185488,50.41491581569825],[-122.5233300148826,50.41506498746591],[-122.52318251821978,50.41521892208464],[-122.5230419201415,50.41537476431182],[-122.52290646400886,50.41553245005144],[-122.52277786370787,50.41569259988005],[-122.52266301962854,50.41585711270184],[-122.52256026019103,50.41602482053466],[-122.52249050161714,50.41619862893583],[-122.52250406236945,50.41638853777467],[-122.52248934507755,50.416556759334824],[-122.5222070634737,50.4165850105515],[-122.52192718669738,50.41660490686703],[-122.52165423910543,50.41664919346176],[-122.52139349255978,50.41671803589362],[-122.52113450195841,50.416786941855385],[-122.52085100848782,50.416762297456884],[-122.52057228401517,50.416721491490115],[-122.52033108291515,50.4167881383112],[-122.52010425642656,50.41689684467493],[-122.51987849456255,50.41701458048965],[-122.51964168291711,50.41711566722679],[-122.51938093061396,50.41718450488648],[-122.51910260560717,50.417184200914996],[-122.51881781337573,50.41717637894826],[-122.51853356770066,50.41718431723503],[-122.51827663062602,50.41724934076856],[-122.51803972834767,50.4173515369207],[-122.51778313568356,50.41741207193752],[-122.5175020135366,50.41742517079876],[-122.5172303385271,50.41747566732133],[-122.51696790886508,50.41754333117595],[-122.51673486317999,50.41764114762833],[-122.51651611866846,50.417759097464106],[-122.5162814858465,50.417854622988415],[-122.51601460285188,50.41791145685456],[-122.51573478483786,50.417953264111134],[-122.5154664464667,50.41800611047332],[-122.51525023359257,50.4181140164898],[-122.51505187996594,50.41824160126771],[-122.51478371157938,50.41829221126092],[-122.5145041069181,50.4183312063148],[-122.51424188507134,50.418396054569456],[-122.51398393852091,50.41847397365482],[-122.5137526820314,50.418571282584004],[-122.51357085762264,50.418712879567664],[-122.51335931488647,50.41876020273697],[-122.51319242073845,50.41861718836402],[-122.51295493033795,50.418521441885055],[-122.51271006511908,50.41842995201857],[-122.51246700135094,50.418337960482674],[-122.51223521966928,50.41823676919127],[-122.51201485117359,50.41812468199828],[-122.5117713571208,50.418038298074656],[-122.5114958442004,50.4180015109136],[-122.51124690605505,50.41791720351251],[-122.5110018735009,50.41782796244831],[-122.51075868675562,50.41773764536288],[-122.51052506782979,50.41763751691679],[-122.51029526864266,50.41753356775269],[-122.51006551421442,50.417429052694736],[-122.50983764801197,50.41732291423728],[-122.50959828435438,50.41722878332577],[-122.50935124117913,50.417142848681955],[-122.50910226874578,50.417059092806056],[-122.50884947845714,50.41697915652883],[-122.50859462768882,50.41690309519824],[-122.50833595966338,50.41683084444967],[-122.50807737922277,50.41675747125806],[-122.50781884335085,50.416683532053064],[-122.50755666300903,50.41661116869632],[-122.50729598058064,50.41654222560507],[-122.50703139327513,50.4164782238342],[-122.50676804407456,50.416420998849354],[-122.50650052943172,50.41637208065318],[-122.50622672289171,50.41635894961914],[-122.50594263121596,50.41638766943562],[-122.50565927747112,50.41640684846654],[-122.50538067665677,50.416387374523794],[-122.50510470108922,50.41635674597048],[-122.5048274464571,50.416319886737725],[-122.5045521671256,50.41628027318249],[-122.50417732442784,50.416229654893705],[-122.50379189623234,50.41647502128743],[-122.50359008951752,50.41660135309698],[-122.50337843223126,50.41671837715019],[-122.50314874554026,50.416817963294626],[-122.50289751476656,50.416900000498295],[-122.50263827804294,50.416971663331246],[-122.50237565635986,50.417041527379105],[-122.5021195414103,50.4171183526436],[-122.50188325477994,50.41721210507583],[-122.50167822914132,50.41733439144792],[-122.50148125036297,50.41746649486726],[-122.50127446434978,50.417588733942964],[-122.50106429308279,50.417709174403335],[-122.50084418459491,50.417821428691745],[-122.50060450751026,50.417913380099634],[-122.50034526133676,50.41798503748169],[-122.5000875978779,50.41805899340902],[-122.49983164720177,50.41813356964233],[-122.49957569637658,50.41820813630339],[-122.49931803038612,50.41828209042215],[-122.49906053752143,50.418353800287896],[-122.49879824954351,50.41841917742324],[-122.49854225154851,50.41849430707158],[-122.49829913827033,50.41858502053246],[-122.49806424548058,50.41868330748296],[-122.49783581563521,50.41878911242914],[-122.49761239680174,50.4188984400227],[-122.4973906466512,50.41900895349781],[-122.4971770743405,50.41912758805744],[-122.49697026908255,50.4192498188538],[-122.4967083217552,50.41931069471538],[-122.4964295218464,50.419338991341526],[-122.49614974761755,50.419357135314954],[-122.49586776415121,50.41935834013515],[-122.49558673847014,50.419347204222035],[-122.49530601735808,50.41933214571579],[-122.49502499197833,50.419321008378894],[-122.49474247052196,50.41930644928025],[-122.49445994924766,50.419291889461675],[-122.49417879401395,50.41928242822114],[-122.4938984813408,50.419284805454325],[-122.49362495231667,50.419313261848124],[-122.49335785796829,50.41937228472134],[-122.4930890486424,50.41943069490695],[-122.49281169857869,50.41946295992688],[-122.49253170390934,50.41948390380096],[-122.49225192721862,50.41950203793831],[-122.49197197597773,50.419522415002625],[-122.49170521280021,50.419554454647475],[-122.49159204653492,50.41971843370267],[-122.49149755863935,50.419891433821654],[-122.49140328761648,50.42006163377157],[-122.49133516049962,50.420235477326955],[-122.49128263306365,50.42041262167725],[-122.49124236476335,50.420590711917974],[-122.49120732484995,50.420769534443735],[-122.49118441317638,50.42095099008721],[-122.49123970591285,50.42112367607353],[-122.49137724214714,50.421280972700515],[-122.49152369763085,50.42143686910918],[-122.49165943498748,50.42159466610096],[-122.49179161418297,50.42175291701169],[-122.49192370713574,50.421912289546775],[-122.49204683868811,50.4220736273453],[-122.49215547444975,50.422240128975176],[-122.49224622946416,50.42241000498098],[-122.49230649619233,50.422586778872294],[-122.49237937149167,50.42276002024323],[-122.49249881740135,50.42292348973434],[-122.49263794683144,50.423083083696184],[-122.4927972389283,50.4232326365781],[-122.49299241145091,50.42335126985516],[-122.49326589452072,50.423414460835446],[-122.49351105268309,50.42350206222981],[-122.49375410562922,50.42359409471422],[-122.49399535799144,50.423686636444955],[-122.49424043193022,50.4237753580096],[-122.49448357494104,50.423866267051785],[-122.49471156907317,50.42397074898121],[-122.4949335505331,50.4240846035554],[-122.49514437734052,50.42420597684378],[-122.49533684456495,50.42433689020157],[-122.495494740657,50.42448189614364],[-122.49562145126231,50.42464277522274],[-122.49573533561968,50.42481000493949],[-122.49585299818322,50.42497397124269],[-122.49596525746813,50.42513945787503],[-122.49608480971433,50.42530180120716],[-122.4962278660697,50.42545645766886],[-122.49637812920379,50.425609083582636],[-122.49653208227816,50.42575958574249],[-122.49669144057879,50.425908567139224],[-122.49685268862102,50.42605591663361],[-122.49703045332201,50.426194800352754],[-122.49722289130943,50.42632626653125],[-122.49741168395227,50.426459308459386],[-122.49760223548982,50.42659240559062],[-122.49779103036188,50.42672544682888],[-122.49797978248384,50.42685905311653],[-122.4981685364184,50.42699265008634],[-122.49835909243512,50.42712574582885],[-122.49855505317768,50.427257329587],[-122.49874736926473,50.42739048014992],[-122.49892343107132,50.42752873968324],[-122.4990469947885,50.42768501594409],[-122.49910540647869,50.42786341665644],[-122.49923938793671,50.428021712975486],[-122.49935531303942,50.428185628360474],[-122.49946939483215,50.42835060090977],[-122.49958352060568,50.428515016889975],[-122.49969584550102,50.42867994259813],[-122.4998081719124,50.428844859184125],[-122.49992230016748,50.42900927471449],[-122.50003818713952,50.42917374560152],[-122.5001541619339,50.429337094524406],[-122.50027549824058,50.42949948799562],[-122.50039868029839,50.42966081499422],[-122.50052902499168,50.429820685597214],[-122.50066301724291,50.42997897981048],[-122.50079881218772,50.43013676393467],[-122.50093460738546,50.4302945568361],[-122.50106860246338,50.43045285046589],[-122.50119547975083,50.43061204375413],[-122.50130065386313,50.43077842367371],[-122.50144387618984,50.430931385152654],[-122.50147769005648,50.43110900709683],[-122.50149181871997,50.43129050589361],[-122.50151315330476,50.43146998296988],[-122.50153273007466,50.431649404517984],[-122.50155230700011,50.43182882602259],[-122.50157188408105,50.432008247483544],[-122.50159313237461,50.432188846190336],[-122.50153214587745,50.43236178452852],[-122.50142232533071,50.43252812557231],[-122.50130045867127,50.43269071264497],[-122.50117520516504,50.432851510351384],[-122.50104647852301,50.43301163151169],[-122.50090566243423,50.433168555036985],[-122.50076660272003,50.43332554282325],[-122.50067422744921,50.43349411610296],[-122.50063033757925,50.433673783043304],[-122.500641164592,50.43385237035128],[-122.50068912907125,50.43402931406803],[-122.50074408311934,50.434207036124356],[-122.50077420656069,50.434386790171],[-122.50079909908908,50.434565821269594],[-122.50091526441928,50.43472692469494],[-122.50104022112731,50.43488830542387],[-122.50114536148992,50.435055241018226],[-122.50124689872499,50.43522319627828],[-122.50134663545289,50.435391652337415],[-122.50144461478821,50.43556005278653],[-122.50155516272466,50.43572547609286],[-122.50168192645526,50.435886345993836],[-122.50179788060585,50.43605025722008],[-122.50189762121481,50.436218712610426],[-122.50196343566721,50.43639284462858],[-122.50199892689528,50.4365716424829],[-122.5020220241731,50.4367511737569],[-122.50203628755618,50.436930984021686],[-122.50205942829157,50.437109958794686],[-122.50211263327489,50.437287624016214],[-122.50220710315642,50.437455912446],[-122.50234103699866,50.437615324926405],[-122.5025041897283,50.437761606701436],[-122.50267832824848,50.437902603031354],[-122.5028286977013,50.43805466142712],[-122.50297357578066,50.438209362193604],[-122.50311309388229,50.43836500919087],[-122.50324892190345,50.43852279764229],[-122.50339745016589,50.438675921492376],[-122.50353152254428,50.43883364510867],[-122.50365096441219,50.43899822111222],[-122.5037777878989,50.43915853155121],[-122.50395571236588,50.43929628010644],[-122.5041465549396,50.439426554884314],[-122.50426076882651,50.43959040737231],[-122.50434787073677,50.4397629589282],[-122.50442253514736,50.439936800526546],[-122.50448832095898,50.4401114956271],[-122.50455050443566,50.44028719260291],[-122.50461092936976,50.44046284304536],[-122.50467671737144,50.44063752894562],[-122.50477111692808,50.44080693628755],[-122.50491579363039,50.44096443399267],[-122.50504983431743,50.441122720710716],[-122.50511584182635,50.44129460620326],[-122.50513873636683,50.44147694475095],[-122.50512474893159,50.44165755392237],[-122.5050494354482,50.4418334141319],[-122.50486312688693,50.44196305208621],[-122.50461004475379,50.44204446978301],[-122.50436008710766,50.44213105033433],[-122.50416489643253,50.442261531670916],[-122.50395307727216,50.44237910948782],[-122.50372946893872,50.44248957695782],[-122.50351927526005,50.44260889653911],[-122.50332078091586,50.44273645643983],[-122.50312901523218,50.44286815958396],[-122.50294397751966,50.44300401497873],[-122.50277252764126,50.443146488093575],[-122.50260947797294,50.443294281824095],[-122.50244312806826,50.44343915538511],[-122.5022611242591,50.44358129482059],[-122.50206338086323,50.44372180389697],[-122.50182680497097,50.44379474898778],[-122.5015511379324,50.44380347728495],[-122.50125864944978,50.44377907160317],[-122.50097981909607,50.44373766136395],[-122.50072057459668,50.44367100421984],[-122.50046984362585,50.44358549804101],[-122.50021503153617,50.44350716742358],[-122.49995639856319,50.44343265594776],[-122.4996959209888,50.443359210139384],[-122.49943272857003,50.44329804787809],[-122.49916089273071,50.44325742049066],[-122.49888243336265,50.44323400910079],[-122.49859963085281,50.443221138457815],[-122.49831621845122,50.44321612858739],[-122.49803426018815,50.44321509530331],[-122.49775438257527,50.44323267740358],[-122.49747539175995,50.44326154119661],[-122.49719392936778,50.44327682275957],[-122.4969114914304,50.44328196094105],[-122.49663203185774,50.44327143997145],[-122.49635444471177,50.443236804367366],[-122.49608941199944,50.44317670038902],[-122.49585191582817,50.443079798433054],[-122.49559724493048,50.44299977896995],[-122.49533607994721,50.44293529718198],[-122.49505698720064,50.44294277640672],[-122.49478764800622,50.44300623254451],[-122.49451426501273,50.44300827721777],[-122.49423535845159,50.44296797177818],[-122.49397072269817,50.44290281019673],[-122.49371948578691,50.442824019397946],[-122.4934723767576,50.44273748674715],[-122.49322548626726,50.44264815356074],[-122.49297644638347,50.44256380774254],[-122.49271748200249,50.442493766449104],[-122.4924565856422,50.44242591248814],[-122.49220363958555,50.44234649720406],[-122.49196795845535,50.44224907708693],[-122.49173442882991,50.4421466685515],[-122.49148908568755,50.44206018704964],[-122.491239572904,50.441982002601186],[-122.49104550171528,50.44184822938767],[-122.49079610770794,50.44174587438651],[-122.49055887333803,50.44175916511865],[-122.49037271143935,50.4419090265256],[-122.49015245844019,50.44202125620767],[-122.48990920166763,50.4421119486171],[-122.48964984290659,50.44218302243187],[-122.4893797022462,50.442234070218674],[-122.48910225278583,50.44226576864154],[-122.4888236555475,50.44228955820878],[-122.48854360550311,50.442309360662684],[-122.48826197072891,50.44232687212659],[-122.48797994320849,50.44234942640511],[-122.48769668090021,50.442365193576165],[-122.48742052726789,50.44235756974166],[-122.48715107826571,50.44230910715143],[-122.48688904428785,50.442233331906706],[-122.48664366593489,50.442147405078785],[-122.4864082598712,50.44204660778676],[-122.48617087846596,50.44194855422074],[-122.48592181158877,50.4418647578745],[-122.48566514469265,50.4417880251086],[-122.485398463723,50.44172671797338],[-122.48512445543757,50.44169160031157],[-122.48484763993606,50.44166989655873],[-122.4845667403134,50.44165536769255],[-122.48428377698137,50.441644704100135],[-122.48400076973161,50.44163460516275],[-122.48371978319045,50.44162119593136],[-122.4834393646794,50.44160049891174],[-122.48316127338076,50.441572560907844],[-122.48288379444347,50.44153676975533],[-122.48261044469933,50.44149323702401],[-122.48234135579324,50.441440275588405],[-122.48208065601204,50.44137015358706],[-122.48184091632903,50.44127989630729],[-122.48163356223532,50.44115861191392],[-122.4813850336374,50.44106806565827],[-122.48112403098172,50.44100187208784],[-122.4808463909152,50.440990810739],[-122.48055768469519,50.44100863583522],[-122.4802920820625,50.44097883777338],[-122.4800572653659,50.44087073082076],[-122.47978230315383,50.440847948455705],[-122.4795065462537,50.44081276105519],[-122.4792393542835,50.440758169706086],[-122.47895363260864,50.4407603415944],[-122.47869637282024,50.44082695866098],[-122.4784512095021,50.44091925739203],[-122.47822591938326,50.44102793066309],[-122.47802406313858,50.44115252492527],[-122.47783381294171,50.44128649298711],[-122.4776436057469,50.441419895326],[-122.47745854145067,50.44155514308529],[-122.47727681689501,50.441692754770564],[-122.4771001918338,50.44183276831879],[-122.4769235649768,50.44197279053591],[-122.47674843333277,50.44211622466813],[-122.47656002124809,50.44224912448843],[-122.47632359424405,50.44234225414848],[-122.47606557729813,50.442418395561866],[-122.47580773469949,50.44249229282451],[-122.47561716669344,50.442472182908524],[-122.47546872014641,50.44231902260619],[-122.47532568147106,50.442164342626704],[-122.47523494970586,50.44199446593595],[-122.47516391164511,50.44182070798504],[-122.47499353586743,50.44167753743339],[-122.4747881319388,50.44155405266744],[-122.47455635973401,50.44145222020076],[-122.47431891954433,50.44135526298164],[-122.47407365753084,50.44126818649271],[-122.47382593760055,50.441190018731966],[-122.47361504463049,50.441069172870264],[-122.47340964723772,50.44094568545917],[-122.4732390180159,50.4408058684003],[-122.47312139631049,50.440641881351155],[-122.47299111741196,50.440481980711105],[-122.47280225042034,50.440350021324015],[-122.47254741620264,50.440272757612085],[-122.47232132542459,50.4401660356794],[-122.47211773744807,50.440042045285274],[-122.47193274218627,50.43990570915497],[-122.47176444945275,50.439758658565864],[-122.47156794207939,50.43963432554664],[-122.47132462909985,50.43954504623413],[-122.4710721307364,50.43946053901062],[-122.4708441573241,50.43935544513996],[-122.47062761173552,50.439239468904205],[-122.47040526613064,50.43913005493258],[-122.47017373525067,50.43902541306112],[-122.46993644849779,50.43892676800047],[-122.46968905535631,50.438844669061],[-122.46940901226256,50.438819440451525],[-122.46914993037853,50.43875158737903],[-122.46890113249992,50.43866494358119],[-122.46866749816283,50.438564729592834],[-122.46844335887872,50.438455811992476],[-122.46822488998657,50.43834201847347],[-122.46800466399617,50.43822816849351],[-122.46778052727825,50.438119258482814],[-122.4675545463487,50.43801140478002],[-122.46733225778762,50.43790142808452],[-122.46711928880828,50.43778499146999],[-122.4669583593625,50.437634235604875],[-122.46673163596401,50.4375359197073],[-122.46646918122696,50.43746626105256],[-122.46621230887128,50.43739284818815],[-122.46595148181132,50.43732493148369],[-122.46568872167776,50.437259201651024],[-122.46542605016515,50.43719234941976],[-122.46516544475017,50.437121630910056],[-122.46490277481209,50.437054777428585],[-122.46463738087576,50.43700020672801],[-122.46435453980388,50.437010861962506],[-122.46413433044816,50.43691949559454],[-122.46399495115104,50.436763799327835],[-122.46386119948632,50.43660377504117],[-122.4637201082806,50.43644745691516],[-122.46351053950302,50.43633281247191],[-122.46325939229273,50.43625395207197],[-122.46305430884904,50.436127079441675],[-122.46283168884541,50.43602158055467],[-122.46256880929852,50.43595752139556],[-122.46228988687672,50.43591825708403],[-122.4620037989346,50.43592543779293],[-122.46173344738418,50.43591174407893],[-122.46151461157231,50.43580298943955],[-122.46130052508246,50.43567863284518],[-122.46104951695885,50.4355980892109],[-122.4607807523701,50.43554170979447],[-122.46051603176338,50.4354787203478],[-122.4602474001709,50.435420661463766],[-122.45997274580598,50.435394455574645],[-122.45968903485827,50.43539383407772],[-122.4594072567395,50.435413507019454],[-122.4591390121532,50.43546285959663],[-122.45887608335691,50.43553430615086],[-122.45860410396502,50.43556385352148],[-122.45831371246179,50.43555850780685],[-122.45829685349854,50.435391531322495],[-122.45834350739962,50.43520128540416],[-122.45848421429366,50.43504777265874],[-122.45852110851561,50.43486958521047],[-122.45839256797673,50.43471084421891],[-122.45825145724216,50.43455508414226],[-122.45810129389825,50.43440239932969],[-122.4579273080493,50.43426133245092],[-122.45770497404614,50.43415244875053],[-122.45744650847654,50.43407728094463],[-122.45719371442777,50.433997228641694],[-122.45699358007818,50.43387500008746],[-122.45681801854063,50.4337316226747],[-122.45664039152517,50.43359211944191],[-122.45645542500817,50.43345632178738],[-122.45625749342865,50.43332853917483],[-122.4560539810715,50.43320450928047],[-122.4558485793669,50.43308210992663],[-122.45563957472712,50.432960719520985],[-122.45543237287991,50.43283882852009],[-122.45522701892516,50.432715862588026],[-122.45502355585799,50.43259127431113],[-122.45482743378025,50.43246298883281],[-122.4546314453411,50.43233301584653],[-122.4544335238431,50.43220522980106],[-122.4542244833533,50.43208439299456],[-122.45399487214199,50.43197865091171],[-122.45380781041936,50.431847270436194],[-122.45364303443048,50.4317014251409],[-122.45348564375789,50.43155131747818],[-122.45333005576647,50.431400709414206],[-122.45316893134353,50.43125328868737],[-122.45299136906598,50.431113222783964],[-122.45277099667032,50.43100214148267],[-122.45254513091336,50.43089369985847],[-122.45231724384313,50.43078856680454],[-122.45207788432955,50.43069487872987],[-122.45183483438824,50.430603312149415],[-122.45158985047479,50.43051394126351],[-122.4513447355944,50.43042624799338],[-122.45109588577967,50.43034124154154],[-122.45084101320475,50.430265605184864],[-122.45057435933676,50.430205335252246],[-122.45031575178093,50.43013239400267],[-122.45006870713848,50.4300468851137],[-122.44983898402015,50.42994281232732],[-122.44962627412274,50.42982409744738],[-122.44944499251665,50.42968671294048],[-122.44929487441442,50.429534024257585],[-122.44921547507155,50.42935604374647],[-122.44901946534989,50.4292491084373],[-122.44876139530491,50.42916943286256],[-122.44854869188062,50.42905071580192],[-122.4483638565457,50.4289137821201],[-122.44818451677406,50.42877420818565],[-122.44799203526954,50.428644891929416],[-122.44776452325084,50.42853526215187],[-122.44750214935206,50.42846556682646],[-122.44722908138014,50.42844219441265],[-122.44694783465279,50.42843317892079],[-122.44666425661738,50.428431393369124],[-122.44637887630425,50.428430116105474],[-122.44609754150272,50.428422220225706],[-122.44581497896647,50.42840753665955],[-122.4455354816546,50.42842106567327],[-122.44525857183203,50.42844648977637],[-122.4449794628791,50.4284774566674],[-122.44470202227468,50.42850960998047],[-122.44442462580918,50.42854119722808],[-122.44414876618352,50.4285756401023],[-122.4438742213517,50.4286157564899],[-122.44360099262794,50.428661528451805],[-122.44333088084521,50.428712464981324],[-122.44306537853613,50.428771987805824],[-122.44280290527584,50.42883778803848],[-122.44253599807138,50.428892757139565],[-122.44226330474852,50.42881990204211],[-122.442039929675,50.42872501275453],[-122.4420734564317,50.42854559475882],[-122.44198467941361,50.42837517907499],[-122.44188887195932,50.42820453756723],[-122.44183578224829,50.42802851968074],[-122.44181117085154,50.427848917560674],[-122.44182356094137,50.42766937867214],[-122.44184473967583,50.4274901218922],[-122.44183599277655,50.42731046215593],[-122.4418219720356,50.42713064206183],[-122.44179389029291,50.426950361505746],[-122.4417833414146,50.426771210583965],[-122.44183936433326,50.42659701289067],[-122.44192869554567,50.42642500007522],[-122.44200405218135,50.426251422937945],[-122.44204627800573,50.42607339932811],[-122.44207272816888,50.425894311428536],[-122.44208867589602,50.42571432852844],[-122.44209051826051,50.4255344505741],[-122.44208001309663,50.425354733992556],[-122.44205184230765,50.42517558384578],[-122.4419988000816,50.42499900000064],[-122.44193688092273,50.42482326469167],[-122.44190335041019,50.42464505789775],[-122.44188757259727,50.424465180784765],[-122.4418788699675,50.42428496397595],[-122.44186660831903,50.424105190664356],[-122.44184191052095,50.42392670944303],[-122.44173521374634,50.42376021535733],[-122.44157789030042,50.42361008931626],[-122.4414656126353,50.42344735628816],[-122.4414001386496,50.42327206386538],[-122.44134187233374,50.42309475357571],[-122.44123112231054,50.42277855523175],[-122.44104193606837,50.422652704145385],[-122.44083284258053,50.42253352781276],[-122.44060920300514,50.42242007370219],[-122.44037813670504,50.422311436796775],[-122.44014685073323,50.42220559933771],[-122.43991147542613,50.42210694446395],[-122.43966075776981,50.42202410753626],[-122.4394081957384,50.421942326361716],[-122.43917255798112,50.421847035202624],[-122.43896009048139,50.421726064103765],[-122.43875689873641,50.421599200746016],[-122.43853071575475,50.42149577280401],[-122.43827538311493,50.42142683737364],[-122.4380026844936,50.4213770284135],[-122.4377261620244,50.42133102750026],[-122.4374554883555,50.42127789939676],[-122.43718423954813,50.421232066626544],[-122.43690577107049,50.42121074261828],[-122.43662312345639,50.4211977226492],[-122.43634183539376,50.421189801955975],[-122.43606014929044,50.42118692402709],[-122.43577801970892,50.421189663205716],[-122.43549781156743,50.42121269760547],[-122.43522184266064,50.42127129765523],[-122.43512873918428,50.42126774484419],[-122.43519498630702,50.42107587471094],[-122.43519861340953,50.42089605236645],[-122.43524613276396,50.420718208737725],[-122.43522866999497,50.42053770788951],[-122.43515425995616,50.420364372007654],[-122.43497850983819,50.420224888309654],[-122.43481388165924,50.42007844756537],[-122.43468010486013,50.419920637300386],[-122.43455547125356,50.419758613516144],[-122.43444520771382,50.41959312023134],[-122.43434751274076,50.41942465733556],[-122.43425878278052,50.419254233530054],[-122.43417550291927,50.41908173573093],[-122.43409393644536,50.41890985975843],[-122.43401061390239,50.41873791816004],[-122.43393265206129,50.41856503333259],[-122.4338672590281,50.41838917002232],[-122.43381632388943,50.418208715610156],[-122.43374543784479,50.41803549139464],[-122.43360933785996,50.41788490991216],[-122.43340257507707,50.41775904478743],[-122.43320319733597,50.41762891843746],[-122.43300246184232,50.41749369164702],[-122.4328359154211,50.41734943444227],[-122.43277315609966,50.41718491007104],[-122.43279814636156,50.41700240050323],[-122.43281795308073,50.4168185993935],[-122.43278094983856,50.4166402749147],[-122.4327261958415,50.416463637154784],[-122.43266076587535,50.41628833804563],[-122.4325935351617,50.416113538682154],[-122.43258197704097,50.41592535368914],[-122.43249575554869,50.4157679457805],[-122.43225696059645,50.4156685953374],[-122.43202594889799,50.41555994011637],[-122.43178059850625,50.41547668908325],[-122.43151616922185,50.41541194172083],[-122.43125363059657,50.415345572146954],[-122.43098775626852,50.415276836217686],[-122.4307183675259,50.41520799540505],[-122.43047855925654,50.41512154595341],[-122.43033267318413,50.414983572762594],[-122.43027521444914,50.41479672423122],[-122.43019367125278,50.41462483549601],[-122.43011397388261,50.414451890480294],[-122.43002707157129,50.41428095347284],[-122.42992219831284,50.41411450263823],[-122.42981381141318,50.41394793842666],[-122.42972150620574,50.413778518357304],[-122.42963460596414,50.4136075898726],[-122.42954058964217,50.41343754758114],[-122.42942680082264,50.413272500123234],[-122.4293612108655,50.41309944192028],[-122.42934026021227,50.41291882516959],[-122.42932629436584,50.412738991293004],[-122.42931408507312,50.412559222978025],[-122.42927705443645,50.412381461756546],[-122.42922943726299,50.412203917099234],[-122.42917290139141,50.412027776376085],[-122.42910929275361,50.411851974429936],[-122.42904564061071,50.41167672881032],[-122.42897667362872,50.41150186961261],[-122.42889698642266,50.41132892304689],[-122.42880464599861,50.41116005806156],[-122.42869257868769,50.4109956224201],[-122.42856974753326,50.410833655716225],[-122.42843975621906,50.41067314045022],[-122.4283115228996,50.41051268164525],[-122.42819598957723,50.410347566700764],[-122.42807496374233,50.41018509058837],[-122.42788991265985,50.41005260668785],[-122.42767933258033,50.409931103472836],[-122.42748158540283,50.40980326577759],[-122.42730234193883,50.409664211159715],[-122.42712863622125,50.409521969858105],[-122.42695488757354,50.409380284661566],[-122.42676259343948,50.40925037203868],[-122.42656287325764,50.40912527588732],[-122.42640200362493,50.40897669938786],[-122.42618905412905,50.40886298895967],[-122.42593856862078,50.4087784324866],[-122.42568606069092,50.40869718408895],[-122.42543153029494,50.40861924375389],[-122.42517695673227,50.40854185922928],[-122.42492809832099,50.408459044290716],[-122.42469656417458,50.40835765989911],[-122.42450999589282,50.4082223044172],[-122.42436543782516,50.408068060876026],[-122.42423907214749,50.407906531767665],[-122.424121669814,50.407743042485585],[-122.42400967207035,50.4075780450059],[-122.42390488129423,50.40741102170854],[-122.42381103230815,50.40723929505916],[-122.42378281233042,50.4070618144058],[-122.42377945601261,50.406881762415786],[-122.42379204487,50.406700542660374],[-122.42381860079225,50.40652088940658],[-122.4238763806913,50.40634730950398],[-122.4239951626653,50.4061818888367],[-122.42401982699475,50.40600386586332],[-122.42399174055913,50.40582469782868],[-122.42395126667414,50.40564626349827],[-122.4239001190076,50.405469167004654],[-122.4238455916106,50.40529026985384],[-122.42375859702115,50.4051210131366],[-122.42361400666466,50.40496733339544],[-122.42342952374219,50.40482810151392],[-122.42321866869455,50.40471051976063],[-122.42297788439664,50.404615021963544],[-122.42274461748302,50.40451357627741],[-122.42256523114409,50.40437676562138],[-122.42238782521721,50.40423720244754],[-122.4221771981541,50.40411680968192],[-122.42196468245291,50.40399803793845],[-122.42176346378275,50.40387007560289],[-122.42155653145312,50.40374755153642],[-122.42132071472913,50.403656151011944],[-122.42104422875714,50.403611229271156],[-122.42081039317087,50.40351707546285],[-122.4205978838805,50.40339830101022],[-122.42036629574807,50.4032980376908],[-122.42011378434647,50.403217332450005],[-122.41985798224471,50.40313371309702],[-122.41963369096679,50.403030309986846],[-122.41945638830548,50.40288962010435],[-122.41931393291631,50.402731495007956],[-122.41921979945604,50.40256369419308],[-122.41915435305076,50.40238950585216],[-122.4191068302741,50.40221139822484],[-122.41906826939959,50.402031330934776],[-122.41903493488806,50.40185199037512],[-122.41901038351018,50.40167294270799],[-122.41899466069798,50.401493613585984],[-122.4189825403539,50.40131327622566],[-122.41896150357796,50.4011343330408],[-122.41891573956879,50.40095628184585],[-122.41882886071951,50.400785898556975],[-122.41877422527037,50.40060868502761],[-122.4187231035847,50.40043158502867],[-122.4186006036933,50.40026623978418],[-122.41837039276474,50.4001710722498],[-122.41811394429492,50.40009585745702],[-122.41784795687116,50.40002989766365],[-122.41771118289186,50.40000017373914],[-122.41757959077763,50.399971732904945],[-122.41731051355302,50.39992254177074],[-122.41703541025888,50.39988271916191],[-122.41675999633605,50.39984681762692],[-122.41648287106507,50.39981029319294],[-122.41620754702711,50.39977326849784],[-122.41593213442854,50.39973736490109],[-122.41565667740224,50.39970202599754],[-122.41537937585998,50.3996677423661],[-122.41510383065808,50.39963352386925],[-122.4148261289248,50.39960429136366],[-122.41454667092162,50.3995750012968],[-122.4142711717977,50.39954021534773],[-122.41400843932281,50.39947772538276],[-122.41375402586004,50.39939919196303],[-122.41350150314932,50.39931903664609],[-122.41325663133027,50.39923125580857],[-122.41303079606884,50.39912553838431],[-122.41282215252104,50.39900294039876],[-122.41262629666402,50.39887456597661],[-122.41243980365958,50.39873918857854],[-122.41226429680427,50.39859854333587],[-122.41210346742967,50.39845050053933],[-122.41195349008598,50.398298877164194],[-122.41181080807368,50.39814410686655],[-122.41167726559922,50.39798514274846],[-122.41150950321592,50.3978357495524],[-122.41127649356034,50.39775397148238],[-122.41099075499586,50.397737397651476],[-122.41071373574104,50.397699745890186],[-122.41043469367959,50.3976653928782],[-122.41015738141067,50.397653597650205],[-122.4098782419111,50.39766479377252],[-122.40959821062651,50.39768720700933],[-122.40931940058427,50.397716407174435],[-122.40904036759196,50.39774840660314],[-122.40869813242419,50.39782222722476],[-122.39999960894586,50.39665751253361],[-122.35713201942228,50.39090815449026],[-122.35713049984851,50.385817018549425],[-122.35711298449037,50.38581588440371],[-122.35674422002118,50.38580375091122],[-122.35635011888861,50.38575647356514],[-122.35602904677854,50.38572060515181],[-122.35565668086657,50.385709474208426],[-122.35534022803549,50.38572548454259],[-122.35492422432475,50.38573147727876],[-122.3545630561273,50.38575613591487],[-122.35425465782804,50.38578141523333],[-122.3539085232171,50.385816131514574],[-122.35356797335193,50.38584708958608],[-122.35318598311108,50.38591155749058],[-122.35264570784048,50.38590838274252],[-122.35213764521247,50.38596418603423],[-122.35186372075302,50.386020395560806],[-122.35162016029697,50.386136658079685],[-122.35131272328282,50.38621538146877],[-122.3510226752706,50.38627498973002],[-122.35044489763257,50.38634367631749],[-122.35036299833469,50.386333103620785],[-122.35028113465259,50.386431073602715],[-122.3502518944305,50.38646610132435],[-122.35019206594562,50.386531046495925],[-122.34997581513248,50.386766860947766],[-122.34983674845255,50.386897244831125],[-122.34967535106581,50.387107873343446],[-122.34942552519091,50.3873015314795],[-122.34936254482417,50.38736187335051],[-122.34912972228702,50.3874976051907],[-122.34899785781197,50.38753880453413],[-122.34880748653954,50.387606759733345],[-122.34866557112665,50.38766338256558],[-122.34826605104621,50.38787908640214],[-122.34801424729297,50.38796638422896],[-122.34782754204005,50.388076073964655],[-122.34771847889847,50.38816189762396],[-122.34738860440244,50.3883872109391],[-122.34726913940517,50.38847099944182],[-122.34708810711155,50.3885758093213],[-122.346853082377,50.38876038546675],[-122.34659558169153,50.388874485935666],[-122.34627654364077,50.389030986871795],[-122.34583821580384,50.38926902127699],[-122.34560998179002,50.38930422911715],[-122.34531030066084,50.38946079936181],[-122.3451889820784,50.38954564928779],[-122.34503154662585,50.38970691374624],[-122.34485076253159,50.38983029097899],[-122.34473383025797,50.38988266787231],[-122.34445519807312,50.38999663290464],[-122.34415217755617,50.39015084045081],[-122.34386090029925,50.390246948661854],[-122.34361278332338,50.390310172343504],[-122.34333921621148,50.39038324455835],[-122.34320903373766,50.39044699658855],[-122.34305648928749,50.39048244942682],[-122.34273295889567,50.3905201280442],[-122.34243655745499,50.390527209184626],[-122.34215756666842,50.390558484146375],[-122.34213959645528,50.39056294735208],[-122.34200826091116,50.3905974167722],[-122.34184787277091,50.39064273151252],[-122.34161124139085,50.39069452503711],[-122.34111078566399,50.39085119950712],[-122.34077370030361,50.39094746887804],[-122.34050925318434,50.3910382736365],[-122.34025257100521,50.39116363442755],[-122.34000285321645,50.39124648479562],[-122.33950385355011,50.391428502522906],[-122.3391455906302,50.391590435629176],[-122.33878245385138,50.3917038337403],[-122.33869467141008,50.39172230140901],[-122.33837568151354,50.391812422629464],[-122.33821890596218,50.39183479012591],[-122.33798094009622,50.39196808009291],[-122.33765572383571,50.39206979867201],[-122.33751169542884,50.39208696308855],[-122.33737827774368,50.39212529044201],[-122.33705490619535,50.39222594359508],[-122.33695843176298,50.392242997680775],[-122.3367991064072,50.39229678058002],[-122.33672982207598,50.392325981315814],[-122.33641179986896,50.392490919759915],[-122.33623149923727,50.392586181161796],[-122.33563365564889,50.392944312277926],[-122.33534946789122,50.393082806793274],[-122.33502295441701,50.393156923421714],[-122.33475560808088,50.39323973688401],[-122.33442285967304,50.39328215272455],[-122.33436118944357,50.3933042887706],[-122.3340392291326,50.39347415618965],[-122.33399158957457,50.39351869343779],[-122.33377149233678,50.39369192321478],[-122.33370287493256,50.393777948074174],[-122.33345972304548,50.39399652830404],[-122.33327140971356,50.39412526200759],[-122.33312858972911,50.394192516376364],[-122.33282952826366,50.39427540898805],[-122.33253057060648,50.39429193561151],[-122.33241732654993,50.39432024480551],[-122.33207298936044,50.39441849807614],[-122.33169890379112,50.39449271223846],[-122.33114986708219,50.394552698200705],[-122.33095284444454,50.39459340986228],[-122.33076635943482,50.39463447032669],[-122.33060373378306,50.394685318982106],[-122.33039628817781,50.394745929661816],[-122.33017878452192,50.39482195303733],[-122.32982773612234,50.39495934310308],[-122.32951885463545,50.39503290369346],[-122.32924163232786,50.39510694597233],[-122.32902289471329,50.39519810577687],[-122.32869843139521,50.39526833129174],[-122.32837311964381,50.395283982274286],[-122.32829725576464,50.395307336112594],[-122.32798061278699,50.39534632608221],[-122.32775114721606,50.39535277209077],[-122.32764271060876,50.3953868596813],[-122.32748804172398,50.39549138853781],[-122.3273219436339,50.395584857604874],[-122.32704181750138,50.39567286204118],[-122.32676112044928,50.395746216208316],[-122.3264870139693,50.39580348403244],[-122.3262848719873,50.39582039824051],[-122.32620446685591,50.395834602108124],[-122.32589228920729,50.395905227204466],[-122.3256262098567,50.395950387089854],[-122.32538234676213,50.39598222870997],[-122.32518798141027,50.39605506929],[-122.32491010690308,50.39613695264709],[-122.32463971327452,50.39621345988375],[-122.32431368234292,50.39634604869604],[-122.32410266262784,50.39640708725162],[-122.32383550645501,50.396443776144736],[-122.3234905885032,50.39650543468254],[-122.32329551385568,50.39652201131087],[-122.3232238424926,50.39653706990035],[-122.32294486881966,50.39658910177758],[-122.32263268086972,50.39665971762681],[-122.32228794228831,50.3967191289811],[-122.32208412564546,50.39677816252147],[-122.32187919217277,50.39682927639517],[-122.32158362627305,50.396933625905056],[-122.32144999427857,50.39701747533738],[-122.321196936712,50.39720534218195],[-122.32099845229777,50.39728535421998],[-122.32091231249328,50.39734828577845],[-122.32075411295641,50.397409390243546],[-122.32052000080188,50.397451101258866],[-122.32030028495085,50.39746742097082],[-122.32012814932017,50.3975050087568],[-122.32003559589474,50.397581790383846],[-122.31984432486556,50.3977677662018],[-122.31967733471198,50.39787187528917],[-122.31950380051232,50.3979482148995],[-122.31919182595843,50.39801602115468],[-122.31886329229383,50.398070894965414],[-122.31874636107804,50.3980793805508],[-122.31841873996042,50.398123044942096],[-122.318095069858,50.398139836824846],[-122.31782856571682,50.39814672305748],[-122.31764823795986,50.398176719396325],[-122.31747000500158,50.398224223175575],[-122.31733960785243,50.398268251446176],[-122.31716396461516,50.39837038658523],[-122.31695743599165,50.3984624963983],[-122.31684022078065,50.39851764306701],[-122.31651248536784,50.39864902843227],[-122.31641169934238,50.39867547766106],[-122.31614993916176,50.39877531388636],[-122.31601379408754,50.39880340301551],[-122.31579900964459,50.398867117469464],[-122.31565448371173,50.39893316878781],[-122.31530447518871,50.39907842250052],[-122.31494728314381,50.399203757561736],[-122.31463487053375,50.39931990097154],[-122.31434897015517,50.399413297109795],[-122.31396533929181,50.39960355154711],[-122.31375460447838,50.39976862426871],[-122.3135371053425,50.39997339549787],[-122.3135155402477,50.40000023852209],[-122.31346640871995,50.4000627137837],[-122.31326077328146,50.40025157503172],[-122.31313006289932,50.40032089046066],[-122.31285414211646,50.400421372624066],[-122.31248738843708,50.400577307875494],[-122.31213513889823,50.40066343267869],[-122.31201566427534,50.400681391569854],[-122.31176683358744,50.40073046789889],[-122.3116782897844,50.40075788754133],[-122.31147173907681,50.40084998685812],[-122.31117900905413,50.40091897015032],[-122.3110560981309,50.4009789871484],[-122.31071346581123,50.40107667538256],[-122.3106348186365,50.40111229711171],[-122.31033799308132,50.401274495955924],[-122.31014903454019,50.401474587920305],[-122.30994188138172,50.401573979809335],[-122.30981634016572,50.40164458847662],[-122.30953553106563,50.401783141307],[-122.3092549347795,50.40189751396217],[-122.30907259949208,50.40199491490873],[-122.30893770792844,50.40205058931253],[-122.30866367645686,50.40217080305044],[-122.30836138370485,50.40233506414653],[-122.30816902351097,50.402447318153975],[-122.3078713239062,50.40264153240929],[-122.30756492962075,50.402834340303244],[-122.30753859451255,50.40285483260129],[-122.30751648913369,50.40290976622699],[-122.30741111305322,50.40307833976871],[-122.30729197231302,50.403264450276474],[-122.30720660930153,50.403360582190714],[-122.30703958259214,50.40348605115869],[-122.30685292967152,50.40357149032773],[-122.30642675611537,50.403699565038636],[-122.30616534447539,50.40377295430218],[-122.30594944840679,50.403892850871074],[-122.3057266758636,50.40403219629094],[-122.30541028673265,50.40423928689237],[-122.30534195400419,50.40429942667273],[-122.30507219891574,50.404496257488084],[-122.30483799542043,50.40462453928766],[-122.30457311358172,50.40478329007848],[-122.3044564095034,50.404896370347736],[-122.30424143830703,50.40511246506737],[-122.3040076464975,50.405321740787706],[-122.30367076082703,50.40560686610409],[-122.30349062660305,50.40572007823508],[-122.30322393060291,50.40587933228942],[-122.30306925109777,50.4060473811645],[-122.30296559584495,50.40619463784465],[-122.30290825653016,50.40624951935652],[-122.30275641088897,50.40644747268563],[-122.30258008550936,50.406686215354064],[-122.30245912326635,50.40680814942769],[-122.30228853493408,50.40697679093754],[-122.30222657734627,50.407045023902974],[-122.30197080101084,50.40724287199806],[-122.30163944553858,50.407460133297135],[-122.3013898413709,50.407625577519696],[-122.30129980781386,50.40767093550571],[-122.30109643120916,50.407745126484585],[-122.30081634117226,50.40778806984431],[-122.30069094054038,50.40783506268359],[-122.30056262369312,50.40787464264191],[-122.30037086456174,50.407979021618196],[-122.30026502871642,50.40804522124029],[-122.30022055357628,50.40813653197038],[-122.3001313171078,50.408301138856515],[-122.3000496480919,50.40843787974258],[-122.29999476623873,50.40861318978138],[-122.2999638144449,50.408754440908446],[-122.29991772668113,50.408951414767806],[-122.29979959272214,50.40921065951749],[-122.29963986290986,50.40931105027308],[-122.29944859039952,50.409387892219385],[-122.29916220607187,50.409443002650725],[-122.29898968586262,50.4094844784219],[-122.29877487300642,50.40954759371272],[-122.298577801467,50.40958769070873],[-122.29834040439562,50.40960393598076],[-122.29790803231917,50.4096991549064],[-122.29761456153678,50.40973321231118],[-122.2971994339134,50.409832936992714],[-122.29699150607722,50.40989797068945],[-122.29673996884846,50.40993623489344],[-122.29654468807527,50.409954451160026],[-122.296273814855,50.40997070670265],[-122.29603983670077,50.409988186189],[-122.29564186127267,50.409986126597374],[-122.29528951001879,50.40996478799499],[-122.2951025825724,50.409945597513094],[-122.29490677812161,50.40992724356253],[-122.29381327186935,50.40992103361805],[-122.29351428857305,50.409936333013555],[-122.29326810272848,50.40995228248371],[-122.29298530656865,50.40998499334691],[-122.29274426032688,50.41002416654274],[-122.29238377386072,50.41014482291431],[-122.2922058355755,50.41018779868445],[-122.29204940129443,50.41024779833047],[-122.29194789071349,50.410304012423424],[-122.29171960859311,50.41050950696502],[-122.29159590880245,50.41057847500267],[-122.29147301105402,50.410702024670385],[-122.29139555577032,50.41080853258292],[-122.29109038493239,50.41102776527343],[-122.29079246328784,50.4112230532416],[-122.29062626243287,50.411423317801976],[-122.29036902753245,50.41163797199309],[-122.29026401589367,50.411758178156184],[-122.29005812630497,50.411905374349246],[-122.28995920767174,50.41199429126722],[-122.28978488975368,50.41212173188322],[-122.28966816971278,50.41221286875605],[-122.2894871445135,50.41233615216528],[-122.28923085071061,50.412474910216964],[-122.2890991298966,50.412491301562795],[-122.2890656552732,50.41249130504441],[-122.28899515103568,50.41251313002585],[-122.28886806095846,50.41255891972662],[-122.28855999634061,50.41257728539697],[-122.28837963294336,50.4125852978276],[-122.28769031439872,50.41263362807711],[-122.28736713738691,50.412685784488424],[-122.28705333992464,50.41270956866372],[-122.28624919755975,50.41291150706125],[-122.28603993609751,50.41292811192722],[-122.28572822741432,50.413012141196745],[-122.28550445178811,50.413055252527926],[-122.28531669621775,50.41311025181521],[-122.28508294216897,50.41321039012886],[-122.28473645901796,50.41328875164506],[-122.2843828013847,50.413325822511055],[-122.28410103578946,50.413324245590715],[-122.28384655725375,50.41337644665],[-122.28359092731509,50.413464033752874],[-122.28317764292834,50.413668938447806],[-122.28296020003816,50.41374205872513],[-122.28271575652391,50.413843525247756],[-122.28252716548286,50.41392998505264],[-122.2823606341559,50.4140694903262],[-122.28206385258223,50.41422881117505],[-122.28188747169693,50.414380915405346],[-122.28173272561995,50.41450563561291],[-122.28149147567332,50.41471799047149],[-122.28137954218808,50.414814894529265],[-122.28127075205677,50.41491641199591],[-122.28107476599041,50.41513534213298],[-122.28095377054932,50.41527806547411],[-122.2809099891632,50.41536038544307],[-122.28076666068029,50.4155175385736],[-122.28058795816229,50.41567632038801],[-122.28042765631874,50.415804217593255],[-122.28023013207846,50.41595617633569],[-122.27997434383435,50.41608818246418],[-122.27978680173773,50.416183113220555],[-122.27968281392086,50.41629041419819],[-122.2796230313827,50.41639581618279],[-122.27957712275634,50.41656805339598],[-122.27941293619939,50.41682853952104],[-122.2793430718254,50.41694935830732],[-122.27926876997888,50.417102636837114],[-122.27915063227641,50.41729606802529],[-122.27906587803282,50.417426500348135],[-122.27896410837435,50.417635102766646],[-122.27883093969302,50.41781846389891],[-122.27859650566583,50.41818288293742],[-122.27842874494839,50.41835833323671],[-122.27834051886005,50.41853083100917],[-122.27814524239373,50.41871941155201],[-122.27802727992193,50.418846487064236],[-122.27783717980111,50.41901499545026],[-122.27758696221849,50.41914325138906],[-122.27737322914344,50.41923504891267],[-122.27719709057733,50.419362409548604],[-122.27691172411691,50.419532223613885],[-122.27664078373326,50.41971938399934],[-122.27631263755714,50.41991643570585],[-122.27617954520963,50.42005593102128],[-122.27580908211733,50.42023188053272],[-122.27566526044373,50.42033052363334],[-122.27524965371627,50.42062641807001],[-122.27500811247967,50.42077745513855],[-122.2748001897081,50.42092680554296],[-122.27458043018599,50.42102739335619],[-122.27436926948091,50.421151889624475],[-122.27198744831755,50.420376117353385],[-122.26986182444726,50.42272786753377],[-122.27278442109431,50.42380642270858],[-122.27309052008168,50.42391963669415],[-122.27429796083754,50.42436458013047],[-122.29670913637378,50.4353585923554],[-122.29683630087142,50.435462940084285],[-122.29703444377122,50.43560452481848],[-122.29715326189294,50.43576764510446],[-122.29725228463806,50.43593571851564],[-122.2973530196377,50.43610441582671],[-122.29746647448093,50.43626848115509],[-122.2975979237454,50.436428081636535],[-122.2977494935779,50.436578789378736],[-122.29792284926357,50.436721793622944],[-122.29809625168437,50.43686424123939],[-122.29824782464318,50.43701494821905],[-122.29838658662491,50.43717141752953],[-122.2985197997173,50.437331075441676],[-122.29864399361017,50.43749324824595],[-122.29875565303918,50.437657809605184],[-122.29885468589089,50.43782588119066],[-122.29893225507021,50.43799774384299],[-122.29899543938058,50.43817305809878],[-122.2990549705856,50.438349932862195],[-122.2991181095025,50.43852581227492],[-122.29919017727626,50.4387002981236],[-122.29926039561064,50.4388758468332],[-122.2993377849036,50.43904994327179],[-122.299433306191,50.43921790564839],[-122.29955954325747,50.43937676185949],[-122.29970927878263,50.43952853829398],[-122.29987349389587,50.43967573209151],[-122.3000449725606,50.439820351753305],[-122.3002147398843,50.43996435612075],[-122.30040092820055,50.440101602107326],[-122.30059798825025,50.44023526955883],[-122.3007734472587,50.44037439716361],[-122.30090186374977,50.44052826742205],[-122.3009651511933,50.440702458371405],[-122.30100133219618,50.440884742400335],[-122.30105731229547,50.44106206347385],[-122.30113480347015,50.4412350455264],[-122.30121761591099,50.44140763815708],[-122.30129871720513,50.44157960673041],[-122.30137264834092,50.4417530275229],[-122.30142159844739,50.44193011360203],[-122.30145454181324,50.442108915003374],[-122.30150705451886,50.442285561944196],[-122.30155776388219,50.44246270649848],[-122.30159075451137,50.44264094243915],[-122.3016112536277,50.44282102000878],[-122.30161944642728,50.44300067800673],[-122.3016170438722,50.443180549361244],[-122.30161274483721,50.44336204895562],[-122.3016014137241,50.44354330493209],[-122.30157087984075,50.44372223774512],[-122.30150915766407,50.44389450662676],[-122.3014021811475,50.44405964229717],[-122.30126910637728,50.4442205331061],[-122.30113778888564,50.44438148238164],[-122.30102895967062,50.44454768056163],[-122.30096876228131,50.44472281618044],[-122.30093119210666,50.44490151391104],[-122.300874464762,50.44507732305143],[-122.30081246219477,50.44525295613449],[-122.30078548691259,50.445431440378236],[-122.30076549816461,50.44561072453175],[-122.3007472211895,50.445790632605345],[-122.30072273684466,50.44604624584945],[-122.30072555983553,50.44622684882376],[-122.30072121131275,50.44640890402216],[-122.30072579189668,50.44658957455276],[-122.3007553575838,50.446766570874075],[-122.30082411211063,50.446938693297454],[-122.30092146029459,50.44710614611012],[-122.30103657651152,50.44727194215328],[-122.30115530222197,50.447436733734946],[-122.30126505312892,50.44760347512288],[-122.30135333672892,50.447773999007524],[-122.30142010645766,50.44794887073564],[-122.3014743849285,50.44812556609035],[-122.30152329599946,50.448303216019816],[-122.3015525437458,50.44848414191686],[-122.30159446827835,50.44866099183246],[-122.3017027412193,50.4488243090174],[-122.30186320399665,50.44897474573692],[-122.30202019735486,50.44912449961107],[-122.30217908770766,50.449272633930434],[-122.30233978312538,50.44942027030954],[-122.30250223875983,50.44956795609221],[-122.30266298261468,50.449715026651994],[-122.3028145212958,50.44986685557936],[-122.30295514337091,50.4500228100101],[-122.30308665207487,50.450182401259156],[-122.3032001631226,50.45034645785233],[-122.303277679175,50.450519427439716],[-122.30334085155617,50.45069530178885],[-122.30343974625518,50.45086560979903],[-122.30345877371016,50.451042261704565],[-122.30344763189476,50.45122127289975],[-122.30342940965701,50.451400614864745],[-122.30340757834536,50.45158096116315],[-122.30338755096373,50.45176080971561],[-122.30337631677807,50.45194094236309],[-122.30337040368389,50.452120694513326],[-122.30337152469482,50.45230068111258],[-122.30337967989504,50.45248090216049],[-122.30336039951845,50.45267314692861],[-122.30334098147533,50.45286706958775],[-122.30336153853906,50.45304657925129],[-122.30346408084755,50.45319395669598],[-122.303644908016,50.453311327711255],[-122.30386941252961,50.45341215928811],[-122.30412306627346,50.4535015903739],[-122.30439129549478,50.45358531633596],[-122.3046577208092,50.4536695483346],[-122.30490961896362,50.45375891899252],[-122.30516193116318,50.453843246274566],[-122.30541419874068,50.45392812929685],[-122.30563288329495,50.45403551116732],[-122.3058085488613,50.45417295048448],[-122.3059599756729,50.454326452217096],[-122.30610395605969,50.4544847621925],[-122.30624821225558,50.45463971606976],[-122.30637081545531,50.454800687569424],[-122.30632974098297,50.454979267741905],[-122.3062764930141,50.455155759888626],[-122.30622148670382,50.455332184421295],[-122.30616647922889,50.45550861786105],[-122.30610614974593,50.45568543182049],[-122.30605641816547,50.45586203189155],[-122.30605407816154,50.45604134414762],[-122.30608885515744,50.4562196343247],[-122.30613247149238,50.456397661021974],[-122.30617076575395,50.45657607722392],[-122.30618786462006,50.45675490308871],[-122.30619075570056,50.45693494720181],[-122.30618480686482,50.45711526368175],[-122.3061789042749,50.457295014827615],[-122.30611019244823,50.4574664837617],[-122.30591801892122,50.45759504363856],[-122.30567898772902,50.457692800844264],[-122.30545981993494,50.45780640684889],[-122.30524569799273,50.457922987725944],[-122.30502819560758,50.45803776407742],[-122.30480407017234,50.458147262823765],[-122.30457674736664,50.458252722744014],[-122.30434761914147,50.45835867989766],[-122.3041268705307,50.458469972375674],[-122.30392112195211,50.458591895384565],[-122.303723661035,50.45872027544369],[-122.3035244865297,50.45884803122048],[-122.30330354890818,50.45896157418563],[-122.30310640674703,50.4590860229696],[-122.30298880088976,50.45925137058971],[-122.30289554249823,50.45942089471675],[-122.30282130828319,50.459594993781444],[-122.30275577569462,50.45977050752459],[-122.30271481994743,50.45994740733386],[-122.3027548632906,50.46012587358812],[-122.3028217030557,50.460300176503054],[-122.3028938655067,50.460474098911085],[-122.30297135143881,50.46064763182922],[-122.30305068877296,50.46082010167617],[-122.30313720048888,50.46099111903554],[-122.30322722989094,50.46116226251204],[-122.30331735264222,50.46133227530029],[-122.30340562451107,50.461503359937254],[-122.30348677024331,50.461675322621566],[-122.30355893745492,50.46184924430091],[-122.3036221731172,50.462024550729616],[-122.30368365034653,50.46219979846763],[-122.30374151826842,50.46237605050701],[-122.30383344991044,50.46254556492043],[-122.3039432937702,50.46271173524601],[-122.304053184029,50.462877349112844],[-122.30413785187827,50.46304943722282],[-122.30423154534454,50.4632190097745],[-122.30439911631143,50.46339104365537],[-122.30457057413054,50.46355870803604],[-122.30464244790325,50.46369324629663],[-122.30443047627975,50.463740168117944],[-122.30409192397558,50.46373900993195],[-122.3038086355895,50.463730694953696],[-122.30352944145662,50.46375850501929],[-122.30328749803718,50.46384828787188],[-122.30305671693789,50.46395250508656],[-122.3028357994979,50.46406548111522],[-122.30263502380194,50.46419093261689],[-122.3024780492647,50.46434147086683],[-122.30236913124911,50.464508222559566],[-122.3022449323126,50.46466772572863],[-122.30205595925662,50.464799759851665],[-122.30185166007142,50.46492509253812],[-122.30165240653113,50.465053409260086],[-122.30145986569165,50.46518589029428],[-122.30128098247553,50.465323882917666],[-122.3011565941989,50.4654856189324],[-122.30100326670174,50.4656345852849],[-122.30081743607542,50.46577122085117],[-122.30063155795244,50.465908421368454],[-122.30042919288844,50.466031566735474],[-122.30019681899111,50.466133475861604],[-122.29994629126296,50.46622014933263],[-122.29968691031354,50.46628572510976],[-122.29940416933333,50.46629203834835],[-122.29912405120166,50.46626638987709],[-122.29884448643854,50.46623400215251],[-122.29856575982213,50.46621289734592],[-122.29828797449949,50.46622330493196],[-122.29801099067502,50.4662669207676],[-122.29773001820743,50.466294657455336],[-122.29748396954474,50.46636967051963],[-122.29727784506173,50.466495501114565],[-122.29708875772758,50.466628648077624],[-122.29690462383316,50.466765900930255],[-122.29673062929959,50.46690854849481],[-122.29657719025153,50.46705863006476],[-122.2964525039983,50.46722372523841],[-122.29633966932893,50.46739484829895],[-122.29622025864796,50.467560119340774],[-122.29607412857601,50.46770707025843],[-122.29587437700764,50.46781961515787],[-122.29561438169907,50.467892476117115],[-122.29533438234962,50.467951163425745],[-122.29507114358096,50.46802054083376],[-122.2948114230245,50.46809002615262],[-122.29454396545277,50.46814632326299],[-122.29426510698029,50.46816962352182],[-122.29398097078482,50.468192746769915],[-122.29371114520555,50.46823490895508],[-122.29348532118588,50.46834263782157],[-122.29328436181487,50.46846975861631],[-122.29308682743088,50.46859811818298],[-122.29289262584167,50.46872883812623],[-122.29269846886386,50.46885900140173],[-122.2925122309609,50.469000108867284],[-122.29231964719564,50.46913256442954],[-122.29208218552856,50.469210102411814],[-122.291793594219,50.46922294936116],[-122.2915230690036,50.4692735135797],[-122.29126328928247,50.469343555770095],[-122.29100332424782,50.469415840515765],[-122.29074354290093,50.469485881477716],[-122.29050460040622,50.46958136139842],[-122.29030529405232,50.46970965701504],[-122.29016210251987,50.46986344691675],[-122.29003756887205,50.47002630011946],[-122.28990965468316,50.470187348620925],[-122.28974956057371,50.470332133201445],[-122.28951038039482,50.47043041932429],[-122.28926480908659,50.47052060949856],[-122.2890291918413,50.47061844697387],[-122.28883334866497,50.470747422757],[-122.28865264555999,50.4708853352307],[-122.28842837081015,50.47099535547359],[-122.28823590466537,50.47112612574199],[-122.28809256272334,50.47128159956123],[-122.28800274205129,50.47145122637439],[-122.28794056082873,50.47162796809949],[-122.28789064752702,50.47180568709061],[-122.28784596588724,50.471984138923816],[-122.28772873295455,50.47214385086993],[-122.28750778285671,50.47225623894806],[-122.2872769688755,50.472359856999596],[-122.2870912079091,50.472494781600304],[-122.28692382806247,50.47264213460655],[-122.28678922754786,50.47279845716045],[-122.28673574395964,50.472976613909935],[-122.28664596062958,50.473145682968386],[-122.2864769099551,50.47329185472112],[-122.28623807648383,50.47338564713438],[-122.28602077422522,50.473496463016865],[-122.28585366433916,50.47364044950389],[-122.28569312882289,50.473790279187796],[-122.28552254465701,50.473933582049334],[-122.28535191283639,50.47407744989637],[-122.28520165308963,50.474230996945195],[-122.28504801181896,50.474382748066816],[-122.2848375086783,50.4744965965861],[-122.28458357037461,50.474580882493036],[-122.28435621071574,50.47468516831209],[-122.28416705094637,50.47481829191822],[-122.28397275016441,50.474949560525914],[-122.28375020320694,50.47505962969512],[-122.2834874598809,50.47512224960596],[-122.28349864013339,50.47528625869584],[-122.28361547704216,50.475452691221896],[-122.28369296115211,50.47562566910183],[-122.28379377991281,50.47579381411723],[-122.28389460016439,50.47596195003353],[-122.2839507414437,50.47613702888244],[-122.2839781773288,50.47631789423862],[-122.28402181830275,50.47649480361712],[-122.28411537165185,50.4766655118868],[-122.28425605845774,50.47682092852936],[-122.28444262759683,50.476954830312756],[-122.28464748621397,50.477080904682516],[-122.28483586365533,50.477214299408885],[-122.28498914834901,50.47736676271049],[-122.28509548573469,50.47753227451038],[-122.28517830343989,50.477704871341565],[-122.28524681502381,50.4778797962482],[-122.28530287152265,50.478055995566535],[-122.285339342282,50.47823435525801],[-122.28536868352805,50.47841359187083],[-122.28539983038266,50.47859233104402],[-122.28543449657656,50.47877118797823],[-122.28548347012794,50.4789477166626],[-122.28553596392214,50.479124354120266],[-122.28558308627808,50.47930194534714],[-122.28563025557845,50.47947897124572],[-122.28566770327167,50.479666918241236],[-122.2856932076393,50.479871335263915],[-122.28575833966731,50.480023095080625],[-122.2859691561683,50.47996997786156],[-122.28623623255054,50.47991931005936],[-122.2864671298218,50.480029381604396],[-122.28670733395931,50.48013358294892],[-122.28696188946,50.48021351249382],[-122.28719936202093,50.480308057191785],[-122.28741174384619,50.48042875361537],[-122.28759449513466,50.480566452755944],[-122.2877100171805,50.48072776948467],[-122.28779090640533,50.480902547949924],[-122.28798523447495,50.48102826234512],[-122.28822257457867,50.48112449159527],[-122.28846357386695,50.48121915120422],[-122.2887046665015,50.48131268871298],[-122.28894585246492,50.481405104121436],[-122.28918875328137,50.481498134137276],[-122.28942799693074,50.48159273276507],[-122.28966895472362,50.48168795497323],[-122.28990820038624,50.481782552544374],[-122.29015110521877,50.481875580412336],[-122.2903942414198,50.481965808307976],[-122.29064122059609,50.482052232307694],[-122.29089033027128,50.48213421932692],[-122.2911472635828,50.482206912201924],[-122.2914102607192,50.48227025207106],[-122.29167899972835,50.48232815092012],[-122.29194602549079,50.482385434016166],[-122.29221282093673,50.48244552487132],[-122.29247744266434,50.48251059885672],[-122.29274572328835,50.4825741029454],[-122.29301187529984,50.4826420428411],[-122.29326117698837,50.482721781347635],[-122.29348029456995,50.48282526233189],[-122.29364108175868,50.48297289619994],[-122.29379038877752,50.48313140182913],[-122.293969605278,50.483269528773796],[-122.29416169352979,50.48340134633389],[-122.29435748752702,50.4835310289581],[-122.29455508812708,50.483660213678405],[-122.29475824569012,50.48378620959291],[-122.29495043063085,50.483916904137324],[-122.29511863430673,50.48406028441082],[-122.29525928989297,50.48421680726127],[-122.29537813743787,50.484381041188314],[-122.29546651720658,50.48455099672181],[-122.29552966107117,50.484727424406074],[-122.29561438386757,50.48489894909757],[-122.29574244865127,50.485058424673774],[-122.29588310951343,50.48521494654155],[-122.29601830757593,50.48537353512508],[-122.29614994049308,50.48553257131396],[-122.29625990417472,50.48569762295297],[-122.29635000323559,50.485868201509376],[-122.29644010297775,50.486038779956885],[-122.29655002251107,50.486204396474704],[-122.29667253829447,50.48636705923512],[-122.29680607486526,50.486524466342956],[-122.29698151718078,50.48666584407091],[-122.29718663919981,50.48678965066674],[-122.29742194727244,50.48688972184904],[-122.29766290453321,50.48698548238843],[-122.2979075668264,50.48707911667478],[-122.29815042455691,50.487173248005845],[-122.29838944077059,50.48727119136471],[-122.29861739170518,50.487374955126946],[-122.29883052843057,50.48748721243129],[-122.29901199729646,50.48761979033248],[-122.2991544838159,50.48777580098263],[-122.29928391444781,50.48794038212827],[-122.29942089256073,50.48809902472171],[-122.29955615811043,50.488257043166016],[-122.29972488375796,50.4884589221066],[-122.3000914336352,50.4885082554263],[-122.30035244466896,50.48857487068153],[-122.30063334565186,50.48859267335736],[-122.30091341917428,50.488620560445725],[-122.30119701221074,50.48864857310784],[-122.30146875815495,50.488691926106206],[-122.30172213391533,50.48876559819681],[-122.30196528400995,50.48885636526454],[-122.30220228141215,50.48895760627386],[-122.30243173431423,50.48906477635841],[-122.30265391803005,50.48917451983454],[-122.30281391715823,50.48931087394164],[-122.30309171807315,50.489323501591095],[-122.30338243729649,50.489329244209145],[-122.30364808093394,50.489382519058594],[-122.3038985084826,50.48947070788192],[-122.30414745292303,50.4895554728211],[-122.30442409384075,50.4895607438521],[-122.3046696573397,50.48964371254044],[-122.30491277249061,50.48973502935591],[-122.30515200084503,50.48983071471847],[-122.30539285268266,50.48992813600802],[-122.30563208307937,50.49002382031394],[-122.30587321202816,50.49011788480724],[-122.30611045499676,50.4902163089147],[-122.30633080139349,50.490327107872815],[-122.30653420568756,50.4904508380751],[-122.30672812126326,50.49058269130318],[-122.30692027866766,50.4907144766356],[-122.30711979864782,50.49084257485232],[-122.30732839568965,50.49096760077017],[-122.30752972357996,50.491095200469786],[-122.3077128095553,50.49123005628381],[-122.30784685844195,50.49138184133355],[-122.30790274435292,50.49156139100489],[-122.3079549723616,50.49174251035256],[-122.30807471356454,50.49189662608844],[-122.30829863874557,50.49200698170635],[-122.30851303035499,50.49212600773714],[-122.30864833909328,50.49228402329732],[-122.30869380680713,50.492461534318664],[-122.30873204995315,50.49264106325177],[-122.30884591838159,50.4928022970534],[-122.30899753149504,50.49295522204275],[-122.30909496302856,50.49312322342324],[-122.30916002418897,50.493298578453874],[-122.30922684600596,50.49347399193504],[-122.30927773507487,50.49365000017381],[-122.30929476846194,50.49382993893311],[-122.30928363850232,50.49400895021609],[-122.30927607510411,50.49418751324105],[-122.3092667059025,50.494366573996736],[-122.30924844307735,50.49454647261927],[-122.30923018084134,50.49472636222635],[-122.30922423917131,50.49490667044929],[-122.30933992158397,50.49506739655303],[-122.30948589520587,50.49522464010399],[-122.30959949731793,50.49538923731215],[-122.3097022633375,50.495556847949786],[-122.30980326988147,50.495724399940514],[-122.30995887573567,50.49587183228444],[-122.3101641207842,50.495995057214714],[-122.31037871992476,50.49611183593358],[-122.3106082279111,50.49621899715693],[-122.31077476696497,50.49636229304068],[-122.31083983932801,50.496537646388255],[-122.31079929544562,50.496709489625346],[-122.31079706399439,50.49688767136909],[-122.31078936874485,50.497067911722105],[-122.31079760721826,50.49724756595834],[-122.31081288772018,50.497427445186524],[-122.31083530068413,50.497606445786666],[-122.3108645259333,50.4977884797625],[-122.31096428681784,50.49794979866251],[-122.31118788187933,50.49806463388026],[-122.31135049541629,50.49821286309794],[-122.3114121438022,50.49838697716449],[-122.31144855136961,50.49856755794995],[-122.3114778715211,50.49874846998818],[-122.31142166839946,50.49891754344786],[-122.31126428136038,50.49907200864225],[-122.31109701922196,50.49921771539206],[-122.31092299066488,50.49935981421583],[-122.3107694884462,50.49950990938588],[-122.31064327878518,50.49967159967507],[-122.31053597421018,50.49983953217007],[-122.31046104454327,50.50000011044755],[-122.31045665095374,50.50001065272515],[-122.31044511119882,50.50019470528824],[-122.3105703938215,50.50034619284237],[-122.310720323261,50.50049849926338],[-122.31082305954266,50.50066666410333],[-122.31094566608685,50.500829308221185],[-122.31111560603425,50.50097440660116],[-122.31137036794284,50.50105372185436],[-122.31160484770541,50.50114360872342],[-122.31171824258327,50.50131101094653],[-122.3118902226963,50.501452801870165],[-122.3120879982963,50.50158138727948],[-122.31216947835662,50.501750535703046],[-122.31225040827769,50.501926413374996],[-122.31233424632966,50.50208833444994],[-122.31222410938716,50.502247743932784],[-122.31207690930398,50.502407046741766],[-122.31193151495773,50.50256584254339],[-122.31179163027768,50.50272201417656],[-122.31168793483695,50.50288895154157],[-122.3116084732401,50.50306175012377],[-122.31152034644707,50.5032325693468],[-122.31142179309538,50.503401359672615],[-122.31132499955349,50.5035702083687],[-122.31124729591981,50.503743065040425],[-122.31121152340842,50.50392125541767],[-122.3112091103195,50.50410166972358],[-122.31116629507265,50.504279626029955],[-122.31103145496894,50.50443877125812],[-122.3110072091435,50.504605531612185],[-122.31125801108239,50.504690337535635],[-122.31149335196069,50.50479149825618],[-122.31163083699832,50.50494508000164],[-122.31174966143959,50.505110970058645],[-122.31191244030926,50.505257510355136],[-122.31209360639396,50.50539510648306],[-122.31228019279065,50.50553119988219],[-122.31245589561566,50.50567086304526],[-122.31260042989543,50.50582466835068],[-122.31272120444163,50.50598837255787],[-122.3128618059439,50.50614711199197],[-122.3130227852538,50.50629415726948],[-122.3132704916776,50.50637379904752],[-122.31355251881291,50.50637922262222],[-122.31383434456562,50.50636552961063],[-122.31411623371842,50.506372638569445],[-122.31439175746345,50.506414398062844],[-122.31465886294468,50.50647274640714],[-122.31493258163647,50.50651500240538],[-122.31521055526616,50.506548411135086],[-122.31548935552755,50.506571716214566],[-122.31576983430332,50.50655290839439],[-122.316051495299,50.506562820813286],[-122.31633256073737,50.50658001813408],[-122.31661085709669,50.506609493433025],[-122.31688675134305,50.50664676051138],[-122.31716047317856,50.50668901101322],[-122.3174340114484,50.50673351292077],[-122.31770759645774,50.5067774488888],[-122.31798118200017,50.50682138418108],[-122.3182545847708,50.50686756190816],[-122.31852540260145,50.50692377458119],[-122.31879743196238,50.506986774298205],[-122.31906507665775,50.50701701474794],[-122.31932173825494,50.50694398566552],[-122.31958052545296,50.50686653709203],[-122.31983894604332,50.506793565163186],[-122.3200925872208,50.506714253489015],[-122.3203462275061,50.50663494122813],[-122.32060459936713,50.50656253276311],[-122.32086900564042,50.506502694194005],[-122.32113949194667,50.50645486918746],[-122.32141471098818,50.50641393889654],[-122.32169123163793,50.506378683016905],[-122.32196928399358,50.50634628418298],[-122.32224900506645,50.50631506453091],[-122.32252701122275,50.50628322059261],[-122.32280631923108,50.506257051040194],[-122.32308759295408,50.50625005494795],[-122.32336916214108,50.50626107038432],[-122.32365009157824,50.506279927058976],[-122.32393106663939,50.50629822672884],[-122.3242205940474,50.50629825756976],[-122.32451012218775,50.506298278683836],[-122.32476356601792,50.506351093941284],[-122.32496949422782,50.50646699529692],[-122.3251592339879,50.50660822598248],[-122.32536415815997,50.50673646374365],[-122.32559583702954,50.50683972092494],[-122.32583126738238,50.50694028574541],[-122.32603502839152,50.5070611782924],[-122.32620323430203,50.50720675051858],[-122.32636593015945,50.50735495609186],[-122.32652320738613,50.50750467347371],[-122.32670826894932,50.50763843194656],[-122.32692287416793,50.507756307569636],[-122.32714502670211,50.50786824265477],[-122.32734865864929,50.50799081051088],[-122.32750223774404,50.50814264406308],[-122.32757818486925,50.50831553506216],[-122.3276812760894,50.508480318012815],[-122.32785694668517,50.50862107787762],[-122.32799061192713,50.50877900843859],[-122.32811158773912,50.50894100849515],[-122.32831305467805,50.509068567704674],[-122.3285750943304,50.50912446461995],[-122.3288569820304,50.509153460331014],[-122.32908918358395,50.50925054582516],[-122.32930384875587,50.50936785135049],[-122.32951101494761,50.5094905314334],[-122.32971262572569,50.50961640119226],[-122.32987525044254,50.50976572275019],[-122.33010601666253,50.50985881789962],[-122.33036280569759,50.509935903813286],[-122.33054964945467,50.51006971368055],[-122.33069416746676,50.510224625151196],[-122.3308114978063,50.51038819243804],[-122.33093966810337,50.5105487439746],[-122.33108039399448,50.51070689419825],[-122.33126385800158,50.5108389085255],[-122.3314991845138,50.510941147671616],[-122.33172682934935,50.51105100455637],[-122.3318774137737,50.51119655105785],[-122.33197298115131,50.51136726984695],[-122.33206687968556,50.511536808794254],[-122.3321554049329,50.5117072947013],[-122.33224569174868,50.511877838662755],[-122.33234315947404,50.512046937297946],[-122.33245688740307,50.51221150772347],[-122.33248453979812,50.51239235302071],[-122.33254294994349,50.51256409289038],[-122.33269304024228,50.512715802105184],[-122.33286476460371,50.512862044810326],[-122.33302754804714,50.51300968330855],[-122.33305778584578,50.51318049240492],[-122.33297676437108,50.51335155910355],[-122.33286960099842,50.51351839774978],[-122.33277282077411,50.513687819314846],[-122.3325987586667,50.51383051481965],[-122.33246085423835,50.51398452534475],[-122.33236917107872,50.51415637301877],[-122.33232837416408,50.51433214134623],[-122.33245516533194,50.5144881459733],[-122.33253011163623,50.51465200163401],[-122.33248565553431,50.51482934042107],[-122.33245899192845,50.51500501761102],[-122.33234324623345,50.51516875625122],[-122.33221878585078,50.51533108237952],[-122.33208019095443,50.51549349932499],[-122.33216069467977,50.51565416485744],[-122.33227772520866,50.51582165046131],[-122.33246130485267,50.515952540429275],[-122.33267957812623,50.51606939849243],[-122.3328589073434,50.516209143892084],[-122.33294929714208,50.51637856478595],[-122.3330073037143,50.51655534607914],[-122.3330333364839,50.51673445428361],[-122.33304162190122,50.5169146588126],[-122.3330534756101,50.51709441433311],[-122.33308845175054,50.51727212632672],[-122.33315901573512,50.517446514977664],[-122.33322601200037,50.51762135252024],[-122.33328944123716,50.5177966299877],[-122.33335287096716,50.5179719073814],[-122.33341806233574,50.51814724284281],[-122.33349219728314,50.51832118211602],[-122.33352017675085,50.51849810485527],[-122.3335944492463,50.51867036614415],[-122.33367752817364,50.518842918034245],[-122.33375889256814,50.5190148464277],[-122.33384201803942,50.51918684183272],[-122.33392875854993,50.51935782288246],[-122.33402805596855,50.51952641136078],[-122.33414722909653,50.51968947510273],[-122.33427113977369,50.51985943339961],[-122.33443491185989,50.519995287804186],[-122.33471647839716,50.520007395855664],[-122.33498812578709,50.520054595098436],[-122.33525737372719,50.520109586420205],[-122.33552902229923,50.520156784335306],[-122.33580256989836,50.52020235287414],[-122.33607607206743,50.520248485999325],[-122.33635174619731,50.5202896340471],[-122.33663121769779,50.520327523962024],[-122.33689685558174,50.52038351666552],[-122.33714449916584,50.520465346953756],[-122.33738581143142,50.520559895811516],[-122.33761930488998,50.52066374054404],[-122.33784340003535,50.5207745889935],[-122.33805642683242,50.520891261593775],[-122.33824324764832,50.52102617828099],[-122.3384226138306,50.52116591385554],[-122.33863758759995,50.52128040024398],[-122.33890947505076,50.52132478146412],[-122.33918723905587,50.52136205056097],[-122.33946319629825,50.52139982617925],[-122.33973924587987,50.52143647058529],[-122.34001714760569,50.52147205976034],[-122.34029360781805,50.521503660283926],[-122.34057219421311,50.52153083193259],[-122.34085383383125,50.521520426345745],[-122.34112939955101,50.52147609230124],[-122.34139752563229,50.5214146352095],[-122.34166662203165,50.5213847059901],[-122.34193732888622,50.52144366000863],[-122.3422151872129,50.52147979997986],[-122.34249526266952,50.52151038947692],[-122.3427749433,50.521524096944276],[-122.34305550370301,50.5215052206076],[-122.34333615492926,50.521485222006675],[-122.34361624502563,50.521493884842876],[-122.3438970498748,50.52151549835959],[-122.34417758188123,50.521540475835856],[-122.34445811419852,50.52156545260352],[-122.34471341520813,50.52164020317333],[-122.34496057964735,50.521728179999116],[-122.34520774505133,50.521816156265906],[-122.34546304872383,50.521890905091325],[-122.34573449157838,50.52194087737117],[-122.34600385488416,50.521994720980395],[-122.34625129674619,50.52207933022659],[-122.34648870433261,50.52217879475536],[-122.34673022731803,50.52227108001548],[-122.34697938826686,50.5223563018354],[-122.34723451601003,50.52243328965832],[-122.34749999755739,50.52249149999589],[-122.34777574166746,50.52253205433597],[-122.34804940627194,50.522576480020675],[-122.34832053748038,50.52263037588409],[-122.34858579462959,50.522691383024195],[-122.3488371766478,50.522771059717954],[-122.34908431024012,50.52285958354662],[-122.34935187586522,50.52291392635565],[-122.34962536325921,50.52296058228527],[-122.34990106633813,50.523001696596246],[-122.35017912243366,50.52303557347535],[-122.35045754248388,50.52306496341955],[-122.35073984912786,50.52308998216021],[-122.35102306478734,50.523103784584194],[-122.3513025870031,50.52309778092433],[-122.35157841468133,50.52307198018047],[-122.35185524138686,50.523033841583896],[-122.35212913501879,50.52298830094674],[-122.35240172164468,50.52293708501307],[-122.35267259134692,50.52288525427708],[-122.35294178989461,50.522832243484146],[-122.35320796422577,50.52277295227514],[-122.353474365241,50.52271085203212],[-122.35373891337314,50.522649814889476],[-122.35400829085057,50.52259455837321],[-122.35427762263672,50.52253985749593],[-122.35455043069952,50.52248583684337],[-122.35482282926104,50.52243686704191],[-122.35509784296103,50.52239921883532],[-122.35537334616747,50.52237733861526],[-122.35565918262772,50.522380527685556],[-122.35594302198326,50.522408399421565],[-122.35621095688258,50.52245823052072],[-122.35646447535802,50.52253346151074],[-122.35671130471496,50.52262589837416],[-122.35695063605776,50.52272371143236],[-122.35718640072685,50.522821964730824],[-122.35741828012986,50.52292459722961],[-122.35764821853684,50.523029405633025],[-122.35787820300013,50.523133657250966],[-122.3581119376516,50.52323522445218],[-122.35835344510868,50.52332804063685],[-122.35860448521127,50.52341218144436],[-122.35884233547851,50.523506567897215],[-122.35905913438125,50.523621063228966],[-122.35926274291303,50.52374581336215],[-122.3594626027499,50.523873256047096],[-122.3596699176665,50.52399587772175],[-122.35988843674862,50.52411099436208],[-122.36010144644158,50.52422873682992],[-122.36029747106166,50.52435998349529],[-122.3604459318826,50.524511604286744],[-122.360514760962,50.52468703786572],[-122.36052491914879,50.524867296288825],[-122.36050165555298,50.52504589288047],[-122.36046597021175,50.52522521597855],[-122.36042152295157,50.52540368519181],[-122.36036492633156,50.52557950722212],[-122.36034712745327,50.52575603364003],[-122.36037151268756,50.525935075695834],[-122.36038700074097,50.526114941729915],[-122.36045953631951,50.52628824729977],[-122.36053022031041,50.52646261663718],[-122.36058663147361,50.52663876733517],[-122.3606341448442,50.52681575098096],[-122.36066386205174,50.5269944006021],[-122.36068287397691,50.527174390752684],[-122.36070193173542,50.52735381559314],[-122.36071566004772,50.5275336235606],[-122.36071701190828,50.527713592796],[-122.3607361149872,50.52789246121785],[-122.36078358531027,50.52807000082264],[-122.36083643064433,50.528246600899614],[-122.36090359600028,50.52842085416899],[-122.36100658313256,50.52858896681071],[-122.36110202581929,50.52876302158234],[-122.3612907263157,50.5288321760397],[-122.36158256820673,50.52882711573583],[-122.36185905364506,50.52881537135662],[-122.36213928901167,50.52880093327207],[-122.36242100930241,50.5288118404889],[-122.36270236664039,50.52882724221063],[-122.36298756477967,50.52883882861228],[-122.36326874205024,50.528856463051355],[-122.36354106099698,50.52889630634184],[-122.36379593743024,50.52897717652178],[-122.36402411429164,50.529082478569386],[-122.36421655765545,50.52921472379558],[-122.36442174061818,50.52934232967083],[-122.3646585970845,50.52942767284842],[-122.36494293979065,50.529449904582016],[-122.36522127292918,50.52948094415202],[-122.36549974259749,50.529510296193486],[-122.36578128710336,50.52952343801286],[-122.36606337410267,50.52952985871143],[-122.36634541629341,50.529536834989834],[-122.36662497297876,50.5295527254486],[-122.36690669905363,50.52956362129011],[-122.36718851502188,50.52957340382589],[-122.36747024136224,50.529584298239335],[-122.36775192224344,50.52959575720731],[-122.36801950548872,50.52965061093548],[-122.36828257110777,50.52971768605355],[-122.36853402712606,50.529797317522075],[-122.36875083532408,50.52991235834115],[-122.3689600105242,50.53003445409768],[-122.3692015760288,50.53012725491645],[-122.3694670864045,50.530185968542895],[-122.36974877155366,50.53019742244392],[-122.3700306825131,50.53020607620325],[-122.37031309116712,50.53020855614923],[-122.3705971711193,50.53021221449559],[-122.37086945990106,50.53025259606843],[-122.37113885806261,50.5303069345237],[-122.37140631372417,50.53036346688958],[-122.37167363486164,50.53042167647198],[-122.37194082150428,50.53048156327162],[-122.3722060657386,50.530543644005206],[-122.37246941385528,50.53060734444378],[-122.37273258202605,50.53067328738821],[-122.37299380860101,50.53074141532548],[-122.37325485530081,50.53081178577836],[-122.37351405079518,50.53088321967454],[-122.37377311199265,50.530956330825475],[-122.37403208299455,50.531030571906726],[-122.37428748664891,50.53110525368959],[-122.37454284636036,50.53118049117669],[-122.37479820620202,50.53125573704301],[-122.37499231568516,50.531367775043464],[-122.37523579826369,50.53145893324501],[-122.37548312160916,50.53154627587659],[-122.37573234268756,50.53163199755259],[-122.3759816997526,50.531716040794706],[-122.37623110323888,50.53179951819848],[-122.37648235964072,50.531881930924115],[-122.37673379745789,50.531962099936145],[-122.37700321290788,50.53201642406973],[-122.3772836481262,50.53204356082063],[-122.37755767023413,50.53208454864143],[-122.37782089994688,50.53214991415313],[-122.37808164622771,50.53222420313166],[-122.3783328636374,50.53230716793155],[-122.37855250766518,50.53240935315227],[-122.37864798146364,50.53258394834302],[-122.37873844055672,50.532755015412015],[-122.37894200988876,50.532881405973946],[-122.37905324869186,50.533035715528285],[-122.37907382782461,50.53321912332246],[-122.37909648495878,50.533398658512034],[-122.37911205031027,50.53357852028974],[-122.37912942233534,50.533757883144176],[-122.37914851086292,50.53393786864261],[-122.37916217913124,50.53411935971679],[-122.3792188083517,50.53429381246876],[-122.37932747804994,50.534458158173486],[-122.37945765146254,50.5346187064034],[-122.37958782580264,50.53477925444954],[-122.37980605922228,50.5350090172902],[-122.37999130093161,50.53514381303485],[-122.38012324056548,50.5353044177536],[-122.38031196347791,50.53543988401324],[-122.38052833336195,50.53556106520391],[-122.38076763403525,50.53557280049015],[-122.38104709038365,50.53554647654165],[-122.3813277667241,50.535526947649146],[-122.38160880407828,50.53550292280407],[-122.38189015621654,50.53547497624605],[-122.38217128234571,50.53544983738239],[-122.38244997079163,50.535433047721924],[-122.38272451415241,50.53546784952727],[-122.3828916523662,50.535608230913205],[-122.3830325933825,50.535766875734],[-122.38321405448843,50.53590490700966],[-122.38344045979697,50.53601123253451],[-122.38367440892262,50.53611162281984],[-122.38391021180539,50.53621093939981],[-122.38414615047591,50.536308577600856],[-122.3843838520931,50.53640627262241],[-122.38462168947217,50.53650228925738],[-122.38486124512976,50.5365989189957],[-122.38509718789223,50.536696555132835],[-122.38533484895602,50.536794804373635],[-122.38557070373213,50.536893561051684],[-122.38581026350472,50.5369901886996],[-122.3860500043579,50.53708457268171],[-122.386293630212,50.53717458446378],[-122.38654123103414,50.537259102452495],[-122.38679858733396,50.537332134360604],[-122.38706375771184,50.53739585699977],[-122.38733087079981,50.53745739314827],[-122.3875960426675,50.53752111450855],[-122.38785159556664,50.537594642973346],[-122.38808953730349,50.53768952150986],[-122.38830620809964,50.53780733149684],[-122.38851185898015,50.53793039631943],[-122.38870635390349,50.538060411850395],[-122.38889890803367,50.53819261289951],[-122.38909521182757,50.538322128671226],[-122.38929531133608,50.53844838490319],[-122.38949902522116,50.5385736426614],[-122.38969533311938,50.538703148341064],[-122.38993174704065,50.53879516612097],[-122.39019697506235,50.5388583248769],[-122.3904583208041,50.53892584583143],[-122.39059902007652,50.53906592176293],[-122.390612781338,50.539246845019335],[-122.39068184028247,50.53942113517722],[-122.39079585032339,50.53958564034213],[-122.3909223754612,50.53974830282144],[-122.39105075349005,50.53990990078202],[-122.39117018684145,50.54007289927807],[-122.39126816176316,50.54023913193992],[-122.39125188063728,50.540420203624635],[-122.39129266040031,50.5405946991399],[-122.39139411580523,50.54076161130134],[-122.39150984935881,50.54092672898451],[-122.39162553845313,50.54109241178418],[-122.39172871374798,50.541259937054605],[-122.39179963211686,50.541433161738375],[-122.39184362421264,50.54161170123894],[-122.39189660787872,50.54178827464283],[-122.39200692426665,50.54195490679877],[-122.39223012606014,50.5420577345183],[-122.39249379410296,50.54211858720265],[-122.39276297437357,50.54217680245082],[-122.39302836142389,50.54223826735623],[-122.39329812752746,50.54228918662417],[-122.39357204680685,50.542332377603955],[-122.39384610173545,50.54237388106823],[-122.39412205445434,50.54241375419412],[-122.39439827643156,50.542450270900254],[-122.39467458939781,50.54248565637729],[-122.39495000392033,50.542532265828726],[-122.39522334286016,50.54258273844072],[-122.39549675015004,50.5425882332929],[-122.39576994477831,50.54253018284873],[-122.39602519067067,50.542453566957334],[-122.39626913334654,50.54236364792078],[-122.39651750903924,50.54228455019416],[-122.39680424864012,50.54230003679073],[-122.39706262438577,50.54225049863227],[-122.39730203996731,50.542150877044605],[-122.39754783036862,50.542059890726655],[-122.39780940197966,50.54199246279391],[-122.3980831848779,50.54194905315517],[-122.39836493874775,50.5419385021377],[-122.39864805053296,50.54193305907645],[-122.39892940009112,50.54192755819278],[-122.39921273565203,50.54191931424784],[-122.39949629572193,50.541908261161105],[-122.39976646319164,50.54186584578944],[-122.39999852144882,50.54179184328406],[-122.40002020543464,50.54178579885781],[-122.40027254406913,50.54170119898854],[-122.40053731959702,50.54163780876935],[-122.40080724596046,50.54157627598047],[-122.40108160659867,50.54152556421476],[-122.4013560253301,50.54149621876858],[-122.40162915783098,50.54150506328046],[-122.40190439498768,50.541553889746055],[-122.40217904976045,50.541610010258324],[-122.40244837358654,50.54166652422446],[-122.4025067490573,50.541665598307354],[-122.4041456178757,50.5420717259192],[-122.40531131437422,50.5426070231511],[-122.40700141005715,50.54363378048492],[-122.40784157688245,50.54457400994607],[-122.4090650869492,50.545449029276604],[-122.41010099308403,50.546173483845386],[-122.41119793813851,50.54695273881306],[-122.41170157903736,50.547661111482995],[-122.41232420791219,50.54887201522688],[-122.41266298173264,50.54952107590744],[-122.4131476694436,50.55020183946046],[-122.41326355130782,50.55036637629933],[-122.4135198242573,50.550609657112666],[-122.41366899821774,50.55075558509747],[-122.41407408982451,50.55119369884926],[-122.41439035890009,50.551504697723054],[-122.4146140698664,50.55175760270793],[-122.41479426197452,50.55191353387368],[-122.4149297421181,50.55209837385267],[-122.41513942986131,50.552283366943705],[-122.4153377296791,50.55232292891337],[-122.41571653092109,50.55231490400276],[-122.416158545716,50.55220096851133],[-122.41647824256911,50.552202846658496],[-122.41688818557151,50.55229195787125],[-122.41721813795418,50.552564590437875],[-122.41759476989786,50.55282804842909],[-122.41833600083231,50.55315103792264],[-122.41966890931583,50.55354480544753],[-122.42186499105205,50.554039990540026],[-122.42288230298745,50.554180678427144],[-122.42338980263273,50.55426559935903],[-122.42407164656812,50.554491626304035],[-122.42491817848749,50.55482470285532],[-122.4255528089697,50.55508911478641],[-122.42623518495621,50.555286466888646],[-122.42717338366813,50.555600540784965],[-122.42774696559196,50.55585510602463],[-122.42825464535507,50.55602715787041],[-122.42949799817124,50.556304355322254],[-122.43087691016521,50.556543719790604],[-122.43250173862549,50.556735303618765],[-122.4348320526002,50.55694499242159],[-122.4358349892616,50.55691137704347],[-122.43686823456838,50.55689670598005],[-122.43759706712342,50.556909943777065],[-122.43805255290553,50.556960520471435],[-122.43852227685844,50.55716616469744],[-122.43901938321102,50.55751716819174],[-122.43951733164637,50.55779061065672],[-122.43997952492168,50.557845891574615],[-122.44089047779224,50.5579475797799],[-122.44190764992702,50.558136434037095],[-122.44282564025198,50.55819392107282],[-122.44442220196449,50.55816291147469],[-122.44510671190753,50.55808866808371],[-122.44739522307859,50.55797854200842],[-122.44803317420661,50.558068640285285],[-122.44906330178124,50.558228040412],[-122.45017291776486,50.5583208217369],[-122.45077904036569,50.5584784769748],[-122.45213319096663,50.55887701468014],[-122.45337623399656,50.55918316196883],[-122.45448042555289,50.559681638737395],[-122.45569011631545,50.560142430300445],[-122.45668911906452,50.56056331870001],[-122.45704653024319,50.560782724281694],[-122.45704553997751,50.56092999013015],[-122.45704558733398,50.56122121314824],[-122.45703985689285,50.56248373883074],[-122.45704062960972,50.56263106055453],[-122.45703986356538,50.56275302960728],[-122.47860130236664,50.56636363962801],[-122.47874301753198,50.56635969903919],[-122.47971960258452,50.56670994472576],[-122.48164760491943,50.56730335385317],[-122.48504188556065,50.56824779977255],[-122.48735828963673,50.569233985215554],[-122.48974777587487,50.570032406546304],[-122.49206558483435,50.570980301625454],[-122.49338428151913,50.57170662821985],[-122.49500604341458,50.57265049594456],[-122.49516693762503,50.57280903736834],[-122.49523928839712,50.57287877909409],[-122.49529914757056,50.57292733093325],[-122.49535591746104,50.57297015458338],[-122.4954684957651,50.57306814844399],[-122.49558967329521,50.57316922852606],[-122.4956620091645,50.573216482233484],[-122.49571858886591,50.57323906118578],[-122.49579426106395,50.57326618143884],[-122.4958630973827,50.57329027985155],[-122.49590992582132,50.57330187453662],[-122.49602748566019,50.57333593617667],[-122.49627936746094,50.57341583073068],[-122.49643582906403,50.573472480290285],[-122.49646806964503,50.5734897946526],[-122.49648319847702,50.573499832792116],[-122.49651006119689,50.57351810208651],[-122.49654552281079,50.57353945764569],[-122.49659099747352,50.573568441443896],[-122.49663466535142,50.57359792598804],[-122.49666139682549,50.5736178821415],[-122.49668534405025,50.573628189035595],[-122.49672348610639,50.57363782769355],[-122.49685795048951,50.57363644140291],[-122.49717678921022,50.57369651332745],[-122.49740957225305,50.573817404883755],[-122.49745970079358,50.57387745020323],[-122.49750842442317,50.57388742182088],[-122.49760410891197,50.57390730048276],[-122.49765394158825,50.573925735145394],[-122.4977225619638,50.57395263192217],[-122.49795216213117,50.57400089644371],[-122.49824283154888,50.57405952047296],[-122.49839385842732,50.5740951998669],[-122.49844179749002,50.57411525657464],[-122.4984951753785,50.57415628958975],[-122.4985533810941,50.57422615015882],[-122.4986211823423,50.57433172550352],[-122.4987012591587,50.574461298714205],[-122.49875935268076,50.57455532475172],[-122.49880578213173,50.57461750159069],[-122.49884598707146,50.57466879657831],[-122.49887326164985,50.574704510200355],[-122.49889400574496,50.57473327210411],[-122.49890993890882,50.574755703099854],[-122.49894117717923,50.574785919694115],[-122.49900637758866,50.574834070682336],[-122.49908370528642,50.57488540975329],[-122.49916954519576,50.57494095643879],[-122.49926496269399,50.57500973908985],[-122.49934265808491,50.57507907920179],[-122.49940482987203,50.57514344222699],[-122.49947190019871,50.57521301448049],[-122.49953067643929,50.57527557951384],[-122.49955362118577,50.57529878874303],[-122.49961264136384,50.57533550124955],[-122.49999644059555,50.575560640214185],[-122.50066162269707,50.57605492320187],[-122.50108143595206,50.57652181119353],[-122.50118614096603,50.576721299782946],[-122.5012940610287,50.57681126961987],[-122.50153297146268,50.576899180140394],[-122.5018014536829,50.576970588262846],[-122.50196873495106,50.57702475411455],[-122.5020981314404,50.57706592709988],[-122.50222001803137,50.57708999851004],[-122.5022656549201,50.57709424904444],[-122.50234893493754,50.577137344526065],[-122.50259224448247,50.57725967911177],[-122.50283916989983,50.57738100244664],[-122.50296149003279,50.57744499651184],[-122.50305374003851,50.577509178374974],[-122.50315075891547,50.57758024717205],[-122.50322258667647,50.57763422535625],[-122.50328413728347,50.57768394967522],[-122.50335261235941,50.577735573662146],[-122.50341473029401,50.57777800297008],[-122.50350909474827,50.57783774447273],[-122.50366618739699,50.57793207277334],[-122.50382186639644,50.57802185000232],[-122.50395579429977,50.5780957691345],[-122.50406770935258,50.57815719507393],[-122.50412175126442,50.57818980864986],[-122.50416825864878,50.57822837379586],[-122.50428021520736,50.578334774657904],[-122.50440140396934,50.57845888838707],[-122.50445344181435,50.57851729875036],[-122.50447453986808,50.57854157305321],[-122.50448451209773,50.578549756865016],[-122.50459035341318,50.57862111042574],[-122.50476987803422,50.578745365836724],[-122.50486548645213,50.57881190015595],[-122.50487837623535,50.57882804602001],[-122.50489873424425,50.578861849405264],[-122.50492875930405,50.57890776666423],[-122.50497683443577,50.578971682917455],[-122.50502477933294,50.57903727706874],[-122.50507474955216,50.57909956179174],[-122.50512798597491,50.579165322141385],[-122.50516511039419,50.57921089569701],[-122.50520310561548,50.579245262144944],[-122.50523417694178,50.579277720021764],[-122.5052342850036,50.57929908596149],[-122.50524166421684,50.57936340543749],[-122.50527040243844,50.57949416561366],[-122.50531536259548,50.57962094703552],[-122.505409034428,50.579735200001636],[-122.50553713375253,50.57983872432456],[-122.5056479664876,50.57991416413359],[-122.50574220733921,50.579975590483954],[-122.50578915360296,50.5800085468395],[-122.50582980625911,50.58005423991234],[-122.5058980045167,50.580132270842974],[-122.50594806428522,50.58019343348556],[-122.5059920486897,50.58026452434445],[-122.50609776488587,50.58038309456901],[-122.50621822400562,50.5805167351733],[-122.50625554247515,50.58081023616772],[-122.50623924433644,50.581429802915814],[-122.50622128965531,50.58216174217135],[-122.50620963103259,50.58265327899896],[-122.50621161010949,50.582832668726674],[-122.50622066807084,50.58289816486452],[-122.50623029056966,50.58304744644962],[-122.50624087077031,50.58327545276857],[-122.50625445547512,50.58351030840359],[-122.50628391504891,50.58383672487761],[-122.50634157575503,50.58418708027469],[-122.50639869442735,50.584385075345416],[-122.50643669479211,50.58446497228225],[-122.50647626334239,50.584570211510574],[-122.50653824016501,50.584728440522554],[-122.50659185474335,50.584903271897005],[-122.50666080066557,50.58515391509943],[-122.50672674206297,50.58539771780451],[-122.50675039221177,50.58550302358181],[-122.50683406202263,50.58551858518278],[-122.50706924038309,50.58556419687815],[-122.50729912720783,50.585609641928386],[-122.50739126972671,50.58562995744381],[-122.50744830571215,50.58564693106858],[-122.50763938517147,50.58569115705281],[-122.50791646604911,50.585743703978245],[-122.50820765967391,50.5857966931525],[-122.5084981142116,50.58585921067706],[-122.50878094720528,50.58592880089385],[-122.50905095374723,50.58600417619614],[-122.5093150604429,50.586087227017764],[-122.50954486744065,50.586179329006264],[-122.5097584947809,50.586274853540054],[-122.5100017402092,50.58635331747235],[-122.51024696845016,50.58642902771259],[-122.51041819403983,50.58650130083597],[-122.5105122575841,50.586542478512456],[-122.5106198009059,50.58656946260216],[-122.51075759421065,50.586594022349985],[-122.51089994053312,50.58662827702369],[-122.511031029804,50.58669366870281],[-122.51112631701888,50.586764674435514],[-122.51117473348454,50.58680161366012],[-122.51119150396266,50.58681338287408],[-122.51124754265467,50.58684324845307],[-122.51135308604641,50.58689602864652],[-122.51147045611098,50.586955925554165],[-122.51163084098361,50.58703122070113],[-122.51180281087582,50.58709395354791],[-122.51191654266161,50.5871323736197],[-122.51201624906089,50.587169229515965],[-122.51215618627997,50.58725738369137],[-122.51230734761462,50.587406036577825],[-122.51240671807598,50.58753844940325],[-122.51247182648788,50.58763380959813],[-122.51251449925738,50.58769923393581],[-122.51252654913411,50.58774908206331],[-122.51256901034357,50.587862845797005],[-122.51266032631926,50.58800793104809],[-122.51270772637052,50.58808081606198],[-122.51271678934974,50.58810077135995],[-122.5127295106655,50.58811915933419],[-122.51274619506951,50.588132049895705],[-122.51277747035651,50.5881392184997],[-122.51286049523333,50.58816318303894],[-122.51299246217545,50.58821734731076],[-122.5130958988674,50.58827455687445],[-122.5131444304122,50.58833286087343],[-122.51317691177259,50.58839290147804],[-122.51322279160696,50.588485409757496],[-122.51328525051896,50.58861498265886],[-122.51332374529812,50.588688703549025],[-122.51333280797724,50.5887086677551],[-122.51337380583897,50.58877291479219],[-122.51345383883064,50.588881109438354],[-122.51355826623882,50.58899399908545],[-122.51356891468618,50.589130376051855],[-122.51344834510694,50.58929412209889],[-122.51346913653197,50.58939090787555],[-122.51367258693506,50.58943551029249],[-122.51383219448718,50.5894753655894],[-122.51394438756662,50.58951091971608],[-122.51401879396334,50.58955485103571],[-122.51405471807341,50.5896161324183],[-122.51406786414611,50.589697495594564],[-122.51405228713077,50.589807191222974],[-122.51402136157567,50.58995519058747],[-122.51400557414128,50.59011322547251],[-122.51401885784297,50.59023844150134],[-122.51404350177371,50.59030836397266],[-122.51405269586094,50.59032664119694],[-122.51407733302428,50.590351023882114],[-122.51416720942632,50.59042354775934],[-122.51431278368088,50.59053042185429],[-122.51448055477185,50.59064754332978],[-122.51468707001062,50.59074395841739],[-122.51486005762872,50.590793792366405],[-122.51492781901005,50.59080940674021],[-122.51495147499043,50.59082363957077],[-122.51498441248059,50.59085502793313],[-122.51501987922204,50.59089942069917],[-122.51504974879893,50.59094757775595],[-122.51509815572715,50.591007558626046],[-122.51517198319787,50.59108182750737],[-122.5152635222716,50.59117857979718],[-122.51537053198793,50.591303915521046],[-122.51545479804736,50.59140324612118],[-122.51551779760632,50.59145750449142],[-122.51560854760773,50.59151881112833],[-122.51573576492116,50.59161161629523],[-122.5158580376026,50.59169976917639],[-122.51592578386028,50.59173842644414],[-122.51594492996809,50.59174239893075],[-122.51601071130756,50.591760765864464],[-122.51610080161477,50.59178494885671],[-122.51615109613026,50.591797766848494],[-122.51622036305294,50.59181680045247],[-122.5163793299919,50.59186505948287],[-122.51654990824701,50.59192324300088],[-122.51666210888068,50.591958803256816],[-122.51677862082595,50.59198437050314],[-122.51703823839846,50.592034664101526],[-122.51743209876035,50.592109954281895],[-122.51771783516531,50.592165552022294],[-122.51789446352778,50.592191317527735],[-122.5180598273995,50.592202680773575],[-122.51813211963326,50.592205500717654],[-122.51818341355595,50.5922054238817],[-122.51828621954644,50.59220245268178],[-122.5183682446412,50.59219377620407],[-122.51841829530292,50.592186914457876],[-122.51843434745852,50.59218516810665],[-122.51847877415008,50.5921595746361],[-122.51885573210656,50.591973489387726],[-122.51966687605264,50.59159298648292],[-122.52038701710522,50.59124561008809],[-122.52070001319106,50.59106314011032],[-122.52079495045297,50.590978969839725],[-122.52083581743011,50.59093077783007],[-122.52086854238155,50.590896389660486],[-122.52089669823859,50.59087534141149],[-122.52094401450647,50.59083522124271],[-122.5209960739346,50.59077950893561],[-122.52101747611772,50.59075431886918],[-122.5210394707571,50.5907443300936],[-122.52106688855329,50.59073281991279],[-122.52108677256882,50.5907272534049],[-122.52111751638743,50.590695609512636],[-122.52121421561634,50.59061150298277],[-122.52134414598521,50.59050931299108],[-122.52144075763098,50.59042632784951],[-122.52150503563878,50.590372679299605],[-122.52155334818727,50.59031966488473],[-122.5215945463001,50.590221446362996],[-122.52164213481062,50.59008633414165],[-122.52169693942886,50.58997224285076],[-122.52173206358401,50.5898839532213],[-122.52175149727945,50.58976988041405],[-122.52175176981466,50.58960630525419],[-122.52171891380357,50.589436630442556],[-122.52165454942445,50.58928564158278],[-122.52157393124229,50.58911616438074],[-122.52148768886829,50.58892795546986],[-122.52142118580798,50.5887589103662],[-122.5214025895293,50.588633529522255],[-122.52140643557485,50.58853808264766],[-122.52141424365004,50.58843713804448],[-122.52141800289814,50.588342812753716],[-122.52142073536048,50.5883074866219],[-122.521421646643,50.58829570526236],[-122.52143302621556,50.58826289813232],[-122.52146538740963,50.58818745621507],[-122.52152360258448,50.58805210936596],[-122.5215835524287,50.58789433031162],[-122.5216193109629,50.587752093010586],[-122.52163125387264,50.58764340735015],[-122.52164335562303,50.587555531066144],[-122.52165661487669,50.587475552211004],[-122.52166709745681,50.58743147378695],[-122.52169551101456,50.58740706042274],[-122.52174442737659,50.58734619447561],[-122.52176828475085,50.58724350286094],[-122.52175599292723,50.587150924265096],[-122.5217601712311,50.58707403442047],[-122.5217807029536,50.58699147657885],[-122.52178722259359,50.586884312244365],[-122.52182750500769,50.58672929098603],[-122.52190383523316,50.586588321876306],[-122.52193541377862,50.58652297415752],[-122.52193301327743,50.586508282930126],[-122.52196770099196,50.586494193530676],[-122.52205752249976,50.58645315303756],[-122.52214747429174,50.5864104255684],[-122.52221909084062,50.58637612842453],[-122.5222933393279,50.586330661301716],[-122.52236118158541,50.586276565961874],[-122.52240703086466,50.58623246865472],[-122.52258882445452,50.586076806583236],[-122.5229019598246,50.585800458668025],[-122.52306224799928,50.58562557688058],[-122.52307969884603,50.58558283139274],[-122.52309373747873,50.5855613503691],[-122.52306056513048,50.58548723268297],[-122.5229704512655,50.58537198402402],[-122.52298557145708,50.585267894622014],[-122.52317538500408,50.585145654266746],[-122.52341983854538,50.58502567882901],[-122.52358956886079,50.58495734431153],[-122.52364258908706,50.5849348237233],[-122.52379114575504,50.58502603867436],[-122.52410431034423,50.58520672076835],[-122.52430471864011,50.585290560444506],[-122.52436371114356,50.58528228462499],[-122.52442990251028,50.58524949861087],[-122.52451740468727,50.58519264326107],[-122.52485468387022,50.585107054697666],[-122.5256305668915,50.58492891124139],[-122.52630471928568,50.58469417630064],[-122.526456170376,50.58451901398802],[-122.52639392694243,50.58440913568335],[-122.52632326560372,50.584270886439725],[-122.52625102552962,50.584107295082084],[-122.52621924735642,50.5839921796347],[-122.52621315597395,50.58395657778729],[-122.52637327929544,50.58389804910226],[-122.52672093610519,50.58376948833196],[-122.52698158285436,50.58366856679074],[-122.52718840030325,50.583577774103375],[-122.52743125482327,50.58343244757709],[-122.52754922612941,50.58325567200867],[-122.52756849147,50.58309774401752],[-122.52757586268876,50.58297936264991],[-122.52771314876169,50.58280431409873],[-122.52799222844709,50.58255612182202],[-122.5281567922882,50.58237124754157],[-122.52822526054246,50.58224014773201],[-122.5283224589355,50.58212625168578],[-122.52845083337995,50.582043685204404],[-122.52868762647964,50.581953825350666],[-122.5289497087353,50.581879927979244],[-122.52906061561858,50.58179456713305],[-122.5290604622989,50.58165907699111],[-122.52909745887865,50.58156916124176],[-122.5291743540436,50.581535024534055],[-122.5292406336508,50.581478061110865],[-122.52926635415248,50.58139678805662],[-122.52927692510028,50.58132853418727],[-122.52933003472064,50.5812818453585],[-122.52938718058085,50.581251589615135],[-122.5294074055521,50.58124153506662],[-122.52943811652466,50.581255985111795],[-122.52954953244046,50.58127857466105],[-122.52973172942596,50.58127751284138],[-122.52989913293595,50.58126193970417],[-122.53006313874445,50.581244569350304],[-122.53053874219424,50.581244788051826],[-122.53119928006308,50.581070880345756],[-122.53148806986657,50.580673438706846],[-122.53153402157648,50.58044438549599],[-122.53158143796897,50.58042562618479],[-122.5316357795672,50.580408773765136],[-122.53193690299679,50.58035575810571],[-122.53242346921145,50.58023657506373],[-122.53270114977998,50.579937166751066],[-122.53279443158259,50.57955274088095],[-122.53281566539573,50.57936901383217],[-122.53279089406557,50.57934632189835],[-122.53278625145673,50.579337740266375],[-122.53279963544377,50.5793246655801],[-122.53285088880563,50.57927904160814],[-122.53313741576244,50.579117075279825],[-122.53367226835294,50.57889876070962],[-122.53424371136565,50.57884798349611],[-122.53474589594937,50.57891591487636],[-122.53496102595405,50.578946227453685],[-122.53506299418737,50.57890780396341],[-122.53538374267094,50.57878343407486],[-122.53573116817834,50.57863404375018],[-122.53587023156197,50.578550111022714],[-122.53588791933176,50.578527051129164],[-122.53590624795628,50.57851862737103],[-122.53593726840185,50.57850610158563],[-122.53596841804628,50.578491897830474],[-122.53604401437958,50.578451527861915],[-122.53616793014008,50.578380614908184],[-122.53628327874152,50.578329115165296],[-122.53640313402971,50.578310927621615],[-122.53659567262707,50.578359080446766],[-122.53685043473729,50.57849462764054],[-122.53712254683654,50.578588547811414],[-122.53737085548575,50.57857828881152],[-122.5374972116936,50.57854455298388],[-122.5376055904786,50.57849171063191],[-122.53782996310473,50.5783789590676],[-122.53807783102475,50.57823657269729],[-122.53829472607123,50.5780831119768],[-122.53846713276018,50.57795636536905],[-122.53859405228287,50.577892298228626],[-122.53877349555711,50.57783492033602],[-122.53911523994502,50.577805078663374],[-122.53952412001229,50.57784478382764],[-122.53973692390385,50.57788231848478],[-122.53988868667108,50.57790896832365],[-122.5404168085944,50.57798441802704],[-122.54136353570956,50.57811111804273],[-122.54216624423016,50.57822545358409],[-122.54246143084649,50.578272298791674],[-122.54250496481104,50.57828095557142],[-122.54255546693445,50.57829096223989],[-122.54262132636875,50.578308183141054],[-122.54267784911228,50.578331868688664],[-122.54285353269064,50.57836936773536],[-122.54314351944953,50.578391872166236],[-122.54331568173407,50.57838317306769],[-122.5433952270002,50.57836034343164],[-122.54348126667952,50.57834502810632],[-122.54354016036869,50.57833786369437],[-122.54373021854627,50.578326347122534],[-122.54397967668775,50.57839312030128],[-122.54408545371858,50.578443070392716],[-122.54413431981754,50.5784743784903],[-122.54422022213849,50.57852989018115],[-122.54439319550018,50.578579678981114],[-122.54458656196702,50.578617166895356],[-122.54483503662759,50.5786507447149],[-122.54491552459619,50.57866167272305],[-122.54498245936345,50.57868792908527],[-122.54501166826147,50.57869895517825],[-122.54503279088532,50.57870016892834],[-122.54511723659573,50.57870560714068],[-122.54529232674675,50.57868181316652],[-122.54547546275641,50.578645334695075],[-122.54567894678405,50.578597129385294],[-122.54590199900713,50.5786164235383],[-122.54623982454346,50.57866064297348],[-122.54652989981902,50.57870506081973],[-122.54689529842027,50.57880466795047],[-122.54722318736502,50.57888623580873],[-122.54747368411489,50.57898564713525],[-122.54754853626173,50.57902394840475],[-122.54766761165934,50.579084984102465],[-122.54794771125661,50.57909817442281],[-122.54807070448562,50.57908512670461],[-122.54833454421856,50.579056769596654],[-122.5487302808198,50.57901452438702],[-122.54903485867064,50.5790312777499],[-122.54922466023399,50.57902311673004],[-122.54951555808937,50.57898772610229],[-122.54998085582466,50.57896055935499],[-122.55014286698487,50.57896895713367],[-122.5502893915346,50.57899486333912],[-122.55041685852983,50.57901568109189],[-122.55060717676433,50.579023831737466],[-122.55077194080073,50.579019388897514],[-122.55181880970078,50.57883203949453],[-122.55283776012278,50.57877817458435],[-122.55402266830552,50.579073479837135],[-122.55550316856188,50.57991871624142],[-122.55687596611075,50.58108608664871],[-122.55908623140253,50.58207752772149],[-122.55992992047253,50.58272086083368],[-122.56094089855964,50.58348909102284],[-122.56283406250982,50.58432898436299],[-122.5634997132518,50.584387774616985],[-122.56377597199105,50.584382258897996],[-122.5640486883739,50.58433052813017],[-122.56432706138101,50.58434362267103],[-122.5646048854282,50.584387055424614],[-122.56487483973393,50.584440929725695],[-122.56513645436038,50.584511401222386],[-122.56537299533522,50.58460921421939],[-122.56559431227893,50.584721163460934],[-122.56587041026246,50.58474092955428],[-122.5661410532824,50.58478582759297],[-122.56635837319459,50.58478803811809],[-122.56655894391753,50.58487068011751],[-122.56675045595425,50.58500251087597],[-122.56695857370639,50.58512529273451],[-122.56718953039045,50.58522685976468],[-122.56744921725257,50.585299523592795],[-122.56770890563791,50.585372177835595],[-122.56797706304317,50.58542654646229],[-122.56825630907707,50.58545146736086],[-122.56854493237469,50.58546936442309],[-122.56881798862963,50.58550589348578],[-122.56902456383759,50.585625817368715],[-122.56913572857528,50.58579114280895],[-122.56919823688564,50.58596845904691],[-122.56935113277925,50.58611988870501],[-122.56958790558639,50.586214883952834],[-122.56985534280787,50.58627878648618],[-122.57002389494656,50.58631771168352],[-122.57024849249864,50.586410081491856],[-122.56989287317322,50.58706187873278],[-122.57049473394582,50.587517221461624],[-122.5712437311646,50.5880838926155],[-122.57618458568852,50.59007930525544],[-122.58588238406904,50.593154795715],[-122.58668982574379,50.59332796989687],[-122.59396932537332,50.59360387186383],[-122.60043422524136,50.59473694765061],[-122.60572841704658,50.59770017701267],[-122.60708033661939,50.5994727321826],[-122.60959830149523,50.60060794203594],[-122.6136441189922,50.60362881701047],[-122.61284669017056,50.608202632989716],[-122.60685469333708,50.614837422591386],[-122.60389337759133,50.61843625099538],[-122.60202973064047,50.62454962441113],[-122.60285130936958,50.629974809637325],[-122.60725185253746,50.632827815785504],[-122.60986801856576,50.633624712198504],[-122.61740607665271,50.63544349366414],[-122.62622818336949,50.637143257686866],[-122.63440235824874,50.6380481757495],[-122.63521516160334,50.63816266415012],[-122.62928805249446,50.64033859831564],[-122.62407477335121,50.64337336729484],[-122.62156953701398,50.646175287477746],[-122.62104328784031,50.64902819155884],[-122.62231229350184,50.65268477365972],[-122.62446920257473,50.65565212590124],[-122.62645071836447,50.6566204411642],[-122.62995079774129,50.656045110804804],[-122.63686545815222,50.65243811049651],[-122.64136038528923,50.65048727714497],[-122.65151806760592,50.6504737393106],[-122.6582458503453,50.650294068885614],[-122.66031703557042,50.649491153421934],[-122.66749607570615,50.64570870222914],[-122.67511967306154,50.64106955750187],[-122.67969084377775,50.64168814497925],[-122.68770510032657,50.64401532919584],[-122.69318083610078,50.64177969785346],[-122.70413769571283,50.642616417578985],[-122.7074794487908,50.64552268079104],[-122.71028379240467,50.64997038276438],[-122.7164059735269,50.65264137226723],[-122.72154355440443,50.65309108966114],[-122.72729415030585,50.652905475015906],[-122.73284840318885,50.65054997554238],[-122.73850506267814,50.6504818809631],[-122.74346860761375,50.65235361755662],[-122.75237105599892,50.65559048315319],[-122.75993193112103,50.65642878853964],[-122.7670217151622,50.65515601010034],[-122.7740324111164,50.65359780040971],[-122.77886212433681,50.65084198192553],[-122.78092699685547,50.65009514815404],[-122.7856825394796,50.64836427600618],[-122.79240700124754,50.64543435601106],[-122.80130290633224,50.64540853604655],[-122.81748174686219,50.64633211444683],[-122.82467178756544,50.64739824387387],[-122.82539014981342,50.64785482984424],[-122.82879372087919,50.64618705107328],[-122.83254433054579,50.64240577837038],[-122.83333644071872,50.63920461781419],[-122.83554450277512,50.63519728697983],[-122.84198618845097,50.63117738449877],[-122.84826588245788,50.62864299299298],[-122.85623119625531,50.625475822306775],[-122.85772224594147,50.621359587287714],[-122.85745435302111,50.62033253634282],[-122.86165021954565,50.61699954250603],[-122.8741128578004,50.61484860228239],[-122.8833418596509,50.61298573288173],[-122.89472785145342,50.61020384997123],[-122.89801617804825,50.60704936837301],[-122.9030267051785,50.60394496646859],[-122.90248024090872,50.60366224547367],[-122.91117027645004,50.601972110063926],[-122.92516887630013,50.59980874969844],[-122.93339519340864,50.596803065251535],[-122.93578769448874,50.59324685535736],[-122.93818137648009,50.5904987767033],[-122.94407125410355,50.58687164120145],[-122.94361853653469,50.58687381923502],[-122.9418677056177,50.582254907194475],[-122.94047408177053,50.57654701519802],[-122.93949722929159,50.56866595259481],[-122.93982911010747,50.56586442401895],[-122.94267780855716,50.56242731982886],[-122.94307419151308,50.5582561991438],[-122.94300326097968,50.55076803397412],[-122.94594149480781,50.54870126298518],[-122.94747697978774,50.54898005328519],[-122.95324941690635,50.552843280239124],[-122.95821722165685,50.556706635029244],[-122.96148923933727,50.56057735820477],[-122.96546752474391,50.564044590135005],[-122.97221912511074,50.56601186179204],[-122.97607554376931,50.566683284752266],[-122.98155408339775,50.566144771988306],[-122.9848916948135,50.567387971217],[-122.98877184225735,50.570455409225346],[-122.99374716948668,50.57449081577109],[-122.99496520983027,50.57911635114277],[-122.99439945460189,50.593511590495716],[-122.99628341118579,50.60173028049362],[-122.996680009038,50.60447668491762],[-123.00543292537525,50.60072191049088],[-123.01768316961945,50.596892758352695],[-123.02362801686641,50.59811738837198],[-123.03020940388988,50.60020387535601],[-123.03588027388163,50.60194763872653],[-123.03758789239203,50.60222519161003],[-123.03994431917208,50.59673004506638],[-123.03836139792016,50.59091032663689],[-123.03764072678297,50.58274027186443],[-123.03957704462454,50.580391041644916],[-123.04476688266303,50.57887680106001],[-123.05114518074993,50.57907076766654],[-123.05916253749321,50.58166180656239],[-123.06357338159289,50.58340856864811],[-123.07135721009446,50.587653676440674],[-123.08046549623961,50.59178007108451],[-123.08424668026419,50.593012667162085],[-123.09012905981426,50.5965310194703],[-123.09449703781921,50.600732732831446],[-123.09457049956067,50.60616415469118],[-123.09388690063317,50.60907964723677],[-123.096430924484,50.61175061294383],[-123.09932584593572,50.61293533011162],[-123.10473497805145,50.61485125412139],[-123.11580253731435,50.61724457742275],[-123.12426477546641,50.61857154182437],[-123.13291114067295,50.620125109495106],[-123.13841924939769,50.621632236871555],[-123.14287185332776,50.62572322841341],[-123.14456590658975,50.63091545810623],[-123.14335854912896,50.635434836737545],[-123.14300040791153,50.63572402997191],[-123.15213777609524,50.63361202039032],[-123.16164145978915,50.63218515308167],[-123.16766586153591,50.63272507293829],[-123.17184775714294,50.6355525868535],[-123.17276955553314,50.63777637006099],[-123.17337810969572,50.641830149454385],[-123.17416955471941,50.647255047234744],[-123.17522121193059,50.651247510362815],[-123.18263115698309,50.65434956198502],[-123.18509492108124,50.65639018700938],[-123.18791947370165,50.659684410777736],[-123.18850184081833,50.662825373375355],[-123.18838942400897,50.666883196915954],[-123.1917497360299,50.669780038062484],[-123.19586162459376,50.67358004416397],[-123.19978577883977,50.678129158120704],[-123.19928857838738,50.68087484558909],[-123.19890741297259,50.68493929634749],[-123.20252577530287,50.686684204266584],[-123.20678561372475,50.6888293548851],[-123.2066815381109,50.69391710324491],[-123.20935366255219,50.69767361936468],[-123.21393028219933,50.703414269023725],[-123.21795815012388,50.70773358536318],[-123.2236219333309,50.71358452608106],[-123.23073436632173,50.71965531783838],[-123.2373437873085,50.72217985032765],[-123.24374287514917,50.72259982758247],[-123.25184824229333,50.722488398932576],[-123.26222889612413,50.72413561403633],[-123.27424749893451,50.72708253317814],[-123.28322163277599,50.73113667112746],[-123.28411886871571,50.730843889709945],[-123.29988347178467,50.72581947748415],[-123.3068951449093,50.72502871062462],[-123.318463820689,50.72843184363485],[-123.3245884411303,50.73347473801676],[-123.33154451159615,50.73982638156133],[-123.33402487840124,50.74249281855787],[-123.34018514168221,50.750104509438565],[-123.34084043841325,50.751018939827595],[-123.3336023844318,50.754842852359054],[-123.32491916444992,50.757650871207446],[-123.31765750624058,50.75993059592484],[-123.31391643297486,50.761957479429334],[-123.30900484226464,50.76479534463515],[-123.3101292376759,50.76758406583991],[-123.31478330657114,50.77046773068469],[-123.31933468703936,50.77317906335906],[-123.32187275112237,50.77418703032432],[-123.32555750203481,50.77358990806233],[-123.3387948316255,50.77304018674018],[-123.34899018100627,50.77422338417249],[-123.35802878343341,50.78010090878216],[-123.3627654338043,50.788406858378934],[-123.36455573937214,50.797081803376315],[-123.3755771002372,50.79397059445467],[-123.3877731589168,50.78993026588609],[-123.40175034224985,50.78599408937495],[-123.41516039227972,50.784458507082235],[-123.42341878534677,50.78753861738128],[-123.42753137292868,50.790363824915886],[-123.43661485925374,50.79395111894197],[-123.44591804935592,50.794957104947294],[-123.45210564667484,50.793307516526625],[-123.47185816194438,50.78937224808005],[-123.48066448220143,50.78809652844132],[-123.49781507454212,50.78463564886787],[-123.50999561817612,50.78138290835501],[-123.5224316807129,50.78939201447843],[-123.54258246159297,50.791499234039065],[-123.56504264538425,50.79243705485555],[-123.57747968468315,50.783859613359105],[-123.59240387559552,50.77857697480685],[-123.60431009902587,50.774974581771865],[-123.60886620854014,50.777389603025846],[-123.61352799341658,50.78369287781314],[-123.61875148050044,50.78746968383539],[-123.62346979906363,50.78873944421169],[-123.6348636373437,50.789999853090826],[-123.64824335064964,50.79158730870173],[-123.65206402942643,50.79320596227602],[-123.66323040186613,50.796409829575836],[-123.67877177717703,50.797450654567825],[-123.68466823142647,50.799335863428304],[-123.69310521618462,50.80485527778944],[-123.694544757432,50.81524481241226],[-123.69328926665857,50.829954271382],[-123.69357821102524,50.83069088693171],[-123.69900134098619,50.83109678056663],[-123.713818843894,50.83208554347996],[-123.7197805578779,50.832249261892194],[-123.71796883663396,50.83878541922383],[-123.71651847048076,50.84909441571455],[-123.71660066267242,50.85583921143249],[-123.71983076905026,50.86947024697695],[-123.72208834404536,50.873185564795556],[-123.72207387584295,50.873469432119414],[-123.72433583291445,50.87850335971254],[-123.72740823915733,50.88216205192268],[-123.73136758901481,50.88433863000838],[-123.73931971296032,50.88467844019241],[-123.74744829870713,50.88490723603936],[-123.74907060556149,50.88490782240891],[-123.75485698780588,50.88501994102562],[-123.76243325419564,50.885480868746065],[-123.76478435759057,50.88655936873921],[-123.76478785308981,50.894739150555516],[-123.76432822792853,50.898803529186374],[-123.7639720448351,50.90080005962185],[-123.763968400337,50.90400084881232],[-123.76406461846881,50.905491449404664],[-123.77752209165891,50.90857624912334],[-123.78619670555263,50.910229740776686],[-123.79071957897668,50.91205914231136],[-123.80662497963432,50.9114784695725],[-123.813302982463,50.91089965044195],[-123.81936903084151,50.91410113702231],[-123.8275934876016,50.91832565072078],[-123.83383573697783,50.92175263081372],[-123.8378225137443,50.92500888383088],[-123.83962525292638,50.9307278726212],[-123.84062790709602,50.934441951982784],[-123.84695332137161,50.93443995696843],[-123.85834808294405,50.93448505281553],[-123.86593899138457,50.93453252735847],[-123.86947359729723,50.93658854904306],[-123.87382536797912,50.939442103754175],[-123.87699828799879,50.94372523018924],[-123.87900346805445,50.94950333391833],[-123.88532374839511,50.947547845857926],[-123.88984842999554,50.94588504972316],[-123.89291723756895,50.943362058683036],[-123.89624236465546,50.93992798832311],[-123.90402310967235,50.93837839680277],[-123.91540928666842,50.9370991285095],[-123.92028811377465,50.936348524567684],[-123.92552463497506,50.93525451681699],[-123.93267373538372,50.93438304773564],[-123.94099386786029,50.93591223017454],[-123.94489591467999,50.93779848636789],[-123.9524998469395,50.94315983656207],[-123.96003205049784,50.94794772641249],[-123.97036801855488,50.954732398966954],[-123.97527088347175,50.95786801490397],[-123.98188646431566,50.9619140076917],[-123.9862306760413,50.963565781892676],[-123.99067128737052,50.96498328140762],[-123.9947538054329,50.96549363262791],[-123.9983086361717,50.963787884650564],[-123.99835239806687,50.96376564928804],[-123.99771466570334,50.96050734481203],[-123.99911841545969,50.95876488177187],[-123.99981479540835,50.95849206524224],[-124.02737937507496,50.937553681848925],[-124.03078116221049,50.9366538640399],[-124.03680328215833,50.93868464595095],[-124.03898906584216,50.94470638666277],[-124.04087902398027,50.950338842840324],[-124.05590223261225,50.97085877412662],[-124.05763898092883,50.973208698864276],[-124.06067668099105,50.97384396024804],[-124.06403918209236,50.97389634747737],[-124.06760615656486,50.97646851579144],[-124.06814370081261,50.97821259947198],[-124.06836771561048,50.9799535319537],[-124.06984813085728,50.9813303516599],[-124.07134763770422,50.98193830436804],[-124.07440304102282,50.98218159937648],[-124.08087929050177,50.98113754960013],[-124.08488798037344,50.98043398158634],[-124.08764412194121,50.98067181584182],[-124.09004758907771,50.981486916422924],[-124.09093267603595,50.982463124934874],[-124.09144639479173,50.98478661327623],[-124.09108344541913,50.98593586308376],[-124.09006368487108,50.98843428584908],[-124.08935999331463,50.99054394047651],[-124.08464650602008,50.993357278585634],[-124.08116885063525,50.99561438485762],[-124.07773892645567,51.0007253394263],[-124.07803958822961,51.001692753511854],[-124.07975886051426,51.003178456276956],[-124.08183035437298,51.0060961354172],[-124.08363054712143,51.007697675819955],[-124.0849039485546,51.00861146613917],[-124.08815282680632,51.01004277954308],[-124.09150135053846,51.01181758790473],[-124.09258422242716,51.01318840330197],[-124.0927528190278,51.015583418032406],[-124.09329176419796,51.018328852291916],[-124.09455830059605,51.01941474428977],[-124.09617510272557,51.01998725633648],[-124.09690041680346,51.0200472483414],[-124.10269466582528,51.02005253086527],[-124.11121472104928,51.02006122136955],[-124.11962986502408,51.02086413215758],[-124.12795445075224,51.02246995057627],[-124.13646944915384,51.02602014606013],[-124.14289239061122,51.02944980799342],[-124.14577112472642,51.03367906132495],[-124.1470371936604,51.038590692022034],[-124.14739198037748,51.04138771897591],[-124.14856288898007,51.044476610605756],[-124.15099345586893,51.0481857305366],[-124.15316191707953,51.04996047617776],[-124.15860851223118,51.051901699229624],[-124.16177482361557,51.05304307687298],[-124.1633936643262,51.05361572327356],[-124.16720507969684,51.05505208503595],[-124.17054867740771,51.057450747655444],[-124.17136250016452,51.06058795797782],[-124.17054530708427,51.063787359071654],[-124.16908941106236,51.06584015814982],[-124.16545066540536,51.069547643928075],[-124.16164158597826,51.07252133879198],[-124.16136564647562,51.07297490082091],[-124.15774799284856,51.07200244220666],[-124.15439490010154,51.07120035438402],[-124.1478604503799,51.070970673720154],[-124.14486952763828,51.07176853159196],[-124.143507529248,51.07393314518517],[-124.14359084111103,51.076730646409565],[-124.14403622370843,51.07941341947636],[-124.14385273521941,51.08141331495451],[-124.14357138412497,51.08336051417131],[-124.14384781343409,51.08461352221201],[-124.14438838804045,51.08501705706821],[-124.14746374797326,51.08633129273689],[-124.15262863549643,51.08827362972573],[-124.15789150926354,51.08993159947997],[-124.15834173816816,51.090105120456954],[-124.16441345144428,51.09364920776361],[-124.16766224515334,51.096333672510895],[-124.16974175835523,51.09964738292295],[-124.17046511827027,51.101873050550516],[-124.17155153961333,51.105702726392025],[-124.17309320505139,51.10889870283651],[-124.17480702753787,51.112783386629935],[-124.1755218593812,51.115924932552446],[-124.17679169874836,51.11844057572089],[-124.17877586452761,51.12237722802215],[-124.18049330798836,51.12654751861838],[-124.18049582029178,51.126835521167],[-124.17967746258049,51.12900191214069],[-124.17893717682989,51.13379933134314],[-124.17930664021779,51.136654536465024],[-124.1829311271503,51.13899866710647],[-124.18446988423148,51.13951291468298],[-124.18909301660607,51.14054147616305],[-124.19527067419193,51.141001988334935],[-124.2019969969093,51.141345175636744],[-124.20435589676246,51.14140296556879],[-124.21015766875317,51.14231918785255],[-124.21452229492942,51.14374729157153],[-124.21659903325913,51.14477645685914],[-124.22050680405188,51.14654453433848],[-124.22469062696483,51.147859359226565],[-124.22740437231751,51.14871760027237],[-124.2299482551726,51.149171785386486],[-124.23747884878566,51.15020293580942],[-124.24483821087469,51.15014256070315],[-124.2500141814717,51.149915946225114],[-124.25374666055356,51.14854193675932],[-124.25728833992575,51.145459082179705],[-124.2609995391881,51.14351646784111],[-124.26518412431574,51.143001655679],[-124.27081398922246,51.14248640603905],[-124.27770533412631,51.14191156741135],[-124.28452031247991,51.14145638747539],[-124.28896761069086,51.14042381701837],[-124.29359490107167,51.13768017933664],[-124.29586985378192,51.136192357024335],[-124.29895706487594,51.135160165630985],[-124.30294659213865,51.13447431579884],[-124.30476161459461,51.135278444028],[-124.30603357707201,51.13681753296084],[-124.30775485669899,51.13858393780491],[-124.31131116777772,51.14064104173134],[-124.31448247933349,51.142293193055885],[-124.3195657692517,51.144857776371154],[-124.3218371753369,51.14685889031835],[-124.32394019018224,51.14839719122681],[-124.32621018266249,51.14930649235558],[-124.32802416250411,51.1501652078677],[-124.33247057263546,51.15067555528522],[-124.33701222212584,51.15055625601306],[-124.34227436678918,51.14992257690956],[-124.34418062446248,51.14946675534477],[-124.35271970483353,51.147684000697886],[-124.3616110985545,51.146418171903214],[-124.36324087725154,51.14607644857415],[-124.36961004239576,51.14566859290309],[-124.37460405874984,51.14646583152189],[-124.37805544555056,51.14914450114258],[-124.37823775539155,51.15159874209531],[-124.37770436308912,51.15405391181685],[-124.37679958427069,51.15531104678099],[-124.37562468548235,51.156516007016684],[-124.37318453590628,51.159433100232626],[-124.37145879473806,51.16159937720684],[-124.36873387935572,51.164458375136064],[-124.36811140760776,51.16737074172144],[-124.36838695984007,51.16805440691773],[-124.36902051533244,51.17068576472747],[-124.37057489824272,51.1735908305702],[-124.37185267247327,51.176624329405435],[-124.37330915967398,51.17947572958226],[-124.37195388769092,51.18284445888212],[-124.3703320170793,51.18644617060112],[-124.37024782951785,51.189128274054035],[-124.37115890078827,51.190845363084186],[-124.37334579635592,51.19215203634311],[-124.37561356518617,51.192035957167],[-124.37680263619563,51.19203565337266],[-124.38016553660664,51.19174495443059],[-124.3850656363164,51.190940169362975],[-124.38889118408696,51.19013442959988],[-124.39078887335226,51.18915855533969],[-124.3945141827541,51.18715687370062],[-124.39731607280406,51.18572791238904],[-124.40032457680472,51.184522374039794],[-124.4064842280151,51.18091705626812],[-124.4093060070086,51.179310726225395],[-124.40929971890785,51.177887875241545],[-124.41309712122194,51.175822058724876],[-124.41415226211015,51.1683352370825],[-124.41864907212465,51.16107511592966],[-124.42532400486984,51.15249257045238],[-124.44136326126889,51.1493904249909],[-124.45586439823552,51.15959080789837],[-124.4727196688849,51.16315232131888],[-124.4949650312945,51.17039204172015],[-124.49503565969668,51.17042047959774],[-124.50993931533691,51.17260948024239],[-124.52275617730206,51.1742932753365],[-124.5351398902135,51.17654636241061],[-124.55405983507882,51.181294095442006],[-124.66792288856557,51.21303640219291],[-124.77208784980488,51.24185863850983],[-125.25440979974954,51.36863634127172],[-125.24518264877985,51.36160903726104],[-125.23620261896039,51.352928640505084],[-125.22780930965877,51.34048067672947],[-125.21479781503827,51.33512867114934],[-125.20848624488487,51.32728841796474],[-125.20419125953096,51.3200611280624],[-125.20473621185393,51.31371883301223],[-125.21480014937612,51.30424370560333],[-125.22024012104579,51.296222141996815],[-125.23475816223562,51.29270961395288],[-125.24395975386986,51.2876887042947],[-125.25904344332228,51.28525689817973],[-125.27526527597777,51.28070503829794],[-125.287168992978,51.27942958049995],[-125.28742183756363,51.27263543502105],[-125.2907439367393,51.264104907237645],[-125.30271545209709,51.26094301259391],[-125.3208050311718,51.254375622172155],[-125.32862234247591,51.24867341009343],[-125.33323738347438,51.24218927923524],[-125.3345835638869,51.23561671131426],[-125.33088367094187,51.22713183193511],[-125.32423421779458,51.22044152611263],[-125.33037987467897,51.21303447087091],[-125.34109871235741,51.21301780888122],[-125.33344681258473,51.206334426243416],[-125.32848540106981,51.19808695108481],[-125.31633183305563,51.193833698399],[-125.29899809982642,51.190351163400635],[-125.29262498493968,51.18314077394559],[-125.28874609856219,51.174088908976465],[-125.28109912910138,51.167114349949614],[-125.2923314741757,51.159337769704216],[-125.30061237667744,51.155174080689854],[-125.31227658428256,51.15235644277702],[-125.31951772836938,51.14580405209159],[-125.32747258487397,51.138269479229876],[-125.30767419043939,51.1373169364831],[-125.29478817124085,51.138024965820506],[-125.28383704564322,51.13404468889999],[-125.28106469203261,51.1250383489191],[-125.28431708272419,51.11845073739086],[-125.28553272348739,51.10954199740659],[-125.29360801757298,51.103380117089436],[-125.29232307384031,51.09699537825284],[-125.27378492814607,51.08917515390336],[-125.2652133489247,51.08557230045165],[-125.25515577767824,51.08632334282253],[-125.252296012367,51.0770890270262],[-125.2487370372786,51.069577821034216],[-125.24247771539771,51.06304612174434],[-125.23462619485802,51.05869922168834],[-125.24205861416662,51.05243363906017],[-125.2487756831385,51.04782732957269],[-125.2666185939475,51.04800337547658],[-125.27592230450506,51.04565768759568],[-125.28721079360776,51.04410840631086],[-125.29755439261112,51.04449221263908],[-125.31055141083581,51.04223961881496],[-125.31881409621339,51.03773007506113],[-125.32096710107368,51.031325561316855],[-125.31640392524763,51.02365071357683],[-125.3093493670787,51.01850102294929],[-125.30182297782684,51.0126126988723],[-125.29160862753722,51.0072541285057],[-125.28103876895375,51.00286662380631],[-125.26440925156535,51.00026040150671],[-125.26448018408477,50.99682605023095],[-125.26440759143144,50.994311757991994],[-125.25886523586773,50.987173855725345],[-125.25145142360539,50.97868456624442],[-125.25159256673413,50.9583823358218],[-125.22889347955883,50.956020178271906],[-125.2019284439777,50.95971076467535],[-125.19717187091881,50.95799079552734],[-125.19544326590335,50.954294770229204],[-125.19519555079529,50.951441132503085],[-125.19634010319982,50.94405107532707],[-125.197991121444,50.94174196334853],[-125.20193839045481,50.940036841183776],[-125.20605324271237,50.938501150577345],[-125.20799243161443,50.93676587702367],[-125.2091136073355,50.93457353071411],[-125.21070455854004,50.93318824059881],[-125.21864597941943,50.93263424210343],[-125.2227204604353,50.93252669930713],[-125.22432228241443,50.92884785753953],[-125.22469122073596,50.925640936218336],[-125.22617842786279,50.923623249836226],[-125.23150416481957,50.92355937103171],[-125.23822594832937,50.92428044143338],[-125.24288667331372,50.92313606820911],[-125.24699583246993,50.92091629549987],[-125.24870993169031,50.918034868424144],[-125.2495241137991,50.914481134951444],[-125.24924859722277,50.911395512382384],[-125.24855920079409,50.90922651947855],[-125.24678508343214,50.90724612883113],[-125.24286142315057,50.90615268050567],[-125.23703257500618,50.90496643546129],[-125.23279731164325,50.90215515462001],[-125.23015811772929,50.8984099787035],[-125.22849688570874,50.89408375466591],[-125.22802626853952,50.89003007000464],[-125.23045869391085,50.886741200050366],[-125.23808867577031,50.88476413942611],[-125.2449494155574,50.8811305453394],[-125.24493720209728,50.877643535635244],[-125.24376412724735,50.87468531236765],[-125.23908742964434,50.87205304620434],[-125.23449268007926,50.86964958919101],[-125.22799195470375,50.86978125733317],[-125.22594222923996,50.870721935553306],[-125.21856776700692,50.87527140428913],[-125.19441184413778,50.87726937366231],[-125.17681977219854,50.871811175036584],[-125.18025609351672,50.858902623651176],[-125.18292123504307,50.8569820973374],[-125.18484293469908,50.85450204921478],[-125.18687819417431,50.84967300724958],[-125.18741870298189,50.846521596807406],[-125.18695724565849,50.842977827560745],[-125.18681083028493,50.840868889460666],[-125.18353416982022,50.83975996300913],[-125.17857369842663,50.8398163103734],[-125.17243134180013,50.840002370051764],[-125.16812183120147,50.84096685021753],[-125.1648025321783,50.8414047022766],[-125.16083037985028,50.84179321540695],[-125.15575470465963,50.84116228254985],[-125.15166866132651,50.8333139552245],[-125.14810002882577,50.82821103569747],[-125.14842985526023,50.823569938988726],[-125.15145652842993,50.81827564925389],[-125.15818684319316,50.81688318928948],[-125.16113018918608,50.80912860209673],[-125.17633868436974,50.80375132134899],[-125.18553783082848,50.80072771527765],[-125.19168055344436,50.80100579029608],[-125.19482829029249,50.80045195547951],[-125.19823562604034,50.7996680396957],[-125.20164980380812,50.79928994004908],[-125.20883212431819,50.79777471446998],[-125.21257773387644,50.79629664619204],[-125.21349304997653,50.79348777568797],[-125.21511827660376,50.79066253085484],[-125.21878703767686,50.786219608312585],[-125.22174573872026,50.78257832534707],[-125.22180994671217,50.77806465276624],[-125.22423981155083,50.774598672600625],[-125.22859902893812,50.77277623750712],[-125.2379185172427,50.77043345730422],[-125.24430370523471,50.76704106814006],[-125.24961442160026,50.76337106501338],[-125.25302208754961,50.75978522612066],[-125.25794723063461,50.755320663917026],[-125.26460295649363,50.75163806948243],[-125.26970573917512,50.747459313612076],[-125.27275696837938,50.743818845573145],[-125.27450826794986,50.73899257807273],[-125.27699197995022,50.73443934673918],[-125.29187854638388,50.728994665349255],[-125.29208733546176,50.72384836258314],[-125.29199784458129,50.71784339880214],[-125.2931556805995,50.7145136318041],[-125.28658193455242,50.70818777836372],[-125.28926853188723,50.704951419821356],[-125.2964448146642,50.70085575025644],[-125.2992977176406,50.6968734773697],[-125.30271579005135,50.69385918939626],[-125.3066275140965,50.69186519300165],[-125.33336602337691,50.68626492901997],[-125.33092687054776,50.67983810093933],[-125.32798490582957,50.67489204319924],[-125.33032242356232,50.67194557319329],[-125.33366235380085,50.669158318729814],[-125.34537247559186,50.66700879553856],[-125.36186440905577,50.655985312480446],[-125.36046658024256,50.64879903208103],[-125.36542869507748,50.646105406223406],[-125.37275002438135,50.64463312675192],[-125.3748642326331,50.64317676450312],[-125.3747399271492,50.638890947475765],[-125.37813843978122,50.63558100791185],[-125.3872251613555,50.63311425226454],[-125.400619696212,50.629966483018464],[-125.40886883558701,50.62648168296741],[-125.41221611211532,50.62466279750479],[-125.41397377706654,50.62326611783075],[-125.41565015709389,50.61941027277189],[-125.41656397427,50.61436902787688],[-125.42114723280939,50.61418967855642],[-125.42593618532263,50.612291940453986],[-125.43374240362117,50.61213256978433],[-125.4342579971718,50.60823343028387],[-125.44789305104024,50.59958306331534],[-125.43996024239975,50.59305933023044],[-125.43885743811468,50.58969996277189],[-125.44225027499691,50.58616552469248],[-125.44718273145034,50.580320185389354],[-125.44690699293572,50.577465248661696],[-125.44583447184836,50.575077446453875],[-125.44443218651264,50.57309394739782],[-125.42620316022679,50.564761259075325],[-125.4259287967797,50.55858651738944],[-125.42082907092151,50.551052528560746],[-125.44641489718809,50.54280762780628],[-125.44007225919744,50.54089362834749],[-125.43633620080928,50.539398484877815],[-125.43202761816188,50.536312836711964],[-125.42736165137691,50.53363171995925],[-125.42317855442468,50.53185866814298],[-125.41902306765917,50.52796914669105],[-125.41902802462101,50.525395063125686],[-125.42657880261879,50.51751366279115],[-125.41523284614499,50.50468034238647],[-125.41178621970111,50.50615758359294],[-125.40873604304889,50.506427224887325],[-125.40254297222258,50.50331002379063],[-125.3990106211186,50.49637927012844],[-125.39701451228534,50.49274018247244],[-125.39269251480371,50.492227510008156],[-125.38730113661846,50.4915565951824],[-125.38519270105299,50.49003713764805],[-125.37960891151475,50.489030641491695],[-125.37409064495897,50.48738404800617],[-125.37157815103092,50.48455356659827],[-125.36417484084994,50.47967850440401],[-125.3393151592094,50.46381012012161],[-125.31686684884777,50.44985502429081],[-125.30546347478683,50.445708674586456],[-125.29910933919903,50.44579172020905],[-125.29363954880681,50.448771740574536],[-125.28734243452834,50.450567930410784],[-125.27893045007036,50.45067027894477],[-125.26885432592545,50.449139686408785],[-125.26079938335974,50.44637600409574],[-125.25118384201528,50.441797300168794],[-125.24467871447031,50.43661554730118],[-125.23560719214721,50.4292321255004],[-125.22654782844407,50.422133266037996],[-125.21797834269593,50.416173788292305],[-125.20937422779646,50.41232229819627],[-125.19838559128773,50.41047199100208],[-125.18981050333396,50.40907913136638],[-125.18180082699604,50.406025629348115],[-125.1774013923086,50.4041637983269],[-125.16914831933524,50.400663275150926],[-125.160472285647,50.397275176548646],[-125.15321463723335,50.39334961009296],[-125.14811315984684,50.38631111891224],[-125.1478097379114,50.381509933474035],[-125.14790875022527,50.374761698083645],[-125.14897171076181,50.36760180635426],[-125.14800210825133,50.36457870946568],[-125.14288286554968,50.36017608823967],[-125.13449742251186,50.35386214482817],[-125.12487895320092,50.348193804720964],[-125.12016111418657,50.34504238989067],[-125.11995915226605,50.345309274176216],[-125.11467296282461,50.340350608245096],[-125.10831939149038,50.33613404594153],[-125.10267712086521,50.33224470851213],[-125.08931634111991,50.3230634150889],[-125.07585784965555,50.31273923829022],[-125.0643693010396,50.303194438432165],[-125.05393644709818,50.296439043053965],[-125.04006618683799,50.28708562477807],[-125.03501675899082,50.28096132656114],[-125.0265517979605,50.273842181131926],[-125.0126291665174,50.2623121344719],[-125.00645148715755,50.25739635205207],[-125.0031594575528,50.25527073981298],[-125.00166580772502,50.25430111806823],[-124.99864738921458,50.25123853707671],[-124.99132628898289,50.24679064043783],[-124.97934178233173,50.23712967240334],[-124.97167182919165,50.22907829130429],[-124.9639291158771,50.2212626557629],[-124.95623744141818,50.21195189278005],[-124.94932089350777,50.20561084064118],[-124.9421566024747,50.19916128748139],[-124.93033827841667,50.188173804660714],[-124.92035674407397,50.17968672287064],[-124.91085575231152,50.17233601964823],[-124.89865639277448,50.15860462932877],[-124.88710551856437,50.146693507095094],[-124.87953169334904,50.13715096257827],[-124.87588954983711,50.12883407136619],[-124.87435888529549,50.118894482333936],[-124.87161173739617,50.10616033966782],[-124.86940539418842,50.09760301795057],[-124.86754930267386,50.0912934199069],[-124.86749822750666,50.09109903192159],[-124.86614341759145,50.085445759646674],[-124.86333718814335,50.07357161345582],[-124.86283876233911,50.06219534886659],[-124.86105688422012,50.04853988199309],[-124.85999929262667,50.0349927922842],[-124.85869434713591,50.02298938443552],[-124.85830894736674,50.01218219807871],[-124.85819159864973,50.00572169716722],[-124.85740815472968,50.00246590876188],[-124.85737605682162,50.000405372218545],[-124.85831640672328,49.99571701581407],[-124.8635638646137,49.98832012664997],[-124.8739429178801,49.974624632173885],[-124.88246386410493,49.960853422640504],[-124.89337496515779,49.94368169167384],[-124.89435748326568,49.93704912217991],[-124.89640657192966,49.92372785349895],[-124.89258290620486,49.9010604776211],[-124.8794624004956,49.8798178852306],[-124.84360777894467,49.83746230898465],[-124.82125974472328,49.81032089993528],[-124.80030687172598,49.79029449813117],[-124.78732570889623,49.78128272641043],[-124.78550381109564,49.779830118162685],[-124.78168362111893,49.776784539819076],[-124.74619197390928,49.75223537280125],[-124.71511471019251,49.72837199333778],[-124.67751917735802,49.70430926117986],[-124.63383790547314,49.68122979025696],[-124.59131948222404,49.65776505664209],[-124.5517807950956,49.638167089979966],[-124.51540951184454,49.619625516831114],[-124.4911646276783,49.60711086197482],[-124.46611616652906,49.59752354289299],[-124.44627591774979,49.58959758821449],[-124.41737648032523,49.578363734533816],[-124.39241839418914,49.5682453403214],[-124.35804880373438,49.55808542319792],[-124.32344950339066,49.550089235383524],[-124.30229518791089,49.54153143494938],[-124.27008027551634,49.533132286377025],[-124.23685744800484,49.523944251761534],[-124.22117144266582,49.51892892989595],[-124.18315414257538,49.504035137095045],[-124.15812531472385,49.49032391543544],[-124.11960787039664,49.472846431950856],[-124.0843032742771,49.45804944481162],[-124.04814010502469,49.4435420692261],[-124.02306001004446,49.433344981319074],[-124.00023291633309,49.42419205607542],[-123.86200795058586,49.34875907279831],[-123.52577513320652,49.15774249751906],[-123.52431234971202,49.156904447890106],[-123.31462061244859,49.00247496556385],[-122.43695033126275,49.00119241581397],[-122.09338539307937,48.99872556162368],[-122.09343726938906,48.998759012650325],[-121.26744165666047,48.99807311390355],[-121.01947224134005,49.000291265736806],[-121.06054086989715,49.10001075675777],[-121.06156202790714,49.1024840774002],[-121.0609464715397,49.10190502024723],[-121.06060755329605,49.101626325927654],[-121.0603311813085,49.101420435027975],[-121.06011449745297,49.10133037908408],[-121.05977043553563,49.101180886885246],[-121.0594014441052,49.10108861461584],[-121.05896764514523,49.101009440254046],[-121.05868364282988,49.10100454890732],[-121.0582884155766,49.100997922795074],[-121.05784831069057,49.101091040331355],[-121.05749372630497,49.10118582703481],[-121.05713531600311,49.10138111890554],[-121.05686437491609,49.10159199571432],[-121.05655294405659,49.10171612700158],[-121.05622058524129,49.101811373330065],[-121.0558813840017,49.10193872743308],[-121.05563838634104,49.102160760232884],[-121.05550049773171,49.10234532665443],[-121.05544834531632,49.102545688999044],[-121.05553830372833,49.10302162168912],[-121.05552448538072,49.10340959170602],[-121.05552718470015,49.10388404210284],[-121.05544796987994,49.104242208239114],[-121.05532795764125,49.10448428667145],[-121.05518601845284,49.104755243265984],[-121.05489296869203,49.104980321095674],[-121.05464731454595,49.10509817219856],[-121.05427331831396,49.105149470768254],[-121.05401152578519,49.10514503149961],[-121.05361796986313,49.10513846682388],[-121.05304836297522,49.10514325688889],[-121.05243428693407,49.10514711441765],[-121.05179849432432,49.10519396961596],[-121.05109194571942,49.10532582593408],[-121.05053939387264,49.10546025351143],[-121.04917864268818,49.10553797943629],[-121.0486258999532,49.10565801322621],[-121.04805378509755,49.105734566078404],[-121.0477632259269,49.105887556562905],[-121.04732168229714,49.10600960685427],[-121.04677295773398,49.10604351866379],[-121.0463349235678,49.106036013435585],[-121.04558656370361,49.10610949614036],[-121.04517112662408,49.106131229153426],[-121.04462239906312,49.10616512998711],[-121.0442913584837,49.106231353343084],[-121.04384809572142,49.10635331958427],[-121.04349347246946,49.106447780983366],[-121.04302967628394,49.106569355918936],[-121.04261133461661,49.10663436064849],[-121.04225670576011,49.106728826909745],[-121.04198952383845,49.10683915954883],[-121.0418943320796,49.107024562282014],[-121.04179564300256,49.107339237540046],[-121.04169584533595,49.10763214020432],[-121.04165662229528,49.10804826689362],[-121.04167111353618,49.10825000377809],[-121.04167773895435,49.10863806974916],[-121.04146026539793,49.10916637668917],[-121.04096375896034,49.10954615845253],[-121.04051390257384,49.10982601058679],[-121.0399978385487,49.11014791555707],[-121.03948583852686,49.110383436993075],[-121.03912593491306,49.11060736391489],[-121.03865552609474,49.110886819096514],[-121.03842601607647,49.111141871744266],[-121.03832055505677,49.111600048696495],[-121.03839368816477,49.111975114118344],[-121.03848756464143,49.112364664545105],[-121.03864932624917,49.11271251803243],[-121.03887478302974,49.11309009638488],[-121.03907683500162,49.11351031493198],[-121.03917221671357,49.11388583725526],[-121.03915251032635,49.1143598218493],[-121.03911613416497,49.114732922736295],[-121.03912929900467,49.1149630771461],[-121.03924809144635,49.11529597574156],[-121.03953896753859,49.11570336387917],[-121.03994948869745,49.11637148524774],[-121.04050244545684,49.11734398284769],[-121.0407287519724,49.118147978913456],[-121.04117278142724,49.11900066369867],[-121.04130219545073,49.119298510406246],[-121.04138198199783,49.11972406640972],[-121.04139902678074,49.12019127787716],[-121.04134850384618,49.12056852340127],[-121.04123368172424,49.12109845624695],[-121.04126081359176,49.121599701638175],[-121.04143649012326,49.1219783529736],[-121.04181019511755,49.12217241531325],[-121.04241705751333,49.12249567440392],[-121.04293139141657,49.12278617196524],[-121.04331871119723,49.12314215973924],[-121.04361813924854,49.12348619535658],[-121.04383540728048,49.12402186263158],[-121.0445079743587,49.125128698920456],[-121.04550630116285,49.12639747559278],[-121.04496981967684,49.12673256599905],[-121.04418878870607,49.12715761471],[-121.04359795889505,49.127648390173455],[-121.0432450844066,49.12814309152485],[-121.04283777619827,49.12876218359611],[-121.04258389676858,49.129164722288515],[-121.04229009232229,49.12937874129484],[-121.04166713395296,49.12943064563408],[-121.04038144881909,49.12940882739368],[-121.03923774831186,49.12935829194909],[-121.0380015336574,49.12927470412103],[-121.0372891457665,49.129184279350234],[-121.035454816604,49.128968143460256],[-121.03300680764232,49.128733194778064],[-121.03002367575573,49.128434520141155],[-121.0281741277379,49.128152688386606],[-121.02599408076738,49.12780222966208],[-121.02320077443535,49.12728513755263],[-121.0202113949663,49.12683784403789],[-121.01756666166419,49.12666364329594],[-121.0150797478266,49.12645720857353],[-121.01373904389291,49.12653317988419],[-121.01216578747281,49.12657070788527],[-121.01067782968683,49.12693197355102],[-121.00918283408213,49.12748634464],[-121.00838307095579,49.127794931226006],[-121.00708813328032,49.128322471281116],[-121.00583246364288,49.128707722959135],[-121.00507119775435,49.128928961327404],[-121.00418692511653,49.12930522451457],[-121.00331951770708,49.129540413184564],[-121.00241717462539,49.12946235437904],[-121.00145522030965,49.12906144269527],[-121.00082722280055,49.128792796565854],[-121.00015313271174,49.128442488760165],[-120.99999683343684,49.1283489169018],[-120.99945857171008,49.12802747585006],[-120.99873052115727,49.12750938450874],[-120.99821678573562,49.127135500186064],[-120.9975479786761,49.12668867830147],[-120.99717009947952,49.12631152868401],[-120.99688984270922,49.12591973710822],[-120.99673634995051,49.12546560502386],[-120.99647017663324,49.12475184637402],[-120.99629975019113,49.124136452536305],[-120.99607446571186,49.12360057949841],[-120.9959449233486,49.123163063285844],[-120.99571961737954,49.122659332196555],[-120.99558831334453,49.122254166299086],[-120.9955039852198,49.12193833677051],[-120.99512620837072,49.121544809120245],[-120.99442827169042,49.121210264585024],[-120.9931877210383,49.120882564943024],[-120.99226193853458,49.120721259627295],[-120.99160484497114,49.120580918976145],[-120.99023220638819,49.12049267176057],[-120.98925502157206,49.12037884810429],[-120.98866976112768,49.12028809866396],[-120.98796484246728,49.12009841419168],[-120.98696019540104,49.12003264286045],[-120.98646715487533,49.120088600033675],[-120.9856558422334,49.12009050693375],[-120.98503600059644,49.12024093713904],[-120.98470702780685,49.12047685026738],[-120.98444986714527,49.120762374729196],[-120.98421660186452,49.121064807108354],[-120.98396205833401,49.12131012202954],[-120.98345478769232,49.12170438089212],[-120.98270636263612,49.12198134688751],[-120.98188783977538,49.12219270152566],[-120.98131411801182,49.122392085057164],[-120.98076606831387,49.12257601475818],[-120.98029335399148,49.12274514179945],[-120.97977107404193,49.122880924526164],[-120.97913077562897,49.122950274010016],[-120.97848698945306,49.12305189098287],[-120.97789277131747,49.12320263155291],[-120.97724362572993,49.12343315025477],[-120.97667159782492,49.12361650772492],[-120.97609595816317,49.1238967164622],[-120.97574298616112,49.12411597780898],[-120.97548569822757,49.12441782930019],[-120.97529761095194,49.12479342527367],[-120.97519110725064,49.125017153729324],[-120.9750811131727,49.12527316206668],[-120.97491420373031,49.125785955042616],[-120.97481561577646,49.126380636799844],[-120.9747773568413,49.12671867530266],[-120.97481094338788,49.12710604465537],[-120.97494568148487,49.127398594779535],[-120.97513001629058,49.127724201378165],[-120.97530911436395,49.128114141869396],[-120.97544198808198,49.128503328051835],[-120.9753816278065,49.12876024869007],[-120.97532304979843,49.12898480950785],[-120.97550924172673,49.129229849228494],[-120.97589765438777,49.12934953574801],[-120.97641293364147,49.129358672928134],[-120.977119747731,49.129500008075404],[-120.97750639496377,49.12966783266209],[-120.97802418633367,49.13024111690889],[-120.97818286378231,49.130566364543895],[-120.97846128545069,49.13095811328435],[-120.97912820042662,49.13145319463952],[-120.9796806817846,49.131769195864514],[-120.98043796799381,49.132491834043954],[-120.98167775776282,49.133527753944016],[-120.98291060213384,49.13448549608935],[-120.9834303289723,49.13499425666632],[-120.98363696279439,49.13535246674964],[-120.98381425786047,49.135855383441196],[-120.98398987998134,49.136357941438995],[-120.9841494468331,49.1372635958345],[-120.98427356306587,49.13784609477102],[-120.98432411280173,49.13839498261265],[-120.98433023913476,49.138878635950576],[-120.9844286968819,49.1394605041112],[-120.98441621133856,49.13978281867698],[-120.98460068041662,49.140092331531065],[-120.98498214753917,49.140356881106854],[-120.98546646440698,49.140542762187806],[-120.98638550528005,49.14089725072555],[-120.98698021837947,49.14114129095053],[-120.98757156058589,49.141353017046704],[-120.98793085618095,49.14156887266174],[-120.98811539222243,49.141846227122215],[-120.98827420976582,49.142171175718495],[-120.98843825858825,49.14239991718939],[-120.9887647501085,49.142824611382565],[-120.988966136704,49.14331171272065],[-120.98907172757372,49.14373259512484],[-120.98905754847891,49.14407089974804],[-120.98904335075622,49.144425284380446],[-120.98895022811185,49.14489104755678],[-120.98893243059587,49.14535834552484],[-120.98908772072937,49.145747982384364],[-120.98937340179555,49.14599451855037],[-120.98968654907192,49.14616139650154],[-120.99002547985049,49.14628012212271],[-120.99064127141311,49.14683870619043],[-120.99111862011574,49.14718552785106],[-120.99162521940607,49.14743615019736],[-120.99210261436568,49.14775082492616],[-120.99260389536583,49.14814641857721],[-120.99305555492208,49.14850896222148],[-120.99336525292914,49.14873996318778],[-120.99389939978514,49.1489103505876],[-120.994705967681,49.14900486604337],[-120.99539094176949,49.149081315900254],[-120.9964441384494,49.14916417924004],[-120.99751191877284,49.149223174411894],[-120.9984184099691,49.149569063299055],[-120.99933418169046,49.15000420754212],[-120.99995716340669,49.15040175856317],[-121.00000015154588,49.150432806018884],[-121.00077002487379,49.1509962212188],[-121.00123010417852,49.151536490985336],[-121.00282880679944,49.152913639381424],[-121.00283559303246,49.152930315150535],[-121.00322820340408,49.15326863131667],[-121.00355187081193,49.15370554036257],[-121.00374564900186,49.154105667772754],[-121.00383467262772,49.154538439087716],[-121.00376240966203,49.15500291520283],[-121.00343021262134,49.155411041013295],[-121.0028105016568,49.1557798511585],[-121.00214592431477,49.15597540765718],[-121.00157420779888,49.15610534202125],[-121.00124217680653,49.156176761318235],[-121.00102621347986,49.15623806382942],[-121.00083040812883,49.15630340736227],[-121.00063460222789,49.15636875053259],[-121.00043720898995,49.15643289157367],[-121.00024011769412,49.15649422183515],[-121.00003835541594,49.15655111137085],[-120.99999951954509,49.156561153835675],[-120.99983375156243,49.156602508215784],[-120.99962777215367,49.15665073650124],[-120.99941864874214,49.156696282479665],[-120.99920982650472,49.156739026620116],[-120.9989978003939,49.15677964512532],[-120.99878601655388,49.15681800949842],[-120.99857438220918,49.156854981718645],[-120.9983613125637,49.156889342032656],[-120.99814567337879,49.156915686495466],[-120.99792713215986,49.1569371038424],[-120.99770859073973,49.15695852074521],[-120.9974930108156,49.156984307205455],[-120.99728161643507,49.15701903214635],[-120.99707724923712,49.15706817898887],[-120.99687981814925,49.15713259178754],[-120.99668995743001,49.15720638041168],[-120.99650482530285,49.15728406148731],[-120.9963322363455,49.15737274857042],[-120.99617700867735,49.15747550846557],[-120.99603316007257,49.15758414887896],[-120.99590389300066,49.1577008041489],[-120.99579433135132,49.157825703757915],[-120.99571466007177,49.15795989026584],[-120.99569402914172,49.15810360138991],[-120.9958132750525,49.15822335750509],[-120.99594148250634,49.158339587036494],[-120.99607152012493,49.15845476452165],[-120.99620500271332,49.15856983139184],[-120.99633848692919,49.158684889097394],[-120.99647026317459,49.15879987613583],[-120.9966020100893,49.15891514133817],[-120.99673193005916,49.15903144028462],[-120.99685828348731,49.15914898983033],[-120.99697927273549,49.15926854557114],[-120.99707871238721,49.15939697064716],[-120.9971674838327,49.159528842683095],[-120.99726332736235,49.159658796668566],[-120.99736618500161,49.159787371318444],[-120.99747077992592,49.1599157559227],[-120.99757363773954,49.16004433930266],[-120.99767122212488,49.1601740849409],[-120.99775831898756,49.16030559854657],[-120.99783142286984,49.160439556302556],[-120.99788873310422,49.16057674077006],[-120.9979337888042,49.16071616155045],[-120.99797177110698,49.16085751823405],[-120.99800100314792,49.16100044406763],[-120.99802496223744,49.16114452328051],[-120.99804199858684,49.16128913770855],[-120.99805558954161,49.16143387157707],[-120.99806573506966,49.161578724887256],[-120.9980742338044,49.16172293306181],[-120.99808108476326,49.16186650508029],[-120.99808278243722,49.162010117108615],[-120.99807758804707,49.162153977035814],[-120.99807062587941,49.16229831418538],[-120.99805853930206,49.16244242197771],[-120.99804477578746,49.16258616297889],[-120.9980275665912,49.16273002342081],[-120.99800867944909,49.162873526048806],[-120.99798814528941,49.163016383539315],[-120.99795226957961,49.163158256704676],[-120.99789095894945,49.16329724127287],[-120.99781293126044,49.1634320733105],[-120.99772480693453,49.16356502792802],[-120.99761850119104,49.16369148784594],[-120.99748931203138,49.163807299916236],[-120.99734990509143,49.16392235679404],[-120.99720073389702,49.16403244737379],[-120.99704078597313,49.16413103639786],[-120.99686737105988,49.16421123080656],[-120.99666351639803,49.16425532125008],[-120.99643999731126,49.164274817931215],[-120.99621824684475,49.16429382794664],[-120.99599892960515,49.164306182868515],[-120.99578218147497,49.164326552736924],[-120.99557176567421,49.16436780018116],[-120.99537152047662,49.16442616045397],[-120.9951771387031,49.1644938170646],[-120.99497527554983,49.164551253102815],[-120.9947691039927,49.164600881178636],[-120.99456146700726,49.164648175690715],[-120.99435391959727,49.164694634772225],[-120.9941462808036,49.16474193745598],[-120.99394010848484,49.16479155495204],[-120.99373692757412,49.16484526375955],[-120.99354745335576,49.16491512224633],[-120.9933699177979,49.165001607654496],[-120.99318014039106,49.16507426685486],[-120.99298257893969,49.165139515722956],[-120.99277927439996,49.16519434504136],[-120.99256957806583,49.16522885249422],[-120.99235007344396,49.16524288797659],[-120.99212803102257,49.16524862022229],[-120.99190879920664,49.1652601227957],[-120.99169607924917,49.165290824106854],[-120.99148879819812,49.16533475459316],[-120.99128274145832,49.16538324461441],[-120.99107796804323,49.16543574647314],[-120.99087459895473,49.16549113783294],[-120.99067275618397,49.16554828737983],[-120.99047082187974,49.165606280544715],[-120.99026888804059,49.16566426434731],[-120.99006701278047,49.16572170006349],[-120.98987258785293,49.16578962530845],[-120.98969381853465,49.16587153561413],[-120.98951474635975,49.16595624697469],[-120.98934055413709,49.16604345040291],[-120.98916776693234,49.16613353447294],[-120.989003064316,49.166228227159905],[-120.98884638622204,49.16632808517905],[-120.9886977026158,49.16643338690291],[-120.98855374780658,49.16654258149293],[-120.9884129969763,49.16665389240393],[-120.98827556930746,49.16676621526718],[-120.98814622723049,49.16688313792316],[-120.98804989332369,49.16701230997497],[-120.9879769247076,49.16714765123644],[-120.98791222317506,49.16728591340728],[-120.98785764695225,49.167425784399484],[-120.98781838302367,49.1675669194022],[-120.98779095258622,49.16770974285211],[-120.98777370978436,49.1678536005246],[-120.98776674483366,49.167997657406616],[-120.98776667188741,49.16814147596706],[-120.98776830790653,49.168285365113974],[-120.98777165096872,49.16842934280486],[-120.98777673306911,49.16857311274331],[-120.98778352321352,49.16871696224662],[-120.9877902823897,49.16886109903518],[-120.98779707261804,49.16900494847409],[-120.9878038628884,49.169148797880936],[-120.98780891415652,49.1692928549766],[-120.9878122884273,49.169436545126906],[-120.987813923664,49.169580442966385],[-120.98781385183021,49.16972425219944],[-120.98781033287533,49.16986818952538],[-120.98779998165783,49.17001180843431],[-120.98778618420349,49.17015554645587],[-120.98776726245174,49.17029904565375],[-120.98774663250737,49.17044246521955],[-120.98772261728526,49.17058543823854],[-120.98769518477374,49.17072826100367],[-120.9876643359107,49.170870924533894],[-120.98763007066505,49.17101342882636],[-120.98758735580097,49.17115469108769],[-120.98753789935172,49.171294790908966],[-120.98748002319293,49.171433370342875],[-120.98741702233876,49.17157171090979],[-120.98734727875969,49.17170889798551],[-120.98727088447829,49.17184407858836],[-120.98718789954005,49.1719766960311],[-120.98709316944709,49.17210678981546],[-120.98698007286129,49.172232084138024],[-120.98685077339606,49.17234843860702],[-120.986700599249,49.17245142131842],[-120.98652949127819,49.17254157988604],[-120.98634394863417,49.17262232133176],[-120.98615718192238,49.17269849352557],[-120.98597059589585,49.17277298638884],[-120.98578071414255,49.17284619734006],[-120.98559089287498,49.17291884229724],[-120.98540116118885,49.17299065190297],[-120.98521145994584,49.17306217385187],[-120.98502004994937,49.17313361581897],[-120.98482863936489,49.173205057438146],[-120.98463890533444,49.17327686567013],[-120.98444908052596,49.1733495085677],[-120.98426093226885,49.17342251808913],[-120.98407263308903,49.17349691895243],[-120.98388894186141,49.173576335050434],[-120.98371935013806,49.173668256628375],[-120.98356248432064,49.17376950648057],[-120.98343314099166,49.1738861438882],[-120.98335358793821,49.174018638957605],[-120.9832905412375,49.174157254899015],[-120.98323588290977,49.17429767874812],[-120.9831880571114,49.174438421215],[-120.98316911943094,49.174581918663904],[-120.98317586612963,49.174726045468624],[-120.9831946005578,49.17487045158815],[-120.9832099487027,49.1750144200007],[-120.9832065062879,49.17515751202735],[-120.9831791173577,49.17529977597308],[-120.98314831272673,49.17544187156368],[-120.9831140302768,49.17558437342234],[-120.98307465387477,49.17572634891453],[-120.9830335679951,49.17586825366875],[-120.98298909636488,49.176009711720035],[-120.98293955978187,49.176150374036034],[-120.98288666745528,49.17629031130524],[-120.98283047950869,49.17642896685484],[-120.98276757933273,49.17656618133012],[-120.98269293221256,49.17670088068901],[-120.98260650895112,49.17683333426388],[-120.98251505148197,49.176964704725044],[-120.98242194534221,49.177095438734064],[-120.98233045675705,49.1772270873195],[-120.98224570875585,49.177359907492594],[-120.98217771069943,49.17749660404404],[-120.98213326498968,49.17763778305614],[-120.9821126454674,49.17778091261978],[-120.98210566149513,49.17792496694585],[-120.98210380251865,49.17806926029673],[-120.98210874588577,49.17821415966986],[-120.9821068869073,49.178358452956985],[-120.98209313051474,49.178501622768025],[-120.98206070232281,49.178642802666836],[-120.9820128995522,49.17878325636495],[-120.98195487631044,49.17892295355188],[-120.98188846219347,49.179060851591295],[-120.9818103315811,49.17919594711196],[-120.9817240224767,49.17932727716467],[-120.98161937470812,49.17945352857592],[-120.98150471956357,49.17957704809729],[-120.98139009389647,49.17970028914099],[-120.98130214560082,49.17979911107812],[-120.98100039960984,49.18008084117265],[-120.98078814453302,49.18039240917764],[-120.98046077033861,49.18083170567831],[-120.98034023385512,49.18097779767745],[-120.97969231637678,49.18163421676278],[-120.97914014599883,49.18197672549869],[-120.97882219518866,49.18213812921255],[-120.9780454693285,49.182476929055255],[-120.97698338434085,49.182866126916046],[-120.97609409781552,49.183165810274964],[-120.97545874703526,49.18345141184049],[-120.97528014614083,49.183689527190445],[-120.97484662388739,49.18588602121798],[-120.97481529391482,49.18608025516645],[-120.9748070169801,49.18612498713888],[-120.97492319026334,49.186289175944076],[-120.97496364359768,49.18634379975484],[-120.97510754524917,49.18655326474476],[-120.97525784182565,49.18679885212249],[-120.97530790400972,49.18690749811345],[-120.97533710438587,49.18697089961281],[-120.97540917470982,49.187098340895695],[-120.97562377072097,49.18747974055849],[-120.97563996202673,49.18752054371175],[-120.97643630607209,49.18785832258207],[-120.97665065771506,49.18798818218831],[-120.97707477331295,49.18827445891267],[-120.97722080247642,49.18838504761492],[-120.97752664133984,49.18863760204511],[-120.97769866402912,49.18879367321182],[-120.97797119994792,49.18906836765925],[-120.97812929164535,49.18924211471402],[-120.97815380888801,49.189269481611475],[-120.97832539834091,49.189461345989436],[-120.97846979149575,49.189634741792034],[-120.97863428462395,49.18984460126543],[-120.97867275465552,49.18988587479043],[-120.9787450843273,49.1899634151034],[-120.97885243692417,49.19008234766165],[-120.97899803882527,49.19022872797358],[-120.97909067253828,49.19032497383006],[-120.97925466585056,49.190507746772155],[-120.97947331097183,49.19074099354712],[-120.97964636795456,49.190919387955255],[-120.97993147424708,49.191252746746116],[-120.98007100474157,49.19143944792368],[-120.98020461179841,49.191617408377425],[-120.98037575215623,49.19184534137025],[-120.98041083778713,49.19188617639919],[-120.98044808771664,49.19192288030835],[-120.9807272774361,49.19194577466568],[-120.98137576280125,49.191984195240416],[-120.98167625891989,49.192016535837205],[-120.98301336127027,49.192278248080505],[-120.98331148571357,49.19236433493389],[-120.98451729893218,49.19283985549455],[-120.98473195858597,49.192951374472926],[-120.98499124784105,49.19312672073372],[-120.98506154686734,49.19315961195917],[-120.98525339563702,49.193243835344845],[-120.98555206099294,49.19338859341946],[-120.98565939319896,49.19344435188739],[-120.98597990542078,49.19362538139585],[-120.98612765832758,49.19370445341615],[-120.98694671813,49.1942628690579],[-120.98713249496417,49.194419282353],[-120.98758776728053,49.194863463548735],[-120.98774494499942,49.195046173268246],[-120.98811728921464,49.19557446766722],[-120.98821963098112,49.195756039254555],[-120.98836888274279,49.19605991529297],[-120.98844376097107,49.19624133547078],[-120.98859272045924,49.196945612229875],[-120.98861008133547,49.19713478477684],[-120.98864181421017,49.197477185553396],[-120.98865171963782,49.197576335984735],[-120.98863174007694,49.197665919646205],[-120.9885521444824,49.197894007095144],[-120.98874199919902,49.19793330126481],[-120.98960683041527,49.19816418527729],[-120.98994494571052,49.19827805466781],[-120.99075405638419,49.19861151164429],[-120.99103613662847,49.198751247061516],[-120.99171625334859,49.199150040331425],[-120.99178343471277,49.199196027465945],[-120.99182460222255,49.19922839694929],[-120.99185990213978,49.199251470014076],[-120.99238256327057,49.199660969167205],[-120.99258311216437,49.19980819467421],[-120.99282145772975,49.20000313402182],[-120.99296042225521,49.2001161825895],[-120.99307908847892,49.2002263195867],[-120.99342734424792,49.200596685649074],[-120.99348450044192,49.20065601985564],[-120.99351074194139,49.20068346228507],[-120.99397350729244,49.20077266147599],[-120.99410779111699,49.20080175398904],[-120.99421386705019,49.20082163001217],[-120.99427928535624,49.200836231323564],[-120.9945367688165,49.20088570672715],[-120.99509342196586,49.20101226533027],[-120.99527030212217,49.20106052642327],[-120.99534087875665,49.20107508718025],[-120.99543370524951,49.201090402695726],[-120.99698861272564,49.20151770083731],[-120.99711361473523,49.20156918689073],[-120.99717510158774,49.20158840399581],[-120.99737532591087,49.20165917671722],[-120.99755372364751,49.20172527117764],[-120.99785925649394,49.20180714515295],[-120.99826013022864,49.201912911824294],[-120.99846671076573,49.2019884893441],[-120.99868699602492,49.202064423491294],[-120.99888329140707,49.202139810981954],[-120.99961692318665,49.202345905357035],[-120.99979506865083,49.202398449162985],[-120.99991685221676,49.2024320243657],[-121.00000098564614,49.202448339532594]]]}' + )), 4326)))); + +INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES + ('Okanagan','8','8- Okanagan','AR10100000','WHSE Admin Boundary',9 + , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-120.31931300329215,49.885021077824234],[-120.32457256366307,49.88933563251543],[-120.32587221816097,49.89019411621295],[-120.32704125879712,49.89077010191355],[-120.3287236673229,49.8913574809373],[-120.3314392041247,49.89211286285655],[-120.33577645424727,49.8931732157515],[-120.34159325435604,49.89436353800629],[-120.34705899351421,49.895431637736614],[-120.34895663269089,49.895763714274196],[-120.35146424699056,49.89614474524718],[-120.35405783500143,49.89647997583579],[-120.35673946949048,49.89676670195944],[-120.36033104150067,49.8971747101525],[-120.36299888356923,49.89746056722704],[-120.36525003389025,49.897743483120095],[-120.36623671154364,49.89776614055615],[-120.36766648969024,49.89766278214298],[-120.36960387893693,49.89747617685201],[-120.37138814956448,49.89710181057869],[-120.37471105279143,49.89607990775226],[-120.37933844964931,49.89458095930716],[-120.38350256015588,49.893299307269295],[-120.3877039107945,49.8918829984123],[-120.39140155086417,49.89050270125933],[-120.39333811293729,49.88994978037052],[-120.39455550410052,49.88969763650568],[-120.39768968674184,49.88950764949787],[-120.39986665197353,49.88946866817999],[-120.40339680222249,49.8897627736163],[-120.40592670628452,49.89023219957142],[-120.40825932649766,49.89051784885463],[-120.41076225258233,49.89076648654121],[-120.41304337074712,49.89083178444304],[-120.41518132177114,49.89054133822537],[-120.41811488957296,49.88969390639345],[-120.42199092385225,49.888714108153614],[-120.42413728328764,49.88793910078785],[-120.4259463067285,49.887225785466704],[-120.42816811836312,49.88693204025912],[-120.43181776835296,49.88674594412287],[-120.43386210112084,49.886619489196626],[-120.4359319682104,49.885925496578665],[-120.43847379637202,49.88509425458622],[-120.44137386224749,49.88411375265221],[-120.44370038983216,49.88354485180345],[-120.4458784902467,49.883277852574416],[-120.44737783731262,49.88315559757822],[-120.44954024160104,49.88330432707106],[-120.45290159427273,49.88380755941587],[-120.4555288198337,49.88445271238618],[-120.4579703666104,49.885162226744924],[-120.4627501543231,49.8868594072076],[-120.46745836649556,49.888977203258875],[-120.47066154668522,49.8905028647071],[-120.48087742640033,49.89524116627969],[-120.48224691408784,49.895935428175434],[-120.49270583116459,49.9013972291744],[-120.49340474068403,49.90173681424764],[-120.49810489743393,49.90398797841281],[-120.50126068748594,49.9052424840482],[-120.50293142398232,49.905845613363034],[-120.50416603244575,49.906302800564944],[-120.50525160830934,49.90670795037474],[-120.5068920956387,49.907360223364954],[-120.5089708930321,49.908271783954106],[-120.51081589601488,49.90918340820386],[-120.51283459068638,49.910160635902294],[-120.51469735513275,49.91120158180811],[-120.51648283086276,49.91233444707979],[-120.51746499813277,49.91302117407475],[-120.5185968357444,49.91394424438456],[-120.51981409996903,49.91504292175766],[-120.52044097672714,49.91562219806079],[-120.521153440284,49.91618659179849],[-120.52174673981159,49.91666779615001],[-120.52238368338489,49.91730899549681],[-120.52304938788018,49.918117911430336],[-120.5249735159075,49.92044120876846],[-120.5272357064423,49.92309136173153],[-120.52858039818358,49.92474696345543],[-120.53107334627839,49.927703894962185],[-120.53323709521813,49.93019056515101],[-120.53517282799726,49.932163025462145],[-120.53642536714328,49.93335338949142],[-120.53776990403931,49.934432226838204],[-120.5405979578013,49.93662662913913],[-120.54284397347321,49.938156161537385],[-120.54501199601485,49.93943374763669],[-120.54700282595572,49.940456157978076],[-120.54876200799377,49.94119645350406],[-120.55069172899256,49.94191308561907],[-120.55171106436237,49.942283391840256],[-120.55233916034203,49.942478668783686],[-120.55379035701188,49.94285974131788],[-120.55587182401659,49.943184217203566],[-120.55761330903493,49.94341622556562],[-120.55847264626219,49.943488813151696],[-120.55960451420563,49.943458275985165],[-120.56079695301624,49.943359163020546],[-120.56323076804001,49.94305792125243],[-120.56499091756915,49.942825766623194],[-120.56585132066355,49.942684178809564],[-120.56644702042908,49.94255087164698],[-120.56677221337613,49.94247458149581],[-120.56704191616214,49.94240962198641],[-120.56771085824539,49.94221850586602],[-120.56882676817813,49.941837648027],[-120.5690527941773,49.941787433928845],[-120.56979885324414,49.94169650385895],[-120.57066530929285,49.941665087545275],[-120.57156736769188,49.94173068361827],[-120.57251892222187,49.941879317068235],[-120.57337219159916,49.94203208716357],[-120.57480713019407,49.942448138361584],[-120.57634369659992,49.943008409322815],[-120.57753598332546,49.94351216031903],[-120.57851043106955,49.944115005498126],[-120.57977786174672,49.94492735146492],[-120.5812508370654,49.945979800640366],[-120.58257653357076,49.94696406919142],[-120.58347748526067,49.94762803218994],[-120.58437295141351,49.948367803853365],[-120.58646577401045,49.95012995533986],[-120.58874122301565,49.951885291258954],[-120.59081086160265,49.95340384860146],[-120.59180290340132,49.953964585414994],[-120.59265426098091,49.954341958762704],[-120.5933620139495,49.95458994146062],[-120.59392489211709,49.95471917763894],[-120.59475142567996,49.95487890158869],[-120.59549677694704,49.95498670338218],[-120.59586958726533,49.95503947728961],[-120.59646403999817,49.955123485529576],[-120.59739352540481,49.95519583327214],[-120.59860478098526,49.955219519959606],[-120.59942847632617,49.95521168054501],[-120.60024231415585,49.95515432223482],[-120.60122715200545,49.95502479329922],[-120.60208748473346,49.95489926253271],[-120.60280775022017,49.95477639766439],[-120.6033601616345,49.954654840935504],[-120.60511162696551,49.95414320067493],[-120.60661895476551,49.95373108749294],[-120.60778563643805,49.953407572414065],[-120.60920620620571,49.953049205570665],[-120.61018440321631,49.95282741467927],[-120.61124086475458,49.95266751065296],[-120.61242354764161,49.95250366323684],[-120.61308277784472,49.95245324895607],[-120.61372740051746,49.9524229688031],[-120.61441217850368,49.95240762661745],[-120.6150765439858,49.95247637074351],[-120.61572602639211,49.95255282790313],[-120.61630434062572,49.95265509644775],[-120.61686615228189,49.952808389712985],[-120.61731346454779,49.95299945045974],[-120.61771804236619,49.953197425612274],[-120.6180243119599,49.95339958410129],[-120.61820699863385,49.95358326902569],[-120.6183456253528,49.953785076431075],[-120.61843106015269,49.95396398091804],[-120.61848855907658,49.954127986718646],[-120.61850447734874,49.95431869525187],[-120.61854421591343,49.95454437932206],[-120.6185184190481,49.95470373219015],[-120.61848921801851,49.954921519503614],[-120.61822458927557,49.95590546489444],[-120.6180004816144,49.956531278381945],[-120.61796228708889,49.95706196483046],[-120.61789174348421,49.95786664810093],[-120.61785099505119,49.95827097903073],[-120.61781910665988,49.95911813741617],[-120.61777185935262,49.96037649916314],[-120.6177977680421,49.963382676666846],[-120.61784498143625,49.96469921585061],[-120.61781463420877,49.96514857103142],[-120.61745235068975,49.965923129928406],[-120.61706047216467,49.96653392846548],[-120.61650642927428,49.96708265380856],[-120.61601828942753,49.96748753212278],[-120.61546425689659,49.96800638015188],[-120.61496793679567,49.9685246906359],[-120.61480973758579,49.968784039048074],[-120.61464319230119,49.969173154011116],[-120.6145943006133,49.96986787418407],[-120.61455037258492,49.970890259112494],[-120.61455600675026,49.971404498563686],[-120.61463146730202,49.97191934819964],[-120.61467142138522,49.97203965888654],[-120.62109490102911,49.97331441910926],[-120.62590086802699,49.97440800897516],[-120.63116198280586,49.975674710857895],[-120.6402498439997,49.97792864081801],[-120.64565238970785,49.977878918879256],[-120.65041071315908,49.97629003278808],[-120.65249449104792,49.97044651363995],[-120.65235858941634,49.96421844871828],[-120.65228891750739,49.96159571864494],[-120.6516970527607,49.95091638993626],[-120.6539546786179,49.94500850589786],[-120.65465850864524,49.94448664363905],[-120.65842640761888,49.93879721953162],[-120.66213065074554,49.93447907872134],[-120.66248517408825,49.93407538820654],[-120.66745033002366,49.93031392628212],[-120.66962430596385,49.92892021960447],[-120.67173800405595,49.92804144038958],[-120.67372399630506,49.92179642851992],[-120.67469779768179,49.918477698283795],[-120.67772771938398,49.9152449031898],[-120.68041782159023,49.912648110330146],[-120.68137029752063,49.90435537486903],[-120.68232780629917,49.89949100387691],[-120.68674279127683,49.89573299867432],[-120.69695610164706,49.893346685747936],[-120.69881125966651,49.8927524706271],[-120.71181930966614,49.88959576669701],[-120.71767260283704,49.88953549589549],[-120.72557584725087,49.89105481960709],[-120.73592178905167,49.89414454153265],[-120.74370802401194,49.89766078725374],[-120.7472736830732,49.899054397501565],[-120.75448858519029,49.90063366922443],[-120.76344084509502,49.90094092921074],[-120.77084867491006,49.90023312137099],[-120.7744516143001,49.898992583596225],[-120.77845801228717,49.896662770012355],[-120.77833660345013,49.89186765155492],[-120.77672178474153,49.88720008780725],[-120.77643709255219,49.8828586176973],[-120.77641673721789,49.88206081839727],[-120.77699716816066,49.8804007806946],[-120.7773452262307,49.88016269433483],[-120.77958334535478,49.87791123490611],[-120.78447122479729,49.87517193822451],[-120.78762275773666,49.873710576528204],[-120.78956204509906,49.87346041182547],[-120.79607470675036,49.872363551931],[-120.80198862395156,49.87150043675765],[-120.80693926747922,49.86819009957265],[-120.81069467937309,49.86643447621576],[-120.823543704072,49.86748785692226],[-120.83190221430728,49.86916370004503],[-120.83853024767832,49.868633342306815],[-120.8464559662264,49.867228371627725],[-120.85110832928623,49.866035524025264],[-120.85842779202649,49.8618315900211],[-120.86418348062745,49.85565135778008],[-120.86652484468539,49.85379535089563],[-120.87040336176125,49.85004035841264],[-120.87076943275812,49.843921039050265],[-120.87072143745796,49.84260977448344],[-120.86833286230336,49.83595358115209],[-120.86412252176373,49.83051386677959],[-120.8628713067746,49.826644504546444],[-120.86320431745932,49.822811323013156],[-120.86879886942154,49.81714839743051],[-120.8711308860332,49.815232121492734],[-120.8757682035369,49.81026491709708],[-120.87785868343646,49.80589766007013],[-120.87850120399911,49.803889537557204],[-120.878913452035,49.80256993838353],[-120.8791248349677,49.79719700755026],[-120.87775653300882,49.792753544357026],[-120.87684144281218,49.79122791448258],[-120.87902812918084,49.787484978172415],[-120.88572963097421,49.78369170539509],[-120.8911492234701,49.77865459409305],[-120.8928526077516,49.77348947526115],[-120.89989326522182,49.76649627671958],[-120.9025322814999,49.76566109039895],[-120.91275816074425,49.762277828544654],[-120.9161598722897,49.76058244332816],[-120.91692649277623,49.75994193783825],[-120.91798296921704,49.756563168345615],[-120.91678942333164,49.7517754275848],[-120.91693807776241,49.75068626362955],[-120.91678620909299,49.74566188920105],[-120.916662610886,49.74126040307209],[-120.9166420496404,49.740693633749416],[-120.91763278719652,49.73827992203926],[-120.92365840862377,49.73283560819388],[-120.92784266135568,49.73095432396124],[-120.92990841948445,49.72949674832505],[-120.93153140614615,49.724624777028225],[-120.93169843456808,49.723994038253736],[-120.93308377439338,49.72026288994234],[-120.9381076928956,49.71705592641238],[-120.94425231811941,49.71577742741229],[-120.94747518654404,49.71465333433627],[-120.95287713675008,49.71241512324143],[-120.95662874589769,49.70774231830427],[-120.95774963818437,49.70121182460761],[-120.95822179492738,49.69931756883573],[-120.96365593751588,49.69524597495102],[-120.96959966112533,49.6932315807559],[-120.97198725360026,49.690456435630274],[-120.97309405070446,49.68643916727129],[-120.97254449402946,49.68587783704203],[-120.96716594833993,49.682749418312795],[-120.96314208922655,49.68056876947719],[-120.96044769025661,49.67905594288858],[-120.95644712272217,49.67767975523308],[-120.95645946111222,49.67516673932587],[-120.95713556636717,49.66812842446568],[-120.95812296798603,49.6628037176348],[-120.95798773825761,49.658347291940636],[-120.95787164073262,49.654348800062266],[-120.95984117044765,49.652209919971355],[-120.96461739823269,49.64408814079844],[-120.96720521886687,49.641997483574606],[-120.97086554724298,49.637838348533464],[-120.97565162006907,49.63314610440043],[-120.9806705525546,49.629995177895374],[-120.98056235334712,49.626795642633944],[-120.98061472997185,49.62542735832646],[-120.98213976709505,49.62060617968673],[-120.9840360401252,49.616065013650676],[-120.98578925217447,49.612958948834304],[-120.98923530550687,49.60462302344509],[-120.99402750551775,49.594731948428034],[-120.99698935183368,49.59349597508908],[-121.00855234916469,49.589114020381345],[-121.01706866235435,49.58597371769787],[-121.02332202493561,49.58337557861188],[-121.03026543497178,49.58002609326568],[-121.03298898911063,49.577128869287094],[-121.03491810304604,49.57144898729194],[-121.03445586659979,49.56533530788638],[-121.03526350894366,49.56298443122319],[-121.03849215747496,49.55384788973891],[-121.04172605044968,49.5504351974617],[-121.04653248649416,49.546428005514336],[-121.049052565124,49.543077207659906],[-121.04933854319324,49.540675059737644],[-121.04691091360677,49.53647640492935],[-121.04341273995534,49.53104084202562],[-121.04282953824654,49.52938720244584],[-121.04992811493861,49.5259200133847],[-121.05868497403287,49.52517148934149],[-121.06287267885915,49.524316087307916],[-121.07047543261179,49.520381622135844],[-121.07595052662165,49.51601863257202],[-121.07720491375231,49.51114141014743],[-121.07701888688614,49.50537298494325],[-121.07626628022409,49.50115420634152],[-121.07531047756902,49.4987090274193],[-121.0708946398546,49.494997487340285],[-121.06640127768509,49.491629137706276],[-121.06415281658185,49.49028666152302],[-121.0634131430796,49.488930013931416],[-121.06157700063332,49.48632191232089],[-121.06016976546738,49.483712744588374],[-121.05714261337938,49.47958011148062],[-121.05352781919466,49.476033818686865],[-121.05551985805373,49.475375333370486],[-121.06748875893382,49.473841285963296],[-121.0724704699186,49.47314160391747],[-121.07796704689962,49.47214887529383],[-121.08628728266564,49.46878013666306],[-121.08260046551523,49.46602691651898],[-121.08061099589474,49.46433682284394],[-121.08149256570967,49.46164212941789],[-121.08305815792625,49.45836265520301],[-121.0846675641615,49.454280746918904],[-121.0869279142646,49.44784532489817],[-121.08717386017275,49.44475671125216],[-121.08836481250543,49.4381094642819],[-121.0893643152362,49.43403750864246],[-121.08930047494935,49.432041337964456],[-121.08880232127024,49.430103801937186],[-121.08850271914947,49.426559953440496],[-121.08865248553957,49.42307537507329],[-121.08957329990291,49.418831222934685],[-121.0910955381556,49.416979147808476],[-121.09630791643318,49.41313505551956],[-121.09967729234386,49.411432269805594],[-121.100893690462,49.40855347565003],[-121.10030456823118,49.40656052070943],[-121.0966642534119,49.402498211438875],[-121.0961360188523,49.39993408564697],[-121.0976206139574,49.39699783145015],[-121.1029860123016,49.39480759860744],[-121.10933995810534,49.39357085906348],[-121.11260923873196,49.3917524004031],[-121.11523405267923,49.389371732873414],[-121.11442079938689,49.385841528827214],[-121.11123617483331,49.38216996625138],[-121.10372953710919,49.37776588504151],[-121.10186211310794,49.376644813468914],[-121.09298605861584,49.37294450217151],[-121.08979079188624,49.37173386447349],[-121.08050942468033,49.36900819467971],[-121.07688603016527,49.3681970939703],[-121.07564549056602,49.3679322513786],[-121.06997265225003,49.36577929217924],[-121.06701403613798,49.36365271300716],[-121.06351250455303,49.36067274679838],[-121.06356936582813,49.35975270602168],[-121.06515894070219,49.35739062719673],[-121.0693572073759,49.35486996630238],[-121.07200839333856,49.35289084489544],[-121.07016518892202,49.350006689592135],[-121.07041546277154,49.34959865357726],[-121.07363884222465,49.343667790678104],[-121.07808585317663,49.33788617980323],[-121.08314969162491,49.33484772678355],[-121.08082627927269,49.33064817069486],[-121.0773280976566,49.327781624553374],[-121.07189250624197,49.32745695027486],[-121.06606473331088,49.328743205366884],[-121.06625529474503,49.32902367017121],[-121.0573203425294,49.32869248062506],[-121.05165583103965,49.32677113940921],[-121.04285905366287,49.3223243464787],[-121.03893587018617,49.319978992057685],[-121.03466574230694,49.31534947656013],[-121.03012982499347,49.309867631447844],[-121.02563362837144,49.305724220142],[-121.02676896570878,49.30448280327939],[-121.02687569598282,49.30435465392038],[-121.02696541550358,49.30422459269254],[-121.02703641133762,49.30409254067904],[-121.02708351456113,49.30395853933583],[-121.02710678516063,49.30382203210766],[-121.02711304565207,49.30368361312949],[-121.02710575217002,49.30354316202463],[-121.02708484505358,49.30340123537476],[-121.02705543267682,49.30325835731511],[-121.02701754694142,49.303114231590975],[-121.02697109535788,49.302969720003055],[-121.02692293104542,49.302825129403644],[-121.02686959810096,49.30268058016146],[-121.02681617484399,49.30253687471805],[-121.02676269213053,49.302393725803576],[-121.02671251520066,49.30225185690897],[-121.02666390016968,49.302111476345864],[-121.02660134142211,49.301972699332744],[-121.02652832386434,49.3018351361703],[-121.02645007716183,49.30169817988411],[-121.02637005815942,49.301561701130844],[-121.0262934954553,49.30142510193753],[-121.02622384483678,49.301288261960806],[-121.02616976263879,49.30115072324084],[-121.02613473441886,49.30101208715921],[-121.02612053178247,49.30087188509678],[-121.02613055245385,49.30073053534606],[-121.02615785285522,49.30058857484516],[-121.02619726414298,49.30044604495896],[-121.02624361753605,49.30030298705395],[-121.02629342637616,49.300159808745356],[-121.02633977918651,49.30001675073758],[-121.02634453099152,49.300004564989976],[-121.02639244499659,49.29986299532085],[-121.02652382254836,49.299585428212545],[-121.0265935817883,49.2994488079844],[-121.0266633097606,49.299312474954846],[-121.0267330382872,49.299176132875154],[-121.02680450917362,49.29903959139034],[-121.02687423687482,49.29890324916353],[-121.0269439641661,49.298766906863825],[-121.02701372093722,49.29863028619636],[-121.02708344644387,49.298493952727895],[-121.02715320239358,49.29835733191427],[-121.02722295793232,49.29822071102764],[-121.02729100021615,49.298084011113076],[-121.02735904209885,49.297947311127395],[-121.02742540159737,49.29781024484561],[-121.02749347256868,49.297673266423836],[-121.02755814737544,49.29753585173414],[-121.0276245355822,49.29739850694979],[-121.0276892096175,49.29726109212485],[-121.02775391411805,49.297123389959985],[-121.02782030115469,49.29698604497013],[-121.0278850039183,49.29684835164711],[-121.02794799446737,49.2967105703348],[-121.02801101452474,49.29657251066138],[-121.02807403420691,49.296434450922504],[-121.02813537061618,49.29629603388045],[-121.02819496400382,49.29615781613014],[-121.02825290499231,49.29601895380866],[-121.0283091319057,49.29588002146532],[-121.028365389326,49.295740801790146],[-121.02841822090019,49.295601424181825],[-121.0284710820359,49.29546176822203],[-121.02852228986663,49.29532147667805],[-121.02857184536902,49.29518054057474],[-121.02861968783647,49.29503952548464],[-121.02866587800322,49.29489786583902],[-121.02870864147715,49.29475605725531],[-121.02874798021676,49.29461408178269],[-121.02878389232558,49.29447195737952],[-121.02881463717807,49.294329865460476],[-121.02884195547306,49.294187624618104],[-121.02886239293477,49.29404534631405],[-121.0288779331268,49.293900586852146],[-121.02888878714823,49.2937513801967],[-121.02888945463896,49.29360086503447],[-121.02887789343022,49.29345203268411],[-121.0288469195097,49.293307673579484],[-121.02879611382694,49.293171692850265],[-121.02871835314856,49.29304631533026],[-121.02860366336206,49.29292825745137],[-121.02845378722407,49.2928173197393],[-121.0282787608104,49.292716211049246],[-121.02808852750617,49.29262850210418],[-121.02789315198496,49.292556632543175],[-121.02769897470598,49.29250566715325],[-121.0274879021698,49.29248382069359],[-121.02726603881942,49.292482325667386],[-121.02703807255303,49.29248957961907],[-121.02681040797891,49.29249402318465],[-121.02658944703988,49.29248412398565],[-121.02635325471013,49.29247181688698],[-121.02611231511818,49.2924556365317],[-121.02589944598873,49.29241847529026],[-121.0257474642409,49.29234323474897],[-121.02563305472911,49.292222650963126],[-121.02554750006757,49.29207378819996],[-121.02550422324666,49.29191588657203],[-121.0255182409284,49.29176936938484],[-121.02559345606137,49.29164596455803],[-121.02569240514065,49.29152591870367],[-121.02581019321511,49.29140673253188],[-121.02594324261423,49.2912896664474],[-121.02608806925012,49.291175110063456],[-121.02624455060813,49.29106420345706],[-121.026407491055,49.290957248311166],[-121.02657331310634,49.29085550508618],[-121.02674366959887,49.29075960933156],[-121.02691333224024,49.29067016801499],[-121.02708768077153,49.290585164701966],[-121.02726677401924,49.290504051752215],[-121.02745067273136,49.290426263569614],[-121.02763772605361,49.2903511466288],[-121.02782796195488,49.2902784405705],[-121.028021501891,49.29020701422958],[-121.02821489088142,49.29013698800503],[-121.02840996196184,49.29006731866385],[-121.02860500161785,49.2899979362394],[-121.02879841969298,49.289927621671985],[-121.02899024412805,49.28985611462597],[-121.02918050575042,49.289783127832855],[-121.02936914577282,49.289709208921394],[-121.02955940619647,49.28963622144476],[-121.029749546551,49.28956434682256],[-121.02994139788409,49.289492559749185],[-121.03013321875817,49.28942105062685],[-121.03032338720567,49.28934889667177],[-121.03051364561338,49.289275898497735],[-121.03070228048544,49.28920198617938],[-121.03088938332641,49.28912630687069],[-121.03107495315916,49.28904886955636],[-121.03125565547973,49.28896867258001],[-121.03143491626695,49.28888586476835],[-121.03161111255758,49.288799532339446],[-121.03178253182313,49.28870959642219],[-121.0319507960293,49.28861697979841],[-121.03211587531315,49.28852196078225],[-121.03227942149798,49.28842518384271],[-121.03244134502285,49.28832748388787],[-121.03260329867817,49.28822949639786],[-121.03276525068642,49.28813151762796],[-121.0329271423155,49.28803409520262],[-121.03308744113436,49.28793547147487],[-121.0332445550099,49.28783444540806],[-121.03339689180737,49.287729815973584],[-121.03353937476874,49.28762078103913],[-121.03367218297929,49.28750567083361],[-121.03379360592427,49.28738438858163],[-121.03391181317373,49.287260991380855],[-121.03403326469214,49.28713943051328],[-121.03416099359893,49.287023517494696],[-121.03430491360379,49.286917091929304],[-121.03446499484602,49.28682043205888],[-121.03463988677557,49.286730083443565],[-121.03482426921252,49.28664751522533],[-121.0350162815589,49.28657403105764],[-121.03521412100027,49.286510395955936],[-121.03541769621924,49.28645746275287],[-121.0356224426054,49.2864096533374],[-121.03583190439086,49.28636601213634],[-121.03604271738709,49.28632581590568],[-121.03625500286769,49.28628793347305],[-121.03646881858695,49.286251826179935],[-121.03668422709971,49.28621691047975],[-121.03689792286738,49.28618191554426],[-121.03711339037501,49.28614644237914],[-121.03732555295693,49.286109688998856],[-121.03753795663738,49.28607068184354],[-121.0377486763994,49.28603132615233],[-121.0379610784035,49.28599232713794],[-121.03817348101227,49.28595331872627],[-121.03838416988859,49.28591424009158],[-121.03859657082239,49.28587523982092],[-121.0388073195711,49.285835594772124],[-121.03901978036981,49.28579602808025],[-121.03923061782187,49.28575554729046],[-121.03944148567444,49.285714778805506],[-121.03965235315643,49.285674009906344],[-121.03986318950194,49.285633527874545],[-121.0400757686485,49.28559283690091],[-121.04028507258589,49.28555058750862],[-121.04049455590658,49.28550665890639],[-121.04070265806666,49.28545955389602],[-121.04090769450407,49.285408933395146],[-121.04111152848567,49.28535346668156],[-121.04131082646967,49.285292143424265],[-121.04150717873148,49.28522618252833],[-121.04169890454894,49.2851552090207],[-121.04188594333621,49.285079788511105],[-121.04206676142111,49.28499817247226],[-121.04224304327923,49.2849107000021],[-121.04241298520205,49.284818145273505],[-121.04257319316707,49.28472006360336],[-121.04272537859086,49.284616542722006],[-121.04286957125922,49.28450730435555],[-121.04300565299711,49.284393452776406],[-121.04313350180568,49.284276128166695],[-121.0432415827726,49.28415056016054],[-121.04333491200472,49.28401811609614],[-121.04343142522193,49.28388807372536],[-121.04355086067221,49.283768945545454],[-121.04369640181889,49.28366314225748],[-121.04385326774748,49.28356406620786],[-121.04402004678333,49.283468828667736],[-121.04419004039404,49.28337570535305],[-121.0443583805477,49.283281946459624],[-121.04452353549436,49.28318578551967],[-121.04467895560862,49.28308410680575],[-121.04482301982266,49.282975978804494],[-121.04496392860982,49.28286517052802],[-121.0451096730568,49.28275740806938],[-121.0452668632568,49.2826552415275],[-121.04542898032506,49.28255526787286],[-121.04558607887272,49.282453944733014],[-121.04573007852147,49.28234638101045],[-121.0458527481628,49.28222909513384],[-121.04595736266458,49.2821036450049],[-121.04604878723552,49.281972807323676],[-121.04613366366966,49.28183883592542],[-121.04621523412592,49.28170359389101],[-121.04629500159041,49.28156911701127],[-121.04637639156628,49.28143555362174],[-121.04645615906291,49.28130106759098],[-121.04653250063289,49.28116643314815],[-121.04660890224184,49.28103123303113],[-121.04668359116317,49.280895954183],[-121.04675996212656,49.280761032211714],[-121.04683804487838,49.28062618880614],[-121.04691774916787,49.2804922678639],[-121.04700081696699,49.28035906971852],[-121.04708553699226,49.28022650674184],[-121.04717365120358,49.280094379264156],[-121.04726008246057,49.2799618947395],[-121.04734483077567,49.279829053171866],[-121.04742621467715,49.27969548864097],[-121.04750089906534,49.279560208955296],[-121.04756548936581,49.27942277854781],[-121.0476283978127,49.279284982152376],[-121.04769301806546,49.27914726432526],[-121.04776436666207,49.27901098317421],[-121.04784070066816,49.278876347341885],[-121.04792211122283,49.27874250393661],[-121.04800520371694,49.2786090173808],[-121.04808994742775,49.278476174957554],[-121.04817469065334,49.278343332441146],[-121.04825459732794,49.27820744393165],[-121.04835426904448,49.27807979770324],[-121.04848863608402,49.27796558118138],[-121.04863817176852,49.27785431647489],[-121.04880023409368,49.27775462432424],[-121.0489788800398,49.27767684046553],[-121.04918207170006,49.27762695998121],[-121.04940668349033,49.27760203344999],[-121.0496309387506,49.27759654105566],[-121.04984402489845,49.27761506566962],[-121.05005555598703,49.277664246642544],[-121.05025540558906,49.27772614394022],[-121.05044561688835,49.27779773889339],[-121.05062979168481,49.277877527842065],[-121.05081390860629,49.277957864109446],[-121.05099451076038,49.278038895775936],[-121.05117490446412,49.27812188427864],[-121.05135737060951,49.27820158439119],[-121.05154701494172,49.27827851911071],[-121.05174254629901,49.27834866859996],[-121.05194852292873,49.27838546544287],[-121.05216845790754,49.27838823178028],[-121.05239178403272,49.27837535618707],[-121.05261006272713,49.27836140953322],[-121.05282900092587,49.2783412857423],[-121.05304649617972,49.27831856020798],[-121.05326363171274,49.27829920089497],[-121.05348256837584,49.278279084755034],[-121.05370354772359,49.27825594938048],[-121.0539235633288,49.27822572338216],[-121.05409069668744,49.278142892493605],[-121.05424163165068,49.278034508633844],[-121.05437168628707,49.277912193643274],[-121.05446304916057,49.2777816263255],[-121.05452566557958,49.277646348328325],[-121.05457323090455,49.27750700585423],[-121.05461076375076,49.277364938760904],[-121.05464330951641,49.27722123551819],[-121.0546724902707,49.27707681856504],[-121.05470503564311,49.27693311524125],[-121.05474430847717,49.27679085716756],[-121.05477865561174,49.276646388369045],[-121.05480978726507,49.27649980532588],[-121.05484257139305,49.276353857385566],[-121.05488355635693,49.2762116686799],[-121.05494100252983,49.27607644185101],[-121.05502644582764,49.27595292811636],[-121.05520777443863,49.27586595614085],[-121.05561063509661,49.27583113893814],[-121.05563781838565,49.27583436121355],[-121.05566503138178,49.27583730516977],[-121.0556922750427,49.27583996182914],[-121.05571951870677,49.275842618481526],[-121.0557485041481,49.27584507532123],[-121.05577580722372,49.27584717533498],[-121.0558030805993,49.275849553654005],[-121.05583209575173,49.2758517321589],[-121.05585939979319,49.275853823173634],[-121.05588670287896,49.27585592315927],[-121.05591571803932,49.27585810164172],[-121.05594299142847,49.27586047992538],[-121.05597026482046,49.27586285820214],[-121.05599753821522,49.27586523647209],[-121.0560264939842,49.275867971549346],[-121.0560537070247,49.27587091540754],[-121.05608089132589,49.27587412859338],[-121.05610804497206,49.27587762906259],[-121.05613345589038,49.27588133831476],[-121.05616055014396,49.27588539539539],[-121.05618590167023,49.275889661260024],[-121.05621287617487,49.27589484055473],[-121.05623813765325,49.275899950321964],[-121.05626331003783,49.275905895020365],[-121.05628845177118,49.27591212700302],[-121.05631353411228,49.275918915604585],[-121.05633681528735,49.27592646064046],[-121.05636000545624,49.27593485856403],[-121.05638310653622,49.27594409141974],[-121.05640440549404,49.275954089689456],[-121.05642735618217,49.275964732053076],[-121.05644853540608,49.27597585254118],[-121.05646794316515,49.27598745115483],[-121.05648903235564,49.275999415549734],[-121.05651009185864,49.27601165825266],[-121.056529379897,49.27602437908202],[-121.05655037906764,49.276037187379266],[-121.05656963647161,49.27605019549125],[-121.05658886418841,49.27606348191191],[-121.05660983465337,49.27607655953138],[-121.05662909209032,49.276089567631985],[-121.056650091318,49.276102375908565],[-121.05666937943245,49.27611509671129],[-121.05669040933817,49.27612761768931],[-121.05671149864973,49.27613958203816],[-121.0567326176693,49.27615126807027],[-121.05675376735451,49.27616266680793],[-121.0567767191839,49.276173300116014],[-121.05679798767699,49.27618358559495],[-121.05682093952687,49.276194218893394],[-121.05684392108374,49.276204573874466],[-121.05686518960609,49.276214859339625],[-121.05688820087931,49.27622493599845],[-121.05691118246641,49.27623529096467],[-121.05693419375976,49.276245367613434],[-121.05695720506311,49.2762554442571],[-121.05698024607219,49.276265242583264],[-121.05700325739538,49.27627531921686],[-121.05702632907739,49.27628483024269],[-121.05704937011564,49.27629462855366],[-121.0570724418167,49.27630413956937],[-121.05709725435527,49.276313459730375],[-121.05712032607552,49.27632297073556],[-121.05714345719481,49.27633192511076],[-121.05716830041501,49.27634095796479],[-121.05719143155254,49.27634991232947],[-121.05721630448606,49.27635866685976],[-121.05723946533588,49.276367342901466],[-121.05726436893981,49.2763758101301],[-121.05728930224676,49.27638399904046],[-121.05731252251049,49.27639211844128],[-121.05733748552836,49.27640002902783],[-121.05736244855476,49.27640793960852],[-121.05738744224087,49.27641556289308],[-121.05741246467056,49.2764229168371],[-121.05743748806606,49.27643026179734],[-121.05746254020455,49.27643733741704],[-121.05748759330855,49.27644440405308],[-121.05751264642014,49.2764514706833],[-121.05753947102133,49.27645805916046],[-121.05756455384056,49.276464847465924],[-121.05758969700933,49.27647107016264],[-121.05761652163281,49.27647765862052],[-121.05764169450738,49.27648360299239],[-121.05766857852895,49.2764896348122],[-121.05769375141669,49.27649557917194],[-121.05772066610118,49.27650132368825],[-121.05774758079234,49.276507068197795],[-121.05777281308188,49.27651245591384],[-121.05779978812565,49.276517634807405],[-121.05782505011786,49.276522744198616],[-121.05785202517343,49.27652792307913],[-121.05787902992554,49.27653282364016],[-121.05790435227318,49.27653736740969],[-121.05793135607856,49.27654227693544],[-121.05795839053742,49.276546899164025],[-121.05798713710286,49.27655159985662],[-121.05801420222014,49.27655593478076],[-121.05804300817589,49.27656007883319],[-121.05807016237146,49.27656357880541],[-121.05809908900919,49.2765665916368],[-121.05812639261573,49.276568691053946],[-121.05815375656017,49.27657022486108],[-121.05818120957258,49.27657092372343],[-121.05820875260915,49.276570778662936],[-121.05823473390059,49.276569145609706],[-121.05826083394314,49.276566399299575],[-121.05828705465025,49.276562521776654],[-121.05831168200267,49.2765574525311],[-121.0583381124301,49.27655160885142],[-121.05836469128887,49.27654437360176],[-121.05838961837058,49.27653649427771],[-121.05841637725162,49.276527571183266],[-121.05844148435351,49.27651800401503],[-121.05846496840557,49.27650752343943],[-121.05848854246516,49.27649619894244],[-121.0585104944313,49.27648395206144],[-121.05853250575895,49.27647114855023],[-121.05855115320755,49.27645762250705],[-121.0585681479197,49.27644346137331],[-121.05858174811237,49.27642886500086],[-121.05859540862636,49.276413703023],[-121.0586073876785,49.276398175291355],[-121.05861936576503,49.276382656535866],[-121.05863137352941,49.276366859465845],[-121.05864338224323,49.27635105341626],[-121.05865538999127,49.27633525634278],[-121.05866571628063,49.27631909351682],[-121.05867775465595,49.27630300914942],[-121.05868808093034,49.27628684632051],[-121.05869843688295,49.2762704051773],[-121.05870879282823,49.276253964032726],[-121.05871917845143,49.27623724457382],[-121.05872956406716,49.27622052511346],[-121.05873994967538,49.276203805651754],[-121.05875033623373,49.27618707721078],[-121.05875903942356,49.27617000097458],[-121.05876945565237,49.27615299421786],[-121.05877815882879,49.276135917979275],[-121.05878686295638,49.27611883276167],[-121.05879727820592,49.276101834978874],[-121.05880601200472,49.276084471445856],[-121.05881474579701,49.276067107911636],[-121.05882344894064,49.27605003166719],[-121.0588321827199,49.27603266813071],[-121.05884091649263,49.276015304593045],[-121.05884964930127,49.27599795003208],[-121.0588584127452,49.275980308179015],[-121.0588654344173,49.2759628661809],[-121.05887416816445,49.27594550263873],[-121.05888290190506,49.27592813909544],[-121.05889166532317,49.275910497237824],[-121.05889868601467,49.275893064213584],[-121.05890741973626,49.27587570066688],[-121.05891615345126,49.27585833711906],[-121.05892317508324,49.27584089511395],[-121.05893190782827,49.275823540541765],[-121.05894064152433,49.2758061769906],[-121.05894766313918,49.27578873498259],[-121.0589563661817,49.27577165872018],[-121.05896509985884,49.27575429516572],[-121.05897209177321,49.27573713146792],[-121.05898079479707,49.27572005520223],[-121.05898778670047,49.275702891502604],[-121.05899480732447,49.27568545846652],[-121.0590018289007,49.27566801645185],[-121.05900713840201,49.27565049598144],[-121.05901247758244,49.27563269719706],[-121.05901778707566,49.27561517672517],[-121.05902141418022,49.2755972994848],[-121.05902504128201,49.27557942224381],[-121.05903038044737,49.27556162345662],[-121.0590340075429,49.27554374621434],[-121.05903763463563,49.27552586897146],[-121.05904126172555,49.27550799172798],[-121.0590466008765,49.27549019293806],[-121.05905022796018,49.27547231569335],[-121.05905898448695,49.275438605805185],[-121.05929112696613,49.274552429113186],[-121.0595742021299,49.27367252746272],[-121.0589099835482,49.27283521100765],[-121.05803150938073,49.272410106479875],[-121.05697163847529,49.2720406870083],[-121.05539163493431,49.27119348833614],[-121.05561893908417,49.26996622693765],[-121.05636075249338,49.26933375777639],[-121.05720244304247,49.268409838592234],[-121.0576261711687,49.266775732173656],[-121.05877365900069,49.264919083484656],[-121.06016491741688,49.263711322893066],[-121.06182112248268,49.262566720373336],[-121.06326917714962,49.26218054829969],[-121.06488410515553,49.26214905087893],[-121.06578806786078,49.26192964858336],[-121.06714784727824,49.261483558415186],[-121.06787882311001,49.26114400910145],[-121.06852828230006,49.260632982532904],[-121.0690501901064,49.25980119155249],[-121.0695620491596,49.25896668272533],[-121.07008061524623,49.25813361479471],[-121.07057234829175,49.25729394892148],[-121.07100529853491,49.25644088327928],[-121.07137598694871,49.255574818651354],[-121.0716976595287,49.25470059247331],[-121.07190397877605,49.25352026341915],[-121.07190594805542,49.253501741266035],[-121.07190785719534,49.2534837847429],[-121.07190976633377,49.25346582821921],[-121.07191170506236,49.25344759336882],[-121.07191361419784,49.25342963684415],[-121.07191726419471,49.25341148024545],[-121.07191920291807,49.25339324539354],[-121.0719228233184,49.25337536711977],[-121.07192476299262,49.25335712328848],[-121.07192841297945,49.25333896668747],[-121.07193206296338,49.25332081008587],[-121.07193571294451,49.25330265348357],[-121.07193765261064,49.253284409650014],[-121.07194130258667,49.25326625304655],[-121.07194495255987,49.2532480964425],[-121.07194860253023,49.25322993983778],[-121.07195054218825,49.25321169600196],[-121.07195419215353,49.253193539396094],[-121.07195784211598,49.253175382789536],[-121.07195978081354,49.2531571479303],[-121.07196340117983,49.2531392696489],[-121.07196534082827,49.25312102581033],[-121.07196724992956,49.253103069275774],[-121.0719691886204,49.25308483441439],[-121.07197109771873,49.25306687787882],[-121.07197300681557,49.253048921342604],[-121.07197317506258,49.2530311648804],[-121.07197508415715,49.25301320834325],[-121.07197528199416,49.2529951735537],[-121.07197544928556,49.2529774260683],[-121.07197390627661,49.252959591352315],[-121.07197404493202,49.25294211321402],[-121.07197250097025,49.25292428747527],[-121.07197092837328,49.2529067310842],[-121.0719676435708,49.25288910541879],[-121.07196607097688,49.25287154902667],[-121.07196275658782,49.25285420168666],[-121.07195773095104,49.25283677609386],[-121.07195441752212,49.25281941977442],[-121.07194939189222,49.252801994180345],[-121.0719443662661,49.25278456858562],[-121.07193934064375,49.25276714299013],[-121.07193260473278,49.2527496301632],[-121.07192757911861,49.25273220456638],[-121.07192087185368,49.252714422389516],[-121.07191413595733,49.252696909560015],[-121.07190742870264,49.25267912738147],[-121.07190069186191,49.25266162352837],[-121.07189395598083,49.2526441106962],[-121.07188724874152,49.252626328514985],[-121.07187880067438,49.252608746405805],[-121.07187035356823,49.25259115531734],[-121.07186361675424,49.25257365145969],[-121.07185513911429,49.25255634767379],[-121.07184497983302,49.252538687306384],[-121.07183650220638,49.2525213835181],[-121.07182802458607,49.25250407972872],[-121.071817835735,49.25248669768384],[-121.07180764689156,49.25246931563752],[-121.07179742846411,49.252452211916264],[-121.07178721004418,49.25243510819369],[-121.07177696108543,49.25241829177441],[-121.07176503144666,49.25240110979366],[-121.07175475291159,49.25238457169804],[-121.0717427936978,49.2523676680405],[-121.07173080394611,49.252351051686055],[-121.07171878461095,49.25233471365646],[-121.07170676528429,49.25231837562507],[-121.0716930051438,49.25230223766198],[-121.07168095528775,49.25228618693181],[-121.07166716557347,49.25227032729132],[-121.071653374914,49.25225447662691],[-121.07163952507901,49.25223918261353],[-121.07162570580032,49.252223601293146],[-121.07161011420996,49.252208516322646],[-121.07159623481023,49.25219350062917],[-121.07158061460139,49.25217868500194],[-121.07156499344791,49.25216387835043],[-121.07154931311851,49.25214962834947],[-121.07153363279869,49.25213537834599],[-121.07151624126544,49.252121050080575],[-121.07150053137222,49.25210707839824],[-121.07148311026646,49.25209302845352],[-121.07146739943808,49.25207906574395],[-121.07144994875937,49.2520652941199],[-121.07143249713636,49.25205153147098],[-121.07141678729187,49.252037559774955],[-121.07139933664376,49.2520237881418],[-121.07138188505137,49.25201002548388],[-121.07136440387536,49.25199654114935],[-121.07134695325823,49.25198276950691],[-121.07132947210259,49.251969285166226],[-121.07131199095714,49.25195580082244],[-121.07129451077653,49.251942307497245],[-121.0712753184358,49.25192874488415],[-121.07125780772678,49.251915538857354],[-121.07124032662237,49.25190205450091],[-121.07122110471937,49.25188877020389],[-121.07120359404085,49.25187556416748],[-121.07118437215932,49.25186227986348],[-121.07116686150123,49.251849073820544],[-121.07114763964118,49.251835789509464],[-121.07113009940828,49.251822861786735],[-121.07111087756961,49.25180957746853],[-121.07109162614643,49.251796571473264],[-121.07107237377936,49.251783574452595],[-121.07105483358714,49.251770646716544],[-121.07103558219582,49.25175764071051],[-121.0710163308153,49.25174463470081],[-121.07099707849082,49.25173163766563],[-121.07097782713187,49.25171863164857],[-121.07095854618747,49.25170590395442],[-121.07093929389524,49.25169290690818],[-121.07092001297208,49.251680179206694],[-121.07090073110479,49.25166746047965],[-121.07088145020278,49.25165473277075],[-121.0708621989081,49.25164172673146],[-121.07084120586877,49.251628929723445],[-121.07082192499911,49.25161620200306],[-121.07080261358814,49.25160376158393],[-121.07078333178474,49.251591042834534],[-121.07076233974483,49.2515782368319],[-121.07074305796306,49.25156551807476],[-121.07072374754908,49.25155306866229],[-121.07070446578832,49.251540349897844],[-121.0706834432406,49.251527831183736],[-121.07066416245615,49.25151510343332],[-121.07064485112952,49.251502662984066],[-121.07062385916777,49.25148985695275],[-121.07060454786244,49.25147741649582],[-121.07058352537014,49.251464897761075],[-121.0705642446392,49.251452169991545],[-121.07054493336554,49.251439729523284],[-121.07052391090636,49.251427210776185],[-121.07050463020742,49.251414482995294],[-121.07048360777057,49.25140196423994],[-121.07046429653937,49.25138952375624],[-121.07044498531855,49.25137708326891],[-121.0704239934687,49.25136427719623],[-121.07040468226916,49.251351836701204],[-121.07038365988761,49.25133931792514],[-121.07036437926362,49.25132659011752],[-121.07034506809572,49.25131414961109],[-121.07032404574733,49.25130163082276],[-121.07030473555544,49.2512891813303],[-121.0702837428292,49.25127638420698],[-121.07026443170379,49.2512639436852],[-121.07024515114381,49.25125121585485],[-121.07022412885081,49.2512386970458],[-121.07020484831234,49.25122596920768],[-121.07018553722904,49.25121352867084],[-121.07016454456985,49.251200731522935],[-121.07014526406348,49.25118800367349],[-121.07012595301195,49.25117556312522],[-121.07010667252659,49.25116283526845],[-121.0700856799121,49.25115003810417],[-121.0700663994484,49.25113731023962],[-121.07004711804036,49.25112459134974],[-121.0700278375978,49.25111186347789],[-121.07000855621091,49.251099144580635],[-121.0699892757895,49.25108641670133],[-121.06997002402548,49.25107341947005],[-121.0699507436253,49.25106069158342],[-121.06993149283764,49.25104768536643],[-121.06991221150379,49.251034966450796],[-121.0698816690598,49.25101495684861],[-121.06896769162562,49.25034470427772],[-121.0680777466793,49.24965890542517],[-121.06722230891847,49.24895607353783],[-121.06644495262029,49.24821451257681],[-121.06582704144542,49.247412859603735],[-121.06537409949004,49.246563775727026],[-121.06503522417556,49.24569313488278],[-121.06489823627692,49.24479959261329],[-121.06499708083915,49.24390332650994],[-121.06529502003255,49.24302631894089],[-121.06576650779105,49.24218234855902],[-121.06634000899416,49.241365043267955],[-121.0669400563906,49.24055656501473],[-121.06752018033873,49.23974125271017],[-121.0681002848731,49.2389259273005],[-121.0687002997137,49.238117157937765],[-121.07070983012869,49.236775162018816],[-121.07234208207205,49.236216310237715],[-121.0732510636299,49.2358798032891],[-121.07416112920697,49.23548441509927],[-121.08243471677596,49.232222280060256],[-121.09345559669613,49.22586976692241],[-121.09368280119271,49.22596386036249],[-121.09404471357878,49.22610044839932],[-121.09435345944694,49.2262360299751],[-121.09455517334524,49.22631118682426],[-121.0946786093756,49.22636276719817],[-121.09484647316906,49.22643300749845],[-121.09502539054094,49.22651248426787],[-121.09514759206928,49.22655949678372],[-121.09520307295985,49.22658739342761],[-121.09562471547753,49.226760537422976],[-121.09586187458085,49.226890589873676],[-121.09594167555633,49.22693228748509],[-121.09615052178488,49.22702130787634],[-121.09631668079003,49.227091458968204],[-121.09650323509544,49.22718002304317],[-121.09670103087689,49.2272597967805],[-121.09708503816385,49.22746391692429],[-121.09713709963115,49.2274916658003],[-121.09721174227876,49.22753340721015],[-121.09773664661382,49.22780287011714],[-121.09782718854272,49.22784053495595],[-121.09809299065626,49.22802489883192],[-121.0981482865476,49.228070838395986],[-121.09843635796389,49.228304699062804],[-121.09862283346911,49.22844287641795],[-121.09883192067153,49.22859477625501],[-121.09929300944096,49.22889910150118],[-121.09954890554869,49.22904720192166],[-121.10032539907192,49.22942451419597],[-121.10053179257216,49.22950439131921],[-121.10076308614865,49.22962514240617],[-121.10100564993095,49.22973683319133],[-121.10140251662187,49.229900921393956],[-121.10156448049256,49.22996213921272],[-121.10170243955781,49.2300228245073],[-121.10191694660027,49.230107289922515],[-121.10198149070149,49.230130813041534],[-121.10214498152567,49.23021013423381],[-121.10220857765039,49.23024263605787],[-121.10248250082019,49.23035038095553],[-121.10280638206044,49.23052214265033],[-121.1028525271741,49.23054087707403],[-121.10289990875249,49.23056417866524],[-121.10297798248222,49.23060607141884],[-121.10311062819629,49.23068455701943],[-121.1034615991121,49.230892796697795],[-121.1035451242356,49.23094818098815],[-121.10369722326861,49.231054056476275],[-121.10392739858231,49.231201823761545],[-121.10411627177365,49.23131754389921],[-121.10427866674296,49.23142359765389],[-121.10469324923677,49.23166432460937],[-121.10478757302509,49.231715128174436],[-121.10492266795463,49.231803033053055],[-121.1057364771116,49.23223472044914],[-121.10582830030155,49.23227666711812],[-121.10592775728213,49.23232771177074],[-121.1059704852912,49.232346280398524],[-121.10613351601708,49.232430093682716],[-121.10629952407645,49.232518273210864],[-121.10649796849424,49.23262483298191],[-121.10675751348333,49.23275503547528],[-121.10695392955826,49.23284825801251],[-121.10730108832318,49.23301148011812],[-121.10748226592754,49.23308624535673],[-121.10791125230621,49.23330476872959],[-121.10813636858775,49.23340295508253],[-121.10853826939933,49.23358500620444],[-121.1086654808734,49.23364999296415],[-121.10898835425529,49.233799132761526],[-121.10918867393234,49.23388801698975],[-121.10937528007621,49.23397655789019],[-121.10943765020174,49.234004479198525],[-121.10966746088808,49.23410710631652],[-121.11019052732992,49.234313822358],[-121.11035473152592,49.23437033644393],[-121.11039448498678,49.23438454586422],[-121.11043034383582,49.23440308941117],[-121.11113420778415,49.23463943336923],[-121.1114045882777,49.234715984011075],[-121.11170293165351,49.23478816416549],[-121.11202084359729,49.23491930474909],[-121.11232788088229,49.23502317417429],[-121.11255080165917,49.23512604122491],[-121.11280713815623,49.23523803810301],[-121.11291392497124,49.235284897077555],[-121.11316433740302,49.23538788213633],[-121.11338947488548,49.23548605721828],[-121.113693389107,49.23560331337656],[-121.11394988312907,49.23569755046823],[-121.11434331470697,49.235829853174785],[-121.11452808700554,49.23588701341861],[-121.11471583846105,49.23594853060827],[-121.11482407797503,49.235981632002726],[-121.11504052814381,49.236048112806216],[-121.11527269657618,49.23612855881842],[-121.11559270014315,49.23622369553136],[-121.1158648372393,49.23630003402916],[-121.11616738421294,49.236381413221],[-121.11628981366034,49.23641036576091],[-121.11638991595044,49.236439145053446],[-121.11652245886508,49.23648631959811],[-121.11689844516442,49.23660485714881],[-121.1170601603467,49.2366525052089],[-121.11718509731068,49.23669030336247],[-121.11749478469339,49.23678553480037],[-121.11753799318481,49.236799618255176],[-121.11758757194981,49.236818501260494],[-121.11777049170175,49.23689332632094],[-121.11794872317468,49.236963707388],[-121.1181500189397,49.23704359566061],[-121.11826448426126,49.2370992410621],[-121.11834305546186,49.23713663283425],[-121.11860905858398,49.23727132709892],[-121.11875154170303,49.23735474720569],[-121.11923503284567,49.23762785298981],[-121.11976967791475,49.237888613184],[-121.11981489220113,49.23791631903748],[-121.12022014967205,49.238116237321215],[-121.12043673203995,49.23821428819373],[-121.12064007207748,49.23830750765836],[-121.12091263815279,49.23842896010822],[-121.12113019747424,49.23851775230007],[-121.12133398235589,49.23860676829037],[-121.12161905953849,49.238723706077884],[-121.12174474173922,49.23877084252375],[-121.1218613978032,49.23882208095729],[-121.1222341107445,49.23897202564152],[-121.1224906406999,49.23906624194845],[-121.12285760746518,49.23918913880326],[-121.1228973688756,49.23920334351288],[-121.12294353071762,49.23922206909594],[-121.12314360621164,49.23929738088183],[-121.12384300466015,49.239610115725725],[-121.12397214343538,49.23965711705117],[-121.12424330989084,49.23979202919818],[-121.12448689808772,49.239894964900124],[-121.1248917805812,49.24004973824289],[-121.12495632181293,49.24007351662837],[-121.12500248535005,49.2400922413059],[-121.12511274758143,49.24013895536191],[-121.12537008599953,49.24024194263144],[-121.12560011045034,49.240326777958686],[-121.12570179017375,49.24037338272617],[-121.1257671285249,49.24040593858306],[-121.12592603446721,49.24048050981812],[-121.12604641634663,49.24054544415771],[-121.1261920787343,49.24061518470563],[-121.12646030732097,49.240745446841714],[-121.12688246194482,49.240932280056604],[-121.12706243268948,49.24100273200008],[-121.12721715459008,49.24106808123199],[-121.12750223150074,49.24118529036555],[-121.12762795652777,49.24123213245774],[-121.127744596016,49.241283642686206],[-121.12792362594016,49.24136307207344],[-121.12811171301713,49.2414381111855],[-121.12832758927144,49.24152681109738],[-121.12854980914467,49.24162058779791],[-121.12879436075069,49.24171452559235],[-121.12932732994584,49.24189396242824],[-121.12958577679481,49.241970203604225],[-121.12985502022926,49.24204186200937],[-121.12995983359609,49.24207507158968],[-121.13016429774044,49.2421415457738],[-121.1304492975094,49.24222687870081],[-121.1309479657927,49.242356545500485],[-121.13124682988278,49.242424468636735],[-121.13131406072088,49.24243906316701],[-121.13162667302961,49.242507038068055],[-121.13189435704989,49.242560857188984],[-121.13216596515326,49.24261005344361],[-121.13268575518872,49.24268597750428],[-121.13295921978988,49.242717501194925],[-121.13327731729964,49.242749632795814],[-121.13356718332344,49.242772305852085],[-121.13384380279132,49.242790157802865],[-121.13388796419316,49.24279525563073],[-121.13420355400126,49.242818529350735],[-121.13443087952484,49.2428310502954],[-121.13473369494419,49.24284500375176],[-121.13518503951512,49.24285240994596],[-121.13588646388038,49.2429176278126],[-121.13616181587737,49.24293118544232],[-121.13621674378426,49.24293197789531],[-121.13646292147598,49.242945056809035],[-121.13673877390941,49.24295384513194],[-121.13702710348998,49.242958405465714],[-121.13724894066883,49.242957699815754],[-121.13734850235925,49.24295908965718],[-121.13746473236775,49.24296546269788],[-121.13772415599927,49.24298337657209],[-121.13792277859879,49.24299093210585],[-121.13809125598031,49.24300726717555],[-121.13836147615352,49.243020587576396],[-121.13856476128329,49.24303286302354],[-121.13875604032798,49.24304487607685],[-121.13895932566834,49.243057150780224],[-121.13910989386235,49.24306394349021],[-121.1392737086403,49.24307556462818],[-121.13952112831656,49.24309320324615],[-121.13979648241539,49.243106751598475],[-121.14007233643989,49.24311553139825],[-121.14034692094906,49.24312002217108],[-121.14057737223084,49.24311913882616],[-121.14079065414597,49.24311804904753],[-121.14087646988324,49.24311937503515],[-121.14122047000103,49.24313404873505],[-121.14138756684534,49.24316356882197],[-121.1414415250347,49.24317361597688],[-121.14161405488807,49.24321691283598],[-121.14190656646478,49.24328000825969],[-121.1422063942331,49.243338912955636],[-121.14231950372005,49.243358672149476],[-121.14306879160843,49.24349224459772],[-121.14321996213664,49.24352612288675],[-121.14346583310241,49.24357498678117],[-121.1437931296569,49.24363427692359],[-121.14409906477003,49.24368415029667],[-121.14438534922245,49.24372468418916],[-121.14491734853642,49.24378276644722],[-121.14501470098105,49.24378884896408],[-121.14523844274353,49.243819228099305],[-121.14557573783493,49.24386515136608],[-121.14587668320259,49.24389703161107],[-121.14593627552134,49.24390253988034],[-121.14619821981722,49.243929279231075],[-121.14640573424604,49.243950462833915],[-121.14671134298789,49.24398707046731],[-121.14696644400489,49.24401349967752],[-121.14751015494645,49.24405828458886],[-121.14759036864217,49.24406387257513],[-121.14789473879081,49.24409590129127],[-121.14812626778303,49.2441176035663],[-121.14839897982017,49.24414003196019],[-121.14844998833391,49.24414543198349],[-121.14852675105053,49.244151143542915],[-121.14862021378997,49.24416154927673],[-121.14885127369806,49.244187739524875],[-121.14893615121755,49.24419804714352],[-121.14907452103958,49.24422287857094],[-121.14959438587888,49.24429844265183],[-121.14986787144652,49.244329923418036],[-121.1503296923652,49.24436875244163],[-121.15042392781547,49.24438821269399],[-121.15084296169344,49.24445809579149],[-121.15110571306273,49.244493600935826],[-121.15135300598438,49.24452897817203],[-121.15197845754946,49.24459771616077],[-121.15219332046402,49.24461442865716],[-121.15227863982452,49.24462052244894],[-121.15246167640565,49.2446456718919],[-121.15266182402661,49.24467159076126],[-121.15294610794656,49.244698479301995],[-121.15321617596766,49.24472979762569],[-121.15348030951812,49.24475210668586],[-121.15364913106602,49.244781684675324],[-121.1539808088936,49.244832127610735],[-121.15429457477072,49.24487302235024],[-121.15469070936648,49.24491535564079],[-121.15476576302629,49.24492098581441],[-121.15495233232586,49.24497815297854],[-121.1550780953029,49.24502496281735],[-121.15511911351108,49.245043722015396],[-121.15566467727459,49.24536708042111],[-121.15592097995818,49.24549728660301],[-121.15659261801176,49.245782328346515],[-121.15674129595504,49.24585667047492],[-121.15697033182646,49.24596817408378],[-121.15713319815106,49.2460383629852],[-121.15716345318678,49.24606142786862],[-121.15748591862061,49.24638123504627],[-121.15765969732564,49.24652802570105],[-121.15825159613291,49.24695127719137],[-121.15831260646894,49.24699263835223],[-121.15843241742475,49.24708006056585],[-121.15862008446985,49.24720915112796],[-121.1587374118335,49.247287440110526],[-121.15896613244321,49.24743500043828],[-121.15938754640794,49.24768003000508],[-121.15961737134649,49.24780058366082],[-121.15969381399087,49.247842357401204],[-121.15995017069618,49.24797227517376],[-121.16004204489616,49.24801445304339],[-121.16027109933745,49.24812594928293],[-121.1608752479825,49.24838284137139],[-121.16113361953782,49.24847704129933],[-121.16156458876158,49.2486142358307],[-121.16173528338835,49.248675458389414],[-121.16217685945735,49.248826369576186],[-121.16242649664025,49.24898784185927],[-121.16265539994805,49.249117358942186],[-121.16282748313,49.249214735610444],[-121.16291017417252,49.24927906047923],[-121.16312332396667,49.249444242625756],[-121.16345770856319,49.24968336294779],[-121.16353023682157,49.24972975713708],[-121.16356348067488,49.249757184903814],[-121.16375181516652,49.2499130696282],[-121.16394575224189,49.250064703791516],[-121.16412519644896,49.25020694568977],[-121.16460172836706,49.250533919048955],[-121.1646435590684,49.250561452015],[-121.16510433161409,49.250874743189655],[-121.16514787425501,49.2509023527217],[-121.16523368755995,49.25095328375179],[-121.16553221538588,49.25112426579235],[-121.16577485770533,49.2512541116377],[-121.16604279060465,49.251388762825414],[-121.16629838054781,49.251509887300536],[-121.16657288389409,49.25163102036712],[-121.1668431326987,49.25174350005802],[-121.16721018517187,49.25188400032638],[-121.16737278140064,49.251940618749195],[-121.16752632315487,49.25200163012844],[-121.16779284627336,49.25210040849039],[-121.16803675607119,49.252185208978865],[-121.16845325543265,49.252313262257495],[-121.16872386227922,49.25238938883897],[-121.16888615441648,49.25243245953522],[-121.16947540806866,49.25258573520464],[-121.16967111007611,49.25263820454121],[-121.16993357355878,49.252710011678815],[-121.17026892692947,49.25279185036665],[-121.17049897593692,49.25284472965972],[-121.1707439605023,49.25290278820072],[-121.17088317292419,49.252936368805706],[-121.17111319435077,49.252989525131305],[-121.17135649895498,49.25304721825694],[-121.17199443210852,49.25317898004743],[-121.17219935303807,49.25320901623116],[-121.17237288305219,49.253243293091224],[-121.17264409903335,49.25329716357206],[-121.17301272173307,49.25335680320666],[-121.17326474538177,49.253396849282154],[-121.1735219337078,49.253436837359935],[-121.17377395916505,49.253476873262606],[-121.17444796909516,49.25355949221371],[-121.17499524119985,49.253604291259784],[-121.17504458165912,49.25360931468392],[-121.17534654403275,49.25363214209492],[-121.17571717042895,49.253656057547815],[-121.17645266921663,49.25367657311476],[-121.1765887496783,49.25367421057944],[-121.17666942167395,49.2536755656378],[-121.17690241327375,49.253683737098896],[-121.17712339579494,49.25369165031889],[-121.17733797069289,49.2536950455252],[-121.17788244800234,49.253717152228056],[-121.17837509592981,49.25372510198721],[-121.17866443130625,49.25372056283461],[-121.1789297174544,49.25371580414698],[-121.17956672328845,49.25370792391805],[-121.17981470975917,49.25372071089552],[-121.1799922938848,49.25373259503771],[-121.18027976098466,49.25374601894186],[-121.18054364769877,49.253754716117705],[-121.18083033713904,49.253759082816565],[-121.18090242313819,49.25376033043654],[-121.18112760765234,49.253777444243745],[-121.18135671090828,49.25378994265302],[-121.1814712625825,49.25379619167528],[-121.18159906828913,49.25380726393953],[-121.18172858552606,49.25381841256403],[-121.18232287616874,49.2538906428289],[-121.18250858128968,49.253907116594426],[-121.1826462856667,49.254120753042386],[-121.18291248492648,49.25447122425452],[-121.18294465577361,49.25452566000189],[-121.18312390104147,49.254802882186965],[-121.18324101126242,49.25496655025801],[-121.18334841644334,49.25510779143722],[-121.18347925028826,49.25527178372566],[-121.18381742686203,49.255641245508464],[-121.18395025425679,49.25576953111469],[-121.18408435732731,49.25590209527676],[-121.18411792991736,49.25594306174317],[-121.18426236490852,49.25612514283971],[-121.18474962766638,49.256632064321046],[-121.18494820470451,49.25680613470596],[-121.18511868607506,49.25695272590019],[-121.18550819382773,49.25729177264869],[-121.18559811863356,49.257369652050755],[-121.18579763556622,49.257534732499394],[-121.18589614925216,49.257612706523766],[-121.18609659992872,49.25776881613853],[-121.18638806617095,49.2579757809947],[-121.18641616563085,49.25800325042224],[-121.1864460056642,49.258030517922506],[-121.18679196868027,49.25834196783833],[-121.1870026009917,49.258516003320274],[-121.1870494349052,49.258561782397656],[-121.18734343730286,49.25882721297825],[-121.18749112094997,49.2589285252843],[-121.187557155123,49.25898813323401],[-121.18759166531767,49.259020119231714],[-121.18776465331021,49.25917584676735],[-121.18801665054306,49.259382171624324],[-121.18809410771566,49.25946427279419],[-121.18825415610131,49.2596287221179],[-121.18839764953836,49.25977043943087],[-121.18858424283985,49.25994424581837],[-121.18864215848386,49.25999925975956],[-121.18903252609502,49.26034706946477],[-121.18910653339859,49.260429304332135],[-121.18913854736616,49.26046879180888],[-121.19320027299709,49.25849655947991],[-121.1935443732081,49.25832895324734],[-121.19803491728864,49.2561473369003],[-121.19762639583872,49.25575871591044],[-121.1975433290723,49.25568087302325],[-121.1974905429536,49.25562609228328],[-121.19736670151359,49.255493714965716],[-121.19712400523272,49.255247232536504],[-121.19696379031237,49.25510083918661],[-121.19668024982204,49.254866914454],[-121.19659921357594,49.25480269228436],[-121.19656174249658,49.25476606674312],[-121.19653659680264,49.2547432420422],[-121.1964641474434,49.2546791227837],[-121.19640277820567,49.25462422941843],[-121.19632313763067,49.25454654699596],[-121.19604912166534,49.254303735134755],[-121.19589502448187,49.254197917371734],[-121.19570920683887,49.25403318671502],[-121.19563928185694,49.25397791141144],[-121.19541599662512,49.25377655426569],[-121.19527156957645,49.25364382433369],[-121.19510106923111,49.253497239461545],[-121.19489982509747,49.253332098897324],[-121.19445391605058,49.253006068602964],[-121.19441209432864,49.25297826893452],[-121.19431699908712,49.25290045475979],[-121.19396197365644,49.25259342181659],[-121.19390060920318,49.252538535834894],[-121.19346558760525,49.2520413098633],[-121.19333271479218,49.25191332258171],[-121.19319859776853,49.25178076013014],[-121.1930395978977,49.25153997375488],[-121.19290889165565,49.25135795709938],[-121.19286392242934,49.25129421238997],[-121.19272039989178,49.251103162123016],[-121.19268102997636,49.25103516563031],[-121.1925730987283,49.25084908545067],[-121.19247705465494,49.25068101783117],[-121.19191010455548,49.2500470943339],[-121.19174680486896,49.24986446027086],[-121.19143735055229,49.24949968545575],[-121.19127717339487,49.24935328239257],[-121.19089174186762,49.24904148696119],[-121.19046341573815,49.24872891206861],[-121.1902163244133,49.248558610575955],[-121.19001481605278,49.24842952090358],[-121.18932182753909,49.24804987404278],[-121.18907898379862,49.24793811562555],[-121.18902466733859,49.24791482528584],[-121.18875531895496,49.24779342112439],[-121.18803912988513,49.247521539947634],[-121.18743988789748,49.24733212299318],[-121.18706739918562,49.24722725318027],[-121.18680960779089,49.24716020608197],[-121.18664731839293,49.24711715301234],[-121.18636035064405,49.24704964051862],[-121.18565032669677,49.24691728369451],[-121.18536401549434,49.246876581110214],[-121.1851500627325,49.24685095537049],[-121.18503132660253,49.246835501465185],[-121.18485516645373,49.246810156479306],[-121.18420777033658,49.24673696052146],[-121.18399462622652,49.246720109935275],[-121.18332707698056,49.24664234535339],[-121.18310363746475,49.24662531244048],[-121.18283947904929,49.246603075946496],[-121.18241101640618,49.24657377312125],[-121.18219740808006,49.246561399663285],[-121.1819820588054,49.246549236611955],[-121.18177532443926,49.24653688999326],[-121.18147247087408,49.24652306861498],[-121.18122234361043,49.246514707421596],[-121.18094086139097,49.24651029293277],[-121.18087392024171,49.246509274903225],[-121.1806195939048,49.24649169444533],[-121.18045575675526,49.24648013613003],[-121.18018037083402,49.246466691590726],[-121.17965342914013,49.24645862882936],[-121.17936074659858,49.24646273024516],[-121.17871180387472,49.24647063013915],[-121.17866545598102,49.24646996376746],[-121.17839849907587,49.24647465427184],[-121.1779497575995,49.24645852613756],[-121.17772022445183,49.246450510000095],[-121.17750226155626,49.24644695337801],[-121.17726930616305,49.2464387831222],[-121.17704835813404,49.24643087011398],[-121.17671881780984,49.24642570093948],[-121.17655874310563,49.24642755703789],[-121.17633872948201,49.24641066330344],[-121.17615305653172,49.2463941787365],[-121.17609047230604,49.246384331671585],[-121.17576218175593,49.246334110020825],[-121.17571975254721,49.246328827607186],[-121.17563188011071,49.24631418557168],[-121.17551408291011,49.24628974191654],[-121.1754566624049,49.2462798369793],[-121.17514131495737,49.246220892091884],[-121.17493520800593,49.246186016566746],[-121.17479259147565,49.246152278620116],[-121.17456431088006,49.24609920621117],[-121.17431932752599,49.24604144307906],[-121.17418013329062,49.246007866555146],[-121.17405079781365,49.24597867359236],[-121.1739039538461,49.24593601263582],[-121.17380161788489,49.24591169113353],[-121.1735421128134,49.24584481393151],[-121.17305311670985,49.24572001583247],[-121.17296590219811,49.24568255949433],[-121.17269937499526,49.2455840802819],[-121.17241774703551,49.24539949364776],[-121.17232737010673,49.24532637881827],[-121.17221830083012,49.24523466379764],[-121.17191357768026,49.24499125136108],[-121.17169948196296,49.244835064713754],[-121.17146700399431,49.244673822906385],[-121.17142346250165,49.244646224642416],[-121.17134123549685,49.24457741621832],[-121.17118738617239,49.24445352644444],[-121.17097423060233,49.244288358975425],[-121.17014024922243,49.243762429772616],[-121.16998689100839,49.24368338614408],[-121.16992027369025,49.24364629090233],[-121.16968560005392,49.24348973625178],[-121.16952428684043,49.24338806192917],[-121.16911392823224,49.243152317218005],[-121.16906009517157,49.24312452703618],[-121.16870110440942,49.24295676688299],[-121.16865022609171,49.24293361955397],[-121.16861433741958,49.242915095601916],[-121.1673262554686,49.24240880595846],[-121.16726635442801,49.24238977285371],[-121.16703232465142,49.2423096411099],[-121.16689206476761,49.24225345338602],[-121.16654072237135,49.24214437758856],[-121.16651046523037,49.24212131519719],[-121.16636972485038,49.24202027864244],[-121.16629531911124,49.24194251552372],[-121.16608345106924,49.241732288011235],[-121.16588420441515,49.241549410281294],[-121.16516905780668,49.24108824443844],[-121.16507000094444,49.240983158253776],[-121.16492758520894,49.24088176450976],[-121.16430325123969,49.240489511740996],[-121.16406064118374,49.24035992984728],[-121.16345285044456,49.240089362167716],[-121.16270343460288,49.23972644117504],[-121.16256785306531,49.23967495869922],[-121.16237239507643,49.2395548328266],[-121.16175432244096,49.23923472573771],[-121.16153935901379,49.23913683479694],[-121.1613359332849,49.239043692535816],[-121.16090507474351,49.23885687874926],[-121.16066047326005,49.238763013325375],[-121.16055269316921,49.2387251811022],[-121.16029434799239,49.238631256747794],[-121.16019344011231,49.23859346219427],[-121.1597057918817,49.2384238306961],[-121.1594396693115,49.23833857603872],[-121.15912814570137,49.23824366671014],[-121.15867528440386,49.238119572285896],[-121.15839012284808,49.23805207036469],[-121.15798454775876,49.237968997947995],[-121.15771122955967,49.23791978045788],[-121.1571931618904,49.23784406227254],[-121.15698271798774,49.237818246815245],[-121.15673156497468,49.23778722688822],[-121.15633549025581,49.23774489165218],[-121.15628277702048,49.23773941838659],[-121.15618808363043,49.23772445266153],[-121.15613409950615,49.23771469115267],[-121.15583335236842,49.2376648038636],[-121.15505022965924,49.23757602938442],[-121.15487958703157,49.23756412434099],[-121.15476085564265,49.23754891527261],[-121.15452469295991,49.23752250657887],[-121.15431082941423,49.23749654098727],[-121.15404938684881,49.23746532248789],[-121.15372098713814,49.23743335580279],[-121.15349418116803,49.237416107437475],[-121.15339090615511,49.23740103279874],[-121.15329842448776,49.23738136456108],[-121.1528794216685,49.23731176860304],[-121.15259316933484,49.23727125684955],[-121.15246759526214,49.23725574632766],[-121.15214016688574,49.23721450829765],[-121.151678415593,49.23717568660052],[-121.15154690859559,49.2371511662154],[-121.1512881195231,49.237111038818526],[-121.15086553342098,49.23705931637867],[-121.15066666090408,49.23703796047325],[-121.1504682280424,49.23701240194662],[-121.15002287561626,49.236964721372146],[-121.14974628463278,49.23694691073535],[-121.14961339960854,49.236935578385804],[-121.14944024926515,49.23691480986861],[-121.14910548310694,49.23687803142323],[-121.14872595157404,49.236858406741895],[-121.1486020916377,49.236842959769625],[-121.14829649835224,49.23680664442711],[-121.14804146622734,49.23677993073905],[-121.14790731195292,49.23676430801298],[-121.147609363181,49.23673707677218],[-121.14750733350586,49.23672655413925],[-121.1474023511876,49.23671139669677],[-121.14722796077959,49.236686066967266],[-121.14689883029367,49.23664473593648],[-121.14651947042006,49.236607068122666],[-121.14638672783265,49.236577965803136],[-121.14614088989549,49.2365291170241],[-121.14532445079529,49.23638124797661],[-121.1452268121966,49.236361628850304],[-121.14508598733372,49.236327649887656],[-121.14485731893716,49.236279003425956],[-121.14457124860316,49.23622044393553],[-121.14433523899203,49.23617625586837],[-121.14407864152948,49.236131707640595],[-121.14383578982478,49.23608721003193],[-121.14327877064261,49.23600628401586],[-121.14299159426419,49.23597472583759],[-121.14273435865799,49.23595269933857],[-121.1424462424087,49.23593011882874],[-121.142152522953,49.235911804663026],[-121.14149376932804,49.235883225645],[-121.14126429476674,49.23587513184632],[-121.14094857762092,49.23586991390554],[-121.14071816231542,49.23587079805295],[-121.14050320293909,49.23587181053275],[-121.14030511002787,49.23585949176351],[-121.14005769941687,49.23584213310159],[-121.13988485656343,49.23583489504185],[-121.13967177860756,49.235817956646606],[-121.13942218808317,49.23580499991537],[-121.1392287573522,49.23579740027008],[-121.13906372719218,49.23578122117825],[-121.13881195566582,49.23577267539071],[-121.13865456822117,49.2357655734031],[-121.13857782057867,49.2357598547491],[-121.1384964114248,49.23574941489881],[-121.13820266548677,49.23573136832784],[-121.13787414690391,49.2357171013755],[-121.1374228712437,49.23570970634809],[-121.13718903520943,49.235710428526765],[-121.13702993749608,49.23570324694875],[-121.1366591469492,49.23566593052718],[-121.13637103543351,49.23564333378563],[-121.13611162318497,49.235625703789445],[-121.13582259953628,49.23561180630006],[-121.1353078231926,49.23560350190109],[-121.13514232409895,49.23559180633796],[-121.13487604052374,49.23557414271065],[-121.13466767687623,49.23551229015152],[-121.13427106618573,49.235393452811934],[-121.13414098762053,49.23535543358436],[-121.13410122606605,49.23534123293501],[-121.13396320888668,49.23528058956603],[-121.1337965227854,49.23521469953762],[-121.13362856743349,49.23514452977155],[-121.13334519362577,49.23502769138033],[-121.13321779814551,49.23498049987479],[-121.13310113920349,49.23492927342048],[-121.13289560800406,49.23484048021977],[-121.13282933007706,49.23481690745556],[-121.13269101908239,49.234742716543856],[-121.13249796471547,49.23464969572329],[-121.13227544409338,49.23454265863917],[-121.13207725937,49.23444940514333],[-121.13190559123919,49.23436553213419],[-121.13163473093257,49.23424418401301],[-121.13110171883457,49.234033175195066],[-121.13100721595436,49.23400015187812],[-121.13095123427782,49.23397675450948],[-121.1307619034028,49.23389743998203],[-121.13035708515129,49.23374239989082],[-121.13030750353633,49.233723531644124],[-121.12966413146407,49.23343422501422],[-121.12942897260535,49.23334944378345],[-121.12931919367914,49.23329824413611],[-121.12901764211843,49.23315830563189],[-121.12877407826713,49.23305538808462],[-121.12855950972953,49.2329709674735],[-121.12828848946859,49.23286765511255],[-121.12783393287603,49.23271177152747],[-121.12776890042821,49.23269275348656],[-121.12746249098787,49.23256641165343],[-121.12733507993265,49.232519482397066],[-121.12721846290664,49.23246797104109],[-121.12711163794823,49.232421413353435],[-121.12698003842628,49.232365281471374],[-121.12685873293022,49.23230932640068],[-121.12675069912879,49.23225792309321],[-121.12669174305212,49.232230157514344],[-121.12663157654794,49.23219755562703],[-121.12623227104152,49.232006669886495],[-121.12606669880559,49.23191403144702],[-121.12595834249387,49.23184935972005],[-121.12552946161962,49.23161287215969],[-121.12508371590262,49.2313897113442],[-121.1249078254205,49.23129717224327],[-121.12466274812415,49.23117612325196],[-121.1244184377384,49.23106413911257],[-121.12415867521935,49.23095201425735],[-121.1239296146091,49.23085847397342],[-121.12379242069149,49.23080658631259],[-121.1236124934672,49.23073613680486],[-121.12342787803236,49.23066124351022],[-121.12325137295716,49.23059094826215],[-121.12298037933348,49.23048761321549],[-121.12279187275702,49.230417053424915],[-121.12254644846364,49.23033207944036],[-121.12213198334143,49.230203922240605],[-121.12201691008705,49.230170518042314],[-121.12191213020577,49.230137291168724],[-121.12164096280773,49.23005199716989],[-121.12153400072258,49.230023181965144],[-121.12147457740309,49.22999991192931],[-121.1212505383123,49.22992407703956],[-121.12100588627953,49.22984814699892],[-121.12088736352042,49.22981487395172],[-121.1207239577348,49.22976715365137],[-121.1206520601666,49.229748108637075],[-121.12051687712035,49.22970984021077],[-121.12021436598017,49.2296284723909],[-121.12010177171655,49.22960420011225],[-121.11999404498235,49.22956633583723],[-121.11988581673309,49.22953323930674],[-121.11966938998737,49.22946676756586],[-121.11943724723695,49.229386330200576],[-121.1192409344433,49.229324711436796],[-121.11919773238851,49.229310628504074],[-121.11914987049921,49.2292918325093],[-121.11911182918008,49.22927770371246],[-121.11889605769005,49.22918869638869],[-121.11881062742286,49.229151281847855],[-121.11869447152309,49.229095549861505],[-121.11819855990072,49.228876002058605],[-121.11793504397143,49.22879977786816],[-121.11773269618425,49.22869757295848],[-121.11755355246353,49.228636160674334],[-121.11727294287495,49.22851010807931],[-121.11704393747756,49.22841627448061],[-121.11577271757133,49.22803582605521],[-121.11573078470099,49.22802603041556],[-121.11568198089846,49.228016202860935],[-121.11550004508511,49.22793239425835],[-121.1153864006873,49.22788551438188],[-121.11529457849286,49.22784356658923],[-121.11519511987542,49.22779253920306],[-121.1149333957087,49.22766676794924],[-121.11440166203583,49.22742865997062],[-121.11387571841377,49.22716826597191],[-121.11361774377009,49.22705590533788],[-121.113550693017,49.227023542218376],[-121.11348664874977,49.22699526704619],[-121.11341275670908,49.226962593450395],[-121.11334399586819,49.22693015259978],[-121.11330050649836,49.22690252117267],[-121.11306922416635,49.22678150913953],[-121.11291427948454,49.22670258314083],[-121.1126923151282,49.22659101488716],[-121.11245755562844,49.2264704119427],[-121.11233286233094,49.22641428481372],[-121.1121196639205,49.226284789468885],[-121.11186326981496,49.22614120773973],[-121.11172767478081,49.22605808761682],[-121.1116036389753,49.2259794345182],[-121.11150266045377,49.22591029035638],[-121.11137735895115,49.225827348206515],[-121.11116337265426,49.22568907258671],[-121.11102483278496,49.225601306762094],[-121.11059674255098,49.225342223513806],[-121.11037494278142,49.22521290197153],[-121.11024404100284,49.22513421497141],[-121.1100281973837,49.225013616579965],[-121.10973454552428,49.224864954045515],[-121.10953052358553,49.224762646505624],[-121.10931152379955,49.224655715779555],[-121.1089426006832,49.22448756455906],[-121.10871847275607,49.22438039957658],[-121.10852034838088,49.2242873887043],[-121.10840300954217,49.22422679971032],[-121.10815874649263,49.22411504694123],[-121.10776190536635,49.22395098215069],[-121.10760166452998,49.22388985076764],[-121.1074637159715,49.22382917245133],[-121.10724751759467,49.22374463956335],[-121.1067629551465,49.22351624625806],[-121.10653485833849,49.22333276802926],[-121.10637564796048,49.22321303828354],[-121.1062252777593,49.22310725200183],[-121.10555562035056,49.2226462981325],[-121.10497703826394,49.22229943955127],[-121.10476195471122,49.222188165163494],[-121.10468170954825,49.222150684916755],[-121.10444012417196,49.2220300221328],[-121.10426855183698,49.22194610357532],[-121.10392509203047,49.22176498876608],[-121.1037698910958,49.22167250281738],[-121.10355405098318,49.221552169186054],[-121.10281190079142,49.22122492626252],[-121.1026287786407,49.22113652783525],[-121.10251516385502,49.22108963391634],[-121.10225893023102,49.220977610181265],[-121.1021902154261,49.22094488357842],[-121.10202578060661,49.2208748096786],[-121.10195190636071,49.22084212792907],[-121.1019160907534,49.220823302834276],[-121.10157635651797,49.22065588204047],[-121.10130565442795,49.220534464243215],[-121.10106734942397,49.22043170657546],[-121.10090073292015,49.2203660515753],[-121.10073288189406,49.22029582004843],[-121.10055397869895,49.220216351994374],[-121.1002968356224,49.220113024070386],[-121.10021267385605,49.220080152598705],[-121.09943482775034,49.21976592036609],[-121.09931824427068,49.21971465620687],[-121.0992558994095,49.21968672844283],[-121.09902621245669,49.21958379855349],[-121.09879602277519,49.21948563598769],[-121.09877777555454,49.21947944634584],[-121.09852885543123,49.21939593972103],[-121.09788113547572,49.21915133211903],[-121.09777611000695,49.21910454394474],[-121.09760874176001,49.219029826920924],[-121.09740850829793,49.218940919187524],[-121.09729069355843,49.21888508544077],[-121.09712959391095,49.218783586483006],[-121.0969019727777,49.21864493658516],[-121.09663461732396,49.21849207135969],[-121.09639319041875,49.21832150264696],[-121.09617757327246,49.21818311785667],[-121.09594185304968,49.218039865312434],[-121.09583015102058,49.21797500621675],[-121.09579183989088,49.21794732264155],[-121.0956505658352,49.21783713335878],[-121.09557441869417,49.21777727657606],[-121.09529082662051,49.217534294013525],[-121.09507635447999,49.217368892090015],[-121.09498105332258,49.217295197401626],[-121.09471158970977,49.21709739907425],[-121.09465801929629,49.21705154385779],[-121.09454916976912,49.21695974645823],[-121.0943747525762,49.216821817631065],[-121.09423472051031,49.21671619368654],[-121.0941487616733,49.216651666221594],[-121.0940819285978,49.21660125466529],[-121.09404067450603,49.21656892511859],[-121.09394192824792,49.216495342978355],[-121.09372699090939,49.21633442759141],[-121.09363881930305,49.21627458959966],[-121.09357078163225,49.21621933195648],[-121.0930631587823,49.21586914465496],[-121.09284832310422,49.21573980957759],[-121.09274942032425,49.21568398375363],[-121.09250808831588,49.21554526618753],[-121.09238610817916,49.215480214041364],[-121.09225307850177,49.21540592457418],[-121.09211783591017,49.215336315846265],[-121.09199927571925,49.215271428094866],[-121.09132638578264,49.21494076468254],[-121.09115217486628,49.21486599473686],[-121.09101398982412,49.21479174816236],[-121.09075800904203,49.21466166016135],[-121.09043532715724,49.21451246147597],[-121.09017918838391,49.21440012957787],[-121.09013819400293,49.214381623179634],[-121.0898386867745,49.21427323142476],[-121.08962180541036,49.21417960505523],[-121.08957102748731,49.21415614109751],[-121.08942113294248,49.21409517131548],[-121.0893588015696,49.214067237592225],[-121.0890073792746,49.21396239423133],[-121.08889749960287,49.213929187844656],[-121.088789996324,49.21387353396849],[-121.08847609710178,49.21370639596965],[-121.08767852620326,49.21336918026287],[-121.08754902280072,49.213326614125776],[-121.08742658005791,49.21326604562477],[-121.08736425099616,49.21323811071355],[-121.08699673235982,49.21307444901182],[-121.0868576084353,49.21300917585599],[-121.08651826902302,49.21285525208853],[-121.08632742071251,49.212775491703596],[-121.08617674657526,49.21270573865749],[-121.08610416024575,49.21267733480466],[-121.08588726437246,49.21258397904486],[-121.08573785526015,49.21251851452582],[-121.08561152189539,49.21246227728402],[-121.08546600868316,49.212392478985784],[-121.08528085279204,49.21217792067335],[-121.08509693184247,49.211967938472604],[-121.08466857159938,49.21155167890563],[-121.08458995117371,49.21148295708523],[-121.08453535589197,49.211414492968416],[-121.084390499488,49.211241245203645],[-121.08409872378049,49.21093046446897],[-121.08400829971923,49.210843447067],[-121.08393750121436,49.21076577966276],[-121.08334005066453,49.21024310503095],[-121.0832749777259,49.21019248601588],[-121.08324991182646,49.21016963340862],[-121.08311555942636,49.210059460369116],[-121.08294291175605,49.2099215896879],[-121.08247420986683,49.20959454820613],[-121.08234042536023,49.20951146714947],[-121.0822594326663,49.209465190801716],[-121.08216150669226,49.20940038476045],[-121.08155781278772,49.209066603725375],[-121.08138288083084,49.208982769251165],[-121.08130438697846,49.20894534896978],[-121.0811029639945,49.20885212934392],[-121.08084172054333,49.2087398183119],[-121.08061288615514,49.20864590456788],[-121.08011992697789,49.208466892691774],[-121.07994385322692,49.20841007078138],[-121.07979037598173,49.20836696684551],[-121.07895409009338,49.20813701618279],[-121.07884565982438,49.208090330846275],[-121.07868424875353,49.20802486576301],[-121.07860996470404,49.20799637851283],[-121.07839215335093,49.207911985955846],[-121.07833157698273,49.207883836425985],[-121.07818295080803,49.20782741806924],[-121.07764667349849,49.207652061501456],[-121.07729016783316,49.207547222781116],[-121.07721708916152,49.20752358053865],[-121.0766549203607,49.20736563908477],[-121.07660296553632,49.20735339244399],[-121.07645046036795,49.20731737441542],[-121.07525914394444,49.20713092956331],[-121.07498494445036,49.20710852420472],[-121.07404103545596,49.20708366276845],[-121.07384972431296,49.20708957040482],[-121.07271954428347,49.207201102723175],[-121.07252537198977,49.20723394470763],[-121.07185923698832,49.20737572051466],[-121.07147223291794,49.207477273008095],[-121.07134497064918,49.20751092045606],[-121.07101035442415,49.20760443968814],[-121.07054438003655,49.20775396428952],[-121.0697409099559,49.20810486155043],[-121.06904200253229,49.20853864165199],[-121.06899703568392,49.20857380010629],[-121.06886992744283,49.208670609725445],[-121.06865972250996,49.208838049033396],[-121.06847449491252,49.20899676141976],[-121.06784829487637,49.20968368114587],[-121.06775949942246,49.20980789581313],[-121.06731805325923,49.210776767580555],[-121.06729869601428,49.210861883541064],[-121.06726618808429,49.21097373526353],[-121.06717689298353,49.2115389117582],[-121.06716385839316,49.2118715796235],[-121.0671643871259,49.21206051743236],[-121.06717167754434,49.212218177137004],[-121.06717736516651,49.212407071502334],[-121.06717819854808,49.21244771100791],[-121.06700465893194,49.21267405681715],[-121.06693680059993,49.21276286913853],[-121.06683501357031,49.21289607853927],[-121.06665925289997,49.21312712200404],[-121.06654706758361,49.21322884432097],[-121.06596845163712,49.213871403825095],[-121.06588572655198,49.213986881443816],[-121.06583320567748,49.214044528433924],[-121.0656647048072,49.21423953327038],[-121.06548694609707,49.214456949531794],[-121.06535551678923,49.2145941584489],[-121.06520139902317,49.214766976779714],[-121.06504632405202,49.21494878254967],[-121.06493909050491,49.2150684865066],[-121.06478250411543,49.215232177635684],[-121.06467574682652,49.21534739192008],[-121.06459930122611,49.21543608888878],[-121.06453819723875,49.2154936305732],[-121.06426531449854,49.21578139998284],[-121.06410633602364,49.21596752773746],[-121.06395542707877,49.216158545450845],[-121.06387317059793,49.21626953177471],[-121.06376791769814,49.216402859139784],[-121.06362390574465,49.21659362415012],[-121.06358433348088,49.21664256150596],[-121.06342924592319,49.21682436443184],[-121.0631622622871,49.21712114437723],[-121.06312193468747,49.21716102444915],[-121.06285778426599,49.21743114580295],[-121.06274226620778,49.21756400152716],[-121.06263084554122,49.21767449781555],[-121.06237240167046,49.21797166744237],[-121.06225886722895,49.21811814734481],[-121.06215066249959,49.21824683558697],[-121.06210110385649,49.21830884819826],[-121.06196504674594,49.21847318806091],[-121.06181387517847,49.218650368346005],[-121.06168909102449,49.21880564295622],[-121.06166687560642,49.21883677125135],[-121.06158040518825,49.2189388198126],[-121.06144291056304,49.21911662681697],[-121.06123510251228,49.219373818638076],[-121.06106711512717,49.21959590744895],[-121.06104049328805,49.21963613568441],[-121.06101143795411,49.219666941109665],[-121.06095842565956,49.21972908351857],[-121.06077156617232,49.21995086568709],[-121.06052910006089,49.22027526282816],[-121.0604288156982,49.220426300419504],[-121.06039391850247,49.22047968260367],[-121.06030744223078,49.22058172988942],[-121.06013667668378,49.220781413347225],[-121.05997917130365,49.220985656668034],[-121.05981852106734,49.22120328016017],[-121.05967226016546,49.22139872768475],[-121.05950480921163,49.22164790604131],[-121.05943186620426,49.221768059018174],[-121.05937399566996,49.221843502435604],[-121.05928464553637,49.22197248442985],[-121.05916459954672,49.22216377461087],[-121.05910295644853,49.22211329884795],[-121.05862742941775,49.22178612430209],[-121.05839993816008,49.221647115468336],[-121.05793050780753,49.221391837350204],[-121.05780805181985,49.22133152328466],[-121.0572460467624,49.22099360579696],[-121.05703111327921,49.22088195770328],[-121.05666750990258,49.22071414059594],[-121.05652129178979,49.22063495973802],[-121.0555937619403,49.220228092839406],[-121.05535022449634,49.220143043230564],[-121.05444541252481,49.21989397481313],[-121.0542135000898,49.21984497800969],[-121.05369084829756,49.21975076794255],[-121.05323585069193,49.21966670972048],[-121.05297724416444,49.219626345508054],[-121.05184128749485,49.21953073717543],[-121.0516217508779,49.21952684760736],[-121.05127600775091,49.219530132176196],[-121.0510554826298,49.21953550731023],[-121.04964571750607,49.2196869702233],[-121.04943680887166,49.21972839798514],[-121.04880156587413,49.21988415507216],[-121.04851580406299,49.21996941603337],[-121.04818144716442,49.219914287906306],[-121.04805520444712,49.219889589358175],[-121.04793238089594,49.21986505691387],[-121.04755020328673,49.2197910899693],[-121.04724969007187,49.219740889755705],[-121.04715335860868,49.21972574930434],[-121.04682536566406,49.2196754208017],[-121.04617856633313,49.219601393975694],[-121.04586314787987,49.219578149340315],[-121.04580653918696,49.2195772321996],[-121.0450723550448,49.219227380899156],[-121.04476236096686,49.21910512460067],[-121.04461838998658,49.21905338625878],[-121.0443604186363,49.218958903321074],[-121.04425961818703,49.218921277605176],[-121.04412377891461,49.21887385566418],[-121.04397218913017,49.2188130227995],[-121.04350356265789,49.21864765955713],[-121.04323263712,49.21856187973013],[-121.04196202620686,49.21827950437116],[-121.04166053840656,49.21823855425757],[-121.04039876498811,49.21816296921912],[-121.0401233481567,49.21816748075982],[-121.03936243318638,49.21821278541391],[-121.03907384514618,49.21824404430542],[-121.03869616063413,49.218305023476056],[-121.03848683070647,49.21827000671571],[-121.03821450491999,49.21822954236896],[-121.03800469549743,49.2181990138906],[-121.03776869784912,49.21817234891432],[-121.037462564949,49.21812666144454],[-121.0371897606191,49.2180906837207],[-121.03682141214007,49.21804832552309],[-121.03650574002852,49.21801150700521],[-121.03636777840615,49.218000067773744],[-121.03628606753664,49.21794470025347],[-121.03619721771332,49.21787575821577],[-121.03615132366683,49.217838959246045],[-121.03605164757153,49.21774272952294],[-121.03587929198952,49.21758703675512],[-121.0354100384484,49.217219155155796],[-121.03524023214877,49.21710390120606],[-121.0351114023887,49.217007165241576],[-121.03487114031655,49.21682775839383],[-121.03464413897159,49.21665290532209],[-121.03387179821118,49.21616304510321],[-121.03370085566429,49.21607452437529],[-121.03364590582922,49.2160420974708],[-121.03348105486167,49.215944834536494],[-121.03269741467696,49.21554467089379],[-121.03245586652298,49.21544161212692],[-121.03225280458248,49.21534821433722],[-121.03217040942161,49.21531536843634],[-121.03202277704591,49.215249908677265],[-121.03174467108933,49.21511922081384],[-121.03157448561288,49.215039744919906],[-121.03152076652098,49.215011893970775],[-121.03130496090856,49.21490917203376],[-121.0311269463611,49.214838636562135],[-121.03059118719513,49.21451475032356],[-121.0305345306452,49.214482251822744],[-121.03043150811231,49.21441743192989],[-121.03035200031485,49.21435765829266],[-121.0301674643734,49.21421971728371],[-121.03007371638316,49.214132488300955],[-121.02967223384377,49.213806340100575],[-121.02941878260641,49.21362207793121],[-121.02934860467369,49.21357146818752],[-121.02922022549791,49.21343865308497],[-121.02885325406858,49.213095200401675],[-121.0286340945267,49.21291167101643],[-121.0284956967385,49.212792215156384],[-121.0283420673325,49.21265456941461],[-121.02815674486232,49.21247598481226],[-121.02738147049486,49.211918550310685],[-121.02731768564709,49.21187245687573],[-121.02690477666484,49.211573116068735],[-121.02629386590814,49.21122965355837],[-121.0261633306186,49.21113311437013],[-121.02597617755207,49.21100378663221],[-121.0257578662077,49.210860612401376],[-121.02550326820835,49.21070335449841],[-121.02530777556268,49.21058774283352],[-121.02509393065353,49.210467041930386],[-121.02468170788289,49.21025767199628],[-121.02454564856394,49.21019667811966],[-121.0243926192414,49.21011770205381],[-121.02390764346548,49.20989791040119],[-121.02364431054654,49.20979015852108],[-121.02348273619363,49.20971078599858],[-121.02327726124004,49.20960823401419],[-121.02320442340613,49.20956651936228],[-121.02305922968225,49.209478600689174],[-121.0230312562011,49.20945108678896],[-121.02299392874222,49.20941467691397],[-121.0227158778187,49.209139876749134],[-121.02252839983572,49.20896569169706],[-121.02235270302229,49.20880981715358],[-121.0222263302391,49.20869062747717],[-121.02204371988987,49.20850313190501],[-121.02197206523998,49.20843440200442],[-121.02182456145451,49.20828800478073],[-121.02160807695581,49.20806398674091],[-121.021040591117,49.2075727692942],[-121.02080165988166,49.20739789681413],[-121.02031311056457,49.20708374756445],[-121.02008655175297,49.20695371234838],[-121.01934979377015,49.20659931020535],[-121.01848654059181,49.206319128205315],[-121.01798835479397,49.20620697073865],[-121.01772736813847,49.20615767184248],[-121.01617775604413,49.20601403559426],[-121.01533042542691,49.206017662689064],[-121.01524642220868,49.20601602863827],[-121.01482190214735,49.20601779977688],[-121.01452330678725,49.206030760940074],[-121.01437707146124,49.206032722625444],[-121.01407776112679,49.20603634665678],[-121.01370764151456,49.20604344826503],[-121.01342887410952,49.20604774233772],[-121.01311018768011,49.2060558168236],[-121.0128544788059,49.206069343516944],[-121.01257010035403,49.206077886976225],[-121.01239935954486,49.20608407034468],[-121.01203340145064,49.20610039116808],[-121.0117485410139,49.20611341266933],[-121.01167605104814,49.2061165411791],[-121.01158811637711,49.20611951336692],[-121.01091033106331,49.205680655125576],[-121.01074879274594,49.20560126302753],[-121.01059457531139,49.205517698415576],[-121.01046170497406,49.20544330698201],[-121.01033299874523,49.20537812247219],[-121.01018610313048,49.20529038500115],[-121.01001621122808,49.20519284690138],[-121.00976147576883,49.20505358646164],[-121.00922047599713,49.204796718978436],[-121.00890989797597,49.20466558665036],[-121.00851431817019,49.20451020068443],[-121.00818981686837,49.20439674644119],[-121.00789769312178,49.20430171110753],[-121.00761318225665,49.20421576241304],[-121.00748967814263,49.204182125693414],[-121.0072747577575,49.204119985472005],[-121.00709708027766,49.20406296498349],[-121.00693949315192,49.204010819206815],[-121.00689292905916,49.20399654117625],[-121.00637857213604,49.203843532238466],[-121.00607936509324,49.20376648904696],[-121.00548540530092,49.20363488494033],[-121.00514483297535,49.203575093945965],[-121.00505370764371,49.2035598661685],[-121.00475676299932,49.20350971394525],[-121.00455436353974,49.203474938857134],[-121.00408961770134,49.20340374213232],[-121.00376378516587,49.203366629290336],[-121.0034538512703,49.203325453084865],[-121.00311602465521,49.20328806119983],[-121.00304963328311,49.203282443638244],[-121.00291488323614,49.20325757321046],[-121.00258585860254,49.20320226207662],[-121.00249148086802,49.20316939404701],[-121.00225328792033,49.20308418211366],[-121.00153481777824,49.20286471676341],[-121.00130398333712,49.202806904940935],[-121.00120867010956,49.202782735764934],[-121.00100749787137,49.20272067027828],[-121.00060345069075,49.20262830204319],[-121.00033534342066,49.20253380075804],[-121.00014568560898,49.202476491248454],[-121.00000098564614,49.202448339532594],[-120.99991685221676,49.2024320243657],[-120.99979506865083,49.202398449162985],[-120.99961692318665,49.202345905357035],[-120.99888329140707,49.202139810981954],[-120.99868699602492,49.202064423491294],[-120.99846671076573,49.2019884893441],[-120.99826013022864,49.201912911824294],[-120.99785925649394,49.20180714515295],[-120.99755372364751,49.20172527117764],[-120.99737532591087,49.20165917671722],[-120.99717510158774,49.20158840399581],[-120.99711361473523,49.20156918689073],[-120.99698861272564,49.20151770083731],[-120.99543370524951,49.201090402695726],[-120.99534087875665,49.20107508718025],[-120.99527030212217,49.20106052642327],[-120.99509342196586,49.20101226533027],[-120.9945367688165,49.20088570672715],[-120.99427928535624,49.200836231323564],[-120.99421386705019,49.20082163001217],[-120.99410779111699,49.20080175398904],[-120.99397350729244,49.20077266147599],[-120.99351074194139,49.20068346228507],[-120.99348450044192,49.20065601985564],[-120.99342734424792,49.200596685649074],[-120.99307908847892,49.2002263195867],[-120.99296042225521,49.2001161825895],[-120.99282145772975,49.20000313402182],[-120.99258311216437,49.19980819467421],[-120.99238256327057,49.199660969167205],[-120.99185990213978,49.199251470014076],[-120.99182460222255,49.19922839694929],[-120.99178343471277,49.199196027465945],[-120.99171625334859,49.199150040331425],[-120.99103613662847,49.198751247061516],[-120.99075405638419,49.19861151164429],[-120.98994494571052,49.19827805466781],[-120.98960683041527,49.19816418527729],[-120.98874199919902,49.19793330126481],[-120.9885521444824,49.197894007095144],[-120.98863174007694,49.197665919646205],[-120.98865171963782,49.197576335984735],[-120.98864181421017,49.197477185553396],[-120.98861008133547,49.19713478477684],[-120.98859272045924,49.196945612229875],[-120.98844376097107,49.19624133547078],[-120.98836888274279,49.19605991529297],[-120.98821963098112,49.195756039254555],[-120.98811728921464,49.19557446766722],[-120.98774494499942,49.195046173268246],[-120.98758776728053,49.194863463548735],[-120.98713249496417,49.194419282353],[-120.98694671813,49.1942628690579],[-120.98612765832758,49.19370445341615],[-120.98597990542078,49.19362538139585],[-120.98565939319896,49.19344435188739],[-120.98555206099294,49.19338859341946],[-120.98525339563702,49.193243835344845],[-120.98506154686734,49.19315961195917],[-120.98499124784105,49.19312672073372],[-120.98473195858597,49.192951374472926],[-120.98451729893218,49.19283985549455],[-120.98331148571357,49.19236433493389],[-120.98301336127027,49.192278248080505],[-120.98167625891989,49.192016535837205],[-120.98137576280125,49.191984195240416],[-120.9807272774361,49.19194577466568],[-120.98044808771664,49.19192288030835],[-120.98041083778713,49.19188617639919],[-120.98037575215623,49.19184534137025],[-120.98020461179841,49.191617408377425],[-120.98007100474157,49.19143944792368],[-120.97993147424708,49.191252746746116],[-120.97964636795456,49.190919387955255],[-120.97947331097183,49.19074099354712],[-120.97925466585056,49.190507746772155],[-120.97909067253828,49.19032497383006],[-120.97899803882527,49.19022872797358],[-120.97885243692417,49.19008234766165],[-120.9787450843273,49.1899634151034],[-120.97867275465552,49.18988587479043],[-120.97863428462395,49.18984460126543],[-120.97846979149575,49.189634741792034],[-120.97832539834091,49.189461345989436],[-120.97815380888801,49.189269481611475],[-120.97812929164535,49.18924211471402],[-120.97797119994792,49.18906836765925],[-120.97769866402912,49.18879367321182],[-120.97752664133984,49.18863760204511],[-120.97722080247642,49.18838504761492],[-120.97707477331295,49.18827445891267],[-120.97665065771506,49.18798818218831],[-120.97643630607209,49.18785832258207],[-120.97563996202673,49.18752054371175],[-120.97562377072097,49.18747974055849],[-120.97540917470982,49.187098340895695],[-120.97533710438587,49.18697089961281],[-120.97530790400972,49.18690749811345],[-120.97525784182565,49.18679885212249],[-120.97510754524917,49.18655326474476],[-120.97496364359768,49.18634379975484],[-120.97492319026334,49.186289175944076],[-120.9748070169801,49.18612498713888],[-120.97481529391482,49.18608025516645],[-120.97484662388739,49.18588602121798],[-120.97528014614083,49.183689527190445],[-120.97545874703526,49.18345141184049],[-120.97609409781552,49.183165810274964],[-120.97698338434085,49.182866126916046],[-120.9780454693285,49.182476929055255],[-120.97882219518866,49.18213812921255],[-120.97914014599883,49.18197672549869],[-120.97969231637678,49.18163421676278],[-120.98034023385512,49.18097779767745],[-120.98046077033861,49.18083170567831],[-120.98078814453302,49.18039240917764],[-120.98100039960984,49.18008084117265],[-120.98130214560082,49.17979911107812],[-120.98139009389647,49.17970028914099],[-120.98150471956357,49.17957704809729],[-120.98161937470812,49.17945352857592],[-120.9817240224767,49.17932727716467],[-120.9818103315811,49.17919594711196],[-120.98188846219347,49.179060851591295],[-120.98195487631044,49.17892295355188],[-120.9820128995522,49.17878325636495],[-120.98206070232281,49.178642802666836],[-120.98209313051474,49.178501622768025],[-120.9821068869073,49.178358452956985],[-120.98210874588577,49.17821415966986],[-120.98210380251865,49.17806926029673],[-120.98210566149513,49.17792496694585],[-120.9821126454674,49.17778091261978],[-120.98213326498968,49.17763778305614],[-120.98217771069943,49.17749660404404],[-120.98224570875585,49.177359907492594],[-120.98233045675705,49.1772270873195],[-120.98242194534221,49.177095438734064],[-120.98251505148197,49.176964704725044],[-120.98260650895112,49.17683333426388],[-120.98269293221256,49.17670088068901],[-120.98276757933273,49.17656618133012],[-120.98283047950869,49.17642896685484],[-120.98288666745528,49.17629031130524],[-120.98293955978187,49.176150374036034],[-120.98298909636488,49.176009711720035],[-120.9830335679951,49.17586825366875],[-120.98307465387477,49.17572634891453],[-120.9831140302768,49.17558437342234],[-120.98314831272673,49.17544187156368],[-120.9831791173577,49.17529977597308],[-120.9832065062879,49.17515751202735],[-120.9832099487027,49.1750144200007],[-120.9831946005578,49.17487045158815],[-120.98317586612963,49.174726045468624],[-120.98316911943094,49.174581918663904],[-120.9831880571114,49.174438421215],[-120.98323588290977,49.17429767874812],[-120.9832905412375,49.174157254899015],[-120.98335358793821,49.174018638957605],[-120.98343314099166,49.1738861438882],[-120.98356248432064,49.17376950648057],[-120.98371935013806,49.173668256628375],[-120.98388894186141,49.173576335050434],[-120.98407263308903,49.17349691895243],[-120.98426093226885,49.17342251808913],[-120.98444908052596,49.1733495085677],[-120.98463890533444,49.17327686567013],[-120.98482863936489,49.173205057438146],[-120.98502004994937,49.17313361581897],[-120.98521145994584,49.17306217385187],[-120.98540116118885,49.17299065190297],[-120.98559089287498,49.17291884229724],[-120.98578071414255,49.17284619734006],[-120.98597059589585,49.17277298638884],[-120.98615718192238,49.17269849352557],[-120.98634394863417,49.17262232133176],[-120.98652949127819,49.17254157988604],[-120.986700599249,49.17245142131842],[-120.98685077339606,49.17234843860702],[-120.98698007286129,49.172232084138024],[-120.98709316944709,49.17210678981546],[-120.98718789954005,49.1719766960311],[-120.98727088447829,49.17184407858836],[-120.98734727875969,49.17170889798551],[-120.98741702233876,49.17157171090979],[-120.98748002319293,49.171433370342875],[-120.98753789935172,49.171294790908966],[-120.98758735580097,49.17115469108769],[-120.98763007066505,49.17101342882636],[-120.9876643359107,49.170870924533894],[-120.98769518477374,49.17072826100367],[-120.98772261728526,49.17058543823854],[-120.98774663250737,49.17044246521955],[-120.98776726245174,49.17029904565375],[-120.98778618420349,49.17015554645587],[-120.98779998165783,49.17001180843431],[-120.98781033287533,49.16986818952538],[-120.98781385183021,49.16972425219944],[-120.987813923664,49.169580442966385],[-120.9878122884273,49.169436545126906],[-120.98780891415652,49.1692928549766],[-120.9878038628884,49.169148797880936],[-120.98779707261804,49.16900494847409],[-120.9877902823897,49.16886109903518],[-120.98778352321352,49.16871696224662],[-120.98777673306911,49.16857311274331],[-120.98777165096872,49.16842934280486],[-120.98776830790653,49.168285365113974],[-120.98776667188741,49.16814147596706],[-120.98776674483366,49.167997657406616],[-120.98777370978436,49.1678536005246],[-120.98779095258622,49.16770974285211],[-120.98781838302367,49.1675669194022],[-120.98785764695225,49.167425784399484],[-120.98791222317506,49.16728591340728],[-120.9879769247076,49.16714765123644],[-120.98804989332369,49.16701230997497],[-120.98814622723049,49.16688313792316],[-120.98827556930746,49.16676621526718],[-120.9884129969763,49.16665389240393],[-120.98855374780658,49.16654258149293],[-120.9886977026158,49.16643338690291],[-120.98884638622204,49.16632808517905],[-120.989003064316,49.166228227159905],[-120.98916776693234,49.16613353447294],[-120.98934055413709,49.16604345040291],[-120.98951474635975,49.16595624697469],[-120.98969381853465,49.16587153561413],[-120.98987258785293,49.16578962530845],[-120.99006701278047,49.16572170006349],[-120.99026888804059,49.16566426434731],[-120.99047082187974,49.165606280544715],[-120.99067275618397,49.16554828737983],[-120.99087459895473,49.16549113783294],[-120.99107796804323,49.16543574647314],[-120.99128274145832,49.16538324461441],[-120.99148879819812,49.16533475459316],[-120.99169607924917,49.165290824106854],[-120.99190879920664,49.1652601227957],[-120.99212803102257,49.16524862022229],[-120.99235007344396,49.16524288797659],[-120.99256957806583,49.16522885249422],[-120.99277927439996,49.16519434504136],[-120.99298257893969,49.165139515722956],[-120.99318014039106,49.16507426685486],[-120.9933699177979,49.165001607654496],[-120.99354745335576,49.16491512224633],[-120.99373692757412,49.16484526375955],[-120.99394010848484,49.16479155495204],[-120.9941462808036,49.16474193745598],[-120.99435391959727,49.164694634772225],[-120.99456146700726,49.164648175690715],[-120.9947691039927,49.164600881178636],[-120.99497527554983,49.164551253102815],[-120.9951771387031,49.1644938170646],[-120.99537152047662,49.16442616045397],[-120.99557176567421,49.16436780018116],[-120.99578218147497,49.164326552736924],[-120.99599892960515,49.164306182868515],[-120.99621824684475,49.16429382794664],[-120.99643999731126,49.164274817931215],[-120.99666351639803,49.16425532125008],[-120.99686737105988,49.16421123080656],[-120.99704078597313,49.16413103639786],[-120.99720073389702,49.16403244737379],[-120.99734990509143,49.16392235679404],[-120.99748931203138,49.163807299916236],[-120.99761850119104,49.16369148784594],[-120.99772480693453,49.16356502792802],[-120.99781293126044,49.1634320733105],[-120.99789095894945,49.16329724127287],[-120.99795226957961,49.163158256704676],[-120.99798814528941,49.163016383539315],[-120.99800867944909,49.162873526048806],[-120.9980275665912,49.16273002342081],[-120.99804477578746,49.16258616297889],[-120.99805853930206,49.16244242197771],[-120.99807062587941,49.16229831418538],[-120.99807758804707,49.162153977035814],[-120.99808278243722,49.162010117108615],[-120.99808108476326,49.16186650508029],[-120.9980742338044,49.16172293306181],[-120.99806573506966,49.161578724887256],[-120.99805558954161,49.16143387157707],[-120.99804199858684,49.16128913770855],[-120.99802496223744,49.16114452328051],[-120.99800100314792,49.16100044406763],[-120.99797177110698,49.16085751823405],[-120.9979337888042,49.16071616155045],[-120.99788873310422,49.16057674077006],[-120.99783142286984,49.160439556302556],[-120.99775831898756,49.16030559854657],[-120.99767122212488,49.1601740849409],[-120.99757363773954,49.16004433930266],[-120.99747077992592,49.1599157559227],[-120.99736618500161,49.159787371318444],[-120.99726332736235,49.159658796668566],[-120.9971674838327,49.159528842683095],[-120.99707871238721,49.15939697064716],[-120.99697927273549,49.15926854557114],[-120.99685828348731,49.15914898983033],[-120.99673193005916,49.15903144028462],[-120.9966020100893,49.15891514133817],[-120.99647026317459,49.15879987613583],[-120.99633848692919,49.158684889097394],[-120.99620500271332,49.15856983139184],[-120.99607152012493,49.15845476452165],[-120.99594148250634,49.158339587036494],[-120.9958132750525,49.15822335750509],[-120.99569402914172,49.15810360138991],[-120.99571466007177,49.15795989026584],[-120.99579433135132,49.157825703757915],[-120.99590389300066,49.1577008041489],[-120.99603316007257,49.15758414887896],[-120.99617700867735,49.15747550846557],[-120.9963322363455,49.15737274857042],[-120.99650482530285,49.15728406148731],[-120.99668995743001,49.15720638041168],[-120.99687981814925,49.15713259178754],[-120.99707724923712,49.15706817898887],[-120.99728161643507,49.15701903214635],[-120.9974930108156,49.156984307205455],[-120.99770859073973,49.15695852074521],[-120.99792713215986,49.1569371038424],[-120.99814567337879,49.156915686495466],[-120.9983613125637,49.156889342032656],[-120.99857438220918,49.156854981718645],[-120.99878601655388,49.15681800949842],[-120.9989978003939,49.15677964512532],[-120.99920982650472,49.156739026620116],[-120.99941864874214,49.156696282479665],[-120.99962777215367,49.15665073650124],[-120.99983375156243,49.156602508215784],[-120.99999951954509,49.156561153835675],[-121.00003835541594,49.15655111137085],[-121.00024011769412,49.15649422183515],[-121.00043720898995,49.15643289157367],[-121.00063460222789,49.15636875053259],[-121.00083040812883,49.15630340736227],[-121.00102621347986,49.15623806382942],[-121.00124217680653,49.156176761318235],[-121.00157420779888,49.15610534202125],[-121.00214592431477,49.15597540765718],[-121.0028105016568,49.1557798511585],[-121.00343021262134,49.155411041013295],[-121.00376240966203,49.15500291520283],[-121.00383467262772,49.154538439087716],[-121.00374564900186,49.154105667772754],[-121.00355187081193,49.15370554036257],[-121.00322820340408,49.15326863131667],[-121.00283559303246,49.152930315150535],[-121.00282880679944,49.152913639381424],[-121.00123010417852,49.151536490985336],[-121.00077002487379,49.1509962212188],[-121.00000015154588,49.150432806018884],[-120.99995716340669,49.15040175856317],[-120.99933418169046,49.15000420754212],[-120.9984184099691,49.149569063299055],[-120.99751191877284,49.149223174411894],[-120.9964441384494,49.14916417924004],[-120.99539094176949,49.149081315900254],[-120.994705967681,49.14900486604337],[-120.99389939978514,49.1489103505876],[-120.99336525292914,49.14873996318778],[-120.99305555492208,49.14850896222148],[-120.99260389536583,49.14814641857721],[-120.99210261436568,49.14775082492616],[-120.99162521940607,49.14743615019736],[-120.99111862011574,49.14718552785106],[-120.99064127141311,49.14683870619043],[-120.99002547985049,49.14628012212271],[-120.98968654907192,49.14616139650154],[-120.98937340179555,49.14599451855037],[-120.98908772072937,49.145747982384364],[-120.98893243059587,49.14535834552484],[-120.98895022811185,49.14489104755678],[-120.98904335075622,49.144425284380446],[-120.98905754847891,49.14407089974804],[-120.98907172757372,49.14373259512484],[-120.988966136704,49.14331171272065],[-120.9887647501085,49.142824611382565],[-120.98843825858825,49.14239991718939],[-120.98827420976582,49.142171175718495],[-120.98811539222243,49.141846227122215],[-120.98793085618095,49.14156887266174],[-120.98757156058589,49.141353017046704],[-120.98698021837947,49.14114129095053],[-120.98638550528005,49.14089725072555],[-120.98546646440698,49.140542762187806],[-120.98498214753917,49.140356881106854],[-120.98460068041662,49.140092331531065],[-120.98441621133856,49.13978281867698],[-120.9844286968819,49.1394605041112],[-120.98433023913476,49.138878635950576],[-120.98432411280173,49.13839498261265],[-120.98427356306587,49.13784609477102],[-120.9841494468331,49.1372635958345],[-120.98398987998134,49.136357941438995],[-120.98381425786047,49.135855383441196],[-120.98363696279439,49.13535246674964],[-120.9834303289723,49.13499425666632],[-120.98291060213384,49.13448549608935],[-120.98167775776282,49.133527753944016],[-120.98043796799381,49.132491834043954],[-120.9796806817846,49.131769195864514],[-120.97912820042662,49.13145319463952],[-120.97846128545069,49.13095811328435],[-120.97818286378231,49.130566364543895],[-120.97802418633367,49.13024111690889],[-120.97750639496377,49.12966783266209],[-120.977119747731,49.129500008075404],[-120.97641293364147,49.129358672928134],[-120.97589765438777,49.12934953574801],[-120.97550924172673,49.129229849228494],[-120.97532304979843,49.12898480950785],[-120.9753816278065,49.12876024869007],[-120.97544198808198,49.128503328051835],[-120.97530911436395,49.128114141869396],[-120.97513001629058,49.127724201378165],[-120.97494568148487,49.127398594779535],[-120.97481094338788,49.12710604465537],[-120.9747773568413,49.12671867530266],[-120.97481561577646,49.126380636799844],[-120.97491420373031,49.125785955042616],[-120.9750811131727,49.12527316206668],[-120.97519110725064,49.125017153729324],[-120.97529761095194,49.12479342527367],[-120.97548569822757,49.12441782930019],[-120.97574298616112,49.12411597780898],[-120.97609595816317,49.1238967164622],[-120.97667159782492,49.12361650772492],[-120.97724362572993,49.12343315025477],[-120.97789277131747,49.12320263155291],[-120.97848698945306,49.12305189098287],[-120.97913077562897,49.122950274010016],[-120.97977107404193,49.122880924526164],[-120.98029335399148,49.12274514179945],[-120.98076606831387,49.12257601475818],[-120.98131411801182,49.122392085057164],[-120.98188783977538,49.12219270152566],[-120.98270636263612,49.12198134688751],[-120.98345478769232,49.12170438089212],[-120.98396205833401,49.12131012202954],[-120.98421660186452,49.121064807108354],[-120.98444986714527,49.120762374729196],[-120.98470702780685,49.12047685026738],[-120.98503600059644,49.12024093713904],[-120.9856558422334,49.12009050693375],[-120.98646715487533,49.120088600033675],[-120.98696019540104,49.12003264286045],[-120.98796484246728,49.12009841419168],[-120.98866976112768,49.12028809866396],[-120.98925502157206,49.12037884810429],[-120.99023220638819,49.12049267176057],[-120.99160484497114,49.120580918976145],[-120.99226193853458,49.120721259627295],[-120.9931877210383,49.120882564943024],[-120.99442827169042,49.121210264585024],[-120.99512620837072,49.121544809120245],[-120.9955039852198,49.12193833677051],[-120.99558831334453,49.122254166299086],[-120.99571961737954,49.122659332196555],[-120.9959449233486,49.123163063285844],[-120.99607446571186,49.12360057949841],[-120.99629975019113,49.124136452536305],[-120.99647017663324,49.12475184637402],[-120.99673634995051,49.12546560502386],[-120.99688984270922,49.12591973710822],[-120.99717009947952,49.12631152868401],[-120.9975479786761,49.12668867830147],[-120.99821678573562,49.127135500186064],[-120.99873052115727,49.12750938450874],[-120.99945857171008,49.12802747585006],[-120.99999683343684,49.1283489169018],[-121.00015313271174,49.128442488760165],[-121.00082722280055,49.128792796565854],[-121.00145522030965,49.12906144269527],[-121.00241717462539,49.12946235437904],[-121.00331951770708,49.129540413184564],[-121.00418692511653,49.12930522451457],[-121.00507119775435,49.128928961327404],[-121.00583246364288,49.128707722959135],[-121.00708813328032,49.128322471281116],[-121.00838307095579,49.127794931226006],[-121.00918283408213,49.12748634464],[-121.01067782968683,49.12693197355102],[-121.01216578747281,49.12657070788527],[-121.01373904389291,49.12653317988419],[-121.0150797478266,49.12645720857353],[-121.01756666166419,49.12666364329594],[-121.0202113949663,49.12683784403789],[-121.02320077443535,49.12728513755263],[-121.02599408076738,49.12780222966208],[-121.0281741277379,49.128152688386606],[-121.03002367575573,49.128434520141155],[-121.03300680764232,49.128733194778064],[-121.035454816604,49.128968143460256],[-121.0372891457665,49.129184279350234],[-121.0380015336574,49.12927470412103],[-121.03923774831186,49.12935829194909],[-121.04038144881909,49.12940882739368],[-121.04166713395296,49.12943064563408],[-121.04229009232229,49.12937874129484],[-121.04258389676858,49.129164722288515],[-121.04283777619827,49.12876218359611],[-121.0432450844066,49.12814309152485],[-121.04359795889505,49.127648390173455],[-121.04418878870607,49.12715761471],[-121.04496981967684,49.12673256599905],[-121.04550630116285,49.12639747559278],[-121.0445079743587,49.125128698920456],[-121.04383540728048,49.12402186263158],[-121.04361813924854,49.12348619535658],[-121.04331871119723,49.12314215973924],[-121.04293139141657,49.12278617196524],[-121.04241705751333,49.12249567440392],[-121.04181019511755,49.12217241531325],[-121.04143649012326,49.1219783529736],[-121.04126081359176,49.121599701638175],[-121.04123368172424,49.12109845624695],[-121.04134850384618,49.12056852340127],[-121.04139902678074,49.12019127787716],[-121.04138198199783,49.11972406640972],[-121.04130219545073,49.119298510406246],[-121.04117278142724,49.11900066369867],[-121.0407287519724,49.118147978913456],[-121.04050244545684,49.11734398284769],[-121.03994948869745,49.11637148524774],[-121.03953896753859,49.11570336387917],[-121.03924809144635,49.11529597574156],[-121.03912929900467,49.1149630771461],[-121.03911613416497,49.114732922736295],[-121.03915251032635,49.1143598218493],[-121.03917221671357,49.11388583725526],[-121.03907683500162,49.11351031493198],[-121.03887478302974,49.11309009638488],[-121.03864932624917,49.11271251803243],[-121.03848756464143,49.112364664545105],[-121.03839368816477,49.111975114118344],[-121.03832055505677,49.111600048696495],[-121.03842601607647,49.111141871744266],[-121.03865552609474,49.110886819096514],[-121.03912593491306,49.11060736391489],[-121.03948583852686,49.110383436993075],[-121.0399978385487,49.11014791555707],[-121.04051390257384,49.10982601058679],[-121.04096375896034,49.10954615845253],[-121.04146026539793,49.10916637668917],[-121.04167773895435,49.10863806974916],[-121.04167111353618,49.10825000377809],[-121.04165662229528,49.10804826689362],[-121.04169584533595,49.10763214020432],[-121.04179564300256,49.107339237540046],[-121.0418943320796,49.107024562282014],[-121.04198952383845,49.10683915954883],[-121.04225670576011,49.106728826909745],[-121.04261133461661,49.10663436064849],[-121.04302967628394,49.106569355918936],[-121.04349347246946,49.106447780983366],[-121.04384809572142,49.10635331958427],[-121.0442913584837,49.106231353343084],[-121.04462239906312,49.10616512998711],[-121.04517112662408,49.106131229153426],[-121.04558656370361,49.10610949614036],[-121.0463349235678,49.106036013435585],[-121.04677295773398,49.10604351866379],[-121.04732168229714,49.10600960685427],[-121.0477632259269,49.105887556562905],[-121.04805378509755,49.105734566078404],[-121.0486258999532,49.10565801322621],[-121.04917864268818,49.10553797943629],[-121.05053939387264,49.10546025351143],[-121.05109194571942,49.10532582593408],[-121.05179849432432,49.10519396961596],[-121.05243428693407,49.10514711441765],[-121.05304836297522,49.10514325688889],[-121.05361796986313,49.10513846682388],[-121.05401152578519,49.10514503149961],[-121.05427331831396,49.105149470768254],[-121.05464731454595,49.10509817219856],[-121.05489296869203,49.104980321095674],[-121.05518601845284,49.104755243265984],[-121.05532795764125,49.10448428667145],[-121.05544796987994,49.104242208239114],[-121.05552718470015,49.10388404210284],[-121.05552448538072,49.10340959170602],[-121.05553830372833,49.10302162168912],[-121.05544834531632,49.102545688999044],[-121.05550049773171,49.10234532665443],[-121.05563838634104,49.102160760232884],[-121.0558813840017,49.10193872743308],[-121.05622058524129,49.101811373330065],[-121.05655294405659,49.10171612700158],[-121.05686437491609,49.10159199571432],[-121.05713531600311,49.10138111890554],[-121.05749372630497,49.10118582703481],[-121.05784831069057,49.101091040331355],[-121.0582884155766,49.100997922795074],[-121.05868364282988,49.10100454890732],[-121.05896764514523,49.101009440254046],[-121.0594014441052,49.10108861461584],[-121.05977043553563,49.101180886885246],[-121.06011449745297,49.10133037908408],[-121.0603311813085,49.101420435027975],[-121.06060755329605,49.101626325927654],[-121.0609464715397,49.10190502024723],[-121.06156202790714,49.1024840774002],[-121.06054086989715,49.10001075675777],[-121.01947224134005,49.000291265736806],[-120.64379623541211,48.998036732311064],[-120.58335091578834,48.99803084592558],[-120.50001900023288,48.998030940785085],[-120.4166863066878,48.998030918188114],[-120.40238893606657,48.99803530048028],[-120.33335268757385,48.998031045431546],[-120.25001976025769,48.9980311423196],[-120.16668741167055,48.99803119238379],[-120.08335552430943,48.998031214782706],[-120.00002224711378,48.99803139329281],[-119.74998029163727,48.99803342925687],[-119.70122588364936,48.99807517116325],[-119.52028150707778,48.99805069029486],[-119.49998077201222,48.998030235834385],[-119.24998332075837,48.998031347904295],[-119.20147075612815,48.99807380635848],[-119.02580558302819,48.998056689099315],[-118.99998551083799,48.998031715599275],[-118.74998776188554,48.99803071378818],[-118.63895615367139,48.9980968481516],[-118.49998858229301,48.99802902405391],[-118.24999081070332,48.99803214706808],[-118.06408497957354,48.998081252488724],[-118.06000611445265,49.00317747837421],[-118.0598359047411,49.006426591699324],[-118.05957473874813,49.00996679300916],[-118.05801208658909,49.01276105440183],[-118.05507133741867,49.016301740808494],[-118.05506983352878,49.02041048308151],[-118.05611078811123,49.02252072687416],[-118.0568990196453,49.025145302463685],[-118.05508635931423,49.02891557769295],[-118.05100101936343,49.03102454721339],[-118.04716910531981,49.03462195705536],[-118.04717255740823,49.0382157059934],[-118.04831444814003,49.04294927806781],[-118.05066715938032,49.0463132642754],[-118.05310716655296,49.04916892897302],[-118.05389484924552,49.05276276932823],[-118.05155027849823,49.055615457815314],[-118.05076740196169,49.0585824416839],[-118.05138413792942,49.06229094962739],[-118.05077197929157,49.06337624639228],[-118.0508548699699,49.06690918811944],[-118.04982320754542,49.06947996533284],[-118.04825168661422,49.07239086184056],[-118.04790788280397,49.074558606720245],[-118.0486885160796,49.07706918959187],[-118.0511264012623,49.08163306066189],[-118.05322660115326,49.08608227731833],[-118.05227239427208,49.08916326916844],[-118.05080017409912,49.09213417434792],[-118.05228082030861,49.09578342551973],[-118.0522843546188,49.096807384049285],[-118.05358676737148,49.10085581062107],[-118.05159003897374,49.104395598951335],[-118.05098537101803,49.107362044801825],[-118.05167433444784,49.1085636699734],[-118.05194765222083,49.1126732719736],[-118.04907764982443,49.11592173122405],[-118.04854851482682,49.118606404645746],[-118.0492561750047,49.122028848790045],[-118.05055850622539,49.127445854500635],[-118.05083005663121,49.135261083315086],[-118.0526614118056,49.14097050502921],[-118.05266078471439,49.14153662261376],[-118.05676372333679,49.14484811153405],[-118.0618220979141,49.147411464846805],[-118.05528467304035,49.14752855422009],[-118.04682874430452,49.14878787059066],[-118.03819724724801,49.15050430014628],[-118.03602200200135,49.15369987811991],[-118.03924907547832,49.15649400896644],[-118.0432622226782,49.15888631012302],[-118.04465645787158,49.16128152695739],[-118.04570548776478,49.165848621761526],[-118.04657553386242,49.16921122191984],[-118.04823213025516,49.17200819882502],[-118.05242510410318,49.17400539681164],[-118.05992554876134,49.17536971065432],[-118.06786338474667,49.17667775832709],[-118.06899974356207,49.176563333255],[-118.0716079653498,49.17679061946379],[-118.07657968727808,49.17924000613398],[-118.07641517164886,49.182377395652054],[-118.07345442842538,49.18557720477841],[-118.06979829988651,49.19025800851403],[-118.06857318541172,49.19499439033517],[-118.06761809584974,49.2012123531235],[-118.0676304169782,49.20766052421663],[-118.06910757640998,49.21296860045687],[-118.07182312704211,49.22152078546667],[-118.0745341518095,49.22688258044863],[-118.07532015565108,49.2282563991896],[-118.08065229357041,49.23669584658453],[-118.08686301290854,49.2434815321999],[-118.0872129983995,49.24393749527125],[-118.09166366183841,49.24633084407623],[-118.09813799191485,49.249408803014155],[-118.09996718789043,49.250663706004836],[-118.10329386004193,49.25430881365661],[-118.10819071346855,49.257900651371514],[-118.11124738675049,49.25989715969977],[-118.11597527314764,49.26246184366676],[-118.12304676832144,49.26262412416746],[-118.12488358304651,49.262624816828314],[-118.12720281253264,49.26311783388512],[-118.13048111901557,49.26381881491182],[-118.13432327418326,49.26672610785234],[-118.13529606583178,49.268720752590255],[-118.13668944121684,49.27059839586214],[-118.13913726102034,49.27293710374553],[-118.14254308072411,49.272080368194665],[-118.14463921716062,49.26990706750609],[-118.14579657094164,49.26851215368962],[-118.16540456391843,49.27822338207022],[-118.17569194145977,49.2989358058856],[-118.175737230922,49.29902540796294],[-118.1762251979872,49.30000001717016],[-118.18933341097788,49.326100465794624],[-118.2000001512669,49.32463047829351],[-118.20373965806941,49.32411471870387],[-118.20366436577108,49.32438654480238],[-118.20360326532627,49.32455386547551],[-118.20374691664144,49.32470630413541],[-118.20390873315104,49.324853538776416],[-118.20410937620264,49.32497558010508],[-118.20432950328755,49.32508460855797],[-118.20455195384858,49.32519011971975],[-118.2047950226868,49.32527590046286],[-118.20504083774509,49.325355659329254],[-118.20530346924413,49.32540749024905],[-118.20557344301092,49.32544655173052],[-118.20584473868976,49.32547778601326],[-118.20611867755707,49.325493366563066],[-118.20637799807315,49.325554579376586],[-118.20663438538473,49.3256229309957],[-118.20689446383706,49.32567966131134],[-118.20716485587218,49.325706019100934],[-118.20744262720572,49.325709143744845],[-118.2077162568616,49.325695843027454],[-118.20799216024986,49.325679310948864],[-118.20824230827208,49.32561054797031],[-118.20848380343064,49.325521357589416],[-118.20872440242006,49.32543747082739],[-118.20899616176806,49.32540451156401],[-118.2092653084309,49.3253665459733],[-118.20953317113306,49.32532594272248],[-118.20979389972536,49.32526615370486],[-118.21006314962607,49.325237808881354],[-118.21033801101028,49.32522742473103],[-118.2106137332434,49.32522218136416],[-118.21088917016507,49.32521862783681],[-118.21115696897012,49.325260342605006],[-118.21139028494905,49.325352762952825],[-118.21160043159195,49.325469817425905],[-118.21180683338495,49.32558858334405],[-118.21201167037142,49.32570638454528],[-118.21224049139028,49.32580497827194],[-118.21247874682096,49.32589888477569],[-118.21272349348703,49.325985057327955],[-118.21297453395947,49.3260544187675],[-118.21323929970299,49.32609365412503],[-118.21351589541398,49.32610374896929],[-118.21379495334192,49.32610949422981],[-118.21405981514091,49.32614816405896],[-118.2142700656674,49.326264658632425],[-118.21446064800372,49.32639528514966],[-118.21464573101365,49.3265277771012],[-118.21482863515041,49.32666294494545],[-118.21500589813553,49.3268008190688],[-118.21517003117354,49.326944805582514],[-118.21533392840352,49.327090196135096],[-118.21549593032698,49.327236581049455],[-118.2156525263331,49.32738427696165],[-118.21580338755638,49.32753523384084],[-118.21594158925888,49.32768951252259],[-118.21606675275032,49.32784935817485],[-118.21618063251049,49.328014616988746],[-118.21627834180929,49.32818351437467],[-118.21636528601866,49.328354748012],[-118.21643112453181,49.328528131907184],[-118.21646324162568,49.328706719859085],[-118.21648639591469,49.32888720406099],[-118.2165414711884,49.32906291519714],[-118.21667764022743,49.32921903698867],[-118.21681385844776,49.32937487234185],[-118.21695358834113,49.3295303908178],[-118.21709160978854,49.32968579460059],[-118.21723138830498,49.32984103535965],[-118.21736941311724,49.329996429770866],[-118.2175073438424,49.33015238748581],[-118.217643567596,49.33030822157609],[-118.2177814519127,49.33046446509881],[-118.21790653574371,49.330624862528644],[-118.21800268916685,49.330792802431866],[-118.21808973964987,49.33096347049835],[-118.21817128996844,49.33113600441341],[-118.21824766882209,49.33130845424524],[-118.21829023252519,49.33148665429468],[-118.21833288854532,49.33166430865383],[-118.21837374494459,49.33184238517451],[-118.21840245589144,49.3320207248638],[-118.21838249633987,49.332200636214694],[-118.21837121677245,49.33238033266045],[-118.21836164661042,49.332560143512424],[-118.21835036687466,49.332739839859194],[-118.21833738056148,49.332919403811104],[-118.21832263788467,49.33309913054174],[-118.21830447907121,49.33327861041959],[-118.21828632011712,49.333458090246175],[-118.21826987055474,49.333637684478646],[-118.21825688216992,49.33381725712438],[-118.21825072734242,49.33399731438374],[-118.21825463070819,49.33417923903205],[-118.21824501146202,49.33435933561872],[-118.2181865190491,49.33453193572839],[-118.21808076599952,49.33469772620462],[-118.2179581667868,49.334860887109826],[-118.21784235225248,49.3350248187529],[-118.21771818352323,49.33518702404702],[-118.21759406218997,49.33534894293105],[-118.21748161457253,49.33551339817558],[-118.21739607035971,49.33568235029158],[-118.21734070575087,49.335856878020785],[-118.21730375435057,49.336034990468775],[-118.21727856942638,49.33621509379686],[-118.21725675379277,49.336395721187756],[-118.21723161525023,49.33657554712494],[-118.21720481664536,49.33675496336255],[-118.21718836021253,49.33693456548962],[-118.21718704168343,49.33711667368802],[-118.21723169190508,49.33729275987497],[-118.21740270016302,49.33743724335345],[-118.2176551762475,49.337498488932106],[-118.2179316297932,49.33748931821008],[-118.21820554989108,49.33746440973717],[-118.2184771860135,49.33743253636955],[-118.21874534566068,49.33739051567078],[-118.2190105122664,49.33734573408716],[-118.21928333654023,49.33731705902857],[-118.2195554999835,49.33729230102853],[-118.21982871233661,49.33727157452437],[-118.22010287867374,49.33725544302056],[-118.22037804581774,49.337243629226414],[-118.22065269415167,49.337234891690244],[-118.22092867361874,49.33722851297814],[-118.22120447811399,49.33723342878928],[-118.22148096421006,49.3372548162067],[-118.22175646311652,49.3372820616696],[-118.22201670674936,49.33732801396282],[-118.22218663391514,49.33746873499448],[-118.22236775486142,49.33760459638729],[-118.22255466016888,49.33773691863012],[-118.2227416600013,49.337868685954376],[-118.2228983632689,49.33801608279393],[-118.22304188464743,49.3381698881106],[-118.22320973448605,49.33831271125384],[-118.22338711520794,49.33845028300425],[-118.22356819527917,49.33858642841674],[-118.22375306966988,49.33872058395931],[-118.22395401342425,49.33884146784284],[-118.22418870804032,49.338936495457816],[-118.22442349856584,49.339030959035405],[-118.22465013689788,49.339132764427404],[-118.22486857788009,49.339242180021905],[-118.22508498312047,49.33935342180456],[-118.2253153710165,49.339453513454906],[-118.22555002481111,49.33954881531399],[-118.22579405468468,49.33962952009306],[-118.22606549373647,49.33966042569143],[-118.22633716820238,49.3396899352352],[-118.22660548792847,49.339729097378935],[-118.22687523313256,49.339770063722895],[-118.22715090363961,49.33980664953573],[-118.22740288726695,49.339870949119074],[-118.22761422338105,49.339981538681855],[-118.22780438152684,49.340115215975956],[-118.2279947757748,49.340247497534556],[-118.22818938911762,49.34037526663412],[-118.22837257572141,49.34050929067785],[-118.22853494894811,49.34065397151132],[-118.22868779195288,49.340803912565896],[-118.22884623238527,49.34095142337651],[-118.22902179002746,49.34108970291222],[-118.22921636154037,49.341217756234],[-118.22943292652292,49.341328157130555],[-118.22963935128193,49.34144744075971],[-118.22983971073143,49.341571944769065],[-118.23002869006356,49.34170242658035],[-118.23020701264632,49.34184485930666],[-118.23029905163285,49.34200681642973],[-118.23027367903256,49.342188316548835],[-118.23024498285409,49.342369015618864],[-118.23021656959627,49.34254803302717],[-118.23018136924372,49.34272628024703],[-118.23013762813902,49.34290390240074],[-118.23008709826732,49.343080763295596],[-118.23003818303906,49.34325830190535],[-118.22998086693185,49.343434383570354],[-118.22989678044186,49.34360513944357],[-118.22978592179591,49.343770578411345],[-118.22967677229877,49.34393613149959],[-118.22961973564882,49.344110540139795],[-118.22965523788871,49.344289921020724],[-118.22977019612472,49.3444492848058],[-118.22975444389913,49.34462497795448],[-118.22963413284762,49.34478491863916],[-118.22948386984297,49.3449378825883],[-118.22935676983603,49.345097052715005],[-118.22923778807638,49.34525935223561],[-118.22912374264689,49.345423139352285],[-118.2290129717945,49.34558801356562],[-118.22890704394626,49.34575492996847],[-118.22880282383991,49.34592196945916],[-118.22867429199805,49.346079342669],[-118.22849063762469,49.34621490468103],[-118.22827320791552,49.34632511618831],[-118.22804237717627,49.346422482686435],[-118.22780817512465,49.346519324897294],[-118.22758774869756,49.34662677504105],[-118.227369984924,49.346738943535996],[-118.22715820740459,49.34685663147946],[-118.22696708473956,49.34698515222545],[-118.22680464282291,49.347128190197346],[-118.22666447252188,49.34728273007288],[-118.22653702637106,49.34744385519509],[-118.22641276287267,49.347606613080686],[-118.22628370133084,49.34776705104717],[-118.22614200566109,49.34792035769765],[-118.225973477154,49.348058428833724],[-118.22575137879642,49.348165465484946],[-118.22551374597825,49.34826205591459],[-118.2252648460126,49.34834340186894],[-118.2250450184692,49.34844720610269],[-118.22486457135201,49.348584135077076],[-118.22468569158147,49.34872201886328],[-118.22451483521337,49.348863595750245],[-118.22437640736028,49.349017978280116],[-118.22425744481234,49.34917999409163],[-118.22414655419314,49.349345416958],[-118.22404069368376,49.34951177309815],[-118.22393981659849,49.34967933980656],[-118.22384553965948,49.3498487860228],[-118.22374636977715,49.35001647577721],[-118.22363404860434,49.3501801019749],[-118.22350686737725,49.35033954126203],[-118.22337308734018,49.35049708280239],[-118.22323935162409,49.350654355805155],[-118.22310889212193,49.35081270708841],[-118.22298982705071,49.350975275631],[-118.22289991464777,49.35114957185825],[-118.22266997858691,49.351231150007656],[-118.22240332164236,49.35128432955952],[-118.22240321171365,49.35904071036363],[-118.22192801208828,49.35899679188586],[-118.22165452886266,49.35897734347832],[-118.22138019969485,49.35896291216845],[-118.22110524475,49.35894193475816],[-118.2208328467567,49.358916053275244],[-118.22056324262903,49.358883863474595],[-118.22029717487862,49.35883070743754],[-118.22002701920967,49.35881204724743],[-118.219752736978,49.35883836380188],[-118.21949463613143,49.35890206093583],[-118.21924761424737,49.358982110871445],[-118.21900059000059,49.35906216917792],[-118.21885064766977,49.35911018961947],[-118.21845790394713,49.35911068544353],[-118.21818200635526,49.35909529081233],[-118.24350789867854,49.400000028229044],[-118.24554417198965,49.403290407800874],[-118.25602405262572,49.403290123784295],[-118.25686571236992,49.40648285585879],[-118.25820115500515,49.410818439159854],[-118.26136458199318,49.414747602496575],[-118.26426729576966,49.41668462400947],[-118.26523834106793,49.417254899404064],[-118.26988942639895,49.41901294143772],[-118.27347758855556,49.4199233014911],[-118.27454264227629,49.42191679073572],[-118.27261223958646,49.42260400657735],[-118.26981296441201,49.423183990654096],[-118.26500553797634,49.42433481660103],[-118.26062364192482,49.42765218314099],[-118.25888495760626,49.43164803489186],[-118.25864759249063,49.436275388348896],[-118.25655461829177,49.440726383542035],[-118.25314485282048,49.44261969496606],[-118.25535781903194,49.447182036513865],[-118.25930971157892,49.448826764650484],[-118.2638910397971,49.453905033022515],[-118.27075462036399,49.46050992287034],[-118.27568269766705,49.465353993930016],[-118.27577781655478,49.46734862691454],[-118.27832634673582,49.468774165123655],[-118.28027769346048,49.471279849820384],[-118.27940097769444,49.47328081888777],[-118.28003672513967,49.47858533969866],[-118.28312540161458,49.48365937523352],[-118.28366541864978,49.486395028052414],[-118.28456108758863,49.49073311277701],[-118.28414490272938,49.49478521402783],[-118.28153269259484,49.499930659948824],[-118.28135527045909,49.50107024158266],[-118.27646168906219,49.505992753430625],[-118.27481096638145,49.50895993769529],[-118.2743862595693,49.51346953604108],[-118.27563759908068,49.51866331802322],[-118.27697837363613,49.524483352674835],[-118.27688864348899,49.52476937893068],[-118.2742585888729,49.52637129430514],[-118.27057467571365,49.52837527833134],[-118.26338841528984,49.53204124878604],[-118.25875170589556,49.5358196379742],[-118.25805328078464,49.53798587834062],[-118.2571807268136,49.54192652005857],[-118.25631795021685,49.54729156370134],[-118.25581451109652,49.55134850808176],[-118.25476201036321,49.55231624653243],[-118.25055569001333,49.554268734853125],[-118.24519624261181,49.55621712040017],[-118.24282985460835,49.559530826728796],[-118.24257799810003,49.56192636754265],[-118.24285682279194,49.5688312736625],[-118.24411747962418,49.57510955933945],[-118.2449097480476,49.57938924559367],[-118.24809810189318,49.583149751636405],[-118.25134693346942,49.58548455483926],[-118.25328944523379,49.58839269428477],[-118.25304127661026,49.59010967582364],[-118.25173150287317,49.593418716750655],[-118.25147391081907,49.597414389854364],[-118.25228307373301,49.60061189826577],[-118.25308321845137,49.60534601394289],[-118.25108309077436,49.61191495510346],[-118.25002929292543,49.61345777878185],[-118.24900015841304,49.61979346675046],[-118.24689498240147,49.624589579640485],[-118.24250179769247,49.62785160158441],[-118.24058155058898,49.630479943112235],[-118.23970781456897,49.63481880839801],[-118.23972573568385,49.641208318353925],[-118.24078356717735,49.64326576603627],[-118.24212938259345,49.649544283133224],[-118.24224027023617,49.65810073085348],[-118.24207762146612,49.66226859657688],[-118.24497755698839,49.66398022292587],[-118.24779712972192,49.664604117258065],[-118.25229029921707,49.665051621647684],[-118.25528792607619,49.66544708761462],[-118.2631391175767,49.66588936619477],[-118.2686836770832,49.66588573426344],[-118.2714189297608,49.66668111601281],[-118.2723936260847,49.66924278648898],[-118.27363424413198,49.67295384275708],[-118.2767388264063,49.67660122944048],[-118.27744173855876,49.677803179886865],[-118.27630779585877,49.680313151645336],[-118.27614283049739,49.68385170859379],[-118.27527419392793,49.688587142363716],[-118.27512285110689,49.69510005708993],[-118.27574430684201,49.69777722984053],[-118.27442981996107,49.69904095370676],[-118.27267080638212,49.69864383736878],[-118.27037886549701,49.69876126343141],[-118.27011033556037,49.700928955470665],[-118.2698589838508,49.702582135533405],[-118.27012826867163,49.70560976042241],[-118.2703093144248,49.70949007663358],[-118.27111662372805,49.71131411155792],[-118.27245076776762,49.71439479657632],[-118.27509674265305,49.71656213010579],[-118.2771302418223,49.71781557894944],[-118.27731680016032,49.718445212972945],[-118.27653436951202,49.72192330497924],[-118.2763690834323,49.725462771706],[-118.27751746212942,49.72865674619526],[-118.27867366175671,49.730483366838435],[-118.27983359534535,49.733280004664884],[-118.28027218734768,49.737044924187174],[-118.28108610027698,49.74023990301195],[-118.2840885335239,49.742290182335644],[-118.28717275324044,49.74228562930634],[-118.28709115159864,49.74194226879358],[-118.28964571919819,49.741768892413866],[-118.29450455486514,49.74381757200681],[-118.29397949653945,49.74627059547673],[-118.2925844294058,49.74866931409719],[-118.29091633585658,49.750782896874895],[-118.28951265235368,49.752899940806415],[-118.28872454621451,49.75484178999584],[-118.28872936348972,49.75729502388266],[-118.28882553625796,49.760034052510385],[-118.29078199099717,49.76299877231894],[-118.29299326280017,49.76453679394625],[-118.29325284231786,49.76465300637166],[-118.29449807806037,49.766705512806645],[-118.29317682467,49.76899408315734],[-118.29115526094495,49.771047006544684],[-118.28657820948716,49.7744250931398],[-118.28376056058121,49.77870807399931],[-118.2842139500306,49.782306937245814],[-118.28501770402406,49.785898945497635],[-118.28680391559426,49.79194433771247],[-118.28751373828182,49.79303443080589],[-118.28874995242698,49.79348894988124],[-118.29238000062124,49.79399478823065],[-118.29715051579302,49.79461285837937],[-118.30086896954114,49.79592074097152],[-118.30016502782317,49.797693251569605],[-118.29840712166686,49.79900560120126],[-118.29637885986357,49.801919809125714],[-118.29602747946535,49.80375398438102],[-118.29710205079199,49.80574839917599],[-118.29904020870165,49.806599563007346],[-118.30284363381813,49.806995098670484],[-118.30584465848212,49.80767530475148],[-118.30585580950456,49.80818946421155],[-118.30745520781649,49.811550014759796],[-118.30896766697673,49.81434973846351],[-118.31109107908152,49.815597612912136],[-118.31303749836998,49.81582261732492],[-118.31639892845101,49.81627518989932],[-118.32099442441674,49.81695146563613],[-118.3233757275581,49.81774856197744],[-118.32620980418297,49.81951033181733],[-118.32763422625975,49.82076343177399],[-118.32868590699398,49.82099183062615],[-118.33152777827982,49.82121225947115],[-118.3369149217838,49.821089291832486],[-118.34486872148916,49.82107746925169],[-118.35369978075299,49.82208488959425],[-118.35699671000526,49.822384067065315],[-118.35751283526923,49.82556124551994],[-118.35750292470402,49.825714319732036],[-118.35750678552613,49.82585818395422],[-118.35749687487646,49.82601125810271],[-118.35750096531072,49.826164183620904],[-118.35747753929998,49.82627277494527],[-118.35738509141255,49.82648055434707],[-118.35737550412802,49.82664212646721],[-118.357377663211,49.826723124309865],[-118.35737812238034,49.82674124700568],[-118.35737959421344,49.82679505185612],[-118.35738152372478,49.82686698833543],[-118.35738609986846,49.82697528236584],[-118.3574170181367,49.82714535778685],[-118.35742159439208,49.82725365177402],[-118.3574237535854,49.82733464954715],[-118.35742816781585,49.827496072892004],[-118.35743225815332,49.82764899809803],[-118.35743464698503,49.82773905716186],[-118.35744066851343,49.827963909744916],[-118.35744668860372,49.82818877119779],[-118.3574377899928,49.82837752692291],[-118.35743029421964,49.828557905623406],[-118.35739237887277,49.82871127636327],[-118.35732701132127,49.828882512560924],[-118.3572777384957,49.82907239816096],[-118.35725313558142,49.829198436222605],[-118.35721475998031,49.82933368413398],[-118.35719038631369,49.829468783449954],[-118.35719185801393,49.829522588099586],[-118.35718047382574,49.82962185680418],[-118.35717251771693,49.82978411255639],[-118.35716283465923,49.829946247150204],[-118.3570974659849,49.83011747397767],[-118.35703349985833,49.83028032377599],[-118.35696780636619,49.83044305237609],[-118.35686160229307,49.8305972862786],[-118.35675367058296,49.830751398917634],[-118.3567008306672,49.83086867226388],[-118.35664962307071,49.83098662992525],[-118.35659894203117,49.83118489160038],[-118.3566010999552,49.83126588894877],[-118.35653745424528,49.83143723625852],[-118.35645775451717,49.83160011276427],[-118.35637978118122,49.8317631103085],[-118.35636724762412,49.831817072190944],[-118.35634140085314,49.83189835743319],[-118.35630302029843,49.83203360451919],[-118.3561839541833,49.83223329227409],[-118.3560891019632,49.83235101036062],[-118.35599611122869,49.83247847399253],[-118.35591549046413,49.83260510476087],[-118.35590681401005,49.832802920481974],[-118.3558998629877,49.83300086622908],[-118.35586285610806,49.83319048057618],[-118.35578246302414,49.833326172390045],[-118.35568979309858,49.83346213362855],[-118.35559654193042,49.83364327994393],[-118.35549110792167,49.8338241323938],[-118.35538387976906,49.83394268232237],[-118.3552750183825,49.83406054774907],[-118.35518280384085,49.83421463093709],[-118.35511641060492,49.83435017376878],[-118.35501087870551,49.83453158880539],[-118.35497079510725,49.83460396044103],[-118.35494687030595,49.83475718077616],[-118.3549229453446,49.83491040107358],[-118.35489902022319,49.835063621333354],[-118.35490538102698,49.83523423439514],[-118.3549101510527,49.83541434179026],[-118.35491547377124,49.83561200839845],[-118.35490555235157,49.83576508024486],[-118.35490940586314,49.83590894255668],[-118.35487101771973,49.83604418838961],[-118.3548341273422,49.83617049410585],[-118.35482204901149,49.83624257795018],[-118.35482512204072,49.83635981075758],[-118.35482828796187,49.836476489261194],[-118.35484784245781,49.83668307749619],[-118.35487924641922,49.836808520656994],[-118.35489632408085,49.836925605109414],[-118.35490118712372,49.83710515779933],[-118.35490233285839,49.83715046391296],[-118.35490618647641,49.83729432594917],[-118.35488235442924,49.83744698247603],[-118.35484321346041,49.83749285449881],[-118.3546104856774,49.83763029650424],[-118.35448659818279,49.83771262713021],[-118.35441977061879,49.83776729339295],[-118.35437821459082,49.83778586041992],[-118.35415971768326,49.83793221442791],[-118.35402547717779,49.83808674031082],[-118.35394552798319,49.83824055227715],[-118.35393413459242,49.83833981944619],[-118.35393899551175,49.83851936288759],[-118.3539319422259,49.83871786122625],[-118.35393725960844,49.838915535918865],[-118.35395727056512,49.83914023707534],[-118.35394881188681,49.83934712098974],[-118.35395458885678,49.839562908958136],[-118.35392896090165,49.83965326289251],[-118.35386428332629,49.839788925115215],[-118.35378364379962,49.839915553031844],[-118.35364939621222,49.84007007802958],[-118.35361100086045,49.84020532264206],[-118.35361599522273,49.840394490039834],[-118.35360707845325,49.84058324226501],[-118.35361357122157,49.84076346955984],[-118.35361696327217,49.84088920856635],[-118.35362182172031,49.84106876032905],[-118.35364036416217,49.84123965705328],[-118.35364522423764,49.84141919978795],[-118.35366523335702,49.84164390916012],[-118.35369925013453,49.841868461411565],[-118.35370332930474,49.84202138371568],[-118.35370740850215,49.84217430598737],[-118.35368324658762,49.84231846328208],[-118.35354944943015,49.84249110996028],[-118.34554068146969,49.855151842851534],[-118.35267594821089,49.875131137546646],[-118.35522516594098,49.89080938795117],[-118.35519202052177,49.89082967706517],[-118.3549940322168,49.89095656555742],[-118.35479777350737,49.891083565878745],[-118.35460777357228,49.89121496588757],[-118.35443692861334,49.89135732196738],[-118.35430379351311,49.89151474706936],[-118.35421565737352,49.89168550898329],[-118.3541581785806,49.891861240727174],[-118.35411434567713,49.892039059093314],[-118.35406023152183,49.8922155872599],[-118.35399756374169,49.892390955312436],[-118.35393325923414,49.89256564788428],[-118.35387231974191,49.89274113694272],[-118.35381137978212,49.89291662592503],[-118.35377964939092,49.89309529204427],[-118.35377039931565,49.89327553324695],[-118.3537211881965,49.89345410503846],[-118.35356570967288,49.89359865828567],[-118.35336261151204,49.89372461666664],[-118.35320235816988,49.893876757872],[-118.3530564908157,49.89404742606948],[-118.35293598939307,49.8942441740472],[-118.35313626565552,49.8942497330796],[-118.35341171656766,49.89422437224355],[-118.35368991591224,49.89421390958977],[-118.35396960566835,49.89421541698069],[-118.3542466286269,49.8942223895983],[-118.3545818020597,49.89421647706905],[-118.35479973735956,49.894241919833675],[-118.35507661511112,49.89426018570338],[-118.35535414999335,49.89427453542881],[-118.35563046576124,49.894296152161616],[-118.35590453225944,49.894331177262266],[-118.35617069237045,49.89438204539328],[-118.35643572988266,49.89443960847191],[-118.35669684005015,49.89449972669705],[-118.35695738859543,49.89456319656565],[-118.35721555177417,49.89463046015278],[-118.35747315493909,49.89470106645867],[-118.35772664350327,49.89477534540478],[-118.35797601750765,49.89485329701853],[-118.35822464423427,49.89493570881752],[-118.35846906204803,49.89502235650484],[-118.35870726279137,49.89511478175051],[-118.35894097587799,49.895213105675325],[-118.35916875083294,49.89531554449675],[-118.35939414235699,49.89542176827798],[-118.35961570142777,49.89552998429029],[-118.35983688680638,49.895640434692204],[-118.36005634386876,49.895750763566326],[-118.36027972991845,49.89585853606836],[-118.36051899049008,49.896017732892],[-118.36071000233811,49.896078586249864],[-118.36094793134248,49.89617268710128],[-118.3611736129815,49.896277226485594],[-118.36139690981778,49.896385559815776],[-118.36160650873667,49.89650254800839],[-118.36180002693554,49.89663196769222],[-118.36197793049429,49.896771038783136],[-118.36214269809396,49.896915412667894],[-118.36229961389334,49.89706488036581],[-118.36244741445624,49.89721654071797],[-118.362593111927,49.8973703146728],[-118.36273525705747,49.897524409541866],[-118.36287913410891,49.89767861627425],[-118.36302291773059,49.89783338596934],[-118.36316132659495,49.89798890982647],[-118.36329599574037,49.898145872062855],[-118.36342683374185,49.89830481799652],[-118.36355201518711,49.89846619875468],[-118.36366999782229,49.89862877591925],[-118.36377867899513,49.898794654425565],[-118.36387469248945,49.898963038046965],[-118.3639651435555,49.89913329339583],[-118.36404839700326,49.899304736299804],[-118.36413155668554,49.899476742284115],[-118.3642057876103,49.8996498237852],[-118.36427090390062,49.899825089309076],[-118.36433256157713,49.900000112759564],[-118.36442940591242,49.900226210399055],[-118.36453080079824,49.90039383867211],[-118.36465599185648,49.900555217707534],[-118.3647944145109,49.90071073892214],[-118.3649458815764,49.90086151969727],[-118.36512937446756,49.90099871297017],[-118.36534531792509,49.90110934271737],[-118.36559179345294,49.90119441415046],[-118.3658297591147,49.90128850374097],[-118.36606552878725,49.90138526093587],[-118.36629709127666,49.90148624539622],[-118.36651677920409,49.90159544301762],[-118.36673015593884,49.901710981883724],[-118.36693951282072,49.90182963069481],[-118.36714667385647,49.90195094723964],[-118.3673482711391,49.90207414432667],[-118.36754767258682,49.90220000918208],[-118.36774497106985,49.90232798757112],[-118.36793605282779,49.9024617441621],[-118.36810067254034,49.90260722539179],[-118.36821714104853,49.902768549432416],[-118.36828363244238,49.902946167617706],[-118.36834264403284,49.90312665427944],[-118.36843541123307,49.90329367361105],[-118.36859204294777,49.90343463380847],[-118.36879757877782,49.90355527179205],[-118.36902181586244,49.90366874233173],[-118.3692362839514,49.90378830344699],[-118.36941652918944,49.90392412972418],[-118.36958106604082,49.9040701626843],[-118.3697378420381,49.90422074463465],[-118.36989480772534,49.90437019995969],[-118.37006145176483,49.90451411815624],[-118.37024581609643,49.90464627820766],[-118.370447247958,49.90477057763004],[-118.37066209773097,49.90488790985236],[-118.37088508480845,49.904998457429556],[-118.37111447938291,49.90510209942646],[-118.3713469131694,49.90519804872965],[-118.3716017923026,49.90526447248183],[-118.3718759824938,49.90530963487246],[-118.37213918620888,49.90536815565615],[-118.37239743270729,49.90543538247286],[-118.37265530726683,49.90550483460268],[-118.37291327540699,49.90557373187171],[-118.37317171128961,49.905639839411],[-118.37342968096934,49.905708735451675],[-118.37368077836574,49.90578732525011],[-118.3739228996631,49.90587772287684],[-118.37413678349539,49.9059904485854],[-118.37430901035228,49.906132487654574],[-118.3744603396886,49.906284371593244],[-118.37460044857825,49.90644056322251],[-118.37473883008792,49.90659662486881],[-118.3748903494357,49.90674739068198],[-118.37504935029908,49.90689528725212],[-118.37521784238572,49.907038763688],[-118.37539994232519,49.907174137154996],[-118.37559363748528,49.90730297633558],[-118.3757949070601,49.90742839185151],[-118.37599454212618,49.90755312297749],[-118.37619380424155,49.90768008859127],[-118.37639133757985,49.907806933016005],[-118.37656961025037,49.90794429766046],[-118.37672862070654,49.90809219155216],[-118.37687823466324,49.90824395094562],[-118.37702775536378,49.90839627329138],[-118.37717363172956,49.908549462314326],[-118.3773139438237,49.90870453255411],[-118.37745033028006,49.90886215012791],[-118.37757559011477,49.90902351253042],[-118.37766821601025,49.90919164013411],[-118.37772792791168,49.90936820470188],[-118.37776814257128,49.90954623864711],[-118.37775725376241,49.909726357024226],[-118.37771349550465,49.90990418047487],[-118.37765781408964,49.91008004094],[-118.3775697293833,49.91025081729428],[-118.37745644373665,49.91041530305231],[-118.37732323815459,49.910573315201255],[-118.37718348568312,49.91072860912073],[-118.3770452752519,49.91088514105589],[-118.3769203428854,49.911045991447864],[-118.37679550240168,49.91120628741579],[-118.37667220553453,49.911367812498234],[-118.37657738159167,49.91153698712429],[-118.37654063140188,49.911714729685784],[-118.37658968072314,49.91189225006998],[-118.3766985330535,49.91205755850415],[-118.37686896790689,49.91220002581852],[-118.37710930515263,49.912290858001455],[-118.3773781657348,49.91233676124435],[-118.37765703209479,49.912343795283725],[-118.37793183040573,49.91232284315664],[-118.37820442862831,49.91228365802958],[-118.37847071413337,49.91222989598128],[-118.378728862398,49.91216199947401],[-118.37897270089087,49.9120750157711],[-118.3791830587526,49.91195799317717],[-118.37937634737602,49.91182791323384],[-118.37956799758963,49.911697157924365],[-118.3797499215681,49.911561762253044],[-118.37992567212594,49.91142141351369],[-118.38010595814046,49.91128533326375],[-118.38031340873177,49.91116472350943],[-118.3805391898709,49.9110600799709],[-118.3807726839455,49.910961635762774],[-118.38101206977453,49.91086981541784],[-118.38125898323347,49.9107853028171],[-118.38151132058756,49.91071021207048],[-118.38177226238031,49.91064645627433],[-118.38203843996376,49.91059324862824],[-118.3823057877787,49.910543504430464],[-118.38257448976755,49.91049612410919],[-118.38284454895768,49.91045108977586],[-118.38311432657548,49.91040773541008],[-118.38338545997026,49.91036673596062],[-118.3836563118589,49.910327416475404],[-118.3839303437615,49.910290009387886],[-118.38420236571432,49.910254152631694],[-118.38447583624752,49.910220096514955],[-118.38474911955228,49.91018715716139],[-118.38502394564422,49.910155455240535],[-118.38529849039679,49.910125433271176],[-118.38557294213575,49.91009596486737],[-118.38584893672127,49.91006773387938],[-118.38612427795911,49.91004340879934],[-118.38640069442046,49.910023119218586],[-118.38667818617704,49.91000686512913],[-118.38695684892555,49.90999407438829],[-118.38723340651063,49.9099834061485],[-118.38751314457438,49.909974650176636],[-118.3877909657898,49.90996689031898],[-118.38806878691096,49.909959129756906],[-118.38834670205082,49.90995080529393],[-118.38862470970527,49.909941925868885],[-118.38890290397028,49.90993192828403],[-118.38918100401096,49.90992249319008],[-118.38946055462418,49.90991484970204],[-118.38973828254348,49.90990763916535],[-118.39001572959161,49.90990210857942],[-118.39029462579867,49.909898378531324],[-118.390573056013,49.90989743694742],[-118.39085148621587,49.90989649465609],[-118.39112972974331,49.909896669115895],[-118.3914088640646,49.9099019875318],[-118.39168622452537,49.90991792557051],[-118.39196069145386,49.90995118800331],[-118.39221661047154,49.91002215377148],[-118.39245495753647,49.910114503738114],[-118.39269952281055,49.910201064312126],[-118.39296324712467,49.9102567455053],[-118.39323542715151,49.91029323657051],[-118.39351157842007,49.91031642901035],[-118.39379015428582,49.91032510268346],[-118.39406797656416,49.91031732691768],[-118.39434621521974,49.910296574629115],[-118.39462066215275,49.91026708357532],[-118.39489267409047,49.91023120922475],[-118.39516543336012,49.9101908553982],[-118.39543482463709,49.91014970562038],[-118.39570603798104,49.910108121414474],[-118.39597715830482,49.91006709079836],[-118.39624855869727,49.910024378839],[-118.39651841360413,49.90998043719072],[-118.39678836200136,49.90993593167146],[-118.39705676637526,49.909890187537854],[-118.39732708674035,49.909843445748976],[-118.3975958630435,49.90979546535117],[-118.3978630027644,49.90974680062065],[-118.39813023441678,49.90969758097032],[-118.39839928800181,49.90964792685636],[-118.39866670497766,49.909597588419985],[-118.39893412136472,49.90954724932773],[-118.39919999362046,49.90949567166227],[-118.39946759528276,49.90944421378838],[-118.39973365278931,49.9093915173477],[-118.39999980365086,49.909338257050265],[-118.40006679688919,49.90932483341509],[-118.40033313191962,49.90927046376846],[-118.40059783027658,49.9092154098406],[-118.40086271441929,49.90915923779307],[-118.40112605432982,49.909101827210314],[-118.40138976639861,49.909042181036014],[-118.40165029814044,49.90898061272422],[-118.40190956443352,49.9089161341604],[-118.40216901638537,49.908850537498786],[-118.40242865397616,49.908783822737675],[-118.40268656082199,49.908716986965985],[-118.40294619689942,49.908650270966525],[-118.40320573829202,49.908584117556394],[-118.40346509406763,49.9085190720673],[-118.40372444761461,49.9084540348985],[-118.40398370799737,49.90838955138153],[-118.40424469762554,49.90832518761052],[-118.40450395654415,49.908260702851464],[-118.40476503861186,49.90819577461813],[-118.40502429606298,49.90813128861676],[-118.4052835527829,49.90806680199629],[-118.4055445387394,49.90800243510134],[-118.40580379399513,49.90793794723893],[-118.40606477848394,49.90787357909378],[-118.40632403227546,49.9078090899892],[-118.40658328533574,49.9077446002657],[-118.40684426762385,49.907680230247244],[-118.40710351921992,49.90761573928167],[-118.40736459242406,49.90755081373817],[-118.4077031267628,49.907472617884565],[-118.4079655572554,49.90741003724801],[-118.40822807940263,49.90734690170203],[-118.40849013450739,49.9072865637215],[-118.40875490541475,49.90723092672736],[-118.40902038069251,49.907181560060515],[-118.40929349599884,49.907159854590425],[-118.40957374734005,49.90717934047084],[-118.40985189658046,49.90720094034633],[-118.41012976605577,49.907224220227384],[-118.41040423171209,49.90725742765273],[-118.41066851912727,49.90730971397851],[-118.41092491706557,49.90737784704587],[-118.41117618185726,49.90745578752237],[-118.41142688754121,49.90753708884404],[-118.41167796791093,49.907616145649456],[-118.41193390444957,49.90768706559961],[-118.41219899537074,49.907745055932935],[-118.41247472955443,49.907781176602356],[-118.41275076423986,49.90778397415092],[-118.41302875396568,49.90777503279576],[-118.41330594417018,49.90776038301624],[-118.41358369251648,49.90774238003573],[-118.41386172053788,49.90772269563011],[-118.41413946843646,49.90770469124011],[-118.41441838783805,49.90769015885434],[-118.41469464668765,49.90768109306786],[-118.41497479286284,49.90768020968851],[-118.41525471457771,49.907691184034014],[-118.41553203309388,49.9077177937702],[-118.41579936138513,49.907762365353875],[-118.41605960157591,49.907828491723926],[-118.41631003966826,49.90791145361888],[-118.41654604399963,49.90800753807419],[-118.41676578943309,49.908117197173176],[-118.41696717696527,49.90824252797314],[-118.41715477983234,49.90837708373953],[-118.41733271135826,49.90851718017703],[-118.41748564320632,49.908670796124674],[-118.41757532707518,49.90883641473318],[-118.41761022652418,49.90901575442396],[-118.41761833925852,49.909198316058195],[-118.41762327171988,49.90937895661278],[-118.4176124461904,49.90955964218425],[-118.41756556897646,49.90973612374768],[-118.41749302010165,49.909909122193504],[-118.41741527895653,49.910081769020366],[-118.41733061837648,49.910253926179436],[-118.41724095142791,49.91042461419226],[-118.41714445718381,49.91059425822774],[-118.41704141388212,49.91076118648662],[-118.4169316354318,49.91092651645317],[-118.41681175530752,49.91108944455574],[-118.41668340828518,49.91125066309099],[-118.41655178764348,49.91141051466081],[-118.41642180244237,49.911571049429334],[-118.41629354646574,49.91173170418261],[-118.41617384652834,49.91189352285007],[-118.41606424828588,49.91205773419431],[-118.41597003458385,49.91222414450305],[-118.41591140930554,49.912397548467816],[-118.41588837282893,49.91257794614087],[-118.41588254562907,49.912760099848924],[-118.41588190743997,49.91294262299287],[-118.41586476867215,49.913129643004034],[-118.4158778796819,49.91331368177805],[-118.41601692401008,49.91345616862783],[-118.41597078298636,49.91357560970636],[-118.41545347857551,49.91483231597535],[-118.41535824316624,49.91523604252216],[-118.4151024942902,49.9166035992746],[-118.41467363709187,49.91934671679796],[-118.4146869028797,49.92111673213326],[-118.4157608511323,49.924254160986266],[-118.41576446883636,49.92465287477084],[-118.41622717992556,49.92750874451584],[-118.41667546606705,49.93070384374954],[-118.41669574210493,49.93184355510663],[-118.41606827519318,49.93207863843421],[-118.41324420430814,49.93305474964394],[-118.41147613266754,49.93391368201576],[-118.41219044606913,49.93567923846995],[-118.41326458792604,49.93721939504103],[-118.41514233430036,49.940242989159756],[-118.41630089224418,49.94337994954236],[-118.41604426777094,49.944751934803534],[-118.41579533207222,49.94691853138666],[-118.41492297337585,49.94954655562371],[-118.41377978711486,49.951781059543585],[-118.41380350531163,49.954917199846385],[-118.41487536708166,49.95748289924997],[-118.41461731753346,49.95919895212112],[-118.41506979227862,49.961024786356745],[-118.41384473418927,49.96400075352343],[-118.41110638926331,49.96537508764456],[-118.40872154054902,49.96731816867858],[-118.40829519190181,49.970460887739456],[-118.40918680215177,49.972174786790724],[-118.41177238297847,49.973651890579724],[-118.41549585170915,49.97461217185316],[-118.41638768543724,49.97489727405739],[-118.42002282905399,49.97563140939063],[-118.42348960432645,49.97653516888504],[-118.42817778695667,49.97709331507523],[-118.43031162317496,49.97657191377444],[-118.43207542411587,49.97583045350565],[-118.43685006573021,49.9737606283615],[-118.44047998700438,49.9726711290782],[-118.44402806221873,49.97283273683425],[-118.44625055370192,49.974138619749255],[-118.44669857829844,49.97464880542129],[-118.44936453692513,49.976409083145654],[-118.45265842470978,49.977259249148595],[-118.45451437580861,49.97748113927058],[-118.45949063824102,49.97850197804715],[-118.4613536078918,49.98003530962206],[-118.46287447443085,49.981518456389644],[-118.46519272011932,49.984706081021095],[-118.467615092414,49.98921410235885],[-118.46789198585765,49.99126755276443],[-118.46934385944071,49.99520287107203],[-118.46953809507288,49.999026144692614],[-118.46954541947487,49.99999804785048],[-118.46840869898757,50.001440488932914],[-118.46504318110964,50.00253392707918],[-118.45857994517591,50.00352627564962],[-118.45273761568315,50.00525504310548],[-118.44716167289393,50.006644201916444],[-118.44156634559016,50.006375960394315],[-118.433241719419,50.006405875242784],[-118.42696415601259,50.00972686652298],[-118.42698303793495,50.01281319783381],[-118.43010821452182,50.016795928510234],[-118.43447269192025,50.019744691058506],[-118.4400865297427,50.022526351838344],[-118.44310719838143,50.02394141998997],[-118.45057805197689,50.02636520430418],[-118.46194015140283,50.02792793548545],[-118.4651412176916,50.02809177889635],[-118.47419657581419,50.029772419416354],[-118.4827280197591,50.03173838180237],[-118.48958336767984,50.034336811332025],[-118.49269920576455,50.03586817220539],[-118.50001762307745,50.04017464252983],[-118.50103629238184,50.046503889365255],[-118.49707392193514,50.051025190408645],[-118.49609903727028,50.05148615844883],[-118.49248991807116,50.054290079964524],[-118.48249972475574,50.05991992997216],[-118.48178761864013,50.06031858205476],[-118.47294019613706,50.06480051990264],[-118.4687941196174,50.06760758400561],[-118.46605453314578,50.06938620124961],[-118.46206751461608,50.07173782518277],[-118.45357910027634,50.075470680069266],[-118.44620851111007,50.07720679299081],[-118.4406172578689,50.07745249359582],[-118.42356499742348,50.077328939945474],[-118.40669545396922,50.07703513566304],[-118.39941611589407,50.07745620213688],[-118.38671562822054,50.07760546868171],[-118.37934805339725,50.0792182722934],[-118.37934849817461,50.080303323576246],[-118.37972345061594,50.08258928440636],[-118.37974212562034,50.08641073220924],[-118.37762731402393,50.08920961840106],[-118.37479020385035,50.091035418092424],[-118.36751235808079,50.0915139876754],[-118.35490501628973,50.093251519503816],[-118.34602865356375,50.095783376272166],[-118.33919599994921,50.09927796089269],[-118.33067782406872,50.099179822025],[-118.31938938868467,50.098750808210774],[-118.31431465300084,50.09733327555918],[-118.30409128856405,50.09609846451458],[-118.29211599552727,50.09896929624853],[-118.2890995809473,50.103311970892655],[-118.29106785409111,50.10769875441861],[-118.29366497900097,50.1120290472007],[-118.29367951342863,50.11715609719167],[-118.29367962430575,50.11864473792788],[-118.2916564226439,50.12384108492328],[-118.29069719526458,50.128570166184964],[-118.2928350087489,50.13296012275089],[-118.29497954728096,50.134664882052995],[-118.29501042408857,50.13489706932168],[-118.2951650757473,50.13580820133448],[-118.29268175839816,50.137749169226254],[-118.28841812558626,50.13981253584466],[-118.28265031616918,50.14318458220402],[-118.28140484553576,50.144216003020496],[-118.27928142321436,50.147920434206604],[-118.27795634920761,50.15288531907205],[-118.27486762380268,50.1591078779677],[-118.27325997649989,50.160195127155454],[-118.26784507158922,50.162879883030705],[-118.2580657115348,50.166541946458544],[-118.25273984924539,50.16803758626203],[-118.25388700025793,50.17071653131146],[-118.25594731679465,50.17316313507559],[-118.2584492899054,50.17846428374233],[-118.2585528315577,50.18148267505787],[-118.25668022667706,50.18485232907313],[-118.25063915593118,50.18919507639111],[-118.24619238155331,50.19171047962924],[-118.24166581254084,50.19485250287245],[-118.23783756326681,50.1995882488084],[-118.23721710401598,50.199590195343895],[-118.23650735245968,50.20306884769119],[-118.23615876284553,50.206660031410884],[-118.23644279374821,50.21042530533442],[-118.24061956390452,50.213441918529945],[-118.24446270186691,50.21651616646571],[-118.246157827944,50.21953936140153],[-118.24946630394732,50.22261181150824],[-118.25276173766663,50.224034747875805],[-118.25606093286093,50.226424747659316],[-118.25669608406271,50.22773871582668],[-118.2591062390739,50.23252306574113],[-118.26062840367275,50.23640055934662],[-118.26125284368285,50.238108151669906],[-118.2611764458016,50.24119047883508],[-118.26028316710759,50.24558286034419],[-118.26262195183675,50.24922607763437],[-118.26556956076017,50.25310638740213],[-118.26673978135398,50.256409049900014],[-118.26844039974418,50.26205557394107],[-118.2701509326113,50.268718703235756],[-118.27141290082182,50.2761910316806],[-118.27142838684303,50.28212187434908],[-118.26984233903444,50.28965408530306],[-118.2691283234284,50.2908549985459],[-118.26566475522614,50.29672911353593],[-118.26370096290773,50.30134725789304],[-118.26470052176819,50.305569436199775],[-118.26711401431416,50.31052762028371],[-118.26693899698495,50.31600018395736],[-118.26676262256863,50.31628727750535],[-118.2605321296291,50.32114319059514],[-118.25598490813583,50.32713473576387],[-118.2586707183507,50.33067236530246],[-118.25805124293903,50.33329300577464],[-118.25876628877137,50.33711480447031],[-118.26145056931863,50.3396774916537],[-118.26770848898748,50.34069397715841],[-118.27484556130037,50.34045859229105],[-118.28154290465696,50.339652953327864],[-118.28895575882659,50.339125228191584],[-118.29414294363217,50.34020485649323],[-118.29629176253495,50.34442409590841],[-118.29765125391505,50.34995539062676],[-118.2977501117366,50.35343187123792],[-118.29704443579631,50.357478726816474],[-118.2951731798256,50.361476374615215],[-118.2943850539993,50.36501064783711],[-118.29455983275967,50.36655281812469],[-118.29564708307525,50.37111409358044],[-118.29735295560721,50.37396143121334],[-118.30012565911788,50.377438523087676],[-118.30057526584936,50.377953501741885],[-118.29468790826526,50.38474707946909],[-118.28746625215122,50.39023082936972],[-118.2781729544313,50.394578348943284],[-118.27523590605752,50.39577572111715],[-118.26799596454339,50.39664181969047],[-118.25467266906985,50.39682831124178],[-118.25288219368761,50.398596543919275],[-118.25609794102215,50.400475293014736],[-118.26191198487659,50.4013224599887],[-118.26799451181402,50.40217341691791],[-118.27202995472807,50.404394901130466],[-118.27140258691085,50.40673009197717],[-118.26899653360483,50.41175488789197],[-118.26839003933664,50.41751181724336],[-118.26892266881816,50.423726967493955],[-118.26893280322543,50.42515193605624],[-118.26884799090071,50.430344741237114],[-118.26849619104328,50.43593689957032],[-118.26540645528246,50.43710878431993],[-118.26526856423652,50.43703528891324],[-118.26516339551381,50.43694657454693],[-118.26512740067179,50.43688812920837],[-118.26511354943898,50.436865691451395],[-118.2650365120846,50.43683996099023],[-118.26486637976502,50.43677889708938],[-118.2646869737849,50.43669967467788],[-118.26452962143793,50.436615785663996],[-118.26442531134464,50.436563287624644],[-118.26428703104472,50.43653326956193],[-118.26399188683475,50.4365092190339],[-118.26371486095171,50.4365033847757],[-118.26355284685525,50.436374531771385],[-118.26328160875086,50.43621147417844],[-118.26285601154767,50.436225183185364],[-118.26251859896595,50.436251275099174],[-118.26233928563416,50.43621273182327],[-118.26223952509187,50.43619557737993],[-118.26211946139297,50.43618321120218],[-118.26190568569304,50.43611852584169],[-118.26160570063249,50.43600938598264],[-118.26129628537281,50.43594478148543],[-118.26109534651428,50.43592901934518],[-118.26092377166937,50.435917564071865],[-118.2606881261225,50.435897671169236],[-118.2605462223171,50.4358990320445],[-118.2604020983702,50.435954473335414],[-118.26018035240212,50.43602877566752],[-118.25998112035236,50.43608543683699],[-118.25968415277748,50.436164638917454],[-118.25928249443199,50.43628621447161],[-118.25887545335151,50.43643905845497],[-118.25846456866599,50.436614221229284],[-118.2581491235461,50.43673901237088],[-118.25791027049956,50.43676860565358],[-118.25767393551571,50.436793855172304],[-118.25758566884677,50.436884844402755],[-118.25753634379984,50.437006809958326],[-118.25726406811567,50.43718942915828],[-118.25683974815391,50.43736025557295],[-118.25636618471454,50.43740560730119],[-118.25594365066335,50.43740141752074],[-118.25567119641221,50.4373998431125],[-118.2555044056685,50.437401713693625],[-118.25543596995092,50.437398047643036],[-118.25539459063175,50.43741209663757],[-118.25530833224626,50.43743994931782],[-118.255265971822,50.43744940981038],[-118.25523989648664,50.43743628314644],[-118.25518599602792,50.43740990716689],[-118.25515817090569,50.437396657850215],[-118.25512453967174,50.43739656072338],[-118.25503516294731,50.43737051865958],[-118.25493176337247,50.43728191726805],[-118.25485674581269,50.437193045073],[-118.25479140156621,50.43713027863782],[-118.2546882151204,50.43705073127413],[-118.2545858947827,50.436966155293234],[-118.25452361078689,50.43692676211594],[-118.2544079469799,50.43687854733224],[-118.25413730117661,50.43680477124036],[-118.2537476514448,50.436763899616686],[-118.25332914225513,50.43677749999915],[-118.25294149459299,50.43681756036635],[-118.25266552672142,50.436856969958086],[-118.25242059432112,50.43696296082831],[-118.25211162970804,50.43713225775386],[-118.2518965765533,50.437157287987866],[-118.25180237415182,50.43704616894639],[-118.25176203238283,50.43699249346752],[-118.25166979326963,50.43699336616935],[-118.25151009846856,50.43699516774108],[-118.25132834910367,50.43700163276562],[-118.2510497834059,50.437004698483],[-118.25072112817294,50.43699012234299],[-118.25051463229147,50.436965472419175],[-118.25044325606075,50.43694803779144],[-118.25041816293974,50.43693949848549],[-118.25036370783917,50.43692664022949],[-118.25017859469646,50.43690122928839],[-118.24993410282414,50.43688126269949],[-118.24979646454254,50.43687838946717],[-118.24972977987926,50.43687484261249],[-118.24970314823705,50.43687523471801],[-118.24962684984195,50.43687609374841],[-118.2493898765524,50.436874162739],[-118.24908041085764,50.43688183587117],[-118.24888391238136,50.43690195157942],[-118.24883018595044,50.43691570169586],[-118.24876580963348,50.43689875692041],[-118.24855354869871,50.43685618030833],[-118.24831167402186,50.43683130441338],[-118.24821126179297,50.43682822013162],[-118.24820087842305,50.43683709172606],[-118.24816540087166,50.43683743243438],[-118.2480427230605,50.4368299567543],[-118.24782815453342,50.43680077607791],[-118.24761610408578,50.43676726089653],[-118.24740590070519,50.43673330537695],[-118.24717333524401,50.43669552070346],[-118.24687093505617,50.436631367070305],[-118.24656909490932,50.43655369253872],[-118.24643138573275,50.436510132152726],[-118.24638241695614,50.436465448885336],[-118.24633229918251,50.43637605675683],[-118.24609158853629,50.43629306986662],[-118.24566822469302,50.4362526237227],[-118.24546117543177,50.43624148444121],[-118.24531259448926,50.43626100598818],[-118.24493651967732,50.436305801006945],[-118.24462418783637,50.43634037905025],[-118.2445101035003,50.43635497139009],[-118.24445607087954,50.43636021884276],[-118.24433031549522,50.43637060206617],[-118.24412574273339,50.436386183340076],[-118.24402913827551,50.436391832510964],[-118.24395489576781,50.43640131100635],[-118.24380904325358,50.43642554190545],[-118.24373470517284,50.43643557400593],[-118.24371316537757,50.4364577910435],[-118.2436724129443,50.43649899860865],[-118.24365252584333,50.43652190113137],[-118.24355664765102,50.436554150130355],[-118.24329250886413,50.43663787466776],[-118.2430063138223,50.43672626059745],[-118.24284592001554,50.436773189477954],[-118.24277538589536,50.43679196714157],[-118.2426419724331,50.43681593985997],[-118.24233299365517,50.43688238574999],[-118.24193861537682,50.43697164466057],[-118.2416432646321,50.437051474955545],[-118.24151766985908,50.43710198418485],[-118.2414120772685,50.437139199225214],[-118.2411980932497,50.43716824354988],[-118.24098478212447,50.43719338441761],[-118.24080970801289,50.43718165234403],[-118.24060968347669,50.43712975876021],[-118.24041218099168,50.43707351302573],[-118.23999584323775,50.43699230003294],[-118.2393853614614,50.43688672123458],[-118.2390674484919,50.436840665463016],[-118.23899705623847,50.436827812069694],[-118.23891767606439,50.43684652658639],[-118.23870396587208,50.436925303388485],[-118.2383314740569,50.43696976801933],[-118.23802593804234,50.43688277016751],[-118.23793106582039,50.43681677905773],[-118.23790051711401,50.436798813888096],[-118.23782307794373,50.43675495589844],[-118.23773371092574,50.43672890880902],[-118.2376182268086,50.43672079680809],[-118.23737049971311,50.43667853611737],[-118.23701247494807,50.43658784801254],[-118.23675039954843,50.43650558976047],[-118.23667424515968,50.43647482015113],[-118.23665732566438,50.43647024162648],[-118.23661531592946,50.43645712066665],[-118.23657855545541,50.43644436847017],[-118.2364598309851,50.4364139888104],[-118.23635085226702,50.436275826572874],[-118.23624195829746,50.43606534358814],[-118.2359373143493,50.435983491194975],[-118.23575100504041,50.43605740789608],[-118.2357339537264,50.43615620691335],[-118.23565210169384,50.436148195864746],[-118.23556257923998,50.43608201774653],[-118.23552092441274,50.436046322015066],[-118.23550904612418,50.43603305781321],[-118.23547119465046,50.436006108531224],[-118.2354050127426,50.4359483500274],[-118.23536916985425,50.43589950304423],[-118.23536272187262,50.43581373327666],[-118.2353459862369,50.435674701871],[-118.23525871539204,50.43555444335281],[-118.23506578768142,50.43543071971748],[-118.2348548183488,50.435329448052066],[-118.23472071917398,50.43528556522692],[-118.23467742855378,50.435259354272766],[-118.23461506376735,50.43528209083519],[-118.2344820665195,50.43532416246461],[-118.23434465353326,50.43540207347053],[-118.23423505632613,50.43549324783182],[-118.23414549713105,50.43552989253483],[-118.23409223516286,50.43553066925937],[-118.23407095041769,50.43553086383419],[-118.2340159387439,50.43553151755593],[-118.23383537949226,50.4355515969267],[-118.2335882445573,50.43563931474854],[-118.2334069826392,50.43577630010073],[-118.23330252110557,50.43585822541727],[-118.2332339419567,50.43588617434967],[-118.23310335170717,50.43591428458601],[-118.23289898486978,50.43593889950326],[-118.23278109347793,50.435944742160615],[-118.23266453795121,50.43593259007841],[-118.23246643469669,50.43592092506504],[-118.23233111360595,50.435904633145704],[-118.23225332551662,50.43588334556564],[-118.23220422160776,50.43587029362137],[-118.23218457443315,50.435861002749256],[-118.23210637135068,50.43582160638947],[-118.23182614552981,50.43568043116622],[-118.23140813270497,50.435496238798095],[-118.23108174847314,50.43542753334347],[-118.23075625394722,50.435435718417274],[-118.23039789926885,50.43543934118444],[-118.23024278411813,50.435445384208734],[-118.23014422307487,50.4354418439242],[-118.22980073428027,50.435441420654236],[-118.22922340845386,50.43545167190157],[-118.22875066378982,50.43546136526113],[-118.22860089459873,50.43546721246794],[-118.22844850705741,50.43547796473623],[-118.22822290934658,50.43561521450192],[-118.22812549497455,50.43588181722196],[-118.22813131058622,50.43601217338953],[-118.22810138662166,50.43602136853406],[-118.22783455008063,50.43606926963364],[-118.2271735186303,50.43614368194109],[-118.2264909393089,50.43616854607292],[-118.22617582615757,50.43616784813176],[-118.22592116762063,50.436165752495576],[-118.22556096136499,50.43616979027948],[-118.2252940681845,50.43617700225349],[-118.22511175277208,50.436196944306474],[-118.22501360278834,50.436211508160994],[-118.2250009557628,50.43620270845597],[-118.22499169770728,50.436184546884164],[-118.22497658686619,50.43614901476126],[-118.2247294888624,50.435980211152525],[-118.22401680089347,50.435718194897944],[-118.22319485733799,50.43559650322681],[-118.2225883752224,50.4356114481545],[-118.22212158892044,50.43564809204572],[-118.22183094160826,50.43570051345349],[-118.22170024751655,50.43572917293973],[-118.22151711054292,50.43571289166337],[-118.22115608601341,50.43568069771234],[-118.22078703908434,50.43568465788429],[-118.22060415672664,50.435718112495096],[-118.22046378469591,50.435782248893055],[-118.22021271403422,50.43593350159676],[-118.21998554447892,50.43607966570695],[-118.2199192140032,50.43612527564007],[-118.21987321551701,50.436022597963536],[-118.21969617208097,50.43581747393627],[-118.21941855484505,50.435712608019074],[-118.21910369822626,50.43567970758739],[-118.21883507187503,50.4356150228477],[-118.21873132277156,50.435580036793795],[-118.21866420053092,50.43544592149405],[-118.21844389739694,50.435142829011546],[-118.21817540077838,50.43493408175833],[-118.21802965242122,50.43488595810439],[-118.2178950656967,50.43482449990062],[-118.21767606470755,50.43471867647389],[-118.21745670149961,50.43463542693357],[-118.21717759589104,50.434580178430636],[-118.21682888273568,50.43450758722435],[-118.21657306919242,50.43442007778248],[-118.2164239320516,50.43438132254886],[-118.2162295433985,50.43437892939426],[-118.2159432843155,50.434354804567306],[-118.21567585002867,50.43430376420677],[-118.21555714524793,50.43427336209997],[-118.21545206060848,50.43425635843585],[-118.21525151118956,50.434217929969925],[-118.21511579310268,50.43418350824417],[-118.21509148092328,50.434170495358856],[-118.21482045257522,50.43593114989428],[-118.20856413889126,50.43803384061428],[-118.20762122619111,50.44424396671914],[-118.21011310865043,50.44573946182066],[-118.21015529465788,50.44633455123192],[-118.21015070612128,50.446514457060644],[-118.2101408657896,50.44669400175456],[-118.21011887229008,50.44687212036578],[-118.21007928186857,50.447049559223835],[-118.20999593731868,50.44722392336775],[-118.20987369500484,50.44738762699106],[-118.20971390509501,50.44753287329687],[-118.20951949059986,50.44766324005978],[-118.20931515291602,50.447789526180244],[-118.20912384962047,50.44792237164],[-118.20894227080247,50.4480604312837],[-118.20876399927404,50.44819984476217],[-118.20858572509765,50.44833926686101],[-118.20840424043543,50.44847676290799],[-118.20823005554684,50.44862324371488],[-118.20803738067056,50.44875374000736],[-118.20779614752325,50.44883730362605],[-118.20753652377752,50.44890431084209],[-118.20726775087259,50.448962771562854],[-118.2069976155565,50.449018866595324],[-118.20672874532,50.44907787971481],[-118.20646571425154,50.449144083903334],[-118.20620550482475,50.449214445974214],[-118.20595084496127,50.44929366924404],[-118.20571447746075,50.44939000179771],[-118.20548560290949,50.44949420273541],[-118.20525779948211,50.44960243830239],[-118.20503456747261,50.44971495534773],[-118.20482115893255,50.44983211524201],[-118.20461572616296,50.44995435725205],[-118.20442488287846,50.45008440784493],[-118.2042629302205,50.4502317461521],[-118.20412042914747,50.45038950515223],[-118.20399329340377,50.45055059864868],[-118.20386965562294,50.45071194777833],[-118.20374932540396,50.45087465103845],[-118.20363229967523,50.451038726300666],[-118.20352042778178,50.45120372545046],[-118.20341011176065,50.45136996424719],[-118.20330329540629,50.4515364497977],[-118.20320163300062,50.45170385926989],[-118.20310677574753,50.45187288769769],[-118.20302203377115,50.45204488048709],[-118.2029441946554,50.452217929630564],[-118.20286810521449,50.452391102137966],[-118.20278851463395,50.45256402764228],[-118.20270221188191,50.45273478917082],[-118.20259704396828,50.452901950923746],[-118.20247145088884,50.45306429090737],[-118.2023458584549,50.453226621785475],[-118.20224438072596,50.45339292261893],[-118.20217888607776,50.45356627255657],[-118.20214081377149,50.45374495584432],[-118.2021218027438,50.45392610462939],[-118.20211533352176,50.454106447597134],[-118.20211071061064,50.45428636028695],[-118.20210589562242,50.45446738034523],[-118.20210642768683,50.45464821706028],[-118.2021104604834,50.45482930066926],[-118.20212003403732,50.455009084595844],[-118.2021385546973,50.45518836054601],[-118.20216621306311,50.45536603003868],[-118.20221565226198,50.45554070678911],[-118.20231409336624,50.4557086789017],[-118.2024343159645,50.45587365815405],[-118.20254714907502,50.45604038500911],[-118.20263801162557,50.45621120297262],[-118.20272498529961,50.45638401551773],[-118.2028176956632,50.45655440301507],[-118.20292741971708,50.45671864082527],[-118.20307524915043,50.4568674950582],[-118.2032741171695,50.45699790913121],[-118.20346725182456,50.45713073887088],[-118.20364288983839,50.457272513245634],[-118.20381648892176,50.45741583392],[-118.2039786184784,50.45756399536656],[-118.20411284745285,50.45771978943703],[-118.20422063346285,50.457885027565425],[-118.20430606102279,50.45805658981051],[-118.20437651592356,50.45823275512899],[-118.20443812282876,50.458408856918496],[-118.20448358847455,50.45858608044973],[-118.20450921808006,50.45876529522201],[-118.20453290381077,50.45894550285777],[-118.20457117467257,50.45912334885893],[-118.20462704882587,50.45930186644338],[-118.2047233694614,50.45947194488306],[-118.20487879823744,50.4596179319652],[-118.20506242030635,50.45975461566246],[-118.2052594602227,50.45988545599523],[-118.20545669326287,50.46001518855001],[-118.20567881529693,50.460134236420295],[-118.20589762930517,50.46025192960786],[-118.20603517162372,50.460398913537865],[-118.20610427336264,50.46057272116793],[-118.20613254168968,50.46075720098536],[-118.20613659118197,50.46093828307618],[-118.20611418790669,50.4611186304202],[-118.20605842503178,50.46129719568312],[-118.2059739661207,50.461467518676365],[-118.2058268617673,50.46162099581047],[-118.20566769544511,50.461772492515244],[-118.20556105633766,50.461937861755416],[-118.20547416708547,50.46211196352862],[-118.20541869153686,50.462288849283176],[-118.20540552114917,50.462467026881114],[-118.20541997593858,50.4626494027999],[-118.20546302085647,50.46283041321828],[-118.2055397090461,50.46300135639686],[-118.20567055417838,50.46315634700873],[-118.20584593302982,50.46329978687395],[-118.20602296616508,50.4634439124731],[-118.20617938942593,50.463594485754946],[-118.20633211721548,50.46374593725441],[-118.20647920835297,50.46389924206235],[-118.20661696471633,50.4640552876061],[-118.20674120976848,50.464217720906795],[-118.20685019266885,50.46438641861505],[-118.20695752161159,50.46455443909018],[-118.20707632347036,50.46471761808136],[-118.20721835995896,50.46486944416018],[-118.20739296712884,50.46500717622289],[-118.20759450578143,50.46513267665437],[-118.20781344653604,50.46524980270454],[-118.20803851071976,50.46536227938129],[-118.20826036543787,50.46547282988109],[-118.20848834506641,50.46557872204351],[-118.20872069722738,50.46567984140197],[-118.20895888325546,50.46577798132685],[-118.2091956089276,50.46587432733622],[-118.20943418392868,50.46597023354594],[-118.20967480171505,50.46606458360739],[-118.20991755667623,50.46615683273548],[-118.21016079700418,50.46624628601375],[-118.21040831370006,50.46633152006827],[-118.2106642861653,50.46640886988466],[-118.21092316933526,50.46647965333108],[-118.21118215079899,50.466549873533054],[-118.21148315339165,50.46662305275499],[-118.21120417850429,50.46659662355458],[-118.21092695478694,50.46657031697867],[-118.21064798055119,50.466543886379085],[-118.21036852382512,50.466520241455314],[-118.2100883895671,50.4665005074717],[-118.20980757770516,50.46648468442318],[-118.20952667008545,50.4664694143668],[-118.20924624708917,50.466451348295536],[-118.20896698359324,50.466426592436726],[-118.2086883983483,50.46639792423864],[-118.20841185528595,50.466367699740296],[-118.20813394720093,50.46633512744502],[-118.20785788786436,50.4663021151956],[-118.20758017563516,50.46626841624767],[-118.20730431062246,50.46623428628639],[-118.20702640415817,50.46620171121342],[-118.20674645776614,50.466170682083046],[-118.20647049798978,50.466137103746284],[-118.20619589183981,50.46609571933903],[-118.20592876515398,50.46604186220419],[-118.20566717377082,50.46597652531391],[-118.20540868729381,50.4659035058399],[-118.20515253468757,50.46582725125715],[-118.20489618782992,50.46575212133564],[-118.20463722072338,50.465681886402145],[-118.20437417210427,50.46561475298312],[-118.20411064107465,50.46555040528909],[-118.20384526244351,50.46548649615534],[-118.20358153776846,50.46542327245326],[-118.20331810501519,50.46535836916465],[-118.20305681101557,50.465291356044084],[-118.20279784941471,50.46522111678026],[-118.20254141388122,50.46514653506318],[-118.2022911996294,50.46506674150954],[-118.20204380279031,50.464980926598784],[-118.20180087505582,50.46488978537659],[-118.20156232198522,50.464793862636704],[-118.20132619923008,50.464694151251685],[-118.20109425602412,50.464590783647786],[-118.20086454799747,50.46448475268815],[-118.2006405781846,50.46437629643277],[-118.20041874751874,50.46426573055738],[-118.20020109802674,50.464151499620414],[-118.19999939820593,50.46403727234143],[-118.19978446249378,50.463907412036434],[-118.19958528280492,50.46377867177706],[-118.1993937857551,50.463646513582205],[-118.1992098736959,50.46351150011627],[-118.19904919933748,50.46336512632872],[-118.19890612157414,50.46320926333941],[-118.19876508526029,50.46305185363685],[-118.19861228757749,50.46290095422444],[-118.19843654583163,50.462759735505394],[-118.19825088959273,50.46262459677864],[-118.19805191521128,50.462494728311476],[-118.19784438802124,50.462373304833655],[-118.19762675416817,50.46225906858221],[-118.19739725989011,50.46215191382148],[-118.19715882829273,50.462055418669244],[-118.19691087491563,50.461972949892846],[-118.19664601949522,50.46191639843195],[-118.196366688105,50.46188199400618],[-118.19608638829315,50.461853170470036],[-118.19580754801767,50.46182614873354],[-118.19552812827705,50.46180246631898],[-118.19524841736957,50.46178046214171],[-118.1949687067348,50.46175845725918],[-118.19468928630283,50.46173478166171],[-118.1944107390857,50.461706077472876],[-118.1941328651037,50.46166329058132],[-118.19385528780023,50.461629003417684],[-118.19357870458744,50.46162981571864],[-118.19329980138158,50.461654193534386],[-118.19302187910479,50.46169332994557],[-118.1927495041084,50.461741336927865],[-118.19248112105099,50.46179696565973],[-118.19222237519374,50.46186852484096],[-118.19196489367307,50.46194300228282],[-118.19170195987518,50.46200805411247],[-118.19143113830556,50.46205729778254],[-118.19115515643529,50.46209543682501],[-118.19087586124502,50.46212204115673],[-118.19059500355883,50.46213723440149],[-118.19030675000165,50.46214399451652],[-118.19002334970435,50.46213301661489],[-118.18975364853029,50.462094185991596],[-118.18948713132593,50.46200642882533],[-118.18931006405069,50.46187300965452],[-118.18924861278137,50.4617065169735],[-118.18923645983489,50.46152146717665],[-118.18923004434888,50.4613339931101],[-118.18921020973056,50.46115236008976],[-118.1891998076573,50.46096743383158],[-118.18917443151521,50.46078709970987],[-118.18910432720406,50.460619425753656],[-118.18896129248044,50.46046354941912],[-118.18875807244869,50.460327711384664],[-118.18852482281241,50.46023213112163],[-118.18825939976261,50.460168746933206],[-118.18797385930695,50.46012936134621],[-118.18769086016381,50.460116144848826],[-118.18741487752031,50.4601339337802],[-118.18713949532301,50.46018905491644],[-118.18688123903519,50.46026798594403],[-118.18668154380352,50.46038721537726],[-118.18651220233276,50.460535709977755],[-118.1862837112,50.46063708357857],[-118.18603926565577,50.46072828907787],[-118.18578567395325,50.460810937571104],[-118.18552984216275,50.46088607759495],[-118.18527118674918,50.4609570669698],[-118.18500961152681,50.46102445936218],[-118.18474667305752,50.46108949479251],[-118.18448402413453,50.46115285961085],[-118.18421797115539,50.461215413691384],[-118.1839553223102,50.46127876831848],[-118.1836909206092,50.46134200749293],[-118.18342642190336,50.461405799716175],[-118.18316231062492,50.46146735871077],[-118.18289518349613,50.46152587432818],[-118.18262707995422,50.46157980927305],[-118.18235479242179,50.46162722814547],[-118.18208153020304,50.46167005738702],[-118.18180389006595,50.46170748680617],[-118.18152556582633,50.461738656589475],[-118.18124684957925,50.46176188782768],[-118.18096618503874,50.46177594042652],[-118.18068045952498,50.46177833417965],[-118.18039881444047,50.46176745550796],[-118.18012377725758,50.4617389630907],[-118.17985903751763,50.461671647452185],[-118.17961646443473,50.46157877841837],[-118.17939197462441,50.46146345734763],[-118.1792328303215,50.46131885724029],[-118.17916917885915,50.46114485086102],[-118.17912264203589,50.46096414483521],[-118.1790429446551,50.460790702748106],[-118.17895605315269,50.460617872601226],[-118.17885019993649,50.460452180664426],[-118.17871050798203,50.46029765504869],[-118.17853892223503,50.46015330318001],[-118.1783497374097,50.46001844567555],[-118.1781506375695,50.459889657416085],[-118.1779380223055,50.459767262196486],[-118.17770353275125,50.45966874902359],[-118.17744532591131,50.45960470912079],[-118.17716874508496,50.459564798701564],[-118.17688429037652,50.4595395903579],[-118.176605576098,50.45952212816612],[-118.17632336332747,50.45951458798867],[-118.17604202775428,50.45951218979768],[-118.17575894018367,50.45950967594191],[-118.17547672763241,50.45950213361205],[-118.17519548655528,50.4594890091369],[-118.17491463420733,50.45947365137874],[-118.1746350475716,50.45946120305602],[-118.17435254328906,50.45945533675975],[-118.17407081958275,50.459455166141176],[-118.17378841501429,50.45945890626374],[-118.17350688565791,50.45946779732231],[-118.17322613658733,50.4594823840692],[-118.17295239060496,50.45951781566277],[-118.17268351131345,50.45957618292317],[-118.17240840391878,50.459619427137994],[-118.17213125218237,50.459643875766695],[-118.1718502055544,50.45962962653865],[-118.17157596308522,50.45958647729134],[-118.17131027685527,50.45952472248324],[-118.17104478573064,50.4594618507562],[-118.17077482350228,50.45941448231995],[-118.17049727778169,50.459380136659355],[-118.17021798289785,50.45935583679673],[-118.16993713307241,50.45934046644321],[-118.16965414490346,50.45933737441572],[-118.16936999025738,50.45934097932021],[-118.16908797486711,50.45934247493448],[-118.16880761291863,50.4593344770332],[-118.1685303605547,50.45930862696805],[-118.16825806809858,50.45926447722886],[-118.16798947114535,50.45920928809078],[-118.16772194515276,50.459147954332785],[-118.1674544183314,50.45908662885558],[-118.16718572696067,50.459031991431836],[-118.16691314499236,50.458989517251965],[-118.16663793882424,50.458972278065694],[-118.16635582917472,50.45898449087773],[-118.16607216182135,50.45900564206484],[-118.16579034279196,50.45901618349893],[-118.16550813479901,50.459018786289064],[-118.16522592677352,50.459021388361734],[-118.1649447890724,50.459028016243444],[-118.16466413646144,50.459042027675416],[-118.16438542819412,50.45906521665828],[-118.16410574689836,50.45909398627408],[-118.16382917698624,50.45912523585694],[-118.1635507575698,50.45916709373807],[-118.1632749637072,50.45921421780421],[-118.16299965876878,50.45922803466387],[-118.16272698222106,50.45919627434729],[-118.16264130874903,50.459179469891986],[-118.16245634935129,50.4591426265906],[-118.16218455204968,50.45908549635441],[-118.16191032212693,50.45904232320015],[-118.1616321035298,50.4590118667447],[-118.16135125990104,50.45898630419565],[-118.16107041659036,50.458960740935275],[-118.16079200599,50.4589313897028],[-118.16051865210072,50.458893364860735],[-118.16025561077466,50.45883685049582],[-118.16001066081232,50.458747725549664],[-118.15976882634726,50.45865090143963],[-118.1595150282993,50.45857187884487],[-118.15925354747692,50.45849627046406],[-118.15898837198205,50.45843169097009],[-118.1587167730208,50.458393785814074],[-118.15844089120864,50.45839059920718],[-118.15815965646544,50.45840794297867],[-118.15787841959232,50.45843545651158],[-118.15759591798158,50.4584600589871],[-118.15731361437547,50.4584733650836],[-118.1570291692215,50.45848878772474],[-118.1567451148868,50.45850196819753],[-118.15646339564738,50.45850176182419],[-118.15624158495162,50.45848319482529],[-118.1415667260132,50.46047250194555],[-118.14157177656355,50.46048416188159],[-118.1415874000367,50.460546858001116],[-118.14157462501842,50.46060980476311],[-118.14154765301852,50.46067286344446],[-118.14152058260582,50.460736484691594],[-118.14149554883281,50.46080873092094],[-118.1414685766036,50.46087178956754],[-118.1414698104118,50.46092556122898],[-118.1414709474453,50.4609798865342],[-118.14147199331396,50.46102459504197],[-118.14150162439967,50.461078124999496],[-118.14154545576777,50.461131525162465],[-118.14156098109048,50.46119478381241],[-118.141548205852,50.46125773052081],[-118.14153543213882,50.46132066829307],[-118.1415512438137,50.461392427495085],[-118.14158087679571,50.46144594847724],[-118.14165281826601,50.461490615218054],[-118.1417513141868,50.461525307876194],[-118.14186585231703,50.46156961182466],[-118.14197873854377,50.46161322866131],[-118.14206497626157,50.46165722056791],[-118.14216366407118,50.461700958131374],[-118.14227820305176,50.4617452616449],[-118.14240528741108,50.4617887660192],[-118.14251925769263,50.46180590666057],[-118.14267436226201,50.46183105142131],[-118.14278814297882,50.461839137580256],[-118.14287244165145,50.46187395024089],[-118.1428735803968,50.46192827546782],[-118.14283435076787,50.4620006339857],[-118.14279355874616,50.46208193121424],[-118.1427669671107,50.46216309848037],[-118.14275457281688,50.46224415365395],[-118.14272973150733,50.46232544529681],[-118.14270313805292,50.462406621453],[-118.14267654606361,50.46248778866485],[-118.14263537382541,50.46255097739128],[-118.1425940132948,50.462605102970755],[-118.14256831423651,50.46265074033266],[-118.14254153057232,50.46272286222167],[-118.14251436893788,50.462776866777645],[-118.14251493810613,50.46280402936303],[-118.14251550727506,50.46283119194747],[-118.14251674238393,50.46288496346678],[-118.14250415928201,50.462956955416956],[-118.1425057738246,50.46302883531306],[-118.14246635293524,50.463092139410556],[-118.14242489337471,50.46314682746722],[-118.14238372018313,50.46321001604874],[-118.14239934572744,50.463272711842244],[-118.14245775749393,50.46334410784393],[-118.14251598128033,50.46340644069075],[-118.14253179524458,50.46347819956753],[-118.14250491426053,50.463550875020125],[-118.14246412180545,50.46363216304178],[-118.14242313793432,50.463704405785094],[-118.14238371633911,50.463767709800194],[-118.1423711312181,50.46383971058631],[-118.1424151560038,50.46390216440618],[-118.14248535166045,50.46394670606439],[-118.14257159433,50.463990697450356],[-118.1426296293565,50.464043976006586],[-118.14265964331165,50.464115613815196],[-118.14266106994609,50.46417843049695],[-118.14264819862706,50.464241930745395],[-118.14264943393259,50.464295702169295],[-118.14264962368873,50.464304756347204],[-118.14265142982885,50.46438568136863],[-118.14265285489957,50.46444850695924],[-118.14265428153506,50.46451132361517],[-118.142655230326,50.46455659449189],[-118.14265684516636,50.4646284742435],[-118.14261742309188,50.46469177826916],[-118.14254784918403,50.464755208768764],[-118.1425063881947,50.46480989674312],[-118.14250705571789,50.464836496684875],[-118.14250781463781,50.464872713372856],[-118.14250961898553,50.46495364726933],[-118.14252562477692,50.46503445124986],[-118.14256945963736,50.46508785967663],[-118.1425992860023,50.46515043431068],[-118.14260090077482,50.46522231401027],[-118.1425881274075,50.46528525159456],[-118.14256299604676,50.4653580513028],[-118.14256423128136,50.46541182265335],[-118.14257985783857,50.465474518250474],[-118.14265034263734,50.465527560236936],[-118.14272248144738,50.46558128022234],[-118.14282273929682,50.46561608722638],[-118.1429349687802,50.46563310295927],[-118.14302045576467,50.465640877255645],[-118.14309145609235,50.46564027202177],[-118.14318929579656,50.465648354385436],[-118.14326067590254,50.465665857367036],[-118.14333272408655,50.46570996021034],[-118.1433891999452,50.46577217695386],[-118.14341921781575,50.46584380547407],[-118.14342054723684,50.465907184586996],[-118.14342197342611,50.465970010049425],[-118.14342378101757,50.46605093489139],[-118.14345379756764,50.466122572307256],[-118.14351240618787,50.46620301272765],[-118.14358464386646,50.466256178462544],[-118.14364287296542,50.46631851049348],[-118.14370110066452,50.46638085141887],[-118.14375757943104,50.46644305899357],[-118.143829721022,50.46649677819868],[-118.1438739388681,50.46656829431495],[-118.14388956764488,50.46663098963804],[-118.14387660410281,50.46668488204146],[-118.14384944168155,50.46673888665916],[-118.14376712983572,50.46679406279082],[-118.14368297390799,50.46683950667829],[-118.14360066167518,50.46689468267971],[-118.1436161002242,50.46694832386926],[-118.14364379709905,50.46699267432859],[-118.1436735278877,50.467055811101254],[-118.14367476605246,50.4671095733966],[-118.14366374276986,50.46717264427413],[-118.14365068203826,50.467227090260025],[-118.14362332905635,50.46727204064314],[-118.14361055497392,50.4673349871152],[-118.14361198303351,50.46739780353439],[-118.14359892217433,50.46745224949899],[-118.14361416938812,50.467496845441175],[-118.14368660079586,50.4675590562347],[-118.14377323152931,50.46762115476862],[-118.14381551124106,50.4676834833557],[-118.14384524272496,50.46774662002835],[-118.14387507105488,50.46780920304345],[-118.14390490102816,50.467871777115924],[-118.14393472952351,50.46793436010535],[-118.14393567967066,50.46797963077918],[-118.14395130902193,50.468042325984136],[-118.14395149905499,50.4680513801178],[-118.14395254598392,50.46809609714048],[-118.14395349615235,50.46814136780517],[-118.14395473468034,50.46819513002527],[-118.14395578161582,50.46823984703986],[-118.14395692182568,50.46829417182756],[-118.14398656219156,50.46834769171023],[-118.14401601101953,50.46839216638143],[-118.14403183067614,50.46846391567199],[-118.1440189600635,50.468527415742464],[-118.14402194785715,50.46858131124691],[-118.14403757753658,50.46864400639301],[-118.14405320569877,50.468706710461646],[-118.14409567687908,50.46877809298378],[-118.14413942047142,50.4688320541873],[-118.14419727192718,50.46887628641044],[-118.14425531515467,50.46892956379473],[-118.1443135470682,50.46899190419747],[-118.14438423108209,50.46905399004439],[-118.14445618745339,50.46909865454769],[-118.14452824072475,50.469142765357574],[-118.14462665879827,50.46917800878027],[-118.14472730649292,50.469230922148405],[-118.14475675662709,50.46927539657451],[-118.14478639858581,50.46932891617876],[-118.14480155085211,50.469374065498684],[-118.14483100115284,50.469418539897326],[-118.1448745560208,50.46946344665221],[-118.14491664874632,50.46951672056215],[-118.14496030054748,50.46956107363359],[-118.14501834555635,50.469614350573806],[-118.14510488531535,50.469677001555205],[-118.14520359204597,50.46972074491186],[-118.14528965964979,50.469755670829805],[-118.14533321529946,50.469800577386025],[-118.14536266640239,50.46984505162019],[-118.14536361802207,50.46989032217487],[-118.14537905969105,50.4699439629205],[-118.14542204460257,50.469961707102264],[-118.14546375618909,50.46999688148326],[-118.14554972621335,50.47003236976206],[-118.14562140285129,50.470058362665064],[-118.14571944298228,50.47007549686312],[-118.14581933073289,50.47009220168189],[-118.14590492035089,50.470109581466716],[-118.14598914013284,50.470144945049206],[-118.14607501868544,50.470170816233676],[-118.14613220557483,50.470188438702486],[-118.14614484673908,50.47019724702065],[-118.14617448938894,50.47025077512294],[-118.14624673824228,50.47030392992983],[-118.14631850793194,50.47033953905306],[-118.14641683621282,50.470365173088084],[-118.14648841558213,50.47039172799562],[-118.14657486659847,50.47044476109368],[-118.14660450992092,50.47049828906481],[-118.14660565337601,50.4705526136735],[-118.14659288408478,50.47061555130329],[-118.14658011319766,50.47067849785647],[-118.14652473885188,50.4707417999508],[-118.14648502801236,50.47079661334696],[-118.1464722569236,50.47085955987369],[-118.14647368907768,50.47092237598206],[-118.14647511967547,50.470985201015296],[-118.14650495535277,50.47104777414333],[-118.1465051459108,50.471056828239035],[-118.1465204910379,50.47111103132298],[-118.14653593293924,50.471164680756495],[-118.14655175757373,50.47123642944189],[-118.14656719955514,50.471290078862715],[-118.1465967466867,50.47134416042458],[-118.14664078464004,50.47140661198869],[-118.14668326089344,50.4714780022123],[-118.14671290658333,50.47153152115641],[-118.14672834885728,50.4715851705352],[-118.14674369443208,50.47163937355293],[-118.14674531759768,50.471711243685164],[-118.1467753431846,50.471782879701315],[-118.14683320256646,50.47182710145989],[-118.14690526251708,50.47187121057839],[-118.14698967702911,50.471915627410326],[-118.14707575020086,50.47195055184902],[-118.14716134382694,50.47196793062549],[-118.14723184415132,50.47202096927709],[-118.14729008572526,50.47208329895066],[-118.14736204980217,50.47212796140344],[-118.14743411075005,50.47217207016235],[-118.14744974641313,50.472234764549576],[-118.14745117841126,50.472297589468255],[-118.14745251368467,50.472360968026784],[-118.14745375649667,50.47241472992714],[-118.1474549977515,50.4724685007536],[-118.14747034449937,50.47252270361168],[-118.14748559881187,50.47256728981267],[-118.14750104235875,50.472620939015314],[-118.14753040071011,50.47266596616387],[-118.14754622745203,50.4727377145743],[-118.14757625499314,50.472809350282986],[-118.14757768874574,50.47287216622569],[-118.1475647278151,50.4729260586436],[-118.14758007485037,50.47298026145591],[-118.14763831814325,50.47304259087284],[-118.1477228322947,50.473086453438675],[-118.14783731307983,50.47312113394784],[-118.14794975397375,50.473147198523634],[-118.14799274294697,50.47316494164008],[-118.14804974350228,50.47317350898671],[-118.14814925717855,50.473172103507025],[-118.14824673228411,50.47316207320029],[-118.14844314561824,50.47313363621642],[-118.14852902970482,50.47315951433702],[-118.14861354650088,50.47320336728893],[-118.14871391856157,50.473247785287256],[-118.1488003761043,50.47330082539503],[-118.14888527551908,50.47336278626444],[-118.14895772204744,50.47342500209756],[-118.14901577674499,50.47347827669346],[-118.1490881269275,50.47354104607786],[-118.14915882307494,50.47360313746569],[-118.14921687823902,50.473656411944695],[-118.14926072939257,50.47370981715974],[-118.14933298741857,50.47376296973101],[-118.1494174078585,50.47380738461344],[-118.14951806993463,50.473860302265685],[-118.14961873380658,50.47391321089348],[-118.14970344272523,50.47396612596252],[-118.14978980610356,50.47401971889834],[-118.14988833718365,50.474054394869334],[-118.1500028205286,50.47408908203418],[-118.15011526508484,50.474115144386175],[-118.15021535627875,50.474140890292034],[-118.15032955205865,50.47416707670785],[-118.15041387957606,50.474201883110815],[-118.15047164736932,50.474246665417],[-118.15051550214089,50.4743000611678],[-118.15055935545664,50.47435346582745],[-118.15058890937794,50.4744075461221],[-118.15061875302175,50.47447011787997],[-118.15063225855732,50.47451458819494],[-118.15063496654952,50.47455998271886],[-118.15063515795094,50.47456903676811],[-118.15063640461526,50.474622798486095],[-118.15063784112543,50.47468562317814],[-118.15063908779615,50.47473938488824],[-118.15065443914062,50.47479358715403],[-118.15068389874607,50.47483805970212],[-118.15069953984758,50.47490075342505],[-118.15072938241138,50.47496333404481],[-118.15075737735775,50.47502634402359],[-118.15080142466205,50.47508879365327],[-118.15087368515117,50.47514195406117],[-118.1509315528557,50.47518617350057],[-118.15100371696272,50.47523988746318],[-118.15107422691449,50.47529292346075],[-118.151160692709,50.47534595266699],[-118.15126068898127,50.47537226016723],[-118.15134501946892,50.475407065811254],[-118.15143129423534,50.475451040761286],[-118.15150326778112,50.4754957003443],[-118.15154537239889,50.47554898027362],[-118.15158922970647,50.47560237551443],[-118.15163308555844,50.4756557796641],[-118.15169104804083,50.47570961529032],[-118.15176312049857,50.475753712114816],[-118.15184783538646,50.475806625427694],[-118.15193362983132,50.47583305447576],[-118.15200531935939,50.475859043071445],[-118.15208936295278,50.47588534774344],[-118.15220385263443,50.47592003256074],[-118.15231630302404,50.475946092624866],[-118.15244451611201,50.47596310054614],[-118.15254266989467,50.47597966601821],[-118.1526424765665,50.47599691822367],[-118.15274014860462,50.47599593803756],[-118.15285396683824,50.47600401373844],[-118.15298071778926,50.47602939718103],[-118.15309521008062,50.47606407214333],[-118.15317944660954,50.47609943001163],[-118.15326572292811,50.476143412428634],[-118.15333731549262,50.47616996273136],[-118.15343547005293,50.47618652741014],[-118.15353527752362,50.4762037788088],[-118.15363314199995,50.47621185186341],[-118.15374696093794,50.47621992664691],[-118.15385931756889,50.476236377466385],[-118.15395999183082,50.47628928200337],[-118.15398955109526,50.47634336126359],[-118.15403341050794,50.476396764416435],[-118.1540488647087,50.476450403524616],[-118.15407871294204,50.476512983124316],[-118.15407909714345,50.4765310911672],[-118.15409426112525,50.47657623881664],[-118.1541099075672,50.476638931924484],[-118.15412555249365,50.47670163395512],[-118.15412680337519,50.47675539549207],[-118.15412795604442,50.47680971960284],[-118.15412901326067,50.476854436044725],[-118.1541730670153,50.47691688419597],[-118.15421663841674,50.47696178686968],[-118.15423228360343,50.47702448886025],[-118.15424754611867,50.47706907388412],[-118.1542629025899,50.47712327549497],[-118.15427835575333,50.47717692345289],[-118.15430607094376,50.47722126176114],[-118.15433563123344,50.47727534086699],[-118.15437968412598,50.47733779783351],[-118.154466157723,50.47739082433208],[-118.15446721528797,50.47743554073875],[-118.15446856056738,50.477498918810134],[-118.15446981187968,50.47755268029031],[-118.15447106163604,50.47760645069667],[-118.1544867089587,50.47766914367166],[-118.15447385043262,50.477732644230784],[-118.154446884665,50.47779571363893],[-118.15437867553463,50.477841157797094],[-118.15430842477184,50.47787798626409],[-118.15423973288348,50.477905884897886],[-118.15414136287062,50.47795145856181],[-118.15411410773433,50.47800602751411],[-118.15411535863839,50.4780597889647],[-118.15414501590772,50.47811331441864],[-118.15421728673806,50.47816646352242],[-118.15428926737215,50.478211121149954],[-118.15435940149935,50.47824604686353],[-118.15445959824753,50.47828140539037],[-118.15455989336591,50.47831620124863],[-118.15464394302478,50.47834250390751],[-118.154715828778,50.478377553602435],[-118.15477370439686,50.478421770862994],[-118.15481766236351,50.478484781214135],[-118.15484576185447,50.47854723624122],[-118.15484720590894,50.4786100516443],[-118.15485059183237,50.478682054177106],[-118.15485222816322,50.47875392356498],[-118.15486806712329,50.47882567932148],[-118.15489811189792,50.47889730358131],[-118.15494060826596,50.478968689984896],[-118.15497065325098,50.479040314212405],[-118.15500040782533,50.47910344701085],[-118.15503045143612,50.479175080139996],[-118.15504590777361,50.479228718925306],[-118.1551043602033,50.47930010686335],[-118.15513402101983,50.479353623041405],[-118.15514986063849,50.47942537870468],[-118.15516570186638,50.479497125429546],[-118.1551670481883,50.47956050333111],[-118.1551686834962,50.47963238156607],[-118.15517032036816,50.47970425086491],[-118.15517195568644,50.47977612908703],[-118.15517301556564,50.47982083642548],[-118.15517445855757,50.479883660655354],[-118.15517648011894,50.47997363789384],[-118.15518005900677,50.4800546942755],[-118.15516787598975,50.480144794089476],[-118.15512670513341,50.480207986067704],[-118.15508543750975,50.48027173167156],[-118.15505847263847,50.48033479210077],[-118.15504707741385,50.480379755123536],[-118.15502049703707,50.480460923486774],[-118.15502251675838,50.48055090959364],[-118.15500994868266,50.48062290138743],[-118.15499757131072,50.48070395607628],[-118.15499920794899,50.48077582528257],[-118.1550010353377,50.48085675738352],[-118.15500238146892,50.480920135180696],[-118.15503223554036,50.48098270524895],[-118.15509049789762,50.4810450390706],[-118.15514856963989,50.481098309958696],[-118.15516402521769,50.481151957529846],[-118.15516537158665,50.48121533530194],[-118.15512458597047,50.481296626198635],[-118.15507115260688,50.48136911882322],[-118.15501596936355,50.48144147828003],[-118.1549609766832,50.48152290059679],[-118.1549077366364,50.48160443815587],[-118.1548525512842,50.48167680644025],[-118.1548403671752,50.48176690603791],[-118.1548414252136,50.48181162219942],[-118.15484238659572,50.481856892003066],[-118.15484344619723,50.48190159922982],[-118.15484459986072,50.481955922987815],[-118.15486063221367,50.48203673242036],[-118.15486111499351,50.48205427776284],[-118.15486246096388,50.48211765546795],[-118.15482342372323,50.482199079301274],[-118.15476804680408,50.48226238460487],[-118.15474088648226,50.48231639977634],[-118.15471391990752,50.48237945996278],[-118.15468860634178,50.48244320692229],[-118.15467584340114,50.48250615348645],[-118.15463447902215,50.48256028221537],[-118.15459301632178,50.482614973498826],[-118.15453763700984,50.48267828758492],[-118.15446913016042,50.4827152401467],[-118.15437055926732,50.482751750862235],[-118.15430205216954,50.4827887033177],[-118.15430349404367,50.48285152732869],[-118.15434755389522,50.48291397494826],[-118.15437759900679,50.482985607917094],[-118.154364837038,50.483048545473615],[-118.15435245784172,50.4831295998479],[-118.15436849128945,50.48321040030461],[-118.15437031764542,50.48329133217287],[-118.1543716629633,50.483354709787214],[-118.15437291432254,50.4834084708799],[-118.1543885619618,50.483471172349375],[-118.15441841686997,50.483533742385696],[-118.15444798143,50.48358782104023],[-118.15449204064139,50.483650277475476],[-118.15449348436674,50.48371309248752],[-118.15448072079467,50.48377603893056],[-118.15443935501737,50.483830167501985],[-118.15438543649677,50.48388510533607],[-118.15430145156334,50.483939610249465],[-118.1542883988149,50.48399405635802],[-118.15430385592106,50.4840476949275],[-118.1543193115048,50.48410134242106],[-118.15432027241185,50.48414661210129],[-118.15432133154977,50.48419131920673],[-118.15430856760224,50.48425426559283],[-118.15426933690034,50.484326626153255],[-118.1542271034785,50.484345101447204],[-118.15418467786677,50.484354522790916],[-118.15411403252153,50.484373242972175],[-118.15401653449973,50.48438327829022],[-118.15391728505597,50.48439318929984],[-118.15383380080377,50.484394048089555],[-118.15362246309263,50.48439600844851],[-118.15350852531179,50.484388496190455],[-118.15341083512216,50.4843894770421],[-118.15331120157134,50.48438127964093],[-118.15319949741405,50.48439143659638],[-118.15308642570001,50.484419577073574],[-118.15296089926505,50.48444796398386],[-118.15284830928374,50.48449364951459],[-118.15273737220595,50.48454002174043],[-118.15263936990362,50.48460370156783],[-118.15254292844249,50.484658442685195],[-118.1524730491929,50.484713377546655],[-118.15241941571969,50.4847768146579],[-118.1523358118835,50.48484941695806],[-118.15225347737615,50.48490459814593],[-118.15214040378602,50.48493273764237],[-118.1520433842717,50.48496032544243],[-118.15194470825033,50.4849973964737],[-118.15185966313766,50.48500718345576],[-118.15176235491654,50.485026270717626],[-118.15165084046339,50.48504548003764],[-118.15152355998539,50.48507374104342],[-118.15139812901451,50.48510156359553],[-118.15128543755081,50.4851478100743],[-118.15116009950845,50.48518524885347],[-118.15104906417736,50.48522201178526],[-118.15092197432877,50.48525932602454],[-118.15081084190611,50.48529664235369],[-118.1506978647103,50.48532421779963],[-118.15060055531389,50.485343304036164],[-118.15052971550726,50.485352967986096],[-118.1504588756703,50.48536263189076],[-118.15038978720982,50.4853724200282],[-118.15031913869628,50.48539113777221],[-118.15019360781716,50.48541952152112],[-118.15006632537118,50.48544778084402],[-118.14994089090168,50.48547561066735],[-118.14981555083297,50.48551304791423],[-118.14974528439977,50.48554987314607],[-118.14971811764575,50.485603877940406],[-118.14971955322684,50.48566670179263],[-118.14969276889099,50.48573881442522],[-118.14966744634594,50.485802559976065],[-118.14956905449728,50.485848129145744],[-118.14947212592536,50.48588532223083],[-118.14938726980176,50.485904161233755],[-118.14927623281707,50.48594091343112],[-118.14917812584983,50.48600514373149],[-118.14910833715514,50.486059522748036],[-118.1490112166248,50.48608766149807],[-118.14892655103569,50.48611555406741],[-118.14885870595512,50.4861791022135],[-118.1488033142212,50.486242413161825],[-118.14873409947725,50.48632394476115],[-118.1486521399811,50.486397231019986],[-118.14859655664667,50.48645148792833],[-118.14856852551941,50.48646983926902],[-118.14851507705525,50.48654231934694],[-118.14844566875666,50.486614805747784],[-118.14839027746861,50.48667810752655],[-118.14835074586323,50.48674197442826],[-118.14828114601242,50.486805406792165],[-118.1481989012874,50.486860022276275],[-118.14810059984248,50.48691519763678],[-118.14800376452067,50.486951835756244],[-118.14789087405246,50.48698902477061],[-118.14779413253011,50.48703527025373],[-118.14773835806508,50.487080463846176],[-118.14766808749518,50.487117287692755],[-118.14765407153872,50.48712646323939],[-118.14754321940762,50.487172276492196],[-118.14744453485068,50.487209343424496],[-118.14734789072095,50.487255025942304],[-118.14723732274683,50.48731950034188],[-118.14720995959595,50.48736445942259],[-118.14718249962624,50.487409972128084],[-118.1471411217609,50.4874640977387],[-118.14709993298247,50.48752728617039],[-118.14706020806706,50.48758209863618],[-118.14703284614113,50.48762704872904],[-118.14697745006713,50.48769035865377],[-118.14692157564518,50.487736114362924],[-118.14683894618614,50.487772620961586],[-118.14675427609191,50.48780051181719],[-118.14672605270391,50.48780980875446],[-118.14666992441897,50.48776571214911],[-118.1465986986719,50.487757265746],[-118.14652766358455,50.487757873206164],[-118.14644474481526,50.48778588816496],[-118.1464317798076,50.487839770528815],[-118.14636188818922,50.487894701329964],[-118.14626466819084,50.487913230074376],[-118.14615120220827,50.48792325555462],[-118.1460540758214,50.48795139165453],[-118.14598399304518,50.4879972683033],[-118.14591595047833,50.48805176059807],[-118.14583127928961,50.48807965074054],[-118.14573221039133,50.48809860829773],[-118.14563489291014,50.48811769011877],[-118.1455358238458,50.48813664749997],[-118.14543879340303,50.48816422942222],[-118.14535374090956,50.48817401138486],[-118.14522819916334,50.48820238942476],[-118.14511530327795,50.48823957556102],[-118.14500425706527,50.48827632338211],[-118.14491977520419,50.48831326672752],[-118.14483723500831,50.488359388277296],[-118.14473883270458,50.488404953024734],[-118.1446561018955,50.48844202053045],[-118.1445717177989,50.488478401042855],[-118.1445031939795,50.4885153471931],[-118.14439210538525,50.48863346407645],[-118.1443649303662,50.48868746735609],[-118.1443534255723,50.48873298244876],[-118.14435447337958,50.488777698325485],[-118.14437011051812,50.48884039186099],[-118.14437134854954,50.48889416163159],[-118.14435847258619,50.48895766013934],[-118.14435990237162,50.48902047487139],[-118.14436152080368,50.4890923524258],[-118.14435987653314,50.492063128983666],[-118.14461796942385,50.49204755267238],[-118.14516437358978,50.492117417941316],[-118.14565695578462,50.49220097972102],[-118.14619447035905,50.49235214109566],[-118.14677289774903,50.49242145059062],[-118.14748875503123,50.49245530937489],[-118.14809525791443,50.492414730628035],[-118.14865905196687,50.49233439622545],[-118.1491813674004,50.492308738633774],[-118.15013108192574,50.49233375301925],[-118.15083690808012,50.492394559732816],[-118.15135082253818,50.4924575775511],[-118.1517491890251,50.492623700113214],[-118.15255424940145,50.4928067974813],[-118.15281068872086,50.49279052427331],[-118.15305188377681,50.4926584669162],[-118.15321902267938,50.49251380727246],[-118.15367278279984,50.492291731353156],[-118.15405304248776,50.4921452431048],[-118.15455346254022,50.49209258684462],[-118.15525698704869,50.49202437923055],[-118.15556441696761,50.492000415189885],[-118.15620331673973,50.49194683022365],[-118.15676102347791,50.49202309772779],[-118.15743773609807,50.492179549764444],[-118.1579965995287,50.492350805344685],[-118.15855430724152,50.49246774399538],[-118.1591456817672,50.49264581738854],[-118.15960801642339,50.49281136222541],[-118.16013090566962,50.492853494827855],[-118.16082488807942,50.4928399553949],[-118.16136793587263,50.49276655844527],[-118.16232604571354,50.49270278219888],[-118.16324443730383,50.492754844781075],[-118.16384595683948,50.49290535985029],[-118.16466818902508,50.49332576224047],[-118.16525180890483,50.4936806621671],[-118.16581821069153,50.49408349880511],[-118.16832086416142,50.49475278667409],[-118.16896622590185,50.4949572235666],[-118.16942861890921,50.49510238703505],[-118.16992186790225,50.4952536823216],[-118.17075539335993,50.49568104100341],[-118.17134368242314,50.49619274103774],[-118.17149992165866,50.496456343271426],[-118.17166810723648,50.49649875171077],[-118.17169273508179,50.496540613213966],[-118.17194433742164,50.496633552654075],[-118.17219769246317,50.49673679436924],[-118.17234749960659,50.496884680923074],[-118.17245000432746,50.497029230119644],[-118.17246577435685,50.49705068545315],[-118.17258599796462,50.49721568859097],[-118.17274670701909,50.497362094548606],[-118.17295199219194,50.49748678445418],[-118.17317158348276,50.49760062543666],[-118.17339750062027,50.49770870291108],[-118.17362536683022,50.49781577866178],[-118.17384525235686,50.497927948386895],[-118.17404918011852,50.49805027981215],[-118.17422109013017,50.49819351563407],[-118.17438288010864,50.49834394529039],[-118.17456306343922,50.498480425089575],[-118.17477293142304,50.49859922444592],[-118.17499233827606,50.49871417790481],[-118.17521797446476,50.49882392141109],[-118.17544818595177,50.49892776846739],[-118.17568647513622,50.49902597573161],[-118.17592787836918,50.49911649272076],[-118.1761790147597,50.49920204735965],[-118.17643881194178,50.49927861336866],[-118.17670649138879,50.49934047673221],[-118.1769775744134,50.49938280089206],[-118.17725410196117,50.499404048722276],[-118.17753500684003,50.49941034607954],[-118.17781756483056,50.4994071502631],[-118.17810411199918,50.499401415282],[-118.178388420367,50.49939835078261],[-118.17866942332711,50.49940408268896],[-118.1789496502196,50.4994244577223],[-118.1792301725639,50.499453323186145],[-118.17951099051905,50.49949067907736],[-118.17978655429691,50.499537841708005],[-118.18005316876007,50.49959566187796],[-118.18030508979254,50.4996665722299],[-118.18053531573858,50.49977041756825],[-118.18073927321507,50.499902906390304],[-118.18085542322575,50.49999982039196],[-118.1809113079115,50.50004557787936],[-118.18100188493122,50.50021808308506],[-118.1810909048755,50.50038934814914],[-118.18128046153795,50.50052307802125],[-118.18152402810396,50.50062164393925],[-118.18179278336109,50.50065702020567],[-118.18208166935848,50.50063788009129],[-118.18235614265637,50.50059964164661],[-118.18262749619086,50.50054875255837],[-118.18289621990175,50.5004925877216],[-118.18316328721191,50.50043574481562],[-118.18342966935697,50.500372642633934],[-118.18369283873878,50.500307613476295],[-118.18396000184381,50.50025020605533],[-118.18423184028524,50.50020669682981],[-118.18450903640384,50.50017316551247],[-118.18478857097837,50.50014657844702],[-118.18507054201395,50.50012637302793],[-118.18535173444518,50.500110640812096],[-118.18563692143269,50.50010253019068],[-118.18591657040092,50.50011605749904],[-118.18618727681613,50.500160600575846],[-118.18645147070131,50.500222192972835],[-118.18671206941605,50.50029426093879],[-118.18697043069578,50.5003689996778],[-118.18723297578249,50.500440082788316],[-118.1874905621674,50.50051928530478],[-118.18770942353075,50.50062739218578],[-118.18790250503275,50.50076135809598],[-118.188065907831,50.50091300728536],[-118.18817957703722,50.501075274464256],[-118.1882490621059,50.50124684304393],[-118.18829440947931,50.50142462641796],[-118.1883303178167,50.50160569375993],[-118.18836632428506,50.501786198459875],[-118.18841527481683,50.50196366642998],[-118.18846792419053,50.50214026544022],[-118.18852232614627,50.5023169880613],[-118.18857497635163,50.5024935869441],[-118.18862217628853,50.502670930995414],[-118.18865857148147,50.50284921179567],[-118.18866586485964,50.50303164870432],[-118.18868620025357,50.5032104862772],[-118.18876065520432,50.5033841039389],[-118.18887219929246,50.503558639720495],[-118.18902714477025,50.50370799872414],[-118.18924465614275,50.50380357609],[-118.1895177293214,50.50385504674024],[-118.18980462006091,50.503898461224125],[-118.19007039892206,50.50396128463707],[-118.19033511178826,50.50403024232314],[-118.19058104613316,50.50411539295626],[-118.1907953596268,50.50422938984249],[-118.19098671346153,50.50436322616212],[-118.19118011102873,50.504495515849925],[-118.19138985670405,50.50461539918981],[-118.19160748509763,50.50473075794864],[-118.19182316982031,50.50484709996525],[-118.19202707982778,50.504969959941185],[-118.19221882701011,50.50510157044297],[-118.19240065111295,50.505239251115654],[-118.19258043218514,50.50537848670195],[-118.19276235475203,50.505515613074756],[-118.19294194400723,50.50565596428158],[-118.19311764168168,50.505798300477835],[-118.19329723316844,50.5059386510618],[-118.19348120276405,50.5060742298472],[-118.19367529483203,50.50620260356329],[-118.19388777749568,50.50631702426264],[-118.19412867425727,50.50641084965578],[-118.19438192837009,50.506494816052665],[-118.19463109828077,50.50658187454325],[-118.194876180913,50.506672043014106],[-118.19512544897428,50.506758546714885],[-118.19537423381668,50.50684783602141],[-118.19561104984392,50.50694475977551],[-118.1958295739187,50.50705508231987],[-118.19602980610156,50.50717880375703],[-118.1962236184611,50.507308851697374],[-118.196409548793,50.50744343270263],[-118.19659314752977,50.507581229668496],[-118.19677090678138,50.50772201337844],[-118.19694866869449,50.507862787849696],[-118.19712633397071,50.50800412460585],[-118.19730614065739,50.50814335207396],[-118.19748224966776,50.50828344842061],[-118.19765222901175,50.508428201499605],[-118.19782016689344,50.50857450068743],[-118.19799209633888,50.50871825153426],[-118.19817219865037,50.50885580755789],[-118.19836816468352,50.508983742496326],[-118.19857629561513,50.50910292549901],[-118.1987924054908,50.50921702977817],[-118.19901435712764,50.50932814643883],[-118.19923854629853,50.50943659996329],[-118.19946847794087,50.50954263734019],[-118.19969860610117,50.509647549038206],[-118.19993077786697,50.50975091381509],[-118.19999992324477,50.50978177447747],[-118.20016295069722,50.50985427809388],[-118.20039327438244,50.50995808098379],[-118.2006234068147,50.510062990713436],[-118.20085373262603,50.51016679262246],[-118.20108425490248,50.51026946885006],[-118.20131847556208,50.51037128419804],[-118.20155114015094,50.51047185038065],[-118.2017857505916,50.510571432196116],[-118.20202230998285,50.51067001177213],[-118.20225906268476,50.51076748350061],[-118.20250185086661,50.510860851090555],[-118.20275067139856,50.51095013236395],[-118.20299978440568,50.51103773421083],[-118.20325074861029,50.511124896333754],[-118.20349966975644,50.51121361330477],[-118.203742848944,50.51130475453542],[-118.20397970636668,50.51140165992568],[-118.20420488669937,50.51150452183474],[-118.20441771250667,50.51161724279316],[-118.2045887932123,50.511755840749466],[-118.20472766674534,50.511916467909835],[-118.20485661723991,50.512083166449216],[-118.20500152559852,50.51223969838913],[-118.2051846761898,50.51237010568028],[-118.20541356308546,50.51247209557312],[-118.20566882016996,50.512555033834076],[-118.20593244332552,50.512630660160646],[-118.20619226330867,50.51269753920965],[-118.20646560342243,50.512747851383786],[-118.2067203698147,50.51282341254314],[-118.20696522074185,50.51291522359747],[-118.20719139322338,50.51302266771593],[-118.20738321891133,50.51315425074834],[-118.20753972154205,50.51330537548631],[-118.20767004233748,50.51346425660325],[-118.20778508291629,50.51362941079407],[-118.20788912329891,50.51379661976518],[-118.20798002485299,50.513967983785946],[-118.2080542820882,50.51414325615739],[-118.20813408774059,50.514317228594734],[-118.20823297053727,50.514483504414606],[-118.20837857702944,50.51463612008984],[-118.20858297331267,50.51476688543906],[-118.20881897740774,50.51485863800941],[-118.2090968073624,50.51490360894374],[-118.20937404561643,50.514941767154376],[-118.2096582870045,50.51497023933455],[-118.20994067842828,50.5149991500523],[-118.21021169157179,50.51504251751422],[-118.21046365027698,50.515113911809706],[-118.21070871490244,50.515204598088935],[-118.21094610114174,50.515308871716684],[-118.21117103732168,50.515423558718005],[-118.21137855337246,50.51554662821665],[-118.21156319739323,50.515678826651595],[-118.21170387239026,50.515849728452736],[-118.21176315545279,50.51602960177535],[-118.21167411127644,50.5161747431158],[-118.21144132867057,50.516299603227594],[-118.2112555902985,50.51643963199555],[-118.21111134527885,50.51659614750001],[-118.21094615329042,50.51674045062707],[-118.21070339990534,50.51683071116907],[-118.21042199458223,50.51682673033398],[-118.21013737498484,50.51682082325767],[-118.20984537502844,50.51683700305455],[-118.20960221207402,50.516909154236934],[-118.20942016475415,50.517048310246004],[-118.20926393307538,50.51720228097468],[-118.2091485080621,50.517366471971975],[-118.2090211037955,50.517528120513965],[-118.20887402058995,50.517680474817894],[-118.20868709682142,50.517817026913676],[-118.20852530063885,50.51796213553161],[-118.2084250669703,50.51813077569058],[-118.20831967009623,50.51829849197931],[-118.2081871953839,50.5184586530397],[-118.2079741468737,50.518571906609424],[-118.20774931237045,50.51868150105834],[-118.20756422999801,50.51881762080161],[-118.20740038391438,50.51896427415815],[-118.20725962473061,50.51912102199773],[-118.20715626392446,50.519287190432166],[-118.20709546595845,50.5194636944307],[-118.20701927896737,50.51963685542269],[-118.20691406709261,50.51980345381102],[-118.20679853075873,50.519968195508554],[-118.20667286362463,50.520129964227124],[-118.2065390122856,50.520287767064765],[-118.20638684668474,50.520438631143755],[-118.20622123795093,50.5205851590813],[-118.20605728496132,50.52073236380331],[-118.20591349338282,50.52088607663653],[-118.20577944335663,50.521044994667974],[-118.20565367189471,50.521207324612995],[-118.20553988031364,50.52137218812023],[-118.2054416707742,50.521539278372536],[-118.205383885281,50.52171881392387],[-118.20539377756502,50.52189690390116],[-118.20546491787954,50.522069705914014],[-118.20555757989177,50.522241193582204],[-118.20564294070347,50.522413857445876],[-118.20570639327215,50.52259006800672],[-118.2057656612673,50.52276994304159],[-118.20580019522724,50.52294919774864],[-118.20578593464839,50.5231233273363],[-118.20568080620069,50.523289370185346],[-118.20553925233095,50.52345058001944],[-118.20540353644226,50.5236088200357],[-118.20525759279255,50.52376464057401],[-118.20511008889174,50.523919221232525],[-118.20496930627108,50.52407596522063],[-118.20484576182841,50.52423562197433],[-118.20475095193544,50.52440352044657],[-118.20470202155477,50.52458311842934],[-118.20469350946337,50.52476499233383],[-118.20471742443729,50.524944069032614],[-118.2047656891853,50.52512598974148],[-118.20484355465672,50.52530095503202],[-118.20496542501749,50.52545755001256],[-118.20519916067096,50.525572873658945],[-118.20542228264215,50.525688010031686],[-118.20550286499378,50.52584734728072],[-118.2055379817003,50.52602325265285],[-118.20554690647866,50.52620692291213],[-118.20553586753547,50.52639314703389],[-118.20551469872343,50.526576389274425],[-118.20548553761985,50.526754558400924],[-118.20543348890352,50.52693167689126],[-118.20536575884681,50.52710712208848],[-118.20528770141807,50.52728071945582],[-118.20520282599388,50.527452697927636],[-118.20510080403966,50.52762121865173],[-118.20499021068018,50.527787997020596],[-118.20488136816277,50.52795490758786],[-118.2047899608698,50.528123605810286],[-118.20476293835597,50.52829965640845],[-118.20480244072354,50.52848095928323],[-118.20469475889811,50.52864117207297],[-118.20453525595431,50.528793208311576],[-118.20437730977935,50.52894649288427],[-118.20426553880448,50.52910979811933],[-118.20420159746256,50.529283819087965],[-118.20416142593423,50.52946403287441],[-118.20414054010857,50.529645604270236],[-118.20414312452324,50.529824877759786],[-118.20424057344124,50.529999521302315],[-118.20429441227867,50.53008805270358],[-118.2042563322677,50.53009272087018],[-118.20410064893214,50.53016141398779],[-118.203878616783,50.530326005067096],[-118.20376636355596,50.53050227415559],[-118.20377276651122,50.53058802680047],[-118.20379928537993,50.53061927070915],[-118.20381400655441,50.5306366949111],[-118.20379503703475,50.53066416707684],[-118.20373238979947,50.530759186814834],[-118.20377908891018,50.53092969742548],[-118.20388778736535,50.53116219662735],[-118.20383555030962,50.53136076877157],[-118.20375982795808,50.53142888071547],[-118.20391220886751,50.5314814134522],[-118.20427563345292,50.53161659493141],[-118.20456044912136,50.53174455157763],[-118.20465186942039,50.53181087030689],[-118.20471464595276,50.53186839348824],[-118.20481553884892,50.53196192650545],[-118.20494945465829,50.53205948305015],[-118.20510012066757,50.53215256890811],[-118.2051857795466,50.532200972901805],[-118.2052136485019,50.53221423319648],[-118.20523342981632,50.5322229651552],[-118.20524299840129,50.532249625879835],[-118.20528680543518,50.532334629990594],[-118.20534739905628,50.532455832780975],[-118.20538524222982,50.53251386035051],[-118.20539080119293,50.532522730214886],[-118.20540923458829,50.53254944534949],[-118.20543983451445,50.53267984490767],[-118.20544397656649,50.53285017887139],[-118.20547474417012,50.53294895351552],[-118.20553722451402,50.53299797650442],[-118.20556889971532,50.533019983147405],[-118.2056195813423,50.533055186612415],[-118.2057584901837,50.53317512121785],[-118.20590687127776,50.5333222788486],[-118.20603196446297,50.53346045766888],[-118.20616699908679,50.53360271645673],[-118.20628400581356,50.53373636669311],[-118.20637779468603,50.53382996710529],[-118.20645196833772,50.53388321088547],[-118.20648266799854,50.533900619976116],[-118.20654130703315,50.5339002267546],[-118.20697462398434,50.53406235227698],[-118.20783924412488,50.53440847480315],[-118.2086330019097,50.534692550596176],[-118.20909915706773,50.53484962798991],[-118.20928127718713,50.534914982108226],[-118.20933243931522,50.53493721921617],[-118.20945612315897,50.53501202100653],[-118.20963714208857,50.53514508012445],[-118.20976551608396,50.535233769796776],[-118.20992678205707,50.535286348132075],[-118.21019906263288,50.53540492682807],[-118.21053527621403,50.53555398800457],[-118.21084038192278,50.53566753377194],[-118.21104698138187,50.53575550403812],[-118.21122605062338,50.53587938387506],[-118.21143906857695,50.53605311396212],[-118.21159546042381,50.53619517549785],[-118.21165464874468,50.536253001499055],[-118.21166556768854,50.53626167833518],[-118.21168195122462,50.53627977833634],[-118.21172377589117,50.53631492494591],[-118.21178508499756,50.53635030269101],[-118.21188565992608,50.53639466013006],[-118.21201956300949,50.536451529649135],[-118.2121506364524,50.53650425002001],[-118.21228180782151,50.536556407645826],[-118.21241386224827,50.536613707041695],[-118.21257837294766,50.5366885458454],[-118.21278245219216,50.53678085446672],[-118.21299266376909,50.53686851391397],[-118.21326229533287,50.53695130227845],[-118.21354604200263,50.537024353030375],[-118.21371773204926,50.53706805849898],[-118.21385911574104,50.537102293717375],[-118.21405517381554,50.53715901016365],[-118.21426689709469,50.53719705031456],[-118.21445580069997,50.5372131576407],[-118.21455030134958,50.53722092988894],[-118.21463429133073,50.53723813199997],[-118.21476863063354,50.53724135563925],[-118.2148291235826,50.537240527645345],[-118.21490559410495,50.53723968371784],[-118.21513983510526,50.53729117281099],[-118.21538271741198,50.53740541078778],[-118.21548576197135,50.53747649420277],[-118.21562554783047,50.537560888735484],[-118.2157673706158,50.53772564591519],[-118.2157535199505,50.53788737165848],[-118.21576854360609,50.53799519423597],[-118.21583485021226,50.53805295718243],[-118.21588868792622,50.53811097367363],[-118.21597404967274,50.53822261834412],[-118.21605075240169,50.538343253643454],[-118.216100718683,50.53842359498113],[-118.21615681808308,50.53849927840418],[-118.2162129161228,50.53857497072195],[-118.21623311206635,50.538601807096576],[-118.21623568513648,50.538638143208175],[-118.21623854184081,50.538754718808235],[-118.21623995702873,50.53888984018329],[-118.21624050933195,50.53894806188659],[-118.21619401336224,50.53901145587931],[-118.21609087496033,50.53912510243115],[-118.2159853679395,50.53921146599475],[-118.21589852548037,50.53926185595715],[-118.2158220961842,50.53930337840646],[-118.2157444843169,50.53933125043213],[-118.21560765500006,50.53937304756199],[-118.21538708155389,50.53944736520502],[-118.21517304830003,50.539535139933314],[-118.2150527454661,50.53963515101857],[-118.215024892214,50.53973431990771],[-118.2150452718896,50.539841958434145],[-118.21506241350129,50.53992733270618],[-118.21506838453374,50.53995430842135],[-118.21506332803983,50.539962991878724],[-118.21502920292016,50.54002668546806],[-118.21479743546016,50.540114343149085],[-118.21447904570269,50.54018970253794],[-118.21438068890672,50.540316672708464],[-118.21430498883788,50.54049721758049],[-118.21413147884502,50.540678787615064],[-118.21398549934416,50.540824446916794],[-118.2139056010688,50.54090639919841],[-118.21385431279916,50.54095645774916],[-118.21379358777678,50.541019980671635],[-118.21373589580804,50.541096714602766],[-118.213712322501,50.54119165563509],[-118.2137244251443,50.54139813972402],[-118.21375599025276,50.541676612099266],[-118.21377048285339,50.5418386303131],[-118.21376836312066,50.54186107837989],[-118.213633031055,50.54185326531977],[-118.21333227529082,50.54184737339251],[-118.2131324727443,50.541863274262],[-118.21310003125075,50.541958161258755],[-118.2131396424699,50.54220047469373],[-118.21319924572454,50.54246057165863],[-118.21322518401769,50.54257707952529],[-118.21322135246933,50.542640081959384],[-118.21319488243603,50.54276193568569],[-118.21315624218795,50.54289254219265],[-118.21304364995805,50.54301964969106],[-118.21275099589973,50.54313070110374],[-118.21230509186503,50.54315302768272],[-118.21192420213967,50.54310760350297],[-118.21147954781314,50.54311249736832],[-118.21086900257566,50.543244697665],[-118.21052908450106,50.543351860016934],[-118.21047387305602,50.543383572791655],[-118.21045547357365,50.54339752756037],[-118.21041897283875,50.54343394554397],[-118.21030364049199,50.54355632968271],[-118.2101587141515,50.54370601804916],[-118.21015835896794,50.543841006428025],[-118.21026751597911,50.54397918499778],[-118.21032176098504,50.54405531010611],[-118.21033726570215,50.54406825930542],[-118.21036746874584,50.54406812334648],[-118.21039670465193,50.54417582512167],[-118.21039770827217,50.54440525636884],[-118.21037389435661,50.544562891494934],[-118.21031181307258,50.544644395242194],[-118.21013540119026,50.54478113156677],[-118.2099199583963,50.54495861799746],[-118.20980967732258,50.545072327156994],[-118.2097891550767,50.54510872968896],[-118.20975315724769,50.545162691118406],[-118.20971821633599,50.545302595872464],[-118.20982353899508,50.545503776724786],[-118.21001077355946,50.54567286249316],[-118.21011510866133,50.54575702898161],[-118.21016183641731,50.545815108039776],[-118.21022255739854,50.545935752529864],[-118.21029485049695,50.54613291078604],[-118.21037405239697,50.54632095544551],[-118.21045696813354,50.546518290862394],[-118.21052899168626,50.54673746636937],[-118.21058305035787,50.54691695463785],[-118.21064340638733,50.5470601699195],[-118.21070052472331,50.547181129906804],[-118.2107239577801,50.547230231165784],[-118.21058999804785,50.547245100020646],[-118.21023884486667,50.54725317611297],[-118.20989254625208,50.54724351481564],[-118.20964272615039,50.547250805236345],[-118.20942799518342,50.54727073121912],[-118.20928945053551,50.54728132617137],[-118.20912589380862,50.547323497268025],[-118.20882474135797,50.5474525899025],[-118.20839151374304,50.54763679503821],[-118.2079619562528,50.54778962087941],[-118.20759240082901,50.54792406836583],[-118.20719988419854,50.548098704386454],[-118.20682860648715,50.54827370331133],[-118.20650144970627,50.54842976807497],[-118.20619660738312,50.548590230908594],[-118.20588505470853,50.548768868129066],[-118.20567594839764,50.548879002307224],[-118.20556598175135,50.548929458236614],[-118.205376529695,50.549008208758444],[-118.20513411030294,50.54913634486251],[-118.20499653696535,50.54926393907107],[-118.20492499797774,50.54947131919299],[-118.20483893091901,50.54978275389707],[-118.2047858660476,50.549945109512954],[-118.20476513337093,50.549972466715865],[-118.20472659582911,50.55003076763974],[-118.20467862712047,50.55011269241933],[-118.20462491902363,50.55020721125307],[-118.20454957130286,50.550293428393275],[-118.20448754196782,50.550343866707266],[-118.20446640539454,50.550353108687915],[-118.2044644831663,50.5503846094559],[-118.20444199434219,50.550524259358276],[-118.20439849917372,50.550713274834834],[-118.20432817217993,50.550862556711984],[-118.20423357038088,50.55099826255537],[-118.20415903052061,50.551120691764474],[-118.20414618453363,50.55125593117168],[-118.20416981115525,50.55142651166534],[-118.20418595825556,50.55150729814703],[-118.20406910991356,50.55149512668858],[-118.20381953165318,50.55147021728415],[-118.2036519117116,50.55145390346383],[-118.20357201476371,50.55146409952079],[-118.20348034820435,50.55150115337744],[-118.203366292425,50.551564869114934],[-118.20326579195624,50.5516425364993],[-118.20318848281055,50.55171957603348],[-118.20312031544505,50.55177466166165],[-118.20301843137256,50.55182963433935],[-118.20285077025609,50.551885067026994],[-118.20263800326012,50.5519548335469],[-118.20245466800881,50.55202893066977],[-118.20236582943559,50.55207013273354],[-118.2023184919252,50.55209730752449],[-118.20216937431832,50.55218906090505],[-118.20182969832697,50.55234537215866],[-118.20145024215782,50.5524751465714],[-118.20126825317612,50.55253125896833],[-118.20116768409504,50.55252756999118],[-118.20101125665283,50.55249792147144],[-118.20088055337203,50.552463295191366],[-118.20080628123445,50.55244111936409],[-118.2007511992836,50.552410694967755],[-118.20068967674568,50.55236624980696],[-118.2005724235843,50.55233596849489],[-118.20039613634418,50.552328639136526],[-118.20022773822446,50.55231678498322],[-118.20006665469617,50.55231392397593],[-118.2000004080497,50.55233750703665],[-118.19993425914184,50.55236052749172],[-118.19983853504456,50.55245152643119],[-118.19978353825306,50.552532954905374],[-118.19975045614534,50.55260067748618],[-118.19971103577237,50.55266400385363],[-118.19962765749732,50.552714627264024],[-118.19949633443059,50.55276526489334],[-118.19943018463698,50.5527882850367],[-118.19920324135255,50.552674009651746],[-118.1986836492289,50.552404675328646],[-118.19833775148501,50.552188243514],[-118.19817297784324,50.55206365474479],[-118.19784587632552,50.551963790924276],[-118.1974758170596,50.55188632749108],[-118.19722083132994,50.55179041013792],[-118.19704321489564,50.55168864213622],[-118.1969276940243,50.55161779432617],[-118.19678011346508,50.551547517693656],[-118.1965779551835,50.55146435802612],[-118.19635212667895,50.55139478858269],[-118.19606686199879,50.55133006225086],[-118.19579427020399,50.55127414589981],[-118.19562146967283,50.55122637881619],[-118.19553618484252,50.551196083746625],[-118.19545528284286,50.551161008382444],[-118.19535644521436,50.551116760443605],[-118.1952332382569,50.55105949705204],[-118.19502454845718,50.55096287599828],[-118.19480045327319,50.55085274965391],[-118.19464691829661,50.55075549368018],[-118.19452261263304,50.55065352640731],[-118.19441819267509,50.55055973010816],[-118.1943310342901,50.55048918685749],[-118.19417624478078,50.550409359242956],[-118.19392029720022,50.55030884579802],[-118.19367138543464,50.55023933407438],[-118.19346324869531,50.550241617244005],[-118.19332907245837,50.55024742105381],[-118.19328025732236,50.550252451062356],[-118.19323835441301,50.550248368655005],[-118.19309686534865,50.55024517831217],[-118.19290217823503,50.55025179776691],[-118.19278455927389,50.55024407920573],[-118.19271477998183,50.55022673348332],[-118.19268252219919,50.5502182415429],[-118.19261176588545,50.550196307387175],[-118.19244305622497,50.55013527353588],[-118.19221371091652,50.55002476212471],[-118.1919863997979,50.54989236535585],[-118.19179613024964,50.54978178650456],[-118.19160127870279,50.54966693425532],[-118.19147865760023,50.54959614869852],[-118.19145789590762,50.549582817166424],[-118.19137221717564,50.54953441255528],[-118.19108238856877,50.54946540022753],[-118.19064611577193,50.54941148270606],[-118.1901667641693,50.549339847287335],[-118.18960106181258,50.54941747704195],[-118.18905002370641,50.54959443797472],[-118.1886519039273,50.549647721400824],[-118.188372817006,50.54961900516481],[-118.1882171038533,50.549615935441786],[-118.18812465260413,50.549657432537416],[-118.18799089539432,50.54972201354322],[-118.18784076048081,50.54976848224193],[-118.187690225367,50.54979685336829],[-118.18745403567034,50.54981748507373],[-118.18716143591021,50.549856166731736],[-118.18699404565882,50.54988955825442],[-118.1869390926917,50.54989924169355],[-118.18676068208408,50.549914346969885],[-118.18645278013865,50.54994912751579],[-118.18630282377627,50.54996396995586],[-118.18630146753834,50.549981952551654],[-118.18628856671162,50.55011719900951],[-118.1862449307501,50.55037794637814],[-118.18615682720787,50.550567773265094],[-118.18603884796886,50.55062328693779],[-118.18592523290909,50.55063335226993],[-118.18584971553595,50.550638764682404],[-118.18566954914758,50.55065373555678],[-118.18535988726366,50.55068838933461],[-118.18518878582891,50.55071247753098],[-118.1851324747425,50.550740142633714],[-118.18504177083453,50.55078176976007],[-118.18491832890469,50.55082785792281],[-118.18473534967687,50.550879354953175],[-118.18453288104635,50.550930606830114],[-118.18433918221035,50.55098247699975],[-118.18414743142971,50.55103335438905],[-118.18394944578394,50.551089441104224],[-118.1837585723201,50.55114546880856],[-118.1836109602057,50.55118759076098],[-118.18351830159673,50.55122003973826],[-118.18347942526181,50.55122915643684],[-118.18346179052554,50.55123865083822],[-118.18341502204392,50.551252299775925],[-118.18328339027244,50.551294418839056],[-118.18310478976868,50.55134114233986],[-118.1829928410983,50.55138238998056],[-118.18291899092281,50.551418985711194],[-118.18283539788438,50.55146054347339],[-118.18258451616109,50.551575609610985],[-118.18223463937727,50.5517187080031],[-118.18208137826348,50.55178303648615],[-118.18205770432691,50.55179661510823],[-118.18200412009551,50.55182899081192],[-118.18189373773035,50.55190199411056],[-118.18165726404999,50.55198529907931],[-118.18136951011178,50.55200623938577],[-118.18120570039319,50.55199862990203],[-118.18117441793032,50.5519947320313],[-118.18119012825062,50.552057415520515],[-118.18121969533566,50.55218323017449],[-118.1812354057847,50.55224591364286],[-118.18125336262715,50.55232627353],[-118.18120023653262,50.55256997177022],[-118.18100552546403,50.552841534634055],[-118.18086788556201,50.553009775590574],[-118.18084802622586,50.55307277818289],[-118.18084813578821,50.55311290172949],[-118.18084679034747,50.55317156135237],[-118.18083813408947,50.55322122631666],[-118.1808326869558,50.55325247898924],[-118.18082002874951,50.553284352675384],[-118.18079100621938,50.553338799341624],[-118.18075263256019,50.55340614483906],[-118.18072263390951,50.553456003024536],[-118.18068454462669,50.55350134013174],[-118.18061128238679,50.55356509359457],[-118.1805403545334,50.55361545301423],[-118.18050800813917,50.55363802798085],[-118.18049846240608,50.553652042963975],[-118.18048628463478,50.5536607831494],[-118.1804780090633,50.55368788608636],[-118.18038068796739,50.55378778852805],[-118.180200653613,50.55396490537558],[-118.18011270284066,50.55412310264625],[-118.18022589554474,50.554288706960165],[-118.18044736397694,50.55447495053468],[-118.18047841280695,50.5546635742249],[-118.18026858547411,50.55494027919819],[-118.18009939953272,50.555238499817825],[-118.17996871067362,50.55555016657873],[-118.17979347192875,50.55582196305432],[-118.17967959176897,50.555976070243446],[-118.17961589451579,50.55610716202355],[-118.17951235139061,50.55628345756185],[-118.17937860619938,50.55650056644384],[-118.17929912193183,50.55664071291384],[-118.1792864616881,50.55667258629419],[-118.17930469197002,50.55669025188005],[-118.17941094700267,50.55678362292824],[-118.17934639187989,50.55699092631239],[-118.17883988996064,50.55728849654088],[-118.17835246771025,50.557527527185385],[-118.17821994430308,50.55760517481256],[-118.17826624860191,50.55764516026811],[-118.17844951185911,50.55779594283529],[-118.17883179711804,50.55797659058666],[-118.17924318916694,50.558031052826166],[-118.1794112080407,50.5580248325152],[-118.1794292413751,50.55803344497914],[-118.17944015938997,50.55804212474814],[-118.1794545860349,50.5580510521333],[-118.17947534807783,50.55806438576799],[-118.17963774486851,50.55816171829874],[-118.17992736363945,50.558374798661845],[-118.18007060160062,50.558602415006824],[-118.18007320540883,50.55883196627474],[-118.18007631504625,50.55911973792306],[-118.1800767815649,50.55937173598983],[-118.1800753461422,50.55946146533833],[-118.18009262661613,50.5595558960036],[-118.18012299563296,50.559748429640244],[-118.18014427699164,50.55986066034891],[-118.1800520698497,50.55983946520245],[-118.1798974833762,50.559809348516914],[-118.17975156947466,50.5597702350397],[-118.17964220510741,50.55973539999038],[-118.17951266924162,50.559714399325436],[-118.17932826501287,50.559702515530866],[-118.17916355112466,50.559699930275805],[-118.17908470802327,50.559714134535255],[-118.17897870967315,50.559863708373214],[-118.17854109385485,50.560214165099765],[-118.17776673620317,50.56059112760076],[-118.1770042307862,50.560859322627145],[-118.17639121363015,50.561054454415356],[-118.17580331595431,50.56114627655084],[-118.17496571504995,50.56128486860468],[-118.17411994730575,50.561572024250346],[-118.17340683679703,50.5619436764259],[-118.17239449175831,50.56238120100743],[-118.17124654062175,50.56276111306468],[-118.17041339706272,50.563097721151095],[-118.16999604611073,50.563331502332574],[-118.17019567467514,50.56341904968063],[-118.17081580693974,50.5636108765893],[-118.17112872687771,50.563944833736485],[-118.17113147702084,50.56414276012212],[-118.17103957207563,50.564252077957455],[-118.1708413272469,50.564410948099116],[-118.17067095303896,50.56451190223462],[-118.17045554631295,50.56462662331322],[-118.17019656974199,50.564777251979095],[-118.17006849516513,50.56485972560374],[-118.17000270392643,50.564900833936484],[-118.16986800172093,50.56500091751574],[-118.1697127335927,50.56513740409389],[-118.16963671313565,50.56527779011111],[-118.16960602176007,50.56545357624621],[-118.16956372935577,50.565624592599264],[-118.16950827467664,50.56576926079622],[-118.16945867100044,50.56593128178338],[-118.16942242365447,50.56613888188278],[-118.16939358485133,50.566354914652436],[-118.16941913890538,50.56657479030812],[-118.16952072535358,50.56677630974932],[-118.16966783199535,50.56694093811105],[-118.16982498504099,50.56715994144852],[-118.16989957520327,50.56738384122486],[-118.16990124040053,50.56749638796783],[-118.1698562205222,50.56770336802405],[-118.16976968351233,50.5680463921019],[-118.16971354822624,50.568235638375],[-118.16968313920493,50.56830806314568],[-118.16962495038092,50.568407333162995],[-118.16953274139168,50.56853866604361],[-118.16944326170457,50.56867471126097],[-118.16937122894102,50.5687922203791],[-118.1693236637152,50.5688916803784],[-118.16931090094214,50.56899528941514],[-118.16923711777794,50.56919402717814],[-118.16905210967423,50.56947020941059],[-118.16888688551194,50.56967377657769],[-118.16882264608928,50.56974664025642],[-118.16880860872486,50.569755817544234],[-118.168952794625,50.569835488334334],[-118.1692583240991,50.56999831018643],[-118.16944023904044,50.570095903707745],[-118.16946821758766,50.57010861874955],[-118.16951764527796,50.5701307492533],[-118.16958227959542,50.57015735270049],[-118.16961279410539,50.5701657182417],[-118.16973124215573,50.57020968186633],[-118.17004613131812,50.570318927518095],[-118.17033869796452,50.57042376613108],[-118.17058037594978,50.57052501844518],[-118.17086446482553,50.57064790434172],[-118.17111648274845,50.57077134446042],[-118.17133194294172,50.5708905116383],[-118.1714401611629,50.57095238928382],[-118.17151952122587,50.570996410277935],[-118.171669272976,50.57108494856871],[-118.17176939928778,50.57114230425305],[-118.17179367625485,50.57115587803585],[-118.17181171183238,50.57116450052603],[-118.17182263156278,50.57117318090387],[-118.17189916549688,50.57121304285327],[-118.1720577893969,50.571301646628235],[-118.1722628252599,50.57142967492374],[-118.1725092980713,50.571584925855795],[-118.17277010265674,50.57173949778346],[-118.17302135265514,50.571867397935584],[-118.17322853363872,50.57197298682954],[-118.17338238451842,50.572048253078684],[-118.17357043910305,50.57201915558917],[-118.1739839768386,50.571929714776495],[-118.17456716997148,50.571977666368774],[-118.17515068941037,50.572196819130426],[-118.17572526181036,50.572487640016774],[-118.17603990165165,50.57265956137117],[-118.1760857274747,50.57268200369914],[-118.17612453384464,50.57270395057165],[-118.1762155049025,50.57275273713472],[-118.17627507928124,50.57278801795344],[-118.17632353732664,50.57280555697652],[-118.17644843419673,50.572853357132026],[-118.17657957350053,50.572906108154136],[-118.1766025978931,50.57297778541666],[-118.17654618081286,50.573117867447486],[-118.17650645056071,50.573325220338],[-118.17650210869766,50.57352320252642],[-118.17650848031091,50.57368014443477],[-118.17651533729845,50.57382412248465],[-118.17652736022218,50.57395885663415],[-118.17656384948829,50.57407554915577],[-118.17662227136816,50.57417854070678],[-118.17671774817312,50.574303346058066],[-118.17683341248876,50.57445500259212],[-118.17692157540945,50.574570821971015],[-118.17698058054062,50.57466029585419],[-118.17701501326093,50.57472768889595],[-118.17702145852118,50.57477220876329],[-118.17701924722209,50.574907077007076],[-118.17702242782043,50.5751637824674],[-118.17703696062839,50.5755998086556],[-118.17706841614877,50.57626469318355],[-118.17712676630387,50.576867081368974],[-118.17720522251383,50.57714039654298],[-118.1772707682025,50.5772433202076],[-118.1773144770274,50.57735939125162],[-118.17736287948706,50.57753002711234],[-118.17743196372044,50.57774505717547],[-118.17757564676957,50.57799076816477],[-118.1778343975656,50.578289801180816],[-118.17805735567815,50.57853941403671],[-118.17820823045614,50.57867264443253],[-118.17839293938393,50.578805441377426],[-118.17853942883096,50.578943450676135],[-118.17858361477816,50.57900589027196],[-118.17858498600674,50.57902858428987],[-118.17857650872052,50.579046624478586],[-118.17841809226876,50.57916030304312],[-118.17811012441229,50.579357200225346],[-118.17793328137945,50.579484826858916],[-118.17786650854111,50.579562035565296],[-118.17771882592861,50.57971600684348],[-118.17750990999285,50.579884874374486],[-118.17708861680246,50.58002857881977],[-118.17643700754488,50.58017863622779],[-118.175974943179,50.58029121315969],[-118.17580938354958,50.58033376331256],[-118.17563466235566,50.58039826404014],[-118.17535512853881,50.58051356021948],[-118.17513176063669,50.580632810718946],[-118.17495333795434,50.58072868557792],[-118.17473249324188,50.58080292777718],[-118.17455572759616,50.58089947945378],[-118.17450192687255,50.58103465598975],[-118.17442510794893,50.58113883126303],[-118.17422258989308,50.58119967784264],[-118.17401363480502,50.581246502261635],[-118.17388609638256,50.58127478556553],[-118.17376206820666,50.58130331651245],[-118.17359573481761,50.58142151038233],[-118.17349864446477,50.58161125419092],[-118.1734761358124,50.58171983211789],[-118.1734704836698,50.581742030526186],[-118.17344493795764,50.58175604544411],[-118.173192103566,50.581830277593134],[-118.1727347933027,50.58195617624909],[-118.17249161442905,50.58206668403371],[-118.17247554495066,50.58221978142614],[-118.17247508197902,50.58239543906905],[-118.17229899054908,50.58251859183198],[-118.17181261356201,50.58265825339218],[-118.17125252277563,50.582884227904515],[-118.17089320913371,50.583130595879545],[-118.17078254162305,50.58323519931815],[-118.17070267751093,50.58324481778564],[-118.17051798709846,50.58326454259643],[-118.1703308606688,50.58329821398317],[-118.17016323790176,50.58336264809751],[-118.17001102464042,50.58344058974223],[-118.16987655702637,50.58351866355469],[-118.16978323946091,50.583564608124796],[-118.1697214192883,50.58362351530184],[-118.16963980488038,50.58371436035683],[-118.16958588352836,50.58376873634519],[-118.16956764898029,50.58379174539913],[-118.16954892852952,50.5838277091616],[-118.16948174792304,50.58392747353676],[-118.16937117458096,50.58407219752121],[-118.16928975427187,50.58417209507341],[-118.16922081727031,50.58427173528451],[-118.16915685141036,50.58435308815199],[-118.16912223495757,50.58439866753446],[-118.16909200719006,50.58443946790743],[-118.16905436938637,50.58450234241137],[-118.16900990636768,50.584583942722475],[-118.16895900856726,50.584692205521826],[-118.16891396314044,50.58482799858712],[-118.16888393667466,50.58498970956324],[-118.16886999960377,50.585120350938126],[-118.1688664911789,50.585160778579215],[-118.16887634229036,50.58520610881431],[-118.16889390140591,50.58530903747367],[-118.1689082419989,50.58538970177188],[-118.16891945745319,50.58541705038126],[-118.16893652661787,50.58546175144858],[-118.16897349336045,50.58559599682211],[-118.16903455115644,50.585775439073785],[-118.16908507291978,50.585882955239605],[-118.16916309535621,50.58598563426191],[-118.1693025610008,50.58616383418225],[-118.16943997999961,50.58633341073458],[-118.16955701473503,50.58646709102634],[-118.16957691546385,50.58655662619698],[-118.16947569437576,50.58664777693375],[-118.16932980991967,50.586770799509644],[-118.16919445648188,50.586884396799],[-118.1691090319703,50.58696649398734],[-118.16900429818355,50.587057396315416],[-118.16884504942485,50.58717552455477],[-118.16869857709378,50.58731206339369],[-118.16853884090698,50.587453314678115],[-118.16835442958185,50.58756287698794],[-118.1682318435631,50.587613541879655],[-118.16810213880241,50.58766426428479],[-118.16786915793965,50.58775683706327],[-118.16762125422431,50.58785344431822],[-118.16742269645819,50.58793206903244],[-118.16725602760721,50.58800108678774],[-118.16695974878172,50.588089756243214],[-118.16639644521885,50.58829288693333],[-118.16591027953235,50.58856303823891],[-118.1657153221458,50.58872270511434],[-118.16552797244637,50.58885917280812],[-118.1652306082551,50.58905566902482],[-118.16503369882211,50.58916547351414],[-118.1649769376932,50.589175021611474],[-118.16460681899537,50.58922853127053],[-118.16374330485746,50.58934942426806],[-118.1630293001964,50.58942833319771],[-118.16279532976027,50.589434964939194],[-118.16276675483451,50.58943576561967],[-118.16277514118327,50.58944878697074],[-118.16279493462022,50.58949821016882],[-118.16281492400203,50.58955667718738],[-118.16283178956763,50.589633010504365],[-118.16284855600955,50.589740403909566],[-118.16286922224965,50.58986615093367],[-118.16298009968969,50.59004515863566],[-118.16321435091862,50.59024023353793],[-118.16339301797585,50.590346639176964],[-118.16344070781508,50.590368656708506],[-118.1636490340889,50.59032575449007],[-118.16405242066115,50.59025482982076],[-118.16420378466765,50.590293772062886],[-118.16408332713398,50.59047450996715],[-118.16403006304283,50.590718188724296],[-118.16417273769166,50.590959333687564],[-118.16435920936674,50.59113295127624],[-118.16450969643239,50.59124809273669],[-118.16468661498287,50.5913543721311],[-118.16484490615794,50.591424878560865],[-118.16501412396856,50.59146338139062],[-118.1652671212906,50.591510631992975],[-118.16552655620914,50.59156172637601],[-118.16570621044401,50.591591365978786],[-118.1658628471298,50.59163067796407],[-118.16604688978788,50.59169622237893],[-118.16623571283012,50.59177509309409],[-118.16645438168155,50.591876409259264],[-118.16669489939059,50.592035761554186],[-118.16695658481818,50.59222654522717],[-118.16720334770591,50.592350181488506],[-118.16737832515037,50.59240660452564],[-118.16760509434535,50.59251244910341],[-118.16798539036009,50.59274663230088],[-118.16832696743467,50.59296848031313],[-118.16844176933564,50.59304381862682],[-118.16858417675742,50.593154432574245],[-118.16893795625796,50.593438712774145],[-118.16910476345747,50.593765722279706],[-118.16893204179587,50.594072716640106],[-118.16879930601364,50.59430343495395],[-118.16888309965948,50.59446471197122],[-118.16897489572435,50.59466157050615],[-118.16887464157239,50.59495051488893],[-118.16877214477644,50.59529297365361],[-118.16877040366394,50.59556740646125],[-118.16878777755805,50.595783306362314],[-118.1688239782339,50.59600335563895],[-118.16885978428616,50.59616463338832],[-118.16886739581426,50.59622279356635],[-118.16884837955452,50.59629093261559],[-118.16881590660653,50.596466596890224],[-118.16878967964753,50.5966777186857],[-118.16883904625091,50.5968529425832],[-118.16895552207095,50.59700013881851],[-118.16902702643863,50.597089366181194],[-118.1690377587062,50.59712966889361],[-118.16904234674209,50.5971746176282],[-118.16905171690946,50.59727357667866],[-118.16905367501337,50.59739460951367],[-118.16902656124306,50.597458226824315],[-118.16899212782737,50.59747218312514],[-118.16896784141301,50.59749927521269],[-118.16893331526323,50.59758496627856],[-118.16887976833235,50.59769813022292],[-118.16881939273075,50.59777916700853],[-118.16878076605119,50.597806945873174],[-118.16874935769467,50.59783410452467],[-118.16870487884259,50.59787502844205],[-118.1686717145559,50.59790206309713],[-118.16860245929718,50.59795253617239],[-118.1684728237905,50.59804337974893],[-118.1683810368315,50.59812106860814],[-118.16834465315519,50.59816652301322],[-118.16827218092169,50.598265912996126],[-118.1681373781787,50.598447340302684],[-118.16802598461615,50.59859652474505],[-118.16796492315432,50.59869164046393],[-118.16791420228834,50.59880895358556],[-118.16787664926737,50.59892211665807],[-118.16784826746643,50.599043827263074],[-118.1678264209409,50.59917899717983],[-118.1678071091293,50.59926915184047],[-118.16777218865114,50.59933673708367],[-118.16769766369582,50.59942751243178],[-118.16761835735826,50.59950496129457],[-118.16753300432725,50.59958649351739],[-118.16745038093819,50.599672746901575],[-118.16741955735326,50.59976773789271],[-118.16741887820749,50.59989366429697],[-118.16740736970081,50.6000001878859],[-118.1673942993742,50.60006479653736],[-118.16742083652973,50.600207902309116],[-118.16749858915736,50.6004139463956],[-118.16755088068695,50.60056226017488],[-118.16756171185219,50.60064267518011],[-118.16757380999043,50.60070567141957],[-118.1676162483919,50.600849339364544],[-118.16768941868817,50.60105110045038],[-118.16772200432561,50.60114943883046],[-118.16772425058036,50.60120778035011],[-118.16774571724616,50.601369735200244],[-118.16779215787689,50.60153119366547],[-118.16783732678208,50.60159822412203],[-118.16787820377421,50.60162878719858],[-118.16796688198049,50.60169098066899],[-118.16809878006838,50.60181101887379],[-118.16818375795363,50.60198592693398],[-118.16817917803776,50.60213418350705],[-118.16815869445729,50.6022106970056],[-118.16815059956032,50.60224684111004],[-118.16813635804716,50.60228764008765],[-118.16822288926066,50.60229092937042],[-118.16841605284418,50.60236557902463],[-118.16850415733336,50.602593810242695],[-118.1684908006777,50.602792290244],[-118.16848485638826,50.60291784427053],[-118.16841393760606,50.60304898878659],[-118.1682681908518,50.603140385433],[-118.16809512632626,50.603204996528504],[-118.16788098893294,50.60322998282429],[-118.16769318740438,50.60315515070844],[-118.16755124167504,50.60314342905753],[-118.167348813016,50.603325169521284],[-118.16718560417205,50.60358762968918],[-118.16715536440664,50.60378095861225],[-118.16717956126683,50.60390695069662],[-118.16719946647152,50.60407783371893],[-118.16725351954058,50.60433812624889],[-118.16751118012475,50.60454218360583],[-118.1679109856691,50.604614475479295],[-118.16817284170092,50.604692844617155],[-118.16828650523782,50.6047952068565],[-118.16825187854278,50.60499331464177],[-118.1680784263368,50.60531437396484],[-118.16796682157114,50.60549517912567],[-118.16793238464554,50.605549800617894],[-118.16788838504685,50.60560827539873],[-118.16786643599083,50.605662648676955],[-118.16790273168974,50.605729612423715],[-118.16800273631924,50.60581859109421],[-118.16812488885729,50.60590291456198],[-118.16824128563319,50.60596931439144],[-118.16837094965616,50.606031010489026],[-118.1685493004863,50.60611930069721],[-118.16873857965722,50.60621627092314],[-118.16889975985046,50.60629092006015],[-118.1690271814587,50.60633493985171],[-118.16921275452387,50.60642260875433],[-118.16946955337492,50.60655032987718],[-118.16959561165334,50.60661233016126],[-118.16949932081599,50.606685182968775],[-118.16926936829107,50.60683108869696],[-118.16903092369039,50.606923852379985],[-118.16884613533799,50.60694357385349],[-118.1686959832049,50.606958391536466],[-118.16853119562955,50.60699591163099],[-118.16833811562415,50.607042723627806],[-118.16818767081207,50.607089725076925],[-118.16808074116783,50.60716239524178],[-118.16795917845512,50.60729843339828],[-118.16784746862679,50.60743912601881],[-118.1677062942609,50.60757546966638],[-118.16743720953598,50.60780277840364],[-118.16709270205165,50.60808521273778],[-118.16682195297912,50.60828132751916],[-118.1666293530725,50.60838636244288],[-118.16642377482172,50.60851477689177],[-118.1662885437471,50.60863742020862],[-118.16621722089116,50.60875044841412],[-118.16607125557702,50.60891413785704],[-118.1658672337453,50.609104802888915],[-118.16573356063795,50.609218516924734],[-118.16568116463941,50.60930463522898],[-118.16561735109097,50.60943571053132],[-118.16552290008106,50.60954880449205],[-118.16538005323882,50.60965396147168],[-118.16523730253405,50.60975856468745],[-118.16517778249687,50.60980407472136],[-118.16516373188972,50.60981325110506],[-118.1650972846112,50.609867871084596],[-118.16497609655636,50.60998133623494],[-118.16484495562635,50.61009070886452],[-118.16466004979513,50.61022284029226],[-118.16441708602382,50.61039210606506],[-118.1642130539932,50.61054208446331],[-118.1640403445239,50.610624793728874],[-118.16375259418014,50.610704466361554],[-118.16340717434863,50.61082920883436],[-118.16316859746128,50.61095301882537],[-118.16304027788082,50.61106654798425],[-118.16297528426891,50.611183980686675],[-118.16292346406848,50.611297255044356],[-118.16285691109307,50.611382941805324],[-118.16282997777022,50.611414934757434],[-118.16284539362968,50.61142845200926],[-118.16286226744711,50.61150478330792],[-118.16286507935594,50.6117428103013],[-118.16291891584919,50.612075398549344],[-118.16308712174452,50.61230308027095],[-118.1632984658869,50.6124264731251],[-118.16345829204933,50.6125191105302],[-118.16355781697068,50.612590541021845],[-118.16365314534572,50.612665633981166],[-118.16376262365064,50.612741156744185],[-118.16388176361757,50.61281227290405],[-118.16406481402026,50.61294496409996],[-118.16426640381981,50.61311398930241],[-118.16437022365811,50.613211708524965],[-118.16445355375053,50.613274085373966],[-118.16468266418258,50.61343827396609],[-118.16499305846354,50.6136460558989],[-118.16521836916459,50.61376082215749],[-118.16541616330298,50.613799084546535],[-118.16562039943058,50.613851350447575],[-118.16575213243911,50.613921663017855],[-118.16585546888518,50.61400183828784],[-118.16599783949255,50.614113006313126],[-118.16623115497968,50.61430404345508],[-118.16652175409543,50.61454374810301],[-118.16669545157562,50.614699499922644],[-118.16676297932948,50.61477092745136],[-118.16681235670511,50.614824126052625],[-118.16686427130693,50.61487298439064],[-118.16692252975402,50.61492624043606],[-118.16699522921087,50.61498843376179],[-118.16716395367503,50.615121797168555],[-118.16737688429299,50.61527692750018],[-118.16753546032302,50.61539715463889],[-118.16767988823939,50.615516943214736],[-118.16781690022493,50.61562829924945],[-118.16791048717982,50.615703255379316],[-118.1680049521169,50.61578336213852],[-118.16812927930441,50.615885913489166],[-118.16825448433661,50.61598344688206],[-118.16833138369853,50.61603180801867],[-118.16836758987347,50.61605865027749],[-118.16845796027178,50.616192699426385],[-118.1686080596656,50.616442817152894],[-118.16869306351644,50.616577056630405],[-118.16869862719365,50.616585918495325],[-118.16888843261313,50.616588584971076],[-118.16930551831541,50.61659316300692],[-118.16965595130901,50.61657212971527],[-118.16996315340214,50.61656443185582],[-118.17027474912027,50.61659263726228],[-118.17052964612888,50.61659932438218],[-118.1708226006165,50.61659174869009],[-118.17111468553793,50.616660369622245],[-118.17136159841334,50.61682466705917],[-118.17155698684672,50.61698871831301],[-118.17165019002279,50.617055743731726],[-118.17171401491116,50.61707719375547],[-118.17187260049603,50.61711605750506],[-118.17214224314068,50.61718084154394],[-118.17243131706711,50.617317604959794],[-118.17266116483567,50.61750837114977],[-118.17285109610143,50.61767316434402],[-118.17299612902853,50.61777942900735],[-118.17311675722138,50.61783200033476],[-118.17324840910568,50.61786219222391],[-118.1733111625748,50.61787960671789],[-118.17331965557324,50.61790224175348],[-118.17336807385686,50.61799152306061],[-118.17344059852957,50.61808532456566],[-118.1734957473109,50.618156442957314],[-118.1735792040166,50.61825892407261],[-118.17363260971098,50.618411266397565],[-118.17357789112397,50.61859212814753],[-118.17352287557613,50.61875433142645],[-118.17353206347333,50.61884423511056],[-118.17355832982787,50.618938172339426],[-118.17357913282127,50.61903284501173],[-118.17358382435258,50.61907723880505],[-118.1735842176234,50.61909534363401],[-118.17358080262005,50.61910471076092],[-118.17357748589806,50.61911351539061],[-118.17357846907014,50.619158777460456],[-118.17358492381737,50.619243969051794],[-118.17358854199219,50.61928432824968],[-118.17359040192675,50.61932457248196],[-118.17360164822587,50.61946376380663],[-118.17373031670489,50.61971461907381],[-118.17398020496246,50.62000452770919],[-118.17416725486382,50.62034875457895],[-118.1742682308393,50.62070724776929],[-118.1744030462792,50.620912781875546],[-118.17456721893744,50.62100118589895],[-118.17466999833557,50.62105418620824],[-118.1747181200009,50.62109430287674],[-118.17476390349384,50.621147803369276],[-118.17483408715339,50.62121433149938],[-118.17494028842594,50.62129864714536],[-118.175060731388,50.62134216375828],[-118.17524021717918,50.62136328809743],[-118.17545728518314,50.62142378530238],[-118.17565395614353,50.62148906245649],[-118.1758540359609,50.6215144667399],[-118.17608036442452,50.621511776672286],[-118.17626980564634,50.62153699959062],[-118.17639708045081,50.62157195776165],[-118.17653617555438,50.621651242201466],[-118.17668182182915,50.62178465869949],[-118.17676821269366,50.621860236457536],[-118.17682785411473,50.621895505960886],[-118.17689833041796,50.621940017276614],[-118.17693991354717,50.62196667450802],[-118.17695894755083,50.62197988374326],[-118.17697241714762,50.621984222652735],[-118.1769995536846,50.622001952843426],[-118.17715426261329,50.62206313019128],[-118.17746358193314,50.62218605565587],[-118.17764885211147,50.62229627784951],[-118.17770753815489,50.6224083062808],[-118.1777511834738,50.62248425957593],[-118.17778681829853,50.62252461520723],[-118.17795442676629,50.622644329527176],[-118.17823821581743,50.62289311185344],[-118.17839003971712,50.623103226980895],[-118.1784635904212,50.62331346544498],[-118.17857902446886,50.623569027588864],[-118.17865549597803,50.62375236529822],[-118.17870180120352,50.623904762511174],[-118.1787282917381,50.62404841505083],[-118.17873458160817,50.62420590083387],[-118.1787448773829,50.62438118533338],[-118.17878736414518,50.624484162344665],[-118.17891222076639,50.62456357806117],[-118.17905328422752,50.624652035226],[-118.17918263296124,50.62473628630789],[-118.17928705260094,50.62501422698148],[-118.17927907187325,50.625436779201465],[-118.17924066934292,50.625626139114985],[-118.1792444792694,50.625634876554834],[-118.17928744021168,50.62568422552507],[-118.17936418194812,50.625764199744076],[-118.17941153328225,50.62580877842438],[-118.1794340851105,50.62582222584598],[-118.17945234192324,50.62583989886007],[-118.17946327640468,50.625848577915654],[-118.1795123864446,50.62589327141846],[-118.17958180499053,50.62596426044482],[-118.17969154031482,50.626048818674654],[-118.17984735312379,50.626154700052744],[-118.17993785477924,50.626216997020464],[-118.17995786892445,50.626234793734376],[-118.17996978106284,50.62624806079413],[-118.17997534815876,50.626256921992905],[-118.17998442764882,50.626266039700276],[-118.18000795734574,50.62628407505593],[-118.18011398231036,50.62635933293364],[-118.18029664149716,50.62647445314949],[-118.18044631011465,50.62658498011743],[-118.1805903268427,50.626727881750746],[-118.18072146569585,50.62688342438276],[-118.1807625970142,50.62700439011348],[-118.18076068093244,50.62711723460766],[-118.18076910556026,50.62721160105949],[-118.18076678023246,50.627265667383064],[-118.18075089643943,50.62734645398582],[-118.18068321684979,50.62754052991065],[-118.18060123557642,50.62788781966794],[-118.1805578243982,50.628279059444985],[-118.1804756570602,50.628657961027244],[-118.18036818730256,50.62897802994377],[-118.18029259749517,50.62917663686705],[-118.18021417570293,50.629371085434414],[-118.18015322138461,50.62954698863669],[-118.18014875454365,50.62962349983647],[-118.18017707251063,50.62965486941652],[-118.18018996318006,50.62967272443551],[-118.18024112991563,50.62972603991879],[-118.18036270013114,50.62985493161935],[-118.18042580594714,50.63000286073928],[-118.18037870741696,50.63016053356568],[-118.18032877561029,50.63031405702117],[-118.18034472123969,50.63042646927182],[-118.1803745117724,50.63047996886535],[-118.18038281265237,50.630493550741626],[-118.18038662321321,50.630502288091385],[-118.18043437668,50.63056497063936],[-118.1805056976137,50.63075754003486],[-118.18051465514958,50.630991468168325],[-118.18047466847406,50.63110840907563],[-118.18045056732198,50.631144563770405],[-118.18044100511707,50.63115857743633],[-118.1804376888493,50.631167382142806],[-118.18043437258021,50.63117618684914],[-118.18061577974956,50.631278219147184],[-118.181020967117,50.631494305648786],[-118.18128059105841,50.63165776603179],[-118.18142727517461,50.631836436038036],[-118.18161655756359,50.6321175272359],[-118.1816617191837,50.632296954696564],[-118.18158179777097,50.63238792694137],[-118.1814885284164,50.63255534484273],[-118.18145201183843,50.6328256116718],[-118.18147408749698,50.63315763328222],[-118.18148239505648,50.63347681777481],[-118.1814688018155,50.633697298189205],[-118.1814582024771,50.6338191287671],[-118.1814675332868,50.6339898229916],[-118.18147455455131,50.63425524731886],[-118.1814443692346,50.634489246159625],[-118.1813917011616,50.63463805752999],[-118.1813275009332,50.634751033378954],[-118.1812159763979,50.63494146013772],[-118.18109060540796,50.635180613003236],[-118.18104221631125,50.635284534274255],[-118.18106633093981,50.63528906168811],[-118.18118280950719,50.63531477252424],[-118.18136919363188,50.63535784326464],[-118.18151691484074,50.63538801366567],[-118.18185001540499,50.63537531956549],[-118.18246934878702,50.63533307068845],[-118.18287781186795,50.63530647422299],[-118.18296079639107,50.63531005800515],[-118.18297163565235,50.635319299112076],[-118.18304018313044,50.63535462986369],[-118.18342195415721,50.635480931618815],[-118.18409917329258,50.6356675751101],[-118.18469046134568,50.635796195024575],[-118.18512259458261,50.63586841713984],[-118.18546879133315,50.63588261875893],[-118.18581567079231,50.635892908613734],[-118.18616050906354,50.635925088807184],[-118.18639451712976,50.63590936506315],[-118.18656289224141,50.63583139411878],[-118.18669329479025,50.63576713667828],[-118.18680572921657,50.63569370612473],[-118.18694851052288,50.635589087463146],[-118.18716539298325,50.63548798444154],[-118.18739245288462,50.63544069655468],[-118.18754093817701,50.63542572158015],[-118.18765223088093,50.63541999623301],[-118.18780478910269,50.63535108756376],[-118.18797020471153,50.63521867749364],[-118.18805227325304,50.63514593799617],[-118.18807852702807,50.635128009921715],[-118.18813727855311,50.63508695331635],[-118.18819788388907,50.63504546676702],[-118.1882216013627,50.635031879275274],[-118.18823897016924,50.635013895364],[-118.18823064475046,50.634959649933236],[-118.18819377957124,50.63483447115332],[-118.1882078755534,50.634712887402486],[-118.19497836954802,50.634610664690655],[-118.19793150607117,50.63677385095076],[-118.19946277660264,50.639339211440884],[-118.19981811032031,50.64424352786961],[-118.19981491344485,50.648346501105415],[-118.20134051475421,50.64988501455488],[-118.20313857687081,50.652230041377706],[-118.20430600287118,50.65598978910204],[-118.19999141034795,50.658443954758575],[-118.1947864592968,50.65889738216472],[-118.18956744863263,50.659756859294106],[-118.18829895677737,50.65992692914536],[-118.18281948119693,50.66186816069758],[-118.17318913976605,50.664659521098834],[-118.17299898710337,50.67030562174247],[-118.17642439475532,50.67173084850008],[-118.18315977372865,50.67247377837427],[-118.1893624274723,50.67333192048067],[-118.19548300532543,50.67457989255915],[-118.20096341830832,50.67623332299749],[-118.20628022372156,50.67817377466511],[-118.20707775158422,50.67874709705371],[-118.20959244388057,50.68222035964616],[-118.20923347483696,50.68558984892912],[-118.20679898490489,50.68974975534502],[-118.2031156784683,50.69493984869652],[-118.20166527095351,50.698190400618024],[-118.2020250029142,50.705034240910024],[-118.20219965354994,50.706402630039435],[-118.20381456900235,50.71267128552613],[-118.20480924690308,50.71906526013593],[-118.20587443228438,50.72522009087455],[-118.2058809260394,50.72681782506633],[-118.20444074735607,50.72984144360751],[-118.20290630835626,50.73389429656282],[-118.20515781130551,50.736684590962575],[-118.20929044039909,50.73834135889047],[-118.21064386412404,50.73867783103703],[-118.21630936662079,50.74021680604928],[-118.22325127487865,50.74278331836022],[-118.22748222135199,50.74552096041582],[-118.23090961989217,50.74837005939072],[-118.23216168466378,50.75281858722905],[-118.23126705724728,50.75418841313003],[-118.22946431739983,50.756922589017],[-118.22910450923672,50.75989187049642],[-118.2293702504637,50.76131668191023],[-118.23108536681745,50.76285956223272],[-118.23431783251324,50.764622871692865],[-118.23900272280034,50.76616030913862],[-118.24342043362002,50.768497801219404],[-118.24549650215668,50.77100696612163],[-118.24703223415065,50.77465593937416],[-118.24767000625843,50.775760910251904],[-118.25270744378177,50.7814746476584],[-118.25709335858691,50.78321566980083],[-118.25761742076048,50.792754109692005],[-118.26098815923572,50.79403636715028],[-118.25465028601057,50.79747622500087],[-118.25966631401232,50.79832166473041],[-118.25975535139132,50.79999996882443],[-118.26000859369165,50.80475491080064],[-118.26464673436396,50.80794896161951],[-118.26613975623381,50.81126288210923],[-118.26596753624354,50.81143219882367],[-118.2628089181168,50.814569615065004],[-118.25973611470141,50.8190207655612],[-118.26064811009263,50.822903688541814],[-118.26451948055497,50.82398038434548],[-118.26668641280689,50.82392738571552],[-118.27055962077037,50.82392316219116],[-118.27408422650291,50.82551812522704],[-118.27327766241369,50.829512151549444],[-118.27255232412662,50.830481154598274],[-118.27011183419981,50.833675853696995],[-118.26822014146482,50.83823668958119],[-118.26994213492175,50.843142790440965],[-118.27345374008036,50.846222948213985],[-118.27579944248077,50.84695906379913],[-118.28167610755769,50.84769774973909],[-118.28510690913284,50.84935174635465],[-118.2854703481116,50.8499776694187],[-118.28709481986769,50.85248692192191],[-118.28980382924232,50.857158019000025],[-118.29143501553222,50.8608708816564],[-118.29242650942585,50.86497598226044],[-118.29161789211051,50.86948301615357],[-118.28900416893455,50.87284789042597],[-118.28394392503274,50.87604650408137],[-118.27988586819255,50.87758640960698],[-118.274547531442,50.87941198144368],[-118.27238091348175,50.880272216079824],[-118.26985399707216,50.8823830234185],[-118.26543126572913,50.88552116567786],[-118.25910356485731,50.88660788602126],[-118.25332102690213,50.88678005620513],[-118.25160355746236,50.889576828783625],[-118.25322746494584,50.890771364947646],[-118.25557966954908,50.89139976420575],[-118.26189317007065,50.89328058827083],[-118.26895397002826,50.894816928961745],[-118.2752755319454,50.895667011208474],[-118.27680752869118,50.89401410401916],[-118.27925351860152,50.89195909214067],[-118.28403489586533,50.88939123340037],[-118.29063762307699,50.88778796982641],[-118.29668312919661,50.88749989225209],[-118.2971413229191,50.88749817668488],[-118.30047516510712,50.88749938824301],[-118.30209849720381,50.88771065854389],[-118.30535179910544,50.885611436053466],[-118.30951285171837,50.885378596989],[-118.31168730655239,50.88538094908215],[-118.31340072389605,50.88531877264689],[-118.31692405635448,50.885547098551065],[-118.32025606599615,50.88331797569517],[-118.32576490021653,50.88240202429775],[-118.3342600399615,50.88325139279758],[-118.33904617246215,50.88495344902819],[-118.34348377581733,50.885522547237976],[-118.34980589527422,50.88511680192549],[-118.35376939462067,50.883115233294475],[-118.35521871028565,50.88317323144917],[-118.36245305300953,50.88578645150227],[-118.3672445296476,50.88754742514167],[-118.37392419109888,50.887141596961655],[-118.38187533183503,50.88490603040607],[-118.38422562126497,50.88404616724699],[-118.3865695778383,50.88347375721372],[-118.39297742195582,50.88289476036476],[-118.39938892411664,50.882879635082745],[-118.40689418289517,50.88349683390168],[-118.41612085256905,50.88593470020635],[-118.42398204665032,50.889171621142516],[-118.42923301333376,50.890936631896935],[-118.43547646146921,50.89486230641884],[-118.43965312295416,50.8995887178093],[-118.44154973665431,50.90089173227059],[-118.44788617073134,50.902596473155675],[-118.45394662418003,50.902639544854885],[-118.45855615447007,50.9026306741288],[-118.46469757191288,50.90261766528539],[-118.47544341744656,50.90254022428636],[-118.48330727090394,50.902749419733816],[-118.48611692140486,50.90365296773257],[-118.49563507126781,50.908140320048574],[-118.50379408889161,50.91348438303628],[-118.50750479027546,50.91609811101052],[-118.5105813239506,50.917294268023475],[-118.51792972221388,50.92041255291857],[-118.5249069301072,50.92387118619771],[-118.53097297753898,50.92602620694713],[-118.53342128072767,50.92704873183857],[-118.53730721110048,50.9277805443668],[-118.53767631522766,50.927852585996575],[-118.53102513776413,50.9316313282183],[-118.53584130791567,50.93631448559261],[-118.54208329673779,50.939279631543094],[-118.54480560658577,50.93717819805167],[-118.54931190048151,50.936381899744944],[-118.55945562469016,50.94045691268998],[-118.56152003126654,50.93744675253212],[-118.56636582856476,50.93901840942456],[-118.57177116863457,50.93804563021919],[-118.57829103272843,50.939348660146905],[-118.57793587567457,50.93648923539032],[-118.5834508481028,50.9364114863281],[-118.58830854801721,50.925465744345956],[-118.59375446475404,50.92571878346785],[-118.59354813075991,50.92453974712603],[-118.596432410048,50.92555130995347],[-118.59977394656765,50.92491187529277],[-118.60617884608966,50.9235821777848],[-118.61168161695016,50.92207965614384],[-118.6134841413061,50.921050896592625],[-118.61364100634935,50.91648451651555],[-118.61288769451512,50.912487213574416],[-118.61305705420808,50.91112197953593],[-118.61272319159204,50.90313254369413],[-118.61367928059323,50.89650824214517],[-118.61588558120829,50.89045074597415],[-118.62072017072602,50.88518537123781],[-118.62746206935647,50.88065748257115],[-118.635568514957,50.87668876513266],[-118.64042279455549,50.87370338390908],[-118.64167338186516,50.87227786751302],[-118.6409141671169,50.86856526797239],[-118.63853238161775,50.86463788989651],[-118.63506673816522,50.85922805429545],[-118.63323097575613,50.856326357651874],[-118.63184661197768,50.85233810382926],[-118.6319242991559,50.850225747534196],[-118.63886698518891,50.84946082331593],[-118.6464580995627,50.85091321735707],[-118.64971974813473,50.85193165603626],[-118.65205960433018,50.85117427350607],[-118.6588042701965,50.847444729562305],[-118.66364298199531,50.84400323184011],[-118.66831589652114,50.84113080825014],[-118.66416761254308,50.83195907236518],[-118.66214644438021,50.827402237402836],[-118.66389876303349,50.82083045514597],[-118.6695494843171,50.81772777507126],[-118.67333218020318,50.816170379330806],[-118.68250859800757,50.814195960729876],[-118.68494021419325,50.81373355630922],[-118.69413338813152,50.81260867347277],[-118.70494810962244,50.81256428340692],[-118.70748262836831,50.81260531379181],[-118.71626215486968,50.81610608658737],[-118.72011535328717,50.823115786502335],[-118.72021567429121,50.824250945030656],[-118.72437509267836,50.8247519413574],[-118.73592446539155,50.82520935113393],[-118.7404395109337,50.825193425669305],[-118.74918495949036,50.8249794406734],[-118.75775263800182,50.824539952245324],[-118.76163937129516,50.82549073981192],[-118.76878172038951,50.82688376558429],[-118.77500949053427,50.826343750812455],[-118.77607224217344,50.825545858898614],[-118.78121695684725,50.82617053929654],[-118.78197270591411,50.8201328060924],[-118.78499084029757,50.81522093797787],[-118.78615560940636,50.813369889482416],[-118.7869060326564,50.8134962850453],[-118.79571762930155,50.81049965091788],[-118.80000331765802,50.80862037991776],[-118.80263569886165,50.807465419964664],[-118.81205189479232,50.80113188716468],[-118.81504771948849,50.800007999001714],[-118.83481617078955,50.79259188613031],[-118.82943496420455,50.777828422720155],[-118.8232484056665,50.7804907419405],[-118.8241539715404,50.779859530504666],[-118.8261144685908,50.77751149893787],[-118.82698367120807,50.775563225691265],[-118.82819263700222,50.77087705136117],[-118.82950526902592,50.76767531175935],[-118.83397917648546,50.76565363663553],[-118.83973916768116,50.764767903396866],[-118.84669087206008,50.76569852137634],[-118.85011677105695,50.76647642442869],[-118.85261996176179,50.765090444087456],[-118.85733434297227,50.760218142190844],[-118.86676007270628,50.757080035537655],[-118.87440660757434,50.75606175183105],[-118.8766514928819,50.7561082659423],[-118.8811926577037,50.752031464600655],[-118.88476131064837,50.74904453410547],[-118.88813435859132,50.7487166050563],[-118.89114432510574,50.74843084587795],[-118.89882796636238,50.75021411841745],[-118.90170610895534,50.75030954115281],[-118.90692280081079,50.75587536227107],[-118.90799143331084,50.7618053920072],[-118.90809309769132,50.76197322223958],[-118.91322061661494,50.767934562465754],[-118.91866723636646,50.77144189495369],[-118.92175299689127,50.77239503756043],[-118.92791384587503,50.774641120699016],[-118.93170734825324,50.77599033167264],[-118.9351514443431,50.77693531915369],[-118.94022874323143,50.7791869903761],[-118.94505636972052,50.782299843898315],[-118.94984013601625,50.78289412958713],[-118.953249538553,50.78144319974018],[-118.95574631598241,50.77971900948963],[-118.96166079221875,50.778023889570086],[-118.97037504802725,50.77556973452633],[-118.97109069316176,50.77528089589953],[-118.97942711832751,50.77213885859585],[-118.98605370015193,50.76952725351104],[-118.99008296682283,50.768471979730364],[-118.99824631828385,50.76596144776577],[-119.00157742725004,50.765536612173484],[-119.00986339752183,50.76587837638342],[-119.0147328376099,50.7656427150954],[-119.01661482321981,50.765549683184915],[-119.02606773108492,50.764625312648704],[-119.03435096917536,50.76434289231883],[-119.05388879234745,50.76345718967964],[-119.06190258500366,50.7633449264369],[-119.07182788851726,50.76349759551051],[-119.08292124564802,50.76466723614769],[-119.08789116160571,50.7649733199031],[-119.09138992329983,50.764838287023785],[-119.10488147803801,50.76358682450443],[-119.1113740021008,50.763538208840885],[-119.124257475763,50.76326607249518],[-119.13304596683727,50.76153773617661],[-119.1401456374967,50.760686756096504],[-119.13912623188205,50.75869394935693],[-119.13558966303408,50.753235868600164],[-119.13481704878053,50.75010249896918],[-119.13626742868915,50.74603895663274],[-119.13785143490118,50.74351607732078],[-119.13774112103572,50.74265703488418],[-119.13399994293246,50.74011737393014],[-119.1323234934659,50.73693553636536],[-119.13214359219353,50.732821090980735],[-119.13280244816767,50.72899467674779],[-119.135785951693,50.72514461696127],[-119.13940475358152,50.72123379899377],[-119.14188365037617,50.71955339094582],[-119.14306540318665,50.715373895377766],[-119.14634171786804,50.70792782227211],[-119.14946577920598,50.70156202547374],[-119.15276521347228,50.69525318207605],[-119.15793886296774,50.6888705722878],[-119.16156409370781,50.68581635243614],[-119.16655572110992,50.68303380670401],[-119.17904785306088,50.678073787999644],[-119.19215209166656,50.67224866717154],[-119.19874526265637,50.66985277133371],[-119.20121990787975,50.66760358287517],[-119.20776577583739,50.661948210226015],[-119.21304016101752,50.656416268151034],[-119.21781045776521,50.65260917172248],[-119.22341806422696,50.65021505844743],[-119.22718534068417,50.649554061606004],[-119.23023926812188,50.64975643402036],[-119.23603837274877,50.651359283436776],[-119.24217465586234,50.65261400792449],[-119.25176090645462,50.65144564449735],[-119.25964049485745,50.64971280265216],[-119.26643618480553,50.648283765325665],[-119.26964809479301,50.647055324965116],[-119.27139758155192,50.64515343724901],[-119.27472064681979,50.640435439684566],[-119.2772333261766,50.63647371726661],[-119.2817457962043,50.633575293582204],[-119.28559301170226,50.63274300313571],[-119.29196230296878,50.63205045258578],[-119.29248332380472,50.631701778948425],[-119.29140600616877,50.627318317510316],[-119.2905553622708,50.621611284628685],[-119.2908849709554,50.61618077659323],[-119.29183396422961,50.61069120794484],[-119.29396883426753,50.606100604086535],[-119.29834726332747,50.600744671991],[-119.30217792615153,50.59591279388882],[-119.30464030243783,50.59320577999384],[-119.30543689298864,50.59319459978863],[-119.30141135274457,50.58992253665215],[-119.2940653192991,50.58256539065699],[-119.28979314026857,50.57620846648669],[-119.28969835036895,50.57181181235336],[-119.28947529036289,50.56210381210546],[-119.29018580934029,50.55421647697314],[-119.2911147476911,50.547808235019836],[-119.29260623161001,50.54579739564898],[-119.29599379484667,50.53754162128345],[-119.29890109089126,50.53116713429903],[-119.30077808158633,50.52732491774934],[-119.30217517402303,50.525369188264655],[-119.3052015276749,50.52094318195947],[-119.30805750302653,50.51651528278263],[-119.30919279590064,50.51479072302284],[-119.31058909029264,50.51312082346434],[-119.31141455683635,50.51042992856597],[-119.3107596399646,50.50540417196044],[-119.30968339519268,50.5010213420848],[-119.30703356412201,50.495506644010575],[-119.30694310397998,50.49516273985227],[-119.30054243225315,50.481745704404126],[-119.2981616208691,50.47605558499065],[-119.29625446197423,50.47070596686396],[-119.29542471101949,50.46591847773099],[-119.29693150411926,50.461504310651705],[-119.30289341709117,50.455965925970965],[-119.3272566445986,50.44149547892236],[-119.34687596945334,50.43136112148791],[-119.34958633335991,50.42986347098634],[-119.36522704427796,50.42122995803372],[-119.37140201712337,50.42145021810411],[-119.37976843826306,50.423019151235096],[-119.3860557232339,50.42392046826092],[-119.39021549519612,50.42216846909383],[-119.39663158863226,50.41775338459049],[-119.3974210263458,50.41728667801739],[-119.40721137607301,50.411925207639506],[-119.42062501396124,50.40835290879484],[-119.42623427238743,50.407205416285684],[-119.42742962418369,50.40530856889121],[-119.42441229127918,50.39905835556958],[-119.42207001716524,50.395256640019724],[-119.430427324653,50.39676615922214],[-119.44148079411049,50.402184133513224],[-119.44654059240685,50.41063827950843],[-119.44710530878352,50.41200396042388],[-119.45055341160308,50.417165363631845],[-119.46125600375642,50.41949692710677],[-119.46922438164422,50.419922651029246],[-119.47839160546413,50.421247556868316],[-119.48902999130951,50.42129796740224],[-119.50617868307552,50.4235542241526],[-119.523544312955,50.42706451023621],[-119.52571767904878,50.4277810586715],[-119.52992789644597,50.4279016379467],[-119.53829047296392,50.429630537910974],[-119.54235978820924,50.43438470376958],[-119.54511917373992,50.43703546974259],[-119.54945912762994,50.43852695001423],[-119.55651644923707,50.44415775860459],[-119.56052362499345,50.44976393862401],[-119.56427838525067,50.45268907222034],[-119.56773464064626,50.45750887709558],[-119.57449904278792,50.46245174579986],[-119.57678315841599,50.46419361874836],[-119.58038652044672,50.46472289199496],[-119.58199798227521,50.46493247393417],[-119.58354335237885,50.46262780166283],[-119.58437885065851,50.45775802969308],[-119.5874299969184,50.45481089758469],[-119.59244533512246,50.45177554598287],[-119.60182385907501,50.447891056799534],[-119.60509834792622,50.44664467120368],[-119.60846845005898,50.445520437281566],[-119.61609370230926,50.44330978935385],[-119.62554374483659,50.44198867573527],[-119.63196886255894,50.4414541490495],[-119.64668526951108,50.436974970153045],[-119.65228365360868,50.43547615320797],[-119.6560749142435,50.433654701824686],[-119.66516282784211,50.42965447268143],[-119.67060542224011,50.426435180145646],[-119.67285483476189,50.424006255259634],[-119.6794589510338,50.41763571601773],[-119.68825912339689,50.41020105473179],[-119.6919834996987,50.4066093079145],[-119.68994746162312,50.40692223345828],[-119.67962643357676,50.40888309116496],[-119.6673370319992,50.410363268519085],[-119.65001944511292,50.41161667790066],[-119.6400084108209,50.411857879873075],[-119.63727900461978,50.4040630995732],[-119.63702119538468,50.39898230607723],[-119.63825756479793,50.39222249646679],[-119.64036976140072,50.388363520330984],[-119.6404378921185,50.387680058565614],[-119.63824416966912,50.383305969863116],[-119.63487793172709,50.37843738560622],[-119.6338433427797,50.37656257737838],[-119.63578924181655,50.37327938711817],[-119.64031883171612,50.37219810869413],[-119.64447517949829,50.37065759731012],[-119.6461472262959,50.36720625960506],[-119.64544752766469,50.36475644044164],[-119.64448950826916,50.36253761569567],[-119.6465975794455,50.36120062006124],[-119.653537251049,50.36053603865507],[-119.65833401320273,50.35944915425455],[-119.66098377057963,50.358271012270684],[-119.66259599661319,50.355735755621154],[-119.66407403145624,50.35154111442029],[-119.66641131631356,50.34916582244964],[-119.6682154581972,50.34696799395395],[-119.66875959449337,50.34439621527481],[-119.66563354915517,50.341232723733846],[-119.66430729616734,50.33902053169143],[-119.66427601526338,50.335020593857244],[-119.67166232638093,50.331439375349035],[-119.68231813593853,50.329583807009435],[-119.6834768649339,50.32956891952731],[-119.69088495298158,50.32672197742989],[-119.69717178550194,50.32492932979621],[-119.70396515705114,50.32283761989152],[-119.71380324422111,50.3202440237407],[-119.71953535337387,50.31816709978184],[-119.71804062651744,50.316240360278634],[-119.71096473677848,50.315309505990825],[-119.70464417509818,50.313108516524686],[-119.70234391918171,50.31079607220129],[-119.70149432569023,50.3096084858812],[-119.6995851287166,50.30843707464118],[-119.694379994416,50.30764853813271],[-119.68814689545599,50.30796259748977],[-119.68457564390353,50.307892434247734],[-119.68127341494909,50.30519276619394],[-119.68367322573329,50.29921951560623],[-119.68712277892598,50.29551407619095],[-119.68767466678379,50.29327810928891],[-119.68980304746214,50.29004623685998],[-119.69463435241005,50.287639980058444],[-119.69913568934446,50.28335090870773],[-119.7039445652532,50.277454004680806],[-119.70797509634808,50.272484706364516],[-119.71040782501179,50.270794155766445],[-119.71561086235201,50.26609452701013],[-119.72114743079388,50.263448334759936],[-119.73213829128868,50.261580853228246],[-119.7367667289902,50.26151521781483],[-119.7386447519753,50.261377759728724],[-119.74768246640845,50.25987599718243],[-119.75345394472234,50.25642567270231],[-119.7538312343109,50.249103253111414],[-119.75744842375025,50.242478146598174],[-119.75956458557822,50.2390758307873],[-119.7604183704509,50.23808997457914],[-119.76033080361245,50.23300749627709],[-119.75697171305312,50.22848394992912],[-119.75234104450256,50.22563402960143],[-119.74757977461572,50.221695952925835],[-119.74467337176186,50.217678601327876],[-119.74145400003194,50.21155220236246],[-119.7381614245568,50.20657192446624],[-119.73931660671055,50.20381165410423],[-119.74971141411105,50.20309408898796],[-119.76159600253435,50.20166598664557],[-119.76805395051359,50.200319175511524],[-119.77124840925279,50.20010018176041],[-119.77483837133421,50.20078941341987],[-119.77919339968547,50.20307708392519],[-119.78723688559015,50.204214880285846],[-119.79400872148517,50.20406288287047],[-119.7982727739882,50.203941748716524],[-119.80259923864966,50.202850093866026],[-119.80426576639954,50.199508564338274],[-119.80675175606206,50.19644546204274],[-119.8102229710972,50.19399036875884],[-119.81322956045959,50.19091920369979],[-119.81645980069733,50.1889878036132],[-119.82244388047981,50.18706660185834],[-119.82674581356345,50.18551878037225],[-119.82781716878522,50.18281348116748],[-119.82511662022564,50.18199933863206],[-119.82449700564484,50.18200741614931],[-119.82045894078459,50.181209425771456],[-119.81597167071737,50.18030481455093],[-119.81105737948435,50.17717556209179],[-119.80836402085403,50.173843435391376],[-119.80457332317015,50.16692310078923],[-119.80222543672049,50.161071313734496],[-119.79900087906105,50.155059420790735],[-119.7958655339355,50.15179038199871],[-119.79116523045407,50.149797606252385],[-119.78417663867775,50.14841233550573],[-119.78051424847318,50.147666023586126],[-119.77622953106734,50.142242284275355],[-119.77620267720673,50.13875256314793],[-119.7760977551072,50.133272630169316],[-119.77652374395308,50.1300645754515],[-119.77677468864779,50.12680146612684],[-119.77755524202861,50.126331320915725],[-119.7757331695787,50.12241779985542],[-119.77284796243647,50.12113928074746],[-119.76928835280076,50.12119518242395],[-119.76602764440992,50.12203892176791],[-119.76409611634399,50.122813085325994],[-119.76214098646322,50.12283913356041],[-119.75838303803819,50.122089881478566],[-119.75554251823951,50.12202039028501],[-119.74988830993182,50.12301184944333],[-119.74600293248609,50.12369765433551],[-119.74492146878717,50.123598289378414],[-119.7384485914291,50.11871514044642],[-119.73649066491798,50.1133705079749],[-119.73709302821021,50.107478635890814],[-119.7377730749997,50.106211686892046],[-119.73985711651117,50.10229432093311],[-119.7400312995121,50.09960592444697],[-119.74180377951753,50.09672380570182],[-119.7411489068289,50.09312684272463],[-119.74293600342847,50.090645430820956],[-119.74663255142548,50.089680624459575],[-119.75392778438034,50.087234649289115],[-119.75871664354246,50.08464629316453],[-119.75957878219243,50.08378271341169],[-119.7584531698271,50.081969640167],[-119.75202955614384,50.08114670866496],[-119.74479836446348,50.07987406543912],[-119.74150015633822,50.0772403151021],[-119.74510622976871,50.073359389190706],[-119.75358850087014,50.069401295328184],[-119.75944133961188,50.06640367983204],[-119.76218659995037,50.06356641991337],[-119.76216997266131,50.06327894009455],[-119.75727768721573,50.06020748075353],[-119.75685494992983,50.055527736956854],[-119.7587046509392,50.052470921290535],[-119.75857875803906,50.049099726470246],[-119.76059271309634,50.045353918423274],[-119.77268567983111,50.0411791942993],[-119.77966270337328,50.039761238002036],[-119.78123978853039,50.039398898451054],[-119.78629687541878,50.03920785471873],[-119.79184332133947,50.03810065202606],[-119.79790696141565,50.03617863826212],[-119.80208465472128,50.0340053178664],[-119.80544402138734,50.031150511390905],[-119.8034367018772,50.02706452998201],[-119.79968413128485,50.02386344475199],[-119.79761317668182,50.02035294637247],[-119.79707261740691,50.01989988284573],[-119.79355596069847,50.01846776467675],[-119.78657467082616,50.0164578292464],[-119.77961148880377,50.01524151803197],[-119.774439320157,50.0143476269336],[-119.77318305782418,50.01390677501852],[-119.77128596635892,50.01067848617545],[-119.7743644508044,50.00732006889899],[-119.77906251502753,50.00450538453772],[-119.78503431655525,50.00281760075216],[-119.79447277039475,50.0014771215047],[-119.80208835037455,50.00107681777217],[-119.80680815825565,50.00158233894158],[-119.81186767627479,50.00195849822345],[-119.81620233712816,50.001383694414784],[-119.82120743587784,49.99999481618963],[-119.82353779917987,49.99902069341319],[-119.8254477472719,49.99784233327164],[-119.82540479245509,49.996817294438095],[-119.82532967465609,49.99458449014123],[-119.82731468934907,49.99295402212915],[-119.83075818976413,49.99233579788422],[-119.83467551230962,49.990388731004145],[-119.83132579821434,49.98814696922474],[-119.82772542665414,49.98682728647958],[-119.82573275651264,49.98541988349346],[-119.82567402501897,49.98399514320121],[-119.82652168246096,49.98249176920076],[-119.8284262486511,49.98165714728749],[-119.83000508528065,49.98095362200749],[-119.83603056663799,49.98058733487571],[-119.83851295188258,49.980548244879],[-119.83991705572495,49.98041064779114],[-119.84415611817411,49.977314932789],[-119.84871868575725,49.97584705877519],[-119.84872562718964,49.97586041739172],[-119.84880709907786,49.97604718716514],[-119.8488142643264,49.97607183933555],[-119.84883649293937,49.97623102202034],[-119.84884138008188,49.97631139160072],[-119.84883591149422,49.97645548100777],[-119.84883386936737,49.97647060012422],[-119.84882577580669,49.97654347183139],[-119.84882192265609,49.9765590487397],[-119.84879986595836,49.97663169552584],[-119.84879669270086,49.9766422386986],[-119.84872011352367,49.97682068837056],[-119.84862972176475,49.976997793411385],[-119.84854258021716,49.977150831384776],[-119.84849674070418,49.97724414435131],[-119.84842415757143,49.977431843081035],[-119.84839228470733,49.97751240350642],[-119.84836491688007,49.977689105308116],[-119.84835007874142,49.9778636952944],[-119.8483656814504,49.97795537919311],[-119.84841703748269,49.97814496900856],[-119.84848590714897,49.97833440553801],[-119.84853681415153,49.978514376594475],[-119.84862538560041,49.978700416366976],[-119.84872173455624,49.97888068386994],[-119.8488849995304,49.979226027811436],[-119.84895319526645,49.979407529054335],[-119.84901655701766,49.97959892050112],[-119.84909638045427,49.97977204993201],[-119.8491003028044,49.97978186356753],[-119.8491687205144,49.97998763542134],[-119.84917068052194,49.979999026446876],[-119.84921162059442,49.98021396706308],[-119.84921358062239,49.98022535808443],[-119.84922035031684,49.98033065092644],[-119.84921706279968,49.980510401450864],[-119.84921452904308,49.98069752235555],[-119.84921451719823,49.9807494139019],[-119.84921466607071,49.980761262712754],[-119.8491965126317,49.98092156008631],[-119.84916544963721,49.9810867727431],[-119.84916028396373,49.981228622044654],[-119.84914423785541,49.98141216806976],[-119.84915690922364,49.98146081916529],[-119.84917879031701,49.98150604376393],[-119.84925101534785,49.981580042237475],[-119.84930437802167,49.981612369923965],[-119.84931902024897,49.98162052946006],[-119.84933200249786,49.9816280271976],[-119.84962161190391,49.98180222632982],[-119.84963444303219,49.98181084362554],[-119.8497237324009,49.98187507875817],[-119.84985928821735,49.981972379715245],[-119.84994314213144,49.9820380059915],[-119.85014338533108,49.98217446976816],[-119.8502827993292,49.98224321599021],[-119.85061493350793,49.98233575307194],[-119.85063002979943,49.98234055363613],[-119.8507369914112,49.98237757798669],[-119.85078024295815,49.982394112360744],[-119.8508017556493,49.982403216999366],[-119.85096510130303,49.98247612180137],[-119.8510040496035,49.982498614399205],[-119.85124233644724,49.98267726357549],[-119.85140310607363,49.98280812387089],[-119.85141563545776,49.98281898014029],[-119.8516066675513,49.98301075916535],[-119.85180494745974,49.983200697495974],[-119.85187997230287,49.98327992273881],[-119.85206594785156,49.98348326612627],[-119.85228174845138,49.98366008133151],[-119.85244849327667,49.98375968869349],[-119.8526319945626,49.983877726165865],[-119.85278469939783,49.983977672841164],[-119.85292125105471,49.98406768788387],[-119.85301432564553,49.98411690752825],[-119.85311261677423,49.98411452816381],[-119.85315474154052,49.984113508409344],[-119.85318795989507,49.98410070791232],[-119.85320034257371,49.98408673790116],[-119.85322125926997,49.9840484291221],[-119.85322294369192,49.983880439590386],[-119.85322516133988,49.98368258128036],[-119.85322659656583,49.98367194957813],[-119.85323453201111,49.98361316620403],[-119.85321884262413,49.983522039018794],[-119.853207068318,49.983505584974594],[-119.8530087063531,49.98330324516915],[-119.8530010080233,49.98329547599221],[-119.85289692439146,49.98317231283416],[-119.8528795655384,49.98314539250729],[-119.85278244065701,49.982931813619615],[-119.85277459517899,49.98289921832475],[-119.85276119116034,49.982674545821496],[-119.85276874721092,49.98263153425257],[-119.85283089556425,49.98249514060416],[-119.85285052650232,49.98246635288544],[-119.85295585170972,49.9823470479996],[-119.852983711475,49.982322097407675],[-119.85311703812548,49.98222862253999],[-119.85317146959927,49.98220121967734],[-119.85325405916161,49.98217257264277],[-119.85329037010105,49.982162770476855],[-119.85359256100708,49.982101326242386],[-119.85392970173986,49.982040155204146],[-119.85413194322707,49.98198043680621],[-119.85420079188349,49.981949898850104],[-119.85422487391517,49.98193996959095],[-119.85425975166285,49.98192782149764],[-119.85439631498382,49.98188810630311],[-119.8544506682584,49.98187423546139],[-119.85466121108504,49.981817806755956],[-119.85471141241919,49.9818087746458],[-119.85485129361858,49.981796319088446],[-119.85487243045965,49.981795249076505],[-119.85528489898877,49.98178512116922],[-119.8554368609602,49.98174795643415],[-119.85568356492807,49.98164391937901],[-119.85594778427907,49.981513781606324],[-119.85600462817234,49.98149440937888],[-119.85629903508348,49.98142576189046],[-119.85631519027814,49.98142271548282],[-119.85633323152854,49.9814186558336],[-119.85638184693838,49.98140840593924],[-119.85659955922343,49.981311765079205],[-119.85670071712384,49.981249186865846],[-119.85684030350913,49.981083293428824],[-119.85684838051777,49.9810752904622],[-119.85696773265633,49.98095564110782],[-119.85701415961242,49.98092270658307],[-119.85716257030472,49.98084699472592],[-119.85721775278337,49.98082696017408],[-119.8573589146855,49.980792011853495],[-119.85738805295499,49.98078349367331],[-119.8574510849435,49.98077010829018],[-119.85768343317332,49.980746483613174],[-119.85794325920882,49.9807136784478],[-119.85798734403984,49.98071107032669],[-119.85824067614075,49.98071343923432],[-119.858462305091,49.98071740466521],[-119.85871216487483,49.980719577732636],[-119.8588763482812,49.98070848023495],[-119.85892299908598,49.98069981572975],[-119.85895342102117,49.98068177596694],[-119.85915157424088,49.98050958039076],[-119.8593077568241,49.980363223771924],[-119.85933885718498,49.980340150121336],[-119.8593687496882,49.98032603335314],[-119.85962781727254,49.98022098487049],[-119.8596896394479,49.980203586670555],[-119.86003445819608,49.98015015651176],[-119.86005219669093,49.980148335469664],[-119.86030212913779,49.980123994841165],[-119.86033556921507,49.980122485590385],[-119.86061162053439,49.98012498596058],[-119.86076470539784,49.980131312734414],[-119.86100859987708,49.980151755044254],[-119.86104868276531,49.980152874147414],[-119.86107215760364,49.9801344534],[-119.86130155345303,49.980002920059555],[-119.86132223664877,49.979992230269154],[-119.86158076906155,49.979878122880756],[-119.86161926531494,49.979865056410745],[-119.8618805165258,49.979795655257924],[-119.86189863269914,49.97979103039884],[-119.86216093964482,49.979739746025835],[-119.86218411333543,49.979736532688435],[-119.86228012947667,49.97972499353763],[-119.86256349811138,49.97969913789244],[-119.86285139497515,49.97966563880774],[-119.86289887477962,49.979663787611095],[-119.86320021142372,49.979673339147396],[-119.8634552741947,49.97967579332587],[-119.86348380711331,49.97967175198726],[-119.86351135824087,49.97966201525396],[-119.86365129965154,49.97957114672284],[-119.86366428138123,49.979552696972064],[-119.86367265866309,49.97954245424966],[-119.86367937582581,49.979531549945],[-119.86373666135084,49.97944394578501],[-119.86374133592973,49.97938329178101],[-119.863739293943,49.979346519473076],[-119.86368803125656,49.979246632391195],[-119.86355742836979,49.97906050906368],[-119.86352194687859,49.97901226957511],[-119.86333526273184,49.97885290141529],[-119.86327774111345,49.97881245119498],[-119.86293148504878,49.978630042510666],[-119.86285358333521,49.9785850655294],[-119.8625061995809,49.97841104811286],[-119.86215512063366,49.97825148727801],[-119.86184103218238,49.97811599179722],[-119.86156846079302,49.97799692828651],[-119.86128887055044,49.97786506162545],[-119.86124056109915,49.97783415121682],[-119.86104898235192,49.97765927921965],[-119.86102512927077,49.97762861178459],[-119.8609042029027,49.977422721110734],[-119.86075980296314,49.977235259961724],[-119.8607074923226,49.97715618595836],[-119.8606917165759,49.97711750617914],[-119.86066906915266,49.97697409808642],[-119.86066989810496,49.97694199875843],[-119.86070265359768,49.97678984774199],[-119.86072363366247,49.976673144083165],[-119.86076778414497,49.97646241214684],[-119.86077329438021,49.97644748748861],[-119.86084499446638,49.97626594273289],[-119.86085676922023,49.97624347274548],[-119.86093458447277,49.97613333998479],[-119.86095118928458,49.97611396552423],[-119.86116033523632,49.97591191590311],[-119.86137061058795,49.97570147314766],[-119.86142925487293,49.97564271655309],[-119.86157703192836,49.97544174689225],[-119.86162873168436,49.975369623401384],[-119.86164344902728,49.975351271111556],[-119.8618066995992,49.97519121109559],[-119.86172344719583,49.97517300672263],[-119.8615255450762,49.975161911471574],[-119.86149965623977,49.97515933192135],[-119.86133134090487,49.97513635810881],[-119.86130235681142,49.97513078927257],[-119.86121087756432,49.97510873898365],[-119.86119397050966,49.97510440678347],[-119.8611770634582,49.9751000745807],[-119.86101003093928,49.975054610501495],[-119.86098150090824,49.97504567375782],[-119.86081046732187,49.974977991877786],[-119.86055671115595,49.974862235328104],[-119.86051459459082,49.97483731195621],[-119.86031246528961,49.97467594203454],[-119.86028272734649,49.974662993560784],[-119.86024559276255,49.97465301454825],[-119.86005003370909,49.97465050400737],[-119.85984994491554,49.974655644710346],[-119.85960260835964,49.97468689692887],[-119.8595585306452,49.974689496762956],[-119.85905555485998,49.974683848479344],[-119.85901570267048,49.974681053689274],[-119.85890407309003,49.97466576775043],[-119.85884648534243,49.974651816297396],[-119.85853122271864,49.97453824511714],[-119.85827717126116,49.97447661445407],[-119.85823045139313,49.974459897052846],[-119.85802795207461,49.974366186883245],[-119.85800500776844,49.9743547469404],[-119.85791934445135,49.97430256156456],[-119.85788462659306,49.97427466785043],[-119.85780960733626,49.974195436790616],[-119.85779043695999,49.97416898381448],[-119.85769715711136,49.97399171247141],[-119.85761761316752,49.9738163487058],[-119.85742183573711,49.97372470184755],[-119.85724296258306,49.973676310958986],[-119.8571594127408,49.97366034232434],[-119.85712431627634,49.97366119789187],[-119.85708771101633,49.973660272143455],[-119.85705170981014,49.97365486790925],[-119.85685872408762,49.97360737214384],[-119.85653758187948,49.973563406216414],[-119.85630338679572,49.97352319032047],[-119.85601402007536,49.97347706206886],[-119.85586971430507,49.973457682881126],[-119.85563023370221,49.97345665214081],[-119.85544878610548,49.97353107590567],[-119.85541753916648,49.97354229079168],[-119.85538168749194,49.9735487438836],[-119.85506438749397,49.97359298054042],[-119.85504129255585,49.97359562811523],[-119.85492664566134,49.97360273042296],[-119.85480497895395,49.97361000715796],[-119.85478218612931,49.973610415447524],[-119.85473320238161,49.97361049076812],[-119.85455319513785,49.97360941163882],[-119.85789504447011,49.97225201676736],[-119.85928540545586,49.97148732637623],[-119.86540283790504,49.96876358913387],[-119.87129021656861,49.967536026869965],[-119.8767734097468,49.96733523429035],[-119.88238093462473,49.9677705794102],[-119.8873605973174,49.96569166861849],[-119.88987223531385,49.96427968084089],[-119.89222122938669,49.9629318900787],[-119.8936156142397,49.962339052058404],[-119.89485878954122,49.959742796287806],[-119.89916013884455,49.956241999748656],[-119.9067992480775,49.95423548962939],[-119.90978509116853,49.95345131387368],[-119.91491887792816,49.95113843508942],[-119.91829857079891,49.948972088624615],[-119.91854848880251,49.94856634565751],[-119.92078450178056,49.94406899017415],[-119.92226085495524,49.941071434630764],[-119.92648090297125,49.93762609067203],[-119.93325196495866,49.936435508613194],[-119.93563060943154,49.93599942160944],[-119.93811848972932,49.933900408675434],[-119.9391540109326,49.930737797173556],[-119.94190391410955,49.92834639926301],[-119.94446678570199,49.925677238732796],[-119.94420504822398,49.92333333000044],[-119.94145922100839,49.92085858631419],[-119.94788650467086,49.92012985371654],[-119.95502540583655,49.92162116071816],[-119.95989933527021,49.92417810129316],[-119.96715650072545,49.9285853541917],[-119.96950863403661,49.93003426765435],[-119.97657083237466,49.93169858088292],[-119.9815119500333,49.93122156829602],[-119.98599566586516,49.93029055894697],[-119.99102163152607,49.929697670825526],[-119.99426941945639,49.92912762526843],[-119.99652478399891,49.92760234251739],[-119.99805163021723,49.92608949874235],[-119.99939970441949,49.92423519531283],[-120.0091122022378,49.919767377182396],[-120.0110660658308,49.91936004325218],[-120.0137087765127,49.91774962788135],[-120.01926055818703,49.9151568048527],[-120.02419999313581,49.912967349343816],[-120.02452742156868,49.90912141696691],[-120.02838603296273,49.910072740426415],[-120.0297329458164,49.91030872083592],[-120.03094707000916,49.9106254148382],[-120.03526825849318,49.91147313671314],[-120.03675676812585,49.91168178415299],[-120.04006123295986,49.91186533466854],[-120.04895274440202,49.911548791266846],[-120.06246635335287,49.910319746012526],[-120.07717530232105,49.9084167567957],[-120.09195078652758,49.906527847802224],[-120.09478197178409,49.90616987319818],[-120.09616308556855,49.905994072905294],[-120.09983145786802,49.905601665182466],[-120.10821151095556,49.90471255470433],[-120.10935651337479,49.90452555595854],[-120.12999066263195,49.90116124190235],[-120.14161494833752,49.899409585473975],[-120.15071608952833,49.89939956320101],[-120.15843599664096,49.89943340670159],[-120.16542335684915,49.898670305719705],[-120.17307618330499,49.89706764440947],[-120.18042499344965,49.894531966560145],[-120.18350745022798,49.89325698994669],[-120.18612615337095,49.892223422061186],[-120.18892994293485,49.89094137713142],[-120.1937188993924,49.88816895042449],[-120.20011872539897,49.88510121761388],[-120.20295223366502,49.884155368173786],[-120.20565947918325,49.88339221976721],[-120.21044919493411,49.88307542337407],[-120.21707610941863,49.88384694297242],[-120.22528575281491,49.884494746189226],[-120.2336820191489,49.883845874142644],[-120.23987720742176,49.8830217315092],[-120.2440346744223,49.88186215378908],[-120.25269505739782,49.87959284747202],[-120.26311223241045,49.87781548077244],[-120.27245386502129,49.87553760181174],[-120.28035206215932,49.87228353854052],[-120.29184824648446,49.86893788588637],[-120.29643973953877,49.86753409731901],[-120.29679246939102,49.86748880249904],[-120.29764341962372,49.867462177759236],[-120.29810003790783,49.86749277576502],[-120.29873185671697,49.867614834233876],[-120.30017456007126,49.86824096957667],[-120.3019449159837,49.86912098921703],[-120.30369784640757,49.870239120814354],[-120.30566168456716,49.871708769246126],[-120.30691978532107,49.87272606263585],[-120.30893483068442,49.874626239534756],[-120.31138810938734,49.87715471920808],[-120.31411856837542,49.87988303255367],[-120.31642223666653,49.88220229256577],[-120.31797093650717,49.8838045334196],[-120.31871381404004,49.88449435269805],[-120.31931300329215,49.885021077824234]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":45,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"8","REGION_NUMBER":8,"REGION_NAME":"Okanagan","REGION_NUMBER_NAME":"8- Okanagan","FEATURE_AREA_SQM":29710543460.3557,"FEATURE_LENGTH_M":1024471.6987,"OBJECTID":9,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' + , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-120.31931300329215,49.885021077824234],[-120.32457256366307,49.88933563251543],[-120.32587221816097,49.89019411621295],[-120.32704125879712,49.89077010191355],[-120.3287236673229,49.8913574809373],[-120.3314392041247,49.89211286285655],[-120.33577645424727,49.8931732157515],[-120.34159325435604,49.89436353800629],[-120.34705899351421,49.895431637736614],[-120.34895663269089,49.895763714274196],[-120.35146424699056,49.89614474524718],[-120.35405783500143,49.89647997583579],[-120.35673946949048,49.89676670195944],[-120.36033104150067,49.8971747101525],[-120.36299888356923,49.89746056722704],[-120.36525003389025,49.897743483120095],[-120.36623671154364,49.89776614055615],[-120.36766648969024,49.89766278214298],[-120.36960387893693,49.89747617685201],[-120.37138814956448,49.89710181057869],[-120.37471105279143,49.89607990775226],[-120.37933844964931,49.89458095930716],[-120.38350256015588,49.893299307269295],[-120.3877039107945,49.8918829984123],[-120.39140155086417,49.89050270125933],[-120.39333811293729,49.88994978037052],[-120.39455550410052,49.88969763650568],[-120.39768968674184,49.88950764949787],[-120.39986665197353,49.88946866817999],[-120.40339680222249,49.8897627736163],[-120.40592670628452,49.89023219957142],[-120.40825932649766,49.89051784885463],[-120.41076225258233,49.89076648654121],[-120.41304337074712,49.89083178444304],[-120.41518132177114,49.89054133822537],[-120.41811488957296,49.88969390639345],[-120.42199092385225,49.888714108153614],[-120.42413728328764,49.88793910078785],[-120.4259463067285,49.887225785466704],[-120.42816811836312,49.88693204025912],[-120.43181776835296,49.88674594412287],[-120.43386210112084,49.886619489196626],[-120.4359319682104,49.885925496578665],[-120.43847379637202,49.88509425458622],[-120.44137386224749,49.88411375265221],[-120.44370038983216,49.88354485180345],[-120.4458784902467,49.883277852574416],[-120.44737783731262,49.88315559757822],[-120.44954024160104,49.88330432707106],[-120.45290159427273,49.88380755941587],[-120.4555288198337,49.88445271238618],[-120.4579703666104,49.885162226744924],[-120.4627501543231,49.8868594072076],[-120.46745836649556,49.888977203258875],[-120.47066154668522,49.8905028647071],[-120.48087742640033,49.89524116627969],[-120.48224691408784,49.895935428175434],[-120.49270583116459,49.9013972291744],[-120.49340474068403,49.90173681424764],[-120.49810489743393,49.90398797841281],[-120.50126068748594,49.9052424840482],[-120.50293142398232,49.905845613363034],[-120.50416603244575,49.906302800564944],[-120.50525160830934,49.90670795037474],[-120.5068920956387,49.907360223364954],[-120.5089708930321,49.908271783954106],[-120.51081589601488,49.90918340820386],[-120.51283459068638,49.910160635902294],[-120.51469735513275,49.91120158180811],[-120.51648283086276,49.91233444707979],[-120.51746499813277,49.91302117407475],[-120.5185968357444,49.91394424438456],[-120.51981409996903,49.91504292175766],[-120.52044097672714,49.91562219806079],[-120.521153440284,49.91618659179849],[-120.52174673981159,49.91666779615001],[-120.52238368338489,49.91730899549681],[-120.52304938788018,49.918117911430336],[-120.5249735159075,49.92044120876846],[-120.5272357064423,49.92309136173153],[-120.52858039818358,49.92474696345543],[-120.53107334627839,49.927703894962185],[-120.53323709521813,49.93019056515101],[-120.53517282799726,49.932163025462145],[-120.53642536714328,49.93335338949142],[-120.53776990403931,49.934432226838204],[-120.5405979578013,49.93662662913913],[-120.54284397347321,49.938156161537385],[-120.54501199601485,49.93943374763669],[-120.54700282595572,49.940456157978076],[-120.54876200799377,49.94119645350406],[-120.55069172899256,49.94191308561907],[-120.55171106436237,49.942283391840256],[-120.55233916034203,49.942478668783686],[-120.55379035701188,49.94285974131788],[-120.55587182401659,49.943184217203566],[-120.55761330903493,49.94341622556562],[-120.55847264626219,49.943488813151696],[-120.55960451420563,49.943458275985165],[-120.56079695301624,49.943359163020546],[-120.56323076804001,49.94305792125243],[-120.56499091756915,49.942825766623194],[-120.56585132066355,49.942684178809564],[-120.56644702042908,49.94255087164698],[-120.56677221337613,49.94247458149581],[-120.56704191616214,49.94240962198641],[-120.56771085824539,49.94221850586602],[-120.56882676817813,49.941837648027],[-120.5690527941773,49.941787433928845],[-120.56979885324414,49.94169650385895],[-120.57066530929285,49.941665087545275],[-120.57156736769188,49.94173068361827],[-120.57251892222187,49.941879317068235],[-120.57337219159916,49.94203208716357],[-120.57480713019407,49.942448138361584],[-120.57634369659992,49.943008409322815],[-120.57753598332546,49.94351216031903],[-120.57851043106955,49.944115005498126],[-120.57977786174672,49.94492735146492],[-120.5812508370654,49.945979800640366],[-120.58257653357076,49.94696406919142],[-120.58347748526067,49.94762803218994],[-120.58437295141351,49.948367803853365],[-120.58646577401045,49.95012995533986],[-120.58874122301565,49.951885291258954],[-120.59081086160265,49.95340384860146],[-120.59180290340132,49.953964585414994],[-120.59265426098091,49.954341958762704],[-120.5933620139495,49.95458994146062],[-120.59392489211709,49.95471917763894],[-120.59475142567996,49.95487890158869],[-120.59549677694704,49.95498670338218],[-120.59586958726533,49.95503947728961],[-120.59646403999817,49.955123485529576],[-120.59739352540481,49.95519583327214],[-120.59860478098526,49.955219519959606],[-120.59942847632617,49.95521168054501],[-120.60024231415585,49.95515432223482],[-120.60122715200545,49.95502479329922],[-120.60208748473346,49.95489926253271],[-120.60280775022017,49.95477639766439],[-120.6033601616345,49.954654840935504],[-120.60511162696551,49.95414320067493],[-120.60661895476551,49.95373108749294],[-120.60778563643805,49.953407572414065],[-120.60920620620571,49.953049205570665],[-120.61018440321631,49.95282741467927],[-120.61124086475458,49.95266751065296],[-120.61242354764161,49.95250366323684],[-120.61308277784472,49.95245324895607],[-120.61372740051746,49.9524229688031],[-120.61441217850368,49.95240762661745],[-120.6150765439858,49.95247637074351],[-120.61572602639211,49.95255282790313],[-120.61630434062572,49.95265509644775],[-120.61686615228189,49.952808389712985],[-120.61731346454779,49.95299945045974],[-120.61771804236619,49.953197425612274],[-120.6180243119599,49.95339958410129],[-120.61820699863385,49.95358326902569],[-120.6183456253528,49.953785076431075],[-120.61843106015269,49.95396398091804],[-120.61848855907658,49.954127986718646],[-120.61850447734874,49.95431869525187],[-120.61854421591343,49.95454437932206],[-120.6185184190481,49.95470373219015],[-120.61848921801851,49.954921519503614],[-120.61822458927557,49.95590546489444],[-120.6180004816144,49.956531278381945],[-120.61796228708889,49.95706196483046],[-120.61789174348421,49.95786664810093],[-120.61785099505119,49.95827097903073],[-120.61781910665988,49.95911813741617],[-120.61777185935262,49.96037649916314],[-120.6177977680421,49.963382676666846],[-120.61784498143625,49.96469921585061],[-120.61781463420877,49.96514857103142],[-120.61745235068975,49.965923129928406],[-120.61706047216467,49.96653392846548],[-120.61650642927428,49.96708265380856],[-120.61601828942753,49.96748753212278],[-120.61546425689659,49.96800638015188],[-120.61496793679567,49.9685246906359],[-120.61480973758579,49.968784039048074],[-120.61464319230119,49.969173154011116],[-120.6145943006133,49.96986787418407],[-120.61455037258492,49.970890259112494],[-120.61455600675026,49.971404498563686],[-120.61463146730202,49.97191934819964],[-120.61467142138522,49.97203965888654],[-120.62109490102911,49.97331441910926],[-120.62590086802699,49.97440800897516],[-120.63116198280586,49.975674710857895],[-120.6402498439997,49.97792864081801],[-120.64565238970785,49.977878918879256],[-120.65041071315908,49.97629003278808],[-120.65249449104792,49.97044651363995],[-120.65235858941634,49.96421844871828],[-120.65228891750739,49.96159571864494],[-120.6516970527607,49.95091638993626],[-120.6539546786179,49.94500850589786],[-120.65465850864524,49.94448664363905],[-120.65842640761888,49.93879721953162],[-120.66213065074554,49.93447907872134],[-120.66248517408825,49.93407538820654],[-120.66745033002366,49.93031392628212],[-120.66962430596385,49.92892021960447],[-120.67173800405595,49.92804144038958],[-120.67372399630506,49.92179642851992],[-120.67469779768179,49.918477698283795],[-120.67772771938398,49.9152449031898],[-120.68041782159023,49.912648110330146],[-120.68137029752063,49.90435537486903],[-120.68232780629917,49.89949100387691],[-120.68674279127683,49.89573299867432],[-120.69695610164706,49.893346685747936],[-120.69881125966651,49.8927524706271],[-120.71181930966614,49.88959576669701],[-120.71767260283704,49.88953549589549],[-120.72557584725087,49.89105481960709],[-120.73592178905167,49.89414454153265],[-120.74370802401194,49.89766078725374],[-120.7472736830732,49.899054397501565],[-120.75448858519029,49.90063366922443],[-120.76344084509502,49.90094092921074],[-120.77084867491006,49.90023312137099],[-120.7744516143001,49.898992583596225],[-120.77845801228717,49.896662770012355],[-120.77833660345013,49.89186765155492],[-120.77672178474153,49.88720008780725],[-120.77643709255219,49.8828586176973],[-120.77641673721789,49.88206081839727],[-120.77699716816066,49.8804007806946],[-120.7773452262307,49.88016269433483],[-120.77958334535478,49.87791123490611],[-120.78447122479729,49.87517193822451],[-120.78762275773666,49.873710576528204],[-120.78956204509906,49.87346041182547],[-120.79607470675036,49.872363551931],[-120.80198862395156,49.87150043675765],[-120.80693926747922,49.86819009957265],[-120.81069467937309,49.86643447621576],[-120.823543704072,49.86748785692226],[-120.83190221430728,49.86916370004503],[-120.83853024767832,49.868633342306815],[-120.8464559662264,49.867228371627725],[-120.85110832928623,49.866035524025264],[-120.85842779202649,49.8618315900211],[-120.86418348062745,49.85565135778008],[-120.86652484468539,49.85379535089563],[-120.87040336176125,49.85004035841264],[-120.87076943275812,49.843921039050265],[-120.87072143745796,49.84260977448344],[-120.86833286230336,49.83595358115209],[-120.86412252176373,49.83051386677959],[-120.8628713067746,49.826644504546444],[-120.86320431745932,49.822811323013156],[-120.86879886942154,49.81714839743051],[-120.8711308860332,49.815232121492734],[-120.8757682035369,49.81026491709708],[-120.87785868343646,49.80589766007013],[-120.87850120399911,49.803889537557204],[-120.878913452035,49.80256993838353],[-120.8791248349677,49.79719700755026],[-120.87775653300882,49.792753544357026],[-120.87684144281218,49.79122791448258],[-120.87902812918084,49.787484978172415],[-120.88572963097421,49.78369170539509],[-120.8911492234701,49.77865459409305],[-120.8928526077516,49.77348947526115],[-120.89989326522182,49.76649627671958],[-120.9025322814999,49.76566109039895],[-120.91275816074425,49.762277828544654],[-120.9161598722897,49.76058244332816],[-120.91692649277623,49.75994193783825],[-120.91798296921704,49.756563168345615],[-120.91678942333164,49.7517754275848],[-120.91693807776241,49.75068626362955],[-120.91678620909299,49.74566188920105],[-120.916662610886,49.74126040307209],[-120.9166420496404,49.740693633749416],[-120.91763278719652,49.73827992203926],[-120.92365840862377,49.73283560819388],[-120.92784266135568,49.73095432396124],[-120.92990841948445,49.72949674832505],[-120.93153140614615,49.724624777028225],[-120.93169843456808,49.723994038253736],[-120.93308377439338,49.72026288994234],[-120.9381076928956,49.71705592641238],[-120.94425231811941,49.71577742741229],[-120.94747518654404,49.71465333433627],[-120.95287713675008,49.71241512324143],[-120.95662874589769,49.70774231830427],[-120.95774963818437,49.70121182460761],[-120.95822179492738,49.69931756883573],[-120.96365593751588,49.69524597495102],[-120.96959966112533,49.6932315807559],[-120.97198725360026,49.690456435630274],[-120.97309405070446,49.68643916727129],[-120.97254449402946,49.68587783704203],[-120.96716594833993,49.682749418312795],[-120.96314208922655,49.68056876947719],[-120.96044769025661,49.67905594288858],[-120.95644712272217,49.67767975523308],[-120.95645946111222,49.67516673932587],[-120.95713556636717,49.66812842446568],[-120.95812296798603,49.6628037176348],[-120.95798773825761,49.658347291940636],[-120.95787164073262,49.654348800062266],[-120.95984117044765,49.652209919971355],[-120.96461739823269,49.64408814079844],[-120.96720521886687,49.641997483574606],[-120.97086554724298,49.637838348533464],[-120.97565162006907,49.63314610440043],[-120.9806705525546,49.629995177895374],[-120.98056235334712,49.626795642633944],[-120.98061472997185,49.62542735832646],[-120.98213976709505,49.62060617968673],[-120.9840360401252,49.616065013650676],[-120.98578925217447,49.612958948834304],[-120.98923530550687,49.60462302344509],[-120.99402750551775,49.594731948428034],[-120.99698935183368,49.59349597508908],[-121.00855234916469,49.589114020381345],[-121.01706866235435,49.58597371769787],[-121.02332202493561,49.58337557861188],[-121.03026543497178,49.58002609326568],[-121.03298898911063,49.577128869287094],[-121.03491810304604,49.57144898729194],[-121.03445586659979,49.56533530788638],[-121.03526350894366,49.56298443122319],[-121.03849215747496,49.55384788973891],[-121.04172605044968,49.5504351974617],[-121.04653248649416,49.546428005514336],[-121.049052565124,49.543077207659906],[-121.04933854319324,49.540675059737644],[-121.04691091360677,49.53647640492935],[-121.04341273995534,49.53104084202562],[-121.04282953824654,49.52938720244584],[-121.04992811493861,49.5259200133847],[-121.05868497403287,49.52517148934149],[-121.06287267885915,49.524316087307916],[-121.07047543261179,49.520381622135844],[-121.07595052662165,49.51601863257202],[-121.07720491375231,49.51114141014743],[-121.07701888688614,49.50537298494325],[-121.07626628022409,49.50115420634152],[-121.07531047756902,49.4987090274193],[-121.0708946398546,49.494997487340285],[-121.06640127768509,49.491629137706276],[-121.06415281658185,49.49028666152302],[-121.0634131430796,49.488930013931416],[-121.06157700063332,49.48632191232089],[-121.06016976546738,49.483712744588374],[-121.05714261337938,49.47958011148062],[-121.05352781919466,49.476033818686865],[-121.05551985805373,49.475375333370486],[-121.06748875893382,49.473841285963296],[-121.0724704699186,49.47314160391747],[-121.07796704689962,49.47214887529383],[-121.08628728266564,49.46878013666306],[-121.08260046551523,49.46602691651898],[-121.08061099589474,49.46433682284394],[-121.08149256570967,49.46164212941789],[-121.08305815792625,49.45836265520301],[-121.0846675641615,49.454280746918904],[-121.0869279142646,49.44784532489817],[-121.08717386017275,49.44475671125216],[-121.08836481250543,49.4381094642819],[-121.0893643152362,49.43403750864246],[-121.08930047494935,49.432041337964456],[-121.08880232127024,49.430103801937186],[-121.08850271914947,49.426559953440496],[-121.08865248553957,49.42307537507329],[-121.08957329990291,49.418831222934685],[-121.0910955381556,49.416979147808476],[-121.09630791643318,49.41313505551956],[-121.09967729234386,49.411432269805594],[-121.100893690462,49.40855347565003],[-121.10030456823118,49.40656052070943],[-121.0966642534119,49.402498211438875],[-121.0961360188523,49.39993408564697],[-121.0976206139574,49.39699783145015],[-121.1029860123016,49.39480759860744],[-121.10933995810534,49.39357085906348],[-121.11260923873196,49.3917524004031],[-121.11523405267923,49.389371732873414],[-121.11442079938689,49.385841528827214],[-121.11123617483331,49.38216996625138],[-121.10372953710919,49.37776588504151],[-121.10186211310794,49.376644813468914],[-121.09298605861584,49.37294450217151],[-121.08979079188624,49.37173386447349],[-121.08050942468033,49.36900819467971],[-121.07688603016527,49.3681970939703],[-121.07564549056602,49.3679322513786],[-121.06997265225003,49.36577929217924],[-121.06701403613798,49.36365271300716],[-121.06351250455303,49.36067274679838],[-121.06356936582813,49.35975270602168],[-121.06515894070219,49.35739062719673],[-121.0693572073759,49.35486996630238],[-121.07200839333856,49.35289084489544],[-121.07016518892202,49.350006689592135],[-121.07041546277154,49.34959865357726],[-121.07363884222465,49.343667790678104],[-121.07808585317663,49.33788617980323],[-121.08314969162491,49.33484772678355],[-121.08082627927269,49.33064817069486],[-121.0773280976566,49.327781624553374],[-121.07189250624197,49.32745695027486],[-121.06606473331088,49.328743205366884],[-121.06625529474503,49.32902367017121],[-121.0573203425294,49.32869248062506],[-121.05165583103965,49.32677113940921],[-121.04285905366287,49.3223243464787],[-121.03893587018617,49.319978992057685],[-121.03466574230694,49.31534947656013],[-121.03012982499347,49.309867631447844],[-121.02563362837144,49.305724220142],[-121.02676896570878,49.30448280327939],[-121.02687569598282,49.30435465392038],[-121.02696541550358,49.30422459269254],[-121.02703641133762,49.30409254067904],[-121.02708351456113,49.30395853933583],[-121.02710678516063,49.30382203210766],[-121.02711304565207,49.30368361312949],[-121.02710575217002,49.30354316202463],[-121.02708484505358,49.30340123537476],[-121.02705543267682,49.30325835731511],[-121.02701754694142,49.303114231590975],[-121.02697109535788,49.302969720003055],[-121.02692293104542,49.302825129403644],[-121.02686959810096,49.30268058016146],[-121.02681617484399,49.30253687471805],[-121.02676269213053,49.302393725803576],[-121.02671251520066,49.30225185690897],[-121.02666390016968,49.302111476345864],[-121.02660134142211,49.301972699332744],[-121.02652832386434,49.3018351361703],[-121.02645007716183,49.30169817988411],[-121.02637005815942,49.301561701130844],[-121.0262934954553,49.30142510193753],[-121.02622384483678,49.301288261960806],[-121.02616976263879,49.30115072324084],[-121.02613473441886,49.30101208715921],[-121.02612053178247,49.30087188509678],[-121.02613055245385,49.30073053534606],[-121.02615785285522,49.30058857484516],[-121.02619726414298,49.30044604495896],[-121.02624361753605,49.30030298705395],[-121.02629342637616,49.300159808745356],[-121.02633977918651,49.30001675073758],[-121.02634453099152,49.300004564989976],[-121.02639244499659,49.29986299532085],[-121.02652382254836,49.299585428212545],[-121.0265935817883,49.2994488079844],[-121.0266633097606,49.299312474954846],[-121.0267330382872,49.299176132875154],[-121.02680450917362,49.29903959139034],[-121.02687423687482,49.29890324916353],[-121.0269439641661,49.298766906863825],[-121.02701372093722,49.29863028619636],[-121.02708344644387,49.298493952727895],[-121.02715320239358,49.29835733191427],[-121.02722295793232,49.29822071102764],[-121.02729100021615,49.298084011113076],[-121.02735904209885,49.297947311127395],[-121.02742540159737,49.29781024484561],[-121.02749347256868,49.297673266423836],[-121.02755814737544,49.29753585173414],[-121.0276245355822,49.29739850694979],[-121.0276892096175,49.29726109212485],[-121.02775391411805,49.297123389959985],[-121.02782030115469,49.29698604497013],[-121.0278850039183,49.29684835164711],[-121.02794799446737,49.2967105703348],[-121.02801101452474,49.29657251066138],[-121.02807403420691,49.296434450922504],[-121.02813537061618,49.29629603388045],[-121.02819496400382,49.29615781613014],[-121.02825290499231,49.29601895380866],[-121.0283091319057,49.29588002146532],[-121.028365389326,49.295740801790146],[-121.02841822090019,49.295601424181825],[-121.0284710820359,49.29546176822203],[-121.02852228986663,49.29532147667805],[-121.02857184536902,49.29518054057474],[-121.02861968783647,49.29503952548464],[-121.02866587800322,49.29489786583902],[-121.02870864147715,49.29475605725531],[-121.02874798021676,49.29461408178269],[-121.02878389232558,49.29447195737952],[-121.02881463717807,49.294329865460476],[-121.02884195547306,49.294187624618104],[-121.02886239293477,49.29404534631405],[-121.0288779331268,49.293900586852146],[-121.02888878714823,49.2937513801967],[-121.02888945463896,49.29360086503447],[-121.02887789343022,49.29345203268411],[-121.0288469195097,49.293307673579484],[-121.02879611382694,49.293171692850265],[-121.02871835314856,49.29304631533026],[-121.02860366336206,49.29292825745137],[-121.02845378722407,49.2928173197393],[-121.0282787608104,49.292716211049246],[-121.02808852750617,49.29262850210418],[-121.02789315198496,49.292556632543175],[-121.02769897470598,49.29250566715325],[-121.0274879021698,49.29248382069359],[-121.02726603881942,49.292482325667386],[-121.02703807255303,49.29248957961907],[-121.02681040797891,49.29249402318465],[-121.02658944703988,49.29248412398565],[-121.02635325471013,49.29247181688698],[-121.02611231511818,49.2924556365317],[-121.02589944598873,49.29241847529026],[-121.0257474642409,49.29234323474897],[-121.02563305472911,49.292222650963126],[-121.02554750006757,49.29207378819996],[-121.02550422324666,49.29191588657203],[-121.0255182409284,49.29176936938484],[-121.02559345606137,49.29164596455803],[-121.02569240514065,49.29152591870367],[-121.02581019321511,49.29140673253188],[-121.02594324261423,49.2912896664474],[-121.02608806925012,49.291175110063456],[-121.02624455060813,49.29106420345706],[-121.026407491055,49.290957248311166],[-121.02657331310634,49.29085550508618],[-121.02674366959887,49.29075960933156],[-121.02691333224024,49.29067016801499],[-121.02708768077153,49.290585164701966],[-121.02726677401924,49.290504051752215],[-121.02745067273136,49.290426263569614],[-121.02763772605361,49.2903511466288],[-121.02782796195488,49.2902784405705],[-121.028021501891,49.29020701422958],[-121.02821489088142,49.29013698800503],[-121.02840996196184,49.29006731866385],[-121.02860500161785,49.2899979362394],[-121.02879841969298,49.289927621671985],[-121.02899024412805,49.28985611462597],[-121.02918050575042,49.289783127832855],[-121.02936914577282,49.289709208921394],[-121.02955940619647,49.28963622144476],[-121.029749546551,49.28956434682256],[-121.02994139788409,49.289492559749185],[-121.03013321875817,49.28942105062685],[-121.03032338720567,49.28934889667177],[-121.03051364561338,49.289275898497735],[-121.03070228048544,49.28920198617938],[-121.03088938332641,49.28912630687069],[-121.03107495315916,49.28904886955636],[-121.03125565547973,49.28896867258001],[-121.03143491626695,49.28888586476835],[-121.03161111255758,49.288799532339446],[-121.03178253182313,49.28870959642219],[-121.0319507960293,49.28861697979841],[-121.03211587531315,49.28852196078225],[-121.03227942149798,49.28842518384271],[-121.03244134502285,49.28832748388787],[-121.03260329867817,49.28822949639786],[-121.03276525068642,49.28813151762796],[-121.0329271423155,49.28803409520262],[-121.03308744113436,49.28793547147487],[-121.0332445550099,49.28783444540806],[-121.03339689180737,49.287729815973584],[-121.03353937476874,49.28762078103913],[-121.03367218297929,49.28750567083361],[-121.03379360592427,49.28738438858163],[-121.03391181317373,49.287260991380855],[-121.03403326469214,49.28713943051328],[-121.03416099359893,49.287023517494696],[-121.03430491360379,49.286917091929304],[-121.03446499484602,49.28682043205888],[-121.03463988677557,49.286730083443565],[-121.03482426921252,49.28664751522533],[-121.0350162815589,49.28657403105764],[-121.03521412100027,49.286510395955936],[-121.03541769621924,49.28645746275287],[-121.0356224426054,49.2864096533374],[-121.03583190439086,49.28636601213634],[-121.03604271738709,49.28632581590568],[-121.03625500286769,49.28628793347305],[-121.03646881858695,49.286251826179935],[-121.03668422709971,49.28621691047975],[-121.03689792286738,49.28618191554426],[-121.03711339037501,49.28614644237914],[-121.03732555295693,49.286109688998856],[-121.03753795663738,49.28607068184354],[-121.0377486763994,49.28603132615233],[-121.0379610784035,49.28599232713794],[-121.03817348101227,49.28595331872627],[-121.03838416988859,49.28591424009158],[-121.03859657082239,49.28587523982092],[-121.0388073195711,49.285835594772124],[-121.03901978036981,49.28579602808025],[-121.03923061782187,49.28575554729046],[-121.03944148567444,49.285714778805506],[-121.03965235315643,49.285674009906344],[-121.03986318950194,49.285633527874545],[-121.0400757686485,49.28559283690091],[-121.04028507258589,49.28555058750862],[-121.04049455590658,49.28550665890639],[-121.04070265806666,49.28545955389602],[-121.04090769450407,49.285408933395146],[-121.04111152848567,49.28535346668156],[-121.04131082646967,49.285292143424265],[-121.04150717873148,49.28522618252833],[-121.04169890454894,49.2851552090207],[-121.04188594333621,49.285079788511105],[-121.04206676142111,49.28499817247226],[-121.04224304327923,49.2849107000021],[-121.04241298520205,49.284818145273505],[-121.04257319316707,49.28472006360336],[-121.04272537859086,49.284616542722006],[-121.04286957125922,49.28450730435555],[-121.04300565299711,49.284393452776406],[-121.04313350180568,49.284276128166695],[-121.0432415827726,49.28415056016054],[-121.04333491200472,49.28401811609614],[-121.04343142522193,49.28388807372536],[-121.04355086067221,49.283768945545454],[-121.04369640181889,49.28366314225748],[-121.04385326774748,49.28356406620786],[-121.04402004678333,49.283468828667736],[-121.04419004039404,49.28337570535305],[-121.0443583805477,49.283281946459624],[-121.04452353549436,49.28318578551967],[-121.04467895560862,49.28308410680575],[-121.04482301982266,49.282975978804494],[-121.04496392860982,49.28286517052802],[-121.0451096730568,49.28275740806938],[-121.0452668632568,49.2826552415275],[-121.04542898032506,49.28255526787286],[-121.04558607887272,49.282453944733014],[-121.04573007852147,49.28234638101045],[-121.0458527481628,49.28222909513384],[-121.04595736266458,49.2821036450049],[-121.04604878723552,49.281972807323676],[-121.04613366366966,49.28183883592542],[-121.04621523412592,49.28170359389101],[-121.04629500159041,49.28156911701127],[-121.04637639156628,49.28143555362174],[-121.04645615906291,49.28130106759098],[-121.04653250063289,49.28116643314815],[-121.04660890224184,49.28103123303113],[-121.04668359116317,49.280895954183],[-121.04675996212656,49.280761032211714],[-121.04683804487838,49.28062618880614],[-121.04691774916787,49.2804922678639],[-121.04700081696699,49.28035906971852],[-121.04708553699226,49.28022650674184],[-121.04717365120358,49.280094379264156],[-121.04726008246057,49.2799618947395],[-121.04734483077567,49.279829053171866],[-121.04742621467715,49.27969548864097],[-121.04750089906534,49.279560208955296],[-121.04756548936581,49.27942277854781],[-121.0476283978127,49.279284982152376],[-121.04769301806546,49.27914726432526],[-121.04776436666207,49.27901098317421],[-121.04784070066816,49.278876347341885],[-121.04792211122283,49.27874250393661],[-121.04800520371694,49.2786090173808],[-121.04808994742775,49.278476174957554],[-121.04817469065334,49.278343332441146],[-121.04825459732794,49.27820744393165],[-121.04835426904448,49.27807979770324],[-121.04848863608402,49.27796558118138],[-121.04863817176852,49.27785431647489],[-121.04880023409368,49.27775462432424],[-121.0489788800398,49.27767684046553],[-121.04918207170006,49.27762695998121],[-121.04940668349033,49.27760203344999],[-121.0496309387506,49.27759654105566],[-121.04984402489845,49.27761506566962],[-121.05005555598703,49.277664246642544],[-121.05025540558906,49.27772614394022],[-121.05044561688835,49.27779773889339],[-121.05062979168481,49.277877527842065],[-121.05081390860629,49.277957864109446],[-121.05099451076038,49.278038895775936],[-121.05117490446412,49.27812188427864],[-121.05135737060951,49.27820158439119],[-121.05154701494172,49.27827851911071],[-121.05174254629901,49.27834866859996],[-121.05194852292873,49.27838546544287],[-121.05216845790754,49.27838823178028],[-121.05239178403272,49.27837535618707],[-121.05261006272713,49.27836140953322],[-121.05282900092587,49.2783412857423],[-121.05304649617972,49.27831856020798],[-121.05326363171274,49.27829920089497],[-121.05348256837584,49.278279084755034],[-121.05370354772359,49.27825594938048],[-121.0539235633288,49.27822572338216],[-121.05409069668744,49.278142892493605],[-121.05424163165068,49.278034508633844],[-121.05437168628707,49.277912193643274],[-121.05446304916057,49.2777816263255],[-121.05452566557958,49.277646348328325],[-121.05457323090455,49.27750700585423],[-121.05461076375076,49.277364938760904],[-121.05464330951641,49.27722123551819],[-121.0546724902707,49.27707681856504],[-121.05470503564311,49.27693311524125],[-121.05474430847717,49.27679085716756],[-121.05477865561174,49.276646388369045],[-121.05480978726507,49.27649980532588],[-121.05484257139305,49.276353857385566],[-121.05488355635693,49.2762116686799],[-121.05494100252983,49.27607644185101],[-121.05502644582764,49.27595292811636],[-121.05520777443863,49.27586595614085],[-121.05561063509661,49.27583113893814],[-121.05563781838565,49.27583436121355],[-121.05566503138178,49.27583730516977],[-121.0556922750427,49.27583996182914],[-121.05571951870677,49.275842618481526],[-121.0557485041481,49.27584507532123],[-121.05577580722372,49.27584717533498],[-121.0558030805993,49.275849553654005],[-121.05583209575173,49.2758517321589],[-121.05585939979319,49.275853823173634],[-121.05588670287896,49.27585592315927],[-121.05591571803932,49.27585810164172],[-121.05594299142847,49.27586047992538],[-121.05597026482046,49.27586285820214],[-121.05599753821522,49.27586523647209],[-121.0560264939842,49.275867971549346],[-121.0560537070247,49.27587091540754],[-121.05608089132589,49.27587412859338],[-121.05610804497206,49.27587762906259],[-121.05613345589038,49.27588133831476],[-121.05616055014396,49.27588539539539],[-121.05618590167023,49.275889661260024],[-121.05621287617487,49.27589484055473],[-121.05623813765325,49.275899950321964],[-121.05626331003783,49.275905895020365],[-121.05628845177118,49.27591212700302],[-121.05631353411228,49.275918915604585],[-121.05633681528735,49.27592646064046],[-121.05636000545624,49.27593485856403],[-121.05638310653622,49.27594409141974],[-121.05640440549404,49.275954089689456],[-121.05642735618217,49.275964732053076],[-121.05644853540608,49.27597585254118],[-121.05646794316515,49.27598745115483],[-121.05648903235564,49.275999415549734],[-121.05651009185864,49.27601165825266],[-121.056529379897,49.27602437908202],[-121.05655037906764,49.276037187379266],[-121.05656963647161,49.27605019549125],[-121.05658886418841,49.27606348191191],[-121.05660983465337,49.27607655953138],[-121.05662909209032,49.276089567631985],[-121.056650091318,49.276102375908565],[-121.05666937943245,49.27611509671129],[-121.05669040933817,49.27612761768931],[-121.05671149864973,49.27613958203816],[-121.0567326176693,49.27615126807027],[-121.05675376735451,49.27616266680793],[-121.0567767191839,49.276173300116014],[-121.05679798767699,49.27618358559495],[-121.05682093952687,49.276194218893394],[-121.05684392108374,49.276204573874466],[-121.05686518960609,49.276214859339625],[-121.05688820087931,49.27622493599845],[-121.05691118246641,49.27623529096467],[-121.05693419375976,49.276245367613434],[-121.05695720506311,49.2762554442571],[-121.05698024607219,49.276265242583264],[-121.05700325739538,49.27627531921686],[-121.05702632907739,49.27628483024269],[-121.05704937011564,49.27629462855366],[-121.0570724418167,49.27630413956937],[-121.05709725435527,49.276313459730375],[-121.05712032607552,49.27632297073556],[-121.05714345719481,49.27633192511076],[-121.05716830041501,49.27634095796479],[-121.05719143155254,49.27634991232947],[-121.05721630448606,49.27635866685976],[-121.05723946533588,49.276367342901466],[-121.05726436893981,49.2763758101301],[-121.05728930224676,49.27638399904046],[-121.05731252251049,49.27639211844128],[-121.05733748552836,49.27640002902783],[-121.05736244855476,49.27640793960852],[-121.05738744224087,49.27641556289308],[-121.05741246467056,49.2764229168371],[-121.05743748806606,49.27643026179734],[-121.05746254020455,49.27643733741704],[-121.05748759330855,49.27644440405308],[-121.05751264642014,49.2764514706833],[-121.05753947102133,49.27645805916046],[-121.05756455384056,49.276464847465924],[-121.05758969700933,49.27647107016264],[-121.05761652163281,49.27647765862052],[-121.05764169450738,49.27648360299239],[-121.05766857852895,49.2764896348122],[-121.05769375141669,49.27649557917194],[-121.05772066610118,49.27650132368825],[-121.05774758079234,49.276507068197795],[-121.05777281308188,49.27651245591384],[-121.05779978812565,49.276517634807405],[-121.05782505011786,49.276522744198616],[-121.05785202517343,49.27652792307913],[-121.05787902992554,49.27653282364016],[-121.05790435227318,49.27653736740969],[-121.05793135607856,49.27654227693544],[-121.05795839053742,49.276546899164025],[-121.05798713710286,49.27655159985662],[-121.05801420222014,49.27655593478076],[-121.05804300817589,49.27656007883319],[-121.05807016237146,49.27656357880541],[-121.05809908900919,49.2765665916368],[-121.05812639261573,49.276568691053946],[-121.05815375656017,49.27657022486108],[-121.05818120957258,49.27657092372343],[-121.05820875260915,49.276570778662936],[-121.05823473390059,49.276569145609706],[-121.05826083394314,49.276566399299575],[-121.05828705465025,49.276562521776654],[-121.05831168200267,49.2765574525311],[-121.0583381124301,49.27655160885142],[-121.05836469128887,49.27654437360176],[-121.05838961837058,49.27653649427771],[-121.05841637725162,49.276527571183266],[-121.05844148435351,49.27651800401503],[-121.05846496840557,49.27650752343943],[-121.05848854246516,49.27649619894244],[-121.0585104944313,49.27648395206144],[-121.05853250575895,49.27647114855023],[-121.05855115320755,49.27645762250705],[-121.0585681479197,49.27644346137331],[-121.05858174811237,49.27642886500086],[-121.05859540862636,49.276413703023],[-121.0586073876785,49.276398175291355],[-121.05861936576503,49.276382656535866],[-121.05863137352941,49.276366859465845],[-121.05864338224323,49.27635105341626],[-121.05865538999127,49.27633525634278],[-121.05866571628063,49.27631909351682],[-121.05867775465595,49.27630300914942],[-121.05868808093034,49.27628684632051],[-121.05869843688295,49.2762704051773],[-121.05870879282823,49.276253964032726],[-121.05871917845143,49.27623724457382],[-121.05872956406716,49.27622052511346],[-121.05873994967538,49.276203805651754],[-121.05875033623373,49.27618707721078],[-121.05875903942356,49.27617000097458],[-121.05876945565237,49.27615299421786],[-121.05877815882879,49.276135917979275],[-121.05878686295638,49.27611883276167],[-121.05879727820592,49.276101834978874],[-121.05880601200472,49.276084471445856],[-121.05881474579701,49.276067107911636],[-121.05882344894064,49.27605003166719],[-121.0588321827199,49.27603266813071],[-121.05884091649263,49.276015304593045],[-121.05884964930127,49.27599795003208],[-121.0588584127452,49.275980308179015],[-121.0588654344173,49.2759628661809],[-121.05887416816445,49.27594550263873],[-121.05888290190506,49.27592813909544],[-121.05889166532317,49.275910497237824],[-121.05889868601467,49.275893064213584],[-121.05890741973626,49.27587570066688],[-121.05891615345126,49.27585833711906],[-121.05892317508324,49.27584089511395],[-121.05893190782827,49.275823540541765],[-121.05894064152433,49.2758061769906],[-121.05894766313918,49.27578873498259],[-121.0589563661817,49.27577165872018],[-121.05896509985884,49.27575429516572],[-121.05897209177321,49.27573713146792],[-121.05898079479707,49.27572005520223],[-121.05898778670047,49.275702891502604],[-121.05899480732447,49.27568545846652],[-121.0590018289007,49.27566801645185],[-121.05900713840201,49.27565049598144],[-121.05901247758244,49.27563269719706],[-121.05901778707566,49.27561517672517],[-121.05902141418022,49.2755972994848],[-121.05902504128201,49.27557942224381],[-121.05903038044737,49.27556162345662],[-121.0590340075429,49.27554374621434],[-121.05903763463563,49.27552586897146],[-121.05904126172555,49.27550799172798],[-121.0590466008765,49.27549019293806],[-121.05905022796018,49.27547231569335],[-121.05905898448695,49.275438605805185],[-121.05929112696613,49.274552429113186],[-121.0595742021299,49.27367252746272],[-121.0589099835482,49.27283521100765],[-121.05803150938073,49.272410106479875],[-121.05697163847529,49.2720406870083],[-121.05539163493431,49.27119348833614],[-121.05561893908417,49.26996622693765],[-121.05636075249338,49.26933375777639],[-121.05720244304247,49.268409838592234],[-121.0576261711687,49.266775732173656],[-121.05877365900069,49.264919083484656],[-121.06016491741688,49.263711322893066],[-121.06182112248268,49.262566720373336],[-121.06326917714962,49.26218054829969],[-121.06488410515553,49.26214905087893],[-121.06578806786078,49.26192964858336],[-121.06714784727824,49.261483558415186],[-121.06787882311001,49.26114400910145],[-121.06852828230006,49.260632982532904],[-121.0690501901064,49.25980119155249],[-121.0695620491596,49.25896668272533],[-121.07008061524623,49.25813361479471],[-121.07057234829175,49.25729394892148],[-121.07100529853491,49.25644088327928],[-121.07137598694871,49.255574818651354],[-121.0716976595287,49.25470059247331],[-121.07190397877605,49.25352026341915],[-121.07190594805542,49.253501741266035],[-121.07190785719534,49.2534837847429],[-121.07190976633377,49.25346582821921],[-121.07191170506236,49.25344759336882],[-121.07191361419784,49.25342963684415],[-121.07191726419471,49.25341148024545],[-121.07191920291807,49.25339324539354],[-121.0719228233184,49.25337536711977],[-121.07192476299262,49.25335712328848],[-121.07192841297945,49.25333896668747],[-121.07193206296338,49.25332081008587],[-121.07193571294451,49.25330265348357],[-121.07193765261064,49.253284409650014],[-121.07194130258667,49.25326625304655],[-121.07194495255987,49.2532480964425],[-121.07194860253023,49.25322993983778],[-121.07195054218825,49.25321169600196],[-121.07195419215353,49.253193539396094],[-121.07195784211598,49.253175382789536],[-121.07195978081354,49.2531571479303],[-121.07196340117983,49.2531392696489],[-121.07196534082827,49.25312102581033],[-121.07196724992956,49.253103069275774],[-121.0719691886204,49.25308483441439],[-121.07197109771873,49.25306687787882],[-121.07197300681557,49.253048921342604],[-121.07197317506258,49.2530311648804],[-121.07197508415715,49.25301320834325],[-121.07197528199416,49.2529951735537],[-121.07197544928556,49.2529774260683],[-121.07197390627661,49.252959591352315],[-121.07197404493202,49.25294211321402],[-121.07197250097025,49.25292428747527],[-121.07197092837328,49.2529067310842],[-121.0719676435708,49.25288910541879],[-121.07196607097688,49.25287154902667],[-121.07196275658782,49.25285420168666],[-121.07195773095104,49.25283677609386],[-121.07195441752212,49.25281941977442],[-121.07194939189222,49.252801994180345],[-121.0719443662661,49.25278456858562],[-121.07193934064375,49.25276714299013],[-121.07193260473278,49.2527496301632],[-121.07192757911861,49.25273220456638],[-121.07192087185368,49.252714422389516],[-121.07191413595733,49.252696909560015],[-121.07190742870264,49.25267912738147],[-121.07190069186191,49.25266162352837],[-121.07189395598083,49.2526441106962],[-121.07188724874152,49.252626328514985],[-121.07187880067438,49.252608746405805],[-121.07187035356823,49.25259115531734],[-121.07186361675424,49.25257365145969],[-121.07185513911429,49.25255634767379],[-121.07184497983302,49.252538687306384],[-121.07183650220638,49.2525213835181],[-121.07182802458607,49.25250407972872],[-121.071817835735,49.25248669768384],[-121.07180764689156,49.25246931563752],[-121.07179742846411,49.252452211916264],[-121.07178721004418,49.25243510819369],[-121.07177696108543,49.25241829177441],[-121.07176503144666,49.25240110979366],[-121.07175475291159,49.25238457169804],[-121.0717427936978,49.2523676680405],[-121.07173080394611,49.252351051686055],[-121.07171878461095,49.25233471365646],[-121.07170676528429,49.25231837562507],[-121.0716930051438,49.25230223766198],[-121.07168095528775,49.25228618693181],[-121.07166716557347,49.25227032729132],[-121.071653374914,49.25225447662691],[-121.07163952507901,49.25223918261353],[-121.07162570580032,49.252223601293146],[-121.07161011420996,49.252208516322646],[-121.07159623481023,49.25219350062917],[-121.07158061460139,49.25217868500194],[-121.07156499344791,49.25216387835043],[-121.07154931311851,49.25214962834947],[-121.07153363279869,49.25213537834599],[-121.07151624126544,49.252121050080575],[-121.07150053137222,49.25210707839824],[-121.07148311026646,49.25209302845352],[-121.07146739943808,49.25207906574395],[-121.07144994875937,49.2520652941199],[-121.07143249713636,49.25205153147098],[-121.07141678729187,49.252037559774955],[-121.07139933664376,49.2520237881418],[-121.07138188505137,49.25201002548388],[-121.07136440387536,49.25199654114935],[-121.07134695325823,49.25198276950691],[-121.07132947210259,49.251969285166226],[-121.07131199095714,49.25195580082244],[-121.07129451077653,49.251942307497245],[-121.0712753184358,49.25192874488415],[-121.07125780772678,49.251915538857354],[-121.07124032662237,49.25190205450091],[-121.07122110471937,49.25188877020389],[-121.07120359404085,49.25187556416748],[-121.07118437215932,49.25186227986348],[-121.07116686150123,49.251849073820544],[-121.07114763964118,49.251835789509464],[-121.07113009940828,49.251822861786735],[-121.07111087756961,49.25180957746853],[-121.07109162614643,49.251796571473264],[-121.07107237377936,49.251783574452595],[-121.07105483358714,49.251770646716544],[-121.07103558219582,49.25175764071051],[-121.0710163308153,49.25174463470081],[-121.07099707849082,49.25173163766563],[-121.07097782713187,49.25171863164857],[-121.07095854618747,49.25170590395442],[-121.07093929389524,49.25169290690818],[-121.07092001297208,49.251680179206694],[-121.07090073110479,49.25166746047965],[-121.07088145020278,49.25165473277075],[-121.0708621989081,49.25164172673146],[-121.07084120586877,49.251628929723445],[-121.07082192499911,49.25161620200306],[-121.07080261358814,49.25160376158393],[-121.07078333178474,49.251591042834534],[-121.07076233974483,49.2515782368319],[-121.07074305796306,49.25156551807476],[-121.07072374754908,49.25155306866229],[-121.07070446578832,49.251540349897844],[-121.0706834432406,49.251527831183736],[-121.07066416245615,49.25151510343332],[-121.07064485112952,49.251502662984066],[-121.07062385916777,49.25148985695275],[-121.07060454786244,49.25147741649582],[-121.07058352537014,49.251464897761075],[-121.0705642446392,49.251452169991545],[-121.07054493336554,49.251439729523284],[-121.07052391090636,49.251427210776185],[-121.07050463020742,49.251414482995294],[-121.07048360777057,49.25140196423994],[-121.07046429653937,49.25138952375624],[-121.07044498531855,49.25137708326891],[-121.0704239934687,49.25136427719623],[-121.07040468226916,49.251351836701204],[-121.07038365988761,49.25133931792514],[-121.07036437926362,49.25132659011752],[-121.07034506809572,49.25131414961109],[-121.07032404574733,49.25130163082276],[-121.07030473555544,49.2512891813303],[-121.0702837428292,49.25127638420698],[-121.07026443170379,49.2512639436852],[-121.07024515114381,49.25125121585485],[-121.07022412885081,49.2512386970458],[-121.07020484831234,49.25122596920768],[-121.07018553722904,49.25121352867084],[-121.07016454456985,49.251200731522935],[-121.07014526406348,49.25118800367349],[-121.07012595301195,49.25117556312522],[-121.07010667252659,49.25116283526845],[-121.0700856799121,49.25115003810417],[-121.0700663994484,49.25113731023962],[-121.07004711804036,49.25112459134974],[-121.0700278375978,49.25111186347789],[-121.07000855621091,49.251099144580635],[-121.0699892757895,49.25108641670133],[-121.06997002402548,49.25107341947005],[-121.0699507436253,49.25106069158342],[-121.06993149283764,49.25104768536643],[-121.06991221150379,49.251034966450796],[-121.0698816690598,49.25101495684861],[-121.06896769162562,49.25034470427772],[-121.0680777466793,49.24965890542517],[-121.06722230891847,49.24895607353783],[-121.06644495262029,49.24821451257681],[-121.06582704144542,49.247412859603735],[-121.06537409949004,49.246563775727026],[-121.06503522417556,49.24569313488278],[-121.06489823627692,49.24479959261329],[-121.06499708083915,49.24390332650994],[-121.06529502003255,49.24302631894089],[-121.06576650779105,49.24218234855902],[-121.06634000899416,49.241365043267955],[-121.0669400563906,49.24055656501473],[-121.06752018033873,49.23974125271017],[-121.0681002848731,49.2389259273005],[-121.0687002997137,49.238117157937765],[-121.07070983012869,49.236775162018816],[-121.07234208207205,49.236216310237715],[-121.0732510636299,49.2358798032891],[-121.07416112920697,49.23548441509927],[-121.08243471677596,49.232222280060256],[-121.09345559669613,49.22586976692241],[-121.09368280119271,49.22596386036249],[-121.09404471357878,49.22610044839932],[-121.09435345944694,49.2262360299751],[-121.09455517334524,49.22631118682426],[-121.0946786093756,49.22636276719817],[-121.09484647316906,49.22643300749845],[-121.09502539054094,49.22651248426787],[-121.09514759206928,49.22655949678372],[-121.09520307295985,49.22658739342761],[-121.09562471547753,49.226760537422976],[-121.09586187458085,49.226890589873676],[-121.09594167555633,49.22693228748509],[-121.09615052178488,49.22702130787634],[-121.09631668079003,49.227091458968204],[-121.09650323509544,49.22718002304317],[-121.09670103087689,49.2272597967805],[-121.09708503816385,49.22746391692429],[-121.09713709963115,49.2274916658003],[-121.09721174227876,49.22753340721015],[-121.09773664661382,49.22780287011714],[-121.09782718854272,49.22784053495595],[-121.09809299065626,49.22802489883192],[-121.0981482865476,49.228070838395986],[-121.09843635796389,49.228304699062804],[-121.09862283346911,49.22844287641795],[-121.09883192067153,49.22859477625501],[-121.09929300944096,49.22889910150118],[-121.09954890554869,49.22904720192166],[-121.10032539907192,49.22942451419597],[-121.10053179257216,49.22950439131921],[-121.10076308614865,49.22962514240617],[-121.10100564993095,49.22973683319133],[-121.10140251662187,49.229900921393956],[-121.10156448049256,49.22996213921272],[-121.10170243955781,49.2300228245073],[-121.10191694660027,49.230107289922515],[-121.10198149070149,49.230130813041534],[-121.10214498152567,49.23021013423381],[-121.10220857765039,49.23024263605787],[-121.10248250082019,49.23035038095553],[-121.10280638206044,49.23052214265033],[-121.1028525271741,49.23054087707403],[-121.10289990875249,49.23056417866524],[-121.10297798248222,49.23060607141884],[-121.10311062819629,49.23068455701943],[-121.1034615991121,49.230892796697795],[-121.1035451242356,49.23094818098815],[-121.10369722326861,49.231054056476275],[-121.10392739858231,49.231201823761545],[-121.10411627177365,49.23131754389921],[-121.10427866674296,49.23142359765389],[-121.10469324923677,49.23166432460937],[-121.10478757302509,49.231715128174436],[-121.10492266795463,49.231803033053055],[-121.1057364771116,49.23223472044914],[-121.10582830030155,49.23227666711812],[-121.10592775728213,49.23232771177074],[-121.1059704852912,49.232346280398524],[-121.10613351601708,49.232430093682716],[-121.10629952407645,49.232518273210864],[-121.10649796849424,49.23262483298191],[-121.10675751348333,49.23275503547528],[-121.10695392955826,49.23284825801251],[-121.10730108832318,49.23301148011812],[-121.10748226592754,49.23308624535673],[-121.10791125230621,49.23330476872959],[-121.10813636858775,49.23340295508253],[-121.10853826939933,49.23358500620444],[-121.1086654808734,49.23364999296415],[-121.10898835425529,49.233799132761526],[-121.10918867393234,49.23388801698975],[-121.10937528007621,49.23397655789019],[-121.10943765020174,49.234004479198525],[-121.10966746088808,49.23410710631652],[-121.11019052732992,49.234313822358],[-121.11035473152592,49.23437033644393],[-121.11039448498678,49.23438454586422],[-121.11043034383582,49.23440308941117],[-121.11113420778415,49.23463943336923],[-121.1114045882777,49.234715984011075],[-121.11170293165351,49.23478816416549],[-121.11202084359729,49.23491930474909],[-121.11232788088229,49.23502317417429],[-121.11255080165917,49.23512604122491],[-121.11280713815623,49.23523803810301],[-121.11291392497124,49.235284897077555],[-121.11316433740302,49.23538788213633],[-121.11338947488548,49.23548605721828],[-121.113693389107,49.23560331337656],[-121.11394988312907,49.23569755046823],[-121.11434331470697,49.235829853174785],[-121.11452808700554,49.23588701341861],[-121.11471583846105,49.23594853060827],[-121.11482407797503,49.235981632002726],[-121.11504052814381,49.236048112806216],[-121.11527269657618,49.23612855881842],[-121.11559270014315,49.23622369553136],[-121.1158648372393,49.23630003402916],[-121.11616738421294,49.236381413221],[-121.11628981366034,49.23641036576091],[-121.11638991595044,49.236439145053446],[-121.11652245886508,49.23648631959811],[-121.11689844516442,49.23660485714881],[-121.1170601603467,49.2366525052089],[-121.11718509731068,49.23669030336247],[-121.11749478469339,49.23678553480037],[-121.11753799318481,49.236799618255176],[-121.11758757194981,49.236818501260494],[-121.11777049170175,49.23689332632094],[-121.11794872317468,49.236963707388],[-121.1181500189397,49.23704359566061],[-121.11826448426126,49.2370992410621],[-121.11834305546186,49.23713663283425],[-121.11860905858398,49.23727132709892],[-121.11875154170303,49.23735474720569],[-121.11923503284567,49.23762785298981],[-121.11976967791475,49.237888613184],[-121.11981489220113,49.23791631903748],[-121.12022014967205,49.238116237321215],[-121.12043673203995,49.23821428819373],[-121.12064007207748,49.23830750765836],[-121.12091263815279,49.23842896010822],[-121.12113019747424,49.23851775230007],[-121.12133398235589,49.23860676829037],[-121.12161905953849,49.238723706077884],[-121.12174474173922,49.23877084252375],[-121.1218613978032,49.23882208095729],[-121.1222341107445,49.23897202564152],[-121.1224906406999,49.23906624194845],[-121.12285760746518,49.23918913880326],[-121.1228973688756,49.23920334351288],[-121.12294353071762,49.23922206909594],[-121.12314360621164,49.23929738088183],[-121.12384300466015,49.239610115725725],[-121.12397214343538,49.23965711705117],[-121.12424330989084,49.23979202919818],[-121.12448689808772,49.239894964900124],[-121.1248917805812,49.24004973824289],[-121.12495632181293,49.24007351662837],[-121.12500248535005,49.2400922413059],[-121.12511274758143,49.24013895536191],[-121.12537008599953,49.24024194263144],[-121.12560011045034,49.240326777958686],[-121.12570179017375,49.24037338272617],[-121.1257671285249,49.24040593858306],[-121.12592603446721,49.24048050981812],[-121.12604641634663,49.24054544415771],[-121.1261920787343,49.24061518470563],[-121.12646030732097,49.240745446841714],[-121.12688246194482,49.240932280056604],[-121.12706243268948,49.24100273200008],[-121.12721715459008,49.24106808123199],[-121.12750223150074,49.24118529036555],[-121.12762795652777,49.24123213245774],[-121.127744596016,49.241283642686206],[-121.12792362594016,49.24136307207344],[-121.12811171301713,49.2414381111855],[-121.12832758927144,49.24152681109738],[-121.12854980914467,49.24162058779791],[-121.12879436075069,49.24171452559235],[-121.12932732994584,49.24189396242824],[-121.12958577679481,49.241970203604225],[-121.12985502022926,49.24204186200937],[-121.12995983359609,49.24207507158968],[-121.13016429774044,49.2421415457738],[-121.1304492975094,49.24222687870081],[-121.1309479657927,49.242356545500485],[-121.13124682988278,49.242424468636735],[-121.13131406072088,49.24243906316701],[-121.13162667302961,49.242507038068055],[-121.13189435704989,49.242560857188984],[-121.13216596515326,49.24261005344361],[-121.13268575518872,49.24268597750428],[-121.13295921978988,49.242717501194925],[-121.13327731729964,49.242749632795814],[-121.13356718332344,49.242772305852085],[-121.13384380279132,49.242790157802865],[-121.13388796419316,49.24279525563073],[-121.13420355400126,49.242818529350735],[-121.13443087952484,49.2428310502954],[-121.13473369494419,49.24284500375176],[-121.13518503951512,49.24285240994596],[-121.13588646388038,49.2429176278126],[-121.13616181587737,49.24293118544232],[-121.13621674378426,49.24293197789531],[-121.13646292147598,49.242945056809035],[-121.13673877390941,49.24295384513194],[-121.13702710348998,49.242958405465714],[-121.13724894066883,49.242957699815754],[-121.13734850235925,49.24295908965718],[-121.13746473236775,49.24296546269788],[-121.13772415599927,49.24298337657209],[-121.13792277859879,49.24299093210585],[-121.13809125598031,49.24300726717555],[-121.13836147615352,49.243020587576396],[-121.13856476128329,49.24303286302354],[-121.13875604032798,49.24304487607685],[-121.13895932566834,49.243057150780224],[-121.13910989386235,49.24306394349021],[-121.1392737086403,49.24307556462818],[-121.13952112831656,49.24309320324615],[-121.13979648241539,49.243106751598475],[-121.14007233643989,49.24311553139825],[-121.14034692094906,49.24312002217108],[-121.14057737223084,49.24311913882616],[-121.14079065414597,49.24311804904753],[-121.14087646988324,49.24311937503515],[-121.14122047000103,49.24313404873505],[-121.14138756684534,49.24316356882197],[-121.1414415250347,49.24317361597688],[-121.14161405488807,49.24321691283598],[-121.14190656646478,49.24328000825969],[-121.1422063942331,49.243338912955636],[-121.14231950372005,49.243358672149476],[-121.14306879160843,49.24349224459772],[-121.14321996213664,49.24352612288675],[-121.14346583310241,49.24357498678117],[-121.1437931296569,49.24363427692359],[-121.14409906477003,49.24368415029667],[-121.14438534922245,49.24372468418916],[-121.14491734853642,49.24378276644722],[-121.14501470098105,49.24378884896408],[-121.14523844274353,49.243819228099305],[-121.14557573783493,49.24386515136608],[-121.14587668320259,49.24389703161107],[-121.14593627552134,49.24390253988034],[-121.14619821981722,49.243929279231075],[-121.14640573424604,49.243950462833915],[-121.14671134298789,49.24398707046731],[-121.14696644400489,49.24401349967752],[-121.14751015494645,49.24405828458886],[-121.14759036864217,49.24406387257513],[-121.14789473879081,49.24409590129127],[-121.14812626778303,49.2441176035663],[-121.14839897982017,49.24414003196019],[-121.14844998833391,49.24414543198349],[-121.14852675105053,49.244151143542915],[-121.14862021378997,49.24416154927673],[-121.14885127369806,49.244187739524875],[-121.14893615121755,49.24419804714352],[-121.14907452103958,49.24422287857094],[-121.14959438587888,49.24429844265183],[-121.14986787144652,49.244329923418036],[-121.1503296923652,49.24436875244163],[-121.15042392781547,49.24438821269399],[-121.15084296169344,49.24445809579149],[-121.15110571306273,49.244493600935826],[-121.15135300598438,49.24452897817203],[-121.15197845754946,49.24459771616077],[-121.15219332046402,49.24461442865716],[-121.15227863982452,49.24462052244894],[-121.15246167640565,49.2446456718919],[-121.15266182402661,49.24467159076126],[-121.15294610794656,49.244698479301995],[-121.15321617596766,49.24472979762569],[-121.15348030951812,49.24475210668586],[-121.15364913106602,49.244781684675324],[-121.1539808088936,49.244832127610735],[-121.15429457477072,49.24487302235024],[-121.15469070936648,49.24491535564079],[-121.15476576302629,49.24492098581441],[-121.15495233232586,49.24497815297854],[-121.1550780953029,49.24502496281735],[-121.15511911351108,49.245043722015396],[-121.15566467727459,49.24536708042111],[-121.15592097995818,49.24549728660301],[-121.15659261801176,49.245782328346515],[-121.15674129595504,49.24585667047492],[-121.15697033182646,49.24596817408378],[-121.15713319815106,49.2460383629852],[-121.15716345318678,49.24606142786862],[-121.15748591862061,49.24638123504627],[-121.15765969732564,49.24652802570105],[-121.15825159613291,49.24695127719137],[-121.15831260646894,49.24699263835223],[-121.15843241742475,49.24708006056585],[-121.15862008446985,49.24720915112796],[-121.1587374118335,49.247287440110526],[-121.15896613244321,49.24743500043828],[-121.15938754640794,49.24768003000508],[-121.15961737134649,49.24780058366082],[-121.15969381399087,49.247842357401204],[-121.15995017069618,49.24797227517376],[-121.16004204489616,49.24801445304339],[-121.16027109933745,49.24812594928293],[-121.1608752479825,49.24838284137139],[-121.16113361953782,49.24847704129933],[-121.16156458876158,49.2486142358307],[-121.16173528338835,49.248675458389414],[-121.16217685945735,49.248826369576186],[-121.16242649664025,49.24898784185927],[-121.16265539994805,49.249117358942186],[-121.16282748313,49.249214735610444],[-121.16291017417252,49.24927906047923],[-121.16312332396667,49.249444242625756],[-121.16345770856319,49.24968336294779],[-121.16353023682157,49.24972975713708],[-121.16356348067488,49.249757184903814],[-121.16375181516652,49.2499130696282],[-121.16394575224189,49.250064703791516],[-121.16412519644896,49.25020694568977],[-121.16460172836706,49.250533919048955],[-121.1646435590684,49.250561452015],[-121.16510433161409,49.250874743189655],[-121.16514787425501,49.2509023527217],[-121.16523368755995,49.25095328375179],[-121.16553221538588,49.25112426579235],[-121.16577485770533,49.2512541116377],[-121.16604279060465,49.251388762825414],[-121.16629838054781,49.251509887300536],[-121.16657288389409,49.25163102036712],[-121.1668431326987,49.25174350005802],[-121.16721018517187,49.25188400032638],[-121.16737278140064,49.251940618749195],[-121.16752632315487,49.25200163012844],[-121.16779284627336,49.25210040849039],[-121.16803675607119,49.252185208978865],[-121.16845325543265,49.252313262257495],[-121.16872386227922,49.25238938883897],[-121.16888615441648,49.25243245953522],[-121.16947540806866,49.25258573520464],[-121.16967111007611,49.25263820454121],[-121.16993357355878,49.252710011678815],[-121.17026892692947,49.25279185036665],[-121.17049897593692,49.25284472965972],[-121.1707439605023,49.25290278820072],[-121.17088317292419,49.252936368805706],[-121.17111319435077,49.252989525131305],[-121.17135649895498,49.25304721825694],[-121.17199443210852,49.25317898004743],[-121.17219935303807,49.25320901623116],[-121.17237288305219,49.253243293091224],[-121.17264409903335,49.25329716357206],[-121.17301272173307,49.25335680320666],[-121.17326474538177,49.253396849282154],[-121.1735219337078,49.253436837359935],[-121.17377395916505,49.253476873262606],[-121.17444796909516,49.25355949221371],[-121.17499524119985,49.253604291259784],[-121.17504458165912,49.25360931468392],[-121.17534654403275,49.25363214209492],[-121.17571717042895,49.253656057547815],[-121.17645266921663,49.25367657311476],[-121.1765887496783,49.25367421057944],[-121.17666942167395,49.2536755656378],[-121.17690241327375,49.253683737098896],[-121.17712339579494,49.25369165031889],[-121.17733797069289,49.2536950455252],[-121.17788244800234,49.253717152228056],[-121.17837509592981,49.25372510198721],[-121.17866443130625,49.25372056283461],[-121.1789297174544,49.25371580414698],[-121.17956672328845,49.25370792391805],[-121.17981470975917,49.25372071089552],[-121.1799922938848,49.25373259503771],[-121.18027976098466,49.25374601894186],[-121.18054364769877,49.253754716117705],[-121.18083033713904,49.253759082816565],[-121.18090242313819,49.25376033043654],[-121.18112760765234,49.253777444243745],[-121.18135671090828,49.25378994265302],[-121.1814712625825,49.25379619167528],[-121.18159906828913,49.25380726393953],[-121.18172858552606,49.25381841256403],[-121.18232287616874,49.2538906428289],[-121.18250858128968,49.253907116594426],[-121.1826462856667,49.254120753042386],[-121.18291248492648,49.25447122425452],[-121.18294465577361,49.25452566000189],[-121.18312390104147,49.254802882186965],[-121.18324101126242,49.25496655025801],[-121.18334841644334,49.25510779143722],[-121.18347925028826,49.25527178372566],[-121.18381742686203,49.255641245508464],[-121.18395025425679,49.25576953111469],[-121.18408435732731,49.25590209527676],[-121.18411792991736,49.25594306174317],[-121.18426236490852,49.25612514283971],[-121.18474962766638,49.256632064321046],[-121.18494820470451,49.25680613470596],[-121.18511868607506,49.25695272590019],[-121.18550819382773,49.25729177264869],[-121.18559811863356,49.257369652050755],[-121.18579763556622,49.257534732499394],[-121.18589614925216,49.257612706523766],[-121.18609659992872,49.25776881613853],[-121.18638806617095,49.2579757809947],[-121.18641616563085,49.25800325042224],[-121.1864460056642,49.258030517922506],[-121.18679196868027,49.25834196783833],[-121.1870026009917,49.258516003320274],[-121.1870494349052,49.258561782397656],[-121.18734343730286,49.25882721297825],[-121.18749112094997,49.2589285252843],[-121.187557155123,49.25898813323401],[-121.18759166531767,49.259020119231714],[-121.18776465331021,49.25917584676735],[-121.18801665054306,49.259382171624324],[-121.18809410771566,49.25946427279419],[-121.18825415610131,49.2596287221179],[-121.18839764953836,49.25977043943087],[-121.18858424283985,49.25994424581837],[-121.18864215848386,49.25999925975956],[-121.18903252609502,49.26034706946477],[-121.18910653339859,49.260429304332135],[-121.18913854736616,49.26046879180888],[-121.19320027299709,49.25849655947991],[-121.1935443732081,49.25832895324734],[-121.19803491728864,49.2561473369003],[-121.19762639583872,49.25575871591044],[-121.1975433290723,49.25568087302325],[-121.1974905429536,49.25562609228328],[-121.19736670151359,49.255493714965716],[-121.19712400523272,49.255247232536504],[-121.19696379031237,49.25510083918661],[-121.19668024982204,49.254866914454],[-121.19659921357594,49.25480269228436],[-121.19656174249658,49.25476606674312],[-121.19653659680264,49.2547432420422],[-121.1964641474434,49.2546791227837],[-121.19640277820567,49.25462422941843],[-121.19632313763067,49.25454654699596],[-121.19604912166534,49.254303735134755],[-121.19589502448187,49.254197917371734],[-121.19570920683887,49.25403318671502],[-121.19563928185694,49.25397791141144],[-121.19541599662512,49.25377655426569],[-121.19527156957645,49.25364382433369],[-121.19510106923111,49.253497239461545],[-121.19489982509747,49.253332098897324],[-121.19445391605058,49.253006068602964],[-121.19441209432864,49.25297826893452],[-121.19431699908712,49.25290045475979],[-121.19396197365644,49.25259342181659],[-121.19390060920318,49.252538535834894],[-121.19346558760525,49.2520413098633],[-121.19333271479218,49.25191332258171],[-121.19319859776853,49.25178076013014],[-121.1930395978977,49.25153997375488],[-121.19290889165565,49.25135795709938],[-121.19286392242934,49.25129421238997],[-121.19272039989178,49.251103162123016],[-121.19268102997636,49.25103516563031],[-121.1925730987283,49.25084908545067],[-121.19247705465494,49.25068101783117],[-121.19191010455548,49.2500470943339],[-121.19174680486896,49.24986446027086],[-121.19143735055229,49.24949968545575],[-121.19127717339487,49.24935328239257],[-121.19089174186762,49.24904148696119],[-121.19046341573815,49.24872891206861],[-121.1902163244133,49.248558610575955],[-121.19001481605278,49.24842952090358],[-121.18932182753909,49.24804987404278],[-121.18907898379862,49.24793811562555],[-121.18902466733859,49.24791482528584],[-121.18875531895496,49.24779342112439],[-121.18803912988513,49.247521539947634],[-121.18743988789748,49.24733212299318],[-121.18706739918562,49.24722725318027],[-121.18680960779089,49.24716020608197],[-121.18664731839293,49.24711715301234],[-121.18636035064405,49.24704964051862],[-121.18565032669677,49.24691728369451],[-121.18536401549434,49.246876581110214],[-121.1851500627325,49.24685095537049],[-121.18503132660253,49.246835501465185],[-121.18485516645373,49.246810156479306],[-121.18420777033658,49.24673696052146],[-121.18399462622652,49.246720109935275],[-121.18332707698056,49.24664234535339],[-121.18310363746475,49.24662531244048],[-121.18283947904929,49.246603075946496],[-121.18241101640618,49.24657377312125],[-121.18219740808006,49.246561399663285],[-121.1819820588054,49.246549236611955],[-121.18177532443926,49.24653688999326],[-121.18147247087408,49.24652306861498],[-121.18122234361043,49.246514707421596],[-121.18094086139097,49.24651029293277],[-121.18087392024171,49.246509274903225],[-121.1806195939048,49.24649169444533],[-121.18045575675526,49.24648013613003],[-121.18018037083402,49.246466691590726],[-121.17965342914013,49.24645862882936],[-121.17936074659858,49.24646273024516],[-121.17871180387472,49.24647063013915],[-121.17866545598102,49.24646996376746],[-121.17839849907587,49.24647465427184],[-121.1779497575995,49.24645852613756],[-121.17772022445183,49.246450510000095],[-121.17750226155626,49.24644695337801],[-121.17726930616305,49.2464387831222],[-121.17704835813404,49.24643087011398],[-121.17671881780984,49.24642570093948],[-121.17655874310563,49.24642755703789],[-121.17633872948201,49.24641066330344],[-121.17615305653172,49.2463941787365],[-121.17609047230604,49.246384331671585],[-121.17576218175593,49.246334110020825],[-121.17571975254721,49.246328827607186],[-121.17563188011071,49.24631418557168],[-121.17551408291011,49.24628974191654],[-121.1754566624049,49.2462798369793],[-121.17514131495737,49.246220892091884],[-121.17493520800593,49.246186016566746],[-121.17479259147565,49.246152278620116],[-121.17456431088006,49.24609920621117],[-121.17431932752599,49.24604144307906],[-121.17418013329062,49.246007866555146],[-121.17405079781365,49.24597867359236],[-121.1739039538461,49.24593601263582],[-121.17380161788489,49.24591169113353],[-121.1735421128134,49.24584481393151],[-121.17305311670985,49.24572001583247],[-121.17296590219811,49.24568255949433],[-121.17269937499526,49.2455840802819],[-121.17241774703551,49.24539949364776],[-121.17232737010673,49.24532637881827],[-121.17221830083012,49.24523466379764],[-121.17191357768026,49.24499125136108],[-121.17169948196296,49.244835064713754],[-121.17146700399431,49.244673822906385],[-121.17142346250165,49.244646224642416],[-121.17134123549685,49.24457741621832],[-121.17118738617239,49.24445352644444],[-121.17097423060233,49.244288358975425],[-121.17014024922243,49.243762429772616],[-121.16998689100839,49.24368338614408],[-121.16992027369025,49.24364629090233],[-121.16968560005392,49.24348973625178],[-121.16952428684043,49.24338806192917],[-121.16911392823224,49.243152317218005],[-121.16906009517157,49.24312452703618],[-121.16870110440942,49.24295676688299],[-121.16865022609171,49.24293361955397],[-121.16861433741958,49.242915095601916],[-121.1673262554686,49.24240880595846],[-121.16726635442801,49.24238977285371],[-121.16703232465142,49.2423096411099],[-121.16689206476761,49.24225345338602],[-121.16654072237135,49.24214437758856],[-121.16651046523037,49.24212131519719],[-121.16636972485038,49.24202027864244],[-121.16629531911124,49.24194251552372],[-121.16608345106924,49.241732288011235],[-121.16588420441515,49.241549410281294],[-121.16516905780668,49.24108824443844],[-121.16507000094444,49.240983158253776],[-121.16492758520894,49.24088176450976],[-121.16430325123969,49.240489511740996],[-121.16406064118374,49.24035992984728],[-121.16345285044456,49.240089362167716],[-121.16270343460288,49.23972644117504],[-121.16256785306531,49.23967495869922],[-121.16237239507643,49.2395548328266],[-121.16175432244096,49.23923472573771],[-121.16153935901379,49.23913683479694],[-121.1613359332849,49.239043692535816],[-121.16090507474351,49.23885687874926],[-121.16066047326005,49.238763013325375],[-121.16055269316921,49.2387251811022],[-121.16029434799239,49.238631256747794],[-121.16019344011231,49.23859346219427],[-121.1597057918817,49.2384238306961],[-121.1594396693115,49.23833857603872],[-121.15912814570137,49.23824366671014],[-121.15867528440386,49.238119572285896],[-121.15839012284808,49.23805207036469],[-121.15798454775876,49.237968997947995],[-121.15771122955967,49.23791978045788],[-121.1571931618904,49.23784406227254],[-121.15698271798774,49.237818246815245],[-121.15673156497468,49.23778722688822],[-121.15633549025581,49.23774489165218],[-121.15628277702048,49.23773941838659],[-121.15618808363043,49.23772445266153],[-121.15613409950615,49.23771469115267],[-121.15583335236842,49.2376648038636],[-121.15505022965924,49.23757602938442],[-121.15487958703157,49.23756412434099],[-121.15476085564265,49.23754891527261],[-121.15452469295991,49.23752250657887],[-121.15431082941423,49.23749654098727],[-121.15404938684881,49.23746532248789],[-121.15372098713814,49.23743335580279],[-121.15349418116803,49.237416107437475],[-121.15339090615511,49.23740103279874],[-121.15329842448776,49.23738136456108],[-121.1528794216685,49.23731176860304],[-121.15259316933484,49.23727125684955],[-121.15246759526214,49.23725574632766],[-121.15214016688574,49.23721450829765],[-121.151678415593,49.23717568660052],[-121.15154690859559,49.2371511662154],[-121.1512881195231,49.237111038818526],[-121.15086553342098,49.23705931637867],[-121.15066666090408,49.23703796047325],[-121.1504682280424,49.23701240194662],[-121.15002287561626,49.236964721372146],[-121.14974628463278,49.23694691073535],[-121.14961339960854,49.236935578385804],[-121.14944024926515,49.23691480986861],[-121.14910548310694,49.23687803142323],[-121.14872595157404,49.236858406741895],[-121.1486020916377,49.236842959769625],[-121.14829649835224,49.23680664442711],[-121.14804146622734,49.23677993073905],[-121.14790731195292,49.23676430801298],[-121.147609363181,49.23673707677218],[-121.14750733350586,49.23672655413925],[-121.1474023511876,49.23671139669677],[-121.14722796077959,49.236686066967266],[-121.14689883029367,49.23664473593648],[-121.14651947042006,49.236607068122666],[-121.14638672783265,49.236577965803136],[-121.14614088989549,49.2365291170241],[-121.14532445079529,49.23638124797661],[-121.1452268121966,49.236361628850304],[-121.14508598733372,49.236327649887656],[-121.14485731893716,49.236279003425956],[-121.14457124860316,49.23622044393553],[-121.14433523899203,49.23617625586837],[-121.14407864152948,49.236131707640595],[-121.14383578982478,49.23608721003193],[-121.14327877064261,49.23600628401586],[-121.14299159426419,49.23597472583759],[-121.14273435865799,49.23595269933857],[-121.1424462424087,49.23593011882874],[-121.142152522953,49.235911804663026],[-121.14149376932804,49.235883225645],[-121.14126429476674,49.23587513184632],[-121.14094857762092,49.23586991390554],[-121.14071816231542,49.23587079805295],[-121.14050320293909,49.23587181053275],[-121.14030511002787,49.23585949176351],[-121.14005769941687,49.23584213310159],[-121.13988485656343,49.23583489504185],[-121.13967177860756,49.235817956646606],[-121.13942218808317,49.23580499991537],[-121.1392287573522,49.23579740027008],[-121.13906372719218,49.23578122117825],[-121.13881195566582,49.23577267539071],[-121.13865456822117,49.2357655734031],[-121.13857782057867,49.2357598547491],[-121.1384964114248,49.23574941489881],[-121.13820266548677,49.23573136832784],[-121.13787414690391,49.2357171013755],[-121.1374228712437,49.23570970634809],[-121.13718903520943,49.235710428526765],[-121.13702993749608,49.23570324694875],[-121.1366591469492,49.23566593052718],[-121.13637103543351,49.23564333378563],[-121.13611162318497,49.235625703789445],[-121.13582259953628,49.23561180630006],[-121.1353078231926,49.23560350190109],[-121.13514232409895,49.23559180633796],[-121.13487604052374,49.23557414271065],[-121.13466767687623,49.23551229015152],[-121.13427106618573,49.235393452811934],[-121.13414098762053,49.23535543358436],[-121.13410122606605,49.23534123293501],[-121.13396320888668,49.23528058956603],[-121.1337965227854,49.23521469953762],[-121.13362856743349,49.23514452977155],[-121.13334519362577,49.23502769138033],[-121.13321779814551,49.23498049987479],[-121.13310113920349,49.23492927342048],[-121.13289560800406,49.23484048021977],[-121.13282933007706,49.23481690745556],[-121.13269101908239,49.234742716543856],[-121.13249796471547,49.23464969572329],[-121.13227544409338,49.23454265863917],[-121.13207725937,49.23444940514333],[-121.13190559123919,49.23436553213419],[-121.13163473093257,49.23424418401301],[-121.13110171883457,49.234033175195066],[-121.13100721595436,49.23400015187812],[-121.13095123427782,49.23397675450948],[-121.1307619034028,49.23389743998203],[-121.13035708515129,49.23374239989082],[-121.13030750353633,49.233723531644124],[-121.12966413146407,49.23343422501422],[-121.12942897260535,49.23334944378345],[-121.12931919367914,49.23329824413611],[-121.12901764211843,49.23315830563189],[-121.12877407826713,49.23305538808462],[-121.12855950972953,49.2329709674735],[-121.12828848946859,49.23286765511255],[-121.12783393287603,49.23271177152747],[-121.12776890042821,49.23269275348656],[-121.12746249098787,49.23256641165343],[-121.12733507993265,49.232519482397066],[-121.12721846290664,49.23246797104109],[-121.12711163794823,49.232421413353435],[-121.12698003842628,49.232365281471374],[-121.12685873293022,49.23230932640068],[-121.12675069912879,49.23225792309321],[-121.12669174305212,49.232230157514344],[-121.12663157654794,49.23219755562703],[-121.12623227104152,49.232006669886495],[-121.12606669880559,49.23191403144702],[-121.12595834249387,49.23184935972005],[-121.12552946161962,49.23161287215969],[-121.12508371590262,49.2313897113442],[-121.1249078254205,49.23129717224327],[-121.12466274812415,49.23117612325196],[-121.1244184377384,49.23106413911257],[-121.12415867521935,49.23095201425735],[-121.1239296146091,49.23085847397342],[-121.12379242069149,49.23080658631259],[-121.1236124934672,49.23073613680486],[-121.12342787803236,49.23066124351022],[-121.12325137295716,49.23059094826215],[-121.12298037933348,49.23048761321549],[-121.12279187275702,49.230417053424915],[-121.12254644846364,49.23033207944036],[-121.12213198334143,49.230203922240605],[-121.12201691008705,49.230170518042314],[-121.12191213020577,49.230137291168724],[-121.12164096280773,49.23005199716989],[-121.12153400072258,49.230023181965144],[-121.12147457740309,49.22999991192931],[-121.1212505383123,49.22992407703956],[-121.12100588627953,49.22984814699892],[-121.12088736352042,49.22981487395172],[-121.1207239577348,49.22976715365137],[-121.1206520601666,49.229748108637075],[-121.12051687712035,49.22970984021077],[-121.12021436598017,49.2296284723909],[-121.12010177171655,49.22960420011225],[-121.11999404498235,49.22956633583723],[-121.11988581673309,49.22953323930674],[-121.11966938998737,49.22946676756586],[-121.11943724723695,49.229386330200576],[-121.1192409344433,49.229324711436796],[-121.11919773238851,49.229310628504074],[-121.11914987049921,49.2292918325093],[-121.11911182918008,49.22927770371246],[-121.11889605769005,49.22918869638869],[-121.11881062742286,49.229151281847855],[-121.11869447152309,49.229095549861505],[-121.11819855990072,49.228876002058605],[-121.11793504397143,49.22879977786816],[-121.11773269618425,49.22869757295848],[-121.11755355246353,49.228636160674334],[-121.11727294287495,49.22851010807931],[-121.11704393747756,49.22841627448061],[-121.11577271757133,49.22803582605521],[-121.11573078470099,49.22802603041556],[-121.11568198089846,49.228016202860935],[-121.11550004508511,49.22793239425835],[-121.1153864006873,49.22788551438188],[-121.11529457849286,49.22784356658923],[-121.11519511987542,49.22779253920306],[-121.1149333957087,49.22766676794924],[-121.11440166203583,49.22742865997062],[-121.11387571841377,49.22716826597191],[-121.11361774377009,49.22705590533788],[-121.113550693017,49.227023542218376],[-121.11348664874977,49.22699526704619],[-121.11341275670908,49.226962593450395],[-121.11334399586819,49.22693015259978],[-121.11330050649836,49.22690252117267],[-121.11306922416635,49.22678150913953],[-121.11291427948454,49.22670258314083],[-121.1126923151282,49.22659101488716],[-121.11245755562844,49.2264704119427],[-121.11233286233094,49.22641428481372],[-121.1121196639205,49.226284789468885],[-121.11186326981496,49.22614120773973],[-121.11172767478081,49.22605808761682],[-121.1116036389753,49.2259794345182],[-121.11150266045377,49.22591029035638],[-121.11137735895115,49.225827348206515],[-121.11116337265426,49.22568907258671],[-121.11102483278496,49.225601306762094],[-121.11059674255098,49.225342223513806],[-121.11037494278142,49.22521290197153],[-121.11024404100284,49.22513421497141],[-121.1100281973837,49.225013616579965],[-121.10973454552428,49.224864954045515],[-121.10953052358553,49.224762646505624],[-121.10931152379955,49.224655715779555],[-121.1089426006832,49.22448756455906],[-121.10871847275607,49.22438039957658],[-121.10852034838088,49.2242873887043],[-121.10840300954217,49.22422679971032],[-121.10815874649263,49.22411504694123],[-121.10776190536635,49.22395098215069],[-121.10760166452998,49.22388985076764],[-121.1074637159715,49.22382917245133],[-121.10724751759467,49.22374463956335],[-121.1067629551465,49.22351624625806],[-121.10653485833849,49.22333276802926],[-121.10637564796048,49.22321303828354],[-121.1062252777593,49.22310725200183],[-121.10555562035056,49.2226462981325],[-121.10497703826394,49.22229943955127],[-121.10476195471122,49.222188165163494],[-121.10468170954825,49.222150684916755],[-121.10444012417196,49.2220300221328],[-121.10426855183698,49.22194610357532],[-121.10392509203047,49.22176498876608],[-121.1037698910958,49.22167250281738],[-121.10355405098318,49.221552169186054],[-121.10281190079142,49.22122492626252],[-121.1026287786407,49.22113652783525],[-121.10251516385502,49.22108963391634],[-121.10225893023102,49.220977610181265],[-121.1021902154261,49.22094488357842],[-121.10202578060661,49.2208748096786],[-121.10195190636071,49.22084212792907],[-121.1019160907534,49.220823302834276],[-121.10157635651797,49.22065588204047],[-121.10130565442795,49.220534464243215],[-121.10106734942397,49.22043170657546],[-121.10090073292015,49.2203660515753],[-121.10073288189406,49.22029582004843],[-121.10055397869895,49.220216351994374],[-121.1002968356224,49.220113024070386],[-121.10021267385605,49.220080152598705],[-121.09943482775034,49.21976592036609],[-121.09931824427068,49.21971465620687],[-121.0992558994095,49.21968672844283],[-121.09902621245669,49.21958379855349],[-121.09879602277519,49.21948563598769],[-121.09877777555454,49.21947944634584],[-121.09852885543123,49.21939593972103],[-121.09788113547572,49.21915133211903],[-121.09777611000695,49.21910454394474],[-121.09760874176001,49.219029826920924],[-121.09740850829793,49.218940919187524],[-121.09729069355843,49.21888508544077],[-121.09712959391095,49.218783586483006],[-121.0969019727777,49.21864493658516],[-121.09663461732396,49.21849207135969],[-121.09639319041875,49.21832150264696],[-121.09617757327246,49.21818311785667],[-121.09594185304968,49.218039865312434],[-121.09583015102058,49.21797500621675],[-121.09579183989088,49.21794732264155],[-121.0956505658352,49.21783713335878],[-121.09557441869417,49.21777727657606],[-121.09529082662051,49.217534294013525],[-121.09507635447999,49.217368892090015],[-121.09498105332258,49.217295197401626],[-121.09471158970977,49.21709739907425],[-121.09465801929629,49.21705154385779],[-121.09454916976912,49.21695974645823],[-121.0943747525762,49.216821817631065],[-121.09423472051031,49.21671619368654],[-121.0941487616733,49.216651666221594],[-121.0940819285978,49.21660125466529],[-121.09404067450603,49.21656892511859],[-121.09394192824792,49.216495342978355],[-121.09372699090939,49.21633442759141],[-121.09363881930305,49.21627458959966],[-121.09357078163225,49.21621933195648],[-121.0930631587823,49.21586914465496],[-121.09284832310422,49.21573980957759],[-121.09274942032425,49.21568398375363],[-121.09250808831588,49.21554526618753],[-121.09238610817916,49.215480214041364],[-121.09225307850177,49.21540592457418],[-121.09211783591017,49.215336315846265],[-121.09199927571925,49.215271428094866],[-121.09132638578264,49.21494076468254],[-121.09115217486628,49.21486599473686],[-121.09101398982412,49.21479174816236],[-121.09075800904203,49.21466166016135],[-121.09043532715724,49.21451246147597],[-121.09017918838391,49.21440012957787],[-121.09013819400293,49.214381623179634],[-121.0898386867745,49.21427323142476],[-121.08962180541036,49.21417960505523],[-121.08957102748731,49.21415614109751],[-121.08942113294248,49.21409517131548],[-121.0893588015696,49.214067237592225],[-121.0890073792746,49.21396239423133],[-121.08889749960287,49.213929187844656],[-121.088789996324,49.21387353396849],[-121.08847609710178,49.21370639596965],[-121.08767852620326,49.21336918026287],[-121.08754902280072,49.213326614125776],[-121.08742658005791,49.21326604562477],[-121.08736425099616,49.21323811071355],[-121.08699673235982,49.21307444901182],[-121.0868576084353,49.21300917585599],[-121.08651826902302,49.21285525208853],[-121.08632742071251,49.212775491703596],[-121.08617674657526,49.21270573865749],[-121.08610416024575,49.21267733480466],[-121.08588726437246,49.21258397904486],[-121.08573785526015,49.21251851452582],[-121.08561152189539,49.21246227728402],[-121.08546600868316,49.212392478985784],[-121.08528085279204,49.21217792067335],[-121.08509693184247,49.211967938472604],[-121.08466857159938,49.21155167890563],[-121.08458995117371,49.21148295708523],[-121.08453535589197,49.211414492968416],[-121.084390499488,49.211241245203645],[-121.08409872378049,49.21093046446897],[-121.08400829971923,49.210843447067],[-121.08393750121436,49.21076577966276],[-121.08334005066453,49.21024310503095],[-121.0832749777259,49.21019248601588],[-121.08324991182646,49.21016963340862],[-121.08311555942636,49.210059460369116],[-121.08294291175605,49.2099215896879],[-121.08247420986683,49.20959454820613],[-121.08234042536023,49.20951146714947],[-121.0822594326663,49.209465190801716],[-121.08216150669226,49.20940038476045],[-121.08155781278772,49.209066603725375],[-121.08138288083084,49.208982769251165],[-121.08130438697846,49.20894534896978],[-121.0811029639945,49.20885212934392],[-121.08084172054333,49.2087398183119],[-121.08061288615514,49.20864590456788],[-121.08011992697789,49.208466892691774],[-121.07994385322692,49.20841007078138],[-121.07979037598173,49.20836696684551],[-121.07895409009338,49.20813701618279],[-121.07884565982438,49.208090330846275],[-121.07868424875353,49.20802486576301],[-121.07860996470404,49.20799637851283],[-121.07839215335093,49.207911985955846],[-121.07833157698273,49.207883836425985],[-121.07818295080803,49.20782741806924],[-121.07764667349849,49.207652061501456],[-121.07729016783316,49.207547222781116],[-121.07721708916152,49.20752358053865],[-121.0766549203607,49.20736563908477],[-121.07660296553632,49.20735339244399],[-121.07645046036795,49.20731737441542],[-121.07525914394444,49.20713092956331],[-121.07498494445036,49.20710852420472],[-121.07404103545596,49.20708366276845],[-121.07384972431296,49.20708957040482],[-121.07271954428347,49.207201102723175],[-121.07252537198977,49.20723394470763],[-121.07185923698832,49.20737572051466],[-121.07147223291794,49.207477273008095],[-121.07134497064918,49.20751092045606],[-121.07101035442415,49.20760443968814],[-121.07054438003655,49.20775396428952],[-121.0697409099559,49.20810486155043],[-121.06904200253229,49.20853864165199],[-121.06899703568392,49.20857380010629],[-121.06886992744283,49.208670609725445],[-121.06865972250996,49.208838049033396],[-121.06847449491252,49.20899676141976],[-121.06784829487637,49.20968368114587],[-121.06775949942246,49.20980789581313],[-121.06731805325923,49.210776767580555],[-121.06729869601428,49.210861883541064],[-121.06726618808429,49.21097373526353],[-121.06717689298353,49.2115389117582],[-121.06716385839316,49.2118715796235],[-121.0671643871259,49.21206051743236],[-121.06717167754434,49.212218177137004],[-121.06717736516651,49.212407071502334],[-121.06717819854808,49.21244771100791],[-121.06700465893194,49.21267405681715],[-121.06693680059993,49.21276286913853],[-121.06683501357031,49.21289607853927],[-121.06665925289997,49.21312712200404],[-121.06654706758361,49.21322884432097],[-121.06596845163712,49.213871403825095],[-121.06588572655198,49.213986881443816],[-121.06583320567748,49.214044528433924],[-121.0656647048072,49.21423953327038],[-121.06548694609707,49.214456949531794],[-121.06535551678923,49.2145941584489],[-121.06520139902317,49.214766976779714],[-121.06504632405202,49.21494878254967],[-121.06493909050491,49.2150684865066],[-121.06478250411543,49.215232177635684],[-121.06467574682652,49.21534739192008],[-121.06459930122611,49.21543608888878],[-121.06453819723875,49.2154936305732],[-121.06426531449854,49.21578139998284],[-121.06410633602364,49.21596752773746],[-121.06395542707877,49.216158545450845],[-121.06387317059793,49.21626953177471],[-121.06376791769814,49.216402859139784],[-121.06362390574465,49.21659362415012],[-121.06358433348088,49.21664256150596],[-121.06342924592319,49.21682436443184],[-121.0631622622871,49.21712114437723],[-121.06312193468747,49.21716102444915],[-121.06285778426599,49.21743114580295],[-121.06274226620778,49.21756400152716],[-121.06263084554122,49.21767449781555],[-121.06237240167046,49.21797166744237],[-121.06225886722895,49.21811814734481],[-121.06215066249959,49.21824683558697],[-121.06210110385649,49.21830884819826],[-121.06196504674594,49.21847318806091],[-121.06181387517847,49.218650368346005],[-121.06168909102449,49.21880564295622],[-121.06166687560642,49.21883677125135],[-121.06158040518825,49.2189388198126],[-121.06144291056304,49.21911662681697],[-121.06123510251228,49.219373818638076],[-121.06106711512717,49.21959590744895],[-121.06104049328805,49.21963613568441],[-121.06101143795411,49.219666941109665],[-121.06095842565956,49.21972908351857],[-121.06077156617232,49.21995086568709],[-121.06052910006089,49.22027526282816],[-121.0604288156982,49.220426300419504],[-121.06039391850247,49.22047968260367],[-121.06030744223078,49.22058172988942],[-121.06013667668378,49.220781413347225],[-121.05997917130365,49.220985656668034],[-121.05981852106734,49.22120328016017],[-121.05967226016546,49.22139872768475],[-121.05950480921163,49.22164790604131],[-121.05943186620426,49.221768059018174],[-121.05937399566996,49.221843502435604],[-121.05928464553637,49.22197248442985],[-121.05916459954672,49.22216377461087],[-121.05910295644853,49.22211329884795],[-121.05862742941775,49.22178612430209],[-121.05839993816008,49.221647115468336],[-121.05793050780753,49.221391837350204],[-121.05780805181985,49.22133152328466],[-121.0572460467624,49.22099360579696],[-121.05703111327921,49.22088195770328],[-121.05666750990258,49.22071414059594],[-121.05652129178979,49.22063495973802],[-121.0555937619403,49.220228092839406],[-121.05535022449634,49.220143043230564],[-121.05444541252481,49.21989397481313],[-121.0542135000898,49.21984497800969],[-121.05369084829756,49.21975076794255],[-121.05323585069193,49.21966670972048],[-121.05297724416444,49.219626345508054],[-121.05184128749485,49.21953073717543],[-121.0516217508779,49.21952684760736],[-121.05127600775091,49.219530132176196],[-121.0510554826298,49.21953550731023],[-121.04964571750607,49.2196869702233],[-121.04943680887166,49.21972839798514],[-121.04880156587413,49.21988415507216],[-121.04851580406299,49.21996941603337],[-121.04818144716442,49.219914287906306],[-121.04805520444712,49.219889589358175],[-121.04793238089594,49.21986505691387],[-121.04755020328673,49.2197910899693],[-121.04724969007187,49.219740889755705],[-121.04715335860868,49.21972574930434],[-121.04682536566406,49.2196754208017],[-121.04617856633313,49.219601393975694],[-121.04586314787987,49.219578149340315],[-121.04580653918696,49.2195772321996],[-121.0450723550448,49.219227380899156],[-121.04476236096686,49.21910512460067],[-121.04461838998658,49.21905338625878],[-121.0443604186363,49.218958903321074],[-121.04425961818703,49.218921277605176],[-121.04412377891461,49.21887385566418],[-121.04397218913017,49.2188130227995],[-121.04350356265789,49.21864765955713],[-121.04323263712,49.21856187973013],[-121.04196202620686,49.21827950437116],[-121.04166053840656,49.21823855425757],[-121.04039876498811,49.21816296921912],[-121.0401233481567,49.21816748075982],[-121.03936243318638,49.21821278541391],[-121.03907384514618,49.21824404430542],[-121.03869616063413,49.218305023476056],[-121.03848683070647,49.21827000671571],[-121.03821450491999,49.21822954236896],[-121.03800469549743,49.2181990138906],[-121.03776869784912,49.21817234891432],[-121.037462564949,49.21812666144454],[-121.0371897606191,49.2180906837207],[-121.03682141214007,49.21804832552309],[-121.03650574002852,49.21801150700521],[-121.03636777840615,49.218000067773744],[-121.03628606753664,49.21794470025347],[-121.03619721771332,49.21787575821577],[-121.03615132366683,49.217838959246045],[-121.03605164757153,49.21774272952294],[-121.03587929198952,49.21758703675512],[-121.0354100384484,49.217219155155796],[-121.03524023214877,49.21710390120606],[-121.0351114023887,49.217007165241576],[-121.03487114031655,49.21682775839383],[-121.03464413897159,49.21665290532209],[-121.03387179821118,49.21616304510321],[-121.03370085566429,49.21607452437529],[-121.03364590582922,49.2160420974708],[-121.03348105486167,49.215944834536494],[-121.03269741467696,49.21554467089379],[-121.03245586652298,49.21544161212692],[-121.03225280458248,49.21534821433722],[-121.03217040942161,49.21531536843634],[-121.03202277704591,49.215249908677265],[-121.03174467108933,49.21511922081384],[-121.03157448561288,49.215039744919906],[-121.03152076652098,49.215011893970775],[-121.03130496090856,49.21490917203376],[-121.0311269463611,49.214838636562135],[-121.03059118719513,49.21451475032356],[-121.0305345306452,49.214482251822744],[-121.03043150811231,49.21441743192989],[-121.03035200031485,49.21435765829266],[-121.0301674643734,49.21421971728371],[-121.03007371638316,49.214132488300955],[-121.02967223384377,49.213806340100575],[-121.02941878260641,49.21362207793121],[-121.02934860467369,49.21357146818752],[-121.02922022549791,49.21343865308497],[-121.02885325406858,49.213095200401675],[-121.0286340945267,49.21291167101643],[-121.0284956967385,49.212792215156384],[-121.0283420673325,49.21265456941461],[-121.02815674486232,49.21247598481226],[-121.02738147049486,49.211918550310685],[-121.02731768564709,49.21187245687573],[-121.02690477666484,49.211573116068735],[-121.02629386590814,49.21122965355837],[-121.0261633306186,49.21113311437013],[-121.02597617755207,49.21100378663221],[-121.0257578662077,49.210860612401376],[-121.02550326820835,49.21070335449841],[-121.02530777556268,49.21058774283352],[-121.02509393065353,49.210467041930386],[-121.02468170788289,49.21025767199628],[-121.02454564856394,49.21019667811966],[-121.0243926192414,49.21011770205381],[-121.02390764346548,49.20989791040119],[-121.02364431054654,49.20979015852108],[-121.02348273619363,49.20971078599858],[-121.02327726124004,49.20960823401419],[-121.02320442340613,49.20956651936228],[-121.02305922968225,49.209478600689174],[-121.0230312562011,49.20945108678896],[-121.02299392874222,49.20941467691397],[-121.0227158778187,49.209139876749134],[-121.02252839983572,49.20896569169706],[-121.02235270302229,49.20880981715358],[-121.0222263302391,49.20869062747717],[-121.02204371988987,49.20850313190501],[-121.02197206523998,49.20843440200442],[-121.02182456145451,49.20828800478073],[-121.02160807695581,49.20806398674091],[-121.021040591117,49.2075727692942],[-121.02080165988166,49.20739789681413],[-121.02031311056457,49.20708374756445],[-121.02008655175297,49.20695371234838],[-121.01934979377015,49.20659931020535],[-121.01848654059181,49.206319128205315],[-121.01798835479397,49.20620697073865],[-121.01772736813847,49.20615767184248],[-121.01617775604413,49.20601403559426],[-121.01533042542691,49.206017662689064],[-121.01524642220868,49.20601602863827],[-121.01482190214735,49.20601779977688],[-121.01452330678725,49.206030760940074],[-121.01437707146124,49.206032722625444],[-121.01407776112679,49.20603634665678],[-121.01370764151456,49.20604344826503],[-121.01342887410952,49.20604774233772],[-121.01311018768011,49.2060558168236],[-121.0128544788059,49.206069343516944],[-121.01257010035403,49.206077886976225],[-121.01239935954486,49.20608407034468],[-121.01203340145064,49.20610039116808],[-121.0117485410139,49.20611341266933],[-121.01167605104814,49.2061165411791],[-121.01158811637711,49.20611951336692],[-121.01091033106331,49.205680655125576],[-121.01074879274594,49.20560126302753],[-121.01059457531139,49.205517698415576],[-121.01046170497406,49.20544330698201],[-121.01033299874523,49.20537812247219],[-121.01018610313048,49.20529038500115],[-121.01001621122808,49.20519284690138],[-121.00976147576883,49.20505358646164],[-121.00922047599713,49.204796718978436],[-121.00890989797597,49.20466558665036],[-121.00851431817019,49.20451020068443],[-121.00818981686837,49.20439674644119],[-121.00789769312178,49.20430171110753],[-121.00761318225665,49.20421576241304],[-121.00748967814263,49.204182125693414],[-121.0072747577575,49.204119985472005],[-121.00709708027766,49.20406296498349],[-121.00693949315192,49.204010819206815],[-121.00689292905916,49.20399654117625],[-121.00637857213604,49.203843532238466],[-121.00607936509324,49.20376648904696],[-121.00548540530092,49.20363488494033],[-121.00514483297535,49.203575093945965],[-121.00505370764371,49.2035598661685],[-121.00475676299932,49.20350971394525],[-121.00455436353974,49.203474938857134],[-121.00408961770134,49.20340374213232],[-121.00376378516587,49.203366629290336],[-121.0034538512703,49.203325453084865],[-121.00311602465521,49.20328806119983],[-121.00304963328311,49.203282443638244],[-121.00291488323614,49.20325757321046],[-121.00258585860254,49.20320226207662],[-121.00249148086802,49.20316939404701],[-121.00225328792033,49.20308418211366],[-121.00153481777824,49.20286471676341],[-121.00130398333712,49.202806904940935],[-121.00120867010956,49.202782735764934],[-121.00100749787137,49.20272067027828],[-121.00060345069075,49.20262830204319],[-121.00033534342066,49.20253380075804],[-121.00014568560898,49.202476491248454],[-121.00000098564614,49.202448339532594],[-120.99991685221676,49.2024320243657],[-120.99979506865083,49.202398449162985],[-120.99961692318665,49.202345905357035],[-120.99888329140707,49.202139810981954],[-120.99868699602492,49.202064423491294],[-120.99846671076573,49.2019884893441],[-120.99826013022864,49.201912911824294],[-120.99785925649394,49.20180714515295],[-120.99755372364751,49.20172527117764],[-120.99737532591087,49.20165917671722],[-120.99717510158774,49.20158840399581],[-120.99711361473523,49.20156918689073],[-120.99698861272564,49.20151770083731],[-120.99543370524951,49.201090402695726],[-120.99534087875665,49.20107508718025],[-120.99527030212217,49.20106052642327],[-120.99509342196586,49.20101226533027],[-120.9945367688165,49.20088570672715],[-120.99427928535624,49.200836231323564],[-120.99421386705019,49.20082163001217],[-120.99410779111699,49.20080175398904],[-120.99397350729244,49.20077266147599],[-120.99351074194139,49.20068346228507],[-120.99348450044192,49.20065601985564],[-120.99342734424792,49.200596685649074],[-120.99307908847892,49.2002263195867],[-120.99296042225521,49.2001161825895],[-120.99282145772975,49.20000313402182],[-120.99258311216437,49.19980819467421],[-120.99238256327057,49.199660969167205],[-120.99185990213978,49.199251470014076],[-120.99182460222255,49.19922839694929],[-120.99178343471277,49.199196027465945],[-120.99171625334859,49.199150040331425],[-120.99103613662847,49.198751247061516],[-120.99075405638419,49.19861151164429],[-120.98994494571052,49.19827805466781],[-120.98960683041527,49.19816418527729],[-120.98874199919902,49.19793330126481],[-120.9885521444824,49.197894007095144],[-120.98863174007694,49.197665919646205],[-120.98865171963782,49.197576335984735],[-120.98864181421017,49.197477185553396],[-120.98861008133547,49.19713478477684],[-120.98859272045924,49.196945612229875],[-120.98844376097107,49.19624133547078],[-120.98836888274279,49.19605991529297],[-120.98821963098112,49.195756039254555],[-120.98811728921464,49.19557446766722],[-120.98774494499942,49.195046173268246],[-120.98758776728053,49.194863463548735],[-120.98713249496417,49.194419282353],[-120.98694671813,49.1942628690579],[-120.98612765832758,49.19370445341615],[-120.98597990542078,49.19362538139585],[-120.98565939319896,49.19344435188739],[-120.98555206099294,49.19338859341946],[-120.98525339563702,49.193243835344845],[-120.98506154686734,49.19315961195917],[-120.98499124784105,49.19312672073372],[-120.98473195858597,49.192951374472926],[-120.98451729893218,49.19283985549455],[-120.98331148571357,49.19236433493389],[-120.98301336127027,49.192278248080505],[-120.98167625891989,49.192016535837205],[-120.98137576280125,49.191984195240416],[-120.9807272774361,49.19194577466568],[-120.98044808771664,49.19192288030835],[-120.98041083778713,49.19188617639919],[-120.98037575215623,49.19184534137025],[-120.98020461179841,49.191617408377425],[-120.98007100474157,49.19143944792368],[-120.97993147424708,49.191252746746116],[-120.97964636795456,49.190919387955255],[-120.97947331097183,49.19074099354712],[-120.97925466585056,49.190507746772155],[-120.97909067253828,49.19032497383006],[-120.97899803882527,49.19022872797358],[-120.97885243692417,49.19008234766165],[-120.9787450843273,49.1899634151034],[-120.97867275465552,49.18988587479043],[-120.97863428462395,49.18984460126543],[-120.97846979149575,49.189634741792034],[-120.97832539834091,49.189461345989436],[-120.97815380888801,49.189269481611475],[-120.97812929164535,49.18924211471402],[-120.97797119994792,49.18906836765925],[-120.97769866402912,49.18879367321182],[-120.97752664133984,49.18863760204511],[-120.97722080247642,49.18838504761492],[-120.97707477331295,49.18827445891267],[-120.97665065771506,49.18798818218831],[-120.97643630607209,49.18785832258207],[-120.97563996202673,49.18752054371175],[-120.97562377072097,49.18747974055849],[-120.97540917470982,49.187098340895695],[-120.97533710438587,49.18697089961281],[-120.97530790400972,49.18690749811345],[-120.97525784182565,49.18679885212249],[-120.97510754524917,49.18655326474476],[-120.97496364359768,49.18634379975484],[-120.97492319026334,49.186289175944076],[-120.9748070169801,49.18612498713888],[-120.97481529391482,49.18608025516645],[-120.97484662388739,49.18588602121798],[-120.97528014614083,49.183689527190445],[-120.97545874703526,49.18345141184049],[-120.97609409781552,49.183165810274964],[-120.97698338434085,49.182866126916046],[-120.9780454693285,49.182476929055255],[-120.97882219518866,49.18213812921255],[-120.97914014599883,49.18197672549869],[-120.97969231637678,49.18163421676278],[-120.98034023385512,49.18097779767745],[-120.98046077033861,49.18083170567831],[-120.98078814453302,49.18039240917764],[-120.98100039960984,49.18008084117265],[-120.98130214560082,49.17979911107812],[-120.98139009389647,49.17970028914099],[-120.98150471956357,49.17957704809729],[-120.98161937470812,49.17945352857592],[-120.9817240224767,49.17932727716467],[-120.9818103315811,49.17919594711196],[-120.98188846219347,49.179060851591295],[-120.98195487631044,49.17892295355188],[-120.9820128995522,49.17878325636495],[-120.98206070232281,49.178642802666836],[-120.98209313051474,49.178501622768025],[-120.9821068869073,49.178358452956985],[-120.98210874588577,49.17821415966986],[-120.98210380251865,49.17806926029673],[-120.98210566149513,49.17792496694585],[-120.9821126454674,49.17778091261978],[-120.98213326498968,49.17763778305614],[-120.98217771069943,49.17749660404404],[-120.98224570875585,49.177359907492594],[-120.98233045675705,49.1772270873195],[-120.98242194534221,49.177095438734064],[-120.98251505148197,49.176964704725044],[-120.98260650895112,49.17683333426388],[-120.98269293221256,49.17670088068901],[-120.98276757933273,49.17656618133012],[-120.98283047950869,49.17642896685484],[-120.98288666745528,49.17629031130524],[-120.98293955978187,49.176150374036034],[-120.98298909636488,49.176009711720035],[-120.9830335679951,49.17586825366875],[-120.98307465387477,49.17572634891453],[-120.9831140302768,49.17558437342234],[-120.98314831272673,49.17544187156368],[-120.9831791173577,49.17529977597308],[-120.9832065062879,49.17515751202735],[-120.9832099487027,49.1750144200007],[-120.9831946005578,49.17487045158815],[-120.98317586612963,49.174726045468624],[-120.98316911943094,49.174581918663904],[-120.9831880571114,49.174438421215],[-120.98323588290977,49.17429767874812],[-120.9832905412375,49.174157254899015],[-120.98335358793821,49.174018638957605],[-120.98343314099166,49.1738861438882],[-120.98356248432064,49.17376950648057],[-120.98371935013806,49.173668256628375],[-120.98388894186141,49.173576335050434],[-120.98407263308903,49.17349691895243],[-120.98426093226885,49.17342251808913],[-120.98444908052596,49.1733495085677],[-120.98463890533444,49.17327686567013],[-120.98482863936489,49.173205057438146],[-120.98502004994937,49.17313361581897],[-120.98521145994584,49.17306217385187],[-120.98540116118885,49.17299065190297],[-120.98559089287498,49.17291884229724],[-120.98578071414255,49.17284619734006],[-120.98597059589585,49.17277298638884],[-120.98615718192238,49.17269849352557],[-120.98634394863417,49.17262232133176],[-120.98652949127819,49.17254157988604],[-120.986700599249,49.17245142131842],[-120.98685077339606,49.17234843860702],[-120.98698007286129,49.172232084138024],[-120.98709316944709,49.17210678981546],[-120.98718789954005,49.1719766960311],[-120.98727088447829,49.17184407858836],[-120.98734727875969,49.17170889798551],[-120.98741702233876,49.17157171090979],[-120.98748002319293,49.171433370342875],[-120.98753789935172,49.171294790908966],[-120.98758735580097,49.17115469108769],[-120.98763007066505,49.17101342882636],[-120.9876643359107,49.170870924533894],[-120.98769518477374,49.17072826100367],[-120.98772261728526,49.17058543823854],[-120.98774663250737,49.17044246521955],[-120.98776726245174,49.17029904565375],[-120.98778618420349,49.17015554645587],[-120.98779998165783,49.17001180843431],[-120.98781033287533,49.16986818952538],[-120.98781385183021,49.16972425219944],[-120.987813923664,49.169580442966385],[-120.9878122884273,49.169436545126906],[-120.98780891415652,49.1692928549766],[-120.9878038628884,49.169148797880936],[-120.98779707261804,49.16900494847409],[-120.9877902823897,49.16886109903518],[-120.98778352321352,49.16871696224662],[-120.98777673306911,49.16857311274331],[-120.98777165096872,49.16842934280486],[-120.98776830790653,49.168285365113974],[-120.98776667188741,49.16814147596706],[-120.98776674483366,49.167997657406616],[-120.98777370978436,49.1678536005246],[-120.98779095258622,49.16770974285211],[-120.98781838302367,49.1675669194022],[-120.98785764695225,49.167425784399484],[-120.98791222317506,49.16728591340728],[-120.9879769247076,49.16714765123644],[-120.98804989332369,49.16701230997497],[-120.98814622723049,49.16688313792316],[-120.98827556930746,49.16676621526718],[-120.9884129969763,49.16665389240393],[-120.98855374780658,49.16654258149293],[-120.9886977026158,49.16643338690291],[-120.98884638622204,49.16632808517905],[-120.989003064316,49.166228227159905],[-120.98916776693234,49.16613353447294],[-120.98934055413709,49.16604345040291],[-120.98951474635975,49.16595624697469],[-120.98969381853465,49.16587153561413],[-120.98987258785293,49.16578962530845],[-120.99006701278047,49.16572170006349],[-120.99026888804059,49.16566426434731],[-120.99047082187974,49.165606280544715],[-120.99067275618397,49.16554828737983],[-120.99087459895473,49.16549113783294],[-120.99107796804323,49.16543574647314],[-120.99128274145832,49.16538324461441],[-120.99148879819812,49.16533475459316],[-120.99169607924917,49.165290824106854],[-120.99190879920664,49.1652601227957],[-120.99212803102257,49.16524862022229],[-120.99235007344396,49.16524288797659],[-120.99256957806583,49.16522885249422],[-120.99277927439996,49.16519434504136],[-120.99298257893969,49.165139515722956],[-120.99318014039106,49.16507426685486],[-120.9933699177979,49.165001607654496],[-120.99354745335576,49.16491512224633],[-120.99373692757412,49.16484526375955],[-120.99394010848484,49.16479155495204],[-120.9941462808036,49.16474193745598],[-120.99435391959727,49.164694634772225],[-120.99456146700726,49.164648175690715],[-120.9947691039927,49.164600881178636],[-120.99497527554983,49.164551253102815],[-120.9951771387031,49.1644938170646],[-120.99537152047662,49.16442616045397],[-120.99557176567421,49.16436780018116],[-120.99578218147497,49.164326552736924],[-120.99599892960515,49.164306182868515],[-120.99621824684475,49.16429382794664],[-120.99643999731126,49.164274817931215],[-120.99666351639803,49.16425532125008],[-120.99686737105988,49.16421123080656],[-120.99704078597313,49.16413103639786],[-120.99720073389702,49.16403244737379],[-120.99734990509143,49.16392235679404],[-120.99748931203138,49.163807299916236],[-120.99761850119104,49.16369148784594],[-120.99772480693453,49.16356502792802],[-120.99781293126044,49.1634320733105],[-120.99789095894945,49.16329724127287],[-120.99795226957961,49.163158256704676],[-120.99798814528941,49.163016383539315],[-120.99800867944909,49.162873526048806],[-120.9980275665912,49.16273002342081],[-120.99804477578746,49.16258616297889],[-120.99805853930206,49.16244242197771],[-120.99807062587941,49.16229831418538],[-120.99807758804707,49.162153977035814],[-120.99808278243722,49.162010117108615],[-120.99808108476326,49.16186650508029],[-120.9980742338044,49.16172293306181],[-120.99806573506966,49.161578724887256],[-120.99805558954161,49.16143387157707],[-120.99804199858684,49.16128913770855],[-120.99802496223744,49.16114452328051],[-120.99800100314792,49.16100044406763],[-120.99797177110698,49.16085751823405],[-120.9979337888042,49.16071616155045],[-120.99788873310422,49.16057674077006],[-120.99783142286984,49.160439556302556],[-120.99775831898756,49.16030559854657],[-120.99767122212488,49.1601740849409],[-120.99757363773954,49.16004433930266],[-120.99747077992592,49.1599157559227],[-120.99736618500161,49.159787371318444],[-120.99726332736235,49.159658796668566],[-120.9971674838327,49.159528842683095],[-120.99707871238721,49.15939697064716],[-120.99697927273549,49.15926854557114],[-120.99685828348731,49.15914898983033],[-120.99673193005916,49.15903144028462],[-120.9966020100893,49.15891514133817],[-120.99647026317459,49.15879987613583],[-120.99633848692919,49.158684889097394],[-120.99620500271332,49.15856983139184],[-120.99607152012493,49.15845476452165],[-120.99594148250634,49.158339587036494],[-120.9958132750525,49.15822335750509],[-120.99569402914172,49.15810360138991],[-120.99571466007177,49.15795989026584],[-120.99579433135132,49.157825703757915],[-120.99590389300066,49.1577008041489],[-120.99603316007257,49.15758414887896],[-120.99617700867735,49.15747550846557],[-120.9963322363455,49.15737274857042],[-120.99650482530285,49.15728406148731],[-120.99668995743001,49.15720638041168],[-120.99687981814925,49.15713259178754],[-120.99707724923712,49.15706817898887],[-120.99728161643507,49.15701903214635],[-120.9974930108156,49.156984307205455],[-120.99770859073973,49.15695852074521],[-120.99792713215986,49.1569371038424],[-120.99814567337879,49.156915686495466],[-120.9983613125637,49.156889342032656],[-120.99857438220918,49.156854981718645],[-120.99878601655388,49.15681800949842],[-120.9989978003939,49.15677964512532],[-120.99920982650472,49.156739026620116],[-120.99941864874214,49.156696282479665],[-120.99962777215367,49.15665073650124],[-120.99983375156243,49.156602508215784],[-120.99999951954509,49.156561153835675],[-121.00003835541594,49.15655111137085],[-121.00024011769412,49.15649422183515],[-121.00043720898995,49.15643289157367],[-121.00063460222789,49.15636875053259],[-121.00083040812883,49.15630340736227],[-121.00102621347986,49.15623806382942],[-121.00124217680653,49.156176761318235],[-121.00157420779888,49.15610534202125],[-121.00214592431477,49.15597540765718],[-121.0028105016568,49.1557798511585],[-121.00343021262134,49.155411041013295],[-121.00376240966203,49.15500291520283],[-121.00383467262772,49.154538439087716],[-121.00374564900186,49.154105667772754],[-121.00355187081193,49.15370554036257],[-121.00322820340408,49.15326863131667],[-121.00283559303246,49.152930315150535],[-121.00282880679944,49.152913639381424],[-121.00123010417852,49.151536490985336],[-121.00077002487379,49.1509962212188],[-121.00000015154588,49.150432806018884],[-120.99995716340669,49.15040175856317],[-120.99933418169046,49.15000420754212],[-120.9984184099691,49.149569063299055],[-120.99751191877284,49.149223174411894],[-120.9964441384494,49.14916417924004],[-120.99539094176949,49.149081315900254],[-120.994705967681,49.14900486604337],[-120.99389939978514,49.1489103505876],[-120.99336525292914,49.14873996318778],[-120.99305555492208,49.14850896222148],[-120.99260389536583,49.14814641857721],[-120.99210261436568,49.14775082492616],[-120.99162521940607,49.14743615019736],[-120.99111862011574,49.14718552785106],[-120.99064127141311,49.14683870619043],[-120.99002547985049,49.14628012212271],[-120.98968654907192,49.14616139650154],[-120.98937340179555,49.14599451855037],[-120.98908772072937,49.145747982384364],[-120.98893243059587,49.14535834552484],[-120.98895022811185,49.14489104755678],[-120.98904335075622,49.144425284380446],[-120.98905754847891,49.14407089974804],[-120.98907172757372,49.14373259512484],[-120.988966136704,49.14331171272065],[-120.9887647501085,49.142824611382565],[-120.98843825858825,49.14239991718939],[-120.98827420976582,49.142171175718495],[-120.98811539222243,49.141846227122215],[-120.98793085618095,49.14156887266174],[-120.98757156058589,49.141353017046704],[-120.98698021837947,49.14114129095053],[-120.98638550528005,49.14089725072555],[-120.98546646440698,49.140542762187806],[-120.98498214753917,49.140356881106854],[-120.98460068041662,49.140092331531065],[-120.98441621133856,49.13978281867698],[-120.9844286968819,49.1394605041112],[-120.98433023913476,49.138878635950576],[-120.98432411280173,49.13839498261265],[-120.98427356306587,49.13784609477102],[-120.9841494468331,49.1372635958345],[-120.98398987998134,49.136357941438995],[-120.98381425786047,49.135855383441196],[-120.98363696279439,49.13535246674964],[-120.9834303289723,49.13499425666632],[-120.98291060213384,49.13448549608935],[-120.98167775776282,49.133527753944016],[-120.98043796799381,49.132491834043954],[-120.9796806817846,49.131769195864514],[-120.97912820042662,49.13145319463952],[-120.97846128545069,49.13095811328435],[-120.97818286378231,49.130566364543895],[-120.97802418633367,49.13024111690889],[-120.97750639496377,49.12966783266209],[-120.977119747731,49.129500008075404],[-120.97641293364147,49.129358672928134],[-120.97589765438777,49.12934953574801],[-120.97550924172673,49.129229849228494],[-120.97532304979843,49.12898480950785],[-120.9753816278065,49.12876024869007],[-120.97544198808198,49.128503328051835],[-120.97530911436395,49.128114141869396],[-120.97513001629058,49.127724201378165],[-120.97494568148487,49.127398594779535],[-120.97481094338788,49.12710604465537],[-120.9747773568413,49.12671867530266],[-120.97481561577646,49.126380636799844],[-120.97491420373031,49.125785955042616],[-120.9750811131727,49.12527316206668],[-120.97519110725064,49.125017153729324],[-120.97529761095194,49.12479342527367],[-120.97548569822757,49.12441782930019],[-120.97574298616112,49.12411597780898],[-120.97609595816317,49.1238967164622],[-120.97667159782492,49.12361650772492],[-120.97724362572993,49.12343315025477],[-120.97789277131747,49.12320263155291],[-120.97848698945306,49.12305189098287],[-120.97913077562897,49.122950274010016],[-120.97977107404193,49.122880924526164],[-120.98029335399148,49.12274514179945],[-120.98076606831387,49.12257601475818],[-120.98131411801182,49.122392085057164],[-120.98188783977538,49.12219270152566],[-120.98270636263612,49.12198134688751],[-120.98345478769232,49.12170438089212],[-120.98396205833401,49.12131012202954],[-120.98421660186452,49.121064807108354],[-120.98444986714527,49.120762374729196],[-120.98470702780685,49.12047685026738],[-120.98503600059644,49.12024093713904],[-120.9856558422334,49.12009050693375],[-120.98646715487533,49.120088600033675],[-120.98696019540104,49.12003264286045],[-120.98796484246728,49.12009841419168],[-120.98866976112768,49.12028809866396],[-120.98925502157206,49.12037884810429],[-120.99023220638819,49.12049267176057],[-120.99160484497114,49.120580918976145],[-120.99226193853458,49.120721259627295],[-120.9931877210383,49.120882564943024],[-120.99442827169042,49.121210264585024],[-120.99512620837072,49.121544809120245],[-120.9955039852198,49.12193833677051],[-120.99558831334453,49.122254166299086],[-120.99571961737954,49.122659332196555],[-120.9959449233486,49.123163063285844],[-120.99607446571186,49.12360057949841],[-120.99629975019113,49.124136452536305],[-120.99647017663324,49.12475184637402],[-120.99673634995051,49.12546560502386],[-120.99688984270922,49.12591973710822],[-120.99717009947952,49.12631152868401],[-120.9975479786761,49.12668867830147],[-120.99821678573562,49.127135500186064],[-120.99873052115727,49.12750938450874],[-120.99945857171008,49.12802747585006],[-120.99999683343684,49.1283489169018],[-121.00015313271174,49.128442488760165],[-121.00082722280055,49.128792796565854],[-121.00145522030965,49.12906144269527],[-121.00241717462539,49.12946235437904],[-121.00331951770708,49.129540413184564],[-121.00418692511653,49.12930522451457],[-121.00507119775435,49.128928961327404],[-121.00583246364288,49.128707722959135],[-121.00708813328032,49.128322471281116],[-121.00838307095579,49.127794931226006],[-121.00918283408213,49.12748634464],[-121.01067782968683,49.12693197355102],[-121.01216578747281,49.12657070788527],[-121.01373904389291,49.12653317988419],[-121.0150797478266,49.12645720857353],[-121.01756666166419,49.12666364329594],[-121.0202113949663,49.12683784403789],[-121.02320077443535,49.12728513755263],[-121.02599408076738,49.12780222966208],[-121.0281741277379,49.128152688386606],[-121.03002367575573,49.128434520141155],[-121.03300680764232,49.128733194778064],[-121.035454816604,49.128968143460256],[-121.0372891457665,49.129184279350234],[-121.0380015336574,49.12927470412103],[-121.03923774831186,49.12935829194909],[-121.04038144881909,49.12940882739368],[-121.04166713395296,49.12943064563408],[-121.04229009232229,49.12937874129484],[-121.04258389676858,49.129164722288515],[-121.04283777619827,49.12876218359611],[-121.0432450844066,49.12814309152485],[-121.04359795889505,49.127648390173455],[-121.04418878870607,49.12715761471],[-121.04496981967684,49.12673256599905],[-121.04550630116285,49.12639747559278],[-121.0445079743587,49.125128698920456],[-121.04383540728048,49.12402186263158],[-121.04361813924854,49.12348619535658],[-121.04331871119723,49.12314215973924],[-121.04293139141657,49.12278617196524],[-121.04241705751333,49.12249567440392],[-121.04181019511755,49.12217241531325],[-121.04143649012326,49.1219783529736],[-121.04126081359176,49.121599701638175],[-121.04123368172424,49.12109845624695],[-121.04134850384618,49.12056852340127],[-121.04139902678074,49.12019127787716],[-121.04138198199783,49.11972406640972],[-121.04130219545073,49.119298510406246],[-121.04117278142724,49.11900066369867],[-121.0407287519724,49.118147978913456],[-121.04050244545684,49.11734398284769],[-121.03994948869745,49.11637148524774],[-121.03953896753859,49.11570336387917],[-121.03924809144635,49.11529597574156],[-121.03912929900467,49.1149630771461],[-121.03911613416497,49.114732922736295],[-121.03915251032635,49.1143598218493],[-121.03917221671357,49.11388583725526],[-121.03907683500162,49.11351031493198],[-121.03887478302974,49.11309009638488],[-121.03864932624917,49.11271251803243],[-121.03848756464143,49.112364664545105],[-121.03839368816477,49.111975114118344],[-121.03832055505677,49.111600048696495],[-121.03842601607647,49.111141871744266],[-121.03865552609474,49.110886819096514],[-121.03912593491306,49.11060736391489],[-121.03948583852686,49.110383436993075],[-121.0399978385487,49.11014791555707],[-121.04051390257384,49.10982601058679],[-121.04096375896034,49.10954615845253],[-121.04146026539793,49.10916637668917],[-121.04167773895435,49.10863806974916],[-121.04167111353618,49.10825000377809],[-121.04165662229528,49.10804826689362],[-121.04169584533595,49.10763214020432],[-121.04179564300256,49.107339237540046],[-121.0418943320796,49.107024562282014],[-121.04198952383845,49.10683915954883],[-121.04225670576011,49.106728826909745],[-121.04261133461661,49.10663436064849],[-121.04302967628394,49.106569355918936],[-121.04349347246946,49.106447780983366],[-121.04384809572142,49.10635331958427],[-121.0442913584837,49.106231353343084],[-121.04462239906312,49.10616512998711],[-121.04517112662408,49.106131229153426],[-121.04558656370361,49.10610949614036],[-121.0463349235678,49.106036013435585],[-121.04677295773398,49.10604351866379],[-121.04732168229714,49.10600960685427],[-121.0477632259269,49.105887556562905],[-121.04805378509755,49.105734566078404],[-121.0486258999532,49.10565801322621],[-121.04917864268818,49.10553797943629],[-121.05053939387264,49.10546025351143],[-121.05109194571942,49.10532582593408],[-121.05179849432432,49.10519396961596],[-121.05243428693407,49.10514711441765],[-121.05304836297522,49.10514325688889],[-121.05361796986313,49.10513846682388],[-121.05401152578519,49.10514503149961],[-121.05427331831396,49.105149470768254],[-121.05464731454595,49.10509817219856],[-121.05489296869203,49.104980321095674],[-121.05518601845284,49.104755243265984],[-121.05532795764125,49.10448428667145],[-121.05544796987994,49.104242208239114],[-121.05552718470015,49.10388404210284],[-121.05552448538072,49.10340959170602],[-121.05553830372833,49.10302162168912],[-121.05544834531632,49.102545688999044],[-121.05550049773171,49.10234532665443],[-121.05563838634104,49.102160760232884],[-121.0558813840017,49.10193872743308],[-121.05622058524129,49.101811373330065],[-121.05655294405659,49.10171612700158],[-121.05686437491609,49.10159199571432],[-121.05713531600311,49.10138111890554],[-121.05749372630497,49.10118582703481],[-121.05784831069057,49.101091040331355],[-121.0582884155766,49.100997922795074],[-121.05868364282988,49.10100454890732],[-121.05896764514523,49.101009440254046],[-121.0594014441052,49.10108861461584],[-121.05977043553563,49.101180886885246],[-121.06011449745297,49.10133037908408],[-121.0603311813085,49.101420435027975],[-121.06060755329605,49.101626325927654],[-121.0609464715397,49.10190502024723],[-121.06156202790714,49.1024840774002],[-121.06054086989715,49.10001075675777],[-121.01947224134005,49.000291265736806],[-120.64379623541211,48.998036732311064],[-120.58335091578834,48.99803084592558],[-120.50001900023288,48.998030940785085],[-120.4166863066878,48.998030918188114],[-120.40238893606657,48.99803530048028],[-120.33335268757385,48.998031045431546],[-120.25001976025769,48.9980311423196],[-120.16668741167055,48.99803119238379],[-120.08335552430943,48.998031214782706],[-120.00002224711378,48.99803139329281],[-119.74998029163727,48.99803342925687],[-119.70122588364936,48.99807517116325],[-119.52028150707778,48.99805069029486],[-119.49998077201222,48.998030235834385],[-119.24998332075837,48.998031347904295],[-119.20147075612815,48.99807380635848],[-119.02580558302819,48.998056689099315],[-118.99998551083799,48.998031715599275],[-118.74998776188554,48.99803071378818],[-118.63895615367139,48.9980968481516],[-118.49998858229301,48.99802902405391],[-118.24999081070332,48.99803214706808],[-118.06408497957354,48.998081252488724],[-118.06000611445265,49.00317747837421],[-118.0598359047411,49.006426591699324],[-118.05957473874813,49.00996679300916],[-118.05801208658909,49.01276105440183],[-118.05507133741867,49.016301740808494],[-118.05506983352878,49.02041048308151],[-118.05611078811123,49.02252072687416],[-118.0568990196453,49.025145302463685],[-118.05508635931423,49.02891557769295],[-118.05100101936343,49.03102454721339],[-118.04716910531981,49.03462195705536],[-118.04717255740823,49.0382157059934],[-118.04831444814003,49.04294927806781],[-118.05066715938032,49.0463132642754],[-118.05310716655296,49.04916892897302],[-118.05389484924552,49.05276276932823],[-118.05155027849823,49.055615457815314],[-118.05076740196169,49.0585824416839],[-118.05138413792942,49.06229094962739],[-118.05077197929157,49.06337624639228],[-118.0508548699699,49.06690918811944],[-118.04982320754542,49.06947996533284],[-118.04825168661422,49.07239086184056],[-118.04790788280397,49.074558606720245],[-118.0486885160796,49.07706918959187],[-118.0511264012623,49.08163306066189],[-118.05322660115326,49.08608227731833],[-118.05227239427208,49.08916326916844],[-118.05080017409912,49.09213417434792],[-118.05228082030861,49.09578342551973],[-118.0522843546188,49.096807384049285],[-118.05358676737148,49.10085581062107],[-118.05159003897374,49.104395598951335],[-118.05098537101803,49.107362044801825],[-118.05167433444784,49.1085636699734],[-118.05194765222083,49.1126732719736],[-118.04907764982443,49.11592173122405],[-118.04854851482682,49.118606404645746],[-118.0492561750047,49.122028848790045],[-118.05055850622539,49.127445854500635],[-118.05083005663121,49.135261083315086],[-118.0526614118056,49.14097050502921],[-118.05266078471439,49.14153662261376],[-118.05676372333679,49.14484811153405],[-118.0618220979141,49.147411464846805],[-118.05528467304035,49.14752855422009],[-118.04682874430452,49.14878787059066],[-118.03819724724801,49.15050430014628],[-118.03602200200135,49.15369987811991],[-118.03924907547832,49.15649400896644],[-118.0432622226782,49.15888631012302],[-118.04465645787158,49.16128152695739],[-118.04570548776478,49.165848621761526],[-118.04657553386242,49.16921122191984],[-118.04823213025516,49.17200819882502],[-118.05242510410318,49.17400539681164],[-118.05992554876134,49.17536971065432],[-118.06786338474667,49.17667775832709],[-118.06899974356207,49.176563333255],[-118.0716079653498,49.17679061946379],[-118.07657968727808,49.17924000613398],[-118.07641517164886,49.182377395652054],[-118.07345442842538,49.18557720477841],[-118.06979829988651,49.19025800851403],[-118.06857318541172,49.19499439033517],[-118.06761809584974,49.2012123531235],[-118.0676304169782,49.20766052421663],[-118.06910757640998,49.21296860045687],[-118.07182312704211,49.22152078546667],[-118.0745341518095,49.22688258044863],[-118.07532015565108,49.2282563991896],[-118.08065229357041,49.23669584658453],[-118.08686301290854,49.2434815321999],[-118.0872129983995,49.24393749527125],[-118.09166366183841,49.24633084407623],[-118.09813799191485,49.249408803014155],[-118.09996718789043,49.250663706004836],[-118.10329386004193,49.25430881365661],[-118.10819071346855,49.257900651371514],[-118.11124738675049,49.25989715969977],[-118.11597527314764,49.26246184366676],[-118.12304676832144,49.26262412416746],[-118.12488358304651,49.262624816828314],[-118.12720281253264,49.26311783388512],[-118.13048111901557,49.26381881491182],[-118.13432327418326,49.26672610785234],[-118.13529606583178,49.268720752590255],[-118.13668944121684,49.27059839586214],[-118.13913726102034,49.27293710374553],[-118.14254308072411,49.272080368194665],[-118.14463921716062,49.26990706750609],[-118.14579657094164,49.26851215368962],[-118.16540456391843,49.27822338207022],[-118.17569194145977,49.2989358058856],[-118.175737230922,49.29902540796294],[-118.1762251979872,49.30000001717016],[-118.18933341097788,49.326100465794624],[-118.2000001512669,49.32463047829351],[-118.20373965806941,49.32411471870387],[-118.20366436577108,49.32438654480238],[-118.20360326532627,49.32455386547551],[-118.20374691664144,49.32470630413541],[-118.20390873315104,49.324853538776416],[-118.20410937620264,49.32497558010508],[-118.20432950328755,49.32508460855797],[-118.20455195384858,49.32519011971975],[-118.2047950226868,49.32527590046286],[-118.20504083774509,49.325355659329254],[-118.20530346924413,49.32540749024905],[-118.20557344301092,49.32544655173052],[-118.20584473868976,49.32547778601326],[-118.20611867755707,49.325493366563066],[-118.20637799807315,49.325554579376586],[-118.20663438538473,49.3256229309957],[-118.20689446383706,49.32567966131134],[-118.20716485587218,49.325706019100934],[-118.20744262720572,49.325709143744845],[-118.2077162568616,49.325695843027454],[-118.20799216024986,49.325679310948864],[-118.20824230827208,49.32561054797031],[-118.20848380343064,49.325521357589416],[-118.20872440242006,49.32543747082739],[-118.20899616176806,49.32540451156401],[-118.2092653084309,49.3253665459733],[-118.20953317113306,49.32532594272248],[-118.20979389972536,49.32526615370486],[-118.21006314962607,49.325237808881354],[-118.21033801101028,49.32522742473103],[-118.2106137332434,49.32522218136416],[-118.21088917016507,49.32521862783681],[-118.21115696897012,49.325260342605006],[-118.21139028494905,49.325352762952825],[-118.21160043159195,49.325469817425905],[-118.21180683338495,49.32558858334405],[-118.21201167037142,49.32570638454528],[-118.21224049139028,49.32580497827194],[-118.21247874682096,49.32589888477569],[-118.21272349348703,49.325985057327955],[-118.21297453395947,49.3260544187675],[-118.21323929970299,49.32609365412503],[-118.21351589541398,49.32610374896929],[-118.21379495334192,49.32610949422981],[-118.21405981514091,49.32614816405896],[-118.2142700656674,49.326264658632425],[-118.21446064800372,49.32639528514966],[-118.21464573101365,49.3265277771012],[-118.21482863515041,49.32666294494545],[-118.21500589813553,49.3268008190688],[-118.21517003117354,49.326944805582514],[-118.21533392840352,49.327090196135096],[-118.21549593032698,49.327236581049455],[-118.2156525263331,49.32738427696165],[-118.21580338755638,49.32753523384084],[-118.21594158925888,49.32768951252259],[-118.21606675275032,49.32784935817485],[-118.21618063251049,49.328014616988746],[-118.21627834180929,49.32818351437467],[-118.21636528601866,49.328354748012],[-118.21643112453181,49.328528131907184],[-118.21646324162568,49.328706719859085],[-118.21648639591469,49.32888720406099],[-118.2165414711884,49.32906291519714],[-118.21667764022743,49.32921903698867],[-118.21681385844776,49.32937487234185],[-118.21695358834113,49.3295303908178],[-118.21709160978854,49.32968579460059],[-118.21723138830498,49.32984103535965],[-118.21736941311724,49.329996429770866],[-118.2175073438424,49.33015238748581],[-118.217643567596,49.33030822157609],[-118.2177814519127,49.33046446509881],[-118.21790653574371,49.330624862528644],[-118.21800268916685,49.330792802431866],[-118.21808973964987,49.33096347049835],[-118.21817128996844,49.33113600441341],[-118.21824766882209,49.33130845424524],[-118.21829023252519,49.33148665429468],[-118.21833288854532,49.33166430865383],[-118.21837374494459,49.33184238517451],[-118.21840245589144,49.3320207248638],[-118.21838249633987,49.332200636214694],[-118.21837121677245,49.33238033266045],[-118.21836164661042,49.332560143512424],[-118.21835036687466,49.332739839859194],[-118.21833738056148,49.332919403811104],[-118.21832263788467,49.33309913054174],[-118.21830447907121,49.33327861041959],[-118.21828632011712,49.333458090246175],[-118.21826987055474,49.333637684478646],[-118.21825688216992,49.33381725712438],[-118.21825072734242,49.33399731438374],[-118.21825463070819,49.33417923903205],[-118.21824501146202,49.33435933561872],[-118.2181865190491,49.33453193572839],[-118.21808076599952,49.33469772620462],[-118.2179581667868,49.334860887109826],[-118.21784235225248,49.3350248187529],[-118.21771818352323,49.33518702404702],[-118.21759406218997,49.33534894293105],[-118.21748161457253,49.33551339817558],[-118.21739607035971,49.33568235029158],[-118.21734070575087,49.335856878020785],[-118.21730375435057,49.336034990468775],[-118.21727856942638,49.33621509379686],[-118.21725675379277,49.336395721187756],[-118.21723161525023,49.33657554712494],[-118.21720481664536,49.33675496336255],[-118.21718836021253,49.33693456548962],[-118.21718704168343,49.33711667368802],[-118.21723169190508,49.33729275987497],[-118.21740270016302,49.33743724335345],[-118.2176551762475,49.337498488932106],[-118.2179316297932,49.33748931821008],[-118.21820554989108,49.33746440973717],[-118.2184771860135,49.33743253636955],[-118.21874534566068,49.33739051567078],[-118.2190105122664,49.33734573408716],[-118.21928333654023,49.33731705902857],[-118.2195554999835,49.33729230102853],[-118.21982871233661,49.33727157452437],[-118.22010287867374,49.33725544302056],[-118.22037804581774,49.337243629226414],[-118.22065269415167,49.337234891690244],[-118.22092867361874,49.33722851297814],[-118.22120447811399,49.33723342878928],[-118.22148096421006,49.3372548162067],[-118.22175646311652,49.3372820616696],[-118.22201670674936,49.33732801396282],[-118.22218663391514,49.33746873499448],[-118.22236775486142,49.33760459638729],[-118.22255466016888,49.33773691863012],[-118.2227416600013,49.337868685954376],[-118.2228983632689,49.33801608279393],[-118.22304188464743,49.3381698881106],[-118.22320973448605,49.33831271125384],[-118.22338711520794,49.33845028300425],[-118.22356819527917,49.33858642841674],[-118.22375306966988,49.33872058395931],[-118.22395401342425,49.33884146784284],[-118.22418870804032,49.338936495457816],[-118.22442349856584,49.339030959035405],[-118.22465013689788,49.339132764427404],[-118.22486857788009,49.339242180021905],[-118.22508498312047,49.33935342180456],[-118.2253153710165,49.339453513454906],[-118.22555002481111,49.33954881531399],[-118.22579405468468,49.33962952009306],[-118.22606549373647,49.33966042569143],[-118.22633716820238,49.3396899352352],[-118.22660548792847,49.339729097378935],[-118.22687523313256,49.339770063722895],[-118.22715090363961,49.33980664953573],[-118.22740288726695,49.339870949119074],[-118.22761422338105,49.339981538681855],[-118.22780438152684,49.340115215975956],[-118.2279947757748,49.340247497534556],[-118.22818938911762,49.34037526663412],[-118.22837257572141,49.34050929067785],[-118.22853494894811,49.34065397151132],[-118.22868779195288,49.340803912565896],[-118.22884623238527,49.34095142337651],[-118.22902179002746,49.34108970291222],[-118.22921636154037,49.341217756234],[-118.22943292652292,49.341328157130555],[-118.22963935128193,49.34144744075971],[-118.22983971073143,49.341571944769065],[-118.23002869006356,49.34170242658035],[-118.23020701264632,49.34184485930666],[-118.23029905163285,49.34200681642973],[-118.23027367903256,49.342188316548835],[-118.23024498285409,49.342369015618864],[-118.23021656959627,49.34254803302717],[-118.23018136924372,49.34272628024703],[-118.23013762813902,49.34290390240074],[-118.23008709826732,49.343080763295596],[-118.23003818303906,49.34325830190535],[-118.22998086693185,49.343434383570354],[-118.22989678044186,49.34360513944357],[-118.22978592179591,49.343770578411345],[-118.22967677229877,49.34393613149959],[-118.22961973564882,49.344110540139795],[-118.22965523788871,49.344289921020724],[-118.22977019612472,49.3444492848058],[-118.22975444389913,49.34462497795448],[-118.22963413284762,49.34478491863916],[-118.22948386984297,49.3449378825883],[-118.22935676983603,49.345097052715005],[-118.22923778807638,49.34525935223561],[-118.22912374264689,49.345423139352285],[-118.2290129717945,49.34558801356562],[-118.22890704394626,49.34575492996847],[-118.22880282383991,49.34592196945916],[-118.22867429199805,49.346079342669],[-118.22849063762469,49.34621490468103],[-118.22827320791552,49.34632511618831],[-118.22804237717627,49.346422482686435],[-118.22780817512465,49.346519324897294],[-118.22758774869756,49.34662677504105],[-118.227369984924,49.346738943535996],[-118.22715820740459,49.34685663147946],[-118.22696708473956,49.34698515222545],[-118.22680464282291,49.347128190197346],[-118.22666447252188,49.34728273007288],[-118.22653702637106,49.34744385519509],[-118.22641276287267,49.347606613080686],[-118.22628370133084,49.34776705104717],[-118.22614200566109,49.34792035769765],[-118.225973477154,49.348058428833724],[-118.22575137879642,49.348165465484946],[-118.22551374597825,49.34826205591459],[-118.2252648460126,49.34834340186894],[-118.2250450184692,49.34844720610269],[-118.22486457135201,49.348584135077076],[-118.22468569158147,49.34872201886328],[-118.22451483521337,49.348863595750245],[-118.22437640736028,49.349017978280116],[-118.22425744481234,49.34917999409163],[-118.22414655419314,49.349345416958],[-118.22404069368376,49.34951177309815],[-118.22393981659849,49.34967933980656],[-118.22384553965948,49.3498487860228],[-118.22374636977715,49.35001647577721],[-118.22363404860434,49.3501801019749],[-118.22350686737725,49.35033954126203],[-118.22337308734018,49.35049708280239],[-118.22323935162409,49.350654355805155],[-118.22310889212193,49.35081270708841],[-118.22298982705071,49.350975275631],[-118.22289991464777,49.35114957185825],[-118.22266997858691,49.351231150007656],[-118.22240332164236,49.35128432955952],[-118.22240321171365,49.35904071036363],[-118.22192801208828,49.35899679188586],[-118.22165452886266,49.35897734347832],[-118.22138019969485,49.35896291216845],[-118.22110524475,49.35894193475816],[-118.2208328467567,49.358916053275244],[-118.22056324262903,49.358883863474595],[-118.22029717487862,49.35883070743754],[-118.22002701920967,49.35881204724743],[-118.219752736978,49.35883836380188],[-118.21949463613143,49.35890206093583],[-118.21924761424737,49.358982110871445],[-118.21900059000059,49.35906216917792],[-118.21885064766977,49.35911018961947],[-118.21845790394713,49.35911068544353],[-118.21818200635526,49.35909529081233],[-118.24350789867854,49.400000028229044],[-118.24554417198965,49.403290407800874],[-118.25602405262572,49.403290123784295],[-118.25686571236992,49.40648285585879],[-118.25820115500515,49.410818439159854],[-118.26136458199318,49.414747602496575],[-118.26426729576966,49.41668462400947],[-118.26523834106793,49.417254899404064],[-118.26988942639895,49.41901294143772],[-118.27347758855556,49.4199233014911],[-118.27454264227629,49.42191679073572],[-118.27261223958646,49.42260400657735],[-118.26981296441201,49.423183990654096],[-118.26500553797634,49.42433481660103],[-118.26062364192482,49.42765218314099],[-118.25888495760626,49.43164803489186],[-118.25864759249063,49.436275388348896],[-118.25655461829177,49.440726383542035],[-118.25314485282048,49.44261969496606],[-118.25535781903194,49.447182036513865],[-118.25930971157892,49.448826764650484],[-118.2638910397971,49.453905033022515],[-118.27075462036399,49.46050992287034],[-118.27568269766705,49.465353993930016],[-118.27577781655478,49.46734862691454],[-118.27832634673582,49.468774165123655],[-118.28027769346048,49.471279849820384],[-118.27940097769444,49.47328081888777],[-118.28003672513967,49.47858533969866],[-118.28312540161458,49.48365937523352],[-118.28366541864978,49.486395028052414],[-118.28456108758863,49.49073311277701],[-118.28414490272938,49.49478521402783],[-118.28153269259484,49.499930659948824],[-118.28135527045909,49.50107024158266],[-118.27646168906219,49.505992753430625],[-118.27481096638145,49.50895993769529],[-118.2743862595693,49.51346953604108],[-118.27563759908068,49.51866331802322],[-118.27697837363613,49.524483352674835],[-118.27688864348899,49.52476937893068],[-118.2742585888729,49.52637129430514],[-118.27057467571365,49.52837527833134],[-118.26338841528984,49.53204124878604],[-118.25875170589556,49.5358196379742],[-118.25805328078464,49.53798587834062],[-118.2571807268136,49.54192652005857],[-118.25631795021685,49.54729156370134],[-118.25581451109652,49.55134850808176],[-118.25476201036321,49.55231624653243],[-118.25055569001333,49.554268734853125],[-118.24519624261181,49.55621712040017],[-118.24282985460835,49.559530826728796],[-118.24257799810003,49.56192636754265],[-118.24285682279194,49.5688312736625],[-118.24411747962418,49.57510955933945],[-118.2449097480476,49.57938924559367],[-118.24809810189318,49.583149751636405],[-118.25134693346942,49.58548455483926],[-118.25328944523379,49.58839269428477],[-118.25304127661026,49.59010967582364],[-118.25173150287317,49.593418716750655],[-118.25147391081907,49.597414389854364],[-118.25228307373301,49.60061189826577],[-118.25308321845137,49.60534601394289],[-118.25108309077436,49.61191495510346],[-118.25002929292543,49.61345777878185],[-118.24900015841304,49.61979346675046],[-118.24689498240147,49.624589579640485],[-118.24250179769247,49.62785160158441],[-118.24058155058898,49.630479943112235],[-118.23970781456897,49.63481880839801],[-118.23972573568385,49.641208318353925],[-118.24078356717735,49.64326576603627],[-118.24212938259345,49.649544283133224],[-118.24224027023617,49.65810073085348],[-118.24207762146612,49.66226859657688],[-118.24497755698839,49.66398022292587],[-118.24779712972192,49.664604117258065],[-118.25229029921707,49.665051621647684],[-118.25528792607619,49.66544708761462],[-118.2631391175767,49.66588936619477],[-118.2686836770832,49.66588573426344],[-118.2714189297608,49.66668111601281],[-118.2723936260847,49.66924278648898],[-118.27363424413198,49.67295384275708],[-118.2767388264063,49.67660122944048],[-118.27744173855876,49.677803179886865],[-118.27630779585877,49.680313151645336],[-118.27614283049739,49.68385170859379],[-118.27527419392793,49.688587142363716],[-118.27512285110689,49.69510005708993],[-118.27574430684201,49.69777722984053],[-118.27442981996107,49.69904095370676],[-118.27267080638212,49.69864383736878],[-118.27037886549701,49.69876126343141],[-118.27011033556037,49.700928955470665],[-118.2698589838508,49.702582135533405],[-118.27012826867163,49.70560976042241],[-118.2703093144248,49.70949007663358],[-118.27111662372805,49.71131411155792],[-118.27245076776762,49.71439479657632],[-118.27509674265305,49.71656213010579],[-118.2771302418223,49.71781557894944],[-118.27731680016032,49.718445212972945],[-118.27653436951202,49.72192330497924],[-118.2763690834323,49.725462771706],[-118.27751746212942,49.72865674619526],[-118.27867366175671,49.730483366838435],[-118.27983359534535,49.733280004664884],[-118.28027218734768,49.737044924187174],[-118.28108610027698,49.74023990301195],[-118.2840885335239,49.742290182335644],[-118.28717275324044,49.74228562930634],[-118.28709115159864,49.74194226879358],[-118.28964571919819,49.741768892413866],[-118.29450455486514,49.74381757200681],[-118.29397949653945,49.74627059547673],[-118.2925844294058,49.74866931409719],[-118.29091633585658,49.750782896874895],[-118.28951265235368,49.752899940806415],[-118.28872454621451,49.75484178999584],[-118.28872936348972,49.75729502388266],[-118.28882553625796,49.760034052510385],[-118.29078199099717,49.76299877231894],[-118.29299326280017,49.76453679394625],[-118.29325284231786,49.76465300637166],[-118.29449807806037,49.766705512806645],[-118.29317682467,49.76899408315734],[-118.29115526094495,49.771047006544684],[-118.28657820948716,49.7744250931398],[-118.28376056058121,49.77870807399931],[-118.2842139500306,49.782306937245814],[-118.28501770402406,49.785898945497635],[-118.28680391559426,49.79194433771247],[-118.28751373828182,49.79303443080589],[-118.28874995242698,49.79348894988124],[-118.29238000062124,49.79399478823065],[-118.29715051579302,49.79461285837937],[-118.30086896954114,49.79592074097152],[-118.30016502782317,49.797693251569605],[-118.29840712166686,49.79900560120126],[-118.29637885986357,49.801919809125714],[-118.29602747946535,49.80375398438102],[-118.29710205079199,49.80574839917599],[-118.29904020870165,49.806599563007346],[-118.30284363381813,49.806995098670484],[-118.30584465848212,49.80767530475148],[-118.30585580950456,49.80818946421155],[-118.30745520781649,49.811550014759796],[-118.30896766697673,49.81434973846351],[-118.31109107908152,49.815597612912136],[-118.31303749836998,49.81582261732492],[-118.31639892845101,49.81627518989932],[-118.32099442441674,49.81695146563613],[-118.3233757275581,49.81774856197744],[-118.32620980418297,49.81951033181733],[-118.32763422625975,49.82076343177399],[-118.32868590699398,49.82099183062615],[-118.33152777827982,49.82121225947115],[-118.3369149217838,49.821089291832486],[-118.34486872148916,49.82107746925169],[-118.35369978075299,49.82208488959425],[-118.35699671000526,49.822384067065315],[-118.35751283526923,49.82556124551994],[-118.35750292470402,49.825714319732036],[-118.35750678552613,49.82585818395422],[-118.35749687487646,49.82601125810271],[-118.35750096531072,49.826164183620904],[-118.35747753929998,49.82627277494527],[-118.35738509141255,49.82648055434707],[-118.35737550412802,49.82664212646721],[-118.357377663211,49.826723124309865],[-118.35737812238034,49.82674124700568],[-118.35737959421344,49.82679505185612],[-118.35738152372478,49.82686698833543],[-118.35738609986846,49.82697528236584],[-118.3574170181367,49.82714535778685],[-118.35742159439208,49.82725365177402],[-118.3574237535854,49.82733464954715],[-118.35742816781585,49.827496072892004],[-118.35743225815332,49.82764899809803],[-118.35743464698503,49.82773905716186],[-118.35744066851343,49.827963909744916],[-118.35744668860372,49.82818877119779],[-118.3574377899928,49.82837752692291],[-118.35743029421964,49.828557905623406],[-118.35739237887277,49.82871127636327],[-118.35732701132127,49.828882512560924],[-118.3572777384957,49.82907239816096],[-118.35725313558142,49.829198436222605],[-118.35721475998031,49.82933368413398],[-118.35719038631369,49.829468783449954],[-118.35719185801393,49.829522588099586],[-118.35718047382574,49.82962185680418],[-118.35717251771693,49.82978411255639],[-118.35716283465923,49.829946247150204],[-118.3570974659849,49.83011747397767],[-118.35703349985833,49.83028032377599],[-118.35696780636619,49.83044305237609],[-118.35686160229307,49.8305972862786],[-118.35675367058296,49.830751398917634],[-118.3567008306672,49.83086867226388],[-118.35664962307071,49.83098662992525],[-118.35659894203117,49.83118489160038],[-118.3566010999552,49.83126588894877],[-118.35653745424528,49.83143723625852],[-118.35645775451717,49.83160011276427],[-118.35637978118122,49.8317631103085],[-118.35636724762412,49.831817072190944],[-118.35634140085314,49.83189835743319],[-118.35630302029843,49.83203360451919],[-118.3561839541833,49.83223329227409],[-118.3560891019632,49.83235101036062],[-118.35599611122869,49.83247847399253],[-118.35591549046413,49.83260510476087],[-118.35590681401005,49.832802920481974],[-118.3558998629877,49.83300086622908],[-118.35586285610806,49.83319048057618],[-118.35578246302414,49.833326172390045],[-118.35568979309858,49.83346213362855],[-118.35559654193042,49.83364327994393],[-118.35549110792167,49.8338241323938],[-118.35538387976906,49.83394268232237],[-118.3552750183825,49.83406054774907],[-118.35518280384085,49.83421463093709],[-118.35511641060492,49.83435017376878],[-118.35501087870551,49.83453158880539],[-118.35497079510725,49.83460396044103],[-118.35494687030595,49.83475718077616],[-118.3549229453446,49.83491040107358],[-118.35489902022319,49.835063621333354],[-118.35490538102698,49.83523423439514],[-118.3549101510527,49.83541434179026],[-118.35491547377124,49.83561200839845],[-118.35490555235157,49.83576508024486],[-118.35490940586314,49.83590894255668],[-118.35487101771973,49.83604418838961],[-118.3548341273422,49.83617049410585],[-118.35482204901149,49.83624257795018],[-118.35482512204072,49.83635981075758],[-118.35482828796187,49.836476489261194],[-118.35484784245781,49.83668307749619],[-118.35487924641922,49.836808520656994],[-118.35489632408085,49.836925605109414],[-118.35490118712372,49.83710515779933],[-118.35490233285839,49.83715046391296],[-118.35490618647641,49.83729432594917],[-118.35488235442924,49.83744698247603],[-118.35484321346041,49.83749285449881],[-118.3546104856774,49.83763029650424],[-118.35448659818279,49.83771262713021],[-118.35441977061879,49.83776729339295],[-118.35437821459082,49.83778586041992],[-118.35415971768326,49.83793221442791],[-118.35402547717779,49.83808674031082],[-118.35394552798319,49.83824055227715],[-118.35393413459242,49.83833981944619],[-118.35393899551175,49.83851936288759],[-118.3539319422259,49.83871786122625],[-118.35393725960844,49.838915535918865],[-118.35395727056512,49.83914023707534],[-118.35394881188681,49.83934712098974],[-118.35395458885678,49.839562908958136],[-118.35392896090165,49.83965326289251],[-118.35386428332629,49.839788925115215],[-118.35378364379962,49.839915553031844],[-118.35364939621222,49.84007007802958],[-118.35361100086045,49.84020532264206],[-118.35361599522273,49.840394490039834],[-118.35360707845325,49.84058324226501],[-118.35361357122157,49.84076346955984],[-118.35361696327217,49.84088920856635],[-118.35362182172031,49.84106876032905],[-118.35364036416217,49.84123965705328],[-118.35364522423764,49.84141919978795],[-118.35366523335702,49.84164390916012],[-118.35369925013453,49.841868461411565],[-118.35370332930474,49.84202138371568],[-118.35370740850215,49.84217430598737],[-118.35368324658762,49.84231846328208],[-118.35354944943015,49.84249110996028],[-118.34554068146969,49.855151842851534],[-118.35267594821089,49.875131137546646],[-118.35522516594098,49.89080938795117],[-118.35519202052177,49.89082967706517],[-118.3549940322168,49.89095656555742],[-118.35479777350737,49.891083565878745],[-118.35460777357228,49.89121496588757],[-118.35443692861334,49.89135732196738],[-118.35430379351311,49.89151474706936],[-118.35421565737352,49.89168550898329],[-118.3541581785806,49.891861240727174],[-118.35411434567713,49.892039059093314],[-118.35406023152183,49.8922155872599],[-118.35399756374169,49.892390955312436],[-118.35393325923414,49.89256564788428],[-118.35387231974191,49.89274113694272],[-118.35381137978212,49.89291662592503],[-118.35377964939092,49.89309529204427],[-118.35377039931565,49.89327553324695],[-118.3537211881965,49.89345410503846],[-118.35356570967288,49.89359865828567],[-118.35336261151204,49.89372461666664],[-118.35320235816988,49.893876757872],[-118.3530564908157,49.89404742606948],[-118.35293598939307,49.8942441740472],[-118.35313626565552,49.8942497330796],[-118.35341171656766,49.89422437224355],[-118.35368991591224,49.89421390958977],[-118.35396960566835,49.89421541698069],[-118.3542466286269,49.8942223895983],[-118.3545818020597,49.89421647706905],[-118.35479973735956,49.894241919833675],[-118.35507661511112,49.89426018570338],[-118.35535414999335,49.89427453542881],[-118.35563046576124,49.894296152161616],[-118.35590453225944,49.894331177262266],[-118.35617069237045,49.89438204539328],[-118.35643572988266,49.89443960847191],[-118.35669684005015,49.89449972669705],[-118.35695738859543,49.89456319656565],[-118.35721555177417,49.89463046015278],[-118.35747315493909,49.89470106645867],[-118.35772664350327,49.89477534540478],[-118.35797601750765,49.89485329701853],[-118.35822464423427,49.89493570881752],[-118.35846906204803,49.89502235650484],[-118.35870726279137,49.89511478175051],[-118.35894097587799,49.895213105675325],[-118.35916875083294,49.89531554449675],[-118.35939414235699,49.89542176827798],[-118.35961570142777,49.89552998429029],[-118.35983688680638,49.895640434692204],[-118.36005634386876,49.895750763566326],[-118.36027972991845,49.89585853606836],[-118.36051899049008,49.896017732892],[-118.36071000233811,49.896078586249864],[-118.36094793134248,49.89617268710128],[-118.3611736129815,49.896277226485594],[-118.36139690981778,49.896385559815776],[-118.36160650873667,49.89650254800839],[-118.36180002693554,49.89663196769222],[-118.36197793049429,49.896771038783136],[-118.36214269809396,49.896915412667894],[-118.36229961389334,49.89706488036581],[-118.36244741445624,49.89721654071797],[-118.362593111927,49.8973703146728],[-118.36273525705747,49.897524409541866],[-118.36287913410891,49.89767861627425],[-118.36302291773059,49.89783338596934],[-118.36316132659495,49.89798890982647],[-118.36329599574037,49.898145872062855],[-118.36342683374185,49.89830481799652],[-118.36355201518711,49.89846619875468],[-118.36366999782229,49.89862877591925],[-118.36377867899513,49.898794654425565],[-118.36387469248945,49.898963038046965],[-118.3639651435555,49.89913329339583],[-118.36404839700326,49.899304736299804],[-118.36413155668554,49.899476742284115],[-118.3642057876103,49.8996498237852],[-118.36427090390062,49.899825089309076],[-118.36433256157713,49.900000112759564],[-118.36442940591242,49.900226210399055],[-118.36453080079824,49.90039383867211],[-118.36465599185648,49.900555217707534],[-118.3647944145109,49.90071073892214],[-118.3649458815764,49.90086151969727],[-118.36512937446756,49.90099871297017],[-118.36534531792509,49.90110934271737],[-118.36559179345294,49.90119441415046],[-118.3658297591147,49.90128850374097],[-118.36606552878725,49.90138526093587],[-118.36629709127666,49.90148624539622],[-118.36651677920409,49.90159544301762],[-118.36673015593884,49.901710981883724],[-118.36693951282072,49.90182963069481],[-118.36714667385647,49.90195094723964],[-118.3673482711391,49.90207414432667],[-118.36754767258682,49.90220000918208],[-118.36774497106985,49.90232798757112],[-118.36793605282779,49.9024617441621],[-118.36810067254034,49.90260722539179],[-118.36821714104853,49.902768549432416],[-118.36828363244238,49.902946167617706],[-118.36834264403284,49.90312665427944],[-118.36843541123307,49.90329367361105],[-118.36859204294777,49.90343463380847],[-118.36879757877782,49.90355527179205],[-118.36902181586244,49.90366874233173],[-118.3692362839514,49.90378830344699],[-118.36941652918944,49.90392412972418],[-118.36958106604082,49.9040701626843],[-118.3697378420381,49.90422074463465],[-118.36989480772534,49.90437019995969],[-118.37006145176483,49.90451411815624],[-118.37024581609643,49.90464627820766],[-118.370447247958,49.90477057763004],[-118.37066209773097,49.90488790985236],[-118.37088508480845,49.904998457429556],[-118.37111447938291,49.90510209942646],[-118.3713469131694,49.90519804872965],[-118.3716017923026,49.90526447248183],[-118.3718759824938,49.90530963487246],[-118.37213918620888,49.90536815565615],[-118.37239743270729,49.90543538247286],[-118.37265530726683,49.90550483460268],[-118.37291327540699,49.90557373187171],[-118.37317171128961,49.905639839411],[-118.37342968096934,49.905708735451675],[-118.37368077836574,49.90578732525011],[-118.3739228996631,49.90587772287684],[-118.37413678349539,49.9059904485854],[-118.37430901035228,49.906132487654574],[-118.3744603396886,49.906284371593244],[-118.37460044857825,49.90644056322251],[-118.37473883008792,49.90659662486881],[-118.3748903494357,49.90674739068198],[-118.37504935029908,49.90689528725212],[-118.37521784238572,49.907038763688],[-118.37539994232519,49.907174137154996],[-118.37559363748528,49.90730297633558],[-118.3757949070601,49.90742839185151],[-118.37599454212618,49.90755312297749],[-118.37619380424155,49.90768008859127],[-118.37639133757985,49.907806933016005],[-118.37656961025037,49.90794429766046],[-118.37672862070654,49.90809219155216],[-118.37687823466324,49.90824395094562],[-118.37702775536378,49.90839627329138],[-118.37717363172956,49.908549462314326],[-118.3773139438237,49.90870453255411],[-118.37745033028006,49.90886215012791],[-118.37757559011477,49.90902351253042],[-118.37766821601025,49.90919164013411],[-118.37772792791168,49.90936820470188],[-118.37776814257128,49.90954623864711],[-118.37775725376241,49.909726357024226],[-118.37771349550465,49.90990418047487],[-118.37765781408964,49.91008004094],[-118.3775697293833,49.91025081729428],[-118.37745644373665,49.91041530305231],[-118.37732323815459,49.910573315201255],[-118.37718348568312,49.91072860912073],[-118.3770452752519,49.91088514105589],[-118.3769203428854,49.911045991447864],[-118.37679550240168,49.91120628741579],[-118.37667220553453,49.911367812498234],[-118.37657738159167,49.91153698712429],[-118.37654063140188,49.911714729685784],[-118.37658968072314,49.91189225006998],[-118.3766985330535,49.91205755850415],[-118.37686896790689,49.91220002581852],[-118.37710930515263,49.912290858001455],[-118.3773781657348,49.91233676124435],[-118.37765703209479,49.912343795283725],[-118.37793183040573,49.91232284315664],[-118.37820442862831,49.91228365802958],[-118.37847071413337,49.91222989598128],[-118.378728862398,49.91216199947401],[-118.37897270089087,49.9120750157711],[-118.3791830587526,49.91195799317717],[-118.37937634737602,49.91182791323384],[-118.37956799758963,49.911697157924365],[-118.3797499215681,49.911561762253044],[-118.37992567212594,49.91142141351369],[-118.38010595814046,49.91128533326375],[-118.38031340873177,49.91116472350943],[-118.3805391898709,49.9110600799709],[-118.3807726839455,49.910961635762774],[-118.38101206977453,49.91086981541784],[-118.38125898323347,49.9107853028171],[-118.38151132058756,49.91071021207048],[-118.38177226238031,49.91064645627433],[-118.38203843996376,49.91059324862824],[-118.3823057877787,49.910543504430464],[-118.38257448976755,49.91049612410919],[-118.38284454895768,49.91045108977586],[-118.38311432657548,49.91040773541008],[-118.38338545997026,49.91036673596062],[-118.3836563118589,49.910327416475404],[-118.3839303437615,49.910290009387886],[-118.38420236571432,49.910254152631694],[-118.38447583624752,49.910220096514955],[-118.38474911955228,49.91018715716139],[-118.38502394564422,49.910155455240535],[-118.38529849039679,49.910125433271176],[-118.38557294213575,49.91009596486737],[-118.38584893672127,49.91006773387938],[-118.38612427795911,49.91004340879934],[-118.38640069442046,49.910023119218586],[-118.38667818617704,49.91000686512913],[-118.38695684892555,49.90999407438829],[-118.38723340651063,49.9099834061485],[-118.38751314457438,49.909974650176636],[-118.3877909657898,49.90996689031898],[-118.38806878691096,49.909959129756906],[-118.38834670205082,49.90995080529393],[-118.38862470970527,49.909941925868885],[-118.38890290397028,49.90993192828403],[-118.38918100401096,49.90992249319008],[-118.38946055462418,49.90991484970204],[-118.38973828254348,49.90990763916535],[-118.39001572959161,49.90990210857942],[-118.39029462579867,49.909898378531324],[-118.390573056013,49.90989743694742],[-118.39085148621587,49.90989649465609],[-118.39112972974331,49.909896669115895],[-118.3914088640646,49.9099019875318],[-118.39168622452537,49.90991792557051],[-118.39196069145386,49.90995118800331],[-118.39221661047154,49.91002215377148],[-118.39245495753647,49.910114503738114],[-118.39269952281055,49.910201064312126],[-118.39296324712467,49.9102567455053],[-118.39323542715151,49.91029323657051],[-118.39351157842007,49.91031642901035],[-118.39379015428582,49.91032510268346],[-118.39406797656416,49.91031732691768],[-118.39434621521974,49.910296574629115],[-118.39462066215275,49.91026708357532],[-118.39489267409047,49.91023120922475],[-118.39516543336012,49.9101908553982],[-118.39543482463709,49.91014970562038],[-118.39570603798104,49.910108121414474],[-118.39597715830482,49.91006709079836],[-118.39624855869727,49.910024378839],[-118.39651841360413,49.90998043719072],[-118.39678836200136,49.90993593167146],[-118.39705676637526,49.909890187537854],[-118.39732708674035,49.909843445748976],[-118.3975958630435,49.90979546535117],[-118.3978630027644,49.90974680062065],[-118.39813023441678,49.90969758097032],[-118.39839928800181,49.90964792685636],[-118.39866670497766,49.909597588419985],[-118.39893412136472,49.90954724932773],[-118.39919999362046,49.90949567166227],[-118.39946759528276,49.90944421378838],[-118.39973365278931,49.9093915173477],[-118.39999980365086,49.909338257050265],[-118.40006679688919,49.90932483341509],[-118.40033313191962,49.90927046376846],[-118.40059783027658,49.9092154098406],[-118.40086271441929,49.90915923779307],[-118.40112605432982,49.909101827210314],[-118.40138976639861,49.909042181036014],[-118.40165029814044,49.90898061272422],[-118.40190956443352,49.9089161341604],[-118.40216901638537,49.908850537498786],[-118.40242865397616,49.908783822737675],[-118.40268656082199,49.908716986965985],[-118.40294619689942,49.908650270966525],[-118.40320573829202,49.908584117556394],[-118.40346509406763,49.9085190720673],[-118.40372444761461,49.9084540348985],[-118.40398370799737,49.90838955138153],[-118.40424469762554,49.90832518761052],[-118.40450395654415,49.908260702851464],[-118.40476503861186,49.90819577461813],[-118.40502429606298,49.90813128861676],[-118.4052835527829,49.90806680199629],[-118.4055445387394,49.90800243510134],[-118.40580379399513,49.90793794723893],[-118.40606477848394,49.90787357909378],[-118.40632403227546,49.9078090899892],[-118.40658328533574,49.9077446002657],[-118.40684426762385,49.907680230247244],[-118.40710351921992,49.90761573928167],[-118.40736459242406,49.90755081373817],[-118.4077031267628,49.907472617884565],[-118.4079655572554,49.90741003724801],[-118.40822807940263,49.90734690170203],[-118.40849013450739,49.9072865637215],[-118.40875490541475,49.90723092672736],[-118.40902038069251,49.907181560060515],[-118.40929349599884,49.907159854590425],[-118.40957374734005,49.90717934047084],[-118.40985189658046,49.90720094034633],[-118.41012976605577,49.907224220227384],[-118.41040423171209,49.90725742765273],[-118.41066851912727,49.90730971397851],[-118.41092491706557,49.90737784704587],[-118.41117618185726,49.90745578752237],[-118.41142688754121,49.90753708884404],[-118.41167796791093,49.907616145649456],[-118.41193390444957,49.90768706559961],[-118.41219899537074,49.907745055932935],[-118.41247472955443,49.907781176602356],[-118.41275076423986,49.90778397415092],[-118.41302875396568,49.90777503279576],[-118.41330594417018,49.90776038301624],[-118.41358369251648,49.90774238003573],[-118.41386172053788,49.90772269563011],[-118.41413946843646,49.90770469124011],[-118.41441838783805,49.90769015885434],[-118.41469464668765,49.90768109306786],[-118.41497479286284,49.90768020968851],[-118.41525471457771,49.907691184034014],[-118.41553203309388,49.9077177937702],[-118.41579936138513,49.907762365353875],[-118.41605960157591,49.907828491723926],[-118.41631003966826,49.90791145361888],[-118.41654604399963,49.90800753807419],[-118.41676578943309,49.908117197173176],[-118.41696717696527,49.90824252797314],[-118.41715477983234,49.90837708373953],[-118.41733271135826,49.90851718017703],[-118.41748564320632,49.908670796124674],[-118.41757532707518,49.90883641473318],[-118.41761022652418,49.90901575442396],[-118.41761833925852,49.909198316058195],[-118.41762327171988,49.90937895661278],[-118.4176124461904,49.90955964218425],[-118.41756556897646,49.90973612374768],[-118.41749302010165,49.909909122193504],[-118.41741527895653,49.910081769020366],[-118.41733061837648,49.910253926179436],[-118.41724095142791,49.91042461419226],[-118.41714445718381,49.91059425822774],[-118.41704141388212,49.91076118648662],[-118.4169316354318,49.91092651645317],[-118.41681175530752,49.91108944455574],[-118.41668340828518,49.91125066309099],[-118.41655178764348,49.91141051466081],[-118.41642180244237,49.911571049429334],[-118.41629354646574,49.91173170418261],[-118.41617384652834,49.91189352285007],[-118.41606424828588,49.91205773419431],[-118.41597003458385,49.91222414450305],[-118.41591140930554,49.912397548467816],[-118.41588837282893,49.91257794614087],[-118.41588254562907,49.912760099848924],[-118.41588190743997,49.91294262299287],[-118.41586476867215,49.913129643004034],[-118.4158778796819,49.91331368177805],[-118.41601692401008,49.91345616862783],[-118.41597078298636,49.91357560970636],[-118.41545347857551,49.91483231597535],[-118.41535824316624,49.91523604252216],[-118.4151024942902,49.9166035992746],[-118.41467363709187,49.91934671679796],[-118.4146869028797,49.92111673213326],[-118.4157608511323,49.924254160986266],[-118.41576446883636,49.92465287477084],[-118.41622717992556,49.92750874451584],[-118.41667546606705,49.93070384374954],[-118.41669574210493,49.93184355510663],[-118.41606827519318,49.93207863843421],[-118.41324420430814,49.93305474964394],[-118.41147613266754,49.93391368201576],[-118.41219044606913,49.93567923846995],[-118.41326458792604,49.93721939504103],[-118.41514233430036,49.940242989159756],[-118.41630089224418,49.94337994954236],[-118.41604426777094,49.944751934803534],[-118.41579533207222,49.94691853138666],[-118.41492297337585,49.94954655562371],[-118.41377978711486,49.951781059543585],[-118.41380350531163,49.954917199846385],[-118.41487536708166,49.95748289924997],[-118.41461731753346,49.95919895212112],[-118.41506979227862,49.961024786356745],[-118.41384473418927,49.96400075352343],[-118.41110638926331,49.96537508764456],[-118.40872154054902,49.96731816867858],[-118.40829519190181,49.970460887739456],[-118.40918680215177,49.972174786790724],[-118.41177238297847,49.973651890579724],[-118.41549585170915,49.97461217185316],[-118.41638768543724,49.97489727405739],[-118.42002282905399,49.97563140939063],[-118.42348960432645,49.97653516888504],[-118.42817778695667,49.97709331507523],[-118.43031162317496,49.97657191377444],[-118.43207542411587,49.97583045350565],[-118.43685006573021,49.9737606283615],[-118.44047998700438,49.9726711290782],[-118.44402806221873,49.97283273683425],[-118.44625055370192,49.974138619749255],[-118.44669857829844,49.97464880542129],[-118.44936453692513,49.976409083145654],[-118.45265842470978,49.977259249148595],[-118.45451437580861,49.97748113927058],[-118.45949063824102,49.97850197804715],[-118.4613536078918,49.98003530962206],[-118.46287447443085,49.981518456389644],[-118.46519272011932,49.984706081021095],[-118.467615092414,49.98921410235885],[-118.46789198585765,49.99126755276443],[-118.46934385944071,49.99520287107203],[-118.46953809507288,49.999026144692614],[-118.46954541947487,49.99999804785048],[-118.46840869898757,50.001440488932914],[-118.46504318110964,50.00253392707918],[-118.45857994517591,50.00352627564962],[-118.45273761568315,50.00525504310548],[-118.44716167289393,50.006644201916444],[-118.44156634559016,50.006375960394315],[-118.433241719419,50.006405875242784],[-118.42696415601259,50.00972686652298],[-118.42698303793495,50.01281319783381],[-118.43010821452182,50.016795928510234],[-118.43447269192025,50.019744691058506],[-118.4400865297427,50.022526351838344],[-118.44310719838143,50.02394141998997],[-118.45057805197689,50.02636520430418],[-118.46194015140283,50.02792793548545],[-118.4651412176916,50.02809177889635],[-118.47419657581419,50.029772419416354],[-118.4827280197591,50.03173838180237],[-118.48958336767984,50.034336811332025],[-118.49269920576455,50.03586817220539],[-118.50001762307745,50.04017464252983],[-118.50103629238184,50.046503889365255],[-118.49707392193514,50.051025190408645],[-118.49609903727028,50.05148615844883],[-118.49248991807116,50.054290079964524],[-118.48249972475574,50.05991992997216],[-118.48178761864013,50.06031858205476],[-118.47294019613706,50.06480051990264],[-118.4687941196174,50.06760758400561],[-118.46605453314578,50.06938620124961],[-118.46206751461608,50.07173782518277],[-118.45357910027634,50.075470680069266],[-118.44620851111007,50.07720679299081],[-118.4406172578689,50.07745249359582],[-118.42356499742348,50.077328939945474],[-118.40669545396922,50.07703513566304],[-118.39941611589407,50.07745620213688],[-118.38671562822054,50.07760546868171],[-118.37934805339725,50.0792182722934],[-118.37934849817461,50.080303323576246],[-118.37972345061594,50.08258928440636],[-118.37974212562034,50.08641073220924],[-118.37762731402393,50.08920961840106],[-118.37479020385035,50.091035418092424],[-118.36751235808079,50.0915139876754],[-118.35490501628973,50.093251519503816],[-118.34602865356375,50.095783376272166],[-118.33919599994921,50.09927796089269],[-118.33067782406872,50.099179822025],[-118.31938938868467,50.098750808210774],[-118.31431465300084,50.09733327555918],[-118.30409128856405,50.09609846451458],[-118.29211599552727,50.09896929624853],[-118.2890995809473,50.103311970892655],[-118.29106785409111,50.10769875441861],[-118.29366497900097,50.1120290472007],[-118.29367951342863,50.11715609719167],[-118.29367962430575,50.11864473792788],[-118.2916564226439,50.12384108492328],[-118.29069719526458,50.128570166184964],[-118.2928350087489,50.13296012275089],[-118.29497954728096,50.134664882052995],[-118.29501042408857,50.13489706932168],[-118.2951650757473,50.13580820133448],[-118.29268175839816,50.137749169226254],[-118.28841812558626,50.13981253584466],[-118.28265031616918,50.14318458220402],[-118.28140484553576,50.144216003020496],[-118.27928142321436,50.147920434206604],[-118.27795634920761,50.15288531907205],[-118.27486762380268,50.1591078779677],[-118.27325997649989,50.160195127155454],[-118.26784507158922,50.162879883030705],[-118.2580657115348,50.166541946458544],[-118.25273984924539,50.16803758626203],[-118.25388700025793,50.17071653131146],[-118.25594731679465,50.17316313507559],[-118.2584492899054,50.17846428374233],[-118.2585528315577,50.18148267505787],[-118.25668022667706,50.18485232907313],[-118.25063915593118,50.18919507639111],[-118.24619238155331,50.19171047962924],[-118.24166581254084,50.19485250287245],[-118.23783756326681,50.1995882488084],[-118.23721710401598,50.199590195343895],[-118.23650735245968,50.20306884769119],[-118.23615876284553,50.206660031410884],[-118.23644279374821,50.21042530533442],[-118.24061956390452,50.213441918529945],[-118.24446270186691,50.21651616646571],[-118.246157827944,50.21953936140153],[-118.24946630394732,50.22261181150824],[-118.25276173766663,50.224034747875805],[-118.25606093286093,50.226424747659316],[-118.25669608406271,50.22773871582668],[-118.2591062390739,50.23252306574113],[-118.26062840367275,50.23640055934662],[-118.26125284368285,50.238108151669906],[-118.2611764458016,50.24119047883508],[-118.26028316710759,50.24558286034419],[-118.26262195183675,50.24922607763437],[-118.26556956076017,50.25310638740213],[-118.26673978135398,50.256409049900014],[-118.26844039974418,50.26205557394107],[-118.2701509326113,50.268718703235756],[-118.27141290082182,50.2761910316806],[-118.27142838684303,50.28212187434908],[-118.26984233903444,50.28965408530306],[-118.2691283234284,50.2908549985459],[-118.26566475522614,50.29672911353593],[-118.26370096290773,50.30134725789304],[-118.26470052176819,50.305569436199775],[-118.26711401431416,50.31052762028371],[-118.26693899698495,50.31600018395736],[-118.26676262256863,50.31628727750535],[-118.2605321296291,50.32114319059514],[-118.25598490813583,50.32713473576387],[-118.2586707183507,50.33067236530246],[-118.25805124293903,50.33329300577464],[-118.25876628877137,50.33711480447031],[-118.26145056931863,50.3396774916537],[-118.26770848898748,50.34069397715841],[-118.27484556130037,50.34045859229105],[-118.28154290465696,50.339652953327864],[-118.28895575882659,50.339125228191584],[-118.29414294363217,50.34020485649323],[-118.29629176253495,50.34442409590841],[-118.29765125391505,50.34995539062676],[-118.2977501117366,50.35343187123792],[-118.29704443579631,50.357478726816474],[-118.2951731798256,50.361476374615215],[-118.2943850539993,50.36501064783711],[-118.29455983275967,50.36655281812469],[-118.29564708307525,50.37111409358044],[-118.29735295560721,50.37396143121334],[-118.30012565911788,50.377438523087676],[-118.30057526584936,50.377953501741885],[-118.29468790826526,50.38474707946909],[-118.28746625215122,50.39023082936972],[-118.2781729544313,50.394578348943284],[-118.27523590605752,50.39577572111715],[-118.26799596454339,50.39664181969047],[-118.25467266906985,50.39682831124178],[-118.25288219368761,50.398596543919275],[-118.25609794102215,50.400475293014736],[-118.26191198487659,50.4013224599887],[-118.26799451181402,50.40217341691791],[-118.27202995472807,50.404394901130466],[-118.27140258691085,50.40673009197717],[-118.26899653360483,50.41175488789197],[-118.26839003933664,50.41751181724336],[-118.26892266881816,50.423726967493955],[-118.26893280322543,50.42515193605624],[-118.26884799090071,50.430344741237114],[-118.26849619104328,50.43593689957032],[-118.26540645528246,50.43710878431993],[-118.26526856423652,50.43703528891324],[-118.26516339551381,50.43694657454693],[-118.26512740067179,50.43688812920837],[-118.26511354943898,50.436865691451395],[-118.2650365120846,50.43683996099023],[-118.26486637976502,50.43677889708938],[-118.2646869737849,50.43669967467788],[-118.26452962143793,50.436615785663996],[-118.26442531134464,50.436563287624644],[-118.26428703104472,50.43653326956193],[-118.26399188683475,50.4365092190339],[-118.26371486095171,50.4365033847757],[-118.26355284685525,50.436374531771385],[-118.26328160875086,50.43621147417844],[-118.26285601154767,50.436225183185364],[-118.26251859896595,50.436251275099174],[-118.26233928563416,50.43621273182327],[-118.26223952509187,50.43619557737993],[-118.26211946139297,50.43618321120218],[-118.26190568569304,50.43611852584169],[-118.26160570063249,50.43600938598264],[-118.26129628537281,50.43594478148543],[-118.26109534651428,50.43592901934518],[-118.26092377166937,50.435917564071865],[-118.2606881261225,50.435897671169236],[-118.2605462223171,50.4358990320445],[-118.2604020983702,50.435954473335414],[-118.26018035240212,50.43602877566752],[-118.25998112035236,50.43608543683699],[-118.25968415277748,50.436164638917454],[-118.25928249443199,50.43628621447161],[-118.25887545335151,50.43643905845497],[-118.25846456866599,50.436614221229284],[-118.2581491235461,50.43673901237088],[-118.25791027049956,50.43676860565358],[-118.25767393551571,50.436793855172304],[-118.25758566884677,50.436884844402755],[-118.25753634379984,50.437006809958326],[-118.25726406811567,50.43718942915828],[-118.25683974815391,50.43736025557295],[-118.25636618471454,50.43740560730119],[-118.25594365066335,50.43740141752074],[-118.25567119641221,50.4373998431125],[-118.2555044056685,50.437401713693625],[-118.25543596995092,50.437398047643036],[-118.25539459063175,50.43741209663757],[-118.25530833224626,50.43743994931782],[-118.255265971822,50.43744940981038],[-118.25523989648664,50.43743628314644],[-118.25518599602792,50.43740990716689],[-118.25515817090569,50.437396657850215],[-118.25512453967174,50.43739656072338],[-118.25503516294731,50.43737051865958],[-118.25493176337247,50.43728191726805],[-118.25485674581269,50.437193045073],[-118.25479140156621,50.43713027863782],[-118.2546882151204,50.43705073127413],[-118.2545858947827,50.436966155293234],[-118.25452361078689,50.43692676211594],[-118.2544079469799,50.43687854733224],[-118.25413730117661,50.43680477124036],[-118.2537476514448,50.436763899616686],[-118.25332914225513,50.43677749999915],[-118.25294149459299,50.43681756036635],[-118.25266552672142,50.436856969958086],[-118.25242059432112,50.43696296082831],[-118.25211162970804,50.43713225775386],[-118.2518965765533,50.437157287987866],[-118.25180237415182,50.43704616894639],[-118.25176203238283,50.43699249346752],[-118.25166979326963,50.43699336616935],[-118.25151009846856,50.43699516774108],[-118.25132834910367,50.43700163276562],[-118.2510497834059,50.437004698483],[-118.25072112817294,50.43699012234299],[-118.25051463229147,50.436965472419175],[-118.25044325606075,50.43694803779144],[-118.25041816293974,50.43693949848549],[-118.25036370783917,50.43692664022949],[-118.25017859469646,50.43690122928839],[-118.24993410282414,50.43688126269949],[-118.24979646454254,50.43687838946717],[-118.24972977987926,50.43687484261249],[-118.24970314823705,50.43687523471801],[-118.24962684984195,50.43687609374841],[-118.2493898765524,50.436874162739],[-118.24908041085764,50.43688183587117],[-118.24888391238136,50.43690195157942],[-118.24883018595044,50.43691570169586],[-118.24876580963348,50.43689875692041],[-118.24855354869871,50.43685618030833],[-118.24831167402186,50.43683130441338],[-118.24821126179297,50.43682822013162],[-118.24820087842305,50.43683709172606],[-118.24816540087166,50.43683743243438],[-118.2480427230605,50.4368299567543],[-118.24782815453342,50.43680077607791],[-118.24761610408578,50.43676726089653],[-118.24740590070519,50.43673330537695],[-118.24717333524401,50.43669552070346],[-118.24687093505617,50.436631367070305],[-118.24656909490932,50.43655369253872],[-118.24643138573275,50.436510132152726],[-118.24638241695614,50.436465448885336],[-118.24633229918251,50.43637605675683],[-118.24609158853629,50.43629306986662],[-118.24566822469302,50.4362526237227],[-118.24546117543177,50.43624148444121],[-118.24531259448926,50.43626100598818],[-118.24493651967732,50.436305801006945],[-118.24462418783637,50.43634037905025],[-118.2445101035003,50.43635497139009],[-118.24445607087954,50.43636021884276],[-118.24433031549522,50.43637060206617],[-118.24412574273339,50.436386183340076],[-118.24402913827551,50.436391832510964],[-118.24395489576781,50.43640131100635],[-118.24380904325358,50.43642554190545],[-118.24373470517284,50.43643557400593],[-118.24371316537757,50.4364577910435],[-118.2436724129443,50.43649899860865],[-118.24365252584333,50.43652190113137],[-118.24355664765102,50.436554150130355],[-118.24329250886413,50.43663787466776],[-118.2430063138223,50.43672626059745],[-118.24284592001554,50.436773189477954],[-118.24277538589536,50.43679196714157],[-118.2426419724331,50.43681593985997],[-118.24233299365517,50.43688238574999],[-118.24193861537682,50.43697164466057],[-118.2416432646321,50.437051474955545],[-118.24151766985908,50.43710198418485],[-118.2414120772685,50.437139199225214],[-118.2411980932497,50.43716824354988],[-118.24098478212447,50.43719338441761],[-118.24080970801289,50.43718165234403],[-118.24060968347669,50.43712975876021],[-118.24041218099168,50.43707351302573],[-118.23999584323775,50.43699230003294],[-118.2393853614614,50.43688672123458],[-118.2390674484919,50.436840665463016],[-118.23899705623847,50.436827812069694],[-118.23891767606439,50.43684652658639],[-118.23870396587208,50.436925303388485],[-118.2383314740569,50.43696976801933],[-118.23802593804234,50.43688277016751],[-118.23793106582039,50.43681677905773],[-118.23790051711401,50.436798813888096],[-118.23782307794373,50.43675495589844],[-118.23773371092574,50.43672890880902],[-118.2376182268086,50.43672079680809],[-118.23737049971311,50.43667853611737],[-118.23701247494807,50.43658784801254],[-118.23675039954843,50.43650558976047],[-118.23667424515968,50.43647482015113],[-118.23665732566438,50.43647024162648],[-118.23661531592946,50.43645712066665],[-118.23657855545541,50.43644436847017],[-118.2364598309851,50.4364139888104],[-118.23635085226702,50.436275826572874],[-118.23624195829746,50.43606534358814],[-118.2359373143493,50.435983491194975],[-118.23575100504041,50.43605740789608],[-118.2357339537264,50.43615620691335],[-118.23565210169384,50.436148195864746],[-118.23556257923998,50.43608201774653],[-118.23552092441274,50.436046322015066],[-118.23550904612418,50.43603305781321],[-118.23547119465046,50.436006108531224],[-118.2354050127426,50.4359483500274],[-118.23536916985425,50.43589950304423],[-118.23536272187262,50.43581373327666],[-118.2353459862369,50.435674701871],[-118.23525871539204,50.43555444335281],[-118.23506578768142,50.43543071971748],[-118.2348548183488,50.435329448052066],[-118.23472071917398,50.43528556522692],[-118.23467742855378,50.435259354272766],[-118.23461506376735,50.43528209083519],[-118.2344820665195,50.43532416246461],[-118.23434465353326,50.43540207347053],[-118.23423505632613,50.43549324783182],[-118.23414549713105,50.43552989253483],[-118.23409223516286,50.43553066925937],[-118.23407095041769,50.43553086383419],[-118.2340159387439,50.43553151755593],[-118.23383537949226,50.4355515969267],[-118.2335882445573,50.43563931474854],[-118.2334069826392,50.43577630010073],[-118.23330252110557,50.43585822541727],[-118.2332339419567,50.43588617434967],[-118.23310335170717,50.43591428458601],[-118.23289898486978,50.43593889950326],[-118.23278109347793,50.435944742160615],[-118.23266453795121,50.43593259007841],[-118.23246643469669,50.43592092506504],[-118.23233111360595,50.435904633145704],[-118.23225332551662,50.43588334556564],[-118.23220422160776,50.43587029362137],[-118.23218457443315,50.435861002749256],[-118.23210637135068,50.43582160638947],[-118.23182614552981,50.43568043116622],[-118.23140813270497,50.435496238798095],[-118.23108174847314,50.43542753334347],[-118.23075625394722,50.435435718417274],[-118.23039789926885,50.43543934118444],[-118.23024278411813,50.435445384208734],[-118.23014422307487,50.4354418439242],[-118.22980073428027,50.435441420654236],[-118.22922340845386,50.43545167190157],[-118.22875066378982,50.43546136526113],[-118.22860089459873,50.43546721246794],[-118.22844850705741,50.43547796473623],[-118.22822290934658,50.43561521450192],[-118.22812549497455,50.43588181722196],[-118.22813131058622,50.43601217338953],[-118.22810138662166,50.43602136853406],[-118.22783455008063,50.43606926963364],[-118.2271735186303,50.43614368194109],[-118.2264909393089,50.43616854607292],[-118.22617582615757,50.43616784813176],[-118.22592116762063,50.436165752495576],[-118.22556096136499,50.43616979027948],[-118.2252940681845,50.43617700225349],[-118.22511175277208,50.436196944306474],[-118.22501360278834,50.436211508160994],[-118.2250009557628,50.43620270845597],[-118.22499169770728,50.436184546884164],[-118.22497658686619,50.43614901476126],[-118.2247294888624,50.435980211152525],[-118.22401680089347,50.435718194897944],[-118.22319485733799,50.43559650322681],[-118.2225883752224,50.4356114481545],[-118.22212158892044,50.43564809204572],[-118.22183094160826,50.43570051345349],[-118.22170024751655,50.43572917293973],[-118.22151711054292,50.43571289166337],[-118.22115608601341,50.43568069771234],[-118.22078703908434,50.43568465788429],[-118.22060415672664,50.435718112495096],[-118.22046378469591,50.435782248893055],[-118.22021271403422,50.43593350159676],[-118.21998554447892,50.43607966570695],[-118.2199192140032,50.43612527564007],[-118.21987321551701,50.436022597963536],[-118.21969617208097,50.43581747393627],[-118.21941855484505,50.435712608019074],[-118.21910369822626,50.43567970758739],[-118.21883507187503,50.4356150228477],[-118.21873132277156,50.435580036793795],[-118.21866420053092,50.43544592149405],[-118.21844389739694,50.435142829011546],[-118.21817540077838,50.43493408175833],[-118.21802965242122,50.43488595810439],[-118.2178950656967,50.43482449990062],[-118.21767606470755,50.43471867647389],[-118.21745670149961,50.43463542693357],[-118.21717759589104,50.434580178430636],[-118.21682888273568,50.43450758722435],[-118.21657306919242,50.43442007778248],[-118.2164239320516,50.43438132254886],[-118.2162295433985,50.43437892939426],[-118.2159432843155,50.434354804567306],[-118.21567585002867,50.43430376420677],[-118.21555714524793,50.43427336209997],[-118.21545206060848,50.43425635843585],[-118.21525151118956,50.434217929969925],[-118.21511579310268,50.43418350824417],[-118.21509148092328,50.434170495358856],[-118.21482045257522,50.43593114989428],[-118.20856413889126,50.43803384061428],[-118.20762122619111,50.44424396671914],[-118.21011310865043,50.44573946182066],[-118.21015529465788,50.44633455123192],[-118.21015070612128,50.446514457060644],[-118.2101408657896,50.44669400175456],[-118.21011887229008,50.44687212036578],[-118.21007928186857,50.447049559223835],[-118.20999593731868,50.44722392336775],[-118.20987369500484,50.44738762699106],[-118.20971390509501,50.44753287329687],[-118.20951949059986,50.44766324005978],[-118.20931515291602,50.447789526180244],[-118.20912384962047,50.44792237164],[-118.20894227080247,50.4480604312837],[-118.20876399927404,50.44819984476217],[-118.20858572509765,50.44833926686101],[-118.20840424043543,50.44847676290799],[-118.20823005554684,50.44862324371488],[-118.20803738067056,50.44875374000736],[-118.20779614752325,50.44883730362605],[-118.20753652377752,50.44890431084209],[-118.20726775087259,50.448962771562854],[-118.2069976155565,50.449018866595324],[-118.20672874532,50.44907787971481],[-118.20646571425154,50.449144083903334],[-118.20620550482475,50.449214445974214],[-118.20595084496127,50.44929366924404],[-118.20571447746075,50.44939000179771],[-118.20548560290949,50.44949420273541],[-118.20525779948211,50.44960243830239],[-118.20503456747261,50.44971495534773],[-118.20482115893255,50.44983211524201],[-118.20461572616296,50.44995435725205],[-118.20442488287846,50.45008440784493],[-118.2042629302205,50.4502317461521],[-118.20412042914747,50.45038950515223],[-118.20399329340377,50.45055059864868],[-118.20386965562294,50.45071194777833],[-118.20374932540396,50.45087465103845],[-118.20363229967523,50.451038726300666],[-118.20352042778178,50.45120372545046],[-118.20341011176065,50.45136996424719],[-118.20330329540629,50.4515364497977],[-118.20320163300062,50.45170385926989],[-118.20310677574753,50.45187288769769],[-118.20302203377115,50.45204488048709],[-118.2029441946554,50.452217929630564],[-118.20286810521449,50.452391102137966],[-118.20278851463395,50.45256402764228],[-118.20270221188191,50.45273478917082],[-118.20259704396828,50.452901950923746],[-118.20247145088884,50.45306429090737],[-118.2023458584549,50.453226621785475],[-118.20224438072596,50.45339292261893],[-118.20217888607776,50.45356627255657],[-118.20214081377149,50.45374495584432],[-118.2021218027438,50.45392610462939],[-118.20211533352176,50.454106447597134],[-118.20211071061064,50.45428636028695],[-118.20210589562242,50.45446738034523],[-118.20210642768683,50.45464821706028],[-118.2021104604834,50.45482930066926],[-118.20212003403732,50.455009084595844],[-118.2021385546973,50.45518836054601],[-118.20216621306311,50.45536603003868],[-118.20221565226198,50.45554070678911],[-118.20231409336624,50.4557086789017],[-118.2024343159645,50.45587365815405],[-118.20254714907502,50.45604038500911],[-118.20263801162557,50.45621120297262],[-118.20272498529961,50.45638401551773],[-118.2028176956632,50.45655440301507],[-118.20292741971708,50.45671864082527],[-118.20307524915043,50.4568674950582],[-118.2032741171695,50.45699790913121],[-118.20346725182456,50.45713073887088],[-118.20364288983839,50.457272513245634],[-118.20381648892176,50.45741583392],[-118.2039786184784,50.45756399536656],[-118.20411284745285,50.45771978943703],[-118.20422063346285,50.457885027565425],[-118.20430606102279,50.45805658981051],[-118.20437651592356,50.45823275512899],[-118.20443812282876,50.458408856918496],[-118.20448358847455,50.45858608044973],[-118.20450921808006,50.45876529522201],[-118.20453290381077,50.45894550285777],[-118.20457117467257,50.45912334885893],[-118.20462704882587,50.45930186644338],[-118.2047233694614,50.45947194488306],[-118.20487879823744,50.4596179319652],[-118.20506242030635,50.45975461566246],[-118.2052594602227,50.45988545599523],[-118.20545669326287,50.46001518855001],[-118.20567881529693,50.460134236420295],[-118.20589762930517,50.46025192960786],[-118.20603517162372,50.460398913537865],[-118.20610427336264,50.46057272116793],[-118.20613254168968,50.46075720098536],[-118.20613659118197,50.46093828307618],[-118.20611418790669,50.4611186304202],[-118.20605842503178,50.46129719568312],[-118.2059739661207,50.461467518676365],[-118.2058268617673,50.46162099581047],[-118.20566769544511,50.461772492515244],[-118.20556105633766,50.461937861755416],[-118.20547416708547,50.46211196352862],[-118.20541869153686,50.462288849283176],[-118.20540552114917,50.462467026881114],[-118.20541997593858,50.4626494027999],[-118.20546302085647,50.46283041321828],[-118.2055397090461,50.46300135639686],[-118.20567055417838,50.46315634700873],[-118.20584593302982,50.46329978687395],[-118.20602296616508,50.4634439124731],[-118.20617938942593,50.463594485754946],[-118.20633211721548,50.46374593725441],[-118.20647920835297,50.46389924206235],[-118.20661696471633,50.4640552876061],[-118.20674120976848,50.464217720906795],[-118.20685019266885,50.46438641861505],[-118.20695752161159,50.46455443909018],[-118.20707632347036,50.46471761808136],[-118.20721835995896,50.46486944416018],[-118.20739296712884,50.46500717622289],[-118.20759450578143,50.46513267665437],[-118.20781344653604,50.46524980270454],[-118.20803851071976,50.46536227938129],[-118.20826036543787,50.46547282988109],[-118.20848834506641,50.46557872204351],[-118.20872069722738,50.46567984140197],[-118.20895888325546,50.46577798132685],[-118.2091956089276,50.46587432733622],[-118.20943418392868,50.46597023354594],[-118.20967480171505,50.46606458360739],[-118.20991755667623,50.46615683273548],[-118.21016079700418,50.46624628601375],[-118.21040831370006,50.46633152006827],[-118.2106642861653,50.46640886988466],[-118.21092316933526,50.46647965333108],[-118.21118215079899,50.466549873533054],[-118.21148315339165,50.46662305275499],[-118.21120417850429,50.46659662355458],[-118.21092695478694,50.46657031697867],[-118.21064798055119,50.466543886379085],[-118.21036852382512,50.466520241455314],[-118.2100883895671,50.4665005074717],[-118.20980757770516,50.46648468442318],[-118.20952667008545,50.4664694143668],[-118.20924624708917,50.466451348295536],[-118.20896698359324,50.466426592436726],[-118.2086883983483,50.46639792423864],[-118.20841185528595,50.466367699740296],[-118.20813394720093,50.46633512744502],[-118.20785788786436,50.4663021151956],[-118.20758017563516,50.46626841624767],[-118.20730431062246,50.46623428628639],[-118.20702640415817,50.46620171121342],[-118.20674645776614,50.466170682083046],[-118.20647049798978,50.466137103746284],[-118.20619589183981,50.46609571933903],[-118.20592876515398,50.46604186220419],[-118.20566717377082,50.46597652531391],[-118.20540868729381,50.4659035058399],[-118.20515253468757,50.46582725125715],[-118.20489618782992,50.46575212133564],[-118.20463722072338,50.465681886402145],[-118.20437417210427,50.46561475298312],[-118.20411064107465,50.46555040528909],[-118.20384526244351,50.46548649615534],[-118.20358153776846,50.46542327245326],[-118.20331810501519,50.46535836916465],[-118.20305681101557,50.465291356044084],[-118.20279784941471,50.46522111678026],[-118.20254141388122,50.46514653506318],[-118.2022911996294,50.46506674150954],[-118.20204380279031,50.464980926598784],[-118.20180087505582,50.46488978537659],[-118.20156232198522,50.464793862636704],[-118.20132619923008,50.464694151251685],[-118.20109425602412,50.464590783647786],[-118.20086454799747,50.46448475268815],[-118.2006405781846,50.46437629643277],[-118.20041874751874,50.46426573055738],[-118.20020109802674,50.464151499620414],[-118.19999939820593,50.46403727234143],[-118.19978446249378,50.463907412036434],[-118.19958528280492,50.46377867177706],[-118.1993937857551,50.463646513582205],[-118.1992098736959,50.46351150011627],[-118.19904919933748,50.46336512632872],[-118.19890612157414,50.46320926333941],[-118.19876508526029,50.46305185363685],[-118.19861228757749,50.46290095422444],[-118.19843654583163,50.462759735505394],[-118.19825088959273,50.46262459677864],[-118.19805191521128,50.462494728311476],[-118.19784438802124,50.462373304833655],[-118.19762675416817,50.46225906858221],[-118.19739725989011,50.46215191382148],[-118.19715882829273,50.462055418669244],[-118.19691087491563,50.461972949892846],[-118.19664601949522,50.46191639843195],[-118.196366688105,50.46188199400618],[-118.19608638829315,50.461853170470036],[-118.19580754801767,50.46182614873354],[-118.19552812827705,50.46180246631898],[-118.19524841736957,50.46178046214171],[-118.1949687067348,50.46175845725918],[-118.19468928630283,50.46173478166171],[-118.1944107390857,50.461706077472876],[-118.1941328651037,50.46166329058132],[-118.19385528780023,50.461629003417684],[-118.19357870458744,50.46162981571864],[-118.19329980138158,50.461654193534386],[-118.19302187910479,50.46169332994557],[-118.1927495041084,50.461741336927865],[-118.19248112105099,50.46179696565973],[-118.19222237519374,50.46186852484096],[-118.19196489367307,50.46194300228282],[-118.19170195987518,50.46200805411247],[-118.19143113830556,50.46205729778254],[-118.19115515643529,50.46209543682501],[-118.19087586124502,50.46212204115673],[-118.19059500355883,50.46213723440149],[-118.19030675000165,50.46214399451652],[-118.19002334970435,50.46213301661489],[-118.18975364853029,50.462094185991596],[-118.18948713132593,50.46200642882533],[-118.18931006405069,50.46187300965452],[-118.18924861278137,50.4617065169735],[-118.18923645983489,50.46152146717665],[-118.18923004434888,50.4613339931101],[-118.18921020973056,50.46115236008976],[-118.1891998076573,50.46096743383158],[-118.18917443151521,50.46078709970987],[-118.18910432720406,50.460619425753656],[-118.18896129248044,50.46046354941912],[-118.18875807244869,50.460327711384664],[-118.18852482281241,50.46023213112163],[-118.18825939976261,50.460168746933206],[-118.18797385930695,50.46012936134621],[-118.18769086016381,50.460116144848826],[-118.18741487752031,50.4601339337802],[-118.18713949532301,50.46018905491644],[-118.18688123903519,50.46026798594403],[-118.18668154380352,50.46038721537726],[-118.18651220233276,50.460535709977755],[-118.1862837112,50.46063708357857],[-118.18603926565577,50.46072828907787],[-118.18578567395325,50.460810937571104],[-118.18552984216275,50.46088607759495],[-118.18527118674918,50.4609570669698],[-118.18500961152681,50.46102445936218],[-118.18474667305752,50.46108949479251],[-118.18448402413453,50.46115285961085],[-118.18421797115539,50.461215413691384],[-118.1839553223102,50.46127876831848],[-118.1836909206092,50.46134200749293],[-118.18342642190336,50.461405799716175],[-118.18316231062492,50.46146735871077],[-118.18289518349613,50.46152587432818],[-118.18262707995422,50.46157980927305],[-118.18235479242179,50.46162722814547],[-118.18208153020304,50.46167005738702],[-118.18180389006595,50.46170748680617],[-118.18152556582633,50.461738656589475],[-118.18124684957925,50.46176188782768],[-118.18096618503874,50.46177594042652],[-118.18068045952498,50.46177833417965],[-118.18039881444047,50.46176745550796],[-118.18012377725758,50.4617389630907],[-118.17985903751763,50.461671647452185],[-118.17961646443473,50.46157877841837],[-118.17939197462441,50.46146345734763],[-118.1792328303215,50.46131885724029],[-118.17916917885915,50.46114485086102],[-118.17912264203589,50.46096414483521],[-118.1790429446551,50.460790702748106],[-118.17895605315269,50.460617872601226],[-118.17885019993649,50.460452180664426],[-118.17871050798203,50.46029765504869],[-118.17853892223503,50.46015330318001],[-118.1783497374097,50.46001844567555],[-118.1781506375695,50.459889657416085],[-118.1779380223055,50.459767262196486],[-118.17770353275125,50.45966874902359],[-118.17744532591131,50.45960470912079],[-118.17716874508496,50.459564798701564],[-118.17688429037652,50.4595395903579],[-118.176605576098,50.45952212816612],[-118.17632336332747,50.45951458798867],[-118.17604202775428,50.45951218979768],[-118.17575894018367,50.45950967594191],[-118.17547672763241,50.45950213361205],[-118.17519548655528,50.4594890091369],[-118.17491463420733,50.45947365137874],[-118.1746350475716,50.45946120305602],[-118.17435254328906,50.45945533675975],[-118.17407081958275,50.459455166141176],[-118.17378841501429,50.45945890626374],[-118.17350688565791,50.45946779732231],[-118.17322613658733,50.4594823840692],[-118.17295239060496,50.45951781566277],[-118.17268351131345,50.45957618292317],[-118.17240840391878,50.459619427137994],[-118.17213125218237,50.459643875766695],[-118.1718502055544,50.45962962653865],[-118.17157596308522,50.45958647729134],[-118.17131027685527,50.45952472248324],[-118.17104478573064,50.4594618507562],[-118.17077482350228,50.45941448231995],[-118.17049727778169,50.459380136659355],[-118.17021798289785,50.45935583679673],[-118.16993713307241,50.45934046644321],[-118.16965414490346,50.45933737441572],[-118.16936999025738,50.45934097932021],[-118.16908797486711,50.45934247493448],[-118.16880761291863,50.4593344770332],[-118.1685303605547,50.45930862696805],[-118.16825806809858,50.45926447722886],[-118.16798947114535,50.45920928809078],[-118.16772194515276,50.459147954332785],[-118.1674544183314,50.45908662885558],[-118.16718572696067,50.459031991431836],[-118.16691314499236,50.458989517251965],[-118.16663793882424,50.458972278065694],[-118.16635582917472,50.45898449087773],[-118.16607216182135,50.45900564206484],[-118.16579034279196,50.45901618349893],[-118.16550813479901,50.459018786289064],[-118.16522592677352,50.459021388361734],[-118.1649447890724,50.459028016243444],[-118.16466413646144,50.459042027675416],[-118.16438542819412,50.45906521665828],[-118.16410574689836,50.45909398627408],[-118.16382917698624,50.45912523585694],[-118.1635507575698,50.45916709373807],[-118.1632749637072,50.45921421780421],[-118.16299965876878,50.45922803466387],[-118.16272698222106,50.45919627434729],[-118.16264130874903,50.459179469891986],[-118.16245634935129,50.4591426265906],[-118.16218455204968,50.45908549635441],[-118.16191032212693,50.45904232320015],[-118.1616321035298,50.4590118667447],[-118.16135125990104,50.45898630419565],[-118.16107041659036,50.458960740935275],[-118.16079200599,50.4589313897028],[-118.16051865210072,50.458893364860735],[-118.16025561077466,50.45883685049582],[-118.16001066081232,50.458747725549664],[-118.15976882634726,50.45865090143963],[-118.1595150282993,50.45857187884487],[-118.15925354747692,50.45849627046406],[-118.15898837198205,50.45843169097009],[-118.1587167730208,50.458393785814074],[-118.15844089120864,50.45839059920718],[-118.15815965646544,50.45840794297867],[-118.15787841959232,50.45843545651158],[-118.15759591798158,50.4584600589871],[-118.15731361437547,50.4584733650836],[-118.1570291692215,50.45848878772474],[-118.1567451148868,50.45850196819753],[-118.15646339564738,50.45850176182419],[-118.15624158495162,50.45848319482529],[-118.1415667260132,50.46047250194555],[-118.14157177656355,50.46048416188159],[-118.1415874000367,50.460546858001116],[-118.14157462501842,50.46060980476311],[-118.14154765301852,50.46067286344446],[-118.14152058260582,50.460736484691594],[-118.14149554883281,50.46080873092094],[-118.1414685766036,50.46087178956754],[-118.1414698104118,50.46092556122898],[-118.1414709474453,50.4609798865342],[-118.14147199331396,50.46102459504197],[-118.14150162439967,50.461078124999496],[-118.14154545576777,50.461131525162465],[-118.14156098109048,50.46119478381241],[-118.141548205852,50.46125773052081],[-118.14153543213882,50.46132066829307],[-118.1415512438137,50.461392427495085],[-118.14158087679571,50.46144594847724],[-118.14165281826601,50.461490615218054],[-118.1417513141868,50.461525307876194],[-118.14186585231703,50.46156961182466],[-118.14197873854377,50.46161322866131],[-118.14206497626157,50.46165722056791],[-118.14216366407118,50.461700958131374],[-118.14227820305176,50.4617452616449],[-118.14240528741108,50.4617887660192],[-118.14251925769263,50.46180590666057],[-118.14267436226201,50.46183105142131],[-118.14278814297882,50.461839137580256],[-118.14287244165145,50.46187395024089],[-118.1428735803968,50.46192827546782],[-118.14283435076787,50.4620006339857],[-118.14279355874616,50.46208193121424],[-118.1427669671107,50.46216309848037],[-118.14275457281688,50.46224415365395],[-118.14272973150733,50.46232544529681],[-118.14270313805292,50.462406621453],[-118.14267654606361,50.46248778866485],[-118.14263537382541,50.46255097739128],[-118.1425940132948,50.462605102970755],[-118.14256831423651,50.46265074033266],[-118.14254153057232,50.46272286222167],[-118.14251436893788,50.462776866777645],[-118.14251493810613,50.46280402936303],[-118.14251550727506,50.46283119194747],[-118.14251674238393,50.46288496346678],[-118.14250415928201,50.462956955416956],[-118.1425057738246,50.46302883531306],[-118.14246635293524,50.463092139410556],[-118.14242489337471,50.46314682746722],[-118.14238372018313,50.46321001604874],[-118.14239934572744,50.463272711842244],[-118.14245775749393,50.46334410784393],[-118.14251598128033,50.46340644069075],[-118.14253179524458,50.46347819956753],[-118.14250491426053,50.463550875020125],[-118.14246412180545,50.46363216304178],[-118.14242313793432,50.463704405785094],[-118.14238371633911,50.463767709800194],[-118.1423711312181,50.46383971058631],[-118.1424151560038,50.46390216440618],[-118.14248535166045,50.46394670606439],[-118.14257159433,50.463990697450356],[-118.1426296293565,50.464043976006586],[-118.14265964331165,50.464115613815196],[-118.14266106994609,50.46417843049695],[-118.14264819862706,50.464241930745395],[-118.14264943393259,50.464295702169295],[-118.14264962368873,50.464304756347204],[-118.14265142982885,50.46438568136863],[-118.14265285489957,50.46444850695924],[-118.14265428153506,50.46451132361517],[-118.142655230326,50.46455659449189],[-118.14265684516636,50.4646284742435],[-118.14261742309188,50.46469177826916],[-118.14254784918403,50.464755208768764],[-118.1425063881947,50.46480989674312],[-118.14250705571789,50.464836496684875],[-118.14250781463781,50.464872713372856],[-118.14250961898553,50.46495364726933],[-118.14252562477692,50.46503445124986],[-118.14256945963736,50.46508785967663],[-118.1425992860023,50.46515043431068],[-118.14260090077482,50.46522231401027],[-118.1425881274075,50.46528525159456],[-118.14256299604676,50.4653580513028],[-118.14256423128136,50.46541182265335],[-118.14257985783857,50.465474518250474],[-118.14265034263734,50.465527560236936],[-118.14272248144738,50.46558128022234],[-118.14282273929682,50.46561608722638],[-118.1429349687802,50.46563310295927],[-118.14302045576467,50.465640877255645],[-118.14309145609235,50.46564027202177],[-118.14318929579656,50.465648354385436],[-118.14326067590254,50.465665857367036],[-118.14333272408655,50.46570996021034],[-118.1433891999452,50.46577217695386],[-118.14341921781575,50.46584380547407],[-118.14342054723684,50.465907184586996],[-118.14342197342611,50.465970010049425],[-118.14342378101757,50.46605093489139],[-118.14345379756764,50.466122572307256],[-118.14351240618787,50.46620301272765],[-118.14358464386646,50.466256178462544],[-118.14364287296542,50.46631851049348],[-118.14370110066452,50.46638085141887],[-118.14375757943104,50.46644305899357],[-118.143829721022,50.46649677819868],[-118.1438739388681,50.46656829431495],[-118.14388956764488,50.46663098963804],[-118.14387660410281,50.46668488204146],[-118.14384944168155,50.46673888665916],[-118.14376712983572,50.46679406279082],[-118.14368297390799,50.46683950667829],[-118.14360066167518,50.46689468267971],[-118.1436161002242,50.46694832386926],[-118.14364379709905,50.46699267432859],[-118.1436735278877,50.467055811101254],[-118.14367476605246,50.4671095733966],[-118.14366374276986,50.46717264427413],[-118.14365068203826,50.467227090260025],[-118.14362332905635,50.46727204064314],[-118.14361055497392,50.4673349871152],[-118.14361198303351,50.46739780353439],[-118.14359892217433,50.46745224949899],[-118.14361416938812,50.467496845441175],[-118.14368660079586,50.4675590562347],[-118.14377323152931,50.46762115476862],[-118.14381551124106,50.4676834833557],[-118.14384524272496,50.46774662002835],[-118.14387507105488,50.46780920304345],[-118.14390490102816,50.467871777115924],[-118.14393472952351,50.46793436010535],[-118.14393567967066,50.46797963077918],[-118.14395130902193,50.468042325984136],[-118.14395149905499,50.4680513801178],[-118.14395254598392,50.46809609714048],[-118.14395349615235,50.46814136780517],[-118.14395473468034,50.46819513002527],[-118.14395578161582,50.46823984703986],[-118.14395692182568,50.46829417182756],[-118.14398656219156,50.46834769171023],[-118.14401601101953,50.46839216638143],[-118.14403183067614,50.46846391567199],[-118.1440189600635,50.468527415742464],[-118.14402194785715,50.46858131124691],[-118.14403757753658,50.46864400639301],[-118.14405320569877,50.468706710461646],[-118.14409567687908,50.46877809298378],[-118.14413942047142,50.4688320541873],[-118.14419727192718,50.46887628641044],[-118.14425531515467,50.46892956379473],[-118.1443135470682,50.46899190419747],[-118.14438423108209,50.46905399004439],[-118.14445618745339,50.46909865454769],[-118.14452824072475,50.469142765357574],[-118.14462665879827,50.46917800878027],[-118.14472730649292,50.469230922148405],[-118.14475675662709,50.46927539657451],[-118.14478639858581,50.46932891617876],[-118.14480155085211,50.469374065498684],[-118.14483100115284,50.469418539897326],[-118.1448745560208,50.46946344665221],[-118.14491664874632,50.46951672056215],[-118.14496030054748,50.46956107363359],[-118.14501834555635,50.469614350573806],[-118.14510488531535,50.469677001555205],[-118.14520359204597,50.46972074491186],[-118.14528965964979,50.469755670829805],[-118.14533321529946,50.469800577386025],[-118.14536266640239,50.46984505162019],[-118.14536361802207,50.46989032217487],[-118.14537905969105,50.4699439629205],[-118.14542204460257,50.469961707102264],[-118.14546375618909,50.46999688148326],[-118.14554972621335,50.47003236976206],[-118.14562140285129,50.470058362665064],[-118.14571944298228,50.47007549686312],[-118.14581933073289,50.47009220168189],[-118.14590492035089,50.470109581466716],[-118.14598914013284,50.470144945049206],[-118.14607501868544,50.470170816233676],[-118.14613220557483,50.470188438702486],[-118.14614484673908,50.47019724702065],[-118.14617448938894,50.47025077512294],[-118.14624673824228,50.47030392992983],[-118.14631850793194,50.47033953905306],[-118.14641683621282,50.470365173088084],[-118.14648841558213,50.47039172799562],[-118.14657486659847,50.47044476109368],[-118.14660450992092,50.47049828906481],[-118.14660565337601,50.4705526136735],[-118.14659288408478,50.47061555130329],[-118.14658011319766,50.47067849785647],[-118.14652473885188,50.4707417999508],[-118.14648502801236,50.47079661334696],[-118.1464722569236,50.47085955987369],[-118.14647368907768,50.47092237598206],[-118.14647511967547,50.470985201015296],[-118.14650495535277,50.47104777414333],[-118.1465051459108,50.471056828239035],[-118.1465204910379,50.47111103132298],[-118.14653593293924,50.471164680756495],[-118.14655175757373,50.47123642944189],[-118.14656719955514,50.471290078862715],[-118.1465967466867,50.47134416042458],[-118.14664078464004,50.47140661198869],[-118.14668326089344,50.4714780022123],[-118.14671290658333,50.47153152115641],[-118.14672834885728,50.4715851705352],[-118.14674369443208,50.47163937355293],[-118.14674531759768,50.471711243685164],[-118.1467753431846,50.471782879701315],[-118.14683320256646,50.47182710145989],[-118.14690526251708,50.47187121057839],[-118.14698967702911,50.471915627410326],[-118.14707575020086,50.47195055184902],[-118.14716134382694,50.47196793062549],[-118.14723184415132,50.47202096927709],[-118.14729008572526,50.47208329895066],[-118.14736204980217,50.47212796140344],[-118.14743411075005,50.47217207016235],[-118.14744974641313,50.472234764549576],[-118.14745117841126,50.472297589468255],[-118.14745251368467,50.472360968026784],[-118.14745375649667,50.47241472992714],[-118.1474549977515,50.4724685007536],[-118.14747034449937,50.47252270361168],[-118.14748559881187,50.47256728981267],[-118.14750104235875,50.472620939015314],[-118.14753040071011,50.47266596616387],[-118.14754622745203,50.4727377145743],[-118.14757625499314,50.472809350282986],[-118.14757768874574,50.47287216622569],[-118.1475647278151,50.4729260586436],[-118.14758007485037,50.47298026145591],[-118.14763831814325,50.47304259087284],[-118.1477228322947,50.473086453438675],[-118.14783731307983,50.47312113394784],[-118.14794975397375,50.473147198523634],[-118.14799274294697,50.47316494164008],[-118.14804974350228,50.47317350898671],[-118.14814925717855,50.473172103507025],[-118.14824673228411,50.47316207320029],[-118.14844314561824,50.47313363621642],[-118.14852902970482,50.47315951433702],[-118.14861354650088,50.47320336728893],[-118.14871391856157,50.473247785287256],[-118.1488003761043,50.47330082539503],[-118.14888527551908,50.47336278626444],[-118.14895772204744,50.47342500209756],[-118.14901577674499,50.47347827669346],[-118.1490881269275,50.47354104607786],[-118.14915882307494,50.47360313746569],[-118.14921687823902,50.473656411944695],[-118.14926072939257,50.47370981715974],[-118.14933298741857,50.47376296973101],[-118.1494174078585,50.47380738461344],[-118.14951806993463,50.473860302265685],[-118.14961873380658,50.47391321089348],[-118.14970344272523,50.47396612596252],[-118.14978980610356,50.47401971889834],[-118.14988833718365,50.474054394869334],[-118.1500028205286,50.47408908203418],[-118.15011526508484,50.474115144386175],[-118.15021535627875,50.474140890292034],[-118.15032955205865,50.47416707670785],[-118.15041387957606,50.474201883110815],[-118.15047164736932,50.474246665417],[-118.15051550214089,50.4743000611678],[-118.15055935545664,50.47435346582745],[-118.15058890937794,50.4744075461221],[-118.15061875302175,50.47447011787997],[-118.15063225855732,50.47451458819494],[-118.15063496654952,50.47455998271886],[-118.15063515795094,50.47456903676811],[-118.15063640461526,50.474622798486095],[-118.15063784112543,50.47468562317814],[-118.15063908779615,50.47473938488824],[-118.15065443914062,50.47479358715403],[-118.15068389874607,50.47483805970212],[-118.15069953984758,50.47490075342505],[-118.15072938241138,50.47496333404481],[-118.15075737735775,50.47502634402359],[-118.15080142466205,50.47508879365327],[-118.15087368515117,50.47514195406117],[-118.1509315528557,50.47518617350057],[-118.15100371696272,50.47523988746318],[-118.15107422691449,50.47529292346075],[-118.151160692709,50.47534595266699],[-118.15126068898127,50.47537226016723],[-118.15134501946892,50.475407065811254],[-118.15143129423534,50.475451040761286],[-118.15150326778112,50.4754957003443],[-118.15154537239889,50.47554898027362],[-118.15158922970647,50.47560237551443],[-118.15163308555844,50.4756557796641],[-118.15169104804083,50.47570961529032],[-118.15176312049857,50.475753712114816],[-118.15184783538646,50.475806625427694],[-118.15193362983132,50.47583305447576],[-118.15200531935939,50.475859043071445],[-118.15208936295278,50.47588534774344],[-118.15220385263443,50.47592003256074],[-118.15231630302404,50.475946092624866],[-118.15244451611201,50.47596310054614],[-118.15254266989467,50.47597966601821],[-118.1526424765665,50.47599691822367],[-118.15274014860462,50.47599593803756],[-118.15285396683824,50.47600401373844],[-118.15298071778926,50.47602939718103],[-118.15309521008062,50.47606407214333],[-118.15317944660954,50.47609943001163],[-118.15326572292811,50.476143412428634],[-118.15333731549262,50.47616996273136],[-118.15343547005293,50.47618652741014],[-118.15353527752362,50.4762037788088],[-118.15363314199995,50.47621185186341],[-118.15374696093794,50.47621992664691],[-118.15385931756889,50.476236377466385],[-118.15395999183082,50.47628928200337],[-118.15398955109526,50.47634336126359],[-118.15403341050794,50.476396764416435],[-118.1540488647087,50.476450403524616],[-118.15407871294204,50.476512983124316],[-118.15407909714345,50.4765310911672],[-118.15409426112525,50.47657623881664],[-118.1541099075672,50.476638931924484],[-118.15412555249365,50.47670163395512],[-118.15412680337519,50.47675539549207],[-118.15412795604442,50.47680971960284],[-118.15412901326067,50.476854436044725],[-118.1541730670153,50.47691688419597],[-118.15421663841674,50.47696178686968],[-118.15423228360343,50.47702448886025],[-118.15424754611867,50.47706907388412],[-118.1542629025899,50.47712327549497],[-118.15427835575333,50.47717692345289],[-118.15430607094376,50.47722126176114],[-118.15433563123344,50.47727534086699],[-118.15437968412598,50.47733779783351],[-118.154466157723,50.47739082433208],[-118.15446721528797,50.47743554073875],[-118.15446856056738,50.477498918810134],[-118.15446981187968,50.47755268029031],[-118.15447106163604,50.47760645069667],[-118.1544867089587,50.47766914367166],[-118.15447385043262,50.477732644230784],[-118.154446884665,50.47779571363893],[-118.15437867553463,50.477841157797094],[-118.15430842477184,50.47787798626409],[-118.15423973288348,50.477905884897886],[-118.15414136287062,50.47795145856181],[-118.15411410773433,50.47800602751411],[-118.15411535863839,50.4780597889647],[-118.15414501590772,50.47811331441864],[-118.15421728673806,50.47816646352242],[-118.15428926737215,50.478211121149954],[-118.15435940149935,50.47824604686353],[-118.15445959824753,50.47828140539037],[-118.15455989336591,50.47831620124863],[-118.15464394302478,50.47834250390751],[-118.154715828778,50.478377553602435],[-118.15477370439686,50.478421770862994],[-118.15481766236351,50.478484781214135],[-118.15484576185447,50.47854723624122],[-118.15484720590894,50.4786100516443],[-118.15485059183237,50.478682054177106],[-118.15485222816322,50.47875392356498],[-118.15486806712329,50.47882567932148],[-118.15489811189792,50.47889730358131],[-118.15494060826596,50.478968689984896],[-118.15497065325098,50.479040314212405],[-118.15500040782533,50.47910344701085],[-118.15503045143612,50.479175080139996],[-118.15504590777361,50.479228718925306],[-118.1551043602033,50.47930010686335],[-118.15513402101983,50.479353623041405],[-118.15514986063849,50.47942537870468],[-118.15516570186638,50.479497125429546],[-118.1551670481883,50.47956050333111],[-118.1551686834962,50.47963238156607],[-118.15517032036816,50.47970425086491],[-118.15517195568644,50.47977612908703],[-118.15517301556564,50.47982083642548],[-118.15517445855757,50.479883660655354],[-118.15517648011894,50.47997363789384],[-118.15518005900677,50.4800546942755],[-118.15516787598975,50.480144794089476],[-118.15512670513341,50.480207986067704],[-118.15508543750975,50.48027173167156],[-118.15505847263847,50.48033479210077],[-118.15504707741385,50.480379755123536],[-118.15502049703707,50.480460923486774],[-118.15502251675838,50.48055090959364],[-118.15500994868266,50.48062290138743],[-118.15499757131072,50.48070395607628],[-118.15499920794899,50.48077582528257],[-118.1550010353377,50.48085675738352],[-118.15500238146892,50.480920135180696],[-118.15503223554036,50.48098270524895],[-118.15509049789762,50.4810450390706],[-118.15514856963989,50.481098309958696],[-118.15516402521769,50.481151957529846],[-118.15516537158665,50.48121533530194],[-118.15512458597047,50.481296626198635],[-118.15507115260688,50.48136911882322],[-118.15501596936355,50.48144147828003],[-118.1549609766832,50.48152290059679],[-118.1549077366364,50.48160443815587],[-118.1548525512842,50.48167680644025],[-118.1548403671752,50.48176690603791],[-118.1548414252136,50.48181162219942],[-118.15484238659572,50.481856892003066],[-118.15484344619723,50.48190159922982],[-118.15484459986072,50.481955922987815],[-118.15486063221367,50.48203673242036],[-118.15486111499351,50.48205427776284],[-118.15486246096388,50.48211765546795],[-118.15482342372323,50.482199079301274],[-118.15476804680408,50.48226238460487],[-118.15474088648226,50.48231639977634],[-118.15471391990752,50.48237945996278],[-118.15468860634178,50.48244320692229],[-118.15467584340114,50.48250615348645],[-118.15463447902215,50.48256028221537],[-118.15459301632178,50.482614973498826],[-118.15453763700984,50.48267828758492],[-118.15446913016042,50.4827152401467],[-118.15437055926732,50.482751750862235],[-118.15430205216954,50.4827887033177],[-118.15430349404367,50.48285152732869],[-118.15434755389522,50.48291397494826],[-118.15437759900679,50.482985607917094],[-118.154364837038,50.483048545473615],[-118.15435245784172,50.4831295998479],[-118.15436849128945,50.48321040030461],[-118.15437031764542,50.48329133217287],[-118.1543716629633,50.483354709787214],[-118.15437291432254,50.4834084708799],[-118.1543885619618,50.483471172349375],[-118.15441841686997,50.483533742385696],[-118.15444798143,50.48358782104023],[-118.15449204064139,50.483650277475476],[-118.15449348436674,50.48371309248752],[-118.15448072079467,50.48377603893056],[-118.15443935501737,50.483830167501985],[-118.15438543649677,50.48388510533607],[-118.15430145156334,50.483939610249465],[-118.1542883988149,50.48399405635802],[-118.15430385592106,50.4840476949275],[-118.1543193115048,50.48410134242106],[-118.15432027241185,50.48414661210129],[-118.15432133154977,50.48419131920673],[-118.15430856760224,50.48425426559283],[-118.15426933690034,50.484326626153255],[-118.1542271034785,50.484345101447204],[-118.15418467786677,50.484354522790916],[-118.15411403252153,50.484373242972175],[-118.15401653449973,50.48438327829022],[-118.15391728505597,50.48439318929984],[-118.15383380080377,50.484394048089555],[-118.15362246309263,50.48439600844851],[-118.15350852531179,50.484388496190455],[-118.15341083512216,50.4843894770421],[-118.15331120157134,50.48438127964093],[-118.15319949741405,50.48439143659638],[-118.15308642570001,50.484419577073574],[-118.15296089926505,50.48444796398386],[-118.15284830928374,50.48449364951459],[-118.15273737220595,50.48454002174043],[-118.15263936990362,50.48460370156783],[-118.15254292844249,50.484658442685195],[-118.1524730491929,50.484713377546655],[-118.15241941571969,50.4847768146579],[-118.1523358118835,50.48484941695806],[-118.15225347737615,50.48490459814593],[-118.15214040378602,50.48493273764237],[-118.1520433842717,50.48496032544243],[-118.15194470825033,50.4849973964737],[-118.15185966313766,50.48500718345576],[-118.15176235491654,50.485026270717626],[-118.15165084046339,50.48504548003764],[-118.15152355998539,50.48507374104342],[-118.15139812901451,50.48510156359553],[-118.15128543755081,50.4851478100743],[-118.15116009950845,50.48518524885347],[-118.15104906417736,50.48522201178526],[-118.15092197432877,50.48525932602454],[-118.15081084190611,50.48529664235369],[-118.1506978647103,50.48532421779963],[-118.15060055531389,50.485343304036164],[-118.15052971550726,50.485352967986096],[-118.1504588756703,50.48536263189076],[-118.15038978720982,50.4853724200282],[-118.15031913869628,50.48539113777221],[-118.15019360781716,50.48541952152112],[-118.15006632537118,50.48544778084402],[-118.14994089090168,50.48547561066735],[-118.14981555083297,50.48551304791423],[-118.14974528439977,50.48554987314607],[-118.14971811764575,50.485603877940406],[-118.14971955322684,50.48566670179263],[-118.14969276889099,50.48573881442522],[-118.14966744634594,50.485802559976065],[-118.14956905449728,50.485848129145744],[-118.14947212592536,50.48588532223083],[-118.14938726980176,50.485904161233755],[-118.14927623281707,50.48594091343112],[-118.14917812584983,50.48600514373149],[-118.14910833715514,50.486059522748036],[-118.1490112166248,50.48608766149807],[-118.14892655103569,50.48611555406741],[-118.14885870595512,50.4861791022135],[-118.1488033142212,50.486242413161825],[-118.14873409947725,50.48632394476115],[-118.1486521399811,50.486397231019986],[-118.14859655664667,50.48645148792833],[-118.14856852551941,50.48646983926902],[-118.14851507705525,50.48654231934694],[-118.14844566875666,50.486614805747784],[-118.14839027746861,50.48667810752655],[-118.14835074586323,50.48674197442826],[-118.14828114601242,50.486805406792165],[-118.1481989012874,50.486860022276275],[-118.14810059984248,50.48691519763678],[-118.14800376452067,50.486951835756244],[-118.14789087405246,50.48698902477061],[-118.14779413253011,50.48703527025373],[-118.14773835806508,50.487080463846176],[-118.14766808749518,50.487117287692755],[-118.14765407153872,50.48712646323939],[-118.14754321940762,50.487172276492196],[-118.14744453485068,50.487209343424496],[-118.14734789072095,50.487255025942304],[-118.14723732274683,50.48731950034188],[-118.14720995959595,50.48736445942259],[-118.14718249962624,50.487409972128084],[-118.1471411217609,50.4874640977387],[-118.14709993298247,50.48752728617039],[-118.14706020806706,50.48758209863618],[-118.14703284614113,50.48762704872904],[-118.14697745006713,50.48769035865377],[-118.14692157564518,50.487736114362924],[-118.14683894618614,50.487772620961586],[-118.14675427609191,50.48780051181719],[-118.14672605270391,50.48780980875446],[-118.14666992441897,50.48776571214911],[-118.1465986986719,50.487757265746],[-118.14652766358455,50.487757873206164],[-118.14644474481526,50.48778588816496],[-118.1464317798076,50.487839770528815],[-118.14636188818922,50.487894701329964],[-118.14626466819084,50.487913230074376],[-118.14615120220827,50.48792325555462],[-118.1460540758214,50.48795139165453],[-118.14598399304518,50.4879972683033],[-118.14591595047833,50.48805176059807],[-118.14583127928961,50.48807965074054],[-118.14573221039133,50.48809860829773],[-118.14563489291014,50.48811769011877],[-118.1455358238458,50.48813664749997],[-118.14543879340303,50.48816422942222],[-118.14535374090956,50.48817401138486],[-118.14522819916334,50.48820238942476],[-118.14511530327795,50.48823957556102],[-118.14500425706527,50.48827632338211],[-118.14491977520419,50.48831326672752],[-118.14483723500831,50.488359388277296],[-118.14473883270458,50.488404953024734],[-118.1446561018955,50.48844202053045],[-118.1445717177989,50.488478401042855],[-118.1445031939795,50.4885153471931],[-118.14439210538525,50.48863346407645],[-118.1443649303662,50.48868746735609],[-118.1443534255723,50.48873298244876],[-118.14435447337958,50.488777698325485],[-118.14437011051812,50.48884039186099],[-118.14437134854954,50.48889416163159],[-118.14435847258619,50.48895766013934],[-118.14435990237162,50.48902047487139],[-118.14436152080368,50.4890923524258],[-118.14435987653314,50.492063128983666],[-118.14461796942385,50.49204755267238],[-118.14516437358978,50.492117417941316],[-118.14565695578462,50.49220097972102],[-118.14619447035905,50.49235214109566],[-118.14677289774903,50.49242145059062],[-118.14748875503123,50.49245530937489],[-118.14809525791443,50.492414730628035],[-118.14865905196687,50.49233439622545],[-118.1491813674004,50.492308738633774],[-118.15013108192574,50.49233375301925],[-118.15083690808012,50.492394559732816],[-118.15135082253818,50.4924575775511],[-118.1517491890251,50.492623700113214],[-118.15255424940145,50.4928067974813],[-118.15281068872086,50.49279052427331],[-118.15305188377681,50.4926584669162],[-118.15321902267938,50.49251380727246],[-118.15367278279984,50.492291731353156],[-118.15405304248776,50.4921452431048],[-118.15455346254022,50.49209258684462],[-118.15525698704869,50.49202437923055],[-118.15556441696761,50.492000415189885],[-118.15620331673973,50.49194683022365],[-118.15676102347791,50.49202309772779],[-118.15743773609807,50.492179549764444],[-118.1579965995287,50.492350805344685],[-118.15855430724152,50.49246774399538],[-118.1591456817672,50.49264581738854],[-118.15960801642339,50.49281136222541],[-118.16013090566962,50.492853494827855],[-118.16082488807942,50.4928399553949],[-118.16136793587263,50.49276655844527],[-118.16232604571354,50.49270278219888],[-118.16324443730383,50.492754844781075],[-118.16384595683948,50.49290535985029],[-118.16466818902508,50.49332576224047],[-118.16525180890483,50.4936806621671],[-118.16581821069153,50.49408349880511],[-118.16832086416142,50.49475278667409],[-118.16896622590185,50.4949572235666],[-118.16942861890921,50.49510238703505],[-118.16992186790225,50.4952536823216],[-118.17075539335993,50.49568104100341],[-118.17134368242314,50.49619274103774],[-118.17149992165866,50.496456343271426],[-118.17166810723648,50.49649875171077],[-118.17169273508179,50.496540613213966],[-118.17194433742164,50.496633552654075],[-118.17219769246317,50.49673679436924],[-118.17234749960659,50.496884680923074],[-118.17245000432746,50.497029230119644],[-118.17246577435685,50.49705068545315],[-118.17258599796462,50.49721568859097],[-118.17274670701909,50.497362094548606],[-118.17295199219194,50.49748678445418],[-118.17317158348276,50.49760062543666],[-118.17339750062027,50.49770870291108],[-118.17362536683022,50.49781577866178],[-118.17384525235686,50.497927948386895],[-118.17404918011852,50.49805027981215],[-118.17422109013017,50.49819351563407],[-118.17438288010864,50.49834394529039],[-118.17456306343922,50.498480425089575],[-118.17477293142304,50.49859922444592],[-118.17499233827606,50.49871417790481],[-118.17521797446476,50.49882392141109],[-118.17544818595177,50.49892776846739],[-118.17568647513622,50.49902597573161],[-118.17592787836918,50.49911649272076],[-118.1761790147597,50.49920204735965],[-118.17643881194178,50.49927861336866],[-118.17670649138879,50.49934047673221],[-118.1769775744134,50.49938280089206],[-118.17725410196117,50.499404048722276],[-118.17753500684003,50.49941034607954],[-118.17781756483056,50.4994071502631],[-118.17810411199918,50.499401415282],[-118.178388420367,50.49939835078261],[-118.17866942332711,50.49940408268896],[-118.1789496502196,50.4994244577223],[-118.1792301725639,50.499453323186145],[-118.17951099051905,50.49949067907736],[-118.17978655429691,50.499537841708005],[-118.18005316876007,50.49959566187796],[-118.18030508979254,50.4996665722299],[-118.18053531573858,50.49977041756825],[-118.18073927321507,50.499902906390304],[-118.18085542322575,50.49999982039196],[-118.1809113079115,50.50004557787936],[-118.18100188493122,50.50021808308506],[-118.1810909048755,50.50038934814914],[-118.18128046153795,50.50052307802125],[-118.18152402810396,50.50062164393925],[-118.18179278336109,50.50065702020567],[-118.18208166935848,50.50063788009129],[-118.18235614265637,50.50059964164661],[-118.18262749619086,50.50054875255837],[-118.18289621990175,50.5004925877216],[-118.18316328721191,50.50043574481562],[-118.18342966935697,50.500372642633934],[-118.18369283873878,50.500307613476295],[-118.18396000184381,50.50025020605533],[-118.18423184028524,50.50020669682981],[-118.18450903640384,50.50017316551247],[-118.18478857097837,50.50014657844702],[-118.18507054201395,50.50012637302793],[-118.18535173444518,50.500110640812096],[-118.18563692143269,50.50010253019068],[-118.18591657040092,50.50011605749904],[-118.18618727681613,50.500160600575846],[-118.18645147070131,50.500222192972835],[-118.18671206941605,50.50029426093879],[-118.18697043069578,50.5003689996778],[-118.18723297578249,50.500440082788316],[-118.1874905621674,50.50051928530478],[-118.18770942353075,50.50062739218578],[-118.18790250503275,50.50076135809598],[-118.188065907831,50.50091300728536],[-118.18817957703722,50.501075274464256],[-118.1882490621059,50.50124684304393],[-118.18829440947931,50.50142462641796],[-118.1883303178167,50.50160569375993],[-118.18836632428506,50.501786198459875],[-118.18841527481683,50.50196366642998],[-118.18846792419053,50.50214026544022],[-118.18852232614627,50.5023169880613],[-118.18857497635163,50.5024935869441],[-118.18862217628853,50.502670930995414],[-118.18865857148147,50.50284921179567],[-118.18866586485964,50.50303164870432],[-118.18868620025357,50.5032104862772],[-118.18876065520432,50.5033841039389],[-118.18887219929246,50.503558639720495],[-118.18902714477025,50.50370799872414],[-118.18924465614275,50.50380357609],[-118.1895177293214,50.50385504674024],[-118.18980462006091,50.503898461224125],[-118.19007039892206,50.50396128463707],[-118.19033511178826,50.50403024232314],[-118.19058104613316,50.50411539295626],[-118.1907953596268,50.50422938984249],[-118.19098671346153,50.50436322616212],[-118.19118011102873,50.504495515849925],[-118.19138985670405,50.50461539918981],[-118.19160748509763,50.50473075794864],[-118.19182316982031,50.50484709996525],[-118.19202707982778,50.504969959941185],[-118.19221882701011,50.50510157044297],[-118.19240065111295,50.505239251115654],[-118.19258043218514,50.50537848670195],[-118.19276235475203,50.505515613074756],[-118.19294194400723,50.50565596428158],[-118.19311764168168,50.505798300477835],[-118.19329723316844,50.5059386510618],[-118.19348120276405,50.5060742298472],[-118.19367529483203,50.50620260356329],[-118.19388777749568,50.50631702426264],[-118.19412867425727,50.50641084965578],[-118.19438192837009,50.506494816052665],[-118.19463109828077,50.50658187454325],[-118.194876180913,50.506672043014106],[-118.19512544897428,50.506758546714885],[-118.19537423381668,50.50684783602141],[-118.19561104984392,50.50694475977551],[-118.1958295739187,50.50705508231987],[-118.19602980610156,50.50717880375703],[-118.1962236184611,50.507308851697374],[-118.196409548793,50.50744343270263],[-118.19659314752977,50.507581229668496],[-118.19677090678138,50.50772201337844],[-118.19694866869449,50.507862787849696],[-118.19712633397071,50.50800412460585],[-118.19730614065739,50.50814335207396],[-118.19748224966776,50.50828344842061],[-118.19765222901175,50.508428201499605],[-118.19782016689344,50.50857450068743],[-118.19799209633888,50.50871825153426],[-118.19817219865037,50.50885580755789],[-118.19836816468352,50.508983742496326],[-118.19857629561513,50.50910292549901],[-118.1987924054908,50.50921702977817],[-118.19901435712764,50.50932814643883],[-118.19923854629853,50.50943659996329],[-118.19946847794087,50.50954263734019],[-118.19969860610117,50.509647549038206],[-118.19993077786697,50.50975091381509],[-118.19999992324477,50.50978177447747],[-118.20016295069722,50.50985427809388],[-118.20039327438244,50.50995808098379],[-118.2006234068147,50.510062990713436],[-118.20085373262603,50.51016679262246],[-118.20108425490248,50.51026946885006],[-118.20131847556208,50.51037128419804],[-118.20155114015094,50.51047185038065],[-118.2017857505916,50.510571432196116],[-118.20202230998285,50.51067001177213],[-118.20225906268476,50.51076748350061],[-118.20250185086661,50.510860851090555],[-118.20275067139856,50.51095013236395],[-118.20299978440568,50.51103773421083],[-118.20325074861029,50.511124896333754],[-118.20349966975644,50.51121361330477],[-118.203742848944,50.51130475453542],[-118.20397970636668,50.51140165992568],[-118.20420488669937,50.51150452183474],[-118.20441771250667,50.51161724279316],[-118.2045887932123,50.511755840749466],[-118.20472766674534,50.511916467909835],[-118.20485661723991,50.512083166449216],[-118.20500152559852,50.51223969838913],[-118.2051846761898,50.51237010568028],[-118.20541356308546,50.51247209557312],[-118.20566882016996,50.512555033834076],[-118.20593244332552,50.512630660160646],[-118.20619226330867,50.51269753920965],[-118.20646560342243,50.512747851383786],[-118.2067203698147,50.51282341254314],[-118.20696522074185,50.51291522359747],[-118.20719139322338,50.51302266771593],[-118.20738321891133,50.51315425074834],[-118.20753972154205,50.51330537548631],[-118.20767004233748,50.51346425660325],[-118.20778508291629,50.51362941079407],[-118.20788912329891,50.51379661976518],[-118.20798002485299,50.513967983785946],[-118.2080542820882,50.51414325615739],[-118.20813408774059,50.514317228594734],[-118.20823297053727,50.514483504414606],[-118.20837857702944,50.51463612008984],[-118.20858297331267,50.51476688543906],[-118.20881897740774,50.51485863800941],[-118.2090968073624,50.51490360894374],[-118.20937404561643,50.514941767154376],[-118.2096582870045,50.51497023933455],[-118.20994067842828,50.5149991500523],[-118.21021169157179,50.51504251751422],[-118.21046365027698,50.515113911809706],[-118.21070871490244,50.515204598088935],[-118.21094610114174,50.515308871716684],[-118.21117103732168,50.515423558718005],[-118.21137855337246,50.51554662821665],[-118.21156319739323,50.515678826651595],[-118.21170387239026,50.515849728452736],[-118.21176315545279,50.51602960177535],[-118.21167411127644,50.5161747431158],[-118.21144132867057,50.516299603227594],[-118.2112555902985,50.51643963199555],[-118.21111134527885,50.51659614750001],[-118.21094615329042,50.51674045062707],[-118.21070339990534,50.51683071116907],[-118.21042199458223,50.51682673033398],[-118.21013737498484,50.51682082325767],[-118.20984537502844,50.51683700305455],[-118.20960221207402,50.516909154236934],[-118.20942016475415,50.517048310246004],[-118.20926393307538,50.51720228097468],[-118.2091485080621,50.517366471971975],[-118.2090211037955,50.517528120513965],[-118.20887402058995,50.517680474817894],[-118.20868709682142,50.517817026913676],[-118.20852530063885,50.51796213553161],[-118.2084250669703,50.51813077569058],[-118.20831967009623,50.51829849197931],[-118.2081871953839,50.5184586530397],[-118.2079741468737,50.518571906609424],[-118.20774931237045,50.51868150105834],[-118.20756422999801,50.51881762080161],[-118.20740038391438,50.51896427415815],[-118.20725962473061,50.51912102199773],[-118.20715626392446,50.519287190432166],[-118.20709546595845,50.5194636944307],[-118.20701927896737,50.51963685542269],[-118.20691406709261,50.51980345381102],[-118.20679853075873,50.519968195508554],[-118.20667286362463,50.520129964227124],[-118.2065390122856,50.520287767064765],[-118.20638684668474,50.520438631143755],[-118.20622123795093,50.5205851590813],[-118.20605728496132,50.52073236380331],[-118.20591349338282,50.52088607663653],[-118.20577944335663,50.521044994667974],[-118.20565367189471,50.521207324612995],[-118.20553988031364,50.52137218812023],[-118.2054416707742,50.521539278372536],[-118.205383885281,50.52171881392387],[-118.20539377756502,50.52189690390116],[-118.20546491787954,50.522069705914014],[-118.20555757989177,50.522241193582204],[-118.20564294070347,50.522413857445876],[-118.20570639327215,50.52259006800672],[-118.2057656612673,50.52276994304159],[-118.20580019522724,50.52294919774864],[-118.20578593464839,50.5231233273363],[-118.20568080620069,50.523289370185346],[-118.20553925233095,50.52345058001944],[-118.20540353644226,50.5236088200357],[-118.20525759279255,50.52376464057401],[-118.20511008889174,50.523919221232525],[-118.20496930627108,50.52407596522063],[-118.20484576182841,50.52423562197433],[-118.20475095193544,50.52440352044657],[-118.20470202155477,50.52458311842934],[-118.20469350946337,50.52476499233383],[-118.20471742443729,50.524944069032614],[-118.2047656891853,50.52512598974148],[-118.20484355465672,50.52530095503202],[-118.20496542501749,50.52545755001256],[-118.20519916067096,50.525572873658945],[-118.20542228264215,50.525688010031686],[-118.20550286499378,50.52584734728072],[-118.2055379817003,50.52602325265285],[-118.20554690647866,50.52620692291213],[-118.20553586753547,50.52639314703389],[-118.20551469872343,50.526576389274425],[-118.20548553761985,50.526754558400924],[-118.20543348890352,50.52693167689126],[-118.20536575884681,50.52710712208848],[-118.20528770141807,50.52728071945582],[-118.20520282599388,50.527452697927636],[-118.20510080403966,50.52762121865173],[-118.20499021068018,50.527787997020596],[-118.20488136816277,50.52795490758786],[-118.2047899608698,50.528123605810286],[-118.20476293835597,50.52829965640845],[-118.20480244072354,50.52848095928323],[-118.20469475889811,50.52864117207297],[-118.20453525595431,50.528793208311576],[-118.20437730977935,50.52894649288427],[-118.20426553880448,50.52910979811933],[-118.20420159746256,50.529283819087965],[-118.20416142593423,50.52946403287441],[-118.20414054010857,50.529645604270236],[-118.20414312452324,50.529824877759786],[-118.20424057344124,50.529999521302315],[-118.20429441227867,50.53008805270358],[-118.2042563322677,50.53009272087018],[-118.20410064893214,50.53016141398779],[-118.203878616783,50.530326005067096],[-118.20376636355596,50.53050227415559],[-118.20377276651122,50.53058802680047],[-118.20379928537993,50.53061927070915],[-118.20381400655441,50.5306366949111],[-118.20379503703475,50.53066416707684],[-118.20373238979947,50.530759186814834],[-118.20377908891018,50.53092969742548],[-118.20388778736535,50.53116219662735],[-118.20383555030962,50.53136076877157],[-118.20375982795808,50.53142888071547],[-118.20391220886751,50.5314814134522],[-118.20427563345292,50.53161659493141],[-118.20456044912136,50.53174455157763],[-118.20465186942039,50.53181087030689],[-118.20471464595276,50.53186839348824],[-118.20481553884892,50.53196192650545],[-118.20494945465829,50.53205948305015],[-118.20510012066757,50.53215256890811],[-118.2051857795466,50.532200972901805],[-118.2052136485019,50.53221423319648],[-118.20523342981632,50.5322229651552],[-118.20524299840129,50.532249625879835],[-118.20528680543518,50.532334629990594],[-118.20534739905628,50.532455832780975],[-118.20538524222982,50.53251386035051],[-118.20539080119293,50.532522730214886],[-118.20540923458829,50.53254944534949],[-118.20543983451445,50.53267984490767],[-118.20544397656649,50.53285017887139],[-118.20547474417012,50.53294895351552],[-118.20553722451402,50.53299797650442],[-118.20556889971532,50.533019983147405],[-118.2056195813423,50.533055186612415],[-118.2057584901837,50.53317512121785],[-118.20590687127776,50.5333222788486],[-118.20603196446297,50.53346045766888],[-118.20616699908679,50.53360271645673],[-118.20628400581356,50.53373636669311],[-118.20637779468603,50.53382996710529],[-118.20645196833772,50.53388321088547],[-118.20648266799854,50.533900619976116],[-118.20654130703315,50.5339002267546],[-118.20697462398434,50.53406235227698],[-118.20783924412488,50.53440847480315],[-118.2086330019097,50.534692550596176],[-118.20909915706773,50.53484962798991],[-118.20928127718713,50.534914982108226],[-118.20933243931522,50.53493721921617],[-118.20945612315897,50.53501202100653],[-118.20963714208857,50.53514508012445],[-118.20976551608396,50.535233769796776],[-118.20992678205707,50.535286348132075],[-118.21019906263288,50.53540492682807],[-118.21053527621403,50.53555398800457],[-118.21084038192278,50.53566753377194],[-118.21104698138187,50.53575550403812],[-118.21122605062338,50.53587938387506],[-118.21143906857695,50.53605311396212],[-118.21159546042381,50.53619517549785],[-118.21165464874468,50.536253001499055],[-118.21166556768854,50.53626167833518],[-118.21168195122462,50.53627977833634],[-118.21172377589117,50.53631492494591],[-118.21178508499756,50.53635030269101],[-118.21188565992608,50.53639466013006],[-118.21201956300949,50.536451529649135],[-118.2121506364524,50.53650425002001],[-118.21228180782151,50.536556407645826],[-118.21241386224827,50.536613707041695],[-118.21257837294766,50.5366885458454],[-118.21278245219216,50.53678085446672],[-118.21299266376909,50.53686851391397],[-118.21326229533287,50.53695130227845],[-118.21354604200263,50.537024353030375],[-118.21371773204926,50.53706805849898],[-118.21385911574104,50.537102293717375],[-118.21405517381554,50.53715901016365],[-118.21426689709469,50.53719705031456],[-118.21445580069997,50.5372131576407],[-118.21455030134958,50.53722092988894],[-118.21463429133073,50.53723813199997],[-118.21476863063354,50.53724135563925],[-118.2148291235826,50.537240527645345],[-118.21490559410495,50.53723968371784],[-118.21513983510526,50.53729117281099],[-118.21538271741198,50.53740541078778],[-118.21548576197135,50.53747649420277],[-118.21562554783047,50.537560888735484],[-118.2157673706158,50.53772564591519],[-118.2157535199505,50.53788737165848],[-118.21576854360609,50.53799519423597],[-118.21583485021226,50.53805295718243],[-118.21588868792622,50.53811097367363],[-118.21597404967274,50.53822261834412],[-118.21605075240169,50.538343253643454],[-118.216100718683,50.53842359498113],[-118.21615681808308,50.53849927840418],[-118.2162129161228,50.53857497072195],[-118.21623311206635,50.538601807096576],[-118.21623568513648,50.538638143208175],[-118.21623854184081,50.538754718808235],[-118.21623995702873,50.53888984018329],[-118.21624050933195,50.53894806188659],[-118.21619401336224,50.53901145587931],[-118.21609087496033,50.53912510243115],[-118.2159853679395,50.53921146599475],[-118.21589852548037,50.53926185595715],[-118.2158220961842,50.53930337840646],[-118.2157444843169,50.53933125043213],[-118.21560765500006,50.53937304756199],[-118.21538708155389,50.53944736520502],[-118.21517304830003,50.539535139933314],[-118.2150527454661,50.53963515101857],[-118.215024892214,50.53973431990771],[-118.2150452718896,50.539841958434145],[-118.21506241350129,50.53992733270618],[-118.21506838453374,50.53995430842135],[-118.21506332803983,50.539962991878724],[-118.21502920292016,50.54002668546806],[-118.21479743546016,50.540114343149085],[-118.21447904570269,50.54018970253794],[-118.21438068890672,50.540316672708464],[-118.21430498883788,50.54049721758049],[-118.21413147884502,50.540678787615064],[-118.21398549934416,50.540824446916794],[-118.2139056010688,50.54090639919841],[-118.21385431279916,50.54095645774916],[-118.21379358777678,50.541019980671635],[-118.21373589580804,50.541096714602766],[-118.213712322501,50.54119165563509],[-118.2137244251443,50.54139813972402],[-118.21375599025276,50.541676612099266],[-118.21377048285339,50.5418386303131],[-118.21376836312066,50.54186107837989],[-118.213633031055,50.54185326531977],[-118.21333227529082,50.54184737339251],[-118.2131324727443,50.541863274262],[-118.21310003125075,50.541958161258755],[-118.2131396424699,50.54220047469373],[-118.21319924572454,50.54246057165863],[-118.21322518401769,50.54257707952529],[-118.21322135246933,50.542640081959384],[-118.21319488243603,50.54276193568569],[-118.21315624218795,50.54289254219265],[-118.21304364995805,50.54301964969106],[-118.21275099589973,50.54313070110374],[-118.21230509186503,50.54315302768272],[-118.21192420213967,50.54310760350297],[-118.21147954781314,50.54311249736832],[-118.21086900257566,50.543244697665],[-118.21052908450106,50.543351860016934],[-118.21047387305602,50.543383572791655],[-118.21045547357365,50.54339752756037],[-118.21041897283875,50.54343394554397],[-118.21030364049199,50.54355632968271],[-118.2101587141515,50.54370601804916],[-118.21015835896794,50.543841006428025],[-118.21026751597911,50.54397918499778],[-118.21032176098504,50.54405531010611],[-118.21033726570215,50.54406825930542],[-118.21036746874584,50.54406812334648],[-118.21039670465193,50.54417582512167],[-118.21039770827217,50.54440525636884],[-118.21037389435661,50.544562891494934],[-118.21031181307258,50.544644395242194],[-118.21013540119026,50.54478113156677],[-118.2099199583963,50.54495861799746],[-118.20980967732258,50.545072327156994],[-118.2097891550767,50.54510872968896],[-118.20975315724769,50.545162691118406],[-118.20971821633599,50.545302595872464],[-118.20982353899508,50.545503776724786],[-118.21001077355946,50.54567286249316],[-118.21011510866133,50.54575702898161],[-118.21016183641731,50.545815108039776],[-118.21022255739854,50.545935752529864],[-118.21029485049695,50.54613291078604],[-118.21037405239697,50.54632095544551],[-118.21045696813354,50.546518290862394],[-118.21052899168626,50.54673746636937],[-118.21058305035787,50.54691695463785],[-118.21064340638733,50.5470601699195],[-118.21070052472331,50.547181129906804],[-118.2107239577801,50.547230231165784],[-118.21058999804785,50.547245100020646],[-118.21023884486667,50.54725317611297],[-118.20989254625208,50.54724351481564],[-118.20964272615039,50.547250805236345],[-118.20942799518342,50.54727073121912],[-118.20928945053551,50.54728132617137],[-118.20912589380862,50.547323497268025],[-118.20882474135797,50.5474525899025],[-118.20839151374304,50.54763679503821],[-118.2079619562528,50.54778962087941],[-118.20759240082901,50.54792406836583],[-118.20719988419854,50.548098704386454],[-118.20682860648715,50.54827370331133],[-118.20650144970627,50.54842976807497],[-118.20619660738312,50.548590230908594],[-118.20588505470853,50.548768868129066],[-118.20567594839764,50.548879002307224],[-118.20556598175135,50.548929458236614],[-118.205376529695,50.549008208758444],[-118.20513411030294,50.54913634486251],[-118.20499653696535,50.54926393907107],[-118.20492499797774,50.54947131919299],[-118.20483893091901,50.54978275389707],[-118.2047858660476,50.549945109512954],[-118.20476513337093,50.549972466715865],[-118.20472659582911,50.55003076763974],[-118.20467862712047,50.55011269241933],[-118.20462491902363,50.55020721125307],[-118.20454957130286,50.550293428393275],[-118.20448754196782,50.550343866707266],[-118.20446640539454,50.550353108687915],[-118.2044644831663,50.5503846094559],[-118.20444199434219,50.550524259358276],[-118.20439849917372,50.550713274834834],[-118.20432817217993,50.550862556711984],[-118.20423357038088,50.55099826255537],[-118.20415903052061,50.551120691764474],[-118.20414618453363,50.55125593117168],[-118.20416981115525,50.55142651166534],[-118.20418595825556,50.55150729814703],[-118.20406910991356,50.55149512668858],[-118.20381953165318,50.55147021728415],[-118.2036519117116,50.55145390346383],[-118.20357201476371,50.55146409952079],[-118.20348034820435,50.55150115337744],[-118.203366292425,50.551564869114934],[-118.20326579195624,50.5516425364993],[-118.20318848281055,50.55171957603348],[-118.20312031544505,50.55177466166165],[-118.20301843137256,50.55182963433935],[-118.20285077025609,50.551885067026994],[-118.20263800326012,50.5519548335469],[-118.20245466800881,50.55202893066977],[-118.20236582943559,50.55207013273354],[-118.2023184919252,50.55209730752449],[-118.20216937431832,50.55218906090505],[-118.20182969832697,50.55234537215866],[-118.20145024215782,50.5524751465714],[-118.20126825317612,50.55253125896833],[-118.20116768409504,50.55252756999118],[-118.20101125665283,50.55249792147144],[-118.20088055337203,50.552463295191366],[-118.20080628123445,50.55244111936409],[-118.2007511992836,50.552410694967755],[-118.20068967674568,50.55236624980696],[-118.2005724235843,50.55233596849489],[-118.20039613634418,50.552328639136526],[-118.20022773822446,50.55231678498322],[-118.20006665469617,50.55231392397593],[-118.2000004080497,50.55233750703665],[-118.19993425914184,50.55236052749172],[-118.19983853504456,50.55245152643119],[-118.19978353825306,50.552532954905374],[-118.19975045614534,50.55260067748618],[-118.19971103577237,50.55266400385363],[-118.19962765749732,50.552714627264024],[-118.19949633443059,50.55276526489334],[-118.19943018463698,50.5527882850367],[-118.19920324135255,50.552674009651746],[-118.1986836492289,50.552404675328646],[-118.19833775148501,50.552188243514],[-118.19817297784324,50.55206365474479],[-118.19784587632552,50.551963790924276],[-118.1974758170596,50.55188632749108],[-118.19722083132994,50.55179041013792],[-118.19704321489564,50.55168864213622],[-118.1969276940243,50.55161779432617],[-118.19678011346508,50.551547517693656],[-118.1965779551835,50.55146435802612],[-118.19635212667895,50.55139478858269],[-118.19606686199879,50.55133006225086],[-118.19579427020399,50.55127414589981],[-118.19562146967283,50.55122637881619],[-118.19553618484252,50.551196083746625],[-118.19545528284286,50.551161008382444],[-118.19535644521436,50.551116760443605],[-118.1952332382569,50.55105949705204],[-118.19502454845718,50.55096287599828],[-118.19480045327319,50.55085274965391],[-118.19464691829661,50.55075549368018],[-118.19452261263304,50.55065352640731],[-118.19441819267509,50.55055973010816],[-118.1943310342901,50.55048918685749],[-118.19417624478078,50.550409359242956],[-118.19392029720022,50.55030884579802],[-118.19367138543464,50.55023933407438],[-118.19346324869531,50.550241617244005],[-118.19332907245837,50.55024742105381],[-118.19328025732236,50.550252451062356],[-118.19323835441301,50.550248368655005],[-118.19309686534865,50.55024517831217],[-118.19290217823503,50.55025179776691],[-118.19278455927389,50.55024407920573],[-118.19271477998183,50.55022673348332],[-118.19268252219919,50.5502182415429],[-118.19261176588545,50.550196307387175],[-118.19244305622497,50.55013527353588],[-118.19221371091652,50.55002476212471],[-118.1919863997979,50.54989236535585],[-118.19179613024964,50.54978178650456],[-118.19160127870279,50.54966693425532],[-118.19147865760023,50.54959614869852],[-118.19145789590762,50.549582817166424],[-118.19137221717564,50.54953441255528],[-118.19108238856877,50.54946540022753],[-118.19064611577193,50.54941148270606],[-118.1901667641693,50.549339847287335],[-118.18960106181258,50.54941747704195],[-118.18905002370641,50.54959443797472],[-118.1886519039273,50.549647721400824],[-118.188372817006,50.54961900516481],[-118.1882171038533,50.549615935441786],[-118.18812465260413,50.549657432537416],[-118.18799089539432,50.54972201354322],[-118.18784076048081,50.54976848224193],[-118.187690225367,50.54979685336829],[-118.18745403567034,50.54981748507373],[-118.18716143591021,50.549856166731736],[-118.18699404565882,50.54988955825442],[-118.1869390926917,50.54989924169355],[-118.18676068208408,50.549914346969885],[-118.18645278013865,50.54994912751579],[-118.18630282377627,50.54996396995586],[-118.18630146753834,50.549981952551654],[-118.18628856671162,50.55011719900951],[-118.1862449307501,50.55037794637814],[-118.18615682720787,50.550567773265094],[-118.18603884796886,50.55062328693779],[-118.18592523290909,50.55063335226993],[-118.18584971553595,50.550638764682404],[-118.18566954914758,50.55065373555678],[-118.18535988726366,50.55068838933461],[-118.18518878582891,50.55071247753098],[-118.1851324747425,50.550740142633714],[-118.18504177083453,50.55078176976007],[-118.18491832890469,50.55082785792281],[-118.18473534967687,50.550879354953175],[-118.18453288104635,50.550930606830114],[-118.18433918221035,50.55098247699975],[-118.18414743142971,50.55103335438905],[-118.18394944578394,50.551089441104224],[-118.1837585723201,50.55114546880856],[-118.1836109602057,50.55118759076098],[-118.18351830159673,50.55122003973826],[-118.18347942526181,50.55122915643684],[-118.18346179052554,50.55123865083822],[-118.18341502204392,50.551252299775925],[-118.18328339027244,50.551294418839056],[-118.18310478976868,50.55134114233986],[-118.1829928410983,50.55138238998056],[-118.18291899092281,50.551418985711194],[-118.18283539788438,50.55146054347339],[-118.18258451616109,50.551575609610985],[-118.18223463937727,50.5517187080031],[-118.18208137826348,50.55178303648615],[-118.18205770432691,50.55179661510823],[-118.18200412009551,50.55182899081192],[-118.18189373773035,50.55190199411056],[-118.18165726404999,50.55198529907931],[-118.18136951011178,50.55200623938577],[-118.18120570039319,50.55199862990203],[-118.18117441793032,50.5519947320313],[-118.18119012825062,50.552057415520515],[-118.18121969533566,50.55218323017449],[-118.1812354057847,50.55224591364286],[-118.18125336262715,50.55232627353],[-118.18120023653262,50.55256997177022],[-118.18100552546403,50.552841534634055],[-118.18086788556201,50.553009775590574],[-118.18084802622586,50.55307277818289],[-118.18084813578821,50.55311290172949],[-118.18084679034747,50.55317156135237],[-118.18083813408947,50.55322122631666],[-118.1808326869558,50.55325247898924],[-118.18082002874951,50.553284352675384],[-118.18079100621938,50.553338799341624],[-118.18075263256019,50.55340614483906],[-118.18072263390951,50.553456003024536],[-118.18068454462669,50.55350134013174],[-118.18061128238679,50.55356509359457],[-118.1805403545334,50.55361545301423],[-118.18050800813917,50.55363802798085],[-118.18049846240608,50.553652042963975],[-118.18048628463478,50.5536607831494],[-118.1804780090633,50.55368788608636],[-118.18038068796739,50.55378778852805],[-118.180200653613,50.55396490537558],[-118.18011270284066,50.55412310264625],[-118.18022589554474,50.554288706960165],[-118.18044736397694,50.55447495053468],[-118.18047841280695,50.5546635742249],[-118.18026858547411,50.55494027919819],[-118.18009939953272,50.555238499817825],[-118.17996871067362,50.55555016657873],[-118.17979347192875,50.55582196305432],[-118.17967959176897,50.555976070243446],[-118.17961589451579,50.55610716202355],[-118.17951235139061,50.55628345756185],[-118.17937860619938,50.55650056644384],[-118.17929912193183,50.55664071291384],[-118.1792864616881,50.55667258629419],[-118.17930469197002,50.55669025188005],[-118.17941094700267,50.55678362292824],[-118.17934639187989,50.55699092631239],[-118.17883988996064,50.55728849654088],[-118.17835246771025,50.557527527185385],[-118.17821994430308,50.55760517481256],[-118.17826624860191,50.55764516026811],[-118.17844951185911,50.55779594283529],[-118.17883179711804,50.55797659058666],[-118.17924318916694,50.558031052826166],[-118.1794112080407,50.5580248325152],[-118.1794292413751,50.55803344497914],[-118.17944015938997,50.55804212474814],[-118.1794545860349,50.5580510521333],[-118.17947534807783,50.55806438576799],[-118.17963774486851,50.55816171829874],[-118.17992736363945,50.558374798661845],[-118.18007060160062,50.558602415006824],[-118.18007320540883,50.55883196627474],[-118.18007631504625,50.55911973792306],[-118.1800767815649,50.55937173598983],[-118.1800753461422,50.55946146533833],[-118.18009262661613,50.5595558960036],[-118.18012299563296,50.559748429640244],[-118.18014427699164,50.55986066034891],[-118.1800520698497,50.55983946520245],[-118.1798974833762,50.559809348516914],[-118.17975156947466,50.5597702350397],[-118.17964220510741,50.55973539999038],[-118.17951266924162,50.559714399325436],[-118.17932826501287,50.559702515530866],[-118.17916355112466,50.559699930275805],[-118.17908470802327,50.559714134535255],[-118.17897870967315,50.559863708373214],[-118.17854109385485,50.560214165099765],[-118.17776673620317,50.56059112760076],[-118.1770042307862,50.560859322627145],[-118.17639121363015,50.561054454415356],[-118.17580331595431,50.56114627655084],[-118.17496571504995,50.56128486860468],[-118.17411994730575,50.561572024250346],[-118.17340683679703,50.5619436764259],[-118.17239449175831,50.56238120100743],[-118.17124654062175,50.56276111306468],[-118.17041339706272,50.563097721151095],[-118.16999604611073,50.563331502332574],[-118.17019567467514,50.56341904968063],[-118.17081580693974,50.5636108765893],[-118.17112872687771,50.563944833736485],[-118.17113147702084,50.56414276012212],[-118.17103957207563,50.564252077957455],[-118.1708413272469,50.564410948099116],[-118.17067095303896,50.56451190223462],[-118.17045554631295,50.56462662331322],[-118.17019656974199,50.564777251979095],[-118.17006849516513,50.56485972560374],[-118.17000270392643,50.564900833936484],[-118.16986800172093,50.56500091751574],[-118.1697127335927,50.56513740409389],[-118.16963671313565,50.56527779011111],[-118.16960602176007,50.56545357624621],[-118.16956372935577,50.565624592599264],[-118.16950827467664,50.56576926079622],[-118.16945867100044,50.56593128178338],[-118.16942242365447,50.56613888188278],[-118.16939358485133,50.566354914652436],[-118.16941913890538,50.56657479030812],[-118.16952072535358,50.56677630974932],[-118.16966783199535,50.56694093811105],[-118.16982498504099,50.56715994144852],[-118.16989957520327,50.56738384122486],[-118.16990124040053,50.56749638796783],[-118.1698562205222,50.56770336802405],[-118.16976968351233,50.5680463921019],[-118.16971354822624,50.568235638375],[-118.16968313920493,50.56830806314568],[-118.16962495038092,50.568407333162995],[-118.16953274139168,50.56853866604361],[-118.16944326170457,50.56867471126097],[-118.16937122894102,50.5687922203791],[-118.1693236637152,50.5688916803784],[-118.16931090094214,50.56899528941514],[-118.16923711777794,50.56919402717814],[-118.16905210967423,50.56947020941059],[-118.16888688551194,50.56967377657769],[-118.16882264608928,50.56974664025642],[-118.16880860872486,50.569755817544234],[-118.168952794625,50.569835488334334],[-118.1692583240991,50.56999831018643],[-118.16944023904044,50.570095903707745],[-118.16946821758766,50.57010861874955],[-118.16951764527796,50.5701307492533],[-118.16958227959542,50.57015735270049],[-118.16961279410539,50.5701657182417],[-118.16973124215573,50.57020968186633],[-118.17004613131812,50.570318927518095],[-118.17033869796452,50.57042376613108],[-118.17058037594978,50.57052501844518],[-118.17086446482553,50.57064790434172],[-118.17111648274845,50.57077134446042],[-118.17133194294172,50.5708905116383],[-118.1714401611629,50.57095238928382],[-118.17151952122587,50.570996410277935],[-118.171669272976,50.57108494856871],[-118.17176939928778,50.57114230425305],[-118.17179367625485,50.57115587803585],[-118.17181171183238,50.57116450052603],[-118.17182263156278,50.57117318090387],[-118.17189916549688,50.57121304285327],[-118.1720577893969,50.571301646628235],[-118.1722628252599,50.57142967492374],[-118.1725092980713,50.571584925855795],[-118.17277010265674,50.57173949778346],[-118.17302135265514,50.571867397935584],[-118.17322853363872,50.57197298682954],[-118.17338238451842,50.572048253078684],[-118.17357043910305,50.57201915558917],[-118.1739839768386,50.571929714776495],[-118.17456716997148,50.571977666368774],[-118.17515068941037,50.572196819130426],[-118.17572526181036,50.572487640016774],[-118.17603990165165,50.57265956137117],[-118.1760857274747,50.57268200369914],[-118.17612453384464,50.57270395057165],[-118.1762155049025,50.57275273713472],[-118.17627507928124,50.57278801795344],[-118.17632353732664,50.57280555697652],[-118.17644843419673,50.572853357132026],[-118.17657957350053,50.572906108154136],[-118.1766025978931,50.57297778541666],[-118.17654618081286,50.573117867447486],[-118.17650645056071,50.573325220338],[-118.17650210869766,50.57352320252642],[-118.17650848031091,50.57368014443477],[-118.17651533729845,50.57382412248465],[-118.17652736022218,50.57395885663415],[-118.17656384948829,50.57407554915577],[-118.17662227136816,50.57417854070678],[-118.17671774817312,50.574303346058066],[-118.17683341248876,50.57445500259212],[-118.17692157540945,50.574570821971015],[-118.17698058054062,50.57466029585419],[-118.17701501326093,50.57472768889595],[-118.17702145852118,50.57477220876329],[-118.17701924722209,50.574907077007076],[-118.17702242782043,50.5751637824674],[-118.17703696062839,50.5755998086556],[-118.17706841614877,50.57626469318355],[-118.17712676630387,50.576867081368974],[-118.17720522251383,50.57714039654298],[-118.1772707682025,50.5772433202076],[-118.1773144770274,50.57735939125162],[-118.17736287948706,50.57753002711234],[-118.17743196372044,50.57774505717547],[-118.17757564676957,50.57799076816477],[-118.1778343975656,50.578289801180816],[-118.17805735567815,50.57853941403671],[-118.17820823045614,50.57867264443253],[-118.17839293938393,50.578805441377426],[-118.17853942883096,50.578943450676135],[-118.17858361477816,50.57900589027196],[-118.17858498600674,50.57902858428987],[-118.17857650872052,50.579046624478586],[-118.17841809226876,50.57916030304312],[-118.17811012441229,50.579357200225346],[-118.17793328137945,50.579484826858916],[-118.17786650854111,50.579562035565296],[-118.17771882592861,50.57971600684348],[-118.17750990999285,50.579884874374486],[-118.17708861680246,50.58002857881977],[-118.17643700754488,50.58017863622779],[-118.175974943179,50.58029121315969],[-118.17580938354958,50.58033376331256],[-118.17563466235566,50.58039826404014],[-118.17535512853881,50.58051356021948],[-118.17513176063669,50.580632810718946],[-118.17495333795434,50.58072868557792],[-118.17473249324188,50.58080292777718],[-118.17455572759616,50.58089947945378],[-118.17450192687255,50.58103465598975],[-118.17442510794893,50.58113883126303],[-118.17422258989308,50.58119967784264],[-118.17401363480502,50.581246502261635],[-118.17388609638256,50.58127478556553],[-118.17376206820666,50.58130331651245],[-118.17359573481761,50.58142151038233],[-118.17349864446477,50.58161125419092],[-118.1734761358124,50.58171983211789],[-118.1734704836698,50.581742030526186],[-118.17344493795764,50.58175604544411],[-118.173192103566,50.581830277593134],[-118.1727347933027,50.58195617624909],[-118.17249161442905,50.58206668403371],[-118.17247554495066,50.58221978142614],[-118.17247508197902,50.58239543906905],[-118.17229899054908,50.58251859183198],[-118.17181261356201,50.58265825339218],[-118.17125252277563,50.582884227904515],[-118.17089320913371,50.583130595879545],[-118.17078254162305,50.58323519931815],[-118.17070267751093,50.58324481778564],[-118.17051798709846,50.58326454259643],[-118.1703308606688,50.58329821398317],[-118.17016323790176,50.58336264809751],[-118.17001102464042,50.58344058974223],[-118.16987655702637,50.58351866355469],[-118.16978323946091,50.583564608124796],[-118.1697214192883,50.58362351530184],[-118.16963980488038,50.58371436035683],[-118.16958588352836,50.58376873634519],[-118.16956764898029,50.58379174539913],[-118.16954892852952,50.5838277091616],[-118.16948174792304,50.58392747353676],[-118.16937117458096,50.58407219752121],[-118.16928975427187,50.58417209507341],[-118.16922081727031,50.58427173528451],[-118.16915685141036,50.58435308815199],[-118.16912223495757,50.58439866753446],[-118.16909200719006,50.58443946790743],[-118.16905436938637,50.58450234241137],[-118.16900990636768,50.584583942722475],[-118.16895900856726,50.584692205521826],[-118.16891396314044,50.58482799858712],[-118.16888393667466,50.58498970956324],[-118.16886999960377,50.585120350938126],[-118.1688664911789,50.585160778579215],[-118.16887634229036,50.58520610881431],[-118.16889390140591,50.58530903747367],[-118.1689082419989,50.58538970177188],[-118.16891945745319,50.58541705038126],[-118.16893652661787,50.58546175144858],[-118.16897349336045,50.58559599682211],[-118.16903455115644,50.585775439073785],[-118.16908507291978,50.585882955239605],[-118.16916309535621,50.58598563426191],[-118.1693025610008,50.58616383418225],[-118.16943997999961,50.58633341073458],[-118.16955701473503,50.58646709102634],[-118.16957691546385,50.58655662619698],[-118.16947569437576,50.58664777693375],[-118.16932980991967,50.586770799509644],[-118.16919445648188,50.586884396799],[-118.1691090319703,50.58696649398734],[-118.16900429818355,50.587057396315416],[-118.16884504942485,50.58717552455477],[-118.16869857709378,50.58731206339369],[-118.16853884090698,50.587453314678115],[-118.16835442958185,50.58756287698794],[-118.1682318435631,50.587613541879655],[-118.16810213880241,50.58766426428479],[-118.16786915793965,50.58775683706327],[-118.16762125422431,50.58785344431822],[-118.16742269645819,50.58793206903244],[-118.16725602760721,50.58800108678774],[-118.16695974878172,50.588089756243214],[-118.16639644521885,50.58829288693333],[-118.16591027953235,50.58856303823891],[-118.1657153221458,50.58872270511434],[-118.16552797244637,50.58885917280812],[-118.1652306082551,50.58905566902482],[-118.16503369882211,50.58916547351414],[-118.1649769376932,50.589175021611474],[-118.16460681899537,50.58922853127053],[-118.16374330485746,50.58934942426806],[-118.1630293001964,50.58942833319771],[-118.16279532976027,50.589434964939194],[-118.16276675483451,50.58943576561967],[-118.16277514118327,50.58944878697074],[-118.16279493462022,50.58949821016882],[-118.16281492400203,50.58955667718738],[-118.16283178956763,50.589633010504365],[-118.16284855600955,50.589740403909566],[-118.16286922224965,50.58986615093367],[-118.16298009968969,50.59004515863566],[-118.16321435091862,50.59024023353793],[-118.16339301797585,50.590346639176964],[-118.16344070781508,50.590368656708506],[-118.1636490340889,50.59032575449007],[-118.16405242066115,50.59025482982076],[-118.16420378466765,50.590293772062886],[-118.16408332713398,50.59047450996715],[-118.16403006304283,50.590718188724296],[-118.16417273769166,50.590959333687564],[-118.16435920936674,50.59113295127624],[-118.16450969643239,50.59124809273669],[-118.16468661498287,50.5913543721311],[-118.16484490615794,50.591424878560865],[-118.16501412396856,50.59146338139062],[-118.1652671212906,50.591510631992975],[-118.16552655620914,50.59156172637601],[-118.16570621044401,50.591591365978786],[-118.1658628471298,50.59163067796407],[-118.16604688978788,50.59169622237893],[-118.16623571283012,50.59177509309409],[-118.16645438168155,50.591876409259264],[-118.16669489939059,50.592035761554186],[-118.16695658481818,50.59222654522717],[-118.16720334770591,50.592350181488506],[-118.16737832515037,50.59240660452564],[-118.16760509434535,50.59251244910341],[-118.16798539036009,50.59274663230088],[-118.16832696743467,50.59296848031313],[-118.16844176933564,50.59304381862682],[-118.16858417675742,50.593154432574245],[-118.16893795625796,50.593438712774145],[-118.16910476345747,50.593765722279706],[-118.16893204179587,50.594072716640106],[-118.16879930601364,50.59430343495395],[-118.16888309965948,50.59446471197122],[-118.16897489572435,50.59466157050615],[-118.16887464157239,50.59495051488893],[-118.16877214477644,50.59529297365361],[-118.16877040366394,50.59556740646125],[-118.16878777755805,50.595783306362314],[-118.1688239782339,50.59600335563895],[-118.16885978428616,50.59616463338832],[-118.16886739581426,50.59622279356635],[-118.16884837955452,50.59629093261559],[-118.16881590660653,50.596466596890224],[-118.16878967964753,50.5966777186857],[-118.16883904625091,50.5968529425832],[-118.16895552207095,50.59700013881851],[-118.16902702643863,50.597089366181194],[-118.1690377587062,50.59712966889361],[-118.16904234674209,50.5971746176282],[-118.16905171690946,50.59727357667866],[-118.16905367501337,50.59739460951367],[-118.16902656124306,50.597458226824315],[-118.16899212782737,50.59747218312514],[-118.16896784141301,50.59749927521269],[-118.16893331526323,50.59758496627856],[-118.16887976833235,50.59769813022292],[-118.16881939273075,50.59777916700853],[-118.16878076605119,50.597806945873174],[-118.16874935769467,50.59783410452467],[-118.16870487884259,50.59787502844205],[-118.1686717145559,50.59790206309713],[-118.16860245929718,50.59795253617239],[-118.1684728237905,50.59804337974893],[-118.1683810368315,50.59812106860814],[-118.16834465315519,50.59816652301322],[-118.16827218092169,50.598265912996126],[-118.1681373781787,50.598447340302684],[-118.16802598461615,50.59859652474505],[-118.16796492315432,50.59869164046393],[-118.16791420228834,50.59880895358556],[-118.16787664926737,50.59892211665807],[-118.16784826746643,50.599043827263074],[-118.1678264209409,50.59917899717983],[-118.1678071091293,50.59926915184047],[-118.16777218865114,50.59933673708367],[-118.16769766369582,50.59942751243178],[-118.16761835735826,50.59950496129457],[-118.16753300432725,50.59958649351739],[-118.16745038093819,50.599672746901575],[-118.16741955735326,50.59976773789271],[-118.16741887820749,50.59989366429697],[-118.16740736970081,50.6000001878859],[-118.1673942993742,50.60006479653736],[-118.16742083652973,50.600207902309116],[-118.16749858915736,50.6004139463956],[-118.16755088068695,50.60056226017488],[-118.16756171185219,50.60064267518011],[-118.16757380999043,50.60070567141957],[-118.1676162483919,50.600849339364544],[-118.16768941868817,50.60105110045038],[-118.16772200432561,50.60114943883046],[-118.16772425058036,50.60120778035011],[-118.16774571724616,50.601369735200244],[-118.16779215787689,50.60153119366547],[-118.16783732678208,50.60159822412203],[-118.16787820377421,50.60162878719858],[-118.16796688198049,50.60169098066899],[-118.16809878006838,50.60181101887379],[-118.16818375795363,50.60198592693398],[-118.16817917803776,50.60213418350705],[-118.16815869445729,50.6022106970056],[-118.16815059956032,50.60224684111004],[-118.16813635804716,50.60228764008765],[-118.16822288926066,50.60229092937042],[-118.16841605284418,50.60236557902463],[-118.16850415733336,50.602593810242695],[-118.1684908006777,50.602792290244],[-118.16848485638826,50.60291784427053],[-118.16841393760606,50.60304898878659],[-118.1682681908518,50.603140385433],[-118.16809512632626,50.603204996528504],[-118.16788098893294,50.60322998282429],[-118.16769318740438,50.60315515070844],[-118.16755124167504,50.60314342905753],[-118.167348813016,50.603325169521284],[-118.16718560417205,50.60358762968918],[-118.16715536440664,50.60378095861225],[-118.16717956126683,50.60390695069662],[-118.16719946647152,50.60407783371893],[-118.16725351954058,50.60433812624889],[-118.16751118012475,50.60454218360583],[-118.1679109856691,50.604614475479295],[-118.16817284170092,50.604692844617155],[-118.16828650523782,50.6047952068565],[-118.16825187854278,50.60499331464177],[-118.1680784263368,50.60531437396484],[-118.16796682157114,50.60549517912567],[-118.16793238464554,50.605549800617894],[-118.16788838504685,50.60560827539873],[-118.16786643599083,50.605662648676955],[-118.16790273168974,50.605729612423715],[-118.16800273631924,50.60581859109421],[-118.16812488885729,50.60590291456198],[-118.16824128563319,50.60596931439144],[-118.16837094965616,50.606031010489026],[-118.1685493004863,50.60611930069721],[-118.16873857965722,50.60621627092314],[-118.16889975985046,50.60629092006015],[-118.1690271814587,50.60633493985171],[-118.16921275452387,50.60642260875433],[-118.16946955337492,50.60655032987718],[-118.16959561165334,50.60661233016126],[-118.16949932081599,50.606685182968775],[-118.16926936829107,50.60683108869696],[-118.16903092369039,50.606923852379985],[-118.16884613533799,50.60694357385349],[-118.1686959832049,50.606958391536466],[-118.16853119562955,50.60699591163099],[-118.16833811562415,50.607042723627806],[-118.16818767081207,50.607089725076925],[-118.16808074116783,50.60716239524178],[-118.16795917845512,50.60729843339828],[-118.16784746862679,50.60743912601881],[-118.1677062942609,50.60757546966638],[-118.16743720953598,50.60780277840364],[-118.16709270205165,50.60808521273778],[-118.16682195297912,50.60828132751916],[-118.1666293530725,50.60838636244288],[-118.16642377482172,50.60851477689177],[-118.1662885437471,50.60863742020862],[-118.16621722089116,50.60875044841412],[-118.16607125557702,50.60891413785704],[-118.1658672337453,50.609104802888915],[-118.16573356063795,50.609218516924734],[-118.16568116463941,50.60930463522898],[-118.16561735109097,50.60943571053132],[-118.16552290008106,50.60954880449205],[-118.16538005323882,50.60965396147168],[-118.16523730253405,50.60975856468745],[-118.16517778249687,50.60980407472136],[-118.16516373188972,50.60981325110506],[-118.1650972846112,50.609867871084596],[-118.16497609655636,50.60998133623494],[-118.16484495562635,50.61009070886452],[-118.16466004979513,50.61022284029226],[-118.16441708602382,50.61039210606506],[-118.1642130539932,50.61054208446331],[-118.1640403445239,50.610624793728874],[-118.16375259418014,50.610704466361554],[-118.16340717434863,50.61082920883436],[-118.16316859746128,50.61095301882537],[-118.16304027788082,50.61106654798425],[-118.16297528426891,50.611183980686675],[-118.16292346406848,50.611297255044356],[-118.16285691109307,50.611382941805324],[-118.16282997777022,50.611414934757434],[-118.16284539362968,50.61142845200926],[-118.16286226744711,50.61150478330792],[-118.16286507935594,50.6117428103013],[-118.16291891584919,50.612075398549344],[-118.16308712174452,50.61230308027095],[-118.1632984658869,50.6124264731251],[-118.16345829204933,50.6125191105302],[-118.16355781697068,50.612590541021845],[-118.16365314534572,50.612665633981166],[-118.16376262365064,50.612741156744185],[-118.16388176361757,50.61281227290405],[-118.16406481402026,50.61294496409996],[-118.16426640381981,50.61311398930241],[-118.16437022365811,50.613211708524965],[-118.16445355375053,50.613274085373966],[-118.16468266418258,50.61343827396609],[-118.16499305846354,50.6136460558989],[-118.16521836916459,50.61376082215749],[-118.16541616330298,50.613799084546535],[-118.16562039943058,50.613851350447575],[-118.16575213243911,50.613921663017855],[-118.16585546888518,50.61400183828784],[-118.16599783949255,50.614113006313126],[-118.16623115497968,50.61430404345508],[-118.16652175409543,50.61454374810301],[-118.16669545157562,50.614699499922644],[-118.16676297932948,50.61477092745136],[-118.16681235670511,50.614824126052625],[-118.16686427130693,50.61487298439064],[-118.16692252975402,50.61492624043606],[-118.16699522921087,50.61498843376179],[-118.16716395367503,50.615121797168555],[-118.16737688429299,50.61527692750018],[-118.16753546032302,50.61539715463889],[-118.16767988823939,50.615516943214736],[-118.16781690022493,50.61562829924945],[-118.16791048717982,50.615703255379316],[-118.1680049521169,50.61578336213852],[-118.16812927930441,50.615885913489166],[-118.16825448433661,50.61598344688206],[-118.16833138369853,50.61603180801867],[-118.16836758987347,50.61605865027749],[-118.16845796027178,50.616192699426385],[-118.1686080596656,50.616442817152894],[-118.16869306351644,50.616577056630405],[-118.16869862719365,50.616585918495325],[-118.16888843261313,50.616588584971076],[-118.16930551831541,50.61659316300692],[-118.16965595130901,50.61657212971527],[-118.16996315340214,50.61656443185582],[-118.17027474912027,50.61659263726228],[-118.17052964612888,50.61659932438218],[-118.1708226006165,50.61659174869009],[-118.17111468553793,50.616660369622245],[-118.17136159841334,50.61682466705917],[-118.17155698684672,50.61698871831301],[-118.17165019002279,50.617055743731726],[-118.17171401491116,50.61707719375547],[-118.17187260049603,50.61711605750506],[-118.17214224314068,50.61718084154394],[-118.17243131706711,50.617317604959794],[-118.17266116483567,50.61750837114977],[-118.17285109610143,50.61767316434402],[-118.17299612902853,50.61777942900735],[-118.17311675722138,50.61783200033476],[-118.17324840910568,50.61786219222391],[-118.1733111625748,50.61787960671789],[-118.17331965557324,50.61790224175348],[-118.17336807385686,50.61799152306061],[-118.17344059852957,50.61808532456566],[-118.1734957473109,50.618156442957314],[-118.1735792040166,50.61825892407261],[-118.17363260971098,50.618411266397565],[-118.17357789112397,50.61859212814753],[-118.17352287557613,50.61875433142645],[-118.17353206347333,50.61884423511056],[-118.17355832982787,50.618938172339426],[-118.17357913282127,50.61903284501173],[-118.17358382435258,50.61907723880505],[-118.1735842176234,50.61909534363401],[-118.17358080262005,50.61910471076092],[-118.17357748589806,50.61911351539061],[-118.17357846907014,50.619158777460456],[-118.17358492381737,50.619243969051794],[-118.17358854199219,50.61928432824968],[-118.17359040192675,50.61932457248196],[-118.17360164822587,50.61946376380663],[-118.17373031670489,50.61971461907381],[-118.17398020496246,50.62000452770919],[-118.17416725486382,50.62034875457895],[-118.1742682308393,50.62070724776929],[-118.1744030462792,50.620912781875546],[-118.17456721893744,50.62100118589895],[-118.17466999833557,50.62105418620824],[-118.1747181200009,50.62109430287674],[-118.17476390349384,50.621147803369276],[-118.17483408715339,50.62121433149938],[-118.17494028842594,50.62129864714536],[-118.175060731388,50.62134216375828],[-118.17524021717918,50.62136328809743],[-118.17545728518314,50.62142378530238],[-118.17565395614353,50.62148906245649],[-118.1758540359609,50.6215144667399],[-118.17608036442452,50.621511776672286],[-118.17626980564634,50.62153699959062],[-118.17639708045081,50.62157195776165],[-118.17653617555438,50.621651242201466],[-118.17668182182915,50.62178465869949],[-118.17676821269366,50.621860236457536],[-118.17682785411473,50.621895505960886],[-118.17689833041796,50.621940017276614],[-118.17693991354717,50.62196667450802],[-118.17695894755083,50.62197988374326],[-118.17697241714762,50.621984222652735],[-118.1769995536846,50.622001952843426],[-118.17715426261329,50.62206313019128],[-118.17746358193314,50.62218605565587],[-118.17764885211147,50.62229627784951],[-118.17770753815489,50.6224083062808],[-118.1777511834738,50.62248425957593],[-118.17778681829853,50.62252461520723],[-118.17795442676629,50.622644329527176],[-118.17823821581743,50.62289311185344],[-118.17839003971712,50.623103226980895],[-118.1784635904212,50.62331346544498],[-118.17857902446886,50.623569027588864],[-118.17865549597803,50.62375236529822],[-118.17870180120352,50.623904762511174],[-118.1787282917381,50.62404841505083],[-118.17873458160817,50.62420590083387],[-118.1787448773829,50.62438118533338],[-118.17878736414518,50.624484162344665],[-118.17891222076639,50.62456357806117],[-118.17905328422752,50.624652035226],[-118.17918263296124,50.62473628630789],[-118.17928705260094,50.62501422698148],[-118.17927907187325,50.625436779201465],[-118.17924066934292,50.625626139114985],[-118.1792444792694,50.625634876554834],[-118.17928744021168,50.62568422552507],[-118.17936418194812,50.625764199744076],[-118.17941153328225,50.62580877842438],[-118.1794340851105,50.62582222584598],[-118.17945234192324,50.62583989886007],[-118.17946327640468,50.625848577915654],[-118.1795123864446,50.62589327141846],[-118.17958180499053,50.62596426044482],[-118.17969154031482,50.626048818674654],[-118.17984735312379,50.626154700052744],[-118.17993785477924,50.626216997020464],[-118.17995786892445,50.626234793734376],[-118.17996978106284,50.62624806079413],[-118.17997534815876,50.626256921992905],[-118.17998442764882,50.626266039700276],[-118.18000795734574,50.62628407505593],[-118.18011398231036,50.62635933293364],[-118.18029664149716,50.62647445314949],[-118.18044631011465,50.62658498011743],[-118.1805903268427,50.626727881750746],[-118.18072146569585,50.62688342438276],[-118.1807625970142,50.62700439011348],[-118.18076068093244,50.62711723460766],[-118.18076910556026,50.62721160105949],[-118.18076678023246,50.627265667383064],[-118.18075089643943,50.62734645398582],[-118.18068321684979,50.62754052991065],[-118.18060123557642,50.62788781966794],[-118.1805578243982,50.628279059444985],[-118.1804756570602,50.628657961027244],[-118.18036818730256,50.62897802994377],[-118.18029259749517,50.62917663686705],[-118.18021417570293,50.629371085434414],[-118.18015322138461,50.62954698863669],[-118.18014875454365,50.62962349983647],[-118.18017707251063,50.62965486941652],[-118.18018996318006,50.62967272443551],[-118.18024112991563,50.62972603991879],[-118.18036270013114,50.62985493161935],[-118.18042580594714,50.63000286073928],[-118.18037870741696,50.63016053356568],[-118.18032877561029,50.63031405702117],[-118.18034472123969,50.63042646927182],[-118.1803745117724,50.63047996886535],[-118.18038281265237,50.630493550741626],[-118.18038662321321,50.630502288091385],[-118.18043437668,50.63056497063936],[-118.1805056976137,50.63075754003486],[-118.18051465514958,50.630991468168325],[-118.18047466847406,50.63110840907563],[-118.18045056732198,50.631144563770405],[-118.18044100511707,50.63115857743633],[-118.1804376888493,50.631167382142806],[-118.18043437258021,50.63117618684914],[-118.18061577974956,50.631278219147184],[-118.181020967117,50.631494305648786],[-118.18128059105841,50.63165776603179],[-118.18142727517461,50.631836436038036],[-118.18161655756359,50.6321175272359],[-118.1816617191837,50.632296954696564],[-118.18158179777097,50.63238792694137],[-118.1814885284164,50.63255534484273],[-118.18145201183843,50.6328256116718],[-118.18147408749698,50.63315763328222],[-118.18148239505648,50.63347681777481],[-118.1814688018155,50.633697298189205],[-118.1814582024771,50.6338191287671],[-118.1814675332868,50.6339898229916],[-118.18147455455131,50.63425524731886],[-118.1814443692346,50.634489246159625],[-118.1813917011616,50.63463805752999],[-118.1813275009332,50.634751033378954],[-118.1812159763979,50.63494146013772],[-118.18109060540796,50.635180613003236],[-118.18104221631125,50.635284534274255],[-118.18106633093981,50.63528906168811],[-118.18118280950719,50.63531477252424],[-118.18136919363188,50.63535784326464],[-118.18151691484074,50.63538801366567],[-118.18185001540499,50.63537531956549],[-118.18246934878702,50.63533307068845],[-118.18287781186795,50.63530647422299],[-118.18296079639107,50.63531005800515],[-118.18297163565235,50.635319299112076],[-118.18304018313044,50.63535462986369],[-118.18342195415721,50.635480931618815],[-118.18409917329258,50.6356675751101],[-118.18469046134568,50.635796195024575],[-118.18512259458261,50.63586841713984],[-118.18546879133315,50.63588261875893],[-118.18581567079231,50.635892908613734],[-118.18616050906354,50.635925088807184],[-118.18639451712976,50.63590936506315],[-118.18656289224141,50.63583139411878],[-118.18669329479025,50.63576713667828],[-118.18680572921657,50.63569370612473],[-118.18694851052288,50.635589087463146],[-118.18716539298325,50.63548798444154],[-118.18739245288462,50.63544069655468],[-118.18754093817701,50.63542572158015],[-118.18765223088093,50.63541999623301],[-118.18780478910269,50.63535108756376],[-118.18797020471153,50.63521867749364],[-118.18805227325304,50.63514593799617],[-118.18807852702807,50.635128009921715],[-118.18813727855311,50.63508695331635],[-118.18819788388907,50.63504546676702],[-118.1882216013627,50.635031879275274],[-118.18823897016924,50.635013895364],[-118.18823064475046,50.634959649933236],[-118.18819377957124,50.63483447115332],[-118.1882078755534,50.634712887402486],[-118.19497836954802,50.634610664690655],[-118.19793150607117,50.63677385095076],[-118.19946277660264,50.639339211440884],[-118.19981811032031,50.64424352786961],[-118.19981491344485,50.648346501105415],[-118.20134051475421,50.64988501455488],[-118.20313857687081,50.652230041377706],[-118.20430600287118,50.65598978910204],[-118.19999141034795,50.658443954758575],[-118.1947864592968,50.65889738216472],[-118.18956744863263,50.659756859294106],[-118.18829895677737,50.65992692914536],[-118.18281948119693,50.66186816069758],[-118.17318913976605,50.664659521098834],[-118.17299898710337,50.67030562174247],[-118.17642439475532,50.67173084850008],[-118.18315977372865,50.67247377837427],[-118.1893624274723,50.67333192048067],[-118.19548300532543,50.67457989255915],[-118.20096341830832,50.67623332299749],[-118.20628022372156,50.67817377466511],[-118.20707775158422,50.67874709705371],[-118.20959244388057,50.68222035964616],[-118.20923347483696,50.68558984892912],[-118.20679898490489,50.68974975534502],[-118.2031156784683,50.69493984869652],[-118.20166527095351,50.698190400618024],[-118.2020250029142,50.705034240910024],[-118.20219965354994,50.706402630039435],[-118.20381456900235,50.71267128552613],[-118.20480924690308,50.71906526013593],[-118.20587443228438,50.72522009087455],[-118.2058809260394,50.72681782506633],[-118.20444074735607,50.72984144360751],[-118.20290630835626,50.73389429656282],[-118.20515781130551,50.736684590962575],[-118.20929044039909,50.73834135889047],[-118.21064386412404,50.73867783103703],[-118.21630936662079,50.74021680604928],[-118.22325127487865,50.74278331836022],[-118.22748222135199,50.74552096041582],[-118.23090961989217,50.74837005939072],[-118.23216168466378,50.75281858722905],[-118.23126705724728,50.75418841313003],[-118.22946431739983,50.756922589017],[-118.22910450923672,50.75989187049642],[-118.2293702504637,50.76131668191023],[-118.23108536681745,50.76285956223272],[-118.23431783251324,50.764622871692865],[-118.23900272280034,50.76616030913862],[-118.24342043362002,50.768497801219404],[-118.24549650215668,50.77100696612163],[-118.24703223415065,50.77465593937416],[-118.24767000625843,50.775760910251904],[-118.25270744378177,50.7814746476584],[-118.25709335858691,50.78321566980083],[-118.25761742076048,50.792754109692005],[-118.26098815923572,50.79403636715028],[-118.25465028601057,50.79747622500087],[-118.25966631401232,50.79832166473041],[-118.25975535139132,50.79999996882443],[-118.26000859369165,50.80475491080064],[-118.26464673436396,50.80794896161951],[-118.26613975623381,50.81126288210923],[-118.26596753624354,50.81143219882367],[-118.2628089181168,50.814569615065004],[-118.25973611470141,50.8190207655612],[-118.26064811009263,50.822903688541814],[-118.26451948055497,50.82398038434548],[-118.26668641280689,50.82392738571552],[-118.27055962077037,50.82392316219116],[-118.27408422650291,50.82551812522704],[-118.27327766241369,50.829512151549444],[-118.27255232412662,50.830481154598274],[-118.27011183419981,50.833675853696995],[-118.26822014146482,50.83823668958119],[-118.26994213492175,50.843142790440965],[-118.27345374008036,50.846222948213985],[-118.27579944248077,50.84695906379913],[-118.28167610755769,50.84769774973909],[-118.28510690913284,50.84935174635465],[-118.2854703481116,50.8499776694187],[-118.28709481986769,50.85248692192191],[-118.28980382924232,50.857158019000025],[-118.29143501553222,50.8608708816564],[-118.29242650942585,50.86497598226044],[-118.29161789211051,50.86948301615357],[-118.28900416893455,50.87284789042597],[-118.28394392503274,50.87604650408137],[-118.27988586819255,50.87758640960698],[-118.274547531442,50.87941198144368],[-118.27238091348175,50.880272216079824],[-118.26985399707216,50.8823830234185],[-118.26543126572913,50.88552116567786],[-118.25910356485731,50.88660788602126],[-118.25332102690213,50.88678005620513],[-118.25160355746236,50.889576828783625],[-118.25322746494584,50.890771364947646],[-118.25557966954908,50.89139976420575],[-118.26189317007065,50.89328058827083],[-118.26895397002826,50.894816928961745],[-118.2752755319454,50.895667011208474],[-118.27680752869118,50.89401410401916],[-118.27925351860152,50.89195909214067],[-118.28403489586533,50.88939123340037],[-118.29063762307699,50.88778796982641],[-118.29668312919661,50.88749989225209],[-118.2971413229191,50.88749817668488],[-118.30047516510712,50.88749938824301],[-118.30209849720381,50.88771065854389],[-118.30535179910544,50.885611436053466],[-118.30951285171837,50.885378596989],[-118.31168730655239,50.88538094908215],[-118.31340072389605,50.88531877264689],[-118.31692405635448,50.885547098551065],[-118.32025606599615,50.88331797569517],[-118.32576490021653,50.88240202429775],[-118.3342600399615,50.88325139279758],[-118.33904617246215,50.88495344902819],[-118.34348377581733,50.885522547237976],[-118.34980589527422,50.88511680192549],[-118.35376939462067,50.883115233294475],[-118.35521871028565,50.88317323144917],[-118.36245305300953,50.88578645150227],[-118.3672445296476,50.88754742514167],[-118.37392419109888,50.887141596961655],[-118.38187533183503,50.88490603040607],[-118.38422562126497,50.88404616724699],[-118.3865695778383,50.88347375721372],[-118.39297742195582,50.88289476036476],[-118.39938892411664,50.882879635082745],[-118.40689418289517,50.88349683390168],[-118.41612085256905,50.88593470020635],[-118.42398204665032,50.889171621142516],[-118.42923301333376,50.890936631896935],[-118.43547646146921,50.89486230641884],[-118.43965312295416,50.8995887178093],[-118.44154973665431,50.90089173227059],[-118.44788617073134,50.902596473155675],[-118.45394662418003,50.902639544854885],[-118.45855615447007,50.9026306741288],[-118.46469757191288,50.90261766528539],[-118.47544341744656,50.90254022428636],[-118.48330727090394,50.902749419733816],[-118.48611692140486,50.90365296773257],[-118.49563507126781,50.908140320048574],[-118.50379408889161,50.91348438303628],[-118.50750479027546,50.91609811101052],[-118.5105813239506,50.917294268023475],[-118.51792972221388,50.92041255291857],[-118.5249069301072,50.92387118619771],[-118.53097297753898,50.92602620694713],[-118.53342128072767,50.92704873183857],[-118.53730721110048,50.9277805443668],[-118.53767631522766,50.927852585996575],[-118.53102513776413,50.9316313282183],[-118.53584130791567,50.93631448559261],[-118.54208329673779,50.939279631543094],[-118.54480560658577,50.93717819805167],[-118.54931190048151,50.936381899744944],[-118.55945562469016,50.94045691268998],[-118.56152003126654,50.93744675253212],[-118.56636582856476,50.93901840942456],[-118.57177116863457,50.93804563021919],[-118.57829103272843,50.939348660146905],[-118.57793587567457,50.93648923539032],[-118.5834508481028,50.9364114863281],[-118.58830854801721,50.925465744345956],[-118.59375446475404,50.92571878346785],[-118.59354813075991,50.92453974712603],[-118.596432410048,50.92555130995347],[-118.59977394656765,50.92491187529277],[-118.60617884608966,50.9235821777848],[-118.61168161695016,50.92207965614384],[-118.6134841413061,50.921050896592625],[-118.61364100634935,50.91648451651555],[-118.61288769451512,50.912487213574416],[-118.61305705420808,50.91112197953593],[-118.61272319159204,50.90313254369413],[-118.61367928059323,50.89650824214517],[-118.61588558120829,50.89045074597415],[-118.62072017072602,50.88518537123781],[-118.62746206935647,50.88065748257115],[-118.635568514957,50.87668876513266],[-118.64042279455549,50.87370338390908],[-118.64167338186516,50.87227786751302],[-118.6409141671169,50.86856526797239],[-118.63853238161775,50.86463788989651],[-118.63506673816522,50.85922805429545],[-118.63323097575613,50.856326357651874],[-118.63184661197768,50.85233810382926],[-118.6319242991559,50.850225747534196],[-118.63886698518891,50.84946082331593],[-118.6464580995627,50.85091321735707],[-118.64971974813473,50.85193165603626],[-118.65205960433018,50.85117427350607],[-118.6588042701965,50.847444729562305],[-118.66364298199531,50.84400323184011],[-118.66831589652114,50.84113080825014],[-118.66416761254308,50.83195907236518],[-118.66214644438021,50.827402237402836],[-118.66389876303349,50.82083045514597],[-118.6695494843171,50.81772777507126],[-118.67333218020318,50.816170379330806],[-118.68250859800757,50.814195960729876],[-118.68494021419325,50.81373355630922],[-118.69413338813152,50.81260867347277],[-118.70494810962244,50.81256428340692],[-118.70748262836831,50.81260531379181],[-118.71626215486968,50.81610608658737],[-118.72011535328717,50.823115786502335],[-118.72021567429121,50.824250945030656],[-118.72437509267836,50.8247519413574],[-118.73592446539155,50.82520935113393],[-118.7404395109337,50.825193425669305],[-118.74918495949036,50.8249794406734],[-118.75775263800182,50.824539952245324],[-118.76163937129516,50.82549073981192],[-118.76878172038951,50.82688376558429],[-118.77500949053427,50.826343750812455],[-118.77607224217344,50.825545858898614],[-118.78121695684725,50.82617053929654],[-118.78197270591411,50.8201328060924],[-118.78499084029757,50.81522093797787],[-118.78615560940636,50.813369889482416],[-118.7869060326564,50.8134962850453],[-118.79571762930155,50.81049965091788],[-118.80000331765802,50.80862037991776],[-118.80263569886165,50.807465419964664],[-118.81205189479232,50.80113188716468],[-118.81504771948849,50.800007999001714],[-118.83481617078955,50.79259188613031],[-118.82943496420455,50.777828422720155],[-118.8232484056665,50.7804907419405],[-118.8241539715404,50.779859530504666],[-118.8261144685908,50.77751149893787],[-118.82698367120807,50.775563225691265],[-118.82819263700222,50.77087705136117],[-118.82950526902592,50.76767531175935],[-118.83397917648546,50.76565363663553],[-118.83973916768116,50.764767903396866],[-118.84669087206008,50.76569852137634],[-118.85011677105695,50.76647642442869],[-118.85261996176179,50.765090444087456],[-118.85733434297227,50.760218142190844],[-118.86676007270628,50.757080035537655],[-118.87440660757434,50.75606175183105],[-118.8766514928819,50.7561082659423],[-118.8811926577037,50.752031464600655],[-118.88476131064837,50.74904453410547],[-118.88813435859132,50.7487166050563],[-118.89114432510574,50.74843084587795],[-118.89882796636238,50.75021411841745],[-118.90170610895534,50.75030954115281],[-118.90692280081079,50.75587536227107],[-118.90799143331084,50.7618053920072],[-118.90809309769132,50.76197322223958],[-118.91322061661494,50.767934562465754],[-118.91866723636646,50.77144189495369],[-118.92175299689127,50.77239503756043],[-118.92791384587503,50.774641120699016],[-118.93170734825324,50.77599033167264],[-118.9351514443431,50.77693531915369],[-118.94022874323143,50.7791869903761],[-118.94505636972052,50.782299843898315],[-118.94984013601625,50.78289412958713],[-118.953249538553,50.78144319974018],[-118.95574631598241,50.77971900948963],[-118.96166079221875,50.778023889570086],[-118.97037504802725,50.77556973452633],[-118.97109069316176,50.77528089589953],[-118.97942711832751,50.77213885859585],[-118.98605370015193,50.76952725351104],[-118.99008296682283,50.768471979730364],[-118.99824631828385,50.76596144776577],[-119.00157742725004,50.765536612173484],[-119.00986339752183,50.76587837638342],[-119.0147328376099,50.7656427150954],[-119.01661482321981,50.765549683184915],[-119.02606773108492,50.764625312648704],[-119.03435096917536,50.76434289231883],[-119.05388879234745,50.76345718967964],[-119.06190258500366,50.7633449264369],[-119.07182788851726,50.76349759551051],[-119.08292124564802,50.76466723614769],[-119.08789116160571,50.7649733199031],[-119.09138992329983,50.764838287023785],[-119.10488147803801,50.76358682450443],[-119.1113740021008,50.763538208840885],[-119.124257475763,50.76326607249518],[-119.13304596683727,50.76153773617661],[-119.1401456374967,50.760686756096504],[-119.13912623188205,50.75869394935693],[-119.13558966303408,50.753235868600164],[-119.13481704878053,50.75010249896918],[-119.13626742868915,50.74603895663274],[-119.13785143490118,50.74351607732078],[-119.13774112103572,50.74265703488418],[-119.13399994293246,50.74011737393014],[-119.1323234934659,50.73693553636536],[-119.13214359219353,50.732821090980735],[-119.13280244816767,50.72899467674779],[-119.135785951693,50.72514461696127],[-119.13940475358152,50.72123379899377],[-119.14188365037617,50.71955339094582],[-119.14306540318665,50.715373895377766],[-119.14634171786804,50.70792782227211],[-119.14946577920598,50.70156202547374],[-119.15276521347228,50.69525318207605],[-119.15793886296774,50.6888705722878],[-119.16156409370781,50.68581635243614],[-119.16655572110992,50.68303380670401],[-119.17904785306088,50.678073787999644],[-119.19215209166656,50.67224866717154],[-119.19874526265637,50.66985277133371],[-119.20121990787975,50.66760358287517],[-119.20776577583739,50.661948210226015],[-119.21304016101752,50.656416268151034],[-119.21781045776521,50.65260917172248],[-119.22341806422696,50.65021505844743],[-119.22718534068417,50.649554061606004],[-119.23023926812188,50.64975643402036],[-119.23603837274877,50.651359283436776],[-119.24217465586234,50.65261400792449],[-119.25176090645462,50.65144564449735],[-119.25964049485745,50.64971280265216],[-119.26643618480553,50.648283765325665],[-119.26964809479301,50.647055324965116],[-119.27139758155192,50.64515343724901],[-119.27472064681979,50.640435439684566],[-119.2772333261766,50.63647371726661],[-119.2817457962043,50.633575293582204],[-119.28559301170226,50.63274300313571],[-119.29196230296878,50.63205045258578],[-119.29248332380472,50.631701778948425],[-119.29140600616877,50.627318317510316],[-119.2905553622708,50.621611284628685],[-119.2908849709554,50.61618077659323],[-119.29183396422961,50.61069120794484],[-119.29396883426753,50.606100604086535],[-119.29834726332747,50.600744671991],[-119.30217792615153,50.59591279388882],[-119.30464030243783,50.59320577999384],[-119.30543689298864,50.59319459978863],[-119.30141135274457,50.58992253665215],[-119.2940653192991,50.58256539065699],[-119.28979314026857,50.57620846648669],[-119.28969835036895,50.57181181235336],[-119.28947529036289,50.56210381210546],[-119.29018580934029,50.55421647697314],[-119.2911147476911,50.547808235019836],[-119.29260623161001,50.54579739564898],[-119.29599379484667,50.53754162128345],[-119.29890109089126,50.53116713429903],[-119.30077808158633,50.52732491774934],[-119.30217517402303,50.525369188264655],[-119.3052015276749,50.52094318195947],[-119.30805750302653,50.51651528278263],[-119.30919279590064,50.51479072302284],[-119.31058909029264,50.51312082346434],[-119.31141455683635,50.51042992856597],[-119.3107596399646,50.50540417196044],[-119.30968339519268,50.5010213420848],[-119.30703356412201,50.495506644010575],[-119.30694310397998,50.49516273985227],[-119.30054243225315,50.481745704404126],[-119.2981616208691,50.47605558499065],[-119.29625446197423,50.47070596686396],[-119.29542471101949,50.46591847773099],[-119.29693150411926,50.461504310651705],[-119.30289341709117,50.455965925970965],[-119.3272566445986,50.44149547892236],[-119.34687596945334,50.43136112148791],[-119.34958633335991,50.42986347098634],[-119.36522704427796,50.42122995803372],[-119.37140201712337,50.42145021810411],[-119.37976843826306,50.423019151235096],[-119.3860557232339,50.42392046826092],[-119.39021549519612,50.42216846909383],[-119.39663158863226,50.41775338459049],[-119.3974210263458,50.41728667801739],[-119.40721137607301,50.411925207639506],[-119.42062501396124,50.40835290879484],[-119.42623427238743,50.407205416285684],[-119.42742962418369,50.40530856889121],[-119.42441229127918,50.39905835556958],[-119.42207001716524,50.395256640019724],[-119.430427324653,50.39676615922214],[-119.44148079411049,50.402184133513224],[-119.44654059240685,50.41063827950843],[-119.44710530878352,50.41200396042388],[-119.45055341160308,50.417165363631845],[-119.46125600375642,50.41949692710677],[-119.46922438164422,50.419922651029246],[-119.47839160546413,50.421247556868316],[-119.48902999130951,50.42129796740224],[-119.50617868307552,50.4235542241526],[-119.523544312955,50.42706451023621],[-119.52571767904878,50.4277810586715],[-119.52992789644597,50.4279016379467],[-119.53829047296392,50.429630537910974],[-119.54235978820924,50.43438470376958],[-119.54511917373992,50.43703546974259],[-119.54945912762994,50.43852695001423],[-119.55651644923707,50.44415775860459],[-119.56052362499345,50.44976393862401],[-119.56427838525067,50.45268907222034],[-119.56773464064626,50.45750887709558],[-119.57449904278792,50.46245174579986],[-119.57678315841599,50.46419361874836],[-119.58038652044672,50.46472289199496],[-119.58199798227521,50.46493247393417],[-119.58354335237885,50.46262780166283],[-119.58437885065851,50.45775802969308],[-119.5874299969184,50.45481089758469],[-119.59244533512246,50.45177554598287],[-119.60182385907501,50.447891056799534],[-119.60509834792622,50.44664467120368],[-119.60846845005898,50.445520437281566],[-119.61609370230926,50.44330978935385],[-119.62554374483659,50.44198867573527],[-119.63196886255894,50.4414541490495],[-119.64668526951108,50.436974970153045],[-119.65228365360868,50.43547615320797],[-119.6560749142435,50.433654701824686],[-119.66516282784211,50.42965447268143],[-119.67060542224011,50.426435180145646],[-119.67285483476189,50.424006255259634],[-119.6794589510338,50.41763571601773],[-119.68825912339689,50.41020105473179],[-119.6919834996987,50.4066093079145],[-119.68994746162312,50.40692223345828],[-119.67962643357676,50.40888309116496],[-119.6673370319992,50.410363268519085],[-119.65001944511292,50.41161667790066],[-119.6400084108209,50.411857879873075],[-119.63727900461978,50.4040630995732],[-119.63702119538468,50.39898230607723],[-119.63825756479793,50.39222249646679],[-119.64036976140072,50.388363520330984],[-119.6404378921185,50.387680058565614],[-119.63824416966912,50.383305969863116],[-119.63487793172709,50.37843738560622],[-119.6338433427797,50.37656257737838],[-119.63578924181655,50.37327938711817],[-119.64031883171612,50.37219810869413],[-119.64447517949829,50.37065759731012],[-119.6461472262959,50.36720625960506],[-119.64544752766469,50.36475644044164],[-119.64448950826916,50.36253761569567],[-119.6465975794455,50.36120062006124],[-119.653537251049,50.36053603865507],[-119.65833401320273,50.35944915425455],[-119.66098377057963,50.358271012270684],[-119.66259599661319,50.355735755621154],[-119.66407403145624,50.35154111442029],[-119.66641131631356,50.34916582244964],[-119.6682154581972,50.34696799395395],[-119.66875959449337,50.34439621527481],[-119.66563354915517,50.341232723733846],[-119.66430729616734,50.33902053169143],[-119.66427601526338,50.335020593857244],[-119.67166232638093,50.331439375349035],[-119.68231813593853,50.329583807009435],[-119.6834768649339,50.32956891952731],[-119.69088495298158,50.32672197742989],[-119.69717178550194,50.32492932979621],[-119.70396515705114,50.32283761989152],[-119.71380324422111,50.3202440237407],[-119.71953535337387,50.31816709978184],[-119.71804062651744,50.316240360278634],[-119.71096473677848,50.315309505990825],[-119.70464417509818,50.313108516524686],[-119.70234391918171,50.31079607220129],[-119.70149432569023,50.3096084858812],[-119.6995851287166,50.30843707464118],[-119.694379994416,50.30764853813271],[-119.68814689545599,50.30796259748977],[-119.68457564390353,50.307892434247734],[-119.68127341494909,50.30519276619394],[-119.68367322573329,50.29921951560623],[-119.68712277892598,50.29551407619095],[-119.68767466678379,50.29327810928891],[-119.68980304746214,50.29004623685998],[-119.69463435241005,50.287639980058444],[-119.69913568934446,50.28335090870773],[-119.7039445652532,50.277454004680806],[-119.70797509634808,50.272484706364516],[-119.71040782501179,50.270794155766445],[-119.71561086235201,50.26609452701013],[-119.72114743079388,50.263448334759936],[-119.73213829128868,50.261580853228246],[-119.7367667289902,50.26151521781483],[-119.7386447519753,50.261377759728724],[-119.74768246640845,50.25987599718243],[-119.75345394472234,50.25642567270231],[-119.7538312343109,50.249103253111414],[-119.75744842375025,50.242478146598174],[-119.75956458557822,50.2390758307873],[-119.7604183704509,50.23808997457914],[-119.76033080361245,50.23300749627709],[-119.75697171305312,50.22848394992912],[-119.75234104450256,50.22563402960143],[-119.74757977461572,50.221695952925835],[-119.74467337176186,50.217678601327876],[-119.74145400003194,50.21155220236246],[-119.7381614245568,50.20657192446624],[-119.73931660671055,50.20381165410423],[-119.74971141411105,50.20309408898796],[-119.76159600253435,50.20166598664557],[-119.76805395051359,50.200319175511524],[-119.77124840925279,50.20010018176041],[-119.77483837133421,50.20078941341987],[-119.77919339968547,50.20307708392519],[-119.78723688559015,50.204214880285846],[-119.79400872148517,50.20406288287047],[-119.7982727739882,50.203941748716524],[-119.80259923864966,50.202850093866026],[-119.80426576639954,50.199508564338274],[-119.80675175606206,50.19644546204274],[-119.8102229710972,50.19399036875884],[-119.81322956045959,50.19091920369979],[-119.81645980069733,50.1889878036132],[-119.82244388047981,50.18706660185834],[-119.82674581356345,50.18551878037225],[-119.82781716878522,50.18281348116748],[-119.82511662022564,50.18199933863206],[-119.82449700564484,50.18200741614931],[-119.82045894078459,50.181209425771456],[-119.81597167071737,50.18030481455093],[-119.81105737948435,50.17717556209179],[-119.80836402085403,50.173843435391376],[-119.80457332317015,50.16692310078923],[-119.80222543672049,50.161071313734496],[-119.79900087906105,50.155059420790735],[-119.7958655339355,50.15179038199871],[-119.79116523045407,50.149797606252385],[-119.78417663867775,50.14841233550573],[-119.78051424847318,50.147666023586126],[-119.77622953106734,50.142242284275355],[-119.77620267720673,50.13875256314793],[-119.7760977551072,50.133272630169316],[-119.77652374395308,50.1300645754515],[-119.77677468864779,50.12680146612684],[-119.77755524202861,50.126331320915725],[-119.7757331695787,50.12241779985542],[-119.77284796243647,50.12113928074746],[-119.76928835280076,50.12119518242395],[-119.76602764440992,50.12203892176791],[-119.76409611634399,50.122813085325994],[-119.76214098646322,50.12283913356041],[-119.75838303803819,50.122089881478566],[-119.75554251823951,50.12202039028501],[-119.74988830993182,50.12301184944333],[-119.74600293248609,50.12369765433551],[-119.74492146878717,50.123598289378414],[-119.7384485914291,50.11871514044642],[-119.73649066491798,50.1133705079749],[-119.73709302821021,50.107478635890814],[-119.7377730749997,50.106211686892046],[-119.73985711651117,50.10229432093311],[-119.7400312995121,50.09960592444697],[-119.74180377951753,50.09672380570182],[-119.7411489068289,50.09312684272463],[-119.74293600342847,50.090645430820956],[-119.74663255142548,50.089680624459575],[-119.75392778438034,50.087234649289115],[-119.75871664354246,50.08464629316453],[-119.75957878219243,50.08378271341169],[-119.7584531698271,50.081969640167],[-119.75202955614384,50.08114670866496],[-119.74479836446348,50.07987406543912],[-119.74150015633822,50.0772403151021],[-119.74510622976871,50.073359389190706],[-119.75358850087014,50.069401295328184],[-119.75944133961188,50.06640367983204],[-119.76218659995037,50.06356641991337],[-119.76216997266131,50.06327894009455],[-119.75727768721573,50.06020748075353],[-119.75685494992983,50.055527736956854],[-119.7587046509392,50.052470921290535],[-119.75857875803906,50.049099726470246],[-119.76059271309634,50.045353918423274],[-119.77268567983111,50.0411791942993],[-119.77966270337328,50.039761238002036],[-119.78123978853039,50.039398898451054],[-119.78629687541878,50.03920785471873],[-119.79184332133947,50.03810065202606],[-119.79790696141565,50.03617863826212],[-119.80208465472128,50.0340053178664],[-119.80544402138734,50.031150511390905],[-119.8034367018772,50.02706452998201],[-119.79968413128485,50.02386344475199],[-119.79761317668182,50.02035294637247],[-119.79707261740691,50.01989988284573],[-119.79355596069847,50.01846776467675],[-119.78657467082616,50.0164578292464],[-119.77961148880377,50.01524151803197],[-119.774439320157,50.0143476269336],[-119.77318305782418,50.01390677501852],[-119.77128596635892,50.01067848617545],[-119.7743644508044,50.00732006889899],[-119.77906251502753,50.00450538453772],[-119.78503431655525,50.00281760075216],[-119.79447277039475,50.0014771215047],[-119.80208835037455,50.00107681777217],[-119.80680815825565,50.00158233894158],[-119.81186767627479,50.00195849822345],[-119.81620233712816,50.001383694414784],[-119.82120743587784,49.99999481618963],[-119.82353779917987,49.99902069341319],[-119.8254477472719,49.99784233327164],[-119.82540479245509,49.996817294438095],[-119.82532967465609,49.99458449014123],[-119.82731468934907,49.99295402212915],[-119.83075818976413,49.99233579788422],[-119.83467551230962,49.990388731004145],[-119.83132579821434,49.98814696922474],[-119.82772542665414,49.98682728647958],[-119.82573275651264,49.98541988349346],[-119.82567402501897,49.98399514320121],[-119.82652168246096,49.98249176920076],[-119.8284262486511,49.98165714728749],[-119.83000508528065,49.98095362200749],[-119.83603056663799,49.98058733487571],[-119.83851295188258,49.980548244879],[-119.83991705572495,49.98041064779114],[-119.84415611817411,49.977314932789],[-119.84871868575725,49.97584705877519],[-119.84872562718964,49.97586041739172],[-119.84880709907786,49.97604718716514],[-119.8488142643264,49.97607183933555],[-119.84883649293937,49.97623102202034],[-119.84884138008188,49.97631139160072],[-119.84883591149422,49.97645548100777],[-119.84883386936737,49.97647060012422],[-119.84882577580669,49.97654347183139],[-119.84882192265609,49.9765590487397],[-119.84879986595836,49.97663169552584],[-119.84879669270086,49.9766422386986],[-119.84872011352367,49.97682068837056],[-119.84862972176475,49.976997793411385],[-119.84854258021716,49.977150831384776],[-119.84849674070418,49.97724414435131],[-119.84842415757143,49.977431843081035],[-119.84839228470733,49.97751240350642],[-119.84836491688007,49.977689105308116],[-119.84835007874142,49.9778636952944],[-119.8483656814504,49.97795537919311],[-119.84841703748269,49.97814496900856],[-119.84848590714897,49.97833440553801],[-119.84853681415153,49.978514376594475],[-119.84862538560041,49.978700416366976],[-119.84872173455624,49.97888068386994],[-119.8488849995304,49.979226027811436],[-119.84895319526645,49.979407529054335],[-119.84901655701766,49.97959892050112],[-119.84909638045427,49.97977204993201],[-119.8491003028044,49.97978186356753],[-119.8491687205144,49.97998763542134],[-119.84917068052194,49.979999026446876],[-119.84921162059442,49.98021396706308],[-119.84921358062239,49.98022535808443],[-119.84922035031684,49.98033065092644],[-119.84921706279968,49.980510401450864],[-119.84921452904308,49.98069752235555],[-119.84921451719823,49.9807494139019],[-119.84921466607071,49.980761262712754],[-119.8491965126317,49.98092156008631],[-119.84916544963721,49.9810867727431],[-119.84916028396373,49.981228622044654],[-119.84914423785541,49.98141216806976],[-119.84915690922364,49.98146081916529],[-119.84917879031701,49.98150604376393],[-119.84925101534785,49.981580042237475],[-119.84930437802167,49.981612369923965],[-119.84931902024897,49.98162052946006],[-119.84933200249786,49.9816280271976],[-119.84962161190391,49.98180222632982],[-119.84963444303219,49.98181084362554],[-119.8497237324009,49.98187507875817],[-119.84985928821735,49.981972379715245],[-119.84994314213144,49.9820380059915],[-119.85014338533108,49.98217446976816],[-119.8502827993292,49.98224321599021],[-119.85061493350793,49.98233575307194],[-119.85063002979943,49.98234055363613],[-119.8507369914112,49.98237757798669],[-119.85078024295815,49.982394112360744],[-119.8508017556493,49.982403216999366],[-119.85096510130303,49.98247612180137],[-119.8510040496035,49.982498614399205],[-119.85124233644724,49.98267726357549],[-119.85140310607363,49.98280812387089],[-119.85141563545776,49.98281898014029],[-119.8516066675513,49.98301075916535],[-119.85180494745974,49.983200697495974],[-119.85187997230287,49.98327992273881],[-119.85206594785156,49.98348326612627],[-119.85228174845138,49.98366008133151],[-119.85244849327667,49.98375968869349],[-119.8526319945626,49.983877726165865],[-119.85278469939783,49.983977672841164],[-119.85292125105471,49.98406768788387],[-119.85301432564553,49.98411690752825],[-119.85311261677423,49.98411452816381],[-119.85315474154052,49.984113508409344],[-119.85318795989507,49.98410070791232],[-119.85320034257371,49.98408673790116],[-119.85322125926997,49.9840484291221],[-119.85322294369192,49.983880439590386],[-119.85322516133988,49.98368258128036],[-119.85322659656583,49.98367194957813],[-119.85323453201111,49.98361316620403],[-119.85321884262413,49.983522039018794],[-119.853207068318,49.983505584974594],[-119.8530087063531,49.98330324516915],[-119.8530010080233,49.98329547599221],[-119.85289692439146,49.98317231283416],[-119.8528795655384,49.98314539250729],[-119.85278244065701,49.982931813619615],[-119.85277459517899,49.98289921832475],[-119.85276119116034,49.982674545821496],[-119.85276874721092,49.98263153425257],[-119.85283089556425,49.98249514060416],[-119.85285052650232,49.98246635288544],[-119.85295585170972,49.9823470479996],[-119.852983711475,49.982322097407675],[-119.85311703812548,49.98222862253999],[-119.85317146959927,49.98220121967734],[-119.85325405916161,49.98217257264277],[-119.85329037010105,49.982162770476855],[-119.85359256100708,49.982101326242386],[-119.85392970173986,49.982040155204146],[-119.85413194322707,49.98198043680621],[-119.85420079188349,49.981949898850104],[-119.85422487391517,49.98193996959095],[-119.85425975166285,49.98192782149764],[-119.85439631498382,49.98188810630311],[-119.8544506682584,49.98187423546139],[-119.85466121108504,49.981817806755956],[-119.85471141241919,49.9818087746458],[-119.85485129361858,49.981796319088446],[-119.85487243045965,49.981795249076505],[-119.85528489898877,49.98178512116922],[-119.8554368609602,49.98174795643415],[-119.85568356492807,49.98164391937901],[-119.85594778427907,49.981513781606324],[-119.85600462817234,49.98149440937888],[-119.85629903508348,49.98142576189046],[-119.85631519027814,49.98142271548282],[-119.85633323152854,49.9814186558336],[-119.85638184693838,49.98140840593924],[-119.85659955922343,49.981311765079205],[-119.85670071712384,49.981249186865846],[-119.85684030350913,49.981083293428824],[-119.85684838051777,49.9810752904622],[-119.85696773265633,49.98095564110782],[-119.85701415961242,49.98092270658307],[-119.85716257030472,49.98084699472592],[-119.85721775278337,49.98082696017408],[-119.8573589146855,49.980792011853495],[-119.85738805295499,49.98078349367331],[-119.8574510849435,49.98077010829018],[-119.85768343317332,49.980746483613174],[-119.85794325920882,49.9807136784478],[-119.85798734403984,49.98071107032669],[-119.85824067614075,49.98071343923432],[-119.858462305091,49.98071740466521],[-119.85871216487483,49.980719577732636],[-119.8588763482812,49.98070848023495],[-119.85892299908598,49.98069981572975],[-119.85895342102117,49.98068177596694],[-119.85915157424088,49.98050958039076],[-119.8593077568241,49.980363223771924],[-119.85933885718498,49.980340150121336],[-119.8593687496882,49.98032603335314],[-119.85962781727254,49.98022098487049],[-119.8596896394479,49.980203586670555],[-119.86003445819608,49.98015015651176],[-119.86005219669093,49.980148335469664],[-119.86030212913779,49.980123994841165],[-119.86033556921507,49.980122485590385],[-119.86061162053439,49.98012498596058],[-119.86076470539784,49.980131312734414],[-119.86100859987708,49.980151755044254],[-119.86104868276531,49.980152874147414],[-119.86107215760364,49.9801344534],[-119.86130155345303,49.980002920059555],[-119.86132223664877,49.979992230269154],[-119.86158076906155,49.979878122880756],[-119.86161926531494,49.979865056410745],[-119.8618805165258,49.979795655257924],[-119.86189863269914,49.97979103039884],[-119.86216093964482,49.979739746025835],[-119.86218411333543,49.979736532688435],[-119.86228012947667,49.97972499353763],[-119.86256349811138,49.97969913789244],[-119.86285139497515,49.97966563880774],[-119.86289887477962,49.979663787611095],[-119.86320021142372,49.979673339147396],[-119.8634552741947,49.97967579332587],[-119.86348380711331,49.97967175198726],[-119.86351135824087,49.97966201525396],[-119.86365129965154,49.97957114672284],[-119.86366428138123,49.979552696972064],[-119.86367265866309,49.97954245424966],[-119.86367937582581,49.979531549945],[-119.86373666135084,49.97944394578501],[-119.86374133592973,49.97938329178101],[-119.863739293943,49.979346519473076],[-119.86368803125656,49.979246632391195],[-119.86355742836979,49.97906050906368],[-119.86352194687859,49.97901226957511],[-119.86333526273184,49.97885290141529],[-119.86327774111345,49.97881245119498],[-119.86293148504878,49.978630042510666],[-119.86285358333521,49.9785850655294],[-119.8625061995809,49.97841104811286],[-119.86215512063366,49.97825148727801],[-119.86184103218238,49.97811599179722],[-119.86156846079302,49.97799692828651],[-119.86128887055044,49.97786506162545],[-119.86124056109915,49.97783415121682],[-119.86104898235192,49.97765927921965],[-119.86102512927077,49.97762861178459],[-119.8609042029027,49.977422721110734],[-119.86075980296314,49.977235259961724],[-119.8607074923226,49.97715618595836],[-119.8606917165759,49.97711750617914],[-119.86066906915266,49.97697409808642],[-119.86066989810496,49.97694199875843],[-119.86070265359768,49.97678984774199],[-119.86072363366247,49.976673144083165],[-119.86076778414497,49.97646241214684],[-119.86077329438021,49.97644748748861],[-119.86084499446638,49.97626594273289],[-119.86085676922023,49.97624347274548],[-119.86093458447277,49.97613333998479],[-119.86095118928458,49.97611396552423],[-119.86116033523632,49.97591191590311],[-119.86137061058795,49.97570147314766],[-119.86142925487293,49.97564271655309],[-119.86157703192836,49.97544174689225],[-119.86162873168436,49.975369623401384],[-119.86164344902728,49.975351271111556],[-119.8618066995992,49.97519121109559],[-119.86172344719583,49.97517300672263],[-119.8615255450762,49.975161911471574],[-119.86149965623977,49.97515933192135],[-119.86133134090487,49.97513635810881],[-119.86130235681142,49.97513078927257],[-119.86121087756432,49.97510873898365],[-119.86119397050966,49.97510440678347],[-119.8611770634582,49.9751000745807],[-119.86101003093928,49.975054610501495],[-119.86098150090824,49.97504567375782],[-119.86081046732187,49.974977991877786],[-119.86055671115595,49.974862235328104],[-119.86051459459082,49.97483731195621],[-119.86031246528961,49.97467594203454],[-119.86028272734649,49.974662993560784],[-119.86024559276255,49.97465301454825],[-119.86005003370909,49.97465050400737],[-119.85984994491554,49.974655644710346],[-119.85960260835964,49.97468689692887],[-119.8595585306452,49.974689496762956],[-119.85905555485998,49.974683848479344],[-119.85901570267048,49.974681053689274],[-119.85890407309003,49.97466576775043],[-119.85884648534243,49.974651816297396],[-119.85853122271864,49.97453824511714],[-119.85827717126116,49.97447661445407],[-119.85823045139313,49.974459897052846],[-119.85802795207461,49.974366186883245],[-119.85800500776844,49.9743547469404],[-119.85791934445135,49.97430256156456],[-119.85788462659306,49.97427466785043],[-119.85780960733626,49.974195436790616],[-119.85779043695999,49.97416898381448],[-119.85769715711136,49.97399171247141],[-119.85761761316752,49.9738163487058],[-119.85742183573711,49.97372470184755],[-119.85724296258306,49.973676310958986],[-119.8571594127408,49.97366034232434],[-119.85712431627634,49.97366119789187],[-119.85708771101633,49.973660272143455],[-119.85705170981014,49.97365486790925],[-119.85685872408762,49.97360737214384],[-119.85653758187948,49.973563406216414],[-119.85630338679572,49.97352319032047],[-119.85601402007536,49.97347706206886],[-119.85586971430507,49.973457682881126],[-119.85563023370221,49.97345665214081],[-119.85544878610548,49.97353107590567],[-119.85541753916648,49.97354229079168],[-119.85538168749194,49.9735487438836],[-119.85506438749397,49.97359298054042],[-119.85504129255585,49.97359562811523],[-119.85492664566134,49.97360273042296],[-119.85480497895395,49.97361000715796],[-119.85478218612931,49.973610415447524],[-119.85473320238161,49.97361049076812],[-119.85455319513785,49.97360941163882],[-119.85789504447011,49.97225201676736],[-119.85928540545586,49.97148732637623],[-119.86540283790504,49.96876358913387],[-119.87129021656861,49.967536026869965],[-119.8767734097468,49.96733523429035],[-119.88238093462473,49.9677705794102],[-119.8873605973174,49.96569166861849],[-119.88987223531385,49.96427968084089],[-119.89222122938669,49.9629318900787],[-119.8936156142397,49.962339052058404],[-119.89485878954122,49.959742796287806],[-119.89916013884455,49.956241999748656],[-119.9067992480775,49.95423548962939],[-119.90978509116853,49.95345131387368],[-119.91491887792816,49.95113843508942],[-119.91829857079891,49.948972088624615],[-119.91854848880251,49.94856634565751],[-119.92078450178056,49.94406899017415],[-119.92226085495524,49.941071434630764],[-119.92648090297125,49.93762609067203],[-119.93325196495866,49.936435508613194],[-119.93563060943154,49.93599942160944],[-119.93811848972932,49.933900408675434],[-119.9391540109326,49.930737797173556],[-119.94190391410955,49.92834639926301],[-119.94446678570199,49.925677238732796],[-119.94420504822398,49.92333333000044],[-119.94145922100839,49.92085858631419],[-119.94788650467086,49.92012985371654],[-119.95502540583655,49.92162116071816],[-119.95989933527021,49.92417810129316],[-119.96715650072545,49.9285853541917],[-119.96950863403661,49.93003426765435],[-119.97657083237466,49.93169858088292],[-119.9815119500333,49.93122156829602],[-119.98599566586516,49.93029055894697],[-119.99102163152607,49.929697670825526],[-119.99426941945639,49.92912762526843],[-119.99652478399891,49.92760234251739],[-119.99805163021723,49.92608949874235],[-119.99939970441949,49.92423519531283],[-120.0091122022378,49.919767377182396],[-120.0110660658308,49.91936004325218],[-120.0137087765127,49.91774962788135],[-120.01926055818703,49.9151568048527],[-120.02419999313581,49.912967349343816],[-120.02452742156868,49.90912141696691],[-120.02838603296273,49.910072740426415],[-120.0297329458164,49.91030872083592],[-120.03094707000916,49.9106254148382],[-120.03526825849318,49.91147313671314],[-120.03675676812585,49.91168178415299],[-120.04006123295986,49.91186533466854],[-120.04895274440202,49.911548791266846],[-120.06246635335287,49.910319746012526],[-120.07717530232105,49.9084167567957],[-120.09195078652758,49.906527847802224],[-120.09478197178409,49.90616987319818],[-120.09616308556855,49.905994072905294],[-120.09983145786802,49.905601665182466],[-120.10821151095556,49.90471255470433],[-120.10935651337479,49.90452555595854],[-120.12999066263195,49.90116124190235],[-120.14161494833752,49.899409585473975],[-120.15071608952833,49.89939956320101],[-120.15843599664096,49.89943340670159],[-120.16542335684915,49.898670305719705],[-120.17307618330499,49.89706764440947],[-120.18042499344965,49.894531966560145],[-120.18350745022798,49.89325698994669],[-120.18612615337095,49.892223422061186],[-120.18892994293485,49.89094137713142],[-120.1937188993924,49.88816895042449],[-120.20011872539897,49.88510121761388],[-120.20295223366502,49.884155368173786],[-120.20565947918325,49.88339221976721],[-120.21044919493411,49.88307542337407],[-120.21707610941863,49.88384694297242],[-120.22528575281491,49.884494746189226],[-120.2336820191489,49.883845874142644],[-120.23987720742176,49.8830217315092],[-120.2440346744223,49.88186215378908],[-120.25269505739782,49.87959284747202],[-120.26311223241045,49.87781548077244],[-120.27245386502129,49.87553760181174],[-120.28035206215932,49.87228353854052],[-120.29184824648446,49.86893788588637],[-120.29643973953877,49.86753409731901],[-120.29679246939102,49.86748880249904],[-120.29764341962372,49.867462177759236],[-120.29810003790783,49.86749277576502],[-120.29873185671697,49.867614834233876],[-120.30017456007126,49.86824096957667],[-120.3019449159837,49.86912098921703],[-120.30369784640757,49.870239120814354],[-120.30566168456716,49.871708769246126],[-120.30691978532107,49.87272606263585],[-120.30893483068442,49.874626239534756],[-120.31138810938734,49.87715471920808],[-120.31411856837542,49.87988303255367],[-120.31642223666653,49.88220229256577],[-120.31797093650717,49.8838045334196],[-120.31871381404004,49.88449435269805],[-120.31931300329215,49.885021077824234]]]}' + )), 4326)))); + `); +}; diff --git a/database/src/migrations/release.0.8.0/biohub.sql b/database/src/migrations/release.0.8.0/biohub.sql index a07302965..7e010ae68 100644 --- a/database/src/migrations/release.0.8.0/biohub.sql +++ b/database/src/migrations/release.0.8.0/biohub.sql @@ -28,13 +28,16 @@ COMMENT ON TABLE audit_log IS 'Holds record level audit log data for the entire CREATE TABLE submission( submission_id integer GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1), - uuid uuid DEFAULT public.gen_random_uuid() NOT NULL, + uuid uuid NOT NULL, + system_user_id integer NOT NULL, + source_system varchar(100) NOT NULL, security_review_timestamp timestamptz(6), publish_timestamp timestamptz(6), submitted_timestamp timestamptz(6) DEFAULT now() NOT NULL, - source_system varchar(200) NOT NULL, name varchar(200) NOT NULL, - description varchar(3000), + description varchar(3000) NOT NULL, + comment varchar(3000) NOT NULL, + record_end_date timestamptz(6) DEFAULT now() NOT NULL, create_date timestamptz(6) DEFAULT now() NOT NULL, create_user integer NOT NULL, update_date timestamptz(6), @@ -44,13 +47,15 @@ CREATE TABLE submission( ); COMMENT ON COLUMN submission.submission_id IS 'System generated surrogate primary key identifier.'; -COMMENT ON COLUMN submission.uuid IS 'The universally unique identifier for the submission as supplied by the source system.'; +COMMENT ON COLUMN submission.uuid IS 'The globally unique identifier for this submission as supplied by the source system.'; +COMMENT ON COLUMN submission.system_user_id IS 'Foreign key to the system_user table.'; +COMMENT ON COLUMN submission.source_system IS 'The name of the submitting system.'; COMMENT ON COLUMN submission.security_review_timestamp IS 'The timestamp of when the security review of the submission was completed. Null indicates the security review has not been completed.'; COMMENT ON COLUMN submission.publish_timestamp IS 'The timestamp of when the submission is published (made public). Null indicates the submission is not publicly visible.'; COMMENT ON COLUMN submission.submitted_timestamp IS 'The timestamp of when the submission was received by BioHub from the source system.'; -COMMENT ON COLUMN submission.source_system IS 'The name of the source system from which the submission originated.'; COMMENT ON COLUMN submission.name IS 'The name of the submission.'; -COMMENT ON COLUMN submission.description IS 'The description of the submission.'; +COMMENT ON COLUMN submission.description IS 'The public description of the submission. Should not include any personal or sensitive information.'; +COMMENT ON COLUMN submission.comment IS 'An internal comment/description about the submission for administrative purposes. May contain personal or sensitive information.'; COMMENT ON COLUMN submission.create_date IS 'The datetime the record was created.'; COMMENT ON COLUMN submission.create_user IS 'The id of the user who created the record as identified in the system user table.'; COMMENT ON COLUMN submission.update_date IS 'The datetime the record was updated.'; @@ -79,7 +84,7 @@ CREATE TABLE submission_job_queue( ); COMMENT ON COLUMN submission_job_queue.submission_job_queue_id IS 'Surrogate primary key identifier. This value should be selected from the appropriate sequence and populated manually.'; -COMMENT ON COLUMN submission_job_queue.submission_id IS 'System generated surrogate primary key identifier.'; +COMMENT ON COLUMN submission_job_queue.submission_id IS 'Foreign key to the submission table.'; COMMENT ON COLUMN submission_job_queue.job_start_timestamp IS 'The timestamp of the job process instantiation.'; COMMENT ON COLUMN submission_job_queue.job_end_timestamp IS 'The timestamp of the job process completion.'; COMMENT ON COLUMN submission_job_queue.security_request IS 'A document supplied by the submitter outlining a security request for submission observations.'; @@ -274,70 +279,43 @@ COMMENT ON COLUMN user_identity_source.revision_count IS 'Revision count used fo COMMENT ON TABLE user_identity_source IS 'The source of the user identifier. This source is traditionally the system that authenticates the user. Example sources could include IDIR, BCEID and DATABASE.'; -- --- INDEX: "submission_job_queue_idx1" --- - -CREATE INDEX submission_job_queue_idx1 ON submission_job_queue(submission_id); - --- --- INDEX: system_constant_uk1 --- - -CREATE UNIQUE INDEX system_constant_uk1 ON system_constant(constant_name); - --- --- INDEX: system_metadata_constant_uk1 --- - -CREATE UNIQUE INDEX system_metadata_constant_uk1 ON system_metadata_constant(constant_name); - --- --- INDEX: system_role_nuk1 +-- TABLE: submission -- -CREATE UNIQUE INDEX system_role_nuk1 ON system_role(name, (record_end_date is NULL)) where record_end_date is null; - --- --- INDEX: system_user_nuk1 --- +ALTER TABLE submission ADD CONSTRAINT submission_fk1 + FOREIGN KEY (system_user_id) + REFERENCES system_user(system_user_id); -CREATE UNIQUE INDEX system_user_nuk1 ON system_user(user_identifier, user_identity_source_id, (record_end_date is NULL)) where record_end_date is null; +CREATE INDEX submission_idx1 ON submission(system_user_id); -- --- INDEX: "system_user_idx1" +-- TABLE: submission_job_queue -- -CREATE INDEX system_user_id_idx1 ON system_user(user_identity_source_id); --- --- INDEX: system_user_role_uk1 --- +ALTER TABLE submission_job_queue ADD CONSTRAINT submission_job_queue_fk1 + FOREIGN KEY (submission_id) + REFERENCES submission(submission_id); -CREATE UNIQUE INDEX system_user_role_uk1 ON system_user_role(system_user_id, system_role_id); --- --- INDEX: "system_user_role_idx1" --- +CREATE INDEX submission_job_queue_idx1 ON submission_job_queue(submission_id); -CREATE INDEX system_user_role_idx1 ON system_user_role(system_user_id); -- --- INDEX: "system_user_role_idx2" +-- TABLE: system_constant -- -CREATE INDEX system_user_role_idx2 ON system_user_role(system_role_id); +CREATE UNIQUE INDEX system_constant_uk1 ON system_constant(constant_name); -- --- INDEX: user_identity_source_nuk1 +-- TABLE: system_metadata_constant -- -CREATE UNIQUE INDEX user_identity_source_nuk1 ON user_identity_source(name, (record_end_date is NULL)) where record_end_date is null; +CREATE UNIQUE INDEX system_metadata_constant_uk1 ON system_metadata_constant(constant_name); -- --- TABLE: submission_job_queue +-- TABLE: system_role -- -ALTER TABLE submission_job_queue ADD CONSTRAINT submission_job_queue_fk1 - FOREIGN KEY (submission_id) - REFERENCES submission(submission_id); +CREATE UNIQUE INDEX system_role_nuk1 ON system_role(name, (record_end_date is NULL)) where record_end_date is null; -- -- TABLE: system_user @@ -347,6 +325,10 @@ ALTER TABLE system_user ADD CONSTRAINT system_user_fk1 FOREIGN KEY (user_identity_source_id) REFERENCES user_identity_source(user_identity_source_id); +CREATE UNIQUE INDEX system_user_nuk1 ON system_user(user_identifier, user_identity_source_id, (record_end_date is NULL)) where record_end_date is null; + +CREATE INDEX system_user_id_idx1 ON system_user(user_identity_source_id); + -- -- TABLE: system_user_role -- @@ -358,3 +340,15 @@ ALTER TABLE system_user_role ADD CONSTRAINT system_user_role_fk1 ALTER TABLE system_user_role ADD CONSTRAINT system_user_role_fk2 FOREIGN KEY (system_role_id) REFERENCES system_role(system_role_id); + +CREATE UNIQUE INDEX system_user_role_uk1 ON system_user_role(system_user_id, system_role_id); + +CREATE INDEX system_user_role_idx1 ON system_user_role(system_user_id); + +CREATE INDEX system_user_role_idx2 ON system_user_role(system_role_id); + +-- +-- TABLE: user_identity_source +-- + +CREATE UNIQUE INDEX user_identity_source_nuk1 ON user_identity_source(name, (record_end_date is NULL)) where record_end_date is null; diff --git a/database/src/migrations/release.0.8.0/populate_system_user.sql b/database/src/migrations/release.0.8.0/populate_system_user.sql new file mode 100644 index 000000000..f931a021f --- /dev/null +++ b/database/src/migrations/release.0.8.0/populate_system_user.sql @@ -0,0 +1,10 @@ +-- populate_system_user.sql + +insert into system_user (user_identity_source_id, user_identifier, user_guid, record_effective_date, create_date, create_user) + values ((select user_identity_source_id from user_identity_source where name = 'DATABASE' and record_end_date is null), 'postgres', 'postgres', now(), now(), 1); + +insert into system_user (user_identity_source_id, user_identifier, user_guid,record_effective_date, create_date, create_user) + values ((select user_identity_source_id from user_identity_source where name = 'DATABASE' and record_end_date is null), 'biohub_api', 'biohub_api', now(), now(), 1); + +insert into system_user (user_identity_source_id, user_identifier, user_guid, record_effective_date, create_date, create_user) + values ((select user_identity_source_id from user_identity_source where name = 'SYSTEM' and record_end_date is null), 'SIMS', 'service-account-sims-svc-4464', now(), now(), 1); diff --git a/database/src/migrations/release.0.8.0/populate_user_identity_source.sql b/database/src/migrations/release.0.8.0/populate_user_identity_source.sql index d82ab6d91..f76994f81 100644 --- a/database/src/migrations/release.0.8.0/populate_user_identity_source.sql +++ b/database/src/migrations/release.0.8.0/populate_user_identity_source.sql @@ -1,18 +1,6 @@ -- populate_user_identity_source.sql -delete from system_user; -delete from user_identity_source; - insert into user_identity_source(name, record_effective_date, description, create_date, create_user) values ('DATABASE', now(), 'A machine user for internal use only.', now(), 1); insert into user_identity_source(name, record_effective_date, description, create_date, create_user) values ('IDIR', now(), 'A human user who authenticates via IDIR.', now(), 1); insert into user_identity_source(name, record_effective_date, description, create_date, create_user) values ('BCEIDBASIC', now(), 'A human user who authenticates via BCEID BASIC.', now(), 1); insert into user_identity_source(name, record_effective_date, description, create_date, create_user) values ('BCEIDBUSINESS', now(), 'A human user who authenticates via BCEID BUSINESS.', now(), 1); insert into user_identity_source(name, record_effective_date, description, create_date, create_user) values ('SYSTEM', now(), 'A machine user for external platform applications who authenticate via Keycloak Service Client.', now(), 1); - -insert into system_user (user_identity_source_id, user_identifier, user_guid, record_effective_date, create_date, create_user) - values ((select user_identity_source_id from user_identity_source where name = 'DATABASE' and record_end_date is null), 'postgres', 'postgres', now(), now(), 1); - -insert into system_user (user_identity_source_id, user_identifier, user_guid,record_effective_date, create_date, create_user) - values ((select user_identity_source_id from user_identity_source where name = 'DATABASE' and record_end_date is null), 'biohub_api', 'biohub_api', now(), now(), 1); - -insert into system_user (user_identity_source_id, user_identifier, user_guid, record_effective_date, create_date, create_user) - values ((select user_identity_source_id from user_identity_source where name = 'SYSTEM' and record_end_date is null), 'SIMS', 'service-account-sims-svc-4464', now(), now(), 1); diff --git a/database/src/seeds/02_populate_feature_tables.ts b/database/src/seeds/02_populate_feature_tables.ts index 6fb6bac85..9dcd2871b 100644 --- a/database/src/seeds/02_populate_feature_tables.ts +++ b/database/src/seeds/02_populate_feature_tables.ts @@ -19,28 +19,29 @@ export async function seed(knex: Knex): Promise { set search_path=biohub,public; -- populate feature_property_type table - insert into feature_property_type (name, description, record_effective_date) values ('string', 'A string type', now()) ON CONFLICT DO NOTHING; - insert into feature_property_type (name, description, record_effective_date) values ('number', 'A number type', now()) ON CONFLICT DO NOTHING; - insert into feature_property_type (name, description, record_effective_date) values ('datetime', 'A datetime type (ISO 8601)', now()) ON CONFLICT DO NOTHING; - insert into feature_property_type (name, description, record_effective_date) values ('spatial', 'A spatial type', now()) ON CONFLICT DO NOTHING; - insert into feature_property_type (name, description, record_effective_date) values ('boolean', 'A boolean type', now()) ON CONFLICT DO NOTHING; - insert into feature_property_type (name, description, record_effective_date) values ('object', 'An object type', now()) ON CONFLICT DO NOTHING; - insert into feature_property_type (name, description, record_effective_date) values ('array', 'An array type', now()) ON CONFLICT DO NOTHING; - insert into feature_property_type (name, description, record_effective_date) values ('s3_key', 'An S3 key type', now()) ON CONFLICT DO NOTHING; + insert into feature_property_type (name, description, record_effective_date) values ('string', 'A string type', now()) ON CONFLICT DO NOTHING; + insert into feature_property_type (name, description, record_effective_date) values ('number', 'A number type', now()) ON CONFLICT DO NOTHING; + insert into feature_property_type (name, description, record_effective_date) values ('datetime', 'A datetime type (ISO 8601)', now()) ON CONFLICT DO NOTHING; + insert into feature_property_type (name, description, record_effective_date) values ('spatial', 'A spatial type', now()) ON CONFLICT DO NOTHING; + insert into feature_property_type (name, description, record_effective_date) values ('boolean', 'A boolean type', now()) ON CONFLICT DO NOTHING; + insert into feature_property_type (name, description, record_effective_date) values ('object', 'An object type', now()) ON CONFLICT DO NOTHING; + insert into feature_property_type (name, description, record_effective_date) values ('array', 'An array type', now()) ON CONFLICT DO NOTHING; + insert into feature_property_type (name, description, record_effective_date) values ('artifact_key', 'An artifact key type (string)', now()) ON CONFLICT DO NOTHING; -- populate feature_property table - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('name', 'Name', 'The name of the record', (select feature_property_type_id from feature_property_type where name = 'string'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('description', 'Description', 'The description of the record', (select feature_property_type_id from feature_property_type where name = 'string'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('taxonomy', 'Taxonomy Id', 'The taxonomy Id associated to the record', (select feature_property_type_id from feature_property_type where name = 'number'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('date_range', 'Date Range', 'A date range', (select feature_property_type_id from feature_property_type where name = 'object'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('start_date', 'Start Date', 'The start date of the record', (select feature_property_type_id from feature_property_type where name = 'datetime'), (select feature_property_id from feature_property where name = 'date_range'), now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('end_date', 'End Date', 'The end date of the record', (select feature_property_type_id from feature_property_type where name = 'datetime'), (select feature_property_id from feature_property where name = 'date_range'), now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('timestamp', 'Timestamp', 'The timestamp of the record', (select feature_property_type_id from feature_property_type where name = 'datetime'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('geometry', 'Geometry', 'The location of the record', (select feature_property_type_id from feature_property_type where name = 'spatial'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('count', 'Count', 'The count of the record', (select feature_property_type_id from feature_property_type where name = 'number'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('latitude', 'Latitude', 'The latitude of the record', (select feature_property_type_id from feature_property_type where name = 'number'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('longitude', 'Longitude', 'The longitude of the record', (select feature_property_type_id from feature_property_type where name = 'number'), null, now()) ON CONFLICT DO NOTHING; - insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date, calculated_value) values ('s3_key', 'Key', 'The S3 storage key for an artifact', (select feature_property_type_id from feature_property_type where name = 'string'), null, now(), true) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('name', 'Name', 'The name of the record', (select feature_property_type_id from feature_property_type where name = 'string'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('description', 'Description', 'The description of the record', (select feature_property_type_id from feature_property_type where name = 'string'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('taxonomy', 'Taxonomy Id', 'The taxonomy Id associated to the record', (select feature_property_type_id from feature_property_type where name = 'number'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('date_range', 'Date Range', 'A date range', (select feature_property_type_id from feature_property_type where name = 'object'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('start_date', 'Start Date', 'The start date of the record', (select feature_property_type_id from feature_property_type where name = 'datetime'), (select feature_property_id from feature_property where name = 'date_range'), now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('end_date', 'End Date', 'The end date of the record', (select feature_property_type_id from feature_property_type where name = 'datetime'), (select feature_property_id from feature_property where name = 'date_range'), now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('timestamp', 'Timestamp', 'The timestamp of the record', (select feature_property_type_id from feature_property_type where name = 'datetime'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('geometry', 'Geometry', 'The location of the record', (select feature_property_type_id from feature_property_type where name = 'spatial'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('count', 'Count', 'The count of the record', (select feature_property_type_id from feature_property_type where name = 'number'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('latitude', 'Latitude', 'The latitude of the record', (select feature_property_type_id from feature_property_type where name = 'number'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('longitude', 'Longitude', 'The longitude of the record', (select feature_property_type_id from feature_property_type where name = 'number'), null, now()) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date, calculated_value) values ('artifact_key', 'Key', 'The S3 storage key for an artifact', (select feature_property_type_id from feature_property_type where name = 'artifact_key'), null, now(), true) ON CONFLICT DO NOTHING; + insert into feature_property (name, display_name, description, feature_property_type_id, parent_feature_property_id, record_effective_date) values ('filename', 'Filename', 'The original name of an artifact, including extension', (select feature_property_type_id from feature_property_type where name = 'string'), null, now()) ON CONFLICT DO NOTHING; -- populate feature_type table insert into feature_type (name, display_name, description, sort, record_effective_date) values ('dataset', 'Dataset', 'A related collection of data (ie: survey)', 1, now()) ON CONFLICT DO NOTHING; @@ -50,7 +51,7 @@ export async function seed(knex: Knex): Promise { insert into feature_type (name, display_name, description, sort, record_effective_date) values ('sample_period', 'Sample Period', 'A datetime period in which data was collected', 5, now()) ON CONFLICT DO NOTHING; insert into feature_type (name, display_name, description, sort, record_effective_date) values ('observation', 'Observation', 'An observation record', 6, now()) ON CONFLICT DO NOTHING; insert into feature_type (name, display_name, description, sort, record_effective_date) values ('animal', 'Animal', 'An individual animal record', 7, now()) ON CONFLICT DO NOTHING; - insert into feature_type (name, display_name, description, sort, record_effective_date) values ('telemetry', 'Telemetry', 'A telemetry record', 8, now()) ON CONFLICT DO NOTHING; + insert into feature_type (name, display_name, description, sort, record_effective_date) values ('telemetry', 'Telemetry', 'A telemetry record', 8, now()) ON CONFLICT DO NOTHING; -- populate feature_type_property table -- feature_type: dataset @@ -63,7 +64,8 @@ export async function seed(knex: Knex): Promise { insert into feature_type_property (feature_type_id, feature_property_id, sort, record_effective_date) values ((select feature_type_id from feature_type where name = 'dataset'), (select feature_property_id from feature_property where name = 'geometry'), 7, now()) ON CONFLICT DO NOTHING; -- feature_type: artifact - insert into feature_type_property (feature_type_id, feature_property_id, sort, record_effective_date) values ((select feature_type_id from feature_type where name = 'artifact'), (select feature_property_id from feature_property where name = 's3_key'), 1, now()) ON CONFLICT DO NOTHING; + insert into feature_type_property (feature_type_id, feature_property_id, sort, record_effective_date) values ((select feature_type_id from feature_type where name = 'artifact'), (select feature_property_id from feature_property where name = 'filename'), 1, now()) ON CONFLICT DO NOTHING; + insert into feature_type_property (feature_type_id, feature_property_id, sort, record_effective_date) values ((select feature_type_id from feature_type where name = 'artifact'), (select feature_property_id from feature_property where name = 'artifact_key'), 2, now()) ON CONFLICT DO NOTHING; -- feature_type: sample_site insert into feature_type_property (feature_type_id, feature_property_id, sort, record_effective_date) values ((select feature_type_id from feature_type where name = 'sample_site'), (select feature_property_id from feature_property where name = 'name'), 1, now()) ON CONFLICT DO NOTHING; diff --git a/database/src/seeds/04_mock_test_data.ts b/database/src/seeds/04_mock_test_data.ts index e150b5c77..d173ae705 100644 --- a/database/src/seeds/04_mock_test_data.ts +++ b/database/src/seeds/04_mock_test_data.ts @@ -105,7 +105,7 @@ export const insertDatasetRecord = async (knex: Knex, options: { submission_id: parent_submission_feature_id: null, feature_type: 'dataset', data: { - name: faker.lorem.words(3), + name: `Survey ${faker.animal.type()} ${faker.commerce.department()}}`, start_date: faker.date.past().toISOString(), end_date: faker.date.future().toISOString(), geometry: random.point( @@ -150,7 +150,7 @@ export const insertSampleSiteRecord = async ( parent_submission_feature_id: options.parent_submission_feature_id, feature_type: 'sample_site', data: { - name: faker.lorem.words(3), + name: `Sample Site ${faker.lorem.words(3)}`, description: faker.lorem.words({ min: 5, max: 100 }), geometry: random.point( 1, // number of features in feature collection @@ -221,7 +221,7 @@ const insertAnimalRecord = async ( parent_submission_feature_id: options.parent_submission_feature_id, feature_type: 'animal', data: { - species: faker.lorem.words(3), + species: faker.animal.type(), count: faker.number.int({ min: 0, max: 100 }), taxonomy: faker.number.int({ min: 10000, max: 99999 }), start_date: faker.date.past().toISOString(), @@ -259,25 +259,29 @@ export const insertSubmission = (includeSecurityReviewTimestamp: boolean, includ includePublishTimestamp && !!securityReviewTimestamp ? `$$${faker.date.past().toISOString()}$$` : null; return ` - INSERT INTO submission - ( - uuid, - name, - description, - security_review_timestamp, - publish_timestamp, - source_system - ) - values - ( - public.gen_random_uuid(), - $$${faker.company.name()}$$, - $$${faker.lorem.words({ min: 5, max: 100 })}$$, - ${securityReviewTimestamp}, - ${publishTimestamp}, - 'SIMS' - ) - RETURNING submission_id; + INSERT INTO submission + ( + uuid, + name, + description, + comment, + security_review_timestamp, + publish_timestamp, + system_user_id, + source_system + ) + values + ( + public.gen_random_uuid(), + $$${faker.company.name()}$$, + $$Description: ${faker.lorem.words({ min: 5, max: 100 })}$$, + $$Comment: ${faker.lorem.words({ min: 5, max: 100 })}$$, + ${securityReviewTimestamp}, + ${publishTimestamp}, + (SELECT system_user_id from system_user where user_identifier = 'SIMS'), + 'SIMS' + ) + RETURNING submission_id; `; }; @@ -292,6 +296,7 @@ export const insertSubmissionFeature = (options: { submission_id, parent_submission_feature_id, feature_type_id, + source_id, data, record_effective_date ) @@ -300,6 +305,7 @@ export const insertSubmissionFeature = (options: { ${options.submission_id}, ${options.parent_submission_feature_id}, (select feature_type_id from feature_type where name = '${options.feature_type}'), + public.gen_random_uuid(), ${options.data ? `$$${JSON.stringify(options.data)}$$` : null}, now() ) diff --git a/database/src/seeds/05_security_test_data.ts b/database/src/seeds/05_security_test_data.ts index f09d53362..c1d7020ae 100644 --- a/database/src/seeds/05_security_test_data.ts +++ b/database/src/seeds/05_security_test_data.ts @@ -1,6 +1,8 @@ import { faker } from '@faker-js/faker'; import { Knex } from 'knex'; +const ENABLE_MOCK_FEATURE_SEEDING = Boolean(process.env.ENABLE_MOCK_FEATURE_SEEDING === 'true' || false); + /** * Inserts mock security rule data using real security rule definitions * @@ -9,6 +11,10 @@ import { Knex } from 'knex'; * @return {*} {Promise} */ export async function seed(knex: Knex): Promise { + if (!ENABLE_MOCK_FEATURE_SEEDING) { + return knex.raw(`SELECT null;`); // dummy query to appease knex + } + await knex.raw(` SET SCHEMA 'biohub'; SET SEARCH_PATH = 'biohub','public';`); diff --git a/database/src/seeds/06_submission_data.ts b/database/src/seeds/06_submission_data.ts index 7097301b8..8ddbc1b6d 100644 --- a/database/src/seeds/06_submission_data.ts +++ b/database/src/seeds/06_submission_data.ts @@ -7,6 +7,8 @@ import { insertSubmissionRecord } from './04_mock_test_data'; +const ENABLE_MOCK_FEATURE_SEEDING = Boolean(process.env.ENABLE_MOCK_FEATURE_SEEDING === 'true' || false); + /** * Inserts mock submission data * @@ -15,32 +17,25 @@ import { * @return {*} {Promise} */ export async function seed(knex: Knex): Promise { + if (!ENABLE_MOCK_FEATURE_SEEDING) { + return knex.raw(`SELECT null;`); // dummy query to appease knex + } + await knex.raw(` SET SCHEMA 'biohub'; SET SEARCH_PATH = 'biohub','public'; `); - // 1. submission (2) without children - await insertSubmissionRecord(knex); - await insertSubmissionRecord(knex); - - // 2. submission (1) without children but with security_review_timestamp - await insertSubmissionRecord(knex, true); - - // 3. submission (1) without children but with security_review_timestamp and published_timestamp - await insertSubmissionRecord(knex, true, true); - - // 4. submission (1) with children and SECURE (all submission features secure) and published_timestamp + // 1. SECURE (all submission features secure) and published_timestamp await createSubmissionWithSecurity(knex, 'SECURE'); - // 5. submission (1) with children and PARTIALLY SECURE (some submission features secure) and published_timestamp + // 2. PARTIALLY SECURE (some submission features secure) and published_timestamp await createSubmissionWithSecurity(knex, 'PARTIALLY SECURE'); - // 6. submission (1) with children and UNSECURE (zero submission features secure) and published_timestamp + // 3. UNSECURE (zero submission features secure) and published_timestamp await createSubmissionWithSecurity(knex, 'UNSECURE'); - // 7. submission (2) with children and UNSECURE (zero submission features secure) - // and not published and not reviewed + // 4. UNSECURE (zero submission features secure) and not published and not reviewed await createSubmissionWithSecurity(knex, 'UNSECURE', false); await createSubmissionWithSecurity(knex, 'UNSECURE', false); } @@ -51,14 +46,17 @@ const insertFeatureSecurity = async (knex: Knex, submission_feature_id: number, VALUES($$${submission_feature_id}$$, $$${security_rule_id}$$, $$${faker.date.past().toISOString()}$$);`); }; -const insertArtifactRecord = async (knex: Knex, row: { submission_id: number }) => { +const insertArtifactRecord = async ( + knex: Knex, + row: { submission_id: number; parent_submission_feature_id: number } +) => { const S3_KEY = 'dev-artifacts/artifact.txt'; const sql = insertSubmissionFeature({ submission_id: row.submission_id, - parent_submission_feature_id: null, + parent_submission_feature_id: row.parent_submission_feature_id, feature_type: 'artifact', - data: { s3_key: S3_KEY } + data: { artifact_key: S3_KEY } }); const submission_feature = await knex.raw(sql); @@ -70,7 +68,7 @@ const insertArtifactRecord = async (knex: Knex, row: { submission_id: number }) VALUES ( ${submission_feature_id}, - (select feature_property_id from feature_property where name = 's3_key'), + (select feature_property_id from feature_property where name = 'artifact_key'), $$${S3_KEY}$$ );`); }; @@ -82,12 +80,9 @@ const createSubmissionWithSecurity = async ( ) => { const submission_id = await insertSubmissionRecord(knex, reviewed, reviewed); const parent_submission_feature_id = await insertDatasetRecord(knex, { submission_id }); - const submission_feature_id = await insertSampleSiteRecord(knex, { - parent_submission_feature_id, - submission_id - }); + const submission_feature_id = await insertSampleSiteRecord(knex, { submission_id, parent_submission_feature_id }); - await insertArtifactRecord(knex, { submission_id }); + await insertArtifactRecord(knex, { submission_id, parent_submission_feature_id }); if (securityLevel === 'PARTIALLY SECURE') { await insertFeatureSecurity(knex, submission_feature_id, 1); diff --git a/database/src/seeds/07_env_region_look_up.ts b/database/src/seeds/07_env_region_look_up.ts deleted file mode 100644 index 0b3f621c9..000000000 --- a/database/src/seeds/07_env_region_look_up.ts +++ /dev/null @@ -1,75 +0,0 @@ -import { Knex } from 'knex'; - -/** - * Inserts mock submission data - * - * @export - * @param {Knex} knex - * @return {*} {Promise} - */ -export async function seed(knex: Knex): Promise { - await knex.raw(` - SET SCHEMA 'biohub'; - SET SEARCH_PATH = 'biohub','public'; - `); - - await insertENVRegions(knex); -} - -const insertENVRegions = async (knex: Knex) => { - await knex.raw(` - INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Peace','9','9- Peace','AR10100000','WHSE Admin Boundary',1 - , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-124.40409603696953,57.58059686606645],[-124.4023160178972,57.57839539458228],[-124.40204884699108,57.5748037751803],[-124.4026521662937,57.57081003746923],[-124.4038934196274,57.56636651176807],[-124.40525153061618,57.561126003135065],[-124.40414600573287,57.556779737806956],[-124.40064809022765,57.555625020175846],[-124.38896422125839,57.55540218812428],[-124.37838352038011,57.5532452033308],[-124.37289838011904,57.55047746839854],[-124.37155797240332,57.54819131425279],[-124.36844783149013,57.543891760010716],[-124.36460888480087,57.53828234659238],[-124.36063966736478,57.53455507210331],[-124.35863197798777,57.53381244682536],[-124.35114603245299,57.53063314892255],[-124.34282189502429,57.526770085157594],[-124.33439410793133,57.5230217985976],[-124.32500382241732,57.52029237713099],[-124.31619955603247,57.51945361911208],[-124.30962993125755,57.51873264203019],[-124.30794489041966,57.518666176536016],[-124.30053321511633,57.51697406033768],[-124.29838182482557,57.513142703919044],[-124.29856609981195,57.50902750942174],[-124.30057636819838,57.50367998802205],[-124.29786579060148,57.50041556945511],[-124.2892302031252,57.49705637745799],[-124.28648895660768,57.496356934994395],[-124.28004960108898,57.49507098087021],[-124.2654290788327,57.49373109859831],[-124.25182669625889,57.494968729231786],[-124.24362228904975,57.497209985251814],[-124.23932599596267,57.49980802326926],[-124.23820304548755,57.50277134128228],[-124.23464875274736,57.505199750146296],[-124.22276292685713,57.50570388050508],[-124.22222861901946,57.50569667552179],[-124.21496868438858,57.50495041062003],[-124.21497464824985,57.504912364808206],[-124.21497889347094,57.504866446135125],[-124.21498313868179,57.50482052746377],[-124.21498738388237,57.504774608794136],[-124.21498954199164,57.50472866186303],[-124.21499373453769,57.50468386385369],[-124.21499589263411,57.50463791692609],[-124.21499799808902,57.50459309065701],[-124.21500010353894,57.50454826438969],[-124.2150001219152,57.50450340986105],[-124.21500008765535,57.50445967599075],[-124.2149979663317,57.50441591385898],[-124.2149958450129,57.5043721517289],[-124.214993723699,57.50432838960043],[-124.21498951533329,57.504284599210436],[-124.21498525434107,57.5042419294782],[-124.21498094072213,57.50420038040394],[-124.21497250564957,57.50415765414764],[-124.21496610500672,57.50411607681247],[-124.21495547765078,57.50407556360704],[-124.21494490295458,57.504033929746086],[-124.2149342756442,57.50399341654187],[-124.21492150868036,57.503953995730015],[-124.21490028832127,57.5039167031719],[-124.21485996885833,57.50388588016098],[-124.21482512095398,57.503871951774855],[-124.21480258470973,57.503862675601354],[-124.21473038083411,57.503843755770006],[-124.21464544426067,57.503829148911215],[-124.21455408871587,57.50381781915473],[-124.21445641948422,57.503807525176065],[-124.2143586976514,57.5037983517808],[-124.2142630628947,57.50378920658785],[-124.2141717602194,57.503776755911346],[-124.21408891103766,57.50376217697099],[-124.21400804361731,57.50374986756845],[-124.21392931594183,57.50373646574114],[-124.21384844862783,57.503724156241034],[-124.21376758136623,57.503711846691495],[-124.2136888011806,57.50369956537626],[-124.213607934023,57.503687255729034],[-124.2135271195962,57.50367382537718],[-124.21344833956704,57.503661543918724],[-124.21336747256821,57.50364923412432],[-124.21328869264161,57.50363695257073],[-124.21320787843452,57.50362352202378],[-124.21312701159445,57.50361121208234],[-124.21304823182432,57.503598930385465],[-124.21296736508828,57.50358662034638],[-124.21288655110173,57.50357318960303],[-124.2128077714881,57.503560907762854],[-124.21272690491081,57.50354859757669],[-124.21264603838587,57.503536287341106],[-124.21256725892644,57.50352400535767],[-124.21248644521437,57.50351057436976],[-124.2124055788482,57.503498263987034],[-124.21232679954527,57.50348598186031],[-124.21224593328311,57.50347367137994],[-124.21216720680094,57.50346026850364],[-124.21208634064516,57.50344795792563],[-124.21200547454175,57.50343564729824],[-124.2119266954979,57.503423364933084],[-124.2118458822261,57.503409933553705],[-124.21176501628148,57.50339762277912],[-124.21168623739409,57.503385340270725],[-124.21160537155349,57.50337302939855],[-124.21152450576527,57.50336071847696],[-124.21144577977137,57.50334731517111],[-124.21136491408954,57.503335004151886],[-124.21128613546121,57.503322721404984],[-124.2112052698834,57.50331041028814],[-124.21112445710665,57.50329697846788],[-124.21104567863482,57.5032846955778],[-124.21096481321578,57.503272384313824],[-124.2108839478491,57.503260073000334],[-124.21080522228951,57.50324666931326],[-124.21072435702925,57.50323435790217],[-124.21064349182134,57.50322204644161],[-124.21056471366022,57.50320976326495],[-124.21048384855635,57.50319745170676],[-124.21040303627468,57.503184019445584],[-124.21032425827003,57.503171736125594],[-124.21024339332496,57.5031594244204],[-124.21016461542287,57.50314714100526],[-124.21008380336097,57.50313370854908],[-124.21000293857466,57.503121396696756],[-124.20992416082909,57.50310911313845],[-124.20984329614679,57.50309680118842],[-124.20976243151688,57.50308448918884],[-124.20968370671638,57.503071084834126],[-124.20960284219288,57.50305877273707],[-124.20952197772175,57.50304646059055],[-124.20944320028687,57.503034176745544],[-124.20936238872005,57.50302074384847],[-124.20928361139006,57.50300845990847],[-124.20920274712935,57.50299614756664],[-124.20912188292104,57.502983835175364],[-124.20904315855486,57.50297043043927],[-124.20896229445293,57.502958117950314],[-124.20888143040338,57.50294580541202],[-124.20880265338413,57.502933521185405],[-124.20872178943863,57.50292120854944],[-124.20864097836686,57.50290777521148],[-124.20856220150412,57.50289549084155],[-124.20848133771739,57.50288317805847],[-124.20840047398305,57.50287086522596],[-124.20832175010523,57.50285746006041],[-124.2082408864773,57.50284514713029],[-124.20816210987363,57.502832862522006],[-124.2080812463497,57.50282054949418],[-124.20800043571832,57.5028071157649],[-124.20792165927118,57.50279483101324],[-124.20784079590604,57.50278251783838],[-124.20775993259332,57.5027702046141],[-124.2076811563004,57.50275791971916],[-124.20760034594352,57.50274448574531],[-124.20751948278956,57.502732172373875],[-124.20744070665316,57.50271988733566],[-124.20735984360324,57.50270757386666],[-124.20727903346696,57.502694139696416],[-124.20720025748707,57.50268185451496],[-124.20711939459596,57.50266954089885],[-124.20704061871864,57.50265725562233],[-124.20695980880215,57.50264382125692],[-124.2068789460698,57.50263150749378],[-124.20680017034901,57.50261922207396],[-124.20671930772073,57.502606908213124],[-124.20663844514483,57.5025945943028],[-124.20655972246054,57.50258118808832],[-124.20647885999105,57.50256887408035],[-124.20639799757394,57.502556560023066],[-124.20631922216391,57.502544274316655],[-124.20623841274254,57.50253083951051],[-124.20615963743737,57.50251855370898],[-124.20607877523071,57.50250623945643],[-124.20599791307644,57.502493925154184],[-124.20591913792552,57.5024816392095],[-124.20583832877868,57.5024682041588],[-124.20575746678321,57.50245588970957],[-124.20567869178883,57.5024436036216],[-124.2055978298974,57.50243128907476],[-124.20551702097117,57.50241785382773],[-124.2054382461333,57.50240556759646],[-124.20535738440067,57.502393252902515],[-124.20527652272042,57.502380938159114],[-124.20519780095893,57.50236753113403],[-124.2051169393851,57.502355216292955],[-124.20503816480635,57.50234292982333],[-124.20495730333658,57.50233061488474],[-124.2048764419192,57.502318299896615],[-124.20479772042853,57.50230489263328],[-124.20471685911754,57.50229257754759],[-124.20463599785897,57.50228026241246],[-124.204557223591,57.502267975656245],[-124.2044764153797,57.502254539773226],[-124.20439555427993,57.50224222449105],[-124.20431678016848,57.50222993759154],[-124.20423591917276,57.50221762221168],[-124.20415511118209,57.50220418613237],[-124.20407633722718,57.50219189908951],[-124.20399547639028,57.50217958356265],[-124.20391670253794,57.50216729642477],[-124.20383584180507,57.502154980800206],[-124.20375503408899,57.50214154447637],[-124.2036762603932,57.502129257195215],[-124.20359539981916,57.502116941423594],[-124.20349918919257,57.502120115582855],[-124.20341555310065,57.50212233970136],[-124.20333191699895,57.50212456376684],[-124.20324828088746,57.50212678777928],[-124.20316667871404,57.502130160838526],[-124.20308304258056,57.50213238474613],[-124.20299935345068,57.50213572925016],[-124.20291571729517,57.502137953051594],[-124.2028320281383,57.50214129744947],[-124.20274839196075,57.5021435211448],[-124.20266678970704,57.50214689389465],[-124.2025831005086,57.50215023813449],[-124.20249946429684,57.50215246167192],[-124.2024157750714,57.5021558058056],[-124.20233208583126,57.50215914988608],[-124.2022505365158,57.502161401729126],[-124.2021668472488,57.50216474570477],[-124.20208315796708,57.502168089627226],[-124.20199946867064,57.50217143349665],[-124.20191583237808,57.5021736566638],[-124.20183214305466,57.502177000427025],[-124.2017505406478,57.502180372609935],[-124.20166685129506,57.502183716268135],[-124.20158316192757,57.502187059873314],[-124.20149952557631,57.50218928277643],[-124.20141583618185,57.50219262627538],[-124.20133423370453,57.5021959982006],[-124.20125054428075,57.50219934159459],[-124.20116685484227,57.50220268493558],[-124.20108321843229,57.502204907574594],[-124.20099952896685,57.50220825080928],[-124.20091583948665,57.50221159399094],[-124.20083423692428,57.502214965606704],[-124.20075060046781,57.50221718803475],[-124.20066691094607,57.5022205310584],[-124.2005832214096,57.502223874028786],[-124.20049958491886,57.50222609629769],[-124.20041589535545,57.50222943916193],[-124.2003342927104,57.50223281046829],[-124.20025065618546,57.50223503257919],[-124.20016696658047,57.50223837528551],[-124.2000833300335,57.502240597290246],[-124.19999964040153,57.502243939890334],[-124.19991809076608,57.50224619029069],[-124.19983445418734,57.50224841213759],[-124.19975076451631,57.502251754579746],[-124.19966712791556,57.50225397632042],[-124.19958349130505,57.50225619800814],[-124.19949985468477,57.50225841964272],[-124.19941621805472,57.502260641224396],[-124.19933466834888,57.5022628912639],[-124.19925103169935,57.50226511274064],[-124.19916739504,57.50226733416439],[-124.19908375837089,57.50226955553506],[-124.19900012169202,57.5022717768527],[-124.19891648500337,57.50227399811713],[-124.1988349352393,57.502276247847675],[-124.19875135164322,57.502277348359584],[-124.19866771492778,57.50227956946627],[-124.19858413131956,57.50228066987212],[-124.19850054770649,57.50228177022496],[-124.19841691096667,57.502283991172675],[-124.19833332734144,57.502285091419445],[-124.19825183064586,57.50228622014155],[-124.19816824701098,57.502287320283706],[-124.19808466337126,57.50228842037289],[-124.19800107972671,57.50228952040904],[-124.1979174960773,57.50229062039221],[-124.19783396556217,57.50229059967489],[-124.19775038190555,57.50229169955216],[-124.19766685138818,57.50229167872896],[-124.19758326772435,57.5022927785003],[-124.19750182413894,57.50229278611123],[-124.1974182936193,57.502292765130484],[-124.19733476309972,57.50229274409686],[-124.19725123258026,57.50229272301031],[-124.19716770206088,57.50229270187078],[-124.19708417154162,57.5022926806784],[-124.19700064102243,57.502292659433046],[-124.19691711050334,57.50229263813484],[-124.19683363315295,57.502291496136465],[-124.19675010263651,57.502291474732324],[-124.19666662529367,57.50229033262822],[-124.1965830947799,57.502290311118365],[-124.19649961744464,57.50228916890854],[-124.19641822704763,57.50228805520302],[-124.19633474972227,57.50228691288886],[-124.19625127240197,57.502285770521645],[-124.19616779508665,57.50228462810179],[-124.1960843177764,57.502283485628915],[-124.19600084047111,57.5022823431033],[-124.19591736317086,57.502281200524706],[-124.19583388587564,57.502280057893394],[-124.19575040858543,57.50227891520914],[-124.19566698450322,57.502276651825376],[-124.19558350722549,57.502275509035435],[-124.19550008316072,57.50227324554608],[-124.19541660589549,57.502272102650544],[-124.19533318184811,57.50226983905558],[-124.19524970459541,57.50226869605426],[-124.19516628056543,57.50226643235375],[-124.19508280332522,57.50226528924673],[-124.19499937931265,57.50226302544057],[-124.19491595531004,57.50226076158161],[-124.19483253131736,57.50225849766987],[-124.1947490541046,57.50225735435159],[-124.19466563012934,57.50225509033424],[-124.19458220616403,57.50225282626405],[-124.19449878220863,57.50225056214115],[-124.19441535826316,57.50224829796535],[-124.19433193432766,57.50224603373687],[-124.19425059733122,57.5022437980471],[-124.1941671734154,57.50224153371433],[-124.19408374950952,57.502239269328804],[-124.19400032561356,57.502237004890425],[-124.19391695498207,57.50223361975342],[-124.19383353110847,57.5022313552095],[-124.1937501072448,57.50222909061285],[-124.19366668339106,57.50222682596337],[-124.19358325954727,57.50222456126119],[-124.1934998889802,57.50222117586046],[-124.19341646515875,57.50221891105263],[-124.19333304134722,57.50221664619205],[-124.19324961754566,57.5022143812787],[-124.19316624703063,57.502210995666964],[-124.1930828232514,57.50220873064816],[-124.1929993994821,57.502206465576435],[-124.19291597572274,57.502204200452],[-124.19283260525977,57.5022008146293],[-124.19274918152274,57.502198549399324],[-124.1926657577957,57.502196284116536],[-124.19258238737237,57.50219289813563],[-124.19249896366763,57.50219063274734],[-124.19241553997284,57.50218836730627],[-124.19233216958915,57.50218498116715],[-124.19224874591673,57.50218271562053],[-124.19216532225423,57.502180450021065],[-124.19208189860167,57.502178184368915],[-124.19199852827003,57.50217479801885],[-124.19191510463985,57.50217253226101],[-124.19183168101955,57.50217026645056],[-124.19174825740924,57.50216800058722],[-124.19166483380887,57.50216573467113],[-124.1915814635417,57.50216234805732],[-124.19149803996368,57.50216008203578],[-124.19141461639559,57.502157815961255],[-124.19133327975955,57.502155578471786],[-124.19124985621119,57.50215331229313],[-124.19116643267274,57.50215104606168],[-124.19108306248219,57.502147659132696],[-124.19099963896612,57.5021453927957],[-124.19091626880282,57.502142005761314],[-124.19083284530909,57.5021397393188],[-124.19074947517306,57.5021363521789],[-124.19066610505189,57.50213296498643],[-124.19058273494558,57.50212957774109],[-124.19049936485412,57.502126190443136],[-124.19041604813508,57.50212168244803],[-124.19033267807579,57.502118295044625],[-124.19024930803135,57.50211490758856],[-124.19016599136671,57.50211039943544],[-124.19008262135443,57.50210701187399],[-124.18999930472687,57.50210250361555],[-124.18991598811905,57.502097995304545],[-124.18983261815627,57.502094607585036],[-124.18974930158552,57.50209009916862],[-124.18966598503454,57.50208559069965],[-124.18958266850332,57.50208108217804],[-124.18949935199187,57.50207657360384],[-124.18941598211319,57.50207318562087],[-124.18933266563882,57.50206867694125],[-124.18924934918418,57.50206416820908],[-124.18916603274936,57.5020596594242],[-124.18908271633427,57.50205515058674],[-124.18899939993892,57.50205064169664],[-124.1889160301617,57.50204725339759],[-124.18883271380346,57.502042744402125],[-124.18874939746496,57.50203823535411],[-124.18866608114625,57.50203372625336],[-124.18858271143584,57.502030337743534],[-124.18849939515421,57.50202582853756],[-124.18841602547595,57.50202243992239],[-124.1883327092314,57.502017930611025],[-124.18824933958534,57.5020145418905],[-124.18816596995413,57.50201115311721],[-124.18808265376397,57.50200664364786],[-124.18799928416496,57.50200325476926],[-124.1879159145808,57.5019998658379],[-124.18783254501152,57.50199647685375],[-124.18774917545707,57.50199308781698],[-124.18766575247908,57.50199081937065],[-124.1875823829519,57.50198743022833],[-124.18750104690614,57.501985190374796],[-124.18741767740602,57.50198180112839],[-124.18733425447255,57.50197953247228],[-124.18725083154902,57.5019772637633],[-124.18716740863547,57.50197499500164],[-124.18708393227632,57.501973846830026],[-124.18700050938024,57.50197157796272],[-124.18691703303361,57.50197042968547],[-124.1868356970634,57.501968189421476],[-124.18675222072919,57.5019670410399],[-124.18666869093221,57.50196701324812],[-124.18658521460566,57.50196586476071],[-124.18650168481138,57.50196583686314],[-124.18641820849243,57.50196468826995],[-124.18633676560873,57.5019646889834],[-124.18625318233715,57.501965781570966],[-124.18616965254334,57.50196575346297],[-124.18608606926462,57.50196684594457],[-124.1860045728889,57.50196796709521],[-124.18592098960059,57.50196905947213],[-124.18583740630747,57.50197015179608],[-124.18575376951476,57.50197236470938],[-124.1856722196202,57.50197460629697],[-124.1855885828081,57.50197681910541],[-124.18550494598621,57.501979031860834],[-124.18542334255817,57.50198239393674],[-124.18533965220739,57.501985727229574],[-124.18525804875033,57.5019890892031],[-124.18517435837033,57.50199242239107],[-124.18509066797566,57.50199575552581],[-124.18500901095825,57.5020002379874],[-124.18492526701262,57.50200469165928],[-124.18484360995652,57.50200917401848],[-124.18475986597184,57.5020136275853],[-124.18467820887703,57.502018109842034],[-124.18459446485326,57.50202256330386],[-124.18451066727837,57.502028137354344],[-124.18442895658912,57.50203374009861],[-124.1843452125017,57.50203819340219],[-124.18426350176644,57.50204379604402],[-124.18417970409621,57.50204936988423],[-124.1840979397688,57.50205609306528],[-124.18401414204719,57.502061666800444],[-124.18393243121264,57.50206726923711],[-124.183850666803,57.50207399226482],[-124.1837668690057,57.50207956584288],[-124.1836851045403,57.50208628876799],[-124.1836012531332,57.502092982882424],[-124.18351948860966,57.502099705704985],[-124.18343569070713,57.50210527907261],[-124.18335392612786,57.50211200179245],[-124.1832700746057,57.50211869569644],[-124.1831883099683,57.50212541831364],[-124.18310440481427,57.50213323275373],[-124.18302264011632,57.50213995526836],[-124.18294087538945,57.502146677732334],[-124.18285702371807,57.50215337137378],[-124.18277525893305,57.502160093735036],[-124.18269140720292,57.5021667872712],[-124.182609588772,57.50217463017109],[-124.18252573698062,57.50218132360193],[-124.18244397207687,57.502188045757926],[-124.18236012022678,57.50219473908345],[-124.18227835526488,57.50220146113684],[-124.18219450335602,57.502208154357234],[-124.18211273833602,57.502214876307875],[-124.18203097328708,57.50222159820799],[-124.18194712129022,57.50222829127108],[-124.18186535618318,57.50223501306846],[-124.18178150412757,57.50224170602626],[-124.18169973896235,57.50224842772105],[-124.18161588684802,57.50225512057364],[-124.18153412162467,57.50226184216579],[-124.18145032307363,57.502267414272175],[-124.18136855779458,57.50227413576168],[-124.1812847591922,57.50227970776287],[-124.1812030474868,57.50228530850906],[-124.18111924883551,57.50229088040516],[-124.18103539652533,57.50229757288879],[-124.18095368474481,57.5023031734803],[-124.18086993965683,57.50230762457734],[-124.1807882278303,57.5023132250664],[-124.18070442905669,57.50231879669889],[-124.18062068390513,57.50232324763764],[-124.18053902565734,57.50232772733184],[-124.1804552804667,57.50233217816546],[-124.18037362218024,57.502336657757205],[-124.18028987695058,57.502341108485815],[-124.18020613170131,57.50234555916128],[-124.18012447335676,57.50235003859868],[-124.18004072806845,57.50235448916913],[-124.17995698276052,57.502358939686324],[-124.17987329110171,57.50236226951008],[-124.17979163268201,57.50236674874134],[-124.17970788731793,57.50237119910037],[-124.17962414193424,57.502375649406304],[-124.17954248345646,57.502380128483345],[-124.17945873803373,57.502384578684214],[-124.17937504627481,57.50238790819167],[-124.17929130081534,57.50239235828618],[-124.17920964226245,57.502396837157136],[-124.17912595045473,57.50240016650643],[-124.17904220493911,57.5024046164428],[-124.17895845940386,57.50240906632591],[-124.17887476754721,57.50241239551596],[-124.17879310890221,57.50241687412896],[-124.17870941701389,57.50242020321402],[-124.17862572511092,57.50242353224589],[-124.17854197948526,57.50242798186452],[-124.17845828755051,57.502431310790186],[-124.17837668252872,57.50243466850542],[-124.17829293684936,57.502439117965956],[-124.17820924486828,57.502442446733546],[-124.17812555287254,57.50244577544797],[-124.17804186086214,57.502449104109225],[-124.17796025576536,57.50245246156687],[-124.17787661745345,57.50245466948366],[-124.17779292540168,57.50245799798697],[-124.17770923333525,57.50246132643722],[-124.17762559498928,57.502463534194696],[-124.177541902896,57.502466862538725],[-124.17745826452811,57.50246907019009],[-124.17737665933694,57.50247242728654],[-124.1772930209472,57.502474634833085],[-124.17720938254777,57.50247684232666],[-124.17712574413862,57.50247904976702],[-124.17704210571975,57.50248125715445],[-124.17695846729116,57.50248346448883],[-124.17687696953935,57.50248457999738],[-124.17679333109389,57.502486787227],[-124.17670969263868,57.50248899440348],[-124.17662610793839,57.502490080887775],[-124.17654252323331,57.50249116731917],[-124.17645893852344,57.50249225369743],[-124.17637535380882,57.50249334002278],[-124.17629385601872,57.502494455170876],[-124.17621027129454,57.502495541391646],[-124.17612668656557,57.502496627559296],[-124.17604315561364,57.50249659303501],[-124.17595962466184,57.50249655845789],[-124.17587603992345,57.502497644466686],[-124.17579459589865,57.50249763866735],[-124.17571106494476,57.50249760393268],[-124.1756275877851,57.502496448506356],[-124.17554411063053,57.502495293027216],[-124.175460633481,57.50249413749511],[-124.175377210138,57.5024918612716],[-124.17529587373326,57.50248961388688],[-124.17521245041004,57.502487337559074],[-124.17512902709682,57.5024850611786],[-124.17504565760476,57.50248166410666],[-124.1749622881276,57.502478266982074],[-124.17487891866534,57.50247486980482],[-124.17479560303654,57.50247035193647],[-124.17471437435408,57.50246586291633],[-124.17463100494119,57.50246246558233],[-124.17454768936902,57.502457947557396],[-124.17446442764495,57.502452308841576],[-124.17438111211484,57.50244779071128],[-124.17429785043771,57.502442151890314],[-124.17421453494966,57.502437633654836],[-124.1741312733195,57.502431994728695],[-124.17405009863792,57.502426384661284],[-124.17396683705677,57.50242074563136],[-124.17388357550035,57.50241510654885],[-124.17380031396861,57.50240946741373],[-124.17371705246157,57.50240382822614],[-124.17363379097927,57.50239818898598],[-124.17355052952165,57.502392549693184],[-124.1734672680887,57.50238691034788],[-124.1733860936014,57.50238129987189],[-124.17330283221752,57.50237566042283],[-124.17321957085834,57.50237002092116],[-124.17313630952387,57.502364381366945],[-124.17305299434433,57.502359862397824],[-124.1729697330568,57.502354222738425],[-124.17288647179402,57.502348583026546],[-124.17280315667881,57.502344063899386],[-124.17272192850152,57.50233957365205],[-124.17263861342565,57.50233505442105],[-124.17255529836955,57.502330535137546],[-124.172507691097,57.50227829137432],[-124.17246992575944,57.502238519287346],[-124.17243007359076,57.50219871825399],[-124.17239027539453,57.50215779657295],[-124.17235042339388,57.50211799551838],[-124.17231057147666,57.50207819445312],[-124.17226863274166,57.502038364437745],[-124.17222669409455,57.50199853441051],[-124.17218684243213,57.50195873331199],[-124.172142817064,57.50191887431999],[-124.17210087868054,57.50187904425688],[-124.17205894038497,57.501839214181736],[-124.17201486138978,57.5018004757879],[-124.17197292327103,57.501760645688236],[-124.1719288983566,57.50172078663176],[-124.1718869604158,57.501680956507485],[-124.17184293568381,57.50164109742512],[-124.171800997921,57.50160126727628],[-124.17175697337142,57.501561408168],[-124.1717149818786,57.501522698630815],[-124.17167304438046,57.501482868445436],[-124.17162902010216,57.50144300929852],[-124.17158916964785,57.50140320803891],[-124.17154723241337,57.50136337781769],[-124.17150529526678,57.50132354758458],[-124.17146544506723,57.50128374629162],[-124.17142559495112,57.501243944988076],[-124.17138579883574,57.501203023038144],[-124.17134594888766,57.50116322171331],[-124.17130818587329,57.501123449332546],[-124.17127047685842,57.50108255630679],[-124.17123480084892,57.50104281286305],[-124.1711991788365,57.50100194877554],[-124.17116355690065,57.50096108467991],[-124.17112996795596,57.50092137016904],[-124.1710964330068,57.50088053501561],[-124.17106498496416,57.50083972881362],[-124.17103353698907,57.50079892260563],[-124.17100422983934,57.500757024715924],[-124.17097486882552,57.50071624745636],[-124.17094759470011,57.50067549915201],[-124.17092246138643,57.500633659169395],[-124.17089732812802,57.50059181918347],[-124.17087428174344,57.50055000815587],[-124.17085332222571,57.5005082260875],[-124.17083236275401,57.50046644401743],[-124.17081349013996,57.500424690907955],[-124.17079675831002,57.50038184612547],[-124.17078211332462,57.50033903030548],[-124.17076955517663,57.50029624344864],[-124.17075699705694,57.500253456592205],[-124.1707486664996,57.50020960702868],[-124.17074242275876,57.500165786429996],[-124.1707361790323,57.50012196583273],[-124.17073410890515,57.50007820316424],[-124.17073203878275,57.5000344404975],[-124.1707300226,57.49998955719807],[-124.17073217999226,57.49994473182806],[-124.17073433737941,57.49989990645967],[-124.1707385815417,57.49985511005672],[-124.17074282569398,57.499810313655374],[-124.17074915661158,57.49976554621916],[-124.17075762822077,57.49971968711367],[-124.17076604587615,57.49967494864358],[-124.17077451744478,57.499629089540754],[-124.1707850757583,57.499583259402115],[-124.17079766687696,57.49953857886107],[-124.17080822513745,57.49949274872417],[-124.17082087013031,57.49944694755071],[-124.17083351509274,57.49940114637777],[-124.17084824677754,57.49935537416749],[-124.17086083774647,57.49931069362931],[-124.17087556936335,57.499264921419645],[-124.17089030094472,57.499219149210035],[-124.17090503249064,57.49917337700067],[-124.17091976400107,57.499127604791525],[-124.17093444154851,57.49908295321596],[-124.17094917298849,57.499037181007196],[-124.17096390439302,57.49899140879862],[-124.170978581836,57.4989467572235],[-124.17099325924451,57.4989021056486],[-124.1710079905436,57.49885633344045],[-124.17102058115952,57.498811652906646],[-124.17103317174583,57.49876697237338],[-124.17104570837878,57.49872341247379],[-124.17105829890633,57.49867873194161],[-124.1710708894043,57.498634051409944],[-124.17108139316169,57.49858934192063],[-124.17109189689435,57.49854463243236],[-124.17110448730843,57.498499951902744],[-124.17111499098922,57.49845524241606],[-124.17112554856631,57.49840941229734],[-124.17113605219733,57.498364702812616],[-124.17114660972389,57.49831887269589],[-124.17115502661139,57.498274134256],[-124.17116558408989,57.49822830414136],[-124.17117608762383,57.498183594660524],[-124.17118455836552,57.49813773559134],[-124.17119511577057,57.49809190547985],[-124.17120353255073,57.49804716704576],[-124.17121408990775,57.49800133693638],[-124.171222560563,57.497955477872225],[-124.17123311787164,57.497909647765034],[-124.1712436751548,57.49786381765894],[-124.17125214574372,57.49781795859822],[-124.17126264906247,57.49777324912659],[-124.17127111960835,57.49772739006845],[-124.1712816767951,57.49768155996655],[-124.1712922339564,57.49763572986577],[-124.17130279109223,57.49758989976582],[-124.17131329428841,57.4975451902991],[-124.17132385137373,57.497499360201196],[-124.1713344084336,57.497453530104245],[-124.171344965468,57.4974077000083],[-124.17135755520815,57.49736301949917],[-124.17136811218951,57.49731718940503],[-124.1713807018725,57.49727250889723],[-124.17139125880084,57.49722667880483],[-124.17140384842664,57.49718199829834],[-124.17141857856492,57.497136226113476],[-124.17143116812865,57.49709154560796],[-124.1714437576628,57.497046865102945],[-124.17145843379153,57.49700221355066],[-124.17147310988578,57.496957561998556],[-124.17148778594556,57.49691291044651],[-124.17150246197086,57.49686825889459],[-124.17151917066899,57.4968247569255],[-124.17153593323545,57.49678013432453],[-124.17155264185656,57.49673663235452],[-124.17156940434487,57.49669200975271],[-124.17158819949381,57.49664853673199],[-124.17160699459976,57.49660506371026],[-124.17162578966273,57.49656159068748],[-124.17164667128044,57.49651814661291],[-124.17166749894821,57.49647582316785],[-124.17168838047118,57.49643237908993],[-124.17170920804553,57.4963900556415],[-124.17173212216197,57.4963477611392],[-124.17175503622741,57.49630546663446],[-124.17178003682574,57.49626320107442],[-124.17180498347064,57.49622205614221],[-124.17182998395857,57.49617979057571],[-124.17185701707179,57.49613867458288],[-124.17188405012651,57.496097558586044],[-124.17191311580096,57.49605759216093],[-124.17194014873736,57.496016476155496],[-124.17197130085914,57.49597653866494],[-124.17200245291545,57.49593660116842],[-124.17203360490632,57.49589666366593],[-124.17206684339352,57.49585675510003],[-124.17210002792237,57.4958179671579],[-124.17213738549862,57.4957792370915],[-124.17217474299878,57.49574050701591],[-124.17221413309113,57.49570292650184],[-124.17225560965706,57.495665374916875],[-124.17229911880798,57.49562897288954],[-124.1723426278756,57.49559257084894],[-124.17238822340543,57.495556197732654],[-124.17243590539158,57.495519853538426],[-124.17248353340976,57.49548462995859],[-124.17253324787946,57.49544943529791],[-124.1725849949213,57.49541539018429],[-124.17263679574259,57.49538022442088],[-124.17269062913174,57.49534620820134],[-124.17274446242456,57.49531219196085],[-124.17280038215162,57.49527820463035],[-124.17285624791323,57.49524533790761],[-124.17291420010531,57.49521250009113],[-124.1729721521973,57.4951796622502],[-124.17303010418921,57.495146824384705],[-124.17309014260276,57.49511401542094],[-124.17315012705613,57.49508232706134],[-124.1732122517826,57.49504954696919],[-124.17327432254913,57.49501788747912],[-124.1733363932123,57.49498622796078],[-124.17339846377212,57.49495456841398],[-124.17346053422854,57.49492290883893],[-124.17352463724622,57.494892398785304],[-124.17358879400436,57.49486076807089],[-124.17365295065574,57.49482913732614],[-124.1737170533609,57.49479862718143],[-124.17378115596321,57.49476811700638],[-124.17384531229823,57.494736486170716],[-124.17390941469283,57.4947059759349],[-124.17397351698457,57.49467546566865],[-124.17403767300323,57.49464383474191],[-124.17410177508728,57.494613324415056],[-124.17416587706843,57.494582814057765],[-124.17422997894671,57.49455230367026],[-124.1742941345442,57.49452067262201],[-124.17435614972628,57.49449013326743],[-124.17441816480874,57.494459593884706],[-124.17448023360804,57.49442793384305],[-124.17454224848939,57.49439739440352],[-124.17460431708382,57.494365734305276],[-124.17466429909472,57.494334045277306],[-124.17472422719652,57.49430347685332],[-124.17478420900926,57.49427178777246],[-124.17484622339177,57.494241248194],[-124.17490823767464,57.49421070858723],[-124.17497233832988,57.49418019784863],[-124.1750385253526,57.494149715975105],[-124.17510465847157,57.49412035469943],[-124.17517079148843,57.49409099339133],[-124.17523901086878,57.49406166094305],[-124.17530931660802,57.494032357351365],[-124.17537962223889,57.49400305372298],[-124.17544987397415,57.49397487068811],[-124.17552221206485,57.49394671650427],[-124.1755946038313,57.493917441651114],[-124.17566897438145,57.49389043690503],[-124.17573922569416,57.493862253718724],[-124.17618045637329,57.49376070930196],[-124.17653709806338,57.49368154181543],[-124.17689577096597,57.493603522865946],[-124.17725444239657,57.49352550294566],[-124.17761514506637,57.493448631540026],[-124.17797381355975,57.493370609672795],[-124.17833044785672,57.493291437360796],[-124.17868296151599,57.493211085783145],[-124.17903146189185,57.4931273137112],[-124.17937386250406,57.49304009235089],[-124.17970807689335,57.49294939292887],[-124.18003421232767,57.49285297424643],[-124.18034001854254,57.492745060341065],[-124.18054284970881,57.49256395617059],[-124.1806386890028,57.492349976146784],[-124.18062517817178,57.49215242826722],[-124.18049691800806,57.49195329597705],[-124.18037288551267,57.49175310058859],[-124.18035750449927,57.491551041454294],[-124.18040476690909,57.49134872605141],[-124.18047508549273,57.491144486312685],[-124.18054123072412,57.490940188956436],[-124.18057190836184,57.49073540187652],[-124.18055668759816,57.490529981058536],[-124.180535208205,57.49032447385072],[-124.18054710909782,57.490119427610765],[-124.18057569979955,57.489914611868954],[-124.18061263511719,57.48970991138621],[-124.1806537424767,57.48950526854269],[-124.18069062335044,57.489301688739175],[-124.18410018474952,57.45502531446185],[-124.12101685115753,57.44933276477622],[-124.12132324939336,57.44920930400977],[-124.12162147573012,57.449082361891094],[-124.12187923764687,57.44893017198667],[-124.12217948859524,57.44880437893438],[-124.12249179892699,57.44868772808246],[-124.12280821993573,57.44857225650791],[-124.1231104383891,57.44844873222064],[-124.12338853193859,57.44830692168296],[-124.1236482549547,57.44815699925662],[-124.12391620105409,57.44800943628009],[-124.12421035201395,57.44788018789259],[-124.12455258159116,57.44779087126404],[-124.12490478731426,57.44771066670747],[-124.12524109329097,57.44761453585251],[-124.1255595257244,57.447500208018646],[-124.12586786798362,57.44737900767625],[-124.12617609793601,57.447260047753275],[-124.12651053351021,57.4471594017673],[-124.12683882606295,57.447056424839836],[-124.12712495521392,57.446920328030295],[-124.12742720167904,57.44679567344441],[-124.12773147487142,57.44667216838574],[-124.12803377249612,57.446546391869404],[-124.12834807507556,57.446430877554384],[-124.12867246423168,57.44632223402939],[-124.12900880351458,57.44622497309977],[-124.12935895663286,57.44614360654735],[-124.12973328787554,57.44607940288069],[-124.13011984537289,57.44602097860991],[-124.1304921453744,57.44595562262195],[-124.13082375886125,57.445869503536834],[-124.1310946180668,57.44574663785832],[-124.13129671780538,57.44558018423671],[-124.13144804196298,57.44538609717507],[-124.1315646008843,57.4451780602991],[-124.13166432357762,57.44497314840556],[-124.13173876540714,57.44477348434218],[-124.13176977835258,57.444566475731314],[-124.13176536791858,57.44435896430896],[-124.13171900857365,57.44415646415142],[-124.13160569673308,57.443958620234156],[-124.13150494313233,57.44375983318959],[-124.13148364488319,57.44355656748681],[-124.13151668686857,57.44335070929806],[-124.13156014670527,57.443144999049636],[-124.13156812934741,57.44293990649229],[-124.13152807864537,57.44273637469797],[-124.13146297006446,57.442533608484645],[-124.13139161138594,57.442330753519414],[-124.13133280999564,57.44212695550522],[-124.13130115071861,57.44192242156556],[-124.1313031038604,57.44171275823438],[-124.13135681570847,57.44151055795663],[-124.13157534014341,57.4413488234388],[-124.13178580357162,57.44118136746073],[-124.1318954922688,57.44098556847364],[-124.13198670317571,57.440783900445695],[-124.13205510457378,57.440579665950835],[-124.13209844836362,57.44037619713346],[-124.13208975969043,57.44017086843944],[-124.13204981908922,57.439965096166304],[-124.13202237966057,57.439759501367746],[-124.13204911011363,57.43955467554906],[-124.13209903298774,57.43934457227713],[-124.132182015159,57.43914054498326],[-124.13231823051275,57.43895633601509],[-124.13259199865428,57.43881556860974],[-124.13294690229968,57.438720805454196],[-124.13331051773199,57.438660926458105],[-124.13369205850402,57.43861812078855],[-124.13406559440521,57.438568472487646],[-124.13440508460998,57.438490307011755],[-124.13470334809604,57.438359974749915],[-124.13494903389241,57.43819637786826],[-124.135136987205,57.438019627692526],[-124.1352859588269,57.43782999018697],[-124.13541025815897,57.43763327493531],[-124.1355241395445,57.43743641200236],[-124.13559048751402,57.437231026176924],[-124.13566297494266,57.43702797002338],[-124.13583216946805,57.43685095337464],[-124.13608359677025,57.43669752815527],[-124.13635974717496,57.43655005934536],[-124.13660716835878,57.43639321247773],[-124.1368157183706,57.43622123743174],[-124.13701204113534,57.43604348231424],[-124.13719191540893,57.43586100875483],[-124.13735112006009,57.435674878400334],[-124.13747934885417,57.435482702769306],[-124.13757868541533,57.4352845114425],[-124.13765735333602,57.43508266354627],[-124.13773190884777,57.43487963611147],[-124.13781676985873,57.43467899720028],[-124.13791199102984,57.43447962623435],[-124.13797815655187,57.43427760139478],[-124.1379839648136,57.43407360108027],[-124.13795024817473,57.43386792011145],[-124.13793741798415,57.43366141342727],[-124.13794766662984,57.433451869403015],[-124.13788643191795,57.43325476971863],[-124.1377181378446,57.4330729747011],[-124.13750999267046,57.432896222009056],[-124.13732498255223,57.43271531119506],[-124.1371674378321,57.432526939680486],[-124.13700775678456,57.432339659066365],[-124.13682258724654,57.43216210929564],[-124.13659077001856,57.432000718558506],[-124.13632710599552,57.4318512109331],[-124.13605067163508,57.43170712850181],[-124.13577188202214,57.43156861875945],[-124.13548032203938,57.43143553408927],[-124.13520159137211,57.43129590261774],[-124.13494002067043,57.43114642182752],[-124.13468486565397,57.430993667476926],[-124.13443190546515,57.430838701083815],[-124.13418311325896,57.430683793306],[-124.1339493430999,57.430520127475],[-124.13370263788194,57.43036524837507],[-124.1334195908915,57.43022891581397],[-124.1331237736427,57.430098008071646],[-124.13282357277988,57.429971522757675],[-124.1325147674521,57.429850521257364],[-124.13219072409706,57.42974275864426],[-124.13187106829582,57.429630572197325],[-124.1315796467557,57.429495238005146],[-124.13128806230067,57.42936326483165],[-124.13095481495708,57.429273309664545],[-124.13057771100566,57.429227583678255],[-124.13021612354974,57.42916301450621],[-124.12985908832285,57.429090659721524],[-124.12950874343201,57.42900942842895],[-124.12916273093157,57.42892489380464],[-124.1288167750345,57.42883923772853],[-124.12847082069358,57.42875358074917],[-124.12812486790885,57.428667922866474],[-124.12777897177777,57.42858114353321],[-124.12743307722297,57.428494363297155],[-124.12708926707644,57.42840761181103],[-124.12674337566924,57.428320829774734],[-124.12639754097593,57.42823292628923],[-124.12605373554828,57.42814617211676],[-124.12570784887504,57.42805938737777],[-124.12527345132231,57.42795003509373],[-124.12525914753702,57.427944224594235],[-124.1251937667416,57.42791750221362],[-124.12512844121241,57.427889659255605],[-124.12506311577872,57.427861816265725],[-124.12499992841767,57.42783288238457],[-124.12493674115264,57.42780394847377],[-124.12487355398362,57.427775014533374],[-124.12481042209419,57.42774496001804],[-124.12474723511897,57.4277160260184],[-124.12468410342701,57.42768597144401],[-124.12462310981262,57.42765482598687],[-124.12455997832005,57.427624771354466],[-124.12449898490516,57.42759362584141],[-124.12443793639575,57.427563600845694],[-124.12437694317862,57.42753245527764],[-124.12431595006127,57.42750130968211],[-124.12425495704365,57.42747016405926],[-124.12419396412582,57.42743901840886],[-124.1241329713077,57.42740787273094],[-124.12407203379416,57.42737560648104],[-124.12401312394877,57.427344490449926],[-124.12395213142995,57.42731334469071],[-124.12389119422083,57.427281078359734],[-124.12383020190326,57.42724993254566],[-124.12377129244983,57.42721881640953],[-124.12371030033,57.42718767054156],[-124.12364930830996,57.427156524646264],[-124.12358831638964,57.427125378723424],[-124.12352732456911,57.42709423277313],[-124.12346633284831,57.42706308679539],[-124.12340534122725,57.42703194079021],[-124.12334221172813,57.42700188558951],[-124.12328116507912,57.426971860072236],[-124.12322011852638,57.42694183452752],[-124.12315698932275,57.426911779240264],[-124.12309386021877,57.426881723923465],[-124.12303067597976,57.426852789120744],[-124.12296749183675,57.42682385428845],[-124.12290430778972,57.42679491942653],[-124.12283898585966,57.4267670753584],[-124.12277574676249,57.42673926097966],[-124.12271042502184,57.426711416849],[-124.1226451033767,57.42668357268666],[-124.12257764384671,57.42665681931171],[-124.12251221189311,57.42663121617113],[-124.1224447525492,57.42660446272925],[-124.12237718279307,57.42657995033956],[-124.12230758565245,57.42655428764425],[-124.12223996081617,57.42653089572823],[-124.1221703085982,57.426506353504315],[-124.12209851848564,57.4264829020552],[-124.12202875591942,57.42646060084319],[-124.12195691071462,57.426438269860654],[-124.12188506559404,57.42641593883936],[-124.12181108257012,57.426394698585625],[-124.1217391823453,57.42637348802809],[-124.12166514421106,57.42635336823561],[-124.12159110615505,57.42633324840196],[-124.12151498546417,57.42631309878606],[-124.12144089228514,57.42629409941095],[-124.12136471646915,57.42627507025118],[-124.12128854072925,57.42625604104757],[-124.12121236506546,57.426237011800225],[-124.12113613418832,57.426219103051295],[-124.12105990338287,57.42620119425847],[-124.12098158994353,57.42618325567245],[-124.1209032212817,57.42616643758207],[-124.12082699069119,57.42614852865513],[-124.12074862216906,57.42613171047319],[-124.12067025371614,57.42611489224487],[-124.12059188533244,57.426098073970024],[-124.12051143431833,57.42608122589207],[-124.12043306607403,57.42606440752312],[-124.12035464258672,57.426048709649585],[-124.12027627447857,57.426031891187705],[-124.120195768427,57.42601616345922],[-124.12011740045595,57.42599934490329],[-124.12003897723271,57.425983646842504],[-124.11996060939782,57.42596682819361],[-124.11988010361412,57.425951100272925],[-124.11980173591635,57.425934281529855],[-124.11972331295718,57.42591858328173],[-124.11964494539554,57.42590176444576],[-124.11956657790313,57.4258849455633],[-124.1194882104799,57.42586812663453],[-124.11940984312591,57.42585130765916],[-124.11933147584112,57.42583448863751],[-124.11925310862554,57.425817669569305],[-124.11917474147918,57.425800850454785],[-124.1190985124331,57.42578294053192],[-124.11902228345873,57.42576503056526],[-124.1189439718759,57.42574709077304],[-124.11886774304591,57.42572918071741],[-124.11879359696572,57.425711300401844],[-124.11871742363796,57.42569226971888],[-124.11864333306218,57.42567326877857],[-124.11856715988559,57.42565423800921],[-124.11849312482515,57.42563411644427],[-124.1184211725154,57.42561402462791],[-124.11834713761027,57.42559390298152],[-124.11827524082622,57.42557269054553],[-124.11820334412224,57.42555147807081],[-124.11813144749834,57.42553026555716],[-124.11806168899986,57.42550796225981],[-124.11799193058309,57.42548565892599],[-124.11792222763094,57.42546223501542],[-124.11785252476452,57.4254388110684],[-124.11778496003184,57.42541429634486],[-124.11771739538615,57.42538978158703],[-124.1176478589509,57.42536299591306],[-124.11757832261347,57.42533621020297],[-124.11750884176868,57.42530830391672],[-124.11743733376922,57.425279247249335],[-124.11736588127786,57.42524907000408],[-124.1172944843008,57.42521777218109],[-124.11722522549222,57.425185383589366],[-124.11715388415517,57.4251529651522],[-124.1170825429396,57.425120546677114],[-124.11701339530629,57.42508591689776],[-124.11694424779874,57.42505128708299],[-124.11687718305548,57.425016687047204],[-124.11681225648563,57.42498099625443],[-124.1167473854542,57.42494418489153],[-124.1166845971806,57.424907403315174],[-124.11662180902829,57.42487062171002],[-124.1165631862539,57.42483389971468],[-124.11650670164246,57.42479608697565],[-124.1164522997673,57.424758304034704],[-124.1163999806221,57.424720550894314],[-124.11635188224842,57.42468173684086],[-124.1163058111612,57.42464407313321],[-124.11626396082688,57.42460534852019],[-124.11622413775956,57.424567774258385],[-124.11618853542629,57.424529139097665],[-124.11615704295028,57.424491684118614],[-124.11612971575067,57.42445428878558],[-124.11610660924997,57.42441583256272],[-124.11608761256657,57.424378556529135],[-124.11607272568673,57.42434246068637],[-124.11606414206832,57.42430533378665],[-124.1160596682247,57.42426938708021],[-124.11606144217487,57.42423352985661],[-124.11607154649441,57.424197791942525],[-124.1160879540037,57.42416102297124],[-124.11611263640387,57.4241254938431],[-124.11614148393264,57.42409002436331],[-124.11617449657852,57.42405461452915],[-124.1162158949282,57.42401820344922],[-124.11625932035054,57.423982942719434],[-124.1163069662801,57.423946621085115],[-124.11635872184749,57.42391147961782],[-124.11641469789609,57.42387527723643],[-124.1164727564122,57.42383910465306],[-124.11653289738996,57.42380296186495],[-124.1165951208236,57.42376684886931],[-124.1166573995569,57.42372961530735],[-124.11672170531881,57.423693532071724],[-124.11678814893679,57.42365635808367],[-124.11685250986288,57.42361915424843],[-124.11691687066326,57.423581950382975],[-124.11698123133792,57.42354474648719],[-124.11704564729271,57.4235064220231],[-124.11710589800971,57.42346803790758],[-124.11716614860526,57.42342965376561],[-124.11722223397943,57.42339120997968],[-124.11727629209133,57.423351615825275],[-124.11732618499941,57.423311962035676],[-124.1173719127164,57.42327224861569],[-124.11741555779656,57.42323250537534],[-124.11745301056119,57.42319155216868],[-124.11748421563416,57.423150509539],[-124.11751131096192,57.42310828675704],[-124.11753210324132,57.4230670950972],[-124.11755086833583,57.423024753094055],[-124.11756963338858,57.42298241109004],[-124.11758637126319,57.422938918743945],[-124.11760305371097,57.42289654693502],[-124.1176197915097,57.42285305458796],[-124.11763444675168,57.42280953243809],[-124.11764904657312,57.42276713082565],[-124.11766370174864,57.42272360867578],[-124.11767627437919,57.42268005672405],[-124.11768890236668,57.422635384235534],[-124.11769939243267,57.422591802483545],[-124.11770993785959,57.422547100195004],[-124.11772042787717,57.42250351844469],[-124.11773097325496,57.42245881615778],[-124.11773943611105,57.422414084071214],[-124.11774784356368,57.42237047252283],[-124.11775630638031,57.422325740438495],[-124.11776274207034,57.422279858018015],[-124.11776912236218,57.42223509613608],[-124.11777550263898,57.422190334255404],[-124.11777980041848,57.42214554257624],[-124.11778618066774,57.42210078069861],[-124.11779053380644,57.42205486848562],[-124.11779483155298,57.4220100768111],[-124.11779918467089,57.42196416460141],[-124.11780139992706,57.42191934313045],[-124.11780575302669,57.421873430923945],[-124.11780802365085,57.42182748891966],[-124.11781023888867,57.421782667453726],[-124.11781250950203,57.421736725452966],[-124.11781269765244,57.42169075365446],[-124.11781491287682,57.421645932193755],[-124.11781510102385,57.421599960398765],[-124.11781737162048,57.42155401840495],[-124.11781755976409,57.421508046613546],[-124.1178177479073,57.42146207482396],[-124.11781788066988,57.421417223572455],[-124.11781806881223,57.42137125178642],[-124.11781825695412,57.4213252800021],[-124.11781844509557,57.42127930821975],[-124.1178185778567,57.421234456975164],[-124.11781668356728,57.421188455396965],[-124.11781687170995,57.42114248361988],[-124.11781700447246,57.421097632380466],[-124.11781511019174,57.4210516308075],[-124.11781524295603,57.4210067795716],[-124.11781543109953,57.42096080780161],[-124.11781348144798,57.42091592676974],[-124.11781366959316,57.420869955003305],[-124.1178138023585,57.420825103774284],[-124.11781185271583,57.42078022274766],[-124.117811985483,57.42073537152205],[-124.11781211824986,57.42069052029822],[-124.11781225101642,57.42064566907607],[-124.11781238378263,57.42060081785565],[-124.11781043415313,57.42055593683748],[-124.1178084845282,57.42051105582091],[-124.11780445251735,57.42046614500661],[-124.11780042051599,57.42042123419386],[-124.11779430613853,57.42037629358303],[-124.1177881917755,57.42033135297362],[-124.11778207742694,57.420286412365606],[-124.11777388071457,57.42024144195909],[-124.11776568402152,57.42019647155366],[-124.11775540497457,57.42015147134928],[-124.11774720832271,57.42010650094613],[-124.11773692932186,57.42006150074367],[-124.11772659496451,57.42001762107711],[-124.117716316012,57.41997262087641],[-124.11770395472274,57.41992759087548],[-124.11769367582126,57.4198825906765],[-124.11768131458801,57.41983756067681],[-124.11767103573757,57.41979256047956],[-124.11765867456027,57.41974753048139],[-124.11764839576087,57.4197025302856],[-124.11763597925663,57.41965862082322],[-124.11762570050801,57.41961362062914],[-124.11761542178371,57.419568620435996],[-124.11760514308368,57.41952362024372],[-124.1175948644079,57.419478620052416],[-124.11758458575645,57.41943361986203],[-124.1175763340764,57.41938977000988],[-124.11756605547082,57.41934476982141],[-124.11755994154264,57.41929982924071],[-124.11755174530477,57.41925485885792],[-124.11754563140789,57.41920991827993],[-124.1175394621404,57.419166098237426],[-124.11753543058907,57.419121187466054],[-124.11753139904725,57.41907627669626],[-124.11752736751491,57.419031365928056],[-124.1175253629163,57.41898760549917],[-124.11752549601452,57.41894275434207],[-124.11752562911245,57.41889790318671],[-124.11752784451215,57.41885308183685],[-124.11753000452188,57.41880938102237],[-124.11753430220861,57.41876458947959],[-124.11754068218006,57.41871982774208],[-124.11754700675243,57.41867618653964],[-124.11755338669418,57.418631424804865],[-124.11755976662093,57.41858666307153],[-124.11756817343455,57.41854305167634],[-124.11757871789466,57.418498349551705],[-124.11758718004968,57.41845361762509],[-124.11759766908054,57.41841003603576],[-124.11760821346924,57.41836533391388],[-124.11761875783318,57.41832063179287],[-124.11763132906201,57.41827708000819],[-124.11764395564269,57.41823240769068],[-124.11765658219377,57.41818773537368],[-124.1176691533355,57.418144183590236],[-124.11768177982779,57.41809951127409],[-124.1176964331703,57.418055989292725],[-124.11771114185763,57.41801134677829],[-124.11772585051048,57.41796670426403],[-124.11774050375152,57.41792318228268],[-124.11775521233594,57.417878539768445],[-124.11777194775621,57.41783504758702],[-124.11778873851401,57.417790434872224],[-124.11780339161541,57.41774691289031],[-124.11782018229754,57.417702300174874],[-124.11783697294031,57.41765768745905],[-124.11785370817024,57.417614195275355],[-124.11787258096716,57.41756961235696],[-124.11788931611775,57.41752612017194],[-124.11790610660192,57.41748150745393],[-124.11792492390063,57.417438045065545],[-124.11794171430428,57.41739343234622],[-124.11796053151885,57.41734996995601],[-124.11797732184199,57.41730535723552],[-124.11799619434126,57.41726077431097],[-124.11801501142814,57.41721731191782],[-124.11803180162903,57.41717269919545],[-124.1180506186318,57.41712923680043],[-124.11806949095804,57.41708465387206],[-124.1180862256708,57.417041161679904],[-124.11810509791172,57.41699657874972],[-124.11812183254514,57.41695308655637],[-124.11814070470078,57.4169085036244],[-124.11815749461837,57.416863890897616],[-124.11817631132521,57.41682042849592],[-124.11819310116229,57.41677581576791],[-124.11820983559826,57.41673232357142],[-124.11822870754155,57.41668774063519],[-124.11824544189817,57.416644248437414],[-124.11826223157665,57.41659963570711],[-124.11827693903868,57.41655499318451],[-124.11829367328195,57.416511500985514],[-124.11831046284543,57.41646688825416],[-124.11832511484177,57.41642336626294],[-124.11833982216207,57.416378723739996],[-124.11840658357626,57.41633482597505],[-124.11845832686622,57.41629968390854],[-124.1185100700607,57.416264541822706],[-124.11856181315972,57.416229399717636],[-124.1186135561633,57.41619425759324],[-124.1186652990714,57.41615911544954],[-124.11871704188407,57.41612397328653],[-124.11876878460124,57.41608883110417],[-124.11882052722298,57.41605368890253],[-124.11887226974926,57.416018546681634],[-124.11892401218009,57.415983404441306],[-124.11897580985355,57.41594714165027],[-124.1190275520919,57.415911999371325],[-124.1190772120941,57.41587682729392],[-124.1191289541434,57.4158416849773],[-124.11918069609725,57.415806542641405],[-124.11923243795562,57.41577140028611],[-124.1192842350473,57.415735137380025],[-124.11933597671319,57.41569999498612],[-124.11938563615429,57.415664822798604],[-124.11943737763117,57.41562968036694],[-124.1194891190126,57.41559453791598],[-124.11954091561948,57.415558274914176],[-124.11959265680841,57.41552313242472],[-124.11964231578203,57.415487960145526],[-124.11969405678194,57.41545281761814],[-124.11974585300108,57.41541655454014],[-124.11979551169432,57.41538138220626],[-124.11984725240818,57.415346239621776],[-124.11989904833662,57.41530997648661],[-124.11995078885796,57.415274833863634],[-124.12000044717733,57.41523966145668],[-124.12005224281504,57.415203398264445],[-124.12010398305033,57.41516825558428],[-124.12015364108936,57.41513308312265],[-124.12020538113562,57.41509794040472],[-124.1202571763856,57.41506167713614],[-124.12030683414426,57.415026504619775],[-124.12035857390451,57.41499136184483],[-124.12041036886377,57.41495509851925],[-124.12046002634209,57.41491992594828],[-124.12051176581627,57.414884783116136],[-124.12056356048485,57.41484851973354],[-124.1206132176828,57.414813347107916],[-124.12066495687097,57.41477820421866],[-124.12071675124882,57.41474194077907],[-124.12076640816645,57.41470676809865],[-124.12081814706856,57.41467162515244],[-124.12086994115572,57.41463536165569],[-124.12091959779302,57.4146001889207],[-124.12097133640908,57.41456504591735],[-124.12102313020553,57.41452878236356],[-124.12107486862914,57.41449363932159],[-124.12112452489252,57.414458466513494],[-124.1211762631271,57.41442332343368],[-124.12122805653584,57.41438705980357],[-124.12127979457793,57.41435191668524],[-124.12132945046743,57.414316743803916],[-124.12138118832053,57.41428160064784],[-124.12143298134156,57.41424533694139],[-124.12148471900217,57.41421019374663],[-124.12153437451776,57.41417502079212],[-124.12158611198937,57.41413987755963],[-124.1216379046227,57.414103613776874],[-124.12168964190184,57.41406847050565],[-124.12174137908553,57.41403332721527],[-124.12179311617379,57.4139981839055],[-124.12184277112836,57.413963010840895],[-124.12189450802761,57.41392786749335],[-124.12194630007914,57.413891603595665],[-124.12199803678594,57.413856460209516],[-124.1220497733973,57.41382131680403],[-124.12210150991316,57.41378617337927],[-124.12215324633361,57.41375102993514],[-124.1222049826586,57.413715886471856],[-124.12225671888818,57.4136807429892],[-124.12230845502229,57.41364559948715],[-124.12236019106096,57.41361045596589],[-124.1224119270042,57.413575312425344],[-124.12246366285196,57.413540168865346],[-124.12251539860429,57.41350502528622],[-124.12256921627305,57.413469911411674],[-124.12262095183263,57.41343476779299],[-124.12267268729677,57.413399624155],[-124.12272436744134,57.41336560102853],[-124.12277610271616,57.413330457352],[-124.12282991989807,57.413295343375935],[-124.1228816549801,57.41326019965994],[-124.12293338996672,57.413225055924606],[-124.12298715163867,57.41319106241798],[-124.12303888643407,57.4131559186433],[-124.12309062113405,57.41312077484925],[-124.12314443772992,57.41308566075076],[-124.12319611702735,57.41305163744782],[-124.12324993342831,57.41301652330824],[-124.12330161253777,57.41298249996595],[-124.12335542874386,57.41294738578526],[-124.1234071628687,57.41291224187288],[-124.12346092367652,57.41287824818158],[-124.12351473958854,57.41284313393886],[-124.12356641822635,57.4128091104974],[-124.12362017874653,57.412775116744015],[-124.1236739943661,57.41274000243919],[-124.12372775469282,57.412706008643745],[-124.1237794881465,57.412670864592215],[-124.12383324828153,57.41263687075559],[-124.12388700832065,57.41260287689812],[-124.12394076826382,57.41256888301962],[-124.12399458329664,57.41253376858968],[-124.12404834304633,57.41249977466914],[-124.12410210270009,57.41246578072767],[-124.1241558622579,57.41243178676516],[-124.12420962171981,57.41239779278172],[-124.12426546303851,57.41236382847433],[-124.12431922230675,57.412329834448066],[-124.12437298147904,57.41229584040071],[-124.12442674055539,57.412261846332406],[-124.12448258148132,57.41222788193672],[-124.12453634036402,57.4121938878256],[-124.12459009915078,57.41215989369341],[-124.12464593978166,57.41212592923134],[-124.12469964321056,57.412093055586666],[-124.12475548364584,57.41205909108006],[-124.12481132398156,57.41202512655055],[-124.1248671090586,57.41199228252878],[-124.12492294919689,57.411958317953804],[-124.12497873407989,57.4119254738865],[-124.12503451886673,57.411892629796434],[-124.12509238548323,57.41185981536762],[-124.12515025200005,57.411827000914116],[-124.1252080632684,57.41179530696655],[-124.12526592958763,57.41176249246401],[-124.12532379580719,57.411729677936954],[-124.12538160678352,57.41169798391566],[-124.1254414995792,57.411666319548196],[-124.12549936550148,57.411633504946515],[-124.12555925809795,57.41160184052722],[-124.12561915059489,57.41157017608139],[-124.12567904299225,57.41153851160916],[-124.1257388801573,57.411507967640745],[-124.12579877235738,57.41147630311572],[-124.1258607463617,57.411444668235966],[-124.125920638361,57.411413003657074],[-124.12598047513528,57.41138245958206],[-124.12604244883607,57.411350824619284],[-124.12610436731221,57.41132031015823],[-124.12616628568917,57.41128979566897],[-124.12622617719111,57.41125813095515],[-124.12628809536946,57.41122761641008],[-124.12635001344864,57.411197101836684],[-124.12641193142866,57.41116658723487],[-124.12647384930948,57.41113607260474],[-124.1265378489769,57.411105587607274],[-124.12659976665778,57.41107507291941],[-124.12666168423944,57.41104455820321],[-124.12672360172195,57.41101404345861],[-124.12678760098457,57.4109835583428],[-124.12684951826711,57.41095304354049],[-124.1269114354505,57.41092252870994],[-124.1269754344091,57.41089204350502],[-124.12703735139249,57.41086152861665],[-124.12710129505619,57.41083216388226],[-124.12716321184149,57.410801648936186],[-124.12722721039562,57.41077116361189],[-124.12728912698095,57.410740648608204],[-124.12735104346712,57.41071013357603],[-124.12741498663497,57.41068076869285],[-124.12747690292302,57.410650253603094],[-124.12754090097191,57.41061976813015],[-124.12760281706,57.41058925298252],[-124.12766473304892,57.41055873780664],[-124.12772867572095,57.41052937277476],[-124.12779059151175,57.41049885754119],[-124.1278525072034,57.41046834227915],[-124.12791442279588,57.41043782698886],[-124.12797633828916,57.410407311670134],[-124.1280382536833,57.41037679632316],[-124.12810016897825,57.41034628094774],[-124.12816208417404,57.41031576554397],[-124.12822399927065,57.41028525011185],[-124.12828596932414,57.4102536141213],[-124.12834580238159,57.410223069000004],[-124.12840771718045,57.410192553483775],[-124.12846755004442,57.41016200830874],[-124.12852951969528,57.41013037220669],[-124.12858935236396,57.41009982697779],[-124.12864923998183,57.41006816119248],[-124.12870907245686,57.41003761591076],[-124.12876895987743,57.410005950072446],[-124.1288288471985,57.40997428420789],[-124.12888873442002,57.40994261831678],[-124.12894653971964,57.4099109227764],[-124.12900642674376,57.409879256833435],[-124.12906423184936,57.40984756124302],[-124.12912203685876,57.40981586562807],[-124.12917984177204,57.40978416998848],[-124.12923770161647,57.40975135379434],[-124.12929550633565,57.40971965810571],[-124.12935128417207,57.40968681224604],[-124.12940914372102,57.40965399597919],[-124.12946492136336,57.40962115007318],[-124.12952069890956,57.409588304144364],[-124.12957647635957,57.40955545819279],[-124.12963017191178,57.409522582606435],[-124.12968594917122,57.40948973661031],[-124.1297396995485,57.40945574045105],[-124.12979339481933,57.40942286480083],[-124.12984714500642,57.40938886859971],[-124.1299008950976,57.40935487237748],[-124.12995256330196,57.40932084652737],[-124.13000423141403,57.40928682065796],[-124.13005589943384,57.409252794769216],[-124.13010762236237,57.409217648331214],[-124.13015726341196,57.409182472270246],[-124.13020893115362,57.40914844632438],[-124.13025857201954,57.40911327022722],[-124.1303082127938,57.40907809411241],[-124.13035582669383,57.40904176784947],[-124.13040338551109,57.40900656210026],[-124.13045099923099,57.40897023580506],[-124.13049861286011,57.40893390949377],[-124.13054622639845,57.40889758316635],[-124.13059175807972,57.408861227225955],[-124.13063728967413,57.40882487127091],[-124.13068079440275,57.408787365176124],[-124.13072632582391,57.40875100919256],[-124.13076983038059,57.408713503070615],[-124.1308133348516,57.40867599693547],[-124.13085481246084,57.408637340664846],[-124.13089831676123,57.408599834504074],[-124.13093973922581,57.40856229873868],[-124.13098121658302,57.40852364243189],[-124.13102269385612,57.40848498611331],[-124.13106208930105,57.40844630019355],[-124.13110148466602,57.40840761426321],[-124.13114087995098,57.40836892832231],[-124.1311803301241,57.4083291218414],[-124.13121972524786,57.40829043587946],[-124.1312570935239,57.408250599791224],[-124.13129446172182,57.40821076369385],[-124.13133182984164,57.408170927587115],[-124.13136919788327,57.40813109147106],[-124.13140656584682,57.408091255345745],[-124.13144185200952,57.40805138962767],[-124.13147921981893,57.40801155348451],[-124.13151456078963,57.407970567220445],[-124.13154990168428,57.40792958094835],[-124.1315851875473,57.40788971519736],[-124.13161844657924,57.407848699328476],[-124.13165378724915,57.40780771303263],[-124.1316870461357,57.40776669714928],[-124.1317203049506,57.40772568125895],[-124.13175356369395,57.407684665361614],[-124.1317868223657,57.4076436494572],[-124.13182013591414,57.40760151301675],[-124.13185339444163,57.40756049709843],[-124.13188462614985,57.40751833106779],[-124.13191788453534,57.40747731513605],[-124.131949116104,57.40743514909305],[-124.13198237434749,57.40739413314786],[-124.13201360577662,57.407351967092524],[-124.13204483713663,57.40730980103126],[-124.1320760684275,57.40726763496405],[-124.13210729964929,57.40722546889083],[-124.13213853080195,57.40718330281183],[-124.13216768021195,57.40714110715505],[-124.13219891122864,57.40709894106466],[-124.13223014217621,57.40705677496839],[-124.13225929138801,57.40701457929579],[-124.13229052219964,57.40697241318813],[-124.13231967128,57.406930217505085],[-124.13235095688735,57.40688693085754],[-124.13238010583541,57.40684473516418],[-124.13240925471892,57.40680253946583],[-124.13244054011967,57.40675925280163],[-124.13246968887087,57.40671705709299],[-124.13249883755752,57.40667486137938],[-124.13253012275169,57.40663157469846],[-124.13255927130602,57.40658937897453],[-124.13258841979584,57.406547183245586],[-124.13261762314433,57.40650386698326],[-124.13264885314089,57.406461700808755],[-124.13267800143383,57.406419505064534],[-124.13270720458267,57.40637618878703],[-124.13273635274557,57.406333993032895],[-124.13276758247156,57.406291826836096],[-124.13279678542071,57.40624851054341],[-124.13282593338675,57.40620631477394],[-124.13285716290896,57.40616414856044],[-124.13288631074366,57.40612195278058],[-124.13291759504374,57.406078666027646],[-124.13294674274611,57.40603647023747],[-124.13297797199546,57.405994304001354],[-124.13300711956646,57.40595210820078],[-124.13303834867985,57.40590994195325],[-124.13306957772413,57.4058677756999],[-124.1331008066993,57.40582560944055],[-124.13313203560537,57.40578344317532],[-124.13316326444233,57.40574127690412],[-124.13319449321018,57.40569911062709],[-124.13322566700475,57.40565806487195],[-124.13325689563536,57.405615898583],[-124.1332901508835,57.40557488236995],[-124.13332137937456,57.40553271606863],[-124.13335463448071,57.4054916998422],[-124.13338794441437,57.40544956308111],[-124.1334211993763,57.405408546840654],[-124.13345445426665,57.40536753059324],[-124.13348770908539,57.40532651433884],[-124.13353186575036,57.40527556108072],[-124.12892657609808,57.40001060593253],[-124.10257612355926,57.36984556351445],[-124.10267787946748,57.36976630066454],[-124.10268426867715,57.36972154148588],[-124.10269065787182,57.3696767823086],[-124.10269699130235,57.36963314361388],[-124.10270338046728,57.36958838443934],[-124.10270976961723,57.36954362526604],[-124.10271823834834,57.36949889613111],[-124.1027245717178,57.36945525744155],[-124.10273304041196,57.36941052830899],[-124.1027394294973,57.369365769140884],[-124.10274789815415,57.36932104001076],[-124.10275423146012,57.3692774013261],[-124.10276270008,57.36923267219826],[-124.10277116868004,57.369187943071466],[-124.1027796372602,57.369143213945875],[-124.1027880500748,57.36909960530215],[-124.10279651861555,57.36905487617864],[-124.10280498713642,57.36901014705633],[-124.10281345563746,57.36896541793507],[-124.10282192411862,57.36892068881497],[-124.10283033683581,57.36887708017656],[-124.10283880527756,57.36883235105863],[-124.10284727369945,57.36878762194176],[-124.10285782165654,57.36874292286086],[-124.10286629003629,57.36869819374622],[-124.10287678220395,57.3686546151475],[-124.10288525054186,57.368609886034726],[-124.10289579840531,57.368565186957426],[-124.10290426670106,57.36852045784677],[-124.10291481451749,57.36847575877118],[-124.10292536230922,57.36843105969646],[-124.10293377480015,57.368387451069154],[-124.10294432254524,57.368342751996074],[-124.1029548702656,57.368298052923876],[-124.10296541796123,57.368253353852545],[-124.10297596563215,57.36820865478193],[-124.10298651327837,57.3681639557121],[-124.10299700516171,57.36812037712308],[-124.10300755275885,57.3680756780549],[-124.10301810033127,57.36803097898752],[-124.10302864787897,57.36798627992086],[-124.10304127491347,57.36794161088703],[-124.1030518224093,57.367896911821816],[-124.10306236988038,57.36785221275753],[-124.10307286159134,57.36780863417366],[-124.10308548851526,57.36776396514213],[-124.10309603591016,57.367719266079945],[-124.10310866277736,57.36767459704949],[-124.10311921012038,57.367629897988806],[-124.10313183693086,57.367585228959456],[-124.10314238422202,57.36754052990018],[-124.10315501097575,57.36749586087189],[-124.10316550248287,57.367452282293485],[-124.10317812918035,57.36740761326622],[-124.10319075584825,57.36736294423929],[-124.10320338248657,57.36731827521286],[-124.10321392962008,57.36727357615777],[-124.10322655620169,57.36722890713253],[-124.1032391827537,57.36718423810756],[-124.10325180927617,57.36713956908313],[-124.1032643800403,57.36709602053821],[-124.10327700650406,57.36705135151456],[-124.10328755347749,57.36700665246342],[-124.10330017988453,57.36696198344088],[-124.10331280626197,57.36691731441872],[-124.10332543260986,57.36687264539708],[-124.10333805892819,57.36682797637583],[-124.10335276466559,57.36678333738202],[-124.10336539092232,57.36673866836145],[-124.10337796142467,57.366695119820136],[-124.10339058762273,57.366650450800414],[-124.1034032137912,57.3666057817811],[-124.1034158399301,57.36656111276221],[-124.10342846603943,57.36651644374381],[-124.10344317155092,57.366471804751384],[-124.10345579759868,57.36642713573358],[-124.10346842361687,57.36638246671636],[-124.10348099388422,57.366338918178016],[-124.1034956992658,57.36629427918617],[-124.10350832519329,57.36624961016999],[-124.10352095109121,57.366204941154116],[-124.10353565637438,57.3661603021628],[-124.10354828221074,57.36611563314774],[-124.10356090801754,57.366070964133016],[-124.1035756132023,57.366026325142144],[-124.1035881832299,57.365982776606415],[-124.103600808946,57.36593810759283],[-124.10361551403287,57.365893468602366],[-124.10362813968737,57.36584879958948],[-124.10364284470784,57.36580416059929],[-124.1036554703008,57.365759491587035],[-124.10367011954,57.36571597307512],[-124.10368274507185,57.3656713040635],[-124.10369744995997,57.36562666507373],[-124.10371007543024,57.365581996062794],[-124.10372270087095,57.36553732705221],[-124.10373740566068,57.36549268806295],[-124.1037499753277,57.365449139530895],[-124.10376468005154,57.36540450054186],[-124.10377730536955,57.365359831532665],[-124.10379201002694,57.36531519254387],[-124.1038046352834,57.36527052353527],[-124.1038193398744,57.36522588454674],[-124.10383190936,57.3651823360164],[-124.10384661388507,57.365137697028025],[-124.10385923901887,57.365093028020794],[-124.10387394347754,57.36504838903266],[-124.10388656854975,57.36500372002609],[-124.10390121723509,57.36496020151562],[-124.10391384224616,57.364915532509634],[-124.10392854657255,57.364870893521946],[-124.10394117152207,57.36482622451675],[-124.10395582007695,57.36478270600655],[-124.10396844496536,57.36473803700188],[-124.1039810698242,57.364693367997674],[-124.10399577398626,57.36464872901064],[-124.10400834308027,57.364605180484276],[-124.10402304717643,57.36456054149743],[-124.1040356719126,57.36451587249454],[-124.10404829661918,57.364471203492045],[-124.10406294491554,57.364427684982694],[-124.104075569561,57.3643830159809],[-124.10409027349284,57.364338376994695],[-124.10410284237673,57.36429482847045],[-124.10411546693153,57.364250159469734],[-124.10412809145674,57.364205490469345],[-124.10414279525872,57.36416085148391],[-124.10415536402414,57.36411730296096],[-124.10417006776021,57.36407266397569],[-124.10418471576462,57.36402914546706],[-124.10419941943235,57.363984506481756],[-124.10421412306567,57.36393986749641],[-124.10423085026076,57.363896379000664],[-124.10424555382335,57.363851740015086],[-124.10426228094398,57.36380825151847],[-124.10427906372057,57.36376364254479],[-124.1042957907644,57.36372015404709],[-124.10431251777007,57.36367666554883],[-124.10432930043001,57.363632056573614],[-124.10434602735887,57.363588568074235],[-124.10436488921374,57.363543989108905],[-124.1043816160634,57.36350050060806],[-124.10440042214307,57.36345704211705],[-124.10441928386935,57.3634124631487],[-124.10443601059931,57.363368974645724],[-124.10445481655219,57.36332551615171],[-124.10447362246221,57.36328205765649],[-124.10449248401642,57.363237478684084],[-124.10451336909404,57.363194050195084],[-124.10453217487255,57.363150591696225],[-124.10455098060821,57.36310713319622],[-124.10456984198554,57.36306255421918],[-124.10459072687931,57.36301912572418],[-124.10460953248348,57.36297566722053],[-124.10462833804476,57.36293220871567],[-124.10464927848255,57.36288765974023],[-124.10466808395519,57.362844201232896],[-124.10468896861758,57.36280077273013],[-124.10470777400218,57.36275731422026],[-124.10472657934393,57.362713855709224],[-124.10474751954713,57.362669306726204],[-124.10476632480021,57.3626258482126],[-124.10478720923125,57.36258241970205],[-124.1048060143963,57.36253896118595],[-124.10482689873457,57.362495532672185],[-124.1048457594871,57.362450953677936],[-124.10486456452065,57.36240749515819],[-124.10488336951136,57.362364036637295],[-124.10490425366582,57.36232060811749],[-124.10492305856847,57.36227714959402],[-124.1049419191007,57.36223257059402],[-124.10496072391706,57.36218911206823],[-124.10498160788771,57.36214568354247],[-124.1050024918108,57.362102255014875],[-124.10502551054846,57.36205773601075],[-124.10504847356344,57.36201433747932],[-124.10507351571388,57.361970968945016],[-124.10510069266,57.36192650993167],[-124.10512573469344,57.36188314139064],[-124.10515285585053,57.36183980284465],[-124.105179976946,57.361796464294656],[-124.10520923281958,57.36175203526304],[-124.10523635378863,57.36170869670454],[-124.10526555386721,57.36166538813856],[-124.1052947538795,57.361622079567624],[-124.10532400948571,57.36157765051692],[-124.10535320936448,57.36153434193614],[-124.10538033001518,57.36149100335569],[-124.10540958542121,57.361446574290696],[-124.1054387851025,57.36140326569551],[-124.10546590556284,57.361359927102086],[-124.10549302596152,57.36131658850467],[-124.10552014629863,57.36127324990313],[-124.10554524307962,57.36122876083082],[-124.10557028414969,57.36118539223002],[-124.10559532516281,57.361142023625916],[-124.10561828697847,57.36109862502779],[-124.10563916960363,57.361055196436446],[-124.10566010783076,57.36101064736897],[-124.10567891122673,57.36096718878423],[-124.10569771457982,57.36092373019835],[-124.10571443876138,57.360880241622056],[-124.10572908377837,57.3608367230559],[-124.10574164963796,57.3607931745008],[-124.10575421546886,57.36074962594604],[-124.10576262303249,57.36070601741432],[-124.1057710305769,57.36066240888368],[-124.10577735898754,57.36061877036573],[-124.10577952915938,57.36057507187228],[-124.10578169932624,57.360531373380475],[-124.10577971127331,57.36048761491347],[-124.10577564411996,57.36044382645958],[-124.10576949787333,57.36040000801867],[-124.10576127254056,57.36035615959035],[-124.10575304722673,57.36031231116316],[-124.10574274283638,57.360268432748114],[-124.10573446191655,57.36022570479676],[-124.10572415757096,57.360181826383304],[-124.10571385324907,57.36013794797075],[-124.10570354895088,57.360094069558905],[-124.10569324467642,57.36005019114781],[-124.10568086134454,57.36000628274759],[-124.10567050147218,57.35996352481152],[-124.1056581181946,57.35991961641233],[-124.10564573494555,57.359875708013504],[-124.10563335172498,57.359831799615215],[-124.10561888946378,57.359787861226444],[-124.10560650630262,57.35974395282872],[-124.10559198845606,57.359701134913465],[-124.105579605354,57.359657226516354],[-124.10556514322087,57.35961328812795],[-124.10555068112106,57.359569349739516],[-124.10553413999979,57.359525381358935],[-124.105519677969,57.359481442970214],[-124.10550516031975,57.35943862505468],[-124.10548861930762,57.359394656673075],[-124.10547207833362,57.359350688290995],[-124.10545553739772,57.359306719908346],[-124.10543894084651,57.35926387199807],[-124.10542239998647,57.3592199036145],[-124.10540585916452,57.35917593523036],[-124.10538931838073,57.359131966845766],[-124.10537069860423,57.35908796846595],[-124.10535410224345,57.359045120552636],[-124.10533548254996,57.3590011221708],[-124.10531686289941,57.35895712378814],[-124.1052982432918,57.35891312540434],[-124.10527956806958,57.358870247491815],[-124.10526094854738,57.35882624910586],[-124.10524232906813,57.35878225071897],[-124.1052216306202,57.35873822233374],[-124.10520301122925,57.35869422394439],[-124.1051843362212,57.358651346026086],[-124.1051636379112,57.358607317636505],[-124.105142939649,57.35856328924533],[-124.10512432043416,57.35851929085112],[-124.1051035666029,57.35847638292877],[-124.10508286848102,57.35843235453292],[-124.10506217040692,57.358388326135305],[-124.1050414723806,57.35834429773598],[-124.10502071873772,57.358301389806776],[-124.10500002080639,57.35825736140412],[-124.10497724394,57.35821330299881],[-124.10495654610662,57.35816927459257],[-124.10493579265444,57.35812636665604],[-124.10491301594041,57.35808230824442],[-124.10489231825223,57.358038279832655],[-124.10486948597266,57.35799534188803],[-124.10484878838187,57.35795131347267],[-124.10482601187282,57.35790725505223],[-124.10480531437997,57.35786322663319],[-124.1047824823031,57.357820288679626],[-124.10475970594882,57.357776230252405],[-124.10473900860357,57.35773220182765],[-124.1047162323521,57.357688143396224],[-124.10469340048023,57.35764520543332],[-124.10467062433335,57.357601146997034],[-124.10464784823907,57.35755708855844],[-124.10462709546704,57.35751418059483],[-124.10460431947494,57.35747012215189],[-124.10458154353543,57.35742606370649],[-124.10455876764856,57.35738200525879],[-124.10453593613707,57.3573390672794],[-124.10451316035476,57.35729500882695],[-124.10449246355508,57.35725098038074],[-124.10446968787556,57.35720692192399],[-124.10444685656911,57.35716398393529],[-124.10442408099418,57.35711992547373],[-124.10440130547185,57.357075867009875],[-124.10437853000214,57.357031808543525],[-124.10435777781869,57.35698890055595],[-124.10433500245112,57.356944842085255],[-124.10431222713618,57.3569007836123],[-124.10428939619013,57.35685784560706],[-124.1042686998858,57.35681381714147],[-124.10424592472559,57.3567697586618],[-124.10422314961802,57.356725700179645],[-124.10420239777578,57.35668279217839],[-124.10417962277039,57.3566387336919],[-124.10415892671158,57.356594705216985],[-124.10413615180893,57.35655064672617],[-124.10411540015976,57.3565077387173],[-124.1040926253593,57.35646368022208],[-124.10407192949582,57.35641965173982],[-124.10405123368011,57.35637562325581],[-124.10403048222163,57.356332715239745],[-124.10400978650088,57.35628868675245],[-124.10398701195314,57.356244628246905],[-124.1039662606381,57.35620172022526],[-124.10394764393256,57.35615772174988],[-124.10392694840235,57.35611369325591],[-124.10390625291986,57.356069664760184],[-124.10388550179083,57.35602675673198],[-124.10386688526377,57.35598275825151],[-124.10384618992161,57.35593872975114],[-124.10382757348285,57.35589473126819],[-124.10380687823381,57.3558507027648],[-124.10378820618644,57.355807824748446],[-124.10376958987838,57.35576382626211],[-124.10366804257677,57.35571414505869],[-124.10360712546317,57.35568411220608],[-124.10354412960318,57.35565404930237],[-124.10348321268303,57.35562401639396],[-124.10342229585879,57.355593983457936],[-124.1033614348395,57.355562830025875],[-124.1033005182088,57.35553279703487],[-124.103239601674,57.355502764016364],[-124.10317666211735,57.35547158047265],[-124.10311574577776,57.355441547398186],[-124.10305488525191,57.35541039382796],[-124.10299396910584,57.355380360698646],[-124.10293305305571,57.355350327541615],[-124.1028721928245,57.35531917388918],[-124.1028112769679,57.3552891406773],[-124.10274828238704,57.35525907740169],[-124.10268736672391,57.35522904413384],[-124.10262645115667,57.35519901083847],[-124.10256345687024,57.355168947476486],[-124.10250254149645,57.35513891412511],[-124.10243954740689,57.35510885070518],[-124.10237863222656,57.35507881729782],[-124.10231563833385,57.355048753819865],[-124.10225258879954,57.35501981078015],[-124.10218953936091,57.35499086771069],[-124.10212654576235,57.35496080414422],[-124.10206349651683,57.35493186101577],[-124.10200044736693,57.35490291785765],[-124.10193526376428,57.354875065088265],[-124.1018722148055,57.35484612186995],[-124.10180703139346,57.35481826903823],[-124.10174184807657,57.35479041617473],[-124.10167666485486,57.354762563279564],[-124.10161148172831,57.35473471035256],[-124.10154416414666,57.35470794780569],[-124.10147898121014,57.354680094814256],[-124.10141166381776,57.35465333220063],[-124.10134434651981,57.354626569553076],[-124.10127702931632,57.35459980687166],[-124.10120965643645,57.35457416462298],[-124.10114233941987,57.35454740187368],[-124.10107496672302,57.354521759556974],[-124.10100764989338,57.35449499673971],[-124.10093819860391,57.35446932429025],[-124.10087082618213,57.354443681870514],[-124.10080143086068,57.354416888883435],[-124.10073405862339,57.35439124639465],[-124.10066460770688,57.354365573802674],[-124.10059723565212,57.35433993124476],[-124.10052778492104,57.35431425858148],[-124.10046041304884,57.35428861595456],[-124.10039101829761,57.35426182275395],[-124.10032156784744,57.35423614998333],[-124.10025419625175,57.354210507252226],[-124.10018682474661,57.3541848644871],[-124.10011743037617,57.35415807114425],[-124.10005005905553,57.35413242831011],[-124.09998274363157,57.35410566497605],[-124.09991537249398,57.35408002207392],[-124.09984805725695,57.35405325867209],[-124.09978074211436,57.35402649523634],[-124.09971342706618,57.353999731766635],[-124.09964819086005,57.35397299834838],[-124.09958087599924,57.35394623481196],[-124.09951569579702,57.35391838086364],[-124.09945051568998,57.353890526883625],[-124.09938527985474,57.35386379333707],[-124.09932015576135,57.35383481882833],[-124.09925705467803,57.35380699484461],[-124.09919193077894,57.35377802027365],[-124.09912882988306,57.35375019622964],[-124.09906786364513,57.35372128178542],[-124.09900487460207,57.35369121675322],[-124.09894396438834,57.35366118178793],[-124.09888299843273,57.353632267260004],[-124.0988221442485,57.35360111177491],[-124.09876123432241,57.35357107672711],[-124.09870245905846,57.353539951287374],[-124.09864160516888,57.353508795720956],[-124.09858283009845,57.353477670229196],[-124.09852411097192,57.35344542424754],[-124.09846539194464,57.35341317824042],[-124.09840667301658,57.35338093220789],[-124.0983479541878,57.353348686150035],[-124.09828923545824,57.35331644006665],[-124.09823265139325,57.353283103601456],[-124.0981760674271,57.35324976711275],[-124.09811948355984,57.35321643060053],[-124.09806289979143,57.353183094064875],[-124.09800637198467,57.353148637041706],[-124.0979497884156,57.35311530045917],[-124.09789533950907,57.35308087350219],[-124.09784089070075,57.35304644652366],[-124.09778649785974,57.35301089905983],[-124.09773412794128,57.35297650215362],[-124.09767973529944,57.352940954647536],[-124.09762742144677,57.35290543723725],[-124.09757718637738,57.35286994992507],[-124.09752487271751,57.35283443247598],[-124.09747469371486,57.3527978246632],[-124.09742445892917,57.35276233729583],[-124.09737428011762,57.35272572944684],[-124.09732618007823,57.35268915170182],[-124.09727808013102,57.352652573940276],[-124.09723211483256,57.35261490582257],[-124.09718401506912,57.352578328028784],[-124.09713804995295,57.35254065988039],[-124.09709416359303,57.35250302184266],[-124.0970502773197,57.352465383791554],[-124.09700639113292,57.35242774572687],[-124.09696256092505,57.35238898718586],[-124.09692075356979,57.35235137922267],[-124.09688108084657,57.35231268091354],[-124.0968414082038,57.35227398259372],[-124.09680173564152,57.352235284263145],[-124.09676627635463,57.352195525720866],[-124.09672873849532,57.352155737038856],[-124.09669541390227,57.35211488814905],[-124.09666203347989,57.352075159714474],[-124.09662870902864,57.35203431081037],[-124.09659751918855,57.35199237157032],[-124.0965662735137,57.35195155278654],[-124.09653716244262,57.35190964366894],[-124.09650805143549,57.35186773454637],[-124.09648107502608,57.35182473509203],[-124.0964540427711,57.35178285609569],[-124.09642706648253,57.35173985663323],[-124.09640009025479,57.35169685716669],[-124.0963751927065,57.35165388783318],[-124.09635029521431,57.351610918496455],[-124.09632539777817,57.351567949156475],[-124.09630055630862,57.35152385935164],[-124.0962756589853,57.35148089000525],[-124.09625076171804,57.351437920655826],[-124.09622799902375,57.3513938609808],[-124.09620310186698,57.351350891625394],[-124.09617826068,57.35130680180518],[-124.09615544223328,57.3512638625838],[-124.09613060115802,57.3512197727578],[-124.09610570422448,57.35117680339005],[-124.0960808632634,57.35113271355772],[-124.09605596644265,57.351089744183575],[-124.09603106967796,57.35104677480627],[-124.09600617296935,57.35100380542575],[-124.0959791977362,57.350960805898765],[-124.09595216664398,57.350918926828776],[-124.09592519153169,57.35087592729381],[-124.0958960819852,57.35083401807112],[-124.09586702842483,57.350790988382485],[-124.09583999757602,57.3507491092953],[-124.09581307863374,57.35070498928237],[-124.09578610382938,57.350661989726326],[-124.09575918501089,57.35061786970547],[-124.09573226625463,57.35057374968071],[-124.09570748204399,57.35052853933893],[-124.09568269789209,57.350483328994216],[-124.0956579137989,57.35043811864643],[-124.09563526424222,57.3503918179839],[-124.09561261474053,57.350345517319255],[-124.09558788674951,57.35029918650303],[-124.09556523736025,57.350252885833726],[-124.09554472249593,57.350205494852034],[-124.095522129146,57.35015807371869],[-124.09550161438618,57.35011068273403],[-124.09547907707845,57.35006214113673],[-124.09545856242366,57.35001475014918],[-124.09543810375338,57.349966238700134],[-124.0954176451351,57.34991772724979],[-124.09539932102406,57.34986812549085],[-124.09537886250769,57.34981961403855],[-124.0953584599789,57.34976998212512],[-124.09534013601575,57.34972038036381],[-124.09532175616371,57.34967189906172],[-124.09530348823233,57.34962117683979],[-124.09528308590768,57.34957154492268],[-124.09526476213779,57.349521943159],[-124.09524643841551,57.34947234139478],[-124.09523024917596,57.34942164932573],[-124.09521192554672,57.349372047560784],[-124.09519365790486,57.34932132533606],[-124.09517539031155,57.34927060311082],[-124.09515706682615,57.349221001344375],[-124.09513879932952,57.3491702791183],[-124.0951226103611,57.34911958704851],[-124.0951043429588,57.349068864821824],[-124.0950860196626,57.34901926305365],[-124.09506775235695,57.34896854082601],[-124.0950515635685,57.348917848755924],[-124.09503324041339,57.34886824698654],[-124.09501497325019,57.34881752475791],[-124.09499670613553,57.34876680252873],[-124.09497838312426,57.34871720075782],[-124.09496006016062,57.34866759898646],[-124.09494179319071,57.348616876755905],[-124.09492347032278,57.34856727498351],[-124.0949051475025,57.34851767321054],[-124.09488474628583,57.348468041276504],[-124.09486642356349,57.34841843950211],[-124.09484596650168,57.34836992802444],[-124.09482764387685,57.3483203262487],[-124.09480718691691,57.348271814768815],[-124.09478673000899,57.34822330328775],[-124.09476627315307,57.348174791805285],[-124.09474581634916,57.348126280321765],[-124.09472322522288,57.34807885913171],[-124.09470271257283,57.348031468103095],[-124.09468012155624,57.34798404690939],[-124.09465753059578,57.347936625713665],[-124.09463488373741,57.347890324973605],[-124.09461223693401,57.347844024231435],[-124.09458751177829,57.347797693321915],[-124.0945648650873,57.347751392575056],[-124.09454008409251,57.347706182117705],[-124.09451530315646,57.34766097165732],[-124.09448838792386,57.34761685148461],[-124.09446360710706,57.347571641017765],[-124.09443663603786,57.34752864129508],[-124.09440972098956,57.34748452111101],[-124.09438275004264,57.34744152138024],[-124.09435370077118,57.347398491476625],[-124.09432459560284,57.347356582025206],[-124.09429549049842,57.34731467256878],[-124.09426425111549,57.34727385339409],[-124.09423301179936,57.347233034213275],[-124.09420177255005,57.347192215026446],[-124.09417047740097,57.347152516290464],[-124.09413704797983,57.34711390783278],[-124.09410361862633,57.34707529936783],[-124.09407018934048,57.347036690895564],[-124.0940346257886,57.3469991726988],[-124.09399900633527,57.34696277495013],[-124.09396130859058,57.346926347017906],[-124.09392361091784,57.346889919075785],[-124.09388585734254,57.34685461158051],[-124.09384596950802,57.34682039435494],[-124.09380608174507,57.346786177118176],[-124.09376613807571,57.34675308032661],[-124.09372411612776,57.346719953344994],[-124.09367995992638,57.3466879166275],[-124.0936378261619,57.34665703053238],[-124.0935915357803,57.3466260840628],[-124.09354726783062,57.346596288215345],[-124.0935008656253,57.34656758262742],[-124.09345238515196,57.34653884684066],[-124.09340384876344,57.346511231492684],[-124.09335525645561,57.34648473658327],[-124.0933045298909,57.34645933192681],[-124.0932517250618,57.346433897064955],[-124.09319886430903,57.346409582638316],[-124.09314600362363,57.34638526819073],[-124.09309095268343,57.34636316444491],[-124.09303382348031,57.34634103048677],[-124.09297663834298,57.346320016959694],[-124.09291945326864,57.346299003408134],[-124.0928579996033,57.34628017035799],[-124.09279862432074,57.346261367472934],[-124.09273503644708,57.34624362462778],[-124.09267347094347,57.34622703240297],[-124.09260982717413,57.34621040995296],[-124.09254618346026,57.34619378747254],[-124.09248040546966,57.34617825521815],[-124.09241670584908,57.34616275313055],[-124.09235092796469,57.34614722081168],[-124.09228509411332,57.34613280891522],[-124.09221931633408,57.34611727653088],[-124.09215348258407,57.34610286456877],[-124.09208551454535,57.34608954282406],[-124.09201968089369,57.34607513079521],[-124.09195171295104,57.346061808981645],[-124.09188374505585,57.34604848713296],[-124.09181572117397,57.346036285704066],[-124.09174567506336,57.346022933575206],[-124.09167765127117,57.34601073207506],[-124.09160749317539,57.34599962078219],[-124.09153739116269,57.34598738899738],[-124.09146723315065,57.345976277629816],[-124.09139707517947,57.34596516622479],[-124.0913248389449,57.34595402456574],[-124.09125468105606,57.34594291308494],[-124.09118238885259,57.34593289180217],[-124.0911100966871,57.345922870479654],[-124.09103780455958,57.3459128491175],[-124.09096551246999,57.34590282771559],[-124.09089108605673,57.34589389650468],[-124.09081873797842,57.345884995476396],[-124.0907443116343,57.345876064182306],[-124.090669885325,57.34586713284625],[-124.09059540298087,57.3458593219221],[-124.09052092066722,57.34585151095583],[-124.09044436008647,57.34584366971662],[-124.09036987783426,57.34583585866479],[-124.09029331731598,57.34582801733753],[-124.09021670074839,57.34582129641973],[-124.09014216250351,57.34581460569283],[-124.09006346769416,57.34580785445017],[-124.08998685120754,57.345801133398375],[-124.0899102347479,57.34579441230195],[-124.08983148392919,57.345788781374125],[-124.08975481142744,57.34578318064081],[-124.08967606065487,57.34577754961984],[-124.08959730990551,57.34577191855171],[-124.08951850307825,57.34576740788998],[-124.08943975237307,57.34576177672736],[-124.08936094558536,57.34575726597115],[-124.08928006052457,57.34575272491846],[-124.08920125377443,57.34574821406638],[-124.08912036875185,57.34574367291537],[-124.08903942763332,57.34574025216794],[-124.08895848652932,57.34573683137065],[-124.08887760155973,57.345732290070046],[-124.0887966604871,57.34572886917308],[-124.08871566330433,57.34572656867936],[-124.08863472225836,57.345723147682584],[-124.0885516468081,57.345720816828354],[-124.08846862749989,57.34571736546836],[-124.08838763036131,57.345715064772385],[-124.08830455494372,57.3457127337618],[-124.0882214795363,57.345710402698685],[-124.08813840413902,57.34570807158298],[-124.08805527260787,57.34570686086776],[-124.08797219722845,57.34570452964695],[-124.08788906571027,57.34570331882644],[-124.08780385590964,57.34570207768072],[-124.08772072440215,57.34570086675366],[-124.08763551461246,57.345699625498796],[-124.08755030482828,57.34569838418861],[-124.0874671171756,57.3456982935537],[-124.08738190739987,57.345697052134305],[-124.08729664146344,57.34569693111213],[-124.08721137552752,57.34569681003467],[-124.08712610959215,57.34569668890177],[-124.0870408436573,57.34569656771349],[-124.08695349943625,57.34569641618393],[-124.08686823350256,57.34569629488359],[-124.08678296756943,57.34569617352792],[-124.08669556716636,57.34569714227914],[-124.08661030123189,57.345697020811365],[-124.08652290082247,57.34569798944763],[-124.08643550040864,57.345698958025814],[-124.08635023447094,57.345698836389126],[-124.08626283405079,57.3456998048523],[-124.0861754336262,57.345700773257285],[-124.08608803319717,57.34570174160415],[-124.08600057655936,57.34570383034493],[-124.08591317611891,57.34570479857542],[-124.085825775674,57.34570576674774],[-124.08573831901262,57.345707855313776],[-124.08564884026985,57.3457087930631],[-124.08556138359187,57.34571088151136],[-124.0854739269043,57.34571296990129],[-124.08538444814306,57.345713907470454],[-124.08529699143888,57.345715995742616],[-124.08520953472511,57.34571808395649],[-124.08511999971516,57.34572014179716],[-124.08503046469559,57.34572219957678],[-124.08494300795302,57.345724287613294],[-124.08485347291415,57.34572634527214],[-124.08476601615241,57.34572843319072],[-124.08467642485103,57.34573161118046],[-124.08458688978058,57.34573366865766],[-124.08449735470053,57.34573572607382],[-124.08440984164669,57.345738934206565],[-124.08432030654474,57.34574099150201],[-124.08423077143311,57.345743048736374],[-124.08414118005284,57.34574622636095],[-124.08405158865764,57.345749403924486],[-124.08396205351183,57.345751460975656],[-124.08387246208942,57.34575463841695],[-124.08378292692166,57.34575669534601],[-124.08369333547205,57.34575987266508],[-124.08360374400755,57.34576304992303],[-124.08351420880557,57.34576510666888],[-124.08342461731385,57.3457682838047],[-124.08333502580722,57.34577146087936],[-124.08324549057102,57.345773517441934],[-124.08315589903721,57.34577669439441],[-124.08306630748848,57.34577987128575],[-124.08297671592483,57.345783048115976],[-124.08288718064213,57.34578510443425],[-124.08279758905128,57.34578828114231],[-124.08270799744552,57.34579145778921],[-124.08261840582485,57.34579463437495],[-124.08252887049566,57.34579669044897],[-124.08243927884781,57.345799866912515],[-124.08234968718504,57.34580304331497],[-124.08226015182166,57.34580509920575],[-124.08217056013169,57.34580827548593],[-124.08208096842681,57.34581145170511],[-124.08199143302924,57.34581350741269],[-124.08190184129715,57.34581668350965],[-124.08181224955017,57.34581985954549],[-124.0817227141184,57.34582191506983],[-124.08163312234421,57.34582509098347],[-124.08154358689055,57.345827146385645],[-124.08145399508919,57.34583032217706],[-124.08136445961358,57.345832377457086],[-124.08127492412832,57.34583443267619],[-124.08118741057737,57.34583763866155],[-124.08109787507024,57.34583969375989],[-124.08100833955345,57.34584174879718],[-124.08092088231706,57.345843834154884],[-124.08083129042471,57.34584700952147],[-124.0807417548764,57.34584906437695],[-124.08065429760866,57.34585114955718],[-124.08056476204113,57.34585320429195],[-124.08047736112096,57.34585416890444],[-124.0803878255368,57.34585622351858],[-124.08030036823332,57.345858308463086],[-124.0802129109203,57.345860393349334],[-124.08012343168441,57.345861327333544],[-124.08003597435481,57.345863412101934],[-124.0799485733979,57.34586437636243],[-124.07986111605173,57.34586646101431],[-124.0797737150834,57.34586742515843],[-124.07968631411069,57.345868389244444],[-124.07959891313354,57.34586935327216],[-124.07951151215197,57.34587031724185],[-124.07942411116599,57.3458712811532],[-124.07933671017561,57.345872245006504],[-124.07925138747106,57.34587323920949],[-124.07916398647183,57.34587420294776],[-124.07907664187606,57.34587404617866],[-124.07899131916072,57.345875040212654],[-124.07890605285384,57.345874913742016],[-124.07881870825749,57.34587475680135],[-124.07873344195181,57.34587463021867],[-124.07864817564668,57.34587450358058],[-124.07856290934211,57.345874376887195],[-124.07847764303813,57.34587425013843],[-124.07839237673471,57.34587412333423],[-124.07830716686232,57.34587287602582],[-124.0782219569955,57.34587162866207],[-124.0781366906988,57.34587150169187],[-124.07805355912976,57.34587028464447],[-124.07796834927701,57.34586903711609],[-124.07788521771874,57.345867819961974],[-124.07780214261103,57.345865482306586],[-124.0777190110658,57.345864265047354],[-124.07763385768763,57.34586189685332],[-124.07755072615556,57.34586067948756],[-124.07751137259271,57.345774886262305],[-124.07749065673703,57.34573197442977],[-124.07746999738269,57.345687942146874],[-124.07744928162074,57.34564503031076],[-124.07742862236123,57.34560099802463],[-124.07740582842133,57.345558055748015],[-124.077385169259,57.34551402345811],[-124.07736445368681,57.345471111614835],[-124.07734373816122,57.34542819976969],[-124.07732100087873,57.34538413703632],[-124.07730028544918,57.345341225187404],[-124.077279626526,57.345297192888786],[-124.07725683293519,57.34525425059695],[-124.07723617410925,57.34521021829458],[-124.07721545886946,57.345167306438434],[-124.0771927218905,57.34512324369228],[-124.0771720067468,57.34508033183223],[-124.07714921340659,57.345037389529324],[-124.07712855482218,57.34499335721789],[-124.07710783982111,57.34495044535231],[-124.07708510309558,57.344906382595404],[-124.07706438819058,57.344863470726025],[-124.07704165156703,57.34481940796474],[-124.07702093675807,57.34477649609157],[-124.07700022199573,57.344733584216605],[-124.07697748552363,57.34468952144885],[-124.07695677085734,57.34464660957009],[-124.07693611270645,57.344602577242455],[-124.07691331991695,57.3445596349155],[-124.0768926618633,57.34451560258414],[-124.07687194738675,57.34447269069809],[-124.07684921121817,57.34442862791753],[-124.07682849683768,57.34438571602782],[-124.076807838976,57.34434168368935],[-124.0767871246892,57.344298771796126],[-124.07676646692232,57.34425473945428],[-124.07674575272922,57.34421182755759],[-124.07672509505713,57.34416779521236],[-124.07670438095774,57.34412488331219],[-124.07668372338043,57.34408085096365],[-124.07666300937476,57.34403793905998],[-124.07664235189222,57.34399390670811],[-124.07662163798025,57.34395099480092],[-124.07660305877359,57.34390699289543],[-124.0765824014311,57.34386296053877],[-124.0765616876576,57.3438200486267],[-124.07654310858379,57.34377604671743],[-124.07652239490164,57.343733134802314],[-124.07650381591546,57.34368913289054],[-124.07648315880536,57.34364510052621],[-124.07646452342605,57.34360221905815],[-124.07644594457032,57.343558217142935],[-124.07642736575741,57.3435142152267],[-124.07640878698736,57.34347021330941],[-124.07639015177698,57.343427331836935],[-124.0763715730921,57.34338332991753],[-124.07635299445009,57.34333932799707],[-124.07633441585088,57.34329532607558],[-124.0763158372945,57.343251324153],[-124.07629933692373,57.343207352684004],[-124.07628075845064,57.34316335075961],[-124.07626218002035,57.343119348834215],[-124.07624360163292,57.34307534690776],[-124.07622294515522,57.3430313145246],[-124.07620234521316,57.34298616169432],[-124.07618376695956,57.34294215976421],[-124.07616316711196,57.342897006931196],[-124.07614043270021,57.342852944084655],[-124.07611983295202,57.34280779124803],[-124.07609923325258,57.34276263840991],[-124.07607863360187,57.34271748557009],[-124.07605595588646,57.34267230227049],[-124.07603529984334,57.34262826987232],[-124.07601470034079,57.34258311702754],[-124.07599410088697,57.34253796418112],[-124.0759735014819,57.342492811333244],[-124.07595290212555,57.34244765848372],[-124.07593230281795,57.342402505632656],[-124.07591170355909,57.34235735278012],[-124.07589110434894,57.342312199925914],[-124.07587258327877,57.34226707753147],[-124.07585406225239,57.34222195513604],[-124.07583554126981,57.342176832739746],[-124.07581909841481,57.34213174080453],[-124.07580057751733,57.34208661840666],[-124.07578413474253,57.34204152647038],[-124.07576971358372,57.341997585440964],[-124.07575327088374,57.341952493504245],[-124.07573890629413,57.34190743203032],[-124.07572656330721,57.341863521464425],[-124.07571427684928,57.341818490454756],[-124.07570193391946,57.341774579889645],[-124.07569166907993,57.341730699789096],[-124.075681404264,57.341686819689315],[-124.07567321752875,57.341642970054735],[-124.07566710886701,57.341599150885685],[-124.07566100021928,57.341555331717984],[-124.07565489158559,57.341511512551634],[-124.07565288255911,57.341468874759684],[-124.07565093003899,57.341425116525606],[-124.0756489210215,57.341382478736676],[-124.07564899004905,57.34133987141398],[-124.0756511371147,57.34129729455756],[-124.07565530570999,57.341255868610865],[-124.07566160883125,57.34121335268645],[-124.07566785543747,57.341171957206804],[-124.07568241414694,57.34113068358547],[-124.07570309390618,57.34109174224262],[-124.07573208572323,57.34105292275197],[-124.07576725505227,57.34101531508829],[-124.07580865837492,57.34097779880334],[-124.075854161159,57.34094146387292],[-124.07590584141413,57.34090634075336],[-124.07595965608142,57.340870127631156],[-124.07601757018301,57.340835095849094],[-124.07607750570143,57.34080121494388],[-124.07613957560976,57.34076624402589],[-124.0762036669276,57.34073242397897],[-124.07626781461457,57.34069748345835],[-124.07632982769906,57.340663632896714],[-124.07639397515494,57.340628692316415],[-124.07645396649221,57.34059369080178],[-124.07651401419469,57.34055756881741],[-124.07656984931646,57.34052250634967],[-124.07662371928457,57.340485172523394],[-124.07667343316164,57.34044777777899],[-124.07671899095969,57.340410322121464],[-124.07675842763749,57.34037053422133],[-124.07679163027345,57.34033065497067],[-124.07681865535277,57.340289563931215],[-124.07684360239179,57.34024844244172],[-124.07686652786158,57.340206170060334],[-124.07688737530303,57.340163867231254],[-124.0769082226983,57.34012156440027],[-124.07692704853679,57.34007811068006],[-124.07694379636187,57.34003462651433],[-124.07696054414882,57.339991142347934],[-124.07697521393176,57.33994762773737],[-124.07698994014156,57.33990299268371],[-124.07700253189606,57.33985944762961],[-124.07701518008128,57.339814782133026],[-124.07702575028067,57.33977008619391],[-124.0770363204553,57.33972539025557],[-124.07704481265384,57.33968066387543],[-124.07705336129052,57.33963481705364],[-124.07706185344892,57.33959009067564],[-124.07707040204487,57.3395442438562],[-124.07707681622163,57.339499487038324],[-124.07708328684026,57.339453609779234],[-124.07708975744336,57.339407732521515],[-124.0770961715745,57.339362975707694],[-124.07710056421513,57.339317068011],[-124.0771070347743,57.33927119075756],[-124.0771114273913,57.339225283063946],[-124.07711784146639,57.33918052625572],[-124.07712431198165,57.33913464900665],[-124.07712870456216,57.33908874131752],[-124.07713511859404,57.33904398451345],[-124.0771415890654,57.338998107268495],[-124.07714800306694,57.33895335046711],[-124.07715441705345,57.338908593666986],[-124.0771608310249,57.33886383686823],[-124.07716932288588,57.33881911051141],[-124.07717781472697,57.33877438415576],[-124.07718422864842,57.338729627360706],[-124.07719277690468,57.33868378056551],[-124.07720126868816,57.33863905421324],[-124.07720976045177,57.3385943278621],[-124.07722033008537,57.33854963195187],[-124.07722882180673,57.33850490560269],[-124.07723736995911,57.33845905881302],[-124.07724793952292,57.33841436290546],[-124.07725643118185,57.338369636559406],[-124.07726705714843,57.338323820212096],[-124.07727554876482,57.33827909386819],[-124.07728611823411,57.33823439796419],[-124.07729466625707,57.33818855118087],[-124.07730523567892,57.33814385527857],[-124.07731586152408,57.33809803893572],[-124.07732643089605,57.33805334303501],[-124.07733497883007,57.338007496255905],[-124.07734554815458,57.33796280035703],[-124.07735617390094,57.33791698401765],[-124.07736679962181,57.33787116767913],[-124.07737736887132,57.337826471782684],[-124.07738799454155,57.337780655445755],[-124.07739856374118,57.33773595955096],[-124.0774091893608,57.33769014321577],[-124.07741975851053,57.337645447322465],[-124.07742830624113,57.33759960055243],[-124.07743893178707,57.33755378421998],[-124.07744950086425,57.33750908832928],[-124.07746012635957,57.337463271998494],[-124.07747075182938,57.33741745566858],[-124.07748132083157,57.33737275978029],[-124.07748986842714,57.33732691301645],[-124.07750043738187,57.33728221712994],[-124.0775110627529,57.33723640080347],[-124.07752168809844,57.337190584477895],[-124.07753017916438,57.337145858158806],[-124.07754080446178,57.33710004183507],[-124.07754929548518,57.33705531551818],[-124.07755992073443,57.33700949919626],[-124.07756841171532,57.33696477288138],[-124.07757695911496,57.336918926127126],[-124.07758545005572,57.33687419981437],[-124.07759607521116,57.33682838349625],[-124.0776045661094,57.336783657185684],[-124.07761305698774,57.336738930876116],[-124.07761952649403,57.336693053694034],[-124.07762801733469,57.33664832738673],[-124.07763650815545,57.336603601080675],[-124.07764297761058,57.33655772390242],[-124.07765146839368,57.336512997598575],[-124.07765788137988,57.33646824086306],[-124.07766429435104,57.3364234841288],[-124.07767278507932,57.3363787578285],[-124.07767712024827,57.33633397066421],[-124.07768353317434,57.33628921393398],[-124.07768994608534,57.33624445720497],[-124.07769635898134,57.336199700477266],[-124.0777006941023,57.336154913318865],[-124.07770502921312,57.336110126161834],[-124.07770936431375,57.33606533900639],[-124.07771369940421,57.3360205518523],[-124.07771803448452,57.33597576469979],[-124.07772231312171,57.33593209798823],[-124.07772457043643,57.33588728040694],[-124.07772884905621,57.33584361369822],[-124.07773110635806,57.33579879612006],[-124.07773330722223,57.33575509898279],[-124.07773556451356,57.33571028140782],[-124.07773568763413,57.33566655384192],[-124.07773788848543,57.33562285670927],[-124.07773801160305,57.33557912914662],[-124.07773813472039,57.33553540158548],[-124.07773831426924,57.33549055358683],[-124.0777363596645,57.33544679559727],[-124.07773642635155,57.33540418847996],[-124.07773447175337,57.33536043049342],[-124.0777325171597,57.33531667250852],[-124.0777284848585,57.33527288409338],[-124.0777264738444,57.33523024655038],[-124.07772244155927,57.335186458138054],[-124.07771835285152,57.33514379016613],[-124.07771432058483,57.33510000175666],[-124.0777081541952,57.335057303355406],[-124.07769991012142,57.3350145745233],[-124.07768324241859,57.33497396483984],[-124.07766034167086,57.3349332638575],[-124.07763322915552,57.33489362244467],[-124.07759774950523,57.33485497973107],[-124.07755805811665,57.334817396578885],[-124.07751421143628,57.334779752545664],[-124.07746615303793,57.334743168065685],[-124.07741601705078,57.33470655313257],[-124.0773595916815,57.3346709673072],[-124.07730310997405,57.33463650189665],[-124.07724247301846,57.33460197558413],[-124.07718183617254,57.33456744924447],[-124.07711704409385,57.33453286199514],[-124.07705427335145,57.33449942559513],[-124.07698948150376,57.33446483828475],[-124.07692671098494,57.334431401825626],[-124.07686394057603,57.33439796533741],[-124.0768011702771,57.33436452882006],[-124.07674053420742,57.334330002283366],[-124.07668191944431,57.334296626605415],[-124.07662543890252,57.33426216091391],[-124.07657109258108,57.334226605211505],[-124.07651876754733,57.334192200375995],[-124.07646644260788,57.334157795520625],[-124.07641417423139,57.33412227020799],[-124.07636184948204,57.33408786531284],[-124.07630958129863,57.33405233996065],[-124.07625725673938,57.33401793502574],[-124.07620498874905,57.33398240963397],[-124.07615266437993,57.333948004659206],[-124.07610039658265,57.33391247922778],[-124.07604807240361,57.33387807421351],[-124.07599580479939,57.33384254874238],[-124.0759434808105,57.33380814368829],[-124.07588913577047,57.33377258771677],[-124.07583681197356,57.33373818262219],[-124.07578454475745,57.33370265707095],[-124.0757301435276,57.33366822147335],[-124.07567782001702,57.3336338163183],[-124.07562341898151,57.33359938067834],[-124.07557109566143,57.3335649754826],[-124.07551669482028,57.33353053980039],[-124.07546229407728,57.33349610409663],[-124.07540789343241,57.33346166837123],[-124.07535343638692,57.33342835306044],[-124.07529903593678,57.33339391729192],[-124.07524457908292,57.33336060193788],[-124.07518804472005,57.33332725609029],[-124.07513151045592,57.3332939102192],[-124.0750749197839,57.33326168476076],[-124.07501838571568,57.333228338842645],[-124.07496179523635,57.33319611333722],[-124.0749052048525,57.333163887808055],[-124.07484653697108,57.33313163177813],[-124.0747878691888,57.33309937572275],[-124.07472914498909,57.33306824007782],[-124.07467042088516,57.333037104407246],[-124.07460961929088,57.333005938230244],[-124.07455083885864,57.332975922943376],[-124.07449003745944,57.33294475671255],[-124.0744291796344,57.33291471088966],[-124.074368378432,57.33288354460407],[-124.07430752080029,57.332853498726294],[-124.07424671979467,57.33282233238581],[-124.07418591888836,57.332791166018076],[-124.07412517461509,57.33275887918775],[-124.07406437390904,57.33272771276527],[-124.07400357330225,57.33269654631541],[-124.07394282933376,57.33266425940319],[-124.07388208546801,57.33263197246376],[-124.07381920759909,57.33260077543837],[-124.07375846393887,57.332568488443314],[-124.07369772038142,57.332536201421156],[-124.07363697692671,57.332503914371564],[-124.07357617702523,57.33247274772945],[-124.0735133562198,57.33244043012698],[-124.07345261307337,57.33240814299475],[-124.07339181347491,57.33237697626954],[-124.07332899298311,57.332344658581434],[-124.07326819358669,57.33231349180067],[-124.07320537330399,57.332281174055026],[-124.07314249656575,57.33224997671437],[-124.07307961993028,57.33221877934443],[-124.07301674339757,57.33218758194514],[-124.07295386696762,57.3321563845165],[-124.07289099064042,57.33212518705852],[-124.07282805784509,57.33209511000524],[-124.0727651251489,57.332065032922436],[-124.07270011502014,57.33203492529908],[-124.07263718252395,57.3320048481564],[-124.07257217259856,57.331974740471146],[-124.07250918372235,57.33194578370227],[-124.07244411741658,57.33191679638873],[-124.07237905120958,57.331887809043444],[-124.07231185099386,57.33185991158285],[-124.07224672839668,57.3318320446069],[-124.07218160589458,57.331804177599224],[-124.07211434937895,57.33177740047276],[-124.07204709295769,57.33175062331257],[-124.07197983663075,57.331723846118344],[-124.07191252380096,57.331698189323454],[-124.07184515446255,57.331673652927634],[-124.07177784181178,57.33164799606475],[-124.07170833853687,57.331624549506955],[-124.07163889195239,57.33159998247999],[-124.07156938885021,57.33157653584958],[-124.07149982922434,57.33155420961575],[-124.0714302696798,57.33153188334547],[-124.07135857610137,57.33151064693902],[-124.07128688260272,57.331489410493795],[-124.0712151325665,57.331469294442435],[-124.07114332598653,57.33145029878484],[-124.07106944198041,57.331431272551306],[-124.0709976355444,57.33141227681456],[-124.07092363843297,57.33139549136456],[-124.0708496980145,57.33137758544057],[-124.07077356691173,57.33136188979839],[-124.0706995133642,57.331346224655036],[-124.0706233823857,57.33133052892609],[-124.07054719483311,57.331315953585396],[-124.07047100733871,57.33130137820071],[-124.07039481990245,57.33128680277199],[-124.07031857588106,57.33127334773128],[-124.07024025442577,57.331259862096296],[-124.07016395386484,57.331247527398155],[-124.07008563251716,57.33123404167117],[-124.0700072545724,57.33122167632955],[-124.06992882002378,57.331210431373236],[-124.0698504421783,57.33119806593814],[-124.06977200772435,57.331186820888355],[-124.06969357331661,57.331175575791754],[-124.06961300480931,57.33116542051996],[-124.06959649828237,57.331162935174916],[-124.07022266841864,57.3259739713104],[-124.07494677958768,57.318365012943374],[-124.07841866057638,57.31479203996684],[-124.08311909174952,57.3131419459289],[-124.08329866303657,57.31333181762855],[-124.0837716191312,57.313182875046515],[-124.08386349177668,57.31317412598469],[-124.08963684815633,57.3126225938222],[-124.098937727037,57.31229353322379],[-124.10183818894953,57.31133988331436],[-124.11071865165064,57.30790707739201],[-124.11168665629951,57.30786944177124],[-124.11451691776914,57.30790343364039],[-124.11854536200902,57.30748700839549],[-124.12152955047354,57.307178842366675],[-124.12554087567335,57.30685389951724],[-124.13131648405012,57.30605280179035],[-124.13409473363669,57.30536244823455],[-124.13497164617176,57.30506098197699],[-124.13740480095964,57.30428716775538],[-124.13827478095786,57.30408424854857],[-124.14142591293896,57.304050460758226],[-124.14584328223027,57.30506489735481],[-124.14585130859942,57.305541524878684],[-124.14762184092962,57.30561812050725],[-124.14918467522592,57.30522197487647],[-124.15004655275712,57.30492804587222],[-124.15057402680311,57.30454642668255],[-124.15194680720803,57.30395472173966],[-124.1524742488357,57.30357309520734],[-124.15298501754,57.30319235319494],[-124.15331348559857,57.3027148612459],[-124.15486072032392,57.301562741077895],[-124.15554000676474,57.30126172446327],[-124.15812719462741,57.299347201657],[-124.15900466136308,57.29915658724794],[-124.16194214471166,57.29798466172336],[-124.16333808666317,57.29768019713809],[-124.16597073442296,57.297660987781875],[-124.1672066827415,57.29783299444233],[-124.17262338413455,57.29740854525432],[-124.17470476550928,57.29662355232742],[-124.17538406688281,57.29614304747684],[-124.1774529401334,57.295269265593475],[-124.1785125117881,57.2946964881577],[-124.17931279076802,57.29259080598374],[-124.17982522073129,57.29220999165414],[-124.17661183979953,57.290523924977975],[-124.17607121843342,57.290146413894234],[-124.17536168220624,57.28987081966732],[-124.17179171854137,57.28752938248898],[-124.17104377388354,57.28658276146723],[-124.17121815446234,57.28610644967959],[-124.17067760051914,57.284038176099926],[-124.17541480167387,57.278625017704044],[-124.1753635223,57.278611970869946],[-124.17586804017311,57.27843736398086],[-124.17649874891951,57.27844614110204],[-124.17687152892803,57.27833472542815],[-124.17886921301363,57.27601476849197],[-124.18089977766039,57.27382754288936],[-124.18231861070267,57.27227759930804],[-124.18357660175566,57.26816916493005],[-124.18053391352824,57.262673626829546],[-124.17492318706518,57.25813785905931],[-124.17211471579867,57.25646629524506],[-124.16690295789375,57.254034548017785],[-124.15882437533463,57.252557904555765],[-124.1537720643013,57.252352242396896],[-124.14759932189804,57.25026493079151],[-124.14727299695627,57.245694959331864],[-124.14811013470417,57.24142847826278],[-124.14735840180634,57.23673592059905],[-124.14405511340307,57.23369342524564],[-124.1370679770985,57.230347332245906],[-124.13560664212206,57.23003951231532],[-124.13240120886641,57.227401723710095],[-124.13027503653267,57.22372988749992],[-124.1275217284986,57.22000420353295],[-124.12092155863584,57.21831308656928],[-124.1132696426012,57.21677688359947],[-124.10848100200674,57.214689684949505],[-124.1021415798644,57.211117847108966],[-124.09715928473486,57.20828297450184],[-124.09496195492149,57.207129849973086],[-124.09196814046975,57.204996403813844],[-124.09164798338946,57.200776238420204],[-124.09261763394959,57.19461964172822],[-124.09399358152035,57.18994888555365],[-124.09429987760788,57.18612357491547],[-124.0943260568215,57.18493107804288],[-124.09423649949179,57.17973672775041],[-124.09193924952739,57.1743039029295],[-124.08988708667958,57.17194200468897],[-124.08844845114612,57.17056666281292],[-124.08454463818315,57.16649142710894],[-124.08115893554564,57.163329543688285],[-124.07561874025743,57.161866857576854],[-124.06421523728716,57.16372539992367],[-124.05310110032853,57.16736314452157],[-124.04614628081664,57.16799481042834],[-124.04300953293031,57.16682674268263],[-124.03790738008551,57.16491157699387],[-124.03095306978844,57.16166779447398],[-124.02628159137264,57.159130817686496],[-124.02430374486582,57.15831164639741],[-124.02079706534897,57.15599836537052],[-124.01559650610504,57.15379380452479],[-124.01153010432462,57.152395578931944],[-124.00768509057644,57.15088400245071],[-124.00684543843721,57.150476553917116],[-124.00669142343027,57.14802564704904],[-124.00774426834651,57.14432852388662],[-124.007951419813,57.140340468905855],[-124.00738280931003,57.13758727972523],[-124.00586854924545,57.13551923448319],[-124.00337564322315,57.13413579148958],[-123.99987394464169,57.13115830927956],[-123.99578897845008,57.13017186058539],[-123.99333687763084,57.12865431219821],[-123.99422711552323,57.12618358720539],[-123.99343041562292,57.1240187935375],[-123.99098078474857,57.122779275784886],[-123.98738050066093,57.12171929119412],[-123.98484638818779,57.12146493846859],[-123.98030192161892,57.120121105551256],[-123.974584363332,57.11844499761099],[-123.97067750718492,57.117568133401534],[-123.96705774054462,57.115646249675464],[-123.96145247773003,57.113747076961],[-123.95795300358611,57.11268783676993],[-123.95508086936776,57.11134235539891],[-123.95476060776272,57.1108350719194],[-123.95073449732084,57.10942655558935],[-123.94629871831071,57.10826259724504],[-123.94355153689982,57.107376241738166],[-123.941204188832,57.106128406401616],[-123.9371741053634,57.10450414159158],[-123.93631025906107,57.10365636110821],[-123.9330023425042,57.101218233946824],[-123.93075559814332,57.09934396733448],[-123.92942954738552,57.09695510663529],[-123.92767166724195,57.09399432717529],[-123.92520057656027,57.09138991092539],[-123.92459576248766,57.08790032433403],[-123.92418973379758,57.08470988171029],[-123.9224206065427,57.08105825532656],[-123.91941364633031,57.07799674881875],[-123.9175583566002,57.075034292842666],[-123.91764343286837,57.07011172814874],[-123.91966774391086,57.06689732111111],[-123.92422314395225,57.06452145547864],[-123.92434643305955,57.06132155420745],[-123.92433608357905,57.06028997792632],[-123.92323507981764,57.05835311681957],[-123.9225729743945,57.05715868455591],[-123.92364949228279,57.05435068029197],[-123.9277236273807,57.05351866162359],[-123.93614684483238,57.054719623893604],[-123.94421943640332,57.05476651164356],[-123.95215468548845,57.053671722163664],[-123.95589184337966,57.05233129482079],[-123.96170184951168,57.04988419775931],[-123.96977756753239,57.04609999719283],[-123.9742218270481,57.043846333797575],[-123.97773670798229,57.04199065604421],[-123.98152490741937,57.038695206225675],[-123.98181600925956,57.037551756429174],[-123.98761931995183,57.03515729638669],[-123.99151534660642,57.03197985027801],[-123.99341125591751,57.02853832390834],[-123.99654182464133,57.0238781601827],[-123.9972009668762,57.02135924316283],[-123.9967016010988,57.01827544322341],[-123.99444745308024,57.01594486238433],[-123.99242433491804,57.01488232899778],[-123.9887503752629,57.01416196641525],[-123.9853941188522,57.01430737019356],[-123.98151603712623,57.01433697810373],[-123.97752257874338,57.013736896707094],[-123.97185937682184,57.01320933796688],[-123.96736777741124,57.01330070927204],[-123.9614127922856,57.013925055013885],[-123.95637371674043,57.01345143432589],[-123.95307759631197,57.011534221386405],[-123.95079396714316,57.00857459883757],[-123.94898475724725,57.00693179493328],[-123.94842901132809,57.00590961067948],[-123.95109748349005,57.00411313669076],[-123.95285306311982,57.00273273630527],[-123.9541801215501,57.00134557943446],[-123.95449680106418,57.000041184784635],[-123.95479489043407,56.99908626218126],[-123.90787943370009,56.99882470883451],[-123.9047964344876,56.99790516129944],[-123.89995604128111,56.99716346207984],[-123.89635629934813,56.99635195961919],[-123.89515099217799,56.99517553087942],[-123.89664802660967,56.99372890920858],[-123.89837736073702,56.99255508023374],[-123.89702437174299,56.99046150229],[-123.89581971824468,56.98927612395387],[-123.89747371735676,56.98645987100976],[-123.89963522391109,56.983400687086764],[-123.90016323761958,56.98127473407975],[-123.90159239052952,56.978338235567065],[-123.9003778601906,56.97703615729569],[-123.89564564151283,56.976475378559854],[-123.89322264449419,56.975880108891744],[-123.89203236733633,56.97504469774871],[-123.89082890044894,56.97174275862974],[-123.89080088921692,56.9689441766087],[-123.89227611812589,56.966977127871395],[-123.89642864607775,56.96395031256678],[-123.89834324538256,56.96237595422416],[-123.89828668466876,56.96129884645344],[-123.89854230925809,56.95751837213117],[-123.89800359380844,56.952899986762745],[-123.8955255585551,56.948815218092186],[-123.89049146978415,56.946312180937774],[-123.88908828318543,56.94547328722648],[-123.88654756570014,56.9422572418688],[-123.88378752414341,56.93914519304888],[-123.87788602598383,56.93808036853829],[-123.87101955181782,56.938694458756494],[-123.86636570779494,56.93978398968187],[-123.86489217178554,56.939634227386634],[-123.86067363858233,56.93643490576348],[-123.85672441634021,56.93254932983796],[-123.85350495195263,56.93064870868847],[-123.85000665575124,56.92932632713584],[-123.8454585676851,56.928237550902836],[-123.84307047640611,56.9285566476089],[-123.84136267933684,56.92995423652808],[-123.83426283688189,56.93239203004733],[-123.82992171084166,56.93347650069318],[-123.82750957511337,56.93333753104212],[-123.82356685074383,56.93144198280654],[-123.82018270492894,56.92840773325555],[-123.81896241292472,56.9267011933303],[-123.81890789466269,56.925337085865806],[-123.81896007740485,56.921795462575545],[-123.81837006475276,56.91826099667244],[-123.81922791967783,56.91618578890097],[-123.82245233190422,56.91357632055779],[-123.82547984120131,56.91124150208346],[-123.82894753847164,56.90926374569873],[-123.83232061934636,56.9074995623291],[-123.83273240555181,56.905147801355604],[-123.83123667890449,56.90219919145624],[-123.83120585660173,56.89894323053483],[-123.83297386125332,56.89674866081975],[-123.83815075150163,56.89564223677738],[-123.84316717115095,56.89563602055563],[-123.84942439471052,56.895497720294564],[-123.84936522289318,56.89183777120348],[-123.83803581604191,56.87890590947005],[-123.83458796273526,56.87677678917889],[-123.82908403277281,56.87497189990427],[-123.82568431755544,56.873462134268664],[-123.82440761676146,56.870741348761],[-123.8237828057708,56.86812117296778],[-123.82011949039008,56.86576383745596],[-123.81438403087837,56.86344323003999],[-123.81268968100004,56.862894515804555],[-123.8109485089138,56.861143272985146],[-123.81252149091905,56.85890091225832],[-123.81466293657796,56.855609900112185],[-123.81489555524065,56.85149752570379],[-123.81216226167376,56.8460975608505],[-123.8077089403563,56.8394757268875],[-123.80557670536466,56.8362470633816],[-123.8039256962769,56.83438067419722],[-123.8019155035488,56.83103743658402],[-123.79978896871346,56.83003281069683],[-123.79294635194624,56.82852640510064],[-123.78712628757728,56.82666044772529],[-123.78383034742717,56.825160271768],[-123.78354746645864,56.8249402020139],[-123.78291490342244,56.82444847276373],[-123.78309090924877,56.82427773132615],[-123.78335789850514,56.8239874796062],[-123.78359842658071,56.82369341175741],[-123.7837875734111,56.82340070653802],[-123.7840577813245,56.82287510108509],[-123.78376746895769,56.82278493946548],[-123.78355577064806,56.82261204811233],[-123.7833215989206,56.822365907548864],[-123.78307557528117,56.822147588439584],[-123.78260356372022,56.82186262524637],[-123.78225338346051,56.82167166725119],[-123.78179597739711,56.82145421039975],[-123.78144317009277,56.82130916570243],[-123.78090082943885,56.82110594472811],[-123.78035773050287,56.820880288629205],[-123.77988087516137,56.820644555671265],[-123.77951535828096,56.820399519641605],[-123.77920390390992,56.820177829231504],[-123.77886409567829,56.81987830357027],[-123.77867661838165,56.819570179521364],[-123.77854154582664,56.819242776170995],[-123.77845138577614,56.81888363433473],[-123.77838913240652,56.81861016628981],[-123.77833354377553,56.818327844652686],[-123.77821921360317,56.81806805618745],[-123.77812904009332,56.817780657315296],[-123.77784999809919,56.81742387993031],[-123.777523789376,56.81717390747493],[-123.77713777017283,56.816893762005975],[-123.77671972472169,56.81663548536198],[-123.77625600293597,56.81642238361916],[-123.77576018979472,56.81623226981072],[-123.77505216793689,56.81609343720457],[-123.7743593098859,56.81601203167047],[-123.77357948420858,56.81590894962503],[-123.77296585578924,56.8158412293678],[-123.77243666315506,56.815732360794],[-123.77192577186186,56.815519552788686],[-123.77158798325553,56.81536464968355],[-123.77101140396815,56.8151170780222],[-123.77068777541083,56.81496577915419],[-123.77037665688634,56.814775460156746],[-123.77011000140631,56.81456124414731],[-123.77004728023424,56.81433260324012],[-123.77001874162708,56.81400926675823],[-123.77008124885675,56.81374354747266],[-123.77022502210227,56.81349155828613],[-123.7703942258673,56.813225433964156],[-123.77056239429774,56.81297722750344],[-123.77077187116075,56.81272412701228],[-123.77099853109792,56.81242199853478],[-123.77114900637521,56.8121959067928],[-123.77120579065003,56.81195811364595],[-123.77118310187004,56.811711105867],[-123.77110116051635,56.811495586962195],[-123.7707896651891,56.8112054945453],[-123.77058276788118,56.81102257490957],[-123.77036999970784,56.81079919830385],[-123.77021495349197,56.81053533869918],[-123.77015278876807,56.81022599681686],[-123.77010964934422,56.80990689367181],[-123.77006231346776,56.80966058243934],[-123.76992781342268,56.80943182695424],[-123.76967409630231,56.8090295071429],[-123.76984276772798,56.80877234326739],[-123.7699464234189,56.808682207523155],[-123.77025068677321,56.80863476063462],[-123.77069624604276,56.808520244496194],[-123.77118985294256,56.808354988549326],[-123.77174268743771,56.8081941129461],[-123.77226728087003,56.80802490234039],[-123.77280773234472,56.80790080182613],[-123.7731888859742,56.80787148544004],[-123.77377630614328,56.807822173599206],[-123.77440805847151,56.80771532994488],[-123.77482728990037,56.807380634899786],[-123.77498704172673,56.80724213618018],[-123.77608182231123,56.80671614591377],[-123.77728977109516,56.805790778659926],[-123.77912165214978,56.804035370879184],[-123.78046494088308,56.80242850374014],[-123.77982928897931,56.80010391066559],[-123.77981829812106,56.80000956026207],[-123.77969700029158,56.799050167454986],[-123.77807656085982,56.797129040131566],[-123.77755013841778,56.79622658746569],[-123.7810582720733,56.79544603843134],[-123.78581082057403,56.79473825310972],[-123.79002654642493,56.79333846467504],[-123.79520862410337,56.79184963870989],[-123.79562457969686,56.791278306939546],[-123.79587395856872,56.79028377747476],[-123.79622558413772,56.78918561908505],[-123.7962884064006,56.7880825438018],[-123.79694470665962,56.78667346274342],[-123.79815752084426,56.785642644339816],[-123.7985060452408,56.78459711682562],[-123.79957101610573,56.782775742558954],[-123.80000565360277,56.78208926212256],[-123.80009801592905,56.781942866503385],[-123.80109724159819,56.78127606843581],[-123.80239107490618,56.78051001862835],[-123.80311936341162,56.77952361833328],[-123.8033595760916,56.77868586335918],[-123.80353328414692,56.777322375880935],[-123.80380028841574,56.77601203668139],[-123.8048081886384,56.77518843084508],[-123.80593315686716,56.77399801276247],[-123.806556061385,56.77316786649332],[-123.80697667797322,56.77254390568062],[-123.80711457996796,56.77180978371614],[-123.80699350859204,56.77054667157465],[-123.80751030610158,56.76992434100048],[-123.80745277852873,56.76923959210444],[-123.8057676458836,56.7684218783354],[-123.80370774457343,56.76749353199466],[-123.8026148887699,56.7664235297183],[-123.80096777363035,56.76497642789434],[-123.80000693269874,56.764470238392896],[-123.79900830920279,56.76394434258315],[-123.79680986045348,56.76261334835788],[-123.79698776982889,56.76247514005481],[-123.79731563115105,56.76218591635886],[-123.7972894760337,56.76192541267701],[-123.79723537617275,56.76168797286308],[-123.79722256893652,56.761336900383746],[-123.79724176865584,56.76110743461785],[-123.79722763995932,56.760851619651575],[-123.7971878847132,56.76068616439634],[-123.79685095973133,56.76041476287293],[-123.79658503435279,56.760155779424544],[-123.79639472462455,56.75997206578873],[-123.79615669304408,56.75972700795268],[-123.79588591207593,56.759445521480735],[-123.79565325507073,56.75917813548629],[-123.79544913214554,56.758949347392075],[-123.79521059651535,56.75867737661511],[-123.79495389445775,56.75836474183413],[-123.79476072570137,56.75819554917694],[-123.79437192210338,56.75800844773216],[-123.79393644549575,56.757885563443764],[-123.7934679085584,56.75776771829783],[-123.79311365490209,56.75762155624455],[-123.79287464139074,56.75743028047098],[-123.79278221049066,56.757254957319326],[-123.79282804254566,56.757061816956586],[-123.79298482113202,56.75679098332257],[-123.79299118649872,56.75653551779279],[-123.7930445003661,56.75635483548079],[-123.7931553687247,56.75617065157321],[-123.79328010531567,56.755922810748],[-123.79332465712153,56.755752067356774],[-123.79309364820038,56.755564291424186],[-123.79267021055202,56.75530261157906],[-123.79207187386324,56.75498301829224],[-123.7914507873962,56.754739257437095],[-123.79079792355392,56.75444226650842],[-123.79016400081588,56.754208368429346],[-123.78962459898986,56.75396935717335],[-123.7889443301865,56.75375820045828],[-123.7883060813233,56.753564572840695],[-123.78778485915377,56.75340208848326],[-123.78709898217942,56.75321772840944],[-123.78646790865935,56.753113889473155],[-123.78609804717046,56.75313446036683],[-123.78576200620198,56.75324416362827],[-123.78540652241237,56.75337146813898],[-123.785052249972,56.753513364705306],[-123.78460449389455,56.75357070918582],[-123.78386610975924,56.75355245249338],[-123.78253604475421,56.753457911272946],[-123.78212757297997,56.75336571457026],[-123.78149474010033,56.753149726733945],[-123.78088678993826,56.75292855800614],[-123.78040658122804,56.75283736652917],[-123.77997068565058,56.75275926438748],[-123.77920107363667,56.752642922565364],[-123.77840302129741,56.752486854452876],[-123.77792876977787,56.75239911878508],[-123.77747491815065,56.752312852915985],[-123.77697939460262,56.75216757993126],[-123.77674824000819,56.75194838454577],[-123.776569259829,56.751748020976535],[-123.77663593825446,56.751585509649715],[-123.77675338509187,56.751216496615136],[-123.77623808990919,56.75055973033053],[-123.77599290675369,56.75026406814923],[-123.77578327055569,56.74999143582934],[-123.77550367330517,56.74976019542374],[-123.77511628191583,56.74951589018506],[-123.77452870545491,56.74926253365659],[-123.77400173168839,56.74905953922504],[-123.7736586473017,56.74886419279503],[-123.77337455619838,56.74856897641886],[-123.77332834657284,56.748197148338406],[-123.7732993423923,56.74781104435753],[-123.77330648565429,56.74736615301095],[-123.7732925199895,56.74711033754464],[-123.77341617324097,56.7467761843115],[-123.77344782381198,56.7464393257519],[-123.77345902904207,56.74606624502626],[-123.7734665790363,56.74572112497908],[-123.77347213354327,56.745410719823845],[-123.77339907370882,56.74504291377457],[-123.77335238947575,56.74475066505417],[-123.77324549116557,56.74443720232453],[-123.77316664944996,56.74431254085393],[-123.77280263859622,56.74412579898706],[-123.77244808729965,56.74395267033689],[-123.77211140536099,56.74386055637492],[-123.77152459584129,56.74370247845829],[-123.77114850150106,56.743548030778754],[-123.77042404280768,56.74329117357287],[-123.76991047743213,56.743070457596964],[-123.7689072493624,56.74267651138638],[-123.76792650593605,56.74235468564905],[-123.76739864761765,56.74213371258003],[-123.76663507048828,56.74184589244685],[-123.76597430452922,56.74165736641431],[-123.76531619341074,56.74142292414971],[-123.76486157299937,56.74128167238394],[-123.76458485840577,56.74114461641682],[-123.76436658553902,56.74098839355908],[-123.76432658574178,56.74065253985205],[-123.76436582633953,56.740256404769916],[-123.76431770978824,56.739919289875495],[-123.76417948742208,56.73944049880718],[-123.7639015520188,56.738934630207844],[-123.76349730910877,56.73824049942787],[-123.76329308564473,56.73784127342363],[-123.76304907505033,56.737492921885206],[-123.76275069077792,56.73702256712998],[-123.76258047652577,56.73663737997456],[-123.76245991174314,56.73627883374351],[-123.76238083766094,56.735910917244276],[-123.76233892805458,56.73550216935033],[-123.76226065704287,56.735084945432256],[-123.76217329289993,56.73478974656628],[-123.76215888784428,56.73454289036755],[-123.76221849949505,56.73429059006891],[-123.76242130770596,56.733898409592236],[-123.762611728118,56.733578875552574],[-123.76282836856272,56.73323065079143],[-123.76312974403895,56.73279758009803],[-123.76331940082454,56.73245561344322],[-123.76353598708081,56.73207263794263],[-123.76373216385423,56.731617569117766],[-123.76382412097888,56.73123019507277],[-123.7638627300463,56.730915879869215],[-123.76386149432706,56.73054707037215],[-123.7638558454976,56.730183789277454],[-123.76393970879795,56.72965279572664],[-123.76373358333682,56.729393655784236],[-123.76334569407355,56.72916275604806],[-123.76289714825278,56.728954344767324],[-123.76254125224517,56.728772196577594],[-123.7622314474168,56.728571789575795],[-123.76175831068043,56.72836406931211],[-123.76116421692772,56.72805336756095],[-123.76050566694155,56.72772473194368],[-123.75997099735167,56.727448682362464],[-123.75936485704909,56.727134400393155],[-123.75873218092045,56.72685440427404],[-123.7581656415139,56.72666971099796],[-123.75761345747988,56.726520013311166],[-123.75725751495904,56.72637484013],[-123.75700591841155,56.726159737181035],[-123.75696694719086,56.72591357555868],[-123.75694056917412,56.72566202786312],[-123.75679462308243,56.72542521867306],[-123.75649119215252,56.72508030716238],[-123.75635956411735,56.72484374606486],[-123.75623912336555,56.724449327082006],[-123.75614725591775,56.72419776309032],[-123.75595405851394,56.72385812727149],[-123.75586248384363,56.7235662145028],[-123.75580200831395,56.72337348416845],[-123.75584182040437,56.72321612368941],[-123.75629604004918,56.72300655018674],[-123.75684014716435,56.7227290377317],[-123.75732033818474,56.72238876242977],[-123.75764331831095,56.722077143526874],[-123.75795716325916,56.72167569076676],[-123.75830608279857,56.721269241316044],[-123.7586675211784,56.72085852457941],[-123.75892279461391,56.72040785397647],[-123.75927068389096,56.71998344981839],[-123.75974830237114,56.71933262444796],[-123.76009086871849,56.7188229356504],[-123.76043039838748,56.71825938897104],[-123.76066686004323,56.71788573431181],[-123.76100787463,56.717367049615284],[-123.76164452917422,56.7164062363721],[-123.76188077387411,56.71603593931908],[-123.76220195166144,56.71561218776362],[-123.76246367893904,56.71533200556361],[-123.76259663326174,56.715120211191426],[-123.76257401083735,56.71427127792653],[-123.76257278790442,56.71390247201175],[-123.76252652926303,56.713534007084405],[-123.76252519417271,56.713238059546605],[-123.76257102684328,56.712904817549926],[-123.76260835923736,56.71257703301751],[-123.76258956512217,56.71240632687383],[-123.76254977073225,56.71192588172205],[-123.76255468021432,56.711557182523705],[-123.76254848143466,56.71127460217835],[-123.76256614789068,56.71093302626535],[-123.76259198997953,56.710591592032806],[-123.76260450993149,56.71030373145869],[-123.76258430967525,56.70994468600022],[-123.7624507405985,56.709671108855055],[-123.76227973649924,56.709408092302105],[-123.76210217494106,56.70911693883161],[-123.76204758852695,56.70889292937507],[-123.76214629406394,56.70867157582091],[-123.76231734998596,56.70847277318822],[-123.7625596975963,56.70835030713654],[-123.7627000206092,56.70825858027435],[-123.76284897067043,56.70815915624108],[-123.76313058803504,56.70785241722826],[-123.76319071591274,56.707519423820074],[-123.76315334484231,56.70713878423096],[-123.7631496036576,56.70709724534849],[-123.76305062042776,56.70668527390418],[-123.76302344079475,56.70644716789791],[-123.76302330006595,56.70627230178691],[-123.76314154419408,56.706137597317365],[-123.7631400818368,56.70612748370444],[-123.76395399400745,56.70535244921172],[-123.76497303834783,56.704318665506904],[-123.76597086813436,56.70365216934065],[-123.76732596729428,56.703352778327826],[-123.76747306209465,56.70332057271067],[-123.76839925019351,56.70311575922733],[-123.76994300859695,56.70298549673116],[-123.77155421215625,56.7016457925697],[-123.77074012523425,56.70079105727219],[-123.77078492662271,56.70001167501191],[-123.7708065542349,56.69963542162694],[-123.77026557598008,56.69904769108399],[-123.76966278942034,56.697827817040434],[-123.76953415233427,56.69672149702828],[-123.76855231074501,56.6954435082557],[-123.76767268334633,56.69406079251585],[-123.76703654323278,56.691788916829374],[-123.76622276262384,56.690934157918974],[-123.76570919366816,56.68987385850598],[-123.76444270996717,56.688537108288344],[-123.76302566120431,56.686515103085355],[-123.76188568167929,56.68465481323114],[-123.761000397131,56.68337844034717],[-123.75992020338576,56.68215024071047],[-123.75844294267237,56.68117854997619],[-123.75541677074273,56.68044220807499],[-123.75169344124274,56.68016667559039],[-123.75009706832296,56.67956159010648],[-123.74932360299921,56.678022546598115],[-123.74835816939823,56.67648127067433],[-123.74675961178923,56.674297863609944],[-123.74624475253282,56.67323746125219],[-123.74592696333266,56.672127816689425],[-123.74514457300883,56.67074776207575],[-123.74314122485309,56.6689248932791],[-123.74054290751477,56.66746035337155],[-123.73801729618,56.66636469132451],[-123.7365289733323,56.6656021543734],[-123.73455787257367,56.664883806402415],[-123.7334146246385,56.664758362358945],[-123.73252849692913,56.665164254584425],[-123.73077778967543,56.66560650031159],[-123.7292076752233,56.66620995015913],[-123.72812654131461,56.666663943784584],[-123.72705462822547,56.66696004248615],[-123.7259918836383,56.66709936617312],[-123.72415739949916,56.6673293168206],[-123.7224126103282,56.66766731215354],[-123.72095264666217,56.6680618777411],[-123.71854232257549,56.668281578079565],[-123.71743624466987,56.66915651080465],[-123.71662427056424,56.66993015239669],[-123.71563265618516,56.67049099742719],[-123.71427877523729,56.67067775657374],[-123.7134964341177,56.6705305067405],[-123.71309826971681,56.67059294823687],[-123.7126868091584,56.67056884174245],[-123.71246681924765,56.670555974757164],[-123.71187483443357,56.67043899145227],[-123.71122892341575,56.67023137498701],[-123.71061568226287,56.67005908346494],[-123.71000987410146,56.66996874834273],[-123.70939117105603,56.6698198933479],[-123.70866539743365,56.6695805810402],[-123.70814635565378,56.669440215117],[-123.70767816324962,56.66930411316646],[-123.70717099130752,56.669135930945004],[-123.70682044252592,56.66898061853851],[-123.70657627479271,56.66878908449178],[-123.7062511316754,56.668480655228734],[-123.7058856993274,56.66812779271278],[-123.70548878785631,56.667788941371946],[-123.70512517960516,56.667543717876626],[-123.70459609211585,56.667228294073915],[-123.70401465941123,56.66689960638894],[-123.70345443546158,56.66659259105034],[-123.7029005311947,56.66631707160849],[-123.70234621051412,56.66611776523998],[-123.701904500144,56.66594960625223],[-123.70119153526453,56.665599506777035],[-123.70056444579532,56.665283440549615],[-123.70006229775073,56.66496287283491],[-123.69962510382706,56.66461543802282],[-123.69915019144052,56.66424939420025],[-123.69879376010725,56.66402221486704],[-123.69844292617728,56.66380410176769],[-123.69813275832452,56.663658452515875],[-123.69764550069746,56.66353542372032],[-123.69721787724747,56.66347510841691],[-123.69665875743661,56.663392267460175],[-123.69596125917704,56.66323072983786],[-123.69542741290978,56.66306650707606],[-123.69484008892714,56.662804926765574],[-123.69437139363669,56.66250735220836],[-123.6940732084894,56.6622980141079],[-123.69380340615015,56.66209254543356],[-123.69349794795562,56.66183375510611],[-123.6932926526584,56.6615745131016],[-123.6930665007866,56.661184870202206],[-123.69279422507721,56.660849327485764],[-123.69253491188155,56.660536434574325],[-123.69236830307716,56.66034850143154],[-123.69197345096343,56.66018450801788],[-123.69129446773078,56.66002215440669],[-123.69074111508658,56.65987773902875],[-123.69031982366293,56.65978052279851],[-123.68992657863132,56.65969277481133],[-123.68966029902498,56.6594974484964],[-123.6894752616518,56.65913880026972],[-123.68926824114907,56.65877191152536],[-123.68904107947269,56.658400177930275],[-123.68873490148293,56.657948563291356],[-123.6884683682684,56.657586211605654],[-123.688163058971,56.65722316443032],[-123.68793158235023,56.656924211813255],[-123.6875737891483,56.65658488288501],[-123.68727658002614,56.65632622499225],[-123.68705672170013,56.65600393956582],[-123.6868773935694,56.655721613019885],[-123.68667138931755,56.65537267310735],[-123.68639894269918,56.655041596918025],[-123.68598867673212,56.654657606057775],[-123.68553894499685,56.65431886370401],[-123.68507739470154,56.65410993515933],[-123.68432059035207,56.65395287187189],[-123.68368348551432,56.65394703706237],[-123.68293373426286,56.65401427780837],[-123.68237582855397,56.654084961454984],[-123.68183227425868,56.65415477972548],[-123.68118212078765,56.65423052594805],[-123.68017894778914,56.654298799489155],[-123.67930528812239,56.654353702489665],[-123.67816897805011,56.6544274116257],[-123.67741302231249,56.65442725307794],[-123.6764217177193,56.65446768803124],[-123.67561510244651,56.65449462968685],[-123.67478601524363,56.65441915634052],[-123.6738844172992,56.6541899230828],[-123.67281262804973,56.65397106405761],[-123.6715304093736,56.65371813217345],[-123.67051574973917,56.65353503393215],[-123.66964802570298,56.65342295935248],[-123.66846553985552,56.65331303609119],[-123.66718438109076,56.653247275677806],[-123.66628991807217,56.65310442934958],[-123.6657046842724,56.653017615592574],[-123.66500173053907,56.65298583586692],[-123.66478199075878,56.65297064831201],[-123.66439392579358,56.65211955623426],[-123.66443501242075,56.65143652893664],[-123.66429059906389,56.650644774708475],[-123.66435377797035,56.6495944812936],[-123.66507249815211,56.648819478120686],[-123.66627930210828,56.64784256942717],[-123.66748499203767,56.64691719379492],[-123.66821308047274,56.64598429448347],[-123.66764270183698,56.644291462912356],[-123.66710721688152,56.64365069290817],[-123.66620391101466,56.642740966498145],[-123.6659509493134,56.64215798816501],[-123.66514043299416,56.6413026172068],[-123.66382214903537,56.640909953641376],[-123.66259225251557,56.6406780506237],[-123.66219819761812,56.639250688038466],[-123.66275026763307,56.63805233484493],[-123.6638977041031,56.63649598448584],[-123.66535594126735,56.63452378752957],[-123.66773797727868,56.633147812150256],[-123.66990292184452,56.63218821867178],[-123.67247126038643,56.63086709276266],[-123.673292752829,56.62993586712866],[-123.67325664145925,56.62893647736451],[-123.67338395285338,56.62841306497597],[-123.67400000837257,56.627740423642905],[-123.67434211608833,56.62680054325714],[-123.67469884532538,56.62565019450363],[-123.67456685069422,56.62464907819603],[-123.67348360696943,56.62357811197105],[-123.67277657530252,56.622566612871665],[-123.672454993098,56.62156207146064],[-123.6708969598131,56.62037714117077],[-123.67162446927179,56.6194442363006],[-123.67225098360272,56.618561066178316],[-123.67260139549113,56.61751598020361],[-123.67364255097995,56.61611570749933],[-123.67351061592052,56.615114595345794],[-123.672310958768,56.61435649312925],[-123.66986340838847,56.61368118462776],[-123.66954624731638,56.61257135260443],[-123.6696407086447,56.61099594197107],[-123.67079653168942,56.60928167662078],[-123.67172287578057,56.60819432732449],[-123.67359575871745,56.60728211593472],[-123.67604024407817,56.60643287403319],[-123.6790699784044,56.60538340373681],[-123.6791076159085,56.60475301506938],[-123.67850490366703,56.60363806908414],[-123.67731172480497,56.60277588660012],[-123.67553020048545,56.602165367947514],[-123.67375503002833,56.601449573938574],[-123.6736043143622,56.600763102814504],[-123.67358221593759,56.6000072170616],[-123.67357137114021,56.599711103659864],[-123.67343949356133,56.598710000363944],[-123.67314951918453,56.59718034000748],[-123.6732374988287,56.59571019046387],[-123.67395937182076,56.59482875369236],[-123.6732203154493,56.59439506782063],[-123.67257816310142,56.593910446583614],[-123.67223798805888,56.59322055177941],[-123.67209986590622,56.59232470095018],[-123.67224765980423,56.58985579854795],[-123.67345134364807,56.588931516226694],[-123.67395467057574,56.58853036195368],[-123.67435509968467,56.58821253549719],[-123.67597896810328,56.58824185242209],[-123.67808164703045,56.58827978319677],[-123.68105670135868,56.58812266511742],[-123.68284707620583,56.58857522677959],[-123.68552191303195,56.58904142055022],[-123.68587725329222,56.589102730016535],[-123.68867012831406,56.588785237610566],[-123.68909064145488,56.58816172637199],[-123.68951223017721,56.587485551960484],[-123.69044627833958,56.58686900873626],[-123.69063210615823,56.586830868868255],[-123.6911898332769,56.58664359469529],[-123.6916534378793,56.586358235101066],[-123.69216340855469,56.586013177398776],[-123.69256104974822,56.58567058856293],[-123.69300540994801,56.58533107749637],[-123.69358247829271,56.58505783243328],[-123.69429588030064,56.584720894407724],[-123.69504178051623,56.584420402606696],[-123.69579422629297,56.58414692496614],[-123.69670618348489,56.5838314615266],[-123.69766064302834,56.5835212354525],[-123.69826325760872,56.583297746130654],[-123.69878714207456,56.58306051741613],[-123.69932456806966,56.582801111158965],[-123.69971646914621,56.582588421560104],[-123.7003126810847,56.58236929234475],[-123.70093412669647,56.58213716059729],[-123.70142568724052,56.5819632345253],[-123.70200825425616,56.58180213973481],[-123.70253258559208,56.58166017899025],[-123.70316731596927,56.581513460425064],[-123.70385506149279,56.58140131049521],[-123.70451678278123,56.58128084688452],[-123.70512014975887,56.581147010257716],[-123.70573079229744,56.58106261889365],[-123.70592963855964,56.581079612532534],[-123.70800456859311,56.580509054878334],[-123.71099426406609,56.58171897972607],[-123.71259010118503,56.58222034766602],[-123.7147573848618,56.58278451966187],[-123.71695246722798,56.582876141155765],[-123.7185668841888,56.5830627990953],[-123.71971385443616,56.583083116911084],[-123.7217978674308,56.58343497066572],[-123.72298683604538,56.5833999589875],[-123.72515026448744,56.58333620093181],[-123.72708883504693,56.582897432207325],[-123.72693621207085,56.58226369267902],[-123.7269822123664,56.58147653917717],[-123.72735030648364,56.58006290665393],[-123.72792712955832,56.57839179830248],[-123.72932778908803,56.57731246470816],[-123.73159611733907,56.57614304917138],[-123.73329809081665,56.574858265460065],[-123.73528809732768,56.57352697060777],[-123.73734627717587,56.57266872476163],[-123.7396089346301,56.57155288103771],[-123.74175958143645,56.570748872633075],[-123.74181443148296,56.56980384004524],[-123.74128791565639,56.569005525681035],[-123.74035105550487,56.5686741238782],[-123.73777385595682,56.56857617324678],[-123.73608253948387,56.568073437493446],[-123.73374776689012,56.56713903222647],[-123.7326533252114,56.56622531888504],[-123.7312534027466,56.56562229065736],[-123.72964879440585,56.5652790357772],[-123.72740193104504,56.56445030103877],[-123.72517251605782,56.56335955495111],[-123.7226325330453,56.56263203343287],[-123.71977379755099,56.562476052363124],[-123.71964702539529,56.5613697655781],[-123.72076498927801,56.55860313406185],[-123.72220406480912,56.55689354070309],[-123.72325105014355,56.555335037169485],[-123.72397097676125,56.554454459039626],[-123.72450770286905,56.553465278447376],[-123.7244673369977,56.55251745002525],[-123.72405036803166,56.55145872181838],[-123.72487713869384,56.55042199309935],[-123.72362007009045,56.55066315507639],[-123.72218703967621,56.550637791123],[-123.72028077436255,56.55055134658074],[-123.71778099904499,56.55082198449933],[-123.7161442740463,56.55100365926687],[-123.71394684471366,56.55101731177503],[-123.71127211499316,56.550969756582646],[-123.70921984239327,56.55014415080426],[-123.70818494240959,56.5498634396143],[-123.70535815684718,56.54918201072243],[-123.70373385977041,56.54915302842582],[-123.70267735242041,56.54923952648402],[-123.70153138790761,56.549219057331705],[-123.69979797961061,56.54945035617603],[-123.69825893138548,56.5496335502141],[-123.69692162284352,56.54960961656421],[-123.6952410048758,56.54894847573986],[-123.69358220267704,56.547920061701205],[-123.69288537867348,56.546750840656614],[-123.69264708584447,56.545958603533705],[-123.69310550882196,56.544652059999414],[-123.69315838459255,56.543759685646755],[-123.69235867574139,56.54274665818575],[-123.6917316514327,56.542051685156316],[-123.69129078776149,56.54141273078971],[-123.69096315656986,56.54051352751649],[-123.69003059857491,56.54012802077613],[-123.68880794061302,56.53979109544638],[-123.68713726152174,56.53897197991179],[-123.68595525446135,56.53795203497516],[-123.6847701804412,56.53698470365261],[-123.68363914225766,56.536753616214774],[-123.68145920409432,56.53645205354551],[-123.6793043891219,56.535729463808984],[-123.67875272750068,56.53504026722184],[-123.67823707376849,56.534396552606296],[-123.67926019213101,56.53325829516284],[-123.67988321362202,56.53268108742047],[-123.6803726055762,56.53222700260752],[-123.68004223553886,56.53137927983708],[-123.67944173269375,56.53021172119687],[-123.67936342599224,56.529953632092784],[-123.67896393812039,56.52862605429743],[-123.68119654749874,56.52803529587776],[-123.68419814513324,56.527354113550075],[-123.68643481957527,56.52665798067276],[-123.68687958457393,56.526266960625804],[-123.68696274064845,56.52582684207619],[-123.68759358380848,56.524839513656154],[-123.68970316890359,56.52308968876446],[-123.6905833255708,56.522737865038955],[-123.69194777026951,56.52228825078404],[-123.69378184749628,56.52195352844138],[-123.69599206271815,56.52173088137898],[-123.69887879979791,56.52136114866945],[-123.70119697158692,56.52092962796866],[-123.702750322747,56.52048440155578],[-123.7045997259369,56.51988640570023],[-123.70582272252166,56.51986340390445],[-123.70581537805107,56.519849822802975],[-123.70557211470992,56.51955518473297],[-123.7053337036843,56.519281928676655],[-123.70528724083384,56.51910288640878],[-123.70520040734401,56.518779656506624],[-123.70500188934471,56.51852056198881],[-123.70467839698621,56.51824018148838],[-123.70428478089285,56.51794061444014],[-123.70390259370295,56.517619954394185],[-123.70366572411022,56.51732094341207],[-123.70326279790584,56.516868773123704],[-123.70287566340784,56.51649422136426],[-123.70252019158085,56.51620429696559],[-123.70200703290328,56.51586111495559],[-123.70177047755112,56.51566073944305],[-123.70143986017005,56.51543290224352],[-123.70098102137872,56.51513552070961],[-123.700659259856,56.5149302565122],[-123.70048035662103,56.51478807242512],[-123.69977898066657,56.514392196951796],[-123.69941029151153,56.51411996035005],[-123.69906025676487,56.513807706488905],[-123.69869979514326,56.5134997482801],[-123.69828550781114,56.51313814582686],[-123.69786373827012,56.51279994550558],[-123.69748772387692,56.51241100496124],[-123.69730411974655,56.51214207755646],[-123.69710523024287,56.51175294657954],[-123.69714273978775,56.51139383043615],[-123.69724439305817,56.51105155532907],[-123.69718888133039,56.51095753139197],[-123.697067905346,56.50997351230525],[-123.69505566346992,56.51009547740412],[-123.69325629058807,56.50985359762792],[-123.69262666335001,56.50921126410759],[-123.69202504164159,56.50809643733547],[-123.69160014353322,56.50719437863208],[-123.69049895043388,56.50643932496858],[-123.68947470562425,56.50600059993214],[-123.68807346978248,56.50550128442097],[-123.68667635121936,56.504898910211764],[-123.685383181922,56.504191913076674],[-123.68418045312785,56.50353921167119],[-123.68294341665872,56.50346423235352],[-123.68127748166133,56.502593552653394],[-123.68002488492175,56.502780540265086],[-123.67905259818565,56.50307905905034],[-123.67770959109822,56.50321171206302],[-123.67633316631957,56.50387054257758],[-123.67428355705233,56.50462253670383],[-123.67185484851191,56.50531383163653],[-123.67031111983195,56.50560193280822],[-123.66846501696098,56.50614680842824],[-123.66555434252442,56.50645375878677],[-123.66539608884976,56.506445279640566],[-123.66460414412849,56.50651607448244],[-123.66392424345389,56.506619164283244],[-123.66330343640178,56.50672108338263],[-123.66257075089965,56.506855711031925],[-123.6619875240726,56.50690786915171],[-123.66126146553034,56.50689802020886],[-123.66069811459727,56.50685638268777],[-123.6600366168062,56.50678829685131],[-123.65921076831245,56.50671160975465],[-123.65846431485883,56.50670249429187],[-123.65838935559398,56.50669664503388],[-123.65766714423523,56.506318085099174],[-123.65702234154658,56.505938690591904],[-123.65602064275323,56.505131342364265],[-123.65567000568555,56.504599265832205],[-123.6551618982143,56.503538634866885],[-123.65384830551362,56.50314701770833],[-123.65154335168774,56.50336719204494],[-123.6498045591174,56.50354724324451],[-123.64895050585329,56.50363585957895],[-123.64576218986764,56.50426008781364],[-123.64393482826164,56.50448999774953],[-123.64174114782736,56.504449757742144],[-123.64010493060034,56.50468200074503],[-123.63719022536988,56.50552288848905],[-123.63593093873604,56.50581469050827],[-123.63494872590584,56.50626962219082],[-123.63337599267318,56.50702975735372],[-123.63207832551831,56.507951864768955],[-123.63066605531537,56.50761087085181],[-123.62973168027729,56.5072775555221],[-123.62823553692675,56.506776944643406],[-123.62645596345469,56.50621840016232],[-123.62484634529241,56.50597793619808],[-123.62313352673473,56.50589470662933],[-123.61979717646072,56.50583295277322],[-123.61712566412238,56.50578344210531],[-123.61548602447834,56.50606799332207],[-123.61383991659831,56.50645776638126],[-123.61169340709576,56.507206988845496],[-123.61001942938765,56.50801652654347],[-123.60955118898322,56.50874759820783],[-123.60952141834827,56.5087683411653],[-123.60932615684055,56.5089317200862],[-123.60916279379236,56.50920553846733],[-123.6090400943844,56.50948011325381],[-123.60885774017558,56.50976478689317],[-123.60866237147486,56.51012880076818],[-123.6084597872626,56.51044448230604],[-123.60823104095371,56.51075519323057],[-123.60797771287018,56.51103518253418],[-123.60780102016383,56.5112605537864],[-123.60752074123334,56.511581513395],[-123.60729841444497,56.51182060609572],[-123.6070762518422,56.512023833287635],[-123.60684809455527,56.5122583332725],[-123.60654841983569,56.51249710553889],[-123.60622837668166,56.51276912436773],[-123.60609745627734,56.512878774344095],[-123.60589859686957,56.5129344771417],[-123.60479773704455,56.512992428290836],[-123.6043264260699,56.51264513684184],[-123.60429578126734,56.51258067518438],[-123.60407231548199,56.512208859322286],[-123.60378947620733,56.51190879361576],[-123.60351970444962,56.51162802595749],[-123.60325737794341,56.51129247318962],[-123.60296845148241,56.510992292057146],[-123.60270486093012,56.510710516993534],[-123.60244820089753,56.510415420033624],[-123.60219885127671,56.51013390954334],[-123.60161566106154,56.509620870963474],[-123.60161531507164,56.50949420453813],[-123.60108548906368,56.50910657749661],[-123.60106401938823,56.50902547303124],[-123.60086479752057,56.508591334335485],[-123.60066065237889,56.508138048390165],[-123.60070022216868,56.50749539964909],[-123.6006068704984,56.5073255241074],[-123.60051634735316,56.507043612924825],[-123.60043247519963,56.50681899095759],[-123.60031035434501,56.50655442377115],[-123.60013571693345,56.506349403436545],[-123.60002138525155,56.50615671798813],[-123.60000009078384,56.506105880523535],[-123.59991119204378,56.505896856719374],[-123.59970848200844,56.505519816285464],[-123.59960166377965,56.50540349087351],[-123.59951445130855,56.50533236695252],[-123.59919917150883,56.504965552473216],[-123.59902864211554,56.50485924504515],[-123.59890101834107,56.50468424433627],[-123.59880640299498,56.504568146244196],[-123.59887467753269,56.504351970686535],[-123.59896903174587,56.50420801895663],[-123.59938525677016,56.504026366413626],[-123.59966526473632,56.50390830019926],[-123.59979537893398,56.50384459861625],[-123.60000116457516,56.50367582647868],[-123.60029288651441,56.50343355989366],[-123.60042778852424,56.50332511187786],[-123.6009375494078,56.50291317896068],[-123.60102062513546,56.50278694955736],[-123.60113753654079,56.50270618704943],[-123.60127935940112,56.50258441690678],[-123.60140271297367,56.5024981700469],[-123.60161620352781,56.502402396769426],[-123.6016172704121,56.50228584510374],[-123.6019391923995,56.50218088643111],[-123.60212246030167,56.50201393288038],[-123.60228501794728,56.50181969152816],[-123.60246049337115,56.5015808558702],[-123.60265657078197,56.501337920917514],[-123.6028198446394,56.50109885725118],[-123.60296365031856,56.500878485193354],[-123.60309994274128,56.50064788496142],[-123.60324374517396,56.50042751264047],[-123.60344107600011,56.499998534412086],[-123.6034785574288,56.49991853029772],[-123.60338491127486,56.499919025306745],[-123.60336557555217,56.49917440161021],[-123.6033387038616,56.49795662738024],[-123.60331294608964,56.49691933576486],[-123.60335191006423,56.49628564659159],[-123.60328497614523,56.49571947637493],[-123.60327726331055,56.49514992759258],[-123.60328349586496,56.494452859360074],[-123.60314876650739,56.4937979964203],[-123.60306080359018,56.49347466411426],[-123.6029573399174,56.493138712916654],[-123.60283121850871,56.492972711788916],[-123.60260761081089,56.49280377036647],[-123.60220132816352,56.49259443005179],[-123.60188602685739,56.492460764622535],[-123.60161922966832,56.49233248748421],[-123.6014786494733,56.49226933548248],[-123.60111636735155,56.492105648128586],[-123.60000094636065,56.49168241921417],[-123.59918980898357,56.49137359253663],[-123.59771995854469,56.49079240017195],[-123.5969748501909,56.49053523323384],[-123.59681520336652,56.49045154346198],[-123.59645811867387,56.49033613737209],[-123.59628486908834,56.4902421044954],[-123.5959186621428,56.49010971299819],[-123.59578557692421,56.49002427725566],[-123.595031173984,56.48968734240007],[-123.59432291531137,56.489295223295],[-123.59346601518892,56.488872293384745],[-123.59247923931343,56.488477186957454],[-123.59234591770071,56.48842873201012],[-123.59203040724856,56.48829952100686],[-123.59151798601032,56.48816325444692],[-123.58969626829179,56.487781610076986],[-123.58907562911077,56.48768477525619],[-123.5879766793672,56.487591285835045],[-123.58744700834995,56.48750399742721],[-123.58736549238357,56.48747332341031],[-123.58699213665287,56.487358705400496],[-123.58646155064116,56.48715482410973],[-123.58581269689589,56.4868568054483],[-123.58554735105949,56.48677223520928],[-123.58535763081662,56.48671486641403],[-123.58486905615655,56.48665411993347],[-123.58335839728392,56.486540518378185],[-123.58324326296342,56.48652714322255],[-123.58222486024074,56.4864149434785],[-123.58125688198194,56.48624427838042],[-123.57956099307984,56.485870461074796],[-123.5791795475057,56.48575566728001],[-123.57723382937334,56.48521233947477],[-123.57628915945874,56.48502750426264],[-123.57542971536803,56.48487901829609],[-123.57408294087907,56.48468321237157],[-123.57369447480514,56.484648972997356],[-123.57326374506948,56.48457470287061],[-123.57283257719764,56.48444213691738],[-123.57250903584955,56.48431272464116],[-123.57204250267176,56.48399678304731],[-123.57177533378842,56.48374625792777],[-123.57172458578272,56.48367916614357],[-123.57143662585996,56.48323993829721],[-123.57108781339426,56.482406127941225],[-123.57107713794122,56.482316255171824],[-123.57078561694856,56.48160794593512],[-123.57063027993566,56.48106474074123],[-123.5704129044711,56.480374646667634],[-123.57028701586111,56.47962015112153],[-123.57020212279609,56.4788933325703],[-123.57000379153254,56.478354917883365],[-123.56974553116028,56.47766853295557],[-123.56962015929722,56.47749354402968],[-123.56945262177918,56.477342416314066],[-123.56931116285416,56.477262397703015],[-123.5692204318787,56.47721696573308],[-123.56892126392961,56.47705662015963],[-123.56861461499919,56.476951055527],[-123.56819087770782,56.47670092045564],[-123.56773639779732,56.4761285078186],[-123.56744013319052,56.47569359698742],[-123.5673364647237,56.47536657662589],[-123.56735070504106,56.4751056804735],[-123.56773602848014,56.473949503204985],[-123.56778228571554,56.47372956552639],[-123.56777900147061,56.473423502333304],[-123.56769942670752,56.47306891691774],[-123.5676598388154,56.47266016578216],[-123.56762002937039,56.47218976199167],[-123.56775715655635,56.471393171086476],[-123.56780614375272,56.47083590019216],[-123.56776449947829,56.47029708837396],[-123.5677469101404,56.47025304079559],[-123.56763830294815,56.47003801584973],[-123.56745244192408,56.46982264797157],[-123.56709576051699,56.46963991104826],[-123.56680501093402,56.46957387341481],[-123.56673048029971,56.46952986738059],[-123.56651657290539,56.4695033953968],[-123.56628479905936,56.46943735352453],[-123.56506159543868,56.46925835745464],[-123.56413537009811,56.4690782592827],[-123.56369635303183,56.46897689563378],[-123.56320781604177,56.468821909049005],[-123.56214621084084,56.4684004784384],[-123.56186457970477,56.46825389890324],[-123.56171476495685,56.46817819620823],[-123.56118183748957,56.4678878525487],[-123.56089019661704,56.4676738276258],[-123.56069093955904,56.467575887512965],[-123.56012518013443,56.467160497352296],[-123.55976540607035,56.46686559208084],[-123.55949766372568,56.466529841801666],[-123.558877800246,56.46593968032279],[-123.55865320951577,56.46569441940101],[-123.55811733539082,56.46522466491888],[-123.55774400516549,56.46498441905483],[-123.55748573475884,56.464855087075506],[-123.55670996789576,56.46428772830105],[-123.55606117318013,56.46386849692532],[-123.5559948591634,56.46382351989871],[-123.55529503954793,56.46331027958999],[-123.55502811979845,56.463059722221494],[-123.55483438288456,56.462809437455526],[-123.55472154240117,56.462468781012774],[-123.55431828274072,56.461279686998104],[-123.55429855546275,56.461140321599004],[-123.55418462041911,56.46068755562359],[-123.55411167169312,56.46009994381739],[-123.55402453706354,56.459803491215915],[-123.55386249569538,56.459404731590936],[-123.55367540063135,56.45849773461634],[-123.55351010582442,56.457924055042845],[-123.5532384672489,56.45729566659445],[-123.55326854233948,56.45707542627165],[-123.55341183910038,56.456832684963416],[-123.55419713872418,56.45598009101018],[-123.55426499523445,56.455902922520536],[-123.5546782242706,56.4554075215192],[-123.55521841478824,56.45460517549646],[-123.55529054189988,56.45449221982693],[-123.55549346149247,56.45430329399399],[-123.55589312698321,56.453991455776965],[-123.55651430892934,56.45361546084383],[-123.55662164170423,56.45355697703994],[-123.55686529414466,56.453399088560495],[-123.5582882352808,56.45261913891823],[-123.55954960850127,56.45201656329925],[-123.56011352738344,56.45167757331236],[-123.56041427948092,56.45145127014423],[-123.56128928985436,56.45098032168724],[-123.56158183761441,56.45072247571583],[-123.56180080388181,56.45043857190797],[-123.56191329099471,56.45019972145686],[-123.56202863181841,56.44968743222488],[-123.56212456457864,56.4489326659358],[-123.56207197536185,56.44863575654469],[-123.56187566856168,56.44826438066222],[-123.56115740681227,56.44704131003437],[-123.561099724217,56.44695614825958],[-123.56107906539177,56.44666881244318],[-123.56128659643532,56.44620983715904],[-123.56160927056312,56.4457945222134],[-123.56169872145259,56.44566395938399],[-123.56232375846723,56.44502797285622],[-123.56252371486713,56.44468990639205],[-123.56285984827952,56.443961001418664],[-123.56300098399007,56.44342566519562],[-123.56306919405381,56.44301672288737],[-123.56325693249947,56.4424183824507],[-123.56336185401996,56.44168172329995],[-123.56355097923566,56.44106099202247],[-123.5635488612851,56.440867041789716],[-123.56349727162022,56.440781996986956],[-123.56334594298207,56.44063453102607],[-123.56321239595873,56.44052775383906],[-123.5630716423586,56.44043877348654],[-123.56287993087724,56.44025467210088],[-123.5626945104283,56.439937306751744],[-123.56272403185822,56.43975740803346],[-123.56270442054442,56.43955079594582],[-123.56259515979146,56.43938059006768],[-123.56252670599228,56.439272807110335],[-123.5622770517264,56.43904052742376],[-123.56124726343205,56.43844819187299],[-123.56085660447035,56.438228920737714],[-123.56060549698549,56.43798764303267],[-123.5603797975775,56.43782755044275],[-123.559979981328,56.437397379312664],[-123.55992056602074,56.43734020580607],[-123.55970194185169,56.43706703895113],[-123.55938905866978,56.43654660849359],[-123.55937856511753,56.43625946691301],[-123.55941782546451,56.43615148980344],[-123.55965506192182,56.435606778652925],[-123.55957493957332,56.43506835942789],[-123.55937089432035,56.43413976285278],[-123.55937432717485,56.43382486493433],[-123.55922894084344,56.432348160785786],[-123.55924489733754,56.43219042249397],[-123.55931481283177,56.43133204988037],[-123.55939101623903,56.43099051552714],[-123.55959016197451,56.4298846498929],[-123.5595891827606,56.42983531327689],[-123.55959492155426,56.42964599659104],[-123.55953132243638,56.42936344979196],[-123.55939824505182,56.429184941986954],[-123.5593638221346,56.42908565098998],[-123.55899636050185,56.42869196000642],[-123.55849457425963,56.42820492094769],[-123.55809445273832,56.42787897811139],[-123.55756778025899,56.42740042826157],[-123.55750922603976,56.427297314570964],[-123.55735797224995,56.42714984250784],[-123.55716398276725,56.426841272825826],[-123.55712047582065,56.42669249018896],[-123.55709550742807,56.426572082248896],[-123.55738626265078,56.425658513189425],[-123.5575646403386,56.424885153284684],[-123.55761890947447,56.42401751925346],[-123.55764593625581,56.423617886588204],[-123.55761413416934,56.42311961866556],[-123.55748174088298,56.422540974629484],[-123.55720132710059,56.42195838997403],[-123.55718412159574,56.421908744353125],[-123.55697905246609,56.42138812099192],[-123.5568511670201,56.420607807602266],[-123.55682679910466,56.4200233754245],[-123.55671829089236,56.41932301248514],[-123.55677611211695,56.41878834364817],[-123.55696453566368,56.418113814444396],[-123.55705780429733,56.41772665370823],[-123.55753818820264,56.41679988950488],[-123.55788242657924,56.41610142766533],[-123.55797238666723,56.41586439866645],[-123.55904949405114,56.41399963061758],[-123.55949159289854,56.41361911055576],[-123.55987570343204,56.41328904480079],[-123.56946513799019,56.410601832148934],[-123.57923052676527,56.410033402488025],[-123.58749485546986,56.41061959875738],[-123.59561465744987,56.41012654724974],[-123.60143060941638,56.40879186915207],[-123.60363040602999,56.406824487473315],[-123.60594578554692,56.40296728135046],[-123.60587546191839,56.40119955004305],[-123.604345253123,56.398875510901114],[-123.60700107676327,56.39581373110601],[-123.61284905240487,56.39231825753341],[-123.61559321862904,56.388854483613166],[-123.61530530309611,56.386921330394024],[-123.61891118408543,56.38395773129669],[-123.61966174380096,56.38229495307748],[-123.61525309135642,56.38006100931145],[-123.61227430230105,56.37780873636299],[-123.6108075691276,56.374454830842225],[-123.61231277733884,56.37106668716699],[-123.61745278530105,56.36820349964933],[-123.61790915737458,56.363908124156175],[-123.616391254519,56.359531185240776],[-123.61477192511296,56.354695056933885],[-123.60547794485083,56.353893904652985],[-123.58800385627511,56.354498366058706],[-123.57670095126086,56.354975324117326],[-123.56856423132481,56.35461480909885],[-123.5666427548484,56.350301254074736],[-123.56582297457541,56.3447084820898],[-123.56388463133764,56.342501701145345],[-123.55682492307807,56.33817974216379],[-123.55064817329017,56.33505786286057],[-123.54732286889819,56.33172136949731],[-123.54770059238486,56.32543409999659],[-123.55278820398345,56.321317278020906],[-123.56078331062052,56.320716814039756],[-123.56451959035874,56.31849260602467],[-123.56295984627194,56.31543224349159],[-123.56242067531433,56.314982613290155],[-123.56278370742,56.31097258025444],[-123.56498524890135,56.30683618594394],[-123.56579892119063,56.30391071043849],[-123.5625168554061,56.30120310067977],[-123.56055628751699,56.29809024062005],[-123.55833155682845,56.29662211381921],[-123.55501527651124,56.29551862586594],[-123.55435588028978,56.291811866058715],[-123.55637757673823,56.288479186894484],[-123.55922765657468,56.28483952422122],[-123.55925668365039,56.28307371488653],[-123.55328351006577,56.27708654220096],[-123.55209891783936,56.27583546634526],[-123.55564733707845,56.27448672990994],[-123.55865752373592,56.272679302275186],[-123.56000891721061,56.27021249946564],[-123.56033167038237,56.268147459587865],[-123.5619670595789,56.26527362326276],[-123.56350353409195,56.26216476557971],[-123.56436561216783,56.26079144681977],[-123.56058964341922,56.26140081181533],[-123.5510511493528,56.261514152700265],[-123.54764642455818,56.26109913653198],[-123.54283046107717,56.25841531089332],[-123.54145180617215,56.25459603727561],[-123.54496440491691,56.25250275031259],[-123.54983381066619,56.25095546133008],[-123.55249493291385,56.24538468746959],[-123.55246053202653,56.244639833684516],[-123.55105376249965,56.239968367676646],[-123.54925680571876,56.23559424700891],[-123.54608952008718,56.233229081221516],[-123.54255226583487,56.232129906970684],[-123.54152162728063,56.22922294348794],[-123.5420314219899,56.22624702657147],[-123.53831070273179,56.22292954268992],[-123.52683368561729,56.223164870484744],[-123.52622382397603,56.223350304875034],[-123.51621866601691,56.218717627802626],[-123.50891214485091,56.21515004728427],[-123.50081595343805,56.21232869368814],[-123.49464259670884,56.20902454436653],[-123.49022549339028,56.205817418465394],[-123.48862247596645,56.2043512489763],[-123.4886790058847,56.200183022017974],[-123.4934386155894,56.198519276154244],[-123.49904726436343,56.19772381248562],[-123.4976310910192,56.19281838368217],[-123.49806754867134,56.19053159127455],[-123.50056186969312,56.18890383419777],[-123.5057268951506,56.18718485898443],[-123.51158632955998,56.184950238964916],[-123.51254736816146,56.18048592314467],[-123.5077067767721,56.1771097476621],[-123.50263404105807,56.175620687665486],[-123.50168121806682,56.17460676728238],[-123.50019627220873,56.17028285344702],[-123.49896550117329,56.167550921735284],[-123.49439872263282,56.165999710558964],[-123.48837914720325,56.163442382688906],[-123.48681108176216,56.15969049123553],[-123.48768809309135,56.15556541977528],[-123.48980045785298,56.15205647173044],[-123.49103143044326,56.14895154732528],[-123.48659820695848,56.14534940487226],[-123.4839060375871,56.141781512990676],[-123.48215234574509,56.13842937702152],[-123.4820898351993,56.13688596686859],[-123.48036080187694,56.13416192133461],[-123.47672724152525,56.13271813459628],[-123.47421121793276,56.13120675719628],[-123.47320553138151,56.128532820632756],[-123.47082635298825,56.12489911233793],[-123.47055952518107,56.12353095731428],[-123.47098299629681,56.12095712858279],[-123.4745869015394,56.11857198383144],[-123.47449477919591,56.11623897118043],[-123.4762134806093,56.1130721812711],[-123.47456752837908,56.10982966842189],[-123.47318749752237,56.10847528895431],[-123.4734760808143,56.104984255557426],[-123.47486375184343,56.10069017475632],[-123.4764831932769,56.09478680799388],[-123.47399366184806,56.09063991706757],[-123.47274133189788,56.09031915643729],[-123.4712058020843,56.08713259310946],[-123.47255343201412,56.08471166894017],[-123.47190532106211,56.08100479504479],[-123.47302862182293,56.078310435715046],[-123.47689068259822,56.07786711965309],[-123.47927461801166,56.078873768120765],[-123.48546648276623,56.080287482296555],[-123.50104471165673,56.081536056391926],[-123.50584147442616,56.08159438444323],[-123.50823737309197,56.0801351052019],[-123.51034928520708,56.07628532033242],[-123.51020468273722,56.07526038726224],[-123.51249030712971,56.07094776476708],[-123.51635797631747,56.07039579495824],[-123.52084242248674,56.07027713103474],[-123.52031333786415,56.066913626957955],[-123.5158572605884,56.06531139656433],[-123.51554972945819,56.065081241456745],[-123.51095683152352,56.0623375068172],[-123.50949640480393,56.058695694955674],[-123.5093975962836,56.05618334999235],[-123.51705357332013,56.05603732326322],[-123.5261393651187,56.055936614819274],[-123.53343021855665,56.05441971854067],[-123.53711192337889,56.051918010758946],[-123.53896748220052,56.049784295333446],[-123.54210610529802,56.04642917639804],[-123.54679711225175,56.04346260741886],[-123.5508523598695,56.04009810731203],[-123.55519406563866,56.03599487531039],[-123.55940244221316,56.03143171797115],[-123.56139604467465,56.03015210090539],[-123.56275285205365,56.02824162005109],[-123.56373151496459,56.024638376764436],[-123.56905606662963,56.019934998783334],[-123.57336466324307,56.015256837259095],[-123.57798508479705,56.0104589933211],[-123.58019077568177,56.00700460591155],[-123.58158591727376,56.0033913020438],[-123.58589701045116,55.99993212283362],[-123.58662051980997,55.9973011447235],[-123.59215712550841,55.995075388951484],[-123.59311776284363,55.99329161519988],[-123.59815625981695,55.9886714363834],[-123.59976810835546,55.98489176396863],[-123.59903134573075,55.98141728023997],[-123.59840947691353,55.97816909746555],[-123.59869584413,55.97451675580988],[-123.60513139906799,55.9717068855522],[-123.60746109203808,55.97116813822531],[-123.61262450514553,55.970252416171135],[-123.62235619933139,55.96895606056144],[-123.62944276394481,55.967564715383936],[-123.62944015642998,55.96734054282145],[-123.63027581795265,55.962246148785475],[-123.63478054955989,55.957014088937264],[-123.63967530874673,55.954102100489315],[-123.6470262398172,55.951450721910376],[-123.64912741201435,55.95040497249721],[-123.65730642672294,55.948655898276755],[-123.664588325807,55.946862885805615],[-123.67039714619067,55.94445072302776],[-123.67436886337632,55.941332250404095],[-123.67732359496956,55.938849448025856],[-123.67886038894248,55.93591031028071],[-123.68104151823127,55.93155758052802],[-123.6801244104564,55.9285914227305],[-123.67940527787738,55.92580817857803],[-123.68072572305059,55.9229905820859],[-123.68205542804736,55.92001178438037],[-123.6808994511364,55.916198594238],[-123.67461865918973,55.91444287912127],[-123.66809004273452,55.9141793739124],[-123.66461837869738,55.91375680105784],[-123.66210180196524,55.91155883864057],[-123.66068109393625,55.9090045611766],[-123.6588887864821,55.90731296674595],[-123.65555537351992,55.90483978013262],[-123.65260193057358,55.90218528890904],[-123.64924252042296,55.899083914722176],[-123.64779674502415,55.898590889893065],[-123.6449395162069,55.89810745053285],[-123.64081876677524,55.89649773952445],[-123.63767900013723,55.894305568368075],[-123.63539350010632,55.89284645778828],[-123.63305824921406,55.89275797661456],[-123.630038357704,55.893929625948644],[-123.62550704220573,55.89249996920433],[-123.62157698451517,55.890140145880615],[-123.61569404955642,55.88774340855127],[-123.60956335910541,55.887071914639705],[-123.60574421091535,55.88528741988962],[-123.60456914041222,55.88404596039857],[-123.60099090671135,55.88305478153755],[-123.59724445466051,55.88378155663214],[-123.59553815010102,55.88443046950963],[-123.5931211517263,55.884904474618786],[-123.58787779686243,55.8833612677147],[-123.5846009279184,55.8824291516429],[-123.58192322678059,55.88166080563927],[-123.57966853694985,55.881052898805784],[-123.57859349540557,55.87923933989477],[-123.57767584169333,55.87616473005742],[-123.57553922515912,55.87311157830509],[-123.56985908217945,55.87036687544282],[-123.56147038874082,55.86869032799143],[-123.55116258829288,55.86748706977303],[-123.54126744613714,55.86661372618286],[-123.53443276146517,55.865996540296],[-123.52741995938605,55.86618235930199],[-123.52261696963727,55.86817723531224],[-123.51850583177409,55.86986277036535],[-123.51693359660864,55.87193872827416],[-123.51874690014702,55.87419767950059],[-123.52156795898142,55.87674530729535],[-123.5207967142066,55.87805703981353],[-123.51755136439708,55.87844165133483],[-123.51482712871304,55.8792039934667],[-123.51233157808196,55.880661098826195],[-123.51064726282785,55.88170379363562],[-123.5078279712263,55.882697218857096],[-123.50526569680066,55.88215362767091],[-123.50300820307385,55.88160703425256],[-123.4993259443814,55.880781215190694],[-123.49859680162922,55.88039922278275],[-123.49763470581792,55.87863196371962],[-123.49728801577712,55.8772713468402],[-123.49493275062365,55.87700955729906],[-123.49078296191183,55.8775010848422],[-123.48740544519264,55.87668095223833],[-123.48486162888236,55.87636143569689],[-123.4810050631477,55.877028815569744],[-123.47831807729727,55.87870559311092],[-123.47603160845551,55.88038134543429],[-123.47441950977915,55.88103054008264],[-123.46936116246759,55.88193357716261],[-123.46541352693589,55.88225799046752],[-123.46045143965456,55.883153642077886],[-123.45836592759888,55.884429684863484],[-123.45263921317704,55.88374967827678],[-123.44694091790092,55.88362584495862],[-123.44026129693442,55.884548803841724],[-123.43571515934781,55.88544295304884],[-123.4322230777366,55.88417073448772],[-123.42840189142751,55.87883927213502],[-123.42720462613056,55.876053520590915],[-123.42194345148732,55.87341808953761],[-123.41452475440568,55.870460402800184],[-123.4058344985668,55.86882999941683],[-123.39901343895227,55.86826850192336],[-123.39636170849356,55.86765805879866],[-123.39173752016455,55.86610135008689],[-123.38755291461,55.86225831620283],[-123.38579638498793,55.8609578397191],[-123.37726571664041,55.86131911619345],[-123.36740709039924,55.861410099828504],[-123.3649617237693,55.86132329617121],[-123.36471531081895,55.85948912700087],[-123.36393186486389,55.85681890341301],[-123.36387637897879,55.854764568510554],[-123.36462600274992,55.852646329802944],[-123.36850640431204,55.849929837017434],[-123.37275794395326,55.849094801890544],[-123.37450630058498,55.84639656997338],[-123.3749726370716,55.84467586385176],[-123.37580914077003,55.84244283090659],[-123.37844001678009,55.838256640558306],[-123.3801958014994,55.835675064400135],[-123.3796083641266,55.832937305865904],[-123.37498772331357,55.831155832624646],[-123.36846496301332,55.83030287774661],[-123.36527298940577,55.82895424507151],[-123.357279715802,55.82999767265637],[-123.35405793405441,55.83053991372841],[-123.35010166307866,55.83057354966624],[-123.34564848703427,55.827987556688],[-123.34193788861337,55.8257935906603],[-123.33834183737126,55.824283329357215],[-123.3376746347018,55.82206366075343],[-123.33941866386547,55.81897131959582],[-123.34141431190295,55.81427040697544],[-123.34167241475589,55.81233025226167],[-123.33947067491566,55.80961206103339],[-123.33615004261392,55.80712126978842],[-123.33022226550027,55.805579458848044],[-123.32563042441801,55.80487259731184],[-123.32120666985199,55.80262699414764],[-123.31881035030302,55.7999760069685],[-123.31621149385322,55.79394051015507],[-123.31508586863731,55.790249509641775],[-123.31481992796748,55.78756304331836],[-123.31217091073921,55.78370510192393],[-123.31039735822885,55.78132720696451],[-123.30817891584326,55.77820458764452],[-123.30832241242666,55.77632480595311],[-123.3126322134043,55.773825536891906],[-123.31551020151345,55.77169017093103],[-123.31510551735948,55.76822073266875],[-123.3124737213727,55.76436315622666],[-123.31214041998909,55.76362085235097],[-123.31277231489744,55.760424537933275],[-123.31524068728643,55.75771562889232],[-123.32102870612991,55.7545841310439],[-123.32380041095581,55.75233877781489],[-123.32531709038591,55.74856050385054],[-123.32768394421245,55.7459119995243],[-123.33390929690253,55.74026988055694],[-123.338066847356,55.73686112709229],[-123.34142395499917,55.733471234620644],[-123.34235755008548,55.73049639560327],[-123.3394507076151,55.72812191901599],[-123.33546378894827,55.72662110251065],[-123.331709132169,55.71928841072023],[-123.3308226941693,55.71656199765307],[-123.32811635882798,55.713841817953394],[-123.31825826386952,55.712332304063175],[-123.29840262720066,55.707873394691575],[-123.2887259740731,55.70584538895303],[-123.2797605968773,55.70346438367885],[-123.27017736210502,55.7010334624816],[-123.2647875635443,55.69958954447233],[-123.25305736137187,55.69985422788448],[-123.24245582172598,55.70546839526348],[-123.23482347882269,55.707820527857365],[-123.22299572770163,55.71241099923671],[-123.2093154412117,55.716062772928886],[-123.20104173418274,55.71703586403216],[-123.19396152482231,55.71760462637245],[-123.19097365967131,55.71944787392395],[-123.19359511509222,55.72324527075048],[-123.19672360369553,55.727331843597426],[-123.1955946111678,55.73088430234233],[-123.1910261999472,55.73428841447507],[-123.18804876271273,55.736867109963114],[-123.18338995360827,55.73724726969653],[-123.17894668239724,55.737739681490226],[-123.17319312748971,55.73868674993941],[-123.1670494845633,55.74039591723626],[-123.1624839964521,55.73990765988713],[-123.15352227108583,55.73768810693829],[-123.15117092879447,55.73662175382606],[-123.14686326943323,55.73477581747269],[-123.14450562802675,55.73313532556574],[-123.14252872664633,55.73086678830544],[-123.1389226481656,55.728606068282616],[-123.13667544488911,55.727658357318965],[-123.13452916678253,55.72664116594805],[-123.13337197115244,55.724310408224824],[-123.13640843847027,55.71984233145519],[-123.13934842569405,55.71559617632755],[-123.14021877343932,55.71370604897851],[-123.14056299413708,55.71114044605684],[-123.13949025169212,55.70852473661515],[-123.13680492437443,55.706141362480636],[-123.13371191372131,55.70388314583208],[-123.13234485978276,55.70115306599935],[-123.13035840967339,55.698606119661015],[-123.12759992691196,55.69725202394335],[-123.12373484037576,55.69641955499397],[-123.12168550731859,55.69541328764146],[-123.12113720129467,55.69306941598925],[-123.12277392890769,55.68941256896609],[-123.12718426552867,55.68732543758685],[-123.13019846275999,55.68645269841967],[-123.13227311601308,55.68467079492908],[-123.12999976228018,55.682574592944675],[-123.12743372796317,55.68100069580096],[-123.12690258207992,55.679742212030675],[-123.12684227927024,55.676602520885886],[-123.12778604899118,55.67369198594566],[-123.12841239968739,55.67031690909279],[-123.12774468650865,55.66763859127001],[-123.12768004970764,55.66433741250013],[-123.12971782619314,55.66084212738718],[-123.13431625811765,55.65875016515121],[-123.14072971831625,55.65579370291212],[-123.1460062762292,55.65245248500399],[-123.14915818107015,55.648946358172225],[-123.150089214979,55.64529122277839],[-123.14860808146501,55.64216422554665],[-123.14583711390182,55.64058602698916],[-123.13966813457078,55.640401003861555],[-123.13906621720335,55.64035144304454],[-123.13814264555118,55.63990003305231],[-123.13676608299102,55.637107014315454],[-123.13496408262608,55.63358696351438],[-123.13159354577871,55.63150160381208],[-123.12547470460575,55.62931745956678],[-123.11667804648765,55.6289276816165],[-123.11073006664034,55.629015262805424],[-123.10455494933167,55.62872073256082],[-123.0991904413427,55.62801420789993],[-123.09440881578246,55.62696225898986],[-123.08662984575099,55.62638764876163],[-123.07894825655282,55.626442488907415],[-123.0728863986586,55.62613108780618],[-123.07000936434301,55.624100318532356],[-123.07122889542634,55.61964534696923],[-123.07475457600206,55.61414117308287],[-123.07570014025475,55.61145522381504],[-123.07555646857686,55.609290892440015],[-123.07479850102112,55.606385952043844],[-123.07257931336324,55.60235301639518],[-123.07080610832296,55.59962164945654],[-123.06793009102775,55.59673897686703],[-123.06546319202431,55.59457416650442],[-123.06440398394007,55.592531885532736],[-123.06668907275782,55.5904601594596],[-123.07129560465562,55.58906127056402],[-123.07531099819523,55.588123688690516],[-123.07648801720391,55.586178423351534],[-123.07371018562701,55.583916867112514],[-123.06931442499005,55.58137538266616],[-123.06603479470554,55.57837561915467],[-123.06324407436917,55.57565620239879],[-123.05956581413324,55.573113195957156],[-123.0562130284086,55.57198549190772],[-123.054679290373,55.57142943585719],[-123.05089148533956,55.56865941427465],[-123.04823733942274,55.566911254874974],[-123.04448195910683,55.56521780487409],[-123.04233349334079,55.56437810370363],[-123.04151478443441,55.56340831829414],[-123.03965536586159,55.561033082660266],[-123.03688536020196,55.558717015844834],[-123.03170573482123,55.55737508834592],[-123.02758609385606,55.558030778019514],[-123.02631055055753,55.55956976476309],[-123.02543006829234,55.560714595319446],[-123.02404656691657,55.562206169859174],[-123.02080865763901,55.56212036912072],[-123.01535933665429,55.561408016362535],[-123.00697132788277,55.56128891886497],[-122.99823180360522,55.56288253027874],[-122.99143834031607,55.5662887460861],[-122.98746597297752,55.56939472011826],[-122.98276607406223,55.57159534676726],[-122.97759379614442,55.575613748056305],[-122.97332778086191,55.57962691662653],[-122.97133605009964,55.58050250593973],[-122.96783448542381,55.58177203649841],[-122.96179237413783,55.58254958690793],[-122.95864788813313,55.582051983355804],[-122.95578173693136,55.579785515595454],[-122.9534247817832,55.577522367757396],[-122.94774900520898,55.576012474878084],[-122.94206954004564,55.574556030052726],[-122.93994709673564,55.57422631278706],[-122.93455503792613,55.57152108053841],[-122.93107233905232,55.56840496668585],[-122.92909077177768,55.565217880307685],[-122.92996222078978,55.56298837260658],[-122.9352699206976,55.560562406993526],[-122.94168474622961,55.55841431281577],[-122.94486198162394,55.555550426204405],[-122.94692196498029,55.552112277537994],[-122.95040381000497,55.55003584573558],[-122.9543055601703,55.548077131119626],[-122.95415304459719,55.54528459929813],[-122.9497720209528,55.54290940161837],[-122.94742454931436,55.5407629008903],[-122.94647153749807,55.53888346383701],[-122.94540542031899,55.535575458117236],[-122.94205151497445,55.52852609058526],[-122.94128281927686,55.52424785575454],[-122.9407968998519,55.5198061379668],[-122.94293066135457,55.515177261330926],[-122.94598266675752,55.51161991783008],[-122.94854609895786,55.50800578241337],[-122.9534248679934,55.505470191375466],[-122.95894700664603,55.50407094418946],[-122.9637412347879,55.50221443419486],[-122.96296296124021,55.49845625891343],[-122.96080136990965,55.49556124134818],[-122.95821764458422,55.491750243788005],[-122.959009701765,55.48593184097312],[-122.95958662515024,55.483982037416375],[-122.95955242490317,55.48192772522166],[-122.95385517514586,55.47900047042953],[-122.94598188360442,55.47756224391674],[-122.94030601732965,55.47582750338037],[-122.93562749328451,55.47288839023706],[-122.93285913458311,55.46987932603675],[-122.9313625963861,55.464982373435014],[-122.93634081561297,55.4613021939444],[-122.94515151884177,55.45976894058196],[-122.95884175606645,55.45997680204384],[-122.96106029397488,55.46042524308743],[-122.97095725936293,55.462754482498134],[-122.9770161818151,55.46403080853991],[-122.9830615093581,55.46423046263731],[-122.99188385752439,55.46252385715433],[-122.99625427788914,55.45946348288535],[-122.99775912541426,55.4542091019752],[-122.99666958820106,55.44970846194327],[-122.99619275574945,55.44634338629312],[-122.99753553811516,55.443030957673386],[-122.99822123195686,55.44171134268918],[-123.00055418523908,55.43787566788734],[-123.00218907727701,55.434041167563976],[-123.00071404975263,55.430454922047105],[-122.99916306853585,55.42767385148371],[-122.99389121906401,55.4261125356259],[-122.98755405192108,55.42523371763382],[-122.98259495699855,55.42394845081194],[-122.98168729477985,55.41790970940558],[-122.98559783948512,55.412695622930976],[-122.98666033755985,55.41057814157719],[-122.98900436030146,55.40679678367412],[-122.99042947601973,55.402168315830394],[-122.98793071307972,55.39790263871768],[-122.97940135785711,55.39801060822429],[-122.9719165850451,55.400851345716696],[-122.96182273630643,55.40319784763949],[-122.95442099454027,55.40512496778402],[-122.94462933747926,55.408257639662885],[-122.93853341198705,55.409659808502134],[-122.93199811862414,55.40975962761196],[-122.92405396302988,55.40922363854749],[-122.91424952560713,55.411448002103086],[-122.9067532302044,55.413316258668786],[-122.90134983634434,55.41454548586308],[-122.89472618535542,55.415771086844366],[-122.88680195468082,55.41598651216825],[-122.87955539065989,55.415231926325404],[-122.87220565093246,55.41417840297707],[-122.86897067296069,55.41339795057226],[-122.86793801049006,55.41181172198511],[-122.87482900368026,55.40858549049214],[-122.87981777596904,55.40678210679162],[-122.88106235475348,55.4034144860589],[-122.87650056478623,55.4003592116713],[-122.8714483658318,55.39912982503197],[-122.86358944365217,55.39733659428982],[-122.85704786817415,55.396526563059524],[-122.85091788722963,55.39592384528392],[-122.84879657135211,55.39530540258063],[-122.84626240739449,55.393896313989636],[-122.84639795721922,55.389559376938024],[-122.84845785359067,55.38612293377263],[-122.84919503406185,55.38178324718918],[-122.85124514865933,55.378463110061084],[-122.85262628957793,55.37680303884493],[-122.84558268645131,55.37597966725805],[-122.83916618241211,55.37664246814806],[-122.83477902030211,55.37786755177824],[-122.83060306960016,55.38062236710484],[-122.82730852520305,55.382637186978506],[-122.82173765497998,55.38499758503947],[-122.8120839125084,55.38452739720534],[-122.80512145002321,55.381883343566244],[-122.79995024501203,55.378827421474995],[-122.79761227654375,55.37598743517092],[-122.7936612898141,55.37411937315061],[-122.78795299117073,55.37443005150171],[-122.7839264719178,55.37410222291444],[-122.78141169680104,55.373086823683956],[-122.77845068853327,55.37014069737317],[-122.7762293974518,55.36843324731353],[-122.77050054989242,55.36782783504698],[-122.76717473618413,55.36784938773468],[-122.76417153956172,55.36740390235817],[-122.76063616834871,55.36610153172678],[-122.75700784162677,55.36458140489391],[-122.75499715064548,55.36419733901284],[-122.75257316238752,55.3626635302409],[-122.75392687940104,55.35923701794519],[-122.75419033386478,55.35637405243451],[-122.7521401625747,55.3529666252887],[-122.75100420377518,55.350973028093435],[-122.75187751225707,55.34937251808561],[-122.75204390160597,55.345951004898126],[-122.74832521208752,55.34596178300831],[-122.74563574396768,55.34654635563302],[-122.74008377530991,55.34497549891532],[-122.73343287053882,55.341752362956356],[-122.72890093272218,55.34068300012921],[-122.7232834276955,55.34070600489808],[-122.72058579351366,55.34100283622475],[-122.71579103064074,55.34198880622724],[-122.70987892920826,55.34367158467361],[-122.70657160686078,55.34368299133624],[-122.70305417376606,55.342208963515105],[-122.6997094456599,55.339600401711614],[-122.69899673574804,55.33903447075501],[-122.69356667688137,55.33716873632243],[-122.68763509505318,55.335827550673194],[-122.6823058196613,55.335049174938526],[-122.67889146654592,55.334832768552246],[-122.66919511290196,55.336744678458984],[-122.65952072029329,55.34236949654849],[-122.6566480476412,55.34494730359009],[-122.64912263734186,55.35472770906412],[-122.64556364365119,55.368704190271515],[-122.64294580309615,55.37784483930885],[-122.64083376445944,55.386227755242274],[-122.63868046502597,55.39188301350071],[-122.64032029393648,55.395182829055514],[-122.6408246540399,55.39559102136814],[-122.6394302327854,55.39672844842455],[-122.63461314275584,55.396177253581286],[-122.63019205685073,55.39619262584839],[-122.6279889891824,55.39676998435903],[-122.62425351574389,55.39832949904323],[-122.62254680050762,55.39698735686934],[-122.62220053964863,55.396725743319934],[-122.62195032739102,55.39652278182138],[-122.62163464780228,55.396274325700475],[-122.62110956082165,55.395973118434966],[-122.62108312798517,55.3959578289564],[-122.62072718329046,55.395740794006265],[-122.62042909664945,55.395542139879566],[-122.62012676508657,55.3953938208167],[-122.61973261854574,55.395230684529295],[-122.61922701100052,55.3950039900414],[-122.61858151729604,55.39476902293961],[-122.61800574444351,55.39452921287387],[-122.61728800179279,55.39432928015971],[-122.61727059924768,55.39432432446336],[-122.61695463125295,55.39422047311225],[-122.61647196791955,55.39409753188778],[-122.61613586086457,55.39402116118175],[-122.61594339652497,55.39397895088889],[-122.61591611637063,55.39397372744552],[-122.61558161826476,55.39387833957318],[-122.6153679909959,55.39382882828853],[-122.61531173905578,55.39381497191694],[-122.61528643467197,55.39380980185792],[-122.61522058849934,55.39379232212846],[-122.6151587880657,55.39377383084391],[-122.61513771847461,55.39376541209682],[-122.61477031091613,55.39363773869129],[-122.61434571907587,55.39348384961784],[-122.61429060264189,55.393456569971235],[-122.6142755546282,55.393447193124324],[-122.61424103472419,55.39343392518789],[-122.61421996550455,55.393425506286576],[-122.61399912262806,55.39332086160503],[-122.61363831141598,55.39318551553305],[-122.61324984513078,55.39304941866634],[-122.61322294429816,55.393039720367454],[-122.612791135788,55.39285423837453],[-122.61237324325913,55.392691554768156],[-122.6123367491187,55.3926782327392],[-122.61198613363635,55.392492707129485],[-122.6117473445719,55.392366269984336],[-122.61170934856123,55.392347301365284],[-122.61166730696281,55.39232934414221],[-122.61163673988102,55.392316182646994],[-122.61161021844185,55.392302009738835],[-122.61158557788966,55.39228900897131],[-122.61154391492599,55.39226657744386],[-122.61140745189539,55.3921944870167],[-122.61137181023565,55.39217109761636],[-122.6111089765921,55.391977860128456],[-122.61085620000374,55.39180619638289],[-122.61058808286354,55.39165205399579],[-122.61027417858647,55.39145406555766],[-122.61025198776007,55.39143552530665],[-122.61000901343779,55.3912417029736],[-122.60960198122945,55.39088086342465],[-122.60958571730235,55.390862483892086],[-122.60920093496847,55.39042600959771],[-122.60897181282458,55.39020901714471],[-122.60885259831844,55.39009703101366],[-122.60882524035041,55.39006938113441],[-122.60879938429804,55.3900473776905],[-122.60878866841728,55.39003363318283],[-122.60877240520685,55.390015253546416],[-122.60874890340673,55.38998882946386],[-122.60870923318821,55.38994290716919],[-122.60870039803946,55.3899303348434],[-122.60854606121255,55.38971873508159],[-122.60837075479934,55.38949759668902],[-122.60806041218056,55.38904744341359],[-122.6080484792444,55.389024696706976],[-122.60786257446499,55.38860146544644],[-122.60774250430731,55.38835940320468],[-122.60707135095083,55.3871438032457],[-122.60667029806389,55.386199003436545],[-122.60628576405948,55.38533985704143],[-122.60580505015041,55.3844478248739],[-122.60512730291816,55.383007805308786],[-122.60429045509274,55.38146031088537],[-122.60343719664775,55.379803612819806],[-122.60262045937851,55.378067178994115],[-122.60207371318126,55.377045522606714],[-122.60162751389319,55.37602884173037],[-122.60104177377342,55.37479085995952],[-122.60051715379505,55.37371934590025],[-122.60050870436305,55.37370229880125],[-122.60043387150742,55.37344127860481],[-122.60042984574962,55.373418746240496],[-122.60040036996676,55.37311299417214],[-122.60040029333267,55.373090569321924],[-122.60043622540891,55.372830322385816],[-122.60043736413026,55.372816899730005],[-122.60051791000755,55.37249732595269],[-122.60056804180184,55.37223298106438],[-122.60057859664445,55.37220187655119],[-122.60072841855187,55.37190549033451],[-122.6007469659727,55.371873482260916],[-122.60078187845286,55.37183519286569],[-122.60072849082326,55.37181131672866],[-122.60061833612811,55.371756745551195],[-122.60054053232089,55.37169408592288],[-122.60035281956777,55.371503987525536],[-122.60032355723675,55.37128905344438],[-122.60030851748381,55.37116307649823],[-122.60029302496005,55.37113574736654],[-122.60029522254598,55.37096987877686],[-122.60024257402961,55.370843998959785],[-122.5999998701613,55.37076563754496],[-122.5999170579317,55.37073871750139],[-122.59947734989292,55.37057987403457],[-122.59931932054776,55.370436548922434],[-122.59279021725779,55.3704188767168],[-122.59099318676465,55.36660502222968],[-122.59222101038449,55.36466196604719],[-122.59224101578636,55.36247179839962],[-122.59539159385274,55.36248713055361],[-122.59604632044618,55.362489288923065],[-122.59602631621087,55.36246856293807],[-122.59599625197978,55.36244980491697],[-122.59594756678267,55.36244062939235],[-122.59585414446477,55.36242238594398],[-122.5958074333377,55.36241326419357],[-122.59571249113907,55.36241291743556],[-122.59552336679333,55.362403275306605],[-122.59541329765729,55.362394667800686],[-122.59520868779995,55.362357695484754],[-122.59508161299946,55.3623396547395],[-122.5950191101515,55.3623301019648],[-122.5949086827127,55.36230242483664],[-122.5946672547041,55.362233055379164],[-122.59460974544689,55.3622113060574],[-122.59455299651093,55.36218060831896],[-122.5945002906746,55.36214889970671],[-122.59440672316933,55.36208580552693],[-122.59429569706776,55.36199532757825],[-122.5942021302425,55.36193223324631],[-122.59412459676543,55.36191330079604],[-122.59402950966219,55.36186810311],[-122.59398234638076,55.36184103004675],[-122.59392121937638,55.361768730301925],[-122.59381071475335,55.3616255724399],[-122.59377943864865,55.361597811640976],[-122.59371724460753,55.36156135919941],[-122.59368511312256,55.36154366530951],[-122.59359124088664,55.36150746953919],[-122.5934344147374,55.36144376949977],[-122.59337181861412,55.36143533444984],[-122.59323016935991,55.36142586312789],[-122.5930885201726,55.361416391645484],[-122.59299358035692,55.36141604282117],[-122.59296123653606,55.361424129211905],[-122.59293077157847,55.3614333880167],[-122.59286710704714,55.36146080010722],[-122.59280308482546,55.36146914298331],[-122.59273982322699,55.36146853744811],[-122.5926779878744,55.36145115367203],[-122.59264519134973,55.361441289345656],[-122.5925983375942,55.36138731674826],[-122.59252101898153,55.361342602838405],[-122.59239404369598,55.361323440814374],[-122.59222071684714,55.36131422475436],[-122.59204860322185,55.361314010717095],[-122.59200037262781,55.36132278429264],[-122.59187344623845,55.36134958993478],[-122.59177850659144,55.36134924018714],[-122.59171645826821,55.36135763639952],[-122.59152733985854,55.36134798822257],[-122.59147865702094,55.3613388109576],[-122.5913702086979,55.36131118460295],[-122.59133807844859,55.36129349011005],[-122.59132304786603,55.36128411053755],[-122.59126040455365,55.36122970623466],[-122.59121355290844,55.361175733119225],[-122.5911964533389,55.36116741817549],[-122.59108679275049,55.36113078930428],[-122.5910403933438,55.3610947667647],[-122.59100947631713,55.3610860744603],[-122.59089950689564,55.361076344432895],[-122.59081914649667,55.36106742293859],[-122.59077243809239,55.36105829930713],[-122.59069369509137,55.36103036245437],[-122.59066308757393,55.36099477105727],[-122.5903352313975,55.36061583878403],[-122.59030648223558,55.360418853274226],[-122.59018151094227,55.3602831446253],[-122.5900395832384,55.36018397039708],[-122.59002455337517,55.36017459066961],[-122.58972688308022,55.359975864220054],[-122.58966424397543,55.35992145912492],[-122.58963349703704,55.359841017836445],[-122.5896488367394,55.359823498609884],[-122.58971433346821,55.35975129244731],[-122.58976166006843,55.35970661847157],[-122.58980929650971,55.359635045477596],[-122.58980977502509,55.35953639783469],[-122.58977912324899,55.35945483804081],[-122.58970167024833,55.359365272755],[-122.58962617315412,55.35911319488514],[-122.589547913922,55.35898660968042],[-122.5895327894576,55.35897834843957],[-122.58950151837713,55.35895058657817],[-122.58940765598376,55.35891438767521],[-122.58935897658432,55.35890520958677],[-122.5892655654961,55.35888696121913],[-122.58918673263237,55.35886014196778],[-122.5891245470088,55.358823687251395],[-122.5891090668694,55.35879635677275],[-122.58909335100203,55.3587252951977],[-122.58909366142112,55.358698396201795],[-122.58906270130217,55.35864373523564],[-122.58906377315672,55.35860788788691],[-122.58903150558702,55.35854534316856],[-122.58901664655666,55.3584642146891],[-122.58898523578357,55.358391603063104],[-122.58894067482697,55.35831078405578],[-122.58890885859192,55.35826618994986],[-122.58886232414164,55.358185316977234],[-122.58884715500719,55.358131087474455],[-122.58884822704064,55.35809524012973],[-122.58886428273537,55.35802280447251],[-122.58891160824312,55.35797813082766],[-122.58905341421936,55.35791585841427],[-122.58915017885829,55.357871414533335],[-122.58921329402673,55.35782717225223],[-122.58922796694941,55.35781748289042],[-122.58924527982357,55.357800017650945],[-122.58929367626962,55.35771949651584],[-122.58938827977505,55.35758418070948],[-122.58959534051542,55.35740597058969],[-122.58969115475695,55.3572796568415],[-122.58972304463848,55.35725362066407],[-122.58980249456924,55.35722664158572],[-122.58988163451417,55.357226561450105],[-122.59016490185468,55.357245511517554],[-122.59021236681524,55.35724568701347],[-122.59026028327342,55.357263813126536],[-122.59030698714346,55.35727293694555],[-122.59043287801717,55.35732794843693],[-122.59054217112184,55.35734550868668],[-122.59062242887347,55.35735554890046],[-122.59085899335014,55.3573653736931],[-122.59104809282505,55.35737502287742],[-122.59111023024546,55.357365508455324],[-122.59122049852884,55.35734833929597],[-122.59126948541468,55.3573306176603],[-122.59131604653965,55.357294891473245],[-122.5914115462453,55.357195475403906],[-122.59142809703951,55.357186958229086],[-122.59157065714113,55.35711573459791],[-122.59163376845143,55.357071491097614],[-122.59166651281262,55.35703538751154],[-122.59172926683796,55.35697207478786],[-122.59177810947206,55.3569095033271],[-122.59182573899476,55.356837929587115],[-122.59184392745085,55.35669379882818],[-122.59184333161203,55.35663099857505],[-122.59181317861575,55.35661335810588],[-122.59170186485436,55.356549776905],[-122.59163968052651,55.356513323450315],[-122.5916241044647,55.356487111836266],[-122.59153055468731,55.35642401554325],[-122.59150004504542,55.35638730582434],[-122.59145167705353,55.35635122955947],[-122.59140590054723,55.35626140918666],[-122.59137377432633,55.356243714713024],[-122.59132692835122,55.356189741671045],[-122.59131220859528,55.35615346310908],[-122.5912807954767,55.356080852079415],[-122.59126583770136,55.356000842435826],[-122.59128433671756,55.35582981277957],[-122.59129998308266,55.355785394365924],[-122.59136349657894,55.355713133471106],[-122.59144325117617,55.355659254361704],[-122.59158566247493,55.355543181106015],[-122.59179263300882,55.35543559745033],[-122.59190351271519,55.35536462970714],[-122.59203148926493,55.355301976692125],[-122.5921423681795,55.35523100873789],[-122.59217434992406,55.35520385339469],[-122.59222242906631,55.3551502301414],[-122.59225642449181,55.35488993221531],[-122.59225668374455,55.35481706506216],[-122.5921947148271,55.354754831445376],[-122.59214634817863,55.35471875545612],[-122.5921162915688,55.35469999651796],[-122.59202167607965,55.35467274796436],[-122.5919593992837,55.354637413222456],[-122.5919273692067,55.35461860034873],[-122.59184916002988,55.354537984810065],[-122.59181819936734,55.354483324552724],[-122.59180338470256,55.354448164601436],[-122.59178700012959,55.35438493322035],[-122.59180380975661,55.3543035488506],[-122.5918379295096,55.35420469888783],[-122.59185236174423,55.354151278155285],[-122.59187130958868,55.353998199070844],[-122.59185483000438,55.35393608624757],[-122.59179295816057,55.353872733892004],[-122.59160567892832,55.353655723761364],[-122.59152716352702,55.353602007016384],[-122.59148077243161,55.35356598467131],[-122.59141707134083,55.35354742784351],[-122.59137113235955,55.3535293560814],[-122.5912930694364,55.353493589813645],[-122.59121419799443,55.35342080370393],[-122.59115102014826,55.35334956731611],[-122.59116904333509,55.35327718530485],[-122.5912002633438,55.353258978577564],[-122.59126382089686,55.35323268590725],[-122.59129580164314,55.35320553079511],[-122.59134357069739,55.35317880687661],[-122.59142134674237,55.35312487389647],[-122.59150176178785,55.353063164948814],[-122.59159725096104,55.352963748785086],[-122.59162837543958,55.35294666049676],[-122.59166142509198,55.3528836579445],[-122.59167752197243,55.35285719011959],[-122.59169556569636,55.352668209842335],[-122.59169587432402,55.352641310858466],[-122.59161714719863,55.35261337461446],[-122.59156999642352,55.352586300669124],[-122.59150758001438,55.35250611610613],[-122.5914928614465,55.35246983758068],[-122.59149317020857,55.352442938597946],[-122.5915092188665,55.35237050264723],[-122.5915248636337,55.35232608422269],[-122.59163673442454,55.3522898994371],[-122.59173150913547,55.35224539968953],[-122.59179385192282,55.352210104495654],[-122.59189045608984,55.35212080891885],[-122.59192122268902,55.35208465139479],[-122.59195457962085,55.35199474978861],[-122.59200281982696,55.35186937805639],[-122.59202592628674,55.351690626330814],[-122.59203636166906,55.351591129668975],[-122.59208669024154,55.35134809507688],[-122.5920882114478,55.35133019834857],[-122.5921978664129,55.35125022812444],[-122.5922786798024,55.35116050116335],[-122.59235858809758,55.35103487292068],[-122.59239027789019,55.35091801834437],[-122.59240922215568,55.35076493923397],[-122.5923777162047,55.350693447069986],[-122.59231584853538,55.35063009499653],[-122.59203186627951,55.35062009818401],[-122.59185706446709,55.35062877835685],[-122.59158963038205,55.35061026331135],[-122.59152638592205,55.35060965716254],[-122.59149471614765,55.35060991334848],[-122.59146466292029,55.35059115426228],[-122.59143254121336,55.35057345981507],[-122.59141630194704,55.35055507800718],[-122.59140103715292,55.35050196740634],[-122.59140251060079,55.350438102549155],[-122.59143577223479,55.350349319642945],[-122.5915135426714,55.35029538662262],[-122.59154552090762,55.350268231455416],[-122.59161130729173,55.350169125400384],[-122.59169168947642,55.34994485005578],[-122.59170702449696,55.349927330595996],[-122.59180286272326,55.349846983470165],[-122.5918195054827,55.34983734770553],[-122.5918830572103,55.349811054730125],[-122.59194584824937,55.34979371008426],[-122.59203985613807,55.349758158476874],[-122.59205695102037,55.34976647329437],[-122.59208821671149,55.34979423448728],[-122.59210379047845,55.34982044602357],[-122.59210272157448,55.349856293362784],[-122.59211834422646,55.34992847303317],[-122.59214915782607,55.34993828359766],[-122.59218006651028,55.349946975608965],[-122.592290005741,55.34995670449684],[-122.59243237478593,55.349957228507584],[-122.59252773991419,55.349975528370166],[-122.59257488826769,55.35000260194615],[-122.59260579709364,55.35001129385219],[-122.5927474059056,55.35002076586978],[-122.59279410191071,55.350029888751386],[-122.59288901478439,55.3500302377268],[-122.59298347502548,55.35001263601932],[-122.59309412501509,55.34996744769527],[-122.5931899605597,55.349887099504784],[-122.59320560249807,55.349842680882006],[-122.59327047856543,55.349707672738994],[-122.59330321544483,55.3496715687539],[-122.59339783677166,55.34958221816754],[-122.5935245794273,55.34951056142552],[-122.59369837508528,55.34946709625223],[-122.59376247299562,55.349457634382155],[-122.59390408012669,55.34946710508764],[-122.59396656267316,55.34947665840619],[-122.59401523168812,55.34948583468932],[-122.59410831606486,55.349530978466404],[-122.59417201202405,55.34954953391334],[-122.59425113681876,55.349549451009544],[-122.59440883813429,55.34953245299404],[-122.59456694099694,55.349487437250794],[-122.59470794820777,55.349434106855604],[-122.5948359014642,55.3493714510092],[-122.59496188096259,55.34930874118923],[-122.59507333891698,55.34930057086707],[-122.59516749020773,55.34930986649124],[-122.59527697476486,55.34930164214769],[-122.59538852761386,55.349292352996535],[-122.59551465371653,55.34927449220271],[-122.59556210927158,55.349274665665746],[-122.59567204748018,55.349284391575715],[-122.59579938705303,55.349275532709996],[-122.59589308452576,55.34926687718812],[-122.59594129977788,55.34925810212176],[-122.59598754165202,55.34924927321005],[-122.5960198750495,55.34924118604708],[-122.59614706598535,55.34918747724466],[-122.59622634711435,55.349115644523415],[-122.59624153130993,55.34905327492723],[-122.59624406218276,55.348953562652405],[-122.59626000591571,55.34888224466815],[-122.59627649863825,55.34882775873044],[-122.59643511252271,55.34873006120736],[-122.59649784603548,55.34866674614739],[-122.59651545716325,55.34862238093487],[-122.59653140028227,55.34855106291859],[-122.59651759471377,55.348434088051775],[-122.59650196473044,55.34836190894377],[-122.59650318621857,55.348254313013335],[-122.59653638848629,55.34800296251196],[-122.59656988057615,55.347957909289555],[-122.59669646340485,55.34784139976684],[-122.59674498197444,55.34780572541002],[-122.59682304549848,55.34772489011733],[-122.59699875498755,55.347518907923735],[-122.59703179173795,55.34745590398879],[-122.59703179793802,55.3473393058635],[-122.59701783569827,55.34729407961982],[-122.59692369522257,55.347168187269666],[-122.59689410958626,55.34693418384632],[-122.59686335810615,55.3468537444555],[-122.5967867749297,55.34663751863655],[-122.59674175703725,55.34653875192922],[-122.5966944609175,55.3464668303689],[-122.59664801939633,55.34638484185578],[-122.59663350875898,55.34632278353222],[-122.59663376000847,55.346249916439895],[-122.59665091569371,55.34618760063013],[-122.59669882902344,55.34608912614197],[-122.59671501478991,55.34606153913945],[-122.59682571072067,55.345945717536246],[-122.59690543857216,55.34589183499831],[-122.59697004516977,55.345829692081686],[-122.59698501686253,55.345793102845526],[-122.59701866222672,55.34567630097401],[-122.59706611963331,55.34555987576317],[-122.59711387574376,55.34553314966066],[-122.59722441381271,55.34548907624859],[-122.59735159124435,55.345435366241745],[-122.5974466481468,55.34536396321564],[-122.59751165263917,55.34527380249771],[-122.59755925812586,55.34520222666496],[-122.5975583488735,55.34516632549589],[-122.59759260127674,55.34499572552703],[-122.5975620947781,55.344959017335704],[-122.59749937358161,55.34490573481035],[-122.59746795807273,55.34483312542817],[-122.59742066266166,55.34476120415641],[-122.59737382195794,55.344707233451444],[-122.5972963804706,55.34461767302318],[-122.59725115366365,55.34454468694616],[-122.59723512410824,55.34450052548271],[-122.59722070816031,55.34443734869148],[-122.59717417299554,55.34435647894103],[-122.59715747917801,55.34432014730813],[-122.59711231348945,55.34417653120346],[-122.59711231945508,55.34405993312042],[-122.59711423799149,55.34401401882556],[-122.59717717303145,55.343924923034585],[-122.59732149919668,55.34380889719965],[-122.5974635467489,55.343719716367374],[-122.59759056823773,55.34362115657459],[-122.5976225370437,55.34359399987168],[-122.59765511493333,55.34351304521806],[-122.59767120410231,55.34348657664829],[-122.59773499117122,55.343387413642326],[-122.59778350343298,55.3433517388995],[-122.59786125177851,55.34329780196843],[-122.59827250633002,55.343182326064934],[-122.59855825947602,55.343147512916296],[-122.59862058212639,55.343112214350626],[-122.59862012704899,55.3430942637741],[-122.5987942880668,55.343022774018756],[-122.59892191079271,55.34298701300299],[-122.59898423287399,55.34295171425648],[-122.59909637440003,55.34288862385469],[-122.59915975859005,55.3428174776498],[-122.59938197209692,55.34269236120949],[-122.59947595676371,55.34265680403301],[-122.59952370781487,55.34263007701746],[-122.5997152617859,55.342540000794735],[-122.59974591914948,55.342504959931986],[-122.59977788560788,55.342477802680655],[-122.59981091384569,55.34241479804551],[-122.59984166586817,55.342378638609496],[-122.59989017503788,55.3423429630522],[-122.59990550357475,55.342325442600675],[-122.59996943594632,55.34227112800909],[-122.59999999804931,55.34223720563551],[-122.60006523934787,55.34219077461149],[-122.60012967944657,55.3419671824868],[-122.59999961144712,55.34189188566618],[-122.59997322227248,55.34187659182303],[-122.59991150880775,55.3418580931152],[-122.59986315076524,55.34182202016587],[-122.5997861072495,55.34170444378837],[-122.59975474769723,55.341677803097625],[-122.5997083630007,55.34164178385616],[-122.59965970219636,55.34163260979953],[-122.59953511947197,55.34163257796447],[-122.5994542842474,55.341676341434855],[-122.5994071982247,55.341695238571816],[-122.59926425145585,55.34174852045199],[-122.59918720989849,55.34174754175813],[-122.59913976322808,55.341747369672746],[-122.59898184808313,55.3417206426551],[-122.59890237840773,55.341701659433554],[-122.59885644961528,55.341683590448326],[-122.59874552635445,55.341639084752394],[-122.59868259978387,55.341611583259485],[-122.59855750587661,55.34154763178495],[-122.59840126305815,55.34143125873764],[-122.59830692276383,55.341331147928635],[-122.59826084390754,55.341268229184635],[-122.59826190708249,55.341232381826835],[-122.59827738926049,55.34114311307156],[-122.59827769338831,55.34111621410582],[-122.59826479769366,55.34091854263212],[-122.59826540596235,55.34086474470211],[-122.59829691720905,55.34081963726128],[-122.59831309975196,55.340792050067684],[-122.59834497093964,55.34076601173705],[-122.59836069849341,55.340720473964545],[-122.59807033595574,55.340669954183696],[-122.59761340442763,55.340834634257504],[-122.59694692980088,55.34113822437536],[-122.59644337600308,55.34131620362671],[-122.5961624879155,55.34138702074093],[-122.59600631760682,55.34140966751829],[-122.59572854047524,55.34146711491587],[-122.59548287878451,55.341542255091966],[-122.59532556794441,55.34157832358104],[-122.59500762142912,55.34168960909441],[-122.59452516342165,55.3418984274821],[-122.59442318917638,55.341934884070376],[-122.5942082789663,55.34197386363517],[-122.59414692607722,55.34197443121458],[-122.59364164907053,55.34196288021777],[-122.59338057095897,55.34194005643353],[-122.5932619287016,55.341916636623004],[-122.59312020334937,55.341862315647845],[-122.59291258246309,55.341745653592945],[-122.59268389856281,55.34155105730306],[-122.59249945457196,55.34137112242191],[-122.59223397413342,55.34105107370076],[-122.59215643031969,55.34089311725796],[-122.59189371027128,55.34044757532654],[-122.5917207987074,55.34001569746109],[-122.59165882696864,55.33979089756678],[-122.59162573386197,55.33943571309607],[-122.5917119362612,55.33891001080303],[-122.59171680747045,55.33882942176221],[-122.59170263905258,55.33871692066274],[-122.59164119299894,55.338532496151366],[-122.5915376060886,55.338401856210695],[-122.59149912381538,55.33836604952029],[-122.5913985572676,55.33831621408403],[-122.59134079885393,55.33829781894575],[-122.59111687270044,55.338256945396054],[-122.59107178329187,55.33825234997605],[-122.59069383575067,55.33825547620124],[-122.59046375374503,55.33826376345554],[-122.58971914606286,55.338346557276424],[-122.58955183748536,55.338337499314086],[-122.58943753420547,55.33830970956762],[-122.58934531246379,55.338278038798556],[-122.58905933442955,55.33810653376645],[-122.58863717716088,55.337722771951874],[-122.58842505496152,55.33754319446671],[-122.5882792220332,55.33739794252305],[-122.58810260605992,55.337312390250624],[-122.58798588368919,55.337266594623664],[-122.58778647057538,55.337239838980814],[-122.58739427303661,55.33722462691922],[-122.58694913994013,55.33725056891657],[-122.58647358456273,55.337262223225316],[-122.58596592026966,55.33725617989558],[-122.58552856737185,55.33721393992621],[-122.58536759069169,55.337177020872076],[-122.58531180942958,55.33715867694155],[-122.58511775905713,55.33704573556828],[-122.58502859124951,55.33697826838471],[-122.58498534080702,55.33692887523244],[-122.5847428603474,55.33661840704945],[-122.58466282320316,55.33653661462914],[-122.58454248981361,55.336370754178134],[-122.58448083458357,55.33623564987376],[-122.58423336543605,55.33609994267053],[-122.58395163962915,55.33601823306644],[-122.58382557800232,55.336012538853765],[-122.58359786122898,55.33601639332309],[-122.58313307909172,55.33606420625248],[-122.58302245621533,55.3361093856824],[-122.58286551783887,55.336234018982],[-122.58281029187154,55.336302017393116],[-122.58262686773102,55.33657503752063],[-122.58249684850915,55.33673179994834],[-122.58239333157557,55.33687919795715],[-122.58218707836247,55.337071990748825],[-122.58201490280722,55.33728253410318],[-122.58185270574143,55.33739917425008],[-122.58156404599823,55.33767715790858],[-122.58144142621589,55.337770216767396],[-122.58108501214633,55.33798467975492],[-122.58085404801592,55.33809607081471],[-122.58068184921902,55.33816758957659],[-122.58058232149827,55.338198496238675],[-122.58049774759196,55.33821635890111],[-122.58010755114998,55.338247146100834],[-122.57997076065918,55.33825124441944],[-122.57974420583679,55.338218126137114],[-122.5796516103918,55.33819092234667],[-122.57920998473661,55.33803642820572],[-122.57892755107157,55.33784705752056],[-122.57875992463136,55.33772586123494],[-122.57864187347543,55.33762620495797],[-122.57856827544394,55.337584946334154],[-122.57827792929112,55.33755792385276],[-122.57771855748601,55.337578457649464],[-122.57753633179244,55.337558883868404],[-122.57741691639482,55.337567940581934],[-122.57722371340938,55.33760748621397],[-122.57713563914056,55.33764318899473],[-122.57698962240309,55.33773223838757],[-122.57690912029675,55.337795056418905],[-122.57688045075076,55.337876113863494],[-122.57689012303851,55.337948132956626],[-122.57692553695668,55.33801973718148],[-122.57698659717708,55.33809204504829],[-122.57700848828308,55.33815991476488],[-122.57702223346082,55.33827689165226],[-122.57693689295643,55.33844272294182],[-122.57687818564412,55.33850501782765],[-122.57673814696965,55.338616654095816],[-122.57670457708565,55.33863927717614],[-122.57644110948429,55.338737435989366],[-122.57629254316501,55.33876363024135],[-122.57612211718182,55.33876792252824],[-122.5759275725053,55.33875361421206],[-122.57579071704288,55.338735283174984],[-122.57526267546154,55.33864342988612],[-122.5751570365669,55.33860689543309],[-122.5744833740242,55.3383215662517],[-122.5740518892326,55.33811800102275],[-122.57364633523832,55.337981294442045],[-122.57343057921479,55.33789128222345],[-122.57305488075752,55.337706062798034],[-122.57274492109005,55.337538344261205],[-122.57241381113352,55.33731734951862],[-122.5721287726791,55.33713573897187],[-122.57161893655325,55.336761838491775],[-122.57135363264901,55.33658076830115],[-122.57101823197847,55.33622511281199],[-122.57095833288821,55.336139379710744],[-122.57092876463243,55.335999543631395],[-122.5709299941948,55.335869523331226],[-122.57090757383874,55.33559982962181],[-122.57087567550371,55.33551038149419],[-122.57069242037791,55.33524859935978],[-122.57037282963668,55.335008855427546],[-122.57030703974127,55.33496892739781],[-122.57005688851171,55.3348420860989],[-122.56984519828447,55.334751057660945],[-122.56972051810938,55.334706146540086],[-122.56951015525222,55.33466896952731],[-122.56912381190531,55.334654981339575],[-122.56888070333171,55.334653900852345],[-122.56868311916008,55.334675374078955],[-122.56838355518408,55.33473328228525],[-122.56826709725252,55.33477716732008],[-122.56811915718238,55.334888576817306],[-122.56808240597303,55.33490214083461],[-122.56784718638512,55.33490127540461],[-122.56763678678048,55.334887638530574],[-122.5674121380087,55.33485567068347],[-122.56731768179615,55.334827284953604],[-122.56707784478594,55.334718659757876],[-122.56690396644706,55.33460175884439],[-122.56667102545157,55.33441259912601],[-122.56653685040175,55.334316971217184],[-122.56622357338212,55.33391145798552],[-122.56615334640931,55.33383104373365],[-122.56602306228977,55.33371309910539],[-122.56589327743296,55.33352005037296],[-122.56573718185065,55.33321864580476],[-122.56573105681221,55.33294379306232],[-122.56573981008621,55.33281846416674],[-122.56585864137423,55.33258517095859],[-122.56601866356458,55.3323787982879],[-122.56633560088382,55.33202538838484],[-122.5665974019605,55.33190029781648],[-122.56665184539536,55.33186479808833],[-122.56685305276793,55.33168534478422],[-122.56687660656269,55.33164114669733],[-122.56688238832372,55.331550491978184],[-122.56684632604383,55.33137123523379],[-122.56680741197077,55.331271502244654],[-122.56674343091817,55.331164352352204],[-122.56667119454768,55.330876468647425],[-122.56666602216015,55.33070591016156],[-122.56668084267822,55.33060205033693],[-122.56677227790934,55.330342215924354],[-122.56680381627918,55.33029711648638],[-122.56693628907855,55.330158375462936],[-122.56707747416529,55.33003332800401],[-122.56726524676662,55.329849019990704],[-122.56739015179757,55.32968316251561],[-122.56752585776793,55.32957590238299],[-122.5678159592518,55.32942019620511],[-122.56805562302377,55.32932252300193],[-122.56836960161424,55.32921119774455],[-122.5687259761665,55.32913579389857],[-122.56917818306752,55.32898005945661],[-122.56945967861554,55.328855505426105],[-122.56956393789144,55.32879222466339],[-122.56965226331477,55.32870720364366],[-122.56969156761038,55.32861747094342],[-122.5696647399875,55.328168270697525],[-122.56961289011149,55.327988580875356],[-122.56956045348716,55.327885113499526],[-122.56942148797748,55.32779944699767],[-122.56910773452441,55.32765403586804],[-122.56899052458768,55.327591390403796],[-122.56853469187583,55.327373678747605],[-122.56837053257468,55.327305256347856],[-122.5680549527891,55.327250605851674],[-122.56754144297517,55.32722190005695],[-122.56689500853719,55.327152535199886],[-122.56664947492408,55.3271110206694],[-122.56644939877091,55.32706963588674],[-122.56631488512602,55.32702444993429],[-122.5661581795394,55.3269382911474],[-122.5660346193196,55.326857529356566],[-122.5659320264124,55.32676276966697],[-122.56558733494003,55.326424779112145],[-122.56531708998358,55.32627943469725],[-122.56513339241661,55.32616225986553],[-122.56484787384436,55.325941376018434],[-122.56472479821504,55.325855020331254],[-122.5644604766884,55.32570983703184],[-122.5639971449199,55.325510960736004],[-122.56369778532381,55.32542871653419],[-122.56355900872443,55.325410317779614],[-122.56327811073191,55.325297188705996],[-122.56285098925765,55.32518339273855],[-122.56261730463078,55.32514219638536],[-122.5624101759904,55.32511406431304],[-122.56193880962535,55.325009136039725],[-122.56169844372054,55.32497672302741],[-122.56154691928434,55.32494563774747],[-122.561422374708,55.324899599867045],[-122.56138590434797,55.324863838322464],[-122.56127100200571,55.324728373156674],[-122.5611833263213,55.32459814323511],[-122.56110276060878,55.3242696635764],[-122.56083381314022,55.323671394825915],[-122.5602499302709,55.32289626493453],[-122.56013094174124,55.32237052114786],[-122.56013394419112,55.322266335831884],[-122.56001709359785,55.32217678316191],[-122.55988012826786,55.32204519247758],[-122.5597614751794,55.321861412126935],[-122.55974378321753,55.321514484723885],[-122.55978732903961,55.321214093184395],[-122.55977960953453,55.32111970255116],[-122.55971439319895,55.32093515389018],[-122.55961533677322,55.32082254719284],[-122.55948348357647,55.32072361068973],[-122.55932764663953,55.320489472733314],[-122.5592501560805,55.320448093986194],[-122.55901552162965,55.3203261400794],[-122.55870783313888,55.32020329089534],[-122.5585749393438,55.32016262511491],[-122.55819897255401,55.32009843316669],[-122.5576202882564,55.320024159617695],[-122.5570534896128,55.31997263477761],[-122.5567016254545,55.31992704229881],[-122.55648106481509,55.319917588468066],[-122.55581717526181,55.31991495045919],[-122.55571088679513,55.31990977247989],[-122.55540288570407,55.31985978194628],[-122.55532002300994,55.31988103752756],[-122.5552460013331,55.319845357803054],[-122.55482825589085,55.31983045387095],[-122.55455950729196,55.319829755809764],[-122.55396001293711,55.319790767376006],[-122.55365961891417,55.31979031403657],[-122.55345728678803,55.31977575275673],[-122.55321585623962,55.31977917031488],[-122.55298894726803,55.31975159611142],[-122.55292844255959,55.31971965208883],[-122.55256996872072,55.31931397006462],[-122.55233314091974,55.31907982539223],[-122.55211444353992,55.31879572891885],[-122.55208606045869,55.31866600975354],[-122.55204616704191,55.318279224726844],[-122.55200359481417,55.31810762995842],[-122.55191115229077,55.31794138317985],[-122.55158401573159,55.31760831901535],[-122.551496867636,55.31747248983326],[-122.55134792149589,55.31729683170805],[-122.55130304825673,55.31719804894779],[-122.55128308554032,55.317085379936415],[-122.55129476851754,55.3170184329229],[-122.551461536827,55.31682571950083],[-122.55166596047466,55.31667777283518],[-122.55188456889432,55.31652573345871],[-122.55207634394083,55.31640995031483],[-122.55224084915733,55.316266504854646],[-122.55242410218507,55.316042853480766],[-122.55243606785629,55.31592658285609],[-122.55238195150734,55.315705337658876],[-122.55235817911466,55.31547596209788],[-122.55237378983242,55.31522525212371],[-122.55244349537755,55.314919979485516],[-122.55243141701723,55.31480752874162],[-122.55236191712588,55.314627341371036],[-122.55190510785962,55.314216694795974],[-122.55170717116398,55.314036318541284],[-122.55157305296427,55.31396421799337],[-122.5514152765323,55.31389146293519],[-122.55126615588232,55.313809977732255],[-122.55069550440349,55.31357444311083],[-122.55052628643101,55.31349688564087],[-122.55026685926687,55.313411226181046],[-122.55008821820712,55.31335134606633],[-122.54979638302524,55.313274879377744],[-122.54931768719278,55.31316521130887],[-122.54875171785511,55.313082276006675],[-122.54867430012305,55.31306331545297],[-122.54854341162682,55.31302269359427],[-122.54839665634312,55.31293678551481],[-122.54828274382758,55.31285963468351],[-122.54804410215925,55.31267027689984],[-122.5477885833968,55.3125163287719],[-122.54769520492077,55.31245319995795],[-122.54767178869854,55.31242676463316],[-122.54761514812306,55.312350077782796],[-122.54756557686207,55.31226013260068],[-122.54753855799964,55.31216072135269],[-122.54753846399333,55.312115871898484],[-122.54763585038668,55.31178782309284],[-122.54755123224002,55.311576942099954],[-122.54758673978871,55.31111824517324],[-122.5475835840313,55.31074144429375],[-122.54760075575601,55.31061074279079],[-122.54741122044878,55.31047095357056],[-122.5472546200018,55.310384771199296],[-122.54672837010473,55.310185202518674],[-122.54649979414502,55.31008581374607],[-122.54641709652881,55.31003643370946],[-122.54626954405427,55.3098910785254],[-122.54616853497423,55.309755981947774],[-122.54612570045367,55.30967967673612],[-122.54609614187393,55.309540953669966],[-122.54580666073691,55.30934569765395],[-122.5456732929798,55.30924221803643],[-122.54535761131726,55.30905296193279],[-122.54514314311571,55.30885866166347],[-122.54489506870212,55.308664550764796],[-122.54473877499542,55.30852904179371],[-122.54455057357765,55.30825922859134],[-122.54442159144484,55.308127839685774],[-122.54381778098059,55.30761330018558],[-122.54361995795207,55.30745533593966],[-122.54350044544196,55.307374661313105],[-122.54277164190955,55.3069351325944],[-122.54269761094167,55.306877020756545],[-122.5424878804181,55.30667387728192],[-122.54226550176338,55.306502896643],[-122.54213623526604,55.30642082883834],[-122.54200365758278,55.30630839731248],[-122.54194189386317,55.30622259588022],[-122.54189744158982,55.30611933584005],[-122.54182770612893,55.30598846619702],[-122.54170713332314,55.3057137969385],[-122.54167738233195,55.305669245745214],[-122.54155081819864,55.30555585929834],[-122.54128469000403,55.30543411575387],[-122.54094814773711,55.30523529895472],[-122.54081421786908,55.305184493119675],[-122.54063947331683,55.30512582742373],[-122.54037622207574,55.30506246278398],[-122.53996254623112,55.30497922588161],[-122.53978193317027,55.30494281956461],[-122.53936589138733,55.30490996789795],[-122.53885106024705,55.304854190707154],[-122.53835037218487,55.304771895842975],[-122.53793635927354,55.30471555093367],[-122.53756536694365,55.30468730785469],[-122.53726865623575,55.3046454306282],[-122.53688446085064,55.30456412333018],[-122.5366445826308,55.30450476343387],[-122.53634976381076,55.30441808935865],[-122.53619719349473,55.3043544274126],[-122.53610068225649,55.30428223245371],[-122.53586915509847,55.30398877655033],[-122.53584473656353,55.303836738724385],[-122.53584219268144,55.30368306644842],[-122.53586622814987,55.303404560747765],[-122.53594914453751,55.30315347851711],[-122.53598276947086,55.30294699480311],[-122.53600109500981,55.30234543085758],[-122.5360225882763,55.30218794190859],[-122.53600684165413,55.30198120734726],[-122.53576834478699,55.30158552992854],[-122.53556375275714,55.301300669897365],[-122.53537985416583,55.300959204508715],[-122.53523900354648,55.30082859599547],[-122.53514893795722,55.30077339690996],[-122.53490382483363,55.30063764723829],[-122.53459467966559,55.300511328572306],[-122.53445190198053,55.30040308908546],[-122.53421069565631,55.300245022948225],[-122.53401812613548,55.300118580665455],[-122.53389996739162,55.29999981326502],[-122.53385633675278,55.29995599507373],[-122.5334108184524,55.29948728408989],[-122.53334792451687,55.299414900393444],[-122.53332995275116,55.29927985882225],[-122.5333349753207,55.2992216971146],[-122.5334408724389,55.29897910390603],[-122.53350032284115,55.29888545704654],[-122.53357057454117,55.29882686717812],[-122.53378088485078,55.29867911451329],[-122.53402790538452,55.298563775464494],[-122.53441383935714,55.29832672650439],[-122.53462422350526,55.2982238218274],[-122.53466601276676,55.29817453065648],[-122.53469626698913,55.29812155521758],[-122.53474011111172,55.29784247933317],[-122.53472711589198,55.297626851527724],[-122.53446782488977,55.29754115935484],[-122.5343398806781,55.29751293570181],[-122.5341284900204,55.297490239650415],[-122.5339949631429,55.297480920447796],[-122.5334057149707,55.29746453209447],[-122.53274014979372,55.297416867115274],[-122.53262629206928,55.29738567000295],[-122.53249079516445,55.29737629436271],[-122.53220511828951,55.297298832647954],[-122.53209487453094,55.29724867549913],[-122.53184256870918,55.29703647846926],[-122.53180730947075,55.296987286467925],[-122.53169046332805,55.29676204081884],[-122.53165692874342,55.29650996283626],[-122.53161236126394,55.296317000435266],[-122.53158106474656,55.29622195017141],[-122.53143599778592,55.29591183015425],[-122.53133923258576,55.29561426610716],[-122.53132254989289,55.2953043555418],[-122.53135143979974,55.295084286777644],[-122.53137300261884,55.2950176160129],[-122.53138114040893,55.29487769476737],[-122.5312679407483,55.29447316090449],[-122.53081513694747,55.29436413509034],[-122.53049972692934,55.294402444085584],[-122.53034760605468,55.29440269365488],[-122.53024571615951,55.294393129761836],[-122.5297382154024,55.294391331801656],[-122.52965286369027,55.294373258479496],[-122.5291137804473,55.29409700968556],[-122.5289122138458,55.29398376194842],[-122.52880032649986,55.29388422366748],[-122.52866184297974,55.293726764048614],[-122.52852789426316,55.29363109569299],[-122.5282270196127,55.29345565755224],[-122.52811679136406,55.29340549690537],[-122.52780901659949,55.293287045835896],[-122.5276150245752,55.293223338968545],[-122.52745569267127,55.29314714339069],[-122.52735458056479,55.29312862922341],[-122.52687586989707,55.2930681986203],[-122.52675941663861,55.29306719536085],[-122.52639336038904,55.293097355099846],[-122.52626027208964,55.29310597836056],[-122.52623100482235,55.293101798971286],[-122.52576854409362,55.29303621110411],[-122.52550578267468,55.29296834120831],[-122.52541448976531,55.2929276754752],[-122.52523907434544,55.292831968305066],[-122.52507651305183,55.29270186251762],[-122.52501797292435,55.29262511061219],[-122.52499418956735,55.292534752468235],[-122.52497520835794,55.29197811459166],[-122.5249596944683,55.29188350229127],[-122.5249240546871,55.29177038975723],[-122.52482225126246,55.29155452527379],[-122.52451360117921,55.29110416969561],[-122.5244578434748,55.29104094929007],[-122.52421898844429,55.29081117091617],[-122.52415134143455,55.29070277123543],[-122.52411585981761,55.29049660427052],[-122.52404853317647,55.29033888121609],[-122.52401012323386,55.290280629225634],[-122.52396709489307,55.290230096698416],[-122.52383736646065,55.290108753118886],[-122.5237216291478,55.29005394975983],[-122.52366791180916,55.29003563335012],[-122.52357142783883,55.29000939665758],[-122.5234549499891,55.28998596562558],[-122.52335307293336,55.28997639610564],[-122.52321879874647,55.289976013258894],[-122.52317299650878,55.28998034122771],[-122.52281375114116,55.29006898156033],[-122.5227746678453,55.29008695113587],[-122.52269501758452,55.29018563538897],[-122.52250522903212,55.29055257357917],[-122.52244134022482,55.290651697572635],[-122.52231788810222,55.29077718895193],[-122.52206978478299,55.29095077592161],[-122.52198334665778,55.29099096855366],[-122.52188466576438,55.291012880392024],[-122.52167690210555,55.291017171874984],[-122.52161649807121,55.29100763745419],[-122.5215651383946,55.29098490120077],[-122.52141025211829,55.290903215498254],[-122.52132129369392,55.29083570315472],[-122.52104204935556,55.29052518617311],[-122.52089743809351,55.29039333309186],[-122.5207839330321,55.29031280187776],[-122.52057969509792,55.290230858258134],[-122.52043111248857,55.290144862464395],[-122.52007083290847,55.28999465270812],[-122.51954701811431,55.28983987418782],[-122.5191574493902,55.289663056145876],[-122.51887463009453,55.28959909582578],[-122.51874620636046,55.289554023922214],[-122.5186738554566,55.28952285159053],[-122.51856711022278,55.28940999248352],[-122.51850064453868,55.289288167969545],[-122.5184713548109,55.28919316953056],[-122.51849039302951,55.2889963717862],[-122.51853293749313,55.28891571352321],[-122.51856175140125,55.28887951927193],[-122.51867619552065,55.288789657910755],[-122.51882580914874,55.28877253525559],[-122.51909196017708,55.28875530446593],[-122.51951673727284,55.288685323297315],[-122.51976383174221,55.288637286662876],[-122.51988702370463,55.288605970509394],[-122.52012497795465,55.28850386078244],[-122.52023870558261,55.288467795224555],[-122.52038237471736,55.288428080947675],[-122.52047236178466,55.28839247340685],[-122.52059942908798,55.28831641721971],[-122.52085698613408,55.28814758221885],[-122.52110246105482,55.28800419676706],[-122.52121285961462,55.28791534154972],[-122.52126692822131,55.287838367859756],[-122.52129124928267,55.28776280601971],[-122.5212943175059,55.28763619732025],[-122.5212795567975,55.28751021204658],[-122.52122571480415,55.28740219585824],[-122.521126461294,55.287294032929125],[-122.52105055979266,55.28725827802983],[-122.5208984985895,55.28721254822575],[-122.52052997388098,55.28713498624859],[-122.52030960174717,55.28712546852323],[-122.52010434452144,55.287146644674074],[-122.51998584145659,55.28714669854798],[-122.51986662832317,55.2871321570055],[-122.51956283495129,55.28699137103159],[-122.51943471268227,55.28687455187189],[-122.51940826208663,55.28683793489709],[-122.5193757727732,55.286779846606784],[-122.51929216237195,55.28658242379129],[-122.51929055209135,55.28648707761687],[-122.5193062510215,55.28644266855868],[-122.51938658395042,55.28626776460359],[-122.51941736535021,55.28623162519997],[-122.51952973292113,55.286142826523225],[-122.51962126663304,55.286089323887175],[-122.51975230003116,55.28603580332525],[-122.51993820642188,55.28598717886755],[-122.52036543932593,55.28593408212054],[-122.5205915865321,55.28592245860246],[-122.52066977892183,55.28590894550087],[-122.52076880353138,55.28586013602152],[-122.52096691678238,55.2857389736647],[-122.52119839196979,55.28552904741953],[-122.52139840764158,55.28536309003176],[-122.52147756710768,55.285269999068916],[-122.52151774351313,55.28512536622872],[-122.52151922872848,55.285062621133],[-122.52150088359873,55.284978019813046],[-122.52143318892696,55.284824769361094],[-122.52115488975981,55.284526611126566],[-122.52073042248412,55.28422885515725],[-122.52042383900725,55.284052114814756],[-122.52031364628785,55.28400194731493],[-122.52011693389282,55.28392469700302],[-122.51993917886438,55.28387936919662],[-122.519672190772,55.28383827561684],[-122.51953557934593,55.28384230770116],[-122.51938046200183,55.28385479216235],[-122.51892931458309,55.2839789729558],[-122.51858270950436,55.28405898346089],[-122.51843314405012,55.284098530493715],[-122.51799071352653,55.2841904370922],[-122.51785884711794,55.28420805428655],[-122.51774626288682,55.2842082712143],[-122.51741649391172,55.28413963066694],[-122.51715670786375,55.28410658133401],[-122.51686879678341,55.284033503439574],[-122.5168055314146,55.28401155326157],[-122.5164140612068,55.28383467166614],[-122.51632996965981,55.28377962433271],[-122.51602283564314,55.28354119154611],[-122.51592327619285,55.28348234778268],[-122.51585730434915,55.28342332203613],[-122.51574580842815,55.28327444887403],[-122.51564762764993,55.28306316117492],[-122.51551676356628,55.282864413588825],[-122.51549729663124,55.28281565782347],[-122.51560254015568,55.282626877313426],[-122.51582638733026,55.28230014342963],[-122.51594317691179,55.28220586580693],[-122.51601187258916,55.28216518158544],[-122.51624230684024,55.28205838505018],[-122.51648181347059,55.28196081133925],[-122.5165540303377,55.28190228623023],[-122.51674436933651,55.281643006827515],[-122.51670594852413,55.28156232796168],[-122.51660788572373,55.28144073973757],[-122.51649648146778,55.28135914128769],[-122.51603196670779,55.28111406493487],[-122.51574451635221,55.28114975238265],[-122.5157135988834,55.28100537501428],[-122.51528239564429,55.28092267909143],[-122.51514218431613,55.28087727290251],[-122.51484713949067,55.28075017277805],[-122.51469982622403,55.280695597833784],[-122.51450000611715,55.28063170530878],[-122.51430798086176,55.28050075892027],[-122.514223025504,55.28045577648136],[-122.5140283685763,55.28042342104733],[-122.51382192092778,55.28041315923331],[-122.51362797221272,55.28039539850357],[-122.51334603160389,55.280344902552216],[-122.51288212963617,55.28025231326875],[-122.51237078646112,55.28018306035238],[-122.51205529150872,55.280155167118096],[-122.51164903290446,55.28008100494625],[-122.51122411939224,55.27997156189922],[-122.51107005655659,55.27994930812018],[-122.51075152563644,55.27993365964533],[-122.51055563708782,55.27993826363411],[-122.51041354345908,55.279960070965565],[-122.51010615856472,55.28004339838942],[-122.50953141086437,55.28015847615916],[-122.5090254357583,55.28030014492868],[-122.50885483627233,55.280286394596345],[-122.5087778894405,55.280262935457515],[-122.50870792175148,55.28022733868139],[-122.50865064833508,55.28018200684492],[-122.50863486429228,55.28015914052307],[-122.50862050967218,55.28000625527438],[-122.50870979575546,55.27970603409826],[-122.50880876467784,55.27952156765273],[-122.50889747378243,55.279409691495005],[-122.50901013250615,55.27922672978326],[-122.50905107922227,55.279119121063935],[-122.5090561551289,55.278992567965794],[-122.50897732890174,55.27878630098628],[-122.50892000639486,55.27869611994341],[-122.50880898887705,55.27858761608408],[-122.50843494223867,55.27832486310687],[-122.50833382599512,55.278261484210056],[-122.50814698847432,55.27816206644352],[-122.5078685712578,55.27807129310094],[-122.5074480177851,55.27795747375157],[-122.50728810379567,55.27788908182189],[-122.50711980068728,55.27780363645861],[-122.50693457325022,55.27773117066311],[-122.50656035053372,55.27765228329698],[-122.50640272485616,55.277603014724804],[-122.50625896092832,55.27753058952521],[-122.50618987584322,55.27748492510459],[-122.50616531591021,55.277449479068295],[-122.50631282851818,55.27725180039998],[-122.5063644791822,55.2772027950246],[-122.50641574058542,55.27715826351289],[-122.50651356949699,55.27710046238203],[-122.50675990315929,55.27703785619848],[-122.5069398988975,55.277011510116225],[-122.5070922458905,55.27700793368213],[-122.507365060279,55.27702679518759],[-122.50750558914437,55.27702288688863],[-122.5077013418488,55.2769969815005],[-122.50796540021516,55.27693486992524],[-122.50887094925018,55.27651177319167],[-122.50898372724289,55.27644093486753],[-122.50904609679955,55.27638213813091],[-122.50906848974356,55.2763289482166],[-122.50906017128021,55.27628835198413],[-122.5088810883863,55.275986215695504],[-122.50883563865756,55.27594121517586],[-122.50869223986757,55.27584189423862],[-122.5083242538332,55.275691429918965],[-122.50826061734374,55.275673949312036],[-122.5078568440837,55.27566263012133],[-122.50736134946465,55.275616223098865],[-122.50723103816686,55.27559350882948],[-122.50716749956675,55.275574909193],[-122.50705851377208,55.2755113083583],[-122.50692219692588,55.27539872942432],[-122.50622003213664,55.27464128744021],[-122.50591784264104,55.27439287421042],[-122.50575356983806,55.27428399439717],[-122.5054739467664,55.27413936340331],[-122.50530456943345,55.27404379412976],[-122.50499368258421,55.27385007318421],[-122.50482703256307,55.273723186111205],[-122.50463195742398,55.27362801592813],[-122.50446184586248,55.273677059691714],[-122.5043995253391,55.27368988633355],[-122.50353784033354,55.2737453060327],[-122.50340559007756,55.27374495714045],[-122.50334521633037,55.27373541388505],[-122.50319716546541,55.273689773132084],[-122.50313599072774,55.27366675286296],[-122.50254164686534,55.273304735231434],[-122.50229644351424,55.27319582037084],[-122.50199276270014,55.27310095955494],[-122.501610468052,55.27286598197845],[-122.50125476339987,55.27273377952412],[-122.50111065753704,55.27268824694314],[-122.50082946161386,55.27251665170251],[-122.50054676506991,55.272316983508176],[-122.50048738310271,55.27220543711474],[-122.50046823435694,55.27183602306377],[-122.50054029668775,55.271711351781704],[-122.50065183772489,55.27147342690723],[-122.50081394161487,55.2712896191019],[-122.50099577993738,55.27115121367083],[-122.5012253693908,55.27100854341673],[-122.50132277998108,55.270932795602135],[-122.50132502462905,55.270703012051115],[-122.50133985203144,55.270555429782966],[-122.50144859403807,55.27028154732404],[-122.5008390411676,55.2701175455917],[-122.50063416706185,55.27004451718652],[-122.50043479129603,55.26995370366389],[-122.50012127220513,55.26983613698271],[-122.49997127003195,55.26979043707292],[-122.49979564666116,55.269721592834095],[-122.49951765623953,55.26958147774425],[-122.49934626556815,55.26950938817917],[-122.49914765513884,55.26938720023098],[-122.49882786476296,55.26918312102211],[-122.49869120250274,55.26907500700798],[-122.49860667785936,55.26891229839778],[-122.49851527067817,55.26864736655963],[-122.49849349113386,55.26851220962734],[-122.49849048724992,55.268229581526946],[-122.49851292827212,55.2681080011345],[-122.49853807962818,55.268045920803466],[-122.49879530703325,55.267880487070286],[-122.49922537416427,55.26765712408986],[-122.49926280671774,55.26756735877344],[-122.49927731080284,55.26749152459253],[-122.49911487388734,55.2671808696222],[-122.49903670863921,55.26708112748352],[-122.49887394637555,55.26695546170659],[-122.49875714007594,55.26691405686619],[-122.49857515606483,55.2668730618049],[-122.49832928132977,55.26684036085359],[-122.49766112552813,55.26680587502608],[-122.49704543716491,55.26675828573814],[-122.49674222609025,55.26668136297908],[-122.49650183441248,55.2666084491631],[-122.49635142143677,55.266522369466145],[-122.49604307452978,55.266300664767705],[-122.49593251618076,55.26618767571211],[-122.4957444502703,55.265922263841546],[-122.4954688138794,55.26559720570771],[-122.4949669401979,55.26515029500259],[-122.49463007886267,55.264825753849],[-122.49441807811162,55.264653847289026],[-122.49425141921589,55.26455048928259],[-122.49399761760222,55.264427859485565],[-122.49385942285987,55.26433763558141],[-122.4936888923918,55.26418819820042],[-122.49358228454166,55.264075317965194],[-122.49348754189668,55.264030044241345],[-122.49327080035098,55.263957789556365],[-122.49296926073428,55.263839419180705],[-122.49281927262795,55.26377128604552],[-122.49274030010302,55.263748880045874],[-122.49261211849532,55.26374751215896],[-122.49253041228425,55.26375642288155],[-122.49239113241171,55.26379174207227],[-122.49223168992974,55.26385452338971],[-122.49189049236892,55.26403215372983],[-122.49170821681864,55.264107745699185],[-122.49135427463791,55.26422783392866],[-122.49118018649217,55.264187049996835],[-122.49089674799058,55.2640422754681],[-122.48998058179546,55.26345809166841],[-122.48973623951403,55.26331777989668],[-122.48946582804508,55.263204762954025],[-122.48929928561002,55.263100279881606],[-122.48916145371483,55.262938303030005],[-122.48901176619816,55.26270871900894],[-122.48887396338415,55.2624335001887],[-122.48880866315223,55.26207399228075],[-122.48881050432591,55.26187222604918],[-122.48883181244737,55.261786493575826],[-122.48893786729845,55.26167960529046],[-122.48906687873377,55.26160363693574],[-122.48913794059578,55.26158097392495],[-122.48918252703851,55.26156765530404],[-122.48949812427513,55.26154740172561],[-122.49015442510026,55.26151320593742],[-122.4902613172916,55.261487067423936],[-122.49034653633252,55.261437893734055],[-122.49039618707974,55.261343990270944],[-122.49038235956621,55.261276327895445],[-122.49026466924417,55.26120013195541],[-122.4899260434251,55.261077344431314],[-122.48980492006844,55.2610178694077],[-122.48962925470332,55.26095012935274],[-122.48912400020639,55.26056588436302],[-122.48909914376175,55.26048894111246],[-122.48909591607979,55.260367759253164],[-122.48912582248703,55.26018360260904],[-122.48932649583193,55.25980692768191],[-122.48955794306436,55.259529786759614],[-122.48957607779224,55.25941257087525],[-122.48950571420445,55.2592917386769],[-122.48939598972053,55.25919222087308],[-122.48925468189697,55.25911535786594],[-122.48905419900923,55.25901552306304],[-122.48901511650327,55.25901105737439],[-122.48890387311282,55.258996708333484],[-122.48873571643819,55.25895608755897],[-122.48868047872959,55.25893322678712],[-122.48854872385162,55.25885999595568],[-122.48829480826237,55.258626349894],[-122.48821629549728,55.258531074862574],[-122.48802129209913,55.25836860491271],[-122.48789575345599,55.25831460925762],[-122.48779985771472,55.2582827526907],[-122.48767952799085,55.258214327976354],[-122.4875579985388,55.2581144753376],[-122.48742535507479,55.258028884783094],[-122.4866513834773,55.2575585619506],[-122.4865495585352,55.25748168850013],[-122.48653260957592,55.25744981623993],[-122.48649540725374,55.25728843290158],[-122.48650368063102,55.25712609044391],[-122.48652525868081,55.25699215377702],[-122.48672867834021,55.25658416642866],[-122.4870852171883,55.25611771144022],[-122.48725396922273,55.25585786663187],[-122.48740141123024,55.25568375378926],[-122.48747356943383,55.25553554714983],[-122.48754095390835,55.25530647851814],[-122.48731403602683,55.25523840964447],[-122.4872146152526,55.25522439235869],[-122.4870690369469,55.255219163504954],[-122.48691825044236,55.25522836328249],[-122.4866102236483,55.25532058023018],[-122.48649657250947,55.255379039639664],[-122.4862745416411,55.255593652511266],[-122.48622801775157,55.25565176378012],[-122.48610972163765,55.255853607112044],[-122.48603840008744,55.255924473001464],[-122.48599697371581,55.25594684924514],[-122.48585130769258,55.25596516204976],[-122.48527018296511,55.25597566706658],[-122.48508749171154,55.25596602459906],[-122.48485980359797,55.255929323500496],[-122.48461558419243,55.25590112491723],[-122.48440925820007,55.25586838979455],[-122.48399809807538,55.255830991006555],[-122.4834259565968,55.25569374061596],[-122.48328862080805,55.255639406702834],[-122.48319272403357,55.2555851219695],[-122.48303016665179,55.25548074180178],[-122.48280162415935,55.255296012157935],[-122.48237033273867,55.25492503780043],[-122.4822689037055,55.2548212624409],[-122.48214770212971,55.25474047382931],[-122.48210072938161,55.25469093422125],[-122.48199022133367,55.25453308365618],[-122.48196097636625,55.25450646926693],[-122.48172664684665,55.254342876958304],[-122.48165281110712,55.25430715381676],[-122.4815600734417,55.254261926695264],[-122.48145002091715,55.25423414961096],[-122.48138140576512,55.254206422362785],[-122.48128276303046,55.254161028124265],[-122.48107985655116,55.254044292515566],[-122.48097450584379,55.25396282945135],[-122.48093108075007,55.253917874488465],[-122.48090506884634,55.2538543510342],[-122.48086356365528,55.25369732856888],[-122.48086950853794,55.253561829308005],[-122.48090461847815,55.25349891238751],[-122.4810189579596,55.253432628944054],[-122.48123751948742,55.25334798814331],[-122.48135509948074,55.25326722019135],[-122.48150376290113,55.25314696684346],[-122.48169542804229,55.2530088679556],[-122.4818220446404,55.252892476074905],[-122.4818820469531,55.2528156865942],[-122.4819150882847,55.2527538322133],[-122.48191940649292,55.25272704504857],[-122.48191390784564,55.25254188893336],[-122.48184199216547,55.25239409842604],[-122.4817599718581,55.25231665893933],[-122.48155400750343,55.252167322190395],[-122.48140958582361,55.252081391467776],[-122.4809960283648,55.251869003973574],[-122.48075178782483,55.25172867472047],[-122.48067451061142,55.2516872474694],[-122.48051071183338,55.25161982850056],[-122.48015290421586,55.25149198421411],[-122.47994647876415,55.25139308629968],[-122.47958346304289,55.25103187961538],[-122.47948757325915,55.250955167430774],[-122.47922515667494,55.250616986407984],[-122.47913950225161,55.250536078522906],[-122.47906851720708,55.25046791888815],[-122.4789675172678,55.25040451632697],[-122.4784680774911,55.25020426622572],[-122.4783663035428,55.250172235371146],[-122.4782557744059,55.250150047708004],[-122.47797606670987,55.25012195221247],[-122.47778709064445,55.25007175652219],[-122.47764110828166,55.24998129196712],[-122.47757248715686,55.24990871339456],[-122.47751093959975,55.249800455909295],[-122.47754291486349,55.24977333022651],[-122.47764504734992,55.24971118949702],[-122.47775151622339,55.24966711090565],[-122.47808520602432,55.24957452141328],[-122.47828839833544,55.249484966513215],[-122.47844297865907,55.249409733145164],[-122.47857874887492,55.24930145213697],[-122.4788208867071,55.249150209925226],[-122.47894001826981,55.249029124511544],[-122.47897148465121,55.24896274146619],[-122.47897782711982,55.24882276855841],[-122.47892771248316,55.24876416885121],[-122.47872889171074,55.24869127160006],[-122.47852920666728,55.24867328928398],[-122.4783186108782,55.24868975574942],[-122.47819668481198,55.24870760936981],[-122.47762791232178,55.24884848677176],[-122.47752576619904,55.248865778250426],[-122.47690479578263,55.24890426557511],[-122.47679240819508,55.24890332707919],[-122.47666141636401,55.24888952847065],[-122.4765288485377,55.24887120023026],[-122.47645591719525,55.2488478326349],[-122.47600690653984,55.2486803934417],[-122.47577699856731,55.248624550763935],[-122.47549609924353,55.24852017257493],[-122.47515839675438,55.248343548265595],[-122.47502504021205,55.24831174136238],[-122.47496038253895,55.248306546681526],[-122.47472085216882,55.2483154603226],[-122.47453035019677,55.24839527787562],[-122.47436672233796,55.24850612932885],[-122.4742424586675,55.248618095568574],[-122.47399516003857,55.249030427910675],[-122.47386775384427,55.24917818396256],[-122.47373089198769,55.24929876270815],[-122.47346698475562,55.24945050009129],[-122.4733020627929,55.24953104067621],[-122.47303341445803,55.24962433930223],[-122.4726231449935,55.24971250316633],[-122.47237859435126,55.24975602823588],[-122.47218059542188,55.249808720701886],[-122.47188626588289,55.24994725936241],[-122.47169497903984,55.25010329397874],[-122.47160700739795,55.2501613466069],[-122.47144247156093,55.250237410969085],[-122.47139789180454,55.25025072323025],[-122.4710428153577,55.25029447645332],[-122.4709051303266,55.25028945191738],[-122.47042308171861,55.25025111788492],[-122.4702661026681,55.250218636159815],[-122.47005350467104,55.25010048512949],[-122.46993115206448,55.24996583209186],[-122.46982421235852,55.24958831001317],[-122.46967281836503,55.249379953378835],[-122.46957183250123,55.249294118589255],[-122.46936504800857,55.24917725230281],[-122.46922736046285,55.249127376678835],[-122.46906998737356,55.2490545179731],[-122.46874964494077,55.24899497560728],[-122.4686116639822,55.24894845462064],[-122.46858676151884,55.24891747502625],[-122.468605354417,55.24886306239312],[-122.46873070943052,55.24869394971278],[-122.46893112650879,55.248344206364486],[-122.46894421012193,55.248307577041494],[-122.4689311967846,55.248141266385375],[-122.46887085734821,55.24804200799364],[-122.46874654374307,55.2478848733651],[-122.46850197132093,55.247704144670614],[-122.46840257009735,55.24764526315433],[-122.46804365435575,55.24750838078232],[-122.46791739525312,55.24750816178427],[-122.46770512789524,55.24752119914225],[-122.46749610872499,55.247542176916575],[-122.46662745540812,55.24761506878592],[-122.46630319988995,55.247667531468615],[-122.46620971133277,55.2476760896717],[-122.46531546401144,55.24770339676558],[-122.46498254454006,55.24771973070808],[-122.46473238826286,55.247759717765526],[-122.46434583533981,55.24780255748967],[-122.46407442164882,55.2478598791309],[-122.46387169702119,55.24787654481451],[-122.4637213265469,55.24790366738909],[-122.46356436230323,55.247916026455904],[-122.46341133440654,55.247950921781786],[-122.46332611103328,55.24797765238042],[-122.46320929754258,55.24807188042075],[-122.46330633027463,55.24820245774534],[-122.46343456001932,55.24833728503123],[-122.4636968272569,55.24847367769853],[-122.46376542158539,55.248613537752824],[-122.46375794290451,55.248676114200435],[-122.4637437718168,55.248702621148745],[-122.4636470329757,55.24874808578587],[-122.46360048404351,55.24876133933822],[-122.463466052881,55.24878667207847],[-122.46333860883762,55.2487998696577],[-122.46321628220355,55.24879975773895],[-122.46275984530781,55.248806970301885],[-122.46248891621013,55.248791422471946],[-122.46240369150291,55.24877330320809],[-122.46235478179621,55.24872370024462],[-122.46233667894997,55.24852584899468],[-122.46237496243026,55.24847199666989],[-122.46247593478965,55.248378440359005],[-122.46246058521328,55.24826139605839],[-122.46242387859725,55.24823007961823],[-122.46222312216184,55.24815710009381],[-122.4621193974286,55.24814742464894],[-122.46190397599848,55.248151392770716],[-122.46133987514065,55.24835063406834],[-122.46107159957651,55.2484618577737],[-122.46093509706832,55.24855552410563],[-122.46077842056806,55.24863179821318],[-122.46061071888256,55.248743638106454],[-122.46053858023544,55.248778587582734],[-122.46030110549889,55.248853684882604],[-122.46018980018493,55.248862853270175],[-122.46007583887426,55.24885736999321],[-122.46000517901167,55.24885311806169],[-122.45988059232434,55.24881145295592],[-122.45954609367426,55.24875596881722],[-122.4594095910138,55.24880478424653],[-122.45930851643821,55.24885460727334],[-122.45916452960998,55.248943573999085],[-122.45895066791464,55.24904176519564],[-122.458738475236,55.24916579193112],[-122.45852461670381,55.2492191331633],[-122.45842876042221,55.24923210325402],[-122.45837158225599,55.24923159768464],[-122.45831588239452,55.24921431562716],[-122.45824729460145,55.24916415103456],[-122.45825005414758,55.2491328349739],[-122.4583483963837,55.248912507315225],[-122.45834803008309,55.24869273487285],[-122.45830189339459,55.248544540408574],[-122.45822386842653,55.24842234822686],[-122.45814022913804,55.24834148192496],[-122.45797304413105,55.24822347995485],[-122.45788939662137,55.24820988733213],[-122.45774856935729,55.248218213413544],[-122.45750597992452,55.248261765293336],[-122.45719625630853,55.248417772010576],[-122.45703367210544,55.24847144873454],[-122.45683644814717,55.24851516937004],[-122.45659936245357,55.24858578589378],[-122.45624938854739,55.24870588631721],[-122.45611130423757,55.24877259299832],[-122.45600127201394,55.248812067299376],[-122.45576527642507,55.24882553028604],[-122.45570495139363,55.24881596397963],[-122.45560831477682,55.24879303009639],[-122.45553303733675,55.24875164330756],[-122.45545727129492,55.24869342399958],[-122.45539105515724,55.24861641555297],[-122.45538712314193,55.248593878841696],[-122.45571930305242,55.24838469642711],[-122.45577057955646,55.248362610473436],[-122.45581359286241,55.24832234943486],[-122.45582511468179,55.24828119173453],[-122.45583223630722,55.24808854178833],[-122.45581102680902,55.2478367808603],[-122.45581536607396,55.24778756999776],[-122.45585131165168,55.247648438896675],[-122.45591884224964,55.24753151060353],[-122.45607269235536,55.24733070475329],[-122.45607397835953,55.24729374056428],[-122.45605813849902,55.24727198608432],[-122.45597302675044,55.24720789476723],[-122.45588269695013,55.2471582308859],[-122.4554989369689,55.24699033024553],[-122.45497241243068,55.246718572251076],[-122.45473418872746,55.2466232094483],[-122.45460322652723,55.24654211381201],[-122.4542858270657,55.24627070296962],[-122.45411356240807,55.2460763063904],[-122.45400188434499,55.24602266912138],[-122.45392465090032,55.245958800688754],[-122.45381585081053,55.245805455035935],[-122.45367705854493,55.245567161865175],[-122.45360849361907,55.24547214551198],[-122.45351817611778,55.24540005531242],[-122.45327604439562,55.245237303746016],[-122.45292823200673,55.24506481253126],[-122.45283555380938,55.244997139457254],[-122.45272635975489,55.24487069117807],[-122.45277174699815,55.24478116436759],[-122.45292492307632,55.24454334221203],[-122.4531284762279,55.24431592545786],[-122.45334431733879,55.24412810193903],[-122.45347729771125,55.24396258427157],[-122.4534794194249,55.243737275845405],[-122.45353467646613,55.24351348150937],[-122.4535161972321,55.24343222580003],[-122.45345786534183,55.24335544066583],[-122.45335534479436,55.2433099122035],[-122.45312697921148,55.24323725135712],[-122.45298500146174,55.24319171934458],[-122.45282255493161,55.243154573698384],[-122.45265646887827,55.243113960381656],[-122.45246007425483,55.243081452844976],[-122.45227469800739,55.24305822898357],[-122.4521551464925,55.243049214896764],[-122.45176194473986,55.24305594545231],[-122.45148583264111,55.243077225623296],[-122.45123972646243,55.243116179365494],[-122.45095337893062,55.24314165148899],[-122.45056674983202,55.24320799147277],[-122.45031710835813,55.24321993284188],[-122.44997910619804,55.24322711090869],[-122.44951604373423,55.24322062932963],[-122.44942059398572,55.24322911878984],[-122.44908642870566,55.24323752514124],[-122.4487713744082,55.24318592883576],[-122.44846607015685,55.24311330633493],[-122.44816007526273,55.2430485120417],[-122.44801416791383,55.24300286204056],[-122.4478623484385,55.24297946797531],[-122.4476363491697,55.24292480414929],[-122.44739066225726,55.242892002781616],[-122.44708415839088,55.24287764716576],[-122.44701675431132,55.242881329176456],[-122.4469248361371,55.242916827374565],[-122.44672354733811,55.24307366106914],[-122.44659961898311,55.24318112599612],[-122.4464614905588,55.24335994498426],[-122.4463943538668,55.243427545215255],[-122.44617024541064,55.24355233177024],[-122.44602348948357,55.24365017444199],[-122.4459319642133,55.243681198227215],[-122.44575010973475,55.243707399944775],[-122.44560929572101,55.24371571230069],[-122.4454531334391,55.24371910118159],[-122.44532138809022,55.243691792381306],[-122.44526147893656,55.24365532273484],[-122.4451731484391,55.243583282703],[-122.44510894870072,55.243461475818584],[-122.44495502196416,55.24288188052757],[-122.44482068135213,55.2427277962924],[-122.44474061065226,55.242673931743774],[-122.44466574109262,55.24265048933587],[-122.44457265527322,55.24265455762024],[-122.44441441962103,55.242681432004694],[-122.444294542336,55.242743039447085],[-122.44425034697112,55.24277429291432],[-122.44416141858846,55.24293209031903],[-122.44407182920939,55.24303044277776],[-122.44396098776033,55.2431237029899],[-122.4438374367594,55.24324911609963],[-122.44375180364283,55.24330273157819],[-122.4436732724862,55.24332067006583],[-122.4434990041957,55.24332802407642],[-122.44338418138427,55.24331016669389],[-122.44322921920786,55.2432777071592],[-122.44310538246722,55.24318334715661],[-122.4430545467228,55.24311125579209],[-122.44303807942514,55.242985205563016],[-122.44304541690236,55.24267931498637],[-122.44307431080406,55.242553439918794],[-122.44306334024472,55.24245445670181],[-122.44304989571225,55.24238343393696],[-122.4429258677259,55.24209060757903],[-122.44282141731973,55.2420001649996],[-122.44276308496394,55.24196822407391],[-122.44264158247961,55.24193672000644],[-122.44241882741271,55.24191241274422],[-122.44219599721673,55.24184437429395],[-122.44201225209896,55.241735966674106],[-122.44195237271408,55.24165464623539],[-122.44180256575477,55.241564027237466],[-122.44177297285277,55.24151945251218],[-122.44174071918934,55.2414826504357],[-122.44172538434542,55.24145530205866],[-122.44171033444722,55.241447023031746],[-122.44158462591585,55.24137391145254],[-122.44155344939263,55.24134723134522],[-122.44150811411716,55.24130220642767],[-122.4414458603276,55.241247727750746],[-122.44144547652658,55.24122977681523],[-122.44141470845013,55.241176198404276],[-122.4413844232325,55.241139452504825],[-122.44135324702371,55.24111277234796],[-122.44132296190996,55.24107602643376],[-122.44129020168249,55.24106724092702],[-122.44122874061881,55.24100381480975],[-122.44116638865925,55.24095045441084],[-122.44107305905477,55.24086817692156],[-122.44105800951041,55.240859897816115],[-122.4409637892009,55.24078768599295],[-122.44084005190757,55.24071462994145],[-122.44080925990075,55.240705900585795],[-122.4407146569292,55.24061573763846],[-122.4407001152896,55.24057944180818],[-122.44066973215101,55.240543814152744],[-122.4406066884748,55.24049828238785],[-122.44057551327855,55.2404716020376],[-122.44053027911042,55.24042545835119],[-122.4404521865404,55.24037164733778],[-122.44035796846156,55.24029943505905],[-122.44032717687708,55.24029070558461],[-122.44021841815062,55.24018219732635],[-122.4401104523082,55.240064741649405],[-122.44004820232574,55.240010262279036],[-122.43995398581818,55.23993804969664],[-122.43992319459791,55.2399293201225],[-122.43986094507852,55.23987484065908],[-122.43979907878057,55.23983831210332],[-122.43967287030705,55.23979321527997],[-122.43954796306053,55.23971115433298],[-122.43943987472842,55.239639665692984],[-122.43934534962807,55.239593232496645],[-122.43926726025799,55.23953942074371],[-122.43920460252713,55.2395118392125],[-122.43911115418534,55.2394755278752],[-122.43900186489397,55.23943988443204],[-122.43897117332878,55.2394300362083],[-122.43886160072464,55.239375323287106],[-122.43873618734251,55.2393212782],[-122.4385634492802,55.2392669998896],[-122.43851770953512,55.23924887214655],[-122.43843772550503,55.23923873434394],[-122.43818801999917,55.23922934521652],[-122.43812416034677,55.23923760870858],[-122.43807683536735,55.23923737542637],[-122.43793562486421,55.239272577358946],[-122.43787166599392,55.239281959135326],[-122.43777780873474,55.23927254505177],[-122.43769899977232,55.23927141040976],[-122.43766820955149,55.239262680278635],[-122.43761970963462,55.2392534431867],[-122.43744904022125,55.2391981012458],[-122.43740054043256,55.239188864068616],[-122.43700768599251,55.23916976820955],[-122.4369138291972,55.23916035347512],[-122.43685234840497,55.239141774404295],[-122.4367730589008,55.23912380664249],[-122.43674157509457,55.23912290517222],[-122.43666346036903,55.23911394098519],[-122.43644457587403,55.23906842954548],[-122.43639607647223,55.23905919197736],[-122.43638112770518,55.23904979389545],[-122.43633421457406,55.23902266170284],[-122.43623997682214,55.23899529551256],[-122.436131583684,55.238949583840686],[-122.43609882632144,55.23894079697004],[-122.43605229488043,55.23893161562035],[-122.43598922845351,55.238930930719626],[-122.4358787382716,55.2389311300817],[-122.43584725463616,55.23893022838536],[-122.4358011045254,55.238938997891374],[-122.43576872848995,55.23894816188358],[-122.43575336790623,55.23896566197238],[-122.43575216265594,55.2390015075144],[-122.43576828574709,55.239019909325485],[-122.43579856424032,55.23905665658441],[-122.43581478652891,55.23907393997748],[-122.43589277122607,55.239128872305145],[-122.43590702584642,55.239146099330746],[-122.43593809776904,55.239173899258944],[-122.43595339726767,55.23924609754037],[-122.43593518400947,55.23940703618635],[-122.43591642896754,55.239640840689475],[-122.43591557457651,55.23973948638371],[-122.43588316730217,55.23979349960479],[-122.43575525378567,55.239945690202234],[-122.43570672266705,55.239981301564114],[-122.43567631355016,55.23999052189154],[-122.4356440358013,55.23999856744006],[-122.43555055855074,55.24000710262927],[-122.43532967144087,55.240006382065516],[-122.43529808780559,55.240006598642005],[-122.43526729754308,55.23999786791686],[-122.4351885186262,55.23995188248707],[-122.43517436320207,55.23993353696659],[-122.43515814084199,55.23991625348892],[-122.43514360446767,55.23987995701209],[-122.43512754424401,55.23977185672192],[-122.4351283691056,55.239718060231],[-122.43511462623036,55.23967281645871],[-122.43508386777485,55.239619236490405],[-122.43506853816586,55.23959188729783],[-122.43500629574189,55.23953740540963],[-122.43491247026002,55.23948313996932],[-122.4348493355791,55.239438723705504],[-122.43480331567507,55.239401525233724],[-122.43474173630419,55.239384063532036],[-122.43466295918972,55.23933807777194],[-122.43464791153669,55.239329797893014],[-122.43463140809128,55.23929344498268],[-122.43458532143325,55.23921251564543],[-122.43456999231809,55.23918516639228],[-122.43452428660036,55.239122187986695],[-122.43450975108469,55.23908589143803],[-122.43449445423741,55.239013692980144],[-122.43446490350847,55.238924267331946],[-122.4344351036866,55.23877092311791],[-122.43440396618996,55.238699392031904],[-122.43438901802188,55.238689993711134],[-122.43437410216289,55.23863574619422],[-122.43429643427442,55.23855503308821],[-122.43426660294634,55.2384465380317],[-122.43421972441838,55.23837455585044],[-122.43418896814694,55.238320975666504],[-122.43414326400722,55.23825799712526],[-122.43409714690657,55.23822191680649],[-122.43406687059533,55.2381851691363],[-122.43394108693975,55.238113168272],[-122.43386348726368,55.23807618568108],[-122.43375461975329,55.23801363939978],[-122.43361230208671,55.2379501343713],[-122.43356539210473,55.23792300113817],[-122.43328638055674,55.237777090312036],[-122.43320671524194,55.23774116932599],[-122.4330813145489,55.23768711855177],[-122.43303557906965,55.237668988797736],[-122.43300489031556,55.23765913910517],[-122.43297213468641,55.237650351412974],[-122.43289322980509,55.237650332139886],[-122.43283016544021,55.23764964563976],[-122.43279975742634,55.237658865263164],[-122.43278322226152,55.23766736130312],[-122.43275281422348,55.237676580915135],[-122.43272012372702,55.23771152393792],[-122.43270386915404,55.23773908933444],[-122.43270424902191,55.237757040291974],[-122.43268723139138,55.23788213293508],[-122.43270055689074,55.23795427520284],[-122.43271626414183,55.23799957564131],[-122.43274781210137,55.23804420891129],[-122.43276155175903,55.238089452939214],[-122.43276027566881,55.23821499683461],[-122.43275852043563,55.23832370818252],[-122.43274146861246,55.238493650031764],[-122.43273988080188,55.23851154458489],[-122.43272321189326,55.238566008220616],[-122.43267464555895,55.238646467591224],[-122.4326272870574,55.238691081432414],[-122.43256297866186,55.2387710895021],[-122.43251590043866,55.238834772670224],[-122.4324362295783,55.23893228036285],[-122.43241959456525,55.23894189476478],[-122.43238797723379,55.23898695979835],[-122.43233940972102,55.23906741904078],[-122.43232321900226,55.23913871517652],[-122.43232121667911,55.23918350796007],[-122.43230364907731,55.23938146640501],[-122.43228707847085,55.239434811576736],[-122.43227037391915,55.23953412435242],[-122.43223509606219,55.23973157507674],[-122.4322346470096,55.239803322510184],[-122.43215445987165,55.23992884667529],[-122.43212087369469,55.23997385522976],[-122.43209042891307,55.24002792388001],[-122.43207306367279,55.240090216299286],[-122.432071440632,55.24015296004487],[-122.43207182024051,55.240170911007546],[-122.43202363025432,55.24026932109699],[-122.43199201143626,55.24031438603443],[-122.43195959843175,55.24036839823706],[-122.43194264740927,55.240403792403335],[-122.43190940508686,55.24051160106594],[-122.43184578723134,55.24058377991284],[-122.43181309358506,55.24061872270522],[-122.43179763137346,55.24063734071729],[-122.43178226841766,55.24065484031855],[-122.43178068009519,55.24067273486231],[-122.43176601201303,55.240682405598726],[-122.43171747647501,55.24071801540823],[-122.43170290763368,55.2407265677282],[-122.43166973503894,55.24074467792766],[-122.43162358193649,55.2407534458869],[-122.43145091103887,55.2407428884984],[-122.43140358432781,55.24074265268057],[-122.43135705187446,55.24073346957557],[-122.43132508836625,55.24071573417893],[-122.43129429842325,55.24070700247119],[-122.43123047081791,55.240670413229175],[-122.4311847327815,55.240652282791366],[-122.43104278899139,55.240606725780246],[-122.43099705111193,55.240588595273614],[-122.43093360306922,55.240569956846386],[-122.43080819661337,55.24051590377198],[-122.43077740693548,55.240507171936585],[-122.43069901115206,55.24047913463265],[-122.43062168955531,55.240461219390724],[-122.43044746794781,55.24042370594074],[-122.43036935209943,55.240414737805445],[-122.43030707792894,55.24040510276484],[-122.43010193105829,55.24040482447942],[-122.4300388624237,55.24040413656559],[-122.43000686258668,55.24043125003035],[-122.42999187761403,55.24046670037993],[-122.42997482549917,55.24050321268632],[-122.42997399373088,55.24055700914612],[-122.42998969892821,55.24060230993746],[-122.43002124590387,55.24064694390678],[-122.43006736212898,55.24068302574134],[-122.43009932505676,55.24070076146063],[-122.4302242530329,55.24073798268815],[-122.430364644175,55.24075658595788],[-122.43044313957367,55.240783505064925],[-122.43052242952149,55.240801476858515],[-122.43063002685471,55.240856140682794],[-122.43067773268791,55.24087432776263],[-122.43072384976236,55.240910409354754],[-122.43083379454404,55.240983080408604],[-122.43092602930486,55.24105524346098],[-122.4309413566555,55.241082593166446],[-122.43102019618173,55.2411723120799],[-122.43103510845904,55.24122656000893],[-122.43105002077655,55.24128080793632],[-122.43106534829741,55.24130815762702],[-122.43109572350815,55.24134378762697],[-122.43112689309359,55.24137047035152],[-122.43115796343112,55.241398271476825],[-122.43128136951118,55.24149711697751],[-122.43131361361868,55.24153392176193],[-122.43134277996297,55.24160539720842],[-122.4313581078065,55.241632746863736],[-122.4313584871107,55.241650697830686],[-122.43135762150172,55.24174934350849],[-122.43132520648953,55.24180335555188],[-122.43130984288302,55.24182085509629],[-122.43129320640651,55.24183046934992],[-122.43124625767302,55.24184818443966],[-122.43121397754801,55.241856228841286],[-122.43113544362593,55.24187415942229],[-122.43107157832743,55.241882419299905],[-122.4309299732966,55.24189966232858],[-122.43088371940986,55.24190954842283],[-122.43063133609084,55.2419079165677],[-122.43055359626739,55.24191689951641],[-122.43041081751788,55.24192513825006],[-122.43022150513858,55.24192419328982],[-122.4298606905193,55.241921692157774],[-122.42957751667358,55.24191132609678],[-122.42951514104006,55.241902809066445],[-122.42948365522196,55.241901905761345],[-122.42923242184675,55.241820694785886],[-122.42920252561439,55.24180189689687],[-122.42903141761363,55.24168486164118],[-122.42895184771145,55.24164781951615],[-122.42890493656128,55.2416206845201],[-122.42885919849257,55.241602553227075],[-122.42879565048581,55.241585032116],[-122.42876495978277,55.241575181375794],[-122.42871763210846,55.2415749445374],[-122.42865366742923,55.241584321581804],[-122.42857523225848,55.24160113214155],[-122.42852907749928,55.24160989895479],[-122.42848085550736,55.24161972768467],[-122.42844857501278,55.241627771369444],[-122.42841736805974,55.24164593717697],[-122.42838695601438,55.24165515572588],[-122.42830814265052,55.241654015141584],[-122.4282919225464,55.241636730767546],[-122.42826248304722,55.24154618522406],[-122.42827746994571,55.24151073507967],[-122.42827868193055,55.24147488960331],[-122.42831030581978,55.24142982560453],[-122.42834314156181,55.24134891612122],[-122.42836051312015,55.24128662421607],[-122.42839293169594,55.24123261294648],[-122.42839217574198,55.241196710995744],[-122.42840885160324,55.241142247928934],[-122.42839459948624,55.24112502004262],[-122.4283162432162,55.24105213203675],[-122.4283001227191,55.241033729258305],[-122.42827012813844,55.24101604955284],[-122.42825321272446,55.241006594018145],[-122.42819163374001,55.24098912907593],[-122.42811361666959,55.24097904111939],[-122.42808165439605,55.24096130489016],[-122.42803553963279,55.24092522231972],[-122.42798825214949,55.240880136003945],[-122.427926812342,55.240816703325024],[-122.42784873587009,55.24076288440884],[-122.42777113668376,55.24072589801477],[-122.42775453949692,55.24069066259534],[-122.42773921446187,55.24066331249855],[-122.42774130135399,55.24052882138565],[-122.42775756045387,55.24050125663112],[-122.42779035690735,55.24046519649788],[-122.42783810058249,55.24043853546598],[-122.42786920748227,55.240421488211055],[-122.42790120875206,55.240394375295594],[-122.42794777949122,55.240358710493],[-122.42794978674168,55.24031391777583],[-122.42796608505815,55.24024150379651],[-122.4279498656704,55.24022421937975],[-122.42795145567892,55.24020632488543],[-122.42792038847746,55.2401785229628],[-122.42788763190784,55.24016973393182],[-122.42784189594694,55.240151602267225],[-122.42777882774794,55.240150913209135],[-122.42769991796551,55.240150890645914],[-122.42751140909874,55.2401409943214],[-122.42744754580741,55.24014925233991],[-122.42726020962834,55.24014835936817],[-122.42718209502505,55.24013938923406],[-122.42713476904895,55.24013915179426],[-122.4269616252346,55.24011175561039],[-122.42689935234914,55.24010211886613],[-122.42685085389327,55.240092877580466],[-122.42682086065084,55.240075197527325],[-122.4266947653927,55.24002896914834],[-122.42660053184105,55.24000159566282],[-122.42646135863173,55.23994714269704],[-122.42641286046324,55.23993790124088],[-122.42611395936957,55.23992707526379],[-122.42606850198455,55.23992801233329],[-122.42578417086638,55.23990863390437],[-122.4257526866926,55.23990772965628],[-122.42570615649473,55.239898544440706],[-122.4256119239211,55.23987117020758],[-122.42558113586433,55.239862437088156],[-122.42553460575797,55.239853251808476],[-122.42543878229688,55.239843771907346],[-122.42532918458456,55.23983389627612],[-122.42526770811328,55.239815311486154],[-122.4252349524188,55.239806521757814],[-122.42514310724115,55.239752305481545],[-122.42509540524016,55.239734116283664],[-122.42504849892207,55.23970697983925],[-122.42501653901016,55.239689242825214],[-122.4250020118667,55.23965294516571],[-122.4249410406978,55.23951776361409],[-122.42490950024305,55.239473128361915],[-122.42487843570964,55.2394453256821],[-122.42481737936053,55.23939984245994],[-122.42478621548595,55.239373158160674],[-122.4247396861269,55.239363972584464],[-122.42466077788956,55.239363948095786],[-122.42462929416725,55.23936304356382],[-122.42448769524279,55.23938027926516],[-122.424456112041,55.23938049309255],[-122.42443947493588,55.23939010642876],[-122.42440757160423,55.23941610004978],[-122.42436099881814,55.2394517635261],[-122.42434314623164,55.23949722228228],[-122.42430988429616,55.23960502890863],[-122.42429451847799,55.23962252758483],[-122.42429405526718,55.23969427498866],[-122.42427653506587,55.23980253391708],[-122.4242760718209,55.2398742813218],[-122.42427565213382,55.23990117953131],[-122.42429017871164,55.239937477276214],[-122.4243358258436,55.240045308636546],[-122.42435072869083,55.240099557360836],[-122.42436610722388,55.24017063866672],[-122.42436367635915,55.24024232953609],[-122.42434741503881,55.24026989384704],[-122.42428430316407,55.24031405221645],[-122.42425309534991,55.2403322169788],[-122.42422151139962,55.24033243074667],[-122.42417418521396,55.24033219218187],[-122.42412765488558,55.24032300637636],[-122.42408112457844,55.240313820553446],[-122.42401847605326,55.2402862313816],[-122.42386281126832,55.24019542119036],[-122.42383164741061,55.24016873665061],[-122.42379899123294,55.240158828141716],[-122.42376820334958,55.24015009457405],[-122.42372087738107,55.24014985583705],[-122.42350078569496,55.24014016707546],[-122.42345425574239,55.24013098101847],[-122.42342356745628,55.24012112896327],[-122.42339160793175,55.24010339153182],[-122.42337549006723,55.24008498811735],[-122.42331316321061,55.24003161878665],[-122.42328289538715,55.23999486849041],[-122.42326709847309,55.23995068525787],[-122.42323725113428,55.239887036744655],[-122.42322272552454,55.239850738877095],[-122.4231754446972,55.23980565073792],[-122.42300515881114,55.239679660005805],[-122.42295825396629,55.23965252277434],[-122.42287986529713,55.239624480551],[-122.42286285221947,55.23961614268702],[-122.42278483914755,55.23960605139382],[-122.42261324753437,55.23960560393295],[-122.42256592221318,55.239605364757146],[-122.42251780069225,55.23961407277546],[-122.4224700544702,55.23964073176618],[-122.42235872034188,55.23969471554051],[-122.42224786066944,55.239765531806086],[-122.42220011408882,55.23979219069373],[-122.4221689057385,55.23981035493313],[-122.42205846658278,55.23985427282855],[-122.42199567451921,55.239872650235995],[-122.42194675622243,55.23989030524268],[-122.4218683215522,55.23990711157694],[-122.42179016228958,55.239942987256285],[-122.42167882641267,55.23999697042403],[-122.42156758978957,55.24004983509176],[-122.42153558452598,55.24007694637909],[-122.42142509721009,55.24016571290909],[-122.4213922952961,55.2402017713655],[-122.42137561032698,55.24025623348883],[-122.42134365750107,55.24032707552256],[-122.42124754659584,55.24049810758214],[-122.42119900197133,55.24053371329199],[-122.42116672089243,55.24054175508891],[-122.42113710454664,55.240542024662766],[-122.42102660986933,55.24054221084947],[-122.42096354117508,55.24054151834042],[-122.42090009785515,55.24052287480237],[-122.42085356805379,55.24051368777364],[-122.42080666368783,55.24048654973012],[-122.42077470502672,55.24046881162661],[-122.42074443919299,55.24043206071228],[-122.42071407383743,55.240396428190884],[-122.42065152269197,55.240279138933964],[-122.42060663415576,55.24020720821667],[-122.42055977801542,55.24013522088579],[-122.42052988708751,55.240116420917744],[-122.42048223452855,55.240053380757765],[-122.42046798619131,55.24003615196619],[-122.42045149526814,55.23999979717575],[-122.42043659771514,55.23994554798535],[-122.42042212246577,55.23986440059701],[-122.42042334139927,55.2398285552017],[-122.4204238115138,55.23975680781168],[-122.42042512614519,55.23963126403],[-122.420427141734,55.239586471436745],[-122.42047620371075,55.23943426944883],[-122.42047555443585,55.23939724905538],[-122.42046055749195,55.239344118270104],[-122.42046257302688,55.23929932567727],[-122.42046351706738,55.239244410886734],[-122.42046276822603,55.2392085088935],[-122.42049589278967,55.239146670889305],[-122.42052874238193,55.239065763480546],[-122.42056079521889,55.23899380326268],[-122.42061018280612,55.23890440141543],[-122.42062649376068,55.23883198840465],[-122.42064476798973,55.23867105200802],[-122.4206607042845,55.23858068799889],[-122.42072508355713,55.23845583688748],[-122.42072630217808,55.238419991493124],[-122.42072762036861,55.23838302769883],[-122.42072729335086,55.23832022751524],[-122.4207127185281,55.23824019857051],[-122.42073062216741,55.2381498911507],[-122.42073146624413,55.238096094762724],[-122.4207481511894,55.23804163273465],[-122.42078005579522,55.23801564005368],[-122.42082663009289,55.23797997792034],[-122.42107829144729,55.237989458442925],[-122.42112678604197,55.23799870197484],[-122.42117172006141,55.2380257833045],[-122.4212504791866,55.238071777592154],[-122.42131242548223,55.23810719695449],[-122.4213293380462,55.238116653429714],[-122.42136012384431,55.238125387598956],[-122.42148625367444,55.23812677218321],[-122.42151666463383,55.23811755532175],[-122.42156558096411,55.238099900486304],[-122.42158174376588,55.23807345494376],[-122.42164537606365,55.23800128135377],[-122.42164500112715,55.23798333036236],[-122.42166116382991,55.237956884809705],[-122.42166121030138,55.23791203562178],[-122.42166205312893,55.23785823922857],[-122.4216479046087,55.237839892174094],[-122.42163141351956,55.237803537545894],[-122.42161726503254,55.23778519048797],[-122.42160104936217,55.23776790524779],[-122.42156919205696,55.237749048951144],[-122.4215234616949,55.23773091496984],[-122.42147656012098,55.23770377718434],[-122.42141302148664,55.23768625231205],[-122.42133580894497,55.23766721290915],[-122.42125573283491,55.23765818247456],[-122.42116188325338,55.23764875587133],[-122.42108297838195,55.23764872911609],[-122.42073874037472,55.23763770707456],[-122.42065983552526,55.237637680051186],[-122.42051749211178,55.23761900924901],[-122.4204071050371,55.23761807648627],[-122.42036174970791,55.23761789307317],[-122.42032857457201,55.23763600024762],[-122.42028200023105,55.23767166219385],[-122.42024919932585,55.23770772034234],[-122.42023223912369,55.237743112907395],[-122.42021644986471,55.237787509269566],[-122.42019924571255,55.2379585677917],[-122.42019765234528,55.23797646218393],[-122.42014943594683,55.23807486766156],[-122.42008617509188,55.238164991483856],[-122.42005374783751,55.23821900057861],[-122.42002067165846,55.23823598927242],[-122.4199902602669,55.23824520576869],[-122.41991093163875,55.23827207646253],[-122.41987865211688,55.23828011792427],[-122.4198174550641,55.238280599842845],[-122.41969132480924,55.23827921356851],[-122.4196112478503,55.238270182076334],[-122.41954977640937,55.23825159446643],[-122.41944050777465,55.23821593386371],[-122.41940865112721,55.23819707701381],[-122.41934590949202,55.238170603895156],[-122.41929980576118,55.238134518098356],[-122.41925210831971,55.23811632666485],[-122.41922104874298,55.238088522576966],[-122.41919068650505,55.23805288969043],[-122.41914383540662,55.23798090183858],[-122.41912931417764,55.237944603498896],[-122.41911441916815,55.237890354158836],[-122.41911404536178,55.237872403159976],[-122.41906916225898,55.237800471901636],[-122.41903762966406,55.23775583516844],[-122.41900577356971,55.237736978216226],[-122.4189438298745,55.23770155770764],[-122.41891277083096,55.23767375354375],[-122.41883630647392,55.23760203461621],[-122.41880445059567,55.23758317761264],[-122.41874171031522,55.23755670419088],[-122.4186633286677,55.237528659318315],[-122.41858484750028,55.237501732794684],[-122.41847605490696,55.23748290394948],[-122.41836636569926,55.23747414059147],[-122.41834945410166,55.237464683714286],[-122.4182556056524,55.23745525492134],[-122.41822402392857,55.23745546716835],[-122.41809949059548,55.23743618491583],[-122.41790982636299,55.23741727024281],[-122.41778519364755,55.23739910607375],[-122.4176274845441,55.237397929837186],[-122.41742315038549,55.23738868349018],[-122.41712427064937,55.237377835942],[-122.41701468169497,55.23736795299658],[-122.41688845472159,55.23736768228089],[-122.41679460684094,55.23735825238702],[-122.41666917735577,55.237349034275184],[-122.41654384761357,55.23733869764049],[-122.41624486879205,55.23732896637854],[-122.41619754618652,55.23732872478305],[-122.4160887551781,55.23730989385284],[-122.41591446106489,55.23727347848063],[-122.4158064679844,55.23724570013577],[-122.41571145069263,55.23722726558541],[-122.41561802886208,55.23719093663015],[-122.41557033420371,55.23717274378791],[-122.41552460720024,55.23715460760481],[-122.41550929182485,55.23712725601103],[-122.41546202284103,55.237082164953456],[-122.41544670753576,55.23705481335202],[-122.41543129253569,55.23702858014446],[-122.41543177151861,55.23695683278851],[-122.4154343712241,55.236839174534346],[-122.41545266531415,55.23667823892405],[-122.41545229315258,55.236660287915896],[-122.41550168922561,55.23657088811014],[-122.41551678522498,55.23653432111934],[-122.41558112393729,55.236454321866745],[-122.41561355577267,55.2364003139438],[-122.41570984719776,55.23633805404764],[-122.4157410557706,55.23631989143141],[-122.41577226431525,55.23630172880727],[-122.41581958571044,55.23630197056439],[-122.41592996906809,55.236302907392975],[-122.41599223344625,55.23631254961854],[-122.41610191897041,55.23632131506684],[-122.41619613676053,55.236348696487376],[-122.41629115219975,55.23636713066671],[-122.41638420015065,55.2363855081099],[-122.41647804566644,55.23639493831224],[-122.41663495336039,55.23640506317644],[-122.41668227488229,55.23640530460573],[-122.41673039382859,55.23639659884421],[-122.4167938806054,55.236370395319405],[-122.41684172638212,55.236342620114485],[-122.41687246198192,55.236307624607825],[-122.41695221331128,55.236253857675955],[-122.41698342125802,55.23623569474846],[-122.41704770496561,55.236200543920226],[-122.41709465335965,55.23618283419003],[-122.41718934734044,55.23613846750107],[-122.41729988127328,55.236093435538436],[-122.41734879699297,55.23607578236187],[-122.41741228286094,55.23604957852246],[-122.41745843366384,55.236040815832375],[-122.41760161829227,55.23600569377034],[-122.41766440632827,55.23598731858345],[-122.41771215139902,55.235960661442256],[-122.41774335877537,55.235942498324704],[-122.41777446647579,55.235925453596835],[-122.41780647097141,55.23589834328436],[-122.4178234325296,55.2358629510545],[-122.41787095445304,55.235772375276],[-122.41787254876769,55.2357544809165],[-122.41788998479147,55.23564734131975],[-122.41789003546343,55.23560249214097],[-122.4179055021748,55.23558387586263],[-122.41795329720847,55.23551236945141],[-122.41798520161426,55.235486377491355],[-122.41800183864721,55.23547676501993],[-122.4180338426328,55.23544965465001],[-122.41808121349816,55.23540504636958],[-122.41811232063996,55.23538800155798],[-122.41814549491981,55.23536989497687],[-122.41817670164241,55.2353517317516],[-122.41828633562115,55.23531676449514],[-122.41835029275282,55.23530739277923],[-122.41842909340332,55.23530853966367],[-122.41847561663242,55.23531772759456],[-122.41852213988275,55.23532691550805],[-122.41856983368787,55.23534510721731],[-122.41871015086774,55.23540857279362],[-122.41877241452818,55.2354182136286],[-122.41881973490236,55.2354184542458],[-122.41894515886239,55.23542767019044],[-122.41903979963563,55.23542815127548],[-122.41913406661868,55.23541068129304],[-122.41919802370218,55.23540130914168],[-122.41929308738744,55.235374891851],[-122.41930765692848,55.23536634098605],[-122.41937273403198,55.235322241771385],[-122.41940473697106,55.23529513104942],[-122.41942099966674,55.23526756739413],[-122.4194517322023,55.235232571253775],[-122.41945215506522,55.23520567307003],[-122.41950154046627,55.235116271687666],[-122.4195008921577,55.23507925130107],[-122.41950211176689,55.235043405927726],[-122.4195182746971,55.235016960658974],[-122.41950216064133,55.23499855675035],[-122.41942527743954,55.23495373638216],[-122.41937838051751,55.23492659781213],[-122.41933068684294,55.234908406413076],[-122.41922152708536,55.23487162722857],[-122.41911157066409,55.234843795135546],[-122.41908078786462,55.23483506041268],[-122.41900151478399,55.23481708134381],[-122.41890767235661,55.23480765304406],[-122.41882966959871,55.23479755927723],[-122.4187819763251,55.23477936766814],[-122.41859434167901,55.234715661490945],[-122.4184850834924,55.23468000005952],[-122.41835981174363,55.23462481607852],[-122.4183298263076,55.23460713398805],[-122.4182510773017,55.23456113786548],[-122.41821912447297,55.234543399114145],[-122.41812650368517,55.234498124866576],[-122.41804882587971,55.2344622508307],[-122.4179853934947,55.23444360581664],[-122.41784385975755,55.23441598478359],[-122.41773390553416,55.234388151475144],[-122.41768658637803,55.234387910445385],[-122.41757690577862,55.23437914639414],[-122.41751464401231,55.23436950496208],[-122.41749970139757,55.234360104617664],[-122.41746695184052,55.23435131285005],[-122.41745280646599,55.23433296532377],[-122.4174358964032,55.234323508324884],[-122.417436320604,55.234296610149805],[-122.41743754202851,55.2342607647988],[-122.41747024299141,55.2342258257971],[-122.41748491215535,55.234216156749085],[-122.41750224634023,55.23419871556624],[-122.41754919219875,55.234181005667324],[-122.41762771715936,55.23416308366298],[-122.41772315210137,55.23415461857143],[-122.41777009781123,55.23413690858935],[-122.41788089917706,55.23411094551283],[-122.41791130792737,55.234101729534466],[-122.41792784476655,55.23409323547132],[-122.41795984770165,55.23406612512307],[-122.41800641992751,55.234030464054825],[-122.41803884655442,55.23397645551003],[-122.41807286724658,55.2339045525974],[-122.41808706320343,55.23387805087968],[-122.41810534411259,55.233805694863065],[-122.41810576786045,55.233778796686664],[-122.41810661535449,55.23372500033416],[-122.41809129952942,55.23369764906488],[-122.41806014453093,55.23367096309411],[-122.4179820951194,55.23361713802261],[-122.41785720057455,55.23357990453675],[-122.41769945767426,55.23353499761713],[-122.41760524544897,55.23350761733952],[-122.41751060920961,55.23350713516452],[-122.41744951903776,55.23350649752245],[-122.41730639448873,55.23349677023157],[-122.41716603471284,55.23347815225386],[-122.41708793530809,55.23346917579396],[-122.41704061723642,55.233468934518754],[-122.41699409647235,55.23345974605314],[-122.41694677841234,55.23345950474238],[-122.41691412937456,55.233449594433466],[-122.41688334811856,55.2334408591683],[-122.41675755810935,55.23341369014855],[-122.41669529803309,55.23340404830762],[-122.41664877742288,55.23339485971295],[-122.41653919943187,55.23338497635201],[-122.41635072500623,55.23337506314138],[-122.41627145602142,55.23335708233664],[-122.41613109721158,55.233338463192794],[-122.41598877110665,55.23331978722064],[-122.4159265113599,55.23331014499551],[-122.41569071957075,55.23329998906959],[-122.41561182323007,55.23329995884814],[-122.41556530298756,55.23329076984882],[-122.41551878276631,55.233281580832106],[-122.41545498128345,55.23324498352733],[-122.41537810593964,55.23320016066635],[-122.41536279216882,55.23317280906262],[-122.41533046964099,55.23313711856824],[-122.41533211850043,55.23307437507551],[-122.41533386706311,55.2330105131878],[-122.4153339740977,55.23292081485009],[-122.4153355694275,55.23290292052688],[-122.41535173423601,55.23287647580309],[-122.41538336584351,55.23283141511603],[-122.41544610362705,55.23276931027878],[-122.41549427183143,55.23271575582902],[-122.41554253960938,55.23266108296548],[-122.41558990995375,55.23261647564197],[-122.41565381688362,55.23256337454029],[-122.41570155922395,55.232536718176604],[-122.41574850393604,55.232519008958725],[-122.4158598270792,55.23246503112225],[-122.41593824975361,55.232448228581084],[-122.41601794192854,55.23243931143007],[-122.41609566668654,55.23243033755981],[-122.41614298353136,55.23243057919398],[-122.41642608719927,55.23244097578953],[-122.41647340405855,55.23244121729806],[-122.4164899405189,55.232432723426925],[-122.41652034831961,55.23242350778942],[-122.41655235087505,55.232396397806134],[-122.41660168716702,55.23235184675961],[-122.41660131453295,55.23233389576065],[-122.41666489905082,55.2322179939754],[-122.41669732601768,55.23216398578709],[-122.41673134757453,55.232092083250585],[-122.41674596841386,55.23203868352094],[-122.41673102684413,55.23202928308591],[-122.41666999095507,55.23198379589521],[-122.41662309935211,55.231956656293605],[-122.41660619048282,55.23194719918367],[-122.41657541044279,55.23193846384337],[-122.416355790284,55.231901864294905],[-122.41627742131307,55.231873817932524],[-122.41621426660448,55.23187424141508],[-122.41618278893169,55.23187333474847],[-122.41604243533777,55.23185471550672],[-122.41585279837716,55.23183579770898],[-122.4157597611884,55.231817419875],[-122.41571207283438,55.23179922709427],[-122.41563519996596,55.23175440439688],[-122.41554179090899,55.231718075399115],[-122.41547836401092,55.23169942911179],[-122.4154148374688,55.23168190118735],[-122.41532100319263,55.231672470187064],[-122.41511600065692,55.23167104882433],[-122.41500759736574,55.2316701679602],[-122.4149594836981,55.23167887305308],[-122.4148809623966,55.23169679337161],[-122.41486442589905,55.231705287028646],[-122.41481668399061,55.231731943069725],[-122.41469036624407,55.23182136845578],[-122.41453044877862,55.231955797497214],[-122.41449844521155,55.231982906959864],[-122.41446813701066,55.23199100370911],[-122.41443655955509,55.231991214995524],[-122.41424809217494,55.231981298603664],[-122.41421651472582,55.231981509834334],[-122.41415425747412,55.231971866724066],[-122.41410656966286,55.23195367332832],[-122.41406047775243,55.231917585608876],[-122.41404356950177,55.231908128150934],[-122.41402815738776,55.2318818947797],[-122.41399870211391,55.23183619509736],[-122.41399912858586,55.23180929693895],[-122.41399838564983,55.23177339492686],[-122.41401572029356,55.2317559542323],[-122.41403081583701,55.23171938743476],[-122.4140469810275,55.231692942882624],[-122.41409514980545,55.231639388978266],[-122.4141599547933,55.231576223100134],[-122.41427080613805,55.23150541407688],[-122.41430280947878,55.23147830467361],[-122.41431860278617,55.231433909082014],[-122.41431982690074,55.231398063769205],[-122.4142725659789,55.23135297227914],[-122.4142407171857,55.231334114117075],[-122.41419340164153,55.231333871760164],[-122.41394295291182,55.231333381184726],[-122.41383258323111,55.23133244259535],[-122.41375289276384,55.23134135834712],[-122.41369020994046,55.23135861316201],[-122.4136756406568,55.23136716336718],[-122.4136120599903,55.231394483686394],[-122.41359552334919,55.231402977174746],[-122.41354895025549,55.231438636586496],[-122.4135157771483,55.23145674193788],[-122.41350040974802,55.23147423927167],[-122.41348334648161,55.23151074929474],[-122.41346718099393,55.231537193773384],[-122.41346712539811,55.2315820429368],[-122.41348158364433,55.23166319108312],[-122.41347987637567,55.2317707837088],[-122.41346361102391,55.23179834658118],[-122.41343250468792,55.23181539022699],[-122.41336892314821,55.231842710422995],[-122.4133219781779,55.231860418743004],[-122.41325812511678,55.23186866948076],[-122.41311697475548,55.23185899408943],[-122.413022342447,55.231858508503684],[-122.4129758244621,55.231849318537975],[-122.41289772915313,55.231840339451246],[-122.41277284482692,55.231803100871396],[-122.41272595606273,55.23177595980272],[-122.41264871569949,55.231713184252094],[-122.41261596935628,55.2317043912105],[-122.41258529014965,55.231694536491275],[-122.41253760337634,55.231676342495085],[-122.41242756052263,55.2316496229002],[-122.41241262010612,55.23164022194721],[-122.41239767969655,55.23163082099259],[-122.41238273929397,55.231621420036056],[-122.41238316684374,55.23159452188361],[-122.4123985347757,55.23157702468763],[-122.41241353193553,55.231541576479145],[-122.41244596406275,55.231487569400734],[-122.41252693746544,55.23139796002737],[-122.41262205261012,55.23132669867437],[-122.41265405691937,55.2312995896952],[-122.41273337664839,55.23127272363751],[-122.41278032119214,55.23125501554024],[-122.41281259649745,55.23124697592243],[-122.41290648541387,55.23121155965037],[-122.41293769127638,55.23119339774353],[-122.41295512589988,55.231174838804264],[-122.41300169921446,55.231139179615305],[-122.413050239759,55.231103577125396],[-122.4131453532813,55.23103231537418],[-122.41320926092104,55.23097921553336],[-122.41320968791152,55.230952317379256],[-122.41322595309526,55.23092475454185],[-122.4132105418908,55.23089852107134],[-122.41319523046896,55.230871169205685],[-122.41314834250569,55.23084402829791],[-122.41308534516611,55.2307984826394],[-122.41300730797911,55.23074465446141],[-122.41296158943446,55.23072651734593],[-122.41288162878499,55.23071636313888],[-122.41263118391417,55.23071586992523],[-122.41245893184269,55.23072323722531],[-122.41242655710326,55.23073239514391],[-122.41223809611358,55.2307224757109],[-122.41211189001609,55.23072220015431],[-122.41208121168161,55.23071234531147],[-122.41204926462834,55.23069460498226],[-122.41200317600472,55.23065851650461],[-122.41197165684291,55.23061387800624],[-122.41195671691737,55.23060447699935],[-122.41194103592058,55.230559173969525],[-122.41192615333426,55.23050492379957],[-122.41191191204051,55.23048769404147],[-122.41192743686166,55.2304242293537],[-122.41195976894515,55.23037134079853],[-122.41197768872479,55.23028103469013],[-122.41199385468663,55.23025459040729],[-122.41205791956753,55.23015552360966],[-122.41209035105499,55.23010151662931],[-122.41210651687067,55.230075072332184],[-122.41218674690104,55.22994956117068],[-122.41220174364095,55.22991411299201],[-122.41220296959472,55.229878267703924],[-122.41222009031368,55.22979690870341],[-122.41222051795273,55.22977001055509],[-122.41218936988759,55.229743323123394],[-122.41211223405206,55.22967942885684],[-122.4120496102867,55.22965183368712],[-122.41201883299125,55.229643097222],[-122.41187689236483,55.229642367564814],[-122.41176562917705,55.22965149267307],[-122.4117194844616,55.22966025324953],[-122.41165563456269,55.22966850316433],[-122.4116390982179,55.229676996391795],[-122.41154601020993,55.22970346456905],[-122.41146589431916,55.22973927700209],[-122.4114343186146,55.22973948752723],[-122.4114040114868,55.22974758352933],[-122.41132512211347,55.22974755059205],[-122.41127663971285,55.229738303249455],[-122.41118403779376,55.22969302385483],[-122.41115326065473,55.22968428717575],[-122.41112178480884,55.22968337923004],[-122.41090095481098,55.22968261534432],[-122.41085364122856,55.22968237171848],[-122.41080749627918,55.22969113195699],[-122.41079085991969,55.229700743463155],[-122.41074391631356,55.229718450808406],[-122.41064806173428,55.22975380869185],[-122.41056884343962,55.22977955502706],[-122.41050526317231,55.22980687375685],[-122.4104268433768,55.22982367287333],[-122.4103328556766,55.2298602056631],[-122.41025363697088,55.229885951798046],[-122.41017511707223,55.22990386914694],[-122.4101278032341,55.229903625245306],[-122.410079690623,55.2299123284517],[-122.41001663877597,55.22991163040024],[-122.40995551383763,55.22986725831648],[-122.40992409741754,55.22982150091189],[-122.40989215202227,55.22980376003035],[-122.40984649557858,55.22974077261658],[-122.4098303880583,55.22972236746387],[-122.40978510137248,55.2296773310435],[-122.40969053403602,55.22963199377044],[-122.40964364988,55.229604851545524],[-122.40956635855142,55.22958692324808],[-122.40953488281748,55.22958601490131],[-122.4093464279089,55.22957609109277],[-122.40920448756735,55.229575358389376],[-122.40917211301078,55.229584515461],[-122.40910980022703,55.22961971898547],[-122.4090615273582,55.22967438934327],[-122.40898181781067,55.229771881961575],[-122.4089498122428,55.22979898999389],[-122.40891700760129,55.22983504513652],[-122.4088850019395,55.22986215315226],[-122.40880652057271,55.229923800404194],[-122.4087753138304,55.22994196127417],[-122.40874293888125,55.22995111823449],[-122.40866414899736,55.229949965221806],[-122.40861843331287,55.22993182651274],[-122.4085856892997,55.22992303241252],[-122.4085557116614,55.22990534797494],[-122.4084777821558,55.229850398572516],[-122.40843016063121,55.22978735385061],[-122.40841592108809,55.22977012369359],[-122.4083994452586,55.229733767335745],[-122.40841614342494,55.22967930699407],[-122.40841657360511,55.229652408859046],[-122.4084027643045,55.229608280565756],[-122.40838745664102,55.2295809281116],[-122.40834057342329,55.22955378539615],[-122.40829209194187,55.22954453689164],[-122.40824557771178,55.22953534516052],[-122.40807296108635,55.22952475537294],[-122.40804255354172,55.22953396894585],[-122.40797817271363,55.22957023349745],[-122.40791505965878,55.22961438353633],[-122.40789889127407,55.229640827288364],[-122.40788342221812,55.22965944231555],[-122.40786565527166,55.22970378028671],[-122.40786559343611,55.229748629441616],[-122.40784754095475,55.229928633265196],[-122.40783057312487,55.22996402412058],[-122.40781590319146,55.22997369202826],[-122.40779856662873,55.22999113185737],[-122.40778399658848,55.229999681372455],[-122.40773588335573,55.23000838367325],[-122.40768777010217,55.230017085955495],[-122.4076561941599,55.2300172955226],[-122.40756236558356,55.23000785867721],[-122.40750011297965,55.22999821224166],[-122.40746816851266,55.22998047073808],[-122.40742128544952,55.22995332767576],[-122.40737600119974,55.22990829037863],[-122.40735989474223,55.22988988490611],[-122.40733034857546,55.22984530204186],[-122.40732998009993,55.22982735101857],[-122.40729973454668,55.22979059686697],[-122.40725285181834,55.22976345374152],[-122.40715748771267,55.22972706165226],[-122.40709593514416,55.22970958629616],[-122.40706525880992,55.22969973021835],[-122.40698636953411,55.229699694532385],[-122.40673486328038,55.22968906715359],[-122.40660866046161,55.229688786019615],[-122.40651280232012,55.22972414071949],[-122.40648239426767,55.229733353911584],[-122.40641971083197,55.229750605064524],[-122.40637239719685,55.22975035973602],[-122.4062785695439,55.22974092192355],[-122.40623008831092,55.229731672616104],[-122.40616816818196,55.22969624577493],[-122.40609067407541,55.22961439675229],[-122.40607536798099,55.22958704401387],[-122.40607659938128,55.22955119878714],[-122.40607746286554,55.22949740253382],[-122.40607789460681,55.22947050440729],[-122.40610953392037,55.22942544608742],[-122.40612607132869,55.22941695359448],[-122.40626813828598,55.22932799150136],[-122.40631551498626,55.22928338771683],[-122.40642690526803,55.22918456917367],[-122.40646007969126,55.22916646571384],[-122.40645971161011,55.229148514688795],[-122.40647428162353,55.22913996532927],[-122.40647471309578,55.22911306720207],[-122.4064943070915,55.2289600185351],[-122.40647853293989,55.22891583321068],[-122.40646402640472,55.22887953341915],[-122.40644872033602,55.22885218072805],[-122.40643251477984,55.22883489352468],[-122.40641720874952,55.228807540829806],[-122.40637032776152,55.2287803973741],[-122.40626242767934,55.22870776162036],[-122.40623048478223,55.22869001980096],[-122.4061533604258,55.22862612184821],[-122.40605843175376,55.228562830795056],[-122.4059815758189,55.22851800214932],[-122.40587207778185,55.22846326025617],[-122.4058255653541,55.22845406762184],[-122.40576134839763,55.22844436348763],[-122.40568442875579,55.22844438380827],[-122.40563631692837,55.228453085296856],[-122.40558857276628,55.2284797377936],[-122.40549381954145,55.228568944786296],[-122.4054763826063,55.228587502677314],[-122.40546058066228,55.22863189713793],[-122.40542844452965,55.22874870256339],[-122.40541110746007,55.228766142058504],[-122.40537866808593,55.22882014729386],[-122.40534666084802,55.22884725439821],[-122.40530008340339,55.228882910718085],[-122.40525153868161,55.22891851018093],[-122.40518879117013,55.22898060986425],[-122.40515641617836,55.22898976589143],[-122.40512600837023,55.22899897875179],[-122.40509373333244,55.22900701637601],[-122.40504632059523,55.22900788893022],[-122.4048886447484,55.22900669656356],[-122.40477828166034,55.229005749949515],[-122.40474830637832,55.228988064596585],[-122.40471636392618,55.228970322388335],[-122.4046541790224,55.22891582538019],[-122.40460729909732,55.228888681260464],[-122.40459199428702,55.228861328341125],[-122.4045624519415,55.228816744823476],[-122.40456288468799,55.22878984670355],[-122.40457928591188,55.22867258670046],[-122.40458051861668,55.228636741490845],[-122.40459562156252,55.22860017584553],[-122.40464416648052,55.22856457663916],[-122.40470888135725,55.228502534080356],[-122.40474088875057,55.22847542714065],[-122.40477092892978,55.22844826334562],[-122.40483441095421,55.22842206593299],[-122.40486678556255,55.22841290998983],[-122.40499214954463,55.22837840921923],[-122.405024524082,55.22836925323507],[-122.40505573129731,55.228351093307246],[-122.40510267581102,55.2283333881081],[-122.40511921298308,55.22832489574945],[-122.40513548264555,55.22829733397432],[-122.40516788678505,55.22819959804252],[-122.40520192558785,55.22812769867746],[-122.40521739529532,55.228109083985444],[-122.40520199038916,55.22808284952929],[-122.40517174809018,55.228046094865455],[-122.40507768711683,55.227929006826514],[-122.40504697762604,55.227875419491966],[-122.40497108904012,55.22777567559867],[-122.40495498453586,55.227757269817936],[-122.40493957993537,55.227731035329995],[-122.40490853826115,55.22770322769472],[-122.40486165957695,55.22767608367315],[-122.40484545517596,55.22765879626475],[-122.40481478095593,55.22764893963405],[-122.40475243267012,55.22764041021278],[-122.40459556213698,55.22763027038491],[-122.404532881168,55.227647520585386],[-122.40443782604848,55.227673926593845],[-122.40439088201147,55.22769163154154],[-122.40437344494785,55.22771018927689],[-122.40434143791562,55.22773729612066],[-122.40429362793225,55.22780879726608],[-122.40427745789356,55.22783524054446],[-122.4042466178091,55.227871351306476],[-122.40423008063928,55.2278798435489],[-122.40419850635584,55.22788005223914],[-122.40396274934183,55.22786987411156],[-122.40391543793264,55.227869627849515],[-122.40388466376592,55.227860889375144],[-122.40385282260371,55.227842028561184],[-122.4038284499668,55.22782786873004],[-122.39999950948803,55.22959975902007],[-122.37927491644787,55.2391864524701],[-122.3791348566317,55.23916443652294],[-122.37891129580618,55.239127656418006],[-122.3787468657621,55.23909147531048],[-122.37859312747175,55.239024208777494],[-122.37839271725912,55.23892755131569],[-122.37826405577279,55.23886662063613],[-122.3781938193361,55.238814118045156],[-122.3781154577667,55.23874231685601],[-122.37807509175335,55.2387086243399],[-122.37803492732588,55.238672695079586],[-122.37780576423131,55.23858865528604],[-122.37737847675264,55.238492119760956],[-122.37701914631688,55.23836392227123],[-122.37685788944098,55.23822691398243],[-122.37678972004888,55.23812961872743],[-122.37671373309635,55.238053400490884],[-122.37664208895576,55.238016554131605],[-122.37661474416595,55.2380135153172],[-122.37648175387307,55.23800067247199],[-122.37614958094163,55.237965209645786],[-122.37584293526349,55.23790918467443],[-122.3757608429263,55.23779129987539],[-122.3757272316932,55.23763894543331],[-122.37555882354488,55.23758133929246],[-122.37533775197059,55.2376264798616],[-122.37517136879309,55.23767769831899],[-122.37502940051169,55.23767692665954],[-122.37485902562653,55.23761926225517],[-122.37465676664786,55.23756515390604],[-122.3744141995154,55.23754238854228],[-122.37416235027888,55.23753505045749],[-122.37381257598307,55.23749794705893],[-122.37339333155906,55.237421815069936],[-122.37317079457542,55.23737384104818],[-122.37313805225752,55.237365037623114],[-122.37302771734142,55.237341638289145],[-122.37272446096556,55.23727000593024],[-122.37242988317074,55.23718965537831],[-122.37232373680867,55.23714170883707],[-122.37231500911606,55.23712912006767],[-122.37229725100322,55.2371072976097],[-122.37221925681874,55.23700971305992],[-122.37198189333462,55.236863751186824],[-122.37166174208743,55.23678265307001],[-122.37146080230893,55.236757731643415],[-122.37136600838349,55.23673702654538],[-122.37132529592465,55.23672911150417],[-122.37126283973276,55.23672168366923],[-122.37112632414875,55.23670424691368],[-122.37099011153293,55.23668345492918],[-122.37081036223074,55.23664233086364],[-122.37056750240932,55.23657918229532],[-122.37034245196647,55.23651543141579],[-122.37016194823184,55.23646082871288],[-122.370023417533,55.23642202713795],[-122.36984720148116,55.236385489911335],[-122.36964157412554,55.236346973047425],[-122.36949053235472,55.23631565497698],[-122.36927385622114,55.23629027078529],[-122.36896501076916,55.236258832771114],[-122.36881159831809,55.23623192989705],[-122.36880650389281,55.23622281078717],[-122.36879581000052,55.23621016435663],[-122.36863195883325,55.236145953539186],[-122.36832483726808,55.23605177106325],[-122.36811473012507,55.23595369161315],[-122.36799871210457,55.23584041725082],[-122.36794060230677,55.23578489838676],[-122.36790579391584,55.23577715451538],[-122.36783183808032,55.235766025310575],[-122.367745316887,55.235784804542945],[-122.36754851008082,55.235845216537406],[-122.36727880478705,55.235904621337156],[-122.36710581484449,55.23591975439998],[-122.36702318057374,55.235917341798164],[-122.36698983443091,55.235915246896816],[-122.36691900506925,55.235913178889824],[-122.36677174711822,55.23590551534348],[-122.36670101885213,55.23590232885618],[-122.36666762555161,55.23587892765121],[-122.36660694363975,55.235830060852805],[-122.36657572007131,55.23580448036108],[-122.36653618207654,55.23571810647386],[-122.36636201487458,55.235528004826506],[-122.36599164887348,55.23539160233579],[-122.36557122802856,55.23532886429611],[-122.36523373638241,55.235308914405195],[-122.36495606889517,55.23532547185092],[-122.36479266939352,55.23532181957338],[-122.36472572993138,55.23529855905946],[-122.36468739216922,55.235286225910784],[-122.3645615305419,55.23526012252662],[-122.36422157620778,55.2352019733942],[-122.36381927164449,55.235135273413356],[-122.36351761111231,55.23506814955871],[-122.36334842193905,55.235019473747876],[-122.36330221513411,55.23500691016637],[-122.36322619339404,55.23499683907829],[-122.36301139457731,55.23497261985075],[-122.3626729064561,55.234920115765],[-122.3622465037506,55.234814581532675],[-122.36186732126752,55.23471042645014],[-122.36158784702539,55.23470337593888],[-122.36137131770322,55.23474189665362],[-122.36128716797417,55.23475625552348],[-122.36120273979974,55.23468650781815],[-122.36106510339862,55.234572594115605],[-122.3609970667485,55.23451790268006],[-122.36089806320305,55.234609197384515],[-122.36069601869632,55.23479278982347],[-122.36059701379159,55.234884084290435],[-122.36048161402383,55.23480782361467],[-122.3601824188885,55.23462638968396],[-122.35985728881171,55.2344699864217],[-122.35964945259317,55.234303558205],[-122.35956497018375,55.2341037353882],[-122.35952368405299,55.23401506502404],[-122.3593948497196,55.23400008236142],[-122.35902418757189,55.233954475784486],[-122.35856777219169,55.23389738794485],[-122.35831610849084,55.233866474903],[-122.35809375309384,55.2338386618234],[-122.35770362287812,55.23379023877072],[-122.3573486021581,55.23374620628139],[-122.35721200137435,55.233729872626576],[-122.35713795093216,55.23371985542155],[-122.3568943615447,55.233686933209015],[-122.35650382886362,55.23364297979066],[-122.35612483869347,55.23362403210244],[-122.35585182333809,55.23363285604672],[-122.35568605871201,55.233633607590335],[-122.35548924074308,55.23358523273506],[-122.35519186373149,55.23347111815035],[-122.3549500808655,55.23335302489615],[-122.3548732727356,55.2333081647011],[-122.35487055473395,55.2332946292731],[-122.35486481456758,55.23327091345623],[-122.3548600278466,55.2332584387388],[-122.35481362293234,55.23324810870228],[-122.35471158487037,55.233220450309936],[-122.35462467722532,55.23319996302753],[-122.35453987916054,55.23319972119636],[-122.35441027877184,55.23321498636444],[-122.3543184632298,55.233226873260385],[-122.35429455102067,55.23322953656501],[-122.35426670414239,55.23323208457494],[-122.35420677148574,55.23324042032179],[-122.35414249849883,55.233253114129134],[-122.35408952242243,55.2332717455198],[-122.3540543537289,55.2332897773793],[-122.3540316989114,55.23330032670216],[-122.35398851893487,55.233297940075815],[-122.3538534827009,55.233286133769916],[-122.35368137146327,55.23326987685489],[-122.3535004379739,55.233242147963495],[-122.35318836358937,55.23318142088459],[-122.35282968300919,55.23311259893779],[-122.3526432546466,55.23308022241892],[-122.35254196838147,55.233066040054936],[-122.35242413196097,55.2330603429714],[-122.35237081135358,55.233061022446165],[-122.35231966098573,55.23305952288527],[-122.35221155975975,55.23305523232374],[-122.35216040940519,55.23305373269739],[-122.35212299081941,55.23303133058544],[-122.35205032402475,55.23298434731987],[-122.35201300703275,55.232960826830904],[-122.35198173290716,55.232957667248144],[-122.35184473108829,55.232945801083225],[-122.35160800518031,55.232924282704836],[-122.35134353417469,55.232904192889144],[-122.3511220398079,55.232888726833615],[-122.35102190990918,55.23288354767477],[-122.35093697218039,55.232863115515684],[-122.35078459974973,55.2328250070117],[-122.3507113646032,55.23280603924164],[-122.35066282966855,55.232819192861484],[-122.35054361176502,55.23285045701796],[-122.35044674466978,55.23287452742255],[-122.35042252787787,55.23288054501186],[-122.35035709907207,55.23288423241732],[-122.35022810721763,55.23289278317654],[-122.35016454416561,55.23289764653219],[-122.35014174859555,55.2328880072713],[-122.35010656474383,55.2328410010182],[-122.35010438067329,55.232778142995414],[-122.35011282059637,55.23275035756535],[-122.35006018627206,55.232786938432],[-122.3499102151815,55.23287448719384],[-122.34974697990006,55.23295604005007],[-122.34957600149298,55.23299251269504],[-122.34939151814979,55.233003919806954],[-122.3493103505296,55.233007144884816],[-122.34925133108537,55.233005413169906],[-122.3490351296017,55.23299682662607],[-122.34878341501465,55.23298831888298],[-122.34855096740168,55.23298486135116],[-122.34815926913322,55.232975608080935],[-122.34769695103981,55.232962037959034],[-122.34737512498957,55.23294362000738],[-122.34710400599184,55.23290987008888],[-122.34684126472617,55.2328707589309],[-122.34673261989036,55.23285074909338],[-122.34671450769882,55.23285470257421],[-122.34664952164734,55.23287522089198],[-122.34658412905478,55.232900212534474],[-122.34656137087907,55.232911878837506],[-122.34652823153382,55.23290754177884],[-122.3464598839371,55.23289992820621],[-122.34637837497716,55.23288520017223],[-122.34627447795758,55.232856358758596],[-122.34612604457023,55.2328183600972],[-122.34590129335515,55.23277363461469],[-122.34565625981477,55.23273504095063],[-122.3455116963815,55.232719581677635],[-122.34539138641948,55.23271941185002],[-122.34511505021506,55.232721386653004],[-122.3447395359044,55.23272941780869],[-122.34449800084282,55.23273914158641],[-122.34442656816113,55.23274377081554],[-122.34438878283972,55.232747145951436],[-122.34426691223601,55.23274244388511],[-122.34409066923548,55.23272829478532],[-122.3440084496616,55.23272139356341],[-122.34392768894848,55.23272014178279],[-122.34372583633014,55.23268393443514],[-122.34356492213664,55.23260968343555],[-122.34349233288613,55.232540270621286],[-122.34341031430831,55.2324660953345],[-122.34329844695364,55.23237310151402],[-122.34316928152933,55.232275113864226],[-122.3430714242406,55.232201594128504],[-122.34300643513647,55.23215707354974],[-122.34303580541757,55.232072716013896],[-122.34318608852669,55.23185174653975],[-122.34329152760652,55.23155993673281],[-122.34319031032744,55.2313932482277],[-122.34296051701428,55.23136070350628],[-122.34283027328085,55.2313613604222],[-122.34266855394425,55.23136109195339],[-122.3423390101387,55.23136261755749],[-122.34213194290561,55.231362136549336],[-122.34210233280433,55.23136238733034],[-122.34182519109835,55.23124322753916],[-122.34126697819907,55.23100479040885],[-122.34098984142912,55.23088562876167],[-122.34097325610117,55.23087280638357],[-122.34096236883808,55.23086239423885],[-122.34084725486974,55.23080518494286],[-122.34062574429508,55.23070335701582],[-122.34051799109965,55.23065197053096],[-122.34036153424469,55.23057223945524],[-122.33976260661781,55.23030456420401],[-122.33901757584385,55.23001688805178],[-122.33840314343678,55.23002796066839],[-122.33807177139767,55.23011464195283],[-122.33697968380324,55.22958798584919],[-122.32885550801842,55.22628053988178],[-122.32726597325698,55.22537243307339],[-122.32034731545484,55.222701014049335],[-122.31345165746761,55.22064885062042],[-122.30785019863218,55.221003010784315],[-122.30455289444537,55.221003769650686],[-122.29985045951125,55.21964392842617],[-122.2947442518907,55.21821804642786],[-122.28905493387357,55.2176447295311],[-122.2864417677421,55.217414224487875],[-122.28164096314723,55.21559320635183],[-122.27963728401258,55.214402933877416],[-122.27754017169603,55.21251905951137],[-122.27314517977358,55.21058423759465],[-122.26755070504659,55.21036261197629],[-122.26545297493381,55.210362425779984],[-122.26265096882085,55.20979379973975],[-122.2605450565275,55.207676094358554],[-122.25914345546184,55.20443123287404],[-122.25753166092996,55.201583724149664],[-122.2533287591398,55.1989631405145],[-122.25024572803035,55.1968516600456],[-122.24763648660303,55.194566001951685],[-122.24812716522199,55.192346980785786],[-122.25702052691035,55.19114384919376],[-122.26781453240288,55.19085841167136],[-122.2740104087208,55.19017411967144],[-122.27561312412016,55.190060678991195],[-122.28229322645977,55.186178879073275],[-122.28348109686944,55.18492258846954],[-122.28349676552212,55.184582159981794],[-122.28577744358074,55.18360971569348],[-122.28777964560868,55.181041056651296],[-122.28757980129068,55.17910633265735],[-122.28917150385635,55.17688423295897],[-122.29225565201253,55.17385443074538],[-122.29324764912909,55.170439204756846],[-122.28994384194274,55.16542451224556],[-122.2847352768405,55.16159970559494],[-122.27674982990442,55.1566418206245],[-122.2733481006092,55.15408172076991],[-122.26984301936426,55.149580663338305],[-122.26903709105488,55.14569889445259],[-122.2692389419817,55.14079779495481],[-122.2685275240783,55.136577957899824],[-122.26482938357252,55.13248356539676],[-122.25485127005123,55.13042451447615],[-122.2442765646871,55.131737695935314],[-122.23230654333257,55.13887487481714],[-122.22702842829386,55.141603319933],[-122.2213434588732,55.14160982456676],[-122.212763823676,55.14091773023267],[-122.20867629984947,55.14001243453844],[-122.19629949632353,55.13835084845726],[-122.1892200206718,55.13612405861157],[-122.18312341863195,55.133334945882666],[-122.17714050480683,55.12968773028849],[-122.17455339674865,55.126261564647],[-122.17575438696525,55.12272785732666],[-122.17975049902591,55.1194237939692],[-122.17954253685124,55.1169681296341],[-122.17555325616748,55.114063989332806],[-122.172167926402,55.111268060187165],[-122.17037625748564,55.1071037123344],[-122.17038048854245,55.10208865802475],[-122.16689688588806,55.09769254102423],[-122.15942954436599,55.09616056538006],[-122.15484590668757,55.09523795446199],[-122.15433784785549,55.0934726930362],[-122.15424904912307,55.090114479516245],[-122.15135050882624,55.091648430687506],[-122.14687514819754,55.0942099495762],[-122.14049002031805,55.09403826351683],[-122.13571022777333,55.09369199480499],[-122.13221356165157,55.097844644528976],[-122.13201281988056,55.102234648622904],[-122.13229918331245,55.1054824619406],[-122.12662062192403,55.106453651186094],[-122.12472642314162,55.1053716660036],[-122.12452508810884,55.10468350055899],[-122.12214400979009,55.10228530914192],[-122.11546692252733,55.10153800035427],[-122.10927502261372,55.101307988472726],[-122.10628926067467,55.10062210823206],[-122.10350152781444,55.09902721469888],[-122.10280439661297,55.09777611767254],[-122.10451528850253,55.095371509025064],[-122.1016316952294,55.09200602841743],[-122.09585706883821,55.08926722542395],[-122.08948975549963,55.08583651290075],[-122.08520360025273,55.08333253205615],[-122.081928062993,55.08030405598737],[-122.07685395954876,55.07750566902031],[-122.07078267258409,55.07510611243205],[-122.06939818963134,55.07447002700989],[-122.06611666915222,55.07184464315896],[-122.06322913471139,55.069052229170346],[-122.05687664632902,55.067620992055325],[-122.0511877585134,55.06664124969721],[-122.04642036854615,55.06395894341528],[-122.0443295688442,55.06235788966575],[-122.04005923763354,55.06086659216898],[-122.03637593204486,55.059322141877374],[-122.03460290441375,55.056412093150705],[-122.03281457996671,55.05430008765689],[-122.02904465616616,55.05236679162121],[-122.02655527399426,55.05115638777875],[-122.02398388619115,55.049503632998935],[-122.02399262344197,55.04574434365227],[-122.02221570054095,55.04368635519572],[-122.02132257519841,55.041907975693526],[-122.0219281487011,55.039747059385576],[-122.02164268414046,55.03770107566211],[-122.01646739726199,55.03506714664061],[-122.01448887532254,55.033469117407996],[-122.01270344757727,55.03198494526494],[-122.01042350777658,55.03089755482051],[-122.00824570614036,55.03020821702252],[-122.00545608381427,55.02871845702739],[-122.00247793044244,55.027231511362764],[-122.00012430408123,55.02483149208482],[-121.99764547136654,55.024966702402914],[-121.99407559075841,55.02533574117672],[-121.99139441746695,55.02529379247761],[-121.98549065023204,55.02338858744892],[-121.97971203717455,55.02291386171061],[-121.97723044223436,55.022761434510016],[-121.97458603955545,55.020145039435256],[-121.97197001205122,55.018507567466],[-121.96995838261168,55.01726659059726],[-121.96627718130982,55.01277672417604],[-121.96397406269963,55.01147229213303],[-121.95977376506603,55.01030327879195],[-121.95339212795064,55.008973049222526],[-121.94909803164143,55.007962105605216],[-121.94597649101686,55.006217737062364],[-121.94406614770561,55.0044501888972],[-121.94125348619265,55.002760680066196],[-121.93892330925357,55.00111386261534],[-121.93589730856633,55.000458121020365],[-121.93584229283,54.9989757099938],[-121.9383975364868,54.99791106443989],[-121.94105330029659,54.9966253368456],[-121.94005348735932,54.99298524267973],[-121.93291599524797,54.9903099416838],[-121.92806317330452,54.987547939363075],[-121.92137332520701,54.98247279724573],[-121.9196032048022,54.97980310487155],[-121.92004373538013,54.974191279967],[-121.91057397002331,54.96639439413542],[-121.90225397459834,54.96338183599793],[-121.9009280523478,54.962539206854636],[-121.89713515847251,54.957881636132406],[-121.88994911895232,54.95623391992058],[-121.87948186376615,54.95479044968843],[-121.87499275807316,54.95438039737645],[-121.87269364691694,54.9537113344802],[-121.86953286653412,54.94704581199407],[-121.86643614914972,54.94267962778643],[-121.86260895273358,54.93687996915209],[-121.85229410460522,54.93354559521079],[-121.84746465438553,54.93113079119905],[-121.8459470652679,54.92988619497586],[-121.84798334185186,54.92454336533713],[-121.85007363661022,54.92080868069984],[-121.85773892226744,54.91478439833875],[-121.86573141227952,54.91305121979415],[-121.87092439089443,54.91065855671425],[-121.8703730644603,54.90500453226971],[-121.87028664581877,54.90231845912393],[-121.86525671850234,54.8994398804018],[-121.8539528446681,54.89943741414065],[-121.84061416748173,54.90110629529552],[-121.83661428482142,54.89965218503898],[-121.84166221736606,54.89577513524764],[-121.85718345803645,54.89019508879806],[-121.85777063098097,54.88996353917712],[-121.86863727342985,54.885168029439356],[-121.8732991198984,54.88180636833463],[-121.87261137232211,54.87872327221034],[-121.87056270734466,54.87594457666683],[-121.87183280681542,54.87192195501492],[-121.86995833704228,54.86851192426245],[-121.86418426325606,54.867142760007155],[-121.85587987956931,54.86436012364985],[-121.84965797711227,54.864931521419145],[-121.84689405792903,54.86518841470705],[-121.83928266997732,54.86222155257306],[-121.83144538639418,54.86161571892986],[-121.82655375853284,54.860507889249604],[-121.81911858342869,54.859950767893665],[-121.80815314014039,54.85753214817295],[-121.80295098494274,54.85535380573774],[-121.8016355694716,54.85416027715263],[-121.79892801293974,54.84904233608228],[-121.79570106885184,54.842605294846244],[-121.79222577615211,54.83857377736343],[-121.78508880611336,54.838347720465826],[-121.78011604646771,54.84091469799349],[-121.77771289572584,54.84808379847303],[-121.77432425361347,54.85074077050117],[-121.76997864696266,54.85147117244962],[-121.76242721669244,54.85399384875509],[-121.75944703885364,54.85796583888108],[-121.75491677905869,54.858806063316266],[-121.74991379941643,54.86102091543892],[-121.74498174970944,54.86598432204006],[-121.73939545115823,54.86837610569539],[-121.73756941623574,54.870565665837304],[-121.73818022101545,54.871304772592616],[-121.74014951317744,54.87460378015734],[-121.74411687391168,54.87914742950481],[-121.7436006204241,54.882127195001516],[-121.73954817028591,54.882561633345134],[-121.73516526238808,54.88197035223367],[-121.72961488306196,54.88161670617527],[-121.72845237848814,54.88299447804662],[-121.72892450738286,54.88579305707134],[-121.72807912255675,54.88757670940906],[-121.72445979391368,54.88582681603909],[-121.7192789538707,54.884785482826516],[-121.71618199960972,54.88372658450288],[-121.71207633362746,54.881699124606754],[-121.70523275115126,54.88158659863891],[-121.6973774560664,54.88038829854456],[-121.69367033283324,54.878598469127475],[-121.6880961376177,54.873323666234334],[-121.68451663560765,54.86843254638076],[-121.67428358295555,54.86256299004557],[-121.67228275702064,54.861667013332664],[-121.66677289396398,54.85861922541909],[-121.66009212796669,54.85701985437377],[-121.64758270885727,54.855223334421055],[-121.64470790477196,54.85096606054478],[-121.64392933535899,54.846854642217345],[-121.64023978101736,54.84538675816523],[-121.62709206383103,54.84171640937676],[-121.61792650125426,54.83927239057166],[-121.61221707479545,54.83581987281073],[-121.61162413283152,54.83566410869363],[-121.6074062023638,54.83259657923633],[-121.60043816255829,54.831109155897806],[-121.59934207382057,54.83083661596226],[-121.593984671899,54.83007058030975],[-121.589185836769,54.82776248475538],[-121.58329854157728,54.82540616618994],[-121.57794218129047,54.82435219820211],[-121.57316420121276,54.823013595795004],[-121.56741317647885,54.82242967269378],[-121.56533947578777,54.82238192238016],[-121.55917888121866,54.82197135551893],[-121.55529332363035,54.82034106989202],[-121.551104872828,54.81819702923392],[-121.5489907441215,54.81666643562093],[-121.54881977213465,54.81266577380216],[-121.54673173766699,54.80719544114422],[-121.54549430168247,54.805086087444124],[-121.53980731361732,54.801810156642865],[-121.53036454795651,54.799878675265205],[-121.52303576397922,54.79946860598798],[-121.5227879714278,54.796614014918575],[-121.52091036665733,54.79182398526183],[-121.51964655277438,54.78713705751945],[-121.52075950803562,54.78341639598239],[-121.52306998660187,54.780304855435865],[-121.52402134658654,54.77847235580581],[-121.52468481601221,54.77670118743832],[-121.52589819961516,54.772912346512726],[-121.52563521136832,54.76976995412321],[-121.52264907993091,54.768817448179384],[-121.51786469337318,54.7663361282091],[-121.5144878721081,54.76567437010491],[-121.51071779855816,54.76489941180353],[-121.50634610174063,54.76321364632667],[-121.50214206632155,54.760438681610665],[-121.4995404648251,54.75827879640522],[-121.49525299532108,54.75682907463329],[-121.49335252793433,54.755529578976436],[-121.49459782456611,54.752882185108646],[-121.49639088236414,54.74880959124083],[-121.49641816162175,54.74504032571313],[-121.49445547571786,54.740363254121334],[-121.49033715655509,54.73628028426734],[-121.48555328210581,54.73356410862824],[-121.48015644503126,54.73005314978585],[-121.47804766655665,54.728117296413224],[-121.47523333131099,54.725796326718324],[-121.4764807698495,54.7235531437866],[-121.48017237276535,54.72050223984713],[-121.47981527253255,54.71655717913536],[-121.47843304578328,54.71159587176232],[-121.4805324255019,54.70757069217826],[-121.48323183531343,54.70361245618492],[-121.48650239621102,54.69913656714204],[-121.48829455413849,54.69477683429717],[-121.49275423047403,54.691089619230375],[-121.49959794348128,54.687956531466014],[-121.50698291539928,54.68739232950594],[-121.5149488949968,54.686076932065866],[-121.51786966245103,54.68388562714479],[-121.51699565968698,54.679087062085216],[-121.51687192122773,54.678229752426944],[-121.51805779022426,54.67325510545219],[-121.52138287274468,54.671626105212695],[-121.5213176067331,54.66853574218635],[-121.5232576708849,54.66703565544397],[-121.52243637673254,54.665156476785825],[-121.52280517095498,54.66350027909894],[-121.5245215733218,54.66091481577892],[-121.52269519121624,54.65840648425422],[-121.5223055633546,54.65841020960503],[-121.51910434947092,54.65580671352806],[-121.51994902944168,54.6535036361802],[-121.52574995144299,54.65284474002112],[-121.52254678401616,54.65040283340931],[-121.51866985192058,54.648429919186306],[-121.51330782629968,54.64651921669597],[-121.50744788495578,54.643764144661105],[-121.50734259465275,54.64358972572807],[-121.50594866626746,54.642398566155094],[-121.50552073250245,54.6411979315075],[-121.50609830982364,54.640052121847326],[-121.50292824516123,54.639163831486954],[-121.50004941680035,54.63803479538611],[-121.49990986116197,54.63563284109226],[-121.49867371559897,54.633298330386154],[-121.49490575304053,54.6314901477751],[-121.49073591893337,54.629801702082354],[-121.48962314016507,54.628046140204056],[-121.49096604837085,54.62603086579769],[-121.49467934355945,54.62452469280353],[-121.49574859762878,54.623998462967016],[-121.494234627266,54.62235386928851],[-121.49158459911251,54.617336987529974],[-121.48865876533446,54.61341403431356],[-121.4832863907362,54.610244622918884],[-121.47874364336323,54.60969995777985],[-121.470689489021,54.610389826985624],[-121.46625468138951,54.61041424881777],[-121.46045256765846,54.610567379437384],[-121.45722047048355,54.6111028695314],[-121.45395227505747,54.610146707178814],[-121.45253695228217,54.60861290462058],[-121.45484517721961,54.60534109174046],[-121.45676827716976,54.60287189028534],[-121.453863152934,54.59991825541268],[-121.45026657813297,54.59633735839167],[-121.4487418429759,54.59411714120314],[-121.44804049392187,54.59315741841988],[-121.44516234971535,54.59150624892358],[-121.441469478567,54.58907953749869],[-121.44122114805612,54.585874326340466],[-121.44342413469509,54.58242824198346],[-121.44417420076513,54.58002329012981],[-121.44214565827073,54.576895427518586],[-121.44104493298329,54.576037475196756],[-121.4378737756991,54.574518796805094],[-121.43301986650424,54.57248835126195],[-121.43034527083687,54.57153562042735],[-121.42965061352578,54.57107875101829],[-121.42932469825303,54.57107555308402],[-121.43021974478421,54.569810612281806],[-121.43048688854135,54.56978355827803],[-121.43086757645884,54.56974840026767],[-121.43123317373006,54.56967452306116],[-121.43158373868852,54.569578761861216],[-121.43192057998357,54.569466776626996],[-121.43222317373954,54.56933106804632],[-121.43245328127793,54.56914888713448],[-121.43267022414,54.56896284781005],[-121.43287038449425,54.56877057069855],[-121.43216961658136,54.5680385500428],[-121.39999633553415,54.5343782157326],[-121.39873808823025,54.53305824845819],[-121.39899275592931,54.53288154503205],[-121.39915609535791,54.53265426978045],[-121.39925489615108,54.53251771011328],[-121.399429196761,54.53229645833522],[-121.39958424142243,54.53200490339084],[-121.39963653021631,54.531816092522206],[-121.39975686542235,54.53164330953948],[-121.39987795397117,54.53146382145195],[-121.39998574807038,54.53136800009228],[-121.400032985215,54.531310299786476],[-121.4000714881251,54.53126124857862],[-121.4001806641273,54.53115313457466],[-121.40021750581104,54.53101536474483],[-121.40023163227343,54.53090704020602],[-121.40022505516454,54.5308102810082],[-121.40023315364208,54.53061756245029],[-121.40029236521696,54.530418911923306],[-121.4003581535304,54.53031702056128],[-121.40048865791125,54.53019175341099],[-121.40058765323508,54.53003612244586],[-121.40067540013017,54.529911490520306],[-121.40084605091836,54.52977426711486],[-121.40108074057531,54.529602419717044],[-121.40132848164077,54.52940076287476],[-121.40149102311256,54.52926660027368],[-121.4015846234888,54.5292106439741],[-121.40170332428856,54.52910400953544],[-121.40188417784209,54.528979513295724],[-121.40201621272271,54.52880604663983],[-121.40203041224349,54.528679769178794],[-121.40210071708479,54.52853764686477],[-121.40221983870696,54.52844449459528],[-121.40237838391452,54.52831130293356],[-121.40267233715456,54.52819891602377],[-121.40293666479225,54.52803940281738],[-121.40311730616607,54.527933974918305],[-121.40332007717394,54.527821523550564],[-121.40341530478797,54.527751038323906],[-121.40338663784117,54.52767813765023],[-121.40341408759397,54.527502980603856],[-121.40345834384536,54.527350900194605],[-121.40351624867708,54.527198210892564],[-121.4035638655551,54.527050745766275],[-121.40360417910539,54.52691647265835],[-121.40365616153314,54.526764682802735],[-121.40378006524269,54.5266806869799],[-121.40388494877291,54.526610564659926],[-121.40404762617453,54.5264404932351],[-121.40418867502287,54.526272974943694],[-121.40419683157387,54.52606230330617],[-121.40424607735208,54.525900310358686],[-121.4043119261419,54.52578046411477],[-121.40437852806079,54.525653912817596],[-121.40453033280495,54.525511487701834],[-121.40467192694828,54.52535633400595],[-121.40482255119447,54.525207130860814],[-121.40501449556251,54.52505274789967],[-121.40512567983994,54.524891961452155],[-121.40529838086317,54.52471889898838],[-121.40541705897303,54.524612260876545],[-121.40555269727366,54.52449279363264],[-121.40576902358669,54.52431127078692],[-121.40590064259301,54.52422756328812],[-121.40603028058233,54.52412694783591],[-121.40612434440145,54.52401489492992],[-121.40621218707528,54.52388914141864],[-121.40633030945192,54.52377013723675],[-121.40644910764837,54.523662380603916],[-121.40662964411996,54.5235749001475],[-121.40682753797138,54.52352286079104],[-121.40700002413193,54.52336886609241],[-121.40710563512721,54.52306759092593],[-121.4071947056725,54.522879038550926],[-121.40725135742775,54.5227891455225],[-121.40732677463691,54.522687613309465],[-121.40735038539316,54.522615556217126],[-121.40739398967959,54.522555472781995],[-121.40749349158489,54.522412201222586],[-121.40754071211013,54.52226808696251],[-121.40755835665422,54.522093683363025],[-121.4075221881203,54.521966635104796],[-121.40743373967716,54.52183874417093],[-121.40724301783983,54.52165426469491],[-121.40713382491509,54.521521104886546],[-121.40701592942766,54.521361806704846],[-121.40677138322914,54.521086647496965],[-121.40656255798218,54.520873430585],[-121.40631149083663,54.520656380732405],[-121.40610121264886,54.52047340828334],[-121.405944664449,54.520347444535375],[-121.40590759557259,54.52026300620595],[-121.40586508830552,54.52012337437323],[-121.40581264417523,54.52002040231394],[-121.40579609815168,54.51990867994322],[-121.40578879277085,54.51969742699596],[-121.4057741175969,54.51943090791533],[-121.40580975155378,54.51928635850482],[-121.40590771657229,54.51919128613534],[-121.40610546464201,54.519140365417414],[-121.40639590419103,54.51904130685477],[-121.40672620616056,54.5188809016423],[-121.40706064675537,54.51868361781961],[-121.40739315263315,54.518486260476884],[-121.40810064418206,54.51817955105798],[-121.40865784499367,54.517950234900475],[-121.40946459948258,54.51777854822166],[-121.41030774675889,54.517766456646264],[-121.41081100345195,54.51767201580136],[-121.41118392160854,54.517563700139625],[-121.41155916873775,54.51741731541994],[-121.41178418290626,54.517192343872],[-121.41183268697246,54.517053887930786],[-121.41177922891299,54.51695985847472],[-121.4116656971882,54.516882650729556],[-121.41153011708322,54.51679451486157],[-121.41137228902012,54.51671452102568],[-121.41120851481338,54.51658380374677],[-121.4110967404481,54.51649095031332],[-121.41095943148024,54.51638367103699],[-121.41085638685936,54.51628216746813],[-121.41070443101952,54.51618443768176],[-121.41050459167481,54.51604675348499],[-121.41037501126851,54.515939763748634],[-121.41027512856814,54.515775533995196],[-121.41020960915998,54.51556433955208],[-121.41005645083533,54.515235386049575],[-121.40999805738366,54.51508169240144],[-121.40989446651378,54.5149678228317],[-121.40982674336244,54.5147935785507],[-121.4098561379429,54.51454891641179],[-121.41012907790324,54.51438073750655],[-121.4102251389183,54.51421601318002],[-121.41024382070972,54.51396309302022],[-121.41013385684069,54.51352578436305],[-121.40985615442563,54.513304373212165],[-121.40949962508009,54.513111421624686],[-121.40922135184717,54.51291243178548],[-121.4090373839434,54.51282359632331],[-121.40889146413791,54.51275863488068],[-121.4087686954225,54.512642921042875],[-121.40864532612395,54.512498006680275],[-121.40851044391614,54.51242111507945],[-121.40835798270115,54.51227622919223],[-121.40815596194498,54.51217549145728],[-121.40777050920555,54.511946658026176],[-121.40747022971165,54.511788358631435],[-121.40731716945494,54.51170068214411],[-121.40707537954299,54.51155692498586],[-121.40684751327223,54.51137553513419],[-121.406615682592,54.51124674030997],[-121.40647102708644,54.51117060089123],[-121.40631742050199,54.51107055795083],[-121.40607531005676,54.51094698654644],[-121.40582417292057,54.510817464003864],[-121.40567884432032,54.51073007595253],[-121.40556524433396,54.510619192025],[-121.40546054748211,54.51051537618067],[-121.40526885439718,54.51037462131569],[-121.4050486209597,54.51024625930286],[-121.40482525075453,54.510145834533006],[-121.40462126997562,54.5100281830615],[-121.40439838559665,54.509871664301826],[-121.40419589560929,54.50968897886594],[-121.40407475168945,54.50959352065655],[-121.4038846220939,54.50945618877001],[-121.40371685302529,54.50939600943449],[-121.40355380797713,54.50927652946812],[-121.40331284654836,54.50914289502143],[-121.40316610047405,54.50905096128076],[-121.4030448827439,54.50897345477569],[-121.40289477810815,54.50887690535349],[-121.40276057737032,54.50875963188681],[-121.40258109955094,54.508562098095766],[-121.40223508564331,54.50832799558874],[-121.40201490420954,54.50816484010659],[-121.40176321589675,54.50805773192005],[-121.40156181333691,54.50793456048347],[-121.40133127488703,54.50779458054946],[-121.40120028384538,54.50771782622491],[-121.40108959359576,54.5075812355345],[-121.400985967456,54.50748531102781],[-121.40081483725837,54.50736888907713],[-121.40068245273758,54.50725280350913],[-121.40056109194929,54.507073165607935],[-121.40042226100957,54.50685920271957],[-121.4002918297526,54.50665677824405],[-121.40010267220914,54.50644204195395],[-121.40001404218347,54.50636800357063],[-121.39995030917758,54.50631398069352],[-121.3997521875986,54.506161751208815],[-121.39970497458097,54.50602979400133],[-121.39959054525873,54.505840315756764],[-121.39941137137696,54.505743788662095],[-121.39916337103016,54.50551785635881],[-121.39899036917016,54.50541819433047],[-121.39885664788376,54.5052796112752],[-121.39876694858185,54.50509443028977],[-121.39869199979258,54.50498499460244],[-121.39852936399613,54.50486215535676],[-121.39839506321886,54.50474599452807],[-121.39826085421045,54.50466350403497],[-121.39808977836833,54.50451229023515],[-121.39789867646886,54.504332265705024],[-121.39771473649827,54.504278201086684],[-121.39748558905802,54.50421233255116],[-121.3972765046484,54.50414048619149],[-121.39707253975484,54.50405761001204],[-121.39682088959272,54.50395049158812],[-121.39663412431186,54.50380092859565],[-121.39635290597369,54.503560270681405],[-121.39620319770064,54.50335711399687],[-121.39606503082653,54.50313755854952],[-121.39588556538773,54.50292317951488],[-121.39573452296014,54.50274914996068],[-121.39548635385998,54.502542280341345],[-121.39533393829538,54.502432165999906],[-121.39520296169245,54.50225215869529],[-121.39509066440307,54.50207846667545],[-121.39493065462001,54.50196694314893],[-121.39473693718556,54.50181038104365],[-121.39456467244382,54.50168717246571],[-121.39435488342201,54.50153561480952],[-121.39416385563148,54.5013724196132],[-121.39394369998675,54.50119241417397],[-121.3937424368349,54.50105127698231],[-121.39346524621327,54.50086126371922],[-121.3932424977506,54.500721559666836],[-121.39300053122551,54.50061479744417],[-121.39286689318203,54.50054466625398],[-121.39267206168967,54.50044978156152],[-121.39251844629496,54.50036767388043],[-121.39239588677792,54.50025082589767],[-121.39227387107015,54.50009471980376],[-121.39221405903443,54.500006050512035],[-121.3920967438527,54.4998254321957],[-121.39179211798854,54.49956928927456],[-121.39160681086905,54.499269391512925],[-121.39152693376587,54.499031828523556],[-121.39134277006418,54.49887674271695],[-121.39116901749827,54.4987669392253],[-121.3909851930936,54.498643288408694],[-121.39075188763105,54.498442579389724],[-121.39059488257539,54.49828739502625],[-121.34071713552498,54.49097497761964],[-121.1997453659312,54.45472236688214],[-121.17455705119326,54.44822047863594],[-121.1615493918998,54.40024351381978],[-121.00000592726954,54.408470969820414],[-120.89956806335617,54.41347569733991],[-120.90019360695696,54.43170796873094],[-120.90019704293914,54.431820391586676],[-120.9355516753243,54.44937899451148],[-120.93592640657451,54.44940353929933],[-120.9362080419435,54.44950730021862],[-120.93651978474274,54.449727953443094],[-120.93672293573005,54.44987111836213],[-120.93692936747449,54.45008178382292],[-120.93710827670118,54.45026436026727],[-120.93721808798585,54.45041038528353],[-120.93731772189885,54.45052904176051],[-120.93745797043375,54.45064826151488],[-120.93765603728279,54.45078559974377],[-120.93783884028561,54.450874025964126],[-120.93799837670032,54.45096260881758],[-120.93815350669209,54.45105549950166],[-120.93834483436292,54.45118469748487],[-120.93859067917155,54.4513273853035],[-120.93877265329839,54.45143823039271],[-120.93892034800795,54.451544284272195],[-120.93904863067401,54.45165065506323],[-120.9392071967126,54.451778491807865],[-120.93936012414147,54.45188925317631],[-120.93951744989046,54.45202714264343],[-120.93960193613471,54.4521900778844],[-120.93972263172799,54.452357883765096],[-120.93975177815479,54.45249831316238],[-120.93990772279993,54.45266309044956],[-120.94008116366376,54.45279603392683],[-120.94032193603348,54.45291717502952],[-120.94049813925476,54.45302777760103],[-120.9406803977201,54.45315210397212],[-120.94083251059948,54.45325384737838],[-120.94093902298629,54.45345811372924],[-120.94108423431372,54.45363142580206],[-120.94117066597705,54.45376300350181],[-120.94125349836307,54.45397077811678],[-120.94132296407149,54.45422403051165],[-120.94136794803305,54.454377466264226],[-120.94136843467737,54.454624489140954],[-120.94138215102531,54.45482715118024],[-120.941395571206,54.45511063815501],[-120.94158612013145,54.45516794215859],[-120.94159100733066,54.45544209320282],[-120.94163076252576,54.45559082090456],[-120.9417062725437,54.45592066973383],[-120.94169769048115,54.4560999520084],[-120.94165618358876,54.4563418648441],[-120.94158700630155,54.45655680705146],[-120.94147156293965,54.45676983032292],[-120.94133891904531,54.456933862325805],[-120.94133130108139,54.457105325433346],[-120.94135589870692,54.45729833402893],[-120.94143115396113,54.45755182608568],[-120.94149321187525,54.45772393350261],[-120.94156946266756,54.457859579122385],[-120.94167516675464,54.45805482859124],[-120.94179162248238,54.45821010523128],[-120.94200432338795,54.458401932439216],[-120.94219900871447,54.45850431583286],[-120.94234013020629,54.45860110954716],[-120.94267978877285,54.45883188194009],[-120.94286921811708,54.459055301760436],[-120.94307641738811,54.459260371415255],[-120.94335097225063,54.45939076424711],[-120.94370525426308,54.45955028440619],[-120.94394856273085,54.459635593727754],[-120.94449411348674,54.459846826476486],[-120.94494327836547,54.46003834368845],[-120.94527692208698,54.4601610759647],[-120.94570117166872,54.46033471656825],[-120.9459710613344,54.4604559276662],[-120.94625445238752,54.460546260980436],[-120.94665117192152,54.46069181171899],[-120.94699639361112,54.4608150185194],[-120.9471999209859,54.46087734086387],[-120.94751044653601,54.46096767232455],[-120.94778117429018,54.46106645911279],[-120.94810878288588,54.46111258728455],[-120.94846214178807,54.4611856037655],[-120.94876648143058,54.46120045273706],[-120.94928743191923,54.46134440238584],[-120.94952484194187,54.46141485994287],[-120.94991814046786,54.46152545299551],[-120.95021118744144,54.461616176219316],[-120.95054692661209,54.4617064205332],[-120.95078475413254,54.46177352456205],[-120.95104516723114,54.46184605386781],[-120.95140514777749,54.46192831724638],[-120.9516643235827,54.461995180302445],[-120.95186125368306,54.46204823948499],[-120.95214659660488,54.4621072025711],[-120.95247008754849,54.462202548014105],[-120.9527869695252,54.46228863727606],[-120.95314089848658,54.462388608426515],[-120.95347678754115,54.46246200948726],[-120.95371820689188,54.462578655871155],[-120.9539223068107,54.46269937153301],[-120.95427844802676,54.462844339566665],[-120.95465359586716,54.46297661991804],[-120.95491967105377,54.463066215379946],[-120.95537607642949,54.46319960857596],[-120.95563540574832,54.463281064324434],[-120.95600325947811,54.46337823418754],[-120.95574407786486,54.463421407473085],[-120.95302057201812,54.46386787193745],[-120.94516960176455,54.46291406276704],[-120.94093307463572,54.460187567859094],[-120.93866053187156,54.45624902037635],[-120.93609087894552,54.452711243289194],[-120.92932209545648,54.45129824897199],[-120.926190593993,54.453305725736776],[-120.92119924629105,54.454059041637166],[-120.91629978678006,54.454070473548796],[-120.91228905881559,54.45653499541063],[-120.9102410725026,54.45779687309463],[-120.90189693894575,54.45832863193626],[-120.88778151654341,54.45864500691473],[-120.88063092353109,54.4605367942465],[-120.87652171964201,54.463517106998026],[-120.87684181866607,54.467402004616275],[-120.87772537787775,54.47112192282083],[-120.87540424065163,54.47665646731354],[-120.87442950453362,54.47923841333327],[-120.87444036868105,54.48398162292349],[-120.87544570262982,54.48809290170471],[-120.87221457954334,54.491469349777695],[-120.85945553860012,54.49040269645005],[-120.85454729691445,54.48995334992271],[-120.84855648377993,54.48997012977275],[-120.83993382013554,54.49129465947738],[-120.83629630385018,54.492209783085734],[-120.82845989068521,54.49393509712378],[-120.82647424918837,54.494222622957246],[-120.82632627484043,54.49402771005644],[-120.82535997024647,54.493371419542605],[-120.82484247984524,54.49283183907356],[-120.82422613143734,54.49239922772578],[-120.82387944036037,54.49207349203066],[-120.82344708746,54.49164306403991],[-120.822470601562,54.49114463886773],[-120.82176249729162,54.49076314119072],[-120.82132489064222,54.49043578528824],[-120.82089244046375,54.4900064650245],[-120.82044469912782,54.48983587730236],[-120.81992145925496,54.4894038228318],[-120.81965977274936,54.48918835318101],[-120.8191513427457,54.488486310738345],[-120.8182653619442,54.48799393396733],[-120.81682744346209,54.48764878780993],[-120.81601426292266,54.48753115693826],[-120.81539191831955,54.487254318726016],[-120.81422186547185,54.48696880273259],[-120.81342059852528,54.48663494398085],[-120.81235872657352,54.486031739184355],[-120.81229912743218,54.485446429949775],[-120.81232752720318,54.48491651393554],[-120.81235592623993,54.48438659786911],[-120.81238432454245,54.483856681750666],[-120.81213992355065,54.48332190587008],[-120.8118056081921,54.482731653819975],[-120.81146441114596,54.48230280303687],[-120.81113204246259,54.481712631051785],[-120.81006946018887,54.48116214444988],[-120.80899600683895,54.48077400347394],[-120.80756963270842,54.48021812200096],[-120.8064997410336,54.47977171827254],[-120.80533736256672,54.479382002930855],[-120.80481203396884,54.4789991889455],[-120.80328169362718,54.47865217537705],[-120.80256260366512,54.478482308179395],[-120.80181881194855,54.47791163327585],[-120.80013427464203,54.47774104035984],[-120.8000007873102,54.47773872015822],[-120.79962360845833,54.477731628132915],[-120.79880725764636,54.477717043753515],[-120.7982504145703,54.47756754063834],[-120.797627986446,54.477201887281375],[-120.79699468272106,54.47698286658546],[-120.79640153799514,54.476783521482204],[-120.795770601706,54.476561226133526],[-120.79514210348265,54.476243584410184],[-120.7947960039189,54.47593124982738],[-120.79454175152642,54.47541509537043],[-120.79455225948671,54.47522577280445],[-120.79442470925017,54.4746128391885],[-120.7942023608222,54.474257497183984],[-120.79392039602473,54.47350210202407],[-120.79343687600748,54.47279200352736],[-120.79295714847925,54.47196079021662],[-120.79258459834386,54.471414876029925],[-120.79268594484796,54.470679205882846],[-120.7929111277783,54.47018912390076],[-120.7935074213669,54.469616065401176],[-120.7947128206718,54.46888708638088],[-120.79605619156905,54.46862774267105],[-120.79698573579876,54.468528153497],[-120.79792383720824,54.468056118877534],[-120.79887463478181,54.46768231167257],[-120.79952299566102,54.46744607305894],[-120.80000052299758,54.4672575710521],[-120.80047433194562,54.46706778596358],[-120.80053165445422,54.466799610616384],[-120.80051411728729,54.466327245361015],[-120.80076610754081,54.465594627119806],[-120.80115722380175,54.464590582519264],[-120.80129700219368,54.4635814394974],[-120.80232145564806,54.46261112280468],[-120.80313941229738,54.46236637570942],[-120.8046762109905,54.46135948123234],[-120.80574055758014,54.460440247981936],[-120.80588610041893,54.459323552049376],[-120.80522862372385,54.45815131870662],[-120.80488494504634,54.45745395832516],[-120.8048373204558,54.45721836717035],[-120.80471726942903,54.45663720717707],[-120.80494247456544,54.45558004963248],[-120.80477718546453,54.45471399224457],[-120.80511513278176,54.45392888710465],[-120.80563796259678,54.452877670511356],[-120.80656844552303,54.452095344207116],[-120.80680937011435,54.45155538667942],[-120.80687814996755,54.450249020470196],[-120.80674587022551,54.449580878365886],[-120.80569901090608,54.448577332259525],[-120.80462564540356,54.447263848345486],[-120.80522064767993,54.4456430329813],[-120.80468463415272,54.44459947813391],[-120.80387781349455,54.443843068921616],[-120.80379856371897,54.44295596885949],[-120.80365952793063,54.442387469588944],[-120.80373530066987,54.441759629396415],[-120.80405205226566,54.44137000938874],[-120.80390587762054,54.440949428725276],[-120.80392608102791,54.44057636406567],[-120.80419168037626,54.44036085902647],[-120.80451793466614,54.43977401302223],[-120.80501726378674,54.43916647006771],[-120.80545995026745,54.43880691834485],[-120.80614841725746,54.43857125064265],[-120.80679998285753,54.43825989603651],[-120.80711520708623,54.437897154696216],[-120.80780633888573,54.43764025715652],[-120.80783148373126,54.43718206356599],[-120.80776275338131,54.43688381409777],[-120.80731741300767,54.436485303904],[-120.80675189598695,54.43598061067683],[-120.80668895001983,54.435606249499344],[-120.80654321918387,54.4351362832219],[-120.80653663492585,54.434470123872586],[-120.80635461745503,54.43395032619857],[-120.80632160317799,54.43375241209209],[-120.80618508226512,54.43313349163534],[-120.80609479329524,54.432440183810826],[-120.8056666444457,54.43175381184493],[-120.80561175342301,54.431209111593326],[-120.80521255435899,54.430783360964604],[-120.80467660475938,54.43050449377278],[-120.80431144315301,54.43022279898706],[-120.80412607358969,54.42972980233971],[-120.80393889548122,54.429281644172775],[-120.8035716820274,54.4290009818523],[-120.80296493109427,54.42848664549716],[-120.80296078659421,54.42777117891068],[-120.8027859865034,54.427103456514665],[-120.80243515529715,54.42652591837647],[-120.80216003446748,54.426130150109024],[-120.80188948335989,54.42565260377894],[-120.80160870176555,54.42537786612184],[-120.80147452030118,54.42471075007779],[-120.80162647114695,54.42424561177979],[-120.8015903855429,54.423354730417174],[-120.80165478547377,54.42293863368853],[-120.80166219244929,54.422681804075374],[-120.80127158147728,54.42231142346287],[-120.80095559545116,54.4220396725828],[-120.80060592175032,54.4216519465686],[-120.8002898035009,54.42138131079404],[-120.80000181676407,54.4210568520556],[-120.79993892449752,54.42098791633411],[-120.79941244167783,54.420834065550416],[-120.79872307608875,54.42060588461638],[-120.79843710859016,54.4205554978226],[-120.79803280863392,54.42040011917413],[-120.79779264727786,54.420278697171064],[-120.79763646300577,54.42010583761776],[-120.79753088076075,54.419793651551466],[-120.7974654325691,54.419455106230714],[-120.79715710355235,54.41906239575825],[-120.79683864052323,54.41884105714047],[-120.7966462353007,54.41857232429802],[-120.7966637401264,54.41823619789051],[-120.79655725980531,54.41794643027016],[-120.79641396213128,54.41753493822185],[-120.79615044562438,54.417048690298294],[-120.79604397200517,54.416758922167354],[-120.79573314638074,54.41641663098349],[-120.79517504629403,54.41602447282573],[-120.79477947256026,54.41572459747523],[-120.794257289888,54.41547657932362],[-120.79402103815372,54.41527895678512],[-120.7937484263273,54.414986577691074],[-120.7933436314599,54.41483565077326],[-120.79309794267068,54.41480381464866],[-120.79293553548457,54.414756448064296],[-120.79256619270514,54.41472269428164],[-120.79223969734889,54.414671681376106],[-120.79179102883272,54.414591863191006],[-120.79137918677026,54.41455741170194],[-120.7910489423387,54.41455115202447],[-120.79076119968799,54.414545585925055],[-120.79064129784857,54.41449891074233],[-120.79056223797379,54.41442029428484],[-120.7904050691421,54.414301281169045],[-120.79024236503655,54.41422582503938],[-120.78987678235694,54.41414730673134],[-120.78946869990996,54.41406809241997],[-120.78913994188089,54.414034940819],[-120.78877288059638,54.41398330595517],[-120.78812003735025,54.413849822450274],[-120.78799638541761,54.4138479009837],[-120.78742138394529,54.41378736524994],[-120.78713442043458,54.41376048810425],[-120.78668499827192,54.41370195362785],[-120.78631418610463,54.41369506764368],[-120.78618813478016,54.41374245039991],[-120.78573573060343,54.41370736620272],[-120.7854870853574,54.4137292881776],[-120.78578770577205,54.41354227473807],[-120.786001980573,54.41337963821073],[-120.78613614681706,54.41316191814186],[-120.78619729307005,54.412802952790045],[-120.78625589641014,54.41249441029575],[-120.78630698522886,54.41227538031198],[-120.78632275574064,54.412014413358705],[-120.78657710450587,54.41187145817822],[-120.78704721190519,54.41156929698431],[-120.78826368802056,54.411182285267984],[-120.78868930644644,54.410925377938064],[-120.78907540334136,54.41064432020729],[-120.78872127043796,54.41032373509258],[-120.7885833144011,54.40984059013618],[-120.7884410394312,54.40940666874749],[-120.78837281380811,54.40916681255471],[-120.78826928465368,54.408778342572624],[-120.78865776091209,54.40844797991041],[-120.78916732764785,54.408169959408866],[-120.78950413958573,54.40803277308512],[-120.78957095368949,54.40755277397298],[-120.78917733061589,54.40720804122618],[-120.78898263382945,54.40698860190204],[-120.78859080419667,54.40664506643886],[-120.78835899842213,54.40635217083772],[-120.7879400027419,54.40572000126311],[-120.78775582475551,54.405280915887715],[-120.78757824534279,54.40477473682191],[-120.78739705739515,54.40431219697758],[-120.78709499714127,54.40378047629415],[-120.78667181770741,54.403242446995826],[-120.78652041620197,54.403002396930674],[-120.78612686233814,54.402657654051424],[-120.78560354132745,54.402405048474975],[-120.78503726219385,54.40220113274886],[-120.78455001298745,54.402075834970795],[-120.78382196642043,54.40182006813172],[-120.78333967286063,54.401595036432006],[-120.78239444466101,54.40155566675346],[-120.78161536256448,54.40144255776124],[-120.7809226165909,54.401335389466226],[-120.7800328916829,54.40098171168007],[-120.77943226792355,54.40068309194985],[-120.77883406088911,54.40033516321601],[-120.77855803441166,54.400086388695],[-120.77850311780894,54.40000093663459],[-120.77840669195521,54.399846328421155],[-120.77826378147626,54.3994336968562],[-120.77807399751183,54.399115627750106],[-120.77780011741424,54.39885009885619],[-120.77770288842105,54.39836755700631],[-120.77767679276074,54.39810142411551],[-120.7775293613677,54.39778516993781],[-120.7775328332277,54.39771232773477],[-120.7774168102725,54.39754452547751],[-120.77726045533534,54.39741991086386],[-120.77714018364011,54.397346253031046],[-120.77689886325217,54.39722023949976],[-120.77653678872464,54.39706995562906],[-120.7763761029336,54.39699456332977],[-120.77577030686842,54.39676756813328],[-120.77528087358357,54.39666010261627],[-120.77471231217773,54.396505444745785],[-120.77446796041896,54.39647923777872],[-120.77335691929468,54.39643604571228],[-120.77273828722157,54.39644654794257],[-120.77252923233537,54.39649259784538],[-120.77220013747076,54.396508789065926],[-120.77136818361852,54.39665947785317],[-120.77090965219239,54.39674983704141],[-120.77029087233305,54.396761443691965],[-120.76942069162058,54.39681727312783],[-120.7687280554669,54.396710035499915],[-120.76798481949456,54.39669607054946],[-120.76749248922152,54.39668726817608],[-120.76699823460194,54.39667838110811],[-120.76642108174788,54.3966670520697],[-120.76583801333938,54.396777867990856],[-120.76504231078606,54.39702327834675],[-120.76470814645886,54.397094256529286],[-120.764039811859,54.397296849660016],[-120.76353934422207,54.39738201005855],[-120.76320331832211,54.39749782257443],[-120.76294426810871,54.39770790431741],[-120.76219515662353,54.39786097284103],[-120.76190318204576,54.39790456162602],[-120.76182206331312,54.397903318142966],[-120.76120083450502,54.397964184398504],[-120.76070413627491,54.3980045775342],[-120.759871115222,54.39813268585677],[-120.75908342817728,54.39823915763406],[-120.758590658308,54.39820335003978],[-120.75813887158472,54.39819513274236],[-120.75772964947305,54.39814158171259],[-120.75719196402022,54.39815436812219],[-120.75682902184857,54.39802644497038],[-120.75592782795219,54.39791576883419],[-120.75522612599126,54.397924851914496],[-120.7553429917029,54.398070256091074],[-120.75564983118964,54.39848549281508],[-120.75563185634353,54.398822731328664],[-120.75561739204,54.39908712826112],[-120.75551988149165,54.39935019461801],[-120.7554310310808,54.39946989430934],[-120.75525970503725,54.39958379594221],[-120.75496326624307,54.39972262879998],[-120.75495989705414,54.39979435351662],[-120.7549497299101,54.39996460645432],[-120.75493553481749,54.39999992997492],[-120.75485657446592,54.40017844957814],[-120.7546035491474,54.40029556935643],[-120.75429937044561,54.40055534792342],[-120.75416808581934,54.400719260696825],[-120.75395576024229,54.40083588660064],[-120.75374329055946,54.400953628943526],[-120.75360763938711,54.40116676370922],[-120.75342612738295,54.40145091550823],[-120.7531712229526,54.40161287055915],[-120.7531161786708,54.401876642418934],[-120.75302295194217,54.402045562876744],[-120.75284486231381,54.402302910322575],[-120.75245952997615,54.4025614346994],[-120.7522833028021,54.40277394305446],[-120.7516846840859,54.40317150665305],[-120.75125102954173,54.403550349125226],[-120.75085985701182,54.40392989839759],[-120.75079762317472,54.404310148886864],[-120.75061119360076,54.404692907197045],[-120.7502273321012,54.40492453808176],[-120.74997088600696,54.40511337266218],[-120.74966871028026,54.405372105619605],[-120.74927464501081,54.40577398578916],[-120.74880826629663,54.40603012978352],[-120.74830075492032,54.40625979325029],[-120.74787056177094,54.406565782244726],[-120.74739439438495,54.406988822510634],[-120.74704861507439,54.40727037518178],[-120.74666240547518,54.4075501832696],[-120.74623735360349,54.407785641883414],[-120.74552193553797,54.40808156659126],[-120.74431817784489,54.40823064350484],[-120.74386450182237,54.40822117349695],[-120.74352076050675,54.408229921942954],[-120.74332860515078,54.408233981853414],[-120.74270719269033,54.40829475381555],[-120.74204342719392,54.40835369439318],[-120.74117676818975,54.40836456729881],[-120.74076695619043,54.40833002810157],[-120.74010944910981,54.40829489806161],[-120.73952954151166,54.40833386380131],[-120.73874312107625,54.40841331786908],[-120.73803372028271,54.40857133430248],[-120.73724483399906,54.4087000838507],[-120.73645360911794,54.40880177578505],[-120.73603381384754,54.40896555790937],[-120.73545214946043,54.40904822541991],[-120.73503194002085,54.40918503476731],[-120.73453276212973,54.40927350954704],[-120.7341671303053,54.40936214098005],[-120.73344606182671,54.409716150916466],[-120.7325208453405,54.40953464638395],[-120.72399692992065,54.40633576220813],[-120.71704048516555,54.4035995294073],[-120.70872473867807,54.40132488472791],[-120.70676387192492,54.401042016522716],[-120.70108928202946,54.39966321299436],[-120.69403861060812,54.396238641558725],[-120.68972405701936,54.3920165737511],[-120.68345660582709,54.38722387874688],[-120.68062429898298,54.38447668650554],[-120.67484685496991,54.37974079855265],[-120.6692716351752,54.37488764841021],[-120.66546983735584,54.37127994342441],[-120.66351124673801,54.368256084105106],[-120.66184329816505,54.36442732592424],[-120.65901509465112,54.360601502457506],[-120.65658200485811,54.358140655284444],[-120.66284138605138,54.35425553913997],[-120.66958996510354,54.35111934637753],[-120.67809404971837,54.35065619057324],[-120.68572286451146,54.351456956490736],[-120.6940454538343,54.35048163615369],[-120.6994255882103,54.346421711134774],[-120.69687933638473,54.34087515551454],[-120.69482874953614,54.33819819802538],[-120.69326239112237,54.33488646626226],[-120.69483205438834,54.330992841883436],[-120.69150382232874,54.32780182122067],[-120.6855342259306,54.32579797906418],[-120.6833907598694,54.322775281587745],[-120.69228484902467,54.318887404854685],[-120.70293922005708,54.31499483293488],[-120.70244137850085,54.3145418806943],[-120.70469574415696,54.310597175134944],[-120.7103548483098,54.30768118902722],[-120.71807947542372,54.305393846075795],[-120.72403990961115,54.303847007429],[-120.72940873983816,54.30040552739261],[-120.72480810102314,54.29629770469045],[-120.72061276218356,54.29481271495622],[-120.71367254293115,54.29522061411745],[-120.7038103556464,54.29505152977011],[-120.69551597301333,54.293863000725665],[-120.68896988466281,54.28906668228849],[-120.6833957322223,54.28500431528638],[-120.67978907876588,54.28364240455313],[-120.66973463996065,54.284737841364816],[-120.6612319151022,54.28707771563535],[-120.65429312327184,54.288901872812005],[-120.64697171714053,54.28867819529397],[-120.63954684878298,54.286050502195465],[-120.636628311913,54.28439416613517],[-120.63409574348019,54.28250322436856],[-120.6297915413393,54.28164802699891],[-120.62510037318008,54.28576231519095],[-120.62401216733683,54.29113220627252],[-120.62557795784383,54.29415762794693],[-120.62234996774639,54.29250522844448],[-120.61678543567736,54.2912433678968],[-120.61093055607334,54.290902824633726],[-120.60528021540921,54.2894748677904],[-120.60410585494745,54.289009364276005],[-120.60040116739846,54.28358822158245],[-120.59739366737834,54.276158244383],[-120.5953566071063,54.27227569262969],[-120.59252837019729,54.26913059482358],[-120.58892862785845,54.26598695652233],[-120.58814689723259,54.265359052082715],[-120.58571273125068,54.262276246579006],[-120.58191207042042,54.25855728460103],[-120.58181771109005,54.25575853236557],[-120.58340076507328,54.251821615382966],[-120.58086731127077,54.24832986269971],[-120.57892774946714,54.24501733554483],[-120.5789274070709,54.24045257752786],[-120.58177437558277,54.23605100175289],[-120.58452207771995,54.232516559855],[-120.58354202435702,54.229884908314254],[-120.57965654408632,54.22741991989964],[-120.57712201865942,54.22617438223177],[-120.57059954207598,54.2234832582815],[-120.56836250478827,54.22022003123686],[-120.56661972375208,54.214966060290976],[-120.56478419450542,54.20955680692266],[-120.56185341554968,54.21281247066207],[-120.54441475913116,54.215241304430556],[-120.52289469681654,54.20741925348729],[-120.50346257654948,54.206298459534096],[-120.4874854672082,54.21604891710258],[-120.44969886548388,54.22998152005668],[-120.43170027370334,54.23477772368251],[-120.42547159122005,54.2429962639008],[-120.43494601403872,54.25462482978379],[-120.418511934513,54.26434786573474],[-120.39999578795754,54.26605728975774],[-120.39525071868107,54.2664948704429],[-120.3295511795959,54.282701171262225],[-120.31393568437599,54.27429865821234],[-120.27719231084677,54.26992270380022],[-120.21288534401491,54.272515788839215],[-120.20000570647636,54.2786429714598],[-120.16726134647067,54.29420821535649],[-120.13394111801905,54.29550607636635],[-120.10712693431121,54.28509180263426],[-120.10716026101362,54.28507488239837],[-120.10735207498841,54.28496282413326],[-120.10743159758758,54.28492004251444],[-120.10751119938746,54.284876707290195],[-120.10777039091286,54.28468532447785],[-120.10796291997897,54.28458172414296],[-120.10823176583224,54.28447115651266],[-120.10832606728273,54.28444651520731],[-120.10862439725689,54.284345810993194],[-120.10882834579286,54.284270301368046],[-120.10900480485601,54.28418446680907],[-120.10908304450443,54.284150612395344],[-120.10942061987653,54.28395122658457],[-120.10959891973818,54.2838121046177],[-120.1096792390332,54.28375025580589],[-120.10993825061465,54.283586955417505],[-120.11019566342395,54.28342132039883],[-120.11024377262811,54.283395559997906],[-120.11029244219544,54.283352412380374],[-120.11053563119168,54.28315124877622],[-120.11076211052183,54.283012773114926],[-120.11077697469892,54.283003380175934],[-120.11085648867945,54.28296060522801],[-120.11111501322631,54.28278715596606],[-120.11146775032798,54.28258962488131],[-120.11179954465587,54.28244389537595],[-120.11207284357927,54.282288584536566],[-120.11213765252386,54.282227114741154],[-120.112219084034,54.28215745194281],[-120.11237299852466,54.28194577811643],[-120.11237747671706,54.28187407236008],[-120.11237939575976,54.2818471943303],[-120.11232818118691,54.28169243987793],[-120.11232243422906,54.281557305450164],[-120.11241617682603,54.28133427964441],[-120.11256353182573,54.28119533431656],[-120.11267708223447,54.28111712423423],[-120.1128042176647,54.281038440263416],[-120.11299727627716,54.28091744465864],[-120.11311138557447,54.28082183801806],[-120.11312880592847,54.28079458810336],[-120.11320448193622,54.28058979913201],[-120.11335718737607,54.280386489844226],[-120.11337580551024,54.280350874031974],[-120.11339306565534,54.28032474011974],[-120.11344700461858,54.28021778178197],[-120.11341751972684,54.28018095657458],[-120.11335272077076,54.28002665848891],[-120.1133290716632,54.27990863660259],[-120.11333354735007,54.27986390185388],[-120.11334761521468,54.27965780573934],[-120.11343231632911,54.27952481104798],[-120.1135002359401,54.27945505871533],[-120.11361186208968,54.27937675471393],[-120.1136445436951,54.279350802387405],[-120.11375169620206,54.27915540654591],[-120.1138005181842,54.27911113251169],[-120.10873618240919,54.270200869303686],[-120.10696388884246,54.26990465112234],[-120.1049248207282,54.26954374913211],[-120.10354071035644,54.26935456224979],[-120.10295665465405,54.26914636646492],[-120.10213756808875,54.26846373150078],[-120.10179487193592,54.267676692839636],[-120.10151945788697,54.266851351436515],[-120.10136950537745,54.26614729539104],[-120.10103406984514,54.26524260485507],[-120.10076390494989,54.264340529055254],[-120.10036132476462,54.26343313615007],[-120.10007497184473,54.26276514784243],[-120.09913061303214,54.26200166082042],[-120.09730653225867,54.261450459136206],[-120.09627322729733,54.26099784551778],[-120.09456741645097,54.260645095318175],[-120.09345274108313,54.260423373662746],[-120.09254331292038,54.26008970613475],[-120.09157388557846,54.259676679125995],[-120.09023687500749,54.258826554612874],[-120.08942012080954,54.258143925769154],[-120.08851979415292,54.25769377964885],[-120.0877450300069,54.257363820162816],[-120.08689771522177,54.257108986784615],[-120.08650420929371,54.25704035342148],[-120.08477331899854,54.25703799254916],[-120.08364073215651,54.257049058895035],[-120.08224253319796,54.257055022756965],[-120.08090632080555,54.257139859597906],[-120.07990474701288,54.25719268145669],[-120.07883560715818,54.257245577316766],[-120.0779704621351,54.257262337310266],[-120.077437642564,54.25724980744914],[-120.07718674144084,54.257048749073036],[-120.07689554735639,54.256457436569065],[-120.07661520613776,54.2557104286337],[-120.07646045780393,54.25508307144919],[-120.07609846675702,54.25456808228225],[-120.07581272932764,54.25389891950761],[-120.07489777961293,54.25270789264811],[-120.07416127911549,54.25183238824595],[-120.07335390729254,54.25103377440364],[-120.07208123080666,54.2502236389322],[-120.07066140582947,54.24960465870398],[-120.06916532659613,54.24909993589525],[-120.06805101892579,54.24887854323762],[-120.06706578395,54.248698852058816],[-120.0664822862489,54.248489917673915],[-120.0661005171304,54.24824702992222],[-120.06567693141224,54.24765200506772],[-120.06514787711592,54.246664638889285],[-120.06486056868012,54.24603469629617],[-120.06455866327475,54.2455995913112],[-120.06328366930296,54.24480778096792],[-120.06265829160589,54.24424781594085],[-120.06190774562349,54.243565957834036],[-120.06087891934168,54.243074450742114],[-120.0597667084166,54.242813172253825],[-120.0585418411749,54.24227663151839],[-120.05737692896798,54.241819439327344],[-120.0564737427599,54.24140709141652],[-120.05544503510934,54.24091553807555],[-120.05457102914502,54.24011461686754],[-120.05381498768458,54.23951222425981],[-120.05280299400026,54.23878544792093],[-120.05165456262633,54.23809523213722],[-120.05036812186043,54.237479150574316],[-120.04906530683223,54.23709657675473],[-120.048424064418,54.23676838945236],[-120.04765001428332,54.23643817288512],[-120.04715215517093,54.23595911519585],[-120.04691977705217,54.23548521619497],[-120.04685175281915,54.23456871447087],[-120.04652324487475,54.2335860296925],[-120.04579308417208,54.23263306558434],[-120.0450483455536,54.23187437108671],[-120.04430006962478,54.23119361232351],[-120.04375155859256,54.23047883218789],[-120.0433577170013,54.22949516983671],[-120.04328903233618,54.22859716787425],[-120.0434110315016,54.227820927447176],[-120.04351466947878,54.22727812280945],[-120.04375284607616,54.22673854943362],[-120.04346060363534,54.226185837252025],[-120.04303574764694,54.22562997742509],[-120.04234915050317,54.22499044288919],[-120.04178438697711,54.22450862053453],[-120.04160747718697,54.224145334923925],[-120.02404881241767,54.21946107661351],[-120.02379209532091,54.219515851643905],[-120.02342732449645,54.2193983973868],[-120.02320107022427,54.21924337444627],[-120.02287623601475,54.2190368406434],[-120.02220276615915,54.21896035125233],[-120.0213664925109,54.21900900711385],[-120.02055953304772,54.21914789479782],[-120.01996342257404,54.219401709331365],[-120.019357764991,54.21981408269608],[-120.01847769881644,54.22070800767727],[-120.01797089316749,54.22114324711894],[-120.0174555367813,54.221478023198856],[-120.0170322862495,54.22169652598541],[-120.01663211850075,54.221835810005466],[-120.01594661131682,54.221908168495084],[-120.01542546599181,54.22208361804782],[-120.01512078671298,54.22229560723494],[-120.0147825281335,54.22276501056594],[-120.01454662682282,54.223206865568415],[-120.01418727431886,54.22371512146277],[-120.01413154663824,54.22379329275042],[-120.013848725193,54.223934426874116],[-120.01369056673553,54.22400079459521],[-120.01331576707796,54.22403173334198],[-120.01294536743919,54.22399264629261],[-120.01251210749672,54.22388188267585],[-120.01200328599477,54.22364094435107],[-120.01157342733984,54.22348033400519],[-120.01100649434677,54.22334723262762],[-120.01045156918059,54.22326416664167],[-120.0100787908137,54.22325473294528],[-120.00951521596829,54.2233106137109],[-120.00928602017031,54.22341448399366],[-120.00915438933562,54.22359005665412],[-120.00919374796575,54.22377015290755],[-120.00934978723261,54.22394364469509],[-120.00947683494431,54.2240645678938],[-120.009478167424,54.22429391941314],[-120.0093176921782,54.22438939001217],[-120.0090286869735,54.2245066052803],[-120.00857851505657,54.2246445173147],[-120.00813120747038,54.22472299105469],[-120.00780772747491,54.22474577766766],[-120.00743695600718,54.22469597346411],[-120.00712376195266,54.224568648287274],[-120.00681048793057,54.22444188472105],[-120.00652807328309,54.22435486086099],[-120.0063271264925,54.224330877630095],[-120.0061234990118,54.22432530220936],[-120.00596788181001,54.22436087301867],[-120.00592798953814,54.22444938268422],[-120.00605247494852,54.224601087366764],[-120.00612878786494,54.22471276134678],[-120.00615137783876,54.22486224050613],[-120.00614696433277,54.224932273811774],[-120.00606912100821,54.225069475417115],[-120.00589169020904,54.22517534293732],[-120.00564925761125,54.225237532742206],[-120.00530707499952,54.225269503467224],[-120.00498359045949,54.225292273629634],[-120.00452491279735,54.22528981397433],[-120.00420685464894,54.22522237658347],[-120.00397768668559,54.225127308075],[-120.00383645248257,54.224944982941345],[-120.00376980173723,54.22471407942011],[-120.00362175905857,54.22463144920264],[-120.00338687811384,54.2246153311549],[-120.00313941236341,54.22473852712031],[-120.00301014595973,54.22488442219378],[-120.00291497618555,54.225021331366385],[-120.00290576866959,54.22515069735673],[-120.00283038977464,54.22525767252246],[-120.00268380438507,54.22540327679183],[-120.00243207585011,54.22559537962351],[-120.00213493899543,54.225728479313375],[-120.00173670846227,54.22582734289846],[-120.00142630374957,54.225879416745336],[-120.00129796570492,54.22588655184309],[-120.00122214435392,54.225890666527114],[-120.00122203272993,54.2257855752424],[-119.99987094536799,54.2278558986973],[-119.99992844478982,54.250123232789804],[-119.99931526596804,54.34311052560325],[-119.99966694523232,54.49997260878071],[-119.99951683725754,54.74998859298948],[-119.99928681244211,54.99999578653533],[-119.99941180254012,55.05132163149518],[-119.99980685136008,55.2495177856808],[-119.99929263461331,55.48024813288398],[-120.00063939640023,55.7496587899139],[-119.99925034722276,56.00000990073668],[-119.99949364693383,56.250414413031066],[-119.99968051049284,56.49996084338844],[-119.99956060056219,56.7501540440749],[-119.99950814267358,56.804592761763516],[-119.99924365618268,56.99983570330618],[-119.99955928928506,57.24995844568433],[-119.99972290280074,57.32231605321823],[-120.00004047110602,57.4999575106876],[-119.99994744942182,57.583920911867494],[-119.99968832957931,57.74977540023442],[-119.99887952328696,57.94006017909471],[-119.99860105725239,57.9995493553739],[-119.99969047112869,58.2499030141121],[-119.99992919459753,58.500148069477255],[-119.99942683014221,58.75004424864679],[-119.99922793866786,59.00005016675553],[-119.99919810921595,59.250067449920515],[-119.99921938799707,59.48309749189664],[-119.99922124514032,59.49997161582289],[-119.99919916152649,59.74993694679287],[-119.99920330699027,60.00007332274973],[-120.66830177315488,60.00004752340259],[-121.17493753616544,60.00008972672921],[-121.62033779612963,60.000107243884386],[-121.99963791698053,60.00008299214441],[-122.01531958865687,60.00008709974107],[-122.24976138746257,60.000233353740526],[-122.500494708644,60.00027833842734],[-122.75045247185479,60.000308753270645],[-123.00051482170832,60.00032043545869],[-123.25060350553646,60.0002031589888],[-123.50058714865527,60.00030563815777],[-123.75104376880026,60.000376421992414],[-123.80447834961902,60.000347886311964],[-123.99986584789852,60.00009486749453],[-124.41682898051569,60.00008003567211],[-124.87122148508816,60.00009736628174],[-125.46239518559247,60.000090833536774],[-126,60.000083716676635],[-126.56390405060563,60.00007780784625],[-127.1180194087016,60.0000933348387],[-127.72921450744029,60.00008774269539],[-127.73015237781816,59.99480088072238],[-127.72785486102738,59.98084891782212],[-127.7232004876454,59.97124709027911],[-127.72161969666331,59.95466748820463],[-127.72119212629603,59.948857812220176],[-127.72545239505156,59.94362074203644],[-127.72780524158581,59.94246663755033],[-127.73445019499954,59.940521414165865],[-127.7425382878244,59.93748681496175],[-127.74525599269201,59.933753544662565],[-127.74410994009436,59.923605564133986],[-127.7427978629373,59.91529601532871],[-127.73890582305498,59.907801673534586],[-127.71834967799971,59.898172451895846],[-127.7022557111261,59.89597468012933],[-127.68851194889334,59.89603288903639],[-127.67742365388689,59.900918195547035],[-127.67654087520629,59.89830064440764],[-127.67520348865654,59.89204342504615],[-127.67209139631822,59.88722047985109],[-127.67179429327199,59.881463961021694],[-127.67467480345593,59.8792155578433],[-127.6778966139526,59.87696301419065],[-127.67994215431366,59.87357251667778],[-127.67878006716373,59.86931149458199],[-127.6744854920875,59.866257954441686],[-127.66658595842095,59.864273217899395],[-127.66204253748612,59.86054733114407],[-127.66133472066458,59.85616391397257],[-127.66218068125498,59.85068215626707],[-127.67186579948626,59.851916780458296],[-127.68260554950638,59.85421802985628],[-127.68881063568581,59.856618238696164],[-127.69591582170438,59.85866530720397],[-127.70465545791721,59.85876619778226],[-127.71426818713815,59.85434698422047],[-127.7177081897127,59.84867103420253],[-127.719870630428,59.84208379727895],[-127.72858006048665,59.83807073627243],[-127.73776608040762,59.83468118431382],[-127.74643131424013,59.83266544307303],[-127.75654026262008,59.82994709062469],[-127.76063816951142,59.827114775043185],[-127.76392029189363,59.82371667448951],[-127.77119622948757,59.817838199307],[-127.78505724373612,59.81234345893785],[-127.79389601816949,59.80917964804138],[-127.79856648713894,59.806743882001406],[-127.80494741750123,59.801433175296985],[-127.81077941184722,59.79664226117126],[-127.8145960577135,59.79256122181431],[-127.81545587075264,59.79135319576014],[-127.81517631320237,59.78370776178548],[-127.8104221457231,59.77747928268749],[-127.80609188843701,59.77359389559072],[-127.8037624669143,59.771788266709095],[-127.79949948816763,59.76651609605509],[-127.80301509642126,59.763573259267076],[-127.80913072502233,59.76060569231501],[-127.81012185091058,59.75677753148329],[-127.80576127273493,59.75197488472555],[-127.80062189024207,59.74746114775587],[-127.79593303127899,59.742878495300594],[-127.79229758804689,59.73613170176348],[-127.79090608250523,59.73192053432963],[-127.79089956842363,59.72547816568702],[-127.79188712344433,59.72147048651272],[-127.79246393802303,59.71861080775633],[-127.79461777398096,59.715631891546984],[-127.79530868697442,59.71288772863819],[-127.79089761723468,59.709615326934944],[-127.7875193759672,59.706680485489485],[-127.78740840276338,59.70360478364319],[-127.79047017684142,59.700776321287464],[-127.79169403130265,59.69705369690985],[-127.79191411794176,59.69380284646865],[-127.79076427383195,59.69325079003012],[-127.78283605571045,59.689321634484784],[-127.78008519032981,59.684957189711994],[-127.77794338156163,59.681898531442194],[-127.77512060291717,59.67867759307699],[-127.7700763804654,59.676501501910764],[-127.76505326767439,59.67494576106605],[-127.76140554540503,59.673903287363906],[-127.75216866294427,59.67106876646764],[-127.7472447328789,59.66906133541563],[-127.74520833608784,59.665542158411924],[-127.74405019945819,59.661454200046194],[-127.74088708676588,59.658057075944704],[-127.73864826476152,59.655224149321484],[-127.73515795361182,59.65206493665335],[-127.73442112873659,59.65030182430793],[-127.73816655956638,59.647754147529014],[-127.74472767714568,59.6450091966643],[-127.74815829550988,59.64315791800615],[-127.75036771709027,59.64177172546984],[-127.75140956594767,59.639311641332014],[-127.75113748030842,59.634744987607505],[-127.74970441562152,59.629113437151084],[-127.74965329339614,59.62762972856931],[-127.74991011832421,59.62522455864278],[-127.75101574246608,59.62465290232361],[-127.75703416261562,59.622651917939386],[-127.76598625281585,59.620919344014226],[-127.77476773855872,59.61747013135564],[-127.77838129495335,59.614527304449275],[-127.78132554290387,59.61176388344852],[-127.78552057421773,59.60933520202138],[-127.78866642416608,59.60906990074309],[-127.79283818452018,59.60914215247832],[-127.79440500838433,59.60884308226432],[-127.7954618231223,59.60689533428758],[-127.7976135050132,59.60407883692075],[-127.80063324187572,59.60039648315273],[-127.803010963044,59.597585994152375],[-127.80318183640972,59.59609948347737],[-127.80601323829339,59.593444998123424],[-127.80819968876624,59.59304776647183],[-127.81328263725923,59.59211800377617],[-127.82433674560721,59.5988012378242],[-127.83067493265008,59.60575276752255],[-127.83555510793258,59.60981763691261],[-127.84859259803997,59.61202900356474],[-127.86157381764315,59.61269258702114],[-127.88305221820521,59.61168389019142],[-127.8997082804711,59.608254820354325],[-127.90899492033482,59.60376454098096],[-127.91761611431099,59.5996246751556],[-127.92438588891258,59.59710222126872],[-127.93023175610553,59.594016509919044],[-127.9327680744472,59.58988806686134],[-127.93420679263018,59.58359784519917],[-127.94076951805935,59.57605777456817],[-127.94964583363941,59.5700862720284],[-127.9606874297383,59.56488431425666],[-127.97239154825134,59.562244859605],[-127.99295915083493,59.561798482897686],[-127.99937820800666,59.561949162506785],[-128.00263682734197,59.56321563652372],[-128.01167969206656,59.56655745835637],[-128.02377321926122,59.56551826647551],[-128.03541262727958,59.56460161438421],[-128.0465067294648,59.56641782006556],[-128.05736782477874,59.57177211263944],[-128.0674015341083,59.5784334360298],[-128.07473804302967,59.584846553720965],[-128.07498137227722,59.59096956306662],[-128.08202937333638,59.609622463576585],[-128.09424069158484,59.61572809716023],[-128.1099139168369,59.62312993173052],[-128.12663602331364,59.6296774191301],[-128.14783889466347,59.6340305893384],[-128.16116142990816,59.6376214132097],[-128.1698459040089,59.63803519982485],[-128.17992728510816,59.63703193526954],[-128.19706370829843,59.63418920824639],[-128.21513334634574,59.63026776146352],[-128.23309826708984,59.625949713433194],[-128.24648098157508,59.62381782675202],[-128.2575487302636,59.61960773189267],[-128.26763818021877,59.61802204030142],[-128.2794567526169,59.61913363015349],[-128.30221096105038,59.62501263894195],[-128.31482440003987,59.63048123594191],[-128.32957532709042,59.64065518813711],[-128.3376731788782,59.6506517800204],[-128.3480849806605,59.65878242167896],[-128.35132127069576,59.660410605334285],[-128.3671336720687,59.66074573466424],[-128.38773598503343,59.650009428361365],[-128.39868026843547,59.645789894331415],[-128.42235022274846,59.64313043709419],[-128.41530947046078,59.635135890708796],[-128.4059107688569,59.62678600322761],[-128.399482315876,59.621767876628304],[-128.39321236733267,59.619671249781966],[-128.38356380097255,59.61732633598521],[-128.38951975978713,59.613759862899535],[-128.39149573372222,59.611197419653934],[-128.3893059890434,59.6086075838814],[-128.38048360172223,59.60478168496089],[-128.3722076976714,59.60187275312531],[-128.36860114933958,59.597273306587276],[-128.36863675817477,59.59126216409573],[-128.37172632371636,59.584884103721244],[-128.37773094920055,59.57914001426769],[-128.38239221661348,59.57751261705575],[-128.39760841064154,59.577610899035726],[-128.4100243300929,59.5721415452937],[-128.41258680684768,59.563747335532774],[-128.42732698658946,59.56469630040782],[-128.43435614710017,59.56279180889092],[-128.43165338957795,59.55785449707632],[-128.42966682140377,59.551150170897934],[-128.43268110154926,59.547399495665296],[-128.45609970454566,59.54267759100409],[-128.46941408998973,59.54137978285236],[-128.47435882827818,59.5419215865267],[-128.48740469152202,59.54267825157035],[-128.50115563954836,59.54207137010233],[-128.51641588716225,59.539123395060074],[-128.53304895987586,59.53503297304395],[-128.5435635357502,59.532798287821365],[-128.55347208058637,59.53257141384763],[-128.5605710748092,59.53232369581557],[-128.5868962481493,59.527129840782706],[-128.59390797917257,59.52516345654868],[-128.6220108554261,59.52065840551799],[-128.63126952098753,59.518872572034816],[-128.6388425239995,59.51673126763908],[-128.6656310614963,59.501994873072064],[-128.6682413295445,59.50055791957668],[-128.67437219434393,59.496930755754015],[-128.67545038878504,59.49275305731087],[-128.67553452697516,59.48743387843511],[-128.6770592622239,59.48326560530083],[-128.681936145414,59.480652067991834],[-128.68894455402557,59.47788006323549],[-128.70272347802705,59.47336531306726],[-128.7154660420941,59.470318057099455],[-128.72515582937714,59.4684723419438],[-128.73382027728556,59.46752791925204],[-128.7395404228603,59.46824273864886],[-128.749069805515,59.46970960128819],[-128.75447450198445,59.4688644899285],[-128.75968524155786,59.465800617291315],[-128.7662554242265,59.46153073490577],[-128.7730549774529,59.45686905743189],[-128.7825480458682,59.452377910935084],[-128.7917982249753,59.4488627250657],[-128.80565651758266,59.44490273741104],[-128.8126369830607,59.44315060508986],[-128.82039015438875,59.442606042571754],[-128.82804154345004,59.441199354516456],[-128.83670037104238,59.43978959800649],[-128.84669788751157,59.439188555448],[-128.8564803904567,59.437736443534234],[-128.8661562576749,59.43547604540775],[-128.861085247189,59.42635841033885],[-128.86268937254496,59.42323011508765],[-128.85604121160674,59.41497290381507],[-128.85406502109376,59.41073997571223],[-128.85378978227064,59.39414601208485],[-128.85135679017463,59.39082233767747],[-128.84880031752706,59.3888147324257],[-128.84640574393745,59.3819994778782],[-128.83981250011192,59.380434662778086],[-128.8352393235778,59.378306336605334],[-128.83494613151763,59.37453377432491],[-128.83217200013337,59.37206260278374],[-128.82591626381793,59.37032834955485],[-128.82156119384678,59.36894189373106],[-128.82091536948826,59.36671496986311],[-128.82353873347634,59.362604044173565],[-128.82322583610556,59.36037934852015],[-128.81776504595214,59.35818775195705],[-128.813861232086,59.34702211879722],[-128.8125507082576,59.34409810728538],[-128.80876374949426,59.34260085997626],[-128.8043111432763,59.34046932823647],[-128.80277723307296,59.33766675778898],[-128.80338298451127,59.33377725955641],[-128.80051636761888,59.330111171089676],[-128.80055589778527,59.326674007479106],[-128.7937811360567,59.32253832417768],[-128.79338881924446,59.31812944394599],[-128.7774232468393,59.306694632967044],[-128.77810447472373,59.305781394838455],[-128.7877290046476,59.30523650072596],[-128.7932296603424,59.30348812976937],[-128.79306162262023,59.298912937696166],[-128.79042516307624,59.29512533050043],[-128.7819393852845,59.29424426321864],[-128.7765130888828,59.29016187410412],[-128.77153439412413,59.28631319422959],[-128.76662223621005,59.28578215922362],[-128.7603646284447,59.28570064345354],[-128.75020809051037,59.27651298383211],[-128.7446977877918,59.270830223721696],[-128.73999922764685,59.263035489968516],[-128.73353281203322,59.26238134733501],[-128.72625402999637,59.26378469830372],[-128.71930023634638,59.26581984865346],[-128.70622210628989,59.266571865258854],[-128.69279861285472,59.26788702343306],[-128.68774991189704,59.26946958913795],[-128.67641043155137,59.27302703135331],[-128.66418718010638,59.276006972716985],[-128.651333573466,59.2763536217703],[-128.64306919175078,59.27608053674673],[-128.62070882812327,59.27695696547015],[-128.60648682739796,59.27883641516109],[-128.59499053468218,59.27815379830297],[-128.58779084939812,59.274799434278926],[-128.57841916154393,59.26800477702049],[-128.55836674669328,59.247477379334825],[-128.55518333615447,59.24472153006718],[-128.54876908522093,59.24160274599379],[-128.5398813742517,59.23943762628123],[-128.52089085832026,59.24037093319513],[-128.51196761017133,59.240147197739866],[-128.50985538453583,59.23973603760091],[-128.5045011940082,59.23415890522941],[-128.50291403407687,59.22992512370329],[-128.50519132096107,59.22764450880336],[-128.51012891218681,59.22618770658043],[-128.52075984340485,59.22458167797051],[-128.52860849520866,59.22268419738371],[-128.53815181062808,59.21953200774221],[-128.5493916555306,59.21495385082158],[-128.55314401246596,59.21119726356229],[-128.55566510649345,59.20760732907105],[-128.55737464115717,59.20566911738955],[-128.56993227386556,59.20190109678681],[-128.5675141141929,59.19411359397748],[-128.56470441931273,59.18940890756565],[-128.56274281529124,59.187053443168395],[-128.555889376724,59.18415945343041],[-128.5434469147918,59.18220488479527],[-128.53525947785255,59.1793076157101],[-128.52543216611346,59.174848398082034],[-128.517071117806,59.17514552262041],[-128.5090751409373,59.16858353776182],[-128.51262602803482,59.163627074331075],[-128.5109254143082,59.159665729122764],[-128.50673154338045,59.157755051388044],[-128.5041460656975,59.15356702925864],[-128.49723813916214,59.14844152967424],[-128.48998210606945,59.14416727335827],[-128.4776286153223,59.13889672032137],[-128.4955272087138,59.12361116362205],[-128.503933672755,59.12050904133955],[-128.51413099541324,59.11668129490004],[-128.52132341750107,59.11288100157042],[-128.52598449555146,59.107760246910935],[-128.52765043431324,59.10221799297453],[-128.52332366347503,59.09619263264331],[-128.51925376864943,59.093992657069926],[-128.51592349074792,59.093927863249924],[-128.50932462113929,59.09594574678492],[-128.501808727147,59.09927472250628],[-128.48631797079136,59.106569099484766],[-128.45587473999842,59.110911120729],[-128.42969414632063,59.09834022052622],[-128.42683593609388,59.09203441856338],[-128.42039731718586,59.082042822060004],[-128.41861426879032,59.0775161498133],[-128.4190281645868,59.074029607484945],[-128.4230821799115,59.07153968567791],[-128.42933953714294,59.069855727203766],[-128.43282721241522,59.06782505372159],[-128.4325609310829,59.064907951466296],[-128.41633790819526,59.045983041074265],[-128.41264792842122,59.04236219170555],[-128.41281750525232,59.03978812562087],[-128.4242504538643,59.029904439784055],[-128.43252620564144,59.031843414890254],[-128.43858407320823,59.033767452451094],[-128.44448263292895,59.032943189177686],[-128.46494337193545,59.02557362208503],[-128.47057592448695,59.021372831161806],[-128.46805306845422,59.01500862517847],[-128.46613928205198,59.01127642851499],[-128.46910777046585,59.007177627606964],[-128.48136054154025,59.00050166436066],[-128.48169610159036,58.9999831795406],[-128.48304135679433,58.9978102950049],[-128.48395421943698,58.99439570842457],[-128.4839716803295,58.99221994253877],[-128.4846797310928,58.986849405154004],[-128.48281497068183,58.98507637939355],[-128.48270618578715,58.98489856569048],[-128.48459650431388,58.983479908725094],[-128.48869860400123,58.982227782352574],[-128.4919117829441,58.98137825876218],[-128.49600437859905,58.98126772822291],[-128.49977209222467,58.98036295587201],[-128.50365829561395,58.978143464779436],[-128.50534956331362,58.97397742606761],[-128.50558818972064,58.97179765099459],[-128.5054943697955,58.969237432947935],[-128.50506741134066,58.96734852570932],[-128.50308965341645,58.96562284266411],[-128.4994496953349,58.964700583076564],[-128.49823588045388,58.964533981563086],[-128.49293856535436,58.96343506031],[-128.4863183304717,58.96217122134964],[-128.4816829028086,58.961356487159456],[-128.47793364051066,58.96026487081933],[-128.47727328065304,58.959863337868725],[-128.47574592956184,58.957401047779655],[-128.47532607458524,58.95506253736352],[-128.4753398933253,58.95351619695924],[-128.4767954245195,58.951404426554866],[-128.47681562997212,58.94842875278204],[-128.476283732458,58.9462630934498],[-128.47498520803228,58.94311356670237],[-128.4752074038629,58.94294774720334],[-128.47346644122467,58.939914098724365],[-128.47194765994726,58.93659778164869],[-128.4704174392602,58.93454008025498],[-128.46954780802085,58.933054696680976],[-128.47000031811908,58.93173418808561],[-128.4716762032599,58.92974438775083],[-128.47467768706272,58.927397999230564],[-128.48055441031434,58.92404660744954],[-128.48476266207146,58.922567951260255],[-128.48851994189303,58.9218344341902],[-128.49360665169877,58.92122037653698],[-128.49692168401978,58.92030593408775],[-128.5041209964769,58.91728887297381],[-128.51209060488614,58.91433816073544],[-128.51828160279817,58.91262423193777],[-128.51840763556598,58.910401743602726],[-128.51842705310878,58.907543045871044],[-128.5185498865617,58.90565320488577],[-128.51878424063818,58.90388715032851],[-128.52276141285796,58.90326545912658],[-128.52729278503557,58.902237905583156],[-128.5320432814636,58.90121512505584],[-128.53481191199936,58.89950989635969],[-128.53735973630413,58.89797050528279],[-128.54101629353042,58.89558350640124],[-128.541474142049,58.89272566378371],[-128.5404970357693,58.8900922795422],[-128.54149798617215,58.889237736883665],[-128.54657098245647,58.889017380183525],[-128.54944152771955,58.88890988233297],[-128.55032458634165,58.88862374017341],[-128.5532073686007,58.885765495170496],[-128.55344880199516,58.88257012490033],[-128.55302878182727,58.87943208204355],[-128.55172211839874,58.876679148615956],[-128.5497539799381,58.873884647050104],[-128.54976289851973,58.87256322024729],[-128.55087483171386,58.87085267048604],[-128.55309490250625,58.8686270406278],[-128.55509508448498,58.86600102977518],[-128.55554212085897,58.864860159341575],[-128.55511221520223,58.862917799236186],[-128.55379997198366,58.86102791385095],[-128.55248948961915,58.85925483452255],[-128.55106767319322,58.85742091560843],[-128.55019779258703,58.85582833529319],[-128.5514167219104,58.85434051050059],[-128.5555038152234,58.85286189088307],[-128.5608004005446,58.85132449353367],[-128.56565573291962,58.84989405343606],[-128.56709203236215,58.84887835698918],[-128.56920054642669,58.846762446855145],[-128.57086635689762,58.84407962698222],[-128.57164797877903,58.84179095896611],[-128.5716654383623,58.83899541146429],[-128.572007986696,58.83682288884272],[-128.5720181816588,58.83505210302985],[-128.57235808323523,58.83316724858513],[-128.57600125417017,58.831453705582504],[-128.58107449519562,58.829919714006664],[-128.58780005520472,58.828219357563476],[-128.58802179132758,58.82775677269394],[-128.5916723910994,58.82421814878963],[-128.59597885843235,58.82119721583173],[-128.59862980775424,58.81948397399497],[-128.6013944786933,58.81633946860741],[-128.60394127985268,58.81337882837917],[-128.61012639262006,58.80829932340361],[-128.61498314214379,58.80424266593993],[-128.62204329784004,58.79973900500373],[-128.6297590709269,58.79562675639813],[-128.63053039108772,58.79540514901165],[-128.63483216267846,58.792544852293574],[-128.6382531689513,58.78861399657052],[-128.63969447176092,58.785575262154566],[-128.64113972712488,58.780954658987625],[-128.6412519482017,58.779748170632665],[-128.6410474262808,58.77684022950713],[-128.64138320639563,58.77444308277075],[-128.64226794411277,58.77215212284859],[-128.64304058615434,58.7713552282736],[-128.6460209484,58.768322534576946],[-128.64822742730524,58.76563736728802],[-128.65098267461576,58.76330096872261],[-128.65340530227542,58.76164504230961],[-128.65780236636405,58.761020004280084],[-128.66351496712386,58.76130375457718],[-128.66922465268632,58.76217149865532],[-128.67098580703356,58.76239757640994],[-128.67460708865755,58.76342290980343],[-128.67779205870926,58.76474433371726],[-128.68284770496297,58.76423134703678],[-128.68977066948347,58.76434634659923],[-128.69537012529716,58.76561064657966],[-128.6983324188915,58.76777186044991],[-128.70239946702105,58.768580936529624],[-128.70899534548334,58.768584632048345],[-128.71547798128591,58.768356589678284],[-128.72327947457933,58.76949494089482],[-128.73239988758965,58.77166693814222],[-128.73547591093765,58.77253089475822],[-128.73954288545312,58.77263784837509],[-128.74657954625033,58.772469085859825],[-128.74756627915025,58.77229637976518],[-128.7522926796887,58.77155377261825],[-128.75712959622595,58.771725520044654],[-128.76273343575727,58.77337352275452],[-128.7686710465244,58.77372025726306],[-128.77284908407836,58.77366217890815],[-128.7762553967785,58.773889352814344],[-128.779994851863,58.774577015232566],[-128.78504767278594,58.77468045700759],[-128.78977511456605,58.774511751007275],[-128.79285202932203,58.773316162828486],[-128.79251790754194,58.76982667573035],[-128.78977136389815,58.76668328032206],[-128.78812102211745,58.764739754564644],[-128.78713125378883,58.76331297582943],[-128.78657673751283,58.760627968959035],[-128.78690751016703,58.75914718762034],[-128.7871250669672,58.75691375031007],[-128.78635442767128,58.75451181681044],[-128.78525483307874,58.7527996929209],[-128.78690435373568,58.75280186464634],[-128.79525076397002,58.75142627310732],[-128.8045872982846,58.751018411279055],[-128.81216962130836,58.752560595283214],[-128.8145869729308,58.75323862626007],[-128.81953147823276,58.75472711067972],[-128.8241456122524,58.75569199332139],[-128.82722528116133,58.75569095032067],[-128.83315723231476,58.756088863847495],[-128.8367825825938,58.755626838976106],[-128.83556859830654,58.75351299394301],[-128.8336998924562,58.752320572800514],[-128.83325539618272,58.75065806640834],[-128.83644013632752,58.74905475842578],[-128.84115992772286,58.74807544261758],[-128.84192247036157,58.745740618910624],[-128.84422201858652,58.74247487193082],[-128.84805976843157,58.74012960666202],[-128.85310839370868,58.73870256328036],[-128.85859475401745,58.73766159564712],[-128.8640830241705,58.73674619287633],[-128.86836594226375,58.736853658473514],[-128.87166321415484,58.737709834738034],[-128.8772695477733,58.73970352462311],[-128.88078956871763,58.74181311331037],[-128.88506575154764,58.73992484926964],[-128.8894518979646,58.7379711934644],[-128.89658204186694,58.73585111334077],[-128.90283246980687,58.73412693213128],[-128.90425845496227,58.733781898873964],[-128.91061823123124,58.73194715650284],[-128.91061425386275,58.73125515572765],[-128.90873876743947,58.72846403963183],[-128.90520758393924,58.72423427151708],[-128.9034448166239,58.72241141773063],[-128.90223229432397,58.7212688747641],[-128.90069174181568,58.72001648167384],[-128.89760964394594,58.71767345947272],[-128.8970544106288,58.71641800421708],[-128.89803617001013,58.71430290297254],[-128.8981368678568,58.71259306647098],[-128.89439274085277,58.70928446165195],[-128.891649750404,58.70860586172366],[-128.88615648241193,58.706835224923346],[-128.88538854144966,58.706438099997605],[-128.88142802996754,58.70387078434478],[-128.87900908110058,58.701863897972046],[-128.8777975139757,58.70021787564872],[-128.87855644215477,58.6980447837188],[-128.88107317040436,58.69587037365473],[-128.88632639848413,58.69260423349465],[-128.89080953961633,58.689911502947375],[-128.89398559527726,58.68796547827299],[-128.89551967904922,58.68761821884464],[-128.90143727326435,58.68646735227288],[-128.9077879462484,58.6846328846589],[-128.90975729999673,58.68326054859637],[-128.91117021065014,58.680686799653245],[-128.9115983784283,58.67868239639198],[-128.91652354948695,58.67719262316519],[-128.92441812308007,58.67718459391945],[-128.93143735154004,58.67813870228387],[-128.9395528240564,58.679329370671255],[-128.9428470439394,58.679662460082326],[-128.95106825246071,58.679996334411875],[-128.9540296751779,58.680048781670536],[-128.95928306146175,58.67883788889265],[-128.95972207457032,58.67861261459755],[-128.96124573703614,58.677006540906596],[-128.96757898790216,58.67265302195315],[-128.97566668020488,58.669384215299424],[-128.98277368324287,58.66622634107466],[-128.98418148066062,58.66393948585293],[-128.984279276186,58.661645479688644],[-128.98688898034916,58.65900861486643],[-128.99541586988926,58.65579183500652],[-128.99836369958564,58.65436061010931],[-129.0063441968904,58.652170796469],[-129.0143318646915,58.65089708348935],[-129.02243255730465,58.650312427181674],[-129.02670276348937,58.650298125346815],[-129.03558030225403,58.65079185640969],[-129.03579720262746,58.65050838169424],[-129.03490093124785,58.64816464634743],[-129.03333196002256,58.6433104101723],[-129.03222228872212,58.641537682254956],[-129.03089222051764,58.63954518574232],[-129.02956357286035,58.63748973976091],[-129.02702987503042,58.635667904406034],[-129.02493773592116,58.63396200945007],[-129.02437644378224,58.632132084600734],[-129.02327469996175,58.63088042492732],[-129.0193231671643,58.629458567112934],[-129.01405512615662,58.62787713676055],[-129.0095548879853,58.62588303218506],[-129.00505288377366,58.62405959252394],[-128.99978301556996,58.62172276069307],[-128.99517269813288,58.61928130455265],[-128.9997541356529,58.61772408132334],[-129.00761515180218,58.61479981554209],[-129.00946952681804,58.613994745749665],[-129.01439222250883,58.61393030192545],[-129.02227344399583,58.61419518866375],[-129.0305785681338,58.612922298044644],[-129.03570939026133,58.611306601520816],[-129.04292317789262,58.61020117146953],[-129.0483812779326,58.60893712710355],[-129.05645840919564,58.606688116400235],[-129.0625751251406,58.605696225830584],[-129.06421053770268,58.60534469878296],[-129.0749062052491,58.602298354659425],[-129.08187725539253,58.59912919498142],[-129.0862225906998,58.59609139853375],[-129.09166408093915,58.593217183892705],[-129.09491979342718,58.59058143271057],[-129.0968524935582,58.586807496248234],[-129.09615789256546,58.58268919785567],[-129.09580602406334,58.580234720795346],[-129.10091343635352,58.57708016874292],[-129.1096477854852,58.5760260873901],[-129.11019258930628,58.57602256288759],[-129.12718582664834,58.570598266029066],[-129.1309834221951,58.567724422269436],[-129.13216916668614,58.566241047265656],[-129.13498935496776,58.56451311394208],[-129.14065376610955,58.56266523713852],[-129.14697946258664,58.561673515042536],[-129.15025006893057,58.56109414666593],[-129.1504488859229,58.559327997854496],[-129.15030534428954,58.556293622526894],[-129.15026318863917,58.55217842775594],[-129.15164511453273,58.54902767647778],[-129.15442134832563,58.54353471132046],[-129.15462063206513,58.54165174614077],[-129.1523060343829,58.53982738375905],[-129.1478180062937,58.538700651838305],[-129.1443182761445,58.53796421630048],[-129.13578774301274,58.53679619526766],[-129.13261550563854,58.53629452506075],[-129.13185077594184,58.53629425794455],[-129.12922296810302,58.53544738814923],[-129.12832051925668,58.53270028856334],[-129.12893965675528,58.529100198899485],[-129.13043152006816,58.52595622430386],[-129.13051281671483,58.52309653227857],[-129.1295991204028,58.519325259212486],[-129.12926846529857,58.51898242835724],[-129.1292604513054,58.518074952302605],[-129.12879409592728,58.515389727164695],[-129.127573478396,58.513279136218436],[-129.12689835967086,58.51139856660551],[-129.12556429241886,58.50911086572461],[-129.12424678713865,58.508314553787216],[-129.12084622729907,58.50661376279005],[-129.1196311336773,58.50506916534512],[-129.11907363483584,58.50387783634299],[-129.11720408135008,58.50244717916616],[-129.11687219929894,58.50193361665852],[-129.11935839473563,58.49975544863145],[-129.1212951030075,58.49700580682615],[-129.12257124093065,58.49374120715912],[-129.12395231788005,58.49037532743591],[-129.12568058093515,58.48876273968574],[-129.12770311731688,58.48413288746642],[-129.12951363968926,58.479957247871155],[-129.13067529135853,58.47674918286045],[-129.13579286216753,58.47610926388954],[-129.14178825221373,58.476086760124616],[-129.1512765503575,58.47673739722922],[-129.15858256440748,58.47723173833346],[-129.16050902042463,58.4739066285101],[-129.1637290782135,58.469436886773465],[-129.1654283893239,58.46572164212097],[-129.16779327839203,58.46279953997412],[-129.17103620078976,58.46089919086699],[-129.1780972987569,58.45910663208572],[-129.18515946473536,58.45742150337721],[-129.18580946635677,58.45719049301412],[-129.19034205051435,58.453803428511264],[-129.19195195580332,58.451914181906496],[-129.19380375267062,58.451852405853366],[-129.19904670099913,58.452914450613875],[-129.20502575338344,58.452260390378235],[-129.21023936679438,58.45098623109693],[-129.2150033937206,58.448967713016685],[-129.21832847456335,58.444844572897374],[-129.21918979945622,58.44397930718627],[-129.2211485866273,58.44403141747144],[-129.2270672160984,58.446864534986695],[-129.23014129475155,58.4487949865859],[-129.23265416953288,58.449471719065286],[-129.2388563956991,58.44905342865906],[-129.2397276157285,58.449041505426855],[-129.24548730055034,58.44804939986343],[-129.25144998520983,58.44619842299753],[-129.25511977785544,58.44389026207513],[-129.2562970511182,58.442459948494836],[-129.25376069842775,58.44018461957053],[-129.25001890885952,58.43729126912908],[-129.24672050975082,58.434953317068064],[-129.24396264955118,58.432287780327975],[-129.24206731510395,58.4289724333293],[-129.24135614876002,58.42469405367919],[-129.24129500649698,58.42029224145391],[-129.24286778182912,58.415941034139344],[-129.24669954690043,58.40981010066116],[-129.24915183152422,58.406201489989556],[-129.25184973132866,58.40464474053592],[-129.25973849132987,58.4011293371954],[-129.27945354431347,58.395672763604864],[-129.29389224711295,58.394071572412415],[-129.31276192937307,58.39084126586005],[-129.32514436529584,58.390158874438505],[-129.33742099125865,58.38957680737347],[-129.34926413097128,58.38906729441165],[-129.3570699162302,58.387713785519445],[-129.36096500654298,58.38661018836681],[-129.37191913419153,58.38512331023449],[-129.37474889442288,58.38527713005534],[-129.38290224228302,58.38524341547796],[-129.3894074568293,58.38440592320549],[-129.3923441727741,58.384394921712016],[-129.40104487472786,58.38457997953342],[-129.40661932705797,58.38637132485232],[-129.41045977367745,58.38812547437456],[-129.41235405230069,58.39057588515998],[-129.42168890403713,58.389844890875366],[-129.42821690067927,58.39002946365867],[-129.43355062763692,58.39039693845297],[-129.43377664854106,58.39080458502663],[-129.43555651348288,58.39284422816907],[-129.4387807253883,58.39659950979173],[-129.43970352511454,58.39939794298514],[-129.44094714246708,58.4017298437742],[-129.44463806007968,58.40702795415963],[-129.44631011539073,58.40907927355375],[-129.44820927994272,58.41163705602522],[-129.44881664483177,58.41494687048373],[-129.4485264648862,58.41677874634835],[-129.44996107071358,58.41768573508714],[-129.45693575678007,58.41833396325953],[-129.46260572407488,58.41887154475805],[-129.46891615138549,58.4188351863285],[-129.469052651016,58.42026070756503],[-129.47177952233773,58.425906698874996],[-129.47427241700353,58.430749821789966],[-129.47528357567992,58.43239550518889],[-129.48114049088807,58.43116594595931],[-129.48839190360292,58.42928889292954],[-129.49373484652307,58.42966291604943],[-129.49791770462645,58.43203517778227],[-129.50216141879005,58.43183518662118],[-129.5116061994023,58.430753755409995],[-129.5171360717723,58.429692897913064],[-129.51810134464625,58.42894868097109],[-129.5209025382933,58.427662201135256],[-129.52499724293125,58.425640791171595],[-129.52789633085496,58.42390219763325],[-129.5314364547352,58.4215984826743],[-129.5345417960162,58.41924315084105],[-129.52774099835182,58.41676079742225],[-129.52498642488038,58.41517905607546],[-129.52275807215239,58.4128555003835],[-129.5213778616898,58.409323375486466],[-129.52126613313052,58.40423020490898],[-129.52125944042362,58.40388884407705],[-129.52134379327686,58.39765813356249],[-129.52240885435558,58.39159057870917],[-129.52299095774433,58.38833082526858],[-129.52317319166667,58.386789179270025],[-129.52235099042647,58.38381781292082],[-129.5215483331198,58.381942423652255],[-129.52267163345698,58.37861463420792],[-129.5265298492788,58.37608705399925],[-129.53299475759272,58.37346404409832],[-129.53857406055295,58.3702887791329],[-129.54069770101265,58.367995073132626],[-129.54423372605615,58.36093675596494],[-129.54513825967075,58.35750670536836],[-129.54641368084307,58.356295763205445],[-129.54981990216342,58.3532401450683],[-129.55408086816843,58.34955971685122],[-129.5540183225036,58.346703385099154],[-129.55392885952736,58.34276030922581],[-129.55985556759208,58.34077923947581],[-129.5686734863371,58.3369507454304],[-129.57767738895654,58.33197530504398],[-129.580985791371,58.329550577199406],[-129.58865867220106,58.32355826569655],[-129.59635649782012,58.318589381007136],[-129.60343254200603,58.314939854609875],[-129.6067049163151,58.31114036637089],[-129.60791559215912,58.30736018784854],[-129.60766652133722,58.30599182013129],[-129.60720692731732,58.30051295930269],[-129.60701612134295,58.296914223514],[-129.61107423843808,58.29442366723318],[-129.61776997885323,58.29323704593863],[-129.62241359318514,58.292518818065005],[-129.6258596600605,58.29157210934744],[-129.63004478025678,58.28977852372376],[-129.63431992744864,58.28722743899185],[-129.63438947272493,58.28574266733713],[-129.63138359951407,58.28250766358159],[-129.6290619725728,58.280584231568355],[-129.624439981899,58.27786907509811],[-129.62116840979374,58.277031628480984],[-129.61778960627277,58.276143072731095],[-129.61495189061003,58.27541961811957],[-129.60881604726305,58.27266383328872],[-129.6066008928366,58.27062039417441],[-129.60580695676214,58.26914090382895],[-129.60367151004246,58.2659000503644],[-129.6032760667138,58.26298096979928],[-129.60218139636493,58.262480116484454],[-129.59969767899034,58.262834286896414],[-129.59331094180783,58.26310417230594],[-129.59047696457986,58.26232623161981],[-129.58372755049098,58.26094283197365],[-129.5764198974575,58.25888201267054],[-129.56900532556423,58.25669785367784],[-129.5651856245119,58.25546932649239],[-129.5608252513802,58.2542370655797],[-129.55364161430822,58.25257618860506],[-129.55144435963518,58.25126840463213],[-129.54967503981797,58.24957185375857],[-129.54550616419726,58.24724673892775],[-129.54115683209682,58.24647189837279],[-129.53500510193444,58.24737088901003],[-129.53159399745044,58.2499138829388],[-129.52657260117434,58.252975355778496],[-129.5217157130561,58.25380374940422],[-129.51470890492118,58.25544308690156],[-129.50725820210417,58.25651853084745],[-129.4988289008841,58.25743034528424],[-129.49820854008112,58.25892021797839],[-129.49444711601615,58.26031213456119],[-129.48907628918616,58.26245565700198],[-129.48618819533198,58.264309886178744],[-129.48104067977877,58.26695947791313],[-129.47677676016627,58.27042169698132],[-129.475646607897,58.273398365807836],[-129.4742676029758,58.27489876313982],[-129.46999429154081,58.27800155970977],[-129.4594289435309,58.28080806027197],[-129.45480873984255,58.28289486766376],[-129.44785135472702,58.287332928609764],[-129.44689959045866,58.288705248612175],[-129.44439981459865,58.29398125225589],[-129.44135148143837,58.29896573956282],[-129.43921133840587,58.30046727222865],[-129.4313037746794,58.30662711995664],[-129.42778154778335,58.30967339649109],[-129.41992054328043,58.31280302301405],[-129.40480698909946,58.31694268376506],[-129.39153084159705,58.32078265966092],[-129.38407516981553,58.32254298705511],[-129.37736299216868,58.32354737149655],[-129.37399646217688,58.323335311559816],[-129.3677824868908,58.321765720771204],[-129.35819925049321,58.319812752162804],[-129.35645876532604,58.319424873168565],[-129.3493759459901,58.31757063695408],[-129.34447673285527,58.31684788532914],[-129.33967999532655,58.315277761590444],[-129.33356622477493,58.312958380964105],[-129.32756240585118,58.31065399859388],[-129.3232981061184,58.30854900447916],[-129.3202248921562,58.30638753185669],[-129.31758419032704,58.303828959287515],[-129.31714589038853,58.303606151858254],[-129.312012057199,58.30140549246956],[-129.31036806273465,58.30032281033013],[-129.30805824815198,58.29816028764769],[-129.30478941746543,58.29715346088805],[-129.30044085757797,58.29642465932066],[-129.29815687287373,58.295977539452885],[-129.28978241072517,58.29435874348362],[-129.27795948899103,58.29411743427537],[-129.27080614877892,58.294381522804855],[-129.26202023105105,58.293966053533275],[-129.25343296748576,58.292511940431005],[-129.2464658568953,58.2904790863597],[-129.23678179867312,58.287891398975376],[-129.22786451471964,58.285751846287475],[-129.2154177587437,58.27906017372795],[-129.20458272995202,58.27075680445551],[-129.19943683274036,58.266369297186635],[-129.1917789326797,58.26046013244447],[-129.17969891267808,58.25587724092442],[-129.17037841862046,58.255055433861564],[-129.1612614620255,58.25359932105755],[-129.1574536134239,58.25207179019928],[-129.14831953641718,58.2487825273573],[-129.1399529617963,58.246184466454835],[-129.11816767386168,58.24390721108919],[-129.0941146909035,58.242720855416806],[-129.08708295470603,58.243143238839366],[-129.07455514830883,58.246772525722726],[-129.06723530523777,58.25165621827536],[-129.06368025632625,58.25383948884966],[-129.06324635796096,58.25366971742411],[-129.05845160577795,58.25007783672402],[-129.0490893315654,58.24421803170778],[-129.03758399957692,58.24075977186878],[-129.02848217337598,58.239977247912435],[-129.02317530061345,58.23970159677366],[-129.0223080922733,58.23947857905232],[-129.0174175278443,58.236920626908905],[-129.0117731509881,58.23487349651854],[-129.00906224094,58.23401803074175],[-129.00212102484133,58.23209839852736],[-128.99106439631777,58.2299468179737],[-128.98435080864252,58.229332721605225],[-128.97872133131995,58.22928709925881],[-128.97719931593605,58.22768601592048],[-128.97251970882044,58.223639753460304],[-128.96546485531195,58.219879427342214],[-128.95993354045396,58.21754932383584],[-128.95267158557817,58.21539184615071],[-128.9447684640791,58.21432595858511],[-128.9389238653582,58.213924146884246],[-128.938923211154,58.213699602589124],[-128.9367459176212,58.21135797969336],[-128.93457235569582,58.20924979132398],[-128.93110814500727,58.20833747596811],[-128.92754151711375,58.20914291636472],[-128.92257157510826,58.21006865921472],[-128.9177020955489,58.20996805827447],[-128.91488686731455,58.20940050194224],[-128.914451241351,58.20853869612005],[-128.91303155347296,58.20551560362781],[-128.91161575577416,58.203453510756226],[-128.90501933363504,58.20294982333733],[-128.9008064184885,58.204505069789064],[-128.90080740423736,58.20484636636796],[-128.89962903734855,58.207871851625086],[-128.90028791812549,58.20976181191154],[-128.9002980056147,58.21295922752486],[-128.89900693915152,58.21444223548008],[-128.895547054081,58.21501994428099],[-128.88689090168995,58.21469448426649],[-128.88039781452756,58.21372923717493],[-128.8742270746287,58.212936419331925],[-128.87206449879397,58.213566557893984],[-128.87304026823074,58.213851055536416],[-128.87489278271585,58.21779041574324],[-128.87641751399073,58.22047032735132],[-128.88281375369695,58.22435707585962],[-128.88283444619444,58.22955731950848],[-128.88371319356898,58.233787045281204],[-128.88307401736003,58.23669306783429],[-128.88080949675887,58.23852915519647],[-128.87756581038553,58.2409880070486],[-128.87487020048044,58.24362367412989],[-128.87379652072926,58.2467096337556],[-128.87370098774542,58.25070883404917],[-128.8751213306132,58.25391210553355],[-128.87643191384691,58.25733330927443],[-128.87763586339705,58.26099933160489],[-128.8780833052555,58.264708520128885],[-128.87732415228402,58.26470681565242],[-128.86713753505572,58.264089218374686],[-128.85998453779624,58.26289431103113],[-128.85532295140226,58.26193354166126],[-128.84871127248516,58.26022353493028],[-128.84469503064773,58.257766642179014],[-128.8366749170002,58.2543523236822],[-128.82735397813119,58.25218653689298],[-128.82172231155837,58.25161334610784],[-128.81479049095284,58.25082466169424],[-128.81121492298303,58.24985763089476],[-128.80179228056383,58.24842879010754],[-128.79345368348467,58.24791986593546],[-128.78977054630218,58.248095228318626],[-128.78804197633087,58.250897564461425],[-128.78707091725002,58.25421410336457],[-128.78317174359927,58.25610033192668],[-128.7767806197005,58.25495716391367],[-128.77006401908199,58.25387430579274],[-128.7610735921982,58.25342170339223],[-128.75620146433099,58.25571333778357],[-128.7539270179843,58.258508436108926],[-128.7512195503926,58.25913875233757],[-128.74179678833747,58.25919667158714],[-128.73388558864698,58.26050757245914],[-128.72630369815133,58.26188317034287],[-128.7231613836517,58.262800167563746],[-128.71709134000022,58.26691096525282],[-128.7134003489039,58.27113513759672],[-128.71144883943532,58.27366249030083],[-128.6985542752935,58.27142510503246],[-128.6914035617369,58.27124516799176],[-128.68273323859898,58.27176882220143],[-128.6806773382928,58.27188170204242],[-128.67765075314998,58.2674781762937],[-128.67484261226812,58.26410314818945],[-128.66531655698176,58.26164291821805],[-128.65578437939078,58.26043956372929],[-128.64701501528083,58.25946301601276],[-128.64625677649678,58.258660650221984],[-128.64335321537612,58.25271829987698],[-128.6406577786638,58.24882855199991],[-128.63753130034175,58.244650866900415],[-128.63450833046306,58.242078731802415],[-128.6352704324206,58.24116566600926],[-128.63831086268388,58.23842959062792],[-128.63735151526066,58.233796242304656],[-128.63292166192974,58.23155710749269],[-128.6220999297787,58.23092470111363],[-128.61625196533063,58.23182911725364],[-128.61302148250246,58.228173944097726],[-128.60761996141062,58.225423074288656],[-128.60525173287982,58.22217311000394],[-128.60213271294086,58.21770732506588],[-128.59738801110117,58.214449448042295],[-128.59307031149788,58.212269833997944],[-128.58984288247333,58.20826396279743],[-128.58651940885244,58.20203273683213],[-128.58243690517762,58.19694764146023],[-128.57887715503966,58.19482491819116],[-128.5779090308425,58.19379282768997],[-128.57900713418695,58.190484912909625],[-128.580231400173,58.18351061895554],[-128.57939395466755,58.17808471653368],[-128.57790781361354,58.17265336396841],[-128.57543619672606,58.169791319130276],[-128.57350465780118,58.16744869961036],[-128.57038684917327,58.16389855787779],[-128.5678172689098,58.15954762947709],[-128.56534694354858,58.157376901628794],[-128.55585640897675,58.15456796724753],[-128.55570393671064,58.15454505858273],[-128.55568089410426,58.15454998802358],[-128.55559526879284,58.15460325532039],[-128.55550715918875,58.15479126760561],[-128.5557601279364,58.15496267206446],[-128.55503658369605,58.15557138625817],[-128.55419930438137,58.154314457161156],[-128.54845832952907,58.14569319935894],[-128.54466407546352,58.13999364410144],[-128.53869057828965,58.136564548325694],[-128.52775903234541,58.130288118867576],[-128.52504245892186,58.13149996825234],[-128.4945618499224,58.14509250318451],[-128.49457945844082,58.14532451908808],[-128.49454969823148,58.149383804025405],[-128.49311230131113,58.15378359154964],[-128.48844595701155,58.156860526646064],[-128.48832902301484,58.15776963442167],[-128.4813951619942,58.16056514097647],[-128.47069065607334,58.16208291225444],[-128.4660400498799,58.162590606090035],[-128.45080539869426,58.16295986199929],[-128.44433301009238,58.16202747183714],[-128.43830876504114,58.15904830517608],[-128.43036457801085,58.153885847801504],[-128.4266121815524,58.150559703573926],[-128.42445273902732,58.15055390164838],[-128.41966295809874,58.15470807610742],[-128.41790418830246,58.15790949878367],[-128.4137339879908,58.164638325302455],[-128.41207915379533,58.16829576515321],[-128.40890534327633,58.172456405076346],[-128.40681335123872,58.17645389009485],[-128.404846912511,58.17862627676635],[-128.40256637436232,58.17987040392795],[-128.3992055099401,58.18072077287396],[-128.3917476129862,58.18064748596491],[-128.38937555164333,58.18018693224253],[-128.38246298746338,58.179708321494346],[-128.3759842725234,58.179176773985404],[-128.36613861898383,58.18006024607843],[-128.35735938274075,58.182262151808516],[-128.3513947135557,58.18413579014287],[-128.3449630696522,58.18869314146834],[-128.3350962670274,58.19122683905505],[-128.33172864945476,58.192587418495485],[-128.316961974282,58.19751250921422],[-128.3033928920468,58.20175091661075],[-128.30273823969378,58.20221111634966],[-128.29423178771714,58.207555823358646],[-128.29044827586367,58.215486311461994],[-128.2892062203343,58.21947637081014],[-128.286549200426,58.22438848207557],[-128.28992272043808,58.231029645349636],[-128.2916252740788,58.233317307904436],[-128.30162860654116,58.23832742204154],[-128.3017312916332,58.23855913187545],[-128.30156914244816,58.24278233878076],[-128.3005415319868,58.24689467642552],[-128.30026627293282,58.25151496599962],[-128.29772087802522,58.25579697328036],[-128.29636930674906,58.25962751451475],[-128.29723712631775,58.25973839702287],[-128.30403433687613,58.26182207312761],[-128.30812462794984,58.26377234934809],[-128.30678371629972,58.267091005331714],[-128.30231343872117,58.269242029132045],[-128.29827008293208,58.27203215753635],[-128.299321810898,58.27437590097292],[-128.30456319186314,58.279647214502845],[-128.30752267830252,58.28572087764634],[-128.31234161634802,58.290361660425795],[-128.31630293677142,58.29443337379587],[-128.31658278236347,58.29826313710116],[-128.31404583246731,58.30144992249956],[-128.30923993359866,58.30423559864116],[-128.30736540977233,58.30657571622916],[-128.30143683002032,58.312155299961084],[-128.2962610267422,58.31808100325486],[-128.29009636296385,58.32485853746366],[-128.2862512852528,58.328156887533154],[-128.2781677259367,58.332128624858896],[-128.26512954822172,58.340718492777015],[-128.2620249751594,58.34533281822901],[-128.2614288828169,58.34915959263473],[-128.2608116876255,58.354468547630425],[-128.26240011377251,58.35750430010439],[-128.26572231187012,58.36060070744883],[-128.26761950052568,58.36478078530803],[-128.26889684794472,58.36690570296624],[-128.27062711744807,58.367415406092704],[-128.27536096723648,58.37064051986601],[-128.27761302357723,58.372928538204505],[-128.27834792255675,58.37487396822209],[-128.27844826782894,58.37544705526716],[-128.28036698392972,58.3782526033924],[-128.28065070649257,58.38151690652528],[-128.28420899519486,58.38357618839187],[-128.2913541562413,58.38578102999365],[-128.293294639269,58.38687067744251],[-128.29499806586801,58.38985039149274],[-128.30158988523146,58.392845529232616],[-128.30678067952286,58.3950829750876],[-128.30410808962446,58.39999656545219],[-128.28998389457746,58.40708994469108],[-128.28647325373657,58.409529577353155],[-128.28308297992297,58.41061088723344],[-128.273131232627,58.41451522713407],[-128.2619710417875,58.41887019161267],[-128.25881516278986,58.418869179017825],[-128.24555166202524,58.4180667235622],[-128.2315942806327,58.42002272943642],[-128.22609995885958,58.42348148563558],[-128.22422729477927,58.425129006965165],[-128.2104794701346,58.427357750370845],[-128.20163586349472,58.42904710663512],[-128.20088261239812,58.4286372732596],[-128.18795756505727,58.42681769502138],[-128.1782613070689,58.427342790819324],[-128.17184229158602,58.42732051769504],[-128.1626812527741,58.4283657603084],[-128.16193096826146,58.42766827376583],[-128.15739529412127,58.425594382449994],[-128.14392581567327,58.42416553327978],[-128.13935336396747,58.42413931520565],[-128.1271575506639,58.424538687513035],[-128.11963984080776,58.424962340030916],[-128.11866676050425,58.4245644997111],[-128.11108896251682,58.422464991100824],[-128.09801366305896,58.423315550616245],[-128.09603996918224,58.423992843427506],[-128.08901261555476,58.42738880021584],[-128.0822996481761,58.431183673724],[-128.07975640527835,58.43334237152479],[-128.07704185748423,58.43280939855688],[-128.06868298841584,58.43168046257004],[-128.05987014192198,58.431465005844636],[-128.0471039698546,58.43288960655137],[-128.0379343268389,58.43415096359805],[-128.03215453276349,58.434633259245714],[-128.02767042855018,58.435634689283596],[-128.02152281125402,58.43811576498816],[-128.0181076303827,58.440043834372325],[-128.01207746305607,58.442010816435165],[-128.00649922405876,58.443000891465225],[-128.00455110863805,58.442535892725225],[-128.00242431021587,58.4401875758114],[-128.0001981525995,58.43523633060743],[-127.99877728572766,58.43346126173857],[-127.9951035652679,58.431908096510895],[-127.98811126348228,58.42937998919813],[-127.9844501275344,58.428005978382416],[-127.978358212494,58.426038902497915],[-127.97365129520368,58.42553307973064],[-127.96539391004212,58.42594096791566],[-127.961833903685,58.42655853248318],[-127.95720415785057,58.42753277425085],[-127.95557692163607,58.42772699086697],[-127.95372327710847,58.42764607470162],[-127.95180524398182,58.426299837356346],[-127.95027885498234,58.42409478870546],[-127.94856684242791,58.42034780796262],[-127.94417832078926,58.41750152305333],[-127.93512506947854,58.41716470813018],[-127.92789095061579,58.41829201019529],[-127.9234502273454,58.41875949687201],[-127.92107178376455,58.419071766987706],[-127.91816436664172,58.419687860342584],[-127.91686164438194,58.41976025480833],[-127.91583994862475,58.41897553476592],[-127.91374818783912,58.41625731038582],[-127.90381427814933,58.40680721972543],[-127.89602018131957,58.403145448777636],[-127.89116214575121,58.40166912183041],[-127.8838027558846,58.400227591572104],[-127.86842449432493,58.39946273346596],[-127.85900831077694,58.398156110718354],[-127.85661460407914,58.39818908752016],[-127.85437351062572,58.39907299332025],[-127.8527665789342,58.39961590191575],[-127.85326162981151,58.40085727782749],[-127.85144776971357,58.40162750666314],[-127.84853637813022,58.40217928587176],[-127.84758812448611,58.40287473713381],[-127.84735375544184,58.404763688530494],[-127.84383970348605,58.40641016459359],[-127.83898758338988,58.407329479245284],[-127.83770360236832,58.407795964870196],[-127.8339245234561,58.40842210000127],[-127.82886956278385,58.40968503312442],[-127.82635021102587,58.41165878726274],[-127.82215375577071,58.412685345912976],[-127.81845805130827,58.41273521271195],[-127.81486664873847,58.412774595333296],[-127.8152606525559,58.41186234370605],[-127.81382239553469,58.40902615002496],[-127.81147072978438,58.40756712870275],[-127.80833839632437,58.40577731459444],[-127.80643025679828,58.40450084117374],[-127.80419171275749,58.403156928189155],[-127.80384209893786,58.4002522293348],[-127.80355403088774,58.39636795241623],[-127.80284688180204,58.39523701391134],[-127.8023531719185,58.39398648809757],[-127.80294458205631,58.39266758108102],[-127.79873832668292,58.39100868803886],[-127.79315215204633,58.39016719721726],[-127.78852588748077,58.38891765702129],[-127.78676062965039,58.38831250801421],[-127.78624920003111,58.38665810736476],[-127.7850242947044,58.383702180076696],[-127.78407716899675,58.382008654904396],[-127.7840308399582,58.38097665267898],[-127.7847327175931,58.379656390552135],[-127.78567014960863,58.37879094692466],[-127.78733343249078,58.37710774318318],[-127.7868037572361,58.37500465103916],[-127.7872793650767,58.37351677772998],[-127.78759441550315,58.370890680885374],[-127.78846114168952,58.36847276959992],[-127.79039458016423,58.36560071252781],[-127.79277201035276,58.362947203989016],[-127.79272392684459,58.361861374994156],[-127.78938695800808,58.3601817567203],[-127.78599273411398,58.35966111625167],[-127.78120838290727,58.35955385494839],[-127.77957718217237,58.35957541160575],[-127.77815579487792,58.35936072536357],[-127.77724070890261,58.35834021605963],[-127.77577566429476,58.35716533152575],[-127.77401449226271,58.356676734538475],[-127.77063105796303,58.35637106895964],[-127.76726644596009,58.356415250677486],[-127.76585867531305,58.356550437660744],[-127.76455339442091,58.35650468885372],[-127.76293868925018,58.354415785815696],[-127.76220594313004,58.352656532954406],[-127.76106523840075,58.35141441012207],[-127.7592695231302,58.35011798565121],[-127.75589420362897,58.3499914323816],[-127.75244071779335,58.350494329186766],[-127.75081203237451,58.350515509622845],[-127.74928444590589,58.350301908300764],[-127.7478268740798,58.349351119904924],[-127.7439240154418,58.34705825080909],[-127.74094229008199,58.345956526540014],[-127.73020921748748,58.34642705457678],[-127.7176579850802,58.35000859424597],[-127.70699006844518,58.35453479879869],[-127.70409021321514,58.36033587051405],[-127.70422627323038,58.3634677500166],[-127.70433324320055,58.365917617331306],[-127.70236197461955,58.36806154448691],[-127.69726978530771,58.36845799531825],[-127.69395990521535,58.36735933107266],[-127.68892352414896,58.36644385865702],[-127.68424292268365,58.366277973283374],[-127.67769796478814,58.36573110678632],[-127.67354630240024,58.36520809411072],[-127.67079901851984,58.36443410176471],[-127.67257956181744,58.36293052238554],[-127.67595258471225,58.360500271981365],[-127.67433916194416,58.358284640982454],[-127.67048306158335,58.35702162698847],[-127.66415114969169,58.356300895865814],[-127.6593878785822,58.35669186105437],[-127.65518330470549,58.357542680862],[-127.65442841513905,58.35766867521278],[-127.64965119597257,58.35772725690765],[-127.64611217010885,58.356271124499884],[-127.64282269209761,58.352890457667456],[-127.64066181850637,58.35058238495429],[-127.63595409491144,58.34972384142754],[-127.63193229869765,58.34964693083627],[-127.62924054280607,58.34967951700162],[-127.62855045152436,58.34791798990205],[-127.62857603802884,58.344624852221926],[-127.62908898673163,58.34088028241719],[-127.62968088129337,58.3389158439218],[-127.63264409445821,58.33701021357847],[-127.63684323571611,58.336247701151926],[-127.63932659346919,58.33497174793486],[-127.64061379098236,58.33344322548135],[-127.64037461522757,58.3318435157239],[-127.6388081528375,58.33088396152636],[-127.63660847433118,58.33091071987445],[-127.63370512782717,58.330323117337315],[-127.63196642313953,58.32927579605475],[-127.6301927820654,58.32742869553004],[-127.62793491148057,58.32612051406499],[-127.6263428817146,58.32453827769708],[-127.62288594154501,58.32288874399265],[-127.6180643548798,58.320989564698685],[-127.6158073010359,58.31968119007549],[-127.61927451991757,58.31768117815447],[-127.61871277278621,58.3164422309456],[-127.6151182715777,58.31550681210599],[-127.61218561954074,58.31420649745304],[-127.60992923194144,58.31289915667042],[-127.60920706406428,58.31183941560894],[-127.6086457400233,58.31060043514038],[-127.60692018284631,58.30981977143445],[-127.60536427346082,58.30903818547919],[-127.60295036168147,58.30799859235702],[-127.59956846275838,58.30684365764032],[-127.59917337353879,58.306709196897685],[-127.59628010238495,58.30629802732781],[-127.59409706833935,58.306679657820176],[-127.59253391457088,58.305719582191074],[-127.59250729029789,58.305097058896635],[-127.59194278725272,58.30376828594889],[-127.5880008897868,58.30256920022572],[-127.58641533806306,58.301075148046486],[-127.58645861097068,58.300088203951454],[-127.59079460286515,58.29903597610342],[-127.5947202845272,58.299564073348876],[-127.60181479640234,58.30061996546753],[-127.60723370517371,58.30050146514369],[-127.60983665371631,58.30047034112162],[-127.61568465718675,58.30023862989503],[-127.62491460423571,58.300477594777746],[-127.6308812860613,58.30052210347916],[-127.64405407304184,58.301627650692005],[-127.65045309347948,58.30160316389074],[-127.65370669442548,58.301572185438964],[-127.65773293111782,58.30186379552274],[-127.66245127359349,58.30317920794734],[-127.66477283445627,58.30417399661147],[-127.66935318521101,58.30475468281773],[-127.67494915422715,58.303652651760906],[-127.68078222287097,58.30050940175725],[-127.68125690485572,58.2989053771231],[-127.68452433748205,58.29418694804702],[-127.69081756602009,58.28913417480474],[-127.70288361247594,58.284825125805995],[-127.7075888594688,58.28328409295603],[-127.7130636053454,58.27956940767958],[-127.71512340716677,58.274578363126246],[-127.7135689540231,58.26877156335797],[-127.70677654978202,58.26457558759009],[-127.69763842206771,58.26126184235545],[-127.69532885768666,58.260491984892255],[-127.68810655602341,58.2588143086618],[-127.68503923718256,58.25798197730957],[-127.6828418487795,58.257327216162345],[-127.68029578463228,58.25604835035671],[-127.67882070619514,58.254468781330395],[-127.6789010988233,58.25126279445145],[-127.68139192487301,58.248726917693865],[-127.68370422032802,58.244532402694745],[-127.67973892969876,58.23784898011994],[-127.67392320057765,58.23352269091963],[-127.67004599781473,58.2288848201495],[-127.66960820367646,58.22369244650726],[-127.66639482962653,58.219396394034945],[-127.66078543132976,58.217239581022675],[-127.65641643915933,58.21626119783767],[-127.65300884890026,58.21492971186918],[-127.65017915147654,58.21205596813336],[-127.65172485346991,58.21015178091858],[-127.65796464575635,58.20933872752468],[-127.66422938388155,58.20909062527664],[-127.66981117897957,58.20806074853808],[-127.6744608564532,58.2053725417244],[-127.67458218477374,58.20314472747222],[-127.67200433692392,58.20106728083939],[-127.67102745182824,58.19839533926718],[-127.67291408143336,58.196944494987505],[-127.67877092938903,58.19481561818453],[-127.68197085562214,58.193752167518895],[-127.68520799146853,58.19109028029118],[-127.68575664356436,58.18868655403044],[-127.6837378570676,58.18699732679721],[-127.6792380012801,58.18545585929393],[-127.67649162441208,58.18445788077098],[-127.67562116639014,58.18429819892862],[-127.67447628372487,58.18283132500599],[-127.6774017595702,58.177830610312355],[-127.68245532891295,58.174742137113704],[-127.68464202626416,58.17272184793588],[-127.68354818797796,58.169934855438974],[-127.68067709676296,58.16848074928609],[-127.67491231730715,58.16763727503151],[-127.66708411357644,58.1665319804749],[-127.66358473147258,58.16555211924189],[-127.66218260530427,58.16305607285278],[-127.6620109761023,58.1615142351327],[-127.66195936908031,58.16025816070673],[-127.6598053921561,58.157834264490326],[-127.65637741313331,58.15604547091222],[-127.6540618217045,58.154925082621745],[-127.649251578927,58.15350325278277],[-127.64091320608652,58.153031118334376],[-127.6355786957527,58.15206404644267],[-127.63264039838596,58.15152538862613],[-127.6301079501018,58.15035338832684],[-127.62706324519351,58.14987874044852],[-127.6219465686919,58.1515385511565],[-127.61802972388085,58.153515807617595],[-127.61395668891821,58.1542471204439],[-127.60984571761965,58.15412601415441],[-127.6042080629686,58.153628108318046],[-127.60009787754983,58.15349771867104],[-127.59310290332307,58.154146555760406],[-127.58612392488531,58.15525262485593],[-127.57957669842561,58.156353239468494],[-127.57551642642002,58.15748715454064],[-127.57173243748495,58.16014366892163],[-127.569432294732,58.16211846943604],[-127.5671830990323,58.16260257374287],[-127.564467815268,58.16228421615418],[-127.55803095977467,58.16069858075214],[-127.55431194756538,58.15953894353016],[-127.55179817580579,58.158769187752],[-127.55069100887252,58.15809981108091],[-127.54952076334598,58.155779541442676],[-127.5486741127269,58.15344655436171],[-127.54812759044715,58.15053563215832],[-127.54903214779459,58.14875688951039],[-127.54978470777982,58.148694331596666],[-127.54467890502613,58.1478915818675],[-127.54176718926934,58.14803282727025],[-127.53707429164041,58.14683009465878],[-127.53663887630022,58.146727376236434],[-127.53259876426098,58.14550802870772],[-127.52800408720091,58.14401663418843],[-127.523106791237,58.14298630272135],[-127.51686430384254,58.14077723575743],[-127.51323240841181,58.138933368603745],[-127.50811502282474,58.13784216216261],[-127.49956842886935,58.14027182154531],[-127.49359240139367,58.14221453019335],[-127.48773473565625,58.144451859228646],[-127.4865772268501,58.145200727828104],[-127.48468267691544,58.143624029828835],[-127.4813747756945,58.1418295722284],[-127.47717487610343,58.13919217761197],[-127.47579290901811,58.13686473098716],[-127.47315707517228,58.13563713723004],[-127.46738305031396,58.134273369624964],[-127.4652129449327,58.133947071238936],[-127.4624963850062,58.13351899715589],[-127.4595274476976,58.13195370826961],[-127.45942704208868,58.12921722750976],[-127.45685581894323,58.12673204522053],[-127.45321497102667,58.124599507125566],[-127.4489308972311,58.12253666955893],[-127.44599310785911,58.1218773069596],[-127.44328184253258,58.12150265690659],[-127.4382850555833,58.12058706330463],[-127.43437276102848,58.11988406149598],[-127.42461885695664,58.11865981957629],[-127.42179026404827,58.11806160300832],[-127.41749884761708,58.1157106670416],[-127.41278403499733,58.11359743328804],[-127.41060811029533,58.11309980551487],[-127.40678595187977,58.11176679454136],[-127.40538589073692,58.10875681899975],[-127.40459099607367,58.10756247299732],[-127.4024426539276,58.10473086390384],[-127.40429199231818,58.10208173029171],[-127.41166034693133,58.10001171883078],[-127.41870336565172,58.09777421793209],[-127.42219980343104,58.09603181638299],[-127.42761274152387,58.093577801064356],[-127.43328405936035,58.092323474791804],[-127.43657722033136,58.09092393020712],[-127.43714064869651,58.08858433178933],[-127.43848447892596,58.086909484835],[-127.44068902446362,58.08534203743881],[-127.4410455514833,58.0832828904286],[-127.44095979133324,58.08083360682327],[-127.44125647632765,58.08008547714808],[-127.44206423510002,58.078542030831265],[-127.4476222682151,58.07722548381988],[-127.4528723782014,58.076369778228724],[-127.45707049060545,58.07621641152348],[-127.46099088645215,58.074351701893896],[-127.46311022930001,58.073359224918036],[-127.46577993990738,58.072701736920266],[-127.46678684607612,58.07075208007856],[-127.46662368009372,58.06921015831114],[-127.46644612762826,58.06727349513578],[-127.46746865495415,58.065781397769825],[-127.47096864451206,58.06426206341624],[-127.47360583429014,58.06268932334669],[-127.4766402803146,58.060259519928245],[-127.47752162739003,58.05786243708128],[-127.47716572728932,58.05700477284728],[-127.47614582494943,58.05558902012384],[-127.47631543817158,58.05147663025523],[-127.4774214356734,58.04930145993871],[-127.48182334460404,58.045994849497774],[-127.48374586674834,58.04409777407366],[-127.48462961003747,58.04322637402463],[-127.4851513623096,58.04078390853306],[-127.48507880227916,58.04077013081225],[-127.48421875186789,58.03640671356574],[-127.49170674176801,58.02869926905401],[-127.50049202820507,58.02351894741575],[-127.50088316093455,58.0233732016744],[-127.50100456802865,58.017546155357486],[-127.5032757354545,58.01500771329021],[-127.5074011109397,58.01313936355165],[-127.51461259156618,58.01032050663936],[-127.52340711616827,58.00680113467821],[-127.52372593461068,58.006626979335095],[-127.53020344583356,58.00449771577148],[-127.53405989279246,58.00400473015056],[-127.537367448695,58.003338461943045],[-127.54249020836664,58.00225626791023],[-127.54765647434701,58.00231314688995],[-127.55089581835841,58.002616590796116],[-127.55459327958211,58.00365951892685],[-127.5599737613166,58.00372240399025],[-127.56519680388901,58.00252148883255],[-127.56742380245981,58.00163379217908],[-127.56877172397526,58.00037048078202],[-127.5688531080769,57.99712967757246],[-127.56974862179499,57.995297301092194],[-127.57168250494144,57.99247446696552],[-127.57298500277848,57.99006290882967],[-127.57503348447453,57.98746304897031],[-127.57828682734447,57.985432261656825],[-127.5824407583243,57.98453048486605],[-127.58790856017693,57.98407065102431],[-127.5925040742837,57.983441513618615],[-127.59393392899784,57.98160260580732],[-127.59343141056084,57.979777801575466],[-127.58969015496417,57.977596750584894],[-127.5783553056645,57.97629541144761],[-127.57480406067027,57.9762207096552],[-127.57394230795494,57.976168057885616],[-127.56662510515373,57.975913154029264],[-127.56133879803436,57.97540076325674],[-127.55667624234897,57.971569347520536],[-127.55580234205746,57.968438526406864],[-127.55665772873682,57.96551189736805],[-127.55853652271112,57.964125864451375],[-127.55920656407099,57.96206292386613],[-127.5547896772622,57.95896453184502],[-127.54915999612551,57.957827506469584],[-127.54604042338039,57.95774704607869],[-127.53924214138954,57.95691032558574],[-127.53359085361559,57.955198559483286],[-127.52985658384488,57.95301587653849],[-127.52556771641314,57.950381768789214],[-127.52213607486067,57.947665960580466],[-127.52091955946192,57.946764494559076],[-127.51617686524727,57.943399428740136],[-127.511537742554,57.940015093493926],[-127.50691560708476,57.9369804076978],[-127.50394097387363,57.93495899111624],[-127.50150821387588,57.93303909792381],[-127.50128934170438,57.930017387293894],[-127.50278370196887,57.926985348969566],[-127.49963902285951,57.92324282814501],[-127.49266947195473,57.92051232311042],[-127.48592643559017,57.91801226110876],[-127.4787464261455,57.91535520100712],[-127.47257697874929,57.913871115392155],[-127.46318672822902,57.915230892347395],[-127.45522695338117,57.917705051592485],[-127.44737277461257,57.92006990028436],[-127.43775687797036,57.92125084700399],[-127.43346742139936,57.921297067954086],[-127.42552996648186,57.92143607451101],[-127.41481946036126,57.921945077316565],[-127.40449727467208,57.92135435953884],[-127.39566574127659,57.92041522133802],[-127.3926286410698,57.91941505867668],[-127.38727912357136,57.916787825567255],[-127.38226539109277,57.91448892258044],[-127.37694469152346,57.91255194906259],[-127.36514830097428,57.91271823591097],[-127.35850180454212,57.916088359041886],[-127.35713891802575,57.91701752804254],[-127.3526792549004,57.92162133394027],[-127.3532033050993,57.927735853663584],[-127.35387352989875,57.93177605988091],[-127.34526767826321,57.93442961179097],[-127.3362504755382,57.93445751048814],[-127.32795200045297,57.93333801781163],[-127.32172581168406,57.93339093747036],[-127.31603825678616,57.93670455993381],[-127.31520966440146,57.93768186613458],[-127.30931787310558,57.941383076996644],[-127.302381358555,57.942707307142506],[-127.2943918534,57.941349380283086],[-127.28909473326108,57.940198279244946],[-127.28229079961197,57.938828169501704],[-127.2759852809201,57.93625949891643],[-127.27066820615013,57.934416932996214],[-127.26397048618155,57.933107712934834],[-127.2618391099706,57.930103932790495],[-127.26021852943256,57.92623387664462],[-127.258143130174,57.92150669507971],[-127.25768406886051,57.91712318297631],[-127.26153095542831,57.913084821073404],[-127.26563268083399,57.910309132964805],[-127.27054582380454,57.9062693608114],[-127.27117911602849,57.90586850544525],[-127.27382404815192,57.90127598207408],[-127.27144213275231,57.8970724889848],[-127.26885244663322,57.89304144170914],[-127.26574747344154,57.88976001224263],[-127.26717353754417,57.887287888985206],[-127.27312808205734,57.88569671952979],[-127.27526261576247,57.88196154376022],[-127.27559582941302,57.878880687446184],[-127.27822866950282,57.87741978461722],[-127.28311877939066,57.876179349417676],[-127.28437184806226,57.87508155840851],[-127.28557059907916,57.872333297621324],[-127.28426701707703,57.868299194831536],[-127.28415447633019,57.8681208273325],[-127.28332886315037,57.86567028092228],[-127.28341940444618,57.861739389780254],[-127.28642367877177,57.85845331203762],[-127.29150548106779,57.85658263032875],[-127.29499098034653,57.85500545505634],[-127.29174910199629,57.85081090160455],[-127.28560981628013,57.84961423640572],[-127.27654190745226,57.85071547946742],[-127.26829493055786,57.85067774007464],[-127.26057734519011,57.85040118849238],[-127.25697673033088,57.84821010030071],[-127.2562774771824,57.846323524800766],[-127.25424736019372,57.84303187142046],[-127.25214908464858,57.84094313939048],[-127.2500556733743,57.8389620032229],[-127.25006349682424,57.83570497501306],[-127.25318832826032,57.83288516829995],[-127.25760343701553,57.83021459162816],[-127.26086176993012,57.82829954611814],[-127.26246917983272,57.824856886204536],[-127.26033759001267,57.821629172452724],[-127.25419208572504,57.82019792919389],[-127.24768002303577,57.82059119923353],[-127.24277275716577,57.82109476155342],[-127.24170134261374,57.82110477669638],[-127.2351565557748,57.82047491193393],[-127.22941040370189,57.81795319728697],[-127.22470692116757,57.81445265814572],[-127.21962855801016,57.81283954096741],[-127.20550757091426,57.81284280380245],[-127.19962705049393,57.812779392013226],[-127.18794343291795,57.81206791828921],[-127.1806412657888,57.81110123287755],[-127.17760740346723,57.80970162167756],[-127.1734911995487,57.80790777461671],[-127.1687365862537,57.80594335190999],[-127.1662663547529,57.80593141707703],[-127.1667869919519,57.80497022081174],[-127.1637288575698,57.80302324153417],[-127.15660995709425,57.80085143782835],[-127.15039922402988,57.80055547386898],[-127.14954506480215,57.80056286894255],[-127.13564677782779,57.800673452562584],[-127.1229793453221,57.80293436952466],[-127.11061674191893,57.804518642286624],[-127.10411849864228,57.80547895658299],[-127.09948314294563,57.80819097903614],[-127.09778093801103,57.808608784016066],[-127.09226336294745,57.81025123175831],[-127.08288353535187,57.81152125480229],[-127.07518142774335,57.81152100366722],[-127.06972811793446,57.81161885183635],[-127.06067081921144,57.81305516522392],[-127.05588567480487,57.81416988307605],[-127.04883118112805,57.814387245029586],[-127.03941443202416,57.81429077902626],[-127.03174632628895,57.815705265061226],[-127.02783908667232,57.817790061864265],[-127.02678417224257,57.81848006616666],[-127.02382260030194,57.81993838846323],[-127.01860293031426,57.820821838588],[-127.01368449828345,57.82097607736394],[-127.00897698470104,57.82094909886407],[-127.00416804949198,57.82126364402915],[-127.00030410972577,57.8251775276319],[-127.00141747555352,57.83173646121718],[-127.00040715880603,57.83413953458597],[-126.99259590750222,57.83904285928638],[-126.9936547467613,57.84309022468669],[-127.00101726365945,57.8465250700232],[-126.99927142564937,57.84973220358621],[-126.99247561301627,57.852232428678086],[-126.98663881331771,57.85449192519099],[-126.98202358034024,57.858689071991776],[-126.9806382446919,57.863723615311024],[-126.97784619597344,57.86814046780559],[-126.97501070714023,57.87061962326584],[-126.97305901628853,57.8743932181642],[-126.96856472068754,57.879387591680874],[-126.9622423221096,57.884278419364655],[-126.95512868135913,57.88735327958257],[-126.94482122524667,57.89130282579111],[-126.93926631813822,57.892364963473746],[-126.93488372461466,57.892907225380064],[-126.93318801001529,57.892919121244326],[-126.93239592660714,57.89483575454411],[-126.93108768713387,57.89750966585122],[-126.92912468933376,57.901614733691325],[-126.92727093807459,57.905889500788696],[-126.92725295102895,57.90845571546314],[-126.92766735645118,57.909942241732686],[-126.92914990582054,57.91246212001094],[-126.93384716182103,57.9153183909134],[-126.94068510779681,57.91853625591488],[-126.94773138180622,57.922936679677086],[-126.94901091698027,57.92403119380604],[-126.95369515959392,57.9290044419444],[-126.95569734040166,57.93425702541164],[-126.95554740021356,57.94019800840604],[-126.95574210359685,57.94332808971446],[-126.95711939565652,57.945902358724574],[-126.9635194986303,57.951275825359474],[-126.96490837450132,57.952252792865245],[-126.97132314664836,57.95643243704645],[-126.97256774270426,57.96304537634954],[-126.96621123828736,57.96635772781892],[-126.96395058854277,57.96680478557509],[-126.95975778284438,57.96782204417191],[-126.9507293602328,57.96849685624794],[-126.94384102919705,57.970483929431595],[-126.94468171146225,57.973107062418784],[-126.94510398092916,57.974135966665926],[-126.9463553993201,57.979501942125786],[-126.9480324430932,57.98504437861248],[-126.94907428139929,57.989326132646966],[-126.94724287961621,57.989832666162414],[-126.93992117490757,57.99182262806876],[-126.93916845021523,57.99204328232298],[-126.93065636676657,57.99459744123216],[-126.92527229615325,57.99584624735599],[-126.91870976375884,57.99679786256547],[-126.91548926096104,57.996452086680556],[-126.90764397019633,57.99620057003158],[-126.9013002190891,57.99659350338409],[-126.90000906840415,57.996647080005815],[-126.89387595012896,57.99754073550025],[-126.8895671682493,57.9983950451947],[-126.88805876127452,57.99879093281755],[-126.88341550837578,58.00005105945351],[-126.87280534510221,58.00068615168433],[-126.86249297396442,58.00007121097294],[-126.86106732960955,57.99980224662611],[-126.85408685176549,57.999218967664504],[-126.84646272677338,57.99845994635489],[-126.83958509400411,57.99838672572402],[-126.83591990611436,57.9992262742384],[-126.8342983766373,58.00007988602245],[-126.82925971232565,58.00335056116091],[-126.82067726955476,58.006041680065664],[-126.8148694908863,58.00828463504929],[-126.81307589317124,58.009049310609676],[-126.8020563692145,58.00817377225594],[-126.79861800107405,58.00822129877998],[-126.78498380548947,58.00885847243895],[-126.7748487066344,58.010712281337895],[-126.77024556727717,58.01345775942961],[-126.77100363062247,58.01584921042869],[-126.77113845163365,58.018701894822144],[-126.76774327328927,58.01977131294894],[-126.75867143893727,58.021375503452845],[-126.73616066213503,58.025611163773924],[-126.71900325835567,58.02708647177474],[-126.69657645938202,58.02389419405995],[-126.66685806653199,58.023695894067124],[-126.66648682271136,58.0153707650976],[-126.67054579211653,58.00743629302699],[-126.67240746608532,58.00004223998401],[-126.67222595497053,57.997880697711466],[-126.67183756799106,57.99491264853101],[-126.66847037646278,57.99016500524892],[-126.65786220435537,57.988225762610945],[-126.65281762459924,57.987927513265134],[-126.64070316245466,57.986048113962575],[-126.63378065190953,57.982142168637985],[-126.6232474842667,57.975812258775996],[-126.62091034074666,57.974208094614994],[-126.61432844223584,57.9696087412338],[-126.60966727026616,57.96553867549068],[-126.60766439517502,57.96335853845145],[-126.60266826633823,57.9603126404463],[-126.59539983366535,57.9582278032641],[-126.59379597912982,57.957822224793354],[-126.58180985391473,57.95576655127334],[-126.5746558605783,57.953500657214505],[-126.56943147576209,57.95136971891668],[-126.56227491154705,57.94939030098281],[-126.55529570761023,57.94935674270258],[-126.547980005232,57.950293204531974],[-126.54550440650354,57.95068018937553],[-126.53851248164807,57.94579183443329],[-126.53364858283221,57.941827747218085],[-126.52962471005273,57.93895476643163],[-126.52442961282391,57.9355659074531],[-126.50435133780826,57.936199658970565],[-126.49865149347711,57.93674148349465],[-126.48480024684795,57.93723221051848],[-126.48007798400748,57.93721341307213],[-126.46979547670922,57.93636181611225],[-126.46146337276717,57.93437221557837],[-126.45464450548275,57.93216162041223],[-126.44654651387032,57.92938077070195],[-126.43791027686314,57.92687036863437],[-126.43642106216556,57.92634591038692],[-126.43155576870667,57.92312289806187],[-126.42819443976113,57.91973340355095],[-126.42484614250867,57.915949036718764],[-126.42183716509246,57.91131121035035],[-126.4192168113834,57.90843954940444],[-126.4133578738022,57.906807061858146],[-126.41182379791157,57.90834597906621],[-126.41172704442053,57.912616832931036],[-126.41347571397519,57.91599378203077],[-126.41338180997076,57.920219803618636],[-126.4111557327807,57.92396795785787],[-126.40533973446652,57.924847076459876],[-126.40022640821081,57.923337313433514],[-126.39595705579626,57.92245288216344],[-126.38877088167578,57.922411239333904],[-126.38221787553934,57.922771127387385],[-126.38146629512924,57.92276430924778],[-126.37784585170667,57.921599313532184],[-126.37308404247321,57.918768665205455],[-126.37099701791041,57.916361080891846],[-126.36820163698553,57.91206239173188],[-126.36560182439362,57.90849880767149],[-126.36030726361821,57.905732011480715],[-126.35284758648041,57.90374233020586],[-126.34987505738256,57.902530028594335],[-126.34470378981905,57.89907149704965],[-126.34187713510676,57.89631553471437],[-126.3359506071958,57.89313674444536],[-126.32967264686323,57.891259443592894],[-126.32529677148582,57.89048968482098],[-126.32285759592293,57.889392126937985],[-126.32161816561883,57.88750214246917],[-126.32118930937838,57.88321481960383],[-126.31816197764097,57.87994751983457],[-126.31434454970278,57.878323795157485],[-126.3117126711175,57.87648188019571],[-126.3103846454196,57.87395506008002],[-126.31069034135388,57.87024918651915],[-126.30853674016336,57.866360654591],[-126.30770127538791,57.86549237565202],[-126.30267344722428,57.86106314052443],[-126.29762135995888,57.85754885352344],[-126.29294439391396,57.85608796088376],[-126.2806563967353,57.85514556770923],[-126.2661739579712,57.85607245083126],[-126.26411525746894,57.85713515181062],[-126.25663414599205,57.86050501684915],[-126.25490020095108,57.865406636475456],[-126.25541814610803,57.870142470907574],[-126.25445334682182,57.874298033443495],[-126.24510532990017,57.87931261598352],[-126.23241464222563,57.88504118259883],[-126.23174506697822,57.886065091567126],[-126.22656974588313,57.89499163347716],[-126.22929793747494,57.9011683499856],[-126.2341233250747,57.90902804841136],[-126.24059763968123,57.91945955767919],[-126.24064813333639,57.921576798969596],[-126.23623209818074,57.926276941071364],[-126.22627258600049,57.93345374383211],[-126.22011003317867,57.93905354887176],[-126.21822540506149,57.941093273801705],[-126.21495000940382,57.94318008543188],[-126.20898163093622,57.94554022790114],[-126.20786793654447,57.94563168856505],[-126.1956353625483,57.946744779160454],[-126.18289263321701,57.94561445518917],[-126.17011797637453,57.94192595485137],[-126.15319747689291,57.93339627203989],[-126.14534910541508,57.93019314971692],[-126.13776836654353,57.925338496113746],[-126.1297821084823,57.919846842338785],[-126.12363933856652,57.9171701484123],[-126.1108388178951,57.91484877940408],[-126.10093339539533,57.91613062753203],[-126.09886239871105,57.917137007242985],[-126.08857637181677,57.916767432530335],[-126.08208482872782,57.91516566311105],[-126.07224783803893,57.91416653645946],[-126.06748179289443,57.91560449941811],[-126.05878566501202,57.92261550695885],[-126.05810565897485,57.92380007281273],[-126.05295118097105,57.92723839920539],[-126.04853224616035,57.93119663661426],[-126.04804775615658,57.93621206068033],[-126.04996192855522,57.94011411793937],[-126.05955645850186,57.942137824760344],[-126.06365938321986,57.94479161584103],[-126.06382253004752,57.946334710787426],[-126.06318510091528,57.95290249942366],[-126.06328891454285,57.96311264747128],[-126.06219759311648,57.967042949843396],[-126.05633367538893,57.969046344122646],[-126.04868354455402,57.96977610016713],[-126.03715785143515,57.967393215597646],[-126.03138835223594,57.96642570715231],[-126.02304388722624,57.968688389292744],[-126.02028063152832,57.97100365617328],[-126.01583610516295,57.972224474276196],[-126.0118497515366,57.96938070920235],[-126.00907059217471,57.96576515406249],[-126.00567373552343,57.9613420949453],[-126.00293921807175,57.95960160093064],[-125.99966192847839,57.95821096377341],[-125.99494583317427,57.958192924334284],[-125.99173407435902,57.95856061816082],[-125.9897053559767,57.95954740363465],[-125.98884215588942,57.96320794385906],[-125.98681208700978,57.96711063017866],[-125.97972546733254,57.97145226593887],[-125.97189301654194,57.97591002949529],[-125.97052259728575,57.97665442851161],[-125.96730524038172,57.98136411123625],[-125.96662304247494,57.98770736203044],[-125.96215137654536,57.99327800614815],[-125.95763379525857,57.993375345155044],[-125.95091947741258,57.99131837006445],[-125.9407767419334,57.986020570725955],[-125.92823769479996,57.97937492251408],[-125.92446704961412,57.978888339634295],[-125.91289419282248,57.98080135212639],[-125.9041843090342,57.980526214529064],[-125.89123366205128,57.978730806450415],[-125.88141336651918,57.976811351235554],[-125.87904639077203,57.9765938928821],[-125.86430028961831,57.97630157190169],[-125.84952747799365,57.978510850040166],[-125.83541032015276,57.98123073094513],[-125.83368426875244,57.98141700925473],[-125.825443221706,57.97861610283516],[-125.80956462023576,57.974781176307516],[-125.80324157303818,57.971227971954676],[-125.80015230354229,57.96707822742941],[-125.79738896860438,57.959043998197714],[-125.79428631143011,57.954553210576165],[-125.79409348805206,57.94655884551831],[-125.78790349437452,57.93849233734449],[-125.78595859512515,57.932908719481446],[-125.78676646643979,57.93045172976732],[-125.78720537773441,57.92154344581638],[-125.78474466804654,57.91185005567516],[-125.78151731600977,57.906506680343455],[-125.78140121337685,57.90143081622896],[-125.78225721923411,57.900614685452496],[-125.78137155182961,57.89999980473236],[-125.78133372115934,57.89997507086784],[-125.72355248267212,57.85991359252498],[-125.70960060491849,57.86572638706602],[-125.70955297341456,57.86575207548269],[-125.70924289902128,57.86591960947385],[-125.70881789351755,57.866228188773995],[-125.70846328817731,57.866429265850634],[-125.70810854665788,57.86651035097908],[-125.7075589988201,57.86656857899082],[-125.70654419173385,57.86668969978179],[-125.7055308809463,57.86688819342315],[-125.70515070338321,57.86698603557845],[-125.70477280746925,57.867061453529715],[-125.70409512392176,57.86719676022092],[-125.70374367707899,57.86725989857966],[-125.70363805633994,57.86728882004107],[-125.70321030258181,57.867403371894284],[-125.70250374350859,57.8675913124367],[-125.70178571782168,57.86776128101052],[-125.7008588646623,57.86794871903416],[-125.69992996588127,57.86812717475564],[-125.69955419172604,57.86819809716288],[-125.69951611571119,57.86821483235751],[-125.6991487266434,57.86829137962165],[-125.69843506784295,57.86843891194],[-125.69800423968964,57.86853998334807],[-125.6978446801608,57.868590084668746],[-125.6974675636744,57.86869688337402],[-125.69659153605588,57.868849643715116],[-125.69555548051258,57.868979604052406],[-125.6949507260377,57.8690802676292],[-125.69467696697252,57.86917720269038],[-125.69447166965287,57.8692787800585],[-125.69426003829079,57.86938146398323],[-125.69404230057776,57.86945721962858],[-125.69381584273707,57.869437634737686],[-125.69357105094983,57.86934175115184],[-125.69341539193371,57.869301021745464],[-125.69331844499841,57.869298555525056],[-125.69315826904804,57.86929482203854],[-125.69291494914268,57.86927519673185],[-125.69261161665112,57.8692487038877],[-125.69239461830952,57.86923362408079],[-125.69226508035943,57.86922211044675],[-125.69207765756391,57.86919924862402],[-125.69188601913203,57.86917637677651],[-125.69174707002055,57.869154748129894],[-125.69162494777514,57.86913764398581],[-125.69157444011621,57.86912743421329],[-125.69153337299123,57.86912173195771],[-125.69147756724242,57.869115995518854],[-125.69132992952696,57.86912574585509],[-125.69107252301801,57.86915430526096],[-125.69090903031746,57.86916850397448],[-125.69085514841946,57.86918520000419],[-125.69079595138055,57.86920636931475],[-125.69058224853163,57.86930343552543],[-125.69023531979565,57.86945177636225],[-125.69001746281641,57.869540982131944],[-125.68988536571025,57.86958216665513],[-125.68965175209067,57.86966572805246],[-125.68934304652878,57.869779391941705],[-125.6889037547909,57.87000601273592],[-125.68836893461042,57.87044099158264],[-125.68796405147947,57.87084038795649],[-125.68763344163963,57.871051559827755],[-125.687303275048,57.87120890402072],[-125.68701522017433,57.87137195355503],[-125.68677352154424,57.871537354448186],[-125.68653927462303,57.87169267974164],[-125.68634753115624,57.87180885525939],[-125.68626917723351,57.87185128438933],[-125.6861919715367,57.87188138060126],[-125.68597523756179,57.871960489929734],[-125.68575011895209,57.872031729197815],[-125.68566239823258,57.872060678863065],[-125.68560530184827,57.872081850906184],[-125.68551215238776,57.87212873031837],[-125.68544522372757,57.87219025006734],[-125.68537625045632,57.87224615786836],[-125.6853040970174,57.87230317953427],[-125.68526988932747,57.87236029091044],[-125.68524391714672,57.87244097152121],[-125.68517060058463,57.87263704613043],[-125.68506273714056,57.87293060233353],[-125.6850161373577,57.87308188346239],[-125.68501598727532,57.873099825794974],[-125.68504004247256,57.873123432505196],[-125.6850994318021,57.87320543656369],[-125.68514566421341,57.87335020889663],[-125.68513817702375,57.8734892470588],[-125.6851298523014,57.87360136921314],[-125.68515308278471,57.87372365880375],[-125.68522240493634,57.873878578577376],[-125.68536201419857,57.87407515703267],[-125.68556143659153,57.87430551928848],[-125.68574538753299,57.87449435223903],[-125.6858331285149,57.87459100147453],[-125.68582409676445,57.874662751014405],[-125.68573437150415,57.87480383807163],[-125.68561494275913,57.87496728332953],[-125.68556472546285,57.875046785527104],[-125.68554636417551,57.87510057031685],[-125.68546954873625,57.87521028799381],[-125.68534299253386,57.87534231646135],[-125.6852565096996,57.87547443960299],[-125.68523573530022,57.87568970327335],[-125.68527292132049,57.875906225482694],[-125.68534549386005,57.876052181844145],[-125.68541114598032,57.87614429359699],[-125.68547363686629,57.87623527643329],[-125.68558114418266,57.876490093179264],[-125.68572532103042,57.87689863133925],[-125.68584318452669,57.87730150028717],[-125.68591622398164,57.87764482809466],[-125.68597164511974,57.877825508011156],[-125.68599678711854,57.877844631525164],[-125.68598824122411,57.87785806844454],[-125.68589699926781,57.87792738140676],[-125.68568273813051,57.878083874901016],[-125.68549288056504,57.878222482964055],[-125.6854027200804,57.878287312477205],[-125.6853602982347,57.87831749064913],[-125.6853090676335,57.87839250494415],[-125.68523743997928,57.87851232795928],[-125.68519667614886,57.87859633837356],[-125.68521937229234,57.878655827541486],[-125.68533075136884,57.87882542599704],[-125.68552809961318,57.879054663040556],[-125.68576526328773,57.87918642986654],[-125.6859957512334,57.87923295223238],[-125.6860998776981,57.87926347631047],[-125.68605109241496,57.87929812542728],[-125.68596195558631,57.879367443509956],[-125.68592970130867,57.879442502895564],[-125.68592947680006,57.87946941657201],[-125.685923039021,57.87948285848472],[-125.68585602310527,57.879553350131644],[-125.68573180369849,57.8796584708925],[-125.68564688247264,57.8797277987464],[-125.68562666517197,57.8797490580845],[-125.6854748796166,57.87974533522909],[-125.68513446477971,57.879732194720845],[-125.68479392065129,57.87973251014314],[-125.6843107870355,57.87976500793407],[-125.68374853479467,57.879804044571586],[-125.68350376668327,57.87982476988328],[-125.68336037741533,57.879825550284274],[-125.68307889950333,57.87982263754007],[-125.68274688111063,57.879813996619276],[-125.68239587872984,57.87980418814775],[-125.68211975654484,57.87979231474657],[-125.68187631561986,57.87978164031067],[-125.6816729104351,57.87977218260818],[-125.6815917596693,57.87976974565676],[-125.68157282089354,57.87976521464744],[-125.68146014877219,57.87974812366683],[-125.68107132480698,57.8797247640723],[-125.68054940984248,57.879729119640416],[-125.6802288288951,57.879738442700905],[-125.6801433850368,57.87974496596033],[-125.6800716666981,57.87974815787782],[-125.6797415505282,57.879761942550836],[-125.67918159323409,57.87977853690768],[-125.6787428767531,57.87979430015976],[-125.67849930499384,57.87979707634355],[-125.6782499324095,57.87974040247322],[-125.67791359544924,57.87961959644556],[-125.67760244751241,57.87951230770213],[-125.67738807146807,57.8794310456188],[-125.67716233155814,57.87932171998928],[-125.67686751081492,57.879156155019025],[-125.67657473611096,57.8789962015162],[-125.6762607128507,57.878857502789],[-125.6759087676516,57.87859198997392],[-125.67573767024807,57.87825963151716],[-125.67572231908477,57.87808353047044],[-125.67571680510136,57.87798931739122],[-125.6755805982228,57.87789142155849],[-125.67531342874018,57.87782124178683],[-125.67509147369749,57.87776575037536],[-125.674763636484,57.87776158541398],[-125.67434868276895,57.87783682764276],[-125.6740612977049,57.877910138195084],[-125.673723357968,57.87797771709426],[-125.67331773333039,57.87806980037353],[-125.67304172792109,57.87816668659929],[-125.67273823079177,57.878274718921695],[-125.67217693801847,57.87844491567861],[-125.67135886412728,57.878684004714295],[-125.67061153010248,57.87891092820157],[-125.67032400191398,57.878998808985415],[-125.67027388945378,57.878942613563844],[-125.67003658498123,57.87883324719782],[-125.6694684227491,57.87882286609545],[-125.6687685957088,57.878920933282544],[-125.66810472576584,57.879124500527105],[-125.66747402996234,57.87939094728501],[-125.66683524840926,57.87961699954481],[-125.66614177673405,57.87982721166775],[-125.66577915087238,57.87993956577812],[-125.66567237974984,57.87997294045929],[-125.66549056767903,57.880026312185386],[-125.66512693201675,57.88013417630374],[-125.66443165256635,57.880308489438534],[-125.66363962333213,57.88045451883915],[-125.66311733501821,57.880499176557514],[-125.66279148023514,57.88050844430788],[-125.66230604819505,57.88055879935534],[-125.66173167213087,57.88065154091334],[-125.66120029867963,57.88076793946936],[-125.66069801429403,57.8809337529453],[-125.66049242974955,57.88104985734724],[-125.66050489928443,57.8810700748726],[-125.66039326521103,57.88105633295708],[-125.66018588428241,57.88101991797272],[-125.65989850568722,57.88097096257386],[-125.65965197323891,57.880951268152124],[-125.65937151090469,57.88095279360043],[-125.65903298288123,57.88096201973502],[-125.65887272008446,57.88096273054648],[-125.65879488528905,57.880942345330894],[-125.6586096957766,57.880901499056165],[-125.65834773504884,57.880840269777714],[-125.65809831811184,57.88078916506515],[-125.6579352785826,57.88074837474703],[-125.6578691595316,57.880599054797216],[-125.65776778673892,57.88038460135118],[-125.6575003369325,57.880346906307295],[-125.65724671849043,57.880411296327914],[-125.65711770846957,57.880453578346895],[-125.65694253461834,57.88047106984555],[-125.65667914874868,57.880450205049826],[-125.65648847949467,57.88043177026943],[-125.65637897780643,57.880415787633666],[-125.65625153120783,57.880403122852286],[-125.65611770119098,57.8803949271715],[-125.65601022635424,57.8803879208969],[-125.65593543233594,57.880382120443315],[-125.65587336504663,57.88036625999425],[-125.65574604183105,57.88034013790545],[-125.65549335421402,57.88030247700318],[-125.65515714506452,57.88028927069353],[-125.65483129014085,57.88029851895504],[-125.65458861146772,57.88031919657179],[-125.65436073357088,57.88033542646675],[-125.65408870981712,57.880336962684076],[-125.65384003476763,57.88032173763875],[-125.65366944847302,57.88029886532937],[-125.65357892530473,57.88028292976693],[-125.6535158442926,57.8802637012931],[-125.65342012405756,57.88023878066598],[-125.65327585200055,57.88022158350876],[-125.65316622832061,57.88021905505322],[-125.65312820219091,57.880226805963986],[-125.65311125117073,57.8802357332179],[-125.65310164062289,57.88024804388616],[-125.65306562999527,57.88026589288969],[-125.65299469201797,57.88029935083547],[-125.65289102158141,57.88033720910635],[-125.65276003282462,57.8803649031767],[-125.65265032599414,57.880371345510135],[-125.65257030445166,57.88035992237894],[-125.65251135812791,57.88034967564863],[-125.65247767305002,57.880343980562806],[-125.65241551410361,57.880338211117525],[-125.65228915636916,57.880321059667494],[-125.65214593035401,57.88030386401611],[-125.65200595864782,57.88027770528889],[-125.65185327750999,57.880255998888096],[-125.6517237244289,57.88024332425852],[-125.65163416504643,57.88023636132319],[-125.65157830739965,57.88023509369311],[-125.65151299438719,57.88022931556999],[-125.6514350820362,57.88021789727846],[-125.65139611744426,57.88021218809341],[-125.65137390309229,57.88022110134228],[-125.65130628425752,57.88023662422396],[-125.65119311539718,57.88027445629118],[-125.65111365840758,57.88031686234559],[-125.65104536369786,57.88040527620378],[-125.65098351909522,57.880480249800044],[-125.65095463964764,57.880523909806705],[-125.65091167818132,57.88060902575756],[-125.65083483378034,57.880709752836765],[-125.65076127469504,57.88079815277929],[-125.65068977576402,57.880889922384945],[-125.65061275327965,57.88100971320507],[-125.65056883829727,57.88108473372059],[-125.65053767235463,57.881147451971124],[-125.65048607702607,57.881253852345516],[-125.65042723466061,57.88134677651949],[-125.65036433495445,57.881420625707044],[-125.65025249532556,57.88154368922416],[-125.65005683464402,57.88172260385623],[-125.64987410552028,57.88187127362295],[-125.64979661026814,57.88192714130304],[-125.6497679016876,57.88195398011074],[-125.64973505281026,57.88197071514098],[-125.64966075985652,57.88202322688228],[-125.64949617894983,57.88214839389402],[-125.64933457393354,57.88229263289204],[-125.64926222129014,57.88236309244409],[-125.64920682131553,57.88242462518739],[-125.64908734571179,57.882573460673925],[-125.64895186782958,57.8827413182193],[-125.64883289231149,57.88283632611665],[-125.64870893541784,57.882901042108145],[-125.64863687348924,57.882940102039775],[-125.64863708210396,57.883029817159134],[-125.64864241963862,57.883249631975744],[-125.64860974142434,57.883473832228205],[-125.64858137538788,57.88357580772672],[-125.64852041595427,57.88366872571329],[-125.64839695709054,57.883791757310796],[-125.64824816097176,57.883918086163106],[-125.64807401682039,57.88404883359222],[-125.64796781337635,57.88413041742361],[-125.64796847132301,57.88417191220339],[-125.64800508956337,57.884203409173125],[-125.64802608287314,57.88421355758377],[-125.64801211580212,57.88424043506001],[-125.64805145902116,57.88431791800441],[-125.64812863462579,57.88440895815388],[-125.64827208856973,57.88451699490872],[-125.64851101372066,57.88467574816255],[-125.64876069416209,57.88481210070164],[-125.64899062706529,57.88491700055811],[-125.64926679439648,57.88504108623011],[-125.64954496154084,57.88517526951596],[-125.6497797620387,57.88532503823914],[-125.6499975268719,57.8854927047368],[-125.65016840530566,57.88560081164338],[-125.65022719250048,57.885629001989074],[-125.65028842200194,57.88562131280372],[-125.65043507215881,57.88561160504774],[-125.65053493849166,57.88564551029297],[-125.65052571188268,57.885730715138685],[-125.6505007436538,57.88580690718344],[-125.65055915666717,57.8858754680748],[-125.65067837317079,57.88598231730907],[-125.65078798402027,57.88610259847642],[-125.65094347495263,57.88627682878457],[-125.65115269019458,57.886457928343376],[-125.65129410366606,57.8865603494997],[-125.65139464544117,57.886634627593004],[-125.65155177519804,57.886747182569806],[-125.65173066757764,57.88690016601435],[-125.6518834260373,57.887029530737465],[-125.65199007930184,57.88712737456035],[-125.65212306181692,57.88722977285524],[-125.65240341603757,57.88735834893294],[-125.6527543270504,57.88749832285316],[-125.65302230696263,57.887598829448095],[-125.65322818940446,57.88768571653255],[-125.65346844938762,57.88781755028159],[-125.65374849936192,57.88798200878842],[-125.65411029587679,57.88808612150354],[-125.65443455463881,57.88814415686949],[-125.6544588639652,57.888252999420594],[-125.6543463252016,57.888335693684134],[-125.65428379228898,57.88836917445341],[-125.65430648666303,57.888424183841295],[-125.65439004373329,57.888511872940576],[-125.65447669079997,57.888608541519055],[-125.6546261701874,57.888751352030305],[-125.65483582823016,57.888887589791274],[-125.65498516853997,57.888931712981005],[-125.65503051091264,57.88893295191345],[-125.65502705115571,57.88896434322715],[-125.65502530619807,57.88904059652875],[-125.6550458930182,57.889095600363994],[-125.65506997414883,57.88911360577412],[-125.65512109931052,57.88917429590995],[-125.65523389906718,57.88929346057368],[-125.65533505019681,57.88941708075561],[-125.65544663075272,57.889555306574884],[-125.65557187163962,57.889698053415486],[-125.65569418760346,57.88981387804521],[-125.65583140786352,57.88991628382824],[-125.65592246820297,57.88999053420315],[-125.65600928658644,57.89006925931964],[-125.65617981742307,57.89021772985949],[-125.65642603866813,57.89039443154359],[-125.65662301671776,57.89053511972045],[-125.65671522493767,57.89060040103069],[-125.65680219311483,57.8906611830122],[-125.65692579365019,57.89075345966935],[-125.65701800293012,57.89081874078463],[-125.65708709369152,57.8908749907748],[-125.65716032123436,57.89094022290928],[-125.65718855801445,57.890967210190894],[-125.65722647160808,57.890972915006934],[-125.65740749087169,57.891013752776374],[-125.65766384844557,57.8911198275952],[-125.65772592999858,57.891251195787795],[-125.65764047202428,57.891370970266216],[-125.65762789408394,57.891477474835746],[-125.6576842526199,57.89165929324265],[-125.65773391031824,57.89188034489223],[-125.65775304860044,57.891980202404056],[-125.65780044628461,57.891985931437574],[-125.65794883772703,57.8920210774303],[-125.65809831636166,57.89205174028244],[-125.65818752154858,57.892099069877034],[-125.65826181642441,57.8921643042172],[-125.65829522788715,57.89220139755341],[-125.65828970205892,57.892228297981184],[-125.65827246591483,57.89238525564701],[-125.65823174023481,57.89268906201491],[-125.65820470547435,57.8929940250556],[-125.6581606054167,57.8932047431437],[-125.65806886749108,57.893318894807635],[-125.6580270215349,57.89339840982231],[-125.65803488807934,57.89346123086029],[-125.65805847419912,57.89353418526374],[-125.65810466831029,57.893674484343414],[-125.65815687843066,57.893847320745614],[-125.65825368671803,57.89398887119226],[-125.65840818838811,57.894164212933774],[-125.65852108294841,57.894391034276644],[-125.65858113985703,57.89463117744349],[-125.65861763325849,57.894793880522805],[-125.65862351377852,57.89484323918086],[-125.65862310689872,57.89488809594161],[-125.65860200151582,57.8950046721317],[-125.65855974785372,57.89512904422456],[-125.65852172633862,57.89525006283726],[-125.65849005981393,57.895369976307855],[-125.6584682738499,57.89544617874223],[-125.65844900429529,57.895477529799905],[-125.65840840657872,57.89553461939988],[-125.65834978889986,57.89560063432589],[-125.6583273329483,57.895635341534124],[-125.65838494645446,57.89567810430081],[-125.65857483929274,57.89579073593775],[-125.65878281761803,57.89588547051808],[-125.65888168607681,57.89591600287659],[-125.65894475541526,57.895939714799255],[-125.65904033980937,57.895982574539715],[-125.65915463164082,57.89605800404495],[-125.65924794467931,57.89611880097021],[-125.65932346818639,57.89616497351682],[-125.65944003295112,57.89622246545747],[-125.65963640543974,57.896317169053034],[-125.65983067620273,57.896412988443586],[-125.65997034859691,57.89647951053327],[-125.66009528226458,57.896544873412246],[-125.66017927589728,57.89658770276823],[-125.66022229882996,57.8966113629391],[-125.6603168805774,57.89664973343849],[-125.66044926094636,57.89670726485955],[-125.66047586455254,57.89679816991214],[-125.6604896596537,57.89690586402165],[-125.66069934911744,57.896929948867836],[-125.66095689791452,57.89690929735211],[-125.66114958389046,57.896945674116026],[-125.66136511809071,57.89702360225917],[-125.66162671238945,57.897138654871966],[-125.66185267525859,57.89723006610619],[-125.6619851405965,57.89727862465845],[-125.66208836522294,57.897294586901914],[-125.66220115479442,57.89730160174778],[-125.66225705500577,57.89730286498509],[-125.66229160179007,57.897330988792326],[-125.66245859167157,57.89741215641097],[-125.662681264872,57.89751701529164],[-125.66281998046232,57.89757456043819],[-125.66294076714642,57.89763093861576],[-125.66314096092611,57.897654995586166],[-125.66335171261674,57.89767795749862],[-125.66349717984875,57.897807291691954],[-125.66361922579522,57.89795899554722],[-125.66370302616521,57.89802425120439],[-125.66379210913325,57.898089520149526],[-125.66390417027311,57.89817839745323],[-125.66402676657152,57.89827066559515],[-125.66418048967385,57.89841908456803],[-125.66429759498538,57.89853488906027],[-125.66434250912252,57.89858546747835],[-125.66437590227508,57.89862592380672],[-125.6644639246054,57.898691189663566],[-125.6645981882004,57.89877563657283],[-125.66466949443316,57.89882291701209],[-125.66469471957116,57.89883307357117],[-125.6647335387191,57.89885560029205],[-125.66481089437025,57.898934296469854],[-125.66492748399145,57.89910841453801],[-125.66501577303667,57.89926339670234],[-125.66504684828149,57.899327397502525],[-125.6652442885779,57.89930546496046],[-125.66546343941789,57.89933405190536],[-125.66535712699978,57.89954686028153],[-125.66524537122126,57.8997775981449],[-125.66527227786491,57.89983598119423],[-125.66527628767997,57.89985954173074],[-125.66529471593037,57.899922389271886],[-125.66531301458005,57.89999981534595],[-125.66531605093675,57.90001328038359],[-125.66534532296627,57.90016250688217],[-125.66537735241046,57.900356598363125],[-125.66539701324798,57.900518136715164],[-125.66539576678609,57.90065831498815],[-125.66535132286913,57.900791656032716],[-125.66529168867098,57.90097430277893],[-125.66531070112788,57.90120873399287],[-125.66538905567559,57.90141303516007],[-125.66546293583963,57.90152648744056],[-125.66563931701808,57.90162113237857],[-125.66580491129179,57.90174266488337],[-125.66576470394249,57.90187601684646],[-125.66571810031452,57.9020149600265],[-125.66574281982606,57.902082309244264],[-125.66575593413802,57.90215075079015],[-125.66579972214168,57.90232692881817],[-125.66584899265739,57.90248069155022],[-125.66586542289093,57.90253119817665],[-125.66587882636,57.90256711831457],[-125.66593880584921,57.902702964656875],[-125.66604113274805,57.902939848031046],[-125.66614960831494,57.903199175878655],[-125.66622558318005,57.90343487171429],[-125.66630136008617,57.903692996161396],[-125.66637834362392,57.90393318037331],[-125.66641649990981,57.90403308545058],[-125.6664506583346,57.9041060655883],[-125.66652809786397,57.90429690691226],[-125.6665845514167,57.904473116770355],[-125.66660567051754,57.90459092248911],[-125.66662240398917,57.904725539080694],[-125.66663528236114,57.90482089507642],[-125.66683223419759,57.904857274478196],[-125.66708340657635,57.904967805233845],[-125.66703111083501,57.90515495771476],[-125.6669464294176,57.90530502116609],[-125.66701289587894,57.905424061759895],[-125.6671212049046,57.90558357936296],[-125.66722958427759,57.905735246878095],[-125.66726504727238,57.9057813152156],[-125.66721206965045,57.905806976375494],[-125.66705930753004,57.90590191847524],[-125.66688815150374,57.90604952291087],[-125.6667871833838,57.9061322582163],[-125.66671404917038,57.906171326254096],[-125.6666514479422,57.90621042061514],[-125.66659090390641,57.90625737030224],[-125.6665184579786,57.90633681244347],[-125.66644350404871,57.90646110659109],[-125.6663439278263,57.906624590073775],[-125.66620736390877,57.906795831034955],[-125.66611261986758,57.906892039001654],[-125.66611636225923,57.906945878393486],[-125.66608160625013,57.9070579371331],[-125.6660470192528,57.90715093150049],[-125.66604364664565,57.907173352221626],[-125.66594535819269,57.90719329201629],[-125.66557333998419,57.90726525333063],[-125.66509537623969,57.90750404470096],[-125.66458883242187,57.90787285179348],[-125.66398956189074,57.908107969488235],[-125.6636703138091,57.90817669431286],[-125.66365068114217,57.90824841819605],[-125.66366310521423,57.90839199649605],[-125.66368337527918,57.90860400372695],[-125.66367313019668,57.9088058408084],[-125.66338605277802,57.90893296221775],[-125.66286187999016,57.90902696078329],[-125.6626057333717,57.90923602552052],[-125.66265338089899,57.90957034178994],[-125.66271502772778,57.90975553912931],[-125.66276947077009,57.90980277837959],[-125.66286531412166,57.90993983937797],[-125.66286893309064,57.9101237683768],[-125.66281170392254,57.91027053513155],[-125.66279011912287,57.91032431070512],[-125.66277729688365,57.91034222165072],[-125.66275154178412,57.910390379350645],[-125.66272475321952,57.910435170042845],[-125.66276439540191,57.91048573623987],[-125.66285135580249,57.910555487067704],[-125.66289314872715,57.91060157282297],[-125.66288840567506,57.91065987690297],[-125.66287141463296,57.910788802176576],[-125.66283895668711,57.91087843709873],[-125.6628101649577,57.91091312959003],[-125.66272914034856,57.911006005946156],[-125.66266504783519,57.91109331782299],[-125.66265894915965,57.91118414094251],[-125.66266732761306,57.91130976611318],[-125.66264554087968,57.91138597049268],[-125.66261795620812,57.911402722594055],[-125.66259243151627,57.911425087228004],[-125.66257332821237,57.911437374946146],[-125.66248431344775,57.91147976508082],[-125.66221315810387,57.911594588610704],[-125.66184041382965,57.91174167623568],[-125.6615263722118,57.91193152767284],[-125.66132321249066,57.91211044570892],[-125.66125715596652,57.912180930052436],[-125.66123489477665,57.91219320956044],[-125.66111588744214,57.91228486701639],[-125.66087788114291,57.91246706019613],[-125.66067419471952,57.91258765980412],[-125.66061276156977,57.91261329701876],[-125.66056722856919,57.91263000299475],[-125.66047720246709,57.91266790341433],[-125.66025270367665,57.912755926855304],[-125.6598915287276,57.912904160224976],[-125.6595894890729,57.91304917936694],[-125.65934602362651,57.913249299499945],[-125.65920770682872,57.91349230399579],[-125.65917461824486,57.913765857276466],[-125.65913666799275,57.913994539494034],[-125.65910392398428,57.91411445272538],[-125.65908132555018,57.91416373946856],[-125.65907487223977,57.914177180565076],[-125.65903206351867,57.914243237597134],[-125.65894628294313,57.914393294702364],[-125.65889891724069,57.91449634848366],[-125.65888908627672,57.91453221028776],[-125.65875880237898,57.91458682857484],[-125.65840624956215,57.91471265098004],[-125.658014040247,57.9147912690106],[-125.65769943534029,57.91480616161038],[-125.65745255974161,57.91479991973052],[-125.65730494846868,57.9147860824895],[-125.6571910437012,57.91477906063207],[-125.65685030484116,57.91476584726636],[-125.65633875708015,57.91473873490453],[-125.65601807688233,57.91472557115028],[-125.65579238897736,57.91471040914927],[-125.65550870602479,57.914689489472586],[-125.65522499915687,57.914673055003384],[-125.65494631339658,57.91468354817773],[-125.65467796367419,57.91471761840039],[-125.65446883054247,57.914738384059234],[-125.65428694791541,57.91477940654313],[-125.65411634445057,57.91485522359574],[-125.65389445445226,57.9148860484575],[-125.65360289350146,57.91480566640863],[-125.65336114896803,57.914700741042644],[-125.65323179068265,57.914652181250176],[-125.65308316577463,57.91463497228401],[-125.65284907910171,57.91461529754889],[-125.6526528465462,57.9146103001937],[-125.652473373493,57.91461880389217],[-125.65218190009331,57.91464271554952],[-125.65188729368036,57.91466213250954],[-125.65176374587668,57.91467190284221],[-125.65163209666646,57.9147579117536],[-125.65129637443414,57.91500151369344],[-125.65096381557935,57.91524400167887],[-125.65082133076606,57.91547465104592],[-125.65069987167138,57.9158264742166],[-125.65040415101168,57.9160791508545],[-125.65008089188468,57.916115310750385],[-125.64986714109351,57.91617755152709],[-125.64968003314655,57.91632509380319],[-125.64956637795036,57.91640329786586],[-125.64951552566713,57.916424472047666],[-125.64922948965774,57.916542595204184],[-125.64859010930441,57.91686725846508],[-125.64797957795957,57.91726376923134],[-125.64765513249459,57.917538793774575],[-125.64744334983236,57.91772664091822],[-125.64718983713092,57.917976058281766],[-125.64693163653448,57.91827480763877],[-125.64676835616224,57.9184683897607],[-125.6467000240995,57.91855231910506],[-125.64666157862045,57.91860044052384],[-125.6466156528647,57.918657513884845],[-125.64655927465039,57.918705587716055],[-125.64648681514072,57.91877941275981],[-125.64637556125331,57.91893836684367],[-125.64621398923015,57.91917232604807],[-125.64602789682124,57.919433135372834],[-125.64591327022404,57.91961450972835],[-125.64589671318402,57.91969072602777],[-125.64590394034809,57.91970868883548],[-125.64602174170979,57.91975161790019],[-125.64634149112493,57.91986797892541],[-125.64669884666681,57.92002593350096],[-125.6470139158451,57.920191625447075],[-125.64734455794891,57.920384273304954],[-125.64773703953102,57.92062418586486],[-125.64812628439313,57.920873060578145],[-125.64845006059677,57.92112400444559],[-125.64872949870151,57.92137819513288],[-125.64897633931825,57.92161884169719],[-125.64918818823946,57.92187621789657],[-125.64937701484658,57.922114468123816],[-125.64948570475549,57.92223026627921],[-125.64950664653293,57.9222482650091],[-125.64955907421205,57.92228541166853],[-125.64971179136198,57.92243384829971],[-125.64985996421342,57.92261703865766],[-125.64988585062676,57.92278420693824],[-125.64981225157807,57.922980272274835],[-125.6497344716351,57.92317184070792],[-125.64965423686454,57.92328602062955],[-125.64945325443483,57.923446985049985],[-125.64914281494941,57.92379831256135],[-125.64892263640951,57.924205951329895],[-125.64884054358373,57.92440647998563],[-125.64869576840911,57.92453731160771],[-125.64837218667914,57.92482580018877],[-125.648072115515,57.925082948701466],[-125.647932688278,57.92520482187355],[-125.64781462931755,57.92530095731756],[-125.6476229094985,57.92548437347958],[-125.64744795038526,57.92568129153195],[-125.64732721380713,57.92583573658581],[-125.64717677975354,57.92600692517026],[-125.64705967925417,57.92611203443559],[-125.64701826191317,57.9261377188355],[-125.64688271856438,57.926183340530734],[-125.64654088497095,57.92627776033998],[-125.64613950952419,57.926415759029204],[-125.64579800079125,57.92658643868061],[-125.64556760776775,57.92672825449783],[-125.64548270708585,57.92677625245402],[-125.64544670115323,57.926788492982496],[-125.64532579415136,57.92684873136134],[-125.64505440150377,57.92697137199411],[-125.644745968374,57.92710288523026],[-125.64449385887296,57.92719529609869],[-125.64412672895293,57.927284034952066],[-125.64374712577413,57.92735030977917],[-125.64358962763106,57.9273734398282],[-125.6435357945346,57.927372174361864],[-125.6434597279878,57.92737869978262],[-125.64342064755525,57.927381959674996],[-125.64332671251869,57.92737946533446],[-125.64313367499011,57.92736549074294],[-125.64303762882682,57.92736299054519],[-125.6429698685422,57.92738411723109],[-125.64280372262316,57.92742853138871],[-125.64267359889388,57.92745734115034],[-125.64263865543593,57.92746958378173],[-125.64264223837691,57.92753688245861],[-125.64266492083665,57.92770404448828],[-125.64255456052024,57.92787645719561],[-125.6420846538099,57.928003045310284],[-125.64140349263313,57.92814252135134],[-125.64070290735658,57.928325679516824],[-125.64007081511639,57.928520233910355],[-125.63980821427924,57.92860363588588],[-125.63979028779062,57.92860246594882],[-125.6397408904596,57.9285787812215],[-125.6396988480404,57.92855960230436],[-125.63958076832812,57.928543582218445],[-125.63934357278107,57.9285104174429],[-125.63916740403681,57.92849648275043],[-125.63912836512054,57.92849525556071],[-125.63909033033217,57.928498517022575],[-125.63890875206185,57.92849914665566],[-125.6386342680063,57.928500645645244],[-125.63847385612921,57.92849572464701],[-125.63831114966786,57.92850986249047],[-125.63795381925333,57.928563845059706],[-125.63751896446324,57.92866471826525],[-125.63717910950237,57.92876809170379],[-125.63697380795031,57.92882024249512],[-125.63681641257334,57.92882990704476],[-125.63662204584423,57.92884283506827],[-125.63636840075662,57.92887242338086],[-125.63615998245004,57.928920078478164],[-125.63609643804459,57.92894121323123],[-125.63599313758357,57.92892523031359],[-125.63577599142909,57.9288921139326],[-125.63556960851177,57.92883771838407],[-125.6353476986402,57.92875075692392],[-125.63516164367907,57.928669500691164],[-125.63510385855753,57.928640183841274],[-125.63506994783653,57.92865354882719],[-125.63501260642325,57.928688157880956],[-125.63488835481422,57.9287652001112],[-125.63472042105711,57.92888249603629],[-125.63458221850888,57.928981929499486],[-125.63449924648584,57.929046748216],[-125.63443433157288,57.92909928006018],[-125.63436732208275,57.92915180612976],[-125.63428763868862,57.929203175904384],[-125.63421327447918,57.92925119577226],[-125.63417397308977,57.929276882105455],[-125.63413145261285,57.929307045539886],[-125.6340358986226,57.92936285755421],[-125.63387890915523,57.92943980900906],[-125.63361734629879,57.92952208028552],[-125.63333691767797,57.92959196279231],[-125.63320239249236,57.929637573618734],[-125.633158561035,57.929694648857],[-125.6331166925677,57.92976518734339],[-125.6330899155636,57.92980548719452],[-125.63306437176277,57.929826725141226],[-125.63305161626771,57.92983566192614],[-125.6329774681558,57.92986125197796],[-125.63281863688904,57.92991015996058],[-125.63269571974679,57.92995692376407],[-125.632606539806,57.93000826641553],[-125.63250425318131,57.93010443240472],[-125.63242699520863,57.930232069035334],[-125.63222316519183,57.93034814153968],[-125.6318619303851,57.930473872461604],[-125.63162578609447,57.93054835973611],[-125.6315039126203,57.930595125366224],[-125.63134265709867,57.930675426633954],[-125.63118434539551,57.930779287136],[-125.63101018900207,57.93088310359792],[-125.6307854243955,57.930980050722425],[-125.63069166416251,57.93106726714136],[-125.63077143457213,57.93111459072131],[-125.63078242212124,57.93117742458513],[-125.63055108955288,57.93129790444437],[-125.63023128571687,57.93139683018876],[-125.63006311697944,57.93142888673639],[-125.62995722625138,57.931461115997216],[-125.62976024626624,57.931523372408265],[-125.62946154161976,57.93162347643978],[-125.62904247283245,57.93172436635817],[-125.62856446994519,57.931806025407646],[-125.62818896111882,57.93187787529943],[-125.62799739621802,57.931926686361884],[-125.62790296252818,57.93197352537559],[-125.62778928714089,57.93204610488539],[-125.62764571202696,57.93215112402115],[-125.627563874095,57.932206969926504],[-125.62752556791827,57.93223714314613],[-125.6274101516101,57.93227046529406],[-125.62722500703535,57.93231032129126],[-125.62711918924481,57.93233469810473],[-125.62709372933368,57.932346963280686],[-125.62699033433846,57.93233994501056],[-125.62680574649322,57.932429147616766],[-125.6266811656739,57.93264188216019],[-125.62664806806333,57.93278534041957],[-125.62663258604624,57.93285595105081],[-125.62658546493336,57.93292310857289],[-125.62647727726004,57.93297327258029],[-125.62634496575349,57.93300654649223],[-125.62626568143037,57.933017539126304],[-125.62605252670353,57.93289918458404],[-125.62566959898051,57.93265586740223],[-125.62532085560449,57.932583112020644],[-125.62501672624381,57.9326966489137],[-125.62486837413167,57.932751184571785],[-125.6247970536158,57.932703881153465],[-125.62464815705552,57.93260140614755],[-125.62449508316249,57.9324944332479],[-125.62429905281672,57.93235369435203],[-125.6240380005907,57.93217127660236],[-125.62373994729829,57.931993239885124],[-125.62347320896409,57.93185117871307],[-125.62328526072224,57.93174747043756],[-125.62315217123745,57.931649524481934],[-125.62307115227644,57.93151695945465],[-125.62289303154182,57.93138187670776],[-125.6225353528702,57.93125525725644],[-125.62224508351548,57.9311445287963],[-125.62216637102514,57.93109720308082],[-125.62209083426447,57.931049886325454],[-125.62190286562392,57.93095066206887],[-125.62176004728333,57.93087511699019],[-125.62172434560843,57.93085595033296],[-125.62164018382455,57.93082655269302],[-125.62135932279821,57.93072482096557],[-125.62102593338284,57.93059938801139],[-125.62087360856874,57.930523814970016],[-125.6208579288112,57.930509190998286],[-125.62077100017841,57.930439411313415],[-125.6205085913858,57.93018520774286],[-125.62010061228683,57.92991825246796],[-125.61972007066073,57.92986333572041],[-125.61957617161956,57.92989544823738],[-125.61952321826989,57.92991211941462],[-125.61927125506506,57.92998205369599],[-125.61889021537893,57.93007965570798],[-125.61858922785343,57.93009000957657],[-125.61825847674409,57.930017287294426],[-125.6178445658608,57.92992189597923],[-125.61743598398456,57.929820911232476],[-125.6170820586698,57.92974363355813],[-125.61685023666803,57.92970147219919],[-125.61677860057138,57.929686686875286],[-125.61673536735798,57.92968095510884],[-125.6165088328529,57.92963880836188],[-125.61617165278959,57.92957615581527],[-125.61600306890551,57.92954426849566],[-125.61598838139302,57.92953525426375],[-125.6159654433824,57.9295071509424],[-125.6159165180745,57.92943859912343],[-125.61588840202468,57.929401508957035],[-125.61584356209498,57.92934642675909],[-125.61576538253416,57.92924975334779],[-125.61561064898014,57.92910239213417],[-125.61538993077481,57.92890325188436],[-125.61528114300822,57.92880536840391],[-125.61528041708836,57.928773964636896],[-125.61522337026526,57.92867398749651],[-125.61483134103935,57.92850575334593],[-125.61419949737225,57.92835476785197],[-125.61389504836008,57.92829220433389],[-125.61383916667435,57.92828643498517],[-125.61369025861735,57.92829161086889],[-125.61347928503389,57.92827641981265],[-125.61322508593638,57.92825661702951],[-125.61298114935977,57.92826375927208],[-125.6128447870069,57.92828242849787],[-125.61273089588101,57.9282708827124],[-125.61252043126373,57.92820634615079],[-125.61232055818347,57.92813847560654],[-125.61219129921784,57.928080903657374],[-125.6120569561605,57.92800537298339],[-125.61185549467692,57.92788703018766],[-125.61157957007715,57.927722489109414],[-125.61124807542892,57.927520776315184],[-125.61092180742732,57.92732356393569],[-125.61071513011906,57.927200718304505],[-125.6106227262348,57.92715334590709],[-125.61049036141381,57.92709127732865],[-125.61030012917325,57.92700997414426],[-125.61000561326313,57.92690817879598],[-125.60961742896833,57.92678031425968],[-125.60942494927032,57.926712461094525],[-125.60950011298544,57.926692494610634],[-125.60966208432575,57.9266469881923],[-125.60974125564891,57.92654516482321],[-125.60973232937161,57.92638813064],[-125.60961862022144,57.92625882671631],[-125.60937701802561,57.92614484868901],[-125.60925155147275,57.92602896784179],[-125.60928005618325,57.92592699624015],[-125.60930594864782,57.92587324085459],[-125.60930604185648,57.925864269245004],[-125.60933312114665,57.9257970595141],[-125.60936761057606,57.92562781635794],[-125.60936218207485,57.92543826948777],[-125.60928294157397,57.9252428988359],[-125.60912078482625,57.925001304129054],[-125.60896230416616,57.9248124298205],[-125.60891230400875,57.92474835849487],[-125.60890188878858,57.92473487011899],[-125.60888009938117,57.924697797194426],[-125.60885740291496,57.92464726379766],[-125.60884079463253,57.92462029943288],[-125.60882409305341,57.924602306664006],[-125.6087668182755,57.924528120587155],[-125.60863893094256,57.924340457276564],[-125.60850486886358,57.92413931793487],[-125.60844775367433,57.92404830997228],[-125.60844468903491,57.92403932910099],[-125.60842299389587,57.92399328453741],[-125.60835690199458,57.92385290491345],[-125.60828972850015,57.92371588654516],[-125.60826492244597,57.92366534689412],[-125.60825973002034,57.92365635976674],[-125.6082150651967,57.923587818002666],[-125.6082289459931,57.92347122461232],[-125.60826415821346,57.92333338577936],[-125.60812271666688,57.923131103072244],[-125.60796700278914,57.92288055453878],[-125.60786190618917,57.92263464077843],[-125.60770514390767,57.92238296749133],[-125.60755045298751,57.92213690758612],[-125.60742603555684,57.92192233821754],[-125.60735147241984,57.92178529786164],[-125.60734258561304,57.92172583319733],[-125.60736530839756,57.92167319056564],[-125.60736647915938,57.9215610459623],[-125.60735444780637,57.92139839585568],[-125.60734795810166,57.92131314423465],[-125.60734506439128,57.9212862201835],[-125.60734021723238,57.92124583261532],[-125.60732427893763,57.92115494576248],[-125.60723767810642,57.92105824324672],[-125.60716227399872,57.92100194696702],[-125.60723348692946,57.92095505474837],[-125.60728213125203,57.92084417163801],[-125.60724882194457,57.92069940259796],[-125.60723264987668,57.92063094468322],[-125.60722534731376,57.920621951322005],[-125.60720778871753,57.920586012222515],[-125.6071726196003,57.92051749830512],[-125.60713740375496,57.920453470161824],[-125.60711269511921,57.920393958911994],[-125.60708719218238,57.92030865130122],[-125.60705580741399,57.92018183162746],[-125.60703702372936,57.92005953504165],[-125.60702947114885,57.91997428038699],[-125.60702706334362,57.919902498655716],[-125.60701745864684,57.919811630569676],[-125.60701733222106,57.91972191192541],[-125.60702436751063,57.91965464397722],[-125.60703861135673,57.91960534094455],[-125.60705661036312,57.91949885360394],[-125.60709564856951,57.919297102695495],[-125.60715679876478,57.91910102440426],[-125.60719984465128,57.919021526408166],[-125.6072328502047,57.9189947082479],[-125.6072923950694,57.91895226762101],[-125.60736053481698,57.9188952730928],[-125.60747234494762,57.91879915549298],[-125.60761619449734,57.918668366381105],[-125.6077368670937,57.918531901517056],[-125.60784254710578,57.918417821973286],[-125.60792672878712,57.91833956635175],[-125.60801169340046,57.918288228425325],[-125.6081444366808,57.91821011554101],[-125.60828478019228,57.91811071682677],[-125.60840037494319,57.91805610428855],[-125.60855305433425,57.91798814290032],[-125.60869986788704,57.91787530507401],[-125.60875102506374,57.9178272318409],[-125.60872373831981,57.917812572522024],[-125.6085913628236,57.91775498843074],[-125.60841151847481,57.91769614322723],[-125.60833046063463,57.91767571840059],[-125.60833597922075,57.91765330510723],[-125.60833747393013,57.917509760609676],[-125.60825659514099,57.91726952707185],[-125.60792075543415,57.917090224612025],[-125.60747171798369,57.91693862474911],[-125.60720628839252,57.91678756482748],[-125.60705289081388,57.91662225569482],[-125.60691440403559,57.91644241123545],[-125.60683031765727,57.91630982913474],[-125.60677634578953,57.91622331632685],[-125.60674333898713,57.91615032307937],[-125.60671051991977,57.9160593867978],[-125.60667424532097,57.9159953556903],[-125.60665237451171,57.915968375744264],[-125.60661495944696,57.91591331305034],[-125.60654932534563,57.9158312516427],[-125.606499352968,57.91576605857438],[-125.60643153186534,57.91569296244958],[-125.6063355039489,57.91559174611225],[-125.60626081646973,57.91546816331741],[-125.6061635362096,57.915285075627054],[-125.60601537014989,57.9151242668848],[-125.60579739481685,57.914978952079196],[-125.60555739382258,57.914820114050926],[-125.60542464565735,57.91469972337685],[-125.60539558140665,57.91465365691737],[-125.60534897463508,57.91467034095008],[-125.60526429699458,57.914694762478504],[-125.60515040224885,57.91468769613008],[-125.60496568061973,57.91469163441417],[-125.60475631992578,57.914731386471914],[-125.60459942827619,57.914699519684916],[-125.60444878339217,57.91457458903541],[-125.60432116578643,57.91446767018155],[-125.60424490436048,57.91439342648248],[-125.6042126727582,57.91434847183788],[-125.60418643708931,57.91433381475288],[-125.60405692438061,57.91430763603702],[-125.6037536577793,57.9142461748702],[-125.60336086735573,57.914167624424714],[-125.60303885761154,57.91408255491397],[-125.60276082492841,57.91403013845464],[-125.60248169884383,57.913982204041176],[-125.60231313717267,57.913955907108964],[-125.60216774298769,57.913934165037375],[-125.60195387036671,57.91390100350124],[-125.60168221930144,57.91384411797187],[-125.60137805615389,57.91376919106115],[-125.60120235097885,57.91371932044064],[-125.60106454352652,57.913679656327716],[-125.60081855352186,57.913591444674],[-125.60057878871089,57.913513344480215],[-125.60043050907912,57.91346467654462],[-125.60037790395101,57.913449939623696],[-125.60028411878784,57.91343844354548],[-125.6000659344709,57.91341423781775],[-125.599998461384,57.91340842788414],[-125.59991411707284,57.91340144577827],[-125.59988569480245,57.91339575305941],[-125.59983688131261,57.91342140028949],[-125.59972121182415,57.913481612261975],[-125.59962253757051,57.913532903443055],[-125.59950126551168,57.913624499607295],[-125.59928439108928,57.91377524616039],[-125.5990919556615,57.91390924385295],[-125.59890685951065,57.913950181181676],[-125.59869260683227,57.91395290037049],[-125.59850176524917,57.913938867687435],[-125.5983826474763,57.914025983487086],[-125.59834356310114,57.91422660924337],[-125.59829044057281,57.91435990433012],[-125.59817793984497,57.91442012459241],[-125.59805019821856,57.91452403622996],[-125.5979085735864,57.9146424850093],[-125.59780638393852,57.91472516556603],[-125.59776375482039,57.91476428843174],[-125.59775412223131,57.914777717028656],[-125.59773177392906,57.91479447165098],[-125.59765283473263,57.91487385788712],[-125.59746567253009,57.91500786934395],[-125.59723846965207,57.915136152148335],[-125.5970233019085,57.91522521940154],[-125.59660447316917,57.915312548334676],[-125.59610266634796,57.91536261577969],[-125.5957967788072,57.91544804159984],[-125.59551425999118,57.91561652679415],[-125.59527462494431,57.91572233912256],[-125.59520382940654,57.91572997436041],[-125.59518188249592,57.9157108426054],[-125.59510871424307,57.91564557472937],[-125.59498116785294,57.91553416105882],[-125.5948443580657,57.91540028961862],[-125.59478068463204,57.915336171928665],[-125.59467844966295,57.91532352471527],[-125.59447647001465,57.9152645934055],[-125.59428486755995,57.91512494725541],[-125.59403878854899,57.914947004743176],[-125.59371344436516,57.91478115630632],[-125.59338657137253,57.914660161372886],[-125.59314157910367,57.914577545831875],[-125.59290279052547,57.91450840648313],[-125.59266193620671,57.91443365302533],[-125.59256196535277,57.914408674905104],[-125.59242395319016,57.91438694475396],[-125.59214637077831,57.91429413442549],[-125.5919897294922,57.914142255897254],[-125.59194359126535,57.9140187525455],[-125.59185330516004,57.91397585999581],[-125.59173303514643,57.91397324852795],[-125.59164653198143,57.91397074045867],[-125.59161804495,57.91396953166348],[-125.59162087814262,57.914000941592526],[-125.59161998939233,57.914082806402064],[-125.59161906411398,57.91416803552638],[-125.59154789327668,57.91421043332271],[-125.59131153613701,57.91420858698195],[-125.59092508166802,57.914229830354756],[-125.59052567113056,57.91427794814913],[-125.59020765459607,57.91431397893535],[-125.58993392775143,57.91435126677251],[-125.58964534622777,57.914397480084865],[-125.58935242826597,57.91445265119998],[-125.58918430047046,57.91448465559581],[-125.5891387825009,57.91449685143795],[-125.58906474502444,57.91451232371917],[-125.58898125562934,57.91452440237756],[-125.58893053111706,57.91453097471664],[-125.58887652214811,57.914547630165934],[-125.58866045381922,57.914524533732006],[-125.58816239036447,57.91442542675478],[-125.58761254598315,57.91433400795756],[-125.58723638114367,57.91428349817126],[-125.58698343571936,57.914254677385706],[-125.58681029297912,57.91435731608687],[-125.58664732343304,57.914591198610445],[-125.58651855089062,57.91478593553274],[-125.58642765596797,57.91489555789485],[-125.5862803155987,57.91495453857443],[-125.58606777641933,57.91499425146834],[-125.58580856695475,57.915054005484315],[-125.58541718756186,57.91513802021719],[-125.58499718706851,57.915234280886175],[-125.58469737949012,57.91533876530299],[-125.58443149154785,57.915431018641314],[-125.58418859721985,57.91544708289872],[-125.58400950164553,57.91541960839585],[-125.58384738963063,57.915383214901134],[-125.58359086395424,57.915296059756486],[-125.5833132966299,57.9152032309364],[-125.58317126473993,57.9151635349993],[-125.58307832849482,57.915169973043994],[-125.58296737443722,57.91518420495086],[-125.5829208565381,57.915191909655384],[-125.58289106091664,57.91521424587787],[-125.58283776375013,57.91526230243899],[-125.5828014499563,57.91530144036341],[-125.58275026305458,57.915349503502966],[-125.5826381840434,57.91546354293699],[-125.58251106135288,57.91560332909295],[-125.58242128674195,57.91570510203728],[-125.58234533370347,57.915796824979424],[-125.58227701222462,57.91586726377091],[-125.58219382954573,57.91594550626222],[-125.58206040932419,57.91608190789054],[-125.5819811477109,57.91618707800482],[-125.58197240640033,57.91621396601344],[-125.58179733040124,57.91620444475715],[-125.58141522091626,57.91621221658899],[-125.58108968401231,57.91625717394619],[-125.58083603020064,57.91629114192223],[-125.58062462458399,57.916321877982],[-125.58043099982034,57.91636612742719],[-125.58019283187973,57.91643154430756],[-125.57998545824304,57.916479114221204],[-125.57968622832396,57.91652975849141],[-125.57934265486242,57.91658362652453],[-125.57917776681612,57.916606656831256],[-125.57914189962761,57.91660542205893],[-125.57909125843352,57.91660414060276],[-125.57902911360998,57.91659272948464],[-125.57896280222474,57.916577940738634],[-125.57884484881731,57.91655625986044],[-125.57864248536524,57.91653319046976],[-125.57849778988236,57.91654282606775],[-125.57847020167493,57.91655619651035],[-125.57843946860287,57.91656843551949],[-125.57837690921563,57.91659403153463],[-125.57829965547806,57.916613973625104],[-125.57815043659949,57.91665050998703],[-125.57795540806532,57.916726152788364],[-125.57783765004065,57.91678185358194],[-125.57778565539566,57.91680636132562],[-125.57773562448875,57.91684545448288],[-125.57764583399258,57.91694722434102],[-125.57748726939272,57.91715868090897],[-125.57733186049045,57.91737014735172],[-125.57724409003943,57.91747977375964],[-125.57720672141527,57.917518906927945],[-125.57717455780272,57.917563663998706],[-125.57714129253436,57.91761178200339],[-125.57711004122126,57.9176699997028],[-125.57708829183674,57.91772712608139],[-125.57708069442135,57.91774504562529],[-125.5770553163463,57.91774945098155],[-125.57697076476208,57.91776039733805],[-125.57683025182294,57.91777453034889],[-125.57658914677847,57.9178175020249],[-125.57627910839187,57.91788941251364],[-125.57599960581074,57.917968148344],[-125.57568424626224,57.91804452645037],[-125.57541319657103,57.9181221665113],[-125.57532321086498,57.9181476737456],[-125.57524699920457,57.918167617435216],[-125.57508284453698,57.91821756058785],[-125.57497805838773,57.91824526334959],[-125.57488489765143,57.91827076016468],[-125.5746417399473,57.91830811440848],[-125.57429517165151,57.91834401636342],[-125.5738873551129,57.918383085991515],[-125.57349547378449,57.91841211206786],[-125.57305290162849,57.918445460488854],[-125.57244864952452,57.91849623239786],[-125.57206720447074,57.91853538109477],[-125.57192025264506,57.91855846011486],[-125.57171294620856,57.91859816718326],[-125.57157401100964,57.91865715896396],[-125.57154521859289,57.91868398190726],[-125.57152170719131,57.91870970034824],[-125.57145456038552,57.918766679897125],[-125.5713938134661,57.91881919408166],[-125.57133860308006,57.91884817496164],[-125.57127814576761,57.91887377449511],[-125.57120835208391,57.91888588618777],[-125.57117123150206,57.918902588929754],[-125.57117262619185,57.918965396338514],[-125.57117430064359,57.919095493503455],[-125.57117443107043,57.9191773620325],[-125.57117422649534,57.919195305070225],[-125.57123138064468,57.91927287119981],[-125.5713426894759,57.91941565745826],[-125.5713888305735,57.919533561433774],[-125.57135938554555,57.91961757781946],[-125.5713249490581,57.91967578407101],[-125.5713055561182,57.91971048760606],[-125.57132763676042,57.91981037051565],[-125.57144350042448,57.92001597440517],[-125.57165702258126,57.92026450854213],[-125.57176435691068,57.920477935197425],[-125.57151596712539,57.92069582576794],[-125.57111245963081,57.92090985228416],[-125.57097278577464,57.921032765773354],[-125.5710128167672,57.92113270666923],[-125.57091606401781,57.921287159846685],[-125.57076564193147,57.92142686081659],[-125.57070809877958,57.92147489923685],[-125.57069112241656,57.921482694927946],[-125.57065729769089,57.9214870718785],[-125.57062137491525,57.921490320576105],[-125.57051956770704,57.92153260885511],[-125.57034967499534,57.92162177986166],[-125.5702413295273,57.92168199059782],[-125.57022413511687,57.92170885075714],[-125.57022901062425,57.92174475397299],[-125.570224225039,57.921794083839366],[-125.57020682551412,57.921838887085464],[-125.57018641781558,57.92186910133289],[-125.57017456016037,57.92189149276894],[-125.57016912074567,57.92190493303398],[-125.5701338512339,57.921944071208486],[-125.57002746151267,57.92201774591762],[-125.56987996492131,57.922085680441775],[-125.56972193027259,57.92215358078098],[-125.56956619441111,57.92220354460978],[-125.56943807063021,57.92224013966761],[-125.56934073867411,57.922260011854426],[-125.56909959631805,57.92230297017859],[-125.56867444560429,57.92237673414686],[-125.56840580859937,57.922424088163886],[-125.5682619972367,57.92244717347133],[-125.56810230686953,57.922473571613246],[-125.56803351785378,57.92249017091058],[-125.567868609874,57.922512065919506],[-125.56749209550216,57.922578133468264],[-125.56717471108284,57.92264214907003],[-125.56685692519078,57.92274092867155],[-125.56639906697997,57.92290429798432],[-125.56599233308599,57.923027458791154],[-125.56567483871191,57.92310044240224],[-125.56544187136383,57.92316585054585],[-125.56517375302924,57.92325805926271],[-125.56489198553133,57.923344615453225],[-125.56468033252466,57.923392148101435],[-125.5644846104864,57.92343188207977],[-125.56438093996624,57.92345172997052],[-125.56435761554486,57.923460625612066],[-125.56414137537564,57.923539544047436],[-125.56368761349658,57.92371188954539],[-125.56338647586406,57.923829780832776],[-125.56329852336702,57.923858651292804],[-125.56323922065366,57.92387527924241],[-125.56296841602432,57.92392597978666],[-125.562410125469,57.92400938066121],[-125.56185905949535,57.92410738230635],[-125.56144859883486,57.924185657723385],[-125.56125402097501,57.924216418877016],[-125.56118210315128,57.92422851843479],[-125.56101285683854,57.9242593626544],[-125.56064053493613,57.92432542487255],[-125.56017106609451,57.92439452991484],[-125.5597756909249,57.92444593429561],[-125.55937586927767,57.924516388110014],[-125.55899921471509,57.9245914033599],[-125.55854646973253,57.924674015927586],[-125.55798393621433,57.92475738433668],[-125.55741189211905,57.92484071879977],[-125.55681752946835,57.92493743446889],[-125.55646082309958,57.92502148086331],[-125.5562884394518,57.925138663374014],[-125.55606488636953,57.92529829183195],[-125.55578881969672,57.92543531511173],[-125.55540713114232,57.92557759295562],[-125.5550932463397,57.92569878780996],[-125.5548880469561,57.92573399025991],[-125.55461184074584,57.92570390865702],[-125.55430929123425,57.925669252417414],[-125.55414278209038,57.92564626561916],[-125.55399309518285,57.9257186615911],[-125.55368884171172,57.92591726825858],[-125.5533024385589,57.92609989806982],[-125.55300563142642,57.926204322988404],[-125.5528971383216,57.926273491479975],[-125.55289083874794,57.92635870367342],[-125.5528929471804,57.92644843004906],[-125.55286150501564,57.92669505267904],[-125.55278023605678,57.92713776926969],[-125.55271277279616,57.927396607578885],[-125.55269767442779,57.92742347272237],[-125.55254486917235,57.92749024930605],[-125.55214377282927,57.92766385485493],[-125.55167368940002,57.927867507493616],[-125.55124832793116,57.92803990731816],[-125.55083715927913,57.92817197989566],[-125.55048534331975,57.92828406455312],[-125.55030801509481,57.92836982133526],[-125.55007410222647,57.92842174205364],[-125.54961345102745,57.928453830900715],[-125.54927553289927,57.92846278192681],[-125.5489455752695,57.92851213282761],[-125.54842506664467,57.928605697161636],[-125.54804084364562,57.92868962828184],[-125.54770756210952,57.92875242280397],[-125.5471470007852,57.92884023878272],[-125.54644879925571,57.92896122892206],[-125.5457611089255,57.92908561574602],[-125.54528944204766,57.929154661507475],[-125.54488955677296,57.92922395075509],[-125.54441851254613,57.92932776194398],[-125.54413896702265,57.92939746027789],[-125.54404055597861,57.92941731055018],[-125.54398552655877,57.92942833722794],[-125.54394118955543,57.929428185515405],[-125.54387870772878,57.9294436726302],[-125.54382745183166,57.929491721519234],[-125.54375565711464,57.92958007393408],[-125.54365390667894,57.9296133704467],[-125.54356547727106,57.929592880697705],[-125.54347277090922,57.92957686222343],[-125.5433432311258,57.92955062401853],[-125.54314092855253,57.92951852879953],[-125.54288726265091,57.929457098220354],[-125.54275599423809,57.9293994516327],[-125.54272615278465,57.92933654548324],[-125.54266020130544,57.92920398269093],[-125.54226753654186,57.92902655984392],[-125.54160254570344,57.92893231160435],[-125.54125540278568,57.92891878068278],[-125.54117514766203,57.928920747397754],[-125.54109799622542,57.928927210733264],[-125.5410282289204,57.92893482094987],[-125.54095208674129,57.928945773658974],[-125.54081545341506,57.92898343381059],[-125.54062133302452,57.92905902653469],[-125.54049475308604,57.9290507396949],[-125.54045135666244,57.9288879732078],[-125.54031241670374,57.92876749403436],[-125.5400806536796,57.928814918723695],[-125.53993107485024,57.92887384170352],[-125.53984154713405,57.928857831677014],[-125.53973202278856,57.92883614505399],[-125.53960781592988,57.92880655715235],[-125.53947084563308,57.92878477549887],[-125.53935803649318,57.92877204918129],[-125.53928210026234,57.92876617921506],[-125.53919773280823,57.928759158558435],[-125.53905437419475,57.92874184036966],[-125.53882664842196,57.92871750113575],[-125.53858509821704,57.92870208561312],[-125.5383845851031,57.92869690525896],[-125.53817674311395,57.92868609172921],[-125.53797107071487,57.92867192091029],[-125.53786353518728,57.92866033310429],[-125.53777505603512,57.92864432532448],[-125.53762014720085,57.92862135805386],[-125.53750528620868,57.928605258561184],[-125.5374455213207,57.92857140628114],[-125.53740224767151,57.92848490093875],[-125.53734425230502,57.928308624871086],[-125.53695966561958,57.92807738272176],[-125.53625939834447,57.92793700395241],[-125.53585559330942,57.92789522439],[-125.53576606965842,57.92787921164218],[-125.53558061670762,57.92785164962265],[-125.53516733528092,57.92780871345393],[-125.53457899253162,57.927751706801544],[-125.53395214984715,57.92773493672819],[-125.53347027010444,57.92777586749108],[-125.5332756507955,57.927806587904975],[-125.53322910711177,57.927814275358635],[-125.533161186945,57.92784319632039],[-125.53305342677287,57.92776431414647],[-125.53271957309491,57.92761622814105],[-125.53209223114251,57.9276398213743],[-125.53159491574505,57.92773340142333],[-125.53141501755555,57.92776865684393],[-125.53136320400645,57.92777632511735],[-125.5313337032452,57.92777173539425],[-125.53127998525284,57.92776145301644],[-125.53119474217131,57.92774096626719],[-125.53108317081674,57.92771477935203],[-125.53096325279111,57.92768071250255],[-125.53086966036598,57.92765122419993],[-125.53083707139177,57.927641016020814],[-125.53078658491337,57.927626258840945],[-125.53063394969888,57.92759095500525],[-125.53042869224716,57.92754425064018],[-125.53023579126197,57.92752114090923],[-125.5299827444947,57.92749669729022],[-125.52978864263275,57.92748591911999],[-125.52973793238216,57.92748910467215],[-125.52972931938822,57.9275025322181],[-125.52963524027157,57.92751341514957],[-125.52945579035121,57.927512781662145],[-125.52933981606385,57.92750115717565],[-125.52922589686325,57.927494025827734],[-125.52902729197078,57.927505660540604],[-125.5288159496416,57.92752285739904],[-125.52869019972832,57.927532506189486],[-125.5286172741803,57.92754009872819],[-125.52851996319363,57.92755545542319],[-125.52831285677689,57.92757154497727],[-125.52798316100858,57.927598415022366],[-125.52773377417097,57.92761883990132],[-125.52760808001135,57.927624001890116],[-125.52747188907483,57.927625762056316],[-125.52729466261553,57.92761616158168],[-125.52716797766348,57.927616833659776],[-125.52704239627236,57.927613023552425],[-125.52685567811714,57.9276033888077],[-125.52671221667784,57.92759502892617],[-125.526610908295,57.927592426108696],[-125.52650442650113,57.9275808328702],[-125.52635586522979,57.927558996540476],[-125.52619029891964,57.9275449500551],[-125.52599097080936,57.927530783282734],[-125.52574625828616,57.92751533321615],[-125.52562701090208,57.92751154431431],[-125.52559418295488,57.9275203994202],[-125.52557390611588,57.92753714966803],[-125.52553978770533,57.92756394409395],[-125.52552485381035,57.92757622737537],[-125.52549735188884,57.92758061543856],[-125.52542016078519,57.92759155552961],[-125.52534499314918,57.92760811026076],[-125.52531961651994,57.92761138436172],[-125.52529917235898,57.927642713416425],[-125.52519121817208,57.927747749429145],[-125.52502279117078,57.92787724276145],[-125.52489501428015,57.92796426397832],[-125.52481314632307,57.92801107492569],[-125.52476426268518,57.92803669502569],[-125.52471754688383,57.92805783685541],[-125.52461555687358,57.92810906190875],[-125.5244706895912,57.9281276105093],[-125.5243156234802,57.928119206640346],[-125.52416344617717,57.928132121334244],[-125.52400635076177,57.92819997160954],[-125.5238694164924,57.92825892176588],[-125.52374520861133,57.9283145527768],[-125.52365493350759,57.92835684700728],[-125.52362088402226,57.92837803373572],[-125.52347506571304,57.92847283964086],[-125.52324112438122,57.92860658257026],[-125.52284788792994,57.928730782906285],[-125.5222284913537,57.92887547997678],[-125.52179081250489,57.929007368403234],[-125.5217004363114,57.92905863297252],[-125.52166678453183,57.92904841871717],[-125.52147525035788,57.92908361906087],[-125.52118905901852,57.92917455397778],[-125.5210500224032,57.92923349377291],[-125.52099168258788,57.929254592561584],[-125.52090335883055,57.92931034997856],[-125.52085833614181,57.92936402002726],[-125.52084060277772,57.92943012466016],[-125.52079888774719,57.9295555824773],[-125.52071885464494,57.929705575471246],[-125.52061476120792,57.929837537922545],[-125.52055263252792,57.929907968851786],[-125.52046980524726,57.9299458018196],[-125.52029175413502,57.93000011450878],[-125.52006623496422,57.93005201304029],[-125.5198375397471,57.93010389975263],[-125.51967027279538,57.93014030649297],[-125.51964490967008,57.93022432751879],[-125.51966289844023,57.930387009752764],[-125.51956830889664,57.93051900575346],[-125.51947052788636,57.9305702422232],[-125.51943750693397,57.93059255315572],[-125.5193642438773,57.930625933959895],[-125.51922700671214,57.93070730845828],[-125.51915578289305,57.93074630400885],[-125.51910605720607,57.93075397509705],[-125.51905728086798,57.93077062159198],[-125.51898612848498,57.93080400981338],[-125.51882467503066,57.93088081051672],[-125.5186894897133,57.93096667789949],[-125.5185704777691,57.931026809070616],[-125.51845054746512,57.93107684331951],[-125.51837186642142,57.931120297529475],[-125.51834302399106,57.931145987809025],[-125.51832379173509,57.931163862311635],[-125.5181994934491,57.931142104526714],[-125.51798406335153,57.931065063550435],[-125.51787793387297,57.931025427168244],[-125.51777363084186,57.93100934881763],[-125.51752583867969,57.93098490052436],[-125.51724001593585,57.93096367852254],[-125.51680521850784,57.93095088789347],[-125.51623185879728,57.93095777997839],[-125.51582080217588,57.930987689326585],[-125.5156569893745,57.9310005521285],[-125.51561384478839,57.93099030182657],[-125.51549862228514,57.931001098019806],[-125.51529196272821,57.931063150636874],[-125.51517313302874,57.9311086999544],[-125.51515401497153,57.9311176024137],[-125.5150837321539,57.931164449751975],[-125.51495586322402,57.931255947531895],[-125.51488769128628,57.93130280245759],[-125.51487907211573,57.931316229097284],[-125.51484494265523,57.9313430208912],[-125.51480114426373,57.93138211399041],[-125.51476702916037,57.931407784317685],[-125.5147256483714,57.9314244561736],[-125.51459841469782,57.9314666098998],[-125.51433564575203,57.93153967173301],[-125.51409484866306,57.93162739268153],[-125.5140005807577,57.93165172200657],[-125.51385270992624,57.93165679023226],[-125.51350514810451,57.93175533567971],[-125.51316175099551,57.93193912959381],[-125.51302832866831,57.93205191388004],[-125.51301959246335,57.932074312002435],[-125.51291182245245,57.932080647207336],[-125.512689846291,57.9321011443396],[-125.51250597742428,57.9321139299745],[-125.51242434442763,57.93213942592033],[-125.51236713457291,57.93223678732419],[-125.51210927681652,57.93233677889092],[-125.51170155087316,57.932433977995714],[-125.51141736355909,57.93252938578131],[-125.51132923422749,57.93256719379128],[-125.51126367706125,57.93257480393766],[-125.51110923454941,57.932597789088184],[-125.51090590736365,57.93264526775106],[-125.51056800079428,57.93264963487205],[-125.51022757816914,57.93260464575596],[-125.51013927213302,57.932655910375125],[-125.51014432076099,57.932754621209206],[-125.51002406682974,57.932828198407655],[-125.50978625162877,57.932929380761315],[-125.50957147127728,57.93304522701255],[-125.50948961481102,57.9330875429337],[-125.50937616128557,57.933125256487614],[-125.50913334810978,57.93320398924605],[-125.50899433627882,57.93325843091275],[-125.50896666716436,57.93327515154079],[-125.50892415896456,57.9332963035077],[-125.50887717869139,57.93333650455227],[-125.50881227141852,57.933374396510835],[-125.50870239457133,57.93346146887333],[-125.5085505280914,57.933610069080636],[-125.50844209944735,57.93374649279502],[-125.50836154739001,57.93385161713755],[-125.5082619595252,57.93395779272268],[-125.50821059328739,57.93401031393885],[-125.50814007067272,57.93399435264773],[-125.50798198438181,57.93397246059418],[-125.50776081658108,57.9339301483182],[-125.50738373408707,57.93386146491568],[-125.507004364988,57.933806230046436],[-125.50679780338574,57.933777428253144],[-125.50668809249446,57.93377029321935],[-125.50664177144698,57.93376002822953],[-125.50655000012055,57.93375295948303],[-125.50626603842176,57.93374966490773],[-125.50584755931769,57.93377839472697],[-125.50539987230455,57.933780098736],[-125.50507156640435,57.933775515553336],[-125.50495770769002,57.933843504529825],[-125.50483004132504,57.93391704964641],[-125.5044857711822,57.934002126137486],[-125.50412017911249,57.93410394501209],[-125.50389542357006,57.934173763508035],[-125.50362445002759,57.934225465432775],[-125.50320635892825,57.93430353470102],[-125.50280504195742,57.934391758795776],[-125.50244700166186,57.93448014324955],[-125.50218441077985,57.93453635959475],[-125.50209551715605,57.93455172865159],[-125.50208255072438,57.934574110340165],[-125.5020556872598,57.93460877668198],[-125.50204378501583,57.9346311623439],[-125.50199428837601,57.93462088386541],[-125.50190904570746,57.934600378238244],[-125.50187004754787,57.93459462496995],[-125.5017486705866,57.93459192829667],[-125.50147859815345,57.93457521738362],[-125.50119609462386,57.93454051530215],[-125.50096413514387,57.93451609542296],[-125.50082499533536,57.93449875182059],[-125.50067494039483,57.934508283335575],[-125.50045833289907,57.93451980828827],[-125.50033999594667,57.93452609377557],[-125.50030511888248,57.93452932754836],[-125.50027239610759,57.934528083363155],[-125.50019100500225,57.934535628735375],[-125.50001024568817,57.93447214644871],[-125.49978322670555,57.934393910739836],[-125.4995438595913,57.93445020904349],[-125.49929195680522,57.934496366275106],[-125.49889950532632,57.93447246131748],[-125.4984100124202,57.934441461019226],[-125.49794298272589,57.93438811340363],[-125.49756679795988,57.934332863605185],[-125.49729250614502,57.934316128296125],[-125.49704868858343,57.934309600974586],[-125.49690725972044,57.93430570271759],[-125.49689044235244,57.934300031708005],[-125.49673227473714,57.93420634956424],[-125.49645153568211,57.9340404278336],[-125.49630063196732,57.933955744686195],[-125.49626692260614,57.93395000976306],[-125.49620769457324,57.93395763645496],[-125.4961070577658,57.9339819291762],[-125.49599171712181,57.93400168019839],[-125.49594087494526,57.93401382450713],[-125.49594482226271,57.93411253199344],[-125.4959703747567,57.93433356540946],[-125.49597366068038,57.93448161672626],[-125.49588012048952,57.93452836626837],[-125.49570953142704,57.93457370275768],[-125.49555780879533,57.934628082490626],[-125.49545577629104,57.934678164127305],[-125.4953826495563,57.93469919593802],[-125.49524918389842,57.934731214302275],[-125.49502054648573,57.93477408708009],[-125.49478642525207,57.93483151828043],[-125.49454903883753,57.93489678724641],[-125.49436959293577,57.93497236916966],[-125.49428475882681,57.935077469054114],[-125.49421820627049,57.93523759215594],[-125.49413635083637,57.93535728288649],[-125.49408818228895,57.935405324921774],[-125.4940762146841,57.935432195694354],[-125.49406159034729,57.93549830917081],[-125.49404131804734,57.93559243892078],[-125.49401495225433,57.9356686014111],[-125.49395507197613,57.935724449517664],[-125.49386854790309,57.935799262081815],[-125.49376613245477,57.935877378771345],[-125.49363808988913,57.93597670670871],[-125.49349637291708,57.936071496540244],[-125.49328966874722,57.93620977806477],[-125.4931009811314,57.936343641771565],[-125.49299874409009,57.936408300492694],[-125.49287432570362,57.936472874754905],[-125.49271808220878,57.93654966440196],[-125.4926253380575,57.9366143589815],[-125.4925984813083,57.93664902355577],[-125.49258520577614,57.936693833413734],[-125.49257168802667,57.936756586508956],[-125.49255643990817,57.93686867946052],[-125.49253779039282,57.93699870363794],[-125.49252620250164,57.937074922219594],[-125.49248325685399,57.93712746970285],[-125.4924003854269,57.937165285510424],[-125.4922911258798,57.93720300076484],[-125.49214051259557,57.93725289500056],[-125.49200964870951,57.93732529454692],[-125.491933933346,57.93738108151784],[-125.49184392223022,57.93747830985402],[-125.49174212089294,57.937587829807896],[-125.49169818679424,57.937635887259944],[-125.49169066596468,57.93764483066995],[-125.49164202298387,57.93772875850721],[-125.49152522833442,57.93793242810426],[-125.49138149587623,57.938175247778254],[-125.49124608898425,57.938428192749335],[-125.49111856406888,57.93864415783965],[-125.49102148361031,57.93879519138054],[-125.49096425204583,57.93888805839169],[-125.49094155501284,57.9389272246618],[-125.49092858043144,57.93894960536821],[-125.49089741918158,57.93898873930995],[-125.4908747675826,57.939024541208596],[-125.49086831063384,57.93903348865012],[-125.49084678238617,57.939063687272075],[-125.49080902726905,57.93912186173279],[-125.49071480061897,57.939217951896666],[-125.4903114268916,57.93929603766662],[-125.48971396195255,57.93928029380751],[-125.48944410488593,57.93924561514995],[-125.48945423755956,57.93927705632723],[-125.4894711896919,57.93935001961361],[-125.48948126149688,57.93938594661247],[-125.48961248304926,57.939443646262156],[-125.48988534794391,57.9395680571683],[-125.49003855414482,57.939639298692384],[-125.49004899168249,57.939648310729],[-125.49000608527535,57.939697493189996],[-125.48987517742894,57.939850639702584],[-125.48973185321314,57.94006205732303],[-125.48968625423277,57.94023235294096],[-125.48970832795001,57.94031767253133],[-125.48971019334246,57.940413008403894],[-125.48964622619414,57.940536130143265],[-125.48952689384228,57.94061417928429],[-125.48944518111126,57.94064302575216],[-125.48942170644598,57.940660880085],[-125.48941313696417,57.94066981938303],[-125.48932572612232,57.94073004637489],[-125.48916637042156,57.940878597344586],[-125.48907909166257,57.9410061156148],[-125.4890561932248,57.94105986059177],[-125.48900702433895,57.94110341123622],[-125.48894809925001,57.94116486871361],[-125.48887094122176,57.94124756506177],[-125.48875465934519,57.94133459740648],[-125.488697164,57.941369143894214],[-125.48856850317705,57.94135631370152],[-125.48832582800978,57.941340802801136],[-125.48819585868748,57.941345911479324],[-125.48814228129073,57.94140290308927],[-125.4879328574867,57.94150527831504],[-125.48756464390232,57.94155769625346],[-125.48724361136125,57.94155758339595],[-125.4871199617086,57.94156383685273],[-125.4870576980648,57.94156135426863],[-125.48694895451146,57.941558692789044],[-125.4868476112651,57.941556059706116],[-125.4867885530704,57.94155022478592],[-125.48670410549704,57.941547656634896],[-125.48654390329695,57.94152460939305],[-125.4863692700697,57.94147571148717],[-125.48622949288617,57.941426947687184],[-125.48603377173667,57.94137572503998],[-125.48578941508839,57.94132880058521],[-125.48568403278578,57.94131269284341],[-125.48563758541947,57.941311392128085],[-125.48552449601794,57.94131768484551],[-125.48538943922044,57.94130931296189],[-125.48518982315349,57.941311906813226],[-125.48496081156894,57.94137831322684],[-125.48474590269291,57.941416735853984],[-125.4843991572957,57.941367170042355],[-125.48399864222579,57.94131066612136],[-125.48374210996656,57.94130406536415],[-125.4836354500131,57.941304773796446],[-125.48348331324748,57.941309792019],[-125.48324250575125,57.941312223354686],[-125.48307987088377,57.941312714357956],[-125.48291308926328,57.941307581496815],[-125.48263881482437,57.941286330084296],[-125.48238277712674,57.9412438401044],[-125.48220283288619,57.94119828065712],[-125.48212074555391,57.941177774505185],[-125.48206175049506,57.94116745166831],[-125.48199214944714,57.94116045214334],[-125.48196157980385,57.941155847291675],[-125.4819102941589,57.94112312401912],[-125.48180759802527,57.94106552754555],[-125.48175729830851,57.941037294113436],[-125.48174232929586,57.94105069411629],[-125.48169961143543,57.94108529504605],[-125.48164863134824,57.94110640564288],[-125.48151326680797,57.94112045895798],[-125.4813058025152,57.94115554044142],[-125.4811449242087,57.941181830793894],[-125.48103369865684,57.94120607122003],[-125.48086970695027,57.94122898457385],[-125.48061997171573,57.941266143419696],[-125.4804274133688,57.94129230948624],[-125.48035443450028,57.94129987565718],[-125.48023118911028,57.94127808638272],[-125.47999466753843,57.941276042495176],[-125.4797446051829,57.94133675028411],[-125.47951566146833,57.941397540064074],[-125.47940146113288,57.941408309323236],[-125.47926609466542,57.94142236036108],[-125.47891251354035,57.9414849052498],[-125.47850802655157,57.94156295132945],[-125.47823795010929,57.941619091966956],[-125.47808446797599,57.94164540760191],[-125.47794163755712,57.9416639141523],[-125.47779142358372,57.94168239162864],[-125.47766237582788,57.9416975873167],[-125.4775978136027,57.94170854951631],[-125.47756608741518,57.941711789744204],[-125.47754670567193,57.94173863020988],[-125.47751166722186,57.94182821429843],[-125.47748919132614,57.941925698248774],[-125.47747271950666,57.9419704944002],[-125.47745881303163,57.94198389810733],[-125.47743210864954,57.94200510227389],[-125.4774034182922,57.94201844802559],[-125.47732821627113,57.94203385446418],[-125.47709355247393,57.94204975701651],[-125.47681275266508,57.942041926230424],[-125.4765508827096,57.9420397767697],[-125.47629114038864,57.94203651363445],[-125.47614857455595,57.94203707503128],[-125.47609361618372,57.94204022362101],[-125.47603554391208,57.94203887387754],[-125.47601339220134,57.942037665296006],[-125.47600145520137,57.942060048739606],[-125.47595873090971,57.942094647866554],[-125.47595395970437,57.942058740532225],[-125.47595420985644,57.942040797226255],[-125.47587497087702,57.94204272876219],[-125.47570271215419,57.942052145087864],[-125.47548046906685,57.942086037941756],[-125.47514159666845,57.94215311686487],[-125.47475614958755,57.94222786207708],[-125.47450197387644,57.94227957179732],[-125.47434487087766,57.94233727141432],[-125.47418775170921,57.942396092306446],[-125.47406882070452,57.942442726968615],[-125.47399572847127,57.942458139866055],[-125.4739374214079,57.94247473258483],[-125.47377360704246,57.94248305823376],[-125.47336772509387,57.94250837198684],[-125.47294707427227,57.94253250460215],[-125.4727238412283,57.94256190290904],[-125.47252487176965,57.94259251836505],[-125.47231005344783,57.942623070795534],[-125.47220338953768,57.94262377008256],[-125.47208975038389,57.94259416064567],[-125.47186571095934,57.94252934671711],[-125.47168993427462,57.94248827557837],[-125.47161347648307,57.94251825358643],[-125.47154415799947,57.942641345948864],[-125.4714656813904,57.94281487036308],[-125.47143083245231,57.94288987401263],[-125.47132245661271,57.94293654811635],[-125.47107378689765,57.94304659224044],[-125.47087790098503,57.9431579669389],[-125.47080944728077,57.943219378842905],[-125.4707944103408,57.94323726347688],[-125.47072995289906,57.943239250641795],[-125.47053869477914,57.943247463386435],[-125.47031567575793,57.94326003575471],[-125.47013161145654,57.94328173473988],[-125.46999399622636,57.94330473965581],[-125.46994530837843,57.94331239673361],[-125.46991786753925,57.94331116611126],[-125.46994176920539,57.943339299149656],[-125.4699251770675,57.943391944637675],[-125.46984820987866,57.94345780830373],[-125.46968561741842,57.94353006048811],[-125.46951936890733,57.94356080167096],[-125.46932237695329,57.9436003924451],[-125.46909327587977,57.943670136133214],[-125.46894367038291,57.943720008735916],[-125.46876983056755,57.94376529852994],[-125.46840477722117,57.9438894538104],[-125.46792698699046,57.94406923431625],[-125.46734695309524,57.9443091668921],[-125.4667603208802,57.94456701499891],[-125.46630483996228,57.944810805890924],[-125.46584455509546,57.94509495088981],[-125.46552714979757,57.945283216259405],[-125.46538362521855,57.94542395275836],[-125.46522964492395,57.94563081708066],[-125.46498068914185,57.94590683467757],[-125.46464973118901,57.94623074821926],[-125.46448366140893,57.946396066933],[-125.46442208122578,57.94649339222955],[-125.46423900897896,57.946740513718225],[-125.46402701843712,57.94694153624882],[-125.46385825401502,57.94699917705744],[-125.46373060657514,57.94706259066535],[-125.46369514617416,57.9471790866938],[-125.46373940026699,57.947261136061435],[-125.46370882034657,57.947331669189104],[-125.46349554379194,57.94747436649981],[-125.4631417738177,57.9476176194166],[-125.46279717253613,57.9477115612074],[-125.4625952857313,57.947795983668],[-125.46247642465478,57.94790877873087],[-125.46239258489945,57.94801049964592],[-125.462365713116,57.948116936344384],[-125.46239031283024,57.94824376807733],[-125.46242274657126,57.948339228646695],[-125.46244316411077,57.94838865815766],[-125.46244718025638,57.94840325420249],[-125.46213206169736,57.94850179935442],[-125.46166055642215,57.94875336176002],[-125.46169878784269,57.949033898078994],[-125.46193581998116,57.94922439303626],[-125.4619824418977,57.949288508271714],[-125.46186353817096,57.94933064653012],[-125.46160015629846,57.94943052087602],[-125.4614310394876,57.94951170950256],[-125.4613660572833,57.949550700525805],[-125.46124347660974,57.94962759078828],[-125.46104707695564,57.949770352807676],[-125.46079045002409,57.949988013491954],[-125.46054506062063,57.95023263591772],[-125.46041820482485,57.950386893750796],[-125.46038014969322,57.95046188225429],[-125.46034586920776,57.95056941040012],[-125.4602968988596,57.95074304937706],[-125.46023928487132,57.9509301117477],[-125.46021680705269,57.951024229324226],[-125.46014449938056,57.951057582523525],[-125.45991570650492,57.951101517283945],[-125.45966686825483,57.951143127370365],[-125.45950507721818,57.95122882955764],[-125.45938843833771,57.95133378064851],[-125.45926844409924,57.95145105488875],[-125.45912175987041,57.95158728681659],[-125.45903612932071,57.95166544666159],[-125.4590081661257,57.951700100695575],[-125.45893606503328,57.95179289528688],[-125.45880471389398,57.951965078157684],[-125.45866178108413,57.95220787044442],[-125.45852729667276,57.952450696952866],[-125.45838236079182,57.95268563021681],[-125.45822495775795,57.952905932809344],[-125.45810293339483,57.9531633896454],[-125.45806513704815,57.953440254837396],[-125.45810088057138,57.95367143606165],[-125.4581939115778,57.95381312735818],[-125.45839917012285,57.95401135116109],[-125.45869761188203,57.95426715121134],[-125.45893801690063,57.95444532928789],[-125.45901855527428,57.95450061123105],[-125.45900997540465,57.95450954870457],[-125.45899944348473,57.95458128421426],[-125.4589816523764,57.95471579624392],[-125.45886924091621,57.954892542727016],[-125.45857845600408,57.95513137109931],[-125.45822251246204,57.95534638196788],[-125.45793459667395,57.95545960868301],[-125.45761650545309,57.95554018752476],[-125.45692071885858,57.95580428162974],[-125.45582686414802,57.95627311139785],[-125.45460345281721,57.956639342825376],[-125.45354560343965,57.956734829464125],[-125.45287053934351,57.956734304820046],[-125.4525367004783,57.95673405637703],[-125.45246331014962,57.95676740124165],[-125.4526043013796,57.95695191231406],[-125.45291431351852,57.95735581679407],[-125.45323995816382,57.95777436479984],[-125.45336849186468,57.957944244143825],[-125.45338097330074,57.95795775377544],[-125.45339859795602,57.95798025680252],[-125.45341365356022,57.95803527395103],[-125.4534274896168,57.95824618014907],[-125.4534819852056,57.95856716395885],[-125.45366485949533,57.95885054140553],[-125.45397400251342,57.95909742482047],[-125.45425476356341,57.959335219106705],[-125.45437869042011,57.95953199586079],[-125.45438723581124,57.95967110196318],[-125.45435524387852,57.95983695925486],[-125.4543011608055,57.96006889716636],[-125.45417795617054,57.96033083391188],[-125.45399781301852,57.96058580829527],[-125.45390843540702,57.960700961295096],[-125.45389004303091,57.96073116764817],[-125.45386488709786,57.96078938487967],[-125.45385571769746,57.960838695226265],[-125.45384667869075,57.96087903376429],[-125.45384641785516,57.96089697738562],[-125.45389909702901,57.96090728696925],[-125.45417489459248,57.96097795156034],[-125.45458126234384,57.961079431238865],[-125.45478128560715,57.96112959692349],[-125.4549101564135,57.96120526704448],[-125.4551130406725,57.961349653573556],[-125.45523324860369,57.9614387465275],[-125.4553586832053,57.96153234689607],[-125.45566019506632,57.961652461354625],[-125.45598510570234,57.961688554787834],[-125.45630975729767,57.961742591073204],[-125.45672616938033,57.96188111613264],[-125.45699433199282,57.96196856697848],[-125.45707322501187,57.961993562096644],[-125.4571488752184,57.96202303014685],[-125.4572141058588,57.96204236185768],[-125.45723825224738,57.96205255401201],[-125.45724955873197,57.96207503090091],[-125.45728153774431,57.96220189551206],[-125.45733136870561,57.962409583961154],[-125.4573689749606,57.96258581945263],[-125.45741899662337,57.96285295060828],[-125.45749843752755,57.96320543891927],[-125.45759976087864,57.96343352471441],[-125.45765794231978,57.96350217557304],[-125.4576882113289,57.96367389515238],[-125.45771840916403,57.96399814475328],[-125.45771205801158,57.96421794203838],[-125.45766621981146,57.964392716964866],[-125.45761524727142,57.96462915612107],[-125.45760511035624,57.96474575580773],[-125.45775815156071,57.96475871502536],[-125.45798565480501,57.96481010925392],[-125.45804811413903,57.96487541277153],[-125.45789887512602,57.964965651699266],[-125.45766560231812,57.965093681465056],[-125.45729675473326,57.96524471184866],[-125.45675519238246,57.96542756288602],[-125.45636017283535,57.9655605394022],[-125.45624021112815,57.9655981831037],[-125.45624183118638,57.965705858361055],[-125.45624976419536,57.96610628361118],[-125.45604672474485,57.966773899302126],[-125.45557860755943,57.96735519580844],[-125.45523556104699,57.96761960291259],[-125.45497487708485,57.9678148095707],[-125.45459367238769,57.96815868945234],[-125.45423344869627,57.96851274820361],[-125.4539804899557,57.968757333061546],[-125.4537613274699,57.969003177452976],[-125.4535502898412,57.96927148590293],[-125.45334062392594,57.96951736865967],[-125.45304884149587,57.969814506004404],[-125.45274873094854,57.970102636228674],[-125.4525805210065,57.97026008528949],[-125.45221093112951,57.97045596187462],[-125.45158846247581,57.97074500886968],[-125.45125741534746,57.9709062731665],[-125.45108985111334,57.97101886095729],[-125.4507302236806,57.97125515065922],[-125.45039824992494,57.97148033782921],[-125.45018709631952,57.971609568350146],[-125.45001113636486,57.97171651251533],[-125.44990761481692,57.97178562223033],[-125.44984779207914,57.971829116269554],[-125.44972393530985,57.97191496534957],[-125.44944621782007,57.97211457831173],[-125.44912553302918,57.97236111875746],[-125.44891906571401,57.97260252254155],[-125.44874315372951,57.97284966011877],[-125.44845983537891,57.973070557743036],[-125.44803353172958,57.97331105143498],[-125.44764995933106,57.973520317105624],[-125.44738753563648,57.97375587942702],[-125.44714679226968,57.974099200864465],[-125.4469045578959,57.97439877498692],[-125.44661156427273,57.97462860152071],[-125.44631950016422,57.974867403825094],[-125.44613901203459,57.97506517100772],[-125.44608287808798,57.975144568816624],[-125.44604920560008,57.975134334974435],[-125.44587223919147,57.97509322395346],[-125.44551830753647,57.97501100121322],[-125.44509919689106,57.97490495370443],[-125.44478131963632,57.97481502802421],[-125.44467196499592,57.974776439864556],[-125.44458050318487,57.97474241234284],[-125.44428579745447,57.974658189745064],[-125.44386682707515,57.97454316647362],[-125.44353094717852,57.974456527468064],[-125.44330525311506,57.97442306073824],[-125.44295025222284,57.974413728169125],[-125.44249092662164,57.97438264913213],[-125.44217973385709,57.97434209385513],[-125.44209123792952,57.97432265731612],[-125.44205545347894,57.974312413636426],[-125.44197318240577,57.974300853973425],[-125.44180855707401,57.97428334194999],[-125.44165233701715,57.97426922957861],[-125.44151775303963,57.97429221908824],[-125.441282605631,57.97432600300092],[-125.44098392726683,57.97436737126625],[-125.4407891914226,57.97438450021006],[-125.44068644720436,57.97439977140385],[-125.44062721092688,57.97440288775843],[-125.44037352248203,57.974404067080435],[-125.43990395965811,57.97442228487219],[-125.43962470475236,57.97443681417794],[-125.43952743677652,57.97443864874968],[-125.43940460239412,57.97445383456743],[-125.4393198162285,57.97446918016338],[-125.43926447244863,57.97449474349374],[-125.43919203400493,57.97453257212531],[-125.43910048746406,57.974575928200565],[-125.43895810890628,57.974625799851616],[-125.43875502553183,57.97470569818016],[-125.43856746805632,57.974808092772214],[-125.43846405107253,57.97486822190599],[-125.43833535977228,57.974850856815415],[-125.4381435811584,57.97488145311181],[-125.43803908935294,57.97501335735871],[-125.43797837505666,57.97511516377449],[-125.43779524254604,57.975204117235705],[-125.43750233087455,57.97535317207329],[-125.43726696151818,57.97547218680579],[-125.437195550843,57.97551114030665],[-125.43717747389961,57.97551891499546],[-125.43713064976703,57.97554002716804],[-125.43708387600918,57.97555777484919],[-125.43703255509033,57.97559681302109],[-125.43695548104046,57.97566153845042],[-125.43688275216245,57.97571843123834],[-125.43676314794885,57.97579980051543],[-125.4365659240866,57.97591112416113],[-125.4363582812039,57.97601343101506],[-125.43617493843804,57.976115840245896],[-125.43604347763853,57.97621173914985],[-125.43595293824353,57.976258462123724],[-125.43587546939243,57.97627832277024],[-125.43579686772676,57.97630378640129],[-125.43563837964392,57.97637040998769],[-125.43535431062463,57.97649258023331],[-125.43503060091454,57.976650472117264],[-125.43478253205299,57.976769428928556],[-125.43460804222526,57.976844956073485],[-125.43445501189385,57.97689926422614],[-125.4343403528736,57.97693242514912],[-125.43423969608541,57.97694770031007],[-125.43404467337866,57.9769827633473],[-125.43394616408663,57.97699692583233],[-125.43390804561423,57.97700125038093],[-125.43374527250096,57.97700055972312],[-125.43354542938899,57.977004197762554],[-125.43337024338085,57.97698550891379],[-125.43317418902656,57.976948786150324],[-125.43302237523474,57.97692234517255],[-125.4328865600709,57.97688699950029],[-125.4327023958996,57.97683238154116],[-125.43259276176143,57.97674331177113],[-125.43245847069088,57.97667656833671],[-125.43225644744504,57.976684681423436],[-125.4321544028326,57.97672238039684],[-125.43202432037829,57.976727434573796],[-125.43175586942472,57.97672517004852],[-125.4315909836272,57.97672446776057],[-125.4315697765256,57.9767288636788],[-125.43146074835798,57.97673849325609],[-125.43123944443359,57.97676446769064],[-125.43112091187952,57.97677405647871],[-125.43099481915306,57.97679370700743],[-125.43066632785046,57.97684726249798],[-125.43033051335706,57.97689629966165],[-125.4300565808037,57.97690634553643],[-125.42972417316261,57.97687015677583],[-125.42955055849949,57.97688735970678],[-125.42963344650936,57.97699762743707],[-125.4296236281644,57.977087310701414],[-125.42945269785207,57.977135928822804],[-125.42922450293838,57.97719776057788],[-125.428982643402,57.977253925646316],[-125.42883938049881,57.97729032416883],[-125.42875776299813,57.9773056767087],[-125.42863893804683,57.977334328675724],[-125.42851603859503,57.97735286899481],[-125.4283216913053,57.97734306396876],[-125.42807148667437,57.977321803597455],[-125.4279627973637,57.97731012203302],[-125.42798428506235,57.97735619835365],[-125.42799646274722,57.97745943463432],[-125.42790232091238,57.97753305440967],[-125.42771349443237,57.97757710734999],[-125.42756283862896,57.97761347281807],[-125.4275055050114,57.977630050343244],[-125.42748111750839,57.977634431975],[-125.42742070681437,57.977645388429906],[-125.42734011939127,57.97766186610076],[-125.42724040351558,57.97768499101765],[-125.42714692680035,57.977714872045475],[-125.42699233283626,57.97773215334078],[-125.42674394931993,57.97772996493184],[-125.42655833043312,57.97770224977166],[-125.4264561879422,57.97767713631348],[-125.426384621199,57.977656640485165],[-125.42635614264752,57.97765203179306],[-125.42623690019518,57.97763918188564],[-125.42599824435383,57.97762357511442],[-125.42582383340103,57.97762282474157],[-125.42568269691272,57.97765922905851],[-125.42551696651014,57.97771347241525],[-125.42542469130952,57.97773326331555],[-125.42537046734662,57.97775433958753],[-125.42520380794669,57.97779960602889],[-125.4249692772289,57.97786028173902],[-125.42483016738845,57.9779011801726],[-125.42469676299159,57.9779151854522],[-125.42447962387092,57.97794453141572],[-125.42426217521647,57.977992942335774],[-125.42397388129753,57.97804329023515],[-125.42363811621975,57.978087824646416],[-125.42338454011188,57.97807999972682],[-125.42307036224328,57.978094343673185],[-125.42271123515843,57.978213919785574],[-125.42243767985575,57.97833723006626],[-125.42212756770641,57.97843122073297],[-125.42183448702123,57.97851743351247],[-125.4216815004873,57.978567241138435],[-125.42154865742233,57.97861264964172],[-125.42135849302281,57.97867463299072],[-125.42114400818097,57.97873651057749],[-125.42092565771836,57.978774818110516],[-125.42076878681459,57.97880217648342],[-125.42061607454536,57.978834039005015],[-125.42040425548892,57.97886003679537],[-125.42022363530535,57.978850279606135],[-125.4200741711671,57.97887766934922],[-125.41991704853179,57.97898914330565],[-125.41978732058003,57.979107465625866],[-125.41965505352319,57.97918427873202],[-125.41944648904266,57.9792730970619],[-125.41926215750519,57.97936650681969],[-125.41919171686125,57.97940994145937],[-125.41916517803836,57.97941767693413],[-125.41912672581242,57.97944330565979],[-125.41906585913537,57.979482295633744],[-125.41898986369587,57.97954365110821],[-125.41895782286271,57.979564821425335],[-125.41894379526192,57.97958270546255],[-125.41889258882098,57.97961276486956],[-125.41882744094997,57.97965622238051],[-125.41877532503686,57.97967618365509],[-125.41874447097896,57.979689508104144],[-125.4187242572077,57.97969727104525],[-125.41868685253354,57.97972402578743],[-125.41862692890997,57.97977087067594],[-125.41859698440524,57.979793171616386],[-125.41855091525665,57.979832225845506],[-125.41843435098627,57.97991920037597],[-125.41827721912573,57.98003067252583],[-125.41807071405034,57.98019127831888],[-125.41780247549663,57.980310116388964],[-125.41756064841302,57.980361774960656],[-125.41745476835035,57.98037252850399],[-125.41742885953605,57.980407184100336],[-125.41740172856237,57.980451928497146],[-125.41738448495505,57.98047316306507],[-125.41730002424836,57.98046606486368],[-125.41711537729027,57.980443948615424],[-125.41695948914081,57.98040737734024],[-125.41683767107159,57.98035525277963],[-125.41669065812407,57.98029180227172],[-125.41651860738725,57.98020693228293],[-125.41637313218868,57.980112084170976],[-125.41628627680048,57.98005562573875],[-125.41625477443515,57.980042029088764],[-125.41620026105021,57.980012629773924],[-125.41612486830473,57.97996631552315],[-125.41603708763938,57.979900880321196],[-125.41594633699339,57.979821973219416],[-125.41587639562017,57.97976558855987],[-125.41579855819867,57.979740573270185],[-125.41567618549475,57.97972433549498],[-125.41551593392677,57.97969671599926],[-125.41532467073027,57.97969139184741],[-125.41515638249665,57.97970523481357],[-125.41506748614906,57.97971157460128],[-125.41491750866705,57.97977036035113],[-125.41469296012978,57.97986695228299],[-125.41456628895305,57.9799224751634],[-125.41450545116284,57.97996034165727],[-125.41440316997173,57.980011485116975],[-125.41430447099593,57.98003572652074],[-125.4141998663627,57.98003302422366],[-125.41405734848011,57.98002006123768],[-125.4138665208639,57.979987819209015],[-125.41367244393109,57.97996004891425],[-125.4135955160664,57.979944008893725],[-125.41353691396198,57.979974033778696],[-125.41341773611794,57.98002398066028],[-125.41335806823848,57.98005400078574],[-125.41334101524963,57.98006289838652],[-125.41324774935657,57.9800781903293],[-125.41307432265751,57.98008191395176],[-125.4129009485241,57.98008227286672],[-125.41276555812577,57.98008728499689],[-125.41266362502859,57.980115997247566],[-125.41254105542227,57.98017938728926],[-125.41233141998964,57.98026818997668],[-125.41209318181409,57.98036023105412],[-125.41193355148678,57.98042794357049],[-125.41184613466848,57.980474664332405],[-125.4117861134799,57.98052711365878],[-125.41170038871334,57.980600759518204],[-125.41158457363768,57.980705676674],[-125.41149060240255,57.98076582718756],[-125.41142389297438,57.980772262412664],[-125.41135625796664,57.98077084251601],[-125.41117268962226,57.98081489555233],[-125.41081108535369,57.98095349606914],[-125.41047921752106,57.98108325442319],[-125.41030112684582,57.98118116598178],[-125.41011549406129,57.9813564325213],[-125.40993057334822,57.98155301188575],[-125.4098195338854,57.981689352826656],[-125.40965679227332,57.98181985712679],[-125.40942755894024,57.98187604314128],[-125.40927426989323,57.98187648626465],[-125.40922143241242,57.98187513079361],[-125.40917261159872,57.98188725197119],[-125.40908758452606,57.98191603642622],[-125.40896866657602,57.98201532990022],[-125.40876196951294,57.98218489359696],[-125.40846332838044,57.982351806348184],[-125.40812248816144,57.98251292344888],[-125.40785617430886,57.98264072316955],[-125.4077989532654,57.98271561478962],[-125.40786441113266,57.982788807623656],[-125.40788122435762,57.98286178460965],[-125.40780360246153,57.98289060114646],[-125.40761374353085,57.982862840717765],[-125.40738964966246,57.98286072423267],[-125.40718871050903,57.98293161262579],[-125.40704711097766,57.9829949133613],[-125.40688188278435,57.98308054045371],[-125.40665278168646,57.98319504435747],[-125.4065034172958,57.98328074153739],[-125.40636700390274,57.98334967252922],[-125.40609005345443,57.983480786308256],[-125.4057119887894,57.98365406921835],[-125.40543593959967,57.98379527990619],[-125.40531856898284,57.98386317314015],[-125.40525663210312,57.98390215232641],[-125.4050632877142,57.98402690718093],[-125.40484437366072,57.98416500667932],[-125.40476418881235,57.98422072793562],[-125.40472707193626,57.984228413428035],[-125.40453507578349,57.98426793370639],[-125.40425390237623,57.98433173036995],[-125.4041094686007,57.984372583926266],[-125.40403061485414,57.984411487040276],[-125.40381164411964,57.984485654743295],[-125.40356962838842,57.984546260177275],[-125.4033481709734,57.98457667448645],[-125.40311230399816,57.98458347084954],[-125.4028294440623,57.98455304446135],[-125.40242909111444,57.98446489097277],[-125.40205832300279,57.98437799041389],[-125.40186986680962,57.984327796513156],[-125.40176553700269,57.98430714049347],[-125.40160753343085,57.984270541656954],[-125.40142035854235,57.98420689393449],[-125.40131418417207,57.98416828404605],[-125.40114047569907,57.984122641584335],[-125.40080775389293,57.98403702984948],[-125.40048771952172,57.983951474280516],[-125.40004807589361,57.98400669907576],[-125.40000024328477,57.98402330770421],[-125.39948010807485,57.98421948755819],[-125.39916986085268,57.984381841597134],[-125.3990795148837,57.98447789056508],[-125.399010222244,57.98457964218386],[-125.39894701452383,57.984630950147704],[-125.39879772734305,57.98464485825556],[-125.39856269227357,57.98466510927529],[-125.39841022481708,57.98467900261966],[-125.39824486816038,57.98463900189869],[-125.39799135516817,57.984559348098024],[-125.39786512343444,57.98451952338542],[-125.39786039116272,57.98455090623475],[-125.39778017713975,57.98460774481534],[-125.39758381599184,57.98465620808508],[-125.3973952061164,57.98468227449303],[-125.39729973589134,57.984702031808446],[-125.39719680282711,57.98472512008599],[-125.39699055699761,57.98479596942847],[-125.39673519337765,57.984896879087465],[-125.39651394682707,57.984979997280526],[-125.396398180909,57.985013121140646],[-125.39634089436046,57.98502519941386],[-125.39628360777512,57.98503727766273],[-125.39615121612104,57.9850512592541],[-125.39586114902711,57.985074621277754],[-125.39556799066888,57.98509348235518],[-125.39539228020604,57.985106145424886],[-125.39517422774895,57.98512198112351],[-125.3947972889348,57.98515616292477],[-125.39435198352373,57.98523377505242],[-125.39400612414852,57.98537240260929],[-125.39383562997003,57.98552079853362],[-125.3937776356472,57.98557661413979],[-125.39378695832465,57.98565404553456],[-125.39375959202114,57.98584234676905],[-125.39361213614752,57.986004306112925],[-125.3934683707904,57.98606758296487],[-125.39327768736023,57.986156442757434],[-125.39277698470673,57.98638969775465],[-125.39208286054958,57.9866837571079],[-125.3915658091284,57.986881042660755],[-125.39131304031558,57.986950549823426],[-125.39124300770403,57.986965932572325],[-125.39123214432833,57.98698382834191],[-125.39120606127364,57.9870274510865],[-125.39110018514629,57.987100992556044],[-125.39084323175294,57.987233288398784],[-125.39056287260212,57.987373327983555],[-125.39040084061762,57.98745446359251],[-125.39028615630508,57.98755039589719],[-125.3901603171649,57.98768104623368],[-125.39006829017691,57.987814094158885],[-125.39003724732294,57.98790255740405],[-125.39002580005246,57.98795634110842],[-125.39000286005883,57.98800109962056],[-125.38997925385132,57.98802230182544],[-125.3899535148473,57.98804461586245],[-125.38984930057875,57.98808115176959],[-125.38964452574811,57.988125078870134],[-125.38949619710291,57.988143467424344],[-125.38946456999551,57.988137714837606],[-125.38941656461756,57.98816329167421],[-125.38929385520302,57.988232268487934],[-125.38916769134539,57.98831805315139],[-125.38907366514893,57.988378188367314],[-125.3889969019803,57.98841709244383],[-125.38895302264366,57.98851446942216],[-125.38885799982756,57.98870021743039],[-125.38867740853644,57.988817156845094],[-125.38854810800804,57.988835631522775],[-125.38836326156198,57.9888886206908],[-125.38802322635263,57.988991369501434],[-125.38781898123533,57.98906670069594],[-125.3877996571979,57.98908455743202],[-125.38777218561528,57.98908330984233],[-125.38769602324152,57.98908520364863],[-125.38762512062303,57.98908824312836],[-125.38759976364902,57.98908700520484],[-125.38756480793872,57.98909133116147],[-125.38745573260576,57.98910092490843],[-125.38731495503202,57.98911037304939],[-125.38719635400012,57.989121044444985],[-125.38705443728482,57.98913497342441],[-125.3869210521541,57.98914445509867],[-125.38682048988866,57.98915072267337],[-125.38672205911575,57.98915699996603],[-125.38665637797864,57.98916454926608],[-125.38658225669859,57.989170938159916],[-125.38646418675833,57.989149085363046],[-125.38624860426675,57.98907631275813],[-125.3858950034874,57.989038795610554],[-125.38563281115228,57.98903646745024],[-125.38551838401486,57.989050521324074],[-125.38539503939788,57.98909257368249],[-125.3852547225535,57.989137912520135],[-125.38500462934404,57.98917152960103],[-125.38468846837807,57.98917119408781],[-125.38450287831016,57.98907612518819],[-125.38432709067433,57.988963155879226],[-125.38411483982195,57.9890104048628],[-125.38402405779993,57.989129995636404],[-125.38402028862265,57.989165868994405],[-125.38390411395257,57.9891574817051],[-125.38359240179209,57.989144826682896],[-125.38328824830685,57.9891221115816],[-125.3831192272158,57.98911235783948],[-125.38289522647739,57.98910234970401],[-125.38251068192285,57.98908150429988],[-125.38218085909185,57.98907661329499],[-125.38198631557006,57.9890757126677],[-125.38177719144103,57.989061285189536],[-125.38152888345891,57.9890500405854],[-125.38128370053984,57.98904217476369],[-125.38110401488895,57.9890379769627],[-125.38101108338259,57.989030816509405],[-125.38097734222764,57.989025052099805],[-125.38093588237662,57.98897438843191],[-125.38083016488682,57.98884491565788],[-125.38062879236324,57.98874528179472],[-125.38031710323999,57.988731497629296],[-125.38006282449291,57.98869779084827],[-125.37993432351529,57.988604102311555],[-125.37993903731623,57.98870282377629],[-125.379904314902,57.98875649859885],[-125.37975267864346,57.98884664252138],[-125.379547464913,57.98904308795397],[-125.3794267300816,57.98918272499612],[-125.37926814327969,57.98924591802407],[-125.37889968126062,57.989275608410225],[-125.37848100629621,57.98927253795914],[-125.37825264660478,57.98927035284114],[-125.37820092298836,57.98926450396165],[-125.37815118231255,57.989267636995976],[-125.37793534310978,57.989275603948855],[-125.37760831079471,57.989293146395916],[-125.3773679571272,57.989313335579496],[-125.37726731840733,57.98932408195944],[-125.37713370686158,57.98934701185972],[-125.37682828981468,57.98940054406071],[-125.37652919714266,57.98945522669889],[-125.37639369359371,57.98946468797895],[-125.3763115399846,57.98944523714338],[-125.37602173842858,57.98938668173053],[-125.37554982139176,57.98934185444643],[-125.3752782733667,57.98939329838282],[-125.37520885116297,57.98949840267591],[-125.37503182506853,57.98958842252443],[-125.37476996695031,57.98962981653083],[-125.37456870318623,57.989651305384136],[-125.37438873504841,57.98966392104634],[-125.3742414417144,57.98968229759426],[-125.37416828960309,57.98969429209655],[-125.37411643516438,57.98969629213421],[-125.37406231471883,57.98970837581814],[-125.37393094540002,57.9897234619356],[-125.37372644411255,57.9897482991047],[-125.37355484022018,57.98976656083304],[-125.37338544439329,57.98977922476642],[-125.37313125680944,57.989803827765705],[-125.37279577599438,57.98982131878585],[-125.37249948229994,57.989834506841284],[-125.37229202221225,57.989846990439695],[-125.37203760835034,57.98988504936226],[-125.3717182758368,57.989947477198555],[-125.37152078734819,57.98999589737999],[-125.3714443969893,57.990011239919696],[-125.37141729365015,57.99011429846239],[-125.37123197990357,57.990256989046365],[-125.37081284353675,57.99028081055586],[-125.37054368495332,57.99025150181047],[-125.3704927260999,57.99026359897273],[-125.37047567712341,57.99027136969103],[-125.3704574852346,57.99028474296317],[-125.37045272932647,57.99031612503247],[-125.37038915318954,57.9903864852948],[-125.37015837888093,57.99052783842529],[-125.36993078332837,57.99066920619119],[-125.36982350517037,57.9907606701332],[-125.36975569770325,57.99083101015986],[-125.3696888051584,57.990910327199984],[-125.36962103291754,57.99097954574807],[-125.36958552915074,57.99101526896203],[-125.3695597194752,57.99104094364122],[-125.36947652217971,57.991147101758294],[-125.36936178587212,57.991304704004364],[-125.36930523921038,57.99139752886826],[-125.36926861047208,57.99143773306513],[-125.36921689585317,57.99149468982932],[-125.36915636405533,57.99157291513691],[-125.36908999010583,57.991683638955024],[-125.36905170878434,57.99175972621552],[-125.36902876031151,57.99180335980161],[-125.36898490062858,57.99189624455657],[-125.3688828297202,57.992055028001644],[-125.36876309252621,57.992195782390354],[-125.36871145153265,57.99224825299429],[-125.36869634632912,57.99226612702761],[-125.36865120038084,57.992309655594454],[-125.36860687691353,57.99236664714335],[-125.36857245558605,57.99240125367978],[-125.36854112051653,57.99244148276907],[-125.36851832195352,57.99247614427576],[-125.36848380611377,57.99251635830823],[-125.36836264933108,57.9926156067868],[-125.36817742683611,57.99275044291074],[-125.36805211437974,57.9928451850994],[-125.36798037229707,57.99289756030389],[-125.36787746373498,57.99298007089886],[-125.36772782890162,57.99313750684677],[-125.36760784029475,57.99329171832867],[-125.36755581829522,57.99336661862484],[-125.36753318633848,57.99339230804646],[-125.36745993999234,57.99347159412782],[-125.36735226979872,57.993585486441596],[-125.36730379613033,57.99370078086119],[-125.36729426861646,57.993826354222314],[-125.36729216111323,57.99388915349907],[-125.36721183383676,57.993886529561266],[-125.36703334574196,57.99387222422918],[-125.36691548044902,57.993838017482496],[-125.36687064344453,57.99380079223183],[-125.36679945686078,57.993757834013714],[-125.3666698194981,57.99373142236924],[-125.36651148876109,57.99371384718773],[-125.36630159868604,57.993681446348006],[-125.36602753830019,57.99362855174571],[-125.36579139445807,57.99358480947665],[-125.36562679600202,57.99356271709027],[-125.36550546789526,57.993545316551746],[-125.36537348777318,57.9935334732319],[-125.36515317922307,57.993490926707445],[-125.3649085589115,57.99344826415583],[-125.36474527417147,57.99341159621035],[-125.36456920785199,57.99337935359896],[-125.3643499669966,57.993336810829696],[-125.3640663275815,57.99328835295707],[-125.36376990695194,57.99324431993955],[-125.36364111123648,57.99323136848673],[-125.3635304332411,57.99321065213834],[-125.3632391572008,57.99317561521917],[-125.36298760669114,57.99316768549095],[-125.36289760380477,57.99317398552855],[-125.36281287738561,57.99318143228583],[-125.36268484345602,57.993186429046645],[-125.36251973437228,57.99319461341877],[-125.36232387551033,57.99320713707527],[-125.36220639653007,57.993213305392494],[-125.3621866211006,57.99319414380939],[-125.36213536884598,57.99316137269134],[-125.3620122147229,57.99312713633744],[-125.36171356639039,57.993090939254145],[-125.36127543794771,57.993047344618574],[-125.36103785348546,57.99302714050307],[-125.36083930859756,57.993011609271676],[-125.36040940792245,57.99304431957432],[-125.35991923973471,57.993138427206745],[-125.35944599350577,57.99316980497878],[-125.35899286926755,57.99313846841869],[-125.35873518616064,57.99311816368565],[-125.3586518337166,57.99310654730111],[-125.35856200046993,57.99310387247789],[-125.3584139436173,57.993104282550746],[-125.35818956135638,57.99311554145549],[-125.35792907347852,57.99313559907959],[-125.35777345265399,57.99314494481665],[-125.35763907369902,57.993149906214],[-125.35741573988727,57.99316116886618],[-125.35720682338483,57.993196054058004],[-125.35701964274556,57.993257961897505],[-125.35683781697661,57.99331540890228],[-125.35670878244788,57.993378718053286],[-125.35661046190648,57.99343881033835],[-125.3565334240734,57.9934911539818],[-125.35645557007862,57.99352891291265],[-125.35632024730822,57.99358882660841],[-125.35615844149983,57.9936508556355],[-125.35603912469581,57.99370187349253],[-125.35589437151971,57.993756133303634],[-125.35568988203669,57.9938403877351],[-125.35554179303347,57.99390360384241],[-125.35545669764633,57.99393235449041],[-125.35528969996776,57.993927061681326],[-125.35495695243208,57.99396695328047],[-125.35467597711747,57.994071025316394],[-125.35458170773111,57.994141230125976],[-125.35448165260705,57.99417888060682],[-125.35419056299644,57.994255984436215],[-125.353824131712,57.994348425323004],[-125.35360447869108,57.99439110417547],[-125.35355245977276,57.99440318984476],[-125.35349029724878,57.99445111746296],[-125.35332745909591,57.994572582790354],[-125.35300689583521,57.99470225637993],[-125.35262872223913,57.99486193299242],[-125.35248493757736,57.995042934434224],[-125.3524824957051,57.995123677619205],[-125.35244299333976,57.99514479636444],[-125.35241385037283,57.99517942452524],[-125.35236338622742,57.99522292202889],[-125.3522982116788,57.99526186175289],[-125.35227145679079,57.99527967750611],[-125.35222033039848,57.9953007397897],[-125.35212362490387,57.9953283104485],[-125.35202511768365,57.99539849301921],[-125.35192593241777,57.99550792816971],[-125.35183249028533,57.99559047278635],[-125.35178650416054,57.99562053265853],[-125.35177251603189,57.99563392391733],[-125.3517470008808,57.9956416512091],[-125.3516210362781,57.99570945698235],[-125.35138313281595,57.99582943395862],[-125.35118677168302,57.99593166685752],[-125.35094993385044,57.996050526684144],[-125.3506259529059,57.99619363743844],[-125.35047248942848,57.99626130842325],[-125.3504536096832,57.996252243769945],[-125.3503213546689,57.99619439864844],[-125.35010248391187,57.99600826945992],[-125.34992779900074,57.99577412635956],[-125.34975346084948,57.99564317184274],[-125.34945564259331,57.995557600980206],[-125.34906185652596,57.9954569807633],[-125.348808956988,57.9954041538368],[-125.34874236394762,57.99540270738368],[-125.34861921027041,57.995430146491834],[-125.34827464584377,57.99547893672892],[-125.3478654299942,57.99547581673157],[-125.34764714739751,57.99543885907808],[-125.347608360583,57.99541960235582],[-125.34755467426419,57.995404759199104],[-125.34738014725221,57.99534558297637],[-125.34716237042117,57.99528058703547],[-125.34704133794568,57.995246347135556],[-125.3469983217597,57.9952270695507],[-125.34686454143491,57.995196131929234],[-125.34659884514113,57.995089401468505],[-125.34636485144621,57.99486169309466],[-125.3462260678539,57.994633329070666],[-125.346181122108,57.99454225951208],[-125.34615589955976,57.994533163192855],[-125.34611670682149,57.99453633601698],[-125.34601841144296,57.99453361131129],[-125.34583872301656,57.994528244510306],[-125.34570244028603,57.99451972542657],[-125.34556828943637,57.994511216654644],[-125.34528970946569,57.994476202729864],[-125.34496543603089,57.9944533015959],[-125.34474249911135,57.994442113105706],[-125.34438172466372,57.99445043612448],[-125.34386853761355,57.9944669819203],[-125.34362224172347,57.994460163137084],[-125.3435849453325,57.99447680372089],[-125.34341105296689,57.99450286690039],[-125.34314289256137,57.994476872520096],[-125.34293762387689,57.994422025617524],[-125.34278686900966,57.99439548674796],[-125.34262214306888,57.99438121648938],[-125.34248254057486,57.994381650551546],[-125.34243927506112,57.99437582944998],[-125.34244527796471,57.99433548148322],[-125.34245546624179,57.99423683103244],[-125.34242938721624,57.99415594751454],[-125.34239403831008,57.994060437560975],[-125.34227438687306,57.99394880989882],[-125.34190765827469,57.99387522023277],[-125.34156067940584,57.99382079413511],[-125.34146082224403,57.9937866536259],[-125.34133997688383,57.99374231510708],[-125.3409857585518,57.993619434339436],[-125.34059068867032,57.99347391889712],[-125.34033071934581,57.9934030954164],[-125.34017370475893,57.993372036272234],[-125.3401029676413,57.99336495702267],[-125.34003539154338,57.99335901496076],[-125.33991717779318,57.99334609289552],[-125.33982953903372,57.99333892992391],[-125.33968798336488,57.993330378605776],[-125.33946908983154,57.99332929565915],[-125.33926104399966,57.99331368528074],[-125.33892767100099,57.99326829245185],[-125.3384982634196,57.99321120695218],[-125.33814344744198,57.9931825298601],[-125.33774912058274,57.99317608776135],[-125.33739252701317,57.993187777362245],[-125.33721179731094,57.99318239375051],[-125.33705607284165,57.99313787816432],[-125.33688449896103,57.993092162067114],[-125.33681911792989,57.993081742887924],[-125.33678366137639,57.99305352679515],[-125.33665689272229,57.99298672265512],[-125.33650026243278,57.99293322914229],[-125.33632680370212,57.99299517631343],[-125.33601953342075,57.993148428753564],[-125.33571497659754,57.99320747980512],[-125.33561263444294,57.993194632901705],[-125.33556612818901,57.99319327982972],[-125.33536235702691,57.993174319849125],[-125.33493801302575,57.99313070725616],[-125.33452319514421,57.99308714080198],[-125.33436715609015,57.993060566062994],[-125.33430391051455,57.993049034699155],[-125.33416892044502,57.99302817268508],[-125.33398442295594,57.9929958475569],[-125.33376205526619,57.992953238788594],[-125.33365562719214,57.992931397206284],[-125.33362497094232,57.992931244173235],[-125.3335339943997,57.99293303318119],[-125.33343886788585,57.99293031501332],[-125.33340398501876,57.99292901922634],[-125.33333413662878,57.992932035201434],[-125.33309073454123,57.99294203536017],[-125.33275520708087,57.992959425801516],[-125.33245308055153,57.99300053599594],[-125.3320846528265,57.99308393451832],[-125.33157186150697,57.99307800296668],[-125.33113167036325,57.99303429889753],[-125.3309210342072,57.99316334871519],[-125.3308102502153,57.99326822365794],[-125.33075318990893,57.99326569440147],[-125.3306539930752,57.993253981055695],[-125.330493406399,57.993245324549065],[-125.33029965143368,57.993257811826275],[-125.33008762857898,57.993287031128524],[-125.32987812544384,57.99335327550785],[-125.32952868510147,57.99343788396858],[-125.32900640454775,57.993490218075685],[-125.3284765490358,57.99349204007633],[-125.3280193626991,57.99351104979647],[-125.32767430256777,57.99352837952803],[-125.32746366349379,57.99353965606716],[-125.32723512008405,57.993546355643375],[-125.3268583567579,57.99356240188859],[-125.32651972062567,57.99357527463691],[-125.32626660615381,57.993595307786244],[-125.32591254132785,57.99364287072064],[-125.3255456051723,57.99370046209123],[-125.32525933462595,57.99374163621734],[-125.3249942926457,57.99377843067954],[-125.3246547661794,57.99384064462055],[-125.3242385787404,57.9939316312662],[-125.32394344159599,57.993995189722604],[-125.32380409815516,57.99404046958136],[-125.32367172364569,57.99410933822107],[-125.32350416378142,57.99413540760312],[-125.32327805206293,57.994182490384475],[-125.32303341969707,57.99431920694875],[-125.32284234895836,57.99441693875806],[-125.32271835318376,57.99443201213598],[-125.32266965003076,57.994435129833775],[-125.32264624459562,57.994442862283854],[-125.32254819058257,57.99448498556464],[-125.3223478521031,57.99456921044432],[-125.32216344702849,57.99464902953452],[-125.32209197845876,57.99468343627264],[-125.32203334430702,57.99470893534264],[-125.32192471437766,57.994751004473095],[-125.32182244919319,57.99479198425077],[-125.32172326329106,57.994838587608164],[-125.32163145061567,57.99488634996559],[-125.32155031363833,57.99492855850998],[-125.32147234039729,57.99497078308852],[-125.32138679074686,57.99502306352992],[-125.32128103586703,57.99508197080784],[-125.32119548569679,57.995134251132896],[-125.32114522882344,57.99516427883836],[-125.32111646262389,57.995176470178954],[-125.32101645232936,57.99520960961823],[-125.32075121318533,57.99525648920811],[-125.32050323799339,57.99528438890695],[-125.32042385851152,57.995287349648116],[-125.32037344521692,57.99526802575939],[-125.32022101447323,57.99521789913367],[-125.32003156440811,57.99516758377918],[-125.31992942885763,57.995142388249825],[-125.3199042325878,57.995132165466366],[-125.31986000198853,57.99512184570234],[-125.31965761943496,57.995084923157606],[-125.31927188980761,57.99501117421456],[-125.31883057258754,57.99491246527212],[-125.31839361313315,57.99480592590318],[-125.31798928260463,57.99470852462482],[-125.31770487143078,57.99464650476116],[-125.31761316717476,57.99463033359135],[-125.31746623443405,57.99462621761953],[-125.31715858639075,57.994621279498084],[-125.31686481966821,57.99460856048709],[-125.31673392058657,57.99459555293861],[-125.31669156141444,57.994598700930176],[-125.31663236472556,57.9945972763068],[-125.31653512032464,57.99459453526215],[-125.31641251760678,57.99459054269297],[-125.31626558515349,57.99458642539981],[-125.31611663648228,57.99457781120607],[-125.31605735811486,57.99458087231888],[-125.31596857337946,57.994578174203255],[-125.31578262613344,57.99456824844505],[-125.3156567609992,57.994568724869524],[-125.31562821838124,57.9945685785451],[-125.31557179715382,57.994588478127675],[-125.31544640476069,57.99462148325248],[-125.31519005206245,57.99464484369104],[-125.31493595721331,57.994660364007366],[-125.31476319191955,57.994681909352586],[-125.31456170296748,57.99471227981688],[-125.31431142749727,57.99475025061842],[-125.31414369434874,57.99478528025111],[-125.31405010563984,57.994813961063734],[-125.31395146701091,57.99482915662321],[-125.31386592415905,57.994823108962066],[-125.31378169684788,57.994802487168386],[-125.31359704414609,57.994779105784],[-125.31336076959924,57.99474536420402],[-125.3131971192346,57.99473106311549],[-125.3130331852668,57.99473134120653],[-125.31263658782102,57.99473266451585],[-125.311952446414,57.99478522026758],[-125.31126632773831,57.994945436266576],[-125.31074777517152,57.99513679737241],[-125.31034769674764,57.99526932360936],[-125.30996381586121,57.995383986736336],[-125.30948755271018,57.995518359851665],[-125.30900763428856,57.995621307450484],[-125.30867254243317,57.99567004478302],[-125.30845642450547,57.99569023591481],[-125.3082060536665,57.99573268130201],[-125.3078844504232,57.995794945833026],[-125.30768261898541,57.99584324991916],[-125.30754438085104,57.99588403234271],[-125.30739891402781,57.99591580428021],[-125.3073475132708,57.99595030736597],[-125.30733935741274,57.99599064284613],[-125.30727421762575,57.99602507462111],[-125.307152411847,57.996034536962625],[-125.30701150533196,57.99604838646555],[-125.30689789011421,57.996072471966144],[-125.30675624880656,57.996068371695564],[-125.30652648296943,57.99602567893695],[-125.30630185952192,57.99593366185662],[-125.30614384625831,57.99584311223143],[-125.30606830880778,57.99581019304376],[-125.30593069097333,57.99593173263034],[-125.3055640739775,57.9960834860413],[-125.30520902043115,57.99600985586525],[-125.3050812626512,57.995884692646456],[-125.30507744796114,57.99586224067511],[-125.30503402044059,57.995865379423115],[-125.30481680530933,57.996002205977476],[-125.30450184171423,57.99627648055709],[-125.30421216617424,57.996384888529306],[-125.3037701533345,57.9963814624582],[-125.30334860808651,57.99647235669023],[-125.303079390617,57.996617882036084],[-125.3028099419268,57.996775743343655],[-125.3026549072354,57.99686578379095],[-125.30264178293672,57.99694647096304],[-125.30267911410797,57.99710032618375],[-125.30270850278907,57.99716889774973],[-125.30257808221727,57.997187283820224],[-125.30216363897229,57.997179510066886],[-125.30172041990085,57.9971267202074],[-125.30156465857438,57.99708552753133],[-125.30151823220888,57.99707967659804],[-125.30143788186591,57.99707813457307],[-125.3013275453393,57.997096624511975],[-125.3012426308654,57.99711300420803],[-125.30104731685267,57.99715123805434],[-125.30050555830867,57.997221305087564],[-125.29989041567704,57.997257336873865],[-125.29956882474461,57.997261258049676],[-125.29944690835761,57.99727632086562],[-125.29939934929541,57.99727494968316],[-125.29935681817723,57.99728706417077],[-125.29916701082468,57.99731298649593],[-125.29884809759157,57.99734383859799],[-125.2986351917213,57.99736066598933],[-125.29847078099912,57.9973867207515],[-125.29824170580012,57.99742028668036],[-125.29807522548809,57.99744296525505],[-125.29798724956719,57.99745371875831],[-125.29782690422935,57.99743156493587],[-125.29753787687908,57.99739078814719],[-125.29731156671438,57.99738959716193],[-125.29723504703023,57.997409383338685],[-125.29712070836642,57.99741551105892],[-125.29690790635038,57.99742672820568],[-125.29671949878887,57.9974347086972],[-125.29655848172261,57.9974484412942],[-125.29638544078264,57.99748342089867],[-125.2962174053379,57.99753300758725],[-125.29605598804837,57.997568048046965],[-125.2959115540466,57.99759981305634],[-125.295809484148,57.99762843654833],[-125.2956291988618,57.9976544041009],[-125.29528358038908,57.99769856614301],[-125.29494836791432,57.99775175512897],[-125.29473172488989,57.99779884004772],[-125.29461044929482,57.99783633405448],[-125.29447650408953,57.99787263939017],[-125.29424813404387,57.99792414800319],[-125.2940608260654,57.99798596785353],[-125.29392809347085,57.9980144277922],[-125.2937337591212,57.99799994054764],[-125.29336988066497,57.998002501505695],[-125.29295847747393,57.99805752546976],[-125.29273766341042,57.99810122027011],[-125.29263544178289,57.998137691839794],[-125.29249186152555,57.99817955221372],[-125.29216036340502,57.99825967260913],[-125.29169474487092,57.99838506674154],[-125.29129490337559,57.99849959235951],[-125.29093851250856,57.998609861137545],[-125.2906617036584,57.99870597089158],[-125.29047015562446,57.99876776328058],[-125.29026196162461,57.998814885961096],[-125.2900120585097,57.99883038139507],[-125.28982618195268,57.998815933442216],[-125.2897660833825,57.998805519238374],[-125.28969087753975,57.998811848806994],[-125.28958798829568,57.998827003922756],[-125.28941632331568,57.99884403614805],[-125.2890972828571,57.99888047250246],[-125.2888006334523,57.9989069328713],[-125.28868391867658,57.99892650009352],[-125.28864366740018,57.99892965046897],[-125.28854598867319,57.998949318998285],[-125.28841448895281,57.99896768558657],[-125.28834118939659,57.998984119068055],[-125.28826271672695,57.99899491687137],[-125.2881376471988,57.999008831020376],[-125.28806761369607,57.9990207953192],[-125.28803379277157,57.99901949335274],[-125.28792025841415,57.99903907687409],[-125.28768603765556,57.9990636245119],[-125.28748785477649,57.999084999236885],[-125.28740620047786,57.9990957795606],[-125.28731610248558,57.99910651476157],[-125.28710399187166,57.99913678747128],[-125.2867837314737,57.999181063107926],[-125.28646744477756,57.999238818572245],[-125.2862201043724,57.99928572579318],[-125.2860468533366,57.99933078555589],[-125.28591069401342,57.9993715570404],[-125.28572988129837,57.99942442724678],[-125.28546899377962,57.99951612514672],[-125.28526345801521,57.99959017307238],[-125.28517387337689,57.999628949925274],[-125.28515231583934,57.999650145157126],[-125.28505228561147,57.9997370953843],[-125.2849037530117,57.99987201516175],[-125.28482918491717,57.99995573678174],[-125.28466462765859,57.999932422931835],[-125.28427188711859,57.99989442646094],[-125.28389369688952,57.99986996624204],[-125.28361462105262,57.999861739403094],[-125.28342547497218,57.999851751449555],[-125.28331569961406,57.99983994608373],[-125.28315308762942,57.99982561371971],[-125.28288264442655,57.99980845878693],[-125.2826153612649,57.999792441899],[-125.28246843361232,57.99978716588584],[-125.28240085509859,57.99978119460929],[-125.28226537644838,57.99978607443479],[-125.28202744876303,57.99978367354437],[-125.28181990376441,57.999796016650954],[-125.28167269718368,57.99980531924516],[-125.28157432832627,57.999805911570036],[-125.28148130336199,57.999803167739415],[-125.28131708933317,57.999816864868606],[-125.28113353328284,57.99984728186867],[-125.28089993936244,57.999894253336464],[-125.28058158690534,57.999948619012926],[-125.28036288400443,57.99999118333358],[-125.28030876617123,57.99999986454021],[-125.28029178013507,58.00000313782005],[-125.28025462222246,58.000010788813626],[-125.28005378170901,58.00005905700111],[-125.27970551256396,58.00012896189499],[-125.27928684358226,58.000174931970506],[-125.27884743559548,58.00019835642101],[-125.2784918015937,58.00021101602323],[-125.27832444191101,58.00022357087876],[-125.2782489509394,58.000244473494355],[-125.27815523492679,58.000277615302494],[-125.27804091965722,58.00033644281313],[-125.27792422525276,58.00040983836578],[-125.27786097648841,58.000453239288994],[-125.27770859468316,58.00045690146889],[-125.27733551787726,58.00049638242147],[-125.27702398360483,58.000581060237685],[-125.27690964403172,58.00064100829787],[-125.27684983430497,58.00067096799475],[-125.27678149873765,58.00070424633195],[-125.27668821254159,58.00071495714684],[-125.27655484500832,58.00071984264194],[-125.27644872267452,58.000793294241674],[-125.27640039293652,58.00088612646969],[-125.27635230081452,58.00096662219799],[-125.27630264503293,58.00107290662178],[-125.27626437182471,58.0011927121422],[-125.27623091282717,58.00128226011099],[-125.27618698548056,58.00136614324612],[-125.27613196246337,58.00147688502921],[-125.27594126938392,58.00154763453594],[-125.27558979738654,58.00161751155389],[-125.27537407545502,58.00172401623102],[-125.27530362638566,58.001812241657916],[-125.27523520074125,58.001850005245124],[-125.275201972079,58.001872257221954],[-125.27526877359314,58.00191860616185],[-125.27543522599468,58.00206307663518],[-125.27552325149148,58.00216113505465],[-125.27057805770538,58.002766803911584],[-125.26220465089587,58.00341171624479],[-125.25682571336631,58.004961131875035],[-125.2496349456916,58.0073705503253],[-125.2418072756247,58.01109501970823],[-125.22570620223684,58.016942847874546],[-125.22076563882138,58.019229194598],[-125.20840129239795,58.021821537598235],[-125.19700838658457,58.02246242593713],[-125.19999915016314,58.02028529259823],[-125.19966301608734,58.02026645429437],[-125.19932459848411,58.02025545302652],[-125.19898777054863,58.020269136799435],[-125.19865269931786,58.02029965506043],[-125.19832678296856,58.02034705222694],[-125.19800906026336,58.020407957639684],[-125.19769954500937,58.02048012813765],[-125.19739929653774,58.02056469180036],[-125.19711675592387,58.02066282108409],[-125.19685609071668,58.02077678447158],[-125.19663201910812,58.020911157231424],[-125.19648145852925,58.02107289155261],[-125.19634250414256,58.02123581722027],[-125.19613623328199,58.02137926957322],[-125.19589645942357,58.021505695146665],[-125.19563162403358,58.021616266238745],[-125.19533759068082,58.021706471155646],[-125.19502801144102,58.02178087858685],[-125.19471233947893,58.02184403202798],[-125.19439353156278,58.02190492251038],[-125.1940757241565,58.021968061590385],[-125.19377238588103,58.02204811209347],[-125.19347012016352,58.02212704674192],[-125.1931390918108,58.02216542736576],[-125.19280039352486,58.02216674616484],[-125.19246662819411,58.02213556588639],[-125.19216783694849,58.02205300007635],[-125.19188636479004,58.02195259186688],[-125.19158762461765,58.02186778175528],[-125.19127587313562,58.021797473737266],[-125.19095534283001,58.02174169335355],[-125.19061689027637,58.02173179151826],[-125.1902980282514,58.021794915239035],[-125.19004047637758,58.02191000616777],[-125.18982371680053,58.02204777716667],[-125.18963422670551,58.022196929841],[-125.18946996252285,58.022354086940474],[-125.18932780675898,58.022516986327275],[-125.18918351638942,58.022679872643074],[-125.18901401404244,58.02283475417948],[-125.18881191502541,58.022979342679555],[-125.18857629066261,58.02310802405908],[-125.18831033141592,58.023219695860895],[-125.18801735887152,58.02330876979286],[-125.18769037745821,58.023355013271605],[-125.18735186261674,58.02334734616924],[-125.18701923831051,58.02331167258281],[-125.18668874804102,58.023276011157904],[-125.1863550752287,58.02324032952942],[-125.18602792281065,58.02319683518169],[-125.18571831151395,58.023125405478005],[-125.18543040178311,58.02302943088876],[-125.18515108114795,58.022927899777024],[-125.18486743164847,58.02283082830432],[-125.18456220474724,58.02275269271858],[-125.1842417494328,58.022693531639504],[-125.18391799001483,58.022639957898235],[-125.1835875086117,58.022604288827466],[-125.18325255051667,58.022628039479805],[-125.18293371734043,58.02268890266505],[-125.18262726408545,58.02276442241587],[-125.18230842873558,58.022825284117886],[-125.18197337002773,58.022853517606855],[-125.18163743986558,58.02287277164597],[-125.18129863688286,58.02287854732333],[-125.18096129228924,58.022866384531774],[-125.18062743258822,58.022839660688106],[-125.18029812484843,58.02279838236525],[-125.17997003920894,58.022749259113276],[-125.17964398968968,58.022704634194646],[-125.17931359299725,58.02266446840942],[-125.17898212271488,58.022625416865765],[-125.17865274499675,58.02258749902249],[-125.17832236732878,58.02254733089501],[-125.17799306469185,58.0225060469034],[-125.17766488628378,58.02246140403907],[-125.17733894039164,58.022412287476065],[-125.17702283063282,58.0223486491376],[-125.17672193066268,58.022267157233465],[-125.17642324689888,58.02218119167614],[-125.17611366227588,58.02210973979293],[-125.17578663016292,58.022061734390135],[-125.17545278131031,58.02203499763821],[-125.1751166439036,58.02201609753479],[-125.17478053150752,58.02199607507878],[-125.17444451819807,58.02197156574947],[-125.17410850532768,58.02194705557545],[-125.1737746092879,58.02192255764695],[-125.17343859729421,58.02189804578938],[-125.17310261046163,58.02187241158069],[-125.17276871574317,58.02184791114002],[-125.17243270507538,58.02182339675437],[-125.17209671959878,58.02179776001786],[-125.17176287572575,58.02177101405246],[-125.17142913141655,58.02173978122872],[-125.17109752882344,58.02170743919854],[-125.1707638104256,58.021675083208756],[-125.17042999339643,58.02164721241008],[-125.17009393643123,58.02162493515899],[-125.1697569118131,58.02164639578807],[-125.16943198910467,58.021694850658925],[-125.1690969308081,58.02172305181822],[-125.1687601035521,58.02173553788843],[-125.16842123427772,58.02174464541798],[-125.16808258868683,58.02174365853755],[-125.16774404264224,58.02173818477643],[-125.1674110990703,58.021766394894314],[-125.16709839746349,58.021836231845334],[-125.16679811900576,58.02191848383428],[-125.16651235495563,58.02201428565884],[-125.16625365395447,58.022130445705606],[-125.16603259787374,58.02226703020321],[-125.1658388291341,58.02241387971536],[-125.16564294245272,58.02256071575126],[-125.16543448039957,58.02270186466015],[-125.1651715883604,58.02281575324137],[-125.164867139857,58.022894610005615],[-125.16455036606436,58.022956564070384],[-125.16422540029514,58.02300612785296],[-125.16389234283137,58.0230388152658],[-125.16355540199683,58.02305577425671],[-125.16321656957014,58.0230626255842],[-125.16287796227599,58.02305938249621],[-125.16254164676157,58.023048301274784],[-125.16220313984964,58.023040570451876],[-125.16186433237216,58.023046296843596],[-125.16152938166134,58.02306887153363],[-125.16119833743029,58.023106051540516],[-125.16087331576063,58.02315785018921],[-125.16055854921792,58.02322429412498],[-125.16024995520165,58.02329862777888],[-125.15994135996237,58.02337296072596],[-125.159634854847,58.02344842778621],[-125.15933661332826,58.023532919473624],[-125.15905704165752,58.023634353005335],[-125.15880039773725,58.02375163365242],[-125.15860029383833,58.02389618990717],[-125.15843798355603,58.02405444396211],[-125.1581418258635,58.024140067877504],[-125.15780320928322,58.024136811923334],[-125.15746479428992,58.0241245830588],[-125.1571286472329,58.02410563765226],[-125.15679489434432,58.024074368189694],[-125.1564699863431,58.02402632875762],[-125.15614518009558,58.02397380251368],[-125.1558136971406,58.02393581493731],[-125.1554776536103,58.02391237935678],[-125.15514150945863,58.02389342895475],[-125.15480536564655,58.02387447770742],[-125.15447159147126,58.02384432395425],[-125.15414008606513,58.02380745373622],[-125.15380396882973,58.0237873784655],[-125.15346507739622,58.02379644807684],[-125.15314419609373,58.023851619299734],[-125.1528979880621,58.0239745632465],[-125.15273986106952,58.024133958738716],[-125.15260912078303,58.0242991361316],[-125.15248256171948,58.02446658329297],[-125.15235391033329,58.024632895429434],[-125.15223369864326,58.02480038270365],[-125.15212401795561,58.02497018007846],[-125.15203330930103,58.02514346282584],[-125.1519700645753,58.02531916322121],[-125.15193637538039,58.02549841624818],[-125.15192173522449,58.02567779022855],[-125.15190921153436,58.025857177678745],[-125.15189245449261,58.026036538289624],[-125.15187993054269,58.02621592580713],[-125.15186317320068,58.0263952864844],[-125.15181892465868,58.02657335099729],[-125.15175353449813,58.02675015963448],[-125.15165861186217,58.02692229407655],[-125.15147947803233,58.027073703619855],[-125.15121235576332,58.02718417385722],[-125.15091401479202,58.02727089010313],[-125.15060536837248,58.02734520180551],[-125.15029057391183,58.02741050034156],[-125.14997164663154,58.02747128516967],[-125.1496548095902,58.0275332042218],[-125.14933590567271,58.027592866031235],[-125.14901284366688,58.027649135591226],[-125.14868988251496,58.0277009183366],[-125.14836281437638,58.02774706577312],[-125.1480337051458,58.027789834385786],[-125.14770054013145,58.027824724619435],[-125.14736556372621,58.027846142405465],[-125.14702673608805,58.02785070968835],[-125.14668821455643,58.02784181800366],[-125.14635214173585,58.027818359369974],[-125.1460227514377,58.02778036086602],[-125.14569343844317,58.02773899702542],[-125.1453619328018,58.02770098336089],[-125.14502586207269,58.02767752139468],[-125.14468713797494,58.02767759670968],[-125.14435012121295,58.027695628856016],[-125.14401310412693,58.02771366015266],[-125.14367634277414,58.02772047551666],[-125.14333761828586,58.02772054741039],[-125.1429989706742,58.027717253920976],[-125.1426603743942,58.02771171655706],[-125.14232182950661,58.027703935319025],[-125.1419833873848,58.02769166719162],[-125.14164719052113,58.027673804266904],[-125.14131101965407,58.02765481898872],[-125.14097268105212,58.0276380622709],[-125.1406364337572,58.027622439819126],[-125.14029791580212,58.02761353194614],[-125.13995911512319,58.02761695979735],[-125.13962227672198,58.02762712946479],[-125.1392831670143,58.02764401369089],[-125.13895012389311,58.027673274562325],[-125.13863117600455,58.0277340323373],[-125.1383266833341,58.02781058601977],[-125.1379915212751,58.027839830855456],[-125.13765537655668,58.02781971486884],[-125.13732609824223,58.02777720889651],[-125.13700998540325,58.02771459702389],[-125.13670698685407,58.02763412236212],[-125.13640182126292,58.027555876351684],[-125.13607923259141,58.02749882877873],[-125.13574541538775,58.02746974962937],[-125.13540922348531,58.027451871012765],[-125.13507310949164,58.02743062703177],[-125.13473924192957,58.02740378838321],[-125.13440325816006,58.02737693518748],[-125.1340693656625,58.0273512163726],[-125.13373555133087,58.02732213220645],[-125.13340186708011,58.027287439678304],[-125.1330725723368,58.027246044753866],[-125.13275869147607,58.02717895057182],[-125.13247300288981,58.027082875196825],[-125.13216999322917,58.027003511807074],[-125.13183613154644,58.02697666591662],[-125.13149725794115,58.02698343682372],[-125.13115828029547,58.02699469289124],[-125.13082139311976,58.02700708337435],[-125.13048489571642,58.02700265043505],[-125.13019490295818,58.02690990716999],[-125.13001429163468,58.02675618352811],[-125.1298762487468,58.02659264184534],[-125.12973609043264,58.02642908626132],[-125.12958741480585,58.026267718407176],[-125.12944725896521,58.0261041625781],[-125.12928366551269,58.02594718390997],[-125.12906671588578,58.02580892567574],[-125.12879183853212,58.02570393953986],[-125.12848236775432,58.02563013401243],[-125.12816409298908,58.025570852058635],[-125.12784150784182,58.02551490622271],[-125.12751670273308,58.0254634317982],[-125.12718957316748,58.02542091477727],[-125.12685583356418,58.02538957047928],[-125.12651736515627,58.02537950621136],[-125.12618030806398,58.025399735485195],[-125.12584727465371,58.025428963623916],[-125.12550836165614,58.0254379623339],[-125.12517211437462,58.0254234225042],[-125.12483837643501,58.025392073166536],[-125.1245157454319,58.02533836231507],[-125.12420625989829,58.02526566841379],[-125.12390547755268,58.02518293580946],[-125.1236111772114,58.02509463668368],[-125.12332121620022,58.02500187869265],[-125.12303125662311,58.024909120081574],[-125.12274777923666,58.02481079504242],[-125.12246861511049,58.02470913271639],[-125.12218947874348,58.024606348317946],[-125.12189560704108,58.02450010146543],[-125.12160779764423,58.024406232227484],[-125.12131570412899,58.024314577536686],[-125.1210235857606,58.02422404371599],[-125.1207336378778,58.0241312801969],[-125.12044800330546,58.02403517942971],[-125.12017102028177,58.023931283325005],[-125.11990477907295,58.023820727381704],[-125.11965356531314,58.023701296563665],[-125.1194109769853,58.02357519210268],[-125.1191791042543,58.02344354950192],[-125.11895149239292,58.02331081293625],[-125.11872816772436,58.023175860930344],[-125.11851981783317,58.02303427734273],[-125.1183221307273,58.022889398802334],[-125.11812232873059,58.02274450602053],[-125.1179075815473,58.02260512262378],[-125.11767783649061,58.02247349153106],[-125.11744166470258,58.02234518260505],[-125.11719906618644,58.02222019581013],[-125.11694578177905,58.02209962462586],[-125.11668387505087,58.021985725976165],[-125.11642839826588,58.021868504334996],[-125.1161943773438,58.02173908579108],[-125.11603726029662,58.02157989066681],[-125.11591847662588,58.02141085405102],[-125.11568647089989,58.02128593466825],[-125.11536335987647,58.02134436546397],[-125.11504440115637,58.02140618800768],[-125.11472956820676,58.02147252382464],[-125.11439859765954,58.02150510181051],[-125.11406260183362,58.02148156212344],[-125.11373785055909,58.0214300544277],[-125.11342402644668,58.021364036745666],[-125.11311459519743,58.021291317466115],[-125.11280296924532,58.02122194790271],[-125.1124826138043,58.02116373631617],[-125.11214903054442,58.021127869449934],[-125.11181277397124,58.02111553905451],[-125.11147429504081,58.02110767971166],[-125.11113825146181,58.021086375667345],[-125.11081131155412,58.02103821127862],[-125.11049746927704,58.02097330824335],[-125.110185930613,58.02090056811872],[-125.10987433993407,58.02083007025978],[-125.10955396576306,58.02077297316799],[-125.10922245181754,58.02073935610275],[-125.10888651938072,58.02071356043063],[-125.1085551398126,58.02067433424694],[-125.10826522354087,58.02058266551989],[-125.10806547267394,58.02043775806194],[-125.10785717823315,58.020296158268245],[-125.10764462615147,58.02015565138861],[-125.10743630818162,58.0200151724739],[-125.10723656353808,58.01987026386576],[-125.10703470419422,58.019725340834626],[-125.10680930080143,58.019591476776355],[-125.10655606753546,58.01947088623932],[-125.10625314748242,58.01939258622638],[-125.10592389855806,58.0193533677314],[-125.1055902574518,58.0193208490299],[-125.10526770622867,58.01926709205396],[-125.1049386467414,58.01922002070313],[-125.10460586579818,58.01924022377296],[-125.10430956978054,58.019327970863124],[-125.1040465427087,58.019440617209945],[-125.1037939344651,58.01956006298865],[-125.1035350830955,58.01967497973505],[-125.10326784558268,58.01978647469485],[-125.10301108047508,58.01990252615182],[-125.10277933335558,58.02003444857981],[-125.10257064890297,58.02017549895193],[-125.10237034747439,58.02031997037775],[-125.1021700445031,58.0204644415259],[-125.10195506019072,58.0206032053463],[-125.10171497411298,58.02072946165937],[-125.10145399200191,58.02084436028759],[-125.10118261483862,58.0209513367792],[-125.1009049946983,58.02105378403212],[-125.10062528360827,58.02115509497895],[-125.1003476335414,58.02125866258815],[-125.10008246470278,58.021371287112395],[-125.09977794505802,58.02144775240367],[-125.09947339724894,58.02152533849906],[-125.09915237526424,58.02158374436599],[-125.09882136327384,58.02161740525419],[-125.09848627970729,58.02164430780635],[-125.09815917573684,58.02169145352557],[-125.0978361148467,58.02174647747609],[-125.09749961460112,58.021744204472434],[-125.09716463692276,58.02176661774551],[-125.09682955083541,58.02179351614639],[-125.09649272608186,58.02180469850838],[-125.09615980957508,58.02182936656102],[-125.09582274100916,58.021850640660034],[-125.09550787035135,58.02191693120645],[-125.09521158601501,58.02200241538742],[-125.09491527326873,58.02208902041091],[-125.09460039900651,58.02215530883563],[-125.09428552363148,58.02222159652296],[-125.09396456887681,58.02227662549186],[-125.09363137553798,58.02231250217488],[-125.09330227879387,58.0223540142169],[-125.09297521635648,58.02239890429544],[-125.09264807175336,58.022447158050866],[-125.09232505054722,58.02249992573534],[-125.09200403624146,58.02255719299423],[-125.09168505588634,58.022617838351174],[-125.09137017147765,58.02268411920041],[-125.09105941007054,58.022754914080124],[-125.09075070953322,58.02282796563145],[-125.09044404262809,58.02290439536104],[-125.09013737447336,58.02298082439286],[-125.08983282149374,58.023057267146996],[-125.08952615084395,58.023133694788534],[-125.08921738974216,58.02320898581093],[-125.08891074383817,58.02328429056036],[-125.08860822058932,58.02336410945868],[-125.08830566879482,58.023445049171045],[-125.08800108104633,58.023522609280135],[-125.0876902517815,58.02359563937171],[-125.08737537939308,58.02366078938307],[-125.08705030574716,58.02371016544761],[-125.08671340625979,58.0237235661603],[-125.08637499102515,58.02371227872383],[-125.08603646668924,58.02370547639812],[-125.08570341709589,58.02373460441148],[-125.08540500694178,58.02381893103376],[-125.08513977514704,58.023931526208386],[-125.08489752205803,58.02405661676348],[-125.08466362382762,58.02418625087241],[-125.08442972398059,58.024315884590074],[-125.0841790821858,58.024437551395316],[-125.08390554065382,58.024543357202035],[-125.08361333256035,58.02463333090073],[-125.08331078716014,58.02471313792016],[-125.08300200058346,58.024788414706805],[-125.08269532929138,58.024863705318865],[-125.08239066355168,58.02494349574183],[-125.08209223633344,58.02502781507528],[-125.08179586940305,58.02511439128267],[-125.08150159018417,58.02520210288554],[-125.08120728211726,58.02529093534141],[-125.08091294517577,58.02538088865048],[-125.08062075086939,58.02546973439271],[-125.08032641111832,58.02555968642719],[-125.0800321249699,58.02564739483573],[-125.07973572087333,58.025735088024724],[-125.07943725386423,58.0258205229936],[-125.07913884056369,58.02590371431722],[-125.07883624785423,58.0259846328074],[-125.07852950331618,58.02606215694168],[-125.07822284019512,58.02613631589832],[-125.07790993635146,58.026205944357685],[-125.07759296362629,58.026268813901886],[-125.07726988833703,58.02632154540182],[-125.07694271692598,58.02636863940884],[-125.07661353852406,58.02641123201447],[-125.07628232562307,58.02645044469669],[-125.07595325627238,58.02648854970596],[-125.07562206963809,58.02652663926136],[-125.07529291599955,58.026568107127346],[-125.074963678655,58.02661293866389],[-125.07464065204387,58.02666342083916],[-125.07431949207943,58.02672401034088],[-125.07400866502915,58.026794765866825],[-125.07370404821995,58.02687117216768],[-125.0734014359821,58.02695207843383],[-125.0730988501543,58.027031862528375],[-125.07279208519485,58.02710937357835],[-125.07247919088753,58.02717786789895],[-125.07215810625823,58.027235087758626],[-125.07182899808085,58.027274304135936],[-125.07149000002153,58.02728540881864],[-125.07115843490631,58.02725281855165],[-125.07084466485962,58.02718557894322],[-125.07054612934112,58.027101619287436],[-125.07025199524399,58.02701095947599],[-125.06995783475936,58.026921420518505],[-125.06965278652744,58.026844143641426],[-125.06933245009519,58.026785828231596],[-125.06900537506041,58.02674316869842],[-125.06867392828768,58.02670608631666],[-125.06834022626255,58.026674595813596],[-125.06800646906282,58.026645347461724],[-125.06767059576664,58.02661608350627],[-125.06733901199966,58.02658460527643],[-125.0670075403783,58.026548640258845],[-125.06667835344581,58.02650596025859],[-125.06635145137112,58.026456565293465],[-125.06602886714572,58.02640383465187],[-125.06570633969935,58.0263488602524],[-125.06538598568733,58.02629165690299],[-125.06506563265246,58.02623445278907],[-125.06474319196836,58.026176111602645],[-125.06442281292638,58.02612002744517],[-125.06410023430661,58.026067292166246],[-125.06377336744383,58.02601676942666],[-125.06344638944836,58.025970731850364],[-125.06311712760066,58.0259314075727],[-125.0627834091105,58.0259010247073],[-125.06244503751773,58.02588743364796],[-125.06210635769385,58.02588617811811],[-125.06176959809237,58.02589278702138],[-125.06143066567115,58.02590162318509],[-125.06109181731122,58.02590709402069],[-125.06075310927142,58.025906956549875],[-125.06041426076453,58.0259124256671],[-125.06007724769336,58.02592912370903],[-125.05974020620805,58.02594694239043],[-125.05940333314764,58.025958031286784],[-125.05906479346002,58.02595116060072],[-125.05874228011412,58.02589616941718],[-125.05853834658853,58.02575564322958],[-125.05846230886578,58.0255801241866],[-125.05844988081172,58.02540056670488],[-125.05846920089535,58.02522123301083],[-125.05850754136438,58.0250431550828],[-125.05855434752752,58.02486513683981],[-125.05860115324637,58.02468711861474],[-125.05864160903755,58.02450905566632],[-125.05867783147576,58.02433096291339],[-125.05872251946765,58.02415292983596],[-125.05877778935735,58.02397497133728],[-125.0588372634919,58.02379816415835],[-125.0588988253728,58.02362249338305],[-125.05896464768188,58.02344573094444],[-125.05902623652129,58.023268938691935],[-125.05908359195077,58.02309211663126],[-125.0591367421599,58.02291414328251],[-125.05917930989136,58.02273609542058],[-125.05922399360338,58.02255806248434],[-125.05927079326591,58.0223800444715],[-125.05931335975507,58.02220199667021],[-125.05935169313109,58.02202391908468],[-125.05937735619797,58.021844630625694],[-125.05938820467915,58.021665237883326],[-125.05938000613875,58.02148571105666],[-125.05934215115751,58.0213070971127],[-125.0592724676033,58.02113162408804],[-125.05917518849402,58.02095932174217],[-125.05905451862424,58.02079134131045],[-125.05891680709325,58.020627727455945],[-125.05876631474818,58.02046738846484],[-125.05860733051621,58.02030811115699],[-125.0584397981947,58.020152138465214],[-125.05826586223961,58.019998363793874],[-125.05808129023669,58.01984675727145],[-125.05789025839886,58.01969959166688],[-125.05769070686073,58.019554609059334],[-125.0574804913031,58.01941291595823],[-125.05726381600553,58.0192756636635],[-125.05703430419885,58.01914392880456],[-125.05677906143131,58.01902547201458],[-125.05650011923694,58.01892367252878],[-125.05620819937697,58.018832997556245],[-125.05590979130784,58.0187478844819],[-125.05561138459272,58.01866277074875],[-125.05531077835009,58.01858100582818],[-125.05500365545514,58.01850592419934],[-125.05468784311348,58.01843975379706],[-125.0543631998002,58.01838810195226],[-125.05402721312109,58.018366654314285],[-125.05369037814869,58.018378850193336],[-125.05335737906242,58.01840677592003],[-125.0530203170374,58.01842794193975],[-125.05268184646867,58.01842105513636],[-125.0523458037968,58.018401846225544],[-125.05200978980854,58.01838151499135],[-125.0516739462817,58.0183544540426],[-125.0513448486987,58.01831173664444],[-125.0510333050901,58.01824446619663],[-125.05075870168861,58.01813932044321],[-125.05052710355139,58.01800755952837],[-125.0503275610788,58.01786368766596],[-125.0501494367691,58.01770987271858],[-125.049990472406,58.01755170711051],[-125.04984429113104,58.017390267230056],[-125.04970666065744,58.01722552300989],[-125.04957540801584,58.017059702373736],[-125.04944627259567,58.016893896697795],[-125.04931502226508,58.0167280758653],[-125.04920078670028,58.01655901101487],[-125.04911417428785,58.01638565604066],[-125.04904454770978,58.01621017862026],[-125.04897492178299,58.01603470119705],[-125.04889468806353,58.015860269905005],[-125.04879109386798,58.01568903725497],[-125.04867686382755,58.01551997214708],[-125.0485583744285,58.015351998299366],[-125.04843565416161,58.0151839942264],[-125.04830653023383,58.0150181877859],[-125.048171031159,58.01485345748499],[-125.04802489668086,58.014690894612755],[-125.0478723303067,58.01453165077478],[-125.04770701278746,58.01437455921398],[-125.04753100322402,58.01422187791631],[-125.04734009835806,58.014072455179864],[-125.04713847314014,58.01392856407494],[-125.04692401171926,58.0137901894509],[-125.04669459826522,58.01365731614067],[-125.04644800295739,58.01353441484308],[-125.04618634163202,58.013421500569926],[-125.04591178711026,58.01331634540268],[-125.04562645518263,58.013218964379135],[-125.04533457745022,58.01312938767676],[-125.04502977770608,58.01304869133293],[-125.0447205191708,58.01297693579413],[-125.04440688733679,58.01291075661709],[-125.0440889392315,58.012847910829684],[-125.04376873345609,58.01279065648939],[-125.04344635565127,58.012735629170095],[-125.04312174856757,58.01268507179452],[-125.04279499792968,58.01263561993754],[-125.04247033534827,58.01258730392292],[-125.04214132745744,58.01254344264835],[-125.0418121771365,58.01250518791059],[-125.04148088302865,58.012468038646674],[-125.04114967555559,58.01242752415603],[-125.04082287242096,58.0123803104255],[-125.04050044510423,58.01232751895727],[-125.0401780760718,58.01227248377676],[-125.03985790987278,58.01221409862792],[-125.03954209107992,58.0121512572753],[-125.03922856143157,58.012081701593445],[-125.03892369715295,58.01200435581033],[-125.03863401811573,58.01191253687386],[-125.03836166905587,58.011805138654324],[-125.03810439065089,58.01168775336072],[-125.0378492008543,58.011571504296555],[-125.03758117431298,58.01146077061043],[-125.037298022635,58.01136226577147],[-125.03700403470664,58.01127377725945],[-125.03670573032215,58.011188621985525],[-125.0364052539614,58.01110569371966],[-125.03610475011945,58.01102388625127],[-125.03580207423114,58.0109443057702],[-125.03549728391106,58.01086470932968],[-125.03519463943132,58.01078400602007],[-125.03489411195962,58.010703317321635],[-125.03459367234282,58.01061926355825],[-125.03429752319092,58.01053299679531],[-125.03400140427237,58.01044560791895],[-125.03370308440508,58.01036156747951],[-125.03340262130288,58.01027863253253],[-125.03310218842724,58.01019457545263],[-125.03280821954195,58.01010607781655],[-125.03252288820313,58.0100109120677],[-125.03225054151248,58.00990462307179],[-125.03199761335536,58.00978389252844],[-125.03177465312625,58.009649918714125],[-125.03157099572334,58.00950598946215],[-125.0313822940328,58.00935656002637],[-125.03120640338453,58.009202736587426],[-125.03104541033498,58.00904565601154],[-125.03089296793266,58.00888527229451],[-125.03075119170099,58.00872160082294],[-125.03061790801158,58.00855686919872],[-125.03049314573887,58.00838995598619],[-125.03037264468355,58.0082219519488],[-125.03025852035387,58.0080528724621],[-125.03014865712812,58.00788270217803],[-125.0300387659107,58.00771365329547],[-125.02993104919172,58.00754237680099],[-125.0298275354945,58.007372252451866],[-125.02972405173288,58.00720100659375],[-125.02962479990963,58.00702979143389],[-125.0295255779947,58.0068574547722],[-125.02942847246858,58.006685133445544],[-125.02933348330194,58.00651282745827],[-125.02924061046552,58.0063405368148],[-125.02914988294349,58.00616714006112],[-125.02906127169818,58.00599375866052],[-125.02897477670018,58.005820392617174],[-125.02889042694079,58.00564592047728],[-125.02880604894254,58.005472569774696],[-125.02872593154733,58.00529812836886],[-125.02864581489688,58.00512368694785],[-125.02856784340035,58.004948139444615],[-125.02849195897053,58.004773728777224],[-125.02841821963958,58.004598212035376],[-125.02834659634783,58.0044227106797],[-125.02827920440511,58.00424724010794],[-125.02822667847904,58.004069634392394],[-125.02818687400772,58.00389099961136],[-125.02815764646226,58.003712441835994],[-125.0281326788353,58.00353279342714],[-125.0281161726039,58.00335320663725],[-125.02809963748798,58.00317474133514],[-125.02808101630322,58.00299513921297],[-125.02806028003783,58.002815521725054],[-125.02803528442962,58.0026369949261],[-125.0280018571494,58.00245728510739],[-125.02793444130073,58.00228293618761],[-125.02778418393025,58.00212144404038],[-125.02767220502068,58.00195237886004],[-125.0276069649226,58.001775802368044],[-125.02754595581843,58.00159925669017],[-125.02755057598644,58.00142094571754],[-125.02748748161358,58.001243263222094],[-125.02742009939593,58.001067792818915],[-125.02732513366522,58.000895486448044],[-125.02717271119293,58.00073622134805],[-125.02692200536166,58.00061437634859],[-125.02662806791226,58.00052810892776],[-125.02629924243553,58.00048196629855],[-125.02596801160301,58.000447021940765],[-125.02563452069494,58.00041766858098],[-125.02530108855636,58.0003860714874],[-125.02498947823167,58.000328834664586],[-125.02466526560158,58.00026814005642],[-125.02434041266514,58.000232116573656],[-125.02385339693282,58.0001679868182],[-125.02323158617453,57.999999676122115],[-125.02295287638539,57.99989780869126],[-125.02266929548986,57.99982058161295],[-125.02233188648638,57.99986073441293],[-125.02200490611115,57.99990657107941],[-125.02138052508614,57.99999958052285],[-125.02115868313629,58.000069740713066],[-125.02085003327976,58.000142628916414],[-125.0205413529585,58.000216637861534],[-125.02023270069525,58.000289524649276],[-125.01996741049717,58.000403108973316],[-125.01974389398879,58.00053718948119],[-125.01953709188453,58.00067924404862],[-125.0193302882149,58.000821298317526],[-125.01911719614596,58.0009610627687],[-125.01889367327772,58.00109514193389],[-125.0186701194898,58.00123034219468],[-125.01845702264028,58.0013701056539],[-125.01825858379584,58.001515584920995],[-125.01808108992488,58.00166906963406],[-125.01787847633993,58.00181227436903],[-125.01763611260678,58.00193836135941],[-125.01739586245729,58.00206446349403],[-125.01717018228086,58.00219964581776],[-125.01697384929038,58.0023451388762],[-125.01682366804135,58.002505553219024],[-125.01669237580514,58.002671714883384],[-125.01654427791382,58.00283326599841],[-125.01638348716303,58.002994723479944],[-125.01618929163428,58.00313910964037],[-125.01593862897711,58.00325840267186],[-125.01566293427298,58.00336405068941],[-125.015378923969,58.003464028492616],[-125.01508865455966,58.00356059453476],[-125.01477799611264,58.00362784610957],[-125.01443537658342,58.00362307419554],[-125.01411490591629,58.003661088399845],[-125.01382457279168,58.003759894619456],[-125.01356761148845,58.00387689350388],[-125.01333359276592,58.00400639983345],[-125.01309328543049,58.00413361596031],[-125.01285089063092,58.00425969458046],[-125.01259600870402,58.004377828750094],[-125.01232658337685,58.00448575984163],[-125.01204464152552,58.004586867774165],[-125.01174621827894,58.0046710280761],[-125.01143342929085,58.00473825629366],[-125.01110827206456,58.004793053801016],[-125.010781264574,58.00483774177105],[-125.0104087532438,58.004842833187595],[-125.01011141880338,58.00488549609791],[-125.01002266232784,58.00504187219359],[-125.00999630162131,58.005239091116806],[-125.00986708499171,58.00540526224386],[-125.00967279273003,58.00555188220952],[-125.00942203403982,58.00567340622554],[-125.00914627364013,58.00578016251707],[-125.00882351567375,58.00582375568187],[-125.00848633419707,58.00585265921374],[-125.00814924112323,58.00587819753394],[-125.007805534458,58.00591378093013],[-125.00753463180419,58.00583661551981],[-125.00725788835975,58.00574033767701],[-125.00692112190964,58.00575353690719],[-125.00669949393058,58.00589321934999],[-125.00648841176726,58.006034101598914],[-125.00634657330924,58.00619681066123],[-125.00618581337507,58.006354892085845],[-125.00597466727426,58.00649801650111],[-125.00574227577141,58.006644347452],[-125.00546402040538,58.006684898952265],[-125.0051384122738,58.00659610440829],[-125.00486831313947,58.00648865428023],[-125.0046283672867,58.00636123822879],[-125.00441839627642,58.00622058514433],[-125.00418488924413,58.00608985129121],[-125.00394706368765,58.005962449846805],[-125.00371570509525,58.005830609537114],[-125.00346712703461,58.005709857069476],[-125.00318410831942,58.00561128052951],[-125.00290985066259,58.005501552065965],[-125.00267837933998,58.00537419583228],[-125.00256867882695,58.00520288191259],[-125.00251627323915,58.00502526591194],[-125.00248293622099,58.00484667070418],[-125.0024538600352,58.004666985679094],[-125.00240991710902,58.00448943295395],[-125.00233418498539,58.00431388606937],[-125.00222231418691,58.00414479915619],[-125.00209346224891,58.00397782860622],[-125.00194968503169,58.00381523308021],[-125.00179309797427,58.00365702834198],[-125.0016322816643,58.00349879181376],[-125.00147146671037,58.00334055511887],[-125.00130853784412,58.00318230243554],[-125.00115198597749,58.00302297560483],[-125.00101247684854,58.00285928943741],[-125.00086656350261,58.00269779856325],[-125.00069508946721,58.00254284626967],[-125.0004937647886,58.00239664368113],[-124.99999971165329,58.00220001677978],[-124.99968026185336,58.00212022846342],[-124.99937118012762,58.00204836878215],[-124.99904901956452,58.0019909920562],[-124.99872009552487,58.00194926722368],[-124.99838437769029,58.001924315679055],[-124.99804615589443,58.00191392622368],[-124.99770948043964,58.00192485927503],[-124.99737456047049,58.00194926471988],[-124.99703570936602,58.00196242308165],[-124.99669936295926,58.00196101767541],[-124.99635890614272,58.0019550938364],[-124.99602267982688,58.001949200940324],[-124.99568442845066,58.00193992694853],[-124.99534620726176,58.00192953065377],[-124.99500804632075,58.00191689061059],[-124.99467200080103,58.00190426563803],[-124.99433390041548,58.00188938099616],[-124.99401100841017,58.00193854540411],[-124.99369618544664,58.00200235159834],[-124.99338538126489,58.002074039069804],[-124.99307862578029,58.002152486402586],[-124.99279054475241,58.002244533999274],[-124.99251899268279,58.00235128746982],[-124.99224532384473,58.002458024434986],[-124.99195720830609,58.002551191710204],[-124.99165250090759,58.00263189466916],[-124.99138514313755,58.00273979927395],[-124.99113642913001,58.00286242600477],[-124.99086695298207,58.00297031361589],[-124.99059539019,58.00307706325793],[-124.99032585060337,58.00318719269509],[-124.99005425452363,58.00329506270804],[-124.98975585262879,58.003376930850365],[-124.9894313385092,58.003328486404236],[-124.98920409644876,58.00320338202763],[-124.9891136521148,58.00302659434988],[-124.98904221562327,58.00285107223691],[-124.98899199256681,58.002673467398964],[-124.98894811565894,58.00249591062901],[-124.9889021239518,58.002318337860586],[-124.98884978706677,58.0021407170529],[-124.98879533548278,58.00196308023861],[-124.98874722996707,58.001785491498815],[-124.9886991249066,58.001607902775525],[-124.9886552808495,58.00142922466964],[-124.98861140698904,58.001251668027486],[-124.98857179405381,58.00107302200863],[-124.98853218149564,58.000894376012496],[-124.9884989146863,58.00071577811326],[-124.98846776330741,58.00053719626526],[-124.98840687986753,58.00036287585186],[-124.98824465386224,58.000181057449325],[-124.98822202493416,58.000000296877396],[-124.98815485875222,57.99982368547884],[-124.98808977803073,57.999648211552945],[-124.98801623770308,57.99947267349948],[-124.98793209260506,57.99929817671195],[-124.98783731263528,57.99912584261096],[-124.98773618846299,57.99895346036439],[-124.98763291995688,57.99878218347537],[-124.98753176739812,57.998610922578195],[-124.98743699100166,57.99843858832052],[-124.98735070567312,57.99826519675934],[-124.9873089263999,57.99808877777722],[-124.98732017293909,57.997907152712514],[-124.98726781943195,57.99773065356853],[-124.98716041731971,57.997555980134536],[-124.98707199009836,57.997383693951015],[-124.98707033617549,57.99720982283041],[-124.98717234341238,57.9970356165814],[-124.98728486371968,57.99686373338305],[-124.98740363692694,57.99669526256165],[-124.98752660859354,57.99652794518304],[-124.98763695038704,57.9963582886169],[-124.9877367773264,57.9961863089328],[-124.98783657311132,57.99601545064306],[-124.98796600611263,57.99584369533927],[-124.98809936529216,57.99568318637223],[-124.98789314085558,57.99556496972355],[-124.98762114637121,57.995454105648605],[-124.98732582995676,57.99534530743218],[-124.98704752455879,57.995233272649],[-124.98678408501874,57.99511910679056],[-124.98652919712029,57.99500164034272],[-124.98629364681614,57.994873103605656],[-124.98608380876455,57.99473242343959],[-124.98588469765907,57.99458621612034],[-124.98568341272983,57.9944422353275],[-124.98548430472293,57.99429602745674],[-124.98530009247733,57.99414656753656],[-124.9851351266258,57.99398940204928],[-124.98499360617363,57.993825684664756],[-124.98487124078603,57.993657626164044],[-124.98477648910806,57.99348529093664],[-124.98470723608679,57.9933086629592],[-124.98466127569442,57.99313109048758],[-124.9846895723607,57.99294510956433],[-124.98443304939028,57.99304522951647],[-124.98410644633758,57.99307751583258],[-124.98376196413055,57.99306704201127],[-124.9834215292805,57.993063328106906],[-124.98308308767052,57.99306411517497],[-124.98274851075453,57.993078390806446],[-124.98241347759281,57.993109487086144],[-124.98208046734224,57.99314396294964],[-124.9817457068169,57.993164964663606],[-124.98140294357565,57.99316907950609],[-124.98107163648552,57.99314075264596],[-124.98076695459534,57.993066640017275],[-124.98046686876863,57.99297910182026],[-124.98014910523294,57.99291946949601],[-124.9798115486847,57.9928877267504],[-124.97947828303556,57.992853772624365],[-124.97917348463628,57.992784142107254],[-124.9789014445394,57.99267662489288],[-124.97864239908134,57.99255798991205],[-124.97839405060273,57.9924349496442],[-124.97819921092061,57.99228876359345],[-124.97801295342187,57.99213815632294],[-124.97783310237101,57.991985354537526],[-124.97766174179965,57.991831495890246],[-124.97751385715523,57.99166996522751],[-124.97737449328231,57.991506256373476],[-124.97722664170789,57.99134360401968],[-124.97707873030012,57.99118319438849],[-124.97692873614501,57.99102164698453],[-124.97677871271482,57.99086122086847],[-124.9766266065825,57.99069965697074],[-124.97646806639837,57.990541408566465],[-124.9763308258111,57.99037771503647],[-124.97622551839913,57.99020641468925],[-124.97613507473532,57.99003298497941],[-124.97604040289315,57.98985952279679],[-124.97591177760815,57.98969028670864],[-124.9756477682544,57.98959964951759],[-124.97530270814049,57.98961158243974],[-124.9749616624593,57.98963139693407],[-124.9746268680144,57.98965462356987],[-124.97429005057715,57.98967446883759],[-124.97395335538131,57.98968982755011],[-124.97361684386654,57.989698456855606],[-124.97327849372567,57.98969697621078],[-124.97294020497075,57.98969325185591],[-124.9726017628343,57.989695133774205],[-124.97226699706106,57.989717233066514],[-124.97193014710514,57.98973819380684],[-124.97159366541189,57.989745696586134],[-124.97125874494492,57.989773400480814],[-124.97091414294307,57.98976850067196],[-124.97056328978566,57.98976018677059],[-124.97022555442449,57.9897362698731],[-124.96992039848944,57.989681196994276],[-124.96967819487148,57.98956716125158],[-124.96947513078935,57.989414169077286],[-124.96925695917705,57.98927227656296],[-124.96898500372379,57.98916361812208],[-124.96871513349785,57.98905609690219],[-124.96842365808527,57.98896523308934],[-124.96812136526017,57.98888325830549],[-124.96781465987563,57.9888079786836],[-124.96749698258353,57.98874719508661],[-124.96717495404197,57.988690863707504],[-124.9668529264667,57.988634531554986],[-124.9665374283695,57.98857151920604],[-124.96623511195384,57.98849066160821],[-124.96593932542912,57.988403123940465],[-124.96564354028368,57.98831558562548],[-124.96534558029653,57.98823027311721],[-124.96503667866229,57.98815833504132],[-124.96471705158123,57.98809192136213],[-124.9643904637626,57.98804788614758],[-124.964056605211,57.988037443564615],[-124.96371363922087,57.988050484341656],[-124.96337076588482,57.98806015997167],[-124.9630412911762,57.98804414058402],[-124.96271703702023,57.98799226775195],[-124.96240406856126,57.98791468362757],[-124.96211700106313,57.98781823192289],[-124.96187075944886,57.98769854225081],[-124.96165896965752,57.9875566869185],[-124.96144721248753,57.98741370985092],[-124.96120324515842,57.987288428349196],[-124.96094025032053,57.98716299827045],[-124.96066637509266,57.98704869956539],[-124.96038755865898,57.98696016003231],[-124.96008897126084,57.986974658758854],[-124.95976936605766,57.98706077937785],[-124.9594381611349,57.987107550632196],[-124.95913170575459,57.98717694734446],[-124.95885811483373,57.987281371286294],[-124.95858856447283,57.98739255619623],[-124.95829625232678,57.98748561632258],[-124.95798528289068,57.987565070206706],[-124.95767639537885,57.987645661306104],[-124.9573945886138,57.98774104488696],[-124.95716069483088,57.9878626005392],[-124.95697266192221,57.98800806916034],[-124.95681170970782,57.988168330853526],[-124.9566611723572,57.988334282128655],[-124.9565044150884,57.98849569798607],[-124.95633929227299,57.9886536832885],[-124.95617416806796,57.98881166841351],[-124.9560153234485,57.988971945821234],[-124.95586916421605,57.98913232231644],[-124.95586022571395,57.989301623902215],[-124.95592296101128,57.98947933787014],[-124.95599409247826,57.98965936084467],[-124.95607153693511,57.989840554853394],[-124.95615106546555,57.990022886812135],[-124.95623059476843,57.99020521875912],[-124.95631223937187,57.990387567228844],[-124.95638968686632,57.99056876119481],[-124.95646290601117,57.99074992208698],[-124.95652984452785,57.990928790533786],[-124.9565883877457,57.991105350013264],[-124.956636420957,57.99127958400602],[-124.95667182941828,57.99145147599332],[-124.95669256068489,57.99161876660601],[-124.95669858338643,57.99178257727336],[-124.95661010297385,57.991922094238944],[-124.95630316656674,57.9920071847678],[-124.95592265358923,57.99207599574631],[-124.95561754820163,57.99217119408043],[-124.95538756947968,57.992302873122384],[-124.95512425428336,57.99241634413339],[-124.95484849938553,57.99252074389048],[-124.95457069076214,57.99262288367681],[-124.95429493280783,57.9927272823136],[-124.9540274757431,57.99283735380308],[-124.95376825700978,57.992955341048635],[-124.95352567271122,57.99308355326738],[-124.95335240237486,57.993229133653344],[-124.95327770834038,57.993404650330135],[-124.95303306731415,57.993530602280515],[-124.95275114200348,57.99362821951293],[-124.9524587981282,57.993720146051665],[-124.95216234859758,57.99380755305362],[-124.95185974139217,57.99388818103273],[-124.95155514344691,57.99396430601748],[-124.95123816919144,57.994029116361276],[-124.9509151630497,57.99408266183361],[-124.95058419865713,57.99411819720568],[-124.95026734686837,57.994178519549486],[-124.94996883661113,57.99426366224041],[-124.9496662523967,57.994343163860194],[-124.94936565610205,57.994427167151194],[-124.94906303789547,57.99450778884423],[-124.94875839784572,57.9945850289249],[-124.94844756932291,57.99465661120725],[-124.94812657429486,57.99471353090716],[-124.94779954832777,57.994759185566394],[-124.94747258445447,57.99480259657389],[-124.94714120154741,57.99485270198159],[-124.94680962896882,57.99490953512756],[-124.94659059844497,57.99480012609489],[-124.94640274974638,57.994634879100374],[-124.94616307817982,57.99450735966952],[-124.9459019143551,57.99439200851461],[-124.94564501311899,57.99427556884476],[-124.9453945837082,57.994154693116975],[-124.94332369423165,57.99325668027769],[-124.94335891833782,57.993132453368524],[-124.94336617825087,57.99294967810761],[-124.94325249228638,57.992780527179974],[-124.94310910756202,57.99261450604756],[-124.94294855437772,57.99245732220281],[-124.94276881295443,57.992305594563526],[-124.94258698995084,57.992152728533064],[-124.94241151226618,57.991999912544074],[-124.94223606760859,57.991845974927955],[-124.9420606243898,57.991692037106695],[-124.94188515100099,57.99153922050148],[-124.94170971065456,57.991385282269796],[-124.94153641793487,57.99123023918075],[-124.94136524120664,57.99107521266383],[-124.94119829499489,57.99092021950084],[-124.94106341625982,57.990753142178114],[-124.94093276779013,57.99058609830512],[-124.94072728947705,57.99044762391858],[-124.94048974678634,57.99032123307731],[-124.94024147486081,57.990200364981746],[-124.93998468319121,57.990081672106136],[-124.93972574697655,57.98996408337318],[-124.93946895855348,57.98984538953559],[-124.93921857857768,57.98972450279807],[-124.93897678489526,57.98959919717034],[-124.9387844815007,57.98944399952396],[-124.93861995299417,57.98927892746077],[-124.93836029721301,57.98918712878366],[-124.93805096361531,57.98913194944746],[-124.93772222014033,57.989090074945786],[-124.93738265124821,57.98905708680224],[-124.9370386953103,57.98902967120167],[-124.9366967907929,57.98900451439444],[-124.9363612935966,57.988977164430004],[-124.93602563798112,57.988955420706304],[-124.93568774115067,57.98893814494421],[-124.9353498128294,57.98892198974348],[-124.93501188479897,57.98890583368753],[-124.93467619878088,57.98888520798843],[-124.9343449329871,57.98885788671351],[-124.9340382955677,57.98878252949098],[-124.93374043556935,57.988696024980065],[-124.93344257694352,57.98860951981252],[-124.93314680223577,57.98852415230513],[-124.93284459002082,57.988442097677684],[-124.93253795900858,57.988366737042156],[-124.93222915103904,57.988293601622246],[-124.93192034427257,57.98822046549363],[-124.93161371692548,57.98814510275269],[-124.93131580372722,57.98806083571942],[-124.93101805151788,57.987970960957455],[-124.93071572065081,57.987893387215415],[-124.93038693803898,57.98792776780248],[-124.93004992102055,57.9879542298815],[-124.92971517775406,57.98797510099611],[-124.92938421517005,57.98801170498859],[-124.92905113755653,57.988048291195554],[-124.92871620090123,57.98807588829053],[-124.92838494658616,57.988048552248],[-124.92805631943703,57.98800328974839],[-124.92772304794968,57.987972570842494],[-124.92739201953952,57.987937382444734],[-124.92707230073215,57.9878764857112],[-124.92674124172106,57.987842417116134],[-124.92640563389226,57.987819527814956],[-124.92606989816075,57.98780112332177],[-124.92573204839064,57.98778270096588],[-124.92539628122057,57.98776541619191],[-124.92505833577786,57.987750356369425],[-124.92472039060627,57.98773529569133],[-124.9243845600694,57.98772025119812],[-124.92404879407819,57.9877029630356],[-124.92372225739359,57.98765882833963],[-124.92347197485917,57.98753679093994],[-124.92323454083868,57.98740924837875],[-124.92301213398129,57.987273974965895],[-124.92281756893837,57.987126587524926],[-124.92261019077412,57.98698358305923],[-124.92248806258468,57.98681771149848],[-124.92237448924645,57.98664854391173],[-124.92223115587561,57.98648474427527],[-124.92209842736952,57.98631990848548],[-124.92196358575443,57.9861550555144],[-124.9217903665108,57.98600110907724],[-124.92160222005056,57.9858515284902],[-124.92141833580166,57.985700860426924],[-124.92127497800026,57.985538181339194],[-124.92117627804986,57.98536688977195],[-124.92111794252102,57.9851891944626],[-124.92109346712182,57.98501065123279],[-124.92109019839847,57.98483003614079],[-124.921074212347,57.98465043993712],[-124.92105608004445,57.984471948081],[-124.92105069737882,57.98429131599952],[-124.9210347117456,57.98411171989476],[-124.92094873376355,57.983939409572145],[-124.92083306192622,57.98377022410136],[-124.92073228674259,57.98359779402739],[-124.9206569786331,57.98342220488192],[-124.920607072785,57.98324569952176],[-124.9205826333194,57.98306603516434],[-124.92057087862582,57.98288647344021],[-124.92055912404462,57.982706911749666],[-124.92054948364535,57.982527367193384],[-124.92053984333823,57.98234782267091],[-124.92053020312332,57.98216827818229],[-124.92052267703973,57.98198875082866],[-124.92051303699904,57.98180920640787],[-124.92050339705057,57.9816296620208],[-124.92048952917668,57.981450083464274],[-124.92046089568458,57.98126926382279],[-124.92042592050299,57.98108839290221],[-124.92040993922119,57.98090879733872],[-124.92042771710238,57.980731718260856],[-124.92051294805837,57.98056191489067],[-124.92065301199214,57.980397041695355],[-124.92079944874608,57.980231098270146],[-124.92091635362198,57.980062672583344],[-124.92102281672972,57.97988967575004],[-124.92111659538755,57.97971657631408],[-124.92117450128481,57.979540943501526],[-124.92118602988818,57.97936044910457],[-124.92113625582293,57.979179459104294],[-124.92102046891681,57.97901476026249],[-124.92083662047733,57.97886409250078],[-124.92063150603444,57.97871773912035],[-124.92045409886231,57.97856375797611],[-124.92028953738313,57.97840427224989],[-124.92013983859289,57.978242663299135],[-124.92002835108242,57.97807575517628],[-124.92002716964356,57.9778962799075],[-124.92004507690056,57.97771471585402],[-124.92006513002107,57.97753204754261],[-124.92001728406,57.97735780298047],[-124.91986550909756,57.97719505539495],[-124.91965393723089,57.977053135032214],[-124.9193571069308,57.97693520036069],[-124.91909537223013,57.97699364990298],[-124.91885472503651,57.97712742102479],[-124.91860965483386,57.97726788585946],[-124.9183380403531,57.97737560694652],[-124.91804368962701,57.9774651965742],[-124.9177348964778,57.97754233016087],[-124.91740765983702,57.97759912351261],[-124.91708245947993,57.97758526796066],[-124.91676102285871,57.9775142374631],[-124.91646329203263,57.97742769544451],[-124.91618725052443,57.97732226070483],[-124.91596057176864,57.97719142825517],[-124.91577463879575,57.977040736640106],[-124.91559088582792,57.976887819175055],[-124.91538355932872,57.97674592644657],[-124.91516550375809,57.976609554472354],[-124.91494318991822,57.976474269179306],[-124.91472087767994,57.97633898353537],[-124.9144964533325,57.97620368034401],[-124.9142655598113,57.97607281077819],[-124.91402393728254,57.97594746179018],[-124.91376514737392,57.9758309458816],[-124.91351276500446,57.97571223833157],[-124.91329690080079,57.9755736378761],[-124.91302728772821,57.97546600566473],[-124.91277916993089,57.97534620981818],[-124.91257615481159,57.975202104619925],[-124.91238598550032,57.97505249554391],[-124.91221285671888,57.97489853850727],[-124.91206532028184,57.974736938337365],[-124.91195394403657,57.97456778130762],[-124.9119062369494,57.97439017020995],[-124.91196635627558,57.97421231684544],[-124.9117225423146,57.97409031088152],[-124.91153869027877,57.97394187388953],[-124.91135061254879,57.973793402175126],[-124.91116468238187,57.97364382607609],[-124.91099163013146,57.97348762490222],[-124.9108674835874,57.97332172785398],[-124.91079224219779,57.973146135072994],[-124.9106957361437,57.972974855282715],[-124.91056099248355,57.97280999314729],[-124.91040927687207,57.972647235598025],[-124.91021308147104,57.97248747953287],[-124.91011635196287,57.972324049177175],[-124.91016564873952,57.97215508180844],[-124.91025945811964,57.971981991434376],[-124.91038285509707,57.97180914269229],[-124.91052306096917,57.971639796113536],[-124.91067152420518,57.97147724678383],[-124.91083042325063,57.97131926914784],[-124.9110060983088,57.971165914921386],[-124.91119016058535,57.9710148722626],[-124.91137633479049,57.97086384661999],[-124.91156247500203,57.97071394213073],[-124.91174653282664,57.97056289877716],[-124.91193686435193,57.97041414968229],[-124.91212511347359,57.970264261717],[-124.9122986649452,57.97011088872706],[-124.91244916287397,57.96995059769174],[-124.91258080170378,57.96978454453448],[-124.91269774337903,57.96961500653945],[-124.91279992314924,57.969444226522654],[-124.9128957944856,57.969272273405956],[-124.91298327660816,57.9690980085961],[-124.91306653131812,57.96892370932313],[-124.91314555867406,57.96874937559497],[-124.91322247201558,57.96857502463588],[-124.9132973038147,57.968399535062936],[-124.91337002165338,57.96822402826649],[-124.9134406255612,57.9680485042502],[-124.91351126124506,57.96787185884339],[-124.91358186383104,57.967696334818065],[-124.91365457897908,57.96752082799807],[-124.91372729344764,57.967345321171145],[-124.91380420121456,57.96717097013733],[-124.91388533465248,57.96699665350385],[-124.91398119477428,57.96682470005541],[-124.91409600774251,57.96665514416481],[-124.91421501358836,57.966486743992164],[-124.91431929110675,57.966315980581385],[-124.9143878386652,57.966138196452945],[-124.9143485509042,57.96596177800052],[-124.91422873789438,57.96579255565669],[-124.91410047350278,57.96562326442558],[-124.91403362000601,57.96544998648968],[-124.91403662895766,57.965272790758476],[-124.91408199684207,57.96509257497713],[-124.91414423647929,57.96491361821393],[-124.91422955718397,57.964740457575815],[-124.91434228201366,57.96456976326648],[-124.91441706819829,57.96439539519555],[-124.91443493132202,57.96421607727273],[-124.91445702032767,57.964036793775676],[-124.91451707860854,57.963860062605306],[-124.9145940079756,57.963684590381504],[-124.91466882362741,57.96350910095258],[-124.91479310450863,57.96323082270625],[-124.91481983082247,57.96296408885237],[-124.91485888568565,57.962782700295435],[-124.91507348453482,57.962670038404035],[-124.91541292483339,57.9626985968481],[-124.915746091518,57.96272486013913],[-124.91607677992165,57.96269053371294],[-124.9163915021416,57.962623549106915],[-124.9167081421682,57.96256330920664],[-124.9170349579725,57.96251661090441],[-124.91736378895513,57.96247329309604],[-124.91769057085503,57.96242771457231],[-124.91801533591735,57.962378753968295],[-124.91834208391761,57.9623342952335],[-124.9186728633425,57.962296598244095],[-124.9190075130236,57.9622712698722],[-124.9193432107024,57.962282963343384],[-124.91967605397764,57.96232043061429],[-124.920009413711,57.962339954961095],[-124.92034972490737,57.9623382235466],[-124.92068526251725,57.96235552054627],[-124.92100052792011,57.9624163967325],[-124.92129815023966,57.962502927242845],[-124.9215782265353,57.96261174805779],[-124.92182741470002,57.96269227755308],[-124.9218517735711,57.96250628191365],[-124.92179558327582,57.96232860831615],[-124.92174150643548,57.96215095180997],[-124.9217001075873,57.961973397809096],[-124.92165662841445,57.961794705365456],[-124.92162160122851,57.96161608127538],[-124.92163308999609,57.96143671166898],[-124.92173940047223,57.96126708183929],[-124.9219233711049,57.96111602596594],[-124.92211777585094,57.96096954076055],[-124.92231013056634,57.96082079546266],[-124.92243737165828,57.96065806418777],[-124.92245945254967,57.96047765866534],[-124.92245403441243,57.96029815264308],[-124.92244439070795,57.96011861251419],[-124.92244956885374,57.959938070532814],[-124.92253269503435,57.95976600980898],[-124.92275212226942,57.95963094249711],[-124.92302983771722,57.95952662977993],[-124.9233157456184,57.959431355748706],[-124.92359755504746,57.959331561497194],[-124.92386899189383,57.9592249531535],[-124.92413421738287,57.959113807626466],[-124.92440152194726,57.95900380000266],[-124.92466264719805,57.958888133860704],[-124.92484227269554,57.95874040440603],[-124.92489174213571,57.95856246302114],[-124.92490324644669,57.958381972337314],[-124.9249821646275,57.95820875493124],[-124.92517446179131,57.958061127315744],[-124.92540017556432,57.95792722834981],[-124.92557780915739,57.95777499552442],[-124.9257177338667,57.95761124239324],[-124.9258869781484,57.95745669838003],[-124.92607299405286,57.957306775786705],[-124.92626112111762,57.9571568699675],[-124.92644502140863,57.957006929893126],[-124.92662059786052,57.9568524360686],[-124.92678356121411,57.95669559727792],[-124.92694236203728,57.95653648156478],[-124.92709485573243,57.956376193324076],[-124.92724523553436,57.95621588794201],[-124.92739145290952,57.95605330568349],[-124.92753133129713,57.95589067232383],[-124.92766704734983,57.95572576212048],[-124.92780903588124,57.955563145513516],[-124.92795732882992,57.95540170110687],[-124.92811400667715,57.95524256723402],[-124.92827068319737,57.9550834332039],[-124.9284294709108,57.95492431599199],[-124.92858195172043,57.9547640263248],[-124.92886338977092,57.954601407534476],[-124.92898558933896,57.954465550118236],[-124.92915134802041,57.954284055580274],[-124.9293252035254,57.954114963823706],[-124.92942857932798,57.95397222517965],[-124.92959977664354,57.95382217950322],[-124.92975794656304,57.95368436700792],[-124.93007291507763,57.95353098809931],[-124.93043689359843,57.95351147544128],[-124.9303517724571,57.953310021104],[-124.93031463135176,57.95313026258825],[-124.93029861470231,57.95295067355616],[-124.9302847106059,57.9527711015023],[-124.9302686942525,57.95259151253482],[-124.93025267805217,57.9524119235997],[-124.93023666200493,57.95223233469672],[-124.93022061418714,57.9520538671971],[-124.9302024860962,57.95187426141111],[-124.93018647051794,57.95169467260429],[-124.93017045509275,57.95151508382972],[-124.93015655213983,57.951335512035406],[-124.93014264931979,57.951155940273736],[-124.9301308589316,57.9509763854932],[-124.93011692444153,57.95079793516679],[-124.9301030220097,57.95061836350308],[-124.93009545651708,57.950438842719215],[-124.93009637205733,57.950258268396155],[-124.93011415365166,57.9500789510669],[-124.93016144256838,57.94990211378067],[-124.93022985332753,57.94972544598085],[-124.93028981456813,57.94954871039563],[-124.93034135832676,57.94937078566853],[-124.93040551095943,57.949195205355345],[-124.93048441640394,57.94902086501201],[-124.93056965765494,57.94884657547861],[-124.93065067377584,57.948672252042485],[-124.93072957698521,57.94849791165042],[-124.93081270376305,57.94832360511906],[-124.93089371762935,57.9481492816317],[-124.93096420198859,57.947973752085254],[-124.93101362827413,57.94779581045934],[-124.93103140432724,57.947616493474555],[-124.93101749870307,57.94743692251039],[-124.93100359321178,57.9472573515788],[-124.93101503281713,57.94707798389444],[-124.93106023354335,57.94690000855085],[-124.9311075459019,57.946722050158264],[-124.93112532099914,57.94654273336446],[-124.93110507920292,57.94636311181514],[-124.93107424555657,57.94618452699463],[-124.93103918816304,57.94600590833289],[-124.93099776317744,57.945828360255845],[-124.9309542584794,57.94564967390023],[-124.9309086103075,57.94547209199166],[-124.93086510644564,57.94529340567406],[-124.9308237149673,57.945114736313535],[-124.93078865976207,57.944936117787606],[-124.93077050048866,57.94475763479272],[-124.93076715686725,57.944578149035074],[-124.93074691784054,57.94439852780396],[-124.9306885687468,57.944221965784685],[-124.93061329301814,57.94404638961026],[-124.93052102707043,57.943874041974524],[-124.93038844458343,57.94370810054001],[-124.93023880863741,57.94354763023648],[-124.9300764069722,57.94339042218034],[-124.92989909591604,57.94323758073203],[-124.9296983323718,57.94309240209092],[-124.92947830824635,57.94295604142505],[-124.9292432792209,57.94282741119995],[-124.92900185239984,57.94270097239915],[-124.9287625390292,57.942574550148095],[-124.92853180240787,57.94244370994151],[-124.92832247325424,57.94230294689226],[-124.92813451951615,57.94215338246441],[-124.92794227971993,57.942006026546835],[-124.92772866766067,57.94186747138132],[-124.9274915396497,57.94173882122947],[-124.9272350552773,57.94162235266639],[-124.9269721411633,57.94150919670302],[-124.9267134841696,57.941394952881815],[-124.92646132413877,57.941275152804394],[-124.92620705396976,57.94115533525477],[-124.92595272133855,57.94103775994956],[-124.92570056612821,57.940917958478316],[-124.92546124315514,57.94079265189583],[-124.9252370244264,57.94065625051687],[-124.92507033655173,57.94050236685972],[-124.9250479511058,57.940324971219816],[-124.92509742740515,57.940145911868],[-124.9250983346363,57.93996646089754],[-124.92505486476345,57.939787773722486],[-124.9250050282613,57.93961015683389],[-124.92496325893897,57.93937203788522],[-124.92495398848503,57.93925307209509],[-124.92501395782504,57.93907634083617],[-124.92507181498308,57.93889959255486],[-124.9251317832053,57.93872286130869],[-124.92519175086373,57.93854613006845],[-124.92525382954678,57.938369415859675],[-124.92531379606766,57.93819268463037],[-124.92537587359338,57.93801597043046],[-124.92544425315782,57.93784042865521],[-124.92552107827974,57.937664954962315],[-124.92559998217465,57.93749061963038],[-124.92568099686724,57.93731630130254],[-124.92576201080854,57.937141982957336],[-124.9258409124886,57.93696764757883],[-124.92591562247546,57.93679215680368],[-124.92599033176484,57.93661666601917],[-124.92606923128365,57.936442330601864],[-124.92615235301243,57.93626802919231],[-124.92623125104828,57.936093693743],[-124.9262954322471,57.93591699651529],[-124.92633641901404,57.93573899084955],[-124.92634998881196,57.935559642752146],[-124.92633822142751,57.93538009059088],[-124.92631167427872,57.935200419402776],[-124.92627453835253,57.935021784547565],[-124.92623103657864,57.934844220035956],[-124.92618331245382,57.9346666215219],[-124.92613347740891,57.934489006012555],[-124.9260857541958,57.93431140752994],[-124.92604439751933,57.93413273875323],[-124.92600937525839,57.93395412103753],[-124.92598916468009,57.93377450109465],[-124.92600273542544,57.93359515340312],[-124.9260542455685,57.93341835467403],[-124.92610789855829,57.93324045162183],[-124.92614047016124,57.933061257121985],[-124.92616456430262,57.93288311595208],[-124.92617816591732,57.93270264706331],[-124.92617273402922,57.93252314645869],[-124.92615674594062,57.93234356083282],[-124.92612383605292,57.932164960494084],[-124.92605916193038,57.93198946903505],[-124.92594788138838,57.93181921000049],[-124.92581532955272,57.93165438747051],[-124.92570613026771,57.93148526665623],[-124.92562031529887,57.93131072627175],[-124.92553446908111,57.93113730720914],[-124.92542741578262,57.93096708193415],[-124.92528213814549,57.930804399575116],[-124.9251198122422,57.930647187590274],[-124.92496388525795,57.930487783834685],[-124.92481221393564,57.930327292643845],[-124.92467967233729,57.930162469242795],[-124.92456414913941,57.92999329665435],[-124.92445284919748,57.9298241580719],[-124.92433307378192,57.92965607261061],[-124.92422177587756,57.929486933895],[-124.92416984588341,57.92930930157632],[-124.92417286834888,57.92912986969937],[-124.92416533549024,57.92895035264388],[-124.92415780270355,57.92877083562177],[-124.92421564802956,57.9285940896266],[-124.92432399711555,57.92842335931819],[-124.92444913715119,57.92825612928219],[-124.92459103587622,57.9280935208113],[-124.92475180412794,57.92793555088282],[-124.92493348860047,57.92778447913891],[-124.92513608914176,57.92764030549064],[-124.92534492491886,57.92749954665077],[-124.92555587010288,57.927358804524964],[-124.9257772083454,57.92722375387493],[-124.92601312951842,57.92709555001374],[-124.92625739681603,57.92697077781165],[-124.92650370940855,57.926848264864525],[-124.92675209932595,57.926726889819946],[-124.92700048763993,57.92660551432773],[-124.92725514313582,57.926486432049344],[-124.92752009573806,57.92637640496762],[-124.92776016352109,57.92625047478631],[-124.92791879968055,57.9260924843572],[-124.92804602686482,57.925925268335796],[-124.92821722986154,57.92577074350953],[-124.9283988899538,57.92561966738434],[-124.92858684923351,57.92546976329214],[-124.92878523352655,57.925324429162224],[-124.92899612169687,57.92518480325112],[-124.92922786128007,57.92505431736312],[-124.92948457813236,57.924936369319276],[-124.92975987595598,57.92483315078694],[-124.93005986406175,57.92475256186564],[-124.93038834983831,57.92470921367639],[-124.93071680297204,57.92466698601835],[-124.93103716272664,57.92461235508995],[-124.9313576808823,57.924552116699765],[-124.93167404010057,57.92448960101761],[-124.93199439695348,57.92443496779817],[-124.93232284588855,57.92439273619369],[-124.93265513376518,57.92436399366599],[-124.93299148365449,57.92434089081139],[-124.93332578594237,57.924315527532755],[-124.9336619124041,57.92430027236104],[-124.93399960900959,57.924304095996206],[-124.93433890805046,57.924325877087114],[-124.93462445251714,57.924381996930954],[-124.93466391184182,57.9241815471981],[-124.93457750010786,57.92402719802298],[-124.93426550336618,57.92393609712288],[-124.93408599731158,57.92378885417946],[-124.93394288429164,57.92362395669463],[-124.93371013515782,57.923493111168206],[-124.93342136321756,57.92340219414429],[-124.93311749931925,57.92332237157889],[-124.93282661938075,57.9232314363817],[-124.93254223220829,57.92313494459977],[-124.93226436971601,57.92303177493883],[-124.93199725344657,57.92292196127875],[-124.93173442388019,57.92280993826702],[-124.93146951702964,57.922696776486454],[-124.93120451616544,57.92258697820254],[-124.9309244550596,57.92248715288538],[-124.93064225286105,57.9223884313864],[-124.93037732037203,57.92227638882057],[-124.93011670652722,57.92216101563002],[-124.92984957080398,57.922052319100644],[-124.92956088309475,57.921959151176914],[-124.92926132423142,57.92187711118193],[-124.9289531324223,57.921801730665486],[-124.92864056081251,57.92173192217417],[-124.92831692583069,57.92167996942936],[-124.92798206723901,57.92165147902137],[-124.9276404295607,57.92163863549571],[-124.92729882410062,57.92162466975979],[-124.92697455200474,57.92159514045044],[-124.92673729837507,57.92147546237037],[-124.92652818866341,57.921331335601835],[-124.926321159165,57.92118834686893],[-124.9261012754228,57.92105198376746],[-124.92585347494943,57.92093221912273],[-124.92558210703287,57.92082460147985],[-124.92529996337608,57.920724747505844],[-124.92501356798095,57.920625980219896],[-124.9247206179046,57.920535010556506],[-124.92441436435729,57.920466364677246],[-124.9240863003863,57.92042221697605],[-124.9237471066818,57.92039816720512],[-124.9234095745914,57.92038983227569],[-124.9230736073614,57.9204005761964],[-124.92273728662094,57.920423653922505],[-124.92240102972765,57.92044448813625],[-124.92206528670091,57.92044738019119],[-124.9217277223917,57.920440162332845],[-124.92139022253212,57.92043070095591],[-124.92105486559133,57.92042013448425],[-124.920717462621,57.92040730740864],[-124.92038005988083,57.920394479478816],[-124.92004480014717,57.92038054647107],[-124.91970746229683,57.920365474175824],[-124.91937009249665,57.92035152235791],[-124.91903275517704,57.92033644835496],[-124.91869749645983,57.92032251195805],[-124.91836012741973,57.920308557583624],[-124.91802272636967,57.92029572368591],[-124.91768740384916,57.920284027409615],[-124.91734993868796,57.92027343446986],[-124.91701215081265,57.92027405398024],[-124.91667403992105,57.92028588593832],[-124.9163378455232,57.92030446218714],[-124.91599931397747,57.92033086972838],[-124.91566561738443,57.92033600548978],[-124.91533711205687,57.92030753487609],[-124.91500906012887,57.920263364833524],[-124.91468334605477,57.920211361868986],[-124.91435763288139,57.92015935811107],[-124.91403182347126,57.92011071754847],[-124.91370809307051,57.92006321472903],[-124.91338231773167,57.92001345125384],[-124.91305862139649,57.91996482553218],[-124.91273275051608,57.919918424461144],[-124.91240489960536,57.919867520051284],[-124.91207717933078,57.919812129522334],[-124.91174712235538,57.91976457025179],[-124.91142268377455,57.91974173112533],[-124.9111024993594,57.91979070797719],[-124.91078559339837,57.919872237096676],[-124.91046469336598,57.91987297804162],[-124.91014096951714,57.91982546656739],[-124.90981770154917,57.919762255715185],[-124.90948998600216,57.91970685882897],[-124.90915964050613,57.919669385105685],[-124.90882491194044,57.91963748263277],[-124.90849232701385,57.919604475283144],[-124.90816633467543,57.91956254837187],[-124.90786028208123,57.91948825787907],[-124.90758053401721,57.919380534537595],[-124.90726509719542,57.91933869195622],[-124.90692510926948,57.91934263256527],[-124.90658469746566,57.91936114955608],[-124.90624639584034,57.91937968300371],[-124.90590783291576,57.919407186206776],[-124.90558968942548,57.91945840977913],[-124.90529589214286,57.91954348049437],[-124.90501631221308,57.919647734545656],[-124.90476422093425,57.91982287451611],[-124.9044980519697,57.91990144108509],[-124.90423109778364,57.920006918977606],[-124.90396417477959,57.920111275019835],[-124.90365098143118,57.920209641830006],[-124.90324922040108,57.92008744602927],[-124.90302856095767,57.92005310313041],[-124.90249873092404,57.920268572616344],[-124.90222858022388,57.92012166105517],[-124.90195521021118,57.91986817077908],[-124.90175662608793,57.919728577662106],[-124.90159246680238,57.91956683615458],[-124.9014218463721,57.91940952756704],[-124.9012384005446,57.91925772098173],[-124.90105917718975,57.919105948984665],[-124.90089700302873,57.918948709433955],[-124.90073908395422,57.918790383213974],[-124.9005535006529,57.91863967969498],[-124.90036148909986,57.918492287656136],[-124.90017162229535,57.918343791461695],[-124.89997964654566,57.91819527759427],[-124.89978978274792,57.9180467809017],[-124.89959777721427,57.917899387853716],[-124.89940577318539,57.91775199455165],[-124.89921591389083,57.91760349711011],[-124.89902394569302,57.917454981980505],[-124.89882983578727,57.91730757047631],[-124.89863783778861,57.91716017615871],[-124.89845441416723,57.91700836609728],[-124.89829222709308,57.9168522450428],[-124.8982365119013,57.9166644781812],[-124.89820222921577,57.91646567265616],[-124.89787168598038,57.916364238304354],[-124.89757688875382,57.916267585311076],[-124.89693409167384,57.91623310305875],[-124.89673851615942,57.916136148127045],[-124.89633537335592,57.91606327010465],[-124.89606705813452,57.91592757738334],[-124.89595417970716,57.91574606549787],[-124.89576239846618,57.91559193935798],[-124.8955598368785,57.91544557472719],[-124.8953335698046,57.915315837114505],[-124.8950643082592,57.915212660737176],[-124.8947606578535,57.91513050876333],[-124.89444840292047,57.91505389264694],[-124.89415336102107,57.91496620276055],[-124.89391440718883,57.914837479014565],[-124.89361053144007,57.91476317368011],[-124.8932848286023,57.91471336134491],[-124.89295230085601,57.91468031537661],[-124.89261977369397,57.91464726857936],[-124.89228704898052,57.91462094886012],[-124.89195171900525,57.91461143052344],[-124.8916137502781,57.9146198348669],[-124.89127594666378,57.91462263176536],[-124.8909399226113,57.91463665855056],[-124.89060353450714,57.91466301898014],[-124.8902676421746,57.91467255880055],[-124.88992993726559,57.914671988334135],[-124.88959249719068,57.91466244647427],[-124.88925123416344,57.914639412764316],[-124.88888903478986,57.91461059558724],[-124.88875681860866,57.9145848176836],[-124.88859512320795,57.914342326236294],[-124.88853708485321,57.9141635087372],[-124.88828556038914,57.91403242673085],[-124.88815541274948,57.91386534481904],[-124.88799331512095,57.91370809042555],[-124.88781420480278,57.913555180179145],[-124.88761593860973,57.91340771770307],[-124.88740474766577,57.91326911972815],[-124.8871721581718,57.913140436991036],[-124.88692466651275,57.913016115699534],[-124.88667282345457,57.912896243949675],[-124.88642098200141,57.912776371738815],[-124.88615839229597,57.91266313872977],[-124.8858936940503,57.91254988756811],[-124.88564825417836,57.912427824257506],[-124.88543925254062,57.91228699833388],[-124.88524954242257,57.912136239213766],[-124.88504694063828,57.91199322306723],[-124.88478439377911,57.91187886612955],[-124.88447462876537,57.91179103143707],[-124.88430560817586,57.91172568517305],[-124.88432990513583,57.911475773920955],[-124.8843183458354,57.91129622260905],[-124.88427506953,57.911118648846],[-124.88419371331092,57.91094412088538],[-124.88408904783203,57.91077276239574],[-124.88395678682858,57.91060678058414],[-124.8838011173414,57.91044733203974],[-124.88363486593147,57.91028891622995],[-124.88347705585853,57.910130570985814],[-124.88334262326775,57.90996681360916],[-124.88329295662915,57.90979142932633],[-124.88327510621686,57.90961070386041],[-124.8831810649372,57.90943719072519],[-124.88306582529265,57.909266864552606],[-124.88296116961719,57.909095505476074],[-124.88291358252616,57.90892126021454],[-124.88297795409459,57.908743467592124],[-124.88298961094321,57.90856411131408],[-124.8829569600732,57.908384383483224],[-124.88290103428632,57.908206703642435],[-124.8828133944385,57.908031000972954],[-124.88270887655912,57.90785515668845],[-124.88260221650528,57.907680415960954],[-124.88251662250025,57.9075069735071],[-124.88246893955075,57.90733609229532],[-124.8825727975329,57.90717882002508],[-124.88279460418835,57.90702926664768],[-124.88285468688807,57.906853681652635],[-124.88290224346632,57.906673505264045],[-124.8830461836535,57.90651656894582],[-124.88324467716495,57.906370184209685],[-124.88338878116554,57.906207641042066],[-124.88352451145295,57.90604278439172],[-124.88366650324473,57.90588022329314],[-124.883846169677,57.90572807207743],[-124.88404890863528,57.90558060031897],[-124.88412780435561,57.905410780635755],[-124.88410998526966,57.90522893480069],[-124.88399468778628,57.90506085278656],[-124.88381583448093,57.904901210715224],[-124.88373848031723,57.90473456809728],[-124.88378583038222,57.90456111961376],[-124.88386067215089,57.90438565838659],[-124.88395031405061,57.904209199600075],[-124.88401919128131,57.90402135097369],[-124.88408324992423,57.903853650451666],[-124.88405274079875,57.90367282014376],[-124.88392670070286,57.90351137777168],[-124.88366428296993,57.903394777030485],[-124.88347248192258,57.90324512039353],[-124.88323986799182,57.903119796040386],[-124.8829558266272,57.90302095787794],[-124.88266311534227,57.90292989743451],[-124.88235979098378,57.90284099043882],[-124.88203724870696,57.902759772487386],[-124.88172749852296,57.902674174843014],[-124.88145605518291,57.90257768241498],[-124.88127612423006,57.90245504027414],[-124.88131119224572,57.90226915244514],[-124.88135690758683,57.90207998934255],[-124.88137278914131,57.90190066988874],[-124.88135495169435,57.901719945648374],[-124.88132860973748,57.90154139315717],[-124.8814432372952,57.90137636221979],[-124.88160417249082,57.90121508487461],[-124.88174826383603,57.90105254435253],[-124.88188612550188,57.900886586669394],[-124.88199247738197,57.90071587802946],[-124.88203989706928,57.90054018829296],[-124.88205158916286,57.90035971232758],[-124.88205695286754,57.900179183268136],[-124.88203466091302,57.900006273110904],[-124.88201273563702,57.899821028703315],[-124.88198642520473,57.89964135539632],[-124.88193051699373,57.8994636767622],[-124.88186613848933,57.89928704858697],[-124.88191559969555,57.89911361946141],[-124.88198411128236,57.89893810714726],[-124.88202319132759,57.898758983009735],[-124.88205805232889,57.89857982347631],[-124.88208233305637,57.89840169672083],[-124.88208977233828,57.89822230703145],[-124.8820423362845,57.89804357824323],[-124.88203501061565,57.89786406465827],[-124.88203401287389,57.897684604234506],[-124.88203512441731,57.897505161553354],[-124.8820299081533,57.89732566577758],[-124.88196128101355,57.89715012391593],[-124.88179717201712,57.896992847006395],[-124.88163942543049,57.89683450177255],[-124.88154324773565,57.89666321465674],[-124.88158865517163,57.89648414422018],[-124.88156221579248,57.8963089566261],[-124.88149781108532,57.89613345014388],[-124.88146517812395,57.895953724267336],[-124.8814388396801,57.895775172865534],[-124.88140195564408,57.89559653289558],[-124.8813248979522,57.89542092014306],[-124.88130488799227,57.89524242197456],[-124.88132287604776,57.8950631215189],[-124.8813514095741,57.89488390969479],[-124.88136728811818,57.894704591579426],[-124.88136636030478,57.894522889154665],[-124.8813864568217,57.89434360654371],[-124.88148017127384,57.89417167186171],[-124.88163283911689,57.89400359706742],[-124.88173261225529,57.89384068574226],[-124.88148740786374,57.89371525326581],[-124.88119042104942,57.89362864019093],[-124.88087368720926,57.893567656593795],[-124.88054584212492,57.893525645518466],[-124.88021093661952,57.89350824880728],[-124.87987342176544,57.89350765286214],[-124.87953303003813,57.89353282798339],[-124.87921810819743,57.89348194981283],[-124.87897295272678,57.89342605047428],[-124.87884502672004,57.893258980803125],[-124.87855150316206,57.89326884606072],[-124.87833186618641,57.89334774899412],[-124.8781697741556,57.89340694817373],[-124.87801996817929,57.893478587982614],[-124.87791659421099,57.89354949738473],[-124.87776970126613,57.89366490277256],[-124.87765795927956,57.89380415733959],[-124.87756312465712,57.89401309183887],[-124.87733353968245,57.89414238012607],[-124.87716528407967,57.89426657740188],[-124.87684915538863,57.89432671911706],[-124.87652298231347,57.89436995174895],[-124.8761946324207,57.894415408362484],[-124.87586839083693,57.89446088197545],[-124.87554218196864,57.8945052335011],[-124.87520813915339,57.894529329738035],[-124.87487412943423,57.89455230384753],[-124.87454199367923,57.894583143977734],[-124.87420972320535,57.894618468440356],[-124.87387383785007,57.89463357317964],[-124.87354183481263,57.894659925658],[-124.87321759629901,57.89470877450135],[-124.87289526456351,57.89476436815043],[-124.87257299906094,57.894817718442944],[-124.8722429009955,57.89485081328561],[-124.87190878577617,57.89487714383385],[-124.87157487182374,57.894896745806584],[-124.8712371764947,57.89490173441766],[-124.87089958200373,57.894903358303985],[-124.87056202113621,57.894903860045034],[-124.87022432560914,57.894908846087475],[-124.86988676468343,57.8949093461167],[-124.86955164969994,57.89489865030593],[-124.86921412254948,57.89489802734085],[-124.8688766628158,57.89489516094237],[-124.86853933798484,57.89488780853322],[-124.86820459452683,57.894864775155455],[-124.8678744745091,57.89482832134043],[-124.86754438887327,57.89479074541998],[-124.86721430389655,57.89475316868246],[-124.86688642997692,57.89471224521296],[-124.8665586243136,57.89466907836163],[-124.86623085318364,57.89462478941721],[-124.86590743619719,57.89457605044614],[-124.86558194474804,57.89452617143458],[-124.86525859706983,57.89447518831731],[-124.8649373931823,57.89442310111031],[-124.86461408109207,57.89437099514605],[-124.86429073605818,57.89432000968673],[-124.86396739190037,57.89426902344492],[-124.86364187181962,57.89422026099377],[-124.86331846166236,57.89417151575501],[-124.86299294326577,57.894122751722264],[-124.86266739182567,57.89407510818283],[-124.86234187510648,57.89402634256335],[-124.86201629141814,57.89397981872295],[-124.86169070853477,57.893933294088555],[-124.86136505860497,57.89388901123216],[-124.86103730038094,57.893844709539536],[-124.86070947503828,57.89380264961338],[-124.86038161647348,57.893761710167375],[-124.86005158163948,57.89372299442915],[-124.85972151351002,57.89368539915968],[-124.85939144604,57.893647803073485],[-124.85906134523536,57.893611327455446],[-124.85873121106668,57.89357597230541],[-124.85839883242107,57.89354508339338],[-124.85806393699626,57.89352763097887],[-124.85772686477435,57.893512402197224],[-124.85738979282523,57.89349717256252],[-124.85705472802609,57.89348532403247],[-124.85671724782634,57.893483548107234],[-124.85638129744213,57.893500851272414],[-124.85604544900049,57.89351478973803],[-124.85570786630255,57.893516375106586],[-124.85537038588801,57.893514595767584],[-124.8550330078473,57.89350945172167],[-124.8546955957748,57.89350542810484],[-124.85435780829953,57.89351373775296],[-124.85401889391653,57.89355904890255],[-124.8537449660543,57.89347930201559],[-124.8534935985415,57.89335152100626],[-124.85326152143223,57.893213811478255],[-124.85304631813042,57.89307624691335],[-124.85285254824447,57.89292765091055],[-124.85268429295026,57.89277254504597],[-124.85254583836878,57.892608723208056],[-124.8524307547031,57.89243949480565],[-124.85234325962321,57.89226489626117],[-124.85219412681141,57.89210546837159],[-124.85198539741457,57.89196347167007],[-124.85176401593625,57.8918213655307],[-124.85153413195793,57.89168142883697],[-124.85128465331826,57.89156151105198],[-124.85100656217243,57.89148060102336],[-124.8506782550054,57.89145533570948],[-124.8503280027717,57.89145791947974],[-124.84998220817133,57.891452689801476],[-124.84964726672374,57.891437458816306],[-124.84931246267722,57.89141774186922],[-124.84897800190592,57.89138681128253],[-124.84864544478559,57.891362625772814],[-124.84830625253909,57.8913484762192],[-124.84797249490755,57.89136353381456],[-124.84764427411714,57.89140443476281],[-124.84731598392939,57.89144757746252],[-124.84697960082215,57.89147943350333],[-124.84664380130093,57.891492226946895],[-124.8463202991207,57.89144792567891],[-124.84603426514995,57.89135123426787],[-124.84580845122396,57.89121693070985],[-124.84559549865703,57.891076008834744],[-124.8453889431525,57.890932898951974],[-124.84518456691019,57.89078756450648],[-124.84498012342446,57.89064447232483],[-124.84476714278048,57.8905046704861],[-124.84454548732332,57.890372644057535],[-124.84426582707245,57.89027488258632],[-124.84394724467832,57.89020818667848],[-124.84376175416064,57.890066378799396],[-124.84362559500123,57.889898081354026],[-124.84352767147341,57.889721143335755],[-124.84346552974523,57.88954675927616],[-124.84343097529111,57.88936700700935],[-124.84340274754028,57.889187309730346],[-124.84335550657224,57.88900856885944],[-124.8432786054193,57.888834056587584],[-124.84318476596307,57.88866164025829],[-124.84308456664566,57.8884902901904],[-124.84298651145085,57.88831783713035],[-124.84291172215212,57.888143343098655],[-124.84282213801626,57.88796984201998],[-124.84269224782791,57.88780384152321],[-124.84257507996792,57.88763570838591],[-124.84246856007434,57.88746430303336],[-124.84242336542066,57.8872878230324],[-124.84241204791614,57.88710715134706],[-124.84220936423397,57.88697640779456],[-124.84194487538495,57.88686643616875],[-124.84176611436723,57.88671234703263],[-124.84161497421532,57.88655176859112],[-124.84148295109901,57.88638687008034],[-124.84135314130785,57.88621862600469],[-124.84124237924178,57.88604830448638],[-124.84120344881146,57.88587412193751],[-124.84128062951581,57.885696463876656],[-124.84140388773893,57.885529301008795],[-124.84159413620085,57.885378423053105],[-124.8416920891802,57.885211039775655],[-124.84171033011643,57.88502950401678],[-124.84169476511505,57.88484991726627],[-124.84170450270899,57.88467055072378],[-124.84176283983952,57.88448824239217],[-124.8417618619259,57.88431439052606],[-124.8415745072094,57.884165834498184],[-124.84140426355474,57.88400957616616],[-124.84129350775677,57.88383925507859],[-124.84121030127979,57.88366468747992],[-124.84120739005166,57.88348521105847],[-124.84121747477678,57.88329463211972],[-124.84098616305955,57.8832040142526],[-124.84064172330433,57.883157273436574],[-124.84038372936621,57.883042869164406],[-124.84015369946282,57.882910762966155],[-124.8399407804935,57.88277095452326],[-124.83972357714129,57.88263335153608],[-124.8395106613382,57.88249354244506],[-124.83931907318288,57.88234606802345],[-124.83914456117054,57.882192012856784],[-124.83898283924367,57.882033582766354],[-124.83884234081336,57.88187085137368],[-124.83874010555233,57.88169835957753],[-124.83862933401463,57.881529157944975],[-124.83845901071685,57.88137626006762],[-124.83824185542966,57.88123753359511],[-124.8380247017428,57.88109880678828],[-124.8378117663113,57.880960116465964],[-124.83759243824585,57.88082361311337],[-124.83735818044282,57.88069258682516],[-124.83708949865971,57.88058369069684],[-124.83680367487139,57.88048361674861],[-124.83650675666823,57.88040139026838],[-124.83617167634668,57.880393974405244],[-124.83586473211716,57.88036325088841],[-124.83563065659017,57.8802266153046],[-124.83535984016218,57.88011881855668],[-124.83506524444239,57.880029879761224],[-124.83478572033941,57.87993097815845],[-124.83452354978041,57.879816525994556],[-124.83427634692062,57.87969547501163],[-124.83404214240382,57.87956332177758],[-124.8337581995596,57.879471108699],[-124.83344187018153,57.8794032856097],[-124.83311634442184,57.87936005559709],[-124.8327841123097,57.87932910320129],[-124.83245430193729,57.87928807711794],[-124.8321443011279,57.87922030644027],[-124.83184318661857,57.87913803266594],[-124.83154425124384,57.879053534204076],[-124.8312518507035,57.87896236305331],[-124.83095067057144,57.87888232980321],[-124.83062041335042,57.878855875582595],[-124.83028590534673,57.878830504746524],[-124.82998255042956,57.878752693308776],[-124.82971608172598,57.87864155852848],[-124.82951512441426,57.87859380710402],[-124.82934121149911,57.878354505402676],[-124.82927082616708,57.87817667881224],[-124.8292320987309,57.87799800914073],[-124.82922717175812,57.87781739370287],[-124.82926222970646,57.87763937317289],[-124.82931626047042,57.877461519563184],[-124.82939133703661,57.877284972651466],[-124.82949157075336,57.87711313325845],[-124.82962525428648,57.87695056051367],[-124.82979249185287,57.87679389053778],[-124.82997019874571,57.8766395555608],[-124.83014997741547,57.87648636015942],[-124.83036186325765,57.87631774484777],[-124.83046128888162,57.876171693814605],[-124.83056569601771,57.87600101211818],[-124.83066381292046,57.875829153545155],[-124.830759855721,57.87565615515224],[-124.83086007885652,57.875484315016415],[-124.83095193867457,57.87531015825079],[-124.8310500520143,57.87513829951502],[-124.83117957544415,57.87497344599386],[-124.8313322507164,57.87480991726409],[-124.83149954126857,57.874651002976165],[-124.83168759690557,57.87450236487086],[-124.83191911805565,57.874379903966286],[-124.83223971464358,57.874308694605546],[-124.83251884638626,57.8742146895074],[-124.8326757286424,57.87405119635011],[-124.83272970337511,57.87387446326605],[-124.83276056001664,57.873695284301505],[-124.83278298473131,57.87351603140717],[-124.83280122819363,57.873335620310066],[-124.83282790303362,57.87315528319717],[-124.83286715537565,57.87297729954715],[-124.83293163225899,57.87280178026779],[-124.83302762216955,57.87262990203043],[-124.83313836614857,57.872458153138034],[-124.8332385351753,57.8722874330292],[-124.83331354829627,57.872112006097254],[-124.83336969455516,57.871933049079445],[-124.83340483165718,57.87175166477564],[-124.8334082472115,57.87157336707358],[-124.83335457871037,57.8714001767234],[-124.83320785567385,57.871236264471],[-124.8331083505672,57.87097743381753],[-124.8329652429846,57.87090103447356],[-124.83276738142106,57.870754618174296],[-124.83254595380619,57.870620331952615],[-124.83232031229353,57.8704860083887],[-124.83210749265345,57.870346189203204],[-124.83190535233256,57.87020197720818],[-124.83172449942211,57.87005122248151],[-124.8315734689537,57.86989063539397],[-124.8314394753136,57.869724589992785],[-124.8313351992471,57.86955207615332],[-124.83123520908926,57.869377356790025],[-124.83109458252507,57.869221346834955],[-124.83080022137638,57.869127914598124],[-124.83053174552612,57.86901564277953],[-124.83035294180507,57.86886714739477],[-124.83021045697653,57.86870326931806],[-124.8300594732046,57.86854155948567],[-124.82989781327412,57.86838424182958],[-124.82973404708339,57.86822690546536],[-124.82957024741202,57.8680706901728],[-124.82940223391323,57.86791443761888],[-124.82923207936551,57.867759287580114],[-124.82905764134087,57.86760634274731],[-124.82887898959892,57.86745336060841],[-124.82869823174991,57.86730035970019],[-124.82850890565155,57.867151769330576],[-124.82831104622426,57.867006468214726],[-124.82809822623867,57.86686776436233],[-124.82787687302195,57.86673234966098],[-124.8276490941269,57.866600242637006],[-124.82741281696147,57.86647030343661],[-124.82717432916623,57.86634370899203],[-124.82693159305457,57.86621819821842],[-124.82668664627178,57.86609603216726],[-124.82641381462396,57.86598932144218],[-124.82611060608359,57.86591038096093],[-124.82578973494799,57.8658570796185],[-124.8254623674554,57.86580932791195],[-124.82514813531544,57.86574598964508],[-124.82484489639938,57.86566816754308],[-124.8245460836355,57.86558365453292],[-124.82424720220239,57.86550138334596],[-124.82394403714537,57.865421316723655],[-124.82364305086944,57.86533902556439],[-124.82333774593013,57.86526006018362],[-124.82303012458779,57.86518780292214],[-124.82271361903791,57.865130046516676],[-124.8223859812839,57.8650912572177],[-124.82205167121634,57.86506362356156],[-124.82171739671934,57.86503486782396],[-124.82138758321392,57.86499829989074],[-124.82105777034894,57.86496173114139],[-124.8207280985617,57.86492067660831],[-124.82040731371333,57.86486511985676],[-124.8200883562,57.8648185509577],[-124.81975064270843,57.86483237877739],[-124.81941858487936,57.86480027224198],[-124.81908642214228,57.86477152860273],[-124.81874877904075,57.86478311139629],[-124.81841461181826,57.86481827683032],[-124.81811704035877,57.86489638557482],[-124.81784176943445,57.865002730672],[-124.81752779356192,57.865066112171846],[-124.81719776711878,57.86510355450325],[-124.81686384217713,57.865130867365565],[-124.81653181277693,57.86516492558327],[-124.81621179299154,57.86521927782032],[-124.81589173702892,57.86527475053171],[-124.81556177765829,57.865309946331095],[-124.81524997337766,57.865371098755276],[-124.81491228843902,57.865383793061376],[-124.8145730958088,57.865377406639745],[-124.81424107289197,57.865344165924576],[-124.8139202586946,57.8652897147501],[-124.81359098036133,57.865236308874636],[-124.81326384572587,57.86518179974511],[-124.81293892549051,57.86512394489713],[-124.8126183978585,57.86506052067598],[-124.81231072799417,57.86499048112714],[-124.81201387930874,57.86491156504431],[-124.81173853050848,57.864819381655366],[-124.81151278566252,57.86469175105],[-124.81132796760375,57.86453644685335],[-124.8111496501979,57.86437559272538],[-124.81094551479381,57.864231330949224],[-124.81068770530385,57.86411799259629],[-124.8103782935276,57.86403671742546],[-124.81005089055044,57.86399117036814],[-124.80972070771826,57.863966907172994],[-124.80938602702129,57.86395157534264],[-124.8090469191392,57.86394293236742],[-124.8087098833067,57.863935428635685],[-124.8083707402489,57.863927905174805],[-124.8080317037856,57.86391701713738],[-124.8076971307084,57.86389831734752],[-124.80736494936902,57.863870665710756],[-124.8070330171293,57.86383516458633],[-124.80670333496998,57.86379519658939],[-124.80637376011693,57.863751864066884],[-124.80604636445885,57.863706307169004],[-124.80571686224944,57.863660730550265],[-124.80538946817806,57.86361517204013],[-124.80505986083737,57.86357295750739],[-124.80473221923432,57.86353524603717],[-124.8044022929839,57.86350312100309],[-124.80407001073749,57.863478824859094],[-124.80373958695488,57.86346239548461],[-124.80340459256392,57.8634571397379],[-124.80306720586675,57.86346083407263],[-124.80272953395345,57.863473497435386],[-124.80239168354399,57.863491766118244],[-124.8020557261568,57.863516780331025],[-124.80171758964083,57.86354401718578],[-124.80138363162422,57.86357241238945],[-124.80105385208554,57.86360196597353],[-124.80072982279205,57.86364951549235],[-124.80041572227553,57.863716220228554],[-124.79999968202051,57.86380667905458],[-124.79968347154814,57.86387336306487],[-124.79961128552108,57.863889535129275],[-124.79936933156766,57.86394118658132],[-124.79904936893087,57.86399325500058],[-124.79871783415305,57.86401157143339],[-124.79837879973032,57.86400065879828],[-124.79803976550404,57.86398974529925],[-124.79770498198222,57.863977747790685],[-124.7973680913175,57.86396573039011],[-124.79702884281507,57.86396154172309],[-124.79668527220497,57.8639606777733],[-124.79635266839578,57.86394645345414],[-124.79603371257784,57.86390094817277],[-124.79573930075517,57.863813045069776],[-124.79545153507775,57.86371510745945],[-124.79514840976536,57.863636096614734],[-124.79483649760869,57.863568221061314],[-124.79451797748435,57.863509257363404],[-124.79419731513381,57.8634513950397],[-124.79387672558289,57.8633912894807],[-124.79357992813314,57.863312332403595],[-124.7933352162167,57.86318674163565],[-124.79309797760463,57.863025328350034],[-124.79286464215447,57.863005266407406],[-124.79263274048641,57.86313774901838],[-124.79241051094314,57.86329723646349],[-124.79220774884094,57.86344119849124],[-124.79201541396121,57.86358861960198],[-124.79181682749207,57.86373374057865],[-124.79161613214426,57.86387884213958],[-124.79141547123123,57.864022822186335],[-124.7912106300428,57.864165642424176],[-124.79099539441572,57.86430388168172],[-124.790759407423,57.86443183796856],[-124.79050059766983,57.86454837077831],[-124.79021714592771,57.86464449094333],[-124.78992137260045,57.86473040440752],[-124.78961531317266,57.86480837272552],[-124.78932164458972,57.864894304043396],[-124.78905668524028,57.865005170400046],[-124.78880822306319,57.86512740206095],[-124.78855143778182,57.865246192815],[-124.78831961536845,57.86537530451028],[-124.7882254391507,57.86555053208489],[-124.78804997358203,57.86569698010227],[-124.78780778984893,57.865820388807556],[-124.78754474649894,57.865936877630936],[-124.78728177373398,57.86605112347962],[-124.78701269363683,57.86615858377509],[-124.78673325521983,57.866260341276096],[-124.78645385142387,57.86636097696643],[-124.78618887331479,57.86647183777869],[-124.78594453485708,57.86659634519823],[-124.7857147665479,57.866726592998916],[-124.78549742476118,57.866863683255495],[-124.78528008139224,57.86700077317638],[-124.78505648620553,57.86713556255755],[-124.78483081806387,57.86726921109837],[-124.7846030769657,57.867401718787754],[-124.7843691201999,57.86753080463306],[-124.7841248050576,57.86765418761078],[-124.78387423804503,57.86777526989459],[-124.78362163428582,57.86789408998333],[-124.7833669575817,57.86801176910016],[-124.78311017170411,57.86812942846802],[-124.78284927776578,57.8682436850885],[-124.78258227695034,57.86835115594547],[-124.78229870386566,57.86844950208658],[-124.78200491766631,57.868537660047274],[-124.78170295357816,57.86861789152604],[-124.78134945901,57.868661760208],[-124.7810749278207,57.86874111997875],[-124.7808713307872,57.86890861148331],[-124.78088470931968,57.86908145560867],[-124.78081556315666,57.86926363774802],[-124.78069397910451,57.8694374883941],[-124.7805850399111,57.869611454854486],[-124.78058577133994,57.869784183240014],[-124.78065394862884,57.869957529738436],[-124.78073059362116,57.87012983224914],[-124.78081984922622,57.8703033718556],[-124.78091542879038,57.87047696936445],[-124.78101733240148,57.87065062476206],[-124.7811277041731,57.870823236102964],[-124.7812423650205,57.870993643516854],[-124.78135913465644,57.871164070165136],[-124.78148019343793,57.87133229286618],[-124.78160132586181,57.87149827300839],[-124.78180124522073,57.87164029979623],[-124.7820437207464,57.87177037852889],[-124.78223074262478,57.87192013763214],[-124.78239647042615,57.87207643106652],[-124.78254086771848,57.872240380154835],[-124.7826577558466,57.87240744216078],[-124.78276399711879,57.87257777140895],[-124.78286387958723,57.87274916400421],[-124.78295736693211,57.87292274120233],[-124.78304663941913,57.873096279812415],[-124.78313380485936,57.87326979911828],[-124.7832125033511,57.87344436254352],[-124.78328062689388,57.8736199508308],[-124.78334660694215,57.873796641084915],[-124.78341047970046,57.87397331206751],[-124.78347649720433,57.874148881078995],[-124.78353822701516,57.87432665403692],[-124.78359788569374,57.87450328648777],[-124.78365754493205,57.87467991894399],[-124.78372352860627,57.8748566092036],[-124.78379165708701,57.875032197484025],[-124.78387036231193,57.875206760836214],[-124.78396604081382,57.87537811453943],[-124.78408498058215,57.87554743758089],[-124.78420817364132,57.87571567781773],[-124.78432289953152,57.87588496218851],[-124.78440378943095,57.87605730214484],[-124.78439974320453,57.87624793306454],[-124.78440231069432,57.8764296518243],[-124.78454109700363,57.87657223804328],[-124.78482900493925,57.87666795804934],[-124.78514010306729,57.87676388912396],[-124.78546290059857,57.87682403579645],[-124.7857705087105,57.87689750201095],[-124.78602404221367,57.877013094157356],[-124.78626885574968,57.8771375789056],[-124.78655655557003,57.87724002271144],[-124.78676110163421,57.87737086885695],[-124.78682485195438,57.87755202383901],[-124.78693748708373,57.87772128705853],[-124.78706284425547,57.877888422996335],[-124.78720306787727,57.87805232957814],[-124.78734122068721,57.87821509558294],[-124.78745386012147,57.8783843584809],[-124.7875579956781,57.87855578698929],[-124.78765580765062,57.878727157835186],[-124.7877535844092,57.87889964988851],[-124.78785557845744,57.87907218030209],[-124.78795546523384,57.87924469146899],[-124.78804899218066,57.87941826624884],[-124.78813201495302,57.879590623762965],[-124.78800890066198,57.87974652373546],[-124.78778313130802,57.87988130026431],[-124.78755321606131,57.88001379551708],[-124.78732119093964,57.88014627118165],[-124.78709752499093,57.88028106581204],[-124.78688843468417,57.880421600851484],[-124.78669813664706,57.88056791480927],[-124.7865396542028,57.880773962366284],[-124.78642674563699,57.88094004843316],[-124.78638406095591,57.88108658631932],[-124.78630367928336,57.88122492940413],[-124.78660686752099,57.88137125614572],[-124.78679431659823,57.881509797794685],[-124.78699230875854,57.88164843527176],[-124.78720088024342,57.8817860472776],[-124.78741581443933,57.881922595346786],[-124.78763707528644,57.88205920070071],[-124.78786680733056,57.8821947612555],[-124.78809868550587,57.88232921937638],[-124.78833478211158,57.882463715498375],[-124.7885729887989,57.88259823040959],[-124.78881119718844,57.88273274491321],[-124.78905151569026,57.88286727819102],[-124.78928761907432,57.883001772697476],[-124.78952372414535,57.88313626680388],[-124.78975346955554,57.88327182425312],[-124.78998114422181,57.88340624090266],[-124.79020242309728,57.8835428422013],[-124.79042588409347,57.883677219800525],[-124.79065359963502,57.8838105141007],[-124.7908791723018,57.88394491013253],[-124.79110263810027,57.88407928665147],[-124.79132181651457,57.88421586703479],[-124.79153249054743,57.88435461301972],[-124.7916813357015,57.88451410751794],[-124.79183007415143,57.88467696564685],[-124.7920086930291,57.88482887895833],[-124.79219367491622,57.884979728192796],[-124.7923808027968,57.88512947506532],[-124.79256789619906,57.885280342955724],[-124.79275077398998,57.88543117236022],[-124.79292725564098,57.885584186692384],[-124.79309312395895,57.885739347743026],[-124.79324619836433,57.885898878955004],[-124.79337804438306,57.886062703921404],[-124.79349495164467,57.88623200130154],[-124.7936033895795,57.88640234342922],[-124.79370968394153,57.886573787650114],[-124.7938202324622,57.886744148769225],[-124.79394354160151,57.88691126067322],[-124.79407746692544,57.88707622548286],[-124.7942177912356,57.88723900496506],[-124.79436022542608,57.8874018034245],[-124.79450691411182,57.887563518688935],[-124.7946557127429,57.88772525291189],[-124.7948109105404,57.88788480174465],[-124.7949830869708,57.88804113934233],[-124.79514679409172,57.88819852166343],[-124.79520861092767,57.88831011823042],[-124.7953235595603,57.88854108382325],[-124.79535788351764,57.88872084838073],[-124.79539856994255,57.88889954894415],[-124.79544136551493,57.88907826860899],[-124.79548205272252,57.88925696921293],[-124.7955206674183,57.88943452949459],[-124.79555502901391,57.8896131729036],[-124.79558513745181,57.889792899443655],[-124.79560895562417,57.88997144751225],[-124.79562852049936,57.89015107871828],[-124.79564386789846,57.89033067179991],[-124.79565714248257,57.89050912457113],[-124.79566612772979,57.89068978174932],[-124.79567725780475,57.89086933677279],[-124.79568627911422,57.89104887275164],[-124.7956974093915,57.89122842784002],[-124.79571275755858,57.8914080211137],[-124.79573025065291,57.891586512229246],[-124.79575192585841,57.891766162793175],[-124.79577785499261,57.891944730271575],[-124.79580796635965,57.89212445719452],[-124.79584022283262,57.89230308195162],[-124.79587247961177,57.892481706733896],[-124.79590259186027,57.892661433735285],[-124.7959306312982,57.89284002042273],[-124.79595230818205,57.89301967118706],[-124.79596769416925,57.89319814349618],[-124.79597671742236,57.89337767988792],[-124.79597730471204,57.89355714002342],[-124.79597367396246,57.89373656204752],[-124.79596578923928,57.89391706722879],[-124.79595583127232,57.89409643210166],[-124.79594165510524,57.89427575886141],[-124.79592533386457,57.89445618784922],[-124.7959090483439,57.894635495599154],[-124.79589058183086,57.89481702684623],[-124.79585527827342,57.89499728426191],[-124.79577182381787,57.89516589027044],[-124.79546956776132,57.89524951900017],[-124.79513507238593,57.89528574833785],[-124.79480686778864,57.8953231553793],[-124.79447265848046,57.89535041289486],[-124.79413662701457,57.895368680311094],[-124.79380070304244,57.89538358307017],[-124.7934647428543,57.895399606251786],[-124.79312688902559,57.89540888185015],[-124.79279150384635,57.89540696301786],[-124.79245418948778,57.895399417865065],[-124.79211694724485,57.89538962931896],[-124.79177977717774,57.895377597380154],[-124.7914427153569,57.895362200780156],[-124.79110565381185,57.89534680332723],[-124.79077066562157,57.89533254544508],[-124.79043338837555,57.89532387390494],[-124.79009775173967,57.89532979717051],[-124.78976339472167,57.895361527941965],[-124.78944100648363,57.895414677036335],[-124.78913684171921,57.8954915446239],[-124.78884693433386,57.895584243583166],[-124.788581757517,57.895695112497265],[-124.78833516421278,57.89581848759558],[-124.78809897056016,57.895946443315076],[-124.78786481221579,57.89607666037166],[-124.78763479831527,57.8962091579814],[-124.78745693381856,57.8963600757134],[-124.7872873239136,57.896516676418834],[-124.78712818622958,57.896675615535884],[-124.78698370310815,57.89683805280249],[-124.78685598389968,57.89700400748509],[-124.78674921105906,57.897174639340896],[-124.78666553020601,57.897348846372466],[-124.78659865010383,57.897525449692246],[-124.78656759029404,57.89770350105021],[-124.78656809662358,57.897884083300426],[-124.78657074837616,57.898063563534876],[-124.78657761869445,57.89824308224524],[-124.78659081691909,57.898422658652045],[-124.78662296272594,57.898603529348996],[-124.78667834730376,57.898783490218904],[-124.78663488406818,57.89895357760138],[-124.78646096809112,57.899112381778984],[-124.78634374933307,57.89927955374926],[-124.78628948415002,57.89945739388924],[-124.78623521845405,57.89963523403991],[-124.78615785782317,57.89980949887689],[-124.78602282003084,57.900005669963036],[-124.78591625197238,57.90016957404193],[-124.78581357611515,57.90034360799175],[-124.78570882609694,57.90051650138506],[-124.78558741700039,57.90068251318916],[-124.78543043632342,57.90083922765271],[-124.78523148306667,57.900988829465966],[-124.7849887732836,57.901121207723406],[-124.78471547049614,57.90122077984535],[-124.78441164762702,57.90128530308506],[-124.7840831626337,57.901329411573],[-124.78374441961212,57.90136445272923],[-124.78340978608459,57.9014028953904],[-124.78308122636,57.901449243960656],[-124.78274644630005,57.90149217005477],[-124.78241373864373,57.90153623587049],[-124.78209132341921,57.901588246236855],[-124.78178534732078,57.90165386549124],[-124.7815370189572,57.90176375417643],[-124.78134622900498,57.90192127645245],[-124.78110786379987,57.90204920127646],[-124.78084432845084,57.902172408850355],[-124.78056853416012,57.90228316600236],[-124.78027484324122,57.9023601104763],[-124.77995743690497,57.902387486327534],[-124.7796181712667,57.902373161632674],[-124.77927323222723,57.902338595130196],[-124.77893680457626,57.9023018625577],[-124.77860910674246,57.90225623633713],[-124.77828591995069,57.902201677829176],[-124.77796058819305,57.90214822045575],[-124.77763496593485,57.90210373247685],[-124.77730646977196,57.902082771072365],[-124.77696785945143,57.902113309926726],[-124.7766337592128,57.90213491649455],[-124.77630555507744,57.90210498243634],[-124.77598022696938,57.90205152023078],[-124.77565933765726,57.90199136838621],[-124.77534274130595,57.901929012026024],[-124.77503062047725,57.901858844819806],[-124.77471395325308,57.90179872951789],[-124.77438615534808,57.90175645674709],[-124.77405835817956,57.901714183171194],[-124.77373289046724,57.90166520058493],[-124.7734050217202,57.90162516794841],[-124.7730727519517,57.90159070199328],[-124.77274266538748,57.90155401210818],[-124.7724126526333,57.90151507886402],[-124.7720847865989,57.9014750429836],[-124.77175699446744,57.90143276375583],[-124.77142687395921,57.90139719188652],[-124.77108987642747,57.90137837986015],[-124.7707547688749,57.90136631407679],[-124.77041736888864,57.901359834325255],[-124.77007982240848,57.90135783880048],[-124.76974212931377,57.90136032750124],[-124.76940476622822,57.90135272391418],[-124.76906987954024,57.901333926270745],[-124.76873281036836,57.90131735082138],[-124.76839122900665,57.901309705659244],[-124.7680434296268,57.90129863726729],[-124.76770551658952,57.90130784842225],[-124.76739784904488,57.90135995984483],[-124.76711017279409,57.901445903946566],[-124.76683245445967,57.90154988542016],[-124.76656076888226,57.90166289509903],[-124.76628915520472,57.90177366169731],[-124.7660072868047,57.901875359860306],[-124.76570505786339,57.90195443652237],[-124.76538450468183,57.90201315363604],[-124.76506206184261,57.90206512280069],[-124.76473151152213,57.90210692149045],[-124.76440310676743,57.902147617664525],[-124.76408473305342,57.902204108694555],[-124.76377424369849,57.90227749634229],[-124.76346989734577,57.902356548382535],[-124.76316551285467,57.902436721003426],[-124.7628592756507,57.902509024450396],[-124.76253682507486,57.90256098752809],[-124.76219501235202,57.902560054082066],[-124.76187144087831,57.90251778969105],[-124.76154609280816,57.902465413474424],[-124.76122733253774,57.90240524645059],[-124.7609108304805,57.90234061321965],[-124.76060302599265,57.902268208890725],[-124.76030621341543,57.90218244682006],[-124.76000943914448,57.90209556282708],[-124.75970615303044,57.90201422558128],[-124.75938939807344,57.90195743763823],[-124.75904977433927,57.901954273236356],[-124.7587176267332,57.9019803395851],[-124.75838721811776,57.90201763745305],[-124.75805677183584,57.90205605577045],[-124.75772639892187,57.90209223073395],[-124.75739006726813,57.90211713315108],[-124.75706172856867,57.902155568687235],[-124.7567452679914,57.90221766820004],[-124.75643280297086,57.90228653396851],[-124.75611837559978,57.902350894234466],[-124.75582222805669,57.90243673522538],[-124.75553832816982,57.90253502778872],[-124.75524628556573,57.902624270744916],[-124.75493596103381,57.90269203148035],[-124.7546113513292,57.90274507692452],[-124.75428677783391,57.902797000312844],[-124.75397237966075,57.90286023427879],[-124.75369265363909,57.90295968369424],[-124.75341081661581,57.9030591127858],[-124.75312076294726,57.90315173467984],[-124.75283485258042,57.90324663799832],[-124.75255508350305,57.90334720633244],[-124.75228563754227,57.90345460051953],[-124.75202440508892,57.90356880085601],[-124.75176727856258,57.90368640404311],[-124.75151225999274,57.90380402652508],[-124.7512223075594,57.90389328055179],[-124.75090978129045,57.90396325475034],[-124.75059725385907,57.904033228220605],[-124.75029501245129,57.904111148819965],[-124.75002551731635,57.90421965978813],[-124.74975394829596,57.904327029150416],[-124.7494356086955,57.90438124275178],[-124.74910733206755,57.90435348413701],[-124.74877746839563,57.90431000714338],[-124.74844768008604,57.90426428679922],[-124.74811778064853,57.904221929443494],[-124.74779010349519,57.90417622730585],[-124.74746020557005,57.90413386832521],[-124.74712997233584,57.90410159993384],[-124.746796995159,57.904088372413376],[-124.74645893980497,57.90410089348744],[-124.74612250800543,57.90412801003569],[-124.74576363424137,57.904195292666216],[-124.74541764105315,57.904255965973725],[-124.74515461600059,57.904233298744785],[-124.74498593144014,57.904102723013075],[-124.74487404198486,57.903914358176884],[-124.74478554580706,57.903720605671886],[-124.74471965696597,57.90354501213043],[-124.74469399956395,57.903365311342625],[-124.74466412335603,57.903185570812965],[-124.74463421002113,57.9030069515754],[-124.74461066289943,57.9028272707577],[-124.74460399196491,57.90264774905972],[-124.74460368696252,57.902467165789204],[-124.74453565427498,57.90229267376349],[-124.74442739270293,57.90212228890689],[-124.74431276632204,57.90195296558412],[-124.744227822919,57.9017794356308],[-124.744164086941,57.90160274079717],[-124.74410246098813,57.90142606585962],[-124.7440238854235,57.90125147429029],[-124.74393898236737,57.90107682301626],[-124.74387099270878,57.90090120964046],[-124.74381784426362,57.90072349302829],[-124.74377524320556,57.90054587592431],[-124.74374748299144,57.900366155614485],[-124.7437239043195,57.900187596394204],[-124.74365602958694,57.900008619286204],[-124.74365421974895,57.8999996292936],[-124.74356766118845,57.89981150297401],[-124.7434848728245,57.89963687157406],[-124.74340845062258,57.899461178608824],[-124.74334890358348,57.89928564488083],[-124.74331056240683,57.899106946444704],[-124.7432870240455,57.89892726612023],[-124.74326137663296,57.89874756591781],[-124.74321878043817,57.89856994899995],[-124.74315716388972,57.89839327418088],[-124.74308496423554,57.89821762107448],[-124.74299792568904,57.898044071099115],[-124.74293416435407,57.897868497620365],[-124.74292964897033,57.89768787541633],[-124.74291029426958,57.89750935637307],[-124.74283384161006,57.89733478472383],[-124.74273833205334,57.897162276338754],[-124.74263224002061,57.89699078958764],[-124.7425197465138,57.896821485540286],[-124.74239452412522,57.89665430441623],[-124.74226930284918,57.89648712320339],[-124.74215892161982,57.896317838862494],[-124.74207189173742,57.89614428862355],[-124.7420039197022,57.89596867519281],[-124.74194656882025,57.89579091888823],[-124.74189554577877,57.895613222378536],[-124.7418445232191,57.8954355258821],[-124.74179982838004,57.89525788919021],[-124.74176360773146,57.895079210985195],[-124.74173797021513,57.89489951120593],[-124.74171862260086,57.894720992505206],[-124.74169931266152,57.89454135257995],[-124.74168422096517,57.89436175255015],[-124.74166912941286,57.89418215255184],[-124.74165403800458,57.89400255258534],[-124.74164105573942,57.893822972583415],[-124.74163654704677,57.893642351092346],[-124.74161934703149,57.8934627312892],[-124.74153646918738,57.89329146358587],[-124.74139431623425,57.89312636516044],[-124.741353806662,57.892949889869605],[-124.74134082619244,57.89277031003408],[-124.74134475478603,57.892589768480285],[-124.74135922794063,57.89240932664726],[-124.74140740601334,57.8922303250879],[-124.74148932602391,57.892051642513216],[-124.74145288495826,57.89187969232486],[-124.74134614761859,57.89179119801359],[-124.74122165100763,57.89153990289449],[-124.74107099559014,57.891376967166025],[-124.74090960965619,57.89121953782505],[-124.74073971466343,57.89106427102612],[-124.74056131068791,57.89091116673588],[-124.74037228897588,57.89076020496585],[-124.74017890101238,57.89061368803734],[-124.7399769666977,57.89047045476156],[-124.73975364553608,57.89033599156778],[-124.73950242345126,57.89021584468907],[-124.73924905662129,57.89009679862927],[-124.73901075340545,57.88996892193657],[-124.73878743867107,57.88983445719185],[-124.73857481968322,57.889695607006495],[-124.73838151935661,57.88954684513289],[-124.73819462198735,57.88939590046872],[-124.73798407880805,57.889258190637754],[-124.7377242090002,57.88914468805779],[-124.73744061816824,57.88904666245031],[-124.73715925040017,57.88894529251232],[-124.73689509254818,57.8888339908363],[-124.73663526658909,57.88871936493415],[-124.73637547985653,57.888603617292354],[-124.7361091803704,57.888493415325996],[-124.73583640573013,57.88838763774847],[-124.73556141093344,57.888285203331115],[-124.73528220027399,57.88818272828969],[-124.7350050998086,57.88808027271146],[-124.73473443993251,57.887974512959204],[-124.73448324962894,57.887854356903375],[-124.7342428304396,57.88772757317177],[-124.73400241286978,57.887600789022564],[-124.73375548239689,57.887479550503336],[-124.73348916080442,57.88737046466847],[-124.73320126390077,57.88727575381836],[-124.73290900021748,57.88718548718685],[-124.73262543668532,57.887087451521424],[-124.73234835151378,57.88698499052944],[-124.73207559837229,57.88687920541152],[-124.73181576280386,57.88676569157821],[-124.73159034639865,57.886632316361585],[-124.73137140850486,57.88649451609899],[-124.73112020101345,57.886375475123906],[-124.73087121709737,57.88625309006713],[-124.73058450756385,57.88612361517365],[-124.73033546085487,57.885940662000046],[-124.73040626259454,57.88584263632559],[-124.73061819390995,57.885687633241965],[-124.73082180278375,57.885529185706496],[-124.73096855550969,57.88536795266755],[-124.73110905704125,57.885204416713734],[-124.73124119893265,57.88503855776849],[-124.73137958955803,57.88487500148714],[-124.73154094559204,57.8847183935531],[-124.73172323391918,57.88456647130921],[-124.73191173285713,57.88441797282025],[-124.73210026807502,57.884268352847215],[-124.73228462265475,57.88411757122871],[-124.73246686731562,57.883966769300244],[-124.7326407900331,57.88381252312632],[-124.7328021740122,57.88365479259576],[-124.73295726913166,57.88349588044531],[-124.73310611319268,57.8833346654584],[-124.73324870624828,57.883171147657144],[-124.73338497289862,57.88300756954043],[-124.73352775211977,57.8828384453023],[-124.73361371722861,57.882665415621375],[-124.73359430126278,57.88249026171217],[-124.73354751464764,57.88231372580493],[-124.73348597009021,57.8821370494813],[-124.73341599278953,57.881960292909824],[-124.7333439455532,57.88178239503225],[-124.73327611561818,57.881604537278626],[-124.73322300669481,57.881427941222825],[-124.73321428556079,57.88124840286403],[-124.7332815380553,57.881067344428686],[-124.73324518283735,57.88089427270806],[-124.73315182945076,57.88072290168067],[-124.73304368142094,57.880552511372976],[-124.73292280944318,57.88038424305483],[-124.73279135964243,57.88021699552785],[-124.73264929440244,57.88005188999541],[-124.73250079251537,57.879890087812264],[-124.73234589178027,57.87973046772045],[-124.73218459225163,57.87957302969654],[-124.7320127153723,57.87941661231179],[-124.73183443984665,57.87926237693469],[-124.73164758200181,57.879112545915305],[-124.73145214187474,57.878967119215446],[-124.73124811949624,57.878826096795244],[-124.73101623922904,57.87869826757225],[-124.73075872265686,57.878580287801505],[-124.73049473206389,57.878466732150635],[-124.73023288900661,57.87835207487013],[-124.7299839610319,57.8782296891657],[-124.72973932656285,57.87810510078911],[-124.72948603426002,57.877987158870276],[-124.7292133164945,57.877882490100816],[-124.7289341623998,57.877781124077046],[-124.7286485340912,57.87768418198872],[-124.72835643151805,57.877591663792806],[-124.72805984906104,57.87750695328608],[-124.72775882445544,57.87742892920576],[-124.72744688176569,57.87736201597047],[-124.72712838853894,57.87730176890431],[-124.72680545270035,57.87724820812657],[-124.72648033386619,57.87719686885579],[-124.72615502623377,57.87715113494367],[-124.72582083181177,57.87711877426477],[-124.72548878397406,57.87708531170647],[-124.72516784647544,57.877035130844796],[-124.72486250161819,57.87696042355338],[-124.72457033799523,57.87687013957609],[-124.72427825175838,57.87677761250772],[-124.72398612895593,57.87668620603604],[-124.7236983376497,57.87659147567936],[-124.72340173553275,57.87650787610893],[-124.7230592312018,57.876472063945975],[-124.72280731810292,57.87637655430729],[-124.72263111085077,57.8761628820057],[-124.72258512197185,57.87602672782757],[-124.72249386106334,57.87585761287493],[-124.72225314027528,57.87574314256131],[-124.7219762048694,57.875639539953056],[-124.7216821027254,57.8755447446065],[-124.72138585602563,57.8754510495926],[-124.72109593466193,57.87535741470231],[-124.72080375441394,57.87526824383223],[-124.72050509930604,57.87518349643161],[-124.72019981682776,57.87510765735955],[-124.7198901291022,57.87503738316815],[-124.71957611227803,57.874970431373995],[-124.71926205843062,57.87490460006902],[-124.71895022805256,57.87483542464355],[-124.71864709760516,57.87475848110376],[-124.7183527817231,57.87467040583605],[-124.71807145824697,57.87457236073856],[-124.71779021260254,57.874472072607226],[-124.71750245380676,57.87437732906924],[-124.71720369859332,57.87429593801069],[-124.71689628386247,57.87422119233477],[-124.71658879391445,57.87414868840206],[-124.71628138160634,57.8740739413171],[-124.71598266967598,57.87399142631942],[-124.71568836602138,57.87390334522906],[-124.71539839423433,57.87381194052304],[-124.71510842385501,57.87372053519376],[-124.71481630875861,57.87363023010665],[-124.71452197237554,57.87354326769234],[-124.71422549121966,57.87345740549045],[-124.71392682698247,57.8733737647084],[-124.71362816407202,57.87329012326344],[-124.71332946417344,57.873207602377185],[-124.71303080390771,57.87312395960588],[-124.71272996048393,57.87304253822399],[-124.712431302859,57.87295889412145],[-124.71214567691958,57.87286415954385],[-124.71186442145763,57.872764980287144],[-124.71158535200787,57.87266357841338],[-124.71129976881126,57.87256772082838],[-124.71100763340817,57.87247852870886],[-124.7107111686486,57.87239265877192],[-124.71041688981984,57.87230456616922],[-124.71012042777689,57.87221869493151],[-124.70982185931871,57.872132802604575],[-124.70952976921691,57.87204248606127],[-124.70925707311176,57.87194001948424],[-124.70901247120163,57.871817636261284],[-124.70878944813481,57.871680881290025],[-124.70855994966595,57.871548549469146],[-124.70829603685526,57.87143607183473],[-124.7079934941494,57.87134340724438],[-124.70760711492508,57.87117478107386],[-124.70739377246126,57.87094053933745],[-124.70730504621594,57.870761344376426],[-124.70723314375425,57.87058343442657],[-124.70718676497195,57.87039904290969],[-124.70724956146758,57.87022804965054],[-124.70741298575514,57.87007373623898],[-124.70761204621259,57.86992537675151],[-124.70780692830876,57.86977585483594],[-124.70798717088604,57.869622825752295],[-124.70817158876864,57.86947095858958],[-124.70834972079594,57.86931790860011],[-124.7085132135344,57.869161351549955],[-124.7086558212462,57.868998983699186],[-124.70878616669167,57.86882528085201],[-124.70888926626886,57.86864682718491],[-124.70892894581125,57.868473366045755],[-124.70885224829478,57.868312234710245],[-124.70864649142149,57.868164431456485],[-124.7084366364566,57.868013223347184],[-124.70834335097314,57.86784407962746],[-124.70831160736589,57.8676631958799],[-124.70821418521997,57.8674917687821],[-124.70810197301707,57.86732131961241],[-124.70798761587457,57.86715197112562],[-124.70788172814336,57.866981583225545],[-124.70779703147342,57.866808036318005],[-124.70773774050973,57.86663137138398],[-124.70767423520552,57.86645466551494],[-124.70757041981199,57.86628541917125],[-124.70739655988919,57.86613007288338],[-124.7072247703326,57.8659758680823],[-124.7070487673575,57.865821622123434],[-124.7068748347285,57.8656685176503],[-124.70670308791752,57.865513191037444],[-124.70653770319137,57.86535680448197],[-124.70637017394724,57.86520151846551],[-124.70619413957144,57.86504839270872],[-124.70600534689233,57.86489850739378],[-124.70585062010687,57.86473885893594],[-124.70571080016134,57.86457486899622],[-124.70557948783816,57.864408718532445],[-124.70546304355712,57.86423934787759],[-124.70537196517262,57.86406798081566],[-124.70534234632093,57.86388711756592],[-124.70534663716136,57.86370097641884],[-124.70532326348192,57.863522417170756],[-124.70521080636084,57.86335981471271],[-124.70504739034567,57.863207931990466],[-124.7048543198274,57.8630602467161],[-124.70464420002004,57.86291800307626],[-124.70442561426724,57.86277679824592],[-124.7042091373861,57.86263561360206],[-124.70400327541505,57.86249228885519],[-124.70378040292591,57.862353284382664],[-124.7035553862782,57.8622153802275],[-124.70338136870205,57.86206563537124],[-124.70328390626678,57.86189644805809],[-124.70323533452125,57.86171539988155],[-124.70319733770053,57.86153333322158],[-124.70313171652396,57.86135772677052],[-124.70297896917089,57.86120258091396],[-124.70271760022345,57.86108002310923],[-124.70241878928965,57.86100420599602],[-124.70208522217898,57.86095833180263],[-124.70177786901114,57.860885794637355],[-124.70147063299278,57.8608098931549],[-124.70114530393887,57.86076970490816],[-124.70081108298416,57.860742887998356],[-124.70048368677453,57.860701556353746],[-124.70015414546899,57.86066132451947],[-124.69981111066294,57.86064563477848],[-124.69949003774565,57.86060436247687],[-124.69921756792311,57.86049851291933],[-124.69896276978669,57.860369282420876],[-124.69870551766995,57.86025012166325],[-124.69842556898709,57.86017784476262],[-124.69809297280847,57.86022618284373],[-124.69775498485184,57.86024754935596],[-124.6974332328876,57.8602870193077],[-124.69711105361935,57.8603388217084],[-124.69680273093066,57.860416555482175],[-124.69648694861601,57.8604661759006],[-124.69614965623461,57.860467356698294],[-124.69580830491186,57.86046401051635],[-124.6954824125079,57.860501192038264],[-124.69514676077199,57.86051584538124],[-124.69480919593128,57.86052487119426],[-124.69447346599605,57.86054176524268],[-124.69413968737797,57.86056316393565],[-124.6937934990076,57.86057771044206],[-124.69343447322302,57.86059773788171],[-124.69312612817144,57.86055433199491],[-124.69287915639886,57.86044311186083],[-124.69263885763627,57.860321862597104],[-124.69240726125201,57.86019284735712],[-124.69218007527401,57.86005826715952],[-124.69195511480648,57.85992034371056],[-124.69173234094076,57.85978019822317],[-124.69150956873266,57.85964005238277],[-124.6912825061672,57.85950210712922],[-124.69100545780297,57.85928628040511],[-124.69081941229707,57.859241829358474],[-124.69056812494752,57.859133927206365],[-124.69014952950137,57.859170182973166],[-124.68988189643918,57.85910810345042],[-124.68955690651482,57.85905891734687],[-124.68924089177008,57.858994116721874],[-124.68896182914722,57.858897153636036],[-124.68870239461367,57.85878131654434],[-124.6884559160116,57.85865663402539],[-124.68821365303013,57.858531992622446],[-124.68797143070638,57.85840622959687],[-124.68773350208333,57.858278265323946],[-124.68750201319979,57.85814699942028],[-124.68728121705392,57.858011352310434],[-124.6870732205641,57.85787134484596],[-124.68687388793548,57.857724693096856],[-124.68668520883631,57.857574781496126],[-124.6865114361483,57.85742053050529],[-124.68635678359325,57.85726198180042],[-124.6862551962209,57.85709274123199],[-124.6861939928797,57.85691380526109],[-124.68611792454612,57.856738087199666],[-124.68603549716245,57.85656342788256],[-124.6859424579505,57.85639090686344],[-124.68584520586307,57.85621834417802],[-124.68573094335876,57.85605009968791],[-124.68555499651742,57.85589806925774],[-124.68535778707708,57.855751436352655],[-124.68518832016085,57.85559498318039],[-124.6851311814132,57.85542057341908],[-124.68511856013747,57.85523875269499],[-124.68507418045802,57.85506110435759],[-124.68501080096,57.85488438977012],[-124.6849411017201,57.85470761269405],[-124.68485443155338,57.8545340325385],[-124.68469343839236,57.85437654106389],[-124.68454305863821,57.854216911219034],[-124.68444156593435,57.85404542740836],[-124.68433796742255,57.85387392271053],[-124.68418969790358,57.85371431338763],[-124.68401170064305,57.85356113924542],[-124.68385711362167,57.85340146706794],[-124.68371957735866,57.85323635558218],[-124.68358621649472,57.85307240687522],[-124.68337404764503,57.852932352629004],[-124.6832087757959,57.85277706028389],[-124.68309672054889,57.85260659260002],[-124.68296344301928,57.85244040099545],[-124.68292110504161,57.85226501568563],[-124.68300723277453,57.85209202414787],[-124.68311438674283,57.8519203623652],[-124.68321100667276,57.851748596239176],[-124.68325511740275,57.85157182391105],[-124.68323825409674,57.8513910831959],[-124.68328447086289,57.85121433177945],[-124.68335807264079,57.851037851498255],[-124.68342535404048,57.850861308646046],[-124.68349048907668,57.85068586612569],[-124.68365817816304,57.85053050549413],[-124.68386748739708,57.85039013705508],[-124.68410585570624,57.85026239317241],[-124.68431925736321,57.85012542930779],[-124.68449322092977,57.84997125141822],[-124.68472168539482,57.849764898402334],[-124.6847052927829,57.849510139072244],[-124.68445245116193,57.849388751371144],[-124.68419087201254,57.84927624932417],[-124.68392933359041,57.849162625589784],[-124.68368285535755,57.84904017782097],[-124.68345354379403,57.848908926958245],[-124.68323070990958,57.848773253548984],[-124.68300994487613,57.84863872183048],[-124.6827806772985,57.8485063486766],[-124.6825449352391,57.84837839727909],[-124.6823091947807,57.84825044548036],[-124.68206916466622,57.84812469389753],[-124.68182269926763,57.84800224281075],[-124.68156550732367,57.84788529278326],[-124.68126930317491,57.84779935942466],[-124.68094652841779,57.84775017374238],[-124.68068071908834,57.8476387443759],[-124.68043422211278,57.847517411959444],[-124.6801942421996,57.84739053590392],[-124.67995851590365,57.847262580067174],[-124.67972068485608,57.84713460291665],[-124.67947637920628,57.84701104733576],[-124.67921916200679,57.84689521407059],[-124.67894029339799,57.84679598879586],[-124.67864410379886,57.846710049685896],[-124.67834136060779,57.846630774207284],[-124.67802535136525,57.84656931130532],[-124.67771160685997,57.84650338387734],[-124.67741319798301,57.84642078464931],[-124.67712360928871,57.84632705676936],[-124.67691786070327,57.84618593486764],[-124.67672713332259,57.846037111128915],[-124.6765363680666,57.84588940831902],[-124.67632212020132,57.84575044406507],[-124.6760324605792,57.84565895623188],[-124.6757097503982,57.84560863676812],[-124.67542442411583,57.84551382603883],[-124.67515646179291,57.845404607262196],[-124.67489497748454,57.84529096621065],[-124.67462916395924,57.845180646206785],[-124.67434821389062,57.845081390482974],[-124.67402773550327,57.845027724430444],[-124.6736921737979,57.84504344459257],[-124.67335799345592,57.84501992268287],[-124.67302615667235,57.844989693886355],[-124.67269439941154,57.84495722190761],[-124.672364946472,57.84491916424435],[-124.67203775847865,57.84487664209157],[-124.6717083859555,57.84483634045041],[-124.67137873739793,57.84480388623417],[-124.67104217759956,57.84478818570502],[-124.67070518298598,57.84478481726915],[-124.67036814886846,57.844782569155775],[-124.67003135223644,57.844773593128906],[-124.6696969786524,57.8447556679089],[-124.66936741172077,57.8447209663569],[-124.66903804341439,57.84468065810842],[-124.66871535095244,57.84463032172269],[-124.66840163888101,57.844564372462095],[-124.668096749017,57.8444872950962],[-124.66779837718224,57.84440467446447],[-124.6675000859539,57.844319810819464],[-124.66720390225247,57.84423496762368],[-124.66691209090723,57.8441456813067],[-124.66662465199026,57.8440519518987],[-124.66635020865401,57.84394825805412],[-124.66609090685974,57.84383349981084],[-124.66584022974902,57.84371321973468],[-124.66559603149815,57.84358851791397],[-124.66536033884432,57.843461657873654],[-124.66512472721463,57.84333255508494],[-124.6648912233238,57.84320347304322],[-124.66466201273121,57.84307219056445],[-124.66444786440984,57.842932086407664],[-124.6642164714205,57.84280302438796],[-124.66394212331217,57.84269708336032],[-124.66368061208819,57.84258566291736],[-124.66343638852193,57.842462078445536],[-124.66316637656865,57.842352814679494],[-124.66285925009355,57.84228018899122],[-124.66252033174925,57.84227229395716],[-124.66231672625126,57.84213229240666],[-124.66218143154641,57.841967181738084],[-124.66210335949438,57.841792552606655],[-124.66204642812579,57.84161589304542],[-124.66194296570058,57.84144437308133],[-124.6618161389787,57.841278225762125],[-124.6616659083957,57.841118572188414],[-124.66149231399558,57.84096429110784],[-124.6613047010118,57.84073023716357],[-124.66132314700019,57.840626116845755],[-124.66146795597597,57.840463825525866],[-124.66162321386784,57.8403038824089],[-124.66178053657893,57.840145081502214],[-124.66194203004059,57.839987443991745],[-124.66209935008746,57.839828642758725],[-124.66225666880857,57.83966984136515],[-124.66241605232554,57.83951218216584],[-124.66257547429933,57.83935340163251],[-124.6627348949299,57.83919462093357],[-124.66289010243621,57.83903579771104],[-124.66304324252864,57.83887583198843],[-124.66319220934683,57.83871470259945],[-124.66333489706678,57.838552388386425],[-124.66347341161085,57.83838891054019],[-124.66360985886605,57.83822429024186],[-124.66374209325645,57.83805962749994],[-124.66387019433732,57.8378926799932],[-124.66399408264755,57.8377256900683],[-124.66411169217676,57.83755751541073],[-124.66422091719875,57.83738813487981],[-124.66431762570907,57.83721526385165],[-124.66439963260616,57.83704112353251],[-124.66447325539588,57.83686577741204],[-124.66453428266757,57.836689183199034],[-124.66458271459217,57.83651134091159],[-124.6646164058764,57.83633335057779],[-124.66464592510667,57.83615419680004],[-124.66467754977681,57.835975064199005],[-124.66470285701489,57.83579586817216],[-124.66472816401233,57.83561667217291],[-124.66475974811945,57.835438660814106],[-124.6647955830095,57.83525957061321],[-124.66483348351099,57.835081622747246],[-124.66487142337193,57.834902553738715],[-124.6649072572217,57.8347234636048],[-124.66493883973462,57.83454545236417],[-124.66496625040148,57.834366277692766],[-124.66499366080772,57.83418710304824],[-124.665025282175,57.83400797072071],[-124.66509051343563,57.833831419053155],[-124.66522256712531,57.833671240220696],[-124.665218511193,57.83348838503518],[-124.66523753717905,57.8333080047688],[-124.66523967878454,57.833128576561926],[-124.66522072514717,57.832950058130834],[-124.6651786107293,57.83277130716203],[-124.66510690014229,57.83259562368611],[-124.66500130331623,57.832425207684864],[-124.66486178095163,57.8322611802356],[-124.66464332340907,57.832125520274126],[-124.66445716498339,57.83196999640037],[-124.66463907129425,57.83182938586052],[-124.66492672758557,57.8317358211811],[-124.66519177804362,57.831626327080265],[-124.66543839377448,57.8315020671358],[-124.66569108613692,57.831384597113576],[-124.66598282830076,57.83129443593996],[-124.66629280408257,57.83122464514171],[-124.66659673999405,57.831146942144564],[-124.66688843849924,57.83105790016528],[-124.66715149198765,57.83094501763687],[-124.66738776782194,57.830815042805156],[-124.66771144473091,57.83077454664242],[-124.66800301886234,57.830688865730615],[-124.66827429006396,57.83058167121329],[-124.66853316485292,57.83046762265834],[-124.66883299800541,57.83038650894944],[-124.66911038295379,57.830284981811715],[-124.6693009624308,57.8301366013358],[-124.66946238156966,57.82997895628842],[-124.66959877223253,57.82981433124457],[-124.66972050324934,57.8296473162757],[-124.66991937986353,57.82950238276854],[-124.67008083325727,57.82934361591228],[-124.6702918643536,57.829212262188456],[-124.67059998648111,57.829134592320095],[-124.67089165995972,57.82904554173784],[-124.67119151625029,57.828963301667216],[-124.67149745013326,57.82888785100857],[-124.67180338279165,57.828812399651596],[-124.67210724840072,57.82873580540445],[-124.67241516546186,57.82866373716064],[-124.67272912094462,57.82859957939116],[-124.67304716757566,57.8285388263974],[-124.673363147333,57.828476930474395],[-124.67367515213826,57.8284082648337],[-124.67398906390991,57.82834522526408],[-124.67431497553694,57.82830024949122],[-124.67464871627271,57.828272174280166],[-124.67498381302407,57.828265421246044],[-124.67532073915386,57.82826653646516],[-124.67565754713493,57.82827101430878],[-124.67599646049274,57.82827551227033],[-124.67633724301253,57.828286757292176],[-124.67667210343454,57.82828672696052],[-124.67698955082312,57.82824278195042],[-124.67727126597639,57.82813679527659],[-124.67753438599158,57.8280205290582],[-124.67773934317333,57.82788125272965],[-124.67788192725752,57.82771892468669],[-124.67799741699804,57.82754847619037],[-124.67810658995083,57.82737796480975],[-124.6781866030854,57.82719819098811],[-124.67832481496703,57.827040305344234],[-124.67858149050882,57.826927337855075],[-124.67886938913111,57.826824774201924],[-124.67909507269195,57.826694674475824],[-124.67926064654242,57.82653705992403],[-124.67942621900852,57.82637944519103],[-124.67961463295721,57.82623102959877],[-124.6798031239505,57.826080371444995],[-124.67995816630524,57.82592265156704],[-124.68007149674303,57.825753301826936],[-124.68019316825412,57.82558627795385],[-124.68036079853985,57.82542980427014],[-124.68053883536857,57.82527679836902],[-124.68071683151639,57.825124913410455],[-124.68091147100137,57.8249788011713],[-124.68111651684359,57.824836156591154],[-124.68132366623402,57.824693532601955],[-124.68153077484617,57.82455202946756],[-124.68173994778324,57.82441166806774],[-124.6819491191629,57.824271306358646],[-124.68216039405391,57.82413096521374],[-124.6823716673721,57.82399062375277],[-124.68258289993847,57.82385140313249],[-124.68279623599064,57.823712203059394],[-124.68300746542951,57.823572981803395],[-124.68322079833885,57.82343378108795],[-124.68343412967305,57.82329458004964],[-124.68364745943198,57.82315537868838],[-124.68385868260832,57.823016156157685],[-124.68406990422481,57.82287693331081],[-124.68428116340883,57.822736588991944],[-124.68449242102012,57.82259624435716],[-124.68470363794427,57.82245702056202],[-124.6849148924167,57.82231667529513],[-124.6851219744957,57.82217516690381],[-124.68532698916248,57.82203251623139],[-124.68552783147643,57.82188870246769],[-124.68572247469616,57.82174146250483],[-124.68590253820322,57.821589591960084],[-124.68606591718708,57.82143307008311],[-124.68622305821583,57.8212742432932],[-124.68639060524559,57.82111888383962],[-124.68660176782895,57.82098077838946],[-124.6869316933995,57.82093917708807],[-124.68726719121865,57.82091893928527],[-124.68759298378762,57.820875052450425],[-124.68790688760579,57.82080973818508],[-124.6882086291404,57.820730844660446],[-124.68849610326455,57.82063835118964],[-124.68879990807717,57.82056059826398],[-124.68902150506923,57.820424835197144],[-124.68917862944694,57.820266005074004],[-124.68934409394514,57.82010950013808],[-124.68954908140807,57.819966843249695],[-124.6897644356374,57.81982877444757],[-124.69001288118636,57.81970785461628],[-124.69020122012951,57.8195594250163],[-124.69043726728036,57.81943165302423],[-124.69070219609428,57.81932098827424],[-124.69101405463549,57.81925340372656],[-124.69133401993804,57.81919487059566],[-124.69163979534876,57.81912049548084],[-124.6919536386558,57.81905629292673],[-124.69227149603954,57.81899773683212],[-124.69254464116048,57.81889275707971],[-124.69277034667651,57.81875927171546],[-124.69297527497285,57.81861773088992],[-124.69309273451103,57.81844841269981],[-124.69318922322852,57.81827664514192],[-124.69325846603377,57.81810124501763],[-124.6933004632869,57.81792221237097],[-124.69331720352142,57.81774293138524],[-124.69331921063866,57.81756350555385],[-124.69332121773684,57.81738407975469],[-124.69333795763379,57.81720479886326],[-124.69337991466028,57.81702688750479],[-124.69344708846391,57.81685034565464],[-124.69353519168838,57.81667737419097],[-124.6936275034033,57.81650444408239],[-124.6936845475489,57.816377150097516],[-124.69362921569181,57.81615117795273],[-124.69344921391844,57.815999122717564],[-124.69324360856336,57.81585690924647],[-124.6930444351525,57.81571139412924],[-124.69284732901001,57.815567020589135],[-124.69269500377891,57.815406264371404],[-124.69256812915472,57.815240150760516],[-124.69239452747334,57.81508591406191],[-124.69220385742324,57.814938238343366],[-124.6919597194482,57.81481470971121],[-124.69166811605461,57.8147243592218],[-124.69141532961042,57.814607473617635],[-124.69128211080071,57.814442417880294],[-124.69114885424268,57.81427848318497],[-124.6908896810012,57.81416377673644],[-124.69069687806935,57.81401719940519],[-124.6905976089964,57.81384462685111],[-124.69041759151938,57.813693689009035],[-124.69018398987028,57.81357026098112],[-124.6901439611415,57.81338929987064],[-124.6901059593717,57.81321060182216],[-124.6900024083235,57.81304022976115],[-124.68991581061556,57.81286666021445],[-124.68986724933097,57.81268897958464],[-124.68981658407952,57.81251127821674],[-124.68976171047653,57.81233353535541],[-124.68968988528785,57.812158989908305],[-124.68957153032267,57.81199071470281],[-124.6894341200531,57.81182561603397],[-124.68931362393248,57.81165844104172],[-124.68924394543804,57.81148279508702],[-124.6892459715997,57.811303370444115],[-124.6892900457102,57.81112548219124],[-124.68935512380989,57.810948922694216],[-124.68942647531982,57.81077354661519],[-124.68949993048375,57.81059819128562],[-124.6895922458212,57.810425265034496],[-124.68969921249371,57.81025472631375],[-124.68982079137328,57.810087696229786],[-124.68996119086003,57.809924216240404],[-124.69009114565654,57.8097583901058],[-124.6902001735058,57.80958899298596],[-124.69030923931008,57.809418474662706],[-124.69041409564288,57.80924791479412],[-124.69051267725565,57.80907617150691],[-124.69060077577775,57.80890320333676],[-124.69067422183984,57.80872784768642],[-124.69072459881671,57.80855002163139],[-124.69075186810456,57.808370846340914],[-124.69075809529392,57.80819146370833],[-124.69073907233708,57.80801183226179],[-124.69068626617529,57.80783523246141],[-124.69061238004319,57.8076595464203],[-124.6905405987437,57.807483881109384],[-124.69048993731151,57.807306180924364],[-124.69048354082443,57.80712667404741],[-124.69048135262695,57.806947208685244],[-124.6904791644503,57.80676774335525],[-124.69047697629446,57.80658827805738],[-124.69047268407512,57.80640879205026],[-124.69046207967368,57.806229243850346],[-124.69044516318033,57.806049633456034],[-124.690400855215,57.80587087457884],[-124.69031427213248,57.80569730653748],[-124.6902128837366,57.805525835527675],[-124.69012415935008,57.805353367814675],[-124.69006083971172,57.80517666449961],[-124.69000172867753,57.80500000268358],[-124.68991725342612,57.804826455283504],[-124.68979892045265,57.80465818151516],[-124.68973770748111,57.80448149892098],[-124.6896849498968,57.80430377820924],[-124.68964906341053,57.80412510240879],[-124.68964508626786,57.80387608561584],[-124.68966994256243,57.80376642181843],[-124.68957058831123,57.80359721367522],[-124.68925947974398,57.80352573141973],[-124.68893037193084,57.803487716380786],[-124.68859896596764,57.80345528543387],[-124.68827437917636,57.80340834123168],[-124.68797414515839,57.803326869643904],[-124.68769343268033,57.803228767431314],[-124.68742144937109,57.80312177871698],[-124.68715803926297,57.803010388095274],[-124.6868967736261,57.80289789662752],[-124.68663336663053,57.80278650499042],[-124.68636138951634,57.802679514153],[-124.68608501094482,57.802578086816915],[-124.68580434801243,57.80247885955235],[-124.68552368655654,57.802379631704746],[-124.68524084457063,57.80228262471592],[-124.6849580431253,57.80218449600131],[-124.68467738608544,57.802085266394805],[-124.68440319843377,57.80198161418791],[-124.68413333727541,57.801874639712445],[-124.68386129558951,57.80176988611845],[-124.68358068364527,57.801669533104004],[-124.68328701984692,57.80158138682542],[-124.68297134075432,57.80152105959459],[-124.68264237422925,57.80147966565971],[-124.68232221527137,57.801427143081185],[-124.68202423118979,57.80134231568489],[-124.68174136679927,57.80124642247674],[-124.68146937547395,57.80114054291934],[-124.68121464706705,57.80102249748571],[-124.6810305076751,57.800932069016724],[-124.68092026284432,57.80071452094176],[-124.68088862878582,57.800535885201775],[-124.6808548912854,57.8003572285923],[-124.68082750450571,57.800177513559234],[-124.68078098845511,57.80000321614654],[-124.6806222056094,57.799789671951004],[-124.68054421391466,57.79961281880071],[-124.68048317011876,57.79943276944802],[-124.68048928779402,57.79925787341326],[-124.68061083279736,57.79909197472137],[-124.68076178878778,57.79892748960913],[-124.68082053559537,57.798751994887695],[-124.68082474397913,57.79857147242358],[-124.6808289523226,57.79839094999183],[-124.68081414961982,57.7982124817994],[-124.68074032830272,57.79803679195806],[-124.6806771041016,57.79785896433556],[-124.68055236656639,57.79769510531943],[-124.68032361326436,57.797557129085284],[-124.68015843963789,57.79740632611768],[-124.68010145148558,57.79723080329862],[-124.68008470602402,57.797047829822795],[-124.68007415368734,57.79686828247281],[-124.68008046896861,57.7966877812771],[-124.68008253791166,57.79650835942703],[-124.68004245805402,57.79633076173559],[-124.67996864401188,57.796155071794765],[-124.67994967849036,57.79597544096362],[-124.6799517480163,57.795796019242815],[-124.67991591571345,57.79561734233085],[-124.67986532025257,57.79543964020077],[-124.67980837566601,57.79526299647614],[-124.67975147084587,57.79508523163466],[-124.67968821701591,57.794908525187374],[-124.67964183043217,57.79473086492156],[-124.67966517093699,57.79454492581691],[-124.67956989645853,57.79438135918967],[-124.67938350953861,57.794235952206506],[-124.67917382975448,57.794094799351186],[-124.67895565949388,57.79395580473434],[-124.6787375301027,57.793815688656565],[-124.67853217960987,57.793671213336765],[-124.67835440999954,57.79352028312647],[-124.67819798953703,57.79336059309042],[-124.67806069687505,57.793195485732994],[-124.677929754694,57.793029319960006],[-124.67784738651082,57.792858030139406],[-124.67777358948226,57.792682339585774],[-124.67767864224362,57.79250980294495],[-124.67757944999315,57.79233834549484],[-124.67748660779073,57.792165829721135],[-124.67743178255296,57.791989206499814],[-124.67736854477556,57.79181249949215],[-124.67731165665258,57.79163473421553],[-124.67724417424098,57.791459106430224],[-124.67714708996036,57.791287669787025],[-124.67707119603932,57.79111195816508],[-124.6770079221101,57.79093637225775],[-124.6769362359523,57.79076070252896],[-124.67683284528327,57.79058920290814],[-124.67684961231173,57.790411050013994],[-124.67691260971748,57.790234479304985],[-124.67706338916344,57.79007448431389],[-124.67722670766909,57.789916857117205],[-124.67737335681373,57.789754577689074],[-124.67747611383315,57.789584010428975],[-124.67753700379762,57.78940741862188],[-124.67757904370072,57.789228396078414],[-124.67761894080525,57.78905047372478],[-124.67766514683213,57.788872614222825],[-124.67772186787167,57.78869485945192],[-124.67778906449105,57.788518330514286],[-124.67787927640681,57.78834539526815],[-124.67799484205884,57.7881693479122],[-124.67817021691965,57.78802754109613],[-124.6785101433718,57.7879927934391],[-124.59999871000687,57.74981840667995],[-124.59379971094002,57.74679883702753],[-124.59417371867971,57.74663121426211],[-124.59445266471084,57.74653323678239],[-124.59475199061615,57.746452296945094],[-124.59505946780892,57.746378171707015],[-124.59536690210844,57.74630516680552],[-124.59567429354227,57.746233282240446],[-124.59598370114506,57.74616366129255],[-124.59629718397423,57.7460974472227],[-124.59661054075609,57.74603459554815],[-124.59692801454577,57.74597402966851],[-124.59724742145791,57.745917969425264],[-124.59757271319323,57.74587318549096],[-124.59788614921561,57.7458080887289],[-124.59819554925983,57.74573846265085],[-124.59850498975648,57.74566771481184],[-124.59881447067775,57.745595845211575],[-124.5991218497799,57.74552395270769],[-124.59942931084262,57.745449817407966],[-124.59973471162094,57.74537453817984],[-124.59999352339595,57.7453088598518],[-124.6003372731758,57.745219404783455],[-124.60056895834188,57.7450917575673],[-124.6008090443882,57.744964198603384],[-124.6011163730411,57.744893422565966],[-124.60141567167668,57.744812467822534],[-124.6017310683885,57.74475074732557],[-124.60206712295708,57.74475541123477],[-124.60240207243685,57.744733147093754],[-124.60265017916721,57.744615762779425],[-124.60284264654753,57.74446863342235],[-124.60303099418888,57.744319217469204],[-124.60325657027468,57.74418589407641],[-124.60351916748756,57.74407426826764],[-124.60395890195632,57.744002636938],[-124.60411168708244,57.743905554811256],[-124.60441702463197,57.743831385960306],[-124.60473047332708,57.74376515211233],[-124.60502897944433,57.743648293803005],[-124.60537898344214,57.74367328276083],[-124.60571194496524,57.74364762506557],[-124.6060465929077,57.74363319905487],[-124.60638280349549,57.7436333678486],[-124.60671633468776,57.743649208346085],[-124.60704722823338,57.74367959952382],[-124.60737564981835,57.743720057223776],[-124.607699581784,57.74376831732446],[-124.60801918954789,57.74381989567984],[-124.6083408161415,57.74387373739898],[-124.60866244365182,57.743927578341136],[-124.60898423719904,57.74397693432406],[-124.60930825596279,57.74402294841727],[-124.60963441734351,57.744067862695445],[-124.60996066200218,57.744110534081685],[-124.61028690739782,57.74415320466733],[-124.61061311229841,57.74419699549864],[-124.6109393179552,57.744240785529556],[-124.6112633825756,57.74428567381218],[-124.61158950734547,57.74433170434131],[-124.61189355600843,57.74440666144566],[-124.61221754081612,57.74445378949845],[-124.61255120522063,57.74446625219582],[-124.61288738208464,57.744467525549894],[-124.6132236412809,57.7444665559572],[-124.61355977702543,57.74446894865461],[-124.61389587167767,57.74447246154789],[-124.61423204864218,57.74447373149415],[-124.6145682256293,57.74447500058836],[-124.61490242536135,57.74447288374986],[-124.61523909550334,57.74446069856887],[-124.61557201618132,57.744436137151716],[-124.61590106384959,57.74440256267199],[-124.61622821567332,57.744363360220106],[-124.61655557209696,57.74431855172138],[-124.61687679018144,57.7442691925065],[-124.6171961120302,57.74421420537379],[-124.61751357853598,57.744152469289354],[-124.61782688387636,57.744089567619184],[-124.61814228874293,57.74402668709843],[-124.61845962913026,57.743968311906286],[-124.61878294231306,57.74391896997294],[-124.61910815031499,57.74387525436725],[-124.61943541715388,57.743832680879926],[-124.61975860502122,57.743786699720864],[-124.62007594089528,57.74372832067547],[-124.62038330527335,57.74365525799022],[-124.6206907093949,57.74358107354909],[-124.62100408655277,57.74351592231221],[-124.62132137731456,57.74345866135142],[-124.62164468239835,57.74340931246743],[-124.62196790484931,57.74336220489572],[-124.6222912491477,57.74331173339157],[-124.62261455170733,57.7432623821507],[-124.62293970875855,57.74321977822816],[-124.62326305053976,57.74316930436215],[-124.62358824690442,57.74312557780464],[-124.62391344251635,57.74308185045165],[-124.62424267510646,57.74304265007844],[-124.6245756590659,57.743015823999606],[-124.62487279203238,57.742934794698286],[-124.62516798641057,57.74284925876618],[-124.62547125514976,57.742772777657365],[-124.62578066103973,57.74270084535247],[-124.62598675344988,57.742580740229606],[-124.6262952792402,57.742475153500806],[-124.62645440279046,57.742317552648956],[-124.62656772222496,57.74214826259983],[-124.62666015829899,57.7419753918297],[-124.62673377097238,57.74180008318218],[-124.62680738296268,57.74162477452372],[-124.62689351536537,57.7414518384337],[-124.6269901490886,57.74127901104481],[-124.6270930016853,57.74110849094238],[-124.62718753321509,57.74093564172356],[-124.62726114141587,57.740760332960896],[-124.62732634739997,57.74058493722688],[-124.6274125157864,57.74041087992768],[-124.62752372484542,57.740241567637455],[-124.62764955394947,57.74007464952188],[-124.62778576151861,57.739911203119625],[-124.62805021961435,57.73957189154599],[-124.62811319744436,57.739399837038775],[-124.62848440881152,57.73947657206736],[-124.6287777931809,57.7393820382955],[-124.62861717384104,57.73917627035783],[-124.62853736898016,57.73900161765396],[-124.628472348254,57.738824874894526],[-124.6284767593455,57.738645485837154],[-124.62846020842849,57.73846475854549],[-124.62829138100606,57.73831161436163],[-124.62806507478567,57.73817918318813],[-124.62787290330526,57.738032525769356],[-124.62774661417737,57.737865241997056],[-124.62772578521508,57.737686713372966],[-124.62767127161098,57.73751007911519],[-124.62762099964215,57.73733236729224],[-124.62755174496677,57.737156701941444],[-124.62748463184202,57.736979937278356],[-124.6274069370276,57.73680530600498],[-124.62724030291355,57.736649940382684],[-124.62702895584783,57.73651093358604],[-124.62684321954389,57.73636097701885],[-124.62669149441557,57.73620015779422],[-124.62661376412134,57.73602664723084],[-124.62660768311089,57.735847149966624],[-124.62659740193882,57.735667609230276],[-124.6265639790187,57.73548895029497],[-124.62652215605551,57.73531020437129],[-124.62644871003415,57.73513449528403],[-124.62627994639885,57.73498022799443],[-124.62608141639915,57.73483574524772],[-124.6258999329663,57.734684710082234],[-124.62572487344197,57.73453037686565],[-124.6255709788307,57.734371776960174],[-124.62542350794082,57.73420987909128],[-124.62523140768386,57.734062097371044],[-124.62500723764701,57.73392968329995],[-124.62476170192616,57.733807140416566],[-124.62450114134174,57.73369341291352],[-124.62422979664902,57.73358742323903],[-124.62393894122394,57.7334980524598],[-124.62364158305866,57.733414220848374],[-124.62336806112123,57.73331044971777],[-124.6231375613155,57.73317908821295],[-124.62293481201509,57.7330356784337],[-124.62274482741178,57.73288791508945],[-124.62256122585825,57.73273797486581],[-124.62236914427604,57.73259018921063],[-124.62216211944154,57.73244897676921],[-124.62192306586454,57.73232201012342],[-124.62166676478213,57.73220719982986],[-124.62140836534897,57.73209236721996],[-124.62116499404154,57.731968718692976],[-124.62094731399796,57.73183187939637],[-124.62076590642549,57.73167971660998],[-124.62060570368409,57.7315221668855],[-124.62043702095721,57.73136677166637],[-124.62021078384646,57.73123432798489],[-124.61992650124742,57.73113828795701],[-124.61966811441037,57.73102345207503],[-124.61942903727301,57.730897602143536],[-124.6191985249119,57.73076735513405],[-124.61897871811347,57.730631611930846],[-124.61877809807781,57.73048821802313],[-124.6185839019336,57.73034152636611],[-124.61835767745407,57.730209079654685],[-124.61814215849688,57.73007113683554],[-124.61796072967118,57.72992009150455],[-124.6177878244132,57.72976577041325],[-124.61757235107342,57.72962670569457],[-124.61746717423236,57.729458511410755],[-124.61751354943192,57.729281804330085],[-124.61761019493007,57.729108985819785],[-124.61772141464462,57.728939683608395],[-124.61784099124755,57.72877158992395],[-124.61797720049822,57.72860815539011],[-124.61814049975833,57.72845061041197],[-124.61833076580832,57.72830231798098],[-124.61854375811518,57.72816435525039],[-124.61876506564434,57.72802872176069],[-124.61896566161734,57.72788502198037],[-124.61914138777396,57.7277320912368],[-124.61930673709625,57.72757568785645],[-124.61946376836339,57.72741695477479],[-124.61958749072855,57.72725002452255],[-124.61965694921527,57.727073557555094],[-124.61968865486647,57.72689557606173],[-124.6196973464134,57.72671511206602],[-124.61969129974614,57.72653561610643],[-124.61967895437137,57.72635605459515],[-124.61967458653456,57.726130596489746],[-124.61961227260697,57.72599649442932],[-124.61971902942659,57.72583387350309],[-124.62002003218302,57.72575850529012],[-124.62034125171068,57.72570465445932],[-124.62063628086742,57.72562025107255],[-124.62090693231106,57.72551316435738],[-124.62117346494485,57.72540379136822],[-124.62146037799548,57.72531145161982],[-124.62176964858757,57.72523952989042],[-124.62208674390466,57.725183389144],[-124.62239395359813,57.7251103231154],[-124.62268102485211,57.7250134966355],[-124.62285869959113,57.72486394629083],[-124.62307573247278,57.72472938344754],[-124.62335452360661,57.72462910522972],[-124.6236476014457,57.72454018931187],[-124.62393857842098,57.72445125096032],[-124.62421942388718,57.72435211377302],[-124.62446951015295,57.72423247070866],[-124.6246742224311,57.72408992741911],[-124.62482285963958,57.723929980370215],[-124.62495906204069,57.72376541840242],[-124.62511189564526,57.723605514634244],[-124.62527098547183,57.723446797059964],[-124.62543834933894,57.72329152948258],[-124.62560991065692,57.723136305251145],[-124.62582087015592,57.72299494667086],[-124.62612377454562,57.72292407068282],[-124.62642894015566,57.72284873164994],[-124.62666044082503,57.722719920616946],[-124.6268568612999,57.72257392408101],[-124.62705949693976,57.72243023456223],[-124.6272827582825,57.722296851408245],[-124.62752260939716,57.722169246927564],[-124.62765657224324,57.7220080238141],[-124.62775525211595,57.721835220861905],[-124.62795779899507,57.72169377212694],[-124.62813136066656,57.72154080865606],[-124.62826544074014,57.72137622194461],[-124.62839951964621,57.721211635123666],[-124.62854191322894,57.7210493771288],[-124.62868850416886,57.72088716244286],[-124.62884546825792,57.720728419278224],[-124.62903561278735,57.72058123362179],[-124.62925683827838,57.720445583616645],[-124.62948423801737,57.72031336145544],[-124.62974453333084,57.72020054359146],[-124.63003340394121,57.72011044950929],[-124.63033458428477,57.72002833214134],[-124.6306315648426,57.71994617072079],[-124.63092862531553,57.7198617665893],[-124.6312276619095,57.71978074655532],[-124.63152871527713,57.719701989578446],[-124.63181358226672,57.719606243184174],[-124.63208819514634,57.71950366170906],[-124.63245090198917,57.71934591640373],[-124.63263543888615,57.71929511234885],[-124.6329080291647,57.71919026549884],[-124.63318061793123,57.71908541809892],[-124.6334552638453,57.718981712817516],[-124.63373196691487,57.718879149641715],[-124.63400858746203,57.71877882795029],[-124.63430155438515,57.71869101001045],[-124.63460666952689,57.7186156524622],[-124.6348995933124,57.71852895424049],[-124.63515990065484,57.7184150049122],[-124.63545282161695,57.7183283054847],[-124.63574170477587,57.718237078101104],[-124.63602449136553,57.718140180161335],[-124.6363031995582,57.718039875355124],[-124.63657577061397,57.717935021090014],[-124.6368030892273,57.717803907721006],[-124.63697042117178,57.71764750540811],[-124.63716879375308,57.717503757948414],[-124.63738585467178,57.71736580956315],[-124.6375801068186,57.71721977631576],[-124.63773701834637,57.717061023186325],[-124.63787104071477,57.716896427472925],[-124.6379946473746,57.71672948174722],[-124.63811619427409,57.71656139333963],[-124.63823769971029,57.716394425872394],[-124.63835298772143,57.71622515157692],[-124.63847449103129,57.71605818394675],[-124.63862933533454,57.71589828735158],[-124.63880908388994,57.715746496464455],[-124.63897841671248,57.715592355532706],[-124.63918302750423,57.71544979103249],[-124.63942477296361,57.71532555048621],[-124.6396891618976,57.71521387775948],[-124.6399820476724,57.715127168591344],[-124.64029115939502,57.71505632539128],[-124.64056979322334,57.71495713293644],[-124.6408156885924,57.71483405399577],[-124.64107591236868,57.714721214480186],[-124.64135660032957,57.714623162948754],[-124.64165759152849,57.71454438336178],[-124.64196867347856,57.714476920872755],[-124.64228572904894,57.71441849035559],[-124.64260879868992,57.714367970742245],[-124.64293957910448,57.71433659371794],[-124.64327367175329,57.71432992136812],[-124.64360946100742,57.714334479897836],[-124.64394755033267,57.71433345393302],[-124.64427029541503,57.71429189846637],[-124.64458342936258,57.71422557235237],[-124.6448985004063,57.714163751060966],[-124.64520157948924,57.71408498492247],[-124.64545770768717,57.71396873090054],[-124.64561243357865,57.71381106851853],[-124.64571516762832,57.71363941749346],[-124.64587824649942,57.71348296166807],[-124.64610344735165,57.71335069044446],[-124.64637591728558,57.71324693752643],[-124.64666275678043,57.71315230228225],[-124.64693118650491,57.71304402128166],[-124.64728339550132,57.71288276616255],[-124.6474331228569,57.71280579408164],[-124.64770974281014,57.71270320234172],[-124.64801474281681,57.71262893539183],[-124.64832971478698,57.71256934808604],[-124.6486488433668,57.712510923862624],[-124.64896785077974,57.71245586194493],[-124.64928483853474,57.712398535823226],[-124.64960194545246,57.712337845875595],[-124.64991699256021,57.71227601276735],[-124.6502260223346,57.71220626761738],[-124.6505209194479,57.71212067781468],[-124.6508016036146,57.712021485504906],[-124.65106791465412,57.711913174876635],[-124.65131989248717,57.71179462499582],[-124.65154510423065,57.71166122371826],[-124.65176619677099,57.711525537323276],[-124.65202434625627,57.71141041327476],[-124.65231103780218,57.71131912904421],[-124.6526100009591,57.71123694042398],[-124.65290896281637,57.71115475113589],[-124.65321196116,57.71107708793275],[-124.65348443512931,57.71097219960595],[-124.65366817836441,57.710823795012246],[-124.65382087815905,57.71066273913467],[-124.65401918994294,57.71051784640628],[-124.65426699168171,57.71039812742515],[-124.65452722457206,57.71028301993942],[-124.65484453499118,57.710097841425856],[-124.65488170369738,57.70999729023251],[-124.65489655935683,57.70981576978044],[-124.65490084171113,57.70963638488919],[-124.65490936124593,57.7094559216121],[-124.65498080062379,57.70927721844995],[-124.65524042556576,57.70917892501567],[-124.6555696493643,57.709130680003206],[-124.65588260119505,57.7090676905914],[-124.65618957478567,57.70899566842089],[-124.65651249984947,57.70894735722725],[-124.65684124213243,57.70891256133094],[-124.65716626429246,57.70886426982014],[-124.65744266978399,57.70876614224529],[-124.65764717402216,57.70862355018428],[-124.65782059538962,57.708469428762385],[-124.65797738563047,57.7083106530173],[-124.65811960371119,57.70814836528364],[-124.65825350577009,57.70798375038096],[-124.65838119047217,57.70781682958325],[-124.65850257833144,57.70764984495205],[-124.65862400488737,57.70748173921525],[-124.65874748915222,57.707314775657395],[-124.65887303110992,57.70714895427184],[-124.65900486757208,57.706983196507366],[-124.65915123355127,57.70682207136969],[-124.65931636569829,57.7066645002538],[-124.6594876330279,57.706511476727925],[-124.65957828167792,57.70638230878133],[-124.65956828912361,57.70619044450922],[-124.65964699863902,57.70622039770389],[-124.65964152063997,57.70601960776341],[-124.65949791690352,57.705688457048794],[-124.65936792369025,57.705447157669965],[-124.65924461798637,57.704958091845704],[-124.65922958912657,57.704553106933375],[-124.65908659083888,57.704205140972064],[-124.65893380159586,57.70395576078556],[-124.6587029379148,57.7037179257202],[-124.65859033975171,57.70345998072102],[-124.65829711839271,57.70326412759171],[-124.65796363420489,57.703079080188104],[-124.65754930331748,57.702924612538226],[-124.65733542881085,57.70274077542379],[-124.65716257826347,57.702524832628086],[-124.65684534300428,57.702119027644585],[-124.65689384973311,57.701876171612525],[-124.6569361009401,57.70163213079368],[-124.656969879085,57.70139024696724],[-124.65699518433608,57.70115052013794],[-124.6570056824574,57.7009140075152],[-124.65700129411012,57.70068295112682],[-124.65697568523916,57.7004584081715],[-124.65692877658664,57.70024262065844],[-124.65685641200082,57.70003442500361],[-124.65684465919605,57.700010756108824],[-124.65675847241064,57.69983718419793],[-124.65662652580347,57.6996519340895],[-124.65646263084646,57.69947981686008],[-124.65624770567605,57.699326245912566],[-124.65597319883892,57.69919561989358],[-124.655651858416,57.69908358212466],[-124.65528594187408,57.69898566951147],[-124.65488811739702,57.698899767476746],[-124.65446689679177,57.69882259793675],[-124.65402663564441,57.69874971925786],[-124.653580002162,57.69867901717097],[-124.65313131220428,57.6986071712426],[-124.65269121587833,57.6985298041018],[-124.65226612734025,57.69844361684016],[-124.65186661696397,57.69834647433934],[-124.65150123696289,57.6982339782238],[-124.65117430349272,57.69810280847762],[-124.65087948256075,57.697954022302405],[-124.65059983005273,57.69779193298841],[-124.65033534606869,57.697616540638],[-124.6500880086434,57.697431229750705],[-124.64985567971236,57.69723710005295],[-124.64963827915899,57.69703639364299],[-124.64944000279195,57.6968291533762],[-124.64925657442089,57.69661757857172],[-124.64909210966573,57.69640395409585],[-124.64894447025766,57.69618937962962],[-124.64881567374557,57.695976118640395],[-124.64870575984764,57.695763050176815],[-124.6486127505066,57.6955467898677],[-124.6485366054012,57.69532845875571],[-124.64847526643794,57.6951069144621],[-124.64842445754114,57.694884356208384],[-124.64838425864637,57.69465854199886],[-124.64835249162255,57.69443169244698],[-124.64832496068017,57.69420376474632],[-124.64830162568465,57.69397587990361],[-124.64828042882597,57.693746895510564],[-124.6482591921627,57.693519032167195],[-124.6482337602162,57.6932911260539],[-124.64820199524311,57.693064276762215],[-124.6481659950991,57.692838505695995],[-124.64811946666119,57.69261374862176],[-124.64806023226204,57.692392226120155],[-124.64798833217745,57.69217281717083],[-124.64790162885039,57.6919566213397],[-124.64779592714555,57.691743595765764],[-124.64767122735734,57.69153374040158],[-124.64752539202966,57.691328154772876],[-124.6473605591921,57.69112573922889],[-124.64717886683633,57.6909253941219],[-124.64698233263499,57.690729382808364],[-124.64677317467334,57.69053436365288],[-124.64655341051844,57.690342600027876],[-124.64632521809916,57.69015187131948],[-124.646090695108,57.68996219892549],[-124.64585197932219,57.689772483259205],[-124.64560899053454,57.689584966294035],[-124.6453681418501,57.68939634937214],[-124.64512939310848,57.689207753503624],[-124.64489274427793,57.68901917869954],[-124.64466243052975,57.68882954690353],[-124.64444268697596,57.688637780088634],[-124.64422931849603,57.68844383536565],[-124.64402240539097,57.688245470774746],[-124.64381976978191,57.68804490686227],[-124.64361927397877,57.687843243163705],[-124.64342305561657,57.68763938017823],[-124.6432247419268,57.687435495454366],[-124.643028527805,57.68723163196361],[-124.64282808074402,57.68702884622917],[-124.64262545798181,57.68682828072218],[-124.64241856212037,57.68662991393111],[-124.64220315818586,57.686434823821784],[-124.64198130338976,57.686244152850925],[-124.641750900387,57.686057879473346],[-124.64151190897053,57.68587712463459],[-124.64125799686404,57.68570294472313],[-124.64099335881218,57.68553538269489],[-124.64071375988975,57.685375516420486],[-124.64041915983115,57.68522446679359],[-124.64011609230039,57.6850755723706],[-124.63980451704313,57.68492995408362],[-124.6394844340766,57.68478761187148],[-124.63915802134179,57.684646325241026],[-124.63882515788889,57.684509457116626],[-124.63848596469437,57.68437364447725],[-124.63814032074467,57.684242250243784],[-124.63774244803447,57.684163023878774],[-124.63717929781292,57.68407088147878],[-124.63685817890948,57.684015991796464],[-124.63616472107603,57.68393035349832],[-124.63568304706685,57.683848015005154],[-124.6349908082889,57.6837287409116],[-124.63450708263183,57.68364525555132],[-124.63381662466263,57.683534964874156],[-124.63313838081208,57.68349320238621],[-124.6325914217517,57.6834180285262],[-124.63213903165857,57.68339653533485],[-124.6316222772513,57.68335643302161],[-124.6310074705331,57.68335904990796],[-124.63037746868476,57.68331777193473],[-124.62976363686782,57.68329347936704],[-124.6291976759751,57.68327977215461],[-124.62843419676707,57.68333242272924],[-124.62775315709995,57.68336798071179],[-124.62715577839758,57.683352817799964],[-124.6263611216341,57.68339728339856],[-124.62570901245516,57.68350265829011],[-124.62462933900865,57.68330753824631],[-124.62373400244752,57.683178245509126],[-124.62192621762202,57.68298674817571],[-124.62109957357534,57.68287273064474],[-124.62021677287954,57.68280297915789],[-124.61958917553139,57.6827538248596],[-124.61898444405415,57.682710513085645],[-124.61840870584467,57.68267759371842],[-124.61799481862879,57.68263626838546],[-124.61760684378199,57.68263221877622],[-124.61734107785851,57.682613744369256],[-124.61697448467157,57.68259870205735],[-124.61661628040751,57.68258374636543],[-124.61638402882133,57.68256674155282],[-124.61312019837705,57.68255054163684],[-124.6127037288506,57.68257982154726],[-124.61228734091017,57.68260685818815],[-124.61187095237473,57.682633893520645],[-124.6114546043843,57.68265980656459],[-124.61103825582366,57.68268571830024],[-124.6106219066928,57.68271162872773],[-124.61020551581473,57.682738658826835],[-124.60978908315234,57.682766808597094],[-124.60937470583399,57.68279610006175],[-124.60896024544601,57.68282763218965],[-124.60854570191458,57.6828614049804],[-124.60813107516579,57.68289741843341],[-124.6077185035489,57.682934573618404],[-124.60731896082606,57.683016721078694],[-124.60690741113622,57.683083041258435],[-124.60662876694364,57.68312945182832],[-124.60644149839447,57.683144302446934],[-124.60575652668443,57.68322904832385],[-124.6053063236849,57.6832624356145],[-124.60485591321014,57.68330142626973],[-124.60446632039609,57.68334105633595],[-124.60395426221686,57.68340182256076],[-124.60367623262401,57.68343141225326],[-124.60319357414433,57.68349136414888],[-124.60278489582424,57.68353639507724],[-124.60242424520128,57.68358753871245],[-124.60197382788733,57.6836265195782],[-124.60148088535392,57.683680749649454],[-124.60112274327736,57.68372070211415],[-124.60070189132882,57.683754383919904],[-124.60033363489161,57.68378413464839],[-124.59999745833035,57.68379740226665],[-124.59989239014294,57.68380189852793],[-124.5991142818093,57.68379479089507],[-124.59793114215425,57.68373404865734],[-124.59693287013424,57.68372347558313],[-124.5961380278955,57.68371505172552],[-124.59499270259117,57.68370963350681],[-124.59386036338917,57.683637058185845],[-124.5937603226292,57.6836191746061],[-124.59097560177018,57.68301652905516],[-124.54133585705551,57.67226170269077],[-124.5402247116972,57.67230328338504],[-124.53917918619591,57.6722749292034],[-124.53827322112285,57.67227165767394],[-124.5372781448383,57.672240481207325],[-124.53636006280283,57.67217089865787],[-124.53553949444199,57.672020524470106],[-124.53450761414508,57.672019198421445],[-124.53324696345938,57.672075886827066],[-124.53226803496258,57.671682631130984],[-124.5315565981625,57.67153119908192],[-124.53071871753767,57.67134135282018],[-124.5299926550123,57.67113480010478],[-124.52917225971733,57.67092719529984],[-124.52843699965861,57.670741838844194],[-124.52774021729134,57.67043018512549],[-124.5273451935682,57.670017592472036],[-124.52661226423285,57.66950367418474],[-124.52625735637484,57.669138624730124],[-124.52595717763259,57.66871474834326],[-124.52541702150165,57.668152506033536],[-124.52490133564099,57.667769962068654],[-124.52409549836631,57.66751426636614],[-124.52335451885543,57.66737031016512],[-124.52265253855921,57.667301920430184],[-124.52207392379829,57.667350411076264],[-124.52179010239999,57.667314720537554],[-124.521549131547,57.66720212974591],[-124.52090809997546,57.66659388517133],[-124.51986397137316,57.665354255269605],[-124.51943657542232,57.66507584811544],[-124.51805258890512,57.664699261742406],[-124.51199508687674,57.66457186532541],[-124.51107682016973,57.664566024484294],[-124.5101586419855,57.66455793541689],[-124.50924042004702,57.66455096090904],[-124.5083946741398,57.66467376075229],[-124.50754532393042,57.66483464311325],[-124.50671881154007,57.66489484940468],[-124.50609438092063,57.66498873150743],[-124.50536178987637,57.6650600822689],[-124.50471943285054,57.665182912652135],[-124.50340087601369,57.665329495929875],[-124.50246075571854,57.66539848411048],[-124.50180147044969,57.66547176615464],[-124.50116189128434,57.66552396094877],[-124.50008966044265,57.6655925577748],[-124.49822982941511,57.664633954230155],[-124.49731245793281,57.66465830665148],[-124.49639499621574,57.6646848945637],[-124.49547954019579,57.66471374179139],[-124.49456189752173,57.66474480069485],[-124.49364403029766,57.6647814578533],[-124.4927101495068,57.6648515692413],[-124.49176056523838,57.66494728806886],[-124.49069560997916,57.664938512881285],[-124.48943830581683,57.66491519830771],[-124.48855099108212,57.66486918293252],[-124.4874813720659,57.6647672496737],[-124.4864452961918,57.664665691296015],[-124.48576136737223,57.66456815395486],[-124.48498257321226,57.664325983764634],[-124.4841203060287,57.664073881476554],[-124.48329769525076,57.663669713039525],[-124.48264781501497,57.663141919337974],[-124.48232341642068,57.66244627609018],[-124.48188255688312,57.662145161923064],[-124.4806772417834,57.6616648151348],[-124.47987004685261,57.661296688076895],[-124.4790464609129,57.66091939622234],[-124.47835342144901,57.660633314745766],[-124.47796003043037,57.660404504800574],[-124.47756339843882,57.660256399452884],[-124.4773147836295,57.66018176761932],[-124.47703227579014,57.66011571673536],[-124.47675482051052,57.65992412308382],[-124.47622530945118,57.65969149826893],[-124.4751683501499,57.65933168050848],[-124.47457560456785,57.659055706020375],[-124.47350786218132,57.65849613581866],[-124.47256306069822,57.658216090827786],[-124.4718136691978,57.658081838874985],[-124.47068985673351,57.658029606443186],[-124.46961399940335,57.65808781932967],[-124.46905467719019,57.65766081300041],[-124.46889268239237,57.657259709249814],[-124.4687302680662,57.6570245723291],[-124.46849501699386,57.65682784237783],[-124.46772413159754,57.65650043209487],[-124.46680090094975,57.65605238059444],[-124.4655478242631,57.655621805322404],[-124.46463369125483,57.655519244651224],[-124.46368576459632,57.655474599691885],[-124.46292702994842,57.65536598121829],[-124.4619434802766,57.65506298070865],[-124.4614224191965,57.65483263697537],[-124.46084569817002,57.65447604347783],[-124.46037047794844,57.65430454317324],[-124.4598016947152,57.65411400922563],[-124.45939557852742,57.65415077445459],[-124.45899352191854,57.65408777834128],[-124.45863957502404,57.653975998438234],[-124.45828608255401,57.65390459439574],[-124.45800798263616,57.65383518943171],[-124.4578525983701,57.653841228602865],[-124.45768378351498,57.65376524655697],[-124.45743953801224,57.65363679912238],[-124.45727109027597,57.653551849374125],[-124.45707298728055,57.65347440363353],[-124.4569059115771,57.65335582647834],[-124.45658446013518,57.65321862704296],[-124.45634118157204,57.65306663878875],[-124.45600812920995,57.6528541667214],[-124.45571775062122,57.65272629918645],[-124.4553570235156,57.65242154515081],[-124.45497848725803,57.652142375100766],[-124.45453850495048,57.65187930774274],[-124.45402233816904,57.651531241510334],[-124.45355602127457,57.65114338443432],[-124.45311775475986,57.65083883949743],[-124.45262965477586,57.650574081787376],[-124.45229627863212,57.65037056802609],[-124.45201615034199,57.64999273343257],[-124.45171280346808,57.64977274811228],[-124.45131626154811,57.64957634270037],[-124.45106770473443,57.6494007329567],[-124.45064120956492,57.64916808910507],[-124.45030868219442,57.648944394555414],[-124.44996852757231,57.64865108123551],[-124.44983559995066,57.648416266685516],[-124.44969505920147,57.64806024858257],[-124.4495289483763,57.64791924491247],[-124.44932468377571,57.64773742244339],[-124.4491901637777,57.64723456751306],[-124.44922105925833,57.64704316559978],[-124.44923204298694,57.64687732313735],[-124.44946811690988,57.64669169043669],[-124.44971243108762,57.64650951821568],[-124.44994640531564,57.64632386017505],[-124.4501783280853,57.64613705632132],[-124.45043711700268,57.64595953821146],[-124.45069171345732,57.645781970554886],[-124.45095250085171,57.645606717807304],[-124.45121333167454,57.64543034368629],[-124.45148650083917,57.645259720655595],[-124.45176786416606,57.645093678712215],[-124.45206142832973,57.6449367503798],[-124.45336104217317,57.64385632053439],[-124.4537039983171,57.64372127340948],[-124.45405105030261,57.64358851615057],[-124.45440228963977,57.64345580695035],[-124.4547535265157,57.643323096834266],[-124.45509647286696,57.64318804616716],[-124.45543326930311,57.64304955858744],[-124.45575562775771,57.64290529455046],[-124.4560594499295,57.64275296349004],[-124.45634259531572,57.64259366197895],[-124.45659896222595,57.64242283328146],[-124.45684517238702,57.64224403572018],[-124.4570937490231,57.64205853684441],[-124.45733840754897,57.64186626335541],[-124.45757696179982,57.64166943262528],[-124.45780522221581,57.64146799584513],[-124.45802318887786,57.64126195307087],[-124.45822662672217,57.641052376410826],[-124.45841334993641,57.640841483292924],[-124.45857712018272,57.640628079673334],[-124.4587178922028,57.640413286524094],[-124.45883143133263,57.64019817599273],[-124.45891559772295,57.639983844630024],[-124.45896624810047,57.63976912279907],[-124.4589811515396,57.63955734878879],[-124.45897305907074,57.639344185495055],[-124.45895039531175,57.63912860964697],[-124.45891311490962,57.63891174212241],[-124.4588612181192,57.63869358290971],[-124.45879679981785,57.63847415639903],[-124.45871986022964,57.638253462572926],[-124.45863035396772,57.63803262229327],[-124.45853037583562,57.637811659945235],[-124.45842206620702,57.63758947903531],[-124.4583032394365,57.637368296893804],[-124.45819745863258,57.636878127492636],[-124.45813700387565,57.63671593923107],[-124.45803743390076,57.636588058756715],[-124.45796851552896,57.63637642960365],[-124.45789036682014,57.63603124471153],[-124.4578327896958,57.63579844097418],[-124.4577761668447,57.63559368368714],[-124.45765311557105,57.635373573407826],[-124.45757323744445,57.63507098207169],[-124.45756496114792,57.63496547285003],[-124.45755155794748,57.634677113777954],[-124.45750828574481,57.634401863354746],[-124.45754952464914,57.63405807117142],[-124.45749231258347,57.63386788551171],[-124.45767823357728,57.63362446495647],[-124.45761305490133,57.633424093828694],[-124.45767390663775,57.63316463640465],[-124.45734236696224,57.63271332711124],[-124.45724629593519,57.63234550561897],[-124.45708892255632,57.63219676509786],[-124.45660043395772,57.631638210561135],[-124.45632621364874,57.63137484318216],[-124.45615042506,57.6311126244038],[-124.45607955272182,57.63069239044108],[-124.45594283463305,57.63039698541267],[-124.45593401375551,57.62999654003414],[-124.4560307458575,57.629730774626466],[-124.45561896401736,57.62919329808854],[-124.45521982492211,57.62880847930443],[-124.4550738671694,57.62858585717763],[-124.45458345229989,57.628281832738296],[-124.45448633985646,57.62809454442096],[-124.45433518722243,57.62769131457763],[-124.45386467252585,57.6272080953437],[-124.45325613812355,57.62656514208147],[-124.4524217072443,57.626119152401785],[-124.45216175543949,57.625867157970504],[-124.45182830432353,57.62556832493894],[-124.45148951967748,57.62514383142464],[-124.4512097966164,57.62465835177824],[-124.45095757537635,57.62416646546073],[-124.45080183007636,57.623774392643355],[-124.45072291357084,57.623245287585114],[-124.45073789966361,57.62287876485779],[-124.45072195483118,57.622602713305504],[-124.4506080468711,57.62221225236547],[-124.45051871743088,57.62198916816592],[-124.45024939176021,57.6215576365522],[-124.45005243321663,57.6211493808901],[-124.44988608914319,57.620658500428334],[-124.44964130553751,57.62039546553269],[-124.44953186383997,57.61989628094684],[-124.44963581464422,57.619454547602736],[-124.44961774347497,57.61887233014419],[-124.44974390811436,57.61855308998341],[-124.45006601874499,57.61830791665222],[-124.45060572704362,57.618170704347264],[-124.45104237859005,57.618095080646455],[-124.45210195045094,57.61794713149879],[-124.45234128467197,57.61777948144766],[-124.45263986400421,57.61744319380231],[-124.45273380728756,57.61719422228373],[-124.452926872467,57.61692846850052],[-124.45315771889554,57.61660932970479],[-124.4533208410456,57.616307340586374],[-124.45340205527917,57.61595953739155],[-124.45350440569176,57.61550432783136],[-124.45342180950662,57.61506489701234],[-124.45322560440137,57.61453554701691],[-124.45302725451825,57.61405887722276],[-124.45288192693965,57.613566007009226],[-124.45283173551798,57.61315386911952],[-124.45284084069301,57.612930818984495],[-124.45273854980731,57.612512464512825],[-124.45267304516398,57.61221901497774],[-124.45236343335536,57.61185206002051],[-124.451871868592,57.61127439503394],[-124.45135537675706,57.61089716486848],[-124.45131269909581,57.61071163569221],[-124.45138214525142,57.61049826416793],[-124.45153497314683,57.610191672933865],[-124.45151004125168,57.60982805119351],[-124.45144366171878,57.60945385147412],[-124.4514558421597,57.609155705213034],[-124.45146199916888,57.608748713964076],[-124.45155864331272,57.60838203153621],[-124.45150724272551,57.608153787970366],[-124.45140474248416,57.607946252027645],[-124.45138841390124,57.60757712486373],[-124.45125858448364,57.60732104910346],[-124.45110399479904,57.60710729570601],[-124.45102977820254,57.60697634525066],[-124.45092383089032,57.6067508265372],[-124.451181775101,57.60633108775355],[-124.45128209771713,57.60597678471482],[-124.45143294719934,57.60551317823636],[-124.45136973538575,57.6050616415748],[-124.45122157423435,57.60448575747504],[-124.45103156741108,57.604063012294475],[-124.45063576509527,57.60375784217601],[-124.45055861472788,57.60293047964519],[-124.45056381836494,57.60254702847924],[-124.45005242272029,57.60184353286302],[-124.44938857560423,57.60138719293011],[-124.44877818742665,57.60095502619898],[-124.44823024975776,57.600583023141695],[-124.44759882375732,57.60040964249917],[-124.44711914603774,57.600262712539674],[-124.44650996139843,57.60000660593148],[-124.4464255932246,57.59997085127883],[-124.44564366196482,57.599690281927984],[-124.4445745704695,57.599418663131075],[-124.44315355063391,57.59915298200124],[-124.44190776143144,57.59890280834633],[-124.44089344366488,57.598878508831966],[-124.43972924037588,57.598782906154455],[-124.43902506579606,57.59875104029516],[-124.43827501273651,57.598765726427004],[-124.43770169169846,57.59875894901427],[-124.43782674198987,57.598162731589966],[-124.43803049803338,57.59753604622209],[-124.43799874885427,57.59723962671036],[-124.43829914470156,57.5964010220668],[-124.4384255305398,57.59597527078173],[-124.43850956110123,57.59556135416499],[-124.43856960623128,57.595170703132744],[-124.43861020508977,57.5947439383659],[-124.4390136439713,57.59302851541859],[-124.43854693998705,57.59216290619816],[-124.43780143897337,57.591867021201125],[-124.43705344181986,57.59158119477457],[-124.43630317907277,57.59129982273411],[-124.43553177642289,57.59102380290095],[-124.43474318663012,57.590758788601704],[-124.43393708536647,57.59051262529685],[-124.43311528585288,57.590292062413035],[-124.43227541676094,57.590103799761245],[-124.43141924361824,57.58995570758527],[-124.43053630431585,57.58984766128767],[-124.42963315049391,57.58977300998413],[-124.428716380686,57.58972398214068],[-124.4277904556983,57.58969390233031],[-124.42669940914973,57.58986033308327],[-124.42570137472417,57.590004314522275],[-124.42489257802615,57.59022791995674],[-124.42389080473619,57.590411091590944],[-124.42309640467512,57.590590002991675],[-124.42244503693091,57.59080201641095],[-124.42167194696603,57.59107200563582],[-124.42078932401347,57.591308161246644],[-124.42029851061454,57.591483956741676],[-124.41916266716864,57.59071456016077],[-124.4183204271397,57.590383764474225],[-124.41698649396443,57.59009977714363],[-124.4159915801723,57.589917401673226],[-124.41503709390541,57.58966934227335],[-124.41420638637585,57.58936445006622],[-124.41292013615669,57.588792798965784],[-124.41240857240186,57.588164286416706],[-124.41211056746032,57.58743405113783],[-124.41189136219943,57.58682138622663],[-124.41179556651312,57.58646027223737],[-124.4117160573281,57.586060105906235],[-124.41159713662452,57.58565161609307],[-124.41128930790026,57.58515675109029],[-124.41115671804458,57.58477500974287],[-124.41117391598576,57.584664200389994],[-124.41116521631685,57.58457214292315],[-124.41111468454831,57.58447958226531],[-124.41105447189065,57.58441830365512],[-124.41081640116556,57.58430666609473],[-124.4104594399615,57.584185747772786],[-124.41010248103309,57.58406482849959],[-124.40974561836572,57.583941666655484],[-124.40939294115448,57.58381855423621],[-124.4090403132456,57.583694320079736],[-124.40868977920165,57.583570110194756],[-124.40834352461665,57.58344370818422],[-124.40799731938266,57.58331618447202],[-124.40765320800989,57.58318868508236],[-124.40736460812255,57.58303494113648],[-124.40716801674748,57.582832965642226],[-124.40695218028196,57.58264085012746],[-124.40671724009101,57.58245523207054],[-124.40646519364178,57.58227837821416],[-124.40614267094242,57.582135436049924],[-124.40581364074208,57.58199802141731],[-124.40548038289134,57.58186167629],[-124.40514712743607,57.581725330338806],[-124.40493738145489,57.58163757294442],[-124.40409603696953,57.58059686606645]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":37,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"9","REGION_NUMBER":9,"REGION_NAME":"Peace","REGION_NUMBER_NAME":"9- Peace","FEATURE_AREA_SQM":190409488022.833,"FEATURE_LENGTH_M":2895937.7442,"OBJECTID":1,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-124.40409603696953,57.58059686606645],[-124.4023160178972,57.57839539458228],[-124.40204884699108,57.5748037751803],[-124.4026521662937,57.57081003746923],[-124.4038934196274,57.56636651176807],[-124.40525153061618,57.561126003135065],[-124.40414600573287,57.556779737806956],[-124.40064809022765,57.555625020175846],[-124.38896422125839,57.55540218812428],[-124.37838352038011,57.5532452033308],[-124.37289838011904,57.55047746839854],[-124.37155797240332,57.54819131425279],[-124.36844783149013,57.543891760010716],[-124.36460888480087,57.53828234659238],[-124.36063966736478,57.53455507210331],[-124.35863197798777,57.53381244682536],[-124.35114603245299,57.53063314892255],[-124.34282189502429,57.526770085157594],[-124.33439410793133,57.5230217985976],[-124.32500382241732,57.52029237713099],[-124.31619955603247,57.51945361911208],[-124.30962993125755,57.51873264203019],[-124.30794489041966,57.518666176536016],[-124.30053321511633,57.51697406033768],[-124.29838182482557,57.513142703919044],[-124.29856609981195,57.50902750942174],[-124.30057636819838,57.50367998802205],[-124.29786579060148,57.50041556945511],[-124.2892302031252,57.49705637745799],[-124.28648895660768,57.496356934994395],[-124.28004960108898,57.49507098087021],[-124.2654290788327,57.49373109859831],[-124.25182669625889,57.494968729231786],[-124.24362228904975,57.497209985251814],[-124.23932599596267,57.49980802326926],[-124.23820304548755,57.50277134128228],[-124.23464875274736,57.505199750146296],[-124.22276292685713,57.50570388050508],[-124.22222861901946,57.50569667552179],[-124.21496868438858,57.50495041062003],[-124.21497464824985,57.504912364808206],[-124.21497889347094,57.504866446135125],[-124.21498313868179,57.50482052746377],[-124.21498738388237,57.504774608794136],[-124.21498954199164,57.50472866186303],[-124.21499373453769,57.50468386385369],[-124.21499589263411,57.50463791692609],[-124.21499799808902,57.50459309065701],[-124.21500010353894,57.50454826438969],[-124.2150001219152,57.50450340986105],[-124.21500008765535,57.50445967599075],[-124.2149979663317,57.50441591385898],[-124.2149958450129,57.5043721517289],[-124.214993723699,57.50432838960043],[-124.21498951533329,57.504284599210436],[-124.21498525434107,57.5042419294782],[-124.21498094072213,57.50420038040394],[-124.21497250564957,57.50415765414764],[-124.21496610500672,57.50411607681247],[-124.21495547765078,57.50407556360704],[-124.21494490295458,57.504033929746086],[-124.2149342756442,57.50399341654187],[-124.21492150868036,57.503953995730015],[-124.21490028832127,57.5039167031719],[-124.21485996885833,57.50388588016098],[-124.21482512095398,57.503871951774855],[-124.21480258470973,57.503862675601354],[-124.21473038083411,57.503843755770006],[-124.21464544426067,57.503829148911215],[-124.21455408871587,57.50381781915473],[-124.21445641948422,57.503807525176065],[-124.2143586976514,57.5037983517808],[-124.2142630628947,57.50378920658785],[-124.2141717602194,57.503776755911346],[-124.21408891103766,57.50376217697099],[-124.21400804361731,57.50374986756845],[-124.21392931594183,57.50373646574114],[-124.21384844862783,57.503724156241034],[-124.21376758136623,57.503711846691495],[-124.2136888011806,57.50369956537626],[-124.213607934023,57.503687255729034],[-124.2135271195962,57.50367382537718],[-124.21344833956704,57.503661543918724],[-124.21336747256821,57.50364923412432],[-124.21328869264161,57.50363695257073],[-124.21320787843452,57.50362352202378],[-124.21312701159445,57.50361121208234],[-124.21304823182432,57.503598930385465],[-124.21296736508828,57.50358662034638],[-124.21288655110173,57.50357318960303],[-124.2128077714881,57.503560907762854],[-124.21272690491081,57.50354859757669],[-124.21264603838587,57.503536287341106],[-124.21256725892644,57.50352400535767],[-124.21248644521437,57.50351057436976],[-124.2124055788482,57.503498263987034],[-124.21232679954527,57.50348598186031],[-124.21224593328311,57.50347367137994],[-124.21216720680094,57.50346026850364],[-124.21208634064516,57.50344795792563],[-124.21200547454175,57.50343564729824],[-124.2119266954979,57.503423364933084],[-124.2118458822261,57.503409933553705],[-124.21176501628148,57.50339762277912],[-124.21168623739409,57.503385340270725],[-124.21160537155349,57.50337302939855],[-124.21152450576527,57.50336071847696],[-124.21144577977137,57.50334731517111],[-124.21136491408954,57.503335004151886],[-124.21128613546121,57.503322721404984],[-124.2112052698834,57.50331041028814],[-124.21112445710665,57.50329697846788],[-124.21104567863482,57.5032846955778],[-124.21096481321578,57.503272384313824],[-124.2108839478491,57.503260073000334],[-124.21080522228951,57.50324666931326],[-124.21072435702925,57.50323435790217],[-124.21064349182134,57.50322204644161],[-124.21056471366022,57.50320976326495],[-124.21048384855635,57.50319745170676],[-124.21040303627468,57.503184019445584],[-124.21032425827003,57.503171736125594],[-124.21024339332496,57.5031594244204],[-124.21016461542287,57.50314714100526],[-124.21008380336097,57.50313370854908],[-124.21000293857466,57.503121396696756],[-124.20992416082909,57.50310911313845],[-124.20984329614679,57.50309680118842],[-124.20976243151688,57.50308448918884],[-124.20968370671638,57.503071084834126],[-124.20960284219288,57.50305877273707],[-124.20952197772175,57.50304646059055],[-124.20944320028687,57.503034176745544],[-124.20936238872005,57.50302074384847],[-124.20928361139006,57.50300845990847],[-124.20920274712935,57.50299614756664],[-124.20912188292104,57.502983835175364],[-124.20904315855486,57.50297043043927],[-124.20896229445293,57.502958117950314],[-124.20888143040338,57.50294580541202],[-124.20880265338413,57.502933521185405],[-124.20872178943863,57.50292120854944],[-124.20864097836686,57.50290777521148],[-124.20856220150412,57.50289549084155],[-124.20848133771739,57.50288317805847],[-124.20840047398305,57.50287086522596],[-124.20832175010523,57.50285746006041],[-124.2082408864773,57.50284514713029],[-124.20816210987363,57.502832862522006],[-124.2080812463497,57.50282054949418],[-124.20800043571832,57.5028071157649],[-124.20792165927118,57.50279483101324],[-124.20784079590604,57.50278251783838],[-124.20775993259332,57.5027702046141],[-124.2076811563004,57.50275791971916],[-124.20760034594352,57.50274448574531],[-124.20751948278956,57.502732172373875],[-124.20744070665316,57.50271988733566],[-124.20735984360324,57.50270757386666],[-124.20727903346696,57.502694139696416],[-124.20720025748707,57.50268185451496],[-124.20711939459596,57.50266954089885],[-124.20704061871864,57.50265725562233],[-124.20695980880215,57.50264382125692],[-124.2068789460698,57.50263150749378],[-124.20680017034901,57.50261922207396],[-124.20671930772073,57.502606908213124],[-124.20663844514483,57.5025945943028],[-124.20655972246054,57.50258118808832],[-124.20647885999105,57.50256887408035],[-124.20639799757394,57.502556560023066],[-124.20631922216391,57.502544274316655],[-124.20623841274254,57.50253083951051],[-124.20615963743737,57.50251855370898],[-124.20607877523071,57.50250623945643],[-124.20599791307644,57.502493925154184],[-124.20591913792552,57.5024816392095],[-124.20583832877868,57.5024682041588],[-124.20575746678321,57.50245588970957],[-124.20567869178883,57.5024436036216],[-124.2055978298974,57.50243128907476],[-124.20551702097117,57.50241785382773],[-124.2054382461333,57.50240556759646],[-124.20535738440067,57.502393252902515],[-124.20527652272042,57.502380938159114],[-124.20519780095893,57.50236753113403],[-124.2051169393851,57.502355216292955],[-124.20503816480635,57.50234292982333],[-124.20495730333658,57.50233061488474],[-124.2048764419192,57.502318299896615],[-124.20479772042853,57.50230489263328],[-124.20471685911754,57.50229257754759],[-124.20463599785897,57.50228026241246],[-124.204557223591,57.502267975656245],[-124.2044764153797,57.502254539773226],[-124.20439555427993,57.50224222449105],[-124.20431678016848,57.50222993759154],[-124.20423591917276,57.50221762221168],[-124.20415511118209,57.50220418613237],[-124.20407633722718,57.50219189908951],[-124.20399547639028,57.50217958356265],[-124.20391670253794,57.50216729642477],[-124.20383584180507,57.502154980800206],[-124.20375503408899,57.50214154447637],[-124.2036762603932,57.502129257195215],[-124.20359539981916,57.502116941423594],[-124.20349918919257,57.502120115582855],[-124.20341555310065,57.50212233970136],[-124.20333191699895,57.50212456376684],[-124.20324828088746,57.50212678777928],[-124.20316667871404,57.502130160838526],[-124.20308304258056,57.50213238474613],[-124.20299935345068,57.50213572925016],[-124.20291571729517,57.502137953051594],[-124.2028320281383,57.50214129744947],[-124.20274839196075,57.5021435211448],[-124.20266678970704,57.50214689389465],[-124.2025831005086,57.50215023813449],[-124.20249946429684,57.50215246167192],[-124.2024157750714,57.5021558058056],[-124.20233208583126,57.50215914988608],[-124.2022505365158,57.502161401729126],[-124.2021668472488,57.50216474570477],[-124.20208315796708,57.502168089627226],[-124.20199946867064,57.50217143349665],[-124.20191583237808,57.5021736566638],[-124.20183214305466,57.502177000427025],[-124.2017505406478,57.502180372609935],[-124.20166685129506,57.502183716268135],[-124.20158316192757,57.502187059873314],[-124.20149952557631,57.50218928277643],[-124.20141583618185,57.50219262627538],[-124.20133423370453,57.5021959982006],[-124.20125054428075,57.50219934159459],[-124.20116685484227,57.50220268493558],[-124.20108321843229,57.502204907574594],[-124.20099952896685,57.50220825080928],[-124.20091583948665,57.50221159399094],[-124.20083423692428,57.502214965606704],[-124.20075060046781,57.50221718803475],[-124.20066691094607,57.5022205310584],[-124.2005832214096,57.502223874028786],[-124.20049958491886,57.50222609629769],[-124.20041589535545,57.50222943916193],[-124.2003342927104,57.50223281046829],[-124.20025065618546,57.50223503257919],[-124.20016696658047,57.50223837528551],[-124.2000833300335,57.502240597290246],[-124.19999964040153,57.502243939890334],[-124.19991809076608,57.50224619029069],[-124.19983445418734,57.50224841213759],[-124.19975076451631,57.502251754579746],[-124.19966712791556,57.50225397632042],[-124.19958349130505,57.50225619800814],[-124.19949985468477,57.50225841964272],[-124.19941621805472,57.502260641224396],[-124.19933466834888,57.5022628912639],[-124.19925103169935,57.50226511274064],[-124.19916739504,57.50226733416439],[-124.19908375837089,57.50226955553506],[-124.19900012169202,57.5022717768527],[-124.19891648500337,57.50227399811713],[-124.1988349352393,57.502276247847675],[-124.19875135164322,57.502277348359584],[-124.19866771492778,57.50227956946627],[-124.19858413131956,57.50228066987212],[-124.19850054770649,57.50228177022496],[-124.19841691096667,57.502283991172675],[-124.19833332734144,57.502285091419445],[-124.19825183064586,57.50228622014155],[-124.19816824701098,57.502287320283706],[-124.19808466337126,57.50228842037289],[-124.19800107972671,57.50228952040904],[-124.1979174960773,57.50229062039221],[-124.19783396556217,57.50229059967489],[-124.19775038190555,57.50229169955216],[-124.19766685138818,57.50229167872896],[-124.19758326772435,57.5022927785003],[-124.19750182413894,57.50229278611123],[-124.1974182936193,57.502292765130484],[-124.19733476309972,57.50229274409686],[-124.19725123258026,57.50229272301031],[-124.19716770206088,57.50229270187078],[-124.19708417154162,57.5022926806784],[-124.19700064102243,57.502292659433046],[-124.19691711050334,57.50229263813484],[-124.19683363315295,57.502291496136465],[-124.19675010263651,57.502291474732324],[-124.19666662529367,57.50229033262822],[-124.1965830947799,57.502290311118365],[-124.19649961744464,57.50228916890854],[-124.19641822704763,57.50228805520302],[-124.19633474972227,57.50228691288886],[-124.19625127240197,57.502285770521645],[-124.19616779508665,57.50228462810179],[-124.1960843177764,57.502283485628915],[-124.19600084047111,57.5022823431033],[-124.19591736317086,57.502281200524706],[-124.19583388587564,57.502280057893394],[-124.19575040858543,57.50227891520914],[-124.19566698450322,57.502276651825376],[-124.19558350722549,57.502275509035435],[-124.19550008316072,57.50227324554608],[-124.19541660589549,57.502272102650544],[-124.19533318184811,57.50226983905558],[-124.19524970459541,57.50226869605426],[-124.19516628056543,57.50226643235375],[-124.19508280332522,57.50226528924673],[-124.19499937931265,57.50226302544057],[-124.19491595531004,57.50226076158161],[-124.19483253131736,57.50225849766987],[-124.1947490541046,57.50225735435159],[-124.19466563012934,57.50225509033424],[-124.19458220616403,57.50225282626405],[-124.19449878220863,57.50225056214115],[-124.19441535826316,57.50224829796535],[-124.19433193432766,57.50224603373687],[-124.19425059733122,57.5022437980471],[-124.1941671734154,57.50224153371433],[-124.19408374950952,57.502239269328804],[-124.19400032561356,57.502237004890425],[-124.19391695498207,57.50223361975342],[-124.19383353110847,57.5022313552095],[-124.1937501072448,57.50222909061285],[-124.19366668339106,57.50222682596337],[-124.19358325954727,57.50222456126119],[-124.1934998889802,57.50222117586046],[-124.19341646515875,57.50221891105263],[-124.19333304134722,57.50221664619205],[-124.19324961754566,57.5022143812787],[-124.19316624703063,57.502210995666964],[-124.1930828232514,57.50220873064816],[-124.1929993994821,57.502206465576435],[-124.19291597572274,57.502204200452],[-124.19283260525977,57.5022008146293],[-124.19274918152274,57.502198549399324],[-124.1926657577957,57.502196284116536],[-124.19258238737237,57.50219289813563],[-124.19249896366763,57.50219063274734],[-124.19241553997284,57.50218836730627],[-124.19233216958915,57.50218498116715],[-124.19224874591673,57.50218271562053],[-124.19216532225423,57.502180450021065],[-124.19208189860167,57.502178184368915],[-124.19199852827003,57.50217479801885],[-124.19191510463985,57.50217253226101],[-124.19183168101955,57.50217026645056],[-124.19174825740924,57.50216800058722],[-124.19166483380887,57.50216573467113],[-124.1915814635417,57.50216234805732],[-124.19149803996368,57.50216008203578],[-124.19141461639559,57.502157815961255],[-124.19133327975955,57.502155578471786],[-124.19124985621119,57.50215331229313],[-124.19116643267274,57.50215104606168],[-124.19108306248219,57.502147659132696],[-124.19099963896612,57.5021453927957],[-124.19091626880282,57.502142005761314],[-124.19083284530909,57.5021397393188],[-124.19074947517306,57.5021363521789],[-124.19066610505189,57.50213296498643],[-124.19058273494558,57.50212957774109],[-124.19049936485412,57.502126190443136],[-124.19041604813508,57.50212168244803],[-124.19033267807579,57.502118295044625],[-124.19024930803135,57.50211490758856],[-124.19016599136671,57.50211039943544],[-124.19008262135443,57.50210701187399],[-124.18999930472687,57.50210250361555],[-124.18991598811905,57.502097995304545],[-124.18983261815627,57.502094607585036],[-124.18974930158552,57.50209009916862],[-124.18966598503454,57.50208559069965],[-124.18958266850332,57.50208108217804],[-124.18949935199187,57.50207657360384],[-124.18941598211319,57.50207318562087],[-124.18933266563882,57.50206867694125],[-124.18924934918418,57.50206416820908],[-124.18916603274936,57.5020596594242],[-124.18908271633427,57.50205515058674],[-124.18899939993892,57.50205064169664],[-124.1889160301617,57.50204725339759],[-124.18883271380346,57.502042744402125],[-124.18874939746496,57.50203823535411],[-124.18866608114625,57.50203372625336],[-124.18858271143584,57.502030337743534],[-124.18849939515421,57.50202582853756],[-124.18841602547595,57.50202243992239],[-124.1883327092314,57.502017930611025],[-124.18824933958534,57.5020145418905],[-124.18816596995413,57.50201115311721],[-124.18808265376397,57.50200664364786],[-124.18799928416496,57.50200325476926],[-124.1879159145808,57.5019998658379],[-124.18783254501152,57.50199647685375],[-124.18774917545707,57.50199308781698],[-124.18766575247908,57.50199081937065],[-124.1875823829519,57.50198743022833],[-124.18750104690614,57.501985190374796],[-124.18741767740602,57.50198180112839],[-124.18733425447255,57.50197953247228],[-124.18725083154902,57.5019772637633],[-124.18716740863547,57.50197499500164],[-124.18708393227632,57.501973846830026],[-124.18700050938024,57.50197157796272],[-124.18691703303361,57.50197042968547],[-124.1868356970634,57.501968189421476],[-124.18675222072919,57.5019670410399],[-124.18666869093221,57.50196701324812],[-124.18658521460566,57.50196586476071],[-124.18650168481138,57.50196583686314],[-124.18641820849243,57.50196468826995],[-124.18633676560873,57.5019646889834],[-124.18625318233715,57.501965781570966],[-124.18616965254334,57.50196575346297],[-124.18608606926462,57.50196684594457],[-124.1860045728889,57.50196796709521],[-124.18592098960059,57.50196905947213],[-124.18583740630747,57.50197015179608],[-124.18575376951476,57.50197236470938],[-124.1856722196202,57.50197460629697],[-124.1855885828081,57.50197681910541],[-124.18550494598621,57.501979031860834],[-124.18542334255817,57.50198239393674],[-124.18533965220739,57.501985727229574],[-124.18525804875033,57.5019890892031],[-124.18517435837033,57.50199242239107],[-124.18509066797566,57.50199575552581],[-124.18500901095825,57.5020002379874],[-124.18492526701262,57.50200469165928],[-124.18484360995652,57.50200917401848],[-124.18475986597184,57.5020136275853],[-124.18467820887703,57.502018109842034],[-124.18459446485326,57.50202256330386],[-124.18451066727837,57.502028137354344],[-124.18442895658912,57.50203374009861],[-124.1843452125017,57.50203819340219],[-124.18426350176644,57.50204379604402],[-124.18417970409621,57.50204936988423],[-124.1840979397688,57.50205609306528],[-124.18401414204719,57.502061666800444],[-124.18393243121264,57.50206726923711],[-124.183850666803,57.50207399226482],[-124.1837668690057,57.50207956584288],[-124.1836851045403,57.50208628876799],[-124.1836012531332,57.502092982882424],[-124.18351948860966,57.502099705704985],[-124.18343569070713,57.50210527907261],[-124.18335392612786,57.50211200179245],[-124.1832700746057,57.50211869569644],[-124.1831883099683,57.50212541831364],[-124.18310440481427,57.50213323275373],[-124.18302264011632,57.50213995526836],[-124.18294087538945,57.502146677732334],[-124.18285702371807,57.50215337137378],[-124.18277525893305,57.502160093735036],[-124.18269140720292,57.5021667872712],[-124.182609588772,57.50217463017109],[-124.18252573698062,57.50218132360193],[-124.18244397207687,57.502188045757926],[-124.18236012022678,57.50219473908345],[-124.18227835526488,57.50220146113684],[-124.18219450335602,57.502208154357234],[-124.18211273833602,57.502214876307875],[-124.18203097328708,57.50222159820799],[-124.18194712129022,57.50222829127108],[-124.18186535618318,57.50223501306846],[-124.18178150412757,57.50224170602626],[-124.18169973896235,57.50224842772105],[-124.18161588684802,57.50225512057364],[-124.18153412162467,57.50226184216579],[-124.18145032307363,57.502267414272175],[-124.18136855779458,57.50227413576168],[-124.1812847591922,57.50227970776287],[-124.1812030474868,57.50228530850906],[-124.18111924883551,57.50229088040516],[-124.18103539652533,57.50229757288879],[-124.18095368474481,57.5023031734803],[-124.18086993965683,57.50230762457734],[-124.1807882278303,57.5023132250664],[-124.18070442905669,57.50231879669889],[-124.18062068390513,57.50232324763764],[-124.18053902565734,57.50232772733184],[-124.1804552804667,57.50233217816546],[-124.18037362218024,57.502336657757205],[-124.18028987695058,57.502341108485815],[-124.18020613170131,57.50234555916128],[-124.18012447335676,57.50235003859868],[-124.18004072806845,57.50235448916913],[-124.17995698276052,57.502358939686324],[-124.17987329110171,57.50236226951008],[-124.17979163268201,57.50236674874134],[-124.17970788731793,57.50237119910037],[-124.17962414193424,57.502375649406304],[-124.17954248345646,57.502380128483345],[-124.17945873803373,57.502384578684214],[-124.17937504627481,57.50238790819167],[-124.17929130081534,57.50239235828618],[-124.17920964226245,57.502396837157136],[-124.17912595045473,57.50240016650643],[-124.17904220493911,57.5024046164428],[-124.17895845940386,57.50240906632591],[-124.17887476754721,57.50241239551596],[-124.17879310890221,57.50241687412896],[-124.17870941701389,57.50242020321402],[-124.17862572511092,57.50242353224589],[-124.17854197948526,57.50242798186452],[-124.17845828755051,57.502431310790186],[-124.17837668252872,57.50243466850542],[-124.17829293684936,57.502439117965956],[-124.17820924486828,57.502442446733546],[-124.17812555287254,57.50244577544797],[-124.17804186086214,57.502449104109225],[-124.17796025576536,57.50245246156687],[-124.17787661745345,57.50245466948366],[-124.17779292540168,57.50245799798697],[-124.17770923333525,57.50246132643722],[-124.17762559498928,57.502463534194696],[-124.177541902896,57.502466862538725],[-124.17745826452811,57.50246907019009],[-124.17737665933694,57.50247242728654],[-124.1772930209472,57.502474634833085],[-124.17720938254777,57.50247684232666],[-124.17712574413862,57.50247904976702],[-124.17704210571975,57.50248125715445],[-124.17695846729116,57.50248346448883],[-124.17687696953935,57.50248457999738],[-124.17679333109389,57.502486787227],[-124.17670969263868,57.50248899440348],[-124.17662610793839,57.502490080887775],[-124.17654252323331,57.50249116731917],[-124.17645893852344,57.50249225369743],[-124.17637535380882,57.50249334002278],[-124.17629385601872,57.502494455170876],[-124.17621027129454,57.502495541391646],[-124.17612668656557,57.502496627559296],[-124.17604315561364,57.50249659303501],[-124.17595962466184,57.50249655845789],[-124.17587603992345,57.502497644466686],[-124.17579459589865,57.50249763866735],[-124.17571106494476,57.50249760393268],[-124.1756275877851,57.502496448506356],[-124.17554411063053,57.502495293027216],[-124.175460633481,57.50249413749511],[-124.175377210138,57.5024918612716],[-124.17529587373326,57.50248961388688],[-124.17521245041004,57.502487337559074],[-124.17512902709682,57.5024850611786],[-124.17504565760476,57.50248166410666],[-124.1749622881276,57.502478266982074],[-124.17487891866534,57.50247486980482],[-124.17479560303654,57.50247035193647],[-124.17471437435408,57.50246586291633],[-124.17463100494119,57.50246246558233],[-124.17454768936902,57.502457947557396],[-124.17446442764495,57.502452308841576],[-124.17438111211484,57.50244779071128],[-124.17429785043771,57.502442151890314],[-124.17421453494966,57.502437633654836],[-124.1741312733195,57.502431994728695],[-124.17405009863792,57.502426384661284],[-124.17396683705677,57.50242074563136],[-124.17388357550035,57.50241510654885],[-124.17380031396861,57.50240946741373],[-124.17371705246157,57.50240382822614],[-124.17363379097927,57.50239818898598],[-124.17355052952165,57.502392549693184],[-124.1734672680887,57.50238691034788],[-124.1733860936014,57.50238129987189],[-124.17330283221752,57.50237566042283],[-124.17321957085834,57.50237002092116],[-124.17313630952387,57.502364381366945],[-124.17305299434433,57.502359862397824],[-124.1729697330568,57.502354222738425],[-124.17288647179402,57.502348583026546],[-124.17280315667881,57.502344063899386],[-124.17272192850152,57.50233957365205],[-124.17263861342565,57.50233505442105],[-124.17255529836955,57.502330535137546],[-124.172507691097,57.50227829137432],[-124.17246992575944,57.502238519287346],[-124.17243007359076,57.50219871825399],[-124.17239027539453,57.50215779657295],[-124.17235042339388,57.50211799551838],[-124.17231057147666,57.50207819445312],[-124.17226863274166,57.502038364437745],[-124.17222669409455,57.50199853441051],[-124.17218684243213,57.50195873331199],[-124.172142817064,57.50191887431999],[-124.17210087868054,57.50187904425688],[-124.17205894038497,57.501839214181736],[-124.17201486138978,57.5018004757879],[-124.17197292327103,57.501760645688236],[-124.1719288983566,57.50172078663176],[-124.1718869604158,57.501680956507485],[-124.17184293568381,57.50164109742512],[-124.171800997921,57.50160126727628],[-124.17175697337142,57.501561408168],[-124.1717149818786,57.501522698630815],[-124.17167304438046,57.501482868445436],[-124.17162902010216,57.50144300929852],[-124.17158916964785,57.50140320803891],[-124.17154723241337,57.50136337781769],[-124.17150529526678,57.50132354758458],[-124.17146544506723,57.50128374629162],[-124.17142559495112,57.501243944988076],[-124.17138579883574,57.501203023038144],[-124.17134594888766,57.50116322171331],[-124.17130818587329,57.501123449332546],[-124.17127047685842,57.50108255630679],[-124.17123480084892,57.50104281286305],[-124.1711991788365,57.50100194877554],[-124.17116355690065,57.50096108467991],[-124.17112996795596,57.50092137016904],[-124.1710964330068,57.50088053501561],[-124.17106498496416,57.50083972881362],[-124.17103353698907,57.50079892260563],[-124.17100422983934,57.500757024715924],[-124.17097486882552,57.50071624745636],[-124.17094759470011,57.50067549915201],[-124.17092246138643,57.500633659169395],[-124.17089732812802,57.50059181918347],[-124.17087428174344,57.50055000815587],[-124.17085332222571,57.5005082260875],[-124.17083236275401,57.50046644401743],[-124.17081349013996,57.500424690907955],[-124.17079675831002,57.50038184612547],[-124.17078211332462,57.50033903030548],[-124.17076955517663,57.50029624344864],[-124.17075699705694,57.500253456592205],[-124.1707486664996,57.50020960702868],[-124.17074242275876,57.500165786429996],[-124.1707361790323,57.50012196583273],[-124.17073410890515,57.50007820316424],[-124.17073203878275,57.5000344404975],[-124.1707300226,57.49998955719807],[-124.17073217999226,57.49994473182806],[-124.17073433737941,57.49989990645967],[-124.1707385815417,57.49985511005672],[-124.17074282569398,57.499810313655374],[-124.17074915661158,57.49976554621916],[-124.17075762822077,57.49971968711367],[-124.17076604587615,57.49967494864358],[-124.17077451744478,57.499629089540754],[-124.1707850757583,57.499583259402115],[-124.17079766687696,57.49953857886107],[-124.17080822513745,57.49949274872417],[-124.17082087013031,57.49944694755071],[-124.17083351509274,57.49940114637777],[-124.17084824677754,57.49935537416749],[-124.17086083774647,57.49931069362931],[-124.17087556936335,57.499264921419645],[-124.17089030094472,57.499219149210035],[-124.17090503249064,57.49917337700067],[-124.17091976400107,57.499127604791525],[-124.17093444154851,57.49908295321596],[-124.17094917298849,57.499037181007196],[-124.17096390439302,57.49899140879862],[-124.170978581836,57.4989467572235],[-124.17099325924451,57.4989021056486],[-124.1710079905436,57.49885633344045],[-124.17102058115952,57.498811652906646],[-124.17103317174583,57.49876697237338],[-124.17104570837878,57.49872341247379],[-124.17105829890633,57.49867873194161],[-124.1710708894043,57.498634051409944],[-124.17108139316169,57.49858934192063],[-124.17109189689435,57.49854463243236],[-124.17110448730843,57.498499951902744],[-124.17111499098922,57.49845524241606],[-124.17112554856631,57.49840941229734],[-124.17113605219733,57.498364702812616],[-124.17114660972389,57.49831887269589],[-124.17115502661139,57.498274134256],[-124.17116558408989,57.49822830414136],[-124.17117608762383,57.498183594660524],[-124.17118455836552,57.49813773559134],[-124.17119511577057,57.49809190547985],[-124.17120353255073,57.49804716704576],[-124.17121408990775,57.49800133693638],[-124.171222560563,57.497955477872225],[-124.17123311787164,57.497909647765034],[-124.1712436751548,57.49786381765894],[-124.17125214574372,57.49781795859822],[-124.17126264906247,57.49777324912659],[-124.17127111960835,57.49772739006845],[-124.1712816767951,57.49768155996655],[-124.1712922339564,57.49763572986577],[-124.17130279109223,57.49758989976582],[-124.17131329428841,57.4975451902991],[-124.17132385137373,57.497499360201196],[-124.1713344084336,57.497453530104245],[-124.171344965468,57.4974077000083],[-124.17135755520815,57.49736301949917],[-124.17136811218951,57.49731718940503],[-124.1713807018725,57.49727250889723],[-124.17139125880084,57.49722667880483],[-124.17140384842664,57.49718199829834],[-124.17141857856492,57.497136226113476],[-124.17143116812865,57.49709154560796],[-124.1714437576628,57.497046865102945],[-124.17145843379153,57.49700221355066],[-124.17147310988578,57.496957561998556],[-124.17148778594556,57.49691291044651],[-124.17150246197086,57.49686825889459],[-124.17151917066899,57.4968247569255],[-124.17153593323545,57.49678013432453],[-124.17155264185656,57.49673663235452],[-124.17156940434487,57.49669200975271],[-124.17158819949381,57.49664853673199],[-124.17160699459976,57.49660506371026],[-124.17162578966273,57.49656159068748],[-124.17164667128044,57.49651814661291],[-124.17166749894821,57.49647582316785],[-124.17168838047118,57.49643237908993],[-124.17170920804553,57.4963900556415],[-124.17173212216197,57.4963477611392],[-124.17175503622741,57.49630546663446],[-124.17178003682574,57.49626320107442],[-124.17180498347064,57.49622205614221],[-124.17182998395857,57.49617979057571],[-124.17185701707179,57.49613867458288],[-124.17188405012651,57.496097558586044],[-124.17191311580096,57.49605759216093],[-124.17194014873736,57.496016476155496],[-124.17197130085914,57.49597653866494],[-124.17200245291545,57.49593660116842],[-124.17203360490632,57.49589666366593],[-124.17206684339352,57.49585675510003],[-124.17210002792237,57.4958179671579],[-124.17213738549862,57.4957792370915],[-124.17217474299878,57.49574050701591],[-124.17221413309113,57.49570292650184],[-124.17225560965706,57.495665374916875],[-124.17229911880798,57.49562897288954],[-124.1723426278756,57.49559257084894],[-124.17238822340543,57.495556197732654],[-124.17243590539158,57.495519853538426],[-124.17248353340976,57.49548462995859],[-124.17253324787946,57.49544943529791],[-124.1725849949213,57.49541539018429],[-124.17263679574259,57.49538022442088],[-124.17269062913174,57.49534620820134],[-124.17274446242456,57.49531219196085],[-124.17280038215162,57.49527820463035],[-124.17285624791323,57.49524533790761],[-124.17291420010531,57.49521250009113],[-124.1729721521973,57.4951796622502],[-124.17303010418921,57.495146824384705],[-124.17309014260276,57.49511401542094],[-124.17315012705613,57.49508232706134],[-124.1732122517826,57.49504954696919],[-124.17327432254913,57.49501788747912],[-124.1733363932123,57.49498622796078],[-124.17339846377212,57.49495456841398],[-124.17346053422854,57.49492290883893],[-124.17352463724622,57.494892398785304],[-124.17358879400436,57.49486076807089],[-124.17365295065574,57.49482913732614],[-124.1737170533609,57.49479862718143],[-124.17378115596321,57.49476811700638],[-124.17384531229823,57.494736486170716],[-124.17390941469283,57.4947059759349],[-124.17397351698457,57.49467546566865],[-124.17403767300323,57.49464383474191],[-124.17410177508728,57.494613324415056],[-124.17416587706843,57.494582814057765],[-124.17422997894671,57.49455230367026],[-124.1742941345442,57.49452067262201],[-124.17435614972628,57.49449013326743],[-124.17441816480874,57.494459593884706],[-124.17448023360804,57.49442793384305],[-124.17454224848939,57.49439739440352],[-124.17460431708382,57.494365734305276],[-124.17466429909472,57.494334045277306],[-124.17472422719652,57.49430347685332],[-124.17478420900926,57.49427178777246],[-124.17484622339177,57.494241248194],[-124.17490823767464,57.49421070858723],[-124.17497233832988,57.49418019784863],[-124.1750385253526,57.494149715975105],[-124.17510465847157,57.49412035469943],[-124.17517079148843,57.49409099339133],[-124.17523901086878,57.49406166094305],[-124.17530931660802,57.494032357351365],[-124.17537962223889,57.49400305372298],[-124.17544987397415,57.49397487068811],[-124.17552221206485,57.49394671650427],[-124.1755946038313,57.493917441651114],[-124.17566897438145,57.49389043690503],[-124.17573922569416,57.493862253718724],[-124.17618045637329,57.49376070930196],[-124.17653709806338,57.49368154181543],[-124.17689577096597,57.493603522865946],[-124.17725444239657,57.49352550294566],[-124.17761514506637,57.493448631540026],[-124.17797381355975,57.493370609672795],[-124.17833044785672,57.493291437360796],[-124.17868296151599,57.493211085783145],[-124.17903146189185,57.4931273137112],[-124.17937386250406,57.49304009235089],[-124.17970807689335,57.49294939292887],[-124.18003421232767,57.49285297424643],[-124.18034001854254,57.492745060341065],[-124.18054284970881,57.49256395617059],[-124.1806386890028,57.492349976146784],[-124.18062517817178,57.49215242826722],[-124.18049691800806,57.49195329597705],[-124.18037288551267,57.49175310058859],[-124.18035750449927,57.491551041454294],[-124.18040476690909,57.49134872605141],[-124.18047508549273,57.491144486312685],[-124.18054123072412,57.490940188956436],[-124.18057190836184,57.49073540187652],[-124.18055668759816,57.490529981058536],[-124.180535208205,57.49032447385072],[-124.18054710909782,57.490119427610765],[-124.18057569979955,57.489914611868954],[-124.18061263511719,57.48970991138621],[-124.1806537424767,57.48950526854269],[-124.18069062335044,57.489301688739175],[-124.18410018474952,57.45502531446185],[-124.12101685115753,57.44933276477622],[-124.12132324939336,57.44920930400977],[-124.12162147573012,57.449082361891094],[-124.12187923764687,57.44893017198667],[-124.12217948859524,57.44880437893438],[-124.12249179892699,57.44868772808246],[-124.12280821993573,57.44857225650791],[-124.1231104383891,57.44844873222064],[-124.12338853193859,57.44830692168296],[-124.1236482549547,57.44815699925662],[-124.12391620105409,57.44800943628009],[-124.12421035201395,57.44788018789259],[-124.12455258159116,57.44779087126404],[-124.12490478731426,57.44771066670747],[-124.12524109329097,57.44761453585251],[-124.1255595257244,57.447500208018646],[-124.12586786798362,57.44737900767625],[-124.12617609793601,57.447260047753275],[-124.12651053351021,57.4471594017673],[-124.12683882606295,57.447056424839836],[-124.12712495521392,57.446920328030295],[-124.12742720167904,57.44679567344441],[-124.12773147487142,57.44667216838574],[-124.12803377249612,57.446546391869404],[-124.12834807507556,57.446430877554384],[-124.12867246423168,57.44632223402939],[-124.12900880351458,57.44622497309977],[-124.12935895663286,57.44614360654735],[-124.12973328787554,57.44607940288069],[-124.13011984537289,57.44602097860991],[-124.1304921453744,57.44595562262195],[-124.13082375886125,57.445869503536834],[-124.1310946180668,57.44574663785832],[-124.13129671780538,57.44558018423671],[-124.13144804196298,57.44538609717507],[-124.1315646008843,57.4451780602991],[-124.13166432357762,57.44497314840556],[-124.13173876540714,57.44477348434218],[-124.13176977835258,57.444566475731314],[-124.13176536791858,57.44435896430896],[-124.13171900857365,57.44415646415142],[-124.13160569673308,57.443958620234156],[-124.13150494313233,57.44375983318959],[-124.13148364488319,57.44355656748681],[-124.13151668686857,57.44335070929806],[-124.13156014670527,57.443144999049636],[-124.13156812934741,57.44293990649229],[-124.13152807864537,57.44273637469797],[-124.13146297006446,57.442533608484645],[-124.13139161138594,57.442330753519414],[-124.13133280999564,57.44212695550522],[-124.13130115071861,57.44192242156556],[-124.1313031038604,57.44171275823438],[-124.13135681570847,57.44151055795663],[-124.13157534014341,57.4413488234388],[-124.13178580357162,57.44118136746073],[-124.1318954922688,57.44098556847364],[-124.13198670317571,57.440783900445695],[-124.13205510457378,57.440579665950835],[-124.13209844836362,57.44037619713346],[-124.13208975969043,57.44017086843944],[-124.13204981908922,57.439965096166304],[-124.13202237966057,57.439759501367746],[-124.13204911011363,57.43955467554906],[-124.13209903298774,57.43934457227713],[-124.132182015159,57.43914054498326],[-124.13231823051275,57.43895633601509],[-124.13259199865428,57.43881556860974],[-124.13294690229968,57.438720805454196],[-124.13331051773199,57.438660926458105],[-124.13369205850402,57.43861812078855],[-124.13406559440521,57.438568472487646],[-124.13440508460998,57.438490307011755],[-124.13470334809604,57.438359974749915],[-124.13494903389241,57.43819637786826],[-124.135136987205,57.438019627692526],[-124.1352859588269,57.43782999018697],[-124.13541025815897,57.43763327493531],[-124.1355241395445,57.43743641200236],[-124.13559048751402,57.437231026176924],[-124.13566297494266,57.43702797002338],[-124.13583216946805,57.43685095337464],[-124.13608359677025,57.43669752815527],[-124.13635974717496,57.43655005934536],[-124.13660716835878,57.43639321247773],[-124.1368157183706,57.43622123743174],[-124.13701204113534,57.43604348231424],[-124.13719191540893,57.43586100875483],[-124.13735112006009,57.435674878400334],[-124.13747934885417,57.435482702769306],[-124.13757868541533,57.4352845114425],[-124.13765735333602,57.43508266354627],[-124.13773190884777,57.43487963611147],[-124.13781676985873,57.43467899720028],[-124.13791199102984,57.43447962623435],[-124.13797815655187,57.43427760139478],[-124.1379839648136,57.43407360108027],[-124.13795024817473,57.43386792011145],[-124.13793741798415,57.43366141342727],[-124.13794766662984,57.433451869403015],[-124.13788643191795,57.43325476971863],[-124.1377181378446,57.4330729747011],[-124.13750999267046,57.432896222009056],[-124.13732498255223,57.43271531119506],[-124.1371674378321,57.432526939680486],[-124.13700775678456,57.432339659066365],[-124.13682258724654,57.43216210929564],[-124.13659077001856,57.432000718558506],[-124.13632710599552,57.4318512109331],[-124.13605067163508,57.43170712850181],[-124.13577188202214,57.43156861875945],[-124.13548032203938,57.43143553408927],[-124.13520159137211,57.43129590261774],[-124.13494002067043,57.43114642182752],[-124.13468486565397,57.430993667476926],[-124.13443190546515,57.430838701083815],[-124.13418311325896,57.430683793306],[-124.1339493430999,57.430520127475],[-124.13370263788194,57.43036524837507],[-124.1334195908915,57.43022891581397],[-124.1331237736427,57.430098008071646],[-124.13282357277988,57.429971522757675],[-124.1325147674521,57.429850521257364],[-124.13219072409706,57.42974275864426],[-124.13187106829582,57.429630572197325],[-124.1315796467557,57.429495238005146],[-124.13128806230067,57.42936326483165],[-124.13095481495708,57.429273309664545],[-124.13057771100566,57.429227583678255],[-124.13021612354974,57.42916301450621],[-124.12985908832285,57.429090659721524],[-124.12950874343201,57.42900942842895],[-124.12916273093157,57.42892489380464],[-124.1288167750345,57.42883923772853],[-124.12847082069358,57.42875358074917],[-124.12812486790885,57.428667922866474],[-124.12777897177777,57.42858114353321],[-124.12743307722297,57.428494363297155],[-124.12708926707644,57.42840761181103],[-124.12674337566924,57.428320829774734],[-124.12639754097593,57.42823292628923],[-124.12605373554828,57.42814617211676],[-124.12570784887504,57.42805938737777],[-124.12527345132231,57.42795003509373],[-124.12525914753702,57.427944224594235],[-124.1251937667416,57.42791750221362],[-124.12512844121241,57.427889659255605],[-124.12506311577872,57.427861816265725],[-124.12499992841767,57.42783288238457],[-124.12493674115264,57.42780394847377],[-124.12487355398362,57.427775014533374],[-124.12481042209419,57.42774496001804],[-124.12474723511897,57.4277160260184],[-124.12468410342701,57.42768597144401],[-124.12462310981262,57.42765482598687],[-124.12455997832005,57.427624771354466],[-124.12449898490516,57.42759362584141],[-124.12443793639575,57.427563600845694],[-124.12437694317862,57.42753245527764],[-124.12431595006127,57.42750130968211],[-124.12425495704365,57.42747016405926],[-124.12419396412582,57.42743901840886],[-124.1241329713077,57.42740787273094],[-124.12407203379416,57.42737560648104],[-124.12401312394877,57.427344490449926],[-124.12395213142995,57.42731334469071],[-124.12389119422083,57.427281078359734],[-124.12383020190326,57.42724993254566],[-124.12377129244983,57.42721881640953],[-124.12371030033,57.42718767054156],[-124.12364930830996,57.427156524646264],[-124.12358831638964,57.427125378723424],[-124.12352732456911,57.42709423277313],[-124.12346633284831,57.42706308679539],[-124.12340534122725,57.42703194079021],[-124.12334221172813,57.42700188558951],[-124.12328116507912,57.426971860072236],[-124.12322011852638,57.42694183452752],[-124.12315698932275,57.426911779240264],[-124.12309386021877,57.426881723923465],[-124.12303067597976,57.426852789120744],[-124.12296749183675,57.42682385428845],[-124.12290430778972,57.42679491942653],[-124.12283898585966,57.4267670753584],[-124.12277574676249,57.42673926097966],[-124.12271042502184,57.426711416849],[-124.1226451033767,57.42668357268666],[-124.12257764384671,57.42665681931171],[-124.12251221189311,57.42663121617113],[-124.1224447525492,57.42660446272925],[-124.12237718279307,57.42657995033956],[-124.12230758565245,57.42655428764425],[-124.12223996081617,57.42653089572823],[-124.1221703085982,57.426506353504315],[-124.12209851848564,57.4264829020552],[-124.12202875591942,57.42646060084319],[-124.12195691071462,57.426438269860654],[-124.12188506559404,57.42641593883936],[-124.12181108257012,57.426394698585625],[-124.1217391823453,57.42637348802809],[-124.12166514421106,57.42635336823561],[-124.12159110615505,57.42633324840196],[-124.12151498546417,57.42631309878606],[-124.12144089228514,57.42629409941095],[-124.12136471646915,57.42627507025118],[-124.12128854072925,57.42625604104757],[-124.12121236506546,57.426237011800225],[-124.12113613418832,57.426219103051295],[-124.12105990338287,57.42620119425847],[-124.12098158994353,57.42618325567245],[-124.1209032212817,57.42616643758207],[-124.12082699069119,57.42614852865513],[-124.12074862216906,57.42613171047319],[-124.12067025371614,57.42611489224487],[-124.12059188533244,57.426098073970024],[-124.12051143431833,57.42608122589207],[-124.12043306607403,57.42606440752312],[-124.12035464258672,57.426048709649585],[-124.12027627447857,57.426031891187705],[-124.120195768427,57.42601616345922],[-124.12011740045595,57.42599934490329],[-124.12003897723271,57.425983646842504],[-124.11996060939782,57.42596682819361],[-124.11988010361412,57.425951100272925],[-124.11980173591635,57.425934281529855],[-124.11972331295718,57.42591858328173],[-124.11964494539554,57.42590176444576],[-124.11956657790313,57.4258849455633],[-124.1194882104799,57.42586812663453],[-124.11940984312591,57.42585130765916],[-124.11933147584112,57.42583448863751],[-124.11925310862554,57.425817669569305],[-124.11917474147918,57.425800850454785],[-124.1190985124331,57.42578294053192],[-124.11902228345873,57.42576503056526],[-124.1189439718759,57.42574709077304],[-124.11886774304591,57.42572918071741],[-124.11879359696572,57.425711300401844],[-124.11871742363796,57.42569226971888],[-124.11864333306218,57.42567326877857],[-124.11856715988559,57.42565423800921],[-124.11849312482515,57.42563411644427],[-124.1184211725154,57.42561402462791],[-124.11834713761027,57.42559390298152],[-124.11827524082622,57.42557269054553],[-124.11820334412224,57.42555147807081],[-124.11813144749834,57.42553026555716],[-124.11806168899986,57.42550796225981],[-124.11799193058309,57.42548565892599],[-124.11792222763094,57.42546223501542],[-124.11785252476452,57.4254388110684],[-124.11778496003184,57.42541429634486],[-124.11771739538615,57.42538978158703],[-124.1176478589509,57.42536299591306],[-124.11757832261347,57.42533621020297],[-124.11750884176868,57.42530830391672],[-124.11743733376922,57.425279247249335],[-124.11736588127786,57.42524907000408],[-124.1172944843008,57.42521777218109],[-124.11722522549222,57.425185383589366],[-124.11715388415517,57.4251529651522],[-124.1170825429396,57.425120546677114],[-124.11701339530629,57.42508591689776],[-124.11694424779874,57.42505128708299],[-124.11687718305548,57.425016687047204],[-124.11681225648563,57.42498099625443],[-124.1167473854542,57.42494418489153],[-124.1166845971806,57.424907403315174],[-124.11662180902829,57.42487062171002],[-124.1165631862539,57.42483389971468],[-124.11650670164246,57.42479608697565],[-124.1164522997673,57.424758304034704],[-124.1163999806221,57.424720550894314],[-124.11635188224842,57.42468173684086],[-124.1163058111612,57.42464407313321],[-124.11626396082688,57.42460534852019],[-124.11622413775956,57.424567774258385],[-124.11618853542629,57.424529139097665],[-124.11615704295028,57.424491684118614],[-124.11612971575067,57.42445428878558],[-124.11610660924997,57.42441583256272],[-124.11608761256657,57.424378556529135],[-124.11607272568673,57.42434246068637],[-124.11606414206832,57.42430533378665],[-124.1160596682247,57.42426938708021],[-124.11606144217487,57.42423352985661],[-124.11607154649441,57.424197791942525],[-124.1160879540037,57.42416102297124],[-124.11611263640387,57.4241254938431],[-124.11614148393264,57.42409002436331],[-124.11617449657852,57.42405461452915],[-124.1162158949282,57.42401820344922],[-124.11625932035054,57.423982942719434],[-124.1163069662801,57.423946621085115],[-124.11635872184749,57.42391147961782],[-124.11641469789609,57.42387527723643],[-124.1164727564122,57.42383910465306],[-124.11653289738996,57.42380296186495],[-124.1165951208236,57.42376684886931],[-124.1166573995569,57.42372961530735],[-124.11672170531881,57.423693532071724],[-124.11678814893679,57.42365635808367],[-124.11685250986288,57.42361915424843],[-124.11691687066326,57.423581950382975],[-124.11698123133792,57.42354474648719],[-124.11704564729271,57.4235064220231],[-124.11710589800971,57.42346803790758],[-124.11716614860526,57.42342965376561],[-124.11722223397943,57.42339120997968],[-124.11727629209133,57.423351615825275],[-124.11732618499941,57.423311962035676],[-124.1173719127164,57.42327224861569],[-124.11741555779656,57.42323250537534],[-124.11745301056119,57.42319155216868],[-124.11748421563416,57.423150509539],[-124.11751131096192,57.42310828675704],[-124.11753210324132,57.4230670950972],[-124.11755086833583,57.423024753094055],[-124.11756963338858,57.42298241109004],[-124.11758637126319,57.422938918743945],[-124.11760305371097,57.42289654693502],[-124.1176197915097,57.42285305458796],[-124.11763444675168,57.42280953243809],[-124.11764904657312,57.42276713082565],[-124.11766370174864,57.42272360867578],[-124.11767627437919,57.42268005672405],[-124.11768890236668,57.422635384235534],[-124.11769939243267,57.422591802483545],[-124.11770993785959,57.422547100195004],[-124.11772042787717,57.42250351844469],[-124.11773097325496,57.42245881615778],[-124.11773943611105,57.422414084071214],[-124.11774784356368,57.42237047252283],[-124.11775630638031,57.422325740438495],[-124.11776274207034,57.422279858018015],[-124.11776912236218,57.42223509613608],[-124.11777550263898,57.422190334255404],[-124.11777980041848,57.42214554257624],[-124.11778618066774,57.42210078069861],[-124.11779053380644,57.42205486848562],[-124.11779483155298,57.4220100768111],[-124.11779918467089,57.42196416460141],[-124.11780139992706,57.42191934313045],[-124.11780575302669,57.421873430923945],[-124.11780802365085,57.42182748891966],[-124.11781023888867,57.421782667453726],[-124.11781250950203,57.421736725452966],[-124.11781269765244,57.42169075365446],[-124.11781491287682,57.421645932193755],[-124.11781510102385,57.421599960398765],[-124.11781737162048,57.42155401840495],[-124.11781755976409,57.421508046613546],[-124.1178177479073,57.42146207482396],[-124.11781788066988,57.421417223572455],[-124.11781806881223,57.42137125178642],[-124.11781825695412,57.4213252800021],[-124.11781844509557,57.42127930821975],[-124.1178185778567,57.421234456975164],[-124.11781668356728,57.421188455396965],[-124.11781687170995,57.42114248361988],[-124.11781700447246,57.421097632380466],[-124.11781511019174,57.4210516308075],[-124.11781524295603,57.4210067795716],[-124.11781543109953,57.42096080780161],[-124.11781348144798,57.42091592676974],[-124.11781366959316,57.420869955003305],[-124.1178138023585,57.420825103774284],[-124.11781185271583,57.42078022274766],[-124.117811985483,57.42073537152205],[-124.11781211824986,57.42069052029822],[-124.11781225101642,57.42064566907607],[-124.11781238378263,57.42060081785565],[-124.11781043415313,57.42055593683748],[-124.1178084845282,57.42051105582091],[-124.11780445251735,57.42046614500661],[-124.11780042051599,57.42042123419386],[-124.11779430613853,57.42037629358303],[-124.1177881917755,57.42033135297362],[-124.11778207742694,57.420286412365606],[-124.11777388071457,57.42024144195909],[-124.11776568402152,57.42019647155366],[-124.11775540497457,57.42015147134928],[-124.11774720832271,57.42010650094613],[-124.11773692932186,57.42006150074367],[-124.11772659496451,57.42001762107711],[-124.117716316012,57.41997262087641],[-124.11770395472274,57.41992759087548],[-124.11769367582126,57.4198825906765],[-124.11768131458801,57.41983756067681],[-124.11767103573757,57.41979256047956],[-124.11765867456027,57.41974753048139],[-124.11764839576087,57.4197025302856],[-124.11763597925663,57.41965862082322],[-124.11762570050801,57.41961362062914],[-124.11761542178371,57.419568620435996],[-124.11760514308368,57.41952362024372],[-124.1175948644079,57.419478620052416],[-124.11758458575645,57.41943361986203],[-124.1175763340764,57.41938977000988],[-124.11756605547082,57.41934476982141],[-124.11755994154264,57.41929982924071],[-124.11755174530477,57.41925485885792],[-124.11754563140789,57.41920991827993],[-124.1175394621404,57.419166098237426],[-124.11753543058907,57.419121187466054],[-124.11753139904725,57.41907627669626],[-124.11752736751491,57.419031365928056],[-124.1175253629163,57.41898760549917],[-124.11752549601452,57.41894275434207],[-124.11752562911245,57.41889790318671],[-124.11752784451215,57.41885308183685],[-124.11753000452188,57.41880938102237],[-124.11753430220861,57.41876458947959],[-124.11754068218006,57.41871982774208],[-124.11754700675243,57.41867618653964],[-124.11755338669418,57.418631424804865],[-124.11755976662093,57.41858666307153],[-124.11756817343455,57.41854305167634],[-124.11757871789466,57.418498349551705],[-124.11758718004968,57.41845361762509],[-124.11759766908054,57.41841003603576],[-124.11760821346924,57.41836533391388],[-124.11761875783318,57.41832063179287],[-124.11763132906201,57.41827708000819],[-124.11764395564269,57.41823240769068],[-124.11765658219377,57.41818773537368],[-124.1176691533355,57.418144183590236],[-124.11768177982779,57.41809951127409],[-124.1176964331703,57.418055989292725],[-124.11771114185763,57.41801134677829],[-124.11772585051048,57.41796670426403],[-124.11774050375152,57.41792318228268],[-124.11775521233594,57.417878539768445],[-124.11777194775621,57.41783504758702],[-124.11778873851401,57.417790434872224],[-124.11780339161541,57.41774691289031],[-124.11782018229754,57.417702300174874],[-124.11783697294031,57.41765768745905],[-124.11785370817024,57.417614195275355],[-124.11787258096716,57.41756961235696],[-124.11788931611775,57.41752612017194],[-124.11790610660192,57.41748150745393],[-124.11792492390063,57.417438045065545],[-124.11794171430428,57.41739343234622],[-124.11796053151885,57.41734996995601],[-124.11797732184199,57.41730535723552],[-124.11799619434126,57.41726077431097],[-124.11801501142814,57.41721731191782],[-124.11803180162903,57.41717269919545],[-124.1180506186318,57.41712923680043],[-124.11806949095804,57.41708465387206],[-124.1180862256708,57.417041161679904],[-124.11810509791172,57.41699657874972],[-124.11812183254514,57.41695308655637],[-124.11814070470078,57.4169085036244],[-124.11815749461837,57.416863890897616],[-124.11817631132521,57.41682042849592],[-124.11819310116229,57.41677581576791],[-124.11820983559826,57.41673232357142],[-124.11822870754155,57.41668774063519],[-124.11824544189817,57.416644248437414],[-124.11826223157665,57.41659963570711],[-124.11827693903868,57.41655499318451],[-124.11829367328195,57.416511500985514],[-124.11831046284543,57.41646688825416],[-124.11832511484177,57.41642336626294],[-124.11833982216207,57.416378723739996],[-124.11840658357626,57.41633482597505],[-124.11845832686622,57.41629968390854],[-124.1185100700607,57.416264541822706],[-124.11856181315972,57.416229399717636],[-124.1186135561633,57.41619425759324],[-124.1186652990714,57.41615911544954],[-124.11871704188407,57.41612397328653],[-124.11876878460124,57.41608883110417],[-124.11882052722298,57.41605368890253],[-124.11887226974926,57.416018546681634],[-124.11892401218009,57.415983404441306],[-124.11897580985355,57.41594714165027],[-124.1190275520919,57.415911999371325],[-124.1190772120941,57.41587682729392],[-124.1191289541434,57.4158416849773],[-124.11918069609725,57.415806542641405],[-124.11923243795562,57.41577140028611],[-124.1192842350473,57.415735137380025],[-124.11933597671319,57.41569999498612],[-124.11938563615429,57.415664822798604],[-124.11943737763117,57.41562968036694],[-124.1194891190126,57.41559453791598],[-124.11954091561948,57.415558274914176],[-124.11959265680841,57.41552313242472],[-124.11964231578203,57.415487960145526],[-124.11969405678194,57.41545281761814],[-124.11974585300108,57.41541655454014],[-124.11979551169432,57.41538138220626],[-124.11984725240818,57.415346239621776],[-124.11989904833662,57.41530997648661],[-124.11995078885796,57.415274833863634],[-124.12000044717733,57.41523966145668],[-124.12005224281504,57.415203398264445],[-124.12010398305033,57.41516825558428],[-124.12015364108936,57.41513308312265],[-124.12020538113562,57.41509794040472],[-124.1202571763856,57.41506167713614],[-124.12030683414426,57.415026504619775],[-124.12035857390451,57.41499136184483],[-124.12041036886377,57.41495509851925],[-124.12046002634209,57.41491992594828],[-124.12051176581627,57.414884783116136],[-124.12056356048485,57.41484851973354],[-124.1206132176828,57.414813347107916],[-124.12066495687097,57.41477820421866],[-124.12071675124882,57.41474194077907],[-124.12076640816645,57.41470676809865],[-124.12081814706856,57.41467162515244],[-124.12086994115572,57.41463536165569],[-124.12091959779302,57.4146001889207],[-124.12097133640908,57.41456504591735],[-124.12102313020553,57.41452878236356],[-124.12107486862914,57.41449363932159],[-124.12112452489252,57.414458466513494],[-124.1211762631271,57.41442332343368],[-124.12122805653584,57.41438705980357],[-124.12127979457793,57.41435191668524],[-124.12132945046743,57.414316743803916],[-124.12138118832053,57.41428160064784],[-124.12143298134156,57.41424533694139],[-124.12148471900217,57.41421019374663],[-124.12153437451776,57.41417502079212],[-124.12158611198937,57.41413987755963],[-124.1216379046227,57.414103613776874],[-124.12168964190184,57.41406847050565],[-124.12174137908553,57.41403332721527],[-124.12179311617379,57.4139981839055],[-124.12184277112836,57.413963010840895],[-124.12189450802761,57.41392786749335],[-124.12194630007914,57.413891603595665],[-124.12199803678594,57.413856460209516],[-124.1220497733973,57.41382131680403],[-124.12210150991316,57.41378617337927],[-124.12215324633361,57.41375102993514],[-124.1222049826586,57.413715886471856],[-124.12225671888818,57.4136807429892],[-124.12230845502229,57.41364559948715],[-124.12236019106096,57.41361045596589],[-124.1224119270042,57.413575312425344],[-124.12246366285196,57.413540168865346],[-124.12251539860429,57.41350502528622],[-124.12256921627305,57.413469911411674],[-124.12262095183263,57.41343476779299],[-124.12267268729677,57.413399624155],[-124.12272436744134,57.41336560102853],[-124.12277610271616,57.413330457352],[-124.12282991989807,57.413295343375935],[-124.1228816549801,57.41326019965994],[-124.12293338996672,57.413225055924606],[-124.12298715163867,57.41319106241798],[-124.12303888643407,57.4131559186433],[-124.12309062113405,57.41312077484925],[-124.12314443772992,57.41308566075076],[-124.12319611702735,57.41305163744782],[-124.12324993342831,57.41301652330824],[-124.12330161253777,57.41298249996595],[-124.12335542874386,57.41294738578526],[-124.1234071628687,57.41291224187288],[-124.12346092367652,57.41287824818158],[-124.12351473958854,57.41284313393886],[-124.12356641822635,57.4128091104974],[-124.12362017874653,57.412775116744015],[-124.1236739943661,57.41274000243919],[-124.12372775469282,57.412706008643745],[-124.1237794881465,57.412670864592215],[-124.12383324828153,57.41263687075559],[-124.12388700832065,57.41260287689812],[-124.12394076826382,57.41256888301962],[-124.12399458329664,57.41253376858968],[-124.12404834304633,57.41249977466914],[-124.12410210270009,57.41246578072767],[-124.1241558622579,57.41243178676516],[-124.12420962171981,57.41239779278172],[-124.12426546303851,57.41236382847433],[-124.12431922230675,57.412329834448066],[-124.12437298147904,57.41229584040071],[-124.12442674055539,57.412261846332406],[-124.12448258148132,57.41222788193672],[-124.12453634036402,57.4121938878256],[-124.12459009915078,57.41215989369341],[-124.12464593978166,57.41212592923134],[-124.12469964321056,57.412093055586666],[-124.12475548364584,57.41205909108006],[-124.12481132398156,57.41202512655055],[-124.1248671090586,57.41199228252878],[-124.12492294919689,57.411958317953804],[-124.12497873407989,57.4119254738865],[-124.12503451886673,57.411892629796434],[-124.12509238548323,57.41185981536762],[-124.12515025200005,57.411827000914116],[-124.1252080632684,57.41179530696655],[-124.12526592958763,57.41176249246401],[-124.12532379580719,57.411729677936954],[-124.12538160678352,57.41169798391566],[-124.1254414995792,57.411666319548196],[-124.12549936550148,57.411633504946515],[-124.12555925809795,57.41160184052722],[-124.12561915059489,57.41157017608139],[-124.12567904299225,57.41153851160916],[-124.1257388801573,57.411507967640745],[-124.12579877235738,57.41147630311572],[-124.1258607463617,57.411444668235966],[-124.125920638361,57.411413003657074],[-124.12598047513528,57.41138245958206],[-124.12604244883607,57.411350824619284],[-124.12610436731221,57.41132031015823],[-124.12616628568917,57.41128979566897],[-124.12622617719111,57.41125813095515],[-124.12628809536946,57.41122761641008],[-124.12635001344864,57.411197101836684],[-124.12641193142866,57.41116658723487],[-124.12647384930948,57.41113607260474],[-124.1265378489769,57.411105587607274],[-124.12659976665778,57.41107507291941],[-124.12666168423944,57.41104455820321],[-124.12672360172195,57.41101404345861],[-124.12678760098457,57.4109835583428],[-124.12684951826711,57.41095304354049],[-124.1269114354505,57.41092252870994],[-124.1269754344091,57.41089204350502],[-124.12703735139249,57.41086152861665],[-124.12710129505619,57.41083216388226],[-124.12716321184149,57.410801648936186],[-124.12722721039562,57.41077116361189],[-124.12728912698095,57.410740648608204],[-124.12735104346712,57.41071013357603],[-124.12741498663497,57.41068076869285],[-124.12747690292302,57.410650253603094],[-124.12754090097191,57.41061976813015],[-124.12760281706,57.41058925298252],[-124.12766473304892,57.41055873780664],[-124.12772867572095,57.41052937277476],[-124.12779059151175,57.41049885754119],[-124.1278525072034,57.41046834227915],[-124.12791442279588,57.41043782698886],[-124.12797633828916,57.410407311670134],[-124.1280382536833,57.41037679632316],[-124.12810016897825,57.41034628094774],[-124.12816208417404,57.41031576554397],[-124.12822399927065,57.41028525011185],[-124.12828596932414,57.4102536141213],[-124.12834580238159,57.410223069000004],[-124.12840771718045,57.410192553483775],[-124.12846755004442,57.41016200830874],[-124.12852951969528,57.41013037220669],[-124.12858935236396,57.41009982697779],[-124.12864923998183,57.41006816119248],[-124.12870907245686,57.41003761591076],[-124.12876895987743,57.410005950072446],[-124.1288288471985,57.40997428420789],[-124.12888873442002,57.40994261831678],[-124.12894653971964,57.4099109227764],[-124.12900642674376,57.409879256833435],[-124.12906423184936,57.40984756124302],[-124.12912203685876,57.40981586562807],[-124.12917984177204,57.40978416998848],[-124.12923770161647,57.40975135379434],[-124.12929550633565,57.40971965810571],[-124.12935128417207,57.40968681224604],[-124.12940914372102,57.40965399597919],[-124.12946492136336,57.40962115007318],[-124.12952069890956,57.409588304144364],[-124.12957647635957,57.40955545819279],[-124.12963017191178,57.409522582606435],[-124.12968594917122,57.40948973661031],[-124.1297396995485,57.40945574045105],[-124.12979339481933,57.40942286480083],[-124.12984714500642,57.40938886859971],[-124.1299008950976,57.40935487237748],[-124.12995256330196,57.40932084652737],[-124.13000423141403,57.40928682065796],[-124.13005589943384,57.409252794769216],[-124.13010762236237,57.409217648331214],[-124.13015726341196,57.409182472270246],[-124.13020893115362,57.40914844632438],[-124.13025857201954,57.40911327022722],[-124.1303082127938,57.40907809411241],[-124.13035582669383,57.40904176784947],[-124.13040338551109,57.40900656210026],[-124.13045099923099,57.40897023580506],[-124.13049861286011,57.40893390949377],[-124.13054622639845,57.40889758316635],[-124.13059175807972,57.408861227225955],[-124.13063728967413,57.40882487127091],[-124.13068079440275,57.408787365176124],[-124.13072632582391,57.40875100919256],[-124.13076983038059,57.408713503070615],[-124.1308133348516,57.40867599693547],[-124.13085481246084,57.408637340664846],[-124.13089831676123,57.408599834504074],[-124.13093973922581,57.40856229873868],[-124.13098121658302,57.40852364243189],[-124.13102269385612,57.40848498611331],[-124.13106208930105,57.40844630019355],[-124.13110148466602,57.40840761426321],[-124.13114087995098,57.40836892832231],[-124.1311803301241,57.4083291218414],[-124.13121972524786,57.40829043587946],[-124.1312570935239,57.408250599791224],[-124.13129446172182,57.40821076369385],[-124.13133182984164,57.408170927587115],[-124.13136919788327,57.40813109147106],[-124.13140656584682,57.408091255345745],[-124.13144185200952,57.40805138962767],[-124.13147921981893,57.40801155348451],[-124.13151456078963,57.407970567220445],[-124.13154990168428,57.40792958094835],[-124.1315851875473,57.40788971519736],[-124.13161844657924,57.407848699328476],[-124.13165378724915,57.40780771303263],[-124.1316870461357,57.40776669714928],[-124.1317203049506,57.40772568125895],[-124.13175356369395,57.407684665361614],[-124.1317868223657,57.4076436494572],[-124.13182013591414,57.40760151301675],[-124.13185339444163,57.40756049709843],[-124.13188462614985,57.40751833106779],[-124.13191788453534,57.40747731513605],[-124.131949116104,57.40743514909305],[-124.13198237434749,57.40739413314786],[-124.13201360577662,57.407351967092524],[-124.13204483713663,57.40730980103126],[-124.1320760684275,57.40726763496405],[-124.13210729964929,57.40722546889083],[-124.13213853080195,57.40718330281183],[-124.13216768021195,57.40714110715505],[-124.13219891122864,57.40709894106466],[-124.13223014217621,57.40705677496839],[-124.13225929138801,57.40701457929579],[-124.13229052219964,57.40697241318813],[-124.13231967128,57.406930217505085],[-124.13235095688735,57.40688693085754],[-124.13238010583541,57.40684473516418],[-124.13240925471892,57.40680253946583],[-124.13244054011967,57.40675925280163],[-124.13246968887087,57.40671705709299],[-124.13249883755752,57.40667486137938],[-124.13253012275169,57.40663157469846],[-124.13255927130602,57.40658937897453],[-124.13258841979584,57.406547183245586],[-124.13261762314433,57.40650386698326],[-124.13264885314089,57.406461700808755],[-124.13267800143383,57.406419505064534],[-124.13270720458267,57.40637618878703],[-124.13273635274557,57.406333993032895],[-124.13276758247156,57.406291826836096],[-124.13279678542071,57.40624851054341],[-124.13282593338675,57.40620631477394],[-124.13285716290896,57.40616414856044],[-124.13288631074366,57.40612195278058],[-124.13291759504374,57.406078666027646],[-124.13294674274611,57.40603647023747],[-124.13297797199546,57.405994304001354],[-124.13300711956646,57.40595210820078],[-124.13303834867985,57.40590994195325],[-124.13306957772413,57.4058677756999],[-124.1331008066993,57.40582560944055],[-124.13313203560537,57.40578344317532],[-124.13316326444233,57.40574127690412],[-124.13319449321018,57.40569911062709],[-124.13322566700475,57.40565806487195],[-124.13325689563536,57.405615898583],[-124.1332901508835,57.40557488236995],[-124.13332137937456,57.40553271606863],[-124.13335463448071,57.4054916998422],[-124.13338794441437,57.40544956308111],[-124.1334211993763,57.405408546840654],[-124.13345445426665,57.40536753059324],[-124.13348770908539,57.40532651433884],[-124.13353186575036,57.40527556108072],[-124.12892657609808,57.40001060593253],[-124.10257612355926,57.36984556351445],[-124.10267787946748,57.36976630066454],[-124.10268426867715,57.36972154148588],[-124.10269065787182,57.3696767823086],[-124.10269699130235,57.36963314361388],[-124.10270338046728,57.36958838443934],[-124.10270976961723,57.36954362526604],[-124.10271823834834,57.36949889613111],[-124.1027245717178,57.36945525744155],[-124.10273304041196,57.36941052830899],[-124.1027394294973,57.369365769140884],[-124.10274789815415,57.36932104001076],[-124.10275423146012,57.3692774013261],[-124.10276270008,57.36923267219826],[-124.10277116868004,57.369187943071466],[-124.1027796372602,57.369143213945875],[-124.1027880500748,57.36909960530215],[-124.10279651861555,57.36905487617864],[-124.10280498713642,57.36901014705633],[-124.10281345563746,57.36896541793507],[-124.10282192411862,57.36892068881497],[-124.10283033683581,57.36887708017656],[-124.10283880527756,57.36883235105863],[-124.10284727369945,57.36878762194176],[-124.10285782165654,57.36874292286086],[-124.10286629003629,57.36869819374622],[-124.10287678220395,57.3686546151475],[-124.10288525054186,57.368609886034726],[-124.10289579840531,57.368565186957426],[-124.10290426670106,57.36852045784677],[-124.10291481451749,57.36847575877118],[-124.10292536230922,57.36843105969646],[-124.10293377480015,57.368387451069154],[-124.10294432254524,57.368342751996074],[-124.1029548702656,57.368298052923876],[-124.10296541796123,57.368253353852545],[-124.10297596563215,57.36820865478193],[-124.10298651327837,57.3681639557121],[-124.10299700516171,57.36812037712308],[-124.10300755275885,57.3680756780549],[-124.10301810033127,57.36803097898752],[-124.10302864787897,57.36798627992086],[-124.10304127491347,57.36794161088703],[-124.1030518224093,57.367896911821816],[-124.10306236988038,57.36785221275753],[-124.10307286159134,57.36780863417366],[-124.10308548851526,57.36776396514213],[-124.10309603591016,57.367719266079945],[-124.10310866277736,57.36767459704949],[-124.10311921012038,57.367629897988806],[-124.10313183693086,57.367585228959456],[-124.10314238422202,57.36754052990018],[-124.10315501097575,57.36749586087189],[-124.10316550248287,57.367452282293485],[-124.10317812918035,57.36740761326622],[-124.10319075584825,57.36736294423929],[-124.10320338248657,57.36731827521286],[-124.10321392962008,57.36727357615777],[-124.10322655620169,57.36722890713253],[-124.1032391827537,57.36718423810756],[-124.10325180927617,57.36713956908313],[-124.1032643800403,57.36709602053821],[-124.10327700650406,57.36705135151456],[-124.10328755347749,57.36700665246342],[-124.10330017988453,57.36696198344088],[-124.10331280626197,57.36691731441872],[-124.10332543260986,57.36687264539708],[-124.10333805892819,57.36682797637583],[-124.10335276466559,57.36678333738202],[-124.10336539092232,57.36673866836145],[-124.10337796142467,57.366695119820136],[-124.10339058762273,57.366650450800414],[-124.1034032137912,57.3666057817811],[-124.1034158399301,57.36656111276221],[-124.10342846603943,57.36651644374381],[-124.10344317155092,57.366471804751384],[-124.10345579759868,57.36642713573358],[-124.10346842361687,57.36638246671636],[-124.10348099388422,57.366338918178016],[-124.1034956992658,57.36629427918617],[-124.10350832519329,57.36624961016999],[-124.10352095109121,57.366204941154116],[-124.10353565637438,57.3661603021628],[-124.10354828221074,57.36611563314774],[-124.10356090801754,57.366070964133016],[-124.1035756132023,57.366026325142144],[-124.1035881832299,57.365982776606415],[-124.103600808946,57.36593810759283],[-124.10361551403287,57.365893468602366],[-124.10362813968737,57.36584879958948],[-124.10364284470784,57.36580416059929],[-124.1036554703008,57.365759491587035],[-124.10367011954,57.36571597307512],[-124.10368274507185,57.3656713040635],[-124.10369744995997,57.36562666507373],[-124.10371007543024,57.365581996062794],[-124.10372270087095,57.36553732705221],[-124.10373740566068,57.36549268806295],[-124.1037499753277,57.365449139530895],[-124.10376468005154,57.36540450054186],[-124.10377730536955,57.365359831532665],[-124.10379201002694,57.36531519254387],[-124.1038046352834,57.36527052353527],[-124.1038193398744,57.36522588454674],[-124.10383190936,57.3651823360164],[-124.10384661388507,57.365137697028025],[-124.10385923901887,57.365093028020794],[-124.10387394347754,57.36504838903266],[-124.10388656854975,57.36500372002609],[-124.10390121723509,57.36496020151562],[-124.10391384224616,57.364915532509634],[-124.10392854657255,57.364870893521946],[-124.10394117152207,57.36482622451675],[-124.10395582007695,57.36478270600655],[-124.10396844496536,57.36473803700188],[-124.1039810698242,57.364693367997674],[-124.10399577398626,57.36464872901064],[-124.10400834308027,57.364605180484276],[-124.10402304717643,57.36456054149743],[-124.1040356719126,57.36451587249454],[-124.10404829661918,57.364471203492045],[-124.10406294491554,57.364427684982694],[-124.104075569561,57.3643830159809],[-124.10409027349284,57.364338376994695],[-124.10410284237673,57.36429482847045],[-124.10411546693153,57.364250159469734],[-124.10412809145674,57.364205490469345],[-124.10414279525872,57.36416085148391],[-124.10415536402414,57.36411730296096],[-124.10417006776021,57.36407266397569],[-124.10418471576462,57.36402914546706],[-124.10419941943235,57.363984506481756],[-124.10421412306567,57.36393986749641],[-124.10423085026076,57.363896379000664],[-124.10424555382335,57.363851740015086],[-124.10426228094398,57.36380825151847],[-124.10427906372057,57.36376364254479],[-124.1042957907644,57.36372015404709],[-124.10431251777007,57.36367666554883],[-124.10432930043001,57.363632056573614],[-124.10434602735887,57.363588568074235],[-124.10436488921374,57.363543989108905],[-124.1043816160634,57.36350050060806],[-124.10440042214307,57.36345704211705],[-124.10441928386935,57.3634124631487],[-124.10443601059931,57.363368974645724],[-124.10445481655219,57.36332551615171],[-124.10447362246221,57.36328205765649],[-124.10449248401642,57.363237478684084],[-124.10451336909404,57.363194050195084],[-124.10453217487255,57.363150591696225],[-124.10455098060821,57.36310713319622],[-124.10456984198554,57.36306255421918],[-124.10459072687931,57.36301912572418],[-124.10460953248348,57.36297566722053],[-124.10462833804476,57.36293220871567],[-124.10464927848255,57.36288765974023],[-124.10466808395519,57.362844201232896],[-124.10468896861758,57.36280077273013],[-124.10470777400218,57.36275731422026],[-124.10472657934393,57.362713855709224],[-124.10474751954713,57.362669306726204],[-124.10476632480021,57.3626258482126],[-124.10478720923125,57.36258241970205],[-124.1048060143963,57.36253896118595],[-124.10482689873457,57.362495532672185],[-124.1048457594871,57.362450953677936],[-124.10486456452065,57.36240749515819],[-124.10488336951136,57.362364036637295],[-124.10490425366582,57.36232060811749],[-124.10492305856847,57.36227714959402],[-124.1049419191007,57.36223257059402],[-124.10496072391706,57.36218911206823],[-124.10498160788771,57.36214568354247],[-124.1050024918108,57.362102255014875],[-124.10502551054846,57.36205773601075],[-124.10504847356344,57.36201433747932],[-124.10507351571388,57.361970968945016],[-124.10510069266,57.36192650993167],[-124.10512573469344,57.36188314139064],[-124.10515285585053,57.36183980284465],[-124.105179976946,57.361796464294656],[-124.10520923281958,57.36175203526304],[-124.10523635378863,57.36170869670454],[-124.10526555386721,57.36166538813856],[-124.1052947538795,57.361622079567624],[-124.10532400948571,57.36157765051692],[-124.10535320936448,57.36153434193614],[-124.10538033001518,57.36149100335569],[-124.10540958542121,57.361446574290696],[-124.1054387851025,57.36140326569551],[-124.10546590556284,57.361359927102086],[-124.10549302596152,57.36131658850467],[-124.10552014629863,57.36127324990313],[-124.10554524307962,57.36122876083082],[-124.10557028414969,57.36118539223002],[-124.10559532516281,57.361142023625916],[-124.10561828697847,57.36109862502779],[-124.10563916960363,57.361055196436446],[-124.10566010783076,57.36101064736897],[-124.10567891122673,57.36096718878423],[-124.10569771457982,57.36092373019835],[-124.10571443876138,57.360880241622056],[-124.10572908377837,57.3608367230559],[-124.10574164963796,57.3607931745008],[-124.10575421546886,57.36074962594604],[-124.10576262303249,57.36070601741432],[-124.1057710305769,57.36066240888368],[-124.10577735898754,57.36061877036573],[-124.10577952915938,57.36057507187228],[-124.10578169932624,57.360531373380475],[-124.10577971127331,57.36048761491347],[-124.10577564411996,57.36044382645958],[-124.10576949787333,57.36040000801867],[-124.10576127254056,57.36035615959035],[-124.10575304722673,57.36031231116316],[-124.10574274283638,57.360268432748114],[-124.10573446191655,57.36022570479676],[-124.10572415757096,57.360181826383304],[-124.10571385324907,57.36013794797075],[-124.10570354895088,57.360094069558905],[-124.10569324467642,57.36005019114781],[-124.10568086134454,57.36000628274759],[-124.10567050147218,57.35996352481152],[-124.1056581181946,57.35991961641233],[-124.10564573494555,57.359875708013504],[-124.10563335172498,57.359831799615215],[-124.10561888946378,57.359787861226444],[-124.10560650630262,57.35974395282872],[-124.10559198845606,57.359701134913465],[-124.105579605354,57.359657226516354],[-124.10556514322087,57.35961328812795],[-124.10555068112106,57.359569349739516],[-124.10553413999979,57.359525381358935],[-124.105519677969,57.359481442970214],[-124.10550516031975,57.35943862505468],[-124.10548861930762,57.359394656673075],[-124.10547207833362,57.359350688290995],[-124.10545553739772,57.359306719908346],[-124.10543894084651,57.35926387199807],[-124.10542239998647,57.3592199036145],[-124.10540585916452,57.35917593523036],[-124.10538931838073,57.359131966845766],[-124.10537069860423,57.35908796846595],[-124.10535410224345,57.359045120552636],[-124.10533548254996,57.3590011221708],[-124.10531686289941,57.35895712378814],[-124.1052982432918,57.35891312540434],[-124.10527956806958,57.358870247491815],[-124.10526094854738,57.35882624910586],[-124.10524232906813,57.35878225071897],[-124.1052216306202,57.35873822233374],[-124.10520301122925,57.35869422394439],[-124.1051843362212,57.358651346026086],[-124.1051636379112,57.358607317636505],[-124.105142939649,57.35856328924533],[-124.10512432043416,57.35851929085112],[-124.1051035666029,57.35847638292877],[-124.10508286848102,57.35843235453292],[-124.10506217040692,57.358388326135305],[-124.1050414723806,57.35834429773598],[-124.10502071873772,57.358301389806776],[-124.10500002080639,57.35825736140412],[-124.10497724394,57.35821330299881],[-124.10495654610662,57.35816927459257],[-124.10493579265444,57.35812636665604],[-124.10491301594041,57.35808230824442],[-124.10489231825223,57.358038279832655],[-124.10486948597266,57.35799534188803],[-124.10484878838187,57.35795131347267],[-124.10482601187282,57.35790725505223],[-124.10480531437997,57.35786322663319],[-124.1047824823031,57.357820288679626],[-124.10475970594882,57.357776230252405],[-124.10473900860357,57.35773220182765],[-124.1047162323521,57.357688143396224],[-124.10469340048023,57.35764520543332],[-124.10467062433335,57.357601146997034],[-124.10464784823907,57.35755708855844],[-124.10462709546704,57.35751418059483],[-124.10460431947494,57.35747012215189],[-124.10458154353543,57.35742606370649],[-124.10455876764856,57.35738200525879],[-124.10453593613707,57.3573390672794],[-124.10451316035476,57.35729500882695],[-124.10449246355508,57.35725098038074],[-124.10446968787556,57.35720692192399],[-124.10444685656911,57.35716398393529],[-124.10442408099418,57.35711992547373],[-124.10440130547185,57.357075867009875],[-124.10437853000214,57.357031808543525],[-124.10435777781869,57.35698890055595],[-124.10433500245112,57.356944842085255],[-124.10431222713618,57.3569007836123],[-124.10428939619013,57.35685784560706],[-124.1042686998858,57.35681381714147],[-124.10424592472559,57.3567697586618],[-124.10422314961802,57.356725700179645],[-124.10420239777578,57.35668279217839],[-124.10417962277039,57.3566387336919],[-124.10415892671158,57.356594705216985],[-124.10413615180893,57.35655064672617],[-124.10411540015976,57.3565077387173],[-124.1040926253593,57.35646368022208],[-124.10407192949582,57.35641965173982],[-124.10405123368011,57.35637562325581],[-124.10403048222163,57.356332715239745],[-124.10400978650088,57.35628868675245],[-124.10398701195314,57.356244628246905],[-124.1039662606381,57.35620172022526],[-124.10394764393256,57.35615772174988],[-124.10392694840235,57.35611369325591],[-124.10390625291986,57.356069664760184],[-124.10388550179083,57.35602675673198],[-124.10386688526377,57.35598275825151],[-124.10384618992161,57.35593872975114],[-124.10382757348285,57.35589473126819],[-124.10380687823381,57.3558507027648],[-124.10378820618644,57.355807824748446],[-124.10376958987838,57.35576382626211],[-124.10366804257677,57.35571414505869],[-124.10360712546317,57.35568411220608],[-124.10354412960318,57.35565404930237],[-124.10348321268303,57.35562401639396],[-124.10342229585879,57.355593983457936],[-124.1033614348395,57.355562830025875],[-124.1033005182088,57.35553279703487],[-124.103239601674,57.355502764016364],[-124.10317666211735,57.35547158047265],[-124.10311574577776,57.355441547398186],[-124.10305488525191,57.35541039382796],[-124.10299396910584,57.355380360698646],[-124.10293305305571,57.355350327541615],[-124.1028721928245,57.35531917388918],[-124.1028112769679,57.3552891406773],[-124.10274828238704,57.35525907740169],[-124.10268736672391,57.35522904413384],[-124.10262645115667,57.35519901083847],[-124.10256345687024,57.355168947476486],[-124.10250254149645,57.35513891412511],[-124.10243954740689,57.35510885070518],[-124.10237863222656,57.35507881729782],[-124.10231563833385,57.355048753819865],[-124.10225258879954,57.35501981078015],[-124.10218953936091,57.35499086771069],[-124.10212654576235,57.35496080414422],[-124.10206349651683,57.35493186101577],[-124.10200044736693,57.35490291785765],[-124.10193526376428,57.354875065088265],[-124.1018722148055,57.35484612186995],[-124.10180703139346,57.35481826903823],[-124.10174184807657,57.35479041617473],[-124.10167666485486,57.354762563279564],[-124.10161148172831,57.35473471035256],[-124.10154416414666,57.35470794780569],[-124.10147898121014,57.354680094814256],[-124.10141166381776,57.35465333220063],[-124.10134434651981,57.354626569553076],[-124.10127702931632,57.35459980687166],[-124.10120965643645,57.35457416462298],[-124.10114233941987,57.35454740187368],[-124.10107496672302,57.354521759556974],[-124.10100764989338,57.35449499673971],[-124.10093819860391,57.35446932429025],[-124.10087082618213,57.354443681870514],[-124.10080143086068,57.354416888883435],[-124.10073405862339,57.35439124639465],[-124.10066460770688,57.354365573802674],[-124.10059723565212,57.35433993124476],[-124.10052778492104,57.35431425858148],[-124.10046041304884,57.35428861595456],[-124.10039101829761,57.35426182275395],[-124.10032156784744,57.35423614998333],[-124.10025419625175,57.354210507252226],[-124.10018682474661,57.3541848644871],[-124.10011743037617,57.35415807114425],[-124.10005005905553,57.35413242831011],[-124.09998274363157,57.35410566497605],[-124.09991537249398,57.35408002207392],[-124.09984805725695,57.35405325867209],[-124.09978074211436,57.35402649523634],[-124.09971342706618,57.353999731766635],[-124.09964819086005,57.35397299834838],[-124.09958087599924,57.35394623481196],[-124.09951569579702,57.35391838086364],[-124.09945051568998,57.353890526883625],[-124.09938527985474,57.35386379333707],[-124.09932015576135,57.35383481882833],[-124.09925705467803,57.35380699484461],[-124.09919193077894,57.35377802027365],[-124.09912882988306,57.35375019622964],[-124.09906786364513,57.35372128178542],[-124.09900487460207,57.35369121675322],[-124.09894396438834,57.35366118178793],[-124.09888299843273,57.353632267260004],[-124.0988221442485,57.35360111177491],[-124.09876123432241,57.35357107672711],[-124.09870245905846,57.353539951287374],[-124.09864160516888,57.353508795720956],[-124.09858283009845,57.353477670229196],[-124.09852411097192,57.35344542424754],[-124.09846539194464,57.35341317824042],[-124.09840667301658,57.35338093220789],[-124.0983479541878,57.353348686150035],[-124.09828923545824,57.35331644006665],[-124.09823265139325,57.353283103601456],[-124.0981760674271,57.35324976711275],[-124.09811948355984,57.35321643060053],[-124.09806289979143,57.353183094064875],[-124.09800637198467,57.353148637041706],[-124.0979497884156,57.35311530045917],[-124.09789533950907,57.35308087350219],[-124.09784089070075,57.35304644652366],[-124.09778649785974,57.35301089905983],[-124.09773412794128,57.35297650215362],[-124.09767973529944,57.352940954647536],[-124.09762742144677,57.35290543723725],[-124.09757718637738,57.35286994992507],[-124.09752487271751,57.35283443247598],[-124.09747469371486,57.3527978246632],[-124.09742445892917,57.35276233729583],[-124.09737428011762,57.35272572944684],[-124.09732618007823,57.35268915170182],[-124.09727808013102,57.352652573940276],[-124.09723211483256,57.35261490582257],[-124.09718401506912,57.352578328028784],[-124.09713804995295,57.35254065988039],[-124.09709416359303,57.35250302184266],[-124.0970502773197,57.352465383791554],[-124.09700639113292,57.35242774572687],[-124.09696256092505,57.35238898718586],[-124.09692075356979,57.35235137922267],[-124.09688108084657,57.35231268091354],[-124.0968414082038,57.35227398259372],[-124.09680173564152,57.352235284263145],[-124.09676627635463,57.352195525720866],[-124.09672873849532,57.352155737038856],[-124.09669541390227,57.35211488814905],[-124.09666203347989,57.352075159714474],[-124.09662870902864,57.35203431081037],[-124.09659751918855,57.35199237157032],[-124.0965662735137,57.35195155278654],[-124.09653716244262,57.35190964366894],[-124.09650805143549,57.35186773454637],[-124.09648107502608,57.35182473509203],[-124.0964540427711,57.35178285609569],[-124.09642706648253,57.35173985663323],[-124.09640009025479,57.35169685716669],[-124.0963751927065,57.35165388783318],[-124.09635029521431,57.351610918496455],[-124.09632539777817,57.351567949156475],[-124.09630055630862,57.35152385935164],[-124.0962756589853,57.35148089000525],[-124.09625076171804,57.351437920655826],[-124.09622799902375,57.3513938609808],[-124.09620310186698,57.351350891625394],[-124.09617826068,57.35130680180518],[-124.09615544223328,57.3512638625838],[-124.09613060115802,57.3512197727578],[-124.09610570422448,57.35117680339005],[-124.0960808632634,57.35113271355772],[-124.09605596644265,57.351089744183575],[-124.09603106967796,57.35104677480627],[-124.09600617296935,57.35100380542575],[-124.0959791977362,57.350960805898765],[-124.09595216664398,57.350918926828776],[-124.09592519153169,57.35087592729381],[-124.0958960819852,57.35083401807112],[-124.09586702842483,57.350790988382485],[-124.09583999757602,57.3507491092953],[-124.09581307863374,57.35070498928237],[-124.09578610382938,57.350661989726326],[-124.09575918501089,57.35061786970547],[-124.09573226625463,57.35057374968071],[-124.09570748204399,57.35052853933893],[-124.09568269789209,57.350483328994216],[-124.0956579137989,57.35043811864643],[-124.09563526424222,57.3503918179839],[-124.09561261474053,57.350345517319255],[-124.09558788674951,57.35029918650303],[-124.09556523736025,57.350252885833726],[-124.09554472249593,57.350205494852034],[-124.095522129146,57.35015807371869],[-124.09550161438618,57.35011068273403],[-124.09547907707845,57.35006214113673],[-124.09545856242366,57.35001475014918],[-124.09543810375338,57.349966238700134],[-124.0954176451351,57.34991772724979],[-124.09539932102406,57.34986812549085],[-124.09537886250769,57.34981961403855],[-124.0953584599789,57.34976998212512],[-124.09534013601575,57.34972038036381],[-124.09532175616371,57.34967189906172],[-124.09530348823233,57.34962117683979],[-124.09528308590768,57.34957154492268],[-124.09526476213779,57.349521943159],[-124.09524643841551,57.34947234139478],[-124.09523024917596,57.34942164932573],[-124.09521192554672,57.349372047560784],[-124.09519365790486,57.34932132533606],[-124.09517539031155,57.34927060311082],[-124.09515706682615,57.349221001344375],[-124.09513879932952,57.3491702791183],[-124.0951226103611,57.34911958704851],[-124.0951043429588,57.349068864821824],[-124.0950860196626,57.34901926305365],[-124.09506775235695,57.34896854082601],[-124.0950515635685,57.348917848755924],[-124.09503324041339,57.34886824698654],[-124.09501497325019,57.34881752475791],[-124.09499670613553,57.34876680252873],[-124.09497838312426,57.34871720075782],[-124.09496006016062,57.34866759898646],[-124.09494179319071,57.348616876755905],[-124.09492347032278,57.34856727498351],[-124.0949051475025,57.34851767321054],[-124.09488474628583,57.348468041276504],[-124.09486642356349,57.34841843950211],[-124.09484596650168,57.34836992802444],[-124.09482764387685,57.3483203262487],[-124.09480718691691,57.348271814768815],[-124.09478673000899,57.34822330328775],[-124.09476627315307,57.348174791805285],[-124.09474581634916,57.348126280321765],[-124.09472322522288,57.34807885913171],[-124.09470271257283,57.348031468103095],[-124.09468012155624,57.34798404690939],[-124.09465753059578,57.347936625713665],[-124.09463488373741,57.347890324973605],[-124.09461223693401,57.347844024231435],[-124.09458751177829,57.347797693321915],[-124.0945648650873,57.347751392575056],[-124.09454008409251,57.347706182117705],[-124.09451530315646,57.34766097165732],[-124.09448838792386,57.34761685148461],[-124.09446360710706,57.347571641017765],[-124.09443663603786,57.34752864129508],[-124.09440972098956,57.34748452111101],[-124.09438275004264,57.34744152138024],[-124.09435370077118,57.347398491476625],[-124.09432459560284,57.347356582025206],[-124.09429549049842,57.34731467256878],[-124.09426425111549,57.34727385339409],[-124.09423301179936,57.347233034213275],[-124.09420177255005,57.347192215026446],[-124.09417047740097,57.347152516290464],[-124.09413704797983,57.34711390783278],[-124.09410361862633,57.34707529936783],[-124.09407018934048,57.347036690895564],[-124.0940346257886,57.3469991726988],[-124.09399900633527,57.34696277495013],[-124.09396130859058,57.346926347017906],[-124.09392361091784,57.346889919075785],[-124.09388585734254,57.34685461158051],[-124.09384596950802,57.34682039435494],[-124.09380608174507,57.346786177118176],[-124.09376613807571,57.34675308032661],[-124.09372411612776,57.346719953344994],[-124.09367995992638,57.3466879166275],[-124.0936378261619,57.34665703053238],[-124.0935915357803,57.3466260840628],[-124.09354726783062,57.346596288215345],[-124.0935008656253,57.34656758262742],[-124.09345238515196,57.34653884684066],[-124.09340384876344,57.346511231492684],[-124.09335525645561,57.34648473658327],[-124.0933045298909,57.34645933192681],[-124.0932517250618,57.346433897064955],[-124.09319886430903,57.346409582638316],[-124.09314600362363,57.34638526819073],[-124.09309095268343,57.34636316444491],[-124.09303382348031,57.34634103048677],[-124.09297663834298,57.346320016959694],[-124.09291945326864,57.346299003408134],[-124.0928579996033,57.34628017035799],[-124.09279862432074,57.346261367472934],[-124.09273503644708,57.34624362462778],[-124.09267347094347,57.34622703240297],[-124.09260982717413,57.34621040995296],[-124.09254618346026,57.34619378747254],[-124.09248040546966,57.34617825521815],[-124.09241670584908,57.34616275313055],[-124.09235092796469,57.34614722081168],[-124.09228509411332,57.34613280891522],[-124.09221931633408,57.34611727653088],[-124.09215348258407,57.34610286456877],[-124.09208551454535,57.34608954282406],[-124.09201968089369,57.34607513079521],[-124.09195171295104,57.346061808981645],[-124.09188374505585,57.34604848713296],[-124.09181572117397,57.346036285704066],[-124.09174567506336,57.346022933575206],[-124.09167765127117,57.34601073207506],[-124.09160749317539,57.34599962078219],[-124.09153739116269,57.34598738899738],[-124.09146723315065,57.345976277629816],[-124.09139707517947,57.34596516622479],[-124.0913248389449,57.34595402456574],[-124.09125468105606,57.34594291308494],[-124.09118238885259,57.34593289180217],[-124.0911100966871,57.345922870479654],[-124.09103780455958,57.3459128491175],[-124.09096551246999,57.34590282771559],[-124.09089108605673,57.34589389650468],[-124.09081873797842,57.345884995476396],[-124.0907443116343,57.345876064182306],[-124.090669885325,57.34586713284625],[-124.09059540298087,57.3458593219221],[-124.09052092066722,57.34585151095583],[-124.09044436008647,57.34584366971662],[-124.09036987783426,57.34583585866479],[-124.09029331731598,57.34582801733753],[-124.09021670074839,57.34582129641973],[-124.09014216250351,57.34581460569283],[-124.09006346769416,57.34580785445017],[-124.08998685120754,57.345801133398375],[-124.0899102347479,57.34579441230195],[-124.08983148392919,57.345788781374125],[-124.08975481142744,57.34578318064081],[-124.08967606065487,57.34577754961984],[-124.08959730990551,57.34577191855171],[-124.08951850307825,57.34576740788998],[-124.08943975237307,57.34576177672736],[-124.08936094558536,57.34575726597115],[-124.08928006052457,57.34575272491846],[-124.08920125377443,57.34574821406638],[-124.08912036875185,57.34574367291537],[-124.08903942763332,57.34574025216794],[-124.08895848652932,57.34573683137065],[-124.08887760155973,57.345732290070046],[-124.0887966604871,57.34572886917308],[-124.08871566330433,57.34572656867936],[-124.08863472225836,57.345723147682584],[-124.0885516468081,57.345720816828354],[-124.08846862749989,57.34571736546836],[-124.08838763036131,57.345715064772385],[-124.08830455494372,57.3457127337618],[-124.0882214795363,57.345710402698685],[-124.08813840413902,57.34570807158298],[-124.08805527260787,57.34570686086776],[-124.08797219722845,57.34570452964695],[-124.08788906571027,57.34570331882644],[-124.08780385590964,57.34570207768072],[-124.08772072440215,57.34570086675366],[-124.08763551461246,57.345699625498796],[-124.08755030482828,57.34569838418861],[-124.0874671171756,57.3456982935537],[-124.08738190739987,57.345697052134305],[-124.08729664146344,57.34569693111213],[-124.08721137552752,57.34569681003467],[-124.08712610959215,57.34569668890177],[-124.0870408436573,57.34569656771349],[-124.08695349943625,57.34569641618393],[-124.08686823350256,57.34569629488359],[-124.08678296756943,57.34569617352792],[-124.08669556716636,57.34569714227914],[-124.08661030123189,57.345697020811365],[-124.08652290082247,57.34569798944763],[-124.08643550040864,57.345698958025814],[-124.08635023447094,57.345698836389126],[-124.08626283405079,57.3456998048523],[-124.0861754336262,57.345700773257285],[-124.08608803319717,57.34570174160415],[-124.08600057655936,57.34570383034493],[-124.08591317611891,57.34570479857542],[-124.085825775674,57.34570576674774],[-124.08573831901262,57.345707855313776],[-124.08564884026985,57.3457087930631],[-124.08556138359187,57.34571088151136],[-124.0854739269043,57.34571296990129],[-124.08538444814306,57.345713907470454],[-124.08529699143888,57.345715995742616],[-124.08520953472511,57.34571808395649],[-124.08511999971516,57.34572014179716],[-124.08503046469559,57.34572219957678],[-124.08494300795302,57.345724287613294],[-124.08485347291415,57.34572634527214],[-124.08476601615241,57.34572843319072],[-124.08467642485103,57.34573161118046],[-124.08458688978058,57.34573366865766],[-124.08449735470053,57.34573572607382],[-124.08440984164669,57.345738934206565],[-124.08432030654474,57.34574099150201],[-124.08423077143311,57.345743048736374],[-124.08414118005284,57.34574622636095],[-124.08405158865764,57.345749403924486],[-124.08396205351183,57.345751460975656],[-124.08387246208942,57.34575463841695],[-124.08378292692166,57.34575669534601],[-124.08369333547205,57.34575987266508],[-124.08360374400755,57.34576304992303],[-124.08351420880557,57.34576510666888],[-124.08342461731385,57.3457682838047],[-124.08333502580722,57.34577146087936],[-124.08324549057102,57.345773517441934],[-124.08315589903721,57.34577669439441],[-124.08306630748848,57.34577987128575],[-124.08297671592483,57.345783048115976],[-124.08288718064213,57.34578510443425],[-124.08279758905128,57.34578828114231],[-124.08270799744552,57.34579145778921],[-124.08261840582485,57.34579463437495],[-124.08252887049566,57.34579669044897],[-124.08243927884781,57.345799866912515],[-124.08234968718504,57.34580304331497],[-124.08226015182166,57.34580509920575],[-124.08217056013169,57.34580827548593],[-124.08208096842681,57.34581145170511],[-124.08199143302924,57.34581350741269],[-124.08190184129715,57.34581668350965],[-124.08181224955017,57.34581985954549],[-124.0817227141184,57.34582191506983],[-124.08163312234421,57.34582509098347],[-124.08154358689055,57.345827146385645],[-124.08145399508919,57.34583032217706],[-124.08136445961358,57.345832377457086],[-124.08127492412832,57.34583443267619],[-124.08118741057737,57.34583763866155],[-124.08109787507024,57.34583969375989],[-124.08100833955345,57.34584174879718],[-124.08092088231706,57.345843834154884],[-124.08083129042471,57.34584700952147],[-124.0807417548764,57.34584906437695],[-124.08065429760866,57.34585114955718],[-124.08056476204113,57.34585320429195],[-124.08047736112096,57.34585416890444],[-124.0803878255368,57.34585622351858],[-124.08030036823332,57.345858308463086],[-124.0802129109203,57.345860393349334],[-124.08012343168441,57.345861327333544],[-124.08003597435481,57.345863412101934],[-124.0799485733979,57.34586437636243],[-124.07986111605173,57.34586646101431],[-124.0797737150834,57.34586742515843],[-124.07968631411069,57.345868389244444],[-124.07959891313354,57.34586935327216],[-124.07951151215197,57.34587031724185],[-124.07942411116599,57.3458712811532],[-124.07933671017561,57.345872245006504],[-124.07925138747106,57.34587323920949],[-124.07916398647183,57.34587420294776],[-124.07907664187606,57.34587404617866],[-124.07899131916072,57.345875040212654],[-124.07890605285384,57.345874913742016],[-124.07881870825749,57.34587475680135],[-124.07873344195181,57.34587463021867],[-124.07864817564668,57.34587450358058],[-124.07856290934211,57.345874376887195],[-124.07847764303813,57.34587425013843],[-124.07839237673471,57.34587412333423],[-124.07830716686232,57.34587287602582],[-124.0782219569955,57.34587162866207],[-124.0781366906988,57.34587150169187],[-124.07805355912976,57.34587028464447],[-124.07796834927701,57.34586903711609],[-124.07788521771874,57.345867819961974],[-124.07780214261103,57.345865482306586],[-124.0777190110658,57.345864265047354],[-124.07763385768763,57.34586189685332],[-124.07755072615556,57.34586067948756],[-124.07751137259271,57.345774886262305],[-124.07749065673703,57.34573197442977],[-124.07746999738269,57.345687942146874],[-124.07744928162074,57.34564503031076],[-124.07742862236123,57.34560099802463],[-124.07740582842133,57.345558055748015],[-124.077385169259,57.34551402345811],[-124.07736445368681,57.345471111614835],[-124.07734373816122,57.34542819976969],[-124.07732100087873,57.34538413703632],[-124.07730028544918,57.345341225187404],[-124.077279626526,57.345297192888786],[-124.07725683293519,57.34525425059695],[-124.07723617410925,57.34521021829458],[-124.07721545886946,57.345167306438434],[-124.0771927218905,57.34512324369228],[-124.0771720067468,57.34508033183223],[-124.07714921340659,57.345037389529324],[-124.07712855482218,57.34499335721789],[-124.07710783982111,57.34495044535231],[-124.07708510309558,57.344906382595404],[-124.07706438819058,57.344863470726025],[-124.07704165156703,57.34481940796474],[-124.07702093675807,57.34477649609157],[-124.07700022199573,57.344733584216605],[-124.07697748552363,57.34468952144885],[-124.07695677085734,57.34464660957009],[-124.07693611270645,57.344602577242455],[-124.07691331991695,57.3445596349155],[-124.0768926618633,57.34451560258414],[-124.07687194738675,57.34447269069809],[-124.07684921121817,57.34442862791753],[-124.07682849683768,57.34438571602782],[-124.076807838976,57.34434168368935],[-124.0767871246892,57.344298771796126],[-124.07676646692232,57.34425473945428],[-124.07674575272922,57.34421182755759],[-124.07672509505713,57.34416779521236],[-124.07670438095774,57.34412488331219],[-124.07668372338043,57.34408085096365],[-124.07666300937476,57.34403793905998],[-124.07664235189222,57.34399390670811],[-124.07662163798025,57.34395099480092],[-124.07660305877359,57.34390699289543],[-124.0765824014311,57.34386296053877],[-124.0765616876576,57.3438200486267],[-124.07654310858379,57.34377604671743],[-124.07652239490164,57.343733134802314],[-124.07650381591546,57.34368913289054],[-124.07648315880536,57.34364510052621],[-124.07646452342605,57.34360221905815],[-124.07644594457032,57.343558217142935],[-124.07642736575741,57.3435142152267],[-124.07640878698736,57.34347021330941],[-124.07639015177698,57.343427331836935],[-124.0763715730921,57.34338332991753],[-124.07635299445009,57.34333932799707],[-124.07633441585088,57.34329532607558],[-124.0763158372945,57.343251324153],[-124.07629933692373,57.343207352684004],[-124.07628075845064,57.34316335075961],[-124.07626218002035,57.343119348834215],[-124.07624360163292,57.34307534690776],[-124.07622294515522,57.3430313145246],[-124.07620234521316,57.34298616169432],[-124.07618376695956,57.34294215976421],[-124.07616316711196,57.342897006931196],[-124.07614043270021,57.342852944084655],[-124.07611983295202,57.34280779124803],[-124.07609923325258,57.34276263840991],[-124.07607863360187,57.34271748557009],[-124.07605595588646,57.34267230227049],[-124.07603529984334,57.34262826987232],[-124.07601470034079,57.34258311702754],[-124.07599410088697,57.34253796418112],[-124.0759735014819,57.342492811333244],[-124.07595290212555,57.34244765848372],[-124.07593230281795,57.342402505632656],[-124.07591170355909,57.34235735278012],[-124.07589110434894,57.342312199925914],[-124.07587258327877,57.34226707753147],[-124.07585406225239,57.34222195513604],[-124.07583554126981,57.342176832739746],[-124.07581909841481,57.34213174080453],[-124.07580057751733,57.34208661840666],[-124.07578413474253,57.34204152647038],[-124.07576971358372,57.341997585440964],[-124.07575327088374,57.341952493504245],[-124.07573890629413,57.34190743203032],[-124.07572656330721,57.341863521464425],[-124.07571427684928,57.341818490454756],[-124.07570193391946,57.341774579889645],[-124.07569166907993,57.341730699789096],[-124.075681404264,57.341686819689315],[-124.07567321752875,57.341642970054735],[-124.07566710886701,57.341599150885685],[-124.07566100021928,57.341555331717984],[-124.07565489158559,57.341511512551634],[-124.07565288255911,57.341468874759684],[-124.07565093003899,57.341425116525606],[-124.0756489210215,57.341382478736676],[-124.07564899004905,57.34133987141398],[-124.0756511371147,57.34129729455756],[-124.07565530570999,57.341255868610865],[-124.07566160883125,57.34121335268645],[-124.07566785543747,57.341171957206804],[-124.07568241414694,57.34113068358547],[-124.07570309390618,57.34109174224262],[-124.07573208572323,57.34105292275197],[-124.07576725505227,57.34101531508829],[-124.07580865837492,57.34097779880334],[-124.075854161159,57.34094146387292],[-124.07590584141413,57.34090634075336],[-124.07595965608142,57.340870127631156],[-124.07601757018301,57.340835095849094],[-124.07607750570143,57.34080121494388],[-124.07613957560976,57.34076624402589],[-124.0762036669276,57.34073242397897],[-124.07626781461457,57.34069748345835],[-124.07632982769906,57.340663632896714],[-124.07639397515494,57.340628692316415],[-124.07645396649221,57.34059369080178],[-124.07651401419469,57.34055756881741],[-124.07656984931646,57.34052250634967],[-124.07662371928457,57.340485172523394],[-124.07667343316164,57.34044777777899],[-124.07671899095969,57.340410322121464],[-124.07675842763749,57.34037053422133],[-124.07679163027345,57.34033065497067],[-124.07681865535277,57.340289563931215],[-124.07684360239179,57.34024844244172],[-124.07686652786158,57.340206170060334],[-124.07688737530303,57.340163867231254],[-124.0769082226983,57.34012156440027],[-124.07692704853679,57.34007811068006],[-124.07694379636187,57.34003462651433],[-124.07696054414882,57.339991142347934],[-124.07697521393176,57.33994762773737],[-124.07698994014156,57.33990299268371],[-124.07700253189606,57.33985944762961],[-124.07701518008128,57.339814782133026],[-124.07702575028067,57.33977008619391],[-124.0770363204553,57.33972539025557],[-124.07704481265384,57.33968066387543],[-124.07705336129052,57.33963481705364],[-124.07706185344892,57.33959009067564],[-124.07707040204487,57.3395442438562],[-124.07707681622163,57.339499487038324],[-124.07708328684026,57.339453609779234],[-124.07708975744336,57.339407732521515],[-124.0770961715745,57.339362975707694],[-124.07710056421513,57.339317068011],[-124.0771070347743,57.33927119075756],[-124.0771114273913,57.339225283063946],[-124.07711784146639,57.33918052625572],[-124.07712431198165,57.33913464900665],[-124.07712870456216,57.33908874131752],[-124.07713511859404,57.33904398451345],[-124.0771415890654,57.338998107268495],[-124.07714800306694,57.33895335046711],[-124.07715441705345,57.338908593666986],[-124.0771608310249,57.33886383686823],[-124.07716932288588,57.33881911051141],[-124.07717781472697,57.33877438415576],[-124.07718422864842,57.338729627360706],[-124.07719277690468,57.33868378056551],[-124.07720126868816,57.33863905421324],[-124.07720976045177,57.3385943278621],[-124.07722033008537,57.33854963195187],[-124.07722882180673,57.33850490560269],[-124.07723736995911,57.33845905881302],[-124.07724793952292,57.33841436290546],[-124.07725643118185,57.338369636559406],[-124.07726705714843,57.338323820212096],[-124.07727554876482,57.33827909386819],[-124.07728611823411,57.33823439796419],[-124.07729466625707,57.33818855118087],[-124.07730523567892,57.33814385527857],[-124.07731586152408,57.33809803893572],[-124.07732643089605,57.33805334303501],[-124.07733497883007,57.338007496255905],[-124.07734554815458,57.33796280035703],[-124.07735617390094,57.33791698401765],[-124.07736679962181,57.33787116767913],[-124.07737736887132,57.337826471782684],[-124.07738799454155,57.337780655445755],[-124.07739856374118,57.33773595955096],[-124.0774091893608,57.33769014321577],[-124.07741975851053,57.337645447322465],[-124.07742830624113,57.33759960055243],[-124.07743893178707,57.33755378421998],[-124.07744950086425,57.33750908832928],[-124.07746012635957,57.337463271998494],[-124.07747075182938,57.33741745566858],[-124.07748132083157,57.33737275978029],[-124.07748986842714,57.33732691301645],[-124.07750043738187,57.33728221712994],[-124.0775110627529,57.33723640080347],[-124.07752168809844,57.337190584477895],[-124.07753017916438,57.337145858158806],[-124.07754080446178,57.33710004183507],[-124.07754929548518,57.33705531551818],[-124.07755992073443,57.33700949919626],[-124.07756841171532,57.33696477288138],[-124.07757695911496,57.336918926127126],[-124.07758545005572,57.33687419981437],[-124.07759607521116,57.33682838349625],[-124.0776045661094,57.336783657185684],[-124.07761305698774,57.336738930876116],[-124.07761952649403,57.336693053694034],[-124.07762801733469,57.33664832738673],[-124.07763650815545,57.336603601080675],[-124.07764297761058,57.33655772390242],[-124.07765146839368,57.336512997598575],[-124.07765788137988,57.33646824086306],[-124.07766429435104,57.3364234841288],[-124.07767278507932,57.3363787578285],[-124.07767712024827,57.33633397066421],[-124.07768353317434,57.33628921393398],[-124.07768994608534,57.33624445720497],[-124.07769635898134,57.336199700477266],[-124.0777006941023,57.336154913318865],[-124.07770502921312,57.336110126161834],[-124.07770936431375,57.33606533900639],[-124.07771369940421,57.3360205518523],[-124.07771803448452,57.33597576469979],[-124.07772231312171,57.33593209798823],[-124.07772457043643,57.33588728040694],[-124.07772884905621,57.33584361369822],[-124.07773110635806,57.33579879612006],[-124.07773330722223,57.33575509898279],[-124.07773556451356,57.33571028140782],[-124.07773568763413,57.33566655384192],[-124.07773788848543,57.33562285670927],[-124.07773801160305,57.33557912914662],[-124.07773813472039,57.33553540158548],[-124.07773831426924,57.33549055358683],[-124.0777363596645,57.33544679559727],[-124.07773642635155,57.33540418847996],[-124.07773447175337,57.33536043049342],[-124.0777325171597,57.33531667250852],[-124.0777284848585,57.33527288409338],[-124.0777264738444,57.33523024655038],[-124.07772244155927,57.335186458138054],[-124.07771835285152,57.33514379016613],[-124.07771432058483,57.33510000175666],[-124.0777081541952,57.335057303355406],[-124.07769991012142,57.3350145745233],[-124.07768324241859,57.33497396483984],[-124.07766034167086,57.3349332638575],[-124.07763322915552,57.33489362244467],[-124.07759774950523,57.33485497973107],[-124.07755805811665,57.334817396578885],[-124.07751421143628,57.334779752545664],[-124.07746615303793,57.334743168065685],[-124.07741601705078,57.33470655313257],[-124.0773595916815,57.3346709673072],[-124.07730310997405,57.33463650189665],[-124.07724247301846,57.33460197558413],[-124.07718183617254,57.33456744924447],[-124.07711704409385,57.33453286199514],[-124.07705427335145,57.33449942559513],[-124.07698948150376,57.33446483828475],[-124.07692671098494,57.334431401825626],[-124.07686394057603,57.33439796533741],[-124.0768011702771,57.33436452882006],[-124.07674053420742,57.334330002283366],[-124.07668191944431,57.334296626605415],[-124.07662543890252,57.33426216091391],[-124.07657109258108,57.334226605211505],[-124.07651876754733,57.334192200375995],[-124.07646644260788,57.334157795520625],[-124.07641417423139,57.33412227020799],[-124.07636184948204,57.33408786531284],[-124.07630958129863,57.33405233996065],[-124.07625725673938,57.33401793502574],[-124.07620498874905,57.33398240963397],[-124.07615266437993,57.333948004659206],[-124.07610039658265,57.33391247922778],[-124.07604807240361,57.33387807421351],[-124.07599580479939,57.33384254874238],[-124.0759434808105,57.33380814368829],[-124.07588913577047,57.33377258771677],[-124.07583681197356,57.33373818262219],[-124.07578454475745,57.33370265707095],[-124.0757301435276,57.33366822147335],[-124.07567782001702,57.3336338163183],[-124.07562341898151,57.33359938067834],[-124.07557109566143,57.3335649754826],[-124.07551669482028,57.33353053980039],[-124.07546229407728,57.33349610409663],[-124.07540789343241,57.33346166837123],[-124.07535343638692,57.33342835306044],[-124.07529903593678,57.33339391729192],[-124.07524457908292,57.33336060193788],[-124.07518804472005,57.33332725609029],[-124.07513151045592,57.3332939102192],[-124.0750749197839,57.33326168476076],[-124.07501838571568,57.333228338842645],[-124.07496179523635,57.33319611333722],[-124.0749052048525,57.333163887808055],[-124.07484653697108,57.33313163177813],[-124.0747878691888,57.33309937572275],[-124.07472914498909,57.33306824007782],[-124.07467042088516,57.333037104407246],[-124.07460961929088,57.333005938230244],[-124.07455083885864,57.332975922943376],[-124.07449003745944,57.33294475671255],[-124.0744291796344,57.33291471088966],[-124.074368378432,57.33288354460407],[-124.07430752080029,57.332853498726294],[-124.07424671979467,57.33282233238581],[-124.07418591888836,57.332791166018076],[-124.07412517461509,57.33275887918775],[-124.07406437390904,57.33272771276527],[-124.07400357330225,57.33269654631541],[-124.07394282933376,57.33266425940319],[-124.07388208546801,57.33263197246376],[-124.07381920759909,57.33260077543837],[-124.07375846393887,57.332568488443314],[-124.07369772038142,57.332536201421156],[-124.07363697692671,57.332503914371564],[-124.07357617702523,57.33247274772945],[-124.0735133562198,57.33244043012698],[-124.07345261307337,57.33240814299475],[-124.07339181347491,57.33237697626954],[-124.07332899298311,57.332344658581434],[-124.07326819358669,57.33231349180067],[-124.07320537330399,57.332281174055026],[-124.07314249656575,57.33224997671437],[-124.07307961993028,57.33221877934443],[-124.07301674339757,57.33218758194514],[-124.07295386696762,57.3321563845165],[-124.07289099064042,57.33212518705852],[-124.07282805784509,57.33209511000524],[-124.0727651251489,57.332065032922436],[-124.07270011502014,57.33203492529908],[-124.07263718252395,57.3320048481564],[-124.07257217259856,57.331974740471146],[-124.07250918372235,57.33194578370227],[-124.07244411741658,57.33191679638873],[-124.07237905120958,57.331887809043444],[-124.07231185099386,57.33185991158285],[-124.07224672839668,57.3318320446069],[-124.07218160589458,57.331804177599224],[-124.07211434937895,57.33177740047276],[-124.07204709295769,57.33175062331257],[-124.07197983663075,57.331723846118344],[-124.07191252380096,57.331698189323454],[-124.07184515446255,57.331673652927634],[-124.07177784181178,57.33164799606475],[-124.07170833853687,57.331624549506955],[-124.07163889195239,57.33159998247999],[-124.07156938885021,57.33157653584958],[-124.07149982922434,57.33155420961575],[-124.0714302696798,57.33153188334547],[-124.07135857610137,57.33151064693902],[-124.07128688260272,57.331489410493795],[-124.0712151325665,57.331469294442435],[-124.07114332598653,57.33145029878484],[-124.07106944198041,57.331431272551306],[-124.0709976355444,57.33141227681456],[-124.07092363843297,57.33139549136456],[-124.0708496980145,57.33137758544057],[-124.07077356691173,57.33136188979839],[-124.0706995133642,57.331346224655036],[-124.0706233823857,57.33133052892609],[-124.07054719483311,57.331315953585396],[-124.07047100733871,57.33130137820071],[-124.07039481990245,57.33128680277199],[-124.07031857588106,57.33127334773128],[-124.07024025442577,57.331259862096296],[-124.07016395386484,57.331247527398155],[-124.07008563251716,57.33123404167117],[-124.0700072545724,57.33122167632955],[-124.06992882002378,57.331210431373236],[-124.0698504421783,57.33119806593814],[-124.06977200772435,57.331186820888355],[-124.06969357331661,57.331175575791754],[-124.06961300480931,57.33116542051996],[-124.06959649828237,57.331162935174916],[-124.07022266841864,57.3259739713104],[-124.07494677958768,57.318365012943374],[-124.07841866057638,57.31479203996684],[-124.08311909174952,57.3131419459289],[-124.08329866303657,57.31333181762855],[-124.0837716191312,57.313182875046515],[-124.08386349177668,57.31317412598469],[-124.08963684815633,57.3126225938222],[-124.098937727037,57.31229353322379],[-124.10183818894953,57.31133988331436],[-124.11071865165064,57.30790707739201],[-124.11168665629951,57.30786944177124],[-124.11451691776914,57.30790343364039],[-124.11854536200902,57.30748700839549],[-124.12152955047354,57.307178842366675],[-124.12554087567335,57.30685389951724],[-124.13131648405012,57.30605280179035],[-124.13409473363669,57.30536244823455],[-124.13497164617176,57.30506098197699],[-124.13740480095964,57.30428716775538],[-124.13827478095786,57.30408424854857],[-124.14142591293896,57.304050460758226],[-124.14584328223027,57.30506489735481],[-124.14585130859942,57.305541524878684],[-124.14762184092962,57.30561812050725],[-124.14918467522592,57.30522197487647],[-124.15004655275712,57.30492804587222],[-124.15057402680311,57.30454642668255],[-124.15194680720803,57.30395472173966],[-124.1524742488357,57.30357309520734],[-124.15298501754,57.30319235319494],[-124.15331348559857,57.3027148612459],[-124.15486072032392,57.301562741077895],[-124.15554000676474,57.30126172446327],[-124.15812719462741,57.299347201657],[-124.15900466136308,57.29915658724794],[-124.16194214471166,57.29798466172336],[-124.16333808666317,57.29768019713809],[-124.16597073442296,57.297660987781875],[-124.1672066827415,57.29783299444233],[-124.17262338413455,57.29740854525432],[-124.17470476550928,57.29662355232742],[-124.17538406688281,57.29614304747684],[-124.1774529401334,57.295269265593475],[-124.1785125117881,57.2946964881577],[-124.17931279076802,57.29259080598374],[-124.17982522073129,57.29220999165414],[-124.17661183979953,57.290523924977975],[-124.17607121843342,57.290146413894234],[-124.17536168220624,57.28987081966732],[-124.17179171854137,57.28752938248898],[-124.17104377388354,57.28658276146723],[-124.17121815446234,57.28610644967959],[-124.17067760051914,57.284038176099926],[-124.17541480167387,57.278625017704044],[-124.1753635223,57.278611970869946],[-124.17586804017311,57.27843736398086],[-124.17649874891951,57.27844614110204],[-124.17687152892803,57.27833472542815],[-124.17886921301363,57.27601476849197],[-124.18089977766039,57.27382754288936],[-124.18231861070267,57.27227759930804],[-124.18357660175566,57.26816916493005],[-124.18053391352824,57.262673626829546],[-124.17492318706518,57.25813785905931],[-124.17211471579867,57.25646629524506],[-124.16690295789375,57.254034548017785],[-124.15882437533463,57.252557904555765],[-124.1537720643013,57.252352242396896],[-124.14759932189804,57.25026493079151],[-124.14727299695627,57.245694959331864],[-124.14811013470417,57.24142847826278],[-124.14735840180634,57.23673592059905],[-124.14405511340307,57.23369342524564],[-124.1370679770985,57.230347332245906],[-124.13560664212206,57.23003951231532],[-124.13240120886641,57.227401723710095],[-124.13027503653267,57.22372988749992],[-124.1275217284986,57.22000420353295],[-124.12092155863584,57.21831308656928],[-124.1132696426012,57.21677688359947],[-124.10848100200674,57.214689684949505],[-124.1021415798644,57.211117847108966],[-124.09715928473486,57.20828297450184],[-124.09496195492149,57.207129849973086],[-124.09196814046975,57.204996403813844],[-124.09164798338946,57.200776238420204],[-124.09261763394959,57.19461964172822],[-124.09399358152035,57.18994888555365],[-124.09429987760788,57.18612357491547],[-124.0943260568215,57.18493107804288],[-124.09423649949179,57.17973672775041],[-124.09193924952739,57.1743039029295],[-124.08988708667958,57.17194200468897],[-124.08844845114612,57.17056666281292],[-124.08454463818315,57.16649142710894],[-124.08115893554564,57.163329543688285],[-124.07561874025743,57.161866857576854],[-124.06421523728716,57.16372539992367],[-124.05310110032853,57.16736314452157],[-124.04614628081664,57.16799481042834],[-124.04300953293031,57.16682674268263],[-124.03790738008551,57.16491157699387],[-124.03095306978844,57.16166779447398],[-124.02628159137264,57.159130817686496],[-124.02430374486582,57.15831164639741],[-124.02079706534897,57.15599836537052],[-124.01559650610504,57.15379380452479],[-124.01153010432462,57.152395578931944],[-124.00768509057644,57.15088400245071],[-124.00684543843721,57.150476553917116],[-124.00669142343027,57.14802564704904],[-124.00774426834651,57.14432852388662],[-124.007951419813,57.140340468905855],[-124.00738280931003,57.13758727972523],[-124.00586854924545,57.13551923448319],[-124.00337564322315,57.13413579148958],[-123.99987394464169,57.13115830927956],[-123.99578897845008,57.13017186058539],[-123.99333687763084,57.12865431219821],[-123.99422711552323,57.12618358720539],[-123.99343041562292,57.1240187935375],[-123.99098078474857,57.122779275784886],[-123.98738050066093,57.12171929119412],[-123.98484638818779,57.12146493846859],[-123.98030192161892,57.120121105551256],[-123.974584363332,57.11844499761099],[-123.97067750718492,57.117568133401534],[-123.96705774054462,57.115646249675464],[-123.96145247773003,57.113747076961],[-123.95795300358611,57.11268783676993],[-123.95508086936776,57.11134235539891],[-123.95476060776272,57.1108350719194],[-123.95073449732084,57.10942655558935],[-123.94629871831071,57.10826259724504],[-123.94355153689982,57.107376241738166],[-123.941204188832,57.106128406401616],[-123.9371741053634,57.10450414159158],[-123.93631025906107,57.10365636110821],[-123.9330023425042,57.101218233946824],[-123.93075559814332,57.09934396733448],[-123.92942954738552,57.09695510663529],[-123.92767166724195,57.09399432717529],[-123.92520057656027,57.09138991092539],[-123.92459576248766,57.08790032433403],[-123.92418973379758,57.08470988171029],[-123.9224206065427,57.08105825532656],[-123.91941364633031,57.07799674881875],[-123.9175583566002,57.075034292842666],[-123.91764343286837,57.07011172814874],[-123.91966774391086,57.06689732111111],[-123.92422314395225,57.06452145547864],[-123.92434643305955,57.06132155420745],[-123.92433608357905,57.06028997792632],[-123.92323507981764,57.05835311681957],[-123.9225729743945,57.05715868455591],[-123.92364949228279,57.05435068029197],[-123.9277236273807,57.05351866162359],[-123.93614684483238,57.054719623893604],[-123.94421943640332,57.05476651164356],[-123.95215468548845,57.053671722163664],[-123.95589184337966,57.05233129482079],[-123.96170184951168,57.04988419775931],[-123.96977756753239,57.04609999719283],[-123.9742218270481,57.043846333797575],[-123.97773670798229,57.04199065604421],[-123.98152490741937,57.038695206225675],[-123.98181600925956,57.037551756429174],[-123.98761931995183,57.03515729638669],[-123.99151534660642,57.03197985027801],[-123.99341125591751,57.02853832390834],[-123.99654182464133,57.0238781601827],[-123.9972009668762,57.02135924316283],[-123.9967016010988,57.01827544322341],[-123.99444745308024,57.01594486238433],[-123.99242433491804,57.01488232899778],[-123.9887503752629,57.01416196641525],[-123.9853941188522,57.01430737019356],[-123.98151603712623,57.01433697810373],[-123.97752257874338,57.013736896707094],[-123.97185937682184,57.01320933796688],[-123.96736777741124,57.01330070927204],[-123.9614127922856,57.013925055013885],[-123.95637371674043,57.01345143432589],[-123.95307759631197,57.011534221386405],[-123.95079396714316,57.00857459883757],[-123.94898475724725,57.00693179493328],[-123.94842901132809,57.00590961067948],[-123.95109748349005,57.00411313669076],[-123.95285306311982,57.00273273630527],[-123.9541801215501,57.00134557943446],[-123.95449680106418,57.000041184784635],[-123.95479489043407,56.99908626218126],[-123.90787943370009,56.99882470883451],[-123.9047964344876,56.99790516129944],[-123.89995604128111,56.99716346207984],[-123.89635629934813,56.99635195961919],[-123.89515099217799,56.99517553087942],[-123.89664802660967,56.99372890920858],[-123.89837736073702,56.99255508023374],[-123.89702437174299,56.99046150229],[-123.89581971824468,56.98927612395387],[-123.89747371735676,56.98645987100976],[-123.89963522391109,56.983400687086764],[-123.90016323761958,56.98127473407975],[-123.90159239052952,56.978338235567065],[-123.9003778601906,56.97703615729569],[-123.89564564151283,56.976475378559854],[-123.89322264449419,56.975880108891744],[-123.89203236733633,56.97504469774871],[-123.89082890044894,56.97174275862974],[-123.89080088921692,56.9689441766087],[-123.89227611812589,56.966977127871395],[-123.89642864607775,56.96395031256678],[-123.89834324538256,56.96237595422416],[-123.89828668466876,56.96129884645344],[-123.89854230925809,56.95751837213117],[-123.89800359380844,56.952899986762745],[-123.8955255585551,56.948815218092186],[-123.89049146978415,56.946312180937774],[-123.88908828318543,56.94547328722648],[-123.88654756570014,56.9422572418688],[-123.88378752414341,56.93914519304888],[-123.87788602598383,56.93808036853829],[-123.87101955181782,56.938694458756494],[-123.86636570779494,56.93978398968187],[-123.86489217178554,56.939634227386634],[-123.86067363858233,56.93643490576348],[-123.85672441634021,56.93254932983796],[-123.85350495195263,56.93064870868847],[-123.85000665575124,56.92932632713584],[-123.8454585676851,56.928237550902836],[-123.84307047640611,56.9285566476089],[-123.84136267933684,56.92995423652808],[-123.83426283688189,56.93239203004733],[-123.82992171084166,56.93347650069318],[-123.82750957511337,56.93333753104212],[-123.82356685074383,56.93144198280654],[-123.82018270492894,56.92840773325555],[-123.81896241292472,56.9267011933303],[-123.81890789466269,56.925337085865806],[-123.81896007740485,56.921795462575545],[-123.81837006475276,56.91826099667244],[-123.81922791967783,56.91618578890097],[-123.82245233190422,56.91357632055779],[-123.82547984120131,56.91124150208346],[-123.82894753847164,56.90926374569873],[-123.83232061934636,56.9074995623291],[-123.83273240555181,56.905147801355604],[-123.83123667890449,56.90219919145624],[-123.83120585660173,56.89894323053483],[-123.83297386125332,56.89674866081975],[-123.83815075150163,56.89564223677738],[-123.84316717115095,56.89563602055563],[-123.84942439471052,56.895497720294564],[-123.84936522289318,56.89183777120348],[-123.83803581604191,56.87890590947005],[-123.83458796273526,56.87677678917889],[-123.82908403277281,56.87497189990427],[-123.82568431755544,56.873462134268664],[-123.82440761676146,56.870741348761],[-123.8237828057708,56.86812117296778],[-123.82011949039008,56.86576383745596],[-123.81438403087837,56.86344323003999],[-123.81268968100004,56.862894515804555],[-123.8109485089138,56.861143272985146],[-123.81252149091905,56.85890091225832],[-123.81466293657796,56.855609900112185],[-123.81489555524065,56.85149752570379],[-123.81216226167376,56.8460975608505],[-123.8077089403563,56.8394757268875],[-123.80557670536466,56.8362470633816],[-123.8039256962769,56.83438067419722],[-123.8019155035488,56.83103743658402],[-123.79978896871346,56.83003281069683],[-123.79294635194624,56.82852640510064],[-123.78712628757728,56.82666044772529],[-123.78383034742717,56.825160271768],[-123.78354746645864,56.8249402020139],[-123.78291490342244,56.82444847276373],[-123.78309090924877,56.82427773132615],[-123.78335789850514,56.8239874796062],[-123.78359842658071,56.82369341175741],[-123.7837875734111,56.82340070653802],[-123.7840577813245,56.82287510108509],[-123.78376746895769,56.82278493946548],[-123.78355577064806,56.82261204811233],[-123.7833215989206,56.822365907548864],[-123.78307557528117,56.822147588439584],[-123.78260356372022,56.82186262524637],[-123.78225338346051,56.82167166725119],[-123.78179597739711,56.82145421039975],[-123.78144317009277,56.82130916570243],[-123.78090082943885,56.82110594472811],[-123.78035773050287,56.820880288629205],[-123.77988087516137,56.820644555671265],[-123.77951535828096,56.820399519641605],[-123.77920390390992,56.820177829231504],[-123.77886409567829,56.81987830357027],[-123.77867661838165,56.819570179521364],[-123.77854154582664,56.819242776170995],[-123.77845138577614,56.81888363433473],[-123.77838913240652,56.81861016628981],[-123.77833354377553,56.818327844652686],[-123.77821921360317,56.81806805618745],[-123.77812904009332,56.817780657315296],[-123.77784999809919,56.81742387993031],[-123.777523789376,56.81717390747493],[-123.77713777017283,56.816893762005975],[-123.77671972472169,56.81663548536198],[-123.77625600293597,56.81642238361916],[-123.77576018979472,56.81623226981072],[-123.77505216793689,56.81609343720457],[-123.7743593098859,56.81601203167047],[-123.77357948420858,56.81590894962503],[-123.77296585578924,56.8158412293678],[-123.77243666315506,56.815732360794],[-123.77192577186186,56.815519552788686],[-123.77158798325553,56.81536464968355],[-123.77101140396815,56.8151170780222],[-123.77068777541083,56.81496577915419],[-123.77037665688634,56.814775460156746],[-123.77011000140631,56.81456124414731],[-123.77004728023424,56.81433260324012],[-123.77001874162708,56.81400926675823],[-123.77008124885675,56.81374354747266],[-123.77022502210227,56.81349155828613],[-123.7703942258673,56.813225433964156],[-123.77056239429774,56.81297722750344],[-123.77077187116075,56.81272412701228],[-123.77099853109792,56.81242199853478],[-123.77114900637521,56.8121959067928],[-123.77120579065003,56.81195811364595],[-123.77118310187004,56.811711105867],[-123.77110116051635,56.811495586962195],[-123.7707896651891,56.8112054945453],[-123.77058276788118,56.81102257490957],[-123.77036999970784,56.81079919830385],[-123.77021495349197,56.81053533869918],[-123.77015278876807,56.81022599681686],[-123.77010964934422,56.80990689367181],[-123.77006231346776,56.80966058243934],[-123.76992781342268,56.80943182695424],[-123.76967409630231,56.8090295071429],[-123.76984276772798,56.80877234326739],[-123.7699464234189,56.808682207523155],[-123.77025068677321,56.80863476063462],[-123.77069624604276,56.808520244496194],[-123.77118985294256,56.808354988549326],[-123.77174268743771,56.8081941129461],[-123.77226728087003,56.80802490234039],[-123.77280773234472,56.80790080182613],[-123.7731888859742,56.80787148544004],[-123.77377630614328,56.807822173599206],[-123.77440805847151,56.80771532994488],[-123.77482728990037,56.807380634899786],[-123.77498704172673,56.80724213618018],[-123.77608182231123,56.80671614591377],[-123.77728977109516,56.805790778659926],[-123.77912165214978,56.804035370879184],[-123.78046494088308,56.80242850374014],[-123.77982928897931,56.80010391066559],[-123.77981829812106,56.80000956026207],[-123.77969700029158,56.799050167454986],[-123.77807656085982,56.797129040131566],[-123.77755013841778,56.79622658746569],[-123.7810582720733,56.79544603843134],[-123.78581082057403,56.79473825310972],[-123.79002654642493,56.79333846467504],[-123.79520862410337,56.79184963870989],[-123.79562457969686,56.791278306939546],[-123.79587395856872,56.79028377747476],[-123.79622558413772,56.78918561908505],[-123.7962884064006,56.7880825438018],[-123.79694470665962,56.78667346274342],[-123.79815752084426,56.785642644339816],[-123.7985060452408,56.78459711682562],[-123.79957101610573,56.782775742558954],[-123.80000565360277,56.78208926212256],[-123.80009801592905,56.781942866503385],[-123.80109724159819,56.78127606843581],[-123.80239107490618,56.78051001862835],[-123.80311936341162,56.77952361833328],[-123.8033595760916,56.77868586335918],[-123.80353328414692,56.777322375880935],[-123.80380028841574,56.77601203668139],[-123.8048081886384,56.77518843084508],[-123.80593315686716,56.77399801276247],[-123.806556061385,56.77316786649332],[-123.80697667797322,56.77254390568062],[-123.80711457996796,56.77180978371614],[-123.80699350859204,56.77054667157465],[-123.80751030610158,56.76992434100048],[-123.80745277852873,56.76923959210444],[-123.8057676458836,56.7684218783354],[-123.80370774457343,56.76749353199466],[-123.8026148887699,56.7664235297183],[-123.80096777363035,56.76497642789434],[-123.80000693269874,56.764470238392896],[-123.79900830920279,56.76394434258315],[-123.79680986045348,56.76261334835788],[-123.79698776982889,56.76247514005481],[-123.79731563115105,56.76218591635886],[-123.7972894760337,56.76192541267701],[-123.79723537617275,56.76168797286308],[-123.79722256893652,56.761336900383746],[-123.79724176865584,56.76110743461785],[-123.79722763995932,56.760851619651575],[-123.7971878847132,56.76068616439634],[-123.79685095973133,56.76041476287293],[-123.79658503435279,56.760155779424544],[-123.79639472462455,56.75997206578873],[-123.79615669304408,56.75972700795268],[-123.79588591207593,56.759445521480735],[-123.79565325507073,56.75917813548629],[-123.79544913214554,56.758949347392075],[-123.79521059651535,56.75867737661511],[-123.79495389445775,56.75836474183413],[-123.79476072570137,56.75819554917694],[-123.79437192210338,56.75800844773216],[-123.79393644549575,56.757885563443764],[-123.7934679085584,56.75776771829783],[-123.79311365490209,56.75762155624455],[-123.79287464139074,56.75743028047098],[-123.79278221049066,56.757254957319326],[-123.79282804254566,56.757061816956586],[-123.79298482113202,56.75679098332257],[-123.79299118649872,56.75653551779279],[-123.7930445003661,56.75635483548079],[-123.7931553687247,56.75617065157321],[-123.79328010531567,56.755922810748],[-123.79332465712153,56.755752067356774],[-123.79309364820038,56.755564291424186],[-123.79267021055202,56.75530261157906],[-123.79207187386324,56.75498301829224],[-123.7914507873962,56.754739257437095],[-123.79079792355392,56.75444226650842],[-123.79016400081588,56.754208368429346],[-123.78962459898986,56.75396935717335],[-123.7889443301865,56.75375820045828],[-123.7883060813233,56.753564572840695],[-123.78778485915377,56.75340208848326],[-123.78709898217942,56.75321772840944],[-123.78646790865935,56.753113889473155],[-123.78609804717046,56.75313446036683],[-123.78576200620198,56.75324416362827],[-123.78540652241237,56.75337146813898],[-123.785052249972,56.753513364705306],[-123.78460449389455,56.75357070918582],[-123.78386610975924,56.75355245249338],[-123.78253604475421,56.753457911272946],[-123.78212757297997,56.75336571457026],[-123.78149474010033,56.753149726733945],[-123.78088678993826,56.75292855800614],[-123.78040658122804,56.75283736652917],[-123.77997068565058,56.75275926438748],[-123.77920107363667,56.752642922565364],[-123.77840302129741,56.752486854452876],[-123.77792876977787,56.75239911878508],[-123.77747491815065,56.752312852915985],[-123.77697939460262,56.75216757993126],[-123.77674824000819,56.75194838454577],[-123.776569259829,56.751748020976535],[-123.77663593825446,56.751585509649715],[-123.77675338509187,56.751216496615136],[-123.77623808990919,56.75055973033053],[-123.77599290675369,56.75026406814923],[-123.77578327055569,56.74999143582934],[-123.77550367330517,56.74976019542374],[-123.77511628191583,56.74951589018506],[-123.77452870545491,56.74926253365659],[-123.77400173168839,56.74905953922504],[-123.7736586473017,56.74886419279503],[-123.77337455619838,56.74856897641886],[-123.77332834657284,56.748197148338406],[-123.7732993423923,56.74781104435753],[-123.77330648565429,56.74736615301095],[-123.7732925199895,56.74711033754464],[-123.77341617324097,56.7467761843115],[-123.77344782381198,56.7464393257519],[-123.77345902904207,56.74606624502626],[-123.7734665790363,56.74572112497908],[-123.77347213354327,56.745410719823845],[-123.77339907370882,56.74504291377457],[-123.77335238947575,56.74475066505417],[-123.77324549116557,56.74443720232453],[-123.77316664944996,56.74431254085393],[-123.77280263859622,56.74412579898706],[-123.77244808729965,56.74395267033689],[-123.77211140536099,56.74386055637492],[-123.77152459584129,56.74370247845829],[-123.77114850150106,56.743548030778754],[-123.77042404280768,56.74329117357287],[-123.76991047743213,56.743070457596964],[-123.7689072493624,56.74267651138638],[-123.76792650593605,56.74235468564905],[-123.76739864761765,56.74213371258003],[-123.76663507048828,56.74184589244685],[-123.76597430452922,56.74165736641431],[-123.76531619341074,56.74142292414971],[-123.76486157299937,56.74128167238394],[-123.76458485840577,56.74114461641682],[-123.76436658553902,56.74098839355908],[-123.76432658574178,56.74065253985205],[-123.76436582633953,56.740256404769916],[-123.76431770978824,56.739919289875495],[-123.76417948742208,56.73944049880718],[-123.7639015520188,56.738934630207844],[-123.76349730910877,56.73824049942787],[-123.76329308564473,56.73784127342363],[-123.76304907505033,56.737492921885206],[-123.76275069077792,56.73702256712998],[-123.76258047652577,56.73663737997456],[-123.76245991174314,56.73627883374351],[-123.76238083766094,56.735910917244276],[-123.76233892805458,56.73550216935033],[-123.76226065704287,56.735084945432256],[-123.76217329289993,56.73478974656628],[-123.76215888784428,56.73454289036755],[-123.76221849949505,56.73429059006891],[-123.76242130770596,56.733898409592236],[-123.762611728118,56.733578875552574],[-123.76282836856272,56.73323065079143],[-123.76312974403895,56.73279758009803],[-123.76331940082454,56.73245561344322],[-123.76353598708081,56.73207263794263],[-123.76373216385423,56.731617569117766],[-123.76382412097888,56.73123019507277],[-123.7638627300463,56.730915879869215],[-123.76386149432706,56.73054707037215],[-123.7638558454976,56.730183789277454],[-123.76393970879795,56.72965279572664],[-123.76373358333682,56.729393655784236],[-123.76334569407355,56.72916275604806],[-123.76289714825278,56.728954344767324],[-123.76254125224517,56.728772196577594],[-123.7622314474168,56.728571789575795],[-123.76175831068043,56.72836406931211],[-123.76116421692772,56.72805336756095],[-123.76050566694155,56.72772473194368],[-123.75997099735167,56.727448682362464],[-123.75936485704909,56.727134400393155],[-123.75873218092045,56.72685440427404],[-123.7581656415139,56.72666971099796],[-123.75761345747988,56.726520013311166],[-123.75725751495904,56.72637484013],[-123.75700591841155,56.726159737181035],[-123.75696694719086,56.72591357555868],[-123.75694056917412,56.72566202786312],[-123.75679462308243,56.72542521867306],[-123.75649119215252,56.72508030716238],[-123.75635956411735,56.72484374606486],[-123.75623912336555,56.724449327082006],[-123.75614725591775,56.72419776309032],[-123.75595405851394,56.72385812727149],[-123.75586248384363,56.7235662145028],[-123.75580200831395,56.72337348416845],[-123.75584182040437,56.72321612368941],[-123.75629604004918,56.72300655018674],[-123.75684014716435,56.7227290377317],[-123.75732033818474,56.72238876242977],[-123.75764331831095,56.722077143526874],[-123.75795716325916,56.72167569076676],[-123.75830608279857,56.721269241316044],[-123.7586675211784,56.72085852457941],[-123.75892279461391,56.72040785397647],[-123.75927068389096,56.71998344981839],[-123.75974830237114,56.71933262444796],[-123.76009086871849,56.7188229356504],[-123.76043039838748,56.71825938897104],[-123.76066686004323,56.71788573431181],[-123.76100787463,56.717367049615284],[-123.76164452917422,56.7164062363721],[-123.76188077387411,56.71603593931908],[-123.76220195166144,56.71561218776362],[-123.76246367893904,56.71533200556361],[-123.76259663326174,56.715120211191426],[-123.76257401083735,56.71427127792653],[-123.76257278790442,56.71390247201175],[-123.76252652926303,56.713534007084405],[-123.76252519417271,56.713238059546605],[-123.76257102684328,56.712904817549926],[-123.76260835923736,56.71257703301751],[-123.76258956512217,56.71240632687383],[-123.76254977073225,56.71192588172205],[-123.76255468021432,56.711557182523705],[-123.76254848143466,56.71127460217835],[-123.76256614789068,56.71093302626535],[-123.76259198997953,56.710591592032806],[-123.76260450993149,56.71030373145869],[-123.76258430967525,56.70994468600022],[-123.7624507405985,56.709671108855055],[-123.76227973649924,56.709408092302105],[-123.76210217494106,56.70911693883161],[-123.76204758852695,56.70889292937507],[-123.76214629406394,56.70867157582091],[-123.76231734998596,56.70847277318822],[-123.7625596975963,56.70835030713654],[-123.7627000206092,56.70825858027435],[-123.76284897067043,56.70815915624108],[-123.76313058803504,56.70785241722826],[-123.76319071591274,56.707519423820074],[-123.76315334484231,56.70713878423096],[-123.7631496036576,56.70709724534849],[-123.76305062042776,56.70668527390418],[-123.76302344079475,56.70644716789791],[-123.76302330006595,56.70627230178691],[-123.76314154419408,56.706137597317365],[-123.7631400818368,56.70612748370444],[-123.76395399400745,56.70535244921172],[-123.76497303834783,56.704318665506904],[-123.76597086813436,56.70365216934065],[-123.76732596729428,56.703352778327826],[-123.76747306209465,56.70332057271067],[-123.76839925019351,56.70311575922733],[-123.76994300859695,56.70298549673116],[-123.77155421215625,56.7016457925697],[-123.77074012523425,56.70079105727219],[-123.77078492662271,56.70001167501191],[-123.7708065542349,56.69963542162694],[-123.77026557598008,56.69904769108399],[-123.76966278942034,56.697827817040434],[-123.76953415233427,56.69672149702828],[-123.76855231074501,56.6954435082557],[-123.76767268334633,56.69406079251585],[-123.76703654323278,56.691788916829374],[-123.76622276262384,56.690934157918974],[-123.76570919366816,56.68987385850598],[-123.76444270996717,56.688537108288344],[-123.76302566120431,56.686515103085355],[-123.76188568167929,56.68465481323114],[-123.761000397131,56.68337844034717],[-123.75992020338576,56.68215024071047],[-123.75844294267237,56.68117854997619],[-123.75541677074273,56.68044220807499],[-123.75169344124274,56.68016667559039],[-123.75009706832296,56.67956159010648],[-123.74932360299921,56.678022546598115],[-123.74835816939823,56.67648127067433],[-123.74675961178923,56.674297863609944],[-123.74624475253282,56.67323746125219],[-123.74592696333266,56.672127816689425],[-123.74514457300883,56.67074776207575],[-123.74314122485309,56.6689248932791],[-123.74054290751477,56.66746035337155],[-123.73801729618,56.66636469132451],[-123.7365289733323,56.6656021543734],[-123.73455787257367,56.664883806402415],[-123.7334146246385,56.664758362358945],[-123.73252849692913,56.665164254584425],[-123.73077778967543,56.66560650031159],[-123.7292076752233,56.66620995015913],[-123.72812654131461,56.666663943784584],[-123.72705462822547,56.66696004248615],[-123.7259918836383,56.66709936617312],[-123.72415739949916,56.6673293168206],[-123.7224126103282,56.66766731215354],[-123.72095264666217,56.6680618777411],[-123.71854232257549,56.668281578079565],[-123.71743624466987,56.66915651080465],[-123.71662427056424,56.66993015239669],[-123.71563265618516,56.67049099742719],[-123.71427877523729,56.67067775657374],[-123.7134964341177,56.6705305067405],[-123.71309826971681,56.67059294823687],[-123.7126868091584,56.67056884174245],[-123.71246681924765,56.670555974757164],[-123.71187483443357,56.67043899145227],[-123.71122892341575,56.67023137498701],[-123.71061568226287,56.67005908346494],[-123.71000987410146,56.66996874834273],[-123.70939117105603,56.6698198933479],[-123.70866539743365,56.6695805810402],[-123.70814635565378,56.669440215117],[-123.70767816324962,56.66930411316646],[-123.70717099130752,56.669135930945004],[-123.70682044252592,56.66898061853851],[-123.70657627479271,56.66878908449178],[-123.7062511316754,56.668480655228734],[-123.7058856993274,56.66812779271278],[-123.70548878785631,56.667788941371946],[-123.70512517960516,56.667543717876626],[-123.70459609211585,56.667228294073915],[-123.70401465941123,56.66689960638894],[-123.70345443546158,56.66659259105034],[-123.7029005311947,56.66631707160849],[-123.70234621051412,56.66611776523998],[-123.701904500144,56.66594960625223],[-123.70119153526453,56.665599506777035],[-123.70056444579532,56.665283440549615],[-123.70006229775073,56.66496287283491],[-123.69962510382706,56.66461543802282],[-123.69915019144052,56.66424939420025],[-123.69879376010725,56.66402221486704],[-123.69844292617728,56.66380410176769],[-123.69813275832452,56.663658452515875],[-123.69764550069746,56.66353542372032],[-123.69721787724747,56.66347510841691],[-123.69665875743661,56.663392267460175],[-123.69596125917704,56.66323072983786],[-123.69542741290978,56.66306650707606],[-123.69484008892714,56.662804926765574],[-123.69437139363669,56.66250735220836],[-123.6940732084894,56.6622980141079],[-123.69380340615015,56.66209254543356],[-123.69349794795562,56.66183375510611],[-123.6932926526584,56.6615745131016],[-123.6930665007866,56.661184870202206],[-123.69279422507721,56.660849327485764],[-123.69253491188155,56.660536434574325],[-123.69236830307716,56.66034850143154],[-123.69197345096343,56.66018450801788],[-123.69129446773078,56.66002215440669],[-123.69074111508658,56.65987773902875],[-123.69031982366293,56.65978052279851],[-123.68992657863132,56.65969277481133],[-123.68966029902498,56.6594974484964],[-123.6894752616518,56.65913880026972],[-123.68926824114907,56.65877191152536],[-123.68904107947269,56.658400177930275],[-123.68873490148293,56.657948563291356],[-123.6884683682684,56.657586211605654],[-123.688163058971,56.65722316443032],[-123.68793158235023,56.656924211813255],[-123.6875737891483,56.65658488288501],[-123.68727658002614,56.65632622499225],[-123.68705672170013,56.65600393956582],[-123.6868773935694,56.655721613019885],[-123.68667138931755,56.65537267310735],[-123.68639894269918,56.655041596918025],[-123.68598867673212,56.654657606057775],[-123.68553894499685,56.65431886370401],[-123.68507739470154,56.65410993515933],[-123.68432059035207,56.65395287187189],[-123.68368348551432,56.65394703706237],[-123.68293373426286,56.65401427780837],[-123.68237582855397,56.654084961454984],[-123.68183227425868,56.65415477972548],[-123.68118212078765,56.65423052594805],[-123.68017894778914,56.654298799489155],[-123.67930528812239,56.654353702489665],[-123.67816897805011,56.6544274116257],[-123.67741302231249,56.65442725307794],[-123.6764217177193,56.65446768803124],[-123.67561510244651,56.65449462968685],[-123.67478601524363,56.65441915634052],[-123.6738844172992,56.6541899230828],[-123.67281262804973,56.65397106405761],[-123.6715304093736,56.65371813217345],[-123.67051574973917,56.65353503393215],[-123.66964802570298,56.65342295935248],[-123.66846553985552,56.65331303609119],[-123.66718438109076,56.653247275677806],[-123.66628991807217,56.65310442934958],[-123.6657046842724,56.653017615592574],[-123.66500173053907,56.65298583586692],[-123.66478199075878,56.65297064831201],[-123.66439392579358,56.65211955623426],[-123.66443501242075,56.65143652893664],[-123.66429059906389,56.650644774708475],[-123.66435377797035,56.6495944812936],[-123.66507249815211,56.648819478120686],[-123.66627930210828,56.64784256942717],[-123.66748499203767,56.64691719379492],[-123.66821308047274,56.64598429448347],[-123.66764270183698,56.644291462912356],[-123.66710721688152,56.64365069290817],[-123.66620391101466,56.642740966498145],[-123.6659509493134,56.64215798816501],[-123.66514043299416,56.6413026172068],[-123.66382214903537,56.640909953641376],[-123.66259225251557,56.6406780506237],[-123.66219819761812,56.639250688038466],[-123.66275026763307,56.63805233484493],[-123.6638977041031,56.63649598448584],[-123.66535594126735,56.63452378752957],[-123.66773797727868,56.633147812150256],[-123.66990292184452,56.63218821867178],[-123.67247126038643,56.63086709276266],[-123.673292752829,56.62993586712866],[-123.67325664145925,56.62893647736451],[-123.67338395285338,56.62841306497597],[-123.67400000837257,56.627740423642905],[-123.67434211608833,56.62680054325714],[-123.67469884532538,56.62565019450363],[-123.67456685069422,56.62464907819603],[-123.67348360696943,56.62357811197105],[-123.67277657530252,56.622566612871665],[-123.672454993098,56.62156207146064],[-123.6708969598131,56.62037714117077],[-123.67162446927179,56.6194442363006],[-123.67225098360272,56.618561066178316],[-123.67260139549113,56.61751598020361],[-123.67364255097995,56.61611570749933],[-123.67351061592052,56.615114595345794],[-123.672310958768,56.61435649312925],[-123.66986340838847,56.61368118462776],[-123.66954624731638,56.61257135260443],[-123.6696407086447,56.61099594197107],[-123.67079653168942,56.60928167662078],[-123.67172287578057,56.60819432732449],[-123.67359575871745,56.60728211593472],[-123.67604024407817,56.60643287403319],[-123.6790699784044,56.60538340373681],[-123.6791076159085,56.60475301506938],[-123.67850490366703,56.60363806908414],[-123.67731172480497,56.60277588660012],[-123.67553020048545,56.602165367947514],[-123.67375503002833,56.601449573938574],[-123.6736043143622,56.600763102814504],[-123.67358221593759,56.6000072170616],[-123.67357137114021,56.599711103659864],[-123.67343949356133,56.598710000363944],[-123.67314951918453,56.59718034000748],[-123.6732374988287,56.59571019046387],[-123.67395937182076,56.59482875369236],[-123.6732203154493,56.59439506782063],[-123.67257816310142,56.593910446583614],[-123.67223798805888,56.59322055177941],[-123.67209986590622,56.59232470095018],[-123.67224765980423,56.58985579854795],[-123.67345134364807,56.588931516226694],[-123.67395467057574,56.58853036195368],[-123.67435509968467,56.58821253549719],[-123.67597896810328,56.58824185242209],[-123.67808164703045,56.58827978319677],[-123.68105670135868,56.58812266511742],[-123.68284707620583,56.58857522677959],[-123.68552191303195,56.58904142055022],[-123.68587725329222,56.589102730016535],[-123.68867012831406,56.588785237610566],[-123.68909064145488,56.58816172637199],[-123.68951223017721,56.587485551960484],[-123.69044627833958,56.58686900873626],[-123.69063210615823,56.586830868868255],[-123.6911898332769,56.58664359469529],[-123.6916534378793,56.586358235101066],[-123.69216340855469,56.586013177398776],[-123.69256104974822,56.58567058856293],[-123.69300540994801,56.58533107749637],[-123.69358247829271,56.58505783243328],[-123.69429588030064,56.584720894407724],[-123.69504178051623,56.584420402606696],[-123.69579422629297,56.58414692496614],[-123.69670618348489,56.5838314615266],[-123.69766064302834,56.5835212354525],[-123.69826325760872,56.583297746130654],[-123.69878714207456,56.58306051741613],[-123.69932456806966,56.582801111158965],[-123.69971646914621,56.582588421560104],[-123.7003126810847,56.58236929234475],[-123.70093412669647,56.58213716059729],[-123.70142568724052,56.5819632345253],[-123.70200825425616,56.58180213973481],[-123.70253258559208,56.58166017899025],[-123.70316731596927,56.581513460425064],[-123.70385506149279,56.58140131049521],[-123.70451678278123,56.58128084688452],[-123.70512014975887,56.581147010257716],[-123.70573079229744,56.58106261889365],[-123.70592963855964,56.581079612532534],[-123.70800456859311,56.580509054878334],[-123.71099426406609,56.58171897972607],[-123.71259010118503,56.58222034766602],[-123.7147573848618,56.58278451966187],[-123.71695246722798,56.582876141155765],[-123.7185668841888,56.5830627990953],[-123.71971385443616,56.583083116911084],[-123.7217978674308,56.58343497066572],[-123.72298683604538,56.5833999589875],[-123.72515026448744,56.58333620093181],[-123.72708883504693,56.582897432207325],[-123.72693621207085,56.58226369267902],[-123.7269822123664,56.58147653917717],[-123.72735030648364,56.58006290665393],[-123.72792712955832,56.57839179830248],[-123.72932778908803,56.57731246470816],[-123.73159611733907,56.57614304917138],[-123.73329809081665,56.574858265460065],[-123.73528809732768,56.57352697060777],[-123.73734627717587,56.57266872476163],[-123.7396089346301,56.57155288103771],[-123.74175958143645,56.570748872633075],[-123.74181443148296,56.56980384004524],[-123.74128791565639,56.569005525681035],[-123.74035105550487,56.5686741238782],[-123.73777385595682,56.56857617324678],[-123.73608253948387,56.568073437493446],[-123.73374776689012,56.56713903222647],[-123.7326533252114,56.56622531888504],[-123.7312534027466,56.56562229065736],[-123.72964879440585,56.5652790357772],[-123.72740193104504,56.56445030103877],[-123.72517251605782,56.56335955495111],[-123.7226325330453,56.56263203343287],[-123.71977379755099,56.562476052363124],[-123.71964702539529,56.5613697655781],[-123.72076498927801,56.55860313406185],[-123.72220406480912,56.55689354070309],[-123.72325105014355,56.555335037169485],[-123.72397097676125,56.554454459039626],[-123.72450770286905,56.553465278447376],[-123.7244673369977,56.55251745002525],[-123.72405036803166,56.55145872181838],[-123.72487713869384,56.55042199309935],[-123.72362007009045,56.55066315507639],[-123.72218703967621,56.550637791123],[-123.72028077436255,56.55055134658074],[-123.71778099904499,56.55082198449933],[-123.7161442740463,56.55100365926687],[-123.71394684471366,56.55101731177503],[-123.71127211499316,56.550969756582646],[-123.70921984239327,56.55014415080426],[-123.70818494240959,56.5498634396143],[-123.70535815684718,56.54918201072243],[-123.70373385977041,56.54915302842582],[-123.70267735242041,56.54923952648402],[-123.70153138790761,56.549219057331705],[-123.69979797961061,56.54945035617603],[-123.69825893138548,56.5496335502141],[-123.69692162284352,56.54960961656421],[-123.6952410048758,56.54894847573986],[-123.69358220267704,56.547920061701205],[-123.69288537867348,56.546750840656614],[-123.69264708584447,56.545958603533705],[-123.69310550882196,56.544652059999414],[-123.69315838459255,56.543759685646755],[-123.69235867574139,56.54274665818575],[-123.6917316514327,56.542051685156316],[-123.69129078776149,56.54141273078971],[-123.69096315656986,56.54051352751649],[-123.69003059857491,56.54012802077613],[-123.68880794061302,56.53979109544638],[-123.68713726152174,56.53897197991179],[-123.68595525446135,56.53795203497516],[-123.6847701804412,56.53698470365261],[-123.68363914225766,56.536753616214774],[-123.68145920409432,56.53645205354551],[-123.6793043891219,56.535729463808984],[-123.67875272750068,56.53504026722184],[-123.67823707376849,56.534396552606296],[-123.67926019213101,56.53325829516284],[-123.67988321362202,56.53268108742047],[-123.6803726055762,56.53222700260752],[-123.68004223553886,56.53137927983708],[-123.67944173269375,56.53021172119687],[-123.67936342599224,56.529953632092784],[-123.67896393812039,56.52862605429743],[-123.68119654749874,56.52803529587776],[-123.68419814513324,56.527354113550075],[-123.68643481957527,56.52665798067276],[-123.68687958457393,56.526266960625804],[-123.68696274064845,56.52582684207619],[-123.68759358380848,56.524839513656154],[-123.68970316890359,56.52308968876446],[-123.6905833255708,56.522737865038955],[-123.69194777026951,56.52228825078404],[-123.69378184749628,56.52195352844138],[-123.69599206271815,56.52173088137898],[-123.69887879979791,56.52136114866945],[-123.70119697158692,56.52092962796866],[-123.702750322747,56.52048440155578],[-123.7045997259369,56.51988640570023],[-123.70582272252166,56.51986340390445],[-123.70581537805107,56.519849822802975],[-123.70557211470992,56.51955518473297],[-123.7053337036843,56.519281928676655],[-123.70528724083384,56.51910288640878],[-123.70520040734401,56.518779656506624],[-123.70500188934471,56.51852056198881],[-123.70467839698621,56.51824018148838],[-123.70428478089285,56.51794061444014],[-123.70390259370295,56.517619954394185],[-123.70366572411022,56.51732094341207],[-123.70326279790584,56.516868773123704],[-123.70287566340784,56.51649422136426],[-123.70252019158085,56.51620429696559],[-123.70200703290328,56.51586111495559],[-123.70177047755112,56.51566073944305],[-123.70143986017005,56.51543290224352],[-123.70098102137872,56.51513552070961],[-123.700659259856,56.5149302565122],[-123.70048035662103,56.51478807242512],[-123.69977898066657,56.514392196951796],[-123.69941029151153,56.51411996035005],[-123.69906025676487,56.513807706488905],[-123.69869979514326,56.5134997482801],[-123.69828550781114,56.51313814582686],[-123.69786373827012,56.51279994550558],[-123.69748772387692,56.51241100496124],[-123.69730411974655,56.51214207755646],[-123.69710523024287,56.51175294657954],[-123.69714273978775,56.51139383043615],[-123.69724439305817,56.51105155532907],[-123.69718888133039,56.51095753139197],[-123.697067905346,56.50997351230525],[-123.69505566346992,56.51009547740412],[-123.69325629058807,56.50985359762792],[-123.69262666335001,56.50921126410759],[-123.69202504164159,56.50809643733547],[-123.69160014353322,56.50719437863208],[-123.69049895043388,56.50643932496858],[-123.68947470562425,56.50600059993214],[-123.68807346978248,56.50550128442097],[-123.68667635121936,56.504898910211764],[-123.685383181922,56.504191913076674],[-123.68418045312785,56.50353921167119],[-123.68294341665872,56.50346423235352],[-123.68127748166133,56.502593552653394],[-123.68002488492175,56.502780540265086],[-123.67905259818565,56.50307905905034],[-123.67770959109822,56.50321171206302],[-123.67633316631957,56.50387054257758],[-123.67428355705233,56.50462253670383],[-123.67185484851191,56.50531383163653],[-123.67031111983195,56.50560193280822],[-123.66846501696098,56.50614680842824],[-123.66555434252442,56.50645375878677],[-123.66539608884976,56.506445279640566],[-123.66460414412849,56.50651607448244],[-123.66392424345389,56.506619164283244],[-123.66330343640178,56.50672108338263],[-123.66257075089965,56.506855711031925],[-123.6619875240726,56.50690786915171],[-123.66126146553034,56.50689802020886],[-123.66069811459727,56.50685638268777],[-123.6600366168062,56.50678829685131],[-123.65921076831245,56.50671160975465],[-123.65846431485883,56.50670249429187],[-123.65838935559398,56.50669664503388],[-123.65766714423523,56.506318085099174],[-123.65702234154658,56.505938690591904],[-123.65602064275323,56.505131342364265],[-123.65567000568555,56.504599265832205],[-123.6551618982143,56.503538634866885],[-123.65384830551362,56.50314701770833],[-123.65154335168774,56.50336719204494],[-123.6498045591174,56.50354724324451],[-123.64895050585329,56.50363585957895],[-123.64576218986764,56.50426008781364],[-123.64393482826164,56.50448999774953],[-123.64174114782736,56.504449757742144],[-123.64010493060034,56.50468200074503],[-123.63719022536988,56.50552288848905],[-123.63593093873604,56.50581469050827],[-123.63494872590584,56.50626962219082],[-123.63337599267318,56.50702975735372],[-123.63207832551831,56.507951864768955],[-123.63066605531537,56.50761087085181],[-123.62973168027729,56.5072775555221],[-123.62823553692675,56.506776944643406],[-123.62645596345469,56.50621840016232],[-123.62484634529241,56.50597793619808],[-123.62313352673473,56.50589470662933],[-123.61979717646072,56.50583295277322],[-123.61712566412238,56.50578344210531],[-123.61548602447834,56.50606799332207],[-123.61383991659831,56.50645776638126],[-123.61169340709576,56.507206988845496],[-123.61001942938765,56.50801652654347],[-123.60955118898322,56.50874759820783],[-123.60952141834827,56.5087683411653],[-123.60932615684055,56.5089317200862],[-123.60916279379236,56.50920553846733],[-123.6090400943844,56.50948011325381],[-123.60885774017558,56.50976478689317],[-123.60866237147486,56.51012880076818],[-123.6084597872626,56.51044448230604],[-123.60823104095371,56.51075519323057],[-123.60797771287018,56.51103518253418],[-123.60780102016383,56.5112605537864],[-123.60752074123334,56.511581513395],[-123.60729841444497,56.51182060609572],[-123.6070762518422,56.512023833287635],[-123.60684809455527,56.5122583332725],[-123.60654841983569,56.51249710553889],[-123.60622837668166,56.51276912436773],[-123.60609745627734,56.512878774344095],[-123.60589859686957,56.5129344771417],[-123.60479773704455,56.512992428290836],[-123.6043264260699,56.51264513684184],[-123.60429578126734,56.51258067518438],[-123.60407231548199,56.512208859322286],[-123.60378947620733,56.51190879361576],[-123.60351970444962,56.51162802595749],[-123.60325737794341,56.51129247318962],[-123.60296845148241,56.510992292057146],[-123.60270486093012,56.510710516993534],[-123.60244820089753,56.510415420033624],[-123.60219885127671,56.51013390954334],[-123.60161566106154,56.509620870963474],[-123.60161531507164,56.50949420453813],[-123.60108548906368,56.50910657749661],[-123.60106401938823,56.50902547303124],[-123.60086479752057,56.508591334335485],[-123.60066065237889,56.508138048390165],[-123.60070022216868,56.50749539964909],[-123.6006068704984,56.5073255241074],[-123.60051634735316,56.507043612924825],[-123.60043247519963,56.50681899095759],[-123.60031035434501,56.50655442377115],[-123.60013571693345,56.506349403436545],[-123.60002138525155,56.50615671798813],[-123.60000009078384,56.506105880523535],[-123.59991119204378,56.505896856719374],[-123.59970848200844,56.505519816285464],[-123.59960166377965,56.50540349087351],[-123.59951445130855,56.50533236695252],[-123.59919917150883,56.504965552473216],[-123.59902864211554,56.50485924504515],[-123.59890101834107,56.50468424433627],[-123.59880640299498,56.504568146244196],[-123.59887467753269,56.504351970686535],[-123.59896903174587,56.50420801895663],[-123.59938525677016,56.504026366413626],[-123.59966526473632,56.50390830019926],[-123.59979537893398,56.50384459861625],[-123.60000116457516,56.50367582647868],[-123.60029288651441,56.50343355989366],[-123.60042778852424,56.50332511187786],[-123.6009375494078,56.50291317896068],[-123.60102062513546,56.50278694955736],[-123.60113753654079,56.50270618704943],[-123.60127935940112,56.50258441690678],[-123.60140271297367,56.5024981700469],[-123.60161620352781,56.502402396769426],[-123.6016172704121,56.50228584510374],[-123.6019391923995,56.50218088643111],[-123.60212246030167,56.50201393288038],[-123.60228501794728,56.50181969152816],[-123.60246049337115,56.5015808558702],[-123.60265657078197,56.501337920917514],[-123.6028198446394,56.50109885725118],[-123.60296365031856,56.500878485193354],[-123.60309994274128,56.50064788496142],[-123.60324374517396,56.50042751264047],[-123.60344107600011,56.499998534412086],[-123.6034785574288,56.49991853029772],[-123.60338491127486,56.499919025306745],[-123.60336557555217,56.49917440161021],[-123.6033387038616,56.49795662738024],[-123.60331294608964,56.49691933576486],[-123.60335191006423,56.49628564659159],[-123.60328497614523,56.49571947637493],[-123.60327726331055,56.49514992759258],[-123.60328349586496,56.494452859360074],[-123.60314876650739,56.4937979964203],[-123.60306080359018,56.49347466411426],[-123.6029573399174,56.493138712916654],[-123.60283121850871,56.492972711788916],[-123.60260761081089,56.49280377036647],[-123.60220132816352,56.49259443005179],[-123.60188602685739,56.492460764622535],[-123.60161922966832,56.49233248748421],[-123.6014786494733,56.49226933548248],[-123.60111636735155,56.492105648128586],[-123.60000094636065,56.49168241921417],[-123.59918980898357,56.49137359253663],[-123.59771995854469,56.49079240017195],[-123.5969748501909,56.49053523323384],[-123.59681520336652,56.49045154346198],[-123.59645811867387,56.49033613737209],[-123.59628486908834,56.4902421044954],[-123.5959186621428,56.49010971299819],[-123.59578557692421,56.49002427725566],[-123.595031173984,56.48968734240007],[-123.59432291531137,56.489295223295],[-123.59346601518892,56.488872293384745],[-123.59247923931343,56.488477186957454],[-123.59234591770071,56.48842873201012],[-123.59203040724856,56.48829952100686],[-123.59151798601032,56.48816325444692],[-123.58969626829179,56.487781610076986],[-123.58907562911077,56.48768477525619],[-123.5879766793672,56.487591285835045],[-123.58744700834995,56.48750399742721],[-123.58736549238357,56.48747332341031],[-123.58699213665287,56.487358705400496],[-123.58646155064116,56.48715482410973],[-123.58581269689589,56.4868568054483],[-123.58554735105949,56.48677223520928],[-123.58535763081662,56.48671486641403],[-123.58486905615655,56.48665411993347],[-123.58335839728392,56.486540518378185],[-123.58324326296342,56.48652714322255],[-123.58222486024074,56.4864149434785],[-123.58125688198194,56.48624427838042],[-123.57956099307984,56.485870461074796],[-123.5791795475057,56.48575566728001],[-123.57723382937334,56.48521233947477],[-123.57628915945874,56.48502750426264],[-123.57542971536803,56.48487901829609],[-123.57408294087907,56.48468321237157],[-123.57369447480514,56.484648972997356],[-123.57326374506948,56.48457470287061],[-123.57283257719764,56.48444213691738],[-123.57250903584955,56.48431272464116],[-123.57204250267176,56.48399678304731],[-123.57177533378842,56.48374625792777],[-123.57172458578272,56.48367916614357],[-123.57143662585996,56.48323993829721],[-123.57108781339426,56.482406127941225],[-123.57107713794122,56.482316255171824],[-123.57078561694856,56.48160794593512],[-123.57063027993566,56.48106474074123],[-123.5704129044711,56.480374646667634],[-123.57028701586111,56.47962015112153],[-123.57020212279609,56.4788933325703],[-123.57000379153254,56.478354917883365],[-123.56974553116028,56.47766853295557],[-123.56962015929722,56.47749354402968],[-123.56945262177918,56.477342416314066],[-123.56931116285416,56.477262397703015],[-123.5692204318787,56.47721696573308],[-123.56892126392961,56.47705662015963],[-123.56861461499919,56.476951055527],[-123.56819087770782,56.47670092045564],[-123.56773639779732,56.4761285078186],[-123.56744013319052,56.47569359698742],[-123.5673364647237,56.47536657662589],[-123.56735070504106,56.4751056804735],[-123.56773602848014,56.473949503204985],[-123.56778228571554,56.47372956552639],[-123.56777900147061,56.473423502333304],[-123.56769942670752,56.47306891691774],[-123.5676598388154,56.47266016578216],[-123.56762002937039,56.47218976199167],[-123.56775715655635,56.471393171086476],[-123.56780614375272,56.47083590019216],[-123.56776449947829,56.47029708837396],[-123.5677469101404,56.47025304079559],[-123.56763830294815,56.47003801584973],[-123.56745244192408,56.46982264797157],[-123.56709576051699,56.46963991104826],[-123.56680501093402,56.46957387341481],[-123.56673048029971,56.46952986738059],[-123.56651657290539,56.4695033953968],[-123.56628479905936,56.46943735352453],[-123.56506159543868,56.46925835745464],[-123.56413537009811,56.4690782592827],[-123.56369635303183,56.46897689563378],[-123.56320781604177,56.468821909049005],[-123.56214621084084,56.4684004784384],[-123.56186457970477,56.46825389890324],[-123.56171476495685,56.46817819620823],[-123.56118183748957,56.4678878525487],[-123.56089019661704,56.4676738276258],[-123.56069093955904,56.467575887512965],[-123.56012518013443,56.467160497352296],[-123.55976540607035,56.46686559208084],[-123.55949766372568,56.466529841801666],[-123.558877800246,56.46593968032279],[-123.55865320951577,56.46569441940101],[-123.55811733539082,56.46522466491888],[-123.55774400516549,56.46498441905483],[-123.55748573475884,56.464855087075506],[-123.55670996789576,56.46428772830105],[-123.55606117318013,56.46386849692532],[-123.5559948591634,56.46382351989871],[-123.55529503954793,56.46331027958999],[-123.55502811979845,56.463059722221494],[-123.55483438288456,56.462809437455526],[-123.55472154240117,56.462468781012774],[-123.55431828274072,56.461279686998104],[-123.55429855546275,56.461140321599004],[-123.55418462041911,56.46068755562359],[-123.55411167169312,56.46009994381739],[-123.55402453706354,56.459803491215915],[-123.55386249569538,56.459404731590936],[-123.55367540063135,56.45849773461634],[-123.55351010582442,56.457924055042845],[-123.5532384672489,56.45729566659445],[-123.55326854233948,56.45707542627165],[-123.55341183910038,56.456832684963416],[-123.55419713872418,56.45598009101018],[-123.55426499523445,56.455902922520536],[-123.5546782242706,56.4554075215192],[-123.55521841478824,56.45460517549646],[-123.55529054189988,56.45449221982693],[-123.55549346149247,56.45430329399399],[-123.55589312698321,56.453991455776965],[-123.55651430892934,56.45361546084383],[-123.55662164170423,56.45355697703994],[-123.55686529414466,56.453399088560495],[-123.5582882352808,56.45261913891823],[-123.55954960850127,56.45201656329925],[-123.56011352738344,56.45167757331236],[-123.56041427948092,56.45145127014423],[-123.56128928985436,56.45098032168724],[-123.56158183761441,56.45072247571583],[-123.56180080388181,56.45043857190797],[-123.56191329099471,56.45019972145686],[-123.56202863181841,56.44968743222488],[-123.56212456457864,56.4489326659358],[-123.56207197536185,56.44863575654469],[-123.56187566856168,56.44826438066222],[-123.56115740681227,56.44704131003437],[-123.561099724217,56.44695614825958],[-123.56107906539177,56.44666881244318],[-123.56128659643532,56.44620983715904],[-123.56160927056312,56.4457945222134],[-123.56169872145259,56.44566395938399],[-123.56232375846723,56.44502797285622],[-123.56252371486713,56.44468990639205],[-123.56285984827952,56.443961001418664],[-123.56300098399007,56.44342566519562],[-123.56306919405381,56.44301672288737],[-123.56325693249947,56.4424183824507],[-123.56336185401996,56.44168172329995],[-123.56355097923566,56.44106099202247],[-123.5635488612851,56.440867041789716],[-123.56349727162022,56.440781996986956],[-123.56334594298207,56.44063453102607],[-123.56321239595873,56.44052775383906],[-123.5630716423586,56.44043877348654],[-123.56287993087724,56.44025467210088],[-123.5626945104283,56.439937306751744],[-123.56272403185822,56.43975740803346],[-123.56270442054442,56.43955079594582],[-123.56259515979146,56.43938059006768],[-123.56252670599228,56.439272807110335],[-123.5622770517264,56.43904052742376],[-123.56124726343205,56.43844819187299],[-123.56085660447035,56.438228920737714],[-123.56060549698549,56.43798764303267],[-123.5603797975775,56.43782755044275],[-123.559979981328,56.437397379312664],[-123.55992056602074,56.43734020580607],[-123.55970194185169,56.43706703895113],[-123.55938905866978,56.43654660849359],[-123.55937856511753,56.43625946691301],[-123.55941782546451,56.43615148980344],[-123.55965506192182,56.435606778652925],[-123.55957493957332,56.43506835942789],[-123.55937089432035,56.43413976285278],[-123.55937432717485,56.43382486493433],[-123.55922894084344,56.432348160785786],[-123.55924489733754,56.43219042249397],[-123.55931481283177,56.43133204988037],[-123.55939101623903,56.43099051552714],[-123.55959016197451,56.4298846498929],[-123.5595891827606,56.42983531327689],[-123.55959492155426,56.42964599659104],[-123.55953132243638,56.42936344979196],[-123.55939824505182,56.429184941986954],[-123.5593638221346,56.42908565098998],[-123.55899636050185,56.42869196000642],[-123.55849457425963,56.42820492094769],[-123.55809445273832,56.42787897811139],[-123.55756778025899,56.42740042826157],[-123.55750922603976,56.427297314570964],[-123.55735797224995,56.42714984250784],[-123.55716398276725,56.426841272825826],[-123.55712047582065,56.42669249018896],[-123.55709550742807,56.426572082248896],[-123.55738626265078,56.425658513189425],[-123.5575646403386,56.424885153284684],[-123.55761890947447,56.42401751925346],[-123.55764593625581,56.423617886588204],[-123.55761413416934,56.42311961866556],[-123.55748174088298,56.422540974629484],[-123.55720132710059,56.42195838997403],[-123.55718412159574,56.421908744353125],[-123.55697905246609,56.42138812099192],[-123.5568511670201,56.420607807602266],[-123.55682679910466,56.4200233754245],[-123.55671829089236,56.41932301248514],[-123.55677611211695,56.41878834364817],[-123.55696453566368,56.418113814444396],[-123.55705780429733,56.41772665370823],[-123.55753818820264,56.41679988950488],[-123.55788242657924,56.41610142766533],[-123.55797238666723,56.41586439866645],[-123.55904949405114,56.41399963061758],[-123.55949159289854,56.41361911055576],[-123.55987570343204,56.41328904480079],[-123.56946513799019,56.410601832148934],[-123.57923052676527,56.410033402488025],[-123.58749485546986,56.41061959875738],[-123.59561465744987,56.41012654724974],[-123.60143060941638,56.40879186915207],[-123.60363040602999,56.406824487473315],[-123.60594578554692,56.40296728135046],[-123.60587546191839,56.40119955004305],[-123.604345253123,56.398875510901114],[-123.60700107676327,56.39581373110601],[-123.61284905240487,56.39231825753341],[-123.61559321862904,56.388854483613166],[-123.61530530309611,56.386921330394024],[-123.61891118408543,56.38395773129669],[-123.61966174380096,56.38229495307748],[-123.61525309135642,56.38006100931145],[-123.61227430230105,56.37780873636299],[-123.6108075691276,56.374454830842225],[-123.61231277733884,56.37106668716699],[-123.61745278530105,56.36820349964933],[-123.61790915737458,56.363908124156175],[-123.616391254519,56.359531185240776],[-123.61477192511296,56.354695056933885],[-123.60547794485083,56.353893904652985],[-123.58800385627511,56.354498366058706],[-123.57670095126086,56.354975324117326],[-123.56856423132481,56.35461480909885],[-123.5666427548484,56.350301254074736],[-123.56582297457541,56.3447084820898],[-123.56388463133764,56.342501701145345],[-123.55682492307807,56.33817974216379],[-123.55064817329017,56.33505786286057],[-123.54732286889819,56.33172136949731],[-123.54770059238486,56.32543409999659],[-123.55278820398345,56.321317278020906],[-123.56078331062052,56.320716814039756],[-123.56451959035874,56.31849260602467],[-123.56295984627194,56.31543224349159],[-123.56242067531433,56.314982613290155],[-123.56278370742,56.31097258025444],[-123.56498524890135,56.30683618594394],[-123.56579892119063,56.30391071043849],[-123.5625168554061,56.30120310067977],[-123.56055628751699,56.29809024062005],[-123.55833155682845,56.29662211381921],[-123.55501527651124,56.29551862586594],[-123.55435588028978,56.291811866058715],[-123.55637757673823,56.288479186894484],[-123.55922765657468,56.28483952422122],[-123.55925668365039,56.28307371488653],[-123.55328351006577,56.27708654220096],[-123.55209891783936,56.27583546634526],[-123.55564733707845,56.27448672990994],[-123.55865752373592,56.272679302275186],[-123.56000891721061,56.27021249946564],[-123.56033167038237,56.268147459587865],[-123.5619670595789,56.26527362326276],[-123.56350353409195,56.26216476557971],[-123.56436561216783,56.26079144681977],[-123.56058964341922,56.26140081181533],[-123.5510511493528,56.261514152700265],[-123.54764642455818,56.26109913653198],[-123.54283046107717,56.25841531089332],[-123.54145180617215,56.25459603727561],[-123.54496440491691,56.25250275031259],[-123.54983381066619,56.25095546133008],[-123.55249493291385,56.24538468746959],[-123.55246053202653,56.244639833684516],[-123.55105376249965,56.239968367676646],[-123.54925680571876,56.23559424700891],[-123.54608952008718,56.233229081221516],[-123.54255226583487,56.232129906970684],[-123.54152162728063,56.22922294348794],[-123.5420314219899,56.22624702657147],[-123.53831070273179,56.22292954268992],[-123.52683368561729,56.223164870484744],[-123.52622382397603,56.223350304875034],[-123.51621866601691,56.218717627802626],[-123.50891214485091,56.21515004728427],[-123.50081595343805,56.21232869368814],[-123.49464259670884,56.20902454436653],[-123.49022549339028,56.205817418465394],[-123.48862247596645,56.2043512489763],[-123.4886790058847,56.200183022017974],[-123.4934386155894,56.198519276154244],[-123.49904726436343,56.19772381248562],[-123.4976310910192,56.19281838368217],[-123.49806754867134,56.19053159127455],[-123.50056186969312,56.18890383419777],[-123.5057268951506,56.18718485898443],[-123.51158632955998,56.184950238964916],[-123.51254736816146,56.18048592314467],[-123.5077067767721,56.1771097476621],[-123.50263404105807,56.175620687665486],[-123.50168121806682,56.17460676728238],[-123.50019627220873,56.17028285344702],[-123.49896550117329,56.167550921735284],[-123.49439872263282,56.165999710558964],[-123.48837914720325,56.163442382688906],[-123.48681108176216,56.15969049123553],[-123.48768809309135,56.15556541977528],[-123.48980045785298,56.15205647173044],[-123.49103143044326,56.14895154732528],[-123.48659820695848,56.14534940487226],[-123.4839060375871,56.141781512990676],[-123.48215234574509,56.13842937702152],[-123.4820898351993,56.13688596686859],[-123.48036080187694,56.13416192133461],[-123.47672724152525,56.13271813459628],[-123.47421121793276,56.13120675719628],[-123.47320553138151,56.128532820632756],[-123.47082635298825,56.12489911233793],[-123.47055952518107,56.12353095731428],[-123.47098299629681,56.12095712858279],[-123.4745869015394,56.11857198383144],[-123.47449477919591,56.11623897118043],[-123.4762134806093,56.1130721812711],[-123.47456752837908,56.10982966842189],[-123.47318749752237,56.10847528895431],[-123.4734760808143,56.104984255557426],[-123.47486375184343,56.10069017475632],[-123.4764831932769,56.09478680799388],[-123.47399366184806,56.09063991706757],[-123.47274133189788,56.09031915643729],[-123.4712058020843,56.08713259310946],[-123.47255343201412,56.08471166894017],[-123.47190532106211,56.08100479504479],[-123.47302862182293,56.078310435715046],[-123.47689068259822,56.07786711965309],[-123.47927461801166,56.078873768120765],[-123.48546648276623,56.080287482296555],[-123.50104471165673,56.081536056391926],[-123.50584147442616,56.08159438444323],[-123.50823737309197,56.0801351052019],[-123.51034928520708,56.07628532033242],[-123.51020468273722,56.07526038726224],[-123.51249030712971,56.07094776476708],[-123.51635797631747,56.07039579495824],[-123.52084242248674,56.07027713103474],[-123.52031333786415,56.066913626957955],[-123.5158572605884,56.06531139656433],[-123.51554972945819,56.065081241456745],[-123.51095683152352,56.0623375068172],[-123.50949640480393,56.058695694955674],[-123.5093975962836,56.05618334999235],[-123.51705357332013,56.05603732326322],[-123.5261393651187,56.055936614819274],[-123.53343021855665,56.05441971854067],[-123.53711192337889,56.051918010758946],[-123.53896748220052,56.049784295333446],[-123.54210610529802,56.04642917639804],[-123.54679711225175,56.04346260741886],[-123.5508523598695,56.04009810731203],[-123.55519406563866,56.03599487531039],[-123.55940244221316,56.03143171797115],[-123.56139604467465,56.03015210090539],[-123.56275285205365,56.02824162005109],[-123.56373151496459,56.024638376764436],[-123.56905606662963,56.019934998783334],[-123.57336466324307,56.015256837259095],[-123.57798508479705,56.0104589933211],[-123.58019077568177,56.00700460591155],[-123.58158591727376,56.0033913020438],[-123.58589701045116,55.99993212283362],[-123.58662051980997,55.9973011447235],[-123.59215712550841,55.995075388951484],[-123.59311776284363,55.99329161519988],[-123.59815625981695,55.9886714363834],[-123.59976810835546,55.98489176396863],[-123.59903134573075,55.98141728023997],[-123.59840947691353,55.97816909746555],[-123.59869584413,55.97451675580988],[-123.60513139906799,55.9717068855522],[-123.60746109203808,55.97116813822531],[-123.61262450514553,55.970252416171135],[-123.62235619933139,55.96895606056144],[-123.62944276394481,55.967564715383936],[-123.62944015642998,55.96734054282145],[-123.63027581795265,55.962246148785475],[-123.63478054955989,55.957014088937264],[-123.63967530874673,55.954102100489315],[-123.6470262398172,55.951450721910376],[-123.64912741201435,55.95040497249721],[-123.65730642672294,55.948655898276755],[-123.664588325807,55.946862885805615],[-123.67039714619067,55.94445072302776],[-123.67436886337632,55.941332250404095],[-123.67732359496956,55.938849448025856],[-123.67886038894248,55.93591031028071],[-123.68104151823127,55.93155758052802],[-123.6801244104564,55.9285914227305],[-123.67940527787738,55.92580817857803],[-123.68072572305059,55.9229905820859],[-123.68205542804736,55.92001178438037],[-123.6808994511364,55.916198594238],[-123.67461865918973,55.91444287912127],[-123.66809004273452,55.9141793739124],[-123.66461837869738,55.91375680105784],[-123.66210180196524,55.91155883864057],[-123.66068109393625,55.9090045611766],[-123.6588887864821,55.90731296674595],[-123.65555537351992,55.90483978013262],[-123.65260193057358,55.90218528890904],[-123.64924252042296,55.899083914722176],[-123.64779674502415,55.898590889893065],[-123.6449395162069,55.89810745053285],[-123.64081876677524,55.89649773952445],[-123.63767900013723,55.894305568368075],[-123.63539350010632,55.89284645778828],[-123.63305824921406,55.89275797661456],[-123.630038357704,55.893929625948644],[-123.62550704220573,55.89249996920433],[-123.62157698451517,55.890140145880615],[-123.61569404955642,55.88774340855127],[-123.60956335910541,55.887071914639705],[-123.60574421091535,55.88528741988962],[-123.60456914041222,55.88404596039857],[-123.60099090671135,55.88305478153755],[-123.59724445466051,55.88378155663214],[-123.59553815010102,55.88443046950963],[-123.5931211517263,55.884904474618786],[-123.58787779686243,55.8833612677147],[-123.5846009279184,55.8824291516429],[-123.58192322678059,55.88166080563927],[-123.57966853694985,55.881052898805784],[-123.57859349540557,55.87923933989477],[-123.57767584169333,55.87616473005742],[-123.57553922515912,55.87311157830509],[-123.56985908217945,55.87036687544282],[-123.56147038874082,55.86869032799143],[-123.55116258829288,55.86748706977303],[-123.54126744613714,55.86661372618286],[-123.53443276146517,55.865996540296],[-123.52741995938605,55.86618235930199],[-123.52261696963727,55.86817723531224],[-123.51850583177409,55.86986277036535],[-123.51693359660864,55.87193872827416],[-123.51874690014702,55.87419767950059],[-123.52156795898142,55.87674530729535],[-123.5207967142066,55.87805703981353],[-123.51755136439708,55.87844165133483],[-123.51482712871304,55.8792039934667],[-123.51233157808196,55.880661098826195],[-123.51064726282785,55.88170379363562],[-123.5078279712263,55.882697218857096],[-123.50526569680066,55.88215362767091],[-123.50300820307385,55.88160703425256],[-123.4993259443814,55.880781215190694],[-123.49859680162922,55.88039922278275],[-123.49763470581792,55.87863196371962],[-123.49728801577712,55.8772713468402],[-123.49493275062365,55.87700955729906],[-123.49078296191183,55.8775010848422],[-123.48740544519264,55.87668095223833],[-123.48486162888236,55.87636143569689],[-123.4810050631477,55.877028815569744],[-123.47831807729727,55.87870559311092],[-123.47603160845551,55.88038134543429],[-123.47441950977915,55.88103054008264],[-123.46936116246759,55.88193357716261],[-123.46541352693589,55.88225799046752],[-123.46045143965456,55.883153642077886],[-123.45836592759888,55.884429684863484],[-123.45263921317704,55.88374967827678],[-123.44694091790092,55.88362584495862],[-123.44026129693442,55.884548803841724],[-123.43571515934781,55.88544295304884],[-123.4322230777366,55.88417073448772],[-123.42840189142751,55.87883927213502],[-123.42720462613056,55.876053520590915],[-123.42194345148732,55.87341808953761],[-123.41452475440568,55.870460402800184],[-123.4058344985668,55.86882999941683],[-123.39901343895227,55.86826850192336],[-123.39636170849356,55.86765805879866],[-123.39173752016455,55.86610135008689],[-123.38755291461,55.86225831620283],[-123.38579638498793,55.8609578397191],[-123.37726571664041,55.86131911619345],[-123.36740709039924,55.861410099828504],[-123.3649617237693,55.86132329617121],[-123.36471531081895,55.85948912700087],[-123.36393186486389,55.85681890341301],[-123.36387637897879,55.854764568510554],[-123.36462600274992,55.852646329802944],[-123.36850640431204,55.849929837017434],[-123.37275794395326,55.849094801890544],[-123.37450630058498,55.84639656997338],[-123.3749726370716,55.84467586385176],[-123.37580914077003,55.84244283090659],[-123.37844001678009,55.838256640558306],[-123.3801958014994,55.835675064400135],[-123.3796083641266,55.832937305865904],[-123.37498772331357,55.831155832624646],[-123.36846496301332,55.83030287774661],[-123.36527298940577,55.82895424507151],[-123.357279715802,55.82999767265637],[-123.35405793405441,55.83053991372841],[-123.35010166307866,55.83057354966624],[-123.34564848703427,55.827987556688],[-123.34193788861337,55.8257935906603],[-123.33834183737126,55.824283329357215],[-123.3376746347018,55.82206366075343],[-123.33941866386547,55.81897131959582],[-123.34141431190295,55.81427040697544],[-123.34167241475589,55.81233025226167],[-123.33947067491566,55.80961206103339],[-123.33615004261392,55.80712126978842],[-123.33022226550027,55.805579458848044],[-123.32563042441801,55.80487259731184],[-123.32120666985199,55.80262699414764],[-123.31881035030302,55.7999760069685],[-123.31621149385322,55.79394051015507],[-123.31508586863731,55.790249509641775],[-123.31481992796748,55.78756304331836],[-123.31217091073921,55.78370510192393],[-123.31039735822885,55.78132720696451],[-123.30817891584326,55.77820458764452],[-123.30832241242666,55.77632480595311],[-123.3126322134043,55.773825536891906],[-123.31551020151345,55.77169017093103],[-123.31510551735948,55.76822073266875],[-123.3124737213727,55.76436315622666],[-123.31214041998909,55.76362085235097],[-123.31277231489744,55.760424537933275],[-123.31524068728643,55.75771562889232],[-123.32102870612991,55.7545841310439],[-123.32380041095581,55.75233877781489],[-123.32531709038591,55.74856050385054],[-123.32768394421245,55.7459119995243],[-123.33390929690253,55.74026988055694],[-123.338066847356,55.73686112709229],[-123.34142395499917,55.733471234620644],[-123.34235755008548,55.73049639560327],[-123.3394507076151,55.72812191901599],[-123.33546378894827,55.72662110251065],[-123.331709132169,55.71928841072023],[-123.3308226941693,55.71656199765307],[-123.32811635882798,55.713841817953394],[-123.31825826386952,55.712332304063175],[-123.29840262720066,55.707873394691575],[-123.2887259740731,55.70584538895303],[-123.2797605968773,55.70346438367885],[-123.27017736210502,55.7010334624816],[-123.2647875635443,55.69958954447233],[-123.25305736137187,55.69985422788448],[-123.24245582172598,55.70546839526348],[-123.23482347882269,55.707820527857365],[-123.22299572770163,55.71241099923671],[-123.2093154412117,55.716062772928886],[-123.20104173418274,55.71703586403216],[-123.19396152482231,55.71760462637245],[-123.19097365967131,55.71944787392395],[-123.19359511509222,55.72324527075048],[-123.19672360369553,55.727331843597426],[-123.1955946111678,55.73088430234233],[-123.1910261999472,55.73428841447507],[-123.18804876271273,55.736867109963114],[-123.18338995360827,55.73724726969653],[-123.17894668239724,55.737739681490226],[-123.17319312748971,55.73868674993941],[-123.1670494845633,55.74039591723626],[-123.1624839964521,55.73990765988713],[-123.15352227108583,55.73768810693829],[-123.15117092879447,55.73662175382606],[-123.14686326943323,55.73477581747269],[-123.14450562802675,55.73313532556574],[-123.14252872664633,55.73086678830544],[-123.1389226481656,55.728606068282616],[-123.13667544488911,55.727658357318965],[-123.13452916678253,55.72664116594805],[-123.13337197115244,55.724310408224824],[-123.13640843847027,55.71984233145519],[-123.13934842569405,55.71559617632755],[-123.14021877343932,55.71370604897851],[-123.14056299413708,55.71114044605684],[-123.13949025169212,55.70852473661515],[-123.13680492437443,55.706141362480636],[-123.13371191372131,55.70388314583208],[-123.13234485978276,55.70115306599935],[-123.13035840967339,55.698606119661015],[-123.12759992691196,55.69725202394335],[-123.12373484037576,55.69641955499397],[-123.12168550731859,55.69541328764146],[-123.12113720129467,55.69306941598925],[-123.12277392890769,55.68941256896609],[-123.12718426552867,55.68732543758685],[-123.13019846275999,55.68645269841967],[-123.13227311601308,55.68467079492908],[-123.12999976228018,55.682574592944675],[-123.12743372796317,55.68100069580096],[-123.12690258207992,55.679742212030675],[-123.12684227927024,55.676602520885886],[-123.12778604899118,55.67369198594566],[-123.12841239968739,55.67031690909279],[-123.12774468650865,55.66763859127001],[-123.12768004970764,55.66433741250013],[-123.12971782619314,55.66084212738718],[-123.13431625811765,55.65875016515121],[-123.14072971831625,55.65579370291212],[-123.1460062762292,55.65245248500399],[-123.14915818107015,55.648946358172225],[-123.150089214979,55.64529122277839],[-123.14860808146501,55.64216422554665],[-123.14583711390182,55.64058602698916],[-123.13966813457078,55.640401003861555],[-123.13906621720335,55.64035144304454],[-123.13814264555118,55.63990003305231],[-123.13676608299102,55.637107014315454],[-123.13496408262608,55.63358696351438],[-123.13159354577871,55.63150160381208],[-123.12547470460575,55.62931745956678],[-123.11667804648765,55.6289276816165],[-123.11073006664034,55.629015262805424],[-123.10455494933167,55.62872073256082],[-123.0991904413427,55.62801420789993],[-123.09440881578246,55.62696225898986],[-123.08662984575099,55.62638764876163],[-123.07894825655282,55.626442488907415],[-123.0728863986586,55.62613108780618],[-123.07000936434301,55.624100318532356],[-123.07122889542634,55.61964534696923],[-123.07475457600206,55.61414117308287],[-123.07570014025475,55.61145522381504],[-123.07555646857686,55.609290892440015],[-123.07479850102112,55.606385952043844],[-123.07257931336324,55.60235301639518],[-123.07080610832296,55.59962164945654],[-123.06793009102775,55.59673897686703],[-123.06546319202431,55.59457416650442],[-123.06440398394007,55.592531885532736],[-123.06668907275782,55.5904601594596],[-123.07129560465562,55.58906127056402],[-123.07531099819523,55.588123688690516],[-123.07648801720391,55.586178423351534],[-123.07371018562701,55.583916867112514],[-123.06931442499005,55.58137538266616],[-123.06603479470554,55.57837561915467],[-123.06324407436917,55.57565620239879],[-123.05956581413324,55.573113195957156],[-123.0562130284086,55.57198549190772],[-123.054679290373,55.57142943585719],[-123.05089148533956,55.56865941427465],[-123.04823733942274,55.566911254874974],[-123.04448195910683,55.56521780487409],[-123.04233349334079,55.56437810370363],[-123.04151478443441,55.56340831829414],[-123.03965536586159,55.561033082660266],[-123.03688536020196,55.558717015844834],[-123.03170573482123,55.55737508834592],[-123.02758609385606,55.558030778019514],[-123.02631055055753,55.55956976476309],[-123.02543006829234,55.560714595319446],[-123.02404656691657,55.562206169859174],[-123.02080865763901,55.56212036912072],[-123.01535933665429,55.561408016362535],[-123.00697132788277,55.56128891886497],[-122.99823180360522,55.56288253027874],[-122.99143834031607,55.5662887460861],[-122.98746597297752,55.56939472011826],[-122.98276607406223,55.57159534676726],[-122.97759379614442,55.575613748056305],[-122.97332778086191,55.57962691662653],[-122.97133605009964,55.58050250593973],[-122.96783448542381,55.58177203649841],[-122.96179237413783,55.58254958690793],[-122.95864788813313,55.582051983355804],[-122.95578173693136,55.579785515595454],[-122.9534247817832,55.577522367757396],[-122.94774900520898,55.576012474878084],[-122.94206954004564,55.574556030052726],[-122.93994709673564,55.57422631278706],[-122.93455503792613,55.57152108053841],[-122.93107233905232,55.56840496668585],[-122.92909077177768,55.565217880307685],[-122.92996222078978,55.56298837260658],[-122.9352699206976,55.560562406993526],[-122.94168474622961,55.55841431281577],[-122.94486198162394,55.555550426204405],[-122.94692196498029,55.552112277537994],[-122.95040381000497,55.55003584573558],[-122.9543055601703,55.548077131119626],[-122.95415304459719,55.54528459929813],[-122.9497720209528,55.54290940161837],[-122.94742454931436,55.5407629008903],[-122.94647153749807,55.53888346383701],[-122.94540542031899,55.535575458117236],[-122.94205151497445,55.52852609058526],[-122.94128281927686,55.52424785575454],[-122.9407968998519,55.5198061379668],[-122.94293066135457,55.515177261330926],[-122.94598266675752,55.51161991783008],[-122.94854609895786,55.50800578241337],[-122.9534248679934,55.505470191375466],[-122.95894700664603,55.50407094418946],[-122.9637412347879,55.50221443419486],[-122.96296296124021,55.49845625891343],[-122.96080136990965,55.49556124134818],[-122.95821764458422,55.491750243788005],[-122.959009701765,55.48593184097312],[-122.95958662515024,55.483982037416375],[-122.95955242490317,55.48192772522166],[-122.95385517514586,55.47900047042953],[-122.94598188360442,55.47756224391674],[-122.94030601732965,55.47582750338037],[-122.93562749328451,55.47288839023706],[-122.93285913458311,55.46987932603675],[-122.9313625963861,55.464982373435014],[-122.93634081561297,55.4613021939444],[-122.94515151884177,55.45976894058196],[-122.95884175606645,55.45997680204384],[-122.96106029397488,55.46042524308743],[-122.97095725936293,55.462754482498134],[-122.9770161818151,55.46403080853991],[-122.9830615093581,55.46423046263731],[-122.99188385752439,55.46252385715433],[-122.99625427788914,55.45946348288535],[-122.99775912541426,55.4542091019752],[-122.99666958820106,55.44970846194327],[-122.99619275574945,55.44634338629312],[-122.99753553811516,55.443030957673386],[-122.99822123195686,55.44171134268918],[-123.00055418523908,55.43787566788734],[-123.00218907727701,55.434041167563976],[-123.00071404975263,55.430454922047105],[-122.99916306853585,55.42767385148371],[-122.99389121906401,55.4261125356259],[-122.98755405192108,55.42523371763382],[-122.98259495699855,55.42394845081194],[-122.98168729477985,55.41790970940558],[-122.98559783948512,55.412695622930976],[-122.98666033755985,55.41057814157719],[-122.98900436030146,55.40679678367412],[-122.99042947601973,55.402168315830394],[-122.98793071307972,55.39790263871768],[-122.97940135785711,55.39801060822429],[-122.9719165850451,55.400851345716696],[-122.96182273630643,55.40319784763949],[-122.95442099454027,55.40512496778402],[-122.94462933747926,55.408257639662885],[-122.93853341198705,55.409659808502134],[-122.93199811862414,55.40975962761196],[-122.92405396302988,55.40922363854749],[-122.91424952560713,55.411448002103086],[-122.9067532302044,55.413316258668786],[-122.90134983634434,55.41454548586308],[-122.89472618535542,55.415771086844366],[-122.88680195468082,55.41598651216825],[-122.87955539065989,55.415231926325404],[-122.87220565093246,55.41417840297707],[-122.86897067296069,55.41339795057226],[-122.86793801049006,55.41181172198511],[-122.87482900368026,55.40858549049214],[-122.87981777596904,55.40678210679162],[-122.88106235475348,55.4034144860589],[-122.87650056478623,55.4003592116713],[-122.8714483658318,55.39912982503197],[-122.86358944365217,55.39733659428982],[-122.85704786817415,55.396526563059524],[-122.85091788722963,55.39592384528392],[-122.84879657135211,55.39530540258063],[-122.84626240739449,55.393896313989636],[-122.84639795721922,55.389559376938024],[-122.84845785359067,55.38612293377263],[-122.84919503406185,55.38178324718918],[-122.85124514865933,55.378463110061084],[-122.85262628957793,55.37680303884493],[-122.84558268645131,55.37597966725805],[-122.83916618241211,55.37664246814806],[-122.83477902030211,55.37786755177824],[-122.83060306960016,55.38062236710484],[-122.82730852520305,55.382637186978506],[-122.82173765497998,55.38499758503947],[-122.8120839125084,55.38452739720534],[-122.80512145002321,55.381883343566244],[-122.79995024501203,55.378827421474995],[-122.79761227654375,55.37598743517092],[-122.7936612898141,55.37411937315061],[-122.78795299117073,55.37443005150171],[-122.7839264719178,55.37410222291444],[-122.78141169680104,55.373086823683956],[-122.77845068853327,55.37014069737317],[-122.7762293974518,55.36843324731353],[-122.77050054989242,55.36782783504698],[-122.76717473618413,55.36784938773468],[-122.76417153956172,55.36740390235817],[-122.76063616834871,55.36610153172678],[-122.75700784162677,55.36458140489391],[-122.75499715064548,55.36419733901284],[-122.75257316238752,55.3626635302409],[-122.75392687940104,55.35923701794519],[-122.75419033386478,55.35637405243451],[-122.7521401625747,55.3529666252887],[-122.75100420377518,55.350973028093435],[-122.75187751225707,55.34937251808561],[-122.75204390160597,55.345951004898126],[-122.74832521208752,55.34596178300831],[-122.74563574396768,55.34654635563302],[-122.74008377530991,55.34497549891532],[-122.73343287053882,55.341752362956356],[-122.72890093272218,55.34068300012921],[-122.7232834276955,55.34070600489808],[-122.72058579351366,55.34100283622475],[-122.71579103064074,55.34198880622724],[-122.70987892920826,55.34367158467361],[-122.70657160686078,55.34368299133624],[-122.70305417376606,55.342208963515105],[-122.6997094456599,55.339600401711614],[-122.69899673574804,55.33903447075501],[-122.69356667688137,55.33716873632243],[-122.68763509505318,55.335827550673194],[-122.6823058196613,55.335049174938526],[-122.67889146654592,55.334832768552246],[-122.66919511290196,55.336744678458984],[-122.65952072029329,55.34236949654849],[-122.6566480476412,55.34494730359009],[-122.64912263734186,55.35472770906412],[-122.64556364365119,55.368704190271515],[-122.64294580309615,55.37784483930885],[-122.64083376445944,55.386227755242274],[-122.63868046502597,55.39188301350071],[-122.64032029393648,55.395182829055514],[-122.6408246540399,55.39559102136814],[-122.6394302327854,55.39672844842455],[-122.63461314275584,55.396177253581286],[-122.63019205685073,55.39619262584839],[-122.6279889891824,55.39676998435903],[-122.62425351574389,55.39832949904323],[-122.62254680050762,55.39698735686934],[-122.62220053964863,55.396725743319934],[-122.62195032739102,55.39652278182138],[-122.62163464780228,55.396274325700475],[-122.62110956082165,55.395973118434966],[-122.62108312798517,55.3959578289564],[-122.62072718329046,55.395740794006265],[-122.62042909664945,55.395542139879566],[-122.62012676508657,55.3953938208167],[-122.61973261854574,55.395230684529295],[-122.61922701100052,55.3950039900414],[-122.61858151729604,55.39476902293961],[-122.61800574444351,55.39452921287387],[-122.61728800179279,55.39432928015971],[-122.61727059924768,55.39432432446336],[-122.61695463125295,55.39422047311225],[-122.61647196791955,55.39409753188778],[-122.61613586086457,55.39402116118175],[-122.61594339652497,55.39397895088889],[-122.61591611637063,55.39397372744552],[-122.61558161826476,55.39387833957318],[-122.6153679909959,55.39382882828853],[-122.61531173905578,55.39381497191694],[-122.61528643467197,55.39380980185792],[-122.61522058849934,55.39379232212846],[-122.6151587880657,55.39377383084391],[-122.61513771847461,55.39376541209682],[-122.61477031091613,55.39363773869129],[-122.61434571907587,55.39348384961784],[-122.61429060264189,55.393456569971235],[-122.6142755546282,55.393447193124324],[-122.61424103472419,55.39343392518789],[-122.61421996550455,55.393425506286576],[-122.61399912262806,55.39332086160503],[-122.61363831141598,55.39318551553305],[-122.61324984513078,55.39304941866634],[-122.61322294429816,55.393039720367454],[-122.612791135788,55.39285423837453],[-122.61237324325913,55.392691554768156],[-122.6123367491187,55.3926782327392],[-122.61198613363635,55.392492707129485],[-122.6117473445719,55.392366269984336],[-122.61170934856123,55.392347301365284],[-122.61166730696281,55.39232934414221],[-122.61163673988102,55.392316182646994],[-122.61161021844185,55.392302009738835],[-122.61158557788966,55.39228900897131],[-122.61154391492599,55.39226657744386],[-122.61140745189539,55.3921944870167],[-122.61137181023565,55.39217109761636],[-122.6111089765921,55.391977860128456],[-122.61085620000374,55.39180619638289],[-122.61058808286354,55.39165205399579],[-122.61027417858647,55.39145406555766],[-122.61025198776007,55.39143552530665],[-122.61000901343779,55.3912417029736],[-122.60960198122945,55.39088086342465],[-122.60958571730235,55.390862483892086],[-122.60920093496847,55.39042600959771],[-122.60897181282458,55.39020901714471],[-122.60885259831844,55.39009703101366],[-122.60882524035041,55.39006938113441],[-122.60879938429804,55.3900473776905],[-122.60878866841728,55.39003363318283],[-122.60877240520685,55.390015253546416],[-122.60874890340673,55.38998882946386],[-122.60870923318821,55.38994290716919],[-122.60870039803946,55.3899303348434],[-122.60854606121255,55.38971873508159],[-122.60837075479934,55.38949759668902],[-122.60806041218056,55.38904744341359],[-122.6080484792444,55.389024696706976],[-122.60786257446499,55.38860146544644],[-122.60774250430731,55.38835940320468],[-122.60707135095083,55.3871438032457],[-122.60667029806389,55.386199003436545],[-122.60628576405948,55.38533985704143],[-122.60580505015041,55.3844478248739],[-122.60512730291816,55.383007805308786],[-122.60429045509274,55.38146031088537],[-122.60343719664775,55.379803612819806],[-122.60262045937851,55.378067178994115],[-122.60207371318126,55.377045522606714],[-122.60162751389319,55.37602884173037],[-122.60104177377342,55.37479085995952],[-122.60051715379505,55.37371934590025],[-122.60050870436305,55.37370229880125],[-122.60043387150742,55.37344127860481],[-122.60042984574962,55.373418746240496],[-122.60040036996676,55.37311299417214],[-122.60040029333267,55.373090569321924],[-122.60043622540891,55.372830322385816],[-122.60043736413026,55.372816899730005],[-122.60051791000755,55.37249732595269],[-122.60056804180184,55.37223298106438],[-122.60057859664445,55.37220187655119],[-122.60072841855187,55.37190549033451],[-122.6007469659727,55.371873482260916],[-122.60078187845286,55.37183519286569],[-122.60072849082326,55.37181131672866],[-122.60061833612811,55.371756745551195],[-122.60054053232089,55.37169408592288],[-122.60035281956777,55.371503987525536],[-122.60032355723675,55.37128905344438],[-122.60030851748381,55.37116307649823],[-122.60029302496005,55.37113574736654],[-122.60029522254598,55.37096987877686],[-122.60024257402961,55.370843998959785],[-122.5999998701613,55.37076563754496],[-122.5999170579317,55.37073871750139],[-122.59947734989292,55.37057987403457],[-122.59931932054776,55.370436548922434],[-122.59279021725779,55.3704188767168],[-122.59099318676465,55.36660502222968],[-122.59222101038449,55.36466196604719],[-122.59224101578636,55.36247179839962],[-122.59539159385274,55.36248713055361],[-122.59604632044618,55.362489288923065],[-122.59602631621087,55.36246856293807],[-122.59599625197978,55.36244980491697],[-122.59594756678267,55.36244062939235],[-122.59585414446477,55.36242238594398],[-122.5958074333377,55.36241326419357],[-122.59571249113907,55.36241291743556],[-122.59552336679333,55.362403275306605],[-122.59541329765729,55.362394667800686],[-122.59520868779995,55.362357695484754],[-122.59508161299946,55.3623396547395],[-122.5950191101515,55.3623301019648],[-122.5949086827127,55.36230242483664],[-122.5946672547041,55.362233055379164],[-122.59460974544689,55.3622113060574],[-122.59455299651093,55.36218060831896],[-122.5945002906746,55.36214889970671],[-122.59440672316933,55.36208580552693],[-122.59429569706776,55.36199532757825],[-122.5942021302425,55.36193223324631],[-122.59412459676543,55.36191330079604],[-122.59402950966219,55.36186810311],[-122.59398234638076,55.36184103004675],[-122.59392121937638,55.361768730301925],[-122.59381071475335,55.3616255724399],[-122.59377943864865,55.361597811640976],[-122.59371724460753,55.36156135919941],[-122.59368511312256,55.36154366530951],[-122.59359124088664,55.36150746953919],[-122.5934344147374,55.36144376949977],[-122.59337181861412,55.36143533444984],[-122.59323016935991,55.36142586312789],[-122.5930885201726,55.361416391645484],[-122.59299358035692,55.36141604282117],[-122.59296123653606,55.361424129211905],[-122.59293077157847,55.3614333880167],[-122.59286710704714,55.36146080010722],[-122.59280308482546,55.36146914298331],[-122.59273982322699,55.36146853744811],[-122.5926779878744,55.36145115367203],[-122.59264519134973,55.361441289345656],[-122.5925983375942,55.36138731674826],[-122.59252101898153,55.361342602838405],[-122.59239404369598,55.361323440814374],[-122.59222071684714,55.36131422475436],[-122.59204860322185,55.361314010717095],[-122.59200037262781,55.36132278429264],[-122.59187344623845,55.36134958993478],[-122.59177850659144,55.36134924018714],[-122.59171645826821,55.36135763639952],[-122.59152733985854,55.36134798822257],[-122.59147865702094,55.3613388109576],[-122.5913702086979,55.36131118460295],[-122.59133807844859,55.36129349011005],[-122.59132304786603,55.36128411053755],[-122.59126040455365,55.36122970623466],[-122.59121355290844,55.361175733119225],[-122.5911964533389,55.36116741817549],[-122.59108679275049,55.36113078930428],[-122.5910403933438,55.3610947667647],[-122.59100947631713,55.3610860744603],[-122.59089950689564,55.361076344432895],[-122.59081914649667,55.36106742293859],[-122.59077243809239,55.36105829930713],[-122.59069369509137,55.36103036245437],[-122.59066308757393,55.36099477105727],[-122.5903352313975,55.36061583878403],[-122.59030648223558,55.360418853274226],[-122.59018151094227,55.3602831446253],[-122.5900395832384,55.36018397039708],[-122.59002455337517,55.36017459066961],[-122.58972688308022,55.359975864220054],[-122.58966424397543,55.35992145912492],[-122.58963349703704,55.359841017836445],[-122.5896488367394,55.359823498609884],[-122.58971433346821,55.35975129244731],[-122.58976166006843,55.35970661847157],[-122.58980929650971,55.359635045477596],[-122.58980977502509,55.35953639783469],[-122.58977912324899,55.35945483804081],[-122.58970167024833,55.359365272755],[-122.58962617315412,55.35911319488514],[-122.589547913922,55.35898660968042],[-122.5895327894576,55.35897834843957],[-122.58950151837713,55.35895058657817],[-122.58940765598376,55.35891438767521],[-122.58935897658432,55.35890520958677],[-122.5892655654961,55.35888696121913],[-122.58918673263237,55.35886014196778],[-122.5891245470088,55.358823687251395],[-122.5891090668694,55.35879635677275],[-122.58909335100203,55.3587252951977],[-122.58909366142112,55.358698396201795],[-122.58906270130217,55.35864373523564],[-122.58906377315672,55.35860788788691],[-122.58903150558702,55.35854534316856],[-122.58901664655666,55.3584642146891],[-122.58898523578357,55.358391603063104],[-122.58894067482697,55.35831078405578],[-122.58890885859192,55.35826618994986],[-122.58886232414164,55.358185316977234],[-122.58884715500719,55.358131087474455],[-122.58884822704064,55.35809524012973],[-122.58886428273537,55.35802280447251],[-122.58891160824312,55.35797813082766],[-122.58905341421936,55.35791585841427],[-122.58915017885829,55.357871414533335],[-122.58921329402673,55.35782717225223],[-122.58922796694941,55.35781748289042],[-122.58924527982357,55.357800017650945],[-122.58929367626962,55.35771949651584],[-122.58938827977505,55.35758418070948],[-122.58959534051542,55.35740597058969],[-122.58969115475695,55.3572796568415],[-122.58972304463848,55.35725362066407],[-122.58980249456924,55.35722664158572],[-122.58988163451417,55.357226561450105],[-122.59016490185468,55.357245511517554],[-122.59021236681524,55.35724568701347],[-122.59026028327342,55.357263813126536],[-122.59030698714346,55.35727293694555],[-122.59043287801717,55.35732794843693],[-122.59054217112184,55.35734550868668],[-122.59062242887347,55.35735554890046],[-122.59085899335014,55.3573653736931],[-122.59104809282505,55.35737502287742],[-122.59111023024546,55.357365508455324],[-122.59122049852884,55.35734833929597],[-122.59126948541468,55.3573306176603],[-122.59131604653965,55.357294891473245],[-122.5914115462453,55.357195475403906],[-122.59142809703951,55.357186958229086],[-122.59157065714113,55.35711573459791],[-122.59163376845143,55.357071491097614],[-122.59166651281262,55.35703538751154],[-122.59172926683796,55.35697207478786],[-122.59177810947206,55.3569095033271],[-122.59182573899476,55.356837929587115],[-122.59184392745085,55.35669379882818],[-122.59184333161203,55.35663099857505],[-122.59181317861575,55.35661335810588],[-122.59170186485436,55.356549776905],[-122.59163968052651,55.356513323450315],[-122.5916241044647,55.356487111836266],[-122.59153055468731,55.35642401554325],[-122.59150004504542,55.35638730582434],[-122.59145167705353,55.35635122955947],[-122.59140590054723,55.35626140918666],[-122.59137377432633,55.356243714713024],[-122.59132692835122,55.356189741671045],[-122.59131220859528,55.35615346310908],[-122.5912807954767,55.356080852079415],[-122.59126583770136,55.356000842435826],[-122.59128433671756,55.35582981277957],[-122.59129998308266,55.355785394365924],[-122.59136349657894,55.355713133471106],[-122.59144325117617,55.355659254361704],[-122.59158566247493,55.355543181106015],[-122.59179263300882,55.35543559745033],[-122.59190351271519,55.35536462970714],[-122.59203148926493,55.355301976692125],[-122.5921423681795,55.35523100873789],[-122.59217434992406,55.35520385339469],[-122.59222242906631,55.3551502301414],[-122.59225642449181,55.35488993221531],[-122.59225668374455,55.35481706506216],[-122.5921947148271,55.354754831445376],[-122.59214634817863,55.35471875545612],[-122.5921162915688,55.35469999651796],[-122.59202167607965,55.35467274796436],[-122.5919593992837,55.354637413222456],[-122.5919273692067,55.35461860034873],[-122.59184916002988,55.354537984810065],[-122.59181819936734,55.354483324552724],[-122.59180338470256,55.354448164601436],[-122.59178700012959,55.35438493322035],[-122.59180380975661,55.3543035488506],[-122.5918379295096,55.35420469888783],[-122.59185236174423,55.354151278155285],[-122.59187130958868,55.353998199070844],[-122.59185483000438,55.35393608624757],[-122.59179295816057,55.353872733892004],[-122.59160567892832,55.353655723761364],[-122.59152716352702,55.353602007016384],[-122.59148077243161,55.35356598467131],[-122.59141707134083,55.35354742784351],[-122.59137113235955,55.3535293560814],[-122.5912930694364,55.353493589813645],[-122.59121419799443,55.35342080370393],[-122.59115102014826,55.35334956731611],[-122.59116904333509,55.35327718530485],[-122.5912002633438,55.353258978577564],[-122.59126382089686,55.35323268590725],[-122.59129580164314,55.35320553079511],[-122.59134357069739,55.35317880687661],[-122.59142134674237,55.35312487389647],[-122.59150176178785,55.353063164948814],[-122.59159725096104,55.352963748785086],[-122.59162837543958,55.35294666049676],[-122.59166142509198,55.3528836579445],[-122.59167752197243,55.35285719011959],[-122.59169556569636,55.352668209842335],[-122.59169587432402,55.352641310858466],[-122.59161714719863,55.35261337461446],[-122.59156999642352,55.352586300669124],[-122.59150758001438,55.35250611610613],[-122.5914928614465,55.35246983758068],[-122.59149317020857,55.352442938597946],[-122.5915092188665,55.35237050264723],[-122.5915248636337,55.35232608422269],[-122.59163673442454,55.3522898994371],[-122.59173150913547,55.35224539968953],[-122.59179385192282,55.352210104495654],[-122.59189045608984,55.35212080891885],[-122.59192122268902,55.35208465139479],[-122.59195457962085,55.35199474978861],[-122.59200281982696,55.35186937805639],[-122.59202592628674,55.351690626330814],[-122.59203636166906,55.351591129668975],[-122.59208669024154,55.35134809507688],[-122.5920882114478,55.35133019834857],[-122.5921978664129,55.35125022812444],[-122.5922786798024,55.35116050116335],[-122.59235858809758,55.35103487292068],[-122.59239027789019,55.35091801834437],[-122.59240922215568,55.35076493923397],[-122.5923777162047,55.350693447069986],[-122.59231584853538,55.35063009499653],[-122.59203186627951,55.35062009818401],[-122.59185706446709,55.35062877835685],[-122.59158963038205,55.35061026331135],[-122.59152638592205,55.35060965716254],[-122.59149471614765,55.35060991334848],[-122.59146466292029,55.35059115426228],[-122.59143254121336,55.35057345981507],[-122.59141630194704,55.35055507800718],[-122.59140103715292,55.35050196740634],[-122.59140251060079,55.350438102549155],[-122.59143577223479,55.350349319642945],[-122.5915135426714,55.35029538662262],[-122.59154552090762,55.350268231455416],[-122.59161130729173,55.350169125400384],[-122.59169168947642,55.34994485005578],[-122.59170702449696,55.349927330595996],[-122.59180286272326,55.349846983470165],[-122.5918195054827,55.34983734770553],[-122.5918830572103,55.349811054730125],[-122.59194584824937,55.34979371008426],[-122.59203985613807,55.349758158476874],[-122.59205695102037,55.34976647329437],[-122.59208821671149,55.34979423448728],[-122.59210379047845,55.34982044602357],[-122.59210272157448,55.349856293362784],[-122.59211834422646,55.34992847303317],[-122.59214915782607,55.34993828359766],[-122.59218006651028,55.349946975608965],[-122.592290005741,55.34995670449684],[-122.59243237478593,55.349957228507584],[-122.59252773991419,55.349975528370166],[-122.59257488826769,55.35000260194615],[-122.59260579709364,55.35001129385219],[-122.5927474059056,55.35002076586978],[-122.59279410191071,55.350029888751386],[-122.59288901478439,55.3500302377268],[-122.59298347502548,55.35001263601932],[-122.59309412501509,55.34996744769527],[-122.5931899605597,55.349887099504784],[-122.59320560249807,55.349842680882006],[-122.59327047856543,55.349707672738994],[-122.59330321544483,55.3496715687539],[-122.59339783677166,55.34958221816754],[-122.5935245794273,55.34951056142552],[-122.59369837508528,55.34946709625223],[-122.59376247299562,55.349457634382155],[-122.59390408012669,55.34946710508764],[-122.59396656267316,55.34947665840619],[-122.59401523168812,55.34948583468932],[-122.59410831606486,55.349530978466404],[-122.59417201202405,55.34954953391334],[-122.59425113681876,55.349549451009544],[-122.59440883813429,55.34953245299404],[-122.59456694099694,55.349487437250794],[-122.59470794820777,55.349434106855604],[-122.5948359014642,55.3493714510092],[-122.59496188096259,55.34930874118923],[-122.59507333891698,55.34930057086707],[-122.59516749020773,55.34930986649124],[-122.59527697476486,55.34930164214769],[-122.59538852761386,55.349292352996535],[-122.59551465371653,55.34927449220271],[-122.59556210927158,55.349274665665746],[-122.59567204748018,55.349284391575715],[-122.59579938705303,55.349275532709996],[-122.59589308452576,55.34926687718812],[-122.59594129977788,55.34925810212176],[-122.59598754165202,55.34924927321005],[-122.5960198750495,55.34924118604708],[-122.59614706598535,55.34918747724466],[-122.59622634711435,55.349115644523415],[-122.59624153130993,55.34905327492723],[-122.59624406218276,55.348953562652405],[-122.59626000591571,55.34888224466815],[-122.59627649863825,55.34882775873044],[-122.59643511252271,55.34873006120736],[-122.59649784603548,55.34866674614739],[-122.59651545716325,55.34862238093487],[-122.59653140028227,55.34855106291859],[-122.59651759471377,55.348434088051775],[-122.59650196473044,55.34836190894377],[-122.59650318621857,55.348254313013335],[-122.59653638848629,55.34800296251196],[-122.59656988057615,55.347957909289555],[-122.59669646340485,55.34784139976684],[-122.59674498197444,55.34780572541002],[-122.59682304549848,55.34772489011733],[-122.59699875498755,55.347518907923735],[-122.59703179173795,55.34745590398879],[-122.59703179793802,55.3473393058635],[-122.59701783569827,55.34729407961982],[-122.59692369522257,55.347168187269666],[-122.59689410958626,55.34693418384632],[-122.59686335810615,55.3468537444555],[-122.5967867749297,55.34663751863655],[-122.59674175703725,55.34653875192922],[-122.5966944609175,55.3464668303689],[-122.59664801939633,55.34638484185578],[-122.59663350875898,55.34632278353222],[-122.59663376000847,55.346249916439895],[-122.59665091569371,55.34618760063013],[-122.59669882902344,55.34608912614197],[-122.59671501478991,55.34606153913945],[-122.59682571072067,55.345945717536246],[-122.59690543857216,55.34589183499831],[-122.59697004516977,55.345829692081686],[-122.59698501686253,55.345793102845526],[-122.59701866222672,55.34567630097401],[-122.59706611963331,55.34555987576317],[-122.59711387574376,55.34553314966066],[-122.59722441381271,55.34548907624859],[-122.59735159124435,55.345435366241745],[-122.5974466481468,55.34536396321564],[-122.59751165263917,55.34527380249771],[-122.59755925812586,55.34520222666496],[-122.5975583488735,55.34516632549589],[-122.59759260127674,55.34499572552703],[-122.5975620947781,55.344959017335704],[-122.59749937358161,55.34490573481035],[-122.59746795807273,55.34483312542817],[-122.59742066266166,55.34476120415641],[-122.59737382195794,55.344707233451444],[-122.5972963804706,55.34461767302318],[-122.59725115366365,55.34454468694616],[-122.59723512410824,55.34450052548271],[-122.59722070816031,55.34443734869148],[-122.59717417299554,55.34435647894103],[-122.59715747917801,55.34432014730813],[-122.59711231348945,55.34417653120346],[-122.59711231945508,55.34405993312042],[-122.59711423799149,55.34401401882556],[-122.59717717303145,55.343924923034585],[-122.59732149919668,55.34380889719965],[-122.5974635467489,55.343719716367374],[-122.59759056823773,55.34362115657459],[-122.5976225370437,55.34359399987168],[-122.59765511493333,55.34351304521806],[-122.59767120410231,55.34348657664829],[-122.59773499117122,55.343387413642326],[-122.59778350343298,55.3433517388995],[-122.59786125177851,55.34329780196843],[-122.59827250633002,55.343182326064934],[-122.59855825947602,55.343147512916296],[-122.59862058212639,55.343112214350626],[-122.59862012704899,55.3430942637741],[-122.5987942880668,55.343022774018756],[-122.59892191079271,55.34298701300299],[-122.59898423287399,55.34295171425648],[-122.59909637440003,55.34288862385469],[-122.59915975859005,55.3428174776498],[-122.59938197209692,55.34269236120949],[-122.59947595676371,55.34265680403301],[-122.59952370781487,55.34263007701746],[-122.5997152617859,55.342540000794735],[-122.59974591914948,55.342504959931986],[-122.59977788560788,55.342477802680655],[-122.59981091384569,55.34241479804551],[-122.59984166586817,55.342378638609496],[-122.59989017503788,55.3423429630522],[-122.59990550357475,55.342325442600675],[-122.59996943594632,55.34227112800909],[-122.59999999804931,55.34223720563551],[-122.60006523934787,55.34219077461149],[-122.60012967944657,55.3419671824868],[-122.59999961144712,55.34189188566618],[-122.59997322227248,55.34187659182303],[-122.59991150880775,55.3418580931152],[-122.59986315076524,55.34182202016587],[-122.5997861072495,55.34170444378837],[-122.59975474769723,55.341677803097625],[-122.5997083630007,55.34164178385616],[-122.59965970219636,55.34163260979953],[-122.59953511947197,55.34163257796447],[-122.5994542842474,55.341676341434855],[-122.5994071982247,55.341695238571816],[-122.59926425145585,55.34174852045199],[-122.59918720989849,55.34174754175813],[-122.59913976322808,55.341747369672746],[-122.59898184808313,55.3417206426551],[-122.59890237840773,55.341701659433554],[-122.59885644961528,55.341683590448326],[-122.59874552635445,55.341639084752394],[-122.59868259978387,55.341611583259485],[-122.59855750587661,55.34154763178495],[-122.59840126305815,55.34143125873764],[-122.59830692276383,55.341331147928635],[-122.59826084390754,55.341268229184635],[-122.59826190708249,55.341232381826835],[-122.59827738926049,55.34114311307156],[-122.59827769338831,55.34111621410582],[-122.59826479769366,55.34091854263212],[-122.59826540596235,55.34086474470211],[-122.59829691720905,55.34081963726128],[-122.59831309975196,55.340792050067684],[-122.59834497093964,55.34076601173705],[-122.59836069849341,55.340720473964545],[-122.59807033595574,55.340669954183696],[-122.59761340442763,55.340834634257504],[-122.59694692980088,55.34113822437536],[-122.59644337600308,55.34131620362671],[-122.5961624879155,55.34138702074093],[-122.59600631760682,55.34140966751829],[-122.59572854047524,55.34146711491587],[-122.59548287878451,55.341542255091966],[-122.59532556794441,55.34157832358104],[-122.59500762142912,55.34168960909441],[-122.59452516342165,55.3418984274821],[-122.59442318917638,55.341934884070376],[-122.5942082789663,55.34197386363517],[-122.59414692607722,55.34197443121458],[-122.59364164907053,55.34196288021777],[-122.59338057095897,55.34194005643353],[-122.5932619287016,55.341916636623004],[-122.59312020334937,55.341862315647845],[-122.59291258246309,55.341745653592945],[-122.59268389856281,55.34155105730306],[-122.59249945457196,55.34137112242191],[-122.59223397413342,55.34105107370076],[-122.59215643031969,55.34089311725796],[-122.59189371027128,55.34044757532654],[-122.5917207987074,55.34001569746109],[-122.59165882696864,55.33979089756678],[-122.59162573386197,55.33943571309607],[-122.5917119362612,55.33891001080303],[-122.59171680747045,55.33882942176221],[-122.59170263905258,55.33871692066274],[-122.59164119299894,55.338532496151366],[-122.5915376060886,55.338401856210695],[-122.59149912381538,55.33836604952029],[-122.5913985572676,55.33831621408403],[-122.59134079885393,55.33829781894575],[-122.59111687270044,55.338256945396054],[-122.59107178329187,55.33825234997605],[-122.59069383575067,55.33825547620124],[-122.59046375374503,55.33826376345554],[-122.58971914606286,55.338346557276424],[-122.58955183748536,55.338337499314086],[-122.58943753420547,55.33830970956762],[-122.58934531246379,55.338278038798556],[-122.58905933442955,55.33810653376645],[-122.58863717716088,55.337722771951874],[-122.58842505496152,55.33754319446671],[-122.5882792220332,55.33739794252305],[-122.58810260605992,55.337312390250624],[-122.58798588368919,55.337266594623664],[-122.58778647057538,55.337239838980814],[-122.58739427303661,55.33722462691922],[-122.58694913994013,55.33725056891657],[-122.58647358456273,55.337262223225316],[-122.58596592026966,55.33725617989558],[-122.58552856737185,55.33721393992621],[-122.58536759069169,55.337177020872076],[-122.58531180942958,55.33715867694155],[-122.58511775905713,55.33704573556828],[-122.58502859124951,55.33697826838471],[-122.58498534080702,55.33692887523244],[-122.5847428603474,55.33661840704945],[-122.58466282320316,55.33653661462914],[-122.58454248981361,55.336370754178134],[-122.58448083458357,55.33623564987376],[-122.58423336543605,55.33609994267053],[-122.58395163962915,55.33601823306644],[-122.58382557800232,55.336012538853765],[-122.58359786122898,55.33601639332309],[-122.58313307909172,55.33606420625248],[-122.58302245621533,55.3361093856824],[-122.58286551783887,55.336234018982],[-122.58281029187154,55.336302017393116],[-122.58262686773102,55.33657503752063],[-122.58249684850915,55.33673179994834],[-122.58239333157557,55.33687919795715],[-122.58218707836247,55.337071990748825],[-122.58201490280722,55.33728253410318],[-122.58185270574143,55.33739917425008],[-122.58156404599823,55.33767715790858],[-122.58144142621589,55.337770216767396],[-122.58108501214633,55.33798467975492],[-122.58085404801592,55.33809607081471],[-122.58068184921902,55.33816758957659],[-122.58058232149827,55.338198496238675],[-122.58049774759196,55.33821635890111],[-122.58010755114998,55.338247146100834],[-122.57997076065918,55.33825124441944],[-122.57974420583679,55.338218126137114],[-122.5796516103918,55.33819092234667],[-122.57920998473661,55.33803642820572],[-122.57892755107157,55.33784705752056],[-122.57875992463136,55.33772586123494],[-122.57864187347543,55.33762620495797],[-122.57856827544394,55.337584946334154],[-122.57827792929112,55.33755792385276],[-122.57771855748601,55.337578457649464],[-122.57753633179244,55.337558883868404],[-122.57741691639482,55.337567940581934],[-122.57722371340938,55.33760748621397],[-122.57713563914056,55.33764318899473],[-122.57698962240309,55.33773223838757],[-122.57690912029675,55.337795056418905],[-122.57688045075076,55.337876113863494],[-122.57689012303851,55.337948132956626],[-122.57692553695668,55.33801973718148],[-122.57698659717708,55.33809204504829],[-122.57700848828308,55.33815991476488],[-122.57702223346082,55.33827689165226],[-122.57693689295643,55.33844272294182],[-122.57687818564412,55.33850501782765],[-122.57673814696965,55.338616654095816],[-122.57670457708565,55.33863927717614],[-122.57644110948429,55.338737435989366],[-122.57629254316501,55.33876363024135],[-122.57612211718182,55.33876792252824],[-122.5759275725053,55.33875361421206],[-122.57579071704288,55.338735283174984],[-122.57526267546154,55.33864342988612],[-122.5751570365669,55.33860689543309],[-122.5744833740242,55.3383215662517],[-122.5740518892326,55.33811800102275],[-122.57364633523832,55.337981294442045],[-122.57343057921479,55.33789128222345],[-122.57305488075752,55.337706062798034],[-122.57274492109005,55.337538344261205],[-122.57241381113352,55.33731734951862],[-122.5721287726791,55.33713573897187],[-122.57161893655325,55.336761838491775],[-122.57135363264901,55.33658076830115],[-122.57101823197847,55.33622511281199],[-122.57095833288821,55.336139379710744],[-122.57092876463243,55.335999543631395],[-122.5709299941948,55.335869523331226],[-122.57090757383874,55.33559982962181],[-122.57087567550371,55.33551038149419],[-122.57069242037791,55.33524859935978],[-122.57037282963668,55.335008855427546],[-122.57030703974127,55.33496892739781],[-122.57005688851171,55.3348420860989],[-122.56984519828447,55.334751057660945],[-122.56972051810938,55.334706146540086],[-122.56951015525222,55.33466896952731],[-122.56912381190531,55.334654981339575],[-122.56888070333171,55.334653900852345],[-122.56868311916008,55.334675374078955],[-122.56838355518408,55.33473328228525],[-122.56826709725252,55.33477716732008],[-122.56811915718238,55.334888576817306],[-122.56808240597303,55.33490214083461],[-122.56784718638512,55.33490127540461],[-122.56763678678048,55.334887638530574],[-122.5674121380087,55.33485567068347],[-122.56731768179615,55.334827284953604],[-122.56707784478594,55.334718659757876],[-122.56690396644706,55.33460175884439],[-122.56667102545157,55.33441259912601],[-122.56653685040175,55.334316971217184],[-122.56622357338212,55.33391145798552],[-122.56615334640931,55.33383104373365],[-122.56602306228977,55.33371309910539],[-122.56589327743296,55.33352005037296],[-122.56573718185065,55.33321864580476],[-122.56573105681221,55.33294379306232],[-122.56573981008621,55.33281846416674],[-122.56585864137423,55.33258517095859],[-122.56601866356458,55.3323787982879],[-122.56633560088382,55.33202538838484],[-122.5665974019605,55.33190029781648],[-122.56665184539536,55.33186479808833],[-122.56685305276793,55.33168534478422],[-122.56687660656269,55.33164114669733],[-122.56688238832372,55.331550491978184],[-122.56684632604383,55.33137123523379],[-122.56680741197077,55.331271502244654],[-122.56674343091817,55.331164352352204],[-122.56667119454768,55.330876468647425],[-122.56666602216015,55.33070591016156],[-122.56668084267822,55.33060205033693],[-122.56677227790934,55.330342215924354],[-122.56680381627918,55.33029711648638],[-122.56693628907855,55.330158375462936],[-122.56707747416529,55.33003332800401],[-122.56726524676662,55.329849019990704],[-122.56739015179757,55.32968316251561],[-122.56752585776793,55.32957590238299],[-122.5678159592518,55.32942019620511],[-122.56805562302377,55.32932252300193],[-122.56836960161424,55.32921119774455],[-122.5687259761665,55.32913579389857],[-122.56917818306752,55.32898005945661],[-122.56945967861554,55.328855505426105],[-122.56956393789144,55.32879222466339],[-122.56965226331477,55.32870720364366],[-122.56969156761038,55.32861747094342],[-122.5696647399875,55.328168270697525],[-122.56961289011149,55.327988580875356],[-122.56956045348716,55.327885113499526],[-122.56942148797748,55.32779944699767],[-122.56910773452441,55.32765403586804],[-122.56899052458768,55.327591390403796],[-122.56853469187583,55.327373678747605],[-122.56837053257468,55.327305256347856],[-122.5680549527891,55.327250605851674],[-122.56754144297517,55.32722190005695],[-122.56689500853719,55.327152535199886],[-122.56664947492408,55.3271110206694],[-122.56644939877091,55.32706963588674],[-122.56631488512602,55.32702444993429],[-122.5661581795394,55.3269382911474],[-122.5660346193196,55.326857529356566],[-122.5659320264124,55.32676276966697],[-122.56558733494003,55.326424779112145],[-122.56531708998358,55.32627943469725],[-122.56513339241661,55.32616225986553],[-122.56484787384436,55.325941376018434],[-122.56472479821504,55.325855020331254],[-122.5644604766884,55.32570983703184],[-122.5639971449199,55.325510960736004],[-122.56369778532381,55.32542871653419],[-122.56355900872443,55.325410317779614],[-122.56327811073191,55.325297188705996],[-122.56285098925765,55.32518339273855],[-122.56261730463078,55.32514219638536],[-122.5624101759904,55.32511406431304],[-122.56193880962535,55.325009136039725],[-122.56169844372054,55.32497672302741],[-122.56154691928434,55.32494563774747],[-122.561422374708,55.324899599867045],[-122.56138590434797,55.324863838322464],[-122.56127100200571,55.324728373156674],[-122.5611833263213,55.32459814323511],[-122.56110276060878,55.3242696635764],[-122.56083381314022,55.323671394825915],[-122.5602499302709,55.32289626493453],[-122.56013094174124,55.32237052114786],[-122.56013394419112,55.322266335831884],[-122.56001709359785,55.32217678316191],[-122.55988012826786,55.32204519247758],[-122.5597614751794,55.321861412126935],[-122.55974378321753,55.321514484723885],[-122.55978732903961,55.321214093184395],[-122.55977960953453,55.32111970255116],[-122.55971439319895,55.32093515389018],[-122.55961533677322,55.32082254719284],[-122.55948348357647,55.32072361068973],[-122.55932764663953,55.320489472733314],[-122.5592501560805,55.320448093986194],[-122.55901552162965,55.3203261400794],[-122.55870783313888,55.32020329089534],[-122.5585749393438,55.32016262511491],[-122.55819897255401,55.32009843316669],[-122.5576202882564,55.320024159617695],[-122.5570534896128,55.31997263477761],[-122.5567016254545,55.31992704229881],[-122.55648106481509,55.319917588468066],[-122.55581717526181,55.31991495045919],[-122.55571088679513,55.31990977247989],[-122.55540288570407,55.31985978194628],[-122.55532002300994,55.31988103752756],[-122.5552460013331,55.319845357803054],[-122.55482825589085,55.31983045387095],[-122.55455950729196,55.319829755809764],[-122.55396001293711,55.319790767376006],[-122.55365961891417,55.31979031403657],[-122.55345728678803,55.31977575275673],[-122.55321585623962,55.31977917031488],[-122.55298894726803,55.31975159611142],[-122.55292844255959,55.31971965208883],[-122.55256996872072,55.31931397006462],[-122.55233314091974,55.31907982539223],[-122.55211444353992,55.31879572891885],[-122.55208606045869,55.31866600975354],[-122.55204616704191,55.318279224726844],[-122.55200359481417,55.31810762995842],[-122.55191115229077,55.31794138317985],[-122.55158401573159,55.31760831901535],[-122.551496867636,55.31747248983326],[-122.55134792149589,55.31729683170805],[-122.55130304825673,55.31719804894779],[-122.55128308554032,55.317085379936415],[-122.55129476851754,55.3170184329229],[-122.551461536827,55.31682571950083],[-122.55166596047466,55.31667777283518],[-122.55188456889432,55.31652573345871],[-122.55207634394083,55.31640995031483],[-122.55224084915733,55.316266504854646],[-122.55242410218507,55.316042853480766],[-122.55243606785629,55.31592658285609],[-122.55238195150734,55.315705337658876],[-122.55235817911466,55.31547596209788],[-122.55237378983242,55.31522525212371],[-122.55244349537755,55.314919979485516],[-122.55243141701723,55.31480752874162],[-122.55236191712588,55.314627341371036],[-122.55190510785962,55.314216694795974],[-122.55170717116398,55.314036318541284],[-122.55157305296427,55.31396421799337],[-122.5514152765323,55.31389146293519],[-122.55126615588232,55.313809977732255],[-122.55069550440349,55.31357444311083],[-122.55052628643101,55.31349688564087],[-122.55026685926687,55.313411226181046],[-122.55008821820712,55.31335134606633],[-122.54979638302524,55.313274879377744],[-122.54931768719278,55.31316521130887],[-122.54875171785511,55.313082276006675],[-122.54867430012305,55.31306331545297],[-122.54854341162682,55.31302269359427],[-122.54839665634312,55.31293678551481],[-122.54828274382758,55.31285963468351],[-122.54804410215925,55.31267027689984],[-122.5477885833968,55.3125163287719],[-122.54769520492077,55.31245319995795],[-122.54767178869854,55.31242676463316],[-122.54761514812306,55.312350077782796],[-122.54756557686207,55.31226013260068],[-122.54753855799964,55.31216072135269],[-122.54753846399333,55.312115871898484],[-122.54763585038668,55.31178782309284],[-122.54755123224002,55.311576942099954],[-122.54758673978871,55.31111824517324],[-122.5475835840313,55.31074144429375],[-122.54760075575601,55.31061074279079],[-122.54741122044878,55.31047095357056],[-122.5472546200018,55.310384771199296],[-122.54672837010473,55.310185202518674],[-122.54649979414502,55.31008581374607],[-122.54641709652881,55.31003643370946],[-122.54626954405427,55.3098910785254],[-122.54616853497423,55.309755981947774],[-122.54612570045367,55.30967967673612],[-122.54609614187393,55.309540953669966],[-122.54580666073691,55.30934569765395],[-122.5456732929798,55.30924221803643],[-122.54535761131726,55.30905296193279],[-122.54514314311571,55.30885866166347],[-122.54489506870212,55.308664550764796],[-122.54473877499542,55.30852904179371],[-122.54455057357765,55.30825922859134],[-122.54442159144484,55.308127839685774],[-122.54381778098059,55.30761330018558],[-122.54361995795207,55.30745533593966],[-122.54350044544196,55.307374661313105],[-122.54277164190955,55.3069351325944],[-122.54269761094167,55.306877020756545],[-122.5424878804181,55.30667387728192],[-122.54226550176338,55.306502896643],[-122.54213623526604,55.30642082883834],[-122.54200365758278,55.30630839731248],[-122.54194189386317,55.30622259588022],[-122.54189744158982,55.30611933584005],[-122.54182770612893,55.30598846619702],[-122.54170713332314,55.3057137969385],[-122.54167738233195,55.305669245745214],[-122.54155081819864,55.30555585929834],[-122.54128469000403,55.30543411575387],[-122.54094814773711,55.30523529895472],[-122.54081421786908,55.305184493119675],[-122.54063947331683,55.30512582742373],[-122.54037622207574,55.30506246278398],[-122.53996254623112,55.30497922588161],[-122.53978193317027,55.30494281956461],[-122.53936589138733,55.30490996789795],[-122.53885106024705,55.304854190707154],[-122.53835037218487,55.304771895842975],[-122.53793635927354,55.30471555093367],[-122.53756536694365,55.30468730785469],[-122.53726865623575,55.3046454306282],[-122.53688446085064,55.30456412333018],[-122.5366445826308,55.30450476343387],[-122.53634976381076,55.30441808935865],[-122.53619719349473,55.3043544274126],[-122.53610068225649,55.30428223245371],[-122.53586915509847,55.30398877655033],[-122.53584473656353,55.303836738724385],[-122.53584219268144,55.30368306644842],[-122.53586622814987,55.303404560747765],[-122.53594914453751,55.30315347851711],[-122.53598276947086,55.30294699480311],[-122.53600109500981,55.30234543085758],[-122.5360225882763,55.30218794190859],[-122.53600684165413,55.30198120734726],[-122.53576834478699,55.30158552992854],[-122.53556375275714,55.301300669897365],[-122.53537985416583,55.300959204508715],[-122.53523900354648,55.30082859599547],[-122.53514893795722,55.30077339690996],[-122.53490382483363,55.30063764723829],[-122.53459467966559,55.300511328572306],[-122.53445190198053,55.30040308908546],[-122.53421069565631,55.300245022948225],[-122.53401812613548,55.300118580665455],[-122.53389996739162,55.29999981326502],[-122.53385633675278,55.29995599507373],[-122.5334108184524,55.29948728408989],[-122.53334792451687,55.299414900393444],[-122.53332995275116,55.29927985882225],[-122.5333349753207,55.2992216971146],[-122.5334408724389,55.29897910390603],[-122.53350032284115,55.29888545704654],[-122.53357057454117,55.29882686717812],[-122.53378088485078,55.29867911451329],[-122.53402790538452,55.298563775464494],[-122.53441383935714,55.29832672650439],[-122.53462422350526,55.2982238218274],[-122.53466601276676,55.29817453065648],[-122.53469626698913,55.29812155521758],[-122.53474011111172,55.29784247933317],[-122.53472711589198,55.297626851527724],[-122.53446782488977,55.29754115935484],[-122.5343398806781,55.29751293570181],[-122.5341284900204,55.297490239650415],[-122.5339949631429,55.297480920447796],[-122.5334057149707,55.29746453209447],[-122.53274014979372,55.297416867115274],[-122.53262629206928,55.29738567000295],[-122.53249079516445,55.29737629436271],[-122.53220511828951,55.297298832647954],[-122.53209487453094,55.29724867549913],[-122.53184256870918,55.29703647846926],[-122.53180730947075,55.296987286467925],[-122.53169046332805,55.29676204081884],[-122.53165692874342,55.29650996283626],[-122.53161236126394,55.296317000435266],[-122.53158106474656,55.29622195017141],[-122.53143599778592,55.29591183015425],[-122.53133923258576,55.29561426610716],[-122.53132254989289,55.2953043555418],[-122.53135143979974,55.295084286777644],[-122.53137300261884,55.2950176160129],[-122.53138114040893,55.29487769476737],[-122.5312679407483,55.29447316090449],[-122.53081513694747,55.29436413509034],[-122.53049972692934,55.294402444085584],[-122.53034760605468,55.29440269365488],[-122.53024571615951,55.294393129761836],[-122.5297382154024,55.294391331801656],[-122.52965286369027,55.294373258479496],[-122.5291137804473,55.29409700968556],[-122.5289122138458,55.29398376194842],[-122.52880032649986,55.29388422366748],[-122.52866184297974,55.293726764048614],[-122.52852789426316,55.29363109569299],[-122.5282270196127,55.29345565755224],[-122.52811679136406,55.29340549690537],[-122.52780901659949,55.293287045835896],[-122.5276150245752,55.293223338968545],[-122.52745569267127,55.29314714339069],[-122.52735458056479,55.29312862922341],[-122.52687586989707,55.2930681986203],[-122.52675941663861,55.29306719536085],[-122.52639336038904,55.293097355099846],[-122.52626027208964,55.29310597836056],[-122.52623100482235,55.293101798971286],[-122.52576854409362,55.29303621110411],[-122.52550578267468,55.29296834120831],[-122.52541448976531,55.2929276754752],[-122.52523907434544,55.292831968305066],[-122.52507651305183,55.29270186251762],[-122.52501797292435,55.29262511061219],[-122.52499418956735,55.292534752468235],[-122.52497520835794,55.29197811459166],[-122.5249596944683,55.29188350229127],[-122.5249240546871,55.29177038975723],[-122.52482225126246,55.29155452527379],[-122.52451360117921,55.29110416969561],[-122.5244578434748,55.29104094929007],[-122.52421898844429,55.29081117091617],[-122.52415134143455,55.29070277123543],[-122.52411585981761,55.29049660427052],[-122.52404853317647,55.29033888121609],[-122.52401012323386,55.290280629225634],[-122.52396709489307,55.290230096698416],[-122.52383736646065,55.290108753118886],[-122.5237216291478,55.29005394975983],[-122.52366791180916,55.29003563335012],[-122.52357142783883,55.29000939665758],[-122.5234549499891,55.28998596562558],[-122.52335307293336,55.28997639610564],[-122.52321879874647,55.289976013258894],[-122.52317299650878,55.28998034122771],[-122.52281375114116,55.29006898156033],[-122.5227746678453,55.29008695113587],[-122.52269501758452,55.29018563538897],[-122.52250522903212,55.29055257357917],[-122.52244134022482,55.290651697572635],[-122.52231788810222,55.29077718895193],[-122.52206978478299,55.29095077592161],[-122.52198334665778,55.29099096855366],[-122.52188466576438,55.291012880392024],[-122.52167690210555,55.291017171874984],[-122.52161649807121,55.29100763745419],[-122.5215651383946,55.29098490120077],[-122.52141025211829,55.290903215498254],[-122.52132129369392,55.29083570315472],[-122.52104204935556,55.29052518617311],[-122.52089743809351,55.29039333309186],[-122.5207839330321,55.29031280187776],[-122.52057969509792,55.290230858258134],[-122.52043111248857,55.290144862464395],[-122.52007083290847,55.28999465270812],[-122.51954701811431,55.28983987418782],[-122.5191574493902,55.289663056145876],[-122.51887463009453,55.28959909582578],[-122.51874620636046,55.289554023922214],[-122.5186738554566,55.28952285159053],[-122.51856711022278,55.28940999248352],[-122.51850064453868,55.289288167969545],[-122.5184713548109,55.28919316953056],[-122.51849039302951,55.2889963717862],[-122.51853293749313,55.28891571352321],[-122.51856175140125,55.28887951927193],[-122.51867619552065,55.288789657910755],[-122.51882580914874,55.28877253525559],[-122.51909196017708,55.28875530446593],[-122.51951673727284,55.288685323297315],[-122.51976383174221,55.288637286662876],[-122.51988702370463,55.288605970509394],[-122.52012497795465,55.28850386078244],[-122.52023870558261,55.288467795224555],[-122.52038237471736,55.288428080947675],[-122.52047236178466,55.28839247340685],[-122.52059942908798,55.28831641721971],[-122.52085698613408,55.28814758221885],[-122.52110246105482,55.28800419676706],[-122.52121285961462,55.28791534154972],[-122.52126692822131,55.287838367859756],[-122.52129124928267,55.28776280601971],[-122.5212943175059,55.28763619732025],[-122.5212795567975,55.28751021204658],[-122.52122571480415,55.28740219585824],[-122.521126461294,55.287294032929125],[-122.52105055979266,55.28725827802983],[-122.5208984985895,55.28721254822575],[-122.52052997388098,55.28713498624859],[-122.52030960174717,55.28712546852323],[-122.52010434452144,55.287146644674074],[-122.51998584145659,55.28714669854798],[-122.51986662832317,55.2871321570055],[-122.51956283495129,55.28699137103159],[-122.51943471268227,55.28687455187189],[-122.51940826208663,55.28683793489709],[-122.5193757727732,55.286779846606784],[-122.51929216237195,55.28658242379129],[-122.51929055209135,55.28648707761687],[-122.5193062510215,55.28644266855868],[-122.51938658395042,55.28626776460359],[-122.51941736535021,55.28623162519997],[-122.51952973292113,55.286142826523225],[-122.51962126663304,55.286089323887175],[-122.51975230003116,55.28603580332525],[-122.51993820642188,55.28598717886755],[-122.52036543932593,55.28593408212054],[-122.5205915865321,55.28592245860246],[-122.52066977892183,55.28590894550087],[-122.52076880353138,55.28586013602152],[-122.52096691678238,55.2857389736647],[-122.52119839196979,55.28552904741953],[-122.52139840764158,55.28536309003176],[-122.52147756710768,55.285269999068916],[-122.52151774351313,55.28512536622872],[-122.52151922872848,55.285062621133],[-122.52150088359873,55.284978019813046],[-122.52143318892696,55.284824769361094],[-122.52115488975981,55.284526611126566],[-122.52073042248412,55.28422885515725],[-122.52042383900725,55.284052114814756],[-122.52031364628785,55.28400194731493],[-122.52011693389282,55.28392469700302],[-122.51993917886438,55.28387936919662],[-122.519672190772,55.28383827561684],[-122.51953557934593,55.28384230770116],[-122.51938046200183,55.28385479216235],[-122.51892931458309,55.2839789729558],[-122.51858270950436,55.28405898346089],[-122.51843314405012,55.284098530493715],[-122.51799071352653,55.2841904370922],[-122.51785884711794,55.28420805428655],[-122.51774626288682,55.2842082712143],[-122.51741649391172,55.28413963066694],[-122.51715670786375,55.28410658133401],[-122.51686879678341,55.284033503439574],[-122.5168055314146,55.28401155326157],[-122.5164140612068,55.28383467166614],[-122.51632996965981,55.28377962433271],[-122.51602283564314,55.28354119154611],[-122.51592327619285,55.28348234778268],[-122.51585730434915,55.28342332203613],[-122.51574580842815,55.28327444887403],[-122.51564762764993,55.28306316117492],[-122.51551676356628,55.282864413588825],[-122.51549729663124,55.28281565782347],[-122.51560254015568,55.282626877313426],[-122.51582638733026,55.28230014342963],[-122.51594317691179,55.28220586580693],[-122.51601187258916,55.28216518158544],[-122.51624230684024,55.28205838505018],[-122.51648181347059,55.28196081133925],[-122.5165540303377,55.28190228623023],[-122.51674436933651,55.281643006827515],[-122.51670594852413,55.28156232796168],[-122.51660788572373,55.28144073973757],[-122.51649648146778,55.28135914128769],[-122.51603196670779,55.28111406493487],[-122.51574451635221,55.28114975238265],[-122.5157135988834,55.28100537501428],[-122.51528239564429,55.28092267909143],[-122.51514218431613,55.28087727290251],[-122.51484713949067,55.28075017277805],[-122.51469982622403,55.280695597833784],[-122.51450000611715,55.28063170530878],[-122.51430798086176,55.28050075892027],[-122.514223025504,55.28045577648136],[-122.5140283685763,55.28042342104733],[-122.51382192092778,55.28041315923331],[-122.51362797221272,55.28039539850357],[-122.51334603160389,55.280344902552216],[-122.51288212963617,55.28025231326875],[-122.51237078646112,55.28018306035238],[-122.51205529150872,55.280155167118096],[-122.51164903290446,55.28008100494625],[-122.51122411939224,55.27997156189922],[-122.51107005655659,55.27994930812018],[-122.51075152563644,55.27993365964533],[-122.51055563708782,55.27993826363411],[-122.51041354345908,55.279960070965565],[-122.51010615856472,55.28004339838942],[-122.50953141086437,55.28015847615916],[-122.5090254357583,55.28030014492868],[-122.50885483627233,55.280286394596345],[-122.5087778894405,55.280262935457515],[-122.50870792175148,55.28022733868139],[-122.50865064833508,55.28018200684492],[-122.50863486429228,55.28015914052307],[-122.50862050967218,55.28000625527438],[-122.50870979575546,55.27970603409826],[-122.50880876467784,55.27952156765273],[-122.50889747378243,55.279409691495005],[-122.50901013250615,55.27922672978326],[-122.50905107922227,55.279119121063935],[-122.5090561551289,55.278992567965794],[-122.50897732890174,55.27878630098628],[-122.50892000639486,55.27869611994341],[-122.50880898887705,55.27858761608408],[-122.50843494223867,55.27832486310687],[-122.50833382599512,55.278261484210056],[-122.50814698847432,55.27816206644352],[-122.5078685712578,55.27807129310094],[-122.5074480177851,55.27795747375157],[-122.50728810379567,55.27788908182189],[-122.50711980068728,55.27780363645861],[-122.50693457325022,55.27773117066311],[-122.50656035053372,55.27765228329698],[-122.50640272485616,55.277603014724804],[-122.50625896092832,55.27753058952521],[-122.50618987584322,55.27748492510459],[-122.50616531591021,55.277449479068295],[-122.50631282851818,55.27725180039998],[-122.5063644791822,55.2772027950246],[-122.50641574058542,55.27715826351289],[-122.50651356949699,55.27710046238203],[-122.50675990315929,55.27703785619848],[-122.5069398988975,55.277011510116225],[-122.5070922458905,55.27700793368213],[-122.507365060279,55.27702679518759],[-122.50750558914437,55.27702288688863],[-122.5077013418488,55.2769969815005],[-122.50796540021516,55.27693486992524],[-122.50887094925018,55.27651177319167],[-122.50898372724289,55.27644093486753],[-122.50904609679955,55.27638213813091],[-122.50906848974356,55.2763289482166],[-122.50906017128021,55.27628835198413],[-122.5088810883863,55.275986215695504],[-122.50883563865756,55.27594121517586],[-122.50869223986757,55.27584189423862],[-122.5083242538332,55.275691429918965],[-122.50826061734374,55.275673949312036],[-122.5078568440837,55.27566263012133],[-122.50736134946465,55.275616223098865],[-122.50723103816686,55.27559350882948],[-122.50716749956675,55.275574909193],[-122.50705851377208,55.2755113083583],[-122.50692219692588,55.27539872942432],[-122.50622003213664,55.27464128744021],[-122.50591784264104,55.27439287421042],[-122.50575356983806,55.27428399439717],[-122.5054739467664,55.27413936340331],[-122.50530456943345,55.27404379412976],[-122.50499368258421,55.27385007318421],[-122.50482703256307,55.273723186111205],[-122.50463195742398,55.27362801592813],[-122.50446184586248,55.273677059691714],[-122.5043995253391,55.27368988633355],[-122.50353784033354,55.2737453060327],[-122.50340559007756,55.27374495714045],[-122.50334521633037,55.27373541388505],[-122.50319716546541,55.273689773132084],[-122.50313599072774,55.27366675286296],[-122.50254164686534,55.273304735231434],[-122.50229644351424,55.27319582037084],[-122.50199276270014,55.27310095955494],[-122.501610468052,55.27286598197845],[-122.50125476339987,55.27273377952412],[-122.50111065753704,55.27268824694314],[-122.50082946161386,55.27251665170251],[-122.50054676506991,55.272316983508176],[-122.50048738310271,55.27220543711474],[-122.50046823435694,55.27183602306377],[-122.50054029668775,55.271711351781704],[-122.50065183772489,55.27147342690723],[-122.50081394161487,55.2712896191019],[-122.50099577993738,55.27115121367083],[-122.5012253693908,55.27100854341673],[-122.50132277998108,55.270932795602135],[-122.50132502462905,55.270703012051115],[-122.50133985203144,55.270555429782966],[-122.50144859403807,55.27028154732404],[-122.5008390411676,55.2701175455917],[-122.50063416706185,55.27004451718652],[-122.50043479129603,55.26995370366389],[-122.50012127220513,55.26983613698271],[-122.49997127003195,55.26979043707292],[-122.49979564666116,55.269721592834095],[-122.49951765623953,55.26958147774425],[-122.49934626556815,55.26950938817917],[-122.49914765513884,55.26938720023098],[-122.49882786476296,55.26918312102211],[-122.49869120250274,55.26907500700798],[-122.49860667785936,55.26891229839778],[-122.49851527067817,55.26864736655963],[-122.49849349113386,55.26851220962734],[-122.49849048724992,55.268229581526946],[-122.49851292827212,55.2681080011345],[-122.49853807962818,55.268045920803466],[-122.49879530703325,55.267880487070286],[-122.49922537416427,55.26765712408986],[-122.49926280671774,55.26756735877344],[-122.49927731080284,55.26749152459253],[-122.49911487388734,55.2671808696222],[-122.49903670863921,55.26708112748352],[-122.49887394637555,55.26695546170659],[-122.49875714007594,55.26691405686619],[-122.49857515606483,55.2668730618049],[-122.49832928132977,55.26684036085359],[-122.49766112552813,55.26680587502608],[-122.49704543716491,55.26675828573814],[-122.49674222609025,55.26668136297908],[-122.49650183441248,55.2666084491631],[-122.49635142143677,55.266522369466145],[-122.49604307452978,55.266300664767705],[-122.49593251618076,55.26618767571211],[-122.4957444502703,55.265922263841546],[-122.4954688138794,55.26559720570771],[-122.4949669401979,55.26515029500259],[-122.49463007886267,55.264825753849],[-122.49441807811162,55.264653847289026],[-122.49425141921589,55.26455048928259],[-122.49399761760222,55.264427859485565],[-122.49385942285987,55.26433763558141],[-122.4936888923918,55.26418819820042],[-122.49358228454166,55.264075317965194],[-122.49348754189668,55.264030044241345],[-122.49327080035098,55.263957789556365],[-122.49296926073428,55.263839419180705],[-122.49281927262795,55.26377128604552],[-122.49274030010302,55.263748880045874],[-122.49261211849532,55.26374751215896],[-122.49253041228425,55.26375642288155],[-122.49239113241171,55.26379174207227],[-122.49223168992974,55.26385452338971],[-122.49189049236892,55.26403215372983],[-122.49170821681864,55.264107745699185],[-122.49135427463791,55.26422783392866],[-122.49118018649217,55.264187049996835],[-122.49089674799058,55.2640422754681],[-122.48998058179546,55.26345809166841],[-122.48973623951403,55.26331777989668],[-122.48946582804508,55.263204762954025],[-122.48929928561002,55.263100279881606],[-122.48916145371483,55.262938303030005],[-122.48901176619816,55.26270871900894],[-122.48887396338415,55.2624335001887],[-122.48880866315223,55.26207399228075],[-122.48881050432591,55.26187222604918],[-122.48883181244737,55.261786493575826],[-122.48893786729845,55.26167960529046],[-122.48906687873377,55.26160363693574],[-122.48913794059578,55.26158097392495],[-122.48918252703851,55.26156765530404],[-122.48949812427513,55.26154740172561],[-122.49015442510026,55.26151320593742],[-122.4902613172916,55.261487067423936],[-122.49034653633252,55.261437893734055],[-122.49039618707974,55.261343990270944],[-122.49038235956621,55.261276327895445],[-122.49026466924417,55.26120013195541],[-122.4899260434251,55.261077344431314],[-122.48980492006844,55.2610178694077],[-122.48962925470332,55.26095012935274],[-122.48912400020639,55.26056588436302],[-122.48909914376175,55.26048894111246],[-122.48909591607979,55.260367759253164],[-122.48912582248703,55.26018360260904],[-122.48932649583193,55.25980692768191],[-122.48955794306436,55.259529786759614],[-122.48957607779224,55.25941257087525],[-122.48950571420445,55.2592917386769],[-122.48939598972053,55.25919222087308],[-122.48925468189697,55.25911535786594],[-122.48905419900923,55.25901552306304],[-122.48901511650327,55.25901105737439],[-122.48890387311282,55.258996708333484],[-122.48873571643819,55.25895608755897],[-122.48868047872959,55.25893322678712],[-122.48854872385162,55.25885999595568],[-122.48829480826237,55.258626349894],[-122.48821629549728,55.258531074862574],[-122.48802129209913,55.25836860491271],[-122.48789575345599,55.25831460925762],[-122.48779985771472,55.2582827526907],[-122.48767952799085,55.258214327976354],[-122.4875579985388,55.2581144753376],[-122.48742535507479,55.258028884783094],[-122.4866513834773,55.2575585619506],[-122.4865495585352,55.25748168850013],[-122.48653260957592,55.25744981623993],[-122.48649540725374,55.25728843290158],[-122.48650368063102,55.25712609044391],[-122.48652525868081,55.25699215377702],[-122.48672867834021,55.25658416642866],[-122.4870852171883,55.25611771144022],[-122.48725396922273,55.25585786663187],[-122.48740141123024,55.25568375378926],[-122.48747356943383,55.25553554714983],[-122.48754095390835,55.25530647851814],[-122.48731403602683,55.25523840964447],[-122.4872146152526,55.25522439235869],[-122.4870690369469,55.255219163504954],[-122.48691825044236,55.25522836328249],[-122.4866102236483,55.25532058023018],[-122.48649657250947,55.255379039639664],[-122.4862745416411,55.255593652511266],[-122.48622801775157,55.25565176378012],[-122.48610972163765,55.255853607112044],[-122.48603840008744,55.255924473001464],[-122.48599697371581,55.25594684924514],[-122.48585130769258,55.25596516204976],[-122.48527018296511,55.25597566706658],[-122.48508749171154,55.25596602459906],[-122.48485980359797,55.255929323500496],[-122.48461558419243,55.25590112491723],[-122.48440925820007,55.25586838979455],[-122.48399809807538,55.255830991006555],[-122.4834259565968,55.25569374061596],[-122.48328862080805,55.255639406702834],[-122.48319272403357,55.2555851219695],[-122.48303016665179,55.25548074180178],[-122.48280162415935,55.255296012157935],[-122.48237033273867,55.25492503780043],[-122.4822689037055,55.2548212624409],[-122.48214770212971,55.25474047382931],[-122.48210072938161,55.25469093422125],[-122.48199022133367,55.25453308365618],[-122.48196097636625,55.25450646926693],[-122.48172664684665,55.254342876958304],[-122.48165281110712,55.25430715381676],[-122.4815600734417,55.254261926695264],[-122.48145002091715,55.25423414961096],[-122.48138140576512,55.254206422362785],[-122.48128276303046,55.254161028124265],[-122.48107985655116,55.254044292515566],[-122.48097450584379,55.25396282945135],[-122.48093108075007,55.253917874488465],[-122.48090506884634,55.2538543510342],[-122.48086356365528,55.25369732856888],[-122.48086950853794,55.253561829308005],[-122.48090461847815,55.25349891238751],[-122.4810189579596,55.253432628944054],[-122.48123751948742,55.25334798814331],[-122.48135509948074,55.25326722019135],[-122.48150376290113,55.25314696684346],[-122.48169542804229,55.2530088679556],[-122.4818220446404,55.252892476074905],[-122.4818820469531,55.2528156865942],[-122.4819150882847,55.2527538322133],[-122.48191940649292,55.25272704504857],[-122.48191390784564,55.25254188893336],[-122.48184199216547,55.25239409842604],[-122.4817599718581,55.25231665893933],[-122.48155400750343,55.252167322190395],[-122.48140958582361,55.252081391467776],[-122.4809960283648,55.251869003973574],[-122.48075178782483,55.25172867472047],[-122.48067451061142,55.2516872474694],[-122.48051071183338,55.25161982850056],[-122.48015290421586,55.25149198421411],[-122.47994647876415,55.25139308629968],[-122.47958346304289,55.25103187961538],[-122.47948757325915,55.250955167430774],[-122.47922515667494,55.250616986407984],[-122.47913950225161,55.250536078522906],[-122.47906851720708,55.25046791888815],[-122.4789675172678,55.25040451632697],[-122.4784680774911,55.25020426622572],[-122.4783663035428,55.250172235371146],[-122.4782557744059,55.250150047708004],[-122.47797606670987,55.25012195221247],[-122.47778709064445,55.25007175652219],[-122.47764110828166,55.24998129196712],[-122.47757248715686,55.24990871339456],[-122.47751093959975,55.249800455909295],[-122.47754291486349,55.24977333022651],[-122.47764504734992,55.24971118949702],[-122.47775151622339,55.24966711090565],[-122.47808520602432,55.24957452141328],[-122.47828839833544,55.249484966513215],[-122.47844297865907,55.249409733145164],[-122.47857874887492,55.24930145213697],[-122.4788208867071,55.249150209925226],[-122.47894001826981,55.249029124511544],[-122.47897148465121,55.24896274146619],[-122.47897782711982,55.24882276855841],[-122.47892771248316,55.24876416885121],[-122.47872889171074,55.24869127160006],[-122.47852920666728,55.24867328928398],[-122.4783186108782,55.24868975574942],[-122.47819668481198,55.24870760936981],[-122.47762791232178,55.24884848677176],[-122.47752576619904,55.248865778250426],[-122.47690479578263,55.24890426557511],[-122.47679240819508,55.24890332707919],[-122.47666141636401,55.24888952847065],[-122.4765288485377,55.24887120023026],[-122.47645591719525,55.2488478326349],[-122.47600690653984,55.2486803934417],[-122.47577699856731,55.248624550763935],[-122.47549609924353,55.24852017257493],[-122.47515839675438,55.248343548265595],[-122.47502504021205,55.24831174136238],[-122.47496038253895,55.248306546681526],[-122.47472085216882,55.2483154603226],[-122.47453035019677,55.24839527787562],[-122.47436672233796,55.24850612932885],[-122.4742424586675,55.248618095568574],[-122.47399516003857,55.249030427910675],[-122.47386775384427,55.24917818396256],[-122.47373089198769,55.24929876270815],[-122.47346698475562,55.24945050009129],[-122.4733020627929,55.24953104067621],[-122.47303341445803,55.24962433930223],[-122.4726231449935,55.24971250316633],[-122.47237859435126,55.24975602823588],[-122.47218059542188,55.249808720701886],[-122.47188626588289,55.24994725936241],[-122.47169497903984,55.25010329397874],[-122.47160700739795,55.2501613466069],[-122.47144247156093,55.250237410969085],[-122.47139789180454,55.25025072323025],[-122.4710428153577,55.25029447645332],[-122.4709051303266,55.25028945191738],[-122.47042308171861,55.25025111788492],[-122.4702661026681,55.250218636159815],[-122.47005350467104,55.25010048512949],[-122.46993115206448,55.24996583209186],[-122.46982421235852,55.24958831001317],[-122.46967281836503,55.249379953378835],[-122.46957183250123,55.249294118589255],[-122.46936504800857,55.24917725230281],[-122.46922736046285,55.249127376678835],[-122.46906998737356,55.2490545179731],[-122.46874964494077,55.24899497560728],[-122.4686116639822,55.24894845462064],[-122.46858676151884,55.24891747502625],[-122.468605354417,55.24886306239312],[-122.46873070943052,55.24869394971278],[-122.46893112650879,55.248344206364486],[-122.46894421012193,55.248307577041494],[-122.4689311967846,55.248141266385375],[-122.46887085734821,55.24804200799364],[-122.46874654374307,55.2478848733651],[-122.46850197132093,55.247704144670614],[-122.46840257009735,55.24764526315433],[-122.46804365435575,55.24750838078232],[-122.46791739525312,55.24750816178427],[-122.46770512789524,55.24752119914225],[-122.46749610872499,55.247542176916575],[-122.46662745540812,55.24761506878592],[-122.46630319988995,55.247667531468615],[-122.46620971133277,55.2476760896717],[-122.46531546401144,55.24770339676558],[-122.46498254454006,55.24771973070808],[-122.46473238826286,55.247759717765526],[-122.46434583533981,55.24780255748967],[-122.46407442164882,55.2478598791309],[-122.46387169702119,55.24787654481451],[-122.4637213265469,55.24790366738909],[-122.46356436230323,55.247916026455904],[-122.46341133440654,55.247950921781786],[-122.46332611103328,55.24797765238042],[-122.46320929754258,55.24807188042075],[-122.46330633027463,55.24820245774534],[-122.46343456001932,55.24833728503123],[-122.4636968272569,55.24847367769853],[-122.46376542158539,55.248613537752824],[-122.46375794290451,55.248676114200435],[-122.4637437718168,55.248702621148745],[-122.4636470329757,55.24874808578587],[-122.46360048404351,55.24876133933822],[-122.463466052881,55.24878667207847],[-122.46333860883762,55.2487998696577],[-122.46321628220355,55.24879975773895],[-122.46275984530781,55.248806970301885],[-122.46248891621013,55.248791422471946],[-122.46240369150291,55.24877330320809],[-122.46235478179621,55.24872370024462],[-122.46233667894997,55.24852584899468],[-122.46237496243026,55.24847199666989],[-122.46247593478965,55.248378440359005],[-122.46246058521328,55.24826139605839],[-122.46242387859725,55.24823007961823],[-122.46222312216184,55.24815710009381],[-122.4621193974286,55.24814742464894],[-122.46190397599848,55.248151392770716],[-122.46133987514065,55.24835063406834],[-122.46107159957651,55.2484618577737],[-122.46093509706832,55.24855552410563],[-122.46077842056806,55.24863179821318],[-122.46061071888256,55.248743638106454],[-122.46053858023544,55.248778587582734],[-122.46030110549889,55.248853684882604],[-122.46018980018493,55.248862853270175],[-122.46007583887426,55.24885736999321],[-122.46000517901167,55.24885311806169],[-122.45988059232434,55.24881145295592],[-122.45954609367426,55.24875596881722],[-122.4594095910138,55.24880478424653],[-122.45930851643821,55.24885460727334],[-122.45916452960998,55.248943573999085],[-122.45895066791464,55.24904176519564],[-122.458738475236,55.24916579193112],[-122.45852461670381,55.2492191331633],[-122.45842876042221,55.24923210325402],[-122.45837158225599,55.24923159768464],[-122.45831588239452,55.24921431562716],[-122.45824729460145,55.24916415103456],[-122.45825005414758,55.2491328349739],[-122.4583483963837,55.248912507315225],[-122.45834803008309,55.24869273487285],[-122.45830189339459,55.248544540408574],[-122.45822386842653,55.24842234822686],[-122.45814022913804,55.24834148192496],[-122.45797304413105,55.24822347995485],[-122.45788939662137,55.24820988733213],[-122.45774856935729,55.248218213413544],[-122.45750597992452,55.248261765293336],[-122.45719625630853,55.248417772010576],[-122.45703367210544,55.24847144873454],[-122.45683644814717,55.24851516937004],[-122.45659936245357,55.24858578589378],[-122.45624938854739,55.24870588631721],[-122.45611130423757,55.24877259299832],[-122.45600127201394,55.248812067299376],[-122.45576527642507,55.24882553028604],[-122.45570495139363,55.24881596397963],[-122.45560831477682,55.24879303009639],[-122.45553303733675,55.24875164330756],[-122.45545727129492,55.24869342399958],[-122.45539105515724,55.24861641555297],[-122.45538712314193,55.248593878841696],[-122.45571930305242,55.24838469642711],[-122.45577057955646,55.248362610473436],[-122.45581359286241,55.24832234943486],[-122.45582511468179,55.24828119173453],[-122.45583223630722,55.24808854178833],[-122.45581102680902,55.2478367808603],[-122.45581536607396,55.24778756999776],[-122.45585131165168,55.247648438896675],[-122.45591884224964,55.24753151060353],[-122.45607269235536,55.24733070475329],[-122.45607397835953,55.24729374056428],[-122.45605813849902,55.24727198608432],[-122.45597302675044,55.24720789476723],[-122.45588269695013,55.2471582308859],[-122.4554989369689,55.24699033024553],[-122.45497241243068,55.246718572251076],[-122.45473418872746,55.2466232094483],[-122.45460322652723,55.24654211381201],[-122.4542858270657,55.24627070296962],[-122.45411356240807,55.2460763063904],[-122.45400188434499,55.24602266912138],[-122.45392465090032,55.245958800688754],[-122.45381585081053,55.245805455035935],[-122.45367705854493,55.245567161865175],[-122.45360849361907,55.24547214551198],[-122.45351817611778,55.24540005531242],[-122.45327604439562,55.245237303746016],[-122.45292823200673,55.24506481253126],[-122.45283555380938,55.244997139457254],[-122.45272635975489,55.24487069117807],[-122.45277174699815,55.24478116436759],[-122.45292492307632,55.24454334221203],[-122.4531284762279,55.24431592545786],[-122.45334431733879,55.24412810193903],[-122.45347729771125,55.24396258427157],[-122.4534794194249,55.243737275845405],[-122.45353467646613,55.24351348150937],[-122.4535161972321,55.24343222580003],[-122.45345786534183,55.24335544066583],[-122.45335534479436,55.2433099122035],[-122.45312697921148,55.24323725135712],[-122.45298500146174,55.24319171934458],[-122.45282255493161,55.243154573698384],[-122.45265646887827,55.243113960381656],[-122.45246007425483,55.243081452844976],[-122.45227469800739,55.24305822898357],[-122.4521551464925,55.243049214896764],[-122.45176194473986,55.24305594545231],[-122.45148583264111,55.243077225623296],[-122.45123972646243,55.243116179365494],[-122.45095337893062,55.24314165148899],[-122.45056674983202,55.24320799147277],[-122.45031710835813,55.24321993284188],[-122.44997910619804,55.24322711090869],[-122.44951604373423,55.24322062932963],[-122.44942059398572,55.24322911878984],[-122.44908642870566,55.24323752514124],[-122.4487713744082,55.24318592883576],[-122.44846607015685,55.24311330633493],[-122.44816007526273,55.2430485120417],[-122.44801416791383,55.24300286204056],[-122.4478623484385,55.24297946797531],[-122.4476363491697,55.24292480414929],[-122.44739066225726,55.242892002781616],[-122.44708415839088,55.24287764716576],[-122.44701675431132,55.242881329176456],[-122.4469248361371,55.242916827374565],[-122.44672354733811,55.24307366106914],[-122.44659961898311,55.24318112599612],[-122.4464614905588,55.24335994498426],[-122.4463943538668,55.243427545215255],[-122.44617024541064,55.24355233177024],[-122.44602348948357,55.24365017444199],[-122.4459319642133,55.243681198227215],[-122.44575010973475,55.243707399944775],[-122.44560929572101,55.24371571230069],[-122.4454531334391,55.24371910118159],[-122.44532138809022,55.243691792381306],[-122.44526147893656,55.24365532273484],[-122.4451731484391,55.243583282703],[-122.44510894870072,55.243461475818584],[-122.44495502196416,55.24288188052757],[-122.44482068135213,55.2427277962924],[-122.44474061065226,55.242673931743774],[-122.44466574109262,55.24265048933587],[-122.44457265527322,55.24265455762024],[-122.44441441962103,55.242681432004694],[-122.444294542336,55.242743039447085],[-122.44425034697112,55.24277429291432],[-122.44416141858846,55.24293209031903],[-122.44407182920939,55.24303044277776],[-122.44396098776033,55.2431237029899],[-122.4438374367594,55.24324911609963],[-122.44375180364283,55.24330273157819],[-122.4436732724862,55.24332067006583],[-122.4434990041957,55.24332802407642],[-122.44338418138427,55.24331016669389],[-122.44322921920786,55.2432777071592],[-122.44310538246722,55.24318334715661],[-122.4430545467228,55.24311125579209],[-122.44303807942514,55.242985205563016],[-122.44304541690236,55.24267931498637],[-122.44307431080406,55.242553439918794],[-122.44306334024472,55.24245445670181],[-122.44304989571225,55.24238343393696],[-122.4429258677259,55.24209060757903],[-122.44282141731973,55.2420001649996],[-122.44276308496394,55.24196822407391],[-122.44264158247961,55.24193672000644],[-122.44241882741271,55.24191241274422],[-122.44219599721673,55.24184437429395],[-122.44201225209896,55.241735966674106],[-122.44195237271408,55.24165464623539],[-122.44180256575477,55.241564027237466],[-122.44177297285277,55.24151945251218],[-122.44174071918934,55.2414826504357],[-122.44172538434542,55.24145530205866],[-122.44171033444722,55.241447023031746],[-122.44158462591585,55.24137391145254],[-122.44155344939263,55.24134723134522],[-122.44150811411716,55.24130220642767],[-122.4414458603276,55.241247727750746],[-122.44144547652658,55.24122977681523],[-122.44141470845013,55.241176198404276],[-122.4413844232325,55.241139452504825],[-122.44135324702371,55.24111277234796],[-122.44132296190996,55.24107602643376],[-122.44129020168249,55.24106724092702],[-122.44122874061881,55.24100381480975],[-122.44116638865925,55.24095045441084],[-122.44107305905477,55.24086817692156],[-122.44105800951041,55.240859897816115],[-122.4409637892009,55.24078768599295],[-122.44084005190757,55.24071462994145],[-122.44080925990075,55.240705900585795],[-122.4407146569292,55.24061573763846],[-122.4407001152896,55.24057944180818],[-122.44066973215101,55.240543814152744],[-122.4406066884748,55.24049828238785],[-122.44057551327855,55.2404716020376],[-122.44053027911042,55.24042545835119],[-122.4404521865404,55.24037164733778],[-122.44035796846156,55.24029943505905],[-122.44032717687708,55.24029070558461],[-122.44021841815062,55.24018219732635],[-122.4401104523082,55.240064741649405],[-122.44004820232574,55.240010262279036],[-122.43995398581818,55.23993804969664],[-122.43992319459791,55.2399293201225],[-122.43986094507852,55.23987484065908],[-122.43979907878057,55.23983831210332],[-122.43967287030705,55.23979321527997],[-122.43954796306053,55.23971115433298],[-122.43943987472842,55.239639665692984],[-122.43934534962807,55.239593232496645],[-122.43926726025799,55.23953942074371],[-122.43920460252713,55.2395118392125],[-122.43911115418534,55.2394755278752],[-122.43900186489397,55.23943988443204],[-122.43897117332878,55.2394300362083],[-122.43886160072464,55.239375323287106],[-122.43873618734251,55.2393212782],[-122.4385634492802,55.2392669998896],[-122.43851770953512,55.23924887214655],[-122.43843772550503,55.23923873434394],[-122.43818801999917,55.23922934521652],[-122.43812416034677,55.23923760870858],[-122.43807683536735,55.23923737542637],[-122.43793562486421,55.239272577358946],[-122.43787166599392,55.239281959135326],[-122.43777780873474,55.23927254505177],[-122.43769899977232,55.23927141040976],[-122.43766820955149,55.239262680278635],[-122.43761970963462,55.2392534431867],[-122.43744904022125,55.2391981012458],[-122.43740054043256,55.239188864068616],[-122.43700768599251,55.23916976820955],[-122.4369138291972,55.23916035347512],[-122.43685234840497,55.239141774404295],[-122.4367730589008,55.23912380664249],[-122.43674157509457,55.23912290517222],[-122.43666346036903,55.23911394098519],[-122.43644457587403,55.23906842954548],[-122.43639607647223,55.23905919197736],[-122.43638112770518,55.23904979389545],[-122.43633421457406,55.23902266170284],[-122.43623997682214,55.23899529551256],[-122.436131583684,55.238949583840686],[-122.43609882632144,55.23894079697004],[-122.43605229488043,55.23893161562035],[-122.43598922845351,55.238930930719626],[-122.4358787382716,55.2389311300817],[-122.43584725463616,55.23893022838536],[-122.4358011045254,55.238938997891374],[-122.43576872848995,55.23894816188358],[-122.43575336790623,55.23896566197238],[-122.43575216265594,55.2390015075144],[-122.43576828574709,55.239019909325485],[-122.43579856424032,55.23905665658441],[-122.43581478652891,55.23907393997748],[-122.43589277122607,55.239128872305145],[-122.43590702584642,55.239146099330746],[-122.43593809776904,55.239173899258944],[-122.43595339726767,55.23924609754037],[-122.43593518400947,55.23940703618635],[-122.43591642896754,55.239640840689475],[-122.43591557457651,55.23973948638371],[-122.43588316730217,55.23979349960479],[-122.43575525378567,55.239945690202234],[-122.43570672266705,55.239981301564114],[-122.43567631355016,55.23999052189154],[-122.4356440358013,55.23999856744006],[-122.43555055855074,55.24000710262927],[-122.43532967144087,55.240006382065516],[-122.43529808780559,55.240006598642005],[-122.43526729754308,55.23999786791686],[-122.4351885186262,55.23995188248707],[-122.43517436320207,55.23993353696659],[-122.43515814084199,55.23991625348892],[-122.43514360446767,55.23987995701209],[-122.43512754424401,55.23977185672192],[-122.4351283691056,55.239718060231],[-122.43511462623036,55.23967281645871],[-122.43508386777485,55.239619236490405],[-122.43506853816586,55.23959188729783],[-122.43500629574189,55.23953740540963],[-122.43491247026002,55.23948313996932],[-122.4348493355791,55.239438723705504],[-122.43480331567507,55.239401525233724],[-122.43474173630419,55.239384063532036],[-122.43466295918972,55.23933807777194],[-122.43464791153669,55.239329797893014],[-122.43463140809128,55.23929344498268],[-122.43458532143325,55.23921251564543],[-122.43456999231809,55.23918516639228],[-122.43452428660036,55.239122187986695],[-122.43450975108469,55.23908589143803],[-122.43449445423741,55.239013692980144],[-122.43446490350847,55.238924267331946],[-122.4344351036866,55.23877092311791],[-122.43440396618996,55.238699392031904],[-122.43438901802188,55.238689993711134],[-122.43437410216289,55.23863574619422],[-122.43429643427442,55.23855503308821],[-122.43426660294634,55.2384465380317],[-122.43421972441838,55.23837455585044],[-122.43418896814694,55.238320975666504],[-122.43414326400722,55.23825799712526],[-122.43409714690657,55.23822191680649],[-122.43406687059533,55.2381851691363],[-122.43394108693975,55.238113168272],[-122.43386348726368,55.23807618568108],[-122.43375461975329,55.23801363939978],[-122.43361230208671,55.2379501343713],[-122.43356539210473,55.23792300113817],[-122.43328638055674,55.237777090312036],[-122.43320671524194,55.23774116932599],[-122.4330813145489,55.23768711855177],[-122.43303557906965,55.237668988797736],[-122.43300489031556,55.23765913910517],[-122.43297213468641,55.237650351412974],[-122.43289322980509,55.237650332139886],[-122.43283016544021,55.23764964563976],[-122.43279975742634,55.237658865263164],[-122.43278322226152,55.23766736130312],[-122.43275281422348,55.237676580915135],[-122.43272012372702,55.23771152393792],[-122.43270386915404,55.23773908933444],[-122.43270424902191,55.237757040291974],[-122.43268723139138,55.23788213293508],[-122.43270055689074,55.23795427520284],[-122.43271626414183,55.23799957564131],[-122.43274781210137,55.23804420891129],[-122.43276155175903,55.238089452939214],[-122.43276027566881,55.23821499683461],[-122.43275852043563,55.23832370818252],[-122.43274146861246,55.238493650031764],[-122.43273988080188,55.23851154458489],[-122.43272321189326,55.238566008220616],[-122.43267464555895,55.238646467591224],[-122.4326272870574,55.238691081432414],[-122.43256297866186,55.2387710895021],[-122.43251590043866,55.238834772670224],[-122.4324362295783,55.23893228036285],[-122.43241959456525,55.23894189476478],[-122.43238797723379,55.23898695979835],[-122.43233940972102,55.23906741904078],[-122.43232321900226,55.23913871517652],[-122.43232121667911,55.23918350796007],[-122.43230364907731,55.23938146640501],[-122.43228707847085,55.239434811576736],[-122.43227037391915,55.23953412435242],[-122.43223509606219,55.23973157507674],[-122.4322346470096,55.239803322510184],[-122.43215445987165,55.23992884667529],[-122.43212087369469,55.23997385522976],[-122.43209042891307,55.24002792388001],[-122.43207306367279,55.240090216299286],[-122.432071440632,55.24015296004487],[-122.43207182024051,55.240170911007546],[-122.43202363025432,55.24026932109699],[-122.43199201143626,55.24031438603443],[-122.43195959843175,55.24036839823706],[-122.43194264740927,55.240403792403335],[-122.43190940508686,55.24051160106594],[-122.43184578723134,55.24058377991284],[-122.43181309358506,55.24061872270522],[-122.43179763137346,55.24063734071729],[-122.43178226841766,55.24065484031855],[-122.43178068009519,55.24067273486231],[-122.43176601201303,55.240682405598726],[-122.43171747647501,55.24071801540823],[-122.43170290763368,55.2407265677282],[-122.43166973503894,55.24074467792766],[-122.43162358193649,55.2407534458869],[-122.43145091103887,55.2407428884984],[-122.43140358432781,55.24074265268057],[-122.43135705187446,55.24073346957557],[-122.43132508836625,55.24071573417893],[-122.43129429842325,55.24070700247119],[-122.43123047081791,55.240670413229175],[-122.4311847327815,55.240652282791366],[-122.43104278899139,55.240606725780246],[-122.43099705111193,55.240588595273614],[-122.43093360306922,55.240569956846386],[-122.43080819661337,55.24051590377198],[-122.43077740693548,55.240507171936585],[-122.43069901115206,55.24047913463265],[-122.43062168955531,55.240461219390724],[-122.43044746794781,55.24042370594074],[-122.43036935209943,55.240414737805445],[-122.43030707792894,55.24040510276484],[-122.43010193105829,55.24040482447942],[-122.4300388624237,55.24040413656559],[-122.43000686258668,55.24043125003035],[-122.42999187761403,55.24046670037993],[-122.42997482549917,55.24050321268632],[-122.42997399373088,55.24055700914612],[-122.42998969892821,55.24060230993746],[-122.43002124590387,55.24064694390678],[-122.43006736212898,55.24068302574134],[-122.43009932505676,55.24070076146063],[-122.4302242530329,55.24073798268815],[-122.430364644175,55.24075658595788],[-122.43044313957367,55.240783505064925],[-122.43052242952149,55.240801476858515],[-122.43063002685471,55.240856140682794],[-122.43067773268791,55.24087432776263],[-122.43072384976236,55.240910409354754],[-122.43083379454404,55.240983080408604],[-122.43092602930486,55.24105524346098],[-122.4309413566555,55.241082593166446],[-122.43102019618173,55.2411723120799],[-122.43103510845904,55.24122656000893],[-122.43105002077655,55.24128080793632],[-122.43106534829741,55.24130815762702],[-122.43109572350815,55.24134378762697],[-122.43112689309359,55.24137047035152],[-122.43115796343112,55.241398271476825],[-122.43128136951118,55.24149711697751],[-122.43131361361868,55.24153392176193],[-122.43134277996297,55.24160539720842],[-122.4313581078065,55.241632746863736],[-122.4313584871107,55.241650697830686],[-122.43135762150172,55.24174934350849],[-122.43132520648953,55.24180335555188],[-122.43130984288302,55.24182085509629],[-122.43129320640651,55.24183046934992],[-122.43124625767302,55.24184818443966],[-122.43121397754801,55.241856228841286],[-122.43113544362593,55.24187415942229],[-122.43107157832743,55.241882419299905],[-122.4309299732966,55.24189966232858],[-122.43088371940986,55.24190954842283],[-122.43063133609084,55.2419079165677],[-122.43055359626739,55.24191689951641],[-122.43041081751788,55.24192513825006],[-122.43022150513858,55.24192419328982],[-122.4298606905193,55.241921692157774],[-122.42957751667358,55.24191132609678],[-122.42951514104006,55.241902809066445],[-122.42948365522196,55.241901905761345],[-122.42923242184675,55.241820694785886],[-122.42920252561439,55.24180189689687],[-122.42903141761363,55.24168486164118],[-122.42895184771145,55.24164781951615],[-122.42890493656128,55.2416206845201],[-122.42885919849257,55.241602553227075],[-122.42879565048581,55.241585032116],[-122.42876495978277,55.241575181375794],[-122.42871763210846,55.2415749445374],[-122.42865366742923,55.241584321581804],[-122.42857523225848,55.24160113214155],[-122.42852907749928,55.24160989895479],[-122.42848085550736,55.24161972768467],[-122.42844857501278,55.241627771369444],[-122.42841736805974,55.24164593717697],[-122.42838695601438,55.24165515572588],[-122.42830814265052,55.241654015141584],[-122.4282919225464,55.241636730767546],[-122.42826248304722,55.24154618522406],[-122.42827746994571,55.24151073507967],[-122.42827868193055,55.24147488960331],[-122.42831030581978,55.24142982560453],[-122.42834314156181,55.24134891612122],[-122.42836051312015,55.24128662421607],[-122.42839293169594,55.24123261294648],[-122.42839217574198,55.241196710995744],[-122.42840885160324,55.241142247928934],[-122.42839459948624,55.24112502004262],[-122.4283162432162,55.24105213203675],[-122.4283001227191,55.241033729258305],[-122.42827012813844,55.24101604955284],[-122.42825321272446,55.241006594018145],[-122.42819163374001,55.24098912907593],[-122.42811361666959,55.24097904111939],[-122.42808165439605,55.24096130489016],[-122.42803553963279,55.24092522231972],[-122.42798825214949,55.240880136003945],[-122.427926812342,55.240816703325024],[-122.42784873587009,55.24076288440884],[-122.42777113668376,55.24072589801477],[-122.42775453949692,55.24069066259534],[-122.42773921446187,55.24066331249855],[-122.42774130135399,55.24052882138565],[-122.42775756045387,55.24050125663112],[-122.42779035690735,55.24046519649788],[-122.42783810058249,55.24043853546598],[-122.42786920748227,55.240421488211055],[-122.42790120875206,55.240394375295594],[-122.42794777949122,55.240358710493],[-122.42794978674168,55.24031391777583],[-122.42796608505815,55.24024150379651],[-122.4279498656704,55.24022421937975],[-122.42795145567892,55.24020632488543],[-122.42792038847746,55.2401785229628],[-122.42788763190784,55.24016973393182],[-122.42784189594694,55.240151602267225],[-122.42777882774794,55.240150913209135],[-122.42769991796551,55.240150890645914],[-122.42751140909874,55.2401409943214],[-122.42744754580741,55.24014925233991],[-122.42726020962834,55.24014835936817],[-122.42718209502505,55.24013938923406],[-122.42713476904895,55.24013915179426],[-122.4269616252346,55.24011175561039],[-122.42689935234914,55.24010211886613],[-122.42685085389327,55.240092877580466],[-122.42682086065084,55.240075197527325],[-122.4266947653927,55.24002896914834],[-122.42660053184105,55.24000159566282],[-122.42646135863173,55.23994714269704],[-122.42641286046324,55.23993790124088],[-122.42611395936957,55.23992707526379],[-122.42606850198455,55.23992801233329],[-122.42578417086638,55.23990863390437],[-122.4257526866926,55.23990772965628],[-122.42570615649473,55.239898544440706],[-122.4256119239211,55.23987117020758],[-122.42558113586433,55.239862437088156],[-122.42553460575797,55.239853251808476],[-122.42543878229688,55.239843771907346],[-122.42532918458456,55.23983389627612],[-122.42526770811328,55.239815311486154],[-122.4252349524188,55.239806521757814],[-122.42514310724115,55.239752305481545],[-122.42509540524016,55.239734116283664],[-122.42504849892207,55.23970697983925],[-122.42501653901016,55.239689242825214],[-122.4250020118667,55.23965294516571],[-122.4249410406978,55.23951776361409],[-122.42490950024305,55.239473128361915],[-122.42487843570964,55.2394453256821],[-122.42481737936053,55.23939984245994],[-122.42478621548595,55.239373158160674],[-122.4247396861269,55.239363972584464],[-122.42466077788956,55.239363948095786],[-122.42462929416725,55.23936304356382],[-122.42448769524279,55.23938027926516],[-122.424456112041,55.23938049309255],[-122.42443947493588,55.23939010642876],[-122.42440757160423,55.23941610004978],[-122.42436099881814,55.2394517635261],[-122.42434314623164,55.23949722228228],[-122.42430988429616,55.23960502890863],[-122.42429451847799,55.23962252758483],[-122.42429405526718,55.23969427498866],[-122.42427653506587,55.23980253391708],[-122.4242760718209,55.2398742813218],[-122.42427565213382,55.23990117953131],[-122.42429017871164,55.239937477276214],[-122.4243358258436,55.240045308636546],[-122.42435072869083,55.240099557360836],[-122.42436610722388,55.24017063866672],[-122.42436367635915,55.24024232953609],[-122.42434741503881,55.24026989384704],[-122.42428430316407,55.24031405221645],[-122.42425309534991,55.2403322169788],[-122.42422151139962,55.24033243074667],[-122.42417418521396,55.24033219218187],[-122.42412765488558,55.24032300637636],[-122.42408112457844,55.240313820553446],[-122.42401847605326,55.2402862313816],[-122.42386281126832,55.24019542119036],[-122.42383164741061,55.24016873665061],[-122.42379899123294,55.240158828141716],[-122.42376820334958,55.24015009457405],[-122.42372087738107,55.24014985583705],[-122.42350078569496,55.24014016707546],[-122.42345425574239,55.24013098101847],[-122.42342356745628,55.24012112896327],[-122.42339160793175,55.24010339153182],[-122.42337549006723,55.24008498811735],[-122.42331316321061,55.24003161878665],[-122.42328289538715,55.23999486849041],[-122.42326709847309,55.23995068525787],[-122.42323725113428,55.239887036744655],[-122.42322272552454,55.239850738877095],[-122.4231754446972,55.23980565073792],[-122.42300515881114,55.239679660005805],[-122.42295825396629,55.23965252277434],[-122.42287986529713,55.239624480551],[-122.42286285221947,55.23961614268702],[-122.42278483914755,55.23960605139382],[-122.42261324753437,55.23960560393295],[-122.42256592221318,55.239605364757146],[-122.42251780069225,55.23961407277546],[-122.4224700544702,55.23964073176618],[-122.42235872034188,55.23969471554051],[-122.42224786066944,55.239765531806086],[-122.42220011408882,55.23979219069373],[-122.4221689057385,55.23981035493313],[-122.42205846658278,55.23985427282855],[-122.42199567451921,55.239872650235995],[-122.42194675622243,55.23989030524268],[-122.4218683215522,55.23990711157694],[-122.42179016228958,55.239942987256285],[-122.42167882641267,55.23999697042403],[-122.42156758978957,55.24004983509176],[-122.42153558452598,55.24007694637909],[-122.42142509721009,55.24016571290909],[-122.4213922952961,55.2402017713655],[-122.42137561032698,55.24025623348883],[-122.42134365750107,55.24032707552256],[-122.42124754659584,55.24049810758214],[-122.42119900197133,55.24053371329199],[-122.42116672089243,55.24054175508891],[-122.42113710454664,55.240542024662766],[-122.42102660986933,55.24054221084947],[-122.42096354117508,55.24054151834042],[-122.42090009785515,55.24052287480237],[-122.42085356805379,55.24051368777364],[-122.42080666368783,55.24048654973012],[-122.42077470502672,55.24046881162661],[-122.42074443919299,55.24043206071228],[-122.42071407383743,55.240396428190884],[-122.42065152269197,55.240279138933964],[-122.42060663415576,55.24020720821667],[-122.42055977801542,55.24013522088579],[-122.42052988708751,55.240116420917744],[-122.42048223452855,55.240053380757765],[-122.42046798619131,55.24003615196619],[-122.42045149526814,55.23999979717575],[-122.42043659771514,55.23994554798535],[-122.42042212246577,55.23986440059701],[-122.42042334139927,55.2398285552017],[-122.4204238115138,55.23975680781168],[-122.42042512614519,55.23963126403],[-122.420427141734,55.239586471436745],[-122.42047620371075,55.23943426944883],[-122.42047555443585,55.23939724905538],[-122.42046055749195,55.239344118270104],[-122.42046257302688,55.23929932567727],[-122.42046351706738,55.239244410886734],[-122.42046276822603,55.2392085088935],[-122.42049589278967,55.239146670889305],[-122.42052874238193,55.239065763480546],[-122.42056079521889,55.23899380326268],[-122.42061018280612,55.23890440141543],[-122.42062649376068,55.23883198840465],[-122.42064476798973,55.23867105200802],[-122.4206607042845,55.23858068799889],[-122.42072508355713,55.23845583688748],[-122.42072630217808,55.238419991493124],[-122.42072762036861,55.23838302769883],[-122.42072729335086,55.23832022751524],[-122.4207127185281,55.23824019857051],[-122.42073062216741,55.2381498911507],[-122.42073146624413,55.238096094762724],[-122.4207481511894,55.23804163273465],[-122.42078005579522,55.23801564005368],[-122.42082663009289,55.23797997792034],[-122.42107829144729,55.237989458442925],[-122.42112678604197,55.23799870197484],[-122.42117172006141,55.2380257833045],[-122.4212504791866,55.238071777592154],[-122.42131242548223,55.23810719695449],[-122.4213293380462,55.238116653429714],[-122.42136012384431,55.238125387598956],[-122.42148625367444,55.23812677218321],[-122.42151666463383,55.23811755532175],[-122.42156558096411,55.238099900486304],[-122.42158174376588,55.23807345494376],[-122.42164537606365,55.23800128135377],[-122.42164500112715,55.23798333036236],[-122.42166116382991,55.237956884809705],[-122.42166121030138,55.23791203562178],[-122.42166205312893,55.23785823922857],[-122.4216479046087,55.237839892174094],[-122.42163141351956,55.237803537545894],[-122.42161726503254,55.23778519048797],[-122.42160104936217,55.23776790524779],[-122.42156919205696,55.237749048951144],[-122.4215234616949,55.23773091496984],[-122.42147656012098,55.23770377718434],[-122.42141302148664,55.23768625231205],[-122.42133580894497,55.23766721290915],[-122.42125573283491,55.23765818247456],[-122.42116188325338,55.23764875587133],[-122.42108297838195,55.23764872911609],[-122.42073874037472,55.23763770707456],[-122.42065983552526,55.237637680051186],[-122.42051749211178,55.23761900924901],[-122.4204071050371,55.23761807648627],[-122.42036174970791,55.23761789307317],[-122.42032857457201,55.23763600024762],[-122.42028200023105,55.23767166219385],[-122.42024919932585,55.23770772034234],[-122.42023223912369,55.237743112907395],[-122.42021644986471,55.237787509269566],[-122.42019924571255,55.2379585677917],[-122.42019765234528,55.23797646218393],[-122.42014943594683,55.23807486766156],[-122.42008617509188,55.238164991483856],[-122.42005374783751,55.23821900057861],[-122.42002067165846,55.23823598927242],[-122.4199902602669,55.23824520576869],[-122.41991093163875,55.23827207646253],[-122.41987865211688,55.23828011792427],[-122.4198174550641,55.238280599842845],[-122.41969132480924,55.23827921356851],[-122.4196112478503,55.238270182076334],[-122.41954977640937,55.23825159446643],[-122.41944050777465,55.23821593386371],[-122.41940865112721,55.23819707701381],[-122.41934590949202,55.238170603895156],[-122.41929980576118,55.238134518098356],[-122.41925210831971,55.23811632666485],[-122.41922104874298,55.238088522576966],[-122.41919068650505,55.23805288969043],[-122.41914383540662,55.23798090183858],[-122.41912931417764,55.237944603498896],[-122.41911441916815,55.237890354158836],[-122.41911404536178,55.237872403159976],[-122.41906916225898,55.237800471901636],[-122.41903762966406,55.23775583516844],[-122.41900577356971,55.237736978216226],[-122.4189438298745,55.23770155770764],[-122.41891277083096,55.23767375354375],[-122.41883630647392,55.23760203461621],[-122.41880445059567,55.23758317761264],[-122.41874171031522,55.23755670419088],[-122.4186633286677,55.237528659318315],[-122.41858484750028,55.237501732794684],[-122.41847605490696,55.23748290394948],[-122.41836636569926,55.23747414059147],[-122.41834945410166,55.237464683714286],[-122.4182556056524,55.23745525492134],[-122.41822402392857,55.23745546716835],[-122.41809949059548,55.23743618491583],[-122.41790982636299,55.23741727024281],[-122.41778519364755,55.23739910607375],[-122.4176274845441,55.237397929837186],[-122.41742315038549,55.23738868349018],[-122.41712427064937,55.237377835942],[-122.41701468169497,55.23736795299658],[-122.41688845472159,55.23736768228089],[-122.41679460684094,55.23735825238702],[-122.41666917735577,55.237349034275184],[-122.41654384761357,55.23733869764049],[-122.41624486879205,55.23732896637854],[-122.41619754618652,55.23732872478305],[-122.4160887551781,55.23730989385284],[-122.41591446106489,55.23727347848063],[-122.4158064679844,55.23724570013577],[-122.41571145069263,55.23722726558541],[-122.41561802886208,55.23719093663015],[-122.41557033420371,55.23717274378791],[-122.41552460720024,55.23715460760481],[-122.41550929182485,55.23712725601103],[-122.41546202284103,55.237082164953456],[-122.41544670753576,55.23705481335202],[-122.41543129253569,55.23702858014446],[-122.41543177151861,55.23695683278851],[-122.4154343712241,55.236839174534346],[-122.41545266531415,55.23667823892405],[-122.41545229315258,55.236660287915896],[-122.41550168922561,55.23657088811014],[-122.41551678522498,55.23653432111934],[-122.41558112393729,55.236454321866745],[-122.41561355577267,55.2364003139438],[-122.41570984719776,55.23633805404764],[-122.4157410557706,55.23631989143141],[-122.41577226431525,55.23630172880727],[-122.41581958571044,55.23630197056439],[-122.41592996906809,55.236302907392975],[-122.41599223344625,55.23631254961854],[-122.41610191897041,55.23632131506684],[-122.41619613676053,55.236348696487376],[-122.41629115219975,55.23636713066671],[-122.41638420015065,55.2363855081099],[-122.41647804566644,55.23639493831224],[-122.41663495336039,55.23640506317644],[-122.41668227488229,55.23640530460573],[-122.41673039382859,55.23639659884421],[-122.4167938806054,55.236370395319405],[-122.41684172638212,55.236342620114485],[-122.41687246198192,55.236307624607825],[-122.41695221331128,55.236253857675955],[-122.41698342125802,55.23623569474846],[-122.41704770496561,55.236200543920226],[-122.41709465335965,55.23618283419003],[-122.41718934734044,55.23613846750107],[-122.41729988127328,55.236093435538436],[-122.41734879699297,55.23607578236187],[-122.41741228286094,55.23604957852246],[-122.41745843366384,55.236040815832375],[-122.41760161829227,55.23600569377034],[-122.41766440632827,55.23598731858345],[-122.41771215139902,55.235960661442256],[-122.41774335877537,55.235942498324704],[-122.41777446647579,55.235925453596835],[-122.41780647097141,55.23589834328436],[-122.4178234325296,55.2358629510545],[-122.41787095445304,55.235772375276],[-122.41787254876769,55.2357544809165],[-122.41788998479147,55.23564734131975],[-122.41789003546343,55.23560249214097],[-122.4179055021748,55.23558387586263],[-122.41795329720847,55.23551236945141],[-122.41798520161426,55.235486377491355],[-122.41800183864721,55.23547676501993],[-122.4180338426328,55.23544965465001],[-122.41808121349816,55.23540504636958],[-122.41811232063996,55.23538800155798],[-122.41814549491981,55.23536989497687],[-122.41817670164241,55.2353517317516],[-122.41828633562115,55.23531676449514],[-122.41835029275282,55.23530739277923],[-122.41842909340332,55.23530853966367],[-122.41847561663242,55.23531772759456],[-122.41852213988275,55.23532691550805],[-122.41856983368787,55.23534510721731],[-122.41871015086774,55.23540857279362],[-122.41877241452818,55.2354182136286],[-122.41881973490236,55.2354184542458],[-122.41894515886239,55.23542767019044],[-122.41903979963563,55.23542815127548],[-122.41913406661868,55.23541068129304],[-122.41919802370218,55.23540130914168],[-122.41929308738744,55.235374891851],[-122.41930765692848,55.23536634098605],[-122.41937273403198,55.235322241771385],[-122.41940473697106,55.23529513104942],[-122.41942099966674,55.23526756739413],[-122.4194517322023,55.235232571253775],[-122.41945215506522,55.23520567307003],[-122.41950154046627,55.235116271687666],[-122.4195008921577,55.23507925130107],[-122.41950211176689,55.235043405927726],[-122.4195182746971,55.235016960658974],[-122.41950216064133,55.23499855675035],[-122.41942527743954,55.23495373638216],[-122.41937838051751,55.23492659781213],[-122.41933068684294,55.234908406413076],[-122.41922152708536,55.23487162722857],[-122.41911157066409,55.234843795135546],[-122.41908078786462,55.23483506041268],[-122.41900151478399,55.23481708134381],[-122.41890767235661,55.23480765304406],[-122.41882966959871,55.23479755927723],[-122.4187819763251,55.23477936766814],[-122.41859434167901,55.234715661490945],[-122.4184850834924,55.23468000005952],[-122.41835981174363,55.23462481607852],[-122.4183298263076,55.23460713398805],[-122.4182510773017,55.23456113786548],[-122.41821912447297,55.234543399114145],[-122.41812650368517,55.234498124866576],[-122.41804882587971,55.2344622508307],[-122.4179853934947,55.23444360581664],[-122.41784385975755,55.23441598478359],[-122.41773390553416,55.234388151475144],[-122.41768658637803,55.234387910445385],[-122.41757690577862,55.23437914639414],[-122.41751464401231,55.23436950496208],[-122.41749970139757,55.234360104617664],[-122.41746695184052,55.23435131285005],[-122.41745280646599,55.23433296532377],[-122.4174358964032,55.234323508324884],[-122.417436320604,55.234296610149805],[-122.41743754202851,55.2342607647988],[-122.41747024299141,55.2342258257971],[-122.41748491215535,55.234216156749085],[-122.41750224634023,55.23419871556624],[-122.41754919219875,55.234181005667324],[-122.41762771715936,55.23416308366298],[-122.41772315210137,55.23415461857143],[-122.41777009781123,55.23413690858935],[-122.41788089917706,55.23411094551283],[-122.41791130792737,55.234101729534466],[-122.41792784476655,55.23409323547132],[-122.41795984770165,55.23406612512307],[-122.41800641992751,55.234030464054825],[-122.41803884655442,55.23397645551003],[-122.41807286724658,55.2339045525974],[-122.41808706320343,55.23387805087968],[-122.41810534411259,55.233805694863065],[-122.41810576786045,55.233778796686664],[-122.41810661535449,55.23372500033416],[-122.41809129952942,55.23369764906488],[-122.41806014453093,55.23367096309411],[-122.4179820951194,55.23361713802261],[-122.41785720057455,55.23357990453675],[-122.41769945767426,55.23353499761713],[-122.41760524544897,55.23350761733952],[-122.41751060920961,55.23350713516452],[-122.41744951903776,55.23350649752245],[-122.41730639448873,55.23349677023157],[-122.41716603471284,55.23347815225386],[-122.41708793530809,55.23346917579396],[-122.41704061723642,55.233468934518754],[-122.41699409647235,55.23345974605314],[-122.41694677841234,55.23345950474238],[-122.41691412937456,55.233449594433466],[-122.41688334811856,55.2334408591683],[-122.41675755810935,55.23341369014855],[-122.41669529803309,55.23340404830762],[-122.41664877742288,55.23339485971295],[-122.41653919943187,55.23338497635201],[-122.41635072500623,55.23337506314138],[-122.41627145602142,55.23335708233664],[-122.41613109721158,55.233338463192794],[-122.41598877110665,55.23331978722064],[-122.4159265113599,55.23331014499551],[-122.41569071957075,55.23329998906959],[-122.41561182323007,55.23329995884814],[-122.41556530298756,55.23329076984882],[-122.41551878276631,55.233281580832106],[-122.41545498128345,55.23324498352733],[-122.41537810593964,55.23320016066635],[-122.41536279216882,55.23317280906262],[-122.41533046964099,55.23313711856824],[-122.41533211850043,55.23307437507551],[-122.41533386706311,55.2330105131878],[-122.4153339740977,55.23292081485009],[-122.4153355694275,55.23290292052688],[-122.41535173423601,55.23287647580309],[-122.41538336584351,55.23283141511603],[-122.41544610362705,55.23276931027878],[-122.41549427183143,55.23271575582902],[-122.41554253960938,55.23266108296548],[-122.41558990995375,55.23261647564197],[-122.41565381688362,55.23256337454029],[-122.41570155922395,55.232536718176604],[-122.41574850393604,55.232519008958725],[-122.4158598270792,55.23246503112225],[-122.41593824975361,55.232448228581084],[-122.41601794192854,55.23243931143007],[-122.41609566668654,55.23243033755981],[-122.41614298353136,55.23243057919398],[-122.41642608719927,55.23244097578953],[-122.41647340405855,55.23244121729806],[-122.4164899405189,55.232432723426925],[-122.41652034831961,55.23242350778942],[-122.41655235087505,55.232396397806134],[-122.41660168716702,55.23235184675961],[-122.41660131453295,55.23233389576065],[-122.41666489905082,55.2322179939754],[-122.41669732601768,55.23216398578709],[-122.41673134757453,55.232092083250585],[-122.41674596841386,55.23203868352094],[-122.41673102684413,55.23202928308591],[-122.41666999095507,55.23198379589521],[-122.41662309935211,55.231956656293605],[-122.41660619048282,55.23194719918367],[-122.41657541044279,55.23193846384337],[-122.416355790284,55.231901864294905],[-122.41627742131307,55.231873817932524],[-122.41621426660448,55.23187424141508],[-122.41618278893169,55.23187333474847],[-122.41604243533777,55.23185471550672],[-122.41585279837716,55.23183579770898],[-122.4157597611884,55.231817419875],[-122.41571207283438,55.23179922709427],[-122.41563519996596,55.23175440439688],[-122.41554179090899,55.231718075399115],[-122.41547836401092,55.23169942911179],[-122.4154148374688,55.23168190118735],[-122.41532100319263,55.231672470187064],[-122.41511600065692,55.23167104882433],[-122.41500759736574,55.2316701679602],[-122.4149594836981,55.23167887305308],[-122.4148809623966,55.23169679337161],[-122.41486442589905,55.231705287028646],[-122.41481668399061,55.231731943069725],[-122.41469036624407,55.23182136845578],[-122.41453044877862,55.231955797497214],[-122.41449844521155,55.231982906959864],[-122.41446813701066,55.23199100370911],[-122.41443655955509,55.231991214995524],[-122.41424809217494,55.231981298603664],[-122.41421651472582,55.231981509834334],[-122.41415425747412,55.231971866724066],[-122.41410656966286,55.23195367332832],[-122.41406047775243,55.231917585608876],[-122.41404356950177,55.231908128150934],[-122.41402815738776,55.2318818947797],[-122.41399870211391,55.23183619509736],[-122.41399912858586,55.23180929693895],[-122.41399838564983,55.23177339492686],[-122.41401572029356,55.2317559542323],[-122.41403081583701,55.23171938743476],[-122.4140469810275,55.231692942882624],[-122.41409514980545,55.231639388978266],[-122.4141599547933,55.231576223100134],[-122.41427080613805,55.23150541407688],[-122.41430280947878,55.23147830467361],[-122.41431860278617,55.231433909082014],[-122.41431982690074,55.231398063769205],[-122.4142725659789,55.23135297227914],[-122.4142407171857,55.231334114117075],[-122.41419340164153,55.231333871760164],[-122.41394295291182,55.231333381184726],[-122.41383258323111,55.23133244259535],[-122.41375289276384,55.23134135834712],[-122.41369020994046,55.23135861316201],[-122.4136756406568,55.23136716336718],[-122.4136120599903,55.231394483686394],[-122.41359552334919,55.231402977174746],[-122.41354895025549,55.231438636586496],[-122.4135157771483,55.23145674193788],[-122.41350040974802,55.23147423927167],[-122.41348334648161,55.23151074929474],[-122.41346718099393,55.231537193773384],[-122.41346712539811,55.2315820429368],[-122.41348158364433,55.23166319108312],[-122.41347987637567,55.2317707837088],[-122.41346361102391,55.23179834658118],[-122.41343250468792,55.23181539022699],[-122.41336892314821,55.231842710422995],[-122.4133219781779,55.231860418743004],[-122.41325812511678,55.23186866948076],[-122.41311697475548,55.23185899408943],[-122.413022342447,55.231858508503684],[-122.4129758244621,55.231849318537975],[-122.41289772915313,55.231840339451246],[-122.41277284482692,55.231803100871396],[-122.41272595606273,55.23177595980272],[-122.41264871569949,55.231713184252094],[-122.41261596935628,55.2317043912105],[-122.41258529014965,55.231694536491275],[-122.41253760337634,55.231676342495085],[-122.41242756052263,55.2316496229002],[-122.41241262010612,55.23164022194721],[-122.41239767969655,55.23163082099259],[-122.41238273929397,55.231621420036056],[-122.41238316684374,55.23159452188361],[-122.4123985347757,55.23157702468763],[-122.41241353193553,55.231541576479145],[-122.41244596406275,55.231487569400734],[-122.41252693746544,55.23139796002737],[-122.41262205261012,55.23132669867437],[-122.41265405691937,55.2312995896952],[-122.41273337664839,55.23127272363751],[-122.41278032119214,55.23125501554024],[-122.41281259649745,55.23124697592243],[-122.41290648541387,55.23121155965037],[-122.41293769127638,55.23119339774353],[-122.41295512589988,55.231174838804264],[-122.41300169921446,55.231139179615305],[-122.413050239759,55.231103577125396],[-122.4131453532813,55.23103231537418],[-122.41320926092104,55.23097921553336],[-122.41320968791152,55.230952317379256],[-122.41322595309526,55.23092475454185],[-122.4132105418908,55.23089852107134],[-122.41319523046896,55.230871169205685],[-122.41314834250569,55.23084402829791],[-122.41308534516611,55.2307984826394],[-122.41300730797911,55.23074465446141],[-122.41296158943446,55.23072651734593],[-122.41288162878499,55.23071636313888],[-122.41263118391417,55.23071586992523],[-122.41245893184269,55.23072323722531],[-122.41242655710326,55.23073239514391],[-122.41223809611358,55.2307224757109],[-122.41211189001609,55.23072220015431],[-122.41208121168161,55.23071234531147],[-122.41204926462834,55.23069460498226],[-122.41200317600472,55.23065851650461],[-122.41197165684291,55.23061387800624],[-122.41195671691737,55.23060447699935],[-122.41194103592058,55.230559173969525],[-122.41192615333426,55.23050492379957],[-122.41191191204051,55.23048769404147],[-122.41192743686166,55.2304242293537],[-122.41195976894515,55.23037134079853],[-122.41197768872479,55.23028103469013],[-122.41199385468663,55.23025459040729],[-122.41205791956753,55.23015552360966],[-122.41209035105499,55.23010151662931],[-122.41210651687067,55.230075072332184],[-122.41218674690104,55.22994956117068],[-122.41220174364095,55.22991411299201],[-122.41220296959472,55.229878267703924],[-122.41222009031368,55.22979690870341],[-122.41222051795273,55.22977001055509],[-122.41218936988759,55.229743323123394],[-122.41211223405206,55.22967942885684],[-122.4120496102867,55.22965183368712],[-122.41201883299125,55.229643097222],[-122.41187689236483,55.229642367564814],[-122.41176562917705,55.22965149267307],[-122.4117194844616,55.22966025324953],[-122.41165563456269,55.22966850316433],[-122.4116390982179,55.229676996391795],[-122.41154601020993,55.22970346456905],[-122.41146589431916,55.22973927700209],[-122.4114343186146,55.22973948752723],[-122.4114040114868,55.22974758352933],[-122.41132512211347,55.22974755059205],[-122.41127663971285,55.229738303249455],[-122.41118403779376,55.22969302385483],[-122.41115326065473,55.22968428717575],[-122.41112178480884,55.22968337923004],[-122.41090095481098,55.22968261534432],[-122.41085364122856,55.22968237171848],[-122.41080749627918,55.22969113195699],[-122.41079085991969,55.229700743463155],[-122.41074391631356,55.229718450808406],[-122.41064806173428,55.22975380869185],[-122.41056884343962,55.22977955502706],[-122.41050526317231,55.22980687375685],[-122.4104268433768,55.22982367287333],[-122.4103328556766,55.2298602056631],[-122.41025363697088,55.229885951798046],[-122.41017511707223,55.22990386914694],[-122.4101278032341,55.229903625245306],[-122.410079690623,55.2299123284517],[-122.41001663877597,55.22991163040024],[-122.40995551383763,55.22986725831648],[-122.40992409741754,55.22982150091189],[-122.40989215202227,55.22980376003035],[-122.40984649557858,55.22974077261658],[-122.4098303880583,55.22972236746387],[-122.40978510137248,55.2296773310435],[-122.40969053403602,55.22963199377044],[-122.40964364988,55.229604851545524],[-122.40956635855142,55.22958692324808],[-122.40953488281748,55.22958601490131],[-122.4093464279089,55.22957609109277],[-122.40920448756735,55.229575358389376],[-122.40917211301078,55.229584515461],[-122.40910980022703,55.22961971898547],[-122.4090615273582,55.22967438934327],[-122.40898181781067,55.229771881961575],[-122.4089498122428,55.22979898999389],[-122.40891700760129,55.22983504513652],[-122.4088850019395,55.22986215315226],[-122.40880652057271,55.229923800404194],[-122.4087753138304,55.22994196127417],[-122.40874293888125,55.22995111823449],[-122.40866414899736,55.229949965221806],[-122.40861843331287,55.22993182651274],[-122.4085856892997,55.22992303241252],[-122.4085557116614,55.22990534797494],[-122.4084777821558,55.229850398572516],[-122.40843016063121,55.22978735385061],[-122.40841592108809,55.22977012369359],[-122.4083994452586,55.229733767335745],[-122.40841614342494,55.22967930699407],[-122.40841657360511,55.229652408859046],[-122.4084027643045,55.229608280565756],[-122.40838745664102,55.2295809281116],[-122.40834057342329,55.22955378539615],[-122.40829209194187,55.22954453689164],[-122.40824557771178,55.22953534516052],[-122.40807296108635,55.22952475537294],[-122.40804255354172,55.22953396894585],[-122.40797817271363,55.22957023349745],[-122.40791505965878,55.22961438353633],[-122.40789889127407,55.229640827288364],[-122.40788342221812,55.22965944231555],[-122.40786565527166,55.22970378028671],[-122.40786559343611,55.229748629441616],[-122.40784754095475,55.229928633265196],[-122.40783057312487,55.22996402412058],[-122.40781590319146,55.22997369202826],[-122.40779856662873,55.22999113185737],[-122.40778399658848,55.229999681372455],[-122.40773588335573,55.23000838367325],[-122.40768777010217,55.230017085955495],[-122.4076561941599,55.2300172955226],[-122.40756236558356,55.23000785867721],[-122.40750011297965,55.22999821224166],[-122.40746816851266,55.22998047073808],[-122.40742128544952,55.22995332767576],[-122.40737600119974,55.22990829037863],[-122.40735989474223,55.22988988490611],[-122.40733034857546,55.22984530204186],[-122.40732998009993,55.22982735101857],[-122.40729973454668,55.22979059686697],[-122.40725285181834,55.22976345374152],[-122.40715748771267,55.22972706165226],[-122.40709593514416,55.22970958629616],[-122.40706525880992,55.22969973021835],[-122.40698636953411,55.229699694532385],[-122.40673486328038,55.22968906715359],[-122.40660866046161,55.229688786019615],[-122.40651280232012,55.22972414071949],[-122.40648239426767,55.229733353911584],[-122.40641971083197,55.229750605064524],[-122.40637239719685,55.22975035973602],[-122.4062785695439,55.22974092192355],[-122.40623008831092,55.229731672616104],[-122.40616816818196,55.22969624577493],[-122.40609067407541,55.22961439675229],[-122.40607536798099,55.22958704401387],[-122.40607659938128,55.22955119878714],[-122.40607746286554,55.22949740253382],[-122.40607789460681,55.22947050440729],[-122.40610953392037,55.22942544608742],[-122.40612607132869,55.22941695359448],[-122.40626813828598,55.22932799150136],[-122.40631551498626,55.22928338771683],[-122.40642690526803,55.22918456917367],[-122.40646007969126,55.22916646571384],[-122.40645971161011,55.229148514688795],[-122.40647428162353,55.22913996532927],[-122.40647471309578,55.22911306720207],[-122.4064943070915,55.2289600185351],[-122.40647853293989,55.22891583321068],[-122.40646402640472,55.22887953341915],[-122.40644872033602,55.22885218072805],[-122.40643251477984,55.22883489352468],[-122.40641720874952,55.228807540829806],[-122.40637032776152,55.2287803973741],[-122.40626242767934,55.22870776162036],[-122.40623048478223,55.22869001980096],[-122.4061533604258,55.22862612184821],[-122.40605843175376,55.228562830795056],[-122.4059815758189,55.22851800214932],[-122.40587207778185,55.22846326025617],[-122.4058255653541,55.22845406762184],[-122.40576134839763,55.22844436348763],[-122.40568442875579,55.22844438380827],[-122.40563631692837,55.228453085296856],[-122.40558857276628,55.2284797377936],[-122.40549381954145,55.228568944786296],[-122.4054763826063,55.228587502677314],[-122.40546058066228,55.22863189713793],[-122.40542844452965,55.22874870256339],[-122.40541110746007,55.228766142058504],[-122.40537866808593,55.22882014729386],[-122.40534666084802,55.22884725439821],[-122.40530008340339,55.228882910718085],[-122.40525153868161,55.22891851018093],[-122.40518879117013,55.22898060986425],[-122.40515641617836,55.22898976589143],[-122.40512600837023,55.22899897875179],[-122.40509373333244,55.22900701637601],[-122.40504632059523,55.22900788893022],[-122.4048886447484,55.22900669656356],[-122.40477828166034,55.229005749949515],[-122.40474830637832,55.228988064596585],[-122.40471636392618,55.228970322388335],[-122.4046541790224,55.22891582538019],[-122.40460729909732,55.228888681260464],[-122.40459199428702,55.228861328341125],[-122.4045624519415,55.228816744823476],[-122.40456288468799,55.22878984670355],[-122.40457928591188,55.22867258670046],[-122.40458051861668,55.228636741490845],[-122.40459562156252,55.22860017584553],[-122.40464416648052,55.22856457663916],[-122.40470888135725,55.228502534080356],[-122.40474088875057,55.22847542714065],[-122.40477092892978,55.22844826334562],[-122.40483441095421,55.22842206593299],[-122.40486678556255,55.22841290998983],[-122.40499214954463,55.22837840921923],[-122.405024524082,55.22836925323507],[-122.40505573129731,55.228351093307246],[-122.40510267581102,55.2283333881081],[-122.40511921298308,55.22832489574945],[-122.40513548264555,55.22829733397432],[-122.40516788678505,55.22819959804252],[-122.40520192558785,55.22812769867746],[-122.40521739529532,55.228109083985444],[-122.40520199038916,55.22808284952929],[-122.40517174809018,55.228046094865455],[-122.40507768711683,55.227929006826514],[-122.40504697762604,55.227875419491966],[-122.40497108904012,55.22777567559867],[-122.40495498453586,55.227757269817936],[-122.40493957993537,55.227731035329995],[-122.40490853826115,55.22770322769472],[-122.40486165957695,55.22767608367315],[-122.40484545517596,55.22765879626475],[-122.40481478095593,55.22764893963405],[-122.40475243267012,55.22764041021278],[-122.40459556213698,55.22763027038491],[-122.404532881168,55.227647520585386],[-122.40443782604848,55.227673926593845],[-122.40439088201147,55.22769163154154],[-122.40437344494785,55.22771018927689],[-122.40434143791562,55.22773729612066],[-122.40429362793225,55.22780879726608],[-122.40427745789356,55.22783524054446],[-122.4042466178091,55.227871351306476],[-122.40423008063928,55.2278798435489],[-122.40419850635584,55.22788005223914],[-122.40396274934183,55.22786987411156],[-122.40391543793264,55.227869627849515],[-122.40388466376592,55.227860889375144],[-122.40385282260371,55.227842028561184],[-122.4038284499668,55.22782786873004],[-122.39999950948803,55.22959975902007],[-122.37927491644787,55.2391864524701],[-122.3791348566317,55.23916443652294],[-122.37891129580618,55.239127656418006],[-122.3787468657621,55.23909147531048],[-122.37859312747175,55.239024208777494],[-122.37839271725912,55.23892755131569],[-122.37826405577279,55.23886662063613],[-122.3781938193361,55.238814118045156],[-122.3781154577667,55.23874231685601],[-122.37807509175335,55.2387086243399],[-122.37803492732588,55.238672695079586],[-122.37780576423131,55.23858865528604],[-122.37737847675264,55.238492119760956],[-122.37701914631688,55.23836392227123],[-122.37685788944098,55.23822691398243],[-122.37678972004888,55.23812961872743],[-122.37671373309635,55.238053400490884],[-122.37664208895576,55.238016554131605],[-122.37661474416595,55.2380135153172],[-122.37648175387307,55.23800067247199],[-122.37614958094163,55.237965209645786],[-122.37584293526349,55.23790918467443],[-122.3757608429263,55.23779129987539],[-122.3757272316932,55.23763894543331],[-122.37555882354488,55.23758133929246],[-122.37533775197059,55.2376264798616],[-122.37517136879309,55.23767769831899],[-122.37502940051169,55.23767692665954],[-122.37485902562653,55.23761926225517],[-122.37465676664786,55.23756515390604],[-122.3744141995154,55.23754238854228],[-122.37416235027888,55.23753505045749],[-122.37381257598307,55.23749794705893],[-122.37339333155906,55.237421815069936],[-122.37317079457542,55.23737384104818],[-122.37313805225752,55.237365037623114],[-122.37302771734142,55.237341638289145],[-122.37272446096556,55.23727000593024],[-122.37242988317074,55.23718965537831],[-122.37232373680867,55.23714170883707],[-122.37231500911606,55.23712912006767],[-122.37229725100322,55.2371072976097],[-122.37221925681874,55.23700971305992],[-122.37198189333462,55.236863751186824],[-122.37166174208743,55.23678265307001],[-122.37146080230893,55.236757731643415],[-122.37136600838349,55.23673702654538],[-122.37132529592465,55.23672911150417],[-122.37126283973276,55.23672168366923],[-122.37112632414875,55.23670424691368],[-122.37099011153293,55.23668345492918],[-122.37081036223074,55.23664233086364],[-122.37056750240932,55.23657918229532],[-122.37034245196647,55.23651543141579],[-122.37016194823184,55.23646082871288],[-122.370023417533,55.23642202713795],[-122.36984720148116,55.236385489911335],[-122.36964157412554,55.236346973047425],[-122.36949053235472,55.23631565497698],[-122.36927385622114,55.23629027078529],[-122.36896501076916,55.236258832771114],[-122.36881159831809,55.23623192989705],[-122.36880650389281,55.23622281078717],[-122.36879581000052,55.23621016435663],[-122.36863195883325,55.236145953539186],[-122.36832483726808,55.23605177106325],[-122.36811473012507,55.23595369161315],[-122.36799871210457,55.23584041725082],[-122.36794060230677,55.23578489838676],[-122.36790579391584,55.23577715451538],[-122.36783183808032,55.235766025310575],[-122.367745316887,55.235784804542945],[-122.36754851008082,55.235845216537406],[-122.36727880478705,55.235904621337156],[-122.36710581484449,55.23591975439998],[-122.36702318057374,55.235917341798164],[-122.36698983443091,55.235915246896816],[-122.36691900506925,55.235913178889824],[-122.36677174711822,55.23590551534348],[-122.36670101885213,55.23590232885618],[-122.36666762555161,55.23587892765121],[-122.36660694363975,55.235830060852805],[-122.36657572007131,55.23580448036108],[-122.36653618207654,55.23571810647386],[-122.36636201487458,55.235528004826506],[-122.36599164887348,55.23539160233579],[-122.36557122802856,55.23532886429611],[-122.36523373638241,55.235308914405195],[-122.36495606889517,55.23532547185092],[-122.36479266939352,55.23532181957338],[-122.36472572993138,55.23529855905946],[-122.36468739216922,55.235286225910784],[-122.3645615305419,55.23526012252662],[-122.36422157620778,55.2352019733942],[-122.36381927164449,55.235135273413356],[-122.36351761111231,55.23506814955871],[-122.36334842193905,55.235019473747876],[-122.36330221513411,55.23500691016637],[-122.36322619339404,55.23499683907829],[-122.36301139457731,55.23497261985075],[-122.3626729064561,55.234920115765],[-122.3622465037506,55.234814581532675],[-122.36186732126752,55.23471042645014],[-122.36158784702539,55.23470337593888],[-122.36137131770322,55.23474189665362],[-122.36128716797417,55.23475625552348],[-122.36120273979974,55.23468650781815],[-122.36106510339862,55.234572594115605],[-122.3609970667485,55.23451790268006],[-122.36089806320305,55.234609197384515],[-122.36069601869632,55.23479278982347],[-122.36059701379159,55.234884084290435],[-122.36048161402383,55.23480782361467],[-122.3601824188885,55.23462638968396],[-122.35985728881171,55.2344699864217],[-122.35964945259317,55.234303558205],[-122.35956497018375,55.2341037353882],[-122.35952368405299,55.23401506502404],[-122.3593948497196,55.23400008236142],[-122.35902418757189,55.233954475784486],[-122.35856777219169,55.23389738794485],[-122.35831610849084,55.233866474903],[-122.35809375309384,55.2338386618234],[-122.35770362287812,55.23379023877072],[-122.3573486021581,55.23374620628139],[-122.35721200137435,55.233729872626576],[-122.35713795093216,55.23371985542155],[-122.3568943615447,55.233686933209015],[-122.35650382886362,55.23364297979066],[-122.35612483869347,55.23362403210244],[-122.35585182333809,55.23363285604672],[-122.35568605871201,55.233633607590335],[-122.35548924074308,55.23358523273506],[-122.35519186373149,55.23347111815035],[-122.3549500808655,55.23335302489615],[-122.3548732727356,55.2333081647011],[-122.35487055473395,55.2332946292731],[-122.35486481456758,55.23327091345623],[-122.3548600278466,55.2332584387388],[-122.35481362293234,55.23324810870228],[-122.35471158487037,55.233220450309936],[-122.35462467722532,55.23319996302753],[-122.35453987916054,55.23319972119636],[-122.35441027877184,55.23321498636444],[-122.3543184632298,55.233226873260385],[-122.35429455102067,55.23322953656501],[-122.35426670414239,55.23323208457494],[-122.35420677148574,55.23324042032179],[-122.35414249849883,55.233253114129134],[-122.35408952242243,55.2332717455198],[-122.3540543537289,55.2332897773793],[-122.3540316989114,55.23330032670216],[-122.35398851893487,55.233297940075815],[-122.3538534827009,55.233286133769916],[-122.35368137146327,55.23326987685489],[-122.3535004379739,55.233242147963495],[-122.35318836358937,55.23318142088459],[-122.35282968300919,55.23311259893779],[-122.3526432546466,55.23308022241892],[-122.35254196838147,55.233066040054936],[-122.35242413196097,55.2330603429714],[-122.35237081135358,55.233061022446165],[-122.35231966098573,55.23305952288527],[-122.35221155975975,55.23305523232374],[-122.35216040940519,55.23305373269739],[-122.35212299081941,55.23303133058544],[-122.35205032402475,55.23298434731987],[-122.35201300703275,55.232960826830904],[-122.35198173290716,55.232957667248144],[-122.35184473108829,55.232945801083225],[-122.35160800518031,55.232924282704836],[-122.35134353417469,55.232904192889144],[-122.3511220398079,55.232888726833615],[-122.35102190990918,55.23288354767477],[-122.35093697218039,55.232863115515684],[-122.35078459974973,55.2328250070117],[-122.3507113646032,55.23280603924164],[-122.35066282966855,55.232819192861484],[-122.35054361176502,55.23285045701796],[-122.35044674466978,55.23287452742255],[-122.35042252787787,55.23288054501186],[-122.35035709907207,55.23288423241732],[-122.35022810721763,55.23289278317654],[-122.35016454416561,55.23289764653219],[-122.35014174859555,55.2328880072713],[-122.35010656474383,55.2328410010182],[-122.35010438067329,55.232778142995414],[-122.35011282059637,55.23275035756535],[-122.35006018627206,55.232786938432],[-122.3499102151815,55.23287448719384],[-122.34974697990006,55.23295604005007],[-122.34957600149298,55.23299251269504],[-122.34939151814979,55.233003919806954],[-122.3493103505296,55.233007144884816],[-122.34925133108537,55.233005413169906],[-122.3490351296017,55.23299682662607],[-122.34878341501465,55.23298831888298],[-122.34855096740168,55.23298486135116],[-122.34815926913322,55.232975608080935],[-122.34769695103981,55.232962037959034],[-122.34737512498957,55.23294362000738],[-122.34710400599184,55.23290987008888],[-122.34684126472617,55.2328707589309],[-122.34673261989036,55.23285074909338],[-122.34671450769882,55.23285470257421],[-122.34664952164734,55.23287522089198],[-122.34658412905478,55.232900212534474],[-122.34656137087907,55.232911878837506],[-122.34652823153382,55.23290754177884],[-122.3464598839371,55.23289992820621],[-122.34637837497716,55.23288520017223],[-122.34627447795758,55.232856358758596],[-122.34612604457023,55.2328183600972],[-122.34590129335515,55.23277363461469],[-122.34565625981477,55.23273504095063],[-122.3455116963815,55.232719581677635],[-122.34539138641948,55.23271941185002],[-122.34511505021506,55.232721386653004],[-122.3447395359044,55.23272941780869],[-122.34449800084282,55.23273914158641],[-122.34442656816113,55.23274377081554],[-122.34438878283972,55.232747145951436],[-122.34426691223601,55.23274244388511],[-122.34409066923548,55.23272829478532],[-122.3440084496616,55.23272139356341],[-122.34392768894848,55.23272014178279],[-122.34372583633014,55.23268393443514],[-122.34356492213664,55.23260968343555],[-122.34349233288613,55.232540270621286],[-122.34341031430831,55.2324660953345],[-122.34329844695364,55.23237310151402],[-122.34316928152933,55.232275113864226],[-122.3430714242406,55.232201594128504],[-122.34300643513647,55.23215707354974],[-122.34303580541757,55.232072716013896],[-122.34318608852669,55.23185174653975],[-122.34329152760652,55.23155993673281],[-122.34319031032744,55.2313932482277],[-122.34296051701428,55.23136070350628],[-122.34283027328085,55.2313613604222],[-122.34266855394425,55.23136109195339],[-122.3423390101387,55.23136261755749],[-122.34213194290561,55.231362136549336],[-122.34210233280433,55.23136238733034],[-122.34182519109835,55.23124322753916],[-122.34126697819907,55.23100479040885],[-122.34098984142912,55.23088562876167],[-122.34097325610117,55.23087280638357],[-122.34096236883808,55.23086239423885],[-122.34084725486974,55.23080518494286],[-122.34062574429508,55.23070335701582],[-122.34051799109965,55.23065197053096],[-122.34036153424469,55.23057223945524],[-122.33976260661781,55.23030456420401],[-122.33901757584385,55.23001688805178],[-122.33840314343678,55.23002796066839],[-122.33807177139767,55.23011464195283],[-122.33697968380324,55.22958798584919],[-122.32885550801842,55.22628053988178],[-122.32726597325698,55.22537243307339],[-122.32034731545484,55.222701014049335],[-122.31345165746761,55.22064885062042],[-122.30785019863218,55.221003010784315],[-122.30455289444537,55.221003769650686],[-122.29985045951125,55.21964392842617],[-122.2947442518907,55.21821804642786],[-122.28905493387357,55.2176447295311],[-122.2864417677421,55.217414224487875],[-122.28164096314723,55.21559320635183],[-122.27963728401258,55.214402933877416],[-122.27754017169603,55.21251905951137],[-122.27314517977358,55.21058423759465],[-122.26755070504659,55.21036261197629],[-122.26545297493381,55.210362425779984],[-122.26265096882085,55.20979379973975],[-122.2605450565275,55.207676094358554],[-122.25914345546184,55.20443123287404],[-122.25753166092996,55.201583724149664],[-122.2533287591398,55.1989631405145],[-122.25024572803035,55.1968516600456],[-122.24763648660303,55.194566001951685],[-122.24812716522199,55.192346980785786],[-122.25702052691035,55.19114384919376],[-122.26781453240288,55.19085841167136],[-122.2740104087208,55.19017411967144],[-122.27561312412016,55.190060678991195],[-122.28229322645977,55.186178879073275],[-122.28348109686944,55.18492258846954],[-122.28349676552212,55.184582159981794],[-122.28577744358074,55.18360971569348],[-122.28777964560868,55.181041056651296],[-122.28757980129068,55.17910633265735],[-122.28917150385635,55.17688423295897],[-122.29225565201253,55.17385443074538],[-122.29324764912909,55.170439204756846],[-122.28994384194274,55.16542451224556],[-122.2847352768405,55.16159970559494],[-122.27674982990442,55.1566418206245],[-122.2733481006092,55.15408172076991],[-122.26984301936426,55.149580663338305],[-122.26903709105488,55.14569889445259],[-122.2692389419817,55.14079779495481],[-122.2685275240783,55.136577957899824],[-122.26482938357252,55.13248356539676],[-122.25485127005123,55.13042451447615],[-122.2442765646871,55.131737695935314],[-122.23230654333257,55.13887487481714],[-122.22702842829386,55.141603319933],[-122.2213434588732,55.14160982456676],[-122.212763823676,55.14091773023267],[-122.20867629984947,55.14001243453844],[-122.19629949632353,55.13835084845726],[-122.1892200206718,55.13612405861157],[-122.18312341863195,55.133334945882666],[-122.17714050480683,55.12968773028849],[-122.17455339674865,55.126261564647],[-122.17575438696525,55.12272785732666],[-122.17975049902591,55.1194237939692],[-122.17954253685124,55.1169681296341],[-122.17555325616748,55.114063989332806],[-122.172167926402,55.111268060187165],[-122.17037625748564,55.1071037123344],[-122.17038048854245,55.10208865802475],[-122.16689688588806,55.09769254102423],[-122.15942954436599,55.09616056538006],[-122.15484590668757,55.09523795446199],[-122.15433784785549,55.0934726930362],[-122.15424904912307,55.090114479516245],[-122.15135050882624,55.091648430687506],[-122.14687514819754,55.0942099495762],[-122.14049002031805,55.09403826351683],[-122.13571022777333,55.09369199480499],[-122.13221356165157,55.097844644528976],[-122.13201281988056,55.102234648622904],[-122.13229918331245,55.1054824619406],[-122.12662062192403,55.106453651186094],[-122.12472642314162,55.1053716660036],[-122.12452508810884,55.10468350055899],[-122.12214400979009,55.10228530914192],[-122.11546692252733,55.10153800035427],[-122.10927502261372,55.101307988472726],[-122.10628926067467,55.10062210823206],[-122.10350152781444,55.09902721469888],[-122.10280439661297,55.09777611767254],[-122.10451528850253,55.095371509025064],[-122.1016316952294,55.09200602841743],[-122.09585706883821,55.08926722542395],[-122.08948975549963,55.08583651290075],[-122.08520360025273,55.08333253205615],[-122.081928062993,55.08030405598737],[-122.07685395954876,55.07750566902031],[-122.07078267258409,55.07510611243205],[-122.06939818963134,55.07447002700989],[-122.06611666915222,55.07184464315896],[-122.06322913471139,55.069052229170346],[-122.05687664632902,55.067620992055325],[-122.0511877585134,55.06664124969721],[-122.04642036854615,55.06395894341528],[-122.0443295688442,55.06235788966575],[-122.04005923763354,55.06086659216898],[-122.03637593204486,55.059322141877374],[-122.03460290441375,55.056412093150705],[-122.03281457996671,55.05430008765689],[-122.02904465616616,55.05236679162121],[-122.02655527399426,55.05115638777875],[-122.02398388619115,55.049503632998935],[-122.02399262344197,55.04574434365227],[-122.02221570054095,55.04368635519572],[-122.02132257519841,55.041907975693526],[-122.0219281487011,55.039747059385576],[-122.02164268414046,55.03770107566211],[-122.01646739726199,55.03506714664061],[-122.01448887532254,55.033469117407996],[-122.01270344757727,55.03198494526494],[-122.01042350777658,55.03089755482051],[-122.00824570614036,55.03020821702252],[-122.00545608381427,55.02871845702739],[-122.00247793044244,55.027231511362764],[-122.00012430408123,55.02483149208482],[-121.99764547136654,55.024966702402914],[-121.99407559075841,55.02533574117672],[-121.99139441746695,55.02529379247761],[-121.98549065023204,55.02338858744892],[-121.97971203717455,55.02291386171061],[-121.97723044223436,55.022761434510016],[-121.97458603955545,55.020145039435256],[-121.97197001205122,55.018507567466],[-121.96995838261168,55.01726659059726],[-121.96627718130982,55.01277672417604],[-121.96397406269963,55.01147229213303],[-121.95977376506603,55.01030327879195],[-121.95339212795064,55.008973049222526],[-121.94909803164143,55.007962105605216],[-121.94597649101686,55.006217737062364],[-121.94406614770561,55.0044501888972],[-121.94125348619265,55.002760680066196],[-121.93892330925357,55.00111386261534],[-121.93589730856633,55.000458121020365],[-121.93584229283,54.9989757099938],[-121.9383975364868,54.99791106443989],[-121.94105330029659,54.9966253368456],[-121.94005348735932,54.99298524267973],[-121.93291599524797,54.9903099416838],[-121.92806317330452,54.987547939363075],[-121.92137332520701,54.98247279724573],[-121.9196032048022,54.97980310487155],[-121.92004373538013,54.974191279967],[-121.91057397002331,54.96639439413542],[-121.90225397459834,54.96338183599793],[-121.9009280523478,54.962539206854636],[-121.89713515847251,54.957881636132406],[-121.88994911895232,54.95623391992058],[-121.87948186376615,54.95479044968843],[-121.87499275807316,54.95438039737645],[-121.87269364691694,54.9537113344802],[-121.86953286653412,54.94704581199407],[-121.86643614914972,54.94267962778643],[-121.86260895273358,54.93687996915209],[-121.85229410460522,54.93354559521079],[-121.84746465438553,54.93113079119905],[-121.8459470652679,54.92988619497586],[-121.84798334185186,54.92454336533713],[-121.85007363661022,54.92080868069984],[-121.85773892226744,54.91478439833875],[-121.86573141227952,54.91305121979415],[-121.87092439089443,54.91065855671425],[-121.8703730644603,54.90500453226971],[-121.87028664581877,54.90231845912393],[-121.86525671850234,54.8994398804018],[-121.8539528446681,54.89943741414065],[-121.84061416748173,54.90110629529552],[-121.83661428482142,54.89965218503898],[-121.84166221736606,54.89577513524764],[-121.85718345803645,54.89019508879806],[-121.85777063098097,54.88996353917712],[-121.86863727342985,54.885168029439356],[-121.8732991198984,54.88180636833463],[-121.87261137232211,54.87872327221034],[-121.87056270734466,54.87594457666683],[-121.87183280681542,54.87192195501492],[-121.86995833704228,54.86851192426245],[-121.86418426325606,54.867142760007155],[-121.85587987956931,54.86436012364985],[-121.84965797711227,54.864931521419145],[-121.84689405792903,54.86518841470705],[-121.83928266997732,54.86222155257306],[-121.83144538639418,54.86161571892986],[-121.82655375853284,54.860507889249604],[-121.81911858342869,54.859950767893665],[-121.80815314014039,54.85753214817295],[-121.80295098494274,54.85535380573774],[-121.8016355694716,54.85416027715263],[-121.79892801293974,54.84904233608228],[-121.79570106885184,54.842605294846244],[-121.79222577615211,54.83857377736343],[-121.78508880611336,54.838347720465826],[-121.78011604646771,54.84091469799349],[-121.77771289572584,54.84808379847303],[-121.77432425361347,54.85074077050117],[-121.76997864696266,54.85147117244962],[-121.76242721669244,54.85399384875509],[-121.75944703885364,54.85796583888108],[-121.75491677905869,54.858806063316266],[-121.74991379941643,54.86102091543892],[-121.74498174970944,54.86598432204006],[-121.73939545115823,54.86837610569539],[-121.73756941623574,54.870565665837304],[-121.73818022101545,54.871304772592616],[-121.74014951317744,54.87460378015734],[-121.74411687391168,54.87914742950481],[-121.7436006204241,54.882127195001516],[-121.73954817028591,54.882561633345134],[-121.73516526238808,54.88197035223367],[-121.72961488306196,54.88161670617527],[-121.72845237848814,54.88299447804662],[-121.72892450738286,54.88579305707134],[-121.72807912255675,54.88757670940906],[-121.72445979391368,54.88582681603909],[-121.7192789538707,54.884785482826516],[-121.71618199960972,54.88372658450288],[-121.71207633362746,54.881699124606754],[-121.70523275115126,54.88158659863891],[-121.6973774560664,54.88038829854456],[-121.69367033283324,54.878598469127475],[-121.6880961376177,54.873323666234334],[-121.68451663560765,54.86843254638076],[-121.67428358295555,54.86256299004557],[-121.67228275702064,54.861667013332664],[-121.66677289396398,54.85861922541909],[-121.66009212796669,54.85701985437377],[-121.64758270885727,54.855223334421055],[-121.64470790477196,54.85096606054478],[-121.64392933535899,54.846854642217345],[-121.64023978101736,54.84538675816523],[-121.62709206383103,54.84171640937676],[-121.61792650125426,54.83927239057166],[-121.61221707479545,54.83581987281073],[-121.61162413283152,54.83566410869363],[-121.6074062023638,54.83259657923633],[-121.60043816255829,54.831109155897806],[-121.59934207382057,54.83083661596226],[-121.593984671899,54.83007058030975],[-121.589185836769,54.82776248475538],[-121.58329854157728,54.82540616618994],[-121.57794218129047,54.82435219820211],[-121.57316420121276,54.823013595795004],[-121.56741317647885,54.82242967269378],[-121.56533947578777,54.82238192238016],[-121.55917888121866,54.82197135551893],[-121.55529332363035,54.82034106989202],[-121.551104872828,54.81819702923392],[-121.5489907441215,54.81666643562093],[-121.54881977213465,54.81266577380216],[-121.54673173766699,54.80719544114422],[-121.54549430168247,54.805086087444124],[-121.53980731361732,54.801810156642865],[-121.53036454795651,54.799878675265205],[-121.52303576397922,54.79946860598798],[-121.5227879714278,54.796614014918575],[-121.52091036665733,54.79182398526183],[-121.51964655277438,54.78713705751945],[-121.52075950803562,54.78341639598239],[-121.52306998660187,54.780304855435865],[-121.52402134658654,54.77847235580581],[-121.52468481601221,54.77670118743832],[-121.52589819961516,54.772912346512726],[-121.52563521136832,54.76976995412321],[-121.52264907993091,54.768817448179384],[-121.51786469337318,54.7663361282091],[-121.5144878721081,54.76567437010491],[-121.51071779855816,54.76489941180353],[-121.50634610174063,54.76321364632667],[-121.50214206632155,54.760438681610665],[-121.4995404648251,54.75827879640522],[-121.49525299532108,54.75682907463329],[-121.49335252793433,54.755529578976436],[-121.49459782456611,54.752882185108646],[-121.49639088236414,54.74880959124083],[-121.49641816162175,54.74504032571313],[-121.49445547571786,54.740363254121334],[-121.49033715655509,54.73628028426734],[-121.48555328210581,54.73356410862824],[-121.48015644503126,54.73005314978585],[-121.47804766655665,54.728117296413224],[-121.47523333131099,54.725796326718324],[-121.4764807698495,54.7235531437866],[-121.48017237276535,54.72050223984713],[-121.47981527253255,54.71655717913536],[-121.47843304578328,54.71159587176232],[-121.4805324255019,54.70757069217826],[-121.48323183531343,54.70361245618492],[-121.48650239621102,54.69913656714204],[-121.48829455413849,54.69477683429717],[-121.49275423047403,54.691089619230375],[-121.49959794348128,54.687956531466014],[-121.50698291539928,54.68739232950594],[-121.5149488949968,54.686076932065866],[-121.51786966245103,54.68388562714479],[-121.51699565968698,54.679087062085216],[-121.51687192122773,54.678229752426944],[-121.51805779022426,54.67325510545219],[-121.52138287274468,54.671626105212695],[-121.5213176067331,54.66853574218635],[-121.5232576708849,54.66703565544397],[-121.52243637673254,54.665156476785825],[-121.52280517095498,54.66350027909894],[-121.5245215733218,54.66091481577892],[-121.52269519121624,54.65840648425422],[-121.5223055633546,54.65841020960503],[-121.51910434947092,54.65580671352806],[-121.51994902944168,54.6535036361802],[-121.52574995144299,54.65284474002112],[-121.52254678401616,54.65040283340931],[-121.51866985192058,54.648429919186306],[-121.51330782629968,54.64651921669597],[-121.50744788495578,54.643764144661105],[-121.50734259465275,54.64358972572807],[-121.50594866626746,54.642398566155094],[-121.50552073250245,54.6411979315075],[-121.50609830982364,54.640052121847326],[-121.50292824516123,54.639163831486954],[-121.50004941680035,54.63803479538611],[-121.49990986116197,54.63563284109226],[-121.49867371559897,54.633298330386154],[-121.49490575304053,54.6314901477751],[-121.49073591893337,54.629801702082354],[-121.48962314016507,54.628046140204056],[-121.49096604837085,54.62603086579769],[-121.49467934355945,54.62452469280353],[-121.49574859762878,54.623998462967016],[-121.494234627266,54.62235386928851],[-121.49158459911251,54.617336987529974],[-121.48865876533446,54.61341403431356],[-121.4832863907362,54.610244622918884],[-121.47874364336323,54.60969995777985],[-121.470689489021,54.610389826985624],[-121.46625468138951,54.61041424881777],[-121.46045256765846,54.610567379437384],[-121.45722047048355,54.6111028695314],[-121.45395227505747,54.610146707178814],[-121.45253695228217,54.60861290462058],[-121.45484517721961,54.60534109174046],[-121.45676827716976,54.60287189028534],[-121.453863152934,54.59991825541268],[-121.45026657813297,54.59633735839167],[-121.4487418429759,54.59411714120314],[-121.44804049392187,54.59315741841988],[-121.44516234971535,54.59150624892358],[-121.441469478567,54.58907953749869],[-121.44122114805612,54.585874326340466],[-121.44342413469509,54.58242824198346],[-121.44417420076513,54.58002329012981],[-121.44214565827073,54.576895427518586],[-121.44104493298329,54.576037475196756],[-121.4378737756991,54.574518796805094],[-121.43301986650424,54.57248835126195],[-121.43034527083687,54.57153562042735],[-121.42965061352578,54.57107875101829],[-121.42932469825303,54.57107555308402],[-121.43021974478421,54.569810612281806],[-121.43048688854135,54.56978355827803],[-121.43086757645884,54.56974840026767],[-121.43123317373006,54.56967452306116],[-121.43158373868852,54.569578761861216],[-121.43192057998357,54.569466776626996],[-121.43222317373954,54.56933106804632],[-121.43245328127793,54.56914888713448],[-121.43267022414,54.56896284781005],[-121.43287038449425,54.56877057069855],[-121.43216961658136,54.5680385500428],[-121.39999633553415,54.5343782157326],[-121.39873808823025,54.53305824845819],[-121.39899275592931,54.53288154503205],[-121.39915609535791,54.53265426978045],[-121.39925489615108,54.53251771011328],[-121.399429196761,54.53229645833522],[-121.39958424142243,54.53200490339084],[-121.39963653021631,54.531816092522206],[-121.39975686542235,54.53164330953948],[-121.39987795397117,54.53146382145195],[-121.39998574807038,54.53136800009228],[-121.400032985215,54.531310299786476],[-121.4000714881251,54.53126124857862],[-121.4001806641273,54.53115313457466],[-121.40021750581104,54.53101536474483],[-121.40023163227343,54.53090704020602],[-121.40022505516454,54.5308102810082],[-121.40023315364208,54.53061756245029],[-121.40029236521696,54.530418911923306],[-121.4003581535304,54.53031702056128],[-121.40048865791125,54.53019175341099],[-121.40058765323508,54.53003612244586],[-121.40067540013017,54.529911490520306],[-121.40084605091836,54.52977426711486],[-121.40108074057531,54.529602419717044],[-121.40132848164077,54.52940076287476],[-121.40149102311256,54.52926660027368],[-121.4015846234888,54.5292106439741],[-121.40170332428856,54.52910400953544],[-121.40188417784209,54.528979513295724],[-121.40201621272271,54.52880604663983],[-121.40203041224349,54.528679769178794],[-121.40210071708479,54.52853764686477],[-121.40221983870696,54.52844449459528],[-121.40237838391452,54.52831130293356],[-121.40267233715456,54.52819891602377],[-121.40293666479225,54.52803940281738],[-121.40311730616607,54.527933974918305],[-121.40332007717394,54.527821523550564],[-121.40341530478797,54.527751038323906],[-121.40338663784117,54.52767813765023],[-121.40341408759397,54.527502980603856],[-121.40345834384536,54.527350900194605],[-121.40351624867708,54.527198210892564],[-121.4035638655551,54.527050745766275],[-121.40360417910539,54.52691647265835],[-121.40365616153314,54.526764682802735],[-121.40378006524269,54.5266806869799],[-121.40388494877291,54.526610564659926],[-121.40404762617453,54.5264404932351],[-121.40418867502287,54.526272974943694],[-121.40419683157387,54.52606230330617],[-121.40424607735208,54.525900310358686],[-121.4043119261419,54.52578046411477],[-121.40437852806079,54.525653912817596],[-121.40453033280495,54.525511487701834],[-121.40467192694828,54.52535633400595],[-121.40482255119447,54.525207130860814],[-121.40501449556251,54.52505274789967],[-121.40512567983994,54.524891961452155],[-121.40529838086317,54.52471889898838],[-121.40541705897303,54.524612260876545],[-121.40555269727366,54.52449279363264],[-121.40576902358669,54.52431127078692],[-121.40590064259301,54.52422756328812],[-121.40603028058233,54.52412694783591],[-121.40612434440145,54.52401489492992],[-121.40621218707528,54.52388914141864],[-121.40633030945192,54.52377013723675],[-121.40644910764837,54.523662380603916],[-121.40662964411996,54.5235749001475],[-121.40682753797138,54.52352286079104],[-121.40700002413193,54.52336886609241],[-121.40710563512721,54.52306759092593],[-121.4071947056725,54.522879038550926],[-121.40725135742775,54.5227891455225],[-121.40732677463691,54.522687613309465],[-121.40735038539316,54.522615556217126],[-121.40739398967959,54.522555472781995],[-121.40749349158489,54.522412201222586],[-121.40754071211013,54.52226808696251],[-121.40755835665422,54.522093683363025],[-121.4075221881203,54.521966635104796],[-121.40743373967716,54.52183874417093],[-121.40724301783983,54.52165426469491],[-121.40713382491509,54.521521104886546],[-121.40701592942766,54.521361806704846],[-121.40677138322914,54.521086647496965],[-121.40656255798218,54.520873430585],[-121.40631149083663,54.520656380732405],[-121.40610121264886,54.52047340828334],[-121.405944664449,54.520347444535375],[-121.40590759557259,54.52026300620595],[-121.40586508830552,54.52012337437323],[-121.40581264417523,54.52002040231394],[-121.40579609815168,54.51990867994322],[-121.40578879277085,54.51969742699596],[-121.4057741175969,54.51943090791533],[-121.40580975155378,54.51928635850482],[-121.40590771657229,54.51919128613534],[-121.40610546464201,54.519140365417414],[-121.40639590419103,54.51904130685477],[-121.40672620616056,54.5188809016423],[-121.40706064675537,54.51868361781961],[-121.40739315263315,54.518486260476884],[-121.40810064418206,54.51817955105798],[-121.40865784499367,54.517950234900475],[-121.40946459948258,54.51777854822166],[-121.41030774675889,54.517766456646264],[-121.41081100345195,54.51767201580136],[-121.41118392160854,54.517563700139625],[-121.41155916873775,54.51741731541994],[-121.41178418290626,54.517192343872],[-121.41183268697246,54.517053887930786],[-121.41177922891299,54.51695985847472],[-121.4116656971882,54.516882650729556],[-121.41153011708322,54.51679451486157],[-121.41137228902012,54.51671452102568],[-121.41120851481338,54.51658380374677],[-121.4110967404481,54.51649095031332],[-121.41095943148024,54.51638367103699],[-121.41085638685936,54.51628216746813],[-121.41070443101952,54.51618443768176],[-121.41050459167481,54.51604675348499],[-121.41037501126851,54.515939763748634],[-121.41027512856814,54.515775533995196],[-121.41020960915998,54.51556433955208],[-121.41005645083533,54.515235386049575],[-121.40999805738366,54.51508169240144],[-121.40989446651378,54.5149678228317],[-121.40982674336244,54.5147935785507],[-121.4098561379429,54.51454891641179],[-121.41012907790324,54.51438073750655],[-121.4102251389183,54.51421601318002],[-121.41024382070972,54.51396309302022],[-121.41013385684069,54.51352578436305],[-121.40985615442563,54.513304373212165],[-121.40949962508009,54.513111421624686],[-121.40922135184717,54.51291243178548],[-121.4090373839434,54.51282359632331],[-121.40889146413791,54.51275863488068],[-121.4087686954225,54.512642921042875],[-121.40864532612395,54.512498006680275],[-121.40851044391614,54.51242111507945],[-121.40835798270115,54.51227622919223],[-121.40815596194498,54.51217549145728],[-121.40777050920555,54.511946658026176],[-121.40747022971165,54.511788358631435],[-121.40731716945494,54.51170068214411],[-121.40707537954299,54.51155692498586],[-121.40684751327223,54.51137553513419],[-121.406615682592,54.51124674030997],[-121.40647102708644,54.51117060089123],[-121.40631742050199,54.51107055795083],[-121.40607531005676,54.51094698654644],[-121.40582417292057,54.510817464003864],[-121.40567884432032,54.51073007595253],[-121.40556524433396,54.510619192025],[-121.40546054748211,54.51051537618067],[-121.40526885439718,54.51037462131569],[-121.4050486209597,54.51024625930286],[-121.40482525075453,54.510145834533006],[-121.40462126997562,54.5100281830615],[-121.40439838559665,54.509871664301826],[-121.40419589560929,54.50968897886594],[-121.40407475168945,54.50959352065655],[-121.4038846220939,54.50945618877001],[-121.40371685302529,54.50939600943449],[-121.40355380797713,54.50927652946812],[-121.40331284654836,54.50914289502143],[-121.40316610047405,54.50905096128076],[-121.4030448827439,54.50897345477569],[-121.40289477810815,54.50887690535349],[-121.40276057737032,54.50875963188681],[-121.40258109955094,54.508562098095766],[-121.40223508564331,54.50832799558874],[-121.40201490420954,54.50816484010659],[-121.40176321589675,54.50805773192005],[-121.40156181333691,54.50793456048347],[-121.40133127488703,54.50779458054946],[-121.40120028384538,54.50771782622491],[-121.40108959359576,54.5075812355345],[-121.400985967456,54.50748531102781],[-121.40081483725837,54.50736888907713],[-121.40068245273758,54.50725280350913],[-121.40056109194929,54.507073165607935],[-121.40042226100957,54.50685920271957],[-121.4002918297526,54.50665677824405],[-121.40010267220914,54.50644204195395],[-121.40001404218347,54.50636800357063],[-121.39995030917758,54.50631398069352],[-121.3997521875986,54.506161751208815],[-121.39970497458097,54.50602979400133],[-121.39959054525873,54.505840315756764],[-121.39941137137696,54.505743788662095],[-121.39916337103016,54.50551785635881],[-121.39899036917016,54.50541819433047],[-121.39885664788376,54.5052796112752],[-121.39876694858185,54.50509443028977],[-121.39869199979258,54.50498499460244],[-121.39852936399613,54.50486215535676],[-121.39839506321886,54.50474599452807],[-121.39826085421045,54.50466350403497],[-121.39808977836833,54.50451229023515],[-121.39789867646886,54.504332265705024],[-121.39771473649827,54.504278201086684],[-121.39748558905802,54.50421233255116],[-121.3972765046484,54.50414048619149],[-121.39707253975484,54.50405761001204],[-121.39682088959272,54.50395049158812],[-121.39663412431186,54.50380092859565],[-121.39635290597369,54.503560270681405],[-121.39620319770064,54.50335711399687],[-121.39606503082653,54.50313755854952],[-121.39588556538773,54.50292317951488],[-121.39573452296014,54.50274914996068],[-121.39548635385998,54.502542280341345],[-121.39533393829538,54.502432165999906],[-121.39520296169245,54.50225215869529],[-121.39509066440307,54.50207846667545],[-121.39493065462001,54.50196694314893],[-121.39473693718556,54.50181038104365],[-121.39456467244382,54.50168717246571],[-121.39435488342201,54.50153561480952],[-121.39416385563148,54.5013724196132],[-121.39394369998675,54.50119241417397],[-121.3937424368349,54.50105127698231],[-121.39346524621327,54.50086126371922],[-121.3932424977506,54.500721559666836],[-121.39300053122551,54.50061479744417],[-121.39286689318203,54.50054466625398],[-121.39267206168967,54.50044978156152],[-121.39251844629496,54.50036767388043],[-121.39239588677792,54.50025082589767],[-121.39227387107015,54.50009471980376],[-121.39221405903443,54.500006050512035],[-121.3920967438527,54.4998254321957],[-121.39179211798854,54.49956928927456],[-121.39160681086905,54.499269391512925],[-121.39152693376587,54.499031828523556],[-121.39134277006418,54.49887674271695],[-121.39116901749827,54.4987669392253],[-121.3909851930936,54.498643288408694],[-121.39075188763105,54.498442579389724],[-121.39059488257539,54.49828739502625],[-121.34071713552498,54.49097497761964],[-121.1997453659312,54.45472236688214],[-121.17455705119326,54.44822047863594],[-121.1615493918998,54.40024351381978],[-121.00000592726954,54.408470969820414],[-120.89956806335617,54.41347569733991],[-120.90019360695696,54.43170796873094],[-120.90019704293914,54.431820391586676],[-120.9355516753243,54.44937899451148],[-120.93592640657451,54.44940353929933],[-120.9362080419435,54.44950730021862],[-120.93651978474274,54.449727953443094],[-120.93672293573005,54.44987111836213],[-120.93692936747449,54.45008178382292],[-120.93710827670118,54.45026436026727],[-120.93721808798585,54.45041038528353],[-120.93731772189885,54.45052904176051],[-120.93745797043375,54.45064826151488],[-120.93765603728279,54.45078559974377],[-120.93783884028561,54.450874025964126],[-120.93799837670032,54.45096260881758],[-120.93815350669209,54.45105549950166],[-120.93834483436292,54.45118469748487],[-120.93859067917155,54.4513273853035],[-120.93877265329839,54.45143823039271],[-120.93892034800795,54.451544284272195],[-120.93904863067401,54.45165065506323],[-120.9392071967126,54.451778491807865],[-120.93936012414147,54.45188925317631],[-120.93951744989046,54.45202714264343],[-120.93960193613471,54.4521900778844],[-120.93972263172799,54.452357883765096],[-120.93975177815479,54.45249831316238],[-120.93990772279993,54.45266309044956],[-120.94008116366376,54.45279603392683],[-120.94032193603348,54.45291717502952],[-120.94049813925476,54.45302777760103],[-120.9406803977201,54.45315210397212],[-120.94083251059948,54.45325384737838],[-120.94093902298629,54.45345811372924],[-120.94108423431372,54.45363142580206],[-120.94117066597705,54.45376300350181],[-120.94125349836307,54.45397077811678],[-120.94132296407149,54.45422403051165],[-120.94136794803305,54.454377466264226],[-120.94136843467737,54.454624489140954],[-120.94138215102531,54.45482715118024],[-120.941395571206,54.45511063815501],[-120.94158612013145,54.45516794215859],[-120.94159100733066,54.45544209320282],[-120.94163076252576,54.45559082090456],[-120.9417062725437,54.45592066973383],[-120.94169769048115,54.4560999520084],[-120.94165618358876,54.4563418648441],[-120.94158700630155,54.45655680705146],[-120.94147156293965,54.45676983032292],[-120.94133891904531,54.456933862325805],[-120.94133130108139,54.457105325433346],[-120.94135589870692,54.45729833402893],[-120.94143115396113,54.45755182608568],[-120.94149321187525,54.45772393350261],[-120.94156946266756,54.457859579122385],[-120.94167516675464,54.45805482859124],[-120.94179162248238,54.45821010523128],[-120.94200432338795,54.458401932439216],[-120.94219900871447,54.45850431583286],[-120.94234013020629,54.45860110954716],[-120.94267978877285,54.45883188194009],[-120.94286921811708,54.459055301760436],[-120.94307641738811,54.459260371415255],[-120.94335097225063,54.45939076424711],[-120.94370525426308,54.45955028440619],[-120.94394856273085,54.459635593727754],[-120.94449411348674,54.459846826476486],[-120.94494327836547,54.46003834368845],[-120.94527692208698,54.4601610759647],[-120.94570117166872,54.46033471656825],[-120.9459710613344,54.4604559276662],[-120.94625445238752,54.460546260980436],[-120.94665117192152,54.46069181171899],[-120.94699639361112,54.4608150185194],[-120.9471999209859,54.46087734086387],[-120.94751044653601,54.46096767232455],[-120.94778117429018,54.46106645911279],[-120.94810878288588,54.46111258728455],[-120.94846214178807,54.4611856037655],[-120.94876648143058,54.46120045273706],[-120.94928743191923,54.46134440238584],[-120.94952484194187,54.46141485994287],[-120.94991814046786,54.46152545299551],[-120.95021118744144,54.461616176219316],[-120.95054692661209,54.4617064205332],[-120.95078475413254,54.46177352456205],[-120.95104516723114,54.46184605386781],[-120.95140514777749,54.46192831724638],[-120.9516643235827,54.461995180302445],[-120.95186125368306,54.46204823948499],[-120.95214659660488,54.4621072025711],[-120.95247008754849,54.462202548014105],[-120.9527869695252,54.46228863727606],[-120.95314089848658,54.462388608426515],[-120.95347678754115,54.46246200948726],[-120.95371820689188,54.462578655871155],[-120.9539223068107,54.46269937153301],[-120.95427844802676,54.462844339566665],[-120.95465359586716,54.46297661991804],[-120.95491967105377,54.463066215379946],[-120.95537607642949,54.46319960857596],[-120.95563540574832,54.463281064324434],[-120.95600325947811,54.46337823418754],[-120.95574407786486,54.463421407473085],[-120.95302057201812,54.46386787193745],[-120.94516960176455,54.46291406276704],[-120.94093307463572,54.460187567859094],[-120.93866053187156,54.45624902037635],[-120.93609087894552,54.452711243289194],[-120.92932209545648,54.45129824897199],[-120.926190593993,54.453305725736776],[-120.92119924629105,54.454059041637166],[-120.91629978678006,54.454070473548796],[-120.91228905881559,54.45653499541063],[-120.9102410725026,54.45779687309463],[-120.90189693894575,54.45832863193626],[-120.88778151654341,54.45864500691473],[-120.88063092353109,54.4605367942465],[-120.87652171964201,54.463517106998026],[-120.87684181866607,54.467402004616275],[-120.87772537787775,54.47112192282083],[-120.87540424065163,54.47665646731354],[-120.87442950453362,54.47923841333327],[-120.87444036868105,54.48398162292349],[-120.87544570262982,54.48809290170471],[-120.87221457954334,54.491469349777695],[-120.85945553860012,54.49040269645005],[-120.85454729691445,54.48995334992271],[-120.84855648377993,54.48997012977275],[-120.83993382013554,54.49129465947738],[-120.83629630385018,54.492209783085734],[-120.82845989068521,54.49393509712378],[-120.82647424918837,54.494222622957246],[-120.82632627484043,54.49402771005644],[-120.82535997024647,54.493371419542605],[-120.82484247984524,54.49283183907356],[-120.82422613143734,54.49239922772578],[-120.82387944036037,54.49207349203066],[-120.82344708746,54.49164306403991],[-120.822470601562,54.49114463886773],[-120.82176249729162,54.49076314119072],[-120.82132489064222,54.49043578528824],[-120.82089244046375,54.4900064650245],[-120.82044469912782,54.48983587730236],[-120.81992145925496,54.4894038228318],[-120.81965977274936,54.48918835318101],[-120.8191513427457,54.488486310738345],[-120.8182653619442,54.48799393396733],[-120.81682744346209,54.48764878780993],[-120.81601426292266,54.48753115693826],[-120.81539191831955,54.487254318726016],[-120.81422186547185,54.48696880273259],[-120.81342059852528,54.48663494398085],[-120.81235872657352,54.486031739184355],[-120.81229912743218,54.485446429949775],[-120.81232752720318,54.48491651393554],[-120.81235592623993,54.48438659786911],[-120.81238432454245,54.483856681750666],[-120.81213992355065,54.48332190587008],[-120.8118056081921,54.482731653819975],[-120.81146441114596,54.48230280303687],[-120.81113204246259,54.481712631051785],[-120.81006946018887,54.48116214444988],[-120.80899600683895,54.48077400347394],[-120.80756963270842,54.48021812200096],[-120.8064997410336,54.47977171827254],[-120.80533736256672,54.479382002930855],[-120.80481203396884,54.4789991889455],[-120.80328169362718,54.47865217537705],[-120.80256260366512,54.478482308179395],[-120.80181881194855,54.47791163327585],[-120.80013427464203,54.47774104035984],[-120.8000007873102,54.47773872015822],[-120.79962360845833,54.477731628132915],[-120.79880725764636,54.477717043753515],[-120.7982504145703,54.47756754063834],[-120.797627986446,54.477201887281375],[-120.79699468272106,54.47698286658546],[-120.79640153799514,54.476783521482204],[-120.795770601706,54.476561226133526],[-120.79514210348265,54.476243584410184],[-120.7947960039189,54.47593124982738],[-120.79454175152642,54.47541509537043],[-120.79455225948671,54.47522577280445],[-120.79442470925017,54.4746128391885],[-120.7942023608222,54.474257497183984],[-120.79392039602473,54.47350210202407],[-120.79343687600748,54.47279200352736],[-120.79295714847925,54.47196079021662],[-120.79258459834386,54.471414876029925],[-120.79268594484796,54.470679205882846],[-120.7929111277783,54.47018912390076],[-120.7935074213669,54.469616065401176],[-120.7947128206718,54.46888708638088],[-120.79605619156905,54.46862774267105],[-120.79698573579876,54.468528153497],[-120.79792383720824,54.468056118877534],[-120.79887463478181,54.46768231167257],[-120.79952299566102,54.46744607305894],[-120.80000052299758,54.4672575710521],[-120.80047433194562,54.46706778596358],[-120.80053165445422,54.466799610616384],[-120.80051411728729,54.466327245361015],[-120.80076610754081,54.465594627119806],[-120.80115722380175,54.464590582519264],[-120.80129700219368,54.4635814394974],[-120.80232145564806,54.46261112280468],[-120.80313941229738,54.46236637570942],[-120.8046762109905,54.46135948123234],[-120.80574055758014,54.460440247981936],[-120.80588610041893,54.459323552049376],[-120.80522862372385,54.45815131870662],[-120.80488494504634,54.45745395832516],[-120.8048373204558,54.45721836717035],[-120.80471726942903,54.45663720717707],[-120.80494247456544,54.45558004963248],[-120.80477718546453,54.45471399224457],[-120.80511513278176,54.45392888710465],[-120.80563796259678,54.452877670511356],[-120.80656844552303,54.452095344207116],[-120.80680937011435,54.45155538667942],[-120.80687814996755,54.450249020470196],[-120.80674587022551,54.449580878365886],[-120.80569901090608,54.448577332259525],[-120.80462564540356,54.447263848345486],[-120.80522064767993,54.4456430329813],[-120.80468463415272,54.44459947813391],[-120.80387781349455,54.443843068921616],[-120.80379856371897,54.44295596885949],[-120.80365952793063,54.442387469588944],[-120.80373530066987,54.441759629396415],[-120.80405205226566,54.44137000938874],[-120.80390587762054,54.440949428725276],[-120.80392608102791,54.44057636406567],[-120.80419168037626,54.44036085902647],[-120.80451793466614,54.43977401302223],[-120.80501726378674,54.43916647006771],[-120.80545995026745,54.43880691834485],[-120.80614841725746,54.43857125064265],[-120.80679998285753,54.43825989603651],[-120.80711520708623,54.437897154696216],[-120.80780633888573,54.43764025715652],[-120.80783148373126,54.43718206356599],[-120.80776275338131,54.43688381409777],[-120.80731741300767,54.436485303904],[-120.80675189598695,54.43598061067683],[-120.80668895001983,54.435606249499344],[-120.80654321918387,54.4351362832219],[-120.80653663492585,54.434470123872586],[-120.80635461745503,54.43395032619857],[-120.80632160317799,54.43375241209209],[-120.80618508226512,54.43313349163534],[-120.80609479329524,54.432440183810826],[-120.8056666444457,54.43175381184493],[-120.80561175342301,54.431209111593326],[-120.80521255435899,54.430783360964604],[-120.80467660475938,54.43050449377278],[-120.80431144315301,54.43022279898706],[-120.80412607358969,54.42972980233971],[-120.80393889548122,54.429281644172775],[-120.8035716820274,54.4290009818523],[-120.80296493109427,54.42848664549716],[-120.80296078659421,54.42777117891068],[-120.8027859865034,54.427103456514665],[-120.80243515529715,54.42652591837647],[-120.80216003446748,54.426130150109024],[-120.80188948335989,54.42565260377894],[-120.80160870176555,54.42537786612184],[-120.80147452030118,54.42471075007779],[-120.80162647114695,54.42424561177979],[-120.8015903855429,54.423354730417174],[-120.80165478547377,54.42293863368853],[-120.80166219244929,54.422681804075374],[-120.80127158147728,54.42231142346287],[-120.80095559545116,54.4220396725828],[-120.80060592175032,54.4216519465686],[-120.8002898035009,54.42138131079404],[-120.80000181676407,54.4210568520556],[-120.79993892449752,54.42098791633411],[-120.79941244167783,54.420834065550416],[-120.79872307608875,54.42060588461638],[-120.79843710859016,54.4205554978226],[-120.79803280863392,54.42040011917413],[-120.79779264727786,54.420278697171064],[-120.79763646300577,54.42010583761776],[-120.79753088076075,54.419793651551466],[-120.7974654325691,54.419455106230714],[-120.79715710355235,54.41906239575825],[-120.79683864052323,54.41884105714047],[-120.7966462353007,54.41857232429802],[-120.7966637401264,54.41823619789051],[-120.79655725980531,54.41794643027016],[-120.79641396213128,54.41753493822185],[-120.79615044562438,54.417048690298294],[-120.79604397200517,54.416758922167354],[-120.79573314638074,54.41641663098349],[-120.79517504629403,54.41602447282573],[-120.79477947256026,54.41572459747523],[-120.794257289888,54.41547657932362],[-120.79402103815372,54.41527895678512],[-120.7937484263273,54.414986577691074],[-120.7933436314599,54.41483565077326],[-120.79309794267068,54.41480381464866],[-120.79293553548457,54.414756448064296],[-120.79256619270514,54.41472269428164],[-120.79223969734889,54.414671681376106],[-120.79179102883272,54.414591863191006],[-120.79137918677026,54.41455741170194],[-120.7910489423387,54.41455115202447],[-120.79076119968799,54.414545585925055],[-120.79064129784857,54.41449891074233],[-120.79056223797379,54.41442029428484],[-120.7904050691421,54.414301281169045],[-120.79024236503655,54.41422582503938],[-120.78987678235694,54.41414730673134],[-120.78946869990996,54.41406809241997],[-120.78913994188089,54.414034940819],[-120.78877288059638,54.41398330595517],[-120.78812003735025,54.413849822450274],[-120.78799638541761,54.4138479009837],[-120.78742138394529,54.41378736524994],[-120.78713442043458,54.41376048810425],[-120.78668499827192,54.41370195362785],[-120.78631418610463,54.41369506764368],[-120.78618813478016,54.41374245039991],[-120.78573573060343,54.41370736620272],[-120.7854870853574,54.4137292881776],[-120.78578770577205,54.41354227473807],[-120.786001980573,54.41337963821073],[-120.78613614681706,54.41316191814186],[-120.78619729307005,54.412802952790045],[-120.78625589641014,54.41249441029575],[-120.78630698522886,54.41227538031198],[-120.78632275574064,54.412014413358705],[-120.78657710450587,54.41187145817822],[-120.78704721190519,54.41156929698431],[-120.78826368802056,54.411182285267984],[-120.78868930644644,54.410925377938064],[-120.78907540334136,54.41064432020729],[-120.78872127043796,54.41032373509258],[-120.7885833144011,54.40984059013618],[-120.7884410394312,54.40940666874749],[-120.78837281380811,54.40916681255471],[-120.78826928465368,54.408778342572624],[-120.78865776091209,54.40844797991041],[-120.78916732764785,54.408169959408866],[-120.78950413958573,54.40803277308512],[-120.78957095368949,54.40755277397298],[-120.78917733061589,54.40720804122618],[-120.78898263382945,54.40698860190204],[-120.78859080419667,54.40664506643886],[-120.78835899842213,54.40635217083772],[-120.7879400027419,54.40572000126311],[-120.78775582475551,54.405280915887715],[-120.78757824534279,54.40477473682191],[-120.78739705739515,54.40431219697758],[-120.78709499714127,54.40378047629415],[-120.78667181770741,54.403242446995826],[-120.78652041620197,54.403002396930674],[-120.78612686233814,54.402657654051424],[-120.78560354132745,54.402405048474975],[-120.78503726219385,54.40220113274886],[-120.78455001298745,54.402075834970795],[-120.78382196642043,54.40182006813172],[-120.78333967286063,54.401595036432006],[-120.78239444466101,54.40155566675346],[-120.78161536256448,54.40144255776124],[-120.7809226165909,54.401335389466226],[-120.7800328916829,54.40098171168007],[-120.77943226792355,54.40068309194985],[-120.77883406088911,54.40033516321601],[-120.77855803441166,54.400086388695],[-120.77850311780894,54.40000093663459],[-120.77840669195521,54.399846328421155],[-120.77826378147626,54.3994336968562],[-120.77807399751183,54.399115627750106],[-120.77780011741424,54.39885009885619],[-120.77770288842105,54.39836755700631],[-120.77767679276074,54.39810142411551],[-120.7775293613677,54.39778516993781],[-120.7775328332277,54.39771232773477],[-120.7774168102725,54.39754452547751],[-120.77726045533534,54.39741991086386],[-120.77714018364011,54.397346253031046],[-120.77689886325217,54.39722023949976],[-120.77653678872464,54.39706995562906],[-120.7763761029336,54.39699456332977],[-120.77577030686842,54.39676756813328],[-120.77528087358357,54.39666010261627],[-120.77471231217773,54.396505444745785],[-120.77446796041896,54.39647923777872],[-120.77335691929468,54.39643604571228],[-120.77273828722157,54.39644654794257],[-120.77252923233537,54.39649259784538],[-120.77220013747076,54.396508789065926],[-120.77136818361852,54.39665947785317],[-120.77090965219239,54.39674983704141],[-120.77029087233305,54.396761443691965],[-120.76942069162058,54.39681727312783],[-120.7687280554669,54.396710035499915],[-120.76798481949456,54.39669607054946],[-120.76749248922152,54.39668726817608],[-120.76699823460194,54.39667838110811],[-120.76642108174788,54.3966670520697],[-120.76583801333938,54.396777867990856],[-120.76504231078606,54.39702327834675],[-120.76470814645886,54.397094256529286],[-120.764039811859,54.397296849660016],[-120.76353934422207,54.39738201005855],[-120.76320331832211,54.39749782257443],[-120.76294426810871,54.39770790431741],[-120.76219515662353,54.39786097284103],[-120.76190318204576,54.39790456162602],[-120.76182206331312,54.397903318142966],[-120.76120083450502,54.397964184398504],[-120.76070413627491,54.3980045775342],[-120.759871115222,54.39813268585677],[-120.75908342817728,54.39823915763406],[-120.758590658308,54.39820335003978],[-120.75813887158472,54.39819513274236],[-120.75772964947305,54.39814158171259],[-120.75719196402022,54.39815436812219],[-120.75682902184857,54.39802644497038],[-120.75592782795219,54.39791576883419],[-120.75522612599126,54.397924851914496],[-120.7553429917029,54.398070256091074],[-120.75564983118964,54.39848549281508],[-120.75563185634353,54.398822731328664],[-120.75561739204,54.39908712826112],[-120.75551988149165,54.39935019461801],[-120.7554310310808,54.39946989430934],[-120.75525970503725,54.39958379594221],[-120.75496326624307,54.39972262879998],[-120.75495989705414,54.39979435351662],[-120.7549497299101,54.39996460645432],[-120.75493553481749,54.39999992997492],[-120.75485657446592,54.40017844957814],[-120.7546035491474,54.40029556935643],[-120.75429937044561,54.40055534792342],[-120.75416808581934,54.400719260696825],[-120.75395576024229,54.40083588660064],[-120.75374329055946,54.400953628943526],[-120.75360763938711,54.40116676370922],[-120.75342612738295,54.40145091550823],[-120.7531712229526,54.40161287055915],[-120.7531161786708,54.401876642418934],[-120.75302295194217,54.402045562876744],[-120.75284486231381,54.402302910322575],[-120.75245952997615,54.4025614346994],[-120.7522833028021,54.40277394305446],[-120.7516846840859,54.40317150665305],[-120.75125102954173,54.403550349125226],[-120.75085985701182,54.40392989839759],[-120.75079762317472,54.404310148886864],[-120.75061119360076,54.404692907197045],[-120.7502273321012,54.40492453808176],[-120.74997088600696,54.40511337266218],[-120.74966871028026,54.405372105619605],[-120.74927464501081,54.40577398578916],[-120.74880826629663,54.40603012978352],[-120.74830075492032,54.40625979325029],[-120.74787056177094,54.406565782244726],[-120.74739439438495,54.406988822510634],[-120.74704861507439,54.40727037518178],[-120.74666240547518,54.4075501832696],[-120.74623735360349,54.407785641883414],[-120.74552193553797,54.40808156659126],[-120.74431817784489,54.40823064350484],[-120.74386450182237,54.40822117349695],[-120.74352076050675,54.408229921942954],[-120.74332860515078,54.408233981853414],[-120.74270719269033,54.40829475381555],[-120.74204342719392,54.40835369439318],[-120.74117676818975,54.40836456729881],[-120.74076695619043,54.40833002810157],[-120.74010944910981,54.40829489806161],[-120.73952954151166,54.40833386380131],[-120.73874312107625,54.40841331786908],[-120.73803372028271,54.40857133430248],[-120.73724483399906,54.4087000838507],[-120.73645360911794,54.40880177578505],[-120.73603381384754,54.40896555790937],[-120.73545214946043,54.40904822541991],[-120.73503194002085,54.40918503476731],[-120.73453276212973,54.40927350954704],[-120.7341671303053,54.40936214098005],[-120.73344606182671,54.409716150916466],[-120.7325208453405,54.40953464638395],[-120.72399692992065,54.40633576220813],[-120.71704048516555,54.4035995294073],[-120.70872473867807,54.40132488472791],[-120.70676387192492,54.401042016522716],[-120.70108928202946,54.39966321299436],[-120.69403861060812,54.396238641558725],[-120.68972405701936,54.3920165737511],[-120.68345660582709,54.38722387874688],[-120.68062429898298,54.38447668650554],[-120.67484685496991,54.37974079855265],[-120.6692716351752,54.37488764841021],[-120.66546983735584,54.37127994342441],[-120.66351124673801,54.368256084105106],[-120.66184329816505,54.36442732592424],[-120.65901509465112,54.360601502457506],[-120.65658200485811,54.358140655284444],[-120.66284138605138,54.35425553913997],[-120.66958996510354,54.35111934637753],[-120.67809404971837,54.35065619057324],[-120.68572286451146,54.351456956490736],[-120.6940454538343,54.35048163615369],[-120.6994255882103,54.346421711134774],[-120.69687933638473,54.34087515551454],[-120.69482874953614,54.33819819802538],[-120.69326239112237,54.33488646626226],[-120.69483205438834,54.330992841883436],[-120.69150382232874,54.32780182122067],[-120.6855342259306,54.32579797906418],[-120.6833907598694,54.322775281587745],[-120.69228484902467,54.318887404854685],[-120.70293922005708,54.31499483293488],[-120.70244137850085,54.3145418806943],[-120.70469574415696,54.310597175134944],[-120.7103548483098,54.30768118902722],[-120.71807947542372,54.305393846075795],[-120.72403990961115,54.303847007429],[-120.72940873983816,54.30040552739261],[-120.72480810102314,54.29629770469045],[-120.72061276218356,54.29481271495622],[-120.71367254293115,54.29522061411745],[-120.7038103556464,54.29505152977011],[-120.69551597301333,54.293863000725665],[-120.68896988466281,54.28906668228849],[-120.6833957322223,54.28500431528638],[-120.67978907876588,54.28364240455313],[-120.66973463996065,54.284737841364816],[-120.6612319151022,54.28707771563535],[-120.65429312327184,54.288901872812005],[-120.64697171714053,54.28867819529397],[-120.63954684878298,54.286050502195465],[-120.636628311913,54.28439416613517],[-120.63409574348019,54.28250322436856],[-120.6297915413393,54.28164802699891],[-120.62510037318008,54.28576231519095],[-120.62401216733683,54.29113220627252],[-120.62557795784383,54.29415762794693],[-120.62234996774639,54.29250522844448],[-120.61678543567736,54.2912433678968],[-120.61093055607334,54.290902824633726],[-120.60528021540921,54.2894748677904],[-120.60410585494745,54.289009364276005],[-120.60040116739846,54.28358822158245],[-120.59739366737834,54.276158244383],[-120.5953566071063,54.27227569262969],[-120.59252837019729,54.26913059482358],[-120.58892862785845,54.26598695652233],[-120.58814689723259,54.265359052082715],[-120.58571273125068,54.262276246579006],[-120.58191207042042,54.25855728460103],[-120.58181771109005,54.25575853236557],[-120.58340076507328,54.251821615382966],[-120.58086731127077,54.24832986269971],[-120.57892774946714,54.24501733554483],[-120.5789274070709,54.24045257752786],[-120.58177437558277,54.23605100175289],[-120.58452207771995,54.232516559855],[-120.58354202435702,54.229884908314254],[-120.57965654408632,54.22741991989964],[-120.57712201865942,54.22617438223177],[-120.57059954207598,54.2234832582815],[-120.56836250478827,54.22022003123686],[-120.56661972375208,54.214966060290976],[-120.56478419450542,54.20955680692266],[-120.56185341554968,54.21281247066207],[-120.54441475913116,54.215241304430556],[-120.52289469681654,54.20741925348729],[-120.50346257654948,54.206298459534096],[-120.4874854672082,54.21604891710258],[-120.44969886548388,54.22998152005668],[-120.43170027370334,54.23477772368251],[-120.42547159122005,54.2429962639008],[-120.43494601403872,54.25462482978379],[-120.418511934513,54.26434786573474],[-120.39999578795754,54.26605728975774],[-120.39525071868107,54.2664948704429],[-120.3295511795959,54.282701171262225],[-120.31393568437599,54.27429865821234],[-120.27719231084677,54.26992270380022],[-120.21288534401491,54.272515788839215],[-120.20000570647636,54.2786429714598],[-120.16726134647067,54.29420821535649],[-120.13394111801905,54.29550607636635],[-120.10712693431121,54.28509180263426],[-120.10716026101362,54.28507488239837],[-120.10735207498841,54.28496282413326],[-120.10743159758758,54.28492004251444],[-120.10751119938746,54.284876707290195],[-120.10777039091286,54.28468532447785],[-120.10796291997897,54.28458172414296],[-120.10823176583224,54.28447115651266],[-120.10832606728273,54.28444651520731],[-120.10862439725689,54.284345810993194],[-120.10882834579286,54.284270301368046],[-120.10900480485601,54.28418446680907],[-120.10908304450443,54.284150612395344],[-120.10942061987653,54.28395122658457],[-120.10959891973818,54.2838121046177],[-120.1096792390332,54.28375025580589],[-120.10993825061465,54.283586955417505],[-120.11019566342395,54.28342132039883],[-120.11024377262811,54.283395559997906],[-120.11029244219544,54.283352412380374],[-120.11053563119168,54.28315124877622],[-120.11076211052183,54.283012773114926],[-120.11077697469892,54.283003380175934],[-120.11085648867945,54.28296060522801],[-120.11111501322631,54.28278715596606],[-120.11146775032798,54.28258962488131],[-120.11179954465587,54.28244389537595],[-120.11207284357927,54.282288584536566],[-120.11213765252386,54.282227114741154],[-120.112219084034,54.28215745194281],[-120.11237299852466,54.28194577811643],[-120.11237747671706,54.28187407236008],[-120.11237939575976,54.2818471943303],[-120.11232818118691,54.28169243987793],[-120.11232243422906,54.281557305450164],[-120.11241617682603,54.28133427964441],[-120.11256353182573,54.28119533431656],[-120.11267708223447,54.28111712423423],[-120.1128042176647,54.281038440263416],[-120.11299727627716,54.28091744465864],[-120.11311138557447,54.28082183801806],[-120.11312880592847,54.28079458810336],[-120.11320448193622,54.28058979913201],[-120.11335718737607,54.280386489844226],[-120.11337580551024,54.280350874031974],[-120.11339306565534,54.28032474011974],[-120.11344700461858,54.28021778178197],[-120.11341751972684,54.28018095657458],[-120.11335272077076,54.28002665848891],[-120.1133290716632,54.27990863660259],[-120.11333354735007,54.27986390185388],[-120.11334761521468,54.27965780573934],[-120.11343231632911,54.27952481104798],[-120.1135002359401,54.27945505871533],[-120.11361186208968,54.27937675471393],[-120.1136445436951,54.279350802387405],[-120.11375169620206,54.27915540654591],[-120.1138005181842,54.27911113251169],[-120.10873618240919,54.270200869303686],[-120.10696388884246,54.26990465112234],[-120.1049248207282,54.26954374913211],[-120.10354071035644,54.26935456224979],[-120.10295665465405,54.26914636646492],[-120.10213756808875,54.26846373150078],[-120.10179487193592,54.267676692839636],[-120.10151945788697,54.266851351436515],[-120.10136950537745,54.26614729539104],[-120.10103406984514,54.26524260485507],[-120.10076390494989,54.264340529055254],[-120.10036132476462,54.26343313615007],[-120.10007497184473,54.26276514784243],[-120.09913061303214,54.26200166082042],[-120.09730653225867,54.261450459136206],[-120.09627322729733,54.26099784551778],[-120.09456741645097,54.260645095318175],[-120.09345274108313,54.260423373662746],[-120.09254331292038,54.26008970613475],[-120.09157388557846,54.259676679125995],[-120.09023687500749,54.258826554612874],[-120.08942012080954,54.258143925769154],[-120.08851979415292,54.25769377964885],[-120.0877450300069,54.257363820162816],[-120.08689771522177,54.257108986784615],[-120.08650420929371,54.25704035342148],[-120.08477331899854,54.25703799254916],[-120.08364073215651,54.257049058895035],[-120.08224253319796,54.257055022756965],[-120.08090632080555,54.257139859597906],[-120.07990474701288,54.25719268145669],[-120.07883560715818,54.257245577316766],[-120.0779704621351,54.257262337310266],[-120.077437642564,54.25724980744914],[-120.07718674144084,54.257048749073036],[-120.07689554735639,54.256457436569065],[-120.07661520613776,54.2557104286337],[-120.07646045780393,54.25508307144919],[-120.07609846675702,54.25456808228225],[-120.07581272932764,54.25389891950761],[-120.07489777961293,54.25270789264811],[-120.07416127911549,54.25183238824595],[-120.07335390729254,54.25103377440364],[-120.07208123080666,54.2502236389322],[-120.07066140582947,54.24960465870398],[-120.06916532659613,54.24909993589525],[-120.06805101892579,54.24887854323762],[-120.06706578395,54.248698852058816],[-120.0664822862489,54.248489917673915],[-120.0661005171304,54.24824702992222],[-120.06567693141224,54.24765200506772],[-120.06514787711592,54.246664638889285],[-120.06486056868012,54.24603469629617],[-120.06455866327475,54.2455995913112],[-120.06328366930296,54.24480778096792],[-120.06265829160589,54.24424781594085],[-120.06190774562349,54.243565957834036],[-120.06087891934168,54.243074450742114],[-120.0597667084166,54.242813172253825],[-120.0585418411749,54.24227663151839],[-120.05737692896798,54.241819439327344],[-120.0564737427599,54.24140709141652],[-120.05544503510934,54.24091553807555],[-120.05457102914502,54.24011461686754],[-120.05381498768458,54.23951222425981],[-120.05280299400026,54.23878544792093],[-120.05165456262633,54.23809523213722],[-120.05036812186043,54.237479150574316],[-120.04906530683223,54.23709657675473],[-120.048424064418,54.23676838945236],[-120.04765001428332,54.23643817288512],[-120.04715215517093,54.23595911519585],[-120.04691977705217,54.23548521619497],[-120.04685175281915,54.23456871447087],[-120.04652324487475,54.2335860296925],[-120.04579308417208,54.23263306558434],[-120.0450483455536,54.23187437108671],[-120.04430006962478,54.23119361232351],[-120.04375155859256,54.23047883218789],[-120.0433577170013,54.22949516983671],[-120.04328903233618,54.22859716787425],[-120.0434110315016,54.227820927447176],[-120.04351466947878,54.22727812280945],[-120.04375284607616,54.22673854943362],[-120.04346060363534,54.226185837252025],[-120.04303574764694,54.22562997742509],[-120.04234915050317,54.22499044288919],[-120.04178438697711,54.22450862053453],[-120.04160747718697,54.224145334923925],[-120.02404881241767,54.21946107661351],[-120.02379209532091,54.219515851643905],[-120.02342732449645,54.2193983973868],[-120.02320107022427,54.21924337444627],[-120.02287623601475,54.2190368406434],[-120.02220276615915,54.21896035125233],[-120.0213664925109,54.21900900711385],[-120.02055953304772,54.21914789479782],[-120.01996342257404,54.219401709331365],[-120.019357764991,54.21981408269608],[-120.01847769881644,54.22070800767727],[-120.01797089316749,54.22114324711894],[-120.0174555367813,54.221478023198856],[-120.0170322862495,54.22169652598541],[-120.01663211850075,54.221835810005466],[-120.01594661131682,54.221908168495084],[-120.01542546599181,54.22208361804782],[-120.01512078671298,54.22229560723494],[-120.0147825281335,54.22276501056594],[-120.01454662682282,54.223206865568415],[-120.01418727431886,54.22371512146277],[-120.01413154663824,54.22379329275042],[-120.013848725193,54.223934426874116],[-120.01369056673553,54.22400079459521],[-120.01331576707796,54.22403173334198],[-120.01294536743919,54.22399264629261],[-120.01251210749672,54.22388188267585],[-120.01200328599477,54.22364094435107],[-120.01157342733984,54.22348033400519],[-120.01100649434677,54.22334723262762],[-120.01045156918059,54.22326416664167],[-120.0100787908137,54.22325473294528],[-120.00951521596829,54.2233106137109],[-120.00928602017031,54.22341448399366],[-120.00915438933562,54.22359005665412],[-120.00919374796575,54.22377015290755],[-120.00934978723261,54.22394364469509],[-120.00947683494431,54.2240645678938],[-120.009478167424,54.22429391941314],[-120.0093176921782,54.22438939001217],[-120.0090286869735,54.2245066052803],[-120.00857851505657,54.2246445173147],[-120.00813120747038,54.22472299105469],[-120.00780772747491,54.22474577766766],[-120.00743695600718,54.22469597346411],[-120.00712376195266,54.224568648287274],[-120.00681048793057,54.22444188472105],[-120.00652807328309,54.22435486086099],[-120.0063271264925,54.224330877630095],[-120.0061234990118,54.22432530220936],[-120.00596788181001,54.22436087301867],[-120.00592798953814,54.22444938268422],[-120.00605247494852,54.224601087366764],[-120.00612878786494,54.22471276134678],[-120.00615137783876,54.22486224050613],[-120.00614696433277,54.224932273811774],[-120.00606912100821,54.225069475417115],[-120.00589169020904,54.22517534293732],[-120.00564925761125,54.225237532742206],[-120.00530707499952,54.225269503467224],[-120.00498359045949,54.225292273629634],[-120.00452491279735,54.22528981397433],[-120.00420685464894,54.22522237658347],[-120.00397768668559,54.225127308075],[-120.00383645248257,54.224944982941345],[-120.00376980173723,54.22471407942011],[-120.00362175905857,54.22463144920264],[-120.00338687811384,54.2246153311549],[-120.00313941236341,54.22473852712031],[-120.00301014595973,54.22488442219378],[-120.00291497618555,54.225021331366385],[-120.00290576866959,54.22515069735673],[-120.00283038977464,54.22525767252246],[-120.00268380438507,54.22540327679183],[-120.00243207585011,54.22559537962351],[-120.00213493899543,54.225728479313375],[-120.00173670846227,54.22582734289846],[-120.00142630374957,54.225879416745336],[-120.00129796570492,54.22588655184309],[-120.00122214435392,54.225890666527114],[-120.00122203272993,54.2257855752424],[-119.99987094536799,54.2278558986973],[-119.99992844478982,54.250123232789804],[-119.99931526596804,54.34311052560325],[-119.99966694523232,54.49997260878071],[-119.99951683725754,54.74998859298948],[-119.99928681244211,54.99999578653533],[-119.99941180254012,55.05132163149518],[-119.99980685136008,55.2495177856808],[-119.99929263461331,55.48024813288398],[-120.00063939640023,55.7496587899139],[-119.99925034722276,56.00000990073668],[-119.99949364693383,56.250414413031066],[-119.99968051049284,56.49996084338844],[-119.99956060056219,56.7501540440749],[-119.99950814267358,56.804592761763516],[-119.99924365618268,56.99983570330618],[-119.99955928928506,57.24995844568433],[-119.99972290280074,57.32231605321823],[-120.00004047110602,57.4999575106876],[-119.99994744942182,57.583920911867494],[-119.99968832957931,57.74977540023442],[-119.99887952328696,57.94006017909471],[-119.99860105725239,57.9995493553739],[-119.99969047112869,58.2499030141121],[-119.99992919459753,58.500148069477255],[-119.99942683014221,58.75004424864679],[-119.99922793866786,59.00005016675553],[-119.99919810921595,59.250067449920515],[-119.99921938799707,59.48309749189664],[-119.99922124514032,59.49997161582289],[-119.99919916152649,59.74993694679287],[-119.99920330699027,60.00007332274973],[-120.66830177315488,60.00004752340259],[-121.17493753616544,60.00008972672921],[-121.62033779612963,60.000107243884386],[-121.99963791698053,60.00008299214441],[-122.01531958865687,60.00008709974107],[-122.24976138746257,60.000233353740526],[-122.500494708644,60.00027833842734],[-122.75045247185479,60.000308753270645],[-123.00051482170832,60.00032043545869],[-123.25060350553646,60.0002031589888],[-123.50058714865527,60.00030563815777],[-123.75104376880026,60.000376421992414],[-123.80447834961902,60.000347886311964],[-123.99986584789852,60.00009486749453],[-124.41682898051569,60.00008003567211],[-124.87122148508816,60.00009736628174],[-125.46239518559247,60.000090833536774],[-126,60.000083716676635],[-126.56390405060563,60.00007780784625],[-127.1180194087016,60.0000933348387],[-127.72921450744029,60.00008774269539],[-127.73015237781816,59.99480088072238],[-127.72785486102738,59.98084891782212],[-127.7232004876454,59.97124709027911],[-127.72161969666331,59.95466748820463],[-127.72119212629603,59.948857812220176],[-127.72545239505156,59.94362074203644],[-127.72780524158581,59.94246663755033],[-127.73445019499954,59.940521414165865],[-127.7425382878244,59.93748681496175],[-127.74525599269201,59.933753544662565],[-127.74410994009436,59.923605564133986],[-127.7427978629373,59.91529601532871],[-127.73890582305498,59.907801673534586],[-127.71834967799971,59.898172451895846],[-127.7022557111261,59.89597468012933],[-127.68851194889334,59.89603288903639],[-127.67742365388689,59.900918195547035],[-127.67654087520629,59.89830064440764],[-127.67520348865654,59.89204342504615],[-127.67209139631822,59.88722047985109],[-127.67179429327199,59.881463961021694],[-127.67467480345593,59.8792155578433],[-127.6778966139526,59.87696301419065],[-127.67994215431366,59.87357251667778],[-127.67878006716373,59.86931149458199],[-127.6744854920875,59.866257954441686],[-127.66658595842095,59.864273217899395],[-127.66204253748612,59.86054733114407],[-127.66133472066458,59.85616391397257],[-127.66218068125498,59.85068215626707],[-127.67186579948626,59.851916780458296],[-127.68260554950638,59.85421802985628],[-127.68881063568581,59.856618238696164],[-127.69591582170438,59.85866530720397],[-127.70465545791721,59.85876619778226],[-127.71426818713815,59.85434698422047],[-127.7177081897127,59.84867103420253],[-127.719870630428,59.84208379727895],[-127.72858006048665,59.83807073627243],[-127.73776608040762,59.83468118431382],[-127.74643131424013,59.83266544307303],[-127.75654026262008,59.82994709062469],[-127.76063816951142,59.827114775043185],[-127.76392029189363,59.82371667448951],[-127.77119622948757,59.817838199307],[-127.78505724373612,59.81234345893785],[-127.79389601816949,59.80917964804138],[-127.79856648713894,59.806743882001406],[-127.80494741750123,59.801433175296985],[-127.81077941184722,59.79664226117126],[-127.8145960577135,59.79256122181431],[-127.81545587075264,59.79135319576014],[-127.81517631320237,59.78370776178548],[-127.8104221457231,59.77747928268749],[-127.80609188843701,59.77359389559072],[-127.8037624669143,59.771788266709095],[-127.79949948816763,59.76651609605509],[-127.80301509642126,59.763573259267076],[-127.80913072502233,59.76060569231501],[-127.81012185091058,59.75677753148329],[-127.80576127273493,59.75197488472555],[-127.80062189024207,59.74746114775587],[-127.79593303127899,59.742878495300594],[-127.79229758804689,59.73613170176348],[-127.79090608250523,59.73192053432963],[-127.79089956842363,59.72547816568702],[-127.79188712344433,59.72147048651272],[-127.79246393802303,59.71861080775633],[-127.79461777398096,59.715631891546984],[-127.79530868697442,59.71288772863819],[-127.79089761723468,59.709615326934944],[-127.7875193759672,59.706680485489485],[-127.78740840276338,59.70360478364319],[-127.79047017684142,59.700776321287464],[-127.79169403130265,59.69705369690985],[-127.79191411794176,59.69380284646865],[-127.79076427383195,59.69325079003012],[-127.78283605571045,59.689321634484784],[-127.78008519032981,59.684957189711994],[-127.77794338156163,59.681898531442194],[-127.77512060291717,59.67867759307699],[-127.7700763804654,59.676501501910764],[-127.76505326767439,59.67494576106605],[-127.76140554540503,59.673903287363906],[-127.75216866294427,59.67106876646764],[-127.7472447328789,59.66906133541563],[-127.74520833608784,59.665542158411924],[-127.74405019945819,59.661454200046194],[-127.74088708676588,59.658057075944704],[-127.73864826476152,59.655224149321484],[-127.73515795361182,59.65206493665335],[-127.73442112873659,59.65030182430793],[-127.73816655956638,59.647754147529014],[-127.74472767714568,59.6450091966643],[-127.74815829550988,59.64315791800615],[-127.75036771709027,59.64177172546984],[-127.75140956594767,59.639311641332014],[-127.75113748030842,59.634744987607505],[-127.74970441562152,59.629113437151084],[-127.74965329339614,59.62762972856931],[-127.74991011832421,59.62522455864278],[-127.75101574246608,59.62465290232361],[-127.75703416261562,59.622651917939386],[-127.76598625281585,59.620919344014226],[-127.77476773855872,59.61747013135564],[-127.77838129495335,59.614527304449275],[-127.78132554290387,59.61176388344852],[-127.78552057421773,59.60933520202138],[-127.78866642416608,59.60906990074309],[-127.79283818452018,59.60914215247832],[-127.79440500838433,59.60884308226432],[-127.7954618231223,59.60689533428758],[-127.7976135050132,59.60407883692075],[-127.80063324187572,59.60039648315273],[-127.803010963044,59.597585994152375],[-127.80318183640972,59.59609948347737],[-127.80601323829339,59.593444998123424],[-127.80819968876624,59.59304776647183],[-127.81328263725923,59.59211800377617],[-127.82433674560721,59.5988012378242],[-127.83067493265008,59.60575276752255],[-127.83555510793258,59.60981763691261],[-127.84859259803997,59.61202900356474],[-127.86157381764315,59.61269258702114],[-127.88305221820521,59.61168389019142],[-127.8997082804711,59.608254820354325],[-127.90899492033482,59.60376454098096],[-127.91761611431099,59.5996246751556],[-127.92438588891258,59.59710222126872],[-127.93023175610553,59.594016509919044],[-127.9327680744472,59.58988806686134],[-127.93420679263018,59.58359784519917],[-127.94076951805935,59.57605777456817],[-127.94964583363941,59.5700862720284],[-127.9606874297383,59.56488431425666],[-127.97239154825134,59.562244859605],[-127.99295915083493,59.561798482897686],[-127.99937820800666,59.561949162506785],[-128.00263682734197,59.56321563652372],[-128.01167969206656,59.56655745835637],[-128.02377321926122,59.56551826647551],[-128.03541262727958,59.56460161438421],[-128.0465067294648,59.56641782006556],[-128.05736782477874,59.57177211263944],[-128.0674015341083,59.5784334360298],[-128.07473804302967,59.584846553720965],[-128.07498137227722,59.59096956306662],[-128.08202937333638,59.609622463576585],[-128.09424069158484,59.61572809716023],[-128.1099139168369,59.62312993173052],[-128.12663602331364,59.6296774191301],[-128.14783889466347,59.6340305893384],[-128.16116142990816,59.6376214132097],[-128.1698459040089,59.63803519982485],[-128.17992728510816,59.63703193526954],[-128.19706370829843,59.63418920824639],[-128.21513334634574,59.63026776146352],[-128.23309826708984,59.625949713433194],[-128.24648098157508,59.62381782675202],[-128.2575487302636,59.61960773189267],[-128.26763818021877,59.61802204030142],[-128.2794567526169,59.61913363015349],[-128.30221096105038,59.62501263894195],[-128.31482440003987,59.63048123594191],[-128.32957532709042,59.64065518813711],[-128.3376731788782,59.6506517800204],[-128.3480849806605,59.65878242167896],[-128.35132127069576,59.660410605334285],[-128.3671336720687,59.66074573466424],[-128.38773598503343,59.650009428361365],[-128.39868026843547,59.645789894331415],[-128.42235022274846,59.64313043709419],[-128.41530947046078,59.635135890708796],[-128.4059107688569,59.62678600322761],[-128.399482315876,59.621767876628304],[-128.39321236733267,59.619671249781966],[-128.38356380097255,59.61732633598521],[-128.38951975978713,59.613759862899535],[-128.39149573372222,59.611197419653934],[-128.3893059890434,59.6086075838814],[-128.38048360172223,59.60478168496089],[-128.3722076976714,59.60187275312531],[-128.36860114933958,59.597273306587276],[-128.36863675817477,59.59126216409573],[-128.37172632371636,59.584884103721244],[-128.37773094920055,59.57914001426769],[-128.38239221661348,59.57751261705575],[-128.39760841064154,59.577610899035726],[-128.4100243300929,59.5721415452937],[-128.41258680684768,59.563747335532774],[-128.42732698658946,59.56469630040782],[-128.43435614710017,59.56279180889092],[-128.43165338957795,59.55785449707632],[-128.42966682140377,59.551150170897934],[-128.43268110154926,59.547399495665296],[-128.45609970454566,59.54267759100409],[-128.46941408998973,59.54137978285236],[-128.47435882827818,59.5419215865267],[-128.48740469152202,59.54267825157035],[-128.50115563954836,59.54207137010233],[-128.51641588716225,59.539123395060074],[-128.53304895987586,59.53503297304395],[-128.5435635357502,59.532798287821365],[-128.55347208058637,59.53257141384763],[-128.5605710748092,59.53232369581557],[-128.5868962481493,59.527129840782706],[-128.59390797917257,59.52516345654868],[-128.6220108554261,59.52065840551799],[-128.63126952098753,59.518872572034816],[-128.6388425239995,59.51673126763908],[-128.6656310614963,59.501994873072064],[-128.6682413295445,59.50055791957668],[-128.67437219434393,59.496930755754015],[-128.67545038878504,59.49275305731087],[-128.67553452697516,59.48743387843511],[-128.6770592622239,59.48326560530083],[-128.681936145414,59.480652067991834],[-128.68894455402557,59.47788006323549],[-128.70272347802705,59.47336531306726],[-128.7154660420941,59.470318057099455],[-128.72515582937714,59.4684723419438],[-128.73382027728556,59.46752791925204],[-128.7395404228603,59.46824273864886],[-128.749069805515,59.46970960128819],[-128.75447450198445,59.4688644899285],[-128.75968524155786,59.465800617291315],[-128.7662554242265,59.46153073490577],[-128.7730549774529,59.45686905743189],[-128.7825480458682,59.452377910935084],[-128.7917982249753,59.4488627250657],[-128.80565651758266,59.44490273741104],[-128.8126369830607,59.44315060508986],[-128.82039015438875,59.442606042571754],[-128.82804154345004,59.441199354516456],[-128.83670037104238,59.43978959800649],[-128.84669788751157,59.439188555448],[-128.8564803904567,59.437736443534234],[-128.8661562576749,59.43547604540775],[-128.861085247189,59.42635841033885],[-128.86268937254496,59.42323011508765],[-128.85604121160674,59.41497290381507],[-128.85406502109376,59.41073997571223],[-128.85378978227064,59.39414601208485],[-128.85135679017463,59.39082233767747],[-128.84880031752706,59.3888147324257],[-128.84640574393745,59.3819994778782],[-128.83981250011192,59.380434662778086],[-128.8352393235778,59.378306336605334],[-128.83494613151763,59.37453377432491],[-128.83217200013337,59.37206260278374],[-128.82591626381793,59.37032834955485],[-128.82156119384678,59.36894189373106],[-128.82091536948826,59.36671496986311],[-128.82353873347634,59.362604044173565],[-128.82322583610556,59.36037934852015],[-128.81776504595214,59.35818775195705],[-128.813861232086,59.34702211879722],[-128.8125507082576,59.34409810728538],[-128.80876374949426,59.34260085997626],[-128.8043111432763,59.34046932823647],[-128.80277723307296,59.33766675778898],[-128.80338298451127,59.33377725955641],[-128.80051636761888,59.330111171089676],[-128.80055589778527,59.326674007479106],[-128.7937811360567,59.32253832417768],[-128.79338881924446,59.31812944394599],[-128.7774232468393,59.306694632967044],[-128.77810447472373,59.305781394838455],[-128.7877290046476,59.30523650072596],[-128.7932296603424,59.30348812976937],[-128.79306162262023,59.298912937696166],[-128.79042516307624,59.29512533050043],[-128.7819393852845,59.29424426321864],[-128.7765130888828,59.29016187410412],[-128.77153439412413,59.28631319422959],[-128.76662223621005,59.28578215922362],[-128.7603646284447,59.28570064345354],[-128.75020809051037,59.27651298383211],[-128.7446977877918,59.270830223721696],[-128.73999922764685,59.263035489968516],[-128.73353281203322,59.26238134733501],[-128.72625402999637,59.26378469830372],[-128.71930023634638,59.26581984865346],[-128.70622210628989,59.266571865258854],[-128.69279861285472,59.26788702343306],[-128.68774991189704,59.26946958913795],[-128.67641043155137,59.27302703135331],[-128.66418718010638,59.276006972716985],[-128.651333573466,59.2763536217703],[-128.64306919175078,59.27608053674673],[-128.62070882812327,59.27695696547015],[-128.60648682739796,59.27883641516109],[-128.59499053468218,59.27815379830297],[-128.58779084939812,59.274799434278926],[-128.57841916154393,59.26800477702049],[-128.55836674669328,59.247477379334825],[-128.55518333615447,59.24472153006718],[-128.54876908522093,59.24160274599379],[-128.5398813742517,59.23943762628123],[-128.52089085832026,59.24037093319513],[-128.51196761017133,59.240147197739866],[-128.50985538453583,59.23973603760091],[-128.5045011940082,59.23415890522941],[-128.50291403407687,59.22992512370329],[-128.50519132096107,59.22764450880336],[-128.51012891218681,59.22618770658043],[-128.52075984340485,59.22458167797051],[-128.52860849520866,59.22268419738371],[-128.53815181062808,59.21953200774221],[-128.5493916555306,59.21495385082158],[-128.55314401246596,59.21119726356229],[-128.55566510649345,59.20760732907105],[-128.55737464115717,59.20566911738955],[-128.56993227386556,59.20190109678681],[-128.5675141141929,59.19411359397748],[-128.56470441931273,59.18940890756565],[-128.56274281529124,59.187053443168395],[-128.555889376724,59.18415945343041],[-128.5434469147918,59.18220488479527],[-128.53525947785255,59.1793076157101],[-128.52543216611346,59.174848398082034],[-128.517071117806,59.17514552262041],[-128.5090751409373,59.16858353776182],[-128.51262602803482,59.163627074331075],[-128.5109254143082,59.159665729122764],[-128.50673154338045,59.157755051388044],[-128.5041460656975,59.15356702925864],[-128.49723813916214,59.14844152967424],[-128.48998210606945,59.14416727335827],[-128.4776286153223,59.13889672032137],[-128.4955272087138,59.12361116362205],[-128.503933672755,59.12050904133955],[-128.51413099541324,59.11668129490004],[-128.52132341750107,59.11288100157042],[-128.52598449555146,59.107760246910935],[-128.52765043431324,59.10221799297453],[-128.52332366347503,59.09619263264331],[-128.51925376864943,59.093992657069926],[-128.51592349074792,59.093927863249924],[-128.50932462113929,59.09594574678492],[-128.501808727147,59.09927472250628],[-128.48631797079136,59.106569099484766],[-128.45587473999842,59.110911120729],[-128.42969414632063,59.09834022052622],[-128.42683593609388,59.09203441856338],[-128.42039731718586,59.082042822060004],[-128.41861426879032,59.0775161498133],[-128.4190281645868,59.074029607484945],[-128.4230821799115,59.07153968567791],[-128.42933953714294,59.069855727203766],[-128.43282721241522,59.06782505372159],[-128.4325609310829,59.064907951466296],[-128.41633790819526,59.045983041074265],[-128.41264792842122,59.04236219170555],[-128.41281750525232,59.03978812562087],[-128.4242504538643,59.029904439784055],[-128.43252620564144,59.031843414890254],[-128.43858407320823,59.033767452451094],[-128.44448263292895,59.032943189177686],[-128.46494337193545,59.02557362208503],[-128.47057592448695,59.021372831161806],[-128.46805306845422,59.01500862517847],[-128.46613928205198,59.01127642851499],[-128.46910777046585,59.007177627606964],[-128.48136054154025,59.00050166436066],[-128.48169610159036,58.9999831795406],[-128.48304135679433,58.9978102950049],[-128.48395421943698,58.99439570842457],[-128.4839716803295,58.99221994253877],[-128.4846797310928,58.986849405154004],[-128.48281497068183,58.98507637939355],[-128.48270618578715,58.98489856569048],[-128.48459650431388,58.983479908725094],[-128.48869860400123,58.982227782352574],[-128.4919117829441,58.98137825876218],[-128.49600437859905,58.98126772822291],[-128.49977209222467,58.98036295587201],[-128.50365829561395,58.978143464779436],[-128.50534956331362,58.97397742606761],[-128.50558818972064,58.97179765099459],[-128.5054943697955,58.969237432947935],[-128.50506741134066,58.96734852570932],[-128.50308965341645,58.96562284266411],[-128.4994496953349,58.964700583076564],[-128.49823588045388,58.964533981563086],[-128.49293856535436,58.96343506031],[-128.4863183304717,58.96217122134964],[-128.4816829028086,58.961356487159456],[-128.47793364051066,58.96026487081933],[-128.47727328065304,58.959863337868725],[-128.47574592956184,58.957401047779655],[-128.47532607458524,58.95506253736352],[-128.4753398933253,58.95351619695924],[-128.4767954245195,58.951404426554866],[-128.47681562997212,58.94842875278204],[-128.476283732458,58.9462630934498],[-128.47498520803228,58.94311356670237],[-128.4752074038629,58.94294774720334],[-128.47346644122467,58.939914098724365],[-128.47194765994726,58.93659778164869],[-128.4704174392602,58.93454008025498],[-128.46954780802085,58.933054696680976],[-128.47000031811908,58.93173418808561],[-128.4716762032599,58.92974438775083],[-128.47467768706272,58.927397999230564],[-128.48055441031434,58.92404660744954],[-128.48476266207146,58.922567951260255],[-128.48851994189303,58.9218344341902],[-128.49360665169877,58.92122037653698],[-128.49692168401978,58.92030593408775],[-128.5041209964769,58.91728887297381],[-128.51209060488614,58.91433816073544],[-128.51828160279817,58.91262423193777],[-128.51840763556598,58.910401743602726],[-128.51842705310878,58.907543045871044],[-128.5185498865617,58.90565320488577],[-128.51878424063818,58.90388715032851],[-128.52276141285796,58.90326545912658],[-128.52729278503557,58.902237905583156],[-128.5320432814636,58.90121512505584],[-128.53481191199936,58.89950989635969],[-128.53735973630413,58.89797050528279],[-128.54101629353042,58.89558350640124],[-128.541474142049,58.89272566378371],[-128.5404970357693,58.8900922795422],[-128.54149798617215,58.889237736883665],[-128.54657098245647,58.889017380183525],[-128.54944152771955,58.88890988233297],[-128.55032458634165,58.88862374017341],[-128.5532073686007,58.885765495170496],[-128.55344880199516,58.88257012490033],[-128.55302878182727,58.87943208204355],[-128.55172211839874,58.876679148615956],[-128.5497539799381,58.873884647050104],[-128.54976289851973,58.87256322024729],[-128.55087483171386,58.87085267048604],[-128.55309490250625,58.8686270406278],[-128.55509508448498,58.86600102977518],[-128.55554212085897,58.864860159341575],[-128.55511221520223,58.862917799236186],[-128.55379997198366,58.86102791385095],[-128.55248948961915,58.85925483452255],[-128.55106767319322,58.85742091560843],[-128.55019779258703,58.85582833529319],[-128.5514167219104,58.85434051050059],[-128.5555038152234,58.85286189088307],[-128.5608004005446,58.85132449353367],[-128.56565573291962,58.84989405343606],[-128.56709203236215,58.84887835698918],[-128.56920054642669,58.846762446855145],[-128.57086635689762,58.84407962698222],[-128.57164797877903,58.84179095896611],[-128.5716654383623,58.83899541146429],[-128.572007986696,58.83682288884272],[-128.5720181816588,58.83505210302985],[-128.57235808323523,58.83316724858513],[-128.57600125417017,58.831453705582504],[-128.58107449519562,58.829919714006664],[-128.58780005520472,58.828219357563476],[-128.58802179132758,58.82775677269394],[-128.5916723910994,58.82421814878963],[-128.59597885843235,58.82119721583173],[-128.59862980775424,58.81948397399497],[-128.6013944786933,58.81633946860741],[-128.60394127985268,58.81337882837917],[-128.61012639262006,58.80829932340361],[-128.61498314214379,58.80424266593993],[-128.62204329784004,58.79973900500373],[-128.6297590709269,58.79562675639813],[-128.63053039108772,58.79540514901165],[-128.63483216267846,58.792544852293574],[-128.6382531689513,58.78861399657052],[-128.63969447176092,58.785575262154566],[-128.64113972712488,58.780954658987625],[-128.6412519482017,58.779748170632665],[-128.6410474262808,58.77684022950713],[-128.64138320639563,58.77444308277075],[-128.64226794411277,58.77215212284859],[-128.64304058615434,58.7713552282736],[-128.6460209484,58.768322534576946],[-128.64822742730524,58.76563736728802],[-128.65098267461576,58.76330096872261],[-128.65340530227542,58.76164504230961],[-128.65780236636405,58.761020004280084],[-128.66351496712386,58.76130375457718],[-128.66922465268632,58.76217149865532],[-128.67098580703356,58.76239757640994],[-128.67460708865755,58.76342290980343],[-128.67779205870926,58.76474433371726],[-128.68284770496297,58.76423134703678],[-128.68977066948347,58.76434634659923],[-128.69537012529716,58.76561064657966],[-128.6983324188915,58.76777186044991],[-128.70239946702105,58.768580936529624],[-128.70899534548334,58.768584632048345],[-128.71547798128591,58.768356589678284],[-128.72327947457933,58.76949494089482],[-128.73239988758965,58.77166693814222],[-128.73547591093765,58.77253089475822],[-128.73954288545312,58.77263784837509],[-128.74657954625033,58.772469085859825],[-128.74756627915025,58.77229637976518],[-128.7522926796887,58.77155377261825],[-128.75712959622595,58.771725520044654],[-128.76273343575727,58.77337352275452],[-128.7686710465244,58.77372025726306],[-128.77284908407836,58.77366217890815],[-128.7762553967785,58.773889352814344],[-128.779994851863,58.774577015232566],[-128.78504767278594,58.77468045700759],[-128.78977511456605,58.774511751007275],[-128.79285202932203,58.773316162828486],[-128.79251790754194,58.76982667573035],[-128.78977136389815,58.76668328032206],[-128.78812102211745,58.764739754564644],[-128.78713125378883,58.76331297582943],[-128.78657673751283,58.760627968959035],[-128.78690751016703,58.75914718762034],[-128.7871250669672,58.75691375031007],[-128.78635442767128,58.75451181681044],[-128.78525483307874,58.7527996929209],[-128.78690435373568,58.75280186464634],[-128.79525076397002,58.75142627310732],[-128.8045872982846,58.751018411279055],[-128.81216962130836,58.752560595283214],[-128.8145869729308,58.75323862626007],[-128.81953147823276,58.75472711067972],[-128.8241456122524,58.75569199332139],[-128.82722528116133,58.75569095032067],[-128.83315723231476,58.756088863847495],[-128.8367825825938,58.755626838976106],[-128.83556859830654,58.75351299394301],[-128.8336998924562,58.752320572800514],[-128.83325539618272,58.75065806640834],[-128.83644013632752,58.74905475842578],[-128.84115992772286,58.74807544261758],[-128.84192247036157,58.745740618910624],[-128.84422201858652,58.74247487193082],[-128.84805976843157,58.74012960666202],[-128.85310839370868,58.73870256328036],[-128.85859475401745,58.73766159564712],[-128.8640830241705,58.73674619287633],[-128.86836594226375,58.736853658473514],[-128.87166321415484,58.737709834738034],[-128.8772695477733,58.73970352462311],[-128.88078956871763,58.74181311331037],[-128.88506575154764,58.73992484926964],[-128.8894518979646,58.7379711934644],[-128.89658204186694,58.73585111334077],[-128.90283246980687,58.73412693213128],[-128.90425845496227,58.733781898873964],[-128.91061823123124,58.73194715650284],[-128.91061425386275,58.73125515572765],[-128.90873876743947,58.72846403963183],[-128.90520758393924,58.72423427151708],[-128.9034448166239,58.72241141773063],[-128.90223229432397,58.7212688747641],[-128.90069174181568,58.72001648167384],[-128.89760964394594,58.71767345947272],[-128.8970544106288,58.71641800421708],[-128.89803617001013,58.71430290297254],[-128.8981368678568,58.71259306647098],[-128.89439274085277,58.70928446165195],[-128.891649750404,58.70860586172366],[-128.88615648241193,58.706835224923346],[-128.88538854144966,58.706438099997605],[-128.88142802996754,58.70387078434478],[-128.87900908110058,58.701863897972046],[-128.8777975139757,58.70021787564872],[-128.87855644215477,58.6980447837188],[-128.88107317040436,58.69587037365473],[-128.88632639848413,58.69260423349465],[-128.89080953961633,58.689911502947375],[-128.89398559527726,58.68796547827299],[-128.89551967904922,58.68761821884464],[-128.90143727326435,58.68646735227288],[-128.9077879462484,58.6846328846589],[-128.90975729999673,58.68326054859637],[-128.91117021065014,58.680686799653245],[-128.9115983784283,58.67868239639198],[-128.91652354948695,58.67719262316519],[-128.92441812308007,58.67718459391945],[-128.93143735154004,58.67813870228387],[-128.9395528240564,58.679329370671255],[-128.9428470439394,58.679662460082326],[-128.95106825246071,58.679996334411875],[-128.9540296751779,58.680048781670536],[-128.95928306146175,58.67883788889265],[-128.95972207457032,58.67861261459755],[-128.96124573703614,58.677006540906596],[-128.96757898790216,58.67265302195315],[-128.97566668020488,58.669384215299424],[-128.98277368324287,58.66622634107466],[-128.98418148066062,58.66393948585293],[-128.984279276186,58.661645479688644],[-128.98688898034916,58.65900861486643],[-128.99541586988926,58.65579183500652],[-128.99836369958564,58.65436061010931],[-129.0063441968904,58.652170796469],[-129.0143318646915,58.65089708348935],[-129.02243255730465,58.650312427181674],[-129.02670276348937,58.650298125346815],[-129.03558030225403,58.65079185640969],[-129.03579720262746,58.65050838169424],[-129.03490093124785,58.64816464634743],[-129.03333196002256,58.6433104101723],[-129.03222228872212,58.641537682254956],[-129.03089222051764,58.63954518574232],[-129.02956357286035,58.63748973976091],[-129.02702987503042,58.635667904406034],[-129.02493773592116,58.63396200945007],[-129.02437644378224,58.632132084600734],[-129.02327469996175,58.63088042492732],[-129.0193231671643,58.629458567112934],[-129.01405512615662,58.62787713676055],[-129.0095548879853,58.62588303218506],[-129.00505288377366,58.62405959252394],[-128.99978301556996,58.62172276069307],[-128.99517269813288,58.61928130455265],[-128.9997541356529,58.61772408132334],[-129.00761515180218,58.61479981554209],[-129.00946952681804,58.613994745749665],[-129.01439222250883,58.61393030192545],[-129.02227344399583,58.61419518866375],[-129.0305785681338,58.612922298044644],[-129.03570939026133,58.611306601520816],[-129.04292317789262,58.61020117146953],[-129.0483812779326,58.60893712710355],[-129.05645840919564,58.606688116400235],[-129.0625751251406,58.605696225830584],[-129.06421053770268,58.60534469878296],[-129.0749062052491,58.602298354659425],[-129.08187725539253,58.59912919498142],[-129.0862225906998,58.59609139853375],[-129.09166408093915,58.593217183892705],[-129.09491979342718,58.59058143271057],[-129.0968524935582,58.586807496248234],[-129.09615789256546,58.58268919785567],[-129.09580602406334,58.580234720795346],[-129.10091343635352,58.57708016874292],[-129.1096477854852,58.5760260873901],[-129.11019258930628,58.57602256288759],[-129.12718582664834,58.570598266029066],[-129.1309834221951,58.567724422269436],[-129.13216916668614,58.566241047265656],[-129.13498935496776,58.56451311394208],[-129.14065376610955,58.56266523713852],[-129.14697946258664,58.561673515042536],[-129.15025006893057,58.56109414666593],[-129.1504488859229,58.559327997854496],[-129.15030534428954,58.556293622526894],[-129.15026318863917,58.55217842775594],[-129.15164511453273,58.54902767647778],[-129.15442134832563,58.54353471132046],[-129.15462063206513,58.54165174614077],[-129.1523060343829,58.53982738375905],[-129.1478180062937,58.538700651838305],[-129.1443182761445,58.53796421630048],[-129.13578774301274,58.53679619526766],[-129.13261550563854,58.53629452506075],[-129.13185077594184,58.53629425794455],[-129.12922296810302,58.53544738814923],[-129.12832051925668,58.53270028856334],[-129.12893965675528,58.529100198899485],[-129.13043152006816,58.52595622430386],[-129.13051281671483,58.52309653227857],[-129.1295991204028,58.519325259212486],[-129.12926846529857,58.51898242835724],[-129.1292604513054,58.518074952302605],[-129.12879409592728,58.515389727164695],[-129.127573478396,58.513279136218436],[-129.12689835967086,58.51139856660551],[-129.12556429241886,58.50911086572461],[-129.12424678713865,58.508314553787216],[-129.12084622729907,58.50661376279005],[-129.1196311336773,58.50506916534512],[-129.11907363483584,58.50387783634299],[-129.11720408135008,58.50244717916616],[-129.11687219929894,58.50193361665852],[-129.11935839473563,58.49975544863145],[-129.1212951030075,58.49700580682615],[-129.12257124093065,58.49374120715912],[-129.12395231788005,58.49037532743591],[-129.12568058093515,58.48876273968574],[-129.12770311731688,58.48413288746642],[-129.12951363968926,58.479957247871155],[-129.13067529135853,58.47674918286045],[-129.13579286216753,58.47610926388954],[-129.14178825221373,58.476086760124616],[-129.1512765503575,58.47673739722922],[-129.15858256440748,58.47723173833346],[-129.16050902042463,58.4739066285101],[-129.1637290782135,58.469436886773465],[-129.1654283893239,58.46572164212097],[-129.16779327839203,58.46279953997412],[-129.17103620078976,58.46089919086699],[-129.1780972987569,58.45910663208572],[-129.18515946473536,58.45742150337721],[-129.18580946635677,58.45719049301412],[-129.19034205051435,58.453803428511264],[-129.19195195580332,58.451914181906496],[-129.19380375267062,58.451852405853366],[-129.19904670099913,58.452914450613875],[-129.20502575338344,58.452260390378235],[-129.21023936679438,58.45098623109693],[-129.2150033937206,58.448967713016685],[-129.21832847456335,58.444844572897374],[-129.21918979945622,58.44397930718627],[-129.2211485866273,58.44403141747144],[-129.2270672160984,58.446864534986695],[-129.23014129475155,58.4487949865859],[-129.23265416953288,58.449471719065286],[-129.2388563956991,58.44905342865906],[-129.2397276157285,58.449041505426855],[-129.24548730055034,58.44804939986343],[-129.25144998520983,58.44619842299753],[-129.25511977785544,58.44389026207513],[-129.2562970511182,58.442459948494836],[-129.25376069842775,58.44018461957053],[-129.25001890885952,58.43729126912908],[-129.24672050975082,58.434953317068064],[-129.24396264955118,58.432287780327975],[-129.24206731510395,58.4289724333293],[-129.24135614876002,58.42469405367919],[-129.24129500649698,58.42029224145391],[-129.24286778182912,58.415941034139344],[-129.24669954690043,58.40981010066116],[-129.24915183152422,58.406201489989556],[-129.25184973132866,58.40464474053592],[-129.25973849132987,58.4011293371954],[-129.27945354431347,58.395672763604864],[-129.29389224711295,58.394071572412415],[-129.31276192937307,58.39084126586005],[-129.32514436529584,58.390158874438505],[-129.33742099125865,58.38957680737347],[-129.34926413097128,58.38906729441165],[-129.3570699162302,58.387713785519445],[-129.36096500654298,58.38661018836681],[-129.37191913419153,58.38512331023449],[-129.37474889442288,58.38527713005534],[-129.38290224228302,58.38524341547796],[-129.3894074568293,58.38440592320549],[-129.3923441727741,58.384394921712016],[-129.40104487472786,58.38457997953342],[-129.40661932705797,58.38637132485232],[-129.41045977367745,58.38812547437456],[-129.41235405230069,58.39057588515998],[-129.42168890403713,58.389844890875366],[-129.42821690067927,58.39002946365867],[-129.43355062763692,58.39039693845297],[-129.43377664854106,58.39080458502663],[-129.43555651348288,58.39284422816907],[-129.4387807253883,58.39659950979173],[-129.43970352511454,58.39939794298514],[-129.44094714246708,58.4017298437742],[-129.44463806007968,58.40702795415963],[-129.44631011539073,58.40907927355375],[-129.44820927994272,58.41163705602522],[-129.44881664483177,58.41494687048373],[-129.4485264648862,58.41677874634835],[-129.44996107071358,58.41768573508714],[-129.45693575678007,58.41833396325953],[-129.46260572407488,58.41887154475805],[-129.46891615138549,58.4188351863285],[-129.469052651016,58.42026070756503],[-129.47177952233773,58.425906698874996],[-129.47427241700353,58.430749821789966],[-129.47528357567992,58.43239550518889],[-129.48114049088807,58.43116594595931],[-129.48839190360292,58.42928889292954],[-129.49373484652307,58.42966291604943],[-129.49791770462645,58.43203517778227],[-129.50216141879005,58.43183518662118],[-129.5116061994023,58.430753755409995],[-129.5171360717723,58.429692897913064],[-129.51810134464625,58.42894868097109],[-129.5209025382933,58.427662201135256],[-129.52499724293125,58.425640791171595],[-129.52789633085496,58.42390219763325],[-129.5314364547352,58.4215984826743],[-129.5345417960162,58.41924315084105],[-129.52774099835182,58.41676079742225],[-129.52498642488038,58.41517905607546],[-129.52275807215239,58.4128555003835],[-129.5213778616898,58.409323375486466],[-129.52126613313052,58.40423020490898],[-129.52125944042362,58.40388884407705],[-129.52134379327686,58.39765813356249],[-129.52240885435558,58.39159057870917],[-129.52299095774433,58.38833082526858],[-129.52317319166667,58.386789179270025],[-129.52235099042647,58.38381781292082],[-129.5215483331198,58.381942423652255],[-129.52267163345698,58.37861463420792],[-129.5265298492788,58.37608705399925],[-129.53299475759272,58.37346404409832],[-129.53857406055295,58.3702887791329],[-129.54069770101265,58.367995073132626],[-129.54423372605615,58.36093675596494],[-129.54513825967075,58.35750670536836],[-129.54641368084307,58.356295763205445],[-129.54981990216342,58.3532401450683],[-129.55408086816843,58.34955971685122],[-129.5540183225036,58.346703385099154],[-129.55392885952736,58.34276030922581],[-129.55985556759208,58.34077923947581],[-129.5686734863371,58.3369507454304],[-129.57767738895654,58.33197530504398],[-129.580985791371,58.329550577199406],[-129.58865867220106,58.32355826569655],[-129.59635649782012,58.318589381007136],[-129.60343254200603,58.314939854609875],[-129.6067049163151,58.31114036637089],[-129.60791559215912,58.30736018784854],[-129.60766652133722,58.30599182013129],[-129.60720692731732,58.30051295930269],[-129.60701612134295,58.296914223514],[-129.61107423843808,58.29442366723318],[-129.61776997885323,58.29323704593863],[-129.62241359318514,58.292518818065005],[-129.6258596600605,58.29157210934744],[-129.63004478025678,58.28977852372376],[-129.63431992744864,58.28722743899185],[-129.63438947272493,58.28574266733713],[-129.63138359951407,58.28250766358159],[-129.6290619725728,58.280584231568355],[-129.624439981899,58.27786907509811],[-129.62116840979374,58.277031628480984],[-129.61778960627277,58.276143072731095],[-129.61495189061003,58.27541961811957],[-129.60881604726305,58.27266383328872],[-129.6066008928366,58.27062039417441],[-129.60580695676214,58.26914090382895],[-129.60367151004246,58.2659000503644],[-129.6032760667138,58.26298096979928],[-129.60218139636493,58.262480116484454],[-129.59969767899034,58.262834286896414],[-129.59331094180783,58.26310417230594],[-129.59047696457986,58.26232623161981],[-129.58372755049098,58.26094283197365],[-129.5764198974575,58.25888201267054],[-129.56900532556423,58.25669785367784],[-129.5651856245119,58.25546932649239],[-129.5608252513802,58.2542370655797],[-129.55364161430822,58.25257618860506],[-129.55144435963518,58.25126840463213],[-129.54967503981797,58.24957185375857],[-129.54550616419726,58.24724673892775],[-129.54115683209682,58.24647189837279],[-129.53500510193444,58.24737088901003],[-129.53159399745044,58.2499138829388],[-129.52657260117434,58.252975355778496],[-129.5217157130561,58.25380374940422],[-129.51470890492118,58.25544308690156],[-129.50725820210417,58.25651853084745],[-129.4988289008841,58.25743034528424],[-129.49820854008112,58.25892021797839],[-129.49444711601615,58.26031213456119],[-129.48907628918616,58.26245565700198],[-129.48618819533198,58.264309886178744],[-129.48104067977877,58.26695947791313],[-129.47677676016627,58.27042169698132],[-129.475646607897,58.273398365807836],[-129.4742676029758,58.27489876313982],[-129.46999429154081,58.27800155970977],[-129.4594289435309,58.28080806027197],[-129.45480873984255,58.28289486766376],[-129.44785135472702,58.287332928609764],[-129.44689959045866,58.288705248612175],[-129.44439981459865,58.29398125225589],[-129.44135148143837,58.29896573956282],[-129.43921133840587,58.30046727222865],[-129.4313037746794,58.30662711995664],[-129.42778154778335,58.30967339649109],[-129.41992054328043,58.31280302301405],[-129.40480698909946,58.31694268376506],[-129.39153084159705,58.32078265966092],[-129.38407516981553,58.32254298705511],[-129.37736299216868,58.32354737149655],[-129.37399646217688,58.323335311559816],[-129.3677824868908,58.321765720771204],[-129.35819925049321,58.319812752162804],[-129.35645876532604,58.319424873168565],[-129.3493759459901,58.31757063695408],[-129.34447673285527,58.31684788532914],[-129.33967999532655,58.315277761590444],[-129.33356622477493,58.312958380964105],[-129.32756240585118,58.31065399859388],[-129.3232981061184,58.30854900447916],[-129.3202248921562,58.30638753185669],[-129.31758419032704,58.303828959287515],[-129.31714589038853,58.303606151858254],[-129.312012057199,58.30140549246956],[-129.31036806273465,58.30032281033013],[-129.30805824815198,58.29816028764769],[-129.30478941746543,58.29715346088805],[-129.30044085757797,58.29642465932066],[-129.29815687287373,58.295977539452885],[-129.28978241072517,58.29435874348362],[-129.27795948899103,58.29411743427537],[-129.27080614877892,58.294381522804855],[-129.26202023105105,58.293966053533275],[-129.25343296748576,58.292511940431005],[-129.2464658568953,58.2904790863597],[-129.23678179867312,58.287891398975376],[-129.22786451471964,58.285751846287475],[-129.2154177587437,58.27906017372795],[-129.20458272995202,58.27075680445551],[-129.19943683274036,58.266369297186635],[-129.1917789326797,58.26046013244447],[-129.17969891267808,58.25587724092442],[-129.17037841862046,58.255055433861564],[-129.1612614620255,58.25359932105755],[-129.1574536134239,58.25207179019928],[-129.14831953641718,58.2487825273573],[-129.1399529617963,58.246184466454835],[-129.11816767386168,58.24390721108919],[-129.0941146909035,58.242720855416806],[-129.08708295470603,58.243143238839366],[-129.07455514830883,58.246772525722726],[-129.06723530523777,58.25165621827536],[-129.06368025632625,58.25383948884966],[-129.06324635796096,58.25366971742411],[-129.05845160577795,58.25007783672402],[-129.0490893315654,58.24421803170778],[-129.03758399957692,58.24075977186878],[-129.02848217337598,58.239977247912435],[-129.02317530061345,58.23970159677366],[-129.0223080922733,58.23947857905232],[-129.0174175278443,58.236920626908905],[-129.0117731509881,58.23487349651854],[-129.00906224094,58.23401803074175],[-129.00212102484133,58.23209839852736],[-128.99106439631777,58.2299468179737],[-128.98435080864252,58.229332721605225],[-128.97872133131995,58.22928709925881],[-128.97719931593605,58.22768601592048],[-128.97251970882044,58.223639753460304],[-128.96546485531195,58.219879427342214],[-128.95993354045396,58.21754932383584],[-128.95267158557817,58.21539184615071],[-128.9447684640791,58.21432595858511],[-128.9389238653582,58.213924146884246],[-128.938923211154,58.213699602589124],[-128.9367459176212,58.21135797969336],[-128.93457235569582,58.20924979132398],[-128.93110814500727,58.20833747596811],[-128.92754151711375,58.20914291636472],[-128.92257157510826,58.21006865921472],[-128.9177020955489,58.20996805827447],[-128.91488686731455,58.20940050194224],[-128.914451241351,58.20853869612005],[-128.91303155347296,58.20551560362781],[-128.91161575577416,58.203453510756226],[-128.90501933363504,58.20294982333733],[-128.9008064184885,58.204505069789064],[-128.90080740423736,58.20484636636796],[-128.89962903734855,58.207871851625086],[-128.90028791812549,58.20976181191154],[-128.9002980056147,58.21295922752486],[-128.89900693915152,58.21444223548008],[-128.895547054081,58.21501994428099],[-128.88689090168995,58.21469448426649],[-128.88039781452756,58.21372923717493],[-128.8742270746287,58.212936419331925],[-128.87206449879397,58.213566557893984],[-128.87304026823074,58.213851055536416],[-128.87489278271585,58.21779041574324],[-128.87641751399073,58.22047032735132],[-128.88281375369695,58.22435707585962],[-128.88283444619444,58.22955731950848],[-128.88371319356898,58.233787045281204],[-128.88307401736003,58.23669306783429],[-128.88080949675887,58.23852915519647],[-128.87756581038553,58.2409880070486],[-128.87487020048044,58.24362367412989],[-128.87379652072926,58.2467096337556],[-128.87370098774542,58.25070883404917],[-128.8751213306132,58.25391210553355],[-128.87643191384691,58.25733330927443],[-128.87763586339705,58.26099933160489],[-128.8780833052555,58.264708520128885],[-128.87732415228402,58.26470681565242],[-128.86713753505572,58.264089218374686],[-128.85998453779624,58.26289431103113],[-128.85532295140226,58.26193354166126],[-128.84871127248516,58.26022353493028],[-128.84469503064773,58.257766642179014],[-128.8366749170002,58.2543523236822],[-128.82735397813119,58.25218653689298],[-128.82172231155837,58.25161334610784],[-128.81479049095284,58.25082466169424],[-128.81121492298303,58.24985763089476],[-128.80179228056383,58.24842879010754],[-128.79345368348467,58.24791986593546],[-128.78977054630218,58.248095228318626],[-128.78804197633087,58.250897564461425],[-128.78707091725002,58.25421410336457],[-128.78317174359927,58.25610033192668],[-128.7767806197005,58.25495716391367],[-128.77006401908199,58.25387430579274],[-128.7610735921982,58.25342170339223],[-128.75620146433099,58.25571333778357],[-128.7539270179843,58.258508436108926],[-128.7512195503926,58.25913875233757],[-128.74179678833747,58.25919667158714],[-128.73388558864698,58.26050757245914],[-128.72630369815133,58.26188317034287],[-128.7231613836517,58.262800167563746],[-128.71709134000022,58.26691096525282],[-128.7134003489039,58.27113513759672],[-128.71144883943532,58.27366249030083],[-128.6985542752935,58.27142510503246],[-128.6914035617369,58.27124516799176],[-128.68273323859898,58.27176882220143],[-128.6806773382928,58.27188170204242],[-128.67765075314998,58.2674781762937],[-128.67484261226812,58.26410314818945],[-128.66531655698176,58.26164291821805],[-128.65578437939078,58.26043956372929],[-128.64701501528083,58.25946301601276],[-128.64625677649678,58.258660650221984],[-128.64335321537612,58.25271829987698],[-128.6406577786638,58.24882855199991],[-128.63753130034175,58.244650866900415],[-128.63450833046306,58.242078731802415],[-128.6352704324206,58.24116566600926],[-128.63831086268388,58.23842959062792],[-128.63735151526066,58.233796242304656],[-128.63292166192974,58.23155710749269],[-128.6220999297787,58.23092470111363],[-128.61625196533063,58.23182911725364],[-128.61302148250246,58.228173944097726],[-128.60761996141062,58.225423074288656],[-128.60525173287982,58.22217311000394],[-128.60213271294086,58.21770732506588],[-128.59738801110117,58.214449448042295],[-128.59307031149788,58.212269833997944],[-128.58984288247333,58.20826396279743],[-128.58651940885244,58.20203273683213],[-128.58243690517762,58.19694764146023],[-128.57887715503966,58.19482491819116],[-128.5779090308425,58.19379282768997],[-128.57900713418695,58.190484912909625],[-128.580231400173,58.18351061895554],[-128.57939395466755,58.17808471653368],[-128.57790781361354,58.17265336396841],[-128.57543619672606,58.169791319130276],[-128.57350465780118,58.16744869961036],[-128.57038684917327,58.16389855787779],[-128.5678172689098,58.15954762947709],[-128.56534694354858,58.157376901628794],[-128.55585640897675,58.15456796724753],[-128.55570393671064,58.15454505858273],[-128.55568089410426,58.15454998802358],[-128.55559526879284,58.15460325532039],[-128.55550715918875,58.15479126760561],[-128.5557601279364,58.15496267206446],[-128.55503658369605,58.15557138625817],[-128.55419930438137,58.154314457161156],[-128.54845832952907,58.14569319935894],[-128.54466407546352,58.13999364410144],[-128.53869057828965,58.136564548325694],[-128.52775903234541,58.130288118867576],[-128.52504245892186,58.13149996825234],[-128.4945618499224,58.14509250318451],[-128.49457945844082,58.14532451908808],[-128.49454969823148,58.149383804025405],[-128.49311230131113,58.15378359154964],[-128.48844595701155,58.156860526646064],[-128.48832902301484,58.15776963442167],[-128.4813951619942,58.16056514097647],[-128.47069065607334,58.16208291225444],[-128.4660400498799,58.162590606090035],[-128.45080539869426,58.16295986199929],[-128.44433301009238,58.16202747183714],[-128.43830876504114,58.15904830517608],[-128.43036457801085,58.153885847801504],[-128.4266121815524,58.150559703573926],[-128.42445273902732,58.15055390164838],[-128.41966295809874,58.15470807610742],[-128.41790418830246,58.15790949878367],[-128.4137339879908,58.164638325302455],[-128.41207915379533,58.16829576515321],[-128.40890534327633,58.172456405076346],[-128.40681335123872,58.17645389009485],[-128.404846912511,58.17862627676635],[-128.40256637436232,58.17987040392795],[-128.3992055099401,58.18072077287396],[-128.3917476129862,58.18064748596491],[-128.38937555164333,58.18018693224253],[-128.38246298746338,58.179708321494346],[-128.3759842725234,58.179176773985404],[-128.36613861898383,58.18006024607843],[-128.35735938274075,58.182262151808516],[-128.3513947135557,58.18413579014287],[-128.3449630696522,58.18869314146834],[-128.3350962670274,58.19122683905505],[-128.33172864945476,58.192587418495485],[-128.316961974282,58.19751250921422],[-128.3033928920468,58.20175091661075],[-128.30273823969378,58.20221111634966],[-128.29423178771714,58.207555823358646],[-128.29044827586367,58.215486311461994],[-128.2892062203343,58.21947637081014],[-128.286549200426,58.22438848207557],[-128.28992272043808,58.231029645349636],[-128.2916252740788,58.233317307904436],[-128.30162860654116,58.23832742204154],[-128.3017312916332,58.23855913187545],[-128.30156914244816,58.24278233878076],[-128.3005415319868,58.24689467642552],[-128.30026627293282,58.25151496599962],[-128.29772087802522,58.25579697328036],[-128.29636930674906,58.25962751451475],[-128.29723712631775,58.25973839702287],[-128.30403433687613,58.26182207312761],[-128.30812462794984,58.26377234934809],[-128.30678371629972,58.267091005331714],[-128.30231343872117,58.269242029132045],[-128.29827008293208,58.27203215753635],[-128.299321810898,58.27437590097292],[-128.30456319186314,58.279647214502845],[-128.30752267830252,58.28572087764634],[-128.31234161634802,58.290361660425795],[-128.31630293677142,58.29443337379587],[-128.31658278236347,58.29826313710116],[-128.31404583246731,58.30144992249956],[-128.30923993359866,58.30423559864116],[-128.30736540977233,58.30657571622916],[-128.30143683002032,58.312155299961084],[-128.2962610267422,58.31808100325486],[-128.29009636296385,58.32485853746366],[-128.2862512852528,58.328156887533154],[-128.2781677259367,58.332128624858896],[-128.26512954822172,58.340718492777015],[-128.2620249751594,58.34533281822901],[-128.2614288828169,58.34915959263473],[-128.2608116876255,58.354468547630425],[-128.26240011377251,58.35750430010439],[-128.26572231187012,58.36060070744883],[-128.26761950052568,58.36478078530803],[-128.26889684794472,58.36690570296624],[-128.27062711744807,58.367415406092704],[-128.27536096723648,58.37064051986601],[-128.27761302357723,58.372928538204505],[-128.27834792255675,58.37487396822209],[-128.27844826782894,58.37544705526716],[-128.28036698392972,58.3782526033924],[-128.28065070649257,58.38151690652528],[-128.28420899519486,58.38357618839187],[-128.2913541562413,58.38578102999365],[-128.293294639269,58.38687067744251],[-128.29499806586801,58.38985039149274],[-128.30158988523146,58.392845529232616],[-128.30678067952286,58.3950829750876],[-128.30410808962446,58.39999656545219],[-128.28998389457746,58.40708994469108],[-128.28647325373657,58.409529577353155],[-128.28308297992297,58.41061088723344],[-128.273131232627,58.41451522713407],[-128.2619710417875,58.41887019161267],[-128.25881516278986,58.418869179017825],[-128.24555166202524,58.4180667235622],[-128.2315942806327,58.42002272943642],[-128.22609995885958,58.42348148563558],[-128.22422729477927,58.425129006965165],[-128.2104794701346,58.427357750370845],[-128.20163586349472,58.42904710663512],[-128.20088261239812,58.4286372732596],[-128.18795756505727,58.42681769502138],[-128.1782613070689,58.427342790819324],[-128.17184229158602,58.42732051769504],[-128.1626812527741,58.4283657603084],[-128.16193096826146,58.42766827376583],[-128.15739529412127,58.425594382449994],[-128.14392581567327,58.42416553327978],[-128.13935336396747,58.42413931520565],[-128.1271575506639,58.424538687513035],[-128.11963984080776,58.424962340030916],[-128.11866676050425,58.4245644997111],[-128.11108896251682,58.422464991100824],[-128.09801366305896,58.423315550616245],[-128.09603996918224,58.423992843427506],[-128.08901261555476,58.42738880021584],[-128.0822996481761,58.431183673724],[-128.07975640527835,58.43334237152479],[-128.07704185748423,58.43280939855688],[-128.06868298841584,58.43168046257004],[-128.05987014192198,58.431465005844636],[-128.0471039698546,58.43288960655137],[-128.0379343268389,58.43415096359805],[-128.03215453276349,58.434633259245714],[-128.02767042855018,58.435634689283596],[-128.02152281125402,58.43811576498816],[-128.0181076303827,58.440043834372325],[-128.01207746305607,58.442010816435165],[-128.00649922405876,58.443000891465225],[-128.00455110863805,58.442535892725225],[-128.00242431021587,58.4401875758114],[-128.0001981525995,58.43523633060743],[-127.99877728572766,58.43346126173857],[-127.9951035652679,58.431908096510895],[-127.98811126348228,58.42937998919813],[-127.9844501275344,58.428005978382416],[-127.978358212494,58.426038902497915],[-127.97365129520368,58.42553307973064],[-127.96539391004212,58.42594096791566],[-127.961833903685,58.42655853248318],[-127.95720415785057,58.42753277425085],[-127.95557692163607,58.42772699086697],[-127.95372327710847,58.42764607470162],[-127.95180524398182,58.426299837356346],[-127.95027885498234,58.42409478870546],[-127.94856684242791,58.42034780796262],[-127.94417832078926,58.41750152305333],[-127.93512506947854,58.41716470813018],[-127.92789095061579,58.41829201019529],[-127.9234502273454,58.41875949687201],[-127.92107178376455,58.419071766987706],[-127.91816436664172,58.419687860342584],[-127.91686164438194,58.41976025480833],[-127.91583994862475,58.41897553476592],[-127.91374818783912,58.41625731038582],[-127.90381427814933,58.40680721972543],[-127.89602018131957,58.403145448777636],[-127.89116214575121,58.40166912183041],[-127.8838027558846,58.400227591572104],[-127.86842449432493,58.39946273346596],[-127.85900831077694,58.398156110718354],[-127.85661460407914,58.39818908752016],[-127.85437351062572,58.39907299332025],[-127.8527665789342,58.39961590191575],[-127.85326162981151,58.40085727782749],[-127.85144776971357,58.40162750666314],[-127.84853637813022,58.40217928587176],[-127.84758812448611,58.40287473713381],[-127.84735375544184,58.404763688530494],[-127.84383970348605,58.40641016459359],[-127.83898758338988,58.407329479245284],[-127.83770360236832,58.407795964870196],[-127.8339245234561,58.40842210000127],[-127.82886956278385,58.40968503312442],[-127.82635021102587,58.41165878726274],[-127.82215375577071,58.412685345912976],[-127.81845805130827,58.41273521271195],[-127.81486664873847,58.412774595333296],[-127.8152606525559,58.41186234370605],[-127.81382239553469,58.40902615002496],[-127.81147072978438,58.40756712870275],[-127.80833839632437,58.40577731459444],[-127.80643025679828,58.40450084117374],[-127.80419171275749,58.403156928189155],[-127.80384209893786,58.4002522293348],[-127.80355403088774,58.39636795241623],[-127.80284688180204,58.39523701391134],[-127.8023531719185,58.39398648809757],[-127.80294458205631,58.39266758108102],[-127.79873832668292,58.39100868803886],[-127.79315215204633,58.39016719721726],[-127.78852588748077,58.38891765702129],[-127.78676062965039,58.38831250801421],[-127.78624920003111,58.38665810736476],[-127.7850242947044,58.383702180076696],[-127.78407716899675,58.382008654904396],[-127.7840308399582,58.38097665267898],[-127.7847327175931,58.379656390552135],[-127.78567014960863,58.37879094692466],[-127.78733343249078,58.37710774318318],[-127.7868037572361,58.37500465103916],[-127.7872793650767,58.37351677772998],[-127.78759441550315,58.370890680885374],[-127.78846114168952,58.36847276959992],[-127.79039458016423,58.36560071252781],[-127.79277201035276,58.362947203989016],[-127.79272392684459,58.361861374994156],[-127.78938695800808,58.3601817567203],[-127.78599273411398,58.35966111625167],[-127.78120838290727,58.35955385494839],[-127.77957718217237,58.35957541160575],[-127.77815579487792,58.35936072536357],[-127.77724070890261,58.35834021605963],[-127.77577566429476,58.35716533152575],[-127.77401449226271,58.356676734538475],[-127.77063105796303,58.35637106895964],[-127.76726644596009,58.356415250677486],[-127.76585867531305,58.356550437660744],[-127.76455339442091,58.35650468885372],[-127.76293868925018,58.354415785815696],[-127.76220594313004,58.352656532954406],[-127.76106523840075,58.35141441012207],[-127.7592695231302,58.35011798565121],[-127.75589420362897,58.3499914323816],[-127.75244071779335,58.350494329186766],[-127.75081203237451,58.350515509622845],[-127.74928444590589,58.350301908300764],[-127.7478268740798,58.349351119904924],[-127.7439240154418,58.34705825080909],[-127.74094229008199,58.345956526540014],[-127.73020921748748,58.34642705457678],[-127.7176579850802,58.35000859424597],[-127.70699006844518,58.35453479879869],[-127.70409021321514,58.36033587051405],[-127.70422627323038,58.3634677500166],[-127.70433324320055,58.365917617331306],[-127.70236197461955,58.36806154448691],[-127.69726978530771,58.36845799531825],[-127.69395990521535,58.36735933107266],[-127.68892352414896,58.36644385865702],[-127.68424292268365,58.366277973283374],[-127.67769796478814,58.36573110678632],[-127.67354630240024,58.36520809411072],[-127.67079901851984,58.36443410176471],[-127.67257956181744,58.36293052238554],[-127.67595258471225,58.360500271981365],[-127.67433916194416,58.358284640982454],[-127.67048306158335,58.35702162698847],[-127.66415114969169,58.356300895865814],[-127.6593878785822,58.35669186105437],[-127.65518330470549,58.357542680862],[-127.65442841513905,58.35766867521278],[-127.64965119597257,58.35772725690765],[-127.64611217010885,58.356271124499884],[-127.64282269209761,58.352890457667456],[-127.64066181850637,58.35058238495429],[-127.63595409491144,58.34972384142754],[-127.63193229869765,58.34964693083627],[-127.62924054280607,58.34967951700162],[-127.62855045152436,58.34791798990205],[-127.62857603802884,58.344624852221926],[-127.62908898673163,58.34088028241719],[-127.62968088129337,58.3389158439218],[-127.63264409445821,58.33701021357847],[-127.63684323571611,58.336247701151926],[-127.63932659346919,58.33497174793486],[-127.64061379098236,58.33344322548135],[-127.64037461522757,58.3318435157239],[-127.6388081528375,58.33088396152636],[-127.63660847433118,58.33091071987445],[-127.63370512782717,58.330323117337315],[-127.63196642313953,58.32927579605475],[-127.6301927820654,58.32742869553004],[-127.62793491148057,58.32612051406499],[-127.6263428817146,58.32453827769708],[-127.62288594154501,58.32288874399265],[-127.6180643548798,58.320989564698685],[-127.6158073010359,58.31968119007549],[-127.61927451991757,58.31768117815447],[-127.61871277278621,58.3164422309456],[-127.6151182715777,58.31550681210599],[-127.61218561954074,58.31420649745304],[-127.60992923194144,58.31289915667042],[-127.60920706406428,58.31183941560894],[-127.6086457400233,58.31060043514038],[-127.60692018284631,58.30981977143445],[-127.60536427346082,58.30903818547919],[-127.60295036168147,58.30799859235702],[-127.59956846275838,58.30684365764032],[-127.59917337353879,58.306709196897685],[-127.59628010238495,58.30629802732781],[-127.59409706833935,58.306679657820176],[-127.59253391457088,58.305719582191074],[-127.59250729029789,58.305097058896635],[-127.59194278725272,58.30376828594889],[-127.5880008897868,58.30256920022572],[-127.58641533806306,58.301075148046486],[-127.58645861097068,58.300088203951454],[-127.59079460286515,58.29903597610342],[-127.5947202845272,58.299564073348876],[-127.60181479640234,58.30061996546753],[-127.60723370517371,58.30050146514369],[-127.60983665371631,58.30047034112162],[-127.61568465718675,58.30023862989503],[-127.62491460423571,58.300477594777746],[-127.6308812860613,58.30052210347916],[-127.64405407304184,58.301627650692005],[-127.65045309347948,58.30160316389074],[-127.65370669442548,58.301572185438964],[-127.65773293111782,58.30186379552274],[-127.66245127359349,58.30317920794734],[-127.66477283445627,58.30417399661147],[-127.66935318521101,58.30475468281773],[-127.67494915422715,58.303652651760906],[-127.68078222287097,58.30050940175725],[-127.68125690485572,58.2989053771231],[-127.68452433748205,58.29418694804702],[-127.69081756602009,58.28913417480474],[-127.70288361247594,58.284825125805995],[-127.7075888594688,58.28328409295603],[-127.7130636053454,58.27956940767958],[-127.71512340716677,58.274578363126246],[-127.7135689540231,58.26877156335797],[-127.70677654978202,58.26457558759009],[-127.69763842206771,58.26126184235545],[-127.69532885768666,58.260491984892255],[-127.68810655602341,58.2588143086618],[-127.68503923718256,58.25798197730957],[-127.6828418487795,58.257327216162345],[-127.68029578463228,58.25604835035671],[-127.67882070619514,58.254468781330395],[-127.6789010988233,58.25126279445145],[-127.68139192487301,58.248726917693865],[-127.68370422032802,58.244532402694745],[-127.67973892969876,58.23784898011994],[-127.67392320057765,58.23352269091963],[-127.67004599781473,58.2288848201495],[-127.66960820367646,58.22369244650726],[-127.66639482962653,58.219396394034945],[-127.66078543132976,58.217239581022675],[-127.65641643915933,58.21626119783767],[-127.65300884890026,58.21492971186918],[-127.65017915147654,58.21205596813336],[-127.65172485346991,58.21015178091858],[-127.65796464575635,58.20933872752468],[-127.66422938388155,58.20909062527664],[-127.66981117897957,58.20806074853808],[-127.6744608564532,58.2053725417244],[-127.67458218477374,58.20314472747222],[-127.67200433692392,58.20106728083939],[-127.67102745182824,58.19839533926718],[-127.67291408143336,58.196944494987505],[-127.67877092938903,58.19481561818453],[-127.68197085562214,58.193752167518895],[-127.68520799146853,58.19109028029118],[-127.68575664356436,58.18868655403044],[-127.6837378570676,58.18699732679721],[-127.6792380012801,58.18545585929393],[-127.67649162441208,58.18445788077098],[-127.67562116639014,58.18429819892862],[-127.67447628372487,58.18283132500599],[-127.6774017595702,58.177830610312355],[-127.68245532891295,58.174742137113704],[-127.68464202626416,58.17272184793588],[-127.68354818797796,58.169934855438974],[-127.68067709676296,58.16848074928609],[-127.67491231730715,58.16763727503151],[-127.66708411357644,58.1665319804749],[-127.66358473147258,58.16555211924189],[-127.66218260530427,58.16305607285278],[-127.6620109761023,58.1615142351327],[-127.66195936908031,58.16025816070673],[-127.6598053921561,58.157834264490326],[-127.65637741313331,58.15604547091222],[-127.6540618217045,58.154925082621745],[-127.649251578927,58.15350325278277],[-127.64091320608652,58.153031118334376],[-127.6355786957527,58.15206404644267],[-127.63264039838596,58.15152538862613],[-127.6301079501018,58.15035338832684],[-127.62706324519351,58.14987874044852],[-127.6219465686919,58.1515385511565],[-127.61802972388085,58.153515807617595],[-127.61395668891821,58.1542471204439],[-127.60984571761965,58.15412601415441],[-127.6042080629686,58.153628108318046],[-127.60009787754983,58.15349771867104],[-127.59310290332307,58.154146555760406],[-127.58612392488531,58.15525262485593],[-127.57957669842561,58.156353239468494],[-127.57551642642002,58.15748715454064],[-127.57173243748495,58.16014366892163],[-127.569432294732,58.16211846943604],[-127.5671830990323,58.16260257374287],[-127.564467815268,58.16228421615418],[-127.55803095977467,58.16069858075214],[-127.55431194756538,58.15953894353016],[-127.55179817580579,58.158769187752],[-127.55069100887252,58.15809981108091],[-127.54952076334598,58.155779541442676],[-127.5486741127269,58.15344655436171],[-127.54812759044715,58.15053563215832],[-127.54903214779459,58.14875688951039],[-127.54978470777982,58.148694331596666],[-127.54467890502613,58.1478915818675],[-127.54176718926934,58.14803282727025],[-127.53707429164041,58.14683009465878],[-127.53663887630022,58.146727376236434],[-127.53259876426098,58.14550802870772],[-127.52800408720091,58.14401663418843],[-127.523106791237,58.14298630272135],[-127.51686430384254,58.14077723575743],[-127.51323240841181,58.138933368603745],[-127.50811502282474,58.13784216216261],[-127.49956842886935,58.14027182154531],[-127.49359240139367,58.14221453019335],[-127.48773473565625,58.144451859228646],[-127.4865772268501,58.145200727828104],[-127.48468267691544,58.143624029828835],[-127.4813747756945,58.1418295722284],[-127.47717487610343,58.13919217761197],[-127.47579290901811,58.13686473098716],[-127.47315707517228,58.13563713723004],[-127.46738305031396,58.134273369624964],[-127.4652129449327,58.133947071238936],[-127.4624963850062,58.13351899715589],[-127.4595274476976,58.13195370826961],[-127.45942704208868,58.12921722750976],[-127.45685581894323,58.12673204522053],[-127.45321497102667,58.124599507125566],[-127.4489308972311,58.12253666955893],[-127.44599310785911,58.1218773069596],[-127.44328184253258,58.12150265690659],[-127.4382850555833,58.12058706330463],[-127.43437276102848,58.11988406149598],[-127.42461885695664,58.11865981957629],[-127.42179026404827,58.11806160300832],[-127.41749884761708,58.1157106670416],[-127.41278403499733,58.11359743328804],[-127.41060811029533,58.11309980551487],[-127.40678595187977,58.11176679454136],[-127.40538589073692,58.10875681899975],[-127.40459099607367,58.10756247299732],[-127.4024426539276,58.10473086390384],[-127.40429199231818,58.10208173029171],[-127.41166034693133,58.10001171883078],[-127.41870336565172,58.09777421793209],[-127.42219980343104,58.09603181638299],[-127.42761274152387,58.093577801064356],[-127.43328405936035,58.092323474791804],[-127.43657722033136,58.09092393020712],[-127.43714064869651,58.08858433178933],[-127.43848447892596,58.086909484835],[-127.44068902446362,58.08534203743881],[-127.4410455514833,58.0832828904286],[-127.44095979133324,58.08083360682327],[-127.44125647632765,58.08008547714808],[-127.44206423510002,58.078542030831265],[-127.4476222682151,58.07722548381988],[-127.4528723782014,58.076369778228724],[-127.45707049060545,58.07621641152348],[-127.46099088645215,58.074351701893896],[-127.46311022930001,58.073359224918036],[-127.46577993990738,58.072701736920266],[-127.46678684607612,58.07075208007856],[-127.46662368009372,58.06921015831114],[-127.46644612762826,58.06727349513578],[-127.46746865495415,58.065781397769825],[-127.47096864451206,58.06426206341624],[-127.47360583429014,58.06268932334669],[-127.4766402803146,58.060259519928245],[-127.47752162739003,58.05786243708128],[-127.47716572728932,58.05700477284728],[-127.47614582494943,58.05558902012384],[-127.47631543817158,58.05147663025523],[-127.4774214356734,58.04930145993871],[-127.48182334460404,58.045994849497774],[-127.48374586674834,58.04409777407366],[-127.48462961003747,58.04322637402463],[-127.4851513623096,58.04078390853306],[-127.48507880227916,58.04077013081225],[-127.48421875186789,58.03640671356574],[-127.49170674176801,58.02869926905401],[-127.50049202820507,58.02351894741575],[-127.50088316093455,58.0233732016744],[-127.50100456802865,58.017546155357486],[-127.5032757354545,58.01500771329021],[-127.5074011109397,58.01313936355165],[-127.51461259156618,58.01032050663936],[-127.52340711616827,58.00680113467821],[-127.52372593461068,58.006626979335095],[-127.53020344583356,58.00449771577148],[-127.53405989279246,58.00400473015056],[-127.537367448695,58.003338461943045],[-127.54249020836664,58.00225626791023],[-127.54765647434701,58.00231314688995],[-127.55089581835841,58.002616590796116],[-127.55459327958211,58.00365951892685],[-127.5599737613166,58.00372240399025],[-127.56519680388901,58.00252148883255],[-127.56742380245981,58.00163379217908],[-127.56877172397526,58.00037048078202],[-127.5688531080769,57.99712967757246],[-127.56974862179499,57.995297301092194],[-127.57168250494144,57.99247446696552],[-127.57298500277848,57.99006290882967],[-127.57503348447453,57.98746304897031],[-127.57828682734447,57.985432261656825],[-127.5824407583243,57.98453048486605],[-127.58790856017693,57.98407065102431],[-127.5925040742837,57.983441513618615],[-127.59393392899784,57.98160260580732],[-127.59343141056084,57.979777801575466],[-127.58969015496417,57.977596750584894],[-127.5783553056645,57.97629541144761],[-127.57480406067027,57.9762207096552],[-127.57394230795494,57.976168057885616],[-127.56662510515373,57.975913154029264],[-127.56133879803436,57.97540076325674],[-127.55667624234897,57.971569347520536],[-127.55580234205746,57.968438526406864],[-127.55665772873682,57.96551189736805],[-127.55853652271112,57.964125864451375],[-127.55920656407099,57.96206292386613],[-127.5547896772622,57.95896453184502],[-127.54915999612551,57.957827506469584],[-127.54604042338039,57.95774704607869],[-127.53924214138954,57.95691032558574],[-127.53359085361559,57.955198559483286],[-127.52985658384488,57.95301587653849],[-127.52556771641314,57.950381768789214],[-127.52213607486067,57.947665960580466],[-127.52091955946192,57.946764494559076],[-127.51617686524727,57.943399428740136],[-127.511537742554,57.940015093493926],[-127.50691560708476,57.9369804076978],[-127.50394097387363,57.93495899111624],[-127.50150821387588,57.93303909792381],[-127.50128934170438,57.930017387293894],[-127.50278370196887,57.926985348969566],[-127.49963902285951,57.92324282814501],[-127.49266947195473,57.92051232311042],[-127.48592643559017,57.91801226110876],[-127.4787464261455,57.91535520100712],[-127.47257697874929,57.913871115392155],[-127.46318672822902,57.915230892347395],[-127.45522695338117,57.917705051592485],[-127.44737277461257,57.92006990028436],[-127.43775687797036,57.92125084700399],[-127.43346742139936,57.921297067954086],[-127.42552996648186,57.92143607451101],[-127.41481946036126,57.921945077316565],[-127.40449727467208,57.92135435953884],[-127.39566574127659,57.92041522133802],[-127.3926286410698,57.91941505867668],[-127.38727912357136,57.916787825567255],[-127.38226539109277,57.91448892258044],[-127.37694469152346,57.91255194906259],[-127.36514830097428,57.91271823591097],[-127.35850180454212,57.916088359041886],[-127.35713891802575,57.91701752804254],[-127.3526792549004,57.92162133394027],[-127.3532033050993,57.927735853663584],[-127.35387352989875,57.93177605988091],[-127.34526767826321,57.93442961179097],[-127.3362504755382,57.93445751048814],[-127.32795200045297,57.93333801781163],[-127.32172581168406,57.93339093747036],[-127.31603825678616,57.93670455993381],[-127.31520966440146,57.93768186613458],[-127.30931787310558,57.941383076996644],[-127.302381358555,57.942707307142506],[-127.2943918534,57.941349380283086],[-127.28909473326108,57.940198279244946],[-127.28229079961197,57.938828169501704],[-127.2759852809201,57.93625949891643],[-127.27066820615013,57.934416932996214],[-127.26397048618155,57.933107712934834],[-127.2618391099706,57.930103932790495],[-127.26021852943256,57.92623387664462],[-127.258143130174,57.92150669507971],[-127.25768406886051,57.91712318297631],[-127.26153095542831,57.913084821073404],[-127.26563268083399,57.910309132964805],[-127.27054582380454,57.9062693608114],[-127.27117911602849,57.90586850544525],[-127.27382404815192,57.90127598207408],[-127.27144213275231,57.8970724889848],[-127.26885244663322,57.89304144170914],[-127.26574747344154,57.88976001224263],[-127.26717353754417,57.887287888985206],[-127.27312808205734,57.88569671952979],[-127.27526261576247,57.88196154376022],[-127.27559582941302,57.878880687446184],[-127.27822866950282,57.87741978461722],[-127.28311877939066,57.876179349417676],[-127.28437184806226,57.87508155840851],[-127.28557059907916,57.872333297621324],[-127.28426701707703,57.868299194831536],[-127.28415447633019,57.8681208273325],[-127.28332886315037,57.86567028092228],[-127.28341940444618,57.861739389780254],[-127.28642367877177,57.85845331203762],[-127.29150548106779,57.85658263032875],[-127.29499098034653,57.85500545505634],[-127.29174910199629,57.85081090160455],[-127.28560981628013,57.84961423640572],[-127.27654190745226,57.85071547946742],[-127.26829493055786,57.85067774007464],[-127.26057734519011,57.85040118849238],[-127.25697673033088,57.84821010030071],[-127.2562774771824,57.846323524800766],[-127.25424736019372,57.84303187142046],[-127.25214908464858,57.84094313939048],[-127.2500556733743,57.8389620032229],[-127.25006349682424,57.83570497501306],[-127.25318832826032,57.83288516829995],[-127.25760343701553,57.83021459162816],[-127.26086176993012,57.82829954611814],[-127.26246917983272,57.824856886204536],[-127.26033759001267,57.821629172452724],[-127.25419208572504,57.82019792919389],[-127.24768002303577,57.82059119923353],[-127.24277275716577,57.82109476155342],[-127.24170134261374,57.82110477669638],[-127.2351565557748,57.82047491193393],[-127.22941040370189,57.81795319728697],[-127.22470692116757,57.81445265814572],[-127.21962855801016,57.81283954096741],[-127.20550757091426,57.81284280380245],[-127.19962705049393,57.812779392013226],[-127.18794343291795,57.81206791828921],[-127.1806412657888,57.81110123287755],[-127.17760740346723,57.80970162167756],[-127.1734911995487,57.80790777461671],[-127.1687365862537,57.80594335190999],[-127.1662663547529,57.80593141707703],[-127.1667869919519,57.80497022081174],[-127.1637288575698,57.80302324153417],[-127.15660995709425,57.80085143782835],[-127.15039922402988,57.80055547386898],[-127.14954506480215,57.80056286894255],[-127.13564677782779,57.800673452562584],[-127.1229793453221,57.80293436952466],[-127.11061674191893,57.804518642286624],[-127.10411849864228,57.80547895658299],[-127.09948314294563,57.80819097903614],[-127.09778093801103,57.808608784016066],[-127.09226336294745,57.81025123175831],[-127.08288353535187,57.81152125480229],[-127.07518142774335,57.81152100366722],[-127.06972811793446,57.81161885183635],[-127.06067081921144,57.81305516522392],[-127.05588567480487,57.81416988307605],[-127.04883118112805,57.814387245029586],[-127.03941443202416,57.81429077902626],[-127.03174632628895,57.815705265061226],[-127.02783908667232,57.817790061864265],[-127.02678417224257,57.81848006616666],[-127.02382260030194,57.81993838846323],[-127.01860293031426,57.820821838588],[-127.01368449828345,57.82097607736394],[-127.00897698470104,57.82094909886407],[-127.00416804949198,57.82126364402915],[-127.00030410972577,57.8251775276319],[-127.00141747555352,57.83173646121718],[-127.00040715880603,57.83413953458597],[-126.99259590750222,57.83904285928638],[-126.9936547467613,57.84309022468669],[-127.00101726365945,57.8465250700232],[-126.99927142564937,57.84973220358621],[-126.99247561301627,57.852232428678086],[-126.98663881331771,57.85449192519099],[-126.98202358034024,57.858689071991776],[-126.9806382446919,57.863723615311024],[-126.97784619597344,57.86814046780559],[-126.97501070714023,57.87061962326584],[-126.97305901628853,57.8743932181642],[-126.96856472068754,57.879387591680874],[-126.9622423221096,57.884278419364655],[-126.95512868135913,57.88735327958257],[-126.94482122524667,57.89130282579111],[-126.93926631813822,57.892364963473746],[-126.93488372461466,57.892907225380064],[-126.93318801001529,57.892919121244326],[-126.93239592660714,57.89483575454411],[-126.93108768713387,57.89750966585122],[-126.92912468933376,57.901614733691325],[-126.92727093807459,57.905889500788696],[-126.92725295102895,57.90845571546314],[-126.92766735645118,57.909942241732686],[-126.92914990582054,57.91246212001094],[-126.93384716182103,57.9153183909134],[-126.94068510779681,57.91853625591488],[-126.94773138180622,57.922936679677086],[-126.94901091698027,57.92403119380604],[-126.95369515959392,57.9290044419444],[-126.95569734040166,57.93425702541164],[-126.95554740021356,57.94019800840604],[-126.95574210359685,57.94332808971446],[-126.95711939565652,57.945902358724574],[-126.9635194986303,57.951275825359474],[-126.96490837450132,57.952252792865245],[-126.97132314664836,57.95643243704645],[-126.97256774270426,57.96304537634954],[-126.96621123828736,57.96635772781892],[-126.96395058854277,57.96680478557509],[-126.95975778284438,57.96782204417191],[-126.9507293602328,57.96849685624794],[-126.94384102919705,57.970483929431595],[-126.94468171146225,57.973107062418784],[-126.94510398092916,57.974135966665926],[-126.9463553993201,57.979501942125786],[-126.9480324430932,57.98504437861248],[-126.94907428139929,57.989326132646966],[-126.94724287961621,57.989832666162414],[-126.93992117490757,57.99182262806876],[-126.93916845021523,57.99204328232298],[-126.93065636676657,57.99459744123216],[-126.92527229615325,57.99584624735599],[-126.91870976375884,57.99679786256547],[-126.91548926096104,57.996452086680556],[-126.90764397019633,57.99620057003158],[-126.9013002190891,57.99659350338409],[-126.90000906840415,57.996647080005815],[-126.89387595012896,57.99754073550025],[-126.8895671682493,57.9983950451947],[-126.88805876127452,57.99879093281755],[-126.88341550837578,58.00005105945351],[-126.87280534510221,58.00068615168433],[-126.86249297396442,58.00007121097294],[-126.86106732960955,57.99980224662611],[-126.85408685176549,57.999218967664504],[-126.84646272677338,57.99845994635489],[-126.83958509400411,57.99838672572402],[-126.83591990611436,57.9992262742384],[-126.8342983766373,58.00007988602245],[-126.82925971232565,58.00335056116091],[-126.82067726955476,58.006041680065664],[-126.8148694908863,58.00828463504929],[-126.81307589317124,58.009049310609676],[-126.8020563692145,58.00817377225594],[-126.79861800107405,58.00822129877998],[-126.78498380548947,58.00885847243895],[-126.7748487066344,58.010712281337895],[-126.77024556727717,58.01345775942961],[-126.77100363062247,58.01584921042869],[-126.77113845163365,58.018701894822144],[-126.76774327328927,58.01977131294894],[-126.75867143893727,58.021375503452845],[-126.73616066213503,58.025611163773924],[-126.71900325835567,58.02708647177474],[-126.69657645938202,58.02389419405995],[-126.66685806653199,58.023695894067124],[-126.66648682271136,58.0153707650976],[-126.67054579211653,58.00743629302699],[-126.67240746608532,58.00004223998401],[-126.67222595497053,57.997880697711466],[-126.67183756799106,57.99491264853101],[-126.66847037646278,57.99016500524892],[-126.65786220435537,57.988225762610945],[-126.65281762459924,57.987927513265134],[-126.64070316245466,57.986048113962575],[-126.63378065190953,57.982142168637985],[-126.6232474842667,57.975812258775996],[-126.62091034074666,57.974208094614994],[-126.61432844223584,57.9696087412338],[-126.60966727026616,57.96553867549068],[-126.60766439517502,57.96335853845145],[-126.60266826633823,57.9603126404463],[-126.59539983366535,57.9582278032641],[-126.59379597912982,57.957822224793354],[-126.58180985391473,57.95576655127334],[-126.5746558605783,57.953500657214505],[-126.56943147576209,57.95136971891668],[-126.56227491154705,57.94939030098281],[-126.55529570761023,57.94935674270258],[-126.547980005232,57.950293204531974],[-126.54550440650354,57.95068018937553],[-126.53851248164807,57.94579183443329],[-126.53364858283221,57.941827747218085],[-126.52962471005273,57.93895476643163],[-126.52442961282391,57.9355659074531],[-126.50435133780826,57.936199658970565],[-126.49865149347711,57.93674148349465],[-126.48480024684795,57.93723221051848],[-126.48007798400748,57.93721341307213],[-126.46979547670922,57.93636181611225],[-126.46146337276717,57.93437221557837],[-126.45464450548275,57.93216162041223],[-126.44654651387032,57.92938077070195],[-126.43791027686314,57.92687036863437],[-126.43642106216556,57.92634591038692],[-126.43155576870667,57.92312289806187],[-126.42819443976113,57.91973340355095],[-126.42484614250867,57.915949036718764],[-126.42183716509246,57.91131121035035],[-126.4192168113834,57.90843954940444],[-126.4133578738022,57.906807061858146],[-126.41182379791157,57.90834597906621],[-126.41172704442053,57.912616832931036],[-126.41347571397519,57.91599378203077],[-126.41338180997076,57.920219803618636],[-126.4111557327807,57.92396795785787],[-126.40533973446652,57.924847076459876],[-126.40022640821081,57.923337313433514],[-126.39595705579626,57.92245288216344],[-126.38877088167578,57.922411239333904],[-126.38221787553934,57.922771127387385],[-126.38146629512924,57.92276430924778],[-126.37784585170667,57.921599313532184],[-126.37308404247321,57.918768665205455],[-126.37099701791041,57.916361080891846],[-126.36820163698553,57.91206239173188],[-126.36560182439362,57.90849880767149],[-126.36030726361821,57.905732011480715],[-126.35284758648041,57.90374233020586],[-126.34987505738256,57.902530028594335],[-126.34470378981905,57.89907149704965],[-126.34187713510676,57.89631553471437],[-126.3359506071958,57.89313674444536],[-126.32967264686323,57.891259443592894],[-126.32529677148582,57.89048968482098],[-126.32285759592293,57.889392126937985],[-126.32161816561883,57.88750214246917],[-126.32118930937838,57.88321481960383],[-126.31816197764097,57.87994751983457],[-126.31434454970278,57.878323795157485],[-126.3117126711175,57.87648188019571],[-126.3103846454196,57.87395506008002],[-126.31069034135388,57.87024918651915],[-126.30853674016336,57.866360654591],[-126.30770127538791,57.86549237565202],[-126.30267344722428,57.86106314052443],[-126.29762135995888,57.85754885352344],[-126.29294439391396,57.85608796088376],[-126.2806563967353,57.85514556770923],[-126.2661739579712,57.85607245083126],[-126.26411525746894,57.85713515181062],[-126.25663414599205,57.86050501684915],[-126.25490020095108,57.865406636475456],[-126.25541814610803,57.870142470907574],[-126.25445334682182,57.874298033443495],[-126.24510532990017,57.87931261598352],[-126.23241464222563,57.88504118259883],[-126.23174506697822,57.886065091567126],[-126.22656974588313,57.89499163347716],[-126.22929793747494,57.9011683499856],[-126.2341233250747,57.90902804841136],[-126.24059763968123,57.91945955767919],[-126.24064813333639,57.921576798969596],[-126.23623209818074,57.926276941071364],[-126.22627258600049,57.93345374383211],[-126.22011003317867,57.93905354887176],[-126.21822540506149,57.941093273801705],[-126.21495000940382,57.94318008543188],[-126.20898163093622,57.94554022790114],[-126.20786793654447,57.94563168856505],[-126.1956353625483,57.946744779160454],[-126.18289263321701,57.94561445518917],[-126.17011797637453,57.94192595485137],[-126.15319747689291,57.93339627203989],[-126.14534910541508,57.93019314971692],[-126.13776836654353,57.925338496113746],[-126.1297821084823,57.919846842338785],[-126.12363933856652,57.9171701484123],[-126.1108388178951,57.91484877940408],[-126.10093339539533,57.91613062753203],[-126.09886239871105,57.917137007242985],[-126.08857637181677,57.916767432530335],[-126.08208482872782,57.91516566311105],[-126.07224783803893,57.91416653645946],[-126.06748179289443,57.91560449941811],[-126.05878566501202,57.92261550695885],[-126.05810565897485,57.92380007281273],[-126.05295118097105,57.92723839920539],[-126.04853224616035,57.93119663661426],[-126.04804775615658,57.93621206068033],[-126.04996192855522,57.94011411793937],[-126.05955645850186,57.942137824760344],[-126.06365938321986,57.94479161584103],[-126.06382253004752,57.946334710787426],[-126.06318510091528,57.95290249942366],[-126.06328891454285,57.96311264747128],[-126.06219759311648,57.967042949843396],[-126.05633367538893,57.969046344122646],[-126.04868354455402,57.96977610016713],[-126.03715785143515,57.967393215597646],[-126.03138835223594,57.96642570715231],[-126.02304388722624,57.968688389292744],[-126.02028063152832,57.97100365617328],[-126.01583610516295,57.972224474276196],[-126.0118497515366,57.96938070920235],[-126.00907059217471,57.96576515406249],[-126.00567373552343,57.9613420949453],[-126.00293921807175,57.95960160093064],[-125.99966192847839,57.95821096377341],[-125.99494583317427,57.958192924334284],[-125.99173407435902,57.95856061816082],[-125.9897053559767,57.95954740363465],[-125.98884215588942,57.96320794385906],[-125.98681208700978,57.96711063017866],[-125.97972546733254,57.97145226593887],[-125.97189301654194,57.97591002949529],[-125.97052259728575,57.97665442851161],[-125.96730524038172,57.98136411123625],[-125.96662304247494,57.98770736203044],[-125.96215137654536,57.99327800614815],[-125.95763379525857,57.993375345155044],[-125.95091947741258,57.99131837006445],[-125.9407767419334,57.986020570725955],[-125.92823769479996,57.97937492251408],[-125.92446704961412,57.978888339634295],[-125.91289419282248,57.98080135212639],[-125.9041843090342,57.980526214529064],[-125.89123366205128,57.978730806450415],[-125.88141336651918,57.976811351235554],[-125.87904639077203,57.9765938928821],[-125.86430028961831,57.97630157190169],[-125.84952747799365,57.978510850040166],[-125.83541032015276,57.98123073094513],[-125.83368426875244,57.98141700925473],[-125.825443221706,57.97861610283516],[-125.80956462023576,57.974781176307516],[-125.80324157303818,57.971227971954676],[-125.80015230354229,57.96707822742941],[-125.79738896860438,57.959043998197714],[-125.79428631143011,57.954553210576165],[-125.79409348805206,57.94655884551831],[-125.78790349437452,57.93849233734449],[-125.78595859512515,57.932908719481446],[-125.78676646643979,57.93045172976732],[-125.78720537773441,57.92154344581638],[-125.78474466804654,57.91185005567516],[-125.78151731600977,57.906506680343455],[-125.78140121337685,57.90143081622896],[-125.78225721923411,57.900614685452496],[-125.78137155182961,57.89999980473236],[-125.78133372115934,57.89997507086784],[-125.72355248267212,57.85991359252498],[-125.70960060491849,57.86572638706602],[-125.70955297341456,57.86575207548269],[-125.70924289902128,57.86591960947385],[-125.70881789351755,57.866228188773995],[-125.70846328817731,57.866429265850634],[-125.70810854665788,57.86651035097908],[-125.7075589988201,57.86656857899082],[-125.70654419173385,57.86668969978179],[-125.7055308809463,57.86688819342315],[-125.70515070338321,57.86698603557845],[-125.70477280746925,57.867061453529715],[-125.70409512392176,57.86719676022092],[-125.70374367707899,57.86725989857966],[-125.70363805633994,57.86728882004107],[-125.70321030258181,57.867403371894284],[-125.70250374350859,57.8675913124367],[-125.70178571782168,57.86776128101052],[-125.7008588646623,57.86794871903416],[-125.69992996588127,57.86812717475564],[-125.69955419172604,57.86819809716288],[-125.69951611571119,57.86821483235751],[-125.6991487266434,57.86829137962165],[-125.69843506784295,57.86843891194],[-125.69800423968964,57.86853998334807],[-125.6978446801608,57.868590084668746],[-125.6974675636744,57.86869688337402],[-125.69659153605588,57.868849643715116],[-125.69555548051258,57.868979604052406],[-125.6949507260377,57.8690802676292],[-125.69467696697252,57.86917720269038],[-125.69447166965287,57.8692787800585],[-125.69426003829079,57.86938146398323],[-125.69404230057776,57.86945721962858],[-125.69381584273707,57.869437634737686],[-125.69357105094983,57.86934175115184],[-125.69341539193371,57.869301021745464],[-125.69331844499841,57.869298555525056],[-125.69315826904804,57.86929482203854],[-125.69291494914268,57.86927519673185],[-125.69261161665112,57.8692487038877],[-125.69239461830952,57.86923362408079],[-125.69226508035943,57.86922211044675],[-125.69207765756391,57.86919924862402],[-125.69188601913203,57.86917637677651],[-125.69174707002055,57.869154748129894],[-125.69162494777514,57.86913764398581],[-125.69157444011621,57.86912743421329],[-125.69153337299123,57.86912173195771],[-125.69147756724242,57.869115995518854],[-125.69132992952696,57.86912574585509],[-125.69107252301801,57.86915430526096],[-125.69090903031746,57.86916850397448],[-125.69085514841946,57.86918520000419],[-125.69079595138055,57.86920636931475],[-125.69058224853163,57.86930343552543],[-125.69023531979565,57.86945177636225],[-125.69001746281641,57.869540982131944],[-125.68988536571025,57.86958216665513],[-125.68965175209067,57.86966572805246],[-125.68934304652878,57.869779391941705],[-125.6889037547909,57.87000601273592],[-125.68836893461042,57.87044099158264],[-125.68796405147947,57.87084038795649],[-125.68763344163963,57.871051559827755],[-125.687303275048,57.87120890402072],[-125.68701522017433,57.87137195355503],[-125.68677352154424,57.871537354448186],[-125.68653927462303,57.87169267974164],[-125.68634753115624,57.87180885525939],[-125.68626917723351,57.87185128438933],[-125.6861919715367,57.87188138060126],[-125.68597523756179,57.871960489929734],[-125.68575011895209,57.872031729197815],[-125.68566239823258,57.872060678863065],[-125.68560530184827,57.872081850906184],[-125.68551215238776,57.87212873031837],[-125.68544522372757,57.87219025006734],[-125.68537625045632,57.87224615786836],[-125.6853040970174,57.87230317953427],[-125.68526988932747,57.87236029091044],[-125.68524391714672,57.87244097152121],[-125.68517060058463,57.87263704613043],[-125.68506273714056,57.87293060233353],[-125.6850161373577,57.87308188346239],[-125.68501598727532,57.873099825794974],[-125.68504004247256,57.873123432505196],[-125.6850994318021,57.87320543656369],[-125.68514566421341,57.87335020889663],[-125.68513817702375,57.8734892470588],[-125.6851298523014,57.87360136921314],[-125.68515308278471,57.87372365880375],[-125.68522240493634,57.873878578577376],[-125.68536201419857,57.87407515703267],[-125.68556143659153,57.87430551928848],[-125.68574538753299,57.87449435223903],[-125.6858331285149,57.87459100147453],[-125.68582409676445,57.874662751014405],[-125.68573437150415,57.87480383807163],[-125.68561494275913,57.87496728332953],[-125.68556472546285,57.875046785527104],[-125.68554636417551,57.87510057031685],[-125.68546954873625,57.87521028799381],[-125.68534299253386,57.87534231646135],[-125.6852565096996,57.87547443960299],[-125.68523573530022,57.87568970327335],[-125.68527292132049,57.875906225482694],[-125.68534549386005,57.876052181844145],[-125.68541114598032,57.87614429359699],[-125.68547363686629,57.87623527643329],[-125.68558114418266,57.876490093179264],[-125.68572532103042,57.87689863133925],[-125.68584318452669,57.87730150028717],[-125.68591622398164,57.87764482809466],[-125.68597164511974,57.877825508011156],[-125.68599678711854,57.877844631525164],[-125.68598824122411,57.87785806844454],[-125.68589699926781,57.87792738140676],[-125.68568273813051,57.878083874901016],[-125.68549288056504,57.878222482964055],[-125.6854027200804,57.878287312477205],[-125.6853602982347,57.87831749064913],[-125.6853090676335,57.87839250494415],[-125.68523743997928,57.87851232795928],[-125.68519667614886,57.87859633837356],[-125.68521937229234,57.878655827541486],[-125.68533075136884,57.87882542599704],[-125.68552809961318,57.879054663040556],[-125.68576526328773,57.87918642986654],[-125.6859957512334,57.87923295223238],[-125.6860998776981,57.87926347631047],[-125.68605109241496,57.87929812542728],[-125.68596195558631,57.879367443509956],[-125.68592970130867,57.879442502895564],[-125.68592947680006,57.87946941657201],[-125.685923039021,57.87948285848472],[-125.68585602310527,57.879553350131644],[-125.68573180369849,57.8796584708925],[-125.68564688247264,57.8797277987464],[-125.68562666517197,57.8797490580845],[-125.6854748796166,57.87974533522909],[-125.68513446477971,57.879732194720845],[-125.68479392065129,57.87973251014314],[-125.6843107870355,57.87976500793407],[-125.68374853479467,57.879804044571586],[-125.68350376668327,57.87982476988328],[-125.68336037741533,57.879825550284274],[-125.68307889950333,57.87982263754007],[-125.68274688111063,57.879813996619276],[-125.68239587872984,57.87980418814775],[-125.68211975654484,57.87979231474657],[-125.68187631561986,57.87978164031067],[-125.6816729104351,57.87977218260818],[-125.6815917596693,57.87976974565676],[-125.68157282089354,57.87976521464744],[-125.68146014877219,57.87974812366683],[-125.68107132480698,57.8797247640723],[-125.68054940984248,57.879729119640416],[-125.6802288288951,57.879738442700905],[-125.6801433850368,57.87974496596033],[-125.6800716666981,57.87974815787782],[-125.6797415505282,57.879761942550836],[-125.67918159323409,57.87977853690768],[-125.6787428767531,57.87979430015976],[-125.67849930499384,57.87979707634355],[-125.6782499324095,57.87974040247322],[-125.67791359544924,57.87961959644556],[-125.67760244751241,57.87951230770213],[-125.67738807146807,57.8794310456188],[-125.67716233155814,57.87932171998928],[-125.67686751081492,57.879156155019025],[-125.67657473611096,57.8789962015162],[-125.6762607128507,57.878857502789],[-125.6759087676516,57.87859198997392],[-125.67573767024807,57.87825963151716],[-125.67572231908477,57.87808353047044],[-125.67571680510136,57.87798931739122],[-125.6755805982228,57.87789142155849],[-125.67531342874018,57.87782124178683],[-125.67509147369749,57.87776575037536],[-125.674763636484,57.87776158541398],[-125.67434868276895,57.87783682764276],[-125.6740612977049,57.877910138195084],[-125.673723357968,57.87797771709426],[-125.67331773333039,57.87806980037353],[-125.67304172792109,57.87816668659929],[-125.67273823079177,57.878274718921695],[-125.67217693801847,57.87844491567861],[-125.67135886412728,57.878684004714295],[-125.67061153010248,57.87891092820157],[-125.67032400191398,57.878998808985415],[-125.67027388945378,57.878942613563844],[-125.67003658498123,57.87883324719782],[-125.6694684227491,57.87882286609545],[-125.6687685957088,57.878920933282544],[-125.66810472576584,57.879124500527105],[-125.66747402996234,57.87939094728501],[-125.66683524840926,57.87961699954481],[-125.66614177673405,57.87982721166775],[-125.66577915087238,57.87993956577812],[-125.66567237974984,57.87997294045929],[-125.66549056767903,57.880026312185386],[-125.66512693201675,57.88013417630374],[-125.66443165256635,57.880308489438534],[-125.66363962333213,57.88045451883915],[-125.66311733501821,57.880499176557514],[-125.66279148023514,57.88050844430788],[-125.66230604819505,57.88055879935534],[-125.66173167213087,57.88065154091334],[-125.66120029867963,57.88076793946936],[-125.66069801429403,57.8809337529453],[-125.66049242974955,57.88104985734724],[-125.66050489928443,57.8810700748726],[-125.66039326521103,57.88105633295708],[-125.66018588428241,57.88101991797272],[-125.65989850568722,57.88097096257386],[-125.65965197323891,57.880951268152124],[-125.65937151090469,57.88095279360043],[-125.65903298288123,57.88096201973502],[-125.65887272008446,57.88096273054648],[-125.65879488528905,57.880942345330894],[-125.6586096957766,57.880901499056165],[-125.65834773504884,57.880840269777714],[-125.65809831811184,57.88078916506515],[-125.6579352785826,57.88074837474703],[-125.6578691595316,57.880599054797216],[-125.65776778673892,57.88038460135118],[-125.6575003369325,57.880346906307295],[-125.65724671849043,57.880411296327914],[-125.65711770846957,57.880453578346895],[-125.65694253461834,57.88047106984555],[-125.65667914874868,57.880450205049826],[-125.65648847949467,57.88043177026943],[-125.65637897780643,57.880415787633666],[-125.65625153120783,57.880403122852286],[-125.65611770119098,57.8803949271715],[-125.65601022635424,57.8803879208969],[-125.65593543233594,57.880382120443315],[-125.65587336504663,57.88036625999425],[-125.65574604183105,57.88034013790545],[-125.65549335421402,57.88030247700318],[-125.65515714506452,57.88028927069353],[-125.65483129014085,57.88029851895504],[-125.65458861146772,57.88031919657179],[-125.65436073357088,57.88033542646675],[-125.65408870981712,57.880336962684076],[-125.65384003476763,57.88032173763875],[-125.65366944847302,57.88029886532937],[-125.65357892530473,57.88028292976693],[-125.6535158442926,57.8802637012931],[-125.65342012405756,57.88023878066598],[-125.65327585200055,57.88022158350876],[-125.65316622832061,57.88021905505322],[-125.65312820219091,57.880226805963986],[-125.65311125117073,57.8802357332179],[-125.65310164062289,57.88024804388616],[-125.65306562999527,57.88026589288969],[-125.65299469201797,57.88029935083547],[-125.65289102158141,57.88033720910635],[-125.65276003282462,57.8803649031767],[-125.65265032599414,57.880371345510135],[-125.65257030445166,57.88035992237894],[-125.65251135812791,57.88034967564863],[-125.65247767305002,57.880343980562806],[-125.65241551410361,57.880338211117525],[-125.65228915636916,57.880321059667494],[-125.65214593035401,57.88030386401611],[-125.65200595864782,57.88027770528889],[-125.65185327750999,57.880255998888096],[-125.6517237244289,57.88024332425852],[-125.65163416504643,57.88023636132319],[-125.65157830739965,57.88023509369311],[-125.65151299438719,57.88022931556999],[-125.6514350820362,57.88021789727846],[-125.65139611744426,57.88021218809341],[-125.65137390309229,57.88022110134228],[-125.65130628425752,57.88023662422396],[-125.65119311539718,57.88027445629118],[-125.65111365840758,57.88031686234559],[-125.65104536369786,57.88040527620378],[-125.65098351909522,57.880480249800044],[-125.65095463964764,57.880523909806705],[-125.65091167818132,57.88060902575756],[-125.65083483378034,57.880709752836765],[-125.65076127469504,57.88079815277929],[-125.65068977576402,57.880889922384945],[-125.65061275327965,57.88100971320507],[-125.65056883829727,57.88108473372059],[-125.65053767235463,57.881147451971124],[-125.65048607702607,57.881253852345516],[-125.65042723466061,57.88134677651949],[-125.65036433495445,57.881420625707044],[-125.65025249532556,57.88154368922416],[-125.65005683464402,57.88172260385623],[-125.64987410552028,57.88187127362295],[-125.64979661026814,57.88192714130304],[-125.6497679016876,57.88195398011074],[-125.64973505281026,57.88197071514098],[-125.64966075985652,57.88202322688228],[-125.64949617894983,57.88214839389402],[-125.64933457393354,57.88229263289204],[-125.64926222129014,57.88236309244409],[-125.64920682131553,57.88242462518739],[-125.64908734571179,57.882573460673925],[-125.64895186782958,57.8827413182193],[-125.64883289231149,57.88283632611665],[-125.64870893541784,57.882901042108145],[-125.64863687348924,57.882940102039775],[-125.64863708210396,57.883029817159134],[-125.64864241963862,57.883249631975744],[-125.64860974142434,57.883473832228205],[-125.64858137538788,57.88357580772672],[-125.64852041595427,57.88366872571329],[-125.64839695709054,57.883791757310796],[-125.64824816097176,57.883918086163106],[-125.64807401682039,57.88404883359222],[-125.64796781337635,57.88413041742361],[-125.64796847132301,57.88417191220339],[-125.64800508956337,57.884203409173125],[-125.64802608287314,57.88421355758377],[-125.64801211580212,57.88424043506001],[-125.64805145902116,57.88431791800441],[-125.64812863462579,57.88440895815388],[-125.64827208856973,57.88451699490872],[-125.64851101372066,57.88467574816255],[-125.64876069416209,57.88481210070164],[-125.64899062706529,57.88491700055811],[-125.64926679439648,57.88504108623011],[-125.64954496154084,57.88517526951596],[-125.6497797620387,57.88532503823914],[-125.6499975268719,57.8854927047368],[-125.65016840530566,57.88560081164338],[-125.65022719250048,57.885629001989074],[-125.65028842200194,57.88562131280372],[-125.65043507215881,57.88561160504774],[-125.65053493849166,57.88564551029297],[-125.65052571188268,57.885730715138685],[-125.6505007436538,57.88580690718344],[-125.65055915666717,57.8858754680748],[-125.65067837317079,57.88598231730907],[-125.65078798402027,57.88610259847642],[-125.65094347495263,57.88627682878457],[-125.65115269019458,57.886457928343376],[-125.65129410366606,57.8865603494997],[-125.65139464544117,57.886634627593004],[-125.65155177519804,57.886747182569806],[-125.65173066757764,57.88690016601435],[-125.6518834260373,57.887029530737465],[-125.65199007930184,57.88712737456035],[-125.65212306181692,57.88722977285524],[-125.65240341603757,57.88735834893294],[-125.6527543270504,57.88749832285316],[-125.65302230696263,57.887598829448095],[-125.65322818940446,57.88768571653255],[-125.65346844938762,57.88781755028159],[-125.65374849936192,57.88798200878842],[-125.65411029587679,57.88808612150354],[-125.65443455463881,57.88814415686949],[-125.6544588639652,57.888252999420594],[-125.6543463252016,57.888335693684134],[-125.65428379228898,57.88836917445341],[-125.65430648666303,57.888424183841295],[-125.65439004373329,57.888511872940576],[-125.65447669079997,57.888608541519055],[-125.6546261701874,57.888751352030305],[-125.65483582823016,57.888887589791274],[-125.65498516853997,57.888931712981005],[-125.65503051091264,57.88893295191345],[-125.65502705115571,57.88896434322715],[-125.65502530619807,57.88904059652875],[-125.6550458930182,57.889095600363994],[-125.65506997414883,57.88911360577412],[-125.65512109931052,57.88917429590995],[-125.65523389906718,57.88929346057368],[-125.65533505019681,57.88941708075561],[-125.65544663075272,57.889555306574884],[-125.65557187163962,57.889698053415486],[-125.65569418760346,57.88981387804521],[-125.65583140786352,57.88991628382824],[-125.65592246820297,57.88999053420315],[-125.65600928658644,57.89006925931964],[-125.65617981742307,57.89021772985949],[-125.65642603866813,57.89039443154359],[-125.65662301671776,57.89053511972045],[-125.65671522493767,57.89060040103069],[-125.65680219311483,57.8906611830122],[-125.65692579365019,57.89075345966935],[-125.65701800293012,57.89081874078463],[-125.65708709369152,57.8908749907748],[-125.65716032123436,57.89094022290928],[-125.65718855801445,57.890967210190894],[-125.65722647160808,57.890972915006934],[-125.65740749087169,57.891013752776374],[-125.65766384844557,57.8911198275952],[-125.65772592999858,57.891251195787795],[-125.65764047202428,57.891370970266216],[-125.65762789408394,57.891477474835746],[-125.6576842526199,57.89165929324265],[-125.65773391031824,57.89188034489223],[-125.65775304860044,57.891980202404056],[-125.65780044628461,57.891985931437574],[-125.65794883772703,57.8920210774303],[-125.65809831636166,57.89205174028244],[-125.65818752154858,57.892099069877034],[-125.65826181642441,57.8921643042172],[-125.65829522788715,57.89220139755341],[-125.65828970205892,57.892228297981184],[-125.65827246591483,57.89238525564701],[-125.65823174023481,57.89268906201491],[-125.65820470547435,57.8929940250556],[-125.6581606054167,57.8932047431437],[-125.65806886749108,57.893318894807635],[-125.6580270215349,57.89339840982231],[-125.65803488807934,57.89346123086029],[-125.65805847419912,57.89353418526374],[-125.65810466831029,57.893674484343414],[-125.65815687843066,57.893847320745614],[-125.65825368671803,57.89398887119226],[-125.65840818838811,57.894164212933774],[-125.65852108294841,57.894391034276644],[-125.65858113985703,57.89463117744349],[-125.65861763325849,57.894793880522805],[-125.65862351377852,57.89484323918086],[-125.65862310689872,57.89488809594161],[-125.65860200151582,57.8950046721317],[-125.65855974785372,57.89512904422456],[-125.65852172633862,57.89525006283726],[-125.65849005981393,57.895369976307855],[-125.6584682738499,57.89544617874223],[-125.65844900429529,57.895477529799905],[-125.65840840657872,57.89553461939988],[-125.65834978889986,57.89560063432589],[-125.6583273329483,57.895635341534124],[-125.65838494645446,57.89567810430081],[-125.65857483929274,57.89579073593775],[-125.65878281761803,57.89588547051808],[-125.65888168607681,57.89591600287659],[-125.65894475541526,57.895939714799255],[-125.65904033980937,57.895982574539715],[-125.65915463164082,57.89605800404495],[-125.65924794467931,57.89611880097021],[-125.65932346818639,57.89616497351682],[-125.65944003295112,57.89622246545747],[-125.65963640543974,57.896317169053034],[-125.65983067620273,57.896412988443586],[-125.65997034859691,57.89647951053327],[-125.66009528226458,57.896544873412246],[-125.66017927589728,57.89658770276823],[-125.66022229882996,57.8966113629391],[-125.6603168805774,57.89664973343849],[-125.66044926094636,57.89670726485955],[-125.66047586455254,57.89679816991214],[-125.6604896596537,57.89690586402165],[-125.66069934911744,57.896929948867836],[-125.66095689791452,57.89690929735211],[-125.66114958389046,57.896945674116026],[-125.66136511809071,57.89702360225917],[-125.66162671238945,57.897138654871966],[-125.66185267525859,57.89723006610619],[-125.6619851405965,57.89727862465845],[-125.66208836522294,57.897294586901914],[-125.66220115479442,57.89730160174778],[-125.66225705500577,57.89730286498509],[-125.66229160179007,57.897330988792326],[-125.66245859167157,57.89741215641097],[-125.662681264872,57.89751701529164],[-125.66281998046232,57.89757456043819],[-125.66294076714642,57.89763093861576],[-125.66314096092611,57.897654995586166],[-125.66335171261674,57.89767795749862],[-125.66349717984875,57.897807291691954],[-125.66361922579522,57.89795899554722],[-125.66370302616521,57.89802425120439],[-125.66379210913325,57.898089520149526],[-125.66390417027311,57.89817839745323],[-125.66402676657152,57.89827066559515],[-125.66418048967385,57.89841908456803],[-125.66429759498538,57.89853488906027],[-125.66434250912252,57.89858546747835],[-125.66437590227508,57.89862592380672],[-125.6644639246054,57.898691189663566],[-125.6645981882004,57.89877563657283],[-125.66466949443316,57.89882291701209],[-125.66469471957116,57.89883307357117],[-125.6647335387191,57.89885560029205],[-125.66481089437025,57.898934296469854],[-125.66492748399145,57.89910841453801],[-125.66501577303667,57.89926339670234],[-125.66504684828149,57.899327397502525],[-125.6652442885779,57.89930546496046],[-125.66546343941789,57.89933405190536],[-125.66535712699978,57.89954686028153],[-125.66524537122126,57.8997775981449],[-125.66527227786491,57.89983598119423],[-125.66527628767997,57.89985954173074],[-125.66529471593037,57.899922389271886],[-125.66531301458005,57.89999981534595],[-125.66531605093675,57.90001328038359],[-125.66534532296627,57.90016250688217],[-125.66537735241046,57.900356598363125],[-125.66539701324798,57.900518136715164],[-125.66539576678609,57.90065831498815],[-125.66535132286913,57.900791656032716],[-125.66529168867098,57.90097430277893],[-125.66531070112788,57.90120873399287],[-125.66538905567559,57.90141303516007],[-125.66546293583963,57.90152648744056],[-125.66563931701808,57.90162113237857],[-125.66580491129179,57.90174266488337],[-125.66576470394249,57.90187601684646],[-125.66571810031452,57.9020149600265],[-125.66574281982606,57.902082309244264],[-125.66575593413802,57.90215075079015],[-125.66579972214168,57.90232692881817],[-125.66584899265739,57.90248069155022],[-125.66586542289093,57.90253119817665],[-125.66587882636,57.90256711831457],[-125.66593880584921,57.902702964656875],[-125.66604113274805,57.902939848031046],[-125.66614960831494,57.903199175878655],[-125.66622558318005,57.90343487171429],[-125.66630136008617,57.903692996161396],[-125.66637834362392,57.90393318037331],[-125.66641649990981,57.90403308545058],[-125.6664506583346,57.9041060655883],[-125.66652809786397,57.90429690691226],[-125.6665845514167,57.904473116770355],[-125.66660567051754,57.90459092248911],[-125.66662240398917,57.904725539080694],[-125.66663528236114,57.90482089507642],[-125.66683223419759,57.904857274478196],[-125.66708340657635,57.904967805233845],[-125.66703111083501,57.90515495771476],[-125.6669464294176,57.90530502116609],[-125.66701289587894,57.905424061759895],[-125.6671212049046,57.90558357936296],[-125.66722958427759,57.905735246878095],[-125.66726504727238,57.9057813152156],[-125.66721206965045,57.905806976375494],[-125.66705930753004,57.90590191847524],[-125.66688815150374,57.90604952291087],[-125.6667871833838,57.9061322582163],[-125.66671404917038,57.906171326254096],[-125.6666514479422,57.90621042061514],[-125.66659090390641,57.90625737030224],[-125.6665184579786,57.90633681244347],[-125.66644350404871,57.90646110659109],[-125.6663439278263,57.906624590073775],[-125.66620736390877,57.906795831034955],[-125.66611261986758,57.906892039001654],[-125.66611636225923,57.906945878393486],[-125.66608160625013,57.9070579371331],[-125.6660470192528,57.90715093150049],[-125.66604364664565,57.907173352221626],[-125.66594535819269,57.90719329201629],[-125.66557333998419,57.90726525333063],[-125.66509537623969,57.90750404470096],[-125.66458883242187,57.90787285179348],[-125.66398956189074,57.908107969488235],[-125.6636703138091,57.90817669431286],[-125.66365068114217,57.90824841819605],[-125.66366310521423,57.90839199649605],[-125.66368337527918,57.90860400372695],[-125.66367313019668,57.9088058408084],[-125.66338605277802,57.90893296221775],[-125.66286187999016,57.90902696078329],[-125.6626057333717,57.90923602552052],[-125.66265338089899,57.90957034178994],[-125.66271502772778,57.90975553912931],[-125.66276947077009,57.90980277837959],[-125.66286531412166,57.90993983937797],[-125.66286893309064,57.9101237683768],[-125.66281170392254,57.91027053513155],[-125.66279011912287,57.91032431070512],[-125.66277729688365,57.91034222165072],[-125.66275154178412,57.910390379350645],[-125.66272475321952,57.910435170042845],[-125.66276439540191,57.91048573623987],[-125.66285135580249,57.910555487067704],[-125.66289314872715,57.91060157282297],[-125.66288840567506,57.91065987690297],[-125.66287141463296,57.910788802176576],[-125.66283895668711,57.91087843709873],[-125.6628101649577,57.91091312959003],[-125.66272914034856,57.911006005946156],[-125.66266504783519,57.91109331782299],[-125.66265894915965,57.91118414094251],[-125.66266732761306,57.91130976611318],[-125.66264554087968,57.91138597049268],[-125.66261795620812,57.911402722594055],[-125.66259243151627,57.911425087228004],[-125.66257332821237,57.911437374946146],[-125.66248431344775,57.91147976508082],[-125.66221315810387,57.911594588610704],[-125.66184041382965,57.91174167623568],[-125.6615263722118,57.91193152767284],[-125.66132321249066,57.91211044570892],[-125.66125715596652,57.912180930052436],[-125.66123489477665,57.91219320956044],[-125.66111588744214,57.91228486701639],[-125.66087788114291,57.91246706019613],[-125.66067419471952,57.91258765980412],[-125.66061276156977,57.91261329701876],[-125.66056722856919,57.91263000299475],[-125.66047720246709,57.91266790341433],[-125.66025270367665,57.912755926855304],[-125.6598915287276,57.912904160224976],[-125.6595894890729,57.91304917936694],[-125.65934602362651,57.913249299499945],[-125.65920770682872,57.91349230399579],[-125.65917461824486,57.913765857276466],[-125.65913666799275,57.913994539494034],[-125.65910392398428,57.91411445272538],[-125.65908132555018,57.91416373946856],[-125.65907487223977,57.914177180565076],[-125.65903206351867,57.914243237597134],[-125.65894628294313,57.914393294702364],[-125.65889891724069,57.91449634848366],[-125.65888908627672,57.91453221028776],[-125.65875880237898,57.91458682857484],[-125.65840624956215,57.91471265098004],[-125.658014040247,57.9147912690106],[-125.65769943534029,57.91480616161038],[-125.65745255974161,57.91479991973052],[-125.65730494846868,57.9147860824895],[-125.6571910437012,57.91477906063207],[-125.65685030484116,57.91476584726636],[-125.65633875708015,57.91473873490453],[-125.65601807688233,57.91472557115028],[-125.65579238897736,57.91471040914927],[-125.65550870602479,57.914689489472586],[-125.65522499915687,57.914673055003384],[-125.65494631339658,57.91468354817773],[-125.65467796367419,57.91471761840039],[-125.65446883054247,57.914738384059234],[-125.65428694791541,57.91477940654313],[-125.65411634445057,57.91485522359574],[-125.65389445445226,57.9148860484575],[-125.65360289350146,57.91480566640863],[-125.65336114896803,57.914700741042644],[-125.65323179068265,57.914652181250176],[-125.65308316577463,57.91463497228401],[-125.65284907910171,57.91461529754889],[-125.6526528465462,57.9146103001937],[-125.652473373493,57.91461880389217],[-125.65218190009331,57.91464271554952],[-125.65188729368036,57.91466213250954],[-125.65176374587668,57.91467190284221],[-125.65163209666646,57.9147579117536],[-125.65129637443414,57.91500151369344],[-125.65096381557935,57.91524400167887],[-125.65082133076606,57.91547465104592],[-125.65069987167138,57.9158264742166],[-125.65040415101168,57.9160791508545],[-125.65008089188468,57.916115310750385],[-125.64986714109351,57.91617755152709],[-125.64968003314655,57.91632509380319],[-125.64956637795036,57.91640329786586],[-125.64951552566713,57.916424472047666],[-125.64922948965774,57.916542595204184],[-125.64859010930441,57.91686725846508],[-125.64797957795957,57.91726376923134],[-125.64765513249459,57.917538793774575],[-125.64744334983236,57.91772664091822],[-125.64718983713092,57.917976058281766],[-125.64693163653448,57.91827480763877],[-125.64676835616224,57.9184683897607],[-125.6467000240995,57.91855231910506],[-125.64666157862045,57.91860044052384],[-125.6466156528647,57.918657513884845],[-125.64655927465039,57.918705587716055],[-125.64648681514072,57.91877941275981],[-125.64637556125331,57.91893836684367],[-125.64621398923015,57.91917232604807],[-125.64602789682124,57.919433135372834],[-125.64591327022404,57.91961450972835],[-125.64589671318402,57.91969072602777],[-125.64590394034809,57.91970868883548],[-125.64602174170979,57.91975161790019],[-125.64634149112493,57.91986797892541],[-125.64669884666681,57.92002593350096],[-125.6470139158451,57.920191625447075],[-125.64734455794891,57.920384273304954],[-125.64773703953102,57.92062418586486],[-125.64812628439313,57.920873060578145],[-125.64845006059677,57.92112400444559],[-125.64872949870151,57.92137819513288],[-125.64897633931825,57.92161884169719],[-125.64918818823946,57.92187621789657],[-125.64937701484658,57.922114468123816],[-125.64948570475549,57.92223026627921],[-125.64950664653293,57.9222482650091],[-125.64955907421205,57.92228541166853],[-125.64971179136198,57.92243384829971],[-125.64985996421342,57.92261703865766],[-125.64988585062676,57.92278420693824],[-125.64981225157807,57.922980272274835],[-125.6497344716351,57.92317184070792],[-125.64965423686454,57.92328602062955],[-125.64945325443483,57.923446985049985],[-125.64914281494941,57.92379831256135],[-125.64892263640951,57.924205951329895],[-125.64884054358373,57.92440647998563],[-125.64869576840911,57.92453731160771],[-125.64837218667914,57.92482580018877],[-125.648072115515,57.925082948701466],[-125.647932688278,57.92520482187355],[-125.64781462931755,57.92530095731756],[-125.6476229094985,57.92548437347958],[-125.64744795038526,57.92568129153195],[-125.64732721380713,57.92583573658581],[-125.64717677975354,57.92600692517026],[-125.64705967925417,57.92611203443559],[-125.64701826191317,57.9261377188355],[-125.64688271856438,57.926183340530734],[-125.64654088497095,57.92627776033998],[-125.64613950952419,57.926415759029204],[-125.64579800079125,57.92658643868061],[-125.64556760776775,57.92672825449783],[-125.64548270708585,57.92677625245402],[-125.64544670115323,57.926788492982496],[-125.64532579415136,57.92684873136134],[-125.64505440150377,57.92697137199411],[-125.644745968374,57.92710288523026],[-125.64449385887296,57.92719529609869],[-125.64412672895293,57.927284034952066],[-125.64374712577413,57.92735030977917],[-125.64358962763106,57.9273734398282],[-125.6435357945346,57.927372174361864],[-125.6434597279878,57.92737869978262],[-125.64342064755525,57.927381959674996],[-125.64332671251869,57.92737946533446],[-125.64313367499011,57.92736549074294],[-125.64303762882682,57.92736299054519],[-125.6429698685422,57.92738411723109],[-125.64280372262316,57.92742853138871],[-125.64267359889388,57.92745734115034],[-125.64263865543593,57.92746958378173],[-125.64264223837691,57.92753688245861],[-125.64266492083665,57.92770404448828],[-125.64255456052024,57.92787645719561],[-125.6420846538099,57.928003045310284],[-125.64140349263313,57.92814252135134],[-125.64070290735658,57.928325679516824],[-125.64007081511639,57.928520233910355],[-125.63980821427924,57.92860363588588],[-125.63979028779062,57.92860246594882],[-125.6397408904596,57.9285787812215],[-125.6396988480404,57.92855960230436],[-125.63958076832812,57.928543582218445],[-125.63934357278107,57.9285104174429],[-125.63916740403681,57.92849648275043],[-125.63912836512054,57.92849525556071],[-125.63909033033217,57.928498517022575],[-125.63890875206185,57.92849914665566],[-125.6386342680063,57.928500645645244],[-125.63847385612921,57.92849572464701],[-125.63831114966786,57.92850986249047],[-125.63795381925333,57.928563845059706],[-125.63751896446324,57.92866471826525],[-125.63717910950237,57.92876809170379],[-125.63697380795031,57.92882024249512],[-125.63681641257334,57.92882990704476],[-125.63662204584423,57.92884283506827],[-125.63636840075662,57.92887242338086],[-125.63615998245004,57.928920078478164],[-125.63609643804459,57.92894121323123],[-125.63599313758357,57.92892523031359],[-125.63577599142909,57.9288921139326],[-125.63556960851177,57.92883771838407],[-125.6353476986402,57.92875075692392],[-125.63516164367907,57.928669500691164],[-125.63510385855753,57.928640183841274],[-125.63506994783653,57.92865354882719],[-125.63501260642325,57.928688157880956],[-125.63488835481422,57.9287652001112],[-125.63472042105711,57.92888249603629],[-125.63458221850888,57.928981929499486],[-125.63449924648584,57.929046748216],[-125.63443433157288,57.92909928006018],[-125.63436732208275,57.92915180612976],[-125.63428763868862,57.929203175904384],[-125.63421327447918,57.92925119577226],[-125.63417397308977,57.929276882105455],[-125.63413145261285,57.929307045539886],[-125.6340358986226,57.92936285755421],[-125.63387890915523,57.92943980900906],[-125.63361734629879,57.92952208028552],[-125.63333691767797,57.92959196279231],[-125.63320239249236,57.929637573618734],[-125.633158561035,57.929694648857],[-125.6331166925677,57.92976518734339],[-125.6330899155636,57.92980548719452],[-125.63306437176277,57.929826725141226],[-125.63305161626771,57.92983566192614],[-125.6329774681558,57.92986125197796],[-125.63281863688904,57.92991015996058],[-125.63269571974679,57.92995692376407],[-125.632606539806,57.93000826641553],[-125.63250425318131,57.93010443240472],[-125.63242699520863,57.930232069035334],[-125.63222316519183,57.93034814153968],[-125.6318619303851,57.930473872461604],[-125.63162578609447,57.93054835973611],[-125.6315039126203,57.930595125366224],[-125.63134265709867,57.930675426633954],[-125.63118434539551,57.930779287136],[-125.63101018900207,57.93088310359792],[-125.6307854243955,57.930980050722425],[-125.63069166416251,57.93106726714136],[-125.63077143457213,57.93111459072131],[-125.63078242212124,57.93117742458513],[-125.63055108955288,57.93129790444437],[-125.63023128571687,57.93139683018876],[-125.63006311697944,57.93142888673639],[-125.62995722625138,57.931461115997216],[-125.62976024626624,57.931523372408265],[-125.62946154161976,57.93162347643978],[-125.62904247283245,57.93172436635817],[-125.62856446994519,57.931806025407646],[-125.62818896111882,57.93187787529943],[-125.62799739621802,57.931926686361884],[-125.62790296252818,57.93197352537559],[-125.62778928714089,57.93204610488539],[-125.62764571202696,57.93215112402115],[-125.627563874095,57.932206969926504],[-125.62752556791827,57.93223714314613],[-125.6274101516101,57.93227046529406],[-125.62722500703535,57.93231032129126],[-125.62711918924481,57.93233469810473],[-125.62709372933368,57.932346963280686],[-125.62699033433846,57.93233994501056],[-125.62680574649322,57.932429147616766],[-125.6266811656739,57.93264188216019],[-125.62664806806333,57.93278534041957],[-125.62663258604624,57.93285595105081],[-125.62658546493336,57.93292310857289],[-125.62647727726004,57.93297327258029],[-125.62634496575349,57.93300654649223],[-125.62626568143037,57.933017539126304],[-125.62605252670353,57.93289918458404],[-125.62566959898051,57.93265586740223],[-125.62532085560449,57.932583112020644],[-125.62501672624381,57.9326966489137],[-125.62486837413167,57.932751184571785],[-125.6247970536158,57.932703881153465],[-125.62464815705552,57.93260140614755],[-125.62449508316249,57.9324944332479],[-125.62429905281672,57.93235369435203],[-125.6240380005907,57.93217127660236],[-125.62373994729829,57.931993239885124],[-125.62347320896409,57.93185117871307],[-125.62328526072224,57.93174747043756],[-125.62315217123745,57.931649524481934],[-125.62307115227644,57.93151695945465],[-125.62289303154182,57.93138187670776],[-125.6225353528702,57.93125525725644],[-125.62224508351548,57.9311445287963],[-125.62216637102514,57.93109720308082],[-125.62209083426447,57.931049886325454],[-125.62190286562392,57.93095066206887],[-125.62176004728333,57.93087511699019],[-125.62172434560843,57.93085595033296],[-125.62164018382455,57.93082655269302],[-125.62135932279821,57.93072482096557],[-125.62102593338284,57.93059938801139],[-125.62087360856874,57.930523814970016],[-125.6208579288112,57.930509190998286],[-125.62077100017841,57.930439411313415],[-125.6205085913858,57.93018520774286],[-125.62010061228683,57.92991825246796],[-125.61972007066073,57.92986333572041],[-125.61957617161956,57.92989544823738],[-125.61952321826989,57.92991211941462],[-125.61927125506506,57.92998205369599],[-125.61889021537893,57.93007965570798],[-125.61858922785343,57.93009000957657],[-125.61825847674409,57.930017287294426],[-125.6178445658608,57.92992189597923],[-125.61743598398456,57.929820911232476],[-125.6170820586698,57.92974363355813],[-125.61685023666803,57.92970147219919],[-125.61677860057138,57.929686686875286],[-125.61673536735798,57.92968095510884],[-125.6165088328529,57.92963880836188],[-125.61617165278959,57.92957615581527],[-125.61600306890551,57.92954426849566],[-125.61598838139302,57.92953525426375],[-125.6159654433824,57.9295071509424],[-125.6159165180745,57.92943859912343],[-125.61588840202468,57.929401508957035],[-125.61584356209498,57.92934642675909],[-125.61576538253416,57.92924975334779],[-125.61561064898014,57.92910239213417],[-125.61538993077481,57.92890325188436],[-125.61528114300822,57.92880536840391],[-125.61528041708836,57.928773964636896],[-125.61522337026526,57.92867398749651],[-125.61483134103935,57.92850575334593],[-125.61419949737225,57.92835476785197],[-125.61389504836008,57.92829220433389],[-125.61383916667435,57.92828643498517],[-125.61369025861735,57.92829161086889],[-125.61347928503389,57.92827641981265],[-125.61322508593638,57.92825661702951],[-125.61298114935977,57.92826375927208],[-125.6128447870069,57.92828242849787],[-125.61273089588101,57.9282708827124],[-125.61252043126373,57.92820634615079],[-125.61232055818347,57.92813847560654],[-125.61219129921784,57.928080903657374],[-125.6120569561605,57.92800537298339],[-125.61185549467692,57.92788703018766],[-125.61157957007715,57.927722489109414],[-125.61124807542892,57.927520776315184],[-125.61092180742732,57.92732356393569],[-125.61071513011906,57.927200718304505],[-125.6106227262348,57.92715334590709],[-125.61049036141381,57.92709127732865],[-125.61030012917325,57.92700997414426],[-125.61000561326313,57.92690817879598],[-125.60961742896833,57.92678031425968],[-125.60942494927032,57.926712461094525],[-125.60950011298544,57.926692494610634],[-125.60966208432575,57.9266469881923],[-125.60974125564891,57.92654516482321],[-125.60973232937161,57.92638813064],[-125.60961862022144,57.92625882671631],[-125.60937701802561,57.92614484868901],[-125.60925155147275,57.92602896784179],[-125.60928005618325,57.92592699624015],[-125.60930594864782,57.92587324085459],[-125.60930604185648,57.925864269245004],[-125.60933312114665,57.9257970595141],[-125.60936761057606,57.92562781635794],[-125.60936218207485,57.92543826948777],[-125.60928294157397,57.9252428988359],[-125.60912078482625,57.925001304129054],[-125.60896230416616,57.9248124298205],[-125.60891230400875,57.92474835849487],[-125.60890188878858,57.92473487011899],[-125.60888009938117,57.924697797194426],[-125.60885740291496,57.92464726379766],[-125.60884079463253,57.92462029943288],[-125.60882409305341,57.924602306664006],[-125.6087668182755,57.924528120587155],[-125.60863893094256,57.924340457276564],[-125.60850486886358,57.92413931793487],[-125.60844775367433,57.92404830997228],[-125.60844468903491,57.92403932910099],[-125.60842299389587,57.92399328453741],[-125.60835690199458,57.92385290491345],[-125.60828972850015,57.92371588654516],[-125.60826492244597,57.92366534689412],[-125.60825973002034,57.92365635976674],[-125.6082150651967,57.923587818002666],[-125.6082289459931,57.92347122461232],[-125.60826415821346,57.92333338577936],[-125.60812271666688,57.923131103072244],[-125.60796700278914,57.92288055453878],[-125.60786190618917,57.92263464077843],[-125.60770514390767,57.92238296749133],[-125.60755045298751,57.92213690758612],[-125.60742603555684,57.92192233821754],[-125.60735147241984,57.92178529786164],[-125.60734258561304,57.92172583319733],[-125.60736530839756,57.92167319056564],[-125.60736647915938,57.9215610459623],[-125.60735444780637,57.92139839585568],[-125.60734795810166,57.92131314423465],[-125.60734506439128,57.9212862201835],[-125.60734021723238,57.92124583261532],[-125.60732427893763,57.92115494576248],[-125.60723767810642,57.92105824324672],[-125.60716227399872,57.92100194696702],[-125.60723348692946,57.92095505474837],[-125.60728213125203,57.92084417163801],[-125.60724882194457,57.92069940259796],[-125.60723264987668,57.92063094468322],[-125.60722534731376,57.920621951322005],[-125.60720778871753,57.920586012222515],[-125.6071726196003,57.92051749830512],[-125.60713740375496,57.920453470161824],[-125.60711269511921,57.920393958911994],[-125.60708719218238,57.92030865130122],[-125.60705580741399,57.92018183162746],[-125.60703702372936,57.92005953504165],[-125.60702947114885,57.91997428038699],[-125.60702706334362,57.919902498655716],[-125.60701745864684,57.919811630569676],[-125.60701733222106,57.91972191192541],[-125.60702436751063,57.91965464397722],[-125.60703861135673,57.91960534094455],[-125.60705661036312,57.91949885360394],[-125.60709564856951,57.919297102695495],[-125.60715679876478,57.91910102440426],[-125.60719984465128,57.919021526408166],[-125.6072328502047,57.9189947082479],[-125.6072923950694,57.91895226762101],[-125.60736053481698,57.9188952730928],[-125.60747234494762,57.91879915549298],[-125.60761619449734,57.918668366381105],[-125.6077368670937,57.918531901517056],[-125.60784254710578,57.918417821973286],[-125.60792672878712,57.91833956635175],[-125.60801169340046,57.918288228425325],[-125.6081444366808,57.91821011554101],[-125.60828478019228,57.91811071682677],[-125.60840037494319,57.91805610428855],[-125.60855305433425,57.91798814290032],[-125.60869986788704,57.91787530507401],[-125.60875102506374,57.9178272318409],[-125.60872373831981,57.917812572522024],[-125.6085913628236,57.91775498843074],[-125.60841151847481,57.91769614322723],[-125.60833046063463,57.91767571840059],[-125.60833597922075,57.91765330510723],[-125.60833747393013,57.917509760609676],[-125.60825659514099,57.91726952707185],[-125.60792075543415,57.917090224612025],[-125.60747171798369,57.91693862474911],[-125.60720628839252,57.91678756482748],[-125.60705289081388,57.91662225569482],[-125.60691440403559,57.91644241123545],[-125.60683031765727,57.91630982913474],[-125.60677634578953,57.91622331632685],[-125.60674333898713,57.91615032307937],[-125.60671051991977,57.9160593867978],[-125.60667424532097,57.9159953556903],[-125.60665237451171,57.915968375744264],[-125.60661495944696,57.91591331305034],[-125.60654932534563,57.9158312516427],[-125.606499352968,57.91576605857438],[-125.60643153186534,57.91569296244958],[-125.6063355039489,57.91559174611225],[-125.60626081646973,57.91546816331741],[-125.6061635362096,57.915285075627054],[-125.60601537014989,57.9151242668848],[-125.60579739481685,57.914978952079196],[-125.60555739382258,57.914820114050926],[-125.60542464565735,57.91469972337685],[-125.60539558140665,57.91465365691737],[-125.60534897463508,57.91467034095008],[-125.60526429699458,57.914694762478504],[-125.60515040224885,57.91468769613008],[-125.60496568061973,57.91469163441417],[-125.60475631992578,57.914731386471914],[-125.60459942827619,57.914699519684916],[-125.60444878339217,57.91457458903541],[-125.60432116578643,57.91446767018155],[-125.60424490436048,57.91439342648248],[-125.6042126727582,57.91434847183788],[-125.60418643708931,57.91433381475288],[-125.60405692438061,57.91430763603702],[-125.6037536577793,57.9142461748702],[-125.60336086735573,57.914167624424714],[-125.60303885761154,57.91408255491397],[-125.60276082492841,57.91403013845464],[-125.60248169884383,57.913982204041176],[-125.60231313717267,57.913955907108964],[-125.60216774298769,57.913934165037375],[-125.60195387036671,57.91390100350124],[-125.60168221930144,57.91384411797187],[-125.60137805615389,57.91376919106115],[-125.60120235097885,57.91371932044064],[-125.60106454352652,57.913679656327716],[-125.60081855352186,57.913591444674],[-125.60057878871089,57.913513344480215],[-125.60043050907912,57.91346467654462],[-125.60037790395101,57.913449939623696],[-125.60028411878784,57.91343844354548],[-125.6000659344709,57.91341423781775],[-125.599998461384,57.91340842788414],[-125.59991411707284,57.91340144577827],[-125.59988569480245,57.91339575305941],[-125.59983688131261,57.91342140028949],[-125.59972121182415,57.913481612261975],[-125.59962253757051,57.913532903443055],[-125.59950126551168,57.913624499607295],[-125.59928439108928,57.91377524616039],[-125.5990919556615,57.91390924385295],[-125.59890685951065,57.913950181181676],[-125.59869260683227,57.91395290037049],[-125.59850176524917,57.913938867687435],[-125.5983826474763,57.914025983487086],[-125.59834356310114,57.91422660924337],[-125.59829044057281,57.91435990433012],[-125.59817793984497,57.91442012459241],[-125.59805019821856,57.91452403622996],[-125.5979085735864,57.9146424850093],[-125.59780638393852,57.91472516556603],[-125.59776375482039,57.91476428843174],[-125.59775412223131,57.914777717028656],[-125.59773177392906,57.91479447165098],[-125.59765283473263,57.91487385788712],[-125.59746567253009,57.91500786934395],[-125.59723846965207,57.915136152148335],[-125.5970233019085,57.91522521940154],[-125.59660447316917,57.915312548334676],[-125.59610266634796,57.91536261577969],[-125.5957967788072,57.91544804159984],[-125.59551425999118,57.91561652679415],[-125.59527462494431,57.91572233912256],[-125.59520382940654,57.91572997436041],[-125.59518188249592,57.9157108426054],[-125.59510871424307,57.91564557472937],[-125.59498116785294,57.91553416105882],[-125.5948443580657,57.91540028961862],[-125.59478068463204,57.915336171928665],[-125.59467844966295,57.91532352471527],[-125.59447647001465,57.9152645934055],[-125.59428486755995,57.91512494725541],[-125.59403878854899,57.914947004743176],[-125.59371344436516,57.91478115630632],[-125.59338657137253,57.914660161372886],[-125.59314157910367,57.914577545831875],[-125.59290279052547,57.91450840648313],[-125.59266193620671,57.91443365302533],[-125.59256196535277,57.914408674905104],[-125.59242395319016,57.91438694475396],[-125.59214637077831,57.91429413442549],[-125.5919897294922,57.914142255897254],[-125.59194359126535,57.9140187525455],[-125.59185330516004,57.91397585999581],[-125.59173303514643,57.91397324852795],[-125.59164653198143,57.91397074045867],[-125.59161804495,57.91396953166348],[-125.59162087814262,57.914000941592526],[-125.59161998939233,57.914082806402064],[-125.59161906411398,57.91416803552638],[-125.59154789327668,57.91421043332271],[-125.59131153613701,57.91420858698195],[-125.59092508166802,57.914229830354756],[-125.59052567113056,57.91427794814913],[-125.59020765459607,57.91431397893535],[-125.58993392775143,57.91435126677251],[-125.58964534622777,57.914397480084865],[-125.58935242826597,57.91445265119998],[-125.58918430047046,57.91448465559581],[-125.5891387825009,57.91449685143795],[-125.58906474502444,57.91451232371917],[-125.58898125562934,57.91452440237756],[-125.58893053111706,57.91453097471664],[-125.58887652214811,57.914547630165934],[-125.58866045381922,57.914524533732006],[-125.58816239036447,57.91442542675478],[-125.58761254598315,57.91433400795756],[-125.58723638114367,57.91428349817126],[-125.58698343571936,57.914254677385706],[-125.58681029297912,57.91435731608687],[-125.58664732343304,57.914591198610445],[-125.58651855089062,57.91478593553274],[-125.58642765596797,57.91489555789485],[-125.5862803155987,57.91495453857443],[-125.58606777641933,57.91499425146834],[-125.58580856695475,57.915054005484315],[-125.58541718756186,57.91513802021719],[-125.58499718706851,57.915234280886175],[-125.58469737949012,57.91533876530299],[-125.58443149154785,57.915431018641314],[-125.58418859721985,57.91544708289872],[-125.58400950164553,57.91541960839585],[-125.58384738963063,57.915383214901134],[-125.58359086395424,57.915296059756486],[-125.5833132966299,57.9152032309364],[-125.58317126473993,57.9151635349993],[-125.58307832849482,57.915169973043994],[-125.58296737443722,57.91518420495086],[-125.5829208565381,57.915191909655384],[-125.58289106091664,57.91521424587787],[-125.58283776375013,57.91526230243899],[-125.5828014499563,57.91530144036341],[-125.58275026305458,57.915349503502966],[-125.5826381840434,57.91546354293699],[-125.58251106135288,57.91560332909295],[-125.58242128674195,57.91570510203728],[-125.58234533370347,57.915796824979424],[-125.58227701222462,57.91586726377091],[-125.58219382954573,57.91594550626222],[-125.58206040932419,57.91608190789054],[-125.5819811477109,57.91618707800482],[-125.58197240640033,57.91621396601344],[-125.58179733040124,57.91620444475715],[-125.58141522091626,57.91621221658899],[-125.58108968401231,57.91625717394619],[-125.58083603020064,57.91629114192223],[-125.58062462458399,57.916321877982],[-125.58043099982034,57.91636612742719],[-125.58019283187973,57.91643154430756],[-125.57998545824304,57.916479114221204],[-125.57968622832396,57.91652975849141],[-125.57934265486242,57.91658362652453],[-125.57917776681612,57.916606656831256],[-125.57914189962761,57.91660542205893],[-125.57909125843352,57.91660414060276],[-125.57902911360998,57.91659272948464],[-125.57896280222474,57.916577940738634],[-125.57884484881731,57.91655625986044],[-125.57864248536524,57.91653319046976],[-125.57849778988236,57.91654282606775],[-125.57847020167493,57.91655619651035],[-125.57843946860287,57.91656843551949],[-125.57837690921563,57.91659403153463],[-125.57829965547806,57.916613973625104],[-125.57815043659949,57.91665050998703],[-125.57795540806532,57.916726152788364],[-125.57783765004065,57.91678185358194],[-125.57778565539566,57.91680636132562],[-125.57773562448875,57.91684545448288],[-125.57764583399258,57.91694722434102],[-125.57748726939272,57.91715868090897],[-125.57733186049045,57.91737014735172],[-125.57724409003943,57.91747977375964],[-125.57720672141527,57.917518906927945],[-125.57717455780272,57.917563663998706],[-125.57714129253436,57.91761178200339],[-125.57711004122126,57.9176699997028],[-125.57708829183674,57.91772712608139],[-125.57708069442135,57.91774504562529],[-125.5770553163463,57.91774945098155],[-125.57697076476208,57.91776039733805],[-125.57683025182294,57.91777453034889],[-125.57658914677847,57.9178175020249],[-125.57627910839187,57.91788941251364],[-125.57599960581074,57.917968148344],[-125.57568424626224,57.91804452645037],[-125.57541319657103,57.9181221665113],[-125.57532321086498,57.9181476737456],[-125.57524699920457,57.918167617435216],[-125.57508284453698,57.91821756058785],[-125.57497805838773,57.91824526334959],[-125.57488489765143,57.91827076016468],[-125.5746417399473,57.91830811440848],[-125.57429517165151,57.91834401636342],[-125.5738873551129,57.918383085991515],[-125.57349547378449,57.91841211206786],[-125.57305290162849,57.918445460488854],[-125.57244864952452,57.91849623239786],[-125.57206720447074,57.91853538109477],[-125.57192025264506,57.91855846011486],[-125.57171294620856,57.91859816718326],[-125.57157401100964,57.91865715896396],[-125.57154521859289,57.91868398190726],[-125.57152170719131,57.91870970034824],[-125.57145456038552,57.918766679897125],[-125.5713938134661,57.91881919408166],[-125.57133860308006,57.91884817496164],[-125.57127814576761,57.91887377449511],[-125.57120835208391,57.91888588618777],[-125.57117123150206,57.918902588929754],[-125.57117262619185,57.918965396338514],[-125.57117430064359,57.919095493503455],[-125.57117443107043,57.9191773620325],[-125.57117422649534,57.919195305070225],[-125.57123138064468,57.91927287119981],[-125.5713426894759,57.91941565745826],[-125.5713888305735,57.919533561433774],[-125.57135938554555,57.91961757781946],[-125.5713249490581,57.91967578407101],[-125.5713055561182,57.91971048760606],[-125.57132763676042,57.91981037051565],[-125.57144350042448,57.92001597440517],[-125.57165702258126,57.92026450854213],[-125.57176435691068,57.920477935197425],[-125.57151596712539,57.92069582576794],[-125.57111245963081,57.92090985228416],[-125.57097278577464,57.921032765773354],[-125.5710128167672,57.92113270666923],[-125.57091606401781,57.921287159846685],[-125.57076564193147,57.92142686081659],[-125.57070809877958,57.92147489923685],[-125.57069112241656,57.921482694927946],[-125.57065729769089,57.9214870718785],[-125.57062137491525,57.921490320576105],[-125.57051956770704,57.92153260885511],[-125.57034967499534,57.92162177986166],[-125.5702413295273,57.92168199059782],[-125.57022413511687,57.92170885075714],[-125.57022901062425,57.92174475397299],[-125.570224225039,57.921794083839366],[-125.57020682551412,57.921838887085464],[-125.57018641781558,57.92186910133289],[-125.57017456016037,57.92189149276894],[-125.57016912074567,57.92190493303398],[-125.5701338512339,57.921944071208486],[-125.57002746151267,57.92201774591762],[-125.56987996492131,57.922085680441775],[-125.56972193027259,57.92215358078098],[-125.56956619441111,57.92220354460978],[-125.56943807063021,57.92224013966761],[-125.56934073867411,57.922260011854426],[-125.56909959631805,57.92230297017859],[-125.56867444560429,57.92237673414686],[-125.56840580859937,57.922424088163886],[-125.5682619972367,57.92244717347133],[-125.56810230686953,57.922473571613246],[-125.56803351785378,57.92249017091058],[-125.567868609874,57.922512065919506],[-125.56749209550216,57.922578133468264],[-125.56717471108284,57.92264214907003],[-125.56685692519078,57.92274092867155],[-125.56639906697997,57.92290429798432],[-125.56599233308599,57.923027458791154],[-125.56567483871191,57.92310044240224],[-125.56544187136383,57.92316585054585],[-125.56517375302924,57.92325805926271],[-125.56489198553133,57.923344615453225],[-125.56468033252466,57.923392148101435],[-125.5644846104864,57.92343188207977],[-125.56438093996624,57.92345172997052],[-125.56435761554486,57.923460625612066],[-125.56414137537564,57.923539544047436],[-125.56368761349658,57.92371188954539],[-125.56338647586406,57.923829780832776],[-125.56329852336702,57.923858651292804],[-125.56323922065366,57.92387527924241],[-125.56296841602432,57.92392597978666],[-125.562410125469,57.92400938066121],[-125.56185905949535,57.92410738230635],[-125.56144859883486,57.924185657723385],[-125.56125402097501,57.924216418877016],[-125.56118210315128,57.92422851843479],[-125.56101285683854,57.9242593626544],[-125.56064053493613,57.92432542487255],[-125.56017106609451,57.92439452991484],[-125.5597756909249,57.92444593429561],[-125.55937586927767,57.924516388110014],[-125.55899921471509,57.9245914033599],[-125.55854646973253,57.924674015927586],[-125.55798393621433,57.92475738433668],[-125.55741189211905,57.92484071879977],[-125.55681752946835,57.92493743446889],[-125.55646082309958,57.92502148086331],[-125.5562884394518,57.925138663374014],[-125.55606488636953,57.92529829183195],[-125.55578881969672,57.92543531511173],[-125.55540713114232,57.92557759295562],[-125.5550932463397,57.92569878780996],[-125.5548880469561,57.92573399025991],[-125.55461184074584,57.92570390865702],[-125.55430929123425,57.925669252417414],[-125.55414278209038,57.92564626561916],[-125.55399309518285,57.9257186615911],[-125.55368884171172,57.92591726825858],[-125.5533024385589,57.92609989806982],[-125.55300563142642,57.926204322988404],[-125.5528971383216,57.926273491479975],[-125.55289083874794,57.92635870367342],[-125.5528929471804,57.92644843004906],[-125.55286150501564,57.92669505267904],[-125.55278023605678,57.92713776926969],[-125.55271277279616,57.927396607578885],[-125.55269767442779,57.92742347272237],[-125.55254486917235,57.92749024930605],[-125.55214377282927,57.92766385485493],[-125.55167368940002,57.927867507493616],[-125.55124832793116,57.92803990731816],[-125.55083715927913,57.92817197989566],[-125.55048534331975,57.92828406455312],[-125.55030801509481,57.92836982133526],[-125.55007410222647,57.92842174205364],[-125.54961345102745,57.928453830900715],[-125.54927553289927,57.92846278192681],[-125.5489455752695,57.92851213282761],[-125.54842506664467,57.928605697161636],[-125.54804084364562,57.92868962828184],[-125.54770756210952,57.92875242280397],[-125.5471470007852,57.92884023878272],[-125.54644879925571,57.92896122892206],[-125.5457611089255,57.92908561574602],[-125.54528944204766,57.929154661507475],[-125.54488955677296,57.92922395075509],[-125.54441851254613,57.92932776194398],[-125.54413896702265,57.92939746027789],[-125.54404055597861,57.92941731055018],[-125.54398552655877,57.92942833722794],[-125.54394118955543,57.929428185515405],[-125.54387870772878,57.9294436726302],[-125.54382745183166,57.929491721519234],[-125.54375565711464,57.92958007393408],[-125.54365390667894,57.9296133704467],[-125.54356547727106,57.929592880697705],[-125.54347277090922,57.92957686222343],[-125.5433432311258,57.92955062401853],[-125.54314092855253,57.92951852879953],[-125.54288726265091,57.929457098220354],[-125.54275599423809,57.9293994516327],[-125.54272615278465,57.92933654548324],[-125.54266020130544,57.92920398269093],[-125.54226753654186,57.92902655984392],[-125.54160254570344,57.92893231160435],[-125.54125540278568,57.92891878068278],[-125.54117514766203,57.928920747397754],[-125.54109799622542,57.928927210733264],[-125.5410282289204,57.92893482094987],[-125.54095208674129,57.928945773658974],[-125.54081545341506,57.92898343381059],[-125.54062133302452,57.92905902653469],[-125.54049475308604,57.9290507396949],[-125.54045135666244,57.9288879732078],[-125.54031241670374,57.92876749403436],[-125.5400806536796,57.928814918723695],[-125.53993107485024,57.92887384170352],[-125.53984154713405,57.928857831677014],[-125.53973202278856,57.92883614505399],[-125.53960781592988,57.92880655715235],[-125.53947084563308,57.92878477549887],[-125.53935803649318,57.92877204918129],[-125.53928210026234,57.92876617921506],[-125.53919773280823,57.928759158558435],[-125.53905437419475,57.92874184036966],[-125.53882664842196,57.92871750113575],[-125.53858509821704,57.92870208561312],[-125.5383845851031,57.92869690525896],[-125.53817674311395,57.92868609172921],[-125.53797107071487,57.92867192091029],[-125.53786353518728,57.92866033310429],[-125.53777505603512,57.92864432532448],[-125.53762014720085,57.92862135805386],[-125.53750528620868,57.928605258561184],[-125.5374455213207,57.92857140628114],[-125.53740224767151,57.92848490093875],[-125.53734425230502,57.928308624871086],[-125.53695966561958,57.92807738272176],[-125.53625939834447,57.92793700395241],[-125.53585559330942,57.92789522439],[-125.53576606965842,57.92787921164218],[-125.53558061670762,57.92785164962265],[-125.53516733528092,57.92780871345393],[-125.53457899253162,57.927751706801544],[-125.53395214984715,57.92773493672819],[-125.53347027010444,57.92777586749108],[-125.5332756507955,57.927806587904975],[-125.53322910711177,57.927814275358635],[-125.533161186945,57.92784319632039],[-125.53305342677287,57.92776431414647],[-125.53271957309491,57.92761622814105],[-125.53209223114251,57.9276398213743],[-125.53159491574505,57.92773340142333],[-125.53141501755555,57.92776865684393],[-125.53136320400645,57.92777632511735],[-125.5313337032452,57.92777173539425],[-125.53127998525284,57.92776145301644],[-125.53119474217131,57.92774096626719],[-125.53108317081674,57.92771477935203],[-125.53096325279111,57.92768071250255],[-125.53086966036598,57.92765122419993],[-125.53083707139177,57.927641016020814],[-125.53078658491337,57.927626258840945],[-125.53063394969888,57.92759095500525],[-125.53042869224716,57.92754425064018],[-125.53023579126197,57.92752114090923],[-125.5299827444947,57.92749669729022],[-125.52978864263275,57.92748591911999],[-125.52973793238216,57.92748910467215],[-125.52972931938822,57.9275025322181],[-125.52963524027157,57.92751341514957],[-125.52945579035121,57.927512781662145],[-125.52933981606385,57.92750115717565],[-125.52922589686325,57.927494025827734],[-125.52902729197078,57.927505660540604],[-125.5288159496416,57.92752285739904],[-125.52869019972832,57.927532506189486],[-125.5286172741803,57.92754009872819],[-125.52851996319363,57.92755545542319],[-125.52831285677689,57.92757154497727],[-125.52798316100858,57.927598415022366],[-125.52773377417097,57.92761883990132],[-125.52760808001135,57.927624001890116],[-125.52747188907483,57.927625762056316],[-125.52729466261553,57.92761616158168],[-125.52716797766348,57.927616833659776],[-125.52704239627236,57.927613023552425],[-125.52685567811714,57.9276033888077],[-125.52671221667784,57.92759502892617],[-125.526610908295,57.927592426108696],[-125.52650442650113,57.9275808328702],[-125.52635586522979,57.927558996540476],[-125.52619029891964,57.9275449500551],[-125.52599097080936,57.927530783282734],[-125.52574625828616,57.92751533321615],[-125.52562701090208,57.92751154431431],[-125.52559418295488,57.9275203994202],[-125.52557390611588,57.92753714966803],[-125.52553978770533,57.92756394409395],[-125.52552485381035,57.92757622737537],[-125.52549735188884,57.92758061543856],[-125.52542016078519,57.92759155552961],[-125.52534499314918,57.92760811026076],[-125.52531961651994,57.92761138436172],[-125.52529917235898,57.927642713416425],[-125.52519121817208,57.927747749429145],[-125.52502279117078,57.92787724276145],[-125.52489501428015,57.92796426397832],[-125.52481314632307,57.92801107492569],[-125.52476426268518,57.92803669502569],[-125.52471754688383,57.92805783685541],[-125.52461555687358,57.92810906190875],[-125.5244706895912,57.9281276105093],[-125.5243156234802,57.928119206640346],[-125.52416344617717,57.928132121334244],[-125.52400635076177,57.92819997160954],[-125.5238694164924,57.92825892176588],[-125.52374520861133,57.9283145527768],[-125.52365493350759,57.92835684700728],[-125.52362088402226,57.92837803373572],[-125.52347506571304,57.92847283964086],[-125.52324112438122,57.92860658257026],[-125.52284788792994,57.928730782906285],[-125.5222284913537,57.92887547997678],[-125.52179081250489,57.929007368403234],[-125.5217004363114,57.92905863297252],[-125.52166678453183,57.92904841871717],[-125.52147525035788,57.92908361906087],[-125.52118905901852,57.92917455397778],[-125.5210500224032,57.92923349377291],[-125.52099168258788,57.929254592561584],[-125.52090335883055,57.92931034997856],[-125.52085833614181,57.92936402002726],[-125.52084060277772,57.92943012466016],[-125.52079888774719,57.9295555824773],[-125.52071885464494,57.929705575471246],[-125.52061476120792,57.929837537922545],[-125.52055263252792,57.929907968851786],[-125.52046980524726,57.9299458018196],[-125.52029175413502,57.93000011450878],[-125.52006623496422,57.93005201304029],[-125.5198375397471,57.93010389975263],[-125.51967027279538,57.93014030649297],[-125.51964490967008,57.93022432751879],[-125.51966289844023,57.930387009752764],[-125.51956830889664,57.93051900575346],[-125.51947052788636,57.9305702422232],[-125.51943750693397,57.93059255315572],[-125.5193642438773,57.930625933959895],[-125.51922700671214,57.93070730845828],[-125.51915578289305,57.93074630400885],[-125.51910605720607,57.93075397509705],[-125.51905728086798,57.93077062159198],[-125.51898612848498,57.93080400981338],[-125.51882467503066,57.93088081051672],[-125.5186894897133,57.93096667789949],[-125.5185704777691,57.931026809070616],[-125.51845054746512,57.93107684331951],[-125.51837186642142,57.931120297529475],[-125.51834302399106,57.931145987809025],[-125.51832379173509,57.931163862311635],[-125.5181994934491,57.931142104526714],[-125.51798406335153,57.931065063550435],[-125.51787793387297,57.931025427168244],[-125.51777363084186,57.93100934881763],[-125.51752583867969,57.93098490052436],[-125.51724001593585,57.93096367852254],[-125.51680521850784,57.93095088789347],[-125.51623185879728,57.93095777997839],[-125.51582080217588,57.930987689326585],[-125.5156569893745,57.9310005521285],[-125.51561384478839,57.93099030182657],[-125.51549862228514,57.931001098019806],[-125.51529196272821,57.931063150636874],[-125.51517313302874,57.9311086999544],[-125.51515401497153,57.9311176024137],[-125.5150837321539,57.931164449751975],[-125.51495586322402,57.931255947531895],[-125.51488769128628,57.93130280245759],[-125.51487907211573,57.931316229097284],[-125.51484494265523,57.9313430208912],[-125.51480114426373,57.93138211399041],[-125.51476702916037,57.931407784317685],[-125.5147256483714,57.9314244561736],[-125.51459841469782,57.9314666098998],[-125.51433564575203,57.93153967173301],[-125.51409484866306,57.93162739268153],[-125.5140005807577,57.93165172200657],[-125.51385270992624,57.93165679023226],[-125.51350514810451,57.93175533567971],[-125.51316175099551,57.93193912959381],[-125.51302832866831,57.93205191388004],[-125.51301959246335,57.932074312002435],[-125.51291182245245,57.932080647207336],[-125.512689846291,57.9321011443396],[-125.51250597742428,57.9321139299745],[-125.51242434442763,57.93213942592033],[-125.51236713457291,57.93223678732419],[-125.51210927681652,57.93233677889092],[-125.51170155087316,57.932433977995714],[-125.51141736355909,57.93252938578131],[-125.51132923422749,57.93256719379128],[-125.51126367706125,57.93257480393766],[-125.51110923454941,57.932597789088184],[-125.51090590736365,57.93264526775106],[-125.51056800079428,57.93264963487205],[-125.51022757816914,57.93260464575596],[-125.51013927213302,57.932655910375125],[-125.51014432076099,57.932754621209206],[-125.51002406682974,57.932828198407655],[-125.50978625162877,57.932929380761315],[-125.50957147127728,57.93304522701255],[-125.50948961481102,57.9330875429337],[-125.50937616128557,57.933125256487614],[-125.50913334810978,57.93320398924605],[-125.50899433627882,57.93325843091275],[-125.50896666716436,57.93327515154079],[-125.50892415896456,57.9332963035077],[-125.50887717869139,57.93333650455227],[-125.50881227141852,57.933374396510835],[-125.50870239457133,57.93346146887333],[-125.5085505280914,57.933610069080636],[-125.50844209944735,57.93374649279502],[-125.50836154739001,57.93385161713755],[-125.5082619595252,57.93395779272268],[-125.50821059328739,57.93401031393885],[-125.50814007067272,57.93399435264773],[-125.50798198438181,57.93397246059418],[-125.50776081658108,57.9339301483182],[-125.50738373408707,57.93386146491568],[-125.507004364988,57.933806230046436],[-125.50679780338574,57.933777428253144],[-125.50668809249446,57.93377029321935],[-125.50664177144698,57.93376002822953],[-125.50655000012055,57.93375295948303],[-125.50626603842176,57.93374966490773],[-125.50584755931769,57.93377839472697],[-125.50539987230455,57.933780098736],[-125.50507156640435,57.933775515553336],[-125.50495770769002,57.933843504529825],[-125.50483004132504,57.93391704964641],[-125.5044857711822,57.934002126137486],[-125.50412017911249,57.93410394501209],[-125.50389542357006,57.934173763508035],[-125.50362445002759,57.934225465432775],[-125.50320635892825,57.93430353470102],[-125.50280504195742,57.934391758795776],[-125.50244700166186,57.93448014324955],[-125.50218441077985,57.93453635959475],[-125.50209551715605,57.93455172865159],[-125.50208255072438,57.934574110340165],[-125.5020556872598,57.93460877668198],[-125.50204378501583,57.9346311623439],[-125.50199428837601,57.93462088386541],[-125.50190904570746,57.934600378238244],[-125.50187004754787,57.93459462496995],[-125.5017486705866,57.93459192829667],[-125.50147859815345,57.93457521738362],[-125.50119609462386,57.93454051530215],[-125.50096413514387,57.93451609542296],[-125.50082499533536,57.93449875182059],[-125.50067494039483,57.934508283335575],[-125.50045833289907,57.93451980828827],[-125.50033999594667,57.93452609377557],[-125.50030511888248,57.93452932754836],[-125.50027239610759,57.934528083363155],[-125.50019100500225,57.934535628735375],[-125.50001024568817,57.93447214644871],[-125.49978322670555,57.934393910739836],[-125.4995438595913,57.93445020904349],[-125.49929195680522,57.934496366275106],[-125.49889950532632,57.93447246131748],[-125.4984100124202,57.934441461019226],[-125.49794298272589,57.93438811340363],[-125.49756679795988,57.934332863605185],[-125.49729250614502,57.934316128296125],[-125.49704868858343,57.934309600974586],[-125.49690725972044,57.93430570271759],[-125.49689044235244,57.934300031708005],[-125.49673227473714,57.93420634956424],[-125.49645153568211,57.9340404278336],[-125.49630063196732,57.933955744686195],[-125.49626692260614,57.93395000976306],[-125.49620769457324,57.93395763645496],[-125.4961070577658,57.9339819291762],[-125.49599171712181,57.93400168019839],[-125.49594087494526,57.93401382450713],[-125.49594482226271,57.93411253199344],[-125.4959703747567,57.93433356540946],[-125.49597366068038,57.93448161672626],[-125.49588012048952,57.93452836626837],[-125.49570953142704,57.93457370275768],[-125.49555780879533,57.934628082490626],[-125.49545577629104,57.934678164127305],[-125.4953826495563,57.93469919593802],[-125.49524918389842,57.934731214302275],[-125.49502054648573,57.93477408708009],[-125.49478642525207,57.93483151828043],[-125.49454903883753,57.93489678724641],[-125.49436959293577,57.93497236916966],[-125.49428475882681,57.935077469054114],[-125.49421820627049,57.93523759215594],[-125.49413635083637,57.93535728288649],[-125.49408818228895,57.935405324921774],[-125.4940762146841,57.935432195694354],[-125.49406159034729,57.93549830917081],[-125.49404131804734,57.93559243892078],[-125.49401495225433,57.9356686014111],[-125.49395507197613,57.935724449517664],[-125.49386854790309,57.935799262081815],[-125.49376613245477,57.935877378771345],[-125.49363808988913,57.93597670670871],[-125.49349637291708,57.936071496540244],[-125.49328966874722,57.93620977806477],[-125.4931009811314,57.936343641771565],[-125.49299874409009,57.936408300492694],[-125.49287432570362,57.936472874754905],[-125.49271808220878,57.93654966440196],[-125.4926253380575,57.9366143589815],[-125.4925984813083,57.93664902355577],[-125.49258520577614,57.936693833413734],[-125.49257168802667,57.936756586508956],[-125.49255643990817,57.93686867946052],[-125.49253779039282,57.93699870363794],[-125.49252620250164,57.937074922219594],[-125.49248325685399,57.93712746970285],[-125.4924003854269,57.937165285510424],[-125.4922911258798,57.93720300076484],[-125.49214051259557,57.93725289500056],[-125.49200964870951,57.93732529454692],[-125.491933933346,57.93738108151784],[-125.49184392223022,57.93747830985402],[-125.49174212089294,57.937587829807896],[-125.49169818679424,57.937635887259944],[-125.49169066596468,57.93764483066995],[-125.49164202298387,57.93772875850721],[-125.49152522833442,57.93793242810426],[-125.49138149587623,57.938175247778254],[-125.49124608898425,57.938428192749335],[-125.49111856406888,57.93864415783965],[-125.49102148361031,57.93879519138054],[-125.49096425204583,57.93888805839169],[-125.49094155501284,57.9389272246618],[-125.49092858043144,57.93894960536821],[-125.49089741918158,57.93898873930995],[-125.4908747675826,57.939024541208596],[-125.49086831063384,57.93903348865012],[-125.49084678238617,57.939063687272075],[-125.49080902726905,57.93912186173279],[-125.49071480061897,57.939217951896666],[-125.4903114268916,57.93929603766662],[-125.48971396195255,57.93928029380751],[-125.48944410488593,57.93924561514995],[-125.48945423755956,57.93927705632723],[-125.4894711896919,57.93935001961361],[-125.48948126149688,57.93938594661247],[-125.48961248304926,57.939443646262156],[-125.48988534794391,57.9395680571683],[-125.49003855414482,57.939639298692384],[-125.49004899168249,57.939648310729],[-125.49000608527535,57.939697493189996],[-125.48987517742894,57.939850639702584],[-125.48973185321314,57.94006205732303],[-125.48968625423277,57.94023235294096],[-125.48970832795001,57.94031767253133],[-125.48971019334246,57.940413008403894],[-125.48964622619414,57.940536130143265],[-125.48952689384228,57.94061417928429],[-125.48944518111126,57.94064302575216],[-125.48942170644598,57.940660880085],[-125.48941313696417,57.94066981938303],[-125.48932572612232,57.94073004637489],[-125.48916637042156,57.940878597344586],[-125.48907909166257,57.9410061156148],[-125.4890561932248,57.94105986059177],[-125.48900702433895,57.94110341123622],[-125.48894809925001,57.94116486871361],[-125.48887094122176,57.94124756506177],[-125.48875465934519,57.94133459740648],[-125.488697164,57.941369143894214],[-125.48856850317705,57.94135631370152],[-125.48832582800978,57.941340802801136],[-125.48819585868748,57.941345911479324],[-125.48814228129073,57.94140290308927],[-125.4879328574867,57.94150527831504],[-125.48756464390232,57.94155769625346],[-125.48724361136125,57.94155758339595],[-125.4871199617086,57.94156383685273],[-125.4870576980648,57.94156135426863],[-125.48694895451146,57.941558692789044],[-125.4868476112651,57.941556059706116],[-125.4867885530704,57.94155022478592],[-125.48670410549704,57.941547656634896],[-125.48654390329695,57.94152460939305],[-125.4863692700697,57.94147571148717],[-125.48622949288617,57.941426947687184],[-125.48603377173667,57.94137572503998],[-125.48578941508839,57.94132880058521],[-125.48568403278578,57.94131269284341],[-125.48563758541947,57.941311392128085],[-125.48552449601794,57.94131768484551],[-125.48538943922044,57.94130931296189],[-125.48518982315349,57.941311906813226],[-125.48496081156894,57.94137831322684],[-125.48474590269291,57.941416735853984],[-125.4843991572957,57.941367170042355],[-125.48399864222579,57.94131066612136],[-125.48374210996656,57.94130406536415],[-125.4836354500131,57.941304773796446],[-125.48348331324748,57.941309792019],[-125.48324250575125,57.941312223354686],[-125.48307987088377,57.941312714357956],[-125.48291308926328,57.941307581496815],[-125.48263881482437,57.941286330084296],[-125.48238277712674,57.9412438401044],[-125.48220283288619,57.94119828065712],[-125.48212074555391,57.941177774505185],[-125.48206175049506,57.94116745166831],[-125.48199214944714,57.94116045214334],[-125.48196157980385,57.941155847291675],[-125.4819102941589,57.94112312401912],[-125.48180759802527,57.94106552754555],[-125.48175729830851,57.941037294113436],[-125.48174232929586,57.94105069411629],[-125.48169961143543,57.94108529504605],[-125.48164863134824,57.94110640564288],[-125.48151326680797,57.94112045895798],[-125.4813058025152,57.94115554044142],[-125.4811449242087,57.941181830793894],[-125.48103369865684,57.94120607122003],[-125.48086970695027,57.94122898457385],[-125.48061997171573,57.941266143419696],[-125.4804274133688,57.94129230948624],[-125.48035443450028,57.94129987565718],[-125.48023118911028,57.94127808638272],[-125.47999466753843,57.941276042495176],[-125.4797446051829,57.94133675028411],[-125.47951566146833,57.941397540064074],[-125.47940146113288,57.941408309323236],[-125.47926609466542,57.94142236036108],[-125.47891251354035,57.9414849052498],[-125.47850802655157,57.94156295132945],[-125.47823795010929,57.941619091966956],[-125.47808446797599,57.94164540760191],[-125.47794163755712,57.9416639141523],[-125.47779142358372,57.94168239162864],[-125.47766237582788,57.9416975873167],[-125.4775978136027,57.94170854951631],[-125.47756608741518,57.941711789744204],[-125.47754670567193,57.94173863020988],[-125.47751166722186,57.94182821429843],[-125.47748919132614,57.941925698248774],[-125.47747271950666,57.9419704944002],[-125.47745881303163,57.94198389810733],[-125.47743210864954,57.94200510227389],[-125.4774034182922,57.94201844802559],[-125.47732821627113,57.94203385446418],[-125.47709355247393,57.94204975701651],[-125.47681275266508,57.942041926230424],[-125.4765508827096,57.9420397767697],[-125.47629114038864,57.94203651363445],[-125.47614857455595,57.94203707503128],[-125.47609361618372,57.94204022362101],[-125.47603554391208,57.94203887387754],[-125.47601339220134,57.942037665296006],[-125.47600145520137,57.942060048739606],[-125.47595873090971,57.942094647866554],[-125.47595395970437,57.942058740532225],[-125.47595420985644,57.942040797226255],[-125.47587497087702,57.94204272876219],[-125.47570271215419,57.942052145087864],[-125.47548046906685,57.942086037941756],[-125.47514159666845,57.94215311686487],[-125.47475614958755,57.94222786207708],[-125.47450197387644,57.94227957179732],[-125.47434487087766,57.94233727141432],[-125.47418775170921,57.942396092306446],[-125.47406882070452,57.942442726968615],[-125.47399572847127,57.942458139866055],[-125.4739374214079,57.94247473258483],[-125.47377360704246,57.94248305823376],[-125.47336772509387,57.94250837198684],[-125.47294707427227,57.94253250460215],[-125.4727238412283,57.94256190290904],[-125.47252487176965,57.94259251836505],[-125.47231005344783,57.942623070795534],[-125.47220338953768,57.94262377008256],[-125.47208975038389,57.94259416064567],[-125.47186571095934,57.94252934671711],[-125.47168993427462,57.94248827557837],[-125.47161347648307,57.94251825358643],[-125.47154415799947,57.942641345948864],[-125.4714656813904,57.94281487036308],[-125.47143083245231,57.94288987401263],[-125.47132245661271,57.94293654811635],[-125.47107378689765,57.94304659224044],[-125.47087790098503,57.9431579669389],[-125.47080944728077,57.943219378842905],[-125.4707944103408,57.94323726347688],[-125.47072995289906,57.943239250641795],[-125.47053869477914,57.943247463386435],[-125.47031567575793,57.94326003575471],[-125.47013161145654,57.94328173473988],[-125.46999399622636,57.94330473965581],[-125.46994530837843,57.94331239673361],[-125.46991786753925,57.94331116611126],[-125.46994176920539,57.943339299149656],[-125.4699251770675,57.943391944637675],[-125.46984820987866,57.94345780830373],[-125.46968561741842,57.94353006048811],[-125.46951936890733,57.94356080167096],[-125.46932237695329,57.9436003924451],[-125.46909327587977,57.943670136133214],[-125.46894367038291,57.943720008735916],[-125.46876983056755,57.94376529852994],[-125.46840477722117,57.9438894538104],[-125.46792698699046,57.94406923431625],[-125.46734695309524,57.9443091668921],[-125.4667603208802,57.94456701499891],[-125.46630483996228,57.944810805890924],[-125.46584455509546,57.94509495088981],[-125.46552714979757,57.945283216259405],[-125.46538362521855,57.94542395275836],[-125.46522964492395,57.94563081708066],[-125.46498068914185,57.94590683467757],[-125.46464973118901,57.94623074821926],[-125.46448366140893,57.946396066933],[-125.46442208122578,57.94649339222955],[-125.46423900897896,57.946740513718225],[-125.46402701843712,57.94694153624882],[-125.46385825401502,57.94699917705744],[-125.46373060657514,57.94706259066535],[-125.46369514617416,57.9471790866938],[-125.46373940026699,57.947261136061435],[-125.46370882034657,57.947331669189104],[-125.46349554379194,57.94747436649981],[-125.4631417738177,57.9476176194166],[-125.46279717253613,57.9477115612074],[-125.4625952857313,57.947795983668],[-125.46247642465478,57.94790877873087],[-125.46239258489945,57.94801049964592],[-125.462365713116,57.948116936344384],[-125.46239031283024,57.94824376807733],[-125.46242274657126,57.948339228646695],[-125.46244316411077,57.94838865815766],[-125.46244718025638,57.94840325420249],[-125.46213206169736,57.94850179935442],[-125.46166055642215,57.94875336176002],[-125.46169878784269,57.949033898078994],[-125.46193581998116,57.94922439303626],[-125.4619824418977,57.949288508271714],[-125.46186353817096,57.94933064653012],[-125.46160015629846,57.94943052087602],[-125.4614310394876,57.94951170950256],[-125.4613660572833,57.949550700525805],[-125.46124347660974,57.94962759078828],[-125.46104707695564,57.949770352807676],[-125.46079045002409,57.949988013491954],[-125.46054506062063,57.95023263591772],[-125.46041820482485,57.950386893750796],[-125.46038014969322,57.95046188225429],[-125.46034586920776,57.95056941040012],[-125.4602968988596,57.95074304937706],[-125.46023928487132,57.9509301117477],[-125.46021680705269,57.951024229324226],[-125.46014449938056,57.951057582523525],[-125.45991570650492,57.951101517283945],[-125.45966686825483,57.951143127370365],[-125.45950507721818,57.95122882955764],[-125.45938843833771,57.95133378064851],[-125.45926844409924,57.95145105488875],[-125.45912175987041,57.95158728681659],[-125.45903612932071,57.95166544666159],[-125.4590081661257,57.951700100695575],[-125.45893606503328,57.95179289528688],[-125.45880471389398,57.951965078157684],[-125.45866178108413,57.95220787044442],[-125.45852729667276,57.952450696952866],[-125.45838236079182,57.95268563021681],[-125.45822495775795,57.952905932809344],[-125.45810293339483,57.9531633896454],[-125.45806513704815,57.953440254837396],[-125.45810088057138,57.95367143606165],[-125.4581939115778,57.95381312735818],[-125.45839917012285,57.95401135116109],[-125.45869761188203,57.95426715121134],[-125.45893801690063,57.95444532928789],[-125.45901855527428,57.95450061123105],[-125.45900997540465,57.95450954870457],[-125.45899944348473,57.95458128421426],[-125.4589816523764,57.95471579624392],[-125.45886924091621,57.954892542727016],[-125.45857845600408,57.95513137109931],[-125.45822251246204,57.95534638196788],[-125.45793459667395,57.95545960868301],[-125.45761650545309,57.95554018752476],[-125.45692071885858,57.95580428162974],[-125.45582686414802,57.95627311139785],[-125.45460345281721,57.956639342825376],[-125.45354560343965,57.956734829464125],[-125.45287053934351,57.956734304820046],[-125.4525367004783,57.95673405637703],[-125.45246331014962,57.95676740124165],[-125.4526043013796,57.95695191231406],[-125.45291431351852,57.95735581679407],[-125.45323995816382,57.95777436479984],[-125.45336849186468,57.957944244143825],[-125.45338097330074,57.95795775377544],[-125.45339859795602,57.95798025680252],[-125.45341365356022,57.95803527395103],[-125.4534274896168,57.95824618014907],[-125.4534819852056,57.95856716395885],[-125.45366485949533,57.95885054140553],[-125.45397400251342,57.95909742482047],[-125.45425476356341,57.959335219106705],[-125.45437869042011,57.95953199586079],[-125.45438723581124,57.95967110196318],[-125.45435524387852,57.95983695925486],[-125.4543011608055,57.96006889716636],[-125.45417795617054,57.96033083391188],[-125.45399781301852,57.96058580829527],[-125.45390843540702,57.960700961295096],[-125.45389004303091,57.96073116764817],[-125.45386488709786,57.96078938487967],[-125.45385571769746,57.960838695226265],[-125.45384667869075,57.96087903376429],[-125.45384641785516,57.96089697738562],[-125.45389909702901,57.96090728696925],[-125.45417489459248,57.96097795156034],[-125.45458126234384,57.961079431238865],[-125.45478128560715,57.96112959692349],[-125.4549101564135,57.96120526704448],[-125.4551130406725,57.961349653573556],[-125.45523324860369,57.9614387465275],[-125.4553586832053,57.96153234689607],[-125.45566019506632,57.961652461354625],[-125.45598510570234,57.961688554787834],[-125.45630975729767,57.961742591073204],[-125.45672616938033,57.96188111613264],[-125.45699433199282,57.96196856697848],[-125.45707322501187,57.961993562096644],[-125.4571488752184,57.96202303014685],[-125.4572141058588,57.96204236185768],[-125.45723825224738,57.96205255401201],[-125.45724955873197,57.96207503090091],[-125.45728153774431,57.96220189551206],[-125.45733136870561,57.962409583961154],[-125.4573689749606,57.96258581945263],[-125.45741899662337,57.96285295060828],[-125.45749843752755,57.96320543891927],[-125.45759976087864,57.96343352471441],[-125.45765794231978,57.96350217557304],[-125.4576882113289,57.96367389515238],[-125.45771840916403,57.96399814475328],[-125.45771205801158,57.96421794203838],[-125.45766621981146,57.964392716964866],[-125.45761524727142,57.96462915612107],[-125.45760511035624,57.96474575580773],[-125.45775815156071,57.96475871502536],[-125.45798565480501,57.96481010925392],[-125.45804811413903,57.96487541277153],[-125.45789887512602,57.964965651699266],[-125.45766560231812,57.965093681465056],[-125.45729675473326,57.96524471184866],[-125.45675519238246,57.96542756288602],[-125.45636017283535,57.9655605394022],[-125.45624021112815,57.9655981831037],[-125.45624183118638,57.965705858361055],[-125.45624976419536,57.96610628361118],[-125.45604672474485,57.966773899302126],[-125.45557860755943,57.96735519580844],[-125.45523556104699,57.96761960291259],[-125.45497487708485,57.9678148095707],[-125.45459367238769,57.96815868945234],[-125.45423344869627,57.96851274820361],[-125.4539804899557,57.968757333061546],[-125.4537613274699,57.969003177452976],[-125.4535502898412,57.96927148590293],[-125.45334062392594,57.96951736865967],[-125.45304884149587,57.969814506004404],[-125.45274873094854,57.970102636228674],[-125.4525805210065,57.97026008528949],[-125.45221093112951,57.97045596187462],[-125.45158846247581,57.97074500886968],[-125.45125741534746,57.9709062731665],[-125.45108985111334,57.97101886095729],[-125.4507302236806,57.97125515065922],[-125.45039824992494,57.97148033782921],[-125.45018709631952,57.971609568350146],[-125.45001113636486,57.97171651251533],[-125.44990761481692,57.97178562223033],[-125.44984779207914,57.971829116269554],[-125.44972393530985,57.97191496534957],[-125.44944621782007,57.97211457831173],[-125.44912553302918,57.97236111875746],[-125.44891906571401,57.97260252254155],[-125.44874315372951,57.97284966011877],[-125.44845983537891,57.973070557743036],[-125.44803353172958,57.97331105143498],[-125.44764995933106,57.973520317105624],[-125.44738753563648,57.97375587942702],[-125.44714679226968,57.974099200864465],[-125.4469045578959,57.97439877498692],[-125.44661156427273,57.97462860152071],[-125.44631950016422,57.974867403825094],[-125.44613901203459,57.97506517100772],[-125.44608287808798,57.975144568816624],[-125.44604920560008,57.975134334974435],[-125.44587223919147,57.97509322395346],[-125.44551830753647,57.97501100121322],[-125.44509919689106,57.97490495370443],[-125.44478131963632,57.97481502802421],[-125.44467196499592,57.974776439864556],[-125.44458050318487,57.97474241234284],[-125.44428579745447,57.974658189745064],[-125.44386682707515,57.97454316647362],[-125.44353094717852,57.974456527468064],[-125.44330525311506,57.97442306073824],[-125.44295025222284,57.974413728169125],[-125.44249092662164,57.97438264913213],[-125.44217973385709,57.97434209385513],[-125.44209123792952,57.97432265731612],[-125.44205545347894,57.974312413636426],[-125.44197318240577,57.974300853973425],[-125.44180855707401,57.97428334194999],[-125.44165233701715,57.97426922957861],[-125.44151775303963,57.97429221908824],[-125.441282605631,57.97432600300092],[-125.44098392726683,57.97436737126625],[-125.4407891914226,57.97438450021006],[-125.44068644720436,57.97439977140385],[-125.44062721092688,57.97440288775843],[-125.44037352248203,57.974404067080435],[-125.43990395965811,57.97442228487219],[-125.43962470475236,57.97443681417794],[-125.43952743677652,57.97443864874968],[-125.43940460239412,57.97445383456743],[-125.4393198162285,57.97446918016338],[-125.43926447244863,57.97449474349374],[-125.43919203400493,57.97453257212531],[-125.43910048746406,57.974575928200565],[-125.43895810890628,57.974625799851616],[-125.43875502553183,57.97470569818016],[-125.43856746805632,57.974808092772214],[-125.43846405107253,57.97486822190599],[-125.43833535977228,57.974850856815415],[-125.4381435811584,57.97488145311181],[-125.43803908935294,57.97501335735871],[-125.43797837505666,57.97511516377449],[-125.43779524254604,57.975204117235705],[-125.43750233087455,57.97535317207329],[-125.43726696151818,57.97547218680579],[-125.437195550843,57.97551114030665],[-125.43717747389961,57.97551891499546],[-125.43713064976703,57.97554002716804],[-125.43708387600918,57.97555777484919],[-125.43703255509033,57.97559681302109],[-125.43695548104046,57.97566153845042],[-125.43688275216245,57.97571843123834],[-125.43676314794885,57.97579980051543],[-125.4365659240866,57.97591112416113],[-125.4363582812039,57.97601343101506],[-125.43617493843804,57.976115840245896],[-125.43604347763853,57.97621173914985],[-125.43595293824353,57.976258462123724],[-125.43587546939243,57.97627832277024],[-125.43579686772676,57.97630378640129],[-125.43563837964392,57.97637040998769],[-125.43535431062463,57.97649258023331],[-125.43503060091454,57.976650472117264],[-125.43478253205299,57.976769428928556],[-125.43460804222526,57.976844956073485],[-125.43445501189385,57.97689926422614],[-125.4343403528736,57.97693242514912],[-125.43423969608541,57.97694770031007],[-125.43404467337866,57.9769827633473],[-125.43394616408663,57.97699692583233],[-125.43390804561423,57.97700125038093],[-125.43374527250096,57.97700055972312],[-125.43354542938899,57.977004197762554],[-125.43337024338085,57.97698550891379],[-125.43317418902656,57.976948786150324],[-125.43302237523474,57.97692234517255],[-125.4328865600709,57.97688699950029],[-125.4327023958996,57.97683238154116],[-125.43259276176143,57.97674331177113],[-125.43245847069088,57.97667656833671],[-125.43225644744504,57.976684681423436],[-125.4321544028326,57.97672238039684],[-125.43202432037829,57.976727434573796],[-125.43175586942472,57.97672517004852],[-125.4315909836272,57.97672446776057],[-125.4315697765256,57.9767288636788],[-125.43146074835798,57.97673849325609],[-125.43123944443359,57.97676446769064],[-125.43112091187952,57.97677405647871],[-125.43099481915306,57.97679370700743],[-125.43066632785046,57.97684726249798],[-125.43033051335706,57.97689629966165],[-125.4300565808037,57.97690634553643],[-125.42972417316261,57.97687015677583],[-125.42955055849949,57.97688735970678],[-125.42963344650936,57.97699762743707],[-125.4296236281644,57.977087310701414],[-125.42945269785207,57.977135928822804],[-125.42922450293838,57.97719776057788],[-125.428982643402,57.977253925646316],[-125.42883938049881,57.97729032416883],[-125.42875776299813,57.9773056767087],[-125.42863893804683,57.977334328675724],[-125.42851603859503,57.97735286899481],[-125.4283216913053,57.97734306396876],[-125.42807148667437,57.977321803597455],[-125.4279627973637,57.97731012203302],[-125.42798428506235,57.97735619835365],[-125.42799646274722,57.97745943463432],[-125.42790232091238,57.97753305440967],[-125.42771349443237,57.97757710734999],[-125.42756283862896,57.97761347281807],[-125.4275055050114,57.977630050343244],[-125.42748111750839,57.977634431975],[-125.42742070681437,57.977645388429906],[-125.42734011939127,57.97766186610076],[-125.42724040351558,57.97768499101765],[-125.42714692680035,57.977714872045475],[-125.42699233283626,57.97773215334078],[-125.42674394931993,57.97772996493184],[-125.42655833043312,57.97770224977166],[-125.4264561879422,57.97767713631348],[-125.426384621199,57.977656640485165],[-125.42635614264752,57.97765203179306],[-125.42623690019518,57.97763918188564],[-125.42599824435383,57.97762357511442],[-125.42582383340103,57.97762282474157],[-125.42568269691272,57.97765922905851],[-125.42551696651014,57.97771347241525],[-125.42542469130952,57.97773326331555],[-125.42537046734662,57.97775433958753],[-125.42520380794669,57.97779960602889],[-125.4249692772289,57.97786028173902],[-125.42483016738845,57.9779011801726],[-125.42469676299159,57.9779151854522],[-125.42447962387092,57.97794453141572],[-125.42426217521647,57.977992942335774],[-125.42397388129753,57.97804329023515],[-125.42363811621975,57.978087824646416],[-125.42338454011188,57.97807999972682],[-125.42307036224328,57.978094343673185],[-125.42271123515843,57.978213919785574],[-125.42243767985575,57.97833723006626],[-125.42212756770641,57.97843122073297],[-125.42183448702123,57.97851743351247],[-125.4216815004873,57.978567241138435],[-125.42154865742233,57.97861264964172],[-125.42135849302281,57.97867463299072],[-125.42114400818097,57.97873651057749],[-125.42092565771836,57.978774818110516],[-125.42076878681459,57.97880217648342],[-125.42061607454536,57.978834039005015],[-125.42040425548892,57.97886003679537],[-125.42022363530535,57.978850279606135],[-125.4200741711671,57.97887766934922],[-125.41991704853179,57.97898914330565],[-125.41978732058003,57.979107465625866],[-125.41965505352319,57.97918427873202],[-125.41944648904266,57.9792730970619],[-125.41926215750519,57.97936650681969],[-125.41919171686125,57.97940994145937],[-125.41916517803836,57.97941767693413],[-125.41912672581242,57.97944330565979],[-125.41906585913537,57.979482295633744],[-125.41898986369587,57.97954365110821],[-125.41895782286271,57.979564821425335],[-125.41894379526192,57.97958270546255],[-125.41889258882098,57.97961276486956],[-125.41882744094997,57.97965622238051],[-125.41877532503686,57.97967618365509],[-125.41874447097896,57.979689508104144],[-125.4187242572077,57.97969727104525],[-125.41868685253354,57.97972402578743],[-125.41862692890997,57.97977087067594],[-125.41859698440524,57.979793171616386],[-125.41855091525665,57.979832225845506],[-125.41843435098627,57.97991920037597],[-125.41827721912573,57.98003067252583],[-125.41807071405034,57.98019127831888],[-125.41780247549663,57.980310116388964],[-125.41756064841302,57.980361774960656],[-125.41745476835035,57.98037252850399],[-125.41742885953605,57.980407184100336],[-125.41740172856237,57.980451928497146],[-125.41738448495505,57.98047316306507],[-125.41730002424836,57.98046606486368],[-125.41711537729027,57.980443948615424],[-125.41695948914081,57.98040737734024],[-125.41683767107159,57.98035525277963],[-125.41669065812407,57.98029180227172],[-125.41651860738725,57.98020693228293],[-125.41637313218868,57.980112084170976],[-125.41628627680048,57.98005562573875],[-125.41625477443515,57.980042029088764],[-125.41620026105021,57.980012629773924],[-125.41612486830473,57.97996631552315],[-125.41603708763938,57.979900880321196],[-125.41594633699339,57.979821973219416],[-125.41587639562017,57.97976558855987],[-125.41579855819867,57.979740573270185],[-125.41567618549475,57.97972433549498],[-125.41551593392677,57.97969671599926],[-125.41532467073027,57.97969139184741],[-125.41515638249665,57.97970523481357],[-125.41506748614906,57.97971157460128],[-125.41491750866705,57.97977036035113],[-125.41469296012978,57.97986695228299],[-125.41456628895305,57.9799224751634],[-125.41450545116284,57.97996034165727],[-125.41440316997173,57.980011485116975],[-125.41430447099593,57.98003572652074],[-125.4141998663627,57.98003302422366],[-125.41405734848011,57.98002006123768],[-125.4138665208639,57.979987819209015],[-125.41367244393109,57.97996004891425],[-125.4135955160664,57.979944008893725],[-125.41353691396198,57.979974033778696],[-125.41341773611794,57.98002398066028],[-125.41335806823848,57.98005400078574],[-125.41334101524963,57.98006289838652],[-125.41324774935657,57.9800781903293],[-125.41307432265751,57.98008191395176],[-125.4129009485241,57.98008227286672],[-125.41276555812577,57.98008728499689],[-125.41266362502859,57.980115997247566],[-125.41254105542227,57.98017938728926],[-125.41233141998964,57.98026818997668],[-125.41209318181409,57.98036023105412],[-125.41193355148678,57.98042794357049],[-125.41184613466848,57.980474664332405],[-125.4117861134799,57.98052711365878],[-125.41170038871334,57.980600759518204],[-125.41158457363768,57.980705676674],[-125.41149060240255,57.98076582718756],[-125.41142389297438,57.980772262412664],[-125.41135625796664,57.98077084251601],[-125.41117268962226,57.98081489555233],[-125.41081108535369,57.98095349606914],[-125.41047921752106,57.98108325442319],[-125.41030112684582,57.98118116598178],[-125.41011549406129,57.9813564325213],[-125.40993057334822,57.98155301188575],[-125.4098195338854,57.981689352826656],[-125.40965679227332,57.98181985712679],[-125.40942755894024,57.98187604314128],[-125.40927426989323,57.98187648626465],[-125.40922143241242,57.98187513079361],[-125.40917261159872,57.98188725197119],[-125.40908758452606,57.98191603642622],[-125.40896866657602,57.98201532990022],[-125.40876196951294,57.98218489359696],[-125.40846332838044,57.982351806348184],[-125.40812248816144,57.98251292344888],[-125.40785617430886,57.98264072316955],[-125.4077989532654,57.98271561478962],[-125.40786441113266,57.982788807623656],[-125.40788122435762,57.98286178460965],[-125.40780360246153,57.98289060114646],[-125.40761374353085,57.982862840717765],[-125.40738964966246,57.98286072423267],[-125.40718871050903,57.98293161262579],[-125.40704711097766,57.9829949133613],[-125.40688188278435,57.98308054045371],[-125.40665278168646,57.98319504435747],[-125.4065034172958,57.98328074153739],[-125.40636700390274,57.98334967252922],[-125.40609005345443,57.983480786308256],[-125.4057119887894,57.98365406921835],[-125.40543593959967,57.98379527990619],[-125.40531856898284,57.98386317314015],[-125.40525663210312,57.98390215232641],[-125.4050632877142,57.98402690718093],[-125.40484437366072,57.98416500667932],[-125.40476418881235,57.98422072793562],[-125.40472707193626,57.984228413428035],[-125.40453507578349,57.98426793370639],[-125.40425390237623,57.98433173036995],[-125.4041094686007,57.984372583926266],[-125.40403061485414,57.984411487040276],[-125.40381164411964,57.984485654743295],[-125.40356962838842,57.984546260177275],[-125.4033481709734,57.98457667448645],[-125.40311230399816,57.98458347084954],[-125.4028294440623,57.98455304446135],[-125.40242909111444,57.98446489097277],[-125.40205832300279,57.98437799041389],[-125.40186986680962,57.984327796513156],[-125.40176553700269,57.98430714049347],[-125.40160753343085,57.984270541656954],[-125.40142035854235,57.98420689393449],[-125.40131418417207,57.98416828404605],[-125.40114047569907,57.984122641584335],[-125.40080775389293,57.98403702984948],[-125.40048771952172,57.983951474280516],[-125.40004807589361,57.98400669907576],[-125.40000024328477,57.98402330770421],[-125.39948010807485,57.98421948755819],[-125.39916986085268,57.984381841597134],[-125.3990795148837,57.98447789056508],[-125.399010222244,57.98457964218386],[-125.39894701452383,57.984630950147704],[-125.39879772734305,57.98464485825556],[-125.39856269227357,57.98466510927529],[-125.39841022481708,57.98467900261966],[-125.39824486816038,57.98463900189869],[-125.39799135516817,57.984559348098024],[-125.39786512343444,57.98451952338542],[-125.39786039116272,57.98455090623475],[-125.39778017713975,57.98460774481534],[-125.39758381599184,57.98465620808508],[-125.3973952061164,57.98468227449303],[-125.39729973589134,57.984702031808446],[-125.39719680282711,57.98472512008599],[-125.39699055699761,57.98479596942847],[-125.39673519337765,57.984896879087465],[-125.39651394682707,57.984979997280526],[-125.396398180909,57.985013121140646],[-125.39634089436046,57.98502519941386],[-125.39628360777512,57.98503727766273],[-125.39615121612104,57.9850512592541],[-125.39586114902711,57.985074621277754],[-125.39556799066888,57.98509348235518],[-125.39539228020604,57.985106145424886],[-125.39517422774895,57.98512198112351],[-125.3947972889348,57.98515616292477],[-125.39435198352373,57.98523377505242],[-125.39400612414852,57.98537240260929],[-125.39383562997003,57.98552079853362],[-125.3937776356472,57.98557661413979],[-125.39378695832465,57.98565404553456],[-125.39375959202114,57.98584234676905],[-125.39361213614752,57.986004306112925],[-125.3934683707904,57.98606758296487],[-125.39327768736023,57.986156442757434],[-125.39277698470673,57.98638969775465],[-125.39208286054958,57.9866837571079],[-125.3915658091284,57.986881042660755],[-125.39131304031558,57.986950549823426],[-125.39124300770403,57.986965932572325],[-125.39123214432833,57.98698382834191],[-125.39120606127364,57.9870274510865],[-125.39110018514629,57.987100992556044],[-125.39084323175294,57.987233288398784],[-125.39056287260212,57.987373327983555],[-125.39040084061762,57.98745446359251],[-125.39028615630508,57.98755039589719],[-125.3901603171649,57.98768104623368],[-125.39006829017691,57.987814094158885],[-125.39003724732294,57.98790255740405],[-125.39002580005246,57.98795634110842],[-125.39000286005883,57.98800109962056],[-125.38997925385132,57.98802230182544],[-125.3899535148473,57.98804461586245],[-125.38984930057875,57.98808115176959],[-125.38964452574811,57.988125078870134],[-125.38949619710291,57.988143467424344],[-125.38946456999551,57.988137714837606],[-125.38941656461756,57.98816329167421],[-125.38929385520302,57.988232268487934],[-125.38916769134539,57.98831805315139],[-125.38907366514893,57.988378188367314],[-125.3889969019803,57.98841709244383],[-125.38895302264366,57.98851446942216],[-125.38885799982756,57.98870021743039],[-125.38867740853644,57.988817156845094],[-125.38854810800804,57.988835631522775],[-125.38836326156198,57.9888886206908],[-125.38802322635263,57.988991369501434],[-125.38781898123533,57.98906670069594],[-125.3877996571979,57.98908455743202],[-125.38777218561528,57.98908330984233],[-125.38769602324152,57.98908520364863],[-125.38762512062303,57.98908824312836],[-125.38759976364902,57.98908700520484],[-125.38756480793872,57.98909133116147],[-125.38745573260576,57.98910092490843],[-125.38731495503202,57.98911037304939],[-125.38719635400012,57.989121044444985],[-125.38705443728482,57.98913497342441],[-125.3869210521541,57.98914445509867],[-125.38682048988866,57.98915072267337],[-125.38672205911575,57.98915699996603],[-125.38665637797864,57.98916454926608],[-125.38658225669859,57.989170938159916],[-125.38646418675833,57.989149085363046],[-125.38624860426675,57.98907631275813],[-125.3858950034874,57.989038795610554],[-125.38563281115228,57.98903646745024],[-125.38551838401486,57.989050521324074],[-125.38539503939788,57.98909257368249],[-125.3852547225535,57.989137912520135],[-125.38500462934404,57.98917152960103],[-125.38468846837807,57.98917119408781],[-125.38450287831016,57.98907612518819],[-125.38432709067433,57.988963155879226],[-125.38411483982195,57.9890104048628],[-125.38402405779993,57.989129995636404],[-125.38402028862265,57.989165868994405],[-125.38390411395257,57.9891574817051],[-125.38359240179209,57.989144826682896],[-125.38328824830685,57.9891221115816],[-125.3831192272158,57.98911235783948],[-125.38289522647739,57.98910234970401],[-125.38251068192285,57.98908150429988],[-125.38218085909185,57.98907661329499],[-125.38198631557006,57.9890757126677],[-125.38177719144103,57.989061285189536],[-125.38152888345891,57.9890500405854],[-125.38128370053984,57.98904217476369],[-125.38110401488895,57.9890379769627],[-125.38101108338259,57.989030816509405],[-125.38097734222764,57.989025052099805],[-125.38093588237662,57.98897438843191],[-125.38083016488682,57.98884491565788],[-125.38062879236324,57.98874528179472],[-125.38031710323999,57.988731497629296],[-125.38006282449291,57.98869779084827],[-125.37993432351529,57.988604102311555],[-125.37993903731623,57.98870282377629],[-125.379904314902,57.98875649859885],[-125.37975267864346,57.98884664252138],[-125.379547464913,57.98904308795397],[-125.3794267300816,57.98918272499612],[-125.37926814327969,57.98924591802407],[-125.37889968126062,57.989275608410225],[-125.37848100629621,57.98927253795914],[-125.37825264660478,57.98927035284114],[-125.37820092298836,57.98926450396165],[-125.37815118231255,57.989267636995976],[-125.37793534310978,57.989275603948855],[-125.37760831079471,57.989293146395916],[-125.3773679571272,57.989313335579496],[-125.37726731840733,57.98932408195944],[-125.37713370686158,57.98934701185972],[-125.37682828981468,57.98940054406071],[-125.37652919714266,57.98945522669889],[-125.37639369359371,57.98946468797895],[-125.3763115399846,57.98944523714338],[-125.37602173842858,57.98938668173053],[-125.37554982139176,57.98934185444643],[-125.3752782733667,57.98939329838282],[-125.37520885116297,57.98949840267591],[-125.37503182506853,57.98958842252443],[-125.37476996695031,57.98962981653083],[-125.37456870318623,57.989651305384136],[-125.37438873504841,57.98966392104634],[-125.3742414417144,57.98968229759426],[-125.37416828960309,57.98969429209655],[-125.37411643516438,57.98969629213421],[-125.37406231471883,57.98970837581814],[-125.37393094540002,57.9897234619356],[-125.37372644411255,57.9897482991047],[-125.37355484022018,57.98976656083304],[-125.37338544439329,57.98977922476642],[-125.37313125680944,57.989803827765705],[-125.37279577599438,57.98982131878585],[-125.37249948229994,57.989834506841284],[-125.37229202221225,57.989846990439695],[-125.37203760835034,57.98988504936226],[-125.3717182758368,57.989947477198555],[-125.37152078734819,57.98999589737999],[-125.3714443969893,57.990011239919696],[-125.37141729365015,57.99011429846239],[-125.37123197990357,57.990256989046365],[-125.37081284353675,57.99028081055586],[-125.37054368495332,57.99025150181047],[-125.3704927260999,57.99026359897273],[-125.37047567712341,57.99027136969103],[-125.3704574852346,57.99028474296317],[-125.37045272932647,57.99031612503247],[-125.37038915318954,57.9903864852948],[-125.37015837888093,57.99052783842529],[-125.36993078332837,57.99066920619119],[-125.36982350517037,57.9907606701332],[-125.36975569770325,57.99083101015986],[-125.3696888051584,57.990910327199984],[-125.36962103291754,57.99097954574807],[-125.36958552915074,57.99101526896203],[-125.3695597194752,57.99104094364122],[-125.36947652217971,57.991147101758294],[-125.36936178587212,57.991304704004364],[-125.36930523921038,57.99139752886826],[-125.36926861047208,57.99143773306513],[-125.36921689585317,57.99149468982932],[-125.36915636405533,57.99157291513691],[-125.36908999010583,57.991683638955024],[-125.36905170878434,57.99175972621552],[-125.36902876031151,57.99180335980161],[-125.36898490062858,57.99189624455657],[-125.3688828297202,57.992055028001644],[-125.36876309252621,57.992195782390354],[-125.36871145153265,57.99224825299429],[-125.36869634632912,57.99226612702761],[-125.36865120038084,57.992309655594454],[-125.36860687691353,57.99236664714335],[-125.36857245558605,57.99240125367978],[-125.36854112051653,57.99244148276907],[-125.36851832195352,57.99247614427576],[-125.36848380611377,57.99251635830823],[-125.36836264933108,57.9926156067868],[-125.36817742683611,57.99275044291074],[-125.36805211437974,57.9928451850994],[-125.36798037229707,57.99289756030389],[-125.36787746373498,57.99298007089886],[-125.36772782890162,57.99313750684677],[-125.36760784029475,57.99329171832867],[-125.36755581829522,57.99336661862484],[-125.36753318633848,57.99339230804646],[-125.36745993999234,57.99347159412782],[-125.36735226979872,57.993585486441596],[-125.36730379613033,57.99370078086119],[-125.36729426861646,57.993826354222314],[-125.36729216111323,57.99388915349907],[-125.36721183383676,57.993886529561266],[-125.36703334574196,57.99387222422918],[-125.36691548044902,57.993838017482496],[-125.36687064344453,57.99380079223183],[-125.36679945686078,57.993757834013714],[-125.3666698194981,57.99373142236924],[-125.36651148876109,57.99371384718773],[-125.36630159868604,57.993681446348006],[-125.36602753830019,57.99362855174571],[-125.36579139445807,57.99358480947665],[-125.36562679600202,57.99356271709027],[-125.36550546789526,57.993545316551746],[-125.36537348777318,57.9935334732319],[-125.36515317922307,57.993490926707445],[-125.3649085589115,57.99344826415583],[-125.36474527417147,57.99341159621035],[-125.36456920785199,57.99337935359896],[-125.3643499669966,57.993336810829696],[-125.3640663275815,57.99328835295707],[-125.36376990695194,57.99324431993955],[-125.36364111123648,57.99323136848673],[-125.3635304332411,57.99321065213834],[-125.3632391572008,57.99317561521917],[-125.36298760669114,57.99316768549095],[-125.36289760380477,57.99317398552855],[-125.36281287738561,57.99318143228583],[-125.36268484345602,57.993186429046645],[-125.36251973437228,57.99319461341877],[-125.36232387551033,57.99320713707527],[-125.36220639653007,57.993213305392494],[-125.3621866211006,57.99319414380939],[-125.36213536884598,57.99316137269134],[-125.3620122147229,57.99312713633744],[-125.36171356639039,57.993090939254145],[-125.36127543794771,57.993047344618574],[-125.36103785348546,57.99302714050307],[-125.36083930859756,57.993011609271676],[-125.36040940792245,57.99304431957432],[-125.35991923973471,57.993138427206745],[-125.35944599350577,57.99316980497878],[-125.35899286926755,57.99313846841869],[-125.35873518616064,57.99311816368565],[-125.3586518337166,57.99310654730111],[-125.35856200046993,57.99310387247789],[-125.3584139436173,57.993104282550746],[-125.35818956135638,57.99311554145549],[-125.35792907347852,57.99313559907959],[-125.35777345265399,57.99314494481665],[-125.35763907369902,57.993149906214],[-125.35741573988727,57.99316116886618],[-125.35720682338483,57.993196054058004],[-125.35701964274556,57.993257961897505],[-125.35683781697661,57.99331540890228],[-125.35670878244788,57.993378718053286],[-125.35661046190648,57.99343881033835],[-125.3565334240734,57.9934911539818],[-125.35645557007862,57.99352891291265],[-125.35632024730822,57.99358882660841],[-125.35615844149983,57.9936508556355],[-125.35603912469581,57.99370187349253],[-125.35589437151971,57.993756133303634],[-125.35568988203669,57.9938403877351],[-125.35554179303347,57.99390360384241],[-125.35545669764633,57.99393235449041],[-125.35528969996776,57.993927061681326],[-125.35495695243208,57.99396695328047],[-125.35467597711747,57.994071025316394],[-125.35458170773111,57.994141230125976],[-125.35448165260705,57.99417888060682],[-125.35419056299644,57.994255984436215],[-125.353824131712,57.994348425323004],[-125.35360447869108,57.99439110417547],[-125.35355245977276,57.99440318984476],[-125.35349029724878,57.99445111746296],[-125.35332745909591,57.994572582790354],[-125.35300689583521,57.99470225637993],[-125.35262872223913,57.99486193299242],[-125.35248493757736,57.995042934434224],[-125.3524824957051,57.995123677619205],[-125.35244299333976,57.99514479636444],[-125.35241385037283,57.99517942452524],[-125.35236338622742,57.99522292202889],[-125.3522982116788,57.99526186175289],[-125.35227145679079,57.99527967750611],[-125.35222033039848,57.9953007397897],[-125.35212362490387,57.9953283104485],[-125.35202511768365,57.99539849301921],[-125.35192593241777,57.99550792816971],[-125.35183249028533,57.99559047278635],[-125.35178650416054,57.99562053265853],[-125.35177251603189,57.99563392391733],[-125.3517470008808,57.9956416512091],[-125.3516210362781,57.99570945698235],[-125.35138313281595,57.99582943395862],[-125.35118677168302,57.99593166685752],[-125.35094993385044,57.996050526684144],[-125.3506259529059,57.99619363743844],[-125.35047248942848,57.99626130842325],[-125.3504536096832,57.996252243769945],[-125.3503213546689,57.99619439864844],[-125.35010248391187,57.99600826945992],[-125.34992779900074,57.99577412635956],[-125.34975346084948,57.99564317184274],[-125.34945564259331,57.995557600980206],[-125.34906185652596,57.9954569807633],[-125.348808956988,57.9954041538368],[-125.34874236394762,57.99540270738368],[-125.34861921027041,57.995430146491834],[-125.34827464584377,57.99547893672892],[-125.3478654299942,57.99547581673157],[-125.34764714739751,57.99543885907808],[-125.347608360583,57.99541960235582],[-125.34755467426419,57.995404759199104],[-125.34738014725221,57.99534558297637],[-125.34716237042117,57.99528058703547],[-125.34704133794568,57.995246347135556],[-125.3469983217597,57.9952270695507],[-125.34686454143491,57.995196131929234],[-125.34659884514113,57.995089401468505],[-125.34636485144621,57.99486169309466],[-125.3462260678539,57.994633329070666],[-125.346181122108,57.99454225951208],[-125.34615589955976,57.994533163192855],[-125.34611670682149,57.99453633601698],[-125.34601841144296,57.99453361131129],[-125.34583872301656,57.994528244510306],[-125.34570244028603,57.99451972542657],[-125.34556828943637,57.994511216654644],[-125.34528970946569,57.994476202729864],[-125.34496543603089,57.9944533015959],[-125.34474249911135,57.994442113105706],[-125.34438172466372,57.99445043612448],[-125.34386853761355,57.9944669819203],[-125.34362224172347,57.994460163137084],[-125.3435849453325,57.99447680372089],[-125.34341105296689,57.99450286690039],[-125.34314289256137,57.994476872520096],[-125.34293762387689,57.994422025617524],[-125.34278686900966,57.99439548674796],[-125.34262214306888,57.99438121648938],[-125.34248254057486,57.994381650551546],[-125.34243927506112,57.99437582944998],[-125.34244527796471,57.99433548148322],[-125.34245546624179,57.99423683103244],[-125.34242938721624,57.99415594751454],[-125.34239403831008,57.994060437560975],[-125.34227438687306,57.99394880989882],[-125.34190765827469,57.99387522023277],[-125.34156067940584,57.99382079413511],[-125.34146082224403,57.9937866536259],[-125.34133997688383,57.99374231510708],[-125.3409857585518,57.993619434339436],[-125.34059068867032,57.99347391889712],[-125.34033071934581,57.9934030954164],[-125.34017370475893,57.993372036272234],[-125.3401029676413,57.99336495702267],[-125.34003539154338,57.99335901496076],[-125.33991717779318,57.99334609289552],[-125.33982953903372,57.99333892992391],[-125.33968798336488,57.993330378605776],[-125.33946908983154,57.99332929565915],[-125.33926104399966,57.99331368528074],[-125.33892767100099,57.99326829245185],[-125.3384982634196,57.99321120695218],[-125.33814344744198,57.9931825298601],[-125.33774912058274,57.99317608776135],[-125.33739252701317,57.993187777362245],[-125.33721179731094,57.99318239375051],[-125.33705607284165,57.99313787816432],[-125.33688449896103,57.993092162067114],[-125.33681911792989,57.993081742887924],[-125.33678366137639,57.99305352679515],[-125.33665689272229,57.99298672265512],[-125.33650026243278,57.99293322914229],[-125.33632680370212,57.99299517631343],[-125.33601953342075,57.993148428753564],[-125.33571497659754,57.99320747980512],[-125.33561263444294,57.993194632901705],[-125.33556612818901,57.99319327982972],[-125.33536235702691,57.993174319849125],[-125.33493801302575,57.99313070725616],[-125.33452319514421,57.99308714080198],[-125.33436715609015,57.993060566062994],[-125.33430391051455,57.993049034699155],[-125.33416892044502,57.99302817268508],[-125.33398442295594,57.9929958475569],[-125.33376205526619,57.992953238788594],[-125.33365562719214,57.992931397206284],[-125.33362497094232,57.992931244173235],[-125.3335339943997,57.99293303318119],[-125.33343886788585,57.99293031501332],[-125.33340398501876,57.99292901922634],[-125.33333413662878,57.992932035201434],[-125.33309073454123,57.99294203536017],[-125.33275520708087,57.992959425801516],[-125.33245308055153,57.99300053599594],[-125.3320846528265,57.99308393451832],[-125.33157186150697,57.99307800296668],[-125.33113167036325,57.99303429889753],[-125.3309210342072,57.99316334871519],[-125.3308102502153,57.99326822365794],[-125.33075318990893,57.99326569440147],[-125.3306539930752,57.993253981055695],[-125.330493406399,57.993245324549065],[-125.33029965143368,57.993257811826275],[-125.33008762857898,57.993287031128524],[-125.32987812544384,57.99335327550785],[-125.32952868510147,57.99343788396858],[-125.32900640454775,57.993490218075685],[-125.3284765490358,57.99349204007633],[-125.3280193626991,57.99351104979647],[-125.32767430256777,57.99352837952803],[-125.32746366349379,57.99353965606716],[-125.32723512008405,57.993546355643375],[-125.3268583567579,57.99356240188859],[-125.32651972062567,57.99357527463691],[-125.32626660615381,57.993595307786244],[-125.32591254132785,57.99364287072064],[-125.3255456051723,57.99370046209123],[-125.32525933462595,57.99374163621734],[-125.3249942926457,57.99377843067954],[-125.3246547661794,57.99384064462055],[-125.3242385787404,57.9939316312662],[-125.32394344159599,57.993995189722604],[-125.32380409815516,57.99404046958136],[-125.32367172364569,57.99410933822107],[-125.32350416378142,57.99413540760312],[-125.32327805206293,57.994182490384475],[-125.32303341969707,57.99431920694875],[-125.32284234895836,57.99441693875806],[-125.32271835318376,57.99443201213598],[-125.32266965003076,57.994435129833775],[-125.32264624459562,57.994442862283854],[-125.32254819058257,57.99448498556464],[-125.3223478521031,57.99456921044432],[-125.32216344702849,57.99464902953452],[-125.32209197845876,57.99468343627264],[-125.32203334430702,57.99470893534264],[-125.32192471437766,57.994751004473095],[-125.32182244919319,57.99479198425077],[-125.32172326329106,57.994838587608164],[-125.32163145061567,57.99488634996559],[-125.32155031363833,57.99492855850998],[-125.32147234039729,57.99497078308852],[-125.32138679074686,57.99502306352992],[-125.32128103586703,57.99508197080784],[-125.32119548569679,57.995134251132896],[-125.32114522882344,57.99516427883836],[-125.32111646262389,57.995176470178954],[-125.32101645232936,57.99520960961823],[-125.32075121318533,57.99525648920811],[-125.32050323799339,57.99528438890695],[-125.32042385851152,57.995287349648116],[-125.32037344521692,57.99526802575939],[-125.32022101447323,57.99521789913367],[-125.32003156440811,57.99516758377918],[-125.31992942885763,57.995142388249825],[-125.3199042325878,57.995132165466366],[-125.31986000198853,57.99512184570234],[-125.31965761943496,57.995084923157606],[-125.31927188980761,57.99501117421456],[-125.31883057258754,57.99491246527212],[-125.31839361313315,57.99480592590318],[-125.31798928260463,57.99470852462482],[-125.31770487143078,57.99464650476116],[-125.31761316717476,57.99463033359135],[-125.31746623443405,57.99462621761953],[-125.31715858639075,57.994621279498084],[-125.31686481966821,57.99460856048709],[-125.31673392058657,57.99459555293861],[-125.31669156141444,57.994598700930176],[-125.31663236472556,57.9945972763068],[-125.31653512032464,57.99459453526215],[-125.31641251760678,57.99459054269297],[-125.31626558515349,57.99458642539981],[-125.31611663648228,57.99457781120607],[-125.31605735811486,57.99458087231888],[-125.31596857337946,57.994578174203255],[-125.31578262613344,57.99456824844505],[-125.3156567609992,57.994568724869524],[-125.31562821838124,57.9945685785451],[-125.31557179715382,57.994588478127675],[-125.31544640476069,57.99462148325248],[-125.31519005206245,57.99464484369104],[-125.31493595721331,57.994660364007366],[-125.31476319191955,57.994681909352586],[-125.31456170296748,57.99471227981688],[-125.31431142749727,57.99475025061842],[-125.31414369434874,57.99478528025111],[-125.31405010563984,57.994813961063734],[-125.31395146701091,57.99482915662321],[-125.31386592415905,57.994823108962066],[-125.31378169684788,57.994802487168386],[-125.31359704414609,57.994779105784],[-125.31336076959924,57.99474536420402],[-125.3131971192346,57.99473106311549],[-125.3130331852668,57.99473134120653],[-125.31263658782102,57.99473266451585],[-125.311952446414,57.99478522026758],[-125.31126632773831,57.994945436266576],[-125.31074777517152,57.99513679737241],[-125.31034769674764,57.99526932360936],[-125.30996381586121,57.995383986736336],[-125.30948755271018,57.995518359851665],[-125.30900763428856,57.995621307450484],[-125.30867254243317,57.99567004478302],[-125.30845642450547,57.99569023591481],[-125.3082060536665,57.99573268130201],[-125.3078844504232,57.995794945833026],[-125.30768261898541,57.99584324991916],[-125.30754438085104,57.99588403234271],[-125.30739891402781,57.99591580428021],[-125.3073475132708,57.99595030736597],[-125.30733935741274,57.99599064284613],[-125.30727421762575,57.99602507462111],[-125.307152411847,57.996034536962625],[-125.30701150533196,57.99604838646555],[-125.30689789011421,57.996072471966144],[-125.30675624880656,57.996068371695564],[-125.30652648296943,57.99602567893695],[-125.30630185952192,57.99593366185662],[-125.30614384625831,57.99584311223143],[-125.30606830880778,57.99581019304376],[-125.30593069097333,57.99593173263034],[-125.3055640739775,57.9960834860413],[-125.30520902043115,57.99600985586525],[-125.3050812626512,57.995884692646456],[-125.30507744796114,57.99586224067511],[-125.30503402044059,57.995865379423115],[-125.30481680530933,57.996002205977476],[-125.30450184171423,57.99627648055709],[-125.30421216617424,57.996384888529306],[-125.3037701533345,57.9963814624582],[-125.30334860808651,57.99647235669023],[-125.303079390617,57.996617882036084],[-125.3028099419268,57.996775743343655],[-125.3026549072354,57.99686578379095],[-125.30264178293672,57.99694647096304],[-125.30267911410797,57.99710032618375],[-125.30270850278907,57.99716889774973],[-125.30257808221727,57.997187283820224],[-125.30216363897229,57.997179510066886],[-125.30172041990085,57.9971267202074],[-125.30156465857438,57.99708552753133],[-125.30151823220888,57.99707967659804],[-125.30143788186591,57.99707813457307],[-125.3013275453393,57.997096624511975],[-125.3012426308654,57.99711300420803],[-125.30104731685267,57.99715123805434],[-125.30050555830867,57.997221305087564],[-125.29989041567704,57.997257336873865],[-125.29956882474461,57.997261258049676],[-125.29944690835761,57.99727632086562],[-125.29939934929541,57.99727494968316],[-125.29935681817723,57.99728706417077],[-125.29916701082468,57.99731298649593],[-125.29884809759157,57.99734383859799],[-125.2986351917213,57.99736066598933],[-125.29847078099912,57.9973867207515],[-125.29824170580012,57.99742028668036],[-125.29807522548809,57.99744296525505],[-125.29798724956719,57.99745371875831],[-125.29782690422935,57.99743156493587],[-125.29753787687908,57.99739078814719],[-125.29731156671438,57.99738959716193],[-125.29723504703023,57.997409383338685],[-125.29712070836642,57.99741551105892],[-125.29690790635038,57.99742672820568],[-125.29671949878887,57.9974347086972],[-125.29655848172261,57.9974484412942],[-125.29638544078264,57.99748342089867],[-125.2962174053379,57.99753300758725],[-125.29605598804837,57.997568048046965],[-125.2959115540466,57.99759981305634],[-125.295809484148,57.99762843654833],[-125.2956291988618,57.9976544041009],[-125.29528358038908,57.99769856614301],[-125.29494836791432,57.99775175512897],[-125.29473172488989,57.99779884004772],[-125.29461044929482,57.99783633405448],[-125.29447650408953,57.99787263939017],[-125.29424813404387,57.99792414800319],[-125.2940608260654,57.99798596785353],[-125.29392809347085,57.9980144277922],[-125.2937337591212,57.99799994054764],[-125.29336988066497,57.998002501505695],[-125.29295847747393,57.99805752546976],[-125.29273766341042,57.99810122027011],[-125.29263544178289,57.998137691839794],[-125.29249186152555,57.99817955221372],[-125.29216036340502,57.99825967260913],[-125.29169474487092,57.99838506674154],[-125.29129490337559,57.99849959235951],[-125.29093851250856,57.998609861137545],[-125.2906617036584,57.99870597089158],[-125.29047015562446,57.99876776328058],[-125.29026196162461,57.998814885961096],[-125.2900120585097,57.99883038139507],[-125.28982618195268,57.998815933442216],[-125.2897660833825,57.998805519238374],[-125.28969087753975,57.998811848806994],[-125.28958798829568,57.998827003922756],[-125.28941632331568,57.99884403614805],[-125.2890972828571,57.99888047250246],[-125.2888006334523,57.9989069328713],[-125.28868391867658,57.99892650009352],[-125.28864366740018,57.99892965046897],[-125.28854598867319,57.998949318998285],[-125.28841448895281,57.99896768558657],[-125.28834118939659,57.998984119068055],[-125.28826271672695,57.99899491687137],[-125.2881376471988,57.999008831020376],[-125.28806761369607,57.9990207953192],[-125.28803379277157,57.99901949335274],[-125.28792025841415,57.99903907687409],[-125.28768603765556,57.9990636245119],[-125.28748785477649,57.999084999236885],[-125.28740620047786,57.9990957795606],[-125.28731610248558,57.99910651476157],[-125.28710399187166,57.99913678747128],[-125.2867837314737,57.999181063107926],[-125.28646744477756,57.999238818572245],[-125.2862201043724,57.99928572579318],[-125.2860468533366,57.99933078555589],[-125.28591069401342,57.9993715570404],[-125.28572988129837,57.99942442724678],[-125.28546899377962,57.99951612514672],[-125.28526345801521,57.99959017307238],[-125.28517387337689,57.999628949925274],[-125.28515231583934,57.999650145157126],[-125.28505228561147,57.9997370953843],[-125.2849037530117,57.99987201516175],[-125.28482918491717,57.99995573678174],[-125.28466462765859,57.999932422931835],[-125.28427188711859,57.99989442646094],[-125.28389369688952,57.99986996624204],[-125.28361462105262,57.999861739403094],[-125.28342547497218,57.999851751449555],[-125.28331569961406,57.99983994608373],[-125.28315308762942,57.99982561371971],[-125.28288264442655,57.99980845878693],[-125.2826153612649,57.999792441899],[-125.28246843361232,57.99978716588584],[-125.28240085509859,57.99978119460929],[-125.28226537644838,57.99978607443479],[-125.28202744876303,57.99978367354437],[-125.28181990376441,57.999796016650954],[-125.28167269718368,57.99980531924516],[-125.28157432832627,57.999805911570036],[-125.28148130336199,57.999803167739415],[-125.28131708933317,57.999816864868606],[-125.28113353328284,57.99984728186867],[-125.28089993936244,57.999894253336464],[-125.28058158690534,57.999948619012926],[-125.28036288400443,57.99999118333358],[-125.28030876617123,57.99999986454021],[-125.28029178013507,58.00000313782005],[-125.28025462222246,58.000010788813626],[-125.28005378170901,58.00005905700111],[-125.27970551256396,58.00012896189499],[-125.27928684358226,58.000174931970506],[-125.27884743559548,58.00019835642101],[-125.2784918015937,58.00021101602323],[-125.27832444191101,58.00022357087876],[-125.2782489509394,58.000244473494355],[-125.27815523492679,58.000277615302494],[-125.27804091965722,58.00033644281313],[-125.27792422525276,58.00040983836578],[-125.27786097648841,58.000453239288994],[-125.27770859468316,58.00045690146889],[-125.27733551787726,58.00049638242147],[-125.27702398360483,58.000581060237685],[-125.27690964403172,58.00064100829787],[-125.27684983430497,58.00067096799475],[-125.27678149873765,58.00070424633195],[-125.27668821254159,58.00071495714684],[-125.27655484500832,58.00071984264194],[-125.27644872267452,58.000793294241674],[-125.27640039293652,58.00088612646969],[-125.27635230081452,58.00096662219799],[-125.27630264503293,58.00107290662178],[-125.27626437182471,58.0011927121422],[-125.27623091282717,58.00128226011099],[-125.27618698548056,58.00136614324612],[-125.27613196246337,58.00147688502921],[-125.27594126938392,58.00154763453594],[-125.27558979738654,58.00161751155389],[-125.27537407545502,58.00172401623102],[-125.27530362638566,58.001812241657916],[-125.27523520074125,58.001850005245124],[-125.275201972079,58.001872257221954],[-125.27526877359314,58.00191860616185],[-125.27543522599468,58.00206307663518],[-125.27552325149148,58.00216113505465],[-125.27057805770538,58.002766803911584],[-125.26220465089587,58.00341171624479],[-125.25682571336631,58.004961131875035],[-125.2496349456916,58.0073705503253],[-125.2418072756247,58.01109501970823],[-125.22570620223684,58.016942847874546],[-125.22076563882138,58.019229194598],[-125.20840129239795,58.021821537598235],[-125.19700838658457,58.02246242593713],[-125.19999915016314,58.02028529259823],[-125.19966301608734,58.02026645429437],[-125.19932459848411,58.02025545302652],[-125.19898777054863,58.020269136799435],[-125.19865269931786,58.02029965506043],[-125.19832678296856,58.02034705222694],[-125.19800906026336,58.020407957639684],[-125.19769954500937,58.02048012813765],[-125.19739929653774,58.02056469180036],[-125.19711675592387,58.02066282108409],[-125.19685609071668,58.02077678447158],[-125.19663201910812,58.020911157231424],[-125.19648145852925,58.02107289155261],[-125.19634250414256,58.02123581722027],[-125.19613623328199,58.02137926957322],[-125.19589645942357,58.021505695146665],[-125.19563162403358,58.021616266238745],[-125.19533759068082,58.021706471155646],[-125.19502801144102,58.02178087858685],[-125.19471233947893,58.02184403202798],[-125.19439353156278,58.02190492251038],[-125.1940757241565,58.021968061590385],[-125.19377238588103,58.02204811209347],[-125.19347012016352,58.02212704674192],[-125.1931390918108,58.02216542736576],[-125.19280039352486,58.02216674616484],[-125.19246662819411,58.02213556588639],[-125.19216783694849,58.02205300007635],[-125.19188636479004,58.02195259186688],[-125.19158762461765,58.02186778175528],[-125.19127587313562,58.021797473737266],[-125.19095534283001,58.02174169335355],[-125.19061689027637,58.02173179151826],[-125.1902980282514,58.021794915239035],[-125.19004047637758,58.02191000616777],[-125.18982371680053,58.02204777716667],[-125.18963422670551,58.022196929841],[-125.18946996252285,58.022354086940474],[-125.18932780675898,58.022516986327275],[-125.18918351638942,58.022679872643074],[-125.18901401404244,58.02283475417948],[-125.18881191502541,58.022979342679555],[-125.18857629066261,58.02310802405908],[-125.18831033141592,58.023219695860895],[-125.18801735887152,58.02330876979286],[-125.18769037745821,58.023355013271605],[-125.18735186261674,58.02334734616924],[-125.18701923831051,58.02331167258281],[-125.18668874804102,58.023276011157904],[-125.1863550752287,58.02324032952942],[-125.18602792281065,58.02319683518169],[-125.18571831151395,58.023125405478005],[-125.18543040178311,58.02302943088876],[-125.18515108114795,58.022927899777024],[-125.18486743164847,58.02283082830432],[-125.18456220474724,58.02275269271858],[-125.1842417494328,58.022693531639504],[-125.18391799001483,58.022639957898235],[-125.1835875086117,58.022604288827466],[-125.18325255051667,58.022628039479805],[-125.18293371734043,58.02268890266505],[-125.18262726408545,58.02276442241587],[-125.18230842873558,58.022825284117886],[-125.18197337002773,58.022853517606855],[-125.18163743986558,58.02287277164597],[-125.18129863688286,58.02287854732333],[-125.18096129228924,58.022866384531774],[-125.18062743258822,58.022839660688106],[-125.18029812484843,58.02279838236525],[-125.17997003920894,58.022749259113276],[-125.17964398968968,58.022704634194646],[-125.17931359299725,58.02266446840942],[-125.17898212271488,58.022625416865765],[-125.17865274499675,58.02258749902249],[-125.17832236732878,58.02254733089501],[-125.17799306469185,58.0225060469034],[-125.17766488628378,58.02246140403907],[-125.17733894039164,58.022412287476065],[-125.17702283063282,58.0223486491376],[-125.17672193066268,58.022267157233465],[-125.17642324689888,58.02218119167614],[-125.17611366227588,58.02210973979293],[-125.17578663016292,58.022061734390135],[-125.17545278131031,58.02203499763821],[-125.1751166439036,58.02201609753479],[-125.17478053150752,58.02199607507878],[-125.17444451819807,58.02197156574947],[-125.17410850532768,58.02194705557545],[-125.1737746092879,58.02192255764695],[-125.17343859729421,58.02189804578938],[-125.17310261046163,58.02187241158069],[-125.17276871574317,58.02184791114002],[-125.17243270507538,58.02182339675437],[-125.17209671959878,58.02179776001786],[-125.17176287572575,58.02177101405246],[-125.17142913141655,58.02173978122872],[-125.17109752882344,58.02170743919854],[-125.1707638104256,58.021675083208756],[-125.17042999339643,58.02164721241008],[-125.17009393643123,58.02162493515899],[-125.1697569118131,58.02164639578807],[-125.16943198910467,58.021694850658925],[-125.1690969308081,58.02172305181822],[-125.1687601035521,58.02173553788843],[-125.16842123427772,58.02174464541798],[-125.16808258868683,58.02174365853755],[-125.16774404264224,58.02173818477643],[-125.1674110990703,58.021766394894314],[-125.16709839746349,58.021836231845334],[-125.16679811900576,58.02191848383428],[-125.16651235495563,58.02201428565884],[-125.16625365395447,58.022130445705606],[-125.16603259787374,58.02226703020321],[-125.1658388291341,58.02241387971536],[-125.16564294245272,58.02256071575126],[-125.16543448039957,58.02270186466015],[-125.1651715883604,58.02281575324137],[-125.164867139857,58.022894610005615],[-125.16455036606436,58.022956564070384],[-125.16422540029514,58.02300612785296],[-125.16389234283137,58.0230388152658],[-125.16355540199683,58.02305577425671],[-125.16321656957014,58.0230626255842],[-125.16287796227599,58.02305938249621],[-125.16254164676157,58.023048301274784],[-125.16220313984964,58.023040570451876],[-125.16186433237216,58.023046296843596],[-125.16152938166134,58.02306887153363],[-125.16119833743029,58.023106051540516],[-125.16087331576063,58.02315785018921],[-125.16055854921792,58.02322429412498],[-125.16024995520165,58.02329862777888],[-125.15994135996237,58.02337296072596],[-125.159634854847,58.02344842778621],[-125.15933661332826,58.023532919473624],[-125.15905704165752,58.023634353005335],[-125.15880039773725,58.02375163365242],[-125.15860029383833,58.02389618990717],[-125.15843798355603,58.02405444396211],[-125.1581418258635,58.024140067877504],[-125.15780320928322,58.024136811923334],[-125.15746479428992,58.0241245830588],[-125.1571286472329,58.02410563765226],[-125.15679489434432,58.024074368189694],[-125.1564699863431,58.02402632875762],[-125.15614518009558,58.02397380251368],[-125.1558136971406,58.02393581493731],[-125.1554776536103,58.02391237935678],[-125.15514150945863,58.02389342895475],[-125.15480536564655,58.02387447770742],[-125.15447159147126,58.02384432395425],[-125.15414008606513,58.02380745373622],[-125.15380396882973,58.0237873784655],[-125.15346507739622,58.02379644807684],[-125.15314419609373,58.023851619299734],[-125.1528979880621,58.0239745632465],[-125.15273986106952,58.024133958738716],[-125.15260912078303,58.0242991361316],[-125.15248256171948,58.02446658329297],[-125.15235391033329,58.024632895429434],[-125.15223369864326,58.02480038270365],[-125.15212401795561,58.02497018007846],[-125.15203330930103,58.02514346282584],[-125.1519700645753,58.02531916322121],[-125.15193637538039,58.02549841624818],[-125.15192173522449,58.02567779022855],[-125.15190921153436,58.025857177678745],[-125.15189245449261,58.026036538289624],[-125.15187993054269,58.02621592580713],[-125.15186317320068,58.0263952864844],[-125.15181892465868,58.02657335099729],[-125.15175353449813,58.02675015963448],[-125.15165861186217,58.02692229407655],[-125.15147947803233,58.027073703619855],[-125.15121235576332,58.02718417385722],[-125.15091401479202,58.02727089010313],[-125.15060536837248,58.02734520180551],[-125.15029057391183,58.02741050034156],[-125.14997164663154,58.02747128516967],[-125.1496548095902,58.0275332042218],[-125.14933590567271,58.027592866031235],[-125.14901284366688,58.027649135591226],[-125.14868988251496,58.0277009183366],[-125.14836281437638,58.02774706577312],[-125.1480337051458,58.027789834385786],[-125.14770054013145,58.027824724619435],[-125.14736556372621,58.027846142405465],[-125.14702673608805,58.02785070968835],[-125.14668821455643,58.02784181800366],[-125.14635214173585,58.027818359369974],[-125.1460227514377,58.02778036086602],[-125.14569343844317,58.02773899702542],[-125.1453619328018,58.02770098336089],[-125.14502586207269,58.02767752139468],[-125.14468713797494,58.02767759670968],[-125.14435012121295,58.027695628856016],[-125.14401310412693,58.02771366015266],[-125.14367634277414,58.02772047551666],[-125.14333761828586,58.02772054741039],[-125.1429989706742,58.027717253920976],[-125.1426603743942,58.02771171655706],[-125.14232182950661,58.027703935319025],[-125.1419833873848,58.02769166719162],[-125.14164719052113,58.027673804266904],[-125.14131101965407,58.02765481898872],[-125.14097268105212,58.0276380622709],[-125.1406364337572,58.027622439819126],[-125.14029791580212,58.02761353194614],[-125.13995911512319,58.02761695979735],[-125.13962227672198,58.02762712946479],[-125.1392831670143,58.02764401369089],[-125.13895012389311,58.027673274562325],[-125.13863117600455,58.0277340323373],[-125.1383266833341,58.02781058601977],[-125.1379915212751,58.027839830855456],[-125.13765537655668,58.02781971486884],[-125.13732609824223,58.02777720889651],[-125.13700998540325,58.02771459702389],[-125.13670698685407,58.02763412236212],[-125.13640182126292,58.027555876351684],[-125.13607923259141,58.02749882877873],[-125.13574541538775,58.02746974962937],[-125.13540922348531,58.027451871012765],[-125.13507310949164,58.02743062703177],[-125.13473924192957,58.02740378838321],[-125.13440325816006,58.02737693518748],[-125.1340693656625,58.0273512163726],[-125.13373555133087,58.02732213220645],[-125.13340186708011,58.027287439678304],[-125.1330725723368,58.027246044753866],[-125.13275869147607,58.02717895057182],[-125.13247300288981,58.027082875196825],[-125.13216999322917,58.027003511807074],[-125.13183613154644,58.02697666591662],[-125.13149725794115,58.02698343682372],[-125.13115828029547,58.02699469289124],[-125.13082139311976,58.02700708337435],[-125.13048489571642,58.02700265043505],[-125.13019490295818,58.02690990716999],[-125.13001429163468,58.02675618352811],[-125.1298762487468,58.02659264184534],[-125.12973609043264,58.02642908626132],[-125.12958741480585,58.026267718407176],[-125.12944725896521,58.0261041625781],[-125.12928366551269,58.02594718390997],[-125.12906671588578,58.02580892567574],[-125.12879183853212,58.02570393953986],[-125.12848236775432,58.02563013401243],[-125.12816409298908,58.025570852058635],[-125.12784150784182,58.02551490622271],[-125.12751670273308,58.0254634317982],[-125.12718957316748,58.02542091477727],[-125.12685583356418,58.02538957047928],[-125.12651736515627,58.02537950621136],[-125.12618030806398,58.025399735485195],[-125.12584727465371,58.025428963623916],[-125.12550836165614,58.0254379623339],[-125.12517211437462,58.0254234225042],[-125.12483837643501,58.025392073166536],[-125.1245157454319,58.02533836231507],[-125.12420625989829,58.02526566841379],[-125.12390547755268,58.02518293580946],[-125.1236111772114,58.02509463668368],[-125.12332121620022,58.02500187869265],[-125.12303125662311,58.024909120081574],[-125.12274777923666,58.02481079504242],[-125.12246861511049,58.02470913271639],[-125.12218947874348,58.024606348317946],[-125.12189560704108,58.02450010146543],[-125.12160779764423,58.024406232227484],[-125.12131570412899,58.024314577536686],[-125.1210235857606,58.02422404371599],[-125.1207336378778,58.0241312801969],[-125.12044800330546,58.02403517942971],[-125.12017102028177,58.023931283325005],[-125.11990477907295,58.023820727381704],[-125.11965356531314,58.023701296563665],[-125.1194109769853,58.02357519210268],[-125.1191791042543,58.02344354950192],[-125.11895149239292,58.02331081293625],[-125.11872816772436,58.023175860930344],[-125.11851981783317,58.02303427734273],[-125.1183221307273,58.022889398802334],[-125.11812232873059,58.02274450602053],[-125.1179075815473,58.02260512262378],[-125.11767783649061,58.02247349153106],[-125.11744166470258,58.02234518260505],[-125.11719906618644,58.02222019581013],[-125.11694578177905,58.02209962462586],[-125.11668387505087,58.021985725976165],[-125.11642839826588,58.021868504334996],[-125.1161943773438,58.02173908579108],[-125.11603726029662,58.02157989066681],[-125.11591847662588,58.02141085405102],[-125.11568647089989,58.02128593466825],[-125.11536335987647,58.02134436546397],[-125.11504440115637,58.02140618800768],[-125.11472956820676,58.02147252382464],[-125.11439859765954,58.02150510181051],[-125.11406260183362,58.02148156212344],[-125.11373785055909,58.0214300544277],[-125.11342402644668,58.021364036745666],[-125.11311459519743,58.021291317466115],[-125.11280296924532,58.02122194790271],[-125.1124826138043,58.02116373631617],[-125.11214903054442,58.021127869449934],[-125.11181277397124,58.02111553905451],[-125.11147429504081,58.02110767971166],[-125.11113825146181,58.021086375667345],[-125.11081131155412,58.02103821127862],[-125.11049746927704,58.02097330824335],[-125.110185930613,58.02090056811872],[-125.10987433993407,58.02083007025978],[-125.10955396576306,58.02077297316799],[-125.10922245181754,58.02073935610275],[-125.10888651938072,58.02071356043063],[-125.1085551398126,58.02067433424694],[-125.10826522354087,58.02058266551989],[-125.10806547267394,58.02043775806194],[-125.10785717823315,58.020296158268245],[-125.10764462615147,58.02015565138861],[-125.10743630818162,58.0200151724739],[-125.10723656353808,58.01987026386576],[-125.10703470419422,58.019725340834626],[-125.10680930080143,58.019591476776355],[-125.10655606753546,58.01947088623932],[-125.10625314748242,58.01939258622638],[-125.10592389855806,58.0193533677314],[-125.1055902574518,58.0193208490299],[-125.10526770622867,58.01926709205396],[-125.1049386467414,58.01922002070313],[-125.10460586579818,58.01924022377296],[-125.10430956978054,58.019327970863124],[-125.1040465427087,58.019440617209945],[-125.1037939344651,58.01956006298865],[-125.1035350830955,58.01967497973505],[-125.10326784558268,58.01978647469485],[-125.10301108047508,58.01990252615182],[-125.10277933335558,58.02003444857981],[-125.10257064890297,58.02017549895193],[-125.10237034747439,58.02031997037775],[-125.1021700445031,58.0204644415259],[-125.10195506019072,58.0206032053463],[-125.10171497411298,58.02072946165937],[-125.10145399200191,58.02084436028759],[-125.10118261483862,58.0209513367792],[-125.1009049946983,58.02105378403212],[-125.10062528360827,58.02115509497895],[-125.1003476335414,58.02125866258815],[-125.10008246470278,58.021371287112395],[-125.09977794505802,58.02144775240367],[-125.09947339724894,58.02152533849906],[-125.09915237526424,58.02158374436599],[-125.09882136327384,58.02161740525419],[-125.09848627970729,58.02164430780635],[-125.09815917573684,58.02169145352557],[-125.0978361148467,58.02174647747609],[-125.09749961460112,58.021744204472434],[-125.09716463692276,58.02176661774551],[-125.09682955083541,58.02179351614639],[-125.09649272608186,58.02180469850838],[-125.09615980957508,58.02182936656102],[-125.09582274100916,58.021850640660034],[-125.09550787035135,58.02191693120645],[-125.09521158601501,58.02200241538742],[-125.09491527326873,58.02208902041091],[-125.09460039900651,58.02215530883563],[-125.09428552363148,58.02222159652296],[-125.09396456887681,58.02227662549186],[-125.09363137553798,58.02231250217488],[-125.09330227879387,58.0223540142169],[-125.09297521635648,58.02239890429544],[-125.09264807175336,58.022447158050866],[-125.09232505054722,58.02249992573534],[-125.09200403624146,58.02255719299423],[-125.09168505588634,58.022617838351174],[-125.09137017147765,58.02268411920041],[-125.09105941007054,58.022754914080124],[-125.09075070953322,58.02282796563145],[-125.09044404262809,58.02290439536104],[-125.09013737447336,58.02298082439286],[-125.08983282149374,58.023057267146996],[-125.08952615084395,58.023133694788534],[-125.08921738974216,58.02320898581093],[-125.08891074383817,58.02328429056036],[-125.08860822058932,58.02336410945868],[-125.08830566879482,58.023445049171045],[-125.08800108104633,58.023522609280135],[-125.0876902517815,58.02359563937171],[-125.08737537939308,58.02366078938307],[-125.08705030574716,58.02371016544761],[-125.08671340625979,58.0237235661603],[-125.08637499102515,58.02371227872383],[-125.08603646668924,58.02370547639812],[-125.08570341709589,58.02373460441148],[-125.08540500694178,58.02381893103376],[-125.08513977514704,58.023931526208386],[-125.08489752205803,58.02405661676348],[-125.08466362382762,58.02418625087241],[-125.08442972398059,58.024315884590074],[-125.0841790821858,58.024437551395316],[-125.08390554065382,58.024543357202035],[-125.08361333256035,58.02463333090073],[-125.08331078716014,58.02471313792016],[-125.08300200058346,58.024788414706805],[-125.08269532929138,58.024863705318865],[-125.08239066355168,58.02494349574183],[-125.08209223633344,58.02502781507528],[-125.08179586940305,58.02511439128267],[-125.08150159018417,58.02520210288554],[-125.08120728211726,58.02529093534141],[-125.08091294517577,58.02538088865048],[-125.08062075086939,58.02546973439271],[-125.08032641111832,58.02555968642719],[-125.0800321249699,58.02564739483573],[-125.07973572087333,58.025735088024724],[-125.07943725386423,58.0258205229936],[-125.07913884056369,58.02590371431722],[-125.07883624785423,58.0259846328074],[-125.07852950331618,58.02606215694168],[-125.07822284019512,58.02613631589832],[-125.07790993635146,58.026205944357685],[-125.07759296362629,58.026268813901886],[-125.07726988833703,58.02632154540182],[-125.07694271692598,58.02636863940884],[-125.07661353852406,58.02641123201447],[-125.07628232562307,58.02645044469669],[-125.07595325627238,58.02648854970596],[-125.07562206963809,58.02652663926136],[-125.07529291599955,58.026568107127346],[-125.074963678655,58.02661293866389],[-125.07464065204387,58.02666342083916],[-125.07431949207943,58.02672401034088],[-125.07400866502915,58.026794765866825],[-125.07370404821995,58.02687117216768],[-125.0734014359821,58.02695207843383],[-125.0730988501543,58.027031862528375],[-125.07279208519485,58.02710937357835],[-125.07247919088753,58.02717786789895],[-125.07215810625823,58.027235087758626],[-125.07182899808085,58.027274304135936],[-125.07149000002153,58.02728540881864],[-125.07115843490631,58.02725281855165],[-125.07084466485962,58.02718557894322],[-125.07054612934112,58.027101619287436],[-125.07025199524399,58.02701095947599],[-125.06995783475936,58.026921420518505],[-125.06965278652744,58.026844143641426],[-125.06933245009519,58.026785828231596],[-125.06900537506041,58.02674316869842],[-125.06867392828768,58.02670608631666],[-125.06834022626255,58.026674595813596],[-125.06800646906282,58.026645347461724],[-125.06767059576664,58.02661608350627],[-125.06733901199966,58.02658460527643],[-125.0670075403783,58.026548640258845],[-125.06667835344581,58.02650596025859],[-125.06635145137112,58.026456565293465],[-125.06602886714572,58.02640383465187],[-125.06570633969935,58.0263488602524],[-125.06538598568733,58.02629165690299],[-125.06506563265246,58.02623445278907],[-125.06474319196836,58.026176111602645],[-125.06442281292638,58.02612002744517],[-125.06410023430661,58.026067292166246],[-125.06377336744383,58.02601676942666],[-125.06344638944836,58.025970731850364],[-125.06311712760066,58.0259314075727],[-125.0627834091105,58.0259010247073],[-125.06244503751773,58.02588743364796],[-125.06210635769385,58.02588617811811],[-125.06176959809237,58.02589278702138],[-125.06143066567115,58.02590162318509],[-125.06109181731122,58.02590709402069],[-125.06075310927142,58.025906956549875],[-125.06041426076453,58.0259124256671],[-125.06007724769336,58.02592912370903],[-125.05974020620805,58.02594694239043],[-125.05940333314764,58.025958031286784],[-125.05906479346002,58.02595116060072],[-125.05874228011412,58.02589616941718],[-125.05853834658853,58.02575564322958],[-125.05846230886578,58.0255801241866],[-125.05844988081172,58.02540056670488],[-125.05846920089535,58.02522123301083],[-125.05850754136438,58.0250431550828],[-125.05855434752752,58.02486513683981],[-125.05860115324637,58.02468711861474],[-125.05864160903755,58.02450905566632],[-125.05867783147576,58.02433096291339],[-125.05872251946765,58.02415292983596],[-125.05877778935735,58.02397497133728],[-125.0588372634919,58.02379816415835],[-125.0588988253728,58.02362249338305],[-125.05896464768188,58.02344573094444],[-125.05902623652129,58.023268938691935],[-125.05908359195077,58.02309211663126],[-125.0591367421599,58.02291414328251],[-125.05917930989136,58.02273609542058],[-125.05922399360338,58.02255806248434],[-125.05927079326591,58.0223800444715],[-125.05931335975507,58.02220199667021],[-125.05935169313109,58.02202391908468],[-125.05937735619797,58.021844630625694],[-125.05938820467915,58.021665237883326],[-125.05938000613875,58.02148571105666],[-125.05934215115751,58.0213070971127],[-125.0592724676033,58.02113162408804],[-125.05917518849402,58.02095932174217],[-125.05905451862424,58.02079134131045],[-125.05891680709325,58.020627727455945],[-125.05876631474818,58.02046738846484],[-125.05860733051621,58.02030811115699],[-125.0584397981947,58.020152138465214],[-125.05826586223961,58.019998363793874],[-125.05808129023669,58.01984675727145],[-125.05789025839886,58.01969959166688],[-125.05769070686073,58.019554609059334],[-125.0574804913031,58.01941291595823],[-125.05726381600553,58.0192756636635],[-125.05703430419885,58.01914392880456],[-125.05677906143131,58.01902547201458],[-125.05650011923694,58.01892367252878],[-125.05620819937697,58.018832997556245],[-125.05590979130784,58.0187478844819],[-125.05561138459272,58.01866277074875],[-125.05531077835009,58.01858100582818],[-125.05500365545514,58.01850592419934],[-125.05468784311348,58.01843975379706],[-125.0543631998002,58.01838810195226],[-125.05402721312109,58.018366654314285],[-125.05369037814869,58.018378850193336],[-125.05335737906242,58.01840677592003],[-125.0530203170374,58.01842794193975],[-125.05268184646867,58.01842105513636],[-125.0523458037968,58.018401846225544],[-125.05200978980854,58.01838151499135],[-125.0516739462817,58.0183544540426],[-125.0513448486987,58.01831173664444],[-125.0510333050901,58.01824446619663],[-125.05075870168861,58.01813932044321],[-125.05052710355139,58.01800755952837],[-125.0503275610788,58.01786368766596],[-125.0501494367691,58.01770987271858],[-125.049990472406,58.01755170711051],[-125.04984429113104,58.017390267230056],[-125.04970666065744,58.01722552300989],[-125.04957540801584,58.017059702373736],[-125.04944627259567,58.016893896697795],[-125.04931502226508,58.0167280758653],[-125.04920078670028,58.01655901101487],[-125.04911417428785,58.01638565604066],[-125.04904454770978,58.01621017862026],[-125.04897492178299,58.01603470119705],[-125.04889468806353,58.015860269905005],[-125.04879109386798,58.01568903725497],[-125.04867686382755,58.01551997214708],[-125.0485583744285,58.015351998299366],[-125.04843565416161,58.0151839942264],[-125.04830653023383,58.0150181877859],[-125.048171031159,58.01485345748499],[-125.04802489668086,58.014690894612755],[-125.0478723303067,58.01453165077478],[-125.04770701278746,58.01437455921398],[-125.04753100322402,58.01422187791631],[-125.04734009835806,58.014072455179864],[-125.04713847314014,58.01392856407494],[-125.04692401171926,58.0137901894509],[-125.04669459826522,58.01365731614067],[-125.04644800295739,58.01353441484308],[-125.04618634163202,58.013421500569926],[-125.04591178711026,58.01331634540268],[-125.04562645518263,58.013218964379135],[-125.04533457745022,58.01312938767676],[-125.04502977770608,58.01304869133293],[-125.0447205191708,58.01297693579413],[-125.04440688733679,58.01291075661709],[-125.0440889392315,58.012847910829684],[-125.04376873345609,58.01279065648939],[-125.04344635565127,58.012735629170095],[-125.04312174856757,58.01268507179452],[-125.04279499792968,58.01263561993754],[-125.04247033534827,58.01258730392292],[-125.04214132745744,58.01254344264835],[-125.0418121771365,58.01250518791059],[-125.04148088302865,58.012468038646674],[-125.04114967555559,58.01242752415603],[-125.04082287242096,58.0123803104255],[-125.04050044510423,58.01232751895727],[-125.0401780760718,58.01227248377676],[-125.03985790987278,58.01221409862792],[-125.03954209107992,58.0121512572753],[-125.03922856143157,58.012081701593445],[-125.03892369715295,58.01200435581033],[-125.03863401811573,58.01191253687386],[-125.03836166905587,58.011805138654324],[-125.03810439065089,58.01168775336072],[-125.0378492008543,58.011571504296555],[-125.03758117431298,58.01146077061043],[-125.037298022635,58.01136226577147],[-125.03700403470664,58.01127377725945],[-125.03670573032215,58.011188621985525],[-125.0364052539614,58.01110569371966],[-125.03610475011945,58.01102388625127],[-125.03580207423114,58.0109443057702],[-125.03549728391106,58.01086470932968],[-125.03519463943132,58.01078400602007],[-125.03489411195962,58.010703317321635],[-125.03459367234282,58.01061926355825],[-125.03429752319092,58.01053299679531],[-125.03400140427237,58.01044560791895],[-125.03370308440508,58.01036156747951],[-125.03340262130288,58.01027863253253],[-125.03310218842724,58.01019457545263],[-125.03280821954195,58.01010607781655],[-125.03252288820313,58.0100109120677],[-125.03225054151248,58.00990462307179],[-125.03199761335536,58.00978389252844],[-125.03177465312625,58.009649918714125],[-125.03157099572334,58.00950598946215],[-125.0313822940328,58.00935656002637],[-125.03120640338453,58.009202736587426],[-125.03104541033498,58.00904565601154],[-125.03089296793266,58.00888527229451],[-125.03075119170099,58.00872160082294],[-125.03061790801158,58.00855686919872],[-125.03049314573887,58.00838995598619],[-125.03037264468355,58.0082219519488],[-125.03025852035387,58.0080528724621],[-125.03014865712812,58.00788270217803],[-125.0300387659107,58.00771365329547],[-125.02993104919172,58.00754237680099],[-125.0298275354945,58.007372252451866],[-125.02972405173288,58.00720100659375],[-125.02962479990963,58.00702979143389],[-125.0295255779947,58.0068574547722],[-125.02942847246858,58.006685133445544],[-125.02933348330194,58.00651282745827],[-125.02924061046552,58.0063405368148],[-125.02914988294349,58.00616714006112],[-125.02906127169818,58.00599375866052],[-125.02897477670018,58.005820392617174],[-125.02889042694079,58.00564592047728],[-125.02880604894254,58.005472569774696],[-125.02872593154733,58.00529812836886],[-125.02864581489688,58.00512368694785],[-125.02856784340035,58.004948139444615],[-125.02849195897053,58.004773728777224],[-125.02841821963958,58.004598212035376],[-125.02834659634783,58.0044227106797],[-125.02827920440511,58.00424724010794],[-125.02822667847904,58.004069634392394],[-125.02818687400772,58.00389099961136],[-125.02815764646226,58.003712441835994],[-125.0281326788353,58.00353279342714],[-125.0281161726039,58.00335320663725],[-125.02809963748798,58.00317474133514],[-125.02808101630322,58.00299513921297],[-125.02806028003783,58.002815521725054],[-125.02803528442962,58.0026369949261],[-125.0280018571494,58.00245728510739],[-125.02793444130073,58.00228293618761],[-125.02778418393025,58.00212144404038],[-125.02767220502068,58.00195237886004],[-125.0276069649226,58.001775802368044],[-125.02754595581843,58.00159925669017],[-125.02755057598644,58.00142094571754],[-125.02748748161358,58.001243263222094],[-125.02742009939593,58.001067792818915],[-125.02732513366522,58.000895486448044],[-125.02717271119293,58.00073622134805],[-125.02692200536166,58.00061437634859],[-125.02662806791226,58.00052810892776],[-125.02629924243553,58.00048196629855],[-125.02596801160301,58.000447021940765],[-125.02563452069494,58.00041766858098],[-125.02530108855636,58.0003860714874],[-125.02498947823167,58.000328834664586],[-125.02466526560158,58.00026814005642],[-125.02434041266514,58.000232116573656],[-125.02385339693282,58.0001679868182],[-125.02323158617453,57.999999676122115],[-125.02295287638539,57.99989780869126],[-125.02266929548986,57.99982058161295],[-125.02233188648638,57.99986073441293],[-125.02200490611115,57.99990657107941],[-125.02138052508614,57.99999958052285],[-125.02115868313629,58.000069740713066],[-125.02085003327976,58.000142628916414],[-125.0205413529585,58.000216637861534],[-125.02023270069525,58.000289524649276],[-125.01996741049717,58.000403108973316],[-125.01974389398879,58.00053718948119],[-125.01953709188453,58.00067924404862],[-125.0193302882149,58.000821298317526],[-125.01911719614596,58.0009610627687],[-125.01889367327772,58.00109514193389],[-125.0186701194898,58.00123034219468],[-125.01845702264028,58.0013701056539],[-125.01825858379584,58.001515584920995],[-125.01808108992488,58.00166906963406],[-125.01787847633993,58.00181227436903],[-125.01763611260678,58.00193836135941],[-125.01739586245729,58.00206446349403],[-125.01717018228086,58.00219964581776],[-125.01697384929038,58.0023451388762],[-125.01682366804135,58.002505553219024],[-125.01669237580514,58.002671714883384],[-125.01654427791382,58.00283326599841],[-125.01638348716303,58.002994723479944],[-125.01618929163428,58.00313910964037],[-125.01593862897711,58.00325840267186],[-125.01566293427298,58.00336405068941],[-125.015378923969,58.003464028492616],[-125.01508865455966,58.00356059453476],[-125.01477799611264,58.00362784610957],[-125.01443537658342,58.00362307419554],[-125.01411490591629,58.003661088399845],[-125.01382457279168,58.003759894619456],[-125.01356761148845,58.00387689350388],[-125.01333359276592,58.00400639983345],[-125.01309328543049,58.00413361596031],[-125.01285089063092,58.00425969458046],[-125.01259600870402,58.004377828750094],[-125.01232658337685,58.00448575984163],[-125.01204464152552,58.004586867774165],[-125.01174621827894,58.0046710280761],[-125.01143342929085,58.00473825629366],[-125.01110827206456,58.004793053801016],[-125.010781264574,58.00483774177105],[-125.0104087532438,58.004842833187595],[-125.01011141880338,58.00488549609791],[-125.01002266232784,58.00504187219359],[-125.00999630162131,58.005239091116806],[-125.00986708499171,58.00540526224386],[-125.00967279273003,58.00555188220952],[-125.00942203403982,58.00567340622554],[-125.00914627364013,58.00578016251707],[-125.00882351567375,58.00582375568187],[-125.00848633419707,58.00585265921374],[-125.00814924112323,58.00587819753394],[-125.007805534458,58.00591378093013],[-125.00753463180419,58.00583661551981],[-125.00725788835975,58.00574033767701],[-125.00692112190964,58.00575353690719],[-125.00669949393058,58.00589321934999],[-125.00648841176726,58.006034101598914],[-125.00634657330924,58.00619681066123],[-125.00618581337507,58.006354892085845],[-125.00597466727426,58.00649801650111],[-125.00574227577141,58.006644347452],[-125.00546402040538,58.006684898952265],[-125.0051384122738,58.00659610440829],[-125.00486831313947,58.00648865428023],[-125.0046283672867,58.00636123822879],[-125.00441839627642,58.00622058514433],[-125.00418488924413,58.00608985129121],[-125.00394706368765,58.005962449846805],[-125.00371570509525,58.005830609537114],[-125.00346712703461,58.005709857069476],[-125.00318410831942,58.00561128052951],[-125.00290985066259,58.005501552065965],[-125.00267837933998,58.00537419583228],[-125.00256867882695,58.00520288191259],[-125.00251627323915,58.00502526591194],[-125.00248293622099,58.00484667070418],[-125.0024538600352,58.004666985679094],[-125.00240991710902,58.00448943295395],[-125.00233418498539,58.00431388606937],[-125.00222231418691,58.00414479915619],[-125.00209346224891,58.00397782860622],[-125.00194968503169,58.00381523308021],[-125.00179309797427,58.00365702834198],[-125.0016322816643,58.00349879181376],[-125.00147146671037,58.00334055511887],[-125.00130853784412,58.00318230243554],[-125.00115198597749,58.00302297560483],[-125.00101247684854,58.00285928943741],[-125.00086656350261,58.00269779856325],[-125.00069508946721,58.00254284626967],[-125.0004937647886,58.00239664368113],[-124.99999971165329,58.00220001677978],[-124.99968026185336,58.00212022846342],[-124.99937118012762,58.00204836878215],[-124.99904901956452,58.0019909920562],[-124.99872009552487,58.00194926722368],[-124.99838437769029,58.001924315679055],[-124.99804615589443,58.00191392622368],[-124.99770948043964,58.00192485927503],[-124.99737456047049,58.00194926471988],[-124.99703570936602,58.00196242308165],[-124.99669936295926,58.00196101767541],[-124.99635890614272,58.0019550938364],[-124.99602267982688,58.001949200940324],[-124.99568442845066,58.00193992694853],[-124.99534620726176,58.00192953065377],[-124.99500804632075,58.00191689061059],[-124.99467200080103,58.00190426563803],[-124.99433390041548,58.00188938099616],[-124.99401100841017,58.00193854540411],[-124.99369618544664,58.00200235159834],[-124.99338538126489,58.002074039069804],[-124.99307862578029,58.002152486402586],[-124.99279054475241,58.002244533999274],[-124.99251899268279,58.00235128746982],[-124.99224532384473,58.002458024434986],[-124.99195720830609,58.002551191710204],[-124.99165250090759,58.00263189466916],[-124.99138514313755,58.00273979927395],[-124.99113642913001,58.00286242600477],[-124.99086695298207,58.00297031361589],[-124.99059539019,58.00307706325793],[-124.99032585060337,58.00318719269509],[-124.99005425452363,58.00329506270804],[-124.98975585262879,58.003376930850365],[-124.9894313385092,58.003328486404236],[-124.98920409644876,58.00320338202763],[-124.9891136521148,58.00302659434988],[-124.98904221562327,58.00285107223691],[-124.98899199256681,58.002673467398964],[-124.98894811565894,58.00249591062901],[-124.9889021239518,58.002318337860586],[-124.98884978706677,58.0021407170529],[-124.98879533548278,58.00196308023861],[-124.98874722996707,58.001785491498815],[-124.9886991249066,58.001607902775525],[-124.9886552808495,58.00142922466964],[-124.98861140698904,58.001251668027486],[-124.98857179405381,58.00107302200863],[-124.98853218149564,58.000894376012496],[-124.9884989146863,58.00071577811326],[-124.98846776330741,58.00053719626526],[-124.98840687986753,58.00036287585186],[-124.98824465386224,58.000181057449325],[-124.98822202493416,58.000000296877396],[-124.98815485875222,57.99982368547884],[-124.98808977803073,57.999648211552945],[-124.98801623770308,57.99947267349948],[-124.98793209260506,57.99929817671195],[-124.98783731263528,57.99912584261096],[-124.98773618846299,57.99895346036439],[-124.98763291995688,57.99878218347537],[-124.98753176739812,57.998610922578195],[-124.98743699100166,57.99843858832052],[-124.98735070567312,57.99826519675934],[-124.9873089263999,57.99808877777722],[-124.98732017293909,57.997907152712514],[-124.98726781943195,57.99773065356853],[-124.98716041731971,57.997555980134536],[-124.98707199009836,57.997383693951015],[-124.98707033617549,57.99720982283041],[-124.98717234341238,57.9970356165814],[-124.98728486371968,57.99686373338305],[-124.98740363692694,57.99669526256165],[-124.98752660859354,57.99652794518304],[-124.98763695038704,57.9963582886169],[-124.9877367773264,57.9961863089328],[-124.98783657311132,57.99601545064306],[-124.98796600611263,57.99584369533927],[-124.98809936529216,57.99568318637223],[-124.98789314085558,57.99556496972355],[-124.98762114637121,57.995454105648605],[-124.98732582995676,57.99534530743218],[-124.98704752455879,57.995233272649],[-124.98678408501874,57.99511910679056],[-124.98652919712029,57.99500164034272],[-124.98629364681614,57.994873103605656],[-124.98608380876455,57.99473242343959],[-124.98588469765907,57.99458621612034],[-124.98568341272983,57.9944422353275],[-124.98548430472293,57.99429602745674],[-124.98530009247733,57.99414656753656],[-124.9851351266258,57.99398940204928],[-124.98499360617363,57.993825684664756],[-124.98487124078603,57.993657626164044],[-124.98477648910806,57.99348529093664],[-124.98470723608679,57.9933086629592],[-124.98466127569442,57.99313109048758],[-124.9846895723607,57.99294510956433],[-124.98443304939028,57.99304522951647],[-124.98410644633758,57.99307751583258],[-124.98376196413055,57.99306704201127],[-124.9834215292805,57.993063328106906],[-124.98308308767052,57.99306411517497],[-124.98274851075453,57.993078390806446],[-124.98241347759281,57.993109487086144],[-124.98208046734224,57.99314396294964],[-124.9817457068169,57.993164964663606],[-124.98140294357565,57.99316907950609],[-124.98107163648552,57.99314075264596],[-124.98076695459534,57.993066640017275],[-124.98046686876863,57.99297910182026],[-124.98014910523294,57.99291946949601],[-124.9798115486847,57.9928877267504],[-124.97947828303556,57.992853772624365],[-124.97917348463628,57.992784142107254],[-124.9789014445394,57.99267662489288],[-124.97864239908134,57.99255798991205],[-124.97839405060273,57.9924349496442],[-124.97819921092061,57.99228876359345],[-124.97801295342187,57.99213815632294],[-124.97783310237101,57.991985354537526],[-124.97766174179965,57.991831495890246],[-124.97751385715523,57.99166996522751],[-124.97737449328231,57.991506256373476],[-124.97722664170789,57.99134360401968],[-124.97707873030012,57.99118319438849],[-124.97692873614501,57.99102164698453],[-124.97677871271482,57.99086122086847],[-124.9766266065825,57.99069965697074],[-124.97646806639837,57.990541408566465],[-124.9763308258111,57.99037771503647],[-124.97622551839913,57.99020641468925],[-124.97613507473532,57.99003298497941],[-124.97604040289315,57.98985952279679],[-124.97591177760815,57.98969028670864],[-124.9756477682544,57.98959964951759],[-124.97530270814049,57.98961158243974],[-124.9749616624593,57.98963139693407],[-124.9746268680144,57.98965462356987],[-124.97429005057715,57.98967446883759],[-124.97395335538131,57.98968982755011],[-124.97361684386654,57.989698456855606],[-124.97327849372567,57.98969697621078],[-124.97294020497075,57.98969325185591],[-124.9726017628343,57.989695133774205],[-124.97226699706106,57.989717233066514],[-124.97193014710514,57.98973819380684],[-124.97159366541189,57.989745696586134],[-124.97125874494492,57.989773400480814],[-124.97091414294307,57.98976850067196],[-124.97056328978566,57.98976018677059],[-124.97022555442449,57.9897362698731],[-124.96992039848944,57.989681196994276],[-124.96967819487148,57.98956716125158],[-124.96947513078935,57.989414169077286],[-124.96925695917705,57.98927227656296],[-124.96898500372379,57.98916361812208],[-124.96871513349785,57.98905609690219],[-124.96842365808527,57.98896523308934],[-124.96812136526017,57.98888325830549],[-124.96781465987563,57.9888079786836],[-124.96749698258353,57.98874719508661],[-124.96717495404197,57.988690863707504],[-124.9668529264667,57.988634531554986],[-124.9665374283695,57.98857151920604],[-124.96623511195384,57.98849066160821],[-124.96593932542912,57.988403123940465],[-124.96564354028368,57.98831558562548],[-124.96534558029653,57.98823027311721],[-124.96503667866229,57.98815833504132],[-124.96471705158123,57.98809192136213],[-124.9643904637626,57.98804788614758],[-124.964056605211,57.988037443564615],[-124.96371363922087,57.988050484341656],[-124.96337076588482,57.98806015997167],[-124.9630412911762,57.98804414058402],[-124.96271703702023,57.98799226775195],[-124.96240406856126,57.98791468362757],[-124.96211700106313,57.98781823192289],[-124.96187075944886,57.98769854225081],[-124.96165896965752,57.9875566869185],[-124.96144721248753,57.98741370985092],[-124.96120324515842,57.987288428349196],[-124.96094025032053,57.98716299827045],[-124.96066637509266,57.98704869956539],[-124.96038755865898,57.98696016003231],[-124.96008897126084,57.986974658758854],[-124.95976936605766,57.98706077937785],[-124.9594381611349,57.987107550632196],[-124.95913170575459,57.98717694734446],[-124.95885811483373,57.987281371286294],[-124.95858856447283,57.98739255619623],[-124.95829625232678,57.98748561632258],[-124.95798528289068,57.987565070206706],[-124.95767639537885,57.987645661306104],[-124.9573945886138,57.98774104488696],[-124.95716069483088,57.9878626005392],[-124.95697266192221,57.98800806916034],[-124.95681170970782,57.988168330853526],[-124.9566611723572,57.988334282128655],[-124.9565044150884,57.98849569798607],[-124.95633929227299,57.9886536832885],[-124.95617416806796,57.98881166841351],[-124.9560153234485,57.988971945821234],[-124.95586916421605,57.98913232231644],[-124.95586022571395,57.989301623902215],[-124.95592296101128,57.98947933787014],[-124.95599409247826,57.98965936084467],[-124.95607153693511,57.989840554853394],[-124.95615106546555,57.990022886812135],[-124.95623059476843,57.99020521875912],[-124.95631223937187,57.990387567228844],[-124.95638968686632,57.99056876119481],[-124.95646290601117,57.99074992208698],[-124.95652984452785,57.990928790533786],[-124.9565883877457,57.991105350013264],[-124.956636420957,57.99127958400602],[-124.95667182941828,57.99145147599332],[-124.95669256068489,57.99161876660601],[-124.95669858338643,57.99178257727336],[-124.95661010297385,57.991922094238944],[-124.95630316656674,57.9920071847678],[-124.95592265358923,57.99207599574631],[-124.95561754820163,57.99217119408043],[-124.95538756947968,57.992302873122384],[-124.95512425428336,57.99241634413339],[-124.95484849938553,57.99252074389048],[-124.95457069076214,57.99262288367681],[-124.95429493280783,57.9927272823136],[-124.9540274757431,57.99283735380308],[-124.95376825700978,57.992955341048635],[-124.95352567271122,57.99308355326738],[-124.95335240237486,57.993229133653344],[-124.95327770834038,57.993404650330135],[-124.95303306731415,57.993530602280515],[-124.95275114200348,57.99362821951293],[-124.9524587981282,57.993720146051665],[-124.95216234859758,57.99380755305362],[-124.95185974139217,57.99388818103273],[-124.95155514344691,57.99396430601748],[-124.95123816919144,57.994029116361276],[-124.9509151630497,57.99408266183361],[-124.95058419865713,57.99411819720568],[-124.95026734686837,57.994178519549486],[-124.94996883661113,57.99426366224041],[-124.9496662523967,57.994343163860194],[-124.94936565610205,57.994427167151194],[-124.94906303789547,57.99450778884423],[-124.94875839784572,57.9945850289249],[-124.94844756932291,57.99465661120725],[-124.94812657429486,57.99471353090716],[-124.94779954832777,57.994759185566394],[-124.94747258445447,57.99480259657389],[-124.94714120154741,57.99485270198159],[-124.94680962896882,57.99490953512756],[-124.94659059844497,57.99480012609489],[-124.94640274974638,57.994634879100374],[-124.94616307817982,57.99450735966952],[-124.9459019143551,57.99439200851461],[-124.94564501311899,57.99427556884476],[-124.9453945837082,57.994154693116975],[-124.94332369423165,57.99325668027769],[-124.94335891833782,57.993132453368524],[-124.94336617825087,57.99294967810761],[-124.94325249228638,57.992780527179974],[-124.94310910756202,57.99261450604756],[-124.94294855437772,57.99245732220281],[-124.94276881295443,57.992305594563526],[-124.94258698995084,57.992152728533064],[-124.94241151226618,57.991999912544074],[-124.94223606760859,57.991845974927955],[-124.9420606243898,57.991692037106695],[-124.94188515100099,57.99153922050148],[-124.94170971065456,57.991385282269796],[-124.94153641793487,57.99123023918075],[-124.94136524120664,57.99107521266383],[-124.94119829499489,57.99092021950084],[-124.94106341625982,57.990753142178114],[-124.94093276779013,57.99058609830512],[-124.94072728947705,57.99044762391858],[-124.94048974678634,57.99032123307731],[-124.94024147486081,57.990200364981746],[-124.93998468319121,57.990081672106136],[-124.93972574697655,57.98996408337318],[-124.93946895855348,57.98984538953559],[-124.93921857857768,57.98972450279807],[-124.93897678489526,57.98959919717034],[-124.9387844815007,57.98944399952396],[-124.93861995299417,57.98927892746077],[-124.93836029721301,57.98918712878366],[-124.93805096361531,57.98913194944746],[-124.93772222014033,57.989090074945786],[-124.93738265124821,57.98905708680224],[-124.9370386953103,57.98902967120167],[-124.9366967907929,57.98900451439444],[-124.9363612935966,57.988977164430004],[-124.93602563798112,57.988955420706304],[-124.93568774115067,57.98893814494421],[-124.9353498128294,57.98892198974348],[-124.93501188479897,57.98890583368753],[-124.93467619878088,57.98888520798843],[-124.9343449329871,57.98885788671351],[-124.9340382955677,57.98878252949098],[-124.93374043556935,57.988696024980065],[-124.93344257694352,57.98860951981252],[-124.93314680223577,57.98852415230513],[-124.93284459002082,57.988442097677684],[-124.93253795900858,57.988366737042156],[-124.93222915103904,57.988293601622246],[-124.93192034427257,57.98822046549363],[-124.93161371692548,57.98814510275269],[-124.93131580372722,57.98806083571942],[-124.93101805151788,57.987970960957455],[-124.93071572065081,57.987893387215415],[-124.93038693803898,57.98792776780248],[-124.93004992102055,57.9879542298815],[-124.92971517775406,57.98797510099611],[-124.92938421517005,57.98801170498859],[-124.92905113755653,57.988048291195554],[-124.92871620090123,57.98807588829053],[-124.92838494658616,57.988048552248],[-124.92805631943703,57.98800328974839],[-124.92772304794968,57.987972570842494],[-124.92739201953952,57.987937382444734],[-124.92707230073215,57.9878764857112],[-124.92674124172106,57.987842417116134],[-124.92640563389226,57.987819527814956],[-124.92606989816075,57.98780112332177],[-124.92573204839064,57.98778270096588],[-124.92539628122057,57.98776541619191],[-124.92505833577786,57.987750356369425],[-124.92472039060627,57.98773529569133],[-124.9243845600694,57.98772025119812],[-124.92404879407819,57.9877029630356],[-124.92372225739359,57.98765882833963],[-124.92347197485917,57.98753679093994],[-124.92323454083868,57.98740924837875],[-124.92301213398129,57.987273974965895],[-124.92281756893837,57.987126587524926],[-124.92261019077412,57.98698358305923],[-124.92248806258468,57.98681771149848],[-124.92237448924645,57.98664854391173],[-124.92223115587561,57.98648474427527],[-124.92209842736952,57.98631990848548],[-124.92196358575443,57.9861550555144],[-124.9217903665108,57.98600110907724],[-124.92160222005056,57.9858515284902],[-124.92141833580166,57.985700860426924],[-124.92127497800026,57.985538181339194],[-124.92117627804986,57.98536688977195],[-124.92111794252102,57.9851891944626],[-124.92109346712182,57.98501065123279],[-124.92109019839847,57.98483003614079],[-124.921074212347,57.98465043993712],[-124.92105608004445,57.984471948081],[-124.92105069737882,57.98429131599952],[-124.9210347117456,57.98411171989476],[-124.92094873376355,57.983939409572145],[-124.92083306192622,57.98377022410136],[-124.92073228674259,57.98359779402739],[-124.9206569786331,57.98342220488192],[-124.920607072785,57.98324569952176],[-124.9205826333194,57.98306603516434],[-124.92057087862582,57.98288647344021],[-124.92055912404462,57.982706911749666],[-124.92054948364535,57.982527367193384],[-124.92053984333823,57.98234782267091],[-124.92053020312332,57.98216827818229],[-124.92052267703973,57.98198875082866],[-124.92051303699904,57.98180920640787],[-124.92050339705057,57.9816296620208],[-124.92048952917668,57.981450083464274],[-124.92046089568458,57.98126926382279],[-124.92042592050299,57.98108839290221],[-124.92040993922119,57.98090879733872],[-124.92042771710238,57.980731718260856],[-124.92051294805837,57.98056191489067],[-124.92065301199214,57.980397041695355],[-124.92079944874608,57.980231098270146],[-124.92091635362198,57.980062672583344],[-124.92102281672972,57.97988967575004],[-124.92111659538755,57.97971657631408],[-124.92117450128481,57.979540943501526],[-124.92118602988818,57.97936044910457],[-124.92113625582293,57.979179459104294],[-124.92102046891681,57.97901476026249],[-124.92083662047733,57.97886409250078],[-124.92063150603444,57.97871773912035],[-124.92045409886231,57.97856375797611],[-124.92028953738313,57.97840427224989],[-124.92013983859289,57.978242663299135],[-124.92002835108242,57.97807575517628],[-124.92002716964356,57.9778962799075],[-124.92004507690056,57.97771471585402],[-124.92006513002107,57.97753204754261],[-124.92001728406,57.97735780298047],[-124.91986550909756,57.97719505539495],[-124.91965393723089,57.977053135032214],[-124.9193571069308,57.97693520036069],[-124.91909537223013,57.97699364990298],[-124.91885472503651,57.97712742102479],[-124.91860965483386,57.97726788585946],[-124.9183380403531,57.97737560694652],[-124.91804368962701,57.9774651965742],[-124.9177348964778,57.97754233016087],[-124.91740765983702,57.97759912351261],[-124.91708245947993,57.97758526796066],[-124.91676102285871,57.9775142374631],[-124.91646329203263,57.97742769544451],[-124.91618725052443,57.97732226070483],[-124.91596057176864,57.97719142825517],[-124.91577463879575,57.977040736640106],[-124.91559088582792,57.976887819175055],[-124.91538355932872,57.97674592644657],[-124.91516550375809,57.976609554472354],[-124.91494318991822,57.976474269179306],[-124.91472087767994,57.97633898353537],[-124.9144964533325,57.97620368034401],[-124.9142655598113,57.97607281077819],[-124.91402393728254,57.97594746179018],[-124.91376514737392,57.9758309458816],[-124.91351276500446,57.97571223833157],[-124.91329690080079,57.9755736378761],[-124.91302728772821,57.97546600566473],[-124.91277916993089,57.97534620981818],[-124.91257615481159,57.975202104619925],[-124.91238598550032,57.97505249554391],[-124.91221285671888,57.97489853850727],[-124.91206532028184,57.974736938337365],[-124.91195394403657,57.97456778130762],[-124.9119062369494,57.97439017020995],[-124.91196635627558,57.97421231684544],[-124.9117225423146,57.97409031088152],[-124.91153869027877,57.97394187388953],[-124.91135061254879,57.973793402175126],[-124.91116468238187,57.97364382607609],[-124.91099163013146,57.97348762490222],[-124.9108674835874,57.97332172785398],[-124.91079224219779,57.973146135072994],[-124.9106957361437,57.972974855282715],[-124.91056099248355,57.97280999314729],[-124.91040927687207,57.972647235598025],[-124.91021308147104,57.97248747953287],[-124.91011635196287,57.972324049177175],[-124.91016564873952,57.97215508180844],[-124.91025945811964,57.971981991434376],[-124.91038285509707,57.97180914269229],[-124.91052306096917,57.971639796113536],[-124.91067152420518,57.97147724678383],[-124.91083042325063,57.97131926914784],[-124.9110060983088,57.971165914921386],[-124.91119016058535,57.9710148722626],[-124.91137633479049,57.97086384661999],[-124.91156247500203,57.97071394213073],[-124.91174653282664,57.97056289877716],[-124.91193686435193,57.97041414968229],[-124.91212511347359,57.970264261717],[-124.9122986649452,57.97011088872706],[-124.91244916287397,57.96995059769174],[-124.91258080170378,57.96978454453448],[-124.91269774337903,57.96961500653945],[-124.91279992314924,57.969444226522654],[-124.9128957944856,57.969272273405956],[-124.91298327660816,57.9690980085961],[-124.91306653131812,57.96892370932313],[-124.91314555867406,57.96874937559497],[-124.91322247201558,57.96857502463588],[-124.9132973038147,57.968399535062936],[-124.91337002165338,57.96822402826649],[-124.9134406255612,57.9680485042502],[-124.91351126124506,57.96787185884339],[-124.91358186383104,57.967696334818065],[-124.91365457897908,57.96752082799807],[-124.91372729344764,57.967345321171145],[-124.91380420121456,57.96717097013733],[-124.91388533465248,57.96699665350385],[-124.91398119477428,57.96682470005541],[-124.91409600774251,57.96665514416481],[-124.91421501358836,57.966486743992164],[-124.91431929110675,57.966315980581385],[-124.9143878386652,57.966138196452945],[-124.9143485509042,57.96596177800052],[-124.91422873789438,57.96579255565669],[-124.91410047350278,57.96562326442558],[-124.91403362000601,57.96544998648968],[-124.91403662895766,57.965272790758476],[-124.91408199684207,57.96509257497713],[-124.91414423647929,57.96491361821393],[-124.91422955718397,57.964740457575815],[-124.91434228201366,57.96456976326648],[-124.91441706819829,57.96439539519555],[-124.91443493132202,57.96421607727273],[-124.91445702032767,57.964036793775676],[-124.91451707860854,57.963860062605306],[-124.9145940079756,57.963684590381504],[-124.91466882362741,57.96350910095258],[-124.91479310450863,57.96323082270625],[-124.91481983082247,57.96296408885237],[-124.91485888568565,57.962782700295435],[-124.91507348453482,57.962670038404035],[-124.91541292483339,57.9626985968481],[-124.915746091518,57.96272486013913],[-124.91607677992165,57.96269053371294],[-124.9163915021416,57.962623549106915],[-124.9167081421682,57.96256330920664],[-124.9170349579725,57.96251661090441],[-124.91736378895513,57.96247329309604],[-124.91769057085503,57.96242771457231],[-124.91801533591735,57.962378753968295],[-124.91834208391761,57.9623342952335],[-124.9186728633425,57.962296598244095],[-124.9190075130236,57.9622712698722],[-124.9193432107024,57.962282963343384],[-124.91967605397764,57.96232043061429],[-124.920009413711,57.962339954961095],[-124.92034972490737,57.9623382235466],[-124.92068526251725,57.96235552054627],[-124.92100052792011,57.9624163967325],[-124.92129815023966,57.962502927242845],[-124.9215782265353,57.96261174805779],[-124.92182741470002,57.96269227755308],[-124.9218517735711,57.96250628191365],[-124.92179558327582,57.96232860831615],[-124.92174150643548,57.96215095180997],[-124.9217001075873,57.961973397809096],[-124.92165662841445,57.961794705365456],[-124.92162160122851,57.96161608127538],[-124.92163308999609,57.96143671166898],[-124.92173940047223,57.96126708183929],[-124.9219233711049,57.96111602596594],[-124.92211777585094,57.96096954076055],[-124.92231013056634,57.96082079546266],[-124.92243737165828,57.96065806418777],[-124.92245945254967,57.96047765866534],[-124.92245403441243,57.96029815264308],[-124.92244439070795,57.96011861251419],[-124.92244956885374,57.959938070532814],[-124.92253269503435,57.95976600980898],[-124.92275212226942,57.95963094249711],[-124.92302983771722,57.95952662977993],[-124.9233157456184,57.959431355748706],[-124.92359755504746,57.959331561497194],[-124.92386899189383,57.9592249531535],[-124.92413421738287,57.959113807626466],[-124.92440152194726,57.95900380000266],[-124.92466264719805,57.958888133860704],[-124.92484227269554,57.95874040440603],[-124.92489174213571,57.95856246302114],[-124.92490324644669,57.958381972337314],[-124.9249821646275,57.95820875493124],[-124.92517446179131,57.958061127315744],[-124.92540017556432,57.95792722834981],[-124.92557780915739,57.95777499552442],[-124.9257177338667,57.95761124239324],[-124.9258869781484,57.95745669838003],[-124.92607299405286,57.957306775786705],[-124.92626112111762,57.9571568699675],[-124.92644502140863,57.957006929893126],[-124.92662059786052,57.9568524360686],[-124.92678356121411,57.95669559727792],[-124.92694236203728,57.95653648156478],[-124.92709485573243,57.956376193324076],[-124.92724523553436,57.95621588794201],[-124.92739145290952,57.95605330568349],[-124.92753133129713,57.95589067232383],[-124.92766704734983,57.95572576212048],[-124.92780903588124,57.955563145513516],[-124.92795732882992,57.95540170110687],[-124.92811400667715,57.95524256723402],[-124.92827068319737,57.9550834332039],[-124.9284294709108,57.95492431599199],[-124.92858195172043,57.9547640263248],[-124.92886338977092,57.954601407534476],[-124.92898558933896,57.954465550118236],[-124.92915134802041,57.954284055580274],[-124.9293252035254,57.954114963823706],[-124.92942857932798,57.95397222517965],[-124.92959977664354,57.95382217950322],[-124.92975794656304,57.95368436700792],[-124.93007291507763,57.95353098809931],[-124.93043689359843,57.95351147544128],[-124.9303517724571,57.953310021104],[-124.93031463135176,57.95313026258825],[-124.93029861470231,57.95295067355616],[-124.9302847106059,57.9527711015023],[-124.9302686942525,57.95259151253482],[-124.93025267805217,57.9524119235997],[-124.93023666200493,57.95223233469672],[-124.93022061418714,57.9520538671971],[-124.9302024860962,57.95187426141111],[-124.93018647051794,57.95169467260429],[-124.93017045509275,57.95151508382972],[-124.93015655213983,57.951335512035406],[-124.93014264931979,57.951155940273736],[-124.9301308589316,57.9509763854932],[-124.93011692444153,57.95079793516679],[-124.9301030220097,57.95061836350308],[-124.93009545651708,57.950438842719215],[-124.93009637205733,57.950258268396155],[-124.93011415365166,57.9500789510669],[-124.93016144256838,57.94990211378067],[-124.93022985332753,57.94972544598085],[-124.93028981456813,57.94954871039563],[-124.93034135832676,57.94937078566853],[-124.93040551095943,57.949195205355345],[-124.93048441640394,57.94902086501201],[-124.93056965765494,57.94884657547861],[-124.93065067377584,57.948672252042485],[-124.93072957698521,57.94849791165042],[-124.93081270376305,57.94832360511906],[-124.93089371762935,57.9481492816317],[-124.93096420198859,57.947973752085254],[-124.93101362827413,57.94779581045934],[-124.93103140432724,57.947616493474555],[-124.93101749870307,57.94743692251039],[-124.93100359321178,57.9472573515788],[-124.93101503281713,57.94707798389444],[-124.93106023354335,57.94690000855085],[-124.9311075459019,57.946722050158264],[-124.93112532099914,57.94654273336446],[-124.93110507920292,57.94636311181514],[-124.93107424555657,57.94618452699463],[-124.93103918816304,57.94600590833289],[-124.93099776317744,57.945828360255845],[-124.9309542584794,57.94564967390023],[-124.9309086103075,57.94547209199166],[-124.93086510644564,57.94529340567406],[-124.9308237149673,57.945114736313535],[-124.93078865976207,57.944936117787606],[-124.93077050048866,57.94475763479272],[-124.93076715686725,57.944578149035074],[-124.93074691784054,57.94439852780396],[-124.9306885687468,57.944221965784685],[-124.93061329301814,57.94404638961026],[-124.93052102707043,57.943874041974524],[-124.93038844458343,57.94370810054001],[-124.93023880863741,57.94354763023648],[-124.9300764069722,57.94339042218034],[-124.92989909591604,57.94323758073203],[-124.9296983323718,57.94309240209092],[-124.92947830824635,57.94295604142505],[-124.9292432792209,57.94282741119995],[-124.92900185239984,57.94270097239915],[-124.9287625390292,57.942574550148095],[-124.92853180240787,57.94244370994151],[-124.92832247325424,57.94230294689226],[-124.92813451951615,57.94215338246441],[-124.92794227971993,57.942006026546835],[-124.92772866766067,57.94186747138132],[-124.9274915396497,57.94173882122947],[-124.9272350552773,57.94162235266639],[-124.9269721411633,57.94150919670302],[-124.9267134841696,57.941394952881815],[-124.92646132413877,57.941275152804394],[-124.92620705396976,57.94115533525477],[-124.92595272133855,57.94103775994956],[-124.92570056612821,57.940917958478316],[-124.92546124315514,57.94079265189583],[-124.9252370244264,57.94065625051687],[-124.92507033655173,57.94050236685972],[-124.9250479511058,57.940324971219816],[-124.92509742740515,57.940145911868],[-124.9250983346363,57.93996646089754],[-124.92505486476345,57.939787773722486],[-124.9250050282613,57.93961015683389],[-124.92496325893897,57.93937203788522],[-124.92495398848503,57.93925307209509],[-124.92501395782504,57.93907634083617],[-124.92507181498308,57.93889959255486],[-124.9251317832053,57.93872286130869],[-124.92519175086373,57.93854613006845],[-124.92525382954678,57.938369415859675],[-124.92531379606766,57.93819268463037],[-124.92537587359338,57.93801597043046],[-124.92544425315782,57.93784042865521],[-124.92552107827974,57.937664954962315],[-124.92559998217465,57.93749061963038],[-124.92568099686724,57.93731630130254],[-124.92576201080854,57.937141982957336],[-124.9258409124886,57.93696764757883],[-124.92591562247546,57.93679215680368],[-124.92599033176484,57.93661666601917],[-124.92606923128365,57.936442330601864],[-124.92615235301243,57.93626802919231],[-124.92623125104828,57.936093693743],[-124.9262954322471,57.93591699651529],[-124.92633641901404,57.93573899084955],[-124.92634998881196,57.935559642752146],[-124.92633822142751,57.93538009059088],[-124.92631167427872,57.935200419402776],[-124.92627453835253,57.935021784547565],[-124.92623103657864,57.934844220035956],[-124.92618331245382,57.9346666215219],[-124.92613347740891,57.934489006012555],[-124.9260857541958,57.93431140752994],[-124.92604439751933,57.93413273875323],[-124.92600937525839,57.93395412103753],[-124.92598916468009,57.93377450109465],[-124.92600273542544,57.93359515340312],[-124.9260542455685,57.93341835467403],[-124.92610789855829,57.93324045162183],[-124.92614047016124,57.933061257121985],[-124.92616456430262,57.93288311595208],[-124.92617816591732,57.93270264706331],[-124.92617273402922,57.93252314645869],[-124.92615674594062,57.93234356083282],[-124.92612383605292,57.932164960494084],[-124.92605916193038,57.93198946903505],[-124.92594788138838,57.93181921000049],[-124.92581532955272,57.93165438747051],[-124.92570613026771,57.93148526665623],[-124.92562031529887,57.93131072627175],[-124.92553446908111,57.93113730720914],[-124.92542741578262,57.93096708193415],[-124.92528213814549,57.930804399575116],[-124.9251198122422,57.930647187590274],[-124.92496388525795,57.930487783834685],[-124.92481221393564,57.930327292643845],[-124.92467967233729,57.930162469242795],[-124.92456414913941,57.92999329665435],[-124.92445284919748,57.9298241580719],[-124.92433307378192,57.92965607261061],[-124.92422177587756,57.929486933895],[-124.92416984588341,57.92930930157632],[-124.92417286834888,57.92912986969937],[-124.92416533549024,57.92895035264388],[-124.92415780270355,57.92877083562177],[-124.92421564802956,57.9285940896266],[-124.92432399711555,57.92842335931819],[-124.92444913715119,57.92825612928219],[-124.92459103587622,57.9280935208113],[-124.92475180412794,57.92793555088282],[-124.92493348860047,57.92778447913891],[-124.92513608914176,57.92764030549064],[-124.92534492491886,57.92749954665077],[-124.92555587010288,57.927358804524964],[-124.9257772083454,57.92722375387493],[-124.92601312951842,57.92709555001374],[-124.92625739681603,57.92697077781165],[-124.92650370940855,57.926848264864525],[-124.92675209932595,57.926726889819946],[-124.92700048763993,57.92660551432773],[-124.92725514313582,57.926486432049344],[-124.92752009573806,57.92637640496762],[-124.92776016352109,57.92625047478631],[-124.92791879968055,57.9260924843572],[-124.92804602686482,57.925925268335796],[-124.92821722986154,57.92577074350953],[-124.9283988899538,57.92561966738434],[-124.92858684923351,57.92546976329214],[-124.92878523352655,57.925324429162224],[-124.92899612169687,57.92518480325112],[-124.92922786128007,57.92505431736312],[-124.92948457813236,57.924936369319276],[-124.92975987595598,57.92483315078694],[-124.93005986406175,57.92475256186564],[-124.93038834983831,57.92470921367639],[-124.93071680297204,57.92466698601835],[-124.93103716272664,57.92461235508995],[-124.9313576808823,57.924552116699765],[-124.93167404010057,57.92448960101761],[-124.93199439695348,57.92443496779817],[-124.93232284588855,57.92439273619369],[-124.93265513376518,57.92436399366599],[-124.93299148365449,57.92434089081139],[-124.93332578594237,57.924315527532755],[-124.9336619124041,57.92430027236104],[-124.93399960900959,57.924304095996206],[-124.93433890805046,57.924325877087114],[-124.93462445251714,57.924381996930954],[-124.93466391184182,57.9241815471981],[-124.93457750010786,57.92402719802298],[-124.93426550336618,57.92393609712288],[-124.93408599731158,57.92378885417946],[-124.93394288429164,57.92362395669463],[-124.93371013515782,57.923493111168206],[-124.93342136321756,57.92340219414429],[-124.93311749931925,57.92332237157889],[-124.93282661938075,57.9232314363817],[-124.93254223220829,57.92313494459977],[-124.93226436971601,57.92303177493883],[-124.93199725344657,57.92292196127875],[-124.93173442388019,57.92280993826702],[-124.93146951702964,57.922696776486454],[-124.93120451616544,57.92258697820254],[-124.9309244550596,57.92248715288538],[-124.93064225286105,57.9223884313864],[-124.93037732037203,57.92227638882057],[-124.93011670652722,57.92216101563002],[-124.92984957080398,57.922052319100644],[-124.92956088309475,57.921959151176914],[-124.92926132423142,57.92187711118193],[-124.9289531324223,57.921801730665486],[-124.92864056081251,57.92173192217417],[-124.92831692583069,57.92167996942936],[-124.92798206723901,57.92165147902137],[-124.9276404295607,57.92163863549571],[-124.92729882410062,57.92162466975979],[-124.92697455200474,57.92159514045044],[-124.92673729837507,57.92147546237037],[-124.92652818866341,57.921331335601835],[-124.926321159165,57.92118834686893],[-124.9261012754228,57.92105198376746],[-124.92585347494943,57.92093221912273],[-124.92558210703287,57.92082460147985],[-124.92529996337608,57.920724747505844],[-124.92501356798095,57.920625980219896],[-124.9247206179046,57.920535010556506],[-124.92441436435729,57.920466364677246],[-124.9240863003863,57.92042221697605],[-124.9237471066818,57.92039816720512],[-124.9234095745914,57.92038983227569],[-124.9230736073614,57.9204005761964],[-124.92273728662094,57.920423653922505],[-124.92240102972765,57.92044448813625],[-124.92206528670091,57.92044738019119],[-124.9217277223917,57.920440162332845],[-124.92139022253212,57.92043070095591],[-124.92105486559133,57.92042013448425],[-124.920717462621,57.92040730740864],[-124.92038005988083,57.920394479478816],[-124.92004480014717,57.92038054647107],[-124.91970746229683,57.920365474175824],[-124.91937009249665,57.92035152235791],[-124.91903275517704,57.92033644835496],[-124.91869749645983,57.92032251195805],[-124.91836012741973,57.920308557583624],[-124.91802272636967,57.92029572368591],[-124.91768740384916,57.920284027409615],[-124.91734993868796,57.92027343446986],[-124.91701215081265,57.92027405398024],[-124.91667403992105,57.92028588593832],[-124.9163378455232,57.92030446218714],[-124.91599931397747,57.92033086972838],[-124.91566561738443,57.92033600548978],[-124.91533711205687,57.92030753487609],[-124.91500906012887,57.920263364833524],[-124.91468334605477,57.920211361868986],[-124.91435763288139,57.92015935811107],[-124.91403182347126,57.92011071754847],[-124.91370809307051,57.92006321472903],[-124.91338231773167,57.92001345125384],[-124.91305862139649,57.91996482553218],[-124.91273275051608,57.919918424461144],[-124.91240489960536,57.919867520051284],[-124.91207717933078,57.919812129522334],[-124.91174712235538,57.91976457025179],[-124.91142268377455,57.91974173112533],[-124.9111024993594,57.91979070797719],[-124.91078559339837,57.919872237096676],[-124.91046469336598,57.91987297804162],[-124.91014096951714,57.91982546656739],[-124.90981770154917,57.919762255715185],[-124.90948998600216,57.91970685882897],[-124.90915964050613,57.919669385105685],[-124.90882491194044,57.91963748263277],[-124.90849232701385,57.919604475283144],[-124.90816633467543,57.91956254837187],[-124.90786028208123,57.91948825787907],[-124.90758053401721,57.919380534537595],[-124.90726509719542,57.91933869195622],[-124.90692510926948,57.91934263256527],[-124.90658469746566,57.91936114955608],[-124.90624639584034,57.91937968300371],[-124.90590783291576,57.919407186206776],[-124.90558968942548,57.91945840977913],[-124.90529589214286,57.91954348049437],[-124.90501631221308,57.919647734545656],[-124.90476422093425,57.91982287451611],[-124.9044980519697,57.91990144108509],[-124.90423109778364,57.920006918977606],[-124.90396417477959,57.920111275019835],[-124.90365098143118,57.920209641830006],[-124.90324922040108,57.92008744602927],[-124.90302856095767,57.92005310313041],[-124.90249873092404,57.920268572616344],[-124.90222858022388,57.92012166105517],[-124.90195521021118,57.91986817077908],[-124.90175662608793,57.919728577662106],[-124.90159246680238,57.91956683615458],[-124.9014218463721,57.91940952756704],[-124.9012384005446,57.91925772098173],[-124.90105917718975,57.919105948984665],[-124.90089700302873,57.918948709433955],[-124.90073908395422,57.918790383213974],[-124.9005535006529,57.91863967969498],[-124.90036148909986,57.918492287656136],[-124.90017162229535,57.918343791461695],[-124.89997964654566,57.91819527759427],[-124.89978978274792,57.9180467809017],[-124.89959777721427,57.917899387853716],[-124.89940577318539,57.91775199455165],[-124.89921591389083,57.91760349711011],[-124.89902394569302,57.917454981980505],[-124.89882983578727,57.91730757047631],[-124.89863783778861,57.91716017615871],[-124.89845441416723,57.91700836609728],[-124.89829222709308,57.9168522450428],[-124.8982365119013,57.9166644781812],[-124.89820222921577,57.91646567265616],[-124.89787168598038,57.916364238304354],[-124.89757688875382,57.916267585311076],[-124.89693409167384,57.91623310305875],[-124.89673851615942,57.916136148127045],[-124.89633537335592,57.91606327010465],[-124.89606705813452,57.91592757738334],[-124.89595417970716,57.91574606549787],[-124.89576239846618,57.91559193935798],[-124.8955598368785,57.91544557472719],[-124.8953335698046,57.915315837114505],[-124.8950643082592,57.915212660737176],[-124.8947606578535,57.91513050876333],[-124.89444840292047,57.91505389264694],[-124.89415336102107,57.91496620276055],[-124.89391440718883,57.914837479014565],[-124.89361053144007,57.91476317368011],[-124.8932848286023,57.91471336134491],[-124.89295230085601,57.91468031537661],[-124.89261977369397,57.91464726857936],[-124.89228704898052,57.91462094886012],[-124.89195171900525,57.91461143052344],[-124.8916137502781,57.9146198348669],[-124.89127594666378,57.91462263176536],[-124.8909399226113,57.91463665855056],[-124.89060353450714,57.91466301898014],[-124.8902676421746,57.91467255880055],[-124.88992993726559,57.914671988334135],[-124.88959249719068,57.91466244647427],[-124.88925123416344,57.914639412764316],[-124.88888903478986,57.91461059558724],[-124.88875681860866,57.9145848176836],[-124.88859512320795,57.914342326236294],[-124.88853708485321,57.9141635087372],[-124.88828556038914,57.91403242673085],[-124.88815541274948,57.91386534481904],[-124.88799331512095,57.91370809042555],[-124.88781420480278,57.913555180179145],[-124.88761593860973,57.91340771770307],[-124.88740474766577,57.91326911972815],[-124.8871721581718,57.913140436991036],[-124.88692466651275,57.913016115699534],[-124.88667282345457,57.912896243949675],[-124.88642098200141,57.912776371738815],[-124.88615839229597,57.91266313872977],[-124.8858936940503,57.91254988756811],[-124.88564825417836,57.912427824257506],[-124.88543925254062,57.91228699833388],[-124.88524954242257,57.912136239213766],[-124.88504694063828,57.91199322306723],[-124.88478439377911,57.91187886612955],[-124.88447462876537,57.91179103143707],[-124.88430560817586,57.91172568517305],[-124.88432990513583,57.911475773920955],[-124.8843183458354,57.91129622260905],[-124.88427506953,57.911118648846],[-124.88419371331092,57.91094412088538],[-124.88408904783203,57.91077276239574],[-124.88395678682858,57.91060678058414],[-124.8838011173414,57.91044733203974],[-124.88363486593147,57.91028891622995],[-124.88347705585853,57.910130570985814],[-124.88334262326775,57.90996681360916],[-124.88329295662915,57.90979142932633],[-124.88327510621686,57.90961070386041],[-124.8831810649372,57.90943719072519],[-124.88306582529265,57.909266864552606],[-124.88296116961719,57.909095505476074],[-124.88291358252616,57.90892126021454],[-124.88297795409459,57.908743467592124],[-124.88298961094321,57.90856411131408],[-124.8829569600732,57.908384383483224],[-124.88290103428632,57.908206703642435],[-124.8828133944385,57.908031000972954],[-124.88270887655912,57.90785515668845],[-124.88260221650528,57.907680415960954],[-124.88251662250025,57.9075069735071],[-124.88246893955075,57.90733609229532],[-124.8825727975329,57.90717882002508],[-124.88279460418835,57.90702926664768],[-124.88285468688807,57.906853681652635],[-124.88290224346632,57.906673505264045],[-124.8830461836535,57.90651656894582],[-124.88324467716495,57.906370184209685],[-124.88338878116554,57.906207641042066],[-124.88352451145295,57.90604278439172],[-124.88366650324473,57.90588022329314],[-124.883846169677,57.90572807207743],[-124.88404890863528,57.90558060031897],[-124.88412780435561,57.905410780635755],[-124.88410998526966,57.90522893480069],[-124.88399468778628,57.90506085278656],[-124.88381583448093,57.904901210715224],[-124.88373848031723,57.90473456809728],[-124.88378583038222,57.90456111961376],[-124.88386067215089,57.90438565838659],[-124.88395031405061,57.904209199600075],[-124.88401919128131,57.90402135097369],[-124.88408324992423,57.903853650451666],[-124.88405274079875,57.90367282014376],[-124.88392670070286,57.90351137777168],[-124.88366428296993,57.903394777030485],[-124.88347248192258,57.90324512039353],[-124.88323986799182,57.903119796040386],[-124.8829558266272,57.90302095787794],[-124.88266311534227,57.90292989743451],[-124.88235979098378,57.90284099043882],[-124.88203724870696,57.902759772487386],[-124.88172749852296,57.902674174843014],[-124.88145605518291,57.90257768241498],[-124.88127612423006,57.90245504027414],[-124.88131119224572,57.90226915244514],[-124.88135690758683,57.90207998934255],[-124.88137278914131,57.90190066988874],[-124.88135495169435,57.901719945648374],[-124.88132860973748,57.90154139315717],[-124.8814432372952,57.90137636221979],[-124.88160417249082,57.90121508487461],[-124.88174826383603,57.90105254435253],[-124.88188612550188,57.900886586669394],[-124.88199247738197,57.90071587802946],[-124.88203989706928,57.90054018829296],[-124.88205158916286,57.90035971232758],[-124.88205695286754,57.900179183268136],[-124.88203466091302,57.900006273110904],[-124.88201273563702,57.899821028703315],[-124.88198642520473,57.89964135539632],[-124.88193051699373,57.8994636767622],[-124.88186613848933,57.89928704858697],[-124.88191559969555,57.89911361946141],[-124.88198411128236,57.89893810714726],[-124.88202319132759,57.898758983009735],[-124.88205805232889,57.89857982347631],[-124.88208233305637,57.89840169672083],[-124.88208977233828,57.89822230703145],[-124.8820423362845,57.89804357824323],[-124.88203501061565,57.89786406465827],[-124.88203401287389,57.897684604234506],[-124.88203512441731,57.897505161553354],[-124.8820299081533,57.89732566577758],[-124.88196128101355,57.89715012391593],[-124.88179717201712,57.896992847006395],[-124.88163942543049,57.89683450177255],[-124.88154324773565,57.89666321465674],[-124.88158865517163,57.89648414422018],[-124.88156221579248,57.8963089566261],[-124.88149781108532,57.89613345014388],[-124.88146517812395,57.895953724267336],[-124.8814388396801,57.895775172865534],[-124.88140195564408,57.89559653289558],[-124.8813248979522,57.89542092014306],[-124.88130488799227,57.89524242197456],[-124.88132287604776,57.8950631215189],[-124.8813514095741,57.89488390969479],[-124.88136728811818,57.894704591579426],[-124.88136636030478,57.894522889154665],[-124.8813864568217,57.89434360654371],[-124.88148017127384,57.89417167186171],[-124.88163283911689,57.89400359706742],[-124.88173261225529,57.89384068574226],[-124.88148740786374,57.89371525326581],[-124.88119042104942,57.89362864019093],[-124.88087368720926,57.893567656593795],[-124.88054584212492,57.893525645518466],[-124.88021093661952,57.89350824880728],[-124.87987342176544,57.89350765286214],[-124.87953303003813,57.89353282798339],[-124.87921810819743,57.89348194981283],[-124.87897295272678,57.89342605047428],[-124.87884502672004,57.893258980803125],[-124.87855150316206,57.89326884606072],[-124.87833186618641,57.89334774899412],[-124.8781697741556,57.89340694817373],[-124.87801996817929,57.893478587982614],[-124.87791659421099,57.89354949738473],[-124.87776970126613,57.89366490277256],[-124.87765795927956,57.89380415733959],[-124.87756312465712,57.89401309183887],[-124.87733353968245,57.89414238012607],[-124.87716528407967,57.89426657740188],[-124.87684915538863,57.89432671911706],[-124.87652298231347,57.89436995174895],[-124.8761946324207,57.894415408362484],[-124.87586839083693,57.89446088197545],[-124.87554218196864,57.8945052335011],[-124.87520813915339,57.894529329738035],[-124.87487412943423,57.89455230384753],[-124.87454199367923,57.894583143977734],[-124.87420972320535,57.894618468440356],[-124.87387383785007,57.89463357317964],[-124.87354183481263,57.894659925658],[-124.87321759629901,57.89470877450135],[-124.87289526456351,57.89476436815043],[-124.87257299906094,57.894817718442944],[-124.8722429009955,57.89485081328561],[-124.87190878577617,57.89487714383385],[-124.87157487182374,57.894896745806584],[-124.8712371764947,57.89490173441766],[-124.87089958200373,57.894903358303985],[-124.87056202113621,57.894903860045034],[-124.87022432560914,57.894908846087475],[-124.86988676468343,57.8949093461167],[-124.86955164969994,57.89489865030593],[-124.86921412254948,57.89489802734085],[-124.8688766628158,57.89489516094237],[-124.86853933798484,57.89488780853322],[-124.86820459452683,57.894864775155455],[-124.8678744745091,57.89482832134043],[-124.86754438887327,57.89479074541998],[-124.86721430389655,57.89475316868246],[-124.86688642997692,57.89471224521296],[-124.8665586243136,57.89466907836163],[-124.86623085318364,57.89462478941721],[-124.86590743619719,57.89457605044614],[-124.86558194474804,57.89452617143458],[-124.86525859706983,57.89447518831731],[-124.8649373931823,57.89442310111031],[-124.86461408109207,57.89437099514605],[-124.86429073605818,57.89432000968673],[-124.86396739190037,57.89426902344492],[-124.86364187181962,57.89422026099377],[-124.86331846166236,57.89417151575501],[-124.86299294326577,57.894122751722264],[-124.86266739182567,57.89407510818283],[-124.86234187510648,57.89402634256335],[-124.86201629141814,57.89397981872295],[-124.86169070853477,57.893933294088555],[-124.86136505860497,57.89388901123216],[-124.86103730038094,57.893844709539536],[-124.86070947503828,57.89380264961338],[-124.86038161647348,57.893761710167375],[-124.86005158163948,57.89372299442915],[-124.85972151351002,57.89368539915968],[-124.85939144604,57.893647803073485],[-124.85906134523536,57.893611327455446],[-124.85873121106668,57.89357597230541],[-124.85839883242107,57.89354508339338],[-124.85806393699626,57.89352763097887],[-124.85772686477435,57.893512402197224],[-124.85738979282523,57.89349717256252],[-124.85705472802609,57.89348532403247],[-124.85671724782634,57.893483548107234],[-124.85638129744213,57.893500851272414],[-124.85604544900049,57.89351478973803],[-124.85570786630255,57.893516375106586],[-124.85537038588801,57.893514595767584],[-124.8550330078473,57.89350945172167],[-124.8546955957748,57.89350542810484],[-124.85435780829953,57.89351373775296],[-124.85401889391653,57.89355904890255],[-124.8537449660543,57.89347930201559],[-124.8534935985415,57.89335152100626],[-124.85326152143223,57.893213811478255],[-124.85304631813042,57.89307624691335],[-124.85285254824447,57.89292765091055],[-124.85268429295026,57.89277254504597],[-124.85254583836878,57.892608723208056],[-124.8524307547031,57.89243949480565],[-124.85234325962321,57.89226489626117],[-124.85219412681141,57.89210546837159],[-124.85198539741457,57.89196347167007],[-124.85176401593625,57.8918213655307],[-124.85153413195793,57.89168142883697],[-124.85128465331826,57.89156151105198],[-124.85100656217243,57.89148060102336],[-124.8506782550054,57.89145533570948],[-124.8503280027717,57.89145791947974],[-124.84998220817133,57.891452689801476],[-124.84964726672374,57.891437458816306],[-124.84931246267722,57.89141774186922],[-124.84897800190592,57.89138681128253],[-124.84864544478559,57.891362625772814],[-124.84830625253909,57.8913484762192],[-124.84797249490755,57.89136353381456],[-124.84764427411714,57.89140443476281],[-124.84731598392939,57.89144757746252],[-124.84697960082215,57.89147943350333],[-124.84664380130093,57.891492226946895],[-124.8463202991207,57.89144792567891],[-124.84603426514995,57.89135123426787],[-124.84580845122396,57.89121693070985],[-124.84559549865703,57.891076008834744],[-124.8453889431525,57.890932898951974],[-124.84518456691019,57.89078756450648],[-124.84498012342446,57.89064447232483],[-124.84476714278048,57.8905046704861],[-124.84454548732332,57.890372644057535],[-124.84426582707245,57.89027488258632],[-124.84394724467832,57.89020818667848],[-124.84376175416064,57.890066378799396],[-124.84362559500123,57.889898081354026],[-124.84352767147341,57.889721143335755],[-124.84346552974523,57.88954675927616],[-124.84343097529111,57.88936700700935],[-124.84340274754028,57.889187309730346],[-124.84335550657224,57.88900856885944],[-124.8432786054193,57.888834056587584],[-124.84318476596307,57.88866164025829],[-124.84308456664566,57.8884902901904],[-124.84298651145085,57.88831783713035],[-124.84291172215212,57.888143343098655],[-124.84282213801626,57.88796984201998],[-124.84269224782791,57.88780384152321],[-124.84257507996792,57.88763570838591],[-124.84246856007434,57.88746430303336],[-124.84242336542066,57.8872878230324],[-124.84241204791614,57.88710715134706],[-124.84220936423397,57.88697640779456],[-124.84194487538495,57.88686643616875],[-124.84176611436723,57.88671234703263],[-124.84161497421532,57.88655176859112],[-124.84148295109901,57.88638687008034],[-124.84135314130785,57.88621862600469],[-124.84124237924178,57.88604830448638],[-124.84120344881146,57.88587412193751],[-124.84128062951581,57.885696463876656],[-124.84140388773893,57.885529301008795],[-124.84159413620085,57.885378423053105],[-124.8416920891802,57.885211039775655],[-124.84171033011643,57.88502950401678],[-124.84169476511505,57.88484991726627],[-124.84170450270899,57.88467055072378],[-124.84176283983952,57.88448824239217],[-124.8417618619259,57.88431439052606],[-124.8415745072094,57.884165834498184],[-124.84140426355474,57.88400957616616],[-124.84129350775677,57.88383925507859],[-124.84121030127979,57.88366468747992],[-124.84120739005166,57.88348521105847],[-124.84121747477678,57.88329463211972],[-124.84098616305955,57.8832040142526],[-124.84064172330433,57.883157273436574],[-124.84038372936621,57.883042869164406],[-124.84015369946282,57.882910762966155],[-124.8399407804935,57.88277095452326],[-124.83972357714129,57.88263335153608],[-124.8395106613382,57.88249354244506],[-124.83931907318288,57.88234606802345],[-124.83914456117054,57.882192012856784],[-124.83898283924367,57.882033582766354],[-124.83884234081336,57.88187085137368],[-124.83874010555233,57.88169835957753],[-124.83862933401463,57.881529157944975],[-124.83845901071685,57.88137626006762],[-124.83824185542966,57.88123753359511],[-124.8380247017428,57.88109880678828],[-124.8378117663113,57.880960116465964],[-124.83759243824585,57.88082361311337],[-124.83735818044282,57.88069258682516],[-124.83708949865971,57.88058369069684],[-124.83680367487139,57.88048361674861],[-124.83650675666823,57.88040139026838],[-124.83617167634668,57.880393974405244],[-124.83586473211716,57.88036325088841],[-124.83563065659017,57.8802266153046],[-124.83535984016218,57.88011881855668],[-124.83506524444239,57.880029879761224],[-124.83478572033941,57.87993097815845],[-124.83452354978041,57.879816525994556],[-124.83427634692062,57.87969547501163],[-124.83404214240382,57.87956332177758],[-124.8337581995596,57.879471108699],[-124.83344187018153,57.8794032856097],[-124.83311634442184,57.87936005559709],[-124.8327841123097,57.87932910320129],[-124.83245430193729,57.87928807711794],[-124.8321443011279,57.87922030644027],[-124.83184318661857,57.87913803266594],[-124.83154425124384,57.879053534204076],[-124.8312518507035,57.87896236305331],[-124.83095067057144,57.87888232980321],[-124.83062041335042,57.878855875582595],[-124.83028590534673,57.878830504746524],[-124.82998255042956,57.878752693308776],[-124.82971608172598,57.87864155852848],[-124.82951512441426,57.87859380710402],[-124.82934121149911,57.878354505402676],[-124.82927082616708,57.87817667881224],[-124.8292320987309,57.87799800914073],[-124.82922717175812,57.87781739370287],[-124.82926222970646,57.87763937317289],[-124.82931626047042,57.877461519563184],[-124.82939133703661,57.877284972651466],[-124.82949157075336,57.87711313325845],[-124.82962525428648,57.87695056051367],[-124.82979249185287,57.87679389053778],[-124.82997019874571,57.8766395555608],[-124.83014997741547,57.87648636015942],[-124.83036186325765,57.87631774484777],[-124.83046128888162,57.876171693814605],[-124.83056569601771,57.87600101211818],[-124.83066381292046,57.875829153545155],[-124.830759855721,57.87565615515224],[-124.83086007885652,57.875484315016415],[-124.83095193867457,57.87531015825079],[-124.8310500520143,57.87513829951502],[-124.83117957544415,57.87497344599386],[-124.8313322507164,57.87480991726409],[-124.83149954126857,57.874651002976165],[-124.83168759690557,57.87450236487086],[-124.83191911805565,57.874379903966286],[-124.83223971464358,57.874308694605546],[-124.83251884638626,57.8742146895074],[-124.8326757286424,57.87405119635011],[-124.83272970337511,57.87387446326605],[-124.83276056001664,57.873695284301505],[-124.83278298473131,57.87351603140717],[-124.83280122819363,57.873335620310066],[-124.83282790303362,57.87315528319717],[-124.83286715537565,57.87297729954715],[-124.83293163225899,57.87280178026779],[-124.83302762216955,57.87262990203043],[-124.83313836614857,57.872458153138034],[-124.8332385351753,57.8722874330292],[-124.83331354829627,57.872112006097254],[-124.83336969455516,57.871933049079445],[-124.83340483165718,57.87175166477564],[-124.8334082472115,57.87157336707358],[-124.83335457871037,57.8714001767234],[-124.83320785567385,57.871236264471],[-124.8331083505672,57.87097743381753],[-124.8329652429846,57.87090103447356],[-124.83276738142106,57.870754618174296],[-124.83254595380619,57.870620331952615],[-124.83232031229353,57.8704860083887],[-124.83210749265345,57.870346189203204],[-124.83190535233256,57.87020197720818],[-124.83172449942211,57.87005122248151],[-124.8315734689537,57.86989063539397],[-124.8314394753136,57.869724589992785],[-124.8313351992471,57.86955207615332],[-124.83123520908926,57.869377356790025],[-124.83109458252507,57.869221346834955],[-124.83080022137638,57.869127914598124],[-124.83053174552612,57.86901564277953],[-124.83035294180507,57.86886714739477],[-124.83021045697653,57.86870326931806],[-124.8300594732046,57.86854155948567],[-124.82989781327412,57.86838424182958],[-124.82973404708339,57.86822690546536],[-124.82957024741202,57.8680706901728],[-124.82940223391323,57.86791443761888],[-124.82923207936551,57.867759287580114],[-124.82905764134087,57.86760634274731],[-124.82887898959892,57.86745336060841],[-124.82869823174991,57.86730035970019],[-124.82850890565155,57.867151769330576],[-124.82831104622426,57.867006468214726],[-124.82809822623867,57.86686776436233],[-124.82787687302195,57.86673234966098],[-124.8276490941269,57.866600242637006],[-124.82741281696147,57.86647030343661],[-124.82717432916623,57.86634370899203],[-124.82693159305457,57.86621819821842],[-124.82668664627178,57.86609603216726],[-124.82641381462396,57.86598932144218],[-124.82611060608359,57.86591038096093],[-124.82578973494799,57.8658570796185],[-124.8254623674554,57.86580932791195],[-124.82514813531544,57.86574598964508],[-124.82484489639938,57.86566816754308],[-124.8245460836355,57.86558365453292],[-124.82424720220239,57.86550138334596],[-124.82394403714537,57.865421316723655],[-124.82364305086944,57.86533902556439],[-124.82333774593013,57.86526006018362],[-124.82303012458779,57.86518780292214],[-124.82271361903791,57.865130046516676],[-124.8223859812839,57.8650912572177],[-124.82205167121634,57.86506362356156],[-124.82171739671934,57.86503486782396],[-124.82138758321392,57.86499829989074],[-124.82105777034894,57.86496173114139],[-124.8207280985617,57.86492067660831],[-124.82040731371333,57.86486511985676],[-124.8200883562,57.8648185509577],[-124.81975064270843,57.86483237877739],[-124.81941858487936,57.86480027224198],[-124.81908642214228,57.86477152860273],[-124.81874877904075,57.86478311139629],[-124.81841461181826,57.86481827683032],[-124.81811704035877,57.86489638557482],[-124.81784176943445,57.865002730672],[-124.81752779356192,57.865066112171846],[-124.81719776711878,57.86510355450325],[-124.81686384217713,57.865130867365565],[-124.81653181277693,57.86516492558327],[-124.81621179299154,57.86521927782032],[-124.81589173702892,57.86527475053171],[-124.81556177765829,57.865309946331095],[-124.81524997337766,57.865371098755276],[-124.81491228843902,57.865383793061376],[-124.8145730958088,57.865377406639745],[-124.81424107289197,57.865344165924576],[-124.8139202586946,57.8652897147501],[-124.81359098036133,57.865236308874636],[-124.81326384572587,57.86518179974511],[-124.81293892549051,57.86512394489713],[-124.8126183978585,57.86506052067598],[-124.81231072799417,57.86499048112714],[-124.81201387930874,57.86491156504431],[-124.81173853050848,57.864819381655366],[-124.81151278566252,57.86469175105],[-124.81132796760375,57.86453644685335],[-124.8111496501979,57.86437559272538],[-124.81094551479381,57.864231330949224],[-124.81068770530385,57.86411799259629],[-124.8103782935276,57.86403671742546],[-124.81005089055044,57.86399117036814],[-124.80972070771826,57.863966907172994],[-124.80938602702129,57.86395157534264],[-124.8090469191392,57.86394293236742],[-124.8087098833067,57.863935428635685],[-124.8083707402489,57.863927905174805],[-124.8080317037856,57.86391701713738],[-124.8076971307084,57.86389831734752],[-124.80736494936902,57.863870665710756],[-124.8070330171293,57.86383516458633],[-124.80670333496998,57.86379519658939],[-124.80637376011693,57.863751864066884],[-124.80604636445885,57.863706307169004],[-124.80571686224944,57.863660730550265],[-124.80538946817806,57.86361517204013],[-124.80505986083737,57.86357295750739],[-124.80473221923432,57.86353524603717],[-124.8044022929839,57.86350312100309],[-124.80407001073749,57.863478824859094],[-124.80373958695488,57.86346239548461],[-124.80340459256392,57.8634571397379],[-124.80306720586675,57.86346083407263],[-124.80272953395345,57.863473497435386],[-124.80239168354399,57.863491766118244],[-124.8020557261568,57.863516780331025],[-124.80171758964083,57.86354401718578],[-124.80138363162422,57.86357241238945],[-124.80105385208554,57.86360196597353],[-124.80072982279205,57.86364951549235],[-124.80041572227553,57.863716220228554],[-124.79999968202051,57.86380667905458],[-124.79968347154814,57.86387336306487],[-124.79961128552108,57.863889535129275],[-124.79936933156766,57.86394118658132],[-124.79904936893087,57.86399325500058],[-124.79871783415305,57.86401157143339],[-124.79837879973032,57.86400065879828],[-124.79803976550404,57.86398974529925],[-124.79770498198222,57.863977747790685],[-124.7973680913175,57.86396573039011],[-124.79702884281507,57.86396154172309],[-124.79668527220497,57.8639606777733],[-124.79635266839578,57.86394645345414],[-124.79603371257784,57.86390094817277],[-124.79573930075517,57.863813045069776],[-124.79545153507775,57.86371510745945],[-124.79514840976536,57.863636096614734],[-124.79483649760869,57.863568221061314],[-124.79451797748435,57.863509257363404],[-124.79419731513381,57.8634513950397],[-124.79387672558289,57.8633912894807],[-124.79357992813314,57.863312332403595],[-124.7933352162167,57.86318674163565],[-124.79309797760463,57.863025328350034],[-124.79286464215447,57.863005266407406],[-124.79263274048641,57.86313774901838],[-124.79241051094314,57.86329723646349],[-124.79220774884094,57.86344119849124],[-124.79201541396121,57.86358861960198],[-124.79181682749207,57.86373374057865],[-124.79161613214426,57.86387884213958],[-124.79141547123123,57.864022822186335],[-124.7912106300428,57.864165642424176],[-124.79099539441572,57.86430388168172],[-124.790759407423,57.86443183796856],[-124.79050059766983,57.86454837077831],[-124.79021714592771,57.86464449094333],[-124.78992137260045,57.86473040440752],[-124.78961531317266,57.86480837272552],[-124.78932164458972,57.864894304043396],[-124.78905668524028,57.865005170400046],[-124.78880822306319,57.86512740206095],[-124.78855143778182,57.865246192815],[-124.78831961536845,57.86537530451028],[-124.7882254391507,57.86555053208489],[-124.78804997358203,57.86569698010227],[-124.78780778984893,57.865820388807556],[-124.78754474649894,57.865936877630936],[-124.78728177373398,57.86605112347962],[-124.78701269363683,57.86615858377509],[-124.78673325521983,57.866260341276096],[-124.78645385142387,57.86636097696643],[-124.78618887331479,57.86647183777869],[-124.78594453485708,57.86659634519823],[-124.7857147665479,57.866726592998916],[-124.78549742476118,57.866863683255495],[-124.78528008139224,57.86700077317638],[-124.78505648620553,57.86713556255755],[-124.78483081806387,57.86726921109837],[-124.7846030769657,57.867401718787754],[-124.7843691201999,57.86753080463306],[-124.7841248050576,57.86765418761078],[-124.78387423804503,57.86777526989459],[-124.78362163428582,57.86789408998333],[-124.7833669575817,57.86801176910016],[-124.78311017170411,57.86812942846802],[-124.78284927776578,57.8682436850885],[-124.78258227695034,57.86835115594547],[-124.78229870386566,57.86844950208658],[-124.78200491766631,57.868537660047274],[-124.78170295357816,57.86861789152604],[-124.78134945901,57.868661760208],[-124.7810749278207,57.86874111997875],[-124.7808713307872,57.86890861148331],[-124.78088470931968,57.86908145560867],[-124.78081556315666,57.86926363774802],[-124.78069397910451,57.8694374883941],[-124.7805850399111,57.869611454854486],[-124.78058577133994,57.869784183240014],[-124.78065394862884,57.869957529738436],[-124.78073059362116,57.87012983224914],[-124.78081984922622,57.8703033718556],[-124.78091542879038,57.87047696936445],[-124.78101733240148,57.87065062476206],[-124.7811277041731,57.870823236102964],[-124.7812423650205,57.870993643516854],[-124.78135913465644,57.871164070165136],[-124.78148019343793,57.87133229286618],[-124.78160132586181,57.87149827300839],[-124.78180124522073,57.87164029979623],[-124.7820437207464,57.87177037852889],[-124.78223074262478,57.87192013763214],[-124.78239647042615,57.87207643106652],[-124.78254086771848,57.872240380154835],[-124.7826577558466,57.87240744216078],[-124.78276399711879,57.87257777140895],[-124.78286387958723,57.87274916400421],[-124.78295736693211,57.87292274120233],[-124.78304663941913,57.873096279812415],[-124.78313380485936,57.87326979911828],[-124.7832125033511,57.87344436254352],[-124.78328062689388,57.8736199508308],[-124.78334660694215,57.873796641084915],[-124.78341047970046,57.87397331206751],[-124.78347649720433,57.874148881078995],[-124.78353822701516,57.87432665403692],[-124.78359788569374,57.87450328648777],[-124.78365754493205,57.87467991894399],[-124.78372352860627,57.8748566092036],[-124.78379165708701,57.875032197484025],[-124.78387036231193,57.875206760836214],[-124.78396604081382,57.87537811453943],[-124.78408498058215,57.87554743758089],[-124.78420817364132,57.87571567781773],[-124.78432289953152,57.87588496218851],[-124.78440378943095,57.87605730214484],[-124.78439974320453,57.87624793306454],[-124.78440231069432,57.8764296518243],[-124.78454109700363,57.87657223804328],[-124.78482900493925,57.87666795804934],[-124.78514010306729,57.87676388912396],[-124.78546290059857,57.87682403579645],[-124.7857705087105,57.87689750201095],[-124.78602404221367,57.877013094157356],[-124.78626885574968,57.8771375789056],[-124.78655655557003,57.87724002271144],[-124.78676110163421,57.87737086885695],[-124.78682485195438,57.87755202383901],[-124.78693748708373,57.87772128705853],[-124.78706284425547,57.877888422996335],[-124.78720306787727,57.87805232957814],[-124.78734122068721,57.87821509558294],[-124.78745386012147,57.8783843584809],[-124.7875579956781,57.87855578698929],[-124.78765580765062,57.878727157835186],[-124.7877535844092,57.87889964988851],[-124.78785557845744,57.87907218030209],[-124.78795546523384,57.87924469146899],[-124.78804899218066,57.87941826624884],[-124.78813201495302,57.879590623762965],[-124.78800890066198,57.87974652373546],[-124.78778313130802,57.87988130026431],[-124.78755321606131,57.88001379551708],[-124.78732119093964,57.88014627118165],[-124.78709752499093,57.88028106581204],[-124.78688843468417,57.880421600851484],[-124.78669813664706,57.88056791480927],[-124.7865396542028,57.880773962366284],[-124.78642674563699,57.88094004843316],[-124.78638406095591,57.88108658631932],[-124.78630367928336,57.88122492940413],[-124.78660686752099,57.88137125614572],[-124.78679431659823,57.881509797794685],[-124.78699230875854,57.88164843527176],[-124.78720088024342,57.8817860472776],[-124.78741581443933,57.881922595346786],[-124.78763707528644,57.88205920070071],[-124.78786680733056,57.8821947612555],[-124.78809868550587,57.88232921937638],[-124.78833478211158,57.882463715498375],[-124.7885729887989,57.88259823040959],[-124.78881119718844,57.88273274491321],[-124.78905151569026,57.88286727819102],[-124.78928761907432,57.883001772697476],[-124.78952372414535,57.88313626680388],[-124.78975346955554,57.88327182425312],[-124.78998114422181,57.88340624090266],[-124.79020242309728,57.8835428422013],[-124.79042588409347,57.883677219800525],[-124.79065359963502,57.8838105141007],[-124.7908791723018,57.88394491013253],[-124.79110263810027,57.88407928665147],[-124.79132181651457,57.88421586703479],[-124.79153249054743,57.88435461301972],[-124.7916813357015,57.88451410751794],[-124.79183007415143,57.88467696564685],[-124.7920086930291,57.88482887895833],[-124.79219367491622,57.884979728192796],[-124.7923808027968,57.88512947506532],[-124.79256789619906,57.885280342955724],[-124.79275077398998,57.88543117236022],[-124.79292725564098,57.885584186692384],[-124.79309312395895,57.885739347743026],[-124.79324619836433,57.885898878955004],[-124.79337804438306,57.886062703921404],[-124.79349495164467,57.88623200130154],[-124.7936033895795,57.88640234342922],[-124.79370968394153,57.886573787650114],[-124.7938202324622,57.886744148769225],[-124.79394354160151,57.88691126067322],[-124.79407746692544,57.88707622548286],[-124.7942177912356,57.88723900496506],[-124.79436022542608,57.8874018034245],[-124.79450691411182,57.887563518688935],[-124.7946557127429,57.88772525291189],[-124.7948109105404,57.88788480174465],[-124.7949830869708,57.88804113934233],[-124.79514679409172,57.88819852166343],[-124.79520861092767,57.88831011823042],[-124.7953235595603,57.88854108382325],[-124.79535788351764,57.88872084838073],[-124.79539856994255,57.88889954894415],[-124.79544136551493,57.88907826860899],[-124.79548205272252,57.88925696921293],[-124.7955206674183,57.88943452949459],[-124.79555502901391,57.8896131729036],[-124.79558513745181,57.889792899443655],[-124.79560895562417,57.88997144751225],[-124.79562852049936,57.89015107871828],[-124.79564386789846,57.89033067179991],[-124.79565714248257,57.89050912457113],[-124.79566612772979,57.89068978174932],[-124.79567725780475,57.89086933677279],[-124.79568627911422,57.89104887275164],[-124.7956974093915,57.89122842784002],[-124.79571275755858,57.8914080211137],[-124.79573025065291,57.891586512229246],[-124.79575192585841,57.891766162793175],[-124.79577785499261,57.891944730271575],[-124.79580796635965,57.89212445719452],[-124.79584022283262,57.89230308195162],[-124.79587247961177,57.892481706733896],[-124.79590259186027,57.892661433735285],[-124.7959306312982,57.89284002042273],[-124.79595230818205,57.89301967118706],[-124.79596769416925,57.89319814349618],[-124.79597671742236,57.89337767988792],[-124.79597730471204,57.89355714002342],[-124.79597367396246,57.89373656204752],[-124.79596578923928,57.89391706722879],[-124.79595583127232,57.89409643210166],[-124.79594165510524,57.89427575886141],[-124.79592533386457,57.89445618784922],[-124.7959090483439,57.894635495599154],[-124.79589058183086,57.89481702684623],[-124.79585527827342,57.89499728426191],[-124.79577182381787,57.89516589027044],[-124.79546956776132,57.89524951900017],[-124.79513507238593,57.89528574833785],[-124.79480686778864,57.8953231553793],[-124.79447265848046,57.89535041289486],[-124.79413662701457,57.895368680311094],[-124.79380070304244,57.89538358307017],[-124.7934647428543,57.895399606251786],[-124.79312688902559,57.89540888185015],[-124.79279150384635,57.89540696301786],[-124.79245418948778,57.895399417865065],[-124.79211694724485,57.89538962931896],[-124.79177977717774,57.895377597380154],[-124.7914427153569,57.895362200780156],[-124.79110565381185,57.89534680332723],[-124.79077066562157,57.89533254544508],[-124.79043338837555,57.89532387390494],[-124.79009775173967,57.89532979717051],[-124.78976339472167,57.895361527941965],[-124.78944100648363,57.895414677036335],[-124.78913684171921,57.8954915446239],[-124.78884693433386,57.895584243583166],[-124.788581757517,57.895695112497265],[-124.78833516421278,57.89581848759558],[-124.78809897056016,57.895946443315076],[-124.78786481221579,57.89607666037166],[-124.78763479831527,57.8962091579814],[-124.78745693381856,57.8963600757134],[-124.7872873239136,57.896516676418834],[-124.78712818622958,57.896675615535884],[-124.78698370310815,57.89683805280249],[-124.78685598389968,57.89700400748509],[-124.78674921105906,57.897174639340896],[-124.78666553020601,57.897348846372466],[-124.78659865010383,57.897525449692246],[-124.78656759029404,57.89770350105021],[-124.78656809662358,57.897884083300426],[-124.78657074837616,57.898063563534876],[-124.78657761869445,57.89824308224524],[-124.78659081691909,57.898422658652045],[-124.78662296272594,57.898603529348996],[-124.78667834730376,57.898783490218904],[-124.78663488406818,57.89895357760138],[-124.78646096809112,57.899112381778984],[-124.78634374933307,57.89927955374926],[-124.78628948415002,57.89945739388924],[-124.78623521845405,57.89963523403991],[-124.78615785782317,57.89980949887689],[-124.78602282003084,57.900005669963036],[-124.78591625197238,57.90016957404193],[-124.78581357611515,57.90034360799175],[-124.78570882609694,57.90051650138506],[-124.78558741700039,57.90068251318916],[-124.78543043632342,57.90083922765271],[-124.78523148306667,57.900988829465966],[-124.7849887732836,57.901121207723406],[-124.78471547049614,57.90122077984535],[-124.78441164762702,57.90128530308506],[-124.7840831626337,57.901329411573],[-124.78374441961212,57.90136445272923],[-124.78340978608459,57.9014028953904],[-124.78308122636,57.901449243960656],[-124.78274644630005,57.90149217005477],[-124.78241373864373,57.90153623587049],[-124.78209132341921,57.901588246236855],[-124.78178534732078,57.90165386549124],[-124.7815370189572,57.90176375417643],[-124.78134622900498,57.90192127645245],[-124.78110786379987,57.90204920127646],[-124.78084432845084,57.902172408850355],[-124.78056853416012,57.90228316600236],[-124.78027484324122,57.9023601104763],[-124.77995743690497,57.902387486327534],[-124.7796181712667,57.902373161632674],[-124.77927323222723,57.902338595130196],[-124.77893680457626,57.9023018625577],[-124.77860910674246,57.90225623633713],[-124.77828591995069,57.902201677829176],[-124.77796058819305,57.90214822045575],[-124.77763496593485,57.90210373247685],[-124.77730646977196,57.902082771072365],[-124.77696785945143,57.902113309926726],[-124.7766337592128,57.90213491649455],[-124.77630555507744,57.90210498243634],[-124.77598022696938,57.90205152023078],[-124.77565933765726,57.90199136838621],[-124.77534274130595,57.901929012026024],[-124.77503062047725,57.901858844819806],[-124.77471395325308,57.90179872951789],[-124.77438615534808,57.90175645674709],[-124.77405835817956,57.901714183171194],[-124.77373289046724,57.90166520058493],[-124.7734050217202,57.90162516794841],[-124.7730727519517,57.90159070199328],[-124.77274266538748,57.90155401210818],[-124.7724126526333,57.90151507886402],[-124.7720847865989,57.9014750429836],[-124.77175699446744,57.90143276375583],[-124.77142687395921,57.90139719188652],[-124.77108987642747,57.90137837986015],[-124.7707547688749,57.90136631407679],[-124.77041736888864,57.901359834325255],[-124.77007982240848,57.90135783880048],[-124.76974212931377,57.90136032750124],[-124.76940476622822,57.90135272391418],[-124.76906987954024,57.901333926270745],[-124.76873281036836,57.90131735082138],[-124.76839122900665,57.901309705659244],[-124.7680434296268,57.90129863726729],[-124.76770551658952,57.90130784842225],[-124.76739784904488,57.90135995984483],[-124.76711017279409,57.901445903946566],[-124.76683245445967,57.90154988542016],[-124.76656076888226,57.90166289509903],[-124.76628915520472,57.90177366169731],[-124.7660072868047,57.901875359860306],[-124.76570505786339,57.90195443652237],[-124.76538450468183,57.90201315363604],[-124.76506206184261,57.90206512280069],[-124.76473151152213,57.90210692149045],[-124.76440310676743,57.902147617664525],[-124.76408473305342,57.902204108694555],[-124.76377424369849,57.90227749634229],[-124.76346989734577,57.902356548382535],[-124.76316551285467,57.902436721003426],[-124.7628592756507,57.902509024450396],[-124.76253682507486,57.90256098752809],[-124.76219501235202,57.902560054082066],[-124.76187144087831,57.90251778969105],[-124.76154609280816,57.902465413474424],[-124.76122733253774,57.90240524645059],[-124.7609108304805,57.90234061321965],[-124.76060302599265,57.902268208890725],[-124.76030621341543,57.90218244682006],[-124.76000943914448,57.90209556282708],[-124.75970615303044,57.90201422558128],[-124.75938939807344,57.90195743763823],[-124.75904977433927,57.901954273236356],[-124.7587176267332,57.9019803395851],[-124.75838721811776,57.90201763745305],[-124.75805677183584,57.90205605577045],[-124.75772639892187,57.90209223073395],[-124.75739006726813,57.90211713315108],[-124.75706172856867,57.902155568687235],[-124.7567452679914,57.90221766820004],[-124.75643280297086,57.90228653396851],[-124.75611837559978,57.902350894234466],[-124.75582222805669,57.90243673522538],[-124.75553832816982,57.90253502778872],[-124.75524628556573,57.902624270744916],[-124.75493596103381,57.90269203148035],[-124.7546113513292,57.90274507692452],[-124.75428677783391,57.902797000312844],[-124.75397237966075,57.90286023427879],[-124.75369265363909,57.90295968369424],[-124.75341081661581,57.9030591127858],[-124.75312076294726,57.90315173467984],[-124.75283485258042,57.90324663799832],[-124.75255508350305,57.90334720633244],[-124.75228563754227,57.90345460051953],[-124.75202440508892,57.90356880085601],[-124.75176727856258,57.90368640404311],[-124.75151225999274,57.90380402652508],[-124.7512223075594,57.90389328055179],[-124.75090978129045,57.90396325475034],[-124.75059725385907,57.904033228220605],[-124.75029501245129,57.904111148819965],[-124.75002551731635,57.90421965978813],[-124.74975394829596,57.904327029150416],[-124.7494356086955,57.90438124275178],[-124.74910733206755,57.90435348413701],[-124.74877746839563,57.90431000714338],[-124.74844768008604,57.90426428679922],[-124.74811778064853,57.904221929443494],[-124.74779010349519,57.90417622730585],[-124.74746020557005,57.90413386832521],[-124.74712997233584,57.90410159993384],[-124.746796995159,57.904088372413376],[-124.74645893980497,57.90410089348744],[-124.74612250800543,57.90412801003569],[-124.74576363424137,57.904195292666216],[-124.74541764105315,57.904255965973725],[-124.74515461600059,57.904233298744785],[-124.74498593144014,57.904102723013075],[-124.74487404198486,57.903914358176884],[-124.74478554580706,57.903720605671886],[-124.74471965696597,57.90354501213043],[-124.74469399956395,57.903365311342625],[-124.74466412335603,57.903185570812965],[-124.74463421002113,57.9030069515754],[-124.74461066289943,57.9028272707577],[-124.74460399196491,57.90264774905972],[-124.74460368696252,57.902467165789204],[-124.74453565427498,57.90229267376349],[-124.74442739270293,57.90212228890689],[-124.74431276632204,57.90195296558412],[-124.744227822919,57.9017794356308],[-124.744164086941,57.90160274079717],[-124.74410246098813,57.90142606585962],[-124.7440238854235,57.90125147429029],[-124.74393898236737,57.90107682301626],[-124.74387099270878,57.90090120964046],[-124.74381784426362,57.90072349302829],[-124.74377524320556,57.90054587592431],[-124.74374748299144,57.900366155614485],[-124.7437239043195,57.900187596394204],[-124.74365602958694,57.900008619286204],[-124.74365421974895,57.8999996292936],[-124.74356766118845,57.89981150297401],[-124.7434848728245,57.89963687157406],[-124.74340845062258,57.899461178608824],[-124.74334890358348,57.89928564488083],[-124.74331056240683,57.899106946444704],[-124.7432870240455,57.89892726612023],[-124.74326137663296,57.89874756591781],[-124.74321878043817,57.89856994899995],[-124.74315716388972,57.89839327418088],[-124.74308496423554,57.89821762107448],[-124.74299792568904,57.898044071099115],[-124.74293416435407,57.897868497620365],[-124.74292964897033,57.89768787541633],[-124.74291029426958,57.89750935637307],[-124.74283384161006,57.89733478472383],[-124.74273833205334,57.897162276338754],[-124.74263224002061,57.89699078958764],[-124.7425197465138,57.896821485540286],[-124.74239452412522,57.89665430441623],[-124.74226930284918,57.89648712320339],[-124.74215892161982,57.896317838862494],[-124.74207189173742,57.89614428862355],[-124.7420039197022,57.89596867519281],[-124.74194656882025,57.89579091888823],[-124.74189554577877,57.895613222378536],[-124.7418445232191,57.8954355258821],[-124.74179982838004,57.89525788919021],[-124.74176360773146,57.895079210985195],[-124.74173797021513,57.89489951120593],[-124.74171862260086,57.894720992505206],[-124.74169931266152,57.89454135257995],[-124.74168422096517,57.89436175255015],[-124.74166912941286,57.89418215255184],[-124.74165403800458,57.89400255258534],[-124.74164105573942,57.893822972583415],[-124.74163654704677,57.893642351092346],[-124.74161934703149,57.8934627312892],[-124.74153646918738,57.89329146358587],[-124.74139431623425,57.89312636516044],[-124.741353806662,57.892949889869605],[-124.74134082619244,57.89277031003408],[-124.74134475478603,57.892589768480285],[-124.74135922794063,57.89240932664726],[-124.74140740601334,57.8922303250879],[-124.74148932602391,57.892051642513216],[-124.74145288495826,57.89187969232486],[-124.74134614761859,57.89179119801359],[-124.74122165100763,57.89153990289449],[-124.74107099559014,57.891376967166025],[-124.74090960965619,57.89121953782505],[-124.74073971466343,57.89106427102612],[-124.74056131068791,57.89091116673588],[-124.74037228897588,57.89076020496585],[-124.74017890101238,57.89061368803734],[-124.7399769666977,57.89047045476156],[-124.73975364553608,57.89033599156778],[-124.73950242345126,57.89021584468907],[-124.73924905662129,57.89009679862927],[-124.73901075340545,57.88996892193657],[-124.73878743867107,57.88983445719185],[-124.73857481968322,57.889695607006495],[-124.73838151935661,57.88954684513289],[-124.73819462198735,57.88939590046872],[-124.73798407880805,57.889258190637754],[-124.7377242090002,57.88914468805779],[-124.73744061816824,57.88904666245031],[-124.73715925040017,57.88894529251232],[-124.73689509254818,57.8888339908363],[-124.73663526658909,57.88871936493415],[-124.73637547985653,57.888603617292354],[-124.7361091803704,57.888493415325996],[-124.73583640573013,57.88838763774847],[-124.73556141093344,57.888285203331115],[-124.73528220027399,57.88818272828969],[-124.7350050998086,57.88808027271146],[-124.73473443993251,57.887974512959204],[-124.73448324962894,57.887854356903375],[-124.7342428304396,57.88772757317177],[-124.73400241286978,57.887600789022564],[-124.73375548239689,57.887479550503336],[-124.73348916080442,57.88737046466847],[-124.73320126390077,57.88727575381836],[-124.73290900021748,57.88718548718685],[-124.73262543668532,57.887087451521424],[-124.73234835151378,57.88698499052944],[-124.73207559837229,57.88687920541152],[-124.73181576280386,57.88676569157821],[-124.73159034639865,57.886632316361585],[-124.73137140850486,57.88649451609899],[-124.73112020101345,57.886375475123906],[-124.73087121709737,57.88625309006713],[-124.73058450756385,57.88612361517365],[-124.73033546085487,57.885940662000046],[-124.73040626259454,57.88584263632559],[-124.73061819390995,57.885687633241965],[-124.73082180278375,57.885529185706496],[-124.73096855550969,57.88536795266755],[-124.73110905704125,57.885204416713734],[-124.73124119893265,57.88503855776849],[-124.73137958955803,57.88487500148714],[-124.73154094559204,57.8847183935531],[-124.73172323391918,57.88456647130921],[-124.73191173285713,57.88441797282025],[-124.73210026807502,57.884268352847215],[-124.73228462265475,57.88411757122871],[-124.73246686731562,57.883966769300244],[-124.7326407900331,57.88381252312632],[-124.7328021740122,57.88365479259576],[-124.73295726913166,57.88349588044531],[-124.73310611319268,57.8833346654584],[-124.73324870624828,57.883171147657144],[-124.73338497289862,57.88300756954043],[-124.73352775211977,57.8828384453023],[-124.73361371722861,57.882665415621375],[-124.73359430126278,57.88249026171217],[-124.73354751464764,57.88231372580493],[-124.73348597009021,57.8821370494813],[-124.73341599278953,57.881960292909824],[-124.7333439455532,57.88178239503225],[-124.73327611561818,57.881604537278626],[-124.73322300669481,57.881427941222825],[-124.73321428556079,57.88124840286403],[-124.7332815380553,57.881067344428686],[-124.73324518283735,57.88089427270806],[-124.73315182945076,57.88072290168067],[-124.73304368142094,57.880552511372976],[-124.73292280944318,57.88038424305483],[-124.73279135964243,57.88021699552785],[-124.73264929440244,57.88005188999541],[-124.73250079251537,57.879890087812264],[-124.73234589178027,57.87973046772045],[-124.73218459225163,57.87957302969654],[-124.7320127153723,57.87941661231179],[-124.73183443984665,57.87926237693469],[-124.73164758200181,57.879112545915305],[-124.73145214187474,57.878967119215446],[-124.73124811949624,57.878826096795244],[-124.73101623922904,57.87869826757225],[-124.73075872265686,57.878580287801505],[-124.73049473206389,57.878466732150635],[-124.73023288900661,57.87835207487013],[-124.7299839610319,57.8782296891657],[-124.72973932656285,57.87810510078911],[-124.72948603426002,57.877987158870276],[-124.7292133164945,57.877882490100816],[-124.7289341623998,57.877781124077046],[-124.7286485340912,57.87768418198872],[-124.72835643151805,57.877591663792806],[-124.72805984906104,57.87750695328608],[-124.72775882445544,57.87742892920576],[-124.72744688176569,57.87736201597047],[-124.72712838853894,57.87730176890431],[-124.72680545270035,57.87724820812657],[-124.72648033386619,57.87719686885579],[-124.72615502623377,57.87715113494367],[-124.72582083181177,57.87711877426477],[-124.72548878397406,57.87708531170647],[-124.72516784647544,57.877035130844796],[-124.72486250161819,57.87696042355338],[-124.72457033799523,57.87687013957609],[-124.72427825175838,57.87677761250772],[-124.72398612895593,57.87668620603604],[-124.7236983376497,57.87659147567936],[-124.72340173553275,57.87650787610893],[-124.7230592312018,57.876472063945975],[-124.72280731810292,57.87637655430729],[-124.72263111085077,57.8761628820057],[-124.72258512197185,57.87602672782757],[-124.72249386106334,57.87585761287493],[-124.72225314027528,57.87574314256131],[-124.7219762048694,57.875639539953056],[-124.7216821027254,57.8755447446065],[-124.72138585602563,57.8754510495926],[-124.72109593466193,57.87535741470231],[-124.72080375441394,57.87526824383223],[-124.72050509930604,57.87518349643161],[-124.72019981682776,57.87510765735955],[-124.7198901291022,57.87503738316815],[-124.71957611227803,57.874970431373995],[-124.71926205843062,57.87490460006902],[-124.71895022805256,57.87483542464355],[-124.71864709760516,57.87475848110376],[-124.7183527817231,57.87467040583605],[-124.71807145824697,57.87457236073856],[-124.71779021260254,57.874472072607226],[-124.71750245380676,57.87437732906924],[-124.71720369859332,57.87429593801069],[-124.71689628386247,57.87422119233477],[-124.71658879391445,57.87414868840206],[-124.71628138160634,57.8740739413171],[-124.71598266967598,57.87399142631942],[-124.71568836602138,57.87390334522906],[-124.71539839423433,57.87381194052304],[-124.71510842385501,57.87372053519376],[-124.71481630875861,57.87363023010665],[-124.71452197237554,57.87354326769234],[-124.71422549121966,57.87345740549045],[-124.71392682698247,57.8733737647084],[-124.71362816407202,57.87329012326344],[-124.71332946417344,57.873207602377185],[-124.71303080390771,57.87312395960588],[-124.71272996048393,57.87304253822399],[-124.712431302859,57.87295889412145],[-124.71214567691958,57.87286415954385],[-124.71186442145763,57.872764980287144],[-124.71158535200787,57.87266357841338],[-124.71129976881126,57.87256772082838],[-124.71100763340817,57.87247852870886],[-124.7107111686486,57.87239265877192],[-124.71041688981984,57.87230456616922],[-124.71012042777689,57.87221869493151],[-124.70982185931871,57.872132802604575],[-124.70952976921691,57.87204248606127],[-124.70925707311176,57.87194001948424],[-124.70901247120163,57.871817636261284],[-124.70878944813481,57.871680881290025],[-124.70855994966595,57.871548549469146],[-124.70829603685526,57.87143607183473],[-124.7079934941494,57.87134340724438],[-124.70760711492508,57.87117478107386],[-124.70739377246126,57.87094053933745],[-124.70730504621594,57.870761344376426],[-124.70723314375425,57.87058343442657],[-124.70718676497195,57.87039904290969],[-124.70724956146758,57.87022804965054],[-124.70741298575514,57.87007373623898],[-124.70761204621259,57.86992537675151],[-124.70780692830876,57.86977585483594],[-124.70798717088604,57.869622825752295],[-124.70817158876864,57.86947095858958],[-124.70834972079594,57.86931790860011],[-124.7085132135344,57.869161351549955],[-124.7086558212462,57.868998983699186],[-124.70878616669167,57.86882528085201],[-124.70888926626886,57.86864682718491],[-124.70892894581125,57.868473366045755],[-124.70885224829478,57.868312234710245],[-124.70864649142149,57.868164431456485],[-124.7084366364566,57.868013223347184],[-124.70834335097314,57.86784407962746],[-124.70831160736589,57.8676631958799],[-124.70821418521997,57.8674917687821],[-124.70810197301707,57.86732131961241],[-124.70798761587457,57.86715197112562],[-124.70788172814336,57.866981583225545],[-124.70779703147342,57.866808036318005],[-124.70773774050973,57.86663137138398],[-124.70767423520552,57.86645466551494],[-124.70757041981199,57.86628541917125],[-124.70739655988919,57.86613007288338],[-124.7072247703326,57.8659758680823],[-124.7070487673575,57.865821622123434],[-124.7068748347285,57.8656685176503],[-124.70670308791752,57.865513191037444],[-124.70653770319137,57.86535680448197],[-124.70637017394724,57.86520151846551],[-124.70619413957144,57.86504839270872],[-124.70600534689233,57.86489850739378],[-124.70585062010687,57.86473885893594],[-124.70571080016134,57.86457486899622],[-124.70557948783816,57.864408718532445],[-124.70546304355712,57.86423934787759],[-124.70537196517262,57.86406798081566],[-124.70534234632093,57.86388711756592],[-124.70534663716136,57.86370097641884],[-124.70532326348192,57.863522417170756],[-124.70521080636084,57.86335981471271],[-124.70504739034567,57.863207931990466],[-124.7048543198274,57.8630602467161],[-124.70464420002004,57.86291800307626],[-124.70442561426724,57.86277679824592],[-124.7042091373861,57.86263561360206],[-124.70400327541505,57.86249228885519],[-124.70378040292591,57.862353284382664],[-124.7035553862782,57.8622153802275],[-124.70338136870205,57.86206563537124],[-124.70328390626678,57.86189644805809],[-124.70323533452125,57.86171539988155],[-124.70319733770053,57.86153333322158],[-124.70313171652396,57.86135772677052],[-124.70297896917089,57.86120258091396],[-124.70271760022345,57.86108002310923],[-124.70241878928965,57.86100420599602],[-124.70208522217898,57.86095833180263],[-124.70177786901114,57.860885794637355],[-124.70147063299278,57.8608098931549],[-124.70114530393887,57.86076970490816],[-124.70081108298416,57.860742887998356],[-124.70048368677453,57.860701556353746],[-124.70015414546899,57.86066132451947],[-124.69981111066294,57.86064563477848],[-124.69949003774565,57.86060436247687],[-124.69921756792311,57.86049851291933],[-124.69896276978669,57.860369282420876],[-124.69870551766995,57.86025012166325],[-124.69842556898709,57.86017784476262],[-124.69809297280847,57.86022618284373],[-124.69775498485184,57.86024754935596],[-124.6974332328876,57.8602870193077],[-124.69711105361935,57.8603388217084],[-124.69680273093066,57.860416555482175],[-124.69648694861601,57.8604661759006],[-124.69614965623461,57.860467356698294],[-124.69580830491186,57.86046401051635],[-124.6954824125079,57.860501192038264],[-124.69514676077199,57.86051584538124],[-124.69480919593128,57.86052487119426],[-124.69447346599605,57.86054176524268],[-124.69413968737797,57.86056316393565],[-124.6937934990076,57.86057771044206],[-124.69343447322302,57.86059773788171],[-124.69312612817144,57.86055433199491],[-124.69287915639886,57.86044311186083],[-124.69263885763627,57.860321862597104],[-124.69240726125201,57.86019284735712],[-124.69218007527401,57.86005826715952],[-124.69195511480648,57.85992034371056],[-124.69173234094076,57.85978019822317],[-124.69150956873266,57.85964005238277],[-124.6912825061672,57.85950210712922],[-124.69100545780297,57.85928628040511],[-124.69081941229707,57.859241829358474],[-124.69056812494752,57.859133927206365],[-124.69014952950137,57.859170182973166],[-124.68988189643918,57.85910810345042],[-124.68955690651482,57.85905891734687],[-124.68924089177008,57.858994116721874],[-124.68896182914722,57.858897153636036],[-124.68870239461367,57.85878131654434],[-124.6884559160116,57.85865663402539],[-124.68821365303013,57.858531992622446],[-124.68797143070638,57.85840622959687],[-124.68773350208333,57.858278265323946],[-124.68750201319979,57.85814699942028],[-124.68728121705392,57.858011352310434],[-124.6870732205641,57.85787134484596],[-124.68687388793548,57.857724693096856],[-124.68668520883631,57.857574781496126],[-124.6865114361483,57.85742053050529],[-124.68635678359325,57.85726198180042],[-124.6862551962209,57.85709274123199],[-124.6861939928797,57.85691380526109],[-124.68611792454612,57.856738087199666],[-124.68603549716245,57.85656342788256],[-124.6859424579505,57.85639090686344],[-124.68584520586307,57.85621834417802],[-124.68573094335876,57.85605009968791],[-124.68555499651742,57.85589806925774],[-124.68535778707708,57.855751436352655],[-124.68518832016085,57.85559498318039],[-124.6851311814132,57.85542057341908],[-124.68511856013747,57.85523875269499],[-124.68507418045802,57.85506110435759],[-124.68501080096,57.85488438977012],[-124.6849411017201,57.85470761269405],[-124.68485443155338,57.8545340325385],[-124.68469343839236,57.85437654106389],[-124.68454305863821,57.854216911219034],[-124.68444156593435,57.85404542740836],[-124.68433796742255,57.85387392271053],[-124.68418969790358,57.85371431338763],[-124.68401170064305,57.85356113924542],[-124.68385711362167,57.85340146706794],[-124.68371957735866,57.85323635558218],[-124.68358621649472,57.85307240687522],[-124.68337404764503,57.852932352629004],[-124.6832087757959,57.85277706028389],[-124.68309672054889,57.85260659260002],[-124.68296344301928,57.85244040099545],[-124.68292110504161,57.85226501568563],[-124.68300723277453,57.85209202414787],[-124.68311438674283,57.8519203623652],[-124.68321100667276,57.851748596239176],[-124.68325511740275,57.85157182391105],[-124.68323825409674,57.8513910831959],[-124.68328447086289,57.85121433177945],[-124.68335807264079,57.851037851498255],[-124.68342535404048,57.850861308646046],[-124.68349048907668,57.85068586612569],[-124.68365817816304,57.85053050549413],[-124.68386748739708,57.85039013705508],[-124.68410585570624,57.85026239317241],[-124.68431925736321,57.85012542930779],[-124.68449322092977,57.84997125141822],[-124.68472168539482,57.849764898402334],[-124.6847052927829,57.849510139072244],[-124.68445245116193,57.849388751371144],[-124.68419087201254,57.84927624932417],[-124.68392933359041,57.849162625589784],[-124.68368285535755,57.84904017782097],[-124.68345354379403,57.848908926958245],[-124.68323070990958,57.848773253548984],[-124.68300994487613,57.84863872183048],[-124.6827806772985,57.8485063486766],[-124.6825449352391,57.84837839727909],[-124.6823091947807,57.84825044548036],[-124.68206916466622,57.84812469389753],[-124.68182269926763,57.84800224281075],[-124.68156550732367,57.84788529278326],[-124.68126930317491,57.84779935942466],[-124.68094652841779,57.84775017374238],[-124.68068071908834,57.8476387443759],[-124.68043422211278,57.847517411959444],[-124.6801942421996,57.84739053590392],[-124.67995851590365,57.847262580067174],[-124.67972068485608,57.84713460291665],[-124.67947637920628,57.84701104733576],[-124.67921916200679,57.84689521407059],[-124.67894029339799,57.84679598879586],[-124.67864410379886,57.846710049685896],[-124.67834136060779,57.846630774207284],[-124.67802535136525,57.84656931130532],[-124.67771160685997,57.84650338387734],[-124.67741319798301,57.84642078464931],[-124.67712360928871,57.84632705676936],[-124.67691786070327,57.84618593486764],[-124.67672713332259,57.846037111128915],[-124.6765363680666,57.84588940831902],[-124.67632212020132,57.84575044406507],[-124.6760324605792,57.84565895623188],[-124.6757097503982,57.84560863676812],[-124.67542442411583,57.84551382603883],[-124.67515646179291,57.845404607262196],[-124.67489497748454,57.84529096621065],[-124.67462916395924,57.845180646206785],[-124.67434821389062,57.845081390482974],[-124.67402773550327,57.845027724430444],[-124.6736921737979,57.84504344459257],[-124.67335799345592,57.84501992268287],[-124.67302615667235,57.844989693886355],[-124.67269439941154,57.84495722190761],[-124.672364946472,57.84491916424435],[-124.67203775847865,57.84487664209157],[-124.6717083859555,57.84483634045041],[-124.67137873739793,57.84480388623417],[-124.67104217759956,57.84478818570502],[-124.67070518298598,57.84478481726915],[-124.67036814886846,57.844782569155775],[-124.67003135223644,57.844773593128906],[-124.6696969786524,57.8447556679089],[-124.66936741172077,57.8447209663569],[-124.66903804341439,57.84468065810842],[-124.66871535095244,57.84463032172269],[-124.66840163888101,57.844564372462095],[-124.668096749017,57.8444872950962],[-124.66779837718224,57.84440467446447],[-124.6675000859539,57.844319810819464],[-124.66720390225247,57.84423496762368],[-124.66691209090723,57.8441456813067],[-124.66662465199026,57.8440519518987],[-124.66635020865401,57.84394825805412],[-124.66609090685974,57.84383349981084],[-124.66584022974902,57.84371321973468],[-124.66559603149815,57.84358851791397],[-124.66536033884432,57.843461657873654],[-124.66512472721463,57.84333255508494],[-124.6648912233238,57.84320347304322],[-124.66466201273121,57.84307219056445],[-124.66444786440984,57.842932086407664],[-124.6642164714205,57.84280302438796],[-124.66394212331217,57.84269708336032],[-124.66368061208819,57.84258566291736],[-124.66343638852193,57.842462078445536],[-124.66316637656865,57.842352814679494],[-124.66285925009355,57.84228018899122],[-124.66252033174925,57.84227229395716],[-124.66231672625126,57.84213229240666],[-124.66218143154641,57.841967181738084],[-124.66210335949438,57.841792552606655],[-124.66204642812579,57.84161589304542],[-124.66194296570058,57.84144437308133],[-124.6618161389787,57.841278225762125],[-124.6616659083957,57.841118572188414],[-124.66149231399558,57.84096429110784],[-124.6613047010118,57.84073023716357],[-124.66132314700019,57.840626116845755],[-124.66146795597597,57.840463825525866],[-124.66162321386784,57.8403038824089],[-124.66178053657893,57.840145081502214],[-124.66194203004059,57.839987443991745],[-124.66209935008746,57.839828642758725],[-124.66225666880857,57.83966984136515],[-124.66241605232554,57.83951218216584],[-124.66257547429933,57.83935340163251],[-124.6627348949299,57.83919462093357],[-124.66289010243621,57.83903579771104],[-124.66304324252864,57.83887583198843],[-124.66319220934683,57.83871470259945],[-124.66333489706678,57.838552388386425],[-124.66347341161085,57.83838891054019],[-124.66360985886605,57.83822429024186],[-124.66374209325645,57.83805962749994],[-124.66387019433732,57.8378926799932],[-124.66399408264755,57.8377256900683],[-124.66411169217676,57.83755751541073],[-124.66422091719875,57.83738813487981],[-124.66431762570907,57.83721526385165],[-124.66439963260616,57.83704112353251],[-124.66447325539588,57.83686577741204],[-124.66453428266757,57.836689183199034],[-124.66458271459217,57.83651134091159],[-124.6646164058764,57.83633335057779],[-124.66464592510667,57.83615419680004],[-124.66467754977681,57.835975064199005],[-124.66470285701489,57.83579586817216],[-124.66472816401233,57.83561667217291],[-124.66475974811945,57.835438660814106],[-124.6647955830095,57.83525957061321],[-124.66483348351099,57.835081622747246],[-124.66487142337193,57.834902553738715],[-124.6649072572217,57.8347234636048],[-124.66493883973462,57.83454545236417],[-124.66496625040148,57.834366277692766],[-124.66499366080772,57.83418710304824],[-124.665025282175,57.83400797072071],[-124.66509051343563,57.833831419053155],[-124.66522256712531,57.833671240220696],[-124.665218511193,57.83348838503518],[-124.66523753717905,57.8333080047688],[-124.66523967878454,57.833128576561926],[-124.66522072514717,57.832950058130834],[-124.6651786107293,57.83277130716203],[-124.66510690014229,57.83259562368611],[-124.66500130331623,57.832425207684864],[-124.66486178095163,57.8322611802356],[-124.66464332340907,57.832125520274126],[-124.66445716498339,57.83196999640037],[-124.66463907129425,57.83182938586052],[-124.66492672758557,57.8317358211811],[-124.66519177804362,57.831626327080265],[-124.66543839377448,57.8315020671358],[-124.66569108613692,57.831384597113576],[-124.66598282830076,57.83129443593996],[-124.66629280408257,57.83122464514171],[-124.66659673999405,57.831146942144564],[-124.66688843849924,57.83105790016528],[-124.66715149198765,57.83094501763687],[-124.66738776782194,57.830815042805156],[-124.66771144473091,57.83077454664242],[-124.66800301886234,57.830688865730615],[-124.66827429006396,57.83058167121329],[-124.66853316485292,57.83046762265834],[-124.66883299800541,57.83038650894944],[-124.66911038295379,57.830284981811715],[-124.6693009624308,57.8301366013358],[-124.66946238156966,57.82997895628842],[-124.66959877223253,57.82981433124457],[-124.66972050324934,57.8296473162757],[-124.66991937986353,57.82950238276854],[-124.67008083325727,57.82934361591228],[-124.6702918643536,57.829212262188456],[-124.67059998648111,57.829134592320095],[-124.67089165995972,57.82904554173784],[-124.67119151625029,57.828963301667216],[-124.67149745013326,57.82888785100857],[-124.67180338279165,57.828812399651596],[-124.67210724840072,57.82873580540445],[-124.67241516546186,57.82866373716064],[-124.67272912094462,57.82859957939116],[-124.67304716757566,57.8285388263974],[-124.673363147333,57.828476930474395],[-124.67367515213826,57.8284082648337],[-124.67398906390991,57.82834522526408],[-124.67431497553694,57.82830024949122],[-124.67464871627271,57.828272174280166],[-124.67498381302407,57.828265421246044],[-124.67532073915386,57.82826653646516],[-124.67565754713493,57.82827101430878],[-124.67599646049274,57.82827551227033],[-124.67633724301253,57.828286757292176],[-124.67667210343454,57.82828672696052],[-124.67698955082312,57.82824278195042],[-124.67727126597639,57.82813679527659],[-124.67753438599158,57.8280205290582],[-124.67773934317333,57.82788125272965],[-124.67788192725752,57.82771892468669],[-124.67799741699804,57.82754847619037],[-124.67810658995083,57.82737796480975],[-124.6781866030854,57.82719819098811],[-124.67832481496703,57.827040305344234],[-124.67858149050882,57.826927337855075],[-124.67886938913111,57.826824774201924],[-124.67909507269195,57.826694674475824],[-124.67926064654242,57.82653705992403],[-124.67942621900852,57.82637944519103],[-124.67961463295721,57.82623102959877],[-124.6798031239505,57.826080371444995],[-124.67995816630524,57.82592265156704],[-124.68007149674303,57.825753301826936],[-124.68019316825412,57.82558627795385],[-124.68036079853985,57.82542980427014],[-124.68053883536857,57.82527679836902],[-124.68071683151639,57.825124913410455],[-124.68091147100137,57.8249788011713],[-124.68111651684359,57.824836156591154],[-124.68132366623402,57.824693532601955],[-124.68153077484617,57.82455202946756],[-124.68173994778324,57.82441166806774],[-124.6819491191629,57.824271306358646],[-124.68216039405391,57.82413096521374],[-124.6823716673721,57.82399062375277],[-124.68258289993847,57.82385140313249],[-124.68279623599064,57.823712203059394],[-124.68300746542951,57.823572981803395],[-124.68322079833885,57.82343378108795],[-124.68343412967305,57.82329458004964],[-124.68364745943198,57.82315537868838],[-124.68385868260832,57.823016156157685],[-124.68406990422481,57.82287693331081],[-124.68428116340883,57.822736588991944],[-124.68449242102012,57.82259624435716],[-124.68470363794427,57.82245702056202],[-124.6849148924167,57.82231667529513],[-124.6851219744957,57.82217516690381],[-124.68532698916248,57.82203251623139],[-124.68552783147643,57.82188870246769],[-124.68572247469616,57.82174146250483],[-124.68590253820322,57.821589591960084],[-124.68606591718708,57.82143307008311],[-124.68622305821583,57.8212742432932],[-124.68639060524559,57.82111888383962],[-124.68660176782895,57.82098077838946],[-124.6869316933995,57.82093917708807],[-124.68726719121865,57.82091893928527],[-124.68759298378762,57.820875052450425],[-124.68790688760579,57.82080973818508],[-124.6882086291404,57.820730844660446],[-124.68849610326455,57.82063835118964],[-124.68879990807717,57.82056059826398],[-124.68902150506923,57.820424835197144],[-124.68917862944694,57.820266005074004],[-124.68934409394514,57.82010950013808],[-124.68954908140807,57.819966843249695],[-124.6897644356374,57.81982877444757],[-124.69001288118636,57.81970785461628],[-124.69020122012951,57.8195594250163],[-124.69043726728036,57.81943165302423],[-124.69070219609428,57.81932098827424],[-124.69101405463549,57.81925340372656],[-124.69133401993804,57.81919487059566],[-124.69163979534876,57.81912049548084],[-124.6919536386558,57.81905629292673],[-124.69227149603954,57.81899773683212],[-124.69254464116048,57.81889275707971],[-124.69277034667651,57.81875927171546],[-124.69297527497285,57.81861773088992],[-124.69309273451103,57.81844841269981],[-124.69318922322852,57.81827664514192],[-124.69325846603377,57.81810124501763],[-124.6933004632869,57.81792221237097],[-124.69331720352142,57.81774293138524],[-124.69331921063866,57.81756350555385],[-124.69332121773684,57.81738407975469],[-124.69333795763379,57.81720479886326],[-124.69337991466028,57.81702688750479],[-124.69344708846391,57.81685034565464],[-124.69353519168838,57.81667737419097],[-124.6936275034033,57.81650444408239],[-124.6936845475489,57.816377150097516],[-124.69362921569181,57.81615117795273],[-124.69344921391844,57.815999122717564],[-124.69324360856336,57.81585690924647],[-124.6930444351525,57.81571139412924],[-124.69284732901001,57.815567020589135],[-124.69269500377891,57.815406264371404],[-124.69256812915472,57.815240150760516],[-124.69239452747334,57.81508591406191],[-124.69220385742324,57.814938238343366],[-124.6919597194482,57.81481470971121],[-124.69166811605461,57.8147243592218],[-124.69141532961042,57.814607473617635],[-124.69128211080071,57.814442417880294],[-124.69114885424268,57.81427848318497],[-124.6908896810012,57.81416377673644],[-124.69069687806935,57.81401719940519],[-124.6905976089964,57.81384462685111],[-124.69041759151938,57.813693689009035],[-124.69018398987028,57.81357026098112],[-124.6901439611415,57.81338929987064],[-124.6901059593717,57.81321060182216],[-124.6900024083235,57.81304022976115],[-124.68991581061556,57.81286666021445],[-124.68986724933097,57.81268897958464],[-124.68981658407952,57.81251127821674],[-124.68976171047653,57.81233353535541],[-124.68968988528785,57.812158989908305],[-124.68957153032267,57.81199071470281],[-124.6894341200531,57.81182561603397],[-124.68931362393248,57.81165844104172],[-124.68924394543804,57.81148279508702],[-124.6892459715997,57.811303370444115],[-124.6892900457102,57.81112548219124],[-124.68935512380989,57.810948922694216],[-124.68942647531982,57.81077354661519],[-124.68949993048375,57.81059819128562],[-124.6895922458212,57.810425265034496],[-124.68969921249371,57.81025472631375],[-124.68982079137328,57.810087696229786],[-124.68996119086003,57.809924216240404],[-124.69009114565654,57.8097583901058],[-124.6902001735058,57.80958899298596],[-124.69030923931008,57.809418474662706],[-124.69041409564288,57.80924791479412],[-124.69051267725565,57.80907617150691],[-124.69060077577775,57.80890320333676],[-124.69067422183984,57.80872784768642],[-124.69072459881671,57.80855002163139],[-124.69075186810456,57.808370846340914],[-124.69075809529392,57.80819146370833],[-124.69073907233708,57.80801183226179],[-124.69068626617529,57.80783523246141],[-124.69061238004319,57.8076595464203],[-124.6905405987437,57.807483881109384],[-124.69048993731151,57.807306180924364],[-124.69048354082443,57.80712667404741],[-124.69048135262695,57.806947208685244],[-124.6904791644503,57.80676774335525],[-124.69047697629446,57.80658827805738],[-124.69047268407512,57.80640879205026],[-124.69046207967368,57.806229243850346],[-124.69044516318033,57.806049633456034],[-124.690400855215,57.80587087457884],[-124.69031427213248,57.80569730653748],[-124.6902128837366,57.805525835527675],[-124.69012415935008,57.805353367814675],[-124.69006083971172,57.80517666449961],[-124.69000172867753,57.80500000268358],[-124.68991725342612,57.804826455283504],[-124.68979892045265,57.80465818151516],[-124.68973770748111,57.80448149892098],[-124.6896849498968,57.80430377820924],[-124.68964906341053,57.80412510240879],[-124.68964508626786,57.80387608561584],[-124.68966994256243,57.80376642181843],[-124.68957058831123,57.80359721367522],[-124.68925947974398,57.80352573141973],[-124.68893037193084,57.803487716380786],[-124.68859896596764,57.80345528543387],[-124.68827437917636,57.80340834123168],[-124.68797414515839,57.803326869643904],[-124.68769343268033,57.803228767431314],[-124.68742144937109,57.80312177871698],[-124.68715803926297,57.803010388095274],[-124.6868967736261,57.80289789662752],[-124.68663336663053,57.80278650499042],[-124.68636138951634,57.802679514153],[-124.68608501094482,57.802578086816915],[-124.68580434801243,57.80247885955235],[-124.68552368655654,57.802379631704746],[-124.68524084457063,57.80228262471592],[-124.6849580431253,57.80218449600131],[-124.68467738608544,57.802085266394805],[-124.68440319843377,57.80198161418791],[-124.68413333727541,57.801874639712445],[-124.68386129558951,57.80176988611845],[-124.68358068364527,57.801669533104004],[-124.68328701984692,57.80158138682542],[-124.68297134075432,57.80152105959459],[-124.68264237422925,57.80147966565971],[-124.68232221527137,57.801427143081185],[-124.68202423118979,57.80134231568489],[-124.68174136679927,57.80124642247674],[-124.68146937547395,57.80114054291934],[-124.68121464706705,57.80102249748571],[-124.6810305076751,57.800932069016724],[-124.68092026284432,57.80071452094176],[-124.68088862878582,57.800535885201775],[-124.6808548912854,57.8003572285923],[-124.68082750450571,57.800177513559234],[-124.68078098845511,57.80000321614654],[-124.6806222056094,57.799789671951004],[-124.68054421391466,57.79961281880071],[-124.68048317011876,57.79943276944802],[-124.68048928779402,57.79925787341326],[-124.68061083279736,57.79909197472137],[-124.68076178878778,57.79892748960913],[-124.68082053559537,57.798751994887695],[-124.68082474397913,57.79857147242358],[-124.6808289523226,57.79839094999183],[-124.68081414961982,57.7982124817994],[-124.68074032830272,57.79803679195806],[-124.6806771041016,57.79785896433556],[-124.68055236656639,57.79769510531943],[-124.68032361326436,57.797557129085284],[-124.68015843963789,57.79740632611768],[-124.68010145148558,57.79723080329862],[-124.68008470602402,57.797047829822795],[-124.68007415368734,57.79686828247281],[-124.68008046896861,57.7966877812771],[-124.68008253791166,57.79650835942703],[-124.68004245805402,57.79633076173559],[-124.67996864401188,57.796155071794765],[-124.67994967849036,57.79597544096362],[-124.6799517480163,57.795796019242815],[-124.67991591571345,57.79561734233085],[-124.67986532025257,57.79543964020077],[-124.67980837566601,57.79526299647614],[-124.67975147084587,57.79508523163466],[-124.67968821701591,57.794908525187374],[-124.67964183043217,57.79473086492156],[-124.67966517093699,57.79454492581691],[-124.67956989645853,57.79438135918967],[-124.67938350953861,57.794235952206506],[-124.67917382975448,57.794094799351186],[-124.67895565949388,57.79395580473434],[-124.6787375301027,57.793815688656565],[-124.67853217960987,57.793671213336765],[-124.67835440999954,57.79352028312647],[-124.67819798953703,57.79336059309042],[-124.67806069687505,57.793195485732994],[-124.677929754694,57.793029319960006],[-124.67784738651082,57.792858030139406],[-124.67777358948226,57.792682339585774],[-124.67767864224362,57.79250980294495],[-124.67757944999315,57.79233834549484],[-124.67748660779073,57.792165829721135],[-124.67743178255296,57.791989206499814],[-124.67736854477556,57.79181249949215],[-124.67731165665258,57.79163473421553],[-124.67724417424098,57.791459106430224],[-124.67714708996036,57.791287669787025],[-124.67707119603932,57.79111195816508],[-124.6770079221101,57.79093637225775],[-124.6769362359523,57.79076070252896],[-124.67683284528327,57.79058920290814],[-124.67684961231173,57.790411050013994],[-124.67691260971748,57.790234479304985],[-124.67706338916344,57.79007448431389],[-124.67722670766909,57.789916857117205],[-124.67737335681373,57.789754577689074],[-124.67747611383315,57.789584010428975],[-124.67753700379762,57.78940741862188],[-124.67757904370072,57.789228396078414],[-124.67761894080525,57.78905047372478],[-124.67766514683213,57.788872614222825],[-124.67772186787167,57.78869485945192],[-124.67778906449105,57.788518330514286],[-124.67787927640681,57.78834539526815],[-124.67799484205884,57.7881693479122],[-124.67817021691965,57.78802754109613],[-124.6785101433718,57.7879927934391],[-124.59999871000687,57.74981840667995],[-124.59379971094002,57.74679883702753],[-124.59417371867971,57.74663121426211],[-124.59445266471084,57.74653323678239],[-124.59475199061615,57.746452296945094],[-124.59505946780892,57.746378171707015],[-124.59536690210844,57.74630516680552],[-124.59567429354227,57.746233282240446],[-124.59598370114506,57.74616366129255],[-124.59629718397423,57.7460974472227],[-124.59661054075609,57.74603459554815],[-124.59692801454577,57.74597402966851],[-124.59724742145791,57.745917969425264],[-124.59757271319323,57.74587318549096],[-124.59788614921561,57.7458080887289],[-124.59819554925983,57.74573846265085],[-124.59850498975648,57.74566771481184],[-124.59881447067775,57.745595845211575],[-124.5991218497799,57.74552395270769],[-124.59942931084262,57.745449817407966],[-124.59973471162094,57.74537453817984],[-124.59999352339595,57.7453088598518],[-124.6003372731758,57.745219404783455],[-124.60056895834188,57.7450917575673],[-124.6008090443882,57.744964198603384],[-124.6011163730411,57.744893422565966],[-124.60141567167668,57.744812467822534],[-124.6017310683885,57.74475074732557],[-124.60206712295708,57.74475541123477],[-124.60240207243685,57.744733147093754],[-124.60265017916721,57.744615762779425],[-124.60284264654753,57.74446863342235],[-124.60303099418888,57.744319217469204],[-124.60325657027468,57.74418589407641],[-124.60351916748756,57.74407426826764],[-124.60395890195632,57.744002636938],[-124.60411168708244,57.743905554811256],[-124.60441702463197,57.743831385960306],[-124.60473047332708,57.74376515211233],[-124.60502897944433,57.743648293803005],[-124.60537898344214,57.74367328276083],[-124.60571194496524,57.74364762506557],[-124.6060465929077,57.74363319905487],[-124.60638280349549,57.7436333678486],[-124.60671633468776,57.743649208346085],[-124.60704722823338,57.74367959952382],[-124.60737564981835,57.743720057223776],[-124.607699581784,57.74376831732446],[-124.60801918954789,57.74381989567984],[-124.6083408161415,57.74387373739898],[-124.60866244365182,57.743927578341136],[-124.60898423719904,57.74397693432406],[-124.60930825596279,57.74402294841727],[-124.60963441734351,57.744067862695445],[-124.60996066200218,57.744110534081685],[-124.61028690739782,57.74415320466733],[-124.61061311229841,57.74419699549864],[-124.6109393179552,57.744240785529556],[-124.6112633825756,57.74428567381218],[-124.61158950734547,57.74433170434131],[-124.61189355600843,57.74440666144566],[-124.61221754081612,57.74445378949845],[-124.61255120522063,57.74446625219582],[-124.61288738208464,57.744467525549894],[-124.6132236412809,57.7444665559572],[-124.61355977702543,57.74446894865461],[-124.61389587167767,57.74447246154789],[-124.61423204864218,57.74447373149415],[-124.6145682256293,57.74447500058836],[-124.61490242536135,57.74447288374986],[-124.61523909550334,57.74446069856887],[-124.61557201618132,57.744436137151716],[-124.61590106384959,57.74440256267199],[-124.61622821567332,57.744363360220106],[-124.61655557209696,57.74431855172138],[-124.61687679018144,57.7442691925065],[-124.6171961120302,57.74421420537379],[-124.61751357853598,57.744152469289354],[-124.61782688387636,57.744089567619184],[-124.61814228874293,57.74402668709843],[-124.61845962913026,57.743968311906286],[-124.61878294231306,57.74391896997294],[-124.61910815031499,57.74387525436725],[-124.61943541715388,57.743832680879926],[-124.61975860502122,57.743786699720864],[-124.62007594089528,57.74372832067547],[-124.62038330527335,57.74365525799022],[-124.6206907093949,57.74358107354909],[-124.62100408655277,57.74351592231221],[-124.62132137731456,57.74345866135142],[-124.62164468239835,57.74340931246743],[-124.62196790484931,57.74336220489572],[-124.6222912491477,57.74331173339157],[-124.62261455170733,57.7432623821507],[-124.62293970875855,57.74321977822816],[-124.62326305053976,57.74316930436215],[-124.62358824690442,57.74312557780464],[-124.62391344251635,57.74308185045165],[-124.62424267510646,57.74304265007844],[-124.6245756590659,57.743015823999606],[-124.62487279203238,57.742934794698286],[-124.62516798641057,57.74284925876618],[-124.62547125514976,57.742772777657365],[-124.62578066103973,57.74270084535247],[-124.62598675344988,57.742580740229606],[-124.6262952792402,57.742475153500806],[-124.62645440279046,57.742317552648956],[-124.62656772222496,57.74214826259983],[-124.62666015829899,57.7419753918297],[-124.62673377097238,57.74180008318218],[-124.62680738296268,57.74162477452372],[-124.62689351536537,57.7414518384337],[-124.6269901490886,57.74127901104481],[-124.6270930016853,57.74110849094238],[-124.62718753321509,57.74093564172356],[-124.62726114141587,57.740760332960896],[-124.62732634739997,57.74058493722688],[-124.6274125157864,57.74041087992768],[-124.62752372484542,57.740241567637455],[-124.62764955394947,57.74007464952188],[-124.62778576151861,57.739911203119625],[-124.62805021961435,57.73957189154599],[-124.62811319744436,57.739399837038775],[-124.62848440881152,57.73947657206736],[-124.6287777931809,57.7393820382955],[-124.62861717384104,57.73917627035783],[-124.62853736898016,57.73900161765396],[-124.628472348254,57.738824874894526],[-124.6284767593455,57.738645485837154],[-124.62846020842849,57.73846475854549],[-124.62829138100606,57.73831161436163],[-124.62806507478567,57.73817918318813],[-124.62787290330526,57.738032525769356],[-124.62774661417737,57.737865241997056],[-124.62772578521508,57.737686713372966],[-124.62767127161098,57.73751007911519],[-124.62762099964215,57.73733236729224],[-124.62755174496677,57.737156701941444],[-124.62748463184202,57.736979937278356],[-124.6274069370276,57.73680530600498],[-124.62724030291355,57.736649940382684],[-124.62702895584783,57.73651093358604],[-124.62684321954389,57.73636097701885],[-124.62669149441557,57.73620015779422],[-124.62661376412134,57.73602664723084],[-124.62660768311089,57.735847149966624],[-124.62659740193882,57.735667609230276],[-124.6265639790187,57.73548895029497],[-124.62652215605551,57.73531020437129],[-124.62644871003415,57.73513449528403],[-124.62627994639885,57.73498022799443],[-124.62608141639915,57.73483574524772],[-124.6258999329663,57.734684710082234],[-124.62572487344197,57.73453037686565],[-124.6255709788307,57.734371776960174],[-124.62542350794082,57.73420987909128],[-124.62523140768386,57.734062097371044],[-124.62500723764701,57.73392968329995],[-124.62476170192616,57.733807140416566],[-124.62450114134174,57.73369341291352],[-124.62422979664902,57.73358742323903],[-124.62393894122394,57.7334980524598],[-124.62364158305866,57.733414220848374],[-124.62336806112123,57.73331044971777],[-124.6231375613155,57.73317908821295],[-124.62293481201509,57.7330356784337],[-124.62274482741178,57.73288791508945],[-124.62256122585825,57.73273797486581],[-124.62236914427604,57.73259018921063],[-124.62216211944154,57.73244897676921],[-124.62192306586454,57.73232201012342],[-124.62166676478213,57.73220719982986],[-124.62140836534897,57.73209236721996],[-124.62116499404154,57.731968718692976],[-124.62094731399796,57.73183187939637],[-124.62076590642549,57.73167971660998],[-124.62060570368409,57.7315221668855],[-124.62043702095721,57.73136677166637],[-124.62021078384646,57.73123432798489],[-124.61992650124742,57.73113828795701],[-124.61966811441037,57.73102345207503],[-124.61942903727301,57.730897602143536],[-124.6191985249119,57.73076735513405],[-124.61897871811347,57.730631611930846],[-124.61877809807781,57.73048821802313],[-124.6185839019336,57.73034152636611],[-124.61835767745407,57.730209079654685],[-124.61814215849688,57.73007113683554],[-124.61796072967118,57.72992009150455],[-124.6177878244132,57.72976577041325],[-124.61757235107342,57.72962670569457],[-124.61746717423236,57.729458511410755],[-124.61751354943192,57.729281804330085],[-124.61761019493007,57.729108985819785],[-124.61772141464462,57.728939683608395],[-124.61784099124755,57.72877158992395],[-124.61797720049822,57.72860815539011],[-124.61814049975833,57.72845061041197],[-124.61833076580832,57.72830231798098],[-124.61854375811518,57.72816435525039],[-124.61876506564434,57.72802872176069],[-124.61896566161734,57.72788502198037],[-124.61914138777396,57.7277320912368],[-124.61930673709625,57.72757568785645],[-124.61946376836339,57.72741695477479],[-124.61958749072855,57.72725002452255],[-124.61965694921527,57.727073557555094],[-124.61968865486647,57.72689557606173],[-124.6196973464134,57.72671511206602],[-124.61969129974614,57.72653561610643],[-124.61967895437137,57.72635605459515],[-124.61967458653456,57.726130596489746],[-124.61961227260697,57.72599649442932],[-124.61971902942659,57.72583387350309],[-124.62002003218302,57.72575850529012],[-124.62034125171068,57.72570465445932],[-124.62063628086742,57.72562025107255],[-124.62090693231106,57.72551316435738],[-124.62117346494485,57.72540379136822],[-124.62146037799548,57.72531145161982],[-124.62176964858757,57.72523952989042],[-124.62208674390466,57.725183389144],[-124.62239395359813,57.7251103231154],[-124.62268102485211,57.7250134966355],[-124.62285869959113,57.72486394629083],[-124.62307573247278,57.72472938344754],[-124.62335452360661,57.72462910522972],[-124.6236476014457,57.72454018931187],[-124.62393857842098,57.72445125096032],[-124.62421942388718,57.72435211377302],[-124.62446951015295,57.72423247070866],[-124.6246742224311,57.72408992741911],[-124.62482285963958,57.723929980370215],[-124.62495906204069,57.72376541840242],[-124.62511189564526,57.723605514634244],[-124.62527098547183,57.723446797059964],[-124.62543834933894,57.72329152948258],[-124.62560991065692,57.723136305251145],[-124.62582087015592,57.72299494667086],[-124.62612377454562,57.72292407068282],[-124.62642894015566,57.72284873164994],[-124.62666044082503,57.722719920616946],[-124.6268568612999,57.72257392408101],[-124.62705949693976,57.72243023456223],[-124.6272827582825,57.722296851408245],[-124.62752260939716,57.722169246927564],[-124.62765657224324,57.7220080238141],[-124.62775525211595,57.721835220861905],[-124.62795779899507,57.72169377212694],[-124.62813136066656,57.72154080865606],[-124.62826544074014,57.72137622194461],[-124.62839951964621,57.721211635123666],[-124.62854191322894,57.7210493771288],[-124.62868850416886,57.72088716244286],[-124.62884546825792,57.720728419278224],[-124.62903561278735,57.72058123362179],[-124.62925683827838,57.720445583616645],[-124.62948423801737,57.72031336145544],[-124.62974453333084,57.72020054359146],[-124.63003340394121,57.72011044950929],[-124.63033458428477,57.72002833214134],[-124.6306315648426,57.71994617072079],[-124.63092862531553,57.7198617665893],[-124.6312276619095,57.71978074655532],[-124.63152871527713,57.719701989578446],[-124.63181358226672,57.719606243184174],[-124.63208819514634,57.71950366170906],[-124.63245090198917,57.71934591640373],[-124.63263543888615,57.71929511234885],[-124.6329080291647,57.71919026549884],[-124.63318061793123,57.71908541809892],[-124.6334552638453,57.718981712817516],[-124.63373196691487,57.718879149641715],[-124.63400858746203,57.71877882795029],[-124.63430155438515,57.71869101001045],[-124.63460666952689,57.7186156524622],[-124.6348995933124,57.71852895424049],[-124.63515990065484,57.7184150049122],[-124.63545282161695,57.7183283054847],[-124.63574170477587,57.718237078101104],[-124.63602449136553,57.718140180161335],[-124.6363031995582,57.718039875355124],[-124.63657577061397,57.717935021090014],[-124.6368030892273,57.717803907721006],[-124.63697042117178,57.71764750540811],[-124.63716879375308,57.717503757948414],[-124.63738585467178,57.71736580956315],[-124.6375801068186,57.71721977631576],[-124.63773701834637,57.717061023186325],[-124.63787104071477,57.716896427472925],[-124.6379946473746,57.71672948174722],[-124.63811619427409,57.71656139333963],[-124.63823769971029,57.716394425872394],[-124.63835298772143,57.71622515157692],[-124.63847449103129,57.71605818394675],[-124.63862933533454,57.71589828735158],[-124.63880908388994,57.715746496464455],[-124.63897841671248,57.715592355532706],[-124.63918302750423,57.71544979103249],[-124.63942477296361,57.71532555048621],[-124.6396891618976,57.71521387775948],[-124.6399820476724,57.715127168591344],[-124.64029115939502,57.71505632539128],[-124.64056979322334,57.71495713293644],[-124.6408156885924,57.71483405399577],[-124.64107591236868,57.714721214480186],[-124.64135660032957,57.714623162948754],[-124.64165759152849,57.71454438336178],[-124.64196867347856,57.714476920872755],[-124.64228572904894,57.71441849035559],[-124.64260879868992,57.714367970742245],[-124.64293957910448,57.71433659371794],[-124.64327367175329,57.71432992136812],[-124.64360946100742,57.714334479897836],[-124.64394755033267,57.71433345393302],[-124.64427029541503,57.71429189846637],[-124.64458342936258,57.71422557235237],[-124.6448985004063,57.714163751060966],[-124.64520157948924,57.71408498492247],[-124.64545770768717,57.71396873090054],[-124.64561243357865,57.71381106851853],[-124.64571516762832,57.71363941749346],[-124.64587824649942,57.71348296166807],[-124.64610344735165,57.71335069044446],[-124.64637591728558,57.71324693752643],[-124.64666275678043,57.71315230228225],[-124.64693118650491,57.71304402128166],[-124.64728339550132,57.71288276616255],[-124.6474331228569,57.71280579408164],[-124.64770974281014,57.71270320234172],[-124.64801474281681,57.71262893539183],[-124.64832971478698,57.71256934808604],[-124.6486488433668,57.712510923862624],[-124.64896785077974,57.71245586194493],[-124.64928483853474,57.712398535823226],[-124.64960194545246,57.712337845875595],[-124.64991699256021,57.71227601276735],[-124.6502260223346,57.71220626761738],[-124.6505209194479,57.71212067781468],[-124.6508016036146,57.712021485504906],[-124.65106791465412,57.711913174876635],[-124.65131989248717,57.71179462499582],[-124.65154510423065,57.71166122371826],[-124.65176619677099,57.711525537323276],[-124.65202434625627,57.71141041327476],[-124.65231103780218,57.71131912904421],[-124.6526100009591,57.71123694042398],[-124.65290896281637,57.71115475113589],[-124.65321196116,57.71107708793275],[-124.65348443512931,57.71097219960595],[-124.65366817836441,57.710823795012246],[-124.65382087815905,57.71066273913467],[-124.65401918994294,57.71051784640628],[-124.65426699168171,57.71039812742515],[-124.65452722457206,57.71028301993942],[-124.65484453499118,57.710097841425856],[-124.65488170369738,57.70999729023251],[-124.65489655935683,57.70981576978044],[-124.65490084171113,57.70963638488919],[-124.65490936124593,57.7094559216121],[-124.65498080062379,57.70927721844995],[-124.65524042556576,57.70917892501567],[-124.6555696493643,57.709130680003206],[-124.65588260119505,57.7090676905914],[-124.65618957478567,57.70899566842089],[-124.65651249984947,57.70894735722725],[-124.65684124213243,57.70891256133094],[-124.65716626429246,57.70886426982014],[-124.65744266978399,57.70876614224529],[-124.65764717402216,57.70862355018428],[-124.65782059538962,57.708469428762385],[-124.65797738563047,57.7083106530173],[-124.65811960371119,57.70814836528364],[-124.65825350577009,57.70798375038096],[-124.65838119047217,57.70781682958325],[-124.65850257833144,57.70764984495205],[-124.65862400488737,57.70748173921525],[-124.65874748915222,57.707314775657395],[-124.65887303110992,57.70714895427184],[-124.65900486757208,57.706983196507366],[-124.65915123355127,57.70682207136969],[-124.65931636569829,57.7066645002538],[-124.6594876330279,57.706511476727925],[-124.65957828167792,57.70638230878133],[-124.65956828912361,57.70619044450922],[-124.65964699863902,57.70622039770389],[-124.65964152063997,57.70601960776341],[-124.65949791690352,57.705688457048794],[-124.65936792369025,57.705447157669965],[-124.65924461798637,57.704958091845704],[-124.65922958912657,57.704553106933375],[-124.65908659083888,57.704205140972064],[-124.65893380159586,57.70395576078556],[-124.6587029379148,57.7037179257202],[-124.65859033975171,57.70345998072102],[-124.65829711839271,57.70326412759171],[-124.65796363420489,57.703079080188104],[-124.65754930331748,57.702924612538226],[-124.65733542881085,57.70274077542379],[-124.65716257826347,57.702524832628086],[-124.65684534300428,57.702119027644585],[-124.65689384973311,57.701876171612525],[-124.6569361009401,57.70163213079368],[-124.656969879085,57.70139024696724],[-124.65699518433608,57.70115052013794],[-124.6570056824574,57.7009140075152],[-124.65700129411012,57.70068295112682],[-124.65697568523916,57.7004584081715],[-124.65692877658664,57.70024262065844],[-124.65685641200082,57.70003442500361],[-124.65684465919605,57.700010756108824],[-124.65675847241064,57.69983718419793],[-124.65662652580347,57.6996519340895],[-124.65646263084646,57.69947981686008],[-124.65624770567605,57.699326245912566],[-124.65597319883892,57.69919561989358],[-124.655651858416,57.69908358212466],[-124.65528594187408,57.69898566951147],[-124.65488811739702,57.698899767476746],[-124.65446689679177,57.69882259793675],[-124.65402663564441,57.69874971925786],[-124.653580002162,57.69867901717097],[-124.65313131220428,57.6986071712426],[-124.65269121587833,57.6985298041018],[-124.65226612734025,57.69844361684016],[-124.65186661696397,57.69834647433934],[-124.65150123696289,57.6982339782238],[-124.65117430349272,57.69810280847762],[-124.65087948256075,57.697954022302405],[-124.65059983005273,57.69779193298841],[-124.65033534606869,57.697616540638],[-124.6500880086434,57.697431229750705],[-124.64985567971236,57.69723710005295],[-124.64963827915899,57.69703639364299],[-124.64944000279195,57.6968291533762],[-124.64925657442089,57.69661757857172],[-124.64909210966573,57.69640395409585],[-124.64894447025766,57.69618937962962],[-124.64881567374557,57.695976118640395],[-124.64870575984764,57.695763050176815],[-124.6486127505066,57.6955467898677],[-124.6485366054012,57.69532845875571],[-124.64847526643794,57.6951069144621],[-124.64842445754114,57.694884356208384],[-124.64838425864637,57.69465854199886],[-124.64835249162255,57.69443169244698],[-124.64832496068017,57.69420376474632],[-124.64830162568465,57.69397587990361],[-124.64828042882597,57.693746895510564],[-124.6482591921627,57.693519032167195],[-124.6482337602162,57.6932911260539],[-124.64820199524311,57.693064276762215],[-124.6481659950991,57.692838505695995],[-124.64811946666119,57.69261374862176],[-124.64806023226204,57.692392226120155],[-124.64798833217745,57.69217281717083],[-124.64790162885039,57.6919566213397],[-124.64779592714555,57.691743595765764],[-124.64767122735734,57.69153374040158],[-124.64752539202966,57.691328154772876],[-124.6473605591921,57.69112573922889],[-124.64717886683633,57.6909253941219],[-124.64698233263499,57.690729382808364],[-124.64677317467334,57.69053436365288],[-124.64655341051844,57.690342600027876],[-124.64632521809916,57.69015187131948],[-124.646090695108,57.68996219892549],[-124.64585197932219,57.689772483259205],[-124.64560899053454,57.689584966294035],[-124.6453681418501,57.68939634937214],[-124.64512939310848,57.689207753503624],[-124.64489274427793,57.68901917869954],[-124.64466243052975,57.68882954690353],[-124.64444268697596,57.688637780088634],[-124.64422931849603,57.68844383536565],[-124.64402240539097,57.688245470774746],[-124.64381976978191,57.68804490686227],[-124.64361927397877,57.687843243163705],[-124.64342305561657,57.68763938017823],[-124.6432247419268,57.687435495454366],[-124.643028527805,57.68723163196361],[-124.64282808074402,57.68702884622917],[-124.64262545798181,57.68682828072218],[-124.64241856212037,57.68662991393111],[-124.64220315818586,57.686434823821784],[-124.64198130338976,57.686244152850925],[-124.641750900387,57.686057879473346],[-124.64151190897053,57.68587712463459],[-124.64125799686404,57.68570294472313],[-124.64099335881218,57.68553538269489],[-124.64071375988975,57.685375516420486],[-124.64041915983115,57.68522446679359],[-124.64011609230039,57.6850755723706],[-124.63980451704313,57.68492995408362],[-124.6394844340766,57.68478761187148],[-124.63915802134179,57.684646325241026],[-124.63882515788889,57.684509457116626],[-124.63848596469437,57.68437364447725],[-124.63814032074467,57.684242250243784],[-124.63774244803447,57.684163023878774],[-124.63717929781292,57.68407088147878],[-124.63685817890948,57.684015991796464],[-124.63616472107603,57.68393035349832],[-124.63568304706685,57.683848015005154],[-124.6349908082889,57.6837287409116],[-124.63450708263183,57.68364525555132],[-124.63381662466263,57.683534964874156],[-124.63313838081208,57.68349320238621],[-124.6325914217517,57.6834180285262],[-124.63213903165857,57.68339653533485],[-124.6316222772513,57.68335643302161],[-124.6310074705331,57.68335904990796],[-124.63037746868476,57.68331777193473],[-124.62976363686782,57.68329347936704],[-124.6291976759751,57.68327977215461],[-124.62843419676707,57.68333242272924],[-124.62775315709995,57.68336798071179],[-124.62715577839758,57.683352817799964],[-124.6263611216341,57.68339728339856],[-124.62570901245516,57.68350265829011],[-124.62462933900865,57.68330753824631],[-124.62373400244752,57.683178245509126],[-124.62192621762202,57.68298674817571],[-124.62109957357534,57.68287273064474],[-124.62021677287954,57.68280297915789],[-124.61958917553139,57.6827538248596],[-124.61898444405415,57.682710513085645],[-124.61840870584467,57.68267759371842],[-124.61799481862879,57.68263626838546],[-124.61760684378199,57.68263221877622],[-124.61734107785851,57.682613744369256],[-124.61697448467157,57.68259870205735],[-124.61661628040751,57.68258374636543],[-124.61638402882133,57.68256674155282],[-124.61312019837705,57.68255054163684],[-124.6127037288506,57.68257982154726],[-124.61228734091017,57.68260685818815],[-124.61187095237473,57.682633893520645],[-124.6114546043843,57.68265980656459],[-124.61103825582366,57.68268571830024],[-124.6106219066928,57.68271162872773],[-124.61020551581473,57.682738658826835],[-124.60978908315234,57.682766808597094],[-124.60937470583399,57.68279610006175],[-124.60896024544601,57.68282763218965],[-124.60854570191458,57.6828614049804],[-124.60813107516579,57.68289741843341],[-124.6077185035489,57.682934573618404],[-124.60731896082606,57.683016721078694],[-124.60690741113622,57.683083041258435],[-124.60662876694364,57.68312945182832],[-124.60644149839447,57.683144302446934],[-124.60575652668443,57.68322904832385],[-124.6053063236849,57.6832624356145],[-124.60485591321014,57.68330142626973],[-124.60446632039609,57.68334105633595],[-124.60395426221686,57.68340182256076],[-124.60367623262401,57.68343141225326],[-124.60319357414433,57.68349136414888],[-124.60278489582424,57.68353639507724],[-124.60242424520128,57.68358753871245],[-124.60197382788733,57.6836265195782],[-124.60148088535392,57.683680749649454],[-124.60112274327736,57.68372070211415],[-124.60070189132882,57.683754383919904],[-124.60033363489161,57.68378413464839],[-124.59999745833035,57.68379740226665],[-124.59989239014294,57.68380189852793],[-124.5991142818093,57.68379479089507],[-124.59793114215425,57.68373404865734],[-124.59693287013424,57.68372347558313],[-124.5961380278955,57.68371505172552],[-124.59499270259117,57.68370963350681],[-124.59386036338917,57.683637058185845],[-124.5937603226292,57.6836191746061],[-124.59097560177018,57.68301652905516],[-124.54133585705551,57.67226170269077],[-124.5402247116972,57.67230328338504],[-124.53917918619591,57.6722749292034],[-124.53827322112285,57.67227165767394],[-124.5372781448383,57.672240481207325],[-124.53636006280283,57.67217089865787],[-124.53553949444199,57.672020524470106],[-124.53450761414508,57.672019198421445],[-124.53324696345938,57.672075886827066],[-124.53226803496258,57.671682631130984],[-124.5315565981625,57.67153119908192],[-124.53071871753767,57.67134135282018],[-124.5299926550123,57.67113480010478],[-124.52917225971733,57.67092719529984],[-124.52843699965861,57.670741838844194],[-124.52774021729134,57.67043018512549],[-124.5273451935682,57.670017592472036],[-124.52661226423285,57.66950367418474],[-124.52625735637484,57.669138624730124],[-124.52595717763259,57.66871474834326],[-124.52541702150165,57.668152506033536],[-124.52490133564099,57.667769962068654],[-124.52409549836631,57.66751426636614],[-124.52335451885543,57.66737031016512],[-124.52265253855921,57.667301920430184],[-124.52207392379829,57.667350411076264],[-124.52179010239999,57.667314720537554],[-124.521549131547,57.66720212974591],[-124.52090809997546,57.66659388517133],[-124.51986397137316,57.665354255269605],[-124.51943657542232,57.66507584811544],[-124.51805258890512,57.664699261742406],[-124.51199508687674,57.66457186532541],[-124.51107682016973,57.664566024484294],[-124.5101586419855,57.66455793541689],[-124.50924042004702,57.66455096090904],[-124.5083946741398,57.66467376075229],[-124.50754532393042,57.66483464311325],[-124.50671881154007,57.66489484940468],[-124.50609438092063,57.66498873150743],[-124.50536178987637,57.6650600822689],[-124.50471943285054,57.665182912652135],[-124.50340087601369,57.665329495929875],[-124.50246075571854,57.66539848411048],[-124.50180147044969,57.66547176615464],[-124.50116189128434,57.66552396094877],[-124.50008966044265,57.6655925577748],[-124.49822982941511,57.664633954230155],[-124.49731245793281,57.66465830665148],[-124.49639499621574,57.6646848945637],[-124.49547954019579,57.66471374179139],[-124.49456189752173,57.66474480069485],[-124.49364403029766,57.6647814578533],[-124.4927101495068,57.6648515692413],[-124.49176056523838,57.66494728806886],[-124.49069560997916,57.664938512881285],[-124.48943830581683,57.66491519830771],[-124.48855099108212,57.66486918293252],[-124.4874813720659,57.6647672496737],[-124.4864452961918,57.664665691296015],[-124.48576136737223,57.66456815395486],[-124.48498257321226,57.664325983764634],[-124.4841203060287,57.664073881476554],[-124.48329769525076,57.663669713039525],[-124.48264781501497,57.663141919337974],[-124.48232341642068,57.66244627609018],[-124.48188255688312,57.662145161923064],[-124.4806772417834,57.6616648151348],[-124.47987004685261,57.661296688076895],[-124.4790464609129,57.66091939622234],[-124.47835342144901,57.660633314745766],[-124.47796003043037,57.660404504800574],[-124.47756339843882,57.660256399452884],[-124.4773147836295,57.66018176761932],[-124.47703227579014,57.66011571673536],[-124.47675482051052,57.65992412308382],[-124.47622530945118,57.65969149826893],[-124.4751683501499,57.65933168050848],[-124.47457560456785,57.659055706020375],[-124.47350786218132,57.65849613581866],[-124.47256306069822,57.658216090827786],[-124.4718136691978,57.658081838874985],[-124.47068985673351,57.658029606443186],[-124.46961399940335,57.65808781932967],[-124.46905467719019,57.65766081300041],[-124.46889268239237,57.657259709249814],[-124.4687302680662,57.6570245723291],[-124.46849501699386,57.65682784237783],[-124.46772413159754,57.65650043209487],[-124.46680090094975,57.65605238059444],[-124.4655478242631,57.655621805322404],[-124.46463369125483,57.655519244651224],[-124.46368576459632,57.655474599691885],[-124.46292702994842,57.65536598121829],[-124.4619434802766,57.65506298070865],[-124.4614224191965,57.65483263697537],[-124.46084569817002,57.65447604347783],[-124.46037047794844,57.65430454317324],[-124.4598016947152,57.65411400922563],[-124.45939557852742,57.65415077445459],[-124.45899352191854,57.65408777834128],[-124.45863957502404,57.653975998438234],[-124.45828608255401,57.65390459439574],[-124.45800798263616,57.65383518943171],[-124.4578525983701,57.653841228602865],[-124.45768378351498,57.65376524655697],[-124.45743953801224,57.65363679912238],[-124.45727109027597,57.653551849374125],[-124.45707298728055,57.65347440363353],[-124.4569059115771,57.65335582647834],[-124.45658446013518,57.65321862704296],[-124.45634118157204,57.65306663878875],[-124.45600812920995,57.6528541667214],[-124.45571775062122,57.65272629918645],[-124.4553570235156,57.65242154515081],[-124.45497848725803,57.652142375100766],[-124.45453850495048,57.65187930774274],[-124.45402233816904,57.651531241510334],[-124.45355602127457,57.65114338443432],[-124.45311775475986,57.65083883949743],[-124.45262965477586,57.650574081787376],[-124.45229627863212,57.65037056802609],[-124.45201615034199,57.64999273343257],[-124.45171280346808,57.64977274811228],[-124.45131626154811,57.64957634270037],[-124.45106770473443,57.6494007329567],[-124.45064120956492,57.64916808910507],[-124.45030868219442,57.648944394555414],[-124.44996852757231,57.64865108123551],[-124.44983559995066,57.648416266685516],[-124.44969505920147,57.64806024858257],[-124.4495289483763,57.64791924491247],[-124.44932468377571,57.64773742244339],[-124.4491901637777,57.64723456751306],[-124.44922105925833,57.64704316559978],[-124.44923204298694,57.64687732313735],[-124.44946811690988,57.64669169043669],[-124.44971243108762,57.64650951821568],[-124.44994640531564,57.64632386017505],[-124.4501783280853,57.64613705632132],[-124.45043711700268,57.64595953821146],[-124.45069171345732,57.645781970554886],[-124.45095250085171,57.645606717807304],[-124.45121333167454,57.64543034368629],[-124.45148650083917,57.645259720655595],[-124.45176786416606,57.645093678712215],[-124.45206142832973,57.6449367503798],[-124.45336104217317,57.64385632053439],[-124.4537039983171,57.64372127340948],[-124.45405105030261,57.64358851615057],[-124.45440228963977,57.64345580695035],[-124.4547535265157,57.643323096834266],[-124.45509647286696,57.64318804616716],[-124.45543326930311,57.64304955858744],[-124.45575562775771,57.64290529455046],[-124.4560594499295,57.64275296349004],[-124.45634259531572,57.64259366197895],[-124.45659896222595,57.64242283328146],[-124.45684517238702,57.64224403572018],[-124.4570937490231,57.64205853684441],[-124.45733840754897,57.64186626335541],[-124.45757696179982,57.64166943262528],[-124.45780522221581,57.64146799584513],[-124.45802318887786,57.64126195307087],[-124.45822662672217,57.641052376410826],[-124.45841334993641,57.640841483292924],[-124.45857712018272,57.640628079673334],[-124.4587178922028,57.640413286524094],[-124.45883143133263,57.64019817599273],[-124.45891559772295,57.639983844630024],[-124.45896624810047,57.63976912279907],[-124.4589811515396,57.63955734878879],[-124.45897305907074,57.639344185495055],[-124.45895039531175,57.63912860964697],[-124.45891311490962,57.63891174212241],[-124.4588612181192,57.63869358290971],[-124.45879679981785,57.63847415639903],[-124.45871986022964,57.638253462572926],[-124.45863035396772,57.63803262229327],[-124.45853037583562,57.637811659945235],[-124.45842206620702,57.63758947903531],[-124.4583032394365,57.637368296893804],[-124.45819745863258,57.636878127492636],[-124.45813700387565,57.63671593923107],[-124.45803743390076,57.636588058756715],[-124.45796851552896,57.63637642960365],[-124.45789036682014,57.63603124471153],[-124.4578327896958,57.63579844097418],[-124.4577761668447,57.63559368368714],[-124.45765311557105,57.635373573407826],[-124.45757323744445,57.63507098207169],[-124.45756496114792,57.63496547285003],[-124.45755155794748,57.634677113777954],[-124.45750828574481,57.634401863354746],[-124.45754952464914,57.63405807117142],[-124.45749231258347,57.63386788551171],[-124.45767823357728,57.63362446495647],[-124.45761305490133,57.633424093828694],[-124.45767390663775,57.63316463640465],[-124.45734236696224,57.63271332711124],[-124.45724629593519,57.63234550561897],[-124.45708892255632,57.63219676509786],[-124.45660043395772,57.631638210561135],[-124.45632621364874,57.63137484318216],[-124.45615042506,57.6311126244038],[-124.45607955272182,57.63069239044108],[-124.45594283463305,57.63039698541267],[-124.45593401375551,57.62999654003414],[-124.4560307458575,57.629730774626466],[-124.45561896401736,57.62919329808854],[-124.45521982492211,57.62880847930443],[-124.4550738671694,57.62858585717763],[-124.45458345229989,57.628281832738296],[-124.45448633985646,57.62809454442096],[-124.45433518722243,57.62769131457763],[-124.45386467252585,57.6272080953437],[-124.45325613812355,57.62656514208147],[-124.4524217072443,57.626119152401785],[-124.45216175543949,57.625867157970504],[-124.45182830432353,57.62556832493894],[-124.45148951967748,57.62514383142464],[-124.4512097966164,57.62465835177824],[-124.45095757537635,57.62416646546073],[-124.45080183007636,57.623774392643355],[-124.45072291357084,57.623245287585114],[-124.45073789966361,57.62287876485779],[-124.45072195483118,57.622602713305504],[-124.4506080468711,57.62221225236547],[-124.45051871743088,57.62198916816592],[-124.45024939176021,57.6215576365522],[-124.45005243321663,57.6211493808901],[-124.44988608914319,57.620658500428334],[-124.44964130553751,57.62039546553269],[-124.44953186383997,57.61989628094684],[-124.44963581464422,57.619454547602736],[-124.44961774347497,57.61887233014419],[-124.44974390811436,57.61855308998341],[-124.45006601874499,57.61830791665222],[-124.45060572704362,57.618170704347264],[-124.45104237859005,57.618095080646455],[-124.45210195045094,57.61794713149879],[-124.45234128467197,57.61777948144766],[-124.45263986400421,57.61744319380231],[-124.45273380728756,57.61719422228373],[-124.452926872467,57.61692846850052],[-124.45315771889554,57.61660932970479],[-124.4533208410456,57.616307340586374],[-124.45340205527917,57.61595953739155],[-124.45350440569176,57.61550432783136],[-124.45342180950662,57.61506489701234],[-124.45322560440137,57.61453554701691],[-124.45302725451825,57.61405887722276],[-124.45288192693965,57.613566007009226],[-124.45283173551798,57.61315386911952],[-124.45284084069301,57.612930818984495],[-124.45273854980731,57.612512464512825],[-124.45267304516398,57.61221901497774],[-124.45236343335536,57.61185206002051],[-124.451871868592,57.61127439503394],[-124.45135537675706,57.61089716486848],[-124.45131269909581,57.61071163569221],[-124.45138214525142,57.61049826416793],[-124.45153497314683,57.610191672933865],[-124.45151004125168,57.60982805119351],[-124.45144366171878,57.60945385147412],[-124.4514558421597,57.609155705213034],[-124.45146199916888,57.608748713964076],[-124.45155864331272,57.60838203153621],[-124.45150724272551,57.608153787970366],[-124.45140474248416,57.607946252027645],[-124.45138841390124,57.60757712486373],[-124.45125858448364,57.60732104910346],[-124.45110399479904,57.60710729570601],[-124.45102977820254,57.60697634525066],[-124.45092383089032,57.6067508265372],[-124.451181775101,57.60633108775355],[-124.45128209771713,57.60597678471482],[-124.45143294719934,57.60551317823636],[-124.45136973538575,57.6050616415748],[-124.45122157423435,57.60448575747504],[-124.45103156741108,57.604063012294475],[-124.45063576509527,57.60375784217601],[-124.45055861472788,57.60293047964519],[-124.45056381836494,57.60254702847924],[-124.45005242272029,57.60184353286302],[-124.44938857560423,57.60138719293011],[-124.44877818742665,57.60095502619898],[-124.44823024975776,57.600583023141695],[-124.44759882375732,57.60040964249917],[-124.44711914603774,57.600262712539674],[-124.44650996139843,57.60000660593148],[-124.4464255932246,57.59997085127883],[-124.44564366196482,57.599690281927984],[-124.4445745704695,57.599418663131075],[-124.44315355063391,57.59915298200124],[-124.44190776143144,57.59890280834633],[-124.44089344366488,57.598878508831966],[-124.43972924037588,57.598782906154455],[-124.43902506579606,57.59875104029516],[-124.43827501273651,57.598765726427004],[-124.43770169169846,57.59875894901427],[-124.43782674198987,57.598162731589966],[-124.43803049803338,57.59753604622209],[-124.43799874885427,57.59723962671036],[-124.43829914470156,57.5964010220668],[-124.4384255305398,57.59597527078173],[-124.43850956110123,57.59556135416499],[-124.43856960623128,57.595170703132744],[-124.43861020508977,57.5947439383659],[-124.4390136439713,57.59302851541859],[-124.43854693998705,57.59216290619816],[-124.43780143897337,57.591867021201125],[-124.43705344181986,57.59158119477457],[-124.43630317907277,57.59129982273411],[-124.43553177642289,57.59102380290095],[-124.43474318663012,57.590758788601704],[-124.43393708536647,57.59051262529685],[-124.43311528585288,57.590292062413035],[-124.43227541676094,57.590103799761245],[-124.43141924361824,57.58995570758527],[-124.43053630431585,57.58984766128767],[-124.42963315049391,57.58977300998413],[-124.428716380686,57.58972398214068],[-124.4277904556983,57.58969390233031],[-124.42669940914973,57.58986033308327],[-124.42570137472417,57.590004314522275],[-124.42489257802615,57.59022791995674],[-124.42389080473619,57.590411091590944],[-124.42309640467512,57.590590002991675],[-124.42244503693091,57.59080201641095],[-124.42167194696603,57.59107200563582],[-124.42078932401347,57.591308161246644],[-124.42029851061454,57.591483956741676],[-124.41916266716864,57.59071456016077],[-124.4183204271397,57.590383764474225],[-124.41698649396443,57.59009977714363],[-124.4159915801723,57.589917401673226],[-124.41503709390541,57.58966934227335],[-124.41420638637585,57.58936445006622],[-124.41292013615669,57.588792798965784],[-124.41240857240186,57.588164286416706],[-124.41211056746032,57.58743405113783],[-124.41189136219943,57.58682138622663],[-124.41179556651312,57.58646027223737],[-124.4117160573281,57.586060105906235],[-124.41159713662452,57.58565161609307],[-124.41128930790026,57.58515675109029],[-124.41115671804458,57.58477500974287],[-124.41117391598576,57.584664200389994],[-124.41116521631685,57.58457214292315],[-124.41111468454831,57.58447958226531],[-124.41105447189065,57.58441830365512],[-124.41081640116556,57.58430666609473],[-124.4104594399615,57.584185747772786],[-124.41010248103309,57.58406482849959],[-124.40974561836572,57.583941666655484],[-124.40939294115448,57.58381855423621],[-124.4090403132456,57.583694320079736],[-124.40868977920165,57.583570110194756],[-124.40834352461665,57.58344370818422],[-124.40799731938266,57.58331618447202],[-124.40765320800989,57.58318868508236],[-124.40736460812255,57.58303494113648],[-124.40716801674748,57.582832965642226],[-124.40695218028196,57.58264085012746],[-124.40671724009101,57.58245523207054],[-124.40646519364178,57.58227837821416],[-124.40614267094242,57.582135436049924],[-124.40581364074208,57.58199802141731],[-124.40548038289134,57.58186167629],[-124.40514712743607,57.581725330338806],[-124.40493738145489,57.58163757294442],[-124.40409603696953,57.58059686606645]]]}' - )), 4326)))); - - INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Skeena','6','6- Skeena','AR10100000','WHSE Admin Boundary',2 - , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-128.2032425349904,53.05360130994405],[-128.20294537780728,53.053621429669285],[-128.20264903052092,53.05363929150601],[-128.202350869675,53.05364037127795],[-128.2020529850639,53.05364648520514],[-128.20175450811115,53.05365934445723],[-128.2014640131082,53.0537000703549],[-128.20119407055049,53.053776293518496],[-128.2009251691945,53.05385472967907],[-128.2006521538217,53.053925959832966],[-128.20038325098076,53.05400440371203],[-128.20011927041435,53.05408779526158],[-128.2000007749107,53.05412811826855],[-128.19986025626577,53.054176698678525],[-128.199601269828,53.054266157006374],[-128.19934032758027,53.05435397415573],[-128.1990823096302,53.05444397823747],[-128.19883315288496,53.054542784720255],[-128.19858497948263,53.05464269334127],[-128.19839048470783,53.05476794982015],[-128.1982425148553,53.05492540472543],[-128.19801174408332,53.05503619802224],[-128.19773167776304,53.05509801939751],[-128.19743920054844,53.05513653896485],[-128.1971454041907,53.055167791323655],[-128.1968712874032,53.05523622590686],[-128.1966033686843,53.05531576352313],[-128.19633747539328,53.055398616872075],[-128.19606958339938,53.05547870875377],[-128.19579362414805,53.05554774001935],[-128.1954994472914,53.055571713224545],[-128.195198159923,53.05558459890543],[-128.194920171314,53.055632366724254],[-128.19468071437285,53.05573827471401],[-128.19438941688858,53.05578180468286],[-128.19413095941925,53.05586395865023],[-128.19384823252955,53.05592862702937],[-128.19351705491104,53.055942063899785],[-128.19328684778114,53.055955874694554],[-128.1929707273393,53.05602564544054],[-128.19268023639225,53.05608485018871],[-128.1923638533564,53.056149575144936],[-128.19204120378754,53.056147164354925],[-128.19177787995102,53.05613523910281],[-128.1914624126864,53.056127079384446],[-128.191170733529,53.05616332634093],[-128.19085673728682,53.05622015587434],[-128.19058944336552,53.05623968973908],[-128.19030426247207,53.05629318498636],[-128.1900103950498,53.05632329964041],[-128.18971549928662,53.056351755611765],[-128.18942927444195,53.0564030260695],[-128.18914406186602,53.05645595406465],[-128.18885983333467,53.05650999307838],[-128.1885818293084,53.05657568201753],[-128.18830072616484,53.05663582272979],[-128.18803767560865,53.05671972517131],[-128.18779144755788,53.056821816214224],[-128.18756173894909,53.05693593158389],[-128.18736973288725,53.057074009847305],[-128.18722552840816,53.05719662903334],[-128.18697204867274,53.05733920863635],[-128.18673658691975,53.05745063084624],[-128.1864834745877,53.0575461205131],[-128.18619914857683,53.057598468711795],[-128.18592314535456,53.05766691210111],[-128.18564614252074,53.05773426130308],[-128.18536910973435,53.057801045407196],[-128.18509303123363,53.0578683671936],[-128.18481547384746,53.057943006664935],[-128.18474665049854,53.05811355130171],[-128.18468466062305,53.05828957439568],[-128.1846151402897,53.058464615794925],[-128.18455409086684,53.0586406213605],[-128.18443634916187,53.05880534499042],[-128.18433566495221,53.058974236830885],[-128.18422271450842,53.059141113521584],[-128.18413430824202,53.05931258492664],[-128.18405532808313,53.05948555885137],[-128.1838619540087,53.05961580911107],[-128.1835692161593,53.059650370258545],[-128.1832698025594,53.05968224716038],[-128.18295911799237,53.05973115564012],[-128.18276154221505,53.05985251372034],[-128.18266967990886,53.060029643739895],[-128.18255198465036,53.06019548529001],[-128.18241433465647,53.060354969620604],[-128.18226431762287,53.06051019838815],[-128.18213141511154,53.06067128053808],[-128.18201746726714,53.06083705215303],[-128.18188645954677,53.06099865495212],[-128.1817687444578,53.061163930907455],[-128.18164436756385,53.06132709680201],[-128.1815133569099,53.061488699141556],[-128.18136333257294,53.061643926663],[-128.18121233653528,53.061798606931916],[-128.1810019854638,53.06192636764651],[-128.18076936358088,53.06203940144464],[-128.1805032395122,53.06211885874392],[-128.1802231875154,53.06218232271106],[-128.17994533461209,53.06225191533909],[-128.17965888787668,53.062209001613475],[-128.17937624184154,53.062149202135444],[-128.1790800826272,53.062135612155345],[-128.17878236511746,53.062146147067885],[-128.17848492052224,53.06216229012469],[-128.17819336084966,53.06220185573315],[-128.17791019397046,53.062259210632824],[-128.1776450473076,53.062339764318146],[-128.17740271451027,53.06244568840907],[-128.17715932349233,53.062549380536765],[-128.17692493463724,53.062664681039536],[-128.176648108003,53.06271798794182],[-128.1763449388882,53.062731989075026],[-128.17606454689326,53.062788723286666],[-128.17581186672146,53.06289370473094],[-128.17565001758567,53.06303793241041],[-128.1755455517946,53.06320688520207],[-128.175448802067,53.0633807446307],[-128.17531301183033,53.06354074144996],[-128.17518577921774,53.063703387370886],[-128.17507936925648,53.063871254450845],[-128.1749795914146,53.06404068519242],[-128.17489021044057,53.06421215730346],[-128.17481590426914,53.064386158584],[-128.17471706581068,53.06455557170763],[-128.17465312763215,53.06473105884901],[-128.17460330943993,53.06490853680101],[-128.1745553736876,53.06508597106683],[-128.17449143450045,53.065261467026566],[-128.17447446250335,53.065441137877535],[-128.17447243750306,53.06562053341921],[-128.1744573336824,53.06580016981938],[-128.17443755123924,53.065979892363266],[-128.17441775464235,53.0661590501645],[-128.17437710075876,53.06636942372517],[-128.174294924326,53.06620727277206],[-128.17409758084722,53.066060694378784],[-128.17385083347534,53.066008067350744],[-128.17362021247646,53.066033056101766],[-128.17338834641882,53.06614325344731],[-128.17320095728465,53.06622741390949],[-128.17298722854215,53.06632663167122],[-128.17280714627034,53.06648015822387],[-128.17263796760824,53.06666431546015],[-128.17235148051287,53.066712184418726],[-128.17205670119813,53.06674451139847],[-128.17175903584553,53.0667567129548],[-128.1714604665226,53.06675155060394],[-128.1711624285816,53.066756475575716],[-128.17086408859174,53.06675579144743],[-128.17056567782805,53.06675343087118],[-128.17026331494174,53.066747223219124],[-128.16997493737455,53.06677662034686],[-128.16970287206976,53.0668505654037],[-128.16943397309666,53.06693173355744],[-128.16916217679946,53.067011268343414],[-128.16887496788706,53.067045134172815],[-128.16857648299688,53.06704164891207],[-128.1682758868039,53.06703315275395],[-128.16797785995854,53.06703862545047],[-128.16768007690817,53.06704857685652],[-128.16738115196122,53.06705462950864],[-128.16708301041896,53.067057860078634],[-128.1667852270238,53.0670678092285],[-128.16648762851125,53.067081673193165],[-128.16619038836032,53.06710226470134],[-128.16589528690173,53.06712841217486],[-128.1655537152591,53.067269760531346],[-128.16530544625724,53.067370718393654],[-128.16504759115494,53.06746680257711],[-128.16480799288783,53.06757264925305],[-128.16462038531034,53.067707799845095],[-128.16448374177077,53.067870605394276],[-128.16434133517674,53.068030153443644],[-128.16414067329734,53.0681661074403],[-128.163889058582,53.06827497031324],[-128.16361508792218,53.06831194342595],[-128.16331823366716,53.06828543023159],[-128.16301836952886,53.06823656076965],[-128.1627314710261,53.06818520213755],[-128.16245047795633,53.068121412835886],[-128.16216466559425,53.06807283989566],[-128.1618655461584,53.06805701838024],[-128.16156821109752,53.068075913860284],[-128.16128466847354,53.068127064570156],[-128.1610066160724,53.06819436383966],[-128.160728635243,53.06826279107454],[-128.1604487125473,53.06833012321901],[-128.16016633675014,53.06838573375211],[-128.15986911312066,53.06837043744685],[-128.15960678030098,53.06828723446911],[-128.15934340815576,53.068201816938725],[-128.15906180658584,53.0681441917007],[-128.15884497910278,53.06801812270311],[-128.1586335736673,53.06788802628152],[-128.15837959050603,53.067803555990594],[-128.1580847273406,53.06776074364118],[-128.1577847131085,53.067745484216736],[-128.15748747739192,53.06776660957686],[-128.15718881521698,53.067796172072825],[-128.15689742963087,53.067785236666076],[-128.15661569202555,53.06772481021487],[-128.1563311594954,53.067664425179736],[-128.15602508614606,53.06764031310319],[-128.15578939570838,53.06754764750146],[-128.1556026786412,53.06740645024788],[-128.15542211161699,53.06725729358869],[-128.15523623868626,53.067114403383776],[-128.15504851303223,53.06697153774607],[-128.15482853545691,53.066856728900625],[-128.1545580492792,53.0667781566731],[-128.15426570792567,53.06672968405353],[-128.15396991107673,53.066705370311574],[-128.15366690851835,53.06670473678256],[-128.15337566768272,53.06673302442554],[-128.15310478472546,53.066812514050596],[-128.15285258133076,53.06691015408368],[-128.15261502295115,53.06701985730235],[-128.15240165055462,53.06714536879812],[-128.15221912412937,53.067289383193675],[-128.15203363029295,53.06743007945963],[-128.15181158297682,53.06755070799221],[-128.15156558936363,53.06766000666889],[-128.15130321103914,53.06774156995951],[-128.15101625638022,53.06776249165226],[-128.15070957065146,53.06774453788536],[-128.15040916731687,53.06775842120677],[-128.15011141692418,53.06776944852672],[-128.1498302280899,53.06771964085922],[-128.14955693498726,53.06764109942569],[-128.14926615932973,53.067604916677276],[-128.1489678481132,53.067586249974916],[-128.14866837755775,53.0675816113278],[-128.14836844725468,53.067586504092205],[-128.14806611905797,53.06759929551058],[-128.14777202999528,53.067627064954884],[-128.14749427747978,53.06768199592619],[-128.14724813002616,53.067788481264145],[-128.14709251645516,53.06796562710827],[-128.14695833166934,53.068122761533594],[-128.1468054320026,53.068279671076105],[-128.14661563245767,53.06839130028379],[-128.14642620648547,53.06849170366668],[-128.14631051141907,53.06862608164847],[-128.1461466729886,53.06880729446319],[-128.1460135371173,53.06896665050816],[-128.14585012012967,53.069119274844816],[-128.14570189168967,53.06927609783747],[-128.14554790005542,53.069430227383855],[-128.1453652702926,53.06957254633147],[-128.1451694308997,53.06971286300341],[-128.14495709157708,53.06984114835456],[-128.14472026826513,53.06994745857117],[-128.1443806629321,53.0700371433585],[-128.1441165299979,53.070047544716395],[-128.14407772265432,53.069927184465136],[-128.14414289920813,53.069736556767204],[-128.1442476476878,53.069533435708564],[-128.14434451120286,53.0693590469812],[-128.14444629290122,53.06918961767978],[-128.1445556042225,53.069021163507735],[-128.144673429422,53.06885480547334],[-128.1446939544051,53.06866890722144],[-128.14473401449715,53.068499477663764],[-128.14481688025043,53.068325898627336],[-128.1449139937383,53.06815655354128],[-128.14498261017604,53.067978749287676],[-128.14511586803948,53.06784013460323],[-128.14524870000653,53.067693115694446],[-128.14529481513566,53.067532534601916],[-128.14530563438677,53.06735803109443],[-128.14544650379437,53.067185083445025],[-128.14556580003838,53.06702934222874],[-128.145641837329,53.06686878212707],[-128.14562806632028,53.06668911152366],[-128.1456180477388,53.06650938167881],[-128.1456126924328,53.06632955810443],[-128.14561013281028,53.06614969267494],[-128.14562066672192,53.06596958031348],[-128.14559107907002,53.06579132699589],[-128.14551214066003,53.06561732442999],[-128.1453769321513,53.065458360974475],[-128.14521127185512,53.06530724149225],[-128.1450815288411,53.06514537148039],[-128.14498965680826,53.06497441046849],[-128.144896858799,53.064803466204246],[-128.14481428843771,53.06463121508747],[-128.14475392623166,53.06445464154364],[-128.14470292080887,53.06427788901933],[-128.14468728671977,53.06409826093817],[-128.1446558074157,53.06391947668092],[-128.14466076835907,53.063740030445544],[-128.1446834708827,53.063560261899575],[-128.144701494946,53.06338057831697],[-128.14469524577314,53.06320133566511],[-128.14465258537027,53.06302331044877],[-128.1445949794229,53.06284556566753],[-128.14451687896567,53.06266930514022],[-128.14429262860227,53.0625612807841],[-128.14402908147602,53.062471349303394],[-128.14376549336654,53.062380288050385],[-128.1435335470134,53.06226791814162],[-128.1433368939435,53.06213248751914],[-128.14314109909228,53.06199536402132],[-128.14307000131282,53.061938919921005],[-128.14294267986207,53.06186164180938],[-128.14274329222937,53.061727380848964],[-128.14254939746004,53.061590777923826],[-128.142355503939,53.06145417466956],[-128.14215614857946,53.061320477141166],[-128.1419558809374,53.06118735184518],[-128.14177020750898,53.06104667062079],[-128.14160096702037,53.060898409145835],[-128.14143082957577,53.06075072867948],[-128.14126160639856,53.06060246642178],[-128.14109788902698,53.0604524181239],[-128.14094793757795,53.0602970800439],[-128.1408044202988,53.060139383146264],[-128.1406673506768,53.059979892180415],[-128.14052934007807,53.05982040915381],[-128.1403913459139,53.05966093463987],[-128.14025514904316,53.0595002974393],[-128.1402088596698,53.059324022386186],[-128.14014667098337,53.0591474795461],[-128.1400852867771,53.05898717175804],[-128.14000487332092,53.05878292583697],[-128.13994790826848,53.058598997336816],[-128.1400357064275,53.05843038013534],[-128.14007059071218,53.05830644024346],[-128.14003400947442,53.05808178701632],[-128.14002942291827,53.057898029890865],[-128.1400152648171,53.057691470714694],[-128.13992031977116,53.05755138379637],[-128.13965791116573,53.057575762089414],[-128.13933469310788,53.057636548169924],[-128.13903779262074,53.05762566993301],[-128.13874100048054,53.05759853930793],[-128.1384460203401,53.057570254140735],[-128.1382131728555,53.05745789052681],[-128.1379821531715,53.057344372387185],[-128.1377746429026,53.05721529935205],[-128.13757439488197,53.057081601582446],[-128.13737326349957,53.05694904942524],[-128.13716304682706,53.056821701340056],[-128.1369437168914,53.05669900178163],[-128.13671003599745,53.05658832737405],[-128.13646281826226,53.056487430312764],[-128.1362120218044,53.056389404439486],[-128.13594440294153,53.05631017407958],[-128.13566455458042,53.05624797903793],[-128.13537696989704,53.05619937501278],[-128.135090327348,53.05615075325663],[-128.13479700231477,53.05611794533477],[-128.13450286388624,53.056087393352094],[-128.13420631073419,53.056064731133354],[-128.1339129585909,53.05603135655527],[-128.13362300545802,53.055991202931956],[-128.13334403281934,53.055927865674],[-128.13307376823104,53.05585147470728],[-128.13280170634755,53.05577680155761],[-128.13253588149576,53.05569585423489],[-128.13226295131608,53.055622316534375],[-128.1319805713876,53.05556519855037],[-128.1316888678167,53.05552731382304],[-128.13139077621486,53.055529889854924],[-128.1310921522578,53.05554033053484],[-128.13079590186905,53.055560807412],[-128.13050087428206,53.05558687530915],[-128.13020459539467,53.055606795202316],[-128.12992654787624,53.05567346628246],[-128.12963470652136,53.055707312345305],[-128.12933870740727,53.055732829862485],[-128.12904231456307,53.05575050691809],[-128.12875314086,53.0557069644688],[-128.1284961863453,53.05561631546693],[-128.12827243496625,53.05549816390277],[-128.12805678905167,53.05537369596234],[-128.12785750729665,53.0552399738288],[-128.12769477159867,53.05508933401455],[-128.12749803555653,53.05489446788059],[-128.12729818501094,53.054655939599755],[-128.12713375402896,53.054508692511],[-128.12691912740925,53.054385890147394],[-128.12668085132518,53.054275844218274],[-128.12644344684276,53.05416466114798],[-128.12621753202683,53.05404037497],[-128.12598726506246,53.053922336600856],[-128.12573545336411,53.05384055695265],[-128.12543904504042,53.05383916893122],[-128.12513364865606,53.05384466782883],[-128.12484357833682,53.05380168820842],[-128.12455676801,53.05374912542256],[-128.12426447807854,53.05371795007915],[-128.12396738508036,53.05370256303043],[-128.12366779102453,53.05369338110082],[-128.12336853336146,53.05369091819451],[-128.1230705384318,53.05369515764932],[-128.12277415720723,53.05371281899124],[-128.12247839196078,53.053742799196286],[-128.12218251427117,53.0537705387312],[-128.12188682133325,53.05378313659872],[-128.12158932181848,53.053759904083364],[-128.12129281959827,53.05373776490395],[-128.12099437371285,53.053751539950575],[-128.12069283527603,53.05377825648295],[-128.12040153149002,53.05382272390962],[-128.12013972856104,53.05389636194436],[-128.11993112857857,53.05402453636254],[-128.1197267389845,53.05416216749756],[-128.11948718654082,53.05426959849178],[-128.11922919549065,53.05436334341789],[-128.11895801972926,53.05443659099302],[-128.11866202868273,53.05449963862061],[-128.1183543535709,53.05455336245711],[-128.11806365187982,53.05457258686361],[-128.11782184321888,53.05452256317551],[-128.11764208265967,53.05436716675259],[-128.1175154879833,53.054190647821066],[-128.1174376835732,53.054017728416824],[-128.11739596189085,53.05383744482982],[-128.11737109443004,53.0536574148738],[-128.11735747554434,53.053478304082546],[-128.11735221389193,53.05329792238564],[-128.11735539296998,53.053117945254826],[-128.11739749899343,53.05295016542567],[-128.11742840201612,53.05276409501782],[-128.11745051108625,53.05258882707129],[-128.1174833369096,53.052403834108695],[-128.11756150919135,53.052228125260974],[-128.117606179756,53.052074306876655],[-128.1176286552779,53.051887822526794],[-128.11759624583817,53.051706806763484],[-128.11754473504652,53.051536222415734],[-128.11755549663917,53.0513583599486],[-128.11754564103776,53.051179737423034],[-128.11755815855688,53.05099960147122],[-128.1175697064382,53.05081891792484],[-128.11755700081872,53.05063922550835],[-128.11752185433818,53.05045937969492],[-128.11751480864956,53.05028071563356],[-128.11757994310244,53.05010635240671],[-128.11766472400743,53.04993220157465],[-128.1177006917047,53.04975388663852],[-128.11773004545157,53.04957400440357],[-128.117757460394,53.04939303595549],[-128.11777928689727,53.04921216775777],[-128.1177927010589,53.04903145048778],[-128.11779309709814,53.048852087771145],[-128.11777679568567,53.048675266607475],[-128.11773332145927,53.0484972470763],[-128.11764308702058,53.04831838958696],[-128.1175086572173,53.04815322067148],[-128.11733171463374,53.048016273683466],[-128.11709846789978,53.04791227973434],[-128.11682967662188,53.047826302458574],[-128.1165562379839,53.04774097290391],[-128.11630997697895,53.047638331817254],[-128.11610329797364,53.04750472321285],[-128.11585035060503,53.04741789470558],[-128.11555289119218,53.04737559050169],[-128.11529928354443,53.04729437753955],[-128.11512170998787,53.04714455197297],[-128.11486160346215,53.0470640195456],[-128.11457545703402,53.047004686646886],[-128.11430883638994,53.04692483471834],[-128.11408680158667,53.04680157759517],[-128.1138408313644,53.04670454012594],[-128.11356105060946,53.046641727887675],[-128.11326817658178,53.04659764998222],[-128.11297515747498,53.046569267563164],[-128.11267809050128,53.0465532875771],[-128.1123785774396,53.04654464143028],[-128.11208007421274,53.04653765342578],[-128.11178169748246,53.04653290434732],[-128.1114825743473,53.04653208678556],[-128.11118339595637,53.04653015745132],[-128.11088586192972,53.046523705095524],[-128.11058219628558,53.0465067169132],[-128.11030629630272,53.04644663456887],[-128.1101693297966,53.046285986978],[-128.11014453814946,53.04610707495517],[-128.1101580114496,53.045926913735755],[-128.11017705972318,53.04574609680547],[-128.11018210859535,53.04556553017851],[-128.11019243909766,53.04537870823025],[-128.11017691679945,53.04519794443598],[-128.11008210593081,53.04503934084009],[-128.10985918008444,53.04491665692837],[-128.10962878541542,53.04479410613001],[-128.10950216130496,53.04463439383192],[-128.10940943933156,53.04446117974056],[-128.1092863420793,53.044297476284456],[-128.1091530933138,53.04413619608507],[-128.1090097487802,53.04397845908557],[-128.10885167307904,53.04382546906153],[-128.10866529972898,53.0436858711843],[-128.10846064277223,53.04355445547796],[-128.10825598663737,53.043423030446874],[-128.10806958942183,53.04328287608733],[-128.1079014230263,53.04313342801494],[-128.10772782231723,53.04298743969175],[-128.10752232857152,53.042857714337224],[-128.10728317067668,53.04274652536098],[-128.10701859669865,53.042669418887975],[-128.10672429350245,53.04263319757534],[-128.10643337724127,53.04259018924976],[-128.10614513147198,53.04254433460848],[-128.10585683031357,53.04249735032272],[-128.10556855779527,53.04245092980131],[-128.10536850884884,53.04231774075293],[-128.10516841866604,53.04218399611162],[-128.10496837223252,53.042050806364294],[-128.10476738588198,53.041917633055405],[-128.10456551515517,53.04178559616044],[-128.10436090758944,53.041654728711286],[-128.10415537506043,53.04152387741392],[-128.10394527890276,53.04139534908372],[-128.1037262077195,53.041274262230495],[-128.10349085893418,53.04116411886478],[-128.10324386547376,53.0410642713421],[-128.1029914249662,53.04096732730731],[-128.10274075458696,53.040868665263766],[-128.10249915971173,53.040764236140475],[-128.10226109142303,53.04065581582606],[-128.10202841991898,53.04054282399174],[-128.10180479369285,53.04042405677434],[-128.1015874905023,53.04030070161539],[-128.1013702160755,53.04017790155913],[-128.10113103394727,53.0400655799618],[-128.1009147861021,53.03994443778676],[-128.1007797988492,53.03978486543118],[-128.1006759746351,53.03961296345029],[-128.10061580362859,53.03943580035096],[-128.10059954943125,53.03925841138081],[-128.1006075150753,53.039079479208254],[-128.10062846822296,53.038898629856995],[-128.10065131595042,53.03871830275144],[-128.1006657407937,53.03853756957565],[-128.10066618159172,53.03835765031516],[-128.10065536305547,53.0381768015549],[-128.1006222490711,53.03799860062615],[-128.10055385178183,53.03782494674536],[-128.1004575575766,53.03765403139184],[-128.10035201098054,53.03748495763653],[-128.10025293800868,53.03731465654641],[-128.1001584579608,53.03714258767486],[-128.10004652486433,53.03697643423313],[-128.09989416448173,53.036824451874004],[-128.0996977554855,53.036688381869794],[-128.09949581459995,53.03655409592989],[-128.09932505043605,53.0364074892057],[-128.0991835928118,53.036249142134935],[-128.0990402844695,53.036090836792496],[-128.09888598043563,53.03593720181132],[-128.09872614684858,53.03578479493622],[-128.09855902449613,53.035636436415764],[-128.09838088156695,53.035491636590876],[-128.09818908856454,53.03535436109545],[-128.09797266466458,53.03522929798563],[-128.09776997611874,53.03509838541038],[-128.09761023248257,53.03494765245165],[-128.0974678325889,53.03478876414039],[-128.09731532329002,53.03463341829252],[-128.09714635825026,53.03448509059752],[-128.0969398588861,53.0343525674131],[-128.09671962643014,53.0342258838389],[-128.09647209503294,53.03413275813564],[-128.09619130252656,53.034085061786094],[-128.09589116195676,53.03406181388066],[-128.09559003992334,53.034037452710976],[-128.0953010056152,53.03399326357955],[-128.09501689737704,53.033934978612784],[-128.09475309266693,53.03385278310649],[-128.09451650834558,53.033735362621044],[-128.09424818227905,53.03367510971278],[-128.09395029896956,53.03365965469788],[-128.09364599755594,53.03366562025166],[-128.09334985436328,53.033685447916405],[-128.09305932470318,53.03372423174653],[-128.09277018964121,53.03377251387965],[-128.09248094395736,53.03381856428005],[-128.09219178021857,53.033866289477494],[-128.0917238805567,53.033870658295214],[-128.0913759933789,53.033598825182104],[-128.09134032169177,53.033424586180644],[-128.0913379387547,53.033243596204635],[-128.09134198711223,53.03306024129448],[-128.09132657736282,53.03288003820674],[-128.09125257012863,53.03270535771463],[-128.0912176050597,53.03252662219845],[-128.09118351114768,53.032346750245736],[-128.0911578264336,53.0321667292105],[-128.09114623471666,53.03198814428751],[-128.09117018314268,53.03181060634058],[-128.09126536675322,53.03163741046834],[-128.09140048531884,53.03147863515609],[-128.0915620865957,53.03132612493185],[-128.09170569476032,53.03116888462833],[-128.0918274383591,53.031004185014886],[-128.09194161786732,53.03083737743271],[-128.09204541057346,53.03066851196207],[-128.0921360788745,53.03049875815498],[-128.09212995845905,53.03031782514385],[-128.09209966637346,53.03013900673423],[-128.09203589378794,53.02996358897067],[-128.09194706403161,53.02979141346492],[-128.0918666155864,53.02961852429323],[-128.09174086395478,53.02945541513025],[-128.09163542761047,53.02928745276587],[-128.09150783835904,53.02912493194183],[-128.0913977847847,53.028958181168235],[-128.09128493884293,53.02879147082713],[-128.09116657625648,53.02862654411679],[-128.09104915546865,53.02846160059334],[-128.09092430854517,53.028297909558276],[-128.09079950531475,53.02813478258868],[-128.09068114644342,53.02796985532794],[-128.09059882487202,53.027796998458456],[-128.0905220919171,53.02762348648017],[-128.0904397721055,53.02745063842453],[-128.0903205179664,53.02728628266328],[-128.09021877146165,53.027117141621716],[-128.0901105393366,53.026949227415635],[-128.09001807310173,53.026778800783994],[-128.0899422424797,53.02660470744079],[-128.08986922049093,53.02643057324867],[-128.08977765446934,53.02625956549355],[-128.08965837889772,53.026094653429475],[-128.08951790514712,53.02593572163357],[-128.0893444379219,53.02578970481218],[-128.08914631499343,53.025655334178616],[-128.08893549929775,53.02552846985895],[-128.08871918048013,53.02540395354095],[-128.08855675301885,53.02525437718761],[-128.08832829351854,53.02514856673913],[-128.08809216053243,53.025038963810445],[-128.08789406000074,53.024904590750566],[-128.08771236031097,53.02476208026191],[-128.08754527967218,53.02461258492599],[-128.0874384184441,53.024453055850785],[-128.08742286369514,53.02432666103055],[-128.08745323196797,53.02418432480564],[-128.08758777334353,53.024032854032754],[-128.0878059320801,53.02391016932867],[-128.0879826002674,53.023760750307574],[-128.0881202935751,53.023597457280225],[-128.08813701873123,53.02342453099623],[-128.0880375865118,53.02324524929059],[-128.08785524294498,53.02310835527584],[-128.08761064797673,53.022997224286094],[-128.087336859694,53.02291911773342],[-128.0870535371167,53.02287537349483],[-128.08675715844163,53.02285090718717],[-128.08645562104695,53.0228355081647],[-128.08615592271988,53.02281951087592],[-128.08585886691182,53.02280010317327],[-128.08556190645507,53.02278293499036],[-128.08526429540743,53.02277138243824],[-128.0849671244459,53.022768789152686],[-128.08466871902272,53.02277910365637],[-128.08437194161678,53.02280340529036],[-128.08408248668746,53.02284383538962],[-128.08379939996007,53.02289983692226],[-128.08351946231375,53.022963072943895],[-128.08323848811403,53.0230240846457],[-128.08295336810468,53.02307676606275],[-128.0826672112562,53.02312721417103],[-128.08238005847878,53.023176567150024],[-128.08209287735679,53.023225354947044],[-128.08180667631817,53.023275245705825],[-128.0815205444405,53.02332625550871],[-128.0812335259979,53.02337840121987],[-128.08094172308643,53.023428388686334],[-128.0806627456955,53.02349215683401],[-128.08041987140595,53.02358723968666],[-128.0802151434272,53.023717520337954],[-128.0800240840797,53.02385989024213],[-128.07982135756973,53.02399294176066],[-128.0796109161706,53.02412108006858],[-128.07939365853952,53.024243733281395],[-128.07915219652435,53.024348877193894],[-128.07889541622583,53.02444644377833],[-128.0786068330275,53.024447601827376],[-128.07831219680784,53.02443990703243],[-128.0780303614921,53.02450259811801],[-128.0777378346592,53.02453801757239],[-128.07744054785007,53.024552221706315],[-128.07714245172312,53.0245501897669],[-128.0768462590181,53.02452962308265],[-128.0765499570583,53.02450681564483],[-128.0762713732627,53.024445017664156],[-128.0759774814331,53.02441431959542],[-128.07568190254807,53.02438701339672],[-128.0753858211682,53.024368683055215],[-128.0750875893785,53.024363841429754],[-128.07478950961956,53.02436180328264],[-128.07449116851348,53.024354720137886],[-128.07419270545003,53.02434483148088],[-128.07389908931955,53.024319728264075],[-128.07361270526474,53.024270400853375],[-128.0733156450457,53.024250961585885],[-128.07303788413705,53.02418689967322],[-128.07276525952807,53.0241132231167],[-128.07249617805013,53.024035564784924],[-128.0722200131474,53.02396586810427],[-128.07193706592167,53.023910306507055],[-128.07164156038831,53.023884674931885],[-128.0713430075319,53.02389216018521],[-128.07106574298354,53.02395307730259],[-128.07078071044444,53.024007960328674],[-128.07056657538953,53.02411821140272],[-128.07026495275062,53.02410108651976],[-128.06999211511317,53.02402292351904],[-128.06971855605224,53.02394925642604],[-128.06942815853694,53.02387476317684],[-128.06910964556542,53.02389436759885],[-128.06885437940463,53.023908368987925],[-128.06853627324415,53.023917311057616],[-128.0682543286815,53.023920578318574],[-128.06792618140489,53.02393417867182],[-128.06756161434296,53.02394785155299],[-128.06724176575932,53.02401679678808],[-128.0669943739787,53.02409679305676],[-128.0667300594123,53.0241552309769],[-128.06646466799594,53.024229945628214],[-128.06622705712635,53.024299680191504],[-128.06595992068588,53.02435760977282],[-128.06571669410076,53.02446555441985],[-128.06547538786717,53.02457459484119],[-128.06523294871673,53.02467972671936],[-128.0649953459392,53.02478813629275],[-128.0647674836249,53.0249047775955],[-128.06454735954372,53.02502689676993],[-128.06430479410844,53.02512922194649],[-128.0640299225093,53.02520128991747],[-128.063774587988,53.025290950806266],[-128.06355835576198,53.02541636281737],[-128.06333920543327,53.02553957455339],[-128.0630965801774,53.02564078616498],[-128.06281867802173,53.02570842035649],[-128.0625526975278,53.02579041792018],[-128.0622826956259,53.025866880362194],[-128.06200516022597,53.02592273158815],[-128.0618759847746,53.026090335938804],[-128.0618938027679,53.02626489444313],[-128.06198813056295,53.02643755054122],[-128.06208992662073,53.02661008497102],[-128.06193203524776,53.02680228745362],[-128.06169518988082,53.02690731376948],[-128.06144680145346,53.02700581554575],[-128.0611898282875,53.027100538935656],[-128.06092989860247,53.02719195948249],[-128.0606708119783,53.02728167878078],[-128.06040277270523,53.02736034426338],[-128.0601298281441,53.02743404598264],[-128.05987162488887,53.027522627070915],[-128.05962814782598,53.0276260878835],[-128.05938765224548,53.02773341498859],[-128.05914033008597,53.0278346909826],[-128.058893034119,53.02793653093755],[-128.05870631472044,53.028073748804694],[-128.0585465289947,53.02822730174165],[-128.0583857079987,53.02837863954426],[-128.05820580992196,53.02852189827933],[-128.05804592705894,53.028673210216084],[-128.0579184979045,53.028839093158396],[-128.0577814226307,53.028998418451444],[-128.05758299026965,53.029125750014686],[-128.05731457727956,53.02921618017949],[-128.05712089837178,53.02934510495932],[-128.05701244614758,53.029516825581865],[-128.05695188985834,53.02969387171481],[-128.0569253715703,53.02987929194822],[-128.05688643929923,53.03005932381962],[-128.05678586235462,53.030220253232514],[-128.05660082985057,53.030354066043685],[-128.0563683213901,53.03047245673752],[-128.0561330460211,53.03059146012955],[-128.0559283724913,53.03072505812656],[-128.05574027926744,53.030872939230214],[-128.05562089062175,53.03103138840021],[-128.05565830804832,53.03120617037339],[-128.05571006054592,53.03138741929108],[-128.05568477522067,53.03157898720008],[-128.05558803256946,53.03174209040363],[-128.05532357318017,53.03179881801331],[-128.05501267912038,53.031822734219915],[-128.05471693710282,53.03185086055144],[-128.0544204090577,53.031862750471575],[-128.05412210016667,53.03185730034829],[-128.05382361643808,53.03184792469361],[-128.05352544294382,53.03184526860846],[-128.05322899563546,53.031858831070906],[-128.05293205579707,53.031881377951194],[-128.05263488367547,53.031899435339405],[-128.05233792157358,53.03190235993731],[-128.05204020155492,53.03188960362831],[-128.0517431520548,53.031871230145356],[-128.0514415901887,53.03185629724287],[-128.05114857916786,53.03182496557454],[-128.05088157134878,53.031751696928794],[-128.05062923676527,53.031653520651766],[-128.05037864983518,53.03155250661029],[-128.05011584557386,53.03146963960287],[-128.0498252403684,53.03142985127073],[-128.04953613610277,53.031382745482446],[-128.04925311509422,53.03132600971656],[-128.0489718537174,53.03126700081726],[-128.0486896943398,53.0312085718135],[-128.04840662158557,53.031150713998144],[-128.04812536254587,53.031091703075184],[-128.04784578196424,53.03102873454274],[-128.04756704742155,53.03096407373203],[-128.04729095962065,53.03089600348871],[-128.04702014958974,53.030821115324116],[-128.04676173452444,53.03073200409384],[-128.04651032925943,53.03063323813818],[-128.04625194318095,53.030544681309124],[-128.04597937821995,53.030472063153795],[-128.04570242412282,53.030405125249395],[-128.04542106586368,53.03034386782451],[-128.04513895608758,53.03028654161344],[-128.044852538038,53.03023658008223],[-128.0445611131351,53.030199035099464],[-128.0442678757394,53.030162641764065],[-128.04390522239737,53.030333705286374],[-128.04369458732842,53.03046065902419],[-128.04349845802153,53.03059801459273],[-128.04330716359138,53.03073863994151],[-128.04311197269917,53.03087597854762],[-128.04290698738015,53.031003953854515],[-128.04267676015237,53.03111218875396],[-128.04239975736763,53.03118031386835],[-128.0421079778625,53.031232444826806],[-128.04182277848838,53.03128558211194],[-128.0415364491567,53.0313348194118],[-128.04124911214515,53.03138238753321],[-128.04096079462005,53.031428850957454],[-128.04067246152812,53.03147531393438],[-128.04038801108678,53.031524506928704],[-128.0401229578479,53.03160812213569],[-128.03985888298203,53.03169283178827],[-128.03959967058975,53.031781384562],[-128.03935609261896,53.03188423879323],[-128.0391406957028,53.0320095892976],[-128.03894935380512,53.03214965193716],[-128.03872337088785,53.03232730410815],[-128.03853521873626,53.032378191150336],[-128.03824004168806,53.032457273703436],[-128.03800137378425,53.03256508888527],[-128.03776076849354,53.03267180710705],[-128.0375221248284,53.03278017683477],[-128.03728925451583,53.03289237414804],[-128.03707087666666,53.033014400279086],[-128.03687080664577,53.0331478843033],[-128.0366774509432,53.033285179837094],[-128.03649172307476,53.03342569722059],[-128.03630028569316,53.03356407990287],[-128.03609838234286,53.033698715075495],[-128.0358408824784,53.03378442274242],[-128.0355455451833,53.033801849069455],[-128.03524898481837,53.033794078993964],[-128.03495343073675,53.03382663583294],[-128.0346758881259,53.03388410701801],[-128.03443239351364,53.033989190995555],[-128.03419084552542,53.034095926779244],[-128.03395213108732,53.03420316917921],[-128.0337098132337,53.03433289204401],[-128.03348444849044,53.03442645200794],[-128.03324865753484,53.03453644038639],[-128.03301094501066,53.03464534940228],[-128.0327751516132,53.03475533682068],[-128.03254225792762,53.034867524636866],[-128.0323132726842,53.03498299849871],[-128.03208526634805,53.035099584936184],[-128.03185525736436,53.03521339855437],[-128.03160817460582,53.03532190098899],[-128.0313267140212,53.03533683569686],[-128.03103302382002,53.03529144943355],[-128.0307396021288,53.03525166253278],[-128.03044566848422,53.035220851249406],[-128.03015169664266,53.03518891895705],[-128.02986106976473,53.03514908180547],[-128.02957384443653,53.03510189483446],[-128.02928644462403,53.035051356321],[-128.02899919404436,53.03500361241888],[-128.02868803077948,53.034964125585084],[-128.02843594334752,53.035007127849205],[-128.02823356368074,53.03515184555446],[-128.02795031544775,53.03510963500677],[-128.02768826001946,53.03502222197183],[-128.02742612565103,53.034933132799715],[-128.02716147811796,53.03485024692515],[-128.0268968730785,53.03476791572692],[-128.02663222760808,53.03468502865753],[-128.02636757159158,53.03460158520351],[-128.02610381577634,53.034517560757195],[-128.02583917341414,53.03443467189727],[-128.025573659426,53.03435291836159],[-128.02530635926433,53.03427287182947],[-128.02503903361176,53.03419226915712],[-128.024769868773,53.03411226241005],[-128.02449726425127,53.034038474767364],[-128.0242196198414,53.033976538354295],[-128.02393240914066,53.03392934658128],[-128.02363751011274,53.03389741418163],[-128.02333854992656,53.03387843701092],[-128.0230411719196,53.03387289218662],[-128.0227419609084,53.03388754596377],[-128.022442209047,53.033910619770275],[-128.0221449035184,53.03392636926658],[-128.02185214682595,53.033919612329804],[-128.02156765213326,53.033870682416214],[-128.02129208661376,53.033793575404275],[-128.0210173833539,53.03371477606906],[-128.02077148814416,53.033613054962515],[-128.02070537176448,53.0334410070105],[-128.020601094242,53.033271845508516],[-128.02039313258825,53.03314258041859],[-128.02017426263856,53.033019662435315],[-128.0200434147425,53.03286160881843],[-128.0199519826403,53.03268774305881],[-128.0198912321878,53.03251055406083],[-128.01989204156735,53.032331190119024],[-128.01990399989842,53.03215051433477],[-128.01985357984964,53.03197426934423],[-128.01979472470853,53.03179761275011],[-128.01978427909424,53.03161732049563],[-128.01965046914876,53.031455954308925],[-128.01953805810052,53.03129253576243],[-128.01954444350997,53.031112520280125],[-128.01954798214987,53.03093142360481],[-128.01953291615456,53.03075233129333],[-128.0196115603198,53.03057892530891],[-128.01966296513228,53.03040261380171],[-128.01966464816797,53.030222113759685],[-128.0196355872875,53.030043260978125],[-128.01958233655103,53.02986650819196],[-128.01955511634296,53.02968705889805],[-128.01953259799475,53.029508094043884],[-128.01951097940383,53.029328557780524],[-128.01948284576886,53.029149689015505],[-128.0194565942074,53.028970788010085],[-128.01943776865778,53.02879119490543],[-128.01946290266454,53.028612535134165],[-128.0194983117548,53.02843369943131],[-128.01953091277463,53.02825491176781],[-128.0195725814651,53.02807036412747],[-128.0195873596183,53.027890204605335],[-128.019438642324,53.027729093261634],[-128.0191795730204,53.027683641712436],[-128.01893648395526,53.02777747770002],[-128.01868636998873,53.02790057783143],[-128.01842532299224,53.02799023626229],[-128.01815230201333,53.028063849798784],[-128.01788420550182,53.02814297417884],[-128.0176298565011,53.02823587902646],[-128.01738043218398,53.02833430377975],[-128.01713201270934,53.028434396690926],[-128.01688258607265,53.0285328203804],[-128.01662836532338,53.02862851864168],[-128.01636428894537,53.028713740355784],[-128.01607448960044,53.02874895883186],[-128.01577296725375,53.02875355558106],[-128.0154784556657,53.02872887841108],[-128.01520149294026,53.02866074908316],[-128.01495284848488,53.02855907222294],[-128.01466166727965,53.02856516644098],[-128.01436156539964,53.02859999170421],[-128.0140755029376,53.02865476234413],[-128.01381420231132,53.02873936591537],[-128.01356495231158,53.0288417071621],[-128.01331946126226,53.02894453968698],[-128.01307878813893,53.02905065226926],[-128.01284004875944,53.02915785227556],[-128.0126003935803,53.02926562338039],[-128.01236668321954,53.02938058313239],[-128.01211400749776,53.02947008433713],[-128.0118139626234,53.02948641102036],[-128.01151787337977,53.029467920466224],[-128.01122224783623,53.02943933284317],[-128.01092613286735,53.0294202852681],[-128.01062841600637,53.02940685996837],[-128.01033165205686,53.029393982633216],[-128.01003396229177,53.029381120329546],[-128.00973629942663,53.02936882177098],[-128.00943855701098,53.02935483793281],[-128.00914172901005,53.02934027282146],[-128.0088439869903,53.02932628748282],[-128.00854648380516,53.02931734602056],[-128.00824732530003,53.029312906761895],[-128.00794856432861,53.02931687147325],[-128.00765325843565,53.02933479279179],[-128.00736195137122,53.029377861862024],[-128.00708973691852,53.029449184703225],[-128.00683644130177,53.02954541055795],[-128.00657628518493,53.02963502693423],[-128.0063020424694,53.02970302856294],[-128.00600475999462,53.02971872847578],[-128.00570083352284,53.02969251007768],[-128.0054457164982,53.02961165636039],[-128.0052405589371,53.02948119678061],[-128.00505067053513,53.0293375821155],[-128.0048582811648,53.0292001703084],[-128.00467410182307,53.029058699897625],[-128.00450549436755,53.02891080395969],[-128.00435975557176,53.02875242186096],[-128.00421133114602,53.028596336048686],[-128.00403331318094,53.02844691345336],[-128.00383146552957,53.02828724203552],[-128.00360165118934,53.02818801972077],[-128.00333929437457,53.02819135456946],[-128.00305845123626,53.02823816314859],[-128.00276941996376,53.02830976162251],[-128.00247991094307,53.02839089989162],[-128.00219944500532,53.02846572329595],[-128.00194345691477,53.02856422617774],[-128.00167645473138,53.02862760151749],[-128.00137532037024,53.028600768779896],[-128.00108651432407,53.02863761031202],[-128.00079951975334,53.02869292026377],[-128.00050665090643,53.02872254769134],[-128.00021018237703,53.02873542144624],[-128.00000045260055,53.028666116845876],[-127.99973097413067,53.028577647977436],[-127.99971769483902,53.02857338935867],[-127.99941947209852,53.02829092992949],[-127.99886536940974,53.02783177092533],[-127.99851543437869,53.0277009463312],[-127.99799956991245,53.027597591765904],[-127.99758655405113,53.02739664927593],[-127.99752386076504,53.02729515018253],[-127.99705752126329,53.02709231100201],[-127.99680186213756,53.026920087815846],[-127.996455554473,53.02664740255692],[-127.9959902868818,53.02638792963541],[-127.99561861880073,53.026171717681315],[-127.99525242501105,53.02571440280347],[-127.99474123539727,53.02541142957443],[-127.99446746482154,53.02501196766278],[-127.99445184672673,53.02469949183476],[-127.99432168745254,53.02421520818594],[-127.99369855204861,53.02365630895097],[-127.99343397713096,53.023412489750555],[-127.9941282960737,53.022921559195254],[-127.99477359478021,53.02250094209023],[-127.99556638545056,53.0218401967584],[-127.99576462268854,53.02138790390558],[-127.99531610158051,53.021026149132574],[-127.99514583952758,53.02092085475006],[-127.99494658695927,53.020814938522946],[-127.99461786482652,53.020716807287464],[-127.99421707381498,53.02063503083463],[-127.99336004333679,53.02038497821014],[-127.99258522041539,53.02027421233104],[-127.99158121313242,53.020135916574915],[-127.99034871786832,53.019865279619125],[-127.99007069411782,53.01969230776547],[-127.98902052198616,53.019285745640346],[-127.98898617626732,53.01873202799136],[-127.98897230638119,53.01863529669698],[-127.98886098716571,53.0185318062761],[-127.9883538659011,53.018073492941106],[-127.98812672982595,53.017730388790746],[-127.98809992769283,53.01723762983164],[-127.98801045539281,53.017161793672],[-127.98799676156982,53.016749520834956],[-127.9880719038505,53.016040388605155],[-127.98801059920397,53.01562835316435],[-127.98809233773332,53.01516011028503],[-127.98810311724793,53.01469193359338],[-127.98811506674984,53.014209173845224],[-127.98813514387204,53.013840047452234],[-127.98812725964372,53.013172658365995],[-127.98811747624332,53.01260450843603],[-127.98829628737833,53.01199563155997],[-127.98856943103884,53.011387396218275],[-127.98853870973016,53.0106912557903],[-127.98831486582517,53.01017827793626],[-127.98773307443844,53.009917940789435],[-127.98662175637007,53.00959590456378],[-127.98561452987936,53.00940269002085],[-127.98462729230575,53.00933748239049],[-127.98389464279805,53.00944509135655],[-127.98318814484752,53.00945305744352],[-127.98273852133715,53.00956262413371],[-127.98243158556141,53.00958851781554],[-127.98200950808926,53.00952835718411],[-127.98156260199933,53.00949607973399],[-127.98090345953362,53.00951836442259],[-127.98033995601553,53.009428622569786],[-127.97978183025383,53.009153842400856],[-127.97927178459805,53.00880874563109],[-127.9789947129601,53.00859369297619],[-127.97834252321398,53.0083036709044],[-127.9781129866892,53.00804634405264],[-127.9777941283274,53.00757529547711],[-127.97738615145155,53.007396062986366],[-127.97704890766113,53.00713157292464],[-127.97675398828207,53.00699415898843],[-127.97654710869084,53.0069023477645],[-127.97633918281318,53.00682848869269],[-127.97597709850791,53.006792517906284],[-127.97550825860353,53.00668940174782],[-127.9752690221495,53.006584679256385],[-127.97494411273662,53.0064645773629],[-127.97475186937224,53.00634618041457],[-127.97453228378254,53.00618171778094],[-127.97414922587078,53.00593535695657],[-127.97387345901055,53.00566703087326],[-127.97378838510372,53.005282853420525],[-127.97360644318115,53.004903660240636],[-127.97340568589372,53.004541595721406],[-127.97310859235121,53.0041553616257],[-127.97273858954634,53.00386786820493],[-127.97218171753795,53.00353697647831],[-127.9717923398302,53.00309343822051],[-127.97170221352205,53.002921756476866],[-127.97183222635005,53.00238377450923],[-127.97144599085007,53.001826402942854],[-127.97120300518398,53.001156783109856],[-127.9709577952534,53.00080162718149],[-127.97076347975127,53.00059750242299],[-127.97055839563126,53.00000010837264],[-127.97055385015916,52.99990209784459],[-127.9705660610549,52.99972254372226],[-127.97057172378743,52.99954254305313],[-127.97058866884578,52.999364586672606],[-127.9707411492538,52.999210155039506],[-127.97080018133944,52.99903373684426],[-127.97082445802579,52.99885285992141],[-127.97087888508337,52.99867764853106],[-127.97102745956254,52.998519909926614],[-127.97116858590834,52.99836230461506],[-127.97117998320252,52.99818556168256],[-127.97114636209308,52.99800397579354],[-127.97115701612597,52.99783117302482],[-127.97115743277398,52.99763892050473],[-127.97111138765793,52.997471549567216],[-127.97091833822626,52.99733466009346],[-127.97068681513474,52.99721355069113],[-127.9704465627714,52.997105473085355],[-127.9701858779324,52.99701959034394],[-127.96989946077801,52.99696272550051],[-127.96964169875362,52.99687959956842],[-127.96943486550954,52.99674742181671],[-127.969250944723,52.996605893423755],[-127.9690551663122,52.996470167524855],[-127.96882222863904,52.99635860169478],[-127.96854825363064,52.996288074566344],[-127.96828041241947,52.996209041832984],[-127.96802949762419,52.99611234686571],[-127.9677812597935,52.99601279985802],[-127.9675249064113,52.995919557451806],[-127.9672739693239,52.995822305303754],[-127.96704367508923,52.995707329119696],[-127.96683225124906,52.99557634448624],[-127.96667508990852,52.99542764005961],[-127.96658684027312,52.9952553669439],[-127.96654670414591,52.995073879523396],[-127.9665374966391,52.994895247856505],[-127.96655153666458,52.99471454241893],[-127.96658617382407,52.99453517023484],[-127.96663307318082,52.9943584002567],[-127.96668741887437,52.99418150599011],[-127.96674742709124,52.99400563812749],[-127.96681022544549,52.99382972364987],[-127.96687394851301,52.993653793680856],[-127.96694806696449,52.99344014316169],[-127.96695451346213,52.99325675736824],[-127.96702207746814,52.99310318194594],[-127.96694671449491,52.99290659811802],[-127.96694678026267,52.99272668156995],[-127.96697397890071,52.992547998094715],[-127.967036774164,52.992372083343746],[-127.96709394721701,52.99219570637818],[-127.96713049719841,52.992017422709665],[-127.9671979617651,52.991841429862184],[-127.96730977140321,52.991675906178536],[-127.96744514816187,52.99151559366547],[-127.96758905500636,52.991357945400644],[-127.96773390047017,52.99120027228924],[-127.96787683893865,52.991042074820484],[-127.96802641597458,52.990886008179395],[-127.96819032620029,52.99073699256934],[-127.96839329513864,52.99060525048985],[-127.96860773987326,52.990479486017605],[-127.96882987801757,52.99035864133329],[-127.96909872648169,52.99027904668861],[-127.96930837604062,52.9901707311095],[-127.96937100242477,52.98999145463723],[-127.96940844036591,52.98981259901133],[-127.96943278453332,52.98963284120974],[-127.96959214408751,52.98948669729671],[-127.96982186461781,52.98936852169794],[-127.97001253541025,52.98923362821438],[-127.97010438679735,52.989060588327455],[-127.97015303765104,52.98888210084767],[-127.97028284037152,52.98872244261837],[-127.97044563810086,52.988570070205206],[-127.97058387644563,52.988411391485016],[-127.97067866979768,52.988241664640874],[-127.97075925862444,52.98806769144369],[-127.97085402433267,52.987897399905],[-127.97097518693691,52.98773283647696],[-127.97112285007094,52.98757624123408],[-127.97128566658306,52.98742443207536],[-127.97146670125746,52.987282962399185],[-127.9717149470405,52.987182407907035],[-127.97192159250262,52.987050041505796],[-127.97205718613165,52.986894767832894],[-127.97207298697208,52.98671234507033],[-127.97207210637585,52.98653245229643],[-127.97210865680547,52.98635473100182],[-127.97215732234184,52.986176806925776],[-127.9721929208511,52.98599853652927],[-127.97222568826083,52.98581975748857],[-127.9722500295045,52.98564056344604],[-127.97226036411485,52.9854610388368],[-127.9722594823359,52.98528113696924],[-127.9722614059553,52.98510119709797],[-127.97227733539295,52.98492157878884],[-127.97231289164918,52.98474275291315],[-127.97238226596147,52.984568400758825],[-127.97246851396511,52.98439601696351],[-127.9725481889346,52.984222613186354],[-127.97261002381602,52.984046710077735],[-127.97265681965678,52.983868816769146],[-127.97267560382555,52.9836902713984],[-127.97265510521432,52.98351014171799],[-127.9726365128264,52.98333054506538],[-127.97264693218756,52.98309272933978],[-127.97254829101242,52.98299797892917],[-127.97228273304904,52.98290602231366],[-127.97201660006371,52.98282192138385],[-127.97175048305041,52.982737819599265],[-127.97149614362178,52.98264622952384],[-127.97126249119952,52.98253804356169],[-127.97105413239652,52.98241149887088],[-127.9708619726466,52.98227235244187],[-127.9706780058692,52.98212858489154],[-127.97049414418049,52.981987057203945],[-127.9703221794,52.98184029051942],[-127.97015476626122,52.98169119662163],[-127.96998738045836,52.98154266699397],[-127.96981447934031,52.981395915243056],[-127.96964160515766,52.98124971878635],[-127.96946870600911,52.98110295754177],[-127.96929673342511,52.98095618953269],[-127.96912664135591,52.98080938088598],[-127.96896104982058,52.980659142914774],[-127.96879732385159,52.98050886457808],[-127.96860049980396,52.98036923651464],[-127.96839167784945,52.98023260645407],[-127.9681655464083,52.98012484489893],[-127.96788359940747,52.98012170744113],[-127.96758090817968,52.98015423010047],[-127.96728406154647,52.98017207308497],[-127.96698833612697,52.98019382440599],[-127.9666881374414,52.98021957744808],[-127.96643151364685,52.98030008499432],[-127.96621049082488,52.9804237148926],[-127.9659855149623,52.98054292650852],[-127.96576145160232,52.980661557484204],[-127.96554412891642,52.98078456832296],[-127.96517444944169,52.98098297245423],[-127.96508820425002,52.980812905799084],[-127.96507429959163,52.98063323003897],[-127.9650818068271,52.9804526322121],[-127.96510900545111,52.98027394785741],[-127.96519717962752,52.98010209315346],[-127.96537443320003,52.97996013910506],[-127.96564040656246,52.979880033862436],[-127.96593052867742,52.97983820230515],[-127.96621851562672,52.97979024491736],[-127.96649727351796,52.979724496688995],[-127.96678913702253,52.97970001311759],[-127.96708778618809,52.97970118840352],[-127.96737076435943,52.97964602112236],[-127.9676404727487,52.97956641385012],[-127.96791606633727,52.97947270025647],[-127.96803817540376,52.97932885609319],[-127.9680343667989,52.97914564883815],[-127.96801454447001,52.97895933721947],[-127.96800435752442,52.97877959931281],[-127.9679913656992,52.9785998992689],[-127.96799330707749,52.9784199587482],[-127.96799977292365,52.97823713577506],[-127.96802215881125,52.97805572380856],[-127.96808705230276,52.97788537625326],[-127.96827181252495,52.97774441290431],[-127.96849651907245,52.97762016107175],[-127.9687460763583,52.977508379997204],[-127.96894073757043,52.97738013652356],[-127.96901987819538,52.97721515497719],[-127.96905633497046,52.97685416408788],[-127.9689829533574,52.976679956942185],[-127.96890400458335,52.97650640773729],[-127.96880288840086,52.976337712713175],[-127.96868882440945,52.97617147585744],[-127.96857383646136,52.97600525432777],[-127.96846624106044,52.97583778821822],[-127.9683632636051,52.97566912390283],[-127.96826212583817,52.975499872767166],[-127.96815915001066,52.97533120823924],[-127.96806541990384,52.97516070325765],[-127.96800963672801,52.974983403566945],[-127.96802096332028,52.97480498282237],[-127.96806684336939,52.974627105800124],[-127.96810894209254,52.97444817094979],[-127.96814081909326,52.974269971781766],[-127.96815103845245,52.97408764161144],[-127.96809444643846,52.97391316224475],[-127.96795197659742,52.97375804369832],[-127.96778365307514,52.97360840559489],[-127.967607935771,52.97346057665965],[-127.96743777584837,52.97331152473921],[-127.96726022218886,52.97316428196027],[-127.96714555889416,52.97300477926846],[-127.96717910681878,52.97282262453137],[-127.96725594101814,52.97264815857641],[-127.9672822376546,52.97247060866454],[-127.96726270697854,52.972290461143324],[-127.96726281241301,52.97211110665204],[-127.9673236857491,52.971934656206905],[-127.9674099286357,52.971762274807965],[-127.96749332940408,52.97158881086083],[-127.96757486549349,52.97141538693691],[-127.96761803214393,52.97123923196603],[-127.96758821325722,52.97105870019646],[-127.96751300938955,52.97088508719408],[-127.96740445455785,52.97071651495474],[-127.9672445011169,52.97056617129035],[-127.96707075506052,52.97041998555542],[-127.96692628126361,52.97026154526397],[-127.96680118408572,52.97009828849638],[-127.96673256961489,52.96992568591598],[-127.96671764402227,52.96974434024646],[-127.96671660489463,52.96956052080387],[-127.96671280285724,52.96937731243157],[-127.96667494368266,52.96920419628454],[-127.96646651922725,52.969074838011515],[-127.96635394222463,52.9690004922458],[-127.96635642730108,52.96893319338231],[-127.96645435290941,52.96875108470303],[-127.96650217517784,52.968574861138954],[-127.9663748765833,52.96842453609998],[-127.9661715466905,52.96828388271185],[-127.96598014740165,52.96813911099918],[-127.96587071784812,52.96797167284258],[-127.96582603522063,52.96779194448974],[-127.96601747592106,52.96751411495407],[-127.96623186305263,52.96738947315653],[-127.96638708533631,52.96723611774097],[-127.96638903256847,52.96705616705722],[-127.96632030617593,52.96688132398338],[-127.96624138645345,52.96670777197242],[-127.96615602802129,52.96653601329702],[-127.96607062926446,52.96636369026376],[-127.96599078688513,52.96619015346426],[-127.96592022503506,52.96601589674703],[-127.96586635306167,52.96583912848031],[-127.9658682875196,52.965659177902545],[-127.96591416670596,52.96548130073965],[-127.96594135226029,52.965302614585575],[-127.96594143756518,52.96512270377408],[-127.96593405101878,52.964942908686425],[-127.96592012187766,52.964762666784935],[-127.9658310921933,52.9645920899945],[-127.96574020988272,52.96442210004596],[-127.9657280422835,52.96423958676409],[-127.96568175895528,52.96406548953923],[-127.9655153309469,52.96391581646171],[-127.96533151339352,52.96377315907658],[-127.96514591043076,52.96363220815711],[-127.96496298307795,52.9634884144015],[-127.96483710345053,52.96332797527679],[-127.96479338071985,52.96314879513388],[-127.96481870544629,52.962970140083094],[-127.96485894225872,52.96279123623433],[-127.96489172261482,52.96261245674197],[-127.96489462659832,52.96243305468566],[-127.96487607577305,52.962253445574696],[-127.9648575106064,52.9620738456509],[-127.96483615664144,52.96189428326405],[-127.96480180708703,52.961716067584085],[-127.9647210648252,52.96154310067816],[-127.9646560713922,52.96136763804566],[-127.96459570488031,52.96119153322234],[-127.96453812735204,52.961015381836184],[-127.96448053913613,52.96083866562498],[-127.9644173968043,52.9606631719441],[-127.96433111802695,52.960491418028575],[-127.96429395720975,52.96031268402807],[-127.96422062404618,52.96013848114299],[-127.96414358931241,52.95996489593402],[-127.96406098914393,52.95979195947823],[-127.96397007243775,52.95962084757257],[-127.96386625364015,52.959452757627375],[-127.96374487604167,52.959288314289154],[-127.96360418019039,52.95912980670236],[-127.96344882181299,52.95897658324942],[-127.96328338660162,52.95882744646683],[-127.96311333756188,52.95867951629687],[-127.96279626960434,52.9583972699778],[-127.96264456716794,52.95824230759735],[-127.96249468871102,52.95808674966528],[-127.96234482626072,52.9579311912794],[-127.96219223902636,52.95777735506574],[-127.96203503799104,52.95762472545689],[-127.96185133658011,52.95748373777138],[-127.96162130547869,52.95736931263459],[-127.96138222559843,52.95726119857817],[-127.9611324695113,52.9571639064977],[-127.96087376820518,52.95707517454614],[-127.96061151021102,52.95698986413986],[-127.960347452219,52.9569062690531],[-127.96008428257898,52.95682152867199],[-127.95982560045107,52.95673279415194],[-127.95958839248195,52.95662464539584],[-127.95934571252499,52.95651882914247],[-127.95909939452318,52.95641531484872],[-127.9589388581217,52.95627058347003],[-127.95883027138504,52.956099761638725],[-127.95868132775189,52.95594361849612],[-127.95854162673022,52.955785644490376],[-127.95841844243844,52.95562179082895],[-127.95829985937378,52.95545673955932],[-127.95806654145187,52.95512881459503],[-127.95790754178527,52.95497676554698],[-127.95772468718359,52.95483352458144],[-127.95757676886842,52.95467904894462],[-127.9574609946712,52.95451395013967],[-127.95735530949085,52.954345320632],[-127.95725240212504,52.9541760798903],[-127.95715043527385,52.95400683239069],[-127.95705215565305,52.95383695855315],[-127.95695114033774,52.9536682510561],[-127.95684823621714,52.953499009891786],[-127.95674722251269,52.95333030218534],[-127.95665082459472,52.95316039672688],[-127.95656549118127,52.952988065412136],[-127.95650879421989,52.95280965340749],[-127.95638278398805,52.95262454625208],[-127.95629308761953,52.95247863432555],[-127.95614235389611,52.95232363869882],[-127.95598514320804,52.95216988040483],[-127.95583254812836,52.95201491530909],[-127.95568914345229,52.951856999452495],[-127.95555122753126,52.95169675034085],[-127.95541238832764,52.95153651640221],[-127.95526807354487,52.95137918011921],[-127.95511282496547,52.951227065062504],[-127.95493284970051,52.95108488404718],[-127.95464912341258,52.95097806299861],[-127.95436405117964,52.950902641629156],[-127.95412582566178,52.95083205590383],[-127.9539122751732,52.95073022927155],[-127.95367771265387,52.95061754127174],[-127.95345588731652,52.950497915722565],[-127.95325399601954,52.950365628490914],[-127.95307856844455,52.95022057136561],[-127.95290858886793,52.95007261673343],[-127.952723035814,52.94993053392627],[-127.95253932156508,52.94978785537663],[-127.95238317485484,52.949636307724624],[-127.95226748593151,52.949472323421354],[-127.95217476465713,52.94930067642003],[-127.95208386676697,52.94912843414401],[-127.95197639322961,52.94896038548249],[-127.95184131427669,52.948800650065046],[-127.95169607181742,52.94864275992977],[-127.95156190819176,52.94848244405668],[-127.95145073741683,52.94831502115931],[-127.95136445915256,52.948141580776706],[-127.95134774329645,52.94796026165901],[-127.95135184803519,52.94778532323289],[-127.95137903205486,52.947605518415806],[-127.95143315004167,52.94742358122253],[-127.95145311143223,52.947248944875845],[-127.95153578438635,52.947059252497645],[-127.9516842382211,52.946982243050655],[-127.95213080005131,52.94694065464936],[-127.95185068209811,52.94687075021306],[-127.951698481179,52.94672362901558],[-127.95158994786743,52.94655279952097],[-127.9514732798876,52.94638770958387],[-127.95131161085736,52.946237372967374],[-127.95113799338903,52.94609060601476],[-127.95096622511038,52.94594379920184],[-127.95079720947597,52.9457958345367],[-127.95062910823547,52.94564728951847],[-127.95046374430031,52.9454975779519],[-127.95030021893409,52.945347270734835],[-127.95013945672052,52.945196361527174],[-127.94998236029429,52.945043714423726],[-127.94983351369248,52.94488812358449],[-127.94968124989144,52.944719137565976],[-127.94954958537949,52.94457222954755],[-127.94937506716097,52.94442603097553],[-127.9491859775834,52.944287355198895],[-127.94899142802186,52.94415157641609],[-127.94880687837531,52.9440100269589],[-127.94862325411366,52.94386846190344],[-127.94841801647905,52.94374351276766],[-127.9482948547303,52.94357852720552],[-127.94812950704498,52.94342881217261],[-127.94794387050415,52.94328391648892],[-127.9477564233148,52.94314017144358],[-127.94758281542627,52.94299339025871],[-127.94743872726737,52.942839403672394],[-127.94733890535579,52.94267515198948],[-127.94727131232291,52.94250195539092],[-127.9472286493986,52.9423233065178],[-127.9472007491478,52.94214161549986],[-127.94718121487291,52.94195922111403],[-127.94716080791221,52.94177796210854],[-127.94714980434735,52.94159878947897],[-127.94716207142031,52.94141866695343],[-127.9471846445953,52.94123950386746],[-127.94721373056224,52.9410602240572],[-127.94725032031674,52.94088195002615],[-127.94728502084638,52.94070314224341],[-127.94730944088452,52.940523939521846],[-127.94733201296464,52.94034477630992],[-127.94734979139417,52.94016288546848],[-127.9474155313936,52.939990289873606],[-127.94757538619909,52.939836870562324],[-127.94772679786873,52.939682478702146],[-127.94776435921479,52.9395053002307],[-127.94775230166344,52.93932334687975],[-127.94770410213404,52.939145910432245],[-127.94757649655345,52.93898548132506],[-127.94742673004788,52.938829337617236],[-127.94727692431306,52.9386726383707],[-127.94714923415549,52.93850996826602],[-127.94704275678183,52.938342463271894],[-127.94694362963725,52.93817259466724],[-127.94684080318227,52.93800335212694],[-127.94673890116198,52.93783408523646],[-127.94664441582586,52.93766358359719],[-127.94656474282267,52.93749115098636],[-127.9464989216345,52.93731568234527],[-127.94644052728614,52.93713953484502],[-127.94638674693901,52.936962190039104],[-127.94633761686812,52.93678476830212],[-127.94628941120726,52.93660733124703],[-127.94623555552451,52.93642831061092],[-127.94619005002342,52.936248586903865],[-127.94617353996655,52.93607118168784],[-127.94622436492466,52.93589827691156],[-127.94635374771308,52.93573135489892],[-127.94648039388434,52.93556559893662],[-127.94661446465017,52.93539915504509],[-127.94679181390711,52.935261705356346],[-127.94703841297037,52.935171311599134],[-127.94732448797308,52.93510828847306],[-127.94760859676818,52.935043055227865],[-127.9478937206701,52.934979490421455],[-127.94812645554474,52.9348713882037],[-127.94825979884745,52.9347094381527],[-127.94822556606529,52.93453177028117],[-127.94810235500752,52.934365107886144],[-127.94790231712332,52.934230539101684],[-127.94772514784998,52.93408662377571],[-127.9476159438088,52.933920285086806],[-127.94752231049142,52.933748083789105],[-127.9474102806709,52.93358122669036],[-127.94729641479624,52.93341496482999],[-127.94718161098173,52.93324871837465],[-127.94706498604462,52.933083066902476],[-127.94694558586733,52.93291801722396],[-127.9468216248059,52.93275528481065],[-127.94669122924313,52.93259433566918],[-127.94653141556495,52.932442284708316],[-127.9463386888677,52.932304229503195],[-127.94611695417797,52.932184033214135],[-127.94588888776556,52.932067860125436],[-127.94571637269009,52.931923299926375],[-127.94558494305574,52.93176013370702],[-127.94548669883974,52.93158856300301],[-127.94540588780997,52.93141110815158],[-127.9452958374998,52.93124645826558],[-127.94512259416429,52.931106402108384],[-127.94490532808896,52.930981636894906],[-127.94466349878954,52.93087017283938],[-127.94441108355925,52.93077177886719],[-127.94414739888826,52.93069206209687],[-127.94386669260874,52.93062719853884],[-127.94358425221725,52.93056516090857],[-127.94331344158763,52.93049228582386],[-127.94308649494359,52.9303800168591],[-127.94288731323805,52.93024318371566],[-127.94261148035439,52.93018272066264],[-127.94231894247389,52.930144387150015],[-127.94202217884406,52.93015657536371],[-127.94172365018964,52.93019120241928],[-127.9414419016381,52.93016446341523],[-127.94125285056741,52.930024662524865],[-127.94114708603956,52.929851535444946],[-127.94101230183834,52.92969570147313],[-127.94074117978784,52.92961609990062],[-127.94045986835208,52.929557964189385],[-127.94017333774082,52.92950831666451],[-127.93988596073378,52.929460368344614],[-127.9395936601787,52.92942707310874],[-127.93928401006988,52.929422087336036],[-127.93898339255169,52.929410791071525],[-127.9387396993133,52.92933970081871],[-127.93858319225806,52.92917749621994],[-127.93846005974788,52.92901137877385],[-127.93836190160083,52.928840921967044],[-127.93827563981651,52.92866579422025],[-127.93821043321063,52.92848246386298],[-127.93801889918207,52.92836960214559],[-127.9377238271235,52.928316170545905],[-127.93744837702037,52.92824335866115],[-127.93724105338529,52.92811113417761],[-127.9370996860078,52.9279537183148],[-127.93698130325348,52.92778920710833],[-127.93687300449042,52.92762115792964],[-127.93676654381242,52.927452522395164],[-127.9366582471612,52.927284481945215],[-127.93655819753627,52.92711349876434],[-127.93644535530946,52.92694776589055],[-127.93627567972783,52.92680315451618],[-127.93605206299507,52.926681284829804],[-127.9358204814078,52.92656851352933],[-127.93558436456482,52.9264586143283],[-127.93535095899463,52.926346993102186],[-127.93512843875503,52.92622846659222],[-127.93491036476527,52.92610538267806],[-127.93468780686308,52.92598629997577],[-127.93443738224124,52.925889529425774],[-127.9341896580698,52.92579047202627],[-127.93395354975112,52.925680569501395],[-127.93372913431571,52.925561515563764],[-127.9335436755692,52.9254177157338],[-127.9334004431526,52.925259770183075],[-127.93339434310138,52.92508443383445],[-127.93342337475079,52.92490292435094],[-127.9333188986754,52.92473649508948],[-127.9331525748332,52.92458284752346],[-127.93292910606398,52.924463776559975],[-127.9326857370488,52.92435791873019],[-127.93260736360939,52.92419161612851],[-127.93260994330907,52.92400212945544],[-127.93258977028077,52.92382479114219],[-127.93238617387088,52.92371210966821],[-127.93211097462539,52.92362358799503],[-127.93185038515756,52.92352810000191],[-127.93158613372746,52.92343435750034],[-127.93132723980486,52.92331473515701],[-127.93114148669987,52.92320513060508],[-127.93099576386257,52.923053383917505],[-127.93087464259513,52.92288946762873],[-127.93076720289706,52.92271916585355],[-127.9306634271513,52.922547117916274],[-127.93055325356416,52.9223779728003],[-127.93043670819668,52.9222123039998],[-127.93035710325643,52.92201856074718],[-127.93025345764794,52.92184930824254],[-127.93006708822679,52.92170551800417],[-127.92982459677842,52.921515567102205],[-127.92969370798154,52.921403374538215],[-127.92953248035539,52.92127934865536],[-127.92947040380143,52.92112287441757],[-127.92945855634555,52.920943713021025],[-127.92946517891605,52.92076088580762],[-127.92944865790678,52.92058123604086],[-127.92942281150874,52.92040174814194],[-127.92940631640371,52.92022266288062],[-127.92939536752911,52.9200429216811],[-127.92938629623431,52.91986315864123],[-127.9293827962405,52.91968329525531],[-127.92936720003836,52.91950363917305],[-127.92935535346717,52.919324477587544],[-127.92936865350218,52.91914490362516],[-127.92939311139519,52.9189651466676],[-127.9294278942263,52.91878689734242],[-127.92947856348256,52.91860951739849],[-127.92955456616893,52.91843619686946],[-127.92965495361335,52.91826640422634],[-127.92973470477096,52.9180935870148],[-127.92979283060482,52.917916640527146],[-127.92988293104705,52.9177458953553],[-127.9300087764977,52.917582975518606],[-127.93014310893587,52.917422149265825],[-127.9302878671429,52.917265079673506],[-127.93043921044047,52.917109587769495],[-127.93058961375044,52.9169541020948],[-127.93071458137813,52.9167923167222],[-127.93080646138567,52.91661985547256],[-127.93085998391987,52.91644410471493],[-127.9308583404147,52.916264219395586],[-127.93089589018439,52.91608536778719],[-127.93093625040262,52.91590702601912],[-127.93096541307374,52.9157283119952],[-127.93095445918074,52.915548579404245],[-127.93092952232831,52.915368511324644],[-127.9309605210335,52.91518920212924],[-127.93102878449068,52.915009846216634],[-127.93115394796777,52.91485254075964],[-127.93138926328734,52.914741063894915],[-127.93161687547331,52.914624108119135],[-127.93176348068044,52.91446700586908],[-127.93187892315267,52.91430088234412],[-127.93197926637272,52.914130531694084],[-127.93208244465049,52.91396124637727],[-127.93221119770377,52.913801073694586],[-127.93240054763685,52.91366232506448],[-127.93259083473596,52.9135235607019],[-127.93276547344597,52.91336880337279],[-127.93291939032797,52.913208772359525],[-127.93297718298803,52.91304528067371],[-127.93289592767509,52.91287679178983],[-127.93271851818562,52.912642058843346],[-127.93245129476149,52.912563496309325],[-127.93219202587694,52.91247526971425],[-127.9319434213682,52.912375666589796],[-127.93171195365142,52.912263441805266],[-127.93150125598355,52.912136867786884],[-127.93129596746726,52.91200628565141],[-127.93107981360457,52.9118825984425],[-127.93085282039173,52.911766379616765],[-127.93062220634586,52.911652461749654],[-127.93039340457099,52.911537392723666],[-127.93017184818599,52.91141772046205],[-127.92996022092728,52.91129115901478],[-127.92975406852217,52.91116170941867],[-127.92955147338785,52.9110288292141],[-127.92935711317257,52.91089245963455],[-127.92917098703305,52.9107525827976],[-127.92899489188737,52.910608066229976],[-127.92882701584547,52.91046004272863],[-127.92866551280233,52.91030856053116],[-127.92851043264828,52.910154721888816],[-127.92836082293337,52.90999856037502],[-127.9282167633208,52.90984117774794],[-127.92807730136228,52.9096826075743],[-127.92794424722446,52.90952168128483],[-127.92781945272901,52.9093578215119],[-127.92770389192708,52.90919213329757],[-127.92759845191725,52.909023472181424],[-127.92750133226062,52.90885355364582],[-127.92740319883146,52.90868196568138],[-127.92730781588168,52.908509220550535],[-127.92722260415552,52.90833462273389],[-127.92715502088946,52.90815861504814],[-127.92711350150654,52.907982180299456],[-127.92710269238324,52.90780524238629],[-127.92710862754987,52.90762746514949],[-127.92712665630374,52.90744949872161],[-127.92715489090405,52.90727080008094],[-127.92718964840867,52.907091994535755],[-127.92723092873527,52.90691308208002],[-127.92727405543357,52.90673413933096],[-127.92731903271556,52.90655460124206],[-127.92736213353565,52.906375102825834],[-127.92740247420281,52.90619620560477],[-127.92743630644772,52.906017414998274],[-127.92747012351606,52.905838624606325],[-127.92750487852888,52.905659818809376],[-127.92753496125263,52.90548052457207],[-127.92755385994512,52.90530142255832],[-127.92755969148075,52.905121404718685],[-127.92755059066553,52.90494107556839],[-127.9275229402683,52.90476217137823],[-127.9274591607111,52.90458778717321],[-127.92734723547923,52.90441978784026],[-127.92723533667797,52.90425235294042],[-127.92712706037372,52.904082616608775],[-127.92700962954216,52.90391639311499],[-127.92687026729081,52.9037594966786],[-127.92668887780626,52.903620668292625],[-127.92646362452444,52.903500484892746],[-127.92622753322925,52.903387769454746],[-127.92598892235713,52.90328126471029],[-127.92574129865473,52.903181067994616],[-127.92548921760984,52.903085427679166],[-127.92522204194655,52.90300628370537],[-127.92495225995383,52.90293110972145],[-127.92468155563715,52.902855950224605],[-127.92441172493619,52.90277965483901],[-127.92414189520174,52.90270335883081],[-127.92387920857188,52.90262021946887],[-127.92365499336789,52.9025022647863],[-127.92356070388551,52.90233229652115],[-127.92342039586958,52.90217484662935],[-127.92324705408306,52.902028034594714],[-127.923065531641,52.90188583104268],[-127.92288028802253,52.90174369702673],[-127.92266428671877,52.90162167828906],[-127.92241933851486,52.901518624081376],[-127.92215839775466,52.90143265447741],[-127.92188241213219,52.90136430092288],[-127.92160470705261,52.90129877280135],[-127.92134109590246,52.901215643027825],[-127.92112686200254,52.901091350702345],[-127.92104176643241,52.90091843232493],[-127.92102899645616,52.90073871860858],[-127.92104227526276,52.90055802336704],[-127.92104538513831,52.90037918016969],[-127.92095940332683,52.90020738817756],[-127.92084848937215,52.90004049624585],[-127.92082152489978,52.90000001626921],[-127.92073665266946,52.8998736103093],[-127.92059549089251,52.89971730100667],[-127.92037662088688,52.89959308307156],[-127.92019159780088,52.89945541629543],[-127.92007050965107,52.89928981074136],[-127.92001038996587,52.89911311184775],[-127.91994211500867,52.89894159496858],[-127.91978720911038,52.89878999302736],[-127.91961568910183,52.89864201607037],[-127.9194395754696,52.89849524379817],[-127.91926628740659,52.89834898116219],[-127.9190875028474,52.8982050499434],[-127.91890965756033,52.898061103133124],[-127.91874185586023,52.89791250825015],[-127.91860249323983,52.89775448127477],[-127.91850633288549,52.89758397450543],[-127.91838614420588,52.89741723155965],[-127.91824678452487,52.897259204114214],[-127.91805892877402,52.89712045928417],[-127.91783097527752,52.897000868847236],[-127.91755596794896,52.896973966008844],[-127.91740736621259,52.89690016214535],[-127.917333493003,52.89662448345529],[-127.91734703326112,52.89647013176749],[-127.91736408420853,52.896290496175155],[-127.91734002783441,52.896107602888804],[-127.91719289870302,52.89596315270117],[-127.91694156552194,52.89586187753258],[-127.91668944672946,52.89576397760015],[-127.91644278671345,52.89566319019719],[-127.91634408244548,52.8954977720327],[-127.91649190365108,52.89534739289078],[-127.91669648949764,52.895216822033895],[-127.91678575722871,52.895048340110165],[-127.91684911614364,52.894842166926615],[-127.91669603195663,52.8946894102685],[-127.91654839541843,52.89453319269884],[-127.91637682840613,52.894383534861404],[-127.91629755028784,52.894215001997324],[-127.91628194279478,52.89403365662373],[-127.91624596459144,52.893854885177056],[-127.91615515368412,52.8936786842598],[-127.9159867431726,52.893536821317994],[-127.91573997157239,52.89343322740733],[-127.91547185113599,52.89335184448478],[-127.9151934212574,52.89328967667841],[-127.91491052349684,52.893231508920266],[-127.91463286765942,52.8931659732128],[-127.91435951991176,52.893092510853016],[-127.91415651333486,52.89296802341136],[-127.9141196722184,52.89279038638896],[-127.91409760388999,52.89261026688584],[-127.91407738666817,52.89242956121879],[-127.91404603872864,52.89225014874097],[-127.9139925505256,52.89207502457922],[-127.91388805490249,52.89190465859159],[-127.9137348658818,52.89174909290075],[-127.91354165742418,52.89161435607315],[-127.91331192052684,52.89149590716483],[-127.91306263477664,52.89139795364735],[-127.9127885896878,52.891329548053044],[-127.91250648039043,52.89126799892062],[-127.91224748294366,52.89118196755366],[-127.91201243542041,52.8910692074728],[-127.9117818582933,52.89095245527915],[-127.9115371738565,52.89085330280138],[-127.91126553151817,52.890775886779146],[-127.91097670642537,52.890709959275036],[-127.91068429238365,52.89066763010147],[-127.91040103046603,52.89066326502448],[-127.91013202272656,52.89072760383459],[-127.90986442066375,52.890823315743205],[-127.90958829394451,52.8908950597989],[-127.90930073372787,52.890940085208285],[-127.90900707325613,52.890973999097476],[-127.90875409159256,52.89100108197324],[-127.90841680090652,52.89101721089115],[-127.90812041493916,52.89103154506747],[-127.907822990932,52.89104366233577],[-127.90752556635447,52.89105576989032],[-127.907229140058,52.89106954645716],[-127.90693382717777,52.89108723214397],[-127.90663972749873,52.891111058339646],[-127.90635204757068,52.891153836432416],[-127.90606977864982,52.89121334084773],[-127.9057854222907,52.891267829495455],[-127.90549435522325,52.89129720855586],[-127.90519761605901,52.891303703125836],[-127.90482247628454,52.89130641818409],[-127.90453291321347,52.891265148560436],[-127.90424414835886,52.891221058363364],[-127.9039640884908,52.891163383679725],[-127.9036865126225,52.891098933257595],[-127.90341068850394,52.891031655860324],[-127.90313573824166,52.89096324270073],[-127.90286078886223,52.89089482889536],[-127.90258497769422,52.890828114361156],[-127.90230737096448,52.89076254025656],[-127.90203071331551,52.89069751512971],[-127.90175309380216,52.89063194891364],[-127.9014773257556,52.89056578713604],[-127.9009505672056,52.89042577021223],[-127.90067460183808,52.89035512584805],[-127.9004183430009,52.890267347598915],[-127.90018795186825,52.89015393314054],[-127.89997105138059,52.89002964642847],[-127.89976324194633,52.88990072850787],[-127.89957817770761,52.88975966795914],[-127.89941321005217,52.889609879587205],[-127.89925915913102,52.88945430973303],[-127.89910515926748,52.889299859837436],[-127.89893748629521,52.88915180046561],[-127.89874712024674,52.88901699415554],[-127.89852116018444,52.88889845606114],[-127.89827445790968,52.88879482520853],[-127.89801812847884,52.888704801051055],[-127.89774045307765,52.88863754053602],[-127.89745833345339,52.888574835028344],[-127.89719860943073,52.888492145803575],[-127.89696734848131,52.888379860221264],[-127.8967576603701,52.88824984646372],[-127.89656167292237,52.88811400642457],[-127.89637843799456,52.88797179048852],[-127.89620247322776,52.88782553806587],[-127.89602557182495,52.88767930049105],[-127.89584330351789,52.88753763312769],[-127.89564744705876,52.88740459643068],[-127.89541904415319,52.88729337381967],[-127.89515630926203,52.887205688814795],[-127.89489183942268,52.88712083813702],[-127.89462655713822,52.88703879793996],[-127.89435859177267,52.886959042352544],[-127.89409963245753,52.886872415182374],[-127.89385672398133,52.88676983515352],[-127.89362813000825,52.88665412830181],[-127.89340494550602,52.886534414946134],[-127.89317359542896,52.88641931659603],[-127.89294125901965,52.886303112702315],[-127.89273269070027,52.8861770018509],[-127.89257622633714,52.88602930922818],[-127.89247827630223,52.88585713387068],[-127.89239787184421,52.88568186906055],[-127.89232958028661,52.88550697418913],[-127.89226775943851,52.88533085413441],[-127.89219387710764,52.88515549314509],[-127.89212159206642,52.88497449251363],[-127.89202012390106,52.88480685728187],[-127.89182846089692,52.88468383574126],[-127.89153865975537,52.88461507016746],[-127.89125095107825,52.884572617789615],[-127.89095628766354,52.884540930395026],[-127.89067535150639,52.884483229949666],[-127.8903995907476,52.884415921760564],[-127.89012289308732,52.88434862799938],[-127.88984198436656,52.88429149012821],[-127.88954196531525,52.884264925259856],[-127.8892500391713,52.88423206866034],[-127.889007480017,52.88413675515597],[-127.88880114622575,52.883997705842944],[-127.88857114242673,52.8838915448969],[-127.88827906596234,52.883876059072094],[-127.88797372234126,52.88387647933019],[-127.88769827766134,52.883816450696465],[-127.88743473144635,52.883730438864575],[-127.88715216859838,52.8836357728505],[-127.88697813862537,52.883490031973025],[-127.88678492840303,52.88335245452246],[-127.88656463808663,52.88323435905959],[-127.88630911633379,52.88314037809132],[-127.8860563690695,52.88304578709246],[-127.88580182160564,52.882952901428325],[-127.8855499748494,52.88285773891359],[-127.88530256491619,52.882757455818606],[-127.88505695229631,52.882656022413826],[-127.88481404006717,52.8825523032502],[-127.88457561431626,52.88244458375585],[-127.88434441943983,52.882332272927556],[-127.8841231442174,52.8822125118089],[-127.88391092544211,52.88208700024339],[-127.88370321820106,52.88195805306906],[-127.88349822113753,52.88182737615864],[-127.8832914146865,52.88169785783679],[-127.88309825871146,52.88156138563891],[-127.88292968458174,52.88141219756499],[-127.88273754320491,52.88127739449259],[-127.88248831308105,52.88117769078914],[-127.88226787292554,52.881055670937755],[-127.88206198672222,52.88092557080109],[-127.88193108156386,52.88076512441822],[-127.88176015162645,52.88062549627714],[-127.8815081543381,52.88052639982486],[-127.8812306326544,52.88046078474909],[-127.88093468200704,52.88048345640591],[-127.88072115667576,52.8805810352448],[-127.88067796951842,52.88076276003449],[-127.88068048279263,52.88103063406808],[-127.88081602793802,52.88119100751454],[-127.88091106280568,52.88136156182005],[-127.88094590997467,52.881539240025454],[-127.88094826431437,52.881719115111146],[-127.88094970587329,52.88189956975584],[-127.88096986689702,52.8820819668107],[-127.88096753796138,52.882261360767906],[-127.88090355289256,52.88243558033466],[-127.88079861902924,52.882610446031435],[-127.88064910268355,52.88276641219503],[-127.8804449590238,52.88288682465713],[-127.88019217458083,52.88298110225812],[-127.87992036302174,52.883066159737915],[-127.87965998604501,52.88315720359901],[-127.87941109262707,52.883255345142985],[-127.87916998637257,52.883361208501015],[-127.8789424217859,52.88347862068076],[-127.8787785876409,52.883626966224526],[-127.87865651649822,52.88379314472415],[-127.87859344217078,52.88396733915719],[-127.87858097572119,52.884149136644375],[-127.87850847395704,52.88432068366954],[-127.87836936702202,52.884480964110615],[-127.87828386395913,52.884653283643445],[-127.87816283409477,52.884822242766376],[-127.8779082958036,52.88489805147676],[-127.87761633024577,52.884948674939906],[-127.87736065498771,52.88504131522709],[-127.87710422823572,52.88513788586506],[-127.87685556408147,52.88524162281609],[-127.87662505183341,52.88535572321128],[-127.87642398849857,52.88548336080151],[-127.87626755592169,52.88563101929031],[-127.87614353432963,52.885795539907114],[-127.87603093280525,52.88596604797044],[-127.87590698310653,52.88613224410366],[-127.8757526292276,52.8862849174807],[-127.87557936119136,52.88643061052254],[-127.87539565268625,52.886571976958315],[-127.87520532460304,52.88671121567895],[-127.8750111651642,52.88684770824603],[-127.87481415656842,52.88698312492241],[-127.87459625888366,52.88710934155552],[-127.87436288256632,52.88722236181931],[-127.87435538816979,52.88739062724295],[-127.87443138231231,52.8875732552194],[-127.87448566458195,52.887748938497694],[-127.87436902397236,52.887912218165475],[-127.87416315930277,52.88803712998441],[-127.87387609809787,52.88809382633198],[-127.87359970703515,52.8881604496427],[-127.87331919900222,52.88821816114234],[-127.87302418731868,52.88824248283294],[-127.8727284485975,52.88822925832565],[-127.8724311102575,52.888221663410356],[-127.8721322652677,52.88822249453744],[-127.87183566530229,52.88823170093033],[-127.87154462040104,52.88826156059498],[-127.87126435491881,52.88832486812826],[-127.87097571094445,52.8883670188323],[-127.87067692561514,52.888390264708036],[-127.87038102254013,52.88841571487564],[-127.87009725771865,52.88846282566049],[-127.86982949496303,52.888535463572836],[-127.86956588552731,52.888617558575504],[-127.86930723945751,52.88870686484142],[-127.86905159750002,52.88880117160747],[-127.86879790367827,52.88889712379949],[-127.86854513170942,52.88899306076977],[-127.86829908510236,52.88909393018133],[-127.86806558298264,52.88920469743031],[-127.86782924625052,52.88931437928396],[-127.86758810169457,52.889420783066576],[-127.86730318776219,52.8894847197044],[-127.86701997675483,52.88954470072144],[-127.86683477333717,52.889674310899984],[-127.86670727622007,52.88984560137403],[-127.86664883842832,52.89002084414447],[-127.86679497739873,52.890338555758625],[-127.86649852408235,52.89033037558491],[-127.86619668395076,52.89032675506775],[-127.8659158261255,52.890291978678164],[-127.86568288992753,52.89018190138521],[-127.86546860393892,52.89005134136061],[-127.86528460032599,52.889910776806644],[-127.86513168458556,52.88975683218043],[-127.86499247373298,52.889597056165364],[-127.86484775497004,52.88943905328208],[-127.86470214841867,52.889282185269906],[-127.86455288507815,52.88912649603809],[-127.86439355231282,52.888974894163624],[-127.86423417127334,52.88882216290685],[-127.86407204203607,52.88867060494487],[-127.86390171885117,52.888523095567464],[-127.86371868918073,52.88838306917594],[-127.86341461585701,52.88826402643481],[-127.86320186508034,52.88816818805331],[-127.86298088904557,52.88809714988666],[-127.86271121358607,52.888062188878266],[-127.86240789644731,52.88806699403166],[-127.86212504086454,52.888092772705484],[-127.86180869824278,52.88805518585726],[-127.86152888776878,52.88800132620943],[-127.86125914175965,52.887922080332956],[-127.86099023714637,52.887840587565236],[-127.86071801265751,52.88776867047172],[-127.8604448903791,52.88769732296575],[-127.86017442136287,52.88762257892443],[-127.85988820203114,52.88754976040151],[-127.85969671686568,52.8874289181364],[-127.85963012417083,52.88724725388919],[-127.85947461068359,52.887097262116],[-127.85928423785269,52.88698032947091],[-127.8590622234466,52.88688519523924],[-127.85876319998174,52.886796326985994],[-127.85847842984191,52.88675654624248],[-127.85818337528637,52.886737113731826],[-127.85788489211551,52.88672445149754],[-127.85758720083327,52.886708422065055],[-127.8572919024732,52.88668337738187],[-127.8569965560279,52.88665722072337],[-127.85670198605754,52.88662767919974],[-127.85641264786558,52.886589651572294],[-127.85612920567141,52.886537522565476],[-127.85585516113495,52.8864661791514],[-127.85558715020026,52.8863835391899],[-127.85531911572066,52.886300334034615],[-127.85504873752272,52.88622725395259],[-127.8547708813097,52.88617502461635],[-127.85447580789818,52.88615501821715],[-127.85417362133822,52.88616426836487],[-127.85387602421328,52.886193066738706],[-127.8535921923347,52.88623901779929],[-127.85331285132281,52.886302267841664],[-127.853038641548,52.88637665494315],[-127.85276919690097,52.8864537642192],[-127.85250264730321,52.88653306917026],[-127.85223901688381,52.88661512543329],[-127.85197640617206,52.88669941591805],[-127.85171476566948,52.886784802510796],[-127.85145316353825,52.88687075286164],[-127.85119152132475,52.88695614724256],[-127.85093091284678,52.88704375770477],[-127.85067419540985,52.8871352341731],[-127.85041556740717,52.88722561916581],[-127.85015287616666,52.88730822076946],[-127.84988125853057,52.8873780756305],[-127.84959185610583,52.88742466045575],[-127.84929690912813,52.88745059844943],[-127.84899903146687,52.88745192061763],[-127.84870375750158,52.88742741895976],[-127.84845936185474,52.88733094004238],[-127.84829460742064,52.887181635393695],[-127.84814075192453,52.88702599838241],[-127.84798322453993,52.88687153985101],[-127.84780752760341,52.8867274553445],[-127.84760273932586,52.88659952123613],[-127.8473742722854,52.88648373344437],[-127.84713307203253,52.88637486208294],[-127.84688916232409,52.88626771872972],[-127.84665163790922,52.886157676665015],[-127.84642958357571,52.88603953546442],[-127.84623396091577,52.885908092196104],[-127.846054600895,52.88576518362619],[-127.84588884133746,52.88561365851442],[-127.84573492730526,52.88545633342172],[-127.84559476876011,52.88529431730565],[-127.84546847673714,52.885129832458695],[-127.84535800962185,52.884965108042785],[-127.845332635636,52.88478782927879],[-127.84533724242954,52.88461457271434],[-127.84534412319341,52.88442950584196],[-127.84539039346518,52.8842511024182],[-127.8454385729327,52.88407379891085],[-127.84543639239463,52.88389447902182],[-127.84542387375377,52.88371307947238],[-127.84539467272181,52.88353306274201],[-127.84534141417242,52.88335678651897],[-127.84525579634723,52.88318550204956],[-127.84514523769084,52.883018527867115],[-127.84501890603057,52.88285293106232],[-127.84488890222666,52.88268850374587],[-127.8447672166272,52.882522833753335],[-127.84466502688132,52.88235572777546],[-127.844594323001,52.88218477372732],[-127.84457643552815,52.88200794205948],[-127.84459748410904,52.88182769251729],[-127.84463335944022,52.88164553332637],[-127.84466066050697,52.88145902478952],[-127.84493635429126,52.88152700493655],[-127.84521631937636,52.88158594071565],[-127.84550838784425,52.88162339645787],[-127.84580707383797,52.881641682201064],[-127.84603586730732,52.88161511418749],[-127.84626517077129,52.881450094013786],[-127.84647157134518,52.88131513420478],[-127.84669467615197,52.881200653935274],[-127.84689691613265,52.881076977306165],[-127.84704421286577,52.88093173533096],[-127.8471869619907,52.88081011386112],[-127.84742594782233,52.88065390678451],[-127.84763838404031,52.88052950355106],[-127.84783062029756,52.88041157827436],[-127.84802486192875,52.880275694628146],[-127.84822293499695,52.88014198335479],[-127.8484506390609,52.88002630621698],[-127.8486831314743,52.879913916206384],[-127.84889742082439,52.87978948138043],[-127.84909548928479,52.87965577755798],[-127.84929160802845,52.87952041810893],[-127.84949704276737,52.87938491172284],[-127.84968245791362,52.879260364686345],[-127.84987290922406,52.87912285142081],[-127.85006304018901,52.879021213854394],[-127.85031462863718,52.87891972952507],[-127.85056395287013,52.87883061093743],[-127.8506455925871,52.87865277747376],[-127.85085610034959,52.87852727735851],[-127.85113849510815,52.878492564245185],[-127.8514415039545,52.87850348550703],[-127.85160003000578,52.8785099562085],[-127.8517085054051,52.87847853723237],[-127.85182950061014,52.87830680865227],[-127.8518701317024,52.87812793430436],[-127.85187908685437,52.877948438004466],[-127.85193090393747,52.87776994335174],[-127.85205999482477,52.8776132154776],[-127.85226508273189,52.877491725891154],[-127.8525471410355,52.87742786930749],[-127.85283974213057,52.877392426117034],[-127.85313926086627,52.87736640586519],[-127.85343690957535,52.87733985832983],[-127.85372472932009,52.877301690363616],[-127.8539956706651,52.877239126538825],[-127.8542383481654,52.87712599925427],[-127.85442858026471,52.876983997613834],[-127.85450694250514,52.87681685741265],[-127.85450165831942,52.87663142438801],[-127.85447088004065,52.876330368462085],[-127.85473337318848,52.87624495165647],[-127.8550063129401,52.87618571671511],[-127.85530757152112,52.87613556687408],[-127.85555947422297,52.876085065499296],[-127.85586243159842,52.87600966101309],[-127.8561072153429,52.875923964668615],[-127.85639811381766,52.87589246715728],[-127.85669234078438,52.875915844045316],[-127.85696134320109,52.87597997377816],[-127.85721958955581,52.87607510412464],[-127.85743005897469,52.87620573015609],[-127.85766545167344,52.876310188487736],[-127.85794892541364,52.876364554529026],[-127.85824533450486,52.87639518390914],[-127.85854133793438,52.87641684220293],[-127.85883948020117,52.87642333726422],[-127.85913282680609,52.87640524599215],[-127.8594232375804,52.876362538991884],[-127.85971071807107,52.87631651470391],[-127.85999718719627,52.87626882872824],[-127.86028360639207,52.87622001289056],[-127.86057104585322,52.876173431110615],[-127.8608596664586,52.87613242582453],[-127.86115031824383,52.87609531555466],[-127.86144198071035,52.87605987449807],[-127.86173360314604,52.87602386837189],[-127.86202320816155,52.8759839655748],[-127.8623117039072,52.875940160698896],[-127.86259913926494,52.87589357395219],[-127.86288357043466,52.87584198522932],[-127.86316494835454,52.87578427435161],[-127.86344795071864,52.875721497121354],[-127.86371150706933,52.87563941493462],[-127.86394891174704,52.875534197387154],[-127.86418421036157,52.87542341682092],[-127.86441559077484,52.875308205033306],[-127.86464214045994,52.875189150462994],[-127.86486012902932,52.87506574735265],[-127.86506958119755,52.874938560329504],[-127.86524054575139,52.87480412789059],[-127.86538925103346,52.874650435825835],[-127.86559003271948,52.87449536093943],[-127.86568501502703,52.87432626249757],[-127.86571745089189,52.874153116920695],[-127.8657003037662,52.87397403253668],[-127.86566252297577,52.87379135672836],[-127.86562755558649,52.873587893639204],[-127.86547264044346,52.87342948764743],[-127.86524191228003,52.87332553565333],[-127.86497599732125,52.87324680311125],[-127.86469836732266,52.87317666767486],[-127.86442255884594,52.873105937724944],[-127.86414771311891,52.87303574787448],[-127.86386745940594,52.87296957106658],[-127.86359174219568,52.872900523705816],[-127.8633277174019,52.87282231353827],[-127.86311776058207,52.87270345543089],[-127.8629510046821,52.87255084779479],[-127.86277065834648,52.87240685818801],[-127.86259399945997,52.872261688892394],[-127.86241640426336,52.872116534174666],[-127.8622369744131,52.871971964270934],[-127.86205484640902,52.87182968777386],[-127.86186638768889,52.87169143023634],[-127.86167068541978,52.87155777106233],[-127.86146404364028,52.87142932476289],[-127.86124083351565,52.87130506841598],[-127.86100132393656,52.87119115857039],[-127.86074860587392,52.87109427206052],[-127.86048295761388,52.8710211302668],[-127.86020455008689,52.87097565830217],[-127.85991129277743,52.870952275295046],[-127.85961113301731,52.87094133154297],[-127.85930742405404,52.87093436211809],[-127.85898810195634,52.87091083317915],[-127.85865894753032,52.87089641773576],[-127.85856410184918,52.87087718410884],[-127.8584547551589,52.87080268683191],[-127.85820296778944,52.87070578023588],[-127.85792501355616,52.87064907702142],[-127.85763315622039,52.87061502144468],[-127.85733694907674,52.87058775079318],[-127.85704333016106,52.87055596356013],[-127.85674923758815,52.870534827884676],[-127.85644299325836,52.87053349605347],[-127.85618149610292,52.87059815930107],[-127.85597140919687,52.87073207560611],[-127.8557183988622,52.87082070027289],[-127.85538696731503,52.87088254702813],[-127.85509030980869,52.87086648758799],[-127.85480528409242,52.87081830048124],[-127.85453049351435,52.87074865262957],[-127.85426282761892,52.87067160987177],[-127.85401379939242,52.87057352994713],[-127.85377011823708,52.870470316286195],[-127.85352469088284,52.87036938059292],[-127.85327115462047,52.8702747331595],[-127.85301769233827,52.87018176100504],[-127.85276148270816,52.87008996157312],[-127.85250710004628,52.86999700285202],[-127.85225719101054,52.869900054150726],[-127.85201530519416,52.86979513165911],[-127.85170631442863,52.86964475003243],[-127.85159033220951,52.869545689634585],[-127.85134847417753,52.86944132137121],[-127.85107719946912,52.869366570319976],[-127.8508238691669,52.869276398387],[-127.85054580137691,52.86910926813277],[-127.85027330059353,52.86902779975076],[-127.8500773809057,52.86890926289851],[-127.85002588403096,52.86873071747692],[-127.84998913660029,52.86854857690031],[-127.84992330911324,52.868361289196194],[-127.84984997989707,52.868194297101404],[-127.84967751539902,52.86805856676787],[-127.84940347912394,52.86798441144473],[-127.84914182263962,52.867894931999786],[-127.84889997996555,52.867790558590045],[-127.84865810516177,52.867685073191765],[-127.84841894099274,52.867577858722825],[-127.84818154084029,52.867468374083444],[-127.84794778876365,52.86735714566059],[-127.84771858359885,52.86724361230639],[-127.84750120946667,52.86712372266009],[-127.84735568481383,52.86696514594661],[-127.84723772988539,52.86679885380962],[-127.84712443310818,52.866632488330985],[-127.84695435366896,52.866487192800186],[-127.84674215294488,52.86635769666095],[-127.8465823127866,52.86621223968655],[-127.8464911202738,52.866040477366376],[-127.84635848628137,52.86587889890989],[-127.84620756049297,52.86572433355122],[-127.84602186549603,52.86558376594052],[-127.8458052964556,52.865460497663165],[-127.84557158602853,52.86534982896221],[-127.84532971842584,52.865244336786205],[-127.84509148924558,52.86513653607322],[-127.84485686951699,52.86502644523551],[-127.8446231395003,52.864915210029714],[-127.84438853707745,52.86480511800812],[-127.84415304658232,52.8646961514757],[-127.84391480894874,52.864588357535595],[-127.84367748545391,52.864479983809204],[-127.84345368328414,52.86436130870197],[-127.84326029745203,52.86421468764661],[-127.84303000318226,52.86411797711382],[-127.8427372866883,52.86410575332742],[-127.84239248213117,52.86415879717264],[-127.84213934766363,52.864136427454625],[-127.84182230773521,52.86405675919738],[-127.84152804046985,52.86396553241603],[-127.84126352493627,52.86385197519892],[-127.8411023427202,52.863739596312755],[-127.84090599820343,52.86361039746321],[-127.8407284888858,52.86346465356791],[-127.84056653012291,52.863312495973425],[-127.84044595027059,52.86314903628455],[-127.8403547894139,52.86297727783399],[-127.84024798299154,52.862809683274534],[-127.84011534923165,52.86264697699254],[-127.83997250445256,52.86248498646362],[-127.83980512742349,52.86233684057405],[-127.83960156261067,52.86221223655446],[-127.83936614699951,52.862104380472296],[-127.83911170568568,52.86200859646063],[-127.83884643635295,52.86192027219848],[-127.83858137044638,52.86183698407478],[-127.8383164410188,52.8617564911859],[-127.83804794753156,52.86167998136484],[-127.83777770676039,52.86160574022292],[-127.83750566496828,52.86153321258425],[-127.83723274958008,52.86146180999487],[-127.83695978722437,52.86138929550927],[-127.83668866116567,52.86131618672431],[-127.83641577285405,52.86124534681954],[-127.83620465733344,52.86124752531315],[-127.83591692858418,52.861393820428475],[-127.83567962995018,52.86150122273935],[-127.83547404454833,52.86163222561794],[-127.8353215574296,52.861785939185694],[-127.83521544469454,52.86195798477126],[-127.83499881491959,52.86207010266245],[-127.83472014439143,52.862146196753265],[-127.83443347697487,52.862187664819416],[-127.83413657035045,52.86220742853428],[-127.83384709589134,52.86224838296773],[-127.8335777929096,52.86232600506453],[-127.83340640997316,52.86247328496178],[-127.83314574619497,52.86255694105749],[-127.83303239717522,52.86240961994893],[-127.83304968434288,52.862227196567005],[-127.83304564912915,52.862046782780446],[-127.83300978180523,52.861861816706195],[-127.83278655479533,52.861777306978226],[-127.8324838364802,52.861748399343284],[-127.8322070659622,52.861695545873964],[-127.83201314544311,52.86155676201155],[-127.83190180595152,52.861390916909045],[-127.83181988507316,52.86121675726605],[-127.83176290976198,52.86103828973182],[-127.83170777972565,52.860859793390055],[-127.83158378631352,52.860702548051684],[-127.83137629339971,52.86057238651791],[-127.83117417338964,52.86043765699261],[-127.83103433547095,52.86027953704988],[-127.83091274339769,52.86011328579511],[-127.83077109597889,52.85995631471033],[-127.8305691493361,52.859825509359396],[-127.83033799342617,52.859707480456926],[-127.83014983538632,52.859572531703776],[-127.83001640914529,52.85941206874356],[-127.82991597602248,52.85923988202366],[-127.82984336576274,52.85906558491057],[-127.82984775320956,52.858886160664944],[-127.82986044387047,52.85870492113211],[-127.829865768434,52.858525482247785],[-127.82986270849304,52.85834561792701],[-127.82983270137832,52.85816672928802],[-127.82979989775004,52.85798788417936],[-127.82978401323615,52.85781269447045],[-127.82977789278883,52.85764857139362],[-127.8297422836647,52.85744735040463],[-127.82972633663972,52.8572710406327],[-127.82969883953001,52.85710725042337],[-127.82969535630023,52.85687414170423],[-127.82975202614159,52.856698942864064],[-127.82966243616875,52.85654060355459],[-127.82959359853483,52.85638922285061],[-127.82961551499142,52.85620616240492],[-127.8296358359821,52.85602928766512],[-127.82969892473099,52.85585175578999],[-127.82977886799846,52.85567675929934],[-127.8298823733799,52.85550867758593],[-127.82999897566135,52.85534264266026],[-127.83008647446408,52.85517032613423],[-127.83015890525108,52.854993769312465],[-127.83026250364577,52.854827927648536],[-127.83046143686114,52.85469423875172],[-127.83064615117173,52.854554601199276],[-127.83075605465892,52.854384176842565],[-127.83078936189649,52.854206543227455],[-127.83070557612682,52.85403185536026],[-127.83050283166705,52.853903304234905],[-127.83025647296867,52.85379896386268],[-127.82999508791846,52.85371280168418],[-127.82980973901101,52.853577808543164],[-127.82978984897467,52.85339595489176],[-127.82967675199616,52.85323181165052],[-127.82940428769837,52.853169361307636],[-127.82911127508132,52.85312684292872],[-127.82882545083899,52.853078042054115],[-127.82854731468929,52.8530134360961],[-127.828306616146,52.852910689577676],[-127.8280819561524,52.852791434322754],[-127.82785459741774,52.852674471565095],[-127.82761921614659,52.85256547107195],[-127.82735269809154,52.852489471810195],[-127.82706927768085,52.8524316615244],[-127.82680175217283,52.85235399075324],[-127.82653507807096,52.85227462916311],[-127.82626226447415,52.852203765276926],[-127.82598331124996,52.85214139905319],[-127.82569979946929,52.85208135394884],[-127.82540934136034,52.85207633504494],[-127.82511378294119,52.85210446798422],[-127.82481928125651,52.852135390684914],[-127.82452564414496,52.85216461326231],[-127.82423194383375,52.85219271510353],[-127.82393688968405,52.85221074843322],[-127.82363782923181,52.85222211735244],[-127.82334249008595,52.85221156421953],[-127.82305600508785,52.852168929590675],[-127.82277600017305,52.85210377419152],[-127.8225049574569,52.852030632256145],[-127.82224089826792,52.85194673658425],[-127.82198932826236,52.85185030691299],[-127.82173853841182,52.851750510655044],[-127.82148313270373,52.851651341451735],[-127.82123132693671,52.851549308967876],[-127.82099321144088,52.85144090284571],[-127.82077608864351,52.851323203054456],[-127.82060101267243,52.85118803656387],[-127.82051450234549,52.851013949035405],[-127.82045452844794,52.8508293524313],[-127.82033608776052,52.85066976731669],[-127.82006803592137,52.85057920290007],[-127.819778286739,52.850568554373744],[-127.8194765837914,52.85058331674035],[-127.81917591864068,52.85057844965965],[-127.81887579311385,52.85056459667955],[-127.81859753943756,52.85051846099174],[-127.81839361531505,52.85038261694784],[-127.81835059959867,52.85020280570854],[-127.81824327603661,52.8500419255001],[-127.81800497064901,52.84992903250138],[-127.81772694285854,52.849866076676236],[-127.81745063186534,52.84979973071253],[-127.81717432173168,52.84973338409633],[-127.81688848654426,52.84968344280426],[-127.81660872191557,52.849623309193504],[-127.81634661979791,52.849541047269604],[-127.81609061310505,52.849449166722486],[-127.81583728428974,52.84935443730953],[-127.81558209741914,52.849259736081564],[-127.8154222128185,52.84910918961839],[-127.81517117580921,52.849024512161975],[-127.81488758059314,52.84896163577241],[-127.81460159538244,52.84890832840528],[-127.81431144661887,52.84886628544703],[-127.81401679327425,52.84884953777252],[-127.81371942233872,52.8488563718016],[-127.813423607586,52.84887775372559],[-127.81313514948265,52.84891919888927],[-127.81285991087745,52.84898734270209],[-127.81259159084391,52.84906491185807],[-127.81232618486419,52.84914523337322],[-127.81205692545872,52.84922280679582],[-127.81179344825458,52.84930478325904],[-127.8115448102806,52.84940781979234],[-127.81130522014928,52.84952697485647],[-127.81106311831385,52.849630474499904],[-127.8108045427561,52.8496748159929],[-127.8105168507767,52.849603024481034],[-127.81023671562059,52.84953392273462],[-127.80996747484258,52.849458482626346],[-127.80970703162394,52.84937113167062],[-127.8094752196287,52.84925700071487],[-127.80924106435273,52.849153559133335],[-127.8089416754671,52.84913462972819],[-127.80865383697089,52.84908132755907],[-127.80836614604335,52.849053248793254],[-127.8080692477325,52.84907127093457],[-127.8077771122475,52.84911388041506],[-127.80750663811092,52.84918474511529],[-127.80725815683047,52.849291697911156],[-127.80700841987249,52.84939082266812],[-127.80673226669263,52.84943766751254],[-127.80643295992843,52.8494428268493],[-127.80612982833844,52.849423391826434],[-127.80583905591901,52.849388628421224],[-127.8055539448547,52.849333599795365],[-127.80528023887896,52.84926213663467],[-127.80503067744971,52.849167891365035],[-127.80480786661582,52.84904632227709],[-127.80459588064612,52.8489167486405],[-127.8043865821038,52.84878488243712],[-127.80414815653624,52.8486898993032],[-127.80385308194967,52.848663043946125],[-127.80355271450541,52.84864299494898],[-127.80325144907304,52.84862352394333],[-127.80297301165281,52.848572305618134],[-127.80270875166437,52.84848220004564],[-127.8024813344541,52.84836126231425],[-127.80232618760486,52.848211755942515],[-127.8021856305272,52.848055290724204],[-127.80205145585055,52.8478959294758],[-127.80192277975517,52.84773424177798],[-127.80179865033222,52.847570242249795],[-127.80167723229238,52.847404524025244],[-127.80155861090648,52.84723875380937],[-127.8014408804862,52.847071857801964],[-127.80132223747546,52.846905531670444],[-127.80120364270195,52.84674032564754],[-127.80108783002062,52.846575076840374],[-127.80097753915952,52.84640805730615],[-127.80087184244856,52.84623985522003],[-127.800766122732,52.84607108841653],[-127.80065859210453,52.84590347024732],[-127.80054736770575,52.84573646460227],[-127.80043066204748,52.845571793781964],[-127.80030292118121,52.84541008993657],[-127.80015584331042,52.84525316621518],[-127.80000102303711,52.845110933605916],[-127.79999042769033,52.84510212820717],[-127.7998141514388,52.84495853823417],[-127.7995816334524,52.844848326917],[-127.79934253167085,52.84473653007251],[-127.79912602294259,52.84460924906001],[-127.79901788771677,52.84444892945351],[-127.79896661026997,52.844269794339745],[-127.79894864433494,52.844086230043985],[-127.79897932734882,52.84390976737584],[-127.7990677707739,52.84373522682675],[-127.79909089894856,52.843556072888354],[-127.79905176041282,52.843377881712954],[-127.79891850180562,52.8432173818119],[-127.79874399282379,52.84307096521709],[-127.79855946595075,52.84292974167799],[-127.79837583889102,52.84278794807407],[-127.79820597335198,52.84264145959214],[-127.79805346916986,52.84248742322684],[-127.79790915819962,52.84232933334736],[-127.79777497028896,52.84216884638443],[-127.79764999821452,52.84200597625714],[-127.79754251349257,52.84183891044678],[-127.79746171621977,52.84166527520925],[-127.79739108011775,52.841489807417766],[-127.79734446760936,52.84131060002197],[-127.79725460541809,52.841142152210146],[-127.79707456646328,52.84099693876181],[-127.7969358878335,52.84083988245613],[-127.79687539143671,52.840662008251606],[-127.79687158221095,52.84048327563842],[-127.7968890942449,52.84030308683278],[-127.79692060209734,52.84012381379284],[-127.79696050506968,52.839944968265534],[-127.79699836869064,52.83976222600938],[-127.79705032216823,52.83958263999921],[-127.7971371885564,52.839414841421686],[-127.79730422438634,52.83927384915779],[-127.79754961687804,52.83916079365325],[-127.79779262889043,52.83905730682744],[-127.79804724096684,52.83896429561808],[-127.79830185155537,52.83887127488927],[-127.79855356247069,52.838775500039716],[-127.7988052573861,52.838679724872634],[-127.79905891926107,52.83858616096236],[-127.79931454219825,52.83849537335961],[-127.79957589647402,52.83840785131208],[-127.79984726120864,52.83833755486144],[-127.80000054186213,52.83831166495378],[-127.80013537702663,52.83828942053012],[-127.8004265241062,52.838246843892406],[-127.8007039354321,52.8381876624878],[-127.8009432406812,52.83808479068968],[-127.80116298792385,52.8379592338353],[-127.80141687688393,52.83787126605144],[-127.80170291598301,52.83781811075734],[-127.80197513944685,52.837746119094234],[-127.8022375475699,52.837661937692175],[-127.8025028776298,52.83758108273637],[-127.80277112030184,52.83750298041037],[-127.80302864936324,52.83741326718935],[-127.80328783209461,52.83731905303899],[-127.8035231955943,52.837211187397806],[-127.80371189138565,52.83707713458336],[-127.80386719947221,52.83692341669285],[-127.80400634503202,52.83676153503425],[-127.80414559954018,52.836601902431674],[-127.8042960607981,52.83644377442325],[-127.80443992842507,52.836283505550256],[-127.80456134941984,52.8361202184819],[-127.80464065000814,52.835950287731336],[-127.80468155725211,52.835774230050355],[-127.80469815990187,52.83559517396092],[-127.80470165791644,52.835414086260315],[-127.8047032495544,52.83523189788877],[-127.80471420529847,52.83505125153132],[-127.80474381783537,52.834872004358445],[-127.80478929128992,52.83469419035829],[-127.80484600140745,52.834517880588024],[-127.80491391869721,52.83434308445113],[-127.80499304887682,52.83416923686363],[-127.80507688857274,52.833997002752106],[-127.8051756901366,52.833826771528614],[-127.80525487471964,52.83365460879764],[-127.8053041001276,52.83347729272971],[-127.80534394687932,52.833298443825605],[-127.80539373795209,52.83311271608229],[-127.80509826506325,52.83289811120112],[-127.80532295880953,52.83278031638638],[-127.8055524557892,52.832666366210326],[-127.80579640451802,52.8325645330846],[-127.80604707732454,52.83246763594251],[-127.80629965487344,52.83237182992333],[-127.80655509735689,52.83227765624949],[-127.806773793699,52.83217228160304],[-127.8069991400092,52.83204831242507],[-127.80718373037519,52.831950187758416],[-127.80744919997204,52.83180765536991],[-127.8076922048188,52.83168341293738],[-127.80789464427843,52.83158949621476],[-127.80814446490817,52.83149484946609],[-127.80836149536881,52.831372117585126],[-127.80855552052311,52.83123348983281],[-127.808715609722,52.831083618648975],[-127.80881815429107,52.83091444704157],[-127.80892724281495,52.830746304445974],[-127.80909109274542,52.83059748673211],[-127.80927661427793,52.8304556256966],[-127.80944797584337,52.830308942607445],[-127.80959100029126,52.83015147715763],[-127.80972457492004,52.82999080316807],[-127.80986947956956,52.829833873310854],[-127.81002170656197,52.829674588382474],[-127.81019976373535,52.82953227579301],[-127.81044407860837,52.829439394617566],[-127.81073252114987,52.82937889700417],[-127.81098528368099,52.829288117383165],[-127.81119375867803,52.82916159278904],[-127.8113887487256,52.829024065965925],[-127.81159232151248,52.82889145528587],[-127.81181893839839,52.82877641545214],[-127.81205893394478,52.82866958056377],[-127.81230467859963,52.82856714036919],[-127.81255234280721,52.828465790989334],[-127.8127962032246,52.828362822795775],[-127.81303245347279,52.82825547866747],[-127.81325625952607,52.828139923297364],[-127.81345693224952,52.828005111966085],[-127.81362522758106,52.827852299611195],[-127.81371604804123,52.82767041716761],[-127.81372879792752,52.827489175780954],[-127.81371850331126,52.827312783316685],[-127.81373127708031,52.82713210649666],[-127.81378952856683,52.82697146088788],[-127.81383875880935,52.8267952697029],[-127.81392344598339,52.82662244961607],[-127.81399128077025,52.82644652686314],[-127.81395304099229,52.826268880114796],[-127.81392683946254,52.82608992634225],[-127.81390804680886,52.825910293091695],[-127.81385773727132,52.825732832755634],[-127.81383247297737,52.82555386443074],[-127.81384311873168,52.82534519546039],[-127.81385508089646,52.82518919274713],[-127.8138856083157,52.82501048331682],[-127.8139340422741,52.82483766710988],[-127.81398042685738,52.82466038958734],[-127.81404266911919,52.824484552948675],[-127.81408157324503,52.824306278902526],[-127.81409253411596,52.82412675066541],[-127.81411000560307,52.82394712179301],[-127.81415731009096,52.82376982985709],[-127.81416689539334,52.823667115327595],[-127.8141176104995,52.82355745465093],[-127.8139542362412,52.82358520612109],[-127.81366039901171,52.823627295025325],[-127.81336656954792,52.82364752818545],[-127.81307683209592,52.823611091750095],[-127.81279456837623,52.82355379634298],[-127.8125064282135,52.82351116390518],[-127.81221915353495,52.823466831433976],[-127.81195362350162,52.82338742083101],[-127.8117301577328,52.82326980271125],[-127.81150663653526,52.82315049905879],[-127.81127853556832,52.823032951628726],[-127.8110282013883,52.82293928761881],[-127.81074685773315,52.82288141716853],[-127.81045839145584,52.82283093787177],[-127.81019213677709,52.822756009541926],[-127.80994800847118,52.82265496560937],[-127.80971631698554,52.822540268571565],[-127.80949457732487,52.8224192567088],[-127.80928437739496,52.822285179647686],[-127.80912803696657,52.822149707180046],[-127.80889228872621,52.82200480428455],[-127.80869876717722,52.82186934819457],[-127.80850678522583,52.8217484320056],[-127.80833597607378,52.82160029449063],[-127.80818443168927,52.82144624604809],[-127.8080613711361,52.82128447671075],[-127.80796398205209,52.82111390888576],[-127.80787301777013,52.82094155604867],[-127.8077821016787,52.820770323383975],[-127.8076764412595,52.820602115702805],[-127.80756798772546,52.82043395990088],[-127.80745585759668,52.82026641661923],[-127.80729099606813,52.82012714498352],[-127.80712050245741,52.819964427942374],[-127.80696694453633,52.81980648993082],[-127.80685440376854,52.819651283315814],[-127.80667357223612,52.819507772683295],[-127.80648819986,52.81936658261719],[-127.80630010539406,52.81922711116017],[-127.80610747837952,52.8190905071508],[-127.80589577944397,52.81896429417115],[-127.80568137330685,52.818839799471654],[-127.80546962910248,52.8187124564769],[-127.8052570210747,52.81858681236899],[-127.80503540071676,52.818467476426946],[-127.80480205332042,52.81835672336163],[-127.80455417601655,52.81825404018357],[-127.80429574473533,52.81816552666255],[-127.80402088929625,52.81810641981146],[-127.80372181517188,52.818089717259554],[-127.80342625272527,52.818068476021494],[-127.80313249207927,52.8180455203907],[-127.80283781925449,52.818023143020525],[-127.80254225770877,52.81800189955606],[-127.8022484510672,52.81797783040818],[-127.80196042983897,52.81793684785614],[-127.80167736821114,52.81788122454261],[-127.80139873146996,52.81782048369555],[-127.80111226282344,52.817772193293386],[-127.80083265885101,52.81771034497192],[-127.80063482846214,52.81758165900336],[-127.80049063939013,52.81742469004248],[-127.80034459358117,52.817267749385],[-127.80000063760268,52.81698044575047],[-127.79977279711693,52.816801217919384],[-127.7995920490797,52.81665882534729],[-127.79941311240422,52.81651527477192],[-127.7992177880616,52.81637983105948],[-127.79901430994033,52.81624955199124],[-127.79880264568803,52.81612331702925],[-127.79860278256895,52.81599018386308],[-127.79842841831515,52.8158448847443],[-127.79824403396117,52.815704222863914],[-127.79801781983643,52.81558550037884],[-127.79784648918289,52.81544575890324],[-127.79769171373857,52.815301835651525],[-127.79754474065737,52.815144349756],[-127.7973857329784,52.81498816000457],[-127.79714389235909,52.81471890613794],[-127.7971549344773,52.81460607278645],[-127.79735096914389,52.814559917088346],[-127.79764614550753,52.81450662863425],[-127.79790072926507,52.81441641247417],[-127.79813776717386,52.81430685165875],[-127.79837389101486,52.81419786035759],[-127.79862743178384,52.81410485156491],[-127.7988945505619,52.81402565099462],[-127.79914613745517,52.81393043796586],[-127.79938890752236,52.81382470562298],[-127.79964840361801,52.81374113616606],[-127.79992619128947,52.813672414532945],[-127.79999993000972,52.81365783167909],[-127.80021195217446,52.81361646585047],[-127.80050246723337,52.81358510541346],[-127.80079498175472,52.81357894044557],[-127.80109096047474,52.81358897153162],[-127.8013882151338,52.81360738527025],[-127.8016856271526,52.813629167798574],[-127.80198198479626,52.81364815879375],[-127.80227655583029,52.813668853490135],[-127.8025703566779,52.81369348725006],[-127.80286412540669,52.813716999776894],[-127.8026664009865,52.81356870251908],[-127.80246564884133,52.81343671036055],[-127.8022575143672,52.813305943261525],[-127.80204573706638,52.8131769177146],[-127.80182232858529,52.813058724312704],[-127.80157841701791,52.812961014195636],[-127.80131311395438,52.812884939803915],[-127.80103445410685,52.81282251278236],[-127.80074956999341,52.81276691555576],[-127.80046372657561,52.81271076738251],[-127.80018685602107,52.81264663391852],[-127.79999993043573,52.81257775732604],[-127.7999328680855,52.812552437998775],[-127.79974491952855,52.812415195970296],[-127.79960526086175,52.81225479325463],[-127.79942712265324,52.81210787631265],[-127.79918865304616,52.812006714909714],[-127.79890833370135,52.811948801332726],[-127.79862002591364,52.81189996852306],[-127.79834048779743,52.81183867864926],[-127.79808039224797,52.81175354036226],[-127.79782906685949,52.8116559451765],[-127.79757692417044,52.81156115998716],[-127.79732207427868,52.81146809273768],[-127.79707799381742,52.81136590103983],[-127.79684742869009,52.811253403986186],[-127.79662312332931,52.81113521464961],[-127.79640693454623,52.811011286706325],[-127.79620623716043,52.810879839281604],[-127.79602277062207,52.81073803885932],[-127.79579975787946,52.8105620924623],[-127.79564682157732,52.81046130109895],[-127.79542099211403,52.810306696007764],[-127.7952090418568,52.810216895904304],[-127.79495319850288,52.81012216182135],[-127.79469922863028,52.81002739854063],[-127.79449148796567,52.8099050239288],[-127.7943426258416,52.809746441832125],[-127.7942021071241,52.809587167001915],[-127.79406800382935,52.80942555193262],[-127.79390289828095,52.8092784185969],[-127.79367933558449,52.80915516345105],[-127.79345035191055,52.80903591870641],[-127.79328550016844,52.80889438561944],[-127.79320675781997,52.80872352057438],[-127.7931711549456,52.80853965634891],[-127.79314686175583,52.80835954724592],[-127.79315693822498,52.80817891292889],[-127.79313354322984,52.80799823404597],[-127.79302721573983,52.807833951329336],[-127.79283554832928,52.80769563430463],[-127.79263746798875,52.807559656933925],[-127.79244587344196,52.80742301518372],[-127.79229067531513,52.80726789025037],[-127.79217779766402,52.80710258581358],[-127.79216841533444,52.80692336968048],[-127.79219058424367,52.806743106663724],[-127.7922155938085,52.80656393019719],[-127.79224618362066,52.80638522448495],[-127.79229259116707,52.806206833153034],[-127.79231673426622,52.80602934683795],[-127.79227022917394,52.80585126259196],[-127.7921895596233,52.805678175150014],[-127.79209780285107,52.80550694295655],[-127.7920153010668,52.80533444834288],[-127.7919484619985,52.805158916458176],[-127.79189457696172,52.80498205673477],[-127.79186326176247,52.80476730336471],[-127.79185369341391,52.80462788971896],[-127.79179045287327,52.80444949575819],[-127.79170239112172,52.80427764177585],[-127.79159222290231,52.80411005324235],[-127.7915254108069,52.80393507663681],[-127.7915476985949,52.80375761857603],[-127.79168778952669,52.80359741867364],[-127.79183070479876,52.8034382964391],[-127.79207188197817,52.80333989318154],[-127.79236091790669,52.80329679932491],[-127.792640906575,52.803237592966326],[-127.7929049786039,52.803153411135945],[-127.79312013088034,52.80303297435402],[-127.79331127507002,52.80289385606361],[-127.79353297948327,52.802774439323244],[-127.79375082749797,52.80265172705954],[-127.79393735580372,52.802513234241104],[-127.79408124214585,52.80235521512394],[-127.79420925848333,52.80210719343713],[-127.79405748601516,52.80203328619434],[-127.79399076121389,52.80186055131934],[-127.79398127828229,52.80167909416085],[-127.79401001494763,52.80150041559271],[-127.79406106888416,52.80132251674226],[-127.7941261759524,52.80114720993534],[-127.79420623300533,52.800973907479],[-127.79428910619254,52.800801126855994],[-127.79431782612255,52.80062244833812],[-127.79434653731664,52.800443213905375],[-127.79437525676568,52.80026453533194],[-127.79440303114636,52.800085306196266],[-127.7944152452798,52.79999992320653],[-127.79442897197738,52.79990667005848],[-127.79445300847027,52.79972694201514],[-127.79447429037326,52.799547821060266],[-127.79449555686493,52.79936869134578],[-127.79451867169546,52.79918897731468],[-127.79454367556683,52.79901035536351],[-127.79453500932463,52.798826087371936],[-127.7945897010435,52.79864644626766],[-127.79463575809449,52.79848207522762],[-127.794634533811,52.79838680864612],[-127.79448759144302,52.79829489202718],[-127.79417826688587,52.79814156147493],[-127.79395511489065,52.798026712575826],[-127.79367217193489,52.797970504622405],[-127.79340956549896,52.797889879058616],[-127.79316462723982,52.79778712778239],[-127.79290721779945,52.79769746262203],[-127.79264186019745,52.79761744240425],[-127.7923738196528,52.79753970459429],[-127.79210402564587,52.79746479099292],[-127.79183338224942,52.797391575744165],[-127.79156621862931,52.79731270172525],[-127.79130086593048,52.797232678454925],[-127.79103017839155,52.79715834105696],[-127.79080243724594,52.797044677361406],[-127.7905611532916,52.796940178993],[-127.79030104674396,52.796852226413804],[-127.79004456116435,52.79676197601299],[-127.78982312867176,52.796643730186986],[-127.78961701860152,52.796514031213306],[-127.78941450639579,52.79638147898321],[-127.78920480259195,52.796254641109414],[-127.78896343351546,52.79614790778994],[-127.78871130820156,52.79605086203119],[-127.78856568358658,52.795901181942256],[-127.78858978942307,52.79572257492125],[-127.7886501818363,52.795545100603654],[-127.78869756054982,52.79536781568586],[-127.7887617359083,52.79519196059623],[-127.78883901125737,52.795018712678015],[-127.78891813400993,52.79484487152185],[-127.78898793349899,52.794670607479006],[-127.78904555340166,52.79449373108846],[-127.78909665815085,52.794316397988446],[-127.78914027311323,52.79413804909901],[-127.78917553995458,52.793959836461816],[-127.78918570004133,52.793780876752976],[-127.7891409605856,52.793599956329246],[-127.78919604417864,52.793429288405875],[-127.78934073572583,52.79326845469221],[-127.7895044250393,52.79311798498927],[-127.7896794800023,52.792972390632656],[-127.78982434114285,52.792816037659165],[-127.78994467958994,52.79265053460556],[-127.79004065368024,52.79248036315574],[-127.790088085037,52.79230419738645],[-127.79011117644241,52.792123927962415],[-127.79017348440432,52.791948100064666],[-127.7902591573028,52.791775834549036],[-127.79035886484608,52.79160616173163],[-127.79046888470485,52.79143857340563],[-127.7905854801292,52.79127257056335],[-127.79088314566518,52.79099450047257],[-127.79114587942647,52.79041484680138],[-127.79119390589385,52.78985473027407],[-127.79117033466069,52.78953616775648],[-127.7914029051037,52.78927870300168],[-127.79163460733866,52.789111496691156],[-127.79214288151748,52.78898266275691],[-127.79294066318302,52.788824739267625],[-127.79324424822526,52.78873265945765],[-127.79341361056947,52.78851876404651],[-127.7936311846674,52.78808160597496],[-127.79361586338361,52.78765025106216],[-127.79357427604978,52.78716885218311],[-127.79358833151214,52.78666306100649],[-127.79368369575852,52.7861913335963],[-127.79403960922862,52.78566461910912],[-127.79458766803148,52.78513552826472],[-127.7950356257912,52.7847665855817],[-127.79541357010096,52.78445531955581],[-127.79605120935564,52.78426843604889],[-127.79607245311468,52.78408874837552],[-127.79596326430479,52.78392171227385],[-127.7958146048185,52.78376592562225],[-127.79566412829024,52.78361072262761],[-127.79550907543162,52.78345727551093],[-127.79534852553623,52.78330559834985],[-127.79518254870321,52.78315735812021],[-127.79497996503524,52.78302201808855],[-127.7947710427204,52.782890693789284],[-127.79462083213103,52.78274165546992],[-127.79453480122939,52.78257313366683],[-127.79447996656707,52.7823951752908],[-127.79443611360853,52.78221367682751],[-127.79438499235725,52.78203566155837],[-127.79432647831885,52.78185887141363],[-127.79426614707795,52.781682674021994],[-127.79420671369296,52.78150590682585],[-127.79418781200233,52.781321228392095],[-127.79414447898435,52.781152052950134],[-127.79411112807527,52.780977128650626],[-127.79407685637976,52.780802209444566],[-127.79405278706236,52.780627143099345],[-127.7940197692975,52.780438196438624],[-127.79403820426876,52.7802579867636],[-127.79405571879342,52.78007780011192],[-127.79406116022112,52.77989778917211],[-127.79405548830336,52.77971851322576],[-127.7940451452691,52.77953875269748],[-127.7940320251402,52.7793590256669],[-127.79401704935259,52.7791793359729],[-127.79400115267028,52.77899965137821],[-127.79395937325957,52.7788231697593],[-127.79393577056327,52.77863688587125],[-127.79392100695004,52.778462232940946],[-127.79390647868205,52.778293181480606],[-127.79389240071087,52.77811291293108],[-127.79389915784618,52.77791999441955],[-127.79388977470455,52.777740775023275],[-127.79390750033379,52.77756562496104],[-127.79408419998781,52.77741718915925],[-127.79435695794331,52.77725607298291],[-127.79424908705717,52.77711983828235],[-127.79408929747758,52.776963654523755],[-127.79388890827087,52.776835561126404],[-127.79361747188321,52.776762363091954],[-127.79332499555179,52.77671919771051],[-127.79303469614068,52.776683280458066],[-127.79274269068904,52.77665130765889],[-127.79244985946669,52.776621597767296],[-127.79215791671962,52.776590743584094],[-127.79186584226015,52.77655709263059],[-127.79157726026284,52.77651778250267],[-127.79129195323891,52.77646833247642],[-127.7910092271776,52.77641380224451],[-127.79072565150062,52.77636096135842],[-127.79043956677728,52.776314884215815],[-127.79015172053782,52.77627107531239],[-127.78986392182526,52.77622838600273],[-127.78957610003549,52.77618513135363],[-127.78928908229665,52.776139065675956],[-127.7890046689669,52.77608847549719],[-127.78872194833797,52.77603393973788],[-127.78844526252324,52.77596809211666],[-127.78815941734749,52.77592761091166],[-127.78786205769468,52.77592262111656],[-127.78756514324624,52.775928268961216],[-127.78726921941474,52.77593557799525],[-127.78697244537953,52.77594458524758],[-127.78667677082053,52.775957503036885],[-127.78638220366989,52.77597487830579],[-127.78608789407271,52.775998418983],[-127.78579471565529,52.77602699074703],[-127.78550359462332,52.77606000554033],[-127.78521262233158,52.776096945379685],[-127.78492465180862,52.77613888785071],[-127.7846408371728,52.77619141151975],[-127.78436199687118,52.77625170590263],[-127.78408715690671,52.77631922085975],[-127.78381534180967,52.776392303185084],[-127.78354443765151,52.776464806015305],[-127.78326954826052,52.7765311987432],[-127.78298979192779,52.77659206870971],[-127.78270991773714,52.77665013276514],[-127.78242813999782,52.776707104059945],[-127.78214732013605,52.7767646161292],[-127.78186845772716,52.77682490478664],[-127.78159165231578,52.77688964557008],[-127.78131785629415,52.77695994503837],[-127.78104505022407,52.77703191481888],[-127.78077118215595,52.77710052806658],[-127.78049332129562,52.777162484172685],[-127.78021040634427,52.77721441824736],[-127.77992346049835,52.777259130711634],[-127.77963253673595,52.777297176757074],[-127.77934046720151,52.77733019938421],[-127.77904823373883,52.77735929573464],[-127.77875288181095,52.77738059156652],[-127.77846479316163,52.77737542821066],[-127.77815591505637,52.77736162027328],[-127.77788956354169,52.77734323872202],[-127.77761520818562,52.77728854052133],[-127.77741980275482,52.77716763525312],[-127.77726643833594,52.77700796908393],[-127.77710412137866,52.776856294449274],[-127.7768945965415,52.7767305532685],[-127.77666512235152,52.776616324114606],[-127.77643113298616,52.77650496097249],[-127.7762007492801,52.77639130969936],[-127.77598215861826,52.7762707443245],[-127.77578892507738,52.776134665352096],[-127.7756074849421,52.77599168140717],[-127.77541515134652,52.775855032181255],[-127.77519383560777,52.775735627643606],[-127.77496162642336,52.7756225576509],[-127.77474395552997,52.77550142007474],[-127.77456426965539,52.77535616597331],[-127.77437743200448,52.77521718987998],[-127.77413645964367,52.77511658203852],[-127.77386850088375,52.77503656020177],[-127.77359878839016,52.77495936233801],[-127.77333445056406,52.774877042507406],[-127.77306917834817,52.77479473622145],[-127.77280134822041,52.774718073082035],[-127.77252566287567,52.77465330320229],[-127.77224304230434,52.77460040365191],[-127.77195613826349,52.77455597126868],[-127.771666606247,52.7745155059254],[-127.77137709818969,52.77447560450257],[-127.77108844137709,52.77443400351246],[-127.77079712452222,52.774395240037805],[-127.77050681342178,52.77435814666091],[-127.77021728411817,52.774317677734345],[-127.76993391887461,52.77426926797282],[-127.76966615891776,52.77419371773403],[-127.76941509596695,52.77409549469764],[-127.76917040673162,52.77399437691942],[-127.7689275196708,52.77389154545156],[-127.76867476640403,52.77379726542009],[-127.76841400314069,52.77371151773339],[-127.76815327913899,52.773626333875434],[-127.76789249460083,52.77354002038226],[-127.76763000947224,52.77345710395946],[-127.76735342770816,52.77339289164444],[-127.76707239976996,52.77333322973969],[-127.76679840226467,52.77326392815432],[-127.76654253374835,52.77316128746049],[-127.76640916738077,52.773012525278155],[-127.76641463173051,52.77283027417553],[-127.76640896112427,52.77264819977417],[-127.7662622730156,52.772491226037765],[-127.76616443484623,52.77232566918856],[-127.76615785299053,52.77214416448047],[-127.7661559645505,52.77196371006248],[-127.7661586998159,52.771782620982925],[-127.76612813114508,52.77160484057827],[-127.76605102000566,52.77142384217119],[-127.76588645890392,52.77128395232382],[-127.76563115998276,52.77119475328484],[-127.76535754354613,52.77111199059539],[-127.76513184198498,52.77099768256945],[-127.76493133617957,52.77086393762899],[-127.7647254263715,52.77073420172002],[-127.76451862028848,52.77060503496832],[-127.76431546592276,52.77047469189476],[-127.7641159233823,52.77034148711575],[-127.763915400895,52.77020718470389],[-127.76372125164322,52.77006997906545],[-127.76355091973556,52.769924567763056],[-127.76343186472987,52.769762125796674],[-127.76335497620457,52.769586162342684],[-127.76327907829354,52.76941186993113],[-127.76320132489774,52.76923759639733],[-127.7631272839588,52.76906327593832],[-127.76305878748276,52.76888830705143],[-127.7630004672602,52.768712620092394],[-127.76296614821132,52.768533218099066],[-127.76298656468249,52.768352984010555],[-127.76308923255266,52.76818609508906],[-127.76323213587764,52.768027004020425],[-127.76337414065586,52.76786848228316],[-127.76345057203199,52.76769581752704],[-127.76344037547841,52.76751605267708],[-127.76339678537369,52.76733734613556],[-127.76331635169045,52.76716535483495],[-127.76319074879935,52.76700133390976],[-127.7630807969276,52.76683427941521],[-127.76298834271691,52.766663589661526],[-127.76288761591272,52.76649471023479],[-127.76278778736287,52.766325261184335],[-127.7626943539874,52.76615346488518],[-127.7626388301758,52.76597774442945],[-127.76267136174359,52.76579844894767],[-127.76275709343645,52.765626209544386],[-127.76292172859496,52.76547631583546],[-127.76307690025703,52.76532208910015],[-127.76310040756297,52.765194495821326],[-127.76297834428185,52.76498109663655],[-127.76288955972548,52.76480923942715],[-127.76282754953982,52.76463360749681],[-127.7627719809414,52.76445676660765],[-127.76271918828958,52.76427987496797],[-127.76266824350976,52.76410239948027],[-127.76261453176477,52.76392553055368],[-127.7625626755907,52.763748624719966],[-127.76251265241622,52.76357113526463],[-127.76246357326262,52.763394196572136],[-127.76241909404739,52.76321605869976],[-127.76237278302315,52.76303851332827],[-127.76232647238365,52.76286096791785],[-127.76225615695847,52.76268659038668],[-127.76217754586318,52.76251344956172],[-127.76209706549555,52.76234034574215],[-127.76201935306267,52.76216663525701],[-127.76194443181352,52.76199288275472],[-127.7618713055558,52.761817982196106],[-127.76180275636857,52.76164132677557],[-127.76170946767446,52.76147233422901],[-127.76155835108582,52.76131934889635],[-127.76137691425173,52.76117410112302],[-127.76124785650069,52.76101573485129],[-127.76114898198422,52.76084626078139],[-127.7610740288464,52.76067195211385],[-127.7610018435091,52.76049703681136],[-127.76095185351662,52.760320101991155],[-127.7609091933496,52.760140823949214],[-127.7608923926161,52.75995835035814],[-127.76089270538246,52.75978570881292],[-127.76094876999639,52.75961447169543],[-127.7609237201475,52.759434364016776],[-127.76088014880473,52.75925565558937],[-127.76084591529803,52.759077927866414],[-127.76086915785926,52.758898771654074],[-127.76088309288477,52.758718643194335],[-127.76086643129348,52.75853953040643],[-127.7608191505755,52.75836087759599],[-127.76074976048831,52.75818591995251],[-127.7606325811771,52.758022890336775],[-127.76047311620897,52.757869463911064],[-127.7603118745916,52.75771830599344],[-127.76018088371335,52.757557725396275],[-127.76005251007962,52.75741559769316],[-127.75989219623119,52.75724144884226],[-127.75973529197204,52.757105354293955],[-127.75977172188871,52.756908072763615],[-127.75970877807765,52.75673189662613],[-127.75964031535098,52.75655692432224],[-127.7594803036106,52.756299805859236],[-127.75939767191895,52.75629936928644],[-127.75926123121441,52.75636699263081],[-127.75904832702344,52.75649350047786],[-127.7587931866773,52.7565864551031],[-127.75859634116908,52.75672000323458],[-127.75840904734379,52.756860142787495],[-127.75820367402697,52.756989334063164],[-127.75799450526821,52.757116904833914],[-127.75778725139487,52.75724556750255],[-127.75758093968372,52.75737478064019],[-127.75737650480188,52.757504521269176],[-127.7571730577804,52.75763592374547],[-127.75696387478146,52.75776293671772],[-127.75673188301157,52.75787739496203],[-127.75651216355386,52.75799670889935],[-127.75636157148841,52.758149182064926],[-127.75625998298183,52.758319978038145],[-127.75612437331878,52.75861123251762],[-127.7559023875478,52.75874347531193],[-127.75567510247284,52.75885954676755],[-127.75541480997359,52.75887241354499],[-127.75512214116138,52.75879776024269],[-127.75482836194661,52.75878646478655],[-127.75453002884332,52.7587998991342],[-127.75423575118961,52.758821684131746],[-127.75394385706706,52.75885631992379],[-127.75366596082583,52.75891540790733],[-127.75340009166209,52.7589961706308],[-127.75312434794955,52.75906251618755],[-127.75284053853981,52.759113278510455],[-127.75255577059671,52.759163498442994],[-127.75228100550201,52.75923094835607],[-127.75201215766818,52.759307268315695],[-127.75174447391544,52.75938918428745],[-127.7514759603563,52.75947334509001],[-127.7512303146683,52.75957230177943],[-127.75104162771207,52.759701795439994],[-127.75092512567869,52.7598716880218],[-127.75083475004925,52.76004455324338],[-127.75069438659712,52.76037959103447],[-127.75047501503806,52.76025899978783],[-127.7502474862306,52.760143005034244],[-127.75001093443707,52.76003331462619],[-127.74974444345466,52.75994032987596],[-127.74945447899483,52.75984095983718],[-127.7491738665647,52.759766120808074],[-127.74893926949447,52.759749443266784],[-127.74883326404347,52.759903482824136],[-127.74876638965942,52.760106819063544],[-127.7487014803343,52.760289956638594],[-127.74851148076388,52.76041049748101],[-127.74824188183528,52.76049130378051],[-127.74796565842442,52.760568854158535],[-127.7477055633946,52.76065512252156],[-127.74744544459423,52.76074083461917],[-127.74718342357035,52.76082545346106],[-127.7469213330007,52.760908395699374],[-127.74665832900969,52.76099190696524],[-127.74639724000552,52.76107651010163],[-127.74613618089873,52.76116223320282],[-127.7458711959553,52.76124240911786],[-127.74560033134502,52.761315380917814],[-127.74532460632041,52.761382828357],[-127.74504580720517,52.76144302984084],[-127.74476099153333,52.761492666115664],[-127.74448024403324,52.76155065320765],[-127.7442073828733,52.761620297359904],[-127.74393455834314,52.76169049633693],[-127.74366364187759,52.76176234331058],[-127.74339185027874,52.761835332635464],[-127.74312099252225,52.761908298457975],[-127.7428510771626,52.761981814614394],[-127.7425802030768,52.76205478836378],[-127.74230936556434,52.762128316947276],[-127.74203752329292,52.762200173821725],[-127.74176662342153,52.76227258103433],[-127.74149578312958,52.762346107727744],[-127.74123568723486,52.76243292628261],[-127.74098720243236,52.76253134686378],[-127.74076363591375,52.76264901001657],[-127.7405553908334,52.76277821131866],[-127.74037264258435,52.76291825272336],[-127.74024845418718,52.763082642652144],[-127.74007996916058,52.76323087486325],[-127.74005277405655,52.76340671178721],[-127.7400934492464,52.76358491320097],[-127.74009520429195,52.763764804373146],[-127.74010346145637,52.76394460797303],[-127.74012095848856,52.76412370940446],[-127.74014126901922,52.76430332506894],[-127.74016251527897,52.764482935788756],[-127.74016331282658,52.764662285052744],[-127.74015487006312,52.76484232748246],[-127.7401473249611,52.76502180054487],[-127.74014908065736,52.765201700508776],[-127.74015363494676,52.76538211492782],[-127.74015912449163,52.76556251544279],[-127.74016832527722,52.76574286084634],[-127.74018304733235,52.765922003263874],[-127.7402070019506,52.76609988760279],[-127.7403324453599,52.766262248262464],[-127.74056923495542,52.76637755938926],[-127.74071894052346,52.76651994629172],[-127.74073946026178,52.76670460752634],[-127.74088773083963,52.76685766955209],[-127.74104346257216,52.767011176602274],[-127.74113035384488,52.76718419798457],[-127.7411088192102,52.76736220163302],[-127.74110306468785,52.76753996192781],[-127.74119550167994,52.76771234484049],[-127.741206540348,52.76789210666452],[-127.74109247096006,52.76805466050103],[-127.74083343470997,52.768145389572275],[-127.74054634869718,52.76818608033094],[-127.7402541743888,52.768215644834314],[-127.73998125564361,52.7682847139803],[-127.73971335540195,52.768363232052835],[-127.73943851867391,52.76843120735993],[-127.739163627701,52.76849750579007],[-127.73889567903117,52.76857490165642],[-127.73863646038708,52.768661700437185],[-127.73838406221671,52.76875624451296],[-127.73813551111414,52.768854093996154],[-127.73788888314303,52.768953600409795],[-127.73764227662112,52.76905366198068],[-127.7373986192433,52.76915759832928],[-127.7371569156368,52.769264312187104],[-127.73690730169194,52.769358811690964],[-127.73662629488341,52.769412298585976],[-127.73633149242181,52.76944581107933],[-127.73609335949185,52.76954910677392],[-127.73593704104664,52.76970051465092],[-127.73586157487898,52.76987707323181],[-127.73577570369547,52.770048736793996],[-127.7358107315368,52.77022533636901],[-127.73588106542535,52.770402534183035],[-127.73597158621774,52.77057382803931],[-127.73606208479359,52.77074455716188],[-127.73608797182868,52.770924654951905],[-127.73606274006626,52.77110326765856],[-127.73600495536618,52.771280685325905],[-127.73590506462229,52.77145031437319],[-127.73578741334259,52.77161684324619],[-127.73573040268354,52.77179032124841],[-127.73577699918826,52.77197739439893],[-127.73574301994626,52.77214661237383],[-127.73559045576305,52.77229964080825],[-127.73539009506013,52.77244161045335],[-127.73515999600264,52.77255992283053],[-127.73490711219756,52.77264325592366],[-127.73462522880527,52.77269842753632],[-127.73432987602153,52.772742031696],[-127.7340412382328,52.772791140783134],[-127.73375062233289,52.7728369154038],[-127.73346193778328,52.772884902736045],[-127.73319555741409,52.772956100603366],[-127.73295954075807,52.77306608399884],[-127.73275990651553,52.77320355416872],[-127.73262425074736,52.7733613775185],[-127.73253955268912,52.773539746671396],[-127.7324141407556,52.77369853934637],[-127.73220847203586,52.7738243316268],[-127.7319639979761,52.77393219579833],[-127.73170495980338,52.77402458058034],[-127.7314397997445,52.77410303822846],[-127.73116301157715,52.774169900963535],[-127.73088032924628,52.77422844705163],[-127.73059731326494,52.77427914142907],[-127.73030085649435,52.774295847567046],[-127.7298628143562,52.774370135651324],[-127.72988988882943,52.77451153767784],[-127.73002141319354,52.77466373855027],[-127.73025194496881,52.77478476745985],[-127.73032831300438,52.774950668848426],[-127.73033009565101,52.775132243792555],[-127.73032807552504,52.775311632842055],[-127.73007243578253,52.775235814348335],[-127.72976856685682,52.775207223610934],[-127.72951968290722,52.77525237172315],[-127.72921164936793,52.775327537474894],[-127.72893972395775,52.77539992800087],[-127.72873407952301,52.77548087364147],[-127.72858263441498,52.775662465417156],[-127.7285219676787,52.77583823482852],[-127.72852273906341,52.776018138514345],[-127.72852256736664,52.776197500068164],[-127.72843294186603,52.77636921226202],[-127.72829014686621,52.77655796692566],[-127.72813098358577,52.77670940484483],[-127.7278852220846,52.776808866955996],[-127.72761527700517,52.77688458796678],[-127.7273324664098,52.776940884966905],[-127.72704853045775,52.776992148895715],[-127.72675944007148,52.77703059213046],[-127.72647147371042,52.777074067044424],[-127.72617747860042,52.77708344420968],[-127.72588485608568,52.777080460552135],[-127.72564313419642,52.77702741242566],[-127.72533496979608,52.77700784123991],[-127.72500840877754,52.77706141331903],[-127.72472152762357,52.77708581108305],[-127.72441459080461,52.77711947100821],[-127.72412045135015,52.77712491717431],[-127.72382621247932,52.77715109791863],[-127.72353235185466,52.77716382943316],[-127.72324886831103,52.777134366059904],[-127.72295576559422,52.777096631428186],[-127.72264177386198,52.77711638244979],[-127.72234659866776,52.77714257322484],[-127.7220868572133,52.777149195008086],[-127.72174350030562,52.777154793017964],[-127.72145539257245,52.77719489462978],[-127.72118050760061,52.77726339117484],[-127.72088768302892,52.77730187463587],[-127.72059504908306,52.77732186270994],[-127.72030445786906,52.77730034345773],[-127.71999637663475,52.77728244300393],[-127.71972500826728,52.77723093861908],[-127.71944260173406,52.77727431460561],[-127.71919308968101,52.777373813116505],[-127.71891609570463,52.777436165271986],[-127.71862151365707,52.77745393497169],[-127.71833557253714,52.77750184400764],[-127.7180598125057,52.77757202294474],[-127.71789752491561,52.77771621012074],[-127.71777971845228,52.77788103526446],[-127.71768327082059,52.77797661109889],[-127.71764806631681,52.77811725030498],[-127.71758495443251,52.778279597023136],[-127.71748900092057,52.77838749628368],[-127.71734298856755,52.77854377503653],[-127.7171866459968,52.77869739789451],[-127.71701218068132,52.77883895500472],[-127.71681507977075,52.77897187532066],[-127.71663618145489,52.77911853666984],[-127.716408298565,52.7792250031581],[-127.71614218799232,52.77930456893337],[-127.7158844215669,52.77938400302539],[-127.71565760590131,52.77949381533209],[-127.71536677491632,52.779536183425876],[-127.71507899472432,52.77953871564485],[-127.71481695157556,52.77962717776557],[-127.71459702592801,52.77974697606502],[-127.71440091647689,52.779881563540165],[-127.71428499174854,52.78004747813155],[-127.71420274858292,52.780219635120126],[-127.71412054935006,52.78039290339716],[-127.71400552055292,52.780558248516485],[-127.71388017664184,52.78072094626575],[-127.71376708439304,52.78088793978063],[-127.71361445559543,52.781042068032846],[-127.71338662214175,52.78115020452664],[-127.7130928209105,52.78118812619764],[-127.7128250959092,52.781111890865915],[-127.71263119597333,52.7809779626407],[-127.71245084477839,52.780834303407936],[-127.7122777854909,52.7806871834484],[-127.71211020600406,52.780537732297695],[-127.71195805442194,52.78037909678202],[-127.71180143515204,52.78022500125412],[-127.71161863499202,52.78008978837344],[-127.71135734139924,52.780011769944906],[-127.71107247885756,52.779948111628315],[-127.71084201842893,52.779828165761224],[-127.71062031403383,52.779764696950785],[-127.71039420275258,52.779683921231346],[-127.71007984743628,52.77960275495183],[-127.7100037997586,52.77951249920014],[-127.7098828576533,52.77932145341385],[-127.70988679776357,52.779141482445205],[-127.70987682347709,52.778961705374975],[-127.70985929776884,52.77877924041339],[-127.7098030990284,52.77860463019702],[-127.70969493544335,52.778431333593524],[-127.7095462658901,52.778266474302285],[-127.7093446714575,52.77814834669803],[-127.709073198203,52.77809401238693],[-127.70876230171605,52.77807555847303],[-127.70845912151353,52.77806428220282],[-127.70814315538135,52.77808178099134],[-127.70783894754418,52.77809125181814],[-127.70758608286751,52.778037764063264],[-127.70737623924803,52.77792199524514],[-127.70719386118985,52.777773317652894],[-127.7070322631202,52.777610329460124],[-127.70688660727437,52.777451027951656],[-127.70679804463614,52.77727968541368],[-127.70672600868576,52.777103618318506],[-127.70661349707154,52.776937108134625],[-127.7064872072804,52.77677416130585],[-127.70634806740546,52.77661532029396],[-127.70619975283765,52.77645886355125],[-127.70604225578845,52.776305338198554],[-127.70586654933686,52.77616048044935],[-127.70562521888536,52.7760468525826],[-127.70537798194353,52.77594787397094],[-127.7053891373344,52.77578516887748],[-127.7054884736357,52.775598761514],[-127.7054094467897,52.77543344906403],[-127.70523949303829,52.775292990649376],[-127.70493492923502,52.77522343442686],[-127.70462557637481,52.77519654449148],[-127.7043237152396,52.77517123081481],[-127.70402802561708,52.77516095549465],[-127.7037330284564,52.77516804015409],[-127.70343668904648,52.77518803938038],[-127.70315385290972,52.77519719684683],[-127.70284807598853,52.77528346975368],[-127.70255917863426,52.77535044001578],[-127.70224074152745,52.7753517003119],[-127.70198003142886,52.77531064543286],[-127.70168433974895,52.775276823560425],[-127.70138847735463,52.775239075497346],[-127.70109482110402,52.775209706553106],[-127.70080378712888,52.77519992054552],[-127.70051135868495,52.7752248955712],[-127.70021762494005,52.77528689021741],[-127.69995177586578,52.775373132522326],[-127.69977650927581,52.775495618567966],[-127.69975908975557,52.77568812419194],[-127.69975045246736,52.77586760669319],[-127.69974832603732,52.77604755079986],[-127.6997903892226,52.77621789542648],[-127.69983245302286,52.77641177168328],[-127.69988520073092,52.77659372719248],[-127.6997932472328,52.7767800222806],[-127.69977887024567,52.77693212827428],[-127.6997538172987,52.777119130480415],[-127.69979635005028,52.77732477464354],[-127.69977846103988,52.77748197142375],[-127.6997279416246,52.77765926282847],[-127.69967276637907,52.77783605669385],[-127.69961198489568,52.778012366787685],[-127.69954374889164,52.7781876728491],[-127.69946520646741,52.7783608772785],[-127.699370767225,52.77853151402972],[-127.69924552932966,52.7786981130432],[-127.69911002215807,52.778863183698434],[-127.69898753669307,52.77902917751689],[-127.69890136531656,52.77919745201984],[-127.69887022635746,52.77937165506756],[-127.69888292373234,52.7795508279305],[-127.69892268526115,52.77973353660082],[-127.69897827678736,52.779917127912256],[-127.6990385392916,52.780101216481874],[-127.6990903305188,52.78028262977823],[-127.69912338095453,52.78045982168479],[-127.6991236945972,52.78063132698348],[-127.6990612956447,52.78079028912117],[-127.69886213994319,52.780919844987714],[-127.69860402733437,52.78103792367883],[-127.69837966807208,52.78116448078209],[-127.6981797214493,52.781297409792685],[-127.69797978117661,52.781430903314025],[-127.69778455447197,52.781566005209754],[-127.69759502905444,52.781704387156566],[-127.69741967693699,52.7818487245198],[-127.69727472266648,52.78201056626986],[-127.69713636057391,52.78217454539772],[-127.69697223241606,52.78232097049473],[-127.69675573306247,52.782435079738875],[-127.69650870752699,52.78252888759083],[-127.6962435490575,52.78261063539201],[-127.69596889985289,52.782686905971104],[-127.69569423517257,52.78276318508072],[-127.69542815257603,52.78284493537647],[-127.69516779386848,52.7829305302156],[-127.69490747857179,52.78301724480556],[-127.69464809783399,52.7831039452936],[-127.69438778042587,52.78319065872043],[-127.69411322059014,52.78326973045544],[-127.69382731411052,52.783343360528576],[-127.69355275225617,52.78342243094385],[-127.69331233001068,52.783518943388],[-127.69312876092076,52.7836443448824],[-127.69300869769167,52.78380189360986],[-127.69293031844437,52.783980139009444],[-127.6928717492669,52.784165945205714],[-127.69280922985503,52.78434620348819],[-127.69274744558967,52.78452140223099],[-127.69269411142197,52.78469872987364],[-127.69264820981448,52.78487650620133],[-127.69260697843676,52.78505477108875],[-127.69257319498614,52.7852334934236],[-127.69253433353053,52.7854010792711],[-127.6924997249933,52.78558262035958],[-127.69246510863984,52.7857635965545],[-127.69244024798311,52.78595676264185],[-127.69240136297469,52.78612378371882],[-127.69232181929833,52.78629644028299],[-127.69224135414116,52.786469110059585],[-127.69215905416844,52.78664237119365],[-127.69207581031331,52.786815080887784],[-127.69199165209697,52.78698835968607],[-127.6919065354802,52.78716109621744],[-127.69182049731845,52.78733384595019],[-127.69173351559016,52.78750605319788],[-127.69164468373631,52.787678843036886],[-127.69155488592476,52.787850525738435],[-127.69146416651984,52.78802222163186],[-127.69137251065752,52.78819393092914],[-127.6912789750877,52.78836510225954],[-127.6911854167646,52.7885357178122],[-127.69108997906572,52.78870580435502],[-127.69099360450882,52.788875895328935],[-127.69089626429026,52.789044888112166],[-127.69079706629857,52.789213898596536],[-127.69069690262526,52.789381810884315],[-127.69059578005512,52.789549171908824],[-127.69045229771152,52.7897025706964],[-127.69022779496659,52.78982687061665],[-127.68999744002436,52.789944528580946],[-127.68977378893288,52.79006712936797],[-127.68954054320982,52.79018203008593],[-127.68929059078522,52.790273621610275],[-127.68901539999474,52.790338116754434],[-127.68872195694573,52.790387180456115],[-127.68842214586316,52.790416157649226],[-127.68812872068911,52.79041870390305],[-127.68784678663769,52.7903829621993],[-127.68757090786107,52.79031239167249],[-127.68729653224081,52.790232822174524],[-127.68701718518281,52.79016846109428],[-127.68672670051176,52.790151340156875],[-127.68642640310071,52.790167988609255],[-127.68612975267199,52.79018290689825],[-127.6858330574587,52.79019669514266],[-127.68554069444583,52.79017904226898],[-127.68525203017795,52.79013723025326],[-127.68496406639004,52.79008980263712],[-127.68467370852004,52.790052497408695],[-127.68437524633416,52.79002146867798],[-127.68407648250117,52.79000614602677],[-127.68379912788097,52.79003927285943],[-127.68355343664179,52.79014536339997],[-127.68329219929367,52.790233750002194],[-127.68301634367988,52.79030496628737],[-127.68273675149108,52.79037567054414],[-127.68245606829953,52.79044247086999],[-127.68217515655644,52.79050311295907],[-127.68189571067205,52.790554200652835],[-127.68162094461216,52.79058223630514],[-127.68136138295893,52.79047778842964],[-127.6810987851606,52.79039018901673],[-127.68083352859044,52.79030599898876],[-127.68055664246668,52.79025671594501],[-127.68025658451327,52.79027951492004],[-127.67996516602109,52.79026239064703],[-127.67968181237129,52.790213763149886],[-127.67939909375572,52.79015783512855],[-127.67911897765757,52.79009739428832],[-127.67883878877335,52.790034702932694],[-127.67855952198147,52.78997200668964],[-127.67828451590684,52.78989971614611],[-127.67801279880109,52.78981616827143],[-127.67773729166842,52.78975452831276],[-127.67745155798981,52.78974012343982],[-127.6771594681844,52.78975270293206],[-127.67686330127266,52.789779921482314],[-127.67656639595006,52.789812189687844],[-127.67627022789618,52.78983939777724],[-127.67597241330853,52.78984813721984],[-127.67566699385796,52.78982896045127],[-127.67536734267752,52.78981474932357],[-127.6750879940385,52.78984452107776],[-127.67483687930232,52.78993105815989],[-127.6745999243377,52.79004709357639],[-127.67436395506861,52.790164800345444],[-127.67411301264774,52.79025581720398],[-127.67381164323677,52.790292625913594],[-127.67352340691932,52.790261432718715],[-127.6732805551947,52.790156163885605],[-127.67309097025819,52.79001145710876],[-127.6729722624541,52.78985005465496],[-127.67288645609662,52.78967528729018],[-127.67279424727836,52.78950285308514],[-127.67268550473565,52.78933513842698],[-127.67257309360664,52.78916859693667],[-127.6724625400045,52.789002028847726],[-127.67235749121545,52.78883369623463],[-127.67226445319002,52.78866351532409],[-127.67218153220811,52.7884909481741],[-127.67210599451795,52.7883171547386],[-127.67203229230137,52.78814277908091],[-127.67195951121211,52.78796838126768],[-127.671882118751,52.787794614093976],[-127.67180105759098,52.787622020113595],[-127.67171997533607,52.78744887036955],[-127.67163891548721,52.7872762762382],[-127.6715697121826,52.78709790824678],[-127.67151696232581,52.78691313593573],[-127.67143865272644,52.78673938147322],[-127.67129096383296,52.78659688161592],[-127.67106023548313,52.786492000526216],[-127.67078755257377,52.78640676407244],[-127.67051666173603,52.78631982450878],[-127.67026403063622,52.78622477755058],[-127.67001323546059,52.786129147919276],[-127.66976870560022,52.78602725877833],[-127.66953307224188,52.785915709819946],[-127.66933832164204,52.78578060323943],[-127.66920328287543,52.78560485679676],[-127.66902141911925,52.785490299650846],[-127.66872540788452,52.7855208587571],[-127.66842378442422,52.785526826766],[-127.6681377052016,52.785478775609604],[-127.66784974807602,52.78543018550189],[-127.66756172582137,52.7853799096912],[-127.66728973257148,52.78533557510555],[-127.6670139903617,52.78529073718297],[-127.6666817861416,52.785369442021114],[-127.6663854897901,52.78539270851846],[-127.6660891273898,52.785414289271955],[-127.66579329262531,52.78542578207653],[-127.66549955056115,52.78541930003803],[-127.66520783657464,52.78539317610139],[-127.66491658540659,52.785355279246716],[-127.6646252470812,52.78531513201889],[-127.66433325756068,52.78528228405712],[-127.6640413269881,52.78525055550054],[-127.66374852681098,52.785220524486526],[-127.66345494391032,52.78519442273336],[-127.66315818672618,52.78518181681218],[-127.66285223639267,52.78519567861279],[-127.66256026598064,52.785186931167004],[-127.6624015285948,52.78518918121242],[-127.6620781215325,52.784993112508324],[-127.66184954080101,52.78487080380516],[-127.66159434136475,52.78478081471977],[-127.66131692516709,52.784716365920325],[-127.66104477423696,52.78464399516994],[-127.66075265961136,52.784559575905696],[-127.66051572442453,52.784461488122346],[-127.66030228554001,52.78434624385293],[-127.660016071435,52.784318352318735],[-127.65971254852234,52.7843226479627],[-127.65941658872569,52.78430665850123],[-127.65912340626797,52.7842665238486],[-127.65884239318528,52.784204927045934],[-127.65859180910022,52.78411374529421],[-127.65835365607583,52.784007823712514],[-127.65812446006785,52.783893363328154],[-127.65790061716281,52.78377322202558],[-127.65768040141361,52.7836507871143],[-127.6574638778598,52.783527734653404],[-127.65725823359656,52.78339781126744],[-127.65708952304098,52.7832623168746],[-127.65687995893059,52.78310329425197],[-127.65667542632545,52.783001934195234],[-127.65640773381324,52.782900344890614],[-127.65615513278165,52.78280471164562],[-127.65592778361481,52.78268965600887],[-127.65572022636343,52.78255807106288],[-127.65550292383898,52.78243839790243],[-127.65522740994689,52.782374464091866],[-127.65479866233514,52.782358660271456],[-127.65464429173792,52.7823770878064],[-127.65441084150534,52.782487993541935],[-127.65420817685451,52.78262648858752],[-127.65406650876794,52.78278150236763],[-127.65395416332811,52.78295010994678],[-127.65381543692544,52.78310900075529],[-127.65371884187714,52.783324466277136],[-127.65355411162682,52.7834596182454],[-127.65326771056527,52.78349840564973],[-127.65296133588154,52.7835010471442],[-127.65263218894901,52.78346700808819],[-127.65248945716911,52.783354681368415],[-127.65248744551346,52.783134445575016],[-127.65251691993221,52.78296028146431],[-127.65253766126303,52.78275204660606],[-127.65252034681075,52.78259255821263],[-127.6525186993288,52.78240593702564],[-127.65251039562627,52.782215490728085],[-127.65248615824876,52.78204489021881],[-127.6524985995167,52.78186255429225],[-127.65248890976346,52.781683902033535],[-127.652391361521,52.78151489042339],[-127.65215966292499,52.78140717964004],[-127.6518822395428,52.781341588036405],[-127.65159409038144,52.781286791484284],[-127.65131067716337,52.78123417843711],[-127.65102468889354,52.7811871968022],[-127.6507395139267,52.781137405111224],[-127.65045610275193,52.78108478999401],[-127.65017177815744,52.781032743049266],[-127.64988747571834,52.78098125110814],[-127.64960144778877,52.780933154606295],[-127.64931465760137,52.78088954300889],[-127.64902447331619,52.78085383413308],[-127.64873177852047,52.78082544159846],[-127.64843746541523,52.78080323188315],[-127.6481325900401,52.78077221116014],[-127.64791764731021,52.78078532035514],[-127.64747324327865,52.78084424935199],[-127.6471807359037,52.78079679401379],[-127.64696058869738,52.780723095689886],[-127.64668238657407,52.78066086574851],[-127.64641291233973,52.78058450511321],[-127.64612257362292,52.780520758326226],[-127.64584841053902,52.7804668814194],[-127.64557516152402,52.780388885941505],[-127.64530843934732,52.780311354262786],[-127.64503832931557,52.78024228118953],[-127.64476006859107,52.78017837061938],[-127.6444871684398,52.78010933542706],[-127.64422145040199,52.78003347315626],[-127.64397542590385,52.77993883390912],[-127.6437652280701,52.77980950721368],[-127.64355680843796,52.77967847827181],[-127.64331157234129,52.7795799077366],[-127.64310690395052,52.77944938144009],[-127.64285130244042,52.77934702735273],[-127.64257822231265,52.779297046626],[-127.6422937009342,52.77935988636669],[-127.64206399070672,52.779471836110545],[-127.64185635085008,52.77960253268004],[-127.64162134905023,52.77972183733621],[-127.6413376846915,52.77973477555363],[-127.64104197875209,52.77972434146493],[-127.64074304433562,52.77970218622567],[-127.64044571484771,52.77967383802464],[-127.64015104853029,52.77964208895367],[-127.63985947139973,52.779594037576466],[-127.63960639326098,52.77950846457458],[-127.63939540420212,52.779382504162605],[-127.63919783626635,52.7792434602777],[-127.63898499347916,52.779117525052385],[-127.63873623058359,52.77902347823065],[-127.63846577424668,52.778944871407205],[-127.6381829264187,52.77888212151603],[-127.637896989981,52.7788356724621],[-127.63760457409138,52.77881397427074],[-127.6373030730897,52.77882154709791],[-127.63700979775246,52.778850302513725],[-127.63673249026941,52.77893208428072],[-127.6364626708829,52.77901543782992],[-127.6361918232015,52.77899903991496],[-127.63592227076968,52.7789198497187],[-127.6356529256445,52.77882159975317],[-127.6353805339101,52.778740762015566],[-127.63510179178213,52.7787121411785],[-127.63481461280448,52.77873016148893],[-127.63452289334977,52.77877513836986],[-127.6342317736467,52.77883580851491],[-127.63394820626766,52.778899726595455],[-127.63367795320985,52.77897187014871],[-127.63341852246069,52.779060120667204],[-127.63315814835494,52.779147818767775],[-127.63288791363463,52.77922051618717],[-127.63260988921242,52.779283797777104],[-127.63232889453748,52.77934208022279],[-127.63204487170186,52.77939423438793],[-127.63175877794,52.77944081189444],[-127.63146967780128,52.77948182574323],[-127.63117852179677,52.77951726269276],[-127.63088619433574,52.77954654546894],[-127.63058959835097,52.7795613234206],[-127.63029869542167,52.77953061833499],[-127.63001943998954,52.77946443608945],[-127.62973707162716,52.779413998778274],[-127.62944324820029,52.77940406534763],[-127.62914537534225,52.7794098897642],[-127.62884736756853,52.77941178747415],[-127.62855239525649,52.77939626300284],[-127.62825895298792,52.77937175788525],[-127.6279662394616,52.7793421931454],[-127.62767436166901,52.77931037417303],[-127.62738249916117,52.77927855426757],[-127.62709213711624,52.77923774519448],[-127.62680273233858,52.77919747812254],[-127.6265093777521,52.77917520934783],[-127.62620717500904,52.77916482806871],[-127.62590752576719,52.77917234585985],[-127.62562953786365,52.779212626239605],[-127.62539421599656,52.779324620539796],[-127.62517725939847,52.7794554160265],[-127.62495096065867,52.77956055862365],[-127.62466210699863,52.77958361693453],[-127.62436653564728,52.77960116281778],[-127.62406707486063,52.779613722015974],[-127.62376644394779,52.779620126929075],[-127.62346647819228,52.77961979615057],[-127.62316998441993,52.779612690837695],[-127.62287946953141,52.779592050615946],[-127.62259879446698,52.779537080021996],[-127.62232127988692,52.779467501638884],[-127.62203857993579,52.77940807392719],[-127.62175097140249,52.779366092656474],[-127.62146072062349,52.7793280750346],[-127.62116963434958,52.77929230118579],[-127.6208776707081,52.77925766866613],[-127.62058660682274,52.77922245803209],[-127.62029731468523,52.77918498029939],[-127.6200088162988,52.77914412804102],[-127.61972383342552,52.77909762176875],[-127.61944653839845,52.77903362942247],[-127.61917626594986,52.7789588949171],[-127.6189042231173,52.778886426140254],[-127.61862684612878,52.77882020008068],[-127.61835024197639,52.77875003489747],[-127.61807198813472,52.77868493162782],[-127.6177886821061,52.778633913771465],[-127.61750062888748,52.77860425877719],[-127.6172010544985,52.778589334320635],[-127.61689736253591,52.77858848223762],[-127.61659895419376,52.778604361816406],[-127.61631333951979,52.77863912941629],[-127.61604760674838,52.778708927766075],[-127.6157980091453,52.77881213167231],[-127.6155590146068,52.77892583348822],[-127.61532832248196,52.7790383084479],[-127.61510624353186,52.77915738103151],[-127.61491234644572,52.77928504164291],[-127.61470359771154,52.779412897433616],[-127.61448949095242,52.77954644030107],[-127.61417648944935,52.77959390106844],[-127.61396393031877,52.7794735223047],[-127.61374394731871,52.77935324532201],[-127.61345063057985,52.779307403527916],[-127.6131605194007,52.779322039160064],[-127.61286208854804,52.77931269259094],[-127.61256388089954,52.77928485103307],[-127.61231467630031,52.77927594711151],[-127.61206551805091,52.77931748468646],[-127.61187301783599,52.77945800733946],[-127.61176601991613,52.77962481327444],[-127.61168536863181,52.77980078953634],[-127.61161600255743,52.77998053842622],[-127.6115466355613,52.78016027829102],[-127.61146877425416,52.780336215976746],[-127.61137011890145,52.78050291573411],[-127.61124129028808,52.78065713456597],[-127.61106648710889,52.78079908944608],[-127.61084295360678,52.78092939194498],[-127.61058906235048,52.78104273175718],[-127.61032414996238,52.78113492435092],[-127.61006470634089,52.78119957358657],[-127.60979881198242,52.78116679746355],[-127.60951551929098,52.781066993807336],[-127.60923009202938,52.78100870273005],[-127.60894131745988,52.78096053643348],[-127.60864949983153,52.78092979031564],[-127.60835588214576,52.780925414867035],[-127.60805658214494,52.78094297055092],[-127.60776460860005,52.780982278975486],[-127.60749020604888,52.7810443296795],[-127.6072248172253,52.78112363532878],[-127.60696533969325,52.78121238290793],[-127.60670783746995,52.78130390070887],[-127.60644835776928,52.78139264713389],[-127.6067138558019,52.781167627960286],[-127.60678377136067,52.78100189118471],[-127.60677340040635,52.78082492397493],[-127.60673036782796,52.780643920453805],[-127.60668822906086,52.78046178370974],[-127.60666571575896,52.78028274089872],[-127.60664967104638,52.78010304448817],[-127.60663454752857,52.77992334440336],[-127.60661758236316,52.779743660560165],[-127.60660712813223,52.77956445245287],[-127.60662072126016,52.779382672983864],[-127.60663433550874,52.77920145815752],[-127.60659624816151,52.779028233298],[-127.60644364224166,52.77887170552247],[-127.6062809895156,52.77871980791669],[-127.60611383080457,52.77857132567227],[-127.60593935379096,52.778425750262485],[-127.60575760062554,52.77828420202557],[-127.60559863741756,52.77813112304389],[-127.60544424546755,52.77797630432796],[-127.60530919018763,52.777817301872226],[-127.60524516477719,52.777645552530565],[-127.60523461140446,52.77746353864696],[-127.60520098989743,52.77728521232558],[-127.60515715195068,52.7771070168569],[-127.60511425624334,52.7769293734161],[-127.6050843058843,52.77674987581293],[-127.60505803201575,52.77656976290428],[-127.60499580232467,52.77639630284111],[-127.60485334400933,52.7762374011145],[-127.60476233820495,52.77606433473766],[-127.60463750760347,52.77590519149769],[-127.6044466780577,52.775768805187596],[-127.60424214666963,52.77563821076757],[-127.60403482494904,52.77550765416668],[-127.60383572334574,52.7753736219298],[-127.60365676050075,52.775231467304486],[-127.6035042841996,52.77507774072976],[-127.60336549075663,52.77491765716182],[-127.60322582011926,52.77475871533648],[-127.60307883118044,52.77460267128135],[-127.60293092270933,52.77444663961106],[-127.60278942002137,52.774288278295074],[-127.6026561579337,52.77412699731909],[-127.60252282799128,52.77396348418614],[-127.6024217829539,52.773794480940346],[-127.6023836543063,52.77361956905685],[-127.60238437660698,52.773440772338326],[-127.60240266036666,52.773260049695345],[-127.60242279364313,52.77307873679155],[-127.60242622914024,52.772898217019595],[-127.60241208219009,52.77271905846533],[-127.6023895700424,52.772539458220265],[-127.60235871963619,52.772360527894875],[-127.60231953107468,52.772182267482734],[-127.60227295504518,52.77200467295315],[-127.60221525004889,52.77182779542658],[-127.60214371709496,52.77165333974256],[-127.60205742162307,52.77148133658374],[-127.60196284544948,52.771311123432845],[-127.6018627294329,52.77114210683408],[-127.60176167250907,52.77097253803701],[-127.60166338683422,52.770802375296554],[-127.60157248984675,52.77063155554515],[-127.60149360112435,52.770458885780286],[-127.60143036947468,52.77028263924269],[-127.60137638169999,52.7701057014421],[-127.6013233089026,52.76992819511372],[-127.60126471096001,52.76975188515809],[-127.60119137183044,52.769578583342955],[-127.60107472195065,52.769413710625365],[-127.6009359563386,52.769253632550736],[-127.60080181760742,52.769092926174956],[-127.60066127586902,52.7689345489643],[-127.60042272131395,52.768811694108905],[-127.60026081185465,52.76865305211245],[-127.60015036229328,52.768480247165805],[-127.6001059550807,52.76831103354343],[-127.6001241352648,52.7681269493069],[-127.60009963832985,52.76794400351072],[-127.6000005592238,52.76780187385654],[-127.5999838340218,52.767776885172104],[-127.59992622180808,52.767601681913874],[-127.59989816149137,52.76742271247456],[-127.59987658281351,52.76724308959862],[-127.59987078587656,52.767063260301974],[-127.59987979886942,52.766882663918345],[-127.59985179601034,52.76670481456126],[-127.5997729003481,52.76653157852166],[-127.59969029423935,52.76635840201576],[-127.59970002103854,52.76629605190832],[-127.59982583353893,52.76620970759759],[-127.59989047850735,52.76615109182508],[-127.59991608011329,52.766041453966054],[-127.60000130423911,52.76588784117973],[-127.6000099742653,52.765871464539785],[-127.60007211166032,52.765696312652295],[-127.60008950227724,52.76551615772295],[-127.60002818764164,52.76534156978531],[-127.60000070062905,52.76532625158275],[-127.59980920990759,52.765220132408665],[-127.59962198703495,52.76507920511811],[-127.59949528893863,52.764918395524326],[-127.59944594167588,52.764740837104014],[-127.59943639964536,52.764560493655544],[-127.59939618423957,52.76437888276398],[-127.59937769390528,52.76420707300047],[-127.59939965781432,52.764049839688745],[-127.59961894238606,52.76388206730298],[-127.59976239114994,52.76372149017125],[-127.59985165556138,52.76355212869372],[-127.59983297484877,52.76337527270381],[-127.59978444364653,52.763194905208785],[-127.59976009165473,52.76301531969552],[-127.59974316839157,52.7628361977419],[-127.59972809486332,52.762656494529345],[-127.59971486182428,52.762476757211154],[-127.59970256442138,52.762297016070974],[-127.59969305749851,52.762117227861225],[-127.59968449212887,52.761937991743444],[-127.59968147256413,52.761758123928644],[-127.59968216369583,52.761578196486084],[-127.5996828551572,52.7613982779854],[-127.59968261111152,52.76121836326239],[-127.59967775692557,52.76103907639468],[-127.59965989367605,52.760859411044386],[-127.59962995634598,52.76067934548068],[-127.59961025878997,52.76050026111207],[-127.59961653768143,52.760320822233446],[-127.59964501874326,52.760139394422964],[-127.59969493462476,52.759960480931156],[-127.599778703089,52.759792879912496],[-127.60000053521846,52.759668788623046],[-127.60035028291577,52.759440943292276],[-127.60059244584842,52.75933954839144],[-127.60084319532862,52.75924420545505],[-127.60109873666958,52.75915272434589],[-127.60135523883326,52.75906234152409],[-127.60161268134516,52.75897251023538],[-127.60186913968616,52.75888101485584],[-127.60212083957161,52.7587862120895],[-127.60236772480032,52.75868699970999],[-127.6026182984535,52.75858717139348],[-127.60287258167084,52.75848729179043],[-127.60312494513455,52.75838575194582],[-127.6033696761565,52.758278720107434],[-127.60359837548265,52.75816517233854],[-127.60380632243475,52.75804238437538],[-127.60398689581636,52.75790764005002],[-127.60413248534351,52.75775600380102],[-127.60424971175021,52.7575901740897],[-127.60434619864515,52.757416225387175],[-127.60443048561822,52.75723852469492],[-127.60451110300349,52.75706198614048],[-127.6045899909426,52.75688884303057],[-127.60465580675826,52.756713627915985],[-127.60471040655615,52.7565363333432],[-127.60475566626857,52.75635748067342],[-127.60479167013688,52.75617931069013],[-127.60480155303271,52.755997579444404],[-127.60481451537309,52.7557989915689],[-127.60481978860169,52.75561788835671],[-127.60486183161099,52.755477192305115],[-127.60504126028592,52.7553368567924],[-127.60526098841491,52.75520717865551],[-127.6054996882078,52.75508844982963],[-127.6057369311308,52.754980385121186],[-127.60598476914664,52.75488282836723],[-127.60624119359744,52.75479132317666],[-127.60650238835996,52.75470310594166],[-127.6067616911173,52.75461435804475],[-127.60701525268429,52.75452064841958],[-127.60725830695353,52.75441922660003],[-127.60748701777604,52.75430680030596],[-127.6077052151265,52.754186106040606],[-127.60791577983407,52.75405991123323],[-127.60812156511085,52.753929853737844],[-127.60832449591062,52.75379815806066],[-127.60852740454882,52.75366590630877],[-127.60873223015962,52.7535353048282],[-127.60894276737655,52.753408543446646],[-127.60916187618143,52.753287833765896],[-127.60939526338062,52.75317646027024],[-127.60963436223814,52.75306892673717],[-127.60986968618596,52.75295975861275],[-127.61009168584022,52.752841814281005],[-127.61029844224754,52.752713425280156],[-127.61049568955387,52.75257899675825],[-127.61068534669498,52.75244019729082],[-127.6108702875122,52.752299211411646],[-127.6110533362379,52.75215769522121],[-127.61123542140214,52.7520150709947],[-127.61141279061657,52.75187026936403],[-127.61158261808828,52.75172277320911],[-127.61174212190318,52.75157204688641],[-127.61188183726034,52.75141318971313],[-127.61198397105062,52.751242518633404],[-127.61203674163949,52.751066921624734],[-127.61206622585753,52.7508888469567],[-127.61208448000556,52.75070867583463],[-127.6120971841288,52.750528590002176],[-127.61211172797549,52.750348469869415],[-127.61213558283777,52.750168786590756],[-127.61216221256899,52.749989065109034],[-127.61219999328216,52.74980975515658],[-127.61226487436107,52.74963566820203],[-127.6123557819245,52.74946235302835],[-127.61247664878503,52.74929646334181],[-127.61264093329783,52.74914959748388],[-127.61284675060506,52.74902178121622],[-127.61307144785845,52.74890210747146],[-127.61329231326559,52.74877967911137],[-127.6134895543244,52.748645809877694],[-127.61367449079775,52.74850538389621],[-127.61385275723451,52.7483605655675],[-127.61402162099368,52.74821251353102],[-127.61418110345512,52.74806179250245],[-127.61430291546716,52.74789645257718],[-127.61440876196554,52.74772628359401],[-127.61457120024784,52.74758000510895],[-127.61477420799964,52.74745165888149],[-127.61499510336272,52.74733034758456],[-127.61522362244337,52.74721397961954],[-127.61545210444324,52.74709705569142],[-127.61567876617313,52.746980712392514],[-127.61590926958505,52.74686823457477],[-127.61614070696767,52.74675575236496],[-127.61636643017296,52.746639420603245],[-127.6165902335944,52.74652142892172],[-127.61681117654744,52.74640124327489],[-127.61702449324478,52.74627611355857],[-127.61722458548589,52.746144440099464],[-127.61741700909813,52.746006702278954],[-127.6175981268584,52.74586408028695],[-127.61776886498976,52.74571711739088],[-127.6179095225733,52.7455599247817],[-127.6180313340731,52.745395136420754],[-127.61817569919916,52.74523789223385],[-127.61833038399988,52.74508385926836],[-127.61849827831432,52.744935257453385],[-127.61868796007363,52.74479867615271],[-127.61890311804325,52.744673517261305],[-127.61913355190197,52.74455935662184],[-127.61938227618283,52.74446287834315],[-127.61965806926784,52.74439517073743],[-127.6199389578644,52.74433972276394],[-127.62022373988037,52.74428870417503],[-127.62050756536621,52.7442371421074],[-127.62102602817507,52.74415822794493],[-127.62129250054971,52.744089524387874],[-127.62149935097044,52.74396559644556],[-127.62168401358737,52.74381955564831],[-127.62189442207465,52.74369164980078],[-127.62211239707705,52.74356756670232],[-127.62232757509324,52.743442965892775],[-127.62253141733878,52.743313472750316],[-127.62269123388229,52.74317281419767],[-127.62282504083548,52.743006742103944],[-127.62290376473578,52.74283189999862],[-127.6228682269306,52.74265359160924],[-127.62286416987246,52.74247317017289],[-127.62295048134854,52.742302706779654],[-127.62306192892714,52.742134702024785],[-127.62320152886859,52.74197470997649],[-127.62328880042605,52.74180535392388],[-127.6233405079855,52.74162752269379],[-127.62337452487078,52.741448250577264],[-127.62336497220332,52.74127014709174],[-127.62333591119486,52.74109119290366],[-127.6233578591421,52.74091153193686],[-127.62341330220372,52.74073476977244],[-127.6234771192617,52.74055845649222],[-127.62354839627118,52.74038315178632],[-127.62363184129245,52.740210485318265],[-127.6237349637672,52.74004315095567],[-127.62387835516404,52.73988591213995],[-127.62404329256664,52.73973397039041],[-127.6241951408359,52.73957941186584],[-127.62430390828418,52.739414240586136],[-127.62437891048717,52.73923944849598],[-127.62442963317572,52.739060509049416],[-127.62446089056799,52.738881839457015],[-127.62443093449262,52.73870401860884],[-127.62438147139542,52.73852534722385],[-127.62434867792804,52.738345888671574],[-127.62434094864658,52.73816663858762],[-127.62435360371015,52.73798710585181],[-127.62437369133222,52.73780747003655],[-127.62439098969357,52.73762787286891],[-127.62440178994599,52.73744836577662],[-127.62441075050931,52.737268884169694],[-127.62441782028573,52.73708886378152],[-127.62442584607965,52.73690939509014],[-127.62443199628599,52.73672939637513],[-127.62443539336378,52.7365499918216],[-127.62443131543867,52.73636956991323],[-127.62441510633164,52.7361870742302],[-127.62439706409272,52.736005159951546],[-127.62438741699361,52.73582425919453],[-127.62439642610872,52.73564645371075],[-127.6244352902524,52.73547272712451],[-127.62454786126132,52.7353103002452],[-127.62471173780895,52.735155573547104],[-127.62487283908534,52.73500088508224],[-127.6245809888513,52.73486368870022],[-127.62439396636591,52.73472672400829],[-127.62425808325045,52.73454420157121],[-127.62402858056764,52.73446106763422],[-127.62372513154428,52.73445799220844],[-127.62355134588417,52.7344009886949],[-127.62349853084892,52.734353518301766],[-127.62346242359725,52.73416008822187],[-127.62343805381153,52.73400685092915],[-127.62333367221656,52.73382276985914],[-127.62321653080271,52.7336450354045],[-127.62306451514145,52.733501413613986],[-127.62285111278861,52.733377698847804],[-127.62262676273187,52.7332591842686],[-127.62239428935753,52.733146377738166],[-127.622142716747,52.73306802979559],[-127.62187933972965,52.73297190898879],[-127.62163073430278,52.732873906113994],[-127.62138575320482,52.732773601614966],[-127.62113983248945,52.73267275360782],[-127.62089125155725,52.73257530486171],[-127.6206337192065,52.73248639132021],[-127.62036638536786,52.73240825768709],[-127.62009642696626,52.732334078718964],[-127.6198229946227,52.732266117082155],[-127.61954248569859,52.73220722054197],[-127.61926118511597,52.73215169723875],[-127.61898334575623,52.73208996449359],[-127.61871426284492,52.73201409329119],[-127.61844520845283,52.731939342071485],[-127.6181680728487,52.73187142779255],[-127.61788744164075,52.73180916607491],[-127.61760222330314,52.73177274970044],[-127.61730846714273,52.73178016893964],[-127.61701076674235,52.73180613365746],[-127.61671352012254,52.731819769485035],[-127.61642083413257,52.73180642901948],[-127.61614726298852,52.7317345418601],[-127.61586266999896,52.731690265755574],[-127.61556542689699,52.73167922800103],[-127.61526949963593,52.731678269177195],[-127.6149729550069,52.73168572101638],[-127.61467864516737,52.731703230155546],[-127.6143854662287,52.731726327886065],[-127.6140875572783,52.7317220214648],[-127.61380560741888,52.73167378501235],[-127.61353291859149,52.73160074970652],[-127.61325246495419,52.73154295848216],[-127.61296770109341,52.73149363780882],[-127.61268377273494,52.73144205401269],[-127.6123998241105,52.73138991380722],[-127.61211854462664,52.73133493821106],[-127.61183536301168,52.731278302162714],[-127.6115705459576,52.731192267205245],[-127.61131606808111,52.73111000839034],[-127.6110774076029,52.73100399979444],[-127.6108431862449,52.730892880764415],[-127.61061256877679,52.73077890477782],[-127.61038649647652,52.73066263285821],[-127.61016947883361,52.730540066147455],[-127.60995698477666,52.7304146299239],[-127.60973814281787,52.73029320848633],[-127.6095065488007,52.73017756679129],[-127.60926624687391,52.730052520408975],[-127.60901905655211,52.729941575977755],[-127.60876415618735,52.72987221331801],[-127.60849614375927,52.72987365212597],[-127.60821473787,52.72993804927438],[-127.60793346451275,52.73003046848887],[-127.60766964922935,52.73011871946563],[-127.60741425361377,52.73020910521773],[-127.607163731079,52.73030558444974],[-127.60691704199212,52.730405373481226],[-127.6066703938428,52.73050628239146],[-127.60642949619935,52.730612151829504],[-127.60620024845156,52.73073187775645],[-127.60593262090121,52.73079271737935],[-127.60562874825153,52.73080248806477],[-127.60533817398674,52.73077116436252],[-127.60506308911206,52.730707675241064],[-127.60479204448121,52.730628436388464],[-127.60452114178452,52.730552557918315],[-127.60423381084429,52.730484185725864],[-127.60395101873685,52.73041295271667],[-127.6036982402494,52.73032561437415],[-127.60350364634935,52.73020721248568],[-127.60338974303293,52.730038947546625],[-127.60333726806479,52.72985134097228],[-127.6033361311874,52.729672555489294],[-127.60340357553409,52.72949227518413],[-127.60345814577794,52.72931497799165],[-127.603406160585,52.72914081644534],[-127.60322707743869,52.728990249283136],[-127.60298601704243,52.728893781204384],[-127.60272506665953,52.728811036589775],[-127.60245228940816,52.72873462309473],[-127.60217863514393,52.72865933298463],[-127.60191128984616,52.72857891602466],[-127.6016510952598,52.72849167479063],[-127.60139270787602,52.728402731290615],[-127.60113165854936,52.72831717759689],[-127.60086536277268,52.728240106886105],[-127.60057871529486,52.72816443467674],[-127.60029755866621,52.72813633296156],[-127.60000118006805,52.7281230023096],[-127.59913091845394,52.72801662821657],[-127.59794089005553,52.727568218564684],[-127.59701608163321,52.72729218399329],[-127.59587857563008,52.72700782178688],[-127.59504001105182,52.72690490472396],[-127.59451691032596,52.72692940708671],[-127.59390381955255,52.72695344584036],[-127.59357559083512,52.726856458980095],[-127.59301098116568,52.72656371702067],[-127.59232702426436,52.72602934230466],[-127.59188947897258,52.72573598842333],[-127.59142100493172,52.725533296613264],[-127.59110041956849,52.7254171424239],[-127.59032399237492,52.72511325739075],[-127.58966096106433,52.72486611021573],[-127.58884035571234,52.72447089476067],[-127.5882958933253,52.72411956616567],[-127.58760930257831,52.723886178853625],[-127.58718427517194,52.72380394729837],[-127.58669903479483,52.72359809224681],[-127.58585983471227,52.72307531645117],[-127.58534275645184,52.72261094052856],[-127.5849329409051,52.72208738469133],[-127.58419666530192,52.72198861183208],[-127.58350517684023,52.72152154718082],[-127.58175814213739,52.721273323880666],[-127.58102392950055,52.721079220139416],[-127.58075899407781,52.720860842585836],[-127.58057933937896,52.7207169751167],[-127.58040062620245,52.720573659642234],[-127.58022282797573,52.72042977554486],[-127.58004684295659,52.720284736766786],[-127.57987635838472,52.72013794653203],[-127.57971135337286,52.719988840171325],[-127.5795536815955,52.71983739270344],[-127.57939594905424,52.71968426885553],[-127.57923446856789,52.719530065390686],[-127.57907482241865,52.71937528096124],[-127.57891790349645,52.719218782554485],[-127.57876740397371,52.719060511434705],[-127.57862798621169,52.718900969747075],[-127.57850144158257,52.718738447426205],[-127.5783924383458,52.71857401153677],[-127.57830280345287,52.7184065165191],[-127.57823624363772,52.71823590348754],[-127.57819549633865,52.7180615795762],[-127.57817409582015,52.717883631947984],[-127.57816746222768,52.71770379932206],[-127.5781718884955,52.71752214062767],[-127.57818183418905,52.717339286539946],[-127.57819177979758,52.71715643242886],[-127.57819895236283,52.71697361566818],[-127.57819688349865,52.716792044421936],[-127.57817727534758,52.71661239550396],[-127.57812424115474,52.7164315111071],[-127.5780712487359,52.71625174709003],[-127.57806476063253,52.716075840233806],[-127.57812986823689,52.715905129360394],[-127.57823777778658,52.71573889042902],[-127.57836707156737,52.71557404907477],[-127.57849821753517,52.71540917360892],[-127.57861353275334,52.71524227839602],[-127.57872887325509,52.715076494713664],[-127.57884047969328,52.71490964922139],[-127.57893339070746,52.71473912777103],[-127.57900580351543,52.714565519695974],[-127.57906980551925,52.714390339017214],[-127.57912725060764,52.714213569714126],[-127.57918100314116,52.71403685015778],[-127.57923286644542,52.713859600022936],[-127.57928566312225,52.71368232828057],[-127.57934218706689,52.71350557118776],[-127.57939873138886,52.71332937874218],[-127.57945340098482,52.71315264655525],[-127.57950434246816,52.7129753996325],[-127.57955896981449,52.71279754692639],[-127.57961823760117,52.7126196315614],[-127.5796682026286,52.7124412856416],[-127.57969410868445,52.71226382029335],[-127.57967922557629,52.712086905254516],[-127.57961523592239,52.71191065273182],[-127.57953366785996,52.71173519332115],[-127.5794650385518,52.71155900328366],[-127.57943995017247,52.71138166981105],[-127.57945656903384,52.711203764702844],[-127.57949632637241,52.711024991402965],[-127.5795490565878,52.71084604304194],[-127.57960274696325,52.710668202662816],[-127.57967044762671,52.71049298015099],[-127.57975303595677,52.71031923368653],[-127.57981332198197,52.71014410211555],[-127.57982435846156,52.709965716097805],[-127.57980566582827,52.709786054224736],[-127.57978230591563,52.70960532535225],[-127.5797719606719,52.70942555079598],[-127.57976534252354,52.70924628193598],[-127.57975778437746,52.70906646076054],[-127.57974835856938,52.70888667373337],[-127.5797343068654,52.70870694013736],[-127.57971748320064,52.70852725289118],[-127.57970797462792,52.7083452159698],[-127.57970031364616,52.708162598085224],[-127.57968620050718,52.707981188230384],[-127.57965824340222,52.707801651123766],[-127.57960727383146,52.70762634348041],[-127.57952592074278,52.70745648571797],[-127.57942520623793,52.707289696063235],[-127.57931343578055,52.70712474143472],[-127.57919244146255,52.70696102314174],[-127.57906316370439,52.70679910241941],[-127.5789265100494,52.70663784601124],[-127.57878527903162,52.70647832817332],[-127.57863945018491,52.706319993154764],[-127.57849180462676,52.70616223845983],[-127.57834326784473,52.70600562555115],[-127.57819475264382,52.70584956817261],[-127.57804717815237,52.70569405393421],[-127.5778977668017,52.70553857323503],[-127.57774648830134,52.705383108540595],[-127.57759431259197,52.70522822071984],[-127.57744121886273,52.70507334507059],[-127.57728538053297,52.704919627191586],[-127.57712863019354,52.704766486371],[-127.5769691292948,52.70461393840536],[-127.57680783824887,52.70446309133824],[-127.57664473691247,52.704313398390276],[-127.57647797160291,52.70416486658272],[-127.57630941649563,52.704018044610585],[-127.57613815249309,52.70387294484181],[-127.5759623319027,52.703730139184614],[-127.5757501745026,52.70360744424576],[-127.57550530381398,52.70350256908013],[-127.57525050332892,52.70340510899795],[-127.57500127780352,52.70330757335954],[-127.57474847674098,52.70321400428656],[-127.57449210962713,52.70312385458454],[-127.57423483013241,52.70303427261211],[-127.57397938392357,52.702944100452754],[-127.57372658757099,52.7028505381137],[-127.57348817744918,52.7027444419836],[-127.57326774822523,52.70262353978854],[-127.57302128304025,52.702525397925896],[-127.5727658220025,52.70243466735055],[-127.57250588132823,52.70234792435934],[-127.57224417667024,52.70226400248756],[-127.57196349761587,52.70219322177053],[-127.5716711122607,52.70213157446644],[-127.57141869566317,52.70204808207799],[-127.5712516144534,52.70191525004607],[-127.57115450695748,52.70174447689133],[-127.57107368595308,52.701562840117326],[-127.57095538777955,52.70139572313951],[-127.57078297150126,52.701243896213164],[-127.57059402442776,52.701096218800124],[-127.57043368256811,52.700944794325665],[-127.5703452195852,52.70078231640087],[-127.5703166132584,52.70060894646352],[-127.57031928003028,52.70042899597781],[-127.5703459103346,52.70024535202883],[-127.57038925753429,52.70006261372507],[-127.57040735718961,52.70000015133338],[-127.57044197120541,52.699882547703965],[-127.57051260198361,52.69971064418476],[-127.57067287296233,52.69955715958515],[-127.57081438264478,52.69939720056434],[-127.57094609848728,52.699223364861766],[-127.57102405514392,52.699049120603206],[-127.5709707766939,52.698885614685835],[-127.57085276825684,52.69872577549119],[-127.57069962511746,52.69856864966339],[-127.57053171677559,52.69841284275316],[-127.57036660179759,52.69825755413635],[-127.57019516065067,52.69810684309835],[-127.57001276262982,52.697960197780894],[-127.56994916265126,52.69779290184009],[-127.569938964127,52.69761592160964],[-127.56995087529103,52.6974352818051],[-127.56997198821092,52.69725283256902],[-127.56999124855484,52.69707041712308],[-127.57000224596071,52.69689034551226],[-127.57002156749243,52.69670960619984],[-127.57002518940672,52.696530198460536],[-127.5699927174491,52.69635239587816],[-127.56994263783315,52.6961748294604],[-127.56988054434399,52.695997989136806],[-127.56980556452257,52.695823554633414],[-127.56971588759482,52.6956526891465],[-127.56960416422162,52.695487159251485],[-127.56947218581024,52.69532526385746],[-127.569331047711,52.69516628913933],[-127.56918991098847,52.69500732319742],[-127.56902681054369,52.694855933532544],[-127.56878953973705,52.6947542967225],[-127.5685170959464,52.694678922714104],[-127.56824657268011,52.69460575536874],[-127.56797429495246,52.6945348618718],[-127.56823626364275,52.69445064009469],[-127.56849342815482,52.69436199811595],[-127.56874742986719,52.694262744001946],[-127.56894504100413,52.69411660745524],[-127.56895219856018,52.693957895008786],[-127.56892146239882,52.69377670564553],[-127.5688576265226,52.69360268596164],[-127.56870741846866,52.69344888097021],[-127.56851877963787,52.693308477849286],[-127.56831562961409,52.69317668085413],[-127.56807366961051,52.69307342845432],[-127.56781367217215,52.69298331315557],[-127.56762260101449,52.692852474154726],[-127.56737248925164,52.69257669602136],[-127.56736303670745,52.692394656139825],[-127.56734071382252,52.69221503957272],[-127.56724841151829,52.69204812617934],[-127.56709992348429,52.69189036810393],[-127.56692678401636,52.69174247287722],[-127.56673189310966,52.69160832057623],[-127.56652146971234,52.691479980865715],[-127.56633021905974,52.69134353718026],[-127.56616531086841,52.69119273265382],[-127.56601042072228,52.69103730087495],[-127.5658491991013,52.69088588158556],[-127.56566717453693,52.69074819237539],[-127.56542535755322,52.69064829567955],[-127.56515457279731,52.690566721899806],[-127.56490543017901,52.690469164122284],[-127.56464565996902,52.690384643877174],[-127.56436379209897,52.69032955544092],[-127.56407342023203,52.69029532293287],[-127.56378736571658,52.690252629019476],[-127.56349398559264,52.6902374922391],[-127.56320975805299,52.69019364255005],[-127.56262857713166,52.69016385585506],[-127.562331513447,52.690149321376055],[-127.56204365877505,52.69018399604749],[-127.5617592900031,52.69023823643867],[-127.561487602027,52.690309677881466],[-127.56122466546147,52.690392220853674],[-127.56096655552312,52.69048029484703],[-127.56071233339382,52.690573365366404],[-127.56046289724341,52.690670855476505],[-127.56021919548567,52.690772752561585],[-127.559981198447,52.69087905705164],[-127.55974612937695,52.69098924997647],[-127.5595129520587,52.69110052922168],[-127.55927977385494,52.69121181695754],[-127.55904466002276,52.69132087903394],[-127.55880571795217,52.69142663759147],[-127.55856099271082,52.69152630270591],[-127.55830282967256,52.69161325030591],[-127.55803503641651,52.691690245551584],[-127.55776534859815,52.69176613542487],[-127.55750241613207,52.69184922569727],[-127.55724445310919,52.69194178216403],[-127.55699613851243,52.69204485462792],[-127.55679690483947,52.69217249149829],[-127.5566609447858,52.69233292513496],[-127.5565504888878,52.69250646231019],[-127.55642105889405,52.69266792974394],[-127.55620547039923,52.692778968111476],[-127.55594619876834,52.69286145001479],[-127.5556611706408,52.69292353086564],[-127.55537467308076,52.69297049265778],[-127.5551077644258,52.69304690421538],[-127.55484866666082,52.69313386528067],[-127.55458568480776,52.69321638441318],[-127.55431882871434,52.693293914413424],[-127.55405490580544,52.69337588880448],[-127.55379774317709,52.6934656197669],[-127.5535539894819,52.69356694703658],[-127.55330652792665,52.6937451063942],[-127.55316773733684,52.69390444317203],[-127.5530289255521,52.694063224024234],[-127.55288447361308,52.694219837538775],[-127.55271469821673,52.69436838387932],[-127.55256271168851,52.69452173392858],[-127.55245569498982,52.69468849512225],[-127.5523655342171,52.69486008154666],[-127.55227817958003,52.695032195631875],[-127.55220389955957,52.695207490218635],[-127.55209406786653,52.69537317627587],[-127.5519439483652,52.695527056591324],[-127.55177980378205,52.69567776864377],[-127.55161752522142,52.69582844672854],[-127.55146274313677,52.695981832139246],[-127.55130702086576,52.69613467376634],[-127.55113814570123,52.69628264054406],[-127.55095418366287,52.69642351606805],[-127.55074941451049,52.69655290107702],[-127.55053234520943,52.69667516671585],[-127.55030864052918,52.696793591877444],[-127.55008312245644,52.69691316158996],[-127.54984115780657,52.69701389184295],[-127.54955261151132,52.697056381987686],[-127.54925784414137,52.69705524423115],[-127.5489615954844,52.69703898752776],[-127.54866646308767,52.69702775526445],[-127.54836972161371,52.69702327843506],[-127.5480786208965,52.6969951765549],[-127.54778662762254,52.69696821571344],[-127.54749402466955,52.69695022113403],[-127.54721565902608,52.69689000510511],[-127.5469415689657,52.69681964303219],[-127.54666394187976,52.696754375990615],[-127.54638272605006,52.69669195369742],[-127.54616091575491,52.696581099560426],[-127.54598237285387,52.696436052865685],[-127.54580106476344,52.69629159843158],[-127.54560709226745,52.69615571388149],[-127.5454094764547,52.69602156308556],[-127.54520907543784,52.695887448732464],[-127.54497898344945,52.695777831686236],[-127.5447066355677,52.69570407851199],[-127.54441593962854,52.69566138948147],[-127.54417499740154,52.695559195989404],[-127.5441741692873,52.6953820910373],[-127.54433856754683,52.6952381215006],[-127.54454059826497,52.69510933991382],[-127.54452673963961,52.6949307298611],[-127.54439107165186,52.69476661412943],[-127.5441520476193,52.694666072279496],[-127.54386572095419,52.694616042371855],[-127.54356948600511,52.69459921605467],[-127.54327439220066,52.694588534887046],[-127.54296860664132,52.69458975981583],[-127.54275707367563,52.69448044979848],[-127.54257841511841,52.69433203653729],[-127.54239250329361,52.694187637567865],[-127.5421822005769,52.694060930532025],[-127.54196375709013,52.69393994428664],[-127.54173987257938,52.693821827302415],[-127.5415069736002,52.693711110565296],[-127.54126867422666,52.693604392432945],[-127.54102229432334,52.69350507112507],[-127.54076693461725,52.69341370547239],[-127.54050440792801,52.69332916850251],[-127.54023194757016,52.693252043621335],[-127.53994693954658,52.693237858488146],[-127.53965147417007,52.69326808473236],[-127.53935497411183,52.69329552585185],[-127.53904946728635,52.6933298105809],[-127.5387628736601,52.693323490320175],[-127.53850899733817,52.69324723810274],[-127.53826704860627,52.69314224789725],[-127.53803389533623,52.69302368080368],[-127.53780260138574,52.69290565379815],[-127.53757604828503,52.692790371005124],[-127.53735759855768,52.69266824644366],[-127.53714733848113,52.6925420949425],[-127.53694341550016,52.692411940874486],[-127.5367458238412,52.69227721040251],[-127.5365537109078,52.69214017466063],[-127.53636514308853,52.691998599151354],[-127.5362242797789,52.691843510261094],[-127.53608004308586,52.69167165067774],[-127.53599439519722,52.69150574784699],[-127.53592005821378,52.69131951872732],[-127.53585751502932,52.69115163552967],[-127.53585633937499,52.690963881143716],[-127.53587517035545,52.690791566946594],[-127.53589209736934,52.69059180903795],[-127.53559548743033,52.69061531439805],[-127.53530571534654,52.69064882714359],[-127.53504826851473,52.69073122960349],[-127.53480751826518,52.690839760173006],[-127.53456666654874,52.69094549357108],[-127.53432670681723,52.69105008480081],[-127.53407618878128,52.6911447340166],[-127.53379759646559,52.691206112085],[-127.53352782893924,52.691280834635236],[-127.53325508816803,52.69134998160552],[-127.53297450057364,52.691407464848965],[-127.53269195419952,52.691461610105065],[-127.53240532631763,52.69150571924426],[-127.53211357290658,52.69153588694343],[-127.53182693854545,52.691579429757866],[-127.5315403692705,52.69162522194784],[-127.53125267983143,52.69166541419092],[-127.53096092452016,52.691695579013576],[-127.53066693553723,52.691715118479564],[-127.53037188708925,52.69173074312806],[-127.53007676369685,52.69174469101678],[-127.52978165493232,52.69175863796752],[-127.52948647126954,52.69177090815784],[-127.52919136213207,52.691784853619936],[-127.52889639804317,52.69180328037672],[-127.52860768621568,52.691840681446635],[-127.52832900153258,52.69189980554646],[-127.52805336239794,52.69196618008154],[-127.52777676356723,52.69203144549851],[-127.52750307537057,52.69210060018254],[-127.52722841231942,52.692168636982714],[-127.52694975855967,52.69222832230464],[-127.52666387366389,52.692267367582474],[-127.52636591387758,52.692279657088804],[-127.5260750298587,52.692308677273374],[-127.52578655176528,52.692352794142785],[-127.52550011043965,52.692402488654544],[-127.52521954015873,52.692460508821675],[-127.52494863630692,52.69253017714174],[-127.52468468201009,52.69261265005652],[-127.52442954910445,52.692708450264725],[-127.52419342472369,52.692818019083944],[-127.52398098223209,52.692941851774464],[-127.52377744087704,52.69308126189597],[-127.52359834597698,52.69323100717567],[-127.52346209340476,52.69338635536264],[-127.52344295725999,52.693551944678845],[-127.52355868083366,52.69373091611875],[-127.52376199723714,52.69400123239694],[-127.52368124512073,52.69417995470307],[-127.52348558770271,52.69430693068381],[-127.52325514970512,52.69442035123717],[-127.5230077323025,52.6945250154656],[-127.52274864508202,52.69461470224224],[-127.52248162318236,52.694689362905066],[-127.52220784951912,52.694756819908754],[-127.5219301705043,52.69481872214631],[-127.52164862605747,52.69487619005229],[-127.52136508866167,52.69492975526492],[-127.52107959851912,52.69498054719526],[-127.52079402808675,52.69502909750432],[-127.5205074038664,52.69507429786116],[-127.52021772890977,52.69511169028369],[-127.51992600185889,52.69514350373964],[-127.51963331567339,52.69517420793764],[-127.51934160780553,52.69520658464851],[-127.51905193093573,52.69524397418273],[-127.51876719586807,52.69529026668722],[-127.51848938918044,52.69534879935371],[-127.5182156247213,52.69541680273905],[-127.51794580347462,52.6954914891601],[-127.51767793313014,52.69556894760443],[-127.51740816940506,52.69564530899],[-127.51713637316212,52.695716647203774],[-127.51685965405436,52.695779645730504],[-127.51657893602977,52.69583484857037],[-127.51629528687846,52.69588560479322],[-127.51600968530221,52.69593358765093],[-127.51572306479761,52.69597877607273],[-127.5154364088742,52.69602339927006],[-127.515148833725,52.69606804262424],[-127.51478116775719,52.69612772959106],[-127.51447984902285,52.696150685643744],[-127.51419025034605,52.69613817406671],[-127.5139173564599,52.69607388977974],[-127.51364617727556,52.69600565478934],[-127.51337491972984,52.695935178240696],[-127.51310541660938,52.69586187146672],[-127.51283583553128,52.695786332104845],[-127.51256713443478,52.695709650814436],[-127.51229932879151,52.69563184533725],[-127.51203148422762,52.69555290981543],[-127.51176364096796,52.69547398264013],[-127.51149581831918,52.695395610598204],[-127.51122893040285,52.69531722588226],[-127.51096206819149,52.69523996120976],[-127.51069520183552,52.69516213101926],[-127.51042923576613,52.69508373260614],[-127.51016325106491,52.695004777833695],[-127.50989724742617,52.69492525773805],[-127.50963216369635,52.69484572518055],[-127.50936705626572,52.69476507136157],[-127.50910376776089,52.694683828524916],[-127.50883954175097,52.694602041187416],[-127.50857714981484,52.69451967361693],[-127.50831471909342,52.694436176023686],[-127.5080541224598,52.69435209821341],[-127.5077934479191,52.69426577888492],[-127.50753548187598,52.69417718214549],[-127.50728020953369,52.69408630820334],[-127.50702852519505,52.6939920245852],[-127.5067795150513,52.693894908050375],[-127.5065221962191,52.693798453953605],[-127.50626113389107,52.69370092650567],[-127.50601369881963,52.69359537629849],[-127.50580005782611,52.69347593906449],[-127.50563481473468,52.69333625725588],[-127.5055125054724,52.69317865227867],[-127.5054185060447,52.693008917251014],[-127.50534274221201,52.692831091780626],[-127.50527247305999,52.69265096258992],[-127.50515682279989,52.692392939762414],[-127.5049140812261,52.69228901285107],[-127.50466775355935,52.69218848551111],[-127.50442048865621,52.69208741370521],[-127.50417593742827,52.691984629526104],[-127.5039395784591,52.69187781166495],[-127.50371316103879,52.69176357476657],[-127.50349849869744,52.691640783580304],[-127.50328729174299,52.69151122176501],[-127.5030851667729,52.691375938045425],[-127.50289488031761,52.691234897066494],[-127.5027220291789,52.691089147990496],[-127.50256848055345,52.690938666917276],[-127.50245995304745,52.69077696283853],[-127.50241012071187,52.69059824646781],[-127.502384208694,52.69041417408652],[-127.502352862452,52.6902340993461],[-127.5023243418912,52.69005510927899],[-127.502303211875,52.68987546830306],[-127.50228763905396,52.68969574699389],[-127.50227855761518,52.68951595129522],[-127.50228893884409,52.68933646172082],[-127.50236111294542,52.689148887969175],[-127.5022890985757,52.688997924590815],[-127.50208067452597,52.68886775988054],[-127.50182844274782,52.688756657657045],[-127.50156079819102,52.688681623946145],[-127.50127772077263,52.688642102892885],[-127.5009804921724,52.68862181032063],[-127.50067965740043,52.688604370170324],[-127.50038671466586,52.68857394130857],[-127.50010850904037,52.68851473340291],[-127.49984069221945,52.6884346491328],[-127.49958461532941,52.688346010968225],[-127.49933563048303,52.688247757562486],[-127.49908846456641,52.688148915360706],[-127.49883137394453,52.68805748163373],[-127.49857247158113,52.687967200497134],[-127.49833259593524,52.687864335457036],[-127.49812528478651,52.68773919845665],[-127.49794335439543,52.68759748650961],[-127.49777138998364,52.68744947686174],[-127.49759578070555,52.68730319059169],[-127.4974120062001,52.68716205742934],[-127.49722824772464,52.68702092377531],[-127.49704816086039,52.68687918685593],[-127.49687805474613,52.68673115212479],[-127.4967234276942,52.686575072311406],[-127.49654433652704,52.68643499886492],[-127.49628816094737,52.68634299193809],[-127.49602116154442,52.68625896968549],[-127.49584305129474,52.68612055962268],[-127.49569669954437,52.68596269569168],[-127.4955648734214,52.68579623410126],[-127.49543575587248,52.68562749578471],[-127.49530034465691,52.68546444263656],[-127.49514865541225,52.685312807107145],[-127.49496889527198,52.68518002168212],[-127.49473159988206,52.68507095551643],[-127.49444344027255,52.68499112795045],[-127.49414171467407,52.68494733523263],[-127.4938610096348,52.68494812143793],[-127.49360010165537,52.68501198499866],[-127.49334426515261,52.685115017440346],[-127.49308386751508,52.68522034945631],[-127.4928102056094,52.685290534842714],[-127.49252460933819,52.685337340262606],[-127.49223131035937,52.68537583140196],[-127.49193484944354,52.68540315235051],[-127.49163879942525,52.68541589461173],[-127.49134495417593,52.685412349380854],[-127.49105344621793,52.685395886886184],[-127.49076166540384,52.68537158031168],[-127.49047062344226,52.68534165872162],[-127.49017939174259,52.68530669892091],[-127.48988809704755,52.68526948828311],[-127.4895976632634,52.6852305889859],[-127.48930631611213,52.685192265570926],[-127.48901508155836,52.6851567379588],[-127.48872392990874,52.68512400652739],[-127.48843283278407,52.68509240362634],[-127.48814082186983,52.68506136763172],[-127.48784974940678,52.685030874983745],[-127.48755773933469,52.68499983753289],[-127.48726662429921,52.684967667006106],[-127.48697640911512,52.684934928320686],[-127.4866861358626,52.68490050371165],[-127.486396723289,52.6848643815077],[-127.4861080894882,52.68482377377003],[-127.48582370511735,52.68477189264768],[-127.48554094520293,52.684713829338754],[-127.48525825932877,52.684657450360454],[-127.48497405657078,52.684611169763],[-127.48468495375798,52.68458345122459],[-127.4843918736801,52.68457483900175],[-127.48409553602833,52.68457916305569],[-127.48379847819287,52.68458965636661],[-127.48350050150374,52.684600160571506],[-127.48320416327627,52.6846044734043],[-127.4829106564938,52.68458353216784],[-127.48261603491962,52.68458390283054],[-127.48232063055195,52.684588210561],[-127.4820245712466,52.684574025288846],[-127.48173100693299,52.684551395887425],[-127.48144241843337,52.68451189711636],[-127.48116332715811,52.684452090922974],[-127.48088371837724,52.68437772693251],[-127.4807508387168,52.68423256110321],[-127.48065961143556,52.68405939969104],[-127.48049779928793,52.683907873850494],[-127.48033293141778,52.6837485396288],[-127.48009703285292,52.68370556404161],[-127.4798066703371,52.6837753742011],[-127.47954170619695,52.683856072196534],[-127.47925828607448,52.68391234149536],[-127.47896613037607,52.68390370406535],[-127.47867825013915,52.68385746375552],[-127.47841311867649,52.68377281324648],[-127.47813270657808,52.683728154220766],[-127.47783604528959,52.683722933825905],[-127.47753845056505,52.683717724467364],[-127.47724899151707,52.68367934741872],[-127.47696369197398,52.68362745651145],[-127.47667480755447,52.683632788739054],[-127.47638343547665,52.68367345779692],[-127.47609397283,52.68371577900727],[-127.47580737720652,52.683760870245514],[-127.47551448642295,52.683784185684495],[-127.4752194963694,52.683800792053596],[-127.47492442456992,52.68381460076007],[-127.47462935721086,52.683828973633986],[-127.47433447792821,52.683848383280655],[-127.47403864542513,52.68386723921971],[-127.47374508253064,52.6838715021572],[-127.47345570264912,52.68383534773758],[-127.47317222062648,52.68378231274496],[-127.47289313083972,52.68372248698522],[-127.47261050669955,52.683667197903766],[-127.47232185520978,52.68362542668061],[-127.47203171493129,52.68364813381212],[-127.47174341733185,52.68369772034815],[-127.47145784717593,52.68374559489074],[-127.47117322898805,52.68379401275872],[-127.47088869141025,52.6838452268542],[-127.47060802663002,52.68390088442138],[-127.4703303625773,52.68396322045063],[-127.47005281342919,52.68402892624308],[-127.4697772691864,52.68409908109178],[-127.46950938303993,52.684176429885554],[-127.46925572624811,52.68426368809998],[-127.46903651915537,52.684382465348776],[-127.46885436363875,52.68452823630662],[-127.46868337785023,52.68467554371838],[-127.46853588279701,52.68483265371639],[-127.46843134897422,52.68499930410327],[-127.4683529621122,52.685172361030496],[-127.46828673677341,52.685348619207126],[-127.4682270206517,52.68552536060967],[-127.46820280946679,52.685711189170874],[-127.468136428997,52.68588296525336],[-127.46796331442388,52.68602246027963],[-127.4677396292512,52.68614633085042],[-127.46751315236551,52.68626967101195],[-127.46732884347338,52.6864070634763],[-127.46720276154818,52.68656725688574],[-127.46711331027471,52.68674212840098],[-127.46705836438616,52.68692329301394],[-127.46704038827556,52.687101752143626],[-127.46706589242413,52.68727798915652],[-127.46712476264774,52.687454919808076],[-127.4672592104691,52.687809145419784],[-127.46720038610792,52.6879853097581],[-127.4671415615699,52.68816148300977],[-127.46708366985266,52.68833763554192],[-127.46702299193811,52.68851383191602],[-127.46696046079703,52.68869004249586],[-127.46691742996161,52.6888676944984],[-127.46692633952006,52.689046381291206],[-127.46695658292434,52.689225912622305],[-127.46697294514017,52.689406182909146],[-127.46698559835284,52.68958594367122],[-127.46700102265457,52.68976566070479],[-127.46702475676649,52.689944717543476],[-127.46706603962565,52.69012187739451],[-127.4671562866611,52.690294495484316],[-127.46727680504493,52.6904583222285],[-127.46742028151299,52.69061626510729],[-127.46758936300009,52.690763789052994],[-127.46777758264372,52.69090211396959],[-127.46797583097094,52.691035819960575],[-127.46820546189863,52.69119268111269],[-127.46841281760355,52.69132123225448],[-127.46862468317661,52.69144636354407],[-127.46886376148176,52.69155433843433],[-127.46909277899321,52.69166635803241],[-127.46925368061223,52.69181847510217],[-127.46932631391616,52.69199074764463],[-127.4693325439016,52.692172265579],[-127.46935997061493,52.69235015446552],[-127.46943268247574,52.692524676805206],[-127.46952103824209,52.69269619575729],[-127.46963333946667,52.69286293007982],[-127.4697593939076,52.69302556370882],[-127.46990928335572,52.693180616053716],[-127.4700839844518,52.69332975172057],[-127.47026952887309,52.69347034816307],[-127.47041869952172,52.69363156969514],[-127.47038000919281,52.69380020025496],[-127.47026635166041,52.693971458529354],[-127.47019912928243,52.69414605223],[-127.47017287214278,52.694325736082874],[-127.47015866881269,52.69450582448652],[-127.4701435319214,52.694685933559704],[-127.47013396747288,52.6948659636421],[-127.47013827164649,52.69504526349537],[-127.47016478918141,52.695223728297755],[-127.4702200162029,52.695401823463364],[-127.47028542194596,52.69557923472066],[-127.47033784007428,52.6957562530926],[-127.47035597111557,52.695933137213736],[-127.47031569512362,52.69610963410928],[-127.47023832537732,52.696285475977355],[-127.47016651325904,52.69646124795502],[-127.470143887388,52.696639199962455],[-127.47017972735416,52.69681922444043],[-127.47023399934132,52.69699621943735],[-127.47030213628317,52.697171910292795],[-127.47039783931548,52.69734109399001],[-127.47055788640486,52.697494340704516],[-127.47066739823114,52.69766054378506],[-127.47074476815952,52.69783556233004],[-127.47078607402197,52.69801271992231],[-127.47076165039955,52.69819181543487],[-127.47057131762938,52.698452027661965],[-127.47054276915152,52.69856504725062],[-127.47047515157949,52.69864716183184],[-127.47031918343869,52.69877466861502],[-127.47013020497458,52.69891212242242],[-127.46993557460856,52.69904739599062],[-127.46973719453365,52.699181039337255],[-127.46953690705018,52.69931358530912],[-127.46933478026533,52.69944615400001],[-127.46896212981451,52.699660450528164],[-127.46895818619286,52.69970758025751],[-127.46893468374549,52.699752157532565],[-127.46891847768117,52.69990088335127],[-127.46883290287647,52.700000045530494],[-127.46867166627501,52.700190389615145],[-127.46853347374342,52.70034961351362],[-127.468396199545,52.70050883466627],[-127.46825799013737,52.7006680583913],[-127.46812071389311,52.700827279186676],[-127.46798437020782,52.700986479128105],[-127.46785085532728,52.70114732932645],[-127.46771640554873,52.701308191064996],[-127.46757725290135,52.70146686966904],[-127.46742870002402,52.70162174705947],[-127.46722577554839,52.70175880550734],[-127.4670498982337,52.701900564414544],[-127.4669769186228,52.702070187346635],[-127.4669338698743,52.70224727284233],[-127.46690858995966,52.702429184409176],[-127.46688978799675,52.70261101476835],[-127.46686815629143,52.70279120361141],[-127.46685670417116,52.70297069990556],[-127.46685452140701,52.70315063601636],[-127.46686161902433,52.703330464781615],[-127.46688075388099,52.70351013371989],[-127.46690359534384,52.703689765155],[-127.46691900533494,52.70386892473087],[-127.46691865682305,52.70404828175805],[-127.46690164530085,52.7042278475681],[-127.46687814037267,52.70440749471939],[-127.46685738814159,52.70458654238852],[-127.46684687399646,52.70476659166518],[-127.46684283375278,52.70494599483806],[-127.46683787854502,52.70512596544616],[-127.4668282639872,52.70530543842074],[-127.46681868352901,52.70548547590482],[-127.4668044623835,52.705665562544105],[-127.46677815005391,52.70584468866937],[-127.46673139034638,52.706021820078014],[-127.46666883273424,52.70619803738027],[-127.46658856578338,52.70637166961496],[-127.4664886741348,52.70654049883314],[-127.46636075364968,52.706702962274534],[-127.46621884442861,52.70686279388347],[-127.46608437056284,52.707023653127784],[-127.46597696671579,52.70718977797234],[-127.46590780995277,52.70736270548302],[-127.46586662855529,52.70754089636908],[-127.4658403833894,52.70772169809549],[-127.46581689112402,52.70790190036408],[-127.46580356514154,52.70808141932646],[-127.4658032460901,52.70826134037253],[-127.46579457957617,52.70844135694169],[-127.4657868899396,52.708623047166014],[-127.4657530964386,52.70880002439234],[-127.46566926779988,52.70897818397603],[-127.46550277567545,52.709124305739394],[-127.46525740623032,52.70921425498282],[-127.46498171131651,52.709284962061744],[-127.46470135546039,52.70935516182965],[-127.46444104141696,52.70944193342803],[-127.46420554764248,52.709549683085534],[-127.46397870704259,52.7096663006032],[-127.4637480284244,52.709779593827484],[-127.46349823620835,52.709875755279874],[-127.46320736233652,52.70990965650112],[-127.462919543565,52.70995136545716],[-127.46263275421492,52.709995867691525],[-127.46234697910027,52.71004315443285],[-127.46206219918048,52.71009266993538],[-127.4617804164031,52.710148308043834],[-127.46149303486897,52.71020290337203],[-127.4612305876735,52.71028183866604],[-127.46100641192656,52.71039561010734],[-127.46079186535206,52.71051991443625],[-127.46058494121756,52.710650283980705],[-127.46038179906031,52.71078284785244],[-127.46018522637641,52.710917571306204],[-127.46001508209993,52.71106653714586],[-127.45981554728317,52.71119624811827],[-127.45957626822972,52.71130235833307],[-127.4593265152237,52.71140019597388],[-127.4590816161203,52.711504689279934],[-127.45881911860077,52.711582507594095],[-127.45852920173652,52.71161750598628],[-127.45823332305977,52.71164080349517],[-127.45794038872144,52.71166911232667],[-127.45764653469877,52.71169743186977],[-127.45736253904744,52.711743007094654],[-127.45709932733652,52.71182699108723],[-127.45683516123724,52.7119104213896],[-127.45656816870743,52.71199277426316],[-127.45632110096652,52.712088321050594],[-127.45614623612714,52.71223509775245],[-127.4559625413459,52.71236741169039],[-127.45567091584547,52.712406907915636],[-127.45537421064827,52.71243358017594],[-127.45508113141217,52.712457399774344],[-127.45479527422376,52.712502982819785],[-127.45451837817308,52.712566953890544],[-127.45424930997079,52.71264260145909],[-127.45398412298654,52.712723795945635],[-127.45371893094274,52.71280443388966],[-127.4534497688872,52.712877838852236],[-127.45316984810546,52.71293455359793],[-127.45288010768668,52.71297514032506],[-127.4525892572058,52.713010135385666],[-127.45229531437569,52.713036200533246],[-127.45200234770009,52.71306393873017],[-127.45171541179477,52.713105043755995],[-127.45143846923779,52.71316788704726],[-127.45117141615394,52.71324854217423],[-127.4509244242515,52.71334688315374],[-127.4506993088755,52.71346176667385],[-127.4504050391104,52.71347830754718],[-127.45010625638893,52.71349825742662],[-127.44983977638039,52.71356881387321],[-127.44960338401917,52.713679351089354],[-127.4493917082394,52.713807516909405],[-127.44924671581025,52.71396120357838],[-127.44917297223192,52.714138103988084],[-127.44902618112509,52.71429348951463],[-127.44882294793057,52.714424912536934],[-127.44856436735468,52.71450994041895],[-127.44829443688567,52.7145883824582],[-127.44802924565745,52.71467012807053],[-127.44780411126838,52.71478444102216],[-127.44759517876521,52.71491201345992],[-127.44739669726162,52.7150472939218],[-127.44721137506798,52.71518746008859],[-127.44705813527213,52.71534460850031],[-127.44692563940232,52.71551157983443],[-127.44675984479372,52.71565374577523],[-127.44650656742805,52.71573142176037],[-127.4462067510101,52.7157765998125],[-127.4459491100679,52.715862166057924],[-127.4457106899367,52.71596823625246],[-127.44547994412152,52.716081501785645],[-127.44525399389072,52.71619974738808],[-127.4450346549908,52.71632182974074],[-127.44482096654495,52.71644609278083],[-127.44461671907918,52.71657583465286],[-127.44441817868298,52.71670943350857],[-127.44422059427943,52.71684414114681],[-127.44402109840159,52.71697719507435],[-127.44381495450189,52.717105837890074],[-127.44359936712529,52.71722900102086],[-127.44337807020709,52.717348306344604],[-127.44315111246635,52.71746431818145],[-127.44292127093337,52.71757755826473],[-127.44268762650273,52.71768804686945],[-127.44245111735879,52.717796328401164],[-127.442203140999,52.71789410625754],[-127.44194557776096,52.71798302516743],[-127.44168997652947,52.71807472615925],[-127.44143913333751,52.71817029576299],[-127.44118928365212,52.718268085484794],[-127.44094986241748,52.71837248090767],[-127.4407351795581,52.71849561838382],[-127.44053390557815,52.718631485724266],[-127.44001617818785,52.71859413690615],[-127.43974081042327,52.71865020668257],[-127.43946873903666,52.71872137237449],[-127.43919977499617,52.718802022685495],[-127.43893367720148,52.7188854349934],[-127.43867222430919,52.718969354565516],[-127.43841561952448,52.719059383604545],[-127.4381628715265,52.719153839463395],[-127.43791967379562,52.71925658897364],[-127.43769076206509,52.71937037190089],[-127.43740210873047,52.71941763169212],[-127.43714814556036,52.719337799633706],[-127.43689996804096,52.71923716326713],[-127.43665256034876,52.719132024239016],[-127.4363972335186,52.719039321060585],[-127.43613473713422,52.71895398683858],[-127.43586608059859,52.71887825101388],[-127.43558868679145,52.718818879700976],[-127.43530161321637,52.71877476345529],[-127.43501191706913,52.71873515341252],[-127.43472561380557,52.71868654259684],[-127.43444284535451,52.7186322741585],[-127.43415751526614,52.718584770978744],[-127.43386634734907,52.71855695042479],[-127.43357021523471,52.71854655988972],[-127.43327329942979,52.718540670895834],[-127.43297717165667,52.718530843761],[-127.4326809838078,52.71851877474989],[-127.43238393687248,52.71850895736391],[-127.43208801565204,52.71850528610089],[-127.43179431941853,52.71851224022198],[-127.43150425853992,52.718544930594085],[-127.43121854188769,52.71859662298317],[-127.43093473464405,52.718649977214206],[-127.4306518458474,52.71870331055878],[-127.43037000331228,52.718760002190784],[-127.4300930262254,52.718823350334354],[-127.42982282888838,52.71889559144509],[-127.42955845366792,52.71897559839179],[-127.42929701927264,52.719060617503025],[-127.42903848416961,52.71914896342427],[-127.42878281089708,52.7192395157004],[-127.42852809342362,52.71933117667031],[-127.4282753222953,52.719425620137486],[-127.42802541664919,52.719522825937865],[-127.4277821736339,52.71962498965273],[-127.42754372118257,52.719731587129324],[-127.42731002528733,52.719842044894165],[-127.4270791762133,52.719954709336626],[-127.42684931614339,52.720069038160474],[-127.42661947367633,52.720183931243234],[-127.4263905269376,52.72029769201223],[-127.42615967298411,52.72041035460798],[-127.42592596980869,52.72052080956095],[-127.42569029958298,52.72062792518701],[-127.4254450791794,52.720726754083906],[-127.42516340274878,52.7207890265139],[-127.42487319090569,52.720817783237315],[-127.42457964537674,52.72082975690573],[-127.42430562497866,52.7208992246263],[-127.42403454501964,52.72097370459387],[-127.42376439815591,52.721048163607406],[-127.42350098871975,52.72112983059861],[-127.42325956112913,52.721231406521824],[-127.42304393473155,52.72135620787755],[-127.42283395802774,52.72148318202395],[-127.42262774750517,52.7216123518711],[-127.42242248886687,52.72174207471443],[-127.42221342794987,52.72186903654723],[-127.42200533739498,52.72199710712488],[-127.42180855878028,52.72213120058406],[-127.42162971502118,52.722274608330636],[-127.42144049485432,52.72241253708903],[-127.42122669264477,52.72253675674452],[-127.4209939179534,52.72264774611491],[-127.42076397148573,52.72276038656101],[-127.42054072836844,52.7228796707747],[-127.4203849099779,52.72301831347571],[-127.42036582684881,52.72319789286213],[-127.42017824803114,52.723329638890604],[-127.41996164531957,52.723453325074026],[-127.41973380606294,52.723573784272205],[-127.41951349290842,52.723697514554964],[-127.41930821452678,52.72382722279589],[-127.41910196362575,52.723955830478246],[-127.4188680926415,52.72406234494779],[-127.41889154238068,52.72426606891905],[-127.41891419343408,52.724445707171604],[-127.4189257019367,52.72462491544862],[-127.41888945756752,52.724790130227895],[-127.41868138361376,52.72491987105646],[-127.4184267964478,52.72501711207158],[-127.41815986721994,52.725105534576514],[-127.41789447896805,52.72518497042071],[-127.41762231098332,52.72525552033037],[-127.41734727580348,52.72532330646909],[-127.4170741900129,52.72539442216111],[-127.41680859011825,52.72546713251376],[-127.41657657790772,52.72557418459071],[-127.41646640650255,52.725748138946926],[-127.41646945794346,52.725924086702086],[-127.41656152688397,52.726100078774074],[-127.41656287308871,52.7262805307987],[-127.41650959066695,52.72646388532954],[-127.41637648139877,52.726617384320896],[-127.4161700559873,52.72674093981538],[-127.41592794157539,52.726851475319314],[-127.41568677877429,52.72696255477415],[-127.41546351440576,52.72708182879642],[-127.41523933300239,52.727201678392724],[-127.41500359921828,52.72730877203604],[-127.41473133883797,52.727377074184496],[-127.4144436147128,52.72742650679493],[-127.41425515710173,52.72756105094819],[-127.41417267209023,52.72773130568599],[-127.41412846313466,52.72790894466594],[-127.41408983464721,52.72808707220794],[-127.41404751618315,52.72826580920198],[-127.41400145198591,52.728443470454714],[-127.41392087031198,52.72861482282385],[-127.41380017502638,52.72877937780634],[-127.41372154237179,52.72895406921245],[-127.41362697064076,52.729123348309564],[-127.41348291719245,52.72928257121654],[-127.41329175235238,52.72941995296455],[-127.41303388940023,52.72950320506638],[-127.41276479291783,52.7295837942622],[-127.41249800850181,52.72967780595012],[-127.412258508757,52.729783818140305],[-127.4121222300452,52.72992614069171],[-127.41214147982454,52.7301158995552],[-127.41223987094253,52.7302867785663],[-127.41225038151347,52.73046487759585],[-127.4122387111616,52.73064492091541],[-127.41221498081089,52.730825118573826],[-127.41217821464897,52.73100378750066],[-127.41212271521177,52.73114905474257],[-127.4121146787406,52.731326812320475],[-127.41209750411986,52.731509172665],[-127.4120504899487,52.73168627913642],[-127.41194108965811,52.73185630009916],[-127.4117658251844,52.7319979619642],[-127.41147450112193,52.732023890880654],[-127.41117549262147,52.73201348638406],[-127.41087918062031,52.73200024187768],[-127.41058274310679,52.73198363539056],[-127.41028974113578,52.73198659832096],[-127.41000067341955,52.73202427048658],[-127.40971085497206,52.73206754657206],[-127.40941769346934,52.73209405740514],[-127.40912302090898,52.73210264207937],[-127.4088274627359,52.73208434368618],[-127.408532052121,52.73207051746542],[-127.4082359618977,52.73206398909759],[-127.40793993069938,52.73205970110118],[-127.40764400673467,52.732058217837356],[-127.4073482337194,52.7320617716415],[-127.40705172521395,52.732070938101444],[-127.40675626172514,52.732083454000836],[-127.40646078322875,52.73209596933306],[-127.40616541134222,52.732111280438126],[-127.40587215511918,52.732134976738465],[-127.40558721449973,52.73218547443935],[-127.40530322977517,52.732237080882996],[-127.40501055727005,52.7322501238165],[-127.40471448830695,52.73224470719911],[-127.40441641420111,52.73223426528269],[-127.4041174609782,52.73222551899984],[-127.40381277951435,52.73221180097863],[-127.40355139372834,52.73227377650921],[-127.4033175491356,52.73238362971601],[-127.40309064547982,52.73250740621695],[-127.4028559518757,52.732619501481736],[-127.40259127620845,52.73269440917525],[-127.40229063330125,52.732719305783995],[-127.4019975504018,52.73269142828853],[-127.40170834542684,52.7326125066654],[-127.40144506346704,52.73261677764145],[-127.40121396354755,52.732725463822696],[-127.40098447987175,52.73285543647818],[-127.40072670421047,52.73294314336476],[-127.40044773732764,52.73300645193192],[-127.4001598487906,52.73305248785569],[-127.40000092255809,52.7330712009566],[-127.39986784746169,52.73308624219277],[-127.39957171510294,52.73310715019475],[-127.39927503286958,52.733111259322],[-127.39898632122238,52.733075475705185],[-127.39870045754466,52.7330133114989],[-127.39841271803556,52.73300722348062],[-127.39812438776305,52.733039808727185],[-127.39783556189407,52.733085850093225],[-127.3975468966915,52.733136372461644],[-127.3972580510996,52.73318184768254],[-127.39696779118876,52.73321221125075],[-127.39667773867461,52.73319213068768],[-127.3963851003912,52.73314966204033],[-127.39608507634095,52.733136424336195],[-127.39577681004094,52.733126646800265],[-127.39547829105915,52.733131324162834],[-127.39520851997717,52.7331642460469],[-127.39505709815842,52.733328016277],[-127.39501553837552,52.7335039379323],[-127.39500568918888,52.73368564245122],[-127.39498652771434,52.73386577199057],[-127.39491987003724,52.73404030655395],[-127.39482433298325,52.73421126621263],[-127.39473811843477,52.734383226715266],[-127.3946241292762,52.734642392629105],[-127.39439322385044,52.73475835294137],[-127.39416984130499,52.73487703],[-127.39394833337676,52.73499679624324],[-127.39373251228939,52.7351198660768],[-127.39352708281245,52.73524897238481],[-127.39332829948599,52.735383038859425],[-127.39313803191845,52.73552205226765],[-127.39295716346054,52.73566488123995],[-127.39278848303407,52.73581148369558],[-127.3926761515709,52.735979834164056],[-127.39265876079742,52.73615770005683],[-127.39268505350515,52.736338418325374],[-127.39271412052115,52.73651909462123],[-127.39270972984635,52.73669737085081],[-127.3926532875389,52.73687290310087],[-127.39256803363041,52.737046535956885],[-127.3924781319487,52.73721966799518],[-127.39240677848578,52.73739313546206],[-127.3924273609346,52.737569428914355],[-127.3924982000392,52.73775073851578],[-127.39256635634597,52.737934877726296],[-127.39246906025579,52.73808063087493],[-127.39222874797105,52.73819333545498],[-127.39197818663713,52.738304475448],[-127.39172191459143,52.738411208068406],[-127.39148815160584,52.73852551013402],[-127.39136130424306,52.73867554086207],[-127.39129726782512,52.738845557796765],[-127.39126136374018,52.73902532874432],[-127.39123860253935,52.739209427205935],[-127.39121117871137,52.73939301606795],[-127.39116318945626,52.73957180950704],[-127.39108537925375,52.73974647335577],[-127.39096261875623,52.739908219944155],[-127.3907760875453,52.740048870248266],[-127.39060929508027,52.74019768823969],[-127.39047536686219,52.74035844587629],[-127.39034991859347,52.74052302137789],[-127.39022348008791,52.74068593159587],[-127.39008483182353,52.74084450289951],[-127.3899188777273,52.74099051204703],[-127.3897049056522,52.74111466347491],[-127.389481534876,52.741235572208325],[-127.38925654105994,52.74136321617595],[-127.3891811488505,52.74152720567454],[-127.38916745080022,52.74170502641235],[-127.38917055823471,52.74188657551766],[-127.38917651002257,52.742069776713144],[-127.3891740680168,52.74225139156896],[-127.38917651035734,52.74244079479732],[-127.38899209990244,52.742561796442544],[-127.38872226515073,52.742651860116055],[-127.3884496364314,52.74274140029053],[-127.3882409646066,52.742858204575434],[-127.38812929526641,52.74301926025554],[-127.38807687766204,52.74320482965775],[-127.38804567362212,52.743386785016256],[-127.38803107178884,52.743565736944085],[-127.38802949042297,52.74374566447709],[-127.3880316367936,52.74392610379664],[-127.38802726541306,52.74410605536885],[-127.38800526210922,52.7442856598117],[-127.38795815244617,52.74446331981578],[-127.38789056940284,52.74463954540632],[-127.38781464591223,52.744815860744964],[-127.3877115241904,52.744982974959534],[-127.38755491122289,52.745131667209186],[-127.38734759644281,52.74526190425496],[-127.38714312806026,52.745394349008365],[-127.3869565420372,52.7455344280045],[-127.38677088967681,52.74567449562684],[-127.38658713084858,52.745816226351025],[-127.38640711354932,52.74595846845724],[-127.38623181568119,52.746103452188116],[-127.38608099458531,52.746259364043645],[-127.38594047593968,52.7464185075498],[-127.38573869689918,52.74654812006989],[-127.385500225413,52.746661908572094],[-127.38522051423057,52.74670612357977],[-127.3849503465564,52.74675808035963],[-127.38465544974605,52.746791829447176],[-127.38435728749997,52.746810479787634],[-127.3840720423345,52.74685532233153],[-127.38378899936222,52.74691134712232],[-127.3835068543053,52.746966239722404],[-127.38321787924774,52.747010568231964],[-127.38292099734475,52.747040408728125],[-127.38263982474146,52.7470106646498],[-127.38229045287059,52.74690885725036],[-127.38203833673025,52.74700318832267],[-127.38179216113744,52.74710864876502],[-127.38154299542171,52.74720798348412],[-127.38128493061839,52.74729060913309],[-127.38100805532683,52.74733646636663],[-127.38070844308237,52.74733887596004],[-127.38040591440216,52.747337400496136],[-127.38011015990408,52.747344802655974],[-127.37981445659375,52.747353333326544],[-127.37951895495463,52.74736857727102],[-127.37922555804354,52.7473910859885],[-127.3789322364724,52.747416399798496],[-127.37863892910501,52.74744170373568],[-127.37834459630245,52.747464221245686],[-127.37804858874928,52.747492362172906],[-127.37775238236283,52.74751434425656],[-127.37745997522067,52.7475104914229],[-127.37717220992143,52.74747744905963],[-127.37688671469883,52.74742867785375],[-127.37660194193518,52.7473737370445],[-127.37631543794309,52.74732217856124],[-127.37602643320541,52.747279615890704],[-127.37572647928525,52.74724278551767],[-127.37544034223954,52.747260715948386],[-127.37516380338839,52.74731720831806],[-127.37488947884677,52.7473848740013],[-127.3746173148053,52.747462045753366],[-127.37434995697085,52.74754420898922],[-127.37408636504668,52.74762856025758],[-127.3738246960989,52.74771457419365],[-127.37356504627515,52.74780616832],[-127.37331493728699,52.74790549628435],[-127.37308184964802,52.7480152772087],[-127.37288933501624,52.748145870295374],[-127.37276115041384,52.74831494963957],[-127.3726016980881,52.74846365408335],[-127.37236950427305,52.74857229316645],[-127.37210988208375,52.74866500448638],[-127.37183487590501,52.74874052598244],[-127.37155544268089,52.748794236787326],[-127.3712581778955,52.74881228708239],[-127.37095491945344,52.74881751201839],[-127.37066343501506,52.748842218517616],[-127.37039183313928,52.7489087296401],[-127.37013711891974,52.74900978129189],[-127.36992027732572,52.74913449326554],[-127.36975229531015,52.74927825379065],[-127.36961831393872,52.74944066283697],[-127.3695676095394,52.74962452526106],[-127.3694789975703,52.74978416209564],[-127.36938901151011,52.74995839541563],[-127.36930956131984,52.75014314949338],[-127.36920893220442,52.7503040473427],[-127.3689673008176,52.75040831501067],[-127.36872584732986,52.7505181755553],[-127.36854195392867,52.75065819234073],[-127.3684229486913,52.7508249174029],[-127.36827287313982,52.750977424560894],[-127.36805408924167,52.75109991364098],[-127.36780960643189,52.75120252625246],[-127.36753365910177,52.751278604194475],[-127.36730415594037,52.75138496850793],[-127.36712868161605,52.751527126449034],[-127.36697217001301,52.7516819486387],[-127.3668147044828,52.751836225755625],[-127.36663464993562,52.75198012210325],[-127.36643950462994,52.752116903848155],[-127.36626031397275,52.7522591036807],[-127.36615894528899,52.752426176472],[-127.36613780184668,52.752606885553035],[-127.36614830169228,52.75279002349347],[-127.36614385534648,52.75297053790056],[-127.36607782421726,52.75314000530457],[-127.36592319397836,52.75329592477191],[-127.365733749413,52.75343712222804],[-127.36549504310496,52.75354638763004],[-127.36529788857204,52.75367870707671],[-127.365142154691,52.75382904280269],[-127.36506868192431,52.75399858718975],[-127.36498140878722,52.75417166384601],[-127.3649872225677,52.754353735337624],[-127.36498467710402,52.7545353482014],[-127.36493557256415,52.75471246376441],[-127.3648659660874,52.75488644640805],[-127.36478706774096,52.75506054614752],[-127.36470723046605,52.755234091813406],[-127.36463484977054,52.75540867146566],[-127.36456349286851,52.75558603685126],[-127.36448574170768,52.755766848220134],[-127.36443574889279,52.75594508564563],[-127.36444581626435,52.75611534262657],[-127.36456340460342,52.756280985238405],[-127.36476202689963,52.756427194149246],[-127.36499373055874,52.75653377762519],[-127.36526330777414,52.756605737077585],[-127.36554926251569,52.75666741717289],[-127.36582168590927,52.756741028004434],[-127.36607344551263,52.756836166844714],[-127.36631981931001,52.75693698131261],[-127.36657156340823,52.75703156332012],[-127.36682601269824,52.757123871483614],[-127.3670804779306,52.75721617891606],[-127.36733491135388,52.75730792124954],[-127.36759026323462,52.75739909636411],[-127.36784925539943,52.75748798668362],[-127.36811464257363,52.757573439148544],[-127.36837273760266,52.75766345968021],[-127.36860988014249,52.75776549804744],[-127.36876874532364,52.75791551814664],[-127.36891309104307,52.75807580450621],[-127.36907757887141,52.75822744432512],[-127.36931106894315,52.75833120079266],[-127.3695835990281,52.758407599476946],[-127.36984348586482,52.758495354115254],[-127.37009974944486,52.75858539230051],[-127.37035605300044,52.75867710630591],[-127.37060873363097,52.75877111285271],[-127.37085597745022,52.75886965700855],[-127.37109419344215,52.75897559646816],[-127.37131614557958,52.75909574123409],[-127.371500136319,52.75924714953673],[-127.3716693592885,52.759372385138214],[-127.37187807116207,52.759513415625875],[-127.37204347755056,52.75966448461932],[-127.37222071965392,52.759808124607865],[-127.37238491993517,52.75995023121164],[-127.37264631499468,52.76005534022533],[-127.3728764004978,52.7601680966099],[-127.37311106157414,52.760278557187206],[-127.3733475464497,52.76038843100911],[-127.37357949117641,52.76050116424964],[-127.3738041588414,52.76061846585028],[-127.3740197480401,52.760742042773714],[-127.37422715769544,52.76087075468138],[-127.37442725731121,52.76100347053849],[-127.37462096119883,52.76113906774478],[-127.37479639850432,52.76128384591855],[-127.37495996311445,52.76143436749766],[-127.37513448571343,52.76157972081831],[-127.37531543923963,52.76172274769998],[-127.37547805422916,52.761872723737554],[-127.37561315994907,52.76203310133036],[-127.37567739060053,52.762211688658795],[-127.37576625117046,52.76237710123405],[-127.37599172870566,52.76249046161047],[-127.37623655537305,52.762599119847394],[-127.37642295778,52.76273816244753],[-127.37658749019127,52.76288979126265],[-127.37675382517435,52.763039712870416],[-127.37694293204845,52.76317592516494],[-127.37716847122,52.76329096838627],[-127.37742133826478,52.76338943282781],[-127.37768215272497,52.763475482607696],[-127.37795891070724,52.76353779693804],[-127.37824725476293,52.763585411918456],[-127.37853820946069,52.76362738212278],[-127.37882107476058,52.76367730189197],[-127.37908216481682,52.76377174748136],[-127.37924465588931,52.7639172273042],[-127.37934654188147,52.764083039896406],[-127.37943194398828,52.764255771638574],[-127.37951187010293,52.764431374430636],[-127.37959361617152,52.76460582589069],[-127.37969010078903,52.764776750154375],[-127.37980035204592,52.764943019812364],[-127.3799124930185,52.76510983203972],[-127.38001539551159,52.76527843870517],[-127.38011372088998,52.765448775990585],[-127.38018525393588,52.765622791243665],[-127.38023181706335,52.7657998981296],[-127.38027005846256,52.76597823280214],[-127.38030183017335,52.76615719957227],[-127.38032898794675,52.76633677659514],[-127.38035333681617,52.76651583070829],[-127.38037028074454,52.766695536906205],[-127.380377009904,52.76687535438301],[-127.38037818667027,52.767055246179],[-127.3803802836684,52.76723511815218],[-127.38036843622653,52.76741459832599],[-127.38034080313088,52.76759370837157],[-127.38031037514698,52.76777228636837],[-127.38027436435854,52.76795093005814],[-127.38023182882256,52.76812852964505],[-127.38017813919528,52.76830569557291],[-127.38011979878746,52.768482360240164],[-127.3800660903033,52.7686589703313],[-127.38002542737374,52.76883711262294],[-127.37999498233921,52.76901569056679],[-127.37996920230894,52.76919476952833],[-127.37994996182937,52.76937490133804],[-127.37993811198713,52.769554381216125],[-127.37993555678624,52.76973375167966],[-127.37994507599853,52.76991353596962],[-127.37996385731478,52.770092655274034],[-127.37998636902944,52.770272295573065],[-127.38000794521497,52.770451937892645],[-127.38002211264921,52.77063167635605],[-127.3800204783251,52.77081103585955],[-127.37999840938492,52.77099007092661],[-127.37997635849722,52.77116967067556],[-127.3799738067493,52.771349605831475],[-127.38004042720839,52.7716301616496],[-127.3799794349089,52.771811340516656],[-127.38000726222775,52.771983062963635],[-127.38014612936462,52.77214339954106],[-127.38027766352373,52.77230661997528],[-127.38035290266913,52.77248002593804],[-127.38040879097716,52.77265815211807],[-127.3804442804616,52.77283707436273],[-127.3804407372609,52.77301477030891],[-127.38041519212067,52.77320113629787],[-127.3803594418043,52.77337216558411],[-127.38033924734897,52.7735517432705],[-127.38032554183147,52.773731244545914],[-127.3803267547666,52.773912255981436],[-127.3803586953587,52.774096259339366],[-127.3803626308418,52.77427555288927],[-127.38028072961242,52.77444185038469],[-127.38014188049736,52.77459872123808],[-127.37997783466844,52.774751413894876],[-127.37981102873434,52.77490469472412],[-127.37966662599547,52.77506219519733],[-127.37956527357969,52.7752298328145],[-127.37950229142955,52.775407115759116],[-127.37946538631267,52.77558688958424],[-127.37946463398201,52.775765117219386],[-127.37950295006823,52.775945126990315],[-127.37954584528141,52.77612339706945],[-127.37960081737847,52.776302089956914],[-127.37964093666513,52.77648040159305],[-127.37964202309526,52.77665804258124],[-127.3796107045828,52.77683831549317],[-127.37954961243497,52.77701668792098],[-127.37945391441778,52.77718706531233],[-127.37932440753013,52.777346075592106],[-127.37917152201011,52.77749974732554],[-127.37900645028179,52.77764964356536],[-127.3788357573952,52.7777984847651],[-127.37866976596447,52.777948956206785],[-127.37851689415392,52.77810319173102],[-127.37838463976337,52.77826334500404],[-127.37827397500965,52.77843053450718],[-127.37817079228549,52.7785998776913],[-127.37806385678262,52.77876758803276],[-127.37793911464392,52.77893045907345],[-127.37779373449716,52.779086847199046],[-127.37763615270511,52.77923945092188],[-127.37747294347628,52.7793898877301],[-127.37730973616364,52.77954088021164],[-127.37715308660037,52.77969347225208],[-127.37700955739992,52.779849837528204],[-127.37689416243973,52.78001483924607],[-127.37679940401928,52.7801863237717],[-127.37669995714334,52.78035618640965],[-127.37657048441193,52.78051686950394],[-127.37640542800132,52.780667882231654],[-127.37625626911634,52.780822626700555],[-127.37614741312082,52.78098923656602],[-127.37605448782931,52.78116013389314],[-127.3759643903243,52.78133212777749],[-127.37586302974299,52.781500882125854],[-127.37575326755963,52.78166805809431],[-127.3756369601942,52.78183363388453],[-127.37551034333843,52.78199652379108],[-127.37536963170969,52.78215453043599],[-127.3752157760303,52.78230765158831],[-127.37505253170605,52.78245808490093],[-127.37488365905186,52.78260633323723],[-127.3747109854541,52.7827523930879],[-127.3745232746709,52.78289245963795],[-127.3743374043637,52.78303250429424],[-127.3741722582547,52.78318127274452],[-127.37403436610012,52.78334036539358],[-127.37389553749071,52.78349947778834],[-127.37374174374912,52.78365483775902],[-127.37357383687228,52.78380475845447],[-127.37335189160564,52.783920564823546],[-127.37306919797263,52.783995045015665],[-127.37304828185928,52.78421106081339],[-127.37322189778939,52.784354175741605],[-127.37342758422365,52.78448402942506],[-127.37365430628269,52.784603548613404],[-127.37386363340484,52.78473056122488],[-127.37402510651363,52.78487157547477],[-127.37411797341463,52.78504478643807],[-127.37417296701925,52.78522403639267],[-127.37420099629804,52.78540249032505],[-127.37421511123829,52.785581663202905],[-127.37421905804216,52.78576207605394],[-127.37421651390608,52.78594256493168],[-127.37421022334033,52.78612253276526],[-127.37420115538468,52.7863025420828],[-127.37417447392075,52.786483313677046],[-127.37411880729856,52.786658255572505],[-127.37398474345824,52.786821230324264],[-127.37376377362271,52.7869387114261],[-127.37351540382696,52.78704193275388],[-127.37327553996118,52.78714954636824],[-127.37308005400875,52.78727961319206],[-127.3729393520035,52.78743873681779],[-127.37282685743398,52.787608182793136],[-127.37274136782315,52.78778011923792],[-127.37266710804253,52.787954721851335],[-127.37253761497001,52.78811595543552],[-127.37237339990769,52.78826583052414],[-127.3721922387171,52.78840862247654],[-127.37201013720299,52.788550860206215],[-127.37184871425062,52.7887012577662],[-127.37170515350387,52.78885818033381],[-127.37144096195632,52.789134194498594],[-127.37129449438602,52.78928722297475],[-127.37116501022189,52.78944901960561],[-127.37105243138639,52.7896162227782],[-127.3709417296331,52.789784524736945],[-127.37082255283728,52.789949007075414],[-127.3706817227775,52.79010421048687],[-127.37046932675518,52.79022942169487],[-127.37025416971292,52.79035522965796],[-127.37006731409429,52.790494721886816],[-127.36988146471505,52.79063643479178],[-127.36970309899246,52.79078031067977],[-127.36953509589628,52.790928539757374],[-127.36938304461079,52.79108163070426],[-127.36924698413777,52.79124125993119],[-127.36912595764102,52.791406317802064],[-127.369015225844,52.791574062009154],[-127.36891289246239,52.791742819972754],[-127.36883669947257,52.791915765203306],[-127.36880811674472,52.7920959918824],[-127.36882967504079,52.79227619839639],[-127.36877396116752,52.792450581357954],[-127.36853203629968,52.792553160107154],[-127.36825737512365,52.79261969678376],[-127.36797596957504,52.79267845648469],[-127.36769047590259,52.79272606355958],[-127.36739407592196,52.79275193586531],[-127.36710050435568,52.79277889531389],[-127.36681078621821,52.79283943482036],[-127.36661037143573,52.792962257224126],[-127.36660563603616,52.793133803387065],[-127.36665063881375,52.79332102701874],[-127.36665181213685,52.7935025920154],[-127.3665868562794,52.793678758139244],[-127.36649388319725,52.793850211178395],[-127.36636155303539,52.79401091394839],[-127.36620290062211,52.794161835376855],[-127.36603674719444,52.794310602193676],[-127.36586590669586,52.79445830246103],[-127.36569410808022,52.79460489275019],[-127.36552326230645,52.79475203658032],[-127.36535616824742,52.794900813270324],[-127.36519002676127,52.79505013455365],[-127.36502294523197,52.79519891056751],[-127.36485301589109,52.79534604264777],[-127.36467931731794,52.79549153253373],[-127.3644999565821,52.79563428137063],[-127.36431686265634,52.79577651737526],[-127.36413001747154,52.79591767582991],[-127.36393558163725,52.79605388284873],[-127.36373167969269,52.796184586318226],[-127.3635144725641,52.79630592127233],[-127.36327923844865,52.79641570080048],[-127.36302891014866,52.7965178002592],[-127.3627728515917,52.796615491279454],[-127.36251960276326,52.79671370503403],[-127.36227581730445,52.796817412603254],[-127.36204996709137,52.79692987825025],[-127.36185242296106,52.79705658595747],[-127.36170113629946,52.79720629433495],[-127.361587599668,52.797374618881165],[-127.36149010579848,52.797550603086336],[-127.36138318508267,52.797722769100666],[-127.36124608094238,52.797880158174536],[-127.361061869954,52.798017362269555],[-127.3608428421128,52.79814038985126],[-127.36060019468005,52.79825080560586],[-127.36034878839027,52.798348993033805],[-127.36008763083692,52.7984327218864],[-127.3598073646742,52.79849985885094],[-127.35952320478712,52.79856143599996],[-127.35924666935706,52.798629093279544],[-127.35899109736238,52.79871331086585],[-127.35877460684073,52.798829023993385],[-127.35859627332124,52.798975678666096],[-127.35843966411822,52.79913385492417],[-127.35828480382428,52.79928863918349],[-127.35813657829138,52.79944783877499],[-127.35802482534703,52.79961445299462],[-127.35796810093058,52.79978772021805],[-127.35793566662362,52.79996575457905],[-127.35793211740453,52.79999997705131],[-127.35791909759935,52.800145838029486],[-127.35791466202929,52.80032746679183],[-127.35791576587162,52.800508475484605],[-127.35792056333561,52.800688311595806],[-127.35793461502219,52.8008674846475],[-127.35795519294224,52.80104714705688],[-127.35798040390169,52.80122619091751],[-127.35800561788825,52.80140579065968],[-127.35802897189683,52.801584855964286],[-127.35805232920272,52.80176448611458],[-127.35807754099291,52.801943529871075],[-127.358100880738,52.802122595270916],[-127.35811960227208,52.80230227003946],[-127.35814488593972,52.802483554587845],[-127.35816923368189,52.802664849944605],[-127.35818144759621,52.80284460893471],[-127.35817129799145,52.80302182015006],[-127.35810052446813,52.803191887078654],[-127.35795419545991,52.803352740708384],[-127.35782183934543,52.803514553289254],[-127.35769509025148,52.80367742166429],[-127.35755705285794,52.803835937085346],[-127.3574040121235,52.803990142486924],[-127.35726130073654,52.804147590724874],[-127.357146720743,52.80431368017847],[-127.3570592767684,52.804485615845415],[-127.35699051428773,52.80466070689278],[-127.35690586267731,52.80483261010093],[-127.35680440688793,52.805002474792474],[-127.35673746417169,52.805176414759934],[-127.35672092396106,52.80535762682968],[-127.35667262701733,52.805533592827224],[-127.35657392679522,52.80570230451191],[-127.35645470348352,52.80586844672011],[-127.35632233388876,52.80603025734644],[-127.35617301363334,52.8061849737195],[-127.35599644480176,52.80632992610923],[-127.3558367914067,52.806481398866936],[-127.35570829300602,52.806648212238706],[-127.35555790469525,52.80679845668388],[-127.35528906016565,52.80687610233393],[-127.35487186319635,52.806905013315394],[-127.35451101394597,52.806806626216655],[-127.35385145820167,52.80681087449924],[-127.35323978059307,52.80685995661054],[-127.35287392732808,52.80692582109715],[-127.35225193133685,52.80697166341709],[-127.35152018282761,52.80686744387379],[-127.35128453217234,52.80684942644668],[-127.3509365037123,52.80683269328794],[-127.35063100905796,52.80686815809411],[-127.35035171519327,52.8069094807619],[-127.35004009456325,52.80689793021266],[-127.34974422120725,52.80688508584799],[-127.3493805885298,52.80684498989001],[-127.34915091795244,52.806868926479034],[-127.34885202098923,52.80684882468253],[-127.34857351931433,52.806767962357135],[-127.34828421067172,52.80672757380726],[-127.34799072886106,52.80670236831688],[-127.34769314106536,52.806694012891214],[-127.34738180789994,52.806662285845775],[-127.34709754360877,52.80660502386639],[-127.34684293091647,52.8065451792219],[-127.34655100534005,52.806509855762314],[-127.34625759670976,52.80648688680443],[-127.34595896557998,52.8065043182948],[-127.34566654318391,52.806512155170935],[-127.34524151879317,52.806381406433935],[-127.3450293442267,52.80640009510863],[-127.34473899552026,52.806385489115485],[-127.34459711787619,52.806305849422316],[-127.34449298510182,52.80612658727367],[-127.34450181216668,52.80593482249007],[-127.34437657198441,52.805793354668275],[-127.3441300739358,52.80569585861493],[-127.34385778311525,52.8056053914308],[-127.34362202729399,52.80549488612885],[-127.34343629013146,52.8053501825439],[-127.34336315612272,52.805181207981434],[-127.34334444239845,52.80499984606026],[-127.34322032608102,52.804834826477574],[-127.34301926986055,52.80470486849505],[-127.3427862117847,52.80459152407156],[-127.34254586322618,52.80448219002542],[-127.34230919857313,52.8043722574172],[-127.34213119735186,52.80423643000365],[-127.34203560733694,52.80406267210795],[-127.34189957316772,52.80390226181298],[-127.3417359976516,52.80375281874003],[-127.34154036517758,52.8036177569263],[-127.34130903718942,52.803470208657345],[-127.34104180443748,52.803391997507575],[-127.34077814971738,52.803309826414115],[-127.34058529817989,52.80317416634843],[-127.34056569615935,52.80299393488313],[-127.34061868989167,52.80281735739093],[-127.3407351904529,52.80265182756593],[-127.34085920474689,52.80248844445496],[-127.34092058275934,52.80231289178193],[-127.34097354186652,52.8021357584833],[-127.34110786759112,52.801975619713374],[-127.3411543143246,52.8017979958077],[-127.34116539999042,52.80161853434905],[-127.34116254521632,52.80143867626712],[-127.34114295901131,52.801259000433944],[-127.34109835896044,52.801081296220886],[-127.3410241471999,52.80090729293237],[-127.34093608375406,52.80073568956877],[-127.34087851892943,52.8005592542333],[-127.34086174547991,52.800380111030655],[-127.34088583326383,52.80020050085987],[-127.34095000415493,52.80002548086089],[-127.34096592815767,52.80000007541473],[-127.3410542897115,52.799855597575025],[-127.34110462490882,52.79968353319682],[-127.34105627689054,52.7995047508018],[-127.34102540368238,52.79923161775856],[-127.34100211966148,52.799051992893226],[-127.34099183928247,52.79887277532459],[-127.34101221115557,52.79869320740585],[-127.34104655484039,52.79851460061339],[-127.34108274062123,52.79833597273185],[-127.34112453011105,52.7981578367015],[-127.34117288277453,52.79798187626584],[-127.34139366631868,52.79773556402766],[-127.34135269547367,52.79755502041337],[-127.34131365227898,52.797376687454424],[-127.34126072597253,52.79720019892708],[-127.34118652029437,52.797026195303296],[-127.3410611799188,52.79685053441994],[-127.3408866358971,52.79667600064815],[-127.34077533840428,52.79653380432677],[-127.34068583220147,52.79637510213577],[-127.34057045647579,52.79619148090873],[-127.34035674806822,52.796071194435335],[-127.34016285391033,52.79593106195452],[-127.33990769921536,52.79585158959061],[-127.33963183141418,52.795793093324754],[-127.33934786069833,52.79574253484105],[-127.33905757380074,52.795697651995475],[-127.33876550348327,52.79565559538608],[-127.33847343089892,52.7956129731746],[-127.33818590636055,52.795567491768594],[-127.33790011683821,52.79551807140164],[-127.33761344477179,52.7954703461584],[-127.33732515901092,52.79542991962795],[-127.33703332010471,52.795395137114795],[-127.33674057794079,52.79536092011138],[-127.33644613706032,52.795331770020425],[-127.33615195964204,52.795311027017775],[-127.3358572466327,52.79530260971023],[-127.33555339114585,52.79529934402581],[-127.33524327109141,52.79530343882902],[-127.33494204049616,52.79532423537189],[-127.33466298203273,52.79537112324596],[-127.33441845404808,52.79545292879728],[-127.33419814659622,52.79556695391573],[-127.3339971067533,52.795702620471474],[-127.33380662240283,52.79584937509784],[-127.33362080716277,52.79599719715642],[-127.3334376088622,52.79613938492979],[-127.33327983818722,52.796292491870425],[-127.33315489173732,52.79645587809439],[-127.33305809904458,52.796628466962396],[-127.33297540184876,52.79680649979678],[-127.33289645053999,52.796985045927286],[-127.33280804051783,52.79715866011547],[-127.33269798230606,52.797322997427464],[-127.33255492241769,52.79747145272826],[-127.33236386588604,52.797600277715794],[-127.33213040153184,52.79770996464197],[-127.33187053064064,52.797806509701054],[-127.33159925550399,52.797895328734086],[-127.33133441739126,52.7979818413641],[-127.33107325747017,52.79806718184284],[-127.33080640271677,52.79814866785462],[-127.33053662886698,52.798225702980304],[-127.33026199407861,52.7982960675346],[-127.32998432080734,52.79835861998588],[-127.3297034496033,52.79840775791637],[-127.3294085481175,52.79842399380748],[-127.32910769076207,52.798427958204705],[-127.32881389929561,52.798449784227294],[-127.328530302552,52.79850119187397],[-127.32825172149738,52.79856430638899],[-127.32797020449891,52.798622414161215],[-127.32768671010342,52.79867718110168],[-127.32740317773434,52.79873027099957],[-127.3271166596707,52.79877722486918],[-127.32682692987285,52.79881076426966],[-127.32653105095613,52.798825318191],[-127.32623423577348,52.798839881946854],[-127.32594160447076,52.79886952452151],[-127.32565103901408,52.79890587702509],[-127.32535950194195,52.798941109971715],[-127.32506673054387,52.798966277539655],[-127.32477071090833,52.79897634523397],[-127.32447337278631,52.798974097831994],[-127.32417662569028,52.79896119055169],[-127.32388411282574,52.7989347936452],[-127.32359309279913,52.798896605879975],[-127.32330387834405,52.79885671129245],[-127.32301367407216,52.79881459444712],[-127.32273501431325,52.79875552519381],[-127.32247954567033,52.798665375308964],[-127.32222577938562,52.79857016639921],[-127.32194889299333,52.79850827770193],[-127.32167016734853,52.79844696501216],[-127.32140565924156,52.79836476051333],[-127.32113051143241,52.79829893187266],[-127.32084041939613,52.798260726892366],[-127.32054504818923,52.798231547325564],[-127.32026571954842,52.79818089056809],[-127.32003907488509,52.79806126928357],[-127.31978023044822,52.797981795055136],[-127.31948658064618,52.797948110131344],[-127.31919465267518,52.79791048666665],[-127.31892044696824,52.79784463333652],[-127.31865148781979,52.79776864182813],[-127.31838606854136,52.79768644083965],[-127.31812516472178,52.79760026111181],[-127.31786962641334,52.79750730448058],[-127.31763016441434,52.79739342676641],[-127.31738554685506,52.797293056517816],[-127.31711198964766,52.7972484876573],[-127.31681129505034,52.797257467039316],[-127.31650976564597,52.79726926159502],[-127.31621259511273,52.79727203080444],[-127.3159164321708,52.79727759453807],[-127.31562054303987,52.79729156522003],[-127.31533492546085,52.79733791532933],[-127.31506986795219,52.79741822431919],[-127.31480873086933,52.7975052137865],[-127.31454368871638,52.79758608628625],[-127.31427670198636,52.797664173378095],[-127.31400969690354,52.79774169515131],[-127.3137379346927,52.79781535112214],[-127.31346612222363,52.797887886175445],[-127.31321544244219,52.797982600791734],[-127.31297245126729,52.79808619550751],[-127.31273138282396,52.79819145392567],[-127.31248648023897,52.798293383242495],[-127.31223197809658,52.79838477593144],[-127.31196019386965,52.79845842792051],[-127.31168267968741,52.79852653914424],[-127.31141755645717,52.7986051636274],[-127.31117445416854,52.79870539322532],[-127.31094198595798,52.798818953511194],[-127.31072282701194,52.798942452153966],[-127.31051878286385,52.79907418332299],[-127.31033821906496,52.79921406263873],[-127.3101897119569,52.7993698402856],[-127.30996199793852,52.79963857652149],[-127.3100072828355,52.79981236517065],[-127.30995479300734,52.799978834662305],[-127.30991271019819,52.80000003542396],[-127.30972889363694,52.800095116603735],[-127.30947749703412,52.80019767670053],[-127.3092220066502,52.80028795274491],[-127.30895889703343,52.80037215311139],[-127.30869866554502,52.80045911837128],[-127.3084470926581,52.80055607398443],[-127.30820226926859,52.8006613555547],[-127.30799522485965,52.800786399429064],[-127.30783443207548,52.800935576766705],[-127.30757064546398,52.80124058549251],[-127.30727399064543,52.80123099683868],[-127.3069743222331,52.80124386661824],[-127.30668273679446,52.80127849736595],[-127.3064422645645,52.80137420407633],[-127.3062307490078,52.80150545455754],[-127.30599630919552,52.801616219908226],[-127.30574085449794,52.80170817344794],[-127.30546806512953,52.80178013533591],[-127.30519051900752,52.8018482310592],[-127.3049272548602,52.801927940499326],[-127.30469754817676,52.80204201301917],[-127.30452647951667,52.802189623013696],[-127.30441449328355,52.80235563009192],[-127.30433623118988,52.80253079372088],[-127.30427749819393,52.80270685206919],[-127.3042318504956,52.80288501555276],[-127.30418153407565,52.80306266598422],[-127.30411253984533,52.80323716145613],[-127.30402578890103,52.80340849169831],[-127.30393065177955,52.80357879420607],[-127.30383084337713,52.803748027682424],[-127.30372822325721,52.80391672738691],[-127.30362466641529,52.80408544634695],[-127.30352299809893,52.8042547001413],[-127.30342598232319,52.80442445807405],[-127.30334859951591,52.80459849012717],[-127.30326467068107,52.80477090907583],[-127.30315180258981,52.804938601095564],[-127.30303712986112,52.80510856364059],[-127.30290742239312,52.8052725239329],[-127.30274843555273,52.805421117501815],[-127.302547880081,52.80554719077198],[-127.30231519802369,52.80565569592742],[-127.30206269492369,52.80575432410802],[-127.30180645645304,52.80585188130231],[-127.3015615352283,52.80595547246613],[-127.30133750520513,52.806073402190435],[-127.30113053590165,52.80620290650979],[-127.30093583514135,52.80633844346738],[-127.30075435847199,52.80648112335866],[-127.30059830696102,52.806634720467294],[-127.30045539658322,52.806793219922085],[-127.30031631765293,52.80695503920083],[-127.30019494609215,52.80711890375842],[-127.30011176755929,52.80728627242871],[-127.30016557696275,52.80746668521139],[-127.30015435157846,52.80764726253572],[-127.30007130600028,52.80781854804053],[-127.29991899895353,52.80797378827286],[-127.2997403228157,52.808116991240134],[-127.29955598932564,52.80825801490445],[-127.29937543616704,52.808400682118815],[-127.29919394524545,52.808543350443664],[-127.29901620290012,52.80868710676105],[-127.29884316412642,52.80883304341041],[-127.29867768936091,52.80898282344605],[-127.29852627531082,52.80913693094649],[-127.29838708151807,52.809295951222666],[-127.29825444720315,52.80945657549837],[-127.29812932794059,52.8096199140503],[-127.29800514430435,52.80978325105989],[-127.2978743817015,52.80994441005086],[-127.29774174344332,52.81010503368002],[-127.29760724640573,52.81026567768254],[-127.29747366981911,52.810426311327575],[-127.29734010708972,52.81058694463956],[-127.29720840345499,52.810748122118646],[-127.29707950985711,52.81090982429493],[-127.2969543649567,52.81107260569991],[-127.29683765481582,52.81123753538974],[-127.2967321948836,52.811406259033404],[-127.29663048181042,52.81157550605556],[-127.29652406497561,52.81174312817337],[-127.29640639783193,52.811907503001926],[-127.29626156235881,52.81206489688559],[-127.29609238429481,52.81221583444675],[-127.29592412653993,52.81236676157493],[-127.29578482736173,52.8125229728382],[-127.29569512583551,52.81269040950088],[-127.29564844412089,52.812866893682546],[-127.29562792556104,52.81304812822935],[-127.29561301483979,52.81323043063505],[-127.29559713131741,52.813411058040245],[-127.2955998460749,52.813592600951075],[-127.29552234446234,52.813763821055154],[-127.29540008360948,52.81393048689924],[-127.2952383100382,52.81408078528732],[-127.29504255024928,52.81421408122337],[-127.29482890813664,52.814339728341075],[-127.29461151485374,52.81446429560046],[-127.29440637442703,52.81459433140786],[-127.29421631950252,52.81473204623134],[-127.29403384601616,52.814874160414995],[-127.2938532312861,52.81501680972583],[-127.29366886342034,52.815157823352536],[-127.29347222328728,52.815292811882145],[-127.29326707738261,52.81542340153323],[-127.29307326315066,52.81555947902684],[-127.29290958522493,52.81570922997604],[-127.29277419863452,52.81587211889871],[-127.29264636401075,52.81603940774207],[-127.29250714040198,52.81619841120996],[-127.29233762960553,52.81633982383139],[-127.29211130528401,52.816445986469894],[-127.2918385515006,52.816522962468724],[-127.29155923537245,52.816598333282634],[-127.29131035687992,52.81669634084114],[-127.29108346444505,52.81681483665648],[-127.29086033786324,52.816934976305454],[-127.29062277588355,52.8170390268713],[-127.29034900920287,52.817113203921934],[-127.2900545560585,52.817148943998035],[-127.28976676355211,52.81712856935027],[-127.2894831558365,52.81706163865396],[-127.28921235442827,52.81698839765959],[-127.28894424698986,52.81691176401845],[-127.28867789710273,52.81683174802933],[-127.28841337246153,52.81675059059282],[-127.2881488150125,52.81666831211127],[-127.28788427535139,52.81658658876986],[-127.28762330085512,52.81649978654364],[-127.28737593232466,52.816401626365696],[-127.2871448670662,52.81628983711238],[-127.28692469589627,52.81616896144516],[-127.28670631861934,52.8160463889648],[-127.28647977447592,52.81593006559409],[-127.28622133122651,52.81583426602099],[-127.28600317696379,52.815718970623124],[-127.28586924176159,52.815560717176034],[-127.28575631300423,52.815390469386735],[-127.28560939287665,52.815233487648186],[-127.28542399361343,52.81509429528349],[-127.28518453627099,52.81498090840593],[-127.28494973473695,52.814868034969294],[-127.28480133022552,52.81472283255578],[-127.28474022888346,52.81454529155972],[-127.28468366437043,52.8143643384124],[-127.2845754969877,52.8141973997786],[-127.28446810041254,52.81402541340967],[-127.28430592700145,52.813885965100326],[-127.2840179834415,52.8138285912915],[-127.28372703237514,52.81379478682438],[-127.28343434160108,52.81376491903793],[-127.28314079916952,52.81373786636024],[-127.28284640291682,52.813713063916786],[-127.28255204067052,52.81368938118307],[-127.28225351253214,52.81368143465211],[-127.28196112667487,52.813661656191094],[-127.28167973344503,52.81360588188767],[-127.28140267382294,52.8135394163351],[-127.28112474410544,52.81347464533961],[-127.28084162975142,52.81342337109589],[-127.28054193211676,52.81340758728509],[-127.28024939757698,52.81338275805345],[-127.27998144659563,52.81331002982053],[-127.27972676628715,52.81321473100933],[-127.27948748587917,52.813106378879255],[-127.27926005754402,52.81299061627063],[-127.27904173312625,52.81286802015665],[-127.27883526082421,52.81273801368535],[-127.27864803864432,52.81259939550769],[-127.2785055881482,52.812435066506126],[-127.27835140550438,52.81228207326972],[-127.27812525621061,52.812177493746645],[-127.2778544550949,52.81210255012872],[-127.27756644826948,52.81204235481973],[-127.27728055169123,52.81199054644947],[-127.2769843465445,52.811966869946176],[-127.2767191037069,52.811890742444874],[-127.2764662486393,52.81179429597332],[-127.27622157839042,52.81169159996118],[-127.2759859976227,52.81158207973245],[-127.27575496965306,52.81146914710123],[-127.27552576927718,52.811355638233955],[-127.27530018336537,52.81123816231055],[-127.2750892122016,52.81111268147133],[-127.27489554755604,52.81097523921408],[-127.27468273592551,52.81084977764202],[-127.27444264558322,52.81074478659132],[-127.27417187488182,52.810669834247165],[-127.27388440128172,52.810627001353254],[-127.2735882570976,52.810636375309166],[-127.27329672900436,52.810675404540845],[-127.27300592138417,52.81070770033267],[-127.27266226251196,52.810681730162905],[-127.27245903996896,52.81069065852216],[-127.27215192393598,52.8107993444527],[-127.27185444944247,52.810888871214615],[-127.27156490935835,52.810932357820505],[-127.27127826463916,52.810979730712496],[-127.27099357745477,52.81103045310908],[-127.27070887278481,52.81108061010496],[-127.27042326444266,52.81113189699768],[-127.27013954464634,52.811183718672815],[-127.26985681257352,52.8112377795618],[-127.26957603732335,52.81129517206974],[-127.26929819069959,52.811357580371165],[-127.26903103515205,52.811435563805794],[-127.26876777761558,52.81151967344035],[-127.26849966529578,52.811596545164946],[-127.26822378936382,52.81166284793872],[-127.26794889898851,52.811730825108675],[-127.26768275831843,52.8118116009572],[-127.2674127029512,52.81188624950337],[-127.26712680079963,52.81192744410143],[-127.26683004062139,52.81194745974334],[-127.2665347003084,52.81198427150502],[-127.26624541325859,52.812036708592366],[-127.26613701157201,52.8120787832138],[-127.26602000161904,52.81214393172958],[-127.26581945577608,52.81227498819912],[-127.26563415397524,52.812418773750125],[-127.26546110237202,52.81256858688956],[-127.2653001830419,52.81271994569324],[-127.2651683667435,52.81288108682387],[-127.26504875103568,52.813046570562435],[-127.2649169179164,52.81320771153691],[-127.2647512407941,52.81335520239554],[-127.26455734667469,52.81349178888511],[-127.26427761941795,52.813679171205344],[-127.2642522488752,52.813858218322636],[-127.26423434128799,52.81403774095201],[-127.2641965189639,52.814141262917175],[-127.264101513855,52.814196640963225],[-127.26382232071283,52.81424560067094],[-127.26352716090108,52.81428912753131],[-127.26325129142288,52.81435598305183],[-127.26298124536349,52.81443174173371],[-127.26273512660244,52.81453077938728],[-127.26252612322651,52.814659123242485],[-127.26233126136565,52.81479459539929],[-127.26214677549166,52.81493555968545],[-127.26196513239807,52.81507816982354],[-127.26178634905008,52.81522299949833],[-127.26157437913052,52.815345760411496],[-127.26133118056207,52.815449811709755],[-127.26108321049375,52.81554942154543],[-127.26083716375808,52.815651260763154],[-127.26057086924756,52.815728094214556],[-127.26028817753459,52.815784928548375],[-127.26000045204674,52.81582892244576],[-127.25970379367288,52.815853401834424],[-127.25940706884157,52.81587563956606],[-127.25912884549963,52.81592626317246],[-127.25887606639735,52.81602088066357],[-127.25862815336005,52.81612272618365],[-127.25836196767504,52.81620348066998],[-127.25810145575882,52.81628809206965],[-127.25787914258025,52.816407038571185],[-127.25761964733117,52.816494435507344],[-127.25735536664169,52.81657740885106],[-127.25712402109662,52.816674034472946],[-127.25688596801832,52.816795389192286],[-127.25668917080256,52.816929186530274],[-127.25649807883987,52.81706741463657],[-127.25630141106683,52.81720569311447],[-127.25615548333519,52.81729972579766],[-127.25590937855618,52.817368486696445],[-127.2558612415404,52.8175012568182],[-127.25579434017031,52.817596676166374],[-127.25568165407618,52.817620297740916],[-127.25526978753248,52.81755129445637],[-127.25467690981996,52.81739511607208],[-127.254290829569,52.81728659659792],[-127.25390096951237,52.81720726615709],[-127.25368023104144,52.817064475046244],[-127.25299778163392,52.81680052672039],[-127.25275049122162,52.81657564256029],[-127.25245765524515,52.8166359285142],[-127.25227595880563,52.81658799566597],[-127.25199446989947,52.816496285761964],[-127.2517129989346,52.81637320140784],[-127.25148740433545,52.81625455981008],[-127.2512366341413,52.81616420628714],[-127.25094504930011,52.81620373576886],[-127.25065234560722,52.81623656057406],[-127.25035949363632,52.81626433811619],[-127.25006562124226,52.81628876337438],[-127.24977071362792,52.81630983649949],[-127.24947677639054,52.81633257527561],[-127.2491809958976,52.81635534189435],[-127.2488921368204,52.81639259562092],[-127.24861034676687,52.81644939200329],[-127.24833445648852,52.816516777084125],[-127.2480652902543,52.816591926677056],[-127.2478048210712,52.816678756117554],[-127.24754053503094,52.816761707197585],[-127.24726258788567,52.81682294266086],[-127.24697303148776,52.81686804463988],[-127.246679416432,52.816901989929654],[-127.24638519387685,52.81691463669183],[-127.24609258978533,52.816887481485864],[-127.24579844472747,52.816839611523896],[-127.24550855422495,52.816809619578855],[-127.24522493653701,52.816835609521945],[-127.24494828154786,52.81690915459248],[-127.24466860231661,52.81697488544179],[-127.24438091671124,52.817020526031065],[-127.24409610818518,52.81706949782429],[-127.2438172486695,52.81713129063248],[-127.2435412989106,52.81719754411988],[-127.2432634395154,52.81726156660054],[-127.24297790382577,52.817317833043944],[-127.24269907369049,52.817380743643184],[-127.2424451322498,52.817468612677935],[-127.24220943633503,52.817576462509244],[-127.24198521560615,52.817695963341315],[-127.24176955798984,52.81782208898351],[-127.24156327141984,52.81795092157976],[-127.24137398405597,52.81808910532116],[-127.2411903838376,52.818231146921626],[-127.2409992356027,52.81836934071711],[-127.24078654562905,52.818501601948256],[-127.24059630037608,52.81863922957551],[-127.2404856526436,52.81879731098673],[-127.24049107474158,52.81898387149138],[-127.2404375639796,52.819157040225775],[-127.24027455906398,52.81930446659096],[-127.24007505009675,52.819443311920516],[-127.23988883873318,52.81959153875446],[-127.23970177102407,52.81974258079146],[-127.23946480430321,52.81980784777849],[-127.23916130525016,52.81975781830518],[-127.23890755066883,52.81966074541288],[-127.23868648079618,52.819536983827064],[-127.23847082452845,52.819407569683314],[-127.23823901447282,52.819297935050244],[-127.23797573579037,52.81922505333785],[-127.23769269891234,52.81917536023761],[-127.23739887234568,52.81913867387283],[-127.23710239606805,52.819106488932576],[-127.23680945818033,52.81906810605357],[-127.23652110881032,52.81902743251674],[-127.2362317749129,52.81898509192839],[-127.23594778877734,52.81893483976572],[-127.23566637244014,52.81887727915872],[-127.23538852594088,52.818814076318226],[-127.23512917859051,52.8187159334078],[-127.23484619836911,52.81866847450188],[-127.23457725640507,52.81859172649952],[-127.23430817093534,52.8185104961994],[-127.23400413645547,52.818441405556165],[-127.2337639267679,52.818362112071945],[-127.23348072480205,52.81833874493425],[-127.23318322677311,52.818367648939535],[-127.23289190026624,52.81841666175037],[-127.23261788048627,52.81848623136749],[-127.23235930606943,52.81857524768151],[-127.23209979405266,52.818664273250455],[-127.23185351458807,52.81876100496086],[-127.23156467274286,52.818799901163736],[-127.23126660408771,52.81884113502304],[-127.2310008841309,52.81887642491176],[-127.23069651201122,52.81892444819854],[-127.23040251432013,52.8189460187177],[-127.23010630177784,52.81895472701478],[-127.22980905573375,52.81896008299721],[-127.22951193872036,52.8189699200653],[-127.22921580777069,52.81898198764984],[-127.2289218077993,52.81900299855666],[-127.22862283089563,52.819045355962245],[-127.2283231737005,52.81909613017953],[-127.2280368954398,52.81912714523347],[-127.22783916867515,52.81910287028509],[-127.22763497571601,52.81891839761058],[-127.2275824472102,52.81909546797983],[-127.22751689484194,52.81927211857157],[-127.22737071389976,52.81942439868259],[-127.22711398218743,52.819513939865246],[-127.22684288551193,52.81958850432714],[-127.22656786227368,52.819655828483164],[-127.22629383884127,52.819725374164996],[-127.22601981587152,52.819795484071086],[-127.22575538763704,52.81987558030618],[-127.22551205976315,52.81997899237101],[-127.22529435529164,52.82010063408348],[-127.22509180476237,52.82023219542195],[-127.22488737878025,52.82036322004079],[-127.224676310515,52.82048927447727],[-127.22446522587981,52.82061531971555],[-127.22426181318667,52.820749139075254],[-127.2240583519602,52.82088182880259],[-127.2238406066122,52.82100234728918],[-127.22359618535211,52.8211001626191],[-127.22332885327049,52.82117692107304],[-127.22305198781298,52.821245367784435],[-127.22277707632549,52.82131716482721],[-127.22251649347835,52.82140225256466],[-127.22226072453329,52.82149345843875],[-127.22200975324212,52.82159021776827],[-127.22176259262314,52.821689743352934],[-127.22152019723259,52.82179369302459],[-127.22128539452409,52.82190317612416],[-127.22105062241107,52.822013770242435],[-127.22081105171648,52.82211937468484],[-127.22054876218935,52.8222100885972],[-127.22028829887547,52.82230021804518],[-127.22007417213408,52.82241788517363],[-127.21991294278982,52.82256526364088],[-127.21977725594901,52.82272806757421],[-127.21964906659825,52.82289359093145],[-127.21954139753315,52.8230611515143],[-127.21941590523039,52.82322328417032],[-127.21932974238825,52.82339566020743],[-127.21923983004606,52.823566954302194],[-127.21911247696262,52.82372911484435],[-127.21898324837045,52.82389072981563],[-127.21888211908066,52.82405989843621],[-127.21879407784024,52.82423172857026],[-127.21873764538856,52.82440379537942],[-127.2186516054057,52.82458065262224],[-127.21859217177378,52.82468046395981],[-127.21855789109303,52.824749187980565],[-127.21835460111477,52.82488915494345],[-127.21819909180091,52.82504207525832],[-127.21802718055834,52.825238876309015],[-127.21810165607103,52.825373154361785],[-127.21832714915102,52.825522686201644],[-127.21855638651792,52.825640787669066],[-127.21876450004545,52.8257675183756],[-127.21896167197636,52.82590165192907],[-127.21917166236057,52.82602891834452],[-127.2193807324325,52.826156202911434],[-127.21958796213346,52.826284618048376],[-127.21979246090292,52.82641474686126],[-127.21999540682722,52.826555543439184],[-127.22011979008725,52.82671171739159],[-127.22015612697854,52.826812210834035],[-127.22022637489947,52.826961110662296],[-127.2203944041175,52.82708320702665],[-127.22051809400202,52.82718279236956],[-127.22076795101754,52.82730628811971],[-127.2209694534586,52.82742860051449],[-127.22115745923739,52.82756674398466],[-127.22135556859882,52.8277008548124],[-127.22153534893691,52.827843566395536],[-127.22169951751103,52.82799316487593],[-127.22184621564116,52.82814966965777],[-127.22197725250635,52.82831082039692],[-127.22209815579538,52.82847488291068],[-127.22221813918898,52.82863951077882],[-127.22233996595577,52.82880355444947],[-127.22248206217832,52.82896122710367],[-127.22263337250659,52.829116006151345],[-127.22278927481729,52.82926905151453],[-127.22295161054815,52.82941922320851],[-127.22312775038351,52.82956421182035],[-127.22331121483178,52.829705761493734],[-127.2234873411369,52.82985019379471],[-127.22364785499049,52.83000150429026],[-127.22380927594945,52.83015224919861],[-127.22413750343532,52.83044640155926],[-127.22418449541004,52.8304963471136],[-127.2241876558601,52.83054170158965],[-127.22416097634233,52.83061651660343],[-127.22398206364521,52.830763519180685],[-127.22383127291211,52.83091920363315],[-127.2237217089067,52.83108565714335],[-127.22365235660922,52.83126066676255],[-127.2235558837083,52.83143034600818],[-127.22345475467812,52.83159951774968],[-127.2233545616572,52.831768679626016],[-127.22325435297189,52.83193784155349],[-127.22314854994183,52.83210594085423],[-127.22305486898037,52.83227559944084],[-127.22302095708133,52.832454713556864],[-127.2230372646031,52.832634434363435],[-127.22308510733355,52.83281157616157],[-127.22316422920875,52.832977193230946],[-127.2232567326667,52.83315555539559],[-127.22332681848752,52.833330223777324],[-127.2233635585496,52.83350916672492],[-127.2233510164,52.83368806714127],[-127.22329193748507,52.83386464586843],[-127.22319267642261,52.83403435350085],[-127.22312892585909,52.83421042484563],[-127.22312381772873,52.83438923875027],[-127.22314144874571,52.83458239496371],[-127.22316201164418,52.834748612820036],[-127.22323209995088,52.834923290044046],[-127.22327900810946,52.83509988536488],[-127.22331570117736,52.83527714296895],[-127.22341810555173,52.835444193826234],[-127.2234836525771,52.83562228050651],[-127.2235324387336,52.83579997688486],[-127.2236201171405,52.835971664088206],[-127.2236698249755,52.8361487859019],[-127.22370474208927,52.836328868238716],[-127.22370432334472,52.83650876283638],[-127.22370390433957,52.83668864844975],[-127.22369192495172,52.83688715190293],[-127.22356594194412,52.83703304554251],[-127.22349452755911,52.83720135108254],[-127.22358033350115,52.83737249282287],[-127.22363007519597,52.837550743906455],[-127.22368266240578,52.83773119790369],[-127.22362324196556,52.83789601612386],[-127.22343122077194,52.8380414767236],[-127.22322765724853,52.838173042940255],[-127.22302971920719,52.83830680072887],[-127.22287325565966,52.83845973552374],[-127.22278798192,52.83863153811175],[-127.22271955049276,52.838806536581586],[-127.22264644721689,52.838981018747056],[-127.2225723901865,52.8391549458958],[-127.22249836360714,52.839329437528995],[-127.22243738346467,52.83950547895453],[-127.22238572910277,52.839681979170535],[-127.22221323960062,52.83982779011097],[-127.22200683585913,52.83995827167585],[-127.22177576484466,52.84007163287855],[-127.22152751136714,52.8401694813873],[-127.22125913498958,52.840246799678745],[-127.22103184282058,52.84036236162771],[-127.22080834797424,52.840480690078245],[-127.22056681256208,52.84058574723944],[-127.2203470976457,52.84070627704798],[-127.22016423608709,52.840847709417645],[-127.22000681593487,52.84100064988068],[-127.21985034781983,52.84115414509102],[-127.21968539262838,52.841303800990104],[-127.21944090959182,52.841403847291645],[-127.21920403811816,52.841509973856155],[-127.21902499988624,52.841655291825795],[-127.21889195038538,52.84181526724886],[-127.21877301111832,52.84198069100634],[-127.21862398892809,52.842135227919975],[-127.2184345517201,52.84227448401239],[-127.21824509740436,52.84241318404587],[-127.21789626037285,52.842571468906975],[-127.21803010703113,52.84273203783143],[-127.21817039034832,52.84289028932159],[-127.21832817035802,52.84304276423799],[-127.21850341366542,52.84318776824442],[-127.2186713171614,52.8433362104723],[-127.21882361759727,52.84349153902674],[-127.218970390489,52.843649166297304],[-127.21910518265648,52.843810280056886],[-127.21921402577473,52.84397446046065],[-127.21919598007317,52.84415621361016],[-127.21907789388499,52.84431939593291],[-127.21893927423031,52.84447998476845],[-127.218837142727,52.84464859614575],[-127.21876027903585,52.84482255808864],[-127.21869835313136,52.84499859756224],[-127.21864947435215,52.84517563136252],[-127.21860993978545,52.84535424486059],[-127.21857038875517,52.84553229362152],[-127.21852060246583,52.84570989261525],[-127.21848197323635,52.845887940702895],[-127.21847035997676,52.84606738520525],[-127.21845316846351,52.84624688754632],[-127.21843133576027,52.84642643800326],[-127.21840111200045,52.84660551059649],[-127.21834661991616,52.846781481504856],[-127.21826040516902,52.846953854163864],[-127.2181555314886,52.84712417867728],[-127.21815213239816,52.84729848984244],[-127.21821114405131,52.847476080981075],[-127.2182330153917,52.84765574288524],[-127.21824652655216,52.84783548249982],[-127.21826188266934,52.84801521192652],[-127.21826703514054,52.84819560305366],[-127.21822280678496,52.84837257906672],[-127.21815807709798,52.848548655823585],[-127.21807187388835,52.84872158388974],[-127.21796127275445,52.84888692837634],[-127.217820726429,52.8490458495611],[-127.21767642829467,52.849203697633],[-127.21755275961932,52.84936749146108],[-127.21745903435429,52.849537699456505],[-127.21740269096352,52.84971424460891],[-127.21731740368448,52.849886606542796],[-127.21720871985436,52.85005416284776],[-127.21712619715328,52.85022594004373],[-127.21708291627792,52.85040402628415],[-127.21704896514447,52.850583145570624],[-127.21698607072626,52.85075863746834],[-127.21696326033342,52.85093707640675],[-127.21697778545753,52.85112016755836],[-127.21694186168139,52.851295379974474],[-127.21681904157482,52.851456366486794],[-127.21667285584869,52.85161366764381],[-127.21651168004165,52.85176719663113],[-127.21634575094123,52.85191742123741],[-127.21617319131073,52.85206322217369],[-127.21599123668543,52.85220576672684],[-127.21580645076374,52.852346654634566],[-127.21562260185264,52.85248808843312],[-127.21544439483696,52.852631714056514],[-127.21527184532698,52.85277807830438],[-127.21498650472628,52.85304665183629],[-127.21499952509815,52.85320958462381],[-127.21508734968504,52.85338687864307],[-127.21512006911777,52.85358827866589],[-127.21516672585832,52.853757032212435],[-127.21520653364492,52.85394603040217],[-127.21527630162737,52.854109505856385],[-127.21547820332165,52.85424246542056],[-127.21575316949502,52.85432760530606],[-127.21603615848231,52.85436838667616],[-127.21632985783948,52.85439280086166],[-127.21662886642017,52.85440820215516],[-127.2169296536636,52.85442021299457],[-127.21722675481163,52.854433946890595],[-127.21752377506424,52.85444431856873],[-127.21782070072126,52.8544518930384],[-127.21811762523174,52.854458901903094],[-127.21841369243002,52.85446871634896],[-127.21870899868827,52.85448470665716],[-127.2190036550933,52.854510233990126],[-127.21929756548063,52.854541928077936],[-127.21959055488502,52.85457418689616],[-127.2198834167877,52.854601972199724],[-127.22017694478696,52.85462077473664],[-127.22047141802143,52.85460707337056],[-127.22076630006885,52.85457542573461],[-127.22107337500144,52.854547577812646],[-127.22135218458357,52.854571578329235],[-127.22157854776844,52.85468074610532],[-127.22178527322605,52.85481869281005],[-127.2219762488038,52.8549590444996],[-127.22213227402838,52.85511264379814],[-127.22232682722763,52.855247918723336],[-127.22253423822026,52.855376890825546],[-127.22274161939748,52.855505298006605],[-127.22294995535327,52.855634259754176],[-127.22315735416908,52.85576267498905],[-127.22336017751375,52.855893934941236],[-127.22354483787758,52.85604050959252],[-127.22372490709282,52.85618938227533],[-127.2239321177364,52.856311064527475],[-127.22419173816837,52.85637953317916],[-127.22449116420947,52.85640835053878],[-127.22479588184893,52.85642758992126],[-127.22509129954136,52.85644636958162],[-127.22538838523425,52.85645896238967],[-127.22568121542102,52.85648504807726],[-127.22596642503926,52.8565369902571],[-127.22625241271419,52.85658387568285],[-127.22654888351553,52.856607123783846],[-127.22684700481915,52.85662306441827],[-127.22714072726038,52.85664801640057],[-127.22741853264792,52.85670115318002],[-127.2276778674483,52.85679146771323],[-127.2279398888836,52.856878391292746],[-127.22821620790822,52.85694442611167],[-127.22849969434007,52.85700142815353],[-127.22878656070732,52.85704605673214],[-127.2290843306825,52.85704966692801],[-127.22937349606197,52.85707746744466],[-127.2296463101679,52.8571513809932],[-127.22992801954003,52.8572106397543],[-127.23021063589475,52.85726932348167],[-127.23048602359714,52.85733536276098],[-127.23074700225203,52.857417807984696],[-127.23099268308935,52.857518345232194],[-127.23123299444272,52.857625662859306],[-127.23147689876588,52.85772902413028],[-127.23172895438397,52.85782444509369],[-127.23198190008705,52.85791817951748],[-127.23223756454557,52.858009643350336],[-127.23249413654644,52.85810054121167],[-127.23274892914358,52.85819368976205],[-127.23300375670087,52.85828852303826],[-127.23325945797579,52.85838110505687],[-127.23352052955029,52.85846634962378],[-127.23378960628067,52.85853861621836],[-127.23407683033243,52.858595556725945],[-127.23437362737626,52.85862942465886],[-127.23466480928076,52.85862972772708],[-127.23494914739317,52.85858695680974],[-127.2352309255975,52.85851954618151],[-127.23551186316777,52.85845551498378],[-127.23579199212612,52.858395965725876],[-127.23606830182817,52.85833253775036],[-127.23634783650083,52.85831671244842],[-127.23664159104237,52.85834164049923],[-127.23693618705745,52.85836375254887],[-127.23723244849016,52.8583791306637],[-127.23752920967168,52.858379923772596],[-127.23804351946904,52.85840812909882],[-127.23832835040854,52.858446040329824],[-127.23863274054787,52.85842097250249],[-127.23892564562084,52.85838482622588],[-127.2392092776371,52.8583179512922],[-127.23947977763099,52.85834311751288],[-127.2397644535726,52.85840791647694],[-127.2400577871569,52.858418270415534],[-127.24035710165879,52.85841062812988],[-127.24065414033832,52.85842094147034],[-127.2409503382952,52.85843406935488],[-127.24124566271186,52.858448882398356],[-127.24170957870636,52.85847143530876],[-127.241999137116,52.85851208517109],[-127.2422895859515,52.8585516041378],[-127.24257830469624,52.85859506787524],[-127.24286078434359,52.85864811898839],[-127.24314158430064,52.85870734696713],[-127.24342065606673,52.85877108462701],[-127.24369526723407,52.85884158451519],[-127.24396265086402,52.85891889388802],[-127.24421918767605,52.85900751627865],[-127.2444640196005,52.85910915545408],[-127.24470439029879,52.859217010117455],[-127.24494287090299,52.85932431945031],[-127.24518227363096,52.859431053663535],[-127.24542077151428,52.859538361854305],[-127.24565746122373,52.85964793028081],[-127.24588957515965,52.859759788298064],[-127.24611622514638,52.859875630994104],[-127.2463337399899,52.85999716504852],[-127.24654213646967,52.86012496416877],[-127.24674414648992,52.860256757870786],[-127.2469443319075,52.86039024726608],[-127.24714543949905,52.86052316166553],[-127.2473520302778,52.86065266416681],[-127.24756504116239,52.860778726862584],[-127.24778170939743,52.8609030736636],[-127.24800023752665,52.86102684441263],[-127.24821598572068,52.86115120019151],[-127.2484271595478,52.86127840162474],[-127.2486291315107,52.861408506872756],[-127.24882101485858,52.861543766950824],[-127.24897428143353,52.861694563109765],[-127.24907610756547,52.861867756436645],[-127.24918343277123,52.8620380937611],[-127.2493486212441,52.86218315882313],[-127.2495523947041,52.862311001788356],[-127.24977452538411,52.862430803766664],[-127.25000859104487,52.86254487451491],[-127.25024446889456,52.86265724884691],[-127.25047664410394,52.8627702180138],[-127.25071884474617,52.86287579052379],[-127.25096374724576,52.86297853633127],[-127.2511986101883,52.863088113160224],[-127.25139233647056,52.863222228669784],[-127.25153470400294,52.86338153885827],[-127.25165861950248,52.86354609335922],[-127.25175199938506,52.86371602093863],[-127.25179586188068,52.86400583360651],[-127.25187077482731,52.86418099675497],[-127.25194845316929,52.86435500961114],[-127.25206030577158,52.86452024804453],[-127.2521906310561,52.86468137131891],[-127.25232651983849,52.864841314385636],[-127.25246794240714,52.865000077543],[-127.25261397470976,52.86515711471849],[-127.25276461651619,52.865312416932206],[-127.25291983664515,52.86546542859731],[-127.2530815116688,52.86561668558983],[-127.253255188171,52.86576446102907],[-127.25343984593295,52.865905950368365],[-127.25363912321392,52.86603831730466],[-127.25386485539119,52.8661524693286],[-127.25411887113599,52.86624782190846],[-127.25436745575713,52.86634827986496],[-127.25459508648264,52.86646409587792],[-127.25481634663751,52.86658445359034],[-127.255027565587,52.86671108684049],[-127.25522502428164,52.86684459130437],[-127.25540694502973,52.86698779244799],[-127.25556958886065,52.86713960054843],[-127.25570638785382,52.867298409184244],[-127.2558220163328,52.8674647243963],[-127.25591639347856,52.867636314532234],[-127.25598757610629,52.86781039399692],[-127.25601980659081,52.867988252000146],[-127.25603536220441,52.868169094590684],[-127.25606946986503,52.86834748838566],[-127.25612861919214,52.86852338194542],[-127.2561970541034,52.86869861134731],[-127.25626178524416,52.868874436186346],[-127.25631909211059,52.86905090520342],[-127.25637919920743,52.86922790911227],[-127.25643095892345,52.8694055581117],[-127.25646691323475,52.8695833760386],[-127.25646938226178,52.869762107810864],[-127.25643467481162,52.8699418018506],[-127.25639809177652,52.87012151590594],[-127.25640146543864,52.870299126143905],[-127.25648200452255,52.870474225838215],[-127.25661789633878,52.87063359882945],[-127.25680258635026,52.87077508245178],[-127.25698452740173,52.87091771595114],[-127.25713336319144,52.87107415247212],[-127.25723694037072,52.87124172469503],[-127.25731466987158,52.87141628895604],[-127.25739707528946,52.8715913679988],[-127.2575365133887,52.87174454221395],[-127.25777881582084,52.87185122895494],[-127.25802940142498,52.871955020145364],[-127.25821011629051,52.872087577953835],[-127.25828143133896,52.87226557250775],[-127.25837773926646,52.87243882533425],[-127.25858417366655,52.872559899534856],[-127.25883925869765,52.87265803700285],[-127.25906242350541,52.87277836632723],[-127.25924434936618,52.87292044058387],[-127.25927004487805,52.87309724655274],[-127.25924652620783,52.87327737717556],[-127.2592443895159,52.8735200506307],[-127.25933225774465,52.873691142523946],[-127.25945068470263,52.87385686795279],[-127.25958845744053,52.87401566135179],[-127.2597703903347,52.87415773468381],[-127.25995051158971,52.87430093895374],[-127.26012325972567,52.87444702838864],[-127.26027582231933,52.874602300120976],[-127.26041547939568,52.87476219309898],[-127.26058541437723,52.87490719124723],[-127.26081411173402,52.875025225357795],[-127.26105654019477,52.87513525739201],[-127.26124561020131,52.875266600114955],[-127.26133439493388,52.87543656881515],[-127.26140113432537,52.87561629603182],[-127.26149920696352,52.875785600052666],[-127.2615412045078,52.875915158208635],[-127.26192245404127,52.875967660283216],[-127.26221723486329,52.875991393806316],[-127.26251753162992,52.87601282581919],[-127.2626071753636,52.87602307066209],[-127.2627768426196,52.876095783601],[-127.26300732996006,52.87621098786352],[-127.26322046673214,52.87633758579206],[-127.26340429694426,52.876479624174905],[-127.26362463000206,52.87659774277135],[-127.26387601267004,52.87669534437732],[-127.26411376638292,52.876804308639116],[-127.26436778556763,52.87689684188984],[-127.26461129859231,52.87698052149177],[-127.26472236210124,52.877147997465656],[-127.26481597334161,52.877322950564206],[-127.2649292971979,52.87744109727308],[-127.26517864764901,52.877595877053984],[-127.26536435081613,52.87773790119732],[-127.2655048917674,52.87789497221906],[-127.26560575313019,52.87806368688331],[-127.26572601337298,52.878289907530295],[-127.26600225757039,52.87822136365767],[-127.26627954045352,52.878156735098464],[-127.2665687195018,52.878116634553585],[-127.26687577707673,52.87811444666388],[-127.26714765149468,52.878181003942586],[-127.2674233317064,52.87825032596581],[-127.2676953744705,52.878322484006176],[-127.26796565738711,52.87839802270341],[-127.26827475066936,52.878464175958854],[-127.26851489636454,52.878527710110355],[-127.26880553950319,52.87856828344682],[-127.26909782532093,52.87860099297258],[-127.26939338444292,52.87861909646885],[-127.26969276875396,52.87860913875076],[-127.26997220979838,52.87855456505461],[-127.27024055515392,52.87847097064328],[-127.27052301209014,52.87842420839604],[-127.27082234452398,52.87841256271001],[-127.27112048459809,52.87842335345787],[-127.27141463196412,52.87845603710704],[-127.27169570235101,52.878518557330324],[-127.27194059494663,52.87861622106927],[-127.27216563867687,52.87873482880784],[-127.27238798538832,52.87885682761221],[-127.27262300577104,52.878966360367606],[-127.27289060325931,52.87904527922256],[-127.27314825916514,52.879133827177405],[-127.27338784402957,52.879240511555956],[-127.27363557651229,52.87933925284699],[-127.27389870108703,52.87942382172862],[-127.27416088885741,52.87950840018165],[-127.27441499635384,52.87960259665371],[-127.27467193688565,52.87969787366684],[-127.27492431988286,52.879796570817675],[-127.27515932018292,52.87990553391665],[-127.27536318871405,52.880031089889926],[-127.27552674223243,52.88017837749976],[-127.27566558534278,52.880339382215624],[-127.2758875991239,52.880604836244565],[-127.27611722329225,52.88072002449438],[-127.27634866112784,52.88083407184395],[-127.27657004064962,52.88095383179448],[-127.27676944345743,52.881085602536835],[-127.27695146176076,52.8812270838015],[-127.27712429623455,52.88137314761569],[-127.27729257090944,52.8815220581482],[-127.27746267434786,52.881669836767486],[-127.27764013849743,52.88181472874991],[-127.27782217946739,52.88195676432114],[-127.2780051449366,52.882098798527544],[-127.2781890343767,52.88224081343846],[-127.27837475058487,52.88238113153309],[-127.27856504569411,52.88251915800769],[-127.27876084095973,52.88265432692055],[-127.27896302553295,52.88278549884052],[-127.27917255222567,52.882912663368955],[-127.27939125250028,52.883035809504086],[-127.27961632361328,52.88315384693406],[-127.279847781957,52.88326732237862],[-127.2800864855867,52.88337455875867],[-127.28033424092101,52.88347272996123],[-127.28059559395795,52.88355898898271],[-127.28086331909624,52.88364068598095],[-127.28112921613356,52.8837229671625],[-127.28138418614431,52.88381377706853],[-127.28161647474906,52.88392387772811],[-127.28180598227216,52.8840658347631],[-127.28194660468098,52.884222885504194],[-127.28202912115461,52.88439794602575],[-127.28206984003883,52.884575703787654],[-127.28208366609407,52.88475656116768],[-127.28207232675395,52.88493656320564],[-127.28204326644584,52.885115646650526],[-127.2819983940631,52.88529489350658],[-127.28192451395114,52.88546886173029],[-127.28182062195471,52.88563586761562],[-127.2817017879808,52.88580079473355],[-127.28157168729095,52.88596303811352],[-127.28143315100833,52.8861231406943],[-127.28128802291305,52.88628050852272],[-127.28113345527778,52.88643405183883],[-127.2809601051482,52.88658163982902],[-127.28078016509328,52.88672705779139],[-127.2806049028593,52.88687354526879],[-127.28044558448549,52.88702378598984],[-127.28031631230462,52.88718265645164],[-127.28025268459747,52.88735763243785],[-127.28021533124323,52.88753960277824],[-127.28014702318937,52.88771349988677],[-127.28002373546926,52.887885762890846],[-127.27982844284331,52.8880162115304],[-127.2795729835392,52.888096324361726],[-127.27929188345432,52.88815934825477],[-127.27900120728636,52.88821350056082],[-127.27871430332935,52.8882692967432],[-127.27842533573856,52.888318390079355],[-127.2781315372333,52.88836137549974],[-127.2778454029633,52.888412113256145],[-127.27758042822339,52.88848504461123],[-127.27735091832929,52.88859232474853],[-127.27714542068261,52.88872456523277],[-127.27694568818413,52.88886234653304],[-127.27673163541169,52.88898851944496],[-127.27650807356868,52.88910806163996],[-127.27628261594678,52.88922651216908],[-127.27606094638826,52.8893471536914],[-127.27585059414247,52.8894727198857],[-127.27565917195443,52.889608732028194],[-127.275496069596,52.88975787681035],[-127.27534715314518,52.889914721772215],[-127.27519543423652,52.8900710320459],[-127.27502575440438,52.89021800590432],[-127.2748371943874,52.890356782962854],[-127.27464016423114,52.89049228922756],[-127.27444029818936,52.89062614921588],[-127.27424323201872,52.89076053439685],[-127.27405374384385,52.890899320156194],[-127.2738793124347,52.891043546272144],[-127.27372285638734,52.891197664233346],[-127.27358616814784,52.89135884831744],[-127.27346817607916,52.89152263613028],[-127.27341762675397,52.89170026335246],[-127.27341464936089,52.89188073767024],[-127.27342466995555,52.892060515320225],[-127.27343935122937,52.892240233514535],[-127.27345310965309,52.89241997064764],[-127.27346126888642,52.892599759427576],[-127.27345731998686,52.89277912340944],[-127.27342541659404,52.89295766932233],[-127.27337952634865,52.89313524589829],[-127.27334857910975,52.89331490214827],[-127.27334197892377,52.89349877777588],[-127.27327163988643,52.893668773661354],[-127.27311788803642,52.89382006375045],[-127.27293322761908,52.89396495466741],[-127.2727579255069,52.894111994466385],[-127.27263988916314,52.8942746607733],[-127.27259218282728,52.89445393314947],[-127.27254815094423,52.894632053932135],[-127.27250971775572,52.894810105129565],[-127.2724422133977,52.89513754030504],[-127.27326604517302,52.89522612965445],[-127.27383587635117,52.895351643292315],[-127.27443710806847,52.89534400882594],[-127.2750585296109,52.8955132318668],[-127.27566576846993,52.89570614137785],[-127.27650723079886,52.89597832097553],[-127.2775914876805,52.89677125049133],[-127.2781511247014,52.89720731255851],[-127.2788705143561,52.897568221007035],[-127.27936356948521,52.89792598355091],[-127.27974943241776,52.89815545868567],[-127.28011096446417,52.89822605905592],[-127.28052640531499,52.898324646192265],[-127.28098495512982,52.89846310957532],[-127.28167335427374,52.89878230579247],[-127.28241754825153,52.899099213039925],[-127.28283959872883,52.89932380953856],[-127.28327087680742,52.899637955345746],[-127.28383395125478,52.899999983277404],[-127.28389567962485,52.900039656681884],[-127.28413544247013,52.90014742919122],[-127.28438147887695,52.90024729638986],[-127.2846545953335,52.90031828356456],[-127.28493217353655,52.900383052731556],[-127.28519000055017,52.90047213779286],[-127.28544149124363,52.900567460182685],[-127.2856902990923,52.90066616466786],[-127.28593910836442,52.90076487758369],[-127.28618972964841,52.900861884549265],[-127.28644945776658,52.90095206685113],[-127.28671646475007,52.90103656518213],[-127.2869826000051,52.901122749102846],[-127.28723495209627,52.90121525190856],[-127.28746446609868,52.90132257398436],[-127.28762998598272,52.901468701874855],[-127.2877478312493,52.90164000810629],[-127.2878433171469,52.90181043826713],[-127.2879110147047,52.90198622048984],[-127.28800532506311,52.90208717654593],[-127.28793374227331,52.90227568236978],[-127.28788940931784,52.902380398002165],[-127.2881620169436,52.902588114832746],[-127.28843201564388,52.90264791996108],[-127.28872183423258,52.902685657089805],[-127.28901980135544,52.902715449961576],[-127.28931686472265,52.90274638170996],[-127.28960678625464,52.90278746884344],[-127.28989674254524,52.90282968460761],[-127.2901849222904,52.90287471655354],[-127.2904704721752,52.90292538042763],[-127.29075068980471,52.90298394741462],[-127.29102557948151,52.903051538261295],[-127.2912969479298,52.90312532679996],[-127.29156473175998,52.90320420196194],[-127.29183073759435,52.90328533755886],[-127.29209218434289,52.903369884907455],[-127.29234736329745,52.903462910694024],[-127.29260163675168,52.903556501779036],[-127.29286132685849,52.9036444290093],[-127.29312735478206,52.90372611736155],[-127.29339965492399,52.903799899829906],[-127.29368161006761,52.90385451367848],[-127.29397215852515,52.90388494056337],[-127.29426976548848,52.90390296075714],[-127.29456738759852,52.903920980034],[-127.29486067154414,52.90394969797907],[-127.29515318756623,52.90398401846592],[-127.29544720627416,52.90400600233034],[-127.29574432037133,52.90400776878956],[-127.29604208324241,52.90400000540559],[-127.29633991420171,52.903994482029056],[-127.29663678749053,52.90398784769758],[-127.29693369709935,52.9039828978333],[-127.29723173255425,52.90398409448119],[-127.29753063814827,52.90398303926269],[-127.29783045000879,52.90398140842423],[-127.29813033041037,52.90398202654475],[-127.29842848529266,52.903987137009324],[-127.29872319007164,52.90400125983305],[-127.29901265085215,52.9040266384361],[-127.29927082073716,52.90409495969122],[-127.29955932756813,52.90421112882349],[-127.29997569062665,52.904305719684935],[-127.29987188808809,52.90441333871809],[-127.299614232788,52.9044845518059],[-127.29932061894088,52.90456736907676],[-127.29905522156474,52.904628579618986],[-127.29879020031377,52.90467185329384],[-127.29856316798576,52.904739363645795],[-127.29831524479752,52.9048244713646],[-127.29810510381532,52.904957363097374],[-127.2980005939062,52.90510309387805],[-127.29793800359793,52.9052802990826],[-127.29787071431174,52.905455879422504],[-127.29780530361684,52.905632003833986],[-127.29776320804385,52.90580898276081],[-127.29775469791018,52.9059883975114],[-127.29776297747998,52.90616819187842],[-127.29776474970323,52.90634861390923],[-127.29775251550915,52.90652806968215],[-127.29773471014569,52.90670758689193],[-127.29771875173145,52.90688708370287],[-127.29771025609114,52.90706649816621],[-127.29773155459037,52.90724613983348],[-127.29775005075659,52.90742525649904],[-127.29774157234638,52.90760523557521],[-127.29772747565924,52.90778471174682],[-127.29771804140734,52.90796413646355],[-127.29772538246003,52.908143932002666],[-127.29774111055724,52.908323643968785],[-127.29775123741986,52.90850340873725],[-127.29777646376056,52.90868917554481],[-127.29768925080688,52.90885321170098],[-127.29752984194549,52.90900122379471],[-127.29734982962346,52.909145544704636],[-127.29716231662945,52.90928827136973],[-127.29697953306037,52.90943317810956],[-127.29681362910478,52.909582390451924],[-127.29666574549944,52.90974204658482],[-127.29658153113631,52.90991276424036],[-127.29655153987277,52.91009017362004],[-127.29653463466387,52.91026912436708],[-127.29652801243037,52.91044907355453],[-127.29652419312212,52.910629556690864],[-127.29652131460725,52.91081059429766],[-127.29651190871243,52.910991138957606],[-127.2964969161884,52.91117174516002],[-127.29644643958557,52.91134938010508],[-127.29630307499869,52.9115045027237],[-127.2961098761164,52.9116444836377],[-127.29590331647158,52.911773959758335],[-127.29569482545259,52.91190122422692],[-127.29548163583108,52.912027410322516],[-127.29526747030319,52.91215193010958],[-127.29504954498759,52.912275370118415],[-127.29483156744695,52.91239713363299],[-127.29460979578214,52.912516688003855],[-127.29437280151414,52.912625766766375],[-127.29413486546741,52.91273429949803],[-127.29391023832912,52.91285220725184],[-127.2936847883717,52.91297348584997],[-127.29347354980632,52.9131024530023],[-127.29330280063279,52.91324610031912],[-127.29317725568163,52.91340607072649],[-127.29307808775006,52.913575828860374],[-127.29299115285623,52.91374994441115],[-127.2928986109464,52.91392299177006],[-127.29279568233407,52.9140916791284],[-127.29269276977566,52.91426092208482],[-127.29258138332055,52.914427451664196],[-127.29244648650041,52.91458640309602],[-127.29226738882869,52.914731261127216],[-127.29211463700257,52.914885360378044],[-127.29197320906589,52.91504381805286],[-127.29183931659126,52.91520555503887],[-127.29172042205067,52.91536993354675],[-127.29162308925964,52.91553911409776],[-127.29153986890579,52.91571317851453],[-127.29147257073672,52.915889874436004],[-127.29142674815863,52.91606802019267],[-127.29140607710202,52.916246445755355],[-127.29140891646408,52.91643245848616],[-127.2914526081533,52.916613539839815],[-127.291558157347,52.91677656615523],[-127.29172462426682,52.9169210006701],[-127.29192714742449,52.917056628997],[-127.29214262191586,52.91718875251857],[-127.29234976012133,52.91732264384327],[-127.29252545900432,52.917464169487005],[-127.29262354767455,52.91762672088909],[-127.29261991524407,52.917813925331444],[-127.29259184955853,52.91799411778822],[-127.292556265378,52.91817214234648],[-127.29251229247659,52.91835026798026],[-127.2924636532503,52.918527879972075],[-127.29241222729645,52.91870552252699],[-127.29235890635225,52.91888262099209],[-127.29230842048618,52.91906081798411],[-127.29225330216829,52.91923962169176],[-127.29217656951742,52.919412494120586],[-127.29205764963226,52.919576872706656],[-127.29187960658523,52.919726765709136],[-127.29164430866844,52.91983189226388],[-127.29138698611455,52.919917095608774],[-127.29111633756514,52.91999346967086],[-127.29083900692191,52.920064321643316],[-127.29055971062847,52.920131823309966],[-127.29028037976929,52.92019821290297],[-127.28996595248482,52.920243683465245],[-127.28964387277948,52.92028307743965],[-127.28936712016473,52.92034214726433],[-127.28918678586214,52.920447796228544],[-127.28910100300753,52.920598915509785],[-127.28907476610644,52.920778521747685],[-127.28908157508828,52.92097289150859],[-127.28909776317049,52.92116884410129],[-127.28909867939812,52.921353200653286],[-127.28909580031451,52.92153479242118],[-127.28910779039117,52.921715656433946],[-127.28915040324293,52.92189226685598],[-127.28924124213526,52.92206162447329],[-127.2893710281772,52.92222495158793],[-127.28951558089706,52.922383633780925],[-127.28968313735359,52.92253254187702],[-127.2898580797895,52.92267968318523],[-127.29000255086564,52.92283555933084],[-127.29012598308665,52.923004003059916],[-127.29021978461031,52.9231789311032],[-127.29025018434257,52.92335174785351],[-127.29018456171482,52.92352281994141],[-127.29005646162531,52.923692335372465],[-127.28991880725697,52.92385355428397],[-127.28975943415585,52.9240054802521],[-127.2895944206129,52.92415578219112],[-127.28945197973948,52.92431312585059],[-127.28932836907723,52.92447698745962],[-127.28920944087905,52.92464191835841],[-127.28908116199608,52.9248052749044],[-127.288943485163,52.92496648376532],[-127.28880583928388,52.92512825695161],[-127.28868126809365,52.925291572377745],[-127.28858012391892,52.925459105139986],[-127.28851267951379,52.92563188150313],[-127.28845929785076,52.92580730121366],[-127.2884152657449,52.925984295149576],[-127.28837967451189,52.92616288223534],[-127.2883487646467,52.92634198289453],[-127.28832440070876,52.92652212364157],[-127.2883028405009,52.926702798523486],[-127.28828314107065,52.92688289712532],[-127.28826438227982,52.92706354129224],[-127.28824465052925,52.92724307534608],[-127.28822585751281,52.9274225991002],[-127.28821265305523,52.92760206166242],[-127.28820411322206,52.92778147314787],[-127.28820023998504,52.92796138942229],[-127.28819729099952,52.92814130452643],[-127.2881943566213,52.92832121048469],[-127.28819048356516,52.9285011356621],[-127.28818474725207,52.92868107224617],[-127.28818085703519,52.9288604327192],[-127.28817790790548,52.92904034772379],[-127.28817124743014,52.92922029436063],[-127.28815990516927,52.92939973633002],[-127.28814297383578,52.9295792394447],[-127.2881335792535,52.929761466377606],[-127.288127005283,52.929944774190545],[-127.2881167033114,52.93012756689497],[-127.28809327737191,52.93030826172735],[-127.28805016124198,52.93048468906184],[-127.28797988571728,52.93065637472192],[-127.28787865824198,52.930821665601314],[-127.28775960502021,52.93098323330034],[-127.28762650079739,52.93114215720639],[-127.28748120823775,52.93129840793148],[-127.28732748943949,52.93145362987067],[-127.28716812932122,52.93160722768654],[-127.28700596623911,52.93176086487258],[-127.28684379982035,52.93191393699424],[-127.28668445330257,52.93206809877555],[-127.28653072881983,52.932223319601114],[-127.28638167034687,52.93237904509148],[-127.28622703659138,52.93253484025331],[-127.28606676328876,52.93268956710075],[-127.28590462380178,52.9328437582053],[-127.28574434843497,52.93299849354753],[-127.28558875401448,52.93315373340536],[-127.2854406449216,52.93331001202319],[-127.28530285725778,52.93346841919548],[-127.28523178951681,52.933614890408585],[-127.28516749265886,52.9337999484284],[-127.28515984610966,52.93397879322218],[-127.28514067313223,52.9341773721654],[-127.28512328740963,52.93434230960368],[-127.2851255571382,52.93450982978961],[-127.28519322781727,52.93468336931094],[-127.28530178634735,52.93485253530964],[-127.28543250338221,52.935015290733176],[-127.28558535857441,52.93516996808533],[-127.2857566967704,52.9353199514697],[-127.28592063219511,52.93547114516659],[-127.28605308134232,52.93562939803929],[-127.2861486028439,52.93579870564703],[-127.28622658584896,52.93597380845297],[-127.28628511623822,52.93615305078876],[-127.28632130229059,52.93633252826908],[-127.28633135399883,52.936511179524736],[-127.28632278738283,52.936690025233354],[-127.28629839215294,52.93686960872072],[-127.2862609705412,52.93704989935733],[-127.28621047118632,52.93722920314527],[-127.28614776776219,52.937405842874654],[-127.28607285797237,52.93757925370238],[-127.28598295626675,52.93775003088074],[-127.28587341126816,52.93791821621351],[-127.28574699545196,52.938083779365115],[-127.28560456143259,52.93824335774633],[-127.28544981879415,52.938396345947645],[-127.28527716241057,52.9385428051146],[-127.2850688467946,52.938681252260835],[-127.28483373168434,52.93879644721596],[-127.28457693455933,52.938872661715095],[-127.28429076519318,52.93890211648702],[-127.28398320239663,52.93890210905469],[-127.28367731727626,52.93889592300181],[-127.2833806646573,52.93888682920662],[-127.28308370816872,52.93886765142107],[-127.28278695456498,52.938855195048816],[-127.28249079183043,52.93886233975627],[-127.28219500056028,52.93888181664808],[-127.28189942823492,52.93890857065942],[-127.28160387227226,52.93893587962716],[-127.28130354903898,52.93895988651509],[-127.28101004135596,52.93899334017677],[-127.28073500152222,52.93905180408785],[-127.28049095745176,52.93914972053502],[-127.28026440571206,52.93927098151364],[-127.28003682940574,52.93938945583782],[-127.27980345912107,52.93950125935544],[-127.2795710288519,52.939613617019326],[-127.27934050938329,52.93972707416635],[-127.27910904950903,52.93984054105787],[-127.27888042675924,52.93995566222735],[-127.27865561164674,52.940072974064925],[-127.2784326944673,52.94019195041452],[-127.27821170502612,52.94031259096275],[-127.27799449338907,52.940435422551985],[-127.27777920947713,52.94055991836764],[-127.27756864282776,52.94068660402962],[-127.27736091328165,52.94081494408173],[-127.27715225792026,52.94094328482087],[-127.27694266032987,52.94107107950621],[-127.27675859804364,52.94121148970716],[-127.27655749379511,52.94134310960912],[-127.27635833596182,52.94147751433763],[-127.27622987490649,52.94163861463331],[-127.27611272643718,52.94180351020302],[-127.27599836491659,52.941968375425965],[-127.27583660819411,52.94216905243182],[-127.27583704615982,52.94230801747284],[-127.27581633059117,52.94248755778342],[-127.27581519181904,52.94266745078382],[-127.27579632263352,52.94284640619686],[-127.27575132975471,52.9430245328868],[-127.27570727548223,52.94320264040071],[-127.27560677743872,52.94336399266708],[-127.27540770698072,52.943594776724936],[-127.27531670889134,52.94373081399532],[-127.27533405204883,52.943811874071486],[-127.2753971297867,52.94398826503677],[-127.27546668974087,52.944163465013865],[-127.27547669571666,52.9443415515187],[-127.27546437354437,52.94452156544018],[-127.27550884985494,52.94469927850462],[-127.27554474598357,52.94487036015307],[-127.27568042540085,52.94504315807933],[-127.27578799965663,52.94521122159837],[-127.27588907798598,52.94538047612169],[-127.27590561843385,52.94555905651824],[-127.27579233830909,52.94582253283465],[-127.27554417820967,52.94572211496104],[-127.27525673201951,52.94567983473863],[-127.27498483209337,52.94565812331628],[-127.27467047163675,52.94561950422747],[-127.27437212833816,52.94561768579454],[-127.27409106357976,52.94560167511243],[-127.27378340219668,52.94559996498061],[-127.27349447862434,52.9455700243962],[-127.27319887366765,52.94556649678006],[-127.27289997533728,52.94557701751998],[-127.27260269083457,52.9455796660457],[-127.2723050695996,52.94557055437352],[-127.2720082892933,52.94555863554712],[-127.27171067003083,52.9455500782317],[-127.27141309954084,52.94554264932497],[-127.27111574825055,52.945543053378834],[-127.27081114122795,52.94554970343523],[-127.27053676896207,52.945601420120646],[-127.27031675351932,52.94572538759358],[-127.27008238391161,52.94583719050781],[-127.26982699187653,52.945931279162],[-127.26959159515853,52.94603972997665],[-127.26937340500146,52.946162555200104],[-127.2691665967497,52.946291990600194],[-127.26897115330385,52.94642746261145],[-127.26878522778115,52.9465695560322],[-127.26860210575684,52.94671217480678],[-127.26841233348449,52.94685039099736],[-127.26820738246323,52.94697979561978],[-127.26798627857352,52.94709873145702],[-127.26775473177581,52.94721161981983],[-127.26751557831612,52.94731954187085],[-127.26727069882119,52.947423042167514],[-127.26702293146083,52.9475237667311],[-127.26677417204344,52.94762226895697],[-127.26652349752162,52.94771910567783],[-127.26627000027064,52.94781485148361],[-127.2660145396919,52.94790781155774],[-127.26575526557004,52.94799745886622],[-127.26549303710017,52.94808208962688],[-127.26522691338025,52.94816115805543],[-127.2649539745981,52.9482307685002],[-127.26467324502289,52.94828869892794],[-127.26438670854121,52.94833996672675],[-127.26409918034055,52.94838900303229],[-127.26381265740247,52.94844026927126],[-127.26353098552002,52.948498207050484],[-127.26325129325872,52.94856004989872],[-127.26297257439855,52.948623558222984],[-127.26269291348414,52.9486865111369],[-127.26241222781877,52.94874612117939],[-127.26212949617614,52.94880013992687],[-127.26184181288092,52.94884413357108],[-127.26154912789498,52.948876408092936],[-127.26125348965219,52.94890366581088],[-127.26095978155446,52.94893315251035],[-127.2606670636461,52.948964860336794],[-127.26037340436811,52.94899602163114],[-127.26008068404398,52.949027172140696],[-127.25978794838046,52.94905832208171],[-127.25949427136419,52.94908892548369],[-127.2591996028716,52.949117288354934],[-127.25890585872735,52.94914564956831],[-127.25861216377086,52.94917568610734],[-127.25832044810048,52.949209618776834],[-127.25802601165533,52.94924638605276],[-127.25772626294822,52.94929217503714],[-127.25749045257038,52.94938827747567],[-127.25731560926523,52.94952854808847],[-127.25716456917057,52.94968593985144],[-127.2570155227454,52.94984723709308],[-127.25684935394536,52.9499975007643],[-127.25667472124736,52.95014505719578],[-127.25649160792116,52.95028934168923],[-127.25629320318534,52.95042146115943],[-127.25605952824284,52.95052705936116],[-127.25578583345417,52.95060338944113],[-127.25552939232377,52.95069578077266],[-127.25530165273932,52.950813077134974],[-127.2550508341678,52.950906528166655],[-127.25477211926457,52.950970581495035],[-127.25449345441491,52.95103686607771],[-127.25422160084331,52.95111260798165],[-127.25401650371737,52.95123919115087],[-127.25383807877914,52.951385106902755],[-127.25365303687727,52.9515277216982],[-127.25342233585219,52.951640007071965],[-127.25314798500344,52.951725859388944],[-127.2529502386815,52.95184900023571],[-127.25284234291841,52.95201601334262],[-127.2527628666925,52.952197858091296],[-127.2526606932777,52.95236929294984],[-127.2524913644987,52.95250782060787],[-127.2522767375437,52.95262777760274],[-127.25203753074253,52.95273622356268],[-127.25178316339628,52.952836429318026],[-127.25152115758843,52.952930556256355],[-127.25126089919844,52.9530207370614],[-127.25099663147088,52.95310142934842],[-127.25072081644136,52.953169924821296],[-127.25044115704759,52.95323453348822],[-127.25016535659034,52.95330358335332],[-127.24990110161761,52.95338483782977],[-127.24964555384456,52.9534766415617],[-127.2493957799144,52.953575116689066],[-127.24915080376792,52.953678014250265],[-127.2489077236595,52.9537820208509],[-127.24867227938964,52.953892105386515],[-127.24844164937473,52.954007177102916],[-127.24820809960974,52.95411836129527],[-127.24796112217696,52.95421680362845],[-127.2476978476292,52.954300284039014],[-127.24742690061512,52.95437600015606],[-127.24715595401439,52.95445227150285],[-127.24689460483383,52.95453741522965],[-127.24664765449728,52.95463696618056],[-127.24641028642971,52.95474538981088],[-127.24617487946313,52.95485714534827],[-127.24593557921466,52.954963347011926],[-127.24568682564478,52.95506515636264],[-127.24541763753487,52.95513805184572],[-127.24512992664168,52.955183115894016],[-127.24478355162017,52.95523048481246],[-127.24496861880729,52.95537366465818],[-127.24514720432056,52.95551858931536],[-127.24527119948347,52.95567753937812],[-127.2453137134405,52.955855838035205],[-127.24535164064044,52.95603643553819],[-127.24541180846745,52.95621287088569],[-127.24547197517535,52.95638874136508],[-127.24551818653303,52.95656588904946],[-127.24552348397916,52.95674682252125],[-127.24554641866415,52.95692533701401],[-127.2456567076995,52.957093397180614],[-127.24592010972448,52.957172978524035],[-127.24621557150002,52.95723317704692],[-127.24646051385471,52.95731912087281],[-127.24658291758583,52.95748705197435],[-127.24659295339924,52.95767017660748],[-127.2465299240506,52.95784231158454],[-127.24644922403374,52.95801575421037],[-127.24635451600396,52.958188224279326],[-127.24624761633281,52.95835858183271],[-127.24613223717067,52.95852623169422],[-127.24600832745756,52.958688924004306],[-127.24583926345113,52.95883808048036],[-127.24565043398188,52.95898073045851],[-127.24548600459956,52.95912928149339],[-127.24539766009154,52.95929663567105],[-127.24536662707905,52.95947851780655],[-127.24529715452171,52.95965352621989],[-127.24517516825962,52.95981843854599],[-127.24502021965534,52.95997249209716],[-127.24482753881965,52.9601112543403],[-127.24458236660516,52.96020910486914],[-127.24431335694905,52.96028927543854],[-127.24405491887615,52.96037997592108],[-127.24382236058271,52.960494502134246],[-127.243654108459,52.96064029343963],[-127.24351800658816,52.9608008700769],[-127.2433743657256,52.960959284705034],[-127.2432090287531,52.96110896250147],[-127.24303237325023,52.96125427667328],[-127.242842436542,52.96139188577281],[-127.24262123580677,52.961512448994554],[-127.24238573248448,52.96162252044848],[-127.2421454450507,52.96172872388804],[-127.24190810758431,52.9618399343893],[-127.24170958589704,52.96197090785181],[-127.24156877116909,52.96213041096372],[-127.24144956878234,52.962295845483304],[-127.24133879592931,52.962462320692566],[-127.24123180004307,52.962630432541964],[-127.24112386205796,52.96279798936118],[-127.24099066374059,52.96296301490474],[-127.24086764622344,52.9631256916285],[-127.24093033196965,52.9632925804285],[-127.24106858675097,52.96346034962478],[-127.24119465049077,52.963626005704405],[-127.24137223489817,52.96376758404008],[-127.24159944296468,52.963883983701734],[-127.24184401417415,52.963988428061775],[-127.24209487462932,52.96408440484158],[-127.24235303071013,52.96417470065454],[-127.24282121866197,52.96433562573032],[-127.24305302213499,52.964449732741265],[-127.24328664081446,52.96456157874433],[-127.24353747514847,52.96465643206522],[-127.24379925232985,52.96474276855604],[-127.24406553691053,52.96482400923987],[-127.24433632747945,52.96489959823378],[-127.24460975938987,52.96496955520686],[-127.24489217218964,52.96502820964837],[-127.24517899224712,52.96507785123545],[-127.24546835482649,52.96511849964965],[-127.24576123529222,52.96515238595677],[-127.24605149093985,52.96519190280421],[-127.24633667869318,52.96524940376022],[-127.24657744034617,52.96534996074994],[-127.24678364788973,52.96548114186237],[-127.24705908354933,52.96555555480265],[-127.24731523022236,52.96564025763834],[-127.2474873153416,52.965784126514386],[-127.24763469843337,52.96594450241665],[-127.2477912565249,52.966099186417054],[-127.24799643140055,52.966226449430806],[-127.24825462958162,52.96631729685234],[-127.24853169271147,52.9663838442531],[-127.24879530581137,52.96646846478324],[-127.24904713635085,52.96656441665386],[-127.24928919871634,52.96667728207859],[-127.2494455199465,52.966824112551464],[-127.24953537182907,52.96699350596404],[-127.24960118307145,52.9671704433288],[-127.24965682883114,52.96735028573909],[-127.24970773840404,52.967527372117075],[-127.2497372466327,52.96770637101631],[-127.24976530208812,52.9678993985268],[-127.2497621874953,52.968079299312215],[-127.24975484683318,52.96827382296079],[-127.24983973744297,52.96843318237679],[-127.24999626318841,52.9685861782095],[-127.25018408026189,52.9687253934037],[-127.2502191525891,52.96890321234147],[-127.25019739101873,52.969082755056455],[-127.2501952345994,52.96926321040797],[-127.25025446677391,52.96943796668265],[-127.25036385067976,52.96960547545295],[-127.2504713870162,52.96977355958972],[-127.25055664570166,52.969945242178575],[-127.25063822479352,52.970118640318475],[-127.2507160752275,52.97029208693821],[-127.25079021303868,52.97046612877514],[-127.25085878998478,52.97064135028947],[-127.25089857059511,52.97082079544415],[-127.25101340662232,52.97098319803003],[-127.25118199398612,52.97113382273287],[-127.25134313981316,52.97128509105901],[-127.2514996978167,52.97143864032417],[-127.2516608459287,52.971589908188186],[-127.25183671589197,52.97173428626645],[-127.25204475314081,52.97186264146702],[-127.25226657102905,52.97198356082495],[-127.25250967867409,52.97209864996861],[-127.2527211191865,52.97221575187208],[-127.25296663976233,52.972317930894455],[-127.25320758917415,52.97242295529156],[-127.25343855598557,52.972537606841904],[-127.25365117261158,52.97266254843024],[-127.25383901965134,52.97280175745691],[-127.25401861544971,52.97294553679159],[-127.25421294990325,52.973082990651335],[-127.25436665421411,52.97323433406963],[-127.25448160915597,52.9734000940749],[-127.25449623846058,52.973579805682796],[-127.25451738625719,52.97375889200332],[-127.2545310761653,52.97393862253846],[-127.2545466458037,52.974118324074375],[-127.25459106565526,52.974296041851474],[-127.25473188617389,52.97445312540367],[-127.25488846981962,52.97460723468624],[-127.25501239253991,52.97479195042681],[-127.25514029330347,52.97495364490254],[-127.25518841344405,52.97513020228994],[-127.25521889173118,52.97530975379682],[-127.25524284990418,52.97548936577046],[-127.25524538459786,52.97566977077094],[-127.25527117531105,52.97584825145205],[-127.25533606572031,52.9760240652197],[-127.25544083290578,52.97619217405519],[-127.25556690779979,52.976355017108055],[-127.255704107607,52.97651549111453],[-127.25584594576213,52.97667480379436],[-127.25597849417832,52.97683589187489],[-127.25608509613248,52.97700229502308],[-127.25616760355766,52.97717456735898],[-127.25623434837955,52.97734980492044],[-127.25629181773279,52.97752681787717],[-127.25634370890151,52.97770445509379],[-127.25639373538023,52.9778821121544],[-127.25642420254408,52.97806054255265],[-127.25644536218863,52.97824018389402],[-127.25647772808053,52.97841971469486],[-127.25650930306469,52.97860429254373],[-127.2566081949032,52.97866767347904],[-127.25674259158322,52.97873292604752],[-127.25697779395426,52.978831835807945],[-127.2572233793905,52.978934561244294],[-127.25744344998834,52.97905773092331],[-127.2576377738707,52.97919350260169],[-127.25778693967683,52.97934768705631],[-127.25791493125233,52.979511627721415],[-127.25807700806115,52.979661191211115],[-127.25828148664168,52.97979292651135],[-127.25848134587324,52.97992639631336],[-127.25869314052726,52.9800535789682],[-127.2589031689468,52.98018357736527],[-127.25911686428573,52.980311850690256],[-127.25933869671691,52.98043108009481],[-127.25957594417282,52.98053501048412],[-127.25984214186771,52.98060892805417],[-127.26013099965628,52.98066019782492],[-127.2604216734341,52.98070976194773],[-127.2606970487551,52.98077797598077],[-127.26095983521361,52.98086257861784],[-127.26121724128056,52.980953962419264],[-127.26147552389357,52.981043659724804],[-127.26173199207217,52.98113505245496],[-127.26197114940094,52.98124063419393],[-127.26201894213494,52.98134210553567],[-127.26223996781523,52.981559394401366],[-127.26238643651347,52.98171640818739],[-127.262570736296,52.981859003350245],[-127.26277255055668,52.98199468640077],[-127.26291054631045,52.9821176046857],[-127.2629772018415,52.98232029175013],[-127.2630096649854,52.98250206099078],[-127.26304303683588,52.98268325563776],[-127.2629244344254,52.982836376060696],[-127.2626464140154,52.982899316539786],[-127.26236160698741,52.98295391936655],[-127.26207871275535,52.98300962170457],[-127.2618820169574,52.98304646937336],[-127.26185554010841,52.98328601621077],[-127.26186566638681,52.98347026615521],[-127.26188033036694,52.98364997576077],[-127.26190245626452,52.98382961441737],[-127.26192179145997,52.98400927396742],[-127.26192990301503,52.98418849780772],[-127.26192030074817,52.98436791129305],[-127.26192451368642,52.9845410175177],[-127.26193455728836,52.98472246199833],[-127.26189184277737,52.98491791962995],[-127.26188382281819,52.985087785731814],[-127.26184055914123,52.98526476225645],[-127.26173929954561,52.98543674719683],[-127.2615586261598,52.98557372893102],[-127.2613146014746,52.9856822414187],[-127.26107523201848,52.98579071253784],[-127.2608358445938,52.985898618515016],[-127.26063157433039,52.98602687667457],[-127.2604539495638,52.986172224687714],[-127.26022788254724,52.98628895243417],[-127.25999040560457,52.986398521699535],[-127.25977307188032,52.98652691792929],[-127.25970968637895,52.98668617744346],[-127.25977562011727,52.986864783054024],[-127.25978099874902,52.987046277233915],[-127.25975652277994,52.987196146359494],[-127.25965885449708,52.98739555215433],[-127.25953684434528,52.98756047660054],[-127.2593790061515,52.98771290027135],[-127.25921269616639,52.98786260800662],[-127.259031644647,52.98801919707571],[-127.25898349382655,52.988188935328786],[-127.25896739085988,52.988370093986134],[-127.25892695072967,52.98854815945901],[-127.25888462947235,52.98872623602062],[-127.2588217018517,52.988901179515814],[-127.2587024915429,52.98906662882949],[-127.25862455463714,52.98923892624461],[-127.25861216454695,52.989419489213184],[-127.25853891642718,52.98959285714661],[-127.25844694493306,52.98976418353174],[-127.25836152665617,52.98993600468784],[-127.25820627854766,52.99017636820945],[-127.25817235247082,52.990322975458064],[-127.25797235119649,52.99050162264767],[-127.25777003023715,52.990633216423944],[-127.25752294553483,52.990734472995065],[-127.25730351792724,52.99085617121068],[-127.25709452326807,52.99098335219887],[-127.2569158922532,52.991127584146085],[-127.25671452382564,52.99126029548948],[-127.2564374621072,52.99132600733139],[-127.25615744436969,52.99138670244414],[-127.25589012496853,52.991466878066795],[-127.25559268247683,52.99147452939827],[-127.25544649447278,52.99145367273081],[-127.2552944308693,52.9914552921537],[-127.25500688186479,52.991513832298146],[-127.25470305008133,52.991526588002316],[-127.25440123275632,52.99154436904882],[-127.25412357060196,52.991589909450326],[-127.25385040116349,52.991661741971214],[-127.25358304091243,52.99174022720995],[-127.25330988597987,52.9918126141571],[-127.2530508297101,52.99188821264491],[-127.25280037486282,52.99200238721759],[-127.25254623584303,52.9920863329533],[-127.25223673571378,52.992192168188716],[-127.2519949961402,52.9922221881728],[-127.25184723854488,52.99221142986535],[-127.2517129026136,52.99224423551487],[-127.2514268788565,52.99232347875489],[-127.25115076043178,52.99239028863943],[-127.25085771818111,52.9924208597277],[-127.25046051408357,52.99233709572855],[-127.25016420426529,52.992352010192015],[-127.24986695221709,52.99236636907453],[-127.24957079006965,52.99238631906621],[-127.24928078472996,52.99242525466877],[-127.24899487252944,52.992476473692165],[-127.24870600527778,52.99252267576182],[-127.24841812723832,52.99257055214586],[-127.24814403275113,52.99264293688845],[-127.24799921162442,52.992795762259185],[-127.24798211645462,52.992849180121794],[-127.24793215608378,52.99295897103473],[-127.24801718516088,52.99315363435411],[-127.2480243307123,52.99333342365305],[-127.24802308789073,52.993513310704465],[-127.24801717277917,52.99369323823523],[-127.24798320465199,52.99387123033069],[-127.24790055974853,52.99404412530568],[-127.24780477116545,52.994214362100976],[-127.24768925135437,52.99438032490062],[-127.2476131916975,52.99455483540631],[-127.24751923379495,52.99472393183875],[-127.24734524467,52.99486922001086],[-127.24716565533771,52.995014011289015],[-127.24705671810302,52.995181580240484],[-127.2469129413763,52.99533887558579],[-127.24671342053188,52.99547267010943],[-127.24644017912944,52.995542800155995],[-127.24617864293191,52.99563073670186],[-127.24591624584612,52.99572092310878],[-127.24566624625079,52.99581994335717],[-127.24544380261159,52.99593603799814],[-127.24524235904329,52.99606816471715],[-127.24505237238247,52.996209135505865],[-127.24487755822713,52.9963583553264],[-127.2447234320513,52.996512950867505],[-127.24459276947812,52.99667234601772],[-127.24449410463329,52.996840368661935],[-127.24441989503012,52.99701542195988],[-127.2443616677587,52.997194224388686],[-127.24431184439139,52.99737293806739],[-127.24426757085331,52.99755047245176],[-127.24423267467382,52.997729028510605],[-127.24420620057256,52.99790861633458],[-127.24418813212354,52.9980886712821],[-127.24417658580069,52.998268101522555],[-127.24418183366564,52.99844735451509],[-127.24412000842082,52.99859874250275],[-127.24397845507488,52.99867308015074],[-127.24384464400312,52.99875685721124],[-127.24365076874363,52.99886144885048],[-127.24349755076165,52.99895159840764],[-127.24321729622254,52.9991024832303],[-127.24293107295907,52.99927248177385],[-127.24269513317716,52.999438587572484],[-127.2425060074131,52.99960980290724],[-127.24236981767459,52.99974011578657],[-127.24226585820914,52.99988745489799],[-127.24220941798372,53.00000011712874],[-127.2420995065961,53.00016713507096],[-127.24203087966872,53.00034212754198],[-127.24179131270019,53.00044830892753],[-127.24149929740629,53.00048444851147],[-127.24121924721516,53.000546792788164],[-127.24097586314483,53.00065021544947],[-127.24077535658579,53.00078344459745],[-127.24054055647878,53.00089350003503],[-127.24028856590958,53.000989722903306],[-127.2400384745885,53.00108761073515],[-127.23982559674592,53.00121312357055],[-127.23969778989999,53.00137528864515],[-127.2394906223563,53.0015046586659],[-127.23920564316897,53.00155808444567],[-127.23890856273603,53.00154887895188],[-127.23861342035372,53.001574393235444],[-127.23832644283246,53.0016233551698],[-127.23804925401352,53.00168846786284],[-127.23790073130532,53.0018446801876],[-127.23786767104153,53.002023214314285],[-127.23777745551692,53.00219450370828],[-127.23771724528581,53.00237051658896],[-127.23765984285893,53.002547064762126],[-127.2376080699975,53.002724118614616],[-127.23755439910005,53.00290062752332],[-127.23751760408352,53.00307920061438],[-127.2375312312805,53.003258921012595],[-127.23761187932865,53.00343177875062],[-127.23773517604215,53.00359522337372],[-127.23786960477919,53.003755753801045],[-127.23800956933395,53.00391454045853],[-127.23814860925904,53.0040733366548],[-127.23828119097529,53.004234441847146],[-127.23839988316442,53.00439961062776],[-127.23850559392221,53.0045677217916],[-127.23860387293185,53.0047370315878],[-127.23870401904247,53.004906321679684],[-127.23881250808563,53.00507384750564],[-127.2389404548109,53.005236121285364],[-127.23911184422855,53.00538336970043],[-127.23932644914804,53.00550830611006],[-127.23956299422039,53.00561733107045],[-127.23980044974233,53.005725781171364],[-127.24001322475202,53.00585185625601],[-127.24021223992285,53.00598592934176],[-127.24034941200212,53.006144177732864],[-127.2402601726401,53.006317143842644],[-127.24016336735654,53.00648626259853],[-127.23997346426373,53.00663226132152],[-127.23994949719784,53.006802855267836],[-127.24003242057502,53.0069891352824],[-127.23996988900605,53.00714949283123],[-127.23980507344724,53.00729186538019],[-127.23960461372292,53.00742789731076],[-127.23938628314296,53.007559625054],[-127.23917168435067,53.007691322120195],[-127.23896066997919,53.00781793361694],[-127.23874398966993,53.00794236289181],[-127.23851891776862,53.00806743573066],[-127.23829764150685,53.00819415374712],[-127.23812155244735,53.008334409758234],[-127.23801702318723,53.00849519800709],[-127.23796055443971,53.00867173581101],[-127.23793229490018,53.008855266276974],[-127.23791896685312,53.009038631011634],[-127.23790744017556,53.00921974444351],[-127.23791185279198,53.00940348772877],[-127.2379478807091,53.00958241645318],[-127.23805155635606,53.0097443808312],[-127.23828048206751,53.00987981950877],[-127.23836437279874,53.010035276300265],[-127.23833775180665,53.01021093587834],[-127.23826740606457,53.01039210202317],[-127.2381764282726,53.01056956686242],[-127.23807113266079,53.010736531090664],[-127.23791884524306,53.01089278179233],[-127.23774858817623,53.0110413761971],[-127.23755659402624,53.01118066827849],[-127.237364566249,53.01131884867392],[-127.23721121780643,53.011470626824405],[-127.23709745987362,53.01163599332219],[-127.23700446098746,53.01180843076643],[-127.23691704630167,53.011980809545676],[-127.23682120589069,53.01215215593007],[-127.23673570394564,53.012325635131816],[-127.23668669139305,53.01250209362986],[-127.236643539306,53.01268745596187],[-127.23659775886058,53.01287901395546],[-127.2365705780551,53.01306757074961],[-127.23657947998299,53.013245098400034],[-127.2366438612394,53.01340412265504],[-127.23680344081099,53.013530205164585],[-127.23705825054972,53.01362391003585],[-127.23735292555382,53.01370766600106],[-127.23762737963524,53.013802849044964],[-127.23784010716753,53.01392613112335],[-127.23802808331591,53.01406479713193],[-127.23820135697952,53.01421202666447],[-127.2383654602042,53.014364399703645],[-127.2385221477753,53.01451908274887],[-127.23867695226905,53.01467267366049],[-127.23882804185037,53.01482741508542],[-127.23897546308855,53.014983880328785],[-127.2391191696227,53.01514150507533],[-127.23926104185524,53.01529971373138],[-127.23939921554681,53.01545963759184],[-127.23953459756365,53.01561959062453],[-127.23966720409055,53.01578012851818],[-127.23979426193476,53.01594297487606],[-127.23991576769849,53.01610699115587],[-127.24003264907823,53.01627274140089],[-127.24014766454619,53.016438511141786],[-127.24026175651474,53.016604855289295],[-127.24037771466227,53.016770614880144],[-127.24049646651562,53.01693634496903],[-127.24061614525445,53.01710206518307],[-127.24073397300185,53.01726780473977],[-127.24084806923149,53.01743413927644],[-127.24095474678244,53.01760168137466],[-127.24105304920884,53.01777042318606],[-127.24113739251112,53.0179409972657],[-127.24116780782751,53.01811886271763],[-127.2411684526878,53.01830096820798],[-127.24118959929886,53.018481172474594],[-127.24124889578894,53.01865704847512],[-127.24131655400289,53.01883172474136],[-127.24139075425524,53.019006323143124],[-127.24146682232315,53.01918091079373],[-127.24154287451243,53.01935493373718],[-127.24161428363824,53.01952956134104],[-127.2416791680061,53.019704822385485],[-127.2417328838148,53.019881321612864],[-127.24175771988357,53.02006036614365],[-127.24175742476794,53.020241916531006],[-127.24175339565346,53.02042350620591],[-127.24176797106048,53.020602658692056],[-127.24182532413788,53.02077575752575],[-127.24194402732017,53.02093924513312],[-127.24209156328148,53.02109851119234],[-127.24222145408552,53.02126131589699],[-127.24234277314811,53.021418616384544],[-127.2425921886447,53.02151740479649],[-127.2428615858143,53.02159693988416],[-127.24307803610169,53.02171793197625],[-127.24320978337748,53.02188016018247],[-127.24324111973088,53.02205745028916],[-127.24323237097673,53.022236848302946],[-127.2432478958456,53.02241655529474],[-127.24324849877644,53.02259641056288],[-127.24324629385497,53.02277630436878],[-127.24324782287006,53.02295614983908],[-127.24325959730567,53.0231353314686],[-127.24328351561853,53.0233143850957],[-127.24330184926478,53.02349406237157],[-127.24333042674765,53.02367250203936],[-127.24341112221653,53.023845353887396],[-127.24352342744409,53.02401283399245],[-127.24366899922458,53.024168747724886],[-127.24385890716026,53.024307392884474],[-127.24403956371307,53.02444948831227],[-127.24419997653027,53.024601327057425],[-127.24436868689472,53.024749716082674],[-127.24454108371259,53.02489638946974],[-127.24471624195553,53.025041903844986],[-127.24488956568075,53.02518800213092],[-127.24506196607626,53.0253346747192],[-127.2452408460561,53.02547959319143],[-127.24537993419905,53.02563669389235],[-127.24542061881219,53.02581389343774],[-127.24540723577053,53.02599446088711],[-127.24539195251317,53.02617392771432],[-127.24539537455094,53.0263543177248],[-127.24546492772302,53.026528406316054],[-127.24565381212457,53.02666368843069],[-127.24590514996235,53.026763014456726],[-127.2461573165261,53.02685896922355],[-127.24640417692905,53.02696450959964],[-127.24653377336838,53.02711610588013],[-127.24652794618142,53.027299399662446],[-127.24658061908251,53.02747142459355],[-127.2467142648966,53.02763362860882],[-127.24681264631562,53.02780348493727],[-127.24682068452505,53.02798158469982],[-127.24673421753053,53.02815395916831],[-127.24663552254715,53.02832366558879],[-127.24657717933496,53.02849966055156],[-127.24654226743633,53.02867821403466],[-127.24652885537614,53.028857660997865],[-127.24653600089734,53.02903745555984],[-127.24653194192078,53.02921735951416],[-127.24650730899339,53.02939636911742],[-127.24648080819698,53.02957538946244],[-127.24645149886136,53.02975444841579],[-127.24641096658794,53.02993249627558],[-127.24635543047015,53.03010902608737],[-127.24629898421693,53.03028613027457],[-127.24629117293361,53.03046551786603],[-127.2463792957432,53.03063548268295],[-127.24654805426806,53.03078443270315],[-127.24675087740992,53.03091676854245],[-127.24698391367107,53.031028048108034],[-127.24722979334909,53.03113135582868],[-127.2474085884429,53.0312717891301],[-127.24748931494989,53.03144463741899],[-127.2475375002047,53.03162231232824],[-127.24758940426474,53.03179938307292],[-127.24763572283742,53.03197707765077],[-127.24770808819873,53.032151134806114],[-127.24782687874497,53.03231573571173],[-127.24797254291504,53.0324727724881],[-127.24813113396208,53.03262518075724],[-127.24827865125845,53.03278163273831],[-127.24836401123942,53.032952754826304],[-127.24840195578672,53.033131658279956],[-127.24845199773449,53.0333087482474],[-127.24852532656782,53.03348335944203],[-127.2486209199476,53.033653243401154],[-127.24876102183882,53.03381145867381],[-127.24894269309917,53.0339541004765],[-127.24913633269514,53.034091012030494],[-127.24932904720934,53.03422793306328],[-127.24951718370558,53.034367699415355],[-127.24967206876252,53.03452070963121],[-127.24977232923435,53.03468998735751],[-127.24986796188074,53.0348604346625],[-127.25000250389162,53.0350203838298],[-127.2501592922864,53.03517393803967],[-127.25031880957539,53.035325212850935],[-127.25048480796681,53.0354747422664],[-127.25065173246178,53.03562370578781],[-127.25080665749883,53.03577726991524],[-127.25093661024403,53.035939507953124],[-127.25099965746959,53.03611366167938],[-127.25099655973897,53.036294119855704],[-127.25100936153575,53.03647497427069],[-127.25113361503401,53.03663391051238],[-127.25134755290865,53.03676107318072],[-127.25159341035037,53.03686213085541],[-127.2518584595318,53.036948971778614],[-127.25205378998248,53.03707857188035],[-127.25212524081017,53.03725263579562],[-127.25214923749871,53.037432806448315],[-127.25216573035416,53.037611936046325],[-127.25215233923731,53.03779138271152],[-127.25212960918286,53.037970928443826],[-127.25211621780012,53.03815037506736],[-127.25211872656304,53.03833021777846],[-127.2521324268722,53.03850993276256],[-127.25215265566804,53.03868902261491],[-127.25216823924768,53.038868726543406],[-127.25217260087885,53.03904854055618],[-127.25218349100001,53.0392277294371],[-127.25219813352257,53.03940744329361],[-127.25222117224835,53.03958650323361],[-127.25227403202672,53.0397635612642],[-127.25235014898401,53.039937019472795],[-127.25243838180347,53.040109219427514],[-127.25253215454906,53.04027968401575],[-127.25263429150087,53.04044838324894],[-127.25274758683129,53.0406152784821],[-127.2528868020554,53.040774053876206],[-127.25307868199,53.04091265405751],[-127.25320748621998,53.04106705700067],[-127.25324550644214,53.04124707819172],[-127.25325919605818,53.04142623707076],[-127.25325329672513,53.04160616875217],[-127.25326703450575,53.041786447734296],[-127.25334501041661,53.04195932063037],[-127.25350641608863,53.04211001502939],[-127.253733118531,53.0422258312548],[-127.25397904638727,53.04232800393768],[-127.25421494053985,53.042438118333386],[-127.25444716793501,53.04255107734692],[-127.25468122994646,53.04266233991197],[-127.25491893126603,53.042770757213184],[-127.25515848359953,53.04287803370576],[-127.25537972321317,53.04299838750749],[-127.2555863168849,53.0431284267233],[-127.25582761011202,53.043231765559135],[-127.25610075654973,53.04330618382969],[-127.25635484433606,53.0433992906097],[-127.25653649936768,53.043539123660636],[-127.2566794743782,53.04369785453687],[-127.25684646939025,53.04384736425028],[-127.25706125456857,53.04397002496986],[-127.25728709999977,53.04408752903935],[-127.25745773520556,53.044233637164155],[-127.25761365955616,53.0443877463438],[-127.25780368852483,53.044526367577944],[-127.25804686136063,53.044629117097074],[-127.25833239970869,53.0446798645322],[-127.25862836637967,53.04470416030218],[-127.25892651349206,53.04470770451678],[-127.25921965311476,53.04473091727722],[-127.25949813666283,53.044795740831745],[-127.25977128310632,53.04486959487393],[-127.26002811642317,53.04496042324228],[-127.2602236270282,53.04509449952331],[-127.2603629013977,53.045253821351935],[-127.26048549734632,53.04541781269375],[-127.260589546093,53.045586475625846],[-127.26065920984608,53.04576111793193],[-127.2606981424129,53.04593944140956],[-127.26072588336051,53.04611844920543],[-127.2607666849284,53.04629676163253],[-127.26083726039957,53.04647082923573],[-127.26090506004118,53.0466460470879],[-127.26094402773124,53.046825490687574],[-127.2610581313809,53.04698621012685],[-127.26122609786844,53.04713625912494],[-127.26139956861316,53.047282331270765],[-127.26158408496511,53.047423246666064],[-127.26176770895844,53.04756528299793],[-127.26193658877303,53.047714209538434],[-127.26203224950268,53.04788296077002],[-127.26203197428248,53.04806226766371],[-127.26200369266502,53.048242438773244],[-127.26204630297656,53.0484184810157],[-127.26217817228738,53.0485795652127],[-127.26232300376078,53.048736592853594],[-127.26245395004337,53.04889824244726],[-127.26258767411049,53.04905875049611],[-127.26273345006733,53.049215758556116],[-127.26288569214692,53.049370464923214],[-127.26304069666219,53.04952401192053],[-127.26320772046073,53.04967295646327],[-127.26339688122864,53.04981213384893],[-127.26362184860882,53.04992963531728],[-127.26387693602048,53.0500232802545],[-127.26413746260928,53.050111263155706],[-127.26437613803984,53.05021853056725],[-127.26456803329786,53.050355435512955],[-127.26476270634909,53.05049118973897],[-127.26499774903377,53.05060185677776],[-127.26524919023866,53.0506983350015],[-127.26550064942134,53.050795377310834],[-127.26574663840842,53.05089696033996],[-127.2659889921559,53.05100194379532],[-127.26623133052493,53.05110637108269],[-127.26647733964333,53.05120850823509],[-127.26672153188689,53.0513123498333],[-127.26698377342207,53.05139470488939],[-127.26726234626071,53.051460639128216],[-127.26753009445622,53.05153957192398],[-127.26777334760816,53.051642856651014],[-127.26799928038233,53.05176090432684],[-127.26821790804291,53.05188462433397],[-127.26836637597273,53.05203712295885],[-127.26844726079018,53.05221107510374],[-127.26848996877426,53.05238935519272],[-127.26855780779785,53.05256401222361],[-127.26871464592165,53.05271529083219],[-127.26892499757044,53.05284302523066],[-127.26915368470203,53.05295935565725],[-127.26936030203764,53.05308712943532],[-127.26954582836011,53.05322857744887],[-127.26972581764825,53.053372326022235],[-127.26992510098938,53.05350522510095],[-127.27016119920447,53.05361866777482],[-127.27031230772651,53.05376553228858],[-127.27030274178199,53.05394549477622],[-127.27026141208171,53.0541258079817],[-127.27034399087061,53.05429301662909],[-127.27050466268918,53.05444705769607],[-127.27070667972832,53.05457711993209],[-127.27091979140675,53.05470313564121],[-127.27111820815618,53.05483771852942],[-127.27132948768924,53.05496488284647],[-127.27157548122446,53.055065333198996],[-127.27183605471878,53.055153298854044],[-127.27208481028912,53.05525203295013],[-127.27232633001823,53.05535925385019],[-127.2725957455949,53.055430312842034],[-127.27289103687497,53.05546019308085],[-127.27318784578985,53.0554788407737],[-127.27348637062443,53.055491874938845],[-127.27378208735473,53.055474116341685],[-127.27407669017488,53.055481023283455],[-127.27437430693206,53.055495176689554],[-127.27466413066824,53.05553014996397],[-127.27495242116487,53.0555757897316],[-127.2752484396568,53.05559892339174],[-127.27554191784056,53.05563105791219],[-127.27581958800981,53.055696417187406],[-127.27609722710825,53.05576121134539],[-127.27638988134322,53.05579671462621],[-127.27668657429021,53.05581087222119],[-127.27698422820954,53.05582614829261],[-127.27728021583758,53.055848156571365],[-127.27757283793653,53.055882536634265],[-127.27786377736221,53.055923093276135],[-127.27815722575693,53.05595409204391],[-127.27845247383797,53.05598227345811],[-127.27874508079802,53.05601608599026],[-127.27903773900509,53.056051582702935],[-127.27932864721772,53.056091015447876],[-127.2796160891021,53.05613945024586],[-127.27990089027176,53.05619351622471],[-127.28018304874615,53.056252648618205],[-127.28046692459264,53.056306723277714],[-127.28075699373488,53.05634896773792],[-127.28104874771145,53.05638558099604],[-127.28146983714821,53.05643368174745],[-127.28124821911899,53.05655375520712],[-127.28119371805707,53.05672973278091],[-127.28120663764489,53.05691001713607],[-127.28120177936586,53.05708937374294],[-127.28120439727428,53.057269205044214],[-127.28120608864573,53.05744905534659],[-127.28116948060172,53.05762931226636],[-127.28124746397162,53.05779768400185],[-127.28145602877761,53.05792653641916],[-127.28169571693205,53.05803320244684],[-127.28198679335625,53.058077665383045],[-127.28222460010885,53.05818435077981],[-127.28235746722746,53.05834371638872],[-127.2824132868154,53.058520737417375],[-127.28239439394264,53.058699681588465],[-127.282364289157,53.05887875647463],[-127.2823369625985,53.05905723635162],[-127.28232372613964,53.05923780447203],[-127.28238974728343,53.05941190853437],[-127.28246137691792,53.05958650747233],[-127.28247426890297,53.0597656711112],[-127.28244978664418,53.05994524067567],[-127.28243277908051,53.06012472902993],[-127.28244755690581,53.06030443694041],[-127.28241930288375,53.060482926756904],[-127.2824583403882,53.060661241530326],[-127.28245815138744,53.06084054713897],[-127.28247946065719,53.061019619229285],[-127.28247274062878,53.061199560543514],[-127.28254438857229,53.061374159088786],[-127.28254416607116,53.06155234434485],[-127.2824737378621,53.06172737433993],[-127.28244644167381,53.06190640944494],[-127.28246773647886,53.062085481589776],[-127.2824787604302,53.06226466526725],[-127.28248045740158,53.06244451503305],[-127.28247654760965,53.06262441671018],[-127.28246608751309,53.06280383366982],[-127.28244813697157,53.0629833319602],[-127.28242833236965,53.06316285036364],[-127.282406643782,53.06334238920376],[-127.28239337242465,53.06352183660833],[-127.28239693796753,53.063701665949054],[-127.28240890396079,53.06388083923692],[-127.28242742051997,53.06406049720614],[-127.28248043708408,53.06423754814575],[-127.2825697528751,53.064409157412825],[-127.28268228584896,53.064575467031524],[-127.2828142836991,53.064736526667055],[-127.2829721937231,53.06488890427665],[-127.28314396187575,53.06503608370893],[-127.28331020709548,53.065185564201],[-127.28344684025096,53.06534545210156],[-127.28351381932029,53.06552010050459],[-127.28351085585834,53.065700000621554],[-127.28349945741176,53.06587942759309],[-127.28351516850488,53.06605911573662],[-127.28354582982742,53.066238085527154],[-127.28359696769502,53.06641459143898],[-127.28366118719688,53.06659039927999],[-127.28375800559759,53.066762481808084],[-127.28398662207668,53.06687262553566],[-127.28421544105998,53.066988925682345],[-127.28439087517222,53.06713325730537],[-127.28452660872203,53.067293718478645],[-127.28467158649855,53.067450708035366],[-127.2848544476559,53.06759272585382],[-127.28507500722297,53.067714152628646],[-127.28534194910095,53.06779305453817],[-127.28561623055974,53.067866837538396],[-127.28582756735031,53.06799229006309],[-127.28596143973218,53.068152760896275],[-127.28605542623582,53.06832376068507],[-127.28619579901515,53.06848248397257],[-127.28639614665883,53.06861533486762],[-127.28664414122235,53.06871629729206],[-127.28681219938947,53.06886351179164],[-127.28688571326576,53.06903696629372],[-127.28692383564422,53.069215297939984],[-127.28696291724138,53.0693941749453],[-127.28706620293482,53.06956282229592],[-127.2872610192263,53.069697982257956],[-127.28748343177672,53.069818263742974],[-127.28770490380593,53.06993856403469],[-127.287905280191,53.07007197687569],[-127.288141399741,53.07018146603835],[-127.28841205001247,53.07025863523465],[-127.28870709816833,53.07027670833022],[-127.28900743278759,53.07028463720696],[-127.28927525523608,53.070360723630785],[-127.28952868696082,53.070455452709666],[-127.28978031875404,53.07055244219465],[-127.29003195169767,53.07064943113814],[-127.29028360269173,53.07074697519448],[-127.29047201909735,53.07088611762582],[-127.29072180357979,53.070983690121224],[-127.29101835390533,53.07098996985016],[-127.29132219174504,53.07098945426239],[-127.29160537200437,53.07095553554483],[-127.29183451495692,53.07083592664149],[-127.29208585907374,53.07073904309803],[-127.2923372020427,53.07064215901434],[-127.29261533822014,53.070595965946794],[-127.29290382064983,53.070644357845275],[-127.29317897529772,53.070715307856155],[-127.29346987777734,53.070750788963565],[-127.2937041900241,53.07064736459206],[-127.29400001886404,53.070629555351395],[-127.2942983852512,53.0706341304434],[-127.29459637337747,53.070625817036124],[-127.29489304345822,53.07060519920304],[-127.2951899696279,53.07059297816458],[-127.29548850693496,53.07060315159774],[-127.29578467567346,53.070627353841026],[-127.29607911274263,53.070656065892805],[-127.29637185191834,53.07069039011052],[-127.29666630680582,53.07071965635096],[-127.29696328237792,53.07073937318077],[-127.29726139279428,53.07073553429026],[-127.2975580793421,53.07071546541814],[-127.29785474684796,53.070725097588344],[-127.29812706475954,53.0707949466936],[-127.2984265289817,53.07080453772985],[-127.29872417573092,53.07081583344477],[-127.29902219884323,53.07080863810321],[-127.29931989710924,53.070821608238184],[-127.29961764717304,53.070836262505864],[-127.2998998791416,53.07089367136195],[-127.30014971968095,53.070992344186735],[-127.30037217555203,53.0711126013106],[-127.30057993675834,53.07124142916559],[-127.30078310473229,53.071373113344734],[-127.30097893215645,53.0715087958144],[-127.30116553720177,53.07164906214736],[-127.30136134980225,53.07178417934705],[-127.30159295347819,53.07189761849735],[-127.3018025741496,53.072025858929536],[-127.30199748307578,53.07216211465809],[-127.30219330307133,53.07229779521798],[-127.30241575452027,53.07241749275101],[-127.30267829896441,53.07250312830913],[-127.3029534476022,53.07257293520802],[-127.30321868487995,53.0726546131313],[-127.30347668944708,53.07274477961246],[-127.30370832109949,53.072858770204334],[-127.30392345773127,53.07298359306792],[-127.30412664202234,53.07311470658559],[-127.30431695131921,53.07325324165203],[-127.30448330333084,53.073402691627884],[-127.30463669423085,53.073556767117324],[-127.30479656740233,53.07370852950566],[-127.30498597173768,53.07384763830305],[-127.30522035599117,53.07395935426615],[-127.30549815976107,53.074024087567544],[-127.30579423753004,53.07404434822121],[-127.30609226473696,53.07403657044142],[-127.30639020787925,53.07402655154708],[-127.30668832098456,53.07402156844237],[-127.30698685065526,53.074030592529816],[-127.3072742880631,53.07398258569427],[-127.3075265772699,53.07388677947315],[-127.30773389070407,53.07375729544733],[-127.30794216213636,53.07362835626619],[-127.30810393601497,53.07347751874148],[-127.30826003176105,53.07332450257038],[-127.30845403044749,53.07318787597814],[-127.30867945108561,53.073069951884555],[-127.30890678926856,53.07295312673557],[-127.30911220723203,53.072823096323994],[-127.30932045493525,53.072694154809426],[-127.30950592195748,53.072553694200884],[-127.30972274204271,53.07242970428113],[-127.30994242616569,53.072307914505686],[-127.31010230149566,53.07215653921099],[-127.31026311750259,53.072005144273206],[-127.31047516536538,53.07187839971685],[-127.31069293842359,53.07175495316618],[-127.31087647828477,53.07161339993767],[-127.31104866067135,53.071466925073246],[-127.31121607467779,53.07131769676666],[-127.31136836105205,53.07116304188715],[-127.31152159061295,53.07100893215335],[-127.31170229326692,53.07086627940666],[-127.31198568837236,53.070809340423146],[-127.31228125313125,53.0707836437136],[-127.31257795037334,53.070764101728855],[-127.3128762825107,53.07076694484846],[-127.31317076678302,53.07079673455585],[-127.31346531677308,53.07076824005026],[-127.31372459094653,53.07068747562142],[-127.31377796356055,53.070509254416685],[-127.31384265251295,53.07033371338343],[-127.31394870769066,53.07016612143676],[-127.31415694260737,53.07003717103293],[-127.31443931741273,53.06997799608916],[-127.31471419736795,53.069918339085305],[-127.31488625800942,53.0697690624712],[-127.31509543244039,53.06964065571273],[-127.31532561776166,53.069526591985706],[-127.31553955692343,53.069400937438566],[-127.31574491985073,53.0692703306149],[-127.31595124361735,53.069140842320635],[-127.3161651962195,53.06901574226367],[-127.31638294059586,53.06889284980004],[-127.31660258499717,53.06877049157333],[-127.31682034409474,53.068648153937225],[-127.31703617825637,53.06852359603963],[-127.31724249417296,53.0683940964721],[-127.31743074736242,53.068254721113604],[-127.31762946030703,53.06812082302668],[-127.31786246147654,53.068007843323805],[-127.31811952783586,53.06791699863394],[-127.31839700898487,53.06785114463937],[-127.3186893876874,53.06781370477027],[-127.31898181797628,53.067777940092135],[-127.31927323610356,53.067739944683915],[-127.31956772593144,53.06771031464645],[-127.31985608574466,53.06766395154084],[-127.3201257551092,53.067587530039496],[-127.32037891926217,53.06749168548853],[-127.32065758283873,53.067434222264104],[-127.32095778105966,53.06743814450714],[-127.32125602087581,53.067438734901295],[-127.32155267300585,53.06741860572263],[-127.32184939466079,53.06740071632606],[-127.3221418194396,53.0673649438154],[-127.32243731913346,53.06733810137805],[-127.32272872849464,53.06729953265409],[-127.32301910814479,53.067258177585735],[-127.32331050175563,53.06721961655414],[-127.32360604959956,53.06719389128622],[-127.32390166938607,53.06717096162315],[-127.32419824845877,53.06714858527],[-127.32449351765655,53.06717385519421],[-127.32478801984477,53.06720472730009],[-127.32506580923302,53.06726941483163],[-127.32533738004354,53.0673442484406],[-127.32558727618235,53.06744342330537],[-127.32577670334136,53.06758194361055],[-127.3260037716148,53.06769818371165],[-127.32627438745698,53.06777247007464],[-127.32654046156817,53.067850724653134],[-127.32678582111544,53.067953874753485],[-127.32704926145796,53.06803776106863],[-127.32728714709656,53.06814099412694],[-127.32743324805891,53.06829904093089],[-127.32743602511405,53.06847719392856],[-127.32744177359453,53.068660916784964],[-127.32747447620841,53.068839854028205],[-127.32766817527565,53.06896487544848],[-127.32792633193519,53.06905890514427],[-127.32817266398399,53.06916316212861],[-127.32834188016311,53.069312547400635],[-127.32834728191459,53.069485067520226],[-127.32828177965399,53.069662302915596],[-127.32823311670354,53.06983991367655],[-127.3282088049027,53.07001893600032],[-127.32821724523771,53.07019870164954],[-127.32823499906857,53.0703778066922],[-127.32824810529681,53.070557528794794],[-127.3282602842468,53.07073725234208],[-127.3282481316276,53.07091669367236],[-127.32821165936028,53.07109528783095],[-127.32818556509903,53.071277127209264],[-127.32833237702198,53.071427329169374],[-127.32851267770882,53.07157210682807],[-127.3286818696058,53.07172037114747],[-127.32885750960914,53.07186575655895],[-127.32902853801224,53.072012879066875],[-127.32919682402111,53.07216171765426],[-127.32936693010974,53.07230940589792],[-127.3295453337193,53.07245308268799],[-127.32973942396033,53.07258985868139],[-127.32995004284449,53.07271748301486],[-127.33017166533783,53.072837703289096],[-127.33040061038763,53.07295334909271],[-127.33063320504598,53.07306560034752],[-127.33086580341336,53.073178406953275],[-127.33109565915976,53.07329292051428],[-127.33133919196932,53.07339608189976],[-127.3315990949142,53.073485045583],[-127.3318462805685,53.07358535863926],[-127.33209437683375,53.07368509610632],[-127.33234881596806,53.07377860239876],[-127.33257960364502,53.07389254675795],[-127.33280854349276,53.07400763217758],[-127.33303931618909,53.074121019976516],[-127.33325821344573,53.0742434976433],[-127.33347894635996,53.07436484249781],[-127.33370696400694,53.07447993661274],[-127.33394689698318,53.07458760699691],[-127.3341904616345,53.074691318074166],[-127.3344313217042,53.074798421172474],[-127.33468849618971,53.0748890944451],[-127.33498000105473,53.07491213098438],[-127.33527865657686,53.0748947514074],[-127.33557668432624,53.074886899244476],[-127.33586838383704,53.07491609947409],[-127.33614358492282,53.07498526434911],[-127.3363871397217,53.07508841522718],[-127.33666410623003,53.07515419696909],[-127.33695085358616,53.07520418717117],[-127.337233182611,53.07526206231726],[-127.33751380213447,53.07532500357869],[-127.33777451316264,53.07540890624553],[-127.33800719365753,53.07552281872157],[-127.33825259268696,53.07562538010749],[-127.33848055936116,53.07573822441775],[-127.33865165428284,53.0758858883102],[-127.33883010437674,53.076029550781676],[-127.33903711456045,53.07615944137445],[-127.3392459450965,53.07628819031605],[-127.33944097601338,53.07642381930108],[-127.33961763238109,53.076569742242484],[-127.3397479788567,53.076729638033335],[-127.33984406770247,53.07690000814934],[-127.33996521038723,53.07706449070374],[-127.3400928542185,53.07722777872002],[-127.34026842977732,53.07736867448834],[-127.34048738250621,53.077491703137504],[-127.34060285015319,53.07765400812466],[-127.34071952589231,53.07794348894767],[-127.34099114575255,53.07786868389883],[-127.34126080937526,53.07779165911707],[-127.34153935272951,53.07772910135442],[-127.34183594328728,53.07770500495173],[-127.3421335436142,53.077712830478724],[-127.34241851323323,53.077764504302195],[-127.34269810840074,53.077824083113285],[-127.34299665193794,53.07783189575528],[-127.34329480796741,53.077827940700296],[-127.34359297918093,53.077823993684646],[-127.34389108200048,53.07781836122982],[-127.34418871900336,53.07782730182958],[-127.34448804805902,53.07783061914952],[-127.3447864675185,53.07783450191152],[-127.34507993891496,53.07785974166749],[-127.345365055241,53.077915889379184],[-127.34563384722631,53.0779884673839],[-127.3459331599004,53.07799122539801],[-127.34623159854199,53.077995669115175],[-127.34652352221782,53.07803099987347],[-127.34681859587621,53.078047251830114],[-127.34710099286177,53.07810622354708],[-127.34739044183256,53.07815167526103],[-127.34766742774612,53.07821687544494],[-127.34793734580776,53.07829503869152],[-127.34820003641684,53.07838113737081],[-127.34848941692456,53.07842433692544],[-127.34876629943815,53.078486173776874],[-127.34902792583465,53.078568356013484],[-127.34932004921069,53.07860928988318],[-127.34959349796411,53.07868068512866],[-127.3498652030509,53.07875602645107],[-127.3501377650637,53.07882911605105],[-127.3504040598191,53.07891068607574],[-127.3506891009267,53.078964015804004],[-127.35096962217311,53.07902244397612],[-127.35120228957338,53.079134654505516],[-127.35132259108158,53.07930025605522],[-127.35149924661188,53.07944447613514],[-127.3516814408739,53.07958640023022],[-127.35180639395091,53.079751383244755],[-127.35203618128033,53.079860818993055],[-127.35224601175118,53.07998953389448],[-127.3524134148733,53.08013666465374],[-127.35253185741983,53.080302851056516],[-127.35270205662066,53.080449384581975],[-127.3529073000438,53.08058095696839],[-127.35310700436999,53.08071426894961],[-127.35325871067158,53.080867737431674],[-127.35338550780843,53.081031585954456],[-127.35357868235263,53.08116552779871],[-127.35378298660494,53.08129654463198],[-127.35397441929601,53.081434432573495],[-127.35415664812815,53.08157690833157],[-127.35433243149275,53.08172226382427],[-127.35450451533205,53.081869337974965],[-127.35467661532198,53.08201641169109],[-127.35485145969449,53.0821617682188],[-127.3550327703243,53.082304817976436],[-127.35521130290103,53.08244845517181],[-127.35539635224218,53.08259089667729],[-127.35562812327731,53.08270309993932],[-127.35591476492942,53.08274744267252],[-127.35621412961952,53.08275073027247],[-127.35651195785985,53.08273498362269],[-127.35680552980668,53.082703595932486],[-127.35709803056986,53.08266773719191],[-127.35739054862222,53.0826324333672],[-127.35768303061249,53.08259601753626],[-127.35797445905324,53.08255568630828],[-127.35826188149196,53.082507555823675],[-127.35854527372781,53.082449940921244],[-127.3588072046772,53.08236512059308],[-127.35904403634947,53.082255378137575],[-127.35927509896321,53.08214120997588],[-127.35952733413154,53.082045292994934],[-127.35981500277477,53.08200500041947],[-127.36011384846981,53.082021176089434],[-127.36040415735549,53.08206321544921],[-127.36068747067313,53.08211991217802],[-127.36096541216713,53.08218450575132],[-127.36124342354248,53.082250783340584],[-127.36152318260385,53.082313678170834],[-127.3618082608441,53.08236698992923],[-127.36210197145888,53.08239834418473],[-127.3624005867409,53.082407228012805],[-127.36269833182409,53.08241836243953],[-127.36299458527442,53.08244127574429],[-127.36328916757421,53.082470375691805],[-127.36358291601734,53.0825028465055],[-127.36387230456793,53.08254489699784],[-127.36415649890372,53.08259988984338],[-127.36444252761343,53.082653740168126],[-127.36473618502143,53.08268284721505],[-127.36503321152652,53.082671570935],[-127.36532460036219,53.08263065715076],[-127.3656129754626,53.0825830624965],[-127.36590650031488,53.08254996717537],[-127.36620385036194,53.082548770118656],[-127.36649932687271,53.0825767310953],[-127.36678966113456,53.08261876354047],[-127.36707738244019,53.082666984652455],[-127.36736506828208,53.08271408482235],[-127.367656241245,53.08275329931961],[-127.3679491398947,53.08278801048875],[-127.36824294817153,53.08282214558965],[-127.36853668165087,53.082853483667584],[-127.36883121652427,53.08288089391163],[-127.36912831361458,53.08290098496709],[-127.36942610010097,53.082913222675856],[-127.36972386852429,53.08292489503326],[-127.37002183629161,53.082942732437125],[-127.37031028861706,53.08298421330408],[-127.37058568883323,53.08305610269273],[-127.37086535842465,53.08311561465598],[-127.37116305651745,53.08312505186907],[-127.3714607548923,53.083105342224385],[-127.37175763762998,53.083089568087374],[-127.37205757090138,53.083081602388916],[-127.37233644806155,53.08302961895581],[-127.37259827917842,53.08294196283249],[-127.3728846877434,53.0828915670846],[-127.3731782486501,53.082860138716654],[-127.37347378460336,53.082831492784386],[-127.37376848640999,53.082806208822916],[-127.37406513042374,53.0827831518178],[-127.37435974093054,53.08275507026649],[-127.37464914273508,53.08271079452493],[-127.37492563616301,53.08264314339285],[-127.37517400862853,53.08254443148213],[-127.37540499335563,53.082429120521304],[-127.37567587447418,53.082361523963705],[-127.37597592585337,53.082356908854685],[-127.3762744924335,53.08236463755417],[-127.37657274683261,53.082362283186264],[-127.37687069529224,53.08235096633962],[-127.37716867688385,53.08234021316677],[-127.3774677492583,53.082334485016574],[-127.37776607925697,53.08233492392311],[-127.37806449731056,53.082337611338176],[-127.37836295491111,53.08234197404872],[-127.37866146394626,53.082347456067644],[-127.3789599581013,53.082352937507125],[-127.37925844892915,53.08235785341835],[-127.3795569067949,53.08236221311286],[-127.37985537967923,53.08236657187855],[-127.38015383766768,53.08237093006516],[-127.3804523106747,53.0823752873229],[-127.3807507506961,53.082379088364306],[-127.3810491873428,53.08238232387794],[-127.38134760907778,53.082385558812625],[-127.38164600932075,53.08238767258261],[-127.38194433973618,53.08238810093899],[-127.382243630866,53.08238908211556],[-127.38254061413197,53.082376641585405],[-127.38282893165287,53.08232788467028],[-127.38311287383583,53.08228813461033],[-127.38339368094584,53.08235320708943],[-127.3836483216465,53.082447722632594],[-127.38391740584117,53.082525823298205],[-127.3841918472648,53.082596571793445],[-127.38447339910495,53.082655464880155],[-127.38476885181497,53.08268225993009],[-127.38506688846151,53.082673162711096],[-127.38534343821054,53.08260772766854],[-127.38557633819777,53.08249460641091],[-127.38580353341503,53.08237819856585],[-127.38606150519433,53.08228831614655],[-127.38634188159477,53.08222563098598],[-127.38663333530253,53.082186913896464],[-127.38693122474518,53.08217388684557],[-127.38722971552804,53.082178791580816],[-127.38752753880678,53.08219210390628],[-127.38782541711258,53.08220709135141],[-127.38812235362042,53.08222209807952],[-127.38841778390014,53.082247763601536],[-127.38871399515756,53.08226893654757],[-127.38901206798313,53.08226150542049],[-127.38929747020161,53.082209404902365],[-127.38956607288738,53.082130040505035],[-127.38982693904207,53.082042921841285],[-127.39009457888172,53.08196300272307],[-127.39037598142434,53.08190310195498],[-127.3906643966217,53.08185767764557],[-127.39095575541776,53.08181670959425],[-127.39124823938737,53.0817813219317],[-127.39154177572001,53.08174929210666],[-127.39183636746665,53.08172116696177],[-127.39213197793539,53.081695826255974],[-127.3924298039327,53.08168055365699],[-127.39272835020127,53.08168767618282],[-127.39302537335324,53.08170491088273],[-127.39332160137309,53.08172662791918],[-127.39361703494245,53.08175284522156],[-127.39391248353947,53.081779052646546],[-127.3942087310916,53.08180133205498],[-127.39450653563927,53.08181407115579],[-127.39480491755532,53.08181615186893],[-127.39510305650974,53.081810390026234],[-127.3954010512773,53.08180070231433],[-127.39569900571503,53.08178933780701],[-127.3959970187827,53.081780213188864],[-127.39629614012455,53.08177612220585],[-127.39659438926209,53.08177371729538],[-127.39689240202736,53.081764590418736],[-127.39718600749528,53.08173477807221],[-127.39746142388825,53.08166428025294],[-127.39773698368701,53.08159770690301],[-127.39803591864369,53.08158800139538],[-127.39833216702677,53.081610270467145],[-127.39862593630316,53.08164265416821],[-127.3989206113645,53.08167390574867],[-127.39921673160602,53.081692256273314],[-127.39951509088631,53.08169320468306],[-127.40000098776132,53.08168127913287],[-127.40005237639159,53.08168011426062],[-127.40035075395127,53.081681616194395],[-127.40064915386718,53.081684246744416],[-127.40094736510737,53.081680710614805],[-127.4012452652466,53.08166821206672],[-127.40154297641108,53.081649546842286],[-127.40183967126981,53.081628660550564],[-127.40213632850477,53.081606644321546],[-127.40243193231511,53.08158128680539],[-127.40272547719191,53.08154978482576],[-127.40301084251871,53.081497642377386],[-127.40329618533153,53.08144438779236],[-127.40358654600259,53.08140171477403],[-127.40387792596545,53.081361826114325],[-127.40416735816532,53.0813191626868],[-127.4044536998373,53.08126813473782],[-127.40474002212008,53.081216541497696],[-127.4050263065951,53.08116382733248],[-127.40531064653274,53.08110889425408],[-127.40559304189591,53.081051742276166],[-127.40586856969743,53.08098514115412],[-127.40612643145015,53.08089298318162],[-127.40639208944829,53.08081080888977],[-127.40666068843937,53.08073252579763],[-127.406936097532,53.08066200567404],[-127.4072307645842,53.080636647181976],[-127.40751711640287,53.080586167422304],[-127.40779843276172,53.080525096100075],[-127.40807193186687,53.080453475371534],[-127.40836470848645,53.08042757173753],[-127.4086576430924,53.08046274662556],[-127.40895150518807,53.080497900764726],[-127.40923650034422,53.08054717284815],[-127.40950641643182,53.08062127897216],[-127.40980368462697,53.08064631327936],[-127.41009753398764,53.08062431042731],[-127.41039086532878,53.08058718842256],[-127.41068534349492,53.08055622017214],[-127.4109618023388,53.08048959590128],[-127.41120862713562,53.08043173452466],[-127.41146495367057,53.0803222081112],[-127.41174433372585,53.0802589180495],[-127.41202860280416,53.0802022839521],[-127.41229720633929,53.080124552613576],[-127.41257073612408,53.080054597494126],[-127.41285801990392,53.08000409350559],[-127.41314730687525,53.07995804754199],[-127.41336084734344,53.079911786494186],[-127.41369228228584,53.07981144250785],[-127.4139367817444,53.079740155050274],[-127.41419299151738,53.0796552787836],[-127.4144892178767,53.07962091797112],[-127.41478678869014,53.07962687564199],[-127.41508917570604,53.07963726653496],[-127.4153816429875,53.079658417444456],[-127.41563275676104,53.07972937292966],[-127.4158334318349,53.079858086874836],[-127.41602428197884,53.08000036636],[-127.41616559452838,53.08017181215795],[-127.41636953403093,53.08031393417007],[-127.41660668177119,53.080442774325796],[-127.41685900645541,53.080521557457345],[-127.41708552600296,53.08063987324754],[-127.41731478738308,53.08075647021912],[-127.41754680584656,53.080871357138676],[-127.41778154393985,53.080983413764685],[-127.41801806268977,53.08109319824189],[-127.41825820582959,53.08119902085975],[-127.41850009239958,53.08130146003751],[-127.41876980462276,53.08136882361464],[-127.41905413713023,53.081425924882666],[-127.4192814500782,53.08151172742162],[-127.41949441704405,53.08164364959766],[-127.41967088295814,53.0817748893804],[-127.4198870330687,53.081890527298775],[-127.42014792830771,53.08197368320565],[-127.42043055781666,53.082063301266935],[-127.42074069257816,53.08213689841881],[-127.42106485095313,53.0821542923062],[-127.42134520085128,53.082148113398084],[-127.42163133531412,53.08200739210574],[-127.42187585271455,53.08193664393896],[-127.4221968789656,53.08194455114639],[-127.42249019526638,53.0819623124155],[-127.42278564818021,53.08198844781359],[-127.42308225063486,53.082020736830266],[-127.42337898527983,53.08205695036366],[-127.42367579533972,53.08209539463543],[-127.42396979032479,53.08213331624432],[-127.4242610304998,53.08217295583739],[-127.42454441453248,53.08222949063451],[-127.42482517186245,53.08229110396689],[-127.42510859136532,53.082348201818704],[-127.42536999417521,53.08241845690899],[-127.42562895934351,53.082471365875435],[-127.42589559132578,53.082557802041514],[-127.42615648802797,53.082612927905394],[-127.42634219025989,53.082795597571206],[-127.42660565190315,53.082870863672184],[-127.42690511300367,53.08296026317752],[-127.42717373688689,53.08299455649257],[-127.42745992356109,53.083050494669706],[-127.42772612937276,53.0831240486135],[-127.42797036802949,53.083239323573586],[-127.42814224110023,53.08334427507251],[-127.42844238697843,53.08342581772048],[-127.42871509521481,53.08349816120381],[-127.42899144577093,53.08356710694313],[-127.42927569351131,53.08362082287873],[-127.42955648565275,53.08368298054854],[-127.42978951690539,53.08371546628548],[-127.43000742285739,53.08377110405184],[-127.43013104763334,53.08385926174502],[-127.43026166275719,53.08396078280718],[-127.43032073853892,53.08404860107862],[-127.43039426200154,53.084121110768706],[-127.43050750339225,53.08420659658062],[-127.43054729700557,53.08427727323857],[-127.43064527904902,53.08435397827646],[-127.43075918158796,53.08440358521346],[-127.43104592917464,53.08442028434093],[-127.43134457708858,53.08442955867657],[-127.43164086277432,53.08445174419067],[-127.4319294799264,53.08449587063811],[-127.4321951354391,53.08452515008649],[-127.4325006796107,53.084599893058744],[-127.43278146418751,53.08466148740116],[-127.43306315407048,53.084721949425045],[-127.43332826721223,53.08479045664392],[-127.43358877154148,53.0848881568198],[-127.43385526464644,53.08496953840324],[-127.43409915589767,53.085074163165075],[-127.43438424889003,53.08512449467223],[-127.4346784298736,53.08516742624894],[-127.43483966559738,53.085205812549844],[-127.43495970886192,53.08521556134102],[-127.43523003949207,53.08527223834131],[-127.4354909856085,53.085355360205746],[-127.43581268088667,53.0853817093227],[-127.43610872695027,53.08536914562132],[-127.43640316245308,53.08533642854949],[-127.43669668892616,53.08530427764858],[-127.43700413589202,53.08526915948069],[-127.43729094889069,53.08528752825008],[-127.43758731962896,53.085311939275414],[-127.43783764446982,53.08521979455461],[-127.43807328796119,53.085108220595565],[-127.43828888747369,53.08498456269729],[-127.43847872399063,53.084846093385835],[-127.4386438344581,53.08469558840568],[-127.43882985306364,53.08455492361065],[-127.43910106472227,53.084499504132054],[-127.43939624566934,53.08454409730464],[-127.43968842502444,53.08458312292561],[-127.43998378876206,53.08460529881845],[-127.44027921394138,53.08462971458728],[-127.4405740165018,53.084663102653394],[-127.44086704510318,53.084699317807434],[-127.44115748631509,53.08474172306088],[-127.44138533222865,53.08481402900489],[-127.44152907077182,53.084942829987035],[-127.44174280776029,53.08501251018869],[-127.44201879918192,53.08509767553931],[-127.44235704852815,53.08514341223334],[-127.44272616118107,53.085189335897674],[-127.44311644115257,53.0852249137348],[-127.44346596855429,53.085272195018604],[-127.44380709032328,53.0853195780015],[-127.44410443793556,53.085372542630694],[-127.44431889872806,53.08543604115959],[-127.4444030067787,53.085516257761796],[-127.44425126935393,53.08561953886693],[-127.44395335665554,53.08574252833055],[-127.44364936341691,53.08587904844231],[-127.44346826571409,53.086026384800554],[-127.44338988283066,53.086196565120986],[-127.44334108378273,53.08638431483063],[-127.44331849580398,53.086572309115574],[-127.44331779638466,53.086744337498494],[-127.44331737911656,53.08692421613923],[-127.4433150767488,53.08710410882484],[-127.44330810754482,53.08728406746778],[-127.44333281101318,53.0874602681714],[-127.44330538779218,53.08764383868346],[-127.4433105797503,53.087823639743895],[-127.44328485434312,53.08800214193177],[-127.44328149102353,53.0881781295716],[-127.4432612224324,53.08835208234198],[-127.443227406888,53.088512752426226],[-127.44316402648367,53.0887118866668],[-127.44313191520871,53.088894949428806],[-127.44323762896109,53.08906063921908],[-127.44337304852851,53.08921924195656],[-127.44356085865903,53.089350873011185],[-127.44375631305465,53.08951490105983],[-127.44391707603819,53.0896485385821],[-127.44404256306727,53.08979045176581],[-127.44418462798583,53.08997923065646],[-127.4442888409114,53.090210501958914],[-127.44443247315593,53.090335382755065],[-127.44459939718446,53.0904577372577],[-127.44474693557031,53.09061506956831],[-127.44489815762573,53.09077067114915],[-127.44505304474231,53.09092399532386],[-127.4452152981556,53.09107385820045],[-127.44539321153384,53.0912168141959],[-127.44560334317784,53.091344242135264],[-127.44582637526074,53.09146590846901],[-127.44603656659328,53.09159501145391],[-127.44623393673177,53.09173212470425],[-127.44646134952373,53.09184477082344],[-127.44672872361393,53.091922742104344],[-127.4470088219814,53.09198935915901],[-127.4472844487777,53.09206218957077],[-127.44755924874762,53.092138391509984],[-127.4477884225442,53.09224765151346],[-127.4479793248898,53.09238707354056],[-127.44814265184404,53.092540290311085],[-127.44827904740548,53.09269943136821],[-127.4483839972785,53.09286905277437],[-127.44846564060032,53.09304119216561],[-127.44852501174651,53.0932180961913],[-127.44857501758574,53.09339510601868],[-127.44860919290986,53.09357399537946],[-127.44864149839954,53.09375290763857],[-127.44867567429249,53.093931796943764],[-127.44869862964248,53.09411082378558],[-127.44869914342885,53.09429012573524],[-127.44868002807911,53.09446966831068],[-127.44863803463173,53.09463716388971],[-127.44860405334794,53.09481969482588],[-127.44859459846292,53.0950086401645],[-127.44855959757346,53.095188942190575],[-127.4485367215498,53.09536796591745],[-127.44853997523202,53.0955455576155],[-127.4485973841445,53.09571967928155],[-127.448698640304,53.09589045721384],[-127.44879432519232,53.096062432996895],[-127.44883409499488,53.0962406886515],[-127.44882261775712,53.09642518492388],[-127.44885203256842,53.09660132614318],[-127.44896517334703,53.096764122331685],[-127.44910999025278,53.09692260314268],[-127.44927706403286,53.09707576330532],[-127.44945697812456,53.097220929986165],[-127.4496605982724,53.0973484306561],[-127.44992015982359,53.097442745074794],[-127.45015415156972,53.09755530350114],[-127.45035892867362,53.09768894802143],[-127.45050080702075,53.09784354533269],[-127.45057606421827,53.098019688229556],[-127.45065313470806,53.09819412331577],[-127.45072648450166,53.098369168836115],[-127.45076902022294,53.098545713250644],[-127.45074615607494,53.09872530183093],[-127.45072330669602,53.09890489020496],[-127.45075651453034,53.09908266975387],[-127.45081310968152,53.09926016217683],[-127.45087622075262,53.09943645389369],[-127.45092917212075,53.099616797137614],[-127.45099141821369,53.09979534073659],[-127.45108509713386,53.09996284747517],[-127.4511340694745,53.09999979322472],[-127.45154448984067,53.10023681865583],[-127.45165118810345,53.100401923692225],[-127.4515889860669,53.10057975410586],[-127.4514919045751,53.10075016812257],[-127.4513910430744,53.100919507780624],[-127.45127321268966,53.101085137823354],[-127.45111647345368,53.10123499121409],[-127.45087500992723,53.10134217823869],[-127.45066990799091,53.101473008421785],[-127.45049052386113,53.10161697963533],[-127.45036038814544,53.10177883281789],[-127.45014573849207,53.10190417581719],[-127.44994633899299,53.10203774083811],[-127.4497574443005,53.102177344820454],[-127.4495989017833,53.102329459453934],[-127.44947726185265,53.10249344867375],[-127.44937168104921,53.1026617234972],[-127.44927362383072,53.102831582470436],[-127.44918312051146,53.103003034206296],[-127.44907561347472,53.10317021163386],[-127.44894548255374,53.10333206293316],[-127.44878978440222,53.10348526209505],[-127.44863030572458,53.10363738668967],[-127.4484897612355,53.103796003025934],[-127.44835490396582,53.10395679081808],[-127.44828038282111,53.104130851992785],[-127.44821430919693,53.1043059212969],[-127.44815202976179,53.10448207368872],[-127.44809067732257,53.104658205701675],[-127.4478988173653,53.104793915791745],[-127.44768707766958,53.10492314501617],[-127.44749430667277,53.10505943037459],[-127.44731679018996,53.10520448499415],[-127.44713358009218,53.105346811838665],[-127.44694938772062,53.10548802972828],[-127.44675948674308,53.105626519988526],[-127.44659334222048,53.10577591689803],[-127.4464480566608,53.10593291193849],[-127.4463207247066,53.10609528146944],[-127.44619811846833,53.10625927850245],[-127.4460793058313,53.10642434963896],[-127.4459642568998,53.10659049525634],[-127.44583127111764,53.10675182161285],[-127.44565464648481,53.10689574186544],[-127.44541400333962,53.10700066546034],[-127.44513557401179,53.10706794782774],[-127.44486395112727,53.10714299099808],[-127.44460306293958,53.10723079449217],[-127.44436145320503,53.10733516286642],[-127.44415726425522,53.10746653436633],[-127.44398257833065,53.107612678569566],[-127.44382115797063,53.10776369897388],[-127.44366542502266,53.107916891002915],[-127.44351159985808,53.108071180168714],[-127.44335588358307,53.108224927382615],[-127.44319634865418,53.108376488619925],[-127.44303586940745,53.10852805217749],[-127.44288581943849,53.10868341500069],[-127.44275186824285,53.10884418444829],[-127.44262831232999,53.109008188849884],[-127.442516075768,53.10917486111205],[-127.44241984682557,53.10934469094581],[-127.44235094242529,53.1095197995692],[-127.44231208478838,53.109697894558586],[-127.44227229919446,53.109876009800374],[-127.44222030686288,53.11005314430204],[-127.44213537639898,53.11022508623192],[-127.44197868115965,53.1103777225666],[-127.44175628948257,53.11049754897169],[-127.4414983062319,53.110589227529935],[-127.44123931772374,53.11067867643532],[-127.44098034701385,53.11076868038775],[-127.44073006852578,53.110866431429585],[-127.44050479967528,53.11098460496071],[-127.44030819785796,53.11111979456884],[-127.44014866001656,53.11127190706512],[-127.44001658426158,53.11143377076889],[-127.43992598707099,53.111604094385385],[-127.43994137440485,53.11178153647462],[-127.44002863265926,53.11195361148775],[-127.44002912916996,53.11213347624675],[-127.43999591028278,53.11231262204152],[-127.43995327940303,53.11249020593595],[-127.43993411879843,53.11266974524994],[-127.43993178179446,53.11284907963071],[-127.43991918105854,53.11302910381764],[-127.4398756400056,53.1132072545338],[-127.43977564964577,53.11337713636632],[-127.43959039373986,53.1135161130566],[-127.43935168704331,53.1136249175314],[-127.4391283617486,53.11374530569121],[-127.43899619831419,53.11390492763415],[-127.43898353608205,53.11408326683697],[-127.439005571413,53.11426342501613],[-127.43903970430638,53.11444175941658],[-127.4391046259195,53.1146174687356],[-127.43913034724505,53.11479590547174],[-127.43911678033665,53.1149753762757],[-127.43909387292037,53.11515496075372],[-127.43906906008849,53.115334003586824],[-127.43904144820343,53.115513089428525],[-127.43901383578067,53.11569216628425],[-127.43898620425713,53.11587068749804],[-127.43895953471265,53.11604976178885],[-127.43893005047434,53.11622886134407],[-127.43889306260944,53.116407496344365],[-127.43885792670224,53.11658555292633],[-127.43880685912588,53.11676323854309],[-127.43869267751022,53.116928800061636],[-127.43852267600849,53.11707655421962],[-127.4383450596254,53.11722103876798],[-127.43816840426267,53.11736607614534],[-127.43800788796399,53.117517631929516],[-127.43787954609485,53.117680011741044],[-127.43776255908357,53.11784560631902],[-127.43765029883197,53.11801282875099],[-127.43745834498557,53.11814852087552],[-127.43727408388628,53.11829028725081],[-127.43705059916411,53.118407310765775],[-127.43680416057536,53.11850947941331],[-127.43656539976274,53.11861772234104],[-127.43634007423275,53.11873533162362],[-127.43612049775447,53.118857344288514],[-127.43589520767598,53.118976072903266],[-127.43564774397802,53.11907601017003],[-127.43538284982105,53.11915879280717],[-127.43513154663752,53.119255978407345],[-127.43489566759102,53.119366424150556],[-127.43467129952256,53.11948513913636],[-127.4344660597595,53.11961593986449],[-127.43427700164234,53.119754953328155],[-127.43408894243376,53.11989563981439],[-127.43384332159343,53.119994994940704],[-127.4336094200725,53.120108775967736],[-127.43351112268394,53.12027413923005],[-127.43354338478547,53.120453052918975],[-127.43356823769147,53.120634297722695],[-127.43344157000777,53.120791604385985],[-127.43323635831642,53.12092353204109],[-127.43300237426935,53.12103507141767],[-127.43280188344727,53.121168052747244],[-127.43263462514967,53.121315208549376],[-127.43256751311783,53.121489723041186],[-127.43239274820178,53.12163640458312],[-127.43219892760351,53.121773230758585],[-127.4320165420804,53.12191607722102],[-127.43183793624836,53.12206000722708],[-127.4316235621607,53.12214272508551],[-127.43132257313442,53.12212788247079],[-127.43102388654869,53.12212532944884],[-127.43072503402482,53.12211830403347],[-127.43042629096611,53.12211407368977],[-127.43012700164947,53.12212161157218],[-127.42983128692724,53.12215208333831],[-127.42956335485422,53.12222873005347],[-127.42931787978131,53.12233311205039],[-127.429115485186,53.12246611879631],[-127.42893021110297,53.12260675388738],[-127.42876110004337,53.12275504690223],[-127.42853673431428,53.122874861257266],[-127.42831900437558,53.12299740112345],[-127.42817164511914,53.12315215439232],[-127.42804991898156,53.123317795448244],[-127.42793569670444,53.123483910548586],[-127.42778578394147,53.12364653865043],[-127.42792689336429,53.12380620857902],[-127.42814320774515,53.12375260222274],[-127.42832134262848,53.1235941243557],[-127.42847053655102,53.12343822813626],[-127.42862447226244,53.12328395987526],[-127.42875267799542,53.12311599860388],[-127.42891438039265,53.122970036477916],[-127.42915823418677,53.122872954763494],[-127.42943265322035,53.12279399829668],[-127.42970519951771,53.12271505485458],[-127.42997007043732,53.12263060928829],[-127.43025787184531,53.122587905756895],[-127.43055568763991,53.12256413146308],[-127.43085271123395,53.12254484861247],[-127.43114962104369,53.122522204430425],[-127.43144335626346,53.122488947241116],[-127.43173500777705,53.12244899959092],[-127.43202781381716,53.12241575218723],[-127.43232582086841,53.122398139167395],[-127.43262223608285,53.12238838028904],[-127.4329170263583,53.122358477555736],[-127.4332065615654,53.1223118190029],[-127.43349531982813,53.12226966073191],[-127.43379328319995,53.12225035905895],[-127.4340891324491,53.122224358346635],[-127.43438405312786,53.12219836815311],[-127.43468107241559,53.1221790756837],[-127.43497922430485,53.12216537199255],[-127.43527745574544,53.12215446373559],[-127.43557123840515,53.12212232526092],[-127.43585791270081,53.12207401838874],[-127.43615583951281,53.1220541463654],[-127.43645419907587,53.122046604501264],[-127.43675261922921,53.12204129349201],[-127.43705071264063,53.12202590876785],[-127.43734145020457,53.12198706997573],[-127.4376249649448,53.121928711287445],[-127.43792099579389,53.12190774615353],[-127.43819454995642,53.121969417360546],[-127.43842688869766,53.12208538078761],[-127.43870057772149,53.122150967012615],[-127.43900090805867,53.12214675671601],[-127.43929709165786,53.12213025994981],[-127.43959447830792,53.12214961774895],[-127.43989184182739,53.12216784546369],[-127.44018982949942,53.12217710854803],[-127.4404879693353,53.122190842689065],[-127.44078686630645,53.122199528384655],[-127.44107824517033,53.12223464485714],[-127.4413645816737,53.12228662296162],[-127.44166087048463,53.12230094153272],[-127.4419602733828,53.12229673503767],[-127.4422575626892,53.12231271641909],[-127.44255649902198,53.12232251783319],[-127.44284933414639,53.122290372788214],[-127.44310071393052,53.122195411335625],[-127.44332503457314,53.122075560346346],[-127.44359401768803,53.12200279608459],[-127.44389261662542,53.12197506067745],[-127.44418581802164,53.12198100119454],[-127.44447049544556,53.12203916017427],[-127.44474978870633,53.12210410820629],[-127.44502458791304,53.122174713794294],[-127.44530035047079,53.122245871788905],[-127.44554423196116,53.12234262920623],[-127.44573896706254,53.122480886542526],[-127.44597121456323,53.122593474543514],[-127.44625288878588,53.12264550688149],[-127.44655352753249,53.122650229965835],[-127.44685242498369,53.12265834453187],[-127.44715119248869,53.12266308899467],[-127.44744987951228,53.12266503652598],[-127.44774866642291,53.122670344054995],[-127.44804675490309,53.12268238333308],[-127.44834492013811,53.122696662238525],[-127.44864217666274,53.12271151633901],[-127.44893871975373,53.12273309342305],[-127.44923756495844,53.122740081954944],[-127.44953608000803,53.122736978885435],[-127.44983429270512,53.122725478309825],[-127.45013373612949,53.122722371312626],[-127.45043234701187,53.12272207093363],[-127.45072608780352,53.122689330431854],[-127.45100468762163,53.1226242758656],[-127.45127740381548,53.12255144822424],[-127.45154712758817,53.122473053374684],[-127.45181592622333,53.122395225100085],[-127.45208958710347,53.122322948755304],[-127.4523721362167,53.122264001548984],[-127.45266681550844,53.122231244633916],[-127.45296165892731,53.122257879954404],[-127.45326007440491,53.12225197149457],[-127.45354164012127,53.12219192185677],[-127.45383647175726,53.1221636427783],[-127.45412906624497,53.12212473971145],[-127.45440670985518,53.122059132911694],[-127.45468431825113,53.121992961067306],[-127.45495208387031,53.1219123410737],[-127.45517258830634,53.12179139345887],[-127.45538925274018,53.1216676955018],[-127.45563664652141,53.12156659688477],[-127.45589179361943,53.12147323793416],[-127.45614884973698,53.121380984532514],[-127.45641078720605,53.12129482958867],[-127.45669233765825,53.12123420765847],[-127.45698295563196,53.121192524575775],[-127.45727363067083,53.12115251657839],[-127.45756519511148,53.121111385198354],[-127.45785688927646,53.12107360451462],[-127.45815171025156,53.121045314660606],[-127.45844641515833,53.12101366350955],[-127.45874015735141,53.120981467646075],[-127.45903177242727,53.12094144368737],[-127.45931038658259,53.12087748967917],[-127.45958402487756,53.12080519593141],[-127.45986061161447,53.120736782973225],[-127.46015023683371,53.120693418793856],[-127.46043675759559,53.12064169174565],[-127.46070940620079,53.120567722087316],[-127.46099596405541,53.12051711386737],[-127.46129290162781,53.12049607874624],[-127.46158355499472,53.120537312930914],[-127.46187160270512,53.12058418194261],[-127.4621622913832,53.12062597013012],[-127.46246042772205,53.12063965785203],[-127.46275516526077,53.12060911614273],[-127.46300641309863,53.12051187192111],[-127.46321922817422,53.120385965465715],[-127.46344639784174,53.120269402109756],[-127.46370732755696,53.12018156664069],[-127.46394986698974,53.120076018662495],[-127.46415214535251,53.11994351689934],[-127.46430593845756,53.11978920191336],[-127.46459661647047,53.119749740459305],[-127.46489488282242,53.11976733822074],[-127.46514354292671,53.11986623785749],[-127.4653913147823,53.11996626865427],[-127.46564090536465,53.120065155731446],[-127.46589140148218,53.12016291039867],[-127.46614371205195,53.12025896552995],[-127.46640780662587,53.120343658366764],[-127.46667815362632,53.12041987255664],[-127.46694939097803,53.120494954425425],[-127.46721254580967,53.12057966611612],[-127.467499749463,53.12062877330424],[-127.46779046783048,53.12067166802648],[-127.4680662004471,53.12074108823587],[-127.46831035815798,53.12084451988697],[-127.46855268917145,53.120949659211874],[-127.46879684927147,53.12105308984664],[-127.46904010625595,53.121157651872316],[-127.46927790584321,53.12126676388364],[-127.46950016178754,53.121386710442614],[-127.46971695610584,53.12151065129064],[-127.4699520226458,53.12162203727352],[-127.47020614471309,53.1217158200294],[-127.47047206967414,53.12179880465991],[-127.47071257872727,53.1219050739954],[-127.47089539343641,53.12204793082177],[-127.47113777200812,53.12215362020287],[-127.47143401141346,53.12216617942864],[-127.4717267457064,53.122131722515434],[-127.4720193042366,53.12209221957693],[-127.47231638345531,53.122075072952335],[-127.47261520823577,53.1220814378418],[-127.47291266333119,53.12210182289135],[-127.4732075381935,53.122128972309504],[-127.47350158682696,53.12215948432822],[-127.4737948831857,53.12219505248121],[-127.4740838988351,53.12224187994768],[-127.47435783923473,53.12231299350751],[-127.47460292991074,53.12241583593136],[-127.474796793258,53.12255294575936],[-127.47485535284063,53.12272928079546],[-127.47484662067441,53.12290869643241],[-127.47477782791306,53.123083813641564],[-127.47464204648817,53.123244085821796],[-127.47451477055809,53.12340648412847],[-127.47444408485623,53.1235810688208],[-127.47440631206338,53.1237597257452],[-127.47438164371422,53.12393878406426],[-127.47436449525871,53.124118304450725],[-127.47435668897046,53.124297708338865],[-127.47435453131716,53.12447759763237],[-127.47435797340384,53.124657426056984],[-127.47436984435672,53.1248371404097],[-127.47438731054038,53.12501622913396],[-127.47440386825727,53.12519589398166],[-127.47441199654686,53.12537565494338],[-127.47440702463075,53.12555558818501],[-127.47438984100836,53.12573454402935],[-127.47436707727613,53.125914134236425],[-127.4743414792249,53.126093203904645],[-127.47431211822204,53.12627175564404],[-127.47427903320276,53.1264509096304],[-127.47427029782918,53.12663032485161],[-127.47425781924595,53.12680978671699],[-127.47425097493102,53.12698974313924],[-127.47421410694437,53.12716782351987],[-127.47421100556922,53.12734773324245],[-127.47421351865464,53.12752756399358],[-127.47423006164318,53.127707228800254],[-127.47428488276043,53.12788361027285],[-127.47430985566956,53.12806316098459],[-127.47426359016985,53.12824024671842],[-127.47425113041953,53.12842026402983],[-127.4742461378156,53.12859963238952],[-127.47425426640085,53.12877940198199],[-127.47426988139433,53.12895906926851],[-127.47428362516143,53.12913876882816],[-127.47428708198734,53.12931858763878],[-127.47428208942976,53.12949795591015],[-127.47427150139458,53.12967795872704],[-127.47425902191881,53.12985742028738],[-127.47424747070569,53.13003687025625],[-127.47426306679736,53.13021598181035],[-127.47421588971089,53.13039363449268],[-127.47421465952947,53.13057351159954],[-127.47425269724774,53.130751787524396],[-127.47432151404796,53.13092687361293],[-127.47432122766533,53.131106738907974],[-127.4743928411217,53.131281234221476],[-127.47441966892528,53.13146020562941],[-127.4743827977574,53.13163828561877],[-127.47448048078029,53.131808529064664],[-127.47457627345088,53.13197824014333],[-127.47468974388373,53.13214492459267],[-127.47475950814587,53.13231999852817],[-127.47491372648874,53.13247328258455],[-127.47510030560719,53.13261496520999],[-127.47537950077374,53.13267367507744],[-127.47566249906384,53.13273402231918],[-127.47590489666034,53.13283858131234],[-127.47616183635496,53.13293007520582],[-127.47641605936501,53.133024399632056],[-127.47663565565192,53.133146051689224],[-127.47683509244266,53.13328028233348],[-127.47702530776311,53.133418545633326],[-127.477213711216,53.13355851673519],[-127.47740394871327,53.133697343972024],[-127.47760153835199,53.13383216123125],[-127.47778627994643,53.13397441850295],[-127.4780521447634,53.13405346062287],[-127.47824288124339,53.134179397179764],[-127.47794727337319,53.134214469735156],[-127.47768531921434,53.134301227360275],[-127.47747531667251,53.13442824406047],[-127.47730254550765,53.134575532064595],[-127.47714779790837,53.13472930970428],[-127.4769176949155,53.13484369324555],[-127.47668185742879,53.134954776962026],[-127.47650807917435,53.135100390801796],[-127.4763921238662,53.13526601933183],[-127.47629882592778,53.1354369592727],[-127.47622154410575,53.13561050536287],[-127.47617622621263,53.135788135118176],[-127.4761459574018,53.135967262502334],[-127.47612503294346,53.136146264282864],[-127.47610507146557,53.13632581883485],[-127.47603155089287,53.13649988256065],[-127.47596556114837,53.136675528754786],[-127.47594652256466,53.136854506888085],[-127.47593030403367,53.13703401462394],[-127.4759262657237,53.137213935175346],[-127.47592691464169,53.137393788259814],[-127.47593130796245,53.1375736035724],[-127.47595814625133,53.137752574005084],[-127.47598031210946,53.1379316027168],[-127.47591337170327,53.13810669576195],[-127.47591218785428,53.13828770124676],[-127.47608115952211,53.13843407557575],[-127.47624928220503,53.138582710541606],[-127.47634604050516,53.138752398811675],[-127.47641769459764,53.13892744776191],[-127.4764781363057,53.139103201416034],[-127.47663794788102,53.139255292564364],[-127.47669188508215,53.139432247944455],[-127.4767205998944,53.13961119464979],[-127.47671000000855,53.13979063210716],[-127.47669001960766,53.13996962182903],[-127.47668131134365,53.14014960044375],[-127.47674549990438,53.14032529814156],[-127.476856200467,53.14049201470202],[-127.47695297027175,53.140662267048135],[-127.47709244510467,53.14082134434854],[-127.47716036139572,53.1409964394],[-127.47718251905533,53.141175467751346],[-127.47716630410805,53.14135497522619],[-127.47713977962731,53.14153404659539],[-127.4771282374348,53.141713495680705],[-127.47718123620947,53.14189046237825],[-127.47719312397143,53.14207017472411],[-127.47683749654061,53.14231891763141],[-127.47664203917314,53.14243454363228],[-127.47642436289009,53.1425571705107],[-127.47623441146983,53.142696260839266],[-127.47611685089305,53.142762725710824],[-127.47599632448988,53.14279784912213],[-127.47570426269338,53.14282895308079],[-127.47540601290471,53.14284331469776],[-127.47510886730363,53.142862709221156],[-127.47481384743575,53.142889365231966],[-127.47452112820027,53.14292831006116],[-127.47424140933822,53.14299119070805],[-127.47395361131599,53.14303680568138],[-127.47365574239637,53.14303546895781],[-127.47350125882251,53.143063732992545],[-127.47334799583463,53.14310038204339],[-127.47323082106038,53.143124254312426],[-127.47308956795762,53.14312881035141],[-127.47297638450593,53.14313302570967],[-127.47282432615062,53.143150043151905],[-127.47261554513442,53.14317898196191],[-127.47243875906223,53.14323945634047],[-127.47232581464642,53.14327727873504],[-127.47221396669828,53.14337337031417],[-127.4721037644354,53.14340948186653],[-127.47196105950927,53.14353396450173],[-127.47181497697807,53.14358845263134],[-127.4716763157298,53.14366806743372],[-127.47140444230044,53.143740929518664],[-127.4711314101006,53.14380763730072],[-127.47085297421438,53.1438805796917],[-127.47055773047612,53.14390105966614],[-127.47027225738992,53.143852501837785],[-127.47001616892145,53.14375986381276],[-127.46976008188427,53.14366723419002],[-127.46950129201194,53.143577434742234],[-127.4692370267921,53.14349218534387],[-127.46897011709682,53.14341145080875],[-127.4686931901999,53.1433386846019],[-127.46839722692734,53.14331153596054],[-127.46810639137911,53.14326976344065],[-127.46781123686607,53.143238685507804],[-127.46751535249425,53.14321377499973],[-127.46722168578874,53.14319836627575],[-127.46692049589102,53.143182494264366],[-127.46662152309115,53.14317611506055],[-127.46632474998495,53.14315233325737],[-127.46602813263779,53.14313304035467],[-127.4657284493112,53.14313339161298],[-127.46542998520542,53.14314212741194],[-127.46513271667708,53.14315813636543],[-127.46484400282259,53.143204861034285],[-127.4645613118473,53.143263272782605],[-127.4642894867224,53.14333779431192],[-127.46407513191933,53.14344971510029],[-127.46380804237316,53.14360710502163],[-127.46363668534454,53.14368935604834],[-127.46332381894665,53.1437150744062],[-127.46302880044536,53.14368790963232],[-127.46275657444376,53.14361562735678],[-127.46248876715492,53.14353545425577],[-127.46222142922801,53.14346927839916],[-127.46205342000226,53.143458462821734],[-127.46175609013308,53.143472787511904],[-127.46145744900898,53.14347647699502],[-127.4612711420271,53.143478213485935],[-127.46119505483983,53.14347187350434],[-127.46102540879443,53.14349526098213],[-127.4608650082013,53.14351517210345],[-127.46056883351562,53.14353563862504],[-127.4602747668024,53.14356335812078],[-127.4599871043339,53.143613419798235],[-127.45971515505006,53.1436576746848],[-127.4594148118343,53.14369332297257],[-127.45925468220169,53.1436941775165],[-127.4591314155791,53.143677202668975],[-127.45900795881813,53.143627740187526],[-127.45883852645566,53.14357603839961],[-127.45870041855719,53.14359062427843],[-127.45859434965395,53.14363787861909],[-127.45840240479953,53.14377528753763],[-127.45823711479453,53.14392525055885],[-127.45813168526126,53.14399154760071],[-127.45800872510895,53.14403788891563],[-127.45773094299832,53.1441035033688],[-127.4574422145352,53.1441502099523],[-127.45715348512692,53.1441969068688],[-127.45689038678724,53.14428083363318],[-127.45666977016856,53.14440178293696],[-127.45645970803298,53.14452988160213],[-127.4562314259233,53.14464587700998],[-127.45600600124932,53.14476351327787],[-127.45579020265184,53.14488831933643],[-127.45558010136558,53.14501586098416],[-127.45537862423834,53.14514889041646],[-127.45519428625788,53.14529011801105],[-127.4550213933039,53.14543737258013],[-127.4548589200313,53.14558785171781],[-127.45471540506229,53.14574538619179],[-127.45457003158262,53.145902943313416],[-127.45447644155287,53.14598702167404],[-127.45439520366266,53.146048535197366],[-127.4541946469362,53.14618156008282],[-127.45398839029444,53.14631184855291],[-127.45378115021254,53.14644102807687],[-127.4535643734148,53.1465652769888],[-127.45332256167153,53.14666967034548],[-127.45305262926861,53.14674638344896],[-127.45276076897373,53.1467841515592],[-127.4524689122367,53.14682247473865],[-127.45230486534773,53.14684578071086],[-127.45217396548975,53.146852425798805],[-127.45189443991379,53.14689507877891],[-127.45163646388005,53.14699237827846],[-127.45156673073386,53.147034697647136],[-127.45141674688048,53.14711330621174],[-127.45133924734631,53.1471747716593],[-127.4512929976952,53.14727395564612],[-127.45127874869372,53.14737722967495],[-127.45128228815415,53.147453390052554],[-127.45132700793896,53.14758283621966],[-127.45135198086417,53.14762847629654],[-127.45143750181279,53.14780056223401],[-127.45146308935252,53.14786412504602],[-127.45152047629729,53.14798053281212],[-127.4516076067252,53.14814531916472],[-127.45167355685724,53.14832045109782],[-127.45173672526634,53.14849617295281],[-127.45179522470109,53.14867251685486],[-127.45185278085577,53.14884887229107],[-127.45192247822105,53.14902395806418],[-127.4519856296596,53.149199124112855],[-127.45203293405251,53.1493767258721],[-127.45207836625701,53.149554350575066],[-127.45212567143567,53.14973195226247],[-127.45217110441028,53.14990957689506],[-127.45221559397127,53.150087213075885],[-127.45225824563417,53.1502654365879],[-127.45230848813327,53.15044691986732],[-127.45235189631356,53.1506200866612],[-127.45240854797076,53.15079701760373],[-127.45244838439098,53.15097526658601],[-127.45251540151239,53.1511537467026],[-127.45255135904004,53.151328125473846],[-127.45261544536119,53.15150327956183],[-127.45271179695244,53.15166346915767],[-127.45285984779643,53.15182862713665],[-127.4528350869688,53.15200767797893],[-127.45270480535348,53.152169529189294],[-127.45263446241465,53.15222137743066],[-127.45251123960836,53.15228845202728],[-127.45220632491085,53.15235662676672],[-127.4519519124665,53.152449964767165],[-127.45171012060236,53.152556030263604],[-127.45145477668869,53.152649369618985],[-127.4512206653294,53.152760943071264],[-127.45093588483357,53.15281542881079],[-127.45062395616608,53.152870237690784],[-127.45050970442418,53.15295344494666],[-127.45047161649991,53.15301723246622],[-127.45041209547446,53.153193902526894],[-127.45026950108291,53.153351974982606],[-127.4500583355526,53.153477277274355],[-127.44980230708374,53.1535784657706],[-127.44952130315029,53.15363402236323],[-127.44923137972599,53.15367511023357],[-127.44906855944309,53.15370792617994],[-127.44889140409187,53.153759403479555],[-127.44872653429218,53.15386900334309],[-127.44858769622151,53.154027592425095],[-127.44848575231232,53.15419693612311],[-127.44838003864783,53.15436520520772],[-127.44824782162365,53.154525954053014],[-127.44811655250669,53.15465923099935],[-127.44790515807715,53.15480582413091],[-127.4477088170811,53.1549539091771],[-127.44752969823057,53.15511298959277],[-127.44737419300968,53.15524992398362],[-127.44723347249912,53.15540853426211],[-127.447118294999,53.155574676468426],[-127.44699745571594,53.15573921129],[-127.44682538194259,53.155885312545394],[-127.44663052226385,53.15602217112589],[-127.44643466013815,53.156157365138974],[-127.44623406848086,53.15629148699785],[-127.44602963027134,53.156422302546254],[-127.44582135319996,53.15655091437754],[-127.44561405736397,53.1566806434334],[-127.44540963432978,53.1568120134868],[-127.44520805014963,53.156944469131346],[-127.4450074319129,53.15707803324949],[-127.44480873855198,53.15721269413903],[-127.44461192083737,53.157347887609994],[-127.44441702831539,53.15748418683228],[-127.44422403041075,53.15762157425842],[-127.44406237073059,53.15774345487534],[-127.44385043813972,53.15790237370962],[-127.44367075750387,53.158045765662216],[-127.44349302074835,53.158190810076604],[-127.4433399412985,53.15834508337158],[-127.4432228443392,53.15851012400886],[-127.44315668418523,53.1586857497479],[-127.44304991776951,53.158851784829174],[-127.44287978238283,53.15900010637679],[-127.44268202118445,53.159135307831754],[-127.44245553376908,53.15925237306412],[-127.44220595819009,53.15935178904493],[-127.44194860330258,53.15944289898886],[-127.44168248674478,53.15952458521541],[-127.44140862500409,53.15959852072113],[-127.44116568826121,53.15970065068278],[-127.44093156814506,53.15981388808209],[-127.4407165582183,53.15993808973705],[-127.44052281789291,53.16008164766022],[-127.4405405276617,53.160243923846764],[-127.44064561396773,53.16041354572666],[-127.44035821975297,53.16033803447706],[-127.44006733695234,53.16029786938942],[-127.43977208433166,53.160266721809094],[-127.43948823381598,53.16021246634278],[-127.43920873531471,53.16014862742623],[-127.43892305523339,53.1600960693326],[-127.43864746026891,53.16006411518166],[-127.43833020957128,53.16004724380634],[-127.43804381137392,53.160000851329656],[-127.43775977851055,53.15994154664864],[-127.43746428573223,53.159930567646995],[-127.43716594475397,53.15994651765552],[-127.43687278797503,53.15997697218255],[-127.43654214446664,53.15997930935778],[-127.43628322367488,53.159942108988716],[-127.43599079338983,53.15991091778484],[-127.43569587693388,53.15994475263405],[-127.43539925073034,53.159928179076665],[-127.43510928149276,53.1598868701771],[-127.43480987786072,53.159898900435024],[-127.4345116070359,53.159889068383855],[-127.43421303752316,53.15989828992567],[-127.43391336824749,53.15990248568108],[-127.43363322639573,53.15995742835363],[-127.43349138093743,53.16011267280237],[-127.433132936961,53.160262695542364],[-127.43283788291166,53.16029259818531],[-127.43257077648204,53.16037315496451],[-127.43232499305007,53.160474745049356],[-127.4320744007361,53.160572475067916],[-127.43177676990732,53.16058167903888],[-127.4314800650144,53.16056285532388],[-127.43120322691236,53.160494482941495],[-127.43091670112223,53.160444157113],[-127.43062408203426,53.16040735180162],[-127.43035182295644,53.1603355602151],[-127.43013496387215,53.160212105497806],[-127.42986607276708,53.16015652572176],[-127.42955998902424,53.160165261472855],[-127.42926390968582,53.160192370480544],[-127.42896665905764,53.16021276911061],[-127.42867041279806,53.1602353961246],[-127.42837641351325,53.160268645730746],[-127.42808548011712,53.16030969304294],[-127.42779560759428,53.16035465351655],[-127.42750775488382,53.16040351559251],[-127.42722588314473,53.160463502154194],[-127.42695876495925,53.16054404626222],[-127.42670331861503,53.16063734076198],[-127.42645176802101,53.16073506128678],[-127.42622426037516,53.160850986380794],[-127.42599968587427,53.16097080235514],[-127.42572855183639,53.16104354758963],[-127.42543554883208,53.16107901007006],[-127.42513830914197,53.16109996364384],[-127.42483736033859,53.16112207278062],[-127.42461041726307,53.161227346400665],[-127.42459314513462,53.16107626965486],[-127.42442336612123,53.160986977442995],[-127.42418638442703,53.160877210698935],[-127.4239457178461,53.160769720109776],[-127.42368605197248,53.160682073030564],[-127.42335138219319,53.160620545984756],[-127.42312386220965,53.160541476120244],[-127.42288325686538,53.16043566809301],[-127.42263822207426,53.16033719241825],[-127.42241504438805,53.16021996770796],[-127.42220556605709,53.1600919364974],[-127.42198403815019,53.15996796740334],[-127.42175430103042,53.159850820276674],[-127.42149279093388,53.159763746449116],[-127.42121589530285,53.15969255454333],[-127.42092348151448,53.159661881899886],[-127.42062288356802,53.159666055163285],[-127.42032463192916,53.159684758685124],[-127.42002753086815,53.159709615575046],[-127.41973254686106,53.159741734872945],[-127.4194494389834,53.15979275267841],[-127.41918342340576,53.15987831321921],[-127.41890647772759,53.15994550937134],[-127.41861559383308,53.15998821815989],[-127.41831932469971,53.16001025470258],[-127.41802027798424,53.16000487293457],[-127.41772258310682,53.159984350257616],[-127.41742997867237,53.15994751232178],[-127.41714260394052,53.15989940479658],[-127.41684501879696,53.159881675692326],[-127.41654662092785,53.15986787327537],[-127.4162473730737,53.159856886324626],[-127.41594921927364,53.15985036803046],[-127.41564982934692,53.15986291439481],[-127.41537487198228,53.15979336221077],[-127.41512685436528,53.15968931271795],[-127.41487809583867,53.159590865730394],[-127.4145953231044,53.15953989998123],[-127.41430354121759,53.15949968267209],[-127.41400734669031,53.15946736174043],[-127.41370945163597,53.15944066350742],[-127.41341257577379,53.1594161936064],[-127.41311512631783,53.159402371262104],[-127.41281506577387,53.159394747257586],[-127.41251678508388,53.15938430417382],[-127.41222002241653,53.159363191815395],[-127.41192728116202,53.1593224153392],[-127.4116363167279,53.15927826404539],[-127.411342207918,53.159252635350384],[-127.41104241012636,53.159252848101545],[-127.41074317229533,53.159269862774494],[-127.4104520793828,53.15930638605423],[-127.41017913088638,53.1593813584168],[-127.40991586392917,53.15946574458423],[-127.40963797721062,53.159532930133466],[-127.40935808968965,53.15959677697332],[-127.40907821630891,53.15966062297078],[-127.40879928961176,53.15972501285468],[-127.40852232845799,53.159792184716714],[-127.40829003088308,53.15990645542681],[-127.40820285897446,53.16007446537625],[-127.40816666567532,53.1602536307776],[-127.40810412233888,53.16042975673463],[-127.4080057622762,53.16059902019552],[-127.40788284979676,53.16076297249471],[-127.40774481744275,53.16092262198732],[-127.4075925603936,53.16107739318106],[-127.40743553773244,53.16122998854308],[-127.40726999908523,53.16137987888759],[-127.40708259053619,53.1615199433766],[-127.40689516576194,53.161660007736245],[-127.40671821694204,53.1618049855799],[-127.40656120341586,53.16195757954316],[-127.40640895707553,53.162112913696426],[-127.40626427673617,53.1622703989773],[-127.40613944226835,53.16243325139269],[-127.40607590221252,53.162607702357015],[-127.40607677108555,53.16277466443493],[-127.40606033924377,53.16295695590137],[-127.40606355002339,53.16313845818549],[-127.40596423140627,53.16330773091334],[-127.40584321011819,53.163472222992276],[-127.40572782950684,53.1636377595875],[-127.40564265832089,53.163809669985],[-127.40569351235195,53.163986679742145],[-127.40582717988737,53.164146461448425],[-127.40597935432989,53.16429874363765],[-127.40597974369844,53.16447971450796],[-127.40593127930471,53.16465679211709],[-127.40582722868389,53.16482500012557],[-127.40571469895809,53.16499162330089],[-127.40561160954596,53.165160384445926],[-127.4054934025093,53.16532539832985],[-127.40535627543085,53.165485033605535],[-127.40522578581943,53.165646831137856],[-127.40510663176234,53.16581185579993],[-127.40499407813306,53.165977922592695],[-127.40488910980417,53.16614669629094],[-127.40481053502413,53.166320203909734],[-127.40477241178456,53.16649827867685],[-127.40474742369399,53.16667730919093],[-127.40471119168342,53.16685591727983],[-127.4046476762791,53.16703148723084],[-127.40456154968861,53.16720340773471],[-127.40445279262688,53.167371105213185],[-127.40433172012771,53.16753503099022],[-127.4042182483947,53.167701672480526],[-127.40406215163192,53.16785480722096],[-127.40383732833035,53.1679700910213],[-127.40354127440138,53.16800049627744],[-127.40324267466153,53.16801020405202],[-127.40294396681817,53.16801710633084],[-127.40264993012296,53.16805140311183],[-127.40238848607673,53.16813630554585],[-127.40216762656796,53.16825827178695],[-127.40199823907855,53.16840651381779],[-127.40186394732733,53.16856779633099],[-127.40179192025911,53.16874122397882],[-127.40182866849943,53.168917281211804],[-127.40200280789567,53.16905361943825],[-127.40226500306171,53.16916089007165],[-127.40250926418896,53.16926445493324],[-127.40275172385236,53.169369726050085],[-127.4029923330789,53.16947613025883],[-127.40323388805491,53.169582531741376],[-127.4034607902594,53.1696991830207],[-127.40366662043365,53.16983009589155],[-127.4038521626637,53.169971334528135],[-127.4040127371298,53.17012239869885],[-127.40413719497786,53.17028620882404],[-127.40424210441493,53.170454177324416],[-127.40434052413381,53.17062446393866],[-127.40441284144867,53.17079842196012],[-127.40452126658391,53.17107225104415],[-127.40463859847426,53.17110615387365],[-127.40490579733849,53.17113772240128],[-127.40513554401545,53.171170299639684],[-127.40542024829753,53.171333891774864],[-127.4055826324021,53.1714826821554],[-127.40563287557947,53.17155661098311],[-127.40570787457939,53.171557396940976],[-127.40605862471763,53.17173421551354],[-127.40637237234756,53.17195349118976],[-127.40678469910308,53.172432133103186],[-127.40741101621651,53.172891429686544],[-127.40788574965244,53.17324493772185],[-127.40802184807676,53.173307194244735],[-127.40822682164271,53.173439794897554],[-127.4084317404204,53.17357071044921],[-127.4086329876878,53.17370391056277],[-127.40882776392122,53.17383998439344],[-127.40901243040248,53.17398179025849],[-127.40919062199018,53.174125905168594],[-127.40935034273971,53.17427864877178],[-127.40946179242445,53.17444485835438],[-127.40953321147116,53.17461937973162],[-127.40958036611994,53.17479699595191],[-127.40960319995445,53.17497602230827],[-127.40960824475769,53.17515582522258],[-127.40957482913066,53.17533440060031],[-127.40950662547735,53.17550946345856],[-127.40941579066264,53.17568087798693],[-127.40929096255768,53.17584429691865],[-127.40916988455858,53.17600822688486],[-127.40906963726663,53.1761780676926],[-127.40900046727091,53.176352585813916],[-127.40895202042014,53.176530219114966],[-127.40890732078222,53.1767078077858],[-127.4088691904333,53.176885883040526],[-127.40882450857085,53.17706402724934],[-127.40875722874578,53.17723908741378],[-127.40868335982465,53.17741309633073],[-127.40859346200895,53.177584498815044],[-127.40851015175511,53.17775694345613],[-127.4083672996142,53.17791440767105],[-127.40816070998389,53.17804349380137],[-127.40790419062972,53.17813731367331],[-127.4076525113917,53.17823555787618],[-127.40742960990387,53.17835363046914],[-127.40724403785835,53.17849479180974],[-127.40707557540514,53.178643593795286],[-127.40689189358199,53.17878529685875],[-127.4067101063902,53.17892808874925],[-127.4065368885663,53.179074705163316],[-127.40638261369706,53.17922726415087],[-127.40630307251845,53.17940021799693],[-127.40629218284687,53.179580209700504],[-127.40629066251635,53.179760081148395],[-127.40616557195023,53.17991677559578],[-127.40588145770401,53.17997001176075],[-127.40559942528574,53.18002995514355],[-127.40537845699592,53.18015024185133],[-127.40521664064468,53.18030175906486],[-127.40509363792141,53.180464586358326],[-127.40499522300306,53.180634410207794],[-127.40489964422949,53.18080475612421],[-127.40484458636473,53.18098134487428],[-127.4047442764918,53.18115062613571],[-127.40462885836978,53.181316159885284],[-127.40455684312829,53.181490708355284],[-127.40451870515331,53.181668781568106],[-127.40450686249429,53.18184877512675],[-127.4045474524306,53.18202647035754],[-127.40463188956709,53.18219804244075],[-127.40480364600359,53.18234561065922],[-127.40498089549737,53.182489186850624],[-127.40511932992665,53.18264946767112],[-127.40515144513078,53.18282614260521],[-127.40510392300877,53.18300432724078],[-127.40512859768049,53.183182766860625],[-127.40537750583893,53.18345156497438],[-127.40546384176035,53.18362366969309],[-127.40552876383768,53.1837999551012],[-127.40557307475221,53.183977049881996],[-127.40548222081706,53.184148460426],[-127.40533748013696,53.1843064982836],[-127.40515664605502,53.18445040527873],[-127.4049681649995,53.18458991130223],[-127.40477207474396,53.18472615440614],[-127.40458071679862,53.18486401746104],[-127.40440750448082,53.18501175045281],[-127.40424386623665,53.185165528492576],[-127.4040658248131,53.185308835769064],[-127.40384655010737,53.18542461639471],[-127.40357936007013,53.1855090317032],[-127.40330637899173,53.1855884678059],[-127.40302942556899,53.185661226693085],[-127.4027659249706,53.18574391102048],[-127.40255729781668,53.18587020431039],[-127.40237557353066,53.186015793713445],[-127.40220613439078,53.18616459917213],[-127.40198215707069,53.18628043185753],[-127.40170012917316,53.18634148573662],[-127.40140381513379,53.186367960285814],[-127.40110465848174,53.186364776191944],[-127.40081014521758,53.186332400716616],[-127.40053144010096,53.18626734005834],[-127.40026899572275,53.18618415683243],[-127.40000025955808,53.1861088916374],[-127.39996715307481,53.18609976233962],[-127.39972883233602,53.18606559933904],[-127.39940174978366,53.1860683440395],[-127.39910317292974,53.18605449784856],[-127.39880381848128,53.18604570729018],[-127.39850601992069,53.18605539204381],[-127.39820775424127,53.186079084621696],[-127.39791555846806,53.186116707856236],[-127.39763148487718,53.186172728946524],[-127.39734848815617,53.186233219051346],[-127.39705825742301,53.186273622951006],[-127.39675873055661,53.18628780608552],[-127.39645983365779,53.18629245142664],[-127.39617057748124,53.186248796447934],[-127.39596561661212,53.18611729601752],[-127.39575607148711,53.185988655254384],[-127.39558156856758,53.18584279215629],[-127.39544412275325,53.18568304493962],[-127.39528168285914,53.18553312163823],[-127.3950694530455,53.18540842893536],[-127.39479611192667,53.185335447519265],[-127.39452278674436,53.1852624652929],[-127.39426477665775,53.18517081667839],[-127.39403048604264,53.185059273280146],[-127.39389307054375,53.18490064454054],[-127.39376305705107,53.184738566718394],[-127.39357668675947,53.184601805197836],[-127.39331688207585,53.18451240791563],[-127.39305704190029,53.184421898851696],[-127.39282005052264,53.18431374667761],[-127.39262247712895,53.18417823604476],[-127.39242401229352,53.184043856171485],[-127.39222738928434,53.18390888953409],[-127.39204182474325,53.18376763375422],[-127.39185071635092,53.18362924883425],[-127.39163477652875,53.183505158467504],[-127.391411488877,53.183385636458056],[-127.39119462202801,53.18326155619425],[-127.39097408517456,53.18314031567183],[-127.39077377490318,53.1830065195364],[-127.3905633346872,53.18287843606758],[-127.39034270975772,53.18275439839835],[-127.39010758692746,53.18264509834938],[-127.38982634327387,53.18258733105114],[-127.38952920847247,53.18255944104859],[-127.38923558298808,53.182524220735885],[-127.38904363340362,53.18238808244061],[-127.38887840994893,53.182238174190225],[-127.38872337394207,53.182084228614734],[-127.3885572235728,53.18193433975352],[-127.38841527140382,53.1817791197544],[-127.38833643093061,53.18160466525121],[-127.38822782745281,53.18143729218777],[-127.38807094095195,53.18128392326611],[-127.38789368039727,53.1811380813328],[-127.3877034866913,53.1809979937143],[-127.38749133898405,53.180874416260885],[-127.38723882746625,53.180777640991884],[-127.3869780752157,53.180686564730465],[-127.38674384684812,53.18057556225372],[-127.38652513760987,53.18045205993951],[-127.38631841601364,53.18032224908642],[-127.38614580276742,53.18017466478403],[-127.3859686086813,53.18003050462278],[-127.3857876860748,53.17988694365315],[-127.38564287732979,53.17973006840079],[-127.38553523378681,53.17956268164594],[-127.38548431357475,53.17943889046594],[-127.38534412991896,53.179222568738275],[-127.38527280286624,53.17904803321939],[-127.38510676816762,53.178900935226565],[-127.38482037412525,53.17885665481934],[-127.38452183475172,53.17884221621156],[-127.3842265303673,53.17881205058809],[-127.38395150502973,53.1787429908844],[-127.38369355729698,53.178651309957345],[-127.38344199401195,53.178553959832676],[-127.38318856115527,53.178457186840475],[-127.38291539180275,53.17838697351532],[-127.38262094798633,53.178354552674215],[-127.3823216116835,53.178344044464865],[-127.38202716069327,53.17836877299504],[-127.38174026316152,53.17842366892558],[-127.38145006765271,53.1784634700071],[-127.38115133747615,53.17847200200925],[-127.38071559921123,53.17841769178157],[-127.38041777451932,53.17839651092813],[-127.38012022639856,53.178412305985795],[-127.37983015744365,53.17845602819652],[-127.37954807982575,53.17851534501594],[-127.3792630701035,53.178570768716305],[-127.37897600348094,53.17862062162969],[-127.37868495096481,53.178663231852546],[-127.37839182309807,53.17869969771904],[-127.37809368834827,53.17869756485159],[-127.37780981148367,53.17864371766074],[-127.37753474286374,53.178572958302496],[-127.37727320840011,53.178485796654066],[-127.37699548416454,53.1784195493539],[-127.37671151929922,53.17836289459761],[-127.37642754049465,53.1783062482943],[-127.37614357715,53.17824959217273],[-127.37586227250343,53.178188431044326],[-127.3755827694349,53.17812499815857],[-127.37529875732841,53.178067228962966],[-127.37502192862026,53.177999281301844],[-127.37474443128932,53.177968885381766],[-127.37443860474895,53.17793153822874],[-127.3741402753834,53.17792322994464],[-127.37384111110137,53.17791830136468],[-127.37354260013313,53.17790439068086],[-127.37324385094712,53.17791178238599],[-127.37294490464072,53.17791356365454],[-127.37262796420848,53.17790939394267],[-127.37234786284803,53.17794289683796],[-127.37205031490667,53.1779586716233],[-127.37175163770749,53.1779682999225],[-127.37145316338093,53.17795550415163],[-127.37115541917937,53.17793654035835],[-127.37086271321668,53.17789903207435],[-127.37058700359799,53.177836664178194],[-127.37029570411424,53.177785126244686],[-127.37002694782154,53.17770587655895],[-127.36977631448693,53.177607357461426],[-127.36953117716493,53.177504856656974],[-127.36925883933445,53.17743068489429],[-127.3689963428987,53.17737096652526],[-127.36870108045716,53.17731219111959],[-127.36843462597388,53.17721721390325],[-127.3681524461221,53.17715716534934],[-127.3678571831333,53.17712751449063],[-127.36755831483802,53.17713153148567],[-127.36726195036523,53.17715456003614],[-127.36696880516006,53.17719044204789],[-127.36667775039459,53.17723302279332],[-127.36639366218022,53.1772884137929],[-127.36611260821152,53.17735048372117],[-127.36583056988961,53.17741088790984],[-127.36554951457084,53.177472965459096],[-127.36524747387837,53.17749493378667],[-127.36498345227406,53.17744587433767],[-127.36478785574596,53.17730973060502],[-127.36461167263442,53.17716496281407],[-127.36439490126608,53.17704083324081],[-127.36415250838209,53.176935492821016],[-127.36389643439331,53.17684207130502],[-127.36362230906703,53.176770148503],[-127.36335086146077,53.176694267665894],[-127.36306872839451,53.17663532716401],[-127.36277950054894,53.17658935005179],[-127.36250894606165,53.17651178061374],[-127.3622465616475,53.17642570760082],[-127.36197604523839,53.176349257121736],[-127.36168858620884,53.1762998952335],[-127.36139253060192,53.17627416405415],[-127.36109895429432,53.17623831825676],[-127.36081326278035,53.176185572149315],[-127.36053554339689,53.17611816598306],[-127.36025338208319,53.176058098571275],[-127.35997034888894,53.17600027273942],[-127.35981851423034,53.17585466248254],[-127.35974358625772,53.17568126554194],[-127.35963045196203,53.1755144750513],[-127.35948761107338,53.175356990326335],[-127.35926263757173,53.17523911346348],[-127.35902208744037,53.175132056169964],[-127.35876423386574,53.175040885341964],[-127.35851819370966,53.17493837243577],[-127.35826945947817,53.174839251726176],[-127.35801159119066,53.1747475146713],[-127.35774651686121,53.17466483344611],[-127.3574715045368,53.174593462590686],[-127.35718400811407,53.17462982055548],[-127.35698093912308,53.17475653444362],[-127.35685030785072,53.17492051817042],[-127.35674555636112,53.17510269054829],[-127.3566950000384,53.17527976840218],[-127.35666418204246,53.17545885227927],[-127.3566324165732,53.175637391167825],[-127.35658375074794,53.17581500306502],[-127.35650683379583,53.17598845620018],[-127.35641483608542,53.176159285016105],[-127.35632472926169,53.17633064789197],[-127.35625066445176,53.17650518871419],[-127.35618598912133,53.17668074251829],[-127.35612320208868,53.17685627463717],[-127.35602365154728,53.177025504156184],[-127.3559702713356,53.17720260482937],[-127.35590748263392,53.177378136783986],[-127.35586068563903,53.17755572675766],[-127.35582329355793,53.17773432959703],[-127.35575955901687,53.17790987223657],[-127.35567226725222,53.17808176692777],[-127.35555857536683,53.17824835182245],[-127.35543537258036,53.17841112785389],[-127.35539986995417,53.17859027359861],[-127.35534930354677,53.17876734158026],[-127.35529404157393,53.178943907447135],[-127.35525288018955,53.17912199725694],[-127.35520324201205,53.179299054486975],[-127.35513669909787,53.17947462872638],[-127.35507483305538,53.179650149385495],[-127.35502144584888,53.179827258339536],[-127.35497839039434,53.18000480484002],[-127.35495225416737,53.180183834117074],[-127.35494958636866,53.180363724396614],[-127.35495346979056,53.180543530732926],[-127.35495547951697,53.180723367455926],[-127.35494719242848,53.18090387779354],[-127.35491637793177,53.181082960496326],[-127.3548092447251,53.18125003400937],[-127.35462630613601,53.18139164513379],[-127.35438614044448,53.18150252492299],[-127.35422404688117,53.18165117633726],[-127.35410281067172,53.18181728979712],[-127.35399479677032,53.18198605789],[-127.35389717141994,53.1821575040863],[-127.35382960236207,53.18233084775296],[-127.35383717577162,53.18250893529119],[-127.35390963116322,53.18269356040821],[-127.35386558494216,53.18286944106307],[-127.3538239450462,53.183003823318394],[-127.35383964491227,53.18323056810192],[-127.35377118296377,53.18340559822429],[-127.35378969664059,53.18357404005438],[-127.35383235904969,53.18373547329271],[-127.3538370986274,53.18394217264775],[-127.35387351435023,53.184113206761566],[-127.3537970191269,53.18430065513606],[-127.35383552184133,53.18444925355865],[-127.35383680764974,53.18457755097428],[-127.35378332921401,53.18483981572123],[-127.35378345996466,53.18501967346908],[-127.35381541622618,53.18519803783975],[-127.35384551660218,53.18537698818075],[-127.35391672496343,53.185551550972406],[-127.35408924463204,53.185698617060915],[-127.35425434303885,53.185848564754316],[-127.3543683747463,53.18601367285282],[-127.35436097480651,53.18619248707849],[-127.35424820367231,53.186359623921255],[-127.35413259187868,53.18652567252089],[-127.35400846571304,53.18668957714516],[-127.3539248614447,53.18686030669388],[-127.35391936962907,53.187040219562725],[-127.35393449539482,53.18721990568355],[-127.35395336962567,53.187399539969505],[-127.35396662134464,53.18757924747816],[-127.35396298615794,53.187758583243145],[-127.35395843905295,53.187938485227],[-127.35395387720138,53.18811839632606],[-127.35395118658747,53.188297721239124],[-127.35395224745785,53.18847755906073],[-127.35395987640752,53.188657330746054],[-127.35396750513516,53.188837093451916],[-127.353972330137,53.189016897156485],[-127.3539733911153,53.18919673490796],[-127.35398851788153,53.189376420812145],[-127.35399802126778,53.18955616201857],[-127.35405895329313,53.18973139770394],[-127.35412363774611,53.189907155223004],[-127.35416591599959,53.19008540107794],[-127.35423804525487,53.1902593880327],[-127.35433259393146,53.19043032160036],[-127.3544624557551,53.190591877611],[-127.35462387681743,53.19074299622901],[-127.35479087127125,53.190892921327595],[-127.35501957493489,53.19100796683631],[-127.35527932045437,53.19109688322735],[-127.35554907920984,53.191176163954125],[-127.35582506873183,53.19124527850405],[-127.35610559450525,53.19130986709897],[-127.35638699374913,53.19137219489539],[-127.35666748218303,53.19143509723905],[-127.35694617194433,53.19150082548232],[-127.357217613069,53.19157391547111],[-127.35740778930105,53.191715171407246],[-127.35745074348489,53.19188500842629],[-127.35742835941423,53.19206399413273],[-127.35746969115637,53.192241693820584],[-127.3575232183268,53.19241981848948],[-127.35757113703613,53.19259799843652],[-127.3576237531419,53.19277668928862],[-127.35771916086954,53.19294480434677],[-127.3578610919461,53.1931017449266],[-127.35802350018997,53.193253959261554],[-127.35818776633745,53.19340559626117],[-127.3583362361085,53.193561896522],[-127.35845310579073,53.19372640310103],[-127.35854953884889,53.193897311656386],[-127.35864131151978,53.19406882939035],[-127.35874518730759,53.19423740226981],[-127.35887323932766,53.194400103750205],[-127.35903379971268,53.194552902665606],[-127.35918596890563,53.19470691823178],[-127.35926373246679,53.1948802725954],[-127.35928075838616,53.19505993576077],[-127.3592415084714,53.1952391151025],[-127.35924817714285,53.19541721171978],[-127.35931105318039,53.19559410754947],[-127.3593252747787,53.19577379385919],[-127.35934883708312,53.19595281715565],[-127.35939780563325,53.19613435483191],[-127.35948206963596,53.19630539319287],[-127.3596839276402,53.196429702605016],[-127.35991185589788,53.19654867425153],[-127.36008447728443,53.19669685090506],[-127.36021903860694,53.19685722599073],[-127.36034246091877,53.197021099553446],[-127.36045751212613,53.19718730132464],[-127.36056606431144,53.19735526298074],[-127.36066715436984,53.197524430825865],[-127.36075521213284,53.197696554219156],[-127.3608255756173,53.19787223358519],[-127.36087253376952,53.198049311317455],[-127.36088210440231,53.198230171300004],[-127.36084867385637,53.1983863165651],[-127.36074417009358,53.198577460488],[-127.36062860432035,53.19874519010658],[-127.3605375036703,53.19891600934038],[-127.36048507780612,53.19909366366401],[-127.36046836329918,53.1992737048283],[-127.36049009070967,53.19945331348359],[-127.36055949321634,53.19962844808857],[-127.36067547942092,53.19979408295886],[-127.36082496178668,53.19995148887934],[-127.36088184882439,53.200000141106514],[-127.36114055148657,53.200199994729616],[-127.36135464823654,53.2003252812756],[-127.3616062901625,53.20042267716725],[-127.36184788165194,53.20052804111092],[-127.36207761945184,53.20064361713681],[-127.36231741064846,53.20075124200316],[-127.36252696327651,53.20088106105143],[-127.36261028334069,53.201050987277185],[-127.36261609434082,53.20123133435168],[-127.36255808564515,53.201410174230894],[-127.36263476520256,53.201577944573025],[-127.36279263661447,53.20173356617474],[-127.36300853085311,53.201856032123764],[-127.36325199077594,53.20196080698883],[-127.36344492725357,53.20209809492849],[-127.36357394793117,53.20226021519995],[-127.36363681611336,53.202435987914875],[-127.36365105839072,53.20261567304361],[-127.36364183800936,53.20279507239041],[-127.36362324256466,53.20297457961865],[-127.36360277195718,53.2031541084062],[-127.36358510619526,53.20333360489051],[-127.36356745528353,53.20351310118219],[-127.36354321620523,53.20369211746282],[-127.36351522655913,53.2038711679162],[-127.36349098705453,53.2040501841517],[-127.36347426547046,53.204229669657934],[-127.36345941880514,53.20440913356727],[-127.36344550204791,53.20458858675539],[-127.36342972509651,53.204768061328636],[-127.36341677105216,53.2049480592062],[-127.363400978844,53.205127533913675],[-127.36335793281106,53.2053050810336],[-127.36326684405505,53.20547590159117],[-127.36315971815583,53.20564410062234],[-127.36308843540202,53.20581861068306],[-127.36304633532855,53.205996702526626],[-127.36302961108758,53.20617618778272],[-127.36303260145002,53.206356011008054],[-127.3630515049574,53.206535086389074],[-127.36310037512358,53.20671269644516],[-127.36323210547037,53.20687142392271],[-127.36341213685638,53.207015027953375],[-127.36351790572776,53.20718301846896],[-127.3635752062577,53.20735996651671],[-127.3636119014872,53.2075382811952],[-127.36363082589463,53.20771791197175],[-127.36364317679153,53.20789706257075],[-127.36365746026804,53.20807843207112],[-127.363603853159,53.20824825645946],[-127.36341048771546,53.20838943329956],[-127.3632872784579,53.20855333484138],[-127.36313709564763,53.208695699718334],[-127.36284430598411,53.20874949352457],[-127.3625514251861,53.20880048171623],[-127.36239244690164,53.20893174094168],[-127.36237775627163,53.209116240518],[-127.36234132713955,53.20929539606838],[-127.36236201394095,53.20947164482923],[-127.36247808849453,53.20963896178537],[-127.36255955350988,53.2098094735447],[-127.3625644532495,53.209990386070594],[-127.36260019814773,53.21016814694433],[-127.36268361220478,53.21034087733181],[-127.36276982953403,53.21051301960851],[-127.36285699244739,53.210685141975226],[-127.36294133583753,53.21085730566296],[-127.3630126243684,53.21103185162897],[-127.36306337493087,53.2112094397025],[-127.36309165759035,53.21138840675719],[-127.36311336916361,53.211567449375245],[-127.3631360443179,53.21174704566132],[-127.36308916741534,53.21192239487528],[-127.3628966021236,53.212059634681694],[-127.36263787952241,53.2121522559981],[-127.36236345168999,53.21222376632668],[-127.36207926390298,53.21228306184353],[-127.3617854559754,53.21230605296684],[-127.361493713704,53.2123060433312],[-127.36122142581819,53.21238537042361],[-127.36094602781087,53.2124557679843],[-127.36067747377498,53.21253505091814],[-127.36044184313006,53.212645887207806],[-127.36024546116708,53.212781489950174],[-127.36007955344937,53.212931310087534],[-127.35995535494727,53.213094663014694],[-127.359884994505,53.213269715377905],[-127.35989540178561,53.21344721159399],[-127.36003657234296,53.21360751020925],[-127.36020830069533,53.2137551405739],[-127.36039204787573,53.21389702088981],[-127.36058410245661,53.21403488802134],[-127.36077985534074,53.21417103600145],[-127.36097559131076,53.21430661908739],[-127.36116672228832,53.214445051699386],[-127.36135140622623,53.21458692875272],[-127.3615333035204,53.214729393340996],[-127.36171148996218,53.214873576670136],[-127.36187026281979,53.215026391612156],[-127.3619900113906,53.21519086056521],[-127.36206598177036,53.215364797126306],[-127.36211391272276,53.215542417614145],[-127.36214780304864,53.215720764213145],[-127.36216484932713,53.21590041599424],[-127.3621612646706,53.21608031384054],[-127.36215673150106,53.216259657801245],[-127.36216345476043,53.21643942817712],[-127.36217112366955,53.216619196632124],[-127.36216473277617,53.21679911769699],[-127.36214612490056,53.21697862334822],[-127.3621199964572,53.217157659604325],[-127.36206844884491,53.2173341820425],[-127.36199049425974,53.21750596083145],[-127.3619520573327,53.217681776710165],[-127.36186758360465,53.21785531562676],[-127.36182071256715,53.21803121936579],[-127.36182373471298,53.21821216164044],[-127.36178911969691,53.218390165652714],[-127.36173951416698,53.21856835082638],[-127.3617105255971,53.21874629013231],[-127.36172948331641,53.21892704925599],[-127.36180921076452,53.21910094253573],[-127.3619577298821,53.21925555138778],[-127.362167352036,53.2193842494569],[-127.36237881828457,53.219512370161134],[-127.3625468631455,53.21966115098833],[-127.36270102945699,53.21981570296383],[-127.36289592457864,53.21995353365296],[-127.36308613908297,53.2200914178532],[-127.36317977233055,53.220260103220326],[-127.36324089504755,53.22043869176402],[-127.36332154403044,53.220612017588714],[-127.36347096532948,53.22076493779299],[-127.36366592139996,53.22090444290013],[-127.3638284032862,53.2210549712556],[-127.36395471323077,53.221218241913135],[-127.3640633410178,53.22138619820427],[-127.36417304468283,53.221558624294985],[-127.36424244465223,53.221732078919146],[-127.36412932857154,53.22189026073744],[-127.36395405580419,53.22204131366349],[-127.3637480271552,53.222169743964656],[-127.36348438494831,53.22225738445215],[-127.36319589171576,53.222301598907876],[-127.3628984976807,53.22233191234215],[-127.3626080584395,53.2223744713538],[-127.36232675345829,53.2224382155059],[-127.36205423958197,53.22251250786428],[-127.3617846751155,53.22259123901483],[-127.36151802448522,53.22267330674403],[-127.36125814415982,53.222761454761766],[-127.36100800284184,53.22286069607145],[-127.36075110376787,53.222953846794915],[-127.3604863786712,53.22303756640653],[-127.36021973771211,53.223119631023856],[-127.35995501052489,53.223203349441555],[-127.35969129981197,53.223289296731195],[-127.35943241124382,53.223379105626044],[-127.35918707047215,53.22348221438962],[-127.35892626772359,53.22357092352351],[-127.35866255262593,53.223656868508016],[-127.35842960722344,53.22376599222163],[-127.35817362771333,53.22385913561345],[-127.35789125273483,53.2239195195554],[-127.3576019229134,53.223967656215805],[-127.35731044656421,53.22400740799739],[-127.35701271262987,53.22402762523432],[-127.35671710604139,53.224055661346796],[-127.35643474267701,53.224116041641565],[-127.35615927838764,53.22418699219845],[-127.35588867491838,53.2242634803763],[-127.35561812169242,53.22434109687943],[-127.35534556846416,53.224415364951504],[-127.3550671681269,53.224482420018646],[-127.35478278306309,53.224538901913974],[-127.35449440875203,53.22458757576682],[-127.35420499870924,53.22463346380697],[-127.35391249761044,53.22467098666934],[-127.35361904743215,53.224707954875235],[-127.3533316550527,53.22475829998623],[-127.35305024850098,53.224819781731625],[-127.3527767394082,53.22489349890205],[-127.35249926233207,53.22496053730373],[-127.3522025007149,53.22498185181989],[-127.35191377383616,53.22493191355048],[-127.35162335106237,53.22488760571405],[-127.3513261590542,53.22486634145131],[-127.35102809346715,53.22484732753391],[-127.35073427795876,53.224814252891974],[-127.35043592675542,53.22481541092451],[-127.35017515123687,53.2249057854608],[-127.34989667093882,53.22497115278384],[-127.34960827031188,53.225019259142314],[-127.34931483168955,53.2250567722859],[-127.34901915931302,53.22508311343274],[-127.34871978917766,53.22508203759006],[-127.34842331032243,53.22505346978759],[-127.34812613676597,53.225032762064814],[-127.34782805344143,53.22501317554423],[-127.34752936161618,53.225003689238505],[-127.3472300247993,53.22500316506211],[-127.34692988557195,53.22500714046872],[-127.34663085494037,53.22501669637782],[-127.34633298404778,53.22503297070837],[-127.34603639718547,53.22505987058331],[-127.34574695675317,53.2251051734047],[-127.34546846829424,53.22517053031926],[-127.34522506306085,53.225276384543264],[-127.34497771136688,53.22537668020593],[-127.3447139386853,53.22546202951876],[-127.34444910986674,53.22554347271777],[-127.34420184435079,53.22543982324682],[-127.3439053869352,53.225412373442545],[-127.34360901584829,53.22538715408401],[-127.34331178875917,53.22536474957779],[-127.34301279065943,53.225375425480195],[-127.34273038097257,53.22543520853152],[-127.34246465650487,53.22551834272848],[-127.34219793198031,53.225599802311244],[-127.3419125026483,53.22565345895544],[-127.34161358799183,53.22566636251586],[-127.34131403616749,53.22565966717437],[-127.34101469506781,53.225659136266906],[-127.34071804988635,53.22568490283822],[-127.34042022515642,53.22570283806707],[-127.34012573657695,53.225736978494126],[-127.33982903718375,53.22576106708026],[-127.33954365686817,53.22581639377668],[-127.3392542045821,53.22586168969001],[-127.3389688052329,53.225916459400324],[-127.33867833229293,53.22595895953349],[-127.33839294913517,53.22601428345436],[-127.33811154796443,53.22607684985983],[-127.3378330234286,53.22614162424417],[-127.33755653089035,53.22621085727854],[-127.33728886201953,53.2262923162861],[-127.33703764500184,53.22638984173317],[-127.33679803460458,53.226497876590635],[-127.33656321189936,53.2266092186463],[-127.33632551308727,53.226718907314556],[-127.33609165129603,53.226830802325765],[-127.33585009164796,53.226937171833576],[-127.3356046877196,53.22704023142528],[-127.33532916913695,53.227111124509285],[-127.33503456330601,53.227142456512524],[-127.33473431916252,53.22714359615776],[-127.3344448269289,53.227098671086864],[-127.33418669182703,53.22700689369476],[-127.33394133652789,53.22690375739251],[-127.33368958570584,53.226806304301206],[-127.3334224093047,53.2267252678144],[-127.33314892255275,53.22665214561097],[-127.33290997171139,53.22654389715093],[-127.33269121450549,53.22642085393838],[-127.3325362386435,53.226267394113236],[-127.33240912226482,53.22610466545431],[-127.33224762807566,53.225952963834395],[-127.33201053922733,53.22584357210719],[-127.33178167442134,53.225727364167035],[-127.33156383744333,53.22560374380539],[-127.33132491437145,53.22549605665278],[-127.33105768023027,53.22541277445471],[-127.33076188790456,53.22543570061333],[-127.33046735840817,53.22546870585293],[-127.33016821503541,53.225474859747024],[-127.32987264151035,53.22544512391903],[-127.32960458577034,53.22536520937259],[-127.32939597862598,53.22523644354153],[-127.32920488763034,53.22509795171443],[-127.32901842520025,53.2249571755385],[-127.32884306128842,53.22481122766442],[-127.32868810529847,53.22465776267836],[-127.32854426569227,53.22449969963441],[-127.32841254026457,53.2243386947814],[-127.32829380916725,53.22417361773624],[-127.3281927849445,53.224004424698705],[-127.32811881191488,53.223829890459506],[-127.3280607244806,53.22365349287151],[-127.3280026375311,53.22347709523849],[-127.32793240275386,53.223302510008914],[-127.32787806863983,53.22312607025233],[-127.32781905273033,53.22294968290289],[-127.32774135148327,53.22277631069015],[-127.32763752648563,53.22260714848745],[-127.32749927251015,53.22244733624324],[-127.32729073880007,53.22232024227684],[-127.32705270254709,53.22220973084466],[-127.32678740862482,53.22212753804152],[-127.32651932959301,53.22204649638033],[-127.32626394068207,53.221950744856905],[-127.32607852006635,53.221812749347734],[-127.3259598027554,53.22164711397291],[-127.32586717510908,53.221476148613945],[-127.32578203111947,53.22130396994776],[-127.32567728987048,53.22113538103462],[-127.32554555313422,53.220973808311854],[-127.32538785237723,53.220821499209976],[-127.32523383653295,53.22066746337727],[-127.32509186381697,53.220508245708274],[-127.32504413560228,53.220332295476624],[-127.32503099656219,53.220152587906966],[-127.32501973368508,53.21997286831124],[-127.32500284333562,53.21979320264158],[-127.32497001941026,53.21961427983013],[-127.32489513940548,53.21944030934356],[-127.32476993101385,53.21927698637294],[-127.32457800453794,53.21914018178209],[-127.32437769881595,53.219005155834985],[-127.3242618546284,53.21884116293104],[-127.32419257095547,53.218666008889414],[-127.3241345069984,53.21848960889344],[-127.32408485925727,53.21831255903943],[-127.32404176666415,53.218134871162164],[-127.32400521173638,53.21795598966454],[-127.32397241086092,53.21777762200599],[-127.32394335919771,53.217598656646075],[-127.32391429277523,53.21741969142958],[-127.3238992840738,53.21724001336825],[-127.32390587028222,53.21706064987189],[-127.32392369523207,53.21688116081721],[-127.32393871409444,53.216701703086564],[-127.3239387102058,53.216521848385526],[-127.32392839824631,53.21634211777884],[-127.32391338958685,53.216162430654734],[-127.3238965231414,53.21598332902884],[-127.32388056973011,53.21580366138692],[-127.32389558839277,53.215624203558605],[-127.32389558468768,53.21544434875419],[-127.32390969056041,53.21526546584771],[-127.32394725063794,53.21508687671528],[-127.32398575806951,53.214908832766575],[-127.32401299214986,53.21472980312862],[-127.32401390080777,53.21454938224054],[-127.32396239739953,53.21437234378715],[-127.32384932081105,53.21420664295337],[-127.32368234400798,53.21405667612879],[-127.32345451353744,53.21394099660094],[-127.32318565034055,53.21386276234732],[-127.32290953123542,53.213792443468826],[-127.3226388469248,53.2137159046822],[-127.32236541055657,53.21364108132064],[-127.32210918898386,53.21354700674364],[-127.3219377172585,53.21340324626975],[-127.32183858465365,53.21323290575437],[-127.32176839262509,53.21305832488223],[-127.3217159552046,53.21288129585416],[-127.32166725175327,53.21270366934854],[-127.32161108196104,53.212527246639624],[-127.32153622832708,53.212353273373864],[-127.32143152617908,53.21218467990508],[-127.32129892098943,53.21202367663234],[-127.32114682486103,53.2118690491222],[-127.32098451288856,53.211717905950096],[-127.32081941619049,53.2115679051938],[-127.32065805174233,53.21141675101544],[-127.32050687297894,53.211261556660936],[-127.32035846591046,53.211105210666894],[-127.32020823454815,53.21095000537438],[-127.32006168741599,53.210793073521614],[-127.3199300196415,53.210631502461744],[-127.31982532788116,53.210462898457536],[-127.3197542185925,53.2102883264939],[-127.31971020720573,53.2101106468074],[-127.31968492950419,53.20993163790149],[-127.31967181647174,53.20975192874084],[-127.31966525991993,53.20957215551189],[-127.31965964829722,53.209392362778416],[-127.31964937360496,53.209213186722494],[-127.31962781493002,53.20903358051021],[-127.3195884834613,53.20885528379768],[-127.31954915260394,53.20867699601651],[-127.31953418289248,53.20849787217122],[-127.31954453676639,53.208318466315426],[-127.31956425179114,53.20813895619586],[-127.3195839816504,53.20795944588873],[-127.31959526529637,53.20778002961881],[-127.31960371088982,53.20760008016968],[-127.31960654604408,53.20742020214677],[-127.31959155891519,53.20724051361886],[-127.31952888691183,53.207065847328415],[-127.31941488218297,53.206899031796674],[-127.31929903811823,53.20673335719657],[-127.31919623370244,53.206564731406225],[-127.31909435786005,53.206395539382044],[-127.318993412914,53.206226336901636],[-127.31889152369705,53.206057144839484],[-127.31878872282951,53.20588852759591],[-127.31869058292243,53.2057187288526],[-127.3185859085449,53.20555013227125],[-127.31845798038142,53.2053879529848],[-127.31830868876209,53.205232169890074],[-127.31814826991979,53.20508043686358],[-127.31797302594607,53.20493447136452],[-127.3177710033137,53.204801694444825],[-127.31754229151299,53.20468545771454],[-127.31729072805786,53.204588524258725],[-127.31702013013165,53.20451252787258],[-127.31673962897897,53.20444953194081],[-127.31645644803024,53.20439104739658],[-127.31617149738106,53.2043359435432],[-127.31588477697002,53.20428422036823],[-127.3155971470721,53.20423362717171],[-127.31530607901598,53.20419260075449],[-127.31501231319687,53.20415552107208],[-127.31471528532697,53.204134164802284],[-127.31441744452957,53.20414698962227],[-127.31412406747353,53.20418274028865],[-127.31383280862481,53.204226310702424],[-127.3135404301557,53.20426428997126],[-127.313249065779,53.20430449840554],[-127.3129647928525,53.20436143603209],[-127.3126863903602,53.20442671665903],[-127.31240999864198,53.20449589184735],[-127.31213753224168,53.204571181540274],[-127.31187285855569,53.204655357805336],[-127.31162663243526,53.204760055240214],[-127.31147088958481,53.204909693862795],[-127.31141922998383,53.20508843558226],[-127.31129851234353,53.20524832715824],[-127.31108869040415,53.20537783770413],[-127.31085202466218,53.20548858626052],[-127.31059116461094,53.205575514269626],[-127.31031479666925,53.20564580470938],[-127.31002947908144,53.205699949732455],[-127.30974622660364,53.20576022985556],[-127.30952282003736,53.20587531136752],[-127.30933778284388,53.206017991531745],[-127.30914983731088,53.20615789762232],[-127.30896283562083,53.20629779296403],[-127.30877682965206,53.20643935335218],[-127.3085984124527,53.206584200271735],[-127.30847776667596,53.206746893778906],[-127.30839307790306,53.20691983098129],[-127.30839516684746,53.20695678651415],[-127.30842602060761,53.20713573599185],[-127.30843345938693,53.2073155087659],[-127.30841180480168,53.20749447324587],[-127.30841332311022,53.20766478209056],[-127.30842344582781,53.20784059872587],[-127.30841668920489,53.20801604592582],[-127.30837578711174,53.20820979016962],[-127.30838978179197,53.20838949045619],[-127.30839909563319,53.208569233444365],[-127.308405604411,53.20874901635217],[-127.30841116782138,53.20892880071683],[-127.30841298096314,53.20910863543761],[-127.30840916792923,53.20928852329795],[-127.30839596110664,53.20946795906152],[-127.30837241521469,53.20964695316083],[-127.30834418802624,53.20982598995684],[-127.30831879857458,53.210005560159445],[-127.30830184045574,53.21018503725284],[-127.30828393701537,53.21036452476147],[-127.3082500657004,53.21054306796969],[-127.30820685191821,53.2107228348444],[-127.30814854825012,53.210899971336744],[-127.30805808503551,53.21106848930693],[-127.30788919359138,53.21121826745343],[-127.30743601501655,53.211366144080635],[-127.3072884495666,53.21147814276547],[-127.30715782420322,53.21156138458944],[-127.30695473272098,53.21166728088651],[-127.306717172862,53.21175058092201],[-127.30643456059708,53.21180243669275],[-127.30616025853976,53.211850282709825],[-127.30541635500457,53.211970535485605],[-127.30506443544063,53.21202595726134],[-127.3040825288852,53.212245755193656],[-127.30369224543502,53.21266969411378],[-127.30256416663143,53.213260871262605],[-127.30200676063956,53.213589717086684],[-127.30159359495813,53.21378923252698],[-127.30111710864779,53.214034819740284],[-127.30054130759447,53.214437261205745],[-127.30024453948072,53.21485343809356],[-127.29971945772797,53.21513597501863],[-127.29927427964236,53.215363291086405],[-127.29921402186405,53.21553931416464],[-127.29916880303735,53.21571630185812],[-127.29906322006885,53.21588273664862],[-127.2989199178523,53.216042870345504],[-127.29874906620074,53.21619209121849],[-127.29853250818083,53.21631884570004],[-127.29828167388332,53.2164297316676],[-127.29816600268138,53.21648142365228],[-127.29809526094466,53.2165606373109],[-127.29803098744327,53.216728303906336],[-127.29802542587792,53.2169138121297],[-127.29799820086625,53.21709676067903],[-127.29791059105166,53.217268044375416],[-127.29779938957392,53.217435104091415],[-127.29767591903043,53.217600056900764],[-127.29754296389551,53.217761195932404],[-127.29738724349623,53.21791473114234],[-127.29731162722658,53.21798783902407],[-127.2972741111223,53.218080135054144],[-127.29727486508251,53.21816584467502],[-127.29731984346277,53.2182555614223],[-127.2974756265661,53.21841016894616],[-127.29757448569724,53.218482487460136],[-127.29761457898351,53.21856609004427],[-127.29765947105646,53.21874488711645],[-127.29773423774712,53.21891887485851],[-127.2978211381653,53.21909104437471],[-127.29787816277667,53.21926746737849],[-127.29791555366798,53.219446346444016],[-127.29785858911289,53.21960777403921],[-127.2977977352496,53.219795572682195],[-127.29761152934788,53.21993375399437],[-127.29738915180332,53.22005553159164],[-127.29716293299724,53.220173980165555],[-127.29695006936767,53.22030013498786],[-127.29678359860611,53.22043978427929],[-127.29664707100012,53.22057686466103],[-127.29644058478596,53.22072703612187],[-127.29620838811417,53.220865162282884],[-127.29604220448249,53.22101432750645],[-127.29589312557786,53.22117059354026],[-127.29575161762767,53.22132901770307],[-127.29562530441531,53.22149344310347],[-127.29547212724573,53.22163854781733],[-127.29525663355798,53.22177088665621],[-127.2950150174104,53.22187773780398],[-127.29475605179803,53.22196909023768],[-127.29449799821161,53.222059867371584],[-127.29423898105992,53.222150098654986],[-127.29397806763089,53.22223922950605],[-127.29373164348684,53.22234221298858],[-127.29350729736494,53.22246175430821],[-127.29335392103435,53.22260069972395],[-127.29325663510629,53.22270204588101],[-127.2932309298865,53.22278188535371],[-127.2932054302046,53.22286844587197],[-127.29321825942102,53.2229506707909],[-127.2932757800175,53.22305201326285],[-127.29337049664409,53.22311148953697],[-127.29341902018238,53.22319500130989],[-127.29341344810527,53.22328862350851],[-127.29334120445142,53.223380741008995],[-127.29323871030397,53.22343508084246],[-127.29310664951167,53.22347349963299],[-127.29295063270014,53.22349537133065],[-127.29265962179987,53.22349070124666],[-127.29237126338148,53.22348096354215],[-127.29217795559244,53.22348026503432],[-127.29208773325739,53.223505900563254],[-127.29203076049745,53.22354518496856],[-127.29197877191196,53.223624745817],[-127.29193810759666,53.223706433280576],[-127.29182833069632,53.22386002427049],[-127.29166972639628,53.22401246187883],[-127.2915319965311,53.22417252462699],[-127.29139424837317,53.224332022633035],[-127.29128489552158,53.224499610779326],[-127.29120762207424,53.22467301688599],[-127.29115767941468,53.22485060743456],[-127.29110489560401,53.22502710833668],[-127.29098986056417,53.22519308166338],[-127.29091449487896,53.22536758725973],[-127.29082209044837,53.22553724033541],[-127.29076440060494,53.22561462150005],[-127.29065499037247,53.22568809251122],[-127.29042187527756,53.22579763803706],[-127.2901773831251,53.22590338947174],[-127.28995775711502,53.2260245574656],[-127.28976110420341,53.226160606957926],[-127.28955680876474,53.226292248084306],[-127.28934485411509,53.22641893416083],[-127.28913670174221,53.226547263790884],[-127.28905628944361,53.226618167843576],[-127.28901693989582,53.22671272158512],[-127.28901958267338,53.22689142443605],[-127.28901570271928,53.227071874529074],[-127.28899394078945,53.22725083373264],[-127.28898816762835,53.22743074858261],[-127.28897506045813,53.22761633691822],[-127.28900909892349,53.227716815930435],[-127.2890988660386,53.22776794972399],[-127.28923110080356,53.22779620175981],[-127.28938690558218,53.22779731317416],[-127.2896903608671,53.22777832476312],[-127.28985079700429,53.227777699883895],[-127.28993032212848,53.22783117661744],[-127.28996485654048,53.22788682814537],[-127.29000827388019,53.22792557482015],[-127.2900501123586,53.22803605358382],[-127.29018024771182,53.22814893309801],[-127.29021386156491,53.22832785458248],[-127.29023997103813,53.22850685771405],[-127.29017382346838,53.22867622414219],[-127.29006760324717,53.22885498196606],[-127.29005698049757,53.22902934680743],[-127.29005871613458,53.229209170916484],[-127.29009138470893,53.22938810262457],[-127.29013062781104,53.229566962767066],[-127.29016985428328,53.22974526727404],[-127.29020159313286,53.22992420902787],[-127.29021553246756,53.230103900251954],[-127.29021837071112,53.23028932395149],[-127.29017876111807,53.2304673567832],[-127.2900540016128,53.230622793656046],[-127.28984319447062,53.23075674668056],[-127.28960643378016,53.230870820782144],[-127.28932897102963,53.23094274739312],[-127.28906790961683,53.23102962684085],[-127.28890066212305,53.231176559983666],[-127.28889473414888,53.23135142920052],[-127.28890042253069,53.231537933342416],[-127.28886268279817,53.231715954181055],[-127.28882776666346,53.23189450008373],[-127.28876744180714,53.2320705163034],[-127.28868733719416,53.23224395058238],[-127.28859776689424,53.23241524657367],[-127.28851482196252,53.23258815576953],[-127.28843943287016,53.23276265910872],[-127.28835553871978,53.23293501370841],[-127.28824329534683,53.2331015087785],[-127.28810175291781,53.23326104297776],[-127.28797532293025,53.23342377444881],[-127.28792530307544,53.23359912230749],[-127.28789888408339,53.23377926069642],[-127.28780930733365,53.23395055595297],[-127.28771786845242,53.23412187134184],[-127.28765755299781,53.234298451355606],[-127.28752824470916,53.23445952817201],[-127.28738855454385,53.234618485425614],[-127.28729878420464,53.234783059035486],[-127.28709972028139,53.2349342519402],[-127.28696004385696,53.235093764253556],[-127.28682413623291,53.23525379126499],[-127.28669203182997,53.23541546211894],[-127.28656465923342,53.23557820200034],[-127.28643353485381,53.23574154717573],[-127.2863071420351,53.2359059524293],[-127.2862137312207,53.23607449089323],[-127.28619479224814,53.23625398268289],[-127.28625181056788,53.236431530004495],[-127.2863788484469,53.236596547566265],[-127.28648974910766,53.23678640089814],[-127.2864982257223,53.23694149916036],[-127.2865185587,53.237116082695955],[-127.28649216561867,53.23729734060606],[-127.28650609161193,53.23747703156575],[-127.28654248776576,53.23765536714726],[-127.2865891957429,53.23783302607215],[-127.28659842334415,53.238012767952895],[-127.2865663148426,53.23819128197343],[-127.28648995999374,53.238365238051955],[-127.28637864065921,53.23853172061883],[-127.28624934891502,53.238693924810505],[-127.28612196473127,53.23885666393503],[-127.28600213928226,53.23902156200363],[-127.28588515227764,53.239186984934825],[-127.28576816462976,53.23935241669762],[-127.28564928222946,53.23951730411155],[-127.28552852223677,53.239682211735634],[-127.2854020631268,53.2398449399117],[-127.28528960031547,53.24000471040884],[-127.2851179115878,53.24016176996092],[-127.28496774480936,53.24031691075229],[-127.28481475221655,53.24047151719358],[-127.2846579541361,53.240624488313806],[-127.2845011720847,53.24077802377893],[-127.2843443717316,53.24093099446004],[-127.28418946385858,53.24108450020206],[-127.28403364115803,53.24123858037256],[-127.28388062492614,53.24139262993081],[-127.2837304832668,53.241548889222315],[-127.28357937559372,53.24170403821884],[-127.28343301740301,53.241860820884376],[-127.28330464978374,53.24202300238362],[-127.28320183144507,53.24219219523908],[-127.28311979113865,53.24236508953448],[-127.28305565709584,53.24254058688389],[-127.28300941265485,53.242718131712934],[-127.28300171794372,53.2428975005409],[-127.28301843865599,53.24307716100572],[-127.28302577565981,53.24325693193309],[-127.2830303047124,53.24343672425657],[-127.28301885627806,53.24361613362611],[-127.28297262765037,53.243794242904166],[-127.28286222608794,53.24396071146161],[-127.28273763790835,53.244123980692585],[-127.28261969519225,53.24428997475309],[-127.28250367744876,53.24445706838972],[-127.28238858972286,53.244624151832454],[-127.28226875020994,53.24478960123071],[-127.28214320921553,53.24495231526738],[-127.28200818285276,53.24511233482579],[-127.28186079280816,53.24526687620268],[-127.28169539165513,53.24541545356141],[-127.28151384118577,53.24555804671027],[-127.28132182267098,53.245696261551934],[-127.28112222536437,53.245831761072864],[-127.28092357486135,53.24596781475749],[-127.28072965875644,53.246105493279515],[-127.28055286960715,53.24625026552526],[-127.28042070682238,53.246411928456496],[-127.28027430558498,53.24656870699835],[-127.28013740474154,53.24672873542831],[-127.28003549143276,53.24689735930826],[-127.27997328257574,53.2470750746467],[-127.27998874057629,53.24724466386676],[-127.28014647628014,53.24739983593491],[-127.28026505236849,53.24756439473496],[-127.28040503606316,53.247722563878625],[-127.28052082286779,53.24788770830941],[-127.28064306899788,53.248048865504835],[-127.28067011508254,53.24822897899347],[-127.28070759459163,53.24841234140086],[-127.28079899978154,53.24857831353551],[-127.28101306933681,53.24870262178464],[-127.28127052850067,53.24880237403312],[-127.2815440347944,53.248874494864054],[-127.28182665336062,53.24893698760339],[-127.28208009871854,53.24896674382529],[-127.28228794175064,53.2490401374323],[-127.28228450970437,53.24914381917007],[-127.28226170995232,53.24922754968176],[-127.28209188330995,53.24938569500235],[-127.28186445078497,53.249501891405735],[-127.28160038320894,53.24958654358409],[-127.28132166794691,53.249652860154846],[-127.28103396903853,53.2497013535606],[-127.28074339310751,53.24974762729999],[-127.2804577397879,53.24980169985517],[-127.28017205151666,53.249854642596134],[-127.27989038857493,53.24991651440905],[-127.2796282423433,53.2500028176894],[-127.2793873883758,53.25011018974839],[-127.27916190631774,53.250229156608256],[-127.2789248378014,53.25033759843197],[-127.27868015802588,53.25044276918729],[-127.27849661372291,53.25058257268765],[-127.27834168310976,53.2507371901772],[-127.27814770280094,53.250873743970395],[-127.2779432519313,53.25100537233044],[-127.27773594056711,53.25113534585268],[-127.27751712945921,53.25125815492356],[-127.27732317618296,53.251395271731845],[-127.2772353625196,53.2515654170351],[-127.27719858639064,53.251746218023435],[-127.27721709539273,53.25192361793325],[-127.27730332024834,53.25210477977421],[-127.27744968421867,53.25225671598582],[-127.27772284862806,53.252316523542866],[-127.27800545274063,53.25237846983416],[-127.278195637721,53.25251984827541],[-127.27840968568526,53.25264304080331],[-127.278687912588,53.25271511741605],[-127.27892951123248,53.252817842540544],[-127.27910946854848,53.252962126642764],[-127.27925135989608,53.25312083205886],[-127.27936531391711,53.25328712651788],[-127.2794484727105,53.253459911427235],[-127.27950078308682,53.253636946365],[-127.27953342401659,53.25381532291763],[-127.27955294274491,53.253994952550194],[-127.27954994919325,53.25417483395124],[-127.27951872976904,53.25435333450474],[-127.27947529786043,53.25453140200225],[-127.27944409287588,53.25470990234083],[-127.27942699412459,53.254889371045024],[-127.27941554438364,53.25506934355065],[-127.27940595480212,53.2552487312306],[-127.27940294524528,53.25542860371077],[-127.2794065142567,53.25560841419118],[-127.27940631142991,53.25578770058718],[-127.27939956207311,53.25596761334781],[-127.27938998932207,53.2561475655031],[-127.27938508539525,53.25632690254536],[-127.27938865413508,53.256506703980676],[-127.27939410059979,53.256686494113836],[-127.27938452739109,53.25686643723988],[-127.27933544318512,53.257044009592],[-127.27919268602098,53.257197940394065],[-127.27893920583386,53.2572931210464],[-127.27869059495711,53.25739384231999],[-127.27848134316538,53.25752271678661],[-127.27833675659605,53.25767890723316],[-127.27824712248793,53.25785075751415],[-127.27818106720156,53.258026271032065],[-127.27814515292742,53.25820482135218],[-127.27814401528966,53.2583846732962],[-127.27814287584683,53.258563969462564],[-127.27812389249105,53.2587434578444],[-127.2781312113834,53.25892322759938],[-127.27818257672922,53.25910027280746],[-127.27826107288197,53.2592736730717],[-127.27837410807075,53.25943996902055],[-127.27853550491294,53.25959118586888],[-127.27873676889234,53.259725156003604],[-127.27895004255154,53.259852282164196],[-127.27914941469106,53.25998571622177],[-127.27930991877952,53.260138053210596],[-127.27942199727637,53.26030380269162],[-127.27947901959254,53.260481351029775],[-127.27954444832103,53.260657132368415],[-127.27974712530487,53.26080621711419],[-127.27993818350824,53.26094422162344],[-127.28015605132963,53.26106792554664],[-127.28041426028174,53.261159263303206],[-127.2806986674203,53.26121614624338],[-127.28099685776677,53.26123253188851],[-127.2813758523575,53.26124972942195],[-127.28152466614074,53.26129518418133],[-127.28157420758016,53.26138037361755],[-127.2815784398672,53.26151982860486],[-127.28157041625848,53.261719368446606],[-127.28163773326332,53.26189512823678],[-127.28169087781842,53.261975231851146],[-127.28182660175183,53.262022503946355],[-127.28211103347498,53.26207993907308],[-127.2824041248947,53.26211374893851],[-127.28270328573184,53.26213068461819],[-127.28300232782694,53.26214370347967],[-127.28329991782653,53.26217073935824],[-127.28356710291845,53.26224796223728],[-127.28382809953385,53.26233758620692],[-127.2841159867528,53.262385450248374],[-127.28441285227012,53.26241921434218],[-127.284704948401,53.26245078829051],[-127.28499482642192,53.26247118030634],[-127.28527635243225,53.26243339483828],[-127.28555912270048,53.262374305256024],[-127.28582617361899,53.26229297485407],[-127.28606516918842,53.26218449956445],[-127.28626487706262,53.26205011287668],[-127.2864084516168,53.26189223867332],[-127.28648674417971,53.26171882899068],[-127.28658580749712,53.261548555582394],[-127.28678559808691,53.261417528601385],[-127.2870351596654,53.261316780313145],[-127.28729247147899,53.26122434685334],[-127.2875634528129,53.26114857236186],[-127.28784516247673,53.26108612709739],[-127.28813475761278,53.261035921325536],[-127.28842868828444,53.26100471669641],[-127.28872618813273,53.26102893411562],[-127.28900254188504,53.26109876630765],[-127.28882922284615,53.26114322910259],[-127.28868339487182,53.26119635726002],[-127.28856048899418,53.261261562078055],[-127.28845877059021,53.261406093998666],[-127.28835497745247,53.26157474412125],[-127.2882492886192,53.261742849967],[-127.28814554493557,53.26191317562739],[-127.28801518847175,53.262073140599036],[-127.287823148384,53.26221192916566],[-127.28761770922216,53.262343019131926],[-127.28740749686388,53.26247136368056],[-127.28721829612739,53.26261124091522],[-127.28710691575368,53.26277772205163],[-127.28707856317682,53.26295675771606],[-127.28709060548542,53.26313591096352],[-127.28715045380277,53.26331230456492],[-127.28716466652493,53.263501518947784],[-127.2871584023088,53.263665739173724],[-127.28711564932654,53.26383428151345],[-127.2870950119205,53.26401995652868],[-127.28708242392494,53.26419265370582],[-127.28710965941279,53.26437724465665],[-127.28716910951277,53.26457157084799],[-127.28730125426223,53.26471636113008],[-127.28744133810586,53.264875076148954],[-127.28759076085348,53.265032013361306],[-127.28774111390378,53.265188375545215],[-127.28790733633652,53.26534175950824],[-127.28804737341397,53.265498798012445],[-127.28811563757625,53.26567397911502],[-127.28809490087916,53.265856284709635],[-127.2879900614368,53.266021583777665],[-127.28785409234385,53.26618272952928],[-127.28770773542927,53.2663423115249],[-127.28757272788127,53.26650401121328],[-127.28747077932302,53.26667207518324],[-127.2874056289043,53.266845907177014],[-127.28736318106921,53.267024530690406],[-127.28733015837827,53.26720472822238],[-127.28729148286537,53.26738387548921],[-127.28724805339289,53.26756138902766],[-127.28720464049354,53.26773945812865],[-127.28716310541989,53.26791751578924],[-127.28712250117437,53.268095554354936],[-127.28708568468902,53.268274116547325],[-127.28705355523681,53.268452627874495],[-127.28702237418577,53.26863169363038],[-127.28694435374223,53.268783810081615],[-127.28681076960584,53.268930926376406],[-127.28660397045041,53.26904913801987],[-127.28633879257855,53.26913213439976],[-127.2861208597346,53.269254947927465],[-127.28594018513685,53.26939809141387],[-127.28579847822277,53.26955649968205],[-127.28564917310945,53.269712193253966],[-127.28549228638535,53.269865718735005],[-127.28534017143255,53.2700219980833],[-127.2851173733477,53.2701392686913],[-127.28486975252255,53.27024391715809],[-127.28465559980924,53.27036780740889],[-127.28448161741254,53.270515358120846],[-127.28430286115518,53.270660163400244],[-127.28412412244532,53.270806079751075],[-127.28395578772043,53.270954133250925],[-127.28382946272843,53.2711863267131],[-127.28383261877539,53.27132075479247],[-127.2836967649048,53.27145612181331],[-127.28343150793809,53.27159849968912],[-127.28315157236494,53.271691168111865],[-127.28287042521909,53.27174351030759],[-127.28258770741199,53.27180650924008],[-127.2823725407622,53.27192817399958],[-127.28218329784322,53.27206859811405],[-127.2819662695708,53.27219140272313],[-127.28175311304875,53.27231751768706],[-127.28155144726125,53.272451360751326],[-127.28133732474788,53.272576929578456],[-127.28110015347127,53.27268593904306],[-127.28085629591254,53.27279109388407],[-127.28061047628465,53.27289403730718],[-127.28036275809112,53.27299587120404],[-127.2801005037657,53.273083303602185],[-127.27985660955319,53.273187900935405],[-127.27966919682869,53.27332718054624],[-127.27949516797213,53.27347416812797],[-127.27932113763225,53.27362114648225],[-127.27914045523796,53.2737653994429],[-127.2789521420197,53.2739063727875],[-127.2787321323023,53.274024156489276],[-127.2784641318488,53.274108285483074],[-127.27814390654353,53.27411173444678],[-127.2778433269475,53.274112730000965],[-127.2775442865503,53.27410250307544],[-127.27724592356874,53.27408385976364],[-127.27694767779548,53.274068584952246],[-127.27664769131674,53.27405836595224],[-127.27634941180223,53.27404196052578],[-127.27605526195771,53.27400702594195],[-127.27576023369275,53.27397434110523],[-127.27547688014917,53.27392360184297],[-127.27521122641157,53.2738368152724],[-127.27492169747991,53.27379903144789],[-127.27462208505902,53.27376975458996],[-127.27433013797192,53.27377680691093],[-127.27404422921569,53.273828058487815],[-127.27374346579191,53.273822887308455],[-127.2734432598342,53.27383619338613],[-127.27314234155054,53.27385678520209],[-127.2728431005184,53.27387119992016],[-127.27254703992283,53.273865975272265],[-127.2722572785876,53.2738208996433],[-127.27196987015768,53.27376011090516],[-127.27168058058209,53.273730151276006],[-127.27139035403339,53.27379433308136],[-127.2711862789586,53.27391136714825],[-127.27111558436074,53.27409085065169],[-127.27107869494976,53.2742694073196],[-127.27108690113242,53.27444860152549],[-127.2711429421718,53.2746250423902],[-127.27112392183564,53.2748045281545],[-127.27104836848385,53.27497845202414],[-127.27093120652945,53.27514330150197],[-127.27072082900415,53.27526993092776],[-127.2704459516118,53.27534458629674],[-127.27016704905589,53.27541088473201],[-127.26987606537858,53.27544985472937],[-127.2695759697337,53.27543625740978],[-127.26927834540858,53.27541086304776],[-127.26898181974494,53.27539050298207],[-127.26868374871702,53.27541273814481],[-127.26839792299955,53.275467336533545],[-127.26812392149483,53.275540300814754],[-127.26786355462248,53.27562936173908],[-127.2676292422239,53.275741674553174],[-127.26743035692522,53.27587601881067],[-127.26725341445844,53.27602133354489],[-127.26709166690026,53.27617264410834],[-127.26689756530679,53.276309742094284],[-127.26667092784892,53.27642757354236],[-127.26642603246808,53.276531588481944],[-127.26616756781502,53.27662174575151],[-127.2658965309833,53.27669971091502],[-127.26561663017237,53.27676432383978],[-127.26534286713655,53.276845678311815],[-127.26515327722676,53.27697712265834],[-127.26505887842009,53.27715012257535],[-127.26503045625903,53.2773302717815],[-127.26473068442043,53.27732786374435],[-127.2644314644946,53.27734337722248],[-127.26415744369041,53.277416323315926],[-127.26388538427614,53.277492053634],[-127.26358940880085,53.277522097043985],[-127.26328980329791,53.277525286129226],[-127.26299223532628,53.27750212529923],[-127.26270157770146,53.27745871208991],[-127.26241176713313,53.277411936602896],[-127.26211848663766,53.277375272925426],[-127.26182344404857,53.277341997750675],[-127.26153278872815,53.27729858167587],[-127.261268141021,53.27721399445697],[-127.26106226116387,53.27708340618223],[-127.26086818246391,53.27693923712674],[-127.26063894237915,53.27684475255289],[-127.26034608372333,53.276821526167026],[-127.26014576169311,53.276688636294146],[-127.26003270001446,53.27652007504632],[-127.25992715428964,53.27635199864054],[-127.25985525008427,53.27617740673829],[-127.25974787763911,53.27601102583098],[-127.25955307753107,53.275873594319854],[-127.25934164305794,53.275745858831996],[-127.25909437603097,53.27564483057328],[-127.25883610805326,53.27555289151864],[-127.25857877101554,53.27546037730159],[-127.25832600625462,53.27536388779721],[-127.25807779751963,53.275262876398195],[-127.25782960473137,53.275161855354554],[-127.25758327662231,53.275060823005965],[-127.25737554015132,53.274930239131976],[-127.2571604774,53.27480646451722],[-127.25689219587382,53.274724702971746],[-127.25660952483516,53.274664947580526],[-127.25632241668536,53.27461364678754],[-127.25603264924625,53.274567411255596],[-127.25574195234216,53.274521740627925],[-127.25545487953322,53.274471557888944],[-127.25517129714471,53.2744123645167],[-127.25490671357389,53.27432888314611],[-127.25472776111216,53.27418679424985],[-127.25465117880331,53.27401223975835],[-127.25456151658868,53.27384007345049],[-127.25446253046076,53.27367023767152],[-127.2543953413635,53.27349559267037],[-127.25437592038782,53.27331595177072],[-127.2543987843582,53.27313699341475],[-127.25445646963263,53.27296046377927],[-127.25456232108056,53.27279238902909],[-127.25472411710149,53.27264165087419],[-127.25491631340738,53.272502916638985],[-127.25511141628212,53.27236694812337],[-127.25528933179582,53.27222164120383],[-127.25541221437483,53.27205786747725],[-127.2554510945514,53.27188041560957],[-127.25543072352983,53.27170079370687],[-127.25539253631797,53.27152247179302],[-127.25535998219125,53.27134353449538],[-127.25535744604684,53.271163723881386],[-127.25540855888352,53.270987263054],[-127.25550589120199,53.27081703629468],[-127.25563254148788,53.27065377808269],[-127.25577531354797,53.270495960639025],[-127.25592948430642,53.270341939676214],[-127.25609123423611,53.27019063506552],[-127.25624254484359,53.270035523408986],[-127.25638341620305,53.2698766047454],[-127.25651481447039,53.269715536203854],[-127.2565825081764,53.26955963305927],[-127.25648438876937,53.269387548409156],[-127.25634538616949,53.269229907373756],[-127.25612478816493,53.269108430479996],[-127.25592915156703,53.2689732339067],[-127.25579384171633,53.26881331212266],[-127.25570044647466,53.26864174155644],[-127.25567636987675,53.268463834895904],[-127.2556672504549,53.268283528928535],[-127.25564877471426,53.26810444245679],[-127.25562558026073,53.2679248501212],[-127.25561273863187,53.267745703999715],[-127.25560159168494,53.26756037262872],[-127.25540744356415,53.267443096597745],[-127.25513814933565,53.26735742470826],[-127.25489461419784,53.26725355161675],[-127.25465739561932,53.26714120292151],[-127.25450918418016,53.26698925962996],[-127.25439806737882,53.26682180159783],[-127.25423290703978,53.26666835187],[-127.25426161778284,53.26649660994608],[-127.25417614461409,53.26633840051441],[-127.2539105991498,53.266252130495744],[-127.25362712414345,53.26619461790499],[-127.25332892736141,53.266179274884195],[-127.25304435710783,53.26614810901243],[-127.2529800098624,53.26597342374459],[-127.2529896976489,53.265793483614836],[-127.25303326930768,53.26561598247071],[-127.25308812403638,53.26543891791469],[-127.25313167842663,53.26526086110124],[-127.25314419109431,53.265081446825974],[-127.25310791234679,53.26490310357518],[-127.25312230280227,53.26472366943838],[-127.25315174719127,53.26454464103839],[-127.25316520596098,53.264365216699275],[-127.25318054238524,53.26418577251019],[-127.25320340621211,53.26400680457575],[-127.25321874234388,53.26382736034836],[-127.25323876519667,53.26364786660038],[-127.25326255837504,53.26346833300793],[-127.25328823081445,53.263289344281716],[-127.25331297142067,53.26311035640932],[-127.25335748531981,53.26293284490248],[-127.25339821192125,53.26275481759015],[-127.25343423468915,53.262576275194576],[-127.25347120350786,53.2623977227741],[-127.2535128419476,53.26221855625018],[-127.25344753591231,53.26204332527529],[-127.25322616867886,53.261925768472544],[-127.25300744547252,53.2618025807645],[-127.25281366415514,53.26166512734625],[-127.25260881729022,53.26153450456349],[-127.25238733891729,53.26141303006937],[-127.25214931167417,53.26130349074258],[-127.25187396388621,53.2612335627547],[-127.25158949587811,53.26117325023835],[-127.25136722380208,53.26105626430178],[-127.25115680140438,53.26092738310806],[-127.25095372485502,53.26079282152023],[-127.25086046655274,53.26062460692708],[-127.25085419473604,53.26044482584444],[-127.25084606066326,53.2602650733423],[-127.25086517708465,53.26008614508251],[-127.25091249048607,53.259908048997815],[-127.2509109531747,53.25972933844851],[-127.25090655910527,53.259549546450444],[-127.2508871761042,53.259370468243105],[-127.25084245531683,53.25919221292762],[-127.25075840635891,53.259017742705375],[-127.25055921129415,53.25888705682422],[-127.25027504298687,53.25883626698036],[-127.24997345799282,53.25883104534468],[-127.24967956366885,53.25886383051882],[-127.24938164896714,53.25888770213299],[-127.24909043578317,53.25885267087601],[-127.24880962537188,53.2587878312603],[-127.24852526113656,53.25873031621999],[-127.24823998310971,53.258673374858546],[-127.24799103127441,53.258574582664856],[-127.24784000058195,53.25842098430033],[-127.24771867990769,53.258255859172486],[-127.24762723499337,53.25808482613147],[-127.24753485931856,53.25791379383572],[-127.24748925773423,53.257737231804356],[-127.24747175111914,53.25755757752495],[-127.2474373652351,53.257379212259146],[-127.2474095418544,53.25720022219325],[-127.24738828089484,53.25702060733175],[-127.247341716591,53.256842934783606],[-127.24724469343849,53.256673636312016],[-127.24712618874636,53.256508480900074],[-127.24697977043417,53.25635147134921],[-127.24684358868473,53.256191548257604],[-127.24672320950435,53.25602641213302],[-127.24656102730599,53.25587629082109],[-127.24633962878752,53.255755915889395],[-127.24609428839418,53.255651488231706],[-127.24582078212764,53.25557872136719],[-127.24552766790282,53.25554202524665],[-127.24524512331202,53.25548112186951],[-127.24501731737884,53.25536641434642],[-127.24477568761552,53.25526025979969],[-127.24452031636645,53.25516545409163],[-127.24425584141025,53.255080827975085],[-127.24398505182846,53.255004675849484],[-127.24371783639096,53.254922318318584],[-127.24346615831539,53.254825230619126],[-127.2432263633076,53.2547173684718],[-127.24300677542863,53.2545941716266],[-127.24283068918477,53.25444979356826],[-127.24268706924532,53.254291619995215],[-127.24251002124748,53.254146131020676],[-127.24227757709171,53.254032587407224],[-127.2420095554046,53.25395416082009],[-127.24171810229238,53.253909585437114],[-127.24142247447607,53.253882425521226],[-127.24112258917512,53.253869876130764],[-127.24082434286667,53.25388140442757],[-127.24053059116638,53.25391809210874],[-127.24023986110055,53.25396202634],[-127.23994390215647,53.253987530470184],[-127.23964325133564,53.25398115266002],[-127.23935547158341,53.25393317156398],[-127.23911850086283,53.25382528068436],[-127.23891277036836,53.253693523279594],[-127.23868221593989,53.25357996195081],[-127.2384241107563,53.25348741286646],[-127.23814521466731,53.25342252838976],[-127.23784867796432,53.25339593384778],[-127.23754809705073,53.253391782111585],[-127.23725312096822,53.25341895456408],[-127.23696941200029,53.25347793900833],[-127.23667959462246,53.25352073448584],[-127.23638059864126,53.2535384177951],[-127.23609174444057,53.25358233126564],[-127.23580109263827,53.25362849481837],[-127.23550932351023,53.253604641572345],[-127.23522049032974,53.25355274416326],[-127.23493797539773,53.25349238090191],[-127.23469368772865,53.25339015108476],[-127.23444479897866,53.25329133916006],[-127.23417945754056,53.253207820363684],[-127.23391862274026,53.25311808678999],[-127.23366696171124,53.253020422606276],[-127.23344561490873,53.25290002343627],[-127.23326676001174,53.25275566025775],[-127.23311575448179,53.252600357944324],[-127.23297589902195,53.25244101326051],[-127.23281097228106,53.252291457827624],[-127.23260899099105,53.2521585391536],[-127.23237292795893,53.252048375557045],[-127.23211760541751,53.25195410772035],[-127.23186321367464,53.2518592649356],[-127.23161065117628,53.25176271736536],[-127.2313654030475,53.251659379211084],[-127.23112472581234,53.251551502092894],[-127.23086309100987,53.25146569648519],[-127.2305761553746,53.251413768232695],[-127.23029090189048,53.25135509875527],[-127.23005672685879,53.25124491999561],[-127.22992999518948,53.25108431517001],[-127.22985822652308,53.25090913840504],[-127.2297808745372,53.250735139986524],[-127.2296820586189,53.25056584607932],[-127.22957762842614,53.250397175019074],[-127.2294909264973,53.250224949596905],[-127.22938372229339,53.25005742762097],[-127.22921604196374,53.24990901628669],[-127.2290584514139,53.24975265656137],[-127.229074113087,53.2495810553759],[-127.22926339889545,53.249439585194],[-127.22945193183502,53.24930428981032],[-127.22947111773826,53.249124808372116],[-127.22936664291807,53.24895445225061],[-127.22926223413657,53.248786336378856],[-127.22917925864033,53.248612960459795],[-127.22903030655762,53.248462669480936],[-127.22875666456444,53.24838258632664],[-127.22847331114959,53.24832389294041],[-127.22818466940892,53.2482770235451],[-127.22791032826083,53.248205345089126],[-127.22764599526609,53.24812292199922],[-127.2273493883309,53.248092376032645],[-127.22705474148931,53.24806517059937],[-127.22677044540964,53.248005927158296],[-127.22648535031618,53.24795172914425],[-127.22620647659546,53.24788569623525],[-127.22593029706019,53.247815161731566],[-127.22569256117777,53.2477106048928],[-127.22546735999661,53.24761713220235],[-127.22516181278854,53.24760236040162],[-127.22486289154801,53.24758919568344],[-127.22456378660789,53.24760181293569],[-127.22426691673249,53.247627287809735],[-127.2239730804188,53.247660009501686],[-127.22371080185106,53.247745078072796],[-127.22348027955027,53.24785670189072],[-127.22319663749633,53.24791733832164],[-127.2229079699149,53.24796681176362],[-127.22262124249997,53.248017949750626],[-127.22234345623048,53.24808636735666],[-127.22206759461254,53.24815644076078],[-127.22177360724918,53.24818412066255],[-127.2214769891148,53.24815356016849],[-127.22118386517784,53.248113434107054],[-127.22089931158135,53.24814269996745],[-127.22064772840133,53.24824108876763],[-127.22039705799392,53.24833835607566],[-127.22011729160825,53.248403418265205],[-127.21983158592961,53.248457900464096],[-127.21953477084138,53.248485048082],[-127.21923679903203,53.24850491902168],[-127.21893977401113,53.24852533525488],[-127.21864803088967,53.248565874682384],[-127.21836726464727,53.24862870193954],[-127.21808651511306,53.248692657827306],[-127.21782134529177,53.248775492843414],[-127.2175870651271,53.24888827298989],[-127.2173862377656,53.249021434329734],[-127.2172225206322,53.24917157795862],[-127.21711752714639,53.24934017647135],[-127.21707290632212,53.24951823107651],[-127.21707149290214,53.249697527574895],[-127.21709356761522,53.249877147794244],[-127.21707715202791,53.25005659818943],[-127.21699104024204,53.25022892005879],[-127.21683397642686,53.25038235626924],[-127.21660539579133,53.250497316819796],[-127.21635089981052,53.25059292921654],[-127.21607307020051,53.250660767475324],[-127.21577821210607,53.25069180272446],[-127.21547879212326,53.25069430645804],[-127.21518145541737,53.25067158107099],[-127.21488663733545,53.250638744544965],[-127.21459271762528,53.25060422180689],[-127.2143075884217,53.250548874418804],[-127.21404867225891,53.25045795748652],[-127.21384030993107,53.2503295547827],[-127.21364943636107,53.25018920293284],[-127.21338972266044,53.25010333952469],[-127.21309758829011,53.25006542436301],[-127.21280887118075,53.250015712662766],[-127.21251333758592,53.24999016541249],[-127.2122135687671,53.24998033890011],[-127.21191543751085,53.24996266028889],[-127.21163039634529,53.24991010242317],[-127.2113542279183,53.24983953405999],[-127.21107988925802,53.24976726113075],[-127.21080826225008,53.249691033624806],[-127.2105356904002,53.24961482411034],[-127.21031531042155,53.24949269628136],[-127.21007848564605,53.249385858224734],[-127.20980225907377,53.24931304586243],[-127.20952523159222,53.24924527884657],[-127.20924637496195,53.24917865034849],[-127.20897655302824,53.249100159274064],[-127.20871038928652,53.24901771301055],[-127.2084414836512,53.24893809984948],[-127.20817893301816,53.24885113355556],[-127.20792369856245,53.24875680438277],[-127.207682215986,53.24865113851234],[-127.20745174077365,53.248536387058415],[-127.20718827977197,53.248449992604286],[-127.20694218045188,53.248347169027774],[-127.20670168046442,53.248242602735544],[-127.20641025618707,53.24819626469094],[-127.20614959057399,53.24810871901553],[-127.20591082804755,53.24799965143119],[-127.20567487400382,53.2478899990518],[-127.2054333858962,53.24778376398207],[-127.20519650327712,53.24767412010057],[-127.20492482167916,53.24759564778244],[-127.20463292001241,53.247564997414834],[-127.20433206452194,53.247549559652605],[-127.2040383504095,53.24752116725196],[-127.20376588444753,53.247447738080766],[-127.2034790094294,53.24739574418384],[-127.20319568194407,53.2473364347792],[-127.20292047438336,53.247265272517076],[-127.20266157201853,53.24717377511652],[-127.20238381424656,53.24711215733392],[-127.20208903016096,53.24707873317833],[-127.20197405070002,53.24716225140549],[-127.20190864132108,53.247337713754426],[-127.20178937736948,53.24750139611446],[-127.20159519645716,53.2476389450722],[-127.20139339361029,53.24777208885288],[-127.20120966896825,53.24791401326205],[-127.20104682992411,53.248064134183075],[-127.20082304724134,53.248184053378274],[-127.20055701227494,53.24827078453349],[-127.20042907898215,53.248427265324445],[-127.20033159136507,53.2485974487001],[-127.20000104055337,53.248826015461304],[-127.1999797637226,53.24883688002255],[-127.1997626793614,53.24896176713748],[-127.19955892367607,53.24909268631877],[-127.19939325102011,53.24924283342784],[-127.19923800409639,53.249396227435696],[-127.19905619011627,53.24953981417058],[-127.19885432237115,53.24967126873906],[-127.198626691304,53.24978842564923],[-127.19845525374164,53.24993413859305],[-127.19830378723864,53.250088622538726],[-127.19809528938224,53.25021846642683],[-127.19786476545855,53.250332845259884],[-127.19762753559303,53.25044280930418],[-127.19740163113248,53.25055489954591],[-127.19714242260623,53.25065163836348],[-127.1969486343094,53.250770682389536],[-127.19697576895443,53.25096594141688],[-127.19698679703292,53.25115631618938],[-127.19674430416141,53.25124671812027],[-127.19659201640533,53.251272905537526],[-127.19648734207341,53.25132326364357],[-127.1963644713251,53.25142703368316],[-127.19629405671698,53.251460238492555],[-127.19614983738118,53.25153956349895],[-127.19603950897313,53.25155580726397],[-127.19575888251107,53.25142641673247],[-127.19566947954775,53.25138585920165],[-127.19549544312795,53.25134055205353],[-127.19534696791891,53.2513358810508],[-127.19520336872861,53.25133789273087],[-127.19495112346576,53.251315782882095],[-127.19460471985035,53.25131703087956],[-127.19426508876823,53.251359103643075],[-127.19397525486896,53.25136874429694],[-127.19365015003349,53.25139330572927],[-127.19342707913567,53.251439814615345],[-127.19329727106972,53.251497701519654],[-127.19325345489207,53.25157545712277],[-127.19320940933336,53.25174454063687],[-127.19315258643283,53.25192663395611],[-127.19307580619787,53.25209996391304],[-127.1929460828804,53.25226093594459],[-127.19276612814681,53.25240504955692],[-127.19264495312466,53.25256930573681],[-127.19256723917296,53.252743200430956],[-127.1925027132178,53.25291864771789],[-127.1924429034339,53.25309461227558],[-127.19241792646417,53.2532741439383],[-127.1924023358803,53.25345358122946],[-127.19238202839725,53.2536325011779],[-127.19236175169901,53.25381198552865],[-127.19234991536511,53.25399138502379],[-127.19236250043889,53.25417110377577],[-127.19238447216429,53.254350719200055],[-127.19240172746245,53.254529826242106],[-127.19242463005214,53.25470887650309],[-127.1924625211969,53.25488722031611],[-127.19248731731668,53.255066807272286],[-127.19251678394811,53.25524579149109],[-127.19258368839247,53.255420482070654],[-127.19271035406763,53.25558335781267],[-127.19286866808358,53.25573639541031],[-127.19303345180553,53.25588600622803],[-127.19318640494909,53.256048626061926],[-127.19338832742417,53.256182731595686],[-127.19359925945281,53.25630386485158],[-127.19370537494673,53.256470316744156],[-127.19380696687517,53.25667602266327],[-127.19389433734958,53.256810168435635],[-127.1939874393718,53.25698122405744],[-127.19406463962564,53.257154689613124],[-127.19413530822446,53.25732933238965],[-127.19422653512167,53.257500415636265],[-127.19434502553388,53.25767233588684],[-127.19451247168568,53.25781575954889],[-127.19462238104983,53.25798328390441],[-127.19470520235481,53.258156127665465],[-127.19474179468598,53.25832103762009],[-127.1949053822122,53.258493623644924],[-127.19505811414089,53.258647834998904],[-127.19516894337877,53.25881479378485],[-127.19527606508974,53.258982910313954],[-127.19539939316465,53.25915982746371],[-127.19542202655585,53.25932935980292],[-127.19540647820821,53.25950991710277],[-127.1954209395469,53.25968905152373],[-127.19548320800143,53.25986489850112],[-127.1956387241886,53.2600179605142],[-127.19581000270502,53.260163584689316],[-127.19592274727196,53.260331079173774],[-127.19606897379617,53.26048759575531],[-127.19623754194946,53.26063660813532],[-127.19640237246547,53.26078676950107],[-127.19654954868086,53.26094327591092],[-127.19670507197975,53.261095780679526],[-127.19688104493909,53.26124134699618],[-127.19693573182649,53.261414472863045],[-127.19684099341481,53.26158406826933],[-127.19672925957295,53.26175046453074],[-127.19663832245388,53.26192169765747],[-127.19646655912805,53.26205788975868],[-127.19632547732874,53.26214951699911],[-127.1961140420491,53.26227770031119],[-127.19590640791728,53.26240697437696],[-127.19567007238922,53.262551094806504],[-127.19550830553536,53.26267542392796],[-127.19524797582383,53.26276824226931],[-127.19495955006298,53.26279748351054],[-127.19464855574095,53.26279277158073],[-127.19435193303967,53.26276438370522],[-127.1940507672716,53.26274164330269],[-127.1938147616599,53.26263196817874],[-127.1935924527296,53.26250870882912],[-127.19331183320267,53.26248183365966],[-127.19300420347761,53.26249613208075],[-127.19270285543489,53.26253334125774],[-127.19243174190916,53.262610019028926],[-127.19216951242242,53.262702293880736],[-127.19188010673346,53.26273040800503],[-127.19158254120232,53.262735081871234],[-127.19127997342288,53.26272915600077],[-127.19097732661872,53.26272042442645],[-127.19068441629294,53.26272392881688],[-127.19037605763558,53.262712456265795],[-127.19008848047378,53.26270525647313],[-127.18977800754581,53.26268539536353],[-127.18948037962093,53.26268837935684],[-127.18918112566257,53.26269978711148],[-127.18887589230262,53.26266586940081],[-127.1886572078547,53.262670857085254],[-127.188334423706,53.26278053743181],[-127.18812316600491,53.26291599212187],[-127.18789439200039,53.263029211837946],[-127.18769821668467,53.26316675572728],[-127.1875114461032,53.26327115498277],[-127.18719853366756,53.2633650463847],[-127.18693240657889,53.263452866477095],[-127.18667006540423,53.263541768591715],[-127.18641919422242,53.263637834169806],[-127.18622649864682,53.26376525625061],[-127.18612145514521,53.26393774218291],[-127.18600601188719,53.26410753518738],[-127.18585716299478,53.26425804875371],[-127.18560920511656,53.26435800962375],[-127.18540340616296,53.264487237446986],[-127.1851871290742,53.264611531801954],[-127.1849033980007,53.26467487210362],[-127.1846669382072,53.264783124314356],[-127.18447456192843,53.26492230089488],[-127.18435611215229,53.265085954922654],[-127.18424910065039,53.26525509712888],[-127.18409752722815,53.26540956169824],[-127.18393080391743,53.26555968626393],[-127.18377831319647,53.265715280024764],[-127.18358488909487,53.26585110399507],[-127.18332339406895,53.2659371931891],[-127.18303659144516,53.265992151311224],[-127.1827426740149,53.266027575488124],[-127.18244565479698,53.26601933058991],[-127.18214731237161,53.26599709644424],[-127.18188269117697,53.26607256439261],[-127.18168206126938,53.266219661859964],[-127.18145860447194,53.26632329596481],[-127.18118449649289,53.266395495283355],[-127.18090063765341,53.2664549008415],[-127.18065220789236,53.26650499824213],[-127.18037186963053,53.26662319783924],[-127.18012293765503,53.266722591816624],[-127.17987790133063,53.266826993219695],[-127.17964611892677,53.26693518855111],[-127.17940766873849,53.26700646447467],[-127.17905311569133,53.26702343365325],[-127.17874608181435,53.26702648386047],[-127.17847208320163,53.26706954292004],[-127.17816295919434,53.26709894841173],[-127.17786360817838,53.26710807827514],[-127.17756442970419,53.26712393758397],[-127.17728040470914,53.2671777335524],[-127.17706882352661,53.26730308646827],[-127.17699567470395,53.267475811909215],[-127.17697343226394,53.26765474638607],[-127.17693203599627,53.26782098963737],[-127.17667106716067,53.26796084217669],[-127.17644714103383,53.26808183431753],[-127.17617895906044,53.268165167970125],[-127.17590112080147,53.268239068033914],[-127.17569699550276,53.268362668208596],[-127.17552541913109,53.26850891116853],[-127.17536723636877,53.268663420398994],[-127.17520906885376,53.26881905869766],[-127.17503756631208,53.26896754113141],[-127.17483744080467,53.26910061979889],[-127.17463262647514,53.26923374451711],[-127.17441627766793,53.26935745436358],[-127.1742142698858,53.26948999478005],[-127.17401131405077,53.26962253524586],[-127.17380644799509,53.2697539827114],[-127.17359489084086,53.269881569776935],[-127.17337951335008,53.270006388512655],[-127.17316030141876,53.27012901272794],[-127.17294014100419,53.270251081166016],[-127.17271903210693,53.270372593821634],[-127.17249695995166,53.27049355979946],[-127.17227390886282,53.27061341452315],[-127.17207168608725,53.270738665549665],[-127.17184410021127,53.27086416665088],[-127.17164842540812,53.2709887964986],[-127.17139992902848,53.27110553923816],[-127.17116633193099,53.27121765245737],[-127.17092891520934,53.27132756190853],[-127.17069151265822,53.27143802648829],[-127.17045219992409,53.271547397889734],[-127.17021283925227,53.27165508405046],[-127.16996965898682,53.27176056639022],[-127.16972450624905,53.27186270619402],[-127.16942996149457,53.271979333767845],[-127.16917819493653,53.27201206740553],[-127.16889620625211,53.272073110327106],[-127.16860541644144,53.272121913878514],[-127.16835727819314,53.272217921990006],[-127.168135245825,53.27234112005327],[-127.16791889304766,53.272465938037286],[-127.1677263651844,53.272603411266644],[-127.16756051748204,53.272754067527806],[-127.16738838411862,53.27288181988615],[-127.16716412008861,53.272856569159856],[-127.16677995447509,53.27272140626619],[-127.16653930751828,53.27261340845996],[-127.16625320745715,53.27255963117034],[-127.16595833653629,53.272528913796805],[-127.16572893033245,53.272419118727605],[-127.16563409244948,53.27225030112826],[-127.16557757986779,53.272074939908244],[-127.1654846212676,53.27190609475257],[-127.16528492993137,53.271783681681555],[-127.16496609756221,53.27176944867939],[-127.16466638623697,53.27176678779966],[-127.16436692240052,53.27177364338035],[-127.1640674272863,53.271778822265034],[-127.16376920332031,53.27179631326753],[-127.16346939980247,53.271790853536885],[-127.16335095302368,53.27178753270023],[-127.1631791927376,53.27175839838875],[-127.16293402691814,53.27165604007804],[-127.16267408373247,53.2715627809537],[-127.16260760502469,53.27146819095875],[-127.16245651199407,53.271404682837726],[-127.16222837646728,53.271306638218796],[-127.16201171762717,53.27118214491315],[-127.16182558733506,53.27107415963792],[-127.1615071909278,53.27100724136735],[-127.16105551307383,53.27108001062203],[-127.16073207653493,53.27106860808059],[-127.16038283178544,53.2710412144507],[-127.1601765933101,53.27098776226837],[-127.16005892026635,53.27080739399249],[-127.15996750184708,53.27072761263261],[-127.15974630459321,53.270539856686405],[-127.15953713859405,53.27041416521749],[-127.15931760385513,53.27035523905024],[-127.1590185884464,53.2703435933311],[-127.15871871865343,53.27033476089626],[-127.15841399234027,53.27032036372154],[-127.15811539236743,53.270323842702325],[-127.1578369553412,53.270377537065436],[-127.15757261657978,53.27046583723881],[-127.1573054211058,53.27055303521785],[-127.15702331768331,53.27061013381086],[-127.15673035424675,53.2706477246194],[-127.15643349632927,53.27068087071133],[-127.15614253268053,53.27072292250721],[-127.15585963307798,53.2707856195147],[-127.15558163483563,53.27085555573952],[-127.15529949640802,53.27091153004122],[-127.15500324498623,53.270932341299265],[-127.15468848469133,53.27092868126079],[-127.15440320791221,53.2709045649027],[-127.15410316656254,53.270889555308024],[-127.15380060459901,53.27085159507277],[-127.15351589296831,53.27081346953802],[-127.15321751650639,53.27079059814879],[-127.15292037951968,53.270813653778866],[-127.15262146954416,53.27080590811622],[-127.15232327828627,53.27082449055448],[-127.1520411968799,53.27088269748375],[-127.15179218852363,53.270982596382666],[-127.15154995840224,53.27108970762869],[-127.15131055212508,53.271197355691825],[-127.1510750079062,53.27130889196649],[-127.1510355517477,53.271205625542116],[-127.15104408706453,53.271036349913636],[-127.15114185553816,53.270866773501794],[-127.15119460993331,53.27070043035966],[-127.15122241387446,53.270514160515255],[-127.15120906787394,53.27033501271427],[-127.15113857021608,53.270160901197016],[-127.15127516502265,53.27000326431347],[-127.15128255379628,53.26982615629054],[-127.151223248795,53.269649139475504],[-127.15114246087484,53.26944206898748],[-127.15102212833968,53.26930037898486],[-127.15087408417367,53.26914158562386],[-127.15059963214495,53.26906581302257],[-127.15031824928006,53.26897666117271],[-127.15004018045232,53.268905960042936],[-127.14975858541635,53.26884370053907],[-127.1495504040721,53.26871798219084],[-127.14938283885402,53.26856609898927],[-127.14922648188373,53.26841186604345],[-127.14908502808562,53.26825300665176],[-127.14898466261963,53.26808535013091],[-127.14894877574265,53.26790585546647],[-127.14892980619763,53.26772620595444],[-127.1489559231944,53.26754723142796],[-127.14898950610062,53.26736595258603],[-127.1489893618151,53.2671883527651],[-127.1487746256304,53.267062696515175],[-127.14852671268781,53.26696089115398],[-127.14827606783086,53.266861917408434],[-127.14806971768397,53.266733937783115],[-127.14787811810274,53.26659573076198],[-127.1476883214518,53.266454700304074],[-127.14755072714873,53.26629916316739],[-127.1475401919787,53.26611886705951],[-127.14751089329823,53.26593931710602],[-127.14745724298211,53.26576223461221],[-127.14740359335946,53.26558516103954],[-127.14736589825927,53.265407368442524],[-127.14734035629563,53.265227773104584],[-127.1473176391603,53.265048715158436],[-127.1472883572648,53.264869720664684],[-127.14723565591507,53.264692637783426],[-127.14714460387204,53.26452151908584],[-127.14698825495935,53.264366727252614],[-127.1468105174927,53.264219976360145],[-127.14686224288864,53.26404972738255],[-127.14700906294581,53.26388807882566],[-127.1471003423235,53.26372192033018],[-127.14706153651991,53.26353798004008],[-127.14702959980914,53.26336516921709],[-127.1469721690538,53.263187011340584],[-127.1469194708864,53.263009919202275],[-127.14686486529244,53.262832289703546],[-127.14686663806118,53.26265523574399],[-127.14675005261388,53.2624776494556],[-127.14666063820715,53.26233172985431],[-127.14656525673482,53.26217409825059],[-127.14645665962595,53.26197906243861],[-127.146335892622,53.26181999966626],[-127.1461991584677,53.26166053525014],[-127.14620934569808,53.261482279447115],[-127.14629859329706,53.26131053853337],[-127.14621323111574,53.26114104916958],[-127.14611190187907,53.26097171397097],[-127.1459454326182,53.26082374132159],[-127.14574548567225,53.26068840811463],[-127.14547781394673,53.2606176051558],[-127.14518290470879,53.26058179062797],[-127.14500930917013,53.260447887069496],[-127.14487159245986,53.26028674537025],[-127.14466894894278,53.260155362576114],[-127.1444755280027,53.260017732281426],[-127.1443369138183,53.259858274864555],[-127.14427954459752,53.259681791170905],[-127.14413914565891,53.2595251564263],[-127.1439475612995,53.25938582234651],[-127.14380655200233,53.25924151845287],[-127.14367232597338,53.25907025730269],[-127.14348262280198,53.258930904340275],[-127.14330959176338,53.25878299124345],[-127.14308573960844,53.258665811746],[-127.1428434161384,53.258559458872334],[-127.14260749128266,53.25844688568741],[-127.14234170132102,53.25837604867273],[-127.14204871824079,53.258340772669925],[-127.14175208665245,53.25831001300879],[-127.1414553949463,53.2582764564514],[-127.14116502525079,53.25823386548525],[-127.14087722311264,53.25818229418852],[-127.14059033746703,53.258129583937134],[-127.14026728493543,53.25791979661357],[-127.14011112162737,53.257770031592926],[-127.14002107488619,53.257599462299595],[-127.13994682909612,53.25742313867182],[-127.13984644993496,53.257252668506],[-127.13974043907228,53.257082252350166],[-127.13962142273239,53.25691700769751],[-127.13943793405443,53.256798313180965],[-127.13920475163933,53.256717080628206],[-127.13894953339022,53.25661980761644],[-127.13865115926527,53.25659297426681],[-127.13834850724815,53.256581877008045],[-127.13809111698768,53.256508153250735],[-127.13796010867712,53.256350856447526],[-127.13793615789031,53.2561589270118],[-127.1379747215968,53.25598712247155],[-127.13812063159259,53.25582661350858],[-127.13814497001202,53.25564934290004],[-127.13814479601805,53.255468945968595],[-127.13814272943348,53.25528744668875],[-127.13815572755497,53.255108043841844],[-127.13817625022077,53.25492856878553],[-127.13820052746783,53.25474961344704],[-127.13822759816134,53.25456951975833],[-127.13833296487041,53.254402676413825],[-127.13848652851934,53.25424769580681],[-127.13868668313617,53.254114677567046],[-127.13891163472977,53.25399542254373],[-127.1391108254302,53.253861292311115],[-127.13926722299394,53.253707403881315],[-127.1393555664563,53.25353624101658],[-127.13938359282571,53.25335725820629],[-127.13935810731626,53.253178224603985],[-127.13927836095642,53.25300643504136],[-127.13907573955238,53.25287392199636],[-127.13881697120647,53.252782841031305],[-127.13853640114827,53.25271942523976],[-127.13825042634018,53.25266390407976],[-127.13796352133237,53.25260895588615],[-127.13768116692428,53.2525489166761],[-127.1374070121579,53.25247926953582],[-127.13715644912688,53.25237915135937],[-127.13694457154769,53.25225120541286],[-127.13678372512732,53.2521003602775],[-127.13663023817712,53.251944397720756],[-127.13643042345147,53.25181073283003],[-127.1361973465817,53.25169755501709],[-127.13596428597889,53.25158437659579],[-127.13573660241545,53.25146218232101],[-127.13552003318263,53.25133372301016],[-127.13537511429385,53.251181603017734],[-127.1352730116065,53.251015627202385],[-127.13518392990377,53.25084504472516],[-127.13510509075053,53.2506715584534],[-127.13503183894193,53.25049578664028],[-127.13496136570281,53.250318858732],[-127.13488904619382,53.250143077889504],[-127.13481205665708,53.249968453196665],[-127.13472855038661,53.24979557600199],[-127.13466001718119,53.24962087925983],[-127.13458772996839,53.249446209410905],[-127.1344911608684,53.249276262676],[-127.13437965041703,53.249109255490616],[-127.13427281113773,53.24894108303518],[-127.1341837226894,53.24876993503889],[-127.13410863085741,53.24859585639768],[-127.13404196412642,53.24842057665834],[-127.13400432565925,53.24824222260634],[-127.13394231510497,53.2480657777814],[-127.13381313542509,53.247904541382205],[-127.13365134061854,53.24775258049558],[-127.13347377949525,53.24760804876618],[-127.13328324555005,53.24746925214344],[-127.13306036710773,53.247349803591604],[-127.1328346819541,53.24723094615968],[-127.13261733222916,53.24710752674178],[-127.1324092189225,53.24697841628909],[-127.13220573208933,53.246846464565046],[-127.13199108906117,53.246719091970846],[-127.13185223561254,53.24654674083799],[-127.13187390711575,53.24637454300063],[-127.1318607257002,53.246198186808584],[-127.1318080071456,53.24601717015178],[-127.13178631218166,53.245838098412825],[-127.13177586451428,53.24565836356727],[-127.13178983271283,53.24547895148675],[-127.13183953839334,53.2453019951057],[-127.13189957464395,53.24512550482373],[-127.1319417418022,53.244947508772405],[-127.13194257034117,53.244768221999514],[-127.13193024508146,53.24458849601827],[-127.13194233532667,53.24440910173219],[-127.13195723349382,53.24422912486331],[-127.13197025447795,53.24404972165527],[-127.13198422131921,53.243870309400315],[-127.13199725709346,53.24369090601221],[-127.13201496238192,53.24351089330688],[-127.13200640610108,53.24333169597024],[-127.1320119041594,53.24315180870731],[-127.13201803283695,53.24296014573812],[-127.13204545226468,53.24279236567012],[-127.13211025892153,53.24261863518977],[-127.13222877287279,53.24245222643181],[-127.13241940208837,53.24231539128527],[-127.1325806759756,53.242168742735544],[-127.13267462287679,53.24199640983207],[-127.1327670226841,53.24183698178155],[-127.13277308767678,53.24164307822453],[-127.13280867120412,53.24146457962519],[-127.13285647619226,53.2412870847481],[-127.13290521167013,53.24110958094264],[-127.13295585344127,53.240932614651165],[-127.13299706606786,53.24075462686873],[-127.13301949534707,53.2405756890471],[-127.1330259194832,53.24039522785419],[-127.13299297683987,53.24021682797444],[-127.13288618058601,53.240049773836986],[-127.1327628398687,53.23989520308447],[-127.13253048419213,53.239736070853716],[-127.13228152429306,53.2396572076951],[-127.13199581116807,53.239608392477855],[-127.13169766671825,53.23958546661658],[-127.13141998757598,53.239520886410475],[-127.1311869919168,53.23940769802365],[-127.13099741819774,53.23926832366614],[-127.13084219772259,53.239114619707586],[-127.13067397608945,53.2389666330201],[-127.13041439537484,53.23887667125323],[-127.1301174574468,53.23886381443101],[-127.12981957158064,53.238885701271265],[-127.12952476238833,53.23891707778793],[-127.12923196438012,53.23895404585851],[-127.12893824985977,53.238991577691486],[-127.1286464414474,53.239030211145796],[-127.12836068144566,53.23908447326214],[-127.12809445037675,53.23916711705941],[-127.12784941546016,53.23927029230298],[-127.1276111199292,53.23937957014665],[-127.12738429257253,53.23949713770098],[-127.12723891058558,53.23964137830652],[-127.12706223122491,53.23984419084701],[-127.12686450165064,53.239926745468225],[-127.12657599534373,53.24001912608524],[-127.12629448715018,53.240092391118516],[-127.126015666161,53.2401605832511],[-127.12572326511574,53.240177369861335],[-127.12542675789044,53.24014600450854],[-127.1251263275226,53.240143252717004],[-127.1248233579684,53.24015060869355],[-127.1245166348044,53.24015856421664],[-127.1242225798496,53.240183762025296],[-127.12397984563096,53.24026785887193],[-127.12378472247636,53.24041313119693],[-127.12354064525564,53.24051796448514],[-127.12326564514329,53.24058891958502],[-127.12298479032941,53.240652086023445],[-127.1227019240722,53.240709668363664],[-127.12241120753411,53.24075499889606],[-127.1221173554326,53.240788032955926],[-127.12182054647782,53.240815491789114],[-127.12152466802516,53.240842941075954],[-127.12122543139417,53.240850252503776],[-127.12092594219564,53.24084748113035],[-127.120627027382,53.240831257664446],[-127.12033238140744,53.240799306227075],[-127.12004036565963,53.240760050502566],[-127.11975362430947,53.240707289391665],[-127.11948040334353,53.24063311957694],[-127.11921811729398,53.24054707629111],[-127.11896861378183,53.240446901189046],[-127.11872188967571,53.24034558782072],[-127.11847513686108,53.240243144759454],[-127.11805485540793,53.24000340522786],[-127.11779315148257,53.23990334270303],[-127.11757773050213,53.239778757352845],[-127.11738728407947,53.23963993462989],[-127.1172560370949,53.23950390640375],[-127.11706968494613,53.239342634751054],[-127.11682802448921,53.23921941570552],[-127.116579421047,53.23911755090134],[-127.11632628218167,53.23902188650217],[-127.11607864188476,53.238920576321576],[-127.11583281997088,53.23881756329946],[-127.11559528911165,53.23870830458676],[-127.11538914587932,53.238579146052004],[-127.11522653710598,53.2384277326382],[-127.11507229302039,53.23827343463405],[-127.1148994606914,53.238126034143505],[-127.11461485670883,53.23808220460982],[-127.11431682061692,53.23809845144596],[-127.11403791961158,53.2381643841638],[-127.1137880538879,53.23826309355325],[-127.11354684586473,53.238370120312496],[-127.1133075281843,53.238477693544944],[-127.11309785122805,53.2386062774097],[-127.11290342301997,53.238743125950315],[-127.11268801003025,53.238867836676185],[-127.11246306512456,53.238986478187286],[-127.11223811880407,53.23910568399338],[-127.11202079618798,53.23922873510296],[-127.11185390556588,53.239378204760264],[-127.11172490217731,53.23954076488389],[-127.11158073649112,53.23969786451057],[-127.11140534525927,53.239845727927495],[-127.11119565612749,53.239973752569426],[-127.11095338291146,53.24007686655051],[-127.11069486903537,53.24016892722225],[-127.11043059112335,53.240255994598776],[-127.11016628292347,53.24034195012944],[-127.1098999789276,53.24042343281179],[-127.10963082222925,53.24050326532194],[-127.10936163491073,53.24058254173179],[-127.10909532784689,53.240664022597095],[-127.10883968782345,53.24075829322784],[-127.10860322592153,53.24086863559764],[-127.10843290097912,53.24103101338645],[-127.1082627568831,53.24116426546061],[-127.10805110086356,53.2412900527421],[-127.10783376962351,53.241413660625746],[-127.10761358476223,53.24153616528965],[-127.10739149266534,53.24165757580898],[-127.10715782991683,53.24176732429931],[-127.10695299363731,53.241902574490254],[-127.10673373459159,53.24202506880031],[-127.106492854068,53.24214608816064],[-127.10629143033427,53.242268424176636],[-127.10606931580848,53.2423892675853],[-127.10583568944334,53.24250068926941],[-127.10556264083105,53.242576066602936],[-127.10528369661125,53.24264197857771],[-127.1049887991769,53.242671618198834],[-127.1046959534665,53.24270851665758],[-127.10440010920725,53.242738163625106],[-127.10410627327126,53.24277283782806],[-127.10382827119697,53.242838728605115],[-127.10356295846455,53.242922993164576],[-127.1032985756132,53.24300724846667],[-127.10301768962502,53.243070932128035],[-127.10272377702641,53.24310279788241],[-127.1024258471066,53.24312461586695],[-127.10212781448158,53.243142507869884],[-127.10182852952875,53.243148094369346],[-127.10152892268967,53.24314191351415],[-127.10122936015262,53.24313685197789],[-127.10093902121616,53.24312610163495],[-127.10064508956174,53.243120986354626],[-127.10034202104505,53.24312603949032],[-127.10003057224542,53.24313341055079],[-127.09973339486176,53.24311207158861],[-127.09943461793583,53.243101395809575],[-127.09913499764983,53.243094088552525],[-127.09883542072365,53.24308902110905],[-127.09853594626777,53.24308731341745],[-127.09823645682094,53.24308560510872],[-127.0979369970859,53.2430844604936],[-127.09763744947566,53.243080510240475],[-127.09734021548083,53.24305692484939],[-127.09704205040026,53.24306976758218],[-127.0967424307525,53.2430624542811],[-127.09643557868245,53.24310226746105],[-127.09616005208437,53.24311938062161],[-127.09584835687524,53.243081367812934],[-127.09559988285893,53.24298337552073],[-127.0953449067003,53.242887692698815],[-127.0950863368905,53.24279875646233],[-127.09482039199615,53.24271437865283],[-127.09459673048093,53.2425959865006],[-127.09431704038674,53.24248820424955],[-127.09413462920281,53.24236775436426],[-127.09392018236358,53.242241997268074],[-127.09372238151366,53.24210712239788],[-127.09355519493637,53.241957954372964],[-127.0933796728276,53.24181278913931],[-127.09319948130674,53.2416687871728],[-127.09303602322471,53.241518472524774],[-127.09285398628053,53.24137560752701],[-127.0926961028437,53.24122299110436],[-127.09253078583241,53.241073248645435],[-127.0923376221229,53.24093553202385],[-127.09213890154744,53.24080066299426],[-127.09193926528741,53.24066692255028],[-127.09174892782158,53.24052916998904],[-127.09165164881799,53.240360872170996],[-127.09143184966432,53.240245244243134],[-127.09116776096721,53.240159720776994],[-127.09091103623254,53.240067961836665],[-127.09063786937914,53.23999428132687],[-127.09035747162321,53.239930751045776],[-127.09007436766863,53.239871726924086],[-127.08978500617543,53.239825084974804],[-127.0895082053459,53.2397553524971],[-127.0892698059721,53.23964661440142],[-127.08909336230786,53.23950145133616],[-127.08900168372553,53.23933085896893],[-127.08901018693805,53.23915094743388],[-127.08899829145109,53.2389807428492],[-127.088772082194,53.23883491578954],[-127.08852542537673,53.23873297493651],[-127.08827785321455,53.23863159773685],[-127.08795085274714,53.23858081484096],[-127.08764192873072,53.238502417843804],[-127.08746859733654,53.23840483998437],[-127.08725086896082,53.23829647303685],[-127.0870656308515,53.238173797312],[-127.08685451866138,53.238030069211455],[-127.08664996875679,53.237886280604776],[-127.08648799768493,53.23775610313619],[-127.08625770998471,53.23763328313483],[-127.08599734431974,53.23754490848361],[-127.08570621295529,53.23750163437862],[-127.08540743596839,53.2374892384197],[-127.0851226055225,53.237544507954176],[-127.08467386851326,53.23754021415013],[-127.08431577165656,53.23755693487388],[-127.08401798629951,53.2375831875738],[-127.08364298959833,53.23767289228285],[-127.08349925246819,53.237777290306994],[-127.08330663686496,53.237915749218025],[-127.08315479244499,53.23807007795095],[-127.08301145718151,53.23822657868945],[-127.08276538607672,53.23833022508471],[-127.08250099050373,53.238414434228794],[-127.08222400112948,53.23848307091977],[-127.08193112167173,53.23851823739871],[-127.08163349965143,53.23851422945937],[-127.08137020099646,53.238421389544506],[-127.08108511413644,53.23839430048717],[-127.08077061671175,53.23842797596537],[-127.08047368293433,53.238450850464865],[-127.08017686280685,53.238478769841734],[-127.07988703327962,53.23852286734699],[-127.07961393547876,53.238597064873765],[-127.0793443461997,53.23866226595851],[-127.07905101859345,53.2387164775862],[-127.07876912213293,53.238777307394734],[-127.07850954366376,53.238866501395336],[-127.07827301316918,53.23897678339524],[-127.07806324216638,53.23910530513372],[-127.07786868298089,53.23924208736065],[-127.07769502470582,53.2393882078965],[-127.07751662310977,53.23953269501173],[-127.07732302046784,53.2396700323109],[-127.07712940217418,53.239806804691604],[-127.07695096832335,53.239950170701256],[-127.0766933262097,53.240042704433286],[-127.07701096283056,53.24016811989158],[-127.0770250790475,53.240280039900796],[-127.07702398902367,53.240458206436784],[-127.07706887306362,53.240635955429546],[-127.07713155170298,53.240811857569994],[-127.07718206786421,53.24098899958196],[-127.0772092450688,53.241171391235945],[-127.07726527737974,53.24134455691536],[-127.07730456204324,53.24152291237384],[-127.07733540811894,53.241701909184705],[-127.07736250074726,53.24188094007003],[-127.07738301707973,53.24206003067569],[-127.07739605551764,53.24223975391725],[-127.07739969443165,53.24241955356663],[-127.0773657679315,53.24259801821199],[-127.0772602043489,53.242765372973444],[-127.07710078425414,53.24291864153136],[-127.07699047694541,53.24308379812801],[-127.07693680450376,53.24326132139365],[-127.07694869532676,53.24343320265253],[-127.0770256907985,53.243617947425626],[-127.07720844346308,53.24375410676564],[-127.07735417325192,53.24391020605225],[-127.07748316818959,53.244073189032626],[-127.07758044204607,53.24424317398927],[-127.07761981584312,53.24442545445936],[-127.07757641806666,53.24460064358502],[-127.07753589944127,53.24477861219898],[-127.07749255725165,53.24495659746664],[-127.07744922994135,53.24513459152703],[-127.0774087100396,53.24531255108593],[-127.07737008120958,53.24549105815532],[-127.0773379999549,53.24566894996239],[-127.07735019316513,53.24585259774775],[-127.07741556093208,53.246022872517],[-127.07761249632175,53.246162263772305],[-127.07780655276619,53.24629943990572],[-127.07800247395811,53.246435478296746],[-127.07817425130592,53.24658238486449],[-127.07829858658174,53.24674596494569],[-127.07841545729201,53.24691128899483],[-127.07855191722615,53.247071397127314],[-127.07869021166502,53.24723036793715],[-127.0788354994332,53.24740552639209],[-127.07895380781012,53.247553473882775],[-127.07908001165326,53.24771647139694],[-127.07918381992408,53.24788471916698],[-127.07934632252248,53.24803506983375],[-127.07951419921818,53.24817584282267],[-127.07961518771526,53.24834355114225],[-127.07969660284066,53.24851704888777],[-127.07969063725011,53.248687971569616],[-127.0797750197743,53.248867044617036],[-127.07962508991248,53.248877928909465],[-127.07916655659338,53.24897286013945],[-127.07887593763287,53.24902536951008],[-127.07862013598071,53.249118454502344],[-127.07837493675856,53.249222082591544],[-127.07812973656218,53.24932571912998],[-127.0779084504956,53.24944650074638],[-127.07767281947609,53.2495573279665],[-127.07745249055475,53.24967922047571],[-127.07723216036192,53.24980111256781],[-127.0770127741613,53.249923551416785],[-127.07685229521798,53.250072911240245],[-127.07672500172364,53.2502354153193],[-127.07662605144657,53.250404949572456],[-127.07654849544863,53.250567001985964],[-127.07641116740577,53.25074080148634],[-127.07631410609909,53.25091087402738],[-127.07621513820597,53.25107984328872],[-127.07614921403353,53.25125635600846],[-127.07607573813553,53.25143069622361],[-127.0759899946853,53.251602906694664],[-127.07590682679091,53.25180254087801],[-127.07582132828324,53.25194785756172],[-127.07574878097502,53.25212218906666],[-127.07567717923615,53.25229651193181],[-127.07560180723661,53.252470868917655],[-127.0755320960098,53.25264573923042],[-127.07548026825553,53.25282267933727],[-127.07544725645603,53.253001134018206],[-127.07542364553835,53.25318006816769],[-127.07540192593235,53.253359540904164],[-127.07537080490167,53.25353853412189],[-127.07532932221018,53.25371650972542],[-127.07528031588566,53.25389342405168],[-127.0752256621692,53.254070398486604],[-127.07516064689106,53.25424578159008],[-127.07509469987643,53.25442117308062],[-127.07504286811151,53.25459811283214],[-127.07500986744651,53.25477713181385],[-127.07499095390592,53.254956578874676],[-127.07498425110225,53.25513591527077],[-127.07499258200143,53.25531567118037],[-127.07501686475123,53.25549472677362],[-127.0750673745843,53.25567186845833],[-127.07513663173194,53.25584715502536],[-127.0752181426243,53.25602457143083],[-127.07528818961048,53.25619424836838],[-127.07533870118982,53.25637138091121],[-127.07536579476428,53.256550410875995],[-127.07534338448353,53.256739418021674],[-127.07534301853761,53.256909733070515],[-127.07531189464144,53.25708872594083],[-127.07525629128925,53.25726514394752],[-127.07515260377492,53.25743359860789],[-127.07497982108826,53.257580825548],[-127.07476662482509,53.25768975757959],[-127.07447099084159,53.25776974781836],[-127.07421611566913,53.257864499118774],[-127.07396893468174,53.25796645878795],[-127.07374379345967,53.2580855812812],[-127.07349947584702,53.25818975496613],[-127.07324749090324,53.25828727466613],[-127.07299355526395,53.2583825705162],[-127.07274057912687,53.2584784218493],[-127.07248860481866,53.25857649554868],[-127.07226646438464,53.258703440262565],[-127.07200471491632,53.25878703513373],[-127.071717646707,53.258834447329114],[-127.07141806102862,53.258833235906586],[-127.07113491754266,53.25888733405892],[-127.07088770881487,53.258988722667304],[-127.07064529926757,53.259094558279635],[-127.07043444450119,53.25922250912096],[-127.07023215909881,53.259354873110766],[-127.07003366922595,53.259489434479505],[-127.06979163858347,53.259609830954396],[-127.06958109074225,53.25975010258825],[-127.06949876147623,53.259910516010464],[-127.06949686306768,53.26009541045176],[-127.06947322274704,53.26027433379206],[-127.06945898493815,53.26045373707634],[-127.0694503943786,53.260633654156415],[-127.0694267535598,53.26081257743732],[-127.06936924301485,53.26098900926597],[-127.06929006068886,53.261162274948255],[-127.06922594119473,53.26133764575683],[-127.06916842909585,53.261514077439884],[-127.06909772992412,53.26168895167345],[-127.06903079972403,53.26186434763882],[-127.06898363531377,53.26204124169382],[-127.06894683333343,53.262219727540554],[-127.06892976846713,53.262399156021715],[-127.06893995303322,53.26257890372058],[-127.06894262631684,53.262758710105295],[-127.06891334900337,53.262937692796314],[-127.06889252883289,53.26311659031479],[-127.06889050014048,53.26329644796833],[-127.0688950510765,53.26347623737158],[-127.06887328436582,53.26365515232366],[-127.06887876763096,53.26383437754419],[-127.06893675876465,53.26401088882088],[-127.06902376518363,53.26418321254914],[-127.0691639586017,53.264341620365414],[-127.0693478638837,53.26448338286529],[-127.06954292411635,53.26462056267474],[-127.06970638798838,53.26477090787518],[-127.06981206464108,53.26493858979432],[-127.06986163227636,53.26511573225876],[-127.06989808365272,53.265294122377846],[-127.06994300655944,53.26547354759091],[-127.07001617934127,53.26561854833083],[-127.07027625574867,53.265763548624264],[-127.07055844552325,53.26581814690348],[-127.07056985402514,53.26600852311076],[-127.07054152689938,53.26618805312159],[-127.07047363570497,53.266362337684384],[-127.07037274436142,53.266531873273905],[-127.07027844617883,53.26670247872042],[-127.07016526878417,53.26686876350197],[-127.07003126172498,53.26702907789906],[-127.06988971428004,53.267187783889156],[-127.06977082829836,53.267351878764245],[-127.06979694544292,53.26752979716528],[-127.06992037773662,53.26769395735643],[-127.07005314498694,53.26785522759978],[-127.07018683043881,53.268015924695995],[-127.07032612281654,53.26817545956775],[-127.07046353798664,53.26833500224148],[-127.07059629430276,53.26849627195902],[-127.07071039981412,53.268662191652794],[-127.07079461277914,53.26883510373505],[-127.07087793764626,53.26900970893963],[-127.07094896369402,53.269180498958185],[-127.0710219954494,53.26935687314126],[-127.07107436957112,53.269532868994375],[-127.07109867159794,53.26971360899127],[-127.07112387765402,53.2698926556321],[-127.07113877592779,53.27007235103629],[-127.0711405127052,53.27025217417679],[-127.07114038616909,53.27043200515411],[-127.0711580802953,53.27061111952456],[-127.07119829817684,53.27078947483311],[-127.0712422583725,53.27096723162253],[-127.07126651919438,53.27114628666086],[-127.07127674401481,53.27132714458704],[-127.07136933862742,53.27149661904817],[-127.07156624504066,53.27163098204462],[-127.07179095556097,53.2717505186557],[-127.07203590099833,53.27185307409948],[-127.07228823225405,53.2719505157512],[-127.07253964720374,53.27204852090205],[-127.0727892272506,53.272148792000124],[-127.07301575113297,53.27226551325161],[-127.07323400268726,53.27238903165345],[-127.07345870783625,53.272508009438695],[-127.07370826406458,53.27260714941405],[-127.07392659076295,53.27273347151271],[-127.07414111854739,53.2728586981685],[-127.0743250776386,53.27300045232863],[-127.0744867556169,53.273152492079056],[-127.07469109275951,53.2732828565656],[-127.0749463776755,53.27338474773111],[-127.07518015628402,53.2734907592771],[-127.07546428230846,53.27354532865746],[-127.07572505244192,53.273604590898124],[-127.07598564816173,53.27369354192005],[-127.076189892719,53.27381998755889],[-127.07628935018914,53.27400003587225],[-127.076281589845,53.27417434258137],[-127.07625609209569,53.27435328299699],[-127.07621931012802,53.27453176995828],[-127.07613350618425,53.27470342284284],[-127.07596171625248,53.27485567787679],[-127.07588135990778,53.27501999367045],[-127.07587497173604,53.2752116504753],[-127.07584101243958,53.275390111633314],[-127.07579292915156,53.27556758031566],[-127.07572505807093,53.275742987373924],[-127.07562888321706,53.27591304856272],[-127.0754816197993,53.27606957128906],[-127.07532582425142,53.27622280076147],[-127.07519276818523,53.276383676215076],[-127.07507681614199,53.276552230840835],[-127.07502401129304,53.276728621368186],[-127.07500695224144,53.276907493752915],[-127.07500873495317,53.27708787168465],[-127.07500400686985,53.277271105233105],[-127.0749839803631,53.277443837425395],[-127.07496608887195,53.27762663440007],[-127.07492082390002,53.27780464165655],[-127.07476583842619,53.2779528252587],[-127.07449812030106,53.278064489286294],[-127.07427665817566,53.278185262459125],[-127.07406190533567,53.278311021039656],[-127.0738509649444,53.27843897667687],[-127.07364002350236,53.278566940892475],[-127.0734433761677,53.278702609699025],[-127.07324503363908,53.278846145659735],[-127.07309303369347,53.279001578415695],[-127.07290857127128,53.27913658037184],[-127.0727355780574,53.27927932158267],[-127.0725664830428,53.27942762958865],[-127.07242394243181,53.27958578155643],[-127.07226529839906,53.27973847650322],[-127.07208954645255,53.27988404723177],[-127.07194893796225,53.280044422027544],[-127.07179972584046,53.28019870731742],[-127.07166191143143,53.28035850075353],[-127.07151083290809,53.28051336719549],[-127.07133223611739,53.280657832950034],[-127.07113842474546,53.28079515721044],[-127.07096457152929,53.28094182944382],[-127.07085059668444,53.28111540797906],[-127.07068510283335,53.28125807827078],[-127.07051400043152,53.281401919344674],[-127.07038575557975,53.28156833859909],[-127.07023466733077,53.281723768036834],[-127.07003703342791,53.28185888389673],[-127.06985557297641,53.28200169684265],[-127.06967981737768,53.28214781945308],[-127.06954766773278,53.282308670593906],[-127.06941352416544,53.28246562241437],[-127.0692663150054,53.282625497364805],[-127.0690781947243,53.28276556337764],[-127.06888911226835,53.28290508198841],[-127.06872948204585,53.28305722485513],[-127.06859034593171,53.28320245132161],[-127.06843200065317,53.28336802763749],[-127.06826572710294,53.28351797972911],[-127.06812694234716,53.28367721259287],[-127.06804296562885,53.283848841915294],[-127.06801273779432,53.284027821853044],[-127.06804164294259,53.284242133297745],[-127.0681342953082,53.2844132849707],[-127.0682418936494,53.284580949681995],[-127.06834669627857,53.28474919519229],[-127.06846737671054,53.28491393634539],[-127.06856564025277,53.28508391669823],[-127.0686189557522,53.28525991278006],[-127.06855762256987,53.2854352556071],[-127.06840460636116,53.2855895701567],[-127.06819648081245,53.2857191746158],[-127.06797496049313,53.28583993555592],[-127.06774008977192,53.28595241721345],[-127.06747127039515,53.28606071285487],[-127.0672385703622,53.28614795929426],[-127.06696425189303,53.28622437476187],[-127.06668591995239,53.286290741567996],[-127.06641054039223,53.28636212771168],[-127.06614003330816,53.286440747911264],[-127.0658781988264,53.28652825324274],[-127.06563467238644,53.286633520896586],[-127.06542651893179,53.286762555850686],[-127.06519064681702,53.286873356131025],[-127.064943260122,53.286974739848084],[-127.06469012236569,53.28707168383555],[-127.0644571138931,53.28718469783209],[-127.0642623042459,53.28732146314223],[-127.06409218604462,53.28746920237131],[-127.06389259844302,53.28760320424408],[-127.06368539527344,53.28773335689056],[-127.06351530265121,53.287881659707196],[-127.06340297375928,53.28804792787336],[-127.06332087627953,53.288220656839684],[-127.06323312711878,53.288392871631366],[-127.06317083402175,53.288568775491385],[-127.06313681026009,53.288747231784626],[-127.06311970996767,53.28892665697023],[-127.06312423931017,53.28910645317549],[-127.06310715385048,53.289285878191585],[-127.06306935625743,53.28946436818172],[-127.06297876430848,53.28963548764558],[-127.06291176435965,53.28981087762648],[-127.06286831425176,53.28998885338685],[-127.06282110680108,53.29016630700108],[-127.06272736199898,53.290324573723105],[-127.06265848088901,53.290499980316795],[-127.06263607925416,53.29069289808281],[-127.06259545315011,53.29087084837125],[-127.06251430790289,53.29104412367235],[-127.0624246565373,53.29121579881397],[-127.06229529012114,53.29137773617677],[-127.06212516289311,53.29152603685935],[-127.06197116928466,53.291680359933295],[-127.06184085369841,53.29184174948071],[-127.06173041494331,53.29200911911966],[-127.06161901426898,53.29217594149148],[-127.06157462446329,53.29235393385718],[-127.0615311671537,53.29253135314471],[-127.06146508863509,53.29270673371693],[-127.06137260409193,53.29287786846874],[-127.06119675962705,53.29302341312564],[-127.0611363456083,53.293199307534586],[-127.06102493944371,53.29336612924747],[-127.06085480057475,53.293513863246176],[-127.06069035348091,53.29366435173784],[-127.06058651839083,53.29383279049754],[-127.06044292293318,53.293990370788194],[-127.06032290841299,53.29415111063054],[-127.06001689301362,53.29420257764945],[-127.05971939045479,53.29418170358266],[-127.0594226796432,53.294155219476835],[-127.0590652968082,53.294144962007245],[-127.05876691386287,53.29416387374087],[-127.05847769678003,53.294210705214425],[-127.05818640234473,53.29425027607022],[-127.05788695969105,53.29426414853586],[-127.05758734750073,53.29427186378329],[-127.05728746932844,53.29426836721913],[-127.05698749221631,53.29426151840475],[-127.0566883359671,53.29424961504117],[-127.05639072254631,53.294224251851325],[-127.0560924156021,53.2942084133931],[-127.05579271939426,53.29421276352402],[-127.05549434840142,53.29423222265195],[-127.05519916760375,53.29426621847042],[-127.05491389936817,53.29432141395324],[-127.0546327117914,53.294388897399315],[-127.05438326428302,53.294485785665],[-127.05411896397794,53.294590092612765],[-127.05390378780359,53.29470461169708],[-127.05369280236873,53.29483645560136],[-127.05345781438099,53.29494834404015],[-127.0532256653764,53.29506076255769],[-127.05301833678034,53.29518865569826],[-127.0528177313145,53.29532208211009],[-127.0526095089473,53.29545222330973],[-127.05251584395282,53.29550235305441],[-127.05244035538766,53.29552822760577],[-127.05234743790437,53.295532977086054],[-127.05221288228094,53.29552688203487],[-127.05205261532268,53.2955070135488],[-127.05176652039378,53.29545352558862],[-127.05148308412096,53.295393855443464],[-127.05120960010203,53.29531896605408],[-127.0509208764393,53.295273342449434],[-127.05062761611794,53.29523391624369],[-127.05033352096913,53.295198987440365],[-127.05004832048154,53.29514380231182],[-127.04976580677166,53.295083555237284],[-127.04947260479375,53.295046375531946],[-127.04917852572333,53.295011999482924],[-127.04888973663137,53.29496356595845],[-127.04859042469533,53.294945485594006],[-127.04829080574783,53.2949531684229],[-127.04801531072711,53.29502339138592],[-127.04773785087363,53.29509082544522],[-127.04746452514243,53.295172788140896],[-127.0471943717673,53.29523174865639],[-127.04690015119756,53.29526740038724],[-127.04661389144655,53.29532089934373],[-127.04632864766563,53.29537719423913],[-127.04604142552992,53.2954301445399],[-127.04574500397261,53.29545292320122],[-127.04559728231018,53.29544582512707],[-127.04544926789492,53.29542751605846],[-127.04515516169957,53.2953920098552],[-127.04486285202775,53.2953531257931],[-127.04456970795985,53.29531817438505],[-127.04427008563465,53.295325847068476],[-127.04411828260955,53.295343988519136],[-127.04398090015854,53.29537489256676],[-127.04383814162445,53.295417039167226],[-127.04373433082037,53.295475658874764],[-127.04354702962745,53.29561623975645],[-127.04336068700094,53.29575793234163],[-127.04323140002904,53.29581284938814],[-127.04309283275511,53.2958342345542],[-127.04279541928155,53.29585477363926],[-127.04264550671883,53.295873452318716],[-127.04249106833758,53.295899457889824],[-127.04222686080185,53.29597068860435],[-127.04196877287846,53.296062024006446],[-127.04170005131137,53.29614113622164],[-127.04142844809392,53.29621746750328],[-127.0411616588746,53.29629879344904],[-127.04087836229711,53.29635898405679],[-127.04059894882026,53.29642361275372],[-127.04031956099237,53.296489925701636],[-127.04004696455732,53.29656458629037],[-127.03977536931608,53.29664146939355],[-127.03960622311034,53.29668104522253],[-127.03948682576457,53.29667929376668],[-127.0391867377394,53.29666847482021],[-127.03903608979056,53.296657468145725],[-127.03886998547519,53.296667320156544],[-127.03872770972454,53.296690973498166],[-127.03859909919733,53.296735239781576],[-127.03835338720519,53.296833181585555],[-127.03809617789872,53.296922268813574],[-127.03784788513421,53.297030316060386],[-127.03758882177891,53.29712053880352],[-127.03734036267977,53.297221308034615],[-127.03713112330371,53.29735030094858],[-127.03693807000985,53.29748812462435],[-127.03671159751764,53.297604386659614],[-127.03645046988304,53.297687337525545],[-127.03617359111067,53.29774129382091],[-127.0359013504331,53.29783106305142],[-127.0356614838613,53.29793791164331],[-127.03540088825525,53.298042708547506],[-127.03514537959846,53.29812504278941],[-127.0348938074032,53.29821462949833],[-127.03464058836009,53.29831375821582],[-127.03436796987519,53.29838839673833],[-127.03412525744892,53.29849415544766],[-127.03389211767272,53.298607664411364],[-127.03363683602782,53.29869952155622],[-127.03335939893492,53.2987691621621],[-127.03310034273574,53.29886049523322],[-127.03283058443482,53.298937346146296],[-127.03254533905347,53.29899529261083],[-127.0322550715457,53.29904039252164],[-127.03195651858276,53.29905419146755],[-127.03165803379223,53.29907078568017],[-127.03136177058171,53.29910136979358],[-127.03106752323728,53.29913753784787],[-127.0307762923687,53.29918208674606],[-127.03050360671755,53.2992544759666],[-127.03023780675305,53.29933913858662],[-127.02996906945127,53.29941933536289],[-127.02969254021217,53.29948840367432],[-127.029409192087,53.29954800224445],[-127.02912687237185,53.299610952527416],[-127.02883848996755,53.29965658340715],[-127.02853901308677,53.29967094641424],[-127.0282463603151,53.29973453980523],[-127.0279775543055,53.29977328543312],[-127.02766214781519,53.29979001600578],[-127.02736473847334,53.29981275693589],[-127.02706730305134,53.2998338211719],[-127.02676510644075,53.29985267598778],[-127.02646705023652,53.29988718930867],[-127.02616845476649,53.2999385041044],[-127.0259227573509,53.30000000982583],[-127.02560634049554,53.30005260653522],[-127.025329690853,53.30011717490454],[-127.02508881026384,53.300222898957294],[-127.02486143985975,53.300342506878415],[-127.02461976039565,53.30045383005061],[-127.02435925160113,53.30052554416746],[-127.02405237572339,53.30058421228991],[-127.02382656741844,53.300690924182234],[-127.02368095903165,53.30084959585092],[-127.02353163296814,53.301009428755236],[-127.02334806540695,53.30115330571271],[-127.02316448446308,53.301296062046426],[-127.02301497663157,53.3014491642336],[-127.02291455440503,53.301610251203606],[-127.02279948741763,53.301788270688256],[-127.0226401458943,53.30192297435044],[-127.0224261455454,53.30205254614877],[-127.022232076763,53.30218978903143],[-127.02206271244567,53.302338023322775],[-127.02191993229403,53.30249723295421],[-127.02178516913749,53.302637890762206],[-127.0216407477562,53.3027685386175],[-127.02149611568204,53.30296754344872],[-127.02130618877351,53.30308234042043],[-127.02126810855069,53.30325633488923],[-127.02114027786014,53.30341205361849],[-127.02095287823072,53.3035537186188],[-127.02074844022039,53.30368992756933],[-127.02055631937876,53.30383051204345],[-127.0203556093318,53.303966123546985],[-127.0201030793436,53.30405737144633],[-127.01982748980366,53.304128640055396],[-127.0195442335532,53.30419326019745],[-127.01926674910483,53.30426398801616],[-127.01901549883439,53.30436977921568],[-127.0188484951904,53.304499505702395],[-127.01852524722145,53.30450451885423],[-127.01828436681545,53.30441694967308],[-127.01795330308815,53.30437104418447],[-127.01766144425825,53.30431304184273],[-127.01736904410899,53.304271849890284],[-127.01707479188605,53.304231793511946],[-127.01677966048419,53.30419454949363],[-127.01648370504694,53.30416178455764],[-127.0161869528971,53.30413463682123],[-127.01589037470484,53.30411532091009],[-127.01559224241021,53.304108906982954],[-127.01528986188364,53.30412157594154],[-127.01499075130724,53.304153263504425],[-127.01470237667446,53.304201109316985],[-127.01442280394743,53.30426288014742],[-127.01414721704288,53.30433470015119],[-127.01387364494013,53.3044115397605],[-127.01362397742786,53.304505545881916],[-127.01341291524015,53.304602583382675],[-127.01315204063661,53.304660274616054],[-127.01276047100747,53.30467817953516],[-127.0124661283959,53.304712616620584],[-127.01216682507548,53.3047358999126],[-127.01186639931082,53.30475190473637],[-127.01156679819383,53.30476342005763],[-127.01126331832891,53.30476936549835],[-127.0109666037037,53.304744436296644],[-127.01067152929511,53.30470885280451],[-127.01038894084186,53.30464571633982],[-127.01012836081821,53.30455885406878],[-127.00986371274136,53.304459710061074],[-127.00963369958339,53.30435410423006],[-127.00941537678209,53.30422599002618],[-127.00920073246526,53.304095038614776],[-127.00892734390052,53.3039836420834],[-127.00871385582995,53.30390030270169],[-127.00841953408724,53.30385686427039],[-127.00811537604005,53.30383479675312],[-127.00781723342409,53.30382779872944],[-127.00751758425875,53.30383706343938],[-127.00721717661104,53.30385362109371],[-127.00691767585323,53.3038684851732],[-127.00661920063125,53.303887256823366],[-127.00631957750183,53.30389763871321],[-127.00602008957885,53.3039130651112],[-127.00572144016385,53.30392455767066],[-127.0054205104819,53.30391926235292],[-127.00511792798623,53.303923499419575],[-127.00484109875268,53.303864782824114],[-127.00459787716754,53.303756473533],[-127.00432824986204,53.30368368500337],[-127.00427352643912,53.30351720388198],[-127.00428223043563,53.3033300187302],[-127.00444452839909,53.303158905885034],[-127.00460999853149,53.303002322572546],[-127.00470279063916,53.30283291762494],[-127.00472407587286,53.30266131193948],[-127.00473579132759,53.30248194418387],[-127.00468729203581,53.30230084491887],[-127.00456670426152,53.302131559656395],[-127.00445362223475,53.30196164609271],[-127.00436514869017,53.30179881159266],[-127.0042540014509,53.30163113128564],[-127.00413821689015,53.301465721969706],[-127.00393924017787,53.301320072040056],[-127.00374315634241,53.301177749655196],[-127.00357833337009,53.301045255632594],[-127.00337405495586,53.300913650446375],[-127.00322097878417,53.300760879989845],[-127.00307893938371,53.300598496948545],[-127.00297533157769,53.300431307469005],[-127.00286515392925,53.300264173367836],[-127.00274424659378,53.30008088799494],[-127.00272915997586,53.299999779708784],[-127.00271082094655,53.29990078095844],[-127.00262623704933,53.299742949700196],[-127.00249177623219,53.299582187068246],[-127.00240391466446,53.2994053359891],[-127.00228637068703,53.29924443032824],[-127.00219113942784,53.29907380811935],[-127.00210060159718,53.298902581526335],[-127.00205118554146,53.29872148872044],[-127.00193636319213,53.298556633731465],[-127.00186174350571,53.29838247603847],[-127.00179366818253,53.29820714265328],[-127.0017085860159,53.29802803564053],[-127.00175448877256,53.297823730001845],[-127.00164205465973,53.29768014273046],[-127.00147209381166,53.29752863275961],[-127.00139399841976,53.29736627303334],[-127.00134822614436,53.29718010268542],[-127.00120441980799,53.297021658158634],[-127.00107281092107,53.296861981240085],[-127.00091906315346,53.296719861938115],[-127.00083846754288,53.296531188257376],[-127.00070959352483,53.29636813554035],[-127.00060505997173,53.29620038690245],[-127.00054355022166,53.29602444162424],[-127.00050829949231,53.29584546951019],[-127.00049088128485,53.295665782437524],[-127.000492256123,53.295485945980545],[-127.00051524810219,53.295306483114175],[-127.00055614003904,53.295128545575416],[-127.00060832048679,53.29495107758417],[-127.00065956839423,53.29477361740833],[-127.00070045941871,53.29459568873318],[-127.00072628955255,53.29441675755028],[-127.00074834786439,53.29423730239556],[-127.00076756648708,53.29405731541566],[-127.0007802018839,53.2938768191984],[-127.00078440151805,53.29369694979244],[-127.00077827149595,53.29351773212468],[-127.00075804021373,53.293338633282225],[-127.00073119980021,53.29315791395124],[-127.00069678964717,53.29297500856079],[-127.00065113167798,53.2927933273275],[-127.00059239959263,53.29261510856987],[-127.00051783590457,53.2924426342997],[-127.00042372018326,53.29227815877607],[-127.00024205686532,53.292146922216666],[-127.00000023168258,53.29205484254464],[-126.9999755642679,53.292044966373616],[-126.99973422278613,53.29193327001407],[-126.99951236875108,53.291810769492855],[-126.99928960883422,53.29168996131675],[-126.99905577442391,53.291577644677915],[-126.99880720019156,53.2914777763444],[-126.99855208247216,53.29137963869234],[-126.99829144993836,53.29128603756195],[-126.99802443286247,53.291200888301425],[-126.99775205763387,53.29112754354548],[-126.9974735096028,53.29107162123375],[-126.99717973889973,53.29104719826595],[-126.99687615728561,53.29104470988455],[-126.99657077408713,53.29104615288452],[-126.9962699769506,53.29104251018674],[-126.99596920651587,53.29103999590059],[-126.99567886455696,53.29100153056627],[-126.99539187181426,53.29094567420986],[-126.99510315925725,53.290896554179334],[-126.9948144473723,53.2908474334454],[-126.99452396269697,53.290802808596624],[-126.9942299316517,53.29076717620365],[-126.99393416726227,53.290737724461124],[-126.99363565804953,53.290711091556105],[-126.99333812067297,53.2906861259415],[-126.99304057057373,53.290660603955565],[-126.9927438870699,53.29063227738003],[-126.99244897939447,53.2905988887923],[-126.9921576572367,53.290558746916886],[-126.99186992446175,53.290510731315315],[-126.99157936625319,53.29046273861602],[-126.99128690334562,53.290413640678366],[-126.99099440155447,53.290362857218184],[-126.99070374016695,53.29031038151872],[-126.99041486663019,53.29025397316624],[-126.99012965984423,53.290193607542584],[-126.98984902559899,53.2901281566906],[-126.98957484521888,53.29005705819237],[-126.98930802409794,53.28997916618925],[-126.98904948351827,53.289893370550715],[-126.98880012709762,53.28979909014398],[-126.98855902494992,53.28969577703376],[-126.9883252693952,53.28958511499228],[-126.98809795494952,53.289468240994],[-126.98787520063443,53.28934572645956],[-126.98765799294236,53.28921924833917],[-126.98744353188717,53.28908994141797],[-126.98723279273324,53.28895836229965],[-126.98702390563393,53.28882620271524],[-126.98681692704749,53.28869459160151],[-126.98660996090867,53.288564100458366],[-126.98640671663478,53.2884313371699],[-126.98621640186175,53.288289502675674],[-126.98604377586045,53.28814024264263],[-126.98589450131355,53.28798462159496],[-126.98577044193154,53.28782262414411],[-126.9856669210782,53.28765486285161],[-126.98557924650758,53.28748192348986],[-126.98550279564623,53.28730608532775],[-126.98543477999188,53.28712962136],[-126.98543148779709,53.28694870312734],[-126.98540214144683,53.28677807606225],[-126.98543649227092,53.286599641970184],[-126.98544544643912,53.28641974247734],[-126.98542341978987,53.28624065584483],[-126.9853751004881,53.28606290784818],[-126.98533710958408,53.28588450940233],[-126.9853225557645,53.28562301323841],[-126.98524682252248,53.285397869703615],[-126.98509711612704,53.285223203734],[-126.98490598955011,53.285005184237775],[-126.9847002265945,53.28480409234504],[-126.98443988060596,53.284559200009575],[-126.98419417789533,53.28429681448206],[-126.9840025050251,53.28409560455575],[-126.98375682068232,53.28383377368907],[-126.98356590320816,53.283624158002674],[-126.98329234881214,53.283335666605126],[-126.98303275820429,53.28308180140197],[-126.98294511686399,53.282909415317725],[-126.98289683998858,53.282732230474416],[-126.98290205970048,53.282552917553645],[-126.9829439324195,53.28237442157658],[-126.98304052328753,53.28220499169832],[-126.98315785521693,53.28203931595875],[-126.983323478307,53.28188949089585],[-126.98348341182165,53.281737462880024],[-126.983614942561,53.281576150738026],[-126.98370207050696,53.28140400201115],[-126.98375714139861,53.28122763711078],[-126.9837792649575,53.28104818389825],[-126.98378729321325,53.2808682917386],[-126.98386120143162,53.280694011495],[-126.98401452179482,53.28054036125174],[-126.98421242471767,53.28040538860017],[-126.98437707767506,53.28025500520006],[-126.98445948263254,53.28008233021595],[-126.98447033112124,53.279902970243654],[-126.98442767383385,53.27972517441868],[-126.98434003397496,53.27955279802801],[-126.98419637951248,53.279394886983326],[-126.98399876832922,53.27926038753344],[-126.98376595118869,53.279146356372166],[-126.98356462471433,53.27901357213204],[-126.98343315184927,53.27885443878677],[-126.98344961386391,53.278673911883196],[-126.98356886696862,53.27850989560011],[-126.98375440046892,53.27836886806592],[-126.98385267466273,53.2781915800546],[-126.98387707952067,53.27802947889719],[-126.98386913190147,53.27784970989692],[-126.98383396517004,53.27767129588473],[-126.98380161080233,53.27749229383805],[-126.98371893668113,53.277290179580255],[-126.98372653962437,53.27713269041409],[-126.98369239914291,53.27695762911622],[-126.98366568124833,53.27677858026501],[-126.98360146004818,53.27660263878766],[-126.98347273953961,53.276440685925046],[-126.9833654725835,53.27627182358512],[-126.9834007962821,53.27609450149659],[-126.98339098580354,53.275915312439835],[-126.98333895826306,53.27573815826195],[-126.98327849678317,53.275562185392204],[-126.98320585806174,53.27538799849153],[-126.98313415369984,53.2752132480582],[-126.98306432808762,53.27503847304685],[-126.98303038757822,53.27487180856924],[-126.98302725764134,53.27465670996627],[-126.98294857648813,53.27450498169961],[-126.98284693861179,53.2743355164245],[-126.98275563985808,53.274165965448105],[-126.98271330661565,53.27400217589468],[-126.98267122928465,53.27380868803589],[-126.98258643363675,53.27363627747341],[-126.98250162575063,53.27346331120332],[-126.98243275251615,53.273288536787696],[-126.98240416400607,53.273109502860244],[-126.98238308882345,53.27293040672375],[-126.98237493024203,53.27286268307925],[-126.98235480194977,53.27268357907955],[-126.98233276762176,53.272503935097916],[-126.98230137021336,53.27232492432927],[-126.98220633256,53.272156524194386],[-126.98207298187849,53.27199628409662],[-126.98200409967919,53.271820944705645],[-126.98191086440067,53.27164916807117],[-126.98164993861188,53.27157681263601],[-126.98137130865501,53.271510214197015],[-126.98109358492742,53.27144247821237],[-126.980818620042,53.271372486863584],[-126.98055550743045,53.271286701813445],[-126.98027686800548,53.27121953620093],[-126.97999464007019,53.27116024266211],[-126.97972236056711,53.271084059709025],[-126.979434761761,53.27103545786188],[-126.97914805612399,53.270985162809254],[-126.97890515489966,53.27087960413697],[-126.97871780806196,53.270739408902294],[-126.97858929282505,53.2705847272517],[-126.97866223408475,53.27040878113981],[-126.9787022624364,53.27023085653609],[-126.9787536612552,53.27005788459904],[-126.97886626244834,53.26989113049415],[-126.97902335708906,53.26973913968052],[-126.97912846985301,53.26957356750037],[-126.97924108116104,53.26940736863115],[-126.97937069870213,53.269245520027376],[-126.97952115607265,53.269091333393256],[-126.97958286118835,53.26891715544753],[-126.97950758256296,53.26874915461335],[-126.97953814838597,53.26856906674603],[-126.97953680198596,53.26838925122066],[-126.97955705869187,53.268209813105685],[-126.97958577184852,53.26803086090629],[-126.97959758447799,53.26785149244876],[-126.97959341327808,53.26767170017267],[-126.9796005100879,53.267491805903575],[-126.97960855143508,53.26731246852362],[-126.97962599781,53.26713305348839],[-126.97967258471421,53.266955083018864],[-126.97972388449433,53.26677818508328],[-126.97973850566069,53.266598793300474],[-126.97974374988998,53.26642004361882],[-126.97987717717174,53.266260959295245],[-126.9801073808068,53.26614420818167],[-126.98037214100611,53.26605967298253],[-126.98064945241727,53.26598959027956],[-126.98088552072207,53.265882882113544],[-126.98097831120195,53.265713483637796],[-126.98097221725091,53.26553202190897],[-126.98097651155355,53.26535271517787],[-126.98098360228992,53.265172829571384],[-126.98098505900153,53.26499298155909],[-126.98101276751694,53.264811240320654],[-126.98097150097142,53.26465192244921],[-126.98070626583583,53.264553830421825],[-126.98045973305973,53.26445223090705],[-126.98020948459043,53.264352337764336],[-126.9799409392734,53.264273318961],[-126.97966497449237,53.26419828685069],[-126.9794705332274,53.2640749667609],[-126.97941375637795,53.263894478933004],[-126.97933366819568,53.26372147083874],[-126.97921713895904,53.26355605078463],[-126.97907353209534,53.26339701200149],[-126.97901596725008,53.26322325311935],[-126.97895569772628,53.26305400725946],[-126.97873859984057,53.262925261680635],[-126.97853001311243,53.2627986953755],[-126.97840134104557,53.262636171258045],[-126.97831751880506,53.26246319320797],[-126.97822434513047,53.26229253307577],[-126.97808917578082,53.262132858798026],[-126.97805121144418,53.26195334454321],[-126.97812327342366,53.261780201751954],[-126.97832880001107,53.261653017310934],[-126.97855240311772,53.26153632318398],[-126.97869898973099,53.26137825161174],[-126.97880497741524,53.26121043072671],[-126.97888640873295,53.26103721007912],[-126.97896313967364,53.260863472393524],[-126.9790257423855,53.260687601353695],[-126.97906009892876,53.260509166699016],[-126.97909729235036,53.260331273311614],[-126.97913070387004,53.260152281690964],[-126.97912091521168,53.25997309079945],[-126.97912990351864,53.25979374494108],[-126.97914829324063,53.25961488618688],[-126.97916386071874,53.259435485996576],[-126.97920573920027,53.259257544836686],[-126.97924951021437,53.25907959698644],[-126.97930551692481,53.25890322430054],[-126.97938317336661,53.258729469501304],[-126.97950614142394,53.25856543356678],[-126.97968781942923,53.25842331273509],[-126.97991036662215,53.258302151566575],[-126.98015585969837,53.2581987186291],[-126.98042446814618,53.25812030874987],[-126.98071347435022,53.25807086133254],[-126.98100952548927,53.25804208775226],[-126.98130776597112,53.25802673175339],[-126.98160823544538,53.25802648711376],[-126.98189835082258,53.25806554314318],[-126.98217871863417,53.25812989376083],[-126.98245996836546,53.25819143081191],[-126.98272958223708,53.25827714876812],[-126.98299377104401,53.258372439368884],[-126.98323548345401,53.25830825603644],[-126.9834226894535,53.25816216644951],[-126.98355698386783,53.258001384629715],[-126.98367142470387,53.25783517395367],[-126.98380937901054,53.257671000109326],[-126.98407540336484,53.25760268734104],[-126.98435289716552,53.2576642510688],[-126.98463323993595,53.257727475666194],[-126.98491995344058,53.25778167415245],[-126.98521803038439,53.25779936742775],[-126.98551735596085,53.257790723475985],[-126.98581659163321,53.257777588748596],[-126.9861154564572,53.25778911522836],[-126.98640387992023,53.25783601748534],[-126.98668244079455,53.257903169181105],[-126.98694732070892,53.25798724079631],[-126.98719845433241,53.25808542735692],[-126.9874320849817,53.25819833388533],[-126.98766385225493,53.258311811212664],[-126.98790760818679,53.258416224661765],[-126.98816517972578,53.25850875333479],[-126.98843554197406,53.25858605329198],[-126.98870501334834,53.25866504522007],[-126.98898988703834,53.258720369723854],[-126.98928786555197,53.25873413655981],[-126.98964473464827,53.25873619798054],[-126.98993183037649,53.258685623555614],[-126.99019943815065,53.258605523596806],[-126.99048257991943,53.25854657295498],[-126.99071285682616,53.25843596655898],[-126.99088593662702,53.25828886249966],[-126.9910846446224,53.258153869057566],[-126.99121704549002,53.25799365884931],[-126.99133993717032,53.25782904611855],[-126.99149028408767,53.25767373212722],[-126.99165578186341,53.257523884587094],[-126.99182601948141,53.25737568233117],[-126.9919877203974,53.25722418982894],[-126.99216844588811,53.25708318677114],[-126.99238809983582,53.256960896537],[-126.99260109654884,53.25683474447196],[-126.99278272500449,53.25669204770297],[-126.99296746019796,53.2565224337602],[-126.99318966025395,53.256428140945594],[-126.99346504730792,53.256360284254406],[-126.9937601068689,53.25632980180325],[-126.99403737010188,53.256261937015324],[-126.99429147097156,53.25616681009591],[-126.99455229276985,53.25607834899898],[-126.99481984866543,53.25599710931627],[-126.99509615037336,53.25592812961846],[-126.9953911265351,53.25589428240683],[-126.99567422786271,53.25583531941903],[-126.99596727257597,53.25579924606535],[-126.99626681959312,53.25580065707833],[-126.99656409963629,53.25582505120822],[-126.99686354279036,53.255821415062485],[-126.997170613133,53.255823316325596],[-126.99745580340162,53.25585229165943],[-126.99760720770983,53.255901994830054],[-126.99770132766734,53.25595162381207],[-126.99780993368047,53.25601793770329],[-126.99796277987605,53.256049145281146],[-126.99823494007464,53.256043494271324],[-126.99841320430069,53.25599774074717],[-126.9985202489851,53.25599796031648],[-126.99882817412293,53.25599592403344],[-126.99910544016446,53.255928603025524],[-126.99940155641923,53.25590369985385],[-126.99969875945175,53.25592472543375],[-127.0000010278834,53.2560403904988],[-127.00025119431373,53.256136881640884],[-127.00049094839629,53.25623009870333],[-127.00064584692232,53.25611002411774],[-127.00067540876915,53.25593105771587],[-127.0006824271943,53.25575172569122],[-127.00068286868141,53.25557189337791],[-127.00067766247888,53.25539209972097],[-127.00069594566439,53.25521267262792],[-127.00070203265854,53.25503334838955],[-127.00072030242056,53.254853365624164],[-127.00070008990306,53.25467426319077],[-127.0007428325473,53.254496870611064],[-127.00095007992228,53.25436739021137],[-127.001209945456,53.25427892225296],[-127.00147650620634,53.25419599947472],[-127.00172093663002,53.25409085382271],[-127.00197407409443,53.253996273967445],[-127.00225710218191,53.253934498987846],[-127.0025275598799,53.25385770786846],[-127.00278145257133,53.253755841382045],[-127.00297359101764,53.25362312365534],[-127.00307179358569,53.25344862252259],[-127.0030657261005,53.253272197341246],[-127.00298332657701,53.25304432074551],[-127.00300841492523,53.25291470028583],[-127.00304922871999,53.252735637755215],[-127.00311360825735,53.25256086671896],[-127.00322231193898,53.25239411974644],[-127.00335081420175,53.25223056657298],[-127.0034651747166,53.25206489194668],[-127.00352294834494,53.25188849131364],[-127.00352243131715,53.251708657668935],[-127.00349376802987,53.25152962681835],[-127.00346041762916,53.251351200305606],[-127.00346461503565,53.25117189144369],[-127.00342749705246,53.25099293205105],[-127.00343262569403,53.25081361528036],[-127.00350359187799,53.25063934384987],[-127.00363681318522,53.25047742644742],[-127.00374930399096,53.25031233187598],[-127.00377790431367,53.25013281640145],[-127.00378582630054,53.24995291117234],[-127.00381350671957,53.249774523895674],[-127.00387975740854,53.24959917156188],[-127.00390742399419,53.24942022859386],[-127.00393696734245,53.249241260753266],[-127.00396556454362,53.24906230985796],[-127.00399510739526,53.24888334196926],[-127.00402371912531,53.24870439089923],[-127.00405231538254,53.248525430970716],[-127.00408657134528,53.24834698781977],[-127.00413492485487,53.24816954576014],[-127.00421343236988,53.24799689493349],[-127.00433343611616,53.24783229166156],[-127.00438851028574,53.24766151529683],[-127.00443108374563,53.247477954961674],[-127.00443807161304,53.2472980662848],[-127.00443191939969,53.24711827989826],[-127.00443139877419,53.24693845476984],[-127.00444966235906,53.24675902630445],[-127.00446229451427,53.24657964550755],[-127.00447211844522,53.246400288473275],[-127.00447270171317,53.24622773244638],[-127.00449442595212,53.24603594951639],[-127.00449125659645,53.24586286052326],[-127.00443823155574,53.24568572083997],[-127.00436650299486,53.245511536173716],[-127.00424432128419,53.245347298090074],[-127.00414173553352,53.24517842109098],[-127.00406252759373,53.24500541999504],[-127.0040001467667,53.24482947075962],[-127.00391906305461,53.24465648542506],[-127.00376335253094,53.24450317947651],[-127.00353209821289,53.24437012510181],[-127.00345210792861,53.24420385295401],[-127.00345256390084,53.2440251308182],[-127.0034811462127,53.24384561494995],[-127.00344219925576,53.24366779086542],[-127.00328570773617,53.24352121364119],[-127.003002794765,53.24346590714787],[-127.00270386713503,53.243447701689966],[-127.00240673718979,53.24342612786214],[-127.00213109444526,53.24336066472638],[-127.00207909473811,53.243186311877714],[-127.00209642071597,53.243006891413636],[-127.00212033668625,53.24282797996057],[-127.00212545649237,53.242648097877776],[-127.00213809728588,53.242468716941076],[-127.00213570957835,53.242288907222665],[-127.00209113903706,53.24211113012657],[-127.00198952887756,53.24194279862482],[-127.00178832240807,53.24181004272162],[-127.00155475740165,53.24169772809475],[-127.00132856837254,53.241579748417884],[-127.0011468545603,53.24143729843025],[-127.00106113094716,53.241265470618906],[-127.00103716978741,53.24108639865111],[-127.00105544525621,53.240906970156615],[-127.00109158453151,53.24072851131413],[-127.00114092589303,53.2405533023872],[-127.00125336010383,53.2403865244807],[-127.00137143723865,53.24022026351267],[-127.00149989626033,53.24005614669782],[-127.00164069211593,53.23989809256257],[-127.00180044073124,53.23974772139229],[-127.00198671564209,53.23960777476708],[-127.00219005291252,53.23947496218158],[-127.00240097571752,53.239345446506384],[-127.00260904799286,53.239214834070246],[-127.00282283063603,53.239086969643516],[-127.00304514305252,53.23896295877836],[-127.00325986737467,53.23883565027477],[-127.00345092419458,53.23870014261643],[-127.00359655381453,53.23854820312629],[-127.00368444248925,53.2383760280035],[-127.0037581012845,53.238197815157086],[-127.00386202797242,53.23802886550714],[-127.00400471156114,53.23787191275127],[-127.00415683082336,53.237717120837],[-127.00431652219422,53.237565061262146],[-127.00447903335728,53.23741354228061],[-127.0046434484698,53.23726257163977],[-127.00480595729738,53.237111052186165],[-127.00496374073515,53.236957887351245],[-127.00509128355885,53.236796023825],[-127.00520840452978,53.23662975765016],[-127.00526239649618,53.236453386555],[-127.00525906323,53.23627413998774],[-127.00524540284002,53.23609442519718],[-127.00534480592472,53.235933355589225],[-127.0056025255532,53.23583872725097],[-127.0058354333219,53.235727510742485],[-127.0060226095153,53.23558698485744],[-127.00620503211675,53.23544425805529],[-127.00649126617294,53.235325855919264],[-127.00667523065682,53.23520888604309],[-127.0069186609262,53.23510597701988],[-127.00722694620447,53.23500699848727],[-127.00736223669348,53.23489548752361],[-127.00757090341848,53.23483040366992],[-127.00776416970386,53.2347492080053],[-127.0079921813654,53.234629620706805],[-127.00822988198566,53.234522840449614],[-127.00849293879509,53.2344561719887],[-127.00873923975969,53.234395256789995],[-127.00895855136851,53.23434352551771],[-127.00921632429883,53.234291475457134],[-127.00951546495753,53.23428220625609],[-127.00981462049732,53.234272936172474],[-127.01011385450879,53.234267581827496],[-127.01041331795702,53.23427119749612],[-127.01071214369912,53.23428769876886],[-127.0110091868291,53.234308131652995],[-127.01130375665956,53.234343159965796],[-127.01158297359177,53.2344029599087],[-127.01182850213888,53.23450563350184],[-127.0120426652895,53.23463153945125],[-127.01225591225084,53.234758008590894],[-127.01248578141353,53.23487313968385],[-127.01274697623768,53.23496390820572],[-127.0130034345394,53.23505247568064],[-127.01327766974356,53.23506077259947],[-127.01353829891602,53.235049581433024],[-127.01380106340604,53.23501035967732],[-127.01406366778916,53.234963860127344],[-127.01437639633973,53.234933729310185],[-127.01460458773444,53.234861752105985],[-127.01474627639892,53.23470422952902],[-127.01488130806723,53.23454341128774],[-127.01509323267727,53.23441946594233],[-127.01537031933496,53.23435098579404],[-127.01564737651239,53.23428194052319],[-127.01590610170106,53.23419177166385],[-127.01613990547057,53.234079962117725],[-127.01638612848458,53.233977009413934],[-127.01664966857048,53.2338923910114],[-127.0169218886956,53.23381722606154],[-127.01719991278426,53.233749298235495],[-127.01748479438993,53.233693071377786],[-127.01777967672004,53.23366308459972],[-127.01807886665316,53.23365547850661],[-127.01837670466767,53.23367028374914],[-127.01867300565745,53.233698556080796],[-127.0189709658468,53.233718405392494],[-127.01926976399915,53.2337337648651],[-127.019559841864,53.23377664566026],[-127.01982644497724,53.23385783267718],[-127.02013036303593,53.23392972533495],[-127.02042713790716,53.23393894119575],[-127.02071946846536,53.23388040149801],[-127.02099678447762,53.23382254610934],[-127.02130420679117,53.233767236422246],[-127.02158657441925,53.233763127790446],[-127.02189184079249,53.23377394304776],[-127.02219102919813,53.23376688234808],[-127.0224902730658,53.2337614966421],[-127.02278913592156,53.23374099156093],[-127.02307895156639,53.23369535761787],[-127.02332520968939,53.23359463096424],[-127.02357714886259,53.23349665144488],[-127.02383970020657,53.233410349198714],[-127.02410512702332,53.23332626247054],[-127.0243696070321,53.233242183315014],[-127.0246330996044,53.23315643586038],[-127.02489178503589,53.233065682742854],[-127.0251475806167,53.23297159260931],[-127.0254023749508,53.23287526961965],[-127.02565623586798,53.232779509896915],[-127.02591298593765,53.23268653028653],[-127.02617361032152,53.23259856319364],[-127.02644009416679,53.232520064344286],[-127.02673552664841,53.23247436374133],[-127.02703206779246,53.23243538460606],[-127.02729393207669,53.232360285246884],[-127.02751616452812,53.23223734831683],[-127.02769743314988,53.23208899507671],[-127.02783529584103,53.23193148929039],[-127.02794856121736,53.23176524173247],[-127.02805233311574,53.2315951502109],[-127.0281598992633,53.23142614615019],[-127.02828354274885,53.23126260491887],[-127.02842513982876,53.23110451019275],[-127.02857620085409,53.23094912988378],[-127.02873198522883,53.230795393574695],[-127.02888776847021,53.23064165704846],[-127.02903881134772,53.230486285204265],[-127.02915962789892,53.23032220273963],[-127.0292728687425,53.2301559539054],[-127.02939839408492,53.229992950752006],[-127.02953620424964,53.229833211164824],[-127.02968820106291,53.22967838585444],[-127.02985249455749,53.229527935426155],[-127.03003197625117,53.22938407566356],[-127.03022187816208,53.229244606974056],[-127.03040230158969,53.229101294181895],[-127.03056849391436,53.22895194664923],[-127.03076410295566,53.22881578885265],[-127.03099881065363,53.22870506171371],[-127.03125646863236,53.22861262684169],[-127.03152284944272,53.228531311322435],[-127.03180081528963,53.228463349075206],[-127.03207207022292,53.22838927747171],[-127.03229528061163,53.228269683946756],[-127.03247854211101,53.22812746359146],[-127.03262956280425,53.2279720869665],[-127.03275035822931,53.22780800062495],[-127.03282775160888,53.22763477265722],[-127.03277278182559,53.22745878053652],[-127.03271403246116,53.22728169185772],[-127.03274910817758,53.22710435058007],[-127.03285382229969,53.22693536644064],[-127.03301146632347,53.22678217243849],[-127.03323563855608,53.226663689043214],[-127.03350782360421,53.22659016161364],[-127.03379756483362,53.226543936700644],[-127.03409134570357,53.22650944535965],[-127.03438713914296,53.22648052916324],[-127.03468063102993,53.22643426934988],[-127.03496575564328,53.22639088753186],[-127.03523592255222,53.22631177129887],[-127.03546771436265,53.226198263685816],[-127.0356429698884,53.226037059865455],[-127.03574550828928,53.2258944277402],[-127.03581038257468,53.225708416873466],[-127.0358175214505,53.225540282350686],[-127.03581518360389,53.225368313411174],[-127.03581057146678,53.225180112867186],[-127.03580257763115,53.225007063867814],[-127.03581804161632,53.22483437461659],[-127.03590394932758,53.22466443126101],[-127.03610431531786,53.224532148622124],[-127.03632081139511,53.22440755902904],[-127.0365163672521,53.224270835774895],[-127.03670718280945,53.22413246842666],[-127.03687049923273,53.223982015969895],[-127.03698181785346,53.22381521089122],[-127.03705351706321,53.2236403441868],[-127.0370707154397,53.22346148125276],[-127.03710386617801,53.223283034497435],[-127.03718028906431,53.223109246811525],[-127.0373114324253,53.22294787027511],[-127.03750604644806,53.222811709196506],[-127.03766093735841,53.2227005461277],[-127.0377715011107,53.22257968655904],[-127.03780416126125,53.2224578326785],[-127.03786141074171,53.22230606620457],[-127.03791273039822,53.22214146156417],[-127.0379921057787,53.2219738144931],[-127.03801064262873,53.221811746760025],[-127.03793083563913,53.22165613359691],[-127.03784078198463,53.221465884046495],[-127.03784962299719,53.22129101113858],[-127.03792228732028,53.22111725563943],[-127.03806003634107,53.22095750539408],[-127.03823185242742,53.2208103376782],[-127.03840083341076,53.22066207404261],[-127.03853857891981,53.220502314240555],[-127.0386423219587,53.22033389728298],[-127.0387341202601,53.22002271857026],[-127.03876724740647,53.219843706420605],[-127.03877409825184,53.21966436875598],[-127.03875654900578,53.2194846891418],[-127.03873620726456,53.219305589741225],[-127.03867184419671,53.21912967280813],[-127.03861684727212,53.21895311799892],[-127.038581498492,53.218774714749],[-127.0385592681271,53.218595067083214],[-127.03855485103381,53.21841527228517],[-127.0385626054339,53.21823480609922],[-127.03860426313022,53.218059080531994],[-127.03872022767084,53.217891676628135],[-127.03880983367505,53.21772057741746],[-127.0388768193633,53.21754519443526],[-127.03892404622654,53.217367743612805],[-127.03891588981838,53.217188537235565],[-127.0388983271225,53.217008292801594],[-127.03888359936995,53.21682857926234],[-127.03888951773013,53.2166498141931],[-127.03897909288582,53.216477594495274],[-127.03912911749028,53.216322207823474],[-127.0393094419181,53.21617832485228],[-127.03949262763165,53.216036101703914],[-127.03967960341714,53.215896077016176],[-127.03987226154028,53.2157576873717],[-127.04006779346383,53.2156220778764],[-127.04026806078295,53.215488658487665],[-127.04047213469217,53.215356890537315],[-127.04068952905256,53.21523341339908],[-127.04093943030814,53.215134292130685],[-127.04120279010276,53.21504906267706],[-127.0414699979776,53.21496716027718],[-127.04174207971465,53.214893057844805],[-127.04201121535732,53.214813942960205],[-127.04225729077807,53.214712055737564],[-127.0424641883437,53.214581379873515],[-127.04262461248723,53.21443037893376],[-127.04268125490813,53.214254528536785],[-127.04262249631479,53.214078008129505],[-127.04248998864884,53.21391613804115],[-127.0423193709339,53.213768057808736],[-127.0421255926514,53.213631376915565],[-127.04190405320931,53.21351063558235],[-127.04165123806558,53.21341425477233],[-127.04138014973522,53.21333820280582],[-127.04109819608759,53.213277367798426],[-127.04080733298423,53.213236223417574],[-127.04050856159455,53.213216437058215],[-127.04021167997148,53.21319719808819],[-127.03991552326578,53.2131689791371],[-127.0396211036964,53.21313570649097],[-127.0393355818597,53.2130821862805],[-127.03906722445768,53.213002187885834],[-127.03882453435257,53.212897868908264],[-127.03860207767363,53.212777120548395],[-127.03839532337552,53.21264671451753],[-127.03820061785171,53.212510044370184],[-127.03800962334236,53.212371656184786],[-127.03782789786074,53.21222870456555],[-127.03766752995634,53.21207660175199],[-127.03755934707864,53.21191115174617],[-127.03752681559249,53.211732158210076],[-127.03752238975146,53.21155179810941],[-127.03752923089829,53.21137190407981],[-127.03754171214564,53.21119251641671],[-127.03755606878707,53.211013112315136],[-127.03757230079873,53.210833691774226],[-127.03758946406121,53.21065369833225],[-127.03760662602933,53.210474269607566],[-127.0376256783236,53.210294824310736],[-127.03764471545253,53.210115379125014],[-127.0376468883539,53.209936081582185],[-127.03764435148868,53.20975626949746],[-127.03764181442509,53.20957644843334],[-127.0376383323872,53.20939664459026],[-127.0376357953708,53.209216823491495],[-127.03763983004059,53.2090369537969],[-127.03765418553394,53.208857549476505],[-127.0376760561269,53.208678635093875],[-127.03769509231446,53.208499189744764],[-127.03769162514173,53.20831938566824],[-127.03767315365133,53.20814026872646],[-127.03767436729129,53.207960414663624],[-127.03767838782156,53.20777998024005],[-127.03762997987954,53.20760393109781],[-127.03751150171419,53.20743857090298],[-127.03736951745479,53.207232522875465],[-127.03739534956611,53.20710007863016],[-127.0375188176029,53.206933729502744],[-127.0376073087942,53.20675647260743],[-127.03773865766449,53.20656707961159],[-127.03792745016106,53.20646402598417],[-127.03815623665066,53.206347731506675],[-127.03838313408771,53.20623033262982],[-127.038578626515,53.206094715938015],[-127.0387257680465,53.205938242343784],[-127.03883703185282,53.205771433916844],[-127.0389303622222,53.20560030062545],[-127.03902463561374,53.2054297147344],[-127.03913589690329,53.20526290598123],[-127.03927831147834,53.20510478781807],[-127.03944817003061,53.20495707789484],[-127.03963319555649,53.204815392870785],[-127.03981821850368,53.20467426332398],[-127.04000800473332,53.20453589737759],[-127.0402120266007,53.204404129102706],[-127.04041699118692,53.20427291690789],[-127.04062289827073,53.204142251826205],[-127.04082883275952,53.20401214189127],[-127.04103569629233,53.203882032379724],[-127.04124350232107,53.20375246997007],[-127.04145133576182,53.203623462700705],[-127.04166009823719,53.20349445584321],[-127.04186599769024,53.20336378854694],[-127.0420776052335,53.203235867428596],[-127.04232169536694,53.20313287581114],[-127.04260646171691,53.20308163330696],[-127.04290627779388,53.20307058654343],[-127.04320554945328,53.20307579549003],[-127.04352373979386,53.203087004276206],[-127.043801472573,53.203055425032716],[-127.04406635101262,53.20295840487865],[-127.04430665676675,53.202854321950404],[-127.04450017040338,53.20271591562066],[-127.04465486283222,53.202562164279975],[-127.04476042635022,53.202394279466276],[-127.04482454419957,53.20221836077478],[-127.04484074200086,53.202038938393585],[-127.04479696442066,53.20186116537188],[-127.04470460107848,53.20169054371183],[-127.0445842506879,53.201525771205084],[-127.0444471499995,53.20136618398565],[-127.04429793814751,53.201210073808255],[-127.044140379899,53.20105738952322],[-127.04396703085771,53.2009104556166],[-127.0437751385542,53.2007726398351],[-127.04355460677601,53.200651892429555],[-127.04331194883399,53.20054646169579],[-127.04310750272886,53.20043116534127],[-127.0430095185886,53.20029868872896],[-127.04296666788764,53.200119786290855],[-127.04295526683394,53.199999993372465],[-127.04295005264593,53.19994065287802],[-127.043067061082,53.19977995630885],[-127.04329579728406,53.19966365149167],[-127.04350168803516,53.199532980952064],[-127.04367246816463,53.19938581185519],[-127.04383469162124,53.19923423588435],[-127.04395251389793,53.1990690402034],[-127.0439687141923,53.19888961763744],[-127.04392401356057,53.19871185218693],[-127.04382885463497,53.19854181901138],[-127.04378790483196,53.19836402043737],[-127.04388124018887,53.19819455846871],[-127.04410232760766,53.198072716797206],[-127.04433681607141,53.19796140579185],[-127.04454824972606,53.19782844335209],[-127.0447704580239,53.19771386926013],[-127.04481759085574,53.197609811845446],[-127.0447162245518,53.19756812677341],[-127.04441899094918,53.197567941768675],[-127.04412335124901,53.197594642928216],[-127.04383381961067,53.19764089379063],[-127.04354323182605,53.19768267124367],[-127.04324453699871,53.197699303648314],[-127.04294621962731,53.197693530951376],[-127.04265451801724,53.19765183433715],[-127.04236819343491,53.197600014169694],[-127.04208543983749,53.19754087417687],[-127.04179009247625,53.19746559253898],[-127.04166239261816,53.1974583161539],[-127.041500428273,53.19746813938598],[-127.04121301773661,53.19752444967422],[-127.04095555611457,53.19761691681114],[-127.04071338306748,53.19772044509714],[-127.04048749659445,53.197838405282745],[-127.04036284176448,53.19787871745937],[-127.04016198992376,53.19794714625385],[-127.03991111417241,53.198002576784994],[-127.03969071315072,53.19803868190482],[-127.03935239333236,53.198045576671426],[-127.0390182576281,53.19803225584346],[-127.03876731496659,53.198008684914576],[-127.03857509637689,53.19797059692781],[-127.03843228593988,53.19795895856234],[-127.03815720010485,53.19790646501268],[-127.03783844209464,53.1978319434515],[-127.03760709598758,53.19776561948043],[-127.03732252798115,53.197708725062135],[-127.03703003803837,53.197673188772114],[-127.03673237821837,53.197655624972136],[-127.03643722153728,53.19762571305093],[-127.03614376190308,53.1975885068013],[-127.035850357438,53.197553531377814],[-127.03555351918867,53.19753147545235],[-127.03525495726866,53.19751560106718],[-127.03495583417758,53.19751540883676],[-127.03465816313478,53.19753593685669],[-127.03436860796238,53.19758160894182],[-127.03409477714582,53.19765683175953],[-127.03390690473917,53.197796292642444],[-127.0337276262223,53.197941836472786],[-127.03348053361533,53.19803699346572],[-127.03319900698841,53.19810443781016],[-127.03291245632754,53.19815847931633],[-127.03261178341222,53.19817118483473],[-127.03231414774073,53.19819339182667],[-127.03201755084613,53.19822006204139],[-127.03172791971134,53.198262922529004],[-127.03143850654831,53.19831474437568],[-127.03115497707795,53.19837716349437],[-127.03088775981618,53.198454562203175],[-127.03064373573994,53.198560891431555],[-127.03044075264806,53.198696551849835],[-127.03030485565994,53.198852926894695],[-127.0302134483624,53.19902683387267],[-127.03011351376973,53.199197462377306],[-127.02995144578448,53.19935741701739],[-127.0297060342266,53.19944527256917],[-127.02941456107742,53.19945172271438],[-127.02910746243847,53.19943198071476],[-127.0288047852851,53.19940155930595],[-127.02852388635692,53.19934125046663],[-127.02826291841056,53.199252190880735],[-127.02801661112588,53.1991490018095],[-127.02777951656812,53.19903900934032],[-127.02754607802842,53.19892506744125],[-127.02730991593123,53.19881506595324],[-127.02705726258347,53.19872032916425],[-127.02676891174896,53.19866176602804],[-127.02650904480343,53.198579416043266],[-127.02628381233758,53.198455316124004],[-127.02610397968377,53.19830896844265],[-127.02599593160367,53.19814574718184],[-127.02592138999769,53.19797159544561],[-127.02587014212708,53.19779163947247],[-127.02583293554326,53.19761100611667],[-127.02581172756915,53.197432466234524],[-127.02581956118442,53.197252563337955],[-127.02583486558557,53.197072031003614],[-127.02584364245203,53.196892675667364],[-127.02585428042043,53.19671273946684],[-127.02586587692319,53.1965333596768],[-127.02587556999734,53.19635344058409],[-127.02588433284777,53.19617352056389],[-127.02589217939813,53.19599417319004],[-127.02590094232086,53.19581426209579],[-127.02591345459689,53.19563430954957],[-127.02606546418221,53.19548453171161],[-127.02629994335624,53.195372127158166],[-127.02649171561804,53.195238246973446],[-127.02647335315132,53.19506081177249],[-127.02627049960319,53.19493147112424],[-127.02605839706578,53.19480669222871],[-127.02602034371822,53.19462941851904],[-127.02603192394754,53.19445003864113],[-127.02599010802948,53.19427224171324],[-127.0259081151197,53.19409983942799],[-127.02579437280151,53.193933305533236],[-127.02566485309903,53.19377307534787],[-127.02545178613168,53.193647183206565],[-127.02519541856687,53.19355248360283],[-127.02494552454237,53.19345435698141],[-127.02470941342688,53.19334491459832],[-127.02444758777484,53.19325697462784],[-127.0241757568221,53.19318201079491],[-127.02389396093822,53.193121698946136],[-127.02361305649303,53.19305913773368],[-127.02334304879253,53.19298191525535],[-127.02309225989536,53.192884921953215],[-127.02287364858364,53.19276186986697],[-127.022668888207,53.192630298551585],[-127.02244661152247,53.19251064778377],[-127.02220497066483,53.19240404494649],[-127.02198455751584,53.19228381250662],[-127.02180944514485,53.192137417450326],[-127.02164736339668,53.19198642775763],[-127.02149483045437,53.19184319898303],[-127.02148957227229,53.191663964643666],[-127.02148052280513,53.191483642482844],[-127.02147047586088,53.19130052317835],[-127.02142405726426,53.191125005216456],[-127.02125835176538,53.19097964869414],[-127.02103962065154,53.19085100073233],[-127.02080811983829,53.19073701993428],[-127.02058399716738,53.19061793735613],[-127.0203617099312,53.19049716228077],[-127.02014774544686,53.19037126838703],[-127.01994951964647,53.1902373950983],[-127.01976514430253,53.19009499401635],[-127.01958821609573,53.18994973177939],[-127.01941866439014,53.189799923797665],[-127.01925096306243,53.18964842338277],[-127.01908141375863,53.1894986148939],[-127.01890450377671,53.18935390724121],[-127.01871650822389,53.189216582391175],[-127.0185036467096,53.18909739904595],[-127.01822806361285,53.189020777715314],[-127.01795156511834,53.188944719383315],[-127.01773404026954,53.1888266952444],[-127.01755612569167,53.188679197455585],[-127.01736527936256,53.188539653966856],[-127.01716241911798,53.18840693633675],[-127.01695585001015,53.18827649120276],[-127.01674283664069,53.18815058302523],[-127.01651967028985,53.188030919866236],[-127.01627802804542,53.1879231845421],[-127.0160208516779,53.187831833703136],[-127.01572927151595,53.187791190847],[-127.015430826008,53.1877769423446],[-127.01513161224749,53.18776942267002],[-127.01483316709437,53.18775517266155],[-127.01453802792318,53.187722409835786],[-127.01424291585185,53.1876907575807],[-127.01394556239111,53.187683218986926],[-127.01364770876725,53.18769361190717],[-127.01335004283528,53.18771184596176],[-127.01280064241438,53.18774791907266],[-127.01283015893154,53.18757119263931],[-127.0130076175312,53.187426806960346],[-127.01320026007517,53.18728957883],[-127.01341187240698,53.1871622725484],[-127.0136722155029,53.187073210521284],[-127.01394511124421,53.18699916270616],[-127.01422285909624,53.18693235146555],[-127.01447839802543,53.18683884676964],[-127.01471574649293,53.186729245627404],[-127.01491161855397,53.18657069742541],[-127.01512002423641,53.18646638120904],[-127.01540475155966,53.18641687954231],[-127.01569520230377,53.18645024509753],[-127.01598669703229,53.18640964798977],[-127.01622789564762,53.186304492711386],[-127.01635903175206,53.18614425644229],[-127.0162598744256,53.18595742798318],[-127.01626729956689,53.185798253216035],[-127.01655936173448,53.18562543070506],[-127.01667667145117,53.18547539717591],[-127.01676474664856,53.18531777098419],[-127.01680419781668,53.1851258266377],[-127.01654640559741,53.184969484203584],[-127.0163181462022,53.184832501037675],[-127.01630043628748,53.184680264862145],[-127.01627169717412,53.1844984345131],[-127.01635340593678,53.184349262446986],[-127.01635940302693,53.184169374990184],[-127.01631107033032,53.18399163001994],[-127.01626836237972,53.183813272017645],[-127.01627437167,53.183634504912355],[-127.0163207391744,53.18345762350055],[-127.01635489071695,53.18327917061541],[-127.01638997160983,53.18310070972484],[-127.01644947145158,53.182924280230026],[-127.01641519086151,53.18274585881522],[-127.01640338796437,53.18256667973202],[-127.01641782451748,53.182387275431985],[-127.01643317700314,53.182207298517234],[-127.01643636796709,53.18202799069554],[-127.01643299329852,53.181848183438525],[-127.01643522607206,53.18166831907224],[-127.01646279514392,53.181489366693185],[-127.01648285365222,53.18130991402062],[-127.01647573026095,53.181130129906144],[-127.0164779630302,53.18095027443107],[-127.01649052454798,53.18077088605146],[-127.01651716300275,53.18059193258944],[-127.01651752141576,53.180412093148426],[-127.01651320174746,53.18023228488182],[-127.01652763703856,53.180052880340945],[-127.01658439571972,53.179879279716864],[-127.01682365458298,53.1797730186679],[-127.0170762598512,53.17967616229657],[-127.01730211483768,53.179558254555154],[-127.01747194733308,53.17941056513997],[-127.01753429663736,53.179235795419224],[-127.01749160027639,53.179058557799564],[-127.0173435110729,53.17890240369138],[-127.01712405916894,53.178779348048934],[-127.01688067490517,53.178674990331366],[-127.0166936509749,53.17853653309066],[-127.01662381958477,53.17836065756724],[-127.01659702460377,53.17818160678797],[-127.01659832696033,53.17800175004021],[-127.0166052649815,53.17782240962679],[-127.01662064357095,53.177642996730775],[-127.01664444762902,53.17746351147743],[-127.01667106857427,53.177284566749904],[-127.01670145208159,53.177105580727485],[-127.01672152106595,53.17692669220529],[-127.01671438240663,53.1767469078054],[-127.0166913226771,53.17656726905275],[-127.01664489958335,53.176390062922074],[-127.01656949030045,53.17621591136109],[-127.01647728339516,53.17604470968742],[-127.0163822855054,53.1758746434318],[-127.01627143472308,53.1757075189011],[-127.01612802718526,53.1755502024392],[-127.01596322418354,53.17539978345431],[-127.01578729992826,53.175254506406894],[-127.01560117038264,53.175113798657165],[-127.01539839357281,53.1749816416577],[-127.01519189543075,53.17485119249658],[-127.01499838296571,53.17471446439237],[-127.01483174041978,53.17456518906649],[-127.01470786257185,53.174401536207974],[-127.01462500946981,53.17422912338936],[-127.01457856928015,53.17405136069403],[-127.01456397328452,53.17387220460099],[-127.01458309181108,53.17369275959892],[-127.0145722302928,53.17351301570055],[-127.0145473208994,53.17333394792824],[-127.0145167902233,53.173154928300754],[-127.01451715685843,53.1729750791755],[-127.01457291617737,53.17279924638307],[-127.01470493424162,53.172637882398405],[-127.01488988630899,53.172496233668404],[-127.01501217041695,53.17231982138778],[-127.01508035408848,53.17215452210466],[-127.01510837949209,53.171994613843765],[-127.01499010254796,53.17182979257723],[-127.01479196636213,53.17169534468954],[-127.01456979503546,53.17157455750438],[-127.0143365701754,53.17146169920148],[-127.0141383170958,53.17132221341955],[-127.01399518722356,53.17117553216719],[-127.01379134223164,53.17103721420411],[-127.01364329474528,53.17088105478652],[-127.01349338793361,53.170725466868674],[-127.01334718931642,53.17056816177299],[-127.01318614971473,53.1704171507812],[-127.0130130186488,53.170270169290916],[-127.01279371802758,53.1701510305058],[-127.01251298244199,53.17008844219306],[-127.01225042195354,53.17000216713304],[-127.01202828005401,53.16988193072654],[-127.01183571658929,53.169744633480015],[-127.0116375869027,53.169609624501845],[-127.01141821155052,53.16948767807165],[-127.0112163906021,53.169354940944494],[-127.01105721011436,53.16920279067265],[-127.01093802741629,53.169037973043935],[-127.0108793837119,53.168858071762216],[-127.01077885726069,53.16869029786424],[-127.01070874545384,53.16850096557105],[-127.01053868947919,53.168364038784325],[-127.0104390696288,53.16819457158871],[-127.01035717709712,53.16802159148064],[-127.010293023439,53.167846218905815],[-127.0102213892147,53.167671465890926],[-127.01014230146396,53.167498461666916],[-127.01002963715291,53.167331911138625],[-127.00988439241866,53.167174593547145],[-127.00977080069819,53.16700805067037],[-127.00969077175773,53.16683505413627],[-127.00960143070704,53.166663813237484],[-127.00949808500006,53.166494941671004],[-127.00938821523224,53.166327801917504],[-127.00927836132023,53.16616066191904],[-127.00916661977143,53.16599353790229],[-127.00902513159728,53.16583563141067],[-127.00884275954981,53.165692639809826],[-127.00864192225443,53.16556044563257],[-127.00843826869587,53.1654282840707],[-127.00823278284315,53.16529781405003],[-127.008017120016,53.16517303288899],[-127.00782867124309,53.16504969593569],[-127.00756227128036,53.16495784072102],[-127.00729546319762,53.164887842834865],[-127.00706504759044,53.164811923239945],[-127.00672962582065,53.16473297895236],[-127.00650815025347,53.16459984514809],[-127.0063928782988,53.164440592094856],[-127.00626720247183,53.16427750109052],[-127.0061322271191,53.16411729474819],[-127.00597308459997,53.163965137205295],[-127.00579259113849,53.16382156917723],[-127.00557233340486,53.16369961942487],[-127.00531221860342,53.163595380174556],[-127.00506479352993,53.163512887072045],[-127.00480869206116,53.16342037353838],[-127.0045325578022,53.16335156916315],[-127.00424916824338,53.16329346607801],[-127.0039766494479,53.163219018222065],[-127.00375546928052,53.163097637681346],[-127.003581963343,53.16301058840732],[-127.00327519400695,53.16291458383509],[-127.00303549785566,53.162801767210276],[-127.00280297617884,53.162675998960275],[-127.00264763747037,53.162525481034926],[-127.00258296635612,53.16236579564293],[-127.0025632041849,53.16212505300095],[-127.002393772944,53.161972422021016],[-127.00244436696028,53.161933331422084],[-127.00246953497772,53.161848524109146],[-127.00234883878383,53.161657373933096],[-127.00228751727401,53.16148141701594],[-127.00224115785986,53.161303648118434],[-127.00222285687651,53.16112452110785],[-127.00219333126198,53.160945489115655],[-127.00219375014365,53.160765638829936],[-127.00227173215882,53.16057729715624],[-127.00224136868165,53.16040275426966],[-127.00203875686344,53.160272804945926],[-127.00188803916731,53.1601194500027],[-127.00179219333732,53.15994882276646],[-127.00170663210625,53.15977698789232],[-127.00157911515106,53.15961391630969],[-127.0014092981632,53.15944503516628],[-127.00141183392466,53.159274695698365],[-127.00148326607719,53.15908696558643],[-127.00165976788153,53.15894484310749],[-127.00175410274184,53.15877429140583],[-127.00181740227953,53.15859895550337],[-127.00181872716004,53.15841742104325],[-127.00188397860836,53.15824543008486],[-127.00194914998576,53.15807007820511],[-127.0019365372934,53.157893699504356],[-127.00189224201692,53.15772375629263],[-127.00175892553573,53.15755289025773],[-127.00165190021899,53.15738459837118],[-127.00154015893168,53.15721522577192],[-127.00162427341017,53.15704867778798],[-127.0017393142776,53.156882423747426],[-127.00179038869672,53.156705514834364],[-127.00182839227034,53.15652982807042],[-127.00183811195171,53.156347101827684],[-127.00188542761775,53.1561691041144],[-127.00205429102195,53.15602144278818],[-127.00220326569043,53.15590421250192],[-127.00226872039775,53.15582017532297],[-127.00214595105547,53.155738861517335],[-127.00193634682093,53.15562914036701],[-127.00180437656086,53.15547562635584],[-127.00188425012045,53.15528838882642],[-127.00190446404602,53.15511341722232],[-127.00174927858724,53.154928160459875],[-127.00148369747399,53.15486765922545],[-127.0011753688071,53.154821529961346],[-127.00088759088534,53.154772976105484],[-127.00059537520436,53.15473510845709],[-127.00030316190208,53.15469668429486],[-127.00000131758074,53.15464769141089],[-126.99948046376124,53.15448681070964],[-126.99922166683396,53.154395993214386],[-126.99898953482435,53.1542836602787],[-126.99875461348556,53.15417247094664],[-126.99848670616142,53.15409237812437],[-126.99824540914284,53.153989085192016],[-126.99802246202567,53.15386882928988],[-126.99783556962505,53.153728655470964],[-126.99761635600437,53.15360836732895],[-126.99735030098239,53.153527135827446],[-126.99708970737404,53.15343912565958],[-126.9968401021562,53.15334038194724],[-126.9965959851279,53.15323598891669],[-126.99634363304679,53.153139508329474],[-126.99610965398566,53.153028305856374],[-126.99589041117702,53.1529057737567],[-126.99566104540075,53.152791170033254],[-126.99544272102857,53.15266807360641],[-126.99525675837752,53.1525273321424],[-126.99508748392132,53.15237860645085],[-126.99486921577832,53.15225774056536],[-126.9946196096497,53.15215843643942],[-126.99436999143191,53.15205856715292],[-126.99415171394001,53.151937144256486],[-126.99394353378942,53.15180722779899],[-126.99370773677813,53.15169715639573],[-126.9934326127122,53.15162775325696],[-126.99313705873105,53.15156580877483],[-126.99287961625247,53.15149177390643],[-126.99301073289237,53.15133156044704],[-126.99307027225862,53.15115457501147],[-126.9930689114324,53.15097642430682],[-126.99303379806297,53.15079743630723],[-126.99301180986697,53.15061833814489],[-126.99298886491779,53.15043869221431],[-126.99300340274701,53.15025984329084],[-126.99305544957413,53.15008292958234],[-126.99308122386218,53.14990398631553],[-126.99306951582012,53.14972424602866],[-126.9930512191226,53.149543431533466],[-126.9931127732063,53.149372596300566],[-126.99328915770727,53.14922601331769],[-126.99349304518246,53.149093756913274],[-126.99370074101824,53.14896483867428],[-126.9939027401456,53.14883204160395],[-126.99408293081676,53.148688222196675],[-126.99421402096732,53.1485274425264],[-126.9942895149918,53.148352572077705],[-126.99429376732682,53.14817437390385],[-126.9942044998776,53.14800256409147],[-126.99413208934358,53.147830047839925],[-126.99412691115474,53.14764968781747],[-126.99416112734157,53.14747123784194],[-126.99423946253721,53.14729746395748],[-126.99433285729084,53.14712691604474],[-126.99442812418224,53.14695636126647],[-126.99452810385547,53.14678744307558],[-126.99463089921858,53.14661850110951],[-126.99473652329013,53.14645009102908],[-126.99485344660363,53.14628495635418],[-126.99497695685507,53.1461208777084],[-126.9950938933032,53.14595574263987],[-126.99518352334417,53.145784669758186],[-126.99523742797354,53.14560772994046],[-126.9952772406856,53.145429232313916],[-126.99531332283534,53.14525076603474],[-126.99534001366092,53.14507182294761],[-126.99536014442276,53.14489237027819],[-126.99537934621434,53.14471292540108],[-126.99539760406688,53.14453348844278],[-126.99541491799245,53.144354059403696],[-126.99543224675175,53.14417463021828],[-126.99546551086695,53.14399618746279],[-126.99552317039546,53.14381978046177],[-126.99557145350737,53.14364288756559],[-126.99558313569577,53.14346295001317],[-126.9955705031108,53.14328377281795],[-126.99553913056478,53.14310475328835],[-126.99550207676054,53.14292241997067],[-126.99538995647389,53.142773769108956],[-126.99509363602537,53.14271687402145],[-126.99481767884615,53.14264916650167],[-126.99453428328937,53.14258431769241],[-126.99428245953153,53.14250743292893],[-126.99427434862706,53.14232149441675],[-126.99427575792971,53.14214219901431],[-126.9942808990929,53.14196231645283],[-126.9942635838475,53.14178317837153],[-126.99424905666822,53.141603452097975],[-126.99423641723705,53.141423718906054],[-126.99421161269174,53.141244643703935],[-126.99415501657045,53.14106751193014],[-126.99411432914042,53.14089025540613],[-126.99411665646863,53.140709831631575],[-126.99417901693775,53.14053450599638],[-126.99427517375031,53.140362257854015],[-126.9943300698314,53.140188115350625],[-126.99430245128941,53.14000849895436],[-126.99425985234171,53.139829573177224],[-126.9942088488925,53.13965128274312],[-126.99418501546202,53.13947331973204],[-126.9942117204571,53.139294931997114],[-126.99425527794831,53.13911583786192],[-126.99428947172227,53.138937387132025],[-126.99432273653882,53.138758944179926],[-126.9943456845632,53.13857946738753],[-126.99434988135721,53.138399592399054],[-126.99436721219199,53.1382201627775],[-126.99441542809919,53.138040473525706],[-126.99444027198915,53.13786265700594],[-126.99438375854292,53.13768889488372],[-126.99427769048698,53.137517781309896],[-126.99421834904356,53.13734347810868],[-126.99422536211475,53.1371635793359],[-126.9941828339215,53.13698689373159],[-126.99418235795049,53.13680704890041],[-126.99415285524883,53.136627456954734],[-126.99417303961566,53.136450244256785],[-126.99425411737872,53.13627419606487],[-126.99426220325766,53.13610044657473],[-126.99411893267121,53.13593973912202],[-126.99393955542025,53.13579669854512],[-126.99374809460552,53.13565767656449],[-126.99355757883347,53.13551865530071],[-126.99338467327738,53.13537163319943],[-126.99321454361669,53.13522347597438],[-126.99298991422314,53.1351071417778],[-126.99275143641941,53.13499877602757],[-126.99256834973077,53.134856885026196],[-126.99236207998142,53.13472415243932],[-126.99221157995458,53.134574699603],[-126.99212422369553,53.13440231542546],[-126.99205082262195,53.134226443593555],[-126.99197177980325,53.134049507452744],[-126.99195922902577,53.13387368998241],[-126.99203655385571,53.13369711878404],[-126.99217892985125,53.13354017138549],[-126.99242057887066,53.13342497098816],[-126.99259146668524,53.13328626805655],[-126.9926557095835,53.13311092666649],[-126.99270105885009,53.132929020616444],[-126.99279632663908,53.1327595861163],[-126.99295932845513,53.132604140838346],[-126.99317273376212,53.132481896922215],[-126.99344721002956,53.13240955450401],[-126.99374006858041,53.13236227337439],[-126.99404291756112,53.132341800236716],[-126.99430828312822,53.13227962607906],[-126.99451868306556,53.13214955226529],[-126.99474624577518,53.13203278903175],[-126.9949557522715,53.13190496297233],[-126.9951500860853,53.13176830890736],[-126.99532168948589,53.13162119626616],[-126.99548385445067,53.131470236455094],[-126.99565451391896,53.13132257544845],[-126.99584694257672,53.13118537144284],[-126.99606593505821,53.131062510293425],[-126.99630685472566,53.130956827753046],[-126.99657940436607,53.13088281779318],[-126.99685389271838,53.130811031915016],[-126.99713421837225,53.130749280949814],[-126.99742339654182,53.13070538314309],[-126.99772165194027,53.130688865527446],[-126.99802014275403,53.130682985726764],[-126.99831753328526,53.130669826529505],[-126.99860076382537,53.13061197387865],[-126.99886753455688,53.13053071943864],[-126.99913237781439,53.1304478043525],[-126.99940881025441,53.13037935763813],[-126.99970197868322,53.13034607002004],[-127.00000079725996,53.1303541845816],[-127.00023716470962,53.13037347605299],[-127.00053360670583,53.130399546829004],[-127.00083467229491,53.13038355334468],[-127.00104522808398,53.130261309936124],[-127.00118564761993,53.130102691261776],[-127.00134211714214,53.1299495302132],[-127.00151841879173,53.12980405369348],[-127.00172407053837,53.12967288626729],[-127.0019975857493,53.129600540722706],[-127.00221653884479,53.12947710344351],[-127.00221047953039,53.129300110728494],[-127.00227749027854,53.12912530463168],[-127.00241413095362,53.12896558685328],[-127.00250181047147,53.128793967007056],[-127.00259980335535,53.128623371217024],[-127.00279223875415,53.128487275888304],[-127.00303213074926,53.12837935584464],[-127.00327206281473,53.1282725465264],[-127.00348627853779,53.128147470583556],[-127.00368434938619,53.12801301119265],[-127.00386348988313,53.12786918311093],[-127.00405870466815,53.12773249726131],[-127.00425865675183,53.12759857665972],[-127.00439622864131,53.12743885740759],[-127.00441821103334,53.12726050585238],[-127.00441486336975,53.127080128325325],[-127.00449118051183,53.12690355633198],[-127.00477081963965,53.126853553778275],[-127.0050691779409,53.1268426191433],[-127.00536032822598,53.126883280640634],[-127.00565058908438,53.12692619902081],[-127.00594922686214,53.126927020921315],[-127.00624774324618,53.12692336096286],[-127.0065448950457,53.12694043727069],[-127.00684292245904,53.12695527327459],[-127.00714173191034,53.126963934447154],[-127.00744035655669,53.126964187947536],[-127.00773415048498,53.12699810686196],[-127.00799368838686,53.12708665846726],[-127.00821098745209,53.12721030616256],[-127.00851325916015,53.12728504592341],[-127.00872166915971,53.127192505273214],[-127.00897814628968,53.12707378188156],[-127.00926100844721,53.127041669746184],[-127.00955311084907,53.127003884344084],[-127.00985164070764,53.12700077096255],[-127.01014962952956,53.12701391369195],[-127.01044683718766,53.12703322977256],[-127.01074482642248,53.12704637100222],[-127.01104276237288,53.1270572708672],[-127.01134155992321,53.12706535679433],[-127.01164027904244,53.127069525246085],[-127.01193649601197,53.12704794203244],[-127.01223362929677,53.12702522969596],[-127.01253163252348,53.1270389310586],[-127.01283032479154,53.127041976198164],[-127.01312763158136,53.127026539127094],[-127.01341674096837,53.12698148182497],[-127.0137038306333,53.12693028265456],[-127.01396575502194,53.12684455294557],[-127.01419798805094,53.1267310728157],[-127.01435344140641,53.12657734668783],[-127.0145136341841,53.12642582075111],[-127.01462571290014,53.126259019843246],[-127.0146976522386,53.12605782655301],[-127.01484251488735,53.12593108344172],[-127.0150121410064,53.1257833931891],[-127.0151458961658,53.125622573095],[-127.01522223296642,53.125448790322054],[-127.0152778999713,53.12527183227681],[-127.01536363450546,53.125099653978914],[-127.01548418854236,53.12493557617164],[-127.01561888091241,53.12477530316741],[-127.01572436732735,53.12460688127816],[-127.01581478372768,53.12443521813762],[-127.01590711311364,53.12426466797476],[-127.01603141953284,53.12410112201165],[-127.0161510264763,53.123936495736224],[-127.01625932199887,53.12376860490464],[-127.01642043900604,53.12361762384268],[-127.01660424304418,53.123475976577986],[-127.01675496393099,53.12332061119214],[-127.016866082315,53.123153815982086],[-127.0169320810129,53.12297844433376],[-127.01693525185406,53.12279856600998],[-127.01692250683534,53.122618833497555],[-127.01696118407718,53.12243640872279],[-127.01693431490176,53.122291534370554],[-127.0169478413807,53.122075153858844],[-127.01696790993515,53.121897371207325],[-127.01696374231099,53.12172372333414],[-127.01693314519748,53.12150211949795],[-127.01700488795021,53.121371519841034],[-127.01719531882854,53.12123317600803],[-127.01741515315133,53.121111386981],[-127.01764354866592,53.12099569130794],[-127.01788243193577,53.12088773972207],[-127.01813468398208,53.12079088690818],[-127.01840812719652,53.12071905873301],[-127.01868835606733,53.12065669157741],[-127.01895789282885,53.12057817251473],[-127.01922745553844,53.12050077314348],[-127.0195028204346,53.12043116691302],[-127.01977333643617,53.120354878597304],[-127.02004289623599,53.12027747735763],[-127.02031440746471,53.120203420279395],[-127.02059169409301,53.12013603597231],[-127.020870932291,53.12007199578291],[-127.02114048828663,53.11999459202907],[-127.02135936320214,53.11987224792837],[-127.02156870228129,53.119743253566135],[-127.02179804931318,53.119628661941604],[-127.02203788452847,53.11952181403816],[-127.02230163134112,53.119436613975175],[-127.02260001243542,53.11942955180298],[-127.02288757521085,53.11947805381664],[-127.02313957219927,53.1195649523675],[-127.02346763660904,53.119507771494376],[-127.02371604336226,53.11940756920741],[-127.02394536912722,53.119292408761154],[-127.02415471111692,53.119163974415024],[-127.02430350390439,53.11900805060815],[-127.02443531602164,53.11884723574108],[-127.02463421990537,53.11871272344027],[-127.02486640821263,53.11859977739193],[-127.02510237733259,53.11848903918085],[-127.0252814185342,53.11834574253683],[-127.02543868576831,53.11819254056675],[-127.0255215366824,53.11801982296008],[-127.02554434134731,53.117840338057135],[-127.02559339774832,53.117663422315026],[-127.02565169558305,53.11759736926508],[-127.02576579517853,53.11751682081771],[-127.02604988407147,53.11746056982183],[-127.02634494899766,53.11743279227837],[-127.02648534756923,53.11739516030167],[-127.02657913149427,53.117325992856216],[-127.0266018770275,53.117144267060304],[-127.0266125054369,53.11696488753658],[-127.02666529903415,53.116787938767416],[-127.02676600872263,53.11661842665506],[-127.02683852555356,53.11644411233734],[-127.02687726306323,53.11626616493062],[-127.02691601392985,53.11608878212975],[-127.02698484292965,53.11599405845661],[-127.02711399620046,53.11595540278386],[-127.02738931860985,53.115885778012824],[-127.02761113018117,53.11577067527015],[-127.02782600317424,53.11563994476008],[-127.02808300913385,53.1155480666248],[-127.0283573298122,53.115476207163944],[-127.02861591438034,53.115411207236136],[-127.02892644144917,53.11536535981425],[-127.02922258151686,53.11534429780434],[-127.0295059774626,53.115337348371845],[-127.02981655367373,53.115332402621284],[-127.03011512247039,53.11533428395082],[-127.03041391044924,53.115344562238626],[-127.03070847633245,53.11537393484641],[-127.03100354673056,53.11542402796747],[-127.03133057691356,53.11551866348242],[-127.03144633040178,53.11535293328594],[-127.03153480708713,53.115181273435525],[-127.03158570687629,53.11500434758094],[-127.03155328852921,53.11482589857179],[-127.03144069362544,53.11465991923743],[-127.0312834899331,53.114506654920284],[-127.03106711682797,53.11438304064683],[-127.03081215781962,53.114288896644155],[-127.0306004454847,53.1141641203403],[-127.03044603248954,53.1140102747919],[-127.03031577036185,53.113848365780065],[-127.03021992845657,53.113678321826924],[-127.03014644616053,53.113504156568084],[-127.03000689754069,53.11334568975186],[-127.02982933876947,53.11320156519277],[-127.0295973377761,53.11308873405092],[-127.02933782675217,53.112999664523855],[-127.02908931415455,53.112900422728615],[-127.02886850133687,53.11278636327146],[-127.02876514214242,53.11261469822218],[-127.02858957055564,53.11247503670835],[-127.02835013295187,53.11236394417612],[-127.02812457325635,53.11224657194384],[-127.02790175945879,53.11212692534907],[-127.02767250065871,53.11201126076252],[-127.02742672894519,53.11190918582315],[-127.02716448503634,53.11182238538074],[-127.02689497469146,53.11174460290251],[-127.02664282782936,53.111649305013884],[-127.02643477333578,53.111520572085055],[-127.02629058854279,53.11136270589135],[-127.02614364625327,53.11120653979226],[-127.0259305861433,53.11106383807989],[-127.025768236305,53.11092853985004],[-127.02568729279471,53.11075443648838],[-127.02571479012755,53.110576030615924],[-127.02562920316679,53.110403652780946],[-127.0255529597723,53.110230064306144],[-127.0254841592955,53.11005529962389],[-127.02542188815384,53.10987934874153],[-127.02537363079267,53.10970216468144],[-127.02531228865162,53.10952620565714],[-127.02531536340352,53.10930487488801],[-127.02550882928325,53.10921859079532],[-127.02580277382596,53.109185229914445],[-127.02609473690812,53.10914795908893],[-127.02637779916651,53.10909059491059],[-127.02663860540223,53.109002603708504],[-127.02691875709688,53.10894134604715],[-127.02717476774995,53.10884891309248],[-127.02740307183466,53.10873263300631],[-127.02758393352569,53.108589871636376],[-127.02769591364917,53.10842305667703],[-127.0277515333862,53.10824721138814],[-127.027724722031,53.10806759153867],[-127.02768018529932,53.10788981106978],[-127.02770578798058,53.10771086503482],[-127.02771265381281,53.10753095235189],[-127.02773731319796,53.10735201447153],[-127.02771424428805,53.107172361997854],[-127.02772767932595,53.10699295690501],[-127.02772051945384,53.106813730843044],[-127.0277761098133,53.10663676506705],[-127.02777465888853,53.10646085099159],[-127.02786841292316,53.10631436401987],[-127.02782400390558,53.10610352155022],[-127.02779817608837,53.10592614302715],[-127.0278209509174,53.1057460918249],[-127.02782123357751,53.10556512458136],[-127.02780387295815,53.10538934873289],[-127.02784819530862,53.105210795423844],[-127.02775617856727,53.105042947783225],[-127.02758234952603,53.10489654600991],[-127.02738541566005,53.10476155032888],[-127.02718015210034,53.10463055312246],[-127.02696382768843,53.10450636601302],[-127.02669967833029,53.10441621947834],[-127.02645041477035,53.104322572472114],[-127.0263508954764,53.104153677278994],[-127.0261734282051,53.1040112224793],[-127.02597556007285,53.103876232567565],[-127.02577677744762,53.10374237081485],[-127.02556783649442,53.1036136438392],[-127.0253718292358,53.103478072014816],[-127.02517212249602,53.10334421726437],[-127.02495951147942,53.103218317950024],[-127.0247644374091,53.10308218123443],[-127.02454261067534,53.10296196383896],[-127.02432630272035,53.10283778074859],[-127.02410170544194,53.10271926288903],[-127.0239018168738,53.10257756369971],[-127.02367611855595,53.10245177545643],[-127.02349346124402,53.10232617885722],[-127.0233094849182,53.10218434088186],[-127.02310054550821,53.10205504479075],[-127.02291566929182,53.10191489034044],[-127.02278820414728,53.101750151394526],[-127.02278196842138,53.10156924034585],[-127.02283073381629,53.10138056524612],[-127.02281903457427,53.10120586000696],[-127.0226826511457,53.10105912694967],[-127.02249603171973,53.100924033874236],[-127.02227963188069,53.10079535664971],[-127.02205114940872,53.100669589381326],[-127.02182823818194,53.10054265295421],[-127.02161562414705,53.10041562710516],[-127.02136535976902,53.10031750486199],[-127.02108328428314,53.100258311569696],[-127.02078799520532,53.10023340416291],[-127.020485562842,53.100222013315175],[-127.02024621736396,53.1001893424046],[-127.02013408226378,53.09999981603925],[-127.0201559706382,53.09982089417114],[-127.0201993901903,53.09964291594875],[-127.02023251512544,53.09946446179401],[-127.02023848353421,53.099284556717],[-127.02019491521487,53.09910676453853],[-127.02005638056424,53.098947720875216],[-127.01994385946685,53.09878117342919],[-127.01987044520143,53.09860700032243],[-127.01982687912161,53.098429207940065],[-127.01971714501803,53.09826207144025],[-127.019523954156,53.09812478923337],[-127.01931137250855,53.09799831474615],[-127.01914873036823,53.09784788654423],[-127.01898699000589,53.09769632082051],[-127.0188012052771,53.09755561190808],[-127.01869613424408,53.09738731367862],[-127.01854462517045,53.09723286224209],[-127.01832559107937,53.09711036801858],[-127.01820658277182,53.096945551094535],[-127.01817237764558,53.09676767736029],[-127.01795702079244,53.09664235386296],[-127.01776015590958,53.096507341518134],[-127.01759472519234,53.09635749095803],[-127.01753065002829,53.0961821153078],[-127.01749550707449,53.096003684644664],[-127.01749493289822,53.095823844743215],[-127.01749622891639,53.095643979757234],[-127.01742841444405,53.09546863618787],[-127.01736713941328,53.095293236271125],[-127.01734133645806,53.09511416928241],[-127.01734637406788,53.09493428098588],[-127.01733737619753,53.0947545045318],[-127.017301292795,53.09457609074399],[-127.01742081152727,53.094411460446985],[-127.01763007874283,53.09428359140286],[-127.01788121689584,53.094186181150036],[-127.01812568069623,53.094083225061034],[-127.0182395436058,53.09391696622271],[-127.01826329380994,53.09373747229115],[-127.01828050520109,53.09355803467852],[-127.0182836681223,53.09337815333664],[-127.01826906927876,53.093198989787666],[-127.01827223243691,53.093019117372066],[-127.01827820825508,53.092839211736866],[-127.01825707114666,53.09266010447306],[-127.0181334060076,53.0924958920577],[-127.01791812453742,53.09237279987746],[-127.01768540725003,53.09226331313754],[-127.01738433631635,53.09226758193498],[-127.01709084257996,53.09223649162878],[-127.01679559838186,53.092211018452325],[-127.01649643837624,53.09221695386809],[-127.016212674248,53.09216281072459],[-127.0159496879238,53.092077668427514],[-127.01568580019799,53.09199420965358],[-127.0154209576028,53.0919102027034],[-127.01516892764313,53.09181375894962],[-127.01493614007622,53.09170090577634],[-127.01476799385287,53.09155331553837],[-127.01461927745949,53.091397149558325],[-127.01448635944305,53.091236374485526],[-127.01436551233724,53.09107156920065],[-127.01422609651017,53.0909130817542],[-127.01410246536388,53.09074942064132],[-127.01399928673675,53.0905805458535],[-127.0139473584983,53.09040337833146],[-127.01388890462928,53.09022739628832],[-127.01376899031979,53.09006258233992],[-127.01362958003904,53.089904094098806],[-127.01344383394277,53.089762820459796],[-127.01326087332258,53.08962095788047],[-127.01310938502499,53.089465378466045],[-127.0128867600459,53.089346822366544],[-127.01262468542193,53.08925998856858],[-127.0123553718811,53.0891832922867],[-127.01209787517672,53.08909193586992],[-127.01188444515151,53.08896657578107],[-127.01165997128274,53.088848042186136],[-127.01145576068089,53.088716999593714],[-127.01127558387807,53.088573433764594],[-127.01110836364583,53.08842470978749],[-127.01096154349466,53.088267967111825],[-127.0108212220476,53.088109483332154],[-127.01065393859558,53.08795796232485],[-127.01062361931088,53.08778453483556],[-127.01050846060292,53.087621917962124],[-127.01042945412024,53.087446100889416],[-127.01021527010893,53.087327476555814],[-127.00993332326595,53.08726937655169],[-127.00966674478572,53.087189289146394],[-127.00944907737829,53.08708133404349],[-127.00945040746488,53.086901477216195],[-127.00948451016373,53.08672301673281],[-127.00952793420616,53.08654391181373],[-127.00945833733694,53.08637026372394],[-127.00929020464756,53.08622154491179],[-127.00912858547328,53.086071084903374],[-127.00898547912976,53.08591318741442],[-127.00887210858266,53.08574663611811],[-127.0087792001946,53.08557598355421],[-127.00865186571072,53.085412348173925],[-127.00862428890262,53.085235534909145],[-127.00864620499621,53.08505605798916],[-127.00868686009777,53.084878097424834],[-127.0087593837447,53.0847032353853],[-127.00886198516507,53.08453483085725],[-127.0089843191782,53.084370748914914],[-127.00913584305019,53.08421481723994],[-127.0093736534473,53.08410857350386],[-127.00965558866493,53.08404957161882],[-127.00994341473583,53.084001733285135],[-127.01023520494367,53.08396393644577],[-127.01053098983037,53.08393619874143],[-127.0108148857421,53.08388110374227],[-127.01106121713762,53.08377982168528],[-127.01128468159973,53.083660814790456],[-127.01149581086354,53.08353406015562],[-127.011701220876,53.08340343660971],[-127.01190948209634,53.08327447359288],[-127.01210637576749,53.08313943998992],[-127.01232601378724,53.08301709315279],[-127.01259154342901,53.08293694295337],[-127.01286280188451,53.08286178108619],[-127.01314086542878,53.082797201102935],[-127.01342473704904,53.08274154411128],[-127.01371054605765,53.08268810196972],[-127.01399441620022,53.08263244360586],[-127.01427438664237,53.0825695298811],[-127.01452165639135,53.082469352906266],[-127.01472708039684,53.082339288540695],[-127.01493437129454,53.082209763559575],[-127.01518548592561,53.08211347857186],[-127.01540609081655,53.0819933586371],[-127.01562952015533,53.081873778755174],[-127.01581315946784,53.08173269402753],[-127.01598544444818,53.081586094847324],[-127.01615581830481,53.081437835465486],[-127.01633092657069,53.08129177621729],[-127.01643628706111,53.081123349684255],[-127.0163993182772,53.080946053588406],[-127.01643808069385,53.08076867067616],[-127.01655472492922,53.08060294382094],[-127.0166591418976,53.080433960354114],[-127.01666891615925,53.080256270963105],[-127.01666086661177,53.08007648484586],[-127.01664252646022,53.07989679623338],[-127.01666349181619,53.07971788094808],[-127.01665170321911,53.079538135918646],[-127.01667632574951,53.07935639218384],[-127.01692428440887,53.079285338601146],[-127.01720703452048,53.0793400531964],[-127.01750509562281,53.07933076291907],[-127.01771154349733,53.07920572217348],[-127.01785077583314,53.07904652261711],[-127.01793359614209,53.07887380637098],[-127.01795264404612,53.07869378665587],[-127.01786533848147,53.07852309208884],[-127.01777519479602,53.07835130133123],[-127.01764694542672,53.078189368075456],[-127.0175112736864,53.0780291749764],[-127.01743136750216,53.07785561041346],[-127.01729201215379,53.077697689910835],[-127.01714147897592,53.07754210662179],[-127.01700768081405,53.07738189678686],[-127.0168868619603,53.07721765755742],[-127.01681909278335,53.07704286748566],[-127.01674945480258,53.07686810241207],[-127.01663980355356,53.07670096087544],[-127.01654873976022,53.07652973279988],[-127.01664121690321,53.07636981616988],[-127.01670918630201,53.07620226640681],[-127.01675169570235,53.076025415378204],[-127.01676140131977,53.075844920205085],[-127.01668432761532,53.07567189536775],[-127.01652826231174,53.07551915575407],[-127.01640285132237,53.07535775237608],[-127.01627740113433,53.07519467282347],[-127.01617425146567,53.0750257894736],[-127.01603489678294,53.07486731154426],[-127.01586585771582,53.07471916490507],[-127.01567555644057,53.07458073017547],[-127.01547601632814,53.07444685684486],[-127.01530051238217,53.074301570877715],[-127.01515002702585,53.074146549271276],[-127.01502926467995,53.073983983865936],[-127.01478829078289,53.073876238527724],[-127.01489515322837,53.07377110737512],[-127.01499704466839,53.07361390783435],[-127.0150114232874,53.073433372459306],[-127.01518091956244,53.073289047560074],[-127.01542981838797,53.07314178970225],[-127.01542830336574,53.07307849496716],[-127.0150873404139,53.07312904546167],[-127.01479241545405,53.07315007357024],[-127.01450072423603,53.07311055339791],[-127.01421980673281,53.073053019837296],[-127.01401199395642,53.072924253136954],[-127.01389768271494,53.07275714886353],[-127.01379269254944,53.072588843896796],[-127.01358330693493,53.07247298098331],[-127.01328008806975,53.07249855881179],[-127.0129843847212,53.07252630357968],[-127.01268854014359,53.07250867019542],[-127.0124031100423,53.07245732969478],[-127.01212217446404,53.07239810600272],[-127.0118261440928,53.07237262806794],[-127.01153011407712,53.07234714939075],[-127.01124471316979,53.072296926427825],[-127.01098913560901,53.07220386584322],[-127.01075096542,53.072095532532224],[-127.0105192265058,53.07198209667348],[-127.01029667382451,53.07186241416861],[-127.01005943603137,53.07175350673074],[-127.00979296824312,53.0716739835525],[-127.0095346678326,53.07158374903392],[-127.00927262962145,53.07149353693042],[-127.00900873661494,53.07140390486329],[-127.00880297712084,53.07128184392695],[-127.0086608640135,53.07112393666279],[-127.00853536278048,53.0709569228116],[-127.00839416551553,53.07079844262692],[-127.00824184851307,53.070643427869065],[-127.00807840814363,53.07049298116913],[-127.00786972445076,53.070365896512],[-127.00763797607809,53.07025133454438],[-127.00740712951907,53.070135643862415],[-127.00722620959905,53.069996559746215],[-127.00716123499082,53.06981949887594],[-127.00698116615834,53.06967648063922],[-127.00682885657919,53.069522019777715],[-127.00669789246396,53.06936065334808],[-127.00656971410632,53.06919814245355],[-127.00644804500232,53.06903445537231],[-127.00627627967312,53.06888688299994],[-127.00610083022762,53.06874158290242],[-127.00593834707328,53.06859113401434],[-127.0057851312315,53.06843723529869],[-127.00567368736179,53.06827121916856],[-127.00548806245776,53.068129931278335],[-127.00530243700317,53.067989198903724],[-127.00512052618387,53.06784674928252],[-127.00491183782957,53.06771853886058],[-127.00465086675395,53.067632798762176],[-127.00435919639239,53.06759213307567],[-127.00405955877082,53.06757059309138],[-127.00379760899655,53.067522394110696],[-127.00377544613121,53.067336002816745],[-127.00380951551406,53.06715642175462],[-127.00377450752235,53.0669802337145],[-127.00361291324138,53.06682752393893],[-127.00340791973329,53.06669703832242],[-127.0031743872939,53.06658472393072],[-127.00290341880465,53.066510270647434],[-127.00261176935473,53.06647072109359],[-127.00231581251522,53.06644633958516],[-127.0020278116269,53.066402284306804],[-127.0017759486667,53.066305810712656],[-127.00159038490331,53.06616619257732],[-127.00149566624175,53.06599498357138],[-127.0014382396636,53.065818984927176],[-127.00141250689991,53.0656399115775],[-127.00128992750366,53.06547566205427],[-127.00103750159114,53.06539432387725],[-127.00073374258521,53.06539577775936],[-127.00043683648254,53.065410054904184],[-127.00000125343196,53.065370041835536],[-126.99986539467713,53.06535662474914],[-126.99960960849764,53.06525121521079],[-126.99931779582181,53.0652435997621],[-126.99901819803041,53.065262943180194],[-126.99871955526952,53.06528284252741],[-126.99843087434004,53.06524942524853],[-126.99814467540321,53.06520197465869],[-126.99784572956331,53.065208983301055],[-126.99754911374026,53.06523558599103],[-126.99724496837965,53.06526000140826],[-126.9969457117332,53.0652939041089],[-126.99667231315155,53.065353925727216],[-126.99644292852884,53.06545726865309],[-126.99624899665133,53.06559729985673],[-126.99606744162615,53.0657473025035],[-126.99588383235533,53.06588948713875],[-126.99570777694758,53.06603496052542],[-126.9955326476236,53.06618043478509],[-126.99538457404789,53.06632343061989],[-126.99515513434426,53.06646431497052],[-126.9949000528884,53.06654883055503],[-126.99462005610138,53.06660665276745],[-126.99433047485357,53.06665503464169],[-126.99403995283424,53.066702867914834],[-126.99375235932183,53.06675571390641],[-126.99347629280093,53.06682246486215],[-126.99321084112074,53.066903137495174],[-126.99295217390647,53.06699383760296],[-126.9926973207916,53.067088431545635],[-126.99244151302194,53.067181903412234],[-126.99218473782635,53.06727370646634],[-126.99192891481918,53.06736662151955],[-126.99167882913626,53.06746509067338],[-126.99143448071938,53.06756911396316],[-126.99118647126014,53.067676529163464],[-126.99095641967526,53.06779275769588],[-126.9907688235584,53.06792543813186],[-126.99065676601472,53.06809054589317],[-126.99059181696383,53.06827150216583],[-126.990546475448,53.06845117336172],[-126.99053022982322,53.06863620333554],[-126.9905083240483,53.06881903962096],[-126.99044968569704,53.0689904134912],[-126.9903034937613,53.06913507205216],[-126.99005559003827,53.06924753082965],[-126.9898180647657,53.069363819592674],[-126.9896804694986,53.06951680504746],[-126.98961269153814,53.06969666371811],[-126.98958512115998,53.069877306012636],[-126.98962105404382,53.070055175071055],[-126.98965889582955,53.070234713440016],[-126.98966682888127,53.07041449343445],[-126.98963504923799,53.070575000737726],[-126.98964066755333,53.070776099819135],[-126.98963828771296,53.07095428980356],[-126.9895610018185,53.07112806034521],[-126.98943299693174,53.071291059008814],[-126.98924285644722,53.07143608412398],[-126.98899921240147,53.07153113147143],[-126.98869565698698,53.071543193202174],[-126.98840758344507,53.07149686414622],[-126.98814292283234,53.07141279508691],[-126.98787821289928,53.07132591995552],[-126.98759811585494,53.071261028409396],[-126.98731243772575,53.071197303422835],[-126.98702407929989,53.07113920297666],[-126.98673695044049,53.07109341777992],[-126.98645406894451,53.07106945192454],[-126.98608995810838,53.071170537387566],[-126.98588072481319,53.07129835213218],[-126.98568935380902,53.071350374792736],[-126.9854123990725,53.07138069989877],[-126.98510632042895,53.07140454387269],[-126.9847631073543,53.07139899721512],[-126.98449536839291,53.07142364050037],[-126.9842307870127,53.071503164535294],[-126.98398839636363,53.0716127583414],[-126.98376837196898,53.07171936841559],[-126.98394969792642,53.07200024023101],[-126.98398934774751,53.07217807963952],[-126.98400018574262,53.072362882436394],[-126.98402952095746,53.072539687164344],[-126.98405238583742,53.072719342703024],[-126.98396935084178,53.0728875632349],[-126.9837840603064,53.0730409385567],[-126.98363690258721,53.07318616103184],[-126.98340691928429,53.073306855755064],[-126.9831838206535,53.07344261582645],[-126.9829675755529,53.07355143386949],[-126.98276876420118,53.07368643519741],[-126.98262085496341,53.07383949753375],[-126.98252291927726,53.07401120252003],[-126.98238354497026,53.07416924053354],[-126.98220834924818,53.07431525004573],[-126.98202086540584,53.0744551938617],[-126.98182392936461,53.0745907426417],[-126.98161467920741,53.074719105270596],[-126.98139213182567,53.07483916929068],[-126.98113883460547,53.074963414738676],[-126.98089711995111,53.07502257086187],[-126.9805825166394,53.075042556130235],[-126.9802856398119,53.07506126392264],[-126.98000673571076,53.075089351110975],[-126.97969188557839,53.07509868623129],[-126.97942153046435,53.075132303934154],[-126.9790940050867,53.07516023629693],[-126.97882286390335,53.07520001774091],[-126.97855165887358,53.07527790712656],[-126.97830522153744,53.07537575188425],[-126.97809029466694,53.07550247874791],[-126.97786472976648,53.07561359645235],[-126.9775880019766,53.07569544676937],[-126.97732656502279,53.0757917372001],[-126.97706336055359,53.07589252389844],[-126.97680108285802,53.07595240636494],[-126.97658776165461,53.07598610165926],[-126.97639188416179,53.0760062146239],[-126.9762516029015,53.07608581327571],[-126.97607231811904,53.07617693964567],[-126.9759900307803,53.0762577351084],[-126.97587138377298,53.07630241718011],[-126.9757324419423,53.07635903712825],[-126.9754776246133,53.07637795006812],[-126.97528374513072,53.07636274256196],[-126.9750719430909,53.07630061917853],[-126.97478185363053,53.07624866175334],[-126.97451140078772,53.07619710638535],[-126.97412097078063,53.07621377342569],[-126.97390239422747,53.07630409990644],[-126.97364693197194,53.07633534036338],[-126.97333213149368,53.07638835983822],[-126.97303351622031,53.07653593686844],[-126.97288752154469,53.07669289706276],[-126.97273190796531,53.07683816591274],[-126.97267992232426,53.07697642270459],[-126.97273497009664,53.07721633372309],[-126.97260172533979,53.07735862122521],[-126.97248228551904,53.07740946492641],[-126.97233703328854,53.07743587765359],[-126.97204735271752,53.0774842045898],[-126.97176253268468,53.07754033473168],[-126.97149605804836,53.07762152138064],[-126.97123245652122,53.07770605443252],[-126.97095731547141,53.07777667027761],[-126.97068011148359,53.077838893757985],[-126.97038369789331,53.07787887219101],[-126.97009109968705,53.0779221712509],[-126.96980711191961,53.07797437231563],[-126.96954238532922,53.078050502108084],[-126.96930747473748,53.07816336503607],[-126.96906969974121,53.07827400986293],[-126.96880701873683,53.0783579650865],[-126.96853476876339,53.0784330337127],[-126.96825771037729,53.078501973568],[-126.96797865379149,53.078565335318025],[-126.96768999221226,53.07861756055036],[-126.96738981813701,53.07865699742989],[-126.96709628435279,53.07870030560996],[-126.96693180655126,53.07874535369376],[-126.96689219304524,53.07881234654394],[-126.96685785586966,53.0789874343442],[-126.96684699970787,53.079208837496395],[-126.96675860186289,53.079350750983934],[-126.96677198496603,53.079527689279836],[-126.96682936516703,53.07970650860131],[-126.96685399258602,53.079884475386386],[-126.9667766226237,53.08005935046898],[-126.96674884612172,53.08023550496635],[-126.96680712904272,53.08041319629105],[-126.96684124613739,53.08059725288352],[-126.96677588257353,53.080765306293166],[-126.96656640323897,53.080886919734404],[-126.96631733611079,53.080995409943796],[-126.96606912086871,53.08109997518572],[-126.96581413782313,53.081194501263596],[-126.96555913888685,53.081289035870945],[-126.96532506564373,53.081398521931646],[-126.96510343047964,53.081520787794695],[-126.96489601420988,53.081651910489896],[-126.9647131356829,53.081792352659896],[-126.96457369261405,53.08195204511139],[-126.96445314026293,53.082119436002195],[-126.96429625530506,53.08225237718119],[-126.96404989756351,53.0823569228441],[-126.96378541332956,53.08244536334603],[-126.9635206202417,53.082520914918064],[-126.9632420899077,53.08260891293583],[-126.963036800599,53.08271031571991],[-126.96277776760398,53.08283344661442],[-126.96253230691661,53.082936296398884],[-126.96225887090438,53.083043290963964],[-126.9621977991449,53.0831950629439],[-126.96227666120855,53.083373709031875],[-126.96241187491627,53.0835631015544],[-126.96241120948571,53.083740154218454],[-126.9622548610886,53.08389662864832],[-126.96200352676917,53.0839888753241],[-126.96172934825177,53.084062822784524],[-126.96145136318798,53.084134559471075],[-126.96118770116618,53.08421906979485],[-126.9609593243786,53.08433353845574],[-126.96075480802719,53.08446966786642],[-126.96054165258165,53.08459634693432],[-126.96029118952406,53.08468578588826],[-126.96001196613184,53.08474408256312],[-126.95971840783822,53.084788483643436],[-126.95942485951768,53.08483401342251],[-126.95915354450277,53.08491129318853],[-126.95889458057356,53.08499687172822],[-126.95862210594254,53.08506463946502],[-126.95832929426606,53.08510118714591],[-126.95803355828261,53.08513216402117],[-126.95772817858371,53.08515088330746],[-126.95742660429093,53.08517182103011],[-126.95716247246918,53.0852361471464],[-126.95694725551287,53.085354992407524],[-126.95675316537114,53.085497753521615],[-126.95654861717038,53.0856333109074],[-126.9563125992125,53.08574223840973],[-126.95605471626047,53.08583508990133],[-126.95578817217311,53.08591680538662],[-126.95548958217002,53.08598812971367],[-126.95525560223435,53.08606285733413],[-126.95507466893004,53.08620887083676],[-126.95492389197337,53.086365845809276],[-126.95478438694887,53.08652441478631],[-126.95465053896665,53.08668573475849],[-126.95452422280943,53.086848670050834],[-126.95440449399464,53.08701380203744],[-126.9542903869155,53.087179444268],[-126.95417817421442,53.08734619161548],[-126.95406878345942,53.08751403659562],[-126.95396127687599,53.087681866239535],[-126.95385657958667,53.08785022887588],[-126.95375470452161,53.08801969812821],[-126.95365564107023,53.088189135613284],[-126.95356032973758,53.08835910746862],[-126.9534753611297,53.088531236860725],[-126.95343075580263,53.08871032852733],[-126.95337955928059,53.08888778803381],[-126.9532663981969,53.08905397718447],[-126.95307973186156,53.08919611604502],[-126.95282066668118,53.08927888468613],[-126.95254552056322,53.08935393855623],[-126.95230856897804,53.08946397668822],[-126.95205153192276,53.0895545710835],[-126.95178780480131,53.0896384955171],[-126.95152122858781,53.08972020120003],[-126.95124985544682,53.08979690691189],[-126.95097653557546,53.089870257054685],[-126.9507060880973,53.0899469540459],[-126.95044900943188,53.090035304123255],[-126.9502523644969,53.0901915209239],[-126.94998161227977,53.09025476315879],[-126.94969096634077,53.09030640340801],[-126.94944812814508,53.09040472171108],[-126.94938842921546,53.090578885846924],[-126.94937096758441,53.09075943386836],[-126.94937405084576,53.090939261018924],[-126.94940611753786,53.09111829053708],[-126.94948933315733,53.09132604321648],[-126.9493222028999,53.09138060737283],[-126.9490061571892,53.09142572661861],[-126.94877661590468,53.09153346573648],[-126.94858809084496,53.09167728835027],[-126.94837208977502,53.091805078782635],[-126.9481021670666,53.091863836679906],[-126.94781318227746,53.09182300948203],[-126.94745282797665,53.09176931626016],[-126.94724414040341,53.09172224113331],[-126.9471400000144,53.09166592813746],[-126.94700800627828,53.09161880261972],[-126.94670761521054,53.09156966454754],[-126.94641675111714,53.09152829322104],[-126.9461220097125,53.091480793717786],[-126.94602114133549,53.091487203994745],[-126.9458012267692,53.09152370119795],[-126.94556791684455,53.091462817885215],[-126.9453077871989,53.091373570321785],[-126.94505776527663,53.091275841758815],[-126.94482515477476,53.09116228584693],[-126.94462485534413,53.09102998670439],[-126.94446973173793,53.090909643174484],[-126.9443801028365,53.090875066865095],[-126.94411359067811,53.090792590962465],[-126.94401167611646,53.09075194506025],[-126.94376614690438,53.09068835895754],[-126.94363374331785,53.09066419963638],[-126.94334063650643,53.090648055414945],[-126.94303687573262,53.09069921914304],[-126.94274596921784,53.090739638850955],[-126.94246094670036,53.09079233688602],[-126.94217695328885,53.0908489524048],[-126.94185951643739,53.090916474477545],[-126.94167817109752,53.09083667589492],[-126.94169479734684,53.090616361132504],[-126.94159777475267,53.090164434732436],[-126.94134159088226,53.08995693419051],[-126.94105417676873,53.08964883286897],[-126.94093835740607,53.08944525145849],[-126.94066553804609,53.08928887112694],[-126.94042827811121,53.08913331874406],[-126.94013570555967,53.08892946679784],[-126.93988524703006,53.08876898036982],[-126.93961363579396,53.08858233331283],[-126.93948342697294,53.08844609751078],[-126.93938017005266,53.08834439313313],[-126.93934215925796,53.08827465681335],[-126.9395322782038,53.087991332820515],[-126.93964079750579,53.087824064534146],[-126.93973896106101,53.08765408160732],[-126.93982211623342,53.08748142107286],[-126.93991184562381,53.087310384496945],[-126.94001564191066,53.08714147701043],[-126.94013187337683,53.08698479646662],[-126.94020071941645,53.086799914465075],[-126.94023045567768,53.0866226316524],[-126.94024852983833,53.08650987747436],[-126.94027933907759,53.08646536626306],[-126.94031268772335,53.086408517794275],[-126.9403217551437,53.086269497958625],[-126.94035332317706,53.086090515175414],[-126.94041020567913,53.085914136729954],[-126.94047269525745,53.08573827835996],[-126.94051646202819,53.08556088367217],[-126.94053585403773,53.08538144188938],[-126.94053373615975,53.08520160655749],[-126.94051386131721,53.08502192152327],[-126.94015381846637,53.08493738437757],[-126.93986121077444,53.08489937268695],[-126.93956689488022,53.08486865292953],[-126.93927516871501,53.08482783589981],[-126.93898105217757,53.08480607747598],[-126.93868041089004,53.084827515678384],[-126.93850735806119,53.084825528780044],[-126.9383882514756,53.08480966662681],[-126.9381016509092,53.0847475156216],[-126.93781786339002,53.084685332632795],[-126.93753417710406,53.08466965531522],[-126.93725339922457,53.08474359793936],[-126.93711816670758,53.08476035826914],[-126.93696117729566,53.08476552973119],[-126.93666072296574,53.08475278017185],[-126.93635817392466,53.08477255124726],[-126.93607877162071,53.084739463541204],[-126.9358213153165,53.08464177444785],[-126.93552810732456,53.08461832391799],[-126.9352245668499,53.084635858854476],[-126.93493170499272,53.084628091747916],[-126.9346549213476,53.084543999619555],[-126.9343934703558,53.084434568828236],[-126.93422626835927,53.08440059833124],[-126.9339806727549,53.08458574476495],[-126.9338760371295,53.084633078989185],[-126.93371193777531,53.084655101550446],[-126.93341321416182,53.08467875227598],[-126.9331141082471,53.08468504129271],[-126.93283304229486,53.08461834271505],[-126.93254645342913,53.08464133964913],[-126.93226071632974,53.084702418734544],[-126.93198259118607,53.08477016931106],[-126.93168428419763,53.084812861627356],[-126.93138520148793,53.0848202576551],[-126.93114480923035,53.08473195305354],[-126.93093051632499,53.084597491021874],[-126.93069244420131,53.08448731211726],[-126.93042509331802,53.084406497477495],[-126.93014772159869,53.08433808712212],[-126.92986052813072,53.084290487982436],[-126.92956885202095,53.08425132302117],[-126.92928247671249,53.08419866911287],[-126.92899519917019,53.08414714215346],[-126.92870472218877,53.084120291633425],[-126.92840692963476,53.084143357643974],[-126.92810909747665,53.08416531163172],[-126.92781289245765,53.08417548188871],[-126.92751941979719,53.08414024341849],[-126.92724390274925,53.08407013539196],[-126.92696570882508,53.08400620624195],[-126.92667751743933,53.0839558013884],[-126.9263858342371,53.08391606390451],[-126.92609087391989,53.08389820648842],[-126.92579089385617,53.08390672494476],[-126.92549390645969,53.08392417458535],[-126.9251979808175,53.08394778263785],[-126.92490022431389,53.083972524822975],[-126.92460380951874,53.083973724330995],[-126.92431310464598,53.08393622414096],[-126.92402221712331,53.08389031610578],[-126.92363739813372,53.083781826505245],[-126.9233655659141,53.083709439594706],[-126.92310186388633,53.08362353304979],[-126.92283003626828,53.0835505801256],[-126.92255817025624,53.083476506336304],[-126.92229541393579,53.08339059958392],[-126.92203540713585,53.083302420741475],[-126.92177081680025,53.08321876823137],[-126.92150349091357,53.08313793334704],[-126.92122622984411,53.08307286294497],[-126.9209363154388,53.08302861610793],[-126.92064290796283,53.082995045431225],[-126.92034603796571,53.082974947526786],[-126.9200500134561,53.082950360119256],[-126.919754871067,53.08292296822833],[-126.91945975043461,53.082897251766546],[-126.91916270240246,53.08286818793436],[-126.91886600389897,53.08285592879248],[-126.91857097591176,53.082877272222454],[-126.91825080877146,53.08290329247623],[-126.91802594771677,53.08296946668802],[-126.91774695967493,53.082954270240975],[-126.91740855012424,53.08300227601632],[-126.91712054496513,53.08304541634799],[-126.91685643308395,53.08306987711242],[-126.91667725027821,53.08321581753596],[-126.91649100745524,53.083381982201175],[-126.91625456310193,53.083474580069435],[-126.91601277120064,53.08358010066849],[-126.91571701497102,53.08361097165179],[-126.91543988535531,53.08368202812679],[-126.9152435003776,53.083811856173384],[-126.91520710020605,53.08398806325544],[-126.91519143528203,53.08417250927361],[-126.9151391447696,53.084349404133775],[-126.91507655220242,53.08452524923385],[-126.91514022589227,53.08478920388105],[-126.91508720593438,53.08488934272864],[-126.91502034957247,53.08495429612998],[-126.91480613961588,53.08508145550801],[-126.9145824093455,53.08520084438515],[-126.9143927240577,53.08533789800448],[-126.91421066242104,53.085481615556475],[-126.91397097845442,53.08555518448806],[-126.91364518745851,53.085582356087514],[-126.91335240589403,53.085622153353796],[-126.91307131424017,53.08568371457475],[-126.91279508521129,53.08575364608776],[-126.91250088922013,53.08577160609738],[-126.9121997095294,53.0857688848123],[-126.91208126069279,53.08578324571536],[-126.91189853007003,53.08576617172255],[-126.91179152114793,53.08570368255358],[-126.91154329604917,53.08564117126846],[-126.91141466376361,53.085617511701784],[-126.91133092657272,53.08559350572246],[-126.91123910401276,53.08558524960484],[-126.911081446437,53.08555957244698],[-126.91080579347984,53.085613242539615],[-126.91054175663471,53.08568530689197],[-126.91023781904481,53.08577225402364],[-126.90998905284421,53.08585876649322],[-126.90977629735285,53.085836317763956],[-126.90955201439148,53.08571309984971],[-126.90933060536389,53.085592665224404],[-126.90907518652342,53.08549938482052],[-126.90880242853862,53.085426406955044],[-126.90852146505951,53.08536357641802],[-126.90825238898874,53.085287772112096],[-126.9080365238558,53.085163930841816],[-126.90784744636979,53.08502419579313],[-126.90766670558084,53.08488103477621],[-126.90745116035835,53.08472861172741],[-126.90732559336408,53.08458502641033],[-126.9071191561575,53.084464472681475],[-126.90687188085838,53.08435824329125],[-126.90660714601424,53.08426670541909],[-126.9063702250509,53.08416319240032],[-126.9061534168182,53.084038799143464],[-126.90586530701816,53.08394688310647],[-126.90567752845583,53.08382394272927],[-126.90544122878114,53.08370585607212],[-126.90518568639028,53.08360584501823],[-126.90495804731788,53.083499452237234],[-126.90480416908997,53.08334319935026],[-126.9046215876921,53.083200603555866],[-126.90443808917945,53.08305914400256],[-126.90425827476808,53.08291428537923],[-126.90408466452605,53.08275370039987],[-126.90382869002407,53.082677221084055],[-126.90371756767887,53.08264052854573],[-126.90361395746989,53.08256176265835],[-126.90324377125634,53.082522577613126],[-126.9029194824388,53.08244381276731],[-126.9026331435519,53.08238997374538],[-126.90245312219078,53.08232356077212],[-126.90239347817845,53.082288714844715],[-126.90223963448493,53.0821341346807],[-126.9019951005638,53.082067648914304],[-126.90171862679709,53.08194986156083],[-126.90143410002808,53.08189376474287],[-126.90114690774895,53.0818438550305],[-126.9008606345566,53.081792808110734],[-126.90058247156355,53.08172769640396],[-126.90031064430475,53.08165301565244],[-126.90001864505686,53.08159640763782],[-126.89971829263632,53.081587489971746],[-126.89945466993672,53.08163431893136],[-126.89918824209884,53.08172599025763],[-126.89890707270322,53.08178360114203],[-126.8986092566407,53.081805471721175],[-126.89832134418347,53.08185416816754],[-126.8980294689399,53.08189167966471],[-126.89773250815749,53.08191018886689],[-126.89743653372686,53.081931486695325],[-126.8971369171167,53.08195672884393],[-126.89684119089986,53.08198979343885],[-126.89656760243798,53.082052379107026],[-126.89632293695735,53.08215620466403],[-126.89610207704848,53.082280018847015],[-126.89591236878147,53.08241816338224],[-126.89573403220561,53.08256350039824],[-126.89561139355605,53.082645673697584],[-126.89550821434764,53.08267446928737],[-126.89521249358616,53.08270808549039],[-126.89492719644157,53.08265925791108],[-126.89462828530827,53.08262959085976],[-126.89446048085622,53.082653827967285],[-126.89437655165978,53.082709369749594],[-126.89425189764414,53.08287279142712],[-126.89376513693773,53.08271568195971],[-126.89349517639562,53.08263984198857],[-126.89321346816506,53.08258370412756],[-126.89292363371,53.082541638229216],[-126.89262930938249,53.08250800510214],[-126.89233411690023,53.082477174665804],[-126.89203804143618,53.082449155989444],[-126.89174048525388,53.08243964111409],[-126.89154431404596,53.08244896539714],[-126.89128759246456,53.082602730834545],[-126.89104555532772,53.082699246465616],[-126.89071862253296,53.08275997969753],[-126.89044014971002,53.08281362356515],[-126.89015019012446,53.08276481963001],[-126.8898541964592,53.08274072122935],[-126.88953215394915,53.082722976692885],[-126.8892768138236,53.0827204167584],[-126.88896964552056,53.08278771958652],[-126.88873737719217,53.082903761849614],[-126.88847921104147,53.082989179140235],[-126.88818054438529,53.08301607660879],[-126.88789258185997,53.082973984322116],[-126.88758673293526,53.08297011501088],[-126.88732783916817,53.082976541848275],[-126.88706551817074,53.08308664800377],[-126.8868438671656,53.08312977186016],[-126.88653127322583,53.08329571624215],[-126.8862844511864,53.08334294529921],[-126.88582757753171,53.08349596777482],[-126.88553866447893,53.08354239029291],[-126.88524506027609,53.08358773567614],[-126.88498289771161,53.083661414006016],[-126.88482248567274,53.08381668468809],[-126.88464028364845,53.083958116067855],[-126.88439634530852,53.084053511531046],[-126.88413835026142,53.0841478821676],[-126.8840574856506,53.08421628415762],[-126.88395558411595,53.08426242380452],[-126.88369513632952,53.08437418457766],[-126.88342461731371,53.08445072768207],[-126.8831617486624,53.084536168289006],[-126.88290081071062,53.08462384390612],[-126.8826303085899,53.084702061352665],[-126.88240461811557,53.08477601715014],[-126.88219282224317,53.08493391783956],[-126.88213511039406,53.084992051796725],[-126.88196977695034,53.085045951211285],[-126.88169166567683,53.08511750004938],[-126.88146646818323,53.08517072492367],[-126.8812071256362,53.08533625746858],[-126.88099741352566,53.085459403808564],[-126.88072694909799,53.08553985758177],[-126.88045734521761,53.08557100081379],[-126.88015412295024,53.08546960609931],[-126.87987661624136,53.085390994542855],[-126.87961112208258,53.08530501392052],[-126.87933758133575,53.08532665489442],[-126.8790073231159,53.08536441363937],[-126.87866298614347,53.08544484747597],[-126.87851379016298,53.085555769204376],[-126.87836941250457,53.08571876420498],[-126.87821831858865,53.085873956228376],[-126.87810678770713,53.08604230938132],[-126.87798957278781,53.086207898828285],[-126.87780157675057,53.08634207433031],[-126.87754851408677,53.086449848957834],[-126.87734921422548,53.086580190273615],[-126.87713766907268,53.086706695791634],[-126.87694127198823,53.086841496963466],[-126.8767590655243,53.08698460096749],[-126.87656266247483,53.087119957298505],[-126.8763530438166,53.08724869707237],[-126.8761960953238,53.08739272438068],[-126.87598386985687,53.087531567579305],[-126.8758271539265,53.08768624216747],[-126.87570424582569,53.087848509696656],[-126.87563586276607,53.088023819405926],[-126.8756180847302,53.088204912503265],[-126.87561896511082,53.08838307046798],[-126.87572078361379,53.088558804072036],[-126.87576280773501,53.088736657073426],[-126.87577773057563,53.088915831442456],[-126.87579172245508,53.08909556847559],[-126.87581600807484,53.08927523815841],[-126.87592048011516,53.08944309917654],[-126.87600727476746,53.0896150174829],[-126.87609218496566,53.089786949685426],[-126.87613889155723,53.089965332480354],[-126.87616223985411,53.09014444422028],[-126.87613411500556,53.09032225231337],[-126.87607511220226,53.09049973352524],[-126.87603296765204,53.090677654456634],[-126.87599924284217,53.09085606871885],[-126.8759730102331,53.091034983195456],[-126.87593273149844,53.091213445981495],[-126.87588496317697,53.091390843717285],[-126.8758221710146,53.09156611170447],[-126.8757340329726,53.091736529571925],[-126.87563093171771,53.09190704926319],[-126.87553813540987,53.09207805723948],[-126.8754528277419,53.09225013017216],[-126.87537784836826,53.09242381178903],[-126.87531226605172,53.09259965582599],[-126.87525042403301,53.09277548106689],[-126.87520111596972,53.092969132917254],[-126.87511359962078,53.09312497867531],[-126.87503958290316,53.09329976440476],[-126.87496177530917,53.09347290182351],[-126.87487835947654,53.093645524906265],[-126.87478460201133,53.0938159744411],[-126.87467111650508,53.09398265253044],[-126.87454141577635,53.09413376310135],[-126.87438594445106,53.0943052336777],[-126.87431178424957,53.0944733056596],[-126.87414473018471,53.09462748890863],[-126.87397602396193,53.0947923336052],[-126.87379815321002,53.094921388939284],[-126.87356384886344,53.09503461799109],[-126.87334468782764,53.09515725464902],[-126.8731226812055,53.09527767085293],[-126.87289592387377,53.09539419538725],[-126.87266536349982,53.095508515463365],[-126.87248225821281,53.0956555357823],[-126.87233629239839,53.0957899558806],[-126.87215147560292,53.095944831960054],[-126.87192211780602,53.09607202320255],[-126.87174832191695,53.09621785309298],[-126.87160644163694,53.09636848521699],[-126.87141764504369,53.096512748902065],[-126.87122818404946,53.09666989871974],[-126.87114935787793,53.09683967907046],[-126.87107912842048,53.097017795441715],[-126.87099380431839,53.09719042933214],[-126.87092255042285,53.0973646357613],[-126.87086913099152,53.097541507542985],[-126.87083163789801,53.0977199472014],[-126.87080912053263,53.097898841232244],[-126.87078848495409,53.098078277154805],[-126.87075848474574,53.09825721730413],[-126.8707247317127,53.09843562929342],[-126.87069004721565,53.09861461285898],[-126.8706562936101,53.09879302479269],[-126.87062536451892,53.09897197167051],[-126.87059442038586,53.0991509275951],[-126.87056160874293,53.09932933250313],[-126.87052411277418,53.099507771883346],[-126.87045566293287,53.099682512886496],[-126.87036471096779,53.09985406692793],[-126.87023954249113,53.10000009181978],[-126.87022765531025,53.10001306983674],[-126.87009061002927,53.10017262826766],[-126.869962031786,53.10033492998624],[-126.86983439537639,53.10049722461166],[-126.86970206579429,53.10065843308762],[-126.86956691029766,53.10081910640439],[-126.86942702342763,53.10097756433879],[-126.86931708184709,53.10113581081366],[-126.86913219278489,53.10128956146005],[-126.86894050977257,53.10143103600107],[-126.86880062211996,53.10158893733438],[-126.86870308120022,53.101759408777724],[-126.86862420111278,53.101927510907664],[-126.86846659997249,53.102088903514364],[-126.86831825958582,53.10224574577306],[-126.8681548257795,53.10239653133374],[-126.86797058323062,53.10253627320554],[-126.86775895340978,53.10266388113937],[-126.86754544376451,53.10279039091625],[-126.86735555068347,53.10292848797988],[-126.86715625660608,53.10306441264526],[-126.86697859379066,53.1032063366792],[-126.86674990655115,53.10332287158264],[-126.8669961344425,53.10342358893404],[-126.86728956135829,53.10354413780295],[-126.86740569482859,53.103687832740555],[-126.86752492929651,53.10384550681672],[-126.86770468742492,53.10398873448446],[-126.86785196358491,53.10414509081728],[-126.86798529362903,53.104306022481595],[-126.86807767612981,53.10447678359959],[-126.86811126919869,53.104655264253125],[-126.86809246683224,53.104833564929166],[-126.86805120229826,53.10501146579108],[-126.86807263886571,53.10519059145004],[-126.8680678981726,53.105369909322114],[-126.86805474249446,53.105549853711004],[-126.86804436244886,53.10572864821451],[-126.86803963313872,53.10590853068747],[-126.86806481194697,53.106087628780585],[-126.86812641267342,53.106263097827906],[-126.86815627687673,53.1064421614616],[-126.8681655723564,53.10662193190776],[-126.86813272176397,53.10679921503873],[-126.8681204709676,53.106978032125475],[-126.86807078122428,53.10715543885834],[-126.86803867428266,53.10732375230077],[-126.86806600121969,53.10742495401868],[-126.86800725404673,53.10761699391248],[-126.86760560929493,53.10774152294571],[-126.86730271190532,53.10779977142086],[-126.86704235400553,53.10787899695005],[-126.8667803303199,53.107968318763405],[-126.86662341363102,53.108118497957435],[-126.86640411907165,53.10823888013949],[-126.86617256601349,53.108354304906776],[-126.86591791874663,53.10843853286066],[-126.86569198788915,53.108554480215446],[-126.86552902875268,53.1086839680736],[-126.86540702062969,53.10884902141099],[-126.86517154801429,53.10895607343629],[-126.86489128540256,53.10902366986057],[-126.86459091495192,53.10906844657204],[-126.86430451862252,53.10906438238835],[-126.86398147298178,53.10905217700611],[-126.863701560848,53.10904525820313],[-126.86340748648898,53.10903171907567],[-126.86311597908862,53.10905233172647],[-126.86281774794567,53.10906403756703],[-126.8625192622015,53.10906397461517],[-126.86221995088009,53.109068954769036],[-126.86192394891496,53.10905262920575],[-126.86163223364566,53.10901665815657],[-126.86133523225632,53.10899753263654],[-126.86103993508202,53.10896942983635],[-126.86074468011698,53.108944122800075],[-126.86045116377937,53.108911523506634],[-126.86015672762244,53.108880050694964],[-126.85986179189896,53.10882392944984],[-126.85958571511857,53.10877495818102],[-126.85932474016583,53.10868664950021],[-126.85904482056637,53.10863265810777],[-126.85875749709028,53.10858264612419],[-126.85847023092767,53.108535429835676],[-126.85819655192803,53.10846570391523],[-126.85790235854324,53.10844598468061],[-126.85761422967083,53.10849513688133],[-126.8573201282076,53.108525847671466],[-126.85702161219332,53.10852408583238],[-126.8567231225848,53.10852288778778],[-126.8564250933901,53.1085452164655],[-126.85613876926732,53.108544493552046],[-126.85594889426473,53.10845454203075],[-126.85580336197238,53.108429823807796],[-126.85573816315255,53.108397800844536],[-126.85570090171531,53.108359973056416],[-126.85564516004602,53.10833292838674],[-126.8553987685928,53.108224901015916],[-126.85518112653249,53.10810377476401],[-126.85499953723459,53.1079605418108],[-126.85475607653534,53.10785809448363],[-126.85451074601686,53.10775566017333],[-126.8542654280638,53.10765379000532],[-126.85401643685168,53.10755529844801],[-126.85372461080793,53.107513706205715],[-126.85342771752482,53.10749848641005],[-126.85313077557369,53.10748158096713],[-126.85283145178413,53.107485417004646],[-126.85253208305467,53.10748702054261],[-126.85227560849378,53.10743452041688],[-126.85194396328714,53.107459885967266],[-126.85164792015446,53.10744072929899],[-126.85135884367352,53.107395749884596],[-126.85107700428385,53.10733839200459],[-126.85078899566646,53.10729956186356],[-126.85052991927748,53.10721122919345],[-126.85031163802324,53.10710354481928],[-126.85005043440005,53.10700233600599],[-126.8497559182518,53.10696580015073],[-126.84945826669876,53.106959531022156],[-126.84916019230708,53.10697848023855],[-126.84886307939064,53.10699910705094],[-126.84859022127019,53.107016188500204],[-126.84827300809773,53.106967486227866],[-126.84789954347306,53.10691301927671],[-126.84767626981252,53.10693030770135],[-126.84747823832522,53.10703985267551],[-126.8473548311856,53.1072317894244],[-126.84708940569699,53.10752726626828],[-126.84688560698237,53.10739482056014],[-126.84666526925145,53.107278189110666],[-126.84641637629404,53.10718360724519],[-126.8461436873104,53.107115522776034],[-126.84594267031349,53.106981943986646],[-126.84568365437063,53.10689527662288],[-126.84543012566584,53.10680296688321],[-126.84515097813055,53.106738852608046],[-126.84488093667079,53.106662902719506],[-126.84460543242027,53.10659372329492],[-126.8443235739394,53.10653466427619],[-126.84403628205725,53.10648461645752],[-126.84373862366888,53.106477777230644],[-126.84343947340025,53.106489996631325],[-126.84314693764347,53.10645846806652],[-126.84285518542106,53.10641964537358],[-126.84256168928408,53.10638644592507],[-126.84226419869177,53.1063880011652],[-126.84196637445807,53.106372759295475],[-126.84166785200556,53.106369838331325],[-126.84136951143104,53.106375323651086],[-126.8410702500553,53.10638193528206],[-126.84077172777772,53.10637902101781],[-126.84047484691936,53.1063637597211],[-126.8401754078391,53.106361406244986],[-126.8398628722191,53.10635914505766],[-126.83982601019518,53.10619861779619],[-126.83984289456521,53.106011927911524],[-126.839802874938,53.105834050608266],[-126.83972832909845,53.10566034482123],[-126.83963696777832,53.105487869963405],[-126.83953724022084,53.10531770443259],[-126.83943376772962,53.105148121175596],[-126.83931722588802,53.10497918638896],[-126.83917753574856,53.10482275042934],[-126.83892127913228,53.10473268720564],[-126.83875191233042,53.104589342776755],[-126.8386381403818,53.10441871135451],[-126.83860662009329,53.10424413477535],[-126.83864887987389,53.104063432172275],[-126.83866964322526,53.103883437826724],[-126.83865019138405,53.10370373774887],[-126.83863540908287,53.103523995557644],[-126.8386355492079,53.10334191541155],[-126.83856571520045,53.10316985157262],[-126.83846228896273,53.103001387511135],[-126.83834579740497,53.10283525704428],[-126.83821905811126,53.10267087541483],[-126.83808490334509,53.102509916728636],[-126.83790248603391,53.102368339807654],[-126.83772572666793,53.102228972497805],[-126.83765587985815,53.102055222888104],[-126.83760460441911,53.101875183270195],[-126.83749768714881,53.10171906870053],[-126.83730536854752,53.101549557061446],[-126.83694217435442,53.101348751241375],[-126.83667108831798,53.101264390726996],[-126.83639101459234,53.10119858618379],[-126.8361070859752,53.101174823103776],[-126.83581160172572,53.101228456630736],[-126.83551707814833,53.10123669726316],[-126.83521984901633,53.10120182091696],[-126.83493798438465,53.10113994292437],[-126.83468177015176,53.10105043498445],[-126.83444290203633,53.10093950527745],[-126.83422159399274,53.100817254963594],[-126.83400864652108,53.10069157473272],[-126.83379845496479,53.10056364261],[-126.83359011315164,53.100434567587996],[-126.83338453818844,53.10030379639833],[-126.83318082810906,53.1001718911888],[-126.83298081272602,53.10003828329732],[-126.83292393339497,53.10000002186413],[-126.8327826731336,53.0999040971098],[-126.83258822804035,53.09976819930808],[-126.83241230780511,53.09962209504132],[-126.83224657075165,53.099470872002],[-126.83207345121555,53.09932473853828],[-126.83185872012233,53.09920355801073],[-126.83160521655354,53.09910785703379],[-126.83146371449648,53.09895198030169],[-126.83135559882798,53.09878130184913],[-126.83126430835677,53.09860994021312],[-126.83124394754246,53.09843024501256],[-126.83122360869005,53.09825166118937],[-126.83113697795791,53.09807971086734],[-126.8310242518757,53.097911870247664],[-126.83088735900134,53.09775259880397],[-126.83072999382088,53.097597953160914],[-126.83054943797124,53.0974535549268],[-126.83033931661095,53.097327848181365],[-126.83009218073498,53.09722257931089],[-126.82983952201923,53.09712182180823],[-126.82961556543003,53.097006304538716],[-126.82944905230097,53.09686180604511],[-126.82932608447194,53.09669626770794],[-126.82920865252848,53.096526773065015],[-126.82906062469861,53.09637150387719],[-126.82887271814774,53.09623331298631],[-126.82866437984961,53.096102552901726],[-126.82844032632495,53.095980866750196],[-126.8282033846071,53.095870475667965],[-126.82795085884882,53.095775880535484],[-126.82767899708,53.0956965517538],[-126.82739975964608,53.095623432352106],[-126.82712697885151,53.095545220295364],[-126.82687357337991,53.095452870065955],[-126.8266514931339,53.09533676932008],[-126.8264386284669,53.0952127600908],[-126.82622666012642,53.09508706791732],[-126.82601558795517,53.09495968384115],[-126.82580452101818,53.09483173461026],[-126.82559526736627,53.0947015402632],[-126.82538788939439,53.09457076770394],[-126.82518233536356,53.09443829678565],[-126.82497956310657,53.094304129795155],[-126.82477958343048,53.09416882244789],[-126.82458238136154,53.09403237486218],[-126.82438887778513,53.093893660109615],[-126.82419909447307,53.09375379857411],[-126.824013031404,53.093612790273106],[-126.8238325371639,53.093469501818916],[-126.82365576311906,53.09332506663894],[-126.82348549651633,53.093178909549984],[-126.82331988174184,53.09303103454326],[-126.82316263771688,53.09288029521467],[-126.82301466649962,53.092726138501014],[-126.8228750549529,53.09256855286602],[-126.82274195477443,53.092408689653055],[-126.8226144079595,53.09224653762361],[-126.82249150209931,53.09208212107359],[-126.8223732585398,53.09191654245847],[-126.82225683874101,53.09174927472941],[-126.82214230511549,53.09158199375378],[-126.82202868928262,53.09141415049558],[-126.82191414249995,53.091246869370984],[-126.82179866896684,53.09107959457074],[-126.82167947752745,53.0909134660198],[-126.82155752159095,53.090749032856486],[-126.82143091613759,53.09058631714063],[-126.82129407217884,53.09042647822241],[-126.82113680162325,53.09027349523733],[-126.82096466403546,53.090126226890256],[-126.82078604347195,53.08998180013702],[-126.82060281017925,53.089840201961216],[-126.82041770386274,53.089699181244654],[-126.82022981187403,53.089558744313884],[-126.82004287445525,53.089418856235284],[-126.8198587034996,53.08927726340166],[-126.81967731008913,53.089134539454896],[-126.8195024167941,53.08898896436378],[-126.81933959080796,53.08883825851291],[-126.819186958015,53.08868300864964],[-126.81903711319153,53.0885271745163],[-126.81888171724236,53.08837361969822],[-126.81871333531497,53.08822631302879],[-126.81852175846494,53.088088139921766],[-126.8183088890976,53.08796075442729],[-126.81808033356084,53.08784468236021],[-126.81783981044333,53.08773877737257],[-126.81758825556399,53.087641912396485],[-126.81732931437108,53.0875507005841],[-126.8170667569556,53.0874651158173],[-126.81680327964342,53.08738065735014],[-126.81653704458452,53.08729901417603],[-126.81626898784226,53.08721906825335],[-126.81599911172262,53.08714249585292],[-126.81572648201455,53.0870681828911],[-126.81545206933994,53.08699836369193],[-126.81517310835511,53.086934742584305],[-126.81489141085719,53.08687505703508],[-126.8146088146699,53.086817618055086],[-126.8143262018536,53.08675849325403],[-126.81404448521296,53.08669768530726],[-126.81376459646155,53.08663462306181],[-126.8134983827669,53.086553537674625],[-126.81325418554871,53.0864493339636],[-126.81305247038634,53.086317935968744],[-126.81287480318969,53.08617181438159],[-126.81271107988532,53.0860216703085],[-126.81255756028476,53.085867529527256],[-126.81241334273066,53.08570997198258],[-126.81227654831895,53.08555011321689],[-126.81215371258217,53.085386240996236],[-126.81204018496744,53.08522006362425],[-126.81192759008776,53.08505332394529],[-126.81181778280553,53.08488600025316],[-126.81171077389932,53.08471865722389],[-126.81160562934339,53.084550180759436],[-126.81150419981529,53.08438111393184],[-126.81141210384375,53.08421030660676],[-126.81133956082031,53.08403544758458],[-126.81129221227904,53.083858165497006],[-126.81127008384404,53.08367903390289],[-126.8112628936816,53.08349867919317],[-126.81126132417543,53.08331885061402],[-126.81126350515898,53.08313955204292],[-126.81126661776086,53.08295968231287],[-126.81127345536403,53.082779795949946],[-126.8112803076969,53.082599900502515],[-126.81128996813078,53.0824205504965],[-126.81129867543194,53.08224065123643],[-126.81130552757077,53.08206075573214],[-126.81131517714559,53.08188084996232],[-126.81132762377787,53.08170091600018],[-126.81134757547362,53.08152149522061],[-126.8113768826955,53.08134313069028],[-126.81141556461421,53.081165266490494],[-126.81146359102455,53.08098789385458],[-126.81151725208628,53.08081103825354],[-126.81157559055816,53.080634715219745],[-126.81163766815563,53.08045836644779],[-126.8117016258402,53.08028256944855],[-126.81176652104547,53.08010732173167],[-126.81183705065483,53.07993259101909],[-126.8119131848564,53.07975838646956],[-126.81199121396686,53.07958473356965],[-126.8120682892695,53.07941052240841],[-126.81213975468526,53.07923634974103],[-126.81220371908714,53.0790611080547],[-126.81225362019649,53.07888427773701],[-126.81228199440163,53.07870591908991],[-126.81229819057054,53.07852596784725],[-126.8123125017608,53.07834602058029],[-126.81233805682514,53.07816656071977],[-126.8123860653406,53.0779886316972],[-126.81243034886246,53.07781071928802],[-126.81243906102453,53.07763137517796],[-126.81241502922188,53.07745057993317],[-126.8123555811058,53.07727562188884],[-126.81222530120503,53.0771123650681],[-126.81204030387215,53.0769718858114],[-126.8118164163714,53.07685185197599],[-126.81159070752106,53.07673350653802],[-126.81133923864294,53.07663774813291],[-126.81107765597542,53.07655045810566],[-126.81083907754694,53.0764434048665],[-126.8106198455711,53.07632165154136],[-126.81038491903915,53.07621065496584],[-126.81013251786963,53.07611433565362],[-126.80987094108366,53.076027051891195],[-126.80964156698872,53.07591208944996],[-126.80945841670993,53.07577047296143],[-126.80932725724007,53.07560889524791],[-126.80919515649838,53.075447323828705],[-126.80900276882396,53.07531138149872],[-126.8087964640992,53.07518057203384],[-126.80860959562148,53.07503897966946],[-126.80840333613429,53.07491041025989],[-126.8081712136861,53.07479826956795],[-126.80792893030606,53.0746929121191],[-126.80768112918659,53.07459151823133],[-126.80742963918135,53.07449351062354],[-126.80716985147617,53.074401161820916],[-126.80690359293635,53.07431221823499],[-126.80663826280087,53.074223267712114],[-126.8063794164925,53.074131475497076],[-126.80613169678504,53.074033995182276],[-126.80590153979055,53.07392631874427],[-126.80570561132313,53.073799915204646],[-126.80557727957247,53.07363886977812],[-126.80547391814868,53.07346309603545],[-126.8053501482036,53.07329641659753],[-126.80516700668677,53.07315311704905],[-126.80499225032553,53.07300863953986],[-126.80490859985886,53.0728372130433],[-126.80483141123706,53.072661816115186],[-126.80474392747077,53.07248536873753],[-126.80461103290708,53.07232940013819],[-126.80438451098772,53.072215528578475],[-126.8041310988311,53.07211360072157],[-126.80389529586724,53.07200315299611],[-126.8036696561322,53.07188591248001],[-126.80345415417064,53.07176132362118],[-126.80324236040939,53.07163502387642],[-126.80303240542763,53.07150702597505],[-126.80283263065644,53.07137392060795],[-126.8026393334205,53.07123685351545],[-126.80244602675317,53.07109922142201],[-126.80225182581682,53.070963271394945],[-126.80205668412506,53.07082733639888],[-126.8018550567403,53.07069479773172],[-126.80164974933471,53.07056453371793],[-126.80144256936578,53.0704348378347],[-126.80123262575275,53.07030683664613],[-126.80102176686725,53.07017940603754],[-126.80080720854643,53.07005480593948],[-126.8005760219535,53.06993983817753],[-126.80035038740877,53.06982259128341],[-126.80015063328788,53.06968891647577],[-126.8000008962085,53.069580683688685],[-126.79995729949681,53.06954903941497],[-126.79977042829594,53.06940520090363],[-126.79960032316878,53.06925732225215],[-126.79945256200567,53.06910536577539],[-126.7994370941409,53.06892899156672],[-126.79942246896508,53.06874812055247],[-126.79934534220713,53.068574404690196],[-126.79925889511505,53.06840130762148],[-126.79915197731651,53.06823395164232],[-126.79899206812115,53.06808152095085],[-126.79875081971748,53.06797782296136],[-126.79850860317174,53.0678718899666],[-126.79829589082024,53.067745022765095],[-126.79807768188124,53.06762323919064],[-126.79781711983439,53.06753647776104],[-126.7975620447082,53.06744239974196],[-126.79731524828892,53.06734153313992],[-126.79703639713233,53.06727618353836],[-126.79678599088676,53.06718207234253],[-126.79656774710877,53.06705804516237],[-126.79633541494263,53.06693075098417],[-126.79614403857094,53.066794216022075],[-126.79610911922752,53.066626927646496],[-126.79619991128534,53.06643470487538],[-126.79617082039631,53.0662791472435],[-126.79590850033804,53.06619687559241],[-126.7956255213515,53.066110260418526],[-126.79542761633965,53.06597376825451],[-126.7952825669505,53.06581507396698],[-126.79521389157118,53.06564185413489],[-126.79520486156608,53.06545926839591],[-126.7952641422258,53.06528126056078],[-126.79529731163792,53.0651056785453],[-126.79519316594407,53.064934938564356],[-126.79508344513847,53.06476591233044],[-126.79511668391974,53.06459481197505],[-126.79518361266172,53.064425161061706],[-126.79523710628528,53.06423767205395],[-126.79530407598051,53.06407026181834],[-126.79541588813042,53.0639025494966],[-126.79550802900943,53.0637321637481],[-126.79549718167362,53.063552395879945],[-126.79542381232557,53.063377522302275],[-126.79527601318337,53.06322164319986],[-126.79524649753006,53.06304312151573],[-126.79526182838177,53.062863733054165],[-126.79528182856468,53.0626837483768],[-126.7952924791134,53.06250439139223],[-126.79529095706268,53.0623234400496],[-126.79529033483921,53.06214023259763],[-126.7952719812723,53.061958829823325],[-126.79521545311924,53.06178552784208],[-126.79510028054206,53.0616243907829],[-126.7949376462192,53.06147364895532],[-126.79475731350469,53.06132639658125],[-126.79458904930262,53.06117513636995],[-126.79445520162702,53.061014680099866],[-126.79433991859901,53.060847375586036],[-126.79424232540052,53.06067602561666],[-126.79416710344837,53.0605022929957],[-126.79413951560655,53.06032655468679],[-126.79416884296441,53.06014538669587],[-126.79418135608769,53.05996546126438],[-126.79416864626687,53.05978569649059],[-126.79416901896394,53.059605852674],[-126.79419464986502,53.05942695052775],[-126.79419390061524,53.05918716112293],[-126.7941839869648,53.05900738642859],[-126.79413861142085,53.058829526540826],[-126.79403359621237,53.05866158775846],[-126.79388490221646,53.058506277403374],[-126.79369996288585,53.05836128635058],[-126.79350941393406,53.058216897452745],[-126.79335345756338,53.058072840571576],[-126.79321118025814,53.057910198268914],[-126.79308481277761,53.05774912524657],[-126.79304129703736,53.057571252356034],[-126.79304258487683,53.05738971691265],[-126.79303644541602,53.05721159294342],[-126.79295566408675,53.05703901715315],[-126.79286090184718,53.0568687672857],[-126.79276145060199,53.05669799302761],[-126.7926685379013,53.05652661899223],[-126.79259335507338,53.056353440568785],[-126.79253305545197,53.05617735636039],[-126.7924811627303,53.056000659894124],[-126.79243579753657,53.055822799043256],[-126.79239321794975,53.05564436367808],[-126.79235064909562,53.055466483995886],[-126.79230808059833,53.05528860428004],[-126.79230472358354,53.05510877611924],[-126.79232753874832,53.054929337056926],[-126.79238311087092,53.05475303974473],[-126.79248343060598,53.05457028356489],[-126.79248869415467,53.05440216759422],[-126.79242467537796,53.054226108117355],[-126.7923224680391,53.05405703706915],[-126.79219794221972,53.05389370940341],[-126.79207340698802,53.05372982587359],[-126.79196376954955,53.05356304540741],[-126.79185876560808,53.05339454846252],[-126.79175470428052,53.05322604509193],[-126.79165158555568,53.0530575352983],[-126.7915475258768,53.05288903171233],[-126.79144067755699,53.0527216672564],[-126.79133790588233,53.052571639235104],[-126.79120279046091,53.052391582297325],[-126.7910940702514,53.05222310950304],[-126.7909834777522,53.05205520492958],[-126.79086084203215,53.05189242782634],[-126.79066598094111,53.051764871031516],[-126.79045422068361,53.05163294490641],[-126.79025089848835,53.05150208245711],[-126.79005401616907,53.05136613861556],[-126.7898625945739,53.05122230516939],[-126.78975302433007,53.05105831892636],[-126.789672232268,53.05088461997565],[-126.7896212891453,53.05070735073063],[-126.78960203353188,53.050526516857865],[-126.78962120405637,53.05035158443866],[-126.7897291762895,53.050178299065344],[-126.78992640325204,53.0500318651251],[-126.78998489336256,53.04986115164145],[-126.79002735819044,53.04968326632418],[-126.79006606934966,53.04950372079979],[-126.79001142662452,53.04932928217459],[-126.78993250966792,53.049155005941934],[-126.78987688899741,53.048977767935725],[-126.78985487962278,53.04879919342801],[-126.78987023845501,53.04862035990917],[-126.78989959235481,53.048440876936205],[-126.78992148737913,53.04826144384696],[-126.78992935151088,53.04808154883534],[-126.78993347865365,53.04790166984632],[-126.79016736318898,53.04771745626713],[-126.79014996445645,53.04753604498117],[-126.79017832715408,53.04735320682236],[-126.79039388048875,53.04723803322624],[-126.79065463340064,53.04714271727988],[-126.79092125577357,53.04706081688824],[-126.79119936437534,53.04699451752432],[-126.79147077346363,53.04691930704193],[-126.7917391356439,53.046830660888354],[-126.7919414007547,53.046705488628035],[-126.7920917705683,53.04655264171057],[-126.79222324726724,53.046388724915914],[-126.79234628106799,53.046222614574525],[-126.79247216124848,53.046059290813275],[-126.79259709884288,53.04589597322487],[-126.7927201717636,53.04573211221519],[-126.79284042330377,53.045567705251734],[-126.79295784311132,53.045402196622895],[-126.79307152988117,53.045236148182425],[-126.79318144354528,53.04506901338491],[-126.7932885299616,53.04490021216568],[-126.79338717405413,53.044729226483774],[-126.79346896739919,53.04455723342759],[-126.79352268887133,53.044382067380745],[-126.7935193275742,53.04420223811762],[-126.79350753113167,53.04402135396174],[-126.79351351091744,53.04384146186463],[-126.79352043238784,53.04366157238156],[-126.7935282908052,53.043482232370366],[-126.79353706521582,53.0433023214265],[-126.79354773321865,53.04312296248676],[-126.79355931735051,53.04294304157697],[-126.79356810207332,53.042763695258365],[-126.79357221328263,53.04258381558677],[-126.79356885208566,53.04240399510031],[-126.7935617544959,53.04222419075177],[-126.79355092089591,53.04204442046703],[-126.79353449344146,53.041865243562384],[-126.79350871505572,53.041685564748896],[-126.79349415601351,53.04150637524209],[-126.7935057503177,53.04132700988953],[-126.7935360462598,53.04114863932788],[-126.79357475574217,53.04097021216881],[-126.7936125130074,53.040791235587896],[-126.79363998800709,53.04061231915084],[-126.79365905364313,53.0404329034445],[-126.79367532453004,53.040253506508755],[-126.79368878575902,53.04007412844548],[-126.79369942697714,53.039894213534026],[-126.79370821486525,53.03971430210131],[-126.79371233574192,53.03953498679054],[-126.79370897419287,53.039355165988916],[-126.79370187651938,53.03917536132973],[-126.79369664705831,53.03899555305226],[-126.79369607994421,53.03881570443739],[-126.79369270796523,53.03863531887471],[-126.79369308249252,53.03845547285402],[-126.79370561657169,53.038276100831766],[-126.79374058227741,53.03809825426709],[-126.79381952508923,53.03792403828285],[-126.79389566243955,53.03774928530357],[-126.79391849289387,53.03757152025553],[-126.79389549949897,53.03739126655643],[-126.79386222989673,53.03721052616816],[-126.79385048021608,53.037031317340634],[-126.79390142318263,53.03685841006789],[-126.79402348139166,53.03669230339023],[-126.79413428964844,53.03652404013175],[-126.79421792146853,53.0363514684798],[-126.79429219689447,53.03617728337772],[-126.79435146162882,53.036000402352784],[-126.79440701551894,53.03582410204901],[-126.79452630147817,53.03566025447972],[-126.79469255941565,53.03551010182945],[-126.79487106500255,53.03536603393977],[-126.79505427324126,53.035224166214455],[-126.79532128760513,53.035018426775515],[-126.79562913906871,53.03479896475976],[-126.79582179081244,53.034662079055295],[-126.79601347894624,53.034524078965745],[-126.79620140926367,53.03438498334783],[-126.79638082082805,53.034240342142944],[-126.79651889258942,53.03408197727099],[-126.79661748360299,53.033910987913096],[-126.79663750644241,53.033733240803315],[-126.79659959323975,53.03355477319336],[-126.7965691660764,53.033376246057955],[-126.79652938575074,53.03319779099605],[-126.79648495435102,53.03301992309121],[-126.7964909305665,53.03284059437686],[-126.79655301136341,53.03266480438908],[-126.79663382125341,53.03249169377337],[-126.79681513759817,53.03234872413653],[-126.79682812054418,53.032144695846924],[-126.79687709375203,53.03196731776417],[-126.79693262736902,53.03179157168119],[-126.796873275503,53.03161492509446],[-126.79682791796391,53.031437063410024],[-126.79678814879428,53.031259163957145],[-126.79677357948934,53.031079973765046],[-126.79692015192444,53.030927709215135],[-126.79712688679977,53.03079632857985],[-126.79730913101795,53.03065390750873],[-126.7973198536216,53.0304784728288],[-126.79726801445345,53.030304016650426],[-126.79732725842955,53.030127124561034],[-126.79738090366102,53.029949714459946],[-126.79742239128235,53.02977183068056],[-126.79744610796291,53.0295929374493],[-126.79745767188918,53.029413014736996],[-126.7974617653321,53.02923313352897],[-126.79746212381598,53.02905328650895],[-126.79746248212852,53.02887343050675],[-126.79746003617728,53.02869303764289],[-126.79745293500842,53.02851379677811],[-126.79743742261304,53.02833461274143],[-126.7974032291831,53.028154434380376],[-126.79730851373068,53.02798419418551],[-126.79715524939066,53.02782947250256],[-126.79697968580582,53.027679939259215],[-126.79679946847686,53.02753156669794],[-126.79662855816515,53.02738144570259],[-126.79648556642177,53.02722608900771],[-126.79638631707678,53.02706315775806],[-126.79633639537876,53.02689092904574],[-126.79632277066979,53.0267117319874],[-126.79633147734393,53.02652902251952],[-126.79634669598194,53.02634459272575],[-126.79635356041761,53.026162451446176],[-126.79634363474642,53.025982108790664],[-126.79633747991349,53.0258028612216],[-126.79634810633657,53.02562294457098],[-126.79636997277626,53.02544406362468],[-126.79639462221216,53.0252646080724],[-126.79641553669542,53.02508517770682],[-126.79644109093366,53.02490459543906],[-126.79646571874586,53.02472401939925],[-126.79648102019617,53.02454407105708],[-126.79647583321328,53.02436705792347],[-126.79637923099459,53.024195144105015],[-126.79617140910358,53.02406768257031],[-126.79593130613034,53.02396116429709],[-126.79568006963689,53.02385921182171],[-126.79543531430274,53.02375384447728],[-126.79521459405744,53.02363543268672],[-126.79502714056075,53.023498311581015],[-126.79486651977248,53.02334755372898],[-126.79471509602273,53.02319001931372],[-126.79459049437916,53.02301829258504],[-126.79442143539868,53.02286591458408],[-126.79418228033138,53.022759951130155],[-126.79393118517764,53.02266415257382],[-126.79370491487612,53.02254801641678],[-126.79353870660312,53.02239841487852],[-126.79336510839411,53.022252233438614],[-126.79323601715502,53.022090055700744],[-126.7931143794801,53.02192615134766],[-126.79299458465825,53.02176167867508],[-126.7928757213023,53.02159663484913],[-126.7927596671578,53.021431572016105],[-126.7926519565176,53.02126364711848],[-126.79250616037281,53.02110662776569],[-126.79234647333594,53.02095530432176],[-126.79216269171737,53.020813671690405],[-126.7919456466771,53.02069074682661],[-126.79169912485833,53.02058931001977],[-126.79144253012221,53.02049802531489],[-126.79118866716581,53.02040336005404],[-126.7909531952508,53.0202934389053],[-126.79076386138512,53.02015408243614],[-126.7905819137883,53.02001018495637],[-126.79040739447319,53.0198640052659],[-126.79026536654807,53.0197080784145],[-126.79017161855869,53.019536695960056],[-126.79011508430439,53.01935890557534],[-126.79008467388824,53.019179263825976],[-126.79009252144218,53.01899880105534],[-126.79014524181667,53.018821399389054],[-126.7902194361655,53.01864440962744],[-126.79032647824648,53.01847617317987],[-126.79048904336078,53.01833108737139],[-126.7907192659551,53.01821020912805],[-126.79092601018645,53.0180816349482],[-126.79104528520377,53.017918353786264],[-126.7911073042988,53.0177392128245],[-126.79114039693583,53.01756137741239],[-126.79115665934906,53.01738142269283],[-126.79116917246697,53.01720148413344],[-126.79119197207015,53.017022041321866],[-126.79123439308626,53.01684303163551],[-126.79125440511699,53.01666472803123],[-126.79119977295207,53.01648804566421],[-126.79115630736824,53.016310167798814],[-126.79114644186261,53.016130943985],[-126.79114401887743,53.01595110547095],[-126.7911425370297,53.0157712695901],[-126.79113826206071,53.01559144345951],[-126.79111625416449,53.01541230100888],[-126.79109983692751,53.015232565241725],[-126.79109088739375,53.0150527704056],[-126.79109407599518,53.01487345890608],[-126.79110286990769,53.014693553993546],[-126.79111165915899,53.01451420489148],[-126.79111671895333,53.01433431601929],[-126.79111150349088,53.01415450500975],[-126.7910913633373,53.01397534988134],[-126.79105256492512,53.013796875667595],[-126.79100632038734,53.013619580889376],[-126.79095447548238,53.01344231466819],[-126.79089797743141,53.0132662091389],[-126.79083682003274,53.01309012584371],[-126.79077288086047,53.012914625916714],[-126.79070613450224,53.01273914475945],[-126.79063845832496,53.012564234547526],[-126.79057079747258,53.012389315215295],[-126.79050312240963,53.01221440488963],[-126.79043637826553,53.012038923507326],[-126.79037057553637,53.01186343576414],[-126.79029917890205,53.01168910601769],[-126.79022220779115,53.011515369363636],[-126.79014616339433,53.0113416354018],[-126.79007943242968,53.01116670945841],[-126.79006676506195,53.010987503818434],[-126.79006807009908,53.01080708399545],[-126.79008153722793,53.01062770324646],[-126.79010433789702,53.01044825994961],[-126.79013088232061,53.01026935631233],[-126.79015742635397,53.01009044368687],[-126.79017930052748,53.009911006521705],[-126.79018808235256,53.00973110125059],[-126.79018846095705,53.00955068749584],[-126.79021314811777,53.00937235198401],[-126.79028175109396,53.00919596331426],[-126.79036529275231,53.00902059503704],[-126.79042084875044,53.00884541424433],[-126.79040173359192,53.008671289673686],[-126.79031355732157,53.00849707209849],[-126.79022910011594,53.008322829524545],[-126.7902098968929,53.008143111592695],[-126.7902168219367,53.00796377437111],[-126.7902349301976,53.00778267686079],[-126.7903204297384,53.00761234237027],[-126.79043496204699,53.007446851282694],[-126.79055885760638,53.00728297366514],[-126.79068557006096,53.00711964177541],[-126.79081040003169,53.006956322350725],[-126.7909408645409,53.00679408555021],[-126.79107505676008,53.00663238834437],[-126.7912074066825,53.0064712591261],[-126.7913341096409,53.00630848229396],[-126.79144770868308,53.00614299630767],[-126.79153878914572,53.00597205849178],[-126.79159145609597,53.00579297865361],[-126.79160025637636,53.00561362847208],[-126.79157356743944,53.00543395172798],[-126.79151890664573,53.00525502747803],[-126.79143075968743,53.005083051345736],[-126.79130364078618,53.00492254235131],[-126.7911448925552,53.0047684130308],[-126.79097966182606,53.00461655914757],[-126.79083115759013,53.004460675342344],[-126.7907216729891,53.00429500934264],[-126.79066141788974,53.00411612212051],[-126.79064685237175,53.00393524318231],[-126.79070056088845,53.003762315206615],[-126.79081688521782,53.003593449563326],[-126.7909098441069,53.003422499358074],[-126.79099342404538,53.00324993559628],[-126.79107139799203,53.00307627982562],[-126.7911446874922,53.002902099607056],[-126.79121515899206,53.002727382425924],[-126.79129124382747,53.00255261854793],[-126.79127299565233,53.00237457012896],[-126.79117366796717,53.00220323335273],[-126.79096506437115,53.00207688763733],[-126.7907342487674,53.00196133145445],[-126.79049881785207,53.00184805586923],[-126.79026801968963,53.001732498658036],[-126.7900538696278,53.00160955021684],[-126.78987675010536,53.00146954475677],[-126.78975608928258,53.001304508313176],[-126.78964373710616,53.00113493380692],[-126.78950360386497,53.00097619511515],[-126.78935326177748,53.000820877343344],[-126.78920292095533,53.000665568328984],[-126.78905257074737,53.000509694410304],[-126.78891707906418,53.00034979439328],[-126.78883921449781,53.00017719136116],[-126.788781796213,52.999999960232174],[-126.78878419304299,52.99997865331636],[-126.788820015728,52.99979688087519],[-126.78885677869931,52.99961510211076],[-126.78888517737379,52.99943562042189],[-126.78892197690396,52.9992566472649],[-126.78893825202258,52.99907724663938],[-126.78895262505088,52.99889673814561],[-126.78895581559185,52.998716304456075],[-126.78893477207052,52.998538274051214],[-126.78888016236652,52.99836102401704],[-126.78879293935468,52.99818679804763],[-126.78866862206317,52.99802514644415],[-126.7884412865483,52.99789443913839],[-126.78844951128895,52.99773414203996],[-126.78854619921542,52.99756316814482],[-126.78833937352162,52.997431202878765],[-126.78818625662947,52.99727591092226],[-126.78807582906137,52.99710856291259],[-126.78801281969194,52.99693136850664],[-126.78797024488486,52.99674899937979],[-126.78790915462044,52.99657459798053],[-126.78777476584047,52.99642254200852],[-126.78752451718579,52.99631327690708],[-126.78726165319165,52.996228183393306],[-126.78698686074101,52.99615438363407],[-126.78670399016994,52.996097436800106],[-126.7864124119566,52.99607417358486],[-126.786111054443,52.99607673911285],[-126.78581580664229,52.99605686061681],[-126.78552220770526,52.99602519987977],[-126.78522687757354,52.99600082919761],[-126.78492991972301,52.99598935970583],[-126.78463210425606,52.99598237747329],[-126.7843342831395,52.995974273952115],[-126.78402811924208,52.99596958688253],[-126.783774822279,52.99589675730242],[-126.7835790094734,52.99575350474929],[-126.78330268489775,52.99569650628336],[-126.78300131511087,52.995699072926264],[-126.78271682534842,52.99575642592101],[-126.78245242103554,52.995839982904656],[-126.78220132125216,52.99593746267716],[-126.78195788500346,52.99604496727706],[-126.78183782242715,52.99616398856764],[-126.78182544923594,52.9963030217948],[-126.78189029865128,52.99637879077375],[-126.78203219759322,52.99643219300039],[-126.78223619219325,52.99656418802903],[-126.78244669142066,52.996695018961645],[-126.782634947446,52.99683328538133],[-126.78275741343158,52.996997196722916],[-126.78277658010705,52.99717691705442],[-126.78269016181545,52.99734893850872],[-126.78254378837794,52.99750847571232],[-126.78237290594062,52.9976547195053],[-126.78219074294441,52.99779656453941],[-126.78200391034748,52.99793787547446],[-126.78182175512926,52.998080275650985],[-126.78165182453431,52.9982281973473],[-126.7814941437725,52.99838219625195],[-126.78133927902971,52.99853674103175],[-126.78117686136542,52.9986874181066],[-126.78099274120571,52.99882478286088],[-126.7807350343616,52.998918941245925],[-126.78048317181853,52.99902649826781],[-126.78023418689665,52.999137962177976],[-126.78007150586723,52.99927462774997],[-126.78001954376884,52.99944305725503],[-126.7800248236842,52.999629037193905],[-126.78003478241212,52.99981610673108],[-126.78002509111224,52.99999994452755],[-126.78011122262309,53.00016690457259],[-126.78025832050878,53.00030039979867],[-126.78028246457407,53.00044591425518],[-126.78023815786058,53.00062549878415],[-126.78020322802575,53.00080669760459],[-126.78022609784863,53.00098528177515],[-126.78025366155016,53.001164946469736],[-126.78024205321057,53.00134599988285],[-126.78025278936325,53.00152409951418],[-126.78033714063831,53.001695544365376],[-126.78044755529743,53.00186401969877],[-126.780534762015,53.00203881615882],[-126.78057351572946,53.00221785080582],[-126.78049262588146,53.002387027504994],[-126.78039309225998,53.002557457048994],[-126.78027767001117,53.0027263062875],[-126.78014627211775,53.00288965823849],[-126.77999794177755,53.00304583384239],[-126.77983171780933,53.00319372778841],[-126.77964951222825,53.00333500373207],[-126.7794541480443,53.003471328275964],[-126.77924845269611,53.003603794275215],[-126.77903613390171,53.003731821379944],[-126.77882189596454,53.00385705485608],[-126.77860480872997,53.00398007456626],[-126.77838398157179,53.00410198901346],[-126.77815935408184,53.00422113117017],[-126.77793190241407,53.00433861514342],[-126.77770065486607,53.00445275302728],[-126.77746656266143,53.00456411225953],[-126.77722959039878,53.00467157248954],[-126.77698120283313,53.0047673370015],[-126.77669948778433,53.00482746233356],[-126.77641878421895,53.004891497828964],[-126.7761552364671,53.004975034142575],[-126.77589551281869,53.00506359172968],[-126.77563960273442,53.00515659695337],[-126.7753865398091,53.005251832986865],[-126.77513633950205,53.00535096714999],[-126.77489842636926,53.005458984563475],[-126.77470210108932,53.0055947424484],[-126.77462870883191,53.00576722703555],[-126.77457967295177,53.00594459860979],[-126.77453813355926,53.00612360623817],[-126.77449190967499,53.00630207983076],[-126.77443071671452,53.00647784578797],[-126.7743423587369,53.00664875199996],[-126.77423152976547,53.00681588815382],[-126.77411883317572,53.0069830274762],[-126.77402392223605,53.0071534205973],[-126.77395336259121,53.00732757130814],[-126.7738940278845,53.00750388942561],[-126.77383376684483,53.00768021356994],[-126.77377184376385,53.0074060814235],[-126.77372658354894,53.00722764373747],[-126.77368320539621,53.007049202634974],[-126.77364541224725,53.006870715897136],[-126.7736169673644,53.006692176771054],[-126.7736034401268,53.006513530799474],[-126.7736113860135,53.00633475291151],[-126.77363892776201,53.00615528168672],[-126.77367765358015,53.005975737061426],[-126.77371919645286,53.005796729720466],[-126.7737542137732,53.005617774124325],[-126.77377336807054,53.00543947838379],[-126.77375147943984,53.00526257249029],[-126.77365965097287,53.00508948714184],[-126.77356319500166,53.004918108432484],[-126.77345096388748,53.0047513243321],[-126.77329882102964,53.004597119118095],[-126.77312998311618,53.00444863495778],[-126.77294352960888,53.004306980453315],[-126.77284341678634,53.00413955154319],[-126.77276930271456,53.003964672959384],[-126.77261990106129,53.00380653136499],[-126.77240027375767,53.00368806944124],[-126.77214112730748,53.00360291814072],[-126.77186722350872,53.00352739217556],[-126.77159425127307,53.00345130368032],[-126.77132680318701,53.00337180775563],[-126.77106119695793,53.0032900670132],[-126.7708065821794,53.003197603955165],[-126.77056297875791,53.00309386272004],[-126.77031568970665,53.00299350676233],[-126.77004733138874,53.00291457866092],[-126.76978724833855,53.00282830775899],[-126.7695518887536,53.002716110851246],[-126.76934882975345,53.002584088321136],[-126.76926085383155,53.00241545656303],[-126.76926218608867,53.002231674756565],[-126.76915842075817,53.00206762817073],[-126.76899604555794,53.00191348406914],[-126.76880223276918,53.001776362197326],[-126.76855123776933,53.001676026700665],[-126.76832704523416,53.00156150444852],[-126.76818606983076,53.001403867035954],[-126.76806917539062,53.00123597851235],[-126.76797271037658,53.00106236293015],[-126.76784939960552,53.000901239366684],[-126.76763444358402,53.00078106175774],[-126.76739168628718,53.00067170561239],[-126.7671960732574,53.00053682495915],[-126.76701801201354,53.00039230945453],[-126.76685753274297,53.000239835349554],[-126.76665548516185,53.000110607445464],[-126.76641831284402,53.000000092411746],[-126.76625642255942,52.99997537149872],[-126.76595818838227,52.99994648910052],[-126.7656585071416,52.9999400356863],[-126.76537214955569,52.99989650729467],[-126.76509559582696,52.99982770628198],[-126.7648118046451,52.99977072202236],[-126.76451704339934,52.99972724607178],[-126.76422321336108,52.99968320754951],[-126.76394498282201,52.99962394403451],[-126.76369702539618,52.99953590480914],[-126.76348850165941,52.999409510393846],[-126.7632992501193,52.99926449698191],[-126.76310545246288,52.999125680295535],[-126.76290890959302,52.9989902427567],[-126.76270867573174,52.99885706990122],[-126.7625010586378,52.99872842672658],[-126.7623008272879,52.99859525315783],[-126.76210520511097,52.998459252514294],[-126.76188559938362,52.998337964956775],[-126.76167706683111,52.99821044680882],[-126.76152673600664,52.99804950008138],[-126.76134141023073,52.99791454326077],[-126.76109063622944,52.99782427561308],[-126.76082050161602,52.99774757919897],[-126.76054298346429,52.997675412074],[-126.76026820802691,52.99760042967213],[-126.76000722685872,52.997513587255455],[-126.75976003015916,52.99741432917515],[-126.75951738235202,52.99730887366079],[-126.75927382530965,52.99720510883996],[-126.75902478597266,52.997106981658256],[-126.75877388670975,52.997009986491555],[-126.75852207306188,52.996913561442405],[-126.75826841424482,52.99681825932928],[-126.75800737210636,52.996727495383745],[-126.7577509338861,52.99663277479753],[-126.75751388400703,52.99652672339135],[-126.75731192225479,52.99639971111267],[-126.7571459544076,52.99625062071496],[-126.75699105962684,52.996093614993754],[-126.75682137194885,52.99594511277775],[-126.75662394811914,52.995810226188134],[-126.75640527752114,52.99568781081457],[-126.75615531318832,52.995589683517785],[-126.75590351373593,52.995493243831326],[-126.75570332833819,52.99536062350656],[-126.75551790340056,52.995218378923106],[-126.75529651195063,52.99510045224226],[-126.75502635542536,52.99502094580462],[-126.7547320202018,52.99499817784862],[-126.75448684080193,52.994906739814645],[-126.75439606351082,52.99473418812991],[-126.75427649020652,52.99456855298436],[-126.75411977094723,52.99441379625483],[-126.75399374039606,52.994252675425095],[-126.75393091724999,52.99407771237616],[-126.7538922633037,52.99389754767667],[-126.75382665941017,52.99372315812635],[-126.75369965181888,52.99355980204167],[-126.75352535795079,52.99341300081855],[-126.7533067086086,52.99329057952386],[-126.75308344257668,52.99317041949145],[-126.75290270343997,52.99302870556198],[-126.7527404714036,52.99287734384596],[-126.75259305411141,52.992720284470074],[-126.75245865502642,52.99255978009709],[-126.75235208244875,52.99239068921281],[-126.75225573136673,52.99221873605049],[-126.75214362722134,52.99205248616278],[-126.75199165674962,52.99190105789872],[-126.7518026067476,52.99176331276606],[-126.75159317158051,52.99163354129758],[-126.7513772589596,52.99150717245649],[-126.75116599022718,52.9913790972525],[-126.75093812745484,52.99126232412948],[-126.75065170506033,52.99121092560692],[-126.75041589070604,52.99111885469481],[-126.75023974249085,52.99097150453724],[-126.7499816039075,52.990884057118286],[-126.74970049625026,52.99081636970661],[-126.74941416716749,52.9907700056912],[-126.74911712729218,52.99075116754483],[-126.74882006778469,52.99073119923975],[-126.74853728462857,52.99067416962589],[-126.74825545241303,52.99061768910438],[-126.74795784813955,52.990620133530534],[-126.74765922975685,52.990617545545646],[-126.74736147301375,52.990610469054694],[-126.7470637605165,52.99060675324716],[-126.74676616141507,52.990608638828725],[-126.74646671108009,52.99061222072098],[-126.74617217860705,52.99062977338741],[-126.74588568928316,52.990680326805],[-126.74560017914284,52.99073312343488],[-126.74530976023145,52.99077249458067],[-126.74501393229569,52.99076988224751],[-126.7447230594489,52.99072970321195],[-126.7444393608635,52.990673781193024],[-126.74415660358147,52.99061786151678],[-126.74387383716133,52.990561376454885],[-126.74359015574339,52.99050545229252],[-126.7433092175052,52.990446713207675],[-126.7430254542003,52.990386870691275],[-126.7427527060109,52.990315752379324],[-126.74251571907169,52.99020911468055],[-126.74230909165924,52.990078188569974],[-126.74212745641317,52.98993533427794],[-126.74192458798586,52.9898049485912],[-126.74170318424274,52.98968251421323],[-126.74146466064451,52.989701388080114],[-126.74140161628829,52.98988443774571],[-126.74125219985409,52.99003777507227],[-126.74109249822315,52.990189491509604],[-126.7409422322532,52.99034731602627],[-126.74094342287982,52.9905226823729],[-126.74098203840822,52.990703972124905],[-126.74101507614083,52.99088641747876],[-126.74101537081977,52.991063465775575],[-126.74085183505098,52.99120960301341],[-126.74063473175723,52.99133422992174],[-126.7404326963435,52.99146604996299],[-126.74026646775755,52.991618926664586],[-126.74009643334516,52.99176678892111],[-126.73985070231146,52.991855179996904],[-126.73956050433864,52.99190798232143],[-126.73927412527895,52.99196580702281],[-126.73905769636822,52.992021516145385],[-126.73868893214504,52.99206360312499],[-126.73841841369321,52.99212189111226],[-126.73826138374352,52.99226686326344],[-126.73815807954473,52.9924434395014],[-126.73807710767369,52.99261651410399],[-126.73805874475745,52.9927953642923],[-126.73804888317034,52.99297975511544],[-126.73800599336491,52.99303493148195],[-126.73788830338563,52.99308217624785],[-126.73761344001997,52.99305139981518],[-126.73731327716825,52.99301405756185],[-126.73702411815032,52.99301978316147],[-126.7367220055557,52.993086108662645],[-126.73644605979791,52.993153946295635],[-126.73620415179228,52.99324846436159],[-126.73590487133153,52.99326209438687],[-126.73561531755752,52.99319162931197],[-126.73532787809815,52.993134588195005],[-126.73508010431499,52.99310587803376],[-126.73471830667448,52.993119903807234],[-126.73438954842769,52.993155569254],[-126.73417636924319,52.99318491122542],[-126.73388415604116,52.993175524948754],[-126.73358638808818,52.99316953421689],[-126.73329466566187,52.993134926167905],[-126.73300918271016,52.993082914285594],[-126.7327218872244,52.99303483944976],[-126.73242914436695,52.99299463276969],[-126.73214826300129,52.99293922851887],[-126.73189289839777,52.99284837178778],[-126.73165031695582,52.9927411824559],[-126.7314068636919,52.992637915539746],[-126.73116340741966,52.9925335365372],[-126.7309236306405,52.99242688411955],[-126.73069124720315,52.99231514731678],[-126.73048647341143,52.99218194818752],[-126.73027626245884,52.99205719112403],[-126.72999533236765,52.99199842036643],[-126.72972896507031,52.99191826800634],[-126.72949655339755,52.99180540845815],[-126.72932237907555,52.991660247501606],[-126.72917226112497,52.99150317600419],[-126.72902215396863,52.99134666900729],[-126.7289063800417,52.99128743001633],[-126.72876776508568,52.99125691109141],[-126.72847297122738,52.99125985368624],[-126.728168636671,52.99125052822455],[-126.72788035650481,52.9912528733014],[-126.72760219741676,52.99130053373402],[-126.72733588924149,52.991387340270315],[-126.72706286509413,52.99146298193491],[-126.7268125278645,52.99155584740769],[-126.72660859211372,52.991688210985096],[-126.72642252715295,52.991829428614594],[-126.7262486683061,52.99197561777235],[-126.72608984628566,52.99212730791364],[-126.7259516677667,52.99228672363678],[-126.72583130829888,52.992451067538354],[-126.72575138920396,52.992633647218106],[-126.72559654150989,52.99274553650233],[-126.72528425511004,52.99270823831271],[-126.72502245414519,52.992622444452735],[-126.72475698507634,52.99253947846342],[-126.72447694675232,52.99247844798437],[-126.72418260734592,52.992453362831874],[-126.72388471225408,52.99243950444719],[-126.72358776725964,52.99242619528045],[-126.72329084166913,52.99241401477905],[-126.72299297152396,52.99240070979234],[-126.72269686694652,52.99238235516305],[-126.72240073002367,52.992361203055495],[-126.7221030549747,52.99236022086044],[-126.72180554722938,52.992368210385905],[-126.72150946240954,52.99235097322405],[-126.72120410100489,52.99233603320355],[-126.72092419256595,52.99228227272238],[-126.72063782803302,52.992232477509],[-126.72034960779261,52.99218325770715],[-126.72005953168758,52.99213460433973],[-126.71980800538634,52.99204817143445],[-126.71960417904116,52.9919132714475],[-126.71936905973051,52.99180377032643],[-126.71911555713216,52.9917106246078],[-126.71885559876935,52.991621444176964],[-126.71859472956118,52.99153395405908],[-126.71833569886597,52.9914447668309],[-126.7180793943406,52.99135163596453],[-126.71782403150745,52.991258507773125],[-126.71763514369925,52.99117841221697],[-126.71735623413265,52.991072535355016],[-126.71701873791207,52.99103257182179],[-126.71672780862701,52.990988397750044],[-126.71644868517419,52.990924536816266],[-126.71617497161321,52.990849445656984],[-126.71592428799866,52.99075627597471],[-126.71571871797393,52.99062753850281],[-126.71552972526034,52.99048581801617],[-126.7153278234107,52.99035313112601],[-126.71512593232146,52.99022100858772],[-126.71493420302102,52.99008322123806],[-126.7147702892661,52.989934059250004],[-126.71462673533757,52.98977580906805],[-126.71446652735001,52.98962494781041],[-126.71427468042762,52.989479871912124],[-126.71411191329206,52.98934359304149],[-126.71404732030112,52.989164128782186],[-126.71396418281857,52.98899150916058],[-126.71380483965268,52.98883671525863],[-126.71359444021557,52.98869679759783],[-126.7133457950316,52.98861369519307],[-126.71306185611544,52.98859524288683],[-126.71275607273726,52.98860941844173],[-126.71244753548301,52.988625850981116],[-126.71214619292397,52.98862711606815],[-126.71184297126072,52.98862670639876],[-126.71155518879607,52.98860155027308],[-126.71130812342835,52.988501069744515],[-126.71109602732065,52.98837067823542],[-126.71088849596168,52.98823466494084],[-126.71074227398391,52.98808258471988],[-126.71066757796963,52.98791215299306],[-126.71062726595532,52.98773310518381],[-126.71060741187905,52.987550007546616],[-126.7105941331319,52.98736912034971],[-126.71059113657664,52.987189847518486],[-126.71060025034967,52.9870099368961],[-126.71061311055294,52.98683001263222],[-126.71064290622,52.98665950659715],[-126.71063212065235,52.98651613884474],[-126.71072854710373,52.98631329034027],[-126.71078871180228,52.986117392774545],[-126.71076617912776,52.98594103455443],[-126.71074830350022,52.985764657195745],[-126.71069962770476,52.98558790076275],[-126.71063511100998,52.98541179560089],[-126.71056778526616,52.98523459571779],[-126.7105079169989,52.98505790663037],[-126.7104629704739,52.984880006986295],[-126.71042546245415,52.98470149770757],[-126.71037958581681,52.98452416837142],[-126.71032252520506,52.984347462204],[-126.7102822273083,52.984168969642326],[-126.71034651534123,52.9839965791729],[-126.71048849404296,52.983839399379185],[-126.71052000389147,52.98365991816381],[-126.71048903381225,52.98348137833209],[-126.71041713382932,52.983309799643095],[-126.71048512296343,52.98313570135161],[-126.71049425139017,52.98295579917537],[-126.71050149912753,52.982775899351154],[-126.71008768178031,52.982741979123894],[-126.70979071531096,52.98272303283732],[-126.70949982257687,52.98273262828413],[-126.70922497543273,52.98280936071447],[-126.70899175788088,52.98292114454572],[-126.70881317234348,52.98306453114604],[-126.70866277439825,52.98322007425624],[-126.70852080953809,52.98337836340353],[-126.70838165885014,52.98353720021245],[-126.70822940148233,52.983693318648754],[-126.70806405583055,52.98384783015672],[-126.70790525526684,52.98400285790431],[-126.70777075677196,52.98416166596556],[-126.7076783527851,52.984326944540896],[-126.70764861221221,52.984501376147215],[-126.70766469282766,52.98468281184995],[-126.7076938702955,52.98486641003634],[-126.70770808560367,52.98504785689494],[-126.70771293549754,52.985227118826955],[-126.70771779468366,52.985406936486264],[-126.70772171376638,52.985586768735395],[-126.70772378198834,52.985766603113696],[-126.70772304439745,52.98594646328386],[-126.70772043171375,52.986125769926524],[-126.7077206193373,52.986305615538356],[-126.70772455344041,52.98648544760126],[-126.7077331442384,52.98666524272093],[-126.7077417352583,52.986845046784346],[-126.70774659475116,52.98702486426869],[-126.7077439821005,52.98720417079634],[-126.70773670701365,52.987384070064465],[-126.70772663130371,52.98756342136136],[-126.70771377358842,52.98774334514172],[-126.70770089158657,52.987922713245304],[-126.70768056131202,52.98810212604348],[-126.70766021593965,52.988281538908524],[-126.70765760284745,52.98846084529987],[-126.70765034210636,52.988640744338156],[-126.70766078957877,52.98881997228561],[-126.70768708907725,52.98899910504826],[-126.70771621364375,52.98917934139279],[-126.70774628808691,52.98936012781024],[-126.70775858332146,52.98953822401586],[-126.7076408780003,52.98969805103535],[-126.70739437110561,52.989798705109195],[-126.7071431964842,52.989898821889724],[-126.70693804345468,52.99001771175975],[-126.70685505521887,52.990189091178735],[-126.70680113829332,52.990369825506725],[-126.70676678285717,52.990548201379866],[-126.70675392032557,52.99072813369898],[-126.70672715838248,52.990914307950106],[-126.70664973739258,52.99108397737659],[-126.70643899815721,52.991204020301645],[-126.70616048918528,52.99128861073337],[-126.70587379903719,52.991330103262335],[-126.70557170682385,52.991343117359854],[-126.70527056787921,52.991357810308024],[-126.7049877011445,52.99140488062091],[-126.70472211939344,52.99148154636112],[-126.70446519156468,52.99157329188048],[-126.70421208157713,52.99167117264288],[-126.7039571008614,52.99176794345594],[-126.70369729828424,52.99185577797603],[-126.70342510815921,52.991928553733636],[-126.70313962962055,52.99198684974781],[-126.7028463472979,52.9920255772429],[-126.70255266262453,52.99203908923798],[-126.7022567730236,52.992033008254175],[-126.70195885678422,52.99201629772402],[-126.70165995403096,52.99199678642274],[-126.70136205100943,52.99198175067133],[-126.70106436639944,52.991979039067395],[-126.70076688855849,52.991989772243784],[-126.70047048940813,52.992008898002105],[-126.7001732384528,52.992032519290085],[-126.69987600898817,52.99205837186066],[-126.69957876650294,52.99208254739409],[-126.6992823847511,52.99210279958166],[-126.69898680839452,52.992115758104866],[-126.6986919972629,52.99211806152004],[-126.6983978596794,52.9921041165271],[-126.69810620092528,52.992071106552785],[-126.69781621551067,52.992026324525796],[-126.6975261570154,52.99197705100421],[-126.69723522315529,52.99193170840109],[-126.69694353900434,52.99189701934749],[-126.69663269260964,52.99188820679069],[-126.69638687964844,52.99197706299437],[-126.69615082328136,52.99209107820253],[-126.69592333827786,52.992216238985286],[-126.69571372705813,52.99235082309579],[-126.69553596089985,52.992491942312164],[-126.69543589901335,52.99264941132387],[-126.69545297534196,52.99283812978019],[-126.69543261844576,52.993019216136645],[-126.69529330489263,52.99317299901821],[-126.69510340649457,52.99331474483448],[-126.69489377817646,52.99344877165422],[-126.69468216003584,52.99357440111497],[-126.69445545109514,52.99369115458236],[-126.69422593103346,52.99380680359066],[-126.694008674452,52.99393022387351],[-126.69380747164165,52.99406587543529],[-126.69360627661585,52.99420208238743],[-126.6933917804807,52.99432380888291],[-126.69314604708127,52.99441881621087],[-126.69286816632803,52.99448712745923],[-126.69257501250799,52.994535348714194],[-126.69228254317706,52.99456788633526],[-126.69198593077405,52.99457523045605],[-126.69168530345726,52.99456522421882],[-126.69138733717867,52.994546246093265],[-126.69108999606841,52.99450876982562],[-126.69079660611337,52.994484716381486],[-126.69051343868615,52.994515509783135],[-126.69024041993198,52.99459666828728],[-126.6899596356999,52.9946593778736],[-126.68967973083046,52.99471928472256],[-126.68941037778396,52.994796502356955],[-126.68913551622074,52.99487934539914],[-126.68886633361058,52.99496720160906],[-126.68868925965575,52.995095979886045],[-126.68860995656419,52.99526957400645],[-126.68857752299401,52.99545633207047],[-126.68857017115519,52.99563566446907],[-126.6885917638898,52.995816513122286],[-126.68859746899142,52.995996325022396],[-126.688551808669,52.99617308418075],[-126.6884772211207,52.996349447460815],[-126.68838767069852,52.996524777476864],[-126.68829626831176,52.99670011821367],[-126.68821512160117,52.99687539899385],[-126.68815822529352,52.99704997339709],[-126.68813867036576,52.99722545934018],[-126.68815735547741,52.99740015731573],[-126.68819751843054,52.997575285706205],[-126.68825447766993,52.997750324986875],[-126.6883235660547,52.99792472865561],[-126.68840198016028,52.99809963361743],[-126.6884850680815,52.998274520185795],[-126.68857096335381,52.99844938132229],[-126.68865497830883,52.998624262328924],[-126.68873341915007,52.99879973161771],[-126.68880251443521,52.99897525543509],[-126.68885950521091,52.99915197047219],[-126.68889971819011,52.99932990404952],[-126.68892596004791,52.99950903978381],[-126.6889428739297,52.999689350553794],[-126.6889541858398,52.99986857347877],[-126.68896097827637,53.00000019467036],[-126.68895290527256,53.00025012586065],[-126.68894089008111,53.00043004978374],[-126.68889053483481,53.00060570649927],[-126.68881026926992,53.000777620438384],[-126.6887141045238,53.00094795081499],[-126.68861045531094,53.001117195280266],[-126.68850868077772,53.00128699344622],[-126.68841531475306,53.00145786296775],[-126.68833132206001,53.001630362992444],[-126.68824732275444,53.0018034187696],[-126.68816520408254,53.00197646348987],[-126.6880858858661,53.00215004758491],[-126.6880121844926,53.00232472835193],[-126.68794408159738,53.00249936742521],[-126.68788532851119,53.002675081414786],[-126.6878452844576,53.00285348312615],[-126.6878380039952,53.003038417020015],[-126.68784570620495,53.003225504606256],[-126.68784868947968,53.00340981383103],[-126.6878263776015,53.00358867677808],[-126.68776002058564,53.003756026298774],[-126.68763745130948,53.00391025692128],[-126.68747740656036,53.00405574145324],[-126.68729110307937,53.004193534922145],[-126.6870860700068,53.00432751078988],[-126.68686978247749,53.0044581991424],[-126.68665257681296,53.004589448220564],[-126.68644097249711,53.004721784828256],[-126.68624344555825,53.004858521329275],[-126.68606000504325,53.005000213535084],[-126.68588128552376,53.0051458043939],[-126.68570255581197,53.00529083922764],[-126.6855200465407,53.00543308987932],[-126.68532622835242,53.005568682638845],[-126.68511731393346,53.00569427779924],[-126.68488765841023,53.00580710220449],[-126.68464196610671,53.005909943251005],[-126.68438777211884,53.00600610083766],[-126.68413073956792,53.00609947743499],[-126.68387459564296,53.00619060720448],[-126.68360992646377,53.00627450672461],[-126.68334335947364,53.00635561077731],[-126.68307961989848,53.00643893894277],[-126.68282347167317,53.006530066411074],[-126.68258438258475,53.00663733807982],[-126.68235477828544,53.00675408353451],[-126.68212040881826,53.006865253335775],[-126.68186519673611,53.00695637325828],[-126.68158631103722,53.00702690374006],[-126.68130173460428,53.007091854713856],[-126.68103319579336,53.007167926847764],[-126.68079870080966,53.00727068607863],[-126.6805991606594,53.0074001452745],[-126.68042133818662,53.007545722308784],[-126.68025485482964,53.0076990774993],[-126.68008740250947,53.00785075271494],[-126.67991894552146,53.007998516023214],[-126.67975709094574,53.00815016742159],[-126.67959617587138,53.00830180419933],[-126.67943147567938,53.0084512304095],[-126.67925456770253,53.00859567972817],[-126.67905883938545,53.00873070797965],[-126.67885654821113,53.008863541531674],[-126.67867902676157,53.00902871913013],[-126.67857081516729,53.009149805246835],[-126.67847194537825,53.00927139330325],[-126.67832107531237,53.00941008857943],[-126.67843384580385,53.00963242904264],[-126.67852808873634,53.00980557185215],[-126.6784795997488,53.00998457374058],[-126.6784226818126,53.010161391941956],[-126.67835828736081,53.010337688340954],[-126.6783033156321,53.01051953323048],[-126.67819293229341,53.01067984155437],[-126.67795661888277,53.010788216927494],[-126.67772039054606,53.010901064549316],[-126.67754628613933,53.01104718019762],[-126.6773863228634,53.01120161397438],[-126.67721881078165,53.01135104391452],[-126.67701923156321,53.011479932037304],[-126.67676590117601,53.01157439129336],[-126.67650219666031,53.0116627509731],[-126.67627439747912,53.01177835309134],[-126.67606264473775,53.01190562403271],[-126.67579694512139,53.0119861497102],[-126.67556249996042,53.01209450045752],[-126.67537621164611,53.01223787666665],[-126.67530421832545,53.01240693553682],[-126.67527067441867,53.012587535468995],[-126.67520437854064,53.01276272013786],[-126.675148392987,53.012940086822745],[-126.67512048424446,53.01312289548396],[-126.6750578939111,53.01329637349687],[-126.67491563828476,53.01344958172614],[-126.67472931522572,53.01359128061588],[-126.67452986024448,53.01372912790148],[-126.67433317012308,53.013865273724974],[-126.6741655746435,53.01401078202497],[-126.67407870919983,53.01418440710555],[-126.67399555899718,53.014356881362396],[-126.67393113981596,53.01453317490762],[-126.67388171797226,53.014713309103065],[-126.67381540409342,53.01488792806865],[-126.67367591386889,53.01503999826167],[-126.67343117960016,53.01514896796789],[-126.67316358773984,53.01522949821818],[-126.67288206164913,53.0153734135729],[-126.67274076213212,53.01547002152449],[-126.67257226712003,53.015618894116315],[-126.67240567953141,53.01576944087159],[-126.6722343713913,53.015917208433784],[-126.67204993088416,53.01606112416553],[-126.67187204286604,53.01620668756427],[-126.67173256800088,53.016360440485606],[-126.67173079568079,53.01654309903989],[-126.67172803799592,53.01672295734716],[-126.67172807353121,53.01690280869353],[-126.67172251391051,53.017082127128994],[-126.67171602203076,53.017262006642525],[-126.67170858923434,53.01744190045858],[-126.67169369406979,53.017621271993576],[-126.6716713154984,53.01780068611719],[-126.67168161835109,53.01797991413357],[-126.67168913689349,53.018159713773244],[-126.67166298836885,53.0183369082198],[-126.67165576496491,53.01852912667885],[-126.67164510438043,53.0186815809899],[-126.67166857463098,53.01886689243908],[-126.67164165891973,53.01905417604128],[-126.67163059748617,53.019240813563755],[-126.67159792925649,53.019418600785045],[-126.67162944633351,53.01958089975102],[-126.67164842769759,53.01977800682259],[-126.67165226534506,53.01996119781776],[-126.67168584788402,53.02013693144405],[-126.67179848385251,53.020292600953475],[-126.67203108420874,53.02041734139781],[-126.67217259445508,53.020568928639356],[-126.67221002644422,53.02075079862281],[-126.67225297470061,53.020928163947936],[-126.67231924450282,53.021103711043004],[-126.6723892315946,53.02127811635948],[-126.6724610865075,53.021452510973134],[-126.67254505994975,53.021625151152435],[-126.67261132324644,53.02180014227419],[-126.67267479631768,53.021976260828275],[-126.67276254185178,53.022151129345225],[-126.67278212460448,53.02232637755136],[-126.67272145837626,53.02250488918747],[-126.6726092471836,53.0226719334756],[-126.67245210156331,53.022830825241826],[-126.67223835296666,53.022954182083545],[-126.671974311294,53.023026280223995],[-126.67168471302888,53.023076112503006],[-126.67139039396804,53.023123165103264],[-126.6711037117904,53.02318082311804],[-126.67082279898653,53.023249097219384],[-126.67061837129413,53.023371833307266],[-126.67045457528336,53.02352460161639],[-126.67029929456373,53.02368403556064],[-126.67012510332502,53.02382957445395],[-126.66990653188522,53.02394343423879],[-126.66964453287197,53.02402727662806],[-126.6693645973482,53.02409833849278],[-126.66909033629885,53.02417497019042],[-126.6688312222368,53.02426384128324],[-126.66857496248144,53.024356621983294],[-126.66831584003825,53.02444604775623],[-126.66804908582513,53.02452431975867],[-126.66777184988867,53.02458975982033],[-126.66749080788911,53.02465073860949],[-126.66721453169488,53.02471841299066],[-126.66694874388368,53.024799473865535],[-126.66668583397279,53.024885000015594],[-126.66641627414586,53.02496383991327],[-126.66613614510148,53.02502424553041],[-126.66583910474098,53.02501807849602],[-126.66554897226395,53.02497601458973],[-126.66526787032245,53.0249142941517],[-126.66498481394994,53.02484697241699],[-126.66470003459247,53.0248480213821],[-126.66442580403542,53.02492743881444],[-126.66418559496864,53.02503188062241],[-126.66397851233819,53.02516526943835],[-126.66383051844623,53.02519635667718],[-126.66370336809108,53.02518643140543],[-126.66341209151597,53.02513035751114],[-126.66314477982425,53.02505510806093],[-126.66291051139379,53.0249421299213],[-126.66264397681229,53.024856225401095],[-126.66234709538567,53.02486013351348],[-126.66208217123437,53.02493781690585],[-126.6618760148308,53.02507063205696],[-126.66167077471778,53.025202885906126],[-126.66144567366537,53.02531956323229],[-126.66118747165974,53.02540897698574],[-126.6609311795127,53.02550117632047],[-126.66067593201001,53.02560009244786],[-126.66046396786997,53.025721176424],[-126.66033295323254,53.02588270201947],[-126.66019914650737,53.02604537257077],[-126.66004370744078,53.0261986349412],[-126.65987324666042,53.026345813678816],[-126.65968020361966,53.02648304256801],[-126.65941670138535,53.02659264261045],[-126.65925883102395,53.026708939833775],[-126.6592196746932,53.02689404672861],[-126.65916823025512,53.027069137434026],[-126.65914954374496,53.027248527234406],[-126.65915232599971,53.02742779707887],[-126.65914859926512,53.02760934433389],[-126.65915323167849,53.02778748327147],[-126.65915136137822,53.027967343799546],[-126.65912248238264,53.0281523931029],[-126.6591129963036,53.02832388765376],[-126.65908687354495,53.02850555991244],[-126.6589153633972,53.028646584410446],[-126.6587066883469,53.02874018900059],[-126.65842261765431,53.02884934562375],[-126.65815589562088,53.02893263253428],[-126.65797878665082,53.02907425158633],[-126.65790677357809,53.02924833563769],[-126.65787967771625,53.029428327644254],[-126.6578432349733,53.029607815950634],[-126.65770462635413,53.029763786779085],[-126.65742622314974,53.02981688270679],[-126.65711933925394,53.029841002757856],[-126.65692114175047,53.029947992100524],[-126.65689510400507,53.03013583057558],[-126.65693709737104,53.0303148818237],[-126.65691838506733,53.03049427101287],[-126.65684262992913,53.03066837506508],[-126.65664577636096,53.03080169334876],[-126.65643672229184,53.03093171756604],[-126.6562248060223,53.03105839572084],[-126.65598926434018,53.03116671158032],[-126.65573198249072,53.03125778402581],[-126.65546519924207,53.03133938865014],[-126.65519178167133,53.03141429735152],[-126.65490410387345,53.03147248556433],[-126.6546750514464,53.03157852166733],[-126.65453279920611,53.031740667137974],[-126.65452232430385,53.03190936949392],[-126.65452898675537,53.0320992578811],[-126.65451307255438,53.032278630920615],[-126.65449622558393,53.03245857385878],[-126.65449064297049,53.03264125114187],[-126.6544597604283,53.03281902185652],[-126.65436521859081,53.03298706976281],[-126.65421448755127,53.033145335365255],[-126.654032679528,53.03328752980818],[-126.65380756408038,53.033406432793264],[-126.65355691445234,53.03350530723269],[-126.65328348825773,53.033580776116096],[-126.65302420855292,53.03366569505089],[-126.65283678864988,53.03380679809954],[-126.65270664648608,53.03396830933661],[-126.65257275917452,53.03412928533744],[-126.65243415940759,53.034288046162914],[-126.65223199772586,53.03401744006322],[-126.65211551516855,53.03385224560876],[-126.65202416145678,53.03368074479948],[-126.65196634493904,53.03350458547573],[-126.65192998122954,53.033326057572786],[-126.65190481588871,53.03314691199682],[-126.65188993089922,53.032967709607576],[-126.65187128706268,53.03278797218027],[-126.65181908189527,53.03261121695827],[-126.65173331178336,53.03243912919631],[-126.65160939030498,53.03227565152101],[-126.65146031472956,53.03211568312799],[-126.65119230291904,53.03205665384097],[-126.65089578129755,53.03202691497254],[-126.65060657423903,53.03198592973874],[-126.65031640925343,53.03194382854809],[-126.65003527469173,53.03188150737286],[-126.64979547964938,53.031774692504584],[-126.64963998822782,53.031622600848245],[-126.64953841244582,53.031453960054314],[-126.64944707430024,53.03128245700988],[-126.64938181816396,53.03110745772522],[-126.64933613766222,53.03092954486299],[-126.64927367422071,53.03075340062586],[-126.64914604045309,53.03059050545533],[-126.64892476667302,53.03047182581343],[-126.64865189543947,53.03039993588602],[-126.64836716647976,53.030346030002626],[-126.64807794772928,53.03030336235901],[-126.64778239029789,53.03027416620339],[-126.6475149969869,53.03019383512594],[-126.64735397633751,53.03004568810844],[-126.64724216602434,53.029878221931185],[-126.64713315054605,53.029710740308616],[-126.6470204177808,53.02954439948744],[-126.64690952796752,53.02937637212965],[-126.64669381188862,53.02925485201031],[-126.64655230401662,53.02909931794064],[-126.64640888041458,53.028941544162116],[-126.64623111993014,53.028797413595726],[-126.64603575397139,53.028661778649436],[-126.64586631574578,53.02851255508567],[-126.64579365727533,53.028339826253585],[-126.64577411496575,53.02816009244683],[-126.6457489786514,53.0279809450175],[-126.64575372306297,53.02780163403536],[-126.6457687313476,53.02762226685994],[-126.64576412946789,53.027442442243434],[-126.64574832271299,53.027262687895934],[-126.64574280326417,53.02708343301128],[-126.64574567152313,53.02690356745469],[-126.64572332138042,53.026723848860115],[-126.64561712867359,53.02655635015631],[-126.64543473862841,53.026414475690764],[-126.64521901426696,53.026290155966464],[-126.6450292080407,53.02615169198257],[-126.64486539209007,53.02600187135084],[-126.64473221274962,53.02584068671445],[-126.64463345539883,53.02567146116016],[-126.6445374905848,53.025501108687074],[-126.64444897909925,53.02532958591503],[-126.64435115681215,53.025159799194526],[-126.64422170831676,53.02499802880323],[-126.64410807323006,53.02483168979805],[-126.64403539641371,53.02465784811534],[-126.64394688028743,53.024485769143325],[-126.64378771015446,53.02433424524981],[-126.64362203821865,53.0241844329217],[-126.64353168291896,53.02401404892059],[-126.64348790190786,53.02383612287013],[-126.64344318011895,53.02365820191768],[-126.64333328635176,53.023491841667045],[-126.64320569718534,53.02332893937876],[-126.64308369402079,53.02316488595982],[-126.64293195032717,53.02300995875487],[-126.64274217462305,53.02287204656463],[-126.64254405557256,53.02273754110856],[-126.64239787485326,53.02257977708068],[-126.64215729323894,53.02247744188493],[-126.64186656172788,53.022516557423955],[-126.64159561885715,53.02244352016162],[-126.64138362009939,53.02231748776136],[-126.6412068369744,53.02217277924709],[-126.64103560813578,53.02202579921309],[-126.64086160394625,53.02187995453529],[-126.6407451905094,53.02171419194579],[-126.64056377024556,53.02157174869695],[-126.64036289601522,53.021438930825795],[-126.64016294082063,53.02130555183672],[-126.64005862751327,53.02113748180693],[-126.64003538669125,53.02095832229223],[-126.64000467716627,53.02077920327362],[-126.63992177859478,53.02060652579694],[-126.63978214928233,53.020448167100085],[-126.63963320379948,53.020292099812295],[-126.63949170939978,53.0201337508664],[-126.63933071277452,53.019982795398654],[-126.63913261800094,53.0198482839857],[-126.638893851002,53.019740885373274],[-126.63864770909242,53.019639684667865],[-126.63842741412348,53.01951873867763],[-126.63821451338275,53.01939271434185],[-126.6380053229133,53.01926498426711],[-126.6378044526527,53.01913216194046],[-126.63761100837952,53.018995381737014],[-126.63741940074344,53.01885747075189],[-126.63722965961597,53.01871842883234],[-126.63704177192231,53.01857937659407],[-126.63684092298753,53.01844656145623],[-126.63662248121344,53.01832391678059],[-126.63643552995029,53.01818430272486],[-126.63637406482383,53.018008145348944],[-126.63631354968207,53.017832547551485],[-126.63617300192443,53.01767418940083],[-126.6359971736242,53.017528911949825],[-126.63579448247938,53.01739721649756],[-126.63567438372402,53.017232589040916],[-126.63566701763676,53.01705277806741],[-126.6357147791595,53.01687547581839],[-126.63576909086524,53.016698702976804],[-126.63590487072308,53.01653885478133],[-126.63604720179988,53.01638064740847],[-126.63614081121618,53.016209820904095],[-126.6362054065259,53.01603466864361],[-126.6362812201407,53.015860576351955],[-126.63640667751766,53.0156979862929],[-126.6365030853349,53.0155277001052],[-126.63656206036426,53.015351457354456],[-126.63663787976076,53.01517792946918],[-126.63672866776285,53.01500655282672],[-126.63679232447535,53.014830849377056],[-126.63681017391389,53.01465146681666],[-126.63675617180952,53.014474713213566],[-126.63666584776986,53.014303193570285],[-126.63655227933228,53.01413741094887],[-126.63640616723697,53.013980759147934],[-126.63625540668828,53.01382581752321],[-126.63611394641293,53.01366746392335],[-126.63590293199269,53.01354030446448],[-126.63563385816309,53.01346387283006],[-126.63537579225489,53.013373379026106],[-126.63520555165758,53.01322582895859],[-126.63515715869929,53.013049044313036],[-126.63514047606988,53.012869283048346],[-126.63513218716493,53.01268948552899],[-126.63508006139753,53.01251272090128],[-126.63504006134086,53.01233477040924],[-126.63506819225428,53.01215533252572],[-126.63505991210124,53.011976090668846],[-126.6349537749193,53.011808016290495],[-126.63479932540172,53.0116542130759],[-126.63452933969202,53.01157779278394],[-126.63426487164313,53.01149573053729],[-126.63400496400205,53.01140692890609],[-126.63377827371349,53.01129104627617],[-126.63358578732696,53.011153133414076],[-126.63337571889164,53.01102596427152],[-126.63322219544138,53.010871589241034],[-126.63312631808759,53.01070178174916],[-126.6329542375079,53.010554793964644],[-126.6329189143094,53.01037626171779],[-126.63293304470645,53.01019689930845],[-126.63290797316033,53.010017747253805],[-126.63293237139688,53.00983888549362],[-126.63293902632871,53.00965900735404],[-126.63288225404463,53.0094822664439],[-126.63272225367893,53.00933073125403],[-126.63262916599908,53.00916034351361],[-126.63236930767054,53.00907265852802],[-126.63208745994665,53.00901366016006],[-126.63181018727622,53.00894791336043],[-126.63151930566816,53.00890801124577],[-126.63123294234593,53.00885855514508],[-126.63097951489284,53.008764109436065],[-126.63072608843325,53.00866965421354],[-126.63051881508214,53.00854022387568],[-126.63030970117502,53.008412479338],[-126.63011168890004,53.00827795186091],[-126.62993313758052,53.008134355764845],[-126.62976850352186,53.007984517611696],[-126.6295834703264,53.00784376142471],[-126.6293586529321,53.00772618389299],[-126.62910522803769,53.00763116938467],[-126.62887393869978,53.00751810762041],[-126.62864355986949,53.007403920005714],[-126.62842428102401,53.007281828995374],[-126.62823369680403,53.007143897125836],[-126.62808949783027,53.00698666868811],[-126.62793786658047,53.00683172072448],[-126.62777325294714,53.00668244437995],[-126.6276309072948,53.0065240849476],[-126.62753133711294,53.00635484808546],[-126.62738714341548,53.006197618715596],[-126.6271734179401,53.00607269892505],[-126.62700880159991,53.00592285673708],[-126.62680155296918,53.005793419656264],[-126.62653988540443,53.005707407774736],[-126.62627086982475,53.0056303986826],[-126.62605068271058,53.00550942858248],[-126.62582493838207,53.00539128443692],[-126.62557339367996,53.00529569655653],[-126.6253181498662,53.00520235987753],[-126.625064757364,53.005107901255094],[-126.6248427263315,53.00498805921184],[-126.62461054509033,53.004875549561696],[-126.62437374898681,53.00476699027205],[-126.62412862956838,53.00466407727638],[-126.6238550566727,53.00459325427586],[-126.62358513537582,53.00451679965073],[-126.62336404417249,53.00439639406057],[-126.62319665697021,53.00424768169892],[-126.62310082647335,53.004077309647315],[-126.62309167259303,53.00389807098849],[-126.62311610048233,53.003718654866475],[-126.6231601581591,53.003540811321834],[-126.62320982313905,53.00336350286044],[-126.62326136244253,53.00318674920516],[-126.62333533971395,53.00301267378036],[-126.62342897078096,53.0028418560172],[-126.62357318530145,53.0026847730081],[-126.6237822256803,53.00255649003277],[-126.62396964376195,53.00241710667129],[-126.62411197210442,53.00225892134527],[-126.62425524822038,53.00210128660004],[-126.62429743305341,53.00192345234079],[-126.62430693034743,53.001743558985396],[-126.62429962333621,53.001564310370064],[-126.62428018411039,53.001384561212056],[-126.62424956342824,53.00120600073803],[-126.62420869364782,53.00102805028539],[-126.6240942603446,53.000861694638516],[-126.62392411719378,53.00071468294624],[-126.62366889635908,53.0006207866965],[-126.62337543676252,53.00059208373906],[-126.6231552757126,53.00047054316044],[-126.6230148344027,53.00031216771069],[-126.62287253609333,53.00015436664925],[-126.62272001575982,52.99999997206702],[-126.62267748546084,52.99964498338957],[-126.62259565567086,52.99947341604425],[-126.62249331516419,52.99930418904296],[-126.62238445923441,52.999135561087336],[-126.62226817189618,52.99896921333264],[-126.62214166955422,52.998805725201144],[-126.62200217131922,52.99864789925316],[-126.62184228332109,52.998498589254595],[-126.62164526969359,52.99836404189169],[-126.62143342425001,52.998235175105144],[-126.62123083907105,52.99810234171033],[-126.6210356776282,52.99796554246304],[-126.62084885886931,52.9978253373161],[-126.62068894672433,52.99767490529771],[-126.62055502206864,52.99751368659497],[-126.62043408971937,52.997348481927595],[-126.62030389957563,52.99718725223159],[-126.62011802038867,52.99704759674129],[-126.6198941874647,52.99692831933669],[-126.61965190626093,52.99682369662544],[-126.6194077765368,52.996720212639865],[-126.61917933821387,52.99660431074955],[-126.61896753494649,52.996478245114815],[-126.618769622261,52.99634425339454],[-126.61858651778935,52.99620178401461],[-126.61840340645932,52.9960587585885],[-126.61819168011357,52.99593660857993],[-126.61790260494688,52.995886578699526],[-126.6176178555814,52.995876300443975],[-126.6173121815749,52.99583980265338],[-126.6170143210607,52.99582623890858],[-126.61671827123186,52.99580985908733],[-126.61642483329598,52.995780018286666],[-126.61614875789954,52.99572431340792],[-126.61583881801747,52.99571472726212],[-126.61554190054667,52.99570226646159],[-126.6152449265492,52.99568588777221],[-126.61503475267239,52.995671296666615],[-126.6147118727936,52.9956051918553],[-126.61435754383851,52.995623282200334],[-126.61412820900618,52.99550906052704],[-126.61415176866683,52.99533133536936],[-126.61418741783815,52.99515129714678],[-126.61421042244358,52.99506433926964],[-126.6142970198752,52.99498712603084],[-126.61441501790374,52.99482235524579],[-126.61450293204334,52.99464316502733],[-126.6146135368601,52.99448347052399],[-126.61472214641763,52.99431594245646],[-126.61481205278072,52.99414459436335],[-126.61483745854169,52.99396572976446],[-126.6148619155631,52.993786314295455],[-126.61491721808059,52.9936100995696],[-126.61492767876545,52.99343020125529],[-126.61494001342317,52.993250848938246],[-126.61492527386633,52.99306995251399],[-126.61476735577443,52.99292566934927],[-126.61462235354644,52.9927701041645],[-126.61454239620448,52.99259683569921],[-126.61452395095942,52.992417643789146],[-126.61451761105836,52.99223726820758],[-126.61459984867507,52.99205306920465],[-126.6146208721842,52.991893285602],[-126.61463778410538,52.991708306538484],[-126.61466879514691,52.99152997724604],[-126.61469513234431,52.991350551744475],[-126.61471025881119,52.99117118467425],[-126.61472072780846,52.99099184186848],[-126.61469855067935,52.990812669273964],[-126.61474449610205,52.99063481778149],[-126.61487653192465,52.99047445503819],[-126.61504982700508,52.9903284350796],[-126.61519308847075,52.99017025447657],[-126.6152942049919,52.99000164393321],[-126.61539907542577,52.98983356947912],[-126.61550767000779,52.98966604022395],[-126.61561815269526,52.98949906574589],[-126.61571360347202,52.9893260021356],[-126.6159029691568,52.989194464029644],[-126.61614585179262,52.989086742261264],[-126.61637460201509,52.98897012945116],[-126.61658266303607,52.98884129831601],[-126.61674468578055,52.988690861370145],[-126.61687669982595,52.98852993148467],[-126.61699839468577,52.98836569378293],[-126.61712665069894,52.988203097933535],[-126.61727273596527,52.98804714084892],[-126.61742723307643,52.98789281585222],[-126.61757329304403,52.98773629372823],[-126.61770998095592,52.9875758940939],[-126.61786074323767,52.987421588039915],[-126.61804808292618,52.9872811014084],[-126.61826082011905,52.98715448370248],[-126.6184961324115,52.987040629042035],[-126.61877434352428,52.9869893087387],[-126.61907065443042,52.986964221270306],[-126.61937077809425,52.986944715794806],[-126.61966994481637,52.98692409402929],[-126.6199557799753,52.98688392742711],[-126.62018169230137,52.9867656455345],[-126.62040571304773,52.98664568783494],[-126.62068183406956,52.98658036257052],[-126.62097738738078,52.98656703561912],[-126.62127511066909,52.98657555179842],[-126.62157359420043,52.986571737109124],[-126.62187007270336,52.98655841200328],[-126.62216825263735,52.986533862651605],[-126.62245490991043,52.98648697124601],[-126.62270921737485,52.986397104169974],[-126.6229445135619,52.98628324057832],[-126.62315255794756,52.986155518110586],[-126.6233605697287,52.986026674875774],[-126.62359589512288,52.985915059860766],[-126.62381241425854,52.98579344992158],[-126.62399880988234,52.985653514347014],[-126.62417111228459,52.98550637395458],[-126.62433965063708,52.985358123707606],[-126.6244922384947,52.98520324333358],[-126.62463732954801,52.98504615239237],[-126.6247861755983,52.98489072666582],[-126.62493502056033,52.98473530073681],[-126.62508385626309,52.984579318852596],[-126.62523269074194,52.98442332780199],[-126.62537028924346,52.98426459924692],[-126.62548725784266,52.98409870084769],[-126.62561080377893,52.98393556431213],[-126.62574931631791,52.98377626563992],[-126.62589346433992,52.983618622177886],[-126.62599111342976,52.983471875269785],[-126.62606284965823,52.983275396589114],[-126.62611729044428,52.983107579469696],[-126.62613603923685,52.982924273066814],[-126.62628871903175,52.98277666872047],[-126.62655053265763,52.982691791142905],[-126.62680675690906,52.982607507460436],[-126.62705216524827,52.9824851817551],[-126.62720518739172,52.982361106073604],[-126.62742171950846,52.98224229490591],[-126.62770630276331,52.98218363111273],[-126.62795493549804,52.98209098559882],[-126.62823360586601,52.98201106139448],[-126.62857076058856,52.9819750822446],[-126.6288316162817,52.981889648820136],[-126.62905079799086,52.981760735416266],[-126.62918320819942,52.98163116427883],[-126.62930669305186,52.98146634748346],[-126.62935348266818,52.98128680806284],[-126.62921316454167,52.98113404054287],[-126.62901338413829,52.980997278054744],[-126.62894274245146,52.98082564458641],[-126.62892237616092,52.98064646362832],[-126.62900563490237,52.980473453007995],[-126.6290384595171,52.98029622925875],[-126.62905819261195,52.98011683423556],[-126.62913771889556,52.979943843380575],[-126.6292865224097,52.979787855742714],[-126.6311222763345,52.97639618232344],[-126.63114943489724,52.97621506137895],[-126.63113372559275,52.976036420092186],[-126.63104164062074,52.97586490221112],[-126.63090682207601,52.975704827641444],[-126.6307321103248,52.975559524802094],[-126.63053333290462,52.97542556507145],[-126.63030128309245,52.975313064722734],[-126.6300453004431,52.97522087099447],[-126.62976644405096,52.97515904522097],[-126.62948758024291,52.97509666302958],[-126.62919337771845,52.97506966433099],[-126.62890542124018,52.97502301721171],[-126.62861927257234,52.9749724332907],[-126.6283358719882,52.974917916532064],[-126.62805517974545,52.97485778183913],[-126.62777722082143,52.97479371442631],[-126.62750107659534,52.974725145475965],[-126.6272222189558,52.97466275790758],[-126.62693972265367,52.97460655662473],[-126.62670400596387,52.97449743041283],[-126.62647381857805,52.97438268047706],[-126.6262390278782,52.974272427846294],[-126.62599684377811,52.97416670524462],[-126.62575097985852,52.97406435441389],[-126.625484971096,52.97398732717947],[-126.62519790172152,52.973937304629466],[-126.62491630356321,52.973877732053296],[-126.62468154444345,52.97376916148346],[-126.62440176532745,52.97370732794517],[-126.62412199378993,52.97364493790465],[-126.6238395164988,52.97358928491241],[-126.62354724243157,52.97356562365151],[-126.6232486614528,52.97355655339598],[-126.62295449660697,52.97353009477497],[-126.62267434123362,52.9735696746818],[-126.62241451492167,52.97365957192835],[-126.62213179739614,52.9737148519646],[-126.62184334444015,52.97376064127213],[-126.62155679690592,52.97380921674606],[-126.6212702732054,52.973859467756164],[-126.62098853388,52.97391754576232],[-126.62071348609169,52.973987349277564],[-126.62044508884253,52.97406608163519],[-126.62020789843376,52.97417378377968],[-126.61995250496109,52.97424796430049],[-126.61965554847184,52.974222632691074],[-126.6193648600093,52.97417989417651],[-126.61906985930537,52.97416071839515],[-126.61877236188727,52.974161716160836],[-126.61847393261601,52.974163282830126],[-126.61817637151154,52.97416092670024],[-126.61787880087645,52.97415688454225],[-126.61758113401606,52.97414723932197],[-126.61728434228543,52.97413310651404],[-126.61698683695553,52.974133544015174],[-126.6166894304382,52.97414182418878],[-126.61639211174497,52.97415514120277],[-126.61609453458003,52.97415165933818],[-126.61579690735516,52.97414368576805],[-126.61550158471687,52.97416708413252],[-126.61520307424058,52.97416304012802],[-126.61492027102167,52.97421325621248],[-126.6146915637963,52.9743276262742],[-126.61446850892831,52.974447013417546],[-126.61420865175505,52.974536327802184],[-126.6139217667585,52.97456247512781],[-126.61362335066492,52.97456514999086],[-126.61333675600179,52.97461146449674],[-126.61306249399378,52.97467172565034],[-126.6127691362732,52.974702386081425],[-126.61247675047079,52.97473528185196],[-126.61225644841315,52.97478628718688],[-126.61194603033812,52.97486242143475],[-126.61163648361406,52.97480519451545],[-126.61134120010607,52.974766386543216],[-126.611045281795,52.9747477512372],[-126.61074764453464,52.97474032971586],[-126.61045010272198,52.974738509757344],[-126.61015380761137,52.97475909382607],[-126.60989197796484,52.974841694426324],[-126.60967550678559,52.97496551158378],[-126.60940288683163,52.9750117441737],[-126.6092247045121,52.97487819811495],[-126.60917179967922,52.97470086709689],[-126.60908446981082,52.97452987258403],[-126.6088922699547,52.97439471312685],[-126.60867502715121,52.97426865616699],[-126.60844486665728,52.97415330635806],[-126.60823786936204,52.97402663092222],[-126.60808920114498,52.97386939896219],[-126.60789977376501,52.97373254719656],[-126.60767980406925,52.973611540499036],[-126.60745336305482,52.973493928434934],[-126.60723430497916,52.97337179563977],[-126.60702450884257,52.973244011911945],[-126.60681561503003,52.973114537835094],[-126.60661320310528,52.972982233092424],[-126.60642193421958,52.97284538840308],[-126.6062445437596,52.97270119282268],[-126.60608382071293,52.972548502539496],[-126.60594628541385,52.9723872840894],[-126.60584504035808,52.972219720274175],[-126.60579956541322,52.97203898765872],[-126.60576990352834,52.97185480306183],[-126.6057021679944,52.97168258455243],[-126.60555643512525,52.97153429868285],[-126.60535592369065,52.97140366727391],[-126.60513034621299,52.97128044343025],[-126.60490384497552,52.97115722389462],[-126.60469959116695,52.97102548104279],[-126.60450924637317,52.97088750785871],[-126.60432074403242,52.970747848549514],[-126.60412670348184,52.97061213481911],[-126.60392144220017,52.97047423714834],[-126.60369601695166,52.97036109483013],[-126.60340576737903,52.970345208348434],[-126.60311452001571,52.97039152202606],[-126.60283473919675,52.97045627009602],[-126.60254416055702,52.97048352935279],[-126.60224632449366,52.97045983486473],[-126.60197119848931,52.970392886393185],[-126.60174849671418,52.97027356784118],[-126.6015442727715,52.970142939932714],[-126.60137339756477,52.96999534197382],[-126.6011867743468,52.969855659093675],[-126.6009483760083,52.96974762474172],[-126.60071090378868,52.96963957622056],[-126.60047713817738,52.96952871140248],[-126.6002313784366,52.969427436496346],[-126.60002107804078,52.96932765687167],[-126.59999760816173,52.9693171265486],[-126.59972706034247,52.96924287034991],[-126.59945373218142,52.96917030404064],[-126.59917764740129,52.96910111280922],[-126.59889976863651,52.96903584754303],[-126.59862009764645,52.968976758313154],[-126.59832161739362,52.968972115772935],[-126.5980391891601,52.968915280297665],[-126.59774504843148,52.96888707346604],[-126.59746175248947,52.96883528803242],[-126.59718496043749,52.96878121886285],[-126.59688967179892,52.9688040058591],[-126.59659274355774,52.96877693980643],[-126.59632592788908,52.968703212723916],[-126.59616153346518,52.96855108317958],[-126.59609943690135,52.968378830500754],[-126.5960625170242,52.96820589460831],[-126.5958971306628,52.968049852189516],[-126.59563140427315,52.96811955024331],[-126.5954026700504,52.96823331855982],[-126.59518618255207,52.96835655383031],[-126.59496310425614,52.96847590447748],[-126.59474003173099,52.96859468989425],[-126.59448864767208,52.96869064168801],[-126.59421453803867,52.96876094354949],[-126.59396031489433,52.96885354682336],[-126.5937136444553,52.96895284382504],[-126.59341833784612,52.96897562219452],[-126.59313265967072,52.96901907729051],[-126.59285549086974,52.96907146234371],[-126.59255627345661,52.96908136726415],[-126.59227243531544,52.96912313464769],[-126.59202013326187,52.96922021524261],[-126.5917392005272,52.969270366471804],[-126.5914408357659,52.96927410565461],[-126.59116575786726,52.96920881711521],[-126.59089336171266,52.96913566158192],[-126.59062005715653,52.969063639501236],[-126.5903280419613,52.969053897290934],[-126.59002893289345,52.969071639187845],[-126.58973957576792,52.969052361907465],[-126.58947542756128,52.968967956195534],[-126.58918718207518,52.96896099819108],[-126.58906826676831,52.968993524326926],[-126.58894042216784,52.96905467380425],[-126.58882920678757,52.96910453440973],[-126.58868974524948,52.96913493067413],[-126.58839220537543,52.9691313698808],[-126.58809456433272,52.96911940910477],[-126.5877986574261,52.96909903919022],[-126.58749922139681,52.96909212391557],[-126.58712463827386,52.9690469274422],[-126.58702237882895,52.96900205866233],[-126.58670954935111,52.968971676301244],[-126.58641307444172,52.96897707867691],[-126.58616548374597,52.96907804071875],[-126.58588170926373,52.96912595096951],[-126.58585615026657,52.9693014505167],[-126.58578204737726,52.969473264939],[-126.58567058997917,52.96964133852574],[-126.58554692422815,52.96980275825041],[-126.58534920444565,52.96993708749569],[-126.5851580573883,52.97007530123371],[-126.58499224852572,52.97022460342624],[-126.58480015091543,52.97036114490717],[-126.58460054574688,52.97049436162263],[-126.58437835099323,52.97061255796298],[-126.58415428233094,52.970730207361655],[-126.58395938200667,52.970866205502325],[-126.58375881646822,52.970998304925494],[-126.58353099082319,52.971114286382864],[-126.58338485504758,52.971270212106674],[-126.58324433684702,52.97142890674216],[-126.58311500762309,52.971586425259424],[-126.58301941837489,52.97175722340029],[-126.58299389194215,52.97193607453657],[-126.58297677345138,52.9721154488117],[-126.58292043427193,52.97229222017648],[-126.5827817909984,52.972450904862455],[-126.58269180145385,52.97262223073528],[-126.58263451996262,52.97279788600066],[-126.582629530903,52.97297832070857],[-126.58261054530898,52.97315770404009],[-126.58253920512354,52.97332893750525],[-126.58257297730691,52.973479490198606],[-126.58254967389281,52.97368466766093],[-126.58254930872786,52.97386171773242],[-126.58256575362088,52.974041481595826],[-126.58256168883175,52.97422079103617],[-126.58246147432652,52.97439441715708],[-126.58235361391591,52.97455462529446],[-126.58221214825899,52.974712767198646],[-126.58206880859807,52.974870353408264],[-126.58194701788327,52.97503567691275],[-126.58175764036588,52.97516827301659],[-126.58153449625426,52.97528815350789],[-126.58136115499944,52.97543468125491],[-126.58123185256241,52.9755955587713],[-126.58095465053225,52.975718510603194],[-126.58056707425068,52.97574955514539],[-126.58042973315277,52.975800656751254],[-126.58022541776124,52.97593276806919],[-126.58002859312813,52.97606820381769],[-126.57983458020212,52.97620418118197],[-126.57961801471257,52.976327951977595],[-126.57939109702234,52.976444485157984],[-126.57912263832371,52.97652536423286],[-126.57888144644703,52.97662179653912],[-126.57871841825565,52.97677275177476],[-126.57845274638926,52.976852495049854],[-126.5781661513008,52.97690264115421],[-126.57788239184997,52.97695614328403],[-126.57761294852287,52.977033097265824],[-126.57735581895247,52.97712344593007],[-126.577136413242,52.97724554063786],[-126.57697801713502,52.9773953501273],[-126.57693193560732,52.97757374404173],[-126.57687184816977,52.97775052116129],[-126.5767780549497,52.9779190635141],[-126.57668709688633,52.97808983300811],[-126.57656620098197,52.97825402555097],[-126.57641720960189,52.978409955690154],[-126.57628320848747,52.978570850334805],[-126.57619411243581,52.978741610260144],[-126.57612654349501,52.97891730287605],[-126.57603558067983,52.97908807176511],[-126.57591841790182,52.97925281003189],[-126.57576847282678,52.97940817912992],[-126.57559883328892,52.97955523556986],[-126.57544233408812,52.97970839511629],[-126.57528770684304,52.97986211005679],[-126.5751208922607,52.98001083727489],[-126.57498026124192,52.980165595062225],[-126.57489211195931,52.98033746973256],[-126.57474309950632,52.98049283283906],[-126.57458284016633,52.98064433311549],[-126.57445979840789,52.98078891947503],[-126.57431850967107,52.980963858496075],[-126.57418914122407,52.98112416310263],[-126.57399792264648,52.98126236669807],[-126.57379072505819,52.98139223913397],[-126.5735788096066,52.98151877249243],[-126.57338194525383,52.98165363189211],[-126.57317191552767,52.98178184062332],[-126.57291753102902,52.981871601053655],[-126.57265091369602,52.981953011739364],[-126.57239688161711,52.98206910676287],[-126.57214751203036,52.98218573438444],[-126.57190133693324,52.98226144134913],[-126.57166658544398,52.982216637577665],[-126.5714425222604,52.98206420856513],[-126.57122260577894,52.98194257867751],[-126.57097869435057,52.98184010503765],[-126.57073478421819,52.98173763985058],[-126.5704715427416,52.98165375234992],[-126.570182696025,52.98160920745],[-126.56990479506355,52.98154499477891],[-126.56964798073757,52.98145379526016],[-126.5694455697614,52.981315824958145],[-126.5691762691299,52.98126725674594],[-126.56887040116733,52.98127433622355],[-126.56857105485362,52.981280262894046],[-126.56828623142256,52.98132645864267],[-126.56800052702859,52.98137714015107],[-126.56770711307551,52.98140825292662],[-126.56741069845498,52.981424803280554],[-126.56711430608091,52.981443038090134],[-126.56681892837109,52.98146799058191],[-126.56654562334087,52.981538778839145],[-126.56630859803568,52.98167214301224],[-126.56606897475349,52.98175061216204],[-126.56582402239415,52.98184927631983],[-126.56560458162329,52.98197191386125],[-126.5652917557452,52.98187704727487],[-126.56488078764986,52.98183755726963],[-126.56459099786257,52.98179131790468],[-126.56431589510335,52.98172708765795],[-126.56407012866259,52.98162405288263],[-126.56379404285917,52.98155645550773],[-126.56353910708725,52.98146523375531],[-126.56328758422437,52.9813498988101],[-126.5631448979668,52.98121106756552],[-126.56303383910567,52.981136521233594],[-126.56284716297606,52.98112789266359],[-126.56261264968093,52.98109987803496],[-126.5623159981333,52.98109848789298],[-126.56202147881484,52.98111726572072],[-126.56172903948695,52.98108111693168],[-126.56146769266907,52.980998885671895],[-126.56127372735837,52.980861981752724],[-126.5611048069215,52.98071375276491],[-126.56088215821177,52.98059491356437],[-126.56064011536228,52.98049016860817],[-126.56038609596911,52.98039612982053],[-126.56012932376083,52.98030602998065],[-126.55985417822042,52.98023729837399],[-126.55957810824194,52.98016970003137],[-126.55930480788201,52.98009928203919],[-126.55904801760077,52.980007494623294],[-126.55880507207661,52.97990387073236],[-126.55856120238987,52.97980138023571],[-126.55827152162107,52.97976184816778],[-126.55797514433247,52.97978062473576],[-126.55769418988265,52.979837417360855],[-126.55740562612283,52.97988304875064],[-126.55707917945304,52.97995686331642],[-126.55705026396457,52.98009875419784],[-126.55684088411961,52.980137277625936],[-126.55644920558075,52.98007245924054],[-126.55618228608668,52.979990798393125],[-126.55591630780398,52.979909132502435],[-126.55564215575325,52.97984374805803],[-126.55533793445915,52.979833420637355],[-126.55504756493463,52.97981293327332],[-126.55474995361512,52.979808175961665],[-126.55446029831867,52.97977031973175],[-126.55417966407043,52.979708888801376],[-126.55389539457346,52.97965475338893],[-126.55363036262959,52.97957419845698],[-126.55336439920346,52.97949309151013],[-126.55309570429523,52.979416470022926],[-126.55282422666687,52.97934154628609],[-126.55255551154423,52.97926436787087],[-126.5522886559661,52.97918550378529],[-126.55202269019897,52.97910382906837],[-126.55175673999301,52.97902327423039],[-126.55148251246595,52.97895227772946],[-126.55119114574796,52.97892562700713],[-126.55089604858435,52.97889899300358],[-126.55060453031227,52.9788605802368],[-126.55031844914122,52.97880980633473],[-126.55006083328288,52.978723606005445],[-126.54992161787878,52.97856177576023],[-126.5497827806378,52.97842795736012],[-126.54943319358928,52.97837076321008],[-126.5491254054541,52.978372197736014],[-126.54882053806755,52.97838370281809],[-126.54852200446504,52.97837948991403],[-126.54822537964321,52.97837862902836],[-126.54793266602279,52.97839175161922],[-126.54766126528828,52.97846641371764],[-126.54736672877246,52.97848290502268],[-126.54706820188314,52.97847925316022],[-126.5467718140677,52.97849687212146],[-126.54648707201413,52.97854973817013],[-126.54621662942431,52.97862606881928],[-126.54596128114912,52.978716896074694],[-126.54572578481907,52.97882780075398],[-126.5454638913168,52.978916980874445],[-126.54530158186651,52.97906171823265],[-126.54517780732291,52.979228697068805],[-126.54503434393374,52.97938847875076],[-126.54484860532546,52.979525479927325],[-126.5445744012453,52.97960014776776],[-126.54432855006226,52.97970492989691],[-126.54411558708829,52.979828053220835],[-126.54402450100021,52.97999936201639],[-126.54403239827349,52.98017916928303],[-126.54403563951287,52.980359006987136],[-126.54402394191088,52.98053890466498],[-126.54410544032496,52.98071109302323],[-126.54431965491817,52.98083112319255],[-126.54462096786726,52.98090537277048],[-126.54490071303691,52.980897912248594],[-126.54518972098411,52.98088537022605],[-126.54542247952025,52.980996348222476],[-126.54560155663323,52.98114007019647],[-126.54582415780988,52.98125950301401],[-126.5460532393275,52.981374414224796],[-126.54621469153994,52.98152494020048],[-126.54632782780043,52.98169137760041],[-126.5463366682177,52.98187062441317],[-126.54632124170519,52.982049983692086],[-126.54631889611053,52.98222984707348],[-126.54632961603322,52.982411326214006],[-126.54639620997159,52.98258413773219],[-126.54652138990262,52.98274323994427],[-126.54668658676185,52.98289542415841],[-126.5468508379122,52.98304593618073],[-126.54705583055379,52.983172727372875],[-126.54734020140886,52.98323360205299],[-126.54758679743871,52.98333050011662],[-126.54781224312866,52.9834515922264],[-126.54801637253713,52.983583988489954],[-126.54813505371783,52.98374423969794],[-126.54824167389107,52.9839101406486],[-126.54836226534607,52.98407486490898],[-126.54848472373018,52.98423845083487],[-126.54861275073083,52.98440089912051],[-126.54875100376958,52.984559929042526],[-126.54882694651435,52.98473326025814],[-126.54888892611741,52.98490946228239],[-126.54900020888385,52.985075340746306],[-126.54914033136458,52.98523437042173],[-126.5492692968815,52.985396248795354],[-126.54940106209246,52.98555754921213],[-126.54952267544186,52.985727870134994],[-126.54957515688542,52.98589066047331],[-126.54957467563956,52.986070514877184],[-126.54959100075395,52.98625028193866],[-126.54959145260166,52.98642956719854],[-126.54957790391015,52.98660891771578],[-126.5495802287586,52.986788758959506],[-126.54959655417228,52.9869685259431],[-126.54961658914829,52.987147719818836],[-126.54962263843997,52.98732697888431],[-126.54961844073814,52.98750685046337],[-126.54960583936088,52.98768675224087],[-126.5495848271327,52.987866137420895],[-126.54954141100062,52.988043385934056],[-126.54948491887669,52.9882206953639],[-126.54939663534188,52.988391429650086],[-126.54929432825243,52.9885605528617],[-126.54922847627091,52.988735664631136],[-126.54914674257869,52.98890860923964],[-126.54904442595688,52.989077167461986],[-126.5489346306157,52.98924463985653],[-126.54884073785145,52.989414834967484],[-126.5487533891874,52.989586684817965],[-126.54866603981712,52.98975853458603],[-126.54855998029237,52.989926553914906],[-126.54844736008356,52.990092918353305],[-126.5483487841008,52.99026257896711],[-126.54824927455552,52.99043167906557],[-126.54810673929356,52.990593700065105],[-126.54791435181623,52.99072402159429],[-126.54765044423536,52.990807047513734],[-126.5473752534614,52.99088340196774],[-126.54710758312466,52.99096420304038],[-126.5468408593531,52.991045554894946],[-126.5465845051562,52.99113583136384],[-126.5463602020912,52.99125172223732],[-126.5461585268393,52.99138600127115],[-126.54591444144035,52.99148798061918],[-126.54570331876178,52.99161333825554],[-126.5455269815791,52.99175870429124],[-126.54529420336526,52.99186959432665],[-126.54504353942211,52.99196768483426],[-126.54479189123764,52.99206128821529],[-126.5445440021702,52.99215824427429],[-126.54427631119371,52.99223847413758],[-126.54402089915864,52.99232986110094],[-126.54378906868689,52.99244186426194],[-126.5435657339611,52.99256222735946],[-126.5433395563462,52.99267868571021],[-126.54309832051389,52.99278512811447],[-126.542874975549,52.9929038135796],[-126.54269296741242,52.99304583968659],[-126.5425166212002,52.99319176581462],[-126.54239177539415,52.99335257755085],[-126.54231281091397,52.99352662457593],[-126.54223759282914,52.99370065429632],[-126.54213149794438,52.99386865848261],[-126.5420001171804,52.994030064525575],[-126.54186687706978,52.99419091419578],[-126.54172049410612,52.99434677717443],[-126.54151219428465,52.99447547561794],[-126.54128506035065,52.99459193421431],[-126.5411311887847,52.99474503392243],[-126.54095474393179,52.9948853552661],[-126.54071533427988,52.99499009889975],[-126.54049949972494,52.995113792088475],[-126.54032144140055,52.995274280570634],[-126.54004360812112,52.99543971694353],[-126.5398229625893,52.99547882572222],[-126.53952450893131,52.9954902767005],[-126.53923300557389,52.99553531129424],[-126.53897664360561,52.99562836768004],[-126.53873823644204,52.995738705320605],[-126.5385308819295,52.99587019982631],[-126.53834140317004,52.99601392928787],[-126.5380970533713,52.99609740877258],[-126.53779306015542,52.99611391856301],[-126.5375015011499,52.9961550316841],[-126.53722540271401,52.99623696878808],[-126.53701884632335,52.99635892787293],[-126.53688654101491,52.99652256417675],[-126.53681695771819,52.99670161124549],[-126.53682663719394,52.99687692681359],[-126.53689141192676,52.997055917857566],[-126.53693567379175,52.99723500226569],[-126.53696125187007,52.997413615943465],[-126.53698498588605,52.99759279378252],[-126.53701430388199,52.997771946166246],[-126.53705668660764,52.99794991848025],[-126.53710931947364,52.99812727931918],[-126.53716008663231,52.99830465758194],[-126.53719685676627,52.99848265536368],[-126.5372065807024,52.99866133213045],[-126.53719206433573,52.998841804604126],[-126.5371719419472,52.999021746809994],[-126.53716487634601,52.999201064760555],[-126.53723799107456,52.99937441471615],[-126.53730460295556,52.9995494705652],[-126.5373507063836,52.999727425644835],[-126.53737630263677,52.999906038900114],[-126.53737935190063,52.999999585233525],[-126.53739560882396,53.00017879680526],[-126.53740908096565,53.00035858579791],[-126.53742162036663,53.000537814271965],[-126.53743041923876,53.000717615559786],[-126.53742990136101,53.0008974682561],[-126.53736958755114,53.0010731023472],[-126.53729059606397,53.00124658938854],[-126.53720878973282,53.001419524430794],[-126.5371204215566,53.001590804001324],[-126.53703768813006,53.00176374310621],[-126.53697363874399,53.00193940286871],[-126.53694603398385,53.00211824926867],[-126.53693710761434,53.00229814009153],[-126.53699533053756,53.00247435455851],[-126.53707963474945,53.002646532808676],[-126.53718256173603,53.00281526455041],[-126.53730876412968,53.00297885221907],[-126.53726059354425,53.00315499544007],[-126.53723018201508,53.003333854567266],[-126.53716333165328,53.00350896227411],[-126.5371179812364,53.003686213062636],[-126.53709972274451,53.0038661462377],[-126.53711038043163,53.00404538294135],[-126.53713504457411,53.0042245558286],[-126.53717370118535,53.00440254442291],[-126.53720302467492,53.00458169603617],[-126.5371978318495,53.00476156064685],[-126.53709730335363,53.00493066312254],[-126.53692650232395,53.00507766585932],[-126.53673127844,53.005213583134854],[-126.53652666454491,53.005343931168454],[-126.53631734732119,53.00547206812196],[-126.53610707382957,53.005599079539955],[-126.53590151551722,53.00572943969947],[-126.53569878442941,53.005861462957185],[-126.5354960300327,53.00599292120851],[-126.53529517014567,53.00612549999144],[-126.53509617467864,53.00625918152343],[-126.53490188728244,53.006395647158406],[-126.53471323380869,53.00653489272134],[-126.53454992688263,53.00668521942292],[-126.5344044290297,53.00684219732815],[-126.53425142825742,53.00699640321549],[-126.53406933093821,53.00713841482066],[-126.5338834999477,53.00727932249925],[-126.53373892335026,53.007436286373206],[-126.53366551219912,53.00761030073945],[-126.53363041614337,53.00778862379829],[-126.53359251229881,53.00796695953027],[-126.53351162588271,53.00814045177734],[-126.53337548781468,53.008300182738516],[-126.53321402823079,53.008451063773364],[-126.53305633688841,53.00860360384852],[-126.53290050328235,53.00875670004663],[-126.53274749015856,53.008910903808356],[-126.53261696807434,53.009072293704236],[-126.53248926650627,53.00923478226591],[-126.53233905686086,53.009390093310785],[-126.53219073487912,53.00954596037367],[-126.5320423967629,53.009701818339444],[-126.53188657040998,53.00985491303115],[-126.53171947126303,53.010003576207204],[-126.53153455293702,53.01014504048579],[-126.53131297217139,53.0102653706267],[-126.53104702304687,53.01034669060773],[-126.53075721253617,53.010386648870785],[-126.53048175974125,53.01045456399815],[-126.53020442517409,53.010521357443096],[-126.52991850106883,53.01057251040095],[-126.52963253329533,53.010621412837956],[-126.52934661475211,53.01067312015692],[-126.52906354406386,53.01072929611282],[-126.52879093486756,53.010801676608985],[-126.52853160941665,53.01089024010355],[-126.52828171349275,53.01098772499997],[-126.52803844131998,53.0110919028639],[-126.52779233342403,53.01119273132328],[-126.5275424409252,53.011290770386466],[-126.52729538981464,53.01139160200534],[-126.5270841272121,53.0115180452791],[-126.52694698651264,53.011674411245394],[-126.52694268937267,53.01185539993962],[-126.52693465250093,53.01203472005003],[-126.52693407501056,53.01221456259709],[-126.52693630541528,53.012394401544974],[-126.52694881108329,53.01257418560447],[-126.52697249640872,53.01275336391574],[-126.52701763801058,53.01293077003039],[-126.52709727662388,53.013104095634674],[-126.52716852118382,53.01327857921226],[-126.527236965367,53.01345363102956],[-126.527305418152,53.0136281269726],[-126.52740389455514,53.01381593492075],[-126.5272311587247,53.013888420753105],[-126.52691760898792,53.0138976655273],[-126.52662200402149,53.013923081444986],[-126.52632937899301,53.013963605926726],[-126.52608694851239,53.014062728885875],[-126.5259273369131,53.01421471150049],[-126.52582392628224,53.01438325122639],[-126.52574018100745,53.014556185289514],[-126.5256452192857,53.014728048732614],[-126.52546678126107,53.014867788774815],[-126.52521686189058,53.014965831661996],[-126.52496789606835,53.01506498132493],[-126.52473966684187,53.01518029028347],[-126.52454624635766,53.01531673395228],[-126.52438286173663,53.01546761057373],[-126.52426072446173,53.01563119413786],[-126.52417789641142,53.01580412284893],[-126.524053869554,53.01596602928839],[-126.52389705730118,53.01611967278738],[-126.52376835335338,53.01628159965998],[-126.52368177409922,53.01645342407502],[-126.52360273955014,53.01663026175166],[-126.52340068548826,53.01674936911826],[-126.52312144552818,53.016817283369704],[-126.52283831872028,53.016872879468885],[-126.52255233489913,53.01692457019304],[-126.52226635848648,53.016975704407294],[-126.5219813280554,53.01702851003909],[-126.52169438161432,53.01707739714112],[-126.52143115767373,53.01715811804709],[-126.52139600930785,53.017337001170645],[-126.52131784150603,53.017509907035034],[-126.52118163438558,53.01767017878445],[-126.52099570776686,53.01781050952955],[-126.52077498326501,53.017930815237904],[-126.52054014364838,53.018042783375925],[-126.52034668983619,53.01817866417986],[-126.52025072279723,53.01834772143029],[-126.52023897022715,53.01853098296059],[-126.52001058610321,53.01863619838859],[-126.51977010475979,53.018745384006],[-126.51954090874104,53.01886013098778],[-126.51928151357488,53.0189497942495],[-126.51902213225112,53.019039456870416],[-126.51880041366437,53.019156401556344],[-126.51861165753324,53.01929617605921],[-126.51842385489878,53.01943706657322],[-126.5182266523033,53.01957408072578],[-126.51806321647175,53.0197227072296],[-126.51797474669269,53.01989509105544],[-126.5178797142999,53.02006470678601],[-126.51768250143662,53.020200034741364],[-126.5175124912105,53.020346448218845],[-126.51738830845024,53.02049994831654],[-126.5170881467079,53.02053936201214],[-126.51682387060644,53.02045872215432],[-126.51657430850096,53.020359524222364],[-126.51633493631644,53.02025300226807],[-126.51610201832875,53.0201402932151],[-126.51587003446642,53.020028135393204],[-126.51563249907315,53.01991879819535],[-126.51539490929079,53.01980610816007],[-126.51515366239006,53.019698471471415],[-126.51490139545132,53.01960712544312],[-126.51462251750002,53.019553436861216],[-126.51431892895292,53.01954019407002],[-126.51402008929942,53.01953421766681],[-126.5137203763047,53.019533837944586],[-126.51342173308771,53.019544102224444],[-126.51312796820737,53.01957115232311],[-126.51283240197522,53.019604932636625],[-126.51253599706745,53.01964600370969],[-126.51224716838526,53.01969599632888],[-126.51197157162713,53.01975938600955],[-126.51172335290057,53.01984729874553],[-126.51152145941525,53.019983757160034],[-126.5113383582536,53.02013021843136],[-126.511158956637,53.020273866555286],[-126.5109898767376,53.02042250753414],[-126.51083299410234,53.02057557751267],[-126.51069579796793,53.02073472041411],[-126.51057640640869,53.02089995341534],[-126.51046449644565,53.02106627442192],[-126.5103544663406,53.02123370768832],[-126.51025005066698,53.021402237067086],[-126.51015311677098,53.02157185449849],[-126.51007021970686,53.021744772695904],[-126.51001445913779,53.02192205557661],[-126.50999232992747,53.02210087829146],[-126.50999262847876,53.02228128032788],[-126.5099845247523,53.022461153925505],[-126.50994650854365,53.02263948050629],[-126.50989639544004,53.02282066511236],[-126.50982662162775,53.02299688782938],[-126.50972495275508,53.023162043120735],[-126.50953418751205,53.023293967626124],[-126.50929091302706,53.023407625481234],[-126.509072961787,53.023530146654025],[-126.50885500100838,53.02365322322725],[-126.5086370471434,53.02377573461346],[-126.508408706723,53.023889335175106],[-126.50818036497397,53.024002926323725],[-126.50799624019423,53.02414490428251],[-126.5077500158532,53.02424625485456],[-126.50746440315682,53.02425588305748],[-126.50722863130318,53.02413924274532],[-126.50700497290403,53.02401975309705],[-126.50677391967326,53.02390645314181],[-126.50654472169876,53.023792024250355],[-126.50631459200685,53.02367703416956],[-126.50608354248187,53.02356373283954],[-126.50585248757098,53.02344987530179],[-126.50563161680718,53.02332924160119],[-126.50540706761878,53.02321199375499],[-126.50514000849788,53.02313301608999],[-126.50484732851649,53.023096736045595],[-126.50455463398977,53.02306044637455],[-126.50426200151112,53.02302808200283],[-126.50396663415177,53.023001895911015],[-126.50367041890824,53.022983547350876],[-126.50337249098372,53.022976975258366],[-126.50307472072721,53.02298496845302],[-126.5027799910033,53.02301256145378],[-126.50249775069105,53.023069224977576],[-126.50224679060494,53.02316610220538],[-126.50202504402772,53.02328637645486],[-126.50181741494107,53.0234155633181],[-126.50161261291963,53.023546414072584],[-126.50139933281764,53.02367169790885],[-126.50116345773155,53.0237813901092],[-126.50089639858882,53.023860395566906],[-126.50060264870689,53.023891896244265],[-126.50030473953977,53.02388867785006],[-126.50000759357422,53.02387033299449],[-126.49971137574235,53.02385085398098],[-126.49941342740853,53.02384427195764],[-126.49911771045333,53.02386737787842],[-126.49884305895797,53.023936326148515],[-126.49859493343749,53.0240365450623],[-126.49835998183568,53.02414678346798],[-126.49811844147936,53.02425201137625],[-126.497855189246,53.024336605357185],[-126.49757579284648,53.02439884757046],[-126.4972897145107,53.02444935635869],[-126.49700175029113,53.02449707558875],[-126.49671853812387,53.02455260874311],[-126.49644484578184,53.02462379732247],[-126.49617589204978,53.02470167945423],[-126.49591356589542,53.024786820933045],[-126.49566919600325,53.02488981461164],[-126.49547186856007,53.025024549363025],[-126.49536457774734,53.025191956461676],[-126.49532462367173,53.02536972117052],[-126.49531738360632,53.02554959850588],[-126.49531481952738,53.02572944722751],[-126.49529355919722,53.02590881864089],[-126.49523771842144,53.02608497364213],[-126.49515944110065,53.026258981731345],[-126.49502779661735,53.02642033224576],[-126.4948191700714,53.02654782533498],[-126.49459268434752,53.02666474354995],[-126.49436526461834,53.026781109455996],[-126.4941350088146,53.02689524576249],[-126.49390380407573,53.02700882980476],[-126.49367165867535,53.02712128784048],[-126.49343763159284,53.027232641727686],[-126.49320172262348,53.02734287352825],[-126.49296579952856,53.02745199335584],[-126.49272800111596,53.02756055579274],[-126.49248926863028,53.0276685568991],[-126.49225051354875,53.02777600183101],[-126.49201082450728,53.0278828943885],[-126.49177020140432,53.02798922560246],[-126.49152955562039,53.02809499167071],[-126.49128892368223,53.02820076614303],[-126.49104734917798,53.02830653507164],[-126.49080576704813,53.028411747752244],[-126.49056419024413,53.02851752464236],[-126.49032353204741,53.02862273247139],[-126.49008006579078,53.02872683095006],[-126.48983188509388,53.02882646644234],[-126.48957991431388,53.02892275559491],[-126.48932606389452,53.0290168109726],[-126.48907031038121,53.029109188434106],[-126.48881456429983,53.02920100952772],[-126.48855881506097,53.02929395058107],[-126.48830496016163,53.02938800374154],[-126.48805298907786,53.02948485431223],[-126.48780573193064,53.02958503741392],[-126.48756412811781,53.0296896876322],[-126.48732819025632,53.02979990753059],[-126.48710073383562,53.02991625922071],[-126.48689772069679,53.030048196739735],[-126.48672476452909,53.03019402077261],[-126.48657525473553,53.03034926770529],[-126.48643792766305,53.03050894624709],[-126.48630623676911,53.0306702776644],[-126.48616984896738,53.030829951984956],[-126.4860212677514,53.030985759051106],[-126.48586988488618,53.03114101271065],[-126.48573911626336,53.031302339620986],[-126.48565610939087,53.03147468385973],[-126.48561237329646,53.031652459997794],[-126.48558640713448,53.03183184822285],[-126.48557164725915,53.03201119031089],[-126.48556436475154,53.03219106634662],[-126.4855580170799,53.03237037378007],[-126.48554886657575,53.03255024849878],[-126.4855322385096,53.032729598191665],[-126.48550066162538,53.0329084535937],[-126.48542325180296,53.03308188600639],[-126.48531964943824,53.03325038826809],[-126.48522633735682,53.03342108912285],[-126.48513956722654,53.03359288349721],[-126.48504812794711,53.03376414120727],[-126.48493983257376,53.03393154183745],[-126.48478656096442,53.03408623680647],[-126.48455810131408,53.034199790517],[-126.48432310398898,53.03431280586833],[-126.48418104235137,53.03446801873046],[-126.48411579845066,53.03464364119202],[-126.48407579483126,53.03482196581518],[-126.48402458575096,53.0349992158576],[-126.48390504398259,53.03516386473022],[-126.48370762504105,53.03529801428619],[-126.48354401422264,53.03544714732661],[-126.48345535890893,53.035618392167656],[-126.48339011023941,53.035794014110024],[-126.48328929403324,53.03596306758499],[-126.48314538066104,53.036120527606734],[-126.48297989676009,53.036269667440486],[-126.48279938959436,53.03641327492234],[-126.48256247550435,53.03652348864893],[-126.48237720160087,53.03665815090414],[-126.48232316107119,53.036834291048265],[-126.4822766047051,53.0370115210693],[-126.48220199008814,53.037185504181075],[-126.48214701941775,53.03736276848955],[-126.48206397329643,53.0375339801754],[-126.48194162003225,53.03769975874343],[-126.48185200148865,53.03786875607037],[-126.48192778558946,53.038043810014734],[-126.48204454374167,53.038209167784856],[-126.4821361554631,53.03838023067482],[-126.482137264548,53.038559506751795],[-126.48207574841348,53.03873567711154],[-126.48202545281946,53.038912922097275],[-126.48196767183497,53.03908907710575],[-126.48191550730037,53.03926632963654],[-126.48183620316458,53.03943976668041],[-126.4817353657081,53.03960825376114],[-126.48157736745284,53.03976016643531],[-126.48147184418396,53.03992811660183],[-126.48143464041716,53.040106984062405],[-126.48136843730506,53.04028149671985],[-126.48124137877312,53.04044448770501],[-126.48110587341732,53.040604707226926],[-126.48100316215877,53.040773201182645],[-126.48096128649136,53.04095153166493],[-126.48095024021558,53.04113085699549],[-126.48095320397749,53.0413106899518],[-126.4809561826083,53.041490513864716],[-126.48095448345131,53.041670365783816],[-126.4809639869907,53.041849607302694],[-126.48095668317326,53.04202947305812],[-126.48090637900565,53.042206717227],[-126.4808130294966,53.04237741370053],[-126.48070282094777,53.04254426146914],[-126.48059728719822,53.04271220161797],[-126.4805161116666,53.04288508923009],[-126.48046767927477,53.04306289022466],[-126.48043233048762,53.04324119369566],[-126.48040632896115,53.0434200148621],[-126.48038407012875,53.0435993855038],[-126.48036273777001,53.04377875235142],[-126.48033580905695,53.04395758618112],[-126.48029672240037,53.04413590472386],[-126.48022488840142,53.04431043023379],[-126.48015773213832,53.04448494561618],[-126.48014576115325,53.0446648300146],[-126.48016460353128,53.044844033287696],[-126.4801741108334,53.04502383924508],[-126.48013689084826,53.04520215002442],[-126.48006412140714,53.045376123355666],[-126.47996889319506,53.045546826445374],[-126.47984836424557,53.045711465062624],[-126.47970159733538,53.045867810905904],[-126.47952197992765,53.046011408746025],[-126.47932449669256,53.04614555012254],[-126.47912327137782,53.04627802111194],[-126.4789323767587,53.04641606128549],[-126.47876870400663,53.04656630724787],[-126.4786388089245,53.046728185725215],[-126.47852576408604,53.04689447772787],[-126.47842865160442,53.04706463125688],[-126.47835026034029,53.04723806135538],[-126.47829619599688,53.04741476327619],[-126.47826925617082,53.047593587293136],[-126.47829275556805,53.04777277166575],[-126.47836853004631,53.047946706440975],[-126.47846760281877,53.048116055773015],[-126.478568544951,53.04828540639422],[-126.4786489788229,53.048458757326834],[-126.47867715261746,53.048637357858425],[-126.47861934450255,53.0488135102317],[-126.47850161763161,53.0489787004728],[-126.47835013683849,53.04913338711729],[-126.47817894599623,53.04928086567804],[-126.47800118377268,53.04942500909211],[-126.47782342034192,53.04956915222643],[-126.47765504879145,53.049717739060796],[-126.47750731185592,53.04987352091852],[-126.47739520230664,53.05004037243024],[-126.47735516454337,53.05021812841287],[-126.47737587251773,53.05039788870218],[-126.47742271533423,53.05057529332941],[-126.47746674830317,53.050752718249406],[-126.47748092433687,53.0509324959206],[-126.4774735979466,53.051111804771374],[-126.47745786166844,53.05129171234392],[-126.47744400246266,53.051471047574644],[-126.47744415654084,53.05165088188056],[-126.47747326057473,53.051830043324394],[-126.47745193933173,53.05201052917241],[-126.47723747167579,53.05213297442729],[-126.47715251455713,53.05230475344453],[-126.47710592588056,53.05248253557205],[-126.47707709431394,53.052661375366974],[-126.47704266509989,53.05283967302401],[-126.47699513356297,53.053017458858214],[-126.47696537429852,53.05319630231517],[-126.47689913229547,53.053370802175934],[-126.4768160376672,53.05354369378271],[-126.47673108236201,53.0537160370593],[-126.47664611131655,53.0538883713545],[-126.47654290135219,53.054099440677305],[-126.47635384447027,53.0542385889551],[-126.47616290494157,53.05437661504979],[-126.47597009552858,53.05451465732164],[-126.47577915351005,53.05465268277374],[-126.47559009166004,53.05479182978404],[-126.47540478486789,53.05493263761257],[-126.47522510823974,53.05507566345746],[-126.4750529431193,53.055222020266854],[-126.47489204586012,53.05537336922064],[-126.4747395872206,53.05552805444762],[-126.47459089875227,53.055684400561084],[-126.47444218792565,53.05584018183085],[-126.4742887990408,53.05599487015862],[-126.4741269566781,53.05614510128446],[-126.47395102707186,53.05628979522515],[-126.47376288507792,53.05642949119599],[-126.47356723765411,53.05656529075231],[-126.47336970528791,53.056701106489605],[-126.47317781183291,53.056838575537874],[-126.47299530258452,53.05698104439365],[-126.47282219509192,53.05712740150228],[-126.47264910269908,53.05727656398794],[-126.47247977415769,53.05742682266785],[-126.47231606113975,53.057579308569586],[-126.47216173115346,53.057733988723015],[-126.47202049235925,53.05789086626921],[-126.47189703935615,53.05804990456561],[-126.47184480945809,53.05822715069454],[-126.47187584679826,53.05841247220998],[-126.47195437868336,53.0585835932761],[-126.4720627642361,53.05875011297296],[-126.47218887932037,53.05891487644559],[-126.47231687309505,53.059079076494506],[-126.47243646257408,53.05924443050729],[-126.47256537911608,53.059408070808814],[-126.47269336088317,53.05957227046273],[-126.4728026938231,53.05973878561476],[-126.47287750012991,53.059910476640056],[-126.47292432844881,53.06008732633852],[-126.47295250465157,53.060267612174194],[-126.47296292436599,53.06044853383175],[-126.47296027593215,53.06062949884726],[-126.47293983942943,53.06080830307365],[-126.47288296790006,53.0609889294376],[-126.47281115225466,53.061169050862944],[-126.47274865388798,53.06134802339952],[-126.472719781636,53.06152405557799],[-126.47274600149152,53.06169650573125],[-126.4728142493244,53.061867102383296],[-126.47290771901272,53.062035921730875],[-126.47302174315345,53.06220410289888],[-126.47315069582866,53.06236997419325],[-126.47328991212726,53.062533572190354],[-126.47343469055718,53.06269434201378],[-126.47357945372676,53.062852306010974],[-126.47373257159371,53.06300576332197],[-126.47389873679828,53.063155797643866],[-126.47407327554527,53.06330300137451],[-126.47425155620776,53.063449069325856],[-126.47442982314445,53.06359513705587],[-126.47460251134434,53.06374234741602],[-126.4747658650804,53.06389183601547],[-126.47491524634299,53.06404474203],[-126.4750236261568,53.06420846187679],[-126.47505837615805,53.06438984087291],[-126.47509684987489,53.064571204860876],[-126.47520991209335,53.064734896694596],[-126.47538172209651,53.06488715605058],[-126.4756019754541,53.06510924595291],[-126.47554307737671,53.065191278590426],[-126.47541404633587,53.06535370377937],[-126.47526162511636,53.06551342620572],[-126.47502240657634,53.065602351219894],[-126.4747247228966,53.06564388565491],[-126.4744753418248,53.06574292579977],[-126.47425895818695,53.06586816878888],[-126.4740717043213,53.06600674026237],[-126.47389293723289,53.06615144451882],[-126.47372166844644,53.06629947090234],[-126.47355604003269,53.06644915961319],[-126.47342983780219,53.06661549730634],[-126.47327819427595,53.066762888561904],[-126.47301279068861,53.06685022911621],[-126.47273044138426,53.0669281172593],[-126.47251579974166,53.067041580385464],[-126.47237917458692,53.06719507749003],[-126.47227732890168,53.067366918853516],[-126.47218020675172,53.06754265843631],[-126.47205960633883,53.0677078516468],[-126.47188927957787,53.06785700087217],[-126.47167382584936,53.067982790943496],[-126.47143572720029,53.06808963174372],[-126.47119102729259,53.06819200749109],[-126.47094162309608,53.06829104899265],[-126.47068939622194,53.06838785127613],[-126.47043527155957,53.068483549050725],[-126.47018115444808,53.06857868151516],[-126.46992890301918,53.06867492648312],[-126.46967572938918,53.06877173032913],[-126.46942066668318,53.06886686488828],[-126.46916275668329,53.06895752826648],[-126.46890009658962,53.069042051758174],[-126.46863077363852,53.069116507787676],[-126.4683529337493,53.06918092159129],[-126.46806562857803,53.06923472318179],[-126.46777447271396,53.06927845497876],[-126.46748040230625,53.069311548526976],[-126.46718529678431,53.06933624630034],[-126.46688826608788,53.06935591325703],[-126.46659024976468,53.069371657189734],[-126.46629034794276,53.06938460212607],[-126.46599041877553,53.06939643488983],[-126.46569049819817,53.06940770213446],[-126.46539151697432,53.06942008539747],[-126.46509348117307,53.069434140420995],[-126.46479641808759,53.06945099655042],[-126.4645022215965,53.06947288730828],[-126.46421087654622,53.06949980381115],[-126.46392152304247,53.06953791658843],[-126.46364004452006,53.069612408914054],[-126.46338693670526,53.069717051225595],[-126.46318640985325,53.06984333170287],[-126.46305729906994,53.07000406678658],[-126.46295640605013,53.07018093360801],[-126.46282918119296,53.07034334621528],[-126.4626164786141,53.07046855289008],[-126.46234063055302,53.07054582567753],[-126.46205123162997,53.07058057255083],[-126.46175228985553,53.07059742832606],[-126.46145241445227,53.07061372226873],[-126.46115643940774,53.070646251673615],[-126.46084282720437,53.070689498197815],[-126.46060074641963,53.07077783994782],[-126.46047712799178,53.07092902209169],[-126.46040523682453,53.071108579205095],[-126.46033619042483,53.07129260708804],[-126.46021830569158,53.07145553608413],[-126.4599980996944,53.07157964666707],[-126.4597788286158,53.07170319742841],[-126.45955673510575,53.071824508826516],[-126.45933274382246,53.07194471565785],[-126.45911158116492,53.07206658729418],[-126.4588988799431,53.072192342826774],[-126.45870026423883,53.07232477510465],[-126.45851856989776,53.072466096220346],[-126.45834909762645,53.07261465721189],[-126.45819279857746,53.07276988971924],[-126.45805149436903,53.072930110492784],[-126.457927066313,53.073093618128226],[-126.45781855145454,53.07325986961729],[-126.4577166020633,53.07342890122545],[-126.45762123305767,53.07360070394759],[-126.45753522932888,53.07377414653406],[-126.45745765776323,53.073948685825236],[-126.45739130633345,53.07412485783603],[-126.45733711434659,53.074300982713616],[-126.4572969636572,53.07447817366804],[-126.45727644229471,53.074655844361814],[-126.45727182339604,53.074835138674146],[-126.45727844938791,53.075015509916305],[-126.45728880588038,53.0751964314191],[-126.45729730765663,53.07537735111873],[-126.45729925217998,53.075557740427044],[-126.45728809687452,53.075737059950676],[-126.45727134448504,53.0759175215973],[-126.45725835550077,53.076100209608846],[-126.45724630585507,53.07628401444021],[-126.457231453024,53.07646727434409],[-126.4572100574326,53.07664999482884],[-126.45717926781639,53.07682994597285],[-126.45713442626385,53.07700659900115],[-126.45707271433294,53.077179391119344],[-126.45698944079264,53.077346099496836],[-126.45686677210445,53.07750232011874],[-126.4566897435302,53.077644749288375],[-126.45647802504021,53.07777890417453],[-126.45625505039543,53.077909740712094],[-126.45604051705462,53.07804390565462],[-126.45585787398196,53.078186346223745],[-126.45572679815992,53.078343162721296],[-126.45562948007067,53.07850936842156],[-126.45554903764668,53.07867999085041],[-126.45548172536536,53.078854479763294],[-126.45542378581747,53.0790311824003],[-126.45537147328378,53.07920953953006],[-126.45532384542864,53.079389554791504],[-126.45527623222422,53.07956957892101],[-126.45522580028862,53.079749049153484],[-126.45516880389242,53.07992742416151],[-126.4551033760211,53.08010359065364],[-126.45502482237725,53.08027644622233],[-126.45493033940846,53.08044543691859],[-126.45481709976312,53.08061058255285],[-126.45468793054685,53.08077187219136],[-126.45454751677546,53.08093095502197],[-126.45440148029151,53.08108894778338],[-126.45425263926522,53.0812463864105],[-126.45410660050099,53.08140436981553],[-126.45396898592726,53.08156400584411],[-126.45383232475828,53.0817247585044],[-126.45368817075844,53.08188441928798],[-126.45353934231164,53.08204354206665],[-126.45339237369558,53.082203213256356],[-126.45325009232596,53.08236342201739],[-126.45311717778803,53.0825252798561],[-126.45299924013815,53.082688765294414],[-126.45290097387276,53.082854971890576],[-126.45282517373047,53.08302500945456],[-126.4527802775451,53.083198854657944],[-126.45276160315802,53.08337652547849],[-126.45276073119824,53.08355692475686],[-126.45277202486811,53.08373895362269],[-126.4527879922896,53.08392152927592],[-126.45280023470764,53.084104119183856],[-126.45280403659214,53.08428506519414],[-126.45279286591919,53.084464939129774],[-126.45277514250613,53.08464484711975],[-126.45275461527133,53.084824201114635],[-126.45273222370469,53.08500411798388],[-126.45270983204377,53.085184043793724],[-126.4526874341656,53.08536340488708],[-126.45266690621214,53.08554275879325],[-126.45265011832909,53.085722098349194],[-126.45263894069384,53.085901416392545],[-126.45263243976262,53.08608015178429],[-126.45266238727423,53.086257636025394],[-126.45274933728619,53.08643209618579],[-126.45279517732804,53.08660839003164],[-126.45280087944215,53.08679212519488],[-126.45278976800094,53.08697760995452],[-126.45274490930127,53.08715537175334],[-126.4526427806781,53.0873126287134],[-126.4524036636467,53.08742559136207],[-126.45216927911552,53.08754470246667],[-126.45203817257848,53.08770262549417],[-126.4519314734905,53.08786942772594],[-126.45183698212956,53.08804177654284],[-126.45174156838056,53.0882146935067],[-126.45163488468772,53.08838317157461],[-126.45150759765681,53.088548931564006],[-126.45134556229794,53.08870024907523],[-126.4511128770662,53.08880422066827],[-126.4507958025796,53.088887224866426],[-126.45076403739472,53.089066065161106],[-126.45072666701529,53.08924548256002],[-126.45069303088967,53.08942432096961],[-126.4506687460431,53.08960313265099],[-126.45066129360895,53.08978187115268],[-126.45066789076473,53.08996336170538],[-126.45068480601833,53.09014705382244],[-126.45072040085779,53.09032843373972],[-126.45078396763401,53.09050186366026],[-126.45088764752283,53.0906650562849],[-126.4510501294197,53.090817940180635],[-126.4512582617561,53.09095496299753],[-126.45149141418943,53.09106948052034],[-126.45173471913697,53.0911705131721],[-126.45198638072223,53.09126647574195],[-126.4522436066683,53.09135792565085],[-126.45250732482607,53.09144487723747],[-126.45277382112992,53.091528447228114],[-126.4530430957241,53.091608653531026],[-126.4533132749978,53.09168660585374],[-126.45358435306461,53.09176175742511],[-126.45385820918631,53.091833536306595],[-126.45413390668037,53.091902510793865],[-126.45441238808525,53.091968668286114],[-126.45469270176858,53.09203257714042],[-126.45497393493756,53.092094240857925],[-126.45525513880492,53.09215309837235],[-126.45553820192086,53.092210836549185],[-126.45582581673803,53.09225622239891],[-126.4561262088948,53.09227355553849],[-126.45642356795437,53.09226904605279],[-126.45672080019565,53.09225276692917],[-126.45701794169337,53.09222808839095],[-126.4573131641064,53.09219893466412],[-126.45760623162542,53.09214346205846],[-126.45789647596304,53.092085749763186],[-126.45815074165203,53.09207468009034],[-126.45846363773984,53.092123331881034],[-126.45874496183906,53.09219282955908],[-126.4590171167333,53.092279169183406],[-126.45927345769859,53.09237396865798],[-126.45950103443865,53.09248905678354],[-126.4597119546699,53.09262045154602],[-126.45992565287975,53.092748473716625],[-126.4601643343319,53.09285230370955],[-126.4604298389723,53.092929146487855],[-126.46070922816075,53.092991924231654],[-126.46099509299032,53.0930473885424],[-126.4612837446644,53.093101729782575],[-126.46156684661369,53.0931616853623],[-126.46204396096222,53.0932601071864],[-126.4621828201575,53.093300456751884],[-126.4623437349569,53.093390029352676],[-126.46225956260213,53.093561789957235],[-126.46213797393678,53.093733132086996],[-126.4620129424615,53.093931943427734],[-126.46188756203831,53.09409882717942],[-126.46175463753718,53.0942601289622],[-126.46160857585471,53.0944175647419],[-126.46145311176085,53.09457055517347],[-126.461284504168,53.09471911482262],[-126.46110086424024,53.09486157478732],[-126.4609068728287,53.0949990282453],[-126.4607044458835,53.09513427332257],[-126.46048314188327,53.09525390508023],[-126.46023349873518,53.09534787607955],[-126.45996213187458,53.095421762723696],[-126.45968226622374,53.09548895900597],[-126.45940618323372,53.09556005706017],[-126.45912812568749,53.0956216426669],[-126.45883533932076,53.09570513833586],[-126.458594342283,53.09582148154507],[-126.4584179466911,53.095943176017336],[-126.45843954549505,53.096123486980524],[-126.45848552585817,53.09631098187634],[-126.45855944123906,53.09648548750111],[-126.45865109623927,53.09665768329736],[-126.45876233141281,53.096824765403454],[-126.45889595097573,53.096984472987415],[-126.45905101559549,53.09713849480169],[-126.45921632592696,53.097289115205015],[-126.45938256809518,53.09743861128358],[-126.45954603723888,53.09759035882883],[-126.45971694477267,53.097739271567605],[-126.4599008781005,53.09788029908879],[-126.46010803643021,53.09800722563717],[-126.4603365673916,53.098121743484626],[-126.46057812406463,53.09822836688847],[-126.46082432680726,53.09833273075652],[-126.46106587094346,53.09843935320912],[-126.46130185577191,53.09854935825277],[-126.46153782685936,53.09865936287673],[-126.46177382018934,53.09876992269025],[-126.46203612399952,53.09889271323817],[-126.46233425782924,53.098868573466326],[-126.4626314608103,53.098845566010795],[-126.46292700680243,53.09884216791539],[-126.46322382336253,53.0988701370634],[-126.46350879445274,53.09892616349328],[-126.46378551493333,53.098996787629595],[-126.46406227042313,53.09907189283283],[-126.46432793410482,53.0991576808782],[-126.46457038548567,53.099259810756884],[-126.46479901513813,53.09938160707063],[-126.46504090973059,53.09951735205163],[-126.46526887234248,53.0996626708257],[-126.46545385257107,53.09981208452333],[-126.46556959802591,53.09996009443878],[-126.46557189939277,53.099999301560175],[-126.4655795960731,53.10010459471099],[-126.46545781145339,53.10025857768834],[-126.46524621679771,53.100411793595235],[-126.46499424050026,53.10055003725055],[-126.46475128226201,53.100659121847166],[-126.46447108885515,53.1006988746544],[-126.46415591886097,53.10070459454239],[-126.46386077069005,53.10074553404779],[-126.46357456586017,53.10083517334174],[-126.46329401771848,53.10092758643437],[-126.46302607182973,53.10097626044916],[-126.46277871131886,53.10093913347025],[-126.46255483412097,53.1008251579796],[-126.46233717133516,53.100679793791905],[-126.46211028159706,53.10054734609912],[-126.46186132518461,53.10044859804666],[-126.46159935719409,53.10035886397734],[-126.46134390888787,53.10026574249503],[-126.46110980616429,53.100156286011256],[-126.46090349528649,53.10002319995715],[-126.46087143061078,53.09999923057128],[-126.46070925553668,53.09988109382842],[-126.4605094840229,53.099746296411816],[-126.46028564968152,53.09963512206502],[-126.45997872239786,53.099537716231914],[-126.45963278782583,53.09946735238783],[-126.45937040730104,53.09950982951002],[-126.4593160993824,53.09959183429548],[-126.45931413617204,53.099755994090785],[-126.45935461203736,53.09995135291611],[-126.45936728641537,53.099999483517635],[-126.45940923899593,53.100158426036664],[-126.45944881536201,53.10035771438186],[-126.45946014231855,53.10053974983415],[-126.45947051425846,53.10072065955416],[-126.45947433998087,53.100901038953076],[-126.45946225929073,53.101080359703104],[-126.4594258127462,53.101256978469436],[-126.45934723753197,53.10142983483365],[-126.45923681518718,53.10159888876635],[-126.4591151185534,53.101763513488244],[-126.4589708920545,53.10192093807256],[-126.45881447511555,53.102075048399506],[-126.45868150179257,53.10223522558386],[-126.45857106267329,53.10240316736783],[-126.45848125055603,53.10257550190278],[-126.45842514984871,53.10275107596009],[-126.45840555960018,53.10292986080652],[-126.45840564532065,53.103110819213185],[-126.458407601841,53.103291761382756],[-126.45843296437499,53.10347374218724],[-126.45844063679945,53.10366419053923],[-126.45844193532746,53.10387147047888],[-126.45846210454997,53.10400640311135],[-126.45854725285244,53.10418030872251],[-126.45876416237486,53.104341368970026],[-126.45898350866496,53.10446881454574],[-126.45918792778835,53.10459854964916],[-126.45939896198358,53.104734990403585],[-126.45957271173734,53.10488389181394],[-126.45972309246699,53.10503513372471],[-126.4598353271559,53.10520500690889],[-126.45992237267194,53.1053805802692],[-126.45997761520066,53.10555795350708],[-126.45999731202996,53.10573435352849],[-126.45998989609197,53.105913090983975],[-126.45996378215183,53.10609303059508],[-126.45992176280247,53.10627358780931],[-126.45986664866118,53.106453075470526],[-126.45980212740994,53.10662923830198],[-126.45972446850702,53.106800405627844],[-126.45957364665418,53.10695561517491],[-126.45939657090943,53.10710420379237],[-126.45923166053687,53.10725386532809],[-126.45906016847763,53.10740131125997],[-126.45888586395502,53.107547647386056],[-126.45871815701365,53.107697883719794],[-126.45853914062448,53.10784199667007],[-126.45832718025305,53.10796718929288],[-126.4580992066192,53.10808179475362],[-126.45786276195265,53.10819251545445],[-126.45762254362525,53.10830045361889],[-126.45738044685937,53.108407833841326],[-126.45714116015577,53.10851632314707],[-126.45690658768501,53.10862759039635],[-126.45667954691011,53.10874331886271],[-126.45646944768218,53.108868500863245],[-126.45630170881098,53.10901704856169],[-126.45614620211352,53.10917282729077],[-126.4559718802467,53.10931915897438],[-126.45578629401976,53.10946217244491],[-126.45558467971361,53.109594607528855],[-126.4553481658304,53.109700276784565],[-126.45499755673664,53.10981087549155],[-126.45474665524799,53.10970875894545],[-126.45455620619411,53.10957335154247],[-126.45440666586445,53.109413701291814],[-126.45417911418174,53.10930813241826],[-126.4538976900256,53.109239189230365],[-126.45362270638256,53.109160692308855],[-126.45335696267463,53.10906983430608],[-126.45320852443496,53.108925864670255],[-126.45312992705249,53.10875025441707],[-126.45305317146598,53.108571831417485],[-126.45294376921056,53.10840194133579],[-126.45281662669271,53.108236045167665],[-126.45264204553912,53.10809665672515],[-126.45239771914164,53.10799618618403],[-126.45213013223237,53.10790701762137],[-126.45188483529662,53.1078037530716],[-126.45164233572412,53.10769879215854],[-126.45140353781548,53.10758989949759],[-126.45117404292974,53.107475933277556],[-126.45096033571562,53.10735013711413],[-126.45076242507116,53.10721475196942],[-126.45056171952051,53.10708106230643],[-126.45034151943743,53.10696089203912],[-126.45010825891409,53.10684413245518],[-126.44986663499981,53.106731886060714],[-126.44961208432771,53.106637059894005],[-126.44934005831031,53.10656974630856],[-126.4490551851253,53.10652601048851],[-126.44876202483208,53.10649406575463],[-126.44846426296908,53.10646998991117],[-126.44816374066062,53.1064509613564],[-126.4478622964591,53.1064324912775],[-126.44756177195838,53.10641178499944],[-126.44726490978744,53.10638489710939],[-126.44697357559757,53.10634845921171],[-126.4466905183413,53.10629910855428],[-126.44641294504262,53.10623741148983],[-126.44613993650681,53.10616561243853],[-126.44587153738237,53.10608651688635],[-126.4456068164724,53.10600123986711],[-126.44534485761818,53.1059109053131],[-126.44508659173526,53.10581720386765],[-126.44483112330421,53.10572180616401],[-126.4445775270244,53.105626400866925],[-126.44433505800089,53.10552142483681],[-126.44410739970441,53.105401270982235],[-126.44388438663391,53.10527718212626],[-126.44365676019376,53.105159823938074],[-126.44341435480908,53.10506045702026],[-126.44314880178608,53.10498469701424],[-126.44286562933651,53.10492301261619],[-126.44257137226623,53.10487481452482],[-126.44227258620099,53.104840078130884],[-126.44197579100369,53.104818223276986],[-126.44168386190148,53.10481371209899],[-126.44139041186689,53.10484281958753],[-126.441097171273,53.10489209378793],[-126.44080772432109,53.10494639068478],[-126.4405210557381,53.10499732410835],[-126.44023723189548,53.10505271910177],[-126.43995436443299,53.10511091547337],[-126.4396724566459,53.10517079276064],[-126.43939150255889,53.10523177731866],[-126.43909549525641,53.105286103343616],[-126.43879953111025,53.10534322512175],[-126.43854496218572,53.10542427792456],[-126.43837324675944,53.10555488774042],[-126.43828152702625,53.105732259893216],[-126.43820106736065,53.10591295158406],[-126.43811893867536,53.106113261843134],[-126.43803323681472,53.10624019092969],[-126.43775245840168,53.10631909815997],[-126.43744226582031,53.106358906579985],[-126.43715033814536,53.106355504623195],[-126.43685157148404,53.10632467157559],[-126.43664373100559,53.10631031776347],[-126.43629658686993,53.106304312012234],[-126.4359888118261,53.10630713266164],[-126.43570736123958,53.10632105108057],[-126.43541389666808,53.10635014370853],[-126.43511572941466,53.106377576713754],[-126.43482368687216,53.10636296488138],[-126.43453593911345,53.106310241060825],[-126.43424815984035,53.10625583149195],[-126.43396123263817,53.10619246341651],[-126.4336735959538,53.106150376936505],[-126.43338079574684,53.10615369161003],[-126.43307981805559,53.10618000933129],[-126.43278562475808,53.1062287015883],[-126.4325131745616,53.10630028737377],[-126.43226055606488,53.106390847748564],[-126.43201744368461,53.10649481829578],[-126.43178000250776,53.10660605505775],[-126.43154352015821,53.106718964031515],[-126.43130324883663,53.10682740452533],[-126.431056372347,53.106929701621745],[-126.43081046261341,53.10703592074202],[-126.43056457440791,53.10714438017026],[-126.43031773628073,53.10725228678843],[-126.43006900095456,53.10735627370998],[-126.42983914206543,53.107478118732715],[-126.42961017374127,53.107594913534],[-126.4293728144965,53.10771398822674],[-126.42903581126141,53.10778804122504],[-126.42868846919126,53.10776353080968],[-126.42839251859992,53.107733230892364],[-126.42808238063702,53.10768841570904],[-126.42778718181646,53.10763906384114],[-126.42749374371722,53.10758017653086],[-126.42722912950448,53.10750270132516],[-126.42694684441302,53.10743481768606],[-126.42664213170593,53.10737093142091],[-126.42639086584052,53.10731805615311],[-126.42610225222647,53.10727259343963],[-126.42581272810517,53.10722881846481],[-126.42552227280785,53.1071861665876],[-126.42523089197884,53.1071452024896],[-126.4248747650602,53.10708429325219],[-126.42464728618201,53.10706998893441],[-126.42435409757388,53.10703518718686],[-126.42406092997497,53.10700094038299],[-126.42376683667908,53.10696838133405],[-126.42347274947609,53.10693638624143],[-126.42317773643481,53.106906069931334],[-126.42288275550492,53.106877428970265],[-126.42258777680381,53.10685047242872],[-126.42229189275612,53.10682575929379],[-126.42199602582852,53.106802730520556],[-126.42169927014436,53.10678362128452],[-126.42140067877995,53.10676955540803],[-126.42110215271174,53.106760535069164],[-126.42080273385291,53.106756563678466],[-126.42050428746144,53.106757060921694],[-126.42020598379868,53.10677044660327],[-126.4199078481482,53.10680232290138],[-126.41960974360934,53.1068358745335],[-126.41931519950852,53.1068526059801],[-126.41902223110185,53.10683795840851],[-126.41872249085532,53.10680148077199],[-126.41842908229644,53.10674370031273],[-126.41816070904387,53.10666229208634],[-126.41793511137959,53.10655440585693],[-126.41775035758732,53.106413881713834],[-126.41758600980626,53.10625535793576],[-126.41742260625169,53.106096830585294],[-126.41723972170323,53.1059557432756],[-126.4170169346491,53.10584840109771],[-126.41674869648948,53.10577987888036],[-126.41645449620624,53.105734977051625],[-126.41590085606794,53.10565905906978],[-126.41561684170503,53.105604035237505],[-126.41533283207016,53.105547890253185],[-126.41504697012836,53.105495112452715],[-126.41475657586783,53.10545635105698],[-126.4144588570283,53.105433865693456],[-126.41418224104474,53.10536817264947],[-126.41390837013756,53.10529685811371],[-126.41363634936337,53.10522330452573],[-126.41336431852064,53.105148620929576],[-126.41309227780584,53.105072825251646],[-126.41282024347551,53.10499758467083],[-126.41254728894606,53.10492458758378],[-126.4122725065488,53.1048543928951],[-126.41199494927784,53.104788133310514],[-126.41171373259466,53.10473029370799],[-126.41142422025156,53.10468591879611],[-126.41113010926202,53.10464884660376],[-126.41083603136126,53.104615134928146],[-126.41054199194788,53.104585348459665],[-126.41024522980287,53.10456340492522],[-126.40994845308408,53.104541469660624],[-126.40965263583229,53.10452120652638],[-126.40935588541564,53.10450038117506],[-126.40905909878711,53.10447732326037],[-126.40876232736262,53.104454255585246],[-126.408465535939,53.10443063148967],[-126.40817059305354,53.104403083159774],[-126.40787928581547,53.104365993209186],[-126.40759071216068,53.10432048522933],[-126.4073048992933,53.10426937372678],[-126.40701997741078,53.10421433239526],[-126.40673690029362,53.10415647841354],[-126.40645382403503,53.10409863271538],[-126.40617166038898,53.10403909804138],[-126.40589129761942,53.103970592878156],[-126.4056127541575,53.103898154736555],[-126.40533424812563,53.10382796568263],[-126.40505300399433,53.10376561957083],[-126.4047700289216,53.10371785358554],[-126.40448163944366,53.103690829370926],[-126.40418785121355,53.10368623199651],[-126.40389049199246,53.10369957335912],[-126.4035904200036,53.10372356306677],[-126.40329042130686,53.1037537187401],[-126.40299133422972,53.10378219434328],[-126.40269594595031,53.10380616580816],[-126.40239960911377,53.10382958401731],[-126.40210329754443,53.10385412185007],[-126.40180697601679,53.10387922368118],[-126.4015106796323,53.103905436172695],[-126.40121533215664,53.10393389457038],[-126.4009209281197,53.103964025227256],[-126.40062844133269,53.10399751001212],[-126.40033596027712,53.1040332349589],[-126.4000482481448,53.10407790666901],[-126.40001744322066,53.104084168927145],[-126.39976439350984,53.10413488961876],[-126.39948339948211,53.104196899773925],[-126.39920238443173,53.104258353582296],[-126.39891757314452,53.10431254106417],[-126.39861567050197,53.10434157081034],[-126.39830806428392,53.10435941446973],[-126.39803632759171,53.10441299105602],[-126.39780534367162,53.104521887825335],[-126.39759991309555,53.10466151512645],[-126.39743673341677,53.104818371514355],[-126.3973306728641,53.10498174944122],[-126.39728179439304,53.105156704331634],[-126.39726012593918,53.10533941091448],[-126.39723470032199,53.10552213009899],[-126.39718117178084,53.10569934142089],[-126.39712014903424,53.105877142582294],[-126.39705445560637,53.10605495041658],[-126.39697658119096,53.106230002451525],[-126.39687804154681,53.10639784533948],[-126.39674949010853,53.10655626053169],[-126.39657870566036,53.10670137183123],[-126.39638070353054,53.10683816626278],[-126.39617709149815,53.10697386766001],[-126.39598942186812,53.10711455284111],[-126.39577653917195,53.10736064452365],[-126.39540650624853,53.107309777278125],[-126.39510891524819,53.10730125289091],[-126.39480950020157,53.10729777139435],[-126.39451012691339,53.10729877080433],[-126.39421174873416,53.1073053683927],[-126.39391339713963,53.10731644694289],[-126.39361508116512,53.1073297655228],[-126.39331675519087,53.10734363912604],[-126.39301935650825,53.1073558326986],[-126.39272099845552,53.10736466735693],[-126.39242257867657,53.10736846391998],[-126.39212228191474,53.107370016090314],[-126.3918191762361,53.10737214151449],[-126.39151602400155,53.10736922876942],[-126.39121652083651,53.10735621015189],[-126.39092436274963,53.10732804488601],[-126.39064230787929,53.107280242109965],[-126.39036757745149,53.10721335785108],[-126.39010018838732,53.10713244757737],[-126.3898355423115,53.10704368449823],[-126.38957273752243,53.106951553405885],[-126.38930902640718,53.106861665614574],[-126.38904162619896,53.10677907678684],[-126.38876780394214,53.106709389176444],[-126.38851196528826,53.106661486142784],[-126.38819632068765,53.10662275152775],[-126.38790047365173,53.10659962846108],[-126.38760003366694,53.10658492757692],[-126.38729589823696,53.10657696074143],[-126.38699086556471,53.10657235741334],[-126.38668491513722,53.10656887675128],[-126.38637988258951,53.10656427184668],[-126.38607761858863,53.10655629576166],[-126.38577904553676,53.10654102841175],[-126.38548506638631,53.10651733746653],[-126.3851975218104,53.10648185561093],[-126.38491827273558,53.106431789151316],[-126.38464639658494,53.10636936412208],[-126.38437725912657,53.1062985306646],[-126.38411179387734,53.10622152666531],[-126.38384908778771,53.10613834614954],[-126.38359007912528,53.106050106541595],[-126.38333289701526,53.105956822895244],[-126.3830784946569,53.10585961258415],[-126.38282591907881,53.10575902549175],[-126.38257613855991,53.105656196873994],[-126.38232727693801,53.10555055914513],[-126.38208121048744,53.10544434714865],[-126.38183606327397,53.105337020180876],[-126.38159280318266,53.10522967764701],[-126.38134953443519,53.10512289934547],[-126.38110816293789,53.10501723487553],[-126.38087049950293,53.10490931706088],[-126.38064027578446,53.10479465210226],[-126.3804156009815,53.104674366578074],[-126.38019744818233,53.104550142548376],[-126.37998395639454,53.10442309751842],[-126.37977603864374,53.10429322857957],[-126.37957186402062,53.10416167105503],[-126.37937328354712,53.104029539474965],[-126.3792380954977,53.10387086909984],[-126.37912805324217,53.103700348686125],[-126.37900403764368,53.103537160378636],[-126.37888189886603,53.103372845461465],[-126.37875974606791,53.10320853045066],[-126.37863574332965,53.1030447859351],[-126.37850799976624,53.10288272945252],[-126.37837280861247,53.102722937564636],[-126.37822827407827,53.10256597205712],[-126.37807442625228,53.10241184176407],[-126.37791590992522,53.10225941134761],[-126.37775739465815,53.10210697174205],[-126.37760353524291,53.10195284084404],[-126.37745715038601,53.1017958892172],[-126.37730980368922,53.101636690599065],[-126.37716993152584,53.101476356447115],[-126.37704780573361,53.10131371564181],[-126.37701161389518,53.101135123257066],[-126.377030109053,53.10100676786502],[-126.37735501636136,53.100936827652944],[-126.37766728601541,53.100918458822754],[-126.3779675226048,53.10091358205151],[-126.37826390754597,53.100898068051926],[-126.37855627047027,53.10084950832374],[-126.37880046948202,53.10075069077315],[-126.37901166051343,53.10062283778896],[-126.37921813076417,53.1004894062533],[-126.37943780538755,53.1003682479872],[-126.37970645009496,53.10028391595042],[-126.38001558383795,53.10022857597597],[-126.38027964259948,53.10015546191001],[-126.38039167562779,53.100026249169325],[-126.38039423303105,53.099999350033706],[-126.38041339893739,53.09984186002015],[-126.38043595440675,53.099645152131544],[-126.38035323243517,53.09949471271879],[-126.38013606947334,53.0993744022231],[-126.3798787698581,53.09926262822054],[-126.37963267083295,53.09914801206201],[-126.37941827006914,53.099021524380376],[-126.37921223118599,53.098887731002],[-126.37900618865307,53.098755057725256],[-126.3787899411421,53.09863082468386],[-126.37855607576758,53.09852288978829],[-126.37830085603416,53.09843350580611],[-126.37803636887847,53.09835367926458],[-126.37776445986528,53.09828059858376],[-126.37748697963734,53.09821201689193],[-126.37720670673762,53.09814568437199],[-126.37692551187817,53.098079918837485],[-126.3766461785344,53.098013017283236],[-126.37637055264798,53.097942186151414],[-126.37610048506947,53.09786517866731],[-126.37583783654141,53.097780859532584],[-126.37558260715535,53.09768922879568],[-126.37532921985532,53.097594239253844],[-126.37507861242366,53.09749531426941],[-126.37483077985047,53.097393574330845],[-126.37458666013939,53.0972884697002],[-126.37434531534588,53.09718055015314],[-126.37410862619323,53.09706925400687],[-126.37387752543388,53.09695513408458],[-126.37365014252336,53.09683820529555],[-126.37342929088744,53.09671845877161],[-126.37321495050058,53.09659532093859],[-126.37300710669105,53.096467124638835],[-126.37280578429024,53.096334990283395],[-126.3726100404339,53.096198911913696],[-126.37241801933321,53.096060580570175],[-126.37222972586096,53.0959205520015],[-126.37204423227473,53.0957788381092],[-126.37185872009017,53.09563656823044],[-126.37167415183688,53.09549428612073],[-126.37148866691948,53.09535313601679],[-126.37131248665875,53.095208030301464],[-126.37115586261659,53.09505221408073],[-126.37099738887069,53.094898653326005],[-126.37081286591182,53.09476085151644],[-126.37059111480329,53.09464389909001],[-126.37034517533293,53.09454158798473],[-126.3700899333482,53.09444490778176],[-126.36983840424097,53.09434485403568],[-126.36955904817377,53.09427122199492],[-126.36928345844876,53.094200374186336],[-126.36901343240959,53.0941239060774],[-126.36875732666839,53.09403394843108],[-126.3685141836866,53.09393050432205],[-126.36827939356793,53.0938186257699],[-126.36804646552834,53.09370562945533],[-126.36780704321855,53.09359769046669],[-126.36756297240457,53.09349368256712],[-126.36731983062026,53.093389680237266],[-126.36707670491478,53.093285668391154],[-126.36683263776558,53.093181667928384],[-126.36658857661787,53.093078222687424],[-126.36634451178236,53.09297421224087],[-126.36610045789466,53.092871330675315],[-126.36585545761442,53.09276788682252],[-126.36561048315312,53.09266556283741],[-126.36536549004518,53.09256267368901],[-126.36511958011583,53.09246091628458],[-126.36487274841602,53.09235971695936],[-126.36462590293097,53.092258517158974],[-126.36437814052358,53.092158440126035],[-126.36412760515843,53.09206116777894],[-126.36386775684043,53.09197009057552],[-126.36360421260851,53.09188238554552],[-126.36334065934186,53.09179524466551],[-126.36307897809327,53.091706412276096],[-126.3628247213839,53.091612509967426],[-126.36257977531814,53.091511864757884],[-126.36234968755667,53.09140052464459],[-126.36213355023284,53.09127905720552],[-126.36192856464312,53.09114914729267],[-126.36173287962947,53.091013050509346],[-126.3615418458666,53.09087302204206],[-126.36135451994531,53.09073073203951],[-126.36116627239653,53.09058900926052],[-126.36097524241472,53.09044897984346],[-126.36077862576863,53.09031344003853],[-126.36057365379834,53.09018409240081],[-126.36035660007884,53.09006262445853],[-126.36012744963041,53.08994903619211],[-126.35988619291423,53.08984220710274],[-126.35963565310745,53.08974157277765],[-126.35937861311061,53.08964711573176],[-126.35911601078269,53.089558277325395],[-126.35885063924735,53.089474484328875],[-126.35858345609476,53.08939574278173],[-126.35830603663004,53.08932375442464],[-126.35801005237434,53.08926807280492],[-126.35771054560446,53.08923816270948],[-126.35742256793434,53.0892446363951],[-126.35714238747629,53.089288625681654],[-126.35686522117572,53.089358366797114],[-126.35659193207599,53.08944267048969],[-126.35632239570282,53.089530314640676],[-126.3560584606231,53.08961514462643],[-126.35580488832615,53.08971002694419],[-126.35555508370946,53.08980825874973],[-126.35530998380676,53.08991095770728],[-126.35503576882341,53.08999805720315],[-126.35477077785922,53.09007000665411],[-126.35450211554061,53.09015036547602],[-126.35423060738705,53.090225129918885],[-126.35395527717426,53.090292061971184],[-126.35367142954199,53.09034612911586],[-126.3533809305024,53.090386778929634],[-126.35308663323754,53.090422392831535],[-126.35279423942903,53.090460241232144],[-126.35233564160312,53.09041791157904],[-126.35203709099645,53.090391910346],[-126.35173859750049,53.09037094576936],[-126.351443097396,53.09037351012188],[-126.35115344942818,53.090405179292866],[-126.35086487244189,53.09045421615398],[-126.35057917262947,53.090511086977294],[-126.3502934582053,53.09056628094396],[-126.35000772446855,53.09061922439378],[-126.34972294657452,53.0906738494889],[-126.34944003722786,53.0907301535369],[-126.34915714666843,53.090787012595264],[-126.34887424495946,53.090844426752135],[-126.34859041021474,53.09090128723304],[-126.34830657470884,53.09095814703038],[-126.34802368574319,53.09101556806487],[-126.34774079016263,53.09107409993126],[-126.34745978839415,53.091133754969036],[-126.34717973643852,53.09119620320512],[-126.34690157237111,53.09126088614568],[-126.34662719401643,53.09133115960822],[-126.34635660582376,53.09140757935206],[-126.34608884226773,53.091487360532575],[-126.34582109259424,53.091567132095626],[-126.34555143836417,53.09164467666439],[-126.34527800249658,53.09171549995601],[-126.34499703726344,53.09178242747375],[-126.34471037017911,53.09183649018013],[-126.34441879128269,53.09186254612312],[-126.34412318483841,53.09185332317147],[-126.34382371510436,53.091828989038156],[-126.34352524147255,53.091813050193906],[-126.34322499873655,53.09180775559021],[-126.34292480460873,53.09181031224254],[-126.34263040855934,53.09183413103246],[-126.34233891436587,53.091870830412915],[-126.34204649961023,53.09191033735952],[-126.34175504953605,53.09195263744945],[-126.34146550083662,53.091998848439566],[-126.34117785351019,53.092048979306654],[-126.34089305918233,53.09210414777536],[-126.34061296861425,53.09216377485774],[-126.34033668112701,53.092231242476025],[-126.34006514667335,53.09230933561675],[-126.33980212090506,53.09239804351193],[-126.33955134462484,53.092497364431985],[-126.33931653468643,53.09260616732523],[-126.33909207512511,53.09272389472567],[-126.33887328992084,53.09284777240526],[-126.3386638900186,53.09297778975969],[-126.33846390076225,53.09311337309184],[-126.33827515391198,53.09325341467694],[-126.33809954535074,53.093397335471245],[-126.33794457631933,53.09355128106739],[-126.3378065224532,53.09371357702566],[-126.33767783632322,53.09387977211281],[-126.33754916414854,53.094045967001456],[-126.33741295386356,53.09420714568895],[-126.33725984704131,53.09435884407527],[-126.33708137265084,53.0944971691495],[-126.33687283947718,53.094619328553826],[-126.33663893421867,53.09472755865518],[-126.33638718511179,53.09482575498611],[-126.33612415827969,53.09491726012233],[-126.33585643479918,53.095005416650125],[-126.33559151302133,53.09509412931714],[-126.33533316057758,53.095186739850256],[-126.33507768669801,53.09528774057067],[-126.3348203588009,53.095390995853144],[-126.33456016493943,53.095485850794816],[-126.3342942107269,53.0955639146458],[-126.3340214997227,53.09561454139671],[-126.33373815025081,53.09561982367406],[-126.33344417905442,53.09558367846244],[-126.33314448220247,53.095532982764915],[-126.33284392688729,53.09549293751538],[-126.33254167027263,53.09547249974295],[-126.33222814045733,53.09544761107423],[-126.33191751204849,53.095433917960534],[-126.33162769667862,53.09545041787423],[-126.33137378090588,53.09551275501376],[-126.33115671992623,53.09562260312568],[-126.33096139821741,53.09576265115341],[-126.3307727021304,53.095913875867495],[-126.33057554648923,53.09605896591607],[-126.33035576335514,53.0961811540681],[-126.330120042595,53.096297775089276],[-126.32987491771856,53.096409949029756],[-126.32961940604837,53.09650869702481],[-126.329353429567,53.0965839530817],[-126.329074099273,53.09662786408325],[-126.32877955781598,53.09663821212792],[-126.32847455532661,53.09662729095234],[-126.32816481262977,53.09660910369291],[-126.32785886972006,53.0965965073437],[-126.3275614844421,53.09660293417643],[-126.3272802340148,53.096640688248],[-126.3270094820979,53.096704747711584],[-126.32674541783577,53.096786150589324],[-126.32648705729711,53.09688153828456],[-126.3262362621427,53.09698587710449],[-126.32599017787807,53.09709579568552],[-126.32575064506561,53.097207380847074],[-126.32551862150257,53.097320629990776],[-126.32530353792552,53.09744950940509],[-126.32509883514886,53.09758957334152],[-126.3248997687182,53.09773297380587],[-126.32469880884804,53.097873582474655],[-126.32448935562965,53.09800357429964],[-126.32426385137623,53.09811511785112],[-126.32401663712307,53.098202070555374],[-126.32374866665008,53.09826386496079],[-126.32347124577652,53.0983150448157],[-126.32318816732045,53.0983583963296],[-126.32289847792367,53.09839448677456],[-126.32260499970927,53.098424419887216],[-126.32230774560692,53.0984498807629],[-126.32200672843364,53.09847254553289],[-126.32170475538571,53.09849353594248],[-126.32140184995635,53.09851397237137],[-126.32109894844369,53.09853496375577],[-126.32079701062675,53.09855874839213],[-126.32049789225802,53.098585330219166],[-126.3202006865315,53.0986175083591],[-126.31990819191846,53.09865527525148],[-126.31962044017389,53.09870087174578],[-126.3193374395924,53.098755418303625],[-126.31905824063647,53.09882003797139],[-126.31878377566181,53.098891366908916],[-126.31851029469388,53.098968294803214],[-126.31823963657351,53.099048575808844],[-126.31796899006576,53.099130541313976],[-126.3176992619342,53.09921137431066],[-126.31742766029039,53.09928997978054],[-126.31715508119302,53.099364096479846],[-126.3168796373634,53.09943150648975],[-126.31660040334278,53.099490518150255],[-126.31631733263113,53.09953889066086],[-126.31602950421639,53.099575514971725],[-126.31573785870167,53.099602064729595],[-126.31544240048903,53.09961910460197],[-126.31514502544547,53.099629981891404],[-126.31484573369916,53.09963469658358],[-126.31454455038322,53.0996366189094],[-126.3142433504314,53.09963629961303],[-126.31394122258934,53.09963598201359],[-126.31363909636242,53.09963790453663],[-126.31333888067117,53.09964318257078],[-126.31303963005958,53.09965350379038],[-126.31274230374632,53.09967109759949],[-126.31244784189528,53.099697646682664],[-126.31215344413606,53.099730917557295],[-126.31186093467566,53.099768664511586],[-126.3115684561278,53.09980865155681],[-126.3112759579163,53.09984807322131],[-126.31098344953813,53.09988414180275],[-126.31068901380982,53.09991460351547],[-126.31039453113756,53.0999366657305],[-126.31009711979326,53.09994304860811],[-126.30979771891255,53.09993319392319],[-126.30949731798563,53.099915488992366],[-126.3091978724657,53.09989946595445],[-126.30890037957069,53.09989464154514],[-126.30860489615165,53.09990885877252],[-126.30830301493793,53.0999427042856],[-126.30801439678714,53.10000172008155],[-126.30776249315646,53.100092012144614],[-126.30753600991876,53.1002040817943],[-126.30731990075496,53.10032901366812],[-126.30711508409149,53.100463444088504],[-126.30691966061323,53.10060344302892],[-126.30673548907984,53.10074733848418],[-126.30656817388942,53.100893995522625],[-126.30645244735824,53.10106124237895],[-126.30635174197474,53.10123405241363],[-126.3062163126439,53.10139238648194],[-126.30603779226786,53.10154242411175],[-126.3058386872994,53.101691958975444],[-126.30561320320926,53.101815791399645],[-126.30535459101706,53.1018870479352],[-126.30507324836778,53.10191747071831],[-126.3047814872238,53.10193110401949],[-126.30448214995218,53.101931875452635],[-126.30417714787598,53.10192538227897],[-126.30386930796757,53.10191552530832],[-126.30356054834387,53.10190679930905],[-126.30325463864807,53.10190310272317],[-126.30295347469257,53.10191003295011],[-126.30265802322536,53.10193095785545],[-126.30237298955595,53.10197090297512],[-126.30209272780735,53.10202316012844],[-126.30181251724544,53.10208270387118],[-126.30153516347858,53.102148397635084],[-126.30125878457397,53.10222081094084],[-126.30098618624625,53.10229881620317],[-126.30071548958269,53.1023812977803],[-126.30044949334835,53.102468248570936],[-126.3001863415689,53.10255967331927],[-126.2999278931483,53.10265388217515],[-126.29967413316325,53.10275088417032],[-126.29942600452885,53.10285067694602],[-126.29918443115578,53.10295268453038],[-126.29895697498789,53.10306586933601],[-126.29874081016584,53.1031885444694],[-126.29853311805319,53.103317920475035],[-126.29833200485132,53.1034528817297],[-126.2981318301385,53.103589516448885],[-126.29793166519735,53.10372559504955],[-126.29772772247577,53.10385888617986],[-126.29751719825325,53.1039865823183],[-126.29729538813388,53.10410590759384],[-126.29706231960124,53.104220778952836],[-126.29681705290315,53.10432952250291],[-126.29656046183297,53.10442652478744],[-126.29629346925663,53.10450674590044],[-126.29601604019498,53.104565139376945],[-126.2957310099447,53.10460899439199],[-126.29543937176007,53.104643336967555],[-126.295143012402,53.104670403234806],[-126.29484379201686,53.10469076218748],[-126.29454267308529,53.10470719907332],[-126.29424153444747,53.10472082964634],[-126.29394225889223,53.104733343337756],[-126.29364390334514,53.104744724577245],[-126.29334366451758,53.10475219266143],[-126.29304246327685,53.10475686573835],[-126.29273937544971,53.104759292866376],[-126.29243627219181,53.104759487329346],[-126.29213221817243,53.104758553956536],[-126.29182817148313,53.10475650830236],[-126.2915241097937,53.10475445293974],[-126.29122006698077,53.10475296145267],[-126.29091788789415,53.10475258504186],[-126.2906157314616,53.10475332824751],[-126.2903154463805,53.1047563069744],[-126.29001706640263,53.10476208585788],[-126.28971963726205,53.10477121402785],[-126.28942503379095,53.10478426056875],[-126.28913327466829,53.10480178119623],[-126.28884435980525,53.10482377593116],[-126.28855828561713,53.10485192995128],[-126.28827599490296,53.104886232013996],[-126.28800414655106,53.10494403729239],[-126.28774465653632,53.10502982296874],[-126.28749841061456,53.10513742004017],[-126.28726349583268,53.105260684236235],[-126.28704081696591,53.10539399327658],[-126.28682937440563,53.10553120065723],[-126.28662821726428,53.10566670652405],[-126.28644016356249,53.10580329176626],[-126.28626620949886,53.10594881506653],[-126.28610445766263,53.10610158696638],[-126.28595677159585,53.10626048256306],[-126.28582035220948,53.10642327675244],[-126.28569610131882,53.10658828224653],[-126.28558121237326,53.10675438542034],[-126.28547381439364,53.10692159081893],[-126.28537108960312,53.10708934952485],[-126.28527118560632,53.10725821279624],[-126.28517597365237,53.107428194053156],[-126.28508262455102,53.107599282202244],[-126.28499208891758,53.107770372440484],[-126.28490250307063,53.107942571781045],[-126.28481477272004,53.108114775528584],[-126.28472798465135,53.108286967959806],[-126.28464214272815,53.10845972273368],[-126.28455535331213,53.10863192396801],[-126.28446762006439,53.108804118427685],[-126.28437895806313,53.108976324001475],[-126.28428935966231,53.109147402337044],[-126.2841903859118,53.109317947384135],[-126.28407925236587,53.109487965809635],[-126.28397093215504,53.10965796839159],[-126.28388131947881,53.109829611081274],[-126.28382542172763,53.11000397833595],[-126.28380695175589,53.11018105232741],[-126.28380159894567,53.1103586505505],[-126.28380559488272,53.11053735571868],[-126.28381802267536,53.110716596366544],[-126.28383606806214,53.11089637924788],[-126.28385880302842,53.111076715551484],[-126.28388433761084,53.11125704511083],[-126.28390987241049,53.1114373746463],[-126.28393446429843,53.11161770642289],[-126.2839571963472,53.111797486905196],[-126.28397429964748,53.11197727192114],[-126.2839514089181,53.11233026535643],[-126.28394889726009,53.11251402344701],[-126.28394826069879,53.11269834171681],[-126.28394762034891,53.112882095275246],[-126.2839413584325,53.11306474187581],[-126.28392853171212,53.11324628378271],[-126.2839035259625,53.113424493596995],[-126.28386540158478,53.113599929304996],[-126.28380947628801,53.11377093492072],[-126.28373198828248,53.11393694578247],[-126.28360856419363,53.11409129768268],[-126.28343735102561,53.11423456858568],[-126.28323426654948,53.114369507807524],[-126.28301431559746,53.11450112572485],[-126.28279436698737,53.114633298951574],[-126.28259036903184,53.114771044788924],[-126.28241167511095,53.114916008190235],[-126.28223111598872,53.11506209619634],[-126.28204869532985,53.115209864526776],[-126.28187189896546,53.11535930429113],[-126.28170728069898,53.1155120760748],[-126.28156328468158,53.11566815982133],[-126.28144738194037,53.115829778697496],[-126.28136521713913,53.11599691935366],[-126.28131583619084,53.11617014882958],[-126.281290813982,53.11634779310735],[-126.28128358574061,53.116528765308566],[-126.2812857447871,53.11671194707042],[-126.28128789262807,53.11689569353997],[-126.28128256190678,53.11707833734412],[-126.28126129702733,53.117258222421675],[-126.28122692365768,53.11743700925316],[-126.28118973892921,53.11761636744094],[-126.28114695048923,53.11779518318523],[-126.28109665294976,53.117972887346326],[-126.28103792926504,53.11814893532158],[-126.28096890400897,53.11832276685519],[-126.28086895230703,53.11849106961254],[-126.28070809856366,53.11864943293427],[-126.28055099438487,53.11880666668958],[-126.28046786956861,53.11897268826358],[-126.28045031012638,53.119147517766486],[-126.28045710768939,53.11932621548976],[-126.28048169314077,53.119507102912465],[-126.28051939902446,53.119688523888634],[-126.28056551650143,53.11986936914336],[-126.28061441947831,53.1200479579207],[-126.28066707381596,53.12022542628694],[-126.28073375493726,53.12040229661689],[-126.2808097950342,53.12057914467035],[-126.28089145452424,53.120756535046944],[-126.28097590739085,53.120932807243946],[-126.28105850791233,53.12110963950241],[-126.28113641860249,53.12128591813777],[-126.28120496763921,53.12146166323161],[-126.28126133982087,53.121636881495604],[-126.28130181012133,53.12181212857883],[-126.28132168417237,53.121986313157805],[-126.28131909728411,53.12216054218452],[-126.28128280754505,53.12233317519117],[-126.28121750145647,53.122504201002485],[-126.2811269146265,53.122674722159395],[-126.28101947358222,53.12284416284605],[-126.28090172933926,53.12301362788928],[-126.28077931214463,53.1231831038913],[-126.2806597128483,53.123353128795536],[-126.28054946416447,53.12352426077523],[-126.28045513623819,53.12369591061518],[-126.28038235589709,53.123869750144],[-126.2803423394423,53.12404575281503],[-126.28033229440847,53.12422504571249],[-126.28034191108233,53.12440653285049],[-126.2803590339341,53.124588557910556],[-126.2803723982794,53.12477060082328],[-126.28037078781169,53.12495042939009],[-126.28034293746428,53.12512752354246],[-126.28029265029508,53.125306355973464],[-126.28023677275073,53.125491359498724],[-126.2801659306876,53.12567583372906],[-126.28007163717956,53.12585364981081],[-126.27994635607249,53.12601752928296],[-126.27978069439322,53.126160215953625],[-126.27957276892796,53.12628002898168],[-126.2793497927469,53.12639092270289],[-126.27911556545799,53.12649679612802],[-126.27887192905887,53.12659764484814],[-126.27861984943605,53.126694595924],[-126.27836120592025,53.1267887653095],[-126.27809878393991,53.12688013744939],[-126.27783262816767,53.12697095307383],[-126.27756457702719,53.12706066107355],[-126.27729746816811,53.12715035728613],[-126.27703131267307,53.12724173578157],[-126.27676889602678,53.12733479004803],[-126.27651118393344,53.127430629318575],[-126.27625911218718,53.12753037186719],[-126.2760164248084,53.12763401795567],[-126.27578220419655,53.12774324594277],[-126.27556018664714,53.12785916760237],[-126.27535036854361,53.12798122727744],[-126.2751518471827,53.12811109432999],[-126.27496365692785,53.12824766855791],[-126.2747848655425,53.128390378515256],[-126.27461451867383,53.128537550297516],[-126.2744526349321,53.128689739629834],[-126.27429639159269,53.128845841626344],[-126.27414765348165,53.12900473155801],[-126.27400267281638,53.12916584447501],[-126.2738633181538,53.12932862929546],[-126.27372678526474,53.129492527832504],[-126.27359398051378,53.12965641757138],[-126.27346211468317,53.12981974924095],[-126.27333210906446,53.1299813913246],[-126.27320492168641,53.13014358247126],[-126.27308146622603,53.130306329544155],[-126.27296270846634,53.1304707507535],[-126.27284677262458,53.13063627678122],[-126.27273456880755,53.13080235876846],[-126.27262425844137,53.130969556695],[-126.27251675157486,53.13113731273751],[-126.27241204817943,53.13130561794029],[-126.27230736250135,53.13147447872361],[-126.27220453324249,53.13164334408783],[-126.27210172171054,53.131812765035775],[-126.27199983796186,53.131982183743126],[-126.2718979533983,53.132151602346774],[-126.27179419581634,53.13232102514832],[-126.27169043021918,53.1324893274333],[-126.2715847951417,53.132658189633005],[-126.27147820849795,53.13282594244189],[-126.27136976013747,53.132993134713516],[-126.27126129950146,53.13316088262734],[-126.27115284942752,53.13332807466888],[-126.27104438713242,53.13349583131587],[-126.2709368675415,53.13366357672327],[-126.27082841490025,53.13383076842058],[-126.2707199500334,53.13399852472316],[-126.27061149567857,53.13416571619055],[-126.27050302903787,53.13433346329975],[-126.27039362933026,53.13450065669387],[-126.27028422875912,53.134667849971315],[-126.2701738986563,53.13483504525294],[-126.27006355270402,53.13500224045032],[-126.26995322085932,53.13516943549506],[-126.2698428696251,53.135336074733196],[-126.26973253603991,53.135503269541125],[-126.26962218660502,53.13567046426464],[-126.26951185127788,53.13583765883564],[-126.2694014965097,53.136004288636975],[-126.26929115944205,53.13617148297112],[-126.26918080652436,53.13633867722085],[-126.2690713964195,53.136505869205855],[-126.2689619890364,53.13667362575929],[-126.26885352089413,53.13684081536629],[-126.26874503691637,53.137008004892294],[-126.26863749930541,53.13717574788223],[-126.26853090460216,53.13734349757998],[-126.26842429759672,53.1375118029218],[-126.26831862987733,53.13767954132663],[-126.26821390861042,53.13784784216683],[-126.26811011524933,53.13801614079383],[-126.2680081935265,53.138184435072404],[-126.26791283489499,53.138355519920815],[-126.26784656301562,53.13853549324039],[-126.26779529528544,53.13871935850118],[-126.26774308775798,53.1389015496958],[-126.26767395914605,53.13907537148775],[-126.26757011108911,53.13923582668744],[-126.26741092082922,53.13937903586272],[-126.26718232167475,53.13950503952404],[-126.26690955482132,53.1396042522688],[-126.26662063439039,53.13966485072811],[-126.26633238823716,53.13968510283253],[-126.26603369117137,53.13968241358053],[-126.26572742060246,53.13966405468759],[-126.26541640532439,53.13963674227662],[-126.26510443620367,53.139607755035655],[-126.26479530827407,53.139582677606306],[-126.2644918682442,53.139568790866576],[-126.26419789932496,53.13957224424662],[-126.26391719166895,53.13960032554442],[-126.26365071289219,53.13965694072432],[-126.26338992658735,53.13972810810197],[-126.26313201834061,53.13980935228787],[-126.2628769810309,53.139899552894136],[-126.26262572481498,53.139998143225334],[-126.2623782692035,53.14010345607466],[-126.26213458403521,53.14021547360449],[-126.26189656143556,53.14033252446257],[-126.26166229535322,53.14045404820569],[-126.26143461364144,53.14057948287794],[-126.2612116332731,53.1407071385984],[-126.26099521196643,53.140837029221956],[-126.26078533931722,53.140967460731865],[-126.26058202693977,53.14109787740913],[-126.26038246881097,53.1412299616111],[-126.26018666846629,53.14136428700371],[-126.2599936935743,53.14150028199878],[-126.25980352915855,53.141637946642945],[-126.25961617874006,53.14177785459613],[-126.25943165032552,53.14191886750767],[-126.25924900023021,53.14206100538488],[-126.25906823180283,53.1422048149935],[-126.25888933819272,53.14234917593751],[-126.25871232631056,53.142495217592725],[-126.25853718931562,53.14264181956309],[-126.25836299832262,53.14278897492178],[-126.25818973835322,53.142936683705464],[-126.258018353296,53.14308495282341],[-126.25784696703884,53.14323322168091],[-126.25767651187336,53.143382052938485],[-126.25750699929644,53.14353087292106],[-126.2573374821517,53.14367913692841],[-126.25716796724889,53.14382796536406],[-126.25699751543249,53.1439756661955],[-126.2568289235964,53.144123927420274],[-126.25667441415317,53.144277204205316],[-126.25653399393295,53.14443660804427],[-126.25640013334727,53.14459823832181],[-126.25626815127421,53.14476098478048],[-126.25613333800074,53.144921496368575],[-126.2559891545254,53.145078666806356],[-126.25583087941816,53.14522970074355],[-126.25564348981607,53.14536791704264],[-126.25543170015519,53.14549498153514],[-126.25521050326917,53.1456175842587],[-126.25499684166212,53.14574521667723],[-126.25480288959355,53.14588176062968],[-126.25461550722322,53.14602221605521],[-126.25443282999869,53.146165466576704],[-126.25425203103451,53.146309824219585],[-126.2540712308915,53.146454190537966],[-126.25388761426532,53.14659631281299],[-126.25369834614355,53.14673565034718],[-126.2535025024709,53.14687051998777],[-126.25329632413553,53.14699868891785],[-126.25307792667365,53.14712072580453],[-126.252850123438,53.147236050917186],[-126.25261292793333,53.14734692293207],[-126.25237009247932,53.147454436280206],[-126.25212442233307,53.147559158603464],[-126.25187594247404,53.14766276597298],[-126.25162840869011,53.14776693548988],[-126.25138273489698,53.14787165625525],[-126.2511427134979,53.147979725751846],[-126.25090925511014,53.14809057739352],[-126.25068424930721,53.148207021698305],[-126.2504714567735,53.14832903282709],[-126.2502736993876,53.14845998404799],[-126.25009661568414,53.14860320683582],[-126.24993738736002,53.14875591964119],[-126.24979316939942,53.148915887710324],[-126.24965928541441,53.149080306480954],[-126.24953384610332,53.14924639238],[-126.24941307744666,53.1494119125597],[-126.24929980299183,53.149577972537315],[-126.24919683798109,53.14974680723436],[-126.24910326855412,53.149918427564145],[-126.24901625625535,53.15009171910726],[-126.24893111951022,53.150265562348274],[-126.24884503807066,53.15043940749643],[-126.24875709131229,53.15061213607117],[-126.24866162360577,53.15078263953871],[-126.24855678849976,53.150950357071345],[-126.2484397473515,53.15111418315374],[-126.24830769140827,53.15127300323084],[-126.24815967647795,53.15142681026997],[-126.24799947666142,53.15157783712922],[-126.24782895841881,53.15172496840171],[-126.24764998632764,53.15186932055465],[-126.24746443660841,53.15201143638842],[-126.24727420064141,53.15215188557185],[-126.24708021069713,53.15229122186095],[-126.24688621294375,53.15242943742285],[-126.24669221392391,53.15256765265616],[-126.24650103079087,53.15270586169339],[-126.24630513658256,53.15284071897733],[-126.24610266469327,53.152973348778715],[-126.24589737632786,53.15310374324957],[-126.24568833071146,53.15323246901634],[-126.24547928377208,53.15336118544153],[-126.24527023883265,53.15349046616895],[-126.24506401309914,53.15362030536512],[-126.24497040659182,53.15379247780873],[-126.24492366287913,53.153967923388336],[-126.24495185977315,53.154148251223695],[-126.24502873238141,53.15432119111991],[-126.24512243639002,53.15449186423489],[-126.24521334529258,53.15466365449972],[-126.2452911555551,53.15483772161186],[-126.24534369855613,53.15501407289453],[-126.24534661699334,53.15519445293403],[-126.24528861895485,53.15536992185105],[-126.24522969453065,53.15554594836451],[-126.2451857652487,53.155723619902126],[-126.2451409097361,53.15590185801022],[-126.24509322998229,53.15607898152157],[-126.24507459090523,53.15625828568795],[-126.24507283259356,53.15643867529195],[-126.24507668239069,53.15661961795248],[-126.24508054393839,53.15679999588433],[-126.2450768940782,53.1569798246648],[-126.24505919546428,53.15715857106887],[-126.2450190007184,53.15733455851795],[-126.24493194344727,53.15750559659562],[-126.2448177103366,53.1576733385399],[-126.24470440544295,53.157841069474436],[-126.24459110291369,53.158009364964265],[-126.2444693522394,53.158176001645685],[-126.24435886214913,53.15834372638395],[-126.24428209619872,53.158514751596286],[-126.2442690683257,53.1586906825815],[-126.24430663568465,53.15887154648774],[-126.24434327421575,53.159052421245285],[-126.24431994493246,53.15923004957864],[-126.2442151137442,53.15940504953053],[-126.244188943526,53.15957876671826],[-126.24424427111587,53.1597517600281],[-126.24431833663303,53.15992527034526],[-126.2444055167988,53.160098753523364],[-126.24450112919209,53.160271098798276],[-126.24460234446296,53.16044286771862],[-126.2447026184203,53.160612406632936],[-126.2448131885074,53.16077911865584],[-126.24493497234498,53.16094356654581],[-126.24506051258923,53.16110688611434],[-126.24518323929716,53.16127076708627],[-126.24529754177587,53.16143691515167],[-126.24540811635916,53.16160362654345],[-126.24551775078794,53.16177089548997],[-126.24562644188313,53.16193817524196],[-126.24573420779546,53.162106012522635],[-126.24584291882175,53.162273847728756],[-126.2460187328306,53.162544620734906],[-126.24607128646451,53.162723211763705],[-126.24613602944878,53.162902342093616],[-126.24619514905008,53.1630809283455],[-126.24623085368233,53.16325899857213],[-126.24622718536935,53.16343490986043],[-126.24618042641889,53.16360866993766],[-126.24610648591477,53.16378136608502],[-126.24601473478405,53.163953534498425],[-126.24591268230407,53.164125168501066],[-126.24581062899652,53.164296802399505],[-126.24571701695861,53.164468983355825],[-126.2456412059272,53.16464280341121],[-126.24559631489173,53.1648188000681],[-126.24559361085142,53.16499862611431],[-126.24561246791632,53.165179536779966],[-126.24563599853921,53.16535987304447],[-126.24570553418752,53.16555859600136],[-126.24560900662559,53.165714532458324],[-126.24575237569483,53.165881175123346],[-126.24599537115971,53.165940051866976],[-126.24629820302877,53.16598032145981],[-126.24658603149665,53.166015575230176],[-126.24691301989581,53.166021051451544],[-126.24721558354888,53.16601257720846],[-126.247491933106,53.16600975901481],[-126.24780030129307,53.16603264245198],[-126.24809376373909,53.16607236238207],[-126.24838261572152,53.16612329529681],[-126.24866311336335,53.16618601377666],[-126.24893429088246,53.166259390543765],[-126.24920177648666,53.16633949688288],[-126.24946553037246,53.166424647814836],[-126.24972836589659,53.16651148518183],[-126.24999120249907,53.16659832196125],[-126.25025589737233,53.166682357699784],[-126.25052431088888,53.166761338678164],[-126.25080201770142,53.16682741023714],[-126.25109179922217,53.166874417638574],[-126.25133458989959,53.166899107063045],[-126.25152950827905,53.16690710061664],[-126.25135282070947,53.16712931576058],[-126.2512828421967,53.16733561852723],[-126.25123897928673,53.167522254274175],[-126.25134859226333,53.16767944274005],[-126.25151434941517,53.16782474312097],[-126.25169977323104,53.167967195963286],[-126.25189921759578,53.16810514602894],[-126.2521061417282,53.168240274335524],[-126.25231397318497,53.168371474448584],[-126.25252927272227,53.16849538012585],[-126.25276230369515,53.168608608209645],[-126.2529990700984,53.168719578079966],[-126.25322836932749,53.168835054017066],[-126.25343619043905,53.168963455628834],[-126.25362535994901,53.16910365656858],[-126.25381451238914,53.16924330151505],[-126.25402422278292,53.169371142304506],[-126.2542563416851,53.16948828629523],[-126.25450156350136,53.16960035537074],[-126.2547458388466,53.16971187025133],[-126.25497889254336,53.1698267699967],[-126.25518763114005,53.16994900878167],[-126.25536084837944,53.170084759668335],[-126.25546682344486,53.1702565172171],[-126.25549608141718,53.17044692237318],[-126.25545311262744,53.170625158937554],[-126.25534351911608,53.17078561274536],[-126.25519079433526,53.17094111311577],[-126.25502026358599,53.171094975505675],[-126.25485817026573,53.171251060275736],[-126.2547307731484,53.17141323685609],[-126.25464184548315,53.17158316439967],[-126.25457450537007,53.171758091732414],[-126.25452123209767,53.1719363499742],[-126.25447920890558,53.17211570439621],[-126.25444093330418,53.172295050731904],[-126.2544073281013,53.17247326660199],[-126.25439248762775,53.17265312721314],[-126.25438607919996,53.17283408112651],[-126.25437591602675,53.17301393165106],[-126.25434793201875,53.17319213535655],[-126.25429747785361,53.173370943015094],[-126.25423391704163,53.173554269337046],[-126.25413751030962,53.17372813822708],[-126.2539894227423,53.17387690441667],[-126.25379059218962,53.17400450054976],[-126.253563604141,53.174122064079754],[-126.25331499534897,53.17422959878913],[-126.25305225527337,53.17432595021304],[-126.25278289202193,53.17441055547702],[-126.25251157677445,53.17448228417773],[-126.25223177798777,53.17454450245043],[-126.25194629110749,53.1745983246875],[-126.25165609584924,53.174647118926345],[-126.2513630829893,53.1746936776348],[-126.2510709990294,53.1747402336462],[-126.250780805135,53.17478959041003],[-126.25049531809844,53.17484397381556],[-126.25021644350488,53.17490618534764],[-126.2499460718371,53.174979017576376],[-126.24968796596033,53.17506751786203],[-126.2494411960049,53.1751716703145],[-126.249201987284,53.175287019278656],[-126.24896843581845,53.17540851356411],[-126.24873581915911,53.175531125812455],[-126.24850131570696,53.17564925996027],[-126.24826299511723,53.17575843845224],[-126.24801523227242,53.17585307105908],[-126.24775703826532,53.175928113521515],[-126.24748463896887,53.17597910103383],[-126.24719993371814,53.17600770565117],[-126.24690669736401,53.17601840100686],[-126.24660494139373,53.176015668605814],[-126.24629939154097,53.176005100542795],[-126.24599100036997,53.17599062068365],[-126.24568262762917,53.17597669570073],[-126.24537709777651,53.17596948641049],[-126.24507630426655,53.17597235010903],[-126.24477563587227,53.17599425954478],[-126.24447409379503,53.17602849439376],[-126.24417441564886,53.17606103955189],[-126.24388118899387,53.176076208983126],[-126.24366180473355,53.176057613843255],[-126.24336696539481,53.175954023178186],[-126.24310864838812,53.17584475481371],[-126.24292889923437,53.17571236105663],[-126.24282953473221,53.175541699718174],[-126.24275820667145,53.17536034151063],[-126.24269908447128,53.17518176370407],[-126.24264559466313,53.17500485042597],[-126.24260053976617,53.174826799428715],[-126.24256108607058,53.17464761652594],[-126.2425235217724,53.17446842972348],[-126.24248688732744,53.17428924098818],[-126.24244743461416,53.17411005799501],[-126.24240238150342,53.17393200683547],[-126.24235077173644,53.17375564517869],[-126.24228885419598,53.173580433937396],[-126.24221477951447,53.17340804403285],[-126.2421247966138,53.17323792739582],[-126.24201889708606,53.17307120440722],[-126.2418998931888,53.17290674888122],[-126.24177058532581,53.172743990379836],[-126.24163660743284,53.172582370617874],[-126.2415007565317,53.17242074554909],[-126.2413658512017,53.172259127348084],[-126.24119030114772,53.17203652550682],[-126.24103855269966,53.17188109893002],[-126.24088774983663,53.171725670223985],[-126.24072667117035,53.171574179125884],[-126.24055156668847,53.17142888297705],[-126.24037085118877,53.171285283033086],[-126.24018732804568,53.171143364619],[-126.23999727077471,53.171004255676024],[-126.23980255021634,53.170867405628776],[-126.23960221638254,53.17073448353346],[-126.23939907411581,53.17060044636974],[-126.23919218848839,53.17046697213148],[-126.23898156909233,53.17033575482562],[-126.23876536090575,53.17021014144981],[-126.23854264717903,53.17009239254976],[-126.23831248093514,53.16998473287169],[-126.23801879263144,53.16990801596665],[-126.23771237921822,53.16990359422763],[-126.2375039878036,53.16999980223182],[-126.23734375194672,53.17016370207211],[-126.23720228512221,53.17033316608196],[-126.2370682657076,53.17049421647076],[-126.2369417628098,53.17065916857022],[-126.23681994247394,53.17082523155258],[-126.23670001635651,53.170992411006026],[-126.23657819411304,53.17115847370938],[-126.2364516810608,53.17132230483785],[-126.23631765250519,53.171482789614785],[-126.23617235109762,53.17163825042859],[-126.23601296403596,53.171787025690676],[-126.23583572199487,53.17192798452721],[-126.23563780906721,53.17205890959097],[-126.23542298864733,53.1721825808517],[-126.23519501487425,53.17230011116106],[-126.23495857459689,53.17241318518818],[-126.23471744624347,53.17252458294633],[-126.23447725798347,53.172635413661425],[-126.23423987821288,53.17274736768644],[-126.2340090641534,53.172862104766686],[-126.23377826071545,53.17297627668534],[-126.2335455608966,53.17308934044922],[-126.23331192720993,53.17320184090554],[-126.23307735348716,53.17331265766228],[-126.23284088646119,53.17342292195058],[-126.23260348252646,53.173532067199446],[-126.23236326460855,53.173639541369425],[-126.23212209476056,53.17374588754799],[-126.23188092065587,53.173851677517646],[-126.23163786516427,53.17395635026978],[-126.23139386394737,53.174061024362814],[-126.23114987039675,53.17416457753179],[-126.2309049280925,53.17426757632243],[-126.23065904001717,53.17437056747733],[-126.23041315968668,53.174472446663934],[-126.23016633056686,53.17457376249577],[-126.22991855572842,53.17467507964142],[-126.22967078861618,53.17477527584814],[-126.229421128187,53.17487491051669],[-126.22916959840462,53.17497287215419],[-126.22891335047429,53.17506636078153],[-126.22865144278475,53.17515313739231],[-126.22838292183148,53.1752315276748],[-126.22811159317233,53.17530935807166],[-126.22783934297871,53.17538886572877],[-126.22756614725577,53.17546838353481],[-126.22729199689974,53.1755462174604],[-126.22701596837506,53.17562069315592],[-126.22673802272355,53.175690125606465],[-126.22645817807867,53.175752282933985],[-126.22617639860253,53.175806044797845],[-126.22589270243314,53.175849161393884],[-126.22560326971463,53.17587379721018],[-126.22530621200343,53.17587156626856],[-126.22500436613541,53.175851408369624],[-126.2247006018307,53.175822854848384],[-126.22439684093003,53.17579486522172],[-126.2240959404663,53.175777508690075],[-126.22380171086166,53.17577974124708],[-126.22351325453184,53.17581053677237],[-126.22322589008715,53.175869339450415],[-126.2229479956554,53.17594997581269],[-126.22268988042973,53.17604849170348],[-126.22245806392036,53.176158726266465],[-126.22223379872881,53.17627959444188],[-126.22201614336566,53.17640884828007],[-126.22180882818533,53.17654592511175],[-126.22161746395189,53.17668857369746],[-126.22144581114462,53.176836222401604],[-126.22130041333907,53.17698719193191],[-126.22121974304935,53.17714980004424],[-126.22122162730544,53.17733242101666],[-126.22124979476483,53.1775205948458],[-126.22125167621485,53.177702651107104],[-126.2212394968308,53.17788250179245],[-126.22122918862301,53.17806178428404],[-126.22122545056882,53.178241610199606],[-126.22122545774525,53.178423678854145],[-126.22125263446046,53.17860289126453],[-126.22135939305825,53.178766269398785],[-126.2215223098502,53.17891889415954],[-126.2216880438178,53.17907095769637],[-126.22184348379,53.179224160669094],[-126.22199985453551,53.17937736168243],[-126.22215996912473,53.179529435061156],[-126.22232382466562,53.17967982508052],[-126.2224923507891,53.17982852101575],[-126.22266369117355,53.17997609101605],[-126.22283223466574,53.18012478641546],[-126.22299702159295,53.18027460903261],[-126.22315434208417,53.180427241982414],[-126.22329949369939,53.18058382351717],[-126.22343342101671,53.180744351898454],[-126.22355986669464,53.180907690741606],[-126.22368444192153,53.18107158868497],[-126.22381181629558,53.18123436976463],[-126.22395324807323,53.18139543904202],[-126.22410029815289,53.18155537711432],[-126.22424267679584,53.18171644423044],[-126.2243709999089,53.181879213899904],[-126.22447497753451,53.18204595542017],[-126.22454242116471,53.18221724767745],[-126.22458178182903,53.182391954314504],[-126.22460052397318,53.18256950548804],[-126.22460522437683,53.182748759378605],[-126.2245996317563,53.182929708878355],[-126.22458934844956,53.18311123193253],[-126.22457812332216,53.183293321431194],[-126.22457253351074,53.183474835548076],[-126.22457629805488,53.18365576723247],[-126.22459411988697,53.183834996137435],[-126.2246269408288,53.18401476125457],[-126.22467007926706,53.184194497811745],[-126.22471694914653,53.18437367154256],[-126.22476101514255,53.18455285055909],[-126.22479852521319,53.1847314862714],[-126.22482289586027,53.184909582219305],[-126.22482758255873,53.18508603044271],[-126.22479952578374,53.1852726332803],[-126.22472276873539,53.185469403054384],[-126.22460466356553,53.18564328764295],[-126.22445157016463,53.18576066315785],[-126.2241946112456,53.18573426043515],[-126.22387915562757,53.185635142344005],[-126.22358922556953,53.18557855007539],[-126.22329464396435,53.18552700314281],[-126.22302246037768,53.1854569313401],[-126.22280442449859,53.1853458672844],[-126.22263400075485,53.18519717576209],[-126.22247288582106,53.185038938695634],[-126.22228937513707,53.18489643787015],[-126.22209650741038,53.18475954729035],[-126.22189897096115,53.184624350203876],[-126.22170143577425,53.18448915277813],[-126.2215029750486,53.184354521423415],[-126.22130357374219,53.1842204472003],[-126.22099036697523,53.184011518799686],[-126.22069128433489,53.18399134473586],[-126.22038940902543,53.18397622135706],[-126.22009125088847,53.183954932629945],[-126.21980143923909,53.183917933219114],[-126.21952369194291,53.18385627108839],[-126.21925429232454,53.18377610191043],[-126.21899138600541,53.18368415151873],[-126.21873034376875,53.183589965278316],[-126.21846650657997,53.18350025621905],[-126.2181971343417,53.18342456614538],[-126.21791848251195,53.18336962426127],[-126.21763057489969,53.18333430110356],[-126.21733615429332,53.183309628438174],[-126.217038957962,53.183293367547535],[-126.21673806236204,53.18328383503169],[-126.21643530898189,53.18328047178265],[-126.21613258776843,53.18328045991316],[-126.2158298687498,53.183283817404316],[-126.21552904197311,53.18328772639244],[-126.21523008883376,53.18329442770922],[-126.2149313156824,53.18333362826565],[-126.21463352850003,53.18338402123269],[-126.2143412562305,53.18341312499152],[-126.21405902773263,53.18339122757879],[-126.21378504400225,53.18333010090686],[-126.21351563879757,53.183245992836866],[-126.21324899937306,53.18315404539375],[-126.21297957292273,53.183068260032535],[-126.21270739123787,53.18299199785297],[-126.2124352133691,53.18291629971713],[-126.2121583971848,53.18284845200583],[-126.21187413083733,53.18279294128475],[-126.21153738471911,53.18273528284184],[-126.21109656445708,53.18267053091874],[-126.21069695515035,53.18260009312589],[-126.21038472632715,53.1825748791518],[-126.21006225162147,53.1825608864466],[-126.20971659580879,53.18259567544027],[-126.20923703999493,53.18265702478021],[-126.20887758515445,53.182746170215566],[-126.20850690695619,53.18284037159276],[-126.20817655888463,53.182942352625254],[-126.20787624572394,53.18305043768744],[-126.20761453684162,53.18319654762193],[-126.207323638157,53.183316939063296],[-126.20709365465491,53.18343498250094],[-126.20681374908577,53.1835010099948],[-126.20642038561715,53.1835582804505],[-126.2061128486655,53.18353360275664],[-126.2060794785561,53.18341882521379],[-126.20608087553855,53.183320784071206],[-126.20602043985275,53.183227896738195],[-126.20578486730811,53.183159406692965],[-126.2056045354327,53.18308072780946],[-126.20540405273312,53.182906859290114],[-126.20531696918147,53.182729988427916],[-126.20517363166832,53.18254873338448],[-126.20504543462535,53.18239713784042],[-126.20489303928532,53.18228032512187],[-126.2047618637563,53.18209232614918],[-126.20456905468698,53.18195316605903],[-126.20437813359624,53.18181344667423],[-126.20419281386229,53.18167204120929],[-126.2040075130412,53.18153119112768],[-126.20382032675485,53.181390899706955],[-126.2036294160648,53.1812522994556],[-126.20343277428603,53.1810941063463],[-126.2032285653928,53.1809179906406],[-126.2030211159572,53.18085056717236],[-126.20281338455477,53.18091814664732],[-126.20260589654909,53.18103669871417],[-126.20239761436751,53.1811838262523],[-126.20218655985335,53.18134104167311],[-126.20197169617515,53.18148593888402],[-126.201751103706,53.18160900228655],[-126.20152298031242,53.18172534676721],[-126.20129109888961,53.181840021079935],[-126.20106014591525,53.18195469335314],[-126.20083484587002,53.18207271675635],[-126.20062080530761,53.182196887284725],[-126.20042745546054,53.18233333774723],[-126.20025382876302,53.182480402735976],[-126.20008864688543,53.18263137904131],[-126.2000149239651,53.1826970419797],[-126.19992252614398,53.1827806716182],[-126.1997611084295,53.18293219679813],[-126.19960813296858,53.1830870686893],[-126.19946641901008,53.183245282575406],[-126.1993256363468,53.18340405042323],[-126.19918579740566,53.18356282546425],[-126.19904503289922,53.18372271330777],[-126.19890707161015,53.18388260522381],[-126.19877191613864,53.18404304796835],[-126.19864146127286,53.18420515876355],[-126.19851570183687,53.1843678262061],[-126.19839650265726,53.184532167577295],[-126.19828668304369,53.18469816921379],[-126.19821344784393,53.184872507956975],[-126.19816274518645,53.185051855177164],[-126.19811202450073,53.18523064667437],[-126.19803880005503,53.185404429525285],[-126.19792239781214,53.18556820096624],[-126.1977844209838,53.18572696207088],[-126.19763425278452,53.18588294685037],[-126.19747562987985,53.18603670474223],[-126.1973123092481,53.186189914519574],[-126.19714805236931,53.18634199626326],[-126.19698567417493,53.186495203992365],[-126.19682892123188,53.18664895784963],[-126.19668249547942,53.18680493511423],[-126.1965491890368,53.18696368690397],[-126.19646558777343,53.18712684661271],[-126.19641300036194,53.187306195974095],[-126.19636977596336,53.18748665016042],[-126.19636783469609,53.1876726378217],[-126.19633771938346,53.18785026477505],[-126.19623817792424,53.1880112098851],[-126.19604571463753,53.18814709551548],[-126.19569324712555,53.18834598698167],[-126.19539503955055,53.18831790489914],[-126.19509679624721,53.188281988373944],[-126.19479761840667,53.18824494328404],[-126.19450032141992,53.18821238486437],[-126.19420308613246,53.18818990012408],[-126.19390873529802,53.18818478040796],[-126.19361635921959,53.18820150877474],[-126.19332402894493,53.18822831087063],[-126.19303077394646,53.18825960426474],[-126.19273755645936,53.18829593413337],[-126.19244340891423,53.18833562594837],[-126.19215021354167,53.18838035274899],[-126.19185892252281,53.18842844586295],[-126.19156858094244,53.18848100930951],[-126.19128106093827,53.188537493322954],[-126.19099637489,53.18859733322817],[-126.19071545764548,53.18866164792734],[-126.1904383015881,53.18872876135961],[-126.1901658565302,53.188799783450264],[-126.18989811498577,53.18887639930556],[-126.1896331996262,53.18895804728696],[-126.18937300514698,53.18904585373371],[-126.18911564672244,53.18913758091105],[-126.18886111174237,53.1892337756059],[-126.18860939523051,53.18933333538279],[-126.18836145693275,53.189436240806934],[-126.18811445479383,53.189540829279416],[-126.18787120841147,53.18964709633387],[-126.18762889561339,53.189754472825456],[-126.18738847384155,53.18986241049651],[-126.18715085548676,53.18997034324231],[-126.18691417324868,53.19007995908715],[-126.18668031928883,53.19019180180289],[-126.18644741146852,53.19030420723377],[-126.18621637205727,53.190418850032934],[-126.18598722366157,53.19053405407786],[-126.18575900879486,53.19065036762943],[-126.18553172752554,53.1907678086187],[-126.18530539232897,53.19088580339395],[-126.18508000320413,53.19100435196039],[-126.18485554519086,53.1911234633097],[-126.18463108591364,53.191242574226116],[-126.18440662537245,53.19136168470957],[-126.18418216356731,53.191480794760125],[-126.18395770049823,53.191599904377526],[-126.18373228883247,53.19171845932034],[-126.18350406623652,53.191835888830745],[-126.18327396511599,53.19195276508737],[-126.18304198786876,53.19206964378649],[-126.18281095426939,53.19218652056592],[-126.18258178409565,53.192304514398145],[-126.18235543971305,53.19242418848648],[-126.18213379595635,53.19254553100101],[-126.1819177726002,53.192669660940105],[-126.18170927457555,53.19279658437504],[-126.18150827429496,53.192926857098065],[-126.18131760904785,53.19306103947768],[-126.18115700102997,53.193209175900364],[-126.18103396443438,53.19337461615509],[-126.18093346429764,53.19354899388297],[-126.18083953783365,53.19372447289444],[-126.18073085699343,53.19396103971661],[-126.18045361692148,53.194020286959834],[-126.18032391398488,53.19394261330774],[-126.1801133365291,53.19380569112059],[-126.17989253679939,53.1936878216359],[-126.17965394523064,53.19357614530916],[-126.17941723223387,53.193465030325505],[-126.17918800110924,53.19334941304861],[-126.17897466491654,53.1932253729117],[-126.17878940932182,53.193087289688194],[-126.17863876197988,53.19293233925849],[-126.17850213918366,53.19277008947825],[-126.17835897468527,53.192610654819646],[-126.17818868498817,53.192463576045654],[-126.17799405538966,53.19232774639921],[-126.17778821404355,53.19219697050112],[-126.17758048644852,53.19206675277644],[-126.17738305818382,53.19193148200886],[-126.17717348973622,53.1918051921406],[-126.17699660283479,53.191649723061246],[-126.1768469111827,53.19149813894036],[-126.17667475171798,53.19134994032258],[-126.17650258081686,53.191202306135615],[-126.17632948121131,53.191054673070916],[-126.17615545992744,53.19090872617333],[-126.17597675463423,53.19076501777669],[-126.17579336773468,53.19062412149388],[-126.17560438665028,53.190486594367975],[-126.17538168526335,53.19035864462049],[-126.17512442300647,53.1902581905144],[-126.17485331936251,53.19020872934723],[-126.17455534597055,53.19023717844559],[-126.1742527285011,53.19027795786714],[-126.1739464058515,53.19032602894273],[-126.17367450544435,53.19031241859104],[-126.17346585381794,53.1901782780374],[-126.17328713783769,53.19002897259438],[-126.17311779460245,53.18987908849967],[-126.1729549906514,53.18972526877266],[-126.17279407766398,53.18957145501546],[-126.1726294082111,53.18941932260075],[-126.17245820641399,53.18927223671318],[-126.1722748572634,53.18913245522761],[-126.17207561227825,53.18900390040541],[-126.17182214284226,53.188910155886056],[-126.17156676801362,53.18880857087592],[-126.17131891821028,53.18871314103539],[-126.17104021773251,53.18863959827951],[-126.17076435358317,53.18856996764892],[-126.17048288206772,53.18850427027964],[-126.17019580987645,53.18844418222073],[-126.16990597222322,53.188393625200064],[-126.16961429494692,53.18835538539405],[-126.16932174890285,53.18833227581302],[-126.16900116117388,53.18832881676886],[-126.16870701348638,53.18837405153896],[-126.16841097930802,53.1884164828108],[-126.16813000002232,53.188473465961344],[-126.16787633506338,53.188561771592795],[-126.16764433167528,53.188678064643156],[-126.16743677360003,53.18881336028252],[-126.16726111764119,53.18895701788221],[-126.16711926749396,53.18911631292478],[-126.1670121377882,53.18928732736903],[-126.16693877857922,53.18946109059505],[-126.16691323503387,53.18963926793582],[-126.16692332710095,53.189821311911636],[-126.16691282340024,53.19001011616722],[-126.16700349541469,53.19018308344838],[-126.16707543587118,53.19036000289582],[-126.16683298449806,53.1904466142713],[-126.16660924206462,53.19051975421044],[-126.16633217875342,53.19062321900348],[-126.16603533327786,53.19070430316787],[-126.16574680785439,53.19075400416127],[-126.16545543544207,53.19079306924992],[-126.16516026723714,53.19082428725473],[-126.16486227646237,53.190851035874374],[-126.16456335101509,53.19087665569397],[-126.16426629374754,53.19090452190076],[-126.16397207747495,53.19093797639046],[-126.16368351768962,53.19097982970022],[-126.1634081740649,53.1910457568299],[-126.16315264143527,53.19114246213117],[-126.16290744616171,53.19124811573631],[-126.162651002851,53.191354339981274],[-126.16243305145518,53.19147788133139],[-126.1623305376631,53.19163487567306],[-126.16230968736947,53.191818091562574],[-126.16230570414109,53.19200351612707],[-126.16232514052291,53.19218275095374],[-126.16231082728567,53.19236147629548],[-126.16225620509901,53.19253857177702],[-126.16224470054112,53.19271840464958],[-126.16227913400739,53.19289706316429],[-126.16233794144527,53.19307567929129],[-126.1623967451131,53.19325318395744],[-126.16242836831098,53.1934301611745],[-126.16240936240962,53.193609448551726],[-126.16233225273021,53.19378993592267],[-126.16219222770451,53.19394529627832],[-126.16198928263286,53.19407441798795],[-126.1617459659879,53.1941862330129],[-126.16148382791536,53.194279582389136],[-126.16121411411152,53.19435333030959],[-126.16093216635686,53.19441309392959],[-126.16064267317003,53.194465024428894],[-126.16035318577796,53.194514713445336],[-126.15990341861867,53.19457470163719],[-126.15979061462657,53.19474403159074],[-126.15966467870743,53.194907777207284],[-126.15947486311623,53.195041358359475],[-126.15925030316112,53.19515818017236],[-126.15901071670542,53.19526829942722],[-126.15876831979197,53.195377301573814],[-126.15853624766977,53.195491891310155],[-126.15831168903715,53.195610396361516],[-126.1580890104294,53.195730574560315],[-126.15786726264245,53.19585130680019],[-126.1576455265188,53.19597148289075],[-126.15742096701433,53.19609110659906],[-126.15719452077373,53.1962079269406],[-126.15696243567356,53.19632139316695],[-126.15672564380759,53.196432059721694],[-126.15648698030226,53.196539931795556],[-126.15624928908092,53.19665957058206],[-126.15600971315176,53.196776961638804],[-126.1557597288978,53.19687084684839],[-126.15548988974831,53.196917692620914],[-126.15519171428433,53.19690744443307],[-126.15488592377837,53.19686582582056],[-126.1545951016909,53.19681523280328],[-126.15433412394263,53.19672146104795],[-126.15415079831834,53.19658053170056],[-126.15399740056696,53.1964233131546],[-126.15375609966136,53.19632335691781],[-126.15345973676918,53.19629461124929],[-126.15316075299489,53.19632076690878],[-126.1528588645705,53.1963194717393],[-126.1525560118121,53.19630865828349],[-126.15226990468108,53.19626589614934],[-126.15199684176397,53.19619621847662],[-126.15172935169467,53.196115893895126],[-126.15146560164678,53.196028285929025],[-126.15120370467824,53.19593842528216],[-126.15094275786481,53.195849692187366],[-126.15068649120187,53.1957564620734],[-126.15043394677191,53.19565930982182],[-126.15017674336,53.19556776484182],[-126.14989807728155,53.19550201523534],[-126.149610069588,53.195449721348915],[-126.14936222646259,53.19535312553758],[-126.14912932912823,53.1952408160843],[-126.14890484843528,53.19512009720762],[-126.14868222507295,53.194998255186476],[-126.14845213184307,53.19488034791939],[-126.14822108702474,53.194760191662986],[-126.14804247803514,53.194621487614505],[-126.14794252665459,53.194456360589186],[-126.14783452411753,53.19413326064159],[-126.14805074580853,53.194039443178596],[-126.1482611466219,53.193885687653406],[-126.14844720200088,53.193744842167256],[-126.14863139230987,53.19360288729682],[-126.14881368749148,53.19345980516239],[-126.14899692642743,53.19331673051096],[-126.14918111299606,53.193174765790076],[-126.14936716221689,53.19303392776806],[-126.14955885976619,53.19289587878742],[-126.14975430074047,53.19276062122924],[-126.14995727090965,53.19262984430319],[-126.15017525364931,53.1925074463828],[-126.1504064021092,53.19239287402123],[-126.15064504974303,53.192282773198315],[-126.15088464304704,53.19217322639242],[-126.15112047940882,53.19206200779245],[-126.15134504338957,53.19194464548701],[-126.15154612384393,53.191812183126714],[-126.15170681014348,53.191658484854955],[-126.15184309630231,53.19149753065092],[-126.15198780261774,53.19133433366673],[-126.15212689027321,53.1911688939737],[-126.1522397064721,53.19100125606114],[-126.15230753141776,53.190830870436905],[-126.15232190253346,53.190656627675594],[-126.15231001644727,53.1904796221789],[-126.15227750186007,53.19030096708799],[-126.15222903843268,53.190120647409024],[-126.1521674690756,53.189940900240444],[-126.1520965175273,53.18976285012929],[-126.15201996538474,53.18958704791733],[-126.1519368608863,53.18941573558595],[-126.15181722043144,53.18925231271102],[-126.15167042297635,53.18909397069353],[-126.15152175186967,53.188935621915476],[-126.15139463254997,53.18877277281592],[-126.151300289956,53.18860315042779],[-126.15122280638306,53.18842958955883],[-126.15115374605597,53.18825434177793],[-126.15108657396227,53.18807852685777],[-126.15101283757319,53.18790384063871],[-126.1509269209628,53.18773253103739],[-126.15082602476674,53.1875617961451],[-126.15070919936683,53.18739445154341],[-126.1505539850278,53.18724059128893],[-126.15035195676818,53.18709688269497],[-126.15013877043997,53.18698230898436],[-126.14989769524209,53.18692828003285],[-126.14959788129157,53.18696451144595],[-126.14929152578821,53.187008593051026],[-126.14899907908203,53.187007840898126],[-126.14871206921269,53.186953858345824],[-126.14842965198214,53.18687074824917],[-126.14817527937957,53.18677023191971],[-126.1479977039437,53.18664721137094],[-126.1480317045682,53.18645501803574],[-126.14809576643992,53.18627791679628],[-126.14820296178915,53.1861102893161],[-126.14838897851973,53.185963841398284],[-126.14860312719942,53.18582576527123],[-126.14873664143224,53.18567603044066],[-126.14877063004081,53.18548159602679],[-126.14875299085064,53.18526314257667],[-126.14866613929306,53.185086230343565],[-126.14849060918347,53.185010264154776],[-126.14823093408398,53.18499826515296],[-126.14791891422227,53.185022748053115],[-126.14758823121174,53.1850752541209],[-126.14727076028548,53.18514959487989],[-126.14700113247885,53.18523844045566],[-126.14680938548739,53.18535464288558],[-126.14668341951051,53.18551613476591],[-126.14658187883302,53.18569831895828],[-126.14646721083362,53.18587492630455],[-126.14630746113659,53.18602973718367],[-126.14612148091304,53.18618458019489],[-126.1459025954572,53.18631312985945],[-126.1456413123164,53.186380674639054],[-126.1453593245059,53.186419678863615],[-126.14506979197988,53.18644971959742],[-126.14477555894617,53.18647360772147],[-126.14447662742273,53.18649189891047],[-126.14417486287836,53.186506275920465],[-126.14387026725304,53.18651728547639],[-126.14356568269473,53.186527182811574],[-126.14326202588978,53.18653651356632],[-126.14295930254455,53.18654696280249],[-126.14266035082902,53.18655964749584],[-126.14236042207038,53.18656280483944],[-126.14205952215883,53.186558128844],[-126.14175957273471,53.1865551270452],[-126.1414624858358,53.186565001034445],[-126.14117016010768,53.18659952607505],[-126.14088164840774,53.18665364814214],[-126.14059407507403,53.186710564875256],[-126.14030458748256,53.18675124205085],[-126.14000937148403,53.18676503601081],[-126.13970661816772,53.186762597001184],[-126.13940379817849,53.186744462921084],[-126.13911030395703,53.186707279505875],[-126.13882705798234,53.1866532685901],[-126.13854003784867,53.186591427667175],[-126.13825486750966,53.18652173221883],[-126.13797716734562,53.186443073250196],[-126.13771443220536,53.186354303786],[-126.13747321036888,53.18625374918905],[-126.1372703609618,53.186132982668596],[-126.13713766843033,53.185966198721474],[-126.13703864270119,53.18578032908461],[-126.1369228106608,53.18560960848521],[-126.13674246612668,53.18549049110546],[-126.13646958093197,53.185451036565425],[-126.13614810236274,53.18545196224165],[-126.13583406031164,53.18543832244594],[-126.13554990082115,53.1853854251059],[-126.13527130776835,53.1853190850415],[-126.13499645822091,53.18524600876678],[-126.13472253942952,53.18517293975678],[-126.13445326662217,53.18508921667564],[-126.13418774830733,53.185002127563706],[-126.1339147728738,53.18493240781009],[-126.13361283718196,53.18489017407483],[-126.13327816163932,53.184865902615215],[-126.13301114151976,53.18490093479133],[-126.13287570575194,53.18504785756407],[-126.13277782072522,53.1852188308889],[-126.13273428583305,53.185381335835906],[-126.13265871688539,53.18549569998863],[-126.13228220038843,53.18558294660774],[-126.13199935167923,53.18565105005878],[-126.13174642375753,53.18569614713938],[-126.13144368202097,53.18569479842842],[-126.13114378114635,53.18570521434302],[-126.13085523328299,53.1857497932391],[-126.13057329018056,53.185811160989964],[-126.13029326173096,53.185880933343334],[-126.13001321565348,53.18595014933855],[-126.12973128328747,53.186010959352004],[-126.1294446029875,53.1860544034051],[-126.12915315801914,53.186074888512906],[-126.12885509435856,53.18607409275694],[-126.12855418546853,53.18605985469895],[-126.12827960457498,53.18607807857919],[-126.12796286952647,53.1861019493038],[-126.12764432374692,53.186147108477535],[-126.12739249663973,53.18624653828275],[-126.12710681115848,53.18631294800223],[-126.12696264655264,53.186373038812306],[-126.1268211733602,53.18639056084255],[-126.12667700642042,53.186450095592505],[-126.12655155503569,53.18649952669316],[-126.12639135191094,53.18652770740654],[-126.12628187512973,53.186588325034776],[-126.1261733261616,53.186648376896486],[-126.12607624664122,53.18678292661171],[-126.12591365615506,53.18695172215092],[-126.12580917816108,53.18712044677822],[-126.12568405827705,53.18728247984925],[-126.12554486003373,53.18744115757519],[-126.12539629914697,53.18759873361204],[-126.12523928866348,53.18775463332217],[-126.12507382355352,53.187907180580986],[-126.12490179344314,53.188056373361526],[-126.12472319333624,53.18820052658159],[-126.12445569972635,53.18840023649776],[-126.12432931487072,53.18845638847512],[-126.12403421830298,53.188511596710526],[-126.12374944237237,53.18857296002593],[-126.12346935631382,53.18863823463125],[-126.12318927948213,53.18870182350258],[-126.12290731048421,53.18876485796106],[-126.12262535403308,53.18882733602143],[-126.12234338335843,53.188890369133226],[-126.12206235993526,53.188954520979436],[-126.12178321360844,53.18901979061072],[-126.12150594596054,53.18908673374934],[-126.12123150506747,53.18915647878575],[-126.12095987589083,53.1892290257545],[-126.12069106156174,53.189305486092785],[-126.12043166524317,53.18939257541279],[-126.12019201679993,53.189504857253475],[-126.11997866602533,53.189635602790645],[-126.11979721809588,53.1897780752258],[-126.11963546547265,53.18992724978589],[-126.11948216833196,53.190080897119465],[-126.11933732355693,53.19023789687774],[-126.1191962185912,53.190397133448975],[-126.11905888186213,53.19055804214421],[-126.11892059762752,53.190718395906075],[-126.11878043597822,53.19087819566384],[-126.11863557242904,53.191035750220074],[-126.11849260078264,53.19119443203854],[-126.11835524537015,53.19135590453515],[-126.11821790390778,53.19151737684347],[-126.11807866842946,53.19167773048226],[-126.11793381452758,53.19183528409733],[-126.1177786278899,53.191988375226096],[-126.11761122888188,53.19213531167654],[-126.11742600008162,53.19227330249171],[-126.11721824053949,53.19240011147642],[-126.11699358414934,53.192519094097946],[-126.11675953661313,53.19263248362915],[-126.11652173648899,53.19274531170794],[-126.11628768951631,53.19285982067224],[-126.11606490604075,53.1929799200418],[-126.11585714663161,53.19310953202016],[-126.11544050139238,53.193298162927555],[-126.1152994341392,53.19348035787847],[-126.11532988649158,53.19364670941007],[-126.11523473207377,53.19381822039916],[-126.11514427479408,53.1939908471115],[-126.11503878843881,53.19415844213496],[-126.11490329409025,53.19431766777852],[-126.1147518403485,53.19447187147818],[-126.11459288104834,53.194624397177165],[-126.11442546963494,53.194774690050934],[-126.114251493004,53.194921627863565],[-126.1140709526271,53.19506576629448],[-126.11388570547889,53.19520599211144],[-126.1136891935383,53.195341191205934],[-126.11348141674331,53.19547135456011],[-126.1132623720642,53.19559536173808],[-126.11303674108193,53.19571378184684],[-126.11280173075676,53.19582547920261],[-126.11255262661464,53.19592879110413],[-126.11229413121035,53.19602650947558],[-126.11203188009486,53.19612255473956],[-126.11177150280781,53.19621858868617],[-126.11151863487781,53.196318540797805],[-126.11127890733906,53.19642464659309],[-126.11105795561765,53.19654080875306],[-126.11086234085073,53.196669279927384],[-126.11069020446028,53.196810608720845],[-126.11053403158122,53.19695920034601],[-126.11039098574919,53.19711451076222],[-126.11025921898481,53.197275403429614],[-126.11013494538064,53.19743965907129],[-126.11001537479186,53.19760726237484],[-126.10989955641405,53.1977759914034],[-126.10978280849518,53.197945276871906],[-126.10966416660884,53.19811344358306],[-126.10953990757334,53.19827937459528],[-126.10940719322996,53.19844195213335],[-126.10926414401105,53.19859949285379],[-126.1091117243018,53.198753689844494],[-126.10895085052341,53.198905088972026],[-126.10878527583633,53.19905480713506],[-126.10861408372071,53.19920229840972],[-126.1084400686897,53.19934922733741],[-126.10826510448692,53.19949503648604],[-126.10808827888444,53.19964084706183],[-126.10791331226257,53.19978665566805],[-126.10772897483572,53.19992911139066],[-126.10762319770105,53.19999979131262],[-126.10752585193536,53.20006486159769],[-126.10733305462713,53.20020284284742],[-126.10718061499051,53.200354231802116],[-126.10709760387644,53.200529641445264],[-126.1070521459706,53.200718470580384],[-126.10699634924826,53.2009005777892],[-126.10688140312993,53.20105473786021],[-126.10668387050586,53.201173675837346],[-126.1064365810912,53.201271371021356],[-126.10615924681791,53.20135340732933],[-126.10586781416832,53.20142537218994],[-126.10558106082757,53.201491165607116],[-126.1052980432302,53.201551362086946],[-126.10500750282394,53.20160315724877],[-126.10471132198386,53.20164935479759],[-126.10441138023278,53.201691629118855],[-126.10411143514622,53.20173279126872],[-126.10381336887957,53.20177562709515],[-126.1035209374712,53.20182237408375],[-126.10323509287649,53.201875845832035],[-126.10295957598673,53.2019382619635],[-126.10269626745752,53.20201187959793],[-126.1024489408521,53.20210003875554],[-126.10222135209197,53.20220499497266],[-126.10201441752507,53.20232729431462],[-126.10182346184862,53.20246302406916],[-126.10164377978097,53.202608262549404],[-126.10147068244173,53.20275966165511],[-126.10130039742275,53.20291441921776],[-126.1011272879564,53.20306805855658],[-126.10094855682404,53.20321778558503],[-126.10075853855471,53.203359670337385],[-126.10055255928107,53.20349037352699],[-126.10033155181803,53.20361099673263],[-126.10010490769331,53.203727707447136],[-126.09987357476116,53.20384162521523],[-126.09963847083665,53.20395386065045],[-126.09939962329074,53.20406329333259],[-126.09915888150353,53.20417161569892],[-126.09891533024178,53.204278810576206],[-126.09867084495107,53.20438489431151],[-126.09842541320619,53.20449096935865],[-126.09818091045678,53.20459705208353],[-126.09793642146334,53.204703125322595],[-126.09769473818294,53.2048097604058],[-126.09745398777964,53.20491807926513],[-126.09721700456973,53.20502750594893],[-126.09698376116727,53.20513917880236],[-126.09675428753073,53.205253079896686],[-126.0965304304059,53.205369781380696],[-126.09631222106765,53.20548983896582],[-126.09610150496496,53.20561325118606],[-126.09591709092975,53.20575065089222],[-126.09575707099768,53.20590091040929],[-126.09561584252704,53.206061237900485],[-126.09548774029571,53.206227712206385],[-126.09536528234426,53.206395866858024],[-126.09524187564246,53.206562901756136],[-126.09511283135707,53.20672545954151],[-126.0949837860796,53.20688801717212],[-126.09485849337112,53.20705169201677],[-126.09473883006171,53.20721704725467],[-126.09462572518683,53.20738350852977],[-126.09452014037682,53.20755164872454],[-126.09442391999289,53.207720901721125],[-126.09433240150223,53.20789295629427],[-126.094248389517,53.2080672365928],[-126.09417375723852,53.20824263869714],[-126.09411132438036,53.20841858675506],[-126.09406388197412,53.208595078570596],[-126.09405021500301,53.20877155251399],[-126.09410125386417,53.208950206859974],[-126.09415885033081,53.20912886492025],[-126.09416299947904,53.209307556450675],[-126.09413808761929,53.20948795609027],[-126.09409159445336,53.209666696767115],[-126.09402163906304,53.209841530242414],[-126.09391979453555,53.21000854633544],[-126.0937888577376,53.21017053919926],[-126.09355967033822,53.21043681298376],[-126.09332642098073,53.21055687658958],[-126.09309315775977,53.21067806010944],[-126.09284294827565,53.210763404569676],[-126.09253821490547,53.210797254022566],[-126.09221930602047,53.21077845629206],[-126.09198652188222,53.21068732248557],[-126.09181366326375,53.210551335933594],[-126.09166420937862,53.21039235893234],[-126.09152035163368,53.21022553481044],[-126.09136339373048,53.21006487815989],[-126.09117552356567,53.20992385605438],[-126.09097359909444,53.209791807401835],[-126.09077074677906,53.20966032377481],[-126.09056602128129,53.209529396928076],[-126.09036036792709,53.209399026131294],[-126.09015282762118,53.209269785739615],[-126.08994435825885,53.209140536718685],[-126.08973496226429,53.209012417359496],[-126.08952462221443,53.20888428937267],[-126.08931333932954,53.20875672638277],[-126.0891020727241,53.208629162996196],[-126.0888907923886,53.208501599235525],[-126.08867858303866,53.20837403578555],[-126.08846732025994,53.20824647124134],[-126.08825511464624,53.208119471682494],[-126.08804383823657,53.20799134171025],[-126.08783350956244,53.20786377531892],[-126.08762412628533,53.207735652142546],[-126.0874147281054,53.20760696393158],[-126.08720722058301,53.20747770928362],[-126.08699969818161,53.207347898570255],[-126.08679499671334,53.20721752971443],[-126.08663523452321,53.20705071104901],[-126.08647366909712,53.20691862503533],[-126.08618770455426,53.20694067615039],[-126.08585485036461,53.20696949175557],[-126.08557367528024,53.207045315821354],[-126.0853628616028,53.20713230124659],[-126.08512486125022,53.207227704138695],[-126.085076476083,53.207415961514016],[-126.0850102753945,53.207609268826715],[-126.08488489921801,53.2077516460144],[-126.08461096949027,53.20770254551477],[-126.08434254304258,53.207591264266554],[-126.08414254269955,53.20745975816959],[-126.0839612561663,53.207314238291474],[-126.08376874492251,53.20717489259265],[-126.0835687300167,53.20704170943302],[-126.08336029066692,53.20691189297248],[-126.0831508959073,53.20676863233045],[-126.08290505229547,53.206691498829215],[-126.08260498625786,53.20669955098325],[-126.08230406206961,53.20675241789733],[-126.08204822749646,53.20683774365408],[-126.0818149427113,53.20695385906308],[-126.08158072315109,53.20706829857033],[-126.08133710851845,53.20717434574086],[-126.08109631774798,53.20728262225397],[-126.08085363199596,53.20738922348598],[-126.08060813387578,53.2074930296771],[-126.08035794038977,53.20759010733864],[-126.08009928130544,53.20767823617143],[-126.07983123383563,53.20776132460199],[-126.07955472514526,53.207837695867795],[-126.0792697577236,53.20790062767489],[-126.07898007350879,53.20794507131313],[-126.07868657773484,53.20796543324997],[-126.07838837639024,53.207972917772366],[-126.07808828280669,53.207971430850066],[-126.07778537104991,53.20796323174688],[-126.07748150589835,53.20795054204079],[-126.07717669361661,53.20793674076311],[-126.07687282680142,53.20792292912519],[-126.07656991054802,53.20791192150614],[-126.07626793383224,53.207905958665066],[-126.07596972239932,53.20790782628388],[-126.07567527911554,53.20791921839197],[-126.07538460977675,53.20794349613011],[-126.07521397028952,53.20796432695708],[-126.07481646445927,53.208029004457295],[-126.07453615727854,53.20808463502751],[-126.0742586830182,53.2081475500578],[-126.07398309429682,53.20821662978642],[-126.07370938903466,53.20829074489237],[-126.07343663588951,53.208369340260354],[-126.07316669438515,53.208451850081104],[-126.07289768599853,53.20853660841541],[-126.07262962471177,53.20862304163031],[-126.07236343984471,53.20871059346025],[-126.07209725387546,53.20879814468825],[-126.07183201020624,53.20888457437083],[-126.07156769385914,53.2089698825235],[-126.0713052520592,53.20905518895431],[-126.07104562170476,53.20914440993267],[-126.07078976402008,53.20923811853253],[-126.07053671486064,53.20933405668277],[-126.07028554484621,53.20943279858233],[-126.07003718239937,53.20953322332283],[-126.0697897668613,53.20963532305434],[-126.06954329545299,53.20973742170909],[-126.06929775408683,53.20984007500523],[-126.06905784948064,53.209949455690555],[-126.06882450913307,53.21006386925882],[-126.068592115576,53.21017995788662],[-126.06835971713492,53.210293814275126],[-126.06812262763127,53.21040262674723],[-126.06787800389445,53.21050191542199],[-126.06760709595606,53.21057713509719],[-126.06730421407924,53.21060755749115],[-126.06700784557414,53.21060100320099],[-126.0667142628338,53.210572039191106],[-126.06641971668182,53.21053131558439],[-126.06598071333308,53.210471060788784],[-126.06572640100899,53.21037428555769],[-126.0654786552639,53.21027303362883],[-126.06526276325611,53.21014991192952],[-126.0650599891685,53.210018375366225],[-126.06486378176183,53.20988236233297],[-126.06466943367971,53.20974466291311],[-126.06447510271573,53.20960751885978],[-126.06427513537479,53.209473182944876],[-126.06406861975996,53.209343896375735],[-126.06384618365199,53.209223572023866],[-126.06361061798951,53.20911222622929],[-126.06336944676158,53.209004235109184],[-126.06313107934133,53.20889401021921],[-126.0629067626615,53.2087770461943],[-126.06272836944765,53.2086348535594],[-126.0625780888912,53.20847752526779],[-126.06238938901468,53.208334772875574],[-126.06219411263469,53.208188106804045],[-126.06197916537646,53.20806106168026],[-126.06172771800358,53.20797828538984],[-126.06145100216204,53.20792520704593],[-126.06116023225982,53.20788558873645],[-126.06086103069087,53.20785661309665],[-126.06055715936635,53.20783548169226],[-126.0602523644536,53.207818831466525],[-126.05995130906985,53.20780441930935],[-126.05965307473024,53.20779000496747],[-126.05935296818174,53.207777831556825],[-126.05905193622345,53.207769018963766],[-126.05875089561238,53.207764687098816],[-126.05845080885457,53.207766511563726],[-126.05815167660784,53.20777506599593],[-126.0578562926013,53.20779257185689],[-126.05755998876019,53.20781792899544],[-126.05726181961109,53.20785111993522],[-126.05696553613278,53.20789216078465],[-126.05667396049238,53.20794215265365],[-126.05638988338941,53.20800111217447],[-126.05611708728713,53.208070140054694],[-126.0558658837144,53.20816324960341],[-126.05564755534948,53.20830284309153],[-126.05544331756225,53.20845586507208],[-126.05522779474107,53.208585928811345],[-126.05497843188854,53.20865607245833],[-126.05469430248687,53.20866852801432],[-126.05440639301838,53.20867033661352],[-126.05411473658859,53.2086637479195],[-126.05381930549663,53.208650437992894],[-126.05352200620634,53.20863097061163],[-126.0532218806442,53.20860701330472],[-126.05291987632941,53.20858025962915],[-126.05261692501297,53.20855182952837],[-126.05231304241393,53.208522269729464],[-126.05200916162869,53.20849383848473],[-126.05170528398091,53.20846763823944],[-126.0514014101198,53.20844424262372],[-126.0510994189501,53.20842644727491],[-126.05079837939147,53.20841369690246],[-126.05049920994972,53.20840877860684],[-126.05020381673391,53.20841226522499],[-126.04998813498403,53.20842131936914],[-126.04962055628313,53.20845228854486],[-126.04933269186179,53.208491621729095],[-126.04904765883411,53.20854047171775],[-126.04876451108765,53.20859829217836],[-126.04848324457575,53.20866170408526],[-126.04820105204142,53.20872960614709],[-126.04792072109815,53.20879918285711],[-126.04763852925734,53.20886931535325],[-126.04735631897633,53.208937215402244],[-126.04707224281186,53.20900118973676],[-126.04678721365522,53.20905899724107],[-126.04649935355643,53.20910840686626],[-126.04620867890631,53.20915053895738],[-126.04591707092638,53.20919042099077],[-126.04562451588383,53.209229191262075],[-126.04533195909413,53.209266831476896],[-126.04503845528474,53.20930335992033],[-126.04474401887438,53.209338202950164],[-126.04444958020753,53.20937136021056],[-126.04415420960609,53.20940340567785],[-126.04385882238061,53.20943432108055],[-126.04356250268289,53.20946356001428],[-126.043266181429,53.20949167783609],[-126.04296985807788,53.2095181188424],[-126.04267353265571,53.20954287407025],[-126.04237627544786,53.209566508519146],[-126.04207994710929,53.209589021521346],[-126.04178267146818,53.209609849078525],[-126.04148633756792,53.20962732341065],[-126.04118811959331,53.209636390394124],[-126.04088801935033,53.20963873505154],[-126.04058886009517,53.209636597143785],[-126.04028780702286,53.209631098012316],[-126.03998769881723,53.209625033130465],[-126.03968666091053,53.209619532466895],[-126.03938655601225,53.20961683613704],[-126.03908738612539,53.20961917592588],[-126.03878916717605,53.20962767220607],[-126.03849190159644,53.20964513935514],[-126.03819369246388,53.20966483784102],[-126.03789453874185,53.20968566521199],[-126.03759352407907,53.20970648345478],[-126.03729156528131,53.209728986267244],[-126.03698960763614,53.20975317334738],[-126.03668858093049,53.209778470777096],[-126.03638757080569,53.20980601714098],[-126.03608842236288,53.209835238247344],[-126.03579116700692,53.209867819138125],[-126.03549671904912,53.209902639182985],[-126.03520414858798,53.20994025438282],[-126.03491626202472,53.20998123755405],[-126.03463119909979,53.21002613601527],[-126.03435176572968,53.2100749489731],[-126.03407703199031,53.21012825036408],[-126.03384358168799,53.21022466911313],[-126.03365332230685,53.21036701032298],[-126.03348276429195,53.21052894764884],[-126.03330374982453,53.210681933093646],[-126.03310128092302,53.21081643422154],[-126.03289225154857,53.210948696074624],[-126.03270009153124,53.21108655474539],[-126.03254734510344,53.21123728204769],[-126.03246682501454,53.2114137668424],[-126.03234033586956,53.21158297723447],[-126.03225133822252,53.2117034367267],[-126.03204697728088,53.211827297464865],[-126.03181633745652,53.21192819284671],[-126.03157444707323,53.2120358129873],[-126.03132317213351,53.212137268596145],[-126.03106062911567,53.21222193004566],[-126.03077648225914,53.21227354115093],[-126.0304895253413,53.21232067081996],[-126.03019975924413,53.21236443940156],[-126.02990810019291,53.21240596701301],[-126.02961550861993,53.212445253400745],[-126.02932103918286,53.21248229879182],[-126.02902656846071,53.212518223081766],[-126.02873209647683,53.212553026270704],[-126.02843762362845,53.21258726406149],[-126.02814314993334,53.21262094541712],[-126.02784962115922,53.21265462581832],[-126.02755420113567,53.21268830593162],[-126.02725879528946,53.212721429601686],[-126.02696337289966,53.2127528675039],[-126.02666701862103,53.212782619844035],[-126.02637160757487,53.212809574792345],[-126.02607430363915,53.21283373297986],[-126.02577794270383,53.212854520147],[-126.02548157911663,53.21287138976429],[-126.02518427923434,53.212878740186596],[-126.02488507988078,53.21287151650557],[-126.02458588944943,53.21285365304586],[-126.02428668137138,53.21283075165653],[-126.02398936344859,53.21280616409445],[-126.02369484921036,53.212776529084906],[-126.02340126205556,53.2127401799102],[-126.02282160554647,53.21266410786056],[-126.02306071167455,53.21254921928801],[-126.02327448125229,53.212425381214935],[-126.02340194205186,53.212260661868065],[-126.02341872364532,53.212079714455534],[-126.02331827338223,53.21191616035142],[-126.02316437543111,53.211757098083716],[-126.02300110243918,53.211602518900584],[-126.02281439677664,53.21145747161577],[-126.02261737025478,53.211315778141916],[-126.022452228533,53.21116736503854],[-126.02236023203405,53.21100324377556],[-126.02233200214518,53.21082455458243],[-126.02230469603604,53.210632976454626],[-126.02230835076156,53.210449790772095],[-126.02229419706802,53.210272219237105],[-126.02222377191617,53.21011986210057],[-126.02203521119357,53.20999665656504],[-126.0218222490569,53.209865612623545],[-126.02158960747792,53.209746331286745],[-126.02138134373632,53.209613609605356],[-126.02117870539207,53.20947527572704],[-126.02097513889848,53.20933862669425],[-126.02076313005152,53.20921038604467],[-126.0205351793231,53.209096703630266],[-126.02028567827536,53.20900487617802],[-126.02001930553028,53.20892930090939],[-126.01974918435546,53.20885764248128],[-126.01947531443894,53.20878934516443],[-126.01919864103587,53.20872440878014],[-126.01891914858719,53.20866171294023],[-126.01863683706105,53.208601257625176],[-126.0183526667276,53.208543042666165],[-126.01806755259571,53.20848650324354],[-126.01778056434797,53.208431648453015],[-126.01749263178381,53.208377357772584],[-126.01720377012245,53.208324177934585],[-126.01691490919119,53.208271006353854],[-126.01662604898284,53.208217825104605],[-126.01633813479432,53.208164651982415],[-126.01605115118525,53.20811034869874],[-126.01576604367632,53.208055488764764],[-126.0154809367037,53.20800007243906],[-126.01519395632033,53.20794857248532],[-126.01490415697356,53.20790043330479],[-126.01461342858742,53.20785396960513],[-126.01432364631329,53.20780806974411],[-126.01403384929198,53.207761048803455],[-126.01374594274625,53.20771178619025],[-126.01346084127177,53.20765804107061],[-126.01317949005251,53.207599257654785],[-126.01290376386176,53.20753262139087],[-126.01263928728515,53.207450862744324],[-126.01238324071457,53.207357343199135],[-126.01213095990336,53.20725877655515],[-126.01165455319754,53.20718319476895],[-125.99989777619953,53.20711206399207],[-125.99333343314163,53.207071543127086],[-125.98666688122763,53.20707154525851],[-125.98000125937045,53.20707172822795],[-125.97333281672287,53.20707153564381],[-125.96666626428775,53.20707152405976],[-125.96000064164235,53.20707170243355],[-125.9533321982084,53.20707150477749],[-125.94666564471406,53.20707149740337],[-125.94000002075359,53.20707167118102],[-125.93333345065636,53.20707202521197],[-125.9266668954953,53.20707201318976],[-125.9200003254099,53.207071617170456],[-125.91333376819823,53.207071975470825],[-125.90666626568789,53.20707194903971],[-125.89999969217004,53.20707211293007],[-125.8933331336638,53.20707190180801],[-125.88666750402996,53.20707188121818],[-125.87999905209685,53.207072038556014],[-125.87333249070109,53.207071822677335],[-125.86666685793995,53.20707178852419],[-125.86000027811575,53.20707194300082],[-125.85333371330611,53.2070717224693],[-125.84666712955865,53.20707224726293],[-125.83999961754854,53.20707184007027],[-125.83333304660844,53.207072170481595],[-125.82666646058244,53.20707213480823],[-125.81999988726558,53.20707227983318],[-125.81333424422013,53.207072051297395],[-125.80666577798375,53.20707199894113],[-125.77073987252979,53.20707797116679],[-125.77197532391953,53.09430355309072],[-125.77293182037958,53.006502661943415],[-125.77336966133988,52.96640688951577],[-125.77160159393753,52.966081882741385],[-125.76699598145957,52.96527056341096],[-125.7626038974968,52.96365439486978],[-125.75832628794033,52.96295376323778],[-125.75252946600547,52.96186153314781],[-125.7458568545473,52.96009256711597],[-125.73928604020765,52.95884113420576],[-125.72859888960917,52.95522230318949],[-125.71955744626558,52.95336119225156],[-125.7094308413976,52.953275580117776],[-125.7003809942764,52.95490234730392],[-125.69228476473846,52.95657180972955],[-125.67951365811419,52.95697028439055],[-125.67173307380335,52.956237877350034],[-125.66471309458612,52.95555081514545],[-125.65948371367644,52.95479849411988],[-125.65560545649839,52.95482924335388],[-125.65087693754175,52.954869109036956],[-125.6459559261833,52.95473843905052],[-125.63952398443256,52.95513970041212],[-125.6329424531932,52.95730556285516],[-125.62739411012019,52.95894822851811],[-125.62183290673867,52.9603110196273],[-125.61464218395466,52.96037063695313],[-125.59716651804813,52.95799712000445],[-125.59072974721823,52.95724825936788],[-125.57849158332402,52.95642407746858],[-125.56585477879025,52.95378297529258],[-125.55989314259148,52.9490287356346],[-125.55425490080779,52.94627055664693],[-125.54749042240756,52.94432075128978],[-125.54160897263553,52.94350912595475],[-125.52835149485975,52.94360468563679],[-125.52382780681069,52.9440924198411],[-125.5200886422695,52.94640857285867],[-125.51096928117627,52.94967672220763],[-125.50185878296139,52.95334144609715],[-125.49563260879756,52.955154347307925],[-125.49005362066482,52.95519588302645],[-125.48305754721001,52.95524326098111],[-125.47273771122458,52.95508994288182],[-125.46591633232566,52.95547830116769],[-125.46053893067841,52.9560835533239],[-125.45417940573387,52.95533036981896],[-125.44972733436616,52.954729201021735],[-125.44186602422886,52.95478633953679],[-125.4368539362112,52.95481739054179],[-125.43278159158693,52.95484379303369],[-125.42758580179702,52.9552237475317],[-125.42283659923383,52.95456296694392],[-125.41848162684097,52.95453370226043],[-125.41306762338131,52.953424930662834],[-125.40927872162231,52.95345529384998],[-125.40588629561762,52.9539318477313],[-125.40238085139127,52.95395388937664],[-125.39688391653968,52.953468675406505],[-125.38876518068363,52.95484098878864],[-125.3814093480903,52.95602737592229],[-125.37848372488459,52.957188023445525],[-125.37605426967112,52.95908855652225],[-125.37314975196082,52.960817313895376],[-125.36861810822751,52.961592637615965],[-125.36320832884253,52.96122286440989],[-125.35610474874613,52.96040657152966],[-125.35306900729455,52.95991369393932],[-125.34765866609035,52.959602591927364],[-125.34348152519081,52.95865042580812],[-125.33959057692635,52.957531627824665],[-125.33411353032609,52.958648267747556],[-125.32975635952994,52.95873281748091],[-125.32399999465319,52.95956389204887],[-125.31797054849125,52.96159548922488],[-125.31532713482056,52.962700736280624],[-125.30967729967396,52.96427075125802],[-125.30560207552601,52.964409285810575],[-125.30088423120043,52.96551989412239],[-125.29785615581878,52.96548171593609],[-125.29464051980753,52.965957804716325],[-125.290785462125,52.96809066019365],[-125.28597918656925,52.969088083556066],[-125.28107684474644,52.97134146109329],[-125.27626097433786,52.97199048650034],[-125.2727671328465,52.97298478598018],[-125.27022439162904,52.97420001874588],[-125.26590972178337,52.976907433499086],[-125.26338765689411,52.97948864088498],[-125.25960637776073,52.980651638121884],[-125.2548736698112,52.9807338692498],[-125.25117698194846,52.98046391231647],[-125.24445125965427,52.98015484474709],[-125.24007246295564,52.97880776726595],[-125.23628385359515,52.9778531928507],[-125.23286903772183,52.977696543577416],[-125.22774294066994,52.97726637664375],[-125.22414247442414,52.97665554050273],[-125.21920077005248,52.975134761895106],[-125.21454299935435,52.9744191279697],[-125.210465413901,52.9730051518427],[-125.20722476894898,52.97153558883904],[-125.20210602816513,52.971560985339224],[-125.19869719545262,52.971119315435374],[-125.19566787347075,52.971128366629046],[-125.18969849989165,52.9711597496466],[-125.1856266400842,52.97106387672671],[-125.18052181622814,52.971142784960826],[-125.17588677048658,52.97161920938709],[-125.16973761782101,52.972446190687656],[-125.16538959381033,52.97349124878647],[-125.16303670671489,52.974757645701914],[-125.1588869001715,52.97632383052148],[-125.15654295091905,52.97787422892332],[-125.15504521686266,52.9803938076787],[-125.15127116443136,52.981039047203076],[-125.14805969363036,52.98190787134177],[-125.14532917683688,52.98409007368732],[-125.1432713566997,52.98621043240077],[-125.13958935602201,52.98817322375354],[-125.13857155384882,52.990516238932436],[-125.13536488504968,52.991100679770646],[-125.12949018901675,52.991469823360234],[-125.12492809991954,52.989715377724806],[-125.12064879434317,52.98802000232843],[-125.1172281246867,52.987404443899756],[-125.11410794544022,52.9874168943633],[-125.10880993105059,52.9880633206477],[-125.10360608349664,52.98848387355935],[-125.10038377054921,52.98838031853997],[-125.0961084016241,52.98725334796999],[-125.0916567436153,52.986702528553565],[-125.0880643374089,52.98785366601076],[-125.08513712509985,52.98860811813181],[-125.07775458660883,52.98966167455163],[-125.07549389754118,52.991331032543144],[-125.07342608511443,52.99304781674742],[-125.06830348002892,52.99312230081466],[-125.06776803203242,52.9957526079493],[-125.06424923879145,52.9948517810227],[-125.06246923967439,52.997030105845596],[-125.05734965812125,52.99761849917016],[-125.05366378305578,52.99751837412395],[-125.05015977590666,52.997298573595],[-125.04607512751272,52.996339974464085],[-125.0409624808398,52.99727566699836],[-125.0366930950386,52.997230220023134],[-125.03500050401108,52.998780183385335],[-125.03102514129593,52.99827580335042],[-125.02781250337044,52.999028180684824],[-125.02459085036449,52.99886709937594],[-125.02088297170208,52.99842342563181],[-125.01869365172314,52.99688398856686],[-125.01241764127728,52.99387764272291],[-125.00862055928286,52.992801357518005],[-125.00434706423326,52.99167610010729],[-124.99865661387707,52.989236494505406],[-124.99257893701493,52.988675945865396],[-124.98833864098121,52.99120866568725],[-124.98693373465574,52.99315208785018],[-124.98485798632444,52.99567132018233],[-124.98232190610256,52.99744972945102],[-124.97966496845825,52.99865553093638],[-124.97368825801261,53.00005093519339],[-124.96901430922664,53.002513626427906],[-124.96788139037535,53.003659639547124],[-124.96636006312917,53.00480783170821],[-124.96372095501721,53.00646952488543],[-124.95824525848545,53.00990247842174],[-124.95492682781403,53.01122234355153],[-124.95228940208024,53.01156986816967],[-124.94943646140408,53.01157026403435],[-124.94650803462272,53.012205307820594],[-124.94574479579018,53.013467593276474],[-124.94499943732549,53.01460956228817],[-124.94367348041342,53.015068910130765],[-124.94263708579636,53.015296639125495],[-124.94073980637341,53.01530202814425],[-124.93875497787502,53.015822083604455],[-124.93714169147245,53.015819884212526],[-124.93505377946128,53.0162778707115],[-124.93364162125945,53.01599896984184],[-124.93277636448235,53.01416845049953],[-124.92897701830996,53.01200258712021],[-124.92529603622091,53.013439361134324],[-124.92415789822667,53.015322837966615],[-124.92349523378786,53.01612476053077],[-124.92322914328437,53.01955031130815],[-124.9234300034588,53.022235471084635],[-124.92334006026053,53.02755197462297],[-124.92241961516234,53.0332049081376],[-124.92241764044647,53.03446052987262],[-124.92045418783712,53.04114942605791],[-124.92198379063144,53.04742870381241],[-124.92702419148776,53.05324739674878],[-124.92827124167287,53.05478329052435],[-124.93415446546075,53.059860730718285],[-124.9456492203256,53.06607056019942],[-124.94783677606802,53.06892570949198],[-124.93740848103266,53.06905534126877],[-124.92678861463602,53.06906801237862],[-124.91853575595319,53.07010490934386],[-124.91124908333823,53.07194520548848],[-124.90755429723498,53.07543478396932],[-124.90680093409767,53.080287795308315],[-124.90606271397185,53.086287284657026],[-124.90568922363413,53.09148331335946],[-124.90503951561352,53.09520097048481],[-124.90334100837315,53.100112385570775],[-124.9036308418915,53.10279603774534],[-124.90734181862005,53.106333299050746],[-124.91039636845058,53.11038656584581],[-124.9067861425173,53.112787102598254],[-124.89938680507679,53.114626773945616],[-124.89559719591094,53.11525369029029],[-124.8875262178015,53.112981157118774],[-124.87877481498971,53.11099351520381],[-124.86757929387596,53.10917736402987],[-124.86007271953358,53.1088385212473],[-124.86454058429365,53.11083524832092],[-124.8725236097867,53.11522809533028],[-124.8799290113676,53.119440654227986],[-124.8840289641409,53.12183708684193],[-124.89258084962685,53.126968966811916],[-124.89629168304481,53.13170774925537],[-124.89468327163381,53.13421957939298],[-124.8925157236679,53.137481969464204],[-124.89194370738174,53.14044943483222],[-124.89184633096235,53.14073538357575],[-124.88977578445393,53.14599207089179],[-124.88701843716228,53.14999117001816],[-124.88294938177653,53.151994463250745],[-124.87913937014463,53.15325602975728],[-124.87173515125122,53.15440426978555],[-124.86317708431672,53.15441257074814],[-124.85196772447291,53.15436487321811],[-124.84180264324112,53.15339851922151],[-124.83619325437711,53.15300508021406],[-124.82735777570129,53.15437906759004],[-124.8143390888975,53.15792703255366],[-124.80606760090072,53.16049960980135],[-124.80216175802401,53.16026965138028],[-124.79836189647875,53.15947587621576],[-124.78629456243232,53.15793411077716],[-124.7805942980648,53.15496596487796],[-124.77375593327353,53.15251128360883],[-124.7584492529547,53.15114145889179],[-124.73013896712095,53.14965266519722],[-124.71988028264903,53.14793632213387],[-124.71342190162939,53.14496169439543],[-124.70003967089372,53.1391328511378],[-124.69386159116807,53.13833023954113],[-124.67808190382415,53.14083209429046],[-124.6664971259412,53.14139125503449],[-124.65111064119226,53.140867189297126],[-124.6094318384434,53.13476802072757],[-124.5774428267003,53.129069612274755],[-124.57003026599885,53.128999826440754],[-124.53088374192195,53.13172287123595],[-124.50626305104254,53.13447671384087],[-124.5006611654642,53.13486250452133],[-124.49580000001427,53.137590693510724],[-124.49120769771986,53.140324913205156],[-124.48099990796803,53.14669416057232],[-124.47852259171118,53.14765579683743],[-124.48251064707168,53.148865224776195],[-124.48457913663964,53.15053238705741],[-124.4866537284305,53.152871984450414],[-124.48920656018225,53.15567767187388],[-124.49221323764323,53.16048104765864],[-124.49530779278008,53.16494028240734],[-124.4996623066729,53.169405306391326],[-124.50116341921468,53.17232118956878],[-124.50142826076532,53.175005121346565],[-124.5013988099957,53.17837732399394],[-124.50138582075658,53.18128465482136],[-124.50185756307765,53.18151643720348],[-124.49945923374763,53.1831675844966],[-124.49783380923554,53.18459035946147],[-124.495148493929,53.187552853008675],[-124.49455985762332,53.190183350473546],[-124.49674509292778,53.19201253000515],[-124.50072949097546,53.19218742102234],[-124.50300593623398,53.193569371579706],[-124.50557228100212,53.19396934412432],[-124.5109049099566,53.193355725107644],[-124.51642042577363,53.19308369954828],[-124.52326825400989,53.1933222401182],[-124.52839782635819,53.19379118029823],[-124.53297048737772,53.19431519979321],[-124.53818715597656,53.19444077072992],[-124.5418104772662,53.19421984348247],[-124.54495440872421,53.193541309530204],[-124.54676962906342,53.19354397830479],[-124.54847007297985,53.193830978809046],[-124.54979539805919,53.19412007737971],[-124.55045613694259,53.194977590713826],[-124.55035259783082,53.19668525978636],[-124.5503518093289,53.19845918020279],[-124.55033149523949,53.200802695195065],[-124.55032438076033,53.20188567374101],[-124.54946121238105,53.20473938703146],[-124.54676831967375,53.2093014473952],[-124.54254198491482,53.213917424271166],[-124.53939321906631,53.21642860125682],[-124.53852714641776,53.217165368195396],[-124.53425229123648,53.21750366886967],[-124.52797120475071,53.217257167496],[-124.5252100172607,53.21594198408084],[-124.52102731130255,53.21536261786873],[-124.51646462461916,53.21534872970101],[-124.51482734814985,53.21666287371736],[-124.51435088282928,53.21740659208443],[-124.5131009058199,53.219228721554764],[-124.51138449976665,53.22065108994491],[-124.50793842979073,53.22258564092527],[-124.50611949832286,53.224351227418964],[-124.50361931123089,53.22754312621807],[-124.50246895453388,53.22822730526553],[-124.50017992047043,53.23010956455229],[-124.49825818196032,53.23221439624868],[-124.4948191107323,53.23306559749155],[-124.49090979139136,53.233624395507746],[-124.4879443600301,53.235500618790034],[-124.48728161480771,53.23681392112977],[-124.48639917715064,53.238808551925594],[-124.48277020934442,53.24074341334377],[-124.47876297624687,53.24107700968854],[-124.4755244692737,53.24174980690137],[-124.47418114132796,53.243178683978634],[-124.46930107858518,53.24562148435735],[-124.46786502935365,53.24669833440598],[-124.4664244740145,53.24789726469086],[-124.46367934208436,53.24737594845001],[-124.46081626130838,53.24679532991184],[-124.45805913602844,53.247017822783334],[-124.45603885849634,53.24804043546324],[-124.45508747636163,53.24940864368327],[-124.45430961325158,53.250549379662814],[-124.45314823823163,53.25231545003925],[-124.45161778834361,53.25431034386222],[-124.4506520729367,53.254423243134056],[-124.44852863937716,53.25823918928654],[-124.44544591525477,53.26320236041727],[-124.44185915509539,53.26958592839332],[-124.44164015431676,53.27266863629287],[-124.44848014402835,53.274691294689084],[-124.46142417053193,53.27712116743051],[-124.47219077688689,53.27869292726364],[-124.48132894359838,53.279165982154055],[-124.49381305104434,53.27982652045864],[-124.50362369845814,53.28127344368726],[-124.50321440767279,53.284760004180484],[-124.49793574600055,53.29028837211711],[-124.48969757683582,53.295688135517366],[-124.48222411405953,53.299840950496765],[-124.4777046064073,53.304628470392004],[-124.4771961013055,53.30788057903149],[-124.47718815009794,53.309767520205845],[-124.47810497085268,53.314794940074655],[-124.48100597849039,53.322393641896326],[-124.481650079955,53.324566244523176],[-124.48406869432254,53.33222140480224],[-124.48791009235252,53.342625918494484],[-124.49015218099011,53.34896421443746],[-124.49251320882105,53.351997229324965],[-124.49697263693147,53.35532117714603],[-124.50077253373969,53.357728996461525],[-124.50096303069071,53.358301195056605],[-124.50095937303274,53.35967380526541],[-124.50092381684013,53.36321256057797],[-124.50224189536443,53.36681207170925],[-124.5037534066177,53.369213896785965],[-124.50716308505571,53.37247545429085],[-124.51181236798871,53.37734242671581],[-124.51427111186045,53.38025737481735],[-124.51815668583113,53.38460413209768],[-124.5216462058739,53.391238391532674],[-124.5201854139356,53.395060227950204],[-124.5188248238958,53.39859755992952],[-124.52062190935517,53.40151249955463],[-124.52421483942885,53.40825882172928],[-124.52484663028166,53.41174356236266],[-124.52612886283802,53.41991160761801],[-124.52702383647365,53.43053597200369],[-124.52736120962116,53.437273710842916],[-124.52712611113238,53.44355447431677],[-124.52711323910003,53.44435265364446],[-124.52708976061503,53.447607358468474],[-124.5270466444709,53.453145347954845],[-124.52702226987103,53.45685606162984],[-124.52727432318764,53.46388005727471],[-124.52780603174335,53.46982119275792],[-124.52778231798126,53.471359857145785],[-124.52547820595437,53.47375720018525],[-124.52038408037198,53.47602916076972],[-124.51691558039131,53.4780174868439],[-124.5166203553985,53.48081722210906],[-124.51765236063024,53.482819997322025],[-124.51917894630975,53.48408043193895],[-124.52547247771415,53.488550039656936],[-124.52966970953412,53.48992453751871],[-124.5335053178975,53.49084570146478],[-124.53503030468855,53.491307580577526],[-124.53979519670773,53.493320060927545],[-124.54256244442728,53.49543400624018],[-124.54321763839415,53.49789018772789],[-124.54319809089199,53.500631128159895],[-124.54461808405956,53.50326300965193],[-124.54500444503373,53.50388901168541],[-124.54901489368649,53.50635687292999],[-124.5534986476963,53.50870091257989],[-124.55750616780014,53.51128160017634],[-124.56207347809118,53.51562796910614],[-124.56406911866588,53.518717490723645],[-124.5640622660998,53.5198014293617],[-124.56386463909544,53.52248360185418],[-124.56653082679698,53.524548652329926],[-124.56978911638555,53.52477764037549],[-124.57706293263914,53.525649394098906],[-124.58050971255581,53.52656827281301],[-124.58155367339103,53.52834029467752],[-124.58164140526942,53.52977099272833],[-124.58173541840833,53.53056872752587],[-124.58198143909985,53.53268587902582],[-124.58417608190678,53.533083339213384],[-124.58619289964558,53.53337332549038],[-124.5895498244767,53.533840459718355],[-124.59051009943545,53.53406859203377],[-124.59366304265774,53.53475840499112],[-124.5964339820154,53.53556744588502],[-124.6002638066872,53.53592217928371],[-124.6038275525592,53.53563897152947],[-124.60757435965279,53.53485136745334],[-124.61083138258934,53.534234975951264],[-124.61418888673568,53.53423645130758],[-124.61791691187871,53.53538604587047],[-124.62030839497851,53.536250637234254],[-124.62089463622186,53.53682097085584],[-124.62250760810208,53.538367257642314],[-124.62527565294315,53.539288181465224],[-124.62824090250322,53.54112051306923],[-124.62927796250213,53.5431760248393],[-124.63147772552554,53.544837024881616],[-124.63358076499321,53.54575741401875],[-124.63683981879103,53.54741921641576],[-124.63932711630632,53.54816126010122],[-124.64584250096098,53.549259885497],[-124.64927865582489,53.551553002612565],[-124.65023137103249,53.55297825326828],[-124.6515520424904,53.555667525603525],[-124.65441103827011,53.55852424043788],[-124.65756837550296,53.56058315806166],[-124.66168769293527,53.56191051602847],[-124.66830643679342,53.5631748435977],[-124.67060509559903,53.56466196753268],[-124.67031575196111,53.56471812888415],[-124.6721222814684,53.565978466917144],[-124.67817072201642,53.56615866543717],[-124.67913284377887,53.56684656158399],[-124.68229875747784,53.566283226303035],[-124.68566675379274,53.565547252497375],[-124.68844884252123,53.565152071761396],[-124.69152026459012,53.564698374264474],[-124.69737882584023,53.56465313489377],[-124.70312795022919,53.56472013380015],[-124.7091816185231,53.56472740494453],[-124.71589830382527,53.56433535862885],[-124.72080898264106,53.56211928370674],[-124.72657411245754,53.55915699430111],[-124.73099955578688,53.55893518081568],[-124.73635972557211,53.55882728445286],[-124.74029766634405,53.55820729087724],[-124.74500376954657,53.558208064316275],[-124.75018524124883,53.55901356739812],[-124.75689003507635,53.55999714026601],[-124.76486315318688,53.561088121632906],[-124.78433121103377,53.562418719667974],[-124.80410769744995,53.56305740672589],[-124.81974233316943,53.56192946986956],[-124.84058454551715,53.55577615714168],[-124.87023669290441,53.55538236715284],[-124.88165828890735,53.55886532803123],[-124.93971238258075,53.55913959456831],[-124.94259406143655,53.56667675992944],[-124.94720775630162,53.57460438566401],[-124.94960408514449,53.57985611962933],[-124.95066142240461,53.582370942336745],[-124.95210983719815,53.58499447765966],[-124.95363789531697,53.58807408961946],[-124.95411929098083,53.590020324333906],[-124.9513610985988,53.5938880516961],[-124.95284153129965,53.59388533719959],[-124.95565660730935,53.593880821034794],[-124.9555929294892,53.59400517239895],[-124.95549786570031,53.59417350541547],[-124.95544461366754,53.59425930236987],[-124.95528960516731,53.59447808918843],[-124.95518698248458,53.594645791302014],[-124.95501769545422,53.59498151835072],[-124.95498750283947,53.59505351745216],[-124.95490803699194,53.59520349704904],[-124.95489779108384,53.5952347755112],[-124.95488607797206,53.59532486059483],[-124.95487790527218,53.59550067391979],[-124.95489400157199,53.59584193678736],[-124.95489544718508,53.59585987397259],[-124.95493341246262,53.596007527575054],[-124.95497048406648,53.596191013489126],[-124.95499318230648,53.596343570470225],[-124.95501210249026,53.596419915094025],[-124.95502736285952,53.59649119094268],[-124.9550305895415,53.59651362481674],[-124.95504082842925,53.596558525632155],[-124.95504594788133,53.596580976039185],[-124.95505095557576,53.596607906606714],[-124.95507120994036,53.59670666855016],[-124.95507645526952,53.59672407429361],[-124.95522879177875,53.59706821181769],[-124.9552944947706,53.59724242965291],[-124.95536487110968,53.59745701846263],[-124.95577206159038,53.599045774523375],[-124.95578798050617,53.599090724793946],[-124.95587006866268,53.59929141626239],[-124.9558734998078,53.599381624493894],[-124.95586834830914,53.59958827617778],[-124.95586197418956,53.59976802142816],[-124.95586907353253,53.59993893096207],[-124.95583598671178,53.599975046881916],[-124.95580277406893,53.60001620744665],[-124.95561512578318,53.60017645473824],[-124.95542256555781,53.60030584660039],[-124.95522077707462,53.6004256306827],[-124.95497585498677,53.60052879804261],[-124.95471679445433,53.600591511207],[-124.95469963210523,53.60059640700497],[-124.95414072195501,53.600762925470555],[-124.95383966425656,53.60083926865351],[-124.95352933636228,53.60090769698217],[-124.953508388063,53.600912550532165],[-124.95321088988166,53.60099789450713],[-124.95288639912619,53.601102601965295],[-124.95283659407202,53.601125691971035],[-124.95261562637991,53.601254830725445],[-124.9525982396616,53.60126867755977],[-124.95257695472895,53.6012869803554],[-124.95256123687048,53.60130980405647],[-124.95246146193801,53.601513942184404],[-124.95245332974878,53.601536276630036],[-124.95244005280041,53.601612904210995],[-124.95243569265578,53.60163582734335],[-124.95242945341526,53.6016581783616],[-124.95242700014241,53.60168056253026],[-124.95242263975949,53.60170349462169],[-124.95241806937416,53.60173482251154],[-124.95238114001681,53.60192438253304],[-124.95235758733428,53.602109022878075],[-124.95235264228768,53.60230671387609],[-124.95231582420146,53.6024917936843],[-124.95229371564673,53.60269437113672],[-124.95227338784312,53.60290144529186],[-124.9522663250976,53.60310807993397],[-124.9522613656044,53.60330632638251],[-124.9522171981299,53.6034823794791],[-124.95210494948196,53.603655040056104],[-124.95195527255663,53.603810012784116],[-124.95181294285013,53.60397400298294],[-124.95164832931275,53.60412043787455],[-124.95146486771316,53.60426334651842],[-124.95145127948264,53.60427667081198],[-124.9512630206022,53.604459867238646],[-124.9510973933654,53.60464662262114],[-124.95095528167886,53.60480166041875],[-124.9507879691474,53.60497999400237],[-124.95062334807245,53.60512642742162],[-124.9504091390606,53.60528698927957],[-124.95002204266409,53.605621362195784],[-124.94984135833315,53.60580405823759],[-124.94983154127685,53.605817980068565],[-124.94957336903462,53.60614563210811],[-124.94937095954135,53.60628837121172],[-124.94935936141826,53.60629779624018],[-124.94916965493901,53.60646248754811],[-124.9490045726318,53.60662683919375],[-124.94884258656595,53.60681866917585],[-124.94864875181719,53.60699676676349],[-124.94863124870089,53.60701510208308],[-124.94849043666657,53.607193109644015],[-124.94835008764638,53.607352631992256],[-124.94821485446109,53.607534613720446],[-124.9480757212701,53.607721033166335],[-124.94804450066032,53.60775772795324],[-124.94802689859763,53.607779978814854],[-124.94801128814369,53.60779833068272],[-124.94798988556444,53.60782110378436],[-124.94797238181516,53.607839439001204],[-124.94792377001389,53.60788997987551],[-124.94777539289369,53.608067364405954],[-124.94776356899719,53.608085740576975],[-124.94775543302646,53.608108074641144],[-124.94772983642565,53.608297741570965],[-124.94772520676395,53.608481982505175],[-124.94772464387067,53.60850438316239],[-124.94772597427156,53.60852680046941],[-124.9477291979696,53.608549234425666],[-124.94773052837432,53.60857165173202],[-124.94774820250038,53.60869727855099],[-124.9477722116458,53.60887225339613],[-124.94778089018187,53.608903697556336],[-124.94787990070853,53.609108459144835],[-124.94800041414615,53.60928652295433],[-124.94811157446205,53.609460023281],[-124.94820768729056,53.609629474722134],[-124.94830726421976,53.6098118352474],[-124.9484064905357,53.6100081915995],[-124.94852489043626,53.610195198432024],[-124.94853782049047,53.610208199742154],[-124.9486869936601,53.6103764320385],[-124.94877932437232,53.61054584072554],[-124.94878845389337,53.61055936427643],[-124.94891322593494,53.61071898427466],[-124.94900756416756,53.61088392926408],[-124.94902405649682,53.61090592403306],[-124.94919752532351,53.611087247708284],[-124.94935394071442,53.61126898599949],[-124.94948962799468,53.61144662560232],[-124.94954732358956,53.611562520768985],[-124.94955634118928,53.61158052438275],[-124.94956535879675,53.611598527995746],[-124.94957415163357,53.61162549186243],[-124.94965970157952,53.611763472409976],[-124.94966884558539,53.6117764403509],[-124.94968521230085,53.61180347068336],[-124.9496905696596,53.611816396424565],[-124.94969212597248,53.611829853424275],[-124.9497810139301,53.611985796577564],[-124.94984660530133,53.61216449643081],[-124.9498970355549,53.61234361884805],[-124.94993564181388,53.61254112654185],[-124.94993090880942,53.61272985631752],[-124.94985629918006,53.612910686621206],[-124.9497725445783,53.61307854893962],[-124.94960443826947,53.613211506848444],[-124.94937391510395,53.61334112035151],[-124.94911420470108,53.61342622166376],[-124.94907585646374,53.61344492962655],[-124.94904888347175,53.613463172854814],[-124.94885746055449,53.61361945079088],[-124.94869347369887,53.613739000285655],[-124.94846017036649,53.6138282576307],[-124.94816780079223,53.613931550041855],[-124.94811796369585,53.61395520245359],[-124.94789668859939,53.61409329203527],[-124.94786769436534,53.61411656296155],[-124.94770848262893,53.614272001989875],[-124.94769099024717,53.61428977262047],[-124.94758259370073,53.614457981347606],[-124.947430390754,53.61463588719031],[-124.94728766860106,53.61481331161483],[-124.94710491223054,53.615001030773605],[-124.94699163340121,53.615137272573556],[-124.94697401370492,53.6151600787458],[-124.94695450016867,53.61518287721354],[-124.94694267390263,53.61520125324826],[-124.94692884112186,53.61522410169772],[-124.9469189224037,53.615241938857515],[-124.94685132839818,53.61536905567195],[-124.94668976368233,53.61554239706912],[-124.94667615629605,53.61555627629158],[-124.94656195881235,53.61572891412245],[-124.94646526794861,53.615883225860465],[-124.94633980566246,53.616051838855505],[-124.94620989249503,53.61624674351791],[-124.94609936573377,53.616423894319766],[-124.9459471493387,53.61660179812927],[-124.94582513150827,53.616783893192306],[-124.94572597796785,53.61696057919328],[-124.94560005793372,53.617147120749905],[-124.94548718115647,53.61734217468726],[-124.94536127313066,53.61752815146865],[-124.94534933264573,53.61755100744012],[-124.94521664795982,53.61793073219275],[-124.94521252190329,53.617944139147774],[-124.94517755200636,53.61812924118791],[-124.94511215513731,53.61831911179441],[-124.9451079161239,53.6183369988541],[-124.94508754518647,53.61854407042203],[-124.94509399130116,53.618588938287616],[-124.94517841192413,53.61877172273105],[-124.9452456623026,53.61895940150486],[-124.94527127206517,53.61899547602235],[-124.94543930230768,53.61916780320503],[-124.94556397462155,53.619331897266264],[-124.94557878636918,53.61934547106357],[-124.94576944617131,53.619521913574424],[-124.94578984060188,53.619539461961715],[-124.9459984487258,53.61968021334688],[-124.94611341595385,53.61985374812563],[-124.94636788839011,53.6202043941231],[-124.94644339821185,53.62036525814898],[-124.94647878582612,53.62053976792119],[-124.94650257097284,53.62072370236468],[-124.94651702254693,53.62082689485036],[-124.94652024654428,53.620849328723345],[-124.94652536439759,53.62087177926466],[-124.94652646906883,53.62090315668226],[-124.94652613084791,53.620916597003095],[-124.94651960040528,53.62110082920495],[-124.94654327331057,53.62128924370329],[-124.94656283701434,53.62171624047849],[-124.94658784067948,53.621927072113095],[-124.94662812281227,53.62213299246337],[-124.9466699468701,53.62235293425513],[-124.94667328379543,53.622370888005385],[-124.94674268000654,53.62254906658062],[-124.94674991755815,53.62256257355358],[-124.94686065710485,53.62275399448989],[-124.94692647828738,53.62292373492912],[-124.94693182201695,53.62293722522671],[-124.94702061080824,53.623097640846424],[-124.94704261851847,53.623277078222024],[-124.94704606836841,53.623290551851866],[-124.94709983701398,53.62348763730337],[-124.94718738817019,53.623697333888],[-124.94723793338538,53.62387198541751],[-124.94724623377068,53.62406922650186],[-124.94724957107996,53.62408718022313],[-124.94730345459837,53.62427977645603],[-124.94734051757106,53.62446327150651],[-124.94736385809031,53.62466512587994],[-124.94736897686255,53.62468757634938],[-124.9474381405994,53.624875270082164],[-124.94750597414715,53.62504054660668],[-124.94755830394661,53.62521968569568],[-124.94759692501303,53.62541663754558],[-124.94765225537823,53.6256271705629],[-124.94772487221519,53.62582833765446],[-124.94781053708587,53.62603802588897],[-124.94787781093854,53.62622570261369],[-124.94794731730734,53.626399955638014],[-124.94801592348576,53.626610049391125],[-124.94806970118655,53.626807125173734],[-124.94810532597658,53.626972682761675],[-124.94811539865405,53.627174975802916],[-124.94811873658372,53.62719292947663],[-124.94817063532945,53.62738943299065],[-124.94817937694732,53.6275693178289],[-124.94818616550799,53.62760074507067],[-124.94826872364197,53.62778351000374],[-124.94833755883221,53.62798464326071],[-124.948439941181,53.628207920900024],[-124.94850755898825,53.628382156816805],[-124.9485147981179,53.62839566365004],[-124.94862377950129,53.628582585757904],[-124.94867457585079,53.6287477116446],[-124.94867802667689,53.62876118519669],[-124.9487621317201,53.62895797110933],[-124.94877306112744,53.62897542679243],[-124.94890288168797,53.629162531563],[-124.94904666615189,53.62932175199541],[-124.94915542735747,53.62951763373365],[-124.94927199153594,53.62970462167188],[-124.94940561905649,53.629891203559254],[-124.94941664726167,53.62990474357573],[-124.94959197835972,53.63009056195241],[-124.94960859099896,53.6301080763714],[-124.9498130264251,53.630266707617345],[-124.95002349759554,53.63041138357474],[-124.95026808141384,53.63055580259609],[-124.95063503570442,53.6308827773528],[-124.9506517614202,53.63089581152909],[-124.95087159792244,53.631045049065904],[-124.95110471016471,53.631193846832346],[-124.95132063479143,53.63134809491714],[-124.95134482597018,53.631365675456806],[-124.95158418582622,53.631492121588366],[-124.95179489369127,53.63162783417481],[-124.95203759638201,53.63177223292316],[-124.95221596268132,53.63191327193925],[-124.95224763395785,53.63193483420645],[-124.95249635947089,53.632065841466186],[-124.95258984420857,53.632115951145124],[-124.95268726776749,53.63458306794128],[-124.95062192535008,53.634579547908956],[-124.94802674411943,53.634622314937],[-124.94802188530582,53.63466484243319],[-124.94789436587234,53.63483791917383],[-124.94772112386781,53.63502068532694],[-124.94762371696588,53.63520186828732],[-124.9474945248662,53.63536597671055],[-124.94708593507563,53.63571414850118],[-124.94685149132789,53.635843713648434],[-124.9466298565754,53.63599132427477],[-124.94660948457505,53.6361983945784],[-124.94646702377308,53.63636237619372],[-124.94621550922982,53.63649235452408],[-124.94591583470097,53.63657821794323],[-124.9455576249232,53.63665572328884],[-124.94527357010624,53.63672324272929],[-124.94498784592184,53.63678177568923],[-124.9446433466494,53.636841474839954],[-124.94428178096001,53.63690158715201],[-124.94393851015592,53.63698761693587],[-124.94362388267187,53.637064945265216],[-124.9432803686578,53.637160497793836],[-124.94302807641601,53.63724565193248],[-124.9427437873615,53.63732211654151],[-124.94240049567998,53.637408706390644],[-124.94214776118012,53.63751122342548],[-124.9419583236552,53.63765854535297],[-124.94173690290536,53.637796622180566],[-124.94157757830949,53.63795205151764],[-124.94140308143277,53.63810790216532],[-124.94119870820342,53.638246128717455],[-124.94100616905332,53.63836597964346],[-124.94071223444345,53.638523578100525],[-124.94047540682588,53.638671034126155],[-124.94022408672485,53.63879203961184],[-124.94001947928919,53.63893922424717],[-124.9398603709703,53.63908569109207],[-124.93968540865605,53.63925946838993],[-124.93958818416293,53.639431684362734],[-124.93956633508846,53.639620816132094],[-124.93955987054512,53.63980112198338],[-124.93967429872515,53.63999706181776],[-124.93984962861938,53.64018290264234],[-124.93998089910801,53.64038738875983],[-124.94007993166042,53.64059271859774],[-124.94008848533115,53.640778758648324],[-124.93999370534183,53.6407795956352],[-124.93942136277846,53.640779573708464],[-124.93858938282605,53.64077947960612],[-124.92878372853977,53.640779546673805],[-124.92525111846375,53.64077926154913],[-124.92524974383649,53.647989864797346],[-124.9252491644384,53.64808620258322],[-124.92949715126447,53.64719161947508],[-124.9296999631019,53.647191756124506],[-124.95185900110536,53.6472258440526],[-124.95234421746856,53.647226728557776],[-124.95223464286045,53.6472879490107],[-124.95210642754141,53.647412296551565],[-124.95192962840899,53.64758439005551],[-124.95179086956446,53.647751214918635],[-124.95162884954637,53.64793855636351],[-124.9515861754183,53.64797739196339],[-124.951532242989,53.64801164795086],[-124.95151880898985,53.64801825191705],[-124.95138449683827,53.64808317147987],[-124.95132892169335,53.64810733064548],[-124.95105929934758,53.64820131210752],[-124.9510420889584,53.64820732729867],[-124.95086438489712,53.64826402442787],[-124.95079189380107,53.64828243386742],[-124.95049283271494,53.64834086347573],[-124.95041483856149,53.64835194725222],[-124.95029325732749,53.648362640021396],[-124.95027802244326,53.64851654688759],[-124.95025621694865,53.64870567989747],[-124.95023169105126,53.6487765970342],[-124.95016837720016,53.648882466893426],[-124.95022270141126,53.648983766519336],[-124.95024035986671,53.64903545328782],[-124.95026040342348,53.649143173997494],[-124.95026364554971,53.64916505197916],[-124.95027731165042,53.64945139388889],[-124.95030380145162,53.649453310915426],[-124.95035377622764,53.64950135547067],[-124.95050755020081,53.649492064957144],[-124.94183916794356,53.65331206843236],[-124.94185952076147,53.65333184830493],[-124.94194571420701,53.65374655049455],[-124.94204871028684,53.654246531765004],[-124.94859122423247,53.65823736025953],[-124.95657174485076,53.662400542150905],[-124.95985883989863,53.665025867381836],[-124.96351062727805,53.669480256742425],[-124.96755115771732,53.67358499223719],[-124.9731370985146,53.67843770676878],[-124.97941036232008,53.68254263802803],[-124.98201414210699,53.68842081244411],[-124.97585291984956,53.692704773367595],[-124.97103593476257,53.69413608703554],[-124.96141462895167,53.695227146011334],[-124.95303446442645,53.69523492647517],[-124.94244894146563,53.69660338448636],[-124.93186363678478,53.699123089689465],[-124.92733607690587,53.702202553903795],[-124.9303150549783,53.70683110949531],[-124.93523318304008,53.71048203477714],[-124.9420745503183,53.71139114921905],[-124.94447406127895,53.71139267846662],[-124.9501540455581,53.71139099267262],[-124.95488377367263,53.71355625180816],[-124.96086280465656,53.71680756500698],[-124.97010474467122,53.71960044286691],[-124.97540293041517,53.720964871642785],[-124.98464960188936,53.723015063510516],[-124.99390680485314,53.724034577799586],[-124.99968777795682,53.723691398027256],[-125.00622726161737,53.72402634468566],[-125.01172399607482,53.72670200109424],[-125.01463308006318,53.72960991079799],[-125.01020274351501,53.731273368619235],[-125.00616054530724,53.73321265514595],[-125.0077868766339,53.73447066419359],[-125.01097250665835,53.73726275094062],[-125.01223710178549,53.73840737831336],[-125.01840533693294,53.73782897720539],[-125.02630766022897,53.7378205254687],[-125.0338221126363,53.73946857174164],[-125.03681217614181,53.74094774174127],[-125.03990296596794,53.743342842924754],[-125.04173518496701,53.745624206858906],[-125.04502766649344,53.74853214118793],[-125.05255581979131,53.75103212726688],[-125.05871960771539,53.752054606150175],[-125.06374610930479,53.75296317072558],[-125.06586937499345,53.75318582167206],[-125.0752136820949,53.75340377343813],[-125.08601554414037,53.755097301344804],[-125.09220995352138,53.75896858892639],[-125.09393612778891,53.75999426753561],[-125.10080729794372,53.76569160456471],[-125.10758310297281,53.770246922054696],[-125.11462658158379,53.77229294460854],[-125.12215834674731,53.77501869813811],[-125.12382513856656,53.78038526338737],[-125.11564651725021,53.78587689383405],[-125.10813843466765,53.78766184245194],[-125.10196820471977,53.78875958579002],[-125.09203428941468,53.78939793120062],[-125.0822954356969,53.791528458011996],[-125.07940466068419,53.79358538657275],[-125.07535701842396,53.79701732629353],[-125.07257571656766,53.80096129710963],[-125.07161046893692,53.80193342917381],[-125.06690394844907,53.807535359271526],[-125.06383379664129,53.8141053446726],[-125.06189949487806,53.81684755963339],[-125.05671367542365,53.82062003524564],[-125.04571080640622,53.82634520891094],[-125.03809312520424,53.82846942197743],[-125.0295934132973,53.831156765429164],[-125.0269913595516,53.832360089412575],[-125.02294872176242,53.836530740820045],[-125.02188397980315,53.84035697402235],[-125.02285592182635,53.841784115688796],[-125.02586414412715,53.84669183843491],[-125.02509702479702,53.85017212545474],[-125.02480798125262,53.85080267321574],[-125.02761845097403,53.855080320047826],[-125.03139913783984,53.85633121268307],[-125.03864278753815,53.85678188638458],[-125.04888723670364,53.85796996847287],[-125.05662631482255,53.85944393280044],[-125.06232889773321,53.86000654554802],[-125.06860950473701,53.86062657128501],[-125.06976666385397,53.86067864765346],[-125.07460584237712,53.86170110159086],[-125.07654668909976,53.863528393568174],[-125.07840030591973,53.86723738461829],[-125.08082209913725,53.87008480206127],[-125.08565780346957,53.87202081219643],[-125.08759677190153,53.87258718053512],[-125.09377789131796,53.87297829692731],[-125.10306325109225,53.87364707992653],[-125.11061189383146,53.8756935341499],[-125.1160530430635,53.8786509616718],[-125.11886316881571,53.88275441349222],[-125.1157836416196,53.88630449413138],[-125.11009932885283,53.88967790231684],[-125.10323944843203,53.893059103666054],[-125.09888845121864,53.89535202318198],[-125.0949395688792,53.896669374367264],[-125.08874155179163,53.89828045001463],[-125.08313695393325,53.89993941085678],[-125.07589542149177,53.90109552148992],[-125.06882532409449,53.90139058078123],[-125.05847656856761,53.90094444812111],[-125.05015438353549,53.90061423591676],[-125.04714894264741,53.90061627348831],[-125.03380497157525,53.90171921118601],[-125.02211141829521,53.90332470905698],[-125.01997864441842,53.90383664604827],[-125.01543254945078,53.90510343576822],[-125.00721567841045,53.90545104881966],[-125.00130093476854,53.904597356773124],[-124.99628240228067,53.90328542405923],[-124.99308376026332,53.90180591454423],[-124.98310651150712,53.89742077107672],[-124.97420720201009,53.8939428862147],[-124.97024349816314,53.89200481510356],[-124.96066770941593,53.887611108209676],[-124.94316549516694,53.885561843347546],[-124.93020213078196,53.88379573933625],[-124.92942444298983,53.883793310966645],[-124.92924211972732,53.88139732832095],[-124.9278782188781,53.87751669773456],[-124.92460180970491,53.8727261954925],[-124.92015045249352,53.86918357954221],[-124.91213354974207,53.86678201720438],[-124.90632257051246,53.8668990796265],[-124.90333104061312,53.869354187924706],[-124.90352565825351,53.87238212574236],[-124.90420209581484,53.8750632649328],[-124.90468231867793,53.87882973811167],[-124.90487197543426,53.88436848082361],[-124.90225249693273,53.88596664891971],[-124.89596637634895,53.88779389993539],[-124.89431775073669,53.88842231562881],[-124.88579790365722,53.89161697290054],[-124.87990053928223,53.89480855930639],[-124.87408736539194,53.89823757020715],[-124.87303299969584,53.89886452920335],[-124.87331272399344,53.90149059325336],[-124.87388839861322,53.90445771180442],[-124.87387549418929,53.906624004275145],[-124.87301468840394,53.906857359963716],[-124.86903957271282,53.907707302295144],[-124.86575639469396,53.90947656906277],[-124.86507127265918,53.91221397800974],[-124.86757033968536,53.91627009494933],[-124.86873401084307,53.91781453181742],[-124.87007991240091,53.92164188957561],[-124.87434380368184,53.924267114836155],[-124.87781297946422,53.92637959531956],[-124.87917401242119,53.92968720711709],[-124.8787765271295,53.93197032651234],[-124.87809701727316,53.93225636935802],[-124.87790271243378,53.9337975789574],[-124.8783862592863,53.935681150040125],[-124.88050355837947,53.938137722030994],[-124.88156754010554,53.94002218096851],[-124.88369765482281,53.94144882923982],[-124.88438159874951,53.94213900732728],[-124.88651051828839,53.94247848588184],[-124.89221612274949,53.943848872179835],[-124.89385962255542,53.94579061550808],[-124.89560406748483,53.947388251301874],[-124.89657253946078,53.94772812181649],[-124.8992822088713,53.948645068551116],[-124.9014193139119,53.94984686868407],[-124.90345270544955,53.95093174705913],[-124.90538832102293,53.951673493376674],[-124.90819505368576,53.95298261077848],[-124.91071273268068,53.95367073158992],[-124.91371161433811,53.95406965399516],[-124.91613647082931,53.95480835096111],[-124.91942604886498,53.95578213354765],[-124.9239715283713,53.95663821358261],[-124.92533622265327,53.9570329069846],[-124.93105495422193,53.95920579715226],[-124.93366791604655,53.960971847039154],[-124.93366593879128,53.9634282895101],[-124.93269755959719,53.96662500371296],[-124.93307952663996,53.966626695870566],[-124.93453333786337,53.96713744190421],[-124.93830523889432,53.96902393373121],[-124.94228427039833,53.972390700954605],[-124.94441239164328,53.97524381259844],[-124.94634938560323,53.977810145711956],[-124.94945811758862,53.97878150211349],[-124.95323525797106,53.97992267631975],[-124.95614556943615,53.98089493268752],[-124.96022322336516,53.9840888626934],[-124.96166842431477,53.99047926874498],[-124.97146943750339,53.99846835905917],[-124.95799152009474,54.07295805024351],[-124.95604527725651,54.07541444344953],[-124.95185320477677,54.08002883845821],[-124.94900900885396,54.08402754864303],[-124.94413152126275,54.08961244705502],[-124.94236567186218,54.093942987481185],[-124.93909442228025,54.10615470569125],[-124.94041259673256,54.11335271683854],[-124.94137653401529,54.11523392560684],[-124.9439734019685,54.12043585306722],[-124.95036759378617,54.125930522455455],[-124.95580566268993,54.12986641212972],[-124.95899289619523,54.132447603827416],[-124.9658711550097,54.14021258465142],[-124.97342314367485,54.147525856311916],[-124.98429745002193,54.15342385388989],[-124.99206843636611,54.15765532190167],[-124.99428913317827,54.161652206935024],[-124.99418755304251,54.164563514425566],[-124.99513985530642,54.16833479738912],[-124.99551861332417,54.17107086965558],[-124.99938857982912,54.17866545057145],[-125.00422287328418,54.189009676591084],[-125.00704202877971,54.190600840669816],[-125.00947063777801,54.19054900266482],[-125.01872120265435,54.18981771497983],[-125.03041087308863,54.188567615164445],[-125.03188093654322,54.18811341332667],[-125.0419066135186,54.187037093888954],[-125.05993482258116,54.186640464691266],[-125.06732359917376,54.186643713194826],[-125.07453830776898,54.18755913183133],[-125.08154231809638,54.189673198279365],[-125.08776345044149,54.191789932690874],[-125.09721412914007,54.19590165246127],[-125.10411629646207,54.20070169268121],[-125.10596601705933,54.20469364927564],[-125.10295505793758,54.20817486988652],[-125.09992146429974,54.209147000116715],[-125.0902679502251,54.211996080186246],[-125.07925867790539,54.21285392520435],[-125.06747835225153,54.21107951174348],[-125.06299012908589,54.21108080252553],[-125.05811804166737,54.21375806185772],[-125.05197354037878,54.218262051699774],[-125.04455609348831,54.21991533319338],[-125.03988323316283,54.220541542614],[-125.02828102997935,54.221623069287425],[-125.02397127732499,54.225728159634194],[-125.02347571630779,54.229774216405104],[-125.01967063822268,54.23200155744868],[-125.01419906297343,54.23251282037339],[-125.00737686443209,54.23290528734645],[-124.99704829828623,54.2339225794212],[-124.98971680864571,54.2368814610578],[-124.98434333865767,54.23898713851786],[-124.98092719334171,54.24029362365005],[-124.9767214701285,54.243035979001846],[-124.9667821839694,54.24250386311937],[-124.95664387207268,54.2425516465022],[-124.94874839334902,54.24271657113172],[-124.93003017998724,54.241433153357],[-124.92293108837296,54.238789836666115],[-124.92212566913797,54.23841531723263],[-124.91553072635301,54.235354887641456],[-124.90698131194273,54.231801616089044],[-124.89762182826979,54.22984430700153],[-124.8900393338232,54.22817133294471],[-124.88722999402827,54.22400586974074],[-124.88822957978607,54.221147653975606],[-124.88776525685542,54.21841043962857],[-124.88310935283928,54.21377990857723],[-124.87309637972041,54.21004940600171],[-124.86443926779545,54.20905477135992],[-124.85226275293073,54.20806214074965],[-124.84465983505122,54.207873545408255],[-124.83823614020908,54.207292532558604],[-124.82965701159097,54.20738935345292],[-124.81990235012711,54.2093558955218],[-124.81628045297902,54.21237623928062],[-124.8105622348056,54.219838391559456],[-124.80701680020604,54.22388073487492],[-124.80231247377586,54.22809077095098],[-124.79749071780323,54.23207545042254],[-124.79014159809364,54.23724449827702],[-124.78935370510374,54.237362100183255],[-124.78622096435005,54.239804000466386],[-124.78250101408807,54.24128114472447],[-124.77762027345135,54.241949002496675],[-124.77322258903989,54.241886763736645],[-124.76689571516445,54.24100729827374],[-124.76036548590186,54.241272403137195],[-124.75294094306334,54.24262119745553],[-124.74529261002259,54.24625223189878],[-124.73941752171481,54.24971302394124],[-124.73471136729272,54.25215522233442],[-124.7325501286049,54.252885411685924],[-124.72437577056522,54.2520113469109],[-124.71600224958286,54.249638164867974],[-124.71049045593257,54.24630909808652],[-124.70272736900095,54.242686929957216],[-124.69959030307723,54.24313728762072],[-124.69623836316626,54.24648858981061],[-124.68908762632081,54.24977200578779],[-124.68325738048999,54.247809266499495],[-124.67899491264168,54.24494927727972],[-124.67424565962577,54.24241537553169],[-124.6642295755371,54.2405582954899],[-124.65722660447489,54.239728385927755],[-124.64532388636427,54.239623149967194],[-124.62042545005133,54.23530155401061],[-124.61109423552357,54.23286534678066],[-124.60573321018241,54.23221250284684],[-124.59968954898598,54.232644814604605],[-124.59207535364197,54.232673305762376],[-124.58964776460653,54.23260034171709],[-124.58811689197996,54.23014511708109],[-124.58572593682923,54.226765816218155],[-124.58198678161445,54.22280617146466],[-124.57761823235049,54.22062231587381],[-124.56624127928737,54.219260845442285],[-124.55637471831632,54.22133051676777],[-124.54734359770345,54.22584686740419],[-124.54062565901663,54.23186899285841],[-124.5335885370292,54.23902499647307],[-124.52804099459202,54.245329414379036],[-124.52714812960375,54.24663590905419],[-124.52445351332678,54.24970383637623],[-124.52367518050441,54.25038440531973],[-124.52196255796545,54.25351797227907],[-124.51995740155952,54.25664795449132],[-124.51884943021103,54.25921531612425],[-124.51705021089948,54.2621685352314],[-124.51637151697076,54.264346813025085],[-124.5162323053757,54.264793179284275],[-124.51881575081727,54.267432416682205],[-124.52047195954329,54.26846520660217],[-124.52367245229802,54.26979453187692],[-124.52832959672521,54.27129374951783],[-124.53502275786899,54.273561112002255],[-124.53736312141622,54.27442267782957],[-124.54346643526675,54.27685272950869],[-124.55120330591699,54.281452618127986],[-124.555451561371,54.285015922709555],[-124.55980571790143,54.287773818439106],[-124.56728858531746,54.29048778552928],[-124.57379305885866,54.292571498393045],[-124.58342445725016,54.29467337897452],[-124.5863465856501,54.29525399017069],[-124.59375638231683,54.296137388203405],[-124.59980292210025,54.29725555985208],[-124.60565180105749,54.29785142386296],[-124.61326656126744,54.29770545833498],[-124.61894961332872,54.29636321987334],[-124.62031274893559,54.29613673787606],[-124.62665839345013,54.29662073016779],[-124.62702277241037,54.298166126394264],[-124.62856434513218,54.300907638369615],[-124.63401216263222,54.30247434891973],[-124.6390729933099,54.30317623589132],[-124.64814553203598,54.304639410426354],[-124.6535727825832,54.30734303254802],[-124.65879651179412,54.31158542714649],[-124.66199107465201,54.314281953902544],[-124.66595461355092,54.31704058470097],[-124.67305297199024,54.32106091584163],[-124.67993968518915,54.3245139915745],[-124.68225749419832,54.32674344639854],[-124.68409766037783,54.328008891839346],[-124.68800469938881,54.32875894886978],[-124.69417930787986,54.327526011100474],[-124.70093713884131,54.325384993666894],[-124.70799647041655,54.32392782143474],[-124.71629845835136,54.32412315943465],[-124.72566225695923,54.32587028274553],[-124.72790374610399,54.326162540094394],[-124.73454505334539,54.32624070098122],[-124.74098940846255,54.32671073092165],[-124.74498096842048,54.32724476962313],[-124.75367415570113,54.3277820846774],[-124.76137736514401,54.32997537908427],[-124.76614406637226,54.33295387268621],[-124.77051043898034,54.33593709096344],[-124.77333034134963,54.33754257882196],[-124.77681718838299,54.34057942146794],[-124.77708545116661,54.34348532372306],[-124.77365192255768,54.34485760944876],[-124.76817626229285,54.34489197059641],[-124.76531661486074,54.34665512963011],[-124.7670557436486,54.34883223080588],[-124.77105026868833,54.350897666272665],[-124.77766413527777,54.35410933261461],[-124.78323601516631,54.355034265617554],[-124.78782679812392,54.35471264039918],[-124.79183721240351,54.35471662723564],[-124.79426984096155,54.35592350274438],[-124.79486443706612,54.35616235645947],[-124.79885170372037,54.356963361931854],[-124.80149065586578,54.358512619516134],[-124.80538145221811,54.36052211636069],[-124.81044080800861,54.363214926380785],[-124.81385544024933,54.364646028475086],[-124.8176623758287,54.36585682848474],[-124.81656026252139,54.368767219955274],[-124.81301553237537,54.370757802981984],[-124.80467634462944,54.37416191540885],[-124.80318523810446,54.37661139751145],[-124.80335553581612,54.38083341669241],[-124.80282976092182,54.38351637360528],[-124.80291935530043,54.38573942964346],[-124.79908424732199,54.38755652375001],[-124.79417273032426,54.38869083194327],[-124.7919069117365,54.39119524150673],[-124.7890404267447,54.39363988596935],[-124.78461779641283,54.39648114859761],[-124.78312278110971,54.39847337501478],[-124.77810564577337,54.401541447365766],[-124.77767822711917,54.40604425228473],[-124.78008661667292,54.40919553621959],[-124.78399348191161,54.41183304620118],[-124.78876701264147,54.413385864854206],[-124.79384888162001,54.41392005985729],[-124.79904473305267,54.41478669650574],[-124.79922477234771,54.41655365606019],[-124.79803157495347,54.418262296120155],[-124.79801869548439,54.419229886226724],[-124.80103598240136,54.421186036397366],[-124.80591501193014,54.42342018507853],[-124.80913287187403,54.425942588175324],[-124.81185684874164,54.4268562021592],[-124.81498725388597,54.42761241483939],[-124.81497773666342,54.42954774509825],[-124.8132039546376,54.43103584284613],[-124.8070059018108,54.43426386280839],[-124.79639792250157,54.43709873276939],[-124.7927648599297,54.43765424718224],[-124.77911587055614,54.441326683568654],[-124.76896332953632,54.44688770665678],[-124.76875528562753,54.44763827970878],[-124.76561918622237,54.449103004464874],[-124.7596363691643,54.44908719359014],[-124.75462918481199,54.44901831898353],[-124.74609902470525,54.449388022620354],[-124.7421594153689,54.451309844199606],[-124.73704770489161,54.453120863847786],[-124.73115183330006,54.45527298767246],[-124.72120259702879,54.458950547029396],[-124.71576594570061,54.46366944005818],[-124.71475573225042,54.46629319107178],[-124.71305910250491,54.46959070093539],[-124.70832399893476,54.4711177813376],[-124.69918221639266,54.473538704153675],[-124.69326234093033,54.476773007688294],[-124.69386572246572,54.48357150176927],[-124.69814835039021,54.486609982242165],[-124.70380343694443,54.48982415136603],[-124.709182129063,54.492013641485734],[-124.71250071137595,54.49328517084791],[-124.71884477846983,54.495815921087775],[-124.72529432733096,54.49846391756239],[-124.73232418660696,54.50139535223145],[-124.73857263382949,54.50409430538273],[-124.74177865145607,54.50707528081601],[-124.74302718289722,54.51078873335894],[-124.74698996976288,54.516393744485086],[-124.74863939187506,54.5176561093063],[-124.75215892306221,54.519555798993956],[-124.75911877112436,54.520889984685674],[-124.76655242354083,54.522963287902726],[-124.76949344040322,54.524569903628944],[-124.77114899313216,54.52566177015916],[-124.78493462069602,54.53192821645481],[-124.79296700040359,54.53377285647999],[-124.79924674406077,54.53465000246394],[-124.80797753660933,54.534896628092426],[-124.81701747349389,54.534634890873456],[-124.82359746972408,54.534250306372186],[-124.8316538820805,54.534784442196965],[-124.84324469395975,54.53470637464336],[-124.85218339152023,54.53307019705275],[-124.86299821813576,54.53246330173307],[-124.8710443177054,54.53225106591849],[-124.87713030294368,54.53346289556016],[-124.8882994747611,54.53576901276445],[-124.89803301581753,54.53619751054036],[-124.9058755993227,54.53666210380277],[-124.91413383603162,54.53548125364779],[-124.91866840880336,54.53331725696698],[-124.92271582853834,54.52904322673784],[-124.9247014303568,54.5253960810547],[-124.92835870284779,54.52118116168068],[-124.93537661577393,54.5151407243217],[-124.94441130859441,54.512468323442775],[-124.95550903435569,54.51020713295467],[-124.96652011907896,54.50764853761282],[-124.96986720800405,54.506915183887884],[-124.97488535751134,54.50497721569838],[-124.99078796063779,54.500432435658674],[-125.00346054087633,54.49936262174984],[-125.00866279088501,54.499306345971796],[-125.01277889361366,54.49743120594979],[-125.02073569370853,54.495443391376426],[-125.0277122495526,54.49299032504689],[-125.02918861126236,54.49207919857868],[-125.02949092594433,54.489115910627284],[-125.0326513914938,54.484374353472376],[-125.04392520927017,54.483307234503684],[-125.05794903519873,54.485082623547875],[-125.06530495027963,54.48685039499927],[-125.07687424127627,54.489142388102024],[-125.08814219406011,54.49251515039581],[-125.09460481363399,54.49770602411104],[-125.09676416284206,54.5008578725447],[-125.0967575154326,54.50747900507946],[-125.0982134345967,54.51518607669443],[-125.09929035423272,54.518320920586255],[-125.1061462079723,54.52774295120811],[-125.1140963848027,54.5347086020826],[-125.12479101254456,54.54098555649763],[-125.1308735947398,54.542758084209304],[-125.14285212874776,54.54493010716897],[-125.15740195055292,54.54646462760805],[-125.17231784024499,54.54680827611828],[-125.18911820452597,54.546687750002064],[-125.18961526022426,54.54662832479161],[-125.19913886026356,54.546171342333096],[-125.20553107884594,54.54496762713344],[-125.21368500930468,54.5439899341609],[-125.21858805601205,54.54364503125236],[-125.2225159828032,54.543239987294314],[-125.22684621225082,54.54203997218031],[-125.23321828991425,54.54100492139061],[-125.23714528343608,54.541459506172934],[-125.24275102438563,54.5416287002745],[-125.24717427066967,54.54122593066214],[-125.25296302547719,54.54070591091433],[-125.25619823880777,54.540017820472],[-125.26455651022223,54.53875129436203],[-125.27201749999244,54.53999644430477],[-125.27565376427928,54.541137931891065],[-125.27801033921942,54.541931315078656],[-125.28027404808522,54.542724106358975],[-125.28283059994924,54.54449513765054],[-125.28911993468495,54.54637743695789],[-125.29265571058485,54.54442686621925],[-125.29569337464586,54.54258980121905],[-125.29961643829367,54.54151031268459],[-125.30424351766797,54.5418413134216],[-125.30728546608998,54.544286533394356],[-125.31044962084907,54.54685779322708],[-125.31614884712094,54.547982790004674],[-125.3206583328495,54.5479810152196],[-125.32635310512111,54.547519719340585],[-125.33196238460172,54.546591811183475],[-125.34060393234607,54.54594879337738],[-125.34462555272721,54.54543283146216],[-125.3474749642531,54.544570044679254],[-125.35040698664274,54.54239958055814],[-125.35178143035124,54.54170804455676],[-125.35767286679605,54.54147032027168],[-125.36121396155475,54.5419188918403],[-125.3641499349593,54.542426933786295],[-125.37310705373123,54.54435456358245],[-125.37861818525535,54.545708621890384],[-125.38540632998887,54.54769599081055],[-125.38618891694954,54.54821059086413],[-125.39001663339805,54.54820284197043],[-125.39415252856638,54.548312968158434],[-125.39730768495879,54.54977992728534],[-125.4008452305941,54.55160704247123],[-125.40546202244936,54.55171017765303],[-125.40859871133357,54.550211266840435],[-125.4121282183318,54.548319959561994],[-125.41800625302355,54.54579467752603],[-125.4227135506273,54.544930005790015],[-125.43008222590608,54.54543040430328],[-125.43667853809191,54.54689439530974],[-125.44109492311154,54.54688775724111],[-125.44846026975429,54.546526954708426],[-125.4539686083477,54.547133987333346],[-125.45949413655737,54.549971668746316],[-125.46394197925018,54.55350319425002],[-125.46679439714543,54.554635535908794],[-125.46993993025845,54.5558855476259],[-125.47122719732441,54.55701995921666],[-125.47308715524252,54.55701901649208],[-125.4761429209039,54.556835025319835],[-125.47821265404933,54.55739932485171],[-125.48155876390075,54.5587663577819],[-125.48186375962673,54.559161848352026],[-125.4847177448252,54.5602400199758],[-125.48775674078007,54.56017213583474],[-125.49160105281574,54.56016127622852],[-125.4955299676105,54.560831534095975],[-125.49917206968456,54.56088231709105],[-125.50090790820389,54.55836294477969],[-125.50187844603751,54.55630630930243],[-125.50381810709939,54.55356374761996],[-125.50457534811139,54.54990255094929],[-125.50366670368648,54.54687966055593],[-125.50097675556107,54.54255044577109],[-125.49996978769204,54.540001954274054],[-125.49887251951719,54.53724702408632],[-125.49914752352723,54.53376305859546],[-125.50069342072047,54.53021260941464],[-125.50794500468658,54.528709971879564],[-125.51747096418741,54.52999321485758],[-125.5217304200679,54.53397880983679],[-125.5250004931935,54.53785290698799],[-125.5292674753164,54.54131863229008],[-125.53282234700166,54.544790448243695],[-125.53629266456997,54.54757198955183],[-125.54310914196314,54.5518889982729],[-125.54734616451965,54.552728965356835],[-125.5530513184084,54.553968349685086],[-125.5539482982245,54.55556632775105],[-125.55961545677178,54.561831276273615],[-125.5706372567127,54.56326801363038],[-125.57546691644826,54.56542604952714],[-125.57767364808242,54.56941147239146],[-125.57740199104629,54.5716950790452],[-125.57556360149474,54.57553213138449],[-125.57217942868672,54.580340297822836],[-125.57095761134985,54.58593539090294],[-125.57164663638696,54.586788904102725],[-125.57432478598271,54.58877816870314],[-125.57512554403644,54.59083255188832],[-125.572574234117,54.59153144058296],[-125.56786531874921,54.592348114595104],[-125.5613002273072,54.59408971309206],[-125.5567876772882,54.596779092540345],[-125.55553714477115,54.599068063521116],[-125.55556255229997,54.60101225346077],[-125.55636820504607,54.603980591293116],[-125.56153566065227,54.60829948213831],[-125.56694043144577,54.6093668865827],[-125.57056974689338,54.60809851919625],[-125.5749825493664,54.606080211014984],[-125.57694498072327,54.60538819909189],[-125.58203641708707,54.60371241832077],[-125.59050156106353,54.602880923648264],[-125.59777745148408,54.60303043346079],[-125.6035998588161,54.60425885206347],[-125.6086172628155,54.60532316526029],[-125.61383826532371,54.606217693936685],[-125.61718971996964,54.60626403847792],[-125.62053206950291,54.605620426248976],[-125.62689526057117,54.60382129297545],[-125.63248861741796,54.601293853227055],[-125.63325869302135,54.60020317101463],[-125.63861861344071,54.595900888390105],[-125.64535214816834,54.592274273453405],[-125.65350673345577,54.591043347184005],[-125.66386367872923,54.59356276359895],[-125.67639212540121,54.59630206569812],[-125.68279963773308,54.598280810049054],[-125.69013831604954,54.60235795321521],[-125.69886666978114,54.60757584885011],[-125.7071615494961,54.61078529472489],[-125.71687575799015,54.61542191785118],[-125.72015961335293,54.61866359957119],[-125.72030576688468,54.622256430558174],[-125.71454251508825,54.62502935570018],[-125.70640457262665,54.627581338829145],[-125.70143542904697,54.63194126378397],[-125.70179280671846,54.63616174752277],[-125.70519109112695,54.64082855346897],[-125.71328734952728,54.642388653755894],[-125.72305009961369,54.643369666609495],[-125.73736894038979,54.646043992323015],[-125.77139018530771,54.6564326017938],[-125.78537394286361,54.66224521501737],[-125.80006854778301,54.66969683823234],[-125.8063308328344,54.67320974809512],[-125.81303246613821,54.67945542419167],[-125.81507525679608,54.684923351645814],[-125.81660452719774,54.694054599311166],[-125.82211549232215,54.699850040555226],[-125.82913289733965,54.70660591562221],[-125.83504978606058,54.712911975306845],[-125.83984263876721,54.716654094705866],[-125.840814402736,54.71883232269482],[-125.84518048671521,54.7287283044363],[-125.84940430608685,54.739779616816996],[-125.84707028513792,54.747732050856804],[-125.83950588925076,54.750804204357074],[-125.82492341345457,54.75225354622342],[-125.81287292028907,54.75151911705802],[-125.80562651098523,54.74927716979801],[-125.79117287631776,54.74672713632312],[-125.77536135082214,54.74509567681984],[-125.76678931338478,54.7465131218965],[-125.76307920263574,54.74990138594492],[-125.76028199810392,54.754196149688624],[-125.75910179180015,54.76151310879164],[-125.76128553045096,54.7689799611553],[-125.76198195636634,54.76977863367156],[-125.76497783521091,54.77170155005891],[-125.76768923472252,54.77437638649114],[-125.76384701556847,54.775936848648826],[-125.7615015716098,54.777311966859145],[-125.7577918918077,54.78008192094975],[-125.75664697027926,54.78390502528348],[-125.75511755275683,54.78683148558675],[-125.75485408024144,54.78916917933615],[-125.75565741873567,54.79037123971662],[-125.75912625904587,54.7916054118105],[-125.77054960448307,54.794915055173874],[-125.77749284918845,54.796710568023876],[-125.78404783401885,54.7983347935529],[-125.79197403028736,54.80022975207274],[-125.8011968027583,54.801785868866816],[-125.80655370405049,54.80323674011348],[-125.80874513950835,54.80476313310102],[-125.81263653318669,54.8062831245517],[-125.81920217237882,54.80967930346758],[-125.82947531805681,54.8144151541198],[-125.83394435696083,54.81622194382443],[-125.8390088447197,54.817447038202],[-125.84290126804314,54.81930649921973],[-125.84338373482487,54.81959378963348],[-125.84380405219838,54.81981828893477],[-125.84904364311217,54.82029962464703],[-125.8528023654941,54.82051021896847],[-125.8532077593221,54.82056445420728],[-125.85986240953481,54.82241767774309],[-125.86671903999034,54.824709732604646],[-125.86732602300319,54.82515831885129],[-125.87117889765386,54.82536845347999],[-125.87562628592558,54.82505050977609],[-125.87799786986375,54.82499016913625],[-125.8806793416176,54.825655732014894],[-125.8815020699125,54.827080947178445],[-125.88340146210905,54.82849822095913],[-125.88857742910542,54.82999909738777],[-125.89434579004713,54.83185860994813],[-125.89664999721982,54.83389416963994],[-125.89988581998581,54.83793717611543],[-125.90420114667995,54.84116570556292],[-125.90560440509432,54.841775973373686],[-125.91075351638898,54.84243378564039],[-125.91374847881029,54.84326906744052],[-125.91555609934004,54.844685778979084],[-125.91600297730132,54.84748117075204],[-125.91495206844365,54.84989031674561],[-125.91183964053442,54.85259363169259],[-125.90636631592156,54.85656722125661],[-125.90384562347496,54.85949474728274],[-125.90597691235648,54.86290961870975],[-125.90867464547604,54.86460482104312],[-125.91287248416954,54.86600539841168],[-125.91853755005675,54.86796224321574],[-125.91995539583553,54.86967426374767],[-125.9211047553556,54.87297176857987],[-125.91251130742631,54.874175387570006],[-125.90768224956838,54.87523794375812],[-125.90354002841069,54.87639939440687],[-125.89887320238336,54.881116841943545],[-125.89744256103404,54.884663267167376],[-125.9002382373977,54.88509557050527],[-125.90717410839044,54.885692247357625],[-125.91632615851802,54.88762488684572],[-125.9232120585503,54.89020943608235],[-125.92712888390835,54.893212937984245],[-125.93114016747377,54.896153657567815],[-125.93504425894348,54.89807291078497],[-125.9402590645869,54.90174856437757],[-125.94640995523902,54.90753863270969],[-125.94743952985425,54.90924120616269],[-125.94948335916342,54.912601527778214],[-125.94574458573679,54.91410498455553],[-125.94596203941843,54.91518906842819],[-125.94958663566965,54.91756462484477],[-125.95342835347924,54.92188416872015],[-125.957380503182,54.926078210389385],[-125.96128822161612,54.9285162296557],[-125.96766824135952,54.93047103328926],[-125.97296945725185,54.93254173766113],[-125.97615986737424,54.93372492631039],[-125.9797724472232,54.935696457072076],[-125.98501179298235,54.93937021941472],[-125.99992177230757,54.939962393886276],[-126.00318881614355,54.94082237599367],[-126.02816252138666,54.95483042015552],[-126.04361481186253,54.96989425687683],[-126.0591663947497,54.98608489807535],[-126.0681297930238,54.99541512264914],[-126.06996387781477,54.99999193092791],[-126.06966048052102,55.00180173387273],[-126.0692066310745,55.00500019914084],[-126.06919067103651,55.00597669258047],[-126.07108808137238,55.01112679786371],[-126.07361302195754,55.01468187683596],[-126.07901963131154,55.01814551415904],[-126.08634371762825,55.02024589093278],[-126.09011317158763,55.02078072087715],[-126.10144725193354,55.02106759082199],[-126.114183999213,55.02045628086634],[-126.13112321923538,55.018208821538416],[-126.1393096290311,55.01613045183562],[-126.15147974616048,55.013625678426294],[-126.15628706535952,55.01141589228265],[-126.15657868328708,55.011594695774676],[-126.15922284927392,55.0144043225965],[-126.16281825347151,55.0200256450752],[-126.16522979004024,55.02489592724786],[-126.16695872349283,55.02902352166831],[-126.16692203588653,55.031531977753694],[-126.16669806564337,55.033073157649476],[-126.1665879457228,55.03370040741161],[-126.16485840873959,55.03643509186877],[-126.1623244607124,55.039564986300206],[-126.15597112292565,55.045082679393914],[-126.15550884751391,55.049535681231625],[-126.15657163147554,55.051541068617],[-126.15881103620478,55.05474539728045],[-126.1614367549375,55.05881816763995],[-126.16324787264085,55.06409241056673],[-126.16382130303927,55.06569524353633],[-126.16376818870037,55.069287711902135],[-126.16341390772104,55.07288953623451],[-126.16287351662638,55.07585554361883],[-126.16173811857051,55.07824897546285],[-126.16011173263723,55.08058927989488],[-126.15808072867546,55.083145085502856],[-126.15755978363904,55.08468662746047],[-126.15752505958011,55.08685465300377],[-126.1586618898701,55.09069644486256],[-126.16186444199025,55.09630935370681],[-126.1663613952477,55.10204587446208],[-126.17147414173392,55.106589890786985],[-126.17720193411799,55.11004883027009],[-126.18265538377474,55.11212828431888],[-126.19047854121087,55.11553872143366],[-126.19392576782583,55.11840910290571],[-126.195673859277,55.12161354763472],[-126.19295584499,55.12343640083309],[-126.18710930607891,55.127691733435896],[-126.18681119798862,55.12780864424598],[-126.1821615408701,55.13195443358086],[-126.18096974621119,55.13852284638205],[-126.18206230766404,55.14567023389095],[-126.18457838255436,55.15082669264833],[-126.1881899186791,55.156330835635146],[-126.18929111517403,55.16285105050578],[-126.19281214953453,55.167781849832416],[-126.20016277297472,55.170332405447915],[-126.20829288935049,55.17414439461824],[-126.21371952738396,55.17868618192822],[-126.21637295065827,55.18171857799646],[-126.22146841308768,55.18866152936714],[-126.22576781296452,55.19565051842771],[-126.22798782526833,55.20120980421078],[-126.22887515260447,55.202175711878695],[-126.23200747743981,55.20671195944589],[-126.23312533038589,55.212604680941965],[-126.23331208781308,55.213742083462066],[-126.23406221414878,55.21711809841777],[-126.23411632028346,55.220665635743636],[-126.23255077762434,55.22545250855072],[-126.23239565232295,55.229627547384936],[-126.23482492534178,55.234783197259574],[-126.23977971006538,55.23811535050064],[-126.2417798656279,55.23818315333412],[-126.24819026048222,55.23712237590269],[-126.25292856641181,55.23400417326851],[-126.25576223388447,55.23149890780079],[-126.25841493644478,55.22739930447824],[-126.25847197292681,55.22293775389825],[-126.25848510893525,55.22191643511628],[-126.2636104713609,55.227478000404986],[-126.26675516179733,55.23165501871788],[-126.27189830775372,55.23614116821601],[-126.27696351425652,55.23872803453207],[-126.28373185893098,55.24132874628285],[-126.29069473694966,55.24427802930826],[-126.30282139261769,55.25032316279331],[-126.31642423919133,55.25888975553275],[-126.31978647643531,55.2622765407179],[-126.32364326275761,55.26628906764535],[-126.32341088471169,55.26926398007205],[-126.31918911842293,55.27084264608985],[-126.3173726084189,55.27215526368547],[-126.3162257879222,55.27614482804078],[-126.31597759626358,55.28032024257631],[-126.314937649276,55.283521154335276],[-126.31662976294618,55.28449337498648],[-126.32130340095364,55.287312392647955],[-126.3261727894438,55.29047115945175],[-126.33205344217308,55.29295514163278],[-126.33882703401224,55.295723107881706],[-126.3422784029016,55.300649982086945],[-126.34323608554274,55.30453547098981],[-126.3463038879192,55.307976133710376],[-126.34875844986418,55.31244870285573],[-126.35550032747963,55.31915775212475],[-126.3629576012356,55.324377203264596],[-126.36355894574798,55.324608382822774],[-126.37003960794605,55.3276622201536],[-126.3766371297657,55.329174450383135],[-126.37880576429163,55.332778305341854],[-126.37548819475083,55.33385443119613],[-126.36875392999458,55.335487096761256],[-126.36260224586447,55.33935741904388],[-126.36379135828543,55.34067091106889],[-126.36727914591775,55.342452471453974],[-126.37415266403224,55.34693837247711],[-126.38521861770703,55.35320281703035],[-126.39299179439755,55.357855139586654],[-126.4074621854034,55.36538800819727],[-126.41982041209437,55.37410891687057],[-126.41856253859662,55.38011561694338],[-126.40960334918779,55.38345114226727],[-126.39887164132298,55.382796011765414],[-126.3942719987165,55.3809471510248],[-126.37010557442264,55.369840351414844],[-126.35972172899356,55.36528373195697],[-126.3381066217918,55.36075716037307],[-126.3191529933273,55.36068159563139],[-126.31473792110359,55.36078238532992],[-126.31171169887885,55.36248319368417],[-126.30696619972701,55.36514676041777],[-126.2990094949101,55.36745951847515],[-126.29489628988013,55.36772910028482],[-126.28587104975635,55.36769632219908],[-126.27966689161978,55.36617840301623],[-126.27609998084073,55.362970118047876],[-126.27156807987953,55.35637740287333],[-126.26671714801407,55.35149634508533],[-126.2620751963053,55.35393400793996],[-126.25842641226004,55.35695176952732],[-126.25708506479664,55.35963322122604],[-126.25545778860277,55.361508950885835],[-126.25377400997755,55.36744311737099],[-126.24921667589196,55.37056099975866],[-126.24208380998907,55.3713902742755],[-126.23303771831844,55.37266170554655],[-126.2316753891117,55.37688384060951],[-126.23447893230295,55.37741614124954],[-126.24280547105329,55.37745399496218],[-126.25273486334923,55.37772099242898],[-126.25903689396606,55.37912358482996],[-126.26613906334292,55.38081084221466],[-126.27311123739044,55.38495270491725],[-126.28329169361648,55.38911383154551],[-126.28669684291015,55.38976006541925],[-126.29541024425457,55.39121799190279],[-126.30079545657156,55.39409886558793],[-126.30745294594779,55.399896982567064],[-126.3127190215942,55.404488791068964],[-126.31691068621012,55.40667316794467],[-126.32730307682577,55.410713744117416],[-126.33581202914824,55.413378862182334],[-126.34088172299145,55.417790854664354],[-126.34442299152111,55.424554103506395],[-126.34710065700091,55.4278167150892],[-126.35124572979026,55.43457810944231],[-126.35507897150532,55.44241533677319],[-126.35831123515572,55.450433360457346],[-126.3580382321912,55.45700107059876],[-126.3570014265252,55.45991569958737],[-126.35612184626342,55.46670911610791],[-126.35624931965346,55.473571344818566],[-126.36094253981024,55.476899620154676],[-126.36705702050529,55.478745330477274],[-126.37648505240065,55.481414021435576],[-126.38752976370739,55.48344988609216],[-126.39353491123119,55.48654891701123],[-126.39701917736556,55.49045303135284],[-126.40009166389487,55.4951467657711],[-126.40137502665551,55.49766015959937],[-126.40573149687155,55.505162797433286],[-126.4091793522523,55.51317893478718],[-126.4113305770006,55.51981059003921],[-126.41040826959721,55.52157855527391],[-126.40845027501756,55.52608241947249],[-126.40509058041785,55.52979342767777],[-126.39821751040157,55.53234190267614],[-126.39155830769806,55.5334110786418],[-126.38628238099913,55.53727089191578],[-126.3875445537816,55.5418451093204],[-126.39062033989364,55.54648536000599],[-126.39342637761413,55.54816091237305],[-126.3990362048423,55.551314738574085],[-126.4036237528745,55.556191767512544],[-126.40337729310717,55.56098571011619],[-126.40266276406439,55.56201830764057],[-126.40029349737813,55.5670967724373],[-126.40065839360027,55.571091400648],[-126.4028494567854,55.57372734971849],[-126.40503446565583,55.57710689512981],[-126.40600453298272,55.58105476822238],[-126.40568476595615,55.58282972294647],[-126.41111719168187,55.58420969750884],[-126.4195776253772,55.58566895415598],[-126.42843765525924,55.587359221266766],[-126.43095616453483,55.587762731705624],[-126.43930370402369,55.590296161734734],[-126.4467389768522,55.593808847251346],[-126.45758131877916,55.59995172384656],[-126.45868437174187,55.600700281529946],[-126.46864154799613,55.604892327483945],[-126.47807581430385,55.61115518537918],[-126.4812428989751,55.61899146250445],[-126.48071928280395,55.62167230414811],[-126.47765770721838,55.62555440217505],[-126.47267689173523,55.62988266201215],[-126.47102160561388,55.63485234670632],[-126.4751318334334,55.6384564653819],[-126.47986907753356,55.639612158968774],[-126.48188663636614,55.63990906472105],[-126.49046642833288,55.64067328936015],[-126.49590933980168,55.64194210090648],[-126.50740285883604,55.64522916239256],[-126.51093452073188,55.64575243346774],[-126.51557994606672,55.646047061537246],[-126.5236538708982,55.64686486015889],[-126.52737075586587,55.650074726673914],[-126.52795413394583,55.6531632824198],[-126.52813817724349,55.65630727099734],[-126.52961600648187,55.661963427981036],[-126.53119455507033,55.66722493503994],[-126.53129552097198,55.667627684643875],[-126.5324101260591,55.667282515889376],[-126.53857600110885,55.6673010837323],[-126.54767616366665,55.66629419677417],[-126.55294493538534,55.664246320987644],[-126.55700143025008,55.661907931175584],[-126.56114708814972,55.66105628511333],[-126.56902731088567,55.66204228602651],[-126.57154988555484,55.66250570920965],[-126.57538108447059,55.663885934853255],[-126.58053520006833,55.66413105364904],[-126.58446576349206,55.66607499623027],[-126.58879546527113,55.669396718506654],[-126.59292780335262,55.67192182900416],[-126.59514905820417,55.672153255328695],[-126.59828048767855,55.67238032057332],[-126.6037361479945,55.673250230474196],[-126.61009554026867,55.6754325837538],[-126.613314874085,55.678239204932034],[-126.61532589390731,55.68081870911161],[-126.61865740386797,55.68207464542492],[-126.62360673871977,55.68344792810904],[-126.62814541872402,55.686489552271276],[-126.62854336692561,55.687464163151255],[-126.63025083235695,55.69003599634379],[-126.63124685049374,55.69403595524335],[-126.63244634545178,55.69747043310618],[-126.63678895340794,55.69901649196125],[-126.64366245429518,55.70051365967739],[-126.64688620694949,55.704116847136326],[-126.65578069024211,55.70630182415733],[-126.6605392704307,55.70493301698401],[-126.66641177748672,55.70380005315333],[-126.67065820673034,55.704368860273185],[-126.67358193909301,55.70763251039748],[-126.67599703116707,55.7122607024082],[-126.67942710415885,55.716041175047415],[-126.68387203656152,55.71849897863298],[-126.68457990387184,55.718844565343154],[-126.69216551719315,55.721195387629756],[-126.69843073987181,55.72388459344283],[-126.709963872012,55.727556391940325],[-126.71856028733951,55.730697374189496],[-126.72553751106801,55.73521795977745],[-126.73363128605892,55.73836978762343],[-126.74101857928851,55.74122958398368],[-126.74587610299648,55.7450626478187],[-126.74698566211178,55.74803971768242],[-126.74738508184177,55.752723368030225],[-126.74758513514095,55.75529367009742],[-126.74768300490722,55.75752410323324],[-126.7477806049422,55.76186011616143],[-126.74807822488546,55.76695654100403],[-126.74898040485947,55.77324105647896],[-126.74887931357605,55.77523972154792],[-126.74765909989301,55.77889365041497],[-126.74491347089864,55.783121056580434],[-126.7443034703058,55.784728485492394],[-126.74420319965648,55.78529355358022],[-126.74420308706135,55.78560715259709],[-126.74419994773997,55.78666444573564],[-126.74480566024224,55.78860518496763],[-126.74672911927225,55.791299733753874],[-126.7513892787586,55.79432744130394],[-126.75605183737892,55.79775816898667],[-126.76324757095323,55.800958409031864],[-126.77024395949665,55.8027348198287],[-126.77937180923897,55.80428267277856],[-126.78840001775292,55.806511457798344],[-126.79874454218626,55.809940900233485],[-126.79945553127546,55.81006184394329],[-126.80280077705322,55.812056650384896],[-126.80696155869195,55.81702988180886],[-126.81112452465406,55.82171625125594],[-126.8182275120303,55.825370997769994],[-126.82208459394444,55.826627268255464],[-126.83111855136003,55.82776884314185],[-126.83923809479454,55.82857536416341],[-126.84167746321434,55.83120240018723],[-126.84361065560053,55.83554417271821],[-126.84523723292382,55.83754039557597],[-126.84899529783192,55.83930725759947],[-126.85153603837702,55.84067900555856],[-126.8554959045984,55.84296401481788],[-126.858853807244,55.846390948227466],[-126.86190821453938,55.85193449448654],[-126.86333256397259,55.85421861172827],[-126.86729936390716,55.85718420939971],[-126.87167406542979,55.86101602963261],[-126.87289719079135,55.86330143758007],[-126.87432703008751,55.86764628526061],[-126.87646524537794,55.87056152294382],[-126.88094346613877,55.873765110684005],[-126.88481044185404,55.87673089327813],[-126.88583626284127,55.880388514024524],[-126.88645363970393,55.88466726093278],[-126.88717281405052,55.88780732502359],[-126.88880424446455,55.89089618431855],[-126.89359491691657,55.895638368058044],[-126.89746326663952,55.898263297547025],[-126.90255538670947,55.90089731767804],[-126.90510623879216,55.904427458355904],[-126.90714987496939,55.90757588770713],[-126.91387758455916,55.91362066480969],[-126.9165296773372,55.91642406796971],[-126.91816905900609,55.920310031125034],[-126.91624922229458,55.92408736364043],[-126.90943814052106,55.92632281546877],[-126.90201395612429,55.927639327488876],[-126.89927572833311,55.93135053655902],[-126.89541418669319,55.93307142687355],[-126.87283458313672,55.94039738934935],[-126.87131302940853,55.94137559639876],[-126.86633982934805,55.95126628018112],[-126.87082892349953,55.95800075165331],[-126.87674759592929,55.96280764439006],[-126.88541003015168,55.96542668123684],[-126.89070721396932,55.9665723898353],[-126.90160654430719,55.96758857037001],[-126.9083316209909,55.96861586208432],[-126.91333178080961,55.97066779022376],[-126.9223010716992,55.97339862262633],[-126.93443502576147,55.97647294924164],[-126.93922383590979,55.97738742103921],[-126.9498278842772,55.97909165709659],[-126.95717383172239,55.98170675620877],[-126.9612579668612,55.98422074313886],[-126.95871019399435,55.984338589375675],[-126.95137679373514,55.98451924202552],[-126.94180046723797,55.98544196173877],[-126.93538722886686,55.987102341383405],[-126.93039896892752,55.9884204051951],[-126.9236756745884,55.989741951797924],[-126.91899075268907,55.99049282748419],[-126.91827731346488,55.99055175677921],[-126.91328860401931,55.99180642020541],[-126.91329270401762,55.994154106133266],[-126.91391082390021,55.9956998664979],[-126.91720360080627,56.00004000534153],[-126.91977450902856,56.00207341978249],[-126.92056470154358,56.00361790755975],[-126.92234257838938,56.00676816293932],[-126.92477033579775,56.00797813122514],[-126.92830758398473,56.00976240001316],[-126.93021770354791,56.01149577985165],[-126.93178376556706,56.015328495079466],[-126.93399896000763,56.01698789851122],[-126.93539869485421,56.01865327510117],[-126.93697128383702,56.022261871453225],[-126.93467911712399,56.025047671980694],[-126.93331663871339,56.0272172632909],[-126.93513141729089,56.02835986908974],[-126.93817222037788,56.02958300951759],[-126.94254028699758,56.030742471913904],[-126.946491566991,56.03253215699723],[-126.94952080120704,56.03437342282378],[-126.95224511911204,56.03627067124668],[-126.95518606021311,56.03743143802972],[-126.95741069627378,56.038642343282355],[-126.95900602437975,56.040879512802505],[-126.9605901179423,56.043968043162046],[-126.96187398035032,56.04648532853114],[-126.96387667623773,56.04895234919096],[-126.96677787531118,56.052622247345916],[-126.96834696660443,56.05657107474972],[-126.9698303106058,56.05959755724845],[-126.97254175403572,56.06253398837159],[-126.97666710329909,56.06637354327011],[-126.98040566127713,56.06890763913916],[-126.98425453281892,56.07080453874697],[-126.9884961352713,56.074024519215506],[-126.99112137052474,56.07603826073295],[-126.99601907696913,56.07634947849839],[-127.00019974510255,56.07671095572138],[-127.00150798736713,56.07802691038991],[-127.00350082755993,56.08140748276384],[-127.00568983114727,56.085127004942684],[-127.00552216910212,56.0895193158019],[-127.00149552524779,56.09230216884727],[-126.99747103812074,56.09491461296861],[-126.99642637940858,56.09627594093982],[-126.99412006956595,56.10010249632224],[-126.99344612070091,56.10391627873755],[-126.99423706128661,56.105693386585294],[-126.99469174835568,56.109462515957034],[-126.99526880773935,56.11181481397461],[-126.99617617769006,56.112730725207776],[-126.9976675359996,56.11530885068397],[-127.00090646580605,56.117604395544674],[-127.00610370897192,56.118710470926366],[-127.00849202337294,56.12300196284528],[-127.01025728469607,56.12815865416897],[-127.00868531974479,56.130662368707924],[-127.00628408873953,56.13396121871943],[-127.00612845054938,56.137331917921536],[-127.00632715868748,56.137733609283046],[-127.0063230419146,56.137966637243956],[-127.00401742452206,56.141443920480924],[-127.0006957202999,56.14461550129055],[-126.99543301551502,56.147622948942136],[-126.98779290533312,56.151930107897925],[-126.98363028859927,56.15619208299295],[-126.98356201317497,56.16047615551112],[-126.98278035624254,56.16470300807385],[-126.9773366383608,56.165703739735385],[-126.9758521229122,56.166593332547656],[-126.97299628535431,56.168308871786394],[-126.9709109516459,56.17064577846454],[-126.96556034111873,56.17215609194984],[-126.95912733872248,56.17115617403183],[-126.95576557907475,56.169944753504836],[-126.94955167585843,56.16813619153347],[-126.94600636855374,56.16589533062157],[-126.94340768324506,56.16211498333016],[-126.9388213938641,56.16083153681996],[-126.93145547212451,56.16056298112321],[-126.92993611242342,56.159758598451546],[-126.92840873724937,56.15912452147325],[-126.92368629681948,56.15406883011269],[-126.9222088417758,56.15069217320206],[-126.91878308397393,56.14765217649498],[-126.91227934934673,56.14498366311183],[-126.90761974456754,56.14240027321754],[-126.90454465844873,56.136955818211085],[-126.90329681438614,56.13237655234313],[-126.90167649469807,56.13140230725146],[-126.89867045670864,56.127892862683716],[-126.89579865028186,56.122688758236805],[-126.89474159752973,56.118905639262216],[-126.89256933767746,56.114610599578135],[-126.888545223761,56.110875100046954],[-126.88662751572828,56.109607040619046],[-126.87973037740159,56.10666191026144],[-126.8754927213679,56.10355477107556],[-126.87466795872238,56.09847058384989],[-126.87361214322158,56.09480382611915],[-126.87032043880234,56.09056095725928],[-126.86541446776074,56.08504759102138],[-126.8652169938398,56.0847621839695],[-126.8646722498109,56.081217354053315],[-126.86614182230878,56.07894919817381],[-126.8657513226232,56.078028881055324],[-126.86592661530926,56.0741476071239],[-126.8652560623027,56.07174168575756],[-126.86378377483854,56.068597458053596],[-126.86066505949633,56.06600202798251],[-126.86027399776559,56.06509066469236],[-126.85992363615554,56.061894002375276],[-126.85671669469549,56.05890480598163],[-126.85176704769778,56.05607955978507],[-126.84867373593536,56.0522918989125],[-126.84649511309635,56.048793788858596],[-126.84329287375051,56.04540997508067],[-126.8386785887429,56.04121102515193],[-126.83412807503863,56.039126240307915],[-126.8307307199644,56.035456670507166],[-126.82906337611699,56.03201767894495],[-126.82698752297419,56.028635096121704],[-126.82339783751439,56.024437924398065],[-126.81743407084434,56.0216090289421],[-126.81289470709442,56.01912021746837],[-126.80905367142695,56.01744222176182],[-126.80475997097916,56.01793545994719],[-126.79903003902244,56.01875122031983],[-126.79247267146252,56.02019913209144],[-126.78614763450996,56.02022052387901],[-126.78245881997046,56.02104976281109],[-126.78131827437782,56.02195284811297],[-126.7812864504899,56.023440509212115],[-126.77912862354152,56.024224379958184],[-126.7743592834443,56.023115548991896],[-126.76968026259352,56.02240026075974],[-126.76608061410813,56.02386468454678],[-126.76609690913467,56.02786102411207],[-126.76139250360052,56.03314024122324],[-126.75540142816087,56.03664377460877],[-126.7547356768328,56.03904022339085],[-126.75517125006739,56.04252332947039],[-126.75602926712334,56.045278111786814],[-126.75830958289812,56.04848140722469],[-126.7551359422705,56.048921456935446],[-126.75176733144178,56.04884286139267],[-126.74929432490232,56.04996858997327],[-126.74280804024902,56.04787402955818],[-126.74237532668819,56.044328139523486],[-126.74090315875742,56.04157685433884],[-126.7399543006678,56.038311753467475],[-126.74152728802311,56.03638500868975],[-126.74084029018869,56.035179333113064],[-126.74081202137494,56.031747583536],[-126.73873705552984,56.02870410306643],[-126.73383832227184,56.0242253268803],[-126.73201377045503,56.02358173438976],[-126.72408836907857,56.02227412292056],[-126.7160156709661,56.022785841568286],[-126.71536261459353,56.02467123711799],[-126.7153253216906,56.026382913119036],[-126.70969587479571,56.0270865345028],[-126.70151168771287,56.02811766001623],[-126.69345269163502,56.02806334788733],[-126.68919772443218,56.02666178276112],[-126.6862755237416,56.02520808036601],[-126.68504955762853,56.02525950139579],[-126.67789125599154,56.02595202666962],[-126.67104529490639,56.02647224798398],[-126.66947964499367,56.028003795665974],[-126.67085414763764,56.0302993947745],[-126.6714874005819,56.03367416485712],[-126.66606115502584,56.034374770122746],[-126.66137647214875,56.03405874603939],[-126.6556969872982,56.032538020054446],[-126.64904612435456,56.03339654114057],[-126.64767398073184,56.035213565087986],[-126.64825231025843,56.03670701964894],[-126.64938599566183,56.04042880378849],[-126.64605729251153,56.042909916038994],[-126.64314272321312,56.04529027993412],[-126.63946601124321,56.049547166068116],[-126.63684661651058,56.052329125422204],[-126.6324205986131,56.05377595195463],[-126.62606756788556,56.054649694820306],[-126.62288845302318,56.0553104728806],[-126.62294231373738,56.057191922072384],[-126.6249460337619,56.05875018210431],[-126.62842663675785,56.062541260012146],[-126.62622492786303,56.064810187169286],[-126.62258794190014,56.067354930291835],[-126.62223111260882,56.06934592498821],[-126.62347675549124,56.07267316103775],[-126.62355536241277,56.074080708852456],[-126.62355391760877,56.07411655832037],[-126.62353289920279,56.074251070323626],[-126.62349845124994,56.07442597086081],[-126.62347750336926,56.07456496282075],[-126.6234751097378,56.07466802142612],[-126.62347853366985,56.07482033480137],[-126.62348569403741,56.075018552933464],[-126.62352604379477,56.07521660835077],[-126.62361861497008,56.07540768724485],[-126.62363097039206,56.07542554785507],[-126.62372274646776,56.07556734728746],[-126.62379892719508,56.0756767409849],[-126.62386173702144,56.07576715895966],[-126.62391758577347,56.07586321143624],[-126.62397398457172,56.07599398352767],[-126.62402048332972,56.07613488485962],[-126.62404869691173,56.07626467515843],[-126.62407470354334,56.07638215545806],[-126.62408669709401,56.07650418482888],[-126.62405116461473,56.07667461067827],[-126.6239540742321,56.076896862044116],[-126.62386157093934,56.077218777586864],[-126.62389397925206,56.077740573957584],[-126.62401526167466,56.078219371484074],[-126.62408841748258,56.078391504252686],[-126.62411845447728,56.07844624058926],[-126.62416121910687,56.078541237204306],[-126.62419793143766,56.07863626351437],[-126.62425004469378,56.0787502555236],[-126.62435517975489,56.07897151457707],[-126.62447678772261,56.07921733436957],[-126.62461989412856,56.07935888135534],[-126.62481551541295,56.07944864667663],[-126.62492972499145,56.07954441214492],[-126.62494205806071,56.0797515657671],[-126.62493668182461,56.08017386121654],[-126.62492950640409,56.080609606496516],[-126.62492618425983,56.08084371897834],[-126.62492377133762,56.08107222662474],[-126.6249174709997,56.08143628277577],[-126.6249120975891,56.08179585410828],[-126.62489947252143,56.0822047445418],[-126.6248737411761,56.08261257934455],[-126.62486344170287,56.08278848220482],[-126.62486164251041,56.08280193198132],[-126.62485489154408,56.08281988639709],[-126.62485912939775,56.08283330651552],[-126.62487284110276,56.082873561966935],[-126.62489073406581,56.08298660195808],[-126.62489451947427,56.083161315567445],[-126.624892786297,56.08330581418478],[-126.62473415837272,56.08345556383229],[-126.62433833348241,56.083623278967714],[-126.62398197271861,56.083741515822126],[-126.62354164389761,56.08383216137196],[-126.62294630302975,56.08391908434876],[-126.62256024477603,56.08406882483282],[-126.62228323012054,56.08436924129337],[-126.62193654400068,56.08465543682034],[-126.62141046869381,56.08486074218039],[-126.62079997025609,56.08507317788082],[-126.62047898845799,56.08520243297966],[-126.62032401900223,56.08526703329703],[-126.62014596647039,56.085335106200375],[-126.62006793810723,56.085364608632695],[-126.62007110590152,56.08537355381856],[-126.62015614965686,56.08547058605497],[-126.62030607666085,56.08566138845326],[-126.62037731476354,56.08577528906153],[-126.62037752640539,56.08578872897383],[-126.6202707311738,56.08584525371689],[-126.61996510914061,56.085992353876335],[-126.61962231409544,56.08614299461451],[-126.61939198359373,56.086214681336735],[-126.61920940720549,56.086251412746705],[-126.61899749998682,56.086279325996834],[-126.61878961603439,56.08630609924277],[-126.61866113076114,56.08632688561943],[-126.61856570338314,56.086338550486694],[-126.6184241268973,56.086358280203655],[-126.61825535544911,56.08637702186415],[-126.61820229648299,56.08639520099706],[-126.61813023187763,56.08642019293648],[-126.61808970827619,56.08653127763763],[-126.61809294600396,56.08654470284965],[-126.61812970733102,56.08670693563579],[-126.61825822564539,56.08688104335423],[-126.61842728991807,56.08700903060978],[-126.61856850776934,56.08709346998372],[-126.61868014889589,56.08715341132047],[-126.61875010232706,56.087186673446794],[-126.6188058959828,56.08721440402247],[-126.61894729284641,56.08731116298918],[-126.61913320119044,56.08748611071437],[-126.61924182260789,56.087609910792125],[-126.61926452455093,56.087645642815396],[-126.61928939759501,56.08769144497965],[-126.61934631928119,56.08779085491604],[-126.61942244105072,56.08789577173867],[-126.61950386852155,56.08801858395492],[-126.61974668635042,56.08810028709257],[-126.62003868151317,56.088172789448436],[-126.62000765095964,56.08831183056888],[-126.6198689266649,56.08838531180008],[-126.61985296656938,56.08839435020692],[-126.61989351889072,56.08841319395715],[-126.61993601338641,56.08842754791104],[-126.61995628076617,56.08843640977774],[-126.61997261101145,56.08845089122798],[-126.62001416171734,56.08846973007498],[-126.62007921846731,56.08851085592736],[-126.62009999719676,56.088552197592826],[-126.6200904276166,56.0885836064745],[-126.62010387046618,56.08860594254253],[-126.62012527729561,56.0886237594675],[-126.62013348656454,56.08863380016718],[-126.6201469999819,56.088660616206624],[-126.62020037755066,56.088791405327214],[-126.62025669204823,56.08904426883144],[-126.62020781882282,56.089264042805205],[-126.62010424159378,56.08939671719082],[-126.62003827173059,56.089490005396854],[-126.61999121868901,56.08956976041624],[-126.61992173248628,56.08969442794821],[-126.61985826786692,56.089819066105505],[-126.61982293788397,56.0898763623412],[-126.61978426196337,56.08991239334334],[-126.61970728144057,56.09000909527091],[-126.6196218870747,56.09014728110769],[-126.61954123253504,56.09026640244152],[-126.61945535997592,56.09037322825031],[-126.6194338785978,56.090479740490764],[-126.61950987057476,56.09063954196734],[-126.61959423281911,56.09082058417695],[-126.61962662642786,56.090960436487975],[-126.61962329386131,56.09106798046802],[-126.61958968304238,56.091171191595755],[-126.61953873056882,56.091322650645125],[-126.61950861173167,56.09151993154759],[-126.61948741735475,56.091708208351235],[-126.6194681651349,56.09189199538231],[-126.61948179770795,56.092054340758594],[-126.61954237154801,56.09219405593551],[-126.61963151314123,56.09235827374573],[-126.61972265070293,56.09252136170286],[-126.619797051739,56.092644208214],[-126.61984570283201,56.09273021745997],[-126.61987065026472,56.09278049957692],[-126.6199142775783,56.092866533279604],[-126.6199596006441,56.09293239723989],[-126.62001421901739,56.09301277694761],[-126.62011384534088,56.09313998069635],[-126.62015899271564,56.09319464463495],[-126.62017446769396,56.093218090916594],[-126.62023477437023,56.093277161260936],[-126.62034493421002,56.093369590960634],[-126.6204296415303,56.093443103303635],[-126.62048068723331,56.09348877771933],[-126.62051750161487,56.09352556087182],[-126.62056739185947,56.09356228023556],[-126.62062766281281,56.09361799033494],[-126.620657335995,56.09364920787579],[-126.62067065735403,56.093663703953894],[-126.6207042152197,56.09368594187765],[-126.62079282614418,56.09375159437544],[-126.62090275910053,56.093829463661464],[-126.62094855363289,56.0938617225432],[-126.62096877106482,56.09386722427833],[-126.62100803095575,56.093867032653485],[-126.62107965798391,56.09387788383665],[-126.62125750115078,56.09392181882935],[-126.62148115594469,56.093998012187164],[-126.62162763264953,56.0940320191438],[-126.62170524430957,56.094038360408],[-126.62175248691885,56.09403476929951],[-126.62179988707057,56.09404013806137],[-126.62187769486911,56.094059919249034],[-126.62195975692649,56.09409312058017],[-126.62204085767014,56.094129686806276],[-126.62215339860012,56.094181780394685],[-126.62230851065767,56.09425158698483],[-126.62251654539094,56.0943592172605],[-126.62273529956907,56.09450711771082],[-126.6229181603641,56.09467759519323],[-126.62305584539597,56.094855014163954],[-126.62316601016803,56.09501016614126],[-126.62324898076368,56.09510160652608],[-126.62333355542813,56.09516615701319],[-126.62349736528817,56.09527736266545],[-126.62366406173639,56.0953795933022],[-126.62376869667506,56.09543956484799],[-126.62385218740614,56.095499639987544],[-126.62389504581402,56.09553639257866],[-126.62409037773993,56.09553991493724],[-126.62448501442219,56.09554357900602],[-126.62470147488203,56.09554699672188],[-126.62472363564409,56.09554800799592],[-126.62475663953056,56.09566097435195],[-126.62475841064477,56.09589954341093],[-126.62467925570532,56.096050023241304],[-126.62461043604058,56.09608956402576],[-126.62461079127691,56.09611196395123],[-126.62463719156285,56.0961263954314],[-126.62465853347753,56.09613973165689],[-126.62468910197373,56.09616310333084],[-126.62474900965488,56.09619529160792],[-126.62482495230184,56.09622404086353],[-126.62487759327496,56.09624282376407],[-126.62495886110008,56.09628946812549],[-126.62509004324299,56.09637282998431],[-126.62517231005793,56.09641946930628],[-126.62520884709643,56.096438331198776],[-126.62530010982863,56.09648044590148],[-126.62541287352369,56.09654485653184],[-126.62543970124806,56.09658616776017],[-126.62544221229986,56.09661751776299],[-126.62552779229051,56.09668206191884],[-126.62565874733765,56.09675198332538],[-126.6257489416203,56.09678962263504],[-126.62586135267333,56.09683275302246],[-126.62609085845872,56.09689546869405],[-126.62639458313336,56.09694213741866],[-126.62670787442025,56.09702012065832],[-126.62691484817199,56.097122148786276],[-126.62694239100912,56.09720825956228],[-126.62681141689552,56.097327633776736],[-126.62664892744101,56.09749084636225],[-126.62669558590089,56.09763958778125],[-126.62695860906636,56.09772117828339],[-126.62717575772692,56.09776603158797],[-126.62723832475118,56.09777580393511],[-126.62723666838313,56.097798213790725],[-126.62721650608074,56.097986487387004],[-126.62715923576317,56.09830935406294],[-126.62708874235152,56.09849675565125],[-126.62704226338163,56.09854962869092],[-126.62701578929492,56.09859344245845],[-126.62700916314779,56.09862035714593],[-126.62698960216449,56.09865629624918],[-126.62693644144565,56.098731603873134],[-126.62687702709614,56.09879350126654],[-126.62676539495344,56.09886349644809],[-126.62661880725322,56.0989504649508],[-126.62653190249736,56.09905618087134],[-126.62647434073716,56.09917183303507],[-126.62643019229301,56.099243735827024],[-126.62641089768844,56.099296474809236],[-126.6264021143563,56.099377164171074],[-126.6264072816371,56.09951266902829],[-126.62642310118262,56.09968396417786],[-126.62642990767375,56.09979593919047],[-126.6264327046759,56.09997177880742],[-126.62642409859245,56.09999982330718],[-126.62634852256093,56.10024885428605],[-126.62613387023671,56.10036079913702],[-126.62582839272861,56.10033317967574],[-126.62544040658732,56.1003070851364],[-126.62507622293298,56.10032231564888],[-126.62482137614516,56.10037621127512],[-126.62468849985282,56.10044070852103],[-126.62456821389172,56.100600351080196],[-126.62441149741267,56.10100211074375],[-126.62433920095908,56.10158490996363],[-126.62425776327193,56.10216327375595],[-126.62409268222126,56.1025460327798],[-126.62392180157443,56.102754086627215],[-126.62372955607744,56.102947683850836],[-126.6235124824086,56.10322652899138],[-126.62334070114734,56.10369556660976],[-126.62326729227415,56.1043366156455],[-126.62325875724558,56.10500646933946],[-126.62324892185582,56.10565728808178],[-126.62324486087807,56.10629127738716],[-126.62327403785403,56.10686237915656],[-126.62335907472158,56.10727303489032],[-126.62344140009394,56.10751233045544],[-126.62346540230854,56.10775639206637],[-126.62343492455186,56.108056724982916],[-126.62345867476333,56.108348951676895],[-126.62356359676677,56.108616138789735],[-126.62365343096137,56.10882067482213],[-126.62366913215102,56.10904909595618],[-126.62358715929108,56.1092768756079],[-126.62351023893069,56.10937918052742],[-126.62344914411344,56.10946348646373],[-126.6234160184651,56.10966078435108],[-126.62346308304272,56.10989913275321],[-126.62351222299581,56.11001314111228],[-126.62353091424886,56.11004889239498],[-126.62360801266296,56.110212047675915],[-126.62374271769883,56.11051605187324],[-126.62386584240451,56.11078763014126],[-126.62396200849412,56.111010056547215],[-126.62407421041556,56.111290648939615],[-126.62419020061385,56.111747076788255],[-126.62426191722044,56.1123325321193],[-126.62430357665714,56.11280052548957],[-126.62432685922363,56.112998667279435],[-126.62432475391783,56.11305692230442],[-126.6243281380447,56.11307930751362],[-126.62440972831546,56.11308114748248],[-126.62465062799694,56.11309452670561],[-126.6250057139566,56.11313310693562],[-126.62536007025963,56.113189611212945],[-126.62568564342357,56.113272018080615],[-126.6260061912312,56.11335444883961],[-126.62629328893303,56.11342360229699],[-126.62649653468706,56.113476366481464],[-126.62661597966708,56.1135149817207],[-126.62667871420918,56.113533714424506],[-126.62678628999568,56.11358582903195],[-126.62703724713671,56.11366187933165],[-126.6272797390791,56.113712208765165],[-126.62750034618655,56.113779446994236],[-126.62779037442134,56.113905707318764],[-126.62800437154144,56.113999859479044],[-126.62816762959919,56.114070739770135],[-126.62833556394307,56.114307370304],[-126.62866035107874,56.11471796039297],[-126.6292358978204,56.115128430551394],[-126.62960273882763,56.115459284017035],[-126.6296553464181,56.115600155421],[-126.62960145141265,56.11563066448255],[-126.62949061414263,56.11569057751382],[-126.62943571992676,56.1157210914461],[-126.62940018366129,56.115766070842575],[-126.62932000385429,56.115853834446064],[-126.62925826692312,56.11589782323694],[-126.62917148423016,56.115887051269894],[-126.6289970631883,56.11587447212472],[-126.6288527114681,56.11585390355624],[-126.62879113038564,56.11584412692422],[-126.62878746010354,56.11586654689684],[-126.62878111849069,56.115911381907964],[-126.62873750724789,56.1159552809115],[-126.6286835394983,56.11598130957306],[-126.62864828390482,56.11598036359215],[-126.62853113382421,56.11602350557575],[-126.6283785154885,56.11611498650146],[-126.62828899149295,56.11618487410156],[-126.62822128221578,56.11623337223223],[-126.62813844140057,56.11628082490008],[-126.62807354648794,56.116315867957994],[-126.62804561766495,56.116332807135265],[-126.62801863418929,56.11634638136587],[-126.6279836641555,56.116363355266465],[-126.62793962274615,56.11638037390492],[-126.6278706832478,56.11641543681009],[-126.62780159898317,56.116440419561386],[-126.62775244274049,56.11645298299034],[-126.62771617165672,56.11645204175683],[-126.62761974638525,56.116468198487105],[-126.627403884654,56.11650958587969],[-126.62718820264442,56.11656329303365],[-126.62703579311443,56.11660548725523],[-126.62688835516592,56.11664317644194],[-126.62667894575283,56.11671141303798],[-126.62641426326556,56.11678664183818],[-126.62623169417877,56.1168323437729],[-126.62611131206911,56.116862058310595],[-126.62595681489859,56.11689978113259],[-126.62584030030517,56.11691939556593],[-126.62570371587094,56.11694358890866],[-126.6254346636646,56.116997555388345],[-126.62511493509827,56.117094333655736],[-126.62488673207412,56.11718394132376],[-126.62474381748393,56.11725408848301],[-126.6246069430662,56.11732308575306],[-126.62452805275635,56.11736603630607],[-126.62450028157723,56.11739305475724],[-126.62444263615154,56.11744150149667],[-126.62438181757297,56.117479882943634],[-126.62434786173277,56.11749797095782],[-126.6243048164874,56.117514983446384],[-126.62420881345359,56.11755801772217],[-126.62408466569208,56.11760455018049],[-126.62395247886883,56.117652242011616],[-126.62381243043143,56.11771229324291],[-126.62369648022286,56.11776774588864],[-126.62359350544997,56.11781529422351],[-126.62344222814086,56.11786643931143],[-126.62325216147691,56.11794801661911],[-126.62307750958324,56.11804855976519],[-126.62288914921616,56.118174931868545],[-126.6227070057036,56.11831135411485],[-126.62260192017146,56.118417156770946],[-126.62252079162757,56.118509401086584],[-126.62242959180705,56.11860169459308],[-126.62231140449673,56.118707561070075],[-126.62219323266417,56.11881342736267],[-126.6221465107063,56.11885285893682],[-126.62209087444074,56.11890129479411],[-126.62196564367618,56.119007195370784],[-126.62186811567943,56.11908159791588],[-126.62183162176636,56.1191299401536],[-126.62183361163169,56.11919265561737],[-126.62186174930228,56.11925188308352],[-126.62190728296031,56.119328947048444],[-126.6219582867128,56.11943398659354],[-126.6219828741288,56.11952347388795],[-126.62198116076091,56.11954252383521],[-126.62197637459668,56.11962207380373],[-126.62198082139314,56.11971277959449],[-126.62204607343034,56.119762864961544],[-126.62216230738181,56.11978805911645],[-126.62225139428334,56.11981674613373],[-126.62228190891223,56.11983563856351],[-126.62230427806215,56.11984897033785],[-126.62233579180648,56.11986785787141],[-126.62237120851447,56.119877765573925],[-126.62243120512036,56.11991443532675],[-126.6225108589262,56.11998349163246],[-126.62258700366704,56.120021202447134],[-126.62265657588452,56.120026462664754],[-126.6227173755418,56.12004968724281],[-126.6227876904921,56.120100867572205],[-126.62286282053925,56.1201385831897],[-126.62296714943936,56.120176155889915],[-126.62311828365573,56.12024262185145],[-126.62322613906333,56.12031153969323],[-126.62327405151613,56.12034826821656],[-126.62332061025889,56.120362601485056],[-126.62337401418621,56.120363460100805],[-126.62343749108727,56.120365389461114],[-126.62352831062378,56.12037614562464],[-126.62367403014635,56.12041911549873],[-126.62385652171058,56.12049438773103],[-126.62398107924786,56.120600186188305],[-126.62405864716476,56.12072749664891],[-126.62413743234428,56.120805516986145],[-126.62422853728108,56.12083419275599],[-126.62430525806012,56.12084501750022],[-126.6243596617531,56.12084587080334],[-126.62440716561528,56.1208557186726],[-126.62444256761914,56.1208656258816],[-126.62454000014147,56.12091219189406],[-126.62472803719572,56.12101879833093],[-126.62495213560773,56.121176751804434],[-126.62512489821586,56.12133719716193],[-126.62519347112247,56.121405186176524],[-126.6252017596814,56.12141970669602],[-126.62519808683497,56.121442126611456],[-126.62517380698144,56.1214993706316],[-126.625145674609,56.12156671441084],[-126.62513825766725,56.12160707421423],[-126.62514809680498,56.121656310040414],[-126.62515750610177,56.121741390988184],[-126.62516866294328,56.12180966194517],[-126.62518167406247,56.121867842950465],[-126.62521167174783,56.1219808251567],[-126.62525772831621,56.1221530934932],[-126.62530052436395,56.122310816612895],[-126.62532346436107,56.12242383347714],[-126.62534194698117,56.122508869874544],[-126.62537850742041,56.12259157728815],[-126.6254652116682,56.12272332252866],[-126.62556623088253,56.12286843852134],[-126.62564042266895,56.122973362867064],[-126.62569072722795,56.123032480683555],[-126.62572181577983,56.12308721254257],[-126.62575096123321,56.1231464343244],[-126.62576714748101,56.123214680553346],[-126.62576541601457,56.123295335889516],[-126.62577511195381,56.123398336961074],[-126.62580259945247,56.123479968786214],[-126.62581921351686,56.12351124978257],[-126.6258174127895,56.12352469977269],[-126.6258182854088,56.123579580135605],[-126.62581883729106,56.12367814578054],[-126.62582796357805,56.12374530662287],[-126.62584078040913,56.12379116752008],[-126.62585897983098,56.12385828376511],[-126.6258698356143,56.1239713600078],[-126.6258611169065,56.12405653009564],[-126.62580310532628,56.124145302757405],[-126.6256856226481,56.12429597289317],[-126.62555014949703,56.12445457198039],[-126.62543901175535,56.124560406911115],[-126.62534363341594,56.12464376244003],[-126.62524925386059,56.12472711299339],[-126.62516195049112,56.12481154882952],[-126.62507880026548,56.12490380488553],[-126.62496197216528,56.12503206924905],[-126.62483909976062,56.1251603631695],[-126.62475480660723,56.125243663863316],[-126.6246723870664,56.1253191146416],[-126.62458413526372,56.125406915027206],[-126.62450183945771,56.1254902057583],[-126.6244225198556,56.12557012155505],[-126.62437192129839,56.12561853379221],[-126.62433713854543,56.12564894693037],[-126.62428438311278,56.12568840894408],[-126.6242097356996,56.12574589978985],[-126.62409313613799,56.12582487804103],[-126.62394758338337,56.12592079950187],[-126.62382829019091,56.12602107252814],[-126.62373313565536,56.126118987009896],[-126.62368287440768,56.12618979923794],[-126.62366659282469,56.12624252348677],[-126.62362052017231,56.126323396038515],[-126.62355248053943,56.126415577109505],[-126.62349474580232,56.12652338902878],[-126.62347549925104,56.12664333352955],[-126.62346691271495,56.12680130909979],[-126.62346292147578,56.12699398515591],[-126.62346546837942,56.127027575567055],[-126.62304240020434,56.12702964634746],[-126.60271189982407,56.127127500497686],[-126.60000042709856,56.13250555630207],[-126.59186445852556,56.14863270844461],[-126.59185857988156,56.148643936763506],[-126.60000012152531,56.153168033674326],[-126.60091615490299,56.15367672452053],[-126.60743870723385,56.16492751996414],[-126.60302344126039,56.17244314929009],[-126.60000015574035,56.173455435018724],[-126.56428289118715,56.18541106212802],[-126.56424558568776,56.18548291445319],[-126.56411938416309,56.18568733343193],[-126.56398056109221,56.18585596448657],[-126.56389492759287,56.185934751125785],[-126.56367510737745,56.186083577951095],[-126.56330944664234,56.18626441188712],[-126.56295272168428,56.186293989996166],[-126.56262237015214,56.186333531771695],[-126.56256293727144,56.186339394539],[-126.56240620262712,56.186526024714915],[-126.562352991632,56.186614748347445],[-126.56240601442123,56.186794852812234],[-126.56252514073336,56.18694106228529],[-126.56251697622352,56.18707551195323],[-126.56248293178287,56.187093583940396],[-126.56209651731984,56.187094167619485],[-126.56183339907243,56.18717933563144],[-126.56181386251114,56.1872242262523],[-126.56185074188942,56.18740440210225],[-126.56187487462617,56.18753982955958],[-126.5617756136612,56.18758283118759],[-126.56175856697187,56.18759074707734],[-126.56166257278181,56.1875799687579],[-126.56136093907169,56.18751184981581],[-126.56116314467705,56.18757992716591],[-126.56101707523693,56.18759513131873],[-126.56100002838947,56.187603047107075],[-126.56098225256424,56.187630008035484],[-126.56099512647693,56.18768371686956],[-126.56120875516122,56.18787655664856],[-126.56131350004483,56.18800490877227],[-126.5613213452376,56.18813032702079],[-126.56126549485498,56.18824706470679],[-126.56106771273643,56.188315141857636],[-126.56089034106311,56.188329363454194],[-126.56086989780371,56.18838209873063],[-126.5609142152494,56.18844687044029],[-126.56117879723824,56.18860476268286],[-126.56144325332735,56.188753694034624],[-126.56177643665144,56.188840715831624],[-126.56193113444093,56.18893412391237],[-126.56196638259264,56.18914118979911],[-126.5620542302699,56.18928641758099],[-126.56183538517435,56.18943523702113],[-126.56173183530416,56.189532023030175],[-126.56178500330314,56.18972220835979],[-126.56205186321067,56.18982632337063],[-126.56237544667482,56.18980585495011],[-126.5625555867096,56.18977257714015],[-126.56290883736442,56.18977997937367],[-126.56309029741843,56.189980799039404],[-126.5628085137939,56.190101895179936],[-126.56276968057303,56.190208477488504],[-126.56262108031152,56.19025953830875],[-126.56226606397009,56.190270064885496],[-126.5619212890491,56.190362313757575],[-126.56185595650925,56.19037940332292],[-126.56148466784973,56.190381038484404],[-126.5612927778931,56.190368441765926],[-126.56104193131459,56.190255293773525],[-126.56089496278277,56.190279462633995],[-126.56096163578535,56.190496471717964],[-126.56102458984284,56.190524197680894],[-126.56105362382205,56.19057895560205],[-126.56104031142524,56.19077727455864],[-126.56101182455971,56.19097342004823],[-126.56099417514862,56.191009341374325],[-126.56061294641233,56.191163353381945],[-126.56052907283876,56.191225328378444],[-126.56052656533475,56.19126118309192],[-126.56058863111802,56.191297874109885],[-126.56092261131487,56.191368093076264],[-126.56105015634868,56.19139665506758],[-126.56135020145527,56.191492784860685],[-126.56151941837611,56.19161301245184],[-126.56144742023059,56.191728701335826],[-126.56121239963497,56.191876470870206],[-126.56107755557039,56.19197227398913],[-126.5609369351187,56.19215883175462],[-126.56088018887468,56.1922834141791],[-126.5610384222581,56.192340964261085],[-126.56140884042743,56.19234829523869],[-126.56160086816388,56.19236985215686],[-126.56159836156488,56.192405706907564],[-126.56149567615155,56.192493528066564],[-126.56113083483294,56.19266539137079],[-126.56079108323688,56.19268592764041],[-126.56040199421373,56.192714520605065],[-126.56004355770632,56.192769860573456],[-126.55973358408124,56.19282722709025],[-126.5593615102597,56.1928467812717],[-126.55906693312414,56.19292200049416],[-126.55875027059624,56.193076844022436],[-126.55871143935377,56.19318454526702],[-126.55878979400259,56.19323124688428],[-126.55888152896947,56.193295811683264],[-126.55923593928695,56.19331105996782],[-126.55940930153197,56.193368545766994],[-126.55948414783954,56.19345110607368],[-126.55946649591881,56.193487027223625],[-126.55911766926341,56.193650973695966],[-126.55901422907628,56.193756718031835],[-126.55901717725719,56.19396392664062],[-126.55921628921335,56.19412883105344],[-126.55924281447173,56.19421944419459],[-126.55884300515723,56.1944183370709],[-126.55881780826286,56.194561822395315],[-126.55880088539185,56.19457869828654],[-126.55859728561688,56.19473752655815],[-126.558576979482,56.194799221906116],[-126.55870987848688,56.19499129992511],[-126.55884352508433,56.19516433256255],[-126.55894589994183,56.195337502117056],[-126.55914338299324,56.195529296711996],[-126.5592447429773,56.19570247051055],[-126.55937852192773,56.19588446301562],[-126.55939761752566,56.19609160098561],[-126.55948548719893,56.1962379509844],[-126.55973457253171,56.19636791194685],[-126.55973828655134,56.19655719552796],[-126.5596891998,56.196583173626806],[-126.5593485239746,56.19661267093033],[-126.55914729766585,56.19672556493892],[-126.5591569008292,56.19683305414153],[-126.55933915226264,56.19701707452822],[-126.55931141443018,56.19719529489564],[-126.55929985410035,56.19737568457271],[-126.55927225934073,56.19756398539045],[-126.55925357223869,56.1975987909812],[-126.55921964472539,56.19762582255806],[-126.55914270586575,56.197821060387064],[-126.55904785665984,56.19803541868703],[-126.55877975075077,56.19820125079178],[-126.55859566198916,56.19831406888687],[-126.55846153576265,56.19839194432355],[-126.55815076901008,56.198467232282894],[-126.55788666015805,56.19856023732777],[-126.5577049825456,56.19862935897442],[-126.55768216217494,56.19872802915909],[-126.55787018316536,56.19882129697233],[-126.55788469305948,56.19884811635833],[-126.55786691000809,56.198875076972755],[-126.55761808626426,56.198978095681596],[-126.55760028707321,56.19900393621118],[-126.5576462478505,56.19904181933038],[-126.5576938133772,56.19905169245483],[-126.55804814787496,56.19905798368253],[-126.55836779060391,56.19910923052811],[-126.55842988269144,56.19914704276001],[-126.5584095740144,56.199208738189526],[-126.55832555243894,56.19926175154296],[-126.55814547670353,56.19930286384679],[-126.55781273961999,56.199466736480524],[-126.5576998079418,56.19947395096749],[-126.55749398478886,56.19940652339771],[-126.55723655920963,56.1994020475668],[-126.55715340991371,56.19944497526553],[-126.55713222479552,56.19951675538551],[-126.55731269919113,56.199717588419716],[-126.55732155094697,56.19984412317276],[-126.55720520096239,56.19989503678627],[-126.55704381133988,56.19990134222225],[-126.55697593336795,56.199954284191676],[-126.55697416908802,56.19997221379633],[-126.55697860283462,56.200000197409224],[-126.55698410148798,56.20003153672935],[-126.55699791011503,56.20022301677258],[-126.55686635367839,56.20923944478546],[-126.55688375610328,56.209541802062176],[-126.56469190794182,56.22145811811559],[-126.56508409975598,56.221625521922],[-126.56530953403644,56.2217835820708],[-126.56537628831153,56.22186057534762],[-126.56547241422595,56.221944159249546],[-126.56561973800008,56.222076801927706],[-126.56589684326873,56.2223164015938],[-126.56621177351016,56.222587196554706],[-126.56635083017322,56.22270643355489],[-126.56647500778271,56.22284365853413],[-126.56678014034257,56.22320522624379],[-126.56709343770396,56.22357123755064],[-126.56725570313411,56.22375869850814],[-126.56733768436936,56.2238412238367],[-126.56745902581149,56.22399190213137],[-126.56758153406501,56.224223224575965],[-126.56761991130551,56.22436307031841],[-126.56761328798825,56.22439446344522],[-126.56765712277344,56.22442227179273],[-126.56777641263933,56.224501270555194],[-126.56790082494592,56.2245847269462],[-126.56795892719543,56.22462143276748],[-126.56799575050384,56.22465375272644],[-126.56804892542847,56.22469944148534],[-126.56811436417877,56.224755156824386],[-126.56818597551089,56.22481868557652],[-126.56825039675356,56.224874405379396],[-126.56830539735535,56.2249066443323],[-126.56837361491577,56.22494442506934],[-126.5684774279043,56.22499996935634],[-126.56859040265986,56.225061073409826],[-126.56865684446461,56.22511566388528],[-126.56870315482581,56.225175944679506],[-126.5687382029986,56.22522507432135],[-126.56878323599157,56.2252663185417],[-126.56885353922155,56.225308570266286],[-126.56894706071697,56.22535071846792],[-126.56912400594412,56.22543505969226],[-126.56936700572345,56.225548229493334],[-126.5695684489437,56.22565038295508],[-126.5697160544344,56.225730373762964],[-126.56983488094316,56.22577688891609],[-126.56988870349086,56.22579681101535],[-126.56988277448879,56.22580579854232],[-126.56988025716133,56.225841654009834],[-126.56990559915431,56.225917709858535],[-126.56994819809475,56.22599928931615],[-126.56997303620513,56.226040623306616],[-126.57001800637852,56.2260773868664],[-126.5701077517898,56.22613747322384],[-126.57017117614693,56.22619319656139],[-126.57020125104181,56.22624794870994],[-126.5702224243293,56.22631506207392],[-126.57023527476117,56.2263654106294],[-126.57032265053344,56.22647031273268],[-126.5704928920942,56.226648773221974],[-126.57058921970251,56.2267446740922],[-126.57059742890277,56.22675359845922],[-126.57060969386939,56.22676362482902],[-126.57064758828729,56.22680041981289],[-126.57069592331409,56.2268595707645],[-126.57063870200831,56.22695279758913],[-126.57047566304391,56.227062179187605],[-126.57043713958848,56.227191166615974],[-126.57051802647166,56.2273364224128],[-126.57055847821681,56.22740905025918],[-126.57056885383814,56.22742804614483],[-126.57079354551584,56.227531214027714],[-126.57128796185309,56.22770710351391],[-126.57190528045453,56.22786227816703],[-126.57253178281738,56.228023009345904],[-126.57287359463972,56.22819173618324],[-126.57296615378172,56.22830557441362],[-126.57311692865575,56.22839450829633],[-126.57332028520277,56.22848768640499],[-126.5734127681482,56.22852647570781],[-126.57345442840462,56.228544210713224],[-126.5735784728174,56.22860078025868],[-126.57373706764639,56.22867175615182],[-126.57388474211518,56.22875510241921],[-126.57401941115211,56.22884746807381],[-126.57407450395804,56.22888530489524],[-126.57401945774535,56.22892027657993],[-126.5739136829018,56.22900812261372],[-126.57386005786732,56.22920886769893],[-126.57386231163436,56.22950121261529],[-126.57386232215335,56.22964010923133],[-126.57386158227635,56.22965803470787],[-126.57397324940251,56.229696737400175],[-126.574343348373,56.22972643664432],[-126.57475359979254,56.22973915203326],[-126.5750572729413,56.2297848301399],[-126.57538383880168,56.22987632987375],[-126.57559067338626,56.22993028408805],[-126.57569915721332,56.22995891842551],[-126.57584928738466,56.23000304671134],[-126.57592937757927,56.230022847849305],[-126.57594768821988,56.230031726321236],[-126.57596189331427,56.2300361427739],[-126.57601974847071,56.23005604416943],[-126.57625230225132,56.23014124505381],[-126.57664622223267,56.23027948322598],[-126.57690927541282,56.23037910692338],[-126.57696752636738,56.230424769217],[-126.57696749611458,56.23049197746488],[-126.576967320062,56.23061743340653],[-126.57696841168564,56.2308291340464],[-126.57703309073963,56.2310371869071],[-126.57720515274482,56.231130500475146],[-126.57752508164036,56.23118169998065],[-126.57808437398671,56.23130014333318],[-126.57862097637576,56.23145453144283],[-126.57888486229459,56.23154070577048],[-126.57906580399944,56.23168774314497],[-126.57925986517223,56.23197025722648],[-126.57940463847785,56.232198108072126],[-126.57952585362942,56.232335334672534],[-126.57968270949007,56.23249144166896],[-126.57982412692856,56.232628576282146],[-126.57987537256919,56.232678749682705],[-126.57989154946438,56.2326797963436],[-126.57998934798965,56.23266815073168],[-126.58026995991825,56.23272288247896],[-126.58065912685767,56.232879052388284],[-126.58097449664984,56.23296162793848],[-126.58131227134878,56.23305754235062],[-126.58167792922308,56.233330310505295],[-126.58185437883579,56.23351320897738],[-126.58188112148895,56.23354557107855],[-126.58189641306737,56.23355446248334],[-126.58198686356708,56.23359213487383],[-126.58213053387604,56.233675490186954],[-126.58248127807974,56.23369181268453],[-126.5831922212725,56.23361127772175],[-126.5838920429925,56.233530789652086],[-126.58441664970404,56.2334197360408],[-126.58481610907269,56.23324764601145],[-126.58508354274508,56.23309520216763],[-126.5854629953679,56.23286943519669],[-126.58593714961202,56.232559222206795],[-126.58622115091565,56.2323674951393],[-126.58629221744333,56.232323483450486],[-126.58631720869744,56.23230656662306],[-126.58637420179302,56.23226710006846],[-126.58640019433278,56.232249058488726],[-126.58653436693561,56.23223836091357],[-126.58681693518831,56.23222138051474],[-126.58701227704209,56.23224736579605],[-126.58712086266236,56.232348798982706],[-126.58722019981953,56.232440193385685],[-126.587313690988,56.23247784801129],[-126.58743117129558,56.232498590132],[-126.58749596321246,56.23250837323529],[-126.58753733166976,56.23250482245239],[-126.58755888602482,56.23252824614546],[-126.58762327973814,56.23257835596861],[-126.58786510672509,56.232673574527944],[-126.58823059412337,56.23279734652762],[-126.58851917063389,56.232911390811445],[-126.58863535510031,56.23298030373783],[-126.5887381555589,56.23309968448752],[-126.58891275140165,56.233291542986265],[-126.58912022777817,56.233385797535696],[-126.58940003408388,56.23338674639972],[-126.5896481915462,56.23343152621171],[-126.58981073220257,56.233560711466104],[-126.58992256891636,56.233675569015915],[-126.58998803684105,56.23373015328281],[-126.59006038199003,56.23377238421183],[-126.5901346961936,56.23381012544628],[-126.59016411428189,56.23381895057479],[-126.590205888096,56.233842280380046],[-126.59039583770517,56.233913091016696],[-126.59065006997939,56.234026169274884],[-126.59076250785161,56.23411414001924],[-126.5907966739341,56.23416886872156],[-126.59086927368385,56.23422790011052],[-126.59098064318441,56.23431139506416],[-126.59111126377883,56.23439928135458],[-126.59118671712994,56.23444597783359],[-126.5911999748738,56.234454877556],[-126.59122032804005,56.23446486456001],[-126.59138710963445,56.234539141459095],[-126.59166925954314,56.2348279502692],[-126.59186107564125,56.23522247038242],[-126.59198093167633,56.23540001689025],[-126.59207509854443,56.235415262207],[-126.59232019501128,56.235523899082864],[-126.59271631016045,56.235733767239346],[-126.59292852582287,56.23587279938651],[-126.59302856513101,56.2359417834496],[-126.59318420255279,56.23601274943135],[-126.59332734750164,56.236060250342135],[-126.5934077298272,56.236097961543535],[-126.59342711702388,56.23611131311827],[-126.5935602454477,56.23616334088625],[-126.59377751038036,56.23623513979542],[-126.59389116828446,56.236269335528526],[-126.59400333166604,56.23633826245835],[-126.59425436360785,56.2365051153927],[-126.59450108573417,56.23665406567628],[-126.59463932784028,56.23671054909782],[-126.59468197366458,56.236724912308766],[-126.59470297452616,56.23671137281169],[-126.59476731691745,56.23669091058579],[-126.59483366251133,56.23666931885466],[-126.59485785452584,56.23666584572905],[-126.5948850680073,56.236661238381245],[-126.59490662903008,56.23668466087371],[-126.59492698397543,56.236760735582536],[-126.59495287394844,56.23686926857418],[-126.594987100031,56.236928476538175],[-126.5949871847128,56.2370001651381],[-126.59493949693976,56.23712024238749],[-126.59490705344422,56.23717864086349],[-126.59499260125357,56.23715807972181],[-126.59516989246848,56.23712476937117],[-126.59530766149149,56.23714989035851],[-126.59540173237667,56.23722450116308],[-126.59549115188481,56.2373248968329],[-126.59560758429407,56.237475572782316],[-126.59572496781963,56.23762176363779],[-126.59582233422208,56.237713160895616],[-126.59589834375794,56.23779569662762],[-126.59599448864874,56.23787365777211],[-126.59614324707539,56.23795697392502],[-126.59627760866293,56.23802355502367],[-126.59645648579382,56.238094408616696],[-126.59676203712657,56.23825764173731],[-126.59706409561359,56.238456735009784],[-126.59727671278208,56.238554313110484],[-126.5974704308238,56.23860381320731],[-126.59763097611483,56.23866466969402],[-126.59771250647267,56.23871133403057],[-126.59786031619568,56.238731924746396],[-126.59810595142278,56.238741975835175],[-126.59828097600425,56.2387579580203],[-126.59841505362087,56.23880549584063],[-126.5986011551034,56.2388863939074],[-126.59879540623574,56.23897061391832],[-126.59890394906964,56.23900034870408],[-126.59892415271274,56.23900025394216],[-126.59894442473174,56.239004639424444],[-126.59909629403516,56.239026329820526],[-126.59938660905017,56.2391168190539],[-126.59959677780705,56.239251369547524],[-126.59969515937857,56.239342759207936],[-126.59978896996861,56.239399445857],[-126.5998480576017,56.23943165242771],[-126.59986435765549,56.23944053699418],[-126.59988580237145,56.23945499810135],[-126.59993067895432,56.239482790826955],[-126.5999601719901,56.23949609396657],[-126.6000005969059,56.23949702416722],[-126.60011319905415,56.239526738868776],[-126.6003151793517,56.23958851744613],[-126.6005872241105,56.239738457450535],[-126.60081823230809,56.23998044168487],[-126.60084773880578,56.240192009832256],[-126.60078580105271,56.24030319539597],[-126.60078156494927,56.240356982183876],[-126.60082678616432,56.240407175849484],[-126.60090657791349,56.24047176868269],[-126.60107707686896,56.240587461112405],[-126.60129243964067,56.240730945657475],[-126.60144636520079,56.240819832219394],[-126.60162821833278,56.24088618416342],[-126.6018737876943,56.241021684442096],[-126.60195886038545,56.24116690208215],[-126.6019548319671,56.24123412967763],[-126.60205752720101,56.24127621099436],[-126.6022712763352,56.24137937640358],[-126.60245665373918,56.241477074601676],[-126.6025632545806,56.241511296089925],[-126.60265441756479,56.2415265479053],[-126.60272658324013,56.24155421090344],[-126.60274694302149,56.241564196099134],[-126.6027654027465,56.24158203126634],[-126.60280686219888,56.24165016433094],[-126.60282832323458,56.24173183351774],[-126.60282980717469,56.24176319053904],[-126.60291490932853,56.24177847078434],[-126.60308877236494,56.24184933900663],[-126.60319203600318,56.24199446999324],[-126.60324749653505,56.242184632496986],[-126.60333257683072,56.242329849291636],[-126.6033988528618,56.24243482970245],[-126.60344134774705,56.2425701663571],[-126.60346443288512,56.2426921529976],[-126.60346689811718,56.24278623347321],[-126.60347685787538,56.24290828214711],[-126.60349179213783,56.24302582674066],[-126.60351822873861,56.243101871632504],[-126.603580778492,56.24316206381811],[-126.60368684792559,56.24322653083433],[-126.60380405623675,56.243292065244965],[-126.60389663974341,56.24333419296245],[-126.60393627335583,56.24334856741598],[-126.60395870668046,56.243361903059764],[-126.60401296827399,56.24340869250557],[-126.60409095769145,56.2434867337447],[-126.60414319793924,56.243532412555986],[-126.60418404100464,56.24356022295153],[-126.60423592035318,56.243583500537746],[-126.60428990552252,56.24361124871836],[-126.60440414600934,56.243681277221924],[-126.60454607116623,56.243778058053415],[-126.6045984503914,56.24383269719056],[-126.60463114260567,56.243856065457564],[-126.60468397196028,56.24387485778971],[-126.604781427519,56.243904640222176],[-126.60499326449091,56.243948442652766],[-126.60523112702386,56.243975319219366],[-126.6053797035489,56.24397909557685],[-126.60551608613333,56.24397732885302],[-126.60563930931332,56.243974504246445],[-126.60568789060697,56.243979874570634],[-126.60570528254513,56.243994353970926],[-126.60586980095798,56.244113429110705],[-126.60626619788182,56.24439606484601],[-126.60660406875596,56.244618489551286],[-126.60673431060556,56.24474220702142],[-126.60681643955428,56.24489191634119],[-126.60689101979874,56.245010297408115],[-126.60704846561381,56.245129404726335],[-126.60727010937822,56.24528293114053],[-126.60736911011138,56.24534742882275],[-126.6074506659343,56.24539408707016],[-126.60760847921493,56.24553671505475],[-126.60767465448299,56.24569882140555],[-126.6076696331197,56.24576605407623],[-126.60771865059417,56.24579942522682],[-126.60782956945371,56.24585042410626],[-126.6079324218975,56.24590146128936],[-126.60798446276048,56.24593481794989],[-126.60804112967976,56.24594014890407],[-126.6081457950397,56.245977735530566],[-126.6082686878202,56.246083564199886],[-126.60839374093057,56.246198343640515],[-126.60848062140472,56.24626289824222],[-126.6085040937612,56.24627734831525],[-126.60852349112368,56.24629069765373],[-126.60862372339481,56.24636863030518],[-126.60877311430781,56.24648889414738],[-126.60885185969184,56.246549006699894],[-126.6088927092344,56.246576815624145],[-126.60897116067555,56.24661900715806],[-126.60905128410533,56.24663766758645],[-126.60918331137785,56.24668072363514],[-126.60938094258664,56.24678395448322],[-126.60948224971389,56.246866361950644],[-126.60948180415627,56.24690220878371],[-126.60948301523666,56.246915644769444],[-126.60949039178635,56.24693465206801],[-126.60951250654519,56.24699279418032],[-126.60954510681906,56.24707440933827],[-126.60960202745095,56.24716150914697],[-126.60967922457782,56.24725187258512],[-126.60971731465519,56.24729761678973],[-126.60970539877913,56.24731111544282],[-126.60967666233985,56.247347097337546],[-126.60961525336236,56.24742692092765],[-126.60959435535544,56.24757824057286],[-126.60968238830492,56.24771559850399],[-126.60975079102793,56.24776119800482],[-126.60978402067124,56.247753198324105],[-126.60989868465892,56.2477190463921],[-126.61004758029311,56.24767688982157],[-126.61018996952187,56.247671729030706],[-126.6103311032526,56.247714740426545],[-126.61040745057808,56.2477513404332],[-126.61041266751816,56.247761396828366],[-126.61044353734137,56.24779709401152],[-126.61047431235879,56.24789215946811],[-126.61038726072947,56.248012431333564],[-126.61033073011909,56.2481459990707],[-126.61041201698107,56.2483046715962],[-126.61041547505482,56.248461475777006],[-126.61038623478505,56.24859603327836],[-126.61046045786411,56.248754739565996],[-126.61055381945422,56.24890999389275],[-126.61059962082143,56.24899602635151],[-126.61060898558202,56.24901390395309],[-126.61060529245252,56.24903632457368],[-126.61058661757264,56.24913498689859],[-126.61060447547194,56.249243555913495],[-126.61070308942706,56.24928116947926],[-126.61079367358015,56.249323301963926],[-126.61085752452341,56.249400286845606],[-126.61092954652422,56.249482833358094],[-126.61096663785702,56.24952858202705],[-126.61099773632948,56.24957883994902],[-126.61104650912378,56.24966037747097],[-126.61106829627438,56.249697238141756],[-126.61106597077732,56.2497420552125],[-126.61108221059935,56.249876395356885],[-126.61111593437205,56.25003081453306],[-126.61112729517308,56.25011141088939],[-126.61110650215986,56.25013839394673],[-126.61113681618298,56.25013824890603],[-126.6112231515139,56.25016695965583],[-126.61131396386197,56.25022253249419],[-126.61142735722235,56.25030152030528],[-126.61159056914977,56.25039931201957],[-126.61170287386949,56.250472704064336],[-126.61180994257454,56.25053379945476],[-126.61196389678099,56.250621553711774],[-126.61204762977823,56.25067715996705],[-126.61214132803227,56.25072375721755],[-126.61234093843309,56.250822493711254],[-126.61250798691765,56.250906824110515],[-126.61255383416069,56.25093012738491],[-126.61258646707243,56.25094901342204],[-126.6126943834332,56.25100002268568],[-126.61283182366604,56.25106545215515],[-126.61294879068441,56.25111305733653],[-126.61304040005587,56.25115518337193],[-126.61316571546858,56.25122067068425],[-126.61333601711937,56.25131842621067],[-126.6134513511494,56.25139180222831],[-126.61348918557778,56.25141962425897],[-126.61353111595862,56.25145190720398],[-126.61360886000723,56.251512021840064],[-126.61367953884975,56.25157217037621],[-126.61371879654511,56.2516268691015],[-126.61378951216498,56.2516903778545],[-126.61395333367824,56.25176128013363],[-126.61412205998994,56.251823197425544],[-126.61420254856837,56.25186537612114],[-126.61425602461443,56.251924486923286],[-126.61432178484436,56.25199361997694],[-126.61436176428012,56.252029272496664],[-126.6143720272985,56.25203930448511],[-126.61434875980693,56.252038296245495],[-126.61418324264807,56.25211638257785],[-126.61391477244452,56.252267773314856],[-126.61378282046502,56.25236025975408],[-126.61381464684116,56.25239259117585],[-126.61384617183896,56.252469730049796],[-126.61375419848157,56.25259786914436],[-126.61354551194042,56.252760173346815],[-126.61329963442724,56.252934977437185],[-126.6130306603198,56.253118853107544],[-126.61280159958801,56.25327117252528],[-126.6126946335667,56.25334561557223],[-126.61264269717051,56.2533850699457],[-126.61255167334782,56.253445994605094],[-126.61238157536685,56.25355546478639],[-126.61211823662613,56.25371242791042],[-126.61188593564118,56.2538513194095],[-126.61176777213562,56.25392133471675],[-126.61163572221867,56.2540082186666],[-126.6113787738245,56.25418755268402],[-126.61113389637174,56.25436234783437],[-126.61103182945034,56.254427804848646],[-126.61096256247146,56.25445838023312],[-126.6108188425841,56.25450947432894],[-126.6106381934611,56.25459098887298],[-126.61045616730993,56.2547139553233],[-126.61026443488609,56.25486273135674],[-126.61004958862645,56.25502057869762],[-126.60986370779162,56.255155884376975],[-126.60977397279171,56.25523472332524],[-126.60973041171005,56.25529317910812],[-126.60968118726348,56.25537742538143],[-126.60964092688042,56.25545266764925],[-126.60962624709997,56.25548410193716],[-126.60958643206278,56.25552349722813],[-126.609477711014,56.25561586838643],[-126.60933164095017,56.255711778064445],[-126.60922248513539,56.255777267452196],[-126.60914431824298,56.25582020595702],[-126.60905115654627,56.25587329726685],[-126.60892683125559,56.255937738573415],[-126.6087542739593,56.256020332031376],[-126.60856364638411,56.256110852400276],[-126.60844220434332,56.25616631828847],[-126.6083920032443,56.256187840256196],[-126.6083618929807,56.25620142546865],[-126.60833689601174,56.25621834677801],[-126.60828728049007,56.256212982285],[-126.60804324761212,56.25624886875016],[-126.60743311882824,56.25646572025567],[-126.60664043431164,56.25677416813102],[-126.60603393418361,56.25696523221401],[-126.6057229688604,56.25705295869384],[-126.60559339900055,56.25710509994673],[-126.60551285840374,56.257125644447676],[-126.60545139094789,56.25713825744488],[-126.6051637624001,56.25723147271022],[-126.60438215541367,56.25734158725309],[-126.60346393025814,56.257310083226585],[-126.60281307385006,56.257248187324784],[-126.60249721723505,56.257214952691086],[-126.60240783274432,56.25718625029433],[-126.60237226168012,56.25717297621521],[-126.60234083745928,56.25716752363046],[-126.60230039427834,56.25716659416387],[-126.6022417594076,56.25716575044596],[-126.60216902702788,56.25716833360582],[-126.6019392004684,56.25720862200925],[-126.60152398030553,56.2572867480594],[-126.6012311828421,56.257307168959706],[-126.60113216201803,56.257242666198074],[-126.60090068680792,56.25717542601222],[-126.60047955343036,56.25713148004758],[-126.60019640035998,56.257121609177496],[-126.60003901329746,56.257140270933256],[-126.59999970981933,56.25714829659025],[-126.5997820945837,56.25719412450232],[-126.59944194954741,56.25729093382703],[-126.59893898301313,56.25744787369446],[-126.59834953979339,56.257634340551704],[-126.59805069612614,56.25772199150003],[-126.59796719560413,56.25774814583419],[-126.59787856436863,56.257768723372486],[-126.59763816671392,56.257844898303254],[-126.59723985232236,56.25797221791666],[-126.59699133357965,56.25804730944028],[-126.59676859639647,56.258088675529116],[-126.59644608335142,56.258149549657716],[-126.59622337991593,56.25819427508659],[-126.59597448258698,56.25824360292688],[-126.59560573087657,56.25832149288234],[-126.59526940451867,56.258404831439314],[-126.59487759990319,56.258496268504814],[-126.59435988994605,56.25861629394904],[-126.59402755028746,56.25869625022365],[-126.59395603682674,56.25871226483227],[-126.5938139452965,56.258740929129495],[-126.59347538679152,56.2588108315128],[-126.59309867471238,56.25889771238566],[-126.59267767643344,56.25899711925754],[-126.59219312834473,56.25910466038207],[-126.59180596559477,56.25916918286043],[-126.5915235431988,56.259208575935524],[-126.59127839002936,56.25923995484775],[-126.59111501039337,56.25926423405344],[-126.5910284610563,56.259289277788795],[-126.59098916975296,56.25929730060596],[-126.59076908229278,56.25938232980303],[-126.59031789521299,56.25955803869148],[-126.58998828519802,56.25968613827194],[-126.58982335306384,56.25974178720061],[-126.58975392544785,56.259763390569745],[-126.58971631805454,56.259749002211244],[-126.58955277635803,56.25969598977848],[-126.58933330046929,56.259619712014185],[-126.58924285020102,56.25958652471206],[-126.58916060420404,56.259562260714986],[-126.58902848827854,56.259514703447316],[-126.58893999266292,56.259477026321626],[-126.58891957664916,56.259463678632144],[-126.58888748615398,56.25948062880888],[-126.58880357843456,56.259547104412704],[-126.5886896582059,56.25970221013157],[-126.58859886309808,56.25991545703579],[-126.58859301272257,56.260064463995434],[-126.58863047460773,56.260135981031],[-126.58874730750651,56.260377395209574],[-126.58893510891095,56.26076746224594],[-126.58902259208467,56.261006771240545],[-126.58902637972338,56.26112436963181],[-126.58903190951388,56.26129012649341],[-126.58899510574602,56.26146503974309],[-126.58869467798614,56.26158516040195],[-126.58819922333575,56.261845077115915],[-126.5879715029256,56.262231457337776],[-126.5879730524336,56.26240171322539],[-126.58797547698885,56.2624285857033],[-126.58797325929623,56.262483483332744],[-126.58797507747865,56.26267166042772],[-126.58797708448665,56.26314323506414],[-126.58815977796831,56.263731594144026],[-126.58859931126104,56.26412162340059],[-126.58894790177354,56.26424547416356],[-126.58905616998636,56.26425169598476],[-126.58906885514901,56.264288602535416],[-126.5890694512361,56.26439613443091],[-126.58907276539568,56.26461678921671],[-126.58889769578722,56.26494132035667],[-126.58854619578483,56.26523081917375],[-126.58837584526964,56.265331297320365],[-126.58837874078661,56.26538953193934],[-126.58838291340821,56.2655328923061],[-126.58839977105409,56.26571315932063],[-126.58842619984567,56.2658575373701],[-126.58844037445839,56.265925801438186],[-126.58844455241301,56.265934743423486],[-126.5884533116749,56.26597950921347],[-126.58847980244879,56.26606115840035],[-126.5886308753264,56.266157915884286],[-126.58891774397772,56.26627645046877],[-126.58908250012304,56.2663417800733],[-126.58910011391802,56.26636970270666],[-126.58907637414566,56.266404536910784],[-126.58894060246386,56.266452209209994],[-126.58885175126946,56.26652654883159],[-126.58899481413847,56.26669615281482],[-126.58911738761968,56.26698122695909],[-126.58912231081739,56.267242200108896],[-126.58912150717234,56.267390064135434],[-126.58912446180472,56.26751998837928],[-126.58907431391094,56.26781594025492],[-126.58897508210867,56.26820957181477],[-126.58891650123364,56.268414830061815],[-126.58890531186599,56.2684776102787],[-126.58887962298701,56.268585263495844],[-126.58878746978658,56.268777234563416],[-126.58866785984144,56.268958130515344],[-126.58860650875738,56.26904690534214],[-126.58858978511206,56.26907834670425],[-126.58858487289856,56.26908733056762],[-126.58860766877547,56.269124190674624],[-126.58866860193928,56.26921016191048],[-126.58872545724454,56.26929279144416],[-126.58879131930782,56.26936977868322],[-126.58890735013878,56.26948910058946],[-126.5890484621622,56.269594864929346],[-126.58918823548602,56.2696782321922],[-126.58924076320245,56.26974295899183],[-126.58921433326229,56.26980020876962],[-126.58919660689335,56.26983165484532],[-126.58924399693667,56.269823595250685],[-126.58935976240427,56.26978945674436],[-126.58946050647823,56.26976546881979],[-126.58949474495506,56.26975634964074],[-126.58956446050092,56.26975378771296],[-126.58974258586073,56.269698078194125],[-126.5899134997931,56.26956735132212],[-126.59000308843841,56.26947396484783],[-126.59008023320575,56.26942656213191],[-126.59015958581857,56.26939259103403],[-126.59029064921361,56.26943455157644],[-126.59052704894178,56.26955667643083],[-126.59080954991822,56.26965170400231],[-126.59106273202379,56.269679657250315],[-126.59119918845535,56.26967790587167],[-126.59124268528342,56.269678824787825],[-126.5913609272941,56.26967603735244],[-126.5915823554174,56.26967613263016],[-126.59186774272607,56.269627764624616],[-126.59222291130988,56.26958019276106],[-126.59253596937563,56.26962242761156],[-126.59274283402313,56.26966291400369],[-126.5929207652248,56.269662088556835],[-126.59313016401426,56.26967007805502],[-126.59329509624894,56.26967827366568],[-126.59335866083045,56.269670137445566],[-126.59338083443974,56.269665553863305],[-126.59343559646803,56.269676501124145],[-126.5936237730897,56.269684588365365],[-126.59388401047104,56.26964417376267],[-126.59406430384912,56.26959852951742],[-126.59417216417214,56.26957786524962],[-126.59433689252805,56.26957261859405],[-126.59459167400364,56.269572553526565],[-126.59484451848913,56.26957809774651],[-126.59503464888752,56.269581693191085],[-126.59521553649235,56.269576370157694],[-126.59541813869207,56.26960231005736],[-126.59564699328567,56.269691976160836],[-126.59586592722957,56.26979512999396],[-126.59602082126874,56.26987505888635],[-126.59612883626932,56.2699305628568],[-126.5962040914926,56.269959335835544],[-126.59630292908136,56.269943192485385],[-126.59643979196896,56.26990110799571],[-126.596516166302,56.26987050729177],[-126.59652411781668,56.26986150892523],[-126.59655952715353,56.26986246378544],[-126.59673348704004,56.26993334156854],[-126.59701690954887,56.270087719495976],[-126.59718645903376,56.27026615229596],[-126.5971980743815,56.27043188117105],[-126.59717753827903,56.27054399279114],[-126.5971688611199,56.27063812649122],[-126.59717267411821,56.270755725118356],[-126.5971798317963,56.27082738169701],[-126.59718739451505,56.27085871074339],[-126.59719696307758,56.270890030416176],[-126.597218696946,56.27092241339369],[-126.59724850271844,56.27095475864395],[-126.59727310805455,56.27097704678261],[-126.59731815535126,56.271013801409254],[-126.59741312562399,56.271074966099604],[-126.59758918273015,56.27115031361021],[-126.59782809314544,56.2712354482808],[-126.59796941858778,56.27128743445387],[-126.59806496639217,56.27132059204642],[-126.59820124546262,56.27137260158434],[-126.598286615143,56.27140132602869],[-126.59853774631327,56.271492002968536],[-126.59902271491602,56.271667835670634],[-126.59930250059305,56.27178077996563],[-126.59932833310418,56.27181762401601],[-126.59932456290059,56.271835564216325],[-126.59933408110705,56.27186240335743],[-126.59936234664734,56.27192611977213],[-126.59938649872316,56.271984254687915],[-126.5993991961097,56.272021160333246],[-126.59941801108815,56.27206139775699],[-126.59944924961141,56.272120619584214],[-126.59948278428402,56.27219775315706],[-126.59951793853516,56.272315204803434],[-126.59954056563913,56.27240583143013],[-126.59955222704929,56.272441621770575],[-126.59955647673623,56.27245504372683],[-126.59956167705384,56.27246398059192],[-126.59959439013667,56.27248735042889],[-126.59963916728888,56.272506183021626],[-126.59967295192827,56.27253402844266],[-126.59973149758301,56.27259312207944],[-126.59981330658579,56.27265322666712],[-126.59987657422325,56.272691015079225],[-126.59997737988434,56.27273758850097],[-126.59999970870395,56.27274308446188],[-126.60009106329021,56.27276617884932],[-126.60013470089368,56.272776055360175],[-126.60012984325552,56.27278952006719],[-126.60013560945892,56.272835419468535],[-126.60015793067521,56.27290700476329],[-126.60017326837952,56.27298422364338],[-126.60019001961382,56.27308719952362],[-126.60025236355088,56.273196682224594],[-126.60033013035323,56.27325680549174],[-126.60036459229363,56.273262244397266],[-126.60036377893415,56.27327569011732],[-126.60035537340724,56.27332053593457],[-126.60034114251326,56.27338221149136],[-126.60032296921624,56.273449506358425],[-126.6003033651485,56.273489924144265],[-126.60027470474888,56.273533744939776],[-126.60024546995672,56.273605572387495],[-126.60029518467334,56.273682629815525],[-126.60040877706368,56.27377058873488],[-126.6004779863373,56.273866597209555],[-126.60050573249477,56.27396168032249],[-126.60054020421917,56.27403320849897],[-126.60058648411639,56.2740845183231],[-126.60065702924496,56.27413459393268],[-126.60072952907214,56.27418129984119],[-126.60075679555031,56.27424502072467],[-126.60076207552204,56.27432564733951],[-126.60078368747855,56.27441627861449],[-126.6008294285487,56.274497835185855],[-126.60089743114223,56.27458040723912],[-126.60100117400057,56.27468521437823],[-126.60109855987413,56.27477212879343],[-126.60113134448687,56.27479997857315],[-126.60115085549003,56.274818929506885],[-126.60125714397005,56.274892360024566],[-126.60142461476991,56.27499910734052],[-126.60156536795381,56.27507797622206],[-126.60173479385575,56.275180233307864],[-126.60191837627305,56.27528242350721],[-126.6019908109376,56.27532464840916],[-126.6020162345476,56.27533348993367],[-126.6020712132923,56.27535787446187],[-126.60214335583973,56.27538105794451],[-126.6022644957154,56.27543313465576],[-126.60243451497848,56.27550850421832],[-126.60266684480074,56.27555781608359],[-126.60291559841062,56.275557763027365],[-126.6030108162814,56.27556851541299],[-126.60300009924968,56.2755954498099],[-126.60299525842419,56.27560891456573],[-126.60297377158027,56.275658302966924],[-126.60293603474875,56.275769376814104],[-126.60297006170269,56.275877871791955],[-126.60309837365018,56.27600160413513],[-126.60322625664946,56.2760984545441],[-126.60338368051583,56.27614251785224],[-126.6036236743756,56.276164907991046],[-126.60398320975746,56.27606911601527],[-126.60441454518033,56.27584304493115],[-126.60462399799304,56.27572107696337],[-126.60462942444006,56.275744574652755],[-126.60463146382726,56.27581177460717],[-126.60463256926914,56.27588345962225],[-126.60463191167733,56.27590586593502],[-126.60463289607529,56.27603579985316],[-126.60477160069243,56.27630846270345],[-126.6049736040781,56.27655506215495],[-126.60505240461806,56.276812326062476],[-126.60516079766774,56.27702128293447],[-126.60536131991728,56.27710658573327],[-126.605569100846,56.2771369659534],[-126.605779647913,56.27715053031457],[-126.60600179458937,56.277195403837894],[-126.606233169036,56.2771819848416],[-126.60651943698848,56.27705740901603],[-126.60675135941035,56.27694877280044],[-126.60677626859244,56.276990100502424],[-126.60666885172063,56.27717207647848],[-126.60659050591642,56.27733711199304],[-126.60665655521792,56.27742305091594],[-126.6068389671802,56.27751291803817],[-126.6070061695706,56.277600616817956],[-126.60714405780415,56.27768957479812],[-126.60735439054322,56.27781963438401],[-126.60765837365952,56.27792348472754],[-126.60800203723083,56.27791288913518],[-126.60827733502886,56.27786341233691],[-126.60837618757029,56.27784725959508],[-126.60839444598649,56.27791550254197],[-126.6084242602132,56.27807778405822],[-126.60841920626551,56.27820774687049],[-126.60842814751382,56.27826259223355],[-126.60851286809469,56.278313716362966],[-126.60866996568275,56.27840146113681],[-126.60887288909849,56.278509150350466],[-126.60920189246737,56.27859607547929],[-126.60961450558918,56.2786624381133],[-126.60985887561641,56.2787038385434],[-126.60993999845071,56.27871801356413],[-126.60996940241309,56.27872347405779],[-126.60997016917024,56.27877275753455],[-126.6099729311054,56.278884760576176],[-126.60997520635975,56.27896652156364],[-126.60997476088805,56.27900236888293],[-126.6099768793132,56.27907404916186],[-126.60998054840596,56.279114357496816],[-126.6099823183107,56.2791636361946],[-126.60998219540473,56.27928573448389],[-126.60998826181954,56.27941564438024],[-126.60998858314922,56.279500775198514],[-126.60996745151381,56.279572566445225],[-126.60992377655228,56.27962542249809],[-126.60990173864266,56.27963896960565],[-126.60992454326973,56.279674705994225],[-126.60996923788841,56.27975290410198],[-126.60999204264326,56.27978864048026],[-126.61001646905851,56.279798605374026],[-126.6100978905324,56.279831821653104],[-126.61018842133754,56.27986499439614],[-126.61022092028804,56.27987380055248],[-126.6102477179778,56.27990615733776],[-126.61032679555535,56.27998419117712],[-126.61043629655147,56.28006656033501],[-126.61063761347843,56.28020113847083],[-126.61094822538145,56.28040464407262],[-126.61117274281848,56.28053462985761],[-126.61125916129336,56.280563340873925],[-126.61135562383791,56.28058864330485],[-126.61151594329817,56.280622601492134],[-126.61162867229213,56.28065230655203],[-126.61165301228527,56.28065667073812],[-126.61177179282924,56.28068634671593],[-126.61200507431509,56.280793885861314],[-126.61212148942322,56.28093110853969],[-126.61215443321534,56.28109785514713],[-126.61222457012474,56.28131483099478],[-126.61226376202747,56.28142777981787],[-126.6122856379516,56.28146912109509],[-126.6123272960903,56.28154621285135],[-126.61236651192995,56.28159643236427],[-126.61240053958704,56.281637715411534],[-126.61244617326196,56.28171030743458],[-126.61252504884665,56.281774899012575],[-126.61264699790834,56.281812400175795],[-126.612732050773,56.28181871349508],[-126.61283843626629,56.28183052530626],[-126.61302158834906,56.2819013376019],[-126.6131377508496,56.28195678867966],[-126.61317445502034,56.281975655411145],[-126.61322943249878,56.28199891512825],[-126.61348455486873,56.282080583134324],[-126.61386266665295,56.28220086582951],[-126.61403029255501,56.28224822781448],[-126.61407718056098,56.28227152603161],[-126.6142145923415,56.28232799423592],[-126.61435383265693,56.28237101153363],[-126.61446041463145,56.28239626303744],[-126.61457811156434,56.282420340850976],[-126.61469589645667,56.28245001895714],[-126.6148025477452,56.28247863033908],[-126.61490443326484,56.282526307357465],[-126.61504812582643,56.282596186445915],[-126.6153059462691,56.28265543459726],[-126.61566167881884,56.28270188889188],[-126.61591401390491,56.28273427828808],[-126.6159748507224,56.28274406663441],[-126.61607413485794,56.282754789828076],[-126.61652750093123,56.28283549626404],[-126.61712739845312,56.28297374237257],[-126.61732229949412,56.28314754708852],[-126.61727496326559,56.28341661535869],[-126.61732678761426,56.28362471587933],[-126.61738954671014,56.28369274289026],[-126.61745334309012,56.28376188502887],[-126.6176115413357,56.28391682384377],[-126.61786225764168,56.28410155982513],[-126.61808674853405,56.284227053349035],[-126.61817128264333,56.284264730239826],[-126.61822229156766,56.28429248771655],[-126.6183437630271,56.28436247067381],[-126.6184397133458,56.284418014828105],[-126.61853777500775,56.284479149527954],[-126.61870199112788,56.284566847987335],[-126.61882641954232,56.28463233552645],[-126.61885901279986,56.28464673990753],[-126.6188740497638,56.28463770578289],[-126.61897349381675,56.28459465800726],[-126.61912716003991,56.2845255837388],[-126.61919547202763,56.28449612855663],[-126.61927481221257,56.28446101908374],[-126.61957408362463,56.28445396814963],[-126.61997608432489,56.28454723331101],[-126.62020161485745,56.28460998882915],[-126.62027842465679,56.28460625566367],[-126.62036024612827,56.284599137632505],[-126.62049047229188,56.28458394344786],[-126.62064584841777,56.28455966569856],[-126.62078389754025,56.28452651057037],[-126.62096906377954,56.28446736260056],[-126.6211984625953,56.28439119693189],[-126.62130708470389,56.28435258339626],[-126.62138258139284,56.284393662604586],[-126.62166692455563,56.28453006064421],[-126.6220938434465,56.28466352399859],[-126.6224477396159,56.284720050013945],[-126.62264011101512,56.284732555202105],[-126.62278624479013,56.28476320803526],[-126.62303172343005,56.28480793874146],[-126.62329556741156,56.28486266094018],[-126.62346334242581,56.28491897132922],[-126.62361011901626,56.28498994610808],[-126.62379259235367,56.285015939860315],[-126.62398627518095,56.28498362994991],[-126.62410941192864,56.284967346512346],[-126.62414700097999,56.28497724449986],[-126.62422951980176,56.2850149272723],[-126.6244312152557,56.28510467578429],[-126.6246369392625,56.28519328413471],[-126.6247843814171,56.28524185099029],[-126.62495404007808,56.285289188905494],[-126.62509237253798,56.28533779994473],[-126.62513203852674,56.28535104799396],[-126.62519014318498,56.28537988820351],[-126.62537875652252,56.28547305973364],[-126.62565444042148,56.28557252590158],[-126.6258921940472,56.28563969233133],[-126.6259987369728,56.285660453850134],[-126.62601701338679,56.28566484502511],[-126.62606888986413,56.28568363383357],[-126.62617571928199,56.285722316487416],[-126.62632739155192,56.28578318271974],[-126.62647822210845,56.28585413441165],[-126.62658329818328,56.28590962784282],[-126.62665780182657,56.28595182903995],[-126.62671388399326,56.28597955832032],[-126.62673634946292,56.28599289020189],[-126.6267926483946,56.28603518056995],[-126.62686049283003,56.286103178167586],[-126.62690161132709,56.28614442275802],[-126.62693023488993,56.28616332524985],[-126.62697577363097,56.28616422209007],[-126.62710550086476,56.28618038832357],[-126.62736848369757,56.28624406779139],[-126.62767881496835,56.28635792183405],[-126.6279304346613,56.28646982319038],[-126.62802585246146,56.286617216718405],[-126.63022606534581,56.28814102101144],[-126.62954901504159,56.287804945427204],[-126.62312990219831,56.28570359390723],[-126.61890549003763,56.28618114314727],[-126.6186464090053,56.28835104133789],[-126.61763280278822,56.291877752405156],[-126.61427643119895,56.29460025148995],[-126.61544189041396,56.29711279214122],[-126.6166798193442,56.30100502993454],[-126.61610769372838,56.30323021323329],[-126.61271936477135,56.303201683726755],[-126.6078679711898,56.30403135867337],[-126.60240291366127,56.30484581790109],[-126.59869036334224,56.3053292417999],[-126.59072955664922,56.307095803844916],[-126.58309822934436,56.30806280382994],[-126.57807930791861,56.30756582464652],[-126.57291773478032,56.30837764832032],[-126.56804403802988,56.31000346990276],[-126.56301208652106,56.309729990924396],[-126.55698808675517,56.30836735206771],[-126.55123500469782,56.30832058310708],[-126.54573495649097,56.31016332079904],[-126.53910370696302,56.31221670454037],[-126.53703613216226,56.31260177778267],[-126.53488722819073,56.31229713347608],[-126.52832169641918,56.31178673620591],[-126.52238897566919,56.31082535351713],[-126.5174262425113,56.31186711500025],[-126.51192077731393,56.313995177695766],[-126.50772295827494,56.31326811595135],[-126.50289582742076,56.30963096498981],[-126.50080042755972,56.30738093698798],[-126.50090223187277,56.30378705993304],[-126.49764364957332,56.30273338781211],[-126.48960692493127,56.303517153103655],[-126.47862448136573,56.30308377620494],[-126.47260102754463,56.301770948492475],[-126.46628850790155,56.29976887800508],[-126.46331857175649,56.29940330023965],[-126.45686646244967,56.298718575715164],[-126.45424604319254,56.296980471893],[-126.44874932329238,56.29521659796247],[-126.44484234941775,56.29193252806414],[-126.43959782163822,56.28874256344206],[-126.43842390298934,56.286793059047454],[-126.43624255807977,56.28419282318016],[-126.4337089263368,56.28309026123461],[-126.43082094383358,56.28009804438405],[-126.42541856497864,56.278789891356794],[-126.4214496529889,56.28098059341297],[-126.41738520450161,56.28288472841355],[-126.4150300955977,56.282632523438934],[-126.41218142032695,56.281700821787666],[-126.40869716478109,56.28148798103065],[-126.40390335453218,56.28373453826216],[-126.39484877769362,56.28427360999219],[-126.38744538741464,56.28448444577007],[-126.37614406327685,56.28786965641007],[-126.36990476361564,56.29339895740037],[-126.36348641478139,56.29813988908029],[-126.3591478301176,56.302095058766945],[-126.35751978338315,56.30476108898263],[-126.35228902542609,56.30756253069283],[-126.34879451367145,56.31073540782493],[-126.3489306686578,56.31284091890468],[-126.3511304088248,56.31468987079702],[-126.35300256341706,56.31722970546625],[-126.35284079880559,56.31904928119272],[-126.34862175070802,56.31918630352871],[-126.34384209078257,56.32073160770112],[-126.34217148842342,56.32151571343681],[-126.33483345770622,56.322646318625374],[-126.32659673984969,56.323017094397414],[-126.32425035864776,56.32550532390305],[-126.32416124346562,56.32819392355161],[-126.3209010983746,56.33044245327514],[-126.31638273063012,56.330166942267795],[-126.3123394001394,56.32812474763689],[-126.30566999587079,56.32463700837221],[-126.29960882103951,56.32149699423895],[-126.29453986643138,56.31327342676906],[-126.29187776410612,56.30999077930264],[-126.28972978375086,56.30665315177851],[-126.28446794295947,56.30420064858502],[-126.27335282480183,56.30168888837235],[-126.2633835975458,56.30175461295536],[-126.25979532071229,56.304459249122225],[-126.25798839322859,56.30912269559165],[-126.25544938778172,56.31411915195047],[-126.2532684533519,56.314786613970426],[-126.24770397343411,56.31518283852841],[-126.24302108272975,56.31673313937234],[-126.24166952574699,56.320140944512964],[-126.23969612394103,56.32354990637174],[-126.23665522048627,56.325285076486885],[-126.23358741478621,56.32764750849568],[-126.2304102326539,56.330243057255466],[-126.22876386982115,56.333203212682925],[-126.22540067734776,56.33510895955397],[-126.22291971872576,56.3383393492909],[-126.2243584507677,56.34126716425213],[-126.22941279319154,56.34371359248276],[-126.23454521258478,56.34691242954991],[-126.23012411926491,56.346857722890135],[-126.22477613915878,56.34680449412402],[-126.21887127883295,56.34788111607802],[-126.21465853505839,56.34778071253515],[-126.20687620635225,56.34678089901821],[-126.20169020226862,56.345122377809496],[-126.1953731637927,56.343456418185696],[-126.19477193945829,56.34293758165342],[-126.18845934059907,56.341217509312266],[-126.18141755795936,56.34244641065135],[-126.17463371448753,56.34505460560339],[-126.16601715548299,56.34712715676436],[-126.15798018543916,56.347442007961796],[-126.15198029461703,56.34828266708188],[-126.14727414536941,56.35028652784289],[-126.14625700351073,56.352725159191486],[-126.1487548587182,56.3547027248903],[-126.15063739552072,56.35654654976589],[-126.15086004393909,56.3588403796646],[-126.14832160631083,56.360689373200984],[-126.14873200823111,56.360688897298076],[-126.1484894773234,56.36166596152318],[-126.14386188867574,56.36429690834794],[-126.13963073742092,56.36458835267237],[-126.13995713848911,56.36687313479088],[-126.14239627898968,56.36759631476263],[-126.14615932931312,56.36889147079453],[-126.14917471476049,56.37075195505781],[-126.15081849556412,56.37356389632982],[-126.15195659493249,56.376098618553804],[-126.15372955629257,56.3809714961078],[-126.15242980368073,56.385408942734465],[-126.15051175360497,56.38710491688932],[-126.14405044567889,56.38908385412479],[-126.1385136223007,56.3911331625214],[-126.13372244511002,56.395188820682336],[-126.13124396794042,56.398014239653435],[-126.1300529588623,56.39948513303995],[-126.1203182120731,56.40348249269759],[-126.11428970138793,56.40746690780754],[-126.11304965850178,56.41019230307951],[-126.11489649089599,56.41301353815668],[-126.11726318894847,56.41584323795001],[-126.11875596095315,56.41985663431179],[-126.12001383156489,56.42461405131776],[-126.12365435824482,56.42642979344103],[-126.12626585873376,56.42822852781748],[-126.12588226558486,56.4301556465763],[-126.12291624749456,56.43218384332893],[-126.11914067553796,56.43385426302387],[-126.11201038057185,56.43416537981818],[-126.10382589792432,56.43515803996534],[-126.10426086085906,56.43721885889187],[-126.10433961953918,56.44047186552301],[-126.10371356056359,56.44332217456574],[-126.10830985805984,56.444465469400555],[-126.11383078632052,56.445670515460655],[-126.118986147404,56.44578234161911],[-126.12651367778106,56.4458199513036],[-126.13312817199831,56.44554441156017],[-126.13790922688021,56.44720623384373],[-126.1412505983007,56.4488963571023],[-126.1463138996232,56.45140891949957],[-126.15229039633249,56.45427867420993],[-126.15548700798934,56.45706193513917],[-126.1597014013273,56.4601844048401],[-126.16166502795838,56.46283462255268],[-126.16494604861181,56.46338607837731],[-126.17073601502292,56.465851955462476],[-126.17168321780538,56.46820763741894],[-126.18010714476844,56.4719510873844],[-126.1871265398333,56.47197689989247],[-126.19350963554342,56.47238864629305],[-126.20111864019088,56.47321936686041],[-126.20869486362271,56.47489210118412],[-126.21418751657964,56.4771862480573],[-126.21282381520403,56.48059401146759],[-126.20874628380975,56.482034596492696],[-126.20510200095906,56.482793261159124],[-126.20142474680765,56.481723657548464],[-126.20136067229336,56.48348924169586],[-126.2015590253483,56.48646426716406],[-126.2010368361925,56.48949419737122],[-126.20093049315447,56.492335280715245],[-126.20007551086253,56.495930335589286],[-126.19967626045175,56.49838652012864],[-126.20387165525945,56.49945536430544],[-126.20689672755863,56.501484888247546],[-126.20316619976643,56.50459166969108],[-126.19975947083519,56.507285594035295],[-126.19484365833968,56.508951100965305],[-126.19086903152849,56.50742456849532],[-126.1859634937625,56.50599784621858],[-126.17926367743794,56.505577190268966],[-126.17297345801872,56.50528110208221],[-126.17076840401992,56.506225053966006],[-126.16817336805705,56.50922176580513],[-126.16806310453731,56.51219728142544],[-126.16301923291695,56.51436361090664],[-126.15441176077822,56.51523458552765],[-126.14523859010612,56.514564164063614],[-126.13980032104095,56.51358437520642],[-126.13038767159412,56.51381831406144],[-126.12013174349781,56.51444668091718],[-126.10957869135267,56.5173508242626],[-126.10469386739851,56.520715638417634],[-126.10075121860238,56.526320040612816],[-126.10374430787445,56.5290421166119],[-126.10554006676121,56.530716556230225],[-126.10627316798228,56.533064008261285],[-126.10785596097573,56.53491783618828],[-126.1112673928547,56.537576664291805],[-126.11356474594832,56.539609048357036],[-126.11682585878812,56.54347775198955],[-126.11933255521126,56.545500887541415],[-126.12279081469423,56.54696742080499],[-126.12861308237507,56.54886170372007],[-126.1338091949566,56.55091769670681],[-126.13348842185286,56.55388450007622],[-126.13091272113178,56.55625315531552],[-126.12398991827342,56.55868875751517],[-126.11820589222133,56.56107813814198],[-126.11664289564646,56.56397435114277],[-126.11641882615412,56.567048589870595],[-126.11539578840333,56.569379687128276],[-126.11083174044175,56.57229642073252],[-126.10774060543913,56.574548566365536],[-126.1069114105809,56.57722000831886],[-126.11065149244553,56.57949326412073],[-126.11378748839232,56.581354684676846],[-126.11443440228327,56.5833616630707],[-126.11588080796069,56.58548443354928],[-126.11639163997312,56.58623680625397],[-126.12037784404762,56.58754163952011],[-126.12387943762607,56.58798643531034],[-126.12703461760789,56.589390446193946],[-126.12929032999938,56.58998867762632],[-126.13371758318718,56.59066529509034],[-126.13879458774275,56.590552377357604],[-126.14517737020093,56.591540161494414],[-126.14670114650886,56.592300234009734],[-126.14975351821994,56.59370380999904],[-126.15269587620949,56.59533150428746],[-126.16112936538731,56.59960524528121],[-126.16424786906263,56.60192256564677],[-126.168488164187,56.60488364528686],[-126.17107796640892,56.60759584465637],[-126.17707367986304,56.616173766777145],[-126.17613894813,56.61901615054218],[-126.17490720298179,56.62140184805711],[-126.17448949161668,56.62425248772969],[-126.17316180165079,56.62645905459538],[-126.17098986101028,56.62907004612593],[-126.17062242407843,56.63322914938751],[-126.17121949033785,56.636723754467155],[-126.17624688978194,56.63809721801961],[-126.17923080270356,56.63869359858744],[-126.18023581095402,56.6395077927529],[-126.18033713632305,56.63957038919018],[-126.18119741303023,56.64151406463953],[-126.18396261043812,56.64240641003261],[-126.18663591928548,56.64305683953655],[-126.19004675472816,56.64338347582788],[-126.19530907484693,56.644074699039024],[-126.19881104588165,56.644625031297295],[-126.2038479509221,56.64587193670946],[-126.2052047166362,56.64840620909634],[-126.21044065280385,56.64989453546624],[-126.2153605649053,56.64863164708438],[-126.21956599344462,56.64708298516635],[-126.22699634035422,56.64807394062716],[-126.23053580430759,56.650505504561806],[-126.23395160615618,56.653519773242444],[-126.23867289241265,56.65487345315343],[-126.24001569015924,56.655059178705585],[-126.24756271439028,56.655770897500666],[-126.25369243647398,56.655499073872356],[-126.26298553793325,56.65661873093435],[-126.26652680736906,56.65916583662483],[-126.26640760999899,56.66248228969298],[-126.26628214354724,56.66607660690816],[-126.26662085069401,56.66825385682313],[-126.26914179683452,56.670336949397694],[-126.27156696734887,56.67212442547477],[-126.27547922300954,56.67297656341026],[-126.2825097288441,56.673732169409355],[-126.28375337468225,56.67379218143332],[-126.2893454354115,56.67408450415192],[-126.29640185710569,56.67415812378325],[-126.30090939349114,56.6757968531567],[-126.30199989426661,56.67730006048407],[-126.3073455292324,56.67877527540726],[-126.31333485505789,56.67969301447417],[-126.32091249312653,56.67965647713084],[-126.32634854084797,56.678513532946454],[-126.33288527107494,56.678523733438055],[-126.33609864977798,56.678667776897264],[-126.34388808995539,56.67845904483891],[-126.35149088711496,56.677730505267036],[-126.3599615261641,56.67884545009672],[-126.36847028214083,56.678866261889084],[-126.37647165516908,56.678610144268305],[-126.38204910992982,56.679454197248695],[-126.39285997985203,56.67887501899451],[-126.39224396180906,56.67544410947805],[-126.39232877885058,56.672817732867195],[-126.39200862717371,56.66984303970848],[-126.39632027916957,56.668055231509456],[-126.40021829042523,56.66620582333806],[-126.40336967094744,56.664977068631856],[-126.4073629706483,56.66341395824287],[-126.40809359336366,56.66325928214735],[-126.41321606397894,56.661988188399796],[-126.41883296111287,56.66152194096256],[-126.42205347076904,56.66138596954818],[-126.42448683685167,56.65987223523753],[-126.42787048137362,56.65778168870518],[-126.4319962392771,56.65845807938777],[-126.43609037957735,56.66030857550031],[-126.43903359527782,56.66239589915428],[-126.44218933975517,56.66437487703834],[-126.44413223771868,56.66530034272174],[-126.44907110847159,56.66660079420669],[-126.45513180197038,56.668596212762615],[-126.45699077146298,56.672327171226186],[-126.45619771713785,56.67786009572888],[-126.45770123309025,56.6796473616477],[-126.45898465170586,56.68182080188055],[-126.46049012409476,56.68349151488671],[-126.46344180194664,56.685345252675276],[-126.46595268992768,56.68816851996535],[-126.46791278825499,56.69206930223981],[-126.47035837488573,56.693575169200265],[-126.47795666751352,56.696325816341435],[-126.4788873009568,56.696447852025585],[-126.4848783599706,56.69752795698996],[-126.4889056424456,56.698247747849514],[-126.49695873202081,56.6998572596536],[-126.50076129372832,56.701267705662644],[-126.506318640578,56.70285043853703],[-126.51198860833286,56.704333895051924],[-126.51319224813987,56.705825960541574],[-126.51562814962516,56.707788150789405],[-126.51775719688456,56.70957226531299],[-126.52155071838317,56.711322750406715],[-126.52359021224613,56.71265001408951],[-126.52699853518439,56.71325461796675],[-126.53359129453882,56.71519050100936],[-126.53557268826319,56.71863313762781],[-126.53664364156228,56.72115632301592],[-126.53877090318525,56.723056641692125],[-126.54172257071436,56.72530304277022],[-126.54393723905187,56.72778552902209],[-126.5472080217157,56.72968986606151],[-126.55130993945303,56.73167125189641],[-126.5547093802669,56.73272334361705],[-126.55767937906496,56.73435085260277],[-126.55818523401314,56.73480579888874],[-126.5608281147143,56.73699934052876],[-126.56336131823569,56.73930087034667],[-126.56210510639825,56.74334881146179],[-126.56380757031394,56.74570773163696],[-126.56802927233994,56.74716821764941],[-126.5725553124273,56.74897679453973],[-126.57737722265078,56.75124103113846],[-126.57819451548514,56.75182000315083],[-126.58106387247113,56.75333092936422],[-126.58401211750972,56.75591705274788],[-126.58364871174922,56.75768449489122],[-126.58098445435441,56.76011662448286],[-126.57903812125993,56.76278750446298],[-126.57832913366911,56.76598168053085],[-126.5779006392606,56.77020541142723],[-126.58257964225405,56.77407460961384],[-126.58615374233501,56.77655034259057],[-126.59250014261534,56.780429570106044],[-126.60077370379993,56.78231861135301],[-126.60680604015525,56.782478710470336],[-126.61191442388086,56.78212300906724],[-126.62348112668928,56.781413468972104],[-126.62943400982151,56.78065860438714],[-126.63892980017557,56.77964400701303],[-126.64114637878066,56.778458809110056],[-126.64670625900614,56.77672805684966],[-126.65401989570555,56.775526032995934],[-126.66270123736268,56.77365328874942],[-126.66909860566446,56.771585625268024],[-126.68134702238346,56.76852786042095],[-126.69655045984753,56.76778360520656],[-126.71128505311957,56.7693079477882],[-126.71593076871314,56.77082408278601],[-126.72306715385302,56.77258610992864],[-126.72753155672571,56.772964456542326],[-126.73556136229209,56.7721571497434],[-126.74267890516587,56.77015344260769],[-126.75332955699798,56.76845151577576],[-126.76424321410452,56.76886259792209],[-126.76719589198048,56.76711512319673],[-126.77568693597523,56.764025791936554],[-126.78352566969461,56.76236508672528],[-126.7891893888489,56.76017040235177],[-126.78855082865824,56.75611373056372],[-126.78353448133429,56.752424279318795],[-126.7780030268069,56.74867500144484],[-126.77629174315166,56.74147852257703],[-126.77517828642063,56.74009584266623],[-126.77788880985848,56.735033060541134],[-126.77921824701941,56.73133206227063],[-126.77812066864452,56.729151565085715],[-126.77927865009104,56.72853506818589],[-126.78553196564728,56.7276008643687],[-126.79145493838574,56.727636444276456],[-126.79265267990586,56.72507449146148],[-126.79221383187627,56.721420057267444],[-126.7937067666712,56.71960026499842],[-126.7978867111256,56.7185437214815],[-126.80038572354479,56.718214545430925],[-126.80059696181861,56.71804293002597],[-126.80611395879657,56.71756045857222],[-126.8141143468699,56.717384817771034],[-126.82470043023221,56.717846546161475],[-126.8314432057423,56.71840390093599],[-126.83489323719557,56.71722535796993],[-126.83452987206677,56.714646198530325],[-126.83125661426355,56.712229211275215],[-126.83120908802572,56.70948667606593],[-126.83777163851359,56.70342080656669],[-126.84040250110218,56.70178132470608],[-126.83919838861875,56.699664804976585],[-126.83788519889622,56.69793441446685],[-126.83461807993166,56.69517689233548],[-126.82937426971343,56.6926381628055],[-126.82483603576024,56.691286858619826],[-126.81592951075599,56.69020508261296],[-126.81210016106456,56.689727269276695],[-126.81247520534403,56.686650468348276],[-126.8144944085674,56.684549281301685],[-126.81569644522556,56.681646526285284],[-126.81449218834916,56.679574630957475],[-126.80947634608498,56.676289743569946],[-126.80789680007683,56.67250815758299],[-126.81270222366317,56.67094526825542],[-126.82045217583226,56.67247378519019],[-126.82737271518984,56.67412368397466],[-126.83223304417477,56.674719876055306],[-126.83655466681567,56.67657424878981],[-126.84110289195947,56.67750377752141],[-126.8451434232672,56.67781799882932],[-126.84899153294771,56.67727287440636],[-126.85388236272348,56.67666696195714],[-126.8576925003214,56.67806688559712],[-126.85953687601895,56.6792736431628],[-126.86344952199337,56.68089680523722],[-126.86600909380674,56.68268131315686],[-126.86816204083698,56.68400240882724],[-126.87012771433994,56.684302898552964],[-126.87281363711455,56.68500184791202],[-126.87983485175391,56.68692616331489],[-126.88364775855116,56.68831635999369],[-126.88425573099782,56.689118913332095],[-126.89173302942622,56.68881651946584],[-126.89239698457689,56.68653520225794],[-126.8973325113858,56.68359682526337],[-126.90524662088082,56.68226876615047],[-126.91137229932505,56.68212707488751],[-126.91841762660982,56.68267770912308],[-126.92393358924042,56.68173303983545],[-126.93049688396805,56.680457902568286],[-126.93467450167876,56.678993561491524],[-126.93772319116714,56.67678435274613],[-126.93777515872547,56.67369156171284],[-126.93768792111528,56.67278688119679],[-126.94166666432717,56.67075009265915],[-126.94602906702339,56.670431361865326],[-126.94885251285582,56.669299162542025],[-126.94920180920732,56.66695712064684],[-126.95047253659288,56.66554050058906],[-126.9538077443545,56.664762962091025],[-126.95649521986759,56.66522710134321],[-126.96135192729228,56.66633834525239],[-126.97181877307071,56.666959112850094],[-126.97607037336567,56.666971847703714],[-126.9842869134748,56.6657621135458],[-126.98973132848587,56.662645979215185],[-126.99248394891102,56.659173876762274],[-126.99522976175247,56.65621269169742],[-126.99862042524077,56.65165991954141],[-126.99998089620813,56.650923338127676],[-127.00029974923532,56.65041891022374],[-127.00344592746835,56.648261164750295],[-127.00707971629556,56.64787430871867],[-127.01174218734317,56.648178439839164],[-127.01598081208525,56.64894288129852],[-127.01907889699503,56.649698272520745],[-127.02345136302412,56.648632852596386],[-127.02595190528314,56.647788345377315],[-127.03002491051663,56.64580183793389],[-127.03346306728709,56.64456426166134],[-127.03380292027371,56.64279572342496],[-127.03186167147038,56.6409647833673],[-127.03136874736519,56.639238769326596],[-127.03408974301485,56.6375408069962],[-127.03898412581177,56.635905967151956],[-127.0414922518661,56.634550174926794],[-127.04316827262039,56.63341619125225],[-127.04724153976824,56.631375353763374],[-127.05386804661181,56.631796433236765],[-127.06038554784368,56.63263039188348],[-127.06775191944709,56.63225588396437],[-127.07097651987792,56.63124315403572],[-127.07870541892633,56.626992757242355],[-127.08291360087482,56.62237711974751],[-127.08470928886399,56.6198163861694],[-127.0885619135171,56.61840353063861],[-127.09331667260932,56.61922378875594],[-127.09816507486,56.6207870493147],[-127.10394618267122,56.62252141988088],[-127.10951283069842,56.62448147251038],[-127.11187188095752,56.62637039341601],[-127.11360860161194,56.62843496000372],[-127.11595053468284,56.63152508740396],[-127.11602534086698,56.633810165906475],[-127.11352091943999,56.63534666997203],[-127.11102000785672,56.636085330806914],[-127.11140528378938,56.63842152232465],[-127.11263035803206,56.63985410815819],[-127.11415674329467,56.6420370303008],[-127.11525914557944,56.64494966379402],[-127.11605992678801,56.64723744448419],[-127.1169684057312,56.649183670310016],[-127.11725147025916,56.651180128889216],[-127.1174235501552,56.654038069483775],[-127.11885239873008,56.655926001300195],[-127.12028926453326,56.657025039729916],[-127.12214372381028,56.65794115725422],[-127.12731448182095,56.659213762458876],[-127.13187476312883,56.65939793696874],[-127.13766744138778,56.66079016975307],[-127.14148066061374,56.662513405643146],[-127.1459376987027,56.662644217696624],[-127.15423319623135,56.66301848128474],[-127.15680701474317,56.664626859579265],[-127.1601016141718,56.66686514920696],[-127.16452155186842,56.670133026815684],[-127.1673861828699,56.67390785761361],[-127.16859934347534,56.676433679113785],[-127.16992183912245,56.6787164762401],[-127.17300034399277,56.68158390962758],[-127.17504947250202,56.68432619015403],[-127.17668013862003,56.68674058993737],[-127.17913088118041,56.69016939031562],[-127.1809743265182,56.69257284155904],[-127.18197126296303,56.696005927246446],[-127.18205951389874,56.697493158709015],[-127.18410292649925,56.70046845341943],[-127.1863575306857,56.70321768109938],[-127.18697291647855,56.70384848180314],[-127.19047806632246,56.706084158055],[-127.19191674227523,56.7075141231219],[-127.19314109615163,56.70951976123194],[-127.19467408982605,56.71174664275775],[-127.19671721832566,56.71495485061355],[-127.19866298102484,56.71718683681275],[-127.20568040990548,56.721720219567885],[-127.20835151414114,56.72458177297864],[-127.20989381184548,56.72601059707697],[-127.21217521359854,56.72659879477713],[-127.21382102842486,56.72802660498507],[-127.21484356630816,56.72973814998231],[-127.2176225660548,56.732607487200525],[-127.2200998153777,56.733874999054386],[-127.22206065171551,56.73524595652358],[-127.22247432169726,56.73570819342385],[-127.22568504949048,56.736341159052024],[-127.23015953302047,56.73606558775384],[-127.23526845027793,56.73431363823722],[-127.24172707926881,56.732674028596996],[-127.24557842096353,56.73200050451994],[-127.2495444028439,56.73034863529866],[-127.25269400629807,56.726588957117805],[-127.26372159732115,56.725074197114594],[-127.26829389053952,56.72508319794561],[-127.27193716198488,56.72452745900531],[-127.27433310198467,56.723562592467054],[-127.2754974932109,56.72105003070126],[-127.27821300079728,56.7195171781583],[-127.2832073957512,56.71860709746309],[-127.28706381380785,56.71679378916364],[-127.29040470037997,56.71474347395856],[-127.29195468724382,56.71589336182384],[-127.2935017161043,56.71725840905114],[-127.29493702474518,56.71944032507217],[-127.29492023681111,56.72166368060352],[-127.29501814539688,56.722236425800645],[-127.29562728816836,56.723781175558216],[-127.29592107434654,56.72623450059083],[-127.2969358834572,56.72892263837614],[-127.2982663716544,56.73150002950734],[-127.29970869192984,56.732982613958676],[-127.30094371072244,56.73441348365242],[-127.30259795070108,56.73567875838194],[-127.30530200299485,56.735508052352806],[-127.31040219724235,56.73426416917618],[-127.31580849057838,56.73387756701682],[-127.32027500323439,56.73417268357195],[-127.32567213518548,56.73480772689499],[-127.3301440041878,56.73453767838715],[-127.3351416251227,56.73340144147626],[-127.33763540751825,56.733402555870406],[-127.34201219038906,56.731752524062934],[-127.34379203819685,56.72969906252939],[-127.3446462049314,56.72650773916781],[-127.34685562213542,56.722459626130245],[-127.34926226401947,56.71988857774359],[-127.34886496274886,56.71743642957873],[-127.34908958208996,56.714690926461856],[-127.34744935977182,56.711669058463485],[-127.34663177506528,56.70983088789906],[-127.34737608537782,56.70720548622878],[-127.3495657721716,56.70589173949309],[-127.35299060217083,56.706133816199554],[-127.3582857313011,56.70625754169028],[-127.36119868820371,56.70551868251667],[-127.36557475553188,56.70300724757277],[-127.3696430398312,56.700221025359745],[-127.37038787002317,56.697254829953415],[-127.36988400462353,56.694624607508544],[-127.37176494959533,56.69268623776031],[-127.37436697187408,56.69183383783761],[-127.37446260701311,56.69291752552856],[-127.37746352316064,56.69475017287062],[-127.37964200774778,56.69480760021493],[-127.38421107447417,56.69482146182071],[-127.38628640075545,56.69470955640385],[-127.39200418250873,56.69306132777544],[-127.39481908019282,56.69134561902421],[-127.39514391553452,56.688894788426445],[-127.39422336306663,56.68626019384489],[-127.39465341006489,56.68380823539773],[-127.39621610969938,56.68278732017877],[-127.40161226950873,56.682791603860586],[-127.40451788259676,56.68279588592248],[-127.41095135872253,56.6827436679485],[-127.41374994407438,56.683035777684495],[-127.41457082347837,56.685088636596156],[-127.4154983715111,56.687149288936574],[-127.41746168846556,56.68829314830484],[-127.42222928095936,56.689782638076856],[-127.42440259212476,56.69104062450476],[-127.42615670978165,56.69315484765582],[-127.4254231909584,56.69464211227942],[-127.42375262092497,56.696587939304955],[-127.423743832983,56.69835407382725],[-127.42518646601799,56.7005255433579],[-127.42611506011592,56.70167173826759],[-127.42943579274454,56.70246874947325],[-127.43098763337368,56.703679732014194],[-127.43326345230224,56.70533090339401],[-127.43492133641145,56.70636137206988],[-127.43761293825435,56.70790924200315],[-127.44010158802912,56.70916348492719],[-127.44186393882262,56.7099685869265],[-127.44590878140696,56.71123224058946],[-127.44871181666329,56.71089603796297],[-127.45380640457782,56.70929686625626],[-127.45880057401236,56.70724141958374],[-127.46264297133662,56.70735934017539],[-127.46502639481888,56.708730845298575],[-127.46532668919261,56.711130014137275],[-127.46708822367296,56.712275453337256],[-127.46905632888316,56.71382194064187],[-127.47061020087995,56.71496073221076],[-127.4728904109524,56.716853244805755],[-127.47631091643892,56.71867891022453],[-127.47891110314536,56.718514704797094],[-127.48057223115163,56.718056402419286],[-127.48555999659882,56.71725506974886],[-127.48940381147622,56.717381156177545],[-127.49449321849181,56.71725964009624],[-127.50197602344294,56.71647361328558],[-127.50716728694165,56.7164759219778],[-127.51298523634625,56.71641689589334],[-127.51620985492987,56.71533019406811],[-127.51943408111838,56.712880735933325],[-127.52203270948924,56.71190882566737],[-127.52618985810223,56.709403377014034],[-127.5312811388188,56.70808803184993],[-127.53242320791131,56.70940131034086],[-127.53252288263059,56.71088831992179],[-127.53251955974436,56.71277101360226],[-127.53334341577894,56.71694791190696],[-127.53406321592546,56.719395794262375],[-127.53363927662787,56.723910258866844],[-127.53270018093878,56.72665575217638],[-127.53269728362271,56.72813502842453],[-127.53269013596427,56.731783915336756],[-127.53174709192555,56.73596388078031],[-127.5322629955398,56.738476975145154],[-127.53194402414108,56.74138546904602],[-127.53297762547007,56.743838644019704],[-127.5352632949909,56.74510251473944],[-127.53889952946525,56.74600960400406],[-127.53889450138837,56.74750685591065],[-127.53546555765058,56.74749382424201],[-127.53172412419278,56.7472154472697],[-127.52912648193623,56.746762069167005],[-127.52496701174167,56.74675739629381],[-127.52049661730778,56.74715071351467],[-127.51748337595605,56.74703370024732],[-127.51207980420862,56.74686390277217],[-127.5066736774476,56.74725871340435],[-127.50313244582337,56.74896743845319],[-127.503227582375,56.7517096666971],[-127.50405117715071,56.75456894294101],[-127.5037371970737,56.75576496148221],[-127.50226975109699,56.75987910139142],[-127.4981088270402,56.76090456146439],[-127.49456832103701,56.76187789360657],[-127.48863792162025,56.76243935657757],[-127.488218336948,56.763753099257805],[-127.48955946573233,56.7666692808361],[-127.49007535099256,56.768151563681464],[-127.4912124109142,56.77044252354699],[-127.4939118582673,56.77289475475436],[-127.49567543415023,56.77421020453339],[-127.4976452236357,56.77598047493386],[-127.50180677442323,56.77741151863871],[-127.50385758177293,56.778407505861345],[-127.50354467189493,56.77834390181491],[-127.50325757853423,56.77825870458197],[-127.50297434883335,56.77816785855316],[-127.50268128762623,56.77808721203365],[-127.50238219735236,56.77800999684336],[-127.50207459541703,56.77795081034932],[-127.50175486322269,56.77792202174652],[-127.50142578695187,56.77791687464539],[-127.50109847120879,56.777903861662594],[-127.50075902439268,56.77789547117396],[-127.50046997172531,56.7778652029806],[-127.50007448878047,56.77783840915097],[-127.4997915906638,56.77783496396533],[-127.49943644508714,56.77781778666695],[-127.49917917472747,56.77778826803336],[-127.49897993164667,56.778093154183445],[-127.4989869583029,56.778274619769775],[-127.49899189351734,56.77845498894002],[-127.49894033956542,56.77863152976063],[-127.49887542059491,56.778807104701016],[-127.49885670657171,56.77898550649798],[-127.49885135704675,56.77916487419415],[-127.49870693953955,56.77932455983724],[-127.49843198605987,56.7794207583773],[-127.49815608563037,56.779519208606764],[-127.49793576952334,56.779650634745614],[-127.49770824806139,56.77978102322357],[-127.49754101681432,56.77993424757988],[-127.49744113955876,56.78010686434842],[-127.4974491050113,56.7802860779761],[-127.4974683709972,56.78046628153687],[-127.49734244744081,56.78062799300621],[-127.4971805565483,56.78078675844094],[-127.49704871894397,56.780954141350016],[-127.49690120672206,56.78111386078417],[-127.49667856913159,56.78123858763536],[-127.49640381353483,56.78134038278327],[-127.49619098832939,56.78148068459493],[-127.4961751248071,56.78165344987517],[-127.49623490203727,56.78171551590859],[-127.49654761061588,56.78177353694992],[-127.49682781426516,56.781865553028354],[-127.4971060142517,56.78195871235918],[-127.49737636893957,56.7820609271745],[-127.49761630348577,56.78217133807465],[-127.49787249604601,56.78227819841646],[-127.49810685192892,56.7824032416317],[-127.49831710610356,56.78254089074921],[-127.4985334201095,56.78267622806871],[-127.49874969225505,56.78281044487669],[-127.49892970253173,56.78296077058457],[-127.49910160745756,56.783113431275865],[-127.49927957212279,56.78326378024919],[-127.4994878301418,56.78340257142579],[-127.4996899878511,56.783542553641254],[-127.49990831725468,56.7836767448506],[-127.50010547892316,56.78382014636249],[-127.50024295985374,56.78398329065024],[-127.50046146735521,56.784121961608875],[-127.50071805445789,56.7842646733938],[-127.50072541150304,56.784428205199866],[-127.50091710261106,56.78458847902675],[-127.50117706964082,56.78468632418556],[-127.50133950003104,56.78475280088533],[-127.50128652248904,56.78505151241868],[-127.50117547058632,56.78527917487905],[-127.5011413650199,56.785456635628094],[-127.50107340706899,56.785633368290846],[-127.5010208205956,56.785809922682546],[-127.50100114044513,56.78598945749331],[-127.50096912543397,56.78616801468191],[-127.50092272684492,56.786345617992275],[-127.50085883640216,56.786521182778614],[-127.5007444432345,56.7866894883986],[-127.50066824356752,56.78686519581933],[-127.50054659984022,56.78703134399978],[-127.50043420897521,56.78719850548726],[-127.50032082806688,56.7873667990247],[-127.50021057070593,56.787536176936165],[-127.50008170111987,56.787701287775285],[-127.50001148507319,56.78787244285126],[-127.50000003716667,56.7880530029444],[-127.49955358170477,56.788035762126576],[-127.49922728393501,56.78802497289001],[-127.49884819894277,56.78802712138285],[-127.4985656168307,56.78803375497864],[-127.49831123855873,56.788027734181135],[-127.49796240617187,56.78801720258535],[-127.49775853140278,56.788018440946466],[-127.49761182875609,56.78801453490611],[-127.49729432541083,56.78799243239861],[-127.49701407630057,56.7879004169869],[-127.49671539802321,56.787835510058954],[-127.49639075463594,56.787787712596945],[-127.49608147526887,56.7877666327467],[-127.49576993364518,56.78779264626464],[-127.49543536417308,56.787806597732164],[-127.49511276249363,56.787838340756984],[-127.49477874900113,56.78783995677884],[-127.49440375728443,56.78781514904163],[-127.49418475887674,56.78771681717038],[-127.49393211887629,56.78759645989912],[-127.49368638300935,56.78746929850685],[-127.49343482189583,56.78735004853538],[-127.49316584572779,56.78725789493322],[-127.49286476226945,56.78720981698889],[-127.49253562461317,56.787204647067654],[-127.49219585937497,56.78721640878273],[-127.49186407244233,56.78722247433475],[-127.49153761456024,56.78723408095233],[-127.49118646016414,56.78724260924969],[-127.4908837416405,56.78725842339903],[-127.49056278186005,56.787253154273266],[-127.49023401327939,56.78723116429642],[-127.48985189519539,56.78720754618979],[-127.48958544766614,56.78720725055421],[-127.48925366040324,56.78721330941649],[-127.48893759554724,56.787148584810055],[-127.48865592701631,56.78707225726062],[-127.48833833263498,56.78702099676467],[-127.48801929344275,56.786985441386406],[-127.48769330914894,56.786982464261236],[-127.48737558004751,56.78703430392219],[-127.48712680494782,56.78714698708453],[-127.48690132130459,56.78727957414932],[-127.4866883163058,56.78741650015008],[-127.48647850360722,56.7875567511245],[-127.48629014886758,56.78766873881846],[-127.48622353875466,56.787882429489585],[-127.48610707229541,56.78805186600173],[-127.48582788520126,56.78814696514607],[-127.48562716359719,56.7882837483867],[-127.48557847141645,56.78845688925608],[-127.48555466393319,56.78863758919435],[-127.48554215882073,56.788819280108235],[-127.48552352388388,56.7890010413817],[-127.48499362734411,56.78913263530867],[-127.48469521779724,56.78920778052005],[-127.4843978232541,56.789282913395056],[-127.48409830931519,56.78935582854856],[-127.48379873491048,56.789427623029646],[-127.48348047757976,56.789519802836494],[-127.4831846140943,56.78955457147823],[-127.48286289160296,56.789582911669896],[-127.48254696886286,56.78962911523989],[-127.48223436769386,56.78968200397598],[-127.48191481774289,56.78974057480642],[-127.4816036795607,56.789777755981895],[-127.48128488679106,56.7898295926011],[-127.4809589736096,56.789882630546124],[-127.4806579485479,56.789916331749275],[-127.48033602546916,56.78988639347743],[-127.48001244413256,56.789839663440226],[-127.47969096687189,56.78982092510027],[-127.47937021296794,56.78984812483058],[-127.47905236357646,56.789897703810446],[-127.47874009787765,56.789959545499364],[-127.4784415842295,56.790032435989474],[-127.47816557371263,56.79013084405406],[-127.47792843972121,56.790254582914855],[-127.47769967040807,56.79038270850131],[-127.47744468288094,56.790495443632274],[-127.47720327573994,56.79061474726145],[-127.47686506735853,56.790694810957724],[-127.47664132703396,56.79079374006948],[-127.4763674289381,56.79081367383726],[-127.47617181167334,56.791032192178236],[-127.47597718555059,56.791115098882095],[-127.47561719177753,56.79113489192112],[-127.47531250803898,56.79118094953466],[-127.47505149840758,56.79132400635021],[-127.47478139480764,56.79138984059549],[-127.47448294803385,56.79146496237229],[-127.47418117900729,56.79153339731486],[-127.47387785563363,56.791615297174],[-127.47360019243648,56.79169802490015],[-127.47331126755414,56.79178088018228],[-127.47301374586884,56.79185374667407],[-127.47276181649272,56.791966437623074],[-127.47248351575946,56.79205925611794],[-127.47226704706227,56.792161456813595],[-127.4719710744543,56.792220855323684],[-127.47181112404618,56.7922462076924],[-127.47168017234439,56.79227907484965],[-127.47142443669223,56.7923996510437],[-127.47110846667611,56.79247272276217],[-127.47082247365756,56.792579072965374],[-127.4704659486682,56.792663810428564],[-127.47025443148921,56.79276146881639],[-127.46999198829334,56.79286754971313],[-127.46964900934587,56.79293083853335],[-127.46934025639563,56.79292425704826],[-127.46903581832116,56.79295012502094],[-127.46877017776632,56.793052877699566],[-127.46845062212111,56.793112535597416],[-127.46813712359129,56.79314298684338],[-127.46780946493702,56.79315118465927],[-127.46751948414806,56.793234038798396],[-127.46722831289334,56.793285527286564],[-127.4669031717042,56.79333291736437],[-127.46656461589262,56.79335132141619],[-127.466232432824,56.793348359871366],[-127.46593061623494,56.79330807187758],[-127.46563456329542,56.7932307361764],[-127.4653753481015,56.79312496638866],[-127.46511913108407,56.793016920857696],[-127.4647784721669,56.792952415284645],[-127.46452916778867,56.7928644622803],[-127.46421489372358,56.79281982864567],[-127.46389483863399,56.79278534555264],[-127.46357782331022,56.79274970665355],[-127.46325688017936,56.79271859401229],[-127.46294157611696,56.7926739689625],[-127.46262128573004,56.79263276146102],[-127.46243177048274,56.792608006548484],[-127.46224211129811,56.792633682597135],[-127.46209936509874,56.79265322528137],[-127.4620532834969,56.79246435450184],[-127.46185077444196,56.79236690274118],[-127.46163174921688,56.79223937939256],[-127.46148523229199,56.79207741747223],[-127.46128944171359,56.79194066604879],[-127.46110846097218,56.7917891786731],[-127.46091518720237,56.791664725560906],[-127.46066186387189,56.7915241398568],[-127.46048238517365,56.791384961969676],[-127.46027120132035,56.79124726214152],[-127.45979734880059,56.791074421796765],[-127.45964573517179,56.790967427661286],[-127.4595346571687,56.79076696193387],[-127.45934200374853,56.790631293114814],[-127.45909883341818,56.790515244552466],[-127.45885243065099,56.790394749362484],[-127.4585982787413,56.790231756141736],[-127.45860427781268,56.790091606658635],[-127.45858727896079,56.78991249338114],[-127.45859490753077,56.78973422330125],[-127.45860555873355,56.789554798528144],[-127.45857225466705,56.789378110333026],[-127.4585921755545,56.7891997018124],[-127.45862438855507,56.78902115480523],[-127.45864734805426,56.78884159141819],[-127.45867136571374,56.7886631367751],[-127.45869639930088,56.78848467069681],[-127.45874094551603,56.78830710540594],[-127.4587968094183,56.78813053322876],[-127.45887835730939,56.78795591289836],[-127.4589630114726,56.78778237817129],[-127.45905902505667,56.78761095667141],[-127.45915708642245,56.78743951202595],[-127.45925309829663,56.78726809041788],[-127.45928021707509,56.78700891379959],[-127.45908057386612,56.78687780653241],[-127.45894270453798,56.78672695166976],[-127.45884260304067,56.786545413428726],[-127.45872756854757,56.78637524994828],[-127.45858828997636,56.78621432479906],[-127.45845298305032,56.7860499928234],[-127.4582740441354,56.78592425445906],[-127.45810541425593,56.78574572910273],[-127.45786216813268,56.78562631784926],[-127.45774030015151,56.785465195841994],[-127.45757764790949,56.78530901560928],[-127.45735352142731,56.785180422972445],[-127.45709622042575,56.78506901318544],[-127.45683659365422,56.784949784530426],[-127.4565978164478,56.784840406620035],[-127.45632264777085,56.784743764892035],[-127.45603751662176,56.784655079219775],[-127.45577225601967,56.78454935970635],[-127.45551001926268,56.78444248501995],[-127.45523906303016,56.78434915565674],[-127.45495927716647,56.78426601084572],[-127.45465294101359,56.784212300721435],[-127.45440295828992,56.7841041655113],[-127.4541465791031,56.78398937780455],[-127.45397991844149,56.78383547975525],[-127.45379931509582,56.78369182396404],[-127.45357504226138,56.78355874420643],[-127.4533160509596,56.78345631143241],[-127.452996225531,56.78342516194357],[-127.45266818348729,56.78342099945305],[-127.45234712740056,56.78343917071582],[-127.4520205454328,56.78341930112316],[-127.45173188322501,56.783345214298116],[-127.45153186440464,56.783202893914066],[-127.45136122110574,56.78305127868026],[-127.4511093746532,56.78294764086297],[-127.45074473311821,56.782786993200695],[-127.45043108580464,56.78283869613683],[-127.45011739568753,56.78288927813739],[-127.44980271431402,56.7829409911207],[-127.44948893865168,56.782989331246775],[-127.44916596206448,56.78301087808695],[-127.4488389563391,56.78300669433532],[-127.44851367932338,56.78302154141083],[-127.44819213703605,56.783054276230395],[-127.44786580146156,56.7830680128682],[-127.44753869522427,56.7830615856589],[-127.44721202430135,56.783066359222964],[-127.44688402779353,56.78306330225441],[-127.44655782856776,56.78305350049087],[-127.44623188062803,56.78305041897708],[-127.44590502587491,56.7830507087115],[-127.44560595679793,56.78299913757923],[-127.44527874242766,56.782989343940294],[-127.44495209726504,56.78299523216317],[-127.44462563561811,56.783005600095294],[-127.44429953358686,56.7830260490001],[-127.44397645792198,56.783017326534186],[-127.44364943631665,56.78301312985623],[-127.44332135700313,56.78300782350221],[-127.4429993257081,56.78302710308603],[-127.44267425503512,56.78304753638717],[-127.44234719157478,56.78304221623973],[-127.44201952950915,56.78304810838489],[-127.44169671516522,56.78307411731048],[-127.44137160169711,56.783093427161056],[-127.44104882824357,56.783120554651966],[-127.44073139204322,56.78315322514802],[-127.44041652924753,56.78320043460069],[-127.44018300948052,56.783203033100214],[-127.43997397149565,56.78323001299597],[-127.43990420953934,56.783255443255314],[-127.43982351340023,56.78326194415311],[-127.43964951780012,56.78340508072057],[-127.43938500575865,56.783511121751346],[-127.43916032894805,56.78364137350223],[-127.43894291168088,56.78377378544208],[-127.43868671391608,56.783883094524626],[-127.43838250125715,56.78394138702531],[-127.43809146884298,56.78402306589792],[-127.43784580065665,56.78414010081158],[-127.43769068778124,56.78429535202966],[-127.43747022249345,56.784428915951004],[-127.43723086170773,56.78455036220891],[-127.4370435852645,56.78469476332148],[-127.4367737778754,56.78479637513364],[-127.4365374772067,56.784917786120445],[-127.43626450282991,56.785017190711294],[-127.4360271831481,56.78513861205709],[-127.43579834697746,56.78526778337094],[-127.4355631974766,56.785392541712696],[-127.43534062851364,56.7855250046317],[-127.43509494247891,56.78564203443188],[-127.43483782997959,56.785754707838414],[-127.43465523678589,56.78588784708153],[-127.43445811656298,56.78604355993756],[-127.43422504811905,56.786169413390795],[-127.43395205897794,56.786268813181344],[-127.43370116775127,56.78638365666261],[-127.43352424147896,56.78655931601332],[-127.43328694065801,56.78665383657157],[-127.4331039024635,56.78680266754493],[-127.43293532763259,56.78695470008885],[-127.4328112449936,56.787118567047045],[-127.43277272712409,56.7872960552516],[-127.43268381785113,56.78746849795146],[-127.43256498672885,56.787635668508834],[-127.43244307338482,56.78780287306936],[-127.43232322405296,56.787970054683065],[-127.4321723368571,56.78812973506146],[-127.43199654891086,56.78828072555703],[-127.43179267952355,56.78842081995297],[-127.43155327623964,56.78854225600817],[-127.43129816648968,56.78865490010965],[-127.43107761289262,56.78878733331108],[-127.43091636586938,56.788943764801196],[-127.43074785594531,56.78909803507048],[-127.43054815803468,56.78924032266653],[-127.4303691945828,56.78938910472879],[-127.43025759283304,56.78955843460192],[-127.43014395772661,56.789727786848495],[-127.43002924764906,56.789896030230636],[-127.42996497203318,56.790070440315276],[-127.42994295272779,56.79025110751916],[-127.42992294063508,56.79043063192066],[-127.4298761695682,56.79060708995155],[-127.42968163230702,56.79075043986806],[-127.42946224296492,56.79088734002174],[-127.42928535793507,56.791037218302364],[-127.4291581816771,56.7912011160062],[-127.42905277373436,56.79137149718382],[-127.4289535777991,56.79154405101097],[-127.42885127450047,56.791715518419025],[-127.42873864315457,56.79188485843929],[-127.42861462603958,56.79205096206786],[-127.42844814231528,56.79220520702755],[-127.42828902697715,56.79236497371826],[-127.4280963999041,56.79250493823045],[-127.42775965141333,56.792572529211505],[-127.42758074404001,56.79269553193759],[-127.42752137666953,56.79286428357846],[-127.42749524647284,56.79304499585775],[-127.4274888208604,56.79323221477606],[-127.42748748447777,56.79341825695529],[-127.42748082722454,56.79359875458422],[-127.4274874388021,56.79377798528844],[-127.42750125505331,56.793958257224546],[-127.42751196479755,56.79413744278392],[-127.427479521361,56.794313742206306],[-127.4273534420352,56.7944798674647],[-127.42723046829556,56.79464707901938],[-127.42710641946378,56.7948131816646],[-127.4269803369094,56.79497930661047],[-127.42685005615085,56.7951432364074],[-127.42668667518946,56.79529856562502],[-127.42637744670716,56.79536248764239],[-127.42616186997208,56.79549261628128],[-127.42600479715861,56.795652357735385],[-127.42591168266833,56.79582372178625],[-127.42583719079666,56.795999363298506],[-127.42575543560264,56.79617284346247],[-127.42567268819025,56.79634745515903],[-127.42558786602102,56.79652096900786],[-127.42549996118177,56.79669451674955],[-127.42542644087807,56.79686902673469],[-127.42540841230586,56.797047408411075],[-127.42539452317325,56.79722686518315],[-127.42518282625518,56.79749030675011],[-127.42580476090322,56.79751147601915],[-127.42612952299031,56.79753479507271],[-127.4264514925677,56.79756598862903],[-127.42676799238367,56.79761517206187],[-127.42707760183815,56.797672275223384],[-127.42735972183719,56.797762179546815],[-127.42764285955127,56.797852072054006],[-127.4279190825917,56.797948764118644],[-127.42820321442501,56.798037523826764],[-127.42849624637914,56.79811721953648],[-127.4287705069529,56.798216172797375],[-127.42901075952314,56.798337913842175],[-127.42922187081571,56.7984756652411],[-127.42943095076394,56.79861343874863],[-127.42962285373082,56.79875812550351],[-127.42976418902751,56.79892130079711],[-127.42991658128862,56.7990787506057],[-127.43011258692498,56.79922339141667],[-127.43029139038661,56.79937382523246],[-127.43045800735524,56.79952775541197],[-127.43061553626801,56.79968514777016],[-127.43076093632432,56.79984715659172],[-127.43087425000631,56.800000554614954],[-127.4308839194239,56.80001277494956],[-127.43097334652298,56.80018548796038],[-127.43105772575728,56.80036049802862],[-127.4310878728621,56.8005383487342],[-127.43108942858512,56.800718756742356],[-127.43108272904847,56.80089813534933],[-127.43108629269824,56.801077400553325],[-127.43109327609923,56.801321625909516],[-127.43108661791102,56.80150212477917],[-127.43106554736725,56.80168054163162],[-127.43105888898793,56.80186104053965],[-127.43103990897677,56.8020405549759],[-127.43096946944966,56.80221503479923],[-127.43089600475497,56.80239066867724],[-127.43082767121548,56.80256624583147],[-127.43075932066017,56.802741823149724],[-127.43068684551855,56.80291632535663],[-127.43067707771615,56.80309573805722],[-127.43057781754536,56.80326717417129],[-127.43053407496988,56.8034424795794],[-127.43051921578459,56.80362306921346],[-127.43046833245957,56.8037995741637],[-127.4303815901869,56.803976475178665],[-127.43037587835254,56.804154722500954],[-127.43032081175578,56.80432903232863],[-127.4302215468425,56.80450046829977],[-127.43013360324777,56.804672899838486],[-127.42995444260234,56.804818322138495],[-127.42974946209168,56.80495842596134],[-127.42954237272114,56.805097432077716],[-127.42932906670696,56.80523426515734],[-127.42931881516584,56.80545626820886],[-127.42929875092484,56.80563467398813],[-127.42921908189984,56.80580925494494],[-127.42913108947937,56.805980565742104],[-127.42906682447497,56.80615609730121],[-127.42901388154249,56.80633262457179],[-127.42893416841683,56.80650608522816],[-127.42889463820086,56.80668470580454],[-127.42888587777671,56.80686410757],[-127.42885970312172,56.8070437014772],[-127.42885300854938,56.807223080486],[-127.42881136974601,56.80740060370894],[-127.42871308194754,56.8075709072508],[-127.42861914095542,56.80774788672452],[-127.42851056138828,56.80791718299428],[-127.42829365703271,56.80804060619088],[-127.42800287691475,56.8081345858053],[-127.42774758628948,56.808246104062455],[-127.4274966167994,56.80836317747024],[-127.42724345563364,56.80847691256213],[-127.42697763883834,56.80858070066668],[-127.42668646322862,56.80866459571664],[-127.4263768800734,56.80872179704293],[-127.42605971699382,56.80876787450496],[-127.42574249547242,56.80881283116943],[-127.4254286450455,56.8088655945507],[-127.42511475249245,56.80891723697019],[-127.42479758630746,56.80896331134752],[-127.42447589086304,56.80899822818369],[-127.42415084168857,56.80899732006768],[-127.42382397601111,56.808975138624525],[-127.42349120866976,56.80895974516378],[-127.42316893508332,56.8089789759023],[-127.42284023975975,56.80899043178567],[-127.4225142811771,56.808992891523786],[-127.4221906065236,56.80897403289202],[-127.42187128252158,56.808933833225616],[-127.42155183568266,56.808890272160255],[-127.4212286604039,56.80885683713238],[-127.42090335360078,56.80882118337734],[-127.4205772775348,56.80879226118411],[-127.42025300010192,56.808784610909335],[-127.41993393260367,56.80880716040582],[-127.41961662142145,56.808849861660136],[-127.41930178674544,56.808903741546374],[-127.41898600028095,56.808959872397836],[-127.41867000748255,56.80901040145509],[-127.41835494841115,56.809058678198596],[-127.41803998708262,56.80910919440889],[-127.41772386866022,56.809156360546226],[-127.41740541232816,56.80919570690485],[-127.41708260949962,56.8092283760999],[-127.41675751014294,56.80925434567675],[-127.41643129520575,56.80927808532363],[-127.41610611297499,56.80930181285412],[-127.41578204545335,56.809327768688654],[-127.41546021587125,56.80935930252357],[-127.41515771117291,56.809414158153736],[-127.4148407175259,56.80946580937849],[-127.41454747550853,56.80954969939894],[-127.41424982945993,56.809625792253506],[-127.41394141713613,56.80968743344095],[-127.41362446056428,56.80974020190531],[-127.413303577055,56.80976947869997],[-127.41297872626443,56.80977414358661],[-127.41265140005392,56.809767628117484],[-127.41232285272959,56.80975552186867],[-127.41199426471992,56.80974229457896],[-127.4116668735804,56.80973353602769],[-127.41133991578268,56.80973709911648],[-127.41102181594447,56.809786511668676],[-127.41072602311442,56.80985697288668],[-127.41043800817964,56.80994415852335],[-127.41013383390717,56.81001022702696],[-127.40981778014165,56.81005961431393],[-127.40949599682887,56.81009225337559],[-127.40916859040205,56.81011150497368],[-127.40884215958143,56.81012962447636],[-127.40850204844831,56.81016582236473],[-127.40820411388732,56.81020604342408],[-127.40789128575568,56.81025987351408],[-127.40758182511017,56.81032151081415],[-127.40727666700883,56.81038870388294],[-127.40698253144087,56.810477068890265],[-127.40674230270011,56.810581657553264],[-127.40642110852707,56.81065910861378],[-127.4061981315332,56.81078704263025],[-127.40594805639208,56.81090294321806],[-127.40569905361825,56.81101995232995],[-127.40544794231741,56.81113586318128],[-127.40521799630011,56.81126947436391],[-127.40498890222116,56.81137057696641],[-127.404647117273,56.81144600559706],[-127.40438018629553,56.811549758719146],[-127.40415159275747,56.8116643022198],[-127.40384534392592,56.81175839456499],[-127.4035721368205,56.81185885205852],[-127.40330834814023,56.81196481019196],[-127.40309688017875,56.81209933800856],[-127.40288137564998,56.8122361504981],[-127.40259312221583,56.81231771775787],[-127.40228351482958,56.812375981841235],[-127.40198149571177,56.81244536956931],[-127.40168376207467,56.81252031347272],[-127.40139278325316,56.81244165424796],[-127.4011101491446,56.81239540303344],[-127.40067255247003,56.81228919111492],[-127.40022923607593,56.81259095682744],[-127.40000091105425,56.81268531824095],[-127.39997363326442,56.81269681957736],[-127.39969760899494,56.8127479905425],[-127.39937226575476,56.81276831547458],[-127.3990469221727,56.81278863958982],[-127.39872178079818,56.81281456395915],[-127.39841417311845,56.8128716764624],[-127.39810676699143,56.81293438930953],[-127.39778379523,56.81296364984371],[-127.3974564041246,56.81295597575216],[-127.39712894862143,56.812946060226814],[-127.39680208370234,56.812952947273565],[-127.39647507328709,56.81295535245899],[-127.39615177663138,56.812975647205114],[-127.39589521845186,56.81299858391832],[-127.39574560721776,56.81300131673501],[-127.39552996190558,56.81304958684088],[-127.39528365736622,56.81315758132314],[-127.39495704913904,56.81317118483188],[-127.39463006075587,56.81317470575263],[-127.39430429071729,56.813154679073584],[-127.39398881903017,56.813107645145614],[-127.39366664917999,56.81307413032754],[-127.39334457699705,56.813042854964564],[-127.39302478860631,56.81307543129578],[-127.39270972117906,56.8131247658235],[-127.39240979333483,56.81319634983617],[-127.39209902580691,56.813251239891564],[-127.39177604685693,56.8132804854541],[-127.39144950055825,56.81329632073061],[-127.39112224516657,56.81329199110432],[-127.390794933167,56.81328654061057],[-127.39046808064491,56.813293411501604],[-127.39014161422563,56.813311483915854],[-127.38981610021825,56.81332730398726],[-127.38948833468483,56.813337544144176],[-127.38916876915776,56.8133476955315],[-127.38884428767099,56.81336350208096],[-127.38851408174132,56.81339169631347],[-127.38818690628243,56.81338959970766],[-127.38785975465458,56.81338862266918],[-127.3875329811219,56.813397726591454],[-127.38720646089612,56.81338553465529],[-127.38689207900538,56.81342588240907],[-127.38658996752963,56.81349411425549],[-127.38627156430063,56.813536744831794],[-127.38594837785841,56.813560374777786],[-127.38562136163732,56.81356275256733],[-127.3852948004994,56.81354943559307],[-127.38495856489529,56.813523894108855],[-127.38464654096916,56.81354403951005],[-127.38434975843707,56.81361781236101],[-127.38402902105979,56.81365261780338],[-127.38370378221433,56.813676264055594],[-127.38337846283825,56.81369766905255],[-127.38305882087366,56.81373470167454],[-127.38273927479366,56.81377397377344],[-127.38241224016942,56.81377634363794],[-127.38208341200823,56.81378545569484],[-127.38175942053604,56.813786670794244],[-127.3814692894934,56.81370235481418],[-127.38120401724765,56.813596480856255],[-127.38094278297733,56.813488322037074],[-127.38067850687838,56.81338131578208],[-127.38043719985754,56.81325725454151],[-127.38020689797892,56.813125231094766],[-127.37994401930953,56.813028294337045],[-127.37962096535001,56.81299811608479],[-127.37928903808323,56.81297811732782],[-127.378961805119,56.81294574064979],[-127.37864102361229,56.81295027578828],[-127.37833133518559,56.81300736242751],[-127.37802409498883,56.813075628727205],[-127.37772859955857,56.81315721711715],[-127.37745835814505,56.813256466603946],[-127.37722595719403,56.81338220869068],[-127.37701037043396,56.81351897806878],[-127.376807185787,56.81365897720171],[-127.37663733561317,56.813813190150135],[-127.37646235067228,56.81396745743816],[-127.37626543154657,56.81411075107369],[-127.37597280858324,56.81418670164198],[-127.37565233785689,56.81422932791348],[-127.37532832146464,56.81425854328646],[-127.3750028332612,56.81427544636922],[-127.37467497614973,56.81428340860919],[-127.37438149469955,56.814306694334604],[-127.37402356071077,56.81430488822332],[-127.37369819090766,56.81432514869746],[-127.37337069110232,56.81434318964385],[-127.37305218678512,56.81438354730615],[-127.3727371066014,56.81443395369559],[-127.37243718780879,56.814506611573954],[-127.372157331964,56.81459586590214],[-127.37192585952708,56.81471934719284],[-127.3716766334419,56.81483405089728],[-127.3714473670745,56.81496199053898],[-127.37121704260164,56.815088820324604],[-127.37123983811875,56.815269002829595],[-127.37107089613828,56.81542095742054],[-127.3709589597321,56.815590238830744],[-127.37089134772555,56.81576577496802],[-127.37086794156974,56.8159442052289],[-127.37082090996438,56.81612176486018],[-127.37065389372218,56.81627033661719],[-127.37060574802813,56.81644566668843],[-127.37069896498483,56.81661613917405],[-127.37074731033387,56.81667838378841],[-127.37076153190988,56.81679029787381],[-127.37075968363506,56.81696962075267],[-127.3707445168747,56.81714908457431],[-127.37072318277238,56.81732861366788],[-127.3707018648742,56.81750814260446],[-127.3706795134343,56.81768768249055],[-127.370666379913,56.81786712486385],[-127.37067273236335,56.81804636109118],[-127.37069753769796,56.81822540210282],[-127.37074585077141,56.81840195311382],[-127.37085340898336,56.81857227401196],[-127.37101988844601,56.81872628225878],[-127.37123394841731,56.818862977014625],[-127.37142067944447,56.81901004656993],[-127.3715404417186,56.81917687588029],[-127.37157755403506,56.8193557866107],[-127.37155208208655,56.81953423927317],[-127.3714762643086,56.81970986297088],[-127.37140659704669,56.81988542153104],[-127.37133893983881,56.82005983814208],[-127.37125278851778,56.82023332982605],[-127.37120473645045,56.82041090083348],[-127.37119673874052,56.8205902892245],[-127.3712113356114,56.82077055915297],[-127.37128416385318,56.82094460954346],[-127.37140904949341,56.821111385006766],[-127.37156843669989,56.82126770930028],[-127.37175724749572,56.82141475670984],[-127.37196019803454,56.82155605089876],[-127.37214293973382,56.821705403368796],[-127.37230840436357,56.821859421204714],[-127.37238854386739,56.82203675567681],[-127.37226705689659,56.8221971747334],[-127.37211690121654,56.82235901794088],[-127.3720492826322,56.82253455542027],[-127.37206076043392,56.82271373790008],[-127.37215415791593,56.82288869092014],[-127.37213997263731,56.82306702456438],[-127.3720807539819,56.823248076422125],[-127.37196039825825,56.82341184523095],[-127.37176331154626,56.823551771999824],[-127.37151852659537,56.82367763491016],[-127.37126416297723,56.82379351286761],[-127.37100971839716,56.82390714987337],[-127.37074999512592,56.824016359612926],[-127.37048607332143,56.82412337193084],[-127.37021900291762,56.824228175698096],[-127.36994976136258,56.824329639909635],[-127.36967536030787,56.82443003744256],[-127.36939037079853,56.82452158108517],[-127.36909450845334,56.82459530856718],[-127.36877267243355,56.82463120762759],[-127.36844319097783,56.82465373882236],[-127.36813958539221,56.82471185677211],[-127.36786820509184,56.82481109787802],[-127.36760653507132,56.82492368372346],[-127.36733837818241,56.82502737228239],[-127.36706703321764,56.8251277319625],[-127.366796759989,56.82522920041117],[-127.36653606157344,56.82534065316252],[-127.36625185397911,56.82542545765735],[-127.36593675411392,56.825478088320004],[-127.36562809886075,56.82553849483954],[-127.3653237254324,56.82560445875008],[-127.36501178620875,56.825659295137825],[-127.36469874987044,56.825711901021954],[-127.36439228324517,56.825776764116355],[-127.36408366271574,56.825838287202544],[-127.36377392861668,56.82589757996615],[-127.36354763840708,56.82602547421819],[-127.36318007461527,56.82584107242397],[-127.36297311121669,56.82570204771752],[-127.36277521135885,56.82555844478803],[-127.36256323440278,56.82542283415889],[-127.36232901706018,56.82529642223599],[-127.36214688824522,56.82516385910383],[-127.36193728964916,56.82500805085032],[-127.36175351517576,56.824857574137646],[-127.36152155179136,56.82473674041768],[-127.36121079725892,56.82470862721862],[-127.3609123781457,56.82471064122214],[-127.36064114820688,56.82461039005246],[-127.36038386372334,56.824498785444376],[-127.36011960868368,56.82439285675771],[-127.3598563492188,56.82428579645824],[-127.35958708045189,56.82418328129149],[-127.35932985763745,56.82407279468244],[-127.35908460864795,56.823953216814346],[-127.3588264340192,56.82384498053061],[-127.3585352997848,56.8237617435689],[-127.35821785254645,56.823718004433374],[-127.35791200158127,56.8236539713607],[-127.35760417968356,56.82359219952315],[-127.35728956666715,56.823541704569706],[-127.35696648189104,56.82351258986385],[-127.35663910464604,56.823507052869324],[-127.35632170093585,56.8234644293304],[-127.35600418007448,56.82341844431113],[-127.35587456035319,56.82340747367686],[-127.35570944810952,56.8233498071658],[-127.35559723613922,56.82327925989768],[-127.35547239438708,56.8232290162854],[-127.35514646506084,56.82320665071981],[-127.35482808762065,56.82316515440281],[-127.35450682298712,56.82312929072044],[-127.35418749183867,56.82309004410559],[-127.35387288736878,56.823039540872784],[-127.35356997617849,56.82297098441303],[-127.3532651951048,56.82290805001251],[-127.35296658114459,56.82281591375322],[-127.35271339448126,56.822732267715374],[-127.35245020440385,56.822597175984676],[-127.35221541188862,56.82248195897415],[-127.35195820504644,56.822371458021614],[-127.3516859420967,56.82227007880424],[-127.35139589130154,56.822187935509334],[-127.3510841861171,56.82213179219157],[-127.35076281614847,56.822092558544384],[-127.35045419664475,56.82203638156263],[-127.35016407199255,56.82195199505177],[-127.34986412615949,56.82188003730304],[-127.3495760153868,56.82179450788492],[-127.34930380183106,56.821694243934296],[-127.34906767807058,56.82157007016434],[-127.34883454522173,56.82144362356758],[-127.34861148741501,56.82131146849633],[-127.34835634913834,56.82120093913142],[-127.34807515827862,56.82110748999105],[-127.34781394954747,56.82099926404787],[-127.34754900907105,56.82090116218774],[-127.34722890410733,56.82086863064099],[-127.34690233356704,56.820856337068264],[-127.34657784988451,56.82087427829726],[-127.34625938084358,56.82091793095886],[-127.34593712536122,56.82094145062765],[-127.34560945962298,56.82092692388935],[-127.34528292807589,56.820915746470895],[-127.34495756555056,56.82093817531842],[-127.34465311517974,56.821001850015506],[-127.34440034971566,56.82110645139506],[-127.34413863645884,56.82121898958808],[-127.34382705294166,56.821283856961365],[-127.3435048707702,56.8213096110604],[-127.34329777101368,56.821311758426525],[-127.34319214530018,56.82128259621323],[-127.34289916912961,56.82120382646319],[-127.34260215456831,56.82112733919559],[-127.3422793343271,56.82110490933859],[-127.34205358686948,56.82110164471825],[-127.34197036245776,56.821067766924806],[-127.34164960294788,56.82110470807642],[-127.34134465708684,56.8211538117498],[-127.34110910146059,56.82128176187975],[-127.34088493035073,56.821412955673686],[-127.34066491397445,56.82154522672356],[-127.34040199810127,56.8216532871413],[-127.34012638942865,56.82175027190585],[-127.339864550817,56.82183030407817],[-127.33963185166874,56.821981755380754],[-127.33935202125313,56.82207542020472],[-127.33906260472298,56.82215909773042],[-127.33878068231692,56.82225166228429],[-127.33847066674734,56.82230305276186],[-127.33814616701758,56.82232097289228],[-127.33781940625359,56.8223333123554],[-127.33748859933017,56.82234681339982],[-127.33727841500833,56.82246777071155],[-127.33709169288265,56.82261426026663],[-127.33686648333729,56.82274545771326],[-127.33664545086727,56.822878852951185],[-127.33637714774348,56.822980236820676],[-127.33608993982561,56.823068367396324],[-127.33581005427132,56.82316090439408],[-127.33558274790087,56.82329100055443],[-127.33536059700667,56.82342216381765],[-127.33511022799152,56.82353792850753],[-127.33483459261781,56.823634902130074],[-127.33459353400161,56.82375281117006],[-127.3344047284616,56.82389931826107],[-127.33423667624524,56.824052335212635],[-127.33415468280805,56.82423248185657],[-127.33407648073589,56.82440362430589],[-127.33398087771333,56.82457606650631],[-127.33386564600484,56.82474422814958],[-127.3336893465926,56.82489620866992],[-127.33356993399752,56.82506217181351],[-127.33350110216853,56.82523770008413],[-127.33343539262282,56.825414316840806],[-127.33333562194059,56.82558456022577],[-127.33316033377785,56.825736529639556],[-127.33295594767753,56.825877591741964],[-127.33271284081198,56.82599663895611],[-127.33249158240508,56.826124426160725],[-127.33228301309359,56.82626328892533],[-127.3320962537181,56.82640977162819],[-127.33191369384248,56.826559572817736],[-127.33173630630274,56.82671044123285],[-127.33159314947302,56.82687216405859],[-127.33146448496363,56.82703822038452],[-127.33141927117924,56.82721462559322],[-127.33142442604183,56.82739387521133],[-127.33147874591805,56.827571499043],[-127.33163086715088,56.82772906698029],[-127.33180436097246,56.827881932545324],[-127.33193718637597,56.82804530169999],[-127.33204327447284,56.82820670430571],[-127.33216519997583,56.82838139174486],[-127.33229290961717,56.828544813209795],[-127.33237788266156,56.82871875977166],[-127.33251987339908,56.82887979294829],[-127.33270646691027,56.829025798946894],[-127.33291142061375,56.82916825392928],[-127.3331152649095,56.82930847874249],[-127.33328773801699,56.82946135310597],[-127.33351577145295,56.82958900139513],[-127.33383528986845,56.82963278009125],[-127.33413006953803,56.82970258749936],[-127.33434618810767,56.82984156349025],[-127.33442084111269,56.830013373950855],[-127.33442520856677,56.83019935588227],[-127.33452429741544,56.83036531149053],[-127.33473837012127,56.830504308005814],[-127.33493922075495,56.83064680233013],[-127.3350466716967,56.83081715406097],[-127.33513982747846,56.8309898942963],[-127.33521051666328,56.83116510725622],[-127.33527708802258,56.83134036263118],[-127.33535289786157,56.831515522804764],[-127.33548272107201,56.831680040559164],[-127.33561361261806,56.831875925278176],[-127.33574538408543,56.83200792402562],[-127.33591383260801,56.83216195751015],[-127.33603145362382,56.832329962547284],[-127.33613788030607,56.832500324209605],[-127.33626466403193,56.83266599333332],[-127.33638939773682,56.832831683500444],[-127.33643761112022,56.833009369138395],[-127.33649911033469,56.83318579712816],[-127.3365493593904,56.83336346178115],[-127.33659552302704,56.83354116857227],[-127.33668052640971,56.8337151128563],[-127.3368195072066,56.83387729389001],[-127.33699707398594,56.834027870280806],[-127.33719998008654,56.83416921983881],[-127.3373866555544,56.83431633982998],[-127.3375267140359,56.834479629746795],[-127.33766972600868,56.83463952711383],[-127.33786859648814,56.834783158686],[-127.33807450080887,56.83492223476967],[-127.33830869714726,56.835048691282594],[-127.3385075497264,56.83519120149351],[-127.33870437491713,56.835334853017],[-127.3388799432846,56.83548656840118],[-127.33900979483832,56.83565108303173],[-127.33915490735019,56.835812077934136],[-127.33930916596682,56.83597073689431],[-127.33942579588953,56.83613874976534],[-127.3395169491802,56.83631150845882],[-127.33959786919911,56.83648549353105],[-127.33967474256319,56.83666064105575],[-127.33974442880523,56.8368358628508],[-127.33975576112316,56.837015049774784],[-127.33975790956141,56.837195452298936],[-127.33976412188595,56.837374692186586],[-127.33977853969279,56.83755384727889],[-127.33965543847982,56.83773218249678],[-127.3395320112885,56.837871298190095],[-127.33926632288977,56.83799171203947],[-127.33899485287974,56.83809313399587],[-127.33873076350888,56.83820008240117],[-127.33851576451194,56.83833229830568],[-127.33836019057937,56.83849191655392],[-127.33818072203107,56.83864281609782],[-127.33806132503511,56.83880990505795],[-127.33793262621413,56.838974848625604],[-127.33780600009703,56.839140891330274],[-127.33769693473354,56.83931011464555],[-127.33757343066664,56.839477245568354],[-127.33750662046566,56.83965163595985],[-127.33745837284077,56.83982919675676],[-127.33740603820924,56.84000679971902],[-127.33738658816027,56.84018630469982],[-127.33737637791684,56.84036571436657],[-127.33737745912386,56.84054500755579],[-127.3373507977767,56.84072346633553],[-127.33720034645219,56.840883030433076],[-127.33703340403964,56.84104052315181],[-127.33695100010668,56.8412094709518],[-127.33689438674827,56.8413826353373],[-127.33671175242391,56.841531324268296],[-127.33658302237107,56.84169626694754],[-127.33648117194038,56.841866535643554],[-127.33643398958048,56.84204520589957],[-127.33641142605454,56.8422236223523],[-127.3364063703138,56.84240409963433],[-127.33637970320108,56.84258255842303],[-127.33635817313458,56.84276096426723],[-127.33637769806762,56.84294006755394],[-127.33635675933633,56.84310614014891],[-127.3364049197422,56.84331184396879],[-127.3364299193417,56.84347071910454],[-127.33651289213412,56.84364468573439],[-127.33660913238317,56.843816274236495],[-127.33668907612633,56.84399139269264],[-127.33676591249038,56.844165422513704],[-127.33682537923535,56.844341872741396],[-127.33687525678728,56.84450833596056],[-127.3370704127944,56.84475062609111],[-127.33634936488573,56.8449104698813],[-127.33605615926612,56.84497848994848],[-127.33576441260846,56.84505882151632],[-127.3354511242529,56.845110237299316],[-127.33517431822176,56.84520722343866],[-127.33489536522912,56.84530198977604],[-127.33458855496131,56.845362301984785],[-127.3342590702761,56.845390347838126],[-127.3339409390108,56.84542051733911],[-127.33364473313603,56.84549080407145],[-127.3333752861424,56.84559331388802],[-127.33309739869775,56.84568918600152],[-127.33281417900416,56.845779509057415],[-127.33257100156517,56.845899677580185],[-127.332298115378,56.84599213458576],[-127.33197151653368,56.846014541635824],[-127.33164432188768,56.84602014416382],[-127.33131618663099,56.84602799683304],[-127.33098927826165,56.8460414393455],[-127.33066246896682,56.8460582419769],[-127.33034016505759,56.84608620409003],[-127.33001918681104,56.846123117029414],[-127.32969717383492,56.84616003978153],[-127.32938490260155,56.84621143033568],[-127.32908362166384,56.846283999883596],[-127.32879401804635,56.8463676555745],[-127.32852877127871,56.84647347409236],[-127.32829814031784,56.84660135047965],[-127.32807588563509,56.84673362326127],[-127.32784939382827,56.8468625770931],[-127.3276187747127,56.84699045213515],[-127.3273754801315,56.84710837065355],[-127.32712288188783,56.84722414263744],[-127.32705013780814,56.8473470385283],[-127.32712552314199,56.847540140025316],[-127.32721018484364,56.847704009538056],[-127.32738773922875,56.84785348014062],[-127.32757448192342,56.84800173578882],[-127.32772670614062,56.84816043059051],[-127.3278809671265,56.84831910438181],[-127.32804326107096,56.84847209246059],[-127.32811161218602,56.848639490577774],[-127.32809976670089,56.84883236461884],[-127.32812748072841,56.84901138558728],[-127.32816403568708,56.8491791094515],[-127.32817775495573,56.84936948037069],[-127.32816544753796,56.84954891136991],[-127.32820752644425,56.84972778525927],[-127.32821675703345,56.84990699566573],[-127.32819213745927,56.85008655285463],[-127.32812944766592,56.8502631380606],[-127.32804850346879,56.850446634164314],[-127.32798412371481,56.85060418547614],[-127.32786606487863,56.8507824583349],[-127.32778580614605,56.850955861380555],[-127.32771484984346,56.85113141044576],[-127.32765313552227,56.8513068648529],[-127.32771352892362,56.85148106893817],[-127.32789718194343,56.85162823563428],[-127.32817961884487,56.85172284001686],[-127.3285064827691,56.85173630127727],[-127.32882571632682,56.851766649779115],[-127.32910978477226,56.85184890822188],[-127.32930769414038,56.85199256491815],[-127.32947823983211,56.85214658783349],[-127.32965791409433,56.85229715496908],[-127.32976942915452,56.85246523078124],[-127.32990334832297,56.85262859410686],[-127.33002409196621,56.85279657510371],[-127.3301529296843,56.85296111100934],[-127.33027873699436,56.853126798563906],[-127.33040354964793,56.853293616889445],[-127.3305334085327,56.85345814202516],[-127.33063986916436,56.85362851046843],[-127.33066451185401,56.85380756311125],[-127.33067893218524,56.85398784133494],[-127.33059971374786,56.85416123585969],[-127.33049368317847,56.85433154347796],[-127.33039898589185,56.85450285540198],[-127.33029193557444,56.85467317333588],[-127.33015273509886,56.854833735042],[-127.33005080528994,56.85500400026718],[-127.32985252559591,56.85514835771467],[-127.32969160996632,56.85530465899116],[-127.3295834978123,56.85547386659981],[-127.32948259817698,56.85564412084181],[-127.32937344978308,56.855813338916626],[-127.3292767301002,56.8559857914873],[-127.32917688428104,56.85615715537769],[-127.3290180526102,56.85631455514801],[-127.32884880369329,56.85646757883151],[-127.32852894270012,56.85647982143813],[-127.32820132875824,56.85647533275071],[-127.3278762077072,56.85645400779999],[-127.32755756921884,56.85641244378454],[-127.32724080778068,56.856365256480856],[-127.32691488463864,56.856350661307715],[-127.32658754122927,56.8563540104103],[-127.32626482443669,56.856373000609494],[-127.32594711272547,56.856417714006966],[-127.32564513076072,56.85647235176189],[-127.32533737511012,56.856538254414694],[-127.32501465616446,56.85655724150522],[-127.3246873108405,56.85656058581221],[-127.32436222941182,56.85654037231875],[-127.32405815037579,56.8564739965328],[-127.32373523751802,56.856457121316055],[-127.32340937137336,56.85647389521749],[-127.32308072368315,56.85646940415149],[-127.32275309404456,56.85646490186895],[-127.32242630715778,56.85645478687022],[-127.32209857913567,56.85644692196294],[-127.3217762809356,56.85647822394356],[-127.32145056702466,56.85649947399657],[-127.32113574978264,56.856448890060356],[-127.3208228544213,56.8563949238193],[-127.32050522011251,56.856352211674775],[-127.32021593763017,56.856267745764754],[-127.3199062848478,56.85621822696708],[-127.31957767800057,56.856214847293444],[-127.31925008918031,56.85621145643114],[-127.31892171189936,56.856214796708166],[-127.31859553984991,56.8562225963607],[-127.31826823502968,56.856227044734176],[-127.31794361570516,56.85625051616605],[-127.31762361378532,56.85628850841268],[-127.3173035948173,56.85632650003762],[-127.3169790668617,56.85635220942877],[-127.31665459840798,56.856380158714316],[-127.31633348341843,56.856415917743995],[-127.31601236783456,56.85645167597945],[-127.31570873882384,56.85651863439623],[-127.31542221433334,56.856605590419214],[-127.31505165513228,56.85669675998114],[-127.31470237955962,56.85671935262264],[-127.31462621327812,56.85680417405532],[-127.31452000182595,56.85700136571133],[-127.31426083831032,56.85710821360838],[-127.31414847249708,56.857275209598484],[-127.31396654114202,56.85741937657262],[-127.31372739646996,56.85754170975207],[-127.31343667889338,56.85762646248609],[-127.31311354261139,56.85763309682283],[-127.31278369957262,56.8576241090483],[-127.31245372088378,56.85761063918168],[-127.31212577844082,56.857597147875175],[-127.311798718507,56.85757916418816],[-127.31147060284333,56.85756006969953],[-127.31114459955279,56.85754319434023],[-127.310818841016,56.8575330396289],[-127.31050507635358,56.85757431308684],[-127.31018011550798,56.85758768248972],[-127.30985864415804,56.85755282761679],[-127.30954374115132,56.85749997512986],[-127.30921884955819,56.8574853250301],[-127.30889122934663,56.857480787561165],[-127.30856280244377,56.85748298133969],[-127.30823550730963,56.85748852483553],[-127.30790871557325,56.85747837325052],[-127.30758546583812,56.85748163299456],[-127.30725707675899,56.85748494373969],[-127.30693156858463,56.85748262134296],[-127.30660470146874,56.85747022592581],[-127.3062773468282,56.8574735237679],[-127.30595112373942,56.85748017135267],[-127.30562277239034,56.85748459823334],[-127.30529536327674,56.85748677348861],[-127.30501730462571,56.857490692610426],[-127.30464848149275,56.85745181876617],[-127.30433655982911,56.85739556176313],[-127.30401987790887,56.857350558430795],[-127.30372164716194,56.85730424818616],[-127.30337064479735,56.85730665578408],[-127.30304461153092,56.85731889742863],[-127.30271750586193,56.85733002837052],[-127.30239060524251,56.85734675969532],[-127.30206722782516,56.85737690266322],[-127.30177429665068,56.8573966533144],[-127.30142777554515,56.857410217196254],[-127.30110309833405,56.857432526218346],[-127.30078534881481,56.85747717800375],[-127.30047306082002,56.85753186011567],[-127.30015107535813,56.85757319085316],[-127.29986098529724,56.85764670003234],[-127.29961977979781,56.857770148062315],[-127.29936915652335,56.85788808673399],[-127.29908369489243,56.85797723692159],[-127.29876187251419,56.85799278751256],[-127.29844125614868,56.85801392849302],[-127.29813880707228,56.85808643686441],[-127.29784477612834,56.85816558419442],[-127.29753236553736,56.858216898420196],[-127.2972122520475,56.85825259979672],[-127.29690211802719,56.858310613636895],[-127.29659740685119,56.858377537732984],[-127.29629376666202,56.8584455710531],[-127.29598040886967,56.85849913227981],[-127.29566262824028,56.85854377170899],[-127.29533795459658,56.85856606615087],[-127.29500959280752,56.85857046616517],[-127.29468187356761,56.858563652408655],[-127.29435679101306,56.858543363681335],[-127.29403244307646,56.858514101595205],[-127.29371199662963,56.85847919652269],[-127.29339053272653,56.8584443008124],[-127.29307097191446,56.85840490272913],[-127.29275039372074,56.858365514007616],[-127.29243079673705,56.858324994071005],[-127.29211990384859,56.85826869751055],[-127.2918207812866,56.85819547319914],[-127.29150499204471,56.85814594786961],[-127.29121205003395,56.85807378128073],[-127.2909615983375,56.85795188243272],[-127.29069833940022,56.85784579970407],[-127.29039558788705,56.857787176760624],[-127.29007405792257,56.857750032289154],[-127.28974565237925,56.85772192061119],[-127.28941928334667,56.85769378785815],[-127.28909413611746,56.85767124539469],[-127.28876636723002,56.85766217597459],[-127.2884386941555,56.857656466725714],[-127.28811198091292,56.85764850581638],[-127.28778396216512,56.85766297004494],[-127.28745992600878,56.857704289496425],[-127.2871933045329,56.85780555334799],[-127.2870635789295,56.85794804276334],[-127.28701820090986,56.858126676438616],[-127.28697384050382,56.85830530001544],[-127.28693759414026,56.858480481123294],[-127.28680548731221,56.85864428629341],[-127.28677036985106,56.85882281813102],[-127.28674134603436,56.85890715488201],[-127.2867721974857,56.85900098340725],[-127.28679458777843,56.85918006532799],[-127.28689591831397,56.85935612266615],[-127.2869027101964,56.859436742125006],[-127.28690893184574,56.8595308150567],[-127.28683557226412,56.85970188192384],[-127.28678392147926,56.85987721597284],[-127.28680936209882,56.86005514707994],[-127.2869013546059,56.86022793523388],[-127.2870554960855,56.860386658781984],[-127.28708508082671,56.860565669434145],[-127.28710952609218,56.86074473110826],[-127.28719946895858,56.86091753949725],[-127.28730267188051,56.86108797493208],[-127.2874446310099,56.86125018102918],[-127.28758452225905,56.86141240752898],[-127.28777015960578,56.86156073186229],[-127.28793549580519,56.86171598147487],[-127.28810996651976,56.86186777822547],[-127.28828526993951,56.86201396323324],[-127.28845177774005,56.86217368324766],[-127.28857329342345,56.86233833270449],[-127.28869791836601,56.8625040718346],[-127.28880216670579,56.86267449596891],[-127.28888291353266,56.86284851555567],[-127.28897591916314,56.86302017198189],[-127.28909446456686,56.86318821256902],[-127.28921802251142,56.863352841289206],[-127.28939147106547,56.863504646758095],[-127.2895720390894,56.86365413992853],[-127.28973635688874,56.863809397739196],[-127.28986407895627,56.863975105203984],[-127.28997342277566,56.86414435731934],[-127.29009502597049,56.86431124612348],[-127.29023186842592,56.86447350062965],[-127.29037278025005,56.864634593880425],[-127.29048007533495,56.864803866062246],[-127.29055776312352,56.86497791539697],[-127.29065590523076,56.865149519869746],[-127.29075610106689,56.86532110385854],[-127.29089398452015,56.865483347474814],[-127.29104311428486,56.86564435837793],[-127.29114429390836,56.86581481170239],[-127.29127811242078,56.86597821611479],[-127.291408919411,56.8661438917142],[-127.29147228116777,56.8663192040056],[-127.29153464628632,56.866495646872046],[-127.2916134143645,56.866670805744626],[-127.29171049331816,56.866841299623275],[-127.29181476665258,56.867011721807685],[-127.2919170254213,56.86718328465839],[-127.29198673744172,56.86736413689739],[-127.29206715009737,56.86752695201065],[-127.29212450806592,56.86770680662574],[-127.29218380712707,56.86788327993],[-127.29228017320442,56.868062745939206],[-127.2923348052592,56.86822245584144],[-127.29239465434182,56.86850762755039],[-127.29215645123793,56.86847750146927],[-127.2918493957389,56.868415561567744],[-127.29153553847135,56.868364895258765],[-127.29121582258264,56.86832325178463],[-127.29089614482434,56.868282727809365],[-127.29057742759137,56.868239952181455],[-127.290256716475,56.868199436927306],[-127.28993400686016,56.86816006141941],[-127.28961429439333,56.86811841400386],[-127.28930044247174,56.86806774229731],[-127.28900134511083,56.867997872047354],[-127.28874486395893,56.867881630779934],[-127.28859539877226,56.8677105344315],[-127.28842155145196,56.867577782464735],[-127.2881196611183,56.86754716099124],[-127.28779480521652,56.86753581798833],[-127.28745598942093,56.86753693995434],[-127.28711432633652,56.86754481322779],[-127.28677782466615,56.86755375505526],[-127.28645066496532,56.86756596532905],[-127.2861239691055,56.8675916180536],[-127.28580390013875,56.86763177279465],[-127.28549261812603,56.867688649505425],[-127.28519332665138,56.86776669913195],[-127.28492139370488,56.86786464887115],[-127.28470934035367,56.86800346928209],[-127.28452332887953,56.86815323802978],[-127.28433306092224,56.868298566028855],[-127.28407275708403,56.86840648473123],[-127.2837776377063,56.86848673105736],[-127.28346307193183,56.868538032048285],[-127.28314325287334,56.86858602226542],[-127.28284223765388,56.86851951880243],[-127.28255685008158,56.86842932636492],[-127.28226356570482,56.86834817662493],[-127.28195946611267,56.868281701646154],[-127.28164562290742,56.8682310114157],[-127.2813211868398,56.86820171752368],[-127.28099870924024,56.86816904151939],[-127.28067527175725,56.86813861550666],[-127.28035187191887,56.86810930897674],[-127.28002934236089,56.86807551043829],[-127.27970781096664,56.868040580602184],[-127.279385373184,56.868009020879505],[-127.27906193831164,56.86797859084775],[-127.27873854103703,56.86794928029896],[-127.2784132395664,56.86792447033394],[-127.27809646448416,56.867878283115665],[-127.27777589706999,56.86784109772268],[-127.27745440671542,56.86780728259593],[-127.27713979785932,56.8677644336945],[-127.27681545961616,56.867737368959986],[-127.27648833030979,56.86771929611527],[-127.27616146040197,56.86770906447219],[-127.27583897485643,56.86767637581413],[-127.27551463826401,56.86764930782896],[-127.27518845462424,56.86762898111529],[-127.27486158582498,56.86761874619759],[-127.27453288600712,56.86761525236755],[-127.27420679350823,56.86759716360441],[-127.27388149791392,56.86757234228161],[-127.27356576584167,56.86752613384932],[-127.2732607637749,56.86746300954465],[-127.27296852454107,56.86738182884699],[-127.27267632344729,56.86730176778531],[-127.27240703973105,56.86720018888835],[-127.27215677269655,56.86708385447348],[-127.27189045242048,56.8669788835272],[-127.27163820918886,56.866864808838606],[-127.27138593057313,56.866749613377614],[-127.27111660080946,56.86664691170869],[-127.27083430520464,56.86655554304562],[-127.27054901345281,56.86646644443666],[-127.2702587298586,56.86638187670713],[-127.26994586203088,56.86632890768315],[-127.26964694004123,56.866262353601265],[-127.26937347565733,56.86615856824403],[-127.26906450815781,56.8661302132723],[-127.26875317681106,56.86618592947086],[-127.2684295888304,56.866212627862716],[-127.26810126934008,56.866220320645944],[-127.26781972665957,56.86630824221615],[-127.26761272417387,56.86644586400433],[-127.26743183123676,56.86659667814751],[-127.26717650554941,56.866701151885515],[-127.26683274422265,56.866770628034594],[-127.26661579735304,56.86685567476965],[-127.26634907451209,56.8669568961966],[-127.26602555184934,56.86698582918851],[-127.26573135069499,56.867063783864666],[-127.26540442513364,56.86708266265012],[-127.2650831371326,56.86711717472722],[-127.26479007782204,56.8671984780609],[-127.26449587255516,56.86727642994577],[-127.26417674510337,56.86731428064686],[-127.26386648875591,56.867372215821014],[-127.26358544967125,56.867444434085556],[-127.2633066900097,56.86755473162977],[-127.26302843419012,56.86764933456344],[-127.26273631155821,56.86772838278382],[-127.26246337689527,56.86782853593994],[-127.26218184627086,56.867917565657834],[-127.26189346640639,56.86801674723515],[-127.26158584964251,56.86806120341792],[-127.26127018657355,56.868111340350204],[-127.26095223007786,56.86815365425455],[-127.26062993103086,56.86818928567865],[-127.26031197319233,56.86823159801588],[-127.25999756107494,56.86828844357019],[-127.25970117519199,56.86836304369375],[-127.25950543271813,56.86850054299043],[-127.25950595419607,56.868674238603916],[-127.25947778578266,56.86884933344576],[-127.25935497682364,56.86901974387528],[-127.25917194999474,56.869169446384106],[-127.25896181352806,56.86930708459141],[-127.25872452716182,56.86943041745218],[-127.25845129813777,56.869522720365566],[-127.25816345706569,56.86960731986859],[-127.25787772438417,56.86969413958069],[-127.25757499833388,56.86976319299847],[-127.2572967125693,56.869857783771494],[-127.25705511252808,56.869975552097415],[-127.25685853642115,56.87011977934901],[-127.25668169056914,56.87027053906994],[-127.25648821951779,56.87041585633006],[-127.25629985166717,56.87056000323036],[-127.25577281408829,56.87039476736739],[-127.25549254411814,56.87030222493037],[-127.25523024398932,56.870193818936386],[-127.25496696338163,56.870086542568494],[-127.25473391875256,56.86996216350055],[-127.25447269421906,56.86985486628702],[-127.2541824567424,56.86977138270013],[-127.25391429553295,56.86967199600848],[-127.25362208025663,56.86959077161753],[-127.2533541035101,56.86949698526528],[-127.25305693151147,56.86942141076722],[-127.25275672558793,56.86934698555097],[-127.25245072483087,56.86928382208403],[-127.25213783803504,56.86922968955869],[-127.25182299153566,56.86917893714378],[-127.25150720013514,56.869130434385944],[-127.25119629640017,56.869074039192796],[-127.25089319034716,56.86900524095121],[-127.25058514227415,56.868942092895544],[-127.2502810925513,56.86887554364202],[-127.24998096872831,56.86880335262386],[-127.24968084602706,56.86873116091484],[-127.24938464937163,56.86865332747849],[-127.24909942784315,56.86856530188014],[-127.24882614725759,56.86846595425075],[-127.24854385488356,56.86837341668235],[-127.24828162355817,56.868266117071684],[-127.24801837538665,56.86815882673561],[-127.24773710549259,56.86806627763279],[-127.24744195257438,56.867988429841255],[-127.24713197374842,56.86792865426353],[-127.24682008751628,56.86787337887227],[-127.2465101828826,56.86781584240891],[-127.24621296491777,56.867738011719965],[-127.2459109129381,56.86766919195615],[-127.24560684516007,56.867601511504205],[-127.24530575780217,56.86753043980557],[-127.24500759839378,56.86745485674104],[-127.24469377433643,56.86740295685332],[-127.24437800640673,56.867354436797406],[-127.2440612406469,56.86730704619603],[-127.2437426555394,56.867266396139655],[-127.24341825636208,56.86723700748131],[-127.2430930917754,56.867215469859815],[-127.24276612687963,56.86720179318235],[-127.24243919825011,56.8671892359796],[-127.24211032492794,56.867180058507806],[-127.24176271297463,56.86719459310522],[-127.24149441988638,56.86728120946615],[-127.24118504009081,56.86733571974884],[-127.24089289157104,56.867414718606035],[-127.24038126186117,56.86747004092878],[-127.2400643779974,56.867514534481806],[-127.23976474444623,56.867584637181544],[-127.2395084824585,56.86769466790952],[-127.23916918475972,56.86771247799119],[-127.23887849094642,56.8677735280766],[-127.23866632503102,56.86791339333311],[-127.23839016708293,56.868011284732745],[-127.23810022389473,56.86809585939373],[-127.23777558045596,56.86812249107099],[-127.23745206254797,56.868152473124205],[-127.23713183077157,56.868189146884355],[-127.23680340265416,56.86822589799759],[-127.23649011246776,56.868254659478815],[-127.23616882476769,56.86829022026982],[-127.23587965843926,56.868366938013914],[-127.23556647393099,56.86839905817114],[-127.23524291616515,56.86842791441914],[-127.23492605434437,56.86847351574969],[-127.2346047633843,56.8685090726721],[-127.23429664937508,56.86857139883392],[-127.23399603399903,56.86864373870639],[-127.23369111309283,56.868709394967865],[-127.23338083562106,56.86876837758159],[-127.23307589626084,56.86883403255844],[-127.23278063199851,56.86891304257363],[-127.2324885258597,56.86899426318844],[-127.23220175743492,56.86908215628964],[-127.23196224604435,56.86920321922796],[-127.2317437092986,56.86933753026916],[-127.2315178340614,56.869467428038],[-127.23132218354952,56.86961160687355],[-127.23110781993081,56.86974811850962],[-127.23092466376868,56.86989778138142],[-127.23078708436852,56.87005933865319],[-127.23065989591852,56.8702252797803],[-127.23055236235717,56.870395516919956],[-127.23043552543007,56.87056360093595],[-127.23031970586135,56.87073167520646],[-127.23017903297148,56.87089326120577],[-127.2300248979018,56.871051612772284],[-127.22986974318043,56.87120997382652],[-127.22971872927643,56.87136941609103],[-127.22956878461338,56.87152996869326],[-127.22937418686524,56.87167525527871],[-127.22917448200906,56.87182171060443],[-127.22897163269096,56.871965954123645],[-127.22875394575735,56.872095769495026],[-127.22846204154791,56.8721523248325],[-127.22814517679522,56.87219903001575],[-127.22785625020168,56.87228469251706],[-127.22757480183232,56.87237924875279],[-127.22728930031957,56.87247608400095],[-127.22703825412033,56.87259052302661],[-127.22693873320165,56.87275507821316],[-127.226925143143,56.872941233564],[-127.22696056670316,56.873119080893034],[-127.22701038021265,56.87329679213924],[-127.22702941349908,56.873475915155105],[-127.22693421047195,56.87364715343602],[-127.22688953522241,56.87382463770447],[-127.22689008804555,56.87400393556158],[-127.22696040038831,56.87418033243865],[-127.22705692801938,56.87434191298408],[-127.22704276845171,56.87451014360694],[-127.2271564719137,56.87469509522116],[-127.22730770969848,56.87486512332304],[-127.22742921824808,56.87503655318547],[-127.22751687392213,56.87520942390362],[-127.22761985162478,56.875379908321904],[-127.22773916728144,56.87554687614539],[-127.22788091292098,56.87570914902938],[-127.22800228417377,56.87587609721263],[-127.2280725885769,56.87605249385431],[-127.22804434353013,56.876229823299674],[-127.22798631456942,56.876407434652464],[-127.2279499809795,56.87658932325158],[-127.22790952085697,56.876770130265136],[-127.22783070604874,56.87694009378218],[-127.22761407701437,56.877072138636024],[-127.22735812556118,56.87719446928296],[-127.22706748410462,56.877259974512704],[-127.22673577691161,56.877260869849955],[-127.22640575100932,56.877250541981724],[-127.22607949306378,56.87722897120542],[-127.22575516589644,56.87720401943307],[-127.22543074892421,56.87717570576404],[-127.22510731543204,56.87714626135648],[-127.22478381136928,56.877114575522235],[-127.22446107772409,56.87707503709515],[-127.22413739722283,56.87703774809767],[-127.22381428540503,56.87701838326609],[-127.22348997226064,56.877025924455374],[-127.22316524368892,56.87705251972307],[-127.22284074657028,56.877086956511036],[-127.22251731931289,56.877122503047715],[-127.22219601589529,56.877160270058084],[-127.2218768362684,56.87720025755804],[-127.2215566728699,56.87724137417499],[-127.22123533209492,56.87727801849779],[-127.22091277863197,56.87730907020581],[-127.22058686928371,56.87733118751756],[-127.22026088876042,56.87735106338706],[-127.21993490790159,56.87737093843792],[-127.21960794353579,56.87739194255653],[-127.21926939317183,56.87740408956641],[-127.21892771871323,56.87741514439577],[-127.21860294837504,56.877440607940514],[-127.21831413169316,56.87749935241182],[-127.21810360872217,56.87763020312068],[-127.21793860558014,56.87780433134765],[-127.21773752447226,56.87794181669974],[-127.21744633127848,56.87799049571346],[-127.21710529769942,56.877989212591565],[-127.21676345737325,56.87799466000575],[-127.21645176212989,56.87804464967843],[-127.2161510913093,56.878118068797214],[-127.21585582727133,56.87820040170181],[-127.21556572298717,56.87828380623301],[-127.21528204144819,56.87837499446213],[-127.21501205121697,56.87847726030121],[-127.21474941515496,56.87858505994389],[-127.21449414963972,56.87869839328182],[-127.21424723799099,56.8788161305133],[-127.21400560798479,56.878938300431244],[-127.21376301184985,56.879062720220766],[-127.21353291199108,56.879192625903435],[-127.21332104694385,56.87931451615344],[-127.21316819615278,56.87948404202069],[-127.21310240512943,56.879646029946166],[-127.21300238630347,56.879829630075484],[-127.21280191044131,56.87998727364379],[-127.21261240336166,56.88013472859434],[-127.21235921019664,56.88024915896966],[-127.21209420091135,56.88034688954878],[-127.21203811094733,56.88052335473458],[-127.21201196694548,56.880705143432216],[-127.21198987624862,56.88088465299441],[-127.2120161453827,56.88106707281774],[-127.21206295220622,56.88124930082489],[-127.21204570627387,56.8814198000403],[-127.21180528263281,56.881548678454465],[-127.2115257296333,56.88164206109278],[-127.21123934673238,56.881746713330415],[-127.21101557525155,56.88181716125435],[-127.2107511677718,56.881967553787106],[-127.21047059051202,56.88206094368243],[-127.21015767691927,56.88207282739934],[-127.20984804691068,56.88205890489897],[-127.2095211436132,56.8820507458931],[-127.20919350244806,56.88205155810349],[-127.20886563439122,56.882045647728745],[-127.2085394509364,56.88202739374103],[-127.20821219762601,56.88200802825271],[-127.20788582079703,56.88201666990725],[-127.20755854885968,56.882029801648834],[-127.20723161126533,56.882020516557034],[-127.20690542879531,56.88200225846266],[-127.20657828154205,56.88198624981132],[-127.20647193927255,56.88219904039674],[-127.2065278151931,56.882376703403956],[-127.20655600833167,56.882555744452986],[-127.20656777112494,56.88273493828942],[-127.20656006581503,56.88291543380519],[-127.2066230698291,56.883090789300034],[-127.20673617553994,56.88325895502212],[-127.20684422582947,56.883429408979616],[-127.20696960311345,56.88359521913627],[-127.20715907502986,56.88374138200558],[-127.20739022444185,56.88387370910846],[-127.20754532775294,56.88400450218144],[-127.20768429735568,56.88417802979989],[-127.20776691761185,56.88435656433417],[-127.2077777028736,56.8845368880706],[-127.20771463542962,56.88472126108965],[-127.20764935466454,56.884900051456455],[-127.20755800527006,56.88506675726064],[-127.20748521078639,56.885235531663106],[-127.2073257636702,56.885392785093664],[-127.20711524907706,56.8855269797559],[-127.20687899642931,56.885659172138865],[-127.20666247335392,56.88579790452795],[-127.20645263937959,56.885920885306405],[-127.20625589813608,56.886068398292565],[-127.20609856658204,56.886227871852796],[-127.2059701299925,56.88639155931311],[-127.20586658560867,56.88656285989906],[-127.20578577469271,56.886738431788736],[-127.20572659231146,56.88691604399842],[-127.20569207451581,56.88709342705942],[-127.20568740214065,56.88727277416022],[-127.20570535955913,56.88745303169543],[-127.20573049823284,56.88763322253433],[-127.2057504751271,56.887812340698545],[-127.20576741425442,56.88799260775349],[-127.20579046446261,56.888171697403706],[-127.20582174781738,56.88835071057921],[-127.20587759465496,56.888527254247826],[-127.20596823889228,56.88869899198868],[-127.20607321157047,56.888869475893706],[-127.20613523922688,56.88904596209175],[-127.20622693970135,56.88921881056543],[-127.20629200666883,56.889394147843554],[-127.2063437837951,56.88957184993959],[-127.20639043411707,56.88974959969353],[-127.20644735591117,56.889927253978335],[-127.20646012075979,56.890105318728644],[-127.20649344658003,56.890284313024154],[-127.20649904872653,56.89046356504697],[-127.20649236045921,56.89064405198856],[-127.20648358285963,56.89082343772057],[-127.20647480517852,56.89100282347277],[-127.20646602741581,56.89118220924524],[-127.2064551952867,56.891361614132734],[-127.2064062968039,56.89153913155638],[-127.20638515776638,56.891717511622936],[-127.20642666687121,56.89189530942118],[-127.20643641260021,56.89207564377147],[-127.20645639506839,56.89225476234202],[-127.20648254074763,56.892433823644616],[-127.20650868666942,56.89261288496278],[-127.20653277847282,56.89279196539251],[-127.20654968842072,56.89297111259936],[-127.20657643377119,56.89313672056884],[-127.20650361627513,56.89333799426428],[-127.20643227575444,56.89352132376428],[-127.20637164680842,56.8936855025878],[-127.20632897827535,56.89386520362455],[-127.20623029822545,56.894028615378566],[-127.20597409659429,56.89414866452301],[-127.20570711481807,56.894253124144605],[-127.20555793044062,56.89441140123394],[-127.20551418688224,56.894589991375646],[-127.20549411249131,56.89476948236222],[-127.20542046515013,56.89494498825481],[-127.20534990708535,56.89512046543335],[-127.20529069130122,56.89529695792657],[-127.20524591003286,56.89547555769501],[-127.2052316476607,56.89564378822388],[-127.20525006161357,56.89583861108226],[-127.2051996267004,56.896000453566955],[-127.20509803770838,56.896169494871366],[-127.20510164963508,56.896351007371514],[-127.20482941718075,56.89645215195472],[-127.20463728132924,56.896518933061536],[-127.20427575099129,56.896623146422165],[-127.20392728415428,56.89661965477792],[-127.20362746390191,56.89669303630743],[-127.2033425484429,56.896783088789434],[-127.20307134384076,56.8968842201154],[-127.20278956915664,56.89697648357093],[-127.20251839665107,56.897078734085596],[-127.20223445994169,56.897167654387054],[-127.20193145387195,56.8972376994979],[-127.20160394622879,56.897247455358205],[-127.20127645485684,56.897257210240426],[-127.20095824591695,56.897301618698805],[-127.200670106642,56.89738721246012],[-127.20041774915993,56.89750049105419],[-127.20016969005681,56.89761933268392],[-127.20000062884647,56.89770158267808],[-127.1999236676167,56.89773815500938],[-127.1996735160091,56.897855894368604],[-127.19940642191332,56.897958100618254],[-127.19912991468651,56.89805478999131],[-127.19887345545574,56.89816810343865],[-127.19861481924956,56.89827807451135],[-127.19834780543495,56.898382519125605],[-127.19810804086111,56.89850464216924],[-127.1978954887895,56.89864220282724],[-127.19767977542794,56.898777550992165],[-127.19745257774015,56.89890740145608],[-127.19722539496132,56.8990372513819],[-127.19701901923588,56.89917587429171],[-127.1968095681777,56.89931452522363],[-127.1965949175643,56.899450982432676],[-127.19638021426726,56.89958631911589],[-127.19616449031614,56.89972166484632],[-127.19593208390715,56.899849319313844],[-127.19570071155425,56.899976963837936],[-127.19565927513908,56.899999758563716],[-127.19547141069086,56.90010570952589],[-127.19523269660802,56.90022893819544],[-127.19494968617038,56.90031559254126],[-127.19465622720871,56.900396739138294],[-127.19436276701317,56.90047788507625],[-127.19407351913085,56.90056235356504],[-127.19378958843434,56.900652375782784],[-127.19352147487743,56.900755699818816],[-127.19323647121587,56.90084461002263],[-127.19293659782299,56.900917967063194],[-127.19262924629217,56.90098242686404],[-127.19233253032931,56.90105799479959],[-127.19206019661488,56.901157992577716],[-127.19178894987222,56.901260221109226],[-127.1915250401529,56.901366864349185],[-127.19128003743138,56.90148678141642],[-127.19105383790499,56.901616611408684],[-127.19083497531108,56.90175085632613],[-127.19060240080744,56.901874020071084],[-127.19034482096222,56.901986206111694],[-127.19008717052415,56.90209615097348],[-127.18979898945157,56.90218284136219],[-127.1895246208936,56.902283973064876],[-127.18925316881833,56.902379474192735],[-127.18902177728869,56.90250822751371],[-127.18882882210735,56.90265007633385],[-127.18859000207057,56.90277105231613],[-127.18839289967204,56.90291181779794],[-127.18830574129096,56.90308519641009],[-127.18812733753055,56.90323251428335],[-127.18783393260408,56.903216147800286],[-127.18757366025775,56.90330818112976],[-127.18734849130718,56.90343911583767],[-127.18711380609793,56.90356117192178],[-127.18692097646918,56.90370749936419],[-127.18675199234653,56.90386033249692],[-127.18661300239302,56.90401961522277],[-127.18663498846993,56.904199839787985],[-127.18672560189883,56.904372713199784],[-127.18683156792024,56.904543204929304],[-127.186950797254,56.90471021338368],[-127.18705063461711,56.90488188167161],[-127.18715556774082,56.90505238266243],[-127.18726253879542,56.90522174430484],[-127.18735008309307,56.90539464550772],[-127.18739255495763,56.90557244149614],[-127.1873970693275,56.90575282593178],[-127.18739847488197,56.90593211816188],[-127.1873885857335,56.90611151370077],[-127.1873817709061,56.90629088114558],[-127.18732452893961,56.90646846842097],[-127.1872641775351,56.90664496346134],[-127.18720486135763,56.90682144902366],[-127.18718467900631,56.90700093875277],[-127.18720150536254,56.907180090130026],[-127.1872152409356,56.90735926978706],[-127.18720431477135,56.90753867494971],[-127.18719955400041,56.90771802376188],[-127.18719967482696,56.907989221939815],[-127.18733829457466,56.90815157060766],[-127.18748201078166,56.908312751889895],[-127.18766037276889,56.90846353023573],[-127.1878438314716,56.90861314108221],[-127.18801708448296,56.90876508638758],[-127.18817612475206,56.908922764835374],[-127.18833920778829,56.90907816480093],[-127.18852267204483,56.90922777474858],[-127.18870510187662,56.90937739393402],[-127.18890274867768,56.90952014961138],[-127.18909841072505,56.90966516450935],[-127.18926863323793,56.909818256748714],[-127.18941849503251,56.90997825925025],[-127.1895601878809,56.91013945709995],[-127.18966720169152,56.91030993781938],[-127.18973428428716,56.91048526697024],[-127.18978602990374,56.91066297795499],[-127.18986335575326,56.91083709257871],[-127.18996729805107,56.91100760130202],[-127.19006407388378,56.91117929630608],[-127.19010951845154,56.911386202209066],[-127.19030344922234,56.91150769756726],[-127.19059950984445,56.91157446457961],[-127.19096312211624,56.91163164613391],[-127.19107358018418,56.91171356206367],[-127.19080930365027,56.91184374117106],[-127.19076032536682,56.91202237556116],[-127.19098414361713,56.912179457145356],[-127.19113909926524,56.9123371700172],[-127.19130120732696,56.912493696457595],[-127.19141944463779,56.91266071118003],[-127.19149469182764,56.91283372357174],[-127.19154126726785,56.913010361005874],[-127.19158171137319,56.91318817536873],[-127.19165295320236,56.91336458648561],[-127.19173848017552,56.91353750451158],[-127.19185368218662,56.91370566751679],[-127.19194551026034,56.913783271206135],[-127.19215270748168,56.91390128040476],[-127.19218104040482,56.91398619077834],[-127.19218965453786,56.91416541795553],[-127.19219215326835,56.914345821956864],[-127.19219116063415,56.91448031078933],[-127.19204659568784,56.91469232270032],[-127.19195322587018,56.91486464135077],[-127.1918649858777,56.915036912868636],[-127.19169706049053,56.915191984907324],[-127.19145820641606,56.915314087504996],[-127.19119951976992,56.91542628558083],[-127.1909123122284,56.91551409004203],[-127.19065370993819,56.9156296482397],[-127.19057154189814,56.91579850123554],[-127.19052770472423,56.91597708881656],[-127.190491122711,56.91615785122734],[-127.19043906226669,56.91633651419009],[-127.1903497579856,56.91650767384195],[-127.19021505599152,56.91667364615365],[-127.19006171375254,56.91683530647036],[-127.18991971912592,56.916997983313706],[-127.18981797334672,56.917165894626756],[-127.1898161951691,56.91734185544598],[-127.18987116388617,56.91752402042178],[-127.18988296351216,56.917706580892606],[-127.18983509510588,56.91778770738388],[-127.18954873125534,56.91780377841379],[-127.18933381520884,56.91783600457098],[-127.18901129330081,56.917879301491446],[-127.18870229715549,56.917928077146456],[-127.18860852435216,56.91812168989435],[-127.18862700316876,56.918320999368134],[-127.18864670942101,56.9184934016404],[-127.18864425139621,56.918680575434735],[-127.18863552251109,56.91886444463934],[-127.18865344948203,56.919045828592374],[-127.18862499177105,56.91922315438476],[-127.18853988788742,56.91939763654452],[-127.18843007916844,56.91957122403799],[-127.18833153365358,56.91974358773699],[-127.18821850947639,56.91991272182191],[-127.18808888325289,56.92007752500719],[-127.1879374709018,56.92023580331784],[-127.18776218189555,56.920386455122596],[-127.18757238066598,56.92053387737429],[-127.18737741208484,56.9206802259184],[-127.18718762438647,56.92082764748614],[-127.1870133839505,56.92097940937188],[-127.186853705656,56.92113664130994],[-127.18669412945911,56.92129723412719],[-127.18654386417212,56.92145998303721],[-127.18640810878247,56.92162596125631],[-127.18629501975494,56.921793973673864],[-127.18622614033818,56.921961582281284],[-127.18623144618641,56.92213411675748],[-127.18623001240633,56.922321281492],[-127.18624079452218,56.92250497268667],[-127.18630791720776,56.92268142536607],[-127.1863955313086,56.92285544954727],[-127.18651289722354,56.92302696060515],[-127.18666691088056,56.923186930111136],[-127.1868615795952,56.92333083864246],[-127.1870704184701,56.92346789340065],[-127.18728231658447,56.92360379921808],[-127.18749727395166,56.92373855607968],[-127.18771629392496,56.923872154796044],[-127.18793735339104,56.92400461384771],[-127.18816045396622,56.92413705387956],[-127.18838559404973,56.924268354225404],[-127.18861175546823,56.924399644861296],[-127.18883890370036,56.924529805427056],[-127.18906708972301,56.92465995612164],[-127.18929429201803,56.9247912361179],[-127.18952144485914,56.92492139552395],[-127.18974761397236,56.92505268423907],[-127.18997276480238,56.92518398191365],[-127.19021994744313,56.925329646101325],[-127.19133198388866,56.92564220633829],[-127.19193213015713,56.92596169631555],[-127.19264957436883,56.92718112839746],[-127.19295239561444,56.92909133968258],[-127.19267791509016,56.930325482414936],[-127.19329835003845,56.93159735702299],[-127.19398314389153,56.93268708881704],[-127.19428541081298,56.93424429595628],[-127.19416164698848,56.93552861205925],[-127.19300063977201,56.936668922691105],[-127.19064024421793,56.93854529902121],[-127.18932702788976,56.939192750979814],[-127.18753466028699,56.93941534784004],[-127.18619661471814,56.93962592886793],[-127.18606896902688,56.93999131542875],[-127.18566165377352,56.94032787472423],[-127.18481613900668,56.94093403016691],[-127.18352744693152,56.941782922137534],[-127.18266717471228,56.94305040082719],[-127.18223955968351,56.944169371301676],[-127.18272535928791,56.94477908628494],[-127.18355263750801,56.94545181114299],[-127.18411580290778,56.94616728241277],[-127.1845146842908,56.946893214528316],[-127.18449758888951,56.94791095391427],[-127.18434099075687,56.9490431546059],[-127.18434616390574,56.95102000235066],[-127.18368507204343,56.95170852379226],[-127.18312705240788,56.95233670734844],[-127.18296071562222,56.95325382519274],[-127.18263317492135,56.95374766793456],[-127.18234265009653,56.95430729408115],[-127.1825260109553,56.9551181278315],[-127.18295437112002,56.955729490867135],[-127.18297962469336,56.95628400403104],[-127.18293461929375,56.95793631598562],[-127.18287158280052,56.95923577472493],[-127.18284240782728,56.95982776734851],[-127.18285455622967,56.960659213257415],[-127.18281845441612,56.96139471863543],[-127.18222894469228,56.96200749771295],[-127.18172868467789,56.962577997307314],[-127.18165536118599,56.96337547975887],[-127.18096967458655,56.96414378383197],[-127.18035895794984,56.96446984866441],[-127.17999952145787,56.96466587099446],[-127.17939077480203,56.96532588160958],[-127.179317990871,56.966815951297185],[-127.17932227218866,56.967426694113364],[-127.17924682259292,56.9682578175946],[-127.17914856736253,56.96884819739971],[-127.17872687788558,56.969299180066585],[-127.17834764963266,56.969320547897574],[-127.17801784170194,56.96934258767636],[-127.17762138146854,56.969373075082814],[-127.17725738273299,56.96942119865391],[-127.17684569049467,56.96942492473463],[-127.1764332001897,56.9694365016394],[-127.17603750160515,56.9694580117006],[-127.1757076911766,56.96948004562343],[-127.1753601567815,56.969528015014305],[-127.17499391205321,56.96960417004029],[-127.1746286527225,56.969679194424785],[-127.17429809178435,56.96971019713787],[-127.17424865416729,56.9697095228199],[-127.17399898789917,56.96975996695909],[-127.17354563348557,56.96981561087616],[-127.17245011510083,56.97015049495436],[-127.1721343344342,56.97022730760861],[-127.17180176125933,56.970294184485475],[-127.17143626717385,56.970361357035486],[-127.17105700795737,56.97038270377256],[-127.17084103453746,56.970423872806336],[-127.17077388654431,56.970450253411364],[-127.17048950608903,56.97054471057206],[-127.17018817946217,56.97065725078863],[-127.16990381251145,56.97075170653382],[-127.16960372476616,56.97083733742524],[-127.1693025981803,56.970922976957155],[-127.16898600537067,56.97100763409969],[-127.16865370835504,56.97108346597421],[-127.16832064433191,56.971168269485545],[-127.16800304380087,56.97125405396509],[-127.16768644541543,56.97133870796331],[-127.16731919606823,56.971450712612345],[-127.16695191064854,56.971561595836995],[-127.16666679692416,56.97166613743556],[-127.16638268526188,56.971769548715756],[-127.16609753454144,56.97187296868494],[-127.16554085422328,56.97195192482245],[-127.16517125466387,56.97198661608774],[-127.16455968221123,56.97208847375288],[-127.1643799801058,56.972376981933145],[-127.16437262787224,56.972508169698294],[-127.16416523919189,56.97269830384258],[-127.16391028456452,56.972847397407435],[-127.16367310554172,56.97300529703883],[-127.16341814697834,56.973154389670185],[-127.16316572496046,56.97328552790356],[-127.16287980384323,56.97339791324263],[-127.16259568658872,56.97350243691786],[-127.16231051287737,56.9736058487063],[-127.16224283941828,56.97364904006876],[-127.16202159483991,56.973789983770025],[-127.16181460960676,56.97399355897259],[-127.16114590193197,56.97414858364243],[-127.16065792712088,56.97432216481951],[-127.16053946625222,56.97449132697804],[-127.16066468112389,56.97495642136383],[-127.16047361262642,56.97514192121968],[-127.16034826323386,56.97535597278774],[-127.16029007658933,56.97554364901686],[-127.16007427107085,56.97589971565508],[-127.15983947301793,56.97593318916925],[-127.15968333482282,56.97577432097877],[-127.15952117366736,56.975621109828595],[-127.15930803251254,56.975484042708594],[-127.15908066716995,56.975353826227064],[-127.15885434098938,56.975223600114894],[-127.1585936237492,56.97511385259042],[-127.15834100830838,56.97499954961146],[-127.1580893646177,56.97488299611091],[-127.1578519152182,56.974759591589844],[-127.15762862570234,56.97462709503334],[-127.15739825853993,56.97449914389923],[-127.15714056291064,56.9743871253095],[-127.15687610886584,56.974289735441026],[-127.15675508876197,56.9741339138203],[-127.15663266201258,56.973965776925894],[-127.15636302350619,56.97386731148325],[-127.15605419132021,56.97380057344584],[-127.15573093656225,56.97376758381729],[-127.15541845932304,56.973716566467026],[-127.15511567169465,56.973645289742024],[-127.15483286756364,56.97355366231929],[-127.15454608171498,56.97346655243819],[-127.15425929716314,56.973379441929985],[-127.15395276613785,56.97332052345931],[-127.15365299701014,56.9732469752234],[-127.15333836744246,56.973192609952676],[-127.15303466728156,56.97312469866533],[-127.15274485950904,56.97303985308805],[-127.15243322859492,56.97298209699202],[-127.15212364080605,56.97292432206172],[-127.1518061372678,56.97287670278192],[-127.15148388150423,56.97284257317654],[-127.15115687318954,56.972821933209026],[-127.15083532132259,56.97281133041735],[-127.15041169110202,56.97276128466399],[-127.15019934942073,56.97271833478006],[-127.1498770295218,56.97268196039523],[-127.14954926979954,56.97267028862506],[-127.14922070667592,56.97266646800596],[-127.14889108911514,56.97266153517523],[-127.14856264281106,56.972661073952665],[-127.14822110761062,56.97267081372016],[-127.14798736465653,56.972601152476436],[-127.1479109413561,56.97242027421758],[-127.14768768311741,56.97228776095375],[-127.14740611101111,56.97220171032047],[-127.14707874336172,56.972168735694105],[-127.14680875235902,56.97226413434657],[-127.14659542704942,56.972396015853086],[-127.14633426791006,56.97251150817481],[-127.14601655848561,56.97245715251041],[-127.14572176612367,56.9723768182076],[-127.14541423505244,56.97231788865074],[-127.14508716783965,56.97229499262754],[-127.14475934627605,56.9722810679867],[-127.14443335059664,56.972259281589956],[-127.14410626765977,56.972235262554015],[-127.14382957613535,56.97214019576366],[-127.14352300440939,56.97207901196035],[-127.14320158424944,56.97203813046327],[-127.14286553827476,56.97198953183783],[-127.14259924431299,56.971897733205765],[-127.14229078396534,56.971842166605335],[-127.14196966598793,56.9718113656925],[-127.14164922084187,56.97176823045189],[-127.1414169648328,56.971643630544385],[-127.14111376250176,56.97159137713141],[-127.14078726801176,56.9715875171508],[-127.14050793655043,56.97164600162307],[-127.14022740356901,56.971629409554915],[-127.13993560981132,56.9715456739764],[-127.13961444637212,56.971512626305284],[-127.13928931550114,56.971485216066554],[-127.13898096260135,56.97143300284139],[-127.13867331691571,56.97136957577317],[-127.13835582635033,56.97132192385741],[-127.13803738170773,56.97127652090888],[-127.13747088315212,56.97119854539867],[-127.13715489599007,56.97116656712745],[-127.13702841401086,56.970997327721506],[-127.13688464203041,56.97083496351459],[-127.13674600939524,56.970672554257376],[-127.13660734487482,56.97050902446735],[-127.13650250683494,56.97034071619988],[-127.13637713402056,56.970173707994334],[-127.13627840734574,56.970003104819156],[-127.13621554836236,56.96982658478737],[-127.1361218786417,56.96965257529414],[-127.13590386446852,56.96952111742848],[-127.13566749059977,56.96939542300071],[-127.13545855267475,56.96925716103671],[-127.13527201179643,56.96911085841958],[-127.13509774051583,56.96896108640136],[-127.13495301281975,56.968800970142134],[-127.13482766826446,56.96863508116268],[-127.13473002283868,56.96846558833871],[-127.13447842034358,56.96820666275057],[-127.1344040517964,56.968163604595006],[-127.13411990536277,56.96809323807004],[-127.13390979787305,56.96805472538664],[-127.13353231797375,56.9680311196082],[-127.13336853450836,56.96802806432868],[-127.13304048990088,56.96800514697879],[-127.13269522097693,56.96799134433828],[-127.13233496722813,56.967958619549385],[-127.13195920312872,56.9678531840154],[-127.13152801063612,56.96782331583436],[-127.13112527323517,56.96781561250296],[-127.13074932967952,56.96777405431194],[-127.13035484293111,56.96776739755001],[-127.1299758353716,56.9677617257834],[-127.1296488324802,56.96773879086882],[-127.12932001783585,56.96772483637142],[-127.12899070774866,56.967728816349585],[-127.12882697522116,56.96772687561119],[-127.12854683679537,56.967722582825274],[-127.12825125224927,56.96771842344363],[-127.1281029495186,56.96771634792908],[-127.12775713943556,56.96771934722534],[-127.12658590782124,56.96776424007319],[-127.12639466645373,56.96812451655354],[-127.1262645121052,56.96870840133366],[-127.12643572701913,56.969317693453384],[-127.12672034035519,56.969967468759535],[-127.12654766515573,56.970540516012264],[-127.12622738087761,56.97088958291221],[-127.12548250860269,56.971083186084364],[-127.12457828377445,56.971567300791236],[-127.12318140001958,56.972387388745105],[-127.12135035217831,56.97417611986396],[-127.1196365407176,56.974973125765956],[-127.11875072833529,56.97513988580138],[-127.11808175021514,56.97515012074826],[-127.1178457260425,56.97524852876359],[-127.11687739430458,56.97587210621245],[-127.11587547686108,56.97661699921519],[-127.1157503933244,56.976813072471764],[-127.11564816368697,56.97687446664723],[-127.11522483007224,56.97711904544028],[-127.11492907823771,56.977217960189044],[-127.11426595987955,56.9775744186208],[-127.11339490314433,56.97807610214449],[-127.11307218548743,56.978382571410414],[-127.11287302338825,56.9785815171898],[-127.11278663413431,56.978763808330825],[-127.11255053601208,56.978967552365674],[-127.1123071559031,56.979169116860085],[-127.11200353023929,56.97931740268211],[-127.11168315545098,56.97945574469476],[-127.11138030425582,56.97959505689416],[-127.11098461949359,56.979693695629216],[-127.11065425713831,56.979771602997104],[-127.11030470754298,56.97989898374514],[-127.10999447603882,56.97999689006361],[-127.1097091131141,56.98010018695923],[-127.10942324370646,56.980221418619706],[-127.10907195490311,56.98032415562607],[-127.10870596039831,56.98041693077696],[-127.10838764552344,56.980520505581026],[-127.10806826905367,56.98065883010301],[-127.10771645042021,56.9807794990054],[-127.10738239793292,56.98090898125504],[-127.10709499433797,56.98101341042696],[-127.10674391746342,56.98112398413131],[-127.10647608045899,56.98122824546051],[-127.10622213298981,56.98135031920453],[-127.10591924714898,56.98148961887055],[-127.10559985377999,56.98162793742428],[-127.10517150838774,56.981738042798426],[-127.10438696540452,56.98206746468676],[-127.1039318627361,56.982394086744726],[-127.10369386542921,56.98253395125365],[-127.10323618906905,56.982699212963546],[-127.10296201454507,56.98283490013545],[-127.10279774669735,56.98299655175442],[-127.1024757826925,56.98318979831999],[-127.10272631583348,56.98348690006299],[-127.10289241825845,56.98364126843129],[-127.10299720979658,56.98381184613477],[-127.10314395240427,56.9839731025305],[-127.1032456487983,56.98414370633357],[-127.1034005345751,56.98430153136085],[-127.10360233602123,56.98444326855758],[-127.10370489655874,56.98460826128274],[-127.10369459737757,56.98478765974621],[-127.1036853195263,56.98496704956601],[-127.10380635160513,56.98512964419932],[-127.103957642691,56.985233705868296],[-127.10418921696129,56.985335965351794],[-127.10437757513401,56.985511436460314],[-127.10440125012455,56.98569054672905],[-127.10443316283227,56.98586958709055],[-127.10445066015005,56.98604874983785],[-127.10446713617152,56.98622792127564],[-127.10449904963076,56.986406961686704],[-127.1045525147097,56.98658357776357],[-127.10461423444144,56.98676012376363],[-127.10467697621691,56.98693666108306],[-127.10473559968636,56.987113233365655],[-127.1048055102874,56.98728858911048],[-127.10489397313422,56.98746378730264],[-127.10510685825741,56.9875964629631],[-127.10533820010522,56.987725619416345],[-127.10545204788323,56.98788827398965],[-127.10542009090481,56.98806673635875],[-127.10540566331072,56.988246170515154],[-127.10534065717397,56.988421551578476],[-127.10536949547021,56.98860061821784],[-127.10546406168056,56.9887735229817],[-127.10550006879635,56.98895140803855],[-127.10555153109321,56.989129161795276],[-127.1056142810248,56.98930569894858],[-127.10568523762846,56.98948104566347],[-127.10576336298337,56.98965521074732],[-127.10585279282684,56.98982815903924],[-127.10594837007827,56.98999993434899],[-127.10603371452717,56.99017403799353],[-127.10612314678959,56.99034698616109],[-127.10620537941635,56.99051999550075],[-127.10627736252603,56.990695333353756],[-127.10633703711417,56.990871896543474],[-127.10639979348637,56.99104843352861],[-127.10652408265224,56.99121548167594],[-127.10661248146265,56.99138843845778],[-127.10664231729464,56.99156637606422],[-127.10664952904159,56.99174562679484],[-127.10666807742822,56.991924781135545],[-127.10673185864827,56.99210130939944],[-127.10681515158086,56.99227543029979],[-127.10690665195806,56.9924483606587],[-127.10694164754557,56.992626254454315],[-127.10697357781245,56.99280529504194],[-127.10700135665728,56.992983250260345],[-127.1070332874978,56.9931622908772],[-127.10706212073721,56.99334135786274],[-127.10708375324621,56.99352048612566],[-127.10710436429974,56.993699623098806],[-127.10715170426703,56.993877411988024],[-127.10720008281608,56.99405519204909],[-127.10721141726623,56.99423440800391],[-127.1072073113368,56.994413755350436],[-127.10718980817285,56.99459321670223],[-127.10715788590169,56.99477280074639],[-127.10710217006798,56.994949225111945],[-127.10703407877949,56.995124634041744],[-127.10698872568378,56.99530321164657],[-127.10696916120952,56.99548269060019],[-127.10696093422501,56.995662073135485],[-127.106951668971,56.995841464523195],[-127.10695482755284,56.996022991664645],[-127.10681514267628,56.99618107826593],[-127.10662785276277,56.99633172460369],[-127.10645713750802,56.99648559187184],[-127.10628538267439,56.9966394677578],[-127.10611570290534,56.9967933257853],[-127.10595119564012,56.99694826034497],[-127.10578881138545,56.99710541807243],[-127.10562744755681,56.997262566934],[-127.10547336496347,56.99742189516262],[-127.10532961326317,56.99758225618006],[-127.10521704997446,56.997752438536644],[-127.10519844991971,56.9979296678456],[-127.1053135742221,56.99810015802377],[-127.10533310906463,56.99827818422624],[-127.10532075376622,56.998457601993536],[-127.10533081732035,56.99862898444596],[-127.10510704870354,56.9987653693271],[-127.10485066392052,56.99887849589153],[-127.1045805895784,56.99898165178074],[-127.10431049813113,56.99908368654418],[-127.10404358353486,56.99918905591029],[-127.10376823436896,56.99928777202194],[-127.10349602992761,56.99938870229431],[-127.10324695118864,56.99950512584515],[-127.1030512301827,56.99965023506288],[-127.10294994110325,56.99981919930858],[-127.10296438800329,56.99999951051966],[-127.10297657689951,57.00013725405888],[-127.10295290307026,57.00031788835554],[-127.10291889613245,57.000497489523895],[-127.10286003848226,57.0006728184492],[-127.10276812119118,57.00084506535134],[-127.10265031415285,57.0010130487081],[-127.1025149064128,57.001177818938906],[-127.1023691002474,57.00133931498679],[-127.10221406222811,57.0015020097636],[-127.10203187073442,57.00165260649241],[-127.10180046900754,57.00177560186842],[-127.10152734818271,57.00188101858912],[-127.10122899018621,57.00196871694284],[-127.10092478353002,57.00203180852248],[-127.1006053821837,57.00203226828185],[-127.10023269993407,57.002007401390145],[-127.09994212403545,57.00197063254119],[-127.09961609440964,57.00195545599837],[-127.09930324382715,57.00200516831275],[-127.09898635240606,57.00205715540136],[-127.0986661057046,57.00210020438294],[-127.09834237606452,57.00212983348516],[-127.09801524421431,57.002148283415714],[-127.09768592400776,57.00216226815171],[-127.09735767386671,57.002177363737566],[-127.09702940698627,57.00219245863473],[-127.09670070945332,57.00219186644578],[-127.09637068637244,57.00218119823861],[-127.0960405677728,57.002167167883],[-127.09571270100898,57.00215984197087],[-127.09538623883152,57.002165951881906],[-127.0950658915833,57.00220563069712],[-127.09474690067265,57.00225650436771],[-127.09442449175457,57.002296198935035],[-127.09409882432016,57.00233031656184],[-127.09377539540243,57.00233415551187],[-127.09345272184001,57.00229203839289],[-127.09312712592038,57.002255548549996],[-127.09279565143532,57.00223031430487],[-127.09248409686566,57.00218025651673],[-127.09221242826212,57.002083914404096],[-127.09196270918306,57.001961611393234],[-127.0917059950488,57.00184721152938],[-127.09139949204003,57.001793746713304],[-127.0911741327841,57.0017676185623],[-127.09087356835988,57.00192367444783],[-127.09064872276194,57.00206116391967],[-127.09041113319299,57.00218531131049],[-127.09016935811198,57.00230725191216],[-127.0899256164012,57.00243257064371],[-127.0896617213893,57.00253788494969],[-127.08934580275738,57.00258871959366],[-127.08901136488343,57.002603845865046],[-127.0886940902142,57.00257063743197],[-127.08838799044368,57.00249474802721],[-127.08807723967567,57.00243682806241],[-127.0877512424433,57.00242274223719],[-127.08741846937272,57.00242440206099],[-127.0870860607973,57.002438385732404],[-127.0867621928828,57.00246350428311],[-127.08647409811776,57.00255108284172],[-127.08622716580776,57.00267305907618],[-127.08596838638135,57.002777202419665],[-127.0856357365631,57.00278333944721],[-127.0853150968393,57.002740064519394],[-127.0849935622538,57.00270127908276],[-127.0846816420561,57.00271172369346],[-127.08441969000971,57.00273968252369],[-127.08401511955901,57.00275313879865],[-127.08371094158792,57.00281843106341],[-127.08341222041456,57.00289488422587],[-127.08311461453798,57.00297468952647],[-127.08281589096794,57.00305114132876],[-127.08251611279131,57.00312648050705],[-127.08221741835403,57.00320405138525],[-127.0819197446297,57.0032816130882],[-127.0816210163053,57.00335806216462],[-127.08131907865683,57.00343005439735],[-127.08101385235994,57.00349534901658],[-127.08070324577099,57.003552842662025],[-127.08038606493506,57.00359582098654],[-127.08006246584391,57.003631006867906],[-127.07973666517022,57.00366060668786],[-127.07941091034849,57.00369244671455],[-127.07908841078265,57.00372986245086],[-127.07877132088338,57.00377619817398],[-127.07845540910313,57.00382812687346],[-127.07814267289666,57.00388339060703],[-127.07783001501912,57.003940894341035],[-127.0775183781442,57.003998388866805],[-127.07720570191738,57.00405589124231],[-127.07689088684236,57.004110048448084],[-127.07657712415856,57.00416531688591],[-127.07626653686542,57.00422392041505],[-127.07596239676907,57.004291435527],[-127.07566786346105,57.0043711982646],[-127.07538185216816,57.00446097624992],[-127.07509898446585,57.00455296904296],[-127.07481297049583,57.00464274578961],[-127.07451950183444,57.004723617818286],[-127.07421859342277,57.004796705657654],[-127.07391552968768,57.00486644846961],[-127.07360927225096,57.004932854803386],[-127.07330303024088,57.00499926028382],[-127.07299677069099,57.0050656651828],[-127.07269268065714,57.00513541358487],[-127.07239491038112,57.00521071271919],[-127.07209934067625,57.005290475852696],[-127.07179944521313,57.00536354971176],[-127.07148895102955,57.00542550309185],[-127.07119012299725,57.00549968745204],[-127.07090093162648,57.00558724027108],[-127.07061277740648,57.00567478391228],[-127.07027317284037,57.00576499134523],[-127.06999338713598,57.005782981250555],[-127.06967848551939,57.005834880185695],[-127.06936469842387,57.005890131305236],[-127.06905196353595,57.00594649372422],[-127.068740328426,57.006005087761636],[-127.0684307839382,57.00606478459066],[-127.06812133176395,57.006127842027446],[-127.06781500861675,57.00619199375794],[-127.06750454700203,57.00625617869994],[-127.06719300022282,57.00631813038797],[-127.06688676718082,57.00638564128517],[-127.0665776514101,57.00646101999022],[-127.06636068622464,57.00658943681898],[-127.06619394764071,57.0067454594754],[-127.06606872835663,57.00691234893641],[-127.06599117935627,57.007088934258185],[-127.06586786347872,57.00725020445034],[-127.06565110861952,57.00738646330651],[-127.06544583208124,57.00752823137186],[-127.06526865889117,57.007679855470705],[-127.06511018443058,57.007836929858605],[-127.0649610825109,57.007997289495684],[-127.06480469706884,57.00815546713863],[-127.06462651091904,57.00830821937346],[-127.06436988168116,57.008419026026445],[-127.06408178433719,57.00850991673173],[-127.06390226190992,57.00865147186699],[-127.06377606635579,57.008820608595535],[-127.06362385588201,57.008980992134525],[-127.06343726388957,57.00912820791889],[-127.06311043931021,57.00927208586191],[-127.06291974010553,57.009382351232205],[-127.0627283106068,57.0095038293191],[-127.06246330156272,57.00961021778704],[-127.06219096326925,57.0097121826968],[-127.06191442387198,57.00981193989312],[-127.06163996020635,57.009911679570216],[-127.06137076217964,57.010015858549615],[-127.06111202060269,57.01012555525979],[-127.06086794949893,57.010244097536265],[-127.06063658076125,57.01037486360856],[-127.06042191224132,57.010513338168494],[-127.06023120999883,57.01066170353631],[-127.06006746654379,57.010815452639434],[-127.05992658939742,57.01097686030964],[-127.05980027619012,57.0111426320976],[-127.05968434173435,57.011311681409175],[-127.05957774963719,57.01148289600457],[-127.05941935966399,57.011644445691296],[-127.05920126735296,57.01180872232965],[-127.05906793344393,57.01194429154957],[-127.05905933987785,57.01211919137045],[-127.05890038071423,57.01222246844245],[-127.05871488605791,57.01237303070345],[-127.05853778732049,57.01252912796687],[-127.05828185729115,57.01262983054258],[-127.0579628854125,57.01268621670393],[-127.05764290473101,57.012743730978244],[-127.05737761305186,57.01284114569469],[-127.05716384889769,57.01297624545293],[-127.05696797800225,57.01312464806057],[-127.05676059450289,57.013266419589634],[-127.05652387943022,57.013391618234465],[-127.0562777433617,57.01351128935283],[-127.05601908675067,57.013625458029765],[-127.0557739863044,57.013745119790705],[-127.05557269979745,57.01388459857584],[-127.05540176407095,57.01404064161216],[-127.05525780315133,57.01420319003881],[-127.05516767072518,57.01437426773893],[-127.05516028192541,57.014555881918994],[-127.05517347174278,57.014736208646475],[-127.05519905810813,57.01491755563834],[-127.05521637015127,57.01509784900183],[-127.05520992800305,57.01527609348608],[-127.05515907433436,57.015451335782174],[-127.05505660333527,57.01562363422107],[-127.05491371872002,57.01578841507787],[-127.05474374919324,57.015942208125],[-127.05454782316659,57.01608948693914],[-127.05432479538429,57.01622577784616],[-127.0540754731854,57.01634322921974],[-127.05379544429363,57.016430669546715],[-127.05348274013964,57.016491476674595],[-127.05316053743002,57.01654451492597],[-127.05285199825346,57.01660752825446],[-127.05255156871625,57.016702975785776],[-127.05227582846801,57.01683408571187],[-127.05224312190626,57.01695762776557],[-127.05234898577211,57.0171349646245],[-127.05252646742254,57.01729267052444],[-127.05272671444263,57.017453554284025],[-127.05291044371253,57.01761345062481],[-127.05306632718325,57.01777245122769],[-127.05322323425399,57.01793144339277],[-127.05337605105049,57.01809158919327],[-127.05351552488266,57.01825408421212],[-127.05363345822086,57.018420115530425],[-127.05370527045363,57.01859548565664],[-127.05373599711592,57.018776791791524],[-127.05374194518171,57.01895605704259],[-127.05371178377914,57.0191344938076],[-127.0536816527783,57.01931405104854],[-127.0536865618311,57.01949332477498],[-127.05371620539856,57.01967239837818],[-127.05374893282004,57.019851447044545],[-127.0537631260118,57.0200306457103],[-127.05375360689405,57.02021003628081],[-127.05373895701624,57.02039058909971],[-127.05372223155346,57.02057003802369],[-127.0536993363374,57.02075065759951],[-127.05368572488078,57.02093120207427],[-127.05369164236222,57.021109347134164],[-127.05374898365898,57.021283713984836],[-127.05387523387063,57.02145191964041],[-127.05401886110019,57.02161438100346],[-127.05418603296675,57.02177104808869],[-127.0543449915923,57.02192890219505],[-127.0544547251376,57.02209612041239],[-127.05451938643853,57.02227378994773],[-127.05457070270833,57.022453808967825],[-127.05463942644957,57.02262920417652],[-127.0547573473309,57.02279411451924],[-127.0549122819253,57.02295536282655],[-127.05509386225548,57.023110791542955],[-127.05529882032161,57.023253702763945],[-127.0555259777919,57.02337962307592],[-127.05580866539866,57.023462505751986],[-127.05613387497291,57.02351702517746],[-127.05643690216216,57.02358965515216],[-127.0566874414304,57.02370305599645],[-127.05691683791233,57.023834559379814],[-127.05714925829565,57.02396379641098],[-127.0574110701865,57.024074862998575],[-127.05769939085238,57.02417450665454],[-127.05798560425886,57.02427304609616],[-127.05823716069698,57.0243853151094],[-127.0584243907725,57.02452052073833],[-127.0585423028448,57.02468430740742],[-127.05861222531618,57.02486529480095],[-127.05865342737988,57.02505099850544],[-127.05867793634613,57.02523011363181],[-127.05865920113477,57.02541070101617],[-127.0586209038853,57.025592568142024],[-127.05859697532786,57.02577207705713],[-127.05862243101494,57.025947822444586],[-127.05871373317399,57.0261185497452],[-127.05884510492828,57.02628446839093],[-127.05898167081972,57.02645146541563],[-127.05908943752895,57.02662093794734],[-127.05917365944661,57.02679620547385],[-127.05925168085582,57.026971523401805],[-127.05934301908896,57.02714337084865],[-127.05946410548727,57.02730937269488],[-127.05962203873152,57.02746610895595],[-127.05980660573415,57.027615904035585],[-127.06000241231192,57.027762245257385],[-127.06020631256429,57.02790291674341],[-127.06042957555397,57.028035585270466],[-127.06065282568511,57.02816713282682],[-127.06078498214913,57.02839804511675],[-127.06089070057514,57.02856753317951],[-127.0609984816208,57.02873700438216],[-127.06111756379835,57.028905262737716],[-127.06124384032627,57.02907234167679],[-127.06137115705532,57.02923941204569],[-127.06149128152667,57.029407661651234],[-127.06159700583855,57.02957714926033],[-127.0616811363894,57.02974905426086],[-127.06173959682123,57.02992453064037],[-127.06177854115654,57.030102407547545],[-127.06180306789066,57.03028152271753],[-127.0618194260812,57.03046294593557],[-127.06183265256593,57.0306432739856],[-127.06184690182728,57.03082359372021],[-127.0618621594451,57.03100278453709],[-127.06187227090518,57.0311820173278],[-127.06187824230794,57.031361283891464],[-127.06188322202478,57.03154167928253],[-127.06188817085791,57.031720954227694],[-127.06189518159455,57.031900212386724],[-127.0619012006415,57.03208059937369],[-127.06190821150436,57.032259857577074],[-127.06191418324195,57.032439124274305],[-127.06192020246232,57.032619511328456],[-127.06192617431161,57.032798778070216],[-127.06193318542175,57.03297803636242],[-127.06194022753024,57.033158415146346],[-127.0619482779863,57.033337665011025],[-127.06195837396582,57.03351689822254],[-127.06197366410554,57.033697209834145],[-127.06199408660946,57.033876358903925],[-127.06201556297803,57.034056620125405],[-127.06203910153042,57.034236864555176],[-127.06206054737368,57.0344160053442],[-127.06207892310435,57.034596291907434],[-127.06209212128802,57.034775499982096],[-127.06209707151078,57.03495477532555],[-127.06209481292076,57.03513410946541],[-127.06208013463333,57.03531242416087],[-127.06205412318455,57.0354908312714],[-127.06201780119795,57.035669322452314],[-127.06197220781253,57.03584788922275],[-127.06191625618007,57.03602541970749],[-127.06185103288352,57.03620302575898],[-127.06177856896076,57.0363795700845],[-127.06169777759067,57.03655394080369],[-127.06161078470993,57.03672724129969],[-127.06151025528682,57.03689616915266],[-127.06138384729219,57.03706194560617],[-127.06124188763472,57.03722448645843],[-127.06109374032215,57.037387077562514],[-127.06094869324659,57.03754964325918],[-127.06081606327167,57.03771434914523],[-127.06070518598472,57.03788223997784],[-127.06060784379031,57.038054503440726],[-127.0605198032577,57.0382278118521],[-127.06044007254465,57.03840329403105],[-127.06037068307575,57.03857981273489],[-127.06031163498778,57.038757367980445],[-127.06026495976556,57.0389348225249],[-127.0602337426987,57.039112151275106],[-127.06022941292245,57.039291502688194],[-127.0602498755521,57.0394728938189],[-127.06029091582957,57.039651876053966],[-127.06034428279774,57.03982963725353],[-127.06042435298359,57.040002698210536],[-127.06053838182083,57.04017324127137],[-127.06065749739348,57.04034150139627],[-127.06074991306775,57.04051334100471],[-127.06080943943373,57.04068993127382],[-127.06086491998386,57.04086879593998],[-127.06091523693027,57.041047702655256],[-127.0609562963965,57.04122780548939],[-127.06098602147586,57.0414080006354],[-127.06100127928165,57.04158719288361],[-127.06099895336762,57.04176428688669],[-127.06097817301686,57.04194601410201],[-127.06093596183268,57.042135760941925],[-127.06086062792917,57.04232129456664],[-127.06074148785314,57.04248925314289],[-127.0605699824521,57.0426284989219],[-127.06033573755789,57.042736874653755],[-127.06005241442153,57.04282323468102],[-127.05973773538858,57.0428952796425],[-127.05940838757685,57.04295847727654],[-127.05908305451962,57.0430182792527],[-127.05877113467716,57.043077971417546],[-127.05845478054886,57.04312649156411],[-127.05813306190242,57.043167209401695],[-127.05781024145071,57.04320569392834],[-127.05748745116435,57.0432452981347],[-127.05716459860913,57.04328266058526],[-127.05683852029883,57.04331556548165],[-127.05651138766066,57.04334735737875],[-127.05618640927771,57.04338249317396],[-127.05586681009478,57.0434254296634],[-127.05555469742683,57.043478391271044],[-127.05525225653113,57.04354584326575],[-127.05495519421079,57.04362109610408],[-127.05466247081998,57.043704158238235],[-127.05437399404506,57.04379166825924],[-127.05408979452787,57.043884746676234],[-127.05380878776202,57.04398116083177],[-127.05353092650158,57.044079790400595],[-127.05325721954358,57.04417950652009],[-127.05298560437217,57.04428032588458],[-127.05271614232706,57.04438448946838],[-127.05244874135862,57.04448863584345],[-127.05218242327864,57.04459501437842],[-127.0519171432495,57.044701383984986],[-127.05165296256531,57.044809985632085],[-127.05138873325357,57.04491746640375],[-127.05112451896541,57.04502494651451],[-127.05086028669986,57.04513242623096],[-127.05059499930674,57.045238793186364],[-127.05032868740484,57.04534516785595],[-127.05006023374641,57.04544931777953],[-127.04978970195106,57.04555236315971],[-127.04950966468834,57.04564763943317],[-127.04921387309885,57.04573295539625],[-127.04891280966982,57.045813830204295],[-127.0486180244801,57.04589801597413],[-127.04834105342916,57.04599214431242],[-127.04809136727106,57.04610398425922],[-127.04786481257018,57.046231327917255],[-127.04764664305856,57.04636420740973],[-127.0474358826785,57.04650375135488],[-127.04723453302482,57.04664770224657],[-127.04704051497023,57.04679607683578],[-127.04685483761415,57.04694774632136],[-127.04667640041826,57.04710047812158],[-127.04650629004456,57.04725538426969],[-127.04634441258159,57.04741022409503],[-127.04619101453291,57.04757284075569],[-127.04605329065835,57.04774317653044],[-127.04594047063145,57.04791891593259],[-127.04586480923695,57.04809547775864],[-127.04583649878892,57.04826829735988],[-127.04587204194198,57.04843724232559],[-127.04597571744787,57.0486078819163],[-127.04612674611059,57.048774779135485],[-127.04629930504085,57.048937020424205],[-127.0464737312495,57.04909140140522],[-127.04661654329344,57.04925948485817],[-127.04689655767555,57.049389481927854],[-127.04714998719813,57.049490553034246],[-127.04731601547165,57.04963939681927],[-127.04737767918252,57.0498204597242],[-127.04737331875866,57.05000093254685],[-127.04734310345086,57.05017937171908],[-127.04730051074228,57.05035791037427],[-127.04725481509222,57.05053647396987],[-127.0472153241385,57.050714987710215],[-127.04719132670044,57.05089449769493],[-127.04719104404323,57.051073817141834],[-127.0472010923939,57.05125305359798],[-127.04720394291614,57.05143346864711],[-127.04719025958046,57.05161289584107],[-127.04717451318665,57.05179233963221],[-127.04715772692411,57.051971791798216],[-127.04713785433214,57.052151268781564],[-127.04711591859531,57.05233076235947],[-127.04708982619994,57.05250916861719],[-127.04705963812054,57.052688728528786],[-127.0470232302804,57.05286721768797],[-127.04697853959824,57.05304465266187],[-127.04692457322314,57.05322216215027],[-127.04686334702897,57.05339860921409],[-127.04680005724666,57.053575072841134],[-127.0467357271134,57.053751544810254],[-127.04667553898437,57.053927983501275],[-127.04662155346608,57.05410549310771],[-127.04658202540394,57.05428288661715],[-127.04656214893004,57.05446236380624],[-127.04654642893942,57.05464292837369],[-127.04651826923913,57.05482135137494],[-127.04646944774966,57.0549988195507],[-127.04641130305347,57.05517524184344],[-127.0463469849634,57.055351713688154],[-127.04628264977785,57.055528185655696],[-127.04622141696538,57.05570463270625],[-127.04616744336087,57.05588214221566],[-127.04612170539208,57.056059585620964],[-127.04608220350396,57.056238099716005],[-127.04604372458581,57.05641660560909],[-127.04600214227466,57.056595136415325],[-127.04595537934841,57.056772588064476],[-127.04591553083769,57.05686256676552],[-127.04580081265243,57.0571212567202],[-127.04571059848257,57.05729457400731],[-127.04563384723261,57.057470024720864],[-127.04552182330023,57.05763791317902],[-127.0453838775819,57.05780152650211],[-127.04523758624102,57.057961844399955],[-127.04508612724956,57.0581222035752],[-127.04493674678041,57.05828254592003],[-127.04478109778749,57.058440696871095],[-127.04462340072355,57.05859886405734],[-127.04447190621602,57.05875810209755],[-127.04433601532408,57.05892169790867],[-127.0442146882858,57.05908965987161],[-127.04409024300843,57.05925652597189],[-127.04394600407693,57.05941682605872],[-127.04378316337096,57.05957615421081],[-127.04361727886517,57.05973774801288],[-127.04344411860272,57.05989715837546],[-127.0432573099355,57.06004771183903],[-127.04305459051656,57.06018270201263],[-127.0428180347045,57.0602877026198],[-127.04248643694277,57.06031276972897],[-127.04213662336144,57.06031332537377],[-127.04180259712786,57.06032496129124],[-127.0414740929822,57.06031189598667],[-127.04116407658952,57.0602572148735],[-127.04085993132152,57.06019127877009],[-127.0405586781004,57.060117473715955],[-127.0402584053322,57.0600414186786],[-127.03995808693128,57.05996424258943],[-127.03965680691567,57.0598893149672],[-127.03935256246605,57.05981889324892],[-127.03904934255807,57.059748462666285],[-127.03874502327254,57.05967579867688],[-127.03844180560628,57.05960536668825],[-127.0381365257013,57.0595349504307],[-127.03783034450089,57.05946902359426],[-127.03752217522826,57.05940647408461],[-127.03721107136855,57.059349550891135],[-127.03689311769112,57.05930613029182],[-127.03656647575686,57.05928519274389],[-127.03623487901858,57.05927213892425],[-127.03590426203645,57.059256835004135],[-127.03557753050276,57.05923253349],[-127.03524968544055,57.05920487779616],[-127.03492185450992,57.05917834190585],[-127.03459524489209,57.05915851991696],[-127.03426899738004,57.059152143069475],[-127.03394817257445,57.05919391403103],[-127.03362525360733,57.059234580068726],[-127.03329772537388,57.05925735006941],[-127.03297126678463,57.05928123150363],[-127.03264822564944,57.05931741313545],[-127.03223213603653,57.05938571143194],[-127.03200644937642,57.059358359301335],[-127.03167696347728,57.059346397917615],[-127.0313475514637,57.05933779732434],[-127.03101818615704,57.05933031626557],[-127.03068880447185,57.05932283450523],[-127.03035946945519,57.05931647227987],[-127.03003008801687,57.05930898885507],[-127.02969971330405,57.059302633180515],[-127.02937037862421,57.059296268456414],[-127.02904099755155,57.059288782532676],[-127.02871169308499,57.059283536642546],[-127.02838240217753,57.05927941054883],[-127.02805208792407,57.05927529169479],[-127.0277227237946,57.05926780231009],[-127.02739328339257,57.059258071226836],[-127.02706479326767,57.05924496962217],[-127.02673716372144,57.05922513600814],[-127.02641298647397,57.05918061824027],[-127.0260921824126,57.05914615972585],[-127.02578199435754,57.05920015486175],[-127.02546337272572,57.05924749119846],[-127.02513927151082,57.059282541773975],[-127.02481506358224,57.059314230177435],[-127.02448871869292,57.05934257236543],[-127.02416232696265,57.059369793367644],[-127.02383373871118,57.05939142713376],[-127.0235047755765,57.05939961421014],[-127.02317744479264,57.05939097664031],[-127.02284889534,57.059375623412144],[-127.02252025673435,57.05935690785753],[-127.02219158865314,57.05933707097535],[-127.02186397411621,57.059318345741374],[-127.02153440239013,57.05930299722402],[-127.0212060627132,57.05929548335392],[-127.02087677251092,57.05929133830086],[-127.02054654820374,57.059290561928215],[-127.02021739357336,57.05929089707978],[-127.01988725846842,57.05929348053686],[-127.0195571530378,57.05929718365807],[-127.01922707725271,57.05930200644355],[-127.01889802480429,57.05930682039364],[-127.0185679488538,57.05931164151021],[-127.0182357501136,57.05931423690802],[-127.01790361066965,57.059319072460276],[-127.01757362347213,57.0593272525608],[-127.01724581808767,57.05933989772652],[-127.01692135290004,57.05936148186417],[-127.01660792841601,57.059410997384944],[-127.01631409705395,57.05949846427365],[-127.01603812045747,57.059598119377526],[-127.01577263692245,57.05970441651805],[-127.0155113970724,57.059815162982325],[-127.0152480331495,57.059923683999095],[-127.01497617750846,57.060023304743765],[-127.01466405126149,57.06008289203278],[-127.01436155587473,57.060155852410695],[-127.01405474213901,57.060221000550904],[-127.01374151380507,57.060278352725135],[-127.01342275025257,57.060321177658956],[-127.01309254678256,57.06032150290575],[-127.01276263852182,57.060333032341],[-127.01243502956292,57.0603535089358],[-127.01210750876228,57.060377346215716],[-127.0117798990768,57.06039782116489],[-127.0114745147909,57.06040019112822],[-127.01112277099439,57.060405161445104],[-127.01079230160664,57.060395396339295],[-127.01046285583674,57.06038562246244],[-127.01013363285588,57.06038369114698],[-127.00980468775404,57.0603929641598],[-127.00947480732006,57.06040560577832],[-127.00914501491745,57.06042160807219],[-127.0088163504189,57.060440962994136],[-127.00848982068518,57.060463662762494],[-127.0081643599138,57.06048747417386],[-127.00786498176784,57.060561515999865],[-127.00757094549898,57.060642240229335],[-127.00726092489819,57.06070403487777],[-127.00694771184654,57.06076249125177],[-127.00663768927413,57.06082428442324],[-127.00633403201932,57.06089275209817],[-127.00604420486161,57.06097680255737],[-127.0057703131143,57.06107866111192],[-127.00549639060519,57.06117939859365],[-127.00519264060794,57.06124450211264],[-127.00489642565711,57.06132187487256],[-127.00461932432606,57.061419272809886],[-127.00434011233587,57.06151556568481],[-127.00406091545462,57.061611857841115],[-127.00378382266936,57.06171037465529],[-127.00351198319268,57.06181221262916],[-127.00325060596359,57.06191957316989],[-127.0030197117909,57.06204799253235],[-127.00280870345996,57.062187465824465],[-127.00257354576179,57.062311434270335],[-127.00227529952541,57.06238993738274],[-127.00198764526529,57.06247956570713],[-127.00170739547144,57.062575860882845],[-127.0014544373086,57.06268987749651],[-127.00121633104588,57.06281946978854],[-127.00101056660677,57.06296226208355],[-127.00087645193724,57.06312243568127],[-127.00079111345923,57.063293442025156],[-127.00073069951318,57.06346986065822],[-127.00068273753678,57.06364954589581],[-127.00063375156833,57.06382923899501],[-127.00057130162135,57.0640067939689],[-127.00049433094885,57.0641822189058],[-127.0004100868136,57.064355458164385],[-127.00032377828529,57.06452871322424],[-127.00023746897891,57.06470196824838],[-127.00015635543751,57.06487630410305],[-127.00008248487758,57.06505170509446],[-127.00001274098612,57.065227074407076],[-127.00000120440212,57.06525966415223],[-126.99994611287646,57.065403540534426],[-126.99988255879525,57.065578862335826],[-126.99982007338724,57.0657552966614],[-126.99975966375195,57.06593283579027],[-126.99969924092319,57.066109254277016],[-126.99963984114905,57.06628566490939],[-126.99959285239876,57.066463101110685],[-126.99954795610316,57.0666416420058],[-126.99948129426822,57.06681698756291],[-126.99939913269536,57.066991331183075],[-126.99930868613984,57.06716461753591],[-126.99920683794303,57.06733574975468],[-126.99909147853703,57.06750362324173],[-126.99896370618042,57.06767047101356],[-126.99881930573571,57.0678329631196],[-126.9986477541284,57.06798333496086],[-126.99837749160382,57.06810868559132],[-127.0000006552701,57.07237858182163],[-127.0105063798752,57.100000338488464],[-127.02563497944791,57.13970596011405],[-127.02584764252805,57.13988585955906],[-127.02611320472847,57.139994732758026],[-127.02639190032815,57.140092294237846],[-127.02667967031715,57.14018081741548],[-127.02697148703358,57.140265945758124],[-127.0272634250715,57.14035555571123],[-127.02755637658174,57.14044403625539],[-127.02785616784648,57.1405178919295],[-127.02816672375585,57.1405692461828],[-127.02849003793419,57.14059472083193],[-127.02882017708271,57.140604449716704],[-127.02915422485145,57.140606301366105],[-127.02948931478026,57.14060814394783],[-127.02982047988397,57.14061786222133],[-127.03014583319457,57.140642195907134],[-127.03045950302294,57.14069352018793],[-127.03076642668657,57.140762829782695],[-127.03107336503568,57.1408332593543],[-127.03138820031198,57.14088905544124],[-127.03171290656235,57.1409279607866],[-127.03204054246069,57.140960117372636],[-127.03236517604743,57.14099565927691],[-127.03267882156938,57.14104585767832],[-127.03297147255832,57.141123120617735],[-127.03324314604876,57.14122744810982],[-127.0335118182306,57.14133516121143],[-127.03379458729995,57.14142931258133],[-127.03408439174551,57.14151556204112],[-127.03437620482887,57.141599553361864],[-127.03466801919,57.14168354403602],[-127.03496187237039,57.141766397116314],[-127.0352556965788,57.14184812897697],[-127.03554955228907,57.14193098074543],[-127.03584238364625,57.14201383999106],[-127.03613423463572,57.14209894797938],[-127.03642401912421,57.14218407172771],[-127.0367118279506,57.142272572940925],[-127.03699461178283,57.142366717449285],[-127.03727336882642,57.14246425575216],[-127.03755214105391,57.14256291416238],[-127.03783189626279,57.14265932257734],[-127.03811566722784,57.142751215278075],[-127.03840540037203,57.14283409354464],[-127.03871028768197,57.14290340102238],[-127.03903723800457,57.1429478745951],[-127.03937322936694,57.14298218817266],[-127.03970110183283,57.14302216953934],[-127.04000574993069,57.14308250949408],[-127.04027197464563,57.14317565810718],[-127.04050886337333,57.143292576792696],[-127.04072657317927,57.14342645996052],[-127.04093110876548,57.1435705350266],[-127.0411305895828,57.14371913331237],[-127.0413321563732,57.143867714693634],[-127.04154176676593,57.144008386013496],[-127.04175750763885,57.14414564571428],[-127.04197122648442,57.14428516282759],[-127.04218496342784,57.14442467947372],[-127.04240476733877,57.14455966415551],[-127.04263370399295,57.144687850756846],[-127.04287788576556,57.144805828008174],[-127.04314550687127,57.14491128877231],[-127.04343958598216,57.14500084636659],[-127.04375068690975,57.14507009277038],[-127.04406836403638,57.1451146281088],[-127.0443916355449,57.14513670179255],[-127.04472175676699,57.14514414939284],[-127.04505578376724,57.14514371925595],[-127.04539076138792,57.14513991823254],[-127.0457248048874,57.1451394862527],[-127.04605601321484,57.14514916339865],[-127.04637934729557,57.145173473292175],[-127.04669595550254,57.14521689002919],[-127.04700582424242,57.14527829296419],[-127.04731180282097,57.1453486928351],[-127.04761684862716,57.145422461909895],[-127.04792286009118,57.14549398092105],[-127.04823483162914,57.145556484928576],[-127.04857517381313,57.145597465099925],[-127.04891144205708,57.14564071872203],[-127.04919780358814,57.14571239256554],[-127.0493844150078,57.14584202842029],[-127.04948654669495,57.1460216583826],[-127.04957234992438,57.14620926515688],[-127.04971403484679,57.146360556958676],[-127.05004706392558,57.1463982297212],[-127.05036208966507,57.14634526073365],[-127.05065027389941,57.14625664091806],[-127.05093721615283,57.146160184779326],[-127.05123390118766,57.14607934095353],[-127.05155284361818,57.1460184918812],[-127.05187761117422,57.14601923970659],[-127.05220405000097,57.146043510289424],[-127.05253174675657,57.146075615601355],[-127.05285756061308,57.14611446013754],[-127.05317942373345,57.14616006058452],[-127.05349529904547,57.14621355421236],[-127.05380014811453,57.146279464955214],[-127.05409315871776,57.14636676593951],[-127.05436800627814,57.14646990423962],[-127.05462039860763,57.146584431378315],[-127.0548524676678,57.14671145108613],[-127.05507439729566,57.14684639797984],[-127.055294276983,57.14698136108201],[-127.05552533921485,57.14710950861488],[-127.05577674429587,57.147225162425265],[-127.05604748071272,57.147329451381246],[-127.05632327360546,57.147429215659606],[-127.05658992421083,57.14753465738052],[-127.0568140254238,57.14767294636616],[-127.0570449424866,57.14779548845976],[-127.0573554275659,57.14784005007729],[-127.05769299002408,57.14785412977966],[-127.05802738049573,57.14786599267355],[-127.05835762061128,57.1478767675225],[-127.05868781343712,57.14788642110771],[-127.05901789921316,57.1478915914719],[-127.0593489799029,57.147895632121426],[-127.05967892546455,57.14789631869758],[-127.06001080083048,57.14789138471195],[-127.06034157183448,57.1478842172174],[-127.06067243568036,57.147880410573755],[-127.06100241213284,57.147882214370505],[-127.06132960482718,57.14789524809354],[-127.06165626824576,57.147926218333346],[-127.06197815702657,57.1479717971647],[-127.06229205349901,57.148027527531845],[-127.0625969776433,57.14809565909612],[-127.06289796952456,57.148170546843964],[-127.06319897709882,57.14824655459964],[-127.06350395221168,57.1483158044861],[-127.06381289271417,57.148379417306636],[-127.06412385672807,57.148440771294865],[-127.0644347740929,57.14850100411825],[-127.06474673477042,57.14856122770949],[-127.06505866531029,57.14862032999626],[-127.06536963326998,57.14868168103051],[-127.06567959101896,57.148744160391956],[-127.06598455802155,57.14881340464878],[-127.06627550180386,57.14889845408929],[-127.06655744354474,57.14899478455457],[-127.06683640087486,57.14909562206714],[-127.06711630849117,57.149193088791094],[-127.06740324607824,57.149282651778954],[-127.06770111493611,57.14935643337848],[-127.0680119205239,57.14941217548112],[-127.06832771844395,57.149461151126346],[-127.06864552290186,57.149507867969014],[-127.0689652713845,57.14955008486987],[-127.06928702626892,57.14959004293836],[-127.06961078750454,57.1496277421595],[-127.06993451811603,57.14966432001746],[-127.07026028626134,57.149699759570055],[-127.070586023729,57.149734077749414],[-127.07091179306873,57.149769515679445],[-127.0712365684861,57.14980608177105],[-127.07156132797715,57.149842647192024],[-127.07188515621563,57.149882581908045],[-127.07220694825801,57.14992365335772],[-127.07252676679941,57.14996810267907],[-127.07284762845595,57.150012542659624],[-127.07316847431036,57.15005698198952],[-127.07349036328439,57.15010141196828],[-127.07381122717253,57.15014584958683],[-127.0741331176369,57.15019027798512],[-127.07445399786052,57.1502358347257],[-127.07477388441376,57.1502825196799],[-127.07509380315753,57.150330324413964],[-127.07541272828247,57.15037925737148],[-127.07572960088264,57.15042932727886],[-127.07604655373544,57.15048163740577],[-127.07636042828585,57.150535092953675],[-127.07667332423885,57.150590797462144],[-127.07698426381403,57.15064987981949],[-127.07729215667037,57.15071122821047],[-127.07760537026896,57.150778136105664],[-127.07791882196965,57.150852887044245],[-127.07822630562951,57.15093665306578],[-127.07851860212531,57.15103175196064],[-127.07878636463896,57.15113714018911],[-127.07902239405226,57.15125399818139],[-127.07921645850753,57.151386893915294],[-127.07935734822443,57.15154152429637],[-127.07945941467531,57.15171328764317],[-127.07953797220222,57.15189533258333],[-127.07960522613074,57.15207971255348],[-127.07967756513841,57.1522606880318],[-127.07976004063306,57.152434854796],[-127.0798394226416,57.15260904710345],[-127.07991574267672,57.15278438552211],[-127.07998994694796,57.15295862059006],[-127.08006318910189,57.1531351052438],[-127.08013537445345,57.15331047779808],[-127.08020651799855,57.15348585895384],[-127.08027766219435,57.15366124009379],[-127.08034883860905,57.15383774178084],[-127.08041998410843,57.15401312288931],[-127.08049319868243,57.15418848687758],[-127.08056743986894,57.154363842363345],[-127.0806437351472,57.15453806002271],[-127.08072312552298,57.15471225206657],[-127.08080561103823,57.15488641848924],[-127.08089015073615,57.15505944707094],[-127.08097985412302,57.155232432908456],[-127.08107262118848,57.15540427254063],[-127.08116954263016,57.15557607776183],[-127.08126858009321,57.155750107082014],[-127.08137174043769,57.15592298141167],[-127.08147905381988,57.15609694214369],[-127.081592527118,57.15626861017836],[-127.08171320145449,57.15643909770712],[-127.08184101368609,57.15660616357975],[-127.08197909153824,57.15676978187644],[-127.08212634437406,57.15692884076913],[-127.08228588339841,57.157083314457466],[-127.08245764543724,57.157230961764135],[-127.08265701017115,57.15736717190603],[-127.08289121099712,57.157490763984214],[-127.08315094612,57.15760293573873],[-127.08342911030925,57.157708229236185],[-127.08371539214866,57.157807850700756],[-127.08400266983413,57.15790634246882],[-127.08427965409047,57.15800603986332],[-127.08456766035088,57.15809331609732],[-127.08487480443698,57.1581624995728],[-127.0851849022999,57.158226053665906],[-127.08549992729316,57.15828059947466],[-127.08581591576724,57.15833289486983],[-127.0861309577275,57.158388559864775],[-127.08644003344928,57.158452119518344],[-127.08674317351323,57.15852581528018],[-127.08706110728801,57.15857360820922],[-127.08738486650184,57.158607901942744],[-127.087710631381,57.158639936526],[-127.08803737581654,57.15866972048678],[-127.08836511501033,57.1586983745206],[-127.08869285469392,57.1587270277332],[-127.08901958408508,57.158756809378076],[-127.08934432553541,57.158788848443336],[-127.08966815229749,57.158825377655695],[-127.08998899581054,57.15886641427741],[-127.09030587852833,57.15891308731824],[-127.09062290483152,57.158965362554305],[-127.09093909722567,57.15902436897758],[-127.09125128079121,57.159087891446944],[-127.09155748263208,57.15915930896555],[-127.09185560230384,57.15923751829639],[-127.09214464575986,57.159323648635905],[-127.09242259171916,57.159419958607096],[-127.09268854197516,57.15953093912142],[-127.09294756441376,57.15965318537653],[-127.09319957990077,57.15978333558397],[-127.09344856619512,57.15991575234302],[-127.0936954369618,57.160047065527905],[-127.09394420288571,57.16017163741359],[-127.09419673960996,57.16028384811818],[-127.0944540101669,57.16038032705094],[-127.09472104991558,57.16045654866555],[-127.0950043713748,57.16048667916521],[-127.09531449460809,57.160441488597705],[-127.09563579737814,57.16035249106832],[-127.09595570368387,57.160251175289],[-127.09625852836142,57.160167935344724],[-127.09654571630173,57.16008034256796],[-127.09682751499682,57.15998494855554],[-127.09710932780303,57.15989067464524],[-127.09739431471915,57.159798615133944],[-127.09767607715331,57.15970209874831],[-127.09795775744439,57.15960334077412],[-127.09823951702552,57.15950682318783],[-127.09852449837554,57.159414761238516],[-127.09881486660049,57.159330499199],[-127.09911283556441,57.15925850174504],[-127.09942053845596,57.15920099254414],[-127.09974012413178,57.15916131594396],[-127.10006830535927,57.15913277453224],[-127.10040091288523,57.15911428252007],[-127.10073464266024,57.159099142706204],[-127.10106632004242,57.15908401933101],[-127.10139685798659,57.159065542215096],[-127.1017304259575,57.15904479704792],[-127.10206413894508,57.159028533138176],[-127.10239599194327,57.15902012990077],[-127.1027241107133,57.159025207336086],[-127.10304655500431,57.159049386022026],[-127.10337557698236,57.15908583755225],[-127.10370801688242,57.15913346773391],[-127.1040335638567,57.15919348448985],[-127.10433991943687,57.159269354311],[-127.10461573008988,57.15936229414184],[-127.10485071704997,57.159474632753565],[-127.10504911460956,57.15960969707016],[-127.10522110480349,57.159761796976476],[-127.10537480091365,57.15992525978001],[-127.10552038495545,57.160094395235824],[-127.10566698061322,57.16026240116727],[-127.10582371084288,57.16042359619491],[-127.10597941628656,57.160584799737876],[-127.1061229367328,57.160753952113986],[-127.10626245021956,57.16092762162907],[-127.10640090651711,57.161100179142295],[-127.10654443075174,57.16126933112081],[-127.10670011031513,57.16142941334442],[-127.10687205052085,57.161579270159265],[-127.1070662637433,57.161712125544405],[-127.10728885934114,57.1618245651201],[-127.10755208833056,57.16191088072443],[-127.10785287130435,57.161972219046305],[-127.10818001603943,57.16201427891363],[-127.10852434953927,57.162042742119155],[-127.10887466319866,57.16206330781675],[-127.10922183328442,57.16208277842218],[-127.10955466812385,57.16210685316878],[-127.10988725976249,57.16212308327015],[-127.11022781910826,57.16212803645815],[-127.11057131123351,57.1621273596456],[-127.11091576455378,57.162124432082884],[-127.1112571553182,57.16212265049161],[-127.11159150832268,57.16212765290067],[-127.11191683584548,57.16214281879352],[-127.11222916298843,57.162173786262464],[-127.11252446651787,57.16222395217035],[-127.11279272781147,57.1623046103352],[-127.11302891303166,57.16242140800011],[-127.1132430745947,57.16256305133012],[-127.11344417233275,57.16271825571264],[-127.11364119904123,57.16287573618716],[-127.11384420614309,57.16302531954875],[-127.11405418719285,57.163165876457164],[-127.1142560735662,57.16331210627108],[-127.11445183592086,57.16346175054471],[-127.11464460243985,57.163614782627256],[-127.11483834806708,57.16376556442282],[-127.11503515775173,57.16391519897894],[-127.11523900641211,57.16405804815751],[-127.1154519795181,57.16419409412429],[-127.11567707438158,57.16431994872168],[-127.11591940638685,57.16443332652408],[-127.11617995248139,57.16453309824681],[-127.11646203660845,57.16462596043345],[-127.11676155346305,57.164713068863904],[-127.11707527678031,57.164791088465364],[-127.11739913422196,57.164861174791774],[-127.11772885655694,57.164920001748456],[-127.11806037132838,57.16496872496788],[-127.11839147811902,57.16500400073412],[-127.11871699623035,57.16502475254811],[-127.11903381352036,57.16503100709371],[-127.1193407071038,57.16501604984643],[-127.11964373599255,57.164975345595224],[-127.119945034042,57.164911117765534],[-127.12024378750377,57.164830098400785],[-127.12054222838387,57.16473899344011],[-127.12083944507349,57.164641173232496],[-127.12113662747743,57.16454223179434],[-127.12143397223615,57.164448892496615],[-127.12173265337717,57.1643656286336],[-127.12229740982453,57.16442915167106],[-127.1226233189187,57.164463340486094],[-127.12294919577204,57.164496407928034],[-127.12327507318747,57.16452947455824],[-127.12360098400616,57.164563660938136],[-127.12392588549798,57.164598976034696],[-127.12424982710077,57.16463654027441],[-127.12457176610803,57.164676362636975],[-127.12489173544941,57.16471956369836],[-127.12520874187996,57.16476727286957],[-127.12552379516123,57.164819481477714],[-127.12583095190638,57.164884086645955],[-127.12613118912242,57.164959959171455],[-127.12642644432516,57.16504259902805],[-127.12672077337865,57.165128608752724],[-127.1270150708112,57.165213497259025],[-127.1273123495248,57.16529387602438],[-127.12761449709124,57.16536412451507],[-127.12792455914995,57.165421974719585],[-127.12824687132351,57.165474114224224],[-127.1285773284786,57.16552169923004],[-127.12891169350499,57.16556140373469],[-127.12924675538599,57.16558989291106],[-127.12957720102987,57.16560160843919],[-127.12989675681797,57.16559548373933],[-127.13020308908344,57.16556145145242],[-127.13049166258904,57.165487221588435],[-127.1307690802121,57.16538506644591],[-127.13104408021243,57.16527172317042],[-127.13132336539324,57.16516282560368],[-127.13161464857863,57.16507511962978],[-127.13192104192149,57.165008578214575],[-127.13223499829455,57.16495317901816],[-127.13255540896779,57.164905569055826],[-127.13287907959564,57.16486353427699],[-127.13320390821274,57.164825972036475],[-127.13353285755652,57.1647872523992],[-127.13387810944612,57.16474054457076],[-127.13422564492302,57.164700541085764],[-127.13455437843496,57.1646898418982],[-127.1348461544312,57.16472429665523],[-127.13508998427517,57.164816330365696],[-127.13530089667621,57.1649501209139],[-127.13549491286123,57.16510759573104],[-127.13569007299928,57.16526842289415],[-127.13590342420066,57.16541452068559],[-127.13614809118891,57.165534566444684],[-127.13641103214458,57.1656432444046],[-127.13668623915217,57.16574621094164],[-127.13696240740992,57.16584692686199],[-127.13723146019217,57.16595218752423],[-127.13748628047482,57.16606541745813],[-127.13770861283938,57.166200225840164],[-127.1378945186174,57.166362251376725],[-127.1380741689592,57.166523210301804],[-127.13835044020227,57.16669677772522],[-127.13854503823686,57.166733191616565],[-127.13885745755009,57.166765216116445],[-127.13919902150886,57.16676784377118],[-127.13954933837518,57.16675133977916],[-127.13989016923696,57.166729313327764],[-127.14021540673413,57.16670518031797],[-127.14053931752062,57.16667097042561],[-127.14086203473425,57.1666311658961],[-127.14118357504174,57.1665868874417],[-127.14150614086154,57.16654259923493],[-127.14182771305789,57.166499439757374],[-127.14215152051251,57.166461864200514],[-127.14247853937549,57.16642762231583],[-127.14280771036796,57.16639672334155],[-127.14313578775267,57.16636359139901],[-127.14345959277786,57.166326012605516],[-127.14377695599909,57.16628064342676],[-127.14408464819056,57.166223028774766],[-127.14436866032015,57.16613535777174],[-127.14463119439067,57.166020973839906],[-127.14489265064071,57.16590547796802],[-127.14517129345644,57.16581112713761],[-127.14547566709244,57.16574681315568],[-127.14579285567983,57.16569583631864],[-127.14611655196042,57.16565488929245],[-127.14644347682724,57.16561839654129],[-127.14676831509651,57.16558080042565],[-127.14709327029108,57.16554768587361],[-127.14742051170927,57.16552127554166],[-127.14768800340582,57.16550435587594],[-127.14804549325392,57.16541715242216],[-127.14831351128213,57.16531392135117],[-127.14861631231541,57.16523168020698],[-127.14888965959453,57.16513400536138],[-127.14911032356775,57.16500428848392],[-127.14932543582442,57.164862290699645],[-127.14952582857279,57.164712576074564],[-127.14970325966308,57.164556338034245],[-127.14984534923826,57.16439480644372],[-127.14993971769556,57.164229211198176],[-127.14997798909074,57.16405626355802],[-127.14997570635555,57.16387694766995],[-127.1499515739736,57.163693340661865],[-127.14992434675614,57.163509760907175],[-127.14991161905165,57.16332717444832],[-127.14991651879119,57.16314555376556],[-127.1499077774834,57.16295732803726],[-127.14991671407819,57.16277230933885],[-127.14997774142508,57.16259916164762],[-127.15012005789154,57.16244547386512],[-127.1503020171615,57.162302645495856],[-127.15050792637706,57.16216521027847],[-127.1507305357099,57.162032111084635],[-127.15096353826087,57.16190116167522],[-127.15120175314173,57.16177128678286],[-127.15143786396347,57.161640309144786],[-127.15166769949657,57.16150714468346],[-127.15188288365827,57.16136850471688],[-127.15208242407581,57.16122551891633],[-127.15228187910247,57.16108029187022],[-127.15247921304972,57.16093284153177],[-127.15267232406146,57.160783186450296],[-127.15285710777732,57.16063136285336],[-127.15303043634566,57.16047739837522],[-127.15318813873083,57.160320209022196],[-127.15332819662851,57.16016093351365],[-127.15344119166643,57.15999629249721],[-127.15347924078326,57.159816621081994],[-127.1534673040267,57.15962618242478],[-127.15344502402213,57.15943583509034],[-127.15345512017161,57.15925528963225],[-127.15353817565138,57.15909315457286],[-127.15370887186333,57.158954904375506],[-127.15393797804748,57.1588329508824],[-127.15420362944539,57.158721882669674],[-127.1544880319138,57.158615131639436],[-127.15477239905192,57.15850725945051],[-127.15503688472512,57.15839171644536],[-127.15527523281581,57.15826743720983],[-127.15550727224978,57.15813985078368],[-127.15573507162523,57.1580089389058],[-127.1559597582889,57.15787805416564],[-127.15618232381176,57.157744946113425],[-127.1564038114348,57.157610726374706],[-127.15662425495007,57.15747651550214],[-127.15683946618724,57.157340108886764],[-127.15703568700246,57.157191540764444],[-127.15723828101264,57.15704852013844],[-127.1574746465579,57.156927616974585],[-127.15777021508859,57.15684878098369],[-127.15809324857874,57.156788755286875],[-127.15839095099332,57.1567121406592],[-127.158635720333,57.15659564425838],[-127.15886760301207,57.15646356984297],[-127.15907736663604,57.15631824107164],[-127.15925160895843,57.15616201864861],[-127.1593780879681,57.1559994947255],[-127.15946188281522,57.15582838268777],[-127.15951651508449,57.155650804327955],[-127.15955449754287,57.15547001118369],[-127.15958620653369,57.15528703203358],[-127.15962415441763,57.155105118373974],[-127.15967984473215,57.15492865148063],[-127.1597646783758,57.15475753013319],[-127.159911029447,57.15460267532983],[-127.16012506869302,57.154462911220186],[-127.16036313853185,57.15433077926651],[-127.16059086479312,57.1541987387539],[-127.16081759748928,57.154067827515036],[-127.16104959307546,57.15394023164869],[-127.1612836554842,57.15381261699937],[-127.16151775027494,57.15368612248545],[-127.16174970727636,57.15355740487006],[-127.16197644963151,57.15342761237244],[-127.16219262759496,57.15329006754138],[-127.1624045828707,57.15315031823246],[-127.16262079170704,57.153013893263214],[-127.16284966417219,57.15288632198156],[-127.1631016089215,57.152768632505364],[-127.1633763888861,57.152654101746506],[-127.16367051245689,57.152562935845026],[-127.16397631996375,57.152516498940614],[-127.16429187929113,57.15251817070488],[-127.16461661406747,57.152550022710486],[-127.16494697090724,57.15259639476204],[-127.16527826882383,57.15263939506088],[-127.1656079801258,57.15266447517157],[-127.16594227518728,57.15267045919359],[-127.16628351098312,57.15266629280491],[-127.16661375753097,57.152640927597844],[-127.16691826344807,57.152585528643556],[-127.16719589994383,57.15249674367013],[-127.16745629006653,57.152385695311786],[-127.16770700438158,57.15226240361568],[-127.1679587936207,57.1521402226709],[-127.16821177778448,57.15202363477644],[-127.1684594790643,57.151903731100866],[-127.16871035774456,57.151786040219335],[-127.16898143799912,57.151686101617635],[-127.1692833180348,57.15161278707523],[-127.16968419900795,57.15152961879061],[-127.16968091864531,57.1513884217551],[-127.16954622906567,57.15121141326964],[-127.16948015106551,57.15104611982725],[-127.16937465763247,57.150876695791794],[-127.1692670462275,57.15070616981226],[-127.16915948648501,57.15053676415546],[-127.16905187699041,57.15036623804193],[-127.16894842133306,57.15019567470437],[-127.16885009456848,57.15002394458566],[-127.16875173453677,57.149851093877494],[-127.16863879598064,57.14967501100382],[-127.16853206285194,57.14949887256197],[-127.16845531018116,57.14932246593107],[-127.16843661842543,57.14915002339097],[-127.16849984757339,57.14898469407929],[-127.16863559602099,57.148823199438986],[-127.16880969706828,57.14866472407294],[-127.1689900174508,57.1485061928302],[-127.16914017029933,57.14834232711395],[-127.16923733897555,57.14817108956031],[-127.16931273221759,57.147997805170405],[-127.16937458830195,57.14782127940246],[-127.16942812098833,57.14764370728967],[-127.16947649140089,57.14746618138656],[-127.16952272501945,57.14728643293255],[-127.169572136816,57.14710889771047],[-127.16962667569065,57.14693019574435],[-127.16968958849978,57.146754781318414],[-127.16976176416216,57.14657816309689],[-127.16983915151435,57.14640261902254],[-127.16991761458505,57.1462281861253],[-127.16999395827439,57.146052651338806],[-127.170064114006,57.14587717194895],[-127.17012594666964,57.14570064625167],[-127.17017437977321,57.14552536141356],[-127.17016998655554,57.145347187273956],[-127.17012105697722,57.14516717041829],[-127.1700825014711,57.14498818148965],[-127.17004269902998,57.144802478711256],[-127.17000393917876,57.144616766611584],[-127.17001412439224,57.1444418245358],[-127.17014605652682,57.14429157123833],[-127.17044129639278,57.144172358980505],[-127.17068581232668,57.14405135897047],[-127.17068326331335,57.14390006861763],[-127.17051161403495,57.14373123940447],[-127.17037593952085,57.14355536265233],[-127.17039437741131,57.143380346724435],[-127.17046755145431,57.14320259868626],[-127.17056550398657,57.143023507741326],[-127.17066656553091,57.14284438887528],[-127.17074387281198,57.14266660368968],[-127.17077478350495,57.1424937176873],[-127.17073757756778,57.14232480474174],[-127.17063839180959,57.142158688966],[-127.1704907262285,57.14199637008915],[-127.17031108894038,57.141836579208125],[-127.17011200673505,57.14168368732301],[-127.16990795363985,57.14153756470614],[-127.1696990486483,57.14140157277417],[-127.16946767388046,57.141274748403376],[-127.16922097208366,57.14115366502708],[-127.16896815472039,57.141035998448245],[-127.16871838040251,57.140916062505205],[-127.16847781799694,57.14079268119556],[-127.1682484503431,57.14066359516577],[-127.16802111776194,57.14053336972605],[-127.16779578614171,57.140400884357675],[-127.16757255781542,57.14026950066064],[-127.16734926282206,57.14013587553549],[-127.16712702901454,57.14000336140763],[-127.1669027797559,57.1398719857686],[-127.16667234675509,57.13974178583987],[-127.16644088978958,57.139611594675756],[-127.16621353551326,57.13948024566239],[-127.1659974606038,57.13934543308746],[-127.16579770697611,57.139203749505086],[-127.16561820444942,57.13904731408927],[-127.16548070562663,57.13887817449032],[-127.16541253075265,57.13871065789634],[-127.16556755613391,57.13846941634355],[-127.16578634446215,57.13842150953876],[-127.16612402358219,57.13837254091867],[-127.16642938162258,57.1384168891903],[-127.16672335749992,57.13849496341929],[-127.16701571016125,57.138587622335315],[-127.16731110563504,57.138678011754756],[-127.16761627804765,57.13875037978838],[-127.16793208092885,57.138797993728176],[-127.16825601832463,57.1388410508192],[-127.16858392089858,57.138878467469496],[-127.1689147630083,57.13891025282649],[-127.16924741761979,57.138934175287964],[-127.16957873967688,57.13894802133268],[-127.16990659301283,57.13894956843392],[-127.17022988454013,57.13893770557462],[-127.17055068037297,57.138911293434745],[-127.17087002331874,57.13887144351646],[-127.1711879814643,57.138820396886764],[-127.17150467373165,57.13876151499094],[-127.17182020261451,57.138698159421345],[-127.1721325181618,57.13863146941738],[-127.1724428335752,57.13856703828369],[-127.17275424195273,57.13850483826173],[-127.17307086068423,57.13844371152875],[-127.17338852044125,57.13838257466956],[-127.17370189046768,57.13831699224231],[-127.17400673155181,57.13824251904486],[-127.17429680790283,57.138159211202904],[-127.17456680391427,57.13806151244633],[-127.17481357559475,57.13794833034701],[-127.17504129216663,57.137820748364796],[-127.1752541915232,57.1376820909718],[-127.17545755361256,57.13753567322731],[-127.17565459217376,57.137385949586935],[-127.17585270554355,57.137237336809726],[-127.17605399553389,57.13709093679839],[-127.1762647853753,57.13695117592508],[-127.17648832195528,57.13682250822988],[-127.17673091075595,57.136708239335015],[-127.17700302654374,57.13661275806863],[-127.17730256768525,57.13653496235481],[-127.17762225578025,57.13647379679833],[-127.17795166736876,57.13642599276295],[-127.1782824642549,57.136389383735],[-127.17860731710788,57.13636179418013],[-127.17893456334525,57.136344269717775],[-127.1792673139783,57.1363379030753],[-127.17960244198825,57.13634160162216],[-127.17993676932112,57.13635315238578],[-127.18026827977576,57.13637369442975],[-127.18059172780208,57.13640103352598],[-127.18089953368371,57.13645765497067],[-127.1811929470334,57.13655027259264],[-127.18148728372196,57.13663951871597],[-127.18179695317066,57.136689396214265],[-127.18212453981673,57.13671669410569],[-127.18246008584572,57.1367338315972],[-127.18279837959702,57.13673973498834],[-127.18313217500528,57.136733349061274],[-127.18345820753046,57.13671022008628],[-127.18376917987108,57.136668172588635],[-127.18407108640045,57.136600427312565],[-127.18436413411015,57.13651370745799],[-127.18464959026385,57.136415847441235],[-127.18493188289723,57.136315773824926],[-127.18520694640637,57.13621576519698],[-127.18546184055556,57.136099126524435],[-127.18570931585649,57.135976950526334],[-127.1859718320332,57.13587257084465],[-127.18628995311266,57.13582821069566],[-127.18662014546625,57.13580615680689],[-127.18694820072528,57.135781879831086],[-127.18727635959738,57.13576096359426],[-127.18760458748295,57.135742287574615],[-127.18793392639807,57.13572584229406],[-127.18826331790162,57.13571163737477],[-127.18859276041468,57.13569855199478],[-127.18892322812138,57.135685456448975],[-127.18925155876032,57.13567013785257],[-127.18958081032467,57.135651447530456],[-127.18990783697079,57.13562717246399],[-127.1902356452825,57.13559504359453],[-127.1905622720042,57.135558441322644],[-127.19088898420432,57.13552407912351],[-127.19121382066126,57.13549645823289],[-127.19153905599258,57.13548116209801],[-127.1918681844665,57.135491608873465],[-127.19219528320797,57.13553681930218],[-127.19249941730766,57.135608017870055],[-127.19273611523684,57.135738115188815],[-127.19296350327562,57.13586829714706],[-127.19327295218959,57.135877799342616],[-127.1936152663597,57.13584665027818],[-127.19394261011811,57.13586607487756],[-127.19426924270918,57.135895592705324],[-127.1946899074082,57.135856999291555],[-127.1949908161135,57.13579147938596],[-127.1952721215805,57.13569363388883],[-127.19552698166143,57.13557697562012],[-127.19573779701598,57.13544054503786],[-127.19590453286045,57.135283221843096],[-127.19603273379074,57.13511728465258],[-127.19611518936594,57.13494279962616],[-127.19617478229775,57.13476516145883],[-127.19623751885312,57.134588615324944],[-127.19630025483119,57.134412069183895],[-127.19635986262027,57.1342344308502],[-127.19640911689793,57.13405688735937],[-127.19644494170345,57.13387946690525],[-127.19643422603956,57.13370135201608],[-127.19637902127242,57.13352252389372],[-127.196352758462,57.1333434306419],[-127.19633778755029,57.133161992294085],[-127.19631755217054,57.13297723968868],[-127.19629632658318,57.13279361701409],[-127.19628335348683,57.13260991876487],[-127.19628497223594,57.13242944937669],[-127.19630528392422,57.13225217127612],[-127.19635368527899,57.132080240035684],[-127.19644577626116,57.13191687519794],[-127.19661273850784,57.131767395113776],[-127.19682962567919,57.13162754478154],[-127.19706522045358,57.13149088510499],[-127.19728830582721,57.131350977191346],[-127.19748121463186,57.13120462061351],[-127.19766680881872,57.13105608916999],[-127.19784922266875,57.13090534496958],[-127.19803165162246,57.130754600379426],[-127.19821616469433,57.130604957249005],[-127.19840385522178,57.130457526369796],[-127.19859889236533,57.130313390293495],[-127.19880336163729,57.13017365067424],[-127.19902667811432,57.1300415835181],[-127.19927311593985,57.129921632809015],[-127.19952999257762,57.12980494824202],[-127.19978375881425,57.12968829174435],[-127.2000004384347,57.12957533807739],[-127.2000217836713,57.12956393357321],[-127.2002325500131,57.12942749634166],[-127.20042860029763,57.129283348218436],[-127.20062048001508,57.129138117315605],[-127.2008091959041,57.12899067356002],[-127.20099476650293,57.12884213762963],[-127.2011771918322,57.128692509538155],[-127.20135645336839,57.12854066863586],[-127.20153364650963,57.12838884652458],[-127.2017087010994,57.12823480219113],[-127.20188069720774,57.128081906613254],[-127.20205053825791,57.12792678898559],[-127.20221832752779,57.12777169003349],[-127.2023840319716,57.12761661006914],[-127.20254764957122,57.127460428286234],[-127.20271022411272,57.12730425591154],[-127.202870660175,57.1271458613746],[-127.20302584913894,57.12698527332564],[-127.20317587784334,57.1268247326501],[-127.20331650717971,57.12666091593499],[-127.20344674927293,57.12649607398367],[-127.2035655253302,57.126327975107344],[-127.20366979721392,57.126158889012665],[-127.20376263849558,57.125987666567084],[-127.20384715991645,57.12581539994805],[-127.20392542632509,57.12564094930133],[-127.20399743987939,57.12546543545164],[-127.20406533569299,57.125289959552546],[-127.20412904559535,57.12511340140797],[-127.20418966299495,57.12493687177193],[-127.20424921955252,57.12475923107873],[-127.20430669225468,57.12458160959797],[-127.20436418095893,57.124403987962474],[-127.20442269423947,57.1242263568683],[-127.20448226724989,57.124049836820646],[-127.20454494807682,57.12387328809104],[-127.20460969504927,57.12369672028568],[-127.20467237471337,57.12352017154064],[-127.2047350538008,57.12334362278849],[-127.20479773231163,57.12316707402905],[-127.20485938517055,57.12299053472251],[-127.20491999585838,57.12281400502267],[-127.2049816310545,57.1226374658567],[-127.20504328221685,57.12246092653203],[-127.20510491627893,57.12228438735356],[-127.20516660149313,57.122108968521054],[-127.20522927600277,57.12193241971455],[-127.2052940165532,57.12175585182138],[-127.205360858307,57.121580385342824],[-127.20542973085497,57.12140377926693],[-127.20549966299215,57.12122828421651],[-127.20556961102245,57.121052788998654],[-127.2056395418806,57.120877293918575],[-127.20570634532447,57.12070070687267],[-127.20577009179584,57.12052526887293],[-127.20582965286572,57.12034874868999],[-127.20587679552433,57.12017122237953],[-127.20586798429775,57.11998972961778],[-127.20587082887327,57.11981709583827],[-127.20589285984883,57.11959721008724],[-127.2060031226832,57.11945496722317],[-127.20608449299463,57.11928160803946],[-127.20618131765,57.119106985201526],[-127.20628856071195,57.11893450768986],[-127.20640198564537,57.1187619729739],[-127.20651749253693,57.118589418929844],[-127.20662992569429,57.118418014033786],[-127.20673405690856,57.11824556497041],[-127.20682575344662,57.118072109966974],[-127.20690091788498,57.11789880776079],[-127.20695434094985,57.11772458572026],[-127.20697984029434,57.117549501037935],[-127.20698154905999,57.11737351551837],[-127.20697290942351,57.117197625704314],[-127.20695388412183,57.117019590287995],[-127.20692765373194,57.11684274233683],[-127.20689312298221,57.11666485032245],[-127.20685239355379,57.11648701563443],[-127.20680438887717,57.11630812739526],[-127.20675122712893,57.11612928684165],[-127.20669396849274,57.11595160499206],[-127.20663254257433,57.11577284084243],[-127.20656802606563,57.11559410526025],[-127.20650043769832,57.11541651889259],[-127.20643177334165,57.11523782163916],[-127.20636211997555,57.11506025434342],[-127.20629250246603,57.114883807532124],[-127.20622285038642,57.11470624020813],[-127.20615427553787,57.11452978374535],[-127.20608778621421,57.11435442882831],[-127.20601197261841,57.11417803923398],[-127.20591443768774,57.11400072948192],[-127.2057923040277,57.11383037186819],[-127.20564263818962,57.113671476710444],[-127.20545938260565,57.11352858314645],[-127.20521184499152,57.1134120618346],[-127.20492351320067,57.113312729002814],[-127.20463414155833,57.11321340515203],[-127.20438561882483,57.11309801225601],[-127.20420434997283,57.11295285708263],[-127.2040669152142,57.11278824336038],[-127.2039529340754,57.11261332579541],[-127.20385013365791,57.112432700933546],[-127.20374230121861,57.112256605716006],[-127.20361620760518,57.11209076622816],[-127.20345550193942,57.111942058102194],[-127.20324502966314,57.11182070829981],[-127.20297260500129,57.11173355381022],[-127.20265852084985,57.11166919904793],[-127.20232615894113,57.111615099297445],[-127.2019967484748,57.11155648825037],[-127.20169165729808,57.11148196099963],[-127.2013812886888,57.11140411916828],[-127.20106671910905,57.111324073634215],[-127.20076640293148,57.111237171311934],[-127.20050181522606,57.111136489860755],[-127.20029345777715,57.11101623686413],[-127.20018514633182,57.11085695576713],[-127.20015243799631,57.11067007977648],[-127.20013922525338,57.11047854126428],[-127.20011695256134,57.1102949318167],[-127.20012966185325,57.11010651745166],[-127.20012598326959,57.10992273707645],[-127.20004342197008,57.10976097760198],[-127.20000044732954,57.10974119801197],[-127.19983171190118,57.109665412891935],[-127.19957643348457,57.10953101968694],[-127.19932499220653,57.10938762421097],[-127.19903393016607,57.10929839152603],[-127.19873219824404,57.10923167255754],[-127.19841342324706,57.109181921659406],[-127.19808671654548,57.10914233015805],[-127.1977591091156,57.10910722938033],[-127.1973873209713,57.109080378851054],[-127.19697675121265,57.10906845357365],[-127.19674275307781,57.109020162714124],[-127.19684896414677,57.108913831995885],[-127.19723206267716,57.108905834967125],[-127.19762585127111,57.108876443198795],[-127.1979586861767,57.10884760974601],[-127.19824350678587,57.108769900338956],[-127.19849614819088,57.10865437804494],[-127.1987349830848,57.10852665308765],[-127.19896650748568,57.1083967532178],[-127.19919282232156,57.10826577998729],[-127.19941173824579,57.10812927027832],[-127.19962855172255,57.107991658710624],[-127.19984640484459,57.10785403722419],[-127.20000060932018,57.107762954105745],[-127.2000695879226,57.10772197044429],[-127.20030117301766,57.107594309271654],[-127.2005454670161,57.107476618122305],[-127.2008067068176,57.10737222038753],[-127.20108902423601,57.10728107793733],[-127.20138615178148,57.10720100669735],[-127.20169178690958,57.10712870215106],[-127.20199952179424,57.10705749835903],[-127.20230411344983,57.10698520197607],[-127.20261408735674,57.10691958017605],[-127.20293263943158,57.106863965911714],[-127.20324901942169,57.10680500844077],[-127.2035495267536,57.10673386759854],[-127.20382242318577,57.10663944360881],[-127.20408244804493,57.106529446371134],[-127.2043349165515,57.106409430995576],[-127.2045747426885,57.10628168610605],[-127.20479986065978,57.10614623084567],[-127.20500414350947,57.1060053635002],[-127.20518759138048,57.10585908416906],[-127.20534898741205,57.10570180010184],[-127.2054873940136,57.10553576167831],[-127.2056018240992,57.105363219728],[-127.20568825204059,57.1051875739595],[-127.20574577569344,57.10501219521557],[-127.20577639292227,57.10483594426247],[-127.20578626386131,57.10465652257271],[-127.20578266429084,57.10447610455744],[-127.20577080204451,57.10429576291303],[-127.20575683905513,57.10411431988782],[-127.20574700751352,57.10393283871237],[-127.2057485640533,57.10375237315149],[-127.2057677571413,57.10357398628123],[-127.20582527801392,57.10339860770807],[-127.20592527606505,57.1032273198437],[-127.2060377020817,57.10305703786793],[-127.20613662203606,57.102884639017084],[-127.20623864775258,57.10271221139544],[-127.20634070775527,57.10254090420401],[-127.20643340961918,57.1023674418389],[-127.20650127214631,57.10219308827612],[-127.20653499025399,57.10201680878241],[-127.20653761925506,57.10183745432535],[-127.20652571907154,57.101655992607654],[-127.20651282970626,57.10147566087317],[-127.20651129253616,57.101295224196605],[-127.20650352365686,57.10111372435146],[-127.20649158865344,57.10093114223893],[-127.20648791570856,57.100748483757705],[-127.20650609806611,57.10057122728027],[-127.20655850955282,57.100398137561726],[-127.20670232888102,57.10024101471023],[-127.2069188251798,57.10009554841789],[-127.2070377282651,57.1000003003325],[-127.20710829296742,57.099944727755876],[-127.20719182328425,57.09977583318435],[-127.20723277334602,57.09959948686097],[-127.2072518870124,57.09941885933905],[-127.20725857284492,57.099237226014466],[-127.20726109259853,57.09905451044865],[-127.20726774309809,57.09887175668636],[-127.20728788066393,57.09869111977578],[-127.20732775295629,57.09851366270811],[-127.2073966807825,57.09834042001997],[-127.20749780528627,57.09817248340064],[-127.2076238373831,57.09800879942466],[-127.2077695677765,57.09784717461619],[-127.20792673495751,57.09768768539176],[-127.20808909110141,57.097529268748694],[-127.20825141065262,57.097369731437986],[-127.2084054324175,57.097209149973864],[-127.20854909120138,57.09704754351673],[-127.20869890934269,57.09688475903843],[-127.20885185112604,57.09672306626371],[-127.20899757147322,57.09656144023426],[-127.20912869272414,57.096395466109534],[-127.20923289413548,57.09622749974917],[-127.2092738663246,57.096052273721284],[-127.20930382513279,57.095855854406956],[-127.20937130918402,57.09570279882917],[-127.20942117719578,57.09551516145046],[-127.209422697367,57.095333576313074],[-127.20940466058639,57.095154414110006],[-127.20936604279761,57.09497768432728],[-127.20929551288985,57.09480461278746],[-127.2092012425846,57.094631761277036],[-127.20909255237581,57.094460164176326],[-127.20897770299693,57.09428974489959],[-127.20886802571921,57.09411927762733],[-127.20873672792855,57.09395125222595],[-127.20858380988362,57.093785668629245],[-127.20847011135884,57.093618600788595],[-127.20844812591966,57.09344507933647],[-127.20847462661833,57.093269987967254],[-127.20852894331546,57.09309239732267],[-127.20859669068642,57.09291468224897],[-127.20859777327139,57.09275215526273],[-127.20868594041437,57.09260002954795],[-127.20869657371121,57.09238025298569],[-127.20870521072719,57.09219523994146],[-127.20871345812664,57.09203040503801],[-127.20871674789731,57.09183983755344],[-127.20876387748785,57.09166343436299],[-127.20884613017152,57.091487826515596],[-127.20894085902462,57.09131434462311],[-127.20902311015169,57.09113873670846],[-127.20907129696604,57.09096344448209],[-127.2090594939949,57.09078534585902],[-127.20900533285953,57.090606519033656],[-127.20894393671342,57.090427759264436],[-127.20891457441307,57.09024982343493],[-127.20896685516232,57.090073372609446],[-127.20907495831284,57.08989864600368],[-127.20913143817558,57.089724397833855],[-127.20910479314621,57.08953410810282],[-127.20907276497402,57.08936964678008],[-127.20897942595263,57.08922592818726],[-127.20893601632018,57.08902794825022],[-127.20902966275109,57.08885335576946],[-127.20910156527165,57.08867672317781],[-127.2090897275931,57.088497504374985],[-127.2090479419242,57.088318563180835],[-127.20907641187137,57.08814009161791],[-127.20914822578187,57.08796121829271],[-127.20921492058598,57.087783513202936],[-127.20915705665234,57.08761817081651],[-127.20912430663694,57.087463803659226],[-127.20904064368618,57.08726619714764],[-127.20890629843984,57.08709932200739],[-127.20877306550872,57.08693467805549],[-127.20862954530597,57.08677125012125],[-127.208485037471,57.08660895201145],[-127.20834977857581,57.08644544728977],[-127.2082340215675,57.086278399408734],[-127.20814291750601,57.08610663990753],[-127.20807230368159,57.08593020739141],[-127.20801714862368,57.08575251089429],[-127.2079753874535,57.08557356955761],[-127.20794500927754,57.085395643616884],[-127.20795585392706,57.085215094329314],[-127.2079770569122,57.08503556993153],[-127.20796935486355,57.084856313254456],[-127.20793477757458,57.084676184698594],[-127.20786217318351,57.084502012317884],[-127.20770721320604,57.08433532731599],[-127.20759457049925,57.084168250369224],[-127.2076128455717,57.0839943572806],[-127.20764850151323,57.083814699284],[-127.2076985386315,57.08363266653732],[-127.20776722672979,57.08345270267939],[-127.20785564131722,57.08327591851611],[-127.20796905963931,57.0831067483218],[-127.20811070870808,57.08294852452983],[-127.2082752777737,57.08279681304888],[-127.2084586023776,57.082650531576085],[-127.20865752338118,57.08250746770919],[-127.20886789515032,57.082367659799985],[-127.20908551810696,57.08222890512746],[-127.20930631501254,57.08209236225775],[-127.20952711034883,57.081955819027534],[-127.20974373989905,57.08181819326507],[-127.2099530799698,57.08167839317299],[-127.2101613780335,57.081538602413595],[-127.21036967458149,57.08139881133564],[-127.21057902888079,57.08126013090443],[-127.2107904979257,57.081122551301746],[-127.21100508914952,57.080986063162364],[-127.21122177858777,57.08085067598029],[-127.21144368992088,57.08071748152646],[-127.2116907424097,57.08059526108768],[-127.21196916687086,57.080486198210046],[-127.21223613781133,57.08037387880162],[-127.21244673239698,57.08024190861643],[-127.21257910641094,57.080084887053935],[-127.21269263598454,57.079920195014346],[-127.21279467741311,57.07975112653286],[-127.21288632547292,57.07957991305128],[-127.21297064967413,57.07940540524725],[-127.21304869286266,57.07922871423356],[-127.21312258783597,57.07905094097991],[-127.21319436592354,57.07887206659719],[-127.21326619523964,57.07869431251152],[-127.2133411474502,57.07851765014362],[-127.21342026291484,57.0783420698072],[-127.21350357697204,57.07816869196098],[-127.21358994301868,57.07799416487811],[-127.21367636018836,57.07782075807271],[-127.2137627246682,57.077646230918994],[-127.21384704064593,57.07747172279057],[-127.21392721090007,57.077297253214056],[-127.21400323311217,57.07712170142393],[-127.2140720570664,57.076947337416506],[-127.2141336120552,57.07677192027156],[-127.2141661073822,57.07659116971172],[-127.21409061154812,57.07639125032974],[-127.21406624142776,57.07617516383713],[-127.21421501320356,57.076113255753754],[-127.21447445643253,57.076058162391526],[-127.21485646681076,57.07605908723194],[-127.2151892918502,57.076071677259065],[-127.2155174966594,57.07610112143009],[-127.21584589819012,57.07613728771689],[-127.21617189804327,57.07616226763015],[-127.21649387149158,57.07615814361651],[-127.2168058850351,57.07610031356835],[-127.21707158790342,57.07604739818524],[-127.21742367627247,57.076048594770796],[-127.21775154648584,57.076067949297],[-127.21808049288396,57.07608841374528],[-127.21840943963244,57.07610887736421],[-127.21873831565199,57.076127099226284],[-127.21906708533574,57.07614195886827],[-127.21939574859721,57.076153456291],[-127.21972419864488,57.07615823010456],[-127.22005243530624,57.07615628031056],[-127.22038042282149,57.07614648644746],[-127.22070927251876,57.07613107970491],[-127.2210379274057,57.07611006997259],[-127.22136555811318,57.07608906900151],[-127.22169422879519,57.07606805746117],[-127.22202295387525,57.07604928617312],[-127.22235183772695,57.076034995752586],[-127.22268188777005,57.07602517675349],[-127.22301093297772,57.076016487138624],[-127.22334098269341,57.076006666471635],[-127.22367110360712,57.07599908589395],[-127.22400118869757,57.075990384018496],[-127.2243313450437,57.075983922231806],[-127.22466051317467,57.075978589686436],[-127.22499077647396,57.07597548761627],[-127.22532003512222,57.07597351494709],[-127.22565040554774,57.0759737725919],[-127.22597881908466,57.075977410191],[-127.2263083445333,57.075983278102704],[-127.2266370086024,57.07599475727511],[-127.22696581598554,57.076010717464825],[-127.2272936906787,57.0760300480008],[-127.22762168961064,57.07605273894102],[-127.22794970822493,57.076076549673296],[-127.2282767392448,57.076101489685605],[-127.22860377068916,57.07612642887825],[-127.22892977873813,57.076151376899894],[-127.22925580654356,57.076177444723655],[-127.2295818871604,57.0762046320379],[-127.22990798759083,57.07623293915391],[-127.23023410501496,57.07626124529924],[-127.23055918258315,57.07628956044697],[-127.23088532034818,57.07631898558161],[-127.23121043478817,57.07634841956764],[-127.23153554972619,57.07637785274397],[-127.23186166957892,57.076406154822415],[-127.23218678550423,57.07643558637638],[-127.23251288981326,57.076463886983554],[-127.23283800672579,57.07649331691538],[-127.23316312413627,57.07652274603733],[-127.23348931835763,57.07655328496877],[-127.23381443677427,57.07658271246828],[-127.23413955568888,57.076612139157916],[-127.23446467510142,57.07664156503777],[-127.23479078283592,57.07666985995319],[-127.23511687154632,57.07669703343774],[-127.23544387646949,57.07672083502886],[-127.23577378962835,57.07673900423914],[-127.23610264321844,57.07675606186064],[-127.23643054537817,57.07677536927942],[-127.23675665569559,57.07680365928184],[-127.23707691512577,57.076842091191914],[-127.23739531100136,57.07688726481535],[-127.2377137963264,57.076934678424614],[-127.23803023783391,57.07698323147054],[-127.23834673276684,57.077032904052565],[-127.2386632842475,57.077084816943184],[-127.2389788488706,57.077137859253945],[-127.2392944143649,57.07719090080316],[-127.23960899303334,57.07724507178218],[-127.2399235560751,57.077299242161544],[-127.24023919653416,57.077354522348635],[-127.24055377787398,57.077408691055226],[-127.240868343587,57.07746285916214],[-127.24118391435837,57.077515896151716],[-127.24149846214642,57.077568942127186],[-127.24181303050298,57.077623107961905],[-127.24212761626019,57.077677272882504],[-127.2424411987642,57.07773256741712],[-127.24275481841217,57.07778898165837],[-127.24306743485634,57.07784652552312],[-127.24338003249092,57.077902948025155],[-127.24369265079858,57.07796049039604],[-127.2440053228346,57.07801915232066],[-127.24431691915676,57.078076702967],[-127.24462855270873,57.07813537332944],[-127.24494121108259,57.078194033175414],[-127.24525281022456,57.07825158159294],[-127.245565487011,57.078310239789516],[-127.24587708803028,57.07836778672029],[-127.24618975020121,57.078426443582956],[-127.24650239348944,57.078483979082606],[-127.24681399732074,57.07854152378219],[-127.24712666233556,57.07860017840604],[-127.24743930844025,57.078657711667],[-127.24775095147156,57.07871637459309],[-127.24806358294217,57.078773906520325],[-127.24837623186322,57.07883143754255],[-127.24868886520619,57.0788889679757],[-127.24900147957494,57.078945377046026],[-127.24931511875221,57.079001775560705],[-127.24962771844372,57.079058183292744],[-127.24994232696417,57.079112329419175],[-127.25025691985687,57.079166474947],[-127.2505735215157,57.07921835884946],[-127.2508910749667,57.07926799124951],[-127.25121054759173,57.07931312124332],[-127.25153089887128,57.079353758800885],[-127.25185510390689,57.079385392125225],[-127.2521831294512,57.079408021504],[-127.25251212274252,57.0794283991517],[-127.2528391982134,57.07945327762903],[-127.25316048316162,57.079490539822146],[-127.25347800564758,57.07953904547633],[-127.25379262353053,57.07959318233373],[-127.25410530775443,57.079651820271636],[-127.25441804603074,57.07971157776019],[-127.25473169941174,57.079767963280084],[-127.2550472350409,57.079818725898505],[-127.25536856179725,57.079857103118734],[-127.25569962496213,57.07987745286126],[-127.25603359357737,57.07989216973816],[-127.25636255641538,57.07991141722396],[-127.25667982987419,57.07995207190323],[-127.25698239950225,57.080016404541674],[-127.25727713623623,57.08009426172191],[-127.2575669782661,57.08018001112016],[-127.25785287629179,57.08027140198218],[-127.2581388490626,57.080365033135884],[-127.25842474982524,57.080456422756434],[-127.2587146705671,57.08054441053911],[-127.25901049202594,57.080623374246294],[-127.25931427841101,57.08069329390252],[-127.25962507908906,57.08075642025261],[-127.25993980932151,57.0808139038567],[-127.26025853877235,57.080866864822475],[-127.26057825627655,57.080918694658166],[-127.26089801141683,57.08097164416807],[-127.26121573982314,57.08102573331596],[-127.26152841024019,57.081083233061776],[-127.26183611284588,57.08114638419417],[-127.26213581650181,57.0812174577083],[-127.26242545693688,57.08129647364376],[-127.26270315398487,57.0813890543352],[-127.26296379188932,57.08149637021662],[-127.26321343705366,57.08161500019968],[-127.26345305637459,57.08174269335898],[-127.26368869582681,57.081874907919534],[-127.26392329641827,57.08200713215041],[-127.26415990585697,57.08213709488945],[-127.26440351299772,57.08226026450507],[-127.26465809917842,57.082372119095595],[-127.26492667507722,57.082469266951584],[-127.26521322571377,57.082548306881655],[-127.26551774691562,57.082608117987704],[-127.2658362239885,57.08265322235991],[-127.26616366789285,57.08268815158331],[-127.26649712115996,57.08271741756407],[-127.26683161543689,57.082746672586445],[-127.26716108857408,57.082780458799604],[-127.2674836240532,57.0828232781275],[-127.26779322999425,57.082880792943904],[-127.26809096767086,57.08295411384204],[-127.26838388643132,57.08303756827709],[-127.26866886494078,57.08313118664732],[-127.26894692338746,57.08323383826719],[-127.26921285533895,57.08334445303432],[-127.26946662383,57.08346191056919],[-127.26970510331279,57.0835851205564],[-127.26992628677195,57.08371634425512],[-127.27012723379028,57.083860093655495],[-127.27031505086524,57.084012937189996],[-127.2704937724457,57.08417147316869],[-127.27066741645571,57.08433230003597],[-127.27084201181711,57.08449087580116],[-127.27102371520161,57.08464601964584],[-127.27121546292469,57.08479209883402],[-127.2714223546123,57.08492794279],[-127.27165147628598,57.08504899908136],[-127.27190580525887,57.08515187609951],[-127.27217724784069,57.08524113590677],[-127.27246078250607,57.08532131065408],[-127.27275545932191,57.0853946511661],[-127.27305811934119,57.08546006737911],[-127.2733689068763,57.08552092028205],[-127.27368576133567,57.08557835075646],[-127.27400557331858,57.085631268309356],[-127.27432947829608,57.08568302428107],[-127.2746533841463,57.0857347794505],[-127.27497729086922,57.08578653381759],[-127.27530024879522,57.085840538306584],[-127.2756191734302,57.08589794391086],[-127.2759330945057,57.085959880972396],[-127.27623998467536,57.086027490185266],[-127.27654088882828,57.08610188219482],[-127.27683874264841,57.08617742420599],[-127.27713568531976,57.08625633693516],[-127.2774295612006,57.08633639986028],[-127.27772351284536,57.086418703039094],[-127.27801543834403,57.08650214624581],[-127.27830740239756,57.08658670925986],[-127.27859832713139,57.08667128182607],[-127.27888826636028,57.086756984245106],[-127.27917824419512,57.08684380648038],[-127.27946818601981,57.086929507621186],[-127.27975816646752,57.08701632857821],[-127.28004811088796,57.08710202844062],[-127.28033905987404,57.087186596994066],[-127.28062999362331,57.08727116506581],[-127.2809229725356,57.08735459160047],[-127.28121589883021,57.08743689718894],[-127.2815118569816,57.087516930704815],[-127.2818117962877,57.08759244115259],[-127.28211476735058,57.087665679480686],[-127.28242071620816,57.087735525374946],[-127.28272769029488,57.08780536048422],[-127.28303364137926,57.08787520494803],[-127.28333860689068,57.08794617922889],[-127.28363950237379,57.088019434511324],[-127.28393643579977,57.0880972114089],[-127.28422734690342,57.088180651058124],[-127.28451122816382,57.08826976342278],[-127.28478608983237,57.0883668097971],[-127.28505691925665,57.088467257810066],[-127.28532374951361,57.08857110716196],[-127.28558758826254,57.08867834794742],[-127.28584839803946,57.08878785973014],[-127.28610723604655,57.088899632105615],[-127.28636403175125,57.089012544956745],[-127.2866188181955,57.08912659797],[-127.28687159988606,57.08924291193862],[-127.28712439962601,57.08935922526413],[-127.28737619777223,57.089476668835424],[-127.2876279974581,57.089594111930744],[-127.28787979868362,57.08971155454991],[-127.28813156387241,57.08982787623764],[-127.28838539544917,57.08994417705528],[-127.2886402151467,57.09005934681607],[-127.28889600187132,57.09017226489514],[-127.28942258183841,57.090321735040554],[-127.28971588757736,57.09041410581693],[-127.29000921124603,57.0905064757766],[-127.29030344759299,57.0905954735866],[-127.29059948666074,57.0906766071224],[-127.29090034206091,57.090747604890716],[-127.29120692014682,57.09080397457135],[-127.29152003988841,57.09084010386959],[-127.2918388650413,57.090861605154934],[-127.29216151881472,57.09087410111373],[-127.29248803868995,57.09087871217211],[-127.2928163972705,57.0908765792202],[-127.29314663210677,57.09086882269885],[-127.29347980498115,57.09085655289299],[-127.2938128431895,57.090839800254585],[-127.2941468297958,57.090820795696715],[-127.29448074054656,57.09079954937567],[-127.29481357244376,57.090777192076],[-127.29514541754341,57.09075596455023],[-127.2954752351658,57.09073587714098],[-127.29580302534352,57.09071692986363],[-127.29613073957672,57.09069574085553],[-127.29645735361873,57.090672320296264],[-127.29678391291371,57.09064777863047],[-127.29711041263243,57.090620995076776],[-127.29743685752815,57.09059309041745],[-127.29776223990532,57.09056407467788],[-127.29808758392342,57.0905339376743],[-127.29841396813454,57.090503789501554],[-127.2987393111307,57.09047365087422],[-127.29906469151226,57.0904446318887],[-127.29939109558401,57.090415601890435],[-127.29971651289631,57.090387701733036],[-127.30004511116323,57.0903620107188],[-127.30038119334314,57.09034409008121],[-127.30072155674024,57.09033060920762],[-127.30106409863726,57.09032046820735],[-127.30140762656778,57.090309195638234],[-127.30174802726945,57.090296832538876],[-127.302085148781,57.090278897127426],[-127.30241484469637,57.09025543082666],[-127.3027348980051,57.09022197250886],[-127.3030442628153,57.09017741186022],[-127.30333870008812,57.090119549647056],[-127.3036170878482,57.090045034689325],[-127.30386989750434,57.08994723734642],[-127.3040991936408,57.089826137129435],[-127.30431037471239,57.08968840517341],[-127.30450873015835,57.089538471997265],[-127.30470063968583,57.08938075717666],[-127.30489249305434,57.08922192180694],[-127.30508756451655,57.08906641645232],[-127.3052943036599,57.08891976069869],[-127.3055170139708,57.088787515569514],[-127.30576204224923,57.08867410076876],[-127.30603472777563,57.088583946031086],[-127.30633183459008,57.08851372109675],[-127.3066480187699,57.08845787517707],[-127.30697382835922,57.08841201951731],[-127.30730382135957,57.08836724194132],[-127.3076316560194,57.08832024349954],[-127.30794883920449,57.0882632635543],[-127.30824899075674,57.08819188284898],[-127.30851810360271,57.08808830872039],[-127.30876477988524,57.08796254253189],[-127.30900823463523,57.08783344570911],[-127.30926789060243,57.08772548159518],[-127.30956081720997,57.087654170352316],[-127.30987087186043,57.0876006197383],[-127.31019056911543,57.087557059003935],[-127.31051778972545,57.087522388540854],[-127.31084944507674,57.08749663933327],[-127.3111833559336,57.08747647076158],[-127.31151543125925,57.0874630447753],[-127.31184559469907,57.08745412049531],[-127.31217575798543,57.08744519537964],[-127.31250690693233,57.087435138677414],[-127.31284013693825,57.08742506018722],[-127.31317439086747,57.08741497053579],[-127.3135097070331,57.08740599016137],[-127.3138451162076,57.08739924965046],[-127.31417952298317,57.087393639207306],[-127.31451296573316,57.087390279285316],[-127.31484657835522,57.0873914001268],[-127.31517818649306,57.08739478199078],[-127.31550789998498,57.08740266545021],[-127.31583466181301,57.087415061183606],[-127.31615955109639,57.087433079158444],[-127.31648148895812,57.087455609446465],[-127.31679958315593,57.087486023576844],[-127.3171137624216,57.08752320146673],[-127.31742429051646,57.087573865480984],[-127.31773003373965,57.08763578543688],[-127.31803091544401,57.087706720479886],[-127.31832901706348,57.08778664961004],[-127.3186242618624,57.087873331958264],[-127.31891551588514,57.08796453734475],[-127.31920383635575,57.08806025510558],[-127.31948914637526,57.088158244371535],[-127.31977237657667,57.088256254078374],[-127.32005454559587,57.088353153096584],[-127.32033358863471,57.08844896233248],[-127.32061981298108,57.088543577452135],[-127.32091020681972,57.08863927057733],[-127.32120174185597,57.088738314024],[-127.32148824033483,57.08884077037202],[-127.32176557270905,57.088946681500445],[-127.32202966999319,57.08905833037875],[-127.32227541701182,57.089176889776276],[-127.32249970825283,57.089302391283226],[-127.32269640427809,57.08943601810129],[-127.3228593876276,57.08958007406711],[-127.32298362556493,57.08973909369621],[-127.32307621509935,57.08990852177126],[-127.3231453381006,57.09008603369624],[-127.32319811932675,57.09026931556406],[-127.32324277389172,57.0904560423875],[-127.32328634958768,57.090641659332256],[-127.32333600456776,57.09082385210793],[-127.32339685429262,57.091001447973454],[-127.32343913690265,57.09117923220777],[-127.32346905247162,57.09135826276226],[-127.32350104976884,57.09153727221551],[-127.32353303084479,57.0917162818517],[-127.32355572820727,57.09189538569833],[-127.32355269927957,57.092076992261184],[-127.32351474238936,57.092264557407724],[-127.32348903708188,57.092447514914504],[-127.32353091907326,57.09261409500001],[-127.32371964598643,57.09275564752778],[-127.32401256927793,57.0928636380058],[-127.32431809478113,57.09291769962606],[-127.32465882036676,57.09291424030312],[-127.32498800336195,57.0929052931261],[-127.3253168217069,57.09288626126407],[-127.32566756253479,57.09287373083766],[-127.32597613363122,57.09286611145558],[-127.32630767393009,57.09286610370164],[-127.32663581536897,57.092857162948604],[-127.32696345339804,57.09283365556714],[-127.32728875497907,57.09280232524931],[-127.32761057948952,57.09275982109818],[-127.3279247801594,57.092706185348696],[-127.32823461748337,57.09264586821917],[-127.32854219506136,57.09257996915772],[-127.32884651078805,57.09250961922808],[-127.32914972362137,57.09243703813688],[-127.32945083155343,57.0923633569436],[-127.32974535550268,57.092278533754715],[-127.3300311138927,57.09217922833518],[-127.33031810558846,57.09208551390774],[-127.33061629692548,57.09201746393813],[-127.33093039495671,57.091990722096966],[-127.33125577168414,57.09199188541641],[-127.33158798133879,57.092010911631604],[-127.33192343591422,57.092034387237696],[-127.33225663161812,57.09205228084928],[-127.33258602218675,57.092050037341544],[-127.33291009390527,57.092013101268115],[-127.33323668015944,57.09198958878154],[-127.33356795708211,57.0919817193027],[-127.33389862118376,57.091986184504535],[-127.33422379113077,57.0920108802114],[-127.33454354529108,57.092058047352616],[-127.33485251885004,57.092122136661544],[-127.33514667666317,57.09220543120357],[-127.33544473192623,57.09228196014893],[-127.3357645677789,57.09233136519371],[-127.33609327631487,57.092368349324005],[-127.33640396904318,57.09242232983378],[-127.33666675758619,57.09252387586107],[-127.33689158340542,57.09266279824586],[-127.33716236177,57.092756415541174],[-127.3374679927151,57.09278354522471],[-127.33779245969474,57.09281720609827],[-127.33812094937569,57.092818320448146],[-127.33842985692559,57.092880160434134],[-127.33873002801866,57.09295778116831],[-127.33900814938433,57.09305468189806],[-127.33922252196665,57.093189224353964],[-127.33937785367215,57.093349031238404],[-127.33958113685587,57.0934915329276],[-127.33979459036804,57.09362944650299],[-127.34002521557969,57.09375597492878],[-127.3403193971219,57.09383925790637],[-127.34053071194752,57.09397495064162],[-127.34072688409809,57.094120886293275],[-127.34094750297253,57.09425648279406],[-127.34116793471343,57.09435733465969],[-127.34154414596318,57.09439381699108],[-127.34185503584816,57.09445226620242],[-127.34212916322427,57.094552564194686],[-127.34243626108105,57.09462113867715],[-127.34271119694574,57.09471470208916],[-127.34293690235924,57.09484800134756],[-127.34322100820135,57.094938106796185],[-127.34353200611554,57.09499991353459],[-127.34384500824616,57.09505945720614],[-127.34410972623776,57.09515648556035],[-127.34431606404338,57.09529670717231],[-127.34461365157908,57.095358649579225],[-127.34484540582622,57.09548739997248],[-127.34513754594629,57.095570693478464],[-127.34541271418597,57.095670974092194],[-127.3457393989291,57.09567881321891],[-127.34606525908983,57.09566312222517],[-127.34638120287957,57.095718146193526],[-127.34669118788288,57.09577995600757],[-127.34699548933169,57.09585639481069],[-127.34717332467969,57.09597897281511],[-127.34745087864282,57.096117333474325],[-127.34774933917456,57.096350749790076],[-127.34806611870535,57.09640015690902],[-127.34811896579451,57.09646349926281],[-127.34840010772722,57.096556986963485],[-127.3486863435676,57.09664817972188],[-127.34896249093572,57.096746201281654],[-127.3492356289042,57.096846495100635],[-127.34951280344247,57.09694450491659],[-127.34980000691418,57.09703344360513],[-127.35010308665606,57.09710428378369],[-127.35026488247361,57.097151926829774],[-127.35073001326981,57.09721884665609],[-127.35104001738367,57.09728064620562],[-127.3512300112313,57.097425510127785],[-127.35135071175924,57.09759687111139],[-127.35158206830907,57.09771328487362],[-127.3518723719373,57.09780218704407],[-127.35242976464224,57.09770225888319],[-127.35272880393408,57.09762854509786],[-127.35299679906244,57.09752376870645],[-127.35325096563815,57.097407926672425],[-127.35349142203809,57.0972843804058],[-127.35368777345857,57.09713999513118],[-127.35385686418599,57.09698468392969],[-127.35400504155591,57.09682174359439],[-127.3541075299547,57.096652552199025],[-127.35415189288932,57.096474997239696],[-127.35416712898102,57.09629214035305],[-127.35419591525014,57.09611250539356],[-127.35429027537444,57.09594676083537],[-127.35451055542124,57.095807730219946],[-127.354684887099,57.095654605288274],[-127.354869701131,57.09550585466939],[-127.35507630781312,57.095360239990015],[-127.35531271090323,57.09523897415798],[-127.35561204188457,57.09517421741489],[-127.35594221747913,57.095134918967204],[-127.35625517585436,57.09507562335206],[-127.35655946057129,57.0950052086611],[-127.35683810867793,57.094910401165635],[-127.35709537533675,57.094795640171135],[-127.35736658655095,57.09469530463885],[-127.35766226594507,57.09461488921864],[-127.3579676248471,57.09454558087445],[-127.35827520622436,57.094480732072036],[-127.3585859948091,57.09441921169014],[-127.3588957581275,57.094357701239815],[-127.35920333643317,57.09429285025823],[-127.35950333730467,57.09421798984835],[-127.3597989523591,57.09413644934851],[-127.36010113493346,57.09406492736061],[-127.36041538025401,57.09401345419619],[-127.36073716169844,57.09397086847287],[-127.3610568144965,57.093926062455246],[-127.361373082718,57.09387344500804],[-127.3616860853617,57.09381637746687],[-127.36200327338689,57.09376038632281],[-127.3623001588463,57.093685551936325],[-127.36250073126573,57.09354559256699],[-127.36268745062492,57.09339344822707],[-127.36294681093004,57.09327977451459],[-127.36322832113626,57.09317931903647],[-127.36340196312769,57.0930373979825],[-127.36347312364924,57.09285955975793],[-127.3635410584614,57.092678392673676],[-127.36369044105616,57.092522153754054],[-127.36388031947365,57.09237221639677],[-127.36409423008985,57.09222987342522],[-127.3643293059063,57.092101879807046],[-127.36458364127763,57.09199273876154],[-127.36487511508646,57.09191122991943],[-127.3651952922047,57.091852957903264],[-127.36552222081342,57.09181030633423],[-127.36584577591618,57.09178898543039],[-127.36617738656682,57.091791117230756],[-127.36651007783841,57.09179435772004],[-127.36684233054942,57.09178527259203],[-127.36717538451855,57.09176945311027],[-127.36749098481447,57.09172803615638],[-127.36777172687673,57.09163542475706],[-127.36804050371099,57.091526125454344],[-127.36833736013915,57.09145127745163],[-127.36865157303896,57.09139978454808],[-127.36897436416245,57.0913571676716],[-127.3692982586472,57.09131678011185],[-127.36961894351076,57.09127306288549],[-127.36995127253631,57.09123706854293],[-127.370273980903,57.09119220759178],[-127.37055724048304,57.09111301390086],[-127.37078402843228,57.09098509553497],[-127.37098627727659,57.0908350176392],[-127.3712108372948,57.09070263853302],[-127.37148635249264,57.09060895312724],[-127.3717947035992,57.090538459716484],[-127.37211395469305,57.09048354284256],[-127.37243390900196,57.09044879311659],[-127.37276726944478,57.09044192282102],[-127.37309784468663,57.09044404780732],[-127.37342761967341,57.09045290549556],[-127.37375653094769,57.0904662548574],[-127.37408552261883,57.09048184425062],[-127.37441365076847,57.09050192532596],[-127.37474180284575,57.090523126180464],[-127.37507155529619,57.09053085910962],[-127.37539852332894,57.09054758738875],[-127.37572414917443,57.09058450436194],[-127.37603993308389,57.09063497458853],[-127.37633603287541,57.09071255222946],[-127.37661832237474,57.090808208613666],[-127.37690458234512,57.09089933908449],[-127.37719286836914,57.09098932670384],[-127.37750472871222,57.09104543914774],[-127.37783725370001,57.09104416903223],[-127.37812348154924,57.090961564832064],[-127.37839960381191,57.09085664969636],[-127.3786823780598,57.09076399305965],[-127.37896621533712,57.09067244541853],[-127.37925001102663,57.09057977673722],[-127.37953065958105,57.09048601985872],[-127.37984464244101,57.09039975574414],[-127.38005301306579,57.09027762004827],[-127.38011407283827,57.0901088459312],[-127.38012811841301,57.089924877274626],[-127.38013899438971,57.08973870046754],[-127.38013862097924,57.08964231099852],[-127.3802740168556,57.08938644461724],[-127.38038047551142,57.089216069207765],[-127.38049938582999,57.08904780364981],[-127.38062565082906,57.088882822708456],[-127.38075600395975,57.08871667752563],[-127.38089160662672,57.08855271835279],[-127.38102095714808,57.088387704387785],[-127.38112843382424,57.08821731764799],[-127.38120688273628,57.08804387565051],[-127.3812521345671,57.08786630175081],[-127.38128491725178,57.08768661819384],[-127.38130841682342,57.0875070329564],[-127.38132570564362,57.087327513508285],[-127.38131921865829,57.08714712501773],[-127.38129208521288,57.086966955197376],[-127.38134886034238,57.08679374275919],[-127.3814645896391,57.08662326847623],[-127.38157622895851,57.08645395827434],[-127.38163703416193,57.08627846136253],[-127.38165742605996,57.08609890913686],[-127.38166538989331,57.085918367730216],[-127.38168269284719,57.085738848265365],[-127.38170721339783,57.085559252360284],[-127.38173173371925,57.085379656473734],[-127.38176042322763,57.08520113728569],[-127.38179530611139,57.08502255249699],[-127.38183423713777,57.08484168312915],[-127.38187196605494,57.084656343105024],[-127.38195040433905,57.08448290110535],[-127.38211978504326,57.084339879187375],[-127.38237892956965,57.084223926922874],[-127.38267820172162,57.08413220743641],[-127.38298036749606,57.084063994422195],[-127.38329441965489,57.084010225683635],[-127.38361602774636,57.083965342825685],[-127.38393976378678,57.08392267828903],[-127.3842592655331,57.08387669533247],[-127.38457660475079,57.08382849284337],[-127.38489614534403,57.08378362875163],[-127.38521905646033,57.08374657402591],[-127.38554423348462,57.083715098676336],[-127.38587063605848,57.0836892137418],[-127.38619936176188,57.083670028399446],[-127.38652943463394,57.0836597947103],[-127.38686193584738,57.08365962202055],[-127.38719443705781,57.083659448483196],[-127.38752350954981,57.08365034376612],[-127.38784583829637,57.083625618061276],[-127.38815677510533,57.08357187067328],[-127.38845870028443,57.08349692229889],[-127.38876156724685,57.08341972148609],[-127.38907225802572,57.083359249404005],[-127.38939158685076,57.08330877221567],[-127.38971655408837,57.0832716843763],[-127.39004237207908,57.0832581245375],[-127.39037090311099,57.08326246858707],[-127.39069983982857,57.08327801600218],[-127.39102992249153,57.08329691292441],[-127.39135894093147,57.083314699516336],[-127.39168867543893,57.08332351082361],[-127.39201910926774,57.08332334701693],[-127.3923485838295,57.083325434318695],[-127.3926786029884,57.08334208605547],[-127.3929991368542,57.083382376175145],[-127.39331402283153,57.083437296938264],[-127.39362799116242,57.08349558931725],[-127.39394278113886,57.08354826790621],[-127.39426499237484,57.08357732849444],[-127.39459724878701,57.08357041357626],[-127.394921549336,57.08360057106303],[-127.39524320958887,57.08364308538385],[-127.39555115193531,57.08370592107098],[-127.39586314280832,57.08376647100775],[-127.39616014801273,57.0838406308785],[-127.3964293348165,57.0839453510011],[-127.39674406735834,57.083995781833615],[-127.39706767517941,57.08403490830428],[-127.3973912836596,57.084074033973216],[-127.39772344093953,57.08409289184855],[-127.39795900728504,57.08398276508516],[-127.39814347525555,57.08383059320105],[-127.39835003475832,57.08368939274646],[-127.39855980354466,57.0835515201124],[-127.39876953002886,57.08341252673772],[-127.3989792549956,57.08327353303966],[-127.39918583272484,57.083133451912005],[-127.39939344941948,57.08299335930717],[-127.39960421030894,57.08285435348215],[-127.39982135052992,57.08272088311466],[-127.4000000790053,57.082638263160845],[-127.40007321353906,57.08260497329955],[-127.40036977523609,57.08252557123764],[-127.40068260312667,57.08246729002824],[-127.40096207531083,57.08237237818086],[-127.40123410815988,57.08227194138426],[-127.4015039690938,57.08216816478946],[-127.4017706419816,57.082062180185865],[-127.40203727250781,57.081955074630585],[-127.40230394244551,57.08184908895293],[-127.40256309105908,57.081735337630604],[-127.40283636021319,57.08164048842049],[-127.40316242263536,57.08160559676481],[-127.40346136203277,57.08153512883237],[-127.40372564559274,57.081646611657106],[-127.40401574365927,57.081729794696585],[-127.4043207850006,57.081798245088315],[-127.4046189791,57.08187685622354],[-127.4049402668746,57.081909262853955],[-127.40524432834411,57.081978842538874],[-127.4055483909149,57.08204842151848],[-127.40586034307847,57.08210782705713],[-127.40617523698904,57.08216271672143],[-127.40649107369195,57.082215353758144],[-127.40680397054415,57.08227250517741],[-127.40711196184701,57.08233643392261],[-127.40741202498856,57.082409414362324],[-127.40770816575966,57.08248804074741],[-127.4080023665374,57.08257004999179],[-127.40829558569995,57.08265319004752],[-127.40858878961626,57.082736329627444],[-127.4088849764063,57.08281607377251],[-127.40918410491031,57.08289130204878],[-127.40948524138267,57.08296538709771],[-127.40978837772128,57.083037208135],[-127.41009249802316,57.083107896987656],[-127.4103946372831,57.08318084828604],[-127.41069475439897,57.083254941631274],[-127.41099189121424,57.08333242912006],[-127.41128408218441,57.08341557375976],[-127.41157024575438,57.08350326643306],[-127.41184848224401,57.08360001118016],[-127.4121217731777,57.083702413197],[-127.41238799646212,57.083809374638335],[-127.41264917540148,57.08391975277493],[-127.41290528532828,57.084032427045976],[-127.41314537549991,57.08415872472907],[-127.41335697662636,57.084296539322985],[-127.41348480063839,57.084458799624045],[-127.41359537428679,57.084629092817],[-127.41376530856509,57.08478529219467],[-127.41399405965142,57.084911711375746],[-127.41425220341401,57.08502324028716],[-127.41452248833528,57.085127911874466],[-127.4147907514555,57.085233725717785],[-127.41505999879413,57.08533840749417],[-127.41533020557003,57.085440836604874],[-127.41559542581378,57.085547802745694],[-127.41584961456397,57.08566385501543],[-127.41607135000966,57.08579595123037],[-127.41623816959954,57.08595106063697],[-127.41639379231118,57.08611077490226],[-127.41660026261779,57.08624864038892],[-127.41685758900827,57.08636577762137],[-127.41709242949607,57.08648876298926],[-127.4171814209384,57.08666152983364],[-127.41703046209241,57.086824574206425],[-127.41713712850986,57.08702853327372],[-127.4173554034761,57.08706651265124],[-127.4176965647232,57.08707625534562],[-127.41802557649919,57.08706483282877],[-127.41835419087981,57.087042205166],[-127.41868059957945,57.08701623807107],[-127.41900694157357,57.08698802915352],[-127.41933215971483,57.08695758991662],[-127.41965741875026,57.08692827028284],[-127.42000014694688,57.08692453952217],[-127.42030557584762,57.08688982982948],[-127.4206390920611,57.08686041782123],[-127.42096836631649,57.08685571018094],[-127.42129878891606,57.08685435178838],[-127.42162821238941,57.08685412431272],[-127.42195867642859,57.08685388466127],[-127.4222890574912,57.086851403347964],[-127.42261935551944,57.08684668037382],[-127.42295332614772,57.08682958698311],[-127.42328717193298,57.086809131501994],[-127.42361730337542,57.08679992435354],[-127.42393798378868,57.08681435771297],[-127.42424157841704,57.08686932800281],[-127.42453200964346,57.0869591881913],[-127.42481856232703,57.08705581531564],[-127.4251178797448,57.08713436851394],[-127.42543593106014,57.087189178128924],[-127.42573085545482,57.08726105276567],[-127.42595680498655,57.087394207603744],[-127.42619993951236,57.087517086379926],[-127.4264561131615,57.08762973433483],[-127.4267522499076,57.08770607695181],[-127.42706242425248,57.08777105666384],[-127.42732256493726,57.087879176113724],[-127.42757680453748,57.08799520572513],[-127.42786810955997,57.088080565704644],[-127.42816343679641,57.088162518411025],[-127.42842654701415,57.08826724063622],[-127.42866763026412,57.088390137500966],[-127.42890267113968,57.08851758361238],[-127.42914375748394,57.088640479619464],[-127.42939292095434,57.08875880322355],[-127.42965315829348,57.08886915892616],[-127.4299572361715,57.088936440522765],[-127.43026730070811,57.08899805143774],[-127.4305754266941,57.08906304549727],[-127.43121159735274,57.089200659012945],[-127.43140011852623,57.089243425174175],[-127.43146675301101,57.089285286980314],[-127.4317649772285,57.08936159565021],[-127.43208572759212,57.0894051511227],[-127.43241222984165,57.089436313083425],[-127.43272407455464,57.089490052629706],[-127.43303022748717,57.08955730441505],[-127.43335189612469,57.08959748411505],[-127.43367360725641,57.08963878343394],[-127.43399238099222,57.08968459774277],[-127.43431117200655,57.08973041109268],[-127.43463188648713,57.08977283990586],[-127.43495541408437,57.089807390896055],[-127.43527998291034,57.089841929634375],[-127.43559588072848,57.089893376072325],[-127.43590892528385,57.08995157839416],[-127.436235148763,57.09000290964284],[-127.43654825360339,57.090062230663705],[-127.43681515205213,57.090156806941266],[-127.43702778602609,57.09029121103078],[-127.43720816466033,57.09044726676337],[-127.4373751736523,57.09060459047376],[-127.43749830177626,57.09077584804601],[-127.43764871084738,57.09093111265462],[-127.43792512780412,57.09103118627828],[-127.43835990970163,57.09111270013917],[-127.4386847277259,57.09107100846097],[-127.43871016887468,57.090950794431805],[-127.43877474039957,57.090771863415256],[-127.43900051025874,57.090650560497046],[-127.43923536867345,57.09052355254147],[-127.43949365222548,57.090415340497145],[-127.43980746710062,57.09035583341957],[-127.44012042490438,57.09030081853357],[-127.44040621904199,57.09021023490151],[-127.44067498922337,57.090106388177986],[-127.44094160910367,57.090000322899535],[-127.44120822751162,57.08989425708423],[-127.44147910013201,57.08979150632344],[-127.44175043392927,57.08970107949941],[-127.44199804456433,57.08958401340234],[-127.44232058494912,57.089509832386845],[-127.4426160463764,57.089429224808136],[-127.44290348593597,57.08930050773803],[-127.4431482219419,57.089272020208995],[-127.44349235977221,57.08925027835813],[-127.4436997191896,57.08921659903562],[-127.44415184126578,57.08923737430127],[-127.44448191706321,57.08925389522117],[-127.44480611007066,57.089223403770035],[-127.44513251940018,57.08919737044925],[-127.4454589869696,57.089172456535955],[-127.44578522672776,57.08914193995629],[-127.44611039967828,57.089110313508755],[-127.44643711903122,57.08909211958783],[-127.44676781316053,57.08909741911966],[-127.44709772003128,57.0891094517946],[-127.44742668744655,57.08912373581149],[-127.44775738198454,57.08912903283496],[-127.44809174141925,57.08912195871272],[-127.44841089267011,57.08914979972642],[-127.44870712701096,57.08922721299025],[-127.4489976332774,57.089317018856626],[-127.44930085128853,57.08938762797885],[-127.44961197459348,57.0894491815554],[-127.44992405493868,57.089508482014466],[-127.45023221826479,57.08957342966841],[-127.4505315226228,57.089649683882286],[-127.45081200879521,57.089747443376176],[-127.45101856330442,57.089884134509724],[-127.45124759432578,57.0900138500254],[-127.45146787558018,57.09007640993016],[-127.45181507558264,57.09019023815575],[-127.45203593666983,57.090322285050085],[-127.45227611004506,57.090446270451125],[-127.45250613043605,57.090574852002256],[-127.45273110921451,57.09070685195665],[-127.45295808610597,57.09083658754174],[-127.45319624324065,57.09096171469947],[-127.45342118425755,57.0910925930951],[-127.45362587658423,57.091233784678494],[-127.45382444417878,57.09137728598873],[-127.4540291395048,57.09151847696843],[-127.45423283806845,57.09166079964892],[-127.4544130384562,57.091810109307595],[-127.45453409666028,57.09197913315595],[-127.4546998879432,57.09212972402477],[-127.45495634569468,57.09224679800374],[-127.45514985440634,57.09239259569816],[-127.45531079306511,57.09255108617152],[-127.45540397290186,57.09272042037993],[-127.45540241646603,57.09292443792713],[-127.45550933032533,57.09307456392928],[-127.45570580706003,57.09321696519944],[-127.45584313412766,57.09321543271648],[-127.45621688600146,57.09302071144326],[-127.45644537972663,57.09289038022513],[-127.45666969956694,57.092758974328426],[-127.45685518774592,57.09261118850578],[-127.45703954877456,57.09246117324784],[-127.4572428750227,57.09232103379573],[-127.45747660010254,57.092192884073505],[-127.45770616785416,57.092063659503104],[-127.4579336101365,57.091933337398046],[-127.45816317479947,57.09180411204767],[-127.45840012684744,57.091679287218575],[-127.4586762901474,57.09158092461948],[-127.45897718497082,57.09150806506674],[-127.45931997158291,57.0914504284961],[-127.45959299703738,57.09137787927862],[-127.45990359793042,57.09131611776301],[-127.46020883100807,57.09124881118447],[-127.46050967771731,57.091174827711306],[-127.46080262280331,57.091082997934414],[-127.46109086502211,57.09100354985142],[-127.46137333891606,57.09090847341773],[-127.46166674893563,57.090828966149644],[-127.46198641161027,57.09078839480489],[-127.46231490391189,57.09076229513785],[-127.462632218523,57.090687001217184],[-127.46292011258316,57.09059858589732],[-127.46320051417732,57.090503528691876],[-127.46346605046878,57.09039742884353],[-127.46372094597415,57.090283601682906],[-127.4639758137814,57.09016865344674],[-127.46422120949116,57.090049327507096],[-127.46444646754281,57.089916776613094],[-127.46467393348944,57.08978756317591],[-127.46488829556877,57.089694364679175],[-127.4652018219357,57.08957427172548],[-127.46542287537015,57.08943952458967],[-127.46565768175883,57.089313589588926],[-127.46608887288899,57.08908344688421],[-127.46616944907096,57.089002958691445],[-127.46645504632251,57.08893585799297],[-127.46667494057009,57.08887958338013],[-127.46675945533545,57.088712742727935],[-127.46685197138726,57.0885390867711],[-127.46724385601604,57.088226437079804],[-127.46729110712789,57.08811157577107],[-127.46737885718746,57.08805678638032],[-127.46755189346933,57.08809855396922],[-127.46790885069267,57.0882234385589],[-127.46822369544297,57.08827369723821],[-127.4685501316736,57.088302527929336],[-127.4688552543788,57.08836858689425],[-127.46915165244594,57.08844931488296],[-127.46945296454682,57.08852326157015],[-127.469763089044,57.08858477858571],[-127.47008224008908,57.088639467856446],[-127.47040518950331,57.088658245326734],[-127.47073361496643,57.08863100410444],[-127.47104968898888,57.088578121066675],[-127.47133324683337,57.08848525229561],[-127.47165503032714,57.088446874835306],[-127.47197889437159,57.0884084730962],[-127.47230287009079,57.088373431932474],[-127.47262952779288,57.08835405202886],[-127.4729587918729,57.08834921334045],[-127.47328837321413,57.08835221641318],[-127.4736190646542,57.08835744787733],[-127.4739497131898,57.088361558106506],[-127.47428108484414,57.08835781314636],[-127.47460627067025,57.08838103846316],[-127.47491446666277,57.08844592775747],[-127.47522400551834,57.08851864733298],[-127.47552919207551,57.08855890980967],[-127.47587033816369,57.088567379976354],[-127.47619935466851,57.08858271182855],[-127.47652665131211,57.088607029391774],[-127.47685407760883,57.0886347073223],[-127.47717478678244,57.08867591111372],[-127.47748781467944,57.088731772625664],[-127.47779606146023,57.08879777552459],[-127.47809639544064,57.08887283445166],[-127.4783857977244,57.088959225449955],[-127.47866321778389,57.08905583962052],[-127.47893164176111,57.08916040141681],[-127.47919511288873,57.08927062327621],[-127.47944840789435,57.0893843227031],[-127.47967755856311,57.08951510883449],[-127.47992487824892,57.08963447960072],[-127.48015188093387,57.08976304755629],[-127.48030878221586,57.0899215537413],[-127.48041351668165,57.09009298157958],[-127.48051819237583,57.09026328914634],[-127.48069337787035,57.090413741235785],[-127.48086147583862,57.09056763624308],[-127.48100001619105,57.0907319546337],[-127.48116109774631,57.09089153341558],[-127.4813678131304,57.09100239566224],[-127.48172360877422,57.091015167982874],[-127.48205061659017,57.09097782647817],[-127.48236002425303,57.090912661968595],[-127.48267725493658,57.09086310022245],[-127.48300026071578,57.09082916446747],[-127.48331190344744,57.09076845581579],[-127.48361489651111,57.090697756799926],[-127.48390817229591,57.09061595873663],[-127.48419175738711,57.090524182276575],[-127.48447099504959,57.09042685022669],[-127.48475134204743,57.0903317467185],[-127.48503381226172,57.090237739314496],[-127.48533929602051,57.09017821675982],[-127.48567163619484,57.09017219022291],[-127.48599243871469,57.09013490941042],[-127.486307376746,57.09007976041621],[-127.48662241712312,57.09002685126339],[-127.48693852412423,57.089975050071445],[-127.48725574115682,57.089925477226],[-127.48757404139607,57.08987701213696],[-127.48789588023507,57.08983971478443],[-127.48822602209874,57.08983034411369],[-127.48855492408063,57.089842283638696],[-127.48888399999421,57.08985870390662],[-127.48921392653659,57.08987063008108],[-127.48954597799774,57.089883652047384],[-127.48987792624432,57.08989443257213],[-127.4902052835295,57.089892934921664],[-127.49052203679028,57.08985793094039],[-127.49082577258082,57.08978048116775],[-127.49114084777692,57.08972868150753],[-127.4914695557044,57.08970923099617],[-127.49179952150774,57.08969536971523],[-127.49212494686921,57.08972415334467],[-127.49244191683906,57.089774329818695],[-127.4927472664811,57.08984481453616],[-127.49300962716846,57.0899516590928],[-127.49310171674892,57.0900088913123],[-127.49355758307041,57.09015162997901],[-127.49381688628068,57.09025962888438],[-127.49403280909301,57.090393904656665],[-127.49423360455826,57.09053732051585],[-127.49441921253789,57.09068875633207],[-127.49458941497181,57.09084261021314],[-127.49472792783041,57.091004673271414],[-127.49483479440825,57.09117606600271],[-127.49494879333042,57.091345135156196],[-127.49512610510479,57.09149554431628],[-127.49531265814917,57.09164472644296],[-127.49547582420759,57.09180314359091],[-127.4956572262328,57.091952384342704],[-127.4958923093908,57.09207410787815],[-127.4961749498713,57.09217062592276],[-127.49646643886487,57.092255832939124],[-127.49676585584436,57.092331981212126],[-127.49706818837167,57.09240361178218],[-127.49736759117702,57.09247975887195],[-127.49766507787798,57.09255928997253],[-127.49795648572723,57.09264225289892],[-127.49824404381842,57.09273198477439],[-127.49852960926974,57.0928239807161],[-127.49880211228121,57.092925093290994],[-127.49903823555324,57.093046799476056],[-127.49922993814039,57.09319479636057],[-127.4994490457646,57.09333014815363],[-127.49968835021448,57.093454058475366],[-127.49997376597494,57.09354156954472],[-127.50027431167634,57.09361993884498],[-127.50050245426868,57.093695777598846],[-127.50065898399193,57.093868836824385],[-127.50100342321232,57.093960150334],[-127.50131854997235,57.09401481072287],[-127.50163950552759,57.09406043609768],[-127.50196390720285,57.0940880866723],[-127.50229460807697,57.09409212507578],[-127.50262522134572,57.094093921857414],[-127.5029567554346,57.094119246027944],[-127.50323907787121,57.094206785776834],[-127.50350660784873,57.094312429775776],[-127.50376620299605,57.09442601099829],[-127.50401465338692,57.094545324706424],[-127.50424378682703,57.09467270699158],[-127.50443857945709,57.0948195401936],[-127.50460583886753,57.094975657874244],[-127.50471472127094,57.095144778593195],[-127.50483901279146,57.09531147971322],[-127.50500517826119,57.09543958713252],[-127.50518768842073,57.09561570443858],[-127.505418092526,57.095748674713604],[-127.5056747289739,57.09586564927312],[-127.50595693863208,57.09594982207455],[-127.5062912891649,57.09596725920835],[-127.50661380453434,57.09599940386227],[-127.5068968085909,57.096103741697384],[-127.50700384321439,57.09619890274094],[-127.50709672070911,57.09643321886867],[-127.50714203998314,57.09661428117824],[-127.5072754721215,57.0967763911345],[-127.50743964565571,57.09693254128685],[-127.50761816093348,57.0970851628342],[-127.50780070338286,57.09723549582585],[-127.50801478115898,57.097373134177055],[-127.50825635211449,57.09750036626265],[-127.50849284156159,57.09762989848855],[-127.50863112944701,57.09778410482838],[-127.50867938748698,57.09796064929352],[-127.50870415229386,57.09814419085397],[-127.50875973557811,57.0983228924418],[-127.50882869087103,57.098500318491055],[-127.50892534271082,57.098672940606974],[-127.50907207306666,57.098831532631046],[-127.5092555823068,57.098979610951275],[-127.50945548267094,57.09912413670411],[-127.50965440423047,57.09926979441231],[-127.50983181018293,57.09942018444569],[-127.50997557317018,57.099582172665535],[-127.51008966369811,57.099751229613865],[-127.51018327877185,57.099925007107984],[-127.51021514496843,57.09999973884037],[-127.51025835122853,57.10010012010513],[-127.5103015968988,57.10028008511873],[-127.51029508296246,57.100456142519896],[-127.51013194129926,57.100616078371964],[-127.5099276957359,57.10075519251132],[-127.50969305271404,57.100883449000186],[-127.50949718107928,57.101025828281095],[-127.50936838430212,57.10119209126758],[-127.50925622480139,57.10136152440549],[-127.50915341072408,57.10153197027031],[-127.50905687990634,57.101704585206456],[-127.50887258969763,57.10185243414049],[-127.50860294144395,57.10195755443816],[-127.50846672447109,57.10211941873628],[-127.50880117670286,57.10240138267322],[-127.50898697171888,57.10252813829926],[-127.50934141112938,57.1026350085316],[-127.5096370239768,57.102716777603206],[-127.50994526199767,57.102778223613946],[-127.51027472231974,57.10280131245695],[-127.51059815674196,57.1027762712535],[-127.51091631357573,57.10272214678383],[-127.5112403642933,57.10271278953486],[-127.5115701876579,57.10271905730187],[-127.51187828834884,57.10272445502725],[-127.51223595924284,57.10272927754119],[-127.51253245272102,57.102780765439135],[-127.51283173725365,57.10287705660876],[-127.51314662841496,57.10292384620497],[-127.5134234064066,57.10297331893],[-127.51374619044964,57.10306261005072],[-127.51402882413299,57.10315572899631],[-127.51432358674069,57.103241981143164],[-127.51461224271125,57.10333054534487],[-127.5148706696502,57.10343851532149],[-127.51505233464367,57.103591091545134],[-127.51531683577645,57.10366984653666],[-127.51554068459473,57.103791667715925],[-127.51566110750178,57.103884425368356],[-127.51607669509637,57.10399505113638],[-127.51628346998469,57.10412939949862],[-127.51645603437196,57.10428656333658],[-127.5166863524833,57.10441503296647],[-127.51693180111042,57.10453435904781],[-127.51707256744213,57.104697496366825],[-127.51724787343804,57.104845660132334],[-127.51749845438714,57.10496380465204],[-127.51773997164462,57.10508765869307],[-127.5179499977179,57.105225329576214],[-127.51814892227743,57.105369854776136],[-127.51835091063857,57.105513223145024],[-127.518559097233,57.10565651910427],[-127.51872117259872,57.10580931872412],[-127.51877046732763,57.105984728164486],[-127.51878492973505,57.10616726849424],[-127.5188949473914,57.10633636663361],[-127.51902140231967,57.10650303155162],[-127.51906867801267,57.10667958540926],[-127.51910779677466,57.10685847605784],[-127.51917779543892,57.1070347654129],[-127.51924672584204,57.107209946284215],[-127.5192816702998,57.107387764649125],[-127.5192753736883,57.10756830499563],[-127.51930425456321,57.10774955673902],[-127.51946030549577,57.10790690960348],[-127.5197267292064,57.108006931334096],[-127.52004419668444,57.10806488418757],[-127.52034569975969,57.108137594154634],[-127.52064326659766,57.10821483296631],[-127.52093988228845,57.108294324032144],[-127.52123348115876,57.10837609143885],[-127.52152907471827,57.10845559311864],[-127.52182865118881,57.10853168495672],[-127.52213413160418,57.10859986085767],[-127.52244252571387,57.108663518407056],[-127.52274903287407,57.108731680922226],[-127.52305351983158,57.10880098722653],[-127.52335701121221,57.10887142537391],[-127.52365661107574,57.1089475128466],[-127.52394331018942,57.10903720129142],[-127.52417772440273,57.109163369105204],[-127.52439897135051,57.10929641583183],[-127.52461421702166,57.10943401599066],[-127.52482329486723,57.109572808808196],[-127.52502426112098,57.10971505886189],[-127.52520491048404,57.10986651341807],[-127.52535588247122,57.11002504013296],[-127.5255400691424,57.11023922433699],[-127.525657919242,57.11034433388837],[-127.52587519659538,57.11048078752568],[-127.52605585291808,57.110632240988735],[-127.52620378546814,57.11079192334643],[-127.52628824025217,57.11099270101253],[-127.52637464470438,57.11113853084402],[-127.52644159399091,57.11131485299745],[-127.52648186561527,57.11149597085081],[-127.52655792605161,57.111667702761835],[-127.52672832223375,57.11182039645012],[-127.52693046570329,57.11196599301012],[-127.52714873687806,57.11210131230237],[-127.52740195129572,57.11220595748783],[-127.52769843432371,57.112306732984905],[-127.52780815208608,57.1124668611797],[-127.52783747635524,57.112606632949884],[-127.528186281398,57.11272360872663],[-127.52844296684214,57.1128371787461],[-127.52861228984936,57.11298876190062],[-127.5287552920286,57.11315410422217],[-127.52885792618011,57.11329189625764],[-127.52906662574458,57.1134721616217],[-127.52923406656306,57.11362824983886],[-127.52936882431553,57.11376790701734],[-127.52933427484841,57.113964473190194],[-127.5293091323129,57.11411160858206],[-127.52930199092076,57.11429552350092],[-127.52951384999997,57.114476872273514],[-127.52967214200447,57.11463643009366],[-127.52984470259202,57.11479133682418],[-127.5300265254798,57.114945013862496],[-127.53018877503402,57.115100041074086],[-127.5302524740439,57.11522035400385],[-127.53023576842634,57.11544921824425],[-127.53029550333652,57.115625623850924],[-127.53037793790048,57.115800642390674],[-127.53048394666116,57.115970900796775],[-127.53062885542234,57.11613173559854],[-127.53078607286606,57.11629018407183],[-127.53115126436995,57.116350914331136],[-127.53143983420804,57.1164338401549],[-127.53170361503861,57.11654283752715],[-127.53198741633733,57.116635906466165],[-127.5322741476055,57.11672445671473],[-127.53256492305508,57.116810717020485],[-127.53286258170597,57.11688792846213],[-127.53316921778875,57.116957187316366],[-127.5334041983682,57.1170698824488],[-127.53360510822093,57.11715719618564],[-127.53396401793795,57.11726731332653],[-127.53424582519453,57.11736152189253],[-127.53452761730475,57.11745573005117],[-127.53480942732772,57.11754993741352],[-127.53508722422038,57.11764755416706],[-127.53535897487043,57.11774860425248],[-127.53561058614564,57.11786334185035],[-127.53584113948378,57.11799401974433],[-127.53608373306925,57.11811558815413],[-127.53633743168656,57.11823029987258],[-127.53660819322239,57.11833248005769],[-127.53684979484926,57.11845517973326],[-127.53708737177601,57.11858016823996],[-127.53732395373055,57.11870628899053],[-127.53756151722524,57.11883127685218],[-127.53780309667647,57.11895285421335],[-127.5380527466666,57.11906985234837],[-127.53831858577057,57.11917769181814],[-127.53858738279907,57.119282133120315],[-127.53887270354238,57.11941216048599],[-127.53908768985374,57.11951499330099],[-127.53931521868026,57.119646822064425],[-127.53953051438471,57.11978327845773],[-127.5397305471663,57.11992551920961],[-127.53991742823872,57.12007464041682],[-127.54010631561646,57.120222616788844],[-127.54031448332977,57.1203613979755],[-127.54054597420807,57.12048869430978],[-127.54078962337826,57.12061024210181],[-127.54104137615394,57.12072721007936],[-127.54129311393297,57.120844177776796],[-127.54156422213217,57.12095419068312],[-127.54185258936836,57.121056152682],[-127.54210115040833,57.12117091456016],[-127.54225478767428,57.121315941710044],[-127.54231662486882,57.12149119756294],[-127.54233554655272,57.12167929071345],[-127.54235937259465,57.12186060034793],[-127.54237179666818,57.12204092378378],[-127.54237280208008,57.122220261219105],[-127.54234703356659,57.1224021568675],[-127.54247543952634,57.122562054185586],[-127.5427691483602,57.122642653596934],[-127.54305294802171,57.12273345789687],[-127.54331072431178,57.12284586699392],[-127.54356347934817,57.12296169778156],[-127.54383258758905,57.123072850983675],[-127.54402120579456,57.123212979010425],[-127.5441160567072,57.12338672299439],[-127.54417804098925,57.12356533943744],[-127.54418834601005,57.12374456716272],[-127.54416249490932,57.123924222568746],[-127.54415835062497,57.12410362124774],[-127.54416052470653,57.12428630802426],[-127.54418215916114,57.1244642809085],[-127.54430056239002,57.12463214170793],[-127.54456011033275,57.12471089964961],[-127.54488475271815,57.12476310529943],[-127.54510366018013,57.12488493867622],[-127.54540431781555,57.124957603778746],[-127.54573574050202,57.12497273618907],[-127.54605278421053,57.12501606146059],[-127.54635946388164,57.12508416934279],[-127.54666516476291,57.125153409053745],[-127.54697952587662,57.12520685232694],[-127.54730263722534,57.12524673990205],[-127.54762476939229,57.125287759231675],[-127.54793231481563,57.125351369478444],[-127.54823405170862,57.12542513633896],[-127.54851720667872,57.12549912291807],[-127.54861269162565,57.12555964195308],[-127.54911251140994,57.125623210548675],[-127.5494401247251,57.12564622541895],[-127.54976864426655,57.12566586589905],[-127.55009778185963,57.125675409769514],[-127.55042830721347,57.12566812224845],[-127.55075985749087,57.12566082171522],[-127.5510879989448,57.12564571426343],[-127.55141114622612,57.125609367484536],[-127.55172966126757,57.125560744623705],[-127.55205267127691,57.12552103505727],[-127.55251089075229,57.12555257799056],[-127.55269913376354,57.12552904152964],[-127.5530292039148,57.12551054342172],[-127.55334892254524,57.1254663860224],[-127.55366438765012,57.12541891563144],[-127.55399513698158,57.12541722108329],[-127.55432947714976,57.12542781328747],[-127.55465516148352,57.125454200873364],[-127.55496047166582,57.12551333758439],[-127.55524957051153,57.12560629492767],[-127.55555132347133,57.12568004489305],[-127.55586184057282,57.12574023844643],[-127.55617442528363,57.12580040663108],[-127.55647910798832,57.1258696358169],[-127.55676816774174,57.1259614694228],[-127.55707630413735,57.12601384194729],[-127.55740832740038,57.12601772832705],[-127.55774235536076,57.12602046900293],[-127.55806234754361,57.12605924646573],[-127.55836928436575,57.126132928187616],[-127.55863203019963,57.12623852315227],[-127.55885063085174,57.12637715203283],[-127.55908324455984,57.12650440381856],[-127.55937101706687,57.126589521551864],[-127.55968868154538,57.12664737895303],[-127.56001263208273,57.126681620681225],[-127.56034007872725,57.12670012662648],[-127.56067134006616,57.1267107395521],[-127.5610034608799,57.12671685758985],[-127.56133358976169,57.12672524049214],[-127.56166471479712,57.126732489702775],[-127.56199570313368,57.126736376879265],[-127.5623253927573,57.12673355309464],[-127.56265349319894,57.12671729616915],[-127.56297973029609,57.12668088372846],[-127.56329501088538,57.12662890843797],[-127.56365977441612,57.12654831614783],[-127.56387487749268,57.1264739993498],[-127.56410167378073,57.12661027964866],[-127.56430587521453,57.12675019314064],[-127.56458678495054,57.126844349339386],[-127.56488656112145,57.12691922276398],[-127.56518641333143,57.12699633649741],[-127.56547329857611,57.12708481449208],[-127.5657916979353,57.12713480179703],[-127.566102918657,57.127185995391315],[-127.56639380363754,57.1272710606041],[-127.56668078521047,57.12736177675818],[-127.56696273034149,57.127455915587625],[-127.56723166328328,57.127560298541894],[-127.5674612658923,57.12768869302322],[-127.5676908992793,57.12781820770855],[-127.56795885741995,57.127923721898625],[-127.56824875625783,57.128009915931635],[-127.56854266903166,57.12809269827935],[-127.56882759507278,57.12818343459907],[-127.56906774098077,57.12829152268284],[-127.56931110059669,57.12842759541756],[-127.56961578201975,57.128495673686835],[-127.56987439557788,57.12860017550716],[-127.5700889167225,57.12873883551309],[-127.57030446454613,57.1288774828519],[-127.57054910323181,57.129019142796174],[-127.57085766594126,57.129055785026424],[-127.57113433738304,57.12914661583923],[-127.57129774639532,57.12929934041696],[-127.57143799305074,57.129466915931296],[-127.57162488956953,57.12961263179077],[-127.571893988008,57.12972036650055],[-127.57215693334004,57.129829295719944],[-127.57245359256676,57.12995351173101],[-127.57270793762179,57.1300289149601],[-127.57299763336347,57.130109496598216],[-127.5733961087424,57.13011926792353],[-127.57361423246701,57.130193984943695],[-127.5738671733073,57.13031087808217],[-127.57412006972217,57.13042665034382],[-127.57437301363689,57.130543542522574],[-127.57462689230475,57.130658181064746],[-127.57489384763363,57.13076369380692],[-127.57513966224964,57.13088291247697],[-127.57537338246503,57.13101012329583],[-127.57560208325363,57.13114075715142],[-127.57583182732563,57.13127137804723],[-127.57601264058808,57.131419403447644],[-127.57613224624099,57.13158722365173],[-127.57624774854852,57.13175621426569],[-127.5763684275215,57.131925142316895],[-127.57643241250017,57.13209811761153],[-127.57640055185982,57.13227897574514],[-127.57618635753784,57.13252705021821],[-127.57601269709721,57.132679354080715],[-127.57578118861917,57.132807694824095],[-127.5755718800282,57.132948097783135],[-127.57534917204252,57.13308978300854],[-127.57520971189624,57.13324391510542],[-127.57522838659285,57.13342192150387],[-127.57527211253458,57.13360523049663],[-127.5751944019911,57.13377767391413],[-127.57508559282115,57.13394825049916],[-127.57501219887462,57.134125125585555],[-127.57495538689537,57.134302921611265],[-127.57494607148057,57.134479023847426],[-127.57502877966192,57.13465513718172],[-127.57506194051017,57.13483296906794],[-127.57506107792938,57.13501345325423],[-127.57505292612096,57.135192904425836],[-127.57505615176751,57.135372218395204],[-127.57510998484443,57.135549801041236],[-127.57512147941905,57.135729015324465],[-127.57512370958086,57.13590946233067],[-127.5751217759441,57.136088838626385],[-127.57510742263037,57.13626836474319],[-127.57507343908337,57.13644812764121],[-127.5750302070586,57.13662912304922],[-127.57510442138397,57.13679973433223],[-127.57527544440076,57.13696021024425],[-127.5755248656409,57.137065934238315],[-127.57585172190028,57.13711803842727],[-127.57617125992581,57.13716798822121],[-127.57648288164474,57.13722700046782],[-127.57676278051028,57.13731890277343],[-127.5770187783996,57.13743351228009],[-127.5772828330379,57.13754241921707],[-127.57755491129988,57.13764562393374],[-127.57783297894063,57.13774315095525],[-127.57812095297655,57.137830469073705],[-127.57841693735101,57.137910964012306],[-127.57871794456278,57.13798803470502],[-127.5790228108341,57.1380583323094],[-127.57933346492527,57.13811847059314],[-127.57965178935439,57.138163942902985],[-127.57998563761119,57.13818456552918],[-127.58032427692257,57.13819616165416],[-127.58065399124459,57.138216832603554],[-127.58096207395329,57.13826466762897],[-127.58124480668816,57.13834980055543],[-127.58150590898286,57.13846209787717],[-127.58174910002819,57.138591426045515],[-127.58197693474024,57.13872430268963],[-127.58218553911215,57.138867500588034],[-127.58233802466424,57.13902931350216],[-127.58240406952672,57.139201141329785],[-127.58242180131703,57.1393802803082],[-127.58241481739829,57.13956196069654],[-127.58240679145922,57.139743653733454],[-127.58240182856285,57.139924188719625],[-127.58238752441996,57.140103715944456],[-127.58238044776839,57.14028315562394],[-127.58239611254035,57.14046231979739],[-127.58242831680084,57.14064128360314],[-127.58246770286532,57.1408190394495],[-127.58254620223396,57.140991837538465],[-127.58243978373993,57.141119795749255],[-127.5821738586718,57.141417830664544],[-127.5816718494944,57.141558426496424],[-127.58144118201363,57.14163296128689],[-127.58115507065655,57.141692473392744],[-127.58095137203124,57.14184402726285],[-127.58071686407045,57.14202621968785],[-127.5805124430909,57.14218562835268],[-127.5805037712612,57.142402079187605],[-127.58039797846395,57.142570382849364],[-127.58030828324827,57.14267795964167],[-127.58044429843399,57.14284109554977],[-127.58069312629682,57.14300622903331],[-127.58105494361362,57.143202502394495],[-127.58164037115053,57.14347901867366],[-127.58221057710341,57.143787103895],[-127.58254647619218,57.14390634076909],[-127.58265898924098,57.14422669460573],[-127.58270256153021,57.144405521154226],[-127.58272231851564,57.14458351532389],[-127.58268202166711,57.14475999525102],[-127.58258782687663,57.144933765319095],[-127.58250717174101,57.14510961322848],[-127.5824051206635,57.145293567067235],[-127.58230822953271,57.14547745833421],[-127.58227094719743,57.14565165976744],[-127.58234551370165,57.14580432894301],[-127.58254640417648,57.145935290307236],[-127.5828201993638,57.146053037362904],[-127.58311035296344,57.146166101750914],[-127.58337353538914,57.146277250523575],[-127.58364772999765,57.14637929754558],[-127.58391782033192,57.14648251475228],[-127.58415765306874,57.14660403386541],[-127.58462506152271,57.146876364728556],[-127.58473631905717,57.14691536989372],[-127.5849754770675,57.146920315050956],[-127.58523798924881,57.146914887638204],[-127.58569714654283,57.14693733890955],[-127.5859651779116,57.1469901334269],[-127.586101134828,57.147051256955756],[-127.58635881780488,57.147203942607646],[-127.58658154193017,57.14733687494706],[-127.58680638173954,57.14747090220835],[-127.58704451639109,57.14760140468418],[-127.58727551638823,57.147734235391454],[-127.58747986842174,57.14787299441576],[-127.58762576139289,57.14802367335484],[-127.58763016529946,57.14820521706521],[-127.58761197878587,57.14839039826312],[-127.58761949270341,57.148571904226294],[-127.58764348894329,57.148676983864775],[-127.5876497313001,57.148777795396846],[-127.58751341736874,57.14900813013641],[-127.58711720943859,57.1492079933929],[-127.58694046968759,57.14936147165931],[-127.58677518638113,57.14951705247397],[-127.58662972394893,57.14967687623647],[-127.58653009534875,57.14984399001803],[-127.58646739379718,57.15000392946466],[-127.58640379905862,57.15019190403683],[-127.58635349799295,57.150376354255556],[-127.5862976938733,57.15055302449072],[-127.58627513216526,57.150732653998965],[-127.58627327973699,57.150913153040875],[-127.586271397489,57.15109253149624],[-127.58614844312919,57.15124647665041],[-127.58607365331244,57.15136396582857],[-127.58596042294582,57.151602986698755],[-127.5858505390182,57.151772466547094],[-127.58574693431312,57.15194411204212],[-127.58566514397094,57.15211773464737],[-127.58567383068981,57.15230258980862],[-127.58551220242016,57.15244691505368],[-127.58524078724412,57.152563426975355],[-127.5851012960406,57.15271757185956],[-127.58500892918713,57.152885717551754],[-127.58496575528827,57.15306783906807],[-127.5849006890108,57.153245742273796],[-127.58478868128303,57.15341412611252],[-127.58465476389549,57.15357829171384],[-127.58452507420331,57.153744647858865],[-127.58439542968073,57.15391212430869],[-127.58429069430125,57.15408154053671],[-127.58426496432689,57.15426008747502],[-127.58433534900111,57.154436347968684],[-127.5845086109977,57.15457324769121],[-127.58463154349874,57.15469394302133],[-127.58467210467356,57.15492437194076],[-127.5847058371223,57.15511452860443],[-127.58469156785875,57.15529517872373],[-127.58483375846586,57.15545599550982],[-127.58455361528377,57.15536186843361],[-127.58446982201518,57.15533710219411],[-127.58436689840838,57.15532489861497],[-127.58421396590354,57.155354777420925],[-127.58405970739274,57.15535216383647],[-127.5839331300464,57.155343609617546],[-127.5836066524819,57.15538007537984],[-127.58321522439189,57.15549691660855],[-127.58299506814286,57.15547716465629],[-127.58265623761115,57.155439793340875],[-127.58232476828057,57.15543035637686],[-127.58200665377105,57.155468958783835],[-127.58170019036585,57.1555388066542],[-127.5813847432654,57.15559194791041],[-127.5810682694499,57.15564510082102],[-127.58075504394742,57.15570157658011],[-127.58045167048289,57.155771384100674],[-127.58015712294703,57.15585453585995],[-127.57985927883634,57.15593324290855],[-127.5795606653974,57.15599290200564],[-127.5792164323583,57.156000426021535],[-127.57889658124355,57.1560468885874],[-127.57844094605764,57.156112926387515],[-127.57816426109038,57.15612747838745],[-127.57792833500669,57.15607652108766],[-127.57760856148872,57.156024333856465],[-127.57727949111063,57.15599804047639],[-127.57698055058948,57.156049850760326],[-127.5766351746146,57.15613024502722],[-127.57647761560861,57.15624872741058],[-127.57638519784527,57.156366423695964],[-127.57598999498526,57.156442933479426],[-127.57566328684375,57.15647377713671],[-127.57533718652843,57.15644408008962],[-127.57500842292315,57.15645028547784],[-127.57467930700915,57.156473308878205],[-127.57435705614297,57.15651194234667],[-127.57404830166061,57.156577315772076],[-127.57373726445276,57.15663711108902],[-127.57340937249722,57.156664600414544],[-127.57309592697229,57.15671657638093],[-127.57276431108679,57.15670375389994],[-127.57244538026524,57.156747947512926],[-127.57211969356565,57.156728326205695],[-127.57179086710636,57.15670762088914],[-127.5714602776068,57.156694782758265],[-127.57113007215867,57.15669090695101],[-127.57080030923942,57.15669823470808],[-127.57021870289529,57.156745580489094],[-127.56960195878149,57.15686957183664],[-127.56929639575911,57.15693713752485],[-127.56899308336239,57.15700915934897],[-127.5686897239867,57.15708006005208],[-127.56838420351072,57.15714874403906],[-127.56806756136871,57.157198504261856],[-127.56774307544399,57.15723378519765],[-127.56741639973679,57.15726572867679],[-127.56709200423063,57.157303248841146],[-127.5667917039976,57.157372987423045],[-127.56655158835527,57.1574980522965],[-127.5662525861252,57.15757449988319],[-127.5659675843517,57.15766423063534],[-127.56569665779612,57.157769485691006],[-127.56547003445297,57.157895507839086],[-127.5653539117747,57.158067286625595],[-127.56514203859619,57.15819985731862],[-127.56488176800686,57.1583128298119],[-127.56461835585294,57.15842471842469],[-127.56439181652553,57.15855297961219],[-127.56425679711305,57.15871825783659],[-127.56416973226412,57.15889192966151],[-127.56398119722212,57.1590387917054],[-127.56389613657873,57.15921131840598],[-127.56376004106713,57.15937548805286],[-127.56359880314652,57.159532111620365],[-127.56333942441009,57.159641707405044],[-127.56307675051083,57.15974685819639],[-127.56286922547957,57.1598849780119],[-127.56260348330517,57.15999128550501],[-127.56238340738031,57.160126191709146],[-127.56218344535723,57.16027206679539],[-127.56214167540422,57.160440711923215],[-127.56196896658464,57.16059522865741],[-127.56177730369247,57.16074212489596],[-127.56158245354834,57.160886816996154],[-127.5613855334029,57.16103153353771],[-127.56118861177106,57.16117624979825],[-127.56099375719947,57.16132094106779],[-127.56084913947227,57.161479604644875],[-127.56074643918313,57.16165121909818],[-127.56056737674557,57.16180244695487],[-127.56029090720618,57.16189990999059],[-127.56002313747571,57.162007357326594],[-127.5598449597824,57.162155210700355],[-127.55971202227143,57.162321580411316],[-127.55954229867172,57.16247381636309],[-127.55933381126123,57.16261418394906],[-127.55911473481595,57.16274907267064],[-127.55887871428037,57.16287407439041],[-127.55860875749828,57.162979302922274],[-127.55834295307062,57.16308448137142],[-127.55802179284281,57.163126423801856],[-127.55756948765861,57.163149751085534],[-127.55738197326595,57.163195703827014],[-127.55708065356069,57.163241891367036],[-127.55675708226134,57.16332645634291],[-127.5564471713607,57.16339068030646],[-127.55614025973784,57.16342684350299],[-127.55581075432515,57.163441976487256],[-127.55547981344296,57.163447036974844],[-127.55514927875845,57.1634363981818],[-127.5548188185919,57.16342799961237],[-127.55448912858323,57.16341286521764],[-127.55416671418527,57.16337298209311],[-127.55383918439463,57.163360062320365],[-127.55350726330666,57.1633662504447],[-127.55317780131601,57.163356714900914],[-127.55285070805766,57.16332921484439],[-127.55252286146161,57.163308448750904],[-127.55219578563398,57.16328094685979],[-127.55186784909442,57.16325793826014],[-127.55154631756302,57.163290901327514],[-127.55123278824658,57.16334282510922],[-127.55091729662094,57.163397013360054],[-127.55064394765719,57.16349553961338],[-127.55032709415566,57.16354189578785],[-127.55003455044566,57.16352406754321],[-127.54966596435533,57.1635194710665],[-127.54933875180367,57.163514383046206],[-127.54902973605698,57.16344742517233],[-127.54889041092397,57.16343114104988],[-127.54869770792075,57.16342557809028],[-127.54861411456216,57.16345683489494],[-127.54857293382331,57.16353915367857],[-127.54854202233349,57.16361910882691],[-127.54854348383788,57.163706527159185],[-127.5485866679095,57.163750854238316],[-127.5486266502513,57.16379297730686],[-127.54856137232333,57.163841952554804],[-127.5484249101192,57.16394781972486],[-127.54817187394373,57.16406291459917],[-127.54790903768291,57.16416579438268],[-127.54750532286207,57.16416272879],[-127.54733423362046,57.16425667415817],[-127.54705564403157,57.16435413386834],[-127.5467684330144,57.16444272725689],[-127.54657195698833,57.16452352043984],[-127.546192495894,57.164608720338066],[-127.54599015422792,57.16474899343367],[-127.54589339108938,57.16489025931725],[-127.54551581662243,57.16494516870914],[-127.54522539588227,57.16503155467024],[-127.5449892994671,57.165156531715844],[-127.54478704080985,57.16529904387884],[-127.54458364769378,57.165439327194214],[-127.54431147456093,57.16554230997334],[-127.54405816128414,57.165650674205494],[-127.54384851211516,57.16578990930299],[-127.54343970955217,57.1659438268472],[-127.5433274251239,57.166007927177674],[-127.54311565742603,57.166146065129915],[-127.54289331858796,57.16627872268311],[-127.54270366812747,57.16642668758482],[-127.5425652972439,57.16658861958492],[-127.54244581536051,57.16675705434078],[-127.54232835620729,57.16692434415563],[-127.54221094110679,57.16709275432454],[-127.54209766273327,57.16726111558733],[-127.54199172289348,57.16743163212119],[-127.54188055652244,57.16760108926852],[-127.54175161492303,57.16776627213117],[-127.5415986626524,57.167926133229884],[-127.54141008683877,57.16807520457831],[-127.54123401325057,57.16822637016778],[-127.54113215973669,57.168395716893755],[-127.54105538644961,57.16857149366689],[-127.54096296840304,57.16874409194812],[-127.54084149387263,57.1689147907845],[-127.54068853322462,57.169074650956084],[-127.54046167079936,57.16919838991461],[-127.54015538216164,57.169277104588794],[-127.53983248627445,57.1693291108697],[-127.53950603546876,57.169344166155796],[-127.53920804612764,57.16926920774058],[-127.53892770571953,57.16916937949488],[-127.53865540125484,57.16906385121662],[-127.53837433579987,57.16897187716551],[-127.5380576487541,57.16892067666665],[-127.53772850247172,57.16892006567343],[-127.537431737264,57.169004266717046],[-127.53716272122541,57.16910943916667],[-127.53687113405226,57.16919357801977],[-127.53656982262156,57.16926774179963],[-127.53626414750137,57.16933635131362],[-127.53594879333617,57.16939610608375],[-127.53562809440665,57.16945143899872],[-127.53531909650805,57.16951448046324],[-127.53504323586247,57.16960403529849],[-127.53482187526966,57.16973666741354],[-127.53461869130093,57.16988365835025],[-127.53445892176016,57.17000323600837],[-127.53410176878683,57.17010495286131],[-127.53381237087427,57.17019242200219],[-127.53351000287606,57.170266591021964],[-127.53322594602251,57.170358480062],[-127.53295263639355,57.17046033116198],[-127.53269102706264,57.17056989127379],[-127.53244847334445,57.17071621945993],[-127.53234288018773,57.17087103035031],[-127.53208454081022,57.17098503477544],[-127.5317864357323,57.17106251268398],[-127.53149266326993,57.17114442302006],[-127.5312075522495,57.171236319953444],[-127.53093207238673,57.17133595024299],[-127.53067472376748,57.17144881926177],[-127.53042487570345,57.17156832576719],[-127.53015887312887,57.17167232731651],[-127.52985852734918,57.171745343110366],[-127.52954418622564,57.17180507033269],[-127.52923104923006,57.171869266583464],[-127.52889826263404,57.171933691912656],[-127.52870175833546,57.17206714372152],[-127.52852910021673,57.17227990526647],[-127.52802974956849,57.1723462760075],[-127.52819783230831,57.17269405376219],[-127.52830710078766,57.17286428474272],[-127.52838135601343,57.17303940894401],[-127.52841535997729,57.17321724572649],[-127.52839354002428,57.173396856228585],[-127.52833749650779,57.173574624951286],[-127.52824189700128,57.17374725127251],[-127.52825313922106,57.173925354300245],[-127.52830369743447,57.17410299769347],[-127.52836464713222,57.17428164057189],[-127.5284358097292,57.17445680112305],[-127.52851210978176,57.1746307806219],[-127.52856990438184,57.17480833941678],[-127.52857709920438,57.174988731853055],[-127.52856782895411,57.175171558790915],[-127.52852626892223,57.17534915845226],[-127.5284106132873,57.17551193084088],[-127.5282031014014,57.17565559948169],[-127.52800498109883,57.175801399960974],[-127.5277952181011,57.175940610369885],[-127.5275676042972,57.17607330319391],[-127.5273036320763,57.17617727510537],[-127.52698602091273,57.17623367119038],[-127.5265407485803,57.176229903797584],[-127.52661309946068,57.176331067446114],[-127.5268154488018,57.17647330980006],[-127.5270086576737,57.17662014253639],[-127.52718653438974,57.17677163802935],[-127.52733372859515,57.17693245958017],[-127.52746864149599,57.17709678741975],[-127.52759231596325,57.17726460939987],[-127.5277005071209,57.17743373320915],[-127.52778709577203,57.17760647234575],[-127.52785107175441,57.177782838656604],[-127.52790886804513,57.17796039816583],[-127.5279810784049,57.178135547260574],[-127.52809341270498,57.17830462248027],[-127.52821600609865,57.17847133576183],[-127.52829338430311,57.17864642436953],[-127.52834497540874,57.178824056379895],[-127.52841407682823,57.17899924173671],[-127.52851715565176,57.17916954593513],[-127.52863979835061,57.17933737938201],[-127.5288007651958,57.17950588557696],[-127.52896722856671,57.17968217416669],[-127.52874753067246,57.179754243891125],[-127.52841071442414,57.179823198578404],[-127.52811689572064,57.17990622251723],[-127.52783500275939,57.180002558138334],[-127.52757754216034,57.1801143013431],[-127.52720787341737,57.18034617833878],[-127.52707467360374,57.18043292844102],[-127.52689166841097,57.180491114691975],[-127.52664359602007,57.180604988338544],[-127.52643264135857,57.18074084768647],[-127.52622918836876,57.18088334497914],[-127.52598551845136,57.18100389182596],[-127.52571211366552,57.18110572860533],[-127.52543227547933,57.18120203498194],[-127.52515455013034,57.18129943708007],[-127.5248833444457,57.18140460937607],[-127.52469130161398,57.181548092136865],[-127.5245456090414,57.181711211736896],[-127.52432984157828,57.18188299502925],[-127.52406418979272,57.18191972125503],[-127.52377886368681,57.182008241168184],[-127.52351079002025,57.18211449504586],[-127.52325864676034,57.18223065156018],[-127.5229873847493,57.182334699539894],[-127.5227321421657,57.182450891125185],[-127.52253483097584,57.18259219008096],[-127.52251927635277,57.182773969485446],[-127.52241719588591,57.182941062756214],[-127.5221660425138,57.1830560846311],[-127.52185609213613,57.183124709357784],[-127.52154483053812,57.18318662273675],[-127.52124130967863,57.18326077605184],[-127.52097310334509,57.18336366325648],[-127.52077793968063,57.18350717650159],[-127.52059343469948,57.183658412336925],[-127.5203930409085,57.18380086485305],[-127.5201642227079,57.18393131678563],[-127.51992690151715,57.184056262269536],[-127.51967163818814,57.18417244803225],[-127.51951739627941,57.18433005646659],[-127.51931997470312,57.18446910985027],[-127.5190837350456,57.184595162194576],[-127.5188801898509,57.184736528006304],[-127.51868405697653,57.18488229131699],[-127.51849630739348,57.1850301989303],[-127.51833373334894,57.18518678175983],[-127.51817535867254,57.1853444366104],[-127.51796019158418,57.18548033103384],[-127.51774210395737,57.185620742910736],[-127.51753302688579,57.18575320300147],[-127.51735575730704,57.18587856778695],[-127.5172411451043,57.185965092055596],[-127.51718596020909,57.18606213648529],[-127.51725591829167,57.18618126940607],[-127.51746147706457,57.186247263728426],[-127.51763885649318,57.18633376241311],[-127.51775242982583,57.186404186818045],[-127.5177262914445,57.18647623283602],[-127.51756398756572,57.18648260050401],[-127.51739720088713,57.18642848715353],[-127.5172918252268,57.18632994286448],[-127.51718415834652,57.18622582019789],[-127.51702894359578,57.186176056051394],[-127.51692536694523,57.186096547259076],[-127.51680261270876,57.18600380912186],[-127.5165662593687,57.18589221088448],[-127.51631038470578,57.18578420155509],[-127.51609271443499,57.1856477243543],[-127.51587001227911,57.18551466808975],[-127.51565038043799,57.18538045491107],[-127.51543785344165,57.18524279612106],[-127.51522735352182,57.18510399255098],[-127.51501892497906,57.18496516467384],[-127.51481045364898,57.18482521601622],[-127.51460202813278,57.184686387503994],[-127.51439251664742,57.18454645029359],[-127.51418409416142,57.18440762114459],[-127.51397562891312,57.184267671215245],[-127.51376720945356,57.18412884143122],[-127.5135556508228,57.183988926710335],[-127.51334719014709,57.183848975823494],[-127.51314084502685,57.183710121128954],[-127.5129344571607,57.18357014566079],[-127.51272900893844,57.18342791707919],[-127.51251852879875,57.18328910933979],[-127.51229184591234,57.18315945649299],[-127.51202667938557,57.183051546829454],[-127.51175044847443,57.18295161139928],[-127.51154307082327,57.18281276633906],[-127.51132553935142,57.18267852224426],[-127.51105330329588,57.18257517632569],[-127.51073758350466,57.18252389706358],[-127.51043043604942,57.182480364829885],[-127.51017438066418,57.18236674146256],[-127.50985577166759,57.18232109834639],[-127.50952661040569,57.18229687476825],[-127.50920314568133,57.1822591329463],[-127.5088786825824,57.1822225228265],[-127.50855031679077,57.18221846512281],[-127.50822333478531,57.182249140757555],[-127.50790209146017,57.18229432201741],[-127.50756944081218,57.182312730693894],[-127.50724801814813,57.182300742854295],[-127.50693117444743,57.18224722551124],[-127.5066251340284,57.18217901029874],[-127.5063379282737,57.18208927894155],[-127.50603879009387,57.18201201510287],[-127.5057556382919,57.181919993870046],[-127.50551571778827,57.18179496610438],[-127.50523463852797,57.1817029199262],[-127.50493635612801,57.18162115991552],[-127.50462401259166,57.18157655307235],[-127.50429057484777,57.18157478505136],[-127.50384066657571,57.18150709771353],[-127.50371318853558,57.18142449120729],[-127.50338565344416,57.18141480622089],[-127.50305582910146,57.18139954188693],[-127.5027260330324,57.181411179660444],[-127.50240483418231,57.18145746785096],[-127.50209895678795,57.18152487763287],[-127.50183825422639,57.18163548557668],[-127.50158077813278,57.18174941884474],[-127.50128348301152,57.18182457490818],[-127.50100448966128,57.181917455681855],[-127.50078087046592,57.18205005513076],[-127.5005730879811,57.18219031922018],[-127.50035050883912,57.18232290598864],[-127.50013108489043,57.18245657714184],[-127.49994748622485,57.182606651476476],[-127.49974492416041,57.18274797531993],[-127.49950543013817,57.18287178690089],[-127.49908522367843,57.18314003321107],[-127.49914478648665,57.183498060573804],[-127.49917042872313,57.18367712174517],[-127.49919304589639,57.1838584595641],[-127.49911682943528,57.18402747895896],[-127.49887314192027,57.18415021649617],[-127.4985866540235,57.18423757307512],[-127.49839460274225,57.184383258259956],[-127.49819309601168,57.18452568859296],[-127.49798843092823,57.18466703382687],[-127.49779430536583,57.18481274189074],[-127.49763269087263,57.18496928700321],[-127.49747839891293,57.185127989999955],[-127.49729159294779,57.18527585543359],[-127.49708477964424,57.185414981907385],[-127.49691267890653,57.18556828328683],[-127.49674269046652,57.185722681233955],[-127.4965842081954,57.185880310183215],[-127.49642992478468,57.18603901186293],[-127.4962704132333,57.18619665221917],[-127.49611404075083,57.18635537743975],[-127.49591247142642,57.18649668400071],[-127.49572992388141,57.18664786140885],[-127.49554207705836,57.18679573625768],[-127.49529502860813,57.18691290063468],[-127.49502051713887,57.18701580590044],[-127.49474285308078,57.18714452896047],[-127.4945547154871,57.18725877655544],[-127.49439730484484,57.18741751158592],[-127.49423675247012,57.18757516136002],[-127.4940193305723,57.18770879932473],[-127.49377555963292,57.187830407232475],[-127.49353930259518,57.18795865468979],[-127.49338379752986,57.188060197179645],[-127.49348041379302,57.18828104618712],[-127.49347963192751,57.18834046663184],[-127.49350595757436,57.18837827901468],[-127.49353990828577,57.18839918972417],[-127.49351343939857,57.18843760508356],[-127.49346005479032,57.188449424508065],[-127.49350485782193,57.18850944531112],[-127.49351423501386,57.18856426585015],[-127.493518663752,57.18862474776961],[-127.49352358239886,57.1888040471671],[-127.49348912584324,57.18898267531995],[-127.49344013464292,57.189160348503805],[-127.49339011621775,57.189338033419055],[-127.49334112410396,57.1895157066138],[-127.49330045569434,57.18969440573236],[-127.49325874355948,57.18987311677643],[-127.49320035545759,57.19004865531925],[-127.49309943312959,57.19022243754702],[-127.49292082239626,57.1903690822896],[-127.4926357814434,57.19046873974826],[-127.49242188335246,57.19058664124938],[-127.49240424338896,57.190771803209245],[-127.49239466576927,57.19095126831518],[-127.49238818507804,57.19113069810236],[-127.49237344005168,57.19131022222263],[-127.49232651092028,57.19148787167914],[-127.49224735359749,57.191662525959806],[-127.49216195775875,57.19183613041355],[-127.49207970187675,57.1920108199761],[-127.49199847209194,57.192185497795286],[-127.49189322360789,57.19235484470327],[-127.49176818396451,57.19252105436472],[-127.49163584533267,57.192686226189565],[-127.49149720743132,57.192849227777856],[-127.49135334069413,57.19301116787688],[-127.49119584953819,57.19316877926958],[-127.49101006717358,57.19331774521337],[-127.49083483646581,57.19347219549093],[-127.49067424405995,57.19362984161669],[-127.49058864574735,57.193798963576725],[-127.49057086464735,57.19398076430466],[-127.49046978924498,57.19415118358563],[-127.49033857003815,57.194318583369714],[-127.4902322648846,57.194487941106466],[-127.49025059114103,57.19466596751243],[-127.49029378941168,57.19484483151195],[-127.49035243726131,57.19502127752445],[-127.49066223946942,57.19526436184396],[-127.48991789033451,57.195085640258235],[-127.4895538856515,57.195179464518354],[-127.48938986193048,57.195329301373135],[-127.48910041623188,57.195423396254604],[-127.48885339611194,57.195542790003934],[-127.48859574439622,57.19565557842402],[-127.48832636367234,57.195759531985544],[-127.48804848201782,57.19585797681799],[-127.48776516994344,57.195949756963174],[-127.48747756847929,57.19603822233845],[-127.4871846672798,57.19612338440357],[-127.4868895203248,57.19620408742787],[-127.48659005722197,57.19628035492828],[-127.48628623457304,57.19635106639214],[-127.48597918294767,57.1964184508974],[-127.4856720702195,57.19648471439084],[-127.48536717383912,57.196554314913385],[-127.48506666143554,57.196630590797646],[-127.48477479388279,57.1967157356567],[-127.48448717976316,57.19680419450893],[-127.48419849392337,57.196891543904705],[-127.4839033781675,57.196973360722275],[-127.48359847468492,57.19704295714837],[-127.48328147967464,57.19709475436097],[-127.482956534588,57.197128705319145],[-127.48262805770561,57.197151485739816],[-127.48229829328343,57.197167554068315],[-127.48196846866917,57.19718250126884],[-127.48163977402979,57.19719967678602],[-127.48105273876955,57.197232107735665],[-127.48100189412109,57.1973100307636],[-127.48098272289127,57.19745709563467],[-127.48104500919432,57.19764807721796],[-127.48103123550452,57.19782758931916],[-127.48100292431637,57.198006145070885],[-127.48096425992667,57.198184818061],[-127.48091934006275,57.1983624409081],[-127.48087337619647,57.19854007557899],[-127.48082954240488,57.1987188071145],[-127.48081472372483,57.198898331154275],[-127.48080820401456,57.19907776126367],[-127.48079752638687,57.19925723846756],[-127.48078686522432,57.199436715507616],[-127.48077516034674,57.1996162043857],[-127.48076345535945,57.19979569328718],[-127.4807517502625,57.19997518221239],[-127.48074958896534,57.19999986818834],[-127.48073900142602,57.200154682974976],[-127.48072936680863,57.20033414850683],[-127.48071351996026,57.20051368438281],[-127.48066342767757,57.20069136596404],[-127.48058626889227,57.200865990970605],[-127.48054138744534,57.20104473453966],[-127.48053072458521,57.20122421180378],[-127.48053351329376,57.20140353684423],[-127.48053630202844,57.20158286190914],[-127.48052873688333,57.201762304184655],[-127.48049734928884,57.201942016101725],[-127.48045863525536,57.202119568990035],[-127.4804386447789,57.202299151949575],[-127.48046628297392,57.20247819590761],[-127.48052184259471,57.20265580290378],[-127.48059490994441,57.20283096979088],[-127.48066797796243,57.203006136660655],[-127.48069250316912,57.20318521592042],[-127.48069115104245,57.203364588105714],[-127.48067841736082,57.203544089139704],[-127.48066566699279,57.203723590384755],[-127.48066328755661,57.203902974269475],[-127.48068574240911,57.20408207709265],[-127.48076192788672,57.20425720882422],[-127.48086484621435,57.2044275540082],[-127.48106739644737,57.20481648366053],[-127.48104123788343,57.204997257911],[-127.48101813390457,57.20517687661607],[-127.48099504627679,57.205356495154156],[-127.48097811148774,57.20553492307558],[-127.48096847663736,57.205714389363216],[-127.48097959507167,57.20589474172528],[-127.48099378508307,57.206073938358095],[-127.48098931944575,57.20625334620354],[-127.48097451516772,57.206432871107744],[-127.48095141000994,57.20661248999844],[-127.48093043558846,57.20679320577169],[-127.48090008957145,57.20697290666151],[-127.48082697469647,57.20714524477578],[-127.48066786574073,57.20726362791674],[-127.48076990705957,57.20746425015067],[-127.48089768722221,57.207634314431914],[-127.48103885233111,57.20780198513507],[-127.48120349807057,57.20796042201233],[-127.48138448086547,57.2081130688134],[-127.481450148495,57.208283835961446],[-127.481476708532,57.20846177185153],[-127.48148575900467,57.208642148002376],[-127.48148656826353,57.2088237384822],[-127.4814894053517,57.20900418503998],[-127.48150157106993,57.20918452599214],[-127.48152926255534,57.20936469116448],[-127.48156415186789,57.20954365386687],[-127.4815959863294,57.2097237721673],[-127.48161846552651,57.20990287544134],[-127.48162017270468,57.21008109297529],[-127.48159497034884,57.210259615253],[-127.48151140937345,57.21042983046248],[-127.48148533577579,57.210612846571735],[-127.48141757644362,57.21078960875741],[-127.48135293168858,57.21096633566266],[-127.48129866955387,57.21114406599718],[-127.48125482332046,57.2113227993992],[-127.48121403200831,57.211500377235545],[-127.48117642569699,57.21168016100025],[-127.48113981963768,57.21185881246429],[-127.48110425719037,57.21203745212569],[-127.48106765045286,57.212216103618594],[-127.48102999941044,57.2123947669422],[-127.4809902932221,57.212573453536564],[-127.48094742797593,57.21275105490498],[-127.4809004195626,57.21292870317006],[-127.48084818060498,57.21310528964387],[-127.48072108386205,57.21327487631756],[-127.48059362278684,57.213435499086046],[-127.4805007497384,57.21363272304724],[-127.48039439500857,57.213776291993966],[-127.48020206648407,57.213920833427885],[-127.47999615045117,57.21406216529136],[-127.4797797024003,57.2141991319746],[-127.47955695181565,57.21433392758046],[-127.47933101415781,57.214466516854664],[-127.4791050150764,57.21459798543915],[-127.47887691625093,57.21472835637],[-127.47864138427379,57.21485432693336],[-127.47840057718382,57.214978114685955],[-127.47815551232107,57.21509858711639],[-127.47790624307041,57.215217985576636],[-127.4776398977593,57.21532412450197],[-127.47736714688372,57.21542585123629],[-127.47711145888128,57.215539715678666],[-127.47686534231488,57.21566019753033],[-127.47662345371484,57.21578287318378],[-127.47647430530957,57.21583836362581],[-127.47613755710776,57.21602712604958],[-127.475896734548,57.216150909306805],[-127.47565272498794,57.21627248607364],[-127.4754055284394,57.216391856331576],[-127.47515840012461,57.21651346732722],[-127.47491348790214,57.21663841584291],[-127.47466644275279,57.21676226694004],[-127.4744139663698,57.216879452817224],[-127.47415074209252,57.21698667036376],[-127.473874439601,57.217077219818634],[-127.47357219817584,57.217140036015586],[-127.47324833405918,57.21717955414491],[-127.47291472417287,57.21720797126002],[-127.47258329813921,57.21723972591481],[-127.47225659154581,57.21728599949669],[-127.47189569400594,57.217332656825135],[-127.4716105698998,57.21743675253404],[-127.47143154354616,57.21747015333653],[-127.47143244055638,57.2176820103131],[-127.47150236609698,57.21801864204925],[-127.47136688645313,57.21813338536747],[-127.47131538681288,57.21824942637784],[-127.47129279369969,57.21838980418033],[-127.47148407350234,57.218459396939416],[-127.47158161282778,57.21859730299808],[-127.47139531423298,57.21881911193665],[-127.4711516609096,57.21895076512158],[-127.47088841325741,57.219057976278],[-127.47060613118245,57.21915531187431],[-127.4703184448755,57.21924710261531],[-127.47003284550127,57.21933886927305],[-127.46974620059936,57.2194306470405],[-127.46945410860333,57.21951575938826],[-127.46915442844764,57.21959198833387],[-127.46884370043347,57.21965040473026],[-127.46852196792715,57.21969212900441],[-127.46816881828217,57.21975214078368],[-127.46784979687195,57.2197837440627],[-127.46756255527568,57.21983292603901],[-127.4672552658159,57.21990026799013],[-127.46671079723137,57.22002519606041],[-127.46703371583152,57.220338816985],[-127.46722278969484,57.22048578919422],[-127.46743230881914,57.22062580597566],[-127.46763674413796,57.22076812144667],[-127.4678360956314,57.22091273563177],[-127.46806077962239,57.22104249249794],[-127.46834118599872,57.22113911509099],[-127.4686428405539,57.22122204676614],[-127.46889266155307,57.22133134234851],[-127.4690531119219,57.22148872234306],[-127.46921469384037,57.2216483314575],[-127.46944478984719,57.22178363033174],[-127.46966141198548,57.22191908013506],[-127.4697630426105,57.222082724841236],[-127.4697711259469,57.22226647694666],[-127.46981318898882,57.222444242517284],[-127.46997469205087,57.22260160979041],[-127.47018324818038,57.222742754449506],[-127.47043342784177,57.22286101130345],[-127.4707119107446,57.222961013762735],[-127.47101022681221,57.22303725186577],[-127.47133681308802,57.22306721073233],[-127.47166447063653,57.223098277739666],[-127.47195384542006,57.22318470322331],[-127.47224322151006,57.223271128072874],[-127.47256114183575,57.22331799632868],[-127.47288786106532,57.22335131286244],[-127.47321552230389,57.223382375994134],[-127.47354025696416,57.22341795524304],[-127.47386503537179,57.223454654197035],[-127.47418882986302,57.22349248443125],[-127.47451260841852,57.223530314052404],[-127.474837345539,57.223565890087606],[-127.47516204008109,57.223600344808666],[-127.47548769309613,57.223632545933995],[-127.47581514284535,57.22365800001824],[-127.47614455194295,57.22368006820095],[-127.47647381518327,57.22369877421464],[-127.47680986339857,57.223705071882236],[-127.4771536374819,57.22369670853497],[-127.47747177330636,57.223722263610995],[-127.47775270498185,57.22380428783751],[-127.47801797060843,57.2239100293346],[-127.47827245589187,57.22403158604342],[-127.47851881136444,57.22415771811473],[-127.47876095445926,57.224281655348854],[-127.4790103861536,57.22440663080242],[-127.47924963261896,57.22453620491548],[-127.47945710256515,57.224675105793075],[-127.47960920889415,57.224829205220075],[-127.4797068756403,57.2249962509455],[-127.47977178034685,57.22517375601696],[-127.47982438327074,57.225354763168205],[-127.47988625938542,57.2255345444846],[-127.47997690178681,57.225707274550444],[-127.4800799176175,57.22587874367194],[-127.48019123932868,57.22605011881898],[-127.48031382031539,57.22621800357008],[-127.48045073381039,57.226381242133925],[-127.48060603750095,57.22653754656575],[-127.48081352321539,57.226676445508375],[-127.48105374761016,57.226803763715935],[-127.48127868443595,57.22693798052311],[-127.48144832534304,57.22708963783399],[-127.48157907368886,57.22725406619464],[-127.48169241832508,57.22742429647007],[-127.48181095270266,57.22759446793136],[-127.4819529794894,57.22775540533734],[-127.4821247856662,57.22790927942935],[-127.48230893964919,57.228060771498036],[-127.48250431035233,57.228207652296646],[-127.48271294322169,57.228348777602456],[-127.48293573588862,57.228480774172574],[-127.48317373274493,57.228603630098426],[-127.48343429202087,57.228720624917244],[-127.48371415655244,57.22882731139848],[-127.48400787668356,57.22891702517426],[-127.48431001904572,57.22898310173093],[-127.48462094240845,57.22900872187168],[-127.48495090979415,57.22899040608469],[-127.48528958491892,57.228956296601176],[-127.48562476735849,57.228939040938855],[-127.48595292211785,57.228954373318544],[-127.48628064191475,57.22898540388099],[-127.48660742145218,57.229018686317396],[-127.4869340709598,57.22904860640811],[-127.4872607209781,57.2290785256845],[-127.48758737150699,57.229108444146625],[-127.48791406610799,57.22913948230448],[-127.48824067409663,57.22916827862787],[-127.48856828341525,57.22919594175043],[-127.48889583303901,57.22922248373271],[-127.48922348689493,57.22925126572686],[-127.4895491832296,57.22928343219963],[-127.48987199809659,57.22932123569476],[-127.49019797392108,57.229360123424236],[-127.49052502189211,57.229400119149126],[-127.49084814424067,57.22944576380709],[-127.49116531247783,57.2294982015431],[-127.4914704845777,57.22956198527073],[-127.4917628783696,57.22964385003333],[-127.4920406132081,57.22974830138767],[-127.49229008018797,57.22987213155469],[-127.49249962786014,57.23000874750095],[-127.49266210915951,57.23016159393823],[-127.4927929598738,57.23032713199793],[-127.49291366862725,57.230498390664735],[-127.49304663763134,57.230665025390174],[-127.4931858248314,57.23083158908808],[-127.4933231157755,57.2310026583393],[-127.49348575234178,57.23115886521297],[-127.49370000289727,57.23128309475102],[-127.49398728570019,57.23136613418571],[-127.49431695216472,57.231419542969896],[-127.49464816679401,57.23145948114688],[-127.4949747121021,57.23148601970287],[-127.49530694964083,57.231499040314446],[-127.49563918740557,57.231512060083126],[-127.49596667415122,57.23153634340334],[-127.49628857407191,57.23157638390838],[-127.49660873625106,57.231625411579415],[-127.49692503401955,57.23168120872997],[-127.49723636262584,57.23174266701511],[-127.49753875277648,57.23181431592188],[-127.49783226509697,57.23189727583304],[-127.49812388173893,57.23198474084439],[-127.49841536809697,57.232068843684814],[-127.49870794411359,57.232154054433245],[-127.4989984324349,57.232239288453435],[-127.49929001044929,57.23232563038153],[-127.49958056185505,57.23241198344083],[-127.49986911339077,57.23250060081285],[-127.5001566383339,57.23258922933421],[-127.50044623705014,57.23267783347738],[-127.50073773378931,57.232761931192776],[-127.50103428937554,57.23284260723745],[-127.50133471078887,57.23291651221832],[-127.50163920692215,57.23298812776269],[-127.50194562814639,57.23305635749016],[-127.50225409552156,57.23312344202359],[-127.50256245940851,57.23318828500669],[-127.50287286938713,57.23325198277639],[-127.5032003159626,57.23330091102744],[-127.50350950729647,57.23336013725249],[-127.50370563467412,57.23349689043504],[-127.5037603026256,57.23367450379387],[-127.50378811660799,57.23385466765118],[-127.50385422001709,57.23403327069138],[-127.50394922382716,57.2342081786904],[-127.50412908518021,57.234352965359896],[-127.50436821454936,57.23447577149993],[-127.50462680603604,57.234592748483436],[-127.50487215614774,57.234715482268406],[-127.50508596442987,57.23485315144416],[-127.50529692157652,57.23499757918166],[-127.50549457664016,57.23514664364297],[-127.50566138156364,57.23530166771689],[-127.50577978235577,57.23546509544798],[-127.50584870637168,57.23563581828487],[-127.50588368925807,57.23581365761202],[-127.50589602254425,57.23599512052756],[-127.50589906492871,57.23617781135043],[-127.50590417997977,57.236360478359856],[-127.50592059815585,57.23654077335158],[-127.50593184313456,57.236721127870986],[-127.50593998750963,57.236901518079364],[-127.50595123268572,57.23708187264761],[-127.50597068051444,57.23725989085631],[-127.50601288407755,57.23743652632494],[-127.50617567140881,57.23759495942662],[-127.50641888479812,57.23771547342052],[-127.5066814899754,57.23782791670905],[-127.50692073750413,57.237952959541964],[-127.50718319679635,57.238062040501624],[-127.50746694400279,57.23815854465171],[-127.50777299206429,57.23821555571031],[-127.50810904038107,57.23821841156394],[-127.50845043899133,57.238225688995904],[-127.50871455202909,57.23832353772669],[-127.50880210486348,57.238492923920404],[-127.50874599097057,57.2386740548231],[-127.50865537485794,57.23884773612504],[-127.50860634605841,57.23902430128475],[-127.5085926867669,57.23920382199658],[-127.50844111821294,57.239356906057665],[-127.50814059726925,57.239439960343155],[-127.50788085483681,57.23955841699503],[-127.50782736681879,57.23972718611407],[-127.50787394812019,57.239909376145654],[-127.50795447502509,57.24008444913122],[-127.5080639176193,57.240256947027945],[-127.50820929113179,57.24042006283135],[-127.50844920699987,57.240535006471774],[-127.50875731992264,57.240617775293764],[-127.50902269936272,57.240721214304486],[-127.50918529213963,57.24087404150365],[-127.509305167771,57.241047539333664],[-127.50945559091343,57.2412072326759],[-127.50968550464327,57.241331257707834],[-127.5099591831798,57.241434599280495],[-127.51024205033347,57.24153447125867],[-127.51050179646504,57.2416525457454],[-127.51076145570981,57.24176837870094],[-127.51106713926542,57.241815297600034],[-127.51141209669247,57.241806832301826],[-127.51172505677891,57.2417494104366],[-127.51199708056456,57.2416532246642],[-127.51225591258994,57.24153813325895],[-127.51250825856174,57.24141639010973],[-127.51276073583647,57.24129800802278],[-127.51300794898538,57.241177444219915],[-127.51325095390182,57.24105580755308],[-127.51349604673699,57.24093414629554],[-127.51373320970235,57.240795760885554],[-127.51397585518795,57.24066515881825],[-127.51424286913101,57.24057351032963],[-127.51455039468982,57.24053632288288],[-127.51488727020727,57.24053354689986],[-127.51523131269201,57.240554228624426],[-127.51556361195259,57.24059298176416],[-127.51588199554568,57.24064646849159],[-127.51620225182627,57.24072123224387],[-127.51648923133277,57.24081992215701],[-127.51671074076016,57.24094066931323],[-127.51686317842812,57.24109808910084],[-127.51695337968316,57.24128089232716],[-127.51698148344205,57.24146665699972],[-127.51694998451154,57.24163965988513],[-127.51687286434053,57.24181319127531],[-127.51676669453543,57.241985938103454],[-127.51665009804596,57.2421576845977],[-127.51653869118721,57.24232937089548],[-127.51643553077123,57.242499840584664],[-127.51632719529594,57.24267037013078],[-127.51621672488325,57.242839803292114],[-127.51610834306746,57.24300921218964],[-127.51600310590085,57.24317970562964],[-127.5158937217766,57.24335024700315],[-127.51578951093333,57.24352072841404],[-127.51570513440001,57.243694343260955],[-127.51564473850249,57.243871043596],[-127.51559261765442,57.244047648148204],[-127.51554682085781,57.244226421563454],[-127.51550827107663,57.24440511111318],[-127.51547701279887,57.2445848373182],[-127.51545199007259,57.24476449137704],[-127.51543425904234,57.2449451821005],[-127.51543736809066,57.24515477841923],[-127.51550006845724,57.24529754446979],[-127.5157897274754,57.24527961865041],[-127.51614094394262,57.245192596764376],[-127.5164478673751,57.24524397338295],[-127.51669561893273,57.24537226459622],[-127.51684679431949,57.24557566196915],[-127.51698317758824,57.24571981600738],[-127.51715374339028,57.245653941404846],[-127.51733947855956,57.24547354581757],[-127.51755909297187,57.2453106938388],[-127.51780955166227,57.24519344619724],[-127.51807164148532,57.245081668384145],[-127.51834430102612,57.244975372634734],[-127.51862566830742,57.24487906459183],[-127.5189147265508,57.244793877021635],[-127.51921684493793,57.24472423170164],[-127.51953423036012,57.24467346602257],[-127.51985917401718,57.24463045905096],[-127.52018299965091,57.244585222185826],[-127.5204992207952,57.244531104572445],[-127.52080543581542,57.24446028694859],[-127.52094030188601,57.24438361163442],[-127.52133452135573,57.24423105646558],[-127.52158253184702,57.244104861696954],[-127.52185864604417,57.244033270294715],[-127.52217698359463,57.24403293340307],[-127.52251468936953,57.24407609071673],[-127.5228426550892,57.24413505485891],[-127.52314714690739,57.24420325947235],[-127.52344188261843,57.24428727131877],[-127.52373568064142,57.24437353549435],[-127.5240372812446,57.24444737688692],[-127.52435475321839,57.24450309635829],[-127.52468508418161,57.24454297092172],[-127.52501225420725,57.24455597672418],[-127.52533435744898,57.24451971535493],[-127.52563579173231,57.24443324758159],[-127.52586729428441,57.244309478914694],[-127.52606243611623,57.24415810779479],[-127.52631295061063,57.24404308501918],[-127.52662389472961,57.243960988215335],[-127.5269438574593,57.243949410470535],[-127.52727062118342,57.24397810975279],[-127.52759919079774,57.24402584469618],[-127.52791602239633,57.24409165229236],[-127.52820757692226,57.24417344857248],[-127.52847528571107,57.244281306292784],[-127.52871798654925,57.244411876081024],[-127.52892282160386,57.24455521891369],[-127.52906099152004,57.24471727641025],[-127.52906013338347,57.24490337786807],[-127.52888744540915,57.24504552322641],[-127.52864304827825,57.245209805071035],[-127.5284569338301,57.245327443862266],[-127.5283047950993,57.24549064823577],[-127.52820676358827,57.2456588262048],[-127.52823168950111,57.24584126375402],[-127.52833871918219,57.24600256455533],[-127.5285994172623,57.246116109316596],[-127.52890666339708,57.24620108430798],[-127.52922448523243,57.246238851674526],[-127.52964596131696,57.24622384001924],[-127.5298745038111,57.24625928550782],[-127.5302348968017,57.24635036276598],[-127.53050128168542,57.2464246012024],[-127.53080980061833,57.246489378326146],[-127.5311251813764,57.246543985197945],[-127.53145007664507,57.246577180392286],[-127.53178263705851,57.246594590638175],[-127.53211610802798,57.2466086262847],[-127.5324447022058,57.24663056540051],[-127.53276472237897,57.24667166165448],[-127.53309237141004,57.24674741993826],[-127.53333550318318,57.24686228223941],[-127.53339380046486,57.24702302885615],[-127.53336311810818,57.24721508530652],[-127.53339941911445,57.247396268171094],[-127.53345736290137,57.247573834528396],[-127.53352043710804,57.24775021977912],[-127.5335928332135,57.24792649587075],[-127.53367759626268,57.24810038505531],[-127.53377776650068,57.24827073066659],[-127.53389749065386,57.24843748410252],[-127.53403471224749,57.24860066939883],[-127.53418428488405,57.24876146782608],[-127.53434310703437,57.248919915678435],[-127.53450706052956,57.24907718221261],[-127.53467199878405,57.24923331599877],[-127.53483793838181,57.249388316838385],[-127.53500902598705,57.24954213612669],[-127.53518524505924,57.24969477403748],[-127.53536556726208,57.24984624260548],[-127.53554994764737,57.24999542130108],[-127.53573640283615,57.25014457544275],[-127.53592379788861,57.250291476251604],[-127.53611228436172,57.25043948506544],[-127.53630181728137,57.25058748136755],[-127.53649238007237,57.25073546534794],[-127.5366838827172,57.25088119597694],[-127.53687850523357,57.25102688975056],[-127.53707620263013,57.25117142614189],[-127.53727695833634,57.25131480533148],[-127.53748072732975,57.2514559067921],[-127.5376906446529,57.251594693702614],[-127.53790663210802,57.251730045909376],[-127.53812979636947,57.251863071427096],[-127.53835603560822,57.251994939438134],[-127.53858533324767,57.25212565012093],[-127.53881354234248,57.252255252180646],[-127.5390408147059,57.25238710696655],[-127.53926398674413,57.2525201306206],[-127.53948202997927,57.25265433525197],[-127.53969298959818,57.25279310699583],[-127.53989677537699,57.25293420486151],[-127.540092465629,57.25307988180764],[-127.54028301037599,57.25322674004881],[-127.54046747135855,57.253377032730484],[-127.54064678676573,57.25352850675556],[-127.54082201821264,57.25368114965649],[-127.54098695694704,57.25383615553937],[-127.54113965277834,57.25399578947858],[-127.5412851292151,57.2541566292707],[-127.54143065203289,57.25431858943541],[-127.5415813066183,57.25447936803153],[-127.54173503600555,57.254638989252705],[-127.54188169800763,57.25480317770498],[-127.54202731616272,57.25496737831773],[-127.54217703765086,57.25513040944759],[-127.5423369026902,57.25528771577297],[-127.54251407042669,57.25543697085628],[-127.54271365958024,57.25557587224603],[-127.54294375088902,57.25569984046489],[-127.5432003206458,57.25581116484645],[-127.54347622174595,57.2559132925898],[-127.54376126666652,57.25601082782445],[-127.54404731294068,57.25610722961223],[-127.54432629202073,57.25620819831132],[-127.54460210848475,57.25630808268606],[-127.54488296655848,57.25640454390028],[-127.54515978576924,57.25650329427545],[-127.54542446450516,57.256610034663595],[-127.5456659392701,57.25673274302964],[-127.54611729253021,57.25694041577685],[-127.54634776139795,57.25727849438528],[-127.54642948422658,57.25745241340669],[-127.54648438479231,57.25763001221668],[-127.54653420035054,57.25780991316838],[-127.54656745482852,57.2579911307064],[-127.54657677866223,57.25817038869649],[-127.54655180249728,57.25834780955937],[-127.54649034483484,57.25852117692094],[-127.54640188161808,57.25869374201507],[-127.54629361729664,57.25886429869148],[-127.54617395418062,57.259034989828834],[-127.54604797784863,57.25920351327244],[-127.54592507419552,57.25937087929256],[-127.54580841977301,57.259539292518],[-127.54569501930213,57.259711030411054],[-127.54558478222516,57.25988385194679],[-127.54547349890814,57.2600566857442],[-127.54536112405685,57.260228411282846],[-127.54524457168033,57.26039906495988],[-127.54512168935179,57.26056755109753],[-127.54499043625772,57.2607338937444],[-127.54484961465539,57.2608947438404],[-127.54469512184399,57.26105127077924],[-127.5445279743187,57.26120234147299],[-127.54434287169234,57.2613457762474],[-127.54413666596204,57.26148049107428],[-127.54391043097976,57.261607594247664],[-127.54366837648158,57.261728157110596],[-127.5434126216615,57.26184327565983],[-127.5431484170536,57.261955130073396],[-127.54287898896878,57.26206592440921],[-127.54260844020926,57.26217448927243],[-127.54233900901492,57.262285282517055],[-127.54207593389512,57.26239936354252],[-127.54182231759134,57.26251669587301],[-127.54158143158888,57.26264060422848],[-127.54134900427894,57.26276889683028],[-127.54111992057983,57.262902754947305],[-127.54089828339711,57.2630410092893],[-127.54069132708882,57.26318357482151],[-127.54050120415279,57.26333154735937],[-127.54033510397875,57.263483721401485],[-127.54019523629067,57.263643434225536],[-127.54008157279785,57.26380956520062],[-127.53998789144552,57.26398218753594],[-127.53991201149108,57.264159084803936],[-127.53984973976783,57.26433918526868],[-127.53979578062028,57.264519188029105],[-127.53974793658645,57.26469687681372],[-127.53970633118608,57.26487449228594],[-127.53967719895245,57.26505308224223],[-127.53965642488279,57.26523269504977],[-127.5396418565969,57.26541223495267],[-127.53963045289011,57.26559285874557],[-127.53962004935947,57.26577234975435],[-127.53960652610415,57.26595187744541],[-127.53958780885034,57.266131466190835],[-127.53956915313198,57.26631217528921],[-127.5395598681802,57.266493895356696],[-127.53955265739957,57.26667559107699],[-127.53954444623601,57.26685841963227],[-127.53952681880057,57.26703911673954],[-127.5394966552323,57.26721771904899],[-127.53944561305187,57.267393203509165],[-127.53937054370682,57.26756448602491],[-127.53925470044038,57.26772840011317],[-127.53909912825509,57.26788493338256],[-127.5389184823884,57.26803727673246],[-127.53872637280898,57.26818863339995],[-127.53853842700423,57.26833994089595],[-127.53836832888668,57.268496643868595],[-127.53822957029188,57.268658584006666],[-127.53811389913092,57.26882697933919],[-127.53800764354108,57.26899750617917],[-127.5379087007579,57.26916906817378],[-127.53781504153618,57.26934281021362],[-127.53772551369738,57.269516503717846],[-127.53763812112949,57.26969129317636],[-127.5375496822481,57.2698660948687],[-127.53746019703871,57.27004090879246],[-127.5373654430622,57.270213542368516],[-127.53726542026334,57.27038399558447],[-127.53715808257357,57.270553413486496],[-127.53704023638471,57.270719591398475],[-127.53691188158969,57.27088252929076],[-127.53674888281967,57.27103578382457],[-127.53654710736674,57.27117940332254],[-127.5363221955523,57.27131544635055],[-127.53609092351104,57.27144820036835],[-127.53594096803327,57.27161587476651],[-127.53566549744212,57.27173345124701],[-127.53560018826524,57.27181269069066],[-127.53560670601257,57.27207830527281],[-127.53566775599207,57.27225471719778],[-127.53573605924576,57.272431044123365],[-127.53578160432052,57.2726087588205],[-127.53581370167898,57.272787752194816],[-127.53583754594163,57.27296796337486],[-127.53584577751775,57.2731472364973],[-127.53583742878756,57.27332670396231],[-127.53581869022037,57.27350629321547],[-127.53578647460212,57.27368604043004],[-127.53573549678624,57.27386376540811],[-127.53566575651914,57.27403946812695],[-127.53559827032318,57.27421962865684],[-127.5355319191476,57.27440201799343],[-127.53545928166167,57.27458335990732],[-127.5353709115117,57.27476040187368],[-127.53525935871994,57.27492874688588],[-127.5351172348483,57.275085118240064],[-127.53493608917566,57.27522625162176],[-127.5347212515761,57.27535544763072],[-127.53448106584786,57.27547372946303],[-127.5342208454418,57.27558439795802],[-127.5339469660839,57.27569074155454],[-127.53366574193745,57.275794928398106],[-127.53338445471282,57.27589799430549],[-127.53310746692681,57.27600437248981],[-127.53284210522457,57.27611621940988],[-127.5325914900669,57.27623349864705],[-127.5323462317148,57.27635519901233],[-127.53210310810604,57.27647799501832],[-127.53186317664772,57.27660299537951],[-127.53162531843033,57.276727971066634],[-127.53138750354785,57.27685406687179],[-127.5311496870967,57.276980162258084],[-127.53091186907685,57.27710625722549],[-127.53067291403103,57.277230122911405],[-127.53043085346941,57.27735402441958],[-127.53018658192086,57.27747458810272],[-127.52993911514737,57.27759294649948],[-127.5296863168578,57.27770800346281],[-127.52940089992312,57.27781222994952],[-127.529045084936,57.277894855882295],[-127.52867429613659,57.2779664448679],[-127.52835051273172,57.27804533209734],[-127.52801012821462,57.27822867081179],[-127.52802774319534,57.278305818718756],[-127.52811111366874,57.27841807397465],[-127.52820142735025,57.278573969663526],[-127.52833570172498,57.278739442269476],[-127.52850129704166,57.27890903376189],[-127.52868465695153,57.27908178107958],[-127.52887319759036,57.279254467751954],[-127.52905444105495,57.279426118263146],[-127.52921580294142,57.27959351627748],[-127.52935519135934,57.27975668627193],[-127.52949358001308,57.279920988883624],[-127.52962991146302,57.280085315392704],[-127.52976727328605,57.28024962976941],[-127.5299056206446,57.28041281146937],[-127.53004709001381,57.28057595661405],[-127.53019059075943,57.28073795686147],[-127.53033819793139,57.28089878797735],[-127.5304909125223,57.28105731719455],[-127.53064979206793,57.28121465321053],[-127.53082613973639,57.28136730079661],[-127.53103434650674,57.28151172859025],[-127.53127399197466,57.28163785175684],[-127.5315417023825,57.28173898314092],[-127.53182655015131,57.28182758199744],[-127.53212449137504,57.28190593761152],[-127.53243055449218,57.28197971334719],[-127.53273960493107,57.28205009025371],[-127.53304660975031,57.28212161144102],[-127.5333545716636,57.282190878596246],[-127.5336746256385,57.28225103502296],[-127.53399762169651,57.28230667198161],[-127.53431357240673,57.28236799596503],[-127.53461034210737,57.28244299658157],[-127.53487572186309,57.2825374222691],[-127.53508863477434,57.28266945715397],[-127.5352651419112,57.2828254605688],[-127.53543462085455,57.28298715145213],[-127.53562429592924,57.283135152728754],[-127.53583447053593,57.28327618716617],[-127.5360486453293,57.2834138112175],[-127.53625570196695,57.283554881584145],[-127.53644535459291,57.283701761003584],[-127.53661348115607,57.28385561894224],[-127.53678069834042,57.284012850571365],[-127.53694594841473,57.284172347227745],[-127.53710504774195,57.284334157977334],[-127.53725283310554,57.284498343392926],[-127.53738401784405,57.2846627233732],[-127.53749661665648,57.284829563393245],[-127.53758540440353,57.28499780371667],[-127.5376214908112,57.28517226755381],[-127.53760081479138,57.28535524472039],[-127.5375386044098,57.285537588000786],[-127.53745229385929,57.28571460856891],[-127.53734482379622,57.2858817875974],[-127.53719660547694,57.28604271794852],[-127.53702534865283,57.286198312904204],[-127.53684780278361,57.28635286029697],[-127.53668388864313,57.28651061087458],[-127.53653274059381,57.28667605912663],[-127.53637739547646,57.286840435327235],[-127.53620184588564,57.28699271631772],[-127.53598911187314,57.28712413238193],[-127.53573599857961,57.28723247861392],[-127.5354637551818,57.287329837690194],[-127.53517666758422,57.28741952251779],[-127.53487996104005,57.287502592893006],[-127.53457690862903,57.287582373653606],[-127.5342717179608,57.28766105765655],[-127.53396969242523,57.28774082497609],[-127.53367295239707,57.28782277190076],[-127.53335594682012,57.28789150231211],[-127.53305476715266,57.28796677331242],[-127.53283755142584,57.28809038907816],[-127.53270740448126,57.28826231374113],[-127.53252862239667,57.28841238538559],[-127.53228975329893,57.28853961658],[-127.53203408265476,57.28866255938898],[-127.53176119444588,57.288770007847184],[-127.5314717424352,57.28885298562806],[-127.53116324752106,57.28890143192424],[-127.53083704243696,57.288922057478445],[-127.53049985961283,57.28892823643573],[-127.53015943716701,57.28893108912033],[-127.52982356934244,57.28894397742027],[-127.52950209715935,57.28897911834792],[-127.52919752737262,57.28904769348443],[-127.52890202056503,57.28913522043387],[-127.52860646758097,57.28922162617423],[-127.52829972913283,57.28928798233964],[-127.52797950612485,57.28932871029044],[-127.5276535926386,57.28935717197241],[-127.52732430500595,57.289378945718326],[-127.5269917777215,57.28939739315252],[-127.52665914397984,57.28941359883685],[-127.52632760076588,57.28943091204924],[-127.52599831174255,57.28945268246666],[-127.52566902234412,57.2894744520573],[-127.5253397325706,57.28949622082138],[-127.52501039770404,57.28951686820831],[-127.52468115189822,57.28953975586994],[-127.52435195039672,57.28956376325641],[-127.52402053890204,57.28958443229048],[-127.523688097594,57.289605112451824],[-127.52336001370077,57.289631346487184],[-127.52303870843572,57.28967095379317],[-127.52272758241632,57.289731742412194],[-127.5224330849653,57.28981924287302],[-127.5221674622045,57.28992770775373],[-127.52191667909949,57.290043847315275],[-127.52167131473949,57.29016552884902],[-127.52143338340383,57.29029160794075],[-127.52120288508394,57.29042208463223],[-127.5209819119482,57.29055693469253],[-127.52077041942657,57.29069503761767],[-127.52056631538048,57.29083641771994],[-127.52036747966525,57.2909799785506],[-127.52017397348894,57.291126840495856],[-127.5199867372186,57.29127475053676],[-127.51980275492632,57.29142598580367],[-127.51962395193434,57.29157716078285],[-127.51945141898085,57.2917293839266],[-127.51929471097102,57.291888149894746],[-127.51915268145713,57.29205010881802],[-127.51901487454153,57.29221426081516],[-127.5188137668839,57.29237914597485],[-127.51881051825771,57.29274128971089],[-127.51880211318178,57.29292187962952],[-127.51879372463205,57.29310246938148],[-127.5187894708308,57.29328301126243],[-127.51879249033503,57.29346346891762],[-127.51880689017962,57.293642673700475],[-127.51883571469125,57.293819469270744],[-127.51888219169346,57.2939960603744],[-127.51896386803693,57.29417000157453],[-127.5190776833769,57.29434244933861],[-127.51921219641774,57.29451353615295],[-127.51935393968179,57.29468341801247],[-127.51949050300536,57.294853359784575],[-127.51961044445122,57.29502349409102],[-127.51970129752381,57.29519284438875],[-127.5197496331733,57.295363808530986],[-127.51974917874901,57.29553533818653],[-127.51971867740096,57.29570833718933],[-127.51966538591505,57.295882721411274],[-127.51959345570738,57.29605844271061],[-127.51950384362655,57.29623324781596],[-127.5193996829162,57.296408221456865],[-127.51928511382252,57.296582194550325],[-127.51916005844303,57.29675404689417],[-127.51902977590508,57.2969248386077],[-127.51889417705459,57.29709232855576],[-127.51875842677711,57.29725645689888],[-127.51861845097844,57.29741839189453],[-127.51846899030647,57.297577073355214],[-127.51830910406771,57.297734754290396],[-127.51814082358686,57.29789029006679],[-127.51796517847374,57.29804366873158],[-127.51778218527735,57.29819489006216],[-127.51759499413677,57.29834503864596],[-127.51740253081665,57.29849300581832],[-127.51720685468932,57.298638767728164],[-127.51700905655831,57.29878343281751],[-127.51680804561185,57.29892589261736],[-127.51659752139554,57.29906397782535],[-127.51637748387856,57.29919768839429],[-127.51615215746088,57.29932921758651],[-127.51592158658943,57.299459685936775],[-127.51568993996065,57.29958904523419],[-127.51545829176344,57.299718404135874],[-127.51522876251643,57.29984885921691],[-127.515004519087,57.299981494979455],[-127.51497511855261,57.29999977186624],[-127.51478661905449,57.300117420312226],[-127.51457717174597,57.30025661088638],[-127.51437087318456,57.300396885839575],[-127.51416573609906,57.300540510287234],[-127.51396371995858,57.3006840983825],[-127.51376491360156,57.300829891269125],[-127.51357133216342,57.30097674462723],[-127.51338302007879,57.30112577904556],[-127.51320099598283,57.30127586171677],[-127.51302627310208,57.301426980978064],[-127.51285994227493,57.30158024535356],[-127.51274388214823,57.30174414043128],[-127.51270534996719,57.301925078420126],[-127.51267309039166,57.30210706514688],[-127.51260846347444,57.302284940901515],[-127.51253653312537,57.30246177979728],[-127.51246980098776,57.30263855872148],[-127.51242385837296,57.30281621895831],[-127.51241733629413,57.302992303520114],[-127.51248658925753,57.30316751423642],[-127.51257872616426,57.303343582100496],[-127.51262621566525,57.30352016489055],[-127.51262783893321,57.30353472019889],[-127.51263954392883,57.30369938386278],[-127.51264045891197,57.30387986711178],[-127.51263614707167,57.304059289591365],[-127.51263809190004,57.30423976101472],[-127.51264934414476,57.30441900403684],[-127.51266271720384,57.30459934370462],[-127.51266671076742,57.304778670497974],[-127.51265092631819,57.30495710434666],[-127.51260395188068,57.30513477685538],[-127.51254762501681,57.305312557225115],[-127.51250692318344,57.30549127848122],[-127.51248702927563,57.30567088087237],[-127.51247648730215,57.30585037543947],[-127.51246597298758,57.30603099079314],[-127.51244500433147,57.306209484562345],[-127.51240633312729,57.306387061401686],[-127.51234174209402,57.306566058206705],[-127.51224787491674,57.30673978714093],[-127.51211505172179,57.30690051215759],[-127.51185901587166,57.30701893514569],[-127.51160074119117,57.30713289910031],[-127.51133920893075,57.30724353682894],[-127.51108939783623,57.307361886567094],[-127.51085128015355,57.307486827620664],[-127.51061740254795,57.307613961567746],[-127.51038568851376,57.30774331234331],[-127.51015821454762,57.30787485605147],[-127.50993598292406,57.30800746009458],[-127.50971801907825,57.30814337788222],[-127.5095116600841,57.30828364608072],[-127.50943393583835,57.30834059467422],[-127.50931482945336,57.3084282886408],[-127.50912543406041,57.30857732969008],[-127.50891938042483,57.30872544101945],[-127.50871652026566,57.30887575745776],[-127.50855230480968,57.3090312345499],[-127.50846013688621,57.30919597264331],[-127.5084493813845,57.30937098528981],[-127.50848874650217,57.309552148063645],[-127.50853684090738,57.30969173037572],[-127.50855211755878,57.309736398021975],[-127.5086144426066,57.309920660014406],[-127.50864852065047,57.31009964147569],[-127.50862726635374,57.31027141176915],[-127.5084920291857,57.3104243134323],[-127.50826163069013,57.310561492929935],[-127.50801874288985,57.310697694518076],[-127.50781461748835,57.310842418763706],[-127.50773669194798,57.3108948843568],[-127.50760213956467,57.31098611760376],[-127.50742215007772,57.31113729034358],[-127.50731438861887,57.311302206992416],[-127.50723605397624,57.311475754123066],[-127.507170267395,57.31165139921999],[-127.50711499652455,57.311830286739735],[-127.50707115552251,57.31200904294077],[-127.5070367396188,57.312189933038646],[-127.50700958374688,57.31237073974522],[-127.50698966040797,57.31255034229672],[-127.50698007657013,57.31272870500437],[-127.5069829976024,57.31290804516783],[-127.50699734937118,57.313087254042344],[-127.5070179150903,57.31326639155671],[-127.50704269547523,57.313446601763424],[-127.50706741525964,57.31362569160415],[-127.50708804243251,57.313805949573016],[-127.50710237841672,57.31398515875679],[-127.50712936919184,57.3141687069287],[-127.50715951144568,57.31435334000573],[-127.50714888120172,57.31453171501102],[-127.507053570313,57.31469648873288],[-127.50688816027417,57.31484861456663],[-127.50668300585555,57.31499447013958],[-127.50646739351612,57.315138203307434],[-127.50626855509238,57.315286227877124],[-127.50611468675481,57.3154415834876],[-127.50602682349046,57.31561075535665],[-127.50598918728434,57.315789440403414],[-127.50597251367913,57.315972369179896],[-127.5059485180292,57.316154260941595],[-127.50588794579211,57.31633096713092],[-127.50579085728639,57.31650360808605],[-127.50567922892878,57.31667641585583],[-127.50556963238736,57.31684807913728],[-127.50548189600454,57.3170206125799],[-127.50543474085188,57.317194922500555],[-127.50542925847974,57.31737211751413],[-127.50544977497441,57.31755013531136],[-127.50548904593758,57.31772905901491],[-127.50553868596909,57.317907863747806],[-127.50559046433658,57.31808776504426],[-127.50563699799321,57.31826660545046],[-127.50567209976845,57.31844557706709],[-127.50569480006118,57.31862581211948],[-127.50571437659157,57.318806083046546],[-127.50573810755056,57.31898630632025],[-127.50577316627292,57.31916415743005],[-127.50582896916076,57.31934064938486],[-127.50590237584407,57.31951581820534],[-127.50598418023097,57.31969313280945],[-127.50607735730468,57.31986919575884],[-127.50618495950557,57.3200417298053],[-127.50631305271317,57.32020730199708],[-127.50646261222893,57.32036365889041],[-127.50666430989712,57.320498116182854],[-127.50693253709878,57.32060714506319],[-127.50721823692167,57.32071148833657],[-127.5074702033578,57.32082967171002],[-127.50766701537592,57.32097203136711],[-127.50784133327058,57.32112361801602],[-127.50800341035952,57.32128095062371],[-127.50816043674105,57.32144170440316],[-127.50832251649464,57.32159903665724],[-127.50851028953113,57.32174934678835],[-127.50872377266859,57.32189263449267],[-127.5087978459661,57.32205770474641],[-127.50876970535573,57.32223964569275],[-127.50875302563516,57.322422575968055],[-127.50880676973988,57.322599091007966],[-127.50888850564989,57.32277416307158],[-127.50899606783136,57.32294557482357],[-127.50915098360085,57.32310523093805],[-127.50938022574375,57.32325282097913],[-127.50945635381512,57.323443652682606],[-127.5095146069013,57.3235763930043],[-127.50941695667603,57.32376137615461],[-127.50924671366818,57.323923651197696],[-127.50901657481822,57.3240428920798],[-127.50875141293213,57.32414347661353],[-127.50743146327552,57.324849242317235],[-127.50720126725925,57.32491466798588],[-127.50686979307395,57.3250204946993],[-127.50643640320177,57.325151033643],[-127.5060514247293,57.32532361719464],[-127.50571889676134,57.325429453053424],[-127.50539586984404,57.32556544867345],[-127.50519364415288,57.32570790556758],[-127.50496379109782,57.3258349836464],[-127.50471381106942,57.32595220223938],[-127.50445320455911,57.32606393669586],[-127.50418515693615,57.32617127153512],[-127.50391391155308,57.3262764002735],[-127.50364269219023,57.3263826492419],[-127.50337573125381,57.326491091049256],[-127.50311723880682,57.32660391969213],[-127.50287144727648,57.32672220784669],[-127.50264477661503,57.32685148755792],[-127.50243621297184,57.32699177053613],[-127.50224033366788,57.327137513462425],[-127.50205186495833,57.32728653456596],[-127.50186337815703,57.327435555607096],[-127.50167490650519,57.32758457620537],[-127.50149901458171,57.32773681589286],[-127.5013241683705,57.32788904338397],[-127.50113357069633,57.328036966434915],[-127.50093127195672,57.328178296453245],[-127.50072372527653,57.32831856507505],[-127.50051199436709,57.32845776011207],[-127.50024528583437,57.32867942346148],[-127.4999116904058,57.32873256498113],[-127.4996015914556,57.328722655679584],[-127.49933232505248,57.32861474365582],[-127.49906471441555,57.3284956012195],[-127.4987590908148,57.32844079494459],[-127.49843252425204,57.32840864904345],[-127.49809904660734,57.32838555000681],[-127.49776069132993,57.3283703534741],[-127.49742271528434,57.328365241614904],[-127.49708830353484,57.32837129919062],[-127.49676264157648,57.32838846708215],[-127.49644828995469,57.32842904821416],[-127.49614126850231,57.32849757242624],[-127.4960086738831,57.32853495911323],[-127.49584113750886,57.328582833815894],[-127.49554426166489,57.3286714207027],[-127.49524931381099,57.32875662165277],[-127.4949596548773,57.328844003874316],[-127.49467329492794,57.32893583225925],[-127.49438899465505,57.329027636556724],[-127.49410154094797,57.32911835503529],[-127.49380975510935,57.32920463780211],[-127.49351363721149,57.329286484827456],[-127.49320548539947,57.32935277275317],[-127.49287964259749,57.32939235488741],[-127.49254976650536,57.32938153275893],[-127.49231526665216,57.32925863680309],[-127.4921142262029,57.3291140592187],[-127.4918552080376,57.32900153112799],[-127.49161045576093,57.328882113836734],[-127.4912263200801,57.32862638535919],[-127.49279492736989,57.33272746266905],[-127.49142463450585,57.33378230006058],[-127.48945481112614,57.335297973523225],[-127.48355012292598,57.33838733073836],[-127.47032426889281,57.346410751378855],[-127.46081689965219,57.352283836168795],[-127.45710622209509,57.357751225598086],[-127.45680116303654,57.36095650473165],[-127.45503889442125,57.36490442429749],[-127.45414292351799,57.36942572498322],[-127.45895157123165,57.37377618342823],[-127.46088574674089,57.37472334474147],[-127.46681441090709,57.38072037207297],[-127.46977420894265,57.38663381893392],[-127.46476515292852,57.39130884512785],[-127.4544213449213,57.394840948651535],[-127.44410172791332,57.396093799621106],[-127.43466796058573,57.395506471212876],[-127.43362876801868,57.395751005092535],[-127.4252276582951,57.39777071008003],[-127.41528844232333,57.40090066794012],[-127.40678336769125,57.402642257721716],[-127.39524257294026,57.405563581125904],[-127.38982812150158,57.408006696154374],[-127.38878397828788,57.40847515094049],[-127.37810598068816,57.414919661450796],[-127.37553018356707,57.42008593296626],[-127.37201421014947,57.42566559064852],[-127.37068236389408,57.42698897353644],[-127.36304168596244,57.42963353891296],[-127.35482437789993,57.43080367949389],[-127.34154265099268,57.43577414589991],[-127.33331131167024,57.43653945947875],[-127.32491399026097,57.435539005019486],[-127.31099878513788,57.43743631630496],[-127.30594209855715,57.441540637666826],[-127.30423885486641,57.444580129703624],[-127.30265809448603,57.45151102290218],[-127.30182424310057,57.45864981246057],[-127.30424354990421,57.464796743078864],[-127.31166262630224,57.47146801468316],[-127.31709896535719,57.47570114480017],[-127.32252538881083,57.479584368297274],[-127.3206045645928,57.485774648197136],[-127.3134834128346,57.48858152950506],[-127.30469919859966,57.489063454750195],[-127.29851077259951,57.49117859688963],[-127.29942847846857,57.493447808737756],[-127.30051800469526,57.49429813673572],[-127.30184543602711,57.49599821429798],[-127.30658784753167,57.501718729137195],[-127.31381979387183,57.505656275728455],[-127.31848625997226,57.50560968657789],[-127.32342388492033,57.50744384449677],[-127.32333405109125,57.51122099375495],[-127.32335712710581,57.515212296363295],[-127.32525659674558,57.51817118377924],[-127.32668913648418,57.519744432824034],[-127.32688108986014,57.52568949469381],[-127.32473058133806,57.53136212637584],[-127.32175914567921,57.54126781521603],[-127.31952989314087,57.547909973630546],[-127.32035430509185,57.55373224968631],[-127.32209110893206,57.55485406252958],[-127.32665717039708,57.558073362438094],[-127.33064773032255,57.56322690588386],[-127.32921219323899,57.56478423457523],[-127.32168426898049,57.56851066614314],[-127.32177898227852,57.57146988137731],[-127.323235337901,57.57706168941749],[-127.32032337603644,57.57908222968634],[-127.31648242253952,57.578609266569785],[-127.31113957762554,57.577747450994565],[-127.30340059171144,57.57838020662638],[-127.29800288153275,57.57911510087698],[-127.2893002725742,57.57954120812669],[-127.2870607148257,57.57932982615537],[-127.28573920010098,57.57780879705128],[-127.28065882920401,57.57853091977954],[-127.2771991635435,57.58004449821779],[-127.26954826246188,57.58011826028694],[-127.26624911188222,57.58003331856003],[-127.26230670416086,57.57966739957952],[-127.25788853737288,57.58119859271968],[-127.25406544333285,57.58482300315107],[-127.24777322257529,57.587681277283096],[-127.23971070554921,57.58820569131386],[-127.23545108664239,57.588012371606446],[-127.23101914923461,57.589085309913195],[-127.22725368491116,57.59116553524993],[-127.22072205031414,57.593280209572804],[-127.21593096093832,57.592974552742476],[-127.20924057517949,57.593322998578216],[-127.20334746531591,57.59548478124855],[-127.19797729182146,57.597291724033724],[-127.19422113811814,57.59978354194542],[-127.18860349941998,57.604112952952825],[-127.18307783973911,57.60438678658981],[-127.17644834708496,57.603127353992676],[-127.17344184160922,57.60206869752562],[-127.16823412671393,57.5984550356495],[-127.16460493629317,57.594208352709806],[-127.1605803306986,57.59086206798423],[-127.15900833713809,57.58790680136121],[-127.1553657826858,57.58308596518248],[-127.15101885523241,57.579634621024645],[-127.14696473254982,57.57522083481158],[-127.14450062033478,57.574497715379735],[-127.13886494549097,57.57048311174493],[-127.14135564921276,57.564523616898136],[-127.14313454203077,57.5596017828053],[-127.14366825342624,57.555767098683276],[-127.14356211379764,57.552000757602784],[-127.14010010990627,57.54963581452819],[-127.13847060999296,57.548277529209976],[-127.13889133643818,57.54421964129771],[-127.14206755541638,57.54002134063379],[-127.14497525559315,57.53771787536399],[-127.14556546735196,57.53594575375775],[-127.1434812213006,57.53356000468341],[-127.13845467236796,57.53206072493108],[-127.12667737270188,57.53238607143942],[-127.11066544304457,57.532961350660834],[-127.10462339821142,57.53335291793936],[-127.09762445770087,57.533572784096],[-127.09041751431147,57.533973385732374],[-127.08373974903405,57.534360277317866],[-127.07788110254118,57.53360999848867],[-127.0771145889834,57.53270138317298],[-127.0745118692942,57.53055202445347],[-127.07155583658565,57.52275483347207],[-127.06982671245207,57.51739628894098],[-127.06694870770525,57.51279149501147],[-127.05958082654729,57.51073418430188],[-127.05032553859948,57.50983060072434],[-127.04234052322143,57.508629323844495],[-127.0354622480274,57.50936517443633],[-127.03071838580301,57.51054142046647],[-127.03081938471725,57.51476508593862],[-127.0283757945937,57.519008634172025],[-127.02169311181473,57.52344649975712],[-127.01552601529545,57.52737778808587],[-127.01265170953396,57.53139118780228],[-127.00970456374209,57.53701059105032],[-127.00182704853863,57.54060453480857],[-126.99147011307203,57.54267394162047],[-126.97800743202565,57.54361751695681],[-126.97268056460304,57.54291243955368],[-126.96542563647941,57.54125259179268],[-126.95539764760376,57.539199876980156],[-126.94667279942993,57.53828512193315],[-126.9357591613292,57.53926885801605],[-126.93088366916814,57.53969798699769],[-126.92549809307573,57.54098258382283],[-126.91798924229049,57.542461130834454],[-126.9128011147506,57.54312496121678],[-126.90532754471354,57.54625286625853],[-126.90337542864232,57.54928885655163],[-126.90054249343568,57.55107514771666],[-126.89232177936435,57.554099785622434],[-126.88311541084217,57.55574924911296],[-126.87515159889115,57.555963732383205],[-126.86498017132989,57.557107075978074],[-126.85681832976317,57.558012375686936],[-126.85077735687578,57.55873310361509],[-126.8421916425966,57.5596940419288],[-126.8336142880468,57.561102825996336],[-126.82983320559656,57.5634676025849],[-126.82734408895477,57.56650584396916],[-126.82439699761647,57.5681207970846],[-126.82080484418918,57.56917463503016],[-126.81762182924628,57.56947242753179],[-126.80636841678023,57.570043900864114],[-126.79334181451459,57.57240098037057],[-126.78625996786052,57.57443449794297],[-126.78386589681219,57.57589725816288],[-126.78353332710809,57.576101039157315],[-126.78347186466257,57.576214640269775],[-126.78336493878766,57.57650677446503],[-126.78335004938572,57.5766974589404],[-126.78336066082541,57.5768061479477],[-126.78295065474317,57.57690724064916],[-126.78280192405191,57.57694736262949],[-126.78246859960122,57.57711526858486],[-126.78182377997733,57.577445343010716],[-126.78144995347256,57.57767851312741],[-126.78135009543074,57.57780691553585],[-126.7812783885922,57.57788021477554],[-126.78104647010068,57.57789391910681],[-126.78077694798282,57.577910087633136],[-126.78070479461239,57.57791051413693],[-126.7805908146791,57.577912308955014],[-126.78017154046277,57.5779192707921],[-126.77944376299368,57.57792917336668],[-126.77905915801766,57.57799534826544],[-126.7789826399382,57.57808885540494],[-126.7789854036943,57.57817292570796],[-126.77890192412012,57.578284412346854],[-126.77863375357657,57.5784171686208],[-126.77826810267372,57.578540408375225],[-126.77796991512817,57.57863858436554],[-126.77782030203798,57.57868767516626],[-126.77766620301746,57.57877266917266],[-126.77734058880908,57.57896181879165],[-126.77706284494086,57.57913835329747],[-126.77689764455137,57.57929516568225],[-126.77674485236041,57.579342031658335],[-126.77655680494011,57.57940480091165],[-126.77635574251774,57.579495675285976],[-126.77623873773183,57.579553541883485],[-126.77609778387823,57.579617154875656],[-126.77580854527055,57.57974442346933],[-126.77547127984877,57.579875336868966],[-126.77516148663864,57.57996909004551],[-126.77500984160798,57.580021553062366],[-126.77480339705535,57.58010572972666],[-126.77462715331221,57.58018300202573],[-126.77445428372945,57.580271465868705],[-126.77433217312047,57.58033608765995],[-126.77417206489447,57.580435687890066],[-126.77397689239314,57.58055903767516],[-126.77379393256992,57.5806666194466],[-126.77358229751704,57.580803518975635],[-126.77357752804902,57.58092911644196],[-126.77367189975588,57.58104292171437],[-126.7737788829717,57.581210468590136],[-126.77381270709867,57.5813302342487],[-126.77381203054604,57.58145132318245],[-126.77387153123374,57.58154739413299],[-126.77393970534155,57.58160753721286],[-126.77405049444609,57.58170554990543],[-126.77422752244979,57.58171796631978],[-126.77446513961954,57.58172554264798],[-126.77481889238642,57.58173467970337],[-126.77499690636904,57.58174372583276],[-126.77498908074094,57.58187270488841],[-126.77487303442183,57.58197877451225],[-126.77451954492436,57.58208511530696],[-126.77453286677569,57.582173608678666],[-126.77454221706614,57.582273336925304],[-126.77456137840545,57.5823920673435],[-126.77462179810608,57.58253297900616],[-126.77470450282097,57.58263900405384],[-126.77482621442046,57.582759375334156],[-126.77488659702676,57.58284759268442],[-126.77492431225814,57.582952760374646],[-126.77494540676112,57.583063631365924],[-126.77495192653414,57.583177951346016],[-126.77496672251246,57.58328773814836],[-126.77500641583772,57.583387288459654],[-126.77506270757453,57.58348001442656],[-126.77512527546229,57.58357270355239],[-126.77517484986895,57.583694619057965],[-126.77519792239589,57.58385144603781],[-126.7752122086413,57.58398702255729],[-126.77523157863072,57.584167415666776],[-126.77523197665585,57.58439164539706],[-126.77511972651357,57.58463223243475],[-126.7750396724597,57.5847078198949],[-126.77497046755941,57.58480240339911],[-126.77497317008678,57.584934684529756],[-126.77505363772207,57.58513490028557],[-126.7751278826694,57.58528694260672],[-126.77515999594112,57.58537420476765],[-126.77512456093493,57.58548316534923],[-126.77507408494324,57.58562360670396],[-126.77506377656537,57.58578511447616],[-126.7751127574051,57.58592945698892],[-126.77517206164354,57.58606701195765],[-126.77520726966686,57.58620246599228],[-126.77524429462704,57.58637602889712],[-126.77527014857172,57.58656647481708],[-126.7754316775184,57.5865868289003],[-126.77568468097493,57.58662906898362],[-126.77586644414295,57.58666724233882],[-126.77619549942575,57.58674491200615],[-126.77661587699698,57.58683774034478],[-126.77709757604316,57.586911146901684],[-126.77760021515026,57.58698442846812],[-126.77805244098012,57.587099488105665],[-126.7783897618794,57.5872230714261],[-126.77859748389324,57.58725099765336],[-126.77876352607015,57.58723656502122],[-126.77903047361549,57.58729553403381],[-126.7794845870423,57.5873489136855],[-126.7799650302774,57.58736065326378],[-126.78027411738488,57.58738237257219],[-126.78051973806114,57.58747285716648],[-126.78073215499896,57.587525417944846],[-126.78091649717294,57.58753554008129],[-126.78121550242487,57.58762682901055],[-126.78143024432549,57.58769058658562],[-126.78164971754317,57.587729650197204],[-126.78192359446791,57.587769512633685],[-126.78208041852545,57.58781455214053],[-126.78217515396048,57.58789359402801],[-126.78232695082686,57.58799920594349],[-126.78253735982908,57.588106712876],[-126.78268522535618,57.588174228065604],[-126.78286980606892,57.588246010204294],[-126.78300367153032,57.58829454819252],[-126.78317625564593,57.58839330899863],[-126.78341732654874,57.58856678163151],[-126.78355791495966,57.58868703385827],[-126.78363522738017,57.58878299561954],[-126.78374111821591,57.58889448414969],[-126.78386728994928,57.58897558078398],[-126.78405652478985,57.589069757075535],[-126.78432822303863,57.58920604793223],[-126.78454696066918,57.58931013891168],[-126.78467748240745,57.589399057160826],[-126.78477817286279,57.58946124447443],[-126.78494490141429,57.58952976639554],[-126.78524764238003,57.589649053511245],[-126.78560108151129,57.589790461867366],[-126.7859072446729,57.58987272863426],[-126.7862691512773,57.58991766443675],[-126.78668179216946,57.589988084048684],[-126.78691331838223,57.59005285421317],[-126.78706973139327,57.59012816197723],[-126.78730867634306,57.59024782452925],[-126.78759308183201,57.59038963906046],[-126.78785746414285,57.590524845397496],[-126.78801401039966,57.590556425712855],[-126.78821731679642,57.590572030527156],[-126.78850409492095,57.59062637782256],[-126.78883768149159,57.59071856480007],[-126.78919129536851,57.59081735834605],[-126.78934748274212,57.590881453164265],[-126.78960195400875,57.59099204960584],[-126.79006099882466,57.591028546418976],[-126.79059823206879,57.59095133564944],[-126.79105652012133,57.59100128757337],[-126.79153511289482,57.59117220265699],[-126.79208551417786,57.59132474686461],[-126.79256155474644,57.591473250218435],[-126.79275564789874,57.591548325422025],[-126.79256214937506,57.59165151281291],[-126.79236381588409,57.59172445730289],[-126.79221733937968,57.59182511985434],[-126.79219698479966,57.59200238693297],[-126.79222348971574,57.592219735253586],[-126.79215898208057,57.592437629293734],[-126.79214288964398,57.59256890286288],[-126.79217699351061,57.59264830160002],[-126.79227631425785,57.592794579620914],[-126.79231077658886,57.59289191494764],[-126.79238171730971,57.59308208882372],[-126.79244617817857,57.59316242665603],[-126.79254315112073,57.59329638574135],[-126.79252132097369,57.59345348085367],[-126.79234288054967,57.59362721161449],[-126.79224938861522,57.59376007061684],[-126.79217444772559,57.59387936427146],[-126.79211389649647,57.593986238726735],[-126.79205122897953,57.594092004675],[-126.7919607650057,57.59421923949902],[-126.79186623903703,57.59435322565658],[-126.79180975425872,57.59445446977141],[-126.79171179245422,57.59457390117018],[-126.79156539849987,57.59462859456401],[-126.791429263052,57.59467425696284],[-126.79129627449882,57.59471990037652],[-126.79097642978148,57.594786843439614],[-126.79079023490146,57.59484065304226],[-126.791136106645,57.594967517701036],[-126.79126913222348,57.59502390106569],[-126.79152074701274,57.5951468444536],[-126.79162693460624,57.595321111551],[-126.79161695312153,57.595444500551885],[-126.79161174182948,57.59559589035857],[-126.79160858624236,57.595645240954866],[-126.79159940188649,57.595756292290254],[-126.79158500092832,57.595868496060966],[-126.7915853653515,57.59598621726692],[-126.7916152374132,57.596113852297215],[-126.79167297765419,57.59622338157293],[-126.79174646833829,57.596335058818106],[-126.79182214575002,57.59645120763618],[-126.79186471674484,57.596535040719836],[-126.79205798274447,57.5966695447252],[-126.79235679778914,57.596847141499296],[-126.79248478776286,57.59706276102744],[-126.79249648535429,57.597221897944856],[-126.7926110613905,57.59729632960498],[-126.79272566131161,57.59737188220712],[-126.79288181139705,57.59748306308502],[-126.79304764592989,57.59760651862493],[-126.79317193125267,57.59769434569712],[-126.7933053446639,57.59776866373779],[-126.79350109596864,57.59787175796382],[-126.79372320376628,57.59798366303446],[-126.79388803401861,57.59805891299449],[-126.79403170262592,57.59812307813363],[-126.79427883266894,57.5982303472516],[-126.79447159697179,57.598289732121366],[-126.79459316755498,57.59834842363356],[-126.79472463425073,57.59842947909136],[-126.79482971519656,57.59849948134638],[-126.79494194837729,57.59856159225205],[-126.79508061540052,57.598636998174534],[-126.79527108187962,57.59873675817662],[-126.79546735740047,57.59881405937668],[-126.79585969253651,57.59870854873203],[-126.79602768282447,57.5986851133518],[-126.79621248349102,57.59871427187867],[-126.79647485889724,57.59874968970194],[-126.79659753091804,57.598760162088944],[-126.79705044525473,57.59879891479842],[-126.79772470134425,57.59881278526558],[-126.79827181640967,57.59880275442017],[-126.79876130225826,57.598888369898646],[-126.79922371718277,57.59893042130144],[-126.79941870189135,57.59894605962657],[-126.79960891918338,57.598984150105345],[-126.7999533119236,57.5991861205787],[-126.80000011062484,57.59922171504544],[-126.80057456660687,57.599663344859394],[-126.80109552615355,57.599999905709666],[-126.8014743460407,57.60024538988941],[-126.8022420157942,57.600666781080996],[-126.80266162933283,57.60091089327436],[-126.80291551440548,57.60108761905768],[-126.80307079029635,57.601204399772755],[-126.80318505669102,57.601312460098875],[-126.80336444921252,57.601480668350064],[-126.80363865104592,57.60172678273812],[-126.80394314850928,57.601970469981744],[-126.80416188602815,57.6021182566424],[-126.80405977928383,57.602436172929586],[-126.80393299736282,57.602824873934736],[-126.80379614467996,57.603231575146324],[-126.80371075251793,57.60354826861361],[-126.80367508615323,57.60379178269808],[-126.8036546762894,57.60391523720198],[-126.80360867413093,57.60401642361194],[-126.80355596480682,57.6040974694495],[-126.80354077400743,57.60412110670457],[-126.80352057015135,57.6042053184659],[-126.8034669409877,57.60429197580078],[-126.8033390834914,57.60443290123214],[-126.80327797684153,57.60451287683595],[-126.80335228765618,57.60461108956212],[-126.80354262780337,57.604850987570074],[-126.80377308942833,57.605106338002855],[-126.80398446357664,57.60515326344675],[-126.80420348175058,57.605214717478134],[-126.80448831589888,57.60531949686883],[-126.80480504868191,57.605447626370896],[-126.80505228075,57.605555997105505],[-126.80528579795657,57.605658845019065],[-126.80552316237885,57.60579530472412],[-126.80566925904702,57.60587289742255],[-126.80579294063381,57.605930445238464],[-126.80598554762541,57.60597972434803],[-126.80609884179471,57.605991366516236],[-126.8061796356017,57.60600096444601],[-126.80635066779747,57.60602010254094],[-126.80651671551294,57.60610093618418],[-126.80668826768635,57.60619406910721],[-126.80694291616862,57.60630575474461],[-126.80725966548616,57.60643387848107],[-126.80746390854485,57.6065873549871],[-126.80751308736687,57.60673393031045],[-126.80760005167079,57.60683654839513],[-126.80775772554244,57.60691631055237],[-126.8078985896304,57.606993932897915],[-126.80812124739332,57.607127114533405],[-126.80836038981846,57.60724786191874],[-126.80855925971613,57.607345310263305],[-126.80875884810035,57.60747638963015],[-126.8088444080466,57.607659741289254],[-126.80882250777647,57.607859447192716],[-126.80886803312922,57.608030710776454],[-126.8089903653157,57.60817123216562],[-126.8091095500671,57.60831177273122],[-126.80918723039723,57.6084200527532],[-126.80925732966926,57.608516046052145],[-126.8093269099565,57.60858849748345],[-126.80941532330532,57.60865971237235],[-126.80950903376703,57.608734258343425],[-126.8096211760411,57.608838963537735],[-126.80985458087221,57.60898440986834],[-126.81000457400897,57.60904739876457],[-126.81026777736585,57.609068209487205],[-126.81042981218269,57.609058246613756],[-126.81066907797738,57.60903659799941],[-126.8108718693411,57.60902302104765],[-126.81103212224343,57.60902764386247],[-126.81123252545481,57.60904883796599],[-126.81139768505115,57.609087065992576],[-126.81157837921988,57.609165561363916],[-126.81185253848238,57.609209846718905],[-126.8121969102619,57.60915951994841],[-126.8125436387953,57.60912151090793],[-126.81284955720625,57.60913308438688],[-126.81319139954068,57.60916013286102],[-126.81350386316201,57.60918399768361],[-126.81365802216463,57.60919650317456],[-126.81381254957854,57.60922694530337],[-126.8139807165447,57.60925842445737],[-126.81417407639739,57.6092931118107],[-126.81431931324886,57.609329216542875],[-126.81454431518065,57.609374920361],[-126.81485300433042,57.609417865558555],[-126.81506168881867,57.60943451806795],[-126.81525327223402,57.60943557901384],[-126.81541960725578,57.60943006827422],[-126.81558062807109,57.609421226533335],[-126.81574619740331,57.6094291744271],[-126.81608645847848,57.609431558953176],[-126.816451687797,57.60942594003495],[-126.8167321029527,57.60941972297609],[-126.81696656050052,57.60941827414107],[-126.81714977040349,57.609419384089634],[-126.81751999391238,57.60954827459708],[-126.81782660353926,57.60964055828258],[-126.81807668378569,57.60968385859206],[-126.81832866439164,57.609718177115916],[-126.81851798902268,57.609759610315166],[-126.81865398937848,57.609803615890094],[-126.81881536038847,57.609859797315394],[-126.81898322257202,57.6099249078891],[-126.81913958747319,57.609991210698],[-126.81926645142302,57.610048726613535],[-126.8194197415411,57.61011841174578],[-126.81958923880806,57.61016220874097],[-126.81976898124117,57.61014763985343],[-126.82006778109832,57.61011999902728],[-126.82028266244888,57.610133241314685],[-126.82037649984466,57.610260475217856],[-126.82044483425412,57.6105156836268],[-126.82059252117348,57.610713218521994],[-126.8207893715179,57.61081178281666],[-126.82097182262123,57.61087343679721],[-126.82119701173622,57.61092697667242],[-126.82137612117236,57.61097968129982],[-126.8215665001828,57.61106931512303],[-126.82176698288285,57.61114206793243],[-126.82195472849828,57.611158839828214],[-126.82211293937385,57.61116458317684],[-126.82230970081102,57.61116223816153],[-126.82252629311907,57.61115752707036],[-126.8227664655375,57.611177335185495],[-126.82290684079005,57.61123027884793],[-126.82304735488462,57.61128882748513],[-126.82318878605369,57.611341764284404],[-126.82337115381198,57.611400051952245],[-126.82362737095002,57.61148366680869],[-126.8239610896696,57.61161725200951],[-126.82425961131433,57.61176899502294],[-126.82450974085879,57.61190982725676],[-126.82465689597822,57.61193693929651],[-126.82492158055312,57.61197677219324],[-126.82510112846826,57.61200143920724],[-126.82541196888606,57.61204546783034],[-126.82573546880005,57.61209390144599],[-126.82602133507083,57.612144811832074],[-126.82641120638154,57.61221188944207],[-126.82676399388393,57.61225901627492],[-126.82694125515913,57.61227472552573],[-126.82709540670008,57.61228609433613],[-126.82735434024322,57.612302413219204],[-126.82763644194281,57.61232419254341],[-126.82781054748371,57.61233879919208],[-126.82796157536477,57.61235130775541],[-126.82813358762562,57.612365927090956],[-126.82839237516566,57.61237551767043],[-126.82865728862764,57.61237722095294],[-126.82887216125894,57.61238932826048],[-126.82921285884827,57.6124096156237],[-126.82957669158681,57.61243536292816],[-126.82986278627904,57.61244814286828],[-126.83002894381045,57.612434766520686],[-126.83032701049682,57.61242056150705],[-126.83068817894699,57.61246762527886],[-126.83102540555348,57.61256865615107],[-126.83128879440855,57.61264436292377],[-126.8315491308291,57.6128198751624],[-126.83173658593974,57.612965573090406],[-126.83190426036784,57.61311588005996],[-126.83194410984224,57.613214294909085],[-126.83200571228727,57.613302482050806],[-126.83210986793311,57.61342067374943],[-126.83221826850544,57.61354220226259],[-126.8323209518226,57.61364134268396],[-126.83235518341847,57.61372185362224],[-126.83242648806937,57.61382231274472],[-126.83253870869355,57.61392699898308],[-126.83268375914244,57.613952994276715],[-126.83265432500565,57.61404287576584],[-126.8327303108789,57.61416572930732],[-126.83294442818776,57.61438077233156],[-126.83325655295772,57.61438665383454],[-126.83344364787813,57.61446732220295],[-126.83364171286092,57.61457146638576],[-126.83383356403829,57.61467789188468],[-126.83396955840267,57.61472076096065],[-126.83418631539763,57.61476984754045],[-126.83447336712634,57.61482521730427],[-126.83468446315364,57.614855278369134],[-126.83493791879114,57.614906374434106],[-126.83514111027009,57.61495778754908],[-126.83544262285575,57.615004094263185],[-126.83564278268315,57.615012920068494],[-126.83581898955957,57.61497929129868],[-126.8359914618215,57.614966988762845],[-126.83617486398613,57.614927708003194],[-126.83644994178125,57.6148676653432],[-126.83668045877906,57.614828085778555],[-126.83690945894948,57.614815424281154],[-126.83733523033938,57.61479927384829],[-126.8375629191697,57.61477428629002],[-126.83773753314586,57.614764210306596],[-126.83789697338507,57.614777775525816],[-126.8381544962117,57.614823233651705],[-126.83834554015077,57.6148455675926],[-126.83854685422776,57.61485886649245],[-126.8387563446455,57.614863143587044],[-126.83902983238615,57.614873741429456],[-126.8393269631255,57.614911097489134],[-126.83953133553005,57.61492101186825],[-126.83970289203998,57.61491431631491],[-126.83996178623248,57.614880156783194],[-126.84029226748797,57.614910571561595],[-126.84052119801436,57.61494163118843],[-126.84075419192226,57.61496705856241],[-126.8410639449963,57.61500769407657],[-126.84143170619772,57.61506702015296],[-126.84160446759455,57.61506704168872],[-126.84176929287712,57.61513438577441],[-126.84190670167823,57.615192934624176],[-126.84206197356201,57.61525473317535],[-126.8423077397067,57.615336136706595],[-126.84262906249445,57.615426027884936],[-126.84279057603516,57.61543845282074],[-126.84302723829582,57.61544030754637],[-126.84319571425013,57.61543586952137],[-126.84338324116067,57.61544140059386],[-126.84370749887499,57.61547408901118],[-126.84400928387532,57.61553270781936],[-126.84422202092574,57.615588530988326],[-126.84444288366328,57.61563308986977],[-126.84470183929707,57.61564825367297],[-126.84488586045754,57.61563698694384],[-126.84496769546286,57.61573849362337],[-126.8449398523591,57.61585191331761],[-126.84514379810933,57.61584164009907],[-126.84553306731145,57.61578533324],[-126.84575963558062,57.61566279383688],[-126.84593906876262,57.615633615703544],[-126.84618696815731,57.61557596899161],[-126.8464227051647,57.61553633896707],[-126.84668316190803,57.61552570155292],[-126.84701621319759,57.61548320479513],[-126.84729823286528,57.615500458154166],[-126.8478616647808,57.615459846190504],[-126.84830080947098,57.61529333313532],[-126.84844633977711,57.615199339201645],[-126.84866720521238,57.615243891010216],[-126.84893660252811,57.61530494890947],[-126.84921778421163,57.61533117319497],[-126.84958284765176,57.61531649446208],[-126.84979395000839,57.6153454102632],[-126.85006438758134,57.615359368550195],[-126.85020411797186,57.6152407434136],[-126.85038786000193,57.61526422818446],[-126.8505455402178,57.61529236519684],[-126.85073240487036,57.61526761754659],[-126.85096319278975,57.61519437506347],[-126.85121822492484,57.61512882452113],[-126.8514069553702,57.615093973046825],[-126.85165385756125,57.61508565551939],[-126.85166659295702,57.615186482017926],[-126.85170997788295,57.61539362566547],[-126.85181503211258,57.6155487965195],[-126.85196308073292,57.615661084411116],[-126.85205283075625,57.61574123289619],[-126.85222948203032,57.61586791186617],[-126.85222294722908,57.6159498020941],[-126.85253273737487,57.61599041066678],[-126.85273729119886,57.616054121473525],[-126.85298950126324,57.616142191069954],[-126.85319993410711,57.61618792393134],[-126.85340814751638,57.616228064752136],[-126.85363137099614,57.616283805240776],[-126.85378236946752,57.61634001179463],[-126.8540028998338,57.61641595080078],[-126.85418964467851,57.61647865324359],[-126.85436161605261,57.61653696606785],[-126.85466843917779,57.61663140686584],[-126.85484113854088,57.61667513867109],[-126.85498069216713,57.61673478152231],[-126.85510336965264,57.616788927342],[-126.85537034768993,57.616881381841736],[-126.85555028435735,57.61692058108561],[-126.85583254577836,57.61699387522734],[-126.85606020097448,57.61710676467079],[-126.85616898442771,57.617194635768975],[-126.85634370589018,57.617234988940396],[-126.85648458886705,57.617167925026884],[-126.85671557996082,57.6171036407327],[-126.85707273961049,57.61715514393795],[-126.85711578238677,57.61725241010187],[-126.85718238438173,57.61751209888823],[-126.85718151395791,57.617843982597805],[-126.85709927210014,57.61823581807381],[-126.85701018065299,57.618601910183465],[-126.85699220274536,57.618918208149466],[-126.85704820491424,57.6193113902634],[-126.857111687973,57.619664160386876],[-126.85715432274122,57.61988252031362],[-126.85718128515455,57.6200101636929],[-126.85720993701531,57.62016582643653],[-126.85721009980638,57.620265613277795],[-126.85721662158461,57.62041469225256],[-126.8572308950197,57.62058278160843],[-126.85719918664542,57.62080162367511],[-126.85714171699304,57.62103857218525],[-126.85712864145253,57.62120123286671],[-126.85714611396077,57.62132557429027],[-126.85725279266318,57.62141233736502],[-126.85736353309176,57.621493467959006],[-126.8575221082751,57.621605682245175],[-126.8577190453574,57.621747920300216],[-126.8578183804122,57.62183360939037],[-126.85796925068702,57.62197614596393],[-126.8580622032086,57.62205739145216],[-126.85826867557256,57.62215808196092],[-126.85844809277609,57.62221970529884],[-126.85859620115697,57.62228601655898],[-126.85882515503572,57.62240786334107],[-126.85889177364953,57.62248255204192],[-126.85901032765102,57.62263090353606],[-126.85913241332715,57.62279605023482],[-126.85924453442955,57.62293771607691],[-126.85937162021514,57.623092739182475],[-126.85946672288907,57.623269273180654],[-126.85959261943128,57.62341757656753],[-126.85963898662845,57.62352266946517],[-126.85967132688246,57.623609914089215],[-126.85977110362329,57.62371465972874],[-126.85983714591266,57.623902594694506],[-126.85985903753681,57.624128938134824],[-126.8598898231265,57.624285708326184],[-126.85988882708374,57.62437989704063],[-126.85983005444238,57.62446661293093],[-126.85975004718132,57.624587103380925],[-126.85966333245976,57.62478051653475],[-126.85958161514415,57.624963806217096],[-126.85951238228692,57.62509768114421],[-126.85943282167553,57.62523722925976],[-126.85936550406313,57.625363243163534],[-126.85931770835812,57.625472311916525],[-126.85924362769738,57.62562303653058],[-126.85917175573182,57.625732261687766],[-126.85910276220564,57.62583025592925],[-126.85903046605713,57.62592154428325],[-126.8588967811123,57.6260760195789],[-126.8587626464105,57.62621143695455],[-126.85866047257116,57.62632422230585],[-126.85853589586377,57.62646518350609],[-126.85842469676528,57.62664193677984],[-126.85856928287987,57.62669033180872],[-126.85878619101084,57.62674162070712],[-126.85905946834986,57.62678469455717],[-126.85920626048423,57.62683868067247],[-126.85921402127681,57.62694963099492],[-126.8592076134523,57.627083097780606],[-126.85946048812922,57.627195819029104],[-126.86010894956597,57.62729587658803],[-126.86070877732672,57.62737494434549],[-126.8609452745587,57.62741264763869],[-126.86109448290141,57.627434100596005],[-126.86141903691065,57.627474593319846],[-126.86175629396467,57.627521729802],[-126.86191932889737,57.627552061504836],[-126.8620594114127,57.62758702751161],[-126.86221003376386,57.627624167098666],[-126.86238117504882,57.62764323317893],[-126.86257234893124,57.62766777448499],[-126.86292747068548,57.627717033929876],[-126.863172008952,57.6277389837147],[-126.86335548755436,57.627747877025016],[-126.86357338712915,57.6277957880672],[-126.86384148432008,57.62784112843228],[-126.86405297220539,57.62779153430026],[-126.864221697933,57.62784200799928],[-126.86438916395151,57.62788351994856],[-126.86463750244549,57.62793459396668],[-126.86486753598955,57.627963362798546],[-126.86517264364045,57.62797818545439],[-126.8653697201128,57.62798586580259],[-126.86558458166279,57.62799230823098],[-126.86584126289996,57.62799623407621],[-126.86603407397203,57.628000577695595],[-126.86621434443431,57.628006124396755],[-126.86637995428444,57.62801176689733],[-126.86656260564165,57.6279836608603],[-126.86687711281067,57.62790535655341],[-126.86715958371825,57.62784632234097],[-126.86731780045213,57.62798655881369],[-126.86750413668696,57.62802794309367],[-126.86776825977348,57.62803630127583],[-126.86801682082434,57.62805148840937],[-126.86823832597884,57.62807358004319],[-126.86840316347974,57.62809155853457],[-126.86860060098154,57.62811492882483],[-126.8689177786902,57.6281532092639],[-126.86918119845531,57.62817614515184],[-126.86936183031463,57.62819738231843],[-126.86950202498535,57.62823682467839],[-126.86981897300899,57.62826501347521],[-126.87018468473445,57.62827269864795],[-126.87050124723629,57.62828407000313],[-126.87073719311293,57.62829709263466],[-126.87092909629656,57.62830704122725],[-126.87132501572603,57.628353767136865],[-126.87165031789151,57.628380775298204],[-126.87210772257045,57.62841363893402],[-126.87248556656137,57.62844814712411],[-126.87273158977041,57.628443160145515],[-126.87291584550796,57.628439701644126],[-126.87307983437415,57.628420679548995],[-126.8732677361898,57.62839365078298],[-126.87358096063284,57.62839606703059],[-126.87400687357847,57.628425768454804],[-126.87429962905827,57.62844962153502],[-126.87447281890232,57.628511265026596],[-126.87464088517763,57.628577427081204],[-126.87497289487992,57.62866829254129],[-126.87530345297961,57.62874122719816],[-126.8754569671267,57.62876712046697],[-126.8757499266837,57.628753968598005],[-126.8759940664818,57.62871310883689],[-126.8762042598763,57.628744231923676],[-126.87641541304863,57.62881683364308],[-126.87664046798467,57.62881085713214],[-126.87685763918155,57.628781386783096],[-126.87702242364861,57.62875114226471],[-126.8773154090382,57.628694258974974],[-126.87754379512249,57.62865125839682],[-126.87771088063687,57.628629967548676],[-126.87789829604033,57.62862760236344],[-126.87824942997989,57.628638725716534],[-126.87849486594054,57.62865391397316],[-126.87877210828962,57.62868570881347],[-126.87898137826096,57.62872243976293],[-126.87913083606611,57.62875396187014],[-126.87931173641753,57.628786395984285],[-126.87952224521403,57.628830966431],[-126.87978982455196,57.6288975814175],[-126.88012494734707,57.6289861709103],[-126.88041601044063,57.62907168921176],[-126.88057235336221,57.62912895208277],[-126.88081237012646,57.62918117262054],[-126.88097304628259,57.62919916325029],[-126.88112816526456,57.62920373599485],[-126.88131364530632,57.62920810623853],[-126.88150031139617,57.62921807444908],[-126.88175415627155,57.629234321877455],[-126.88202016987113,57.62932336739299],[-126.88220702467851,57.62938603100833],[-126.88235954819275,57.629459014463386],[-126.88248062930124,57.62953108633266],[-126.88257968452014,57.62960218386117],[-126.88274441664717,57.62970423733028],[-126.88299391522158,57.62980348223961],[-126.88320702498912,57.629869332885704],[-126.88336293109157,57.62990753460013],[-126.88346557341458,57.63004251752308],[-126.88370033349375,57.63022819415564],[-126.88405055912908,57.63024491444313],[-126.8843098581862,57.63022524128002],[-126.88449007134044,57.63027224899239],[-126.8846533289455,57.63031152128286],[-126.88486597318314,57.63035719033042],[-126.88506623421091,57.63041079050961],[-126.88547733680817,57.630612102342404],[-126.8859392201829,57.630879225324506],[-126.88621174855211,57.63097718888231],[-126.88642080885784,57.63095896944425],[-126.88679760937268,57.630992322848826],[-126.88708035675387,57.63103415465641],[-126.88726417195184,57.631056467464965],[-126.88744559447763,57.631065341320465],[-126.88763015052353,57.631074193897554],[-126.88761430830134,57.63115839243904],[-126.88757324438328,57.63137282290253],[-126.88752048441266,57.63157948326836],[-126.88747395838688,57.63169528217118],[-126.8874064767453,57.6318101004416],[-126.8872609587622,57.63199271603343],[-126.88704680667983,57.6321959739661],[-126.88679954760899,57.63237254401763],[-126.886827637513,57.632454205524695],[-126.88666792605129,57.63252255014899],[-126.88655792235241,57.632700442037326],[-126.88657525430052,57.63285954068138],[-126.88670042296403,57.632970824739346],[-126.88676425337866,57.633057852856226],[-126.88688523875027,57.63325886334615],[-126.88688804084238,57.63342366562831],[-126.88676380369779,57.633486166372876],[-126.88671713234287,57.633595238766056],[-126.88672794514437,57.63374429014428],[-126.88657462116417,57.63390677538772],[-126.88623070690372,57.63416135743621],[-126.88600362356377,57.63448467251484],[-126.88587482985339,57.63471090298137],[-126.88566759251837,57.634852444908674],[-126.88553001263625,57.63492736743763],[-126.88520803232377,57.63508985898397],[-126.88497339301088,57.63526970515813],[-126.88480520012486,57.6354692886771],[-126.88467875291776,57.635617016057054],[-126.8845883620061,57.63569386447676],[-126.88447779056459,57.635758514208185],[-126.88428526903891,57.635813620624766],[-126.88410097492319,57.635996492437975],[-126.88389335319329,57.63630173442498],[-126.88381298614956,57.63644915312646],[-126.88369959777557,57.636618095860584],[-126.88372669207487,57.63688140500701],[-126.88377598638365,57.63706383696843],[-126.8837709284359,57.6372062676221],[-126.88370413186247,57.63735135322888],[-126.88362062096482,57.63745394352271],[-126.88355187852082,57.63756092006911],[-126.88349747630848,57.63769919540885],[-126.8833243372959,57.637776595708836],[-126.88291272129035,57.63796098387665],[-126.88259360291023,57.63811335904649],[-126.88244167068784,57.63820182906163],[-126.88230334650649,57.6382902081423],[-126.88204908809165,57.63843878568309],[-126.88191552133944,57.63850695039222],[-126.88174357107292,57.63859106812775],[-126.88157782666636,57.638671780574846],[-126.881400358924,57.63874360103717],[-126.8812567971574,57.63878716448115],[-126.8810431793117,57.638881650012955],[-126.88083927569217,57.63889870520409],[-126.88061890211219,57.63897305277758],[-126.88046336799397,57.63904248349549],[-126.88031647379415,57.63912306890092],[-126.88014997143303,57.63921611820979],[-126.87994225462594,57.63933971485839],[-126.87970877379749,57.639481422308045],[-126.87955988540007,57.63956650509309],[-126.87944399609192,57.63962894360192],[-126.87928992938893,57.6397163029861],[-126.87910408313961,57.63983414678366],[-126.87892470293052,57.63995979602511],[-126.87876800290076,57.64006959705122],[-126.87858026626498,57.64019642258525],[-126.8784423677655,57.6403038558933],[-126.87831825997026,57.640419046165086],[-126.87809982211999,57.64062231902669],[-126.87789289651245,57.64082551515525],[-126.87772132554521,57.64101726404046],[-126.87763903733506,57.641128812540146],[-126.87755244532103,57.64123478335513],[-126.87747175781587,57.64132501762161],[-126.87736171182227,57.64145917484721],[-126.8772560370544,57.64160115167635],[-126.87718134717757,57.64172386193557],[-126.87708824104058,57.64191060487082],[-126.87699627701049,57.64210182515194],[-126.87694520409644,57.64220419645938],[-126.87686999188685,57.64234933484404],[-126.87681653765222,57.642439388272095],[-126.8766914812175,57.64260391799047],[-126.87653657983726,57.64279219138084],[-126.87644781709214,57.64289593349463],[-126.87631240547397,57.64297531727868],[-126.85902834659046,57.64735610792356],[-126.85848264577614,57.64787542062842],[-126.85098780122547,57.654996641808914],[-126.8489706182728,57.65562179871177],[-126.84515364817867,57.65680672085013],[-126.84733306933761,57.660896563409025],[-126.84733768830809,57.66091559514125],[-126.84736199027574,57.66101747359666],[-126.84743403781904,57.66123902048559],[-126.84750258454399,57.661397799599044],[-126.84757236030103,57.6614713555507],[-126.84763124517458,57.66152591990277],[-126.84765071377801,57.661552705316836],[-126.8476585442738,57.66157508024586],[-126.84765461732277,57.66163341059441],[-126.84764384712135,57.66171420984904],[-126.84765785542453,57.661778031617395],[-126.84768848102553,57.66188211211586],[-126.84772935170615,57.6620220071408],[-126.84776545482748,57.66208905117164],[-126.84781316491657,57.66211341318491],[-126.84786829573977,57.662141091411364],[-126.8478885200458,57.66215441691457],[-126.84791809389792,57.66216431875896],[-126.84797196745791,57.662183034962254],[-126.84799752458173,57.66220081130376],[-126.84796185252786,57.662245890016635],[-126.84788329666048,57.662342821142],[-126.84782638323509,57.66242279478257],[-126.84780442871676,57.662472270614344],[-126.84779740134881,57.66248577068237],[-126.84777711625654,57.66251617448701],[-126.8477405879456,57.66257022867328],[-126.84772020234624,57.66259614809511],[-126.84775331424656,57.66262396740218],[-126.8478293984397,57.662697482917324],[-126.84792663014258,57.662779832969136],[-126.8480140001728,57.66288915626462],[-126.84804558374249,57.66298874564275],[-126.84804323451782,57.66302464086664],[-126.84803441217122,57.66305160751956],[-126.84801756443011,57.663095444420165],[-126.84800864159699,57.66311792669463],[-126.84805109558337,57.66314120107257],[-126.84814648537898,57.6631876826282],[-126.84821020430104,57.66322427576825],[-126.84823023669836,57.66322975367746],[-126.84826096851519,57.66324413306357],[-126.84834848567104,57.66326711856135],[-126.84843624583525,57.66330019374679],[-126.84847440710013,57.66331901048771],[-126.84848728666944,57.66333238299911],[-126.84851276942706,57.66334679597608],[-126.84854507843855,57.663338740071765],[-126.84860031210371,57.663370902404395],[-126.84862633842218,57.66345595100062],[-126.84862527246247,57.6635019293311],[-126.84864548099115,57.663515254843375],[-126.84868919344318,57.66354749101109],[-126.8486970249653,57.663569865920785],[-126.84870151927878,57.66358329217847],[-126.84868021966477,57.66361482391466],[-126.84864126850708,57.66365431761021],[-126.8486116671141,57.66369038758595],[-126.84859557475554,57.66372076467111],[-126.84858675264017,57.66374773137846],[-126.84858839556931,57.66377463099723],[-126.84863121823267,57.66386069320459],[-126.84866505041977,57.66401408844048],[-126.84864785751206,57.66413529438616],[-126.84868283229434,57.66419898178733],[-126.84879041679362,57.6643216302303],[-126.84882485334987,57.664501931794284],[-126.84881094860026,57.66458275147325],[-126.84881784113992,57.664609617449486],[-126.84883175194034,57.664668954883325],[-126.84883874506474,57.664700305245105],[-126.84880937009224,57.664699372351855],[-126.84874968923728,57.66470311880122],[-126.84870793684091,57.66471123530563],[-126.84869136657525,57.664720311603844],[-126.84864791985599,57.664746379069605],[-126.84861485465315,57.66476789493846],[-126.84859335324953,57.66479045792571],[-126.84853583453135,57.66484352574345],[-126.84842792472048,57.66494064556522],[-126.84841253521454,57.665002413366636],[-126.84843582212605,57.665012355431486],[-126.848480374935,57.66503561627646],[-126.84850014748955,57.665075854813324],[-126.84849117301262,57.66514318780123],[-126.84848419443529,57.66520602296797],[-126.84847501887369,57.6652643871885],[-126.84837311233673,57.66534801342107],[-126.84813031403355,57.66546057380294],[-126.84790365628614,57.66559209174577],[-126.84778619144168,57.66568366600042],[-126.84771599096351,57.66573232967612],[-126.8476542766298,57.66578542400892],[-126.84759980777916,57.66583398688897],[-126.84760010901084,57.66584744005995],[-126.8475551661964,57.66590042696171],[-126.84744221880467,57.66600654836266],[-126.8473508740694,57.666094591259395],[-126.84732838980939,57.66612052412671],[-126.84732595610332,57.66615193494467],[-126.84732326878705,57.666219227663426],[-126.84732187493596,57.66625063182829],[-126.8473012110331,57.666264219196464],[-126.84727330133606,57.66628233797299],[-126.8472599584615,57.66629475721836],[-126.84724558403146,57.666308304323316],[-126.84721271739926,57.66633878865899],[-126.84719834293561,57.66635233575955],[-126.84719758738792,57.66636579570036],[-126.84718581123356,57.6664017513473],[-126.8471637532099,57.666446742865254],[-126.84712196223477,57.66649970947107],[-126.84701275029704,57.66663271685896],[-126.84683562284373,57.66682222160338],[-126.8467615369543,57.666978550552194],[-126.8468438005202,57.667047542415716],[-126.84692917058156,57.667067178941636],[-126.8469761224528,57.66710388011341],[-126.84699030722297,57.66717554997059],[-126.84686668252296,57.66722679756408],[-126.84663492100985,57.66722379494766],[-126.84652352768269,57.66721217345606],[-126.84648290021285,57.66727073874512],[-126.84639760217142,57.66739462270182],[-126.84634906429712,57.66747454246943],[-126.84634421554715,57.667492513625696],[-126.8463346350711,57.667532940229876],[-126.84619416086508,57.667673995714736],[-126.84594495920226,57.66787629393802],[-126.84582156397788,57.66803181630212],[-126.84581962992631,57.66808564915476],[-126.84581697765836,57.66810809130785],[-126.8458101566333,57.66822474597378],[-126.84583156412903,57.66843204241202],[-126.84584835269277,57.668620306964826],[-126.84578014832667,57.66875865782555],[-126.84570559131299,57.66884771375659],[-126.84565750569521,57.66890072020131],[-126.84561015933367,57.66894026677359],[-126.84557393537322,57.6689618021099],[-126.84553553131532,57.668978866315456],[-126.84548978054069,57.66899597742997],[-126.84541631743258,57.66904017577196],[-126.84531219716196,57.66911932892966],[-126.84524638074365,57.669176933490874],[-126.84523521621638,57.66919382369309],[-126.84517664615096,57.66924689691144],[-126.84506911564841,57.66936195202726],[-126.84502582253505,57.66944183794565],[-126.8450432217133,57.66946975842807],[-126.84505849920363,57.66949657119068],[-126.84507893495066,57.66951998724043],[-126.84509516909291,57.669542308846744],[-126.84510519654324,57.66956915511937],[-126.84508972464103,57.66962755949823],[-126.84505933682932,57.669721939471074],[-126.84504298326401,57.66978819831386],[-126.84503815037118,57.66980616935448],[-126.8449941002826,57.66989951526937],[-126.84491355480742,57.67009625022294],[-126.84488336638066,57.67019959901884],[-126.84490148044429,57.67021293856763],[-126.84493840673208,57.67022279426581],[-126.84496985759199,57.67022259353811],[-126.84499608328322,57.67022354741551],[-126.8450362464244,57.67023786747713],[-126.84510512428491,57.67026994443304],[-126.84520166854385,57.670320906196054],[-126.84528489313568,57.67038540808838],[-126.84533550179006,57.670444511880554],[-126.84535593822025,57.67046792790856],[-126.84537636640972,57.67049022272379],[-126.84543433059844,57.67055040078058],[-126.84549866033802,57.670613901953246],[-126.84553267922477,57.670682081737596],[-126.84552359796224,57.670744930468004],[-126.8455115183266,57.67076743287641],[-126.8454816997737,57.67079341235826],[-126.84542301063874,57.670842001459846],[-126.84539003843994,57.67086800106037],[-126.84541123140603,57.67087795710106],[-126.84545147052573,57.670895640355695],[-126.84547172370156,57.67091008744172],[-126.84552830633433,57.67095569788538],[-126.8456421149857,57.671074946186124],[-126.84573932549146,57.67120214928329],[-126.84581047331274,57.67128915333804],[-126.84592111403666,57.67131311426013],[-126.8461643660408,57.67131268106807],[-126.84642838530513,57.67130314454989],[-126.84652804934774,57.67130587112939],[-126.84655560843628,57.67131915008125],[-126.84661410593078,57.67135577773502],[-126.84664169016378,57.67137017777333],[-126.84665886571433,57.671388008161614],[-126.84669438226939,57.67142926779975],[-126.84671158295163,57.67144821928596],[-126.84669548576987,57.67147859636273],[-126.84666563891257,57.67155054814206],[-126.84665006829493,57.671604468397206],[-126.84664932922182,57.67161792829442],[-126.84666544810038,57.67163576544411],[-126.84670108198902,57.67168150939871],[-126.84673606046854,57.67174519776817],[-126.84675813213681,57.671794392242816],[-126.8467208125089,57.67186078552543],[-126.84666049120189,57.67197666153867],[-126.84668548735878,57.67206283907045],[-126.84672271688531,57.67208614754054],[-126.8467021248221,57.67210309820342],[-126.84668006290089,57.67214808988326],[-126.84667601625233,57.6722019364744],[-126.84666254221756,57.672255843355074],[-126.84661180151754,57.67233129257685],[-126.84650408279312,57.67243738024838],[-126.84640033982174,57.67253447230127],[-126.84636167795094,57.672587418918425],[-126.8463577850858,57.67260089898642],[-126.84638622637469,57.67260632349914],[-126.84648217654082,57.672630377920584],[-126.84656677803245,57.672662353695735],[-126.84654577244235,57.67270733861963],[-126.84648005195851,57.67276942841028],[-126.84645910465142,57.672817776747756],[-126.8464608635312,57.672849160937126],[-126.84645727155586,57.672876094274464],[-126.84645502050483,57.67291647422656],[-126.8464554096415,57.672980383879775],[-126.84647269546947,57.673096885003694],[-126.84650063769072,57.67326826003982],[-126.84650713839304,57.67337137495301],[-126.84649831254022,57.67339834176722],[-126.84647465420687,57.67346576899157],[-126.84643330206707,57.673586008846414],[-126.8464129439018,57.67370723575986],[-126.84641429403858,57.673814868711574],[-126.84641465804283,57.67387765731302],[-126.84639553117191,57.67391366011605],[-126.84631716441181,57.67401956012513],[-126.8462037340644,57.67415259459843],[-126.84611468102332,57.674249592665454],[-126.84601901915654,57.674333177702394],[-126.84593492357202,57.6744178100449],[-126.8458682592523,57.674484390705786],[-126.84574267466614,57.674589470788554],[-126.84557029990991,57.67471278985481],[-126.84550215176391,57.674760318272895],[-126.8454268359657,57.67476864806472],[-126.84527797572916,57.67477071973517],[-126.84508645585593,57.674834733225225],[-126.84488700899601,57.67496607306686],[-126.84477256978371,57.675054262117804],[-126.84474484433929,57.67508022816017],[-126.84471755840451,57.6750792809711],[-126.84461050563642,57.6751225720587],[-126.84440390363281,57.675168740488516],[-126.84419266353633,57.67514766211142],[-126.84407379974408,57.67513160088685],[-126.84400936791552,57.67515780076472],[-126.84399066994919,57.67516576882296],[-126.84393168889346,57.67520090405939],[-126.843845929878,57.675258635282255],[-126.84378816362981,57.67530161158738],[-126.84372842521356,57.675350206773494],[-126.84364288225991,57.675416906633835],[-126.84359866277508,57.67545643274235],[-126.84357882449572,57.67545992293731],[-126.84349531872103,57.675477273944686],[-126.84338544186882,57.675488065267366],[-126.84330708694696,57.675500898275715],[-126.84321297097185,57.67551271034112],[-126.84300783782763,57.67553083553783],[-126.84272910907359,57.67554045870075],[-126.84265860090825,57.67552969476124],[-126.84197145573032,57.68169208528309],[-126.84642342306662,57.68589764790492],[-126.85445884554684,57.68796303166427],[-126.86132634612038,57.69020597301933],[-126.86630017008143,57.6938334263937],[-126.87297417974689,57.697162467646365],[-126.88377525797439,57.69864273295929],[-126.89166754874525,57.69870646616307],[-126.89348343350055,57.69881981820064],[-126.90137577744508,57.69888297312128],[-126.90672457075725,57.699644844062576],[-126.91770792066322,57.69964098501333],[-126.92996836135342,57.699510641145956],[-126.93223297577956,57.70075059503003],[-126.93175611383248,57.70337333822553],[-126.93356465243878,57.708106026025874],[-126.93672341704516,57.71105299817011],[-126.9425944913628,57.71616051036088],[-126.9470906074885,57.721726164646974],[-126.94892258833403,57.72736462502619],[-126.94893280106785,57.72793868054682],[-126.94706543928272,57.73513763553553],[-126.94697091146654,57.74062846797187],[-126.94793289297473,57.74547484846903],[-126.94847107893841,57.75054855127466],[-126.95161738092126,57.75281361747386],[-126.95599642101601,57.752782134714536],[-126.96637676689238,57.7537385949421],[-126.97208645119164,57.7558768445478],[-126.97333210809246,57.759070381430256],[-126.97396470971007,57.76334495241089],[-126.97520089987832,57.77075501470497],[-126.97839300010789,57.7749031338923],[-126.98086577730963,57.78019586655324],[-126.9781049168145,57.78569769753126],[-126.96995422037915,57.78922939027641],[-126.95572778131996,57.79349524123354],[-126.94124161716714,57.796038903574875],[-126.93214428373456,57.79563655432506],[-126.9206763281814,57.79434393650617],[-126.90603602466611,57.794650959965466],[-126.89259778613241,57.79632986967173],[-126.8793625133619,57.79737808254279],[-126.86734338260574,57.80065088089219],[-126.864631155146,57.80419427709238],[-126.8638419715713,57.807455997392324],[-126.86386462599378,57.80872080789597],[-126.8689827149842,57.81330768437552],[-126.87107062490391,57.81598543389933],[-126.87306573025617,57.819507085340554],[-126.87280409764413,57.82271161621053],[-126.87132805879938,57.8235735917776],[-126.86945556840192,57.82637598854513],[-126.86741521679325,57.83141337339206],[-126.86922679408131,57.83631796228427],[-126.87316153685606,57.84046398245955],[-126.87736977223682,57.842158838681776],[-126.88264149983297,57.84337101328346],[-126.88435943105216,57.843592863038815],[-126.88951801279951,57.84459020115619],[-126.8917025549668,57.84680952781823],[-126.89078806465811,57.849211109848774],[-126.88644146631633,57.851456173949636],[-126.8819951128143,57.85382736403674],[-126.87661815640834,57.85802581820449],[-126.87520522883001,57.86243131471349],[-126.87645433336539,57.86602080797112],[-126.88017063105588,57.86976447411762],[-126.8850428697419,57.87219943980034],[-126.89120764987786,57.87501138315369],[-126.89534935492874,57.87841088956504],[-126.89735685885526,57.88217459942512],[-126.89765943679407,57.886506073957605],[-126.89912938069307,57.89021061140608],[-126.90293546304565,57.892930332149],[-126.90810131624471,57.89392699979645],[-126.9146413209347,57.89377456820995],[-126.91667201849843,57.89352732588056],[-126.92287849721039,57.89298200794562],[-126.92875024188913,57.89294117884732],[-126.93059781408398,57.892928278205176],[-126.93318801001529,57.892919121244326],[-126.93488372461466,57.892907225380064],[-126.93926631813822,57.892364963473746],[-126.94482122524667,57.89130282579111],[-126.95512868135913,57.88735327958257],[-126.9622423221096,57.884278419364655],[-126.96856472068754,57.879387591680874],[-126.97305901628853,57.8743932181642],[-126.97501070714023,57.87061962326584],[-126.97784619597344,57.86814046780559],[-126.9806382446919,57.863723615311024],[-126.98202358034024,57.858689071991776],[-126.98663881331771,57.85449192519099],[-126.99247561301627,57.852232428678086],[-126.99927142564937,57.84973220358621],[-127.00101726365945,57.8465250700232],[-126.9936547467613,57.84309022468669],[-126.99259590750222,57.83904285928638],[-127.00040715880603,57.83413953458597],[-127.00141747555352,57.83173646121718],[-127.00030410972577,57.8251775276319],[-127.00416804949198,57.82126364402915],[-127.00897698470104,57.82094909886407],[-127.01368449828345,57.82097607736394],[-127.01860293031426,57.820821838588],[-127.02382260030194,57.81993838846323],[-127.02678417224257,57.81848006616666],[-127.02783908667232,57.817790061864265],[-127.03174632628895,57.815705265061226],[-127.03941443202416,57.81429077902626],[-127.04883118112805,57.814387245029586],[-127.05588567480487,57.81416988307605],[-127.06067081921144,57.81305516522392],[-127.06972811793446,57.81161885183635],[-127.07518142774335,57.81152100366722],[-127.08288353535187,57.81152125480229],[-127.09226336294745,57.81025123175831],[-127.09778093801103,57.808608784016066],[-127.09948314294563,57.80819097903614],[-127.10411849864228,57.80547895658299],[-127.11061674191893,57.804518642286624],[-127.1229793453221,57.80293436952466],[-127.13564677782779,57.800673452562584],[-127.14954506480215,57.80056286894255],[-127.15039922402988,57.80055547386898],[-127.15660995709425,57.80085143782835],[-127.1637288575698,57.80302324153417],[-127.1667869919519,57.80497022081174],[-127.1662663547529,57.80593141707703],[-127.1687365862537,57.80594335190999],[-127.1734911995487,57.80790777461671],[-127.17760740346723,57.80970162167756],[-127.1806412657888,57.81110123287755],[-127.18794343291795,57.81206791828921],[-127.19962705049393,57.812779392013226],[-127.20550757091426,57.81284280380245],[-127.21962855801016,57.81283954096741],[-127.22470692116757,57.81445265814572],[-127.22941040370189,57.81795319728697],[-127.2351565557748,57.82047491193393],[-127.24170134261374,57.82110477669638],[-127.24277275716577,57.82109476155342],[-127.24768002303577,57.82059119923353],[-127.25419208572504,57.82019792919389],[-127.26033759001267,57.821629172452724],[-127.26246917983272,57.824856886204536],[-127.26086176993012,57.82829954611814],[-127.25760343701553,57.83021459162816],[-127.25318832826032,57.83288516829995],[-127.25006349682424,57.83570497501306],[-127.2500556733743,57.8389620032229],[-127.25214908464858,57.84094313939048],[-127.25424736019372,57.84303187142046],[-127.2562774771824,57.846323524800766],[-127.25697673033088,57.84821010030071],[-127.26057734519011,57.85040118849238],[-127.26829493055786,57.85067774007464],[-127.27654190745226,57.85071547946742],[-127.28560981628013,57.84961423640572],[-127.29174910199629,57.85081090160455],[-127.29499098034653,57.85500545505634],[-127.29150548106779,57.85658263032875],[-127.28642367877177,57.85845331203762],[-127.28341940444618,57.861739389780254],[-127.28332886315037,57.86567028092228],[-127.28415447633019,57.8681208273325],[-127.28426701707703,57.868299194831536],[-127.28557059907916,57.872333297621324],[-127.28437184806226,57.87508155840851],[-127.28311877939066,57.876179349417676],[-127.27822866950282,57.87741978461722],[-127.27559582941302,57.878880687446184],[-127.27526261576247,57.88196154376022],[-127.27312808205734,57.88569671952979],[-127.26717353754417,57.887287888985206],[-127.26574747344154,57.88976001224263],[-127.26885244663322,57.89304144170914],[-127.27144213275231,57.8970724889848],[-127.27382404815192,57.90127598207408],[-127.27117911602849,57.90586850544525],[-127.27054582380454,57.9062693608114],[-127.26563268083399,57.910309132964805],[-127.26153095542831,57.913084821073404],[-127.25768406886051,57.91712318297631],[-127.258143130174,57.92150669507971],[-127.26021852943256,57.92623387664462],[-127.2618391099706,57.930103932790495],[-127.26397048618155,57.933107712934834],[-127.27066820615013,57.934416932996214],[-127.2759852809201,57.93625949891643],[-127.28229079961197,57.938828169501704],[-127.28909473326108,57.940198279244946],[-127.2943918534,57.941349380283086],[-127.302381358555,57.942707307142506],[-127.30931787310558,57.941383076996644],[-127.31520966440146,57.93768186613458],[-127.31603825678616,57.93670455993381],[-127.32172581168406,57.93339093747036],[-127.32795200045297,57.93333801781163],[-127.3362504755382,57.93445751048814],[-127.34526767826321,57.93442961179097],[-127.35387352989875,57.93177605988091],[-127.3532033050993,57.927735853663584],[-127.3526792549004,57.92162133394027],[-127.35713891802575,57.91701752804254],[-127.35850180454212,57.916088359041886],[-127.36514830097428,57.91271823591097],[-127.37694469152346,57.91255194906259],[-127.38226539109277,57.91448892258044],[-127.38727912357136,57.916787825567255],[-127.3926286410698,57.91941505867668],[-127.39566574127659,57.92041522133802],[-127.40449727467208,57.92135435953884],[-127.41481946036126,57.921945077316565],[-127.42552996648186,57.92143607451101],[-127.43346742139936,57.921297067954086],[-127.43775687797036,57.92125084700399],[-127.44737277461257,57.92006990028436],[-127.45522695338117,57.917705051592485],[-127.46318672822902,57.915230892347395],[-127.47257697874929,57.913871115392155],[-127.4787464261455,57.91535520100712],[-127.48592643559017,57.91801226110876],[-127.49266947195473,57.92051232311042],[-127.49963902285951,57.92324282814501],[-127.50278370196887,57.926985348969566],[-127.50128934170438,57.930017387293894],[-127.50150821387588,57.93303909792381],[-127.50394097387363,57.93495899111624],[-127.50691560708476,57.9369804076978],[-127.511537742554,57.940015093493926],[-127.51617686524727,57.943399428740136],[-127.52091955946192,57.946764494559076],[-127.52213607486067,57.947665960580466],[-127.52556771641314,57.950381768789214],[-127.52985658384488,57.95301587653849],[-127.53359085361559,57.955198559483286],[-127.53924214138954,57.95691032558574],[-127.54604042338039,57.95774704607869],[-127.54915999612551,57.957827506469584],[-127.5547896772622,57.95896453184502],[-127.55920656407099,57.96206292386613],[-127.55853652271112,57.964125864451375],[-127.55665772873682,57.96551189736805],[-127.55580234205746,57.968438526406864],[-127.55667624234897,57.971569347520536],[-127.56133879803436,57.97540076325674],[-127.56662510515373,57.975913154029264],[-127.57394230795494,57.976168057885616],[-127.57480406067027,57.9762207096552],[-127.5783553056645,57.97629541144761],[-127.58969015496417,57.977596750584894],[-127.59343141056084,57.979777801575466],[-127.59393392899784,57.98160260580732],[-127.5925040742837,57.983441513618615],[-127.58790856017693,57.98407065102431],[-127.5824407583243,57.98453048486605],[-127.57828682734447,57.985432261656825],[-127.57503348447453,57.98746304897031],[-127.57298500277848,57.99006290882967],[-127.57168250494144,57.99247446696552],[-127.56974862179499,57.995297301092194],[-127.5688531080769,57.99712967757246],[-127.56877172397526,58.00037048078202],[-127.56742380245981,58.00163379217908],[-127.56519680388901,58.00252148883255],[-127.5599737613166,58.00372240399025],[-127.55459327958211,58.00365951892685],[-127.55089581835841,58.002616590796116],[-127.54765647434701,58.00231314688995],[-127.54249020836664,58.00225626791023],[-127.537367448695,58.003338461943045],[-127.53405989279246,58.00400473015056],[-127.53020344583356,58.00449771577148],[-127.52372593461068,58.006626979335095],[-127.52340711616827,58.00680113467821],[-127.51461259156618,58.01032050663936],[-127.5074011109397,58.01313936355165],[-127.5032757354545,58.01500771329021],[-127.50100456802865,58.017546155357486],[-127.50088316093455,58.0233732016744],[-127.50049202820507,58.02351894741575],[-127.49170674176801,58.02869926905401],[-127.48421875186789,58.03640671356574],[-127.48507880227916,58.04077013081225],[-127.4851513623096,58.04078390853306],[-127.48462961003747,58.04322637402463],[-127.48374586674834,58.04409777407366],[-127.48182334460404,58.045994849497774],[-127.4774214356734,58.04930145993871],[-127.47631543817158,58.05147663025523],[-127.47614582494943,58.05558902012384],[-127.47716572728932,58.05700477284728],[-127.47752162739003,58.05786243708128],[-127.4766402803146,58.060259519928245],[-127.47360583429014,58.06268932334669],[-127.47096864451206,58.06426206341624],[-127.46746865495415,58.065781397769825],[-127.46644612762826,58.06727349513578],[-127.46662368009372,58.06921015831114],[-127.46678684607612,58.07075208007856],[-127.46577993990738,58.072701736920266],[-127.46311022930001,58.073359224918036],[-127.46099088645215,58.074351701893896],[-127.45707049060545,58.07621641152348],[-127.4528723782014,58.076369778228724],[-127.4476222682151,58.07722548381988],[-127.44206423510002,58.078542030831265],[-127.44125647632765,58.08008547714808],[-127.44095979133324,58.08083360682327],[-127.4410455514833,58.0832828904286],[-127.44068902446362,58.08534203743881],[-127.43848447892596,58.086909484835],[-127.43714064869651,58.08858433178933],[-127.43657722033136,58.09092393020712],[-127.43328405936035,58.092323474791804],[-127.42761274152387,58.093577801064356],[-127.42219980343104,58.09603181638299],[-127.41870336565172,58.09777421793209],[-127.41166034693133,58.10001171883078],[-127.40429199231818,58.10208173029171],[-127.4024426539276,58.10473086390384],[-127.40459099607367,58.10756247299732],[-127.40538589073692,58.10875681899975],[-127.40678595187977,58.11176679454136],[-127.41060811029533,58.11309980551487],[-127.41278403499733,58.11359743328804],[-127.41749884761708,58.1157106670416],[-127.42179026404827,58.11806160300832],[-127.42461885695664,58.11865981957629],[-127.43437276102848,58.11988406149598],[-127.4382850555833,58.12058706330463],[-127.44328184253258,58.12150265690659],[-127.44599310785911,58.1218773069596],[-127.4489308972311,58.12253666955893],[-127.45321497102667,58.124599507125566],[-127.45685581894323,58.12673204522053],[-127.45942704208868,58.12921722750976],[-127.4595274476976,58.13195370826961],[-127.4624963850062,58.13351899715589],[-127.4652129449327,58.133947071238936],[-127.46738305031396,58.134273369624964],[-127.47315707517228,58.13563713723004],[-127.47579290901811,58.13686473098716],[-127.47717487610343,58.13919217761197],[-127.4813747756945,58.1418295722284],[-127.48468267691544,58.143624029828835],[-127.4865772268501,58.145200727828104],[-127.48773473565625,58.144451859228646],[-127.49359240139367,58.14221453019335],[-127.49956842886935,58.14027182154531],[-127.50811502282474,58.13784216216261],[-127.51323240841181,58.138933368603745],[-127.51686430384254,58.14077723575743],[-127.523106791237,58.14298630272135],[-127.52800408720091,58.14401663418843],[-127.53259876426098,58.14550802870772],[-127.53663887630022,58.146727376236434],[-127.53707429164041,58.14683009465878],[-127.54176718926934,58.14803282727025],[-127.54467890502613,58.1478915818675],[-127.54978470777982,58.148694331596666],[-127.54903214779459,58.14875688951039],[-127.54812759044715,58.15053563215832],[-127.5486741127269,58.15344655436171],[-127.54952076334598,58.155779541442676],[-127.55069100887252,58.15809981108091],[-127.55179817580579,58.158769187752],[-127.55431194756538,58.15953894353016],[-127.55803095977467,58.16069858075214],[-127.564467815268,58.16228421615418],[-127.5671830990323,58.16260257374287],[-127.569432294732,58.16211846943604],[-127.57173243748495,58.16014366892163],[-127.57551642642002,58.15748715454064],[-127.57957669842561,58.156353239468494],[-127.58612392488531,58.15525262485593],[-127.59310290332307,58.154146555760406],[-127.60009787754983,58.15349771867104],[-127.6042080629686,58.153628108318046],[-127.60984571761965,58.15412601415441],[-127.61395668891821,58.1542471204439],[-127.61802972388085,58.153515807617595],[-127.6219465686919,58.1515385511565],[-127.62706324519351,58.14987874044852],[-127.6301079501018,58.15035338832684],[-127.63264039838596,58.15152538862613],[-127.6355786957527,58.15206404644267],[-127.64091320608652,58.153031118334376],[-127.649251578927,58.15350325278277],[-127.6540618217045,58.154925082621745],[-127.65637741313331,58.15604547091222],[-127.6598053921561,58.157834264490326],[-127.66195936908031,58.16025816070673],[-127.6620109761023,58.1615142351327],[-127.66218260530427,58.16305607285278],[-127.66358473147258,58.16555211924189],[-127.66708411357644,58.1665319804749],[-127.67491231730715,58.16763727503151],[-127.68067709676296,58.16848074928609],[-127.68354818797796,58.169934855438974],[-127.68464202626416,58.17272184793588],[-127.68245532891295,58.174742137113704],[-127.6774017595702,58.177830610312355],[-127.67447628372487,58.18283132500599],[-127.67562116639014,58.18429819892862],[-127.67649162441208,58.18445788077098],[-127.6792380012801,58.18545585929393],[-127.6837378570676,58.18699732679721],[-127.68575664356436,58.18868655403044],[-127.68520799146853,58.19109028029118],[-127.68197085562214,58.193752167518895],[-127.67877092938903,58.19481561818453],[-127.67291408143336,58.196944494987505],[-127.67102745182824,58.19839533926718],[-127.67200433692392,58.20106728083939],[-127.67458218477374,58.20314472747222],[-127.6744608564532,58.2053725417244],[-127.66981117897957,58.20806074853808],[-127.66422938388155,58.20909062527664],[-127.65796464575635,58.20933872752468],[-127.65172485346991,58.21015178091858],[-127.65017915147654,58.21205596813336],[-127.65300884890026,58.21492971186918],[-127.65641643915933,58.21626119783767],[-127.66078543132976,58.217239581022675],[-127.66639482962653,58.219396394034945],[-127.66960820367646,58.22369244650726],[-127.67004599781473,58.2288848201495],[-127.67392320057765,58.23352269091963],[-127.67973892969876,58.23784898011994],[-127.68370422032802,58.244532402694745],[-127.68139192487301,58.248726917693865],[-127.6789010988233,58.25126279445145],[-127.67882070619514,58.254468781330395],[-127.68029578463228,58.25604835035671],[-127.6828418487795,58.257327216162345],[-127.68503923718256,58.25798197730957],[-127.68810655602341,58.2588143086618],[-127.69532885768666,58.260491984892255],[-127.69763842206771,58.26126184235545],[-127.70677654978202,58.26457558759009],[-127.7135689540231,58.26877156335797],[-127.71512340716677,58.274578363126246],[-127.7130636053454,58.27956940767958],[-127.7075888594688,58.28328409295603],[-127.70288361247594,58.284825125805995],[-127.69081756602009,58.28913417480474],[-127.68452433748205,58.29418694804702],[-127.68125690485572,58.2989053771231],[-127.68078222287097,58.30050940175725],[-127.67494915422715,58.303652651760906],[-127.66935318521101,58.30475468281773],[-127.66477283445627,58.30417399661147],[-127.66245127359349,58.30317920794734],[-127.65773293111782,58.30186379552274],[-127.65370669442548,58.301572185438964],[-127.65045309347948,58.30160316389074],[-127.64405407304184,58.301627650692005],[-127.6308812860613,58.30052210347916],[-127.62491460423571,58.300477594777746],[-127.61568465718675,58.30023862989503],[-127.60983665371631,58.30047034112162],[-127.60723370517371,58.30050146514369],[-127.60181479640234,58.30061996546753],[-127.5947202845272,58.299564073348876],[-127.59079460286515,58.29903597610342],[-127.58645861097068,58.300088203951454],[-127.58641533806306,58.301075148046486],[-127.5880008897868,58.30256920022572],[-127.59194278725272,58.30376828594889],[-127.59250729029789,58.305097058896635],[-127.59253391457088,58.305719582191074],[-127.59409706833935,58.306679657820176],[-127.59628010238495,58.30629802732781],[-127.59917337353879,58.306709196897685],[-127.59956846275838,58.30684365764032],[-127.60295036168147,58.30799859235702],[-127.60536427346082,58.30903818547919],[-127.60692018284631,58.30981977143445],[-127.6086457400233,58.31060043514038],[-127.60920706406428,58.31183941560894],[-127.60992923194144,58.31289915667042],[-127.61218561954074,58.31420649745304],[-127.6151182715777,58.31550681210599],[-127.61871277278621,58.3164422309456],[-127.61927451991757,58.31768117815447],[-127.6158073010359,58.31968119007549],[-127.6180643548798,58.320989564698685],[-127.62288594154501,58.32288874399265],[-127.6263428817146,58.32453827769708],[-127.62793491148057,58.32612051406499],[-127.6301927820654,58.32742869553004],[-127.63196642313953,58.32927579605475],[-127.63370512782717,58.330323117337315],[-127.63660847433118,58.33091071987445],[-127.6388081528375,58.33088396152636],[-127.64037461522757,58.3318435157239],[-127.64061379098236,58.33344322548135],[-127.63932659346919,58.33497174793486],[-127.63684323571611,58.336247701151926],[-127.63264409445821,58.33701021357847],[-127.62968088129337,58.3389158439218],[-127.62908898673163,58.34088028241719],[-127.62857603802884,58.344624852221926],[-127.62855045152436,58.34791798990205],[-127.62924054280607,58.34967951700162],[-127.63193229869765,58.34964693083627],[-127.63595409491144,58.34972384142754],[-127.64066181850637,58.35058238495429],[-127.64282269209761,58.352890457667456],[-127.64611217010885,58.356271124499884],[-127.64965119597257,58.35772725690765],[-127.65442841513905,58.35766867521278],[-127.65518330470549,58.357542680862],[-127.6593878785822,58.35669186105437],[-127.66415114969169,58.356300895865814],[-127.67048306158335,58.35702162698847],[-127.67433916194416,58.358284640982454],[-127.67595258471225,58.360500271981365],[-127.67257956181744,58.36293052238554],[-127.67079901851984,58.36443410176471],[-127.67354630240024,58.36520809411072],[-127.67769796478814,58.36573110678632],[-127.68424292268365,58.366277973283374],[-127.68892352414896,58.36644385865702],[-127.69395990521535,58.36735933107266],[-127.69726978530771,58.36845799531825],[-127.70236197461955,58.36806154448691],[-127.70433324320055,58.365917617331306],[-127.70422627323038,58.3634677500166],[-127.70409021321514,58.36033587051405],[-127.70699006844518,58.35453479879869],[-127.7176579850802,58.35000859424597],[-127.73020921748748,58.34642705457678],[-127.74094229008199,58.345956526540014],[-127.7439240154418,58.34705825080909],[-127.7478268740798,58.349351119904924],[-127.74928444590589,58.350301908300764],[-127.75081203237451,58.350515509622845],[-127.75244071779335,58.350494329186766],[-127.75589420362897,58.3499914323816],[-127.7592695231302,58.35011798565121],[-127.76106523840075,58.35141441012207],[-127.76220594313004,58.352656532954406],[-127.76293868925018,58.354415785815696],[-127.76455339442091,58.35650468885372],[-127.76585867531305,58.356550437660744],[-127.76726644596009,58.356415250677486],[-127.77063105796303,58.35637106895964],[-127.77401449226271,58.356676734538475],[-127.77577566429476,58.35716533152575],[-127.77724070890261,58.35834021605963],[-127.77815579487792,58.35936072536357],[-127.77957718217237,58.35957541160575],[-127.78120838290727,58.35955385494839],[-127.78599273411398,58.35966111625167],[-127.78938695800808,58.3601817567203],[-127.79272392684459,58.361861374994156],[-127.79277201035276,58.362947203989016],[-127.79039458016423,58.36560071252781],[-127.78846114168952,58.36847276959992],[-127.78759441550315,58.370890680885374],[-127.7872793650767,58.37351677772998],[-127.7868037572361,58.37500465103916],[-127.78733343249078,58.37710774318318],[-127.78567014960863,58.37879094692466],[-127.7847327175931,58.379656390552135],[-127.7840308399582,58.38097665267898],[-127.78407716899675,58.382008654904396],[-127.7850242947044,58.383702180076696],[-127.78624920003111,58.38665810736476],[-127.78676062965039,58.38831250801421],[-127.78852588748077,58.38891765702129],[-127.79315215204633,58.39016719721726],[-127.79873832668292,58.39100868803886],[-127.80294458205631,58.39266758108102],[-127.8023531719185,58.39398648809757],[-127.80284688180204,58.39523701391134],[-127.80355403088774,58.39636795241623],[-127.80384209893786,58.4002522293348],[-127.80419171275749,58.403156928189155],[-127.80643025679828,58.40450084117374],[-127.80833839632437,58.40577731459444],[-127.81147072978438,58.40756712870275],[-127.81382239553469,58.40902615002496],[-127.8152606525559,58.41186234370605],[-127.81486664873847,58.412774595333296],[-127.81845805130827,58.41273521271195],[-127.82215375577071,58.412685345912976],[-127.82635021102587,58.41165878726274],[-127.82886956278385,58.40968503312442],[-127.8339245234561,58.40842210000127],[-127.83770360236832,58.407795964870196],[-127.83898758338988,58.407329479245284],[-127.84383970348605,58.40641016459359],[-127.84735375544184,58.404763688530494],[-127.84758812448611,58.40287473713381],[-127.84853637813022,58.40217928587176],[-127.85144776971357,58.40162750666314],[-127.85326162981151,58.40085727782749],[-127.8527665789342,58.39961590191575],[-127.85437351062572,58.39907299332025],[-127.85661460407914,58.39818908752016],[-127.85900831077694,58.398156110718354],[-127.86842449432493,58.39946273346596],[-127.8838027558846,58.400227591572104],[-127.89116214575121,58.40166912183041],[-127.89602018131957,58.403145448777636],[-127.90381427814933,58.40680721972543],[-127.91374818783912,58.41625731038582],[-127.91583994862475,58.41897553476592],[-127.91686164438194,58.41976025480833],[-127.91816436664172,58.419687860342584],[-127.92107178376455,58.419071766987706],[-127.9234502273454,58.41875949687201],[-127.92789095061579,58.41829201019529],[-127.93512506947854,58.41716470813018],[-127.94417832078926,58.41750152305333],[-127.94856684242791,58.42034780796262],[-127.95027885498234,58.42409478870546],[-127.95180524398182,58.426299837356346],[-127.95372327710847,58.42764607470162],[-127.95557692163607,58.42772699086697],[-127.95720415785057,58.42753277425085],[-127.961833903685,58.42655853248318],[-127.96539391004212,58.42594096791566],[-127.97365129520368,58.42553307973064],[-127.978358212494,58.426038902497915],[-127.9844501275344,58.428005978382416],[-127.98811126348228,58.42937998919813],[-127.9951035652679,58.431908096510895],[-127.99877728572766,58.43346126173857],[-128.0001981525995,58.43523633060743],[-128.00242431021587,58.4401875758114],[-128.00455110863805,58.442535892725225],[-128.00649922405876,58.443000891465225],[-128.01207746305607,58.442010816435165],[-128.0181076303827,58.440043834372325],[-128.02152281125402,58.43811576498816],[-128.02767042855018,58.435634689283596],[-128.03215453276349,58.434633259245714],[-128.0379343268389,58.43415096359805],[-128.0471039698546,58.43288960655137],[-128.05987014192198,58.431465005844636],[-128.06868298841584,58.43168046257004],[-128.07704185748423,58.43280939855688],[-128.07975640527835,58.43334237152479],[-128.0822996481761,58.431183673724],[-128.08901261555476,58.42738880021584],[-128.09603996918224,58.423992843427506],[-128.09801366305896,58.423315550616245],[-128.11108896251682,58.422464991100824],[-128.11866676050425,58.4245644997111],[-128.11963984080776,58.424962340030916],[-128.1271575506639,58.424538687513035],[-128.13935336396747,58.42413931520565],[-128.14392581567327,58.42416553327978],[-128.15739529412127,58.425594382449994],[-128.16193096826146,58.42766827376583],[-128.1626812527741,58.4283657603084],[-128.17184229158602,58.42732051769504],[-128.1782613070689,58.427342790819324],[-128.18795756505727,58.42681769502138],[-128.20088261239812,58.4286372732596],[-128.20163586349472,58.42904710663512],[-128.2104794701346,58.427357750370845],[-128.22422729477927,58.425129006965165],[-128.22609995885958,58.42348148563558],[-128.2315942806327,58.42002272943642],[-128.24555166202524,58.4180667235622],[-128.25881516278986,58.418869179017825],[-128.2619710417875,58.41887019161267],[-128.273131232627,58.41451522713407],[-128.28308297992297,58.41061088723344],[-128.28647325373657,58.409529577353155],[-128.28998389457746,58.40708994469108],[-128.30410808962446,58.39999656545219],[-128.30678067952286,58.3950829750876],[-128.30158988523146,58.392845529232616],[-128.29499806586801,58.38985039149274],[-128.293294639269,58.38687067744251],[-128.2913541562413,58.38578102999365],[-128.28420899519486,58.38357618839187],[-128.28065070649257,58.38151690652528],[-128.28036698392972,58.3782526033924],[-128.27844826782894,58.37544705526716],[-128.27834792255675,58.37487396822209],[-128.27761302357723,58.372928538204505],[-128.27536096723648,58.37064051986601],[-128.27062711744807,58.367415406092704],[-128.26889684794472,58.36690570296624],[-128.26761950052568,58.36478078530803],[-128.26572231187012,58.36060070744883],[-128.26240011377251,58.35750430010439],[-128.2608116876255,58.354468547630425],[-128.2614288828169,58.34915959263473],[-128.2620249751594,58.34533281822901],[-128.26512954822172,58.340718492777015],[-128.2781677259367,58.332128624858896],[-128.2862512852528,58.328156887533154],[-128.29009636296385,58.32485853746366],[-128.2962610267422,58.31808100325486],[-128.30143683002032,58.312155299961084],[-128.30736540977233,58.30657571622916],[-128.30923993359866,58.30423559864116],[-128.31404583246731,58.30144992249956],[-128.31658278236347,58.29826313710116],[-128.31630293677142,58.29443337379587],[-128.31234161634802,58.290361660425795],[-128.30752267830252,58.28572087764634],[-128.30456319186314,58.279647214502845],[-128.299321810898,58.27437590097292],[-128.29827008293208,58.27203215753635],[-128.30231343872117,58.269242029132045],[-128.30678371629972,58.267091005331714],[-128.30812462794984,58.26377234934809],[-128.30403433687613,58.26182207312761],[-128.29723712631775,58.25973839702287],[-128.29636930674906,58.25962751451475],[-128.29772087802522,58.25579697328036],[-128.30026627293282,58.25151496599962],[-128.3005415319868,58.24689467642552],[-128.30156914244816,58.24278233878076],[-128.3017312916332,58.23855913187545],[-128.30162860654116,58.23832742204154],[-128.2916252740788,58.233317307904436],[-128.28992272043808,58.231029645349636],[-128.286549200426,58.22438848207557],[-128.2892062203343,58.21947637081014],[-128.29044827586367,58.215486311461994],[-128.29423178771714,58.207555823358646],[-128.30273823969378,58.20221111634966],[-128.3033928920468,58.20175091661075],[-128.316961974282,58.19751250921422],[-128.33172864945476,58.192587418495485],[-128.3350962670274,58.19122683905505],[-128.3449630696522,58.18869314146834],[-128.3513947135557,58.18413579014287],[-128.35735938274075,58.182262151808516],[-128.36613861898383,58.18006024607843],[-128.3759842725234,58.179176773985404],[-128.38246298746338,58.179708321494346],[-128.38937555164333,58.18018693224253],[-128.3917476129862,58.18064748596491],[-128.3992055099401,58.18072077287396],[-128.40256637436232,58.17987040392795],[-128.404846912511,58.17862627676635],[-128.40681335123872,58.17645389009485],[-128.40890534327633,58.172456405076346],[-128.41207915379533,58.16829576515321],[-128.4137339879908,58.164638325302455],[-128.41790418830246,58.15790949878367],[-128.41966295809874,58.15470807610742],[-128.42445273902732,58.15055390164838],[-128.4266121815524,58.150559703573926],[-128.43036457801085,58.153885847801504],[-128.43830876504114,58.15904830517608],[-128.44433301009238,58.16202747183714],[-128.45080539869426,58.16295986199929],[-128.4660400498799,58.162590606090035],[-128.47069065607334,58.16208291225444],[-128.4813951619942,58.16056514097647],[-128.48832902301484,58.15776963442167],[-128.48844595701155,58.156860526646064],[-128.49311230131113,58.15378359154964],[-128.49454969823148,58.149383804025405],[-128.49457945844082,58.14532451908808],[-128.4945618499224,58.14509250318451],[-128.52504245892186,58.13149996825234],[-128.52775903234541,58.130288118867576],[-128.53869057828965,58.136564548325694],[-128.54466407546352,58.13999364410144],[-128.54845832952907,58.14569319935894],[-128.55419930438137,58.154314457161156],[-128.55503658369605,58.15557138625817],[-128.5557601279364,58.15496267206446],[-128.55550715918875,58.15479126760561],[-128.55559526879284,58.15460325532039],[-128.55568089410426,58.15454998802358],[-128.55570393671064,58.15454505858273],[-128.55585640897675,58.15456796724753],[-128.56534694354858,58.157376901628794],[-128.5678172689098,58.15954762947709],[-128.57038684917327,58.16389855787779],[-128.57350465780118,58.16744869961036],[-128.57543619672606,58.169791319130276],[-128.57790781361354,58.17265336396841],[-128.57939395466755,58.17808471653368],[-128.580231400173,58.18351061895554],[-128.57900713418695,58.190484912909625],[-128.5779090308425,58.19379282768997],[-128.57887715503966,58.19482491819116],[-128.58243690517762,58.19694764146023],[-128.58651940885244,58.20203273683213],[-128.58984288247333,58.20826396279743],[-128.59307031149788,58.212269833997944],[-128.59738801110117,58.214449448042295],[-128.60213271294086,58.21770732506588],[-128.60525173287982,58.22217311000394],[-128.60761996141062,58.225423074288656],[-128.61302148250246,58.228173944097726],[-128.61625196533063,58.23182911725364],[-128.6220999297787,58.23092470111363],[-128.63292166192974,58.23155710749269],[-128.63735151526066,58.233796242304656],[-128.63831086268388,58.23842959062792],[-128.6352704324206,58.24116566600926],[-128.63450833046306,58.242078731802415],[-128.63753130034175,58.244650866900415],[-128.6406577786638,58.24882855199991],[-128.64335321537612,58.25271829987698],[-128.64625677649678,58.258660650221984],[-128.64701501528083,58.25946301601276],[-128.65578437939078,58.26043956372929],[-128.66531655698176,58.26164291821805],[-128.67484261226812,58.26410314818945],[-128.67765075314998,58.2674781762937],[-128.6806773382928,58.27188170204242],[-128.68273323859898,58.27176882220143],[-128.6914035617369,58.27124516799176],[-128.6985542752935,58.27142510503246],[-128.71144883943532,58.27366249030083],[-128.7134003489039,58.27113513759672],[-128.71709134000022,58.26691096525282],[-128.7231613836517,58.262800167563746],[-128.72630369815133,58.26188317034287],[-128.73388558864698,58.26050757245914],[-128.74179678833747,58.25919667158714],[-128.7512195503926,58.25913875233757],[-128.7539270179843,58.258508436108926],[-128.75620146433099,58.25571333778357],[-128.7610735921982,58.25342170339223],[-128.77006401908199,58.25387430579274],[-128.7767806197005,58.25495716391367],[-128.78317174359927,58.25610033192668],[-128.78707091725002,58.25421410336457],[-128.78804197633087,58.250897564461425],[-128.78977054630218,58.248095228318626],[-128.79345368348467,58.24791986593546],[-128.80179228056383,58.24842879010754],[-128.81121492298303,58.24985763089476],[-128.81479049095284,58.25082466169424],[-128.82172231155837,58.25161334610784],[-128.82735397813119,58.25218653689298],[-128.8366749170002,58.2543523236822],[-128.84469503064773,58.257766642179014],[-128.84871127248516,58.26022353493028],[-128.85532295140226,58.26193354166126],[-128.85998453779624,58.26289431103113],[-128.86713753505572,58.264089218374686],[-128.87732415228402,58.26470681565242],[-128.8780833052555,58.264708520128885],[-128.87763586339705,58.26099933160489],[-128.87643191384691,58.25733330927443],[-128.8751213306132,58.25391210553355],[-128.87370098774542,58.25070883404917],[-128.87379652072926,58.2467096337556],[-128.87487020048044,58.24362367412989],[-128.87756581038553,58.2409880070486],[-128.88080949675887,58.23852915519647],[-128.88307401736003,58.23669306783429],[-128.88371319356898,58.233787045281204],[-128.88283444619444,58.22955731950848],[-128.88281375369695,58.22435707585962],[-128.87641751399073,58.22047032735132],[-128.87489278271585,58.21779041574324],[-128.87304026823074,58.213851055536416],[-128.87206449879397,58.213566557893984],[-128.8742270746287,58.212936419331925],[-128.88039781452756,58.21372923717493],[-128.88689090168995,58.21469448426649],[-128.895547054081,58.21501994428099],[-128.89900693915152,58.21444223548008],[-128.9002980056147,58.21295922752486],[-128.90028791812549,58.20976181191154],[-128.89962903734855,58.207871851625086],[-128.90080740423736,58.20484636636796],[-128.9008064184885,58.204505069789064],[-128.90501933363504,58.20294982333733],[-128.91161575577416,58.203453510756226],[-128.91303155347296,58.20551560362781],[-128.914451241351,58.20853869612005],[-128.91488686731455,58.20940050194224],[-128.9177020955489,58.20996805827447],[-128.92257157510826,58.21006865921472],[-128.92754151711375,58.20914291636472],[-128.93110814500727,58.20833747596811],[-128.93457235569582,58.20924979132398],[-128.9367459176212,58.21135797969336],[-128.938923211154,58.213699602589124],[-128.9389238653582,58.213924146884246],[-128.9447684640791,58.21432595858511],[-128.95267158557817,58.21539184615071],[-128.95993354045396,58.21754932383584],[-128.96546485531195,58.219879427342214],[-128.97251970882044,58.223639753460304],[-128.97719931593605,58.22768601592048],[-128.97872133131995,58.22928709925881],[-128.98435080864252,58.229332721605225],[-128.99106439631777,58.2299468179737],[-129.00212102484133,58.23209839852736],[-129.00906224094,58.23401803074175],[-129.0117731509881,58.23487349651854],[-129.0174175278443,58.236920626908905],[-129.0223080922733,58.23947857905232],[-129.02317530061345,58.23970159677366],[-129.02848217337598,58.239977247912435],[-129.03758399957692,58.24075977186878],[-129.0490893315654,58.24421803170778],[-129.05845160577795,58.25007783672402],[-129.06324635796096,58.25366971742411],[-129.06368025632625,58.25383948884966],[-129.06723530523777,58.25165621827536],[-129.07455514830883,58.246772525722726],[-129.08708295470603,58.243143238839366],[-129.0941146909035,58.242720855416806],[-129.11816767386168,58.24390721108919],[-129.1399529617963,58.246184466454835],[-129.14831953641718,58.2487825273573],[-129.1574536134239,58.25207179019928],[-129.1612614620255,58.25359932105755],[-129.17037841862046,58.255055433861564],[-129.17969891267808,58.25587724092442],[-129.1917789326797,58.26046013244447],[-129.19943683274036,58.266369297186635],[-129.20458272995202,58.27075680445551],[-129.2154177587437,58.27906017372795],[-129.22786451471964,58.285751846287475],[-129.23678179867312,58.287891398975376],[-129.2464658568953,58.2904790863597],[-129.25343296748576,58.292511940431005],[-129.26202023105105,58.293966053533275],[-129.27080614877892,58.294381522804855],[-129.27795948899103,58.29411743427537],[-129.28978241072517,58.29435874348362],[-129.29815687287373,58.295977539452885],[-129.30044085757797,58.29642465932066],[-129.30478941746543,58.29715346088805],[-129.30805824815198,58.29816028764769],[-129.31036806273465,58.30032281033013],[-129.312012057199,58.30140549246956],[-129.31714589038853,58.303606151858254],[-129.31758419032704,58.303828959287515],[-129.3202248921562,58.30638753185669],[-129.3232981061184,58.30854900447916],[-129.32756240585118,58.31065399859388],[-129.33356622477493,58.312958380964105],[-129.33967999532655,58.315277761590444],[-129.34447673285527,58.31684788532914],[-129.3493759459901,58.31757063695408],[-129.35645876532604,58.319424873168565],[-129.35819925049321,58.319812752162804],[-129.3677824868908,58.321765720771204],[-129.37399646217688,58.323335311559816],[-129.37736299216868,58.32354737149655],[-129.38407516981553,58.32254298705511],[-129.39153084159705,58.32078265966092],[-129.40480698909946,58.31694268376506],[-129.41992054328043,58.31280302301405],[-129.42778154778335,58.30967339649109],[-129.4313037746794,58.30662711995664],[-129.43921133840587,58.30046727222865],[-129.44135148143837,58.29896573956282],[-129.44439981459865,58.29398125225589],[-129.44689959045866,58.288705248612175],[-129.44785135472702,58.287332928609764],[-129.45480873984255,58.28289486766376],[-129.4594289435309,58.28080806027197],[-129.46999429154081,58.27800155970977],[-129.4742676029758,58.27489876313982],[-129.475646607897,58.273398365807836],[-129.47677676016627,58.27042169698132],[-129.48104067977877,58.26695947791313],[-129.48618819533198,58.264309886178744],[-129.48907628918616,58.26245565700198],[-129.49444711601615,58.26031213456119],[-129.49820854008112,58.25892021797839],[-129.4988289008841,58.25743034528424],[-129.50725820210417,58.25651853084745],[-129.51470890492118,58.25544308690156],[-129.5217157130561,58.25380374940422],[-129.52657260117434,58.252975355778496],[-129.53159399745044,58.2499138829388],[-129.53500510193444,58.24737088901003],[-129.54115683209682,58.24647189837279],[-129.54550616419726,58.24724673892775],[-129.54967503981797,58.24957185375857],[-129.55144435963518,58.25126840463213],[-129.55364161430822,58.25257618860506],[-129.5608252513802,58.2542370655797],[-129.5651856245119,58.25546932649239],[-129.56900532556423,58.25669785367784],[-129.5764198974575,58.25888201267054],[-129.58372755049098,58.26094283197365],[-129.59047696457986,58.26232623161981],[-129.59331094180783,58.26310417230594],[-129.59969767899034,58.262834286896414],[-129.60218139636493,58.262480116484454],[-129.6032760667138,58.26298096979928],[-129.60367151004246,58.2659000503644],[-129.60580695676214,58.26914090382895],[-129.6066008928366,58.27062039417441],[-129.60881604726305,58.27266383328872],[-129.61495189061003,58.27541961811957],[-129.61778960627277,58.276143072731095],[-129.62116840979374,58.277031628480984],[-129.624439981899,58.27786907509811],[-129.6290619725728,58.280584231568355],[-129.63138359951407,58.28250766358159],[-129.63438947272493,58.28574266733713],[-129.63431992744864,58.28722743899185],[-129.63004478025678,58.28977852372376],[-129.6258596600605,58.29157210934744],[-129.62241359318514,58.292518818065005],[-129.61776997885323,58.29323704593863],[-129.61107423843808,58.29442366723318],[-129.60701612134295,58.296914223514],[-129.60720692731732,58.30051295930269],[-129.60766652133722,58.30599182013129],[-129.60791559215912,58.30736018784854],[-129.6067049163151,58.31114036637089],[-129.60343254200603,58.314939854609875],[-129.59635649782012,58.318589381007136],[-129.58865867220106,58.32355826569655],[-129.580985791371,58.329550577199406],[-129.57767738895654,58.33197530504398],[-129.5686734863371,58.3369507454304],[-129.55985556759208,58.34077923947581],[-129.55392885952736,58.34276030922581],[-129.5540183225036,58.346703385099154],[-129.55408086816843,58.34955971685122],[-129.54981990216342,58.3532401450683],[-129.54641368084307,58.356295763205445],[-129.54513825967075,58.35750670536836],[-129.54423372605615,58.36093675596494],[-129.54069770101265,58.367995073132626],[-129.53857406055295,58.3702887791329],[-129.53299475759272,58.37346404409832],[-129.5265298492788,58.37608705399925],[-129.52267163345698,58.37861463420792],[-129.5215483331198,58.381942423652255],[-129.52235099042647,58.38381781292082],[-129.52317319166667,58.386789179270025],[-129.52299095774433,58.38833082526858],[-129.52240885435558,58.39159057870917],[-129.52134379327686,58.39765813356249],[-129.52125944042362,58.40388884407705],[-129.52126613313052,58.40423020490898],[-129.5213778616898,58.409323375486466],[-129.52275807215239,58.4128555003835],[-129.52498642488038,58.41517905607546],[-129.52774099835182,58.41676079742225],[-129.5345417960162,58.41924315084105],[-129.5314364547352,58.4215984826743],[-129.52789633085496,58.42390219763325],[-129.52499724293125,58.425640791171595],[-129.5209025382933,58.427662201135256],[-129.51810134464625,58.42894868097109],[-129.5171360717723,58.429692897913064],[-129.5116061994023,58.430753755409995],[-129.50216141879005,58.43183518662118],[-129.49791770462645,58.43203517778227],[-129.49373484652307,58.42966291604943],[-129.48839190360292,58.42928889292954],[-129.48114049088807,58.43116594595931],[-129.47528357567992,58.43239550518889],[-129.47427241700353,58.430749821789966],[-129.47177952233773,58.425906698874996],[-129.469052651016,58.42026070756503],[-129.46891615138549,58.4188351863285],[-129.46260572407488,58.41887154475805],[-129.45693575678007,58.41833396325953],[-129.44996107071358,58.41768573508714],[-129.4485264648862,58.41677874634835],[-129.44881664483177,58.41494687048373],[-129.44820927994272,58.41163705602522],[-129.44631011539073,58.40907927355375],[-129.44463806007968,58.40702795415963],[-129.44094714246708,58.4017298437742],[-129.43970352511454,58.39939794298514],[-129.4387807253883,58.39659950979173],[-129.43555651348288,58.39284422816907],[-129.43377664854106,58.39080458502663],[-129.43355062763692,58.39039693845297],[-129.42821690067927,58.39002946365867],[-129.42168890403713,58.389844890875366],[-129.41235405230069,58.39057588515998],[-129.41045977367745,58.38812547437456],[-129.40661932705797,58.38637132485232],[-129.40104487472786,58.38457997953342],[-129.3923441727741,58.384394921712016],[-129.3894074568293,58.38440592320549],[-129.38290224228302,58.38524341547796],[-129.37474889442288,58.38527713005534],[-129.37191913419153,58.38512331023449],[-129.36096500654298,58.38661018836681],[-129.3570699162302,58.387713785519445],[-129.34926413097128,58.38906729441165],[-129.33742099125865,58.38957680737347],[-129.32514436529584,58.390158874438505],[-129.31276192937307,58.39084126586005],[-129.29389224711295,58.394071572412415],[-129.27945354431347,58.395672763604864],[-129.25973849132987,58.4011293371954],[-129.25184973132866,58.40464474053592],[-129.24915183152422,58.406201489989556],[-129.24669954690043,58.40981010066116],[-129.24286778182912,58.415941034139344],[-129.24129500649698,58.42029224145391],[-129.24135614876002,58.42469405367919],[-129.24206731510395,58.4289724333293],[-129.24396264955118,58.432287780327975],[-129.24672050975082,58.434953317068064],[-129.25001890885952,58.43729126912908],[-129.25376069842775,58.44018461957053],[-129.2562970511182,58.442459948494836],[-129.25511977785544,58.44389026207513],[-129.25144998520983,58.44619842299753],[-129.24548730055034,58.44804939986343],[-129.2397276157285,58.449041505426855],[-129.2388563956991,58.44905342865906],[-129.23265416953288,58.449471719065286],[-129.23014129475155,58.4487949865859],[-129.2270672160984,58.446864534986695],[-129.2211485866273,58.44403141747144],[-129.21918979945622,58.44397930718627],[-129.21832847456335,58.444844572897374],[-129.2150033937206,58.448967713016685],[-129.21023936679438,58.45098623109693],[-129.20502575338344,58.452260390378235],[-129.19904670099913,58.452914450613875],[-129.19380375267062,58.451852405853366],[-129.19195195580332,58.451914181906496],[-129.19034205051435,58.453803428511264],[-129.18580946635677,58.45719049301412],[-129.18515946473536,58.45742150337721],[-129.1780972987569,58.45910663208572],[-129.17103620078976,58.46089919086699],[-129.16779327839203,58.46279953997412],[-129.1654283893239,58.46572164212097],[-129.1637290782135,58.469436886773465],[-129.16050902042463,58.4739066285101],[-129.15858256440748,58.47723173833346],[-129.1512765503575,58.47673739722922],[-129.14178825221373,58.476086760124616],[-129.13579286216753,58.47610926388954],[-129.13067529135853,58.47674918286045],[-129.12951363968926,58.479957247871155],[-129.12770311731688,58.48413288746642],[-129.12568058093515,58.48876273968574],[-129.12395231788005,58.49037532743591],[-129.12257124093065,58.49374120715912],[-129.1212951030075,58.49700580682615],[-129.11935839473563,58.49975544863145],[-129.11687219929894,58.50193361665852],[-129.11720408135008,58.50244717916616],[-129.11907363483584,58.50387783634299],[-129.1196311336773,58.50506916534512],[-129.12084622729907,58.50661376279005],[-129.12424678713865,58.508314553787216],[-129.12556429241886,58.50911086572461],[-129.12689835967086,58.51139856660551],[-129.127573478396,58.513279136218436],[-129.12879409592728,58.515389727164695],[-129.1292604513054,58.518074952302605],[-129.12926846529857,58.51898242835724],[-129.1295991204028,58.519325259212486],[-129.13051281671483,58.52309653227857],[-129.13043152006816,58.52595622430386],[-129.12893965675528,58.529100198899485],[-129.12832051925668,58.53270028856334],[-129.12922296810302,58.53544738814923],[-129.13185077594184,58.53629425794455],[-129.13261550563854,58.53629452506075],[-129.13578774301274,58.53679619526766],[-129.1443182761445,58.53796421630048],[-129.1478180062937,58.538700651838305],[-129.1523060343829,58.53982738375905],[-129.15462063206513,58.54165174614077],[-129.15442134832563,58.54353471132046],[-129.15164511453273,58.54902767647778],[-129.15026318863917,58.55217842775594],[-129.15030534428954,58.556293622526894],[-129.1504488859229,58.559327997854496],[-129.15025006893057,58.56109414666593],[-129.14697946258664,58.561673515042536],[-129.14065376610955,58.56266523713852],[-129.13498935496776,58.56451311394208],[-129.13216916668614,58.566241047265656],[-129.1309834221951,58.567724422269436],[-129.12718582664834,58.570598266029066],[-129.11019258930628,58.57602256288759],[-129.1096477854852,58.5760260873901],[-129.10091343635352,58.57708016874292],[-129.09580602406334,58.580234720795346],[-129.09615789256546,58.58268919785567],[-129.0968524935582,58.586807496248234],[-129.09491979342718,58.59058143271057],[-129.09166408093915,58.593217183892705],[-129.0862225906998,58.59609139853375],[-129.08187725539253,58.59912919498142],[-129.0749062052491,58.602298354659425],[-129.06421053770268,58.60534469878296],[-129.0625751251406,58.605696225830584],[-129.05645840919564,58.606688116400235],[-129.0483812779326,58.60893712710355],[-129.04292317789262,58.61020117146953],[-129.03570939026133,58.611306601520816],[-129.0305785681338,58.612922298044644],[-129.02227344399583,58.61419518866375],[-129.01439222250883,58.61393030192545],[-129.00946952681804,58.613994745749665],[-129.00761515180218,58.61479981554209],[-128.9997541356529,58.61772408132334],[-128.99517269813288,58.61928130455265],[-128.99978301556996,58.62172276069307],[-129.00505288377366,58.62405959252394],[-129.0095548879853,58.62588303218506],[-129.01405512615662,58.62787713676055],[-129.0193231671643,58.629458567112934],[-129.02327469996175,58.63088042492732],[-129.02437644378224,58.632132084600734],[-129.02493773592116,58.63396200945007],[-129.02702987503042,58.635667904406034],[-129.02956357286035,58.63748973976091],[-129.03089222051764,58.63954518574232],[-129.03222228872212,58.641537682254956],[-129.03333196002256,58.6433104101723],[-129.03490093124785,58.64816464634743],[-129.03579720262746,58.65050838169424],[-129.03558030225403,58.65079185640969],[-129.02670276348937,58.650298125346815],[-129.02243255730465,58.650312427181674],[-129.0143318646915,58.65089708348935],[-129.0063441968904,58.652170796469],[-128.99836369958564,58.65436061010931],[-128.99541586988926,58.65579183500652],[-128.98688898034916,58.65900861486643],[-128.984279276186,58.661645479688644],[-128.98418148066062,58.66393948585293],[-128.98277368324287,58.66622634107466],[-128.97566668020488,58.669384215299424],[-128.96757898790216,58.67265302195315],[-128.96124573703614,58.677006540906596],[-128.95972207457032,58.67861261459755],[-128.95928306146175,58.67883788889265],[-128.9540296751779,58.680048781670536],[-128.95106825246071,58.679996334411875],[-128.9428470439394,58.679662460082326],[-128.9395528240564,58.679329370671255],[-128.93143735154004,58.67813870228387],[-128.92441812308007,58.67718459391945],[-128.91652354948695,58.67719262316519],[-128.9115983784283,58.67868239639198],[-128.91117021065014,58.680686799653245],[-128.90975729999673,58.68326054859637],[-128.9077879462484,58.6846328846589],[-128.90143727326435,58.68646735227288],[-128.89551967904922,58.68761821884464],[-128.89398559527726,58.68796547827299],[-128.89080953961633,58.689911502947375],[-128.88632639848413,58.69260423349465],[-128.88107317040436,58.69587037365473],[-128.87855644215477,58.6980447837188],[-128.8777975139757,58.70021787564872],[-128.87900908110058,58.701863897972046],[-128.88142802996754,58.70387078434478],[-128.88538854144966,58.706438099997605],[-128.88615648241193,58.706835224923346],[-128.891649750404,58.70860586172366],[-128.89439274085277,58.70928446165195],[-128.8981368678568,58.71259306647098],[-128.89803617001013,58.71430290297254],[-128.8970544106288,58.71641800421708],[-128.89760964394594,58.71767345947272],[-128.90069174181568,58.72001648167384],[-128.90223229432397,58.7212688747641],[-128.9034448166239,58.72241141773063],[-128.90520758393924,58.72423427151708],[-128.90873876743947,58.72846403963183],[-128.91061425386275,58.73125515572765],[-128.91061823123124,58.73194715650284],[-128.90425845496227,58.733781898873964],[-128.90283246980687,58.73412693213128],[-128.89658204186694,58.73585111334077],[-128.8894518979646,58.7379711934644],[-128.88506575154764,58.73992484926964],[-128.88078956871763,58.74181311331037],[-128.8772695477733,58.73970352462311],[-128.87166321415484,58.737709834738034],[-128.86836594226375,58.736853658473514],[-128.8640830241705,58.73674619287633],[-128.85859475401745,58.73766159564712],[-128.85310839370868,58.73870256328036],[-128.84805976843157,58.74012960666202],[-128.84422201858652,58.74247487193082],[-128.84192247036157,58.745740618910624],[-128.84115992772286,58.74807544261758],[-128.83644013632752,58.74905475842578],[-128.83325539618272,58.75065806640834],[-128.8336998924562,58.752320572800514],[-128.83556859830654,58.75351299394301],[-128.8367825825938,58.755626838976106],[-128.83315723231476,58.756088863847495],[-128.82722528116133,58.75569095032067],[-128.8241456122524,58.75569199332139],[-128.81953147823276,58.75472711067972],[-128.8145869729308,58.75323862626007],[-128.81216962130836,58.752560595283214],[-128.8045872982846,58.751018411279055],[-128.79525076397002,58.75142627310732],[-128.78690435373568,58.75280186464634],[-128.78525483307874,58.7527996929209],[-128.78635442767128,58.75451181681044],[-128.7871250669672,58.75691375031007],[-128.78690751016703,58.75914718762034],[-128.78657673751283,58.760627968959035],[-128.78713125378883,58.76331297582943],[-128.78812102211745,58.764739754564644],[-128.78977136389815,58.76668328032206],[-128.79251790754194,58.76982667573035],[-128.79285202932203,58.773316162828486],[-128.78977511456605,58.774511751007275],[-128.78504767278594,58.77468045700759],[-128.779994851863,58.774577015232566],[-128.7762553967785,58.773889352814344],[-128.77284908407836,58.77366217890815],[-128.7686710465244,58.77372025726306],[-128.76273343575727,58.77337352275452],[-128.75712959622595,58.771725520044654],[-128.7522926796887,58.77155377261825],[-128.74756627915025,58.77229637976518],[-128.74657954625033,58.772469085859825],[-128.73954288545312,58.77263784837509],[-128.73547591093765,58.77253089475822],[-128.73239988758965,58.77166693814222],[-128.72327947457933,58.76949494089482],[-128.71547798128591,58.768356589678284],[-128.70899534548334,58.768584632048345],[-128.70239946702105,58.768580936529624],[-128.6983324188915,58.76777186044991],[-128.69537012529716,58.76561064657966],[-128.68977066948347,58.76434634659923],[-128.68284770496297,58.76423134703678],[-128.67779205870926,58.76474433371726],[-128.67460708865755,58.76342290980343],[-128.67098580703356,58.76239757640994],[-128.66922465268632,58.76217149865532],[-128.66351496712386,58.76130375457718],[-128.65780236636405,58.761020004280084],[-128.65340530227542,58.76164504230961],[-128.65098267461576,58.76330096872261],[-128.64822742730524,58.76563736728802],[-128.6460209484,58.768322534576946],[-128.64304058615434,58.7713552282736],[-128.64226794411277,58.77215212284859],[-128.64138320639563,58.77444308277075],[-128.6410474262808,58.77684022950713],[-128.6412519482017,58.779748170632665],[-128.64113972712488,58.780954658987625],[-128.63969447176092,58.785575262154566],[-128.6382531689513,58.78861399657052],[-128.63483216267846,58.792544852293574],[-128.63053039108772,58.79540514901165],[-128.6297590709269,58.79562675639813],[-128.62204329784004,58.79973900500373],[-128.61498314214379,58.80424266593993],[-128.61012639262006,58.80829932340361],[-128.60394127985268,58.81337882837917],[-128.6013944786933,58.81633946860741],[-128.59862980775424,58.81948397399497],[-128.59597885843235,58.82119721583173],[-128.5916723910994,58.82421814878963],[-128.58802179132758,58.82775677269394],[-128.58780005520472,58.828219357563476],[-128.58107449519562,58.829919714006664],[-128.57600125417017,58.831453705582504],[-128.57235808323523,58.83316724858513],[-128.5720181816588,58.83505210302985],[-128.572007986696,58.83682288884272],[-128.5716654383623,58.83899541146429],[-128.57164797877903,58.84179095896611],[-128.57086635689762,58.84407962698222],[-128.56920054642669,58.846762446855145],[-128.56709203236215,58.84887835698918],[-128.56565573291962,58.84989405343606],[-128.5608004005446,58.85132449353367],[-128.5555038152234,58.85286189088307],[-128.5514167219104,58.85434051050059],[-128.55019779258703,58.85582833529319],[-128.55106767319322,58.85742091560843],[-128.55248948961915,58.85925483452255],[-128.55379997198366,58.86102791385095],[-128.55511221520223,58.862917799236186],[-128.55554212085897,58.864860159341575],[-128.55509508448498,58.86600102977518],[-128.55309490250625,58.8686270406278],[-128.55087483171386,58.87085267048604],[-128.54976289851973,58.87256322024729],[-128.5497539799381,58.873884647050104],[-128.55172211839874,58.876679148615956],[-128.55302878182727,58.87943208204355],[-128.55344880199516,58.88257012490033],[-128.5532073686007,58.885765495170496],[-128.55032458634165,58.88862374017341],[-128.54944152771955,58.88890988233297],[-128.54657098245647,58.889017380183525],[-128.54149798617215,58.889237736883665],[-128.5404970357693,58.8900922795422],[-128.541474142049,58.89272566378371],[-128.54101629353042,58.89558350640124],[-128.53735973630413,58.89797050528279],[-128.53481191199936,58.89950989635969],[-128.5320432814636,58.90121512505584],[-128.52729278503557,58.902237905583156],[-128.52276141285796,58.90326545912658],[-128.51878424063818,58.90388715032851],[-128.5185498865617,58.90565320488577],[-128.51842705310878,58.907543045871044],[-128.51840763556598,58.910401743602726],[-128.51828160279817,58.91262423193777],[-128.51209060488614,58.91433816073544],[-128.5041209964769,58.91728887297381],[-128.49692168401978,58.92030593408775],[-128.49360665169877,58.92122037653698],[-128.48851994189303,58.9218344341902],[-128.48476266207146,58.922567951260255],[-128.48055441031434,58.92404660744954],[-128.47467768706272,58.927397999230564],[-128.4716762032599,58.92974438775083],[-128.47000031811908,58.93173418808561],[-128.46954780802085,58.933054696680976],[-128.4704174392602,58.93454008025498],[-128.47194765994726,58.93659778164869],[-128.47346644122467,58.939914098724365],[-128.4752074038629,58.94294774720334],[-128.47498520803228,58.94311356670237],[-128.476283732458,58.9462630934498],[-128.47681562997212,58.94842875278204],[-128.4767954245195,58.951404426554866],[-128.4753398933253,58.95351619695924],[-128.47532607458524,58.95506253736352],[-128.47574592956184,58.957401047779655],[-128.47727328065304,58.959863337868725],[-128.47793364051066,58.96026487081933],[-128.4816829028086,58.961356487159456],[-128.4863183304717,58.96217122134964],[-128.49293856535436,58.96343506031],[-128.49823588045388,58.964533981563086],[-128.4994496953349,58.964700583076564],[-128.50308965341645,58.96562284266411],[-128.50506741134066,58.96734852570932],[-128.5054943697955,58.969237432947935],[-128.50558818972064,58.97179765099459],[-128.50534956331362,58.97397742606761],[-128.50365829561395,58.978143464779436],[-128.49977209222467,58.98036295587201],[-128.49600437859905,58.98126772822291],[-128.4919117829441,58.98137825876218],[-128.48869860400123,58.982227782352574],[-128.48459650431388,58.983479908725094],[-128.48270618578715,58.98489856569048],[-128.48281497068183,58.98507637939355],[-128.4846797310928,58.986849405154004],[-128.4839716803295,58.99221994253877],[-128.48395421943698,58.99439570842457],[-128.48304135679433,58.9978102950049],[-128.48169610159036,58.9999831795406],[-128.48136054154025,59.00050166436066],[-128.46910777046585,59.007177627606964],[-128.46613928205198,59.01127642851499],[-128.46805306845422,59.01500862517847],[-128.47057592448695,59.021372831161806],[-128.46494337193545,59.02557362208503],[-128.44448263292895,59.032943189177686],[-128.43858407320823,59.033767452451094],[-128.43252620564144,59.031843414890254],[-128.4242504538643,59.029904439784055],[-128.41281750525232,59.03978812562087],[-128.41264792842122,59.04236219170555],[-128.41633790819526,59.045983041074265],[-128.4325609310829,59.064907951466296],[-128.43282721241522,59.06782505372159],[-128.42933953714294,59.069855727203766],[-128.4230821799115,59.07153968567791],[-128.4190281645868,59.074029607484945],[-128.41861426879032,59.0775161498133],[-128.42039731718586,59.082042822060004],[-128.42683593609388,59.09203441856338],[-128.42969414632063,59.09834022052622],[-128.45587473999842,59.110911120729],[-128.48631797079136,59.106569099484766],[-128.501808727147,59.09927472250628],[-128.50932462113929,59.09594574678492],[-128.51592349074792,59.093927863249924],[-128.51925376864943,59.093992657069926],[-128.52332366347503,59.09619263264331],[-128.52765043431324,59.10221799297453],[-128.52598449555146,59.107760246910935],[-128.52132341750107,59.11288100157042],[-128.51413099541324,59.11668129490004],[-128.503933672755,59.12050904133955],[-128.4955272087138,59.12361116362205],[-128.4776286153223,59.13889672032137],[-128.48998210606945,59.14416727335827],[-128.49723813916214,59.14844152967424],[-128.5041460656975,59.15356702925864],[-128.50673154338045,59.157755051388044],[-128.5109254143082,59.159665729122764],[-128.51262602803482,59.163627074331075],[-128.5090751409373,59.16858353776182],[-128.517071117806,59.17514552262041],[-128.52543216611346,59.174848398082034],[-128.53525947785255,59.1793076157101],[-128.5434469147918,59.18220488479527],[-128.555889376724,59.18415945343041],[-128.56274281529124,59.187053443168395],[-128.56470441931273,59.18940890756565],[-128.5675141141929,59.19411359397748],[-128.56993227386556,59.20190109678681],[-128.55737464115717,59.20566911738955],[-128.55566510649345,59.20760732907105],[-128.55314401246596,59.21119726356229],[-128.5493916555306,59.21495385082158],[-128.53815181062808,59.21953200774221],[-128.52860849520866,59.22268419738371],[-128.52075984340485,59.22458167797051],[-128.51012891218681,59.22618770658043],[-128.50519132096107,59.22764450880336],[-128.50291403407687,59.22992512370329],[-128.5045011940082,59.23415890522941],[-128.50985538453583,59.23973603760091],[-128.51196761017133,59.240147197739866],[-128.52089085832026,59.24037093319513],[-128.5398813742517,59.23943762628123],[-128.54876908522093,59.24160274599379],[-128.55518333615447,59.24472153006718],[-128.55836674669328,59.247477379334825],[-128.57841916154393,59.26800477702049],[-128.58779084939812,59.274799434278926],[-128.59499053468218,59.27815379830297],[-128.60648682739796,59.27883641516109],[-128.62070882812327,59.27695696547015],[-128.64306919175078,59.27608053674673],[-128.651333573466,59.2763536217703],[-128.66418718010638,59.276006972716985],[-128.67641043155137,59.27302703135331],[-128.68774991189704,59.26946958913795],[-128.69279861285472,59.26788702343306],[-128.70622210628989,59.266571865258854],[-128.71930023634638,59.26581984865346],[-128.72625402999637,59.26378469830372],[-128.73353281203322,59.26238134733501],[-128.73999922764685,59.263035489968516],[-128.7446977877918,59.270830223721696],[-128.75020809051037,59.27651298383211],[-128.7603646284447,59.28570064345354],[-128.76662223621005,59.28578215922362],[-128.77153439412413,59.28631319422959],[-128.7765130888828,59.29016187410412],[-128.7819393852845,59.29424426321864],[-128.79042516307624,59.29512533050043],[-128.79306162262023,59.298912937696166],[-128.7932296603424,59.30348812976937],[-128.7877290046476,59.30523650072596],[-128.77810447472373,59.305781394838455],[-128.7774232468393,59.306694632967044],[-128.79338881924446,59.31812944394599],[-128.7937811360567,59.32253832417768],[-128.80055589778527,59.326674007479106],[-128.80051636761888,59.330111171089676],[-128.80338298451127,59.33377725955641],[-128.80277723307296,59.33766675778898],[-128.8043111432763,59.34046932823647],[-128.80876374949426,59.34260085997626],[-128.8125507082576,59.34409810728538],[-128.813861232086,59.34702211879722],[-128.81776504595214,59.35818775195705],[-128.82322583610556,59.36037934852015],[-128.82353873347634,59.362604044173565],[-128.82091536948826,59.36671496986311],[-128.82156119384678,59.36894189373106],[-128.82591626381793,59.37032834955485],[-128.83217200013337,59.37206260278374],[-128.83494613151763,59.37453377432491],[-128.8352393235778,59.378306336605334],[-128.83981250011192,59.380434662778086],[-128.84640574393745,59.3819994778782],[-128.84880031752706,59.3888147324257],[-128.85135679017463,59.39082233767747],[-128.85378978227064,59.39414601208485],[-128.85406502109376,59.41073997571223],[-128.85604121160674,59.41497290381507],[-128.86268937254496,59.42323011508765],[-128.861085247189,59.42635841033885],[-128.8661562576749,59.43547604540775],[-128.8564803904567,59.437736443534234],[-128.84669788751157,59.439188555448],[-128.83670037104238,59.43978959800649],[-128.82804154345004,59.441199354516456],[-128.82039015438875,59.442606042571754],[-128.8126369830607,59.44315060508986],[-128.80565651758266,59.44490273741104],[-128.7917982249753,59.4488627250657],[-128.7825480458682,59.452377910935084],[-128.7730549774529,59.45686905743189],[-128.7662554242265,59.46153073490577],[-128.75968524155786,59.465800617291315],[-128.75447450198445,59.4688644899285],[-128.749069805515,59.46970960128819],[-128.7395404228603,59.46824273864886],[-128.73382027728556,59.46752791925204],[-128.72515582937714,59.4684723419438],[-128.7154660420941,59.470318057099455],[-128.70272347802705,59.47336531306726],[-128.68894455402557,59.47788006323549],[-128.681936145414,59.480652067991834],[-128.6770592622239,59.48326560530083],[-128.67553452697516,59.48743387843511],[-128.67545038878504,59.49275305731087],[-128.67437219434393,59.496930755754015],[-128.6682413295445,59.50055791957668],[-128.6656310614963,59.501994873072064],[-128.6388425239995,59.51673126763908],[-128.63126952098753,59.518872572034816],[-128.6220108554261,59.52065840551799],[-128.59390797917257,59.52516345654868],[-128.5868962481493,59.527129840782706],[-128.5605710748092,59.53232369581557],[-128.55347208058637,59.53257141384763],[-128.5435635357502,59.532798287821365],[-128.53304895987586,59.53503297304395],[-128.51641588716225,59.539123395060074],[-128.50115563954836,59.54207137010233],[-128.48740469152202,59.54267825157035],[-128.47435882827818,59.5419215865267],[-128.46941408998973,59.54137978285236],[-128.45609970454566,59.54267759100409],[-128.43268110154926,59.547399495665296],[-128.42966682140377,59.551150170897934],[-128.43165338957795,59.55785449707632],[-128.43435614710017,59.56279180889092],[-128.42732698658946,59.56469630040782],[-128.41258680684768,59.563747335532774],[-128.4100243300929,59.5721415452937],[-128.39760841064154,59.577610899035726],[-128.38239221661348,59.57751261705575],[-128.37773094920055,59.57914001426769],[-128.37172632371636,59.584884103721244],[-128.36863675817477,59.59126216409573],[-128.36860114933958,59.597273306587276],[-128.3722076976714,59.60187275312531],[-128.38048360172223,59.60478168496089],[-128.3893059890434,59.6086075838814],[-128.39149573372222,59.611197419653934],[-128.38951975978713,59.613759862899535],[-128.38356380097255,59.61732633598521],[-128.39321236733267,59.619671249781966],[-128.399482315876,59.621767876628304],[-128.4059107688569,59.62678600322761],[-128.41530947046078,59.635135890708796],[-128.42235022274846,59.64313043709419],[-128.39868026843547,59.645789894331415],[-128.38773598503343,59.650009428361365],[-128.3671336720687,59.66074573466424],[-128.35132127069576,59.660410605334285],[-128.3480849806605,59.65878242167896],[-128.3376731788782,59.6506517800204],[-128.32957532709042,59.64065518813711],[-128.31482440003987,59.63048123594191],[-128.30221096105038,59.62501263894195],[-128.2794567526169,59.61913363015349],[-128.26763818021877,59.61802204030142],[-128.2575487302636,59.61960773189267],[-128.24648098157508,59.62381782675202],[-128.23309826708984,59.625949713433194],[-128.21513334634574,59.63026776146352],[-128.19706370829843,59.63418920824639],[-128.17992728510816,59.63703193526954],[-128.1698459040089,59.63803519982485],[-128.16116142990816,59.6376214132097],[-128.14783889466347,59.6340305893384],[-128.12663602331364,59.6296774191301],[-128.1099139168369,59.62312993173052],[-128.09424069158484,59.61572809716023],[-128.08202937333638,59.609622463576585],[-128.07498137227722,59.59096956306662],[-128.07473804302967,59.584846553720965],[-128.0674015341083,59.5784334360298],[-128.05736782477874,59.57177211263944],[-128.0465067294648,59.56641782006556],[-128.03541262727958,59.56460161438421],[-128.02377321926122,59.56551826647551],[-128.01167969206656,59.56655745835637],[-128.00263682734197,59.56321563652372],[-127.99937820800666,59.561949162506785],[-127.99295915083493,59.561798482897686],[-127.97239154825134,59.562244859605],[-127.9606874297383,59.56488431425666],[-127.94964583363941,59.5700862720284],[-127.94076951805935,59.57605777456817],[-127.93420679263018,59.58359784519917],[-127.9327680744472,59.58988806686134],[-127.93023175610553,59.594016509919044],[-127.92438588891258,59.59710222126872],[-127.91761611431099,59.5996246751556],[-127.90899492033482,59.60376454098096],[-127.8997082804711,59.608254820354325],[-127.88305221820521,59.61168389019142],[-127.86157381764315,59.61269258702114],[-127.84859259803997,59.61202900356474],[-127.83555510793258,59.60981763691261],[-127.83067493265008,59.60575276752255],[-127.82433674560721,59.5988012378242],[-127.81328263725923,59.59211800377617],[-127.80819968876624,59.59304776647183],[-127.80601323829339,59.593444998123424],[-127.80318183640972,59.59609948347737],[-127.803010963044,59.597585994152375],[-127.80063324187572,59.60039648315273],[-127.7976135050132,59.60407883692075],[-127.7954618231223,59.60689533428758],[-127.79440500838433,59.60884308226432],[-127.79283818452018,59.60914215247832],[-127.78866642416608,59.60906990074309],[-127.78552057421773,59.60933520202138],[-127.78132554290387,59.61176388344852],[-127.77838129495335,59.614527304449275],[-127.77476773855872,59.61747013135564],[-127.76598625281585,59.620919344014226],[-127.75703416261562,59.622651917939386],[-127.75101574246608,59.62465290232361],[-127.74991011832421,59.62522455864278],[-127.74965329339614,59.62762972856931],[-127.74970441562152,59.629113437151084],[-127.75113748030842,59.634744987607505],[-127.75140956594767,59.639311641332014],[-127.75036771709027,59.64177172546984],[-127.74815829550988,59.64315791800615],[-127.74472767714568,59.6450091966643],[-127.73816655956638,59.647754147529014],[-127.73442112873659,59.65030182430793],[-127.73515795361182,59.65206493665335],[-127.73864826476152,59.655224149321484],[-127.74088708676588,59.658057075944704],[-127.74405019945819,59.661454200046194],[-127.74520833608784,59.665542158411924],[-127.7472447328789,59.66906133541563],[-127.75216866294427,59.67106876646764],[-127.76140554540503,59.673903287363906],[-127.76505326767439,59.67494576106605],[-127.7700763804654,59.676501501910764],[-127.77512060291717,59.67867759307699],[-127.77794338156163,59.681898531442194],[-127.78008519032981,59.684957189711994],[-127.78283605571045,59.689321634484784],[-127.79076427383195,59.69325079003012],[-127.79191411794176,59.69380284646865],[-127.79169403130265,59.69705369690985],[-127.79047017684142,59.700776321287464],[-127.78740840276338,59.70360478364319],[-127.7875193759672,59.706680485489485],[-127.79089761723468,59.709615326934944],[-127.79530868697442,59.71288772863819],[-127.79461777398096,59.715631891546984],[-127.79246393802303,59.71861080775633],[-127.79188712344433,59.72147048651272],[-127.79089956842363,59.72547816568702],[-127.79090608250523,59.73192053432963],[-127.79229758804689,59.73613170176348],[-127.79593303127899,59.742878495300594],[-127.80062189024207,59.74746114775587],[-127.80576127273493,59.75197488472555],[-127.81012185091058,59.75677753148329],[-127.80913072502233,59.76060569231501],[-127.80301509642126,59.763573259267076],[-127.79949948816763,59.76651609605509],[-127.8037624669143,59.771788266709095],[-127.80609188843701,59.77359389559072],[-127.8104221457231,59.77747928268749],[-127.81517631320237,59.78370776178548],[-127.81545587075264,59.79135319576014],[-127.8145960577135,59.79256122181431],[-127.81077941184722,59.79664226117126],[-127.80494741750123,59.801433175296985],[-127.79856648713894,59.806743882001406],[-127.79389601816949,59.80917964804138],[-127.78505724373612,59.81234345893785],[-127.77119622948757,59.817838199307],[-127.76392029189363,59.82371667448951],[-127.76063816951142,59.827114775043185],[-127.75654026262008,59.82994709062469],[-127.74643131424013,59.83266544307303],[-127.73776608040762,59.83468118431382],[-127.72858006048665,59.83807073627243],[-127.719870630428,59.84208379727895],[-127.7177081897127,59.84867103420253],[-127.71426818713815,59.85434698422047],[-127.70465545791721,59.85876619778226],[-127.69591582170438,59.85866530720397],[-127.68881063568581,59.856618238696164],[-127.68260554950638,59.85421802985628],[-127.67186579948626,59.851916780458296],[-127.66218068125498,59.85068215626707],[-127.66133472066458,59.85616391397257],[-127.66204253748612,59.86054733114407],[-127.66658595842095,59.864273217899395],[-127.6744854920875,59.866257954441686],[-127.67878006716373,59.86931149458199],[-127.67994215431366,59.87357251667778],[-127.6778966139526,59.87696301419065],[-127.67467480345593,59.8792155578433],[-127.67179429327199,59.881463961021694],[-127.67209139631822,59.88722047985109],[-127.67520348865654,59.89204342504615],[-127.67654087520629,59.89830064440764],[-127.67742365388689,59.900918195547035],[-127.68851194889334,59.89603288903639],[-127.7022557111261,59.89597468012933],[-127.71834967799971,59.898172451895846],[-127.73890582305498,59.907801673534586],[-127.7427978629373,59.91529601532871],[-127.74410994009436,59.923605564133986],[-127.74525599269201,59.933753544662565],[-127.7425382878244,59.93748681496175],[-127.73445019499954,59.940521414165865],[-127.72780524158581,59.94246663755033],[-127.72545239505156,59.94362074203644],[-127.72119212629603,59.948857812220176],[-127.72161969666331,59.95466748820463],[-127.7232004876454,59.97124709027911],[-127.72785486102738,59.98084891782212],[-127.73015237781816,59.99480088072238],[-127.72921450744029,60.00008774269539],[-127.83695030774581,60.00039669357853],[-128.21274421336733,60.00082850831405],[-128.60000443831964,60.000222043389314],[-129.04946329943564,59.99818170561853],[-130.5757127976026,59.99849900310536],[-131.10858430939257,59.99832095540589],[-131.64519199267133,59.99793065931641],[-132.401868786655,59.99820120570144],[-133.8152138884425,59.99823536432027],[-134.61141543137754,59.99825384329495],[-134.88893986000426,60.00223207902473],[-136.85245544825068,59.998100714803826],[-136.8525138428472,59.99813259695702],[-136.85271877549943,59.998273737209786],[-136.8528867023421,59.998388160867286],[-136.8531101813402,59.99853810251911],[-136.85327931637147,59.99867861285752],[-136.8534302856142,59.99881143020442],[-136.853581255982,59.99894424742384],[-136.85374971038604,59.99906773603051],[-136.85388336289992,59.99921783693228],[-136.85396495228864,59.99938792525693],[-136.85400399452462,59.99945432379811],[-136.8547873274981,59.99945256023924],[-136.86748476713188,59.99944397466532],[-136.8772832921283,59.9994360781467],[-136.882708045242,59.99943413323806],[-136.90077714143783,59.99950308115904],[-136.90252164489766,59.999505619172865],[-136.91751899623156,59.99956203895059],[-136.92958339463783,59.99961561349746],[-136.95238665457555,59.99969396945919],[-136.96619141476282,59.999758020127445],[-136.98475988989935,59.999830446396906],[-137.01673478839737,59.99995223986842],[-137.06582308380894,60.000145865483084],[-137.06690498883847,60.000146558926154],[-137.08479579599586,60.00021630792415],[-137.09759933578044,60.00026507475413],[-137.10149914809526,60.00028379815265],[-137.10344087382023,60.000288645607135],[-137.1168001750727,60.00034949847624],[-137.13880671148306,60.00043842103358],[-137.1641956182461,60.00054586460544],[-137.1658554347975,60.00055078158205],[-137.17895085049213,60.00060409540123],[-137.19977086208326,60.00069889005438],[-137.2106221797305,60.00074268678734],[-137.2407236960236,60.00075579690932],[-137.24773340968153,60.000762360205584],[-137.25806237106804,60.000766031301424],[-137.26687673496278,60.000768310577506],[-137.31323635056742,60.000772638919905],[-137.32212457264953,60.000768878942395],[-137.34487931241839,60.0007625453201],[-137.36368674266646,60.00075416257739],[-137.38337315103658,60.000742138789995],[-137.38585615720567,60.00074218948078],[-137.3991645781273,60.00075192009021],[-137.41984840134376,60.000756924118505],[-137.46049753065793,60.0007690176007],[-137.53143872767154,60.00074781059956],[-137.59338718041136,60.000776849419246],[-137.691473784337,60.00078075667107],[-137.73632080576837,60.00072112486642],[-137.7950257749444,60.00073949169065],[-137.8572857946129,60.000741072278934],[-137.90044106285703,60.000720590239084],[-137.94490249655576,60.0007243192707],[-138.00055589632382,60.000894630848805],[-139.06222268537968,59.99960626795072],[-139.05474258161965,59.99477494149259],[-138.79946803276445,59.92458414530065],[-138.70829136507103,59.90626090861531],[-138.68035425358914,59.845302064853946],[-138.66954084133107,59.80959169152114],[-138.62707311555823,59.76851112390613],[-138.03533359143978,59.46682692316017],[-138.02337320526902,59.46063863363388],[-138.00054763550798,59.44883147336357],[-137.9640030559676,59.42990691385635],[-137.95810132920448,59.42684636993442],[-137.60786433361432,59.24377693667323],[-137.54260385795482,59.106405444137856],[-137.50551571115636,58.999985876057416],[-137.5004445446074,58.98538057427455],[-137.52655512722964,58.90635443654343],[-137.45214973220433,58.908340410692624],[-137.28327152730355,58.999985476058846],[-137.28324224286112,58.999999282880815],[-137.17601874133885,59.03215159278435],[-137.08495190982785,59.062768332828796],[-137.037322165369,59.07873034018619],[-136.97000636449678,59.10124436247577],[-136.87705120067898,59.136163900292914],[-136.8290371263821,59.1599655723572],[-136.5847225717385,59.16585737008533],[-136.4899878644698,59.259764237909735],[-136.4960456867097,59.27511668086155],[-136.46953352199088,59.284063443822426],[-136.47261627039612,59.31800599873637],[-136.47298534444522,59.32199462417102],[-136.4776805124054,59.37620804775663],[-136.4774407607405,59.46580504207704],[-136.37407408466976,59.44980548184178],[-136.37271732863843,59.44959536648623],[-136.36851764091554,59.44894402909803],[-136.3627780882405,59.45035559261219],[-136.36221559441748,59.45049110010231],[-136.3623108203597,59.45050892048723],[-136.36259648657995,59.45058169355219],[-136.36288188003223,59.45064199105563],[-136.36311252056282,59.45071095529952],[-136.36341791710402,59.45084244727605],[-136.36357898325727,59.4508996111184],[-136.3637784929015,59.45101862965542],[-136.36395915439874,59.45113793159531],[-136.36410663477568,59.45128472376667],[-136.36416655858366,59.45144606205861],[-136.3642082605997,59.451615588604646],[-136.36426818540951,59.451776926943914],[-136.36430797359068,59.45192047044157],[-136.36431288608765,59.452028017652495],[-136.36431569420571,59.4520993723114],[-136.3643554273462,59.45222928840775],[-136.36439811991883,59.45237715719652],[-136.3644558317993,59.45252503082678],[-136.36449757666963,59.45266388331471],[-136.36457352680287,59.45279788771966],[-136.36464993895302,59.452948896956386],[-136.36476197858846,59.453109718623196],[-136.36485531370326,59.45324809362235],[-136.3649679124609,59.45340887323259],[-136.36513278944534,59.45356003550519],[-136.3653330842931,59.45369717031682],[-136.3655322448857,59.45382075869471],[-136.36573092307145,59.45395801498315],[-136.36587723007258,59.4540776322878],[-136.36605871439406,59.45421504747443],[-136.366245319727,59.45432594928827],[-136.36189988808908,59.45375464570929],[-136.35807850433844,59.44907137901812],[-136.3026977496212,59.46231532333996],[-136.23514495155558,59.522651343601225],[-136.23741285937822,59.55750336257711],[-136.35021194464335,59.598007902500015],[-136.189658443117,59.637820749186865],[-135.99977759373894,59.655017969533844],[-135.95166352642403,59.661800937542154],[-135.47918744185603,59.798042326359976],[-135.35946664518593,59.737873191800006],[-135.25239871785215,59.69793726221047],[-135.23160740782694,59.69817055355993],[-135.21730755799103,59.66205765879292],[-135.15352870993618,59.62487439624885],[-135.13595965726796,59.62374043228242],[-135.11483288041728,59.62233983913796],[-135.02601209550545,59.5629164317576],[-135.02510658766454,59.473847062776436],[-135.07345617219872,59.451765071034586],[-135.09829681868501,59.427093232690005],[-134.9878357066885,59.386192673211895],[-135.0279429463674,59.34506857696497],[-134.95753453982277,59.280240145567596],[-134.69963878409402,59.24792887746274],[-134.67665517333154,59.19041823064389],[-134.56497670144446,59.1306837967488],[-134.48106764027096,59.131159940000366],[-134.44448000153199,59.08875317450023],[-134.37949529177146,59.03876228615348],[-134.3949814723213,59.00010837792467],[-134.40458790687333,58.97962097512302],[-134.31301156910575,58.96311994193226],[-134.33395513513713,58.924309001674146],[-134.256701642706,58.86164813048936],[-134.2552517326845,58.861202650751686],[-133.83822434244593,58.73047840560437],[-133.70110560709114,58.611450493152816],[-133.37602599366943,58.431746589500555],[-133.45931869469968,58.38876209830661],[-133.34411122954677,58.27790778844444],[-133.27874158166418,58.234863225377495],[-133.2427411108601,58.209218109392665],[-133.17789164221466,58.16053797750495],[-133.16936441999837,58.15352706329963],[-133.1559448984228,58.134059997519586],[-133.12235308739957,58.08342777360582],[-133.0672290699981,58.00005130516571],[-132.8678144049678,57.84038436864562],[-132.86727271202,57.83973643345486],[-132.7464001319254,57.69424777162892],[-132.66905249038552,57.62644326205541],[-132.55553558559913,57.5006660928158],[-132.4648849672236,57.42832171998007],[-132.39776957355082,57.37393992626353],[-132.36849243099815,57.35059751926746],[-132.31959906902458,57.2966455241741],[-132.24624552704958,57.21165039817932],[-132.3658302975748,57.091269141778746],[-132.04392870784048,57.04510602145448],[-132.06377874364034,57.00005695155241],[-132.12103474800978,56.87398370178612],[-131.87053621491495,56.80697288576414],[-131.8980498617292,56.754469536049264],[-131.85766612741858,56.70424364112611],[-131.84775027538234,56.66208294778403],[-131.84168290579927,56.636224102208324],[-131.83230200949464,56.60063284536978],[-131.57930218801826,56.61344953599196],[-131.47021636680918,56.55387107774184],[-131.17240029734697,56.451095929781],[-131.0866648953095,56.40713289114635],[-130.78096686398786,56.3673379532281],[-130.62754710582792,56.27003836876449],[-130.62372665969028,56.26730322747155],[-130.59422614772757,56.26056529372383],[-130.5392615639207,56.24752816244836],[-130.46394751177232,56.242769743303825],[-130.44754072085865,56.20296675581036],[-130.43640910289554,56.17463338790889],[-130.4226295289504,56.1417413912501],[-130.34702762808254,56.12851094675459],[-130.2438234285662,56.096763543403625],[-130.22619792063782,56.09996298977128],[-130.101719308489,56.122494251296345],[-130.00960189287036,56.0173321785347],[-130.00364249813993,56.011031906251795],[-130.0060630740834,56.00713237375398],[-130.00200814391937,56.00005398077717],[-130.01606807897338,55.912746865870666],[-130.00213154096645,55.912667976844446],[-130.00208342156438,55.91021059330933],[-130.08426164900303,55.82097046468687],[-130.12388881420884,55.80525061366311],[-130.15038005648228,55.766822105320465],[-130.14573501482155,55.71485862352811],[-130.11131191314666,55.682315554519526],[-130.126413423329,55.58077848820747],[-130.09091655404714,55.50156101528003],[-130.04062910337365,55.453911167758875],[-130.01805266591808,55.33852466824567],[-129.97393551132407,55.29978458772338],[-129.97330100309944,55.28178740534525],[-130.1007971471309,55.19313130931442],[-130.14447838121436,55.14205602935251],[-130.15066638782005,55.124807582502314],[-130.17851266108593,55.09213097220891],[-130.18625990405022,55.061778863389115],[-130.24718731071385,54.9998701209583],[-130.2827703849277,54.96487901003696],[-130.3271729064141,54.92121064708908],[-130.39250949911718,54.89081708803368],[-130.42939669233388,54.8697681172053],[-130.5296170983689,54.80152722687031],[-130.59195732799412,54.790795477474596],[-130.60592337191994,54.78465331398684],[-130.64779917509634,54.766226176895344],[-130.64164839934043,54.755155345805676],[-130.6306488949593,54.744330012781255],[-130.62905663578167,54.73033966795039],[-130.6226096332751,54.716550159431335],[-130.60159594480288,54.703289486062594],[-131.00117036830275,54.69889821675219],[-131.19577543340597,54.69298417012296],[-131.42156012724843,54.705358629863],[-132.01702263385448,54.67788821529675],[-132.68203042833042,54.66131374571547],[-133.93440246777618,54.23025496692671],[-133.45536254987877,53.10081314458159],[-133.45531205825955,53.100689594047275],[-132.60854119189614,52.372665204212055],[-131.71801038202236,51.6633007910513],[-131.20198261399824,51.617099631335044],[-130.7226837922304,51.717999603985405],[-130.15839615122493,51.83362586752288],[-129.63165632846273,51.98932669673295],[-129.63158949604681,51.98934621540206],[-129.00168771616853,52.32941358139882],[-128.99374004154558,52.33342772372428],[-128.9930582666909,52.33378080406584],[-128.98637334773383,52.33699378349214],[-128.9841062896663,52.33816348668521],[-128.9826245055809,52.33890677638553],[-128.9800010980401,52.34024655790885],[-128.9752515063529,52.342727488361476],[-128.97114913640146,52.34519779746835],[-128.9699428517159,52.34598097668286],[-128.96558706864082,52.34853384927774],[-128.96325449051196,52.34994488386951],[-128.96214281483503,52.35059597138537],[-128.95897311423536,52.352561211080285],[-128.9574341193696,52.353650618229445],[-128.9563537154437,52.35445175675288],[-128.95515332613883,52.355194222038726],[-128.9528298667091,52.35686957475345],[-128.95200822243,52.35750138749574],[-128.94705708079698,52.36116310764871],[-128.9431957805596,52.36430160487256],[-128.94200587407886,52.365339846339516],[-128.93863812784693,52.367911974301656],[-128.93476091378253,52.37106401028182],[-128.93392435935556,52.37175495818318],[-128.9322179477675,52.37344676454046],[-128.93141297894556,52.37429228638305],[-128.93040609862896,52.37506547536098],[-128.92963590787434,52.37565149306827],[-128.92765507693196,52.377631192965644],[-128.92368772028564,52.38175890152651],[-128.92289015196255,52.38269110942193],[-128.92195879783324,52.38361938896105],[-128.9209976085986,52.3844883824024],[-128.91993270622027,52.38549852740858],[-128.91815935195095,52.38748235174638],[-128.91547486439794,52.390917775681935],[-128.91399775444805,52.39263154396733],[-128.91321229159442,52.39329915780438],[-128.91213258416568,52.39434156482912],[-128.91172637625291,52.39480331346405],[-128.91129070010055,52.39530619665248],[-128.9107739763521,52.39595919186112],[-128.9104042386007,52.39637515326427],[-128.91005846752014,52.396927941913695],[-128.90980290357163,52.39756204690262],[-128.9096191332789,52.39792286017349],[-128.9092064246179,52.39846665917651],[-128.90874984316838,52.39917928410661],[-128.90842541577754,52.39980333302506],[-128.90797664054904,52.40041366489172],[-128.90756124978256,52.40112300813717],[-128.9071013374667,52.40189628981706],[-128.9065216025321,52.402709589501015],[-128.90571558597858,52.403950944666214],[-128.9055033937668,52.40443754618624],[-128.9051450572958,52.405516232262],[-128.90452414545047,52.406894860773875],[-128.9039544443717,52.408282300630134],[-128.90354472364217,52.40932412576346],[-128.90322408153736,52.41025264615116],[-128.90270006420116,52.411594622565126],[-128.90231056289954,52.41281430549108],[-128.90143510191152,52.41434230758998],[-128.90035644028444,52.41704044426483],[-128.89946939894122,52.41904213710549],[-128.89807211083786,52.42243140948442],[-128.89735237885662,52.42393696267672],[-128.89680779689468,52.42492376826041],[-128.89551678451346,52.4280354779768],[-128.8948096713099,52.429909785426275],[-128.8941425747615,52.431310781799446],[-128.89368598987284,52.432525911582495],[-128.89341076172374,52.43338144934746],[-128.89231921662133,52.43573760099882],[-128.89194492698994,52.436807071875705],[-128.89151188837158,52.43792175386847],[-128.89110899487056,52.43890891305825],[-128.8906836662795,52.43985063122111],[-128.89030956503603,52.44095149898758],[-128.88981813752676,52.44279066115],[-128.88948920614,52.44386459749867],[-128.8890406563618,52.444983568505435],[-128.88721479965554,52.45055795676075],[-128.8866333288515,52.452377997464346],[-128.88627086159417,52.45391663268198],[-128.88572877281908,52.45550009810635],[-128.88487773009962,52.458349368989445],[-128.884275723297,52.4609529430424],[-128.88386823125362,52.46242759795925],[-128.88323219369133,52.46453894921073],[-128.88289558440925,52.46554459991529],[-128.88210130854887,52.46788366799557],[-128.88148610745554,52.4692894075709],[-128.8810442717905,52.471314593657326],[-128.88076063831866,52.47315411316792],[-128.88039876115047,52.474555819913974],[-128.87792117526317,52.484683742631425],[-128.8766619243775,52.48900691791759],[-128.87620652548856,52.48999414361118],[-128.8759493832758,52.49126870390471],[-128.8756488516199,52.49248823456345],[-128.87531992403694,52.49339380260041],[-128.87485739234538,52.49433071294723],[-128.8742617746824,52.495900236779356],[-128.87373106973237,52.497889392971004],[-128.87332651174768,52.498962842543],[-128.87308499580817,52.499271687628486],[-128.87294750011327,52.49960376696997],[-128.87289933147537,52.49969806463778],[-128.8728900397086,52.499807664676716],[-128.87284495757098,52.50029339343721],[-128.87282536270703,52.500607980057524],[-128.87275353727003,52.50119084273828],[-128.87269577879093,52.50152825011146],[-128.87258273779017,52.502489052226906],[-128.8722727257554,52.50312714789545],[-128.8718654627094,52.503788389276735],[-128.87152753698595,52.504672286471866],[-128.87121256249773,52.50570649243962],[-128.87061547192343,52.508253648996096],[-128.87026498544213,52.509738560791504],[-128.86983414822245,52.51127873848671],[-128.86960039177143,52.51223071966337],[-128.8683961726758,52.51696009447519],[-128.86805379316218,52.51855472136358],[-128.86705703476068,52.52181670621122],[-128.8666770887807,52.52332026020828],[-128.86643037456426,52.52455074203174],[-128.86610280669726,52.52594026787561],[-128.86570691134312,52.52728883511284],[-128.86531583672368,52.529374848168445],[-128.86512372186232,52.53105100629074],[-128.86477684672502,52.53821975492851],[-128.86488853591393,52.539353918688825],[-128.86488187558749,52.54084714469569],[-128.8648140651811,52.54194981309348],[-128.86469643486984,52.54356635686412],[-128.86448097432333,52.54510172720228],[-128.86382019031927,52.54849556343428],[-128.86356654387143,52.54993034035064],[-128.86308130594466,52.55130181927236],[-128.86249495195935,52.55333368632255],[-128.8617953149073,52.55652315869593],[-128.86155855235629,52.55818521968989],[-128.86130083736933,52.56019890596853],[-128.8612859633807,52.56148758580768],[-128.8609615310876,52.56481701425674],[-128.86084202547607,52.56626979515419],[-128.86064177093417,52.56774585877816],[-128.86046271630448,52.570441854890596],[-128.86035063511162,52.57188154221145],[-128.86015208273258,52.57373053602501],[-128.85978254715815,52.57581703787113],[-128.85943330107716,52.577597927751775],[-128.85923393663748,52.57928315898203],[-128.85878259024423,52.582836056086656],[-128.85871735556918,52.58448041940818],[-128.8584430273515,52.58616578911189],[-128.85822891858032,52.588019625273624],[-128.85802757456165,52.58945418915675],[-128.8572571601811,52.592206108145476],[-128.85690719705872,52.59291013792722],[-128.8016803061475,52.59283119861739],[-128.79224889010317,52.592839071004946],[-128.77949482916188,52.59284852305203],[-128.773922550294,52.59285210914261],[-128.76599980456504,52.59285675524154],[-128.7550467669257,52.592862904326914],[-128.75493129492975,52.597676372509405],[-128.75433477176466,52.59769381550548],[-128.75323079871035,52.59773275583545],[-128.752476635867,52.59784532602209],[-128.75160303023063,52.5979853742086],[-128.75062431795408,52.59827539302051],[-128.7496603946645,52.59865198651909],[-128.7489363819301,52.598860274999474],[-128.74750273730578,52.59896693601606],[-128.74609276866983,52.599010210515196],[-128.7440474364482,52.59921590591904],[-128.74315958918012,52.599351181425895],[-128.74238976671228,52.59959584075594],[-128.74175529923755,52.59968589482959],[-128.73948133305637,52.59980377440781],[-128.73944739579773,52.599808501082244],[-128.7392465574508,52.59983620333476],[-128.73871300707023,52.5998840588802],[-128.7378648128871,52.59998863524553],[-128.73721202225448,52.60005274015737],[-128.73658236541604,52.60013143656379],[-128.73563575411865,52.60030335831649],[-128.7347513624569,52.60034820092003],[-128.73400996528594,52.60035771674572],[-128.73332676870655,52.60039502741078],[-128.73143517840612,52.60070680921873],[-128.73041515922608,52.60080133525806],[-128.72959121059122,52.60083687319414],[-128.72853249492232,52.600963127698165],[-128.72712009500532,52.60126028045564],[-128.72668423663805,52.60138991079058],[-128.72614341359122,52.601454702318044],[-128.72512318317388,52.60159012110022],[-128.7246655258971,52.60160977716241],[-128.72370476294898,52.60176399347985],[-128.7226616418831,52.60190328933903],[-128.7215739056597,52.60201053255874],[-128.72095140524786,52.60205701470026],[-128.71979751735464,52.602054742722565],[-128.71904119070214,52.60207740472306],[-128.71834989731678,52.60219165075556],[-128.71785516075826,52.60222503746666],[-128.71720191282634,52.60231202826806],[-128.71629367193418,52.60243411104873],[-128.71558872073388,52.60249369898007],[-128.71514106806913,52.60252542242897],[-128.71477584954755,52.60257317297497],[-128.71432073858367,52.60261852608351],[-128.70951279267376,52.60309474402618],[-128.70881441646316,52.60320011508981],[-128.70788403948498,52.60329460476467],[-128.7074406600865,52.60336489930502],[-128.70673581212878,52.60345582685477],[-128.70491107517785,52.603731981372796],[-128.7038594052061,52.60389878856043],[-128.7031013998388,52.604012800787864],[-128.70240276922792,52.604158516496284],[-128.70188150621044,52.60438817365869],[-128.70004059405932,52.60480538164041],[-128.6996271541392,52.6048665368155],[-128.69881676111922,52.60495705662116],[-128.6973460811074,52.605112178966195],[-128.69638628183904,52.605151740306646],[-128.69598819974644,52.605222056812856],[-128.69518599223284,52.60528095718036],[-128.69413964587562,52.60560738470962],[-128.69368023333223,52.60579126855172],[-128.69298867274094,52.60593284211931],[-128.6924619406309,52.606061637451916],[-128.69172632028005,52.60619412504125],[-128.69104983248184,52.60628094620891],[-128.6901944779483,52.60640776728961],[-128.68944294754908,52.60656696881224],[-128.68887904959723,52.60666407733353],[-128.68809835506167,52.606786363663424],[-128.68676186590753,52.60698761067093],[-128.6858320621533,52.60700451815681],[-128.68509567921672,52.607154926115115],[-128.68424916995264,52.60717214840162],[-128.68325926328274,52.607234159271215],[-128.68247208468296,52.60729766824286],[-128.68188677506305,52.60734869271897],[-128.68093536710134,52.60736044930556],[-128.67922526869654,52.6074770952547],[-128.6781975318082,52.60757077025657],[-128.67698950586424,52.607681472831565],[-128.67625338663376,52.60777742537343],[-128.67614912968264,52.607767477676624],[-128.67506071271072,52.607897284842984],[-128.6742491632152,52.608074585514004],[-128.67331052512012,52.60817290557465],[-128.672281290226,52.608376486512014],[-128.67164382475264,52.608422479535484],[-128.6705051108171,52.60842834217784],[-128.6698001370801,52.60846016697725],[-128.66763869524877,52.60871537814405],[-128.66716607065405,52.608748607416594],[-128.66647553443883,52.60878962009134],[-128.65712026004672,52.60916104329642],[-128.65596641267223,52.60916205653924],[-128.65588394265956,52.609175148277885],[-128.65448273320192,52.60921598587342],[-128.65361368241176,52.609228454794945],[-128.65073480541506,52.608867086257284],[-128.64895371185185,52.60874993264049],[-128.648017963407,52.60871620205414],[-128.64701504365266,52.608673327476886],[-128.64633253666366,52.6087095523521],[-128.64477880733628,52.60891803594647],[-128.64363097284777,52.60900123105641],[-128.64244507959307,52.60915762173688],[-128.64008980477414,52.60909257249341],[-128.639038005298,52.6090675671228],[-128.63731441025405,52.60907230010201],[-128.63628163533403,52.60901038491059],[-128.63375112953474,52.60892449927119],[-128.63121227038667,52.60889818106292],[-128.62922515004934,52.60852853329109],[-128.62848001593844,52.60831314757259],[-128.6276148826337,52.60810213577221],[-128.62655596392526,52.60783940835512],[-128.62551825831252,52.60759020955259],[-128.6233984123339,52.60719708831875],[-128.62218052602805,52.606996771294476],[-128.62138950128613,52.60683172069037],[-128.61994723124877,52.60663866169646],[-128.61845791427942,52.606523462401874],[-128.61729337629527,52.60628713056816],[-128.61576186801435,52.60607134694717],[-128.61442481778013,52.60584278196539],[-128.6132604173218,52.60563836742556],[-128.6114430980612,52.60543846288554],[-128.61086077432432,52.60531129289928],[-128.6082752947463,52.604955231537616],[-128.60595274903008,52.60455566862642],[-128.60507878747336,52.60444003127576],[-128.60417221433397,52.60444231231515],[-128.60362554506804,52.60442926587713],[-128.60306511750827,52.60435709056523],[-128.60274421544406,52.604313775564876],[-128.60229462600836,52.604314825522515],[-128.60167197561748,52.604162713860795],[-128.60105870076285,52.603814119256356],[-128.60064113978504,52.603626029396445],[-128.59832580596563,52.60317513110208],[-128.5946410089049,52.60288809671879],[-128.59064971239488,52.60349937518793],[-128.58886914786117,52.60483986056005],[-128.5881162236078,52.60726561849775],[-128.5875349757273,52.609363437504285],[-128.58704341123564,52.611583752523934],[-128.58679315631153,52.614506958060666],[-128.5864893533969,52.61711059411217],[-128.58593080645875,52.6200793092668],[-128.58487186543036,52.623316474222186],[-128.58366973382772,52.626622399428996],[-128.5825272277637,52.629937641326435],[-128.58138482845575,52.633503511850655],[-128.58017389512818,52.63654936964893],[-128.579075433592,52.63931290170612],[-128.57780409570682,52.64160639772159],[-128.57643487900236,52.64372203470361],[-128.57550757237834,52.64584248184332],[-128.57381634746378,52.64861451916289],[-128.57344217563266,52.64926201180569],[-128.572746343606,52.65083060218419],[-128.57144440625314,52.65352055600222],[-128.5705023937013,52.655928363843984],[-128.56926800666494,52.65947136463626],[-128.56844623910015,52.66242098252954],[-128.5677807413045,52.665243791418774],[-128.56672661851792,52.66861791594861],[-128.5657685774989,52.67113927740094],[-128.56435331971664,52.673811391408364],[-128.5626224692282,52.67632329639498],[-128.5610107180691,52.67828864788215],[-128.55922632824303,52.67991121646411],[-128.55726142019114,52.68110537180779],[-128.5553790023112,52.68209919910421],[-128.55439648046683,52.68259559409658],[-128.55464365323544,52.68297878620311],[-128.55471901570627,52.68348067548767],[-128.5549225135796,52.68445190001659],[-128.55514078423568,52.686120903984786],[-128.5553749369221,52.68793142779504],[-128.55573607875553,52.689896744081494],[-128.55631535526666,52.692067559370074],[-128.5567366995727,52.693704645516874],[-128.55754860584724,52.695701584845],[-128.55823978003195,52.69712025474324],[-128.55881889249406,52.69829239991021],[-128.55954792758902,52.69927286809453],[-128.55998883048434,52.69980768250489],[-128.56052247884324,52.70086923384128],[-128.5614744043291,52.702628705609975],[-128.56216431366644,52.70450212121968],[-128.56107671407497,52.70668975313149],[-128.5606179708853,52.70889557849862],[-128.56011535869558,52.71225968429807],[-128.55930420888745,52.71510401413275],[-128.55844831171856,52.71876851222709],[-128.55742000678023,52.721631004911856],[-128.5562867812733,52.72502228616784],[-128.55503244383118,52.72898307249383],[-128.55407794059073,52.7322190159068],[-128.5534838792782,52.735774537638825],[-128.55285243395483,52.73923385362942],[-128.55209320489922,52.74279351207952],[-128.55124355457136,52.74661303896735],[-128.55071641400542,52.74927497105632],[-128.5501140338751,52.753026285875556],[-128.54949757150928,52.75599852737438],[-128.5490084395758,52.75841400795507],[-128.54854915753984,52.761486536324],[-128.54809603454058,52.76477255147224],[-128.54715574434601,52.76808203584404],[-128.54617836540294,52.77147304792439],[-128.5449593592876,52.77508290620315],[-128.5433123092333,52.77912086577076],[-128.54203271602046,52.78251668420032],[-128.54122697895264,52.785228817977384],[-128.5403312106297,52.78813183646378],[-128.53943539300215,52.79128603693443],[-128.5383964327787,52.793879262644175],[-128.5373277084832,52.79631781136306],[-128.5365519454712,52.79846462639959],[-128.53573655127704,52.79980489914421],[-128.53531501328425,52.800515983276256],[-128.5352111664333,52.80095836635368],[-128.53518920123219,52.801746592215586],[-128.53512474230433,52.80333751674897],[-128.5351279068042,52.80520618724915],[-128.53492928866032,52.80726144045321],[-128.5345877813182,52.8090714016284],[-128.53449280512228,52.810712307368306],[-128.53419705560393,52.81338751339944],[-128.5340666988133,52.81607708329023],[-128.53418391366498,52.8188022356917],[-128.53400816886793,52.82146362086957],[-128.53364510238313,52.82363341102252],[-128.53314724601495,52.82661907774527],[-128.53272424584313,52.829691705756524],[-128.532518731632,52.83208907404937],[-128.5320497473452,52.834655270425],[-128.53158254709697,52.83769126821505],[-128.5312726372496,52.84077655951502],[-128.5310741783156,52.84342044542736],[-128.53086764767414,52.84548982495511],[-128.53043668226732,52.848042277555976],[-128.52993805098598,52.85063149816221],[-128.52967875087396,52.85308324972785],[-128.52938977386648,52.85509831226366],[-128.52863408426816,52.85720023369838],[-128.5279997886685,52.85927879358106],[-128.52755327901306,52.86158989374639],[-128.52715039914258,52.86369597964238],[-128.52647831893486,52.86561105561556],[-128.52624094776647,52.867479774772384],[-128.52586873383808,52.869649657141515],[-128.52522500425985,52.87149570649921],[-128.52500203411512,52.873027713926],[-128.5247415349893,52.87458631538666],[-128.5246614783619,52.87595378061838],[-128.52416727238187,52.877057099764095],[-128.5239880260515,52.87802358980457],[-128.5236150240117,52.87920896369735],[-128.52299281931914,52.88052639163561],[-128.522311207318,52.88161185982663],[-128.52106662429836,52.883035131025814],[-128.49736381056712,52.88308984237852],[-128.49707341990828,52.88255219105271],[-128.49701455197822,52.8823897347122],[-128.49691249041413,52.88223716621408],[-128.4966469731121,52.88209198990136],[-128.49627906909575,52.881883962345235],[-128.49616080948655,52.881756961596956],[-128.49596873560532,52.88165732675776],[-128.49585095577478,52.88152246655752],[-128.4956884376502,52.8813868788072],[-128.49554226304306,52.88125991406549],[-128.49532113041266,52.88120462517761],[-128.49509742577362,52.88116900841449],[-128.49478634192337,52.88116776318767],[-128.49453489271863,52.881103581001604],[-128.49443015415056,52.88111196655957],[-128.49416148630465,52.881119354818296],[-128.4941045054287,52.88110038098242],[-128.49404377628485,52.88106522361178],[-128.49395533383972,52.88093815315239],[-128.49386961378846,52.880794205655896],[-128.4938722392931,52.88063212941603],[-128.49387184560624,52.88049814026788],[-128.49381620646,52.88032720880402],[-128.49371336635332,52.88012923784723],[-128.4937730336908,52.880066866481066],[-128.49377600790737,52.879958595288535],[-128.4937467894333,52.879777567762304],[-128.49367278758388,52.879706254700324],[-128.49360106113636,52.87956257517583],[-128.4934987938813,52.87939038130771],[-128.49342654424743,52.87923774252319],[-128.49333906247028,52.87911120734787],[-128.49314657579424,52.8790199820076],[-128.4931031820263,52.87886728703129],[-128.4930901194746,52.87872348397565],[-128.49309239964737,52.87857149749169],[-128.49305027669843,52.87840868397406],[-128.49294788600346,52.87828190861585],[-128.49287338198823,52.87813828754169],[-128.4927726481451,52.87797615203121],[-128.49266895657686,52.87785893940821],[-128.49255212018244,52.8777240560161],[-128.49237646466793,52.877570245870025],[-128.49237729470477,52.87748893085267],[-128.49225950526431,52.87735351123622],[-128.49217242981672,52.877218005296896],[-128.4920093377173,52.87705607025448],[-128.49195138079247,52.87702029693133],[-128.4918318854794,52.87698302972599],[-128.49162671840824,52.876802368373674],[-128.49145000212582,52.87669398682674],[-128.49124386261553,52.87657613723649],[-128.49121426858338,52.876531913324676],[-128.49108307975052,52.87642200098989],[-128.49100901645252,52.87626995532731],[-128.49074420558878,52.876151671116816],[-128.49068316505367,52.876142873317384],[-128.49052185602847,52.876043134143245],[-128.49037402088183,52.87601487125277],[-128.49015190747443,52.87594220961392],[-128.48994574220592,52.87582379326507],[-128.48978345455967,52.87570725463129],[-128.48974022345544,52.8755091475529],[-128.48968391851403,52.87537410024164],[-128.48950539742253,52.87528257336852],[-128.48931458031913,52.87515599081674],[-128.48928562741193,52.875074750563854],[-128.48916814415654,52.87491241074494],[-128.48905247762264,52.87473321310241],[-128.4889351379349,52.87458936668033],[-128.48875720163605,52.874444004811856],[-128.48851963265037,52.8743615760447],[-128.4884780777617,52.87427163221203],[-128.48843410109953,52.87423612630551],[-128.48821077959406,52.874126484467084],[-128.48787150216066,52.87392847342783],[-128.48763697759745,52.8738185026041],[-128.48738309118943,52.87372744680863],[-128.487250649986,52.87362765741074],[-128.48722424136292,52.873494218738436],[-128.48721101148047,52.87333135675039],[-128.48715192045682,52.87319636724362],[-128.4871393116333,52.873044139773555],[-128.487096973715,52.872908804602055],[-128.4870697890255,52.872746228943875],[-128.4870557522939,52.87266523756164],[-128.48689274609944,52.872584026241036],[-128.48677434570675,52.872565227645794],[-128.48664092929832,52.872448639000716],[-128.48651050360775,52.872303389744445],[-128.48642247607836,52.872151071665485],[-128.4863059918804,52.872005527183454],[-128.48621831543716,52.87184311895197],[-128.48617592344618,52.871690956371225],[-128.48608654389872,52.8715470807444],[-128.4860135671708,52.87149312574156],[-128.48601382590476,52.871465644361415],[-128.4859400777966,52.87136628920838],[-128.4858671015635,52.871312334108474],[-128.4857669617231,52.871095802518525],[-128.48551664554432,52.8709059945677],[-128.48529558351007,52.87077106635148],[-128.48510315170202,52.870679827365606],[-128.4849404496732,52.87057170523235],[-128.48488354636692,52.87042602061781],[-128.48473507709855,52.870290677466784],[-128.48463410074774,52.87015546011422],[-128.48453063521282,52.86999337555625],[-128.48441289140555,52.86985794744154],[-128.4842811943646,52.869722814230244],[-128.48414818720966,52.86967685504001],[-128.4839864281125,52.86956870274435],[-128.4837804836931,52.869469342230204],[-128.48360303379053,52.869315548529094],[-128.4835451577858,52.869153064602955],[-128.48348884849216,52.8690174583135],[-128.48344553238493,52.868865323246304],[-128.48344644373387,52.86872121463875],[-128.48353855938038,52.86856061051475],[-128.48352470061795,52.86837084146056],[-128.4835123993901,52.86819169614001],[-128.4833064447139,52.868091769963115],[-128.48308396945046,52.86802807365075],[-128.4830386482295,52.86800099937296],[-128.48308432791754,52.86793836340891],[-128.48308444933937,52.86789238822443],[-128.48307120462164,52.867856787068206],[-128.48296923699826,52.867784381133056],[-128.48270085570934,52.867747443768614],[-128.48249347840942,52.86763913217658],[-128.48248172743334,52.86748520849594],[-128.48243798316818,52.86734148720662],[-128.4823949335537,52.86716187014495],[-128.48239867786495,52.867018266735776],[-128.48228016653744,52.86683743629077],[-128.48217790087818,52.86671177053834],[-128.48207723522543,52.86654963366068],[-128.48198707126136,52.86650387939009],[-128.4819590604523,52.866422617408126],[-128.4819297053079,52.86627018677604],[-128.48188723660135,52.86611634673537],[-128.4818756592277,52.86598147209312],[-128.48181523850525,52.865918835251236],[-128.48177469514178,52.8657660757648],[-128.4816559675624,52.86569345765442],[-128.48152342570222,52.86557515856278],[-128.48149414386117,52.8655040148584],[-128.48142140626075,52.86534184367666],[-128.48140868177603,52.865171121057],[-128.48129237215286,52.86504406475239],[-128.48115925609085,52.86489998785109],[-128.4809975260777,52.864727926802644],[-128.48089686907545,52.86456577975209],[-128.4805724232023,52.864348938871025],[-128.48042544725448,52.86422252924008],[-128.48024865877096,52.86409563651711],[-128.48010067486587,52.86395187235348],[-128.47996872918227,52.86384365055932],[-128.4798226466516,52.86371666519205],[-128.47970724735995,52.863508855680294],[-128.47958696100665,52.8634732708765],[-128.47927783911393,52.863407476559026],[-128.47921785923677,52.86333641501571],[-128.4791142020197,52.863282538260606],[-128.4788934471993,52.86319973634526],[-128.47868737532897,52.86308130826418],[-128.47843400549718,52.86298180926227],[-128.47836032260975,52.86296318059786],[-128.4780359961213,52.86290779542677],[-128.47782663559715,52.86284493433964],[-128.47772318025667,52.86276245491749],[-128.47763829751065,52.862583162249074],[-128.47752045878684,52.8624292238199],[-128.4773303205848,52.86231269999678],[-128.477224413985,52.862284093484696],[-128.47713622135325,52.86223998051197],[-128.47687094136813,52.86217549818245],[-128.47675078641828,52.8621741024795],[-128.4765001486054,52.86213734272586],[-128.4763377658981,52.86200172658141],[-128.47619036175544,52.86188373504244],[-128.47613073053782,52.861866486282594],[-128.4759089762676,52.861846491917746],[-128.47580502881434,52.86181952928258],[-128.47575930215416,52.86180143114231],[-128.4757459294681,52.86174733519453],[-128.47559942114498,52.86169267211003],[-128.47534599092418,52.86165596880978],[-128.4752724474469,52.86165583202514],[-128.47518237565032,52.86169136835631],[-128.47494460537658,52.861635828585825],[-128.4746946730312,52.86156316914387],[-128.47444295274596,52.861507922248585],[-128.47423660186575,52.86141639437025],[-128.47405867976985,52.86123737247314],[-128.4739873168994,52.861066197786045],[-128.47386833128525,52.861020488378635],[-128.4738092214519,52.86094829359355],[-128.473661810065,52.86082973405461],[-128.47344087674333,52.86077552322236],[-128.47323456430757,52.86068455797943],[-128.47293801624318,52.86067453795084],[-128.47271354331025,52.86073589241743],[-128.47251965205706,52.8609070446159],[-128.47245715587874,52.86104907644124],[-128.4723955610798,52.86123874821919],[-128.47233443627331,52.8613723459383],[-128.47221555903337,52.86148921848718],[-128.47208031259527,52.86151617666136],[-128.4717829066929,52.8615235560095],[-128.47154634764166,52.86150498627577],[-128.4714875760569,52.86148659583936],[-128.4712954499886,52.86128712961013],[-128.47111928464457,52.861170293202726],[-128.47089684637302,52.86110601775491],[-128.47074922470358,52.86109622345161],[-128.47049721090283,52.86106788517749],[-128.47018543624293,52.86100380073238],[-128.47008347417952,52.86093081886898],[-128.46998052203438,52.86076030627969],[-128.4698170103845,52.860669000382465],[-128.46953682639236,52.86058798703706],[-128.4693153666844,52.86054050732916],[-128.469255808928,52.860540637959794],[-128.4691072319002,52.86059477472809],[-128.46906258000246,52.86059515708383],[-128.46898612403845,52.86057658097215],[-128.46900208817195,52.860530829087466],[-128.46903314138953,52.86042421986084],[-128.46906436647774,52.860288444727125],[-128.4690685909493,52.86013642683801],[-128.4689961793895,52.8599467658783],[-128.4689528266425,52.85979294024667],[-128.4688938924321,52.85965906897998],[-128.46873361884812,52.85955927949902],[-128.46849617149792,52.85947680949745],[-128.46827239029346,52.85942151878184],[-128.46805217298206,52.859411569140775],[-128.46778550082726,52.85933868200452],[-128.46759359423118,52.85923899941504],[-128.46738696300199,52.8591581224611],[-128.46713461509705,52.85907539764429],[-128.46697227383373,52.858939768298406],[-128.4668095150883,52.85881311775174],[-128.46669423593934,52.8586865912568],[-128.46641366727562,52.858469912836505],[-128.46635601824997,52.858325912908015],[-128.46616503184782,52.85814547654335],[-128.46601946074856,52.85801005000811],[-128.46597471300132,52.85784784752006],[-128.46590162030103,52.85777481228085],[-128.46581558153053,52.85755853375381],[-128.46569868674155,52.85738774513911],[-128.4655685105101,52.857260974127534],[-128.46540576234048,52.85713432150228],[-128.4652431292929,52.857025606744905],[-128.4652156075693,52.8569359167299],[-128.46508387992984,52.85678226701348],[-128.46484791999643,52.85662855290932],[-128.46477632947983,52.85648485372418],[-128.46468833023843,52.85633084214104],[-128.46468934433594,52.85626802910318],[-128.4646154101409,52.856115964892595],[-128.4645745336194,52.855972177263155],[-128.46465044922994,52.85583658670996],[-128.4648441414823,52.85569404847618],[-128.46487501241302,52.8556485493755],[-128.4648461767578,52.85548768987869],[-128.46480378041224,52.85533384262212],[-128.46477541572338,52.855181378334706],[-128.46465923040225,52.85505486890101],[-128.46460157756306,52.854910877072115],[-128.46451423121326,52.85478431852034],[-128.464500210598,52.85470275908964],[-128.4644272508701,52.85456749347195],[-128.46438358069594,52.85442376429536],[-128.4643727048801,52.85423561700305],[-128.46425359661106,52.85409067181952],[-128.4639439935979,52.85391831797738],[-128.4638274277101,52.85380135111563],[-128.46359103755614,52.853656057768454],[-128.46344496261815,52.85365631392066],[-128.46338523638227,52.85363738350783],[-128.4633718625722,52.85350255392988],[-128.4635222934563,52.85336820871389],[-128.46353786457465,52.853170536319105],[-128.46333262606706,52.85301674009871],[-128.4631416946541,52.852917021232436],[-128.4629476628935,52.852844286842945],[-128.462755651123,52.85272609334636],[-128.46256472236013,52.852626373524124],[-128.4625076620403,52.852492459786454],[-128.46242063327597,52.85233898226895],[-128.46228889730435,52.85218476452907],[-128.46215472390844,52.85214945374198],[-128.46196379964917,52.85204974186624],[-128.46183179150933,52.85192299629133],[-128.46163935024228,52.85181322416302],[-128.4614770861642,52.85167814208676],[-128.46127231499526,52.851596659865436],[-128.4610650059999,52.85148718943791],[-128.46084379737562,52.85137857502323],[-128.46063582841265,52.851306128997344],[-128.46056337204004,52.85109852329614],[-128.46037360580772,52.850954489528945],[-128.46035931923075,52.85090041108551],[-128.4602566068133,52.850765201122776],[-128.46017001002198,52.8506027516712],[-128.460052704996,52.8504403802621],[-128.45992007870612,52.850286734788575],[-128.45981879078835,52.850159908721906],[-128.45974591828568,52.850025759738145],[-128.45974821908354,52.84987209575162],[-128.45961494753746,52.849755474770916],[-128.4593637364639,52.84969121610436],[-128.45918676191485,52.84959119883416],[-128.45898084254762,52.84947329066967],[-128.4587294906632,52.849390536953706],[-128.45852154933692,52.84931807782338],[-128.4583313605577,52.84918246385818],[-128.4581835022679,52.84903867074819],[-128.45791790318398,52.848902383021525],[-128.45781702994648,52.84876657636848],[-128.45786469270945,52.84856038405246],[-128.45786493438095,52.84837088213072],[-128.45786730642234,52.84821833795194],[-128.45783950308982,52.84807483941044],[-128.45784187520567,52.84792229520354],[-128.45775484053468,52.847768258298785],[-128.45768266090778,52.84759764734613],[-128.45746320346367,52.84738976112783],[-128.45725660144507,52.847308301619535],[-128.45703291403342,52.84725299772365],[-128.45684126073866,52.84718860912423],[-128.45665007821563,52.847116361389006],[-128.45638110133544,52.84711469504512],[-128.45614452429487,52.84715888818856],[-128.45587661172235,52.84717570408004],[-128.45584590568663,52.84717579006322],[-128.45577398576847,52.84705787292852],[-128.45562662744143,52.846922480394184],[-128.45537664111353,52.84681445791392],[-128.4553626405886,52.84673289698114],[-128.45525936475065,52.846652081328905],[-128.45521774351863,52.84646233339186],[-128.4551434067362,52.846318676894846],[-128.45505744925748,52.8461831212461],[-128.45493945873102,52.8460566403356],[-128.45485376777788,52.84587733994555],[-128.45457189652544,52.84581315628017],[-128.45454178166517,52.84575884286095],[-128.45451339816563,52.84568598758496],[-128.45456145027487,52.84555099431709],[-128.4545629121533,52.84539846919999],[-128.45453297168262,52.84536321394672],[-128.45440100631276,52.84523645948577],[-128.45426916885484,52.845128207874396],[-128.4540628139766,52.845018149577804],[-128.45403273280914,52.844964400448745],[-128.45391529624115,52.8448474333946],[-128.4536944063518,52.84479206495569],[-128.45365005027875,52.84476495968901],[-128.4535485458039,52.84458543263203],[-128.4535052020132,52.84441421672766],[-128.4534769621792,52.84427913142893],[-128.45343461797472,52.84412527897798],[-128.45336352517674,52.84397314842946],[-128.4533355662162,52.8438105902323],[-128.45312973775475,52.843612494107134],[-128.45305806708853,52.843450283879704],[-128.45294177509908,52.84330470371027],[-128.4528522102364,52.84317089925924],[-128.45281132135,52.84302598641965],[-128.45272316260755,52.84290056661311],[-128.4526358760873,52.8427739982683],[-128.45260885731201,52.84261142021046],[-128.4525345360246,52.842467761710985],[-128.45244798548035,52.842305305712244],[-128.45236110752,52.84216975834726],[-128.4523038411976,52.841998841632346],[-128.45224521679563,52.84183691455181],[-128.45221832581527,52.84169283039834],[-128.4521314652137,52.84155729145963],[-128.45205883588588,52.84137828130588],[-128.45195652977745,52.84123296424666],[-128.4518849760654,52.84108869135529],[-128.4517828941172,52.840963561568635],[-128.45166533439308,52.840828098176246],[-128.45150197026916,52.840737321135414],[-128.4514739085434,52.8406375475055],[-128.45146171796443,52.840457840211435],[-128.45144879215232,52.84031402041444],[-128.45143514697813,52.84020610573289],[-128.45142309691516,52.84004489218637],[-128.45136669401512,52.839872826638484],[-128.45123486736261,52.839683282797324],[-128.45114840884315,52.83952250129668],[-128.45113504568775,52.8393871046677],[-128.4510903735456,52.839224885637776],[-128.45103420691146,52.83908926124424],[-128.45093027401313,52.83896416934852],[-128.45084470154274,52.838818501988314],[-128.45086105977768,52.838666230716846],[-128.45086198734631,52.83850418098172],[-128.45084906466252,52.83836036989918],[-128.4507936671907,52.83818940428519],[-128.45067611825098,52.8380539396633],[-128.45057301380191,52.83792714373599],[-128.45053157932392,52.837756451675986],[-128.45050373149036,52.83759556759722],[-128.4504600936756,52.83745127620598],[-128.45034417274513,52.83727933095926],[-128.45027234956882,52.8371625386177],[-128.4501980285927,52.83701832233834],[-128.4501115150443,52.836856419856694],[-128.4500101480436,52.836711081450105],[-128.4499362681453,52.83655845062404],[-128.4498650752363,52.83638781410955],[-128.44977854718866,52.83622535551446],[-128.44966100688254,52.836089889706855],[-128.4495289452714,52.83594463517314],[-128.4494286156318,52.835800961039546],[-128.4493557360049,52.83566568444087],[-128.44923805880077,52.83551171534534],[-128.4491651202101,52.83535906438073],[-128.4490632779521,52.835205329900326],[-128.44897611474224,52.8350804426148],[-128.44887424142271,52.83492614348999],[-128.4488320198018,52.83477397286305],[-128.4487284462779,52.83463877096934],[-128.44856862886948,52.83451203491954],[-128.44842073027004,52.834349733999495],[-128.44840781655782,52.83420591330752],[-128.4483211591032,52.8340249505774],[-128.4482493469417,52.833908156756166],[-128.44819041675953,52.83377258850891],[-128.44817881587096,52.83361921391391],[-128.4481802251185,52.83344930482293],[-128.4481686073356,52.833295374390936],[-128.4481407070437,52.83313336934531],[-128.44812779464337,52.83298954851085],[-128.44820381830166,52.83285565100731],[-128.44829378361206,52.832721462677384],[-128.448356222044,52.83257775675081],[-128.44840176723775,52.83241534117982],[-128.44843296737773,52.832245940860666],[-128.4484200691243,52.832102119666665],[-128.44836381335938,52.83194855497425],[-128.44828908576724,52.83181331613013],[-128.44817390259374,52.83168621380403],[-128.44801131845767,52.83155953472114],[-128.44789529656035,52.83143412707279],[-128.4478219894841,52.83130726350482],[-128.4477350572592,52.831153782002055],[-128.44763329445126,52.831001165818634],[-128.44750183381637,52.83086598808577],[-128.44733880007993,52.83074772267667],[-128.44732559671414,52.83071211665754],[-128.4473112846507,52.830559919571904],[-128.4473297441943,52.83037900698879],[-128.44743504155693,52.83023665037097],[-128.44755593455918,52.83007435035677],[-128.44761749951218,52.82993178405383],[-128.44763470555566,52.82977780843729],[-128.44766559073508,52.82963531664259],[-128.44769676994792,52.82948161474964],[-128.44769855648855,52.829302170893484],[-128.4477152521781,52.82912297229028],[-128.44749608942675,52.82895037805121],[-128.44727263442178,52.828913549171354],[-128.44721434104312,52.828886176039354],[-128.44718613714963,52.82883237691327],[-128.44712827766043,52.828715291381904],[-128.4471431450999,52.82855295032592],[-128.44721916394417,52.82841905307968],[-128.44723738889564,52.82826674256983],[-128.44723829813117,52.828104136290065],[-128.4472119044283,52.82795219084811],[-128.44718446098003,52.827798024690466],[-128.44716922895827,52.82764584651409],[-128.44724664913463,52.82752032512919],[-128.44730768044596,52.82736824332503],[-128.44732532588347,52.827205844161554],[-128.44728161777422,52.82704361185859],[-128.44716411068143,52.82690814275683],[-128.44704797997622,52.8267642306656],[-128.44691547459698,52.8266105771543],[-128.44659281631175,52.826384074137394],[-128.4464469613249,52.82625704427404],[-128.4464462819054,52.82621276288207],[-128.44634584753769,52.826050591248524],[-128.44619724720934,52.82592417446669],[-128.44605198774823,52.82580722335778],[-128.44605216644536,52.82576181175413],[-128.44617287346315,52.825644924306886],[-128.44615853484515,52.82549216212955],[-128.44605736416847,52.8253658869626],[-128.4459551810868,52.825221683145045],[-128.44579306826603,52.82508658608054],[-128.44573679884178,52.824932454982275],[-128.44569278232746,52.824797139495814],[-128.44557563514968,52.82463530646081],[-128.44545963923187,52.82450989585011],[-128.44538772769485,52.82437459630529],[-128.44524050724397,52.82425600763376],[-128.44512260642796,52.82412951509362],[-128.44500649016672,52.823985600727084],[-128.44482997367564,52.82385865149361],[-128.44469682360884,52.8237420026975],[-128.44459518925134,52.82362358501963],[-128.44449165620685,52.82348837842469],[-128.44437554433057,52.823344472334675],[-128.44430301962512,52.823182273854194],[-128.44421717499463,52.82304726377097],[-128.44419584379034,52.823032009883896],[-128.43554564683384,52.82833387240265],[-128.43599336229929,52.828422133851554],[-128.4360281864025,52.828429260156916],[-128.43604537029464,52.82859989509992],[-128.43607909072563,52.82894623760453],[-128.43609303933124,52.82912535375781],[-128.43607510074986,52.829136938887565],[-128.43602407298025,52.829155373282916],[-128.4359702663849,52.82917387429145],[-128.43586349520734,52.82920972850303],[-128.43554113001335,52.82923211545845],[-128.4351210521701,52.82918813022456],[-128.43485334265117,52.829125285127766],[-128.4346394965262,52.82911009366805],[-128.4344568566429,52.82915257038687],[-128.43440294337876,52.829185640599285],[-128.434538008292,52.82927086475935],[-128.43510806733426,52.829498430249586],[-128.43575632675126,52.82982472988953],[-128.43587826379067,52.83015242239129],[-128.43571171082752,52.830330233556325],[-128.4354097950742,52.830450312467605],[-128.435003284978,52.830628059254295],[-128.43479838638652,52.83078592509492],[-128.43476013477974,52.8308814624143],[-128.43474891940446,52.83091309095681],[-128.43474574722606,52.83092269214141],[-128.43473767230645,52.83094416399883],[-128.43482424874463,52.830945732171216],[-128.435007638451,52.830981173197216],[-128.43510758853606,52.831119260304604],[-128.43511651664787,52.83125923549117],[-128.43512482232174,52.83138856690405],[-128.43513317513245,52.83151846245544],[-128.4351364997502,52.831576700199406],[-128.43509187407759,52.83160958693562],[-128.43500959265535,52.83171612913995],[-128.43497049257817,52.831878404860106],[-128.4349921024115,52.83204502771534],[-128.4350526601765,52.83219346728516],[-128.43512689315133,52.83230461186553],[-128.4351731748435,52.832365887479085],[-128.4352215794278,52.832415341088556],[-128.43527500153326,52.832503935472765],[-128.43531518136976,52.83263765582723],[-128.43533183351528,52.832749994753684],[-128.43533294323973,52.83278585275969],[-128.43533684736158,52.83282165279593],[-128.43533431263387,52.83292374204187],[-128.43531091517298,52.83303523432319],[-128.43530061752068,52.833099361007555],[-128.43531928990177,52.8331331772418],[-128.43531919592093,52.833180273027274],[-128.43526623364315,52.83326266012721],[-128.43521024944857,52.83337370704544],[-128.43518032789058,52.83345226126885],[-128.43517039470666,52.83347377166201],[-128.43516238345657,52.833496363468825],[-128.43511874275273,52.83357912224032],[-128.43501801107334,52.83370455256693],[-128.43485599068254,52.83381555600226],[-128.43464545586104,52.8338911191911],[-128.4344192523404,52.833936741286166],[-128.43427925682758,52.83396094853337],[-128.43424336915987,52.833967855222795],[-128.4342185171887,52.83397229948934],[-128.4341506649718,52.8339894042888],[-128.43404451931644,52.8340364562899],[-128.43393361278012,52.83409761841182],[-128.43385254794805,52.83416041329371],[-128.4337526736064,52.834300957405794],[-128.4336560627522,52.834514882078075],[-128.43362925351374,52.834697085154346],[-128.4336273976718,52.83484401126905],[-128.43361508442436,52.834970414954476],[-128.43359898065287,52.83506324984512],[-128.43358426608063,52.83513139675288],[-128.43356516877722,52.8352041106495],[-128.4335325072184,52.83531635944657],[-128.43349317938507,52.835442192779816],[-128.4334492778669,52.835520471009396],[-128.4333971821803,52.83555294661461],[-128.4333753644895,52.83556181290229],[-128.43339326455782,52.8355659270085],[-128.43342331821052,52.83558716454462],[-128.4334247458858,52.8356286222768],[-128.4333926367584,52.835685351748005],[-128.43335979760965,52.83574546017395],[-128.43332691181214,52.8358050133991],[-128.4332723127618,52.83590761625534],[-128.43319830847346,52.836061643908586],[-128.4331341524592,52.836225002742886],[-128.4330932418667,52.83637217291657],[-128.4330816610578,52.8365114514161],[-128.43308241160628,52.83662244239837],[-128.43308282176739,52.83666224375571],[-128.43296891626747,52.836703848963786],[-128.43270059608443,52.83681032395601],[-128.43248830217152,52.836904424762196],[-128.4324373811988,52.83694136063478],[-128.43238673048705,52.83698277599322],[-128.43208025872536,52.83713825480059],[-128.4316131748463,52.837364335865026],[-128.43138706352332,52.83747721728638],[-128.4313546377602,52.83749582920376],[-128.43107047860136,52.83761832609876],[-128.43049621515496,52.83785727823458],[-128.43010607876846,52.83801391831054],[-128.42980559989883,52.83812777953343],[-128.42912262880628,52.83832019428698],[-128.42837590678602,52.838471315048515],[-128.42809546479856,52.83851243959718],[-128.4280991746825,52.838561133811076],[-128.42811125041385,52.83865900004056],[-128.42814474416207,52.83872446253941],[-128.428301171858,52.838808686803006],[-128.42853161024416,52.83895136374756],[-128.42863224826186,52.83905243934663],[-128.4286354403494,52.839124699972956],[-128.42863459909103,52.839273281673066],[-128.42863672367437,52.83947394572324],[-128.42864059908132,52.83968915008916],[-128.4286457736896,52.83989423609318],[-128.4285917815513,52.84000804531387],[-128.4284740562141,52.84008055533293],[-128.42841035709753,52.84018727244753],[-128.42838734337568,52.84033856411246],[-128.4283432639764,52.84054466866539],[-128.42825635576315,52.84071745559475],[-128.4281191722826,52.84079149781646],[-128.4279671849151,52.84086695828134],[-128.42782673256966,52.840965170593535],[-128.42768243295274,52.84104496575918],[-128.42753914030789,52.8411589342208],[-128.42739893129792,52.84129414289797],[-128.4272851916124,52.841387873315625],[-128.42723953944562,52.84145217334574],[-128.42719768196318,52.84151750721405],[-128.42701609451498,52.841563312831454],[-128.42670529135773,52.84159440451682],[-128.42662407622012,52.84167120810297],[-128.42685194353135,52.841768534428674],[-128.4269838385224,52.84184653987226],[-128.42697655407704,52.84188200598719],[-128.42697171216417,52.84189500516616],[-128.42682567426783,52.84196081469125],[-128.4264603084482,52.84209562510299],[-128.42594626525653,52.842200998222694],[-128.42523697472075,52.84230815031029],[-128.42454474359042,52.84243738014987],[-128.42403534972505,52.842444533180846],[-128.4235048638073,52.84230971818625],[-128.4229584061806,52.84222120243761],[-128.42241180112165,52.842261067968096],[-128.4220072608774,52.84231258618737],[-128.42186076446941,52.84230495125834],[-128.42170274753244,52.84222523645139],[-128.42144313749137,52.84209323949786],[-128.42128043666574,52.8420130556152],[-128.4211935347781,52.841973360621544],[-128.42108274554653,52.841939208284614],[-128.4209845834736,52.84193057568953],[-128.42088537519055,52.84193655003307],[-128.420608840187,52.84193215962731],[-128.42022442367102,52.84191205193218],[-128.4200563427759,52.84190093972012],[-128.42003783916726,52.84191926135342],[-128.42000877207158,52.84194789209731],[-128.41993491421593,52.84202341788154],[-128.41986499505668,52.842102782390285],[-128.41980314527822,52.84217693934099],[-128.41973470325092,52.842249554683036],[-128.41968883108822,52.84229366425096],[-128.4196475492388,52.842336566912],[-128.41958188635977,52.84240911590902],[-128.41950454857133,52.84252171487018],[-128.41942192058985,52.84265572682549],[-128.41934926767888,52.84275253139316],[-128.4192770115464,52.84282353860649],[-128.41920056206718,52.842886227148796],[-128.4191367396823,52.84294191893021],[-128.41907339386344,52.843006014833186],[-128.41901354299029,52.84304985591243],[-128.41889703285196,52.84307861025488],[-128.41872286309726,52.843124240914825],[-128.4186086722678,52.84316135219533],[-128.4185859893439,52.84317135463589],[-128.41859545621125,52.84319077731038],[-128.41863600721055,52.84328245097089],[-128.41868500733295,52.84345748037458],[-128.41867131267293,52.84360968941869],[-128.41861474742282,52.84369494938981],[-128.41854517266978,52.843780477270876],[-128.41846560603543,52.843870139800515],[-128.4184046879337,52.84394427664039],[-128.41831103164165,52.84404824054182],[-128.41816719461653,52.84416949157454],[-128.41804318246287,52.84424661383569],[-128.41794944630223,52.84428330317805],[-128.41784308234148,52.84431071721545],[-128.41773991069184,52.84436162094627],[-128.4176167235265,52.84443703935347],[-128.4174634347858,52.844490086914256],[-128.41731086191723,52.84452294574895],[-128.4171810667206,52.84456374051664],[-128.41706863262627,52.844615390426554],[-128.41698129555385,52.844666523667506],[-128.41693649871246,52.84471341749192],[-128.41688577569457,52.8447705246373],[-128.41675775483716,52.84485893159693],[-128.41656179506055,52.84494705910444],[-128.416410218551,52.845014090246984],[-128.41635199552903,52.84508649299426],[-128.41630581333723,52.84515808283254],[-128.41625918677107,52.84522183294978],[-128.41623300537898,52.84526889957561],[-128.41621893058877,52.84528320944346],[-128.41620321910383,52.84530147291953],[-128.41615261936144,52.845377073505006],[-128.416086831126,52.845496724766214],[-128.4160018370692,52.84562236844985],[-128.41590076694112,52.84574330158499],[-128.41580829110762,52.84585172392869],[-128.41575429223283,52.845916746709946],[-128.4157357364559,52.84593394735607],[-128.41572707810343,52.84594533808836],[-128.41566952235317,52.84599697884689],[-128.4154942194731,52.84610486214354],[-128.4152239847338,52.846228717876606],[-128.41502511008008,52.84629839720048],[-128.41496661886794,52.846316984088865],[-128.4149579602323,52.846328374761676],[-128.41492583770682,52.846352581823055],[-128.414864453226,52.84638579558101],[-128.4147746656263,52.84642688603577],[-128.4146711680967,52.84647218721787],[-128.4145891144879,52.84651815968554],[-128.41450831465943,52.84658654050121],[-128.41441185025099,52.846657476861736],[-128.41433656483483,52.846691541230946],[-128.4143006951886,52.846699006228626],[-128.41425190801883,52.84672467694676],[-128.41396678488815,52.846815753991415],[-128.41349611413946,52.84693251281533],[-128.41319466130332,52.84699813453369],[-128.41306539623972,52.84703218600156],[-128.4129609235675,52.8470931942953],[-128.4128796098419,52.84716886815118],[-128.4128415581198,52.84720328775103],[-128.4128317718723,52.84721133763448],[-128.41281330966592,52.847230222220844],[-128.41280355483948,52.84723882760067],[-128.41278150210238,52.84726002846945],[-128.41270544677653,52.847329987851325],[-128.41247446259305,52.84737509844366],[-128.41212366411597,52.84734137380658],[-128.41191672635543,52.84731815769794],[-128.411778469448,52.84734117978634],[-128.41144425240103,52.84741980359207],[-128.41107160071525,52.84752612571304],[-128.41088883969138,52.847584819422345],[-128.41077022183111,52.84765901499408],[-128.41063678819398,52.84778397116508],[-128.4105688779348,52.84784983296947],[-128.41054531718538,52.84786097301397],[-128.41051921375472,52.84787664130509],[-128.4104741402723,52.84790223413458],[-128.41023216717417,52.84790103803278],[-128.40970781951725,52.84784228023377],[-128.4091613274339,52.84778677305743],[-128.408827047122,52.84776559865219],[-128.40872345659017,52.84775987459158],[-128.40871751327052,52.84777008780436],[-128.4086819489541,52.84781566751498],[-128.40861179038086,52.847907928256696],[-128.40850986713434,52.848030558183126],[-128.40837585147642,52.848161685959106],[-128.40823001904036,52.84828128716382],[-128.40811558660593,52.8483638079681],[-128.40803006298276,52.84839807802791],[-128.40786000591208,52.84838530210268],[-128.40764010610312,52.848346646594926],[-128.40754711375286,52.84833116903984],[-128.4075155481266,52.84833238124969],[-128.40745367598822,52.84848893905132],[-128.40741845967347,52.848820996475546],[-128.40745817835113,52.84909601111529],[-128.40753363061222,52.8492951690888],[-128.407527467416,52.849466282358165],[-128.40730236155179,52.84961553857481],[-128.4068592928447,52.84976085643882],[-128.40651380024548,52.84983801023255],[-128.4064206996647,52.849853372936465],[-128.40640306034882,52.849870553174895],[-128.40643362814185,52.849917584635364],[-128.40673694358804,52.8499999484271],[-128.4071747438075,52.850123840178725],[-128.40736487449925,52.85024496744329],[-128.40736907930398,52.850319440189104],[-128.40732273822806,52.85037196776538],[-128.40725180743794,52.850417715660576],[-128.40719670946206,52.850479948840764],[-128.4071518773437,52.85059243698876],[-128.40710190583462,52.85072913291529],[-128.40703040707015,52.85086346237547],[-128.40693806742541,52.85099150032757],[-128.4068476003893,52.851119490840254],[-128.40678631666376,52.85125361972393],[-128.40675688469778,52.85139157189938],[-128.40673661428607,52.85149402132471],[-128.4067198077017,52.851542579606935],[-128.40667860985272,52.85160397147713],[-128.40657956806587,52.85171196381331],[-128.40645051628437,52.85181607694904],[-128.4063345281371,52.851904233707295],[-128.40624125041043,52.85201546239889],[-128.40618453398312,52.8521152945703],[-128.40616893683801,52.85215205929364],[-128.40615149729928,52.85218941789863],[-128.40610104102632,52.852284636752664],[-128.40606056814826,52.852358903408515],[-128.40604944107497,52.85237595013554],[-128.4060727643698,52.852377158708926],[-128.4064354304505,52.85237309246377],[-128.40722831484808,52.852424119769076],[-128.40784208106504,52.85254945288259],[-128.40814182921972,52.85268346412619],[-128.40842039180689,52.852854345296436],[-128.4085527996841,52.85310615461143],[-128.40856713051312,52.853359829021535],[-128.4085934114361,52.85347926414765],[-128.40861798381948,52.853502306559356],[-128.4086287697841,52.85351217664907],[-128.40864347824464,52.85352533005778],[-128.40874805050206,52.853663342154306],[-128.4090267488067,52.85396821336761],[-128.4092670574733,52.85423574880412],[-128.40935338792107,52.85439655960047],[-128.40947160615974,52.854496168566726],[-128.40959353838718,52.854611954905515],[-128.40962842562615,52.854768214557645],[-128.40971154700986,52.85493806093866],[-128.40998885497956,52.855201472122616],[-128.4103937804284,52.85548356771512],[-128.41075895159227,52.855638655116316],[-128.41100928788558,52.8556716395488],[-128.41122563772058,52.85571261375757],[-128.41147518422915,52.85581400984196],[-128.41159906010463,52.85586528674257],[-128.41157720521517,52.85590665668224],[-128.41152707341664,52.85600747740157],[-128.4114935809405,52.856090016444256],[-128.4114800492999,52.85614692198401],[-128.41146498492506,52.85624253770948],[-128.41146098940345,52.85636932125255],[-128.4114645151796,52.8564645553137],[-128.41146613037066,52.856493109601594],[-128.41156849201363,52.85655884836561],[-128.41177702547893,52.85670817847242],[-128.41189449185416,52.856810599185984],[-128.41195138217702,52.85686212989644],[-128.41205069598,52.85692344583238],[-128.41214517926647,52.85698148815629],[-128.4122339594188,52.85703741399154],[-128.412297174458,52.857085450901955],[-128.41233693559911,52.85714685936238],[-128.4124081683432,52.85723790425424],[-128.4125367743775,52.857356358216855],[-128.41266045262446,52.85748612577939],[-128.41271368291302,52.85758818765689],[-128.41273235865452,52.85765507918921],[-128.41275210095193,52.85770792867426],[-128.4127761958414,52.85777191024305],[-128.4128415705162,52.85784176244357],[-128.41291112538613,52.85790312383803],[-128.41289840795446,52.85794150763573],[-128.41289666875647,52.857993120950496],[-128.41297308033506,52.85810984792024],[-128.4130525693711,52.85826462521524],[-128.41309781673974,52.858422913481675],[-128.41313418469784,52.85855559534141],[-128.4131691432359,52.85866363860176],[-128.41320405342427,52.85877056158981],[-128.4132407625862,52.85886007269332],[-128.41327005534026,52.858917210881515],[-128.41327961863863,52.8589383181936],[-128.4132881619153,52.858974022728866],[-128.4133053085424,52.859079633214606],[-128.41332156070038,52.85921889063778],[-128.41333663468356,52.85936994987574],[-128.41336467354108,52.859536440262424],[-128.41340815961482,52.85969645087945],[-128.41344912406578,52.85981165426998],[-128.41347590467572,52.859890156740384],[-128.41350503399707,52.85999383460736],[-128.41354553484854,52.860133714995705],[-128.4135850182174,52.86028875763738],[-128.41358165421343,52.86049233822338],[-128.4135613321466,52.86070859197656],[-128.41358668039211,52.86081122621822],[-128.41361424912645,52.860821316165264],[-128.41357562924583,52.86086247464191],[-128.41349260352027,52.86095780031155],[-128.41344054767694,52.86105753977475],[-128.4134133387056,52.86120161875478],[-128.41337778448232,52.86136268789915],[-128.4133439892188,52.86143962714857],[-128.41331841771606,52.86146481995737],[-128.41331164676544,52.86147673665865],[-128.41326054997006,52.86152767744322],[-128.41313557024614,52.861621631074435],[-128.41297632748436,52.86171852184654],[-128.4128515890055,52.861783873845],[-128.41279884356234,52.86180570475259],[-128.41277588040455,52.86181121751022],[-128.41271820865964,52.861828099450506],[-128.41264327874165,52.86185262839628],[-128.4126004027202,52.86186808516745],[-128.41257260580508,52.86188659600114],[-128.4125025032307,52.8619306430881],[-128.41240428195755,52.86202067363785],[-128.41237680506325,52.86212720036052],[-128.41238772824218,52.86218864473684],[-128.41238638342813,52.86224697728274],[-128.412380808384,52.862329499051796],[-128.41237039949752,52.862425018918564],[-128.41235150031625,52.86255155193523],[-128.41232762792217,52.8626725718441],[-128.41228478674972,52.86275418140448],[-128.41220490315516,52.86283935913391],[-128.41211422957977,52.862914658134834],[-128.41206422893444,52.862952129776644],[-128.41204293122885,52.86297050701464],[-128.41202916555886,52.86299040699432],[-128.4120136992546,52.863013149492204],[-128.41200484328286,52.863037442628276],[-128.41199735617855,52.86305329381526],[-128.4119960457804,52.86309592813712],[-128.41198816388982,52.86318691103005],[-128.41199246981603,52.8632793210797],[-128.41205760867874,52.86337777476257],[-128.4121322980185,52.863480517312034],[-128.41213679791335,52.86356003350149],[-128.41208378505675,52.86364297300643],[-128.4120418682029,52.863708309818655],[-128.41203255006346,52.86374101730282],[-128.41198283229298,52.86388219395251],[-128.41196153088217,52.864196580476666],[-128.41207830601437,52.86446720219106],[-128.41222754137857,52.8646042940398],[-128.41230545569422,52.864731081529555],[-128.4122500429028,52.86490320493154],[-128.41211001993986,52.865077074393504],[-128.41201865124773,52.86518938851515],[-128.41199952772112,52.86531199696682],[-128.41197594870602,52.86547114185775],[-128.41185432102913,52.865575107025855],[-128.41169951526913,52.86565228706151],[-128.41139986013803,52.8657520661996],[-128.4109528510075,52.86583019204858],[-128.41052949186582,52.86589886994717],[-128.41010994072377,52.86598539912176],[-128.40989922677815,52.866028408796346],[-128.4098734792403,52.866033978029506],[-128.4097671554566,52.866046815124676],[-128.4095692984603,52.86608675289583],[-128.40938885314938,52.866154920507704],[-128.4092859156383,52.866227669793496],[-128.4091280678944,52.86630042366968],[-128.40884369311254,52.866324759376496],[-128.40858960408713,52.866308664892216],[-128.40850179788882,52.86630317233443],[-128.40838660661487,52.86630721998561],[-128.40808888579866,52.86637554695238],[-128.40781067081085,52.86654215177112],[-128.4076561862052,52.86674041387038],[-128.4075163997918,52.86700116412663],[-128.4073971241495,52.867278868656136],[-128.40727878019896,52.867408558896],[-128.40693584744307,52.867483980330576],[-128.4064602725471,52.867600795865656],[-128.4062228461361,52.86769872149936],[-128.40614491015782,52.86778553189743],[-128.40605749234572,52.86785291916341],[-128.4060050833966,52.867880902164565],[-128.40593814560066,52.867915344987374],[-128.40583585630637,52.867966774109554],[-128.40573611063797,52.868013666091294],[-128.4055749999932,52.86806181436362],[-128.40538393579695,52.86809039328579],[-128.40524689870247,52.86810328979615],[-128.40512344712474,52.86812599921852],[-128.4050207982285,52.86815445400996],[-128.4049489501212,52.86818451178508],[-128.40495503815148,52.86827577275199],[-128.40504209243272,52.86844946050196],[-128.40510570527576,52.868570373590835],[-128.4051155195053,52.86859596122482],[-128.40511124032795,52.868701445396],[-128.40498442720857,52.86902752333273],[-128.4046455545872,52.86935681082601],[-128.40429098078457,52.86944087604838],[-128.40408970784458,52.869420883203645],[-128.40391691670484,52.86944347950295],[-128.40368185314276,52.86946791456159],[-128.4033883159795,52.8693634725348],[-128.4029878203089,52.86916143598622],[-128.4025172409907,52.86907014743095],[-128.40206832347363,52.86906587077774],[-128.40183521233885,52.86905885861846],[-128.40180908372776,52.869057715346194],[-128.4018091489223,52.869091907291384],[-128.4018084205763,52.86916143894086],[-128.4018069564286,52.869284248917396],[-128.4018102090647,52.869490490204576],[-128.4018118302024,52.86968443120012],[-128.4018117833405,52.86979935453254],[-128.40151540291427,52.869809341209525],[-128.4007747338441,52.869715716825496],[-128.40009934438248,52.86965719014758],[-128.3997566485212,52.8696714821528],[-128.39961471080946,52.869679987086],[-128.3995855953384,52.86967553163182],[-128.39957434366556,52.86970715603288],[-128.39950304960013,52.869796633502105],[-128.399378794686,52.86988774852137],[-128.39930122682446,52.869931939404616],[-128.39932717674498,52.87004577560953],[-128.3991575425097,52.87030655848484],[-128.39870000701166,52.870513236948966],[-128.39833900552463,52.87053293942435],[-128.3980680963238,52.87048297193308],[-128.3978517467109,52.87047617475876],[-128.397787383336,52.87049037790116],[-128.3977340205531,52.87050155793104],[-128.39763470226168,52.87052321063993],[-128.39758127639072,52.87053327065107],[-128.39753797638974,52.87054143769262],[-128.39745797874147,52.8705755857429],[-128.3974255121792,52.870627268826084],[-128.39742379985856,52.87067943668897],[-128.3973922782095,52.870747918996855],[-128.39730944905068,52.87084771243353],[-128.39720432750715,52.87093170717242],[-128.39713506846257,52.8709746057704],[-128.39710260227318,52.87099320783489],[-128.3970610030539,52.87103162228436],[-128.39698140286885,52.871122379702506],[-128.39692097538472,52.87120658366197],[-128.39690234558364,52.87123947946372],[-128.3968916047295,52.871263809572305],[-128.3968667959184,52.87131925608407],[-128.3968343575351,52.87140456642361],[-128.39680919305144,52.87147011127368],[-128.3968019195259,52.871489885709224],[-128.39679391204336,52.871513029845794],[-128.39676808448908,52.87159989164402],[-128.39674298893573,52.87171645567326],[-128.39673305547186,52.87180467062708],[-128.39673299863458,52.87185344992662],[-128.39673664435662,52.87190158860387],[-128.396742125565,52.87196594324108],[-128.39660302877,52.87205847890652],[-128.39621528594503,52.87218243848162],[-128.39584395852467,52.872250556533096],[-128.3956967250822,52.87224795217755],[-128.39553266219642,52.87221093251669],[-128.39518894223784,52.87214113021163],[-128.39473807386702,52.872102671595506],[-128.39430017912218,52.872112716026066],[-128.394076452314,52.872124001778076],[-128.39399943817503,52.8721283694116],[-128.39391969040864,52.872133922886505],[-128.39380962665354,52.87214681231121],[-128.39366932561632,52.872168175166706],[-128.39354669879873,52.87218916887372],[-128.3934535615601,52.87220508584327],[-128.39329860219442,52.872230666637925],[-128.39300831162737,52.87228310524665],[-128.3927488560091,52.87233772281783],[-128.3926069138997,52.87236303761815],[-128.3924799175639,52.872356097355784],[-128.39236784087427,52.8723331470076],[-128.39232903213244,52.87232160357269],[-128.39224029945294,52.87233294497038],[-128.3920362370006,52.87236288739491],[-128.39183152371402,52.87241414608412],[-128.39168755263205,52.87250284608253],[-128.39166450176182,52.872606468419846],[-128.39170457731643,52.872673491669005],[-128.3917149446262,52.872692341572915],[-128.39182918057634,52.872720845781465],[-128.3920963036791,52.87278604588726],[-128.39228132609685,52.87283161346375],[-128.39234369931276,52.872881364115216],[-128.3924217058714,52.8729941414828],[-128.39252142202395,52.87311208294541],[-128.39261480938842,52.87318361764343],[-128.39270951667157,52.87322878096766],[-128.39277734453,52.87327617787316],[-128.3927504129321,52.87336025342384],[-128.39263780084755,52.87347691183089],[-128.39254334590348,52.87358535182224],[-128.39250009543568,52.87366079866609],[-128.3924885542532,52.873687378055855],[-128.39251131194393,52.87369476332933],[-128.39256526675044,52.87371048326619],[-128.39266160023425,52.873751693707504],[-128.39306625465557,52.873928456855765],[-128.39373325341387,52.87418452344134],[-128.39422051080598,52.874306902289476],[-128.39449053776312,52.874324390193784],[-128.39461362217497,52.87434430675201],[-128.39463210120013,52.87435850619688],[-128.39467987706345,52.874396775711084],[-128.39471802431754,52.87442963526669],[-128.3947227821871,52.87444803412939],[-128.39474534895874,52.87448513996739],[-128.39478930788198,52.87455488167563],[-128.3948301550553,52.874619080629024],[-128.3948649193085,52.87467443368964],[-128.39488780053188,52.8747171302741],[-128.39490142438729,52.87474432725834],[-128.39490897957037,52.87476266910447],[-128.3949154720175,52.87477879911717],[-128.39491991529474,52.87479159822987],[-128.3949692066585,52.87490664551104],[-128.39510291323626,52.8751489048427],[-128.39523346038968,52.87530153896764],[-128.39539422943872,52.87527975727604],[-128.39566088984895,52.87518743065169],[-128.39585126082684,52.875129165479194],[-128.3959663829228,52.87512345469517],[-128.39610484044252,52.87511895433308],[-128.39616791779784,52.875114860636984],[-128.39624243618414,52.87514866443606],[-128.3964479206705,52.87524314260986],[-128.39668201327825,52.87534992666851],[-128.39688394651728,52.87543102176105],[-128.39702531779727,52.875478037533796],[-128.397077307023,52.875492109222904],[-128.3971030619449,52.87548654282605],[-128.39715066251767,52.87547211709413],[-128.39727627410699,52.87547067600084],[-128.39749278357058,52.87546345159092],[-128.39764960417105,52.875421009062826],[-128.39776627949772,52.87542647715344],[-128.39793035627275,52.87549657444576],[-128.39805149068204,52.875547921764785],[-128.3981716882456,52.87556620726482],[-128.3983357982171,52.87557070679546],[-128.39843942366912,52.87557588442178],[-128.39844776818543,52.87567438250645],[-128.39842737903885,52.875858115511186],[-128.39855437828078,52.87598054532589],[-128.39880136531357,52.876034929346815],[-128.3989305889323,52.87606480727681],[-128.39894835968124,52.87606612188164],[-128.39896595817567,52.87606464140575],[-128.3990233859374,52.87607580264328],[-128.3991621615362,52.87610997025712],[-128.39931100844606,52.87615738687388],[-128.39942455796006,52.87622290756688],[-128.3995586610981,52.87628968584794],[-128.39970499534897,52.87634219434508],[-128.3998549241278,52.8763923957687],[-128.39997961039026,52.87644086107487],[-128.40005693142191,52.876474605301695],[-128.4001208393169,52.87650188705554],[-128.40019018445142,52.87652625913278],[-128.40025560570132,52.876547347616345],[-128.4003126017553,52.87656748691451],[-128.4003566415489,52.876589012050296],[-128.40043210424233,52.876655865855994],[-128.40054718007323,52.87676508238033],[-128.40060331827343,52.8768194321585],[-128.40073231410747,52.8767954936806],[-128.40099761881376,52.87674522441755],[-128.40118462623968,52.87671000912704],[-128.40131359011158,52.876685514517895],[-128.40141767305198,52.87666544801281],[-128.40149989515973,52.876654232894886],[-128.40163138112925,52.87664145484923],[-128.40176195399127,52.87664551380743],[-128.40183982055672,52.87667251834806],[-128.4018898415317,52.8766843857213],[-128.40197281206085,52.876669800246006],[-128.40217945900554,52.876652677798674],[-128.4025149039695,52.87662451722644],[-128.40282801962553,52.876579993735135],[-128.4030607363811,52.876562901795594],[-128.40324240097294,52.87656479313688],[-128.40339872850373,52.87656328253372],[-128.40362538840432,52.87658723388753],[-128.40386866559345,52.876641683322724],[-128.40402030861483,52.87667278350469],[-128.4041316189199,52.87666545643192],[-128.40424332971273,52.87664859505489],[-128.40439382499443,52.876642717513946],[-128.4046127679227,52.87664552141545],[-128.40485783401954,52.87663265816638],[-128.40506721422548,52.876614362419026],[-128.40523098101352,52.87661268816668],[-128.40541933228297,52.87663406539028],[-128.4056372109691,52.87668398103061],[-128.40583430414614,52.876761240397336],[-128.40601751509365,52.876856714446085],[-128.40621055306397,52.876944703473505],[-128.40643318664823,52.876996206662966],[-128.4067074445512,52.877021985070805],[-128.40699259442445,52.87704305482302],[-128.40724192628937,52.877072706217234],[-128.40742706694132,52.877103115928634],[-128.4075193425509,52.87712140786951],[-128.40775367386692,52.87713286061713],[-128.40816349175358,52.877135676021815],[-128.4083897340688,52.87713552476691],[-128.40842680609404,52.87713252256665],[-128.4084759558462,52.87714553524312],[-128.4085688453209,52.877191279588914],[-128.40868360246034,52.87726125183845],[-128.40884054914477,52.87733652154747],[-128.40904966181284,52.877379327122725],[-128.4092159564663,52.877389373025146],[-128.4093022417696,52.877400493872415],[-128.40940189527157,52.877417511872835],[-128.40952305742522,52.87743633128072],[-128.40961956121163,52.87746350480516],[-128.40969275990307,52.87749003486747],[-128.40972413826654,52.8775017250803],[-128.4097450096176,52.87750858964731],[-128.40979069315713,52.877526148837084],[-128.40982871550898,52.8775399452614],[-128.40987827761802,52.87756023246351],[-128.41002645368425,52.877628396934945],[-128.41018653474833,52.87770976294604],[-128.41029867576006,52.877766332492584],[-128.41040385578182,52.87781518707992],[-128.4105389540748,52.877866235500825],[-128.41073972168473,52.87792602786043],[-128.4109903606633,52.87797863447502],[-128.4112351982844,52.87802743077835],[-128.41141040692153,52.87807989775196],[-128.4114905539298,52.8781141328196],[-128.41156054204168,52.87814969752888],[-128.41166349438328,52.878224950292214],[-128.41173799031174,52.87830751435099],[-128.41176743971002,52.87835063825578],[-128.41177668966694,52.87836614575157],[-128.41184679844542,52.87835461586887],[-128.41198199299657,52.878324931641004],[-128.41207925411337,52.87831620807357],[-128.4121350819644,52.878331880808226],[-128.41220170293522,52.878357423123376],[-128.41231483719875,52.87839882923985],[-128.41245591778423,52.87844021773031],[-128.4125732979924,52.87847425289095],[-128.41272241464677,52.87857546678684],[-128.41295279096002,52.878730508931945],[-128.41320809088126,52.87881608726946],[-128.41336289452636,52.87885327307984],[-128.41341857930723,52.87888296811512],[-128.41347776189141,52.87890866247959],[-128.41356008932007,52.87894845759607],[-128.41364597565203,52.87900163441812],[-128.41378462264382,52.879082314658675],[-128.41421942791914,52.879147950563734],[-128.41491807550645,52.87915377929501],[-128.41554778686304,52.87920811276516],[-128.416176856599,52.87936616617571],[-128.41669883125883,52.87949110397799],[-128.416860604317,52.879519737163356],[-128.41685484740657,52.879549563894024],[-128.4168969241662,52.87961821542792],[-128.41701892066712,52.8796678486777],[-128.4171437795548,52.879702281726125],[-128.41724611013055,52.879766330205626],[-128.41727787011786,52.87985032603809],[-128.41716324180283,52.87994686765637],[-128.41698998242174,52.88004405877108],[-128.41686279387227,52.880149263163204],[-128.41681687439646,52.88025896755629],[-128.4168171552616,52.880345862234996],[-128.41683172834234,52.880438625338606],[-128.41686615620708,52.88056965838294],[-128.41689959698778,52.88071585290806],[-128.41690388156812,52.880857040791014],[-128.4168864185149,52.880992513550055],[-128.41686202498636,52.881087755276795],[-128.41685116429304,52.881126100692406],[-128.41682996885132,52.88117923471006],[-128.41678334816913,52.88129288223024],[-128.41671771172912,52.88143270021333],[-128.4166501345894,52.88157088067093],[-128.41659920616502,52.88167452550899],[-128.41656889827985,52.881747463973404],[-128.41652804854428,52.88184809396024],[-128.4164223800043,52.881955106612054],[-128.41632030556752,52.882043540370006],[-128.4163153855949,52.88213726030269],[-128.41628312066715,52.882241642485404],[-128.4161804702469,52.882352512657796],[-128.41609437164712,52.8824434163598],[-128.41602554109465,52.882510428040966],[-128.41595949262026,52.8825773735195],[-128.4158970206387,52.88264144683585],[-128.41581357716356,52.88273006221483],[-128.41570768000443,52.88284940340776],[-128.41562744592895,52.88294523621304],[-128.41547802868405,52.882937659671995],[-128.4152707887784,52.88291220117112],[-128.41521762916358,52.88300916365694],[-128.41526960867878,52.883121340339805],[-128.41525292402147,52.88318839221303],[-128.4151907675243,52.88325806478348],[-128.41515742397812,52.88329407332069],[-128.41514808488776,52.88335929686407],[-128.41509909914555,52.88353016603868],[-128.41501145957287,52.88372538426914],[-128.41494609708087,52.88388649868648],[-128.4149095948081,52.88401451326905],[-128.41488766062758,52.88410409757884],[-128.41486542433802,52.884188090881736],[-128.41480221586767,52.88427236082051],[-128.41472510687632,52.88439055331205],[-128.4146939544988,52.884580116769705],[-128.41467371453777,52.88473246426581],[-128.41464413344275,52.88480202334993],[-128.41463415847406,52.88485604749134],[-128.41464596482996,52.88491635159056],[-128.41467616858495,52.88497291405275],[-128.4147132890696,52.88501980841307],[-128.41473866130113,52.88505684403596],[-128.41475671745943,52.88511253479385],[-128.41478181454667,52.885193869279355],[-128.414810219916,52.88526785225836],[-128.41483953292487,52.88532498910698],[-128.41487597024562,52.885376382385495],[-128.41493132744566,52.885432984148785],[-128.41500954816772,52.88549865112087],[-128.41511543248362,52.885592345607456],[-128.41522513053377,52.88570389241044],[-128.41527163387067,52.88575227117358],[-128.4151216269182,52.88581646505641],[-128.41481722346856,52.885949974484305],[-128.41463256743893,52.886027213078954],[-128.41454306241752,52.88605820370804],[-128.41443458775353,52.88609967500398],[-128.41435221817042,52.88615798463774],[-128.41426254626018,52.88625176750453],[-128.41417368462805,52.886343291182676],[-128.4141113142572,52.88642586596625],[-128.41405658921266,52.88652845691203],[-128.4140105463745,52.88661966616636],[-128.41397759377543,52.88667920309899],[-128.41393891653215,52.886736058982024],[-128.41388815144316,52.88682624390892],[-128.41388230222634,52.8869368009016],[-128.41389494735427,52.88702848226041],[-128.41384530982302,52.88712200768444],[-128.41384666580976,52.887211678391225],[-128.413906710959,52.88730182128299],[-128.41388389134906,52.88744132262312],[-128.41382084407286,52.88757773016898],[-128.4137989377527,52.8876678785202],[-128.41379824003516,52.887770481042736],[-128.4137958693015,52.88790956241627],[-128.41378878917382,52.888063881585424],[-128.41376932306895,52.88821340504108],[-128.4137290773325,52.88834148665861],[-128.41368344695027,52.8884237173107],[-128.41362658989098,52.88850504824451],[-128.41356247882857,52.888606154101105],[-128.41349153124887,52.888701794116834],[-128.4133833252604,52.8888138962218],[-128.41327834689642,52.88891696210507],[-128.41323259070356,52.88898069032034],[-128.4131929727124,52.88903756512518],[-128.41313257245932,52.88908926037388],[-128.4131141237108,52.88910869999386],[-128.41313652653258,52.88912617980112],[-128.41316315523395,52.88916880501903],[-128.41318076387014,52.88923290979686],[-128.41318697054106,52.88930959113074],[-128.41319157004514,52.88939078140312],[-128.41320626830202,52.889469530874216],[-128.41322870862695,52.889553162459734],[-128.41324903733963,52.88961609014908],[-128.4132720544647,52.88967728528482],[-128.41329883304365,52.889788302407545],[-128.41331086579294,52.88993493648353],[-128.41331989300193,52.8900777034581],[-128.41334065734495,52.89021406719419],[-128.4133809471587,52.890366292390134],[-128.41343367187844,52.890524424558635],[-128.41347925807247,52.89067149095612],[-128.41350679631145,52.89081220047907],[-128.41362689315707,52.89100874852513],[-128.4138169396506,52.89123974853322],[-128.41387348655354,52.89136640758471],[-128.41385040982237,52.89138649843405],[-128.41380818838195,52.89139745640255],[-128.41370534213945,52.89145619456147],[-128.41361888233746,52.89157401235263],[-128.41359909673668,52.89171793582416],[-128.413604914759,52.89185348503084],[-128.4136087365087,52.89193749870352],[-128.41361203642347,52.89199573483271],[-128.41362724111633,52.892099696912986],[-128.41366235003449,52.89224249333135],[-128.41372039183258,52.89237921275789],[-128.41377640312055,52.89248009454083],[-128.413805065465,52.8925585571266],[-128.41382727132014,52.89263826452523],[-128.4138521171963,52.89271511912763],[-128.41388368742153,52.892812017760996],[-128.4139331749632,52.89294554901739],[-128.4139664592567,52.893072685579575],[-128.41397882101936,52.893159331397804],[-128.41397786051672,52.89320812004219],[-128.41397720584513,52.893229436811325],[-128.4139768193728,52.89327205139972],[-128.41397549006683,52.89334720094779],[-128.41397515046648,52.89339037966925],[-128.41399604182374,52.89343031490606],[-128.41404542565044,52.893512827877025],[-128.41410048706962,52.893596910571695],[-128.41416655415827,52.89367796866518],[-128.41424801403983,52.89376767148586],[-128.41431840846394,52.89384303449834],[-128.41438182189734,52.8939101271402],[-128.41443222789616,52.893961224591216],[-128.41445501472055,52.8939854236367],[-128.41447182206602,52.894002461982716],[-128.4144876276569,52.89401839070189],[-128.41453822694925,52.89405659450879],[-128.414669052605,52.89414641340532],[-128.41481368230504,52.8942331410832],[-128.41492092782389,52.894284757197816],[-128.4150734963497,52.89434721062654],[-128.41526502560671,52.894439701738236],[-128.4154048547241,52.89452372875339],[-128.41549217374904,52.89458527969039],[-128.41556820236718,52.89464482904873],[-128.41563430702752,52.89471017942777],[-128.4157058973279,52.89479000198762],[-128.41586194754038,52.89489723200142],[-128.41608032668685,52.894986927671695],[-128.41627385176622,52.895032284631036],[-128.4165167894433,52.8950951304331],[-128.41677217743344,52.89518013541039],[-128.41690463548258,52.89523291784971],[-128.41702856893983,52.89528306783668],[-128.41720485546904,52.89535287960489],[-128.41751273088823,52.895411024635436],[-128.41797708223078,52.89545248723226],[-128.41827145539258,52.89553500991878],[-128.4186274560797,52.89571886105012],[-128.41936798020808,52.895801172219116],[-128.41996478146228,52.895681808221724],[-128.42012394391048,52.895597803635525],[-128.42016647084122,52.895624958992386],[-128.42033498633202,52.89565624821847],[-128.42053931838626,52.89571146689311],[-128.42079147653428,52.89585427765504],[-128.42114807556678,52.8959663503809],[-128.42142958847472,52.895953825624275],[-128.42176870309788,52.89592217405834],[-128.42217429928112,52.895962031889354],[-128.42237171533537,52.895993844090064],[-128.42242119100183,52.89597936997539],[-128.4224756165161,52.896019169043264],[-128.4226137306815,52.89608920327424],[-128.42270006285273,52.896165910509765],[-128.42272214150384,52.89621030478055],[-128.42277254187405,52.89622832715034],[-128.42282491557057,52.8962485512966],[-128.4228313128395,52.89629551114719],[-128.42282099600223,52.89635963387178],[-128.42281600490915,52.896386646248196],[-128.422811443055,52.89642094226052],[-128.42280946462276,52.896533662183],[-128.42284553201358,52.89669269874525],[-128.42288847355553,52.89689082771247],[-128.42288001938834,52.89715169236203],[-128.42285016817885,52.89736365480706],[-128.4228410467276,52.8974490562159],[-128.4228410656428,52.897482136583264],[-128.4228407976047,52.897510172845216],[-128.4228414663133,52.89752192749096],[-128.4228428415648,52.89761159751227],[-128.42284287200948,52.89779211481912],[-128.4228457625638,52.89792492541304],[-128.4228644277149,52.8980400274086],[-128.42290704682236,52.898166969314595],[-128.42294194896317,52.89825650456248],[-128.4229984667782,52.898349523151914],[-128.42309279016453,52.89845185369261],[-128.42316279353318,52.89851992725872],[-128.423203274538,52.89856002234985],[-128.42326603963033,52.89861534640953],[-128.42337210215453,52.89871127252654],[-128.4234885388331,52.89884229895885],[-128.42356758111703,52.89895447005141],[-128.42362193567962,52.89902567345747],[-128.42368785155844,52.89908710360137],[-128.4237515410522,52.89914240835858],[-128.42379091324787,52.89921223419189],[-128.42379965789098,52.89933314664898],[-128.42378483018499,52.89944893885673],[-128.42376506863638,52.89952727607991],[-128.42374222208406,52.899616880200554],[-128.42373165558425,52.899709603842204],[-128.4237251439176,52.8998078410688],[-128.42371589765688,52.89990726485303],[-128.42370763197138,52.8999584466315],[-128.42370225859605,52.89997873949802],[-128.42369974777014,52.900000094588826],[-128.42369203661266,52.90002828423864],[-128.42368111350163,52.90006550991765],[-128.4236645122607,52.900101175273804],[-128.42359965537028,52.90015633102396],[-128.42346800019908,52.900249298894856],[-128.4233208539038,52.900364454282574],[-128.42319217384977,52.90047698646267],[-128.42309720912996,52.900559671805695],[-128.42302401912133,52.900632382421946],[-128.4229252538507,52.90073027800287],[-128.4228454305291,52.90081713602417],[-128.4228083939869,52.90090311240348],[-128.4227778464966,52.90098839893566],[-128.42275884191503,52.90103083203094],[-128.42274836317168,52.901059643704755],[-128.42273233367243,52.901105379176336],[-128.42271539937542,52.90116796065917],[-128.42268472461566,52.901267260618155],[-128.4226530663305,52.90139853130052],[-128.42262078897917,52.901535429816605],[-128.4226136417188,52.9016718016084],[-128.42262316244322,52.901789899339704],[-128.42261045888938,52.901861354451064],[-128.42256988578598,52.901901433251986],[-128.42250583806174,52.901971147523085],[-128.42242407333165,52.90208943945273],[-128.4223642296299,52.90223306794098],[-128.4223426536882,52.90236133215327],[-128.42245867819636,52.90241948825616],[-128.42269868743074,52.902429684761],[-128.42281874865571,52.90244402953707],[-128.42281742897654,52.9024535826639],[-128.42281694330893,52.90254329075445],[-128.42268883425922,52.90273149753369],[-128.42243136617725,52.90283995442021],[-128.42229040457073,52.902851262845324],[-128.42227209904144,52.902889761581925],[-128.4222482142774,52.90297770915612],[-128.42223317117165,52.90304080763924],[-128.42218842857244,52.90307312355555],[-128.4220822082675,52.90312184674164],[-128.421973092892,52.90316894312942],[-128.42189652090215,52.90319855080002],[-128.42181414245204,52.90322434922706],[-128.4217259901625,52.90324691179405],[-128.42165455522584,52.90326856493386],[-128.42155417114435,52.90330539008325],[-128.42144752045277,52.90334682907952],[-128.42140920228772,52.90336107279173],[-128.42139086419465,52.90341526917368],[-128.4213514060454,52.903540537570585],[-128.42131323562384,52.90365568840551],[-128.42124966103097,52.903750059013845],[-128.4211106409778,52.90386111492995],[-128.4209389487705,52.903987428157464],[-128.42080726120298,52.904112908624796],[-128.42074109180476,52.90419444272148],[-128.42072567885708,52.90421830569284],[-128.42071887109594,52.9042296580659],[-128.420699926908,52.90425695739343],[-128.42067870751882,52.904277011111546],[-128.42064426988483,52.90429398220972],[-128.42060318331727,52.90432510096656],[-128.4205930349948,52.90435950268968],[-128.42060178476035,52.9043823121556],[-128.4205937524494,52.90440490196002],[-128.42055422517848,52.90446345408903],[-128.42049055246395,52.904556148849906],[-128.4204182735888,52.90466134518303],[-128.42036147188108,52.90474380742372],[-128.42031920849425,52.90480353698451],[-128.42028542326136,52.904864778358736],[-128.42027362169705,52.904919405043415],[-128.42026776851696,52.90494755607944],[-128.42026169228498,52.90497178293995],[-128.42021175996757,52.90499467888987],[-128.4200713012479,52.905064277718274],[-128.41991320070986,52.90515106669985],[-128.41980514414573,52.90524971530979],[-128.41974639960424,52.90536360241697],[-128.41971092788472,52.90544450415549],[-128.41969425707433,52.90547903996012],[-128.41963056454475,52.90553865399537],[-128.41944236521678,52.9056697891943],[-128.4191577489524,52.90584214124619],[-128.41879138133768,52.90605149694496],[-128.4184178684077,52.90623353290763],[-128.4181981981437,52.906286262528056],[-128.41808797517933,52.90626498326752],[-128.4179456012234,52.90626791057447],[-128.41778222790663,52.90632788658963],[-128.417665224549,52.906400372734886],[-128.41759376505667,52.90645453911437],[-128.41752788899998,52.90650859066951],[-128.41748185023206,52.90655102220563],[-128.4174606281851,52.90657107531488],[-128.4174460234243,52.90659267871244],[-128.41742518334047,52.906619460253935],[-128.41737548379655,52.906712421898625],[-128.4173397811588,52.90682191411296],[-128.41732164378303,52.9068800252668],[-128.41730004053045,52.90689336782328],[-128.41728281140925,52.90690157049419],[-128.4172907805605,52.90692719475475],[-128.41731602427694,52.90696143370747],[-128.4173338387692,52.90701264365858],[-128.41731940534504,52.907119456220286],[-128.417286423054,52.907227771246184],[-128.4172661542596,52.907264623006135],[-128.41726604271958,52.90727920115516],[-128.41726979284996,52.90736153820829],[-128.4172694843481,52.907503939440865],[-128.41725158240345,52.90761530812368],[-128.41720776583063,52.90771318969533],[-128.41716169195072,52.90780439928821],[-128.41725880516813,52.907922929905304],[-128.41740072965715,52.90812519591417],[-128.41725261439387,52.908322776251936],[-128.41699380954367,52.90844133832646],[-128.41690941349617,52.90848119414785],[-128.4169006471327,52.908490900171735],[-128.41686596407706,52.90853646165262],[-128.4167952449918,52.908636582126],[-128.4167202296304,52.90874296201182],[-128.416686118269,52.90879860264221],[-128.4166737716906,52.908827442923304],[-128.41662187215923,52.90891428702566],[-128.41652561726767,52.909040719998615],[-128.41640559237584,52.90917492467301],[-128.41627993632542,52.90930868876309],[-128.41616073805142,52.90944119881009],[-128.41606085473464,52.90953631175882],[-128.4160109614515,52.9095765792887],[-128.41603368720848,52.909681506892575],[-128.41607713422806,52.909905422951496],[-128.41609490978107,52.91003791755397],[-128.41605101485948,52.91006909211881],[-128.41596621678184,52.9101016719715],[-128.41592518628173,52.91011764673103],[-128.4158969465214,52.91012888284658],[-128.4158212174886,52.910157347559505],[-128.41566807123962,52.91021711006174],[-128.41547519866884,52.91028273818276],[-128.41536259708516,52.910252535354005],[-128.4153115709843,52.91014146155733],[-128.4152627984272,52.910086402294624],[-128.41520040144516,52.91010338065606],[-128.415131958894,52.91012889673379],[-128.41504684186222,52.9101558674029],[-128.41487854999716,52.91021146395044],[-128.41467976970793,52.91032093947352],[-128.4145022376424,52.91047650441575],[-128.41434074639255,52.910586335019374],[-128.4141810918194,52.91062997595064],[-128.41407053433696,52.91066868918328],[-128.41404776473715,52.91069437939223],[-128.41407884625994,52.91073298399513],[-128.41411320337272,52.91079675319328],[-128.41412447889954,52.910831279442775],[-128.41406377497137,52.91091101047923],[-128.41393999704857,52.911061551352276],[-128.4138682824618,52.9111443067936],[-128.41375927033485,52.91114430156594],[-128.41353900300552,52.91115442777123],[-128.41329935408467,52.91118401189051],[-128.41311325552718,52.91122146657742],[-128.4129688380062,52.91127096432552],[-128.41279910374152,52.91135068893234],[-128.412582829885,52.91144762102457],[-128.4123624199712,52.911537354116774],[-128.41216714941945,52.91161031809253],[-128.41199830494975,52.911672639921775],[-128.41187518828312,52.91172001313645],[-128.41179587262846,52.91175079109096],[-128.41170013816387,52.911788076804584],[-128.41155164132587,52.91184773831733],[-128.41140400442555,52.91190626975825],[-128.4112972269253,52.911946014982526],[-128.41120311422196,52.911978782169435],[-128.4111464874781,52.91199900362114],[-128.41113011496205,52.912006066525514],[-128.41108440317,52.91202157934455],[-128.4109985004266,52.91205137054701],[-128.4108791678833,52.912099786308865],[-128.41071030116603,52.912178368718905],[-128.41052181349616,52.91227248486803],[-128.41036985740894,52.91235352770354],[-128.41028840531476,52.91239611660992],[-128.41027126797465,52.91240600257558],[-128.41024776628532,52.91241881750008],[-128.41014887610672,52.912466248483845],[-128.40996203606838,52.91250707681538],[-128.40979810829091,52.91254127324441],[-128.40972049442257,52.91263535884736],[-128.40965142305888,52.91273207689697],[-128.40956489264536,52.912783747962656],[-128.40942604564316,52.91284938009022],[-128.40923853884314,52.912944595144864],[-128.4090495019617,52.91304545624172],[-128.4089011360783,52.913124172104915],[-128.40884410738633,52.91315393539187],[-128.40882690553343,52.91316269226975],[-128.4087712265512,52.91319971126464],[-128.40867154906326,52.91326622659184],[-128.40857630562627,52.91334497537941],[-128.40847120108555,52.91341440018845],[-128.4083806550489,52.913477364633536],[-128.40836035131886,52.913546730320135],[-128.40835681385303,52.91363257984064],[-128.40830479622457,52.91371773566631],[-128.4082225548871,52.913779399746275],[-128.40812776295854,52.913833481205856],[-128.4079967799172,52.91392305202453],[-128.40785215941636,52.91401851686536],[-128.40772647976837,52.914086675799936],[-128.40761965724408,52.91414212427932],[-128.40752560671132,52.91420907946082],[-128.40744848497238,52.914279051709855],[-128.40741857987737,52.91431049254557],[-128.40740195946532,52.91434615529112],[-128.40737234592478,52.91441571126641],[-128.40730481126738,52.91450679016694],[-128.40719061722328,52.914629661623835],[-128.40713194103984,52.914728963698074],[-128.4071520199715,52.91478742076496],[-128.40709135940386,52.91481893475266],[-128.4068896388497,52.91482754732373],[-128.40664280855606,52.91484605215678],[-128.40641309153386,52.91488718666184],[-128.40620318734224,52.91496548038852],[-128.40604077153492,52.91505962050609],[-128.40593731384382,52.915125089378115],[-128.4058368934359,52.91519497189216],[-128.405725156202,52.91527910534336],[-128.40564615146764,52.915348558656014],[-128.4055643257251,52.91543432262542],[-128.4054673101798,52.915547862251394],[-128.40539738135075,52.91564628116638],[-128.4053617044402,52.91570755591085],[-128.40533533553418,52.91576864030948],[-128.4053031333664,52.915858430278014],[-128.4052701403621,52.91593422579482],[-128.40523152571464,52.91597650002695],[-128.4051995982257,52.916005183026925],[-128.40518984150702,52.916013796058934],[-128.40519812145985,52.916045020560865],[-128.4052035944686,52.91614188858543],[-128.4051928560264,52.91628170291072],[-128.40517586792768,52.916409867847754],[-128.40517177956534,52.91650244651972],[-128.40517064486662,52.916564701181706],[-128.40516812845974,52.916619126675265],[-128.40516707351821,52.91668305702699],[-128.40511947129772,52.916764201061184],[-128.4050260483346,52.91687542427821],[-128.404983819723,52.9169693477638],[-128.40498543336972,52.91699791002095],[-128.40490844509577,52.91702078690339],[-128.40460209981168,52.91710777621929],[-128.40419988789426,52.91722979512917],[-128.4040075202041,52.91730548368918],[-128.4039640351762,52.917343937215044],[-128.403880431437,52.91739834234127],[-128.40376894829762,52.91745387320905],[-128.40355145726613,52.91756315438062],[-128.40320845712975,52.91774394883801],[-128.4029698132755,52.917858136833026],[-128.40282776729802,52.91790084555965],[-128.40261959847624,52.917960592506624],[-128.40229490917653,52.918053000090374],[-128.4019556400974,52.918151301487754],[-128.40171971055673,52.91823123915325],[-128.40150425922624,52.91831075827821],[-128.4012919306576,52.91837956629757],[-128.4011175383232,52.91844367091451],[-128.40096616429858,52.918519073616416],[-128.40082465256415,52.91860437463353],[-128.40071657906947,52.91867104486681],[-128.40067865097302,52.91869256561167],[-128.40063804119376,52.918732636429475],[-128.40055586614267,52.91881223242711],[-128.40048260627833,52.91888492819438],[-128.4004154590414,52.918950206880396],[-128.40033801617145,52.91901457439103],[-128.40023850084123,52.9190844331181],[-128.40013502445157,52.9191498967263],[-128.40004843762597,52.91920099615223],[-128.39994746913592,52.9192450966048],[-128.39982516105414,52.919290762455454],[-128.3997061025098,52.91932794838774],[-128.39957873630922,52.919366424850786],[-128.39945725598398,52.919410387129204],[-128.39933894591104,52.91947726476628],[-128.3992005747879,52.91956866171865],[-128.39909281240477,52.919640938951005],[-128.39891865567762,52.91969270206841],[-128.39866819598,52.91974657683142],[-128.3985641875914,52.91978626217421],[-128.39860770283164,52.91983077911073],[-128.39862235281907,52.91990896448076],[-128.3985050815243,52.91999432432286],[-128.39830656091155,52.92007685562248],[-128.39813050755666,52.92016117098352],[-128.39803243790058,52.920223714880045],[-128.39799838818828,52.92024795414462],[-128.3979764879386,52.92025624894823],[-128.39796470898153,52.92026209504316],[-128.3979232128345,52.92025341514131],[-128.39783100534757,52.92023791146557],[-128.39775962520022,52.92022815431543],[-128.3977112177973,52.92022914091854],[-128.39764546282728,52.920236652140574],[-128.39755461194454,52.92024523089042],[-128.3974712083233,52.92025365780203],[-128.3974369612465,52.92025771931795],[-128.39719284637175,52.920341733914114],[-128.3966860738247,52.92051126944319],[-128.39637885798751,52.920599940329936],[-128.39625803480334,52.92062258296365],[-128.39605282217536,52.92061947037581],[-128.3958278837087,52.92054725377891],[-128.39568926839385,52.92048560315489],[-128.395650446634,52.920474625599475],[-128.39560254313224,52.92048457065875],[-128.395455780189,52.9205099830739],[-128.39529599909383,52.920535660356826],[-128.39520436602683,52.92054705170568],[-128.39504333437554,52.920534077233974],[-128.39470450760868,52.92049164191609],[-128.39439282792932,52.92045145163276],[-128.39427272551785,52.92043707800641],[-128.39423994697208,52.92043438150588],[-128.39422129737474,52.92043420493559],[-128.39418667189386,52.920431546007784],[-128.39415947886323,52.92042873581429],[-128.39412655749902,52.92042323470873],[-128.39407838038562,52.92041188194519],[-128.3940367901517,52.920401516319686],[-128.39399362179483,52.920396232669866],[-128.3939181302401,52.92039608256649],[-128.39383905783092,52.92039881275785],[-128.3937377593458,52.920420499386694],[-128.39353623212736,52.92048290200453],[-128.39326126938616,52.920565293462644],[-128.39301798264475,52.920630787060205],[-128.39284820982968,52.92067796696821],[-128.39276805127722,52.9207109908449],[-128.3927519871345,52.920723650737976],[-128.39271025562167,52.92076037780166],[-128.39249527825237,52.920848839643014],[-128.3920544175517,52.920981135958655],[-128.3915341175812,52.92110943944786],[-128.390979703378,52.9212277870046],[-128.39061107095085,52.9213019849083],[-128.39053077863196,52.92131594958198],[-128.39051407844588,52.92135048986982],[-128.39046258679983,52.92146253448856],[-128.39042227123466,52.921591169923055],[-128.3904067902562,52.921680615015156],[-128.39035693995368,52.92178870650354],[-128.39027978926237,52.92190855560518],[-128.39021428349548,52.92198669281156],[-128.3901572808776,52.92203381987895],[-128.39008636923953,52.92208235067601],[-128.3900015202879,52.92214798247803],[-128.38995647449894,52.92220887698595],[-128.38992371868144,52.922355862771454],[-128.38993828288665,52.92258204820958],[-128.39004082599047,52.922681993824256],[-128.39010309885808,52.92267904248354],[-128.39011277936973,52.92271865271024],[-128.39006829878588,52.92290567459521],[-128.38994072406572,52.92317342409559],[-128.3897313518871,52.92334529995701],[-128.3894768496213,52.92344408422092],[-128.38933898158163,52.92349509548051],[-128.3891996452134,52.92355342862939],[-128.388897270456,52.92369578905096],[-128.3886337296532,52.923832884437545],[-128.3883611159812,52.923990900943565],[-128.38777537700997,52.924332420289346],[-128.38715983064614,52.924724429763685],[-128.3868982285621,52.92507899268718],[-128.38656028689152,52.92540202372317],[-128.38597680417897,52.92550186639172],[-128.38567661395427,52.925467590612136],[-128.38563076650405,52.925464600530105],[-128.38555566371815,52.92550479984257],[-128.38548734319824,52.925582991026374],[-128.38542660639288,52.92563019120303],[-128.38536758504532,52.92564147849014],[-128.38534458390947,52.92564698566861],[-128.3852903195432,52.925659862746066],[-128.38512843393528,52.92569845748887],[-128.38497027268676,52.92573698547914],[-128.38491879325628,52.925749796959956],[-128.38490349183166,52.925759641707586],[-128.38486292322034,52.92580082682437],[-128.3848203424092,52.925889142665746],[-128.38476643600845,52.92610830210015],[-128.38458284337287,52.926474732155086],[-128.38430415828196,52.926757869448984],[-128.38415513728705,52.9268433009217],[-128.38392786372393,52.926846219563394],[-128.38346494488962,52.92685223408066],[-128.38316769458697,52.92687058805676],[-128.3830178993392,52.926908943825936],[-128.3828061852268,52.92697321048938],[-128.3826223880953,52.92703692042834],[-128.38251606224037,52.927085598202915],[-128.38244907555946,52.92712115525737],[-128.38241382217464,52.9271409292411],[-128.3823556296387,52.92718359140996],[-128.38224370585883,52.927282279572744],[-128.38213045372467,52.92740733791395],[-128.3820349304528,52.92753260229739],[-128.38196254915545,52.92763833793727],[-128.38191448279574,52.927712188088925],[-128.38189292537066,52.92779334990815],[-128.38191942646858,52.92790044735635],[-128.38197839957522,52.92802146287837],[-128.38202895294722,52.92812527491169],[-128.38197431495408,52.92821495469957],[-128.38175276901683,52.92832034605967],[-128.38150263075954,52.92841453872497],[-128.381343688903,52.9284558757859],[-128.38125499411245,52.92848682156876],[-128.38116002612642,52.92855545843164],[-128.38102678177825,52.928656253962636],[-128.3809019272204,52.92879052409603],[-128.38082619368197,52.92891987157387],[-128.38079807554905,52.92898378296707],[-128.3807941481918,52.92899676054277],[-128.38078804606582,52.92902098500159],[-128.3807629182565,52.92910502617794],[-128.38073638465448,52.929247388433446],[-128.3807190533563,52.92940414885839],[-128.38071347188222,52.9295208649999],[-128.38071253508843,52.92957077218848],[-128.38070033107329,52.929619230039336],[-128.38066294983616,52.92971752938268],[-128.38062184391111,52.9298159040589],[-128.38058006421562,52.92988570662403],[-128.38053313450015,52.929946634910195],[-128.3804656735652,52.93002368406149],[-128.38036553798761,52.930133343398104],[-128.38025548102442,52.930265626998505],[-128.38014741397518,52.93048363629861],[-128.3800701620909,52.930785676031924],[-128.38005724661818,52.93110491842291],[-128.3800897347152,52.931568987263994],[-128.38012916312653,52.93220726399188],[-128.3801647246833,52.9327598527375],[-128.3801832318313,52.933007259671676],[-128.3801852363668,52.93304309695413],[-128.380160070823,52.933059858596955],[-128.380107909346,52.93309399292944],[-128.3800809129095,52.93311135665903],[-128.38011274941974,52.9332138615049],[-128.38018100884744,52.933417657216715],[-128.38021682124122,52.933524566337624],[-128.3802212662308,52.93353736553944],[-128.3802368138689,52.93371531896075],[-128.38026847611334,52.93414801968692],[-128.3802971930697,52.93451125767864],[-128.380304631124,52.93461089235142],[-128.3803093137496,52.93467806850128],[-128.38012598802726,52.934983939002954],[-128.37966411848743,52.935443993531415],[-128.37930525307752,52.935711919105024],[-128.37914919498724,52.935838968847506],[-128.37900961596884,52.93599370575867],[-128.37894026525944,52.93607079170154],[-128.37880982486206,52.936005592475084],[-128.37847846698864,52.93589849440267],[-128.37820699211704,52.935878749528676],[-128.37813731177457,52.93589978269079],[-128.3781202986735,52.93589564175565],[-128.3780728903049,52.93588145931456],[-128.37786925073323,52.93582447418813],[-128.37742786759895,52.93570052719157],[-128.37697878464124,52.93562214631517],[-128.3766914850665,52.935686249881826],[-128.3765753314237,52.93579343016621],[-128.3765600843753,52.935837464009204],[-128.37655363508216,52.93585553309394],[-128.37652656929868,52.93593848175076],[-128.37642160414688,52.936062253583074],[-128.37627687100314,52.93612515451004],[-128.37614653916992,52.93614516870378],[-128.37596702888257,52.93618634781918],[-128.37574528895294,52.93623903479559],[-128.37552788476773,52.93628602794016],[-128.37531512902103,52.936332926854256],[-128.3750688986968,52.93631435146789],[-128.37481508591364,52.936210163018664],[-128.37457349300118,52.936157857730194],[-128.37419080941268,52.93618351713732],[-128.3737659426283,52.93622179398362],[-128.37346213938622,52.93627445447132],[-128.37324235189237,52.93632877456393],[-128.37312395892027,52.93636255483492],[-128.37307110069892,52.93638436689867],[-128.37303010613255,52.93640144605525],[-128.37296657214847,52.9364324427339],[-128.37281646573916,52.936482558566844],[-128.37257439381855,52.93650537762896],[-128.37236605742265,52.93648098289988],[-128.37229586307222,52.936459418211356],[-128.37207336760417,52.9363983095857],[-128.37136530543978,52.93629037042579],[-128.37037862211858,52.93631866038025],[-128.36961777971374,52.936467957653086],[-128.3692286856736,52.93657950416131],[-128.3689141118469,52.93667328790789],[-128.36856400294138,52.936781796113884],[-128.36831831431144,52.93685681816292],[-128.3679096559983,52.93693510967871],[-128.3673196050931,52.93702097706826],[-128.3670501804953,52.93705499044381],[-128.36688294605094,52.93703200172196],[-128.36654954152237,52.93698825348702],[-128.3663823081089,52.93696527301244],[-128.36635510635335,52.93696245642336],[-128.36621235509404,52.93687675393639],[-128.36599124503135,52.936706296329895],[-128.36587676590372,52.936609369470375],[-128.36586596879792,52.936599495968565],[-128.3657489027661,52.936623716533724],[-128.36536057486782,52.93669879205163],[-128.36490307118828,52.93680440674746],[-128.3646571053949,52.936891194404794],[-128.36451447326138,52.93697534047006],[-128.36435560647783,52.937069346925355],[-128.36425626590403,52.93711058352858],[-128.36409732462636,52.93705211188723],[-128.36382729022364,52.936940933998386],[-128.36367990275184,52.93692259189914],[-128.36367034304658,52.93700238700252],[-128.36367339703844,52.93704044546676],[-128.36364707194622,52.937036489477954],[-128.36359001227876,52.937016333161395],[-128.3635624374138,52.93700679640034],[-128.36350336925415,52.937000699494035],[-128.36336646731024,52.93698663111331],[-128.363218047585,52.93696662292548],[-128.36301834356362,52.936929714486915],[-128.36277859230557,52.936876783181575],[-128.36258224114312,52.93683307968535],[-128.36247265693055,52.9368072501959],[-128.36244428297314,52.93679997155986],[-128.3624501787727,52.9367718239616],[-128.36246361504195,52.93671156716838],[-128.36247189329896,52.93667608862211],[-128.3624739792781,52.936663148808066],[-128.36246667580852,52.93664928527054],[-128.3622014734042,52.936523987656784],[-128.36167714605457,52.936315882176736],[-128.36138163757585,52.936215865627894],[-128.36110591197274,52.93611937108688],[-128.36062657531332,52.93591539924841],[-128.36036113370702,52.93575199163253],[-128.36024623401906,52.935613584706836],[-128.36009750751214,52.935487076696745],[-128.3600126748715,52.93541982145397],[-128.35995452447847,52.93536325177519],[-128.35989784064623,52.93531617811933],[-128.35984528543455,52.93527630477008],[-128.35977537792476,52.935226132704514],[-128.35971087958137,52.93518930617904],[-128.35965351373028,52.93516354830975],[-128.35949315003325,52.935062494728335],[-128.35924453507582,52.93488305097223],[-128.35911781408834,52.9346322068962],[-128.3591062956294,52.93432355100602],[-128.35910107976565,52.934162207076994],[-128.3590904948668,52.93413943975781],[-128.35907200174842,52.934125235254164],[-128.3590502342201,52.93411950067598],[-128.35888605814168,52.934084115664554],[-128.35854367590034,52.933995678461784],[-128.3582653946439,52.93388633083544],[-128.3581084608009,52.933796418418986],[-128.35800546097755,52.93373793907516],[-128.35795446923584,52.933709254258474],[-128.35788903609307,52.93367244550834],[-128.35778309527362,52.933611217493635],[-128.35768344892477,52.933545943674055],[-128.35758931227204,52.93347888212611],[-128.35749625454923,52.933414597332074],[-128.357385248377,52.93334618732732],[-128.3572171990464,52.93324080005585],[-128.3570209429723,52.933114110207484],[-128.35682492177182,52.932991908989834],[-128.35652946217166,52.93289187080139],[-128.3561713270009,52.932788045997924],[-128.355954079251,52.93265281434035],[-128.3558540125778,52.93256288172164],[-128.35580826098928,52.93254473773427],[-128.3557215453671,52.93251059620998],[-128.35554964331652,52.93245349406079],[-128.3553902574072,52.93240342427193],[-128.35527324825787,52.93236091939888],[-128.35503781544918,52.93231798595279],[-128.35469910255293,52.93231243099692],[-128.35442669441977,52.93234254709994],[-128.35424874666563,52.93237805599032],[-128.354147523434,52.932401948238805],[-128.3540729563753,52.93241913625987],[-128.3539746266702,52.932444647741306],[-128.35389153100945,52.93245919883628],[-128.35380473626324,52.932457571401095],[-128.3536681618528,52.93244909135145],[-128.35347875907692,52.93242933481343],[-128.3532841198213,52.93239903607572],[-128.35314273690125,52.932371026651346],[-128.35306160120945,52.932353589159376],[-128.3529943953613,52.932335316989395],[-128.3529118713803,52.93230949390963],[-128.35281769410233,52.93227549948667],[-128.35272887136563,52.932236913267346],[-128.35264152478183,52.93219157046405],[-128.35252849142714,52.932103015551206],[-128.35240093606802,52.93198784279612],[-128.3522719884164,52.93189792850482],[-128.35217111118777,52.93184388648452],[-128.35213659806772,52.93182663764137],[-128.35213254272253,52.93180373026937],[-128.3521245107417,52.93175960915709],[-128.35212053361045,52.931738386457496],[-128.35212152935512,52.93172267020171],[-128.3521513786056,52.931638542069955],[-128.35221279082384,52.93148483566602],[-128.35226048484031,52.93136952314762],[-128.35227231959433,52.93131379322917],[-128.35227142692642,52.93126391459159],[-128.35227327381605,52.93121286899182],[-128.35226855900896,52.931144571956324],[-128.35225122525583,52.93103335768395],[-128.35222908387237,52.93090262353554],[-128.35220461102674,52.93079716676067],[-128.35217299803017,52.93069744957294],[-128.35213655694022,52.93056083927575],[-128.35210597652784,52.930412335057554],[-128.35208466652045,52.93027989799158],[-128.35207093966505,52.93018319572317],[-128.352059926339,52.93010212660987],[-128.35204190780203,52.93001223712718],[-128.35202494583623,52.929958194966794],[-128.35201963300076,52.92994653336565],[-128.35206881076314,52.92990855181938],[-128.35213312472712,52.92984111729443],[-128.35216032627946,52.92981030199359],[-128.35215191745854,52.92979308746608],[-128.35212218337827,52.92974435035847],[-128.35207414620513,52.92968476739717],[-128.3520273572329,52.92963076531531],[-128.35197385729322,52.92957353384237],[-128.35191827884964,52.929512424280496],[-128.35187483324248,52.92946844584151],[-128.35185366280967,52.92943971855924],[-128.35184503781522,52.929418588721724],[-128.3518407562666,52.92940858376884],[-128.3518685774985,52.92933851520569],[-128.35190980753038,52.92907253002715],[-128.3519167543093,52.92872594967612],[-128.351876720564,52.92855801822828],[-128.35177240460342,52.92855953808937],[-128.35162327188397,52.9285597201577],[-128.35152426561453,52.928505640256034],[-128.35147965025888,52.928457200369174],[-128.35144153495517,52.9284254481224],[-128.35143360141586,52.928399819752016],[-128.35142760777876,52.92837582988551],[-128.35134871981055,52.9283314383393],[-128.3511952568299,52.92825322451495],[-128.35100138826172,52.92815226426544],[-128.35059143672515,52.928088143370424],[-128.34999814508043,52.92809663021252],[-128.34965179366222,52.92812092045655],[-128.3494827034316,52.92813102381503],[-128.34928204849712,52.928143443369166],[-128.34901654368204,52.92811230146922],[-128.34868806889858,52.928038134207505],[-128.34852081511963,52.92799719083798],[-128.34839884472802,52.92798280763467],[-128.34800609375705,52.92794299129048],[-128.34740157181446,52.92788329790921],[-128.34685574944763,52.9278229957879],[-128.3465855854595,52.92779194139994],[-128.34652833296764,52.92778467886988],[-128.346506819935,52.92780023916227],[-128.3464609318194,52.927830304608975],[-128.34643657163318,52.92784480946498],[-128.34640360518486,52.92783873984481],[-128.34636866795339,52.92783046717877],[-128.34633725500785,52.92781876072387],[-128.34629034195274,52.92779615165663],[-128.34622420528086,52.92776327030336],[-128.34618017105007,52.92774229002791],[-128.3461448941322,52.927727853163546],[-128.34609524227434,52.92770641979748],[-128.3460732639449,52.92769676749855],[-128.34599074111722,52.92768776621776],[-128.34582362687087,52.92763223215648],[-128.34564652604968,52.92747992043412],[-128.34547103963223,52.927306274091386],[-128.3453871088144,52.92723787858543],[-128.34534227272897,52.92720232984346],[-128.3452309759365,52.92711093517209],[-128.34513644743387,52.92696874468573],[-128.3450989607979,52.92676207577959],[-128.34503835966174,52.92655867491982],[-128.34488028641078,52.92639644845602],[-128.3446751238171,52.926242452223015],[-128.3444656981239,52.92607845007953],[-128.34421284464878,52.925904666197965],[-128.34384705931578,52.925677064112485],[-128.34340829738687,52.92539374381478],[-128.34304462064273,52.925238417148776],[-128.342691571429,52.92517424847611],[-128.3423446318233,52.925085856518365],[-128.34211439013035,52.92501756400115],[-128.341958080521,52.924971909070244],[-128.3418898131962,52.92495084453029],[-128.3418363674981,52.92496199880359],[-128.34170279138763,52.924990444202486],[-128.34160601053745,52.92501030900106],[-128.34158574304323,52.92501463195303],[-128.34155530364822,52.92502028746982],[-128.34144844243363,52.92504315117804],[-128.34127323893142,52.92507747419647],[-128.3410051147203,52.925100182794424],[-128.3406851894729,52.92509590109995],[-128.34051136853125,52.92508758216479],[-128.34047235734803,52.9250900444087],[-128.3404215122008,52.92511460029587],[-128.34031377322955,52.92513860158203],[-128.3400878744338,52.92508143044314],[-128.3398043283367,52.924976073963556],[-128.33968346243938,52.92493083238319],[-128.33961681213387,52.92490524972854],[-128.33948264973213,52.924855222610994],[-128.33941606122298,52.92483075978359],[-128.3393411321462,52.924841218899495],[-128.33919947570843,52.924875427919176],[-128.33909835394834,52.92490098277074],[-128.3390569569996,52.92491077507092],[-128.3388410476677,52.924967761910146],[-128.33847342783685,52.92519818080993],[-128.33831543462531,52.92551188354455],[-128.33832831196986,52.92564448120504],[-128.33822858806656,52.92567842069242],[-128.33801850538885,52.925756592237775],[-128.33787895124456,52.925846250959964],[-128.33782019135666,52.925930384647934],[-128.33779255042015,52.92597017459691],[-128.33774261156796,52.92597733769034],[-128.33761827960868,52.92598765602341],[-128.33745468887548,52.925995946738325],[-128.33721010340707,52.92600585507064],[-128.33689748065433,52.92601598406445],[-128.336651710482,52.92602143010529],[-128.33648696597578,52.9260258227926],[-128.33631571142584,52.926030344512384],[-128.33615104322072,52.92603585637679],[-128.33607118647416,52.926041361461344],[-128.33603368149798,52.926054438875134],[-128.3359117626211,52.926091615407124],[-128.33573396287812,52.92614671856258],[-128.33565142691154,52.92617134528677],[-128.33549749606613,52.926219803380874],[-128.3349065945203,52.926407553227314],[-128.33412178447176,52.926662496865426],[-128.333663797519,52.92680948398449],[-128.33346013873935,52.92685219858092],[-128.33324488141218,52.926853103736995],[-128.33301760761378,52.926839115562686],[-128.33285309189915,52.92683060071516],[-128.33276253860973,52.92682791136019],[-128.33269083765612,52.92682933283863],[-128.33261448872355,52.9268308464156],[-128.3325447262061,52.926833350538274],[-128.332447384502,52.92684312828375],[-128.33223644729043,52.92687197498483],[-128.33200514862367,52.926903467167385],[-128.3318971089571,52.926921869663964],[-128.33182229707472,52.92693456386929],[-128.33166313176952,52.92695565656726],[-128.33144015811865,52.92698586149151],[-128.3311069940092,52.92701264324542],[-128.33061656635567,52.92701002543853],[-128.3301555536064,52.92698271366464],[-128.3299167043206,52.92697847411424],[-128.32979314560922,52.92702016123823],[-128.32967910829998,52.927082405647994],[-128.32958096749442,52.92714544740754],[-128.32951580594323,52.92721512819165],[-128.3294905821474,52.927282341022845],[-128.32944848315708,52.92731344576389],[-128.3293837045854,52.9273220112167],[-128.32935691011383,52.927326470190316],[-128.32933654857507,52.92732911558801],[-128.3292887940105,52.92732501122823],[-128.32924324750286,52.92729339922598],[-128.32919795415668,52.92723207596268],[-128.32910698473128,52.92710270103593],[-128.3288986108197,52.926957146212],[-128.32865481189998,52.92693057889003],[-128.32851149244988,52.92696873614767],[-128.32843997036736,52.92699033235031],[-128.32825998868412,52.927039861302994],[-128.32792095659076,52.92712953498099],[-128.3276453036745,52.927202257701495],[-128.32750021677603,52.92722530852718],[-128.32740069360815,52.92721213697816],[-128.3273274452799,52.92718500072959],[-128.3272376006455,52.92717836456202],[-128.32701348612292,52.92725623727676],[-128.32668837803985,52.927396084040005],[-128.32649349979312,52.927480095582666],[-128.32643788918642,52.927503062146705],[-128.32642420534847,52.92750837341733],[-128.32636587002645,52.927532514973734],[-128.3261807147401,52.9276751989804],[-128.3259842254491,52.92788313381151],[-128.3259165869276,52.927975840628456],[-128.32579522730717,52.927904243081315],[-128.32545537828528,52.927774743855565],[-128.32505139179315,52.92771657882557],[-128.3247446328085,52.92768059194388],[-128.32459760291854,52.92761679236703],[-128.32456909448788,52.92758988274557],[-128.32445839929397,52.92766214627749],[-128.3242268650622,52.927809106705574],[-128.3240357257165,52.92787622283217],[-128.32384702972553,52.92786873799632],[-128.3236156344358,52.92788172076647],[-128.32344250229394,52.92790307798956],[-128.32329475371623,52.927911601062995],[-128.32314912673772,52.92792456668507],[-128.32305193296557,52.92793713204571],[-128.3229675147822,52.927944404400726],[-128.322848668736,52.92795292138701],[-128.3227267157494,52.927955884836045],[-128.32254106489628,52.92795282241583],[-128.3223049357075,52.92794739248572],[-128.32211183601402,52.9279444763994],[-128.32194979195043,52.9279471180194],[-128.3217442527637,52.92795565834523],[-128.3215058567949,52.92795979687008],[-128.32126485862764,52.92796735867778],[-128.32108175733143,52.927977132453194],[-128.32098335705015,52.92800149649545],[-128.32091662293956,52.92804261824715],[-128.32081494157717,52.92810965071906],[-128.32065056937333,52.92818913102473],[-128.32046471184816,52.92819952323647],[-128.32025169134792,52.92813925301016],[-128.3200040062255,52.92809256362452],[-128.3197661364405,52.928089405218614],[-128.3195880332808,52.92810524894711],[-128.3194953794984,52.928115488507345],[-128.319402939052,52.92812964334112],[-128.31928851788288,52.928150958267366],[-128.31918107936613,52.92818053962243],[-128.31907365655985,52.92821068562741],[-128.31901329397553,52.92821468262502],[-128.3189523372784,52.92817383620367],[-128.31881459479658,52.928109281468736],[-128.31863749922036,52.92810940775168],[-128.31847804704972,52.92815963801959],[-128.31840096190493,52.92818190263813],[-128.31836889847247,52.92819205968215],[-128.31817479697384,52.92822223535011],[-128.31771259077317,52.92829300360176],[-128.31723163858317,52.928361896859435],[-128.31674085511705,52.92842144740535],[-128.31618411674344,52.92860506469925],[-128.3157270171927,52.92888986433294],[-128.31546469931365,52.92900265681696],[-128.3152903231992,52.928950030394624],[-128.31506038388713,52.92890410263027],[-128.3147740145517,52.92890021097839],[-128.31454545201848,52.92889685885578],[-128.31432114028843,52.92878298489503],[-128.31381347167638,52.928600695671655],[-128.31321452921526,52.928539596647646],[-128.31297955444154,52.92855542712524],[-128.3129586490798,52.92851379044287],[-128.31291769210367,52.928394632457774],[-128.31286814572152,52.92825490649387],[-128.31281068324577,52.92812374023617],[-128.31274274282785,52.927988295286575],[-128.31269181584784,52.92789175616564],[-128.3126781666508,52.92786343061581],[-128.31253506567313,52.92782027589602],[-128.31212771506424,52.9276825313201],[-128.31172662870003,52.92745441422371],[-128.3115596820325,52.92721216213771],[-128.31146798678907,52.927051396691986],[-128.31134200606772,52.92697987551146],[-128.3112296430349,52.926936115471364],[-128.31111889915954,52.926887838925],[-128.3110117884489,52.92683780471162],[-128.3108844793299,52.92677639949953],[-128.31074717553577,52.926702301693005],[-128.3106493274193,52.926634146861296],[-128.3105556565873,52.92655694969323],[-128.3104557186437,52.92648435114464],[-128.31035634039236,52.926405023594505],[-128.31022897699887,52.92629092471944],[-128.31009361855627,52.9261668923286],[-128.30997403927026,52.9260588022037],[-128.30989249761342,52.92598192249951],[-128.3098285814117,52.92592039284088],[-128.30972964304604,52.92583208694753],[-128.30960096787476,52.92572810351989],[-128.30942966457235,52.92564569344053],[-128.30928296849083,52.92558747444264],[-128.30923161781502,52.92551728474859],[-128.30913105900734,52.925416112466095],[-128.30896583957423,52.92530836095159],[-128.3088101903031,52.92520547108415],[-128.3086418557538,52.92510899175883],[-128.30846189674807,52.92502170946914],[-128.30833306845523,52.92496649325324],[-128.30829206874716,52.924949359201506],[-128.30827776167126,52.92494347803962],[-128.30820172834228,52.92491637583544],[-128.30805481102936,52.92487104844137],[-128.30787166691061,52.9248281176602],[-128.3077248741761,52.92480240305621],[-128.30766383251924,52.92479407498861],[-128.30759190617314,52.92479100105287],[-128.30739214779763,52.924802766650124],[-128.30712570486975,52.924839383633824],[-128.306903800025,52.924872319423734],[-128.30680454901335,52.92488099223238],[-128.3067869122557,52.92488245915868],[-128.30673589387558,52.92488682283109],[-128.30663101147357,52.92489504980515],[-128.30656436988713,52.924903639217],[-128.30653206381575,52.92490932217987],[-128.30649415602974,52.92491510597448],[-128.30647938054875,52.92491763791383],[-128.3064547656504,52.92492765468226],[-128.30640738254598,52.92494764303448],[-128.30638461434083,52.92495761461905],[-128.30631744370774,52.92497350621035],[-128.30617109758333,52.92500776686918],[-128.30597317303327,52.925053128544725],[-128.30574394121527,52.92510583028367],[-128.30548318902748,52.92516139148028],[-128.30512687703788,52.925208177825205],[-128.30484572667973,52.925214241632595],[-128.30477426883263,52.92520275266392],[-128.3047112887442,52.92519277483106],[-128.3045862373708,52.92517280126543],[-128.30441887140117,52.92514580827966],[-128.3041434105514,52.925101872401235],[-128.30389969538757,52.925024801008476],[-128.30382659573098,52.92489673530517],[-128.30381701897113,52.924737163761954],[-128.3037984493182,52.9245833650561],[-128.3037293622533,52.92444345314303],[-128.30359979671476,52.924322663650436],[-128.3034789542905,52.92424262962645],[-128.3033735094047,52.92418863654165],[-128.30325283460346,52.92412877070535],[-128.30316190871338,52.9240845835481],[-128.303097764342,52.92405332586712],[-128.30304318771803,52.92402636546526],[-128.30302588367914,52.92401661384246],[-128.3030134397154,52.92401069558944],[-128.3029433005976,52.92398908043835],[-128.30282535320222,52.92396223913869],[-128.30276128568516,52.92394948319823],[-128.30264966694057,52.92393652772558],[-128.30235453650988,52.923942303253746],[-128.30198707388757,52.92400667175604],[-128.3015027686319,52.924047538304926],[-128.30094652379117,52.924016379096955],[-128.30070562026486,52.92399081903481],[-128.3007137959184,52.92395254018079],[-128.30072984476317,52.92383562709959],[-128.3007445011331,52.923692954857664],[-128.3007564469563,52.923586212305985],[-128.3007321053225,52.92348073542511],[-128.30066118264503,52.92337561330165],[-128.30056435780568,52.923308560520084],[-128.30041300323134,52.92326723010309],[-128.30026644815638,52.92322861301436],[-128.30017413514202,52.92317604662477],[-128.3001236644432,52.92313891431969],[-128.30010931299503,52.9231319029437],[-128.3000787941862,52.9231190458025],[-128.29996798234913,52.92306908318643],[-128.29977581808538,52.92297978432153],[-128.2995675026869,52.92286725674479],[-128.29939320479042,52.92274621596847],[-128.29927447924533,52.92265323874796],[-128.29920856937284,52.92260631746497],[-128.2991901029911,52.922557903962634],[-128.2991231959976,52.92247512542029],[-128.2989602065233,52.92240824315291],[-128.29883643806107,52.92237702712109],[-128.29866551368414,52.922352894103874],[-128.29826921467918,52.92229729584311],[-128.2978671970233,52.92220480115625],[-128.29756796429857,52.92216916261948],[-128.29706355193838,52.922113429282284],[-128.296511784847,52.92195714996689],[-128.29630858178828,52.921870303381766],[-128.29624924171094,52.92185856388754],[-128.29612685372663,52.92183573120053],[-128.29606752929982,52.92182455636836],[-128.29605969073387,52.92180004413669],[-128.29604201593065,52.921748816365124],[-128.29603077286214,52.92171315911351],[-128.29583183955248,52.92163631871961],[-128.29534388269926,52.921418803116936],[-128.29488533556852,52.9211592384823],[-128.29450923353153,52.920993917702084],[-128.29417264579726,52.920904619214014],[-128.29397035193938,52.92086876759454],[-128.29383724559074,52.92087191895322],[-128.2937710638139,52.92087153205764],[-128.29376502511465,52.9208632367178],[-128.29375555261765,52.92084324078442],[-128.29374747141665,52.920831630798716],[-128.2937293076327,52.920823015764086],[-128.29369098255452,52.92080358233964],[-128.29364757556976,52.920759017725864],[-128.29360228632814,52.920662361021854],[-128.2935593148722,52.92055668995107],[-128.2935252999254,52.92047887289202],[-128.29349630941377,52.920407684745584],[-128.2934763119848,52.92033071554978],[-128.29348593042891,52.920215050059454],[-128.2935309738445,52.920082441830466],[-128.29360750260489,52.920032740618566],[-128.2936921271045,52.919994649060996],[-128.2937273048771,52.919834760506795],[-128.29372906512342,52.91964245413732],[-128.29373443409588,52.91949996390524],[-128.2937399294141,52.919411842303845],[-128.29365793757754,52.919377564193454],[-128.29348150337202,52.91935466143174],[-128.29336863577274,52.919300804409694],[-128.29332564443874,52.91922932406315],[-128.2932934714714,52.91918567043776],[-128.29326202211038,52.919155447482936],[-128.2932177845117,52.91911258510197],[-128.293137707443,52.91904463493396],[-128.29301849332532,52.91894213592429],[-128.29288233032557,52.91881922144467],[-128.2927250391562,52.91868438596824],[-128.2925757658897,52.91857742269601],[-128.29251792021765,52.91854155212583],[-128.29250191408292,52.91857325612929],[-128.29248210052958,52.91856859258967],[-128.2924254915936,52.918555685856006],[-128.292172767289,52.91862170819988],[-128.29175400187032,52.91877113105685],[-128.29154510782377,52.91885480154512],[-128.29153741559614,52.91886784903612],[-128.2914652089481,52.91894604946813],[-128.29131599765054,52.919099754211715],[-128.29120937539147,52.9192139453047],[-128.29118847967118,52.91924125973978],[-128.29116908109535,52.91920968041538],[-128.29111554491007,52.91913280793844],[-128.29106791031245,52.91906141726351],[-128.2910409333367,52.91901036994827],[-128.29102737044715,52.91894897109319],[-128.2910376047046,52.918879260788934],[-128.29106738094902,52.918809169910155],[-128.29109624910248,52.91873966176109],[-128.2911109794332,52.91866705652979],[-128.29111187436436,52.91859697199813],[-128.2911084385274,52.918533133620926],[-128.29110553412764,52.91846199296113],[-128.29109672784125,52.91838480542186],[-128.29108799734863,52.91830930260573],[-128.29107967333815,52.91824107483205],[-128.2910737990493,52.91818401080414],[-128.29104319347624,52.91811733809929],[-128.29095310209553,52.91798455507961],[-128.2907854625452,52.917743965881606],[-128.29059385670803,52.91747358112873],[-128.29047507275675,52.91732678152265],[-128.29041608106849,52.91728700377697],[-128.29036479303764,52.91725156957133],[-128.29019186380054,52.91712039874735],[-128.28978539726478,52.91682279436503],[-128.28938536989838,52.916523386085736],[-128.2892090592093,52.916381068222826],[-128.28915466181394,52.916322706041484],[-128.28910634647013,52.91627319465288],[-128.2889665703842,52.91615203233749],[-128.28863844466747,52.915872524315084],[-128.28830584708686,52.9155790835923],[-128.28816326560505,52.91544003659452],[-128.28813470333506,52.91539406012089],[-128.28812572177765,52.915365650081405],[-128.28811460308694,52.91529747643759],[-128.288092636443,52.91516616454767],[-128.28807336926735,52.915067878439515],[-128.28806796048042,52.915036591548194],[-128.2880103351718,52.914952505273],[-128.28788969058246,52.91480573932938],[-128.2878308364555,52.91473345338899],[-128.28785349812378,52.91472180117704],[-128.2878907368204,52.91470369465582],[-128.28794261884275,52.914663445439125],[-128.28803464098516,52.91457252890937],[-128.2881258101703,52.91444855057275],[-128.28817372819933,52.91435175594382],[-128.28820427912657,52.91427885217209],[-128.2882629154764,52.91417344487426],[-128.28835853377242,52.91404545124917],[-128.28846447362383,52.91391894292821],[-128.28855082292884,52.9138090767576],[-128.28860157963607,52.91373073007388],[-128.28863418604513,52.913661140621805],[-128.28870496901052,52.91357400011803],[-128.28882891022394,52.913470120181096],[-128.28894133529914,52.913360302359656],[-128.2890296592143,52.91321788403589],[-128.28909563302798,52.91305851828583],[-128.28916611247197,52.91296576863037],[-128.28925652271215,52.91293149580718],[-128.2892987073879,52.91291890723119],[-128.2891854704682,52.91285776165731],[-128.28892995036247,52.91269792534076],[-128.2887294468382,52.912538704219216],[-128.2885996287018,52.912411732978036],[-128.28844383529045,52.912252197564435],[-128.28829155573166,52.912088674057635],[-128.28822840948587,52.91200581635875],[-128.28824632818163,52.91195781447719],[-128.28824778542486,52.91184623632878],[-128.28815186579757,52.91169114148727],[-128.28801886548393,52.911591704153516],[-128.2879654481062,52.91156863403611],[-128.28788666158377,52.91155895504505],[-128.28773890810618,52.9115489401671],[-128.28766072344357,52.911550460805636],[-128.2876057288731,52.91158459977722],[-128.28747770223166,52.911647075557276],[-128.28735650056916,52.91166288632966],[-128.2872762039629,52.91164258090221],[-128.2871963082212,52.9116469418566],[-128.2870484128896,52.911651494824476],[-128.28686690755873,52.911602894924464],[-128.28676646220114,52.91155439609893],[-128.28673820801018,52.91154877459708],[-128.28669821655177,52.911567490438244],[-128.28659019623373,52.91158585151887],[-128.2864226482726,52.911571726232154],[-128.28624625029445,52.911548812513324],[-128.2861359079768,52.91154142293966],[-128.28608072960537,52.91153745469431],[-128.2860351442445,52.911538896751374],[-128.28598158566618,52.911617296846536],[-128.28581949948088,52.91177404403142],[-128.28558266839363,52.91187506484816],[-128.28539605553803,52.911887659980465],[-128.285245666663,52.91188049155066],[-128.2851330951764,52.911883799714786],[-128.28502917885183,52.91189198927795],[-128.2848944638404,52.911899090821144],[-128.28476618820557,52.911887563722836],[-128.28461879343647,52.91184950928458],[-128.28444668770013,52.911802400361495],[-128.28419729847587,52.91177360921823],[-128.28387888262074,52.91177810603265],[-128.28359905696186,52.91178970978103],[-128.28337251080066,52.91182213645601],[-128.28313273128524,52.911937784353825],[-128.28292109162837,52.912074187351614],[-128.28283905493626,52.91212566602364],[-128.28280135084822,52.91210005532889],[-128.2826975758842,52.91205890069303],[-128.28258819423922,52.91203468092299],[-128.28242210265847,52.911943162630315],[-128.28219886018775,52.91179389733248],[-128.2820171803485,52.911707174489685],[-128.28183274534373,52.911655816422815],[-128.28165833153855,52.91160033519042],[-128.28153514063024,52.91156180744901],[-128.28140758822278,52.911528960934454],[-128.28126698250298,52.91151319359788],[-128.2809653891132,52.91153585967333],[-128.28056019382782,52.91157286630163],[-128.28031958059685,52.91158593530231],[-128.280196268842,52.91157992172217],[-128.28012159678204,52.911577440760475],[-128.28006172738193,52.91157299558048],[-128.27995327784907,52.911566128595105],[-128.27981599715662,52.911560385383325],[-128.27961342710645,52.91155310002642],[-128.27936955819519,52.91154044385906],[-128.27916424850463,52.9115343319663],[-128.27903994455855,52.91154458851095],[-128.27898457774822,52.911554630418465],[-128.27896617233594,52.911558915513915],[-128.278942280746,52.911547601914066],[-128.2788800345802,52.91151629472805],[-128.27878927194598,52.91149171075552],[-128.27864935639042,52.91148881561191],[-128.2784390581934,52.91152876599714],[-128.2782518772707,52.91158284311125],[-128.27812394911425,52.91157747286703],[-128.27801309329547,52.911543178201185],[-128.2779188476953,52.91152314559479],[-128.27786171844798,52.91151752509154],[-128.2777903410463,52.91152451305617],[-128.27768949333196,52.91153767736597],[-128.27761569047092,52.91155143905074],[-128.27757926807976,52.911567275262016],[-128.27756674672705,52.911577051918044],[-128.27753560003018,52.91160456245037],[-128.27740399987343,52.91166989454763],[-128.27711049376865,52.91175685533418],[-128.27674676633413,52.91178519793218],[-128.27641956148412,52.911729868016835],[-128.27625698322998,52.91163435377511],[-128.27622802760231,52.91156316098895],[-128.2762129911399,52.91152589817401],[-128.27620322958103,52.9115003007933],[-128.2761602442931,52.91148038699228],[-128.27606382835677,52.9114721624309],[-128.27594060709626,52.9114678198866],[-128.27577451044002,52.91146318562825],[-128.27553687146494,52.91146217749222],[-128.27531720900643,52.911466426851106],[-128.27521293271516,52.911467887840196],[-128.27519428708496,52.91146768344784],[-128.27516229937478,52.911531651198466],[-128.27508816671894,52.91166145138118],[-128.27503474807096,52.91172526854202],[-128.2749740307741,52.911722523377165],[-128.2748685906682,52.91171951302114],[-128.2745676289556,52.91178923833548],[-128.2740976423735,52.911956406687864],[-128.27381757038725,52.912085711679886],[-128.2737335865074,52.91213554420372],[-128.27369716217333,52.91215137920758],[-128.27355534209124,52.91216533190062],[-128.27323934805855,52.91223254588232],[-128.27300242479367,52.91233242136302],[-128.27288098693904,52.91239643067837],[-128.27275078705011,52.912435944070054],[-128.27262399934585,52.91248715887424],[-128.272533789151,52.91254271648363],[-128.27246487498974,52.9125956203165],[-128.27237304186383,52.9126556937041],[-128.27221670985043,52.91272934549712],[-128.27198295511346,52.91283644948046],[-128.27174535025887,52.9129060646705],[-128.2715682549479,52.91288761806819],[-128.27147606211003,52.912853521950744],[-128.27145354352743,52.9128505933799],[-128.27145290708924,52.912873593510994],[-128.27145376399525,52.912924584318496],[-128.27142175723836,52.91300592440649],[-128.27135971068282,52.91308280389766],[-128.27130378353056,52.9131522732998],[-128.27126473033198,52.91322365913361],[-128.27124427263047,52.91325936553724],[-128.27122588587966,52.91329896041996],[-128.2711806109235,52.9133934541768],[-128.27114437486387,52.9134827237791],[-128.27113306355858,52.91353282836176],[-128.2711337112248,52.91357990368273],[-128.27112928203408,52.9136366111863],[-128.27112566869533,52.913673678525306],[-128.27111950639264,52.91369789749831],[-128.27108337895004,52.91371934056302],[-128.27099718853353,52.913797798107595],[-128.27092324856943,52.913931519911856],[-128.27088721110567,52.91405946930612],[-128.2708512424501,52.914153774233526],[-128.27079467624785,52.91424624345619],[-128.27074108621028,52.914324636481375],[-128.27072068727657,52.91436146275444],[-128.27068834442017,52.91440132690914],[-128.27059910080254,52.91449274059422],[-128.2705126271523,52.914583544649695],[-128.27045069347497,52.91464528148981],[-128.27038243032376,52.91471050386642],[-128.27031385344205,52.91477012656452],[-128.27022314733514,52.914851477902936],[-128.27009241134422,52.914968356915864],[-128.26994418776405,52.91507211956922],[-128.26977220234733,52.91513205111266],[-128.26961455624672,52.91516368628334],[-128.26955365707542,52.915174951473844],[-128.26954166969463,52.91519479815776],[-128.26948420369908,52.915270466919196],[-128.26947969018738,52.91539555624719],[-128.26959727500608,52.915503724121876],[-128.26966685166386,52.91556796373197],[-128.2696522757171,52.91560917092844],[-128.26962252617446,52.91568037650837],[-128.26954508780872,52.91576595577824],[-128.26939043307777,52.915801452368],[-128.26917267640488,52.91587684069525],[-128.2689628229085,52.916047937771154],[-128.26877752528793,52.916190532444155],[-128.2686724466567,52.91633438709875],[-128.26862925628407,52.91652076345895],[-128.268514418222,52.916639020014635],[-128.26840485992614,52.91668149352283],[-128.26834454321894,52.91673871333682],[-128.268260072204,52.91684964827589],[-128.26815683709822,52.91699346680068],[-128.2680513958954,52.91713059196442],[-128.2679437493845,52.917261597768714],[-128.26784734764092,52.917393507812875],[-128.26777928758173,52.91749796419218],[-128.26772760938272,52.91757743978145],[-128.26765223565127,52.91768427931439],[-128.2675453759714,52.91781247114185],[-128.2674536314277,52.91790953585548],[-128.26740043071965,52.9179604472092],[-128.26734794481288,52.91800742527483],[-128.26729282284128,52.91805726143625],[-128.26723335134807,52.9181127780914],[-128.2671241194428,52.91821410797253],[-128.26702693638728,52.918314075449295],[-128.26700683102587,52.91835650986758],[-128.26699691316205,52.91839761786552],[-128.26695857954635,52.91850037967003],[-128.26691944274285,52.918622781242156],[-128.2669000982839,52.91869714877375],[-128.26687524149332,52.91875536160127],[-128.2667942779076,52.91886230813525],[-128.2666481938825,52.91898901245152],[-128.26647811189048,52.91910271633024],[-128.26635538027662,52.91919533636766],[-128.266313854127,52.919238174306145],[-128.26630794121104,52.91924949953449],[-128.26629510245314,52.919271048370355],[-128.2662891895276,52.919282373597596],[-128.26628311287757,52.919290903632096],[-128.26626799527511,52.919322021502126],[-128.2662984751347,52.91942178017257],[-128.26635293878766,52.91958721463697],[-128.26629885992767,52.919726720689624],[-128.266146215693,52.91981766541371],[-128.26602678661072,52.91986761839431],[-128.2536075053442,52.92323578426477],[-128.25360853664603,52.92339608511409],[-128.25362550267013,52.923575704872654],[-128.25363261993385,52.92376279606768],[-128.25377647477094,52.92389233309864],[-128.25407185053044,52.923943852067566],[-128.2543421658511,52.92401490955348],[-128.25452488655282,52.924156589471686],[-128.25470665542971,52.92429773127995],[-128.25486476681243,52.924449981345894],[-128.25504385608932,52.924593416251064],[-128.25522841431805,52.924734503825285],[-128.25545531735662,52.92484787247673],[-128.25567899834274,52.92505884017387],[-128.2558526251531,52.925204620861],[-128.25601895264697,52.925353339577704],[-128.25618347897046,52.925503222696825],[-128.2562542519991,52.925677881910474],[-128.25637810861582,52.92583414125518],[-128.2565160444044,52.9259923816861],[-128.2565812329955,52.926167147786586],[-128.2566205292903,52.9263457737774],[-128.25672357496416,52.92651364309274],[-128.25682574275052,52.92668265924518],[-128.25691033097485,52.92685424576518],[-128.2569329284924,52.92703431302237],[-128.25701747382723,52.92720478811957],[-128.2570928119699,52.927377673035615],[-128.25713488291453,52.927555689486006],[-128.25723245062835,52.92772590564712],[-128.25721570448275,52.92790224300712],[-128.25706264305038,52.92805653041534],[-128.25686275904184,52.92818929319339],[-128.25670010189805,52.92833872353556],[-128.25659812075523,52.92850716126562],[-128.25644216515673,52.92865982602924],[-128.25626146341196,52.92880286597777],[-128.25604418931422,52.928924193342816],[-128.25582895392824,52.929048835583515],[-128.25564821902955,52.929191319045536],[-128.2555027303912,52.92934826623121],[-128.25533151238136,52.929494486158426],[-128.25533692345073,52.929825112734754],[-128.25521885880528,52.929989381683214],[-128.25503244147754,52.930130286739036],[-128.25481719750638,52.93025493599759],[-128.2545499803495,52.93033124238098],[-128.2542626745218,52.93036253214166],[-128.25408878114382,52.930511052466024],[-128.25393376237932,52.93066425153575],[-128.2537319640664,52.93079647998527],[-128.253540682355,52.93093355617876],[-128.25334461730273,52.93106848138276],[-128.25315124849163,52.93120167741056],[-128.25287121257196,52.93126477179197],[-128.25272998455623,52.93141434170937],[-128.2527172989178,52.93159732661877],[-128.25268089554345,52.931772361621384],[-128.2525486909004,52.93193409078707],[-128.2524117179754,52.932093668799325],[-128.25229460383898,52.93225847213156],[-128.2521013742779,52.93239446181219],[-128.2519196590346,52.93253639246495],[-128.25172163031337,52.93266967497989],[-128.2514623757317,52.93275591153331],[-128.2512295752676,52.93286631495361],[-128.25096747293972,52.9329514837246],[-128.25069738687947,52.93302672350797],[-128.25042004793175,52.933088082922716],[-128.25024114029927,52.93323052211459],[-128.25006513624572,52.93337514771438],[-128.2498170434065,52.933478548813156],[-128.24939265791392,52.93368565422868],[-128.2491352848049,52.933772414475534],[-128.24891979775015,52.9338931282546],[-128.2486666065392,52.933988220345285],[-128.24840481788172,52.93407954773544],[-128.2483209573459,52.93423922676135],[-128.2482358994039,52.934411260814436],[-128.24811877717187,52.934576615554384],[-128.2480035613378,52.93474249877034],[-128.24797757955804,52.93492125190663],[-128.24797493181313,52.93510068043576],[-128.24798070306522,52.935280513178625],[-128.24798088603652,52.935460443671985],[-128.2480061632243,52.93563878269237],[-128.24805735444235,52.93581381945006],[-128.2480752402895,52.93599341175039],[-128.24810147141227,52.93617228855612],[-128.24816945740366,52.93634756946934],[-128.24819479460902,52.93652701937375],[-128.24812741952653,52.9366987152377],[-128.24794659701968,52.93684063069671],[-128.2476836729982,52.93692861431218],[-128.24747670305146,52.93705196047241],[-128.24735681382364,52.93721793186864],[-128.2472736529857,52.93739104961181],[-128.24720086213392,52.93756621149358],[-128.2470826854712,52.93772935152247],[-128.2469219529766,52.9378809626338],[-128.24675360589666,52.93802992055385],[-128.24658238251666,52.93817725591826],[-128.2464206485949,52.93832776424277],[-128.24625183983343,52.93850308069438],[-128.24604159155925,52.93856482556856],[-128.24574203499486,52.93859464979136],[-128.24544772607413,52.93861820255088],[-128.2451513916785,52.938638429879155],[-128.24485445120746,52.938647456933545],[-128.24455365205014,52.93865374956666],[-128.24429786679983,52.93857678618358],[-128.24394298683956,52.938742193600106],[-128.24362465537277,52.93882281118035],[-128.24336413064668,52.93886813682884],[-128.24310391225006,52.93886636955228],[-128.24279252840407,52.938848760051016],[-128.24258466895165,52.93883198458057],[-128.24222071647392,52.93886077549029],[-128.24188311227903,52.93885880250553],[-128.24159782216537,52.93884124891387],[-128.24128965879663,52.938849359564095],[-128.24100868432222,52.93878968537713],[-128.24071623932764,52.938777880389],[-128.2404817954343,52.93878738378217],[-128.24016923344712,52.938800624691815],[-128.23993495636606,52.93883086875418],[-128.23959607320074,52.93887543494677],[-128.23931047283796,52.93890496815136],[-128.23894550952332,52.93895002861984],[-128.23863233652474,52.93905800590977],[-128.23842206401923,52.939137118960986],[-128.238157387081,52.93920998344517],[-128.23791883982324,52.93931878191399],[-128.23764251242292,52.9393828889039],[-128.23735394777682,52.93942705693526],[-128.2370608320609,52.93945560632265],[-128.23678811080626,52.939517409485056],[-128.2364985461649,52.9395604643133],[-128.23620020257368,52.93956052721471],[-128.2359054257594,52.93957509594593],[-128.23562108359843,52.93962870434652],[-128.23532852454593,52.93966789375657],[-128.23504303650085,52.939717603119554],[-128.2347857890516,52.9398076913476],[-128.23454356299527,52.93991767365952],[-128.23427683482672,52.939987195833595],[-128.23398457881854,52.94001460898889],[-128.23368403321794,52.94002591826318],[-128.23338361929297,52.94004002253805],[-128.23309359277204,52.94007411776826],[-128.2330149032639,52.94012045466646],[-128.2328038460374,52.940291502506824],[-128.23277500504244,52.94041704786341],[-128.23271951916135,52.94062101959922],[-128.23269135527676,52.94077738680916],[-128.232583938696,52.940933580039044],[-128.23239901477228,52.94110525238889],[-128.23224439349153,52.94126793701354],[-128.23218463317232,52.94144396188452],[-128.2320910172004,52.941614467124964],[-128.23199832401102,52.941784945792925],[-128.23193105152808,52.941959991789275],[-128.23184780444274,52.94213254233667],[-128.23173535043287,52.94229947600702],[-128.23149196208303,52.94247673942421],[-128.23139531569234,52.9425895602881],[-128.23121736085156,52.942734191910425],[-128.23099472123457,52.942844916080354],[-128.23078111720852,52.94296780064901],[-128.23053758647498,52.943071072107436],[-128.23027039234648,52.943150127218416],[-128.22999027348712,52.94321373117968],[-128.22970327353127,52.943252800650924],[-128.2293648866402,52.94325416027756],[-128.22912702732648,52.94323456564665],[-128.22884056901108,52.943248393573555],[-128.22845172076703,52.94322997019931],[-128.22819169690453,52.94319677508714],[-128.22798624422597,52.94310145127437],[-128.22772726345627,52.94305254006112],[-128.22754550004277,52.943035800008346],[-128.22723409213623,52.94301814940613],[-128.2269490016833,52.94296916547961],[-128.22666795903245,52.94296159383211],[-128.22639338733356,52.942917459023676],[-128.2260981723939,52.942942100818016],[-128.22580502492215,52.94297062212337],[-128.22550093800055,52.94295058633998],[-128.22505549584898,52.94299096266222],[-128.22483716539273,52.94311280434296],[-128.22457686870192,52.943198998597595],[-128.22430868010565,52.94327693764878],[-128.22403411141374,52.94333986631551],[-128.22375572789204,52.94340118026372],[-128.22351898332127,52.943509914084984],[-128.22329870937418,52.94363066835737],[-128.22312639922794,52.94377685760393],[-128.22298833891904,52.94393641794668],[-128.22285594004953,52.944096992281935],[-128.22274338706384,52.94426279717549],[-128.22255388115883,52.944401471445566],[-128.22233751635054,52.944525513189255],[-128.22213080158548,52.944656098900445],[-128.22201629326685,52.94482025374774],[-128.22198179085973,52.94499860262708],[-128.22199955562135,52.945178198151986],[-128.2220188770087,52.94535160275327],[-128.22200153648748,52.94553747528379],[-128.2220127881974,52.94571719368633],[-128.22200623150422,52.94589501498664],[-128.22195870055904,52.94607416569625],[-128.22199493621028,52.94625004921083],[-128.2220645592989,52.94644044173473],[-128.22208799347843,52.94658574129457],[-128.22219215149508,52.94677660295828],[-128.22230153683927,52.94694270184326],[-128.22242015125485,52.947106949249616],[-128.22253131349058,52.94727132825596],[-128.2226287884528,52.947441579989416],[-128.22275020726354,52.94760576514978],[-128.22275157214986,52.94770327429416],[-128.22285861809956,52.94794957930244],[-128.22282960871925,52.94809026337276],[-128.22280155232065,52.94823148548849],[-128.22269363130076,52.94845045853234],[-128.22255959462535,52.94866935941856],[-128.22245281978473,52.94885691101294],[-128.22218772846128,52.949137702994314],[-128.22179180521167,52.94944899054926],[-128.22124476683842,52.949813020661765],[-128.2210926428043,52.949953784520275],[-128.22088075334418,52.950056993507985],[-128.2206498937604,52.95015439839127],[-128.22046427167243,52.950296358188595],[-128.2202718560547,52.95043339639073],[-128.22006793765053,52.95056448067672],[-128.21979878472382,52.950642991288014],[-128.21960148080115,52.95077563611013],[-128.21935682226936,52.95087666168722],[-128.21908961678534,52.95095681103769],[-128.21879331925172,52.95096183016922],[-128.2184956011681,52.95095735056906],[-128.21814950413022,52.95091959302185],[-128.2178718163384,52.950959577936544],[-128.21763865717028,52.95088773594891],[-128.2173464178286,52.95091678284327],[-128.21705250905927,52.95093184238253],[-128.21679434944016,52.95091708883548],[-128.21653153334182,52.95092035079068],[-128.21626137163943,52.950908064201684],[-128.21600219670333,52.95085576719203],[-128.2157158507714,52.95080117376202],[-128.21542106190938,52.95081737585157],[-128.21514846924683,52.950883599452254],[-128.21489200746575,52.950973070699334],[-128.2146599805203,52.95108393841115],[-128.2145163619724,52.95124526876063],[-128.21426188292654,52.95131900607776],[-128.21396400194746,52.95131171085447],[-128.2136665943739,52.9512954462758],[-128.21338282252722,52.95134393850524],[-128.21308963802213,52.951372992483854],[-128.2127965990074,52.951404850183216],[-128.2125089090697,52.95145005065818],[-128.21229437055325,52.951502853579434],[-128.21198097931494,52.95160963916151],[-128.21170823086914,52.95167305927598],[-128.21143795613037,52.951748199161855],[-128.21115442604219,52.95180173071876],[-128.21086158669675,52.95180162443503],[-128.21057719189918,52.95174866801758],[-128.21029119657047,52.95170079032456],[-128.20999938539396,52.95166646512662],[-128.20970107326664,52.95166870086327],[-128.20940380168298,52.95167315848104],[-128.2091118089074,52.95165341753602],[-128.2088324839204,52.95159027210494],[-128.20853566612183,52.9515672480525],[-128.20824061341108,52.95159632490862],[-128.20800066158137,52.95169892408005],[-128.2077852865726,52.95182571669767],[-128.20759955614915,52.951966536082345],[-128.20738105663074,52.95208722501797],[-128.2071117400553,52.95216290182561],[-128.20687487492165,52.952271037127225],[-128.20660863442467,52.95235226048038],[-128.20639205160867,52.952474032621986],[-128.206167680305,52.9525892237912],[-128.20587206733836,52.95260765926198],[-128.20557461457008,52.95260874723916],[-128.2052779603635,52.95262494958945],[-128.20484602216905,52.952676204831114],[-128.2045526192573,52.95270131308452],[-128.204255379691,52.95268838472991],[-128.2039596198943,52.95270401094016],[-128.2036772160449,52.95276142237802],[-128.2033917192334,52.9528132945819],[-128.20311223249342,52.95287289219957],[-128.20285106740673,52.952962424423525],[-128.2025872658301,52.953018929097404],[-128.202314322219,52.952934904486604],[-128.20204639404096,52.95285752089229],[-128.20175791690946,52.95281583040544],[-128.20145995578915,52.952806827775596],[-128.20116177988527,52.95281183738495],[-128.2008798906054,52.952861393840784],[-128.20064216863756,52.952971218307844],[-128.20032049179954,52.95309886230007],[-128.20003194002211,52.953145733993026],[-128.2000004067208,52.95314913035529],[-128.19973879191215,52.953175874698694],[-128.19945116323615,52.95322272769933],[-128.19916464682018,52.95327292243681],[-128.19888122184096,52.95332866410737],[-128.19860486092767,52.95339492787432],[-128.198334667886,52.953472277599545],[-128.19806336151066,52.953546293210984],[-128.19778056818703,52.953596414998444],[-128.19748201197294,52.95361207696823],[-128.19718426410296,52.953625480944496],[-128.19688631334836,52.95363495970627],[-128.1965916420608,52.953653910145206],[-128.19631013246564,52.95371073084751],[-128.1960277699018,52.95376925286393],[-128.19574217004623,52.953819422021056],[-128.19545561610073,52.953869043240225],[-128.1951690619493,52.953918672720704],[-128.19488044114294,52.953964411774436],[-128.1946040407449,52.95403010165064],[-128.19433765025792,52.95410905718651],[-128.19407329558746,52.95419133738],[-128.19380996551178,52.9542752749915],[-128.19354761691113,52.954360323746975],[-128.19328432759818,52.95444538044825],[-128.19302096575132,52.95452876076468],[-128.19275468468427,52.95460995268865],[-128.19248040034478,52.95468064731562],[-128.19220207035386,52.95474524622886],[-128.19193567093205,52.95482419629794],[-128.19168212618067,52.95491748039774],[-128.1914345606456,52.95501793512158],[-128.19119087964555,52.95512168919037],[-128.1909481939083,52.955226536309446],[-128.19070739958514,52.955331912730024],[-128.1904685543619,52.95543893846026],[-128.19022976515035,52.95554707473593],[-128.18999188535088,52.955654637534074],[-128.18975306511663,52.955762217310905],[-128.18951522565695,52.955870899406314],[-128.1892725029224,52.95597518750698],[-128.18900112208902,52.956048061857246],[-128.1887207990269,52.95611044713996],[-128.18846812117474,52.95620258679366],[-128.18821063153658,52.95629200814251],[-128.18798246370886,52.95640723366023],[-128.18776976457312,52.956533381989296],[-128.1876030151521,52.956682218693594],[-128.18748556742887,52.95684695529443],[-128.1873044856452,52.95698933134692],[-128.1874298220401,52.95717758458308],[-128.18746604006762,52.95735572647006],[-128.18756617167273,52.957525389617224],[-128.1876699737502,52.95769386342105],[-128.18770804150242,52.95787196187294],[-128.18781473457955,52.95804206791569],[-128.18789454173273,52.95821547156832],[-128.18797341024586,52.95838889260072],[-128.1880021478207,52.95856660822189],[-128.18801698672436,52.95874625917662],[-128.18802996251878,52.958925953697815],[-128.18803359086425,52.959105256859964],[-128.18798578686213,52.959282152411205],[-128.18802200854844,52.95946028494052],[-128.1880934826068,52.95963496426744],[-128.1881538473826,52.95981097102924],[-128.1881779774886,52.959989893162216],[-128.18818349934264,52.96016972605151],[-128.18817967341013,52.960349167594906],[-128.18816931681044,52.96052873046222],[-128.18812999241788,52.96070714545753],[-128.18809253193783,52.960885534751725],[-128.1880578161966,52.96106274297991],[-128.1879081550086,52.96121798829464],[-128.18777070156025,52.961374692684124],[-128.18773045026362,52.961553124628246],[-128.18769112354437,52.96173154832657],[-128.18768732397217,52.96191154520146],[-128.18765936365438,52.96211161396054],[-128.187700979073,52.9622677898533],[-128.18765476081342,52.96243905006599],[-128.1875127506141,52.96259808071818],[-128.18730468624233,52.96272414104803],[-128.18707653906176,52.96284048435618],[-128.18686767657957,52.96296935684363],[-128.18664360018948,52.96309235003724],[-128.1864308926794,52.96321905991554],[-128.1862816676971,52.96336476109886],[-128.18626507406483,52.96355004439966],[-128.18616124348358,52.96370779939979],[-128.18606038818675,52.9638688622398],[-128.18600331608678,52.964083488303],[-128.185799583531,52.96416686490491],[-128.1855310006237,52.96425929198222],[-128.18529704686955,52.96437181104493],[-128.1850462915688,52.96446614830021],[-128.18475200031938,52.96449402894077],[-128.18446033945057,52.96451849687013],[-128.18417882827444,52.96457697267442],[-128.18389099033405,52.96462154736577],[-128.18360947723315,52.964680012846046],[-128.1833259984647,52.96473683697047],[-128.1830369465375,52.96477582673985],[-128.18273576197902,52.96479654763963],[-128.18249368598097,52.96487838678257],[-128.18230888284313,52.96502194353848],[-128.182060124506,52.96511903536929],[-128.1817877620395,52.9651924656196],[-128.18150719576147,52.965251473407235],[-128.18125267040944,52.965345316069616],[-128.18105782279756,52.965475039014144],[-128.18086612255445,52.965611438643904],[-128.18060752056672,52.96569861999398],[-128.1803251427394,52.96575877945351],[-128.18003066136777,52.96580122532439],[-128.17976144491266,52.965863381910324],[-128.17957866451215,52.96601025978585],[-128.17954528646507,52.96605067946394],[-128.17953824519617,52.96618645767696],[-128.1794894159409,52.96636224613678],[-128.17945486379622,52.966452570047664],[-128.17935511972635,52.966526719345076],[-128.17908874369024,52.966589942763626],[-128.17879117978282,52.96662683713299],[-128.1785046060893,52.96667810119979],[-128.1782241691212,52.96673990558368],[-128.17794361614634,52.96679946034757],[-128.17766212336275,52.96685904077092],[-128.1773825656504,52.96691969682009],[-128.17709691285833,52.966970940362216],[-128.1768092097813,52.96701830188026],[-128.176536969184,52.96709451541663],[-128.17624798864568,52.96711723593273],[-128.17594815443871,52.967109878797764],[-128.17565008375647,52.967100811229365],[-128.1753527807935,52.96708836556688],[-128.1750555925861,52.967078159146986],[-128.17475776636053,52.967073569031086],[-128.1744645043689,52.967103646576746],[-128.17411596136142,52.96709270875588],[-128.17392716314117,52.96723184099988],[-128.17372875701864,52.967365544952834],[-128.1734819439722,52.96746482412588],[-128.17318810595933,52.96748369851895],[-128.1728921788601,52.96746169676306],[-128.172595437486,52.96747838112841],[-128.17229853330886,52.96747376774312],[-128.17200195283814,52.96745737210532],[-128.1717054735421,52.96744265992264],[-128.17140722038545,52.96744815864027],[-128.17110989173685,52.96745363956035],[-128.1708155572392,52.96748092954432],[-128.17054502432725,52.96755429934361],[-128.17028550703841,52.96764259524584],[-128.1700079408782,52.967706003896964],[-128.1697212350274,52.96775500656981],[-128.169433360435,52.96779954585307],[-128.16914662495216,52.96784799160551],[-128.1688589354276,52.96789588920425],[-128.16856902350904,52.96793710069984],[-128.16827575118828,52.967967162825914],[-128.16798986688107,52.96801390398505],[-128.16764804401737,52.96815303497745],[-128.16735458739257,52.9681063107281],[-128.16706178972757,52.96809095405985],[-128.16676475630814,52.96810202373632],[-128.16646710885644,52.96810133741977],[-128.16618119290243,52.96814750970684],[-128.16590872658477,52.96821978311322],[-128.1656211017806,52.96826935754965],[-128.1653575143436,52.96835099083058],[-128.16507384438714,52.9684049753901],[-128.1647779881245,52.96840256578771],[-128.16448096431768,52.96839569270447],[-128.16423908902573,52.96848252968226],[-128.16402722735077,52.9686091814303],[-128.16384889100536,52.968753144692585],[-128.16361319562566,52.96894301212073],[-128.16339348257674,52.96897058965889],[-128.16310360121253,52.969012342926206],[-128.16281478655807,52.96905688298448],[-128.1625391632096,52.96912248003346],[-128.16230209080786,52.969230533527146],[-128.16208445580563,52.96935391542327],[-128.16190088774783,52.96948677002796],[-128.16165030666605,52.969567599935196],[-128.161290861317,52.969672847722684],[-128.1609638172384,52.969607657054446],[-128.16070737119122,52.969518193560525],[-128.16051926089844,52.96937815013382],[-128.16030491059811,52.96925428230306],[-128.16002315203622,52.96919891296417],[-128.15975267914564,52.96912708536083],[-128.1594619960356,52.96917165137784],[-128.1591782275829,52.96922393723289],[-128.15888115553972,52.969234422546116],[-128.15858338657262,52.969231476308885],[-128.158286130571,52.96922010760116],[-128.15798840485343,52.969217715108556],[-128.15769072109234,52.969216442140194],[-128.15739273947824,52.96920900364748],[-128.15709853044427,52.969184123615804],[-128.156811481804,52.9691350137825],[-128.15653573445255,52.969069436734074],[-128.1562738502495,52.968982861480164],[-128.15600765537746,52.96890309979175],[-128.1557352415903,52.968829612588074],[-128.1554645225657,52.96875273062478],[-128.1551947005258,52.968675266635756],[-128.155034233669,52.96852798272693],[-128.15487342735707,52.96837397855494],[-128.15463081974715,52.96828088584386],[-128.15433405402015,52.96827903168569],[-128.1540378153025,52.96826931087141],[-128.15374754501073,52.96822977702262],[-128.15347253455317,52.96816026032284],[-128.15319934686255,52.96808957966281],[-128.1529075116656,52.968056242604085],[-128.1526123319236,52.96803024824663],[-128.15232371514332,52.96798675258668],[-128.1520366950105,52.967937630813324],[-128.15175057157722,52.967887926965304],[-128.15163371895693,52.968067742298295],[-128.1515047324868,52.96822873036382],[-128.1513302536355,52.9683759666304],[-128.15114533013625,52.96851947418774],[-128.15100470225354,52.96867170587096],[-128.1510148905325,52.96885480562794],[-128.15104540157893,52.969033615083006],[-128.15101974604,52.9692089660316],[-128.15093241716193,52.969382080022],[-128.150887279607,52.96955947268361],[-128.1508963729757,52.96973922921792],[-128.15088026406397,52.96991888988555],[-128.15085947383287,52.970098079971145],[-128.15083492642535,52.97027677362904],[-128.1507785735748,52.97045380590447],[-128.15068823882928,52.97062304627761],[-128.15059609622392,52.97079344956531],[-128.15049833156883,52.970963390382096],[-128.15032277195604,52.971107846261454],[-128.15019285980722,52.971269405270725],[-128.1500068252987,52.971409567653296],[-128.1498035997107,52.97154219616966],[-128.14971133785733,52.97171034970026],[-128.14957284171493,52.97186814538802],[-128.14940882884164,52.97201967126685],[-128.14916260217976,52.97211384679632],[-128.148925422512,52.97222075317424],[-128.14869612321124,52.97233591860899],[-128.1484512289385,52.97243791553403],[-128.14819354375194,52.972526692722624],[-128.1479240622527,52.97260390903298],[-128.1476684090226,52.97269601108847],[-128.1474482778139,52.97282670132785],[-128.1472000230159,52.97291754640696],[-128.14695902017496,52.973022832249455],[-128.14669741505728,52.973108314344735],[-128.14642494040126,52.9731816624834],[-128.14624153306792,52.973318972407114],[-128.14609416895786,52.97346794782977],[-128.14595974965837,52.973632946734554],[-128.14592955843682,52.97381118535289],[-128.14585428197057,52.97398351000342],[-128.14567688624626,52.974129112664315],[-128.14550419937808,52.97427575030051],[-128.14535908986093,52.97443253976346],[-128.1452309281165,52.9745923745381],[-128.14505412875988,52.97476823319897],[-128.14494689764396,52.974936098729565],[-128.14483310465909,52.975103527563064],[-128.1449043860026,52.975277111138475],[-128.14494687444355,52.97545346096285],[-128.1449026863057,52.97563194489197],[-128.14486698035856,52.97581196038697],[-128.1448295226442,52.97599424980571],[-128.1448449558723,52.97617053611707],[-128.14494018000426,52.97633807853057],[-128.14507807726193,52.97650035976703],[-128.14523613112777,52.97665554761959],[-128.14542967528158,52.97679270847909],[-128.14564147061893,52.9769216983754],[-128.14576606614338,52.977079171949505],[-128.1458264071258,52.97725800328163],[-128.1459144204636,52.97743016037967],[-128.146043156949,52.97759597046744],[-128.1462164525781,52.977738548044584],[-128.14647580660474,52.97782966706664],[-128.14669726382826,52.97794670377588],[-128.146911787996,52.97807395571983],[-128.14704581929337,52.97821500553923],[-128.1470392966521,52.97840009488305],[-128.14699702225155,52.97857910951235],[-128.14709785404852,52.978746548005645],[-128.14726403893746,52.97889597987447],[-128.14742110019657,52.97904950590632],[-128.14768190524583,52.9791321926856],[-128.14792420062798,52.979236515970904],[-128.14817812846596,52.979331093419034],[-128.14840153434392,52.97944921255271],[-128.14864326172747,52.97956083596156],[-128.14891245568936,52.97964336710914],[-128.14917060987844,52.9797104045661],[-128.14941291220777,52.979814724754675],[-128.14964804033352,52.97992478051929],[-128.14988497768272,52.98003368178393],[-128.15013713519153,52.98012997346955],[-128.15041173623402,52.980189981938956],[-128.15070502025034,52.98015828001968],[-128.1509714848789,52.980076064420594],[-128.15125018519683,52.98001436840777],[-128.1515472027599,52.98001959031711],[-128.15183760818562,52.98006024930533],[-128.15211697876106,52.98012240880117],[-128.15239892774946,52.98018003640668],[-128.15269332355425,52.98020716800522],[-128.1529869501288,52.980237676035195],[-128.153254037067,52.98031519579404],[-128.1534892346425,52.98042636386029],[-128.15375023017924,52.98051239713571],[-128.15404284938307,52.9805412349594],[-128.15433966955166,52.98056103593802],[-128.15463619244588,52.980574671431704],[-128.15492979433554,52.98060461013618],[-128.15519872317608,52.980681526888866],[-128.1554419574576,52.980785261912615],[-128.15567354758164,52.98089873380524],[-128.15592123948173,52.98099845820683],[-128.1561671528414,52.981099891719374],[-128.15638710179934,52.98122310857146],[-128.1566410909351,52.98129973053931],[-128.1569409494517,52.98132395360809],[-128.15723860427443,52.981322988470474],[-128.15753559018123,52.98130913842865],[-128.15783227833018,52.981289131871804],[-128.15812897994184,52.98126968931859],[-128.15842592323204,52.981254716764624],[-128.15895125603794,52.98123500281157],[-128.15926980519578,52.98124149693822],[-128.1595664482194,52.98125736001138],[-128.15986008697624,52.98128785089887],[-128.16015139190253,52.98132735214905],[-128.16044698219457,52.98134099024709],[-128.16074504955054,52.98132991935066],[-128.1610441421986,52.981320514933856],[-128.16134223750208,52.981309998043955],[-128.1616171727605,52.98124778149608],[-128.1618825411304,52.98116276302112],[-128.1621661293407,52.98110542657869],[-128.16246177336893,52.9810652487619],[-128.16273970956672,52.98100690257117],[-128.1629673808715,52.980896224612906],[-128.1631694135977,52.98075854694605],[-128.16334139964266,52.98067243236332],[-128.1636655042873,52.98056782961634],[-128.16394092882646,52.980497195169825],[-128.16421828859214,52.98042763658484],[-128.16448579644705,52.9803481779198],[-128.16475034221835,52.98026540095789],[-128.16502893798463,52.980201987901935],[-128.16531366907105,52.98014911578825],[-128.1655973887701,52.98009457551585],[-128.16587693531957,52.980031698966],[-128.16615251008514,52.979963854554846],[-128.166428097823,52.97989657424686],[-128.1667066315825,52.97983203721923],[-128.16699112926685,52.979774672113926],[-128.16735186493756,52.979729921423626],[-128.16752588604396,52.979811919335106],[-128.16779383576122,52.97988770468141],[-128.1680827205111,52.97993452210829],[-128.16837723888057,52.97996385451615],[-128.1686734405012,52.97993486100047],[-128.1688731466648,52.97980674922471],[-128.16905514072815,52.979661026468186],[-128.16921576921646,52.97959024164251],[-128.1693205238773,52.97963147758701],[-128.16958897171102,52.97962541357456],[-128.16988656051447,52.97964178917341],[-128.17018692557264,52.97965755685061],[-128.17048471521576,52.97967785538478],[-128.17077731164872,52.97970609615919],[-128.17106047526073,52.97975076965037],[-128.1713004424946,52.97986293616225],[-128.17155586179408,52.97994903339719],[-128.17184662455597,52.97997786139375],[-128.1721485711887,52.97998798975097],[-128.17244843830716,52.97999423650903],[-128.17274680772476,52.9799892907115],[-128.1730424252168,52.97996702320431],[-128.1733356051425,52.97993358946482],[-128.1736290709595,52.97990575493746],[-128.17392451557404,52.979880125251505],[-128.17422388153454,52.979876287322696],[-128.17450098905474,52.9799300237818],[-128.17472273511487,52.98005093210979],[-128.1749127467324,52.98018979755356],[-128.1751524111651,52.980295791781536],[-128.17540279167386,52.980392628287795],[-128.17563531537863,52.98050492364027],[-128.17587858312194,52.980608607810474],[-128.17612457072394,52.980710564175844],[-128.1763516761094,52.980826321370294],[-128.17659230149718,52.980932860019415],[-128.17683190249002,52.9810377400341],[-128.17708055569935,52.98113683811995],[-128.17734433550993,52.9812216475769],[-128.1776285991282,52.98126908336431],[-128.17792416557523,52.98124568364421],[-128.1782205922265,52.9812026534472],[-128.17847869374975,52.98124944980654],[-128.17871952755468,52.98135989955367],[-128.17889676380867,52.98150404423682],[-128.17913820946274,52.98160832057206],[-128.1794185124829,52.981669277925],[-128.17969446274336,52.98173647641924],[-128.17999046422028,52.98175790538956],[-128.18026346805289,52.98182235895604],[-128.18048711999577,52.98194322152079],[-128.18073571464097,52.98204119213388],[-128.18099391319774,52.982126096912566],[-128.18147999761192,52.98206889343472],[-128.18176672893756,52.98201874258781],[-128.182060002621,52.98198697164174],[-128.18235752235364,52.98196520177578],[-128.18263568007623,52.98202058608827],[-128.18292027151804,52.982074173474494],[-128.18321446978214,52.9820967488727],[-128.18351105523737,52.982111431965855],[-128.18380400731323,52.98209142915454],[-128.18409437115116,52.98213032415446],[-128.1843694649096,52.982198657770574],[-128.18464198480572,52.98227151370675],[-128.1849133935622,52.98234103545288],[-128.1850987943276,52.98247997058967],[-128.18531922681615,52.982592471609465],[-128.18557859313916,52.98268182908628],[-128.18586398832335,52.982732587479184],[-128.18615432985243,52.98277092187909],[-128.18644721699505,52.98280415913014],[-128.18673844175035,52.98284135466974],[-128.18695380483203,52.98296403624862],[-128.1871174142094,52.98311458327736],[-128.18735434999863,52.98322116903338],[-128.18758842472562,52.98332668639588],[-128.18778304709105,52.98346320416806],[-128.18798442305356,52.98358614363119],[-128.18827445306712,52.98363625422252],[-128.1885584544462,52.98369600052339],[-128.18879172519232,52.98380377260268],[-128.18885477247997,52.983976920201876],[-128.18887995954782,52.984158062366596],[-128.18879615701252,52.9843972815449],[-128.18868431854946,52.98456359712328],[-128.18860552436854,52.98473713719417],[-128.18849086540922,52.98490293990243],[-128.1883515880254,52.98506191732975],[-128.18816657255417,52.985202677109875],[-128.18796329971184,52.98533313009013],[-128.18778115831142,52.98547552188817],[-128.18757694308982,52.98560599163107],[-128.18737162871759,52.98573311824644],[-128.18717786232097,52.98586732142536],[-128.18698037939242,52.98600158425966],[-128.18682110056739,52.98615308347832],[-128.18664172759148,52.98629485692648],[-128.1864325620586,52.98641981110893],[-128.18620113484857,52.98652948324146],[-128.18593085624266,52.98659167058879],[-128.18583486005582,52.98675768905691],[-128.18563659489442,52.98685889754487],[-128.1854477175745,52.98699748212921],[-128.18521456393987,52.98710999129793],[-128.18498240611896,52.987223593588325],[-128.18488663510996,52.987394091133126],[-128.18466592956526,52.98767620219161],[-128.1845455372792,52.98783986453702],[-128.18437485134797,52.987987643313886],[-128.18410983482303,52.98806149515627],[-128.18381958489806,52.98809826348911],[-128.18354788819732,52.98816943969841],[-128.18333787946975,52.988296645621865],[-128.18323905027776,52.98846214902927],[-128.18314892202534,52.98863366135994],[-128.18310013944955,52.988810568927775],[-128.18309161947911,52.98899009373073],[-128.1830502963573,52.98916686304403],[-128.18302782435092,52.989347202286815],[-128.18287226390555,52.98949862649451],[-128.18274241926886,52.989660219593084],[-128.1825916554061,52.98981435264507],[-128.18268756299594,52.98993701212369],[-128.18279315056594,52.990084711211026],[-128.1826626663741,52.9902519211844],[-128.18244527570857,52.99036301120841],[-128.18218040863175,52.99045815530448],[-128.18196757941243,52.990585410553095],[-128.18174879504372,52.99070549334288],[-128.18160500422655,52.99086846414497],[-128.18143999216383,52.991017810038215],[-128.18129495805718,52.99117464216102],[-128.1811432435538,52.99132879061991],[-128.18102571850636,52.99149407258421],[-128.18094501553716,52.99166765029176],[-128.18080359226389,52.991822163805665],[-128.180587818385,52.991946672628735],[-128.18032744927848,52.99203893087391],[-128.1801970126076,52.99218932115457],[-128.18006152512163,52.992350450082085],[-128.17996945317486,52.99252087410827],[-128.17999910549304,52.99269857092851],[-128.18011490736825,52.99286346378925],[-128.18022424687476,52.99302959712117],[-128.18031883799506,52.99319936630574],[-128.18044206077502,52.99336300052309],[-128.18057725705447,52.99352360600499],[-128.18072892549597,52.9936777453269],[-128.18089793388359,52.993824281332195],[-128.18094627189586,52.994002188140385],[-128.18092749038985,52.9941819019256],[-128.1808297647043,52.9943513100066],[-128.18069039874132,52.994509713017685],[-128.1806246678472,52.994684125121296],[-128.18061804541102,52.99486417879867],[-128.1806141844181,52.995043616362615],[-128.18062527424493,52.995223333336526],[-128.1806549886666,52.99540214968066],[-128.1806893591488,52.995580879859254],[-128.18078860004562,52.9957500064865],[-128.18090724725508,52.99591540186998],[-128.18100277272953,52.99608515309515],[-128.18107335432018,52.99625984996498],[-128.18110957900902,52.99643798962976],[-128.18108330672692,52.99661727678255],[-128.18115469976848,52.996789716480805],[-128.18125297621646,52.996958295526326],[-128.18130409628728,52.99713559443176],[-128.18133938253592,52.99731375133155],[-128.1813858609725,52.99749169211154],[-128.1814453405563,52.997668280182374],[-128.18148152410052,52.997845855393685],[-128.1814440025241,52.998024229644145],[-128.18141680588224,52.998203542785404],[-128.18141481338935,52.99838294549706],[-128.1814128493999,52.99856290369569],[-128.18140808022173,52.99874292275629],[-128.1814061451677,52.998923445382204],[-128.1814228072229,52.99910250279417],[-128.18150077094603,52.99927537656757],[-128.18160008120532,52.99944562211216],[-128.18171693391494,52.99961217081435],[-128.18185577130626,52.999770474196715],[-128.18201946991695,52.999922147041275],[-128.18210190480846,53.000000214612655],[-128.18230844513937,53.00013147139159],[-128.1824425725773,53.000288740266534],[-128.18253360127457,53.00046137146483],[-128.18262182541608,53.00063406348516],[-128.1827164715777,53.00080438548393],[-128.18285066019106,53.00096277380187],[-128.1830344851629,53.001106225345005],[-128.18318251601568,53.001261549881335],[-128.18332603516322,53.001419755904095],[-128.18346764633586,53.00157744106377],[-128.1836120643863,53.001735074065024],[-128.18375657008886,53.00189439130769],[-128.183952871459,53.00202583499619],[-128.1841864328918,53.00213753938312],[-128.18442909274276,53.002244581617994],[-128.18461097052077,53.00234995167637],[-128.18432967923857,53.002435878680785],[-128.18403643932342,53.00247102375173],[-128.18373940031108,53.00248661586568],[-128.18345167905974,53.00253846378847],[-128.1831615838427,53.0025438365113],[-128.18286664007357,53.00250950606282],[-128.18256651156003,53.00250161069775],[-128.1822824488646,53.00255171093632],[-128.18203649184636,53.002653228749224],[-128.1818245413976,53.00278046541315],[-128.18163977270592,53.002927942238436],[-128.18142606025995,53.00303895125853],[-128.1811208488606,53.003041235506394],[-128.18084633618102,53.00296840684318],[-128.1805619523389,53.002921534934174],[-128.18026329956558,53.002905759136226],[-128.17996761858453,53.00291179225351],[-128.17967559890232,53.002952499972785],[-128.17938537237706,53.00299206174326],[-128.17909413355716,53.003029955467944],[-128.17879847368513,53.003054477788616],[-128.17850065313803,53.003054932619996],[-128.17820307628912,53.0030604313231],[-128.1779057796097,53.00305303671868],[-128.17760825294832,53.003041152520616],[-128.17730920566592,53.003036030816176],[-128.17700920417388,53.00303036097621],[-128.1767102713462,53.00302746873585],[-128.17641461747237,53.00303404844976],[-128.17613218013773,53.003079619527576],[-128.17586875513686,53.003168559196055],[-128.17561005797458,53.003258532029626],[-128.17536895347348,53.00336387406035],[-128.17512205033253,53.0034654034375],[-128.17487795151172,53.00356687156615],[-128.1747005033157,53.003711959829936],[-128.17450084546678,53.00384287510514],[-128.17424423626034,53.00393729038171],[-128.1740503887613,53.00407202575704],[-128.17386430331007,53.00421278779399],[-128.17363102410238,53.004325263938995],[-128.17340159012005,53.00443991972821],[-128.17317122904979,53.00455458316207],[-128.17294280368245,53.004670896463246],[-128.17272205557697,53.00479099588339],[-128.1725340107096,53.0049301057077],[-128.1724409270503,53.005099975167866],[-128.17239122634092,53.00527856937696],[-128.17231229880994,53.00545154090772],[-128.17220128076687,53.00561782143308],[-128.17207802686778,53.00578207623108],[-128.1719509687449,53.00594528889205],[-128.1718096658846,53.006103714687086],[-128.17169296070378,53.006268413342795],[-128.1715895441754,53.00643735118762],[-128.17148709558398,53.00660682711081],[-128.17137607129357,53.006773106745804],[-128.17123000544288,53.00692993337714],[-128.1710677719051,53.00708089635988],[-128.17089887142012,53.00722918376493],[-128.17072613708507,53.00737585545874],[-128.17055548238986,53.007526407682384],[-128.17037511060337,53.0076698563232],[-128.17016765788043,53.0077947457071],[-128.16990137146678,53.00788316766993],[-128.1696150622385,53.007927107525255],[-128.16931752224355,53.00793370348739],[-128.16899811699102,53.00793285377952],[-128.16870810358688,53.007977424549004],[-128.1684181045012,53.008021994329596],[-128.16812664993964,53.00805650093803],[-128.16783225405857,53.00805182507987],[-128.16754050184946,53.00800730804402],[-128.16725821953997,53.00794691292931],[-128.16696523125015,53.00791474846719],[-128.16666853048244,53.00791963629749],[-128.166380609058,53.00796864694744],[-128.166089438756,53.008008748388654],[-128.165797056924,53.008043266243135],[-128.16550683980697,53.00808391371041],[-128.16522803317838,53.008146762377066],[-128.16495251740997,53.008219083109644],[-128.16467996327822,53.008294711868125],[-128.16442007131064,53.008380761717135],[-128.16421162844807,53.00850509336842],[-128.1640246508636,53.00864753197709],[-128.16382317176408,53.00878014720414],[-128.16362077974046,53.008913343800955],[-128.1634259924771,53.00904919854512],[-128.16324647354605,53.00919149892412],[-128.16308903146137,53.00934572520013],[-128.16295815372862,53.009507867084146],[-128.16287533400356,53.0096786603774],[-128.1628462276914,53.00985912246757],[-128.16281237793405,53.010037985523596],[-128.16278225982308,53.010216780096485],[-128.16275027548508,53.01039560886963],[-128.16270517198362,53.01057355722515],[-128.16268251699918,53.010752214811475],[-128.16268887755177,53.010932017221116],[-128.1626989556965,53.011111760393],[-128.162710886127,53.01129090457867],[-128.16272469603544,53.011470570298144],[-128.16273944699532,53.011650227706525],[-128.16275419762374,53.011829876134236],[-128.16276894883313,53.01200953350085],[-128.162783699711,53.012189181886825],[-128.16279565954378,53.012368890415914],[-128.16280573802487,53.012548624466454],[-128.16281396590009,53.01272840141087],[-128.1628100280923,53.01290783648732],[-128.16279584756887,53.01308801543892],[-128.16278071305305,53.013267655840444],[-128.16277211725028,53.01344717628952],[-128.16276723867696,53.013626628538965],[-128.16276332933154,53.01380662798429],[-128.16276128562808,53.01398658422371],[-128.16275921362038,53.01416598493846],[-128.1627590364855,53.01434591587253],[-128.16276261994634,53.01452633383933],[-128.16278124680375,53.01470871791131],[-128.16280742382543,53.01489264052629],[-128.16283078098132,53.0150760588154],[-128.1628418865902,53.01525745976014],[-128.1628312671627,53.0154342190598],[-128.16278862322307,53.01560539562],[-128.16268179976456,53.015763732005716],[-128.16250519954943,53.01590878362169],[-128.1622994073947,53.01604932115997],[-128.16210877177002,53.01619406447589],[-128.16196077308462,53.01635091297037],[-128.1618365936102,53.01651685770074],[-128.16174536504903,53.01668780331232],[-128.1617150667145,53.01686323700277],[-128.16174391882436,53.01704487746245],[-128.16174671482048,53.017228107585275],[-128.16183060137675,53.01740817415292],[-128.16199146091603,53.01754086795143],[-128.1622187816959,53.017657769813816],[-128.16245420946782,53.017768917525096],[-128.16269322872114,53.01787720086647],[-128.16293317442484,53.01798545777915],[-128.16316951820787,53.01809603128556],[-128.16339768508638,53.0182112294262],[-128.16361310300198,53.01833283110301],[-128.16382255318115,53.01846575204288],[-128.16401669069265,53.01860960773097],[-128.1641207939605,53.01881956917051],[-128.16421377872678,53.01893948840516],[-128.16429495660532,53.019102787784654],[-128.16431132614005,53.019277365607095],[-128.16428898742356,53.019462186882144],[-128.16429631057082,53.01964253575693],[-128.1643018244722,53.01982403882961],[-128.16430917604748,53.02000494316856],[-128.16432489071897,53.02018513799005],[-128.1643554375758,53.02036281856933],[-128.16440822429445,53.02053729292969],[-128.16448450762897,53.02073262631808],[-128.16466405236673,53.020864973671074],[-128.16483594894228,53.02101203432187],[-128.16505648723142,53.02114195159614],[-128.1652492431623,53.021276853617564],[-128.16532579959457,53.021440802053675],[-128.1653147195939,53.021626528688564],[-128.16530812734715,53.021808818837584],[-128.16530700642042,53.0219882015006],[-128.16530310661088,53.022168191184576],[-128.16530013300738,53.022348172812684],[-128.1653018326491,53.02252805965773],[-128.165311910751,53.02270723664304],[-128.16532946886988,53.022886841275415],[-128.16535450772503,53.02306629958176],[-128.16538604387412,53.02324508256028],[-128.16543616028497,53.023421847357625],[-128.16552711232268,53.023593369359304],[-128.1655948974564,53.02376868865623],[-128.16565058626543,53.02394478603203],[-128.16569889469253,53.02412269592078],[-128.16573973765318,53.0243007518263],[-128.16577127634028,53.02447953457238],[-128.16579353942853,53.024659608627395],[-128.16573875776388,53.02483100824728],[-128.16556419658738,53.02497994478427],[-128.16540942588964,53.025132436757495],[-128.16538496500206,53.02531224756296],[-128.16521400472107,53.025458875353245],[-128.16506503104182,53.025615188382716],[-128.164968053457,53.02578344293613],[-128.16494264953147,53.02596327084916],[-128.16494245281675,53.026142636077836],[-128.16499073245322,53.02631999052614],[-128.1650631651066,53.0264946595956],[-128.16513651038252,53.02666874687303],[-128.16520056542365,53.02684413460871],[-128.1652265319513,53.02702357553007],[-128.16525804217167,53.027201802627204],[-128.16527937861886,53.02738189348799],[-128.16532847273518,53.02755699075126],[-128.16546101398222,53.02771934600538],[-128.16554727267385,53.0278903978692],[-128.16558444179284,53.02806963297714],[-128.16557019745488,53.028248134921796],[-128.16551385789595,53.02842573260854],[-128.16546025297808,53.02860215006326],[-128.165460087226,53.02878207947536],[-128.16549343772868,53.02895970759696],[-128.16553985607368,53.02913709579769],[-128.16560022616702,53.02931310682964],[-128.16568191456193,53.02948591943633],[-128.16578302680304,53.02965502130855],[-128.16591000420087,53.029818034181616],[-128.16607183770793,53.029968640793285],[-128.16621442089354,53.03012632673912],[-128.16635151889744,53.030286355265545],[-128.16649410418816,53.03044404084415],[-128.16663120427157,53.03060406901583],[-128.1667572185121,53.03076654266848],[-128.16687036590199,53.03093318054519],[-128.166965016415,53.03110351214248],[-128.16704858115222,53.03127629828861],[-128.16709127473436,53.031453754227144],[-128.16710791755327,53.03163336572515],[-128.16712829479246,53.031812917570335],[-128.167165416847,53.03199103181187],[-128.16719790817825,53.03216979608613],[-128.16724526315113,53.032347166271634],[-128.16729452921322,53.03252506630523],[-128.16734564724516,53.03270292331558],[-128.1675847058414,53.03281007584125],[-128.16782826848507,53.03291377314409],[-128.16809500163578,53.032995753970084],[-128.16835982612542,53.03307663931441],[-128.1685791248069,53.03319928218829],[-128.16879124292532,53.033327661710615],[-128.16904777683578,53.033410948951264],[-128.1693381243182,53.03346109569937],[-128.16962238892995,53.03352033064035],[-128.16990132568256,53.03358470295457],[-128.17015002645326,53.033679333037846],[-128.17037202686453,53.033799680975385],[-128.17058961147703,53.033925158773584],[-128.17081791239573,53.03404090595007],[-128.17105345349998,53.03415203543151],[-128.17128989300653,53.03426258293586],[-128.171519978965,53.03437661891941],[-128.1717117128198,53.03454460384746],[-128.1718898063562,53.03464670012386],[-128.17210601961366,53.034781724555124],[-128.17227434994143,53.03493051736622],[-128.17243450196582,53.03508395353935],[-128.17261004516797,53.03522757302132],[-128.17284291906938,53.03534099019451],[-128.17308568273035,53.03544693372751],[-128.1732161095784,53.0356037144263],[-128.17332288256634,53.035772705781454],[-128.17352218765393,53.03590579716706],[-128.17373339322188,53.0360341849389],[-128.17393367028802,53.036167813767435],[-128.1741284475479,53.036303794601196],[-128.17418461816595,53.03648828180673],[-128.1743311255147,53.03663019187943],[-128.17443010633127,53.03679315583737],[-128.17445657157037,53.036963061241764],[-128.17448499862246,53.03711668034589],[-128.17460543188793,53.03727868377929],[-128.17476122767025,53.037437802230826],[-128.1749159583459,53.03764906247617],[-128.17539616309298,53.03764693558945],[-128.17579792574176,53.03762775222704],[-128.17609761881235,53.03764072626212],[-128.1763967300232,53.03766042735305],[-128.17669435511428,53.03766951001406],[-128.1769928779557,53.03767801934197],[-128.17733714678872,53.03766718259444],[-128.17759441253156,53.03769101590801],[-128.17788663795181,53.03770412324398],[-128.1781843496408,53.03771487758961],[-128.1784790173331,53.03773914846762],[-128.17876906064186,53.037782552198834],[-128.179057410313,53.03782935850229],[-128.17934984561515,53.03786486958355],[-128.1796437614211,53.037892514499624],[-128.1799394143512,53.0379178756078],[-128.18023180887516,53.0379522732385],[-128.1805119526936,53.038003146717905],[-128.18079568194545,53.03806908242263],[-128.18105979430334,53.03815332521908],[-128.18132479075643,53.03823642111666],[-128.18156461166865,53.03833904806836],[-128.18175683124886,53.038478983117564],[-128.18200288036442,53.0385753240009],[-128.18227756764855,53.03864702850229],[-128.18255497798512,53.038717004976036],[-128.18282344142014,53.03879499340535],[-128.18308970797318,53.03886629582325],[-128.18331589016407,53.0389579615664],[-128.1836314551387,53.03904292368392],[-128.18392823240325,53.03907161719972],[-128.18421918242416,53.03907800659889],[-128.18451821900703,53.03904163817368],[-128.18481300833085,53.03903169587658],[-128.18510125784064,53.03907624749217],[-128.18538731980212,53.03913260506794],[-128.185671558033,53.03919011675744],[-128.18595489949846,53.0392482004106],[-128.18622677582883,53.03931939195238],[-128.18649636396998,53.039400714391384],[-128.1867599010184,53.03949168146246],[-128.18699628205547,53.039599401498734],[-128.18719637190136,53.039728528048045],[-128.1873766311991,53.03987148301127],[-128.18754056185264,53.040024264557],[-128.1876916686796,53.04018176769745],[-128.1878343950796,53.04033998206341],[-128.18795506207263,53.04050534035115],[-128.18804249393193,53.040678596915875],[-128.18809269614272,53.04085478582848],[-128.1881215328285,53.04103361294085],[-128.18813920948858,53.04121320300881],[-128.18814666679324,53.04139411254796],[-128.18815125750862,53.041573945248224],[-128.1881306472235,53.04175425422685],[-128.18809221767634,53.04193320761268],[-128.18813958398786,53.042108884005884],[-128.18823262196526,53.04228203638461],[-128.1883634007558,53.04244384364803],[-128.18852808369664,53.04259268187021],[-128.18871202169439,53.042734445625136],[-128.1888987981079,53.04287671247338],[-128.18906900035043,53.04302377055467],[-128.18923894164132,53.04318372038072],[-128.18933983370258,53.04334608107384],[-128.18952276454695,53.04348617630014],[-128.1897368647928,53.04361448274905],[-128.189961013447,53.04373811829743],[-128.19017689678915,53.0438647048858],[-128.1903643203363,53.04400135244019],[-128.19050867709214,53.0441544933173],[-128.19062005680442,53.044320577328456],[-128.19071037384882,53.044494899330616],[-128.19079148416682,53.04467219919528],[-128.19087534555422,53.04484831794416],[-128.19097293253583,53.045018585707886],[-128.19109520297178,53.04517829701894],[-128.1912615714305,53.045323181217576],[-128.19147933466434,53.04544973958964],[-128.191728904902,53.04555888271162],[-128.19198969761004,53.04564988966743],[-128.19226139365287,53.04571658729928],[-128.1925092603421,53.04581063130871],[-128.1927420856171,53.04592120447197],[-128.19300360587582,53.04602620388183],[-128.19322711168547,53.046119022102296],[-128.1934450154407,53.04621193507026],[-128.1936542055949,53.046298848548105],[-128.19385311771532,53.046368016565225],[-128.194024045897,53.04652850641781],[-128.1941151633971,53.046700013013485],[-128.19419236909206,53.04687345523127],[-128.19426866288939,53.04704747036964],[-128.19435607608108,53.04721960166422],[-128.1944491218907,53.047392193141015],[-128.19454955168078,53.04756296123094],[-128.19467107538762,53.047726045905726],[-128.19483022734187,53.04787554351732],[-128.19503436233734,53.04800907510412],[-128.19526198022837,53.04812703141029],[-128.1955048442077,53.04823237254667],[-128.19575945073083,53.04832964764801],[-128.19601679442422,53.04842575027291],[-128.19626590139305,53.048525368670234],[-128.1964977382811,53.04863427607259],[-128.19668229331032,53.048768725353646],[-128.1968031921879,53.048937424619886],[-128.19694692374182,53.049095618598486],[-128.19716816819272,53.04921648804868],[-128.19738036603528,53.049343139559866],[-128.19757438124998,53.04947965338325],[-128.19776474914423,53.049617911853176],[-128.1979569571824,53.0497555797365],[-128.19815462471252,53.04989034759174],[-128.1983586776544,53.05002218917741],[-128.19856817581214,53.0501505659545],[-128.19878759192724,53.050272031533126],[-128.1990322285577,53.050375090626325],[-128.1992894759753,53.05046894614429],[-128.1995059994583,53.05058877833693],[-128.1997302401637,53.05069502314755],[-128.19989489828458,53.05087804191706],[-128.19999320018937,53.051043240200514],[-128.2000011063443,53.051051495924376],[-128.20014149603654,53.05119909438133],[-128.2002861448231,53.05135670237361],[-128.200494559772,53.05151817036251],[-128.20065067862996,53.05168060413598],[-128.2007987011641,53.05181293035785],[-128.20096337715384,53.05196007500732],[-128.20111195021724,53.052085099530935],[-128.20130245436357,53.05220765582812],[-128.20148409242893,53.05237522660351],[-128.20168218965196,53.052517818876915],[-128.2018801316067,53.05267555185721],[-128.202020570528,53.05278783988964],[-128.2021515678843,53.0529703626082],[-128.2023924633024,53.053072919833],[-128.20263377852027,53.05316538861846],[-128.20289924865202,53.05327309128484],[-128.20309519280784,53.05339218920404],[-128.2032425349904,53.05360130994405]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":38,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"6","REGION_NUMBER":6,"REGION_NAME":"Skeena","REGION_NUMBER_NAME":"6- Skeena","FEATURE_AREA_SQM":330795098910.932,"FEATURE_LENGTH_M":5298203.738,"OBJECTID":2,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-128.2032425349904,53.05360130994405],[-128.20294537780728,53.053621429669285],[-128.20264903052092,53.05363929150601],[-128.202350869675,53.05364037127795],[-128.2020529850639,53.05364648520514],[-128.20175450811115,53.05365934445723],[-128.2014640131082,53.0537000703549],[-128.20119407055049,53.053776293518496],[-128.2009251691945,53.05385472967907],[-128.2006521538217,53.053925959832966],[-128.20038325098076,53.05400440371203],[-128.20011927041435,53.05408779526158],[-128.2000007749107,53.05412811826855],[-128.19986025626577,53.054176698678525],[-128.199601269828,53.054266157006374],[-128.19934032758027,53.05435397415573],[-128.1990823096302,53.05444397823747],[-128.19883315288496,53.054542784720255],[-128.19858497948263,53.05464269334127],[-128.19839048470783,53.05476794982015],[-128.1982425148553,53.05492540472543],[-128.19801174408332,53.05503619802224],[-128.19773167776304,53.05509801939751],[-128.19743920054844,53.05513653896485],[-128.1971454041907,53.055167791323655],[-128.1968712874032,53.05523622590686],[-128.1966033686843,53.05531576352313],[-128.19633747539328,53.055398616872075],[-128.19606958339938,53.05547870875377],[-128.19579362414805,53.05554774001935],[-128.1954994472914,53.055571713224545],[-128.195198159923,53.05558459890543],[-128.194920171314,53.055632366724254],[-128.19468071437285,53.05573827471401],[-128.19438941688858,53.05578180468286],[-128.19413095941925,53.05586395865023],[-128.19384823252955,53.05592862702937],[-128.19351705491104,53.055942063899785],[-128.19328684778114,53.055955874694554],[-128.1929707273393,53.05602564544054],[-128.19268023639225,53.05608485018871],[-128.1923638533564,53.056149575144936],[-128.19204120378754,53.056147164354925],[-128.19177787995102,53.05613523910281],[-128.1914624126864,53.056127079384446],[-128.191170733529,53.05616332634093],[-128.19085673728682,53.05622015587434],[-128.19058944336552,53.05623968973908],[-128.19030426247207,53.05629318498636],[-128.1900103950498,53.05632329964041],[-128.18971549928662,53.056351755611765],[-128.18942927444195,53.0564030260695],[-128.18914406186602,53.05645595406465],[-128.18885983333467,53.05650999307838],[-128.1885818293084,53.05657568201753],[-128.18830072616484,53.05663582272979],[-128.18803767560865,53.05671972517131],[-128.18779144755788,53.056821816214224],[-128.18756173894909,53.05693593158389],[-128.18736973288725,53.057074009847305],[-128.18722552840816,53.05719662903334],[-128.18697204867274,53.05733920863635],[-128.18673658691975,53.05745063084624],[-128.1864834745877,53.0575461205131],[-128.18619914857683,53.057598468711795],[-128.18592314535456,53.05766691210111],[-128.18564614252074,53.05773426130308],[-128.18536910973435,53.057801045407196],[-128.18509303123363,53.0578683671936],[-128.18481547384746,53.057943006664935],[-128.18474665049854,53.05811355130171],[-128.18468466062305,53.05828957439568],[-128.1846151402897,53.058464615794925],[-128.18455409086684,53.0586406213605],[-128.18443634916187,53.05880534499042],[-128.18433566495221,53.058974236830885],[-128.18422271450842,53.059141113521584],[-128.18413430824202,53.05931258492664],[-128.18405532808313,53.05948555885137],[-128.1838619540087,53.05961580911107],[-128.1835692161593,53.059650370258545],[-128.1832698025594,53.05968224716038],[-128.18295911799237,53.05973115564012],[-128.18276154221505,53.05985251372034],[-128.18266967990886,53.060029643739895],[-128.18255198465036,53.06019548529001],[-128.18241433465647,53.060354969620604],[-128.18226431762287,53.06051019838815],[-128.18213141511154,53.06067128053808],[-128.18201746726714,53.06083705215303],[-128.18188645954677,53.06099865495212],[-128.1817687444578,53.061163930907455],[-128.18164436756385,53.06132709680201],[-128.1815133569099,53.061488699141556],[-128.18136333257294,53.061643926663],[-128.18121233653528,53.061798606931916],[-128.1810019854638,53.06192636764651],[-128.18076936358088,53.06203940144464],[-128.1805032395122,53.06211885874392],[-128.1802231875154,53.06218232271106],[-128.17994533461209,53.06225191533909],[-128.17965888787668,53.062209001613475],[-128.17937624184154,53.062149202135444],[-128.1790800826272,53.062135612155345],[-128.17878236511746,53.062146147067885],[-128.17848492052224,53.06216229012469],[-128.17819336084966,53.06220185573315],[-128.17791019397046,53.062259210632824],[-128.1776450473076,53.062339764318146],[-128.17740271451027,53.06244568840907],[-128.17715932349233,53.062549380536765],[-128.17692493463724,53.062664681039536],[-128.176648108003,53.06271798794182],[-128.1763449388882,53.062731989075026],[-128.17606454689326,53.062788723286666],[-128.17581186672146,53.06289370473094],[-128.17565001758567,53.06303793241041],[-128.1755455517946,53.06320688520207],[-128.175448802067,53.0633807446307],[-128.17531301183033,53.06354074144996],[-128.17518577921774,53.063703387370886],[-128.17507936925648,53.063871254450845],[-128.1749795914146,53.06404068519242],[-128.17489021044057,53.06421215730346],[-128.17481590426914,53.064386158584],[-128.17471706581068,53.06455557170763],[-128.17465312763215,53.06473105884901],[-128.17460330943993,53.06490853680101],[-128.1745553736876,53.06508597106683],[-128.17449143450045,53.065261467026566],[-128.17447446250335,53.065441137877535],[-128.17447243750306,53.06562053341921],[-128.1744573336824,53.06580016981938],[-128.17443755123924,53.065979892363266],[-128.17441775464235,53.0661590501645],[-128.17437710075876,53.06636942372517],[-128.174294924326,53.06620727277206],[-128.17409758084722,53.066060694378784],[-128.17385083347534,53.066008067350744],[-128.17362021247646,53.066033056101766],[-128.17338834641882,53.06614325344731],[-128.17320095728465,53.06622741390949],[-128.17298722854215,53.06632663167122],[-128.17280714627034,53.06648015822387],[-128.17263796760824,53.06666431546015],[-128.17235148051287,53.066712184418726],[-128.17205670119813,53.06674451139847],[-128.17175903584553,53.0667567129548],[-128.1714604665226,53.06675155060394],[-128.1711624285816,53.066756475575716],[-128.17086408859174,53.06675579144743],[-128.17056567782805,53.06675343087118],[-128.17026331494174,53.066747223219124],[-128.16997493737455,53.06677662034686],[-128.16970287206976,53.0668505654037],[-128.16943397309666,53.06693173355744],[-128.16916217679946,53.067011268343414],[-128.16887496788706,53.067045134172815],[-128.16857648299688,53.06704164891207],[-128.1682758868039,53.06703315275395],[-128.16797785995854,53.06703862545047],[-128.16768007690817,53.06704857685652],[-128.16738115196122,53.06705462950864],[-128.16708301041896,53.067057860078634],[-128.1667852270238,53.0670678092285],[-128.16648762851125,53.067081673193165],[-128.16619038836032,53.06710226470134],[-128.16589528690173,53.06712841217486],[-128.1655537152591,53.067269760531346],[-128.16530544625724,53.067370718393654],[-128.16504759115494,53.06746680257711],[-128.16480799288783,53.06757264925305],[-128.16462038531034,53.067707799845095],[-128.16448374177077,53.067870605394276],[-128.16434133517674,53.068030153443644],[-128.16414067329734,53.0681661074403],[-128.163889058582,53.06827497031324],[-128.16361508792218,53.06831194342595],[-128.16331823366716,53.06828543023159],[-128.16301836952886,53.06823656076965],[-128.1627314710261,53.06818520213755],[-128.16245047795633,53.068121412835886],[-128.16216466559425,53.06807283989566],[-128.1618655461584,53.06805701838024],[-128.16156821109752,53.068075913860284],[-128.16128466847354,53.068127064570156],[-128.1610066160724,53.06819436383966],[-128.160728635243,53.06826279107454],[-128.1604487125473,53.06833012321901],[-128.16016633675014,53.06838573375211],[-128.15986911312066,53.06837043744685],[-128.15960678030098,53.06828723446911],[-128.15934340815576,53.068201816938725],[-128.15906180658584,53.0681441917007],[-128.15884497910278,53.06801812270311],[-128.1586335736673,53.06788802628152],[-128.15837959050603,53.067803555990594],[-128.1580847273406,53.06776074364118],[-128.1577847131085,53.067745484216736],[-128.15748747739192,53.06776660957686],[-128.15718881521698,53.067796172072825],[-128.15689742963087,53.067785236666076],[-128.15661569202555,53.06772481021487],[-128.1563311594954,53.067664425179736],[-128.15602508614606,53.06764031310319],[-128.15578939570838,53.06754764750146],[-128.1556026786412,53.06740645024788],[-128.15542211161699,53.06725729358869],[-128.15523623868626,53.067114403383776],[-128.15504851303223,53.06697153774607],[-128.15482853545691,53.066856728900625],[-128.1545580492792,53.0667781566731],[-128.15426570792567,53.06672968405353],[-128.15396991107673,53.066705370311574],[-128.15366690851835,53.06670473678256],[-128.15337566768272,53.06673302442554],[-128.15310478472546,53.066812514050596],[-128.15285258133076,53.06691015408368],[-128.15261502295115,53.06701985730235],[-128.15240165055462,53.06714536879812],[-128.15221912412937,53.067289383193675],[-128.15203363029295,53.06743007945963],[-128.15181158297682,53.06755070799221],[-128.15156558936363,53.06766000666889],[-128.15130321103914,53.06774156995951],[-128.15101625638022,53.06776249165226],[-128.15070957065146,53.06774453788536],[-128.15040916731687,53.06775842120677],[-128.15011141692418,53.06776944852672],[-128.1498302280899,53.06771964085922],[-128.14955693498726,53.06764109942569],[-128.14926615932973,53.067604916677276],[-128.1489678481132,53.067586249974916],[-128.14866837755775,53.0675816113278],[-128.14836844725468,53.067586504092205],[-128.14806611905797,53.06759929551058],[-128.14777202999528,53.067627064954884],[-128.14749427747978,53.06768199592619],[-128.14724813002616,53.067788481264145],[-128.14709251645516,53.06796562710827],[-128.14695833166934,53.068122761533594],[-128.1468054320026,53.068279671076105],[-128.14661563245767,53.06839130028379],[-128.14642620648547,53.06849170366668],[-128.14631051141907,53.06862608164847],[-128.1461466729886,53.06880729446319],[-128.1460135371173,53.06896665050816],[-128.14585012012967,53.069119274844816],[-128.14570189168967,53.06927609783747],[-128.14554790005542,53.069430227383855],[-128.1453652702926,53.06957254633147],[-128.1451694308997,53.06971286300341],[-128.14495709157708,53.06984114835456],[-128.14472026826513,53.06994745857117],[-128.1443806629321,53.0700371433585],[-128.1441165299979,53.070047544716395],[-128.14407772265432,53.069927184465136],[-128.14414289920813,53.069736556767204],[-128.1442476476878,53.069533435708564],[-128.14434451120286,53.0693590469812],[-128.14444629290122,53.06918961767978],[-128.1445556042225,53.069021163507735],[-128.144673429422,53.06885480547334],[-128.1446939544051,53.06866890722144],[-128.14473401449715,53.068499477663764],[-128.14481688025043,53.068325898627336],[-128.1449139937383,53.06815655354128],[-128.14498261017604,53.067978749287676],[-128.14511586803948,53.06784013460323],[-128.14524870000653,53.067693115694446],[-128.14529481513566,53.067532534601916],[-128.14530563438677,53.06735803109443],[-128.14544650379437,53.067185083445025],[-128.14556580003838,53.06702934222874],[-128.145641837329,53.06686878212707],[-128.14562806632028,53.06668911152366],[-128.1456180477388,53.06650938167881],[-128.1456126924328,53.06632955810443],[-128.14561013281028,53.06614969267494],[-128.14562066672192,53.06596958031348],[-128.14559107907002,53.06579132699589],[-128.14551214066003,53.06561732442999],[-128.1453769321513,53.065458360974475],[-128.14521127185512,53.06530724149225],[-128.1450815288411,53.06514537148039],[-128.14498965680826,53.06497441046849],[-128.144896858799,53.064803466204246],[-128.14481428843771,53.06463121508747],[-128.14475392623166,53.06445464154364],[-128.14470292080887,53.06427788901933],[-128.14468728671977,53.06409826093817],[-128.1446558074157,53.06391947668092],[-128.14466076835907,53.063740030445544],[-128.1446834708827,53.063560261899575],[-128.144701494946,53.06338057831697],[-128.14469524577314,53.06320133566511],[-128.14465258537027,53.06302331044877],[-128.1445949794229,53.06284556566753],[-128.14451687896567,53.06266930514022],[-128.14429262860227,53.0625612807841],[-128.14402908147602,53.062471349303394],[-128.14376549336654,53.062380288050385],[-128.1435335470134,53.06226791814162],[-128.1433368939435,53.06213248751914],[-128.14314109909228,53.06199536402132],[-128.14307000131282,53.061938919921005],[-128.14294267986207,53.06186164180938],[-128.14274329222937,53.061727380848964],[-128.14254939746004,53.061590777923826],[-128.142355503939,53.06145417466956],[-128.14215614857946,53.061320477141166],[-128.1419558809374,53.06118735184518],[-128.14177020750898,53.06104667062079],[-128.14160096702037,53.060898409145835],[-128.14143082957577,53.06075072867948],[-128.14126160639856,53.06060246642178],[-128.14109788902698,53.0604524181239],[-128.14094793757795,53.0602970800439],[-128.1408044202988,53.060139383146264],[-128.1406673506768,53.059979892180415],[-128.14052934007807,53.05982040915381],[-128.1403913459139,53.05966093463987],[-128.14025514904316,53.0595002974393],[-128.1402088596698,53.059324022386186],[-128.14014667098337,53.0591474795461],[-128.1400852867771,53.05898717175804],[-128.14000487332092,53.05878292583697],[-128.13994790826848,53.058598997336816],[-128.1400357064275,53.05843038013534],[-128.14007059071218,53.05830644024346],[-128.14003400947442,53.05808178701632],[-128.14002942291827,53.057898029890865],[-128.1400152648171,53.057691470714694],[-128.13992031977116,53.05755138379637],[-128.13965791116573,53.057575762089414],[-128.13933469310788,53.057636548169924],[-128.13903779262074,53.05762566993301],[-128.13874100048054,53.05759853930793],[-128.1384460203401,53.057570254140735],[-128.1382131728555,53.05745789052681],[-128.1379821531715,53.057344372387185],[-128.1377746429026,53.05721529935205],[-128.13757439488197,53.057081601582446],[-128.13737326349957,53.05694904942524],[-128.13716304682706,53.056821701340056],[-128.1369437168914,53.05669900178163],[-128.13671003599745,53.05658832737405],[-128.13646281826226,53.056487430312764],[-128.1362120218044,53.056389404439486],[-128.13594440294153,53.05631017407958],[-128.13566455458042,53.05624797903793],[-128.13537696989704,53.05619937501278],[-128.135090327348,53.05615075325663],[-128.13479700231477,53.05611794533477],[-128.13450286388624,53.056087393352094],[-128.13420631073419,53.056064731133354],[-128.1339129585909,53.05603135655527],[-128.13362300545802,53.055991202931956],[-128.13334403281934,53.055927865674],[-128.13307376823104,53.05585147470728],[-128.13280170634755,53.05577680155761],[-128.13253588149576,53.05569585423489],[-128.13226295131608,53.055622316534375],[-128.1319805713876,53.05556519855037],[-128.1316888678167,53.05552731382304],[-128.13139077621486,53.055529889854924],[-128.1310921522578,53.05554033053484],[-128.13079590186905,53.055560807412],[-128.13050087428206,53.05558687530915],[-128.13020459539467,53.055606795202316],[-128.12992654787624,53.05567346628246],[-128.12963470652136,53.055707312345305],[-128.12933870740727,53.055732829862485],[-128.12904231456307,53.05575050691809],[-128.12875314086,53.0557069644688],[-128.1284961863453,53.05561631546693],[-128.12827243496625,53.05549816390277],[-128.12805678905167,53.05537369596234],[-128.12785750729665,53.0552399738288],[-128.12769477159867,53.05508933401455],[-128.12749803555653,53.05489446788059],[-128.12729818501094,53.054655939599755],[-128.12713375402896,53.054508692511],[-128.12691912740925,53.054385890147394],[-128.12668085132518,53.054275844218274],[-128.12644344684276,53.05416466114798],[-128.12621753202683,53.05404037497],[-128.12598726506246,53.053922336600856],[-128.12573545336411,53.05384055695265],[-128.12543904504042,53.05383916893122],[-128.12513364865606,53.05384466782883],[-128.12484357833682,53.05380168820842],[-128.12455676801,53.05374912542256],[-128.12426447807854,53.05371795007915],[-128.12396738508036,53.05370256303043],[-128.12366779102453,53.05369338110082],[-128.12336853336146,53.05369091819451],[-128.1230705384318,53.05369515764932],[-128.12277415720723,53.05371281899124],[-128.12247839196078,53.053742799196286],[-128.12218251427117,53.0537705387312],[-128.12188682133325,53.05378313659872],[-128.12158932181848,53.053759904083364],[-128.12129281959827,53.05373776490395],[-128.12099437371285,53.053751539950575],[-128.12069283527603,53.05377825648295],[-128.12040153149002,53.05382272390962],[-128.12013972856104,53.05389636194436],[-128.11993112857857,53.05402453636254],[-128.1197267389845,53.05416216749756],[-128.11948718654082,53.05426959849178],[-128.11922919549065,53.05436334341789],[-128.11895801972926,53.05443659099302],[-128.11866202868273,53.05449963862061],[-128.1183543535709,53.05455336245711],[-128.11806365187982,53.05457258686361],[-128.11782184321888,53.05452256317551],[-128.11764208265967,53.05436716675259],[-128.1175154879833,53.054190647821066],[-128.1174376835732,53.054017728416824],[-128.11739596189085,53.05383744482982],[-128.11737109443004,53.0536574148738],[-128.11735747554434,53.053478304082546],[-128.11735221389193,53.05329792238564],[-128.11735539296998,53.053117945254826],[-128.11739749899343,53.05295016542567],[-128.11742840201612,53.05276409501782],[-128.11745051108625,53.05258882707129],[-128.1174833369096,53.052403834108695],[-128.11756150919135,53.052228125260974],[-128.117606179756,53.052074306876655],[-128.1176286552779,53.051887822526794],[-128.11759624583817,53.051706806763484],[-128.11754473504652,53.051536222415734],[-128.11755549663917,53.0513583599486],[-128.11754564103776,53.051179737423034],[-128.11755815855688,53.05099960147122],[-128.1175697064382,53.05081891792484],[-128.11755700081872,53.05063922550835],[-128.11752185433818,53.05045937969492],[-128.11751480864956,53.05028071563356],[-128.11757994310244,53.05010635240671],[-128.11766472400743,53.04993220157465],[-128.1177006917047,53.04975388663852],[-128.11773004545157,53.04957400440357],[-128.117757460394,53.04939303595549],[-128.11777928689727,53.04921216775777],[-128.1177927010589,53.04903145048778],[-128.11779309709814,53.048852087771145],[-128.11777679568567,53.048675266607475],[-128.11773332145927,53.0484972470763],[-128.11764308702058,53.04831838958696],[-128.1175086572173,53.04815322067148],[-128.11733171463374,53.048016273683466],[-128.11709846789978,53.04791227973434],[-128.11682967662188,53.047826302458574],[-128.1165562379839,53.04774097290391],[-128.11630997697895,53.047638331817254],[-128.11610329797364,53.04750472321285],[-128.11585035060503,53.04741789470558],[-128.11555289119218,53.04737559050169],[-128.11529928354443,53.04729437753955],[-128.11512170998787,53.04714455197297],[-128.11486160346215,53.0470640195456],[-128.11457545703402,53.047004686646886],[-128.11430883638994,53.04692483471834],[-128.11408680158667,53.04680157759517],[-128.1138408313644,53.04670454012594],[-128.11356105060946,53.046641727887675],[-128.11326817658178,53.04659764998222],[-128.11297515747498,53.046569267563164],[-128.11267809050128,53.0465532875771],[-128.1123785774396,53.04654464143028],[-128.11208007421274,53.04653765342578],[-128.11178169748246,53.04653290434732],[-128.1114825743473,53.04653208678556],[-128.11118339595637,53.04653015745132],[-128.11088586192972,53.046523705095524],[-128.11058219628558,53.0465067169132],[-128.11030629630272,53.04644663456887],[-128.1101693297966,53.046285986978],[-128.11014453814946,53.04610707495517],[-128.1101580114496,53.045926913735755],[-128.11017705972318,53.04574609680547],[-128.11018210859535,53.04556553017851],[-128.11019243909766,53.04537870823025],[-128.11017691679945,53.04519794443598],[-128.11008210593081,53.04503934084009],[-128.10985918008444,53.04491665692837],[-128.10962878541542,53.04479410613001],[-128.10950216130496,53.04463439383192],[-128.10940943933156,53.04446117974056],[-128.1092863420793,53.044297476284456],[-128.1091530933138,53.04413619608507],[-128.1090097487802,53.04397845908557],[-128.10885167307904,53.04382546906153],[-128.10866529972898,53.0436858711843],[-128.10846064277223,53.04355445547796],[-128.10825598663737,53.043423030446874],[-128.10806958942183,53.04328287608733],[-128.1079014230263,53.04313342801494],[-128.10772782231723,53.04298743969175],[-128.10752232857152,53.042857714337224],[-128.10728317067668,53.04274652536098],[-128.10701859669865,53.042669418887975],[-128.10672429350245,53.04263319757534],[-128.10643337724127,53.04259018924976],[-128.10614513147198,53.04254433460848],[-128.10585683031357,53.04249735032272],[-128.10556855779527,53.04245092980131],[-128.10536850884884,53.04231774075293],[-128.10516841866604,53.04218399611162],[-128.10496837223252,53.042050806364294],[-128.10476738588198,53.041917633055405],[-128.10456551515517,53.04178559616044],[-128.10436090758944,53.041654728711286],[-128.10415537506043,53.04152387741392],[-128.10394527890276,53.04139534908372],[-128.1037262077195,53.041274262230495],[-128.10349085893418,53.04116411886478],[-128.10324386547376,53.0410642713421],[-128.1029914249662,53.04096732730731],[-128.10274075458696,53.040868665263766],[-128.10249915971173,53.040764236140475],[-128.10226109142303,53.04065581582606],[-128.10202841991898,53.04054282399174],[-128.10180479369285,53.04042405677434],[-128.1015874905023,53.04030070161539],[-128.1013702160755,53.04017790155913],[-128.10113103394727,53.0400655799618],[-128.1009147861021,53.03994443778676],[-128.1007797988492,53.03978486543118],[-128.1006759746351,53.03961296345029],[-128.10061580362859,53.03943580035096],[-128.10059954943125,53.03925841138081],[-128.1006075150753,53.039079479208254],[-128.10062846822296,53.038898629856995],[-128.10065131595042,53.03871830275144],[-128.1006657407937,53.03853756957565],[-128.10066618159172,53.03835765031516],[-128.10065536305547,53.0381768015549],[-128.1006222490711,53.03799860062615],[-128.10055385178183,53.03782494674536],[-128.1004575575766,53.03765403139184],[-128.10035201098054,53.03748495763653],[-128.10025293800868,53.03731465654641],[-128.1001584579608,53.03714258767486],[-128.10004652486433,53.03697643423313],[-128.09989416448173,53.036824451874004],[-128.0996977554855,53.036688381869794],[-128.09949581459995,53.03655409592989],[-128.09932505043605,53.0364074892057],[-128.0991835928118,53.036249142134935],[-128.0990402844695,53.036090836792496],[-128.09888598043563,53.03593720181132],[-128.09872614684858,53.03578479493622],[-128.09855902449613,53.035636436415764],[-128.09838088156695,53.035491636590876],[-128.09818908856454,53.03535436109545],[-128.09797266466458,53.03522929798563],[-128.09776997611874,53.03509838541038],[-128.09761023248257,53.03494765245165],[-128.0974678325889,53.03478876414039],[-128.09731532329002,53.03463341829252],[-128.09714635825026,53.03448509059752],[-128.0969398588861,53.0343525674131],[-128.09671962643014,53.0342258838389],[-128.09647209503294,53.03413275813564],[-128.09619130252656,53.034085061786094],[-128.09589116195676,53.03406181388066],[-128.09559003992334,53.034037452710976],[-128.0953010056152,53.03399326357955],[-128.09501689737704,53.033934978612784],[-128.09475309266693,53.03385278310649],[-128.09451650834558,53.033735362621044],[-128.09424818227905,53.03367510971278],[-128.09395029896956,53.03365965469788],[-128.09364599755594,53.03366562025166],[-128.09334985436328,53.033685447916405],[-128.09305932470318,53.03372423174653],[-128.09277018964121,53.03377251387965],[-128.09248094395736,53.03381856428005],[-128.09219178021857,53.033866289477494],[-128.0917238805567,53.033870658295214],[-128.0913759933789,53.033598825182104],[-128.09134032169177,53.033424586180644],[-128.0913379387547,53.033243596204635],[-128.09134198711223,53.03306024129448],[-128.09132657736282,53.03288003820674],[-128.09125257012863,53.03270535771463],[-128.0912176050597,53.03252662219845],[-128.09118351114768,53.032346750245736],[-128.0911578264336,53.0321667292105],[-128.09114623471666,53.03198814428751],[-128.09117018314268,53.03181060634058],[-128.09126536675322,53.03163741046834],[-128.09140048531884,53.03147863515609],[-128.0915620865957,53.03132612493185],[-128.09170569476032,53.03116888462833],[-128.0918274383591,53.031004185014886],[-128.09194161786732,53.03083737743271],[-128.09204541057346,53.03066851196207],[-128.0921360788745,53.03049875815498],[-128.09212995845905,53.03031782514385],[-128.09209966637346,53.03013900673423],[-128.09203589378794,53.02996358897067],[-128.09194706403161,53.02979141346492],[-128.0918666155864,53.02961852429323],[-128.09174086395478,53.02945541513025],[-128.09163542761047,53.02928745276587],[-128.09150783835904,53.02912493194183],[-128.0913977847847,53.028958181168235],[-128.09128493884293,53.02879147082713],[-128.09116657625648,53.02862654411679],[-128.09104915546865,53.02846160059334],[-128.09092430854517,53.028297909558276],[-128.09079950531475,53.02813478258868],[-128.09068114644342,53.02796985532794],[-128.09059882487202,53.027796998458456],[-128.0905220919171,53.02762348648017],[-128.0904397721055,53.02745063842453],[-128.0903205179664,53.02728628266328],[-128.09021877146165,53.027117141621716],[-128.0901105393366,53.026949227415635],[-128.09001807310173,53.026778800783994],[-128.0899422424797,53.02660470744079],[-128.08986922049093,53.02643057324867],[-128.08977765446934,53.02625956549355],[-128.08965837889772,53.026094653429475],[-128.08951790514712,53.02593572163357],[-128.0893444379219,53.02578970481218],[-128.08914631499343,53.025655334178616],[-128.08893549929775,53.02552846985895],[-128.08871918048013,53.02540395354095],[-128.08855675301885,53.02525437718761],[-128.08832829351854,53.02514856673913],[-128.08809216053243,53.025038963810445],[-128.08789406000074,53.024904590750566],[-128.08771236031097,53.02476208026191],[-128.08754527967218,53.02461258492599],[-128.0874384184441,53.024453055850785],[-128.08742286369514,53.02432666103055],[-128.08745323196797,53.02418432480564],[-128.08758777334353,53.024032854032754],[-128.0878059320801,53.02391016932867],[-128.0879826002674,53.023760750307574],[-128.0881202935751,53.023597457280225],[-128.08813701873123,53.02342453099623],[-128.0880375865118,53.02324524929059],[-128.08785524294498,53.02310835527584],[-128.08761064797673,53.022997224286094],[-128.087336859694,53.02291911773342],[-128.0870535371167,53.02287537349483],[-128.08675715844163,53.02285090718717],[-128.08645562104695,53.0228355081647],[-128.08615592271988,53.02281951087592],[-128.08585886691182,53.02280010317327],[-128.08556190645507,53.02278293499036],[-128.08526429540743,53.02277138243824],[-128.0849671244459,53.022768789152686],[-128.08466871902272,53.02277910365637],[-128.08437194161678,53.02280340529036],[-128.08408248668746,53.02284383538962],[-128.08379939996007,53.02289983692226],[-128.08351946231375,53.022963072943895],[-128.08323848811403,53.0230240846457],[-128.08295336810468,53.02307676606275],[-128.0826672112562,53.02312721417103],[-128.08238005847878,53.023176567150024],[-128.08209287735679,53.023225354947044],[-128.08180667631817,53.023275245705825],[-128.0815205444405,53.02332625550871],[-128.0812335259979,53.02337840121987],[-128.08094172308643,53.023428388686334],[-128.0806627456955,53.02349215683401],[-128.08041987140595,53.02358723968666],[-128.0802151434272,53.023717520337954],[-128.0800240840797,53.02385989024213],[-128.07982135756973,53.02399294176066],[-128.0796109161706,53.02412108006858],[-128.07939365853952,53.024243733281395],[-128.07915219652435,53.024348877193894],[-128.07889541622583,53.02444644377833],[-128.0786068330275,53.024447601827376],[-128.07831219680784,53.02443990703243],[-128.0780303614921,53.02450259811801],[-128.0777378346592,53.02453801757239],[-128.07744054785007,53.024552221706315],[-128.07714245172312,53.0245501897669],[-128.0768462590181,53.02452962308265],[-128.0765499570583,53.02450681564483],[-128.0762713732627,53.024445017664156],[-128.0759774814331,53.02441431959542],[-128.07568190254807,53.02438701339672],[-128.0753858211682,53.024368683055215],[-128.0750875893785,53.024363841429754],[-128.07478950961956,53.02436180328264],[-128.07449116851348,53.024354720137886],[-128.07419270545003,53.02434483148088],[-128.07389908931955,53.024319728264075],[-128.07361270526474,53.024270400853375],[-128.0733156450457,53.024250961585885],[-128.07303788413705,53.02418689967322],[-128.07276525952807,53.0241132231167],[-128.07249617805013,53.024035564784924],[-128.0722200131474,53.02396586810427],[-128.07193706592167,53.023910306507055],[-128.07164156038831,53.023884674931885],[-128.0713430075319,53.02389216018521],[-128.07106574298354,53.02395307730259],[-128.07078071044444,53.024007960328674],[-128.07056657538953,53.02411821140272],[-128.07026495275062,53.02410108651976],[-128.06999211511317,53.02402292351904],[-128.06971855605224,53.02394925642604],[-128.06942815853694,53.02387476317684],[-128.06910964556542,53.02389436759885],[-128.06885437940463,53.023908368987925],[-128.06853627324415,53.023917311057616],[-128.0682543286815,53.023920578318574],[-128.06792618140489,53.02393417867182],[-128.06756161434296,53.02394785155299],[-128.06724176575932,53.02401679678808],[-128.0669943739787,53.02409679305676],[-128.0667300594123,53.0241552309769],[-128.06646466799594,53.024229945628214],[-128.06622705712635,53.024299680191504],[-128.06595992068588,53.02435760977282],[-128.06571669410076,53.02446555441985],[-128.06547538786717,53.02457459484119],[-128.06523294871673,53.02467972671936],[-128.0649953459392,53.02478813629275],[-128.0647674836249,53.0249047775955],[-128.06454735954372,53.02502689676993],[-128.06430479410844,53.02512922194649],[-128.0640299225093,53.02520128991747],[-128.063774587988,53.025290950806266],[-128.06355835576198,53.02541636281737],[-128.06333920543327,53.02553957455339],[-128.0630965801774,53.02564078616498],[-128.06281867802173,53.02570842035649],[-128.0625526975278,53.02579041792018],[-128.0622826956259,53.025866880362194],[-128.06200516022597,53.02592273158815],[-128.0618759847746,53.026090335938804],[-128.0618938027679,53.02626489444313],[-128.06198813056295,53.02643755054122],[-128.06208992662073,53.02661008497102],[-128.06193203524776,53.02680228745362],[-128.06169518988082,53.02690731376948],[-128.06144680145346,53.02700581554575],[-128.0611898282875,53.027100538935656],[-128.06092989860247,53.02719195948249],[-128.0606708119783,53.02728167878078],[-128.06040277270523,53.02736034426338],[-128.0601298281441,53.02743404598264],[-128.05987162488887,53.027522627070915],[-128.05962814782598,53.0276260878835],[-128.05938765224548,53.02773341498859],[-128.05914033008597,53.0278346909826],[-128.058893034119,53.02793653093755],[-128.05870631472044,53.028073748804694],[-128.0585465289947,53.02822730174165],[-128.0583857079987,53.02837863954426],[-128.05820580992196,53.02852189827933],[-128.05804592705894,53.028673210216084],[-128.0579184979045,53.028839093158396],[-128.0577814226307,53.028998418451444],[-128.05758299026965,53.029125750014686],[-128.05731457727956,53.02921618017949],[-128.05712089837178,53.02934510495932],[-128.05701244614758,53.029516825581865],[-128.05695188985834,53.02969387171481],[-128.0569253715703,53.02987929194822],[-128.05688643929923,53.03005932381962],[-128.05678586235462,53.030220253232514],[-128.05660082985057,53.030354066043685],[-128.0563683213901,53.03047245673752],[-128.0561330460211,53.03059146012955],[-128.0559283724913,53.03072505812656],[-128.05574027926744,53.030872939230214],[-128.05562089062175,53.03103138840021],[-128.05565830804832,53.03120617037339],[-128.05571006054592,53.03138741929108],[-128.05568477522067,53.03157898720008],[-128.05558803256946,53.03174209040363],[-128.05532357318017,53.03179881801331],[-128.05501267912038,53.031822734219915],[-128.05471693710282,53.03185086055144],[-128.0544204090577,53.031862750471575],[-128.05412210016667,53.03185730034829],[-128.05382361643808,53.03184792469361],[-128.05352544294382,53.03184526860846],[-128.05322899563546,53.031858831070906],[-128.05293205579707,53.031881377951194],[-128.05263488367547,53.031899435339405],[-128.05233792157358,53.03190235993731],[-128.05204020155492,53.03188960362831],[-128.0517431520548,53.031871230145356],[-128.0514415901887,53.03185629724287],[-128.05114857916786,53.03182496557454],[-128.05088157134878,53.031751696928794],[-128.05062923676527,53.031653520651766],[-128.05037864983518,53.03155250661029],[-128.05011584557386,53.03146963960287],[-128.0498252403684,53.03142985127073],[-128.04953613610277,53.031382745482446],[-128.04925311509422,53.03132600971656],[-128.0489718537174,53.03126700081726],[-128.0486896943398,53.0312085718135],[-128.04840662158557,53.031150713998144],[-128.04812536254587,53.031091703075184],[-128.04784578196424,53.03102873454274],[-128.04756704742155,53.03096407373203],[-128.04729095962065,53.03089600348871],[-128.04702014958974,53.030821115324116],[-128.04676173452444,53.03073200409384],[-128.04651032925943,53.03063323813818],[-128.04625194318095,53.030544681309124],[-128.04597937821995,53.030472063153795],[-128.04570242412282,53.030405125249395],[-128.04542106586368,53.03034386782451],[-128.04513895608758,53.03028654161344],[-128.044852538038,53.03023658008223],[-128.0445611131351,53.030199035099464],[-128.0442678757394,53.030162641764065],[-128.04390522239737,53.030333705286374],[-128.04369458732842,53.03046065902419],[-128.04349845802153,53.03059801459273],[-128.04330716359138,53.03073863994151],[-128.04311197269917,53.03087597854762],[-128.04290698738015,53.031003953854515],[-128.04267676015237,53.03111218875396],[-128.04239975736763,53.03118031386835],[-128.0421079778625,53.031232444826806],[-128.04182277848838,53.03128558211194],[-128.0415364491567,53.0313348194118],[-128.04124911214515,53.03138238753321],[-128.04096079462005,53.031428850957454],[-128.04067246152812,53.03147531393438],[-128.04038801108678,53.031524506928704],[-128.0401229578479,53.03160812213569],[-128.03985888298203,53.03169283178827],[-128.03959967058975,53.031781384562],[-128.03935609261896,53.03188423879323],[-128.0391406957028,53.0320095892976],[-128.03894935380512,53.03214965193716],[-128.03872337088785,53.03232730410815],[-128.03853521873626,53.032378191150336],[-128.03824004168806,53.032457273703436],[-128.03800137378425,53.03256508888527],[-128.03776076849354,53.03267180710705],[-128.0375221248284,53.03278017683477],[-128.03728925451583,53.03289237414804],[-128.03707087666666,53.033014400279086],[-128.03687080664577,53.0331478843033],[-128.0366774509432,53.033285179837094],[-128.03649172307476,53.03342569722059],[-128.03630028569316,53.03356407990287],[-128.03609838234286,53.033698715075495],[-128.0358408824784,53.03378442274242],[-128.0355455451833,53.033801849069455],[-128.03524898481837,53.033794078993964],[-128.03495343073675,53.03382663583294],[-128.0346758881259,53.03388410701801],[-128.03443239351364,53.033989190995555],[-128.03419084552542,53.034095926779244],[-128.03395213108732,53.03420316917921],[-128.0337098132337,53.03433289204401],[-128.03348444849044,53.03442645200794],[-128.03324865753484,53.03453644038639],[-128.03301094501066,53.03464534940228],[-128.0327751516132,53.03475533682068],[-128.03254225792762,53.034867524636866],[-128.0323132726842,53.03498299849871],[-128.03208526634805,53.035099584936184],[-128.03185525736436,53.03521339855437],[-128.03160817460582,53.03532190098899],[-128.0313267140212,53.03533683569686],[-128.03103302382002,53.03529144943355],[-128.0307396021288,53.03525166253278],[-128.03044566848422,53.035220851249406],[-128.03015169664266,53.03518891895705],[-128.02986106976473,53.03514908180547],[-128.02957384443653,53.03510189483446],[-128.02928644462403,53.035051356321],[-128.02899919404436,53.03500361241888],[-128.02868803077948,53.034964125585084],[-128.02843594334752,53.035007127849205],[-128.02823356368074,53.03515184555446],[-128.02795031544775,53.03510963500677],[-128.02768826001946,53.03502222197183],[-128.02742612565103,53.034933132799715],[-128.02716147811796,53.03485024692515],[-128.0268968730785,53.03476791572692],[-128.02663222760808,53.03468502865753],[-128.02636757159158,53.03460158520351],[-128.02610381577634,53.034517560757195],[-128.02583917341414,53.03443467189727],[-128.025573659426,53.03435291836159],[-128.02530635926433,53.03427287182947],[-128.02503903361176,53.03419226915712],[-128.024769868773,53.03411226241005],[-128.02449726425127,53.034038474767364],[-128.0242196198414,53.033976538354295],[-128.02393240914066,53.03392934658128],[-128.02363751011274,53.03389741418163],[-128.02333854992656,53.03387843701092],[-128.0230411719196,53.03387289218662],[-128.0227419609084,53.03388754596377],[-128.022442209047,53.033910619770275],[-128.0221449035184,53.03392636926658],[-128.02185214682595,53.033919612329804],[-128.02156765213326,53.033870682416214],[-128.02129208661376,53.033793575404275],[-128.0210173833539,53.03371477606906],[-128.02077148814416,53.033613054962515],[-128.02070537176448,53.0334410070105],[-128.020601094242,53.033271845508516],[-128.02039313258825,53.03314258041859],[-128.02017426263856,53.033019662435315],[-128.0200434147425,53.03286160881843],[-128.0199519826403,53.03268774305881],[-128.0198912321878,53.03251055406083],[-128.01989204156735,53.032331190119024],[-128.01990399989842,53.03215051433477],[-128.01985357984964,53.03197426934423],[-128.01979472470853,53.03179761275011],[-128.01978427909424,53.03161732049563],[-128.01965046914876,53.031455954308925],[-128.01953805810052,53.03129253576243],[-128.01954444350997,53.031112520280125],[-128.01954798214987,53.03093142360481],[-128.01953291615456,53.03075233129333],[-128.0196115603198,53.03057892530891],[-128.01966296513228,53.03040261380171],[-128.01966464816797,53.030222113759685],[-128.0196355872875,53.030043260978125],[-128.01958233655103,53.02986650819196],[-128.01955511634296,53.02968705889805],[-128.01953259799475,53.029508094043884],[-128.01951097940383,53.029328557780524],[-128.01948284576886,53.029149689015505],[-128.0194565942074,53.028970788010085],[-128.01943776865778,53.02879119490543],[-128.01946290266454,53.028612535134165],[-128.0194983117548,53.02843369943131],[-128.01953091277463,53.02825491176781],[-128.0195725814651,53.02807036412747],[-128.0195873596183,53.027890204605335],[-128.019438642324,53.027729093261634],[-128.0191795730204,53.027683641712436],[-128.01893648395526,53.02777747770002],[-128.01868636998873,53.02790057783143],[-128.01842532299224,53.02799023626229],[-128.01815230201333,53.028063849798784],[-128.01788420550182,53.02814297417884],[-128.0176298565011,53.02823587902646],[-128.01738043218398,53.02833430377975],[-128.01713201270934,53.028434396690926],[-128.01688258607265,53.0285328203804],[-128.01662836532338,53.02862851864168],[-128.01636428894537,53.028713740355784],[-128.01607448960044,53.02874895883186],[-128.01577296725375,53.02875355558106],[-128.0154784556657,53.02872887841108],[-128.01520149294026,53.02866074908316],[-128.01495284848488,53.02855907222294],[-128.01466166727965,53.02856516644098],[-128.01436156539964,53.02859999170421],[-128.0140755029376,53.02865476234413],[-128.01381420231132,53.02873936591537],[-128.01356495231158,53.0288417071621],[-128.01331946126226,53.02894453968698],[-128.01307878813893,53.02905065226926],[-128.01284004875944,53.02915785227556],[-128.0126003935803,53.02926562338039],[-128.01236668321954,53.02938058313239],[-128.01211400749776,53.02947008433713],[-128.0118139626234,53.02948641102036],[-128.01151787337977,53.029467920466224],[-128.01122224783623,53.02943933284317],[-128.01092613286735,53.0294202852681],[-128.01062841600637,53.02940685996837],[-128.01033165205686,53.029393982633216],[-128.01003396229177,53.029381120329546],[-128.00973629942663,53.02936882177098],[-128.00943855701098,53.02935483793281],[-128.00914172901005,53.02934027282146],[-128.0088439869903,53.02932628748282],[-128.00854648380516,53.02931734602056],[-128.00824732530003,53.029312906761895],[-128.00794856432861,53.02931687147325],[-128.00765325843565,53.02933479279179],[-128.00736195137122,53.029377861862024],[-128.00708973691852,53.029449184703225],[-128.00683644130177,53.02954541055795],[-128.00657628518493,53.02963502693423],[-128.0063020424694,53.02970302856294],[-128.00600475999462,53.02971872847578],[-128.00570083352284,53.02969251007768],[-128.0054457164982,53.02961165636039],[-128.0052405589371,53.02948119678061],[-128.00505067053513,53.0293375821155],[-128.0048582811648,53.0292001703084],[-128.00467410182307,53.029058699897625],[-128.00450549436755,53.02891080395969],[-128.00435975557176,53.02875242186096],[-128.00421133114602,53.028596336048686],[-128.00403331318094,53.02844691345336],[-128.00383146552957,53.02828724203552],[-128.00360165118934,53.02818801972077],[-128.00333929437457,53.02819135456946],[-128.00305845123626,53.02823816314859],[-128.00276941996376,53.02830976162251],[-128.00247991094307,53.02839089989162],[-128.00219944500532,53.02846572329595],[-128.00194345691477,53.02856422617774],[-128.00167645473138,53.02862760151749],[-128.00137532037024,53.028600768779896],[-128.00108651432407,53.02863761031202],[-128.00079951975334,53.02869292026377],[-128.00050665090643,53.02872254769134],[-128.00021018237703,53.02873542144624],[-128.00000045260055,53.028666116845876],[-127.99973097413067,53.028577647977436],[-127.99971769483902,53.02857338935867],[-127.99941947209852,53.02829092992949],[-127.99886536940974,53.02783177092533],[-127.99851543437869,53.0277009463312],[-127.99799956991245,53.027597591765904],[-127.99758655405113,53.02739664927593],[-127.99752386076504,53.02729515018253],[-127.99705752126329,53.02709231100201],[-127.99680186213756,53.026920087815846],[-127.996455554473,53.02664740255692],[-127.9959902868818,53.02638792963541],[-127.99561861880073,53.026171717681315],[-127.99525242501105,53.02571440280347],[-127.99474123539727,53.02541142957443],[-127.99446746482154,53.02501196766278],[-127.99445184672673,53.02469949183476],[-127.99432168745254,53.02421520818594],[-127.99369855204861,53.02365630895097],[-127.99343397713096,53.023412489750555],[-127.9941282960737,53.022921559195254],[-127.99477359478021,53.02250094209023],[-127.99556638545056,53.0218401967584],[-127.99576462268854,53.02138790390558],[-127.99531610158051,53.021026149132574],[-127.99514583952758,53.02092085475006],[-127.99494658695927,53.020814938522946],[-127.99461786482652,53.020716807287464],[-127.99421707381498,53.02063503083463],[-127.99336004333679,53.02038497821014],[-127.99258522041539,53.02027421233104],[-127.99158121313242,53.020135916574915],[-127.99034871786832,53.019865279619125],[-127.99007069411782,53.01969230776547],[-127.98902052198616,53.019285745640346],[-127.98898617626732,53.01873202799136],[-127.98897230638119,53.01863529669698],[-127.98886098716571,53.0185318062761],[-127.9883538659011,53.018073492941106],[-127.98812672982595,53.017730388790746],[-127.98809992769283,53.01723762983164],[-127.98801045539281,53.017161793672],[-127.98799676156982,53.016749520834956],[-127.9880719038505,53.016040388605155],[-127.98801059920397,53.01562835316435],[-127.98809233773332,53.01516011028503],[-127.98810311724793,53.01469193359338],[-127.98811506674984,53.014209173845224],[-127.98813514387204,53.013840047452234],[-127.98812725964372,53.013172658365995],[-127.98811747624332,53.01260450843603],[-127.98829628737833,53.01199563155997],[-127.98856943103884,53.011387396218275],[-127.98853870973016,53.0106912557903],[-127.98831486582517,53.01017827793626],[-127.98773307443844,53.009917940789435],[-127.98662175637007,53.00959590456378],[-127.98561452987936,53.00940269002085],[-127.98462729230575,53.00933748239049],[-127.98389464279805,53.00944509135655],[-127.98318814484752,53.00945305744352],[-127.98273852133715,53.00956262413371],[-127.98243158556141,53.00958851781554],[-127.98200950808926,53.00952835718411],[-127.98156260199933,53.00949607973399],[-127.98090345953362,53.00951836442259],[-127.98033995601553,53.009428622569786],[-127.97978183025383,53.009153842400856],[-127.97927178459805,53.00880874563109],[-127.9789947129601,53.00859369297619],[-127.97834252321398,53.0083036709044],[-127.9781129866892,53.00804634405264],[-127.9777941283274,53.00757529547711],[-127.97738615145155,53.007396062986366],[-127.97704890766113,53.00713157292464],[-127.97675398828207,53.00699415898843],[-127.97654710869084,53.0069023477645],[-127.97633918281318,53.00682848869269],[-127.97597709850791,53.006792517906284],[-127.97550825860353,53.00668940174782],[-127.9752690221495,53.006584679256385],[-127.97494411273662,53.0064645773629],[-127.97475186937224,53.00634618041457],[-127.97453228378254,53.00618171778094],[-127.97414922587078,53.00593535695657],[-127.97387345901055,53.00566703087326],[-127.97378838510372,53.005282853420525],[-127.97360644318115,53.004903660240636],[-127.97340568589372,53.004541595721406],[-127.97310859235121,53.0041553616257],[-127.97273858954634,53.00386786820493],[-127.97218171753795,53.00353697647831],[-127.9717923398302,53.00309343822051],[-127.97170221352205,53.002921756476866],[-127.97183222635005,53.00238377450923],[-127.97144599085007,53.001826402942854],[-127.97120300518398,53.001156783109856],[-127.9709577952534,53.00080162718149],[-127.97076347975127,53.00059750242299],[-127.97055839563126,53.00000010837264],[-127.97055385015916,52.99990209784459],[-127.9705660610549,52.99972254372226],[-127.97057172378743,52.99954254305313],[-127.97058866884578,52.999364586672606],[-127.9707411492538,52.999210155039506],[-127.97080018133944,52.99903373684426],[-127.97082445802579,52.99885285992141],[-127.97087888508337,52.99867764853106],[-127.97102745956254,52.998519909926614],[-127.97116858590834,52.99836230461506],[-127.97117998320252,52.99818556168256],[-127.97114636209308,52.99800397579354],[-127.97115701612597,52.99783117302482],[-127.97115743277398,52.99763892050473],[-127.97111138765793,52.997471549567216],[-127.97091833822626,52.99733466009346],[-127.97068681513474,52.99721355069113],[-127.9704465627714,52.997105473085355],[-127.9701858779324,52.99701959034394],[-127.96989946077801,52.99696272550051],[-127.96964169875362,52.99687959956842],[-127.96943486550954,52.99674742181671],[-127.969250944723,52.996605893423755],[-127.9690551663122,52.996470167524855],[-127.96882222863904,52.99635860169478],[-127.96854825363064,52.996288074566344],[-127.96828041241947,52.996209041832984],[-127.96802949762419,52.99611234686571],[-127.9677812597935,52.99601279985802],[-127.9675249064113,52.995919557451806],[-127.9672739693239,52.995822305303754],[-127.96704367508923,52.995707329119696],[-127.96683225124906,52.99557634448624],[-127.96667508990852,52.99542764005961],[-127.96658684027312,52.9952553669439],[-127.96654670414591,52.995073879523396],[-127.9665374966391,52.994895247856505],[-127.96655153666458,52.99471454241893],[-127.96658617382407,52.99453517023484],[-127.96663307318082,52.9943584002567],[-127.96668741887437,52.99418150599011],[-127.96674742709124,52.99400563812749],[-127.96681022544549,52.99382972364987],[-127.96687394851301,52.993653793680856],[-127.96694806696449,52.99344014316169],[-127.96695451346213,52.99325675736824],[-127.96702207746814,52.99310318194594],[-127.96694671449491,52.99290659811802],[-127.96694678026267,52.99272668156995],[-127.96697397890071,52.992547998094715],[-127.967036774164,52.992372083343746],[-127.96709394721701,52.99219570637818],[-127.96713049719841,52.992017422709665],[-127.9671979617651,52.991841429862184],[-127.96730977140321,52.991675906178536],[-127.96744514816187,52.99151559366547],[-127.96758905500636,52.991357945400644],[-127.96773390047017,52.99120027228924],[-127.96787683893865,52.991042074820484],[-127.96802641597458,52.990886008179395],[-127.96819032620029,52.99073699256934],[-127.96839329513864,52.99060525048985],[-127.96860773987326,52.990479486017605],[-127.96882987801757,52.99035864133329],[-127.96909872648169,52.99027904668861],[-127.96930837604062,52.9901707311095],[-127.96937100242477,52.98999145463723],[-127.96940844036591,52.98981259901133],[-127.96943278453332,52.98963284120974],[-127.96959214408751,52.98948669729671],[-127.96982186461781,52.98936852169794],[-127.97001253541025,52.98923362821438],[-127.97010438679735,52.989060588327455],[-127.97015303765104,52.98888210084767],[-127.97028284037152,52.98872244261837],[-127.97044563810086,52.988570070205206],[-127.97058387644563,52.988411391485016],[-127.97067866979768,52.988241664640874],[-127.97075925862444,52.98806769144369],[-127.97085402433267,52.987897399905],[-127.97097518693691,52.98773283647696],[-127.97112285007094,52.98757624123408],[-127.97128566658306,52.98742443207536],[-127.97146670125746,52.987282962399185],[-127.9717149470405,52.987182407907035],[-127.97192159250262,52.987050041505796],[-127.97205718613165,52.986894767832894],[-127.97207298697208,52.98671234507033],[-127.97207210637585,52.98653245229643],[-127.97210865680547,52.98635473100182],[-127.97215732234184,52.986176806925776],[-127.9721929208511,52.98599853652927],[-127.97222568826083,52.98581975748857],[-127.9722500295045,52.98564056344604],[-127.97226036411485,52.9854610388368],[-127.9722594823359,52.98528113696924],[-127.9722614059553,52.98510119709797],[-127.97227733539295,52.98492157878884],[-127.97231289164918,52.98474275291315],[-127.97238226596147,52.984568400758825],[-127.97246851396511,52.98439601696351],[-127.9725481889346,52.984222613186354],[-127.97261002381602,52.984046710077735],[-127.97265681965678,52.983868816769146],[-127.97267560382555,52.9836902713984],[-127.97265510521432,52.98351014171799],[-127.9726365128264,52.98333054506538],[-127.97264693218756,52.98309272933978],[-127.97254829101242,52.98299797892917],[-127.97228273304904,52.98290602231366],[-127.97201660006371,52.98282192138385],[-127.97175048305041,52.982737819599265],[-127.97149614362178,52.98264622952384],[-127.97126249119952,52.98253804356169],[-127.97105413239652,52.98241149887088],[-127.9708619726466,52.98227235244187],[-127.9706780058692,52.98212858489154],[-127.97049414418049,52.981987057203945],[-127.9703221794,52.98184029051942],[-127.97015476626122,52.98169119662163],[-127.96998738045836,52.98154266699397],[-127.96981447934031,52.981395915243056],[-127.96964160515766,52.98124971878635],[-127.96946870600911,52.98110295754177],[-127.96929673342511,52.98095618953269],[-127.96912664135591,52.98080938088598],[-127.96896104982058,52.980659142914774],[-127.96879732385159,52.98050886457808],[-127.96860049980396,52.98036923651464],[-127.96839167784945,52.98023260645407],[-127.9681655464083,52.98012484489893],[-127.96788359940747,52.98012170744113],[-127.96758090817968,52.98015423010047],[-127.96728406154647,52.98017207308497],[-127.96698833612697,52.98019382440599],[-127.9666881374414,52.98021957744808],[-127.96643151364685,52.98030008499432],[-127.96621049082488,52.9804237148926],[-127.9659855149623,52.98054292650852],[-127.96576145160232,52.980661557484204],[-127.96554412891642,52.98078456832296],[-127.96517444944169,52.98098297245423],[-127.96508820425002,52.980812905799084],[-127.96507429959163,52.98063323003897],[-127.9650818068271,52.9804526322121],[-127.96510900545111,52.98027394785741],[-127.96519717962752,52.98010209315346],[-127.96537443320003,52.97996013910506],[-127.96564040656246,52.979880033862436],[-127.96593052867742,52.97983820230515],[-127.96621851562672,52.97979024491736],[-127.96649727351796,52.979724496688995],[-127.96678913702253,52.97970001311759],[-127.96708778618809,52.97970118840352],[-127.96737076435943,52.97964602112236],[-127.9676404727487,52.97956641385012],[-127.96791606633727,52.97947270025647],[-127.96803817540376,52.97932885609319],[-127.9680343667989,52.97914564883815],[-127.96801454447001,52.97895933721947],[-127.96800435752442,52.97877959931281],[-127.9679913656992,52.9785998992689],[-127.96799330707749,52.9784199587482],[-127.96799977292365,52.97823713577506],[-127.96802215881125,52.97805572380856],[-127.96808705230276,52.97788537625326],[-127.96827181252495,52.97774441290431],[-127.96849651907245,52.97762016107175],[-127.9687460763583,52.977508379997204],[-127.96894073757043,52.97738013652356],[-127.96901987819538,52.97721515497719],[-127.96905633497046,52.97685416408788],[-127.9689829533574,52.976679956942185],[-127.96890400458335,52.97650640773729],[-127.96880288840086,52.976337712713175],[-127.96868882440945,52.97617147585744],[-127.96857383646136,52.97600525432777],[-127.96846624106044,52.97583778821822],[-127.9683632636051,52.97566912390283],[-127.96826212583817,52.975499872767166],[-127.96815915001066,52.97533120823924],[-127.96806541990384,52.97516070325765],[-127.96800963672801,52.974983403566945],[-127.96802096332028,52.97480498282237],[-127.96806684336939,52.974627105800124],[-127.96810894209254,52.97444817094979],[-127.96814081909326,52.974269971781766],[-127.96815103845245,52.97408764161144],[-127.96809444643846,52.97391316224475],[-127.96795197659742,52.97375804369832],[-127.96778365307514,52.97360840559489],[-127.967607935771,52.97346057665965],[-127.96743777584837,52.97331152473921],[-127.96726022218886,52.97316428196027],[-127.96714555889416,52.97300477926846],[-127.96717910681878,52.97282262453137],[-127.96725594101814,52.97264815857641],[-127.9672822376546,52.97247060866454],[-127.96726270697854,52.972290461143324],[-127.96726281241301,52.97211110665204],[-127.9673236857491,52.971934656206905],[-127.9674099286357,52.971762274807965],[-127.96749332940408,52.97158881086083],[-127.96757486549349,52.97141538693691],[-127.96761803214393,52.97123923196603],[-127.96758821325722,52.97105870019646],[-127.96751300938955,52.97088508719408],[-127.96740445455785,52.97071651495474],[-127.9672445011169,52.97056617129035],[-127.96707075506052,52.97041998555542],[-127.96692628126361,52.97026154526397],[-127.96680118408572,52.97009828849638],[-127.96673256961489,52.96992568591598],[-127.96671764402227,52.96974434024646],[-127.96671660489463,52.96956052080387],[-127.96671280285724,52.96937731243157],[-127.96667494368266,52.96920419628454],[-127.96646651922725,52.969074838011515],[-127.96635394222463,52.9690004922458],[-127.96635642730108,52.96893319338231],[-127.96645435290941,52.96875108470303],[-127.96650217517784,52.968574861138954],[-127.9663748765833,52.96842453609998],[-127.9661715466905,52.96828388271185],[-127.96598014740165,52.96813911099918],[-127.96587071784812,52.96797167284258],[-127.96582603522063,52.96779194448974],[-127.96601747592106,52.96751411495407],[-127.96623186305263,52.96738947315653],[-127.96638708533631,52.96723611774097],[-127.96638903256847,52.96705616705722],[-127.96632030617593,52.96688132398338],[-127.96624138645345,52.96670777197242],[-127.96615602802129,52.96653601329702],[-127.96607062926446,52.96636369026376],[-127.96599078688513,52.96619015346426],[-127.96592022503506,52.96601589674703],[-127.96586635306167,52.96583912848031],[-127.9658682875196,52.965659177902545],[-127.96591416670596,52.96548130073965],[-127.96594135226029,52.965302614585575],[-127.96594143756518,52.96512270377408],[-127.96593405101878,52.964942908686425],[-127.96592012187766,52.964762666784935],[-127.9658310921933,52.9645920899945],[-127.96574020988272,52.96442210004596],[-127.9657280422835,52.96423958676409],[-127.96568175895528,52.96406548953923],[-127.9655153309469,52.96391581646171],[-127.96533151339352,52.96377315907658],[-127.96514591043076,52.96363220815711],[-127.96496298307795,52.9634884144015],[-127.96483710345053,52.96332797527679],[-127.96479338071985,52.96314879513388],[-127.96481870544629,52.962970140083094],[-127.96485894225872,52.96279123623433],[-127.96489172261482,52.96261245674197],[-127.96489462659832,52.96243305468566],[-127.96487607577305,52.962253445574696],[-127.9648575106064,52.9620738456509],[-127.96483615664144,52.96189428326405],[-127.96480180708703,52.961716067584085],[-127.9647210648252,52.96154310067816],[-127.9646560713922,52.96136763804566],[-127.96459570488031,52.96119153322234],[-127.96453812735204,52.961015381836184],[-127.96448053913613,52.96083866562498],[-127.9644173968043,52.9606631719441],[-127.96433111802695,52.960491418028575],[-127.96429395720975,52.96031268402807],[-127.96422062404618,52.96013848114299],[-127.96414358931241,52.95996489593402],[-127.96406098914393,52.95979195947823],[-127.96397007243775,52.95962084757257],[-127.96386625364015,52.959452757627375],[-127.96374487604167,52.959288314289154],[-127.96360418019039,52.95912980670236],[-127.96344882181299,52.95897658324942],[-127.96328338660162,52.95882744646683],[-127.96311333756188,52.95867951629687],[-127.96279626960434,52.9583972699778],[-127.96264456716794,52.95824230759735],[-127.96249468871102,52.95808674966528],[-127.96234482626072,52.9579311912794],[-127.96219223902636,52.95777735506574],[-127.96203503799104,52.95762472545689],[-127.96185133658011,52.95748373777138],[-127.96162130547869,52.95736931263459],[-127.96138222559843,52.95726119857817],[-127.9611324695113,52.9571639064977],[-127.96087376820518,52.95707517454614],[-127.96061151021102,52.95698986413986],[-127.960347452219,52.9569062690531],[-127.96008428257898,52.95682152867199],[-127.95982560045107,52.95673279415194],[-127.95958839248195,52.95662464539584],[-127.95934571252499,52.95651882914247],[-127.95909939452318,52.95641531484872],[-127.9589388581217,52.95627058347003],[-127.95883027138504,52.956099761638725],[-127.95868132775189,52.95594361849612],[-127.95854162673022,52.955785644490376],[-127.95841844243844,52.95562179082895],[-127.95829985937378,52.95545673955932],[-127.95806654145187,52.95512881459503],[-127.95790754178527,52.95497676554698],[-127.95772468718359,52.95483352458144],[-127.95757676886842,52.95467904894462],[-127.9574609946712,52.95451395013967],[-127.95735530949085,52.954345320632],[-127.95725240212504,52.9541760798903],[-127.95715043527385,52.95400683239069],[-127.95705215565305,52.95383695855315],[-127.95695114033774,52.9536682510561],[-127.95684823621714,52.953499009891786],[-127.95674722251269,52.95333030218534],[-127.95665082459472,52.95316039672688],[-127.95656549118127,52.952988065412136],[-127.95650879421989,52.95280965340749],[-127.95638278398805,52.95262454625208],[-127.95629308761953,52.95247863432555],[-127.95614235389611,52.95232363869882],[-127.95598514320804,52.95216988040483],[-127.95583254812836,52.95201491530909],[-127.95568914345229,52.951856999452495],[-127.95555122753126,52.95169675034085],[-127.95541238832764,52.95153651640221],[-127.95526807354487,52.95137918011921],[-127.95511282496547,52.951227065062504],[-127.95493284970051,52.95108488404718],[-127.95464912341258,52.95097806299861],[-127.95436405117964,52.950902641629156],[-127.95412582566178,52.95083205590383],[-127.9539122751732,52.95073022927155],[-127.95367771265387,52.95061754127174],[-127.95345588731652,52.950497915722565],[-127.95325399601954,52.950365628490914],[-127.95307856844455,52.95022057136561],[-127.95290858886793,52.95007261673343],[-127.952723035814,52.94993053392627],[-127.95253932156508,52.94978785537663],[-127.95238317485484,52.949636307724624],[-127.95226748593151,52.949472323421354],[-127.95217476465713,52.94930067642003],[-127.95208386676697,52.94912843414401],[-127.95197639322961,52.94896038548249],[-127.95184131427669,52.948800650065046],[-127.95169607181742,52.94864275992977],[-127.95156190819176,52.94848244405668],[-127.95145073741683,52.94831502115931],[-127.95136445915256,52.948141580776706],[-127.95134774329645,52.94796026165901],[-127.95135184803519,52.94778532323289],[-127.95137903205486,52.947605518415806],[-127.95143315004167,52.94742358122253],[-127.95145311143223,52.947248944875845],[-127.95153578438635,52.947059252497645],[-127.9516842382211,52.946982243050655],[-127.95213080005131,52.94694065464936],[-127.95185068209811,52.94687075021306],[-127.951698481179,52.94672362901558],[-127.95158994786743,52.94655279952097],[-127.9514732798876,52.94638770958387],[-127.95131161085736,52.946237372967374],[-127.95113799338903,52.94609060601476],[-127.95096622511038,52.94594379920184],[-127.95079720947597,52.9457958345367],[-127.95062910823547,52.94564728951847],[-127.95046374430031,52.9454975779519],[-127.95030021893409,52.945347270734835],[-127.95013945672052,52.945196361527174],[-127.94998236029429,52.945043714423726],[-127.94983351369248,52.94488812358449],[-127.94968124989144,52.944719137565976],[-127.94954958537949,52.94457222954755],[-127.94937506716097,52.94442603097553],[-127.9491859775834,52.944287355198895],[-127.94899142802186,52.94415157641609],[-127.94880687837531,52.9440100269589],[-127.94862325411366,52.94386846190344],[-127.94841801647905,52.94374351276766],[-127.9482948547303,52.94357852720552],[-127.94812950704498,52.94342881217261],[-127.94794387050415,52.94328391648892],[-127.9477564233148,52.94314017144358],[-127.94758281542627,52.94299339025871],[-127.94743872726737,52.942839403672394],[-127.94733890535579,52.94267515198948],[-127.94727131232291,52.94250195539092],[-127.9472286493986,52.9423233065178],[-127.9472007491478,52.94214161549986],[-127.94718121487291,52.94195922111403],[-127.94716080791221,52.94177796210854],[-127.94714980434735,52.94159878947897],[-127.94716207142031,52.94141866695343],[-127.9471846445953,52.94123950386746],[-127.94721373056224,52.9410602240572],[-127.94725032031674,52.94088195002615],[-127.94728502084638,52.94070314224341],[-127.94730944088452,52.940523939521846],[-127.94733201296464,52.94034477630992],[-127.94734979139417,52.94016288546848],[-127.9474155313936,52.939990289873606],[-127.94757538619909,52.939836870562324],[-127.94772679786873,52.939682478702146],[-127.94776435921479,52.9395053002307],[-127.94775230166344,52.93932334687975],[-127.94770410213404,52.939145910432245],[-127.94757649655345,52.93898548132506],[-127.94742673004788,52.938829337617236],[-127.94727692431306,52.9386726383707],[-127.94714923415549,52.93850996826602],[-127.94704275678183,52.938342463271894],[-127.94694362963725,52.93817259466724],[-127.94684080318227,52.93800335212694],[-127.94673890116198,52.93783408523646],[-127.94664441582586,52.93766358359719],[-127.94656474282267,52.93749115098636],[-127.9464989216345,52.93731568234527],[-127.94644052728614,52.93713953484502],[-127.94638674693901,52.936962190039104],[-127.94633761686812,52.93678476830212],[-127.94628941120726,52.93660733124703],[-127.94623555552451,52.93642831061092],[-127.94619005002342,52.936248586903865],[-127.94617353996655,52.93607118168784],[-127.94622436492466,52.93589827691156],[-127.94635374771308,52.93573135489892],[-127.94648039388434,52.93556559893662],[-127.94661446465017,52.93539915504509],[-127.94679181390711,52.935261705356346],[-127.94703841297037,52.935171311599134],[-127.94732448797308,52.93510828847306],[-127.94760859676818,52.935043055227865],[-127.9478937206701,52.934979490421455],[-127.94812645554474,52.9348713882037],[-127.94825979884745,52.9347094381527],[-127.94822556606529,52.93453177028117],[-127.94810235500752,52.934365107886144],[-127.94790231712332,52.934230539101684],[-127.94772514784998,52.93408662377571],[-127.9476159438088,52.933920285086806],[-127.94752231049142,52.933748083789105],[-127.9474102806709,52.93358122669036],[-127.94729641479624,52.93341496482999],[-127.94718161098173,52.93324871837465],[-127.94706498604462,52.933083066902476],[-127.94694558586733,52.93291801722396],[-127.9468216248059,52.93275528481065],[-127.94669122924313,52.93259433566918],[-127.94653141556495,52.932442284708316],[-127.9463386888677,52.932304229503195],[-127.94611695417797,52.932184033214135],[-127.94588888776556,52.932067860125436],[-127.94571637269009,52.931923299926375],[-127.94558494305574,52.93176013370702],[-127.94548669883974,52.93158856300301],[-127.94540588780997,52.93141110815158],[-127.9452958374998,52.93124645826558],[-127.94512259416429,52.931106402108384],[-127.94490532808896,52.930981636894906],[-127.94466349878954,52.93087017283938],[-127.94441108355925,52.93077177886719],[-127.94414739888826,52.93069206209687],[-127.94386669260874,52.93062719853884],[-127.94358425221725,52.93056516090857],[-127.94331344158763,52.93049228582386],[-127.94308649494359,52.9303800168591],[-127.94288731323805,52.93024318371566],[-127.94261148035439,52.93018272066264],[-127.94231894247389,52.930144387150015],[-127.94202217884406,52.93015657536371],[-127.94172365018964,52.93019120241928],[-127.9414419016381,52.93016446341523],[-127.94125285056741,52.930024662524865],[-127.94114708603956,52.929851535444946],[-127.94101230183834,52.92969570147313],[-127.94074117978784,52.92961609990062],[-127.94045986835208,52.929557964189385],[-127.94017333774082,52.92950831666451],[-127.93988596073378,52.929460368344614],[-127.9395936601787,52.92942707310874],[-127.93928401006988,52.929422087336036],[-127.93898339255169,52.929410791071525],[-127.9387396993133,52.92933970081871],[-127.93858319225806,52.92917749621994],[-127.93846005974788,52.92901137877385],[-127.93836190160083,52.928840921967044],[-127.93827563981651,52.92866579422025],[-127.93821043321063,52.92848246386298],[-127.93801889918207,52.92836960214559],[-127.9377238271235,52.928316170545905],[-127.93744837702037,52.92824335866115],[-127.93724105338529,52.92811113417761],[-127.9370996860078,52.9279537183148],[-127.93698130325348,52.92778920710833],[-127.93687300449042,52.92762115792964],[-127.93676654381242,52.927452522395164],[-127.9366582471612,52.927284481945215],[-127.93655819753627,52.92711349876434],[-127.93644535530946,52.92694776589055],[-127.93627567972783,52.92680315451618],[-127.93605206299507,52.926681284829804],[-127.9358204814078,52.92656851352933],[-127.93558436456482,52.9264586143283],[-127.93535095899463,52.926346993102186],[-127.93512843875503,52.92622846659222],[-127.93491036476527,52.92610538267806],[-127.93468780686308,52.92598629997577],[-127.93443738224124,52.925889529425774],[-127.9341896580698,52.92579047202627],[-127.93395354975112,52.925680569501395],[-127.93372913431571,52.925561515563764],[-127.9335436755692,52.9254177157338],[-127.9334004431526,52.925259770183075],[-127.93339434310138,52.92508443383445],[-127.93342337475079,52.92490292435094],[-127.9333188986754,52.92473649508948],[-127.9331525748332,52.92458284752346],[-127.93292910606398,52.924463776559975],[-127.9326857370488,52.92435791873019],[-127.93260736360939,52.92419161612851],[-127.93260994330907,52.92400212945544],[-127.93258977028077,52.92382479114219],[-127.93238617387088,52.92371210966821],[-127.93211097462539,52.92362358799503],[-127.93185038515756,52.92352810000191],[-127.93158613372746,52.92343435750034],[-127.93132723980486,52.92331473515701],[-127.93114148669987,52.92320513060508],[-127.93099576386257,52.923053383917505],[-127.93087464259513,52.92288946762873],[-127.93076720289706,52.92271916585355],[-127.9306634271513,52.922547117916274],[-127.93055325356416,52.9223779728003],[-127.93043670819668,52.9222123039998],[-127.93035710325643,52.92201856074718],[-127.93025345764794,52.92184930824254],[-127.93006708822679,52.92170551800417],[-127.92982459677842,52.921515567102205],[-127.92969370798154,52.921403374538215],[-127.92953248035539,52.92127934865536],[-127.92947040380143,52.92112287441757],[-127.92945855634555,52.920943713021025],[-127.92946517891605,52.92076088580762],[-127.92944865790678,52.92058123604086],[-127.92942281150874,52.92040174814194],[-127.92940631640371,52.92022266288062],[-127.92939536752911,52.9200429216811],[-127.92938629623431,52.91986315864123],[-127.9293827962405,52.91968329525531],[-127.92936720003836,52.91950363917305],[-127.92935535346717,52.919324477587544],[-127.92936865350218,52.91914490362516],[-127.92939311139519,52.9189651466676],[-127.9294278942263,52.91878689734242],[-127.92947856348256,52.91860951739849],[-127.92955456616893,52.91843619686946],[-127.92965495361335,52.91826640422634],[-127.92973470477096,52.9180935870148],[-127.92979283060482,52.917916640527146],[-127.92988293104705,52.9177458953553],[-127.9300087764977,52.917582975518606],[-127.93014310893587,52.917422149265825],[-127.9302878671429,52.917265079673506],[-127.93043921044047,52.917109587769495],[-127.93058961375044,52.9169541020948],[-127.93071458137813,52.9167923167222],[-127.93080646138567,52.91661985547256],[-127.93085998391987,52.91644410471493],[-127.9308583404147,52.916264219395586],[-127.93089589018439,52.91608536778719],[-127.93093625040262,52.91590702601912],[-127.93096541307374,52.9157283119952],[-127.93095445918074,52.915548579404245],[-127.93092952232831,52.915368511324644],[-127.9309605210335,52.91518920212924],[-127.93102878449068,52.915009846216634],[-127.93115394796777,52.91485254075964],[-127.93138926328734,52.914741063894915],[-127.93161687547331,52.914624108119135],[-127.93176348068044,52.91446700586908],[-127.93187892315267,52.91430088234412],[-127.93197926637272,52.914130531694084],[-127.93208244465049,52.91396124637727],[-127.93221119770377,52.913801073694586],[-127.93240054763685,52.91366232506448],[-127.93259083473596,52.9135235607019],[-127.93276547344597,52.91336880337279],[-127.93291939032797,52.913208772359525],[-127.93297718298803,52.91304528067371],[-127.93289592767509,52.91287679178983],[-127.93271851818562,52.912642058843346],[-127.93245129476149,52.912563496309325],[-127.93219202587694,52.91247526971425],[-127.9319434213682,52.912375666589796],[-127.93171195365142,52.912263441805266],[-127.93150125598355,52.912136867786884],[-127.93129596746726,52.91200628565141],[-127.93107981360457,52.9118825984425],[-127.93085282039173,52.911766379616765],[-127.93062220634586,52.911652461749654],[-127.93039340457099,52.911537392723666],[-127.93017184818599,52.91141772046205],[-127.92996022092728,52.91129115901478],[-127.92975406852217,52.91116170941867],[-127.92955147338785,52.9110288292141],[-127.92935711317257,52.91089245963455],[-127.92917098703305,52.9107525827976],[-127.92899489188737,52.910608066229976],[-127.92882701584547,52.91046004272863],[-127.92866551280233,52.91030856053116],[-127.92851043264828,52.910154721888816],[-127.92836082293337,52.90999856037502],[-127.9282167633208,52.90984117774794],[-127.92807730136228,52.9096826075743],[-127.92794424722446,52.90952168128483],[-127.92781945272901,52.9093578215119],[-127.92770389192708,52.90919213329757],[-127.92759845191725,52.909023472181424],[-127.92750133226062,52.90885355364582],[-127.92740319883146,52.90868196568138],[-127.92730781588168,52.908509220550535],[-127.92722260415552,52.90833462273389],[-127.92715502088946,52.90815861504814],[-127.92711350150654,52.907982180299456],[-127.92710269238324,52.90780524238629],[-127.92710862754987,52.90762746514949],[-127.92712665630374,52.90744949872161],[-127.92715489090405,52.90727080008094],[-127.92718964840867,52.907091994535755],[-127.92723092873527,52.90691308208002],[-127.92727405543357,52.90673413933096],[-127.92731903271556,52.90655460124206],[-127.92736213353565,52.906375102825834],[-127.92740247420281,52.90619620560477],[-127.92743630644772,52.906017414998274],[-127.92747012351606,52.905838624606325],[-127.92750487852888,52.905659818809376],[-127.92753496125263,52.90548052457207],[-127.92755385994512,52.90530142255832],[-127.92755969148075,52.905121404718685],[-127.92755059066553,52.90494107556839],[-127.9275229402683,52.90476217137823],[-127.9274591607111,52.90458778717321],[-127.92734723547923,52.90441978784026],[-127.92723533667797,52.90425235294042],[-127.92712706037372,52.904082616608775],[-127.92700962954216,52.90391639311499],[-127.92687026729081,52.9037594966786],[-127.92668887780626,52.903620668292625],[-127.92646362452444,52.903500484892746],[-127.92622753322925,52.903387769454746],[-127.92598892235713,52.90328126471029],[-127.92574129865473,52.903181067994616],[-127.92548921760984,52.903085427679166],[-127.92522204194655,52.90300628370537],[-127.92495225995383,52.90293110972145],[-127.92468155563715,52.902855950224605],[-127.92441172493619,52.90277965483901],[-127.92414189520174,52.90270335883081],[-127.92387920857188,52.90262021946887],[-127.92365499336789,52.9025022647863],[-127.92356070388551,52.90233229652115],[-127.92342039586958,52.90217484662935],[-127.92324705408306,52.902028034594714],[-127.923065531641,52.90188583104268],[-127.92288028802253,52.90174369702673],[-127.92266428671877,52.90162167828906],[-127.92241933851486,52.901518624081376],[-127.92215839775466,52.90143265447741],[-127.92188241213219,52.90136430092288],[-127.92160470705261,52.90129877280135],[-127.92134109590246,52.901215643027825],[-127.92112686200254,52.901091350702345],[-127.92104176643241,52.90091843232493],[-127.92102899645616,52.90073871860858],[-127.92104227526276,52.90055802336704],[-127.92104538513831,52.90037918016969],[-127.92095940332683,52.90020738817756],[-127.92084848937215,52.90004049624585],[-127.92082152489978,52.90000001626921],[-127.92073665266946,52.8998736103093],[-127.92059549089251,52.89971730100667],[-127.92037662088688,52.89959308307156],[-127.92019159780088,52.89945541629543],[-127.92007050965107,52.89928981074136],[-127.92001038996587,52.89911311184775],[-127.91994211500867,52.89894159496858],[-127.91978720911038,52.89878999302736],[-127.91961568910183,52.89864201607037],[-127.9194395754696,52.89849524379817],[-127.91926628740659,52.89834898116219],[-127.9190875028474,52.8982050499434],[-127.91890965756033,52.898061103133124],[-127.91874185586023,52.89791250825015],[-127.91860249323983,52.89775448127477],[-127.91850633288549,52.89758397450543],[-127.91838614420588,52.89741723155965],[-127.91824678452487,52.897259204114214],[-127.91805892877402,52.89712045928417],[-127.91783097527752,52.897000868847236],[-127.91755596794896,52.896973966008844],[-127.91740736621259,52.89690016214535],[-127.917333493003,52.89662448345529],[-127.91734703326112,52.89647013176749],[-127.91736408420853,52.896290496175155],[-127.91734002783441,52.896107602888804],[-127.91719289870302,52.89596315270117],[-127.91694156552194,52.89586187753258],[-127.91668944672946,52.89576397760015],[-127.91644278671345,52.89566319019719],[-127.91634408244548,52.8954977720327],[-127.91649190365108,52.89534739289078],[-127.91669648949764,52.895216822033895],[-127.91678575722871,52.895048340110165],[-127.91684911614364,52.894842166926615],[-127.91669603195663,52.8946894102685],[-127.91654839541843,52.89453319269884],[-127.91637682840613,52.894383534861404],[-127.91629755028784,52.894215001997324],[-127.91628194279478,52.89403365662373],[-127.91624596459144,52.893854885177056],[-127.91615515368412,52.8936786842598],[-127.9159867431726,52.893536821317994],[-127.91573997157239,52.89343322740733],[-127.91547185113599,52.89335184448478],[-127.9151934212574,52.89328967667841],[-127.91491052349684,52.893231508920266],[-127.91463286765942,52.8931659732128],[-127.91435951991176,52.893092510853016],[-127.91415651333486,52.89296802341136],[-127.9141196722184,52.89279038638896],[-127.91409760388999,52.89261026688584],[-127.91407738666817,52.89242956121879],[-127.91404603872864,52.89225014874097],[-127.9139925505256,52.89207502457922],[-127.91388805490249,52.89190465859159],[-127.9137348658818,52.89174909290075],[-127.91354165742418,52.89161435607315],[-127.91331192052684,52.89149590716483],[-127.91306263477664,52.89139795364735],[-127.9127885896878,52.891329548053044],[-127.91250648039043,52.89126799892062],[-127.91224748294366,52.89118196755366],[-127.91201243542041,52.8910692074728],[-127.9117818582933,52.89095245527915],[-127.9115371738565,52.89085330280138],[-127.91126553151817,52.890775886779146],[-127.91097670642537,52.890709959275036],[-127.91068429238365,52.89066763010147],[-127.91040103046603,52.89066326502448],[-127.91013202272656,52.89072760383459],[-127.90986442066375,52.890823315743205],[-127.90958829394451,52.8908950597989],[-127.90930073372787,52.890940085208285],[-127.90900707325613,52.890973999097476],[-127.90875409159256,52.89100108197324],[-127.90841680090652,52.89101721089115],[-127.90812041493916,52.89103154506747],[-127.907822990932,52.89104366233577],[-127.90752556635447,52.89105576989032],[-127.907229140058,52.89106954645716],[-127.90693382717777,52.89108723214397],[-127.90663972749873,52.891111058339646],[-127.90635204757068,52.891153836432416],[-127.90606977864982,52.89121334084773],[-127.9057854222907,52.891267829495455],[-127.90549435522325,52.89129720855586],[-127.90519761605901,52.891303703125836],[-127.90482247628454,52.89130641818409],[-127.90453291321347,52.891265148560436],[-127.90424414835886,52.891221058363364],[-127.9039640884908,52.891163383679725],[-127.9036865126225,52.891098933257595],[-127.90341068850394,52.891031655860324],[-127.90313573824166,52.89096324270073],[-127.90286078886223,52.89089482889536],[-127.90258497769422,52.890828114361156],[-127.90230737096448,52.89076254025656],[-127.90203071331551,52.89069751512971],[-127.90175309380216,52.89063194891364],[-127.9014773257556,52.89056578713604],[-127.9009505672056,52.89042577021223],[-127.90067460183808,52.89035512584805],[-127.9004183430009,52.890267347598915],[-127.90018795186825,52.89015393314054],[-127.89997105138059,52.89002964642847],[-127.89976324194633,52.88990072850787],[-127.89957817770761,52.88975966795914],[-127.89941321005217,52.889609879587205],[-127.89925915913102,52.88945430973303],[-127.89910515926748,52.889299859837436],[-127.89893748629521,52.88915180046561],[-127.89874712024674,52.88901699415554],[-127.89852116018444,52.88889845606114],[-127.89827445790968,52.88879482520853],[-127.89801812847884,52.888704801051055],[-127.89774045307765,52.88863754053602],[-127.89745833345339,52.888574835028344],[-127.89719860943073,52.888492145803575],[-127.89696734848131,52.888379860221264],[-127.8967576603701,52.88824984646372],[-127.89656167292237,52.88811400642457],[-127.89637843799456,52.88797179048852],[-127.89620247322776,52.88782553806587],[-127.89602557182495,52.88767930049105],[-127.89584330351789,52.88753763312769],[-127.89564744705876,52.88740459643068],[-127.89541904415319,52.88729337381967],[-127.89515630926203,52.887205688814795],[-127.89489183942268,52.88712083813702],[-127.89462655713822,52.88703879793996],[-127.89435859177267,52.886959042352544],[-127.89409963245753,52.886872415182374],[-127.89385672398133,52.88676983515352],[-127.89362813000825,52.88665412830181],[-127.89340494550602,52.886534414946134],[-127.89317359542896,52.88641931659603],[-127.89294125901965,52.886303112702315],[-127.89273269070027,52.8861770018509],[-127.89257622633714,52.88602930922818],[-127.89247827630223,52.88585713387068],[-127.89239787184421,52.88568186906055],[-127.89232958028661,52.88550697418913],[-127.89226775943851,52.88533085413441],[-127.89219387710764,52.88515549314509],[-127.89212159206642,52.88497449251363],[-127.89202012390106,52.88480685728187],[-127.89182846089692,52.88468383574126],[-127.89153865975537,52.88461507016746],[-127.89125095107825,52.884572617789615],[-127.89095628766354,52.884540930395026],[-127.89067535150639,52.884483229949666],[-127.8903995907476,52.884415921760564],[-127.89012289308732,52.88434862799938],[-127.88984198436656,52.88429149012821],[-127.88954196531525,52.884264925259856],[-127.8892500391713,52.88423206866034],[-127.889007480017,52.88413675515597],[-127.88880114622575,52.883997705842944],[-127.88857114242673,52.8838915448969],[-127.88827906596234,52.883876059072094],[-127.88797372234126,52.88387647933019],[-127.88769827766134,52.883816450696465],[-127.88743473144635,52.883730438864575],[-127.88715216859838,52.8836357728505],[-127.88697813862537,52.883490031973025],[-127.88678492840303,52.88335245452246],[-127.88656463808663,52.88323435905959],[-127.88630911633379,52.88314037809132],[-127.8860563690695,52.88304578709246],[-127.88580182160564,52.882952901428325],[-127.8855499748494,52.88285773891359],[-127.88530256491619,52.882757455818606],[-127.88505695229631,52.882656022413826],[-127.88481404006717,52.8825523032502],[-127.88457561431626,52.88244458375585],[-127.88434441943983,52.882332272927556],[-127.8841231442174,52.8822125118089],[-127.88391092544211,52.88208700024339],[-127.88370321820106,52.88195805306906],[-127.88349822113753,52.88182737615864],[-127.8832914146865,52.88169785783679],[-127.88309825871146,52.88156138563891],[-127.88292968458174,52.88141219756499],[-127.88273754320491,52.88127739449259],[-127.88248831308105,52.88117769078914],[-127.88226787292554,52.881055670937755],[-127.88206198672222,52.88092557080109],[-127.88193108156386,52.88076512441822],[-127.88176015162645,52.88062549627714],[-127.8815081543381,52.88052639982486],[-127.8812306326544,52.88046078474909],[-127.88093468200704,52.88048345640591],[-127.88072115667576,52.8805810352448],[-127.88067796951842,52.88076276003449],[-127.88068048279263,52.88103063406808],[-127.88081602793802,52.88119100751454],[-127.88091106280568,52.88136156182005],[-127.88094590997467,52.881539240025454],[-127.88094826431437,52.881719115111146],[-127.88094970587329,52.88189956975584],[-127.88096986689702,52.8820819668107],[-127.88096753796138,52.882261360767906],[-127.88090355289256,52.88243558033466],[-127.88079861902924,52.882610446031435],[-127.88064910268355,52.88276641219503],[-127.8804449590238,52.88288682465713],[-127.88019217458083,52.88298110225812],[-127.87992036302174,52.883066159737915],[-127.87965998604501,52.88315720359901],[-127.87941109262707,52.883255345142985],[-127.87916998637257,52.883361208501015],[-127.8789424217859,52.88347862068076],[-127.8787785876409,52.883626966224526],[-127.87865651649822,52.88379314472415],[-127.87859344217078,52.88396733915719],[-127.87858097572119,52.884149136644375],[-127.87850847395704,52.88432068366954],[-127.87836936702202,52.884480964110615],[-127.87828386395913,52.884653283643445],[-127.87816283409477,52.884822242766376],[-127.8779082958036,52.88489805147676],[-127.87761633024577,52.884948674939906],[-127.87736065498771,52.88504131522709],[-127.87710422823572,52.88513788586506],[-127.87685556408147,52.88524162281609],[-127.87662505183341,52.88535572321128],[-127.87642398849857,52.88548336080151],[-127.87626755592169,52.88563101929031],[-127.87614353432963,52.885795539907114],[-127.87603093280525,52.88596604797044],[-127.87590698310653,52.88613224410366],[-127.8757526292276,52.8862849174807],[-127.87557936119136,52.88643061052254],[-127.87539565268625,52.886571976958315],[-127.87520532460304,52.88671121567895],[-127.8750111651642,52.88684770824603],[-127.87481415656842,52.88698312492241],[-127.87459625888366,52.88710934155552],[-127.87436288256632,52.88722236181931],[-127.87435538816979,52.88739062724295],[-127.87443138231231,52.8875732552194],[-127.87448566458195,52.887748938497694],[-127.87436902397236,52.887912218165475],[-127.87416315930277,52.88803712998441],[-127.87387609809787,52.88809382633198],[-127.87359970703515,52.8881604496427],[-127.87331919900222,52.88821816114234],[-127.87302418731868,52.88824248283294],[-127.8727284485975,52.88822925832565],[-127.8724311102575,52.888221663410356],[-127.8721322652677,52.88822249453744],[-127.87183566530229,52.88823170093033],[-127.87154462040104,52.88826156059498],[-127.87126435491881,52.88832486812826],[-127.87097571094445,52.8883670188323],[-127.87067692561514,52.888390264708036],[-127.87038102254013,52.88841571487564],[-127.87009725771865,52.88846282566049],[-127.86982949496303,52.888535463572836],[-127.86956588552731,52.888617558575504],[-127.86930723945751,52.88870686484142],[-127.86905159750002,52.88880117160747],[-127.86879790367827,52.88889712379949],[-127.86854513170942,52.88899306076977],[-127.86829908510236,52.88909393018133],[-127.86806558298264,52.88920469743031],[-127.86782924625052,52.88931437928396],[-127.86758810169457,52.889420783066576],[-127.86730318776219,52.8894847197044],[-127.86701997675483,52.88954470072144],[-127.86683477333717,52.889674310899984],[-127.86670727622007,52.88984560137403],[-127.86664883842832,52.89002084414447],[-127.86679497739873,52.890338555758625],[-127.86649852408235,52.89033037558491],[-127.86619668395076,52.89032675506775],[-127.8659158261255,52.890291978678164],[-127.86568288992753,52.89018190138521],[-127.86546860393892,52.89005134136061],[-127.86528460032599,52.889910776806644],[-127.86513168458556,52.88975683218043],[-127.86499247373298,52.889597056165364],[-127.86484775497004,52.88943905328208],[-127.86470214841867,52.889282185269906],[-127.86455288507815,52.88912649603809],[-127.86439355231282,52.888974894163624],[-127.86423417127334,52.88882216290685],[-127.86407204203607,52.88867060494487],[-127.86390171885117,52.888523095567464],[-127.86371868918073,52.88838306917594],[-127.86341461585701,52.88826402643481],[-127.86320186508034,52.88816818805331],[-127.86298088904557,52.88809714988666],[-127.86271121358607,52.888062188878266],[-127.86240789644731,52.88806699403166],[-127.86212504086454,52.888092772705484],[-127.86180869824278,52.88805518585726],[-127.86152888776878,52.88800132620943],[-127.86125914175965,52.887922080332956],[-127.86099023714637,52.887840587565236],[-127.86071801265751,52.88776867047172],[-127.8604448903791,52.88769732296575],[-127.86017442136287,52.88762257892443],[-127.85988820203114,52.88754976040151],[-127.85969671686568,52.8874289181364],[-127.85963012417083,52.88724725388919],[-127.85947461068359,52.887097262116],[-127.85928423785269,52.88698032947091],[-127.8590622234466,52.88688519523924],[-127.85876319998174,52.886796326985994],[-127.85847842984191,52.88675654624248],[-127.85818337528637,52.886737113731826],[-127.85788489211551,52.88672445149754],[-127.85758720083327,52.886708422065055],[-127.8572919024732,52.88668337738187],[-127.8569965560279,52.88665722072337],[-127.85670198605754,52.88662767919974],[-127.85641264786558,52.886589651572294],[-127.85612920567141,52.886537522565476],[-127.85585516113495,52.8864661791514],[-127.85558715020026,52.8863835391899],[-127.85531911572066,52.886300334034615],[-127.85504873752272,52.88622725395259],[-127.8547708813097,52.88617502461635],[-127.85447580789818,52.88615501821715],[-127.85417362133822,52.88616426836487],[-127.85387602421328,52.886193066738706],[-127.8535921923347,52.88623901779929],[-127.85331285132281,52.886302267841664],[-127.853038641548,52.88637665494315],[-127.85276919690097,52.8864537642192],[-127.85250264730321,52.88653306917026],[-127.85223901688381,52.88661512543329],[-127.85197640617206,52.88669941591805],[-127.85171476566948,52.886784802510796],[-127.85145316353825,52.88687075286164],[-127.85119152132475,52.88695614724256],[-127.85093091284678,52.88704375770477],[-127.85067419540985,52.8871352341731],[-127.85041556740717,52.88722561916581],[-127.85015287616666,52.88730822076946],[-127.84988125853057,52.8873780756305],[-127.84959185610583,52.88742466045575],[-127.84929690912813,52.88745059844943],[-127.84899903146687,52.88745192061763],[-127.84870375750158,52.88742741895976],[-127.84845936185474,52.88733094004238],[-127.84829460742064,52.887181635393695],[-127.84814075192453,52.88702599838241],[-127.84798322453993,52.88687153985101],[-127.84780752760341,52.8867274553445],[-127.84760273932586,52.88659952123613],[-127.8473742722854,52.88648373344437],[-127.84713307203253,52.88637486208294],[-127.84688916232409,52.88626771872972],[-127.84665163790922,52.886157676665015],[-127.84642958357571,52.88603953546442],[-127.84623396091577,52.885908092196104],[-127.846054600895,52.88576518362619],[-127.84588884133746,52.88561365851442],[-127.84573492730526,52.88545633342172],[-127.84559476876011,52.88529431730565],[-127.84546847673714,52.885129832458695],[-127.84535800962185,52.884965108042785],[-127.845332635636,52.88478782927879],[-127.84533724242954,52.88461457271434],[-127.84534412319341,52.88442950584196],[-127.84539039346518,52.8842511024182],[-127.8454385729327,52.88407379891085],[-127.84543639239463,52.88389447902182],[-127.84542387375377,52.88371307947238],[-127.84539467272181,52.88353306274201],[-127.84534141417242,52.88335678651897],[-127.84525579634723,52.88318550204956],[-127.84514523769084,52.883018527867115],[-127.84501890603057,52.88285293106232],[-127.84488890222666,52.88268850374587],[-127.8447672166272,52.882522833753335],[-127.84466502688132,52.88235572777546],[-127.844594323001,52.88218477372732],[-127.84457643552815,52.88200794205948],[-127.84459748410904,52.88182769251729],[-127.84463335944022,52.88164553332637],[-127.84466066050697,52.88145902478952],[-127.84493635429126,52.88152700493655],[-127.84521631937636,52.88158594071565],[-127.84550838784425,52.88162339645787],[-127.84580707383797,52.881641682201064],[-127.84603586730732,52.88161511418749],[-127.84626517077129,52.881450094013786],[-127.84647157134518,52.88131513420478],[-127.84669467615197,52.881200653935274],[-127.84689691613265,52.881076977306165],[-127.84704421286577,52.88093173533096],[-127.8471869619907,52.88081011386112],[-127.84742594782233,52.88065390678451],[-127.84763838404031,52.88052950355106],[-127.84783062029756,52.88041157827436],[-127.84802486192875,52.880275694628146],[-127.84822293499695,52.88014198335479],[-127.8484506390609,52.88002630621698],[-127.8486831314743,52.879913916206384],[-127.84889742082439,52.87978948138043],[-127.84909548928479,52.87965577755798],[-127.84929160802845,52.87952041810893],[-127.84949704276737,52.87938491172284],[-127.84968245791362,52.879260364686345],[-127.84987290922406,52.87912285142081],[-127.85006304018901,52.879021213854394],[-127.85031462863718,52.87891972952507],[-127.85056395287013,52.87883061093743],[-127.8506455925871,52.87865277747376],[-127.85085610034959,52.87852727735851],[-127.85113849510815,52.878492564245185],[-127.8514415039545,52.87850348550703],[-127.85160003000578,52.8785099562085],[-127.8517085054051,52.87847853723237],[-127.85182950061014,52.87830680865227],[-127.8518701317024,52.87812793430436],[-127.85187908685437,52.877948438004466],[-127.85193090393747,52.87776994335174],[-127.85205999482477,52.8776132154776],[-127.85226508273189,52.877491725891154],[-127.8525471410355,52.87742786930749],[-127.85283974213057,52.877392426117034],[-127.85313926086627,52.87736640586519],[-127.85343690957535,52.87733985832983],[-127.85372472932009,52.877301690363616],[-127.8539956706651,52.877239126538825],[-127.8542383481654,52.87712599925427],[-127.85442858026471,52.876983997613834],[-127.85450694250514,52.87681685741265],[-127.85450165831942,52.87663142438801],[-127.85447088004065,52.876330368462085],[-127.85473337318848,52.87624495165647],[-127.8550063129401,52.87618571671511],[-127.85530757152112,52.87613556687408],[-127.85555947422297,52.876085065499296],[-127.85586243159842,52.87600966101309],[-127.8561072153429,52.875923964668615],[-127.85639811381766,52.87589246715728],[-127.85669234078438,52.875915844045316],[-127.85696134320109,52.87597997377816],[-127.85721958955581,52.87607510412464],[-127.85743005897469,52.87620573015609],[-127.85766545167344,52.876310188487736],[-127.85794892541364,52.876364554529026],[-127.85824533450486,52.87639518390914],[-127.85854133793438,52.87641684220293],[-127.85883948020117,52.87642333726422],[-127.85913282680609,52.87640524599215],[-127.8594232375804,52.876362538991884],[-127.85971071807107,52.87631651470391],[-127.85999718719627,52.87626882872824],[-127.86028360639207,52.87622001289056],[-127.86057104585322,52.876173431110615],[-127.8608596664586,52.87613242582453],[-127.86115031824383,52.87609531555466],[-127.86144198071035,52.87605987449807],[-127.86173360314604,52.87602386837189],[-127.86202320816155,52.8759839655748],[-127.8623117039072,52.875940160698896],[-127.86259913926494,52.87589357395219],[-127.86288357043466,52.87584198522932],[-127.86316494835454,52.87578427435161],[-127.86344795071864,52.875721497121354],[-127.86371150706933,52.87563941493462],[-127.86394891174704,52.875534197387154],[-127.86418421036157,52.87542341682092],[-127.86441559077484,52.875308205033306],[-127.86464214045994,52.875189150462994],[-127.86486012902932,52.87506574735265],[-127.86506958119755,52.874938560329504],[-127.86524054575139,52.87480412789059],[-127.86538925103346,52.874650435825835],[-127.86559003271948,52.87449536093943],[-127.86568501502703,52.87432626249757],[-127.86571745089189,52.874153116920695],[-127.8657003037662,52.87397403253668],[-127.86566252297577,52.87379135672836],[-127.86562755558649,52.873587893639204],[-127.86547264044346,52.87342948764743],[-127.86524191228003,52.87332553565333],[-127.86497599732125,52.87324680311125],[-127.86469836732266,52.87317666767486],[-127.86442255884594,52.873105937724944],[-127.86414771311891,52.87303574787448],[-127.86386745940594,52.87296957106658],[-127.86359174219568,52.872900523705816],[-127.8633277174019,52.87282231353827],[-127.86311776058207,52.87270345543089],[-127.8629510046821,52.87255084779479],[-127.86277065834648,52.87240685818801],[-127.86259399945997,52.872261688892394],[-127.86241640426336,52.872116534174666],[-127.8622369744131,52.871971964270934],[-127.86205484640902,52.87182968777386],[-127.86186638768889,52.87169143023634],[-127.86167068541978,52.87155777106233],[-127.86146404364028,52.87142932476289],[-127.86124083351565,52.87130506841598],[-127.86100132393656,52.87119115857039],[-127.86074860587392,52.87109427206052],[-127.86048295761388,52.8710211302668],[-127.86020455008689,52.87097565830217],[-127.85991129277743,52.870952275295046],[-127.85961113301731,52.87094133154297],[-127.85930742405404,52.87093436211809],[-127.85898810195634,52.87091083317915],[-127.85865894753032,52.87089641773576],[-127.85856410184918,52.87087718410884],[-127.8584547551589,52.87080268683191],[-127.85820296778944,52.87070578023588],[-127.85792501355616,52.87064907702142],[-127.85763315622039,52.87061502144468],[-127.85733694907674,52.87058775079318],[-127.85704333016106,52.87055596356013],[-127.85674923758815,52.870534827884676],[-127.85644299325836,52.87053349605347],[-127.85618149610292,52.87059815930107],[-127.85597140919687,52.87073207560611],[-127.8557183988622,52.87082070027289],[-127.85538696731503,52.87088254702813],[-127.85509030980869,52.87086648758799],[-127.85480528409242,52.87081830048124],[-127.85453049351435,52.87074865262957],[-127.85426282761892,52.87067160987177],[-127.85401379939242,52.87057352994713],[-127.85377011823708,52.870470316286195],[-127.85352469088284,52.87036938059292],[-127.85327115462047,52.8702747331595],[-127.85301769233827,52.87018176100504],[-127.85276148270816,52.87008996157312],[-127.85250710004628,52.86999700285202],[-127.85225719101054,52.869900054150726],[-127.85201530519416,52.86979513165911],[-127.85170631442863,52.86964475003243],[-127.85159033220951,52.869545689634585],[-127.85134847417753,52.86944132137121],[-127.85107719946912,52.869366570319976],[-127.8508238691669,52.869276398387],[-127.85054580137691,52.86910926813277],[-127.85027330059353,52.86902779975076],[-127.8500773809057,52.86890926289851],[-127.85002588403096,52.86873071747692],[-127.84998913660029,52.86854857690031],[-127.84992330911324,52.868361289196194],[-127.84984997989707,52.868194297101404],[-127.84967751539902,52.86805856676787],[-127.84940347912394,52.86798441144473],[-127.84914182263962,52.867894931999786],[-127.84889997996555,52.867790558590045],[-127.84865810516177,52.867685073191765],[-127.84841894099274,52.867577858722825],[-127.84818154084029,52.867468374083444],[-127.84794778876365,52.86735714566059],[-127.84771858359885,52.86724361230639],[-127.84750120946667,52.86712372266009],[-127.84735568481383,52.86696514594661],[-127.84723772988539,52.86679885380962],[-127.84712443310818,52.866632488330985],[-127.84695435366896,52.866487192800186],[-127.84674215294488,52.86635769666095],[-127.8465823127866,52.86621223968655],[-127.8464911202738,52.866040477366376],[-127.84635848628137,52.86587889890989],[-127.84620756049297,52.86572433355122],[-127.84602186549603,52.86558376594052],[-127.8458052964556,52.865460497663165],[-127.84557158602853,52.86534982896221],[-127.84532971842584,52.865244336786205],[-127.84509148924558,52.86513653607322],[-127.84485686951699,52.86502644523551],[-127.8446231395003,52.864915210029714],[-127.84438853707745,52.86480511800812],[-127.84415304658232,52.8646961514757],[-127.84391480894874,52.864588357535595],[-127.84367748545391,52.864479983809204],[-127.84345368328414,52.86436130870197],[-127.84326029745203,52.86421468764661],[-127.84303000318226,52.86411797711382],[-127.8427372866883,52.86410575332742],[-127.84239248213117,52.86415879717264],[-127.84213934766363,52.864136427454625],[-127.84182230773521,52.86405675919738],[-127.84152804046985,52.86396553241603],[-127.84126352493627,52.86385197519892],[-127.8411023427202,52.863739596312755],[-127.84090599820343,52.86361039746321],[-127.8407284888858,52.86346465356791],[-127.84056653012291,52.863312495973425],[-127.84044595027059,52.86314903628455],[-127.8403547894139,52.86297727783399],[-127.84024798299154,52.862809683274534],[-127.84011534923165,52.86264697699254],[-127.83997250445256,52.86248498646362],[-127.83980512742349,52.86233684057405],[-127.83960156261067,52.86221223655446],[-127.83936614699951,52.862104380472296],[-127.83911170568568,52.86200859646063],[-127.83884643635295,52.86192027219848],[-127.83858137044638,52.86183698407478],[-127.8383164410188,52.8617564911859],[-127.83804794753156,52.86167998136484],[-127.83777770676039,52.86160574022292],[-127.83750566496828,52.86153321258425],[-127.83723274958008,52.86146180999487],[-127.83695978722437,52.86138929550927],[-127.83668866116567,52.86131618672431],[-127.83641577285405,52.86124534681954],[-127.83620465733344,52.86124752531315],[-127.83591692858418,52.861393820428475],[-127.83567962995018,52.86150122273935],[-127.83547404454833,52.86163222561794],[-127.8353215574296,52.861785939185694],[-127.83521544469454,52.86195798477126],[-127.83499881491959,52.86207010266245],[-127.83472014439143,52.862146196753265],[-127.83443347697487,52.862187664819416],[-127.83413657035045,52.86220742853428],[-127.83384709589134,52.86224838296773],[-127.8335777929096,52.86232600506453],[-127.83340640997316,52.86247328496178],[-127.83314574619497,52.86255694105749],[-127.83303239717522,52.86240961994893],[-127.83304968434288,52.862227196567005],[-127.83304564912915,52.862046782780446],[-127.83300978180523,52.861861816706195],[-127.83278655479533,52.861777306978226],[-127.8324838364802,52.861748399343284],[-127.8322070659622,52.861695545873964],[-127.83201314544311,52.86155676201155],[-127.83190180595152,52.861390916909045],[-127.83181988507316,52.86121675726605],[-127.83176290976198,52.86103828973182],[-127.83170777972565,52.860859793390055],[-127.83158378631352,52.860702548051684],[-127.83137629339971,52.86057238651791],[-127.83117417338964,52.86043765699261],[-127.83103433547095,52.86027953704988],[-127.83091274339769,52.86011328579511],[-127.83077109597889,52.85995631471033],[-127.8305691493361,52.859825509359396],[-127.83033799342617,52.859707480456926],[-127.83014983538632,52.859572531703776],[-127.83001640914529,52.85941206874356],[-127.82991597602248,52.85923988202366],[-127.82984336576274,52.85906558491057],[-127.82984775320956,52.858886160664944],[-127.82986044387047,52.85870492113211],[-127.829865768434,52.858525482247785],[-127.82986270849304,52.85834561792701],[-127.82983270137832,52.85816672928802],[-127.82979989775004,52.85798788417936],[-127.82978401323615,52.85781269447045],[-127.82977789278883,52.85764857139362],[-127.8297422836647,52.85744735040463],[-127.82972633663972,52.8572710406327],[-127.82969883953001,52.85710725042337],[-127.82969535630023,52.85687414170423],[-127.82975202614159,52.856698942864064],[-127.82966243616875,52.85654060355459],[-127.82959359853483,52.85638922285061],[-127.82961551499142,52.85620616240492],[-127.8296358359821,52.85602928766512],[-127.82969892473099,52.85585175578999],[-127.82977886799846,52.85567675929934],[-127.8298823733799,52.85550867758593],[-127.82999897566135,52.85534264266026],[-127.83008647446408,52.85517032613423],[-127.83015890525108,52.854993769312465],[-127.83026250364577,52.854827927648536],[-127.83046143686114,52.85469423875172],[-127.83064615117173,52.854554601199276],[-127.83075605465892,52.854384176842565],[-127.83078936189649,52.854206543227455],[-127.83070557612682,52.85403185536026],[-127.83050283166705,52.853903304234905],[-127.83025647296867,52.85379896386268],[-127.82999508791846,52.85371280168418],[-127.82980973901101,52.853577808543164],[-127.82978984897467,52.85339595489176],[-127.82967675199616,52.85323181165052],[-127.82940428769837,52.853169361307636],[-127.82911127508132,52.85312684292872],[-127.82882545083899,52.853078042054115],[-127.82854731468929,52.8530134360961],[-127.828306616146,52.852910689577676],[-127.8280819561524,52.852791434322754],[-127.82785459741774,52.852674471565095],[-127.82761921614659,52.85256547107195],[-127.82735269809154,52.852489471810195],[-127.82706927768085,52.8524316615244],[-127.82680175217283,52.85235399075324],[-127.82653507807096,52.85227462916311],[-127.82626226447415,52.852203765276926],[-127.82598331124996,52.85214139905319],[-127.82569979946929,52.85208135394884],[-127.82540934136034,52.85207633504494],[-127.82511378294119,52.85210446798422],[-127.82481928125651,52.852135390684914],[-127.82452564414496,52.85216461326231],[-127.82423194383375,52.85219271510353],[-127.82393688968405,52.85221074843322],[-127.82363782923181,52.85222211735244],[-127.82334249008595,52.85221156421953],[-127.82305600508785,52.852168929590675],[-127.82277600017305,52.85210377419152],[-127.8225049574569,52.852030632256145],[-127.82224089826792,52.85194673658425],[-127.82198932826236,52.85185030691299],[-127.82173853841182,52.851750510655044],[-127.82148313270373,52.851651341451735],[-127.82123132693671,52.851549308967876],[-127.82099321144088,52.85144090284571],[-127.82077608864351,52.851323203054456],[-127.82060101267243,52.85118803656387],[-127.82051450234549,52.851013949035405],[-127.82045452844794,52.8508293524313],[-127.82033608776052,52.85066976731669],[-127.82006803592137,52.85057920290007],[-127.819778286739,52.850568554373744],[-127.8194765837914,52.85058331674035],[-127.81917591864068,52.85057844965965],[-127.81887579311385,52.85056459667955],[-127.81859753943756,52.85051846099174],[-127.81839361531505,52.85038261694784],[-127.81835059959867,52.85020280570854],[-127.81824327603661,52.8500419255001],[-127.81800497064901,52.84992903250138],[-127.81772694285854,52.849866076676236],[-127.81745063186534,52.84979973071253],[-127.81717432173168,52.84973338409633],[-127.81688848654426,52.84968344280426],[-127.81660872191557,52.849623309193504],[-127.81634661979791,52.849541047269604],[-127.81609061310505,52.849449166722486],[-127.81583728428974,52.84935443730953],[-127.81558209741914,52.849259736081564],[-127.8154222128185,52.84910918961839],[-127.81517117580921,52.849024512161975],[-127.81488758059314,52.84896163577241],[-127.81460159538244,52.84890832840528],[-127.81431144661887,52.84886628544703],[-127.81401679327425,52.84884953777252],[-127.81371942233872,52.8488563718016],[-127.813423607586,52.84887775372559],[-127.81313514948265,52.84891919888927],[-127.81285991087745,52.84898734270209],[-127.81259159084391,52.84906491185807],[-127.81232618486419,52.84914523337322],[-127.81205692545872,52.84922280679582],[-127.81179344825458,52.84930478325904],[-127.8115448102806,52.84940781979234],[-127.81130522014928,52.84952697485647],[-127.81106311831385,52.849630474499904],[-127.8108045427561,52.8496748159929],[-127.8105168507767,52.849603024481034],[-127.81023671562059,52.84953392273462],[-127.80996747484258,52.849458482626346],[-127.80970703162394,52.84937113167062],[-127.8094752196287,52.84925700071487],[-127.80924106435273,52.849153559133335],[-127.8089416754671,52.84913462972819],[-127.80865383697089,52.84908132755907],[-127.80836614604335,52.849053248793254],[-127.8080692477325,52.84907127093457],[-127.8077771122475,52.84911388041506],[-127.80750663811092,52.84918474511529],[-127.80725815683047,52.849291697911156],[-127.80700841987249,52.84939082266812],[-127.80673226669263,52.84943766751254],[-127.80643295992843,52.8494428268493],[-127.80612982833844,52.849423391826434],[-127.80583905591901,52.849388628421224],[-127.8055539448547,52.849333599795365],[-127.80528023887896,52.84926213663467],[-127.80503067744971,52.849167891365035],[-127.80480786661582,52.84904632227709],[-127.80459588064612,52.8489167486405],[-127.8043865821038,52.84878488243712],[-127.80414815653624,52.8486898993032],[-127.80385308194967,52.848663043946125],[-127.80355271450541,52.84864299494898],[-127.80325144907304,52.84862352394333],[-127.80297301165281,52.848572305618134],[-127.80270875166437,52.84848220004564],[-127.8024813344541,52.84836126231425],[-127.80232618760486,52.848211755942515],[-127.8021856305272,52.848055290724204],[-127.80205145585055,52.8478959294758],[-127.80192277975517,52.84773424177798],[-127.80179865033222,52.847570242249795],[-127.80167723229238,52.847404524025244],[-127.80155861090648,52.84723875380937],[-127.8014408804862,52.847071857801964],[-127.80132223747546,52.846905531670444],[-127.80120364270195,52.84674032564754],[-127.80108783002062,52.846575076840374],[-127.80097753915952,52.84640805730615],[-127.80087184244856,52.84623985522003],[-127.800766122732,52.84607108841653],[-127.80065859210453,52.84590347024732],[-127.80054736770575,52.84573646460227],[-127.80043066204748,52.845571793781964],[-127.80030292118121,52.84541008993657],[-127.80015584331042,52.84525316621518],[-127.80000102303711,52.845110933605916],[-127.79999042769033,52.84510212820717],[-127.7998141514388,52.84495853823417],[-127.7995816334524,52.844848326917],[-127.79934253167085,52.84473653007251],[-127.79912602294259,52.84460924906001],[-127.79901788771677,52.84444892945351],[-127.79896661026997,52.844269794339745],[-127.79894864433494,52.844086230043985],[-127.79897932734882,52.84390976737584],[-127.7990677707739,52.84373522682675],[-127.79909089894856,52.843556072888354],[-127.79905176041282,52.843377881712954],[-127.79891850180562,52.8432173818119],[-127.79874399282379,52.84307096521709],[-127.79855946595075,52.84292974167799],[-127.79837583889102,52.84278794807407],[-127.79820597335198,52.84264145959214],[-127.79805346916986,52.84248742322684],[-127.79790915819962,52.84232933334736],[-127.79777497028896,52.84216884638443],[-127.79764999821452,52.84200597625714],[-127.79754251349257,52.84183891044678],[-127.79746171621977,52.84166527520925],[-127.79739108011775,52.841489807417766],[-127.79734446760936,52.84131060002197],[-127.79725460541809,52.841142152210146],[-127.79707456646328,52.84099693876181],[-127.7969358878335,52.84083988245613],[-127.79687539143671,52.840662008251606],[-127.79687158221095,52.84048327563842],[-127.7968890942449,52.84030308683278],[-127.79692060209734,52.84012381379284],[-127.79696050506968,52.839944968265534],[-127.79699836869064,52.83976222600938],[-127.79705032216823,52.83958263999921],[-127.7971371885564,52.839414841421686],[-127.79730422438634,52.83927384915779],[-127.79754961687804,52.83916079365325],[-127.79779262889043,52.83905730682744],[-127.79804724096684,52.83896429561808],[-127.79830185155537,52.83887127488927],[-127.79855356247069,52.838775500039716],[-127.7988052573861,52.838679724872634],[-127.79905891926107,52.83858616096236],[-127.79931454219825,52.83849537335961],[-127.79957589647402,52.83840785131208],[-127.79984726120864,52.83833755486144],[-127.80000054186213,52.83831166495378],[-127.80013537702663,52.83828942053012],[-127.8004265241062,52.838246843892406],[-127.8007039354321,52.8381876624878],[-127.8009432406812,52.83808479068968],[-127.80116298792385,52.8379592338353],[-127.80141687688393,52.83787126605144],[-127.80170291598301,52.83781811075734],[-127.80197513944685,52.837746119094234],[-127.8022375475699,52.837661937692175],[-127.8025028776298,52.83758108273637],[-127.80277112030184,52.83750298041037],[-127.80302864936324,52.83741326718935],[-127.80328783209461,52.83731905303899],[-127.8035231955943,52.837211187397806],[-127.80371189138565,52.83707713458336],[-127.80386719947221,52.83692341669285],[-127.80400634503202,52.83676153503425],[-127.80414559954018,52.836601902431674],[-127.8042960607981,52.83644377442325],[-127.80443992842507,52.836283505550256],[-127.80456134941984,52.8361202184819],[-127.80464065000814,52.835950287731336],[-127.80468155725211,52.835774230050355],[-127.80469815990187,52.83559517396092],[-127.80470165791644,52.835414086260315],[-127.8047032495544,52.83523189788877],[-127.80471420529847,52.83505125153132],[-127.80474381783537,52.834872004358445],[-127.80478929128992,52.83469419035829],[-127.80484600140745,52.834517880588024],[-127.80491391869721,52.83434308445113],[-127.80499304887682,52.83416923686363],[-127.80507688857274,52.833997002752106],[-127.8051756901366,52.833826771528614],[-127.80525487471964,52.83365460879764],[-127.8053041001276,52.83347729272971],[-127.80534394687932,52.833298443825605],[-127.80539373795209,52.83311271608229],[-127.80509826506325,52.83289811120112],[-127.80532295880953,52.83278031638638],[-127.8055524557892,52.832666366210326],[-127.80579640451802,52.8325645330846],[-127.80604707732454,52.83246763594251],[-127.80629965487344,52.83237182992333],[-127.80655509735689,52.83227765624949],[-127.806773793699,52.83217228160304],[-127.8069991400092,52.83204831242507],[-127.80718373037519,52.831950187758416],[-127.80744919997204,52.83180765536991],[-127.8076922048188,52.83168341293738],[-127.80789464427843,52.83158949621476],[-127.80814446490817,52.83149484946609],[-127.80836149536881,52.831372117585126],[-127.80855552052311,52.83123348983281],[-127.808715609722,52.831083618648975],[-127.80881815429107,52.83091444704157],[-127.80892724281495,52.830746304445974],[-127.80909109274542,52.83059748673211],[-127.80927661427793,52.8304556256966],[-127.80944797584337,52.830308942607445],[-127.80959100029126,52.83015147715763],[-127.80972457492004,52.82999080316807],[-127.80986947956956,52.829833873310854],[-127.81002170656197,52.829674588382474],[-127.81019976373535,52.82953227579301],[-127.81044407860837,52.829439394617566],[-127.81073252114987,52.82937889700417],[-127.81098528368099,52.829288117383165],[-127.81119375867803,52.82916159278904],[-127.8113887487256,52.829024065965925],[-127.81159232151248,52.82889145528587],[-127.81181893839839,52.82877641545214],[-127.81205893394478,52.82866958056377],[-127.81230467859963,52.82856714036919],[-127.81255234280721,52.828465790989334],[-127.8127962032246,52.828362822795775],[-127.81303245347279,52.82825547866747],[-127.81325625952607,52.828139923297364],[-127.81345693224952,52.828005111966085],[-127.81362522758106,52.827852299611195],[-127.81371604804123,52.82767041716761],[-127.81372879792752,52.827489175780954],[-127.81371850331126,52.827312783316685],[-127.81373127708031,52.82713210649666],[-127.81378952856683,52.82697146088788],[-127.81383875880935,52.8267952697029],[-127.81392344598339,52.82662244961607],[-127.81399128077025,52.82644652686314],[-127.81395304099229,52.826268880114796],[-127.81392683946254,52.82608992634225],[-127.81390804680886,52.825910293091695],[-127.81385773727132,52.825732832755634],[-127.81383247297737,52.82555386443074],[-127.81384311873168,52.82534519546039],[-127.81385508089646,52.82518919274713],[-127.8138856083157,52.82501048331682],[-127.8139340422741,52.82483766710988],[-127.81398042685738,52.82466038958734],[-127.81404266911919,52.824484552948675],[-127.81408157324503,52.824306278902526],[-127.81409253411596,52.82412675066541],[-127.81411000560307,52.82394712179301],[-127.81415731009096,52.82376982985709],[-127.81416689539334,52.823667115327595],[-127.8141176104995,52.82355745465093],[-127.8139542362412,52.82358520612109],[-127.81366039901171,52.823627295025325],[-127.81336656954792,52.82364752818545],[-127.81307683209592,52.823611091750095],[-127.81279456837623,52.82355379634298],[-127.8125064282135,52.82351116390518],[-127.81221915353495,52.823466831433976],[-127.81195362350162,52.82338742083101],[-127.8117301577328,52.82326980271125],[-127.81150663653526,52.82315049905879],[-127.81127853556832,52.823032951628726],[-127.8110282013883,52.82293928761881],[-127.81074685773315,52.82288141716853],[-127.81045839145584,52.82283093787177],[-127.81019213677709,52.822756009541926],[-127.80994800847118,52.82265496560937],[-127.80971631698554,52.822540268571565],[-127.80949457732487,52.8224192567088],[-127.80928437739496,52.822285179647686],[-127.80912803696657,52.822149707180046],[-127.80889228872621,52.82200480428455],[-127.80869876717722,52.82186934819457],[-127.80850678522583,52.8217484320056],[-127.80833597607378,52.82160029449063],[-127.80818443168927,52.82144624604809],[-127.8080613711361,52.82128447671075],[-127.80796398205209,52.82111390888576],[-127.80787301777013,52.82094155604867],[-127.8077821016787,52.820770323383975],[-127.8076764412595,52.820602115702805],[-127.80756798772546,52.82043395990088],[-127.80745585759668,52.82026641661923],[-127.80729099606813,52.82012714498352],[-127.80712050245741,52.819964427942374],[-127.80696694453633,52.81980648993082],[-127.80685440376854,52.819651283315814],[-127.80667357223612,52.819507772683295],[-127.80648819986,52.81936658261719],[-127.80630010539406,52.81922711116017],[-127.80610747837952,52.8190905071508],[-127.80589577944397,52.81896429417115],[-127.80568137330685,52.818839799471654],[-127.80546962910248,52.8187124564769],[-127.8052570210747,52.81858681236899],[-127.80503540071676,52.818467476426946],[-127.80480205332042,52.81835672336163],[-127.80455417601655,52.81825404018357],[-127.80429574473533,52.81816552666255],[-127.80402088929625,52.81810641981146],[-127.80372181517188,52.818089717259554],[-127.80342625272527,52.818068476021494],[-127.80313249207927,52.8180455203907],[-127.80283781925449,52.818023143020525],[-127.80254225770877,52.81800189955606],[-127.8022484510672,52.81797783040818],[-127.80196042983897,52.81793684785614],[-127.80167736821114,52.81788122454261],[-127.80139873146996,52.81782048369555],[-127.80111226282344,52.817772193293386],[-127.80083265885101,52.81771034497192],[-127.80063482846214,52.81758165900336],[-127.80049063939013,52.81742469004248],[-127.80034459358117,52.817267749385],[-127.80000063760268,52.81698044575047],[-127.79977279711693,52.816801217919384],[-127.7995920490797,52.81665882534729],[-127.79941311240422,52.81651527477192],[-127.7992177880616,52.81637983105948],[-127.79901430994033,52.81624955199124],[-127.79880264568803,52.81612331702925],[-127.79860278256895,52.81599018386308],[-127.79842841831515,52.8158448847443],[-127.79824403396117,52.815704222863914],[-127.79801781983643,52.81558550037884],[-127.79784648918289,52.81544575890324],[-127.79769171373857,52.815301835651525],[-127.79754474065737,52.815144349756],[-127.7973857329784,52.81498816000457],[-127.79714389235909,52.81471890613794],[-127.7971549344773,52.81460607278645],[-127.79735096914389,52.814559917088346],[-127.79764614550753,52.81450662863425],[-127.79790072926507,52.81441641247417],[-127.79813776717386,52.81430685165875],[-127.79837389101486,52.81419786035759],[-127.79862743178384,52.81410485156491],[-127.7988945505619,52.81402565099462],[-127.79914613745517,52.81393043796586],[-127.79938890752236,52.81382470562298],[-127.79964840361801,52.81374113616606],[-127.79992619128947,52.813672414532945],[-127.79999993000972,52.81365783167909],[-127.80021195217446,52.81361646585047],[-127.80050246723337,52.81358510541346],[-127.80079498175472,52.81357894044557],[-127.80109096047474,52.81358897153162],[-127.8013882151338,52.81360738527025],[-127.8016856271526,52.813629167798574],[-127.80198198479626,52.81364815879375],[-127.80227655583029,52.813668853490135],[-127.8025703566779,52.81369348725006],[-127.80286412540669,52.813716999776894],[-127.8026664009865,52.81356870251908],[-127.80246564884133,52.81343671036055],[-127.8022575143672,52.813305943261525],[-127.80204573706638,52.8131769177146],[-127.80182232858529,52.813058724312704],[-127.80157841701791,52.812961014195636],[-127.80131311395438,52.812884939803915],[-127.80103445410685,52.81282251278236],[-127.80074956999341,52.81276691555576],[-127.80046372657561,52.81271076738251],[-127.80018685602107,52.81264663391852],[-127.79999993043573,52.81257775732604],[-127.7999328680855,52.812552437998775],[-127.79974491952855,52.812415195970296],[-127.79960526086175,52.81225479325463],[-127.79942712265324,52.81210787631265],[-127.79918865304616,52.812006714909714],[-127.79890833370135,52.811948801332726],[-127.79862002591364,52.81189996852306],[-127.79834048779743,52.81183867864926],[-127.79808039224797,52.81175354036226],[-127.79782906685949,52.8116559451765],[-127.79757692417044,52.81156115998716],[-127.79732207427868,52.81146809273768],[-127.79707799381742,52.81136590103983],[-127.79684742869009,52.811253403986186],[-127.79662312332931,52.81113521464961],[-127.79640693454623,52.811011286706325],[-127.79620623716043,52.810879839281604],[-127.79602277062207,52.81073803885932],[-127.79579975787946,52.8105620924623],[-127.79564682157732,52.81046130109895],[-127.79542099211403,52.810306696007764],[-127.7952090418568,52.810216895904304],[-127.79495319850288,52.81012216182135],[-127.79469922863028,52.81002739854063],[-127.79449148796567,52.8099050239288],[-127.7943426258416,52.809746441832125],[-127.7942021071241,52.809587167001915],[-127.79406800382935,52.80942555193262],[-127.79390289828095,52.8092784185969],[-127.79367933558449,52.80915516345105],[-127.79345035191055,52.80903591870641],[-127.79328550016844,52.80889438561944],[-127.79320675781997,52.80872352057438],[-127.7931711549456,52.80853965634891],[-127.79314686175583,52.80835954724592],[-127.79315693822498,52.80817891292889],[-127.79313354322984,52.80799823404597],[-127.79302721573983,52.807833951329336],[-127.79283554832928,52.80769563430463],[-127.79263746798875,52.807559656933925],[-127.79244587344196,52.80742301518372],[-127.79229067531513,52.80726789025037],[-127.79217779766402,52.80710258581358],[-127.79216841533444,52.80692336968048],[-127.79219058424367,52.806743106663724],[-127.7922155938085,52.80656393019719],[-127.79224618362066,52.80638522448495],[-127.79229259116707,52.806206833153034],[-127.79231673426622,52.80602934683795],[-127.79227022917394,52.80585126259196],[-127.7921895596233,52.805678175150014],[-127.79209780285107,52.80550694295655],[-127.7920153010668,52.80533444834288],[-127.7919484619985,52.805158916458176],[-127.79189457696172,52.80498205673477],[-127.79186326176247,52.80476730336471],[-127.79185369341391,52.80462788971896],[-127.79179045287327,52.80444949575819],[-127.79170239112172,52.80427764177585],[-127.79159222290231,52.80411005324235],[-127.7915254108069,52.80393507663681],[-127.7915476985949,52.80375761857603],[-127.79168778952669,52.80359741867364],[-127.79183070479876,52.8034382964391],[-127.79207188197817,52.80333989318154],[-127.79236091790669,52.80329679932491],[-127.792640906575,52.803237592966326],[-127.7929049786039,52.803153411135945],[-127.79312013088034,52.80303297435402],[-127.79331127507002,52.80289385606361],[-127.79353297948327,52.802774439323244],[-127.79375082749797,52.80265172705954],[-127.79393735580372,52.802513234241104],[-127.79408124214585,52.80235521512394],[-127.79420925848333,52.80210719343713],[-127.79405748601516,52.80203328619434],[-127.79399076121389,52.80186055131934],[-127.79398127828229,52.80167909416085],[-127.79401001494763,52.80150041559271],[-127.79406106888416,52.80132251674226],[-127.7941261759524,52.80114720993534],[-127.79420623300533,52.800973907479],[-127.79428910619254,52.800801126855994],[-127.79431782612255,52.80062244833812],[-127.79434653731664,52.800443213905375],[-127.79437525676568,52.80026453533194],[-127.79440303114636,52.800085306196266],[-127.7944152452798,52.79999992320653],[-127.79442897197738,52.79990667005848],[-127.79445300847027,52.79972694201514],[-127.79447429037326,52.799547821060266],[-127.79449555686493,52.79936869134578],[-127.79451867169546,52.79918897731468],[-127.79454367556683,52.79901035536351],[-127.79453500932463,52.798826087371936],[-127.7945897010435,52.79864644626766],[-127.79463575809449,52.79848207522762],[-127.794634533811,52.79838680864612],[-127.79448759144302,52.79829489202718],[-127.79417826688587,52.79814156147493],[-127.79395511489065,52.798026712575826],[-127.79367217193489,52.797970504622405],[-127.79340956549896,52.797889879058616],[-127.79316462723982,52.79778712778239],[-127.79290721779945,52.79769746262203],[-127.79264186019745,52.79761744240425],[-127.7923738196528,52.79753970459429],[-127.79210402564587,52.79746479099292],[-127.79183338224942,52.797391575744165],[-127.79156621862931,52.79731270172525],[-127.79130086593048,52.797232678454925],[-127.79103017839155,52.79715834105696],[-127.79080243724594,52.797044677361406],[-127.7905611532916,52.796940178993],[-127.79030104674396,52.796852226413804],[-127.79004456116435,52.79676197601299],[-127.78982312867176,52.796643730186986],[-127.78961701860152,52.796514031213306],[-127.78941450639579,52.79638147898321],[-127.78920480259195,52.796254641109414],[-127.78896343351546,52.79614790778994],[-127.78871130820156,52.79605086203119],[-127.78856568358658,52.795901181942256],[-127.78858978942307,52.79572257492125],[-127.7886501818363,52.795545100603654],[-127.78869756054982,52.79536781568586],[-127.7887617359083,52.79519196059623],[-127.78883901125737,52.795018712678015],[-127.78891813400993,52.79484487152185],[-127.78898793349899,52.794670607479006],[-127.78904555340166,52.79449373108846],[-127.78909665815085,52.794316397988446],[-127.78914027311323,52.79413804909901],[-127.78917553995458,52.793959836461816],[-127.78918570004133,52.793780876752976],[-127.7891409605856,52.793599956329246],[-127.78919604417864,52.793429288405875],[-127.78934073572583,52.79326845469221],[-127.7895044250393,52.79311798498927],[-127.7896794800023,52.792972390632656],[-127.78982434114285,52.792816037659165],[-127.78994467958994,52.79265053460556],[-127.79004065368024,52.79248036315574],[-127.790088085037,52.79230419738645],[-127.79011117644241,52.792123927962415],[-127.79017348440432,52.791948100064666],[-127.7902591573028,52.791775834549036],[-127.79035886484608,52.79160616173163],[-127.79046888470485,52.79143857340563],[-127.7905854801292,52.79127257056335],[-127.79088314566518,52.79099450047257],[-127.79114587942647,52.79041484680138],[-127.79119390589385,52.78985473027407],[-127.79117033466069,52.78953616775648],[-127.7914029051037,52.78927870300168],[-127.79163460733866,52.789111496691156],[-127.79214288151748,52.78898266275691],[-127.79294066318302,52.788824739267625],[-127.79324424822526,52.78873265945765],[-127.79341361056947,52.78851876404651],[-127.7936311846674,52.78808160597496],[-127.79361586338361,52.78765025106216],[-127.79357427604978,52.78716885218311],[-127.79358833151214,52.78666306100649],[-127.79368369575852,52.7861913335963],[-127.79403960922862,52.78566461910912],[-127.79458766803148,52.78513552826472],[-127.7950356257912,52.7847665855817],[-127.79541357010096,52.78445531955581],[-127.79605120935564,52.78426843604889],[-127.79607245311468,52.78408874837552],[-127.79596326430479,52.78392171227385],[-127.7958146048185,52.78376592562225],[-127.79566412829024,52.78361072262761],[-127.79550907543162,52.78345727551093],[-127.79534852553623,52.78330559834985],[-127.79518254870321,52.78315735812021],[-127.79497996503524,52.78302201808855],[-127.7947710427204,52.782890693789284],[-127.79462083213103,52.78274165546992],[-127.79453480122939,52.78257313366683],[-127.79447996656707,52.7823951752908],[-127.79443611360853,52.78221367682751],[-127.79438499235725,52.78203566155837],[-127.79432647831885,52.78185887141363],[-127.79426614707795,52.781682674021994],[-127.79420671369296,52.78150590682585],[-127.79418781200233,52.781321228392095],[-127.79414447898435,52.781152052950134],[-127.79411112807527,52.780977128650626],[-127.79407685637976,52.780802209444566],[-127.79405278706236,52.780627143099345],[-127.7940197692975,52.780438196438624],[-127.79403820426876,52.7802579867636],[-127.79405571879342,52.78007780011192],[-127.79406116022112,52.77989778917211],[-127.79405548830336,52.77971851322576],[-127.7940451452691,52.77953875269748],[-127.7940320251402,52.7793590256669],[-127.79401704935259,52.7791793359729],[-127.79400115267028,52.77899965137821],[-127.79395937325957,52.7788231697593],[-127.79393577056327,52.77863688587125],[-127.79392100695004,52.778462232940946],[-127.79390647868205,52.778293181480606],[-127.79389240071087,52.77811291293108],[-127.79389915784618,52.77791999441955],[-127.79388977470455,52.777740775023275],[-127.79390750033379,52.77756562496104],[-127.79408419998781,52.77741718915925],[-127.79435695794331,52.77725607298291],[-127.79424908705717,52.77711983828235],[-127.79408929747758,52.776963654523755],[-127.79388890827087,52.776835561126404],[-127.79361747188321,52.776762363091954],[-127.79332499555179,52.77671919771051],[-127.79303469614068,52.776683280458066],[-127.79274269068904,52.77665130765889],[-127.79244985946669,52.776621597767296],[-127.79215791671962,52.776590743584094],[-127.79186584226015,52.77655709263059],[-127.79157726026284,52.77651778250267],[-127.79129195323891,52.77646833247642],[-127.7910092271776,52.77641380224451],[-127.79072565150062,52.77636096135842],[-127.79043956677728,52.776314884215815],[-127.79015172053782,52.77627107531239],[-127.78986392182526,52.77622838600273],[-127.78957610003549,52.77618513135363],[-127.78928908229665,52.776139065675956],[-127.7890046689669,52.77608847549719],[-127.78872194833797,52.77603393973788],[-127.78844526252324,52.77596809211666],[-127.78815941734749,52.77592761091166],[-127.78786205769468,52.77592262111656],[-127.78756514324624,52.775928268961216],[-127.78726921941474,52.77593557799525],[-127.78697244537953,52.77594458524758],[-127.78667677082053,52.775957503036885],[-127.78638220366989,52.77597487830579],[-127.78608789407271,52.775998418983],[-127.78579471565529,52.77602699074703],[-127.78550359462332,52.77606000554033],[-127.78521262233158,52.776096945379685],[-127.78492465180862,52.77613888785071],[-127.7846408371728,52.77619141151975],[-127.78436199687118,52.77625170590263],[-127.78408715690671,52.77631922085975],[-127.78381534180967,52.776392303185084],[-127.78354443765151,52.776464806015305],[-127.78326954826052,52.7765311987432],[-127.78298979192779,52.77659206870971],[-127.78270991773714,52.77665013276514],[-127.78242813999782,52.776707104059945],[-127.78214732013605,52.7767646161292],[-127.78186845772716,52.77682490478664],[-127.78159165231578,52.77688964557008],[-127.78131785629415,52.77695994503837],[-127.78104505022407,52.77703191481888],[-127.78077118215595,52.77710052806658],[-127.78049332129562,52.777162484172685],[-127.78021040634427,52.77721441824736],[-127.77992346049835,52.777259130711634],[-127.77963253673595,52.777297176757074],[-127.77934046720151,52.77733019938421],[-127.77904823373883,52.77735929573464],[-127.77875288181095,52.77738059156652],[-127.77846479316163,52.77737542821066],[-127.77815591505637,52.77736162027328],[-127.77788956354169,52.77734323872202],[-127.77761520818562,52.77728854052133],[-127.77741980275482,52.77716763525312],[-127.77726643833594,52.77700796908393],[-127.77710412137866,52.776856294449274],[-127.7768945965415,52.7767305532685],[-127.77666512235152,52.776616324114606],[-127.77643113298616,52.77650496097249],[-127.7762007492801,52.77639130969936],[-127.77598215861826,52.7762707443245],[-127.77578892507738,52.776134665352096],[-127.7756074849421,52.77599168140717],[-127.77541515134652,52.775855032181255],[-127.77519383560777,52.775735627643606],[-127.77496162642336,52.7756225576509],[-127.77474395552997,52.77550142007474],[-127.77456426965539,52.77535616597331],[-127.77437743200448,52.77521718987998],[-127.77413645964367,52.77511658203852],[-127.77386850088375,52.77503656020177],[-127.77359878839016,52.77495936233801],[-127.77333445056406,52.774877042507406],[-127.77306917834817,52.77479473622145],[-127.77280134822041,52.774718073082035],[-127.77252566287567,52.77465330320229],[-127.77224304230434,52.77460040365191],[-127.77195613826349,52.77455597126868],[-127.771666606247,52.7745155059254],[-127.77137709818969,52.77447560450257],[-127.77108844137709,52.77443400351246],[-127.77079712452222,52.774395240037805],[-127.77050681342178,52.77435814666091],[-127.77021728411817,52.774317677734345],[-127.76993391887461,52.77426926797282],[-127.76966615891776,52.77419371773403],[-127.76941509596695,52.77409549469764],[-127.76917040673162,52.77399437691942],[-127.7689275196708,52.77389154545156],[-127.76867476640403,52.77379726542009],[-127.76841400314069,52.77371151773339],[-127.76815327913899,52.773626333875434],[-127.76789249460083,52.77354002038226],[-127.76763000947224,52.77345710395946],[-127.76735342770816,52.77339289164444],[-127.76707239976996,52.77333322973969],[-127.76679840226467,52.77326392815432],[-127.76654253374835,52.77316128746049],[-127.76640916738077,52.773012525278155],[-127.76641463173051,52.77283027417553],[-127.76640896112427,52.77264819977417],[-127.7662622730156,52.772491226037765],[-127.76616443484623,52.77232566918856],[-127.76615785299053,52.77214416448047],[-127.7661559645505,52.77196371006248],[-127.7661586998159,52.771782620982925],[-127.76612813114508,52.77160484057827],[-127.76605102000566,52.77142384217119],[-127.76588645890392,52.77128395232382],[-127.76563115998276,52.77119475328484],[-127.76535754354613,52.77111199059539],[-127.76513184198498,52.77099768256945],[-127.76493133617957,52.77086393762899],[-127.7647254263715,52.77073420172002],[-127.76451862028848,52.77060503496832],[-127.76431546592276,52.77047469189476],[-127.7641159233823,52.77034148711575],[-127.763915400895,52.77020718470389],[-127.76372125164322,52.77006997906545],[-127.76355091973556,52.769924567763056],[-127.76343186472987,52.769762125796674],[-127.76335497620457,52.769586162342684],[-127.76327907829354,52.76941186993113],[-127.76320132489774,52.76923759639733],[-127.7631272839588,52.76906327593832],[-127.76305878748276,52.76888830705143],[-127.7630004672602,52.768712620092394],[-127.76296614821132,52.768533218099066],[-127.76298656468249,52.768352984010555],[-127.76308923255266,52.76818609508906],[-127.76323213587764,52.768027004020425],[-127.76337414065586,52.76786848228316],[-127.76345057203199,52.76769581752704],[-127.76344037547841,52.76751605267708],[-127.76339678537369,52.76733734613556],[-127.76331635169045,52.76716535483495],[-127.76319074879935,52.76700133390976],[-127.7630807969276,52.76683427941521],[-127.76298834271691,52.766663589661526],[-127.76288761591272,52.76649471023479],[-127.76278778736287,52.766325261184335],[-127.7626943539874,52.76615346488518],[-127.7626388301758,52.76597774442945],[-127.76267136174359,52.76579844894767],[-127.76275709343645,52.765626209544386],[-127.76292172859496,52.76547631583546],[-127.76307690025703,52.76532208910015],[-127.76310040756297,52.765194495821326],[-127.76297834428185,52.76498109663655],[-127.76288955972548,52.76480923942715],[-127.76282754953982,52.76463360749681],[-127.7627719809414,52.76445676660765],[-127.76271918828958,52.76427987496797],[-127.76266824350976,52.76410239948027],[-127.76261453176477,52.76392553055368],[-127.7625626755907,52.763748624719966],[-127.76251265241622,52.76357113526463],[-127.76246357326262,52.763394196572136],[-127.76241909404739,52.76321605869976],[-127.76237278302315,52.76303851332827],[-127.76232647238365,52.76286096791785],[-127.76225615695847,52.76268659038668],[-127.76217754586318,52.76251344956172],[-127.76209706549555,52.76234034574215],[-127.76201935306267,52.76216663525701],[-127.76194443181352,52.76199288275472],[-127.7618713055558,52.761817982196106],[-127.76180275636857,52.76164132677557],[-127.76170946767446,52.76147233422901],[-127.76155835108582,52.76131934889635],[-127.76137691425173,52.76117410112302],[-127.76124785650069,52.76101573485129],[-127.76114898198422,52.76084626078139],[-127.7610740288464,52.76067195211385],[-127.7610018435091,52.76049703681136],[-127.76095185351662,52.760320101991155],[-127.7609091933496,52.760140823949214],[-127.7608923926161,52.75995835035814],[-127.76089270538246,52.75978570881292],[-127.76094876999639,52.75961447169543],[-127.7609237201475,52.759434364016776],[-127.76088014880473,52.75925565558937],[-127.76084591529803,52.759077927866414],[-127.76086915785926,52.758898771654074],[-127.76088309288477,52.758718643194335],[-127.76086643129348,52.75853953040643],[-127.7608191505755,52.75836087759599],[-127.76074976048831,52.75818591995251],[-127.7606325811771,52.758022890336775],[-127.76047311620897,52.757869463911064],[-127.7603118745916,52.75771830599344],[-127.76018088371335,52.757557725396275],[-127.76005251007962,52.75741559769316],[-127.75989219623119,52.75724144884226],[-127.75973529197204,52.757105354293955],[-127.75977172188871,52.756908072763615],[-127.75970877807765,52.75673189662613],[-127.75964031535098,52.75655692432224],[-127.7594803036106,52.756299805859236],[-127.75939767191895,52.75629936928644],[-127.75926123121441,52.75636699263081],[-127.75904832702344,52.75649350047786],[-127.7587931866773,52.7565864551031],[-127.75859634116908,52.75672000323458],[-127.75840904734379,52.756860142787495],[-127.75820367402697,52.756989334063164],[-127.75799450526821,52.757116904833914],[-127.75778725139487,52.75724556750255],[-127.75758093968372,52.75737478064019],[-127.75737650480188,52.757504521269176],[-127.7571730577804,52.75763592374547],[-127.75696387478146,52.75776293671772],[-127.75673188301157,52.75787739496203],[-127.75651216355386,52.75799670889935],[-127.75636157148841,52.758149182064926],[-127.75625998298183,52.758319978038145],[-127.75612437331878,52.75861123251762],[-127.7559023875478,52.75874347531193],[-127.75567510247284,52.75885954676755],[-127.75541480997359,52.75887241354499],[-127.75512214116138,52.75879776024269],[-127.75482836194661,52.75878646478655],[-127.75453002884332,52.7587998991342],[-127.75423575118961,52.758821684131746],[-127.75394385706706,52.75885631992379],[-127.75366596082583,52.75891540790733],[-127.75340009166209,52.7589961706308],[-127.75312434794955,52.75906251618755],[-127.75284053853981,52.759113278510455],[-127.75255577059671,52.759163498442994],[-127.75228100550201,52.75923094835607],[-127.75201215766818,52.759307268315695],[-127.75174447391544,52.75938918428745],[-127.7514759603563,52.75947334509001],[-127.7512303146683,52.75957230177943],[-127.75104162771207,52.759701795439994],[-127.75092512567869,52.7598716880218],[-127.75083475004925,52.76004455324338],[-127.75069438659712,52.76037959103447],[-127.75047501503806,52.76025899978783],[-127.7502474862306,52.760143005034244],[-127.75001093443707,52.76003331462619],[-127.74974444345466,52.75994032987596],[-127.74945447899483,52.75984095983718],[-127.7491738665647,52.759766120808074],[-127.74893926949447,52.759749443266784],[-127.74883326404347,52.759903482824136],[-127.74876638965942,52.760106819063544],[-127.7487014803343,52.760289956638594],[-127.74851148076388,52.76041049748101],[-127.74824188183528,52.76049130378051],[-127.74796565842442,52.760568854158535],[-127.7477055633946,52.76065512252156],[-127.74744544459423,52.76074083461917],[-127.74718342357035,52.76082545346106],[-127.7469213330007,52.760908395699374],[-127.74665832900969,52.76099190696524],[-127.74639724000552,52.76107651010163],[-127.74613618089873,52.76116223320282],[-127.7458711959553,52.76124240911786],[-127.74560033134502,52.761315380917814],[-127.74532460632041,52.761382828357],[-127.74504580720517,52.76144302984084],[-127.74476099153333,52.761492666115664],[-127.74448024403324,52.76155065320765],[-127.7442073828733,52.761620297359904],[-127.74393455834314,52.76169049633693],[-127.74366364187759,52.76176234331058],[-127.74339185027874,52.761835332635464],[-127.74312099252225,52.761908298457975],[-127.7428510771626,52.761981814614394],[-127.7425802030768,52.76205478836378],[-127.74230936556434,52.762128316947276],[-127.74203752329292,52.762200173821725],[-127.74176662342153,52.76227258103433],[-127.74149578312958,52.762346107727744],[-127.74123568723486,52.76243292628261],[-127.74098720243236,52.76253134686378],[-127.74076363591375,52.76264901001657],[-127.7405553908334,52.76277821131866],[-127.74037264258435,52.76291825272336],[-127.74024845418718,52.763082642652144],[-127.74007996916058,52.76323087486325],[-127.74005277405655,52.76340671178721],[-127.7400934492464,52.76358491320097],[-127.74009520429195,52.763764804373146],[-127.74010346145637,52.76394460797303],[-127.74012095848856,52.76412370940446],[-127.74014126901922,52.76430332506894],[-127.74016251527897,52.764482935788756],[-127.74016331282658,52.764662285052744],[-127.74015487006312,52.76484232748246],[-127.7401473249611,52.76502180054487],[-127.74014908065736,52.765201700508776],[-127.74015363494676,52.76538211492782],[-127.74015912449163,52.76556251544279],[-127.74016832527722,52.76574286084634],[-127.74018304733235,52.765922003263874],[-127.7402070019506,52.76609988760279],[-127.7403324453599,52.766262248262464],[-127.74056923495542,52.76637755938926],[-127.74071894052346,52.76651994629172],[-127.74073946026178,52.76670460752634],[-127.74088773083963,52.76685766955209],[-127.74104346257216,52.767011176602274],[-127.74113035384488,52.76718419798457],[-127.7411088192102,52.76736220163302],[-127.74110306468785,52.76753996192781],[-127.74119550167994,52.76771234484049],[-127.741206540348,52.76789210666452],[-127.74109247096006,52.76805466050103],[-127.74083343470997,52.768145389572275],[-127.74054634869718,52.76818608033094],[-127.7402541743888,52.768215644834314],[-127.73998125564361,52.7682847139803],[-127.73971335540195,52.768363232052835],[-127.73943851867391,52.76843120735993],[-127.739163627701,52.76849750579007],[-127.73889567903117,52.76857490165642],[-127.73863646038708,52.768661700437185],[-127.73838406221671,52.76875624451296],[-127.73813551111414,52.768854093996154],[-127.73788888314303,52.768953600409795],[-127.73764227662112,52.76905366198068],[-127.7373986192433,52.76915759832928],[-127.7371569156368,52.769264312187104],[-127.73690730169194,52.769358811690964],[-127.73662629488341,52.769412298585976],[-127.73633149242181,52.76944581107933],[-127.73609335949185,52.76954910677392],[-127.73593704104664,52.76970051465092],[-127.73586157487898,52.76987707323181],[-127.73577570369547,52.770048736793996],[-127.7358107315368,52.77022533636901],[-127.73588106542535,52.770402534183035],[-127.73597158621774,52.77057382803931],[-127.73606208479359,52.77074455716188],[-127.73608797182868,52.770924654951905],[-127.73606274006626,52.77110326765856],[-127.73600495536618,52.771280685325905],[-127.73590506462229,52.77145031437319],[-127.73578741334259,52.77161684324619],[-127.73573040268354,52.77179032124841],[-127.73577699918826,52.77197739439893],[-127.73574301994626,52.77214661237383],[-127.73559045576305,52.77229964080825],[-127.73539009506013,52.77244161045335],[-127.73515999600264,52.77255992283053],[-127.73490711219756,52.77264325592366],[-127.73462522880527,52.77269842753632],[-127.73432987602153,52.772742031696],[-127.7340412382328,52.772791140783134],[-127.73375062233289,52.7728369154038],[-127.73346193778328,52.772884902736045],[-127.73319555741409,52.772956100603366],[-127.73295954075807,52.77306608399884],[-127.73275990651553,52.77320355416872],[-127.73262425074736,52.7733613775185],[-127.73253955268912,52.773539746671396],[-127.7324141407556,52.77369853934637],[-127.73220847203586,52.7738243316268],[-127.7319639979761,52.77393219579833],[-127.73170495980338,52.77402458058034],[-127.7314397997445,52.77410303822846],[-127.73116301157715,52.774169900963535],[-127.73088032924628,52.77422844705163],[-127.73059731326494,52.77427914142907],[-127.73030085649435,52.774295847567046],[-127.7298628143562,52.774370135651324],[-127.72988988882943,52.77451153767784],[-127.73002141319354,52.77466373855027],[-127.73025194496881,52.77478476745985],[-127.73032831300438,52.774950668848426],[-127.73033009565101,52.775132243792555],[-127.73032807552504,52.775311632842055],[-127.73007243578253,52.775235814348335],[-127.72976856685682,52.775207223610934],[-127.72951968290722,52.77525237172315],[-127.72921164936793,52.775327537474894],[-127.72893972395775,52.77539992800087],[-127.72873407952301,52.77548087364147],[-127.72858263441498,52.775662465417156],[-127.7285219676787,52.77583823482852],[-127.72852273906341,52.776018138514345],[-127.72852256736664,52.776197500068164],[-127.72843294186603,52.77636921226202],[-127.72829014686621,52.77655796692566],[-127.72813098358577,52.77670940484483],[-127.7278852220846,52.776808866955996],[-127.72761527700517,52.77688458796678],[-127.7273324664098,52.776940884966905],[-127.72704853045775,52.776992148895715],[-127.72675944007148,52.77703059213046],[-127.72647147371042,52.777074067044424],[-127.72617747860042,52.77708344420968],[-127.72588485608568,52.777080460552135],[-127.72564313419642,52.77702741242566],[-127.72533496979608,52.77700784123991],[-127.72500840877754,52.77706141331903],[-127.72472152762357,52.77708581108305],[-127.72441459080461,52.77711947100821],[-127.72412045135015,52.77712491717431],[-127.72382621247932,52.77715109791863],[-127.72353235185466,52.77716382943316],[-127.72324886831103,52.777134366059904],[-127.72295576559422,52.777096631428186],[-127.72264177386198,52.77711638244979],[-127.72234659866776,52.77714257322484],[-127.7220868572133,52.777149195008086],[-127.72174350030562,52.777154793017964],[-127.72145539257245,52.77719489462978],[-127.72118050760061,52.77726339117484],[-127.72088768302892,52.77730187463587],[-127.72059504908306,52.77732186270994],[-127.72030445786906,52.77730034345773],[-127.71999637663475,52.77728244300393],[-127.71972500826728,52.77723093861908],[-127.71944260173406,52.77727431460561],[-127.71919308968101,52.777373813116505],[-127.71891609570463,52.777436165271986],[-127.71862151365707,52.77745393497169],[-127.71833557253714,52.77750184400764],[-127.7180598125057,52.77757202294474],[-127.71789752491561,52.77771621012074],[-127.71777971845228,52.77788103526446],[-127.71768327082059,52.77797661109889],[-127.71764806631681,52.77811725030498],[-127.71758495443251,52.778279597023136],[-127.71748900092057,52.77838749628368],[-127.71734298856755,52.77854377503653],[-127.7171866459968,52.77869739789451],[-127.71701218068132,52.77883895500472],[-127.71681507977075,52.77897187532066],[-127.71663618145489,52.77911853666984],[-127.716408298565,52.7792250031581],[-127.71614218799232,52.77930456893337],[-127.7158844215669,52.77938400302539],[-127.71565760590131,52.77949381533209],[-127.71536677491632,52.779536183425876],[-127.71507899472432,52.77953871564485],[-127.71481695157556,52.77962717776557],[-127.71459702592801,52.77974697606502],[-127.71440091647689,52.779881563540165],[-127.71428499174854,52.78004747813155],[-127.71420274858292,52.780219635120126],[-127.71412054935006,52.78039290339716],[-127.71400552055292,52.780558248516485],[-127.71388017664184,52.78072094626575],[-127.71376708439304,52.78088793978063],[-127.71361445559543,52.781042068032846],[-127.71338662214175,52.78115020452664],[-127.7130928209105,52.78118812619764],[-127.7128250959092,52.781111890865915],[-127.71263119597333,52.7809779626407],[-127.71245084477839,52.780834303407936],[-127.7122777854909,52.7806871834484],[-127.71211020600406,52.780537732297695],[-127.71195805442194,52.78037909678202],[-127.71180143515204,52.78022500125412],[-127.71161863499202,52.78008978837344],[-127.71135734139924,52.780011769944906],[-127.71107247885756,52.779948111628315],[-127.71084201842893,52.779828165761224],[-127.71062031403383,52.779764696950785],[-127.71039420275258,52.779683921231346],[-127.71007984743628,52.77960275495183],[-127.7100037997586,52.77951249920014],[-127.7098828576533,52.77932145341385],[-127.70988679776357,52.779141482445205],[-127.70987682347709,52.778961705374975],[-127.70985929776884,52.77877924041339],[-127.7098030990284,52.77860463019702],[-127.70969493544335,52.778431333593524],[-127.7095462658901,52.778266474302285],[-127.7093446714575,52.77814834669803],[-127.709073198203,52.77809401238693],[-127.70876230171605,52.77807555847303],[-127.70845912151353,52.77806428220282],[-127.70814315538135,52.77808178099134],[-127.70783894754418,52.77809125181814],[-127.70758608286751,52.778037764063264],[-127.70737623924803,52.77792199524514],[-127.70719386118985,52.777773317652894],[-127.7070322631202,52.777610329460124],[-127.70688660727437,52.777451027951656],[-127.70679804463614,52.77727968541368],[-127.70672600868576,52.777103618318506],[-127.70661349707154,52.776937108134625],[-127.7064872072804,52.77677416130585],[-127.70634806740546,52.77661532029396],[-127.70619975283765,52.77645886355125],[-127.70604225578845,52.776305338198554],[-127.70586654933686,52.77616048044935],[-127.70562521888536,52.7760468525826],[-127.70537798194353,52.77594787397094],[-127.7053891373344,52.77578516887748],[-127.7054884736357,52.775598761514],[-127.7054094467897,52.77543344906403],[-127.70523949303829,52.775292990649376],[-127.70493492923502,52.77522343442686],[-127.70462557637481,52.77519654449148],[-127.7043237152396,52.77517123081481],[-127.70402802561708,52.77516095549465],[-127.7037330284564,52.77516804015409],[-127.70343668904648,52.77518803938038],[-127.70315385290972,52.77519719684683],[-127.70284807598853,52.77528346975368],[-127.70255917863426,52.77535044001578],[-127.70224074152745,52.7753517003119],[-127.70198003142886,52.77531064543286],[-127.70168433974895,52.775276823560425],[-127.70138847735463,52.775239075497346],[-127.70109482110402,52.775209706553106],[-127.70080378712888,52.77519992054552],[-127.70051135868495,52.7752248955712],[-127.70021762494005,52.77528689021741],[-127.69995177586578,52.775373132522326],[-127.69977650927581,52.775495618567966],[-127.69975908975557,52.77568812419194],[-127.69975045246736,52.77586760669319],[-127.69974832603732,52.77604755079986],[-127.6997903892226,52.77621789542648],[-127.69983245302286,52.77641177168328],[-127.69988520073092,52.77659372719248],[-127.6997932472328,52.7767800222806],[-127.69977887024567,52.77693212827428],[-127.6997538172987,52.777119130480415],[-127.69979635005028,52.77732477464354],[-127.69977846103988,52.77748197142375],[-127.6997279416246,52.77765926282847],[-127.69967276637907,52.77783605669385],[-127.69961198489568,52.778012366787685],[-127.69954374889164,52.7781876728491],[-127.69946520646741,52.7783608772785],[-127.699370767225,52.77853151402972],[-127.69924552932966,52.7786981130432],[-127.69911002215807,52.778863183698434],[-127.69898753669307,52.77902917751689],[-127.69890136531656,52.77919745201984],[-127.69887022635746,52.77937165506756],[-127.69888292373234,52.7795508279305],[-127.69892268526115,52.77973353660082],[-127.69897827678736,52.779917127912256],[-127.6990385392916,52.780101216481874],[-127.6990903305188,52.78028262977823],[-127.69912338095453,52.78045982168479],[-127.6991236945972,52.78063132698348],[-127.6990612956447,52.78079028912117],[-127.69886213994319,52.780919844987714],[-127.69860402733437,52.78103792367883],[-127.69837966807208,52.78116448078209],[-127.6981797214493,52.781297409792685],[-127.69797978117661,52.781430903314025],[-127.69778455447197,52.781566005209754],[-127.69759502905444,52.781704387156566],[-127.69741967693699,52.7818487245198],[-127.69727472266648,52.78201056626986],[-127.69713636057391,52.78217454539772],[-127.69697223241606,52.78232097049473],[-127.69675573306247,52.782435079738875],[-127.69650870752699,52.78252888759083],[-127.6962435490575,52.78261063539201],[-127.69596889985289,52.782686905971104],[-127.69569423517257,52.78276318508072],[-127.69542815257603,52.78284493537647],[-127.69516779386848,52.7829305302156],[-127.69490747857179,52.78301724480556],[-127.69464809783399,52.7831039452936],[-127.69438778042587,52.78319065872043],[-127.69411322059014,52.78326973045544],[-127.69382731411052,52.783343360528576],[-127.69355275225617,52.78342243094385],[-127.69331233001068,52.783518943388],[-127.69312876092076,52.7836443448824],[-127.69300869769167,52.78380189360986],[-127.69293031844437,52.783980139009444],[-127.6928717492669,52.784165945205714],[-127.69280922985503,52.78434620348819],[-127.69274744558967,52.78452140223099],[-127.69269411142197,52.78469872987364],[-127.69264820981448,52.78487650620133],[-127.69260697843676,52.78505477108875],[-127.69257319498614,52.7852334934236],[-127.69253433353053,52.7854010792711],[-127.6924997249933,52.78558262035958],[-127.69246510863984,52.7857635965545],[-127.69244024798311,52.78595676264185],[-127.69240136297469,52.78612378371882],[-127.69232181929833,52.78629644028299],[-127.69224135414116,52.786469110059585],[-127.69215905416844,52.78664237119365],[-127.69207581031331,52.786815080887784],[-127.69199165209697,52.78698835968607],[-127.6919065354802,52.78716109621744],[-127.69182049731845,52.78733384595019],[-127.69173351559016,52.78750605319788],[-127.69164468373631,52.787678843036886],[-127.69155488592476,52.787850525738435],[-127.69146416651984,52.78802222163186],[-127.69137251065752,52.78819393092914],[-127.6912789750877,52.78836510225954],[-127.6911854167646,52.7885357178122],[-127.69108997906572,52.78870580435502],[-127.69099360450882,52.788875895328935],[-127.69089626429026,52.789044888112166],[-127.69079706629857,52.789213898596536],[-127.69069690262526,52.789381810884315],[-127.69059578005512,52.789549171908824],[-127.69045229771152,52.7897025706964],[-127.69022779496659,52.78982687061665],[-127.68999744002436,52.789944528580946],[-127.68977378893288,52.79006712936797],[-127.68954054320982,52.79018203008593],[-127.68929059078522,52.790273621610275],[-127.68901539999474,52.790338116754434],[-127.68872195694573,52.790387180456115],[-127.68842214586316,52.790416157649226],[-127.68812872068911,52.79041870390305],[-127.68784678663769,52.7903829621993],[-127.68757090786107,52.79031239167249],[-127.68729653224081,52.790232822174524],[-127.68701718518281,52.79016846109428],[-127.68672670051176,52.790151340156875],[-127.68642640310071,52.790167988609255],[-127.68612975267199,52.79018290689825],[-127.6858330574587,52.79019669514266],[-127.68554069444583,52.79017904226898],[-127.68525203017795,52.79013723025326],[-127.68496406639004,52.79008980263712],[-127.68467370852004,52.790052497408695],[-127.68437524633416,52.79002146867798],[-127.68407648250117,52.79000614602677],[-127.68379912788097,52.79003927285943],[-127.68355343664179,52.79014536339997],[-127.68329219929367,52.790233750002194],[-127.68301634367988,52.79030496628737],[-127.68273675149108,52.79037567054414],[-127.68245606829953,52.79044247086999],[-127.68217515655644,52.79050311295907],[-127.68189571067205,52.790554200652835],[-127.68162094461216,52.79058223630514],[-127.68136138295893,52.79047778842964],[-127.6810987851606,52.79039018901673],[-127.68083352859044,52.79030599898876],[-127.68055664246668,52.79025671594501],[-127.68025658451327,52.79027951492004],[-127.67996516602109,52.79026239064703],[-127.67968181237129,52.790213763149886],[-127.67939909375572,52.79015783512855],[-127.67911897765757,52.79009739428832],[-127.67883878877335,52.790034702932694],[-127.67855952198147,52.78997200668964],[-127.67828451590684,52.78989971614611],[-127.67801279880109,52.78981616827143],[-127.67773729166842,52.78975452831276],[-127.67745155798981,52.78974012343982],[-127.6771594681844,52.78975270293206],[-127.67686330127266,52.789779921482314],[-127.67656639595006,52.789812189687844],[-127.67627022789618,52.78983939777724],[-127.67597241330853,52.78984813721984],[-127.67566699385796,52.78982896045127],[-127.67536734267752,52.78981474932357],[-127.6750879940385,52.78984452107776],[-127.67483687930232,52.78993105815989],[-127.6745999243377,52.79004709357639],[-127.67436395506861,52.790164800345444],[-127.67411301264774,52.79025581720398],[-127.67381164323677,52.790292625913594],[-127.67352340691932,52.790261432718715],[-127.6732805551947,52.790156163885605],[-127.67309097025819,52.79001145710876],[-127.6729722624541,52.78985005465496],[-127.67288645609662,52.78967528729018],[-127.67279424727836,52.78950285308514],[-127.67268550473565,52.78933513842698],[-127.67257309360664,52.78916859693667],[-127.6724625400045,52.789002028847726],[-127.67235749121545,52.78883369623463],[-127.67226445319002,52.78866351532409],[-127.67218153220811,52.7884909481741],[-127.67210599451795,52.7883171547386],[-127.67203229230137,52.78814277908091],[-127.67195951121211,52.78796838126768],[-127.671882118751,52.787794614093976],[-127.67180105759098,52.787622020113595],[-127.67171997533607,52.78744887036955],[-127.67163891548721,52.7872762762382],[-127.6715697121826,52.78709790824678],[-127.67151696232581,52.78691313593573],[-127.67143865272644,52.78673938147322],[-127.67129096383296,52.78659688161592],[-127.67106023548313,52.786492000526216],[-127.67078755257377,52.78640676407244],[-127.67051666173603,52.78631982450878],[-127.67026403063622,52.78622477755058],[-127.67001323546059,52.786129147919276],[-127.66976870560022,52.78602725877833],[-127.66953307224188,52.785915709819946],[-127.66933832164204,52.78578060323943],[-127.66920328287543,52.78560485679676],[-127.66902141911925,52.785490299650846],[-127.66872540788452,52.7855208587571],[-127.66842378442422,52.785526826766],[-127.6681377052016,52.785478775609604],[-127.66784974807602,52.78543018550189],[-127.66756172582137,52.7853799096912],[-127.66728973257148,52.78533557510555],[-127.6670139903617,52.78529073718297],[-127.6666817861416,52.785369442021114],[-127.6663854897901,52.78539270851846],[-127.6660891273898,52.785414289271955],[-127.66579329262531,52.78542578207653],[-127.66549955056115,52.78541930003803],[-127.66520783657464,52.78539317610139],[-127.66491658540659,52.785355279246716],[-127.6646252470812,52.78531513201889],[-127.66433325756068,52.78528228405712],[-127.6640413269881,52.78525055550054],[-127.66374852681098,52.785220524486526],[-127.66345494391032,52.78519442273336],[-127.66315818672618,52.78518181681218],[-127.66285223639267,52.78519567861279],[-127.66256026598064,52.785186931167004],[-127.6624015285948,52.78518918121242],[-127.6620781215325,52.784993112508324],[-127.66184954080101,52.78487080380516],[-127.66159434136475,52.78478081471977],[-127.66131692516709,52.784716365920325],[-127.66104477423696,52.78464399516994],[-127.66075265961136,52.784559575905696],[-127.66051572442453,52.784461488122346],[-127.66030228554001,52.78434624385293],[-127.660016071435,52.784318352318735],[-127.65971254852234,52.7843226479627],[-127.65941658872569,52.78430665850123],[-127.65912340626797,52.7842665238486],[-127.65884239318528,52.784204927045934],[-127.65859180910022,52.78411374529421],[-127.65835365607583,52.784007823712514],[-127.65812446006785,52.783893363328154],[-127.65790061716281,52.78377322202558],[-127.65768040141361,52.7836507871143],[-127.6574638778598,52.783527734653404],[-127.65725823359656,52.78339781126744],[-127.65708952304098,52.7832623168746],[-127.65687995893059,52.78310329425197],[-127.65667542632545,52.783001934195234],[-127.65640773381324,52.782900344890614],[-127.65615513278165,52.78280471164562],[-127.65592778361481,52.78268965600887],[-127.65572022636343,52.78255807106288],[-127.65550292383898,52.78243839790243],[-127.65522740994689,52.782374464091866],[-127.65479866233514,52.782358660271456],[-127.65464429173792,52.7823770878064],[-127.65441084150534,52.782487993541935],[-127.65420817685451,52.78262648858752],[-127.65406650876794,52.78278150236763],[-127.65395416332811,52.78295010994678],[-127.65381543692544,52.78310900075529],[-127.65371884187714,52.783324466277136],[-127.65355411162682,52.7834596182454],[-127.65326771056527,52.78349840564973],[-127.65296133588154,52.7835010471442],[-127.65263218894901,52.78346700808819],[-127.65248945716911,52.783354681368415],[-127.65248744551346,52.783134445575016],[-127.65251691993221,52.78296028146431],[-127.65253766126303,52.78275204660606],[-127.65252034681075,52.78259255821263],[-127.6525186993288,52.78240593702564],[-127.65251039562627,52.782215490728085],[-127.65248615824876,52.78204489021881],[-127.6524985995167,52.78186255429225],[-127.65248890976346,52.781683902033535],[-127.652391361521,52.78151489042339],[-127.65215966292499,52.78140717964004],[-127.6518822395428,52.781341588036405],[-127.65159409038144,52.781286791484284],[-127.65131067716337,52.78123417843711],[-127.65102468889354,52.7811871968022],[-127.6507395139267,52.781137405111224],[-127.65045610275193,52.78108478999401],[-127.65017177815744,52.781032743049266],[-127.64988747571834,52.78098125110814],[-127.64960144778877,52.780933154606295],[-127.64931465760137,52.78088954300889],[-127.64902447331619,52.78085383413308],[-127.64873177852047,52.78082544159846],[-127.64843746541523,52.78080323188315],[-127.6481325900401,52.78077221116014],[-127.64791764731021,52.78078532035514],[-127.64747324327865,52.78084424935199],[-127.6471807359037,52.78079679401379],[-127.64696058869738,52.780723095689886],[-127.64668238657407,52.78066086574851],[-127.64641291233973,52.78058450511321],[-127.64612257362292,52.780520758326226],[-127.64584841053902,52.7804668814194],[-127.64557516152402,52.780388885941505],[-127.64530843934732,52.780311354262786],[-127.64503832931557,52.78024228118953],[-127.64476006859107,52.78017837061938],[-127.6444871684398,52.78010933542706],[-127.64422145040199,52.78003347315626],[-127.64397542590385,52.77993883390912],[-127.6437652280701,52.77980950721368],[-127.64355680843796,52.77967847827181],[-127.64331157234129,52.7795799077366],[-127.64310690395052,52.77944938144009],[-127.64285130244042,52.77934702735273],[-127.64257822231265,52.779297046626],[-127.6422937009342,52.77935988636669],[-127.64206399070672,52.779471836110545],[-127.64185635085008,52.77960253268004],[-127.64162134905023,52.77972183733621],[-127.6413376846915,52.77973477555363],[-127.64104197875209,52.77972434146493],[-127.64074304433562,52.77970218622567],[-127.64044571484771,52.77967383802464],[-127.64015104853029,52.77964208895367],[-127.63985947139973,52.779594037576466],[-127.63960639326098,52.77950846457458],[-127.63939540420212,52.779382504162605],[-127.63919783626635,52.7792434602777],[-127.63898499347916,52.779117525052385],[-127.63873623058359,52.77902347823065],[-127.63846577424668,52.778944871407205],[-127.6381829264187,52.77888212151603],[-127.637896989981,52.7788356724621],[-127.63760457409138,52.77881397427074],[-127.6373030730897,52.77882154709791],[-127.63700979775246,52.778850302513725],[-127.63673249026941,52.77893208428072],[-127.6364626708829,52.77901543782992],[-127.6361918232015,52.77899903991496],[-127.63592227076968,52.7789198497187],[-127.6356529256445,52.77882159975317],[-127.6353805339101,52.778740762015566],[-127.63510179178213,52.7787121411785],[-127.63481461280448,52.77873016148893],[-127.63452289334977,52.77877513836986],[-127.6342317736467,52.77883580851491],[-127.63394820626766,52.778899726595455],[-127.63367795320985,52.77897187014871],[-127.63341852246069,52.779060120667204],[-127.63315814835494,52.779147818767775],[-127.63288791363463,52.77922051618717],[-127.63260988921242,52.779283797777104],[-127.63232889453748,52.77934208022279],[-127.63204487170186,52.77939423438793],[-127.63175877794,52.77944081189444],[-127.63146967780128,52.77948182574323],[-127.63117852179677,52.77951726269276],[-127.63088619433574,52.77954654546894],[-127.63058959835097,52.7795613234206],[-127.63029869542167,52.77953061833499],[-127.63001943998954,52.77946443608945],[-127.62973707162716,52.779413998778274],[-127.62944324820029,52.77940406534763],[-127.62914537534225,52.7794098897642],[-127.62884736756853,52.77941178747415],[-127.62855239525649,52.77939626300284],[-127.62825895298792,52.77937175788525],[-127.6279662394616,52.7793421931454],[-127.62767436166901,52.77931037417303],[-127.62738249916117,52.77927855426757],[-127.62709213711624,52.77923774519448],[-127.62680273233858,52.77919747812254],[-127.6265093777521,52.77917520934783],[-127.62620717500904,52.77916482806871],[-127.62590752576719,52.77917234585985],[-127.62562953786365,52.779212626239605],[-127.62539421599656,52.779324620539796],[-127.62517725939847,52.7794554160265],[-127.62495096065867,52.77956055862365],[-127.62466210699863,52.77958361693453],[-127.62436653564728,52.77960116281778],[-127.62406707486063,52.779613722015974],[-127.62376644394779,52.779620126929075],[-127.62346647819228,52.77961979615057],[-127.62316998441993,52.779612690837695],[-127.62287946953141,52.779592050615946],[-127.62259879446698,52.779537080021996],[-127.62232127988692,52.779467501638884],[-127.62203857993579,52.77940807392719],[-127.62175097140249,52.779366092656474],[-127.62146072062349,52.7793280750346],[-127.62116963434958,52.77929230118579],[-127.6208776707081,52.77925766866613],[-127.62058660682274,52.77922245803209],[-127.62029731468523,52.77918498029939],[-127.6200088162988,52.77914412804102],[-127.61972383342552,52.77909762176875],[-127.61944653839845,52.77903362942247],[-127.61917626594986,52.7789588949171],[-127.6189042231173,52.778886426140254],[-127.61862684612878,52.77882020008068],[-127.61835024197639,52.77875003489747],[-127.61807198813472,52.77868493162782],[-127.6177886821061,52.778633913771465],[-127.61750062888748,52.77860425877719],[-127.6172010544985,52.778589334320635],[-127.61689736253591,52.77858848223762],[-127.61659895419376,52.778604361816406],[-127.61631333951979,52.77863912941629],[-127.61604760674838,52.778708927766075],[-127.6157980091453,52.77881213167231],[-127.6155590146068,52.77892583348822],[-127.61532832248196,52.7790383084479],[-127.61510624353186,52.77915738103151],[-127.61491234644572,52.77928504164291],[-127.61470359771154,52.779412897433616],[-127.61448949095242,52.77954644030107],[-127.61417648944935,52.77959390106844],[-127.61396393031877,52.7794735223047],[-127.61374394731871,52.77935324532201],[-127.61345063057985,52.779307403527916],[-127.6131605194007,52.779322039160064],[-127.61286208854804,52.77931269259094],[-127.61256388089954,52.77928485103307],[-127.61231467630031,52.77927594711151],[-127.61206551805091,52.77931748468646],[-127.61187301783599,52.77945800733946],[-127.61176601991613,52.77962481327444],[-127.61168536863181,52.77980078953634],[-127.61161600255743,52.77998053842622],[-127.6115466355613,52.78016027829102],[-127.61146877425416,52.780336215976746],[-127.61137011890145,52.78050291573411],[-127.61124129028808,52.78065713456597],[-127.61106648710889,52.78079908944608],[-127.61084295360678,52.78092939194498],[-127.61058906235048,52.78104273175718],[-127.61032414996238,52.78113492435092],[-127.61006470634089,52.78119957358657],[-127.60979881198242,52.78116679746355],[-127.60951551929098,52.781066993807336],[-127.60923009202938,52.78100870273005],[-127.60894131745988,52.78096053643348],[-127.60864949983153,52.78092979031564],[-127.60835588214576,52.780925414867035],[-127.60805658214494,52.78094297055092],[-127.60776460860005,52.780982278975486],[-127.60749020604888,52.7810443296795],[-127.6072248172253,52.78112363532878],[-127.60696533969325,52.78121238290793],[-127.60670783746995,52.78130390070887],[-127.60644835776928,52.78139264713389],[-127.6067138558019,52.781167627960286],[-127.60678377136067,52.78100189118471],[-127.60677340040635,52.78082492397493],[-127.60673036782796,52.780643920453805],[-127.60668822906086,52.78046178370974],[-127.60666571575896,52.78028274089872],[-127.60664967104638,52.78010304448817],[-127.60663454752857,52.77992334440336],[-127.60661758236316,52.779743660560165],[-127.60660712813223,52.77956445245287],[-127.60662072126016,52.779382672983864],[-127.60663433550874,52.77920145815752],[-127.60659624816151,52.779028233298],[-127.60644364224166,52.77887170552247],[-127.6062809895156,52.77871980791669],[-127.60611383080457,52.77857132567227],[-127.60593935379096,52.778425750262485],[-127.60575760062554,52.77828420202557],[-127.60559863741756,52.77813112304389],[-127.60544424546755,52.77797630432796],[-127.60530919018763,52.777817301872226],[-127.60524516477719,52.777645552530565],[-127.60523461140446,52.77746353864696],[-127.60520098989743,52.77728521232558],[-127.60515715195068,52.7771070168569],[-127.60511425624334,52.7769293734161],[-127.6050843058843,52.77674987581293],[-127.60505803201575,52.77656976290428],[-127.60499580232467,52.77639630284111],[-127.60485334400933,52.7762374011145],[-127.60476233820495,52.77606433473766],[-127.60463750760347,52.77590519149769],[-127.6044466780577,52.775768805187596],[-127.60424214666963,52.77563821076757],[-127.60403482494904,52.77550765416668],[-127.60383572334574,52.7753736219298],[-127.60365676050075,52.775231467304486],[-127.6035042841996,52.77507774072976],[-127.60336549075663,52.77491765716182],[-127.60322582011926,52.77475871533648],[-127.60307883118044,52.77460267128135],[-127.60293092270933,52.77444663961106],[-127.60278942002137,52.774288278295074],[-127.6026561579337,52.77412699731909],[-127.60252282799128,52.77396348418614],[-127.6024217829539,52.773794480940346],[-127.6023836543063,52.77361956905685],[-127.60238437660698,52.773440772338326],[-127.60240266036666,52.773260049695345],[-127.60242279364313,52.77307873679155],[-127.60242622914024,52.772898217019595],[-127.60241208219009,52.77271905846533],[-127.6023895700424,52.772539458220265],[-127.60235871963619,52.772360527894875],[-127.60231953107468,52.772182267482734],[-127.60227295504518,52.77200467295315],[-127.60221525004889,52.77182779542658],[-127.60214371709496,52.77165333974256],[-127.60205742162307,52.77148133658374],[-127.60196284544948,52.771311123432845],[-127.6018627294329,52.77114210683408],[-127.60176167250907,52.77097253803701],[-127.60166338683422,52.770802375296554],[-127.60157248984675,52.77063155554515],[-127.60149360112435,52.770458885780286],[-127.60143036947468,52.77028263924269],[-127.60137638169999,52.7701057014421],[-127.6013233089026,52.76992819511372],[-127.60126471096001,52.76975188515809],[-127.60119137183044,52.769578583342955],[-127.60107472195065,52.769413710625365],[-127.6009359563386,52.769253632550736],[-127.60080181760742,52.769092926174956],[-127.60066127586902,52.7689345489643],[-127.60042272131395,52.768811694108905],[-127.60026081185465,52.76865305211245],[-127.60015036229328,52.768480247165805],[-127.6001059550807,52.76831103354343],[-127.6001241352648,52.7681269493069],[-127.60009963832985,52.76794400351072],[-127.6000005592238,52.76780187385654],[-127.5999838340218,52.767776885172104],[-127.59992622180808,52.767601681913874],[-127.59989816149137,52.76742271247456],[-127.59987658281351,52.76724308959862],[-127.59987078587656,52.767063260301974],[-127.59987979886942,52.766882663918345],[-127.59985179601034,52.76670481456126],[-127.5997729003481,52.76653157852166],[-127.59969029423935,52.76635840201576],[-127.59970002103854,52.76629605190832],[-127.59982583353893,52.76620970759759],[-127.59989047850735,52.76615109182508],[-127.59991608011329,52.766041453966054],[-127.60000130423911,52.76588784117973],[-127.6000099742653,52.765871464539785],[-127.60007211166032,52.765696312652295],[-127.60008950227724,52.76551615772295],[-127.60002818764164,52.76534156978531],[-127.60000070062905,52.76532625158275],[-127.59980920990759,52.765220132408665],[-127.59962198703495,52.76507920511811],[-127.59949528893863,52.764918395524326],[-127.59944594167588,52.764740837104014],[-127.59943639964536,52.764560493655544],[-127.59939618423957,52.76437888276398],[-127.59937769390528,52.76420707300047],[-127.59939965781432,52.764049839688745],[-127.59961894238606,52.76388206730298],[-127.59976239114994,52.76372149017125],[-127.59985165556138,52.76355212869372],[-127.59983297484877,52.76337527270381],[-127.59978444364653,52.763194905208785],[-127.59976009165473,52.76301531969552],[-127.59974316839157,52.7628361977419],[-127.59972809486332,52.762656494529345],[-127.59971486182428,52.762476757211154],[-127.59970256442138,52.762297016070974],[-127.59969305749851,52.762117227861225],[-127.59968449212887,52.761937991743444],[-127.59968147256413,52.761758123928644],[-127.59968216369583,52.761578196486084],[-127.5996828551572,52.7613982779854],[-127.59968261111152,52.76121836326239],[-127.59967775692557,52.76103907639468],[-127.59965989367605,52.760859411044386],[-127.59962995634598,52.76067934548068],[-127.59961025878997,52.76050026111207],[-127.59961653768143,52.760320822233446],[-127.59964501874326,52.760139394422964],[-127.59969493462476,52.759960480931156],[-127.599778703089,52.759792879912496],[-127.60000053521846,52.759668788623046],[-127.60035028291577,52.759440943292276],[-127.60059244584842,52.75933954839144],[-127.60084319532862,52.75924420545505],[-127.60109873666958,52.75915272434589],[-127.60135523883326,52.75906234152409],[-127.60161268134516,52.75897251023538],[-127.60186913968616,52.75888101485584],[-127.60212083957161,52.7587862120895],[-127.60236772480032,52.75868699970999],[-127.6026182984535,52.75858717139348],[-127.60287258167084,52.75848729179043],[-127.60312494513455,52.75838575194582],[-127.6033696761565,52.758278720107434],[-127.60359837548265,52.75816517233854],[-127.60380632243475,52.75804238437538],[-127.60398689581636,52.75790764005002],[-127.60413248534351,52.75775600380102],[-127.60424971175021,52.7575901740897],[-127.60434619864515,52.757416225387175],[-127.60443048561822,52.75723852469492],[-127.60451110300349,52.75706198614048],[-127.6045899909426,52.75688884303057],[-127.60465580675826,52.756713627915985],[-127.60471040655615,52.7565363333432],[-127.60475566626857,52.75635748067342],[-127.60479167013688,52.75617931069013],[-127.60480155303271,52.755997579444404],[-127.60481451537309,52.7557989915689],[-127.60481978860169,52.75561788835671],[-127.60486183161099,52.755477192305115],[-127.60504126028592,52.7553368567924],[-127.60526098841491,52.75520717865551],[-127.6054996882078,52.75508844982963],[-127.6057369311308,52.754980385121186],[-127.60598476914664,52.75488282836723],[-127.60624119359744,52.75479132317666],[-127.60650238835996,52.75470310594166],[-127.6067616911173,52.75461435804475],[-127.60701525268429,52.75452064841958],[-127.60725830695353,52.75441922660003],[-127.60748701777604,52.75430680030596],[-127.6077052151265,52.754186106040606],[-127.60791577983407,52.75405991123323],[-127.60812156511085,52.753929853737844],[-127.60832449591062,52.75379815806066],[-127.60852740454882,52.75366590630877],[-127.60873223015962,52.7535353048282],[-127.60894276737655,52.753408543446646],[-127.60916187618143,52.753287833765896],[-127.60939526338062,52.75317646027024],[-127.60963436223814,52.75306892673717],[-127.60986968618596,52.75295975861275],[-127.61009168584022,52.752841814281005],[-127.61029844224754,52.752713425280156],[-127.61049568955387,52.75257899675825],[-127.61068534669498,52.75244019729082],[-127.6108702875122,52.752299211411646],[-127.6110533362379,52.75215769522121],[-127.61123542140214,52.7520150709947],[-127.61141279061657,52.75187026936403],[-127.61158261808828,52.75172277320911],[-127.61174212190318,52.75157204688641],[-127.61188183726034,52.75141318971313],[-127.61198397105062,52.751242518633404],[-127.61203674163949,52.751066921624734],[-127.61206622585753,52.7508888469567],[-127.61208448000556,52.75070867583463],[-127.6120971841288,52.750528590002176],[-127.61211172797549,52.750348469869415],[-127.61213558283777,52.750168786590756],[-127.61216221256899,52.749989065109034],[-127.61219999328216,52.74980975515658],[-127.61226487436107,52.74963566820203],[-127.6123557819245,52.74946235302835],[-127.61247664878503,52.74929646334181],[-127.61264093329783,52.74914959748388],[-127.61284675060506,52.74902178121622],[-127.61307144785845,52.74890210747146],[-127.61329231326559,52.74877967911137],[-127.6134895543244,52.748645809877694],[-127.61367449079775,52.74850538389621],[-127.61385275723451,52.7483605655675],[-127.61402162099368,52.74821251353102],[-127.61418110345512,52.74806179250245],[-127.61430291546716,52.74789645257718],[-127.61440876196554,52.74772628359401],[-127.61457120024784,52.74758000510895],[-127.61477420799964,52.74745165888149],[-127.61499510336272,52.74733034758456],[-127.61522362244337,52.74721397961954],[-127.61545210444324,52.74709705569142],[-127.61567876617313,52.746980712392514],[-127.61590926958505,52.74686823457477],[-127.61614070696767,52.74675575236496],[-127.61636643017296,52.746639420603245],[-127.6165902335944,52.74652142892172],[-127.61681117654744,52.74640124327489],[-127.61702449324478,52.74627611355857],[-127.61722458548589,52.746144440099464],[-127.61741700909813,52.746006702278954],[-127.6175981268584,52.74586408028695],[-127.61776886498976,52.74571711739088],[-127.6179095225733,52.7455599247817],[-127.6180313340731,52.745395136420754],[-127.61817569919916,52.74523789223385],[-127.61833038399988,52.74508385926836],[-127.61849827831432,52.744935257453385],[-127.61868796007363,52.74479867615271],[-127.61890311804325,52.744673517261305],[-127.61913355190197,52.74455935662184],[-127.61938227618283,52.74446287834315],[-127.61965806926784,52.74439517073743],[-127.6199389578644,52.74433972276394],[-127.62022373988037,52.74428870417503],[-127.62050756536621,52.7442371421074],[-127.62102602817507,52.74415822794493],[-127.62129250054971,52.744089524387874],[-127.62149935097044,52.74396559644556],[-127.62168401358737,52.74381955564831],[-127.62189442207465,52.74369164980078],[-127.62211239707705,52.74356756670232],[-127.62232757509324,52.743442965892775],[-127.62253141733878,52.743313472750316],[-127.62269123388229,52.74317281419767],[-127.62282504083548,52.743006742103944],[-127.62290376473578,52.74283189999862],[-127.6228682269306,52.74265359160924],[-127.62286416987246,52.74247317017289],[-127.62295048134854,52.742302706779654],[-127.62306192892714,52.742134702024785],[-127.62320152886859,52.74197470997649],[-127.62328880042605,52.74180535392388],[-127.6233405079855,52.74162752269379],[-127.62337452487078,52.741448250577264],[-127.62336497220332,52.74127014709174],[-127.62333591119486,52.74109119290366],[-127.6233578591421,52.74091153193686],[-127.62341330220372,52.74073476977244],[-127.6234771192617,52.74055845649222],[-127.62354839627118,52.74038315178632],[-127.62363184129245,52.740210485318265],[-127.6237349637672,52.74004315095567],[-127.62387835516404,52.73988591213995],[-127.62404329256664,52.73973397039041],[-127.6241951408359,52.73957941186584],[-127.62430390828418,52.739414240586136],[-127.62437891048717,52.73923944849598],[-127.62442963317572,52.739060509049416],[-127.62446089056799,52.738881839457015],[-127.62443093449262,52.73870401860884],[-127.62438147139542,52.73852534722385],[-127.62434867792804,52.738345888671574],[-127.62434094864658,52.73816663858762],[-127.62435360371015,52.73798710585181],[-127.62437369133222,52.73780747003655],[-127.62439098969357,52.73762787286891],[-127.62440178994599,52.73744836577662],[-127.62441075050931,52.737268884169694],[-127.62441782028573,52.73708886378152],[-127.62442584607965,52.73690939509014],[-127.62443199628599,52.73672939637513],[-127.62443539336378,52.7365499918216],[-127.62443131543867,52.73636956991323],[-127.62441510633164,52.7361870742302],[-127.62439706409272,52.736005159951546],[-127.62438741699361,52.73582425919453],[-127.62439642610872,52.73564645371075],[-127.6244352902524,52.73547272712451],[-127.62454786126132,52.7353103002452],[-127.62471173780895,52.735155573547104],[-127.62487283908534,52.73500088508224],[-127.6245809888513,52.73486368870022],[-127.62439396636591,52.73472672400829],[-127.62425808325045,52.73454420157121],[-127.62402858056764,52.73446106763422],[-127.62372513154428,52.73445799220844],[-127.62355134588417,52.7344009886949],[-127.62349853084892,52.734353518301766],[-127.62346242359725,52.73416008822187],[-127.62343805381153,52.73400685092915],[-127.62333367221656,52.73382276985914],[-127.62321653080271,52.7336450354045],[-127.62306451514145,52.733501413613986],[-127.62285111278861,52.733377698847804],[-127.62262676273187,52.7332591842686],[-127.62239428935753,52.733146377738166],[-127.622142716747,52.73306802979559],[-127.62187933972965,52.73297190898879],[-127.62163073430278,52.732873906113994],[-127.62138575320482,52.732773601614966],[-127.62113983248945,52.73267275360782],[-127.62089125155725,52.73257530486171],[-127.6206337192065,52.73248639132021],[-127.62036638536786,52.73240825768709],[-127.62009642696626,52.732334078718964],[-127.6198229946227,52.732266117082155],[-127.61954248569859,52.73220722054197],[-127.61926118511597,52.73215169723875],[-127.61898334575623,52.73208996449359],[-127.61871426284492,52.73201409329119],[-127.61844520845283,52.731939342071485],[-127.6181680728487,52.73187142779255],[-127.61788744164075,52.73180916607491],[-127.61760222330314,52.73177274970044],[-127.61730846714273,52.73178016893964],[-127.61701076674235,52.73180613365746],[-127.61671352012254,52.731819769485035],[-127.61642083413257,52.73180642901948],[-127.61614726298852,52.7317345418601],[-127.61586266999896,52.731690265755574],[-127.61556542689699,52.73167922800103],[-127.61526949963593,52.731678269177195],[-127.6149729550069,52.73168572101638],[-127.61467864516737,52.731703230155546],[-127.6143854662287,52.731726327886065],[-127.6140875572783,52.7317220214648],[-127.61380560741888,52.73167378501235],[-127.61353291859149,52.73160074970652],[-127.61325246495419,52.73154295848216],[-127.61296770109341,52.73149363780882],[-127.61268377273494,52.73144205401269],[-127.6123998241105,52.73138991380722],[-127.61211854462664,52.73133493821106],[-127.61183536301168,52.731278302162714],[-127.6115705459576,52.731192267205245],[-127.61131606808111,52.73111000839034],[-127.6110774076029,52.73100399979444],[-127.6108431862449,52.730892880764415],[-127.61061256877679,52.73077890477782],[-127.61038649647652,52.73066263285821],[-127.61016947883361,52.730540066147455],[-127.60995698477666,52.7304146299239],[-127.60973814281787,52.73029320848633],[-127.6095065488007,52.73017756679129],[-127.60926624687391,52.730052520408975],[-127.60901905655211,52.729941575977755],[-127.60876415618735,52.72987221331801],[-127.60849614375927,52.72987365212597],[-127.60821473787,52.72993804927438],[-127.60793346451275,52.73003046848887],[-127.60766964922935,52.73011871946563],[-127.60741425361377,52.73020910521773],[-127.607163731079,52.73030558444974],[-127.60691704199212,52.730405373481226],[-127.6066703938428,52.73050628239146],[-127.60642949619935,52.730612151829504],[-127.60620024845156,52.73073187775645],[-127.60593262090121,52.73079271737935],[-127.60562874825153,52.73080248806477],[-127.60533817398674,52.73077116436252],[-127.60506308911206,52.730707675241064],[-127.60479204448121,52.730628436388464],[-127.60452114178452,52.730552557918315],[-127.60423381084429,52.730484185725864],[-127.60395101873685,52.73041295271667],[-127.6036982402494,52.73032561437415],[-127.60350364634935,52.73020721248568],[-127.60338974303293,52.730038947546625],[-127.60333726806479,52.72985134097228],[-127.6033361311874,52.729672555489294],[-127.60340357553409,52.72949227518413],[-127.60345814577794,52.72931497799165],[-127.603406160585,52.72914081644534],[-127.60322707743869,52.728990249283136],[-127.60298601704243,52.728893781204384],[-127.60272506665953,52.728811036589775],[-127.60245228940816,52.72873462309473],[-127.60217863514393,52.72865933298463],[-127.60191128984616,52.72857891602466],[-127.6016510952598,52.72849167479063],[-127.60139270787602,52.728402731290615],[-127.60113165854936,52.72831717759689],[-127.60086536277268,52.728240106886105],[-127.60057871529486,52.72816443467674],[-127.60029755866621,52.72813633296156],[-127.60000118006805,52.7281230023096],[-127.59913091845394,52.72801662821657],[-127.59794089005553,52.727568218564684],[-127.59701608163321,52.72729218399329],[-127.59587857563008,52.72700782178688],[-127.59504001105182,52.72690490472396],[-127.59451691032596,52.72692940708671],[-127.59390381955255,52.72695344584036],[-127.59357559083512,52.726856458980095],[-127.59301098116568,52.72656371702067],[-127.59232702426436,52.72602934230466],[-127.59188947897258,52.72573598842333],[-127.59142100493172,52.725533296613264],[-127.59110041956849,52.7254171424239],[-127.59032399237492,52.72511325739075],[-127.58966096106433,52.72486611021573],[-127.58884035571234,52.72447089476067],[-127.5882958933253,52.72411956616567],[-127.58760930257831,52.723886178853625],[-127.58718427517194,52.72380394729837],[-127.58669903479483,52.72359809224681],[-127.58585983471227,52.72307531645117],[-127.58534275645184,52.72261094052856],[-127.5849329409051,52.72208738469133],[-127.58419666530192,52.72198861183208],[-127.58350517684023,52.72152154718082],[-127.58175814213739,52.721273323880666],[-127.58102392950055,52.721079220139416],[-127.58075899407781,52.720860842585836],[-127.58057933937896,52.7207169751167],[-127.58040062620245,52.720573659642234],[-127.58022282797573,52.72042977554486],[-127.58004684295659,52.720284736766786],[-127.57987635838472,52.72013794653203],[-127.57971135337286,52.719988840171325],[-127.5795536815955,52.71983739270344],[-127.57939594905424,52.71968426885553],[-127.57923446856789,52.719530065390686],[-127.57907482241865,52.71937528096124],[-127.57891790349645,52.719218782554485],[-127.57876740397371,52.719060511434705],[-127.57862798621169,52.718900969747075],[-127.57850144158257,52.718738447426205],[-127.5783924383458,52.71857401153677],[-127.57830280345287,52.7184065165191],[-127.57823624363772,52.71823590348754],[-127.57819549633865,52.7180615795762],[-127.57817409582015,52.717883631947984],[-127.57816746222768,52.71770379932206],[-127.5781718884955,52.71752214062767],[-127.57818183418905,52.717339286539946],[-127.57819177979758,52.71715643242886],[-127.57819895236283,52.71697361566818],[-127.57819688349865,52.716792044421936],[-127.57817727534758,52.71661239550396],[-127.57812424115474,52.7164315111071],[-127.5780712487359,52.71625174709003],[-127.57806476063253,52.716075840233806],[-127.57812986823689,52.715905129360394],[-127.57823777778658,52.71573889042902],[-127.57836707156737,52.71557404907477],[-127.57849821753517,52.71540917360892],[-127.57861353275334,52.71524227839602],[-127.57872887325509,52.715076494713664],[-127.57884047969328,52.71490964922139],[-127.57893339070746,52.71473912777103],[-127.57900580351543,52.714565519695974],[-127.57906980551925,52.714390339017214],[-127.57912725060764,52.714213569714126],[-127.57918100314116,52.71403685015778],[-127.57923286644542,52.713859600022936],[-127.57928566312225,52.71368232828057],[-127.57934218706689,52.71350557118776],[-127.57939873138886,52.71332937874218],[-127.57945340098482,52.71315264655525],[-127.57950434246816,52.7129753996325],[-127.57955896981449,52.71279754692639],[-127.57961823760117,52.7126196315614],[-127.5796682026286,52.7124412856416],[-127.57969410868445,52.71226382029335],[-127.57967922557629,52.712086905254516],[-127.57961523592239,52.71191065273182],[-127.57953366785996,52.71173519332115],[-127.5794650385518,52.71155900328366],[-127.57943995017247,52.71138166981105],[-127.57945656903384,52.711203764702844],[-127.57949632637241,52.711024991402965],[-127.5795490565878,52.71084604304194],[-127.57960274696325,52.710668202662816],[-127.57967044762671,52.71049298015099],[-127.57975303595677,52.71031923368653],[-127.57981332198197,52.71014410211555],[-127.57982435846156,52.709965716097805],[-127.57980566582827,52.709786054224736],[-127.57978230591563,52.70960532535225],[-127.5797719606719,52.70942555079598],[-127.57976534252354,52.70924628193598],[-127.57975778437746,52.70906646076054],[-127.57974835856938,52.70888667373337],[-127.5797343068654,52.70870694013736],[-127.57971748320064,52.70852725289118],[-127.57970797462792,52.7083452159698],[-127.57970031364616,52.708162598085224],[-127.57968620050718,52.707981188230384],[-127.57965824340222,52.707801651123766],[-127.57960727383146,52.70762634348041],[-127.57952592074278,52.70745648571797],[-127.57942520623793,52.707289696063235],[-127.57931343578055,52.70712474143472],[-127.57919244146255,52.70696102314174],[-127.57906316370439,52.70679910241941],[-127.5789265100494,52.70663784601124],[-127.57878527903162,52.70647832817332],[-127.57863945018491,52.706319993154764],[-127.57849180462676,52.70616223845983],[-127.57834326784473,52.70600562555115],[-127.57819475264382,52.70584956817261],[-127.57804717815237,52.70569405393421],[-127.5778977668017,52.70553857323503],[-127.57774648830134,52.705383108540595],[-127.57759431259197,52.70522822071984],[-127.57744121886273,52.70507334507059],[-127.57728538053297,52.704919627191586],[-127.57712863019354,52.704766486371],[-127.5769691292948,52.70461393840536],[-127.57680783824887,52.70446309133824],[-127.57664473691247,52.704313398390276],[-127.57647797160291,52.70416486658272],[-127.57630941649563,52.704018044610585],[-127.57613815249309,52.70387294484181],[-127.5759623319027,52.703730139184614],[-127.5757501745026,52.70360744424576],[-127.57550530381398,52.70350256908013],[-127.57525050332892,52.70340510899795],[-127.57500127780352,52.70330757335954],[-127.57474847674098,52.70321400428656],[-127.57449210962713,52.70312385458454],[-127.57423483013241,52.70303427261211],[-127.57397938392357,52.702944100452754],[-127.57372658757099,52.7028505381137],[-127.57348817744918,52.7027444419836],[-127.57326774822523,52.70262353978854],[-127.57302128304025,52.702525397925896],[-127.5727658220025,52.70243466735055],[-127.57250588132823,52.70234792435934],[-127.57224417667024,52.70226400248756],[-127.57196349761587,52.70219322177053],[-127.5716711122607,52.70213157446644],[-127.57141869566317,52.70204808207799],[-127.5712516144534,52.70191525004607],[-127.57115450695748,52.70174447689133],[-127.57107368595308,52.701562840117326],[-127.57095538777955,52.70139572313951],[-127.57078297150126,52.701243896213164],[-127.57059402442776,52.701096218800124],[-127.57043368256811,52.700944794325665],[-127.5703452195852,52.70078231640087],[-127.5703166132584,52.70060894646352],[-127.57031928003028,52.70042899597781],[-127.5703459103346,52.70024535202883],[-127.57038925753429,52.70006261372507],[-127.57040735718961,52.70000015133338],[-127.57044197120541,52.699882547703965],[-127.57051260198361,52.69971064418476],[-127.57067287296233,52.69955715958515],[-127.57081438264478,52.69939720056434],[-127.57094609848728,52.699223364861766],[-127.57102405514392,52.699049120603206],[-127.5709707766939,52.698885614685835],[-127.57085276825684,52.69872577549119],[-127.57069962511746,52.69856864966339],[-127.57053171677559,52.69841284275316],[-127.57036660179759,52.69825755413635],[-127.57019516065067,52.69810684309835],[-127.57001276262982,52.697960197780894],[-127.56994916265126,52.69779290184009],[-127.569938964127,52.69761592160964],[-127.56995087529103,52.6974352818051],[-127.56997198821092,52.69725283256902],[-127.56999124855484,52.69707041712308],[-127.57000224596071,52.69689034551226],[-127.57002156749243,52.69670960619984],[-127.57002518940672,52.696530198460536],[-127.5699927174491,52.69635239587816],[-127.56994263783315,52.6961748294604],[-127.56988054434399,52.695997989136806],[-127.56980556452257,52.695823554633414],[-127.56971588759482,52.6956526891465],[-127.56960416422162,52.695487159251485],[-127.56947218581024,52.69532526385746],[-127.569331047711,52.69516628913933],[-127.56918991098847,52.69500732319742],[-127.56902681054369,52.694855933532544],[-127.56878953973705,52.6947542967225],[-127.5685170959464,52.694678922714104],[-127.56824657268011,52.69460575536874],[-127.56797429495246,52.6945348618718],[-127.56823626364275,52.69445064009469],[-127.56849342815482,52.69436199811595],[-127.56874742986719,52.694262744001946],[-127.56894504100413,52.69411660745524],[-127.56895219856018,52.693957895008786],[-127.56892146239882,52.69377670564553],[-127.5688576265226,52.69360268596164],[-127.56870741846866,52.69344888097021],[-127.56851877963787,52.693308477849286],[-127.56831562961409,52.69317668085413],[-127.56807366961051,52.69307342845432],[-127.56781367217215,52.69298331315557],[-127.56762260101449,52.692852474154726],[-127.56737248925164,52.69257669602136],[-127.56736303670745,52.692394656139825],[-127.56734071382252,52.69221503957272],[-127.56724841151829,52.69204812617934],[-127.56709992348429,52.69189036810393],[-127.56692678401636,52.69174247287722],[-127.56673189310966,52.69160832057623],[-127.56652146971234,52.691479980865715],[-127.56633021905974,52.69134353718026],[-127.56616531086841,52.69119273265382],[-127.56601042072228,52.69103730087495],[-127.5658491991013,52.69088588158556],[-127.56566717453693,52.69074819237539],[-127.56542535755322,52.69064829567955],[-127.56515457279731,52.690566721899806],[-127.56490543017901,52.690469164122284],[-127.56464565996902,52.690384643877174],[-127.56436379209897,52.69032955544092],[-127.56407342023203,52.69029532293287],[-127.56378736571658,52.690252629019476],[-127.56349398559264,52.6902374922391],[-127.56320975805299,52.69019364255005],[-127.56262857713166,52.69016385585506],[-127.562331513447,52.690149321376055],[-127.56204365877505,52.69018399604749],[-127.5617592900031,52.69023823643867],[-127.561487602027,52.690309677881466],[-127.56122466546147,52.690392220853674],[-127.56096655552312,52.69048029484703],[-127.56071233339382,52.690573365366404],[-127.56046289724341,52.690670855476505],[-127.56021919548567,52.690772752561585],[-127.559981198447,52.69087905705164],[-127.55974612937695,52.69098924997647],[-127.5595129520587,52.69110052922168],[-127.55927977385494,52.69121181695754],[-127.55904466002276,52.69132087903394],[-127.55880571795217,52.69142663759147],[-127.55856099271082,52.69152630270591],[-127.55830282967256,52.69161325030591],[-127.55803503641651,52.691690245551584],[-127.55776534859815,52.69176613542487],[-127.55750241613207,52.69184922569727],[-127.55724445310919,52.69194178216403],[-127.55699613851243,52.69204485462792],[-127.55679690483947,52.69217249149829],[-127.5566609447858,52.69233292513496],[-127.5565504888878,52.69250646231019],[-127.55642105889405,52.69266792974394],[-127.55620547039923,52.692778968111476],[-127.55594619876834,52.69286145001479],[-127.5556611706408,52.69292353086564],[-127.55537467308076,52.69297049265778],[-127.5551077644258,52.69304690421538],[-127.55484866666082,52.69313386528067],[-127.55458568480776,52.69321638441318],[-127.55431882871434,52.693293914413424],[-127.55405490580544,52.69337588880448],[-127.55379774317709,52.6934656197669],[-127.5535539894819,52.69356694703658],[-127.55330652792665,52.6937451063942],[-127.55316773733684,52.69390444317203],[-127.5530289255521,52.694063224024234],[-127.55288447361308,52.694219837538775],[-127.55271469821673,52.69436838387932],[-127.55256271168851,52.69452173392858],[-127.55245569498982,52.69468849512225],[-127.5523655342171,52.69486008154666],[-127.55227817958003,52.695032195631875],[-127.55220389955957,52.695207490218635],[-127.55209406786653,52.69537317627587],[-127.5519439483652,52.695527056591324],[-127.55177980378205,52.69567776864377],[-127.55161752522142,52.69582844672854],[-127.55146274313677,52.695981832139246],[-127.55130702086576,52.69613467376634],[-127.55113814570123,52.69628264054406],[-127.55095418366287,52.69642351606805],[-127.55074941451049,52.69655290107702],[-127.55053234520943,52.69667516671585],[-127.55030864052918,52.696793591877444],[-127.55008312245644,52.69691316158996],[-127.54984115780657,52.69701389184295],[-127.54955261151132,52.697056381987686],[-127.54925784414137,52.69705524423115],[-127.5489615954844,52.69703898752776],[-127.54866646308767,52.69702775526445],[-127.54836972161371,52.69702327843506],[-127.5480786208965,52.6969951765549],[-127.54778662762254,52.69696821571344],[-127.54749402466955,52.69695022113403],[-127.54721565902608,52.69689000510511],[-127.5469415689657,52.69681964303219],[-127.54666394187976,52.696754375990615],[-127.54638272605006,52.69669195369742],[-127.54616091575491,52.696581099560426],[-127.54598237285387,52.696436052865685],[-127.54580106476344,52.69629159843158],[-127.54560709226745,52.69615571388149],[-127.5454094764547,52.69602156308556],[-127.54520907543784,52.695887448732464],[-127.54497898344945,52.695777831686236],[-127.5447066355677,52.69570407851199],[-127.54441593962854,52.69566138948147],[-127.54417499740154,52.695559195989404],[-127.5441741692873,52.6953820910373],[-127.54433856754683,52.6952381215006],[-127.54454059826497,52.69510933991382],[-127.54452673963961,52.6949307298611],[-127.54439107165186,52.69476661412943],[-127.5441520476193,52.694666072279496],[-127.54386572095419,52.694616042371855],[-127.54356948600511,52.69459921605467],[-127.54327439220066,52.694588534887046],[-127.54296860664132,52.69458975981583],[-127.54275707367563,52.69448044979848],[-127.54257841511841,52.69433203653729],[-127.54239250329361,52.694187637567865],[-127.5421822005769,52.694060930532025],[-127.54196375709013,52.69393994428664],[-127.54173987257938,52.693821827302415],[-127.5415069736002,52.693711110565296],[-127.54126867422666,52.693604392432945],[-127.54102229432334,52.69350507112507],[-127.54076693461725,52.69341370547239],[-127.54050440792801,52.69332916850251],[-127.54023194757016,52.693252043621335],[-127.53994693954658,52.693237858488146],[-127.53965147417007,52.69326808473236],[-127.53935497411183,52.69329552585185],[-127.53904946728635,52.6933298105809],[-127.5387628736601,52.693323490320175],[-127.53850899733817,52.69324723810274],[-127.53826704860627,52.69314224789725],[-127.53803389533623,52.69302368080368],[-127.53780260138574,52.69290565379815],[-127.53757604828503,52.692790371005124],[-127.53735759855768,52.69266824644366],[-127.53714733848113,52.6925420949425],[-127.53694341550016,52.692411940874486],[-127.5367458238412,52.69227721040251],[-127.5365537109078,52.69214017466063],[-127.53636514308853,52.691998599151354],[-127.5362242797789,52.691843510261094],[-127.53608004308586,52.69167165067774],[-127.53599439519722,52.69150574784699],[-127.53592005821378,52.69131951872732],[-127.53585751502932,52.69115163552967],[-127.53585633937499,52.690963881143716],[-127.53587517035545,52.690791566946594],[-127.53589209736934,52.69059180903795],[-127.53559548743033,52.69061531439805],[-127.53530571534654,52.69064882714359],[-127.53504826851473,52.69073122960349],[-127.53480751826518,52.690839760173006],[-127.53456666654874,52.69094549357108],[-127.53432670681723,52.69105008480081],[-127.53407618878128,52.6911447340166],[-127.53379759646559,52.691206112085],[-127.53352782893924,52.691280834635236],[-127.53325508816803,52.69134998160552],[-127.53297450057364,52.691407464848965],[-127.53269195419952,52.691461610105065],[-127.53240532631763,52.69150571924426],[-127.53211357290658,52.69153588694343],[-127.53182693854545,52.691579429757866],[-127.5315403692705,52.69162522194784],[-127.53125267983143,52.69166541419092],[-127.53096092452016,52.691695579013576],[-127.53066693553723,52.691715118479564],[-127.53037188708925,52.69173074312806],[-127.53007676369685,52.69174469101678],[-127.52978165493232,52.69175863796752],[-127.52948647126954,52.69177090815784],[-127.52919136213207,52.691784853619936],[-127.52889639804317,52.69180328037672],[-127.52860768621568,52.691840681446635],[-127.52832900153258,52.69189980554646],[-127.52805336239794,52.69196618008154],[-127.52777676356723,52.69203144549851],[-127.52750307537057,52.69210060018254],[-127.52722841231942,52.692168636982714],[-127.52694975855967,52.69222832230464],[-127.52666387366389,52.692267367582474],[-127.52636591387758,52.692279657088804],[-127.5260750298587,52.692308677273374],[-127.52578655176528,52.692352794142785],[-127.52550011043965,52.692402488654544],[-127.52521954015873,52.692460508821675],[-127.52494863630692,52.69253017714174],[-127.52468468201009,52.69261265005652],[-127.52442954910445,52.692708450264725],[-127.52419342472369,52.692818019083944],[-127.52398098223209,52.692941851774464],[-127.52377744087704,52.69308126189597],[-127.52359834597698,52.69323100717567],[-127.52346209340476,52.69338635536264],[-127.52344295725999,52.693551944678845],[-127.52355868083366,52.69373091611875],[-127.52376199723714,52.69400123239694],[-127.52368124512073,52.69417995470307],[-127.52348558770271,52.69430693068381],[-127.52325514970512,52.69442035123717],[-127.5230077323025,52.6945250154656],[-127.52274864508202,52.69461470224224],[-127.52248162318236,52.694689362905066],[-127.52220784951912,52.694756819908754],[-127.5219301705043,52.69481872214631],[-127.52164862605747,52.69487619005229],[-127.52136508866167,52.69492975526492],[-127.52107959851912,52.69498054719526],[-127.52079402808675,52.69502909750432],[-127.5205074038664,52.69507429786116],[-127.52021772890977,52.69511169028369],[-127.51992600185889,52.69514350373964],[-127.51963331567339,52.69517420793764],[-127.51934160780553,52.69520658464851],[-127.51905193093573,52.69524397418273],[-127.51876719586807,52.69529026668722],[-127.51848938918044,52.69534879935371],[-127.5182156247213,52.69541680273905],[-127.51794580347462,52.6954914891601],[-127.51767793313014,52.69556894760443],[-127.51740816940506,52.69564530899],[-127.51713637316212,52.695716647203774],[-127.51685965405436,52.695779645730504],[-127.51657893602977,52.69583484857037],[-127.51629528687846,52.69588560479322],[-127.51600968530221,52.69593358765093],[-127.51572306479761,52.69597877607273],[-127.5154364088742,52.69602339927006],[-127.515148833725,52.69606804262424],[-127.51478116775719,52.69612772959106],[-127.51447984902285,52.696150685643744],[-127.51419025034605,52.69613817406671],[-127.5139173564599,52.69607388977974],[-127.51364617727556,52.69600565478934],[-127.51337491972984,52.695935178240696],[-127.51310541660938,52.69586187146672],[-127.51283583553128,52.695786332104845],[-127.51256713443478,52.695709650814436],[-127.51229932879151,52.69563184533725],[-127.51203148422762,52.69555290981543],[-127.51176364096796,52.69547398264013],[-127.51149581831918,52.695395610598204],[-127.51122893040285,52.69531722588226],[-127.51096206819149,52.69523996120976],[-127.51069520183552,52.69516213101926],[-127.51042923576613,52.69508373260614],[-127.51016325106491,52.695004777833695],[-127.50989724742617,52.69492525773805],[-127.50963216369635,52.69484572518055],[-127.50936705626572,52.69476507136157],[-127.50910376776089,52.694683828524916],[-127.50883954175097,52.694602041187416],[-127.50857714981484,52.69451967361693],[-127.50831471909342,52.694436176023686],[-127.5080541224598,52.69435209821341],[-127.5077934479191,52.69426577888492],[-127.50753548187598,52.69417718214549],[-127.50728020953369,52.69408630820334],[-127.50702852519505,52.6939920245852],[-127.5067795150513,52.693894908050375],[-127.5065221962191,52.693798453953605],[-127.50626113389107,52.69370092650567],[-127.50601369881963,52.69359537629849],[-127.50580005782611,52.69347593906449],[-127.50563481473468,52.69333625725588],[-127.5055125054724,52.69317865227867],[-127.5054185060447,52.693008917251014],[-127.50534274221201,52.692831091780626],[-127.50527247305999,52.69265096258992],[-127.50515682279989,52.692392939762414],[-127.5049140812261,52.69228901285107],[-127.50466775355935,52.69218848551111],[-127.50442048865621,52.69208741370521],[-127.50417593742827,52.691984629526104],[-127.5039395784591,52.69187781166495],[-127.50371316103879,52.69176357476657],[-127.50349849869744,52.691640783580304],[-127.50328729174299,52.69151122176501],[-127.5030851667729,52.691375938045425],[-127.50289488031761,52.691234897066494],[-127.5027220291789,52.691089147990496],[-127.50256848055345,52.690938666917276],[-127.50245995304745,52.69077696283853],[-127.50241012071187,52.69059824646781],[-127.502384208694,52.69041417408652],[-127.502352862452,52.6902340993461],[-127.5023243418912,52.69005510927899],[-127.502303211875,52.68987546830306],[-127.50228763905396,52.68969574699389],[-127.50227855761518,52.68951595129522],[-127.50228893884409,52.68933646172082],[-127.50236111294542,52.689148887969175],[-127.5022890985757,52.688997924590815],[-127.50208067452597,52.68886775988054],[-127.50182844274782,52.688756657657045],[-127.50156079819102,52.688681623946145],[-127.50127772077263,52.688642102892885],[-127.5009804921724,52.68862181032063],[-127.50067965740043,52.688604370170324],[-127.50038671466586,52.68857394130857],[-127.50010850904037,52.68851473340291],[-127.49984069221945,52.6884346491328],[-127.49958461532941,52.688346010968225],[-127.49933563048303,52.688247757562486],[-127.49908846456641,52.688148915360706],[-127.49883137394453,52.68805748163373],[-127.49857247158113,52.687967200497134],[-127.49833259593524,52.687864335457036],[-127.49812528478651,52.68773919845665],[-127.49794335439543,52.68759748650961],[-127.49777138998364,52.68744947686174],[-127.49759578070555,52.68730319059169],[-127.4974120062001,52.68716205742934],[-127.49722824772464,52.68702092377531],[-127.49704816086039,52.68687918685593],[-127.49687805474613,52.68673115212479],[-127.4967234276942,52.686575072311406],[-127.49654433652704,52.68643499886492],[-127.49628816094737,52.68634299193809],[-127.49602116154442,52.68625896968549],[-127.49584305129474,52.68612055962268],[-127.49569669954437,52.68596269569168],[-127.4955648734214,52.68579623410126],[-127.49543575587248,52.68562749578471],[-127.49530034465691,52.68546444263656],[-127.49514865541225,52.685312807107145],[-127.49496889527198,52.68518002168212],[-127.49473159988206,52.68507095551643],[-127.49444344027255,52.68499112795045],[-127.49414171467407,52.68494733523263],[-127.4938610096348,52.68494812143793],[-127.49360010165537,52.68501198499866],[-127.49334426515261,52.685115017440346],[-127.49308386751508,52.68522034945631],[-127.4928102056094,52.685290534842714],[-127.49252460933819,52.685337340262606],[-127.49223131035937,52.68537583140196],[-127.49193484944354,52.68540315235051],[-127.49163879942525,52.68541589461173],[-127.49134495417593,52.685412349380854],[-127.49105344621793,52.685395886886184],[-127.49076166540384,52.68537158031168],[-127.49047062344226,52.68534165872162],[-127.49017939174259,52.68530669892091],[-127.48988809704755,52.68526948828311],[-127.4895976632634,52.6852305889859],[-127.48930631611213,52.685192265570926],[-127.48901508155836,52.6851567379588],[-127.48872392990874,52.68512400652739],[-127.48843283278407,52.68509240362634],[-127.48814082186983,52.68506136763172],[-127.48784974940678,52.685030874983745],[-127.48755773933469,52.68499983753289],[-127.48726662429921,52.684967667006106],[-127.48697640911512,52.684934928320686],[-127.4866861358626,52.68490050371165],[-127.486396723289,52.6848643815077],[-127.4861080894882,52.68482377377003],[-127.48582370511735,52.68477189264768],[-127.48554094520293,52.684713829338754],[-127.48525825932877,52.684657450360454],[-127.48497405657078,52.684611169763],[-127.48468495375798,52.68458345122459],[-127.4843918736801,52.68457483900175],[-127.48409553602833,52.68457916305569],[-127.48379847819287,52.68458965636661],[-127.48350050150374,52.684600160571506],[-127.48320416327627,52.6846044734043],[-127.4829106564938,52.68458353216784],[-127.48261603491962,52.68458390283054],[-127.48232063055195,52.684588210561],[-127.4820245712466,52.684574025288846],[-127.48173100693299,52.684551395887425],[-127.48144241843337,52.68451189711636],[-127.48116332715811,52.684452090922974],[-127.48088371837724,52.68437772693251],[-127.4807508387168,52.68423256110321],[-127.48065961143556,52.68405939969104],[-127.48049779928793,52.683907873850494],[-127.48033293141778,52.6837485396288],[-127.48009703285292,52.68370556404161],[-127.4798066703371,52.6837753742011],[-127.47954170619695,52.683856072196534],[-127.47925828607448,52.68391234149536],[-127.47896613037607,52.68390370406535],[-127.47867825013915,52.68385746375552],[-127.47841311867649,52.68377281324648],[-127.47813270657808,52.683728154220766],[-127.47783604528959,52.683722933825905],[-127.47753845056505,52.683717724467364],[-127.47724899151707,52.68367934741872],[-127.47696369197398,52.68362745651145],[-127.47667480755447,52.683632788739054],[-127.47638343547665,52.68367345779692],[-127.47609397283,52.68371577900727],[-127.47580737720652,52.683760870245514],[-127.47551448642295,52.683784185684495],[-127.4752194963694,52.683800792053596],[-127.47492442456992,52.68381460076007],[-127.47462935721086,52.683828973633986],[-127.47433447792821,52.683848383280655],[-127.47403864542513,52.68386723921971],[-127.47374508253064,52.6838715021572],[-127.47345570264912,52.68383534773758],[-127.47317222062648,52.68378231274496],[-127.47289313083972,52.68372248698522],[-127.47261050669955,52.683667197903766],[-127.47232185520978,52.68362542668061],[-127.47203171493129,52.68364813381212],[-127.47174341733185,52.68369772034815],[-127.47145784717593,52.68374559489074],[-127.47117322898805,52.68379401275872],[-127.47088869141025,52.6838452268542],[-127.47060802663002,52.68390088442138],[-127.4703303625773,52.68396322045063],[-127.47005281342919,52.68402892624308],[-127.4697772691864,52.68409908109178],[-127.46950938303993,52.684176429885554],[-127.46925572624811,52.68426368809998],[-127.46903651915537,52.684382465348776],[-127.46885436363875,52.68452823630662],[-127.46868337785023,52.68467554371838],[-127.46853588279701,52.68483265371639],[-127.46843134897422,52.68499930410327],[-127.4683529621122,52.685172361030496],[-127.46828673677341,52.685348619207126],[-127.4682270206517,52.68552536060967],[-127.46820280946679,52.685711189170874],[-127.468136428997,52.68588296525336],[-127.46796331442388,52.68602246027963],[-127.4677396292512,52.68614633085042],[-127.46751315236551,52.68626967101195],[-127.46732884347338,52.6864070634763],[-127.46720276154818,52.68656725688574],[-127.46711331027471,52.68674212840098],[-127.46705836438616,52.68692329301394],[-127.46704038827556,52.687101752143626],[-127.46706589242413,52.68727798915652],[-127.46712476264774,52.687454919808076],[-127.4672592104691,52.687809145419784],[-127.46720038610792,52.6879853097581],[-127.4671415615699,52.68816148300977],[-127.46708366985266,52.68833763554192],[-127.46702299193811,52.68851383191602],[-127.46696046079703,52.68869004249586],[-127.46691742996161,52.6888676944984],[-127.46692633952006,52.689046381291206],[-127.46695658292434,52.689225912622305],[-127.46697294514017,52.689406182909146],[-127.46698559835284,52.68958594367122],[-127.46700102265457,52.68976566070479],[-127.46702475676649,52.689944717543476],[-127.46706603962565,52.69012187739451],[-127.4671562866611,52.690294495484316],[-127.46727680504493,52.6904583222285],[-127.46742028151299,52.69061626510729],[-127.46758936300009,52.690763789052994],[-127.46777758264372,52.69090211396959],[-127.46797583097094,52.691035819960575],[-127.46820546189863,52.69119268111269],[-127.46841281760355,52.69132123225448],[-127.46862468317661,52.69144636354407],[-127.46886376148176,52.69155433843433],[-127.46909277899321,52.69166635803241],[-127.46925368061223,52.69181847510217],[-127.46932631391616,52.69199074764463],[-127.4693325439016,52.692172265579],[-127.46935997061493,52.69235015446552],[-127.46943268247574,52.692524676805206],[-127.46952103824209,52.69269619575729],[-127.46963333946667,52.69286293007982],[-127.4697593939076,52.69302556370882],[-127.46990928335572,52.693180616053716],[-127.4700839844518,52.69332975172057],[-127.47026952887309,52.69347034816307],[-127.47041869952172,52.69363156969514],[-127.47038000919281,52.69380020025496],[-127.47026635166041,52.693971458529354],[-127.47019912928243,52.69414605223],[-127.47017287214278,52.694325736082874],[-127.47015866881269,52.69450582448652],[-127.4701435319214,52.694685933559704],[-127.47013396747288,52.6948659636421],[-127.47013827164649,52.69504526349537],[-127.47016478918141,52.695223728297755],[-127.4702200162029,52.695401823463364],[-127.47028542194596,52.69557923472066],[-127.47033784007428,52.6957562530926],[-127.47035597111557,52.695933137213736],[-127.47031569512362,52.69610963410928],[-127.47023832537732,52.696285475977355],[-127.47016651325904,52.69646124795502],[-127.470143887388,52.696639199962455],[-127.47017972735416,52.69681922444043],[-127.47023399934132,52.69699621943735],[-127.47030213628317,52.697171910292795],[-127.47039783931548,52.69734109399001],[-127.47055788640486,52.697494340704516],[-127.47066739823114,52.69766054378506],[-127.47074476815952,52.69783556233004],[-127.47078607402197,52.69801271992231],[-127.47076165039955,52.69819181543487],[-127.47057131762938,52.698452027661965],[-127.47054276915152,52.69856504725062],[-127.47047515157949,52.69864716183184],[-127.47031918343869,52.69877466861502],[-127.47013020497458,52.69891212242242],[-127.46993557460856,52.69904739599062],[-127.46973719453365,52.699181039337255],[-127.46953690705018,52.69931358530912],[-127.46933478026533,52.69944615400001],[-127.46896212981451,52.699660450528164],[-127.46895818619286,52.69970758025751],[-127.46893468374549,52.699752157532565],[-127.46891847768117,52.69990088335127],[-127.46883290287647,52.700000045530494],[-127.46867166627501,52.700190389615145],[-127.46853347374342,52.70034961351362],[-127.468396199545,52.70050883466627],[-127.46825799013737,52.7006680583913],[-127.46812071389311,52.700827279186676],[-127.46798437020782,52.700986479128105],[-127.46785085532728,52.70114732932645],[-127.46771640554873,52.701308191064996],[-127.46757725290135,52.70146686966904],[-127.46742870002402,52.70162174705947],[-127.46722577554839,52.70175880550734],[-127.4670498982337,52.701900564414544],[-127.4669769186228,52.702070187346635],[-127.4669338698743,52.70224727284233],[-127.46690858995966,52.702429184409176],[-127.46688978799675,52.70261101476835],[-127.46686815629143,52.70279120361141],[-127.46685670417116,52.70297069990556],[-127.46685452140701,52.70315063601636],[-127.46686161902433,52.703330464781615],[-127.46688075388099,52.70351013371989],[-127.46690359534384,52.703689765155],[-127.46691900533494,52.70386892473087],[-127.46691865682305,52.70404828175805],[-127.46690164530085,52.7042278475681],[-127.46687814037267,52.70440749471939],[-127.46685738814159,52.70458654238852],[-127.46684687399646,52.70476659166518],[-127.46684283375278,52.70494599483806],[-127.46683787854502,52.70512596544616],[-127.4668282639872,52.70530543842074],[-127.46681868352901,52.70548547590482],[-127.4668044623835,52.705665562544105],[-127.46677815005391,52.70584468866937],[-127.46673139034638,52.706021820078014],[-127.46666883273424,52.70619803738027],[-127.46658856578338,52.70637166961496],[-127.4664886741348,52.70654049883314],[-127.46636075364968,52.706702962274534],[-127.46621884442861,52.70686279388347],[-127.46608437056284,52.707023653127784],[-127.46597696671579,52.70718977797234],[-127.46590780995277,52.70736270548302],[-127.46586662855529,52.70754089636908],[-127.4658403833894,52.70772169809549],[-127.46581689112402,52.70790190036408],[-127.46580356514154,52.70808141932646],[-127.4658032460901,52.70826134037253],[-127.46579457957617,52.70844135694169],[-127.4657868899396,52.708623047166014],[-127.4657530964386,52.70880002439234],[-127.46566926779988,52.70897818397603],[-127.46550277567545,52.709124305739394],[-127.46525740623032,52.70921425498282],[-127.46498171131651,52.709284962061744],[-127.46470135546039,52.70935516182965],[-127.46444104141696,52.70944193342803],[-127.46420554764248,52.709549683085534],[-127.46397870704259,52.7096663006032],[-127.4637480284244,52.709779593827484],[-127.46349823620835,52.709875755279874],[-127.46320736233652,52.70990965650112],[-127.462919543565,52.70995136545716],[-127.46263275421492,52.709995867691525],[-127.46234697910027,52.71004315443285],[-127.46206219918048,52.71009266993538],[-127.4617804164031,52.710148308043834],[-127.46149303486897,52.71020290337203],[-127.4612305876735,52.71028183866604],[-127.46100641192656,52.71039561010734],[-127.46079186535206,52.71051991443625],[-127.46058494121756,52.710650283980705],[-127.46038179906031,52.71078284785244],[-127.46018522637641,52.710917571306204],[-127.46001508209993,52.71106653714586],[-127.45981554728317,52.71119624811827],[-127.45957626822972,52.71130235833307],[-127.4593265152237,52.71140019597388],[-127.4590816161203,52.711504689279934],[-127.45881911860077,52.711582507594095],[-127.45852920173652,52.71161750598628],[-127.45823332305977,52.71164080349517],[-127.45794038872144,52.71166911232667],[-127.45764653469877,52.71169743186977],[-127.45736253904744,52.711743007094654],[-127.45709932733652,52.71182699108723],[-127.45683516123724,52.7119104213896],[-127.45656816870743,52.71199277426316],[-127.45632110096652,52.712088321050594],[-127.45614623612714,52.71223509775245],[-127.4559625413459,52.71236741169039],[-127.45567091584547,52.712406907915636],[-127.45537421064827,52.71243358017594],[-127.45508113141217,52.712457399774344],[-127.45479527422376,52.712502982819785],[-127.45451837817308,52.712566953890544],[-127.45424930997079,52.71264260145909],[-127.45398412298654,52.712723795945635],[-127.45371893094274,52.71280443388966],[-127.4534497688872,52.712877838852236],[-127.45316984810546,52.71293455359793],[-127.45288010768668,52.71297514032506],[-127.4525892572058,52.713010135385666],[-127.45229531437569,52.713036200533246],[-127.45200234770009,52.71306393873017],[-127.45171541179477,52.713105043755995],[-127.45143846923779,52.71316788704726],[-127.45117141615394,52.71324854217423],[-127.4509244242515,52.71334688315374],[-127.4506993088755,52.71346176667385],[-127.4504050391104,52.71347830754718],[-127.45010625638893,52.71349825742662],[-127.44983977638039,52.71356881387321],[-127.44960338401917,52.713679351089354],[-127.4493917082394,52.713807516909405],[-127.44924671581025,52.71396120357838],[-127.44917297223192,52.714138103988084],[-127.44902618112509,52.71429348951463],[-127.44882294793057,52.714424912536934],[-127.44856436735468,52.71450994041895],[-127.44829443688567,52.7145883824582],[-127.44802924565745,52.71467012807053],[-127.44780411126838,52.71478444102216],[-127.44759517876521,52.71491201345992],[-127.44739669726162,52.7150472939218],[-127.44721137506798,52.71518746008859],[-127.44705813527213,52.71534460850031],[-127.44692563940232,52.71551157983443],[-127.44675984479372,52.71565374577523],[-127.44650656742805,52.71573142176037],[-127.4462067510101,52.7157765998125],[-127.4459491100679,52.715862166057924],[-127.4457106899367,52.71596823625246],[-127.44547994412152,52.716081501785645],[-127.44525399389072,52.71619974738808],[-127.4450346549908,52.71632182974074],[-127.44482096654495,52.71644609278083],[-127.44461671907918,52.71657583465286],[-127.44441817868298,52.71670943350857],[-127.44422059427943,52.71684414114681],[-127.44402109840159,52.71697719507435],[-127.44381495450189,52.717105837890074],[-127.44359936712529,52.71722900102086],[-127.44337807020709,52.717348306344604],[-127.44315111246635,52.71746431818145],[-127.44292127093337,52.71757755826473],[-127.44268762650273,52.71768804686945],[-127.44245111735879,52.717796328401164],[-127.442203140999,52.71789410625754],[-127.44194557776096,52.71798302516743],[-127.44168997652947,52.71807472615925],[-127.44143913333751,52.71817029576299],[-127.44118928365212,52.718268085484794],[-127.44094986241748,52.71837248090767],[-127.4407351795581,52.71849561838382],[-127.44053390557815,52.718631485724266],[-127.44001617818785,52.71859413690615],[-127.43974081042327,52.71865020668257],[-127.43946873903666,52.71872137237449],[-127.43919977499617,52.718802022685495],[-127.43893367720148,52.7188854349934],[-127.43867222430919,52.718969354565516],[-127.43841561952448,52.719059383604545],[-127.4381628715265,52.719153839463395],[-127.43791967379562,52.71925658897364],[-127.43769076206509,52.71937037190089],[-127.43740210873047,52.71941763169212],[-127.43714814556036,52.719337799633706],[-127.43689996804096,52.71923716326713],[-127.43665256034876,52.719132024239016],[-127.4363972335186,52.719039321060585],[-127.43613473713422,52.71895398683858],[-127.43586608059859,52.71887825101388],[-127.43558868679145,52.718818879700976],[-127.43530161321637,52.71877476345529],[-127.43501191706913,52.71873515341252],[-127.43472561380557,52.71868654259684],[-127.43444284535451,52.7186322741585],[-127.43415751526614,52.718584770978744],[-127.43386634734907,52.71855695042479],[-127.43357021523471,52.71854655988972],[-127.43327329942979,52.718540670895834],[-127.43297717165667,52.718530843761],[-127.4326809838078,52.71851877474989],[-127.43238393687248,52.71850895736391],[-127.43208801565204,52.71850528610089],[-127.43179431941853,52.71851224022198],[-127.43150425853992,52.718544930594085],[-127.43121854188769,52.71859662298317],[-127.43093473464405,52.718649977214206],[-127.4306518458474,52.71870331055878],[-127.43037000331228,52.718760002190784],[-127.4300930262254,52.718823350334354],[-127.42982282888838,52.71889559144509],[-127.42955845366792,52.71897559839179],[-127.42929701927264,52.719060617503025],[-127.42903848416961,52.71914896342427],[-127.42878281089708,52.7192395157004],[-127.42852809342362,52.71933117667031],[-127.4282753222953,52.719425620137486],[-127.42802541664919,52.719522825937865],[-127.4277821736339,52.71962498965273],[-127.42754372118257,52.719731587129324],[-127.42731002528733,52.719842044894165],[-127.4270791762133,52.719954709336626],[-127.42684931614339,52.720069038160474],[-127.42661947367633,52.720183931243234],[-127.4263905269376,52.72029769201223],[-127.42615967298411,52.72041035460798],[-127.42592596980869,52.72052080956095],[-127.42569029958298,52.72062792518701],[-127.4254450791794,52.720726754083906],[-127.42516340274878,52.7207890265139],[-127.42487319090569,52.720817783237315],[-127.42457964537674,52.72082975690573],[-127.42430562497866,52.7208992246263],[-127.42403454501964,52.72097370459387],[-127.42376439815591,52.721048163607406],[-127.42350098871975,52.72112983059861],[-127.42325956112913,52.721231406521824],[-127.42304393473155,52.72135620787755],[-127.42283395802774,52.72148318202395],[-127.42262774750517,52.7216123518711],[-127.42242248886687,52.72174207471443],[-127.42221342794987,52.72186903654723],[-127.42200533739498,52.72199710712488],[-127.42180855878028,52.72213120058406],[-127.42162971502118,52.722274608330636],[-127.42144049485432,52.72241253708903],[-127.42122669264477,52.72253675674452],[-127.4209939179534,52.72264774611491],[-127.42076397148573,52.72276038656101],[-127.42054072836844,52.7228796707747],[-127.4203849099779,52.72301831347571],[-127.42036582684881,52.72319789286213],[-127.42017824803114,52.723329638890604],[-127.41996164531957,52.723453325074026],[-127.41973380606294,52.723573784272205],[-127.41951349290842,52.723697514554964],[-127.41930821452678,52.72382722279589],[-127.41910196362575,52.723955830478246],[-127.4188680926415,52.72406234494779],[-127.41889154238068,52.72426606891905],[-127.41891419343408,52.724445707171604],[-127.4189257019367,52.72462491544862],[-127.41888945756752,52.724790130227895],[-127.41868138361376,52.72491987105646],[-127.4184267964478,52.72501711207158],[-127.41815986721994,52.725105534576514],[-127.41789447896805,52.72518497042071],[-127.41762231098332,52.72525552033037],[-127.41734727580348,52.72532330646909],[-127.4170741900129,52.72539442216111],[-127.41680859011825,52.72546713251376],[-127.41657657790772,52.72557418459071],[-127.41646640650255,52.725748138946926],[-127.41646945794346,52.725924086702086],[-127.41656152688397,52.726100078774074],[-127.41656287308871,52.7262805307987],[-127.41650959066695,52.72646388532954],[-127.41637648139877,52.726617384320896],[-127.4161700559873,52.72674093981538],[-127.41592794157539,52.726851475319314],[-127.41568677877429,52.72696255477415],[-127.41546351440576,52.72708182879642],[-127.41523933300239,52.727201678392724],[-127.41500359921828,52.72730877203604],[-127.41473133883797,52.727377074184496],[-127.4144436147128,52.72742650679493],[-127.41425515710173,52.72756105094819],[-127.41417267209023,52.72773130568599],[-127.41412846313466,52.72790894466594],[-127.41408983464721,52.72808707220794],[-127.41404751618315,52.72826580920198],[-127.41400145198591,52.728443470454714],[-127.41392087031198,52.72861482282385],[-127.41380017502638,52.72877937780634],[-127.41372154237179,52.72895406921245],[-127.41362697064076,52.729123348309564],[-127.41348291719245,52.72928257121654],[-127.41329175235238,52.72941995296455],[-127.41303388940023,52.72950320506638],[-127.41276479291783,52.7295837942622],[-127.41249800850181,52.72967780595012],[-127.412258508757,52.729783818140305],[-127.4121222300452,52.72992614069171],[-127.41214147982454,52.7301158995552],[-127.41223987094253,52.7302867785663],[-127.41225038151347,52.73046487759585],[-127.4122387111616,52.73064492091541],[-127.41221498081089,52.730825118573826],[-127.41217821464897,52.73100378750066],[-127.41212271521177,52.73114905474257],[-127.4121146787406,52.731326812320475],[-127.41209750411986,52.731509172665],[-127.4120504899487,52.73168627913642],[-127.41194108965811,52.73185630009916],[-127.4117658251844,52.7319979619642],[-127.41147450112193,52.732023890880654],[-127.41117549262147,52.73201348638406],[-127.41087918062031,52.73200024187768],[-127.41058274310679,52.73198363539056],[-127.41028974113578,52.73198659832096],[-127.41000067341955,52.73202427048658],[-127.40971085497206,52.73206754657206],[-127.40941769346934,52.73209405740514],[-127.40912302090898,52.73210264207937],[-127.4088274627359,52.73208434368618],[-127.408532052121,52.73207051746542],[-127.4082359618977,52.73206398909759],[-127.40793993069938,52.73205970110118],[-127.40764400673467,52.732058217837356],[-127.4073482337194,52.7320617716415],[-127.40705172521395,52.732070938101444],[-127.40675626172514,52.732083454000836],[-127.40646078322875,52.73209596933306],[-127.40616541134222,52.732111280438126],[-127.40587215511918,52.732134976738465],[-127.40558721449973,52.73218547443935],[-127.40530322977517,52.732237080882996],[-127.40501055727005,52.7322501238165],[-127.40471448830695,52.73224470719911],[-127.40441641420111,52.73223426528269],[-127.4041174609782,52.73222551899984],[-127.40381277951435,52.73221180097863],[-127.40355139372834,52.73227377650921],[-127.4033175491356,52.73238362971601],[-127.40309064547982,52.73250740621695],[-127.4028559518757,52.732619501481736],[-127.40259127620845,52.73269440917525],[-127.40229063330125,52.732719305783995],[-127.4019975504018,52.73269142828853],[-127.40170834542684,52.7326125066654],[-127.40144506346704,52.73261677764145],[-127.40121396354755,52.732725463822696],[-127.40098447987175,52.73285543647818],[-127.40072670421047,52.73294314336476],[-127.40044773732764,52.73300645193192],[-127.4001598487906,52.73305248785569],[-127.40000092255809,52.7330712009566],[-127.39986784746169,52.73308624219277],[-127.39957171510294,52.73310715019475],[-127.39927503286958,52.733111259322],[-127.39898632122238,52.733075475705185],[-127.39870045754466,52.7330133114989],[-127.39841271803556,52.73300722348062],[-127.39812438776305,52.733039808727185],[-127.39783556189407,52.733085850093225],[-127.3975468966915,52.733136372461644],[-127.3972580510996,52.73318184768254],[-127.39696779118876,52.73321221125075],[-127.39667773867461,52.73319213068768],[-127.3963851003912,52.73314966204033],[-127.39608507634095,52.733136424336195],[-127.39577681004094,52.733126646800265],[-127.39547829105915,52.733131324162834],[-127.39520851997717,52.7331642460469],[-127.39505709815842,52.733328016277],[-127.39501553837552,52.7335039379323],[-127.39500568918888,52.73368564245122],[-127.39498652771434,52.73386577199057],[-127.39491987003724,52.73404030655395],[-127.39482433298325,52.73421126621263],[-127.39473811843477,52.734383226715266],[-127.3946241292762,52.734642392629105],[-127.39439322385044,52.73475835294137],[-127.39416984130499,52.73487703],[-127.39394833337676,52.73499679624324],[-127.39373251228939,52.7351198660768],[-127.39352708281245,52.73524897238481],[-127.39332829948599,52.735383038859425],[-127.39313803191845,52.73552205226765],[-127.39295716346054,52.73566488123995],[-127.39278848303407,52.73581148369558],[-127.3926761515709,52.735979834164056],[-127.39265876079742,52.73615770005683],[-127.39268505350515,52.736338418325374],[-127.39271412052115,52.73651909462123],[-127.39270972984635,52.73669737085081],[-127.3926532875389,52.73687290310087],[-127.39256803363041,52.737046535956885],[-127.3924781319487,52.73721966799518],[-127.39240677848578,52.73739313546206],[-127.3924273609346,52.737569428914355],[-127.3924982000392,52.73775073851578],[-127.39256635634597,52.737934877726296],[-127.39246906025579,52.73808063087493],[-127.39222874797105,52.73819333545498],[-127.39197818663713,52.738304475448],[-127.39172191459143,52.738411208068406],[-127.39148815160584,52.73852551013402],[-127.39136130424306,52.73867554086207],[-127.39129726782512,52.738845557796765],[-127.39126136374018,52.73902532874432],[-127.39123860253935,52.739209427205935],[-127.39121117871137,52.73939301606795],[-127.39116318945626,52.73957180950704],[-127.39108537925375,52.73974647335577],[-127.39096261875623,52.739908219944155],[-127.3907760875453,52.740048870248266],[-127.39060929508027,52.74019768823969],[-127.39047536686219,52.74035844587629],[-127.39034991859347,52.74052302137789],[-127.39022348008791,52.74068593159587],[-127.39008483182353,52.74084450289951],[-127.3899188777273,52.74099051204703],[-127.3897049056522,52.74111466347491],[-127.389481534876,52.741235572208325],[-127.38925654105994,52.74136321617595],[-127.3891811488505,52.74152720567454],[-127.38916745080022,52.74170502641235],[-127.38917055823471,52.74188657551766],[-127.38917651002257,52.742069776713144],[-127.3891740680168,52.74225139156896],[-127.38917651035734,52.74244079479732],[-127.38899209990244,52.742561796442544],[-127.38872226515073,52.742651860116055],[-127.3884496364314,52.74274140029053],[-127.3882409646066,52.742858204575434],[-127.38812929526641,52.74301926025554],[-127.38807687766204,52.74320482965775],[-127.38804567362212,52.743386785016256],[-127.38803107178884,52.743565736944085],[-127.38802949042297,52.74374566447709],[-127.3880316367936,52.74392610379664],[-127.38802726541306,52.74410605536885],[-127.38800526210922,52.7442856598117],[-127.38795815244617,52.74446331981578],[-127.38789056940284,52.74463954540632],[-127.38781464591223,52.744815860744964],[-127.3877115241904,52.744982974959534],[-127.38755491122289,52.745131667209186],[-127.38734759644281,52.74526190425496],[-127.38714312806026,52.745394349008365],[-127.3869565420372,52.7455344280045],[-127.38677088967681,52.74567449562684],[-127.38658713084858,52.745816226351025],[-127.38640711354932,52.74595846845724],[-127.38623181568119,52.746103452188116],[-127.38608099458531,52.746259364043645],[-127.38594047593968,52.7464185075498],[-127.38573869689918,52.74654812006989],[-127.385500225413,52.746661908572094],[-127.38522051423057,52.74670612357977],[-127.3849503465564,52.74675808035963],[-127.38465544974605,52.746791829447176],[-127.38435728749997,52.746810479787634],[-127.3840720423345,52.74685532233153],[-127.38378899936222,52.74691134712232],[-127.3835068543053,52.746966239722404],[-127.38321787924774,52.747010568231964],[-127.38292099734475,52.747040408728125],[-127.38263982474146,52.7470106646498],[-127.38229045287059,52.74690885725036],[-127.38203833673025,52.74700318832267],[-127.38179216113744,52.74710864876502],[-127.38154299542171,52.74720798348412],[-127.38128493061839,52.74729060913309],[-127.38100805532683,52.74733646636663],[-127.38070844308237,52.74733887596004],[-127.38040591440216,52.747337400496136],[-127.38011015990408,52.747344802655974],[-127.37981445659375,52.747353333326544],[-127.37951895495463,52.74736857727102],[-127.37922555804354,52.7473910859885],[-127.3789322364724,52.747416399798496],[-127.37863892910501,52.74744170373568],[-127.37834459630245,52.747464221245686],[-127.37804858874928,52.747492362172906],[-127.37775238236283,52.74751434425656],[-127.37745997522067,52.7475104914229],[-127.37717220992143,52.74747744905963],[-127.37688671469883,52.74742867785375],[-127.37660194193518,52.7473737370445],[-127.37631543794309,52.74732217856124],[-127.37602643320541,52.747279615890704],[-127.37572647928525,52.74724278551767],[-127.37544034223954,52.747260715948386],[-127.37516380338839,52.74731720831806],[-127.37488947884677,52.7473848740013],[-127.3746173148053,52.747462045753366],[-127.37434995697085,52.74754420898922],[-127.37408636504668,52.74762856025758],[-127.3738246960989,52.74771457419365],[-127.37356504627515,52.74780616832],[-127.37331493728699,52.74790549628435],[-127.37308184964802,52.7480152772087],[-127.37288933501624,52.748145870295374],[-127.37276115041384,52.74831494963957],[-127.3726016980881,52.74846365408335],[-127.37236950427305,52.74857229316645],[-127.37210988208375,52.74866500448638],[-127.37183487590501,52.74874052598244],[-127.37155544268089,52.748794236787326],[-127.3712581778955,52.74881228708239],[-127.37095491945344,52.74881751201839],[-127.37066343501506,52.748842218517616],[-127.37039183313928,52.7489087296401],[-127.37013711891974,52.74900978129189],[-127.36992027732572,52.74913449326554],[-127.36975229531015,52.74927825379065],[-127.36961831393872,52.74944066283697],[-127.3695676095394,52.74962452526106],[-127.3694789975703,52.74978416209564],[-127.36938901151011,52.74995839541563],[-127.36930956131984,52.75014314949338],[-127.36920893220442,52.7503040473427],[-127.3689673008176,52.75040831501067],[-127.36872584732986,52.7505181755553],[-127.36854195392867,52.75065819234073],[-127.3684229486913,52.7508249174029],[-127.36827287313982,52.750977424560894],[-127.36805408924167,52.75109991364098],[-127.36780960643189,52.75120252625246],[-127.36753365910177,52.751278604194475],[-127.36730415594037,52.75138496850793],[-127.36712868161605,52.751527126449034],[-127.36697217001301,52.7516819486387],[-127.3668147044828,52.751836225755625],[-127.36663464993562,52.75198012210325],[-127.36643950462994,52.752116903848155],[-127.36626031397275,52.7522591036807],[-127.36615894528899,52.752426176472],[-127.36613780184668,52.752606885553035],[-127.36614830169228,52.75279002349347],[-127.36614385534648,52.75297053790056],[-127.36607782421726,52.75314000530457],[-127.36592319397836,52.75329592477191],[-127.365733749413,52.75343712222804],[-127.36549504310496,52.75354638763004],[-127.36529788857204,52.75367870707671],[-127.365142154691,52.75382904280269],[-127.36506868192431,52.75399858718975],[-127.36498140878722,52.75417166384601],[-127.3649872225677,52.754353735337624],[-127.36498467710402,52.7545353482014],[-127.36493557256415,52.75471246376441],[-127.3648659660874,52.75488644640805],[-127.36478706774096,52.75506054614752],[-127.36470723046605,52.755234091813406],[-127.36463484977054,52.75540867146566],[-127.36456349286851,52.75558603685126],[-127.36448574170768,52.755766848220134],[-127.36443574889279,52.75594508564563],[-127.36444581626435,52.75611534262657],[-127.36456340460342,52.756280985238405],[-127.36476202689963,52.756427194149246],[-127.36499373055874,52.75653377762519],[-127.36526330777414,52.756605737077585],[-127.36554926251569,52.75666741717289],[-127.36582168590927,52.756741028004434],[-127.36607344551263,52.756836166844714],[-127.36631981931001,52.75693698131261],[-127.36657156340823,52.75703156332012],[-127.36682601269824,52.757123871483614],[-127.3670804779306,52.75721617891606],[-127.36733491135388,52.75730792124954],[-127.36759026323462,52.75739909636411],[-127.36784925539943,52.75748798668362],[-127.36811464257363,52.757573439148544],[-127.36837273760266,52.75766345968021],[-127.36860988014249,52.75776549804744],[-127.36876874532364,52.75791551814664],[-127.36891309104307,52.75807580450621],[-127.36907757887141,52.75822744432512],[-127.36931106894315,52.75833120079266],[-127.3695835990281,52.758407599476946],[-127.36984348586482,52.758495354115254],[-127.37009974944486,52.75858539230051],[-127.37035605300044,52.75867710630591],[-127.37060873363097,52.75877111285271],[-127.37085597745022,52.75886965700855],[-127.37109419344215,52.75897559646816],[-127.37131614557958,52.75909574123409],[-127.371500136319,52.75924714953673],[-127.3716693592885,52.759372385138214],[-127.37187807116207,52.759513415625875],[-127.37204347755056,52.75966448461932],[-127.37222071965392,52.759808124607865],[-127.37238491993517,52.75995023121164],[-127.37264631499468,52.76005534022533],[-127.3728764004978,52.7601680966099],[-127.37311106157414,52.760278557187206],[-127.3733475464497,52.76038843100911],[-127.37357949117641,52.76050116424964],[-127.3738041588414,52.76061846585028],[-127.3740197480401,52.760742042773714],[-127.37422715769544,52.76087075468138],[-127.37442725731121,52.76100347053849],[-127.37462096119883,52.76113906774478],[-127.37479639850432,52.76128384591855],[-127.37495996311445,52.76143436749766],[-127.37513448571343,52.76157972081831],[-127.37531543923963,52.76172274769998],[-127.37547805422916,52.761872723737554],[-127.37561315994907,52.76203310133036],[-127.37567739060053,52.762211688658795],[-127.37576625117046,52.76237710123405],[-127.37599172870566,52.76249046161047],[-127.37623655537305,52.762599119847394],[-127.37642295778,52.76273816244753],[-127.37658749019127,52.76288979126265],[-127.37675382517435,52.763039712870416],[-127.37694293204845,52.76317592516494],[-127.37716847122,52.76329096838627],[-127.37742133826478,52.76338943282781],[-127.37768215272497,52.763475482607696],[-127.37795891070724,52.76353779693804],[-127.37824725476293,52.763585411918456],[-127.37853820946069,52.76362738212278],[-127.37882107476058,52.76367730189197],[-127.37908216481682,52.76377174748136],[-127.37924465588931,52.7639172273042],[-127.37934654188147,52.764083039896406],[-127.37943194398828,52.764255771638574],[-127.37951187010293,52.764431374430636],[-127.37959361617152,52.76460582589069],[-127.37969010078903,52.764776750154375],[-127.37980035204592,52.764943019812364],[-127.3799124930185,52.76510983203972],[-127.38001539551159,52.76527843870517],[-127.38011372088998,52.765448775990585],[-127.38018525393588,52.765622791243665],[-127.38023181706335,52.7657998981296],[-127.38027005846256,52.76597823280214],[-127.38030183017335,52.76615719957227],[-127.38032898794675,52.76633677659514],[-127.38035333681617,52.76651583070829],[-127.38037028074454,52.766695536906205],[-127.380377009904,52.76687535438301],[-127.38037818667027,52.767055246179],[-127.3803802836684,52.76723511815218],[-127.38036843622653,52.76741459832599],[-127.38034080313088,52.76759370837157],[-127.38031037514698,52.76777228636837],[-127.38027436435854,52.76795093005814],[-127.38023182882256,52.76812852964505],[-127.38017813919528,52.76830569557291],[-127.38011979878746,52.768482360240164],[-127.3800660903033,52.7686589703313],[-127.38002542737374,52.76883711262294],[-127.37999498233921,52.76901569056679],[-127.37996920230894,52.76919476952833],[-127.37994996182937,52.76937490133804],[-127.37993811198713,52.769554381216125],[-127.37993555678624,52.76973375167966],[-127.37994507599853,52.76991353596962],[-127.37996385731478,52.770092655274034],[-127.37998636902944,52.770272295573065],[-127.38000794521497,52.770451937892645],[-127.38002211264921,52.77063167635605],[-127.3800204783251,52.77081103585955],[-127.37999840938492,52.77099007092661],[-127.37997635849722,52.77116967067556],[-127.3799738067493,52.771349605831475],[-127.38004042720839,52.7716301616496],[-127.3799794349089,52.771811340516656],[-127.38000726222775,52.771983062963635],[-127.38014612936462,52.77214339954106],[-127.38027766352373,52.77230661997528],[-127.38035290266913,52.77248002593804],[-127.38040879097716,52.77265815211807],[-127.3804442804616,52.77283707436273],[-127.3804407372609,52.77301477030891],[-127.38041519212067,52.77320113629787],[-127.3803594418043,52.77337216558411],[-127.38033924734897,52.7735517432705],[-127.38032554183147,52.773731244545914],[-127.3803267547666,52.773912255981436],[-127.3803586953587,52.774096259339366],[-127.3803626308418,52.77427555288927],[-127.38028072961242,52.77444185038469],[-127.38014188049736,52.77459872123808],[-127.37997783466844,52.774751413894876],[-127.37981102873434,52.77490469472412],[-127.37966662599547,52.77506219519733],[-127.37956527357969,52.7752298328145],[-127.37950229142955,52.775407115759116],[-127.37946538631267,52.77558688958424],[-127.37946463398201,52.775765117219386],[-127.37950295006823,52.775945126990315],[-127.37954584528141,52.77612339706945],[-127.37960081737847,52.776302089956914],[-127.37964093666513,52.77648040159305],[-127.37964202309526,52.77665804258124],[-127.3796107045828,52.77683831549317],[-127.37954961243497,52.77701668792098],[-127.37945391441778,52.77718706531233],[-127.37932440753013,52.777346075592106],[-127.37917152201011,52.77749974732554],[-127.37900645028179,52.77764964356536],[-127.3788357573952,52.7777984847651],[-127.37866976596447,52.777948956206785],[-127.37851689415392,52.77810319173102],[-127.37838463976337,52.77826334500404],[-127.37827397500965,52.77843053450718],[-127.37817079228549,52.7785998776913],[-127.37806385678262,52.77876758803276],[-127.37793911464392,52.77893045907345],[-127.37779373449716,52.779086847199046],[-127.37763615270511,52.77923945092188],[-127.37747294347628,52.7793898877301],[-127.37730973616364,52.77954088021164],[-127.37715308660037,52.77969347225208],[-127.37700955739992,52.779849837528204],[-127.37689416243973,52.78001483924607],[-127.37679940401928,52.7801863237717],[-127.37669995714334,52.78035618640965],[-127.37657048441193,52.78051686950394],[-127.37640542800132,52.780667882231654],[-127.37625626911634,52.780822626700555],[-127.37614741312082,52.78098923656602],[-127.37605448782931,52.78116013389314],[-127.3759643903243,52.78133212777749],[-127.37586302974299,52.781500882125854],[-127.37575326755963,52.78166805809431],[-127.3756369601942,52.78183363388453],[-127.37551034333843,52.78199652379108],[-127.37536963170969,52.78215453043599],[-127.3752157760303,52.78230765158831],[-127.37505253170605,52.78245808490093],[-127.37488365905186,52.78260633323723],[-127.3747109854541,52.7827523930879],[-127.3745232746709,52.78289245963795],[-127.3743374043637,52.78303250429424],[-127.3741722582547,52.78318127274452],[-127.37403436610012,52.78334036539358],[-127.37389553749071,52.78349947778834],[-127.37374174374912,52.78365483775902],[-127.37357383687228,52.78380475845447],[-127.37335189160564,52.783920564823546],[-127.37306919797263,52.783995045015665],[-127.37304828185928,52.78421106081339],[-127.37322189778939,52.784354175741605],[-127.37342758422365,52.78448402942506],[-127.37365430628269,52.784603548613404],[-127.37386363340484,52.78473056122488],[-127.37402510651363,52.78487157547477],[-127.37411797341463,52.78504478643807],[-127.37417296701925,52.78522403639267],[-127.37420099629804,52.78540249032505],[-127.37421511123829,52.785581663202905],[-127.37421905804216,52.78576207605394],[-127.37421651390608,52.78594256493168],[-127.37421022334033,52.78612253276526],[-127.37420115538468,52.7863025420828],[-127.37417447392075,52.786483313677046],[-127.37411880729856,52.786658255572505],[-127.37398474345824,52.786821230324264],[-127.37376377362271,52.7869387114261],[-127.37351540382696,52.78704193275388],[-127.37327553996118,52.78714954636824],[-127.37308005400875,52.78727961319206],[-127.3729393520035,52.78743873681779],[-127.37282685743398,52.787608182793136],[-127.37274136782315,52.78778011923792],[-127.37266710804253,52.787954721851335],[-127.37253761497001,52.78811595543552],[-127.37237339990769,52.78826583052414],[-127.3721922387171,52.78840862247654],[-127.37201013720299,52.788550860206215],[-127.37184871425062,52.7887012577662],[-127.37170515350387,52.78885818033381],[-127.37144096195632,52.789134194498594],[-127.37129449438602,52.78928722297475],[-127.37116501022189,52.78944901960561],[-127.37105243138639,52.7896162227782],[-127.3709417296331,52.789784524736945],[-127.37082255283728,52.789949007075414],[-127.3706817227775,52.79010421048687],[-127.37046932675518,52.79022942169487],[-127.37025416971292,52.79035522965796],[-127.37006731409429,52.790494721886816],[-127.36988146471505,52.79063643479178],[-127.36970309899246,52.79078031067977],[-127.36953509589628,52.790928539757374],[-127.36938304461079,52.79108163070426],[-127.36924698413777,52.79124125993119],[-127.36912595764102,52.791406317802064],[-127.369015225844,52.791574062009154],[-127.36891289246239,52.791742819972754],[-127.36883669947257,52.791915765203306],[-127.36880811674472,52.7920959918824],[-127.36882967504079,52.79227619839639],[-127.36877396116752,52.792450581357954],[-127.36853203629968,52.792553160107154],[-127.36825737512365,52.79261969678376],[-127.36797596957504,52.79267845648469],[-127.36769047590259,52.79272606355958],[-127.36739407592196,52.79275193586531],[-127.36710050435568,52.79277889531389],[-127.36681078621821,52.79283943482036],[-127.36661037143573,52.792962257224126],[-127.36660563603616,52.793133803387065],[-127.36665063881375,52.79332102701874],[-127.36665181213685,52.7935025920154],[-127.3665868562794,52.793678758139244],[-127.36649388319725,52.793850211178395],[-127.36636155303539,52.79401091394839],[-127.36620290062211,52.794161835376855],[-127.36603674719444,52.794310602193676],[-127.36586590669586,52.79445830246103],[-127.36569410808022,52.79460489275019],[-127.36552326230645,52.79475203658032],[-127.36535616824742,52.794900813270324],[-127.36519002676127,52.79505013455365],[-127.36502294523197,52.79519891056751],[-127.36485301589109,52.79534604264777],[-127.36467931731794,52.79549153253373],[-127.3644999565821,52.79563428137063],[-127.36431686265634,52.79577651737526],[-127.36413001747154,52.79591767582991],[-127.36393558163725,52.79605388284873],[-127.36373167969269,52.796184586318226],[-127.3635144725641,52.79630592127233],[-127.36327923844865,52.79641570080048],[-127.36302891014866,52.7965178002592],[-127.3627728515917,52.796615491279454],[-127.36251960276326,52.79671370503403],[-127.36227581730445,52.796817412603254],[-127.36204996709137,52.79692987825025],[-127.36185242296106,52.79705658595747],[-127.36170113629946,52.79720629433495],[-127.361587599668,52.797374618881165],[-127.36149010579848,52.797550603086336],[-127.36138318508267,52.797722769100666],[-127.36124608094238,52.797880158174536],[-127.361061869954,52.798017362269555],[-127.3608428421128,52.79814038985126],[-127.36060019468005,52.79825080560586],[-127.36034878839027,52.798348993033805],[-127.36008763083692,52.7984327218864],[-127.3598073646742,52.79849985885094],[-127.35952320478712,52.79856143599996],[-127.35924666935706,52.798629093279544],[-127.35899109736238,52.79871331086585],[-127.35877460684073,52.798829023993385],[-127.35859627332124,52.798975678666096],[-127.35843966411822,52.79913385492417],[-127.35828480382428,52.79928863918349],[-127.35813657829138,52.79944783877499],[-127.35802482534703,52.79961445299462],[-127.35796810093058,52.79978772021805],[-127.35793566662362,52.79996575457905],[-127.35793211740453,52.79999997705131],[-127.35791909759935,52.800145838029486],[-127.35791466202929,52.80032746679183],[-127.35791576587162,52.800508475484605],[-127.35792056333561,52.800688311595806],[-127.35793461502219,52.8008674846475],[-127.35795519294224,52.80104714705688],[-127.35798040390169,52.80122619091751],[-127.35800561788825,52.80140579065968],[-127.35802897189683,52.801584855964286],[-127.35805232920272,52.80176448611458],[-127.35807754099291,52.801943529871075],[-127.358100880738,52.802122595270916],[-127.35811960227208,52.80230227003946],[-127.35814488593972,52.802483554587845],[-127.35816923368189,52.802664849944605],[-127.35818144759621,52.80284460893471],[-127.35817129799145,52.80302182015006],[-127.35810052446813,52.803191887078654],[-127.35795419545991,52.803352740708384],[-127.35782183934543,52.803514553289254],[-127.35769509025148,52.80367742166429],[-127.35755705285794,52.803835937085346],[-127.3574040121235,52.803990142486924],[-127.35726130073654,52.804147590724874],[-127.357146720743,52.80431368017847],[-127.3570592767684,52.804485615845415],[-127.35699051428773,52.80466070689278],[-127.35690586267731,52.80483261010093],[-127.35680440688793,52.805002474792474],[-127.35673746417169,52.805176414759934],[-127.35672092396106,52.80535762682968],[-127.35667262701733,52.805533592827224],[-127.35657392679522,52.80570230451191],[-127.35645470348352,52.80586844672011],[-127.35632233388876,52.80603025734644],[-127.35617301363334,52.8061849737195],[-127.35599644480176,52.80632992610923],[-127.3558367914067,52.806481398866936],[-127.35570829300602,52.806648212238706],[-127.35555790469525,52.80679845668388],[-127.35528906016565,52.80687610233393],[-127.35487186319635,52.806905013315394],[-127.35451101394597,52.806806626216655],[-127.35385145820167,52.80681087449924],[-127.35323978059307,52.80685995661054],[-127.35287392732808,52.80692582109715],[-127.35225193133685,52.80697166341709],[-127.35152018282761,52.80686744387379],[-127.35128453217234,52.80684942644668],[-127.3509365037123,52.80683269328794],[-127.35063100905796,52.80686815809411],[-127.35035171519327,52.8069094807619],[-127.35004009456325,52.80689793021266],[-127.34974422120725,52.80688508584799],[-127.3493805885298,52.80684498989001],[-127.34915091795244,52.806868926479034],[-127.34885202098923,52.80684882468253],[-127.34857351931433,52.806767962357135],[-127.34828421067172,52.80672757380726],[-127.34799072886106,52.80670236831688],[-127.34769314106536,52.806694012891214],[-127.34738180789994,52.806662285845775],[-127.34709754360877,52.80660502386639],[-127.34684293091647,52.8065451792219],[-127.34655100534005,52.806509855762314],[-127.34625759670976,52.80648688680443],[-127.34595896557998,52.8065043182948],[-127.34566654318391,52.806512155170935],[-127.34524151879317,52.806381406433935],[-127.3450293442267,52.80640009510863],[-127.34473899552026,52.806385489115485],[-127.34459711787619,52.806305849422316],[-127.34449298510182,52.80612658727367],[-127.34450181216668,52.80593482249007],[-127.34437657198441,52.805793354668275],[-127.3441300739358,52.80569585861493],[-127.34385778311525,52.8056053914308],[-127.34362202729399,52.80549488612885],[-127.34343629013146,52.8053501825439],[-127.34336315612272,52.805181207981434],[-127.34334444239845,52.80499984606026],[-127.34322032608102,52.804834826477574],[-127.34301926986055,52.80470486849505],[-127.3427862117847,52.80459152407156],[-127.34254586322618,52.80448219002542],[-127.34230919857313,52.8043722574172],[-127.34213119735186,52.80423643000365],[-127.34203560733694,52.80406267210795],[-127.34189957316772,52.80390226181298],[-127.3417359976516,52.80375281874003],[-127.34154036517758,52.8036177569263],[-127.34130903718942,52.803470208657345],[-127.34104180443748,52.803391997507575],[-127.34077814971738,52.803309826414115],[-127.34058529817989,52.80317416634843],[-127.34056569615935,52.80299393488313],[-127.34061868989167,52.80281735739093],[-127.3407351904529,52.80265182756593],[-127.34085920474689,52.80248844445496],[-127.34092058275934,52.80231289178193],[-127.34097354186652,52.8021357584833],[-127.34110786759112,52.801975619713374],[-127.3411543143246,52.8017979958077],[-127.34116539999042,52.80161853434905],[-127.34116254521632,52.80143867626712],[-127.34114295901131,52.801259000433944],[-127.34109835896044,52.801081296220886],[-127.3410241471999,52.80090729293237],[-127.34093608375406,52.80073568956877],[-127.34087851892943,52.8005592542333],[-127.34086174547991,52.800380111030655],[-127.34088583326383,52.80020050085987],[-127.34095000415493,52.80002548086089],[-127.34096592815767,52.80000007541473],[-127.3410542897115,52.799855597575025],[-127.34110462490882,52.79968353319682],[-127.34105627689054,52.7995047508018],[-127.34102540368238,52.79923161775856],[-127.34100211966148,52.799051992893226],[-127.34099183928247,52.79887277532459],[-127.34101221115557,52.79869320740585],[-127.34104655484039,52.79851460061339],[-127.34108274062123,52.79833597273185],[-127.34112453011105,52.7981578367015],[-127.34117288277453,52.79798187626584],[-127.34139366631868,52.79773556402766],[-127.34135269547367,52.79755502041337],[-127.34131365227898,52.797376687454424],[-127.34126072597253,52.79720019892708],[-127.34118652029437,52.797026195303296],[-127.3410611799188,52.79685053441994],[-127.3408866358971,52.79667600064815],[-127.34077533840428,52.79653380432677],[-127.34068583220147,52.79637510213577],[-127.34057045647579,52.79619148090873],[-127.34035674806822,52.796071194435335],[-127.34016285391033,52.79593106195452],[-127.33990769921536,52.79585158959061],[-127.33963183141418,52.795793093324754],[-127.33934786069833,52.79574253484105],[-127.33905757380074,52.795697651995475],[-127.33876550348327,52.79565559538608],[-127.33847343089892,52.7956129731746],[-127.33818590636055,52.795567491768594],[-127.33790011683821,52.79551807140164],[-127.33761344477179,52.7954703461584],[-127.33732515901092,52.79542991962795],[-127.33703332010471,52.795395137114795],[-127.33674057794079,52.79536092011138],[-127.33644613706032,52.795331770020425],[-127.33615195964204,52.795311027017775],[-127.3358572466327,52.79530260971023],[-127.33555339114585,52.79529934402581],[-127.33524327109141,52.79530343882902],[-127.33494204049616,52.79532423537189],[-127.33466298203273,52.79537112324596],[-127.33441845404808,52.79545292879728],[-127.33419814659622,52.79556695391573],[-127.3339971067533,52.795702620471474],[-127.33380662240283,52.79584937509784],[-127.33362080716277,52.79599719715642],[-127.3334376088622,52.79613938492979],[-127.33327983818722,52.796292491870425],[-127.33315489173732,52.79645587809439],[-127.33305809904458,52.796628466962396],[-127.33297540184876,52.79680649979678],[-127.33289645053999,52.796985045927286],[-127.33280804051783,52.79715866011547],[-127.33269798230606,52.797322997427464],[-127.33255492241769,52.79747145272826],[-127.33236386588604,52.797600277715794],[-127.33213040153184,52.79770996464197],[-127.33187053064064,52.797806509701054],[-127.33159925550399,52.797895328734086],[-127.33133441739126,52.7979818413641],[-127.33107325747017,52.79806718184284],[-127.33080640271677,52.79814866785462],[-127.33053662886698,52.798225702980304],[-127.33026199407861,52.7982960675346],[-127.32998432080734,52.79835861998588],[-127.3297034496033,52.79840775791637],[-127.3294085481175,52.79842399380748],[-127.32910769076207,52.798427958204705],[-127.32881389929561,52.798449784227294],[-127.328530302552,52.79850119187397],[-127.32825172149738,52.79856430638899],[-127.32797020449891,52.798622414161215],[-127.32768671010342,52.79867718110168],[-127.32740317773434,52.79873027099957],[-127.3271166596707,52.79877722486918],[-127.32682692987285,52.79881076426966],[-127.32653105095613,52.798825318191],[-127.32623423577348,52.798839881946854],[-127.32594160447076,52.79886952452151],[-127.32565103901408,52.79890587702509],[-127.32535950194195,52.798941109971715],[-127.32506673054387,52.798966277539655],[-127.32477071090833,52.79897634523397],[-127.32447337278631,52.798974097831994],[-127.32417662569028,52.79896119055169],[-127.32388411282574,52.7989347936452],[-127.32359309279913,52.798896605879975],[-127.32330387834405,52.79885671129245],[-127.32301367407216,52.79881459444712],[-127.32273501431325,52.79875552519381],[-127.32247954567033,52.798665375308964],[-127.32222577938562,52.79857016639921],[-127.32194889299333,52.79850827770193],[-127.32167016734853,52.79844696501216],[-127.32140565924156,52.79836476051333],[-127.32113051143241,52.79829893187266],[-127.32084041939613,52.798260726892366],[-127.32054504818923,52.798231547325564],[-127.32026571954842,52.79818089056809],[-127.32003907488509,52.79806126928357],[-127.31978023044822,52.797981795055136],[-127.31948658064618,52.797948110131344],[-127.31919465267518,52.79791048666665],[-127.31892044696824,52.79784463333652],[-127.31865148781979,52.79776864182813],[-127.31838606854136,52.79768644083965],[-127.31812516472178,52.79760026111181],[-127.31786962641334,52.79750730448058],[-127.31763016441434,52.79739342676641],[-127.31738554685506,52.797293056517816],[-127.31711198964766,52.7972484876573],[-127.31681129505034,52.797257467039316],[-127.31650976564597,52.79726926159502],[-127.31621259511273,52.79727203080444],[-127.3159164321708,52.79727759453807],[-127.31562054303987,52.79729156522003],[-127.31533492546085,52.79733791532933],[-127.31506986795219,52.79741822431919],[-127.31480873086933,52.7975052137865],[-127.31454368871638,52.79758608628625],[-127.31427670198636,52.797664173378095],[-127.31400969690354,52.79774169515131],[-127.3137379346927,52.79781535112214],[-127.31346612222363,52.797887886175445],[-127.31321544244219,52.797982600791734],[-127.31297245126729,52.79808619550751],[-127.31273138282396,52.79819145392567],[-127.31248648023897,52.798293383242495],[-127.31223197809658,52.79838477593144],[-127.31196019386965,52.79845842792051],[-127.31168267968741,52.79852653914424],[-127.31141755645717,52.7986051636274],[-127.31117445416854,52.79870539322532],[-127.31094198595798,52.798818953511194],[-127.31072282701194,52.798942452153966],[-127.31051878286385,52.79907418332299],[-127.31033821906496,52.79921406263873],[-127.3101897119569,52.7993698402856],[-127.30996199793852,52.79963857652149],[-127.3100072828355,52.79981236517065],[-127.30995479300734,52.799978834662305],[-127.30991271019819,52.80000003542396],[-127.30972889363694,52.800095116603735],[-127.30947749703412,52.80019767670053],[-127.3092220066502,52.80028795274491],[-127.30895889703343,52.80037215311139],[-127.30869866554502,52.80045911837128],[-127.3084470926581,52.80055607398443],[-127.30820226926859,52.8006613555547],[-127.30799522485965,52.800786399429064],[-127.30783443207548,52.800935576766705],[-127.30757064546398,52.80124058549251],[-127.30727399064543,52.80123099683868],[-127.3069743222331,52.80124386661824],[-127.30668273679446,52.80127849736595],[-127.3064422645645,52.80137420407633],[-127.3062307490078,52.80150545455754],[-127.30599630919552,52.801616219908226],[-127.30574085449794,52.80170817344794],[-127.30546806512953,52.80178013533591],[-127.30519051900752,52.8018482310592],[-127.3049272548602,52.801927940499326],[-127.30469754817676,52.80204201301917],[-127.30452647951667,52.802189623013696],[-127.30441449328355,52.80235563009192],[-127.30433623118988,52.80253079372088],[-127.30427749819393,52.80270685206919],[-127.3042318504956,52.80288501555276],[-127.30418153407565,52.80306266598422],[-127.30411253984533,52.80323716145613],[-127.30402578890103,52.80340849169831],[-127.30393065177955,52.80357879420607],[-127.30383084337713,52.803748027682424],[-127.30372822325721,52.80391672738691],[-127.30362466641529,52.80408544634695],[-127.30352299809893,52.8042547001413],[-127.30342598232319,52.80442445807405],[-127.30334859951591,52.80459849012717],[-127.30326467068107,52.80477090907583],[-127.30315180258981,52.804938601095564],[-127.30303712986112,52.80510856364059],[-127.30290742239312,52.8052725239329],[-127.30274843555273,52.805421117501815],[-127.302547880081,52.80554719077198],[-127.30231519802369,52.80565569592742],[-127.30206269492369,52.80575432410802],[-127.30180645645304,52.80585188130231],[-127.3015615352283,52.80595547246613],[-127.30133750520513,52.806073402190435],[-127.30113053590165,52.80620290650979],[-127.30093583514135,52.80633844346738],[-127.30075435847199,52.80648112335866],[-127.30059830696102,52.806634720467294],[-127.30045539658322,52.806793219922085],[-127.30031631765293,52.80695503920083],[-127.30019494609215,52.80711890375842],[-127.30011176755929,52.80728627242871],[-127.30016557696275,52.80746668521139],[-127.30015435157846,52.80764726253572],[-127.30007130600028,52.80781854804053],[-127.29991899895353,52.80797378827286],[-127.2997403228157,52.808116991240134],[-127.29955598932564,52.80825801490445],[-127.29937543616704,52.808400682118815],[-127.29919394524545,52.808543350443664],[-127.29901620290012,52.80868710676105],[-127.29884316412642,52.80883304341041],[-127.29867768936091,52.80898282344605],[-127.29852627531082,52.80913693094649],[-127.29838708151807,52.809295951222666],[-127.29825444720315,52.80945657549837],[-127.29812932794059,52.8096199140503],[-127.29800514430435,52.80978325105989],[-127.2978743817015,52.80994441005086],[-127.29774174344332,52.81010503368002],[-127.29760724640573,52.81026567768254],[-127.29747366981911,52.810426311327575],[-127.29734010708972,52.81058694463956],[-127.29720840345499,52.810748122118646],[-127.29707950985711,52.81090982429493],[-127.2969543649567,52.81107260569991],[-127.29683765481582,52.81123753538974],[-127.2967321948836,52.811406259033404],[-127.29663048181042,52.81157550605556],[-127.29652406497561,52.81174312817337],[-127.29640639783193,52.811907503001926],[-127.29626156235881,52.81206489688559],[-127.29609238429481,52.81221583444675],[-127.29592412653993,52.81236676157493],[-127.29578482736173,52.8125229728382],[-127.29569512583551,52.81269040950088],[-127.29564844412089,52.812866893682546],[-127.29562792556104,52.81304812822935],[-127.29561301483979,52.81323043063505],[-127.29559713131741,52.813411058040245],[-127.2955998460749,52.813592600951075],[-127.29552234446234,52.813763821055154],[-127.29540008360948,52.81393048689924],[-127.2952383100382,52.81408078528732],[-127.29504255024928,52.81421408122337],[-127.29482890813664,52.814339728341075],[-127.29461151485374,52.81446429560046],[-127.29440637442703,52.81459433140786],[-127.29421631950252,52.81473204623134],[-127.29403384601616,52.814874160414995],[-127.2938532312861,52.81501680972583],[-127.29366886342034,52.815157823352536],[-127.29347222328728,52.815292811882145],[-127.29326707738261,52.81542340153323],[-127.29307326315066,52.81555947902684],[-127.29290958522493,52.81570922997604],[-127.29277419863452,52.81587211889871],[-127.29264636401075,52.81603940774207],[-127.29250714040198,52.81619841120996],[-127.29233762960553,52.81633982383139],[-127.29211130528401,52.816445986469894],[-127.2918385515006,52.816522962468724],[-127.29155923537245,52.816598333282634],[-127.29131035687992,52.81669634084114],[-127.29108346444505,52.81681483665648],[-127.29086033786324,52.816934976305454],[-127.29062277588355,52.8170390268713],[-127.29034900920287,52.817113203921934],[-127.2900545560585,52.817148943998035],[-127.28976676355211,52.81712856935027],[-127.2894831558365,52.81706163865396],[-127.28921235442827,52.81698839765959],[-127.28894424698986,52.81691176401845],[-127.28867789710273,52.81683174802933],[-127.28841337246153,52.81675059059282],[-127.2881488150125,52.81666831211127],[-127.28788427535139,52.81658658876986],[-127.28762330085512,52.81649978654364],[-127.28737593232466,52.816401626365696],[-127.2871448670662,52.81628983711238],[-127.28692469589627,52.81616896144516],[-127.28670631861934,52.8160463889648],[-127.28647977447592,52.81593006559409],[-127.28622133122651,52.81583426602099],[-127.28600317696379,52.815718970623124],[-127.28586924176159,52.815560717176034],[-127.28575631300423,52.815390469386735],[-127.28560939287665,52.815233487648186],[-127.28542399361343,52.81509429528349],[-127.28518453627099,52.81498090840593],[-127.28494973473695,52.814868034969294],[-127.28480133022552,52.81472283255578],[-127.28474022888346,52.81454529155972],[-127.28468366437043,52.8143643384124],[-127.2845754969877,52.8141973997786],[-127.28446810041254,52.81402541340967],[-127.28430592700145,52.813885965100326],[-127.2840179834415,52.8138285912915],[-127.28372703237514,52.81379478682438],[-127.28343434160108,52.81376491903793],[-127.28314079916952,52.81373786636024],[-127.28284640291682,52.813713063916786],[-127.28255204067052,52.81368938118307],[-127.28225351253214,52.81368143465211],[-127.28196112667487,52.813661656191094],[-127.28167973344503,52.81360588188767],[-127.28140267382294,52.8135394163351],[-127.28112474410544,52.81347464533961],[-127.28084162975142,52.81342337109589],[-127.28054193211676,52.81340758728509],[-127.28024939757698,52.81338275805345],[-127.27998144659563,52.81331002982053],[-127.27972676628715,52.81321473100933],[-127.27948748587917,52.813106378879255],[-127.27926005754402,52.81299061627063],[-127.27904173312625,52.81286802015665],[-127.27883526082421,52.81273801368535],[-127.27864803864432,52.81259939550769],[-127.2785055881482,52.812435066506126],[-127.27835140550438,52.81228207326972],[-127.27812525621061,52.812177493746645],[-127.2778544550949,52.81210255012872],[-127.27756644826948,52.81204235481973],[-127.27728055169123,52.81199054644947],[-127.2769843465445,52.811966869946176],[-127.2767191037069,52.811890742444874],[-127.2764662486393,52.81179429597332],[-127.27622157839042,52.81169159996118],[-127.2759859976227,52.81158207973245],[-127.27575496965306,52.81146914710123],[-127.27552576927718,52.811355638233955],[-127.27530018336537,52.81123816231055],[-127.2750892122016,52.81111268147133],[-127.27489554755604,52.81097523921408],[-127.27468273592551,52.81084977764202],[-127.27444264558322,52.81074478659132],[-127.27417187488182,52.810669834247165],[-127.27388440128172,52.810627001353254],[-127.2735882570976,52.810636375309166],[-127.27329672900436,52.810675404540845],[-127.27300592138417,52.81070770033267],[-127.27266226251196,52.810681730162905],[-127.27245903996896,52.81069065852216],[-127.27215192393598,52.8107993444527],[-127.27185444944247,52.810888871214615],[-127.27156490935835,52.810932357820505],[-127.27127826463916,52.810979730712496],[-127.27099357745477,52.81103045310908],[-127.27070887278481,52.81108061010496],[-127.27042326444266,52.81113189699768],[-127.27013954464634,52.811183718672815],[-127.26985681257352,52.8112377795618],[-127.26957603732335,52.81129517206974],[-127.26929819069959,52.811357580371165],[-127.26903103515205,52.811435563805794],[-127.26876777761558,52.81151967344035],[-127.26849966529578,52.811596545164946],[-127.26822378936382,52.81166284793872],[-127.26794889898851,52.811730825108675],[-127.26768275831843,52.8118116009572],[-127.2674127029512,52.81188624950337],[-127.26712680079963,52.81192744410143],[-127.26683004062139,52.81194745974334],[-127.2665347003084,52.81198427150502],[-127.26624541325859,52.812036708592366],[-127.26613701157201,52.8120787832138],[-127.26602000161904,52.81214393172958],[-127.26581945577608,52.81227498819912],[-127.26563415397524,52.812418773750125],[-127.26546110237202,52.81256858688956],[-127.2653001830419,52.81271994569324],[-127.2651683667435,52.81288108682387],[-127.26504875103568,52.813046570562435],[-127.2649169179164,52.81320771153691],[-127.2647512407941,52.81335520239554],[-127.26455734667469,52.81349178888511],[-127.26427761941795,52.813679171205344],[-127.2642522488752,52.813858218322636],[-127.26423434128799,52.81403774095201],[-127.2641965189639,52.814141262917175],[-127.264101513855,52.814196640963225],[-127.26382232071283,52.81424560067094],[-127.26352716090108,52.81428912753131],[-127.26325129142288,52.81435598305183],[-127.26298124536349,52.81443174173371],[-127.26273512660244,52.81453077938728],[-127.26252612322651,52.814659123242485],[-127.26233126136565,52.81479459539929],[-127.26214677549166,52.81493555968545],[-127.26196513239807,52.81507816982354],[-127.26178634905008,52.81522299949833],[-127.26157437913052,52.815345760411496],[-127.26133118056207,52.815449811709755],[-127.26108321049375,52.81554942154543],[-127.26083716375808,52.815651260763154],[-127.26057086924756,52.815728094214556],[-127.26028817753459,52.815784928548375],[-127.26000045204674,52.81582892244576],[-127.25970379367288,52.815853401834424],[-127.25940706884157,52.81587563956606],[-127.25912884549963,52.81592626317246],[-127.25887606639735,52.81602088066357],[-127.25862815336005,52.81612272618365],[-127.25836196767504,52.81620348066998],[-127.25810145575882,52.81628809206965],[-127.25787914258025,52.816407038571185],[-127.25761964733117,52.816494435507344],[-127.25735536664169,52.81657740885106],[-127.25712402109662,52.816674034472946],[-127.25688596801832,52.816795389192286],[-127.25668917080256,52.816929186530274],[-127.25649807883987,52.81706741463657],[-127.25630141106683,52.81720569311447],[-127.25615548333519,52.81729972579766],[-127.25590937855618,52.817368486696445],[-127.2558612415404,52.8175012568182],[-127.25579434017031,52.817596676166374],[-127.25568165407618,52.817620297740916],[-127.25526978753248,52.81755129445637],[-127.25467690981996,52.81739511607208],[-127.254290829569,52.81728659659792],[-127.25390096951237,52.81720726615709],[-127.25368023104144,52.817064475046244],[-127.25299778163392,52.81680052672039],[-127.25275049122162,52.81657564256029],[-127.25245765524515,52.8166359285142],[-127.25227595880563,52.81658799566597],[-127.25199446989947,52.816496285761964],[-127.2517129989346,52.81637320140784],[-127.25148740433545,52.81625455981008],[-127.2512366341413,52.81616420628714],[-127.25094504930011,52.81620373576886],[-127.25065234560722,52.81623656057406],[-127.25035949363632,52.81626433811619],[-127.25006562124226,52.81628876337438],[-127.24977071362792,52.81630983649949],[-127.24947677639054,52.81633257527561],[-127.2491809958976,52.81635534189435],[-127.2488921368204,52.81639259562092],[-127.24861034676687,52.81644939200329],[-127.24833445648852,52.816516777084125],[-127.2480652902543,52.816591926677056],[-127.2478048210712,52.816678756117554],[-127.24754053503094,52.816761707197585],[-127.24726258788567,52.81682294266086],[-127.24697303148776,52.81686804463988],[-127.246679416432,52.816901989929654],[-127.24638519387685,52.81691463669183],[-127.24609258978533,52.816887481485864],[-127.24579844472747,52.816839611523896],[-127.24550855422495,52.816809619578855],[-127.24522493653701,52.816835609521945],[-127.24494828154786,52.81690915459248],[-127.24466860231661,52.81697488544179],[-127.24438091671124,52.817020526031065],[-127.24409610818518,52.81706949782429],[-127.2438172486695,52.81713129063248],[-127.2435412989106,52.81719754411988],[-127.2432634395154,52.81726156660054],[-127.24297790382577,52.817317833043944],[-127.24269907369049,52.817380743643184],[-127.2424451322498,52.817468612677935],[-127.24220943633503,52.817576462509244],[-127.24198521560615,52.817695963341315],[-127.24176955798984,52.81782208898351],[-127.24156327141984,52.81795092157976],[-127.24137398405597,52.81808910532116],[-127.2411903838376,52.818231146921626],[-127.2409992356027,52.81836934071711],[-127.24078654562905,52.818501601948256],[-127.24059630037608,52.81863922957551],[-127.2404856526436,52.81879731098673],[-127.24049107474158,52.81898387149138],[-127.2404375639796,52.819157040225775],[-127.24027455906398,52.81930446659096],[-127.24007505009675,52.819443311920516],[-127.23988883873318,52.81959153875446],[-127.23970177102407,52.81974258079146],[-127.23946480430321,52.81980784777849],[-127.23916130525016,52.81975781830518],[-127.23890755066883,52.81966074541288],[-127.23868648079618,52.819536983827064],[-127.23847082452845,52.819407569683314],[-127.23823901447282,52.819297935050244],[-127.23797573579037,52.81922505333785],[-127.23769269891234,52.81917536023761],[-127.23739887234568,52.81913867387283],[-127.23710239606805,52.819106488932576],[-127.23680945818033,52.81906810605357],[-127.23652110881032,52.81902743251674],[-127.2362317749129,52.81898509192839],[-127.23594778877734,52.81893483976572],[-127.23566637244014,52.81887727915872],[-127.23538852594088,52.818814076318226],[-127.23512917859051,52.8187159334078],[-127.23484619836911,52.81866847450188],[-127.23457725640507,52.81859172649952],[-127.23430817093534,52.8185104961994],[-127.23400413645547,52.818441405556165],[-127.2337639267679,52.818362112071945],[-127.23348072480205,52.81833874493425],[-127.23318322677311,52.818367648939535],[-127.23289190026624,52.81841666175037],[-127.23261788048627,52.81848623136749],[-127.23235930606943,52.81857524768151],[-127.23209979405266,52.818664273250455],[-127.23185351458807,52.81876100496086],[-127.23156467274286,52.818799901163736],[-127.23126660408771,52.81884113502304],[-127.2310008841309,52.81887642491176],[-127.23069651201122,52.81892444819854],[-127.23040251432013,52.8189460187177],[-127.23010630177784,52.81895472701478],[-127.22980905573375,52.81896008299721],[-127.22951193872036,52.8189699200653],[-127.22921580777069,52.81898198764984],[-127.2289218077993,52.81900299855666],[-127.22862283089563,52.819045355962245],[-127.2283231737005,52.81909613017953],[-127.2280368954398,52.81912714523347],[-127.22783916867515,52.81910287028509],[-127.22763497571601,52.81891839761058],[-127.2275824472102,52.81909546797983],[-127.22751689484194,52.81927211857157],[-127.22737071389976,52.81942439868259],[-127.22711398218743,52.819513939865246],[-127.22684288551193,52.81958850432714],[-127.22656786227368,52.819655828483164],[-127.22629383884127,52.819725374164996],[-127.22601981587152,52.819795484071086],[-127.22575538763704,52.81987558030618],[-127.22551205976315,52.81997899237101],[-127.22529435529164,52.82010063408348],[-127.22509180476237,52.82023219542195],[-127.22488737878025,52.82036322004079],[-127.224676310515,52.82048927447727],[-127.22446522587981,52.82061531971555],[-127.22426181318667,52.820749139075254],[-127.2240583519602,52.82088182880259],[-127.2238406066122,52.82100234728918],[-127.22359618535211,52.8211001626191],[-127.22332885327049,52.82117692107304],[-127.22305198781298,52.821245367784435],[-127.22277707632549,52.82131716482721],[-127.22251649347835,52.82140225256466],[-127.22226072453329,52.82149345843875],[-127.22200975324212,52.82159021776827],[-127.22176259262314,52.821689743352934],[-127.22152019723259,52.82179369302459],[-127.22128539452409,52.82190317612416],[-127.22105062241107,52.822013770242435],[-127.22081105171648,52.82211937468484],[-127.22054876218935,52.8222100885972],[-127.22028829887547,52.82230021804518],[-127.22007417213408,52.82241788517363],[-127.21991294278982,52.82256526364088],[-127.21977725594901,52.82272806757421],[-127.21964906659825,52.82289359093145],[-127.21954139753315,52.8230611515143],[-127.21941590523039,52.82322328417032],[-127.21932974238825,52.82339566020743],[-127.21923983004606,52.823566954302194],[-127.21911247696262,52.82372911484435],[-127.21898324837045,52.82389072981563],[-127.21888211908066,52.82405989843621],[-127.21879407784024,52.82423172857026],[-127.21873764538856,52.82440379537942],[-127.2186516054057,52.82458065262224],[-127.21859217177378,52.82468046395981],[-127.21855789109303,52.824749187980565],[-127.21835460111477,52.82488915494345],[-127.21819909180091,52.82504207525832],[-127.21802718055834,52.825238876309015],[-127.21810165607103,52.825373154361785],[-127.21832714915102,52.825522686201644],[-127.21855638651792,52.825640787669066],[-127.21876450004545,52.8257675183756],[-127.21896167197636,52.82590165192907],[-127.21917166236057,52.82602891834452],[-127.2193807324325,52.826156202911434],[-127.21958796213346,52.826284618048376],[-127.21979246090292,52.82641474686126],[-127.21999540682722,52.826555543439184],[-127.22011979008725,52.82671171739159],[-127.22015612697854,52.826812210834035],[-127.22022637489947,52.826961110662296],[-127.2203944041175,52.82708320702665],[-127.22051809400202,52.82718279236956],[-127.22076795101754,52.82730628811971],[-127.2209694534586,52.82742860051449],[-127.22115745923739,52.82756674398466],[-127.22135556859882,52.8277008548124],[-127.22153534893691,52.827843566395536],[-127.22169951751103,52.82799316487593],[-127.22184621564116,52.82814966965777],[-127.22197725250635,52.82831082039692],[-127.22209815579538,52.82847488291068],[-127.22221813918898,52.82863951077882],[-127.22233996595577,52.82880355444947],[-127.22248206217832,52.82896122710367],[-127.22263337250659,52.829116006151345],[-127.22278927481729,52.82926905151453],[-127.22295161054815,52.82941922320851],[-127.22312775038351,52.82956421182035],[-127.22331121483178,52.829705761493734],[-127.2234873411369,52.82985019379471],[-127.22364785499049,52.83000150429026],[-127.22380927594945,52.83015224919861],[-127.22413750343532,52.83044640155926],[-127.22418449541004,52.8304963471136],[-127.2241876558601,52.83054170158965],[-127.22416097634233,52.83061651660343],[-127.22398206364521,52.830763519180685],[-127.22383127291211,52.83091920363315],[-127.2237217089067,52.83108565714335],[-127.22365235660922,52.83126066676255],[-127.2235558837083,52.83143034600818],[-127.22345475467812,52.83159951774968],[-127.2233545616572,52.831768679626016],[-127.22325435297189,52.83193784155349],[-127.22314854994183,52.83210594085423],[-127.22305486898037,52.83227559944084],[-127.22302095708133,52.832454713556864],[-127.2230372646031,52.832634434363435],[-127.22308510733355,52.83281157616157],[-127.22316422920875,52.832977193230946],[-127.2232567326667,52.83315555539559],[-127.22332681848752,52.833330223777324],[-127.2233635585496,52.83350916672492],[-127.2233510164,52.83368806714127],[-127.22329193748507,52.83386464586843],[-127.22319267642261,52.83403435350085],[-127.22312892585909,52.83421042484563],[-127.22312381772873,52.83438923875027],[-127.22314144874571,52.83458239496371],[-127.22316201164418,52.834748612820036],[-127.22323209995088,52.834923290044046],[-127.22327900810946,52.83509988536488],[-127.22331570117736,52.83527714296895],[-127.22341810555173,52.835444193826234],[-127.2234836525771,52.83562228050651],[-127.2235324387336,52.83579997688486],[-127.2236201171405,52.835971664088206],[-127.2236698249755,52.8361487859019],[-127.22370474208927,52.836328868238716],[-127.22370432334472,52.83650876283638],[-127.22370390433957,52.83668864844975],[-127.22369192495172,52.83688715190293],[-127.22356594194412,52.83703304554251],[-127.22349452755911,52.83720135108254],[-127.22358033350115,52.83737249282287],[-127.22363007519597,52.837550743906455],[-127.22368266240578,52.83773119790369],[-127.22362324196556,52.83789601612386],[-127.22343122077194,52.8380414767236],[-127.22322765724853,52.838173042940255],[-127.22302971920719,52.83830680072887],[-127.22287325565966,52.83845973552374],[-127.22278798192,52.83863153811175],[-127.22271955049276,52.838806536581586],[-127.22264644721689,52.838981018747056],[-127.2225723901865,52.8391549458958],[-127.22249836360714,52.839329437528995],[-127.22243738346467,52.83950547895453],[-127.22238572910277,52.839681979170535],[-127.22221323960062,52.83982779011097],[-127.22200683585913,52.83995827167585],[-127.22177576484466,52.84007163287855],[-127.22152751136714,52.8401694813873],[-127.22125913498958,52.840246799678745],[-127.22103184282058,52.84036236162771],[-127.22080834797424,52.840480690078245],[-127.22056681256208,52.84058574723944],[-127.2203470976457,52.84070627704798],[-127.22016423608709,52.840847709417645],[-127.22000681593487,52.84100064988068],[-127.21985034781983,52.84115414509102],[-127.21968539262838,52.841303800990104],[-127.21944090959182,52.841403847291645],[-127.21920403811816,52.841509973856155],[-127.21902499988624,52.841655291825795],[-127.21889195038538,52.84181526724886],[-127.21877301111832,52.84198069100634],[-127.21862398892809,52.842135227919975],[-127.2184345517201,52.84227448401239],[-127.21824509740436,52.84241318404587],[-127.21789626037285,52.842571468906975],[-127.21803010703113,52.84273203783143],[-127.21817039034832,52.84289028932159],[-127.21832817035802,52.84304276423799],[-127.21850341366542,52.84318776824442],[-127.2186713171614,52.8433362104723],[-127.21882361759727,52.84349153902674],[-127.218970390489,52.843649166297304],[-127.21910518265648,52.843810280056886],[-127.21921402577473,52.84397446046065],[-127.21919598007317,52.84415621361016],[-127.21907789388499,52.84431939593291],[-127.21893927423031,52.84447998476845],[-127.218837142727,52.84464859614575],[-127.21876027903585,52.84482255808864],[-127.21869835313136,52.84499859756224],[-127.21864947435215,52.84517563136252],[-127.21860993978545,52.84535424486059],[-127.21857038875517,52.84553229362152],[-127.21852060246583,52.84570989261525],[-127.21848197323635,52.845887940702895],[-127.21847035997676,52.84606738520525],[-127.21845316846351,52.84624688754632],[-127.21843133576027,52.84642643800326],[-127.21840111200045,52.84660551059649],[-127.21834661991616,52.846781481504856],[-127.21826040516902,52.846953854163864],[-127.2181555314886,52.84712417867728],[-127.21815213239816,52.84729848984244],[-127.21821114405131,52.847476080981075],[-127.2182330153917,52.84765574288524],[-127.21824652655216,52.84783548249982],[-127.21826188266934,52.84801521192652],[-127.21826703514054,52.84819560305366],[-127.21822280678496,52.84837257906672],[-127.21815807709798,52.848548655823585],[-127.21807187388835,52.84872158388974],[-127.21796127275445,52.84888692837634],[-127.217820726429,52.8490458495611],[-127.21767642829467,52.849203697633],[-127.21755275961932,52.84936749146108],[-127.21745903435429,52.849537699456505],[-127.21740269096352,52.84971424460891],[-127.21731740368448,52.849886606542796],[-127.21720871985436,52.85005416284776],[-127.21712619715328,52.85022594004373],[-127.21708291627792,52.85040402628415],[-127.21704896514447,52.850583145570624],[-127.21698607072626,52.85075863746834],[-127.21696326033342,52.85093707640675],[-127.21697778545753,52.85112016755836],[-127.21694186168139,52.851295379974474],[-127.21681904157482,52.851456366486794],[-127.21667285584869,52.85161366764381],[-127.21651168004165,52.85176719663113],[-127.21634575094123,52.85191742123741],[-127.21617319131073,52.85206322217369],[-127.21599123668543,52.85220576672684],[-127.21580645076374,52.852346654634566],[-127.21562260185264,52.85248808843312],[-127.21544439483696,52.852631714056514],[-127.21527184532698,52.85277807830438],[-127.21498650472628,52.85304665183629],[-127.21499952509815,52.85320958462381],[-127.21508734968504,52.85338687864307],[-127.21512006911777,52.85358827866589],[-127.21516672585832,52.853757032212435],[-127.21520653364492,52.85394603040217],[-127.21527630162737,52.854109505856385],[-127.21547820332165,52.85424246542056],[-127.21575316949502,52.85432760530606],[-127.21603615848231,52.85436838667616],[-127.21632985783948,52.85439280086166],[-127.21662886642017,52.85440820215516],[-127.2169296536636,52.85442021299457],[-127.21722675481163,52.854433946890595],[-127.21752377506424,52.85444431856873],[-127.21782070072126,52.8544518930384],[-127.21811762523174,52.854458901903094],[-127.21841369243002,52.85446871634896],[-127.21870899868827,52.85448470665716],[-127.2190036550933,52.854510233990126],[-127.21929756548063,52.854541928077936],[-127.21959055488502,52.85457418689616],[-127.2198834167877,52.854601972199724],[-127.22017694478696,52.85462077473664],[-127.22047141802143,52.85460707337056],[-127.22076630006885,52.85457542573461],[-127.22107337500144,52.854547577812646],[-127.22135218458357,52.854571578329235],[-127.22157854776844,52.85468074610532],[-127.22178527322605,52.85481869281005],[-127.2219762488038,52.8549590444996],[-127.22213227402838,52.85511264379814],[-127.22232682722763,52.855247918723336],[-127.22253423822026,52.855376890825546],[-127.22274161939748,52.855505298006605],[-127.22294995535327,52.855634259754176],[-127.22315735416908,52.85576267498905],[-127.22336017751375,52.855893934941236],[-127.22354483787758,52.85604050959252],[-127.22372490709282,52.85618938227533],[-127.2239321177364,52.856311064527475],[-127.22419173816837,52.85637953317916],[-127.22449116420947,52.85640835053878],[-127.22479588184893,52.85642758992126],[-127.22509129954136,52.85644636958162],[-127.22538838523425,52.85645896238967],[-127.22568121542102,52.85648504807726],[-127.22596642503926,52.8565369902571],[-127.22625241271419,52.85658387568285],[-127.22654888351553,52.856607123783846],[-127.22684700481915,52.85662306441827],[-127.22714072726038,52.85664801640057],[-127.22741853264792,52.85670115318002],[-127.2276778674483,52.85679146771323],[-127.2279398888836,52.856878391292746],[-127.22821620790822,52.85694442611167],[-127.22849969434007,52.85700142815353],[-127.22878656070732,52.85704605673214],[-127.2290843306825,52.85704966692801],[-127.22937349606197,52.85707746744466],[-127.2296463101679,52.8571513809932],[-127.22992801954003,52.8572106397543],[-127.23021063589475,52.85726932348167],[-127.23048602359714,52.85733536276098],[-127.23074700225203,52.857417807984696],[-127.23099268308935,52.857518345232194],[-127.23123299444272,52.857625662859306],[-127.23147689876588,52.85772902413028],[-127.23172895438397,52.85782444509369],[-127.23198190008705,52.85791817951748],[-127.23223756454557,52.858009643350336],[-127.23249413654644,52.85810054121167],[-127.23274892914358,52.85819368976205],[-127.23300375670087,52.85828852303826],[-127.23325945797579,52.85838110505687],[-127.23352052955029,52.85846634962378],[-127.23378960628067,52.85853861621836],[-127.23407683033243,52.858595556725945],[-127.23437362737626,52.85862942465886],[-127.23466480928076,52.85862972772708],[-127.23494914739317,52.85858695680974],[-127.2352309255975,52.85851954618151],[-127.23551186316777,52.85845551498378],[-127.23579199212612,52.858395965725876],[-127.23606830182817,52.85833253775036],[-127.23634783650083,52.85831671244842],[-127.23664159104237,52.85834164049923],[-127.23693618705745,52.85836375254887],[-127.23723244849016,52.8583791306637],[-127.23752920967168,52.858379923772596],[-127.23804351946904,52.85840812909882],[-127.23832835040854,52.858446040329824],[-127.23863274054787,52.85842097250249],[-127.23892564562084,52.85838482622588],[-127.2392092776371,52.8583179512922],[-127.23947977763099,52.85834311751288],[-127.2397644535726,52.85840791647694],[-127.2400577871569,52.858418270415534],[-127.24035710165879,52.85841062812988],[-127.24065414033832,52.85842094147034],[-127.2409503382952,52.85843406935488],[-127.24124566271186,52.858448882398356],[-127.24170957870636,52.85847143530876],[-127.241999137116,52.85851208517109],[-127.2422895859515,52.8585516041378],[-127.24257830469624,52.85859506787524],[-127.24286078434359,52.85864811898839],[-127.24314158430064,52.85870734696713],[-127.24342065606673,52.85877108462701],[-127.24369526723407,52.85884158451519],[-127.24396265086402,52.85891889388802],[-127.24421918767605,52.85900751627865],[-127.2444640196005,52.85910915545408],[-127.24470439029879,52.859217010117455],[-127.24494287090299,52.85932431945031],[-127.24518227363096,52.859431053663535],[-127.24542077151428,52.859538361854305],[-127.24565746122373,52.85964793028081],[-127.24588957515965,52.859759788298064],[-127.24611622514638,52.859875630994104],[-127.2463337399899,52.85999716504852],[-127.24654213646967,52.86012496416877],[-127.24674414648992,52.860256757870786],[-127.2469443319075,52.86039024726608],[-127.24714543949905,52.86052316166553],[-127.2473520302778,52.86065266416681],[-127.24756504116239,52.860778726862584],[-127.24778170939743,52.8609030736636],[-127.24800023752665,52.86102684441263],[-127.24821598572068,52.86115120019151],[-127.2484271595478,52.86127840162474],[-127.2486291315107,52.861408506872756],[-127.24882101485858,52.861543766950824],[-127.24897428143353,52.861694563109765],[-127.24907610756547,52.861867756436645],[-127.24918343277123,52.8620380937611],[-127.2493486212441,52.86218315882313],[-127.2495523947041,52.862311001788356],[-127.24977452538411,52.862430803766664],[-127.25000859104487,52.86254487451491],[-127.25024446889456,52.86265724884691],[-127.25047664410394,52.8627702180138],[-127.25071884474617,52.86287579052379],[-127.25096374724576,52.86297853633127],[-127.2511986101883,52.863088113160224],[-127.25139233647056,52.863222228669784],[-127.25153470400294,52.86338153885827],[-127.25165861950248,52.86354609335922],[-127.25175199938506,52.86371602093863],[-127.25179586188068,52.86400583360651],[-127.25187077482731,52.86418099675497],[-127.25194845316929,52.86435500961114],[-127.25206030577158,52.86452024804453],[-127.2521906310561,52.86468137131891],[-127.25232651983849,52.864841314385636],[-127.25246794240714,52.865000077543],[-127.25261397470976,52.86515711471849],[-127.25276461651619,52.865312416932206],[-127.25291983664515,52.86546542859731],[-127.2530815116688,52.86561668558983],[-127.253255188171,52.86576446102907],[-127.25343984593295,52.865905950368365],[-127.25363912321392,52.86603831730466],[-127.25386485539119,52.8661524693286],[-127.25411887113599,52.86624782190846],[-127.25436745575713,52.86634827986496],[-127.25459508648264,52.86646409587792],[-127.25481634663751,52.86658445359034],[-127.255027565587,52.86671108684049],[-127.25522502428164,52.86684459130437],[-127.25540694502973,52.86698779244799],[-127.25556958886065,52.86713960054843],[-127.25570638785382,52.867298409184244],[-127.2558220163328,52.8674647243963],[-127.25591639347856,52.867636314532234],[-127.25598757610629,52.86781039399692],[-127.25601980659081,52.867988252000146],[-127.25603536220441,52.868169094590684],[-127.25606946986503,52.86834748838566],[-127.25612861919214,52.86852338194542],[-127.2561970541034,52.86869861134731],[-127.25626178524416,52.868874436186346],[-127.25631909211059,52.86905090520342],[-127.25637919920743,52.86922790911227],[-127.25643095892345,52.8694055581117],[-127.25646691323475,52.8695833760386],[-127.25646938226178,52.869762107810864],[-127.25643467481162,52.8699418018506],[-127.25639809177652,52.87012151590594],[-127.25640146543864,52.870299126143905],[-127.25648200452255,52.870474225838215],[-127.25661789633878,52.87063359882945],[-127.25680258635026,52.87077508245178],[-127.25698452740173,52.87091771595114],[-127.25713336319144,52.87107415247212],[-127.25723694037072,52.87124172469503],[-127.25731466987158,52.87141628895604],[-127.25739707528946,52.8715913679988],[-127.2575365133887,52.87174454221395],[-127.25777881582084,52.87185122895494],[-127.25802940142498,52.871955020145364],[-127.25821011629051,52.872087577953835],[-127.25828143133896,52.87226557250775],[-127.25837773926646,52.87243882533425],[-127.25858417366655,52.872559899534856],[-127.25883925869765,52.87265803700285],[-127.25906242350541,52.87277836632723],[-127.25924434936618,52.87292044058387],[-127.25927004487805,52.87309724655274],[-127.25924652620783,52.87327737717556],[-127.2592443895159,52.8735200506307],[-127.25933225774465,52.873691142523946],[-127.25945068470263,52.87385686795279],[-127.25958845744053,52.87401566135179],[-127.2597703903347,52.87415773468381],[-127.25995051158971,52.87430093895374],[-127.26012325972567,52.87444702838864],[-127.26027582231933,52.874602300120976],[-127.26041547939568,52.87476219309898],[-127.26058541437723,52.87490719124723],[-127.26081411173402,52.875025225357795],[-127.26105654019477,52.87513525739201],[-127.26124561020131,52.875266600114955],[-127.26133439493388,52.87543656881515],[-127.26140113432537,52.87561629603182],[-127.26149920696352,52.875785600052666],[-127.2615412045078,52.875915158208635],[-127.26192245404127,52.875967660283216],[-127.26221723486329,52.875991393806316],[-127.26251753162992,52.87601282581919],[-127.2626071753636,52.87602307066209],[-127.2627768426196,52.876095783601],[-127.26300732996006,52.87621098786352],[-127.26322046673214,52.87633758579206],[-127.26340429694426,52.876479624174905],[-127.26362463000206,52.87659774277135],[-127.26387601267004,52.87669534437732],[-127.26411376638292,52.876804308639116],[-127.26436778556763,52.87689684188984],[-127.26461129859231,52.87698052149177],[-127.26472236210124,52.877147997465656],[-127.26481597334161,52.877322950564206],[-127.2649292971979,52.87744109727308],[-127.26517864764901,52.877595877053984],[-127.26536435081613,52.87773790119732],[-127.2655048917674,52.87789497221906],[-127.26560575313019,52.87806368688331],[-127.26572601337298,52.878289907530295],[-127.26600225757039,52.87822136365767],[-127.26627954045352,52.878156735098464],[-127.2665687195018,52.878116634553585],[-127.26687577707673,52.87811444666388],[-127.26714765149468,52.878181003942586],[-127.2674233317064,52.87825032596581],[-127.2676953744705,52.878322484006176],[-127.26796565738711,52.87839802270341],[-127.26827475066936,52.878464175958854],[-127.26851489636454,52.878527710110355],[-127.26880553950319,52.87856828344682],[-127.26909782532093,52.87860099297258],[-127.26939338444292,52.87861909646885],[-127.26969276875396,52.87860913875076],[-127.26997220979838,52.87855456505461],[-127.27024055515392,52.87847097064328],[-127.27052301209014,52.87842420839604],[-127.27082234452398,52.87841256271001],[-127.27112048459809,52.87842335345787],[-127.27141463196412,52.87845603710704],[-127.27169570235101,52.878518557330324],[-127.27194059494663,52.87861622106927],[-127.27216563867687,52.87873482880784],[-127.27238798538832,52.87885682761221],[-127.27262300577104,52.878966360367606],[-127.27289060325931,52.87904527922256],[-127.27314825916514,52.879133827177405],[-127.27338784402957,52.879240511555956],[-127.27363557651229,52.87933925284699],[-127.27389870108703,52.87942382172862],[-127.27416088885741,52.87950840018165],[-127.27441499635384,52.87960259665371],[-127.27467193688565,52.87969787366684],[-127.27492431988286,52.879796570817675],[-127.27515932018292,52.87990553391665],[-127.27536318871405,52.880031089889926],[-127.27552674223243,52.88017837749976],[-127.27566558534278,52.880339382215624],[-127.2758875991239,52.880604836244565],[-127.27611722329225,52.88072002449438],[-127.27634866112784,52.88083407184395],[-127.27657004064962,52.88095383179448],[-127.27676944345743,52.881085602536835],[-127.27695146176076,52.8812270838015],[-127.27712429623455,52.88137314761569],[-127.27729257090944,52.8815220581482],[-127.27746267434786,52.881669836767486],[-127.27764013849743,52.88181472874991],[-127.27782217946739,52.88195676432114],[-127.2780051449366,52.882098798527544],[-127.2781890343767,52.88224081343846],[-127.27837475058487,52.88238113153309],[-127.27856504569411,52.88251915800769],[-127.27876084095973,52.88265432692055],[-127.27896302553295,52.88278549884052],[-127.27917255222567,52.882912663368955],[-127.27939125250028,52.883035809504086],[-127.27961632361328,52.88315384693406],[-127.279847781957,52.88326732237862],[-127.2800864855867,52.88337455875867],[-127.28033424092101,52.88347272996123],[-127.28059559395795,52.88355898898271],[-127.28086331909624,52.88364068598095],[-127.28112921613356,52.8837229671625],[-127.28138418614431,52.88381377706853],[-127.28161647474906,52.88392387772811],[-127.28180598227216,52.8840658347631],[-127.28194660468098,52.884222885504194],[-127.28202912115461,52.88439794602575],[-127.28206984003883,52.884575703787654],[-127.28208366609407,52.88475656116768],[-127.28207232675395,52.88493656320564],[-127.28204326644584,52.885115646650526],[-127.2819983940631,52.88529489350658],[-127.28192451395114,52.88546886173029],[-127.28182062195471,52.88563586761562],[-127.2817017879808,52.88580079473355],[-127.28157168729095,52.88596303811352],[-127.28143315100833,52.8861231406943],[-127.28128802291305,52.88628050852272],[-127.28113345527778,52.88643405183883],[-127.2809601051482,52.88658163982902],[-127.28078016509328,52.88672705779139],[-127.2806049028593,52.88687354526879],[-127.28044558448549,52.88702378598984],[-127.28031631230462,52.88718265645164],[-127.28025268459747,52.88735763243785],[-127.28021533124323,52.88753960277824],[-127.28014702318937,52.88771349988677],[-127.28002373546926,52.887885762890846],[-127.27982844284331,52.8880162115304],[-127.2795729835392,52.888096324361726],[-127.27929188345432,52.88815934825477],[-127.27900120728636,52.88821350056082],[-127.27871430332935,52.8882692967432],[-127.27842533573856,52.888318390079355],[-127.2781315372333,52.88836137549974],[-127.2778454029633,52.888412113256145],[-127.27758042822339,52.88848504461123],[-127.27735091832929,52.88859232474853],[-127.27714542068261,52.88872456523277],[-127.27694568818413,52.88886234653304],[-127.27673163541169,52.88898851944496],[-127.27650807356868,52.88910806163996],[-127.27628261594678,52.88922651216908],[-127.27606094638826,52.8893471536914],[-127.27585059414247,52.8894727198857],[-127.27565917195443,52.889608732028194],[-127.275496069596,52.88975787681035],[-127.27534715314518,52.889914721772215],[-127.27519543423652,52.8900710320459],[-127.27502575440438,52.89021800590432],[-127.2748371943874,52.890356782962854],[-127.27464016423114,52.89049228922756],[-127.27444029818936,52.89062614921588],[-127.27424323201872,52.89076053439685],[-127.27405374384385,52.890899320156194],[-127.2738793124347,52.891043546272144],[-127.27372285638734,52.891197664233346],[-127.27358616814784,52.89135884831744],[-127.27346817607916,52.89152263613028],[-127.27341762675397,52.89170026335246],[-127.27341464936089,52.89188073767024],[-127.27342466995555,52.892060515320225],[-127.27343935122937,52.892240233514535],[-127.27345310965309,52.89241997064764],[-127.27346126888642,52.892599759427576],[-127.27345731998686,52.89277912340944],[-127.27342541659404,52.89295766932233],[-127.27337952634865,52.89313524589829],[-127.27334857910975,52.89331490214827],[-127.27334197892377,52.89349877777588],[-127.27327163988643,52.893668773661354],[-127.27311788803642,52.89382006375045],[-127.27293322761908,52.89396495466741],[-127.2727579255069,52.894111994466385],[-127.27263988916314,52.8942746607733],[-127.27259218282728,52.89445393314947],[-127.27254815094423,52.894632053932135],[-127.27250971775572,52.894810105129565],[-127.2724422133977,52.89513754030504],[-127.27326604517302,52.89522612965445],[-127.27383587635117,52.895351643292315],[-127.27443710806847,52.89534400882594],[-127.2750585296109,52.8955132318668],[-127.27566576846993,52.89570614137785],[-127.27650723079886,52.89597832097553],[-127.2775914876805,52.89677125049133],[-127.2781511247014,52.89720731255851],[-127.2788705143561,52.897568221007035],[-127.27936356948521,52.89792598355091],[-127.27974943241776,52.89815545868567],[-127.28011096446417,52.89822605905592],[-127.28052640531499,52.898324646192265],[-127.28098495512982,52.89846310957532],[-127.28167335427374,52.89878230579247],[-127.28241754825153,52.899099213039925],[-127.28283959872883,52.89932380953856],[-127.28327087680742,52.899637955345746],[-127.28383395125478,52.899999983277404],[-127.28389567962485,52.900039656681884],[-127.28413544247013,52.90014742919122],[-127.28438147887695,52.90024729638986],[-127.2846545953335,52.90031828356456],[-127.28493217353655,52.900383052731556],[-127.28519000055017,52.90047213779286],[-127.28544149124363,52.900567460182685],[-127.2856902990923,52.90066616466786],[-127.28593910836442,52.90076487758369],[-127.28618972964841,52.900861884549265],[-127.28644945776658,52.90095206685113],[-127.28671646475007,52.90103656518213],[-127.2869826000051,52.901122749102846],[-127.28723495209627,52.90121525190856],[-127.28746446609868,52.90132257398436],[-127.28762998598272,52.901468701874855],[-127.2877478312493,52.90164000810629],[-127.2878433171469,52.90181043826713],[-127.2879110147047,52.90198622048984],[-127.28800532506311,52.90208717654593],[-127.28793374227331,52.90227568236978],[-127.28788940931784,52.902380398002165],[-127.2881620169436,52.902588114832746],[-127.28843201564388,52.90264791996108],[-127.28872183423258,52.902685657089805],[-127.28901980135544,52.902715449961576],[-127.28931686472265,52.90274638170996],[-127.28960678625464,52.90278746884344],[-127.28989674254524,52.90282968460761],[-127.2901849222904,52.90287471655354],[-127.2904704721752,52.90292538042763],[-127.29075068980471,52.90298394741462],[-127.29102557948151,52.903051538261295],[-127.2912969479298,52.90312532679996],[-127.29156473175998,52.90320420196194],[-127.29183073759435,52.90328533755886],[-127.29209218434289,52.903369884907455],[-127.29234736329745,52.903462910694024],[-127.29260163675168,52.903556501779036],[-127.29286132685849,52.9036444290093],[-127.29312735478206,52.90372611736155],[-127.29339965492399,52.903799899829906],[-127.29368161006761,52.90385451367848],[-127.29397215852515,52.90388494056337],[-127.29426976548848,52.90390296075714],[-127.29456738759852,52.903920980034],[-127.29486067154414,52.90394969797907],[-127.29515318756623,52.90398401846592],[-127.29544720627416,52.90400600233034],[-127.29574432037133,52.90400776878956],[-127.29604208324241,52.90400000540559],[-127.29633991420171,52.903994482029056],[-127.29663678749053,52.90398784769758],[-127.29693369709935,52.9039828978333],[-127.29723173255425,52.90398409448119],[-127.29753063814827,52.90398303926269],[-127.29783045000879,52.90398140842423],[-127.29813033041037,52.90398202654475],[-127.29842848529266,52.903987137009324],[-127.29872319007164,52.90400125983305],[-127.29901265085215,52.9040266384361],[-127.29927082073716,52.90409495969122],[-127.29955932756813,52.90421112882349],[-127.29997569062665,52.904305719684935],[-127.29987188808809,52.90441333871809],[-127.299614232788,52.9044845518059],[-127.29932061894088,52.90456736907676],[-127.29905522156474,52.904628579618986],[-127.29879020031377,52.90467185329384],[-127.29856316798576,52.904739363645795],[-127.29831524479752,52.9048244713646],[-127.29810510381532,52.904957363097374],[-127.2980005939062,52.90510309387805],[-127.29793800359793,52.9052802990826],[-127.29787071431174,52.905455879422504],[-127.29780530361684,52.905632003833986],[-127.29776320804385,52.90580898276081],[-127.29775469791018,52.9059883975114],[-127.29776297747998,52.90616819187842],[-127.29776474970323,52.90634861390923],[-127.29775251550915,52.90652806968215],[-127.29773471014569,52.90670758689193],[-127.29771875173145,52.90688708370287],[-127.29771025609114,52.90706649816621],[-127.29773155459037,52.90724613983348],[-127.29775005075659,52.90742525649904],[-127.29774157234638,52.90760523557521],[-127.29772747565924,52.90778471174682],[-127.29771804140734,52.90796413646355],[-127.29772538246003,52.908143932002666],[-127.29774111055724,52.908323643968785],[-127.29775123741986,52.90850340873725],[-127.29777646376056,52.90868917554481],[-127.29768925080688,52.90885321170098],[-127.29752984194549,52.90900122379471],[-127.29734982962346,52.909145544704636],[-127.29716231662945,52.90928827136973],[-127.29697953306037,52.90943317810956],[-127.29681362910478,52.909582390451924],[-127.29666574549944,52.90974204658482],[-127.29658153113631,52.90991276424036],[-127.29655153987277,52.91009017362004],[-127.29653463466387,52.91026912436708],[-127.29652801243037,52.91044907355453],[-127.29652419312212,52.910629556690864],[-127.29652131460725,52.91081059429766],[-127.29651190871243,52.910991138957606],[-127.2964969161884,52.91117174516002],[-127.29644643958557,52.91134938010508],[-127.29630307499869,52.9115045027237],[-127.2961098761164,52.9116444836377],[-127.29590331647158,52.911773959758335],[-127.29569482545259,52.91190122422692],[-127.29548163583108,52.912027410322516],[-127.29526747030319,52.91215193010958],[-127.29504954498759,52.912275370118415],[-127.29483156744695,52.91239713363299],[-127.29460979578214,52.912516688003855],[-127.29437280151414,52.912625766766375],[-127.29413486546741,52.91273429949803],[-127.29391023832912,52.91285220725184],[-127.2936847883717,52.91297348584997],[-127.29347354980632,52.9131024530023],[-127.29330280063279,52.91324610031912],[-127.29317725568163,52.91340607072649],[-127.29307808775006,52.913575828860374],[-127.29299115285623,52.91374994441115],[-127.2928986109464,52.91392299177006],[-127.29279568233407,52.9140916791284],[-127.29269276977566,52.91426092208482],[-127.29258138332055,52.914427451664196],[-127.29244648650041,52.91458640309602],[-127.29226738882869,52.914731261127216],[-127.29211463700257,52.914885360378044],[-127.29197320906589,52.91504381805286],[-127.29183931659126,52.91520555503887],[-127.29172042205067,52.91536993354675],[-127.29162308925964,52.91553911409776],[-127.29153986890579,52.91571317851453],[-127.29147257073672,52.915889874436004],[-127.29142674815863,52.91606802019267],[-127.29140607710202,52.916246445755355],[-127.29140891646408,52.91643245848616],[-127.2914526081533,52.916613539839815],[-127.291558157347,52.91677656615523],[-127.29172462426682,52.9169210006701],[-127.29192714742449,52.917056628997],[-127.29214262191586,52.91718875251857],[-127.29234976012133,52.91732264384327],[-127.29252545900432,52.917464169487005],[-127.29262354767455,52.91762672088909],[-127.29261991524407,52.917813925331444],[-127.29259184955853,52.91799411778822],[-127.292556265378,52.91817214234648],[-127.29251229247659,52.91835026798026],[-127.2924636532503,52.918527879972075],[-127.29241222729645,52.91870552252699],[-127.29235890635225,52.91888262099209],[-127.29230842048618,52.91906081798411],[-127.29225330216829,52.91923962169176],[-127.29217656951742,52.919412494120586],[-127.29205764963226,52.919576872706656],[-127.29187960658523,52.919726765709136],[-127.29164430866844,52.91983189226388],[-127.29138698611455,52.919917095608774],[-127.29111633756514,52.91999346967086],[-127.29083900692191,52.920064321643316],[-127.29055971062847,52.920131823309966],[-127.29028037976929,52.92019821290297],[-127.28996595248482,52.920243683465245],[-127.28964387277948,52.92028307743965],[-127.28936712016473,52.92034214726433],[-127.28918678586214,52.920447796228544],[-127.28910100300753,52.920598915509785],[-127.28907476610644,52.920778521747685],[-127.28908157508828,52.92097289150859],[-127.28909776317049,52.92116884410129],[-127.28909867939812,52.921353200653286],[-127.28909580031451,52.92153479242118],[-127.28910779039117,52.921715656433946],[-127.28915040324293,52.92189226685598],[-127.28924124213526,52.92206162447329],[-127.2893710281772,52.92222495158793],[-127.28951558089706,52.922383633780925],[-127.28968313735359,52.92253254187702],[-127.2898580797895,52.92267968318523],[-127.29000255086564,52.92283555933084],[-127.29012598308665,52.923004003059916],[-127.29021978461031,52.9231789311032],[-127.29025018434257,52.92335174785351],[-127.29018456171482,52.92352281994141],[-127.29005646162531,52.923692335372465],[-127.28991880725697,52.92385355428397],[-127.28975943415585,52.9240054802521],[-127.2895944206129,52.92415578219112],[-127.28945197973948,52.92431312585059],[-127.28932836907723,52.92447698745962],[-127.28920944087905,52.92464191835841],[-127.28908116199608,52.9248052749044],[-127.288943485163,52.92496648376532],[-127.28880583928388,52.92512825695161],[-127.28868126809365,52.925291572377745],[-127.28858012391892,52.925459105139986],[-127.28851267951379,52.92563188150313],[-127.28845929785076,52.92580730121366],[-127.2884152657449,52.925984295149576],[-127.28837967451189,52.92616288223534],[-127.2883487646467,52.92634198289453],[-127.28832440070876,52.92652212364157],[-127.2883028405009,52.926702798523486],[-127.28828314107065,52.92688289712532],[-127.28826438227982,52.92706354129224],[-127.28824465052925,52.92724307534608],[-127.28822585751281,52.9274225991002],[-127.28821265305523,52.92760206166242],[-127.28820411322206,52.92778147314787],[-127.28820023998504,52.92796138942229],[-127.28819729099952,52.92814130452643],[-127.2881943566213,52.92832121048469],[-127.28819048356516,52.9285011356621],[-127.28818474725207,52.92868107224617],[-127.28818085703519,52.9288604327192],[-127.28817790790548,52.92904034772379],[-127.28817124743014,52.92922029436063],[-127.28815990516927,52.92939973633002],[-127.28814297383578,52.9295792394447],[-127.2881335792535,52.929761466377606],[-127.288127005283,52.929944774190545],[-127.2881167033114,52.93012756689497],[-127.28809327737191,52.93030826172735],[-127.28805016124198,52.93048468906184],[-127.28797988571728,52.93065637472192],[-127.28787865824198,52.930821665601314],[-127.28775960502021,52.93098323330034],[-127.28762650079739,52.93114215720639],[-127.28748120823775,52.93129840793148],[-127.28732748943949,52.93145362987067],[-127.28716812932122,52.93160722768654],[-127.28700596623911,52.93176086487258],[-127.28684379982035,52.93191393699424],[-127.28668445330257,52.93206809877555],[-127.28653072881983,52.932223319601114],[-127.28638167034687,52.93237904509148],[-127.28622703659138,52.93253484025331],[-127.28606676328876,52.93268956710075],[-127.28590462380178,52.9328437582053],[-127.28574434843497,52.93299849354753],[-127.28558875401448,52.93315373340536],[-127.2854406449216,52.93331001202319],[-127.28530285725778,52.93346841919548],[-127.28523178951681,52.933614890408585],[-127.28516749265886,52.9337999484284],[-127.28515984610966,52.93397879322218],[-127.28514067313223,52.9341773721654],[-127.28512328740963,52.93434230960368],[-127.2851255571382,52.93450982978961],[-127.28519322781727,52.93468336931094],[-127.28530178634735,52.93485253530964],[-127.28543250338221,52.935015290733176],[-127.28558535857441,52.93516996808533],[-127.2857566967704,52.9353199514697],[-127.28592063219511,52.93547114516659],[-127.28605308134232,52.93562939803929],[-127.2861486028439,52.93579870564703],[-127.28622658584896,52.93597380845297],[-127.28628511623822,52.93615305078876],[-127.28632130229059,52.93633252826908],[-127.28633135399883,52.936511179524736],[-127.28632278738283,52.936690025233354],[-127.28629839215294,52.93686960872072],[-127.2862609705412,52.93704989935733],[-127.28621047118632,52.93722920314527],[-127.28614776776219,52.937405842874654],[-127.28607285797237,52.93757925370238],[-127.28598295626675,52.93775003088074],[-127.28587341126816,52.93791821621351],[-127.28574699545196,52.938083779365115],[-127.28560456143259,52.93824335774633],[-127.28544981879415,52.938396345947645],[-127.28527716241057,52.9385428051146],[-127.2850688467946,52.938681252260835],[-127.28483373168434,52.93879644721596],[-127.28457693455933,52.938872661715095],[-127.28429076519318,52.93890211648702],[-127.28398320239663,52.93890210905469],[-127.28367731727626,52.93889592300181],[-127.2833806646573,52.93888682920662],[-127.28308370816872,52.93886765142107],[-127.28278695456498,52.938855195048816],[-127.28249079183043,52.93886233975627],[-127.28219500056028,52.93888181664808],[-127.28189942823492,52.93890857065942],[-127.28160387227226,52.93893587962716],[-127.28130354903898,52.93895988651509],[-127.28101004135596,52.93899334017677],[-127.28073500152222,52.93905180408785],[-127.28049095745176,52.93914972053502],[-127.28026440571206,52.93927098151364],[-127.28003682940574,52.93938945583782],[-127.27980345912107,52.93950125935544],[-127.2795710288519,52.939613617019326],[-127.27934050938329,52.93972707416635],[-127.27910904950903,52.93984054105787],[-127.27888042675924,52.93995566222735],[-127.27865561164674,52.940072974064925],[-127.2784326944673,52.94019195041452],[-127.27821170502612,52.94031259096275],[-127.27799449338907,52.940435422551985],[-127.27777920947713,52.94055991836764],[-127.27756864282776,52.94068660402962],[-127.27736091328165,52.94081494408173],[-127.27715225792026,52.94094328482087],[-127.27694266032987,52.94107107950621],[-127.27675859804364,52.94121148970716],[-127.27655749379511,52.94134310960912],[-127.27635833596182,52.94147751433763],[-127.27622987490649,52.94163861463331],[-127.27611272643718,52.94180351020302],[-127.27599836491659,52.941968375425965],[-127.27583660819411,52.94216905243182],[-127.27583704615982,52.94230801747284],[-127.27581633059117,52.94248755778342],[-127.27581519181904,52.94266745078382],[-127.27579632263352,52.94284640619686],[-127.27575132975471,52.9430245328868],[-127.27570727548223,52.94320264040071],[-127.27560677743872,52.94336399266708],[-127.27540770698072,52.943594776724936],[-127.27531670889134,52.94373081399532],[-127.27533405204883,52.943811874071486],[-127.2753971297867,52.94398826503677],[-127.27546668974087,52.944163465013865],[-127.27547669571666,52.9443415515187],[-127.27546437354437,52.94452156544018],[-127.27550884985494,52.94469927850462],[-127.27554474598357,52.94487036015307],[-127.27568042540085,52.94504315807933],[-127.27578799965663,52.94521122159837],[-127.27588907798598,52.94538047612169],[-127.27590561843385,52.94555905651824],[-127.27579233830909,52.94582253283465],[-127.27554417820967,52.94572211496104],[-127.27525673201951,52.94567983473863],[-127.27498483209337,52.94565812331628],[-127.27467047163675,52.94561950422747],[-127.27437212833816,52.94561768579454],[-127.27409106357976,52.94560167511243],[-127.27378340219668,52.94559996498061],[-127.27349447862434,52.9455700243962],[-127.27319887366765,52.94556649678006],[-127.27289997533728,52.94557701751998],[-127.27260269083457,52.9455796660457],[-127.2723050695996,52.94557055437352],[-127.2720082892933,52.94555863554712],[-127.27171067003083,52.9455500782317],[-127.27141309954084,52.94554264932497],[-127.27111574825055,52.945543053378834],[-127.27081114122795,52.94554970343523],[-127.27053676896207,52.945601420120646],[-127.27031675351932,52.94572538759358],[-127.27008238391161,52.94583719050781],[-127.26982699187653,52.945931279162],[-127.26959159515853,52.94603972997665],[-127.26937340500146,52.946162555200104],[-127.2691665967497,52.946291990600194],[-127.26897115330385,52.94642746261145],[-127.26878522778115,52.9465695560322],[-127.26860210575684,52.94671217480678],[-127.26841233348449,52.94685039099736],[-127.26820738246323,52.94697979561978],[-127.26798627857352,52.94709873145702],[-127.26775473177581,52.94721161981983],[-127.26751557831612,52.94731954187085],[-127.26727069882119,52.947423042167514],[-127.26702293146083,52.9475237667311],[-127.26677417204344,52.94762226895697],[-127.26652349752162,52.94771910567783],[-127.26627000027064,52.94781485148361],[-127.2660145396919,52.94790781155774],[-127.26575526557004,52.94799745886622],[-127.26549303710017,52.94808208962688],[-127.26522691338025,52.94816115805543],[-127.2649539745981,52.9482307685002],[-127.26467324502289,52.94828869892794],[-127.26438670854121,52.94833996672675],[-127.26409918034055,52.94838900303229],[-127.26381265740247,52.94844026927126],[-127.26353098552002,52.948498207050484],[-127.26325129325872,52.94856004989872],[-127.26297257439855,52.948623558222984],[-127.26269291348414,52.9486865111369],[-127.26241222781877,52.94874612117939],[-127.26212949617614,52.94880013992687],[-127.26184181288092,52.94884413357108],[-127.26154912789498,52.948876408092936],[-127.26125348965219,52.94890366581088],[-127.26095978155446,52.94893315251035],[-127.2606670636461,52.948964860336794],[-127.26037340436811,52.94899602163114],[-127.26008068404398,52.949027172140696],[-127.25978794838046,52.94905832208171],[-127.25949427136419,52.94908892548369],[-127.2591996028716,52.949117288354934],[-127.25890585872735,52.94914564956831],[-127.25861216377086,52.94917568610734],[-127.25832044810048,52.949209618776834],[-127.25802601165533,52.94924638605276],[-127.25772626294822,52.94929217503714],[-127.25749045257038,52.94938827747567],[-127.25731560926523,52.94952854808847],[-127.25716456917057,52.94968593985144],[-127.2570155227454,52.94984723709308],[-127.25684935394536,52.9499975007643],[-127.25667472124736,52.95014505719578],[-127.25649160792116,52.95028934168923],[-127.25629320318534,52.95042146115943],[-127.25605952824284,52.95052705936116],[-127.25578583345417,52.95060338944113],[-127.25552939232377,52.95069578077266],[-127.25530165273932,52.950813077134974],[-127.2550508341678,52.950906528166655],[-127.25477211926457,52.950970581495035],[-127.25449345441491,52.95103686607771],[-127.25422160084331,52.95111260798165],[-127.25401650371737,52.95123919115087],[-127.25383807877914,52.951385106902755],[-127.25365303687727,52.9515277216982],[-127.25342233585219,52.951640007071965],[-127.25314798500344,52.951725859388944],[-127.2529502386815,52.95184900023571],[-127.25284234291841,52.95201601334262],[-127.2527628666925,52.952197858091296],[-127.2526606932777,52.95236929294984],[-127.2524913644987,52.95250782060787],[-127.2522767375437,52.95262777760274],[-127.25203753074253,52.95273622356268],[-127.25178316339628,52.952836429318026],[-127.25152115758843,52.952930556256355],[-127.25126089919844,52.9530207370614],[-127.25099663147088,52.95310142934842],[-127.25072081644136,52.953169924821296],[-127.25044115704759,52.95323453348822],[-127.25016535659034,52.95330358335332],[-127.24990110161761,52.95338483782977],[-127.24964555384456,52.9534766415617],[-127.2493957799144,52.953575116689066],[-127.24915080376792,52.953678014250265],[-127.2489077236595,52.9537820208509],[-127.24867227938964,52.953892105386515],[-127.24844164937473,52.954007177102916],[-127.24820809960974,52.95411836129527],[-127.24796112217696,52.95421680362845],[-127.2476978476292,52.954300284039014],[-127.24742690061512,52.95437600015606],[-127.24715595401439,52.95445227150285],[-127.24689460483383,52.95453741522965],[-127.24664765449728,52.95463696618056],[-127.24641028642971,52.95474538981088],[-127.24617487946313,52.95485714534827],[-127.24593557921466,52.954963347011926],[-127.24568682564478,52.95506515636264],[-127.24541763753487,52.95513805184572],[-127.24512992664168,52.955183115894016],[-127.24478355162017,52.95523048481246],[-127.24496861880729,52.95537366465818],[-127.24514720432056,52.95551858931536],[-127.24527119948347,52.95567753937812],[-127.2453137134405,52.955855838035205],[-127.24535164064044,52.95603643553819],[-127.24541180846745,52.95621287088569],[-127.24547197517535,52.95638874136508],[-127.24551818653303,52.95656588904946],[-127.24552348397916,52.95674682252125],[-127.24554641866415,52.95692533701401],[-127.2456567076995,52.957093397180614],[-127.24592010972448,52.957172978524035],[-127.24621557150002,52.95723317704692],[-127.24646051385471,52.95731912087281],[-127.24658291758583,52.95748705197435],[-127.24659295339924,52.95767017660748],[-127.2465299240506,52.95784231158454],[-127.24644922403374,52.95801575421037],[-127.24635451600396,52.958188224279326],[-127.24624761633281,52.95835858183271],[-127.24613223717067,52.95852623169422],[-127.24600832745756,52.958688924004306],[-127.24583926345113,52.95883808048036],[-127.24565043398188,52.95898073045851],[-127.24548600459956,52.95912928149339],[-127.24539766009154,52.95929663567105],[-127.24536662707905,52.95947851780655],[-127.24529715452171,52.95965352621989],[-127.24517516825962,52.95981843854599],[-127.24502021965534,52.95997249209716],[-127.24482753881965,52.9601112543403],[-127.24458236660516,52.96020910486914],[-127.24431335694905,52.96028927543854],[-127.24405491887615,52.96037997592108],[-127.24382236058271,52.960494502134246],[-127.243654108459,52.96064029343963],[-127.24351800658816,52.9608008700769],[-127.2433743657256,52.960959284705034],[-127.2432090287531,52.96110896250147],[-127.24303237325023,52.96125427667328],[-127.242842436542,52.96139188577281],[-127.24262123580677,52.961512448994554],[-127.24238573248448,52.96162252044848],[-127.2421454450507,52.96172872388804],[-127.24190810758431,52.9618399343893],[-127.24170958589704,52.96197090785181],[-127.24156877116909,52.96213041096372],[-127.24144956878234,52.962295845483304],[-127.24133879592931,52.962462320692566],[-127.24123180004307,52.962630432541964],[-127.24112386205796,52.96279798936118],[-127.24099066374059,52.96296301490474],[-127.24086764622344,52.9631256916285],[-127.24093033196965,52.9632925804285],[-127.24106858675097,52.96346034962478],[-127.24119465049077,52.963626005704405],[-127.24137223489817,52.96376758404008],[-127.24159944296468,52.963883983701734],[-127.24184401417415,52.963988428061775],[-127.24209487462932,52.96408440484158],[-127.24235303071013,52.96417470065454],[-127.24282121866197,52.96433562573032],[-127.24305302213499,52.964449732741265],[-127.24328664081446,52.96456157874433],[-127.24353747514847,52.96465643206522],[-127.24379925232985,52.96474276855604],[-127.24406553691053,52.96482400923987],[-127.24433632747945,52.96489959823378],[-127.24460975938987,52.96496955520686],[-127.24489217218964,52.96502820964837],[-127.24517899224712,52.96507785123545],[-127.24546835482649,52.96511849964965],[-127.24576123529222,52.96515238595677],[-127.24605149093985,52.96519190280421],[-127.24633667869318,52.96524940376022],[-127.24657744034617,52.96534996074994],[-127.24678364788973,52.96548114186237],[-127.24705908354933,52.96555555480265],[-127.24731523022236,52.96564025763834],[-127.2474873153416,52.965784126514386],[-127.24763469843337,52.96594450241665],[-127.2477912565249,52.966099186417054],[-127.24799643140055,52.966226449430806],[-127.24825462958162,52.96631729685234],[-127.24853169271147,52.9663838442531],[-127.24879530581137,52.96646846478324],[-127.24904713635085,52.96656441665386],[-127.24928919871634,52.96667728207859],[-127.2494455199465,52.966824112551464],[-127.24953537182907,52.96699350596404],[-127.24960118307145,52.9671704433288],[-127.24965682883114,52.96735028573909],[-127.24970773840404,52.967527372117075],[-127.2497372466327,52.96770637101631],[-127.24976530208812,52.9678993985268],[-127.2497621874953,52.968079299312215],[-127.24975484683318,52.96827382296079],[-127.24983973744297,52.96843318237679],[-127.24999626318841,52.9685861782095],[-127.25018408026189,52.9687253934037],[-127.2502191525891,52.96890321234147],[-127.25019739101873,52.969082755056455],[-127.2501952345994,52.96926321040797],[-127.25025446677391,52.96943796668265],[-127.25036385067976,52.96960547545295],[-127.2504713870162,52.96977355958972],[-127.25055664570166,52.969945242178575],[-127.25063822479352,52.970118640318475],[-127.2507160752275,52.97029208693821],[-127.25079021303868,52.97046612877514],[-127.25085878998478,52.97064135028947],[-127.25089857059511,52.97082079544415],[-127.25101340662232,52.97098319803003],[-127.25118199398612,52.97113382273287],[-127.25134313981316,52.97128509105901],[-127.2514996978167,52.97143864032417],[-127.2516608459287,52.971589908188186],[-127.25183671589197,52.97173428626645],[-127.25204475314081,52.97186264146702],[-127.25226657102905,52.97198356082495],[-127.25250967867409,52.97209864996861],[-127.2527211191865,52.97221575187208],[-127.25296663976233,52.972317930894455],[-127.25320758917415,52.97242295529156],[-127.25343855598557,52.972537606841904],[-127.25365117261158,52.97266254843024],[-127.25383901965134,52.97280175745691],[-127.25401861544971,52.97294553679159],[-127.25421294990325,52.973082990651335],[-127.25436665421411,52.97323433406963],[-127.25448160915597,52.9734000940749],[-127.25449623846058,52.973579805682796],[-127.25451738625719,52.97375889200332],[-127.2545310761653,52.97393862253846],[-127.2545466458037,52.974118324074375],[-127.25459106565526,52.974296041851474],[-127.25473188617389,52.97445312540367],[-127.25488846981962,52.97460723468624],[-127.25501239253991,52.97479195042681],[-127.25514029330347,52.97495364490254],[-127.25518841344405,52.97513020228994],[-127.25521889173118,52.97530975379682],[-127.25524284990418,52.97548936577046],[-127.25524538459786,52.97566977077094],[-127.25527117531105,52.97584825145205],[-127.25533606572031,52.9760240652197],[-127.25544083290578,52.97619217405519],[-127.25556690779979,52.976355017108055],[-127.255704107607,52.97651549111453],[-127.25584594576213,52.97667480379436],[-127.25597849417832,52.97683589187489],[-127.25608509613248,52.97700229502308],[-127.25616760355766,52.97717456735898],[-127.25623434837955,52.97734980492044],[-127.25629181773279,52.97752681787717],[-127.25634370890151,52.97770445509379],[-127.25639373538023,52.9778821121544],[-127.25642420254408,52.97806054255265],[-127.25644536218863,52.97824018389402],[-127.25647772808053,52.97841971469486],[-127.25650930306469,52.97860429254373],[-127.2566081949032,52.97866767347904],[-127.25674259158322,52.97873292604752],[-127.25697779395426,52.978831835807945],[-127.2572233793905,52.978934561244294],[-127.25744344998834,52.97905773092331],[-127.2576377738707,52.97919350260169],[-127.25778693967683,52.97934768705631],[-127.25791493125233,52.979511627721415],[-127.25807700806115,52.979661191211115],[-127.25828148664168,52.97979292651135],[-127.25848134587324,52.97992639631336],[-127.25869314052726,52.9800535789682],[-127.2589031689468,52.98018357736527],[-127.25911686428573,52.980311850690256],[-127.25933869671691,52.98043108009481],[-127.25957594417282,52.98053501048412],[-127.25984214186771,52.98060892805417],[-127.26013099965628,52.98066019782492],[-127.2604216734341,52.98070976194773],[-127.2606970487551,52.98077797598077],[-127.26095983521361,52.98086257861784],[-127.26121724128056,52.980953962419264],[-127.26147552389357,52.981043659724804],[-127.26173199207217,52.98113505245496],[-127.26197114940094,52.98124063419393],[-127.26201894213494,52.98134210553567],[-127.26223996781523,52.981559394401366],[-127.26238643651347,52.98171640818739],[-127.262570736296,52.981859003350245],[-127.26277255055668,52.98199468640077],[-127.26291054631045,52.9821176046857],[-127.2629772018415,52.98232029175013],[-127.2630096649854,52.98250206099078],[-127.26304303683588,52.98268325563776],[-127.2629244344254,52.982836376060696],[-127.2626464140154,52.982899316539786],[-127.26236160698741,52.98295391936655],[-127.26207871275535,52.98300962170457],[-127.2618820169574,52.98304646937336],[-127.26185554010841,52.98328601621077],[-127.26186566638681,52.98347026615521],[-127.26188033036694,52.98364997576077],[-127.26190245626452,52.98382961441737],[-127.26192179145997,52.98400927396742],[-127.26192990301503,52.98418849780772],[-127.26192030074817,52.98436791129305],[-127.26192451368642,52.9845410175177],[-127.26193455728836,52.98472246199833],[-127.26189184277737,52.98491791962995],[-127.26188382281819,52.985087785731814],[-127.26184055914123,52.98526476225645],[-127.26173929954561,52.98543674719683],[-127.2615586261598,52.98557372893102],[-127.2613146014746,52.9856822414187],[-127.26107523201848,52.98579071253784],[-127.2608358445938,52.985898618515016],[-127.26063157433039,52.98602687667457],[-127.2604539495638,52.986172224687714],[-127.26022788254724,52.98628895243417],[-127.25999040560457,52.986398521699535],[-127.25977307188032,52.98652691792929],[-127.25970968637895,52.98668617744346],[-127.25977562011727,52.986864783054024],[-127.25978099874902,52.987046277233915],[-127.25975652277994,52.987196146359494],[-127.25965885449708,52.98739555215433],[-127.25953684434528,52.98756047660054],[-127.2593790061515,52.98771290027135],[-127.25921269616639,52.98786260800662],[-127.259031644647,52.98801919707571],[-127.25898349382655,52.988188935328786],[-127.25896739085988,52.988370093986134],[-127.25892695072967,52.98854815945901],[-127.25888462947235,52.98872623602062],[-127.2588217018517,52.988901179515814],[-127.2587024915429,52.98906662882949],[-127.25862455463714,52.98923892624461],[-127.25861216454695,52.989419489213184],[-127.25853891642718,52.98959285714661],[-127.25844694493306,52.98976418353174],[-127.25836152665617,52.98993600468784],[-127.25820627854766,52.99017636820945],[-127.25817235247082,52.990322975458064],[-127.25797235119649,52.99050162264767],[-127.25777003023715,52.990633216423944],[-127.25752294553483,52.990734472995065],[-127.25730351792724,52.99085617121068],[-127.25709452326807,52.99098335219887],[-127.2569158922532,52.991127584146085],[-127.25671452382564,52.99126029548948],[-127.2564374621072,52.99132600733139],[-127.25615744436969,52.99138670244414],[-127.25589012496853,52.991466878066795],[-127.25559268247683,52.99147452939827],[-127.25544649447278,52.99145367273081],[-127.2552944308693,52.9914552921537],[-127.25500688186479,52.991513832298146],[-127.25470305008133,52.991526588002316],[-127.25440123275632,52.99154436904882],[-127.25412357060196,52.991589909450326],[-127.25385040116349,52.991661741971214],[-127.25358304091243,52.99174022720995],[-127.25330988597987,52.9918126141571],[-127.2530508297101,52.99188821264491],[-127.25280037486282,52.99200238721759],[-127.25254623584303,52.9920863329533],[-127.25223673571378,52.992192168188716],[-127.2519949961402,52.9922221881728],[-127.25184723854488,52.99221142986535],[-127.2517129026136,52.99224423551487],[-127.2514268788565,52.99232347875489],[-127.25115076043178,52.99239028863943],[-127.25085771818111,52.9924208597277],[-127.25046051408357,52.99233709572855],[-127.25016420426529,52.992352010192015],[-127.24986695221709,52.99236636907453],[-127.24957079006965,52.99238631906621],[-127.24928078472996,52.99242525466877],[-127.24899487252944,52.992476473692165],[-127.24870600527778,52.99252267576182],[-127.24841812723832,52.99257055214586],[-127.24814403275113,52.99264293688845],[-127.24799921162442,52.992795762259185],[-127.24798211645462,52.992849180121794],[-127.24793215608378,52.99295897103473],[-127.24801718516088,52.99315363435411],[-127.2480243307123,52.99333342365305],[-127.24802308789073,52.993513310704465],[-127.24801717277917,52.99369323823523],[-127.24798320465199,52.99387123033069],[-127.24790055974853,52.99404412530568],[-127.24780477116545,52.994214362100976],[-127.24768925135437,52.99438032490062],[-127.2476131916975,52.99455483540631],[-127.24751923379495,52.99472393183875],[-127.24734524467,52.99486922001086],[-127.24716565533771,52.995014011289015],[-127.24705671810302,52.995181580240484],[-127.2469129413763,52.99533887558579],[-127.24671342053188,52.99547267010943],[-127.24644017912944,52.995542800155995],[-127.24617864293191,52.99563073670186],[-127.24591624584612,52.99572092310878],[-127.24566624625079,52.99581994335717],[-127.24544380261159,52.99593603799814],[-127.24524235904329,52.99606816471715],[-127.24505237238247,52.996209135505865],[-127.24487755822713,52.9963583553264],[-127.2447234320513,52.996512950867505],[-127.24459276947812,52.99667234601772],[-127.24449410463329,52.996840368661935],[-127.24441989503012,52.99701542195988],[-127.2443616677587,52.997194224388686],[-127.24431184439139,52.99737293806739],[-127.24426757085331,52.99755047245176],[-127.24423267467382,52.997729028510605],[-127.24420620057256,52.99790861633458],[-127.24418813212354,52.9980886712821],[-127.24417658580069,52.998268101522555],[-127.24418183366564,52.99844735451509],[-127.24412000842082,52.99859874250275],[-127.24397845507488,52.99867308015074],[-127.24384464400312,52.99875685721124],[-127.24365076874363,52.99886144885048],[-127.24349755076165,52.99895159840764],[-127.24321729622254,52.9991024832303],[-127.24293107295907,52.99927248177385],[-127.24269513317716,52.999438587572484],[-127.2425060074131,52.99960980290724],[-127.24236981767459,52.99974011578657],[-127.24226585820914,52.99988745489799],[-127.24220941798372,53.00000011712874],[-127.2420995065961,53.00016713507096],[-127.24203087966872,53.00034212754198],[-127.24179131270019,53.00044830892753],[-127.24149929740629,53.00048444851147],[-127.24121924721516,53.000546792788164],[-127.24097586314483,53.00065021544947],[-127.24077535658579,53.00078344459745],[-127.24054055647878,53.00089350003503],[-127.24028856590958,53.000989722903306],[-127.2400384745885,53.00108761073515],[-127.23982559674592,53.00121312357055],[-127.23969778989999,53.00137528864515],[-127.2394906223563,53.0015046586659],[-127.23920564316897,53.00155808444567],[-127.23890856273603,53.00154887895188],[-127.23861342035372,53.001574393235444],[-127.23832644283246,53.0016233551698],[-127.23804925401352,53.00168846786284],[-127.23790073130532,53.0018446801876],[-127.23786767104153,53.002023214314285],[-127.23777745551692,53.00219450370828],[-127.23771724528581,53.00237051658896],[-127.23765984285893,53.002547064762126],[-127.2376080699975,53.002724118614616],[-127.23755439910005,53.00290062752332],[-127.23751760408352,53.00307920061438],[-127.2375312312805,53.003258921012595],[-127.23761187932865,53.00343177875062],[-127.23773517604215,53.00359522337372],[-127.23786960477919,53.003755753801045],[-127.23800956933395,53.00391454045853],[-127.23814860925904,53.0040733366548],[-127.23828119097529,53.004234441847146],[-127.23839988316442,53.00439961062776],[-127.23850559392221,53.0045677217916],[-127.23860387293185,53.0047370315878],[-127.23870401904247,53.004906321679684],[-127.23881250808563,53.00507384750564],[-127.2389404548109,53.005236121285364],[-127.23911184422855,53.00538336970043],[-127.23932644914804,53.00550830611006],[-127.23956299422039,53.00561733107045],[-127.23980044974233,53.005725781171364],[-127.24001322475202,53.00585185625601],[-127.24021223992285,53.00598592934176],[-127.24034941200212,53.006144177732864],[-127.2402601726401,53.006317143842644],[-127.24016336735654,53.00648626259853],[-127.23997346426373,53.00663226132152],[-127.23994949719784,53.006802855267836],[-127.24003242057502,53.0069891352824],[-127.23996988900605,53.00714949283123],[-127.23980507344724,53.00729186538019],[-127.23960461372292,53.00742789731076],[-127.23938628314296,53.007559625054],[-127.23917168435067,53.007691322120195],[-127.23896066997919,53.00781793361694],[-127.23874398966993,53.00794236289181],[-127.23851891776862,53.00806743573066],[-127.23829764150685,53.00819415374712],[-127.23812155244735,53.008334409758234],[-127.23801702318723,53.00849519800709],[-127.23796055443971,53.00867173581101],[-127.23793229490018,53.008855266276974],[-127.23791896685312,53.009038631011634],[-127.23790744017556,53.00921974444351],[-127.23791185279198,53.00940348772877],[-127.2379478807091,53.00958241645318],[-127.23805155635606,53.0097443808312],[-127.23828048206751,53.00987981950877],[-127.23836437279874,53.010035276300265],[-127.23833775180665,53.01021093587834],[-127.23826740606457,53.01039210202317],[-127.2381764282726,53.01056956686242],[-127.23807113266079,53.010736531090664],[-127.23791884524306,53.01089278179233],[-127.23774858817623,53.0110413761971],[-127.23755659402624,53.01118066827849],[-127.237364566249,53.01131884867392],[-127.23721121780643,53.011470626824405],[-127.23709745987362,53.01163599332219],[-127.23700446098746,53.01180843076643],[-127.23691704630167,53.011980809545676],[-127.23682120589069,53.01215215593007],[-127.23673570394564,53.012325635131816],[-127.23668669139305,53.01250209362986],[-127.236643539306,53.01268745596187],[-127.23659775886058,53.01287901395546],[-127.2365705780551,53.01306757074961],[-127.23657947998299,53.013245098400034],[-127.2366438612394,53.01340412265504],[-127.23680344081099,53.013530205164585],[-127.23705825054972,53.01362391003585],[-127.23735292555382,53.01370766600106],[-127.23762737963524,53.013802849044964],[-127.23784010716753,53.01392613112335],[-127.23802808331591,53.01406479713193],[-127.23820135697952,53.01421202666447],[-127.2383654602042,53.014364399703645],[-127.2385221477753,53.01451908274887],[-127.23867695226905,53.01467267366049],[-127.23882804185037,53.01482741508542],[-127.23897546308855,53.014983880328785],[-127.2391191696227,53.01514150507533],[-127.23926104185524,53.01529971373138],[-127.23939921554681,53.01545963759184],[-127.23953459756365,53.01561959062453],[-127.23966720409055,53.01578012851818],[-127.23979426193476,53.01594297487606],[-127.23991576769849,53.01610699115587],[-127.24003264907823,53.01627274140089],[-127.24014766454619,53.016438511141786],[-127.24026175651474,53.016604855289295],[-127.24037771466227,53.016770614880144],[-127.24049646651562,53.01693634496903],[-127.24061614525445,53.01710206518307],[-127.24073397300185,53.01726780473977],[-127.24084806923149,53.01743413927644],[-127.24095474678244,53.01760168137466],[-127.24105304920884,53.01777042318606],[-127.24113739251112,53.0179409972657],[-127.24116780782751,53.01811886271763],[-127.2411684526878,53.01830096820798],[-127.24118959929886,53.018481172474594],[-127.24124889578894,53.01865704847512],[-127.24131655400289,53.01883172474136],[-127.24139075425524,53.019006323143124],[-127.24146682232315,53.01918091079373],[-127.24154287451243,53.01935493373718],[-127.24161428363824,53.01952956134104],[-127.2416791680061,53.019704822385485],[-127.2417328838148,53.019881321612864],[-127.24175771988357,53.02006036614365],[-127.24175742476794,53.020241916531006],[-127.24175339565346,53.02042350620591],[-127.24176797106048,53.020602658692056],[-127.24182532413788,53.02077575752575],[-127.24194402732017,53.02093924513312],[-127.24209156328148,53.02109851119234],[-127.24222145408552,53.02126131589699],[-127.24234277314811,53.021418616384544],[-127.2425921886447,53.02151740479649],[-127.2428615858143,53.02159693988416],[-127.24307803610169,53.02171793197625],[-127.24320978337748,53.02188016018247],[-127.24324111973088,53.02205745028916],[-127.24323237097673,53.022236848302946],[-127.2432478958456,53.02241655529474],[-127.24324849877644,53.02259641056288],[-127.24324629385497,53.02277630436878],[-127.24324782287006,53.02295614983908],[-127.24325959730567,53.0231353314686],[-127.24328351561853,53.0233143850957],[-127.24330184926478,53.02349406237157],[-127.24333042674765,53.02367250203936],[-127.24341112221653,53.023845353887396],[-127.24352342744409,53.02401283399245],[-127.24366899922458,53.024168747724886],[-127.24385890716026,53.024307392884474],[-127.24403956371307,53.02444948831227],[-127.24419997653027,53.024601327057425],[-127.24436868689472,53.024749716082674],[-127.24454108371259,53.02489638946974],[-127.24471624195553,53.025041903844986],[-127.24488956568075,53.02518800213092],[-127.24506196607626,53.0253346747192],[-127.2452408460561,53.02547959319143],[-127.24537993419905,53.02563669389235],[-127.24542061881219,53.02581389343774],[-127.24540723577053,53.02599446088711],[-127.24539195251317,53.02617392771432],[-127.24539537455094,53.0263543177248],[-127.24546492772302,53.026528406316054],[-127.24565381212457,53.02666368843069],[-127.24590514996235,53.026763014456726],[-127.2461573165261,53.02685896922355],[-127.24640417692905,53.02696450959964],[-127.24653377336838,53.02711610588013],[-127.24652794618142,53.027299399662446],[-127.24658061908251,53.02747142459355],[-127.2467142648966,53.02763362860882],[-127.24681264631562,53.02780348493727],[-127.24682068452505,53.02798158469982],[-127.24673421753053,53.02815395916831],[-127.24663552254715,53.02832366558879],[-127.24657717933496,53.02849966055156],[-127.24654226743633,53.02867821403466],[-127.24652885537614,53.028857660997865],[-127.24653600089734,53.02903745555984],[-127.24653194192078,53.02921735951416],[-127.24650730899339,53.02939636911742],[-127.24648080819698,53.02957538946244],[-127.24645149886136,53.02975444841579],[-127.24641096658794,53.02993249627558],[-127.24635543047015,53.03010902608737],[-127.24629898421693,53.03028613027457],[-127.24629117293361,53.03046551786603],[-127.2463792957432,53.03063548268295],[-127.24654805426806,53.03078443270315],[-127.24675087740992,53.03091676854245],[-127.24698391367107,53.031028048108034],[-127.24722979334909,53.03113135582868],[-127.2474085884429,53.0312717891301],[-127.24748931494989,53.03144463741899],[-127.2475375002047,53.03162231232824],[-127.24758940426474,53.03179938307292],[-127.24763572283742,53.03197707765077],[-127.24770808819873,53.032151134806114],[-127.24782687874497,53.03231573571173],[-127.24797254291504,53.0324727724881],[-127.24813113396208,53.03262518075724],[-127.24827865125845,53.03278163273831],[-127.24836401123942,53.032952754826304],[-127.24840195578672,53.033131658279956],[-127.24845199773449,53.0333087482474],[-127.24852532656782,53.03348335944203],[-127.2486209199476,53.033653243401154],[-127.24876102183882,53.03381145867381],[-127.24894269309917,53.0339541004765],[-127.24913633269514,53.034091012030494],[-127.24932904720934,53.03422793306328],[-127.24951718370558,53.034367699415355],[-127.24967206876252,53.03452070963121],[-127.24977232923435,53.03468998735751],[-127.24986796188074,53.0348604346625],[-127.25000250389162,53.0350203838298],[-127.2501592922864,53.03517393803967],[-127.25031880957539,53.035325212850935],[-127.25048480796681,53.0354747422664],[-127.25065173246178,53.03562370578781],[-127.25080665749883,53.03577726991524],[-127.25093661024403,53.035939507953124],[-127.25099965746959,53.03611366167938],[-127.25099655973897,53.036294119855704],[-127.25100936153575,53.03647497427069],[-127.25113361503401,53.03663391051238],[-127.25134755290865,53.03676107318072],[-127.25159341035037,53.03686213085541],[-127.2518584595318,53.036948971778614],[-127.25205378998248,53.03707857188035],[-127.25212524081017,53.03725263579562],[-127.25214923749871,53.037432806448315],[-127.25216573035416,53.037611936046325],[-127.25215233923731,53.03779138271152],[-127.25212960918286,53.037970928443826],[-127.25211621780012,53.03815037506736],[-127.25211872656304,53.03833021777846],[-127.2521324268722,53.03850993276256],[-127.25215265566804,53.03868902261491],[-127.25216823924768,53.038868726543406],[-127.25217260087885,53.03904854055618],[-127.25218349100001,53.0392277294371],[-127.25219813352257,53.03940744329361],[-127.25222117224835,53.03958650323361],[-127.25227403202672,53.0397635612642],[-127.25235014898401,53.039937019472795],[-127.25243838180347,53.040109219427514],[-127.25253215454906,53.04027968401575],[-127.25263429150087,53.04044838324894],[-127.25274758683129,53.0406152784821],[-127.2528868020554,53.040774053876206],[-127.25307868199,53.04091265405751],[-127.25320748621998,53.04106705700067],[-127.25324550644214,53.04124707819172],[-127.25325919605818,53.04142623707076],[-127.25325329672513,53.04160616875217],[-127.25326703450575,53.041786447734296],[-127.25334501041661,53.04195932063037],[-127.25350641608863,53.04211001502939],[-127.253733118531,53.0422258312548],[-127.25397904638727,53.04232800393768],[-127.25421494053985,53.042438118333386],[-127.25444716793501,53.04255107734692],[-127.25468122994646,53.04266233991197],[-127.25491893126603,53.042770757213184],[-127.25515848359953,53.04287803370576],[-127.25537972321317,53.04299838750749],[-127.2555863168849,53.0431284267233],[-127.25582761011202,53.043231765559135],[-127.25610075654973,53.04330618382969],[-127.25635484433606,53.0433992906097],[-127.25653649936768,53.043539123660636],[-127.2566794743782,53.04369785453687],[-127.25684646939025,53.04384736425028],[-127.25706125456857,53.04397002496986],[-127.25728709999977,53.04408752903935],[-127.25745773520556,53.044233637164155],[-127.25761365955616,53.0443877463438],[-127.25780368852483,53.044526367577944],[-127.25804686136063,53.044629117097074],[-127.25833239970869,53.0446798645322],[-127.25862836637967,53.04470416030218],[-127.25892651349206,53.04470770451678],[-127.25921965311476,53.04473091727722],[-127.25949813666283,53.044795740831745],[-127.25977128310632,53.04486959487393],[-127.26002811642317,53.04496042324228],[-127.2602236270282,53.04509449952331],[-127.2603629013977,53.045253821351935],[-127.26048549734632,53.04541781269375],[-127.260589546093,53.045586475625846],[-127.26065920984608,53.04576111793193],[-127.2606981424129,53.04593944140956],[-127.26072588336051,53.04611844920543],[-127.2607666849284,53.04629676163253],[-127.26083726039957,53.04647082923573],[-127.26090506004118,53.0466460470879],[-127.26094402773124,53.046825490687574],[-127.2610581313809,53.04698621012685],[-127.26122609786844,53.04713625912494],[-127.26139956861316,53.047282331270765],[-127.26158408496511,53.047423246666064],[-127.26176770895844,53.04756528299793],[-127.26193658877303,53.047714209538434],[-127.26203224950268,53.04788296077002],[-127.26203197428248,53.04806226766371],[-127.26200369266502,53.048242438773244],[-127.26204630297656,53.0484184810157],[-127.26217817228738,53.0485795652127],[-127.26232300376078,53.048736592853594],[-127.26245395004337,53.04889824244726],[-127.26258767411049,53.04905875049611],[-127.26273345006733,53.049215758556116],[-127.26288569214692,53.049370464923214],[-127.26304069666219,53.04952401192053],[-127.26320772046073,53.04967295646327],[-127.26339688122864,53.04981213384893],[-127.26362184860882,53.04992963531728],[-127.26387693602048,53.0500232802545],[-127.26413746260928,53.050111263155706],[-127.26437613803984,53.05021853056725],[-127.26456803329786,53.050355435512955],[-127.26476270634909,53.05049118973897],[-127.26499774903377,53.05060185677776],[-127.26524919023866,53.0506983350015],[-127.26550064942134,53.050795377310834],[-127.26574663840842,53.05089696033996],[-127.2659889921559,53.05100194379532],[-127.26623133052493,53.05110637108269],[-127.26647733964333,53.05120850823509],[-127.26672153188689,53.0513123498333],[-127.26698377342207,53.05139470488939],[-127.26726234626071,53.051460639128216],[-127.26753009445622,53.05153957192398],[-127.26777334760816,53.051642856651014],[-127.26799928038233,53.05176090432684],[-127.26821790804291,53.05188462433397],[-127.26836637597273,53.05203712295885],[-127.26844726079018,53.05221107510374],[-127.26848996877426,53.05238935519272],[-127.26855780779785,53.05256401222361],[-127.26871464592165,53.05271529083219],[-127.26892499757044,53.05284302523066],[-127.26915368470203,53.05295935565725],[-127.26936030203764,53.05308712943532],[-127.26954582836011,53.05322857744887],[-127.26972581764825,53.053372326022235],[-127.26992510098938,53.05350522510095],[-127.27016119920447,53.05361866777482],[-127.27031230772651,53.05376553228858],[-127.27030274178199,53.05394549477622],[-127.27026141208171,53.0541258079817],[-127.27034399087061,53.05429301662909],[-127.27050466268918,53.05444705769607],[-127.27070667972832,53.05457711993209],[-127.27091979140675,53.05470313564121],[-127.27111820815618,53.05483771852942],[-127.27132948768924,53.05496488284647],[-127.27157548122446,53.055065333198996],[-127.27183605471878,53.055153298854044],[-127.27208481028912,53.05525203295013],[-127.27232633001823,53.05535925385019],[-127.2725957455949,53.055430312842034],[-127.27289103687497,53.05546019308085],[-127.27318784578985,53.0554788407737],[-127.27348637062443,53.055491874938845],[-127.27378208735473,53.055474116341685],[-127.27407669017488,53.055481023283455],[-127.27437430693206,53.055495176689554],[-127.27466413066824,53.05553014996397],[-127.27495242116487,53.0555757897316],[-127.2752484396568,53.05559892339174],[-127.27554191784056,53.05563105791219],[-127.27581958800981,53.055696417187406],[-127.27609722710825,53.05576121134539],[-127.27638988134322,53.05579671462621],[-127.27668657429021,53.05581087222119],[-127.27698422820954,53.05582614829261],[-127.27728021583758,53.055848156571365],[-127.27757283793653,53.055882536634265],[-127.27786377736221,53.055923093276135],[-127.27815722575693,53.05595409204391],[-127.27845247383797,53.05598227345811],[-127.27874508079802,53.05601608599026],[-127.27903773900509,53.056051582702935],[-127.27932864721772,53.056091015447876],[-127.2796160891021,53.05613945024586],[-127.27990089027176,53.05619351622471],[-127.28018304874615,53.056252648618205],[-127.28046692459264,53.056306723277714],[-127.28075699373488,53.05634896773792],[-127.28104874771145,53.05638558099604],[-127.28146983714821,53.05643368174745],[-127.28124821911899,53.05655375520712],[-127.28119371805707,53.05672973278091],[-127.28120663764489,53.05691001713607],[-127.28120177936586,53.05708937374294],[-127.28120439727428,53.057269205044214],[-127.28120608864573,53.05744905534659],[-127.28116948060172,53.05762931226636],[-127.28124746397162,53.05779768400185],[-127.28145602877761,53.05792653641916],[-127.28169571693205,53.05803320244684],[-127.28198679335625,53.058077665383045],[-127.28222460010885,53.05818435077981],[-127.28235746722746,53.05834371638872],[-127.2824132868154,53.058520737417375],[-127.28239439394264,53.058699681588465],[-127.282364289157,53.05887875647463],[-127.2823369625985,53.05905723635162],[-127.28232372613964,53.05923780447203],[-127.28238974728343,53.05941190853437],[-127.28246137691792,53.05958650747233],[-127.28247426890297,53.0597656711112],[-127.28244978664418,53.05994524067567],[-127.28243277908051,53.06012472902993],[-127.28244755690581,53.06030443694041],[-127.28241930288375,53.060482926756904],[-127.2824583403882,53.060661241530326],[-127.28245815138744,53.06084054713897],[-127.28247946065719,53.061019619229285],[-127.28247274062878,53.061199560543514],[-127.28254438857229,53.061374159088786],[-127.28254416607116,53.06155234434485],[-127.2824737378621,53.06172737433993],[-127.28244644167381,53.06190640944494],[-127.28246773647886,53.062085481589776],[-127.2824787604302,53.06226466526725],[-127.28248045740158,53.06244451503305],[-127.28247654760965,53.06262441671018],[-127.28246608751309,53.06280383366982],[-127.28244813697157,53.0629833319602],[-127.28242833236965,53.06316285036364],[-127.282406643782,53.06334238920376],[-127.28239337242465,53.06352183660833],[-127.28239693796753,53.063701665949054],[-127.28240890396079,53.06388083923692],[-127.28242742051997,53.06406049720614],[-127.28248043708408,53.06423754814575],[-127.2825697528751,53.064409157412825],[-127.28268228584896,53.064575467031524],[-127.2828142836991,53.064736526667055],[-127.2829721937231,53.06488890427665],[-127.28314396187575,53.06503608370893],[-127.28331020709548,53.065185564201],[-127.28344684025096,53.06534545210156],[-127.28351381932029,53.06552010050459],[-127.28351085585834,53.065700000621554],[-127.28349945741176,53.06587942759309],[-127.28351516850488,53.06605911573662],[-127.28354582982742,53.066238085527154],[-127.28359696769502,53.06641459143898],[-127.28366118719688,53.06659039927999],[-127.28375800559759,53.066762481808084],[-127.28398662207668,53.06687262553566],[-127.28421544105998,53.066988925682345],[-127.28439087517222,53.06713325730537],[-127.28452660872203,53.067293718478645],[-127.28467158649855,53.067450708035366],[-127.2848544476559,53.06759272585382],[-127.28507500722297,53.067714152628646],[-127.28534194910095,53.06779305453817],[-127.28561623055974,53.067866837538396],[-127.28582756735031,53.06799229006309],[-127.28596143973218,53.068152760896275],[-127.28605542623582,53.06832376068507],[-127.28619579901515,53.06848248397257],[-127.28639614665883,53.06861533486762],[-127.28664414122235,53.06871629729206],[-127.28681219938947,53.06886351179164],[-127.28688571326576,53.06903696629372],[-127.28692383564422,53.069215297939984],[-127.28696291724138,53.0693941749453],[-127.28706620293482,53.06956282229592],[-127.2872610192263,53.069697982257956],[-127.28748343177672,53.069818263742974],[-127.28770490380593,53.06993856403469],[-127.287905280191,53.07007197687569],[-127.288141399741,53.07018146603835],[-127.28841205001247,53.07025863523465],[-127.28870709816833,53.07027670833022],[-127.28900743278759,53.07028463720696],[-127.28927525523608,53.070360723630785],[-127.28952868696082,53.070455452709666],[-127.28978031875404,53.07055244219465],[-127.29003195169767,53.07064943113814],[-127.29028360269173,53.07074697519448],[-127.29047201909735,53.07088611762582],[-127.29072180357979,53.070983690121224],[-127.29101835390533,53.07098996985016],[-127.29132219174504,53.07098945426239],[-127.29160537200437,53.07095553554483],[-127.29183451495692,53.07083592664149],[-127.29208585907374,53.07073904309803],[-127.2923372020427,53.07064215901434],[-127.29261533822014,53.070595965946794],[-127.29290382064983,53.070644357845275],[-127.29317897529772,53.070715307856155],[-127.29346987777734,53.070750788963565],[-127.2937041900241,53.07064736459206],[-127.29400001886404,53.070629555351395],[-127.2942983852512,53.0706341304434],[-127.29459637337747,53.070625817036124],[-127.29489304345822,53.07060519920304],[-127.2951899696279,53.07059297816458],[-127.29548850693496,53.07060315159774],[-127.29578467567346,53.070627353841026],[-127.29607911274263,53.070656065892805],[-127.29637185191834,53.07069039011052],[-127.29666630680582,53.07071965635096],[-127.29696328237792,53.07073937318077],[-127.29726139279428,53.07073553429026],[-127.2975580793421,53.07071546541814],[-127.29785474684796,53.070725097588344],[-127.29812706475954,53.0707949466936],[-127.2984265289817,53.07080453772985],[-127.29872417573092,53.07081583344477],[-127.29902219884323,53.07080863810321],[-127.29931989710924,53.070821608238184],[-127.29961764717304,53.070836262505864],[-127.2998998791416,53.07089367136195],[-127.30014971968095,53.070992344186735],[-127.30037217555203,53.0711126013106],[-127.30057993675834,53.07124142916559],[-127.30078310473229,53.071373113344734],[-127.30097893215645,53.0715087958144],[-127.30116553720177,53.07164906214736],[-127.30136134980225,53.07178417934705],[-127.30159295347819,53.07189761849735],[-127.3018025741496,53.072025858929536],[-127.30199748307578,53.07216211465809],[-127.30219330307133,53.07229779521798],[-127.30241575452027,53.07241749275101],[-127.30267829896441,53.07250312830913],[-127.3029534476022,53.07257293520802],[-127.30321868487995,53.0726546131313],[-127.30347668944708,53.07274477961246],[-127.30370832109949,53.072858770204334],[-127.30392345773127,53.07298359306792],[-127.30412664202234,53.07311470658559],[-127.30431695131921,53.07325324165203],[-127.30448330333084,53.073402691627884],[-127.30463669423085,53.073556767117324],[-127.30479656740233,53.07370852950566],[-127.30498597173768,53.07384763830305],[-127.30522035599117,53.07395935426615],[-127.30549815976107,53.074024087567544],[-127.30579423753004,53.07404434822121],[-127.30609226473696,53.07403657044142],[-127.30639020787925,53.07402655154708],[-127.30668832098456,53.07402156844237],[-127.30698685065526,53.074030592529816],[-127.3072742880631,53.07398258569427],[-127.3075265772699,53.07388677947315],[-127.30773389070407,53.07375729544733],[-127.30794216213636,53.07362835626619],[-127.30810393601497,53.07347751874148],[-127.30826003176105,53.07332450257038],[-127.30845403044749,53.07318787597814],[-127.30867945108561,53.073069951884555],[-127.30890678926856,53.07295312673557],[-127.30911220723203,53.072823096323994],[-127.30932045493525,53.072694154809426],[-127.30950592195748,53.072553694200884],[-127.30972274204271,53.07242970428113],[-127.30994242616569,53.072307914505686],[-127.31010230149566,53.07215653921099],[-127.31026311750259,53.072005144273206],[-127.31047516536538,53.07187839971685],[-127.31069293842359,53.07175495316618],[-127.31087647828477,53.07161339993767],[-127.31104866067135,53.071466925073246],[-127.31121607467779,53.07131769676666],[-127.31136836105205,53.07116304188715],[-127.31152159061295,53.07100893215335],[-127.31170229326692,53.07086627940666],[-127.31198568837236,53.070809340423146],[-127.31228125313125,53.0707836437136],[-127.31257795037334,53.070764101728855],[-127.3128762825107,53.07076694484846],[-127.31317076678302,53.07079673455585],[-127.31346531677308,53.07076824005026],[-127.31372459094653,53.07068747562142],[-127.31377796356055,53.070509254416685],[-127.31384265251295,53.07033371338343],[-127.31394870769066,53.07016612143676],[-127.31415694260737,53.07003717103293],[-127.31443931741273,53.06997799608916],[-127.31471419736795,53.069918339085305],[-127.31488625800942,53.0697690624712],[-127.31509543244039,53.06964065571273],[-127.31532561776166,53.069526591985706],[-127.31553955692343,53.069400937438566],[-127.31574491985073,53.0692703306149],[-127.31595124361735,53.069140842320635],[-127.3161651962195,53.06901574226367],[-127.31638294059586,53.06889284980004],[-127.31660258499717,53.06877049157333],[-127.31682034409474,53.068648153937225],[-127.31703617825637,53.06852359603963],[-127.31724249417296,53.0683940964721],[-127.31743074736242,53.068254721113604],[-127.31762946030703,53.06812082302668],[-127.31786246147654,53.068007843323805],[-127.31811952783586,53.06791699863394],[-127.31839700898487,53.06785114463937],[-127.3186893876874,53.06781370477027],[-127.31898181797628,53.067777940092135],[-127.31927323610356,53.067739944683915],[-127.31956772593144,53.06771031464645],[-127.31985608574466,53.06766395154084],[-127.3201257551092,53.067587530039496],[-127.32037891926217,53.06749168548853],[-127.32065758283873,53.067434222264104],[-127.32095778105966,53.06743814450714],[-127.32125602087581,53.067438734901295],[-127.32155267300585,53.06741860572263],[-127.32184939466079,53.06740071632606],[-127.3221418194396,53.0673649438154],[-127.32243731913346,53.06733810137805],[-127.32272872849464,53.06729953265409],[-127.32301910814479,53.067258177585735],[-127.32331050175563,53.06721961655414],[-127.32360604959956,53.06719389128622],[-127.32390166938607,53.06717096162315],[-127.32419824845877,53.06714858527],[-127.32449351765655,53.06717385519421],[-127.32478801984477,53.06720472730009],[-127.32506580923302,53.06726941483163],[-127.32533738004354,53.0673442484406],[-127.32558727618235,53.06744342330537],[-127.32577670334136,53.06758194361055],[-127.3260037716148,53.06769818371165],[-127.32627438745698,53.06777247007464],[-127.32654046156817,53.067850724653134],[-127.32678582111544,53.067953874753485],[-127.32704926145796,53.06803776106863],[-127.32728714709656,53.06814099412694],[-127.32743324805891,53.06829904093089],[-127.32743602511405,53.06847719392856],[-127.32744177359453,53.068660916784964],[-127.32747447620841,53.068839854028205],[-127.32766817527565,53.06896487544848],[-127.32792633193519,53.06905890514427],[-127.32817266398399,53.06916316212861],[-127.32834188016311,53.069312547400635],[-127.32834728191459,53.069485067520226],[-127.32828177965399,53.069662302915596],[-127.32823311670354,53.06983991367655],[-127.3282088049027,53.07001893600032],[-127.32821724523771,53.07019870164954],[-127.32823499906857,53.0703778066922],[-127.32824810529681,53.070557528794794],[-127.3282602842468,53.07073725234208],[-127.3282481316276,53.07091669367236],[-127.32821165936028,53.07109528783095],[-127.32818556509903,53.071277127209264],[-127.32833237702198,53.071427329169374],[-127.32851267770882,53.07157210682807],[-127.3286818696058,53.07172037114747],[-127.32885750960914,53.07186575655895],[-127.32902853801224,53.072012879066875],[-127.32919682402111,53.07216171765426],[-127.32936693010974,53.07230940589792],[-127.3295453337193,53.07245308268799],[-127.32973942396033,53.07258985868139],[-127.32995004284449,53.07271748301486],[-127.33017166533783,53.072837703289096],[-127.33040061038763,53.07295334909271],[-127.33063320504598,53.07306560034752],[-127.33086580341336,53.073178406953275],[-127.33109565915976,53.07329292051428],[-127.33133919196932,53.07339608189976],[-127.3315990949142,53.073485045583],[-127.3318462805685,53.07358535863926],[-127.33209437683375,53.07368509610632],[-127.33234881596806,53.07377860239876],[-127.33257960364502,53.07389254675795],[-127.33280854349276,53.07400763217758],[-127.33303931618909,53.074121019976516],[-127.33325821344573,53.0742434976433],[-127.33347894635996,53.07436484249781],[-127.33370696400694,53.07447993661274],[-127.33394689698318,53.07458760699691],[-127.3341904616345,53.074691318074166],[-127.3344313217042,53.074798421172474],[-127.33468849618971,53.0748890944451],[-127.33498000105473,53.07491213098438],[-127.33527865657686,53.0748947514074],[-127.33557668432624,53.074886899244476],[-127.33586838383704,53.07491609947409],[-127.33614358492282,53.07498526434911],[-127.3363871397217,53.07508841522718],[-127.33666410623003,53.07515419696909],[-127.33695085358616,53.07520418717117],[-127.337233182611,53.07526206231726],[-127.33751380213447,53.07532500357869],[-127.33777451316264,53.07540890624553],[-127.33800719365753,53.07552281872157],[-127.33825259268696,53.07562538010749],[-127.33848055936116,53.07573822441775],[-127.33865165428284,53.0758858883102],[-127.33883010437674,53.076029550781676],[-127.33903711456045,53.07615944137445],[-127.3392459450965,53.07628819031605],[-127.33944097601338,53.07642381930108],[-127.33961763238109,53.076569742242484],[-127.3397479788567,53.076729638033335],[-127.33984406770247,53.07690000814934],[-127.33996521038723,53.07706449070374],[-127.3400928542185,53.07722777872002],[-127.34026842977732,53.07736867448834],[-127.34048738250621,53.077491703137504],[-127.34060285015319,53.07765400812466],[-127.34071952589231,53.07794348894767],[-127.34099114575255,53.07786868389883],[-127.34126080937526,53.07779165911707],[-127.34153935272951,53.07772910135442],[-127.34183594328728,53.07770500495173],[-127.3421335436142,53.077712830478724],[-127.34241851323323,53.077764504302195],[-127.34269810840074,53.077824083113285],[-127.34299665193794,53.07783189575528],[-127.34329480796741,53.077827940700296],[-127.34359297918093,53.077823993684646],[-127.34389108200048,53.07781836122982],[-127.34418871900336,53.07782730182958],[-127.34448804805902,53.07783061914952],[-127.3447864675185,53.07783450191152],[-127.34507993891496,53.07785974166749],[-127.345365055241,53.077915889379184],[-127.34563384722631,53.0779884673839],[-127.3459331599004,53.07799122539801],[-127.34623159854199,53.077995669115175],[-127.34652352221782,53.07803099987347],[-127.34681859587621,53.078047251830114],[-127.34710099286177,53.07810622354708],[-127.34739044183256,53.07815167526103],[-127.34766742774612,53.07821687544494],[-127.34793734580776,53.07829503869152],[-127.34820003641684,53.07838113737081],[-127.34848941692456,53.07842433692544],[-127.34876629943815,53.078486173776874],[-127.34902792583465,53.078568356013484],[-127.34932004921069,53.07860928988318],[-127.34959349796411,53.07868068512866],[-127.3498652030509,53.07875602645107],[-127.3501377650637,53.07882911605105],[-127.3504040598191,53.07891068607574],[-127.3506891009267,53.078964015804004],[-127.35096962217311,53.07902244397612],[-127.35120228957338,53.079134654505516],[-127.35132259108158,53.07930025605522],[-127.35149924661188,53.07944447613514],[-127.3516814408739,53.07958640023022],[-127.35180639395091,53.079751383244755],[-127.35203618128033,53.079860818993055],[-127.35224601175118,53.07998953389448],[-127.3524134148733,53.08013666465374],[-127.35253185741983,53.080302851056516],[-127.35270205662066,53.080449384581975],[-127.3529073000438,53.08058095696839],[-127.35310700436999,53.08071426894961],[-127.35325871067158,53.080867737431674],[-127.35338550780843,53.081031585954456],[-127.35357868235263,53.08116552779871],[-127.35378298660494,53.08129654463198],[-127.35397441929601,53.081434432573495],[-127.35415664812815,53.08157690833157],[-127.35433243149275,53.08172226382427],[-127.35450451533205,53.081869337974965],[-127.35467661532198,53.08201641169109],[-127.35485145969449,53.0821617682188],[-127.3550327703243,53.082304817976436],[-127.35521130290103,53.08244845517181],[-127.35539635224218,53.08259089667729],[-127.35562812327731,53.08270309993932],[-127.35591476492942,53.08274744267252],[-127.35621412961952,53.08275073027247],[-127.35651195785985,53.08273498362269],[-127.35680552980668,53.082703595932486],[-127.35709803056986,53.08266773719191],[-127.35739054862222,53.0826324333672],[-127.35768303061249,53.08259601753626],[-127.35797445905324,53.08255568630828],[-127.35826188149196,53.082507555823675],[-127.35854527372781,53.082449940921244],[-127.3588072046772,53.08236512059308],[-127.35904403634947,53.082255378137575],[-127.35927509896321,53.08214120997588],[-127.35952733413154,53.082045292994934],[-127.35981500277477,53.08200500041947],[-127.36011384846981,53.082021176089434],[-127.36040415735549,53.08206321544921],[-127.36068747067313,53.08211991217802],[-127.36096541216713,53.08218450575132],[-127.36124342354248,53.082250783340584],[-127.36152318260385,53.082313678170834],[-127.3618082608441,53.08236698992923],[-127.36210197145888,53.08239834418473],[-127.3624005867409,53.082407228012805],[-127.36269833182409,53.08241836243953],[-127.36299458527442,53.08244127574429],[-127.36328916757421,53.082470375691805],[-127.36358291601734,53.0825028465055],[-127.36387230456793,53.08254489699784],[-127.36415649890372,53.08259988984338],[-127.36444252761343,53.082653740168126],[-127.36473618502143,53.08268284721505],[-127.36503321152652,53.082671570935],[-127.36532460036219,53.08263065715076],[-127.3656129754626,53.0825830624965],[-127.36590650031488,53.08254996717537],[-127.36620385036194,53.082548770118656],[-127.36649932687271,53.0825767310953],[-127.36678966113456,53.08261876354047],[-127.36707738244019,53.082666984652455],[-127.36736506828208,53.08271408482235],[-127.367656241245,53.08275329931961],[-127.3679491398947,53.08278801048875],[-127.36824294817153,53.08282214558965],[-127.36853668165087,53.082853483667584],[-127.36883121652427,53.08288089391163],[-127.36912831361458,53.08290098496709],[-127.36942610010097,53.082913222675856],[-127.36972386852429,53.08292489503326],[-127.37002183629161,53.082942732437125],[-127.37031028861706,53.08298421330408],[-127.37058568883323,53.08305610269273],[-127.37086535842465,53.08311561465598],[-127.37116305651745,53.08312505186907],[-127.3714607548923,53.083105342224385],[-127.37175763762998,53.083089568087374],[-127.37205757090138,53.083081602388916],[-127.37233644806155,53.08302961895581],[-127.37259827917842,53.08294196283249],[-127.3728846877434,53.0828915670846],[-127.3731782486501,53.082860138716654],[-127.37347378460336,53.082831492784386],[-127.37376848640999,53.082806208822916],[-127.37406513042374,53.0827831518178],[-127.37435974093054,53.08275507026649],[-127.37464914273508,53.08271079452493],[-127.37492563616301,53.08264314339285],[-127.37517400862853,53.08254443148213],[-127.37540499335563,53.082429120521304],[-127.37567587447418,53.082361523963705],[-127.37597592585337,53.082356908854685],[-127.3762744924335,53.08236463755417],[-127.37657274683261,53.082362283186264],[-127.37687069529224,53.08235096633962],[-127.37716867688385,53.08234021316677],[-127.3774677492583,53.082334485016574],[-127.37776607925697,53.08233492392311],[-127.37806449731056,53.082337611338176],[-127.37836295491111,53.08234197404872],[-127.37866146394626,53.082347456067644],[-127.3789599581013,53.082352937507125],[-127.37925844892915,53.08235785341835],[-127.3795569067949,53.08236221311286],[-127.37985537967923,53.08236657187855],[-127.38015383766768,53.08237093006516],[-127.3804523106747,53.0823752873229],[-127.3807507506961,53.082379088364306],[-127.3810491873428,53.08238232387794],[-127.38134760907778,53.082385558812625],[-127.38164600932075,53.08238767258261],[-127.38194433973618,53.08238810093899],[-127.382243630866,53.08238908211556],[-127.38254061413197,53.082376641585405],[-127.38282893165287,53.08232788467028],[-127.38311287383583,53.08228813461033],[-127.38339368094584,53.08235320708943],[-127.3836483216465,53.082447722632594],[-127.38391740584117,53.082525823298205],[-127.3841918472648,53.082596571793445],[-127.38447339910495,53.082655464880155],[-127.38476885181497,53.08268225993009],[-127.38506688846151,53.082673162711096],[-127.38534343821054,53.08260772766854],[-127.38557633819777,53.08249460641091],[-127.38580353341503,53.08237819856585],[-127.38606150519433,53.08228831614655],[-127.38634188159477,53.08222563098598],[-127.38663333530253,53.082186913896464],[-127.38693122474518,53.08217388684557],[-127.38722971552804,53.082178791580816],[-127.38752753880678,53.08219210390628],[-127.38782541711258,53.08220709135141],[-127.38812235362042,53.08222209807952],[-127.38841778390014,53.082247763601536],[-127.38871399515756,53.08226893654757],[-127.38901206798313,53.08226150542049],[-127.38929747020161,53.082209404902365],[-127.38956607288738,53.082130040505035],[-127.38982693904207,53.082042921841285],[-127.39009457888172,53.08196300272307],[-127.39037598142434,53.08190310195498],[-127.3906643966217,53.08185767764557],[-127.39095575541776,53.08181670959425],[-127.39124823938737,53.0817813219317],[-127.39154177572001,53.08174929210666],[-127.39183636746665,53.08172116696177],[-127.39213197793539,53.081695826255974],[-127.3924298039327,53.08168055365699],[-127.39272835020127,53.08168767618282],[-127.39302537335324,53.08170491088273],[-127.39332160137309,53.08172662791918],[-127.39361703494245,53.08175284522156],[-127.39391248353947,53.081779052646546],[-127.3942087310916,53.08180133205498],[-127.39450653563927,53.08181407115579],[-127.39480491755532,53.08181615186893],[-127.39510305650974,53.081810390026234],[-127.3954010512773,53.08180070231433],[-127.39569900571503,53.08178933780701],[-127.3959970187827,53.081780213188864],[-127.39629614012455,53.08177612220585],[-127.39659438926209,53.08177371729538],[-127.39689240202736,53.081764590418736],[-127.39718600749528,53.08173477807221],[-127.39746142388825,53.08166428025294],[-127.39773698368701,53.08159770690301],[-127.39803591864369,53.08158800139538],[-127.39833216702677,53.081610270467145],[-127.39862593630316,53.08164265416821],[-127.3989206113645,53.08167390574867],[-127.39921673160602,53.081692256273314],[-127.39951509088631,53.08169320468306],[-127.40000098776132,53.08168127913287],[-127.40005237639159,53.08168011426062],[-127.40035075395127,53.081681616194395],[-127.40064915386718,53.081684246744416],[-127.40094736510737,53.081680710614805],[-127.4012452652466,53.08166821206672],[-127.40154297641108,53.081649546842286],[-127.40183967126981,53.081628660550564],[-127.40213632850477,53.081606644321546],[-127.40243193231511,53.08158128680539],[-127.40272547719191,53.08154978482576],[-127.40301084251871,53.081497642377386],[-127.40329618533153,53.08144438779236],[-127.40358654600259,53.08140171477403],[-127.40387792596545,53.081361826114325],[-127.40416735816532,53.0813191626868],[-127.4044536998373,53.08126813473782],[-127.40474002212008,53.081216541497696],[-127.4050263065951,53.08116382733248],[-127.40531064653274,53.08110889425408],[-127.40559304189591,53.081051742276166],[-127.40586856969743,53.08098514115412],[-127.40612643145015,53.08089298318162],[-127.40639208944829,53.08081080888977],[-127.40666068843937,53.08073252579763],[-127.406936097532,53.08066200567404],[-127.4072307645842,53.080636647181976],[-127.40751711640287,53.080586167422304],[-127.40779843276172,53.080525096100075],[-127.40807193186687,53.080453475371534],[-127.40836470848645,53.08042757173753],[-127.4086576430924,53.08046274662556],[-127.40895150518807,53.080497900764726],[-127.40923650034422,53.08054717284815],[-127.40950641643182,53.08062127897216],[-127.40980368462697,53.08064631327936],[-127.41009753398764,53.08062431042731],[-127.41039086532878,53.08058718842256],[-127.41068534349492,53.08055622017214],[-127.4109618023388,53.08048959590128],[-127.41120862713562,53.08043173452466],[-127.41146495367057,53.0803222081112],[-127.41174433372585,53.0802589180495],[-127.41202860280416,53.0802022839521],[-127.41229720633929,53.080124552613576],[-127.41257073612408,53.080054597494126],[-127.41285801990392,53.08000409350559],[-127.41314730687525,53.07995804754199],[-127.41336084734344,53.079911786494186],[-127.41369228228584,53.07981144250785],[-127.4139367817444,53.079740155050274],[-127.41419299151738,53.0796552787836],[-127.4144892178767,53.07962091797112],[-127.41478678869014,53.07962687564199],[-127.41508917570604,53.07963726653496],[-127.4153816429875,53.079658417444456],[-127.41563275676104,53.07972937292966],[-127.4158334318349,53.079858086874836],[-127.41602428197884,53.08000036636],[-127.41616559452838,53.08017181215795],[-127.41636953403093,53.08031393417007],[-127.41660668177119,53.080442774325796],[-127.41685900645541,53.080521557457345],[-127.41708552600296,53.08063987324754],[-127.41731478738308,53.08075647021912],[-127.41754680584656,53.080871357138676],[-127.41778154393985,53.080983413764685],[-127.41801806268977,53.08109319824189],[-127.41825820582959,53.08119902085975],[-127.41850009239958,53.08130146003751],[-127.41876980462276,53.08136882361464],[-127.41905413713023,53.081425924882666],[-127.4192814500782,53.08151172742162],[-127.41949441704405,53.08164364959766],[-127.41967088295814,53.0817748893804],[-127.4198870330687,53.081890527298775],[-127.42014792830771,53.08197368320565],[-127.42043055781666,53.082063301266935],[-127.42074069257816,53.08213689841881],[-127.42106485095313,53.0821542923062],[-127.42134520085128,53.082148113398084],[-127.42163133531412,53.08200739210574],[-127.42187585271455,53.08193664393896],[-127.4221968789656,53.08194455114639],[-127.42249019526638,53.0819623124155],[-127.42278564818021,53.08198844781359],[-127.42308225063486,53.082020736830266],[-127.42337898527983,53.08205695036366],[-127.42367579533972,53.08209539463543],[-127.42396979032479,53.08213331624432],[-127.4242610304998,53.08217295583739],[-127.42454441453248,53.08222949063451],[-127.42482517186245,53.08229110396689],[-127.42510859136532,53.082348201818704],[-127.42536999417521,53.08241845690899],[-127.42562895934351,53.082471365875435],[-127.42589559132578,53.082557802041514],[-127.42615648802797,53.082612927905394],[-127.42634219025989,53.082795597571206],[-127.42660565190315,53.082870863672184],[-127.42690511300367,53.08296026317752],[-127.42717373688689,53.08299455649257],[-127.42745992356109,53.083050494669706],[-127.42772612937276,53.0831240486135],[-127.42797036802949,53.083239323573586],[-127.42814224110023,53.08334427507251],[-127.42844238697843,53.08342581772048],[-127.42871509521481,53.08349816120381],[-127.42899144577093,53.08356710694313],[-127.42927569351131,53.08362082287873],[-127.42955648565275,53.08368298054854],[-127.42978951690539,53.08371546628548],[-127.43000742285739,53.08377110405184],[-127.43013104763334,53.08385926174502],[-127.43026166275719,53.08396078280718],[-127.43032073853892,53.08404860107862],[-127.43039426200154,53.084121110768706],[-127.43050750339225,53.08420659658062],[-127.43054729700557,53.08427727323857],[-127.43064527904902,53.08435397827646],[-127.43075918158796,53.08440358521346],[-127.43104592917464,53.08442028434093],[-127.43134457708858,53.08442955867657],[-127.43164086277432,53.08445174419067],[-127.4319294799264,53.08449587063811],[-127.4321951354391,53.08452515008649],[-127.4325006796107,53.084599893058744],[-127.43278146418751,53.08466148740116],[-127.43306315407048,53.084721949425045],[-127.43332826721223,53.08479045664392],[-127.43358877154148,53.0848881568198],[-127.43385526464644,53.08496953840324],[-127.43409915589767,53.085074163165075],[-127.43438424889003,53.08512449467223],[-127.4346784298736,53.08516742624894],[-127.43483966559738,53.085205812549844],[-127.43495970886192,53.08521556134102],[-127.43523003949207,53.08527223834131],[-127.4354909856085,53.085355360205746],[-127.43581268088667,53.0853817093227],[-127.43610872695027,53.08536914562132],[-127.43640316245308,53.08533642854949],[-127.43669668892616,53.08530427764858],[-127.43700413589202,53.08526915948069],[-127.43729094889069,53.08528752825008],[-127.43758731962896,53.085311939275414],[-127.43783764446982,53.08521979455461],[-127.43807328796119,53.085108220595565],[-127.43828888747369,53.08498456269729],[-127.43847872399063,53.084846093385835],[-127.4386438344581,53.08469558840568],[-127.43882985306364,53.08455492361065],[-127.43910106472227,53.084499504132054],[-127.43939624566934,53.08454409730464],[-127.43968842502444,53.08458312292561],[-127.43998378876206,53.08460529881845],[-127.44027921394138,53.08462971458728],[-127.4405740165018,53.084663102653394],[-127.44086704510318,53.084699317807434],[-127.44115748631509,53.08474172306088],[-127.44138533222865,53.08481402900489],[-127.44152907077182,53.084942829987035],[-127.44174280776029,53.08501251018869],[-127.44201879918192,53.08509767553931],[-127.44235704852815,53.08514341223334],[-127.44272616118107,53.085189335897674],[-127.44311644115257,53.0852249137348],[-127.44346596855429,53.085272195018604],[-127.44380709032328,53.0853195780015],[-127.44410443793556,53.085372542630694],[-127.44431889872806,53.08543604115959],[-127.4444030067787,53.085516257761796],[-127.44425126935393,53.08561953886693],[-127.44395335665554,53.08574252833055],[-127.44364936341691,53.08587904844231],[-127.44346826571409,53.086026384800554],[-127.44338988283066,53.086196565120986],[-127.44334108378273,53.08638431483063],[-127.44331849580398,53.086572309115574],[-127.44331779638466,53.086744337498494],[-127.44331737911656,53.08692421613923],[-127.4433150767488,53.08710410882484],[-127.44330810754482,53.08728406746778],[-127.44333281101318,53.0874602681714],[-127.44330538779218,53.08764383868346],[-127.4433105797503,53.087823639743895],[-127.44328485434312,53.08800214193177],[-127.44328149102353,53.0881781295716],[-127.4432612224324,53.08835208234198],[-127.443227406888,53.088512752426226],[-127.44316402648367,53.0887118866668],[-127.44313191520871,53.088894949428806],[-127.44323762896109,53.08906063921908],[-127.44337304852851,53.08921924195656],[-127.44356085865903,53.089350873011185],[-127.44375631305465,53.08951490105983],[-127.44391707603819,53.0896485385821],[-127.44404256306727,53.08979045176581],[-127.44418462798583,53.08997923065646],[-127.4442888409114,53.090210501958914],[-127.44443247315593,53.090335382755065],[-127.44459939718446,53.0904577372577],[-127.44474693557031,53.09061506956831],[-127.44489815762573,53.09077067114915],[-127.44505304474231,53.09092399532386],[-127.4452152981556,53.09107385820045],[-127.44539321153384,53.0912168141959],[-127.44560334317784,53.091344242135264],[-127.44582637526074,53.09146590846901],[-127.44603656659328,53.09159501145391],[-127.44623393673177,53.09173212470425],[-127.44646134952373,53.09184477082344],[-127.44672872361393,53.091922742104344],[-127.4470088219814,53.09198935915901],[-127.4472844487777,53.09206218957077],[-127.44755924874762,53.092138391509984],[-127.4477884225442,53.09224765151346],[-127.4479793248898,53.09238707354056],[-127.44814265184404,53.092540290311085],[-127.44827904740548,53.09269943136821],[-127.4483839972785,53.09286905277437],[-127.44846564060032,53.09304119216561],[-127.44852501174651,53.0932180961913],[-127.44857501758574,53.09339510601868],[-127.44860919290986,53.09357399537946],[-127.44864149839954,53.09375290763857],[-127.44867567429249,53.093931796943764],[-127.44869862964248,53.09411082378558],[-127.44869914342885,53.09429012573524],[-127.44868002807911,53.09446966831068],[-127.44863803463173,53.09463716388971],[-127.44860405334794,53.09481969482588],[-127.44859459846292,53.0950086401645],[-127.44855959757346,53.095188942190575],[-127.4485367215498,53.09536796591745],[-127.44853997523202,53.0955455576155],[-127.4485973841445,53.09571967928155],[-127.448698640304,53.09589045721384],[-127.44879432519232,53.096062432996895],[-127.44883409499488,53.0962406886515],[-127.44882261775712,53.09642518492388],[-127.44885203256842,53.09660132614318],[-127.44896517334703,53.096764122331685],[-127.44910999025278,53.09692260314268],[-127.44927706403286,53.09707576330532],[-127.44945697812456,53.097220929986165],[-127.4496605982724,53.0973484306561],[-127.44992015982359,53.097442745074794],[-127.45015415156972,53.09755530350114],[-127.45035892867362,53.09768894802143],[-127.45050080702075,53.09784354533269],[-127.45057606421827,53.098019688229556],[-127.45065313470806,53.09819412331577],[-127.45072648450166,53.098369168836115],[-127.45076902022294,53.098545713250644],[-127.45074615607494,53.09872530183093],[-127.45072330669602,53.09890489020496],[-127.45075651453034,53.09908266975387],[-127.45081310968152,53.09926016217683],[-127.45087622075262,53.09943645389369],[-127.45092917212075,53.099616797137614],[-127.45099141821369,53.09979534073659],[-127.45108509713386,53.09996284747517],[-127.4511340694745,53.09999979322472],[-127.45154448984067,53.10023681865583],[-127.45165118810345,53.100401923692225],[-127.4515889860669,53.10057975410586],[-127.4514919045751,53.10075016812257],[-127.4513910430744,53.100919507780624],[-127.45127321268966,53.101085137823354],[-127.45111647345368,53.10123499121409],[-127.45087500992723,53.10134217823869],[-127.45066990799091,53.101473008421785],[-127.45049052386113,53.10161697963533],[-127.45036038814544,53.10177883281789],[-127.45014573849207,53.10190417581719],[-127.44994633899299,53.10203774083811],[-127.4497574443005,53.102177344820454],[-127.4495989017833,53.102329459453934],[-127.44947726185265,53.10249344867375],[-127.44937168104921,53.1026617234972],[-127.44927362383072,53.102831582470436],[-127.44918312051146,53.103003034206296],[-127.44907561347472,53.10317021163386],[-127.44894548255374,53.10333206293316],[-127.44878978440222,53.10348526209505],[-127.44863030572458,53.10363738668967],[-127.4484897612355,53.103796003025934],[-127.44835490396582,53.10395679081808],[-127.44828038282111,53.104130851992785],[-127.44821430919693,53.1043059212969],[-127.44815202976179,53.10448207368872],[-127.44809067732257,53.104658205701675],[-127.4478988173653,53.104793915791745],[-127.44768707766958,53.10492314501617],[-127.44749430667277,53.10505943037459],[-127.44731679018996,53.10520448499415],[-127.44713358009218,53.105346811838665],[-127.44694938772062,53.10548802972828],[-127.44675948674308,53.105626519988526],[-127.44659334222048,53.10577591689803],[-127.4464480566608,53.10593291193849],[-127.4463207247066,53.10609528146944],[-127.44619811846833,53.10625927850245],[-127.4460793058313,53.10642434963896],[-127.4459642568998,53.10659049525634],[-127.44583127111764,53.10675182161285],[-127.44565464648481,53.10689574186544],[-127.44541400333962,53.10700066546034],[-127.44513557401179,53.10706794782774],[-127.44486395112727,53.10714299099808],[-127.44460306293958,53.10723079449217],[-127.44436145320503,53.10733516286642],[-127.44415726425522,53.10746653436633],[-127.44398257833065,53.107612678569566],[-127.44382115797063,53.10776369897388],[-127.44366542502266,53.107916891002915],[-127.44351159985808,53.108071180168714],[-127.44335588358307,53.108224927382615],[-127.44319634865418,53.108376488619925],[-127.44303586940745,53.10852805217749],[-127.44288581943849,53.10868341500069],[-127.44275186824285,53.10884418444829],[-127.44262831232999,53.109008188849884],[-127.442516075768,53.10917486111205],[-127.44241984682557,53.10934469094581],[-127.44235094242529,53.1095197995692],[-127.44231208478838,53.109697894558586],[-127.44227229919446,53.109876009800374],[-127.44222030686288,53.11005314430204],[-127.44213537639898,53.11022508623192],[-127.44197868115965,53.1103777225666],[-127.44175628948257,53.11049754897169],[-127.4414983062319,53.110589227529935],[-127.44123931772374,53.11067867643532],[-127.44098034701385,53.11076868038775],[-127.44073006852578,53.110866431429585],[-127.44050479967528,53.11098460496071],[-127.44030819785796,53.11111979456884],[-127.44014866001656,53.11127190706512],[-127.44001658426158,53.11143377076889],[-127.43992598707099,53.111604094385385],[-127.43994137440485,53.11178153647462],[-127.44002863265926,53.11195361148775],[-127.44002912916996,53.11213347624675],[-127.43999591028278,53.11231262204152],[-127.43995327940303,53.11249020593595],[-127.43993411879843,53.11266974524994],[-127.43993178179446,53.11284907963071],[-127.43991918105854,53.11302910381764],[-127.4398756400056,53.1132072545338],[-127.43977564964577,53.11337713636632],[-127.43959039373986,53.1135161130566],[-127.43935168704331,53.1136249175314],[-127.4391283617486,53.11374530569121],[-127.43899619831419,53.11390492763415],[-127.43898353608205,53.11408326683697],[-127.439005571413,53.11426342501613],[-127.43903970430638,53.11444175941658],[-127.4391046259195,53.1146174687356],[-127.43913034724505,53.11479590547174],[-127.43911678033665,53.1149753762757],[-127.43909387292037,53.11515496075372],[-127.43906906008849,53.115334003586824],[-127.43904144820343,53.115513089428525],[-127.43901383578067,53.11569216628425],[-127.43898620425713,53.11587068749804],[-127.43895953471265,53.11604976178885],[-127.43893005047434,53.11622886134407],[-127.43889306260944,53.116407496344365],[-127.43885792670224,53.11658555292633],[-127.43880685912588,53.11676323854309],[-127.43869267751022,53.116928800061636],[-127.43852267600849,53.11707655421962],[-127.4383450596254,53.11722103876798],[-127.43816840426267,53.11736607614534],[-127.43800788796399,53.117517631929516],[-127.43787954609485,53.117680011741044],[-127.43776255908357,53.11784560631902],[-127.43765029883197,53.11801282875099],[-127.43745834498557,53.11814852087552],[-127.43727408388628,53.11829028725081],[-127.43705059916411,53.118407310765775],[-127.43680416057536,53.11850947941331],[-127.43656539976274,53.11861772234104],[-127.43634007423275,53.11873533162362],[-127.43612049775447,53.118857344288514],[-127.43589520767598,53.118976072903266],[-127.43564774397802,53.11907601017003],[-127.43538284982105,53.11915879280717],[-127.43513154663752,53.119255978407345],[-127.43489566759102,53.119366424150556],[-127.43467129952256,53.11948513913636],[-127.4344660597595,53.11961593986449],[-127.43427700164234,53.119754953328155],[-127.43408894243376,53.11989563981439],[-127.43384332159343,53.119994994940704],[-127.4336094200725,53.120108775967736],[-127.43351112268394,53.12027413923005],[-127.43354338478547,53.120453052918975],[-127.43356823769147,53.120634297722695],[-127.43344157000777,53.120791604385985],[-127.43323635831642,53.12092353204109],[-127.43300237426935,53.12103507141767],[-127.43280188344727,53.121168052747244],[-127.43263462514967,53.121315208549376],[-127.43256751311783,53.121489723041186],[-127.43239274820178,53.12163640458312],[-127.43219892760351,53.121773230758585],[-127.4320165420804,53.12191607722102],[-127.43183793624836,53.12206000722708],[-127.4316235621607,53.12214272508551],[-127.43132257313442,53.12212788247079],[-127.43102388654869,53.12212532944884],[-127.43072503402482,53.12211830403347],[-127.43042629096611,53.12211407368977],[-127.43012700164947,53.12212161157218],[-127.42983128692724,53.12215208333831],[-127.42956335485422,53.12222873005347],[-127.42931787978131,53.12233311205039],[-127.429115485186,53.12246611879631],[-127.42893021110297,53.12260675388738],[-127.42876110004337,53.12275504690223],[-127.42853673431428,53.122874861257266],[-127.42831900437558,53.12299740112345],[-127.42817164511914,53.12315215439232],[-127.42804991898156,53.123317795448244],[-127.42793569670444,53.123483910548586],[-127.42778578394147,53.12364653865043],[-127.42792689336429,53.12380620857902],[-127.42814320774515,53.12375260222274],[-127.42832134262848,53.1235941243557],[-127.42847053655102,53.12343822813626],[-127.42862447226244,53.12328395987526],[-127.42875267799542,53.12311599860388],[-127.42891438039265,53.122970036477916],[-127.42915823418677,53.122872954763494],[-127.42943265322035,53.12279399829668],[-127.42970519951771,53.12271505485458],[-127.42997007043732,53.12263060928829],[-127.43025787184531,53.122587905756895],[-127.43055568763991,53.12256413146308],[-127.43085271123395,53.12254484861247],[-127.43114962104369,53.122522204430425],[-127.43144335626346,53.122488947241116],[-127.43173500777705,53.12244899959092],[-127.43202781381716,53.12241575218723],[-127.43232582086841,53.122398139167395],[-127.43262223608285,53.12238838028904],[-127.4329170263583,53.122358477555736],[-127.4332065615654,53.1223118190029],[-127.43349531982813,53.12226966073191],[-127.43379328319995,53.12225035905895],[-127.4340891324491,53.122224358346635],[-127.43438405312786,53.12219836815311],[-127.43468107241559,53.1221790756837],[-127.43497922430485,53.12216537199255],[-127.43527745574544,53.12215446373559],[-127.43557123840515,53.12212232526092],[-127.43585791270081,53.12207401838874],[-127.43615583951281,53.1220541463654],[-127.43645419907587,53.122046604501264],[-127.43675261922921,53.12204129349201],[-127.43705071264063,53.12202590876785],[-127.43734145020457,53.12198706997573],[-127.4376249649448,53.121928711287445],[-127.43792099579389,53.12190774615353],[-127.43819454995642,53.121969417360546],[-127.43842688869766,53.12208538078761],[-127.43870057772149,53.122150967012615],[-127.43900090805867,53.12214675671601],[-127.43929709165786,53.12213025994981],[-127.43959447830792,53.12214961774895],[-127.43989184182739,53.12216784546369],[-127.44018982949942,53.12217710854803],[-127.4404879693353,53.122190842689065],[-127.44078686630645,53.122199528384655],[-127.44107824517033,53.12223464485714],[-127.4413645816737,53.12228662296162],[-127.44166087048463,53.12230094153272],[-127.4419602733828,53.12229673503767],[-127.4422575626892,53.12231271641909],[-127.44255649902198,53.12232251783319],[-127.44284933414639,53.122290372788214],[-127.44310071393052,53.122195411335625],[-127.44332503457314,53.122075560346346],[-127.44359401768803,53.12200279608459],[-127.44389261662542,53.12197506067745],[-127.44418581802164,53.12198100119454],[-127.44447049544556,53.12203916017427],[-127.44474978870633,53.12210410820629],[-127.44502458791304,53.122174713794294],[-127.44530035047079,53.122245871788905],[-127.44554423196116,53.12234262920623],[-127.44573896706254,53.122480886542526],[-127.44597121456323,53.122593474543514],[-127.44625288878588,53.12264550688149],[-127.44655352753249,53.122650229965835],[-127.44685242498369,53.12265834453187],[-127.44715119248869,53.12266308899467],[-127.44744987951228,53.12266503652598],[-127.44774866642291,53.122670344054995],[-127.44804675490309,53.12268238333308],[-127.44834492013811,53.122696662238525],[-127.44864217666274,53.12271151633901],[-127.44893871975373,53.12273309342305],[-127.44923756495844,53.122740081954944],[-127.44953608000803,53.122736978885435],[-127.44983429270512,53.122725478309825],[-127.45013373612949,53.122722371312626],[-127.45043234701187,53.12272207093363],[-127.45072608780352,53.122689330431854],[-127.45100468762163,53.1226242758656],[-127.45127740381548,53.12255144822424],[-127.45154712758817,53.122473053374684],[-127.45181592622333,53.122395225100085],[-127.45208958710347,53.122322948755304],[-127.4523721362167,53.122264001548984],[-127.45266681550844,53.122231244633916],[-127.45296165892731,53.122257879954404],[-127.45326007440491,53.12225197149457],[-127.45354164012127,53.12219192185677],[-127.45383647175726,53.1221636427783],[-127.45412906624497,53.12212473971145],[-127.45440670985518,53.122059132911694],[-127.45468431825113,53.121992961067306],[-127.45495208387031,53.1219123410737],[-127.45517258830634,53.12179139345887],[-127.45538925274018,53.1216676955018],[-127.45563664652141,53.12156659688477],[-127.45589179361943,53.12147323793416],[-127.45614884973698,53.121380984532514],[-127.45641078720605,53.12129482958867],[-127.45669233765825,53.12123420765847],[-127.45698295563196,53.121192524575775],[-127.45727363067083,53.12115251657839],[-127.45756519511148,53.121111385198354],[-127.45785688927646,53.12107360451462],[-127.45815171025156,53.121045314660606],[-127.45844641515833,53.12101366350955],[-127.45874015735141,53.120981467646075],[-127.45903177242727,53.12094144368737],[-127.45931038658259,53.12087748967917],[-127.45958402487756,53.12080519593141],[-127.45986061161447,53.120736782973225],[-127.46015023683371,53.120693418793856],[-127.46043675759559,53.12064169174565],[-127.46070940620079,53.120567722087316],[-127.46099596405541,53.12051711386737],[-127.46129290162781,53.12049607874624],[-127.46158355499472,53.120537312930914],[-127.46187160270512,53.12058418194261],[-127.4621622913832,53.12062597013012],[-127.46246042772205,53.12063965785203],[-127.46275516526077,53.12060911614273],[-127.46300641309863,53.12051187192111],[-127.46321922817422,53.120385965465715],[-127.46344639784174,53.120269402109756],[-127.46370732755696,53.12018156664069],[-127.46394986698974,53.120076018662495],[-127.46415214535251,53.11994351689934],[-127.46430593845756,53.11978920191336],[-127.46459661647047,53.119749740459305],[-127.46489488282242,53.11976733822074],[-127.46514354292671,53.11986623785749],[-127.4653913147823,53.11996626865427],[-127.46564090536465,53.120065155731446],[-127.46589140148218,53.12016291039867],[-127.46614371205195,53.12025896552995],[-127.46640780662587,53.120343658366764],[-127.46667815362632,53.12041987255664],[-127.46694939097803,53.120494954425425],[-127.46721254580967,53.12057966611612],[-127.467499749463,53.12062877330424],[-127.46779046783048,53.12067166802648],[-127.4680662004471,53.12074108823587],[-127.46831035815798,53.12084451988697],[-127.46855268917145,53.120949659211874],[-127.46879684927147,53.12105308984664],[-127.46904010625595,53.121157651872316],[-127.46927790584321,53.12126676388364],[-127.46950016178754,53.121386710442614],[-127.46971695610584,53.12151065129064],[-127.4699520226458,53.12162203727352],[-127.47020614471309,53.1217158200294],[-127.47047206967414,53.12179880465991],[-127.47071257872727,53.1219050739954],[-127.47089539343641,53.12204793082177],[-127.47113777200812,53.12215362020287],[-127.47143401141346,53.12216617942864],[-127.4717267457064,53.122131722515434],[-127.4720193042366,53.12209221957693],[-127.47231638345531,53.122075072952335],[-127.47261520823577,53.1220814378418],[-127.47291266333119,53.12210182289135],[-127.4732075381935,53.122128972309504],[-127.47350158682696,53.12215948432822],[-127.4737948831857,53.12219505248121],[-127.4740838988351,53.12224187994768],[-127.47435783923473,53.12231299350751],[-127.47460292991074,53.12241583593136],[-127.474796793258,53.12255294575936],[-127.47485535284063,53.12272928079546],[-127.47484662067441,53.12290869643241],[-127.47477782791306,53.123083813641564],[-127.47464204648817,53.123244085821796],[-127.47451477055809,53.12340648412847],[-127.47444408485623,53.1235810688208],[-127.47440631206338,53.1237597257452],[-127.47438164371422,53.12393878406426],[-127.47436449525871,53.124118304450725],[-127.47435668897046,53.124297708338865],[-127.47435453131716,53.12447759763237],[-127.47435797340384,53.124657426056984],[-127.47436984435672,53.1248371404097],[-127.47438731054038,53.12501622913396],[-127.47440386825727,53.12519589398166],[-127.47441199654686,53.12537565494338],[-127.47440702463075,53.12555558818501],[-127.47438984100836,53.12573454402935],[-127.47436707727613,53.125914134236425],[-127.4743414792249,53.126093203904645],[-127.47431211822204,53.12627175564404],[-127.47427903320276,53.1264509096304],[-127.47427029782918,53.12663032485161],[-127.47425781924595,53.12680978671699],[-127.47425097493102,53.12698974313924],[-127.47421410694437,53.12716782351987],[-127.47421100556922,53.12734773324245],[-127.47421351865464,53.12752756399358],[-127.47423006164318,53.127707228800254],[-127.47428488276043,53.12788361027285],[-127.47430985566956,53.12806316098459],[-127.47426359016985,53.12824024671842],[-127.47425113041953,53.12842026402983],[-127.4742461378156,53.12859963238952],[-127.47425426640085,53.12877940198199],[-127.47426988139433,53.12895906926851],[-127.47428362516143,53.12913876882816],[-127.47428708198734,53.12931858763878],[-127.47428208942976,53.12949795591015],[-127.47427150139458,53.12967795872704],[-127.47425902191881,53.12985742028738],[-127.47424747070569,53.13003687025625],[-127.47426306679736,53.13021598181035],[-127.47421588971089,53.13039363449268],[-127.47421465952947,53.13057351159954],[-127.47425269724774,53.130751787524396],[-127.47432151404796,53.13092687361293],[-127.47432122766533,53.131106738907974],[-127.4743928411217,53.131281234221476],[-127.47441966892528,53.13146020562941],[-127.4743827977574,53.13163828561877],[-127.47448048078029,53.131808529064664],[-127.47457627345088,53.13197824014333],[-127.47468974388373,53.13214492459267],[-127.47475950814587,53.13231999852817],[-127.47491372648874,53.13247328258455],[-127.47510030560719,53.13261496520999],[-127.47537950077374,53.13267367507744],[-127.47566249906384,53.13273402231918],[-127.47590489666034,53.13283858131234],[-127.47616183635496,53.13293007520582],[-127.47641605936501,53.133024399632056],[-127.47663565565192,53.133146051689224],[-127.47683509244266,53.13328028233348],[-127.47702530776311,53.133418545633326],[-127.477213711216,53.13355851673519],[-127.47740394871327,53.133697343972024],[-127.47760153835199,53.13383216123125],[-127.47778627994643,53.13397441850295],[-127.4780521447634,53.13405346062287],[-127.47824288124339,53.134179397179764],[-127.47794727337319,53.134214469735156],[-127.47768531921434,53.134301227360275],[-127.47747531667251,53.13442824406047],[-127.47730254550765,53.134575532064595],[-127.47714779790837,53.13472930970428],[-127.4769176949155,53.13484369324555],[-127.47668185742879,53.134954776962026],[-127.47650807917435,53.135100390801796],[-127.4763921238662,53.13526601933183],[-127.47629882592778,53.1354369592727],[-127.47622154410575,53.13561050536287],[-127.47617622621263,53.135788135118176],[-127.4761459574018,53.135967262502334],[-127.47612503294346,53.136146264282864],[-127.47610507146557,53.13632581883485],[-127.47603155089287,53.13649988256065],[-127.47596556114837,53.136675528754786],[-127.47594652256466,53.136854506888085],[-127.47593030403367,53.13703401462394],[-127.4759262657237,53.137213935175346],[-127.47592691464169,53.137393788259814],[-127.47593130796245,53.1375736035724],[-127.47595814625133,53.137752574005084],[-127.47598031210946,53.1379316027168],[-127.47591337170327,53.13810669576195],[-127.47591218785428,53.13828770124676],[-127.47608115952211,53.13843407557575],[-127.47624928220503,53.138582710541606],[-127.47634604050516,53.138752398811675],[-127.47641769459764,53.13892744776191],[-127.4764781363057,53.139103201416034],[-127.47663794788102,53.139255292564364],[-127.47669188508215,53.139432247944455],[-127.4767205998944,53.13961119464979],[-127.47671000000855,53.13979063210716],[-127.47669001960766,53.13996962182903],[-127.47668131134365,53.14014960044375],[-127.47674549990438,53.14032529814156],[-127.476856200467,53.14049201470202],[-127.47695297027175,53.140662267048135],[-127.47709244510467,53.14082134434854],[-127.47716036139572,53.1409964394],[-127.47718251905533,53.141175467751346],[-127.47716630410805,53.14135497522619],[-127.47713977962731,53.14153404659539],[-127.4771282374348,53.141713495680705],[-127.47718123620947,53.14189046237825],[-127.47719312397143,53.14207017472411],[-127.47683749654061,53.14231891763141],[-127.47664203917314,53.14243454363228],[-127.47642436289009,53.1425571705107],[-127.47623441146983,53.142696260839266],[-127.47611685089305,53.142762725710824],[-127.47599632448988,53.14279784912213],[-127.47570426269338,53.14282895308079],[-127.47540601290471,53.14284331469776],[-127.47510886730363,53.142862709221156],[-127.47481384743575,53.142889365231966],[-127.47452112820027,53.14292831006116],[-127.47424140933822,53.14299119070805],[-127.47395361131599,53.14303680568138],[-127.47365574239637,53.14303546895781],[-127.47350125882251,53.143063732992545],[-127.47334799583463,53.14310038204339],[-127.47323082106038,53.143124254312426],[-127.47308956795762,53.14312881035141],[-127.47297638450593,53.14313302570967],[-127.47282432615062,53.143150043151905],[-127.47261554513442,53.14317898196191],[-127.47243875906223,53.14323945634047],[-127.47232581464642,53.14327727873504],[-127.47221396669828,53.14337337031417],[-127.4721037644354,53.14340948186653],[-127.47196105950927,53.14353396450173],[-127.47181497697807,53.14358845263134],[-127.4716763157298,53.14366806743372],[-127.47140444230044,53.143740929518664],[-127.4711314101006,53.14380763730072],[-127.47085297421438,53.1438805796917],[-127.47055773047612,53.14390105966614],[-127.47027225738992,53.143852501837785],[-127.47001616892145,53.14375986381276],[-127.46976008188427,53.14366723419002],[-127.46950129201194,53.143577434742234],[-127.4692370267921,53.14349218534387],[-127.46897011709682,53.14341145080875],[-127.4686931901999,53.1433386846019],[-127.46839722692734,53.14331153596054],[-127.46810639137911,53.14326976344065],[-127.46781123686607,53.143238685507804],[-127.46751535249425,53.14321377499973],[-127.46722168578874,53.14319836627575],[-127.46692049589102,53.143182494264366],[-127.46662152309115,53.14317611506055],[-127.46632474998495,53.14315233325737],[-127.46602813263779,53.14313304035467],[-127.4657284493112,53.14313339161298],[-127.46542998520542,53.14314212741194],[-127.46513271667708,53.14315813636543],[-127.46484400282259,53.143204861034285],[-127.4645613118473,53.143263272782605],[-127.4642894867224,53.14333779431192],[-127.46407513191933,53.14344971510029],[-127.46380804237316,53.14360710502163],[-127.46363668534454,53.14368935604834],[-127.46332381894665,53.1437150744062],[-127.46302880044536,53.14368790963232],[-127.46275657444376,53.14361562735678],[-127.46248876715492,53.14353545425577],[-127.46222142922801,53.14346927839916],[-127.46205342000226,53.143458462821734],[-127.46175609013308,53.143472787511904],[-127.46145744900898,53.14347647699502],[-127.4612711420271,53.143478213485935],[-127.46119505483983,53.14347187350434],[-127.46102540879443,53.14349526098213],[-127.4608650082013,53.14351517210345],[-127.46056883351562,53.14353563862504],[-127.4602747668024,53.14356335812078],[-127.4599871043339,53.143613419798235],[-127.45971515505006,53.1436576746848],[-127.4594148118343,53.14369332297257],[-127.45925468220169,53.1436941775165],[-127.4591314155791,53.143677202668975],[-127.45900795881813,53.143627740187526],[-127.45883852645566,53.14357603839961],[-127.45870041855719,53.14359062427843],[-127.45859434965395,53.14363787861909],[-127.45840240479953,53.14377528753763],[-127.45823711479453,53.14392525055885],[-127.45813168526126,53.14399154760071],[-127.45800872510895,53.14403788891563],[-127.45773094299832,53.1441035033688],[-127.4574422145352,53.1441502099523],[-127.45715348512692,53.1441969068688],[-127.45689038678724,53.14428083363318],[-127.45666977016856,53.14440178293696],[-127.45645970803298,53.14452988160213],[-127.4562314259233,53.14464587700998],[-127.45600600124932,53.14476351327787],[-127.45579020265184,53.14488831933643],[-127.45558010136558,53.14501586098416],[-127.45537862423834,53.14514889041646],[-127.45519428625788,53.14529011801105],[-127.4550213933039,53.14543737258013],[-127.4548589200313,53.14558785171781],[-127.45471540506229,53.14574538619179],[-127.45457003158262,53.145902943313416],[-127.45447644155287,53.14598702167404],[-127.45439520366266,53.146048535197366],[-127.4541946469362,53.14618156008282],[-127.45398839029444,53.14631184855291],[-127.45378115021254,53.14644102807687],[-127.4535643734148,53.1465652769888],[-127.45332256167153,53.14666967034548],[-127.45305262926861,53.14674638344896],[-127.45276076897373,53.1467841515592],[-127.4524689122367,53.14682247473865],[-127.45230486534773,53.14684578071086],[-127.45217396548975,53.146852425798805],[-127.45189443991379,53.14689507877891],[-127.45163646388005,53.14699237827846],[-127.45156673073386,53.147034697647136],[-127.45141674688048,53.14711330621174],[-127.45133924734631,53.1471747716593],[-127.4512929976952,53.14727395564612],[-127.45127874869372,53.14737722967495],[-127.45128228815415,53.147453390052554],[-127.45132700793896,53.14758283621966],[-127.45135198086417,53.14762847629654],[-127.45143750181279,53.14780056223401],[-127.45146308935252,53.14786412504602],[-127.45152047629729,53.14798053281212],[-127.4516076067252,53.14814531916472],[-127.45167355685724,53.14832045109782],[-127.45173672526634,53.14849617295281],[-127.45179522470109,53.14867251685486],[-127.45185278085577,53.14884887229107],[-127.45192247822105,53.14902395806418],[-127.4519856296596,53.149199124112855],[-127.45203293405251,53.1493767258721],[-127.45207836625701,53.149554350575066],[-127.45212567143567,53.14973195226247],[-127.45217110441028,53.14990957689506],[-127.45221559397127,53.150087213075885],[-127.45225824563417,53.1502654365879],[-127.45230848813327,53.15044691986732],[-127.45235189631356,53.1506200866612],[-127.45240854797076,53.15079701760373],[-127.45244838439098,53.15097526658601],[-127.45251540151239,53.1511537467026],[-127.45255135904004,53.151328125473846],[-127.45261544536119,53.15150327956183],[-127.45271179695244,53.15166346915767],[-127.45285984779643,53.15182862713665],[-127.4528350869688,53.15200767797893],[-127.45270480535348,53.152169529189294],[-127.45263446241465,53.15222137743066],[-127.45251123960836,53.15228845202728],[-127.45220632491085,53.15235662676672],[-127.4519519124665,53.152449964767165],[-127.45171012060236,53.152556030263604],[-127.45145477668869,53.152649369618985],[-127.4512206653294,53.152760943071264],[-127.45093588483357,53.15281542881079],[-127.45062395616608,53.152870237690784],[-127.45050970442418,53.15295344494666],[-127.45047161649991,53.15301723246622],[-127.45041209547446,53.153193902526894],[-127.45026950108291,53.153351974982606],[-127.4500583355526,53.153477277274355],[-127.44980230708374,53.1535784657706],[-127.44952130315029,53.15363402236323],[-127.44923137972599,53.15367511023357],[-127.44906855944309,53.15370792617994],[-127.44889140409187,53.153759403479555],[-127.44872653429218,53.15386900334309],[-127.44858769622151,53.154027592425095],[-127.44848575231232,53.15419693612311],[-127.44838003864783,53.15436520520772],[-127.44824782162365,53.154525954053014],[-127.44811655250669,53.15465923099935],[-127.44790515807715,53.15480582413091],[-127.4477088170811,53.1549539091771],[-127.44752969823057,53.15511298959277],[-127.44737419300968,53.15524992398362],[-127.44723347249912,53.15540853426211],[-127.447118294999,53.155574676468426],[-127.44699745571594,53.15573921129],[-127.44682538194259,53.155885312545394],[-127.44663052226385,53.15602217112589],[-127.44643466013815,53.156157365138974],[-127.44623406848086,53.15629148699785],[-127.44602963027134,53.156422302546254],[-127.44582135319996,53.15655091437754],[-127.44561405736397,53.1566806434334],[-127.44540963432978,53.1568120134868],[-127.44520805014963,53.156944469131346],[-127.4450074319129,53.15707803324949],[-127.44480873855198,53.15721269413903],[-127.44461192083737,53.157347887609994],[-127.44441702831539,53.15748418683228],[-127.44422403041075,53.15762157425842],[-127.44406237073059,53.15774345487534],[-127.44385043813972,53.15790237370962],[-127.44367075750387,53.158045765662216],[-127.44349302074835,53.158190810076604],[-127.4433399412985,53.15834508337158],[-127.4432228443392,53.15851012400886],[-127.44315668418523,53.1586857497479],[-127.44304991776951,53.158851784829174],[-127.44287978238283,53.15900010637679],[-127.44268202118445,53.159135307831754],[-127.44245553376908,53.15925237306412],[-127.44220595819009,53.15935178904493],[-127.44194860330258,53.15944289898886],[-127.44168248674478,53.15952458521541],[-127.44140862500409,53.15959852072113],[-127.44116568826121,53.15970065068278],[-127.44093156814506,53.15981388808209],[-127.4407165582183,53.15993808973705],[-127.44052281789291,53.16008164766022],[-127.4405405276617,53.160243923846764],[-127.44064561396773,53.16041354572666],[-127.44035821975297,53.16033803447706],[-127.44006733695234,53.16029786938942],[-127.43977208433166,53.160266721809094],[-127.43948823381598,53.16021246634278],[-127.43920873531471,53.16014862742623],[-127.43892305523339,53.1600960693326],[-127.43864746026891,53.16006411518166],[-127.43833020957128,53.16004724380634],[-127.43804381137392,53.160000851329656],[-127.43775977851055,53.15994154664864],[-127.43746428573223,53.159930567646995],[-127.43716594475397,53.15994651765552],[-127.43687278797503,53.15997697218255],[-127.43654214446664,53.15997930935778],[-127.43628322367488,53.159942108988716],[-127.43599079338983,53.15991091778484],[-127.43569587693388,53.15994475263405],[-127.43539925073034,53.159928179076665],[-127.43510928149276,53.1598868701771],[-127.43480987786072,53.159898900435024],[-127.4345116070359,53.159889068383855],[-127.43421303752316,53.15989828992567],[-127.43391336824749,53.15990248568108],[-127.43363322639573,53.15995742835363],[-127.43349138093743,53.16011267280237],[-127.433132936961,53.160262695542364],[-127.43283788291166,53.16029259818531],[-127.43257077648204,53.16037315496451],[-127.43232499305007,53.160474745049356],[-127.4320744007361,53.160572475067916],[-127.43177676990732,53.16058167903888],[-127.4314800650144,53.16056285532388],[-127.43120322691236,53.160494482941495],[-127.43091670112223,53.160444157113],[-127.43062408203426,53.16040735180162],[-127.43035182295644,53.1603355602151],[-127.43013496387215,53.160212105497806],[-127.42986607276708,53.16015652572176],[-127.42955998902424,53.160165261472855],[-127.42926390968582,53.160192370480544],[-127.42896665905764,53.16021276911061],[-127.42867041279806,53.1602353961246],[-127.42837641351325,53.160268645730746],[-127.42808548011712,53.16030969304294],[-127.42779560759428,53.16035465351655],[-127.42750775488382,53.16040351559251],[-127.42722588314473,53.160463502154194],[-127.42695876495925,53.16054404626222],[-127.42670331861503,53.16063734076198],[-127.42645176802101,53.16073506128678],[-127.42622426037516,53.160850986380794],[-127.42599968587427,53.16097080235514],[-127.42572855183639,53.16104354758963],[-127.42543554883208,53.16107901007006],[-127.42513830914197,53.16109996364384],[-127.42483736033859,53.16112207278062],[-127.42461041726307,53.161227346400665],[-127.42459314513462,53.16107626965486],[-127.42442336612123,53.160986977442995],[-127.42418638442703,53.160877210698935],[-127.4239457178461,53.160769720109776],[-127.42368605197248,53.160682073030564],[-127.42335138219319,53.160620545984756],[-127.42312386220965,53.160541476120244],[-127.42288325686538,53.16043566809301],[-127.42263822207426,53.16033719241825],[-127.42241504438805,53.16021996770796],[-127.42220556605709,53.1600919364974],[-127.42198403815019,53.15996796740334],[-127.42175430103042,53.159850820276674],[-127.42149279093388,53.159763746449116],[-127.42121589530285,53.15969255454333],[-127.42092348151448,53.159661881899886],[-127.42062288356802,53.159666055163285],[-127.42032463192916,53.159684758685124],[-127.42002753086815,53.159709615575046],[-127.41973254686106,53.159741734872945],[-127.4194494389834,53.15979275267841],[-127.41918342340576,53.15987831321921],[-127.41890647772759,53.15994550937134],[-127.41861559383308,53.15998821815989],[-127.41831932469971,53.16001025470258],[-127.41802027798424,53.16000487293457],[-127.41772258310682,53.159984350257616],[-127.41742997867237,53.15994751232178],[-127.41714260394052,53.15989940479658],[-127.41684501879696,53.159881675692326],[-127.41654662092785,53.15986787327537],[-127.4162473730737,53.159856886324626],[-127.41594921927364,53.15985036803046],[-127.41564982934692,53.15986291439481],[-127.41537487198228,53.15979336221077],[-127.41512685436528,53.15968931271795],[-127.41487809583867,53.159590865730394],[-127.4145953231044,53.15953989998123],[-127.41430354121759,53.15949968267209],[-127.41400734669031,53.15946736174043],[-127.41370945163597,53.15944066350742],[-127.41341257577379,53.1594161936064],[-127.41311512631783,53.159402371262104],[-127.41281506577387,53.159394747257586],[-127.41251678508388,53.15938430417382],[-127.41222002241653,53.159363191815395],[-127.41192728116202,53.1593224153392],[-127.4116363167279,53.15927826404539],[-127.411342207918,53.159252635350384],[-127.41104241012636,53.159252848101545],[-127.41074317229533,53.159269862774494],[-127.4104520793828,53.15930638605423],[-127.41017913088638,53.1593813584168],[-127.40991586392917,53.15946574458423],[-127.40963797721062,53.159532930133466],[-127.40935808968965,53.15959677697332],[-127.40907821630891,53.15966062297078],[-127.40879928961176,53.15972501285468],[-127.40852232845799,53.159792184716714],[-127.40829003088308,53.15990645542681],[-127.40820285897446,53.16007446537625],[-127.40816666567532,53.1602536307776],[-127.40810412233888,53.16042975673463],[-127.4080057622762,53.16059902019552],[-127.40788284979676,53.16076297249471],[-127.40774481744275,53.16092262198732],[-127.4075925603936,53.16107739318106],[-127.40743553773244,53.16122998854308],[-127.40726999908523,53.16137987888759],[-127.40708259053619,53.1615199433766],[-127.40689516576194,53.161660007736245],[-127.40671821694204,53.1618049855799],[-127.40656120341586,53.16195757954316],[-127.40640895707553,53.162112913696426],[-127.40626427673617,53.1622703989773],[-127.40613944226835,53.16243325139269],[-127.40607590221252,53.162607702357015],[-127.40607677108555,53.16277466443493],[-127.40606033924377,53.16295695590137],[-127.40606355002339,53.16313845818549],[-127.40596423140627,53.16330773091334],[-127.40584321011819,53.163472222992276],[-127.40572782950684,53.1636377595875],[-127.40564265832089,53.163809669985],[-127.40569351235195,53.163986679742145],[-127.40582717988737,53.164146461448425],[-127.40597935432989,53.16429874363765],[-127.40597974369844,53.16447971450796],[-127.40593127930471,53.16465679211709],[-127.40582722868389,53.16482500012557],[-127.40571469895809,53.16499162330089],[-127.40561160954596,53.165160384445926],[-127.4054934025093,53.16532539832985],[-127.40535627543085,53.165485033605535],[-127.40522578581943,53.165646831137856],[-127.40510663176234,53.16581185579993],[-127.40499407813306,53.165977922592695],[-127.40488910980417,53.16614669629094],[-127.40481053502413,53.166320203909734],[-127.40477241178456,53.16649827867685],[-127.40474742369399,53.16667730919093],[-127.40471119168342,53.16685591727983],[-127.4046476762791,53.16703148723084],[-127.40456154968861,53.16720340773471],[-127.40445279262688,53.167371105213185],[-127.40433172012771,53.16753503099022],[-127.4042182483947,53.167701672480526],[-127.40406215163192,53.16785480722096],[-127.40383732833035,53.1679700910213],[-127.40354127440138,53.16800049627744],[-127.40324267466153,53.16801020405202],[-127.40294396681817,53.16801710633084],[-127.40264993012296,53.16805140311183],[-127.40238848607673,53.16813630554585],[-127.40216762656796,53.16825827178695],[-127.40199823907855,53.16840651381779],[-127.40186394732733,53.16856779633099],[-127.40179192025911,53.16874122397882],[-127.40182866849943,53.168917281211804],[-127.40200280789567,53.16905361943825],[-127.40226500306171,53.16916089007165],[-127.40250926418896,53.16926445493324],[-127.40275172385236,53.169369726050085],[-127.4029923330789,53.16947613025883],[-127.40323388805491,53.169582531741376],[-127.4034607902594,53.1696991830207],[-127.40366662043365,53.16983009589155],[-127.4038521626637,53.169971334528135],[-127.4040127371298,53.17012239869885],[-127.40413719497786,53.17028620882404],[-127.40424210441493,53.170454177324416],[-127.40434052413381,53.17062446393866],[-127.40441284144867,53.17079842196012],[-127.40452126658391,53.17107225104415],[-127.40463859847426,53.17110615387365],[-127.40490579733849,53.17113772240128],[-127.40513554401545,53.171170299639684],[-127.40542024829753,53.171333891774864],[-127.4055826324021,53.1714826821554],[-127.40563287557947,53.17155661098311],[-127.40570787457939,53.171557396940976],[-127.40605862471763,53.17173421551354],[-127.40637237234756,53.17195349118976],[-127.40678469910308,53.172432133103186],[-127.40741101621651,53.172891429686544],[-127.40788574965244,53.17324493772185],[-127.40802184807676,53.173307194244735],[-127.40822682164271,53.173439794897554],[-127.4084317404204,53.17357071044921],[-127.4086329876878,53.17370391056277],[-127.40882776392122,53.17383998439344],[-127.40901243040248,53.17398179025849],[-127.40919062199018,53.174125905168594],[-127.40935034273971,53.17427864877178],[-127.40946179242445,53.17444485835438],[-127.40953321147116,53.17461937973162],[-127.40958036611994,53.17479699595191],[-127.40960319995445,53.17497602230827],[-127.40960824475769,53.17515582522258],[-127.40957482913066,53.17533440060031],[-127.40950662547735,53.17550946345856],[-127.40941579066264,53.17568087798693],[-127.40929096255768,53.17584429691865],[-127.40916988455858,53.17600822688486],[-127.40906963726663,53.1761780676926],[-127.40900046727091,53.176352585813916],[-127.40895202042014,53.176530219114966],[-127.40890732078222,53.1767078077858],[-127.4088691904333,53.176885883040526],[-127.40882450857085,53.17706402724934],[-127.40875722874578,53.17723908741378],[-127.40868335982465,53.17741309633073],[-127.40859346200895,53.177584498815044],[-127.40851015175511,53.17775694345613],[-127.4083672996142,53.17791440767105],[-127.40816070998389,53.17804349380137],[-127.40790419062972,53.17813731367331],[-127.4076525113917,53.17823555787618],[-127.40742960990387,53.17835363046914],[-127.40724403785835,53.17849479180974],[-127.40707557540514,53.178643593795286],[-127.40689189358199,53.17878529685875],[-127.4067101063902,53.17892808874925],[-127.4065368885663,53.179074705163316],[-127.40638261369706,53.17922726415087],[-127.40630307251845,53.17940021799693],[-127.40629218284687,53.179580209700504],[-127.40629066251635,53.179760081148395],[-127.40616557195023,53.17991677559578],[-127.40588145770401,53.17997001176075],[-127.40559942528574,53.18002995514355],[-127.40537845699592,53.18015024185133],[-127.40521664064468,53.18030175906486],[-127.40509363792141,53.180464586358326],[-127.40499522300306,53.180634410207794],[-127.40489964422949,53.18080475612421],[-127.40484458636473,53.18098134487428],[-127.4047442764918,53.18115062613571],[-127.40462885836978,53.181316159885284],[-127.40455684312829,53.181490708355284],[-127.40451870515331,53.181668781568106],[-127.40450686249429,53.18184877512675],[-127.4045474524306,53.18202647035754],[-127.40463188956709,53.18219804244075],[-127.40480364600359,53.18234561065922],[-127.40498089549737,53.182489186850624],[-127.40511932992665,53.18264946767112],[-127.40515144513078,53.18282614260521],[-127.40510392300877,53.18300432724078],[-127.40512859768049,53.183182766860625],[-127.40537750583893,53.18345156497438],[-127.40546384176035,53.18362366969309],[-127.40552876383768,53.1837999551012],[-127.40557307475221,53.183977049881996],[-127.40548222081706,53.184148460426],[-127.40533748013696,53.1843064982836],[-127.40515664605502,53.18445040527873],[-127.4049681649995,53.18458991130223],[-127.40477207474396,53.18472615440614],[-127.40458071679862,53.18486401746104],[-127.40440750448082,53.18501175045281],[-127.40424386623665,53.185165528492576],[-127.4040658248131,53.185308835769064],[-127.40384655010737,53.18542461639471],[-127.40357936007013,53.1855090317032],[-127.40330637899173,53.1855884678059],[-127.40302942556899,53.185661226693085],[-127.4027659249706,53.18574391102048],[-127.40255729781668,53.18587020431039],[-127.40237557353066,53.186015793713445],[-127.40220613439078,53.18616459917213],[-127.40198215707069,53.18628043185753],[-127.40170012917316,53.18634148573662],[-127.40140381513379,53.186367960285814],[-127.40110465848174,53.186364776191944],[-127.40081014521758,53.186332400716616],[-127.40053144010096,53.18626734005834],[-127.40026899572275,53.18618415683243],[-127.40000025955808,53.1861088916374],[-127.39996715307481,53.18609976233962],[-127.39972883233602,53.18606559933904],[-127.39940174978366,53.1860683440395],[-127.39910317292974,53.18605449784856],[-127.39880381848128,53.18604570729018],[-127.39850601992069,53.18605539204381],[-127.39820775424127,53.186079084621696],[-127.39791555846806,53.186116707856236],[-127.39763148487718,53.186172728946524],[-127.39734848815617,53.186233219051346],[-127.39705825742301,53.186273622951006],[-127.39675873055661,53.18628780608552],[-127.39645983365779,53.18629245142664],[-127.39617057748124,53.186248796447934],[-127.39596561661212,53.18611729601752],[-127.39575607148711,53.185988655254384],[-127.39558156856758,53.18584279215629],[-127.39544412275325,53.18568304493962],[-127.39528168285914,53.18553312163823],[-127.3950694530455,53.18540842893536],[-127.39479611192667,53.185335447519265],[-127.39452278674436,53.1852624652929],[-127.39426477665775,53.18517081667839],[-127.39403048604264,53.185059273280146],[-127.39389307054375,53.18490064454054],[-127.39376305705107,53.184738566718394],[-127.39357668675947,53.184601805197836],[-127.39331688207585,53.18451240791563],[-127.39305704190029,53.184421898851696],[-127.39282005052264,53.18431374667761],[-127.39262247712895,53.18417823604476],[-127.39242401229352,53.184043856171485],[-127.39222738928434,53.18390888953409],[-127.39204182474325,53.18376763375422],[-127.39185071635092,53.18362924883425],[-127.39163477652875,53.183505158467504],[-127.391411488877,53.183385636458056],[-127.39119462202801,53.18326155619425],[-127.39097408517456,53.18314031567183],[-127.39077377490318,53.1830065195364],[-127.3905633346872,53.18287843606758],[-127.39034270975772,53.18275439839835],[-127.39010758692746,53.18264509834938],[-127.38982634327387,53.18258733105114],[-127.38952920847247,53.18255944104859],[-127.38923558298808,53.182524220735885],[-127.38904363340362,53.18238808244061],[-127.38887840994893,53.182238174190225],[-127.38872337394207,53.182084228614734],[-127.3885572235728,53.18193433975352],[-127.38841527140382,53.1817791197544],[-127.38833643093061,53.18160466525121],[-127.38822782745281,53.18143729218777],[-127.38807094095195,53.18128392326611],[-127.38789368039727,53.1811380813328],[-127.3877034866913,53.1809979937143],[-127.38749133898405,53.180874416260885],[-127.38723882746625,53.180777640991884],[-127.3869780752157,53.180686564730465],[-127.38674384684812,53.18057556225372],[-127.38652513760987,53.18045205993951],[-127.38631841601364,53.18032224908642],[-127.38614580276742,53.18017466478403],[-127.3859686086813,53.18003050462278],[-127.3857876860748,53.17988694365315],[-127.38564287732979,53.17973006840079],[-127.38553523378681,53.17956268164594],[-127.38548431357475,53.17943889046594],[-127.38534412991896,53.179222568738275],[-127.38527280286624,53.17904803321939],[-127.38510676816762,53.178900935226565],[-127.38482037412525,53.17885665481934],[-127.38452183475172,53.17884221621156],[-127.3842265303673,53.17881205058809],[-127.38395150502973,53.1787429908844],[-127.38369355729698,53.178651309957345],[-127.38344199401195,53.178553959832676],[-127.38318856115527,53.178457186840475],[-127.38291539180275,53.17838697351532],[-127.38262094798633,53.178354552674215],[-127.3823216116835,53.178344044464865],[-127.38202716069327,53.17836877299504],[-127.38174026316152,53.17842366892558],[-127.38145006765271,53.1784634700071],[-127.38115133747615,53.17847200200925],[-127.38071559921123,53.17841769178157],[-127.38041777451932,53.17839651092813],[-127.38012022639856,53.178412305985795],[-127.37983015744365,53.17845602819652],[-127.37954807982575,53.17851534501594],[-127.3792630701035,53.178570768716305],[-127.37897600348094,53.17862062162969],[-127.37868495096481,53.178663231852546],[-127.37839182309807,53.17869969771904],[-127.37809368834827,53.17869756485159],[-127.37780981148367,53.17864371766074],[-127.37753474286374,53.178572958302496],[-127.37727320840011,53.178485796654066],[-127.37699548416454,53.1784195493539],[-127.37671151929922,53.17836289459761],[-127.37642754049465,53.1783062482943],[-127.37614357715,53.17824959217273],[-127.37586227250343,53.178188431044326],[-127.3755827694349,53.17812499815857],[-127.37529875732841,53.178067228962966],[-127.37502192862026,53.177999281301844],[-127.37474443128932,53.177968885381766],[-127.37443860474895,53.17793153822874],[-127.3741402753834,53.17792322994464],[-127.37384111110137,53.17791830136468],[-127.37354260013313,53.17790439068086],[-127.37324385094712,53.17791178238599],[-127.37294490464072,53.17791356365454],[-127.37262796420848,53.17790939394267],[-127.37234786284803,53.17794289683796],[-127.37205031490667,53.1779586716233],[-127.37175163770749,53.1779682999225],[-127.37145316338093,53.17795550415163],[-127.37115541917937,53.17793654035835],[-127.37086271321668,53.17789903207435],[-127.37058700359799,53.177836664178194],[-127.37029570411424,53.177785126244686],[-127.37002694782154,53.17770587655895],[-127.36977631448693,53.177607357461426],[-127.36953117716493,53.177504856656974],[-127.36925883933445,53.17743068489429],[-127.3689963428987,53.17737096652526],[-127.36870108045716,53.17731219111959],[-127.36843462597388,53.17721721390325],[-127.3681524461221,53.17715716534934],[-127.3678571831333,53.17712751449063],[-127.36755831483802,53.17713153148567],[-127.36726195036523,53.17715456003614],[-127.36696880516006,53.17719044204789],[-127.36667775039459,53.17723302279332],[-127.36639366218022,53.1772884137929],[-127.36611260821152,53.17735048372117],[-127.36583056988961,53.17741088790984],[-127.36554951457084,53.177472965459096],[-127.36524747387837,53.17749493378667],[-127.36498345227406,53.17744587433767],[-127.36478785574596,53.17730973060502],[-127.36461167263442,53.17716496281407],[-127.36439490126608,53.17704083324081],[-127.36415250838209,53.176935492821016],[-127.36389643439331,53.17684207130502],[-127.36362230906703,53.176770148503],[-127.36335086146077,53.176694267665894],[-127.36306872839451,53.17663532716401],[-127.36277950054894,53.17658935005179],[-127.36250894606165,53.17651178061374],[-127.3622465616475,53.17642570760082],[-127.36197604523839,53.176349257121736],[-127.36168858620884,53.1762998952335],[-127.36139253060192,53.17627416405415],[-127.36109895429432,53.17623831825676],[-127.36081326278035,53.176185572149315],[-127.36053554339689,53.17611816598306],[-127.36025338208319,53.176058098571275],[-127.35997034888894,53.17600027273942],[-127.35981851423034,53.17585466248254],[-127.35974358625772,53.17568126554194],[-127.35963045196203,53.1755144750513],[-127.35948761107338,53.175356990326335],[-127.35926263757173,53.17523911346348],[-127.35902208744037,53.175132056169964],[-127.35876423386574,53.175040885341964],[-127.35851819370966,53.17493837243577],[-127.35826945947817,53.174839251726176],[-127.35801159119066,53.1747475146713],[-127.35774651686121,53.17466483344611],[-127.3574715045368,53.174593462590686],[-127.35718400811407,53.17462982055548],[-127.35698093912308,53.17475653444362],[-127.35685030785072,53.17492051817042],[-127.35674555636112,53.17510269054829],[-127.3566950000384,53.17527976840218],[-127.35666418204246,53.17545885227927],[-127.3566324165732,53.175637391167825],[-127.35658375074794,53.17581500306502],[-127.35650683379583,53.17598845620018],[-127.35641483608542,53.176159285016105],[-127.35632472926169,53.17633064789197],[-127.35625066445176,53.17650518871419],[-127.35618598912133,53.17668074251829],[-127.35612320208868,53.17685627463717],[-127.35602365154728,53.177025504156184],[-127.3559702713356,53.17720260482937],[-127.35590748263392,53.177378136783986],[-127.35586068563903,53.17755572675766],[-127.35582329355793,53.17773432959703],[-127.35575955901687,53.17790987223657],[-127.35567226725222,53.17808176692777],[-127.35555857536683,53.17824835182245],[-127.35543537258036,53.17841112785389],[-127.35539986995417,53.17859027359861],[-127.35534930354677,53.17876734158026],[-127.35529404157393,53.178943907447135],[-127.35525288018955,53.17912199725694],[-127.35520324201205,53.179299054486975],[-127.35513669909787,53.17947462872638],[-127.35507483305538,53.179650149385495],[-127.35502144584888,53.179827258339536],[-127.35497839039434,53.18000480484002],[-127.35495225416737,53.180183834117074],[-127.35494958636866,53.180363724396614],[-127.35495346979056,53.180543530732926],[-127.35495547951697,53.180723367455926],[-127.35494719242848,53.18090387779354],[-127.35491637793177,53.181082960496326],[-127.3548092447251,53.18125003400937],[-127.35462630613601,53.18139164513379],[-127.35438614044448,53.18150252492299],[-127.35422404688117,53.18165117633726],[-127.35410281067172,53.18181728979712],[-127.35399479677032,53.18198605789],[-127.35389717141994,53.1821575040863],[-127.35382960236207,53.18233084775296],[-127.35383717577162,53.18250893529119],[-127.35390963116322,53.18269356040821],[-127.35386558494216,53.18286944106307],[-127.3538239450462,53.183003823318394],[-127.35383964491227,53.18323056810192],[-127.35377118296377,53.18340559822429],[-127.35378969664059,53.18357404005438],[-127.35383235904969,53.18373547329271],[-127.3538370986274,53.18394217264775],[-127.35387351435023,53.184113206761566],[-127.3537970191269,53.18430065513606],[-127.35383552184133,53.18444925355865],[-127.35383680764974,53.18457755097428],[-127.35378332921401,53.18483981572123],[-127.35378345996466,53.18501967346908],[-127.35381541622618,53.18519803783975],[-127.35384551660218,53.18537698818075],[-127.35391672496343,53.185551550972406],[-127.35408924463204,53.185698617060915],[-127.35425434303885,53.185848564754316],[-127.3543683747463,53.18601367285282],[-127.35436097480651,53.18619248707849],[-127.35424820367231,53.186359623921255],[-127.35413259187868,53.18652567252089],[-127.35400846571304,53.18668957714516],[-127.3539248614447,53.18686030669388],[-127.35391936962907,53.187040219562725],[-127.35393449539482,53.18721990568355],[-127.35395336962567,53.187399539969505],[-127.35396662134464,53.18757924747816],[-127.35396298615794,53.187758583243145],[-127.35395843905295,53.187938485227],[-127.35395387720138,53.18811839632606],[-127.35395118658747,53.188297721239124],[-127.35395224745785,53.18847755906073],[-127.35395987640752,53.188657330746054],[-127.35396750513516,53.188837093451916],[-127.353972330137,53.189016897156485],[-127.3539733911153,53.18919673490796],[-127.35398851788153,53.189376420812145],[-127.35399802126778,53.18955616201857],[-127.35405895329313,53.18973139770394],[-127.35412363774611,53.189907155223004],[-127.35416591599959,53.19008540107794],[-127.35423804525487,53.1902593880327],[-127.35433259393146,53.19043032160036],[-127.3544624557551,53.190591877611],[-127.35462387681743,53.19074299622901],[-127.35479087127125,53.190892921327595],[-127.35501957493489,53.19100796683631],[-127.35527932045437,53.19109688322735],[-127.35554907920984,53.191176163954125],[-127.35582506873183,53.19124527850405],[-127.35610559450525,53.19130986709897],[-127.35638699374913,53.19137219489539],[-127.35666748218303,53.19143509723905],[-127.35694617194433,53.19150082548232],[-127.357217613069,53.19157391547111],[-127.35740778930105,53.191715171407246],[-127.35745074348489,53.19188500842629],[-127.35742835941423,53.19206399413273],[-127.35746969115637,53.192241693820584],[-127.3575232183268,53.19241981848948],[-127.35757113703613,53.19259799843652],[-127.3576237531419,53.19277668928862],[-127.35771916086954,53.19294480434677],[-127.3578610919461,53.1931017449266],[-127.35802350018997,53.193253959261554],[-127.35818776633745,53.19340559626117],[-127.3583362361085,53.193561896522],[-127.35845310579073,53.19372640310103],[-127.35854953884889,53.193897311656386],[-127.35864131151978,53.19406882939035],[-127.35874518730759,53.19423740226981],[-127.35887323932766,53.194400103750205],[-127.35903379971268,53.194552902665606],[-127.35918596890563,53.19470691823178],[-127.35926373246679,53.1948802725954],[-127.35928075838616,53.19505993576077],[-127.3592415084714,53.1952391151025],[-127.35924817714285,53.19541721171978],[-127.35931105318039,53.19559410754947],[-127.3593252747787,53.19577379385919],[-127.35934883708312,53.19595281715565],[-127.35939780563325,53.19613435483191],[-127.35948206963596,53.19630539319287],[-127.3596839276402,53.196429702605016],[-127.35991185589788,53.19654867425153],[-127.36008447728443,53.19669685090506],[-127.36021903860694,53.19685722599073],[-127.36034246091877,53.197021099553446],[-127.36045751212613,53.19718730132464],[-127.36056606431144,53.19735526298074],[-127.36066715436984,53.197524430825865],[-127.36075521213284,53.197696554219156],[-127.3608255756173,53.19787223358519],[-127.36087253376952,53.198049311317455],[-127.36088210440231,53.198230171300004],[-127.36084867385637,53.1983863165651],[-127.36074417009358,53.198577460488],[-127.36062860432035,53.19874519010658],[-127.3605375036703,53.19891600934038],[-127.36048507780612,53.19909366366401],[-127.36046836329918,53.1992737048283],[-127.36049009070967,53.19945331348359],[-127.36055949321634,53.19962844808857],[-127.36067547942092,53.19979408295886],[-127.36082496178668,53.19995148887934],[-127.36088184882439,53.200000141106514],[-127.36114055148657,53.200199994729616],[-127.36135464823654,53.2003252812756],[-127.3616062901625,53.20042267716725],[-127.36184788165194,53.20052804111092],[-127.36207761945184,53.20064361713681],[-127.36231741064846,53.20075124200316],[-127.36252696327651,53.20088106105143],[-127.36261028334069,53.201050987277185],[-127.36261609434082,53.20123133435168],[-127.36255808564515,53.201410174230894],[-127.36263476520256,53.201577944573025],[-127.36279263661447,53.20173356617474],[-127.36300853085311,53.201856032123764],[-127.36325199077594,53.20196080698883],[-127.36344492725357,53.20209809492849],[-127.36357394793117,53.20226021519995],[-127.36363681611336,53.202435987914875],[-127.36365105839072,53.20261567304361],[-127.36364183800936,53.20279507239041],[-127.36362324256466,53.20297457961865],[-127.36360277195718,53.2031541084062],[-127.36358510619526,53.20333360489051],[-127.36356745528353,53.20351310118219],[-127.36354321620523,53.20369211746282],[-127.36351522655913,53.2038711679162],[-127.36349098705453,53.2040501841517],[-127.36347426547046,53.204229669657934],[-127.36345941880514,53.20440913356727],[-127.36344550204791,53.20458858675539],[-127.36342972509651,53.204768061328636],[-127.36341677105216,53.2049480592062],[-127.363400978844,53.205127533913675],[-127.36335793281106,53.2053050810336],[-127.36326684405505,53.20547590159117],[-127.36315971815583,53.20564410062234],[-127.36308843540202,53.20581861068306],[-127.36304633532855,53.205996702526626],[-127.36302961108758,53.20617618778272],[-127.36303260145002,53.206356011008054],[-127.3630515049574,53.206535086389074],[-127.36310037512358,53.20671269644516],[-127.36323210547037,53.20687142392271],[-127.36341213685638,53.207015027953375],[-127.36351790572776,53.20718301846896],[-127.3635752062577,53.20735996651671],[-127.3636119014872,53.2075382811952],[-127.36363082589463,53.20771791197175],[-127.36364317679153,53.20789706257075],[-127.36365746026804,53.20807843207112],[-127.363603853159,53.20824825645946],[-127.36341048771546,53.20838943329956],[-127.3632872784579,53.20855333484138],[-127.36313709564763,53.208695699718334],[-127.36284430598411,53.20874949352457],[-127.3625514251861,53.20880048171623],[-127.36239244690164,53.20893174094168],[-127.36237775627163,53.209116240518],[-127.36234132713955,53.20929539606838],[-127.36236201394095,53.20947164482923],[-127.36247808849453,53.20963896178537],[-127.36255955350988,53.2098094735447],[-127.3625644532495,53.209990386070594],[-127.36260019814773,53.21016814694433],[-127.36268361220478,53.21034087733181],[-127.36276982953403,53.21051301960851],[-127.36285699244739,53.210685141975226],[-127.36294133583753,53.21085730566296],[-127.3630126243684,53.21103185162897],[-127.36306337493087,53.2112094397025],[-127.36309165759035,53.21138840675719],[-127.36311336916361,53.211567449375245],[-127.3631360443179,53.21174704566132],[-127.36308916741534,53.21192239487528],[-127.3628966021236,53.212059634681694],[-127.36263787952241,53.2121522559981],[-127.36236345168999,53.21222376632668],[-127.36207926390298,53.21228306184353],[-127.3617854559754,53.21230605296684],[-127.361493713704,53.2123060433312],[-127.36122142581819,53.21238537042361],[-127.36094602781087,53.2124557679843],[-127.36067747377498,53.21253505091814],[-127.36044184313006,53.212645887207806],[-127.36024546116708,53.212781489950174],[-127.36007955344937,53.212931310087534],[-127.35995535494727,53.213094663014694],[-127.359884994505,53.213269715377905],[-127.35989540178561,53.21344721159399],[-127.36003657234296,53.21360751020925],[-127.36020830069533,53.2137551405739],[-127.36039204787573,53.21389702088981],[-127.36058410245661,53.21403488802134],[-127.36077985534074,53.21417103600145],[-127.36097559131076,53.21430661908739],[-127.36116672228832,53.214445051699386],[-127.36135140622623,53.21458692875272],[-127.3615333035204,53.214729393340996],[-127.36171148996218,53.214873576670136],[-127.36187026281979,53.215026391612156],[-127.3619900113906,53.21519086056521],[-127.36206598177036,53.215364797126306],[-127.36211391272276,53.215542417614145],[-127.36214780304864,53.215720764213145],[-127.36216484932713,53.21590041599424],[-127.3621612646706,53.21608031384054],[-127.36215673150106,53.216259657801245],[-127.36216345476043,53.21643942817712],[-127.36217112366955,53.216619196632124],[-127.36216473277617,53.21679911769699],[-127.36214612490056,53.21697862334822],[-127.3621199964572,53.217157659604325],[-127.36206844884491,53.2173341820425],[-127.36199049425974,53.21750596083145],[-127.3619520573327,53.217681776710165],[-127.36186758360465,53.21785531562676],[-127.36182071256715,53.21803121936579],[-127.36182373471298,53.21821216164044],[-127.36178911969691,53.218390165652714],[-127.36173951416698,53.21856835082638],[-127.3617105255971,53.21874629013231],[-127.36172948331641,53.21892704925599],[-127.36180921076452,53.21910094253573],[-127.3619577298821,53.21925555138778],[-127.362167352036,53.2193842494569],[-127.36237881828457,53.219512370161134],[-127.3625468631455,53.21966115098833],[-127.36270102945699,53.21981570296383],[-127.36289592457864,53.21995353365296],[-127.36308613908297,53.2200914178532],[-127.36317977233055,53.220260103220326],[-127.36324089504755,53.22043869176402],[-127.36332154403044,53.220612017588714],[-127.36347096532948,53.22076493779299],[-127.36366592139996,53.22090444290013],[-127.3638284032862,53.2210549712556],[-127.36395471323077,53.221218241913135],[-127.3640633410178,53.22138619820427],[-127.36417304468283,53.221558624294985],[-127.36424244465223,53.221732078919146],[-127.36412932857154,53.22189026073744],[-127.36395405580419,53.22204131366349],[-127.3637480271552,53.222169743964656],[-127.36348438494831,53.22225738445215],[-127.36319589171576,53.222301598907876],[-127.3628984976807,53.22233191234215],[-127.3626080584395,53.2223744713538],[-127.36232675345829,53.2224382155059],[-127.36205423958197,53.22251250786428],[-127.3617846751155,53.22259123901483],[-127.36151802448522,53.22267330674403],[-127.36125814415982,53.222761454761766],[-127.36100800284184,53.22286069607145],[-127.36075110376787,53.222953846794915],[-127.3604863786712,53.22303756640653],[-127.36021973771211,53.223119631023856],[-127.35995501052489,53.223203349441555],[-127.35969129981197,53.223289296731195],[-127.35943241124382,53.223379105626044],[-127.35918707047215,53.22348221438962],[-127.35892626772359,53.22357092352351],[-127.35866255262593,53.223656868508016],[-127.35842960722344,53.22376599222163],[-127.35817362771333,53.22385913561345],[-127.35789125273483,53.2239195195554],[-127.3576019229134,53.223967656215805],[-127.35731044656421,53.22400740799739],[-127.35701271262987,53.22402762523432],[-127.35671710604139,53.224055661346796],[-127.35643474267701,53.224116041641565],[-127.35615927838764,53.22418699219845],[-127.35588867491838,53.2242634803763],[-127.35561812169242,53.22434109687943],[-127.35534556846416,53.224415364951504],[-127.3550671681269,53.224482420018646],[-127.35478278306309,53.224538901913974],[-127.35449440875203,53.22458757576682],[-127.35420499870924,53.22463346380697],[-127.35391249761044,53.22467098666934],[-127.35361904743215,53.224707954875235],[-127.3533316550527,53.22475829998623],[-127.35305024850098,53.224819781731625],[-127.3527767394082,53.22489349890205],[-127.35249926233207,53.22496053730373],[-127.3522025007149,53.22498185181989],[-127.35191377383616,53.22493191355048],[-127.35162335106237,53.22488760571405],[-127.3513261590542,53.22486634145131],[-127.35102809346715,53.22484732753391],[-127.35073427795876,53.224814252891974],[-127.35043592675542,53.22481541092451],[-127.35017515123687,53.2249057854608],[-127.34989667093882,53.22497115278384],[-127.34960827031188,53.225019259142314],[-127.34931483168955,53.2250567722859],[-127.34901915931302,53.22508311343274],[-127.34871978917766,53.22508203759006],[-127.34842331032243,53.22505346978759],[-127.34812613676597,53.225032762064814],[-127.34782805344143,53.22501317554423],[-127.34752936161618,53.225003689238505],[-127.3472300247993,53.22500316506211],[-127.34692988557195,53.22500714046872],[-127.34663085494037,53.22501669637782],[-127.34633298404778,53.22503297070837],[-127.34603639718547,53.22505987058331],[-127.34574695675317,53.2251051734047],[-127.34546846829424,53.22517053031926],[-127.34522506306085,53.225276384543264],[-127.34497771136688,53.22537668020593],[-127.3447139386853,53.22546202951876],[-127.34444910986674,53.22554347271777],[-127.34420184435079,53.22543982324682],[-127.3439053869352,53.225412373442545],[-127.34360901584829,53.22538715408401],[-127.34331178875917,53.22536474957779],[-127.34301279065943,53.225375425480195],[-127.34273038097257,53.22543520853152],[-127.34246465650487,53.22551834272848],[-127.34219793198031,53.225599802311244],[-127.3419125026483,53.22565345895544],[-127.34161358799183,53.22566636251586],[-127.34131403616749,53.22565966717437],[-127.34101469506781,53.225659136266906],[-127.34071804988635,53.22568490283822],[-127.34042022515642,53.22570283806707],[-127.34012573657695,53.225736978494126],[-127.33982903718375,53.22576106708026],[-127.33954365686817,53.22581639377668],[-127.3392542045821,53.22586168969001],[-127.3389688052329,53.225916459400324],[-127.33867833229293,53.22595895953349],[-127.33839294913517,53.22601428345436],[-127.33811154796443,53.22607684985983],[-127.3378330234286,53.22614162424417],[-127.33755653089035,53.22621085727854],[-127.33728886201953,53.2262923162861],[-127.33703764500184,53.22638984173317],[-127.33679803460458,53.226497876590635],[-127.33656321189936,53.2266092186463],[-127.33632551308727,53.226718907314556],[-127.33609165129603,53.226830802325765],[-127.33585009164796,53.226937171833576],[-127.3356046877196,53.22704023142528],[-127.33532916913695,53.227111124509285],[-127.33503456330601,53.227142456512524],[-127.33473431916252,53.22714359615776],[-127.3344448269289,53.227098671086864],[-127.33418669182703,53.22700689369476],[-127.33394133652789,53.22690375739251],[-127.33368958570584,53.226806304301206],[-127.3334224093047,53.2267252678144],[-127.33314892255275,53.22665214561097],[-127.33290997171139,53.22654389715093],[-127.33269121450549,53.22642085393838],[-127.3325362386435,53.226267394113236],[-127.33240912226482,53.22610466545431],[-127.33224762807566,53.225952963834395],[-127.33201053922733,53.22584357210719],[-127.33178167442134,53.225727364167035],[-127.33156383744333,53.22560374380539],[-127.33132491437145,53.22549605665278],[-127.33105768023027,53.22541277445471],[-127.33076188790456,53.22543570061333],[-127.33046735840817,53.22546870585293],[-127.33016821503541,53.225474859747024],[-127.32987264151035,53.22544512391903],[-127.32960458577034,53.22536520937259],[-127.32939597862598,53.22523644354153],[-127.32920488763034,53.22509795171443],[-127.32901842520025,53.2249571755385],[-127.32884306128842,53.22481122766442],[-127.32868810529847,53.22465776267836],[-127.32854426569227,53.22449969963441],[-127.32841254026457,53.2243386947814],[-127.32829380916725,53.22417361773624],[-127.3281927849445,53.224004424698705],[-127.32811881191488,53.223829890459506],[-127.3280607244806,53.22365349287151],[-127.3280026375311,53.22347709523849],[-127.32793240275386,53.223302510008914],[-127.32787806863983,53.22312607025233],[-127.32781905273033,53.22294968290289],[-127.32774135148327,53.22277631069015],[-127.32763752648563,53.22260714848745],[-127.32749927251015,53.22244733624324],[-127.32729073880007,53.22232024227684],[-127.32705270254709,53.22220973084466],[-127.32678740862482,53.22212753804152],[-127.32651932959301,53.22204649638033],[-127.32626394068207,53.221950744856905],[-127.32607852006635,53.221812749347734],[-127.3259598027554,53.22164711397291],[-127.32586717510908,53.221476148613945],[-127.32578203111947,53.22130396994776],[-127.32567728987048,53.22113538103462],[-127.32554555313422,53.220973808311854],[-127.32538785237723,53.220821499209976],[-127.32523383653295,53.22066746337727],[-127.32509186381697,53.220508245708274],[-127.32504413560228,53.220332295476624],[-127.32503099656219,53.220152587906966],[-127.32501973368508,53.21997286831124],[-127.32500284333562,53.21979320264158],[-127.32497001941026,53.21961427983013],[-127.32489513940548,53.21944030934356],[-127.32476993101385,53.21927698637294],[-127.32457800453794,53.21914018178209],[-127.32437769881595,53.219005155834985],[-127.3242618546284,53.21884116293104],[-127.32419257095547,53.218666008889414],[-127.3241345069984,53.21848960889344],[-127.32408485925727,53.21831255903943],[-127.32404176666415,53.218134871162164],[-127.32400521173638,53.21795598966454],[-127.32397241086092,53.21777762200599],[-127.32394335919771,53.217598656646075],[-127.32391429277523,53.21741969142958],[-127.3238992840738,53.21724001336825],[-127.32390587028222,53.21706064987189],[-127.32392369523207,53.21688116081721],[-127.32393871409444,53.216701703086564],[-127.3239387102058,53.216521848385526],[-127.32392839824631,53.21634211777884],[-127.32391338958685,53.216162430654734],[-127.3238965231414,53.21598332902884],[-127.32388056973011,53.21580366138692],[-127.32389558839277,53.215624203558605],[-127.32389558468768,53.21544434875419],[-127.32390969056041,53.21526546584771],[-127.32394725063794,53.21508687671528],[-127.32398575806951,53.214908832766575],[-127.32401299214986,53.21472980312862],[-127.32401390080777,53.21454938224054],[-127.32396239739953,53.21437234378715],[-127.32384932081105,53.21420664295337],[-127.32368234400798,53.21405667612879],[-127.32345451353744,53.21394099660094],[-127.32318565034055,53.21386276234732],[-127.32290953123542,53.213792443468826],[-127.3226388469248,53.2137159046822],[-127.32236541055657,53.21364108132064],[-127.32210918898386,53.21354700674364],[-127.3219377172585,53.21340324626975],[-127.32183858465365,53.21323290575437],[-127.32176839262509,53.21305832488223],[-127.3217159552046,53.21288129585416],[-127.32166725175327,53.21270366934854],[-127.32161108196104,53.212527246639624],[-127.32153622832708,53.212353273373864],[-127.32143152617908,53.21218467990508],[-127.32129892098943,53.21202367663234],[-127.32114682486103,53.2118690491222],[-127.32098451288856,53.211717905950096],[-127.32081941619049,53.2115679051938],[-127.32065805174233,53.21141675101544],[-127.32050687297894,53.211261556660936],[-127.32035846591046,53.211105210666894],[-127.32020823454815,53.21095000537438],[-127.32006168741599,53.210793073521614],[-127.3199300196415,53.210631502461744],[-127.31982532788116,53.210462898457536],[-127.3197542185925,53.2102883264939],[-127.31971020720573,53.2101106468074],[-127.31968492950419,53.20993163790149],[-127.31967181647174,53.20975192874084],[-127.31966525991993,53.20957215551189],[-127.31965964829722,53.209392362778416],[-127.31964937360496,53.209213186722494],[-127.31962781493002,53.20903358051021],[-127.3195884834613,53.20885528379768],[-127.31954915260394,53.20867699601651],[-127.31953418289248,53.20849787217122],[-127.31954453676639,53.208318466315426],[-127.31956425179114,53.20813895619586],[-127.3195839816504,53.20795944588873],[-127.31959526529637,53.20778002961881],[-127.31960371088982,53.20760008016968],[-127.31960654604408,53.20742020214677],[-127.31959155891519,53.20724051361886],[-127.31952888691183,53.207065847328415],[-127.31941488218297,53.206899031796674],[-127.31929903811823,53.20673335719657],[-127.31919623370244,53.206564731406225],[-127.31909435786005,53.206395539382044],[-127.318993412914,53.206226336901636],[-127.31889152369705,53.206057144839484],[-127.31878872282951,53.20588852759591],[-127.31869058292243,53.2057187288526],[-127.3185859085449,53.20555013227125],[-127.31845798038142,53.2053879529848],[-127.31830868876209,53.205232169890074],[-127.31814826991979,53.20508043686358],[-127.31797302594607,53.20493447136452],[-127.3177710033137,53.204801694444825],[-127.31754229151299,53.20468545771454],[-127.31729072805786,53.204588524258725],[-127.31702013013165,53.20451252787258],[-127.31673962897897,53.20444953194081],[-127.31645644803024,53.20439104739658],[-127.31617149738106,53.2043359435432],[-127.31588477697002,53.20428422036823],[-127.3155971470721,53.20423362717171],[-127.31530607901598,53.20419260075449],[-127.31501231319687,53.20415552107208],[-127.31471528532697,53.204134164802284],[-127.31441744452957,53.20414698962227],[-127.31412406747353,53.20418274028865],[-127.31383280862481,53.204226310702424],[-127.3135404301557,53.20426428997126],[-127.313249065779,53.20430449840554],[-127.3129647928525,53.20436143603209],[-127.3126863903602,53.20442671665903],[-127.31240999864198,53.20449589184735],[-127.31213753224168,53.204571181540274],[-127.31187285855569,53.204655357805336],[-127.31162663243526,53.204760055240214],[-127.31147088958481,53.204909693862795],[-127.31141922998383,53.20508843558226],[-127.31129851234353,53.20524832715824],[-127.31108869040415,53.20537783770413],[-127.31085202466218,53.20548858626052],[-127.31059116461094,53.205575514269626],[-127.31031479666925,53.20564580470938],[-127.31002947908144,53.205699949732455],[-127.30974622660364,53.20576022985556],[-127.30952282003736,53.20587531136752],[-127.30933778284388,53.206017991531745],[-127.30914983731088,53.20615789762232],[-127.30896283562083,53.20629779296403],[-127.30877682965206,53.20643935335218],[-127.3085984124527,53.206584200271735],[-127.30847776667596,53.206746893778906],[-127.30839307790306,53.20691983098129],[-127.30839516684746,53.20695678651415],[-127.30842602060761,53.20713573599185],[-127.30843345938693,53.2073155087659],[-127.30841180480168,53.20749447324587],[-127.30841332311022,53.20766478209056],[-127.30842344582781,53.20784059872587],[-127.30841668920489,53.20801604592582],[-127.30837578711174,53.20820979016962],[-127.30838978179197,53.20838949045619],[-127.30839909563319,53.208569233444365],[-127.308405604411,53.20874901635217],[-127.30841116782138,53.20892880071683],[-127.30841298096314,53.20910863543761],[-127.30840916792923,53.20928852329795],[-127.30839596110664,53.20946795906152],[-127.30837241521469,53.20964695316083],[-127.30834418802624,53.20982598995684],[-127.30831879857458,53.210005560159445],[-127.30830184045574,53.21018503725284],[-127.30828393701537,53.21036452476147],[-127.3082500657004,53.21054306796969],[-127.30820685191821,53.2107228348444],[-127.30814854825012,53.210899971336744],[-127.30805808503551,53.21106848930693],[-127.30788919359138,53.21121826745343],[-127.30743601501655,53.211366144080635],[-127.3072884495666,53.21147814276547],[-127.30715782420322,53.21156138458944],[-127.30695473272098,53.21166728088651],[-127.306717172862,53.21175058092201],[-127.30643456059708,53.21180243669275],[-127.30616025853976,53.211850282709825],[-127.30541635500457,53.211970535485605],[-127.30506443544063,53.21202595726134],[-127.3040825288852,53.212245755193656],[-127.30369224543502,53.21266969411378],[-127.30256416663143,53.213260871262605],[-127.30200676063956,53.213589717086684],[-127.30159359495813,53.21378923252698],[-127.30111710864779,53.214034819740284],[-127.30054130759447,53.214437261205745],[-127.30024453948072,53.21485343809356],[-127.29971945772797,53.21513597501863],[-127.29927427964236,53.215363291086405],[-127.29921402186405,53.21553931416464],[-127.29916880303735,53.21571630185812],[-127.29906322006885,53.21588273664862],[-127.2989199178523,53.216042870345504],[-127.29874906620074,53.21619209121849],[-127.29853250818083,53.21631884570004],[-127.29828167388332,53.2164297316676],[-127.29816600268138,53.21648142365228],[-127.29809526094466,53.2165606373109],[-127.29803098744327,53.216728303906336],[-127.29802542587792,53.2169138121297],[-127.29799820086625,53.21709676067903],[-127.29791059105166,53.217268044375416],[-127.29779938957392,53.217435104091415],[-127.29767591903043,53.217600056900764],[-127.29754296389551,53.217761195932404],[-127.29738724349623,53.21791473114234],[-127.29731162722658,53.21798783902407],[-127.2972741111223,53.218080135054144],[-127.29727486508251,53.21816584467502],[-127.29731984346277,53.2182555614223],[-127.2974756265661,53.21841016894616],[-127.29757448569724,53.218482487460136],[-127.29761457898351,53.21856609004427],[-127.29765947105646,53.21874488711645],[-127.29773423774712,53.21891887485851],[-127.2978211381653,53.21909104437471],[-127.29787816277667,53.21926746737849],[-127.29791555366798,53.219446346444016],[-127.29785858911289,53.21960777403921],[-127.2977977352496,53.219795572682195],[-127.29761152934788,53.21993375399437],[-127.29738915180332,53.22005553159164],[-127.29716293299724,53.220173980165555],[-127.29695006936767,53.22030013498786],[-127.29678359860611,53.22043978427929],[-127.29664707100012,53.22057686466103],[-127.29644058478596,53.22072703612187],[-127.29620838811417,53.220865162282884],[-127.29604220448249,53.22101432750645],[-127.29589312557786,53.22117059354026],[-127.29575161762767,53.22132901770307],[-127.29562530441531,53.22149344310347],[-127.29547212724573,53.22163854781733],[-127.29525663355798,53.22177088665621],[-127.2950150174104,53.22187773780398],[-127.29475605179803,53.22196909023768],[-127.29449799821161,53.222059867371584],[-127.29423898105992,53.222150098654986],[-127.29397806763089,53.22223922950605],[-127.29373164348684,53.22234221298858],[-127.29350729736494,53.22246175430821],[-127.29335392103435,53.22260069972395],[-127.29325663510629,53.22270204588101],[-127.2932309298865,53.22278188535371],[-127.2932054302046,53.22286844587197],[-127.29321825942102,53.2229506707909],[-127.2932757800175,53.22305201326285],[-127.29337049664409,53.22311148953697],[-127.29341902018238,53.22319500130989],[-127.29341344810527,53.22328862350851],[-127.29334120445142,53.223380741008995],[-127.29323871030397,53.22343508084246],[-127.29310664951167,53.22347349963299],[-127.29295063270014,53.22349537133065],[-127.29265962179987,53.22349070124666],[-127.29237126338148,53.22348096354215],[-127.29217795559244,53.22348026503432],[-127.29208773325739,53.223505900563254],[-127.29203076049745,53.22354518496856],[-127.29197877191196,53.223624745817],[-127.29193810759666,53.223706433280576],[-127.29182833069632,53.22386002427049],[-127.29166972639628,53.22401246187883],[-127.2915319965311,53.22417252462699],[-127.29139424837317,53.224332022633035],[-127.29128489552158,53.224499610779326],[-127.29120762207424,53.22467301688599],[-127.29115767941468,53.22485060743456],[-127.29110489560401,53.22502710833668],[-127.29098986056417,53.22519308166338],[-127.29091449487896,53.22536758725973],[-127.29082209044837,53.22553724033541],[-127.29076440060494,53.22561462150005],[-127.29065499037247,53.22568809251122],[-127.29042187527756,53.22579763803706],[-127.2901773831251,53.22590338947174],[-127.28995775711502,53.2260245574656],[-127.28976110420341,53.226160606957926],[-127.28955680876474,53.226292248084306],[-127.28934485411509,53.22641893416083],[-127.28913670174221,53.226547263790884],[-127.28905628944361,53.226618167843576],[-127.28901693989582,53.22671272158512],[-127.28901958267338,53.22689142443605],[-127.28901570271928,53.227071874529074],[-127.28899394078945,53.22725083373264],[-127.28898816762835,53.22743074858261],[-127.28897506045813,53.22761633691822],[-127.28900909892349,53.227716815930435],[-127.2890988660386,53.22776794972399],[-127.28923110080356,53.22779620175981],[-127.28938690558218,53.22779731317416],[-127.2896903608671,53.22777832476312],[-127.28985079700429,53.227777699883895],[-127.28993032212848,53.22783117661744],[-127.28996485654048,53.22788682814537],[-127.29000827388019,53.22792557482015],[-127.2900501123586,53.22803605358382],[-127.29018024771182,53.22814893309801],[-127.29021386156491,53.22832785458248],[-127.29023997103813,53.22850685771405],[-127.29017382346838,53.22867622414219],[-127.29006760324717,53.22885498196606],[-127.29005698049757,53.22902934680743],[-127.29005871613458,53.229209170916484],[-127.29009138470893,53.22938810262457],[-127.29013062781104,53.229566962767066],[-127.29016985428328,53.22974526727404],[-127.29020159313286,53.22992420902787],[-127.29021553246756,53.230103900251954],[-127.29021837071112,53.23028932395149],[-127.29017876111807,53.2304673567832],[-127.2900540016128,53.230622793656046],[-127.28984319447062,53.23075674668056],[-127.28960643378016,53.230870820782144],[-127.28932897102963,53.23094274739312],[-127.28906790961683,53.23102962684085],[-127.28890066212305,53.231176559983666],[-127.28889473414888,53.23135142920052],[-127.28890042253069,53.231537933342416],[-127.28886268279817,53.231715954181055],[-127.28882776666346,53.23189450008373],[-127.28876744180714,53.2320705163034],[-127.28868733719416,53.23224395058238],[-127.28859776689424,53.23241524657367],[-127.28851482196252,53.23258815576953],[-127.28843943287016,53.23276265910872],[-127.28835553871978,53.23293501370841],[-127.28824329534683,53.2331015087785],[-127.28810175291781,53.23326104297776],[-127.28797532293025,53.23342377444881],[-127.28792530307544,53.23359912230749],[-127.28789888408339,53.23377926069642],[-127.28780930733365,53.23395055595297],[-127.28771786845242,53.23412187134184],[-127.28765755299781,53.234298451355606],[-127.28752824470916,53.23445952817201],[-127.28738855454385,53.234618485425614],[-127.28729878420464,53.234783059035486],[-127.28709972028139,53.2349342519402],[-127.28696004385696,53.235093764253556],[-127.28682413623291,53.23525379126499],[-127.28669203182997,53.23541546211894],[-127.28656465923342,53.23557820200034],[-127.28643353485381,53.23574154717573],[-127.2863071420351,53.2359059524293],[-127.2862137312207,53.23607449089323],[-127.28619479224814,53.23625398268289],[-127.28625181056788,53.236431530004495],[-127.2863788484469,53.236596547566265],[-127.28648974910766,53.23678640089814],[-127.2864982257223,53.23694149916036],[-127.2865185587,53.237116082695955],[-127.28649216561867,53.23729734060606],[-127.28650609161193,53.23747703156575],[-127.28654248776576,53.23765536714726],[-127.2865891957429,53.23783302607215],[-127.28659842334415,53.238012767952895],[-127.2865663148426,53.23819128197343],[-127.28648995999374,53.238365238051955],[-127.28637864065921,53.23853172061883],[-127.28624934891502,53.238693924810505],[-127.28612196473127,53.23885666393503],[-127.28600213928226,53.23902156200363],[-127.28588515227764,53.239186984934825],[-127.28576816462976,53.23935241669762],[-127.28564928222946,53.23951730411155],[-127.28552852223677,53.239682211735634],[-127.2854020631268,53.2398449399117],[-127.28528960031547,53.24000471040884],[-127.2851179115878,53.24016176996092],[-127.28496774480936,53.24031691075229],[-127.28481475221655,53.24047151719358],[-127.2846579541361,53.240624488313806],[-127.2845011720847,53.24077802377893],[-127.2843443717316,53.24093099446004],[-127.28418946385858,53.24108450020206],[-127.28403364115803,53.24123858037256],[-127.28388062492614,53.24139262993081],[-127.2837304832668,53.241548889222315],[-127.28357937559372,53.24170403821884],[-127.28343301740301,53.241860820884376],[-127.28330464978374,53.24202300238362],[-127.28320183144507,53.24219219523908],[-127.28311979113865,53.24236508953448],[-127.28305565709584,53.24254058688389],[-127.28300941265485,53.242718131712934],[-127.28300171794372,53.2428975005409],[-127.28301843865599,53.24307716100572],[-127.28302577565981,53.24325693193309],[-127.2830303047124,53.24343672425657],[-127.28301885627806,53.24361613362611],[-127.28297262765037,53.243794242904166],[-127.28286222608794,53.24396071146161],[-127.28273763790835,53.244123980692585],[-127.28261969519225,53.24428997475309],[-127.28250367744876,53.24445706838972],[-127.28238858972286,53.244624151832454],[-127.28226875020994,53.24478960123071],[-127.28214320921553,53.24495231526738],[-127.28200818285276,53.24511233482579],[-127.28186079280816,53.24526687620268],[-127.28169539165513,53.24541545356141],[-127.28151384118577,53.24555804671027],[-127.28132182267098,53.245696261551934],[-127.28112222536437,53.245831761072864],[-127.28092357486135,53.24596781475749],[-127.28072965875644,53.246105493279515],[-127.28055286960715,53.24625026552526],[-127.28042070682238,53.246411928456496],[-127.28027430558498,53.24656870699835],[-127.28013740474154,53.24672873542831],[-127.28003549143276,53.24689735930826],[-127.27997328257574,53.2470750746467],[-127.27998874057629,53.24724466386676],[-127.28014647628014,53.24739983593491],[-127.28026505236849,53.24756439473496],[-127.28040503606316,53.247722563878625],[-127.28052082286779,53.24788770830941],[-127.28064306899788,53.248048865504835],[-127.28067011508254,53.24822897899347],[-127.28070759459163,53.24841234140086],[-127.28079899978154,53.24857831353551],[-127.28101306933681,53.24870262178464],[-127.28127052850067,53.24880237403312],[-127.2815440347944,53.248874494864054],[-127.28182665336062,53.24893698760339],[-127.28208009871854,53.24896674382529],[-127.28228794175064,53.2490401374323],[-127.28228450970437,53.24914381917007],[-127.28226170995232,53.24922754968176],[-127.28209188330995,53.24938569500235],[-127.28186445078497,53.249501891405735],[-127.28160038320894,53.24958654358409],[-127.28132166794691,53.249652860154846],[-127.28103396903853,53.2497013535606],[-127.28074339310751,53.24974762729999],[-127.2804577397879,53.24980169985517],[-127.28017205151666,53.249854642596134],[-127.27989038857493,53.24991651440905],[-127.2796282423433,53.2500028176894],[-127.2793873883758,53.25011018974839],[-127.27916190631774,53.250229156608256],[-127.2789248378014,53.25033759843197],[-127.27868015802588,53.25044276918729],[-127.27849661372291,53.25058257268765],[-127.27834168310976,53.2507371901772],[-127.27814770280094,53.250873743970395],[-127.2779432519313,53.25100537233044],[-127.27773594056711,53.25113534585268],[-127.27751712945921,53.25125815492356],[-127.27732317618296,53.251395271731845],[-127.2772353625196,53.2515654170351],[-127.27719858639064,53.251746218023435],[-127.27721709539273,53.25192361793325],[-127.27730332024834,53.25210477977421],[-127.27744968421867,53.25225671598582],[-127.27772284862806,53.252316523542866],[-127.27800545274063,53.25237846983416],[-127.278195637721,53.25251984827541],[-127.27840968568526,53.25264304080331],[-127.278687912588,53.25271511741605],[-127.27892951123248,53.252817842540544],[-127.27910946854848,53.252962126642764],[-127.27925135989608,53.25312083205886],[-127.27936531391711,53.25328712651788],[-127.2794484727105,53.253459911427235],[-127.27950078308682,53.253636946365],[-127.27953342401659,53.25381532291763],[-127.27955294274491,53.253994952550194],[-127.27954994919325,53.25417483395124],[-127.27951872976904,53.25435333450474],[-127.27947529786043,53.25453140200225],[-127.27944409287588,53.25470990234083],[-127.27942699412459,53.254889371045024],[-127.27941554438364,53.25506934355065],[-127.27940595480212,53.2552487312306],[-127.27940294524528,53.25542860371077],[-127.2794065142567,53.25560841419118],[-127.27940631142991,53.25578770058718],[-127.27939956207311,53.25596761334781],[-127.27938998932207,53.2561475655031],[-127.27938508539525,53.25632690254536],[-127.27938865413508,53.256506703980676],[-127.27939410059979,53.256686494113836],[-127.27938452739109,53.25686643723988],[-127.27933544318512,53.257044009592],[-127.27919268602098,53.257197940394065],[-127.27893920583386,53.2572931210464],[-127.27869059495711,53.25739384231999],[-127.27848134316538,53.25752271678661],[-127.27833675659605,53.25767890723316],[-127.27824712248793,53.25785075751415],[-127.27818106720156,53.258026271032065],[-127.27814515292742,53.25820482135218],[-127.27814401528966,53.2583846732962],[-127.27814287584683,53.258563969462564],[-127.27812389249105,53.2587434578444],[-127.2781312113834,53.25892322759938],[-127.27818257672922,53.25910027280746],[-127.27826107288197,53.2592736730717],[-127.27837410807075,53.25943996902055],[-127.27853550491294,53.25959118586888],[-127.27873676889234,53.259725156003604],[-127.27895004255154,53.259852282164196],[-127.27914941469106,53.25998571622177],[-127.27930991877952,53.260138053210596],[-127.27942199727637,53.26030380269162],[-127.27947901959254,53.260481351029775],[-127.27954444832103,53.260657132368415],[-127.27974712530487,53.26080621711419],[-127.27993818350824,53.26094422162344],[-127.28015605132963,53.26106792554664],[-127.28041426028174,53.261159263303206],[-127.2806986674203,53.26121614624338],[-127.28099685776677,53.26123253188851],[-127.2813758523575,53.26124972942195],[-127.28152466614074,53.26129518418133],[-127.28157420758016,53.26138037361755],[-127.2815784398672,53.26151982860486],[-127.28157041625848,53.261719368446606],[-127.28163773326332,53.26189512823678],[-127.28169087781842,53.261975231851146],[-127.28182660175183,53.262022503946355],[-127.28211103347498,53.26207993907308],[-127.2824041248947,53.26211374893851],[-127.28270328573184,53.26213068461819],[-127.28300232782694,53.26214370347967],[-127.28329991782653,53.26217073935824],[-127.28356710291845,53.26224796223728],[-127.28382809953385,53.26233758620692],[-127.2841159867528,53.262385450248374],[-127.28441285227012,53.26241921434218],[-127.284704948401,53.26245078829051],[-127.28499482642192,53.26247118030634],[-127.28527635243225,53.26243339483828],[-127.28555912270048,53.262374305256024],[-127.28582617361899,53.26229297485407],[-127.28606516918842,53.26218449956445],[-127.28626487706262,53.26205011287668],[-127.2864084516168,53.26189223867332],[-127.28648674417971,53.26171882899068],[-127.28658580749712,53.261548555582394],[-127.28678559808691,53.261417528601385],[-127.2870351596654,53.261316780313145],[-127.28729247147899,53.26122434685334],[-127.2875634528129,53.26114857236186],[-127.28784516247673,53.26108612709739],[-127.28813475761278,53.261035921325536],[-127.28842868828444,53.26100471669641],[-127.28872618813273,53.26102893411562],[-127.28900254188504,53.26109876630765],[-127.28882922284615,53.26114322910259],[-127.28868339487182,53.26119635726002],[-127.28856048899418,53.261261562078055],[-127.28845877059021,53.261406093998666],[-127.28835497745247,53.26157474412125],[-127.2882492886192,53.261742849967],[-127.28814554493557,53.26191317562739],[-127.28801518847175,53.262073140599036],[-127.287823148384,53.26221192916566],[-127.28761770922216,53.262343019131926],[-127.28740749686388,53.26247136368056],[-127.28721829612739,53.26261124091522],[-127.28710691575368,53.26277772205163],[-127.28707856317682,53.26295675771606],[-127.28709060548542,53.26313591096352],[-127.28715045380277,53.26331230456492],[-127.28716466652493,53.263501518947784],[-127.2871584023088,53.263665739173724],[-127.28711564932654,53.26383428151345],[-127.2870950119205,53.26401995652868],[-127.28708242392494,53.26419265370582],[-127.28710965941279,53.26437724465665],[-127.28716910951277,53.26457157084799],[-127.28730125426223,53.26471636113008],[-127.28744133810586,53.264875076148954],[-127.28759076085348,53.265032013361306],[-127.28774111390378,53.265188375545215],[-127.28790733633652,53.26534175950824],[-127.28804737341397,53.265498798012445],[-127.28811563757625,53.26567397911502],[-127.28809490087916,53.265856284709635],[-127.2879900614368,53.266021583777665],[-127.28785409234385,53.26618272952928],[-127.28770773542927,53.2663423115249],[-127.28757272788127,53.26650401121328],[-127.28747077932302,53.26667207518324],[-127.2874056289043,53.266845907177014],[-127.28736318106921,53.267024530690406],[-127.28733015837827,53.26720472822238],[-127.28729148286537,53.26738387548921],[-127.28724805339289,53.26756138902766],[-127.28720464049354,53.26773945812865],[-127.28716310541989,53.26791751578924],[-127.28712250117437,53.268095554354936],[-127.28708568468902,53.268274116547325],[-127.28705355523681,53.268452627874495],[-127.28702237418577,53.26863169363038],[-127.28694435374223,53.268783810081615],[-127.28681076960584,53.268930926376406],[-127.28660397045041,53.26904913801987],[-127.28633879257855,53.26913213439976],[-127.2861208597346,53.269254947927465],[-127.28594018513685,53.26939809141387],[-127.28579847822277,53.26955649968205],[-127.28564917310945,53.269712193253966],[-127.28549228638535,53.269865718735005],[-127.28534017143255,53.2700219980833],[-127.2851173733477,53.2701392686913],[-127.28486975252255,53.27024391715809],[-127.28465559980924,53.27036780740889],[-127.28448161741254,53.270515358120846],[-127.28430286115518,53.270660163400244],[-127.28412412244532,53.270806079751075],[-127.28395578772043,53.270954133250925],[-127.28382946272843,53.2711863267131],[-127.28383261877539,53.27132075479247],[-127.2836967649048,53.27145612181331],[-127.28343150793809,53.27159849968912],[-127.28315157236494,53.271691168111865],[-127.28287042521909,53.27174351030759],[-127.28258770741199,53.27180650924008],[-127.2823725407622,53.27192817399958],[-127.28218329784322,53.27206859811405],[-127.2819662695708,53.27219140272313],[-127.28175311304875,53.27231751768706],[-127.28155144726125,53.272451360751326],[-127.28133732474788,53.272576929578456],[-127.28110015347127,53.27268593904306],[-127.28085629591254,53.27279109388407],[-127.28061047628465,53.27289403730718],[-127.28036275809112,53.27299587120404],[-127.2801005037657,53.273083303602185],[-127.27985660955319,53.273187900935405],[-127.27966919682869,53.27332718054624],[-127.27949516797213,53.27347416812797],[-127.27932113763225,53.27362114648225],[-127.27914045523796,53.2737653994429],[-127.2789521420197,53.2739063727875],[-127.2787321323023,53.274024156489276],[-127.2784641318488,53.274108285483074],[-127.27814390654353,53.27411173444678],[-127.2778433269475,53.274112730000965],[-127.2775442865503,53.27410250307544],[-127.27724592356874,53.27408385976364],[-127.27694767779548,53.274068584952246],[-127.27664769131674,53.27405836595224],[-127.27634941180223,53.27404196052578],[-127.27605526195771,53.27400702594195],[-127.27576023369275,53.27397434110523],[-127.27547688014917,53.27392360184297],[-127.27521122641157,53.2738368152724],[-127.27492169747991,53.27379903144789],[-127.27462208505902,53.27376975458996],[-127.27433013797192,53.27377680691093],[-127.27404422921569,53.273828058487815],[-127.27374346579191,53.273822887308455],[-127.2734432598342,53.27383619338613],[-127.27314234155054,53.27385678520209],[-127.2728431005184,53.27387119992016],[-127.27254703992283,53.273865975272265],[-127.2722572785876,53.2738208996433],[-127.27196987015768,53.27376011090516],[-127.27168058058209,53.273730151276006],[-127.27139035403339,53.27379433308136],[-127.2711862789586,53.27391136714825],[-127.27111558436074,53.27409085065169],[-127.27107869494976,53.2742694073196],[-127.27108690113242,53.27444860152549],[-127.2711429421718,53.2746250423902],[-127.27112392183564,53.2748045281545],[-127.27104836848385,53.27497845202414],[-127.27093120652945,53.27514330150197],[-127.27072082900415,53.27526993092776],[-127.2704459516118,53.27534458629674],[-127.27016704905589,53.27541088473201],[-127.26987606537858,53.27544985472937],[-127.2695759697337,53.27543625740978],[-127.26927834540858,53.27541086304776],[-127.26898181974494,53.27539050298207],[-127.26868374871702,53.27541273814481],[-127.26839792299955,53.275467336533545],[-127.26812392149483,53.275540300814754],[-127.26786355462248,53.27562936173908],[-127.2676292422239,53.275741674553174],[-127.26743035692522,53.27587601881067],[-127.26725341445844,53.27602133354489],[-127.26709166690026,53.27617264410834],[-127.26689756530679,53.276309742094284],[-127.26667092784892,53.27642757354236],[-127.26642603246808,53.276531588481944],[-127.26616756781502,53.27662174575151],[-127.2658965309833,53.27669971091502],[-127.26561663017237,53.27676432383978],[-127.26534286713655,53.276845678311815],[-127.26515327722676,53.27697712265834],[-127.26505887842009,53.27715012257535],[-127.26503045625903,53.2773302717815],[-127.26473068442043,53.27732786374435],[-127.2644314644946,53.27734337722248],[-127.26415744369041,53.277416323315926],[-127.26388538427614,53.277492053634],[-127.26358940880085,53.277522097043985],[-127.26328980329791,53.277525286129226],[-127.26299223532628,53.27750212529923],[-127.26270157770146,53.27745871208991],[-127.26241176713313,53.277411936602896],[-127.26211848663766,53.277375272925426],[-127.26182344404857,53.277341997750675],[-127.26153278872815,53.27729858167587],[-127.261268141021,53.27721399445697],[-127.26106226116387,53.27708340618223],[-127.26086818246391,53.27693923712674],[-127.26063894237915,53.27684475255289],[-127.26034608372333,53.276821526167026],[-127.26014576169311,53.276688636294146],[-127.26003270001446,53.27652007504632],[-127.25992715428964,53.27635199864054],[-127.25985525008427,53.27617740673829],[-127.25974787763911,53.27601102583098],[-127.25955307753107,53.275873594319854],[-127.25934164305794,53.275745858831996],[-127.25909437603097,53.27564483057328],[-127.25883610805326,53.27555289151864],[-127.25857877101554,53.27546037730159],[-127.25832600625462,53.27536388779721],[-127.25807779751963,53.275262876398195],[-127.25782960473137,53.275161855354554],[-127.25758327662231,53.275060823005965],[-127.25737554015132,53.274930239131976],[-127.2571604774,53.27480646451722],[-127.25689219587382,53.274724702971746],[-127.25660952483516,53.274664947580526],[-127.25632241668536,53.27461364678754],[-127.25603264924625,53.274567411255596],[-127.25574195234216,53.274521740627925],[-127.25545487953322,53.274471557888944],[-127.25517129714471,53.2744123645167],[-127.25490671357389,53.27432888314611],[-127.25472776111216,53.27418679424985],[-127.25465117880331,53.27401223975835],[-127.25456151658868,53.27384007345049],[-127.25446253046076,53.27367023767152],[-127.2543953413635,53.27349559267037],[-127.25437592038782,53.27331595177072],[-127.2543987843582,53.27313699341475],[-127.25445646963263,53.27296046377927],[-127.25456232108056,53.27279238902909],[-127.25472411710149,53.27264165087419],[-127.25491631340738,53.272502916638985],[-127.25511141628212,53.27236694812337],[-127.25528933179582,53.27222164120383],[-127.25541221437483,53.27205786747725],[-127.2554510945514,53.27188041560957],[-127.25543072352983,53.27170079370687],[-127.25539253631797,53.27152247179302],[-127.25535998219125,53.27134353449538],[-127.25535744604684,53.271163723881386],[-127.25540855888352,53.270987263054],[-127.25550589120199,53.27081703629468],[-127.25563254148788,53.27065377808269],[-127.25577531354797,53.270495960639025],[-127.25592948430642,53.270341939676214],[-127.25609123423611,53.27019063506552],[-127.25624254484359,53.270035523408986],[-127.25638341620305,53.2698766047454],[-127.25651481447039,53.269715536203854],[-127.2565825081764,53.26955963305927],[-127.25648438876937,53.269387548409156],[-127.25634538616949,53.269229907373756],[-127.25612478816493,53.269108430479996],[-127.25592915156703,53.2689732339067],[-127.25579384171633,53.26881331212266],[-127.25570044647466,53.26864174155644],[-127.25567636987675,53.268463834895904],[-127.2556672504549,53.268283528928535],[-127.25564877471426,53.26810444245679],[-127.25562558026073,53.2679248501212],[-127.25561273863187,53.267745703999715],[-127.25560159168494,53.26756037262872],[-127.25540744356415,53.267443096597745],[-127.25513814933565,53.26735742470826],[-127.25489461419784,53.26725355161675],[-127.25465739561932,53.26714120292151],[-127.25450918418016,53.26698925962996],[-127.25439806737882,53.26682180159783],[-127.25423290703978,53.26666835187],[-127.25426161778284,53.26649660994608],[-127.25417614461409,53.26633840051441],[-127.2539105991498,53.266252130495744],[-127.25362712414345,53.26619461790499],[-127.25332892736141,53.266179274884195],[-127.25304435710783,53.26614810901243],[-127.2529800098624,53.26597342374459],[-127.2529896976489,53.265793483614836],[-127.25303326930768,53.26561598247071],[-127.25308812403638,53.26543891791469],[-127.25313167842663,53.26526086110124],[-127.25314419109431,53.265081446825974],[-127.25310791234679,53.26490310357518],[-127.25312230280227,53.26472366943838],[-127.25315174719127,53.26454464103839],[-127.25316520596098,53.264365216699275],[-127.25318054238524,53.26418577251019],[-127.25320340621211,53.26400680457575],[-127.25321874234388,53.26382736034836],[-127.25323876519667,53.26364786660038],[-127.25326255837504,53.26346833300793],[-127.25328823081445,53.263289344281716],[-127.25331297142067,53.26311035640932],[-127.25335748531981,53.26293284490248],[-127.25339821192125,53.26275481759015],[-127.25343423468915,53.262576275194576],[-127.25347120350786,53.2623977227741],[-127.2535128419476,53.26221855625018],[-127.25344753591231,53.26204332527529],[-127.25322616867886,53.261925768472544],[-127.25300744547252,53.2618025807645],[-127.25281366415514,53.26166512734625],[-127.25260881729022,53.26153450456349],[-127.25238733891729,53.26141303006937],[-127.25214931167417,53.26130349074258],[-127.25187396388621,53.2612335627547],[-127.25158949587811,53.26117325023835],[-127.25136722380208,53.26105626430178],[-127.25115680140438,53.26092738310806],[-127.25095372485502,53.26079282152023],[-127.25086046655274,53.26062460692708],[-127.25085419473604,53.26044482584444],[-127.25084606066326,53.2602650733423],[-127.25086517708465,53.26008614508251],[-127.25091249048607,53.259908048997815],[-127.2509109531747,53.25972933844851],[-127.25090655910527,53.259549546450444],[-127.2508871761042,53.259370468243105],[-127.25084245531683,53.25919221292762],[-127.25075840635891,53.259017742705375],[-127.25055921129415,53.25888705682422],[-127.25027504298687,53.25883626698036],[-127.24997345799282,53.25883104534468],[-127.24967956366885,53.25886383051882],[-127.24938164896714,53.25888770213299],[-127.24909043578317,53.25885267087601],[-127.24880962537188,53.2587878312603],[-127.24852526113656,53.25873031621999],[-127.24823998310971,53.258673374858546],[-127.24799103127441,53.258574582664856],[-127.24784000058195,53.25842098430033],[-127.24771867990769,53.258255859172486],[-127.24762723499337,53.25808482613147],[-127.24753485931856,53.25791379383572],[-127.24748925773423,53.257737231804356],[-127.24747175111914,53.25755757752495],[-127.2474373652351,53.257379212259146],[-127.2474095418544,53.25720022219325],[-127.24738828089484,53.25702060733175],[-127.247341716591,53.256842934783606],[-127.24724469343849,53.256673636312016],[-127.24712618874636,53.256508480900074],[-127.24697977043417,53.25635147134921],[-127.24684358868473,53.256191548257604],[-127.24672320950435,53.25602641213302],[-127.24656102730599,53.25587629082109],[-127.24633962878752,53.255755915889395],[-127.24609428839418,53.255651488231706],[-127.24582078212764,53.25557872136719],[-127.24552766790282,53.25554202524665],[-127.24524512331202,53.25548112186951],[-127.24501731737884,53.25536641434642],[-127.24477568761552,53.25526025979969],[-127.24452031636645,53.25516545409163],[-127.24425584141025,53.255080827975085],[-127.24398505182846,53.255004675849484],[-127.24371783639096,53.254922318318584],[-127.24346615831539,53.254825230619126],[-127.2432263633076,53.2547173684718],[-127.24300677542863,53.2545941716266],[-127.24283068918477,53.25444979356826],[-127.24268706924532,53.254291619995215],[-127.24251002124748,53.254146131020676],[-127.24227757709171,53.254032587407224],[-127.2420095554046,53.25395416082009],[-127.24171810229238,53.253909585437114],[-127.24142247447607,53.253882425521226],[-127.24112258917512,53.253869876130764],[-127.24082434286667,53.25388140442757],[-127.24053059116638,53.25391809210874],[-127.24023986110055,53.25396202634],[-127.23994390215647,53.253987530470184],[-127.23964325133564,53.25398115266002],[-127.23935547158341,53.25393317156398],[-127.23911850086283,53.25382528068436],[-127.23891277036836,53.253693523279594],[-127.23868221593989,53.25357996195081],[-127.2384241107563,53.25348741286646],[-127.23814521466731,53.25342252838976],[-127.23784867796432,53.25339593384778],[-127.23754809705073,53.253391782111585],[-127.23725312096822,53.25341895456408],[-127.23696941200029,53.25347793900833],[-127.23667959462246,53.25352073448584],[-127.23638059864126,53.2535384177951],[-127.23609174444057,53.25358233126564],[-127.23580109263827,53.25362849481837],[-127.23550932351023,53.253604641572345],[-127.23522049032974,53.25355274416326],[-127.23493797539773,53.25349238090191],[-127.23469368772865,53.25339015108476],[-127.23444479897866,53.25329133916006],[-127.23417945754056,53.253207820363684],[-127.23391862274026,53.25311808678999],[-127.23366696171124,53.253020422606276],[-127.23344561490873,53.25290002343627],[-127.23326676001174,53.25275566025775],[-127.23311575448179,53.252600357944324],[-127.23297589902195,53.25244101326051],[-127.23281097228106,53.252291457827624],[-127.23260899099105,53.2521585391536],[-127.23237292795893,53.252048375557045],[-127.23211760541751,53.25195410772035],[-127.23186321367464,53.2518592649356],[-127.23161065117628,53.25176271736536],[-127.2313654030475,53.251659379211084],[-127.23112472581234,53.251551502092894],[-127.23086309100987,53.25146569648519],[-127.2305761553746,53.251413768232695],[-127.23029090189048,53.25135509875527],[-127.23005672685879,53.25124491999561],[-127.22992999518948,53.25108431517001],[-127.22985822652308,53.25090913840504],[-127.2297808745372,53.250735139986524],[-127.2296820586189,53.25056584607932],[-127.22957762842614,53.250397175019074],[-127.2294909264973,53.250224949596905],[-127.22938372229339,53.25005742762097],[-127.22921604196374,53.24990901628669],[-127.2290584514139,53.24975265656137],[-127.229074113087,53.2495810553759],[-127.22926339889545,53.249439585194],[-127.22945193183502,53.24930428981032],[-127.22947111773826,53.249124808372116],[-127.22936664291807,53.24895445225061],[-127.22926223413657,53.248786336378856],[-127.22917925864033,53.248612960459795],[-127.22903030655762,53.248462669480936],[-127.22875666456444,53.24838258632664],[-127.22847331114959,53.24832389294041],[-127.22818466940892,53.2482770235451],[-127.22791032826083,53.248205345089126],[-127.22764599526609,53.24812292199922],[-127.2273493883309,53.248092376032645],[-127.22705474148931,53.24806517059937],[-127.22677044540964,53.248005927158296],[-127.22648535031618,53.24795172914425],[-127.22620647659546,53.24788569623525],[-127.22593029706019,53.247815161731566],[-127.22569256117777,53.2477106048928],[-127.22546735999661,53.24761713220235],[-127.22516181278854,53.24760236040162],[-127.22486289154801,53.24758919568344],[-127.22456378660789,53.24760181293569],[-127.22426691673249,53.247627287809735],[-127.2239730804188,53.247660009501686],[-127.22371080185106,53.247745078072796],[-127.22348027955027,53.24785670189072],[-127.22319663749633,53.24791733832164],[-127.2229079699149,53.24796681176362],[-127.22262124249997,53.248017949750626],[-127.22234345623048,53.24808636735666],[-127.22206759461254,53.24815644076078],[-127.22177360724918,53.24818412066255],[-127.2214769891148,53.24815356016849],[-127.22118386517784,53.248113434107054],[-127.22089931158135,53.24814269996745],[-127.22064772840133,53.24824108876763],[-127.22039705799392,53.24833835607566],[-127.22011729160825,53.248403418265205],[-127.21983158592961,53.248457900464096],[-127.21953477084138,53.248485048082],[-127.21923679903203,53.24850491902168],[-127.21893977401113,53.24852533525488],[-127.21864803088967,53.248565874682384],[-127.21836726464727,53.24862870193954],[-127.21808651511306,53.248692657827306],[-127.21782134529177,53.248775492843414],[-127.2175870651271,53.24888827298989],[-127.2173862377656,53.249021434329734],[-127.2172225206322,53.24917157795862],[-127.21711752714639,53.24934017647135],[-127.21707290632212,53.24951823107651],[-127.21707149290214,53.249697527574895],[-127.21709356761522,53.249877147794244],[-127.21707715202791,53.25005659818943],[-127.21699104024204,53.25022892005879],[-127.21683397642686,53.25038235626924],[-127.21660539579133,53.250497316819796],[-127.21635089981052,53.25059292921654],[-127.21607307020051,53.250660767475324],[-127.21577821210607,53.25069180272446],[-127.21547879212326,53.25069430645804],[-127.21518145541737,53.25067158107099],[-127.21488663733545,53.250638744544965],[-127.21459271762528,53.25060422180689],[-127.2143075884217,53.250548874418804],[-127.21404867225891,53.25045795748652],[-127.21384030993107,53.2503295547827],[-127.21364943636107,53.25018920293284],[-127.21338972266044,53.25010333952469],[-127.21309758829011,53.25006542436301],[-127.21280887118075,53.250015712662766],[-127.21251333758592,53.24999016541249],[-127.2122135687671,53.24998033890011],[-127.21191543751085,53.24996266028889],[-127.21163039634529,53.24991010242317],[-127.2113542279183,53.24983953405999],[-127.21107988925802,53.24976726113075],[-127.21080826225008,53.249691033624806],[-127.2105356904002,53.24961482411034],[-127.21031531042155,53.24949269628136],[-127.21007848564605,53.249385858224734],[-127.20980225907377,53.24931304586243],[-127.20952523159222,53.24924527884657],[-127.20924637496195,53.24917865034849],[-127.20897655302824,53.249100159274064],[-127.20871038928652,53.24901771301055],[-127.2084414836512,53.24893809984948],[-127.20817893301816,53.24885113355556],[-127.20792369856245,53.24875680438277],[-127.207682215986,53.24865113851234],[-127.20745174077365,53.248536387058415],[-127.20718827977197,53.248449992604286],[-127.20694218045188,53.248347169027774],[-127.20670168046442,53.248242602735544],[-127.20641025618707,53.24819626469094],[-127.20614959057399,53.24810871901553],[-127.20591082804755,53.24799965143119],[-127.20567487400382,53.2478899990518],[-127.2054333858962,53.24778376398207],[-127.20519650327712,53.24767412010057],[-127.20492482167916,53.24759564778244],[-127.20463292001241,53.247564997414834],[-127.20433206452194,53.247549559652605],[-127.2040383504095,53.24752116725196],[-127.20376588444753,53.247447738080766],[-127.2034790094294,53.24739574418384],[-127.20319568194407,53.2473364347792],[-127.20292047438336,53.247265272517076],[-127.20266157201853,53.24717377511652],[-127.20238381424656,53.24711215733392],[-127.20208903016096,53.24707873317833],[-127.20197405070002,53.24716225140549],[-127.20190864132108,53.247337713754426],[-127.20178937736948,53.24750139611446],[-127.20159519645716,53.2476389450722],[-127.20139339361029,53.24777208885288],[-127.20120966896825,53.24791401326205],[-127.20104682992411,53.248064134183075],[-127.20082304724134,53.248184053378274],[-127.20055701227494,53.24827078453349],[-127.20042907898215,53.248427265324445],[-127.20033159136507,53.2485974487001],[-127.20000104055337,53.248826015461304],[-127.1999797637226,53.24883688002255],[-127.1997626793614,53.24896176713748],[-127.19955892367607,53.24909268631877],[-127.19939325102011,53.24924283342784],[-127.19923800409639,53.249396227435696],[-127.19905619011627,53.24953981417058],[-127.19885432237115,53.24967126873906],[-127.198626691304,53.24978842564923],[-127.19845525374164,53.24993413859305],[-127.19830378723864,53.250088622538726],[-127.19809528938224,53.25021846642683],[-127.19786476545855,53.250332845259884],[-127.19762753559303,53.25044280930418],[-127.19740163113248,53.25055489954591],[-127.19714242260623,53.25065163836348],[-127.1969486343094,53.250770682389536],[-127.19697576895443,53.25096594141688],[-127.19698679703292,53.25115631618938],[-127.19674430416141,53.25124671812027],[-127.19659201640533,53.251272905537526],[-127.19648734207341,53.25132326364357],[-127.1963644713251,53.25142703368316],[-127.19629405671698,53.251460238492555],[-127.19614983738118,53.25153956349895],[-127.19603950897313,53.25155580726397],[-127.19575888251107,53.25142641673247],[-127.19566947954775,53.25138585920165],[-127.19549544312795,53.25134055205353],[-127.19534696791891,53.2513358810508],[-127.19520336872861,53.25133789273087],[-127.19495112346576,53.251315782882095],[-127.19460471985035,53.25131703087956],[-127.19426508876823,53.251359103643075],[-127.19397525486896,53.25136874429694],[-127.19365015003349,53.25139330572927],[-127.19342707913567,53.251439814615345],[-127.19329727106972,53.251497701519654],[-127.19325345489207,53.25157545712277],[-127.19320940933336,53.25174454063687],[-127.19315258643283,53.25192663395611],[-127.19307580619787,53.25209996391304],[-127.1929460828804,53.25226093594459],[-127.19276612814681,53.25240504955692],[-127.19264495312466,53.25256930573681],[-127.19256723917296,53.252743200430956],[-127.1925027132178,53.25291864771789],[-127.1924429034339,53.25309461227558],[-127.19241792646417,53.2532741439383],[-127.1924023358803,53.25345358122946],[-127.19238202839725,53.2536325011779],[-127.19236175169901,53.25381198552865],[-127.19234991536511,53.25399138502379],[-127.19236250043889,53.25417110377577],[-127.19238447216429,53.254350719200055],[-127.19240172746245,53.254529826242106],[-127.19242463005214,53.25470887650309],[-127.1924625211969,53.25488722031611],[-127.19248731731668,53.255066807272286],[-127.19251678394811,53.25524579149109],[-127.19258368839247,53.255420482070654],[-127.19271035406763,53.25558335781267],[-127.19286866808358,53.25573639541031],[-127.19303345180553,53.25588600622803],[-127.19318640494909,53.256048626061926],[-127.19338832742417,53.256182731595686],[-127.19359925945281,53.25630386485158],[-127.19370537494673,53.256470316744156],[-127.19380696687517,53.25667602266327],[-127.19389433734958,53.256810168435635],[-127.1939874393718,53.25698122405744],[-127.19406463962564,53.257154689613124],[-127.19413530822446,53.25732933238965],[-127.19422653512167,53.257500415636265],[-127.19434502553388,53.25767233588684],[-127.19451247168568,53.25781575954889],[-127.19462238104983,53.25798328390441],[-127.19470520235481,53.258156127665465],[-127.19474179468598,53.25832103762009],[-127.1949053822122,53.258493623644924],[-127.19505811414089,53.258647834998904],[-127.19516894337877,53.25881479378485],[-127.19527606508974,53.258982910313954],[-127.19539939316465,53.25915982746371],[-127.19542202655585,53.25932935980292],[-127.19540647820821,53.25950991710277],[-127.1954209395469,53.25968905152373],[-127.19548320800143,53.25986489850112],[-127.1956387241886,53.2600179605142],[-127.19581000270502,53.260163584689316],[-127.19592274727196,53.260331079173774],[-127.19606897379617,53.26048759575531],[-127.19623754194946,53.26063660813532],[-127.19640237246547,53.26078676950107],[-127.19654954868086,53.26094327591092],[-127.19670507197975,53.261095780679526],[-127.19688104493909,53.26124134699618],[-127.19693573182649,53.261414472863045],[-127.19684099341481,53.26158406826933],[-127.19672925957295,53.26175046453074],[-127.19663832245388,53.26192169765747],[-127.19646655912805,53.26205788975868],[-127.19632547732874,53.26214951699911],[-127.1961140420491,53.26227770031119],[-127.19590640791728,53.26240697437696],[-127.19567007238922,53.262551094806504],[-127.19550830553536,53.26267542392796],[-127.19524797582383,53.26276824226931],[-127.19495955006298,53.26279748351054],[-127.19464855574095,53.26279277158073],[-127.19435193303967,53.26276438370522],[-127.1940507672716,53.26274164330269],[-127.1938147616599,53.26263196817874],[-127.1935924527296,53.26250870882912],[-127.19331183320267,53.26248183365966],[-127.19300420347761,53.26249613208075],[-127.19270285543489,53.26253334125774],[-127.19243174190916,53.262610019028926],[-127.19216951242242,53.262702293880736],[-127.19188010673346,53.26273040800503],[-127.19158254120232,53.262735081871234],[-127.19127997342288,53.26272915600077],[-127.19097732661872,53.26272042442645],[-127.19068441629294,53.26272392881688],[-127.19037605763558,53.262712456265795],[-127.19008848047378,53.26270525647313],[-127.18977800754581,53.26268539536353],[-127.18948037962093,53.26268837935684],[-127.18918112566257,53.26269978711148],[-127.18887589230262,53.26266586940081],[-127.1886572078547,53.262670857085254],[-127.188334423706,53.26278053743181],[-127.18812316600491,53.26291599212187],[-127.18789439200039,53.263029211837946],[-127.18769821668467,53.26316675572728],[-127.1875114461032,53.26327115498277],[-127.18719853366756,53.2633650463847],[-127.18693240657889,53.263452866477095],[-127.18667006540423,53.263541768591715],[-127.18641919422242,53.263637834169806],[-127.18622649864682,53.26376525625061],[-127.18612145514521,53.26393774218291],[-127.18600601188719,53.26410753518738],[-127.18585716299478,53.26425804875371],[-127.18560920511656,53.26435800962375],[-127.18540340616296,53.264487237446986],[-127.1851871290742,53.264611531801954],[-127.1849033980007,53.26467487210362],[-127.1846669382072,53.264783124314356],[-127.18447456192843,53.26492230089488],[-127.18435611215229,53.265085954922654],[-127.18424910065039,53.26525509712888],[-127.18409752722815,53.26540956169824],[-127.18393080391743,53.26555968626393],[-127.18377831319647,53.265715280024764],[-127.18358488909487,53.26585110399507],[-127.18332339406895,53.2659371931891],[-127.18303659144516,53.265992151311224],[-127.1827426740149,53.266027575488124],[-127.18244565479698,53.26601933058991],[-127.18214731237161,53.26599709644424],[-127.18188269117697,53.26607256439261],[-127.18168206126938,53.266219661859964],[-127.18145860447194,53.26632329596481],[-127.18118449649289,53.266395495283355],[-127.18090063765341,53.2664549008415],[-127.18065220789236,53.26650499824213],[-127.18037186963053,53.26662319783924],[-127.18012293765503,53.266722591816624],[-127.17987790133063,53.266826993219695],[-127.17964611892677,53.26693518855111],[-127.17940766873849,53.26700646447467],[-127.17905311569133,53.26702343365325],[-127.17874608181435,53.26702648386047],[-127.17847208320163,53.26706954292004],[-127.17816295919434,53.26709894841173],[-127.17786360817838,53.26710807827514],[-127.17756442970419,53.26712393758397],[-127.17728040470914,53.2671777335524],[-127.17706882352661,53.26730308646827],[-127.17699567470395,53.267475811909215],[-127.17697343226394,53.26765474638607],[-127.17693203599627,53.26782098963737],[-127.17667106716067,53.26796084217669],[-127.17644714103383,53.26808183431753],[-127.17617895906044,53.268165167970125],[-127.17590112080147,53.268239068033914],[-127.17569699550276,53.268362668208596],[-127.17552541913109,53.26850891116853],[-127.17536723636877,53.268663420398994],[-127.17520906885376,53.26881905869766],[-127.17503756631208,53.26896754113141],[-127.17483744080467,53.26910061979889],[-127.17463262647514,53.26923374451711],[-127.17441627766793,53.26935745436358],[-127.1742142698858,53.26948999478005],[-127.17401131405077,53.26962253524586],[-127.17380644799509,53.2697539827114],[-127.17359489084086,53.269881569776935],[-127.17337951335008,53.270006388512655],[-127.17316030141876,53.27012901272794],[-127.17294014100419,53.270251081166016],[-127.17271903210693,53.270372593821634],[-127.17249695995166,53.27049355979946],[-127.17227390886282,53.27061341452315],[-127.17207168608725,53.270738665549665],[-127.17184410021127,53.27086416665088],[-127.17164842540812,53.2709887964986],[-127.17139992902848,53.27110553923816],[-127.17116633193099,53.27121765245737],[-127.17092891520934,53.27132756190853],[-127.17069151265822,53.27143802648829],[-127.17045219992409,53.271547397889734],[-127.17021283925227,53.27165508405046],[-127.16996965898682,53.27176056639022],[-127.16972450624905,53.27186270619402],[-127.16942996149457,53.271979333767845],[-127.16917819493653,53.27201206740553],[-127.16889620625211,53.272073110327106],[-127.16860541644144,53.272121913878514],[-127.16835727819314,53.272217921990006],[-127.168135245825,53.27234112005327],[-127.16791889304766,53.272465938037286],[-127.1677263651844,53.272603411266644],[-127.16756051748204,53.272754067527806],[-127.16738838411862,53.27288181988615],[-127.16716412008861,53.272856569159856],[-127.16677995447509,53.27272140626619],[-127.16653930751828,53.27261340845996],[-127.16625320745715,53.27255963117034],[-127.16595833653629,53.272528913796805],[-127.16572893033245,53.272419118727605],[-127.16563409244948,53.27225030112826],[-127.16557757986779,53.272074939908244],[-127.1654846212676,53.27190609475257],[-127.16528492993137,53.271783681681555],[-127.16496609756221,53.27176944867939],[-127.16466638623697,53.27176678779966],[-127.16436692240052,53.27177364338035],[-127.1640674272863,53.271778822265034],[-127.16376920332031,53.27179631326753],[-127.16346939980247,53.271790853536885],[-127.16335095302368,53.27178753270023],[-127.1631791927376,53.27175839838875],[-127.16293402691814,53.27165604007804],[-127.16267408373247,53.2715627809537],[-127.16260760502469,53.27146819095875],[-127.16245651199407,53.271404682837726],[-127.16222837646728,53.271306638218796],[-127.16201171762717,53.27118214491315],[-127.16182558733506,53.27107415963792],[-127.1615071909278,53.27100724136735],[-127.16105551307383,53.27108001062203],[-127.16073207653493,53.27106860808059],[-127.16038283178544,53.2710412144507],[-127.1601765933101,53.27098776226837],[-127.16005892026635,53.27080739399249],[-127.15996750184708,53.27072761263261],[-127.15974630459321,53.270539856686405],[-127.15953713859405,53.27041416521749],[-127.15931760385513,53.27035523905024],[-127.1590185884464,53.2703435933311],[-127.15871871865343,53.27033476089626],[-127.15841399234027,53.27032036372154],[-127.15811539236743,53.270323842702325],[-127.1578369553412,53.270377537065436],[-127.15757261657978,53.27046583723881],[-127.1573054211058,53.27055303521785],[-127.15702331768331,53.27061013381086],[-127.15673035424675,53.2706477246194],[-127.15643349632927,53.27068087071133],[-127.15614253268053,53.27072292250721],[-127.15585963307798,53.2707856195147],[-127.15558163483563,53.27085555573952],[-127.15529949640802,53.27091153004122],[-127.15500324498623,53.270932341299265],[-127.15468848469133,53.27092868126079],[-127.15440320791221,53.2709045649027],[-127.15410316656254,53.270889555308024],[-127.15380060459901,53.27085159507277],[-127.15351589296831,53.27081346953802],[-127.15321751650639,53.27079059814879],[-127.15292037951968,53.270813653778866],[-127.15262146954416,53.27080590811622],[-127.15232327828627,53.27082449055448],[-127.1520411968799,53.27088269748375],[-127.15179218852363,53.270982596382666],[-127.15154995840224,53.27108970762869],[-127.15131055212508,53.271197355691825],[-127.1510750079062,53.27130889196649],[-127.1510355517477,53.271205625542116],[-127.15104408706453,53.271036349913636],[-127.15114185553816,53.270866773501794],[-127.15119460993331,53.27070043035966],[-127.15122241387446,53.270514160515255],[-127.15120906787394,53.27033501271427],[-127.15113857021608,53.270160901197016],[-127.15127516502265,53.27000326431347],[-127.15128255379628,53.26982615629054],[-127.151223248795,53.269649139475504],[-127.15114246087484,53.26944206898748],[-127.15102212833968,53.26930037898486],[-127.15087408417367,53.26914158562386],[-127.15059963214495,53.26906581302257],[-127.15031824928006,53.26897666117271],[-127.15004018045232,53.268905960042936],[-127.14975858541635,53.26884370053907],[-127.1495504040721,53.26871798219084],[-127.14938283885402,53.26856609898927],[-127.14922648188373,53.26841186604345],[-127.14908502808562,53.26825300665176],[-127.14898466261963,53.26808535013091],[-127.14894877574265,53.26790585546647],[-127.14892980619763,53.26772620595444],[-127.1489559231944,53.26754723142796],[-127.14898950610062,53.26736595258603],[-127.1489893618151,53.2671883527651],[-127.1487746256304,53.267062696515175],[-127.14852671268781,53.26696089115398],[-127.14827606783086,53.266861917408434],[-127.14806971768397,53.266733937783115],[-127.14787811810274,53.26659573076198],[-127.1476883214518,53.266454700304074],[-127.14755072714873,53.26629916316739],[-127.1475401919787,53.26611886705951],[-127.14751089329823,53.26593931710602],[-127.14745724298211,53.26576223461221],[-127.14740359335946,53.26558516103954],[-127.14736589825927,53.265407368442524],[-127.14734035629563,53.265227773104584],[-127.1473176391603,53.265048715158436],[-127.1472883572648,53.264869720664684],[-127.14723565591507,53.264692637783426],[-127.14714460387204,53.26452151908584],[-127.14698825495935,53.264366727252614],[-127.1468105174927,53.264219976360145],[-127.14686224288864,53.26404972738255],[-127.14700906294581,53.26388807882566],[-127.1471003423235,53.26372192033018],[-127.14706153651991,53.26353798004008],[-127.14702959980914,53.26336516921709],[-127.1469721690538,53.263187011340584],[-127.1469194708864,53.263009919202275],[-127.14686486529244,53.262832289703546],[-127.14686663806118,53.26265523574399],[-127.14675005261388,53.2624776494556],[-127.14666063820715,53.26233172985431],[-127.14656525673482,53.26217409825059],[-127.14645665962595,53.26197906243861],[-127.146335892622,53.26181999966626],[-127.1461991584677,53.26166053525014],[-127.14620934569808,53.261482279447115],[-127.14629859329706,53.26131053853337],[-127.14621323111574,53.26114104916958],[-127.14611190187907,53.26097171397097],[-127.1459454326182,53.26082374132159],[-127.14574548567225,53.26068840811463],[-127.14547781394673,53.2606176051558],[-127.14518290470879,53.26058179062797],[-127.14500930917013,53.260447887069496],[-127.14487159245986,53.26028674537025],[-127.14466894894278,53.260155362576114],[-127.1444755280027,53.260017732281426],[-127.1443369138183,53.259858274864555],[-127.14427954459752,53.259681791170905],[-127.14413914565891,53.2595251564263],[-127.1439475612995,53.25938582234651],[-127.14380655200233,53.25924151845287],[-127.14367232597338,53.25907025730269],[-127.14348262280198,53.258930904340275],[-127.14330959176338,53.25878299124345],[-127.14308573960844,53.258665811746],[-127.1428434161384,53.258559458872334],[-127.14260749128266,53.25844688568741],[-127.14234170132102,53.25837604867273],[-127.14204871824079,53.258340772669925],[-127.14175208665245,53.25831001300879],[-127.1414553949463,53.2582764564514],[-127.14116502525079,53.25823386548525],[-127.14087722311264,53.25818229418852],[-127.14059033746703,53.258129583937134],[-127.14026728493543,53.25791979661357],[-127.14011112162737,53.257770031592926],[-127.14002107488619,53.257599462299595],[-127.13994682909612,53.25742313867182],[-127.13984644993496,53.257252668506],[-127.13974043907228,53.257082252350166],[-127.13962142273239,53.25691700769751],[-127.13943793405443,53.256798313180965],[-127.13920475163933,53.256717080628206],[-127.13894953339022,53.25661980761644],[-127.13865115926527,53.25659297426681],[-127.13834850724815,53.256581877008045],[-127.13809111698768,53.256508153250735],[-127.13796010867712,53.256350856447526],[-127.13793615789031,53.2561589270118],[-127.1379747215968,53.25598712247155],[-127.13812063159259,53.25582661350858],[-127.13814497001202,53.25564934290004],[-127.13814479601805,53.255468945968595],[-127.13814272943348,53.25528744668875],[-127.13815572755497,53.255108043841844],[-127.13817625022077,53.25492856878553],[-127.13820052746783,53.25474961344704],[-127.13822759816134,53.25456951975833],[-127.13833296487041,53.254402676413825],[-127.13848652851934,53.25424769580681],[-127.13868668313617,53.254114677567046],[-127.13891163472977,53.25399542254373],[-127.1391108254302,53.253861292311115],[-127.13926722299394,53.253707403881315],[-127.1393555664563,53.25353624101658],[-127.13938359282571,53.25335725820629],[-127.13935810731626,53.253178224603985],[-127.13927836095642,53.25300643504136],[-127.13907573955238,53.25287392199636],[-127.13881697120647,53.252782841031305],[-127.13853640114827,53.25271942523976],[-127.13825042634018,53.25266390407976],[-127.13796352133237,53.25260895588615],[-127.13768116692428,53.2525489166761],[-127.1374070121579,53.25247926953582],[-127.13715644912688,53.25237915135937],[-127.13694457154769,53.25225120541286],[-127.13678372512732,53.2521003602775],[-127.13663023817712,53.251944397720756],[-127.13643042345147,53.25181073283003],[-127.1361973465817,53.25169755501709],[-127.13596428597889,53.25158437659579],[-127.13573660241545,53.25146218232101],[-127.13552003318263,53.25133372301016],[-127.13537511429385,53.251181603017734],[-127.1352730116065,53.251015627202385],[-127.13518392990377,53.25084504472516],[-127.13510509075053,53.2506715584534],[-127.13503183894193,53.25049578664028],[-127.13496136570281,53.250318858732],[-127.13488904619382,53.250143077889504],[-127.13481205665708,53.249968453196665],[-127.13472855038661,53.24979557600199],[-127.13466001718119,53.24962087925983],[-127.13458772996839,53.249446209410905],[-127.1344911608684,53.249276262676],[-127.13437965041703,53.249109255490616],[-127.13427281113773,53.24894108303518],[-127.1341837226894,53.24876993503889],[-127.13410863085741,53.24859585639768],[-127.13404196412642,53.24842057665834],[-127.13400432565925,53.24824222260634],[-127.13394231510497,53.2480657777814],[-127.13381313542509,53.247904541382205],[-127.13365134061854,53.24775258049558],[-127.13347377949525,53.24760804876618],[-127.13328324555005,53.24746925214344],[-127.13306036710773,53.247349803591604],[-127.1328346819541,53.24723094615968],[-127.13261733222916,53.24710752674178],[-127.1324092189225,53.24697841628909],[-127.13220573208933,53.246846464565046],[-127.13199108906117,53.246719091970846],[-127.13185223561254,53.24654674083799],[-127.13187390711575,53.24637454300063],[-127.1318607257002,53.246198186808584],[-127.1318080071456,53.24601717015178],[-127.13178631218166,53.245838098412825],[-127.13177586451428,53.24565836356727],[-127.13178983271283,53.24547895148675],[-127.13183953839334,53.2453019951057],[-127.13189957464395,53.24512550482373],[-127.1319417418022,53.244947508772405],[-127.13194257034117,53.244768221999514],[-127.13193024508146,53.24458849601827],[-127.13194233532667,53.24440910173219],[-127.13195723349382,53.24422912486331],[-127.13197025447795,53.24404972165527],[-127.13198422131921,53.243870309400315],[-127.13199725709346,53.24369090601221],[-127.13201496238192,53.24351089330688],[-127.13200640610108,53.24333169597024],[-127.1320119041594,53.24315180870731],[-127.13201803283695,53.24296014573812],[-127.13204545226468,53.24279236567012],[-127.13211025892153,53.24261863518977],[-127.13222877287279,53.24245222643181],[-127.13241940208837,53.24231539128527],[-127.1325806759756,53.242168742735544],[-127.13267462287679,53.24199640983207],[-127.1327670226841,53.24183698178155],[-127.13277308767678,53.24164307822453],[-127.13280867120412,53.24146457962519],[-127.13285647619226,53.2412870847481],[-127.13290521167013,53.24110958094264],[-127.13295585344127,53.240932614651165],[-127.13299706606786,53.24075462686873],[-127.13301949534707,53.2405756890471],[-127.1330259194832,53.24039522785419],[-127.13299297683987,53.24021682797444],[-127.13288618058601,53.240049773836986],[-127.1327628398687,53.23989520308447],[-127.13253048419213,53.239736070853716],[-127.13228152429306,53.2396572076951],[-127.13199581116807,53.239608392477855],[-127.13169766671825,53.23958546661658],[-127.13141998757598,53.239520886410475],[-127.1311869919168,53.23940769802365],[-127.13099741819774,53.23926832366614],[-127.13084219772259,53.239114619707586],[-127.13067397608945,53.2389666330201],[-127.13041439537484,53.23887667125323],[-127.1301174574468,53.23886381443101],[-127.12981957158064,53.238885701271265],[-127.12952476238833,53.23891707778793],[-127.12923196438012,53.23895404585851],[-127.12893824985977,53.238991577691486],[-127.1286464414474,53.239030211145796],[-127.12836068144566,53.23908447326214],[-127.12809445037675,53.23916711705941],[-127.12784941546016,53.23927029230298],[-127.1276111199292,53.23937957014665],[-127.12738429257253,53.23949713770098],[-127.12723891058558,53.23964137830652],[-127.12706223122491,53.23984419084701],[-127.12686450165064,53.239926745468225],[-127.12657599534373,53.24001912608524],[-127.12629448715018,53.240092391118516],[-127.126015666161,53.2401605832511],[-127.12572326511574,53.240177369861335],[-127.12542675789044,53.24014600450854],[-127.1251263275226,53.240143252717004],[-127.1248233579684,53.24015060869355],[-127.1245166348044,53.24015856421664],[-127.1242225798496,53.240183762025296],[-127.12397984563096,53.24026785887193],[-127.12378472247636,53.24041313119693],[-127.12354064525564,53.24051796448514],[-127.12326564514329,53.24058891958502],[-127.12298479032941,53.240652086023445],[-127.1227019240722,53.240709668363664],[-127.12241120753411,53.24075499889606],[-127.1221173554326,53.240788032955926],[-127.12182054647782,53.240815491789114],[-127.12152466802516,53.240842941075954],[-127.12122543139417,53.240850252503776],[-127.12092594219564,53.24084748113035],[-127.120627027382,53.240831257664446],[-127.12033238140744,53.240799306227075],[-127.12004036565963,53.240760050502566],[-127.11975362430947,53.240707289391665],[-127.11948040334353,53.24063311957694],[-127.11921811729398,53.24054707629111],[-127.11896861378183,53.240446901189046],[-127.11872188967571,53.24034558782072],[-127.11847513686108,53.240243144759454],[-127.11805485540793,53.24000340522786],[-127.11779315148257,53.23990334270303],[-127.11757773050213,53.239778757352845],[-127.11738728407947,53.23963993462989],[-127.1172560370949,53.23950390640375],[-127.11706968494613,53.239342634751054],[-127.11682802448921,53.23921941570552],[-127.116579421047,53.23911755090134],[-127.11632628218167,53.23902188650217],[-127.11607864188476,53.238920576321576],[-127.11583281997088,53.23881756329946],[-127.11559528911165,53.23870830458676],[-127.11538914587932,53.238579146052004],[-127.11522653710598,53.2384277326382],[-127.11507229302039,53.23827343463405],[-127.1148994606914,53.238126034143505],[-127.11461485670883,53.23808220460982],[-127.11431682061692,53.23809845144596],[-127.11403791961158,53.2381643841638],[-127.1137880538879,53.23826309355325],[-127.11354684586473,53.238370120312496],[-127.1133075281843,53.238477693544944],[-127.11309785122805,53.2386062774097],[-127.11290342301997,53.238743125950315],[-127.11268801003025,53.238867836676185],[-127.11246306512456,53.238986478187286],[-127.11223811880407,53.23910568399338],[-127.11202079618798,53.23922873510296],[-127.11185390556588,53.239378204760264],[-127.11172490217731,53.23954076488389],[-127.11158073649112,53.23969786451057],[-127.11140534525927,53.239845727927495],[-127.11119565612749,53.239973752569426],[-127.11095338291146,53.24007686655051],[-127.11069486903537,53.24016892722225],[-127.11043059112335,53.240255994598776],[-127.11016628292347,53.24034195012944],[-127.1098999789276,53.24042343281179],[-127.10963082222925,53.24050326532194],[-127.10936163491073,53.24058254173179],[-127.10909532784689,53.240664022597095],[-127.10883968782345,53.24075829322784],[-127.10860322592153,53.24086863559764],[-127.10843290097912,53.24103101338645],[-127.1082627568831,53.24116426546061],[-127.10805110086356,53.2412900527421],[-127.10783376962351,53.241413660625746],[-127.10761358476223,53.24153616528965],[-127.10739149266534,53.24165757580898],[-127.10715782991683,53.24176732429931],[-127.10695299363731,53.241902574490254],[-127.10673373459159,53.24202506880031],[-127.106492854068,53.24214608816064],[-127.10629143033427,53.242268424176636],[-127.10606931580848,53.2423892675853],[-127.10583568944334,53.24250068926941],[-127.10556264083105,53.242576066602936],[-127.10528369661125,53.24264197857771],[-127.1049887991769,53.242671618198834],[-127.1046959534665,53.24270851665758],[-127.10440010920725,53.242738163625106],[-127.10410627327126,53.24277283782806],[-127.10382827119697,53.242838728605115],[-127.10356295846455,53.242922993164576],[-127.1032985756132,53.24300724846667],[-127.10301768962502,53.243070932128035],[-127.10272377702641,53.24310279788241],[-127.1024258471066,53.24312461586695],[-127.10212781448158,53.243142507869884],[-127.10182852952875,53.243148094369346],[-127.10152892268967,53.24314191351415],[-127.10122936015262,53.24313685197789],[-127.10093902121616,53.24312610163495],[-127.10064508956174,53.243120986354626],[-127.10034202104505,53.24312603949032],[-127.10003057224542,53.24313341055079],[-127.09973339486176,53.24311207158861],[-127.09943461793583,53.243101395809575],[-127.09913499764983,53.243094088552525],[-127.09883542072365,53.24308902110905],[-127.09853594626777,53.24308731341745],[-127.09823645682094,53.24308560510872],[-127.0979369970859,53.2430844604936],[-127.09763744947566,53.243080510240475],[-127.09734021548083,53.24305692484939],[-127.09704205040026,53.24306976758218],[-127.0967424307525,53.2430624542811],[-127.09643557868245,53.24310226746105],[-127.09616005208437,53.24311938062161],[-127.09584835687524,53.243081367812934],[-127.09559988285893,53.24298337552073],[-127.0953449067003,53.242887692698815],[-127.0950863368905,53.24279875646233],[-127.09482039199615,53.24271437865283],[-127.09459673048093,53.2425959865006],[-127.09431704038674,53.24248820424955],[-127.09413462920281,53.24236775436426],[-127.09392018236358,53.242241997268074],[-127.09372238151366,53.24210712239788],[-127.09355519493637,53.241957954372964],[-127.0933796728276,53.24181278913931],[-127.09319948130674,53.2416687871728],[-127.09303602322471,53.241518472524774],[-127.09285398628053,53.24137560752701],[-127.0926961028437,53.24122299110436],[-127.09253078583241,53.241073248645435],[-127.0923376221229,53.24093553202385],[-127.09213890154744,53.24080066299426],[-127.09193926528741,53.24066692255028],[-127.09174892782158,53.24052916998904],[-127.09165164881799,53.240360872170996],[-127.09143184966432,53.240245244243134],[-127.09116776096721,53.240159720776994],[-127.09091103623254,53.240067961836665],[-127.09063786937914,53.23999428132687],[-127.09035747162321,53.239930751045776],[-127.09007436766863,53.239871726924086],[-127.08978500617543,53.239825084974804],[-127.0895082053459,53.2397553524971],[-127.0892698059721,53.23964661440142],[-127.08909336230786,53.23950145133616],[-127.08900168372553,53.23933085896893],[-127.08901018693805,53.23915094743388],[-127.08899829145109,53.2389807428492],[-127.088772082194,53.23883491578954],[-127.08852542537673,53.23873297493651],[-127.08827785321455,53.23863159773685],[-127.08795085274714,53.23858081484096],[-127.08764192873072,53.238502417843804],[-127.08746859733654,53.23840483998437],[-127.08725086896082,53.23829647303685],[-127.0870656308515,53.238173797312],[-127.08685451866138,53.238030069211455],[-127.08664996875679,53.237886280604776],[-127.08648799768493,53.23775610313619],[-127.08625770998471,53.23763328313483],[-127.08599734431974,53.23754490848361],[-127.08570621295529,53.23750163437862],[-127.08540743596839,53.2374892384197],[-127.0851226055225,53.237544507954176],[-127.08467386851326,53.23754021415013],[-127.08431577165656,53.23755693487388],[-127.08401798629951,53.2375831875738],[-127.08364298959833,53.23767289228285],[-127.08349925246819,53.237777290306994],[-127.08330663686496,53.237915749218025],[-127.08315479244499,53.23807007795095],[-127.08301145718151,53.23822657868945],[-127.08276538607672,53.23833022508471],[-127.08250099050373,53.238414434228794],[-127.08222400112948,53.23848307091977],[-127.08193112167173,53.23851823739871],[-127.08163349965143,53.23851422945937],[-127.08137020099646,53.238421389544506],[-127.08108511413644,53.23839430048717],[-127.08077061671175,53.23842797596537],[-127.08047368293433,53.238450850464865],[-127.08017686280685,53.238478769841734],[-127.07988703327962,53.23852286734699],[-127.07961393547876,53.238597064873765],[-127.0793443461997,53.23866226595851],[-127.07905101859345,53.2387164775862],[-127.07876912213293,53.238777307394734],[-127.07850954366376,53.238866501395336],[-127.07827301316918,53.23897678339524],[-127.07806324216638,53.23910530513372],[-127.07786868298089,53.23924208736065],[-127.07769502470582,53.2393882078965],[-127.07751662310977,53.23953269501173],[-127.07732302046784,53.2396700323109],[-127.07712940217418,53.239806804691604],[-127.07695096832335,53.239950170701256],[-127.0766933262097,53.240042704433286],[-127.07701096283056,53.24016811989158],[-127.0770250790475,53.240280039900796],[-127.07702398902367,53.240458206436784],[-127.07706887306362,53.240635955429546],[-127.07713155170298,53.240811857569994],[-127.07718206786421,53.24098899958196],[-127.0772092450688,53.241171391235945],[-127.07726527737974,53.24134455691536],[-127.07730456204324,53.24152291237384],[-127.07733540811894,53.241701909184705],[-127.07736250074726,53.24188094007003],[-127.07738301707973,53.24206003067569],[-127.07739605551764,53.24223975391725],[-127.07739969443165,53.24241955356663],[-127.0773657679315,53.24259801821199],[-127.0772602043489,53.242765372973444],[-127.07710078425414,53.24291864153136],[-127.07699047694541,53.24308379812801],[-127.07693680450376,53.24326132139365],[-127.07694869532676,53.24343320265253],[-127.0770256907985,53.243617947425626],[-127.07720844346308,53.24375410676564],[-127.07735417325192,53.24391020605225],[-127.07748316818959,53.244073189032626],[-127.07758044204607,53.24424317398927],[-127.07761981584312,53.24442545445936],[-127.07757641806666,53.24460064358502],[-127.07753589944127,53.24477861219898],[-127.07749255725165,53.24495659746664],[-127.07744922994135,53.24513459152703],[-127.0774087100396,53.24531255108593],[-127.07737008120958,53.24549105815532],[-127.0773379999549,53.24566894996239],[-127.07735019316513,53.24585259774775],[-127.07741556093208,53.246022872517],[-127.07761249632175,53.246162263772305],[-127.07780655276619,53.24629943990572],[-127.07800247395811,53.246435478296746],[-127.07817425130592,53.24658238486449],[-127.07829858658174,53.24674596494569],[-127.07841545729201,53.24691128899483],[-127.07855191722615,53.247071397127314],[-127.07869021166502,53.24723036793715],[-127.0788354994332,53.24740552639209],[-127.07895380781012,53.247553473882775],[-127.07908001165326,53.24771647139694],[-127.07918381992408,53.24788471916698],[-127.07934632252248,53.24803506983375],[-127.07951419921818,53.24817584282267],[-127.07961518771526,53.24834355114225],[-127.07969660284066,53.24851704888777],[-127.07969063725011,53.248687971569616],[-127.0797750197743,53.248867044617036],[-127.07962508991248,53.248877928909465],[-127.07916655659338,53.24897286013945],[-127.07887593763287,53.24902536951008],[-127.07862013598071,53.249118454502344],[-127.07837493675856,53.249222082591544],[-127.07812973656218,53.24932571912998],[-127.0779084504956,53.24944650074638],[-127.07767281947609,53.2495573279665],[-127.07745249055475,53.24967922047571],[-127.07723216036192,53.24980111256781],[-127.0770127741613,53.249923551416785],[-127.07685229521798,53.250072911240245],[-127.07672500172364,53.2502354153193],[-127.07662605144657,53.250404949572456],[-127.07654849544863,53.250567001985964],[-127.07641116740577,53.25074080148634],[-127.07631410609909,53.25091087402738],[-127.07621513820597,53.25107984328872],[-127.07614921403353,53.25125635600846],[-127.07607573813553,53.25143069622361],[-127.0759899946853,53.251602906694664],[-127.07590682679091,53.25180254087801],[-127.07582132828324,53.25194785756172],[-127.07574878097502,53.25212218906666],[-127.07567717923615,53.25229651193181],[-127.07560180723661,53.252470868917655],[-127.0755320960098,53.25264573923042],[-127.07548026825553,53.25282267933727],[-127.07544725645603,53.253001134018206],[-127.07542364553835,53.25318006816769],[-127.07540192593235,53.253359540904164],[-127.07537080490167,53.25353853412189],[-127.07532932221018,53.25371650972542],[-127.07528031588566,53.25389342405168],[-127.0752256621692,53.254070398486604],[-127.07516064689106,53.25424578159008],[-127.07509469987643,53.25442117308062],[-127.07504286811151,53.25459811283214],[-127.07500986744651,53.25477713181385],[-127.07499095390592,53.254956578874676],[-127.07498425110225,53.25513591527077],[-127.07499258200143,53.25531567118037],[-127.07501686475123,53.25549472677362],[-127.0750673745843,53.25567186845833],[-127.07513663173194,53.25584715502536],[-127.0752181426243,53.25602457143083],[-127.07528818961048,53.25619424836838],[-127.07533870118982,53.25637138091121],[-127.07536579476428,53.256550410875995],[-127.07534338448353,53.256739418021674],[-127.07534301853761,53.256909733070515],[-127.07531189464144,53.25708872594083],[-127.07525629128925,53.25726514394752],[-127.07515260377492,53.25743359860789],[-127.07497982108826,53.257580825548],[-127.07476662482509,53.25768975757959],[-127.07447099084159,53.25776974781836],[-127.07421611566913,53.257864499118774],[-127.07396893468174,53.25796645878795],[-127.07374379345967,53.2580855812812],[-127.07349947584702,53.25818975496613],[-127.07324749090324,53.25828727466613],[-127.07299355526395,53.2583825705162],[-127.07274057912687,53.2584784218493],[-127.07248860481866,53.25857649554868],[-127.07226646438464,53.258703440262565],[-127.07200471491632,53.25878703513373],[-127.071717646707,53.258834447329114],[-127.07141806102862,53.258833235906586],[-127.07113491754266,53.25888733405892],[-127.07088770881487,53.258988722667304],[-127.07064529926757,53.259094558279635],[-127.07043444450119,53.25922250912096],[-127.07023215909881,53.259354873110766],[-127.07003366922595,53.259489434479505],[-127.06979163858347,53.259609830954396],[-127.06958109074225,53.25975010258825],[-127.06949876147623,53.259910516010464],[-127.06949686306768,53.26009541045176],[-127.06947322274704,53.26027433379206],[-127.06945898493815,53.26045373707634],[-127.0694503943786,53.260633654156415],[-127.0694267535598,53.26081257743732],[-127.06936924301485,53.26098900926597],[-127.06929006068886,53.261162274948255],[-127.06922594119473,53.26133764575683],[-127.06916842909585,53.261514077439884],[-127.06909772992412,53.26168895167345],[-127.06903079972403,53.26186434763882],[-127.06898363531377,53.26204124169382],[-127.06894683333343,53.262219727540554],[-127.06892976846713,53.262399156021715],[-127.06893995303322,53.26257890372058],[-127.06894262631684,53.262758710105295],[-127.06891334900337,53.262937692796314],[-127.06889252883289,53.26311659031479],[-127.06889050014048,53.26329644796833],[-127.0688950510765,53.26347623737158],[-127.06887328436582,53.26365515232366],[-127.06887876763096,53.26383437754419],[-127.06893675876465,53.26401088882088],[-127.06902376518363,53.26418321254914],[-127.0691639586017,53.264341620365414],[-127.0693478638837,53.26448338286529],[-127.06954292411635,53.26462056267474],[-127.06970638798838,53.26477090787518],[-127.06981206464108,53.26493858979432],[-127.06986163227636,53.26511573225876],[-127.06989808365272,53.265294122377846],[-127.06994300655944,53.26547354759091],[-127.07001617934127,53.26561854833083],[-127.07027625574867,53.265763548624264],[-127.07055844552325,53.26581814690348],[-127.07056985402514,53.26600852311076],[-127.07054152689938,53.26618805312159],[-127.07047363570497,53.266362337684384],[-127.07037274436142,53.266531873273905],[-127.07027844617883,53.26670247872042],[-127.07016526878417,53.26686876350197],[-127.07003126172498,53.26702907789906],[-127.06988971428004,53.267187783889156],[-127.06977082829836,53.267351878764245],[-127.06979694544292,53.26752979716528],[-127.06992037773662,53.26769395735643],[-127.07005314498694,53.26785522759978],[-127.07018683043881,53.268015924695995],[-127.07032612281654,53.26817545956775],[-127.07046353798664,53.26833500224148],[-127.07059629430276,53.26849627195902],[-127.07071039981412,53.268662191652794],[-127.07079461277914,53.26883510373505],[-127.07087793764626,53.26900970893963],[-127.07094896369402,53.269180498958185],[-127.0710219954494,53.26935687314126],[-127.07107436957112,53.269532868994375],[-127.07109867159794,53.26971360899127],[-127.07112387765402,53.2698926556321],[-127.07113877592779,53.27007235103629],[-127.0711405127052,53.27025217417679],[-127.07114038616909,53.27043200515411],[-127.0711580802953,53.27061111952456],[-127.07119829817684,53.27078947483311],[-127.0712422583725,53.27096723162253],[-127.07126651919438,53.27114628666086],[-127.07127674401481,53.27132714458704],[-127.07136933862742,53.27149661904817],[-127.07156624504066,53.27163098204462],[-127.07179095556097,53.2717505186557],[-127.07203590099833,53.27185307409948],[-127.07228823225405,53.2719505157512],[-127.07253964720374,53.27204852090205],[-127.0727892272506,53.272148792000124],[-127.07301575113297,53.27226551325161],[-127.07323400268726,53.27238903165345],[-127.07345870783625,53.272508009438695],[-127.07370826406458,53.27260714941405],[-127.07392659076295,53.27273347151271],[-127.07414111854739,53.2728586981685],[-127.0743250776386,53.27300045232863],[-127.0744867556169,53.273152492079056],[-127.07469109275951,53.2732828565656],[-127.0749463776755,53.27338474773111],[-127.07518015628402,53.2734907592771],[-127.07546428230846,53.27354532865746],[-127.07572505244192,53.273604590898124],[-127.07598564816173,53.27369354192005],[-127.076189892719,53.27381998755889],[-127.07628935018914,53.27400003587225],[-127.076281589845,53.27417434258137],[-127.07625609209569,53.27435328299699],[-127.07621931012802,53.27453176995828],[-127.07613350618425,53.27470342284284],[-127.07596171625248,53.27485567787679],[-127.07588135990778,53.27501999367045],[-127.07587497173604,53.2752116504753],[-127.07584101243958,53.275390111633314],[-127.07579292915156,53.27556758031566],[-127.07572505807093,53.275742987373924],[-127.07562888321706,53.27591304856272],[-127.0754816197993,53.27606957128906],[-127.07532582425142,53.27622280076147],[-127.07519276818523,53.276383676215076],[-127.07507681614199,53.276552230840835],[-127.07502401129304,53.276728621368186],[-127.07500695224144,53.276907493752915],[-127.07500873495317,53.27708787168465],[-127.07500400686985,53.277271105233105],[-127.0749839803631,53.277443837425395],[-127.07496608887195,53.27762663440007],[-127.07492082390002,53.27780464165655],[-127.07476583842619,53.2779528252587],[-127.07449812030106,53.278064489286294],[-127.07427665817566,53.278185262459125],[-127.07406190533567,53.278311021039656],[-127.0738509649444,53.27843897667687],[-127.07364002350236,53.278566940892475],[-127.0734433761677,53.278702609699025],[-127.07324503363908,53.278846145659735],[-127.07309303369347,53.279001578415695],[-127.07290857127128,53.27913658037184],[-127.0727355780574,53.27927932158267],[-127.0725664830428,53.27942762958865],[-127.07242394243181,53.27958578155643],[-127.07226529839906,53.27973847650322],[-127.07208954645255,53.27988404723177],[-127.07194893796225,53.280044422027544],[-127.07179972584046,53.28019870731742],[-127.07166191143143,53.28035850075353],[-127.07151083290809,53.28051336719549],[-127.07133223611739,53.280657832950034],[-127.07113842474546,53.28079515721044],[-127.07096457152929,53.28094182944382],[-127.07085059668444,53.28111540797906],[-127.07068510283335,53.28125807827078],[-127.07051400043152,53.281401919344674],[-127.07038575557975,53.28156833859909],[-127.07023466733077,53.281723768036834],[-127.07003703342791,53.28185888389673],[-127.06985557297641,53.28200169684265],[-127.06967981737768,53.28214781945308],[-127.06954766773278,53.282308670593906],[-127.06941352416544,53.28246562241437],[-127.0692663150054,53.282625497364805],[-127.0690781947243,53.28276556337764],[-127.06888911226835,53.28290508198841],[-127.06872948204585,53.28305722485513],[-127.06859034593171,53.28320245132161],[-127.06843200065317,53.28336802763749],[-127.06826572710294,53.28351797972911],[-127.06812694234716,53.28367721259287],[-127.06804296562885,53.283848841915294],[-127.06801273779432,53.284027821853044],[-127.06804164294259,53.284242133297745],[-127.0681342953082,53.2844132849707],[-127.0682418936494,53.284580949681995],[-127.06834669627857,53.28474919519229],[-127.06846737671054,53.28491393634539],[-127.06856564025277,53.28508391669823],[-127.0686189557522,53.28525991278006],[-127.06855762256987,53.2854352556071],[-127.06840460636116,53.2855895701567],[-127.06819648081245,53.2857191746158],[-127.06797496049313,53.28583993555592],[-127.06774008977192,53.28595241721345],[-127.06747127039515,53.28606071285487],[-127.0672385703622,53.28614795929426],[-127.06696425189303,53.28622437476187],[-127.06668591995239,53.286290741567996],[-127.06641054039223,53.28636212771168],[-127.06614003330816,53.286440747911264],[-127.0658781988264,53.28652825324274],[-127.06563467238644,53.286633520896586],[-127.06542651893179,53.286762555850686],[-127.06519064681702,53.286873356131025],[-127.064943260122,53.286974739848084],[-127.06469012236569,53.28707168383555],[-127.0644571138931,53.28718469783209],[-127.0642623042459,53.28732146314223],[-127.06409218604462,53.28746920237131],[-127.06389259844302,53.28760320424408],[-127.06368539527344,53.28773335689056],[-127.06351530265121,53.287881659707196],[-127.06340297375928,53.28804792787336],[-127.06332087627953,53.288220656839684],[-127.06323312711878,53.288392871631366],[-127.06317083402175,53.288568775491385],[-127.06313681026009,53.288747231784626],[-127.06311970996767,53.28892665697023],[-127.06312423931017,53.28910645317549],[-127.06310715385048,53.289285878191585],[-127.06306935625743,53.28946436818172],[-127.06297876430848,53.28963548764558],[-127.06291176435965,53.28981087762648],[-127.06286831425176,53.28998885338685],[-127.06282110680108,53.29016630700108],[-127.06272736199898,53.290324573723105],[-127.06265848088901,53.290499980316795],[-127.06263607925416,53.29069289808281],[-127.06259545315011,53.29087084837125],[-127.06251430790289,53.29104412367235],[-127.0624246565373,53.29121579881397],[-127.06229529012114,53.29137773617677],[-127.06212516289311,53.29152603685935],[-127.06197116928466,53.291680359933295],[-127.06184085369841,53.29184174948071],[-127.06173041494331,53.29200911911966],[-127.06161901426898,53.29217594149148],[-127.06157462446329,53.29235393385718],[-127.0615311671537,53.29253135314471],[-127.06146508863509,53.29270673371693],[-127.06137260409193,53.29287786846874],[-127.06119675962705,53.29302341312564],[-127.0611363456083,53.293199307534586],[-127.06102493944371,53.29336612924747],[-127.06085480057475,53.293513863246176],[-127.06069035348091,53.29366435173784],[-127.06058651839083,53.29383279049754],[-127.06044292293318,53.293990370788194],[-127.06032290841299,53.29415111063054],[-127.06001689301362,53.29420257764945],[-127.05971939045479,53.29418170358266],[-127.0594226796432,53.294155219476835],[-127.0590652968082,53.294144962007245],[-127.05876691386287,53.29416387374087],[-127.05847769678003,53.294210705214425],[-127.05818640234473,53.29425027607022],[-127.05788695969105,53.29426414853586],[-127.05758734750073,53.29427186378329],[-127.05728746932844,53.29426836721913],[-127.05698749221631,53.29426151840475],[-127.0566883359671,53.29424961504117],[-127.05639072254631,53.294224251851325],[-127.0560924156021,53.2942084133931],[-127.05579271939426,53.29421276352402],[-127.05549434840142,53.29423222265195],[-127.05519916760375,53.29426621847042],[-127.05491389936817,53.29432141395324],[-127.0546327117914,53.294388897399315],[-127.05438326428302,53.294485785665],[-127.05411896397794,53.294590092612765],[-127.05390378780359,53.29470461169708],[-127.05369280236873,53.29483645560136],[-127.05345781438099,53.29494834404015],[-127.0532256653764,53.29506076255769],[-127.05301833678034,53.29518865569826],[-127.0528177313145,53.29532208211009],[-127.0526095089473,53.29545222330973],[-127.05251584395282,53.29550235305441],[-127.05244035538766,53.29552822760577],[-127.05234743790437,53.295532977086054],[-127.05221288228094,53.29552688203487],[-127.05205261532268,53.2955070135488],[-127.05176652039378,53.29545352558862],[-127.05148308412096,53.295393855443464],[-127.05120960010203,53.29531896605408],[-127.0509208764393,53.295273342449434],[-127.05062761611794,53.29523391624369],[-127.05033352096913,53.295198987440365],[-127.05004832048154,53.29514380231182],[-127.04976580677166,53.295083555237284],[-127.04947260479375,53.295046375531946],[-127.04917852572333,53.295011999482924],[-127.04888973663137,53.29496356595845],[-127.04859042469533,53.294945485594006],[-127.04829080574783,53.2949531684229],[-127.04801531072711,53.29502339138592],[-127.04773785087363,53.29509082544522],[-127.04746452514243,53.295172788140896],[-127.0471943717673,53.29523174865639],[-127.04690015119756,53.29526740038724],[-127.04661389144655,53.29532089934373],[-127.04632864766563,53.29537719423913],[-127.04604142552992,53.2954301445399],[-127.04574500397261,53.29545292320122],[-127.04559728231018,53.29544582512707],[-127.04544926789492,53.29542751605846],[-127.04515516169957,53.2953920098552],[-127.04486285202775,53.2953531257931],[-127.04456970795985,53.29531817438505],[-127.04427008563465,53.295325847068476],[-127.04411828260955,53.295343988519136],[-127.04398090015854,53.29537489256676],[-127.04383814162445,53.295417039167226],[-127.04373433082037,53.295475658874764],[-127.04354702962745,53.29561623975645],[-127.04336068700094,53.29575793234163],[-127.04323140002904,53.29581284938814],[-127.04309283275511,53.2958342345542],[-127.04279541928155,53.29585477363926],[-127.04264550671883,53.295873452318716],[-127.04249106833758,53.295899457889824],[-127.04222686080185,53.29597068860435],[-127.04196877287846,53.296062024006446],[-127.04170005131137,53.29614113622164],[-127.04142844809392,53.29621746750328],[-127.0411616588746,53.29629879344904],[-127.04087836229711,53.29635898405679],[-127.04059894882026,53.29642361275372],[-127.04031956099237,53.296489925701636],[-127.04004696455732,53.29656458629037],[-127.03977536931608,53.29664146939355],[-127.03960622311034,53.29668104522253],[-127.03948682576457,53.29667929376668],[-127.0391867377394,53.29666847482021],[-127.03903608979056,53.296657468145725],[-127.03886998547519,53.296667320156544],[-127.03872770972454,53.296690973498166],[-127.03859909919733,53.296735239781576],[-127.03835338720519,53.296833181585555],[-127.03809617789872,53.296922268813574],[-127.03784788513421,53.297030316060386],[-127.03758882177891,53.29712053880352],[-127.03734036267977,53.297221308034615],[-127.03713112330371,53.29735030094858],[-127.03693807000985,53.29748812462435],[-127.03671159751764,53.297604386659614],[-127.03645046988304,53.297687337525545],[-127.03617359111067,53.29774129382091],[-127.0359013504331,53.29783106305142],[-127.0356614838613,53.29793791164331],[-127.03540088825525,53.298042708547506],[-127.03514537959846,53.29812504278941],[-127.0348938074032,53.29821462949833],[-127.03464058836009,53.29831375821582],[-127.03436796987519,53.29838839673833],[-127.03412525744892,53.29849415544766],[-127.03389211767272,53.298607664411364],[-127.03363683602782,53.29869952155622],[-127.03335939893492,53.2987691621621],[-127.03310034273574,53.29886049523322],[-127.03283058443482,53.298937346146296],[-127.03254533905347,53.29899529261083],[-127.0322550715457,53.29904039252164],[-127.03195651858276,53.29905419146755],[-127.03165803379223,53.29907078568017],[-127.03136177058171,53.29910136979358],[-127.03106752323728,53.29913753784787],[-127.0307762923687,53.29918208674606],[-127.03050360671755,53.2992544759666],[-127.03023780675305,53.29933913858662],[-127.02996906945127,53.29941933536289],[-127.02969254021217,53.29948840367432],[-127.029409192087,53.29954800224445],[-127.02912687237185,53.299610952527416],[-127.02883848996755,53.29965658340715],[-127.02853901308677,53.29967094641424],[-127.0282463603151,53.29973453980523],[-127.0279775543055,53.29977328543312],[-127.02766214781519,53.29979001600578],[-127.02736473847334,53.29981275693589],[-127.02706730305134,53.2998338211719],[-127.02676510644075,53.29985267598778],[-127.02646705023652,53.29988718930867],[-127.02616845476649,53.2999385041044],[-127.0259227573509,53.30000000982583],[-127.02560634049554,53.30005260653522],[-127.025329690853,53.30011717490454],[-127.02508881026384,53.300222898957294],[-127.02486143985975,53.300342506878415],[-127.02461976039565,53.30045383005061],[-127.02435925160113,53.30052554416746],[-127.02405237572339,53.30058421228991],[-127.02382656741844,53.300690924182234],[-127.02368095903165,53.30084959585092],[-127.02353163296814,53.301009428755236],[-127.02334806540695,53.30115330571271],[-127.02316448446308,53.301296062046426],[-127.02301497663157,53.3014491642336],[-127.02291455440503,53.301610251203606],[-127.02279948741763,53.301788270688256],[-127.0226401458943,53.30192297435044],[-127.0224261455454,53.30205254614877],[-127.022232076763,53.30218978903143],[-127.02206271244567,53.302338023322775],[-127.02191993229403,53.30249723295421],[-127.02178516913749,53.302637890762206],[-127.0216407477562,53.3027685386175],[-127.02149611568204,53.30296754344872],[-127.02130618877351,53.30308234042043],[-127.02126810855069,53.30325633488923],[-127.02114027786014,53.30341205361849],[-127.02095287823072,53.3035537186188],[-127.02074844022039,53.30368992756933],[-127.02055631937876,53.30383051204345],[-127.0203556093318,53.303966123546985],[-127.0201030793436,53.30405737144633],[-127.01982748980366,53.304128640055396],[-127.0195442335532,53.30419326019745],[-127.01926674910483,53.30426398801616],[-127.01901549883439,53.30436977921568],[-127.0188484951904,53.304499505702395],[-127.01852524722145,53.30450451885423],[-127.01828436681545,53.30441694967308],[-127.01795330308815,53.30437104418447],[-127.01766144425825,53.30431304184273],[-127.01736904410899,53.304271849890284],[-127.01707479188605,53.304231793511946],[-127.01677966048419,53.30419454949363],[-127.01648370504694,53.30416178455764],[-127.0161869528971,53.30413463682123],[-127.01589037470484,53.30411532091009],[-127.01559224241021,53.304108906982954],[-127.01528986188364,53.30412157594154],[-127.01499075130724,53.304153263504425],[-127.01470237667446,53.304201109316985],[-127.01442280394743,53.30426288014742],[-127.01414721704288,53.30433470015119],[-127.01387364494013,53.3044115397605],[-127.01362397742786,53.304505545881916],[-127.01341291524015,53.304602583382675],[-127.01315204063661,53.304660274616054],[-127.01276047100747,53.30467817953516],[-127.0124661283959,53.304712616620584],[-127.01216682507548,53.3047358999126],[-127.01186639931082,53.30475190473637],[-127.01156679819383,53.30476342005763],[-127.01126331832891,53.30476936549835],[-127.0109666037037,53.304744436296644],[-127.01067152929511,53.30470885280451],[-127.01038894084186,53.30464571633982],[-127.01012836081821,53.30455885406878],[-127.00986371274136,53.304459710061074],[-127.00963369958339,53.30435410423006],[-127.00941537678209,53.30422599002618],[-127.00920073246526,53.304095038614776],[-127.00892734390052,53.3039836420834],[-127.00871385582995,53.30390030270169],[-127.00841953408724,53.30385686427039],[-127.00811537604005,53.30383479675312],[-127.00781723342409,53.30382779872944],[-127.00751758425875,53.30383706343938],[-127.00721717661104,53.30385362109371],[-127.00691767585323,53.3038684851732],[-127.00661920063125,53.303887256823366],[-127.00631957750183,53.30389763871321],[-127.00602008957885,53.3039130651112],[-127.00572144016385,53.30392455767066],[-127.0054205104819,53.30391926235292],[-127.00511792798623,53.303923499419575],[-127.00484109875268,53.303864782824114],[-127.00459787716754,53.303756473533],[-127.00432824986204,53.30368368500337],[-127.00427352643912,53.30351720388198],[-127.00428223043563,53.3033300187302],[-127.00444452839909,53.303158905885034],[-127.00460999853149,53.303002322572546],[-127.00470279063916,53.30283291762494],[-127.00472407587286,53.30266131193948],[-127.00473579132759,53.30248194418387],[-127.00468729203581,53.30230084491887],[-127.00456670426152,53.302131559656395],[-127.00445362223475,53.30196164609271],[-127.00436514869017,53.30179881159266],[-127.0042540014509,53.30163113128564],[-127.00413821689015,53.301465721969706],[-127.00393924017787,53.301320072040056],[-127.00374315634241,53.301177749655196],[-127.00357833337009,53.301045255632594],[-127.00337405495586,53.300913650446375],[-127.00322097878417,53.300760879989845],[-127.00307893938371,53.300598496948545],[-127.00297533157769,53.300431307469005],[-127.00286515392925,53.300264173367836],[-127.00274424659378,53.30008088799494],[-127.00272915997586,53.299999779708784],[-127.00271082094655,53.29990078095844],[-127.00262623704933,53.299742949700196],[-127.00249177623219,53.299582187068246],[-127.00240391466446,53.2994053359891],[-127.00228637068703,53.29924443032824],[-127.00219113942784,53.29907380811935],[-127.00210060159718,53.298902581526335],[-127.00205118554146,53.29872148872044],[-127.00193636319213,53.298556633731465],[-127.00186174350571,53.29838247603847],[-127.00179366818253,53.29820714265328],[-127.0017085860159,53.29802803564053],[-127.00175448877256,53.297823730001845],[-127.00164205465973,53.29768014273046],[-127.00147209381166,53.29752863275961],[-127.00139399841976,53.29736627303334],[-127.00134822614436,53.29718010268542],[-127.00120441980799,53.297021658158634],[-127.00107281092107,53.296861981240085],[-127.00091906315346,53.296719861938115],[-127.00083846754288,53.296531188257376],[-127.00070959352483,53.29636813554035],[-127.00060505997173,53.29620038690245],[-127.00054355022166,53.29602444162424],[-127.00050829949231,53.29584546951019],[-127.00049088128485,53.295665782437524],[-127.000492256123,53.295485945980545],[-127.00051524810219,53.295306483114175],[-127.00055614003904,53.295128545575416],[-127.00060832048679,53.29495107758417],[-127.00065956839423,53.29477361740833],[-127.00070045941871,53.29459568873318],[-127.00072628955255,53.29441675755028],[-127.00074834786439,53.29423730239556],[-127.00076756648708,53.29405731541566],[-127.0007802018839,53.2938768191984],[-127.00078440151805,53.29369694979244],[-127.00077827149595,53.29351773212468],[-127.00075804021373,53.293338633282225],[-127.00073119980021,53.29315791395124],[-127.00069678964717,53.29297500856079],[-127.00065113167798,53.2927933273275],[-127.00059239959263,53.29261510856987],[-127.00051783590457,53.2924426342997],[-127.00042372018326,53.29227815877607],[-127.00024205686532,53.292146922216666],[-127.00000023168258,53.29205484254464],[-126.9999755642679,53.292044966373616],[-126.99973422278613,53.29193327001407],[-126.99951236875108,53.291810769492855],[-126.99928960883422,53.29168996131675],[-126.99905577442391,53.291577644677915],[-126.99880720019156,53.2914777763444],[-126.99855208247216,53.29137963869234],[-126.99829144993836,53.29128603756195],[-126.99802443286247,53.291200888301425],[-126.99775205763387,53.29112754354548],[-126.9974735096028,53.29107162123375],[-126.99717973889973,53.29104719826595],[-126.99687615728561,53.29104470988455],[-126.99657077408713,53.29104615288452],[-126.9962699769506,53.29104251018674],[-126.99596920651587,53.29103999590059],[-126.99567886455696,53.29100153056627],[-126.99539187181426,53.29094567420986],[-126.99510315925725,53.290896554179334],[-126.9948144473723,53.2908474334454],[-126.99452396269697,53.290802808596624],[-126.9942299316517,53.29076717620365],[-126.99393416726227,53.290737724461124],[-126.99363565804953,53.290711091556105],[-126.99333812067297,53.2906861259415],[-126.99304057057373,53.290660603955565],[-126.9927438870699,53.29063227738003],[-126.99244897939447,53.2905988887923],[-126.9921576572367,53.290558746916886],[-126.99186992446175,53.290510731315315],[-126.99157936625319,53.29046273861602],[-126.99128690334562,53.290413640678366],[-126.99099440155447,53.290362857218184],[-126.99070374016695,53.29031038151872],[-126.99041486663019,53.29025397316624],[-126.99012965984423,53.290193607542584],[-126.98984902559899,53.2901281566906],[-126.98957484521888,53.29005705819237],[-126.98930802409794,53.28997916618925],[-126.98904948351827,53.289893370550715],[-126.98880012709762,53.28979909014398],[-126.98855902494992,53.28969577703376],[-126.9883252693952,53.28958511499228],[-126.98809795494952,53.289468240994],[-126.98787520063443,53.28934572645956],[-126.98765799294236,53.28921924833917],[-126.98744353188717,53.28908994141797],[-126.98723279273324,53.28895836229965],[-126.98702390563393,53.28882620271524],[-126.98681692704749,53.28869459160151],[-126.98660996090867,53.288564100458366],[-126.98640671663478,53.2884313371699],[-126.98621640186175,53.288289502675674],[-126.98604377586045,53.28814024264263],[-126.98589450131355,53.28798462159496],[-126.98577044193154,53.28782262414411],[-126.9856669210782,53.28765486285161],[-126.98557924650758,53.28748192348986],[-126.98550279564623,53.28730608532775],[-126.98543477999188,53.28712962136],[-126.98543148779709,53.28694870312734],[-126.98540214144683,53.28677807606225],[-126.98543649227092,53.286599641970184],[-126.98544544643912,53.28641974247734],[-126.98542341978987,53.28624065584483],[-126.9853751004881,53.28606290784818],[-126.98533710958408,53.28588450940233],[-126.9853225557645,53.28562301323841],[-126.98524682252248,53.285397869703615],[-126.98509711612704,53.285223203734],[-126.98490598955011,53.285005184237775],[-126.9847002265945,53.28480409234504],[-126.98443988060596,53.284559200009575],[-126.98419417789533,53.28429681448206],[-126.9840025050251,53.28409560455575],[-126.98375682068232,53.28383377368907],[-126.98356590320816,53.283624158002674],[-126.98329234881214,53.283335666605126],[-126.98303275820429,53.28308180140197],[-126.98294511686399,53.282909415317725],[-126.98289683998858,53.282732230474416],[-126.98290205970048,53.282552917553645],[-126.9829439324195,53.28237442157658],[-126.98304052328753,53.28220499169832],[-126.98315785521693,53.28203931595875],[-126.983323478307,53.28188949089585],[-126.98348341182165,53.281737462880024],[-126.983614942561,53.281576150738026],[-126.98370207050696,53.28140400201115],[-126.98375714139861,53.28122763711078],[-126.9837792649575,53.28104818389825],[-126.98378729321325,53.2808682917386],[-126.98386120143162,53.280694011495],[-126.98401452179482,53.28054036125174],[-126.98421242471767,53.28040538860017],[-126.98437707767506,53.28025500520006],[-126.98445948263254,53.28008233021595],[-126.98447033112124,53.279902970243654],[-126.98442767383385,53.27972517441868],[-126.98434003397496,53.27955279802801],[-126.98419637951248,53.279394886983326],[-126.98399876832922,53.27926038753344],[-126.98376595118869,53.279146356372166],[-126.98356462471433,53.27901357213204],[-126.98343315184927,53.27885443878677],[-126.98344961386391,53.278673911883196],[-126.98356886696862,53.27850989560011],[-126.98375440046892,53.27836886806592],[-126.98385267466273,53.2781915800546],[-126.98387707952067,53.27802947889719],[-126.98386913190147,53.27784970989692],[-126.98383396517004,53.27767129588473],[-126.98380161080233,53.27749229383805],[-126.98371893668113,53.277290179580255],[-126.98372653962437,53.27713269041409],[-126.98369239914291,53.27695762911622],[-126.98366568124833,53.27677858026501],[-126.98360146004818,53.27660263878766],[-126.98347273953961,53.276440685925046],[-126.9833654725835,53.27627182358512],[-126.9834007962821,53.27609450149659],[-126.98339098580354,53.275915312439835],[-126.98333895826306,53.27573815826195],[-126.98327849678317,53.275562185392204],[-126.98320585806174,53.27538799849153],[-126.98313415369984,53.2752132480582],[-126.98306432808762,53.27503847304685],[-126.98303038757822,53.27487180856924],[-126.98302725764134,53.27465670996627],[-126.98294857648813,53.27450498169961],[-126.98284693861179,53.2743355164245],[-126.98275563985808,53.274165965448105],[-126.98271330661565,53.27400217589468],[-126.98267122928465,53.27380868803589],[-126.98258643363675,53.27363627747341],[-126.98250162575063,53.27346331120332],[-126.98243275251615,53.273288536787696],[-126.98240416400607,53.273109502860244],[-126.98238308882345,53.27293040672375],[-126.98237493024203,53.27286268307925],[-126.98235480194977,53.27268357907955],[-126.98233276762176,53.272503935097916],[-126.98230137021336,53.27232492432927],[-126.98220633256,53.272156524194386],[-126.98207298187849,53.27199628409662],[-126.98200409967919,53.271820944705645],[-126.98191086440067,53.27164916807117],[-126.98164993861188,53.27157681263601],[-126.98137130865501,53.271510214197015],[-126.98109358492742,53.27144247821237],[-126.980818620042,53.271372486863584],[-126.98055550743045,53.271286701813445],[-126.98027686800548,53.27121953620093],[-126.97999464007019,53.27116024266211],[-126.97972236056711,53.271084059709025],[-126.979434761761,53.27103545786188],[-126.97914805612399,53.270985162809254],[-126.97890515489966,53.27087960413697],[-126.97871780806196,53.270739408902294],[-126.97858929282505,53.2705847272517],[-126.97866223408475,53.27040878113981],[-126.9787022624364,53.27023085653609],[-126.9787536612552,53.27005788459904],[-126.97886626244834,53.26989113049415],[-126.97902335708906,53.26973913968052],[-126.97912846985301,53.26957356750037],[-126.97924108116104,53.26940736863115],[-126.97937069870213,53.269245520027376],[-126.97952115607265,53.269091333393256],[-126.97958286118835,53.26891715544753],[-126.97950758256296,53.26874915461335],[-126.97953814838597,53.26856906674603],[-126.97953680198596,53.26838925122066],[-126.97955705869187,53.268209813105685],[-126.97958577184852,53.26803086090629],[-126.97959758447799,53.26785149244876],[-126.97959341327808,53.26767170017267],[-126.9796005100879,53.267491805903575],[-126.97960855143508,53.26731246852362],[-126.97962599781,53.26713305348839],[-126.97967258471421,53.266955083018864],[-126.97972388449433,53.26677818508328],[-126.97973850566069,53.266598793300474],[-126.97974374988998,53.26642004361882],[-126.97987717717174,53.266260959295245],[-126.9801073808068,53.26614420818167],[-126.98037214100611,53.26605967298253],[-126.98064945241727,53.26598959027956],[-126.98088552072207,53.265882882113544],[-126.98097831120195,53.265713483637796],[-126.98097221725091,53.26553202190897],[-126.98097651155355,53.26535271517787],[-126.98098360228992,53.265172829571384],[-126.98098505900153,53.26499298155909],[-126.98101276751694,53.264811240320654],[-126.98097150097142,53.26465192244921],[-126.98070626583583,53.264553830421825],[-126.98045973305973,53.26445223090705],[-126.98020948459043,53.264352337764336],[-126.9799409392734,53.264273318961],[-126.97966497449237,53.26419828685069],[-126.9794705332274,53.2640749667609],[-126.97941375637795,53.263894478933004],[-126.97933366819568,53.26372147083874],[-126.97921713895904,53.26355605078463],[-126.97907353209534,53.26339701200149],[-126.97901596725008,53.26322325311935],[-126.97895569772628,53.26305400725946],[-126.97873859984057,53.262925261680635],[-126.97853001311243,53.2627986953755],[-126.97840134104557,53.262636171258045],[-126.97831751880506,53.26246319320797],[-126.97822434513047,53.26229253307577],[-126.97808917578082,53.262132858798026],[-126.97805121144418,53.26195334454321],[-126.97812327342366,53.261780201751954],[-126.97832880001107,53.261653017310934],[-126.97855240311772,53.26153632318398],[-126.97869898973099,53.26137825161174],[-126.97880497741524,53.26121043072671],[-126.97888640873295,53.26103721007912],[-126.97896313967364,53.260863472393524],[-126.9790257423855,53.260687601353695],[-126.97906009892876,53.260509166699016],[-126.97909729235036,53.260331273311614],[-126.97913070387004,53.260152281690964],[-126.97912091521168,53.25997309079945],[-126.97912990351864,53.25979374494108],[-126.97914829324063,53.25961488618688],[-126.97916386071874,53.259435485996576],[-126.97920573920027,53.259257544836686],[-126.97924951021437,53.25907959698644],[-126.97930551692481,53.25890322430054],[-126.97938317336661,53.258729469501304],[-126.97950614142394,53.25856543356678],[-126.97968781942923,53.25842331273509],[-126.97991036662215,53.258302151566575],[-126.98015585969837,53.2581987186291],[-126.98042446814618,53.25812030874987],[-126.98071347435022,53.25807086133254],[-126.98100952548927,53.25804208775226],[-126.98130776597112,53.25802673175339],[-126.98160823544538,53.25802648711376],[-126.98189835082258,53.25806554314318],[-126.98217871863417,53.25812989376083],[-126.98245996836546,53.25819143081191],[-126.98272958223708,53.25827714876812],[-126.98299377104401,53.258372439368884],[-126.98323548345401,53.25830825603644],[-126.9834226894535,53.25816216644951],[-126.98355698386783,53.258001384629715],[-126.98367142470387,53.25783517395367],[-126.98380937901054,53.257671000109326],[-126.98407540336484,53.25760268734104],[-126.98435289716552,53.2576642510688],[-126.98463323993595,53.257727475666194],[-126.98491995344058,53.25778167415245],[-126.98521803038439,53.25779936742775],[-126.98551735596085,53.257790723475985],[-126.98581659163321,53.257777588748596],[-126.9861154564572,53.25778911522836],[-126.98640387992023,53.25783601748534],[-126.98668244079455,53.257903169181105],[-126.98694732070892,53.25798724079631],[-126.98719845433241,53.25808542735692],[-126.9874320849817,53.25819833388533],[-126.98766385225493,53.258311811212664],[-126.98790760818679,53.258416224661765],[-126.98816517972578,53.25850875333479],[-126.98843554197406,53.25858605329198],[-126.98870501334834,53.25866504522007],[-126.98898988703834,53.258720369723854],[-126.98928786555197,53.25873413655981],[-126.98964473464827,53.25873619798054],[-126.98993183037649,53.258685623555614],[-126.99019943815065,53.258605523596806],[-126.99048257991943,53.25854657295498],[-126.99071285682616,53.25843596655898],[-126.99088593662702,53.25828886249966],[-126.9910846446224,53.258153869057566],[-126.99121704549002,53.25799365884931],[-126.99133993717032,53.25782904611855],[-126.99149028408767,53.25767373212722],[-126.99165578186341,53.257523884587094],[-126.99182601948141,53.25737568233117],[-126.9919877203974,53.25722418982894],[-126.99216844588811,53.25708318677114],[-126.99238809983582,53.256960896537],[-126.99260109654884,53.25683474447196],[-126.99278272500449,53.25669204770297],[-126.99296746019796,53.2565224337602],[-126.99318966025395,53.256428140945594],[-126.99346504730792,53.256360284254406],[-126.9937601068689,53.25632980180325],[-126.99403737010188,53.256261937015324],[-126.99429147097156,53.25616681009591],[-126.99455229276985,53.25607834899898],[-126.99481984866543,53.25599710931627],[-126.99509615037336,53.25592812961846],[-126.9953911265351,53.25589428240683],[-126.99567422786271,53.25583531941903],[-126.99596727257597,53.25579924606535],[-126.99626681959312,53.25580065707833],[-126.99656409963629,53.25582505120822],[-126.99686354279036,53.255821415062485],[-126.997170613133,53.255823316325596],[-126.99745580340162,53.25585229165943],[-126.99760720770983,53.255901994830054],[-126.99770132766734,53.25595162381207],[-126.99780993368047,53.25601793770329],[-126.99796277987605,53.256049145281146],[-126.99823494007464,53.256043494271324],[-126.99841320430069,53.25599774074717],[-126.9985202489851,53.25599796031648],[-126.99882817412293,53.25599592403344],[-126.99910544016446,53.255928603025524],[-126.99940155641923,53.25590369985385],[-126.99969875945175,53.25592472543375],[-127.0000010278834,53.2560403904988],[-127.00025119431373,53.256136881640884],[-127.00049094839629,53.25623009870333],[-127.00064584692232,53.25611002411774],[-127.00067540876915,53.25593105771587],[-127.0006824271943,53.25575172569122],[-127.00068286868141,53.25557189337791],[-127.00067766247888,53.25539209972097],[-127.00069594566439,53.25521267262792],[-127.00070203265854,53.25503334838955],[-127.00072030242056,53.254853365624164],[-127.00070008990306,53.25467426319077],[-127.0007428325473,53.254496870611064],[-127.00095007992228,53.25436739021137],[-127.001209945456,53.25427892225296],[-127.00147650620634,53.25419599947472],[-127.00172093663002,53.25409085382271],[-127.00197407409443,53.253996273967445],[-127.00225710218191,53.253934498987846],[-127.0025275598799,53.25385770786846],[-127.00278145257133,53.253755841382045],[-127.00297359101764,53.25362312365534],[-127.00307179358569,53.25344862252259],[-127.0030657261005,53.253272197341246],[-127.00298332657701,53.25304432074551],[-127.00300841492523,53.25291470028583],[-127.00304922871999,53.252735637755215],[-127.00311360825735,53.25256086671896],[-127.00322231193898,53.25239411974644],[-127.00335081420175,53.25223056657298],[-127.0034651747166,53.25206489194668],[-127.00352294834494,53.25188849131364],[-127.00352243131715,53.251708657668935],[-127.00349376802987,53.25152962681835],[-127.00346041762916,53.251351200305606],[-127.00346461503565,53.25117189144369],[-127.00342749705246,53.25099293205105],[-127.00343262569403,53.25081361528036],[-127.00350359187799,53.25063934384987],[-127.00363681318522,53.25047742644742],[-127.00374930399096,53.25031233187598],[-127.00377790431367,53.25013281640145],[-127.00378582630054,53.24995291117234],[-127.00381350671957,53.249774523895674],[-127.00387975740854,53.24959917156188],[-127.00390742399419,53.24942022859386],[-127.00393696734245,53.249241260753266],[-127.00396556454362,53.24906230985796],[-127.00399510739526,53.24888334196926],[-127.00402371912531,53.24870439089923],[-127.00405231538254,53.248525430970716],[-127.00408657134528,53.24834698781977],[-127.00413492485487,53.24816954576014],[-127.00421343236988,53.24799689493349],[-127.00433343611616,53.24783229166156],[-127.00438851028574,53.24766151529683],[-127.00443108374563,53.247477954961674],[-127.00443807161304,53.2472980662848],[-127.00443191939969,53.24711827989826],[-127.00443139877419,53.24693845476984],[-127.00444966235906,53.24675902630445],[-127.00446229451427,53.24657964550755],[-127.00447211844522,53.246400288473275],[-127.00447270171317,53.24622773244638],[-127.00449442595212,53.24603594951639],[-127.00449125659645,53.24586286052326],[-127.00443823155574,53.24568572083997],[-127.00436650299486,53.245511536173716],[-127.00424432128419,53.245347298090074],[-127.00414173553352,53.24517842109098],[-127.00406252759373,53.24500541999504],[-127.0040001467667,53.24482947075962],[-127.00391906305461,53.24465648542506],[-127.00376335253094,53.24450317947651],[-127.00353209821289,53.24437012510181],[-127.00345210792861,53.24420385295401],[-127.00345256390084,53.2440251308182],[-127.0034811462127,53.24384561494995],[-127.00344219925576,53.24366779086542],[-127.00328570773617,53.24352121364119],[-127.003002794765,53.24346590714787],[-127.00270386713503,53.243447701689966],[-127.00240673718979,53.24342612786214],[-127.00213109444526,53.24336066472638],[-127.00207909473811,53.243186311877714],[-127.00209642071597,53.243006891413636],[-127.00212033668625,53.24282797996057],[-127.00212545649237,53.242648097877776],[-127.00213809728588,53.242468716941076],[-127.00213570957835,53.242288907222665],[-127.00209113903706,53.24211113012657],[-127.00198952887756,53.24194279862482],[-127.00178832240807,53.24181004272162],[-127.00155475740165,53.24169772809475],[-127.00132856837254,53.241579748417884],[-127.0011468545603,53.24143729843025],[-127.00106113094716,53.241265470618906],[-127.00103716978741,53.24108639865111],[-127.00105544525621,53.240906970156615],[-127.00109158453151,53.24072851131413],[-127.00114092589303,53.2405533023872],[-127.00125336010383,53.2403865244807],[-127.00137143723865,53.24022026351267],[-127.00149989626033,53.24005614669782],[-127.00164069211593,53.23989809256257],[-127.00180044073124,53.23974772139229],[-127.00198671564209,53.23960777476708],[-127.00219005291252,53.23947496218158],[-127.00240097571752,53.239345446506384],[-127.00260904799286,53.239214834070246],[-127.00282283063603,53.239086969643516],[-127.00304514305252,53.23896295877836],[-127.00325986737467,53.23883565027477],[-127.00345092419458,53.23870014261643],[-127.00359655381453,53.23854820312629],[-127.00368444248925,53.2383760280035],[-127.0037581012845,53.238197815157086],[-127.00386202797242,53.23802886550714],[-127.00400471156114,53.23787191275127],[-127.00415683082336,53.237717120837],[-127.00431652219422,53.237565061262146],[-127.00447903335728,53.23741354228061],[-127.0046434484698,53.23726257163977],[-127.00480595729738,53.237111052186165],[-127.00496374073515,53.236957887351245],[-127.00509128355885,53.236796023825],[-127.00520840452978,53.23662975765016],[-127.00526239649618,53.236453386555],[-127.00525906323,53.23627413998774],[-127.00524540284002,53.23609442519718],[-127.00534480592472,53.235933355589225],[-127.0056025255532,53.23583872725097],[-127.0058354333219,53.235727510742485],[-127.0060226095153,53.23558698485744],[-127.00620503211675,53.23544425805529],[-127.00649126617294,53.235325855919264],[-127.00667523065682,53.23520888604309],[-127.0069186609262,53.23510597701988],[-127.00722694620447,53.23500699848727],[-127.00736223669348,53.23489548752361],[-127.00757090341848,53.23483040366992],[-127.00776416970386,53.2347492080053],[-127.0079921813654,53.234629620706805],[-127.00822988198566,53.234522840449614],[-127.00849293879509,53.2344561719887],[-127.00873923975969,53.234395256789995],[-127.00895855136851,53.23434352551771],[-127.00921632429883,53.234291475457134],[-127.00951546495753,53.23428220625609],[-127.00981462049732,53.234272936172474],[-127.01011385450879,53.234267581827496],[-127.01041331795702,53.23427119749612],[-127.01071214369912,53.23428769876886],[-127.0110091868291,53.234308131652995],[-127.01130375665956,53.234343159965796],[-127.01158297359177,53.2344029599087],[-127.01182850213888,53.23450563350184],[-127.0120426652895,53.23463153945125],[-127.01225591225084,53.234758008590894],[-127.01248578141353,53.23487313968385],[-127.01274697623768,53.23496390820572],[-127.0130034345394,53.23505247568064],[-127.01327766974356,53.23506077259947],[-127.01353829891602,53.235049581433024],[-127.01380106340604,53.23501035967732],[-127.01406366778916,53.234963860127344],[-127.01437639633973,53.234933729310185],[-127.01460458773444,53.234861752105985],[-127.01474627639892,53.23470422952902],[-127.01488130806723,53.23454341128774],[-127.01509323267727,53.23441946594233],[-127.01537031933496,53.23435098579404],[-127.01564737651239,53.23428194052319],[-127.01590610170106,53.23419177166385],[-127.01613990547057,53.234079962117725],[-127.01638612848458,53.233977009413934],[-127.01664966857048,53.2338923910114],[-127.0169218886956,53.23381722606154],[-127.01719991278426,53.233749298235495],[-127.01748479438993,53.233693071377786],[-127.01777967672004,53.23366308459972],[-127.01807886665316,53.23365547850661],[-127.01837670466767,53.23367028374914],[-127.01867300565745,53.233698556080796],[-127.0189709658468,53.233718405392494],[-127.01926976399915,53.2337337648651],[-127.019559841864,53.23377664566026],[-127.01982644497724,53.23385783267718],[-127.02013036303593,53.23392972533495],[-127.02042713790716,53.23393894119575],[-127.02071946846536,53.23388040149801],[-127.02099678447762,53.23382254610934],[-127.02130420679117,53.233767236422246],[-127.02158657441925,53.233763127790446],[-127.02189184079249,53.23377394304776],[-127.02219102919813,53.23376688234808],[-127.0224902730658,53.2337614966421],[-127.02278913592156,53.23374099156093],[-127.02307895156639,53.23369535761787],[-127.02332520968939,53.23359463096424],[-127.02357714886259,53.23349665144488],[-127.02383970020657,53.233410349198714],[-127.02410512702332,53.23332626247054],[-127.0243696070321,53.233242183315014],[-127.0246330996044,53.23315643586038],[-127.02489178503589,53.233065682742854],[-127.0251475806167,53.23297159260931],[-127.0254023749508,53.23287526961965],[-127.02565623586798,53.232779509896915],[-127.02591298593765,53.23268653028653],[-127.02617361032152,53.23259856319364],[-127.02644009416679,53.232520064344286],[-127.02673552664841,53.23247436374133],[-127.02703206779246,53.23243538460606],[-127.02729393207669,53.232360285246884],[-127.02751616452812,53.23223734831683],[-127.02769743314988,53.23208899507671],[-127.02783529584103,53.23193148929039],[-127.02794856121736,53.23176524173247],[-127.02805233311574,53.2315951502109],[-127.0281598992633,53.23142614615019],[-127.02828354274885,53.23126260491887],[-127.02842513982876,53.23110451019275],[-127.02857620085409,53.23094912988378],[-127.02873198522883,53.230795393574695],[-127.02888776847021,53.23064165704846],[-127.02903881134772,53.230486285204265],[-127.02915962789892,53.23032220273963],[-127.0292728687425,53.2301559539054],[-127.02939839408492,53.229992950752006],[-127.02953620424964,53.229833211164824],[-127.02968820106291,53.22967838585444],[-127.02985249455749,53.229527935426155],[-127.03003197625117,53.22938407566356],[-127.03022187816208,53.229244606974056],[-127.03040230158969,53.229101294181895],[-127.03056849391436,53.22895194664923],[-127.03076410295566,53.22881578885265],[-127.03099881065363,53.22870506171371],[-127.03125646863236,53.22861262684169],[-127.03152284944272,53.228531311322435],[-127.03180081528963,53.228463349075206],[-127.03207207022292,53.22838927747171],[-127.03229528061163,53.228269683946756],[-127.03247854211101,53.22812746359146],[-127.03262956280425,53.2279720869665],[-127.03275035822931,53.22780800062495],[-127.03282775160888,53.22763477265722],[-127.03277278182559,53.22745878053652],[-127.03271403246116,53.22728169185772],[-127.03274910817758,53.22710435058007],[-127.03285382229969,53.22693536644064],[-127.03301146632347,53.22678217243849],[-127.03323563855608,53.226663689043214],[-127.03350782360421,53.22659016161364],[-127.03379756483362,53.226543936700644],[-127.03409134570357,53.22650944535965],[-127.03438713914296,53.22648052916324],[-127.03468063102993,53.22643426934988],[-127.03496575564328,53.22639088753186],[-127.03523592255222,53.22631177129887],[-127.03546771436265,53.226198263685816],[-127.0356429698884,53.226037059865455],[-127.03574550828928,53.2258944277402],[-127.03581038257468,53.225708416873466],[-127.0358175214505,53.225540282350686],[-127.03581518360389,53.225368313411174],[-127.03581057146678,53.225180112867186],[-127.03580257763115,53.225007063867814],[-127.03581804161632,53.22483437461659],[-127.03590394932758,53.22466443126101],[-127.03610431531786,53.224532148622124],[-127.03632081139511,53.22440755902904],[-127.0365163672521,53.224270835774895],[-127.03670718280945,53.22413246842666],[-127.03687049923273,53.223982015969895],[-127.03698181785346,53.22381521089122],[-127.03705351706321,53.2236403441868],[-127.0370707154397,53.22346148125276],[-127.03710386617801,53.223283034497435],[-127.03718028906431,53.223109246811525],[-127.0373114324253,53.22294787027511],[-127.03750604644806,53.222811709196506],[-127.03766093735841,53.2227005461277],[-127.0377715011107,53.22257968655904],[-127.03780416126125,53.2224578326785],[-127.03786141074171,53.22230606620457],[-127.03791273039822,53.22214146156417],[-127.0379921057787,53.2219738144931],[-127.03801064262873,53.221811746760025],[-127.03793083563913,53.22165613359691],[-127.03784078198463,53.221465884046495],[-127.03784962299719,53.22129101113858],[-127.03792228732028,53.22111725563943],[-127.03806003634107,53.22095750539408],[-127.03823185242742,53.2208103376782],[-127.03840083341076,53.22066207404261],[-127.03853857891981,53.220502314240555],[-127.0386423219587,53.22033389728298],[-127.0387341202601,53.22002271857026],[-127.03876724740647,53.219843706420605],[-127.03877409825184,53.21966436875598],[-127.03875654900578,53.2194846891418],[-127.03873620726456,53.219305589741225],[-127.03867184419671,53.21912967280813],[-127.03861684727212,53.21895311799892],[-127.038581498492,53.218774714749],[-127.0385592681271,53.218595067083214],[-127.03855485103381,53.21841527228517],[-127.0385626054339,53.21823480609922],[-127.03860426313022,53.218059080531994],[-127.03872022767084,53.217891676628135],[-127.03880983367505,53.21772057741746],[-127.0388768193633,53.21754519443526],[-127.03892404622654,53.217367743612805],[-127.03891588981838,53.217188537235565],[-127.0388983271225,53.217008292801594],[-127.03888359936995,53.21682857926234],[-127.03888951773013,53.2166498141931],[-127.03897909288582,53.216477594495274],[-127.03912911749028,53.216322207823474],[-127.0393094419181,53.21617832485228],[-127.03949262763165,53.216036101703914],[-127.03967960341714,53.215896077016176],[-127.03987226154028,53.2157576873717],[-127.04006779346383,53.2156220778764],[-127.04026806078295,53.215488658487665],[-127.04047213469217,53.215356890537315],[-127.04068952905256,53.21523341339908],[-127.04093943030814,53.215134292130685],[-127.04120279010276,53.21504906267706],[-127.0414699979776,53.21496716027718],[-127.04174207971465,53.214893057844805],[-127.04201121535732,53.214813942960205],[-127.04225729077807,53.214712055737564],[-127.0424641883437,53.214581379873515],[-127.04262461248723,53.21443037893376],[-127.04268125490813,53.214254528536785],[-127.04262249631479,53.214078008129505],[-127.04248998864884,53.21391613804115],[-127.0423193709339,53.213768057808736],[-127.0421255926514,53.213631376915565],[-127.04190405320931,53.21351063558235],[-127.04165123806558,53.21341425477233],[-127.04138014973522,53.21333820280582],[-127.04109819608759,53.213277367798426],[-127.04080733298423,53.213236223417574],[-127.04050856159455,53.213216437058215],[-127.04021167997148,53.21319719808819],[-127.03991552326578,53.2131689791371],[-127.0396211036964,53.21313570649097],[-127.0393355818597,53.2130821862805],[-127.03906722445768,53.213002187885834],[-127.03882453435257,53.212897868908264],[-127.03860207767363,53.212777120548395],[-127.03839532337552,53.21264671451753],[-127.03820061785171,53.212510044370184],[-127.03800962334236,53.212371656184786],[-127.03782789786074,53.21222870456555],[-127.03766752995634,53.21207660175199],[-127.03755934707864,53.21191115174617],[-127.03752681559249,53.211732158210076],[-127.03752238975146,53.21155179810941],[-127.03752923089829,53.21137190407981],[-127.03754171214564,53.21119251641671],[-127.03755606878707,53.211013112315136],[-127.03757230079873,53.210833691774226],[-127.03758946406121,53.21065369833225],[-127.03760662602933,53.210474269607566],[-127.0376256783236,53.210294824310736],[-127.03764471545253,53.210115379125014],[-127.0376468883539,53.209936081582185],[-127.03764435148868,53.20975626949746],[-127.03764181442509,53.20957644843334],[-127.0376383323872,53.20939664459026],[-127.0376357953708,53.209216823491495],[-127.03763983004059,53.2090369537969],[-127.03765418553394,53.208857549476505],[-127.0376760561269,53.208678635093875],[-127.03769509231446,53.208499189744764],[-127.03769162514173,53.20831938566824],[-127.03767315365133,53.20814026872646],[-127.03767436729129,53.207960414663624],[-127.03767838782156,53.20777998024005],[-127.03762997987954,53.20760393109781],[-127.03751150171419,53.20743857090298],[-127.03736951745479,53.207232522875465],[-127.03739534956611,53.20710007863016],[-127.0375188176029,53.206933729502744],[-127.0376073087942,53.20675647260743],[-127.03773865766449,53.20656707961159],[-127.03792745016106,53.20646402598417],[-127.03815623665066,53.206347731506675],[-127.03838313408771,53.20623033262982],[-127.038578626515,53.206094715938015],[-127.0387257680465,53.205938242343784],[-127.03883703185282,53.205771433916844],[-127.0389303622222,53.20560030062545],[-127.03902463561374,53.2054297147344],[-127.03913589690329,53.20526290598123],[-127.03927831147834,53.20510478781807],[-127.03944817003061,53.20495707789484],[-127.03963319555649,53.204815392870785],[-127.03981821850368,53.20467426332398],[-127.04000800473332,53.20453589737759],[-127.0402120266007,53.204404129102706],[-127.04041699118692,53.20427291690789],[-127.04062289827073,53.204142251826205],[-127.04082883275952,53.20401214189127],[-127.04103569629233,53.203882032379724],[-127.04124350232107,53.20375246997007],[-127.04145133576182,53.203623462700705],[-127.04166009823719,53.20349445584321],[-127.04186599769024,53.20336378854694],[-127.0420776052335,53.203235867428596],[-127.04232169536694,53.20313287581114],[-127.04260646171691,53.20308163330696],[-127.04290627779388,53.20307058654343],[-127.04320554945328,53.20307579549003],[-127.04352373979386,53.203087004276206],[-127.043801472573,53.203055425032716],[-127.04406635101262,53.20295840487865],[-127.04430665676675,53.202854321950404],[-127.04450017040338,53.20271591562066],[-127.04465486283222,53.202562164279975],[-127.04476042635022,53.202394279466276],[-127.04482454419957,53.20221836077478],[-127.04484074200086,53.202038938393585],[-127.04479696442066,53.20186116537188],[-127.04470460107848,53.20169054371183],[-127.0445842506879,53.201525771205084],[-127.0444471499995,53.20136618398565],[-127.04429793814751,53.201210073808255],[-127.044140379899,53.20105738952322],[-127.04396703085771,53.2009104556166],[-127.0437751385542,53.2007726398351],[-127.04355460677601,53.200651892429555],[-127.04331194883399,53.20054646169579],[-127.04310750272886,53.20043116534127],[-127.0430095185886,53.20029868872896],[-127.04296666788764,53.200119786290855],[-127.04295526683394,53.199999993372465],[-127.04295005264593,53.19994065287802],[-127.043067061082,53.19977995630885],[-127.04329579728406,53.19966365149167],[-127.04350168803516,53.199532980952064],[-127.04367246816463,53.19938581185519],[-127.04383469162124,53.19923423588435],[-127.04395251389793,53.1990690402034],[-127.0439687141923,53.19888961763744],[-127.04392401356057,53.19871185218693],[-127.04382885463497,53.19854181901138],[-127.04378790483196,53.19836402043737],[-127.04388124018887,53.19819455846871],[-127.04410232760766,53.198072716797206],[-127.04433681607141,53.19796140579185],[-127.04454824972606,53.19782844335209],[-127.0447704580239,53.19771386926013],[-127.04481759085574,53.197609811845446],[-127.0447162245518,53.19756812677341],[-127.04441899094918,53.197567941768675],[-127.04412335124901,53.197594642928216],[-127.04383381961067,53.19764089379063],[-127.04354323182605,53.19768267124367],[-127.04324453699871,53.197699303648314],[-127.04294621962731,53.197693530951376],[-127.04265451801724,53.19765183433715],[-127.04236819343491,53.197600014169694],[-127.04208543983749,53.19754087417687],[-127.04179009247625,53.19746559253898],[-127.04166239261816,53.1974583161539],[-127.041500428273,53.19746813938598],[-127.04121301773661,53.19752444967422],[-127.04095555611457,53.19761691681114],[-127.04071338306748,53.19772044509714],[-127.04048749659445,53.197838405282745],[-127.04036284176448,53.19787871745937],[-127.04016198992376,53.19794714625385],[-127.03991111417241,53.198002576784994],[-127.03969071315072,53.19803868190482],[-127.03935239333236,53.198045576671426],[-127.0390182576281,53.19803225584346],[-127.03876731496659,53.198008684914576],[-127.03857509637689,53.19797059692781],[-127.03843228593988,53.19795895856234],[-127.03815720010485,53.19790646501268],[-127.03783844209464,53.1978319434515],[-127.03760709598758,53.19776561948043],[-127.03732252798115,53.197708725062135],[-127.03703003803837,53.197673188772114],[-127.03673237821837,53.197655624972136],[-127.03643722153728,53.19762571305093],[-127.03614376190308,53.1975885068013],[-127.035850357438,53.197553531377814],[-127.03555351918867,53.19753147545235],[-127.03525495726866,53.19751560106718],[-127.03495583417758,53.19751540883676],[-127.03465816313478,53.19753593685669],[-127.03436860796238,53.19758160894182],[-127.03409477714582,53.19765683175953],[-127.03390690473917,53.197796292642444],[-127.0337276262223,53.197941836472786],[-127.03348053361533,53.19803699346572],[-127.03319900698841,53.19810443781016],[-127.03291245632754,53.19815847931633],[-127.03261178341222,53.19817118483473],[-127.03231414774073,53.19819339182667],[-127.03201755084613,53.19822006204139],[-127.03172791971134,53.198262922529004],[-127.03143850654831,53.19831474437568],[-127.03115497707795,53.19837716349437],[-127.03088775981618,53.198454562203175],[-127.03064373573994,53.198560891431555],[-127.03044075264806,53.198696551849835],[-127.03030485565994,53.198852926894695],[-127.0302134483624,53.19902683387267],[-127.03011351376973,53.199197462377306],[-127.02995144578448,53.19935741701739],[-127.0297060342266,53.19944527256917],[-127.02941456107742,53.19945172271438],[-127.02910746243847,53.19943198071476],[-127.0288047852851,53.19940155930595],[-127.02852388635692,53.19934125046663],[-127.02826291841056,53.199252190880735],[-127.02801661112588,53.1991490018095],[-127.02777951656812,53.19903900934032],[-127.02754607802842,53.19892506744125],[-127.02730991593123,53.19881506595324],[-127.02705726258347,53.19872032916425],[-127.02676891174896,53.19866176602804],[-127.02650904480343,53.198579416043266],[-127.02628381233758,53.198455316124004],[-127.02610397968377,53.19830896844265],[-127.02599593160367,53.19814574718184],[-127.02592138999769,53.19797159544561],[-127.02587014212708,53.19779163947247],[-127.02583293554326,53.19761100611667],[-127.02581172756915,53.197432466234524],[-127.02581956118442,53.197252563337955],[-127.02583486558557,53.197072031003614],[-127.02584364245203,53.196892675667364],[-127.02585428042043,53.19671273946684],[-127.02586587692319,53.1965333596768],[-127.02587556999734,53.19635344058409],[-127.02588433284777,53.19617352056389],[-127.02589217939813,53.19599417319004],[-127.02590094232086,53.19581426209579],[-127.02591345459689,53.19563430954957],[-127.02606546418221,53.19548453171161],[-127.02629994335624,53.195372127158166],[-127.02649171561804,53.195238246973446],[-127.02647335315132,53.19506081177249],[-127.02627049960319,53.19493147112424],[-127.02605839706578,53.19480669222871],[-127.02602034371822,53.19462941851904],[-127.02603192394754,53.19445003864113],[-127.02599010802948,53.19427224171324],[-127.0259081151197,53.19409983942799],[-127.02579437280151,53.193933305533236],[-127.02566485309903,53.19377307534787],[-127.02545178613168,53.193647183206565],[-127.02519541856687,53.19355248360283],[-127.02494552454237,53.19345435698141],[-127.02470941342688,53.19334491459832],[-127.02444758777484,53.19325697462784],[-127.0241757568221,53.19318201079491],[-127.02389396093822,53.193121698946136],[-127.02361305649303,53.19305913773368],[-127.02334304879253,53.19298191525535],[-127.02309225989536,53.192884921953215],[-127.02287364858364,53.19276186986697],[-127.022668888207,53.192630298551585],[-127.02244661152247,53.19251064778377],[-127.02220497066483,53.19240404494649],[-127.02198455751584,53.19228381250662],[-127.02180944514485,53.192137417450326],[-127.02164736339668,53.19198642775763],[-127.02149483045437,53.19184319898303],[-127.02148957227229,53.191663964643666],[-127.02148052280513,53.191483642482844],[-127.02147047586088,53.19130052317835],[-127.02142405726426,53.191125005216456],[-127.02125835176538,53.19097964869414],[-127.02103962065154,53.19085100073233],[-127.02080811983829,53.19073701993428],[-127.02058399716738,53.19061793735613],[-127.0203617099312,53.19049716228077],[-127.02014774544686,53.19037126838703],[-127.01994951964647,53.1902373950983],[-127.01976514430253,53.19009499401635],[-127.01958821609573,53.18994973177939],[-127.01941866439014,53.189799923797665],[-127.01925096306243,53.18964842338277],[-127.01908141375863,53.1894986148939],[-127.01890450377671,53.18935390724121],[-127.01871650822389,53.189216582391175],[-127.0185036467096,53.18909739904595],[-127.01822806361285,53.189020777715314],[-127.01795156511834,53.188944719383315],[-127.01773404026954,53.1888266952444],[-127.01755612569167,53.188679197455585],[-127.01736527936256,53.188539653966856],[-127.01716241911798,53.18840693633675],[-127.01695585001015,53.18827649120276],[-127.01674283664069,53.18815058302523],[-127.01651967028985,53.188030919866236],[-127.01627802804542,53.1879231845421],[-127.0160208516779,53.187831833703136],[-127.01572927151595,53.187791190847],[-127.015430826008,53.1877769423446],[-127.01513161224749,53.18776942267002],[-127.01483316709437,53.18775517266155],[-127.01453802792318,53.187722409835786],[-127.01424291585185,53.1876907575807],[-127.01394556239111,53.187683218986926],[-127.01364770876725,53.18769361190717],[-127.01335004283528,53.18771184596176],[-127.01280064241438,53.18774791907266],[-127.01283015893154,53.18757119263931],[-127.0130076175312,53.187426806960346],[-127.01320026007517,53.18728957883],[-127.01341187240698,53.1871622725484],[-127.0136722155029,53.187073210521284],[-127.01394511124421,53.18699916270616],[-127.01422285909624,53.18693235146555],[-127.01447839802543,53.18683884676964],[-127.01471574649293,53.186729245627404],[-127.01491161855397,53.18657069742541],[-127.01512002423641,53.18646638120904],[-127.01540475155966,53.18641687954231],[-127.01569520230377,53.18645024509753],[-127.01598669703229,53.18640964798977],[-127.01622789564762,53.186304492711386],[-127.01635903175206,53.18614425644229],[-127.0162598744256,53.18595742798318],[-127.01626729956689,53.185798253216035],[-127.01655936173448,53.18562543070506],[-127.01667667145117,53.18547539717591],[-127.01676474664856,53.18531777098419],[-127.01680419781668,53.1851258266377],[-127.01654640559741,53.184969484203584],[-127.0163181462022,53.184832501037675],[-127.01630043628748,53.184680264862145],[-127.01627169717412,53.1844984345131],[-127.01635340593678,53.184349262446986],[-127.01635940302693,53.184169374990184],[-127.01631107033032,53.18399163001994],[-127.01626836237972,53.183813272017645],[-127.01627437167,53.183634504912355],[-127.0163207391744,53.18345762350055],[-127.01635489071695,53.18327917061541],[-127.01638997160983,53.18310070972484],[-127.01644947145158,53.182924280230026],[-127.01641519086151,53.18274585881522],[-127.01640338796437,53.18256667973202],[-127.01641782451748,53.182387275431985],[-127.01643317700314,53.182207298517234],[-127.01643636796709,53.18202799069554],[-127.01643299329852,53.181848183438525],[-127.01643522607206,53.18166831907224],[-127.01646279514392,53.181489366693185],[-127.01648285365222,53.18130991402062],[-127.01647573026095,53.181130129906144],[-127.0164779630302,53.18095027443107],[-127.01649052454798,53.18077088605146],[-127.01651716300275,53.18059193258944],[-127.01651752141576,53.180412093148426],[-127.01651320174746,53.18023228488182],[-127.01652763703856,53.180052880340945],[-127.01658439571972,53.179879279716864],[-127.01682365458298,53.1797730186679],[-127.0170762598512,53.17967616229657],[-127.01730211483768,53.179558254555154],[-127.01747194733308,53.17941056513997],[-127.01753429663736,53.179235795419224],[-127.01749160027639,53.179058557799564],[-127.0173435110729,53.17890240369138],[-127.01712405916894,53.178779348048934],[-127.01688067490517,53.178674990331366],[-127.0166936509749,53.17853653309066],[-127.01662381958477,53.17836065756724],[-127.01659702460377,53.17818160678797],[-127.01659832696033,53.17800175004021],[-127.0166052649815,53.17782240962679],[-127.01662064357095,53.177642996730775],[-127.01664444762902,53.17746351147743],[-127.01667106857427,53.177284566749904],[-127.01670145208159,53.177105580727485],[-127.01672152106595,53.17692669220529],[-127.01671438240663,53.1767469078054],[-127.0166913226771,53.17656726905275],[-127.01664489958335,53.176390062922074],[-127.01656949030045,53.17621591136109],[-127.01647728339516,53.17604470968742],[-127.0163822855054,53.1758746434318],[-127.01627143472308,53.1757075189011],[-127.01612802718526,53.1755502024392],[-127.01596322418354,53.17539978345431],[-127.01578729992826,53.175254506406894],[-127.01560117038264,53.175113798657165],[-127.01539839357281,53.1749816416577],[-127.01519189543075,53.17485119249658],[-127.01499838296571,53.17471446439237],[-127.01483174041978,53.17456518906649],[-127.01470786257185,53.174401536207974],[-127.01462500946981,53.17422912338936],[-127.01457856928015,53.17405136069403],[-127.01456397328452,53.17387220460099],[-127.01458309181108,53.17369275959892],[-127.0145722302928,53.17351301570055],[-127.0145473208994,53.17333394792824],[-127.0145167902233,53.173154928300754],[-127.01451715685843,53.1729750791755],[-127.01457291617737,53.17279924638307],[-127.01470493424162,53.172637882398405],[-127.01488988630899,53.172496233668404],[-127.01501217041695,53.17231982138778],[-127.01508035408848,53.17215452210466],[-127.01510837949209,53.171994613843765],[-127.01499010254796,53.17182979257723],[-127.01479196636213,53.17169534468954],[-127.01456979503546,53.17157455750438],[-127.0143365701754,53.17146169920148],[-127.0141383170958,53.17132221341955],[-127.01399518722356,53.17117553216719],[-127.01379134223164,53.17103721420411],[-127.01364329474528,53.17088105478652],[-127.01349338793361,53.170725466868674],[-127.01334718931642,53.17056816177299],[-127.01318614971473,53.1704171507812],[-127.0130130186488,53.170270169290916],[-127.01279371802758,53.1701510305058],[-127.01251298244199,53.17008844219306],[-127.01225042195354,53.17000216713304],[-127.01202828005401,53.16988193072654],[-127.01183571658929,53.169744633480015],[-127.0116375869027,53.169609624501845],[-127.01141821155052,53.16948767807165],[-127.0112163906021,53.169354940944494],[-127.01105721011436,53.16920279067265],[-127.01093802741629,53.169037973043935],[-127.0108793837119,53.168858071762216],[-127.01077885726069,53.16869029786424],[-127.01070874545384,53.16850096557105],[-127.01053868947919,53.168364038784325],[-127.0104390696288,53.16819457158871],[-127.01035717709712,53.16802159148064],[-127.010293023439,53.167846218905815],[-127.0102213892147,53.167671465890926],[-127.01014230146396,53.167498461666916],[-127.01002963715291,53.167331911138625],[-127.00988439241866,53.167174593547145],[-127.00977080069819,53.16700805067037],[-127.00969077175773,53.16683505413627],[-127.00960143070704,53.166663813237484],[-127.00949808500006,53.166494941671004],[-127.00938821523224,53.166327801917504],[-127.00927836132023,53.16616066191904],[-127.00916661977143,53.16599353790229],[-127.00902513159728,53.16583563141067],[-127.00884275954981,53.165692639809826],[-127.00864192225443,53.16556044563257],[-127.00843826869587,53.1654282840707],[-127.00823278284315,53.16529781405003],[-127.008017120016,53.16517303288899],[-127.00782867124309,53.16504969593569],[-127.00756227128036,53.16495784072102],[-127.00729546319762,53.164887842834865],[-127.00706504759044,53.164811923239945],[-127.00672962582065,53.16473297895236],[-127.00650815025347,53.16459984514809],[-127.0063928782988,53.164440592094856],[-127.00626720247183,53.16427750109052],[-127.0061322271191,53.16411729474819],[-127.00597308459997,53.163965137205295],[-127.00579259113849,53.16382156917723],[-127.00557233340486,53.16369961942487],[-127.00531221860342,53.163595380174556],[-127.00506479352993,53.163512887072045],[-127.00480869206116,53.16342037353838],[-127.0045325578022,53.16335156916315],[-127.00424916824338,53.16329346607801],[-127.0039766494479,53.163219018222065],[-127.00375546928052,53.163097637681346],[-127.003581963343,53.16301058840732],[-127.00327519400695,53.16291458383509],[-127.00303549785566,53.162801767210276],[-127.00280297617884,53.162675998960275],[-127.00264763747037,53.162525481034926],[-127.00258296635612,53.16236579564293],[-127.0025632041849,53.16212505300095],[-127.002393772944,53.161972422021016],[-127.00244436696028,53.161933331422084],[-127.00246953497772,53.161848524109146],[-127.00234883878383,53.161657373933096],[-127.00228751727401,53.16148141701594],[-127.00224115785986,53.161303648118434],[-127.00222285687651,53.16112452110785],[-127.00219333126198,53.160945489115655],[-127.00219375014365,53.160765638829936],[-127.00227173215882,53.16057729715624],[-127.00224136868165,53.16040275426966],[-127.00203875686344,53.160272804945926],[-127.00188803916731,53.1601194500027],[-127.00179219333732,53.15994882276646],[-127.00170663210625,53.15977698789232],[-127.00157911515106,53.15961391630969],[-127.0014092981632,53.15944503516628],[-127.00141183392466,53.159274695698365],[-127.00148326607719,53.15908696558643],[-127.00165976788153,53.15894484310749],[-127.00175410274184,53.15877429140583],[-127.00181740227953,53.15859895550337],[-127.00181872716004,53.15841742104325],[-127.00188397860836,53.15824543008486],[-127.00194914998576,53.15807007820511],[-127.0019365372934,53.157893699504356],[-127.00189224201692,53.15772375629263],[-127.00175892553573,53.15755289025773],[-127.00165190021899,53.15738459837118],[-127.00154015893168,53.15721522577192],[-127.00162427341017,53.15704867778798],[-127.0017393142776,53.156882423747426],[-127.00179038869672,53.156705514834364],[-127.00182839227034,53.15652982807042],[-127.00183811195171,53.156347101827684],[-127.00188542761775,53.1561691041144],[-127.00205429102195,53.15602144278818],[-127.00220326569043,53.15590421250192],[-127.00226872039775,53.15582017532297],[-127.00214595105547,53.155738861517335],[-127.00193634682093,53.15562914036701],[-127.00180437656086,53.15547562635584],[-127.00188425012045,53.15528838882642],[-127.00190446404602,53.15511341722232],[-127.00174927858724,53.154928160459875],[-127.00148369747399,53.15486765922545],[-127.0011753688071,53.154821529961346],[-127.00088759088534,53.154772976105484],[-127.00059537520436,53.15473510845709],[-127.00030316190208,53.15469668429486],[-127.00000131758074,53.15464769141089],[-126.99948046376124,53.15448681070964],[-126.99922166683396,53.154395993214386],[-126.99898953482435,53.1542836602787],[-126.99875461348556,53.15417247094664],[-126.99848670616142,53.15409237812437],[-126.99824540914284,53.153989085192016],[-126.99802246202567,53.15386882928988],[-126.99783556962505,53.153728655470964],[-126.99761635600437,53.15360836732895],[-126.99735030098239,53.153527135827446],[-126.99708970737404,53.15343912565958],[-126.9968401021562,53.15334038194724],[-126.9965959851279,53.15323598891669],[-126.99634363304679,53.153139508329474],[-126.99610965398566,53.153028305856374],[-126.99589041117702,53.1529057737567],[-126.99566104540075,53.152791170033254],[-126.99544272102857,53.15266807360641],[-126.99525675837752,53.1525273321424],[-126.99508748392132,53.15237860645085],[-126.99486921577832,53.15225774056536],[-126.9946196096497,53.15215843643942],[-126.99436999143191,53.15205856715292],[-126.99415171394001,53.151937144256486],[-126.99394353378942,53.15180722779899],[-126.99370773677813,53.15169715639573],[-126.9934326127122,53.15162775325696],[-126.99313705873105,53.15156580877483],[-126.99287961625247,53.15149177390643],[-126.99301073289237,53.15133156044704],[-126.99307027225862,53.15115457501147],[-126.9930689114324,53.15097642430682],[-126.99303379806297,53.15079743630723],[-126.99301180986697,53.15061833814489],[-126.99298886491779,53.15043869221431],[-126.99300340274701,53.15025984329084],[-126.99305544957413,53.15008292958234],[-126.99308122386218,53.14990398631553],[-126.99306951582012,53.14972424602866],[-126.9930512191226,53.149543431533466],[-126.9931127732063,53.149372596300566],[-126.99328915770727,53.14922601331769],[-126.99349304518246,53.149093756913274],[-126.99370074101824,53.14896483867428],[-126.9939027401456,53.14883204160395],[-126.99408293081676,53.148688222196675],[-126.99421402096732,53.1485274425264],[-126.9942895149918,53.148352572077705],[-126.99429376732682,53.14817437390385],[-126.9942044998776,53.14800256409147],[-126.99413208934358,53.147830047839925],[-126.99412691115474,53.14764968781747],[-126.99416112734157,53.14747123784194],[-126.99423946253721,53.14729746395748],[-126.99433285729084,53.14712691604474],[-126.99442812418224,53.14695636126647],[-126.99452810385547,53.14678744307558],[-126.99463089921858,53.14661850110951],[-126.99473652329013,53.14645009102908],[-126.99485344660363,53.14628495635418],[-126.99497695685507,53.1461208777084],[-126.9950938933032,53.14595574263987],[-126.99518352334417,53.145784669758186],[-126.99523742797354,53.14560772994046],[-126.9952772406856,53.145429232313916],[-126.99531332283534,53.14525076603474],[-126.99534001366092,53.14507182294761],[-126.99536014442276,53.14489237027819],[-126.99537934621434,53.14471292540108],[-126.99539760406688,53.14453348844278],[-126.99541491799245,53.144354059403696],[-126.99543224675175,53.14417463021828],[-126.99546551086695,53.14399618746279],[-126.99552317039546,53.14381978046177],[-126.99557145350737,53.14364288756559],[-126.99558313569577,53.14346295001317],[-126.9955705031108,53.14328377281795],[-126.99553913056478,53.14310475328835],[-126.99550207676054,53.14292241997067],[-126.99538995647389,53.142773769108956],[-126.99509363602537,53.14271687402145],[-126.99481767884615,53.14264916650167],[-126.99453428328937,53.14258431769241],[-126.99428245953153,53.14250743292893],[-126.99427434862706,53.14232149441675],[-126.99427575792971,53.14214219901431],[-126.9942808990929,53.14196231645283],[-126.9942635838475,53.14178317837153],[-126.99424905666822,53.141603452097975],[-126.99423641723705,53.141423718906054],[-126.99421161269174,53.141244643703935],[-126.99415501657045,53.14106751193014],[-126.99411432914042,53.14089025540613],[-126.99411665646863,53.140709831631575],[-126.99417901693775,53.14053450599638],[-126.99427517375031,53.140362257854015],[-126.9943300698314,53.140188115350625],[-126.99430245128941,53.14000849895436],[-126.99425985234171,53.139829573177224],[-126.9942088488925,53.13965128274312],[-126.99418501546202,53.13947331973204],[-126.9942117204571,53.139294931997114],[-126.99425527794831,53.13911583786192],[-126.99428947172227,53.138937387132025],[-126.99432273653882,53.138758944179926],[-126.9943456845632,53.13857946738753],[-126.99434988135721,53.138399592399054],[-126.99436721219199,53.1382201627775],[-126.99441542809919,53.138040473525706],[-126.99444027198915,53.13786265700594],[-126.99438375854292,53.13768889488372],[-126.99427769048698,53.137517781309896],[-126.99421834904356,53.13734347810868],[-126.99422536211475,53.1371635793359],[-126.9941828339215,53.13698689373159],[-126.99418235795049,53.13680704890041],[-126.99415285524883,53.136627456954734],[-126.99417303961566,53.136450244256785],[-126.99425411737872,53.13627419606487],[-126.99426220325766,53.13610044657473],[-126.99411893267121,53.13593973912202],[-126.99393955542025,53.13579669854512],[-126.99374809460552,53.13565767656449],[-126.99355757883347,53.13551865530071],[-126.99338467327738,53.13537163319943],[-126.99321454361669,53.13522347597438],[-126.99298991422314,53.1351071417778],[-126.99275143641941,53.13499877602757],[-126.99256834973077,53.134856885026196],[-126.99236207998142,53.13472415243932],[-126.99221157995458,53.134574699603],[-126.99212422369553,53.13440231542546],[-126.99205082262195,53.134226443593555],[-126.99197177980325,53.134049507452744],[-126.99195922902577,53.13387368998241],[-126.99203655385571,53.13369711878404],[-126.99217892985125,53.13354017138549],[-126.99242057887066,53.13342497098816],[-126.99259146668524,53.13328626805655],[-126.9926557095835,53.13311092666649],[-126.99270105885009,53.132929020616444],[-126.99279632663908,53.1327595861163],[-126.99295932845513,53.132604140838346],[-126.99317273376212,53.132481896922215],[-126.99344721002956,53.13240955450401],[-126.99374006858041,53.13236227337439],[-126.99404291756112,53.132341800236716],[-126.99430828312822,53.13227962607906],[-126.99451868306556,53.13214955226529],[-126.99474624577518,53.13203278903175],[-126.9949557522715,53.13190496297233],[-126.9951500860853,53.13176830890736],[-126.99532168948589,53.13162119626616],[-126.99548385445067,53.131470236455094],[-126.99565451391896,53.13132257544845],[-126.99584694257672,53.13118537144284],[-126.99606593505821,53.131062510293425],[-126.99630685472566,53.130956827753046],[-126.99657940436607,53.13088281779318],[-126.99685389271838,53.130811031915016],[-126.99713421837225,53.130749280949814],[-126.99742339654182,53.13070538314309],[-126.99772165194027,53.130688865527446],[-126.99802014275403,53.130682985726764],[-126.99831753328526,53.130669826529505],[-126.99860076382537,53.13061197387865],[-126.99886753455688,53.13053071943864],[-126.99913237781439,53.1304478043525],[-126.99940881025441,53.13037935763813],[-126.99970197868322,53.13034607002004],[-127.00000079725996,53.1303541845816],[-127.00023716470962,53.13037347605299],[-127.00053360670583,53.130399546829004],[-127.00083467229491,53.13038355334468],[-127.00104522808398,53.130261309936124],[-127.00118564761993,53.130102691261776],[-127.00134211714214,53.1299495302132],[-127.00151841879173,53.12980405369348],[-127.00172407053837,53.12967288626729],[-127.0019975857493,53.129600540722706],[-127.00221653884479,53.12947710344351],[-127.00221047953039,53.129300110728494],[-127.00227749027854,53.12912530463168],[-127.00241413095362,53.12896558685328],[-127.00250181047147,53.128793967007056],[-127.00259980335535,53.128623371217024],[-127.00279223875415,53.128487275888304],[-127.00303213074926,53.12837935584464],[-127.00327206281473,53.1282725465264],[-127.00348627853779,53.128147470583556],[-127.00368434938619,53.12801301119265],[-127.00386348988313,53.12786918311093],[-127.00405870466815,53.12773249726131],[-127.00425865675183,53.12759857665972],[-127.00439622864131,53.12743885740759],[-127.00441821103334,53.12726050585238],[-127.00441486336975,53.127080128325325],[-127.00449118051183,53.12690355633198],[-127.00477081963965,53.126853553778275],[-127.0050691779409,53.1268426191433],[-127.00536032822598,53.126883280640634],[-127.00565058908438,53.12692619902081],[-127.00594922686214,53.126927020921315],[-127.00624774324618,53.12692336096286],[-127.0065448950457,53.12694043727069],[-127.00684292245904,53.12695527327459],[-127.00714173191034,53.126963934447154],[-127.00744035655669,53.126964187947536],[-127.00773415048498,53.12699810686196],[-127.00799368838686,53.12708665846726],[-127.00821098745209,53.12721030616256],[-127.00851325916015,53.12728504592341],[-127.00872166915971,53.127192505273214],[-127.00897814628968,53.12707378188156],[-127.00926100844721,53.127041669746184],[-127.00955311084907,53.127003884344084],[-127.00985164070764,53.12700077096255],[-127.01014962952956,53.12701391369195],[-127.01044683718766,53.12703322977256],[-127.01074482642248,53.12704637100222],[-127.01104276237288,53.1270572708672],[-127.01134155992321,53.12706535679433],[-127.01164027904244,53.127069525246085],[-127.01193649601197,53.12704794203244],[-127.01223362929677,53.12702522969596],[-127.01253163252348,53.1270389310586],[-127.01283032479154,53.127041976198164],[-127.01312763158136,53.127026539127094],[-127.01341674096837,53.12698148182497],[-127.0137038306333,53.12693028265456],[-127.01396575502194,53.12684455294557],[-127.01419798805094,53.1267310728157],[-127.01435344140641,53.12657734668783],[-127.0145136341841,53.12642582075111],[-127.01462571290014,53.126259019843246],[-127.0146976522386,53.12605782655301],[-127.01484251488735,53.12593108344172],[-127.0150121410064,53.1257833931891],[-127.0151458961658,53.125622573095],[-127.01522223296642,53.125448790322054],[-127.0152778999713,53.12527183227681],[-127.01536363450546,53.125099653978914],[-127.01548418854236,53.12493557617164],[-127.01561888091241,53.12477530316741],[-127.01572436732735,53.12460688127816],[-127.01581478372768,53.12443521813762],[-127.01590711311364,53.12426466797476],[-127.01603141953284,53.12410112201165],[-127.0161510264763,53.123936495736224],[-127.01625932199887,53.12376860490464],[-127.01642043900604,53.12361762384268],[-127.01660424304418,53.123475976577986],[-127.01675496393099,53.12332061119214],[-127.016866082315,53.123153815982086],[-127.0169320810129,53.12297844433376],[-127.01693525185406,53.12279856600998],[-127.01692250683534,53.122618833497555],[-127.01696118407718,53.12243640872279],[-127.01693431490176,53.122291534370554],[-127.0169478413807,53.122075153858844],[-127.01696790993515,53.121897371207325],[-127.01696374231099,53.12172372333414],[-127.01693314519748,53.12150211949795],[-127.01700488795021,53.121371519841034],[-127.01719531882854,53.12123317600803],[-127.01741515315133,53.121111386981],[-127.01764354866592,53.12099569130794],[-127.01788243193577,53.12088773972207],[-127.01813468398208,53.12079088690818],[-127.01840812719652,53.12071905873301],[-127.01868835606733,53.12065669157741],[-127.01895789282885,53.12057817251473],[-127.01922745553844,53.12050077314348],[-127.0195028204346,53.12043116691302],[-127.01977333643617,53.120354878597304],[-127.02004289623599,53.12027747735763],[-127.02031440746471,53.120203420279395],[-127.02059169409301,53.12013603597231],[-127.020870932291,53.12007199578291],[-127.02114048828663,53.11999459202907],[-127.02135936320214,53.11987224792837],[-127.02156870228129,53.119743253566135],[-127.02179804931318,53.119628661941604],[-127.02203788452847,53.11952181403816],[-127.02230163134112,53.119436613975175],[-127.02260001243542,53.11942955180298],[-127.02288757521085,53.11947805381664],[-127.02313957219927,53.1195649523675],[-127.02346763660904,53.119507771494376],[-127.02371604336226,53.11940756920741],[-127.02394536912722,53.119292408761154],[-127.02415471111692,53.119163974415024],[-127.02430350390439,53.11900805060815],[-127.02443531602164,53.11884723574108],[-127.02463421990537,53.11871272344027],[-127.02486640821263,53.11859977739193],[-127.02510237733259,53.11848903918085],[-127.0252814185342,53.11834574253683],[-127.02543868576831,53.11819254056675],[-127.0255215366824,53.11801982296008],[-127.02554434134731,53.117840338057135],[-127.02559339774832,53.117663422315026],[-127.02565169558305,53.11759736926508],[-127.02576579517853,53.11751682081771],[-127.02604988407147,53.11746056982183],[-127.02634494899766,53.11743279227837],[-127.02648534756923,53.11739516030167],[-127.02657913149427,53.117325992856216],[-127.0266018770275,53.117144267060304],[-127.0266125054369,53.11696488753658],[-127.02666529903415,53.116787938767416],[-127.02676600872263,53.11661842665506],[-127.02683852555356,53.11644411233734],[-127.02687726306323,53.11626616493062],[-127.02691601392985,53.11608878212975],[-127.02698484292965,53.11599405845661],[-127.02711399620046,53.11595540278386],[-127.02738931860985,53.115885778012824],[-127.02761113018117,53.11577067527015],[-127.02782600317424,53.11563994476008],[-127.02808300913385,53.1155480666248],[-127.0283573298122,53.115476207163944],[-127.02861591438034,53.115411207236136],[-127.02892644144917,53.11536535981425],[-127.02922258151686,53.11534429780434],[-127.0295059774626,53.115337348371845],[-127.02981655367373,53.115332402621284],[-127.03011512247039,53.11533428395082],[-127.03041391044924,53.115344562238626],[-127.03070847633245,53.11537393484641],[-127.03100354673056,53.11542402796747],[-127.03133057691356,53.11551866348242],[-127.03144633040178,53.11535293328594],[-127.03153480708713,53.115181273435525],[-127.03158570687629,53.11500434758094],[-127.03155328852921,53.11482589857179],[-127.03144069362544,53.11465991923743],[-127.0312834899331,53.114506654920284],[-127.03106711682797,53.11438304064683],[-127.03081215781962,53.114288896644155],[-127.0306004454847,53.1141641203403],[-127.03044603248954,53.1140102747919],[-127.03031577036185,53.113848365780065],[-127.03021992845657,53.113678321826924],[-127.03014644616053,53.113504156568084],[-127.03000689754069,53.11334568975186],[-127.02982933876947,53.11320156519277],[-127.0295973377761,53.11308873405092],[-127.02933782675217,53.112999664523855],[-127.02908931415455,53.112900422728615],[-127.02886850133687,53.11278636327146],[-127.02876514214242,53.11261469822218],[-127.02858957055564,53.11247503670835],[-127.02835013295187,53.11236394417612],[-127.02812457325635,53.11224657194384],[-127.02790175945879,53.11212692534907],[-127.02767250065871,53.11201126076252],[-127.02742672894519,53.11190918582315],[-127.02716448503634,53.11182238538074],[-127.02689497469146,53.11174460290251],[-127.02664282782936,53.111649305013884],[-127.02643477333578,53.111520572085055],[-127.02629058854279,53.11136270589135],[-127.02614364625327,53.11120653979226],[-127.0259305861433,53.11106383807989],[-127.025768236305,53.11092853985004],[-127.02568729279471,53.11075443648838],[-127.02571479012755,53.110576030615924],[-127.02562920316679,53.110403652780946],[-127.0255529597723,53.110230064306144],[-127.0254841592955,53.11005529962389],[-127.02542188815384,53.10987934874153],[-127.02537363079267,53.10970216468144],[-127.02531228865162,53.10952620565714],[-127.02531536340352,53.10930487488801],[-127.02550882928325,53.10921859079532],[-127.02580277382596,53.109185229914445],[-127.02609473690812,53.10914795908893],[-127.02637779916651,53.10909059491059],[-127.02663860540223,53.109002603708504],[-127.02691875709688,53.10894134604715],[-127.02717476774995,53.10884891309248],[-127.02740307183466,53.10873263300631],[-127.02758393352569,53.108589871636376],[-127.02769591364917,53.10842305667703],[-127.0277515333862,53.10824721138814],[-127.027724722031,53.10806759153867],[-127.02768018529932,53.10788981106978],[-127.02770578798058,53.10771086503482],[-127.02771265381281,53.10753095235189],[-127.02773731319796,53.10735201447153],[-127.02771424428805,53.107172361997854],[-127.02772767932595,53.10699295690501],[-127.02772051945384,53.106813730843044],[-127.0277761098133,53.10663676506705],[-127.02777465888853,53.10646085099159],[-127.02786841292316,53.10631436401987],[-127.02782400390558,53.10610352155022],[-127.02779817608837,53.10592614302715],[-127.0278209509174,53.1057460918249],[-127.02782123357751,53.10556512458136],[-127.02780387295815,53.10538934873289],[-127.02784819530862,53.105210795423844],[-127.02775617856727,53.105042947783225],[-127.02758234952603,53.10489654600991],[-127.02738541566005,53.10476155032888],[-127.02718015210034,53.10463055312246],[-127.02696382768843,53.10450636601302],[-127.02669967833029,53.10441621947834],[-127.02645041477035,53.104322572472114],[-127.0263508954764,53.104153677278994],[-127.0261734282051,53.1040112224793],[-127.02597556007285,53.103876232567565],[-127.02577677744762,53.10374237081485],[-127.02556783649442,53.1036136438392],[-127.0253718292358,53.103478072014816],[-127.02517212249602,53.10334421726437],[-127.02495951147942,53.103218317950024],[-127.0247644374091,53.10308218123443],[-127.02454261067534,53.10296196383896],[-127.02432630272035,53.10283778074859],[-127.02410170544194,53.10271926288903],[-127.0239018168738,53.10257756369971],[-127.02367611855595,53.10245177545643],[-127.02349346124402,53.10232617885722],[-127.0233094849182,53.10218434088186],[-127.02310054550821,53.10205504479075],[-127.02291566929182,53.10191489034044],[-127.02278820414728,53.101750151394526],[-127.02278196842138,53.10156924034585],[-127.02283073381629,53.10138056524612],[-127.02281903457427,53.10120586000696],[-127.0226826511457,53.10105912694967],[-127.02249603171973,53.100924033874236],[-127.02227963188069,53.10079535664971],[-127.02205114940872,53.100669589381326],[-127.02182823818194,53.10054265295421],[-127.02161562414705,53.10041562710516],[-127.02136535976902,53.10031750486199],[-127.02108328428314,53.100258311569696],[-127.02078799520532,53.10023340416291],[-127.020485562842,53.100222013315175],[-127.02024621736396,53.1001893424046],[-127.02013408226378,53.09999981603925],[-127.0201559706382,53.09982089417114],[-127.0201993901903,53.09964291594875],[-127.02023251512544,53.09946446179401],[-127.02023848353421,53.099284556717],[-127.02019491521487,53.09910676453853],[-127.02005638056424,53.098947720875216],[-127.01994385946685,53.09878117342919],[-127.01987044520143,53.09860700032243],[-127.01982687912161,53.098429207940065],[-127.01971714501803,53.09826207144025],[-127.019523954156,53.09812478923337],[-127.01931137250855,53.09799831474615],[-127.01914873036823,53.09784788654423],[-127.01898699000589,53.09769632082051],[-127.0188012052771,53.09755561190808],[-127.01869613424408,53.09738731367862],[-127.01854462517045,53.09723286224209],[-127.01832559107937,53.09711036801858],[-127.01820658277182,53.096945551094535],[-127.01817237764558,53.09676767736029],[-127.01795702079244,53.09664235386296],[-127.01776015590958,53.096507341518134],[-127.01759472519234,53.09635749095803],[-127.01753065002829,53.0961821153078],[-127.01749550707449,53.096003684644664],[-127.01749493289822,53.095823844743215],[-127.01749622891639,53.095643979757234],[-127.01742841444405,53.09546863618787],[-127.01736713941328,53.095293236271125],[-127.01734133645806,53.09511416928241],[-127.01734637406788,53.09493428098588],[-127.01733737619753,53.0947545045318],[-127.017301292795,53.09457609074399],[-127.01742081152727,53.094411460446985],[-127.01763007874283,53.09428359140286],[-127.01788121689584,53.094186181150036],[-127.01812568069623,53.094083225061034],[-127.0182395436058,53.09391696622271],[-127.01826329380994,53.09373747229115],[-127.01828050520109,53.09355803467852],[-127.0182836681223,53.09337815333664],[-127.01826906927876,53.093198989787666],[-127.01827223243691,53.093019117372066],[-127.01827820825508,53.092839211736866],[-127.01825707114666,53.09266010447306],[-127.0181334060076,53.0924958920577],[-127.01791812453742,53.09237279987746],[-127.01768540725003,53.09226331313754],[-127.01738433631635,53.09226758193498],[-127.01709084257996,53.09223649162878],[-127.01679559838186,53.092211018452325],[-127.01649643837624,53.09221695386809],[-127.016212674248,53.09216281072459],[-127.0159496879238,53.092077668427514],[-127.01568580019799,53.09199420965358],[-127.0154209576028,53.0919102027034],[-127.01516892764313,53.09181375894962],[-127.01493614007622,53.09170090577634],[-127.01476799385287,53.09155331553837],[-127.01461927745949,53.091397149558325],[-127.01448635944305,53.091236374485526],[-127.01436551233724,53.09107156920065],[-127.01422609651017,53.0909130817542],[-127.01410246536388,53.09074942064132],[-127.01399928673675,53.0905805458535],[-127.0139473584983,53.09040337833146],[-127.01388890462928,53.09022739628832],[-127.01376899031979,53.09006258233992],[-127.01362958003904,53.089904094098806],[-127.01344383394277,53.089762820459796],[-127.01326087332258,53.08962095788047],[-127.01310938502499,53.089465378466045],[-127.0128867600459,53.089346822366544],[-127.01262468542193,53.08925998856858],[-127.0123553718811,53.0891832922867],[-127.01209787517672,53.08909193586992],[-127.01188444515151,53.08896657578107],[-127.01165997128274,53.088848042186136],[-127.01145576068089,53.088716999593714],[-127.01127558387807,53.088573433764594],[-127.01110836364583,53.08842470978749],[-127.01096154349466,53.088267967111825],[-127.0108212220476,53.088109483332154],[-127.01065393859558,53.08795796232485],[-127.01062361931088,53.08778453483556],[-127.01050846060292,53.087621917962124],[-127.01042945412024,53.087446100889416],[-127.01021527010893,53.087327476555814],[-127.00993332326595,53.08726937655169],[-127.00966674478572,53.087189289146394],[-127.00944907737829,53.08708133404349],[-127.00945040746488,53.086901477216195],[-127.00948451016373,53.08672301673281],[-127.00952793420616,53.08654391181373],[-127.00945833733694,53.08637026372394],[-127.00929020464756,53.08622154491179],[-127.00912858547328,53.086071084903374],[-127.00898547912976,53.08591318741442],[-127.00887210858266,53.08574663611811],[-127.0087792001946,53.08557598355421],[-127.00865186571072,53.085412348173925],[-127.00862428890262,53.085235534909145],[-127.00864620499621,53.08505605798916],[-127.00868686009777,53.084878097424834],[-127.0087593837447,53.0847032353853],[-127.00886198516507,53.08453483085725],[-127.0089843191782,53.084370748914914],[-127.00913584305019,53.08421481723994],[-127.0093736534473,53.08410857350386],[-127.00965558866493,53.08404957161882],[-127.00994341473583,53.084001733285135],[-127.01023520494367,53.08396393644577],[-127.01053098983037,53.08393619874143],[-127.0108148857421,53.08388110374227],[-127.01106121713762,53.08377982168528],[-127.01128468159973,53.083660814790456],[-127.01149581086354,53.08353406015562],[-127.011701220876,53.08340343660971],[-127.01190948209634,53.08327447359288],[-127.01210637576749,53.08313943998992],[-127.01232601378724,53.08301709315279],[-127.01259154342901,53.08293694295337],[-127.01286280188451,53.08286178108619],[-127.01314086542878,53.082797201102935],[-127.01342473704904,53.08274154411128],[-127.01371054605765,53.08268810196972],[-127.01399441620022,53.08263244360586],[-127.01427438664237,53.0825695298811],[-127.01452165639135,53.082469352906266],[-127.01472708039684,53.082339288540695],[-127.01493437129454,53.082209763559575],[-127.01518548592561,53.08211347857186],[-127.01540609081655,53.0819933586371],[-127.01562952015533,53.081873778755174],[-127.01581315946784,53.08173269402753],[-127.01598544444818,53.081586094847324],[-127.01615581830481,53.081437835465486],[-127.01633092657069,53.08129177621729],[-127.01643628706111,53.081123349684255],[-127.0163993182772,53.080946053588406],[-127.01643808069385,53.08076867067616],[-127.01655472492922,53.08060294382094],[-127.0166591418976,53.080433960354114],[-127.01666891615925,53.080256270963105],[-127.01666086661177,53.08007648484586],[-127.01664252646022,53.07989679623338],[-127.01666349181619,53.07971788094808],[-127.01665170321911,53.079538135918646],[-127.01667632574951,53.07935639218384],[-127.01692428440887,53.079285338601146],[-127.01720703452048,53.0793400531964],[-127.01750509562281,53.07933076291907],[-127.01771154349733,53.07920572217348],[-127.01785077583314,53.07904652261711],[-127.01793359614209,53.07887380637098],[-127.01795264404612,53.07869378665587],[-127.01786533848147,53.07852309208884],[-127.01777519479602,53.07835130133123],[-127.01764694542672,53.078189368075456],[-127.0175112736864,53.0780291749764],[-127.01743136750216,53.07785561041346],[-127.01729201215379,53.077697689910835],[-127.01714147897592,53.07754210662179],[-127.01700768081405,53.07738189678686],[-127.0168868619603,53.07721765755742],[-127.01681909278335,53.07704286748566],[-127.01674945480258,53.07686810241207],[-127.01663980355356,53.07670096087544],[-127.01654873976022,53.07652973279988],[-127.01664121690321,53.07636981616988],[-127.01670918630201,53.07620226640681],[-127.01675169570235,53.076025415378204],[-127.01676140131977,53.075844920205085],[-127.01668432761532,53.07567189536775],[-127.01652826231174,53.07551915575407],[-127.01640285132237,53.07535775237608],[-127.01627740113433,53.07519467282347],[-127.01617425146567,53.0750257894736],[-127.01603489678294,53.07486731154426],[-127.01586585771582,53.07471916490507],[-127.01567555644057,53.07458073017547],[-127.01547601632814,53.07444685684486],[-127.01530051238217,53.074301570877715],[-127.01515002702585,53.074146549271276],[-127.01502926467995,53.073983983865936],[-127.01478829078289,53.073876238527724],[-127.01489515322837,53.07377110737512],[-127.01499704466839,53.07361390783435],[-127.0150114232874,53.073433372459306],[-127.01518091956244,53.073289047560074],[-127.01542981838797,53.07314178970225],[-127.01542830336574,53.07307849496716],[-127.0150873404139,53.07312904546167],[-127.01479241545405,53.07315007357024],[-127.01450072423603,53.07311055339791],[-127.01421980673281,53.073053019837296],[-127.01401199395642,53.072924253136954],[-127.01389768271494,53.07275714886353],[-127.01379269254944,53.072588843896796],[-127.01358330693493,53.07247298098331],[-127.01328008806975,53.07249855881179],[-127.0129843847212,53.07252630357968],[-127.01268854014359,53.07250867019542],[-127.0124031100423,53.07245732969478],[-127.01212217446404,53.07239810600272],[-127.0118261440928,53.07237262806794],[-127.01153011407712,53.07234714939075],[-127.01124471316979,53.072296926427825],[-127.01098913560901,53.07220386584322],[-127.01075096542,53.072095532532224],[-127.0105192265058,53.07198209667348],[-127.01029667382451,53.07186241416861],[-127.01005943603137,53.07175350673074],[-127.00979296824312,53.0716739835525],[-127.0095346678326,53.07158374903392],[-127.00927262962145,53.07149353693042],[-127.00900873661494,53.07140390486329],[-127.00880297712084,53.07128184392695],[-127.0086608640135,53.07112393666279],[-127.00853536278048,53.0709569228116],[-127.00839416551553,53.07079844262692],[-127.00824184851307,53.070643427869065],[-127.00807840814363,53.07049298116913],[-127.00786972445076,53.070365896512],[-127.00763797607809,53.07025133454438],[-127.00740712951907,53.070135643862415],[-127.00722620959905,53.069996559746215],[-127.00716123499082,53.06981949887594],[-127.00698116615834,53.06967648063922],[-127.00682885657919,53.069522019777715],[-127.00669789246396,53.06936065334808],[-127.00656971410632,53.06919814245355],[-127.00644804500232,53.06903445537231],[-127.00627627967312,53.06888688299994],[-127.00610083022762,53.06874158290242],[-127.00593834707328,53.06859113401434],[-127.0057851312315,53.06843723529869],[-127.00567368736179,53.06827121916856],[-127.00548806245776,53.068129931278335],[-127.00530243700317,53.067989198903724],[-127.00512052618387,53.06784674928252],[-127.00491183782957,53.06771853886058],[-127.00465086675395,53.067632798762176],[-127.00435919639239,53.06759213307567],[-127.00405955877082,53.06757059309138],[-127.00379760899655,53.067522394110696],[-127.00377544613121,53.067336002816745],[-127.00380951551406,53.06715642175462],[-127.00377450752235,53.0669802337145],[-127.00361291324138,53.06682752393893],[-127.00340791973329,53.06669703832242],[-127.0031743872939,53.06658472393072],[-127.00290341880465,53.066510270647434],[-127.00261176935473,53.06647072109359],[-127.00231581251522,53.06644633958516],[-127.0020278116269,53.066402284306804],[-127.0017759486667,53.066305810712656],[-127.00159038490331,53.06616619257732],[-127.00149566624175,53.06599498357138],[-127.0014382396636,53.065818984927176],[-127.00141250689991,53.0656399115775],[-127.00128992750366,53.06547566205427],[-127.00103750159114,53.06539432387725],[-127.00073374258521,53.06539577775936],[-127.00043683648254,53.065410054904184],[-127.00000125343196,53.065370041835536],[-126.99986539467713,53.06535662474914],[-126.99960960849764,53.06525121521079],[-126.99931779582181,53.0652435997621],[-126.99901819803041,53.065262943180194],[-126.99871955526952,53.06528284252741],[-126.99843087434004,53.06524942524853],[-126.99814467540321,53.06520197465869],[-126.99784572956331,53.065208983301055],[-126.99754911374026,53.06523558599103],[-126.99724496837965,53.06526000140826],[-126.9969457117332,53.0652939041089],[-126.99667231315155,53.065353925727216],[-126.99644292852884,53.06545726865309],[-126.99624899665133,53.06559729985673],[-126.99606744162615,53.0657473025035],[-126.99588383235533,53.06588948713875],[-126.99570777694758,53.06603496052542],[-126.9955326476236,53.06618043478509],[-126.99538457404789,53.06632343061989],[-126.99515513434426,53.06646431497052],[-126.9949000528884,53.06654883055503],[-126.99462005610138,53.06660665276745],[-126.99433047485357,53.06665503464169],[-126.99403995283424,53.066702867914834],[-126.99375235932183,53.06675571390641],[-126.99347629280093,53.06682246486215],[-126.99321084112074,53.066903137495174],[-126.99295217390647,53.06699383760296],[-126.9926973207916,53.067088431545635],[-126.99244151302194,53.067181903412234],[-126.99218473782635,53.06727370646634],[-126.99192891481918,53.06736662151955],[-126.99167882913626,53.06746509067338],[-126.99143448071938,53.06756911396316],[-126.99118647126014,53.067676529163464],[-126.99095641967526,53.06779275769588],[-126.9907688235584,53.06792543813186],[-126.99065676601472,53.06809054589317],[-126.99059181696383,53.06827150216583],[-126.990546475448,53.06845117336172],[-126.99053022982322,53.06863620333554],[-126.9905083240483,53.06881903962096],[-126.99044968569704,53.0689904134912],[-126.9903034937613,53.06913507205216],[-126.99005559003827,53.06924753082965],[-126.9898180647657,53.069363819592674],[-126.9896804694986,53.06951680504746],[-126.98961269153814,53.06969666371811],[-126.98958512115998,53.069877306012636],[-126.98962105404382,53.070055175071055],[-126.98965889582955,53.070234713440016],[-126.98966682888127,53.07041449343445],[-126.98963504923799,53.070575000737726],[-126.98964066755333,53.070776099819135],[-126.98963828771296,53.07095428980356],[-126.9895610018185,53.07112806034521],[-126.98943299693174,53.071291059008814],[-126.98924285644722,53.07143608412398],[-126.98899921240147,53.07153113147143],[-126.98869565698698,53.071543193202174],[-126.98840758344507,53.07149686414622],[-126.98814292283234,53.07141279508691],[-126.98787821289928,53.07132591995552],[-126.98759811585494,53.071261028409396],[-126.98731243772575,53.071197303422835],[-126.98702407929989,53.07113920297666],[-126.98673695044049,53.07109341777992],[-126.98645406894451,53.07106945192454],[-126.98608995810838,53.071170537387566],[-126.98588072481319,53.07129835213218],[-126.98568935380902,53.071350374792736],[-126.9854123990725,53.07138069989877],[-126.98510632042895,53.07140454387269],[-126.9847631073543,53.07139899721512],[-126.98449536839291,53.07142364050037],[-126.9842307870127,53.071503164535294],[-126.98398839636363,53.0716127583414],[-126.98376837196898,53.07171936841559],[-126.98394969792642,53.07200024023101],[-126.98398934774751,53.07217807963952],[-126.98400018574262,53.072362882436394],[-126.98402952095746,53.072539687164344],[-126.98405238583742,53.072719342703024],[-126.98396935084178,53.0728875632349],[-126.9837840603064,53.0730409385567],[-126.98363690258721,53.07318616103184],[-126.98340691928429,53.073306855755064],[-126.9831838206535,53.07344261582645],[-126.9829675755529,53.07355143386949],[-126.98276876420118,53.07368643519741],[-126.98262085496341,53.07383949753375],[-126.98252291927726,53.07401120252003],[-126.98238354497026,53.07416924053354],[-126.98220834924818,53.07431525004573],[-126.98202086540584,53.0744551938617],[-126.98182392936461,53.0745907426417],[-126.98161467920741,53.074719105270596],[-126.98139213182567,53.07483916929068],[-126.98113883460547,53.074963414738676],[-126.98089711995111,53.07502257086187],[-126.9805825166394,53.075042556130235],[-126.9802856398119,53.07506126392264],[-126.98000673571076,53.075089351110975],[-126.97969188557839,53.07509868623129],[-126.97942153046435,53.075132303934154],[-126.9790940050867,53.07516023629693],[-126.97882286390335,53.07520001774091],[-126.97855165887358,53.07527790712656],[-126.97830522153744,53.07537575188425],[-126.97809029466694,53.07550247874791],[-126.97786472976648,53.07561359645235],[-126.9775880019766,53.07569544676937],[-126.97732656502279,53.0757917372001],[-126.97706336055359,53.07589252389844],[-126.97680108285802,53.07595240636494],[-126.97658776165461,53.07598610165926],[-126.97639188416179,53.0760062146239],[-126.9762516029015,53.07608581327571],[-126.97607231811904,53.07617693964567],[-126.9759900307803,53.0762577351084],[-126.97587138377298,53.07630241718011],[-126.9757324419423,53.07635903712825],[-126.9754776246133,53.07637795006812],[-126.97528374513072,53.07636274256196],[-126.9750719430909,53.07630061917853],[-126.97478185363053,53.07624866175334],[-126.97451140078772,53.07619710638535],[-126.97412097078063,53.07621377342569],[-126.97390239422747,53.07630409990644],[-126.97364693197194,53.07633534036338],[-126.97333213149368,53.07638835983822],[-126.97303351622031,53.07653593686844],[-126.97288752154469,53.07669289706276],[-126.97273190796531,53.07683816591274],[-126.97267992232426,53.07697642270459],[-126.97273497009664,53.07721633372309],[-126.97260172533979,53.07735862122521],[-126.97248228551904,53.07740946492641],[-126.97233703328854,53.07743587765359],[-126.97204735271752,53.0774842045898],[-126.97176253268468,53.07754033473168],[-126.97149605804836,53.07762152138064],[-126.97123245652122,53.07770605443252],[-126.97095731547141,53.07777667027761],[-126.97068011148359,53.077838893757985],[-126.97038369789331,53.07787887219101],[-126.97009109968705,53.0779221712509],[-126.96980711191961,53.07797437231563],[-126.96954238532922,53.078050502108084],[-126.96930747473748,53.07816336503607],[-126.96906969974121,53.07827400986293],[-126.96880701873683,53.0783579650865],[-126.96853476876339,53.0784330337127],[-126.96825771037729,53.078501973568],[-126.96797865379149,53.078565335318025],[-126.96768999221226,53.07861756055036],[-126.96738981813701,53.07865699742989],[-126.96709628435279,53.07870030560996],[-126.96693180655126,53.07874535369376],[-126.96689219304524,53.07881234654394],[-126.96685785586966,53.0789874343442],[-126.96684699970787,53.079208837496395],[-126.96675860186289,53.079350750983934],[-126.96677198496603,53.079527689279836],[-126.96682936516703,53.07970650860131],[-126.96685399258602,53.079884475386386],[-126.9667766226237,53.08005935046898],[-126.96674884612172,53.08023550496635],[-126.96680712904272,53.08041319629105],[-126.96684124613739,53.08059725288352],[-126.96677588257353,53.080765306293166],[-126.96656640323897,53.080886919734404],[-126.96631733611079,53.080995409943796],[-126.96606912086871,53.08109997518572],[-126.96581413782313,53.081194501263596],[-126.96555913888685,53.081289035870945],[-126.96532506564373,53.081398521931646],[-126.96510343047964,53.081520787794695],[-126.96489601420988,53.081651910489896],[-126.9647131356829,53.081792352659896],[-126.96457369261405,53.08195204511139],[-126.96445314026293,53.082119436002195],[-126.96429625530506,53.08225237718119],[-126.96404989756351,53.0823569228441],[-126.96378541332956,53.08244536334603],[-126.9635206202417,53.082520914918064],[-126.9632420899077,53.08260891293583],[-126.963036800599,53.08271031571991],[-126.96277776760398,53.08283344661442],[-126.96253230691661,53.082936296398884],[-126.96225887090438,53.083043290963964],[-126.9621977991449,53.0831950629439],[-126.96227666120855,53.083373709031875],[-126.96241187491627,53.0835631015544],[-126.96241120948571,53.083740154218454],[-126.9622548610886,53.08389662864832],[-126.96200352676917,53.0839888753241],[-126.96172934825177,53.084062822784524],[-126.96145136318798,53.084134559471075],[-126.96118770116618,53.08421906979485],[-126.9609593243786,53.08433353845574],[-126.96075480802719,53.08446966786642],[-126.96054165258165,53.08459634693432],[-126.96029118952406,53.08468578588826],[-126.96001196613184,53.08474408256312],[-126.95971840783822,53.084788483643436],[-126.95942485951768,53.08483401342251],[-126.95915354450277,53.08491129318853],[-126.95889458057356,53.08499687172822],[-126.95862210594254,53.08506463946502],[-126.95832929426606,53.08510118714591],[-126.95803355828261,53.08513216402117],[-126.95772817858371,53.08515088330746],[-126.95742660429093,53.08517182103011],[-126.95716247246918,53.0852361471464],[-126.95694725551287,53.085354992407524],[-126.95675316537114,53.085497753521615],[-126.95654861717038,53.0856333109074],[-126.9563125992125,53.08574223840973],[-126.95605471626047,53.08583508990133],[-126.95578817217311,53.08591680538662],[-126.95548958217002,53.08598812971367],[-126.95525560223435,53.08606285733413],[-126.95507466893004,53.08620887083676],[-126.95492389197337,53.086365845809276],[-126.95478438694887,53.08652441478631],[-126.95465053896665,53.08668573475849],[-126.95452422280943,53.086848670050834],[-126.95440449399464,53.08701380203744],[-126.9542903869155,53.087179444268],[-126.95417817421442,53.08734619161548],[-126.95406878345942,53.08751403659562],[-126.95396127687599,53.087681866239535],[-126.95385657958667,53.08785022887588],[-126.95375470452161,53.08801969812821],[-126.95365564107023,53.088189135613284],[-126.95356032973758,53.08835910746862],[-126.9534753611297,53.088531236860725],[-126.95343075580263,53.08871032852733],[-126.95337955928059,53.08888778803381],[-126.9532663981969,53.08905397718447],[-126.95307973186156,53.08919611604502],[-126.95282066668118,53.08927888468613],[-126.95254552056322,53.08935393855623],[-126.95230856897804,53.08946397668822],[-126.95205153192276,53.0895545710835],[-126.95178780480131,53.0896384955171],[-126.95152122858781,53.08972020120003],[-126.95124985544682,53.08979690691189],[-126.95097653557546,53.089870257054685],[-126.9507060880973,53.0899469540459],[-126.95044900943188,53.090035304123255],[-126.9502523644969,53.0901915209239],[-126.94998161227977,53.09025476315879],[-126.94969096634077,53.09030640340801],[-126.94944812814508,53.09040472171108],[-126.94938842921546,53.090578885846924],[-126.94937096758441,53.09075943386836],[-126.94937405084576,53.090939261018924],[-126.94940611753786,53.09111829053708],[-126.94948933315733,53.09132604321648],[-126.9493222028999,53.09138060737283],[-126.9490061571892,53.09142572661861],[-126.94877661590468,53.09153346573648],[-126.94858809084496,53.09167728835027],[-126.94837208977502,53.091805078782635],[-126.9481021670666,53.091863836679906],[-126.94781318227746,53.09182300948203],[-126.94745282797665,53.09176931626016],[-126.94724414040341,53.09172224113331],[-126.9471400000144,53.09166592813746],[-126.94700800627828,53.09161880261972],[-126.94670761521054,53.09156966454754],[-126.94641675111714,53.09152829322104],[-126.9461220097125,53.091480793717786],[-126.94602114133549,53.091487203994745],[-126.9458012267692,53.09152370119795],[-126.94556791684455,53.091462817885215],[-126.9453077871989,53.091373570321785],[-126.94505776527663,53.091275841758815],[-126.94482515477476,53.09116228584693],[-126.94462485534413,53.09102998670439],[-126.94446973173793,53.090909643174484],[-126.9443801028365,53.090875066865095],[-126.94411359067811,53.090792590962465],[-126.94401167611646,53.09075194506025],[-126.94376614690438,53.09068835895754],[-126.94363374331785,53.09066419963638],[-126.94334063650643,53.090648055414945],[-126.94303687573262,53.09069921914304],[-126.94274596921784,53.090739638850955],[-126.94246094670036,53.09079233688602],[-126.94217695328885,53.0908489524048],[-126.94185951643739,53.090916474477545],[-126.94167817109752,53.09083667589492],[-126.94169479734684,53.090616361132504],[-126.94159777475267,53.090164434732436],[-126.94134159088226,53.08995693419051],[-126.94105417676873,53.08964883286897],[-126.94093835740607,53.08944525145849],[-126.94066553804609,53.08928887112694],[-126.94042827811121,53.08913331874406],[-126.94013570555967,53.08892946679784],[-126.93988524703006,53.08876898036982],[-126.93961363579396,53.08858233331283],[-126.93948342697294,53.08844609751078],[-126.93938017005266,53.08834439313313],[-126.93934215925796,53.08827465681335],[-126.9395322782038,53.087991332820515],[-126.93964079750579,53.087824064534146],[-126.93973896106101,53.08765408160732],[-126.93982211623342,53.08748142107286],[-126.93991184562381,53.087310384496945],[-126.94001564191066,53.08714147701043],[-126.94013187337683,53.08698479646662],[-126.94020071941645,53.086799914465075],[-126.94023045567768,53.0866226316524],[-126.94024852983833,53.08650987747436],[-126.94027933907759,53.08646536626306],[-126.94031268772335,53.086408517794275],[-126.9403217551437,53.086269497958625],[-126.94035332317706,53.086090515175414],[-126.94041020567913,53.085914136729954],[-126.94047269525745,53.08573827835996],[-126.94051646202819,53.08556088367217],[-126.94053585403773,53.08538144188938],[-126.94053373615975,53.08520160655749],[-126.94051386131721,53.08502192152327],[-126.94015381846637,53.08493738437757],[-126.93986121077444,53.08489937268695],[-126.93956689488022,53.08486865292953],[-126.93927516871501,53.08482783589981],[-126.93898105217757,53.08480607747598],[-126.93868041089004,53.084827515678384],[-126.93850735806119,53.084825528780044],[-126.9383882514756,53.08480966662681],[-126.9381016509092,53.0847475156216],[-126.93781786339002,53.084685332632795],[-126.93753417710406,53.08466965531522],[-126.93725339922457,53.08474359793936],[-126.93711816670758,53.08476035826914],[-126.93696117729566,53.08476552973119],[-126.93666072296574,53.08475278017185],[-126.93635817392466,53.08477255124726],[-126.93607877162071,53.084739463541204],[-126.9358213153165,53.08464177444785],[-126.93552810732456,53.08461832391799],[-126.9352245668499,53.084635858854476],[-126.93493170499272,53.084628091747916],[-126.9346549213476,53.084543999619555],[-126.9343934703558,53.084434568828236],[-126.93422626835927,53.08440059833124],[-126.9339806727549,53.08458574476495],[-126.9338760371295,53.084633078989185],[-126.93371193777531,53.084655101550446],[-126.93341321416182,53.08467875227598],[-126.9331141082471,53.08468504129271],[-126.93283304229486,53.08461834271505],[-126.93254645342913,53.08464133964913],[-126.93226071632974,53.084702418734544],[-126.93198259118607,53.08477016931106],[-126.93168428419763,53.084812861627356],[-126.93138520148793,53.0848202576551],[-126.93114480923035,53.08473195305354],[-126.93093051632499,53.084597491021874],[-126.93069244420131,53.08448731211726],[-126.93042509331802,53.084406497477495],[-126.93014772159869,53.08433808712212],[-126.92986052813072,53.084290487982436],[-126.92956885202095,53.08425132302117],[-126.92928247671249,53.08419866911287],[-126.92899519917019,53.08414714215346],[-126.92870472218877,53.084120291633425],[-126.92840692963476,53.084143357643974],[-126.92810909747665,53.08416531163172],[-126.92781289245765,53.08417548188871],[-126.92751941979719,53.08414024341849],[-126.92724390274925,53.08407013539196],[-126.92696570882508,53.08400620624195],[-126.92667751743933,53.0839558013884],[-126.9263858342371,53.08391606390451],[-126.92609087391989,53.08389820648842],[-126.92579089385617,53.08390672494476],[-126.92549390645969,53.08392417458535],[-126.9251979808175,53.08394778263785],[-126.92490022431389,53.083972524822975],[-126.92460380951874,53.083973724330995],[-126.92431310464598,53.08393622414096],[-126.92402221712331,53.08389031610578],[-126.92363739813372,53.083781826505245],[-126.9233655659141,53.083709439594706],[-126.92310186388633,53.08362353304979],[-126.92283003626828,53.0835505801256],[-126.92255817025624,53.083476506336304],[-126.92229541393579,53.08339059958392],[-126.92203540713585,53.083302420741475],[-126.92177081680025,53.08321876823137],[-126.92150349091357,53.08313793334704],[-126.92122622984411,53.08307286294497],[-126.9209363154388,53.08302861610793],[-126.92064290796283,53.082995045431225],[-126.92034603796571,53.082974947526786],[-126.9200500134561,53.082950360119256],[-126.919754871067,53.08292296822833],[-126.91945975043461,53.082897251766546],[-126.91916270240246,53.08286818793436],[-126.91886600389897,53.08285592879248],[-126.91857097591176,53.082877272222454],[-126.91825080877146,53.08290329247623],[-126.91802594771677,53.08296946668802],[-126.91774695967493,53.082954270240975],[-126.91740855012424,53.08300227601632],[-126.91712054496513,53.08304541634799],[-126.91685643308395,53.08306987711242],[-126.91667725027821,53.08321581753596],[-126.91649100745524,53.083381982201175],[-126.91625456310193,53.083474580069435],[-126.91601277120064,53.08358010066849],[-126.91571701497102,53.08361097165179],[-126.91543988535531,53.08368202812679],[-126.9152435003776,53.083811856173384],[-126.91520710020605,53.08398806325544],[-126.91519143528203,53.08417250927361],[-126.9151391447696,53.084349404133775],[-126.91507655220242,53.08452524923385],[-126.91514022589227,53.08478920388105],[-126.91508720593438,53.08488934272864],[-126.91502034957247,53.08495429612998],[-126.91480613961588,53.08508145550801],[-126.9145824093455,53.08520084438515],[-126.9143927240577,53.08533789800448],[-126.91421066242104,53.085481615556475],[-126.91397097845442,53.08555518448806],[-126.91364518745851,53.085582356087514],[-126.91335240589403,53.085622153353796],[-126.91307131424017,53.08568371457475],[-126.91279508521129,53.08575364608776],[-126.91250088922013,53.08577160609738],[-126.9121997095294,53.0857688848123],[-126.91208126069279,53.08578324571536],[-126.91189853007003,53.08576617172255],[-126.91179152114793,53.08570368255358],[-126.91154329604917,53.08564117126846],[-126.91141466376361,53.085617511701784],[-126.91133092657272,53.08559350572246],[-126.91123910401276,53.08558524960484],[-126.911081446437,53.08555957244698],[-126.91080579347984,53.085613242539615],[-126.91054175663471,53.08568530689197],[-126.91023781904481,53.08577225402364],[-126.90998905284421,53.08585876649322],[-126.90977629735285,53.085836317763956],[-126.90955201439148,53.08571309984971],[-126.90933060536389,53.085592665224404],[-126.90907518652342,53.08549938482052],[-126.90880242853862,53.085426406955044],[-126.90852146505951,53.08536357641802],[-126.90825238898874,53.085287772112096],[-126.9080365238558,53.085163930841816],[-126.90784744636979,53.08502419579313],[-126.90766670558084,53.08488103477621],[-126.90745116035835,53.08472861172741],[-126.90732559336408,53.08458502641033],[-126.9071191561575,53.084464472681475],[-126.90687188085838,53.08435824329125],[-126.90660714601424,53.08426670541909],[-126.9063702250509,53.08416319240032],[-126.9061534168182,53.084038799143464],[-126.90586530701816,53.08394688310647],[-126.90567752845583,53.08382394272927],[-126.90544122878114,53.08370585607212],[-126.90518568639028,53.08360584501823],[-126.90495804731788,53.083499452237234],[-126.90480416908997,53.08334319935026],[-126.9046215876921,53.083200603555866],[-126.90443808917945,53.08305914400256],[-126.90425827476808,53.08291428537923],[-126.90408466452605,53.08275370039987],[-126.90382869002407,53.082677221084055],[-126.90371756767887,53.08264052854573],[-126.90361395746989,53.08256176265835],[-126.90324377125634,53.082522577613126],[-126.9029194824388,53.08244381276731],[-126.9026331435519,53.08238997374538],[-126.90245312219078,53.08232356077212],[-126.90239347817845,53.082288714844715],[-126.90223963448493,53.0821341346807],[-126.9019951005638,53.082067648914304],[-126.90171862679709,53.08194986156083],[-126.90143410002808,53.08189376474287],[-126.90114690774895,53.0818438550305],[-126.9008606345566,53.081792808110734],[-126.90058247156355,53.08172769640396],[-126.90031064430475,53.08165301565244],[-126.90001864505686,53.08159640763782],[-126.89971829263632,53.081587489971746],[-126.89945466993672,53.08163431893136],[-126.89918824209884,53.08172599025763],[-126.89890707270322,53.08178360114203],[-126.8986092566407,53.081805471721175],[-126.89832134418347,53.08185416816754],[-126.8980294689399,53.08189167966471],[-126.89773250815749,53.08191018886689],[-126.89743653372686,53.081931486695325],[-126.8971369171167,53.08195672884393],[-126.89684119089986,53.08198979343885],[-126.89656760243798,53.082052379107026],[-126.89632293695735,53.08215620466403],[-126.89610207704848,53.082280018847015],[-126.89591236878147,53.08241816338224],[-126.89573403220561,53.08256350039824],[-126.89561139355605,53.082645673697584],[-126.89550821434764,53.08267446928737],[-126.89521249358616,53.08270808549039],[-126.89492719644157,53.08265925791108],[-126.89462828530827,53.08262959085976],[-126.89446048085622,53.082653827967285],[-126.89437655165978,53.082709369749594],[-126.89425189764414,53.08287279142712],[-126.89376513693773,53.08271568195971],[-126.89349517639562,53.08263984198857],[-126.89321346816506,53.08258370412756],[-126.89292363371,53.082541638229216],[-126.89262930938249,53.08250800510214],[-126.89233411690023,53.082477174665804],[-126.89203804143618,53.082449155989444],[-126.89174048525388,53.08243964111409],[-126.89154431404596,53.08244896539714],[-126.89128759246456,53.082602730834545],[-126.89104555532772,53.082699246465616],[-126.89071862253296,53.08275997969753],[-126.89044014971002,53.08281362356515],[-126.89015019012446,53.08276481963001],[-126.8898541964592,53.08274072122935],[-126.88953215394915,53.082722976692885],[-126.8892768138236,53.0827204167584],[-126.88896964552056,53.08278771958652],[-126.88873737719217,53.082903761849614],[-126.88847921104147,53.082989179140235],[-126.88818054438529,53.08301607660879],[-126.88789258185997,53.082973984322116],[-126.88758673293526,53.08297011501088],[-126.88732783916817,53.082976541848275],[-126.88706551817074,53.08308664800377],[-126.8868438671656,53.08312977186016],[-126.88653127322583,53.08329571624215],[-126.8862844511864,53.08334294529921],[-126.88582757753171,53.08349596777482],[-126.88553866447893,53.08354239029291],[-126.88524506027609,53.08358773567614],[-126.88498289771161,53.083661414006016],[-126.88482248567274,53.08381668468809],[-126.88464028364845,53.083958116067855],[-126.88439634530852,53.084053511531046],[-126.88413835026142,53.0841478821676],[-126.8840574856506,53.08421628415762],[-126.88395558411595,53.08426242380452],[-126.88369513632952,53.08437418457766],[-126.88342461731371,53.08445072768207],[-126.8831617486624,53.084536168289006],[-126.88290081071062,53.08462384390612],[-126.8826303085899,53.084702061352665],[-126.88240461811557,53.08477601715014],[-126.88219282224317,53.08493391783956],[-126.88213511039406,53.084992051796725],[-126.88196977695034,53.085045951211285],[-126.88169166567683,53.08511750004938],[-126.88146646818323,53.08517072492367],[-126.8812071256362,53.08533625746858],[-126.88099741352566,53.085459403808564],[-126.88072694909799,53.08553985758177],[-126.88045734521761,53.08557100081379],[-126.88015412295024,53.08546960609931],[-126.87987661624136,53.085390994542855],[-126.87961112208258,53.08530501392052],[-126.87933758133575,53.08532665489442],[-126.8790073231159,53.08536441363937],[-126.87866298614347,53.08544484747597],[-126.87851379016298,53.085555769204376],[-126.87836941250457,53.08571876420498],[-126.87821831858865,53.085873956228376],[-126.87810678770713,53.08604230938132],[-126.87798957278781,53.086207898828285],[-126.87780157675057,53.08634207433031],[-126.87754851408677,53.086449848957834],[-126.87734921422548,53.086580190273615],[-126.87713766907268,53.086706695791634],[-126.87694127198823,53.086841496963466],[-126.8767590655243,53.08698460096749],[-126.87656266247483,53.087119957298505],[-126.8763530438166,53.08724869707237],[-126.8761960953238,53.08739272438068],[-126.87598386985687,53.087531567579305],[-126.8758271539265,53.08768624216747],[-126.87570424582569,53.087848509696656],[-126.87563586276607,53.088023819405926],[-126.8756180847302,53.088204912503265],[-126.87561896511082,53.08838307046798],[-126.87572078361379,53.088558804072036],[-126.87576280773501,53.088736657073426],[-126.87577773057563,53.088915831442456],[-126.87579172245508,53.08909556847559],[-126.87581600807484,53.08927523815841],[-126.87592048011516,53.08944309917654],[-126.87600727476746,53.0896150174829],[-126.87609218496566,53.089786949685426],[-126.87613889155723,53.089965332480354],[-126.87616223985411,53.09014444422028],[-126.87613411500556,53.09032225231337],[-126.87607511220226,53.09049973352524],[-126.87603296765204,53.090677654456634],[-126.87599924284217,53.09085606871885],[-126.8759730102331,53.091034983195456],[-126.87593273149844,53.091213445981495],[-126.87588496317697,53.091390843717285],[-126.8758221710146,53.09156611170447],[-126.8757340329726,53.091736529571925],[-126.87563093171771,53.09190704926319],[-126.87553813540987,53.09207805723948],[-126.8754528277419,53.09225013017216],[-126.87537784836826,53.09242381178903],[-126.87531226605172,53.09259965582599],[-126.87525042403301,53.09277548106689],[-126.87520111596972,53.092969132917254],[-126.87511359962078,53.09312497867531],[-126.87503958290316,53.09329976440476],[-126.87496177530917,53.09347290182351],[-126.87487835947654,53.093645524906265],[-126.87478460201133,53.0938159744411],[-126.87467111650508,53.09398265253044],[-126.87454141577635,53.09413376310135],[-126.87438594445106,53.0943052336777],[-126.87431178424957,53.0944733056596],[-126.87414473018471,53.09462748890863],[-126.87397602396193,53.0947923336052],[-126.87379815321002,53.094921388939284],[-126.87356384886344,53.09503461799109],[-126.87334468782764,53.09515725464902],[-126.8731226812055,53.09527767085293],[-126.87289592387377,53.09539419538725],[-126.87266536349982,53.095508515463365],[-126.87248225821281,53.0956555357823],[-126.87233629239839,53.0957899558806],[-126.87215147560292,53.095944831960054],[-126.87192211780602,53.09607202320255],[-126.87174832191695,53.09621785309298],[-126.87160644163694,53.09636848521699],[-126.87141764504369,53.096512748902065],[-126.87122818404946,53.09666989871974],[-126.87114935787793,53.09683967907046],[-126.87107912842048,53.097017795441715],[-126.87099380431839,53.09719042933214],[-126.87092255042285,53.0973646357613],[-126.87086913099152,53.097541507542985],[-126.87083163789801,53.0977199472014],[-126.87080912053263,53.097898841232244],[-126.87078848495409,53.098078277154805],[-126.87075848474574,53.09825721730413],[-126.8707247317127,53.09843562929342],[-126.87069004721565,53.09861461285898],[-126.8706562936101,53.09879302479269],[-126.87062536451892,53.09897197167051],[-126.87059442038586,53.0991509275951],[-126.87056160874293,53.09932933250313],[-126.87052411277418,53.099507771883346],[-126.87045566293287,53.099682512886496],[-126.87036471096779,53.09985406692793],[-126.87023954249113,53.10000009181978],[-126.87022765531025,53.10001306983674],[-126.87009061002927,53.10017262826766],[-126.869962031786,53.10033492998624],[-126.86983439537639,53.10049722461166],[-126.86970206579429,53.10065843308762],[-126.86956691029766,53.10081910640439],[-126.86942702342763,53.10097756433879],[-126.86931708184709,53.10113581081366],[-126.86913219278489,53.10128956146005],[-126.86894050977257,53.10143103600107],[-126.86880062211996,53.10158893733438],[-126.86870308120022,53.101759408777724],[-126.86862420111278,53.101927510907664],[-126.86846659997249,53.102088903514364],[-126.86831825958582,53.10224574577306],[-126.8681548257795,53.10239653133374],[-126.86797058323062,53.10253627320554],[-126.86775895340978,53.10266388113937],[-126.86754544376451,53.10279039091625],[-126.86735555068347,53.10292848797988],[-126.86715625660608,53.10306441264526],[-126.86697859379066,53.1032063366792],[-126.86674990655115,53.10332287158264],[-126.8669961344425,53.10342358893404],[-126.86728956135829,53.10354413780295],[-126.86740569482859,53.103687832740555],[-126.86752492929651,53.10384550681672],[-126.86770468742492,53.10398873448446],[-126.86785196358491,53.10414509081728],[-126.86798529362903,53.104306022481595],[-126.86807767612981,53.10447678359959],[-126.86811126919869,53.104655264253125],[-126.86809246683224,53.104833564929166],[-126.86805120229826,53.10501146579108],[-126.86807263886571,53.10519059145004],[-126.8680678981726,53.105369909322114],[-126.86805474249446,53.105549853711004],[-126.86804436244886,53.10572864821451],[-126.86803963313872,53.10590853068747],[-126.86806481194697,53.106087628780585],[-126.86812641267342,53.106263097827906],[-126.86815627687673,53.1064421614616],[-126.8681655723564,53.10662193190776],[-126.86813272176397,53.10679921503873],[-126.8681204709676,53.106978032125475],[-126.86807078122428,53.10715543885834],[-126.86803867428266,53.10732375230077],[-126.86806600121969,53.10742495401868],[-126.86800725404673,53.10761699391248],[-126.86760560929493,53.10774152294571],[-126.86730271190532,53.10779977142086],[-126.86704235400553,53.10787899695005],[-126.8667803303199,53.107968318763405],[-126.86662341363102,53.108118497957435],[-126.86640411907165,53.10823888013949],[-126.86617256601349,53.108354304906776],[-126.86591791874663,53.10843853286066],[-126.86569198788915,53.108554480215446],[-126.86552902875268,53.1086839680736],[-126.86540702062969,53.10884902141099],[-126.86517154801429,53.10895607343629],[-126.86489128540256,53.10902366986057],[-126.86459091495192,53.10906844657204],[-126.86430451862252,53.10906438238835],[-126.86398147298178,53.10905217700611],[-126.863701560848,53.10904525820313],[-126.86340748648898,53.10903171907567],[-126.86311597908862,53.10905233172647],[-126.86281774794567,53.10906403756703],[-126.8625192622015,53.10906397461517],[-126.86221995088009,53.109068954769036],[-126.86192394891496,53.10905262920575],[-126.86163223364566,53.10901665815657],[-126.86133523225632,53.10899753263654],[-126.86103993508202,53.10896942983635],[-126.86074468011698,53.108944122800075],[-126.86045116377937,53.108911523506634],[-126.86015672762244,53.108880050694964],[-126.85986179189896,53.10882392944984],[-126.85958571511857,53.10877495818102],[-126.85932474016583,53.10868664950021],[-126.85904482056637,53.10863265810777],[-126.85875749709028,53.10858264612419],[-126.85847023092767,53.108535429835676],[-126.85819655192803,53.10846570391523],[-126.85790235854324,53.10844598468061],[-126.85761422967083,53.10849513688133],[-126.8573201282076,53.108525847671466],[-126.85702161219332,53.10852408583238],[-126.8567231225848,53.10852288778778],[-126.8564250933901,53.1085452164655],[-126.85613876926732,53.108544493552046],[-126.85594889426473,53.10845454203075],[-126.85580336197238,53.108429823807796],[-126.85573816315255,53.108397800844536],[-126.85570090171531,53.108359973056416],[-126.85564516004602,53.10833292838674],[-126.8553987685928,53.108224901015916],[-126.85518112653249,53.10810377476401],[-126.85499953723459,53.1079605418108],[-126.85475607653534,53.10785809448363],[-126.85451074601686,53.10775566017333],[-126.8542654280638,53.10765379000532],[-126.85401643685168,53.10755529844801],[-126.85372461080793,53.107513706205715],[-126.85342771752482,53.10749848641005],[-126.85313077557369,53.10748158096713],[-126.85283145178413,53.107485417004646],[-126.85253208305467,53.10748702054261],[-126.85227560849378,53.10743452041688],[-126.85194396328714,53.107459885967266],[-126.85164792015446,53.10744072929899],[-126.85135884367352,53.107395749884596],[-126.85107700428385,53.10733839200459],[-126.85078899566646,53.10729956186356],[-126.85052991927748,53.10721122919345],[-126.85031163802324,53.10710354481928],[-126.85005043440005,53.10700233600599],[-126.8497559182518,53.10696580015073],[-126.84945826669876,53.106959531022156],[-126.84916019230708,53.10697848023855],[-126.84886307939064,53.10699910705094],[-126.84859022127019,53.107016188500204],[-126.84827300809773,53.106967486227866],[-126.84789954347306,53.10691301927671],[-126.84767626981252,53.10693030770135],[-126.84747823832522,53.10703985267551],[-126.8473548311856,53.1072317894244],[-126.84708940569699,53.10752726626828],[-126.84688560698237,53.10739482056014],[-126.84666526925145,53.107278189110666],[-126.84641637629404,53.10718360724519],[-126.8461436873104,53.107115522776034],[-126.84594267031349,53.106981943986646],[-126.84568365437063,53.10689527662288],[-126.84543012566584,53.10680296688321],[-126.84515097813055,53.106738852608046],[-126.84488093667079,53.106662902719506],[-126.84460543242027,53.10659372329492],[-126.8443235739394,53.10653466427619],[-126.84403628205725,53.10648461645752],[-126.84373862366888,53.106477777230644],[-126.84343947340025,53.106489996631325],[-126.84314693764347,53.10645846806652],[-126.84285518542106,53.10641964537358],[-126.84256168928408,53.10638644592507],[-126.84226419869177,53.1063880011652],[-126.84196637445807,53.106372759295475],[-126.84166785200556,53.106369838331325],[-126.84136951143104,53.106375323651086],[-126.8410702500553,53.10638193528206],[-126.84077172777772,53.10637902101781],[-126.84047484691936,53.1063637597211],[-126.8401754078391,53.106361406244986],[-126.8398628722191,53.10635914505766],[-126.83982601019518,53.10619861779619],[-126.83984289456521,53.106011927911524],[-126.839802874938,53.105834050608266],[-126.83972832909845,53.10566034482123],[-126.83963696777832,53.105487869963405],[-126.83953724022084,53.10531770443259],[-126.83943376772962,53.105148121175596],[-126.83931722588802,53.10497918638896],[-126.83917753574856,53.10482275042934],[-126.83892127913228,53.10473268720564],[-126.83875191233042,53.104589342776755],[-126.8386381403818,53.10441871135451],[-126.83860662009329,53.10424413477535],[-126.83864887987389,53.104063432172275],[-126.83866964322526,53.103883437826724],[-126.83865019138405,53.10370373774887],[-126.83863540908287,53.103523995557644],[-126.8386355492079,53.10334191541155],[-126.83856571520045,53.10316985157262],[-126.83846228896273,53.103001387511135],[-126.83834579740497,53.10283525704428],[-126.83821905811126,53.10267087541483],[-126.83808490334509,53.102509916728636],[-126.83790248603391,53.102368339807654],[-126.83772572666793,53.102228972497805],[-126.83765587985815,53.102055222888104],[-126.83760460441911,53.101875183270195],[-126.83749768714881,53.10171906870053],[-126.83730536854752,53.101549557061446],[-126.83694217435442,53.101348751241375],[-126.83667108831798,53.101264390726996],[-126.83639101459234,53.10119858618379],[-126.8361070859752,53.101174823103776],[-126.83581160172572,53.101228456630736],[-126.83551707814833,53.10123669726316],[-126.83521984901633,53.10120182091696],[-126.83493798438465,53.10113994292437],[-126.83468177015176,53.10105043498445],[-126.83444290203633,53.10093950527745],[-126.83422159399274,53.100817254963594],[-126.83400864652108,53.10069157473272],[-126.83379845496479,53.10056364261],[-126.83359011315164,53.100434567587996],[-126.83338453818844,53.10030379639833],[-126.83318082810906,53.1001718911888],[-126.83298081272602,53.10003828329732],[-126.83292393339497,53.10000002186413],[-126.8327826731336,53.0999040971098],[-126.83258822804035,53.09976819930808],[-126.83241230780511,53.09962209504132],[-126.83224657075165,53.099470872002],[-126.83207345121555,53.09932473853828],[-126.83185872012233,53.09920355801073],[-126.83160521655354,53.09910785703379],[-126.83146371449648,53.09895198030169],[-126.83135559882798,53.09878130184913],[-126.83126430835677,53.09860994021312],[-126.83124394754246,53.09843024501256],[-126.83122360869005,53.09825166118937],[-126.83113697795791,53.09807971086734],[-126.8310242518757,53.097911870247664],[-126.83088735900134,53.09775259880397],[-126.83072999382088,53.097597953160914],[-126.83054943797124,53.0974535549268],[-126.83033931661095,53.097327848181365],[-126.83009218073498,53.09722257931089],[-126.82983952201923,53.09712182180823],[-126.82961556543003,53.097006304538716],[-126.82944905230097,53.09686180604511],[-126.82932608447194,53.09669626770794],[-126.82920865252848,53.096526773065015],[-126.82906062469861,53.09637150387719],[-126.82887271814774,53.09623331298631],[-126.82866437984961,53.096102552901726],[-126.82844032632495,53.095980866750196],[-126.8282033846071,53.095870475667965],[-126.82795085884882,53.095775880535484],[-126.82767899708,53.0956965517538],[-126.82739975964608,53.095623432352106],[-126.82712697885151,53.095545220295364],[-126.82687357337991,53.095452870065955],[-126.8266514931339,53.09533676932008],[-126.8264386284669,53.0952127600908],[-126.82622666012642,53.09508706791732],[-126.82601558795517,53.09495968384115],[-126.82580452101818,53.09483173461026],[-126.82559526736627,53.0947015402632],[-126.82538788939439,53.09457076770394],[-126.82518233536356,53.09443829678565],[-126.82497956310657,53.094304129795155],[-126.82477958343048,53.09416882244789],[-126.82458238136154,53.09403237486218],[-126.82438887778513,53.093893660109615],[-126.82419909447307,53.09375379857411],[-126.824013031404,53.093612790273106],[-126.8238325371639,53.093469501818916],[-126.82365576311906,53.09332506663894],[-126.82348549651633,53.093178909549984],[-126.82331988174184,53.09303103454326],[-126.82316263771688,53.09288029521467],[-126.82301466649962,53.092726138501014],[-126.8228750549529,53.09256855286602],[-126.82274195477443,53.092408689653055],[-126.8226144079595,53.09224653762361],[-126.82249150209931,53.09208212107359],[-126.8223732585398,53.09191654245847],[-126.82225683874101,53.09174927472941],[-126.82214230511549,53.09158199375378],[-126.82202868928262,53.09141415049558],[-126.82191414249995,53.091246869370984],[-126.82179866896684,53.09107959457074],[-126.82167947752745,53.0909134660198],[-126.82155752159095,53.090749032856486],[-126.82143091613759,53.09058631714063],[-126.82129407217884,53.09042647822241],[-126.82113680162325,53.09027349523733],[-126.82096466403546,53.090126226890256],[-126.82078604347195,53.08998180013702],[-126.82060281017925,53.089840201961216],[-126.82041770386274,53.089699181244654],[-126.82022981187403,53.089558744313884],[-126.82004287445525,53.089418856235284],[-126.8198587034996,53.08927726340166],[-126.81967731008913,53.089134539454896],[-126.8195024167941,53.08898896436378],[-126.81933959080796,53.08883825851291],[-126.819186958015,53.08868300864964],[-126.81903711319153,53.0885271745163],[-126.81888171724236,53.08837361969822],[-126.81871333531497,53.08822631302879],[-126.81852175846494,53.088088139921766],[-126.8183088890976,53.08796075442729],[-126.81808033356084,53.08784468236021],[-126.81783981044333,53.08773877737257],[-126.81758825556399,53.087641912396485],[-126.81732931437108,53.0875507005841],[-126.8170667569556,53.0874651158173],[-126.81680327964342,53.08738065735014],[-126.81653704458452,53.08729901417603],[-126.81626898784226,53.08721906825335],[-126.81599911172262,53.08714249585292],[-126.81572648201455,53.0870681828911],[-126.81545206933994,53.08699836369193],[-126.81517310835511,53.086934742584305],[-126.81489141085719,53.08687505703508],[-126.8146088146699,53.086817618055086],[-126.8143262018536,53.08675849325403],[-126.81404448521296,53.08669768530726],[-126.81376459646155,53.08663462306181],[-126.8134983827669,53.086553537674625],[-126.81325418554871,53.0864493339636],[-126.81305247038634,53.086317935968744],[-126.81287480318969,53.08617181438159],[-126.81271107988532,53.0860216703085],[-126.81255756028476,53.085867529527256],[-126.81241334273066,53.08570997198258],[-126.81227654831895,53.08555011321689],[-126.81215371258217,53.085386240996236],[-126.81204018496744,53.08522006362425],[-126.81192759008776,53.08505332394529],[-126.81181778280553,53.08488600025316],[-126.81171077389932,53.08471865722389],[-126.81160562934339,53.084550180759436],[-126.81150419981529,53.08438111393184],[-126.81141210384375,53.08421030660676],[-126.81133956082031,53.08403544758458],[-126.81129221227904,53.083858165497006],[-126.81127008384404,53.08367903390289],[-126.8112628936816,53.08349867919317],[-126.81126132417543,53.08331885061402],[-126.81126350515898,53.08313955204292],[-126.81126661776086,53.08295968231287],[-126.81127345536403,53.082779795949946],[-126.8112803076969,53.082599900502515],[-126.81128996813078,53.0824205504965],[-126.81129867543194,53.08224065123643],[-126.81130552757077,53.08206075573214],[-126.81131517714559,53.08188084996232],[-126.81132762377787,53.08170091600018],[-126.81134757547362,53.08152149522061],[-126.8113768826955,53.08134313069028],[-126.81141556461421,53.081165266490494],[-126.81146359102455,53.08098789385458],[-126.81151725208628,53.08081103825354],[-126.81157559055816,53.080634715219745],[-126.81163766815563,53.08045836644779],[-126.8117016258402,53.08028256944855],[-126.81176652104547,53.08010732173167],[-126.81183705065483,53.07993259101909],[-126.8119131848564,53.07975838646956],[-126.81199121396686,53.07958473356965],[-126.8120682892695,53.07941052240841],[-126.81213975468526,53.07923634974103],[-126.81220371908714,53.0790611080547],[-126.81225362019649,53.07888427773701],[-126.81228199440163,53.07870591908991],[-126.81229819057054,53.07852596784725],[-126.8123125017608,53.07834602058029],[-126.81233805682514,53.07816656071977],[-126.8123860653406,53.0779886316972],[-126.81243034886246,53.07781071928802],[-126.81243906102453,53.07763137517796],[-126.81241502922188,53.07745057993317],[-126.8123555811058,53.07727562188884],[-126.81222530120503,53.0771123650681],[-126.81204030387215,53.0769718858114],[-126.8118164163714,53.07685185197599],[-126.81159070752106,53.07673350653802],[-126.81133923864294,53.07663774813291],[-126.81107765597542,53.07655045810566],[-126.81083907754694,53.0764434048665],[-126.8106198455711,53.07632165154136],[-126.81038491903915,53.07621065496584],[-126.81013251786963,53.07611433565362],[-126.80987094108366,53.076027051891195],[-126.80964156698872,53.07591208944996],[-126.80945841670993,53.07577047296143],[-126.80932725724007,53.07560889524791],[-126.80919515649838,53.075447323828705],[-126.80900276882396,53.07531138149872],[-126.8087964640992,53.07518057203384],[-126.80860959562148,53.07503897966946],[-126.80840333613429,53.07491041025989],[-126.8081712136861,53.07479826956795],[-126.80792893030606,53.0746929121191],[-126.80768112918659,53.07459151823133],[-126.80742963918135,53.07449351062354],[-126.80716985147617,53.074401161820916],[-126.80690359293635,53.07431221823499],[-126.80663826280087,53.074223267712114],[-126.8063794164925,53.074131475497076],[-126.80613169678504,53.074033995182276],[-126.80590153979055,53.07392631874427],[-126.80570561132313,53.073799915204646],[-126.80557727957247,53.07363886977812],[-126.80547391814868,53.07346309603545],[-126.8053501482036,53.07329641659753],[-126.80516700668677,53.07315311704905],[-126.80499225032553,53.07300863953986],[-126.80490859985886,53.0728372130433],[-126.80483141123706,53.072661816115186],[-126.80474392747077,53.07248536873753],[-126.80461103290708,53.07232940013819],[-126.80438451098772,53.072215528578475],[-126.8041310988311,53.07211360072157],[-126.80389529586724,53.07200315299611],[-126.8036696561322,53.07188591248001],[-126.80345415417064,53.07176132362118],[-126.80324236040939,53.07163502387642],[-126.80303240542763,53.07150702597505],[-126.80283263065644,53.07137392060795],[-126.8026393334205,53.07123685351545],[-126.80244602675317,53.07109922142201],[-126.80225182581682,53.070963271394945],[-126.80205668412506,53.07082733639888],[-126.8018550567403,53.07069479773172],[-126.80164974933471,53.07056453371793],[-126.80144256936578,53.0704348378347],[-126.80123262575275,53.07030683664613],[-126.80102176686725,53.07017940603754],[-126.80080720854643,53.07005480593948],[-126.8005760219535,53.06993983817753],[-126.80035038740877,53.06982259128341],[-126.80015063328788,53.06968891647577],[-126.8000008962085,53.069580683688685],[-126.79995729949681,53.06954903941497],[-126.79977042829594,53.06940520090363],[-126.79960032316878,53.06925732225215],[-126.79945256200567,53.06910536577539],[-126.7994370941409,53.06892899156672],[-126.79942246896508,53.06874812055247],[-126.79934534220713,53.068574404690196],[-126.79925889511505,53.06840130762148],[-126.79915197731651,53.06823395164232],[-126.79899206812115,53.06808152095085],[-126.79875081971748,53.06797782296136],[-126.79850860317174,53.0678718899666],[-126.79829589082024,53.067745022765095],[-126.79807768188124,53.06762323919064],[-126.79781711983439,53.06753647776104],[-126.7975620447082,53.06744239974196],[-126.79731524828892,53.06734153313992],[-126.79703639713233,53.06727618353836],[-126.79678599088676,53.06718207234253],[-126.79656774710877,53.06705804516237],[-126.79633541494263,53.06693075098417],[-126.79614403857094,53.066794216022075],[-126.79610911922752,53.066626927646496],[-126.79619991128534,53.06643470487538],[-126.79617082039631,53.0662791472435],[-126.79590850033804,53.06619687559241],[-126.7956255213515,53.066110260418526],[-126.79542761633965,53.06597376825451],[-126.7952825669505,53.06581507396698],[-126.79521389157118,53.06564185413489],[-126.79520486156608,53.06545926839591],[-126.7952641422258,53.06528126056078],[-126.79529731163792,53.0651056785453],[-126.79519316594407,53.064934938564356],[-126.79508344513847,53.06476591233044],[-126.79511668391974,53.06459481197505],[-126.79518361266172,53.064425161061706],[-126.79523710628528,53.06423767205395],[-126.79530407598051,53.06407026181834],[-126.79541588813042,53.0639025494966],[-126.79550802900943,53.0637321637481],[-126.79549718167362,53.063552395879945],[-126.79542381232557,53.063377522302275],[-126.79527601318337,53.06322164319986],[-126.79524649753006,53.06304312151573],[-126.79526182838177,53.062863733054165],[-126.79528182856468,53.0626837483768],[-126.7952924791134,53.06250439139223],[-126.79529095706268,53.0623234400496],[-126.79529033483921,53.06214023259763],[-126.7952719812723,53.061958829823325],[-126.79521545311924,53.06178552784208],[-126.79510028054206,53.0616243907829],[-126.7949376462192,53.06147364895532],[-126.79475731350469,53.06132639658125],[-126.79458904930262,53.06117513636995],[-126.79445520162702,53.061014680099866],[-126.79433991859901,53.060847375586036],[-126.79424232540052,53.06067602561666],[-126.79416710344837,53.0605022929957],[-126.79413951560655,53.06032655468679],[-126.79416884296441,53.06014538669587],[-126.79418135608769,53.05996546126438],[-126.79416864626687,53.05978569649059],[-126.79416901896394,53.059605852674],[-126.79419464986502,53.05942695052775],[-126.79419390061524,53.05918716112293],[-126.7941839869648,53.05900738642859],[-126.79413861142085,53.058829526540826],[-126.79403359621237,53.05866158775846],[-126.79388490221646,53.058506277403374],[-126.79369996288585,53.05836128635058],[-126.79350941393406,53.058216897452745],[-126.79335345756338,53.058072840571576],[-126.79321118025814,53.057910198268914],[-126.79308481277761,53.05774912524657],[-126.79304129703736,53.057571252356034],[-126.79304258487683,53.05738971691265],[-126.79303644541602,53.05721159294342],[-126.79295566408675,53.05703901715315],[-126.79286090184718,53.0568687672857],[-126.79276145060199,53.05669799302761],[-126.7926685379013,53.05652661899223],[-126.79259335507338,53.056353440568785],[-126.79253305545197,53.05617735636039],[-126.7924811627303,53.056000659894124],[-126.79243579753657,53.055822799043256],[-126.79239321794975,53.05564436367808],[-126.79235064909562,53.055466483995886],[-126.79230808059833,53.05528860428004],[-126.79230472358354,53.05510877611924],[-126.79232753874832,53.054929337056926],[-126.79238311087092,53.05475303974473],[-126.79248343060598,53.05457028356489],[-126.79248869415467,53.05440216759422],[-126.79242467537796,53.054226108117355],[-126.7923224680391,53.05405703706915],[-126.79219794221972,53.05389370940341],[-126.79207340698802,53.05372982587359],[-126.79196376954955,53.05356304540741],[-126.79185876560808,53.05339454846252],[-126.79175470428052,53.05322604509193],[-126.79165158555568,53.0530575352983],[-126.7915475258768,53.05288903171233],[-126.79144067755699,53.0527216672564],[-126.79133790588233,53.052571639235104],[-126.79120279046091,53.052391582297325],[-126.7910940702514,53.05222310950304],[-126.7909834777522,53.05205520492958],[-126.79086084203215,53.05189242782634],[-126.79066598094111,53.051764871031516],[-126.79045422068361,53.05163294490641],[-126.79025089848835,53.05150208245711],[-126.79005401616907,53.05136613861556],[-126.7898625945739,53.05122230516939],[-126.78975302433007,53.05105831892636],[-126.789672232268,53.05088461997565],[-126.7896212891453,53.05070735073063],[-126.78960203353188,53.050526516857865],[-126.78962120405637,53.05035158443866],[-126.7897291762895,53.050178299065344],[-126.78992640325204,53.0500318651251],[-126.78998489336256,53.04986115164145],[-126.79002735819044,53.04968326632418],[-126.79006606934966,53.04950372079979],[-126.79001142662452,53.04932928217459],[-126.78993250966792,53.049155005941934],[-126.78987688899741,53.048977767935725],[-126.78985487962278,53.04879919342801],[-126.78987023845501,53.04862035990917],[-126.78989959235481,53.048440876936205],[-126.78992148737913,53.04826144384696],[-126.78992935151088,53.04808154883534],[-126.78993347865365,53.04790166984632],[-126.79016736318898,53.04771745626713],[-126.79014996445645,53.04753604498117],[-126.79017832715408,53.04735320682236],[-126.79039388048875,53.04723803322624],[-126.79065463340064,53.04714271727988],[-126.79092125577357,53.04706081688824],[-126.79119936437534,53.04699451752432],[-126.79147077346363,53.04691930704193],[-126.7917391356439,53.046830660888354],[-126.7919414007547,53.046705488628035],[-126.7920917705683,53.04655264171057],[-126.79222324726724,53.046388724915914],[-126.79234628106799,53.046222614574525],[-126.79247216124848,53.046059290813275],[-126.79259709884288,53.04589597322487],[-126.7927201717636,53.04573211221519],[-126.79284042330377,53.045567705251734],[-126.79295784311132,53.045402196622895],[-126.79307152988117,53.045236148182425],[-126.79318144354528,53.04506901338491],[-126.7932885299616,53.04490021216568],[-126.79338717405413,53.044729226483774],[-126.79346896739919,53.04455723342759],[-126.79352268887133,53.044382067380745],[-126.7935193275742,53.04420223811762],[-126.79350753113167,53.04402135396174],[-126.79351351091744,53.04384146186463],[-126.79352043238784,53.04366157238156],[-126.7935282908052,53.043482232370366],[-126.79353706521582,53.0433023214265],[-126.79354773321865,53.04312296248676],[-126.79355931735051,53.04294304157697],[-126.79356810207332,53.042763695258365],[-126.79357221328263,53.04258381558677],[-126.79356885208566,53.04240399510031],[-126.7935617544959,53.04222419075177],[-126.79355092089591,53.04204442046703],[-126.79353449344146,53.041865243562384],[-126.79350871505572,53.041685564748896],[-126.79349415601351,53.04150637524209],[-126.7935057503177,53.04132700988953],[-126.7935360462598,53.04114863932788],[-126.79357475574217,53.04097021216881],[-126.7936125130074,53.040791235587896],[-126.79363998800709,53.04061231915084],[-126.79365905364313,53.0404329034445],[-126.79367532453004,53.040253506508755],[-126.79368878575902,53.04007412844548],[-126.79369942697714,53.039894213534026],[-126.79370821486525,53.03971430210131],[-126.79371233574192,53.03953498679054],[-126.79370897419287,53.039355165988916],[-126.79370187651938,53.03917536132973],[-126.79369664705831,53.03899555305226],[-126.79369607994421,53.03881570443739],[-126.79369270796523,53.03863531887471],[-126.79369308249252,53.03845547285402],[-126.79370561657169,53.038276100831766],[-126.79374058227741,53.03809825426709],[-126.79381952508923,53.03792403828285],[-126.79389566243955,53.03774928530357],[-126.79391849289387,53.03757152025553],[-126.79389549949897,53.03739126655643],[-126.79386222989673,53.03721052616816],[-126.79385048021608,53.037031317340634],[-126.79390142318263,53.03685841006789],[-126.79402348139166,53.03669230339023],[-126.79413428964844,53.03652404013175],[-126.79421792146853,53.0363514684798],[-126.79429219689447,53.03617728337772],[-126.79435146162882,53.036000402352784],[-126.79440701551894,53.03582410204901],[-126.79452630147817,53.03566025447972],[-126.79469255941565,53.03551010182945],[-126.79487106500255,53.03536603393977],[-126.79505427324126,53.035224166214455],[-126.79532128760513,53.035018426775515],[-126.79562913906871,53.03479896475976],[-126.79582179081244,53.034662079055295],[-126.79601347894624,53.034524078965745],[-126.79620140926367,53.03438498334783],[-126.79638082082805,53.034240342142944],[-126.79651889258942,53.03408197727099],[-126.79661748360299,53.033910987913096],[-126.79663750644241,53.033733240803315],[-126.79659959323975,53.03355477319336],[-126.7965691660764,53.033376246057955],[-126.79652938575074,53.03319779099605],[-126.79648495435102,53.03301992309121],[-126.7964909305665,53.03284059437686],[-126.79655301136341,53.03266480438908],[-126.79663382125341,53.03249169377337],[-126.79681513759817,53.03234872413653],[-126.79682812054418,53.032144695846924],[-126.79687709375203,53.03196731776417],[-126.79693262736902,53.03179157168119],[-126.796873275503,53.03161492509446],[-126.79682791796391,53.031437063410024],[-126.79678814879428,53.031259163957145],[-126.79677357948934,53.031079973765046],[-126.79692015192444,53.030927709215135],[-126.79712688679977,53.03079632857985],[-126.79730913101795,53.03065390750873],[-126.7973198536216,53.0304784728288],[-126.79726801445345,53.030304016650426],[-126.79732725842955,53.030127124561034],[-126.79738090366102,53.029949714459946],[-126.79742239128235,53.02977183068056],[-126.79744610796291,53.0295929374493],[-126.79745767188918,53.029413014736996],[-126.7974617653321,53.02923313352897],[-126.79746212381598,53.02905328650895],[-126.79746248212852,53.02887343050675],[-126.79746003617728,53.02869303764289],[-126.79745293500842,53.02851379677811],[-126.79743742261304,53.02833461274143],[-126.7974032291831,53.028154434380376],[-126.79730851373068,53.02798419418551],[-126.79715524939066,53.02782947250256],[-126.79697968580582,53.027679939259215],[-126.79679946847686,53.02753156669794],[-126.79662855816515,53.02738144570259],[-126.79648556642177,53.02722608900771],[-126.79638631707678,53.02706315775806],[-126.79633639537876,53.02689092904574],[-126.79632277066979,53.0267117319874],[-126.79633147734393,53.02652902251952],[-126.79634669598194,53.02634459272575],[-126.79635356041761,53.026162451446176],[-126.79634363474642,53.025982108790664],[-126.79633747991349,53.0258028612216],[-126.79634810633657,53.02562294457098],[-126.79636997277626,53.02544406362468],[-126.79639462221216,53.0252646080724],[-126.79641553669542,53.02508517770682],[-126.79644109093366,53.02490459543906],[-126.79646571874586,53.02472401939925],[-126.79648102019617,53.02454407105708],[-126.79647583321328,53.02436705792347],[-126.79637923099459,53.024195144105015],[-126.79617140910358,53.02406768257031],[-126.79593130613034,53.02396116429709],[-126.79568006963689,53.02385921182171],[-126.79543531430274,53.02375384447728],[-126.79521459405744,53.02363543268672],[-126.79502714056075,53.023498311581015],[-126.79486651977248,53.02334755372898],[-126.79471509602273,53.02319001931372],[-126.79459049437916,53.02301829258504],[-126.79442143539868,53.02286591458408],[-126.79418228033138,53.022759951130155],[-126.79393118517764,53.02266415257382],[-126.79370491487612,53.02254801641678],[-126.79353870660312,53.02239841487852],[-126.79336510839411,53.022252233438614],[-126.79323601715502,53.022090055700744],[-126.7931143794801,53.02192615134766],[-126.79299458465825,53.02176167867508],[-126.7928757213023,53.02159663484913],[-126.7927596671578,53.021431572016105],[-126.7926519565176,53.02126364711848],[-126.79250616037281,53.02110662776569],[-126.79234647333594,53.02095530432176],[-126.79216269171737,53.020813671690405],[-126.7919456466771,53.02069074682661],[-126.79169912485833,53.02058931001977],[-126.79144253012221,53.02049802531489],[-126.79118866716581,53.02040336005404],[-126.7909531952508,53.0202934389053],[-126.79076386138512,53.02015408243614],[-126.7905819137883,53.02001018495637],[-126.79040739447319,53.0198640052659],[-126.79026536654807,53.0197080784145],[-126.79017161855869,53.019536695960056],[-126.79011508430439,53.01935890557534],[-126.79008467388824,53.019179263825976],[-126.79009252144218,53.01899880105534],[-126.79014524181667,53.018821399389054],[-126.7902194361655,53.01864440962744],[-126.79032647824648,53.01847617317987],[-126.79048904336078,53.01833108737139],[-126.7907192659551,53.01821020912805],[-126.79092601018645,53.0180816349482],[-126.79104528520377,53.017918353786264],[-126.7911073042988,53.0177392128245],[-126.79114039693583,53.01756137741239],[-126.79115665934906,53.01738142269283],[-126.79116917246697,53.01720148413344],[-126.79119197207015,53.017022041321866],[-126.79123439308626,53.01684303163551],[-126.79125440511699,53.01666472803123],[-126.79119977295207,53.01648804566421],[-126.79115630736824,53.016310167798814],[-126.79114644186261,53.016130943985],[-126.79114401887743,53.01595110547095],[-126.7911425370297,53.0157712695901],[-126.79113826206071,53.01559144345951],[-126.79111625416449,53.01541230100888],[-126.79109983692751,53.015232565241725],[-126.79109088739375,53.0150527704056],[-126.79109407599518,53.01487345890608],[-126.79110286990769,53.014693553993546],[-126.79111165915899,53.01451420489148],[-126.79111671895333,53.01433431601929],[-126.79111150349088,53.01415450500975],[-126.7910913633373,53.01397534988134],[-126.79105256492512,53.013796875667595],[-126.79100632038734,53.013619580889376],[-126.79095447548238,53.01344231466819],[-126.79089797743141,53.0132662091389],[-126.79083682003274,53.01309012584371],[-126.79077288086047,53.012914625916714],[-126.79070613450224,53.01273914475945],[-126.79063845832496,53.012564234547526],[-126.79057079747258,53.012389315215295],[-126.79050312240963,53.01221440488963],[-126.79043637826553,53.012038923507326],[-126.79037057553637,53.01186343576414],[-126.79029917890205,53.01168910601769],[-126.79022220779115,53.011515369363636],[-126.79014616339433,53.0113416354018],[-126.79007943242968,53.01116670945841],[-126.79006676506195,53.010987503818434],[-126.79006807009908,53.01080708399545],[-126.79008153722793,53.01062770324646],[-126.79010433789702,53.01044825994961],[-126.79013088232061,53.01026935631233],[-126.79015742635397,53.01009044368687],[-126.79017930052748,53.009911006521705],[-126.79018808235256,53.00973110125059],[-126.79018846095705,53.00955068749584],[-126.79021314811777,53.00937235198401],[-126.79028175109396,53.00919596331426],[-126.79036529275231,53.00902059503704],[-126.79042084875044,53.00884541424433],[-126.79040173359192,53.008671289673686],[-126.79031355732157,53.00849707209849],[-126.79022910011594,53.008322829524545],[-126.7902098968929,53.008143111592695],[-126.7902168219367,53.00796377437111],[-126.7902349301976,53.00778267686079],[-126.7903204297384,53.00761234237027],[-126.79043496204699,53.007446851282694],[-126.79055885760638,53.00728297366514],[-126.79068557006096,53.00711964177541],[-126.79081040003169,53.006956322350725],[-126.7909408645409,53.00679408555021],[-126.79107505676008,53.00663238834437],[-126.7912074066825,53.0064712591261],[-126.7913341096409,53.00630848229396],[-126.79144770868308,53.00614299630767],[-126.79153878914572,53.00597205849178],[-126.79159145609597,53.00579297865361],[-126.79160025637636,53.00561362847208],[-126.79157356743944,53.00543395172798],[-126.79151890664573,53.00525502747803],[-126.79143075968743,53.005083051345736],[-126.79130364078618,53.00492254235131],[-126.7911448925552,53.0047684130308],[-126.79097966182606,53.00461655914757],[-126.79083115759013,53.004460675342344],[-126.7907216729891,53.00429500934264],[-126.79066141788974,53.00411612212051],[-126.79064685237175,53.00393524318231],[-126.79070056088845,53.003762315206615],[-126.79081688521782,53.003593449563326],[-126.7909098441069,53.003422499358074],[-126.79099342404538,53.00324993559628],[-126.79107139799203,53.00307627982562],[-126.7911446874922,53.002902099607056],[-126.79121515899206,53.002727382425924],[-126.79129124382747,53.00255261854793],[-126.79127299565233,53.00237457012896],[-126.79117366796717,53.00220323335273],[-126.79096506437115,53.00207688763733],[-126.7907342487674,53.00196133145445],[-126.79049881785207,53.00184805586923],[-126.79026801968963,53.001732498658036],[-126.7900538696278,53.00160955021684],[-126.78987675010536,53.00146954475677],[-126.78975608928258,53.001304508313176],[-126.78964373710616,53.00113493380692],[-126.78950360386497,53.00097619511515],[-126.78935326177748,53.000820877343344],[-126.78920292095533,53.000665568328984],[-126.78905257074737,53.000509694410304],[-126.78891707906418,53.00034979439328],[-126.78883921449781,53.00017719136116],[-126.788781796213,52.999999960232174],[-126.78878419304299,52.99997865331636],[-126.788820015728,52.99979688087519],[-126.78885677869931,52.99961510211076],[-126.78888517737379,52.99943562042189],[-126.78892197690396,52.9992566472649],[-126.78893825202258,52.99907724663938],[-126.78895262505088,52.99889673814561],[-126.78895581559185,52.998716304456075],[-126.78893477207052,52.998538274051214],[-126.78888016236652,52.99836102401704],[-126.78879293935468,52.99818679804763],[-126.78866862206317,52.99802514644415],[-126.7884412865483,52.99789443913839],[-126.78844951128895,52.99773414203996],[-126.78854619921542,52.99756316814482],[-126.78833937352162,52.997431202878765],[-126.78818625662947,52.99727591092226],[-126.78807582906137,52.99710856291259],[-126.78801281969194,52.99693136850664],[-126.78797024488486,52.99674899937979],[-126.78790915462044,52.99657459798053],[-126.78777476584047,52.99642254200852],[-126.78752451718579,52.99631327690708],[-126.78726165319165,52.996228183393306],[-126.78698686074101,52.99615438363407],[-126.78670399016994,52.996097436800106],[-126.7864124119566,52.99607417358486],[-126.786111054443,52.99607673911285],[-126.78581580664229,52.99605686061681],[-126.78552220770526,52.99602519987977],[-126.78522687757354,52.99600082919761],[-126.78492991972301,52.99598935970583],[-126.78463210425606,52.99598237747329],[-126.7843342831395,52.995974273952115],[-126.78402811924208,52.99596958688253],[-126.783774822279,52.99589675730242],[-126.7835790094734,52.99575350474929],[-126.78330268489775,52.99569650628336],[-126.78300131511087,52.995699072926264],[-126.78271682534842,52.99575642592101],[-126.78245242103554,52.995839982904656],[-126.78220132125216,52.99593746267716],[-126.78195788500346,52.99604496727706],[-126.78183782242715,52.99616398856764],[-126.78182544923594,52.9963030217948],[-126.78189029865128,52.99637879077375],[-126.78203219759322,52.99643219300039],[-126.78223619219325,52.99656418802903],[-126.78244669142066,52.996695018961645],[-126.782634947446,52.99683328538133],[-126.78275741343158,52.996997196722916],[-126.78277658010705,52.99717691705442],[-126.78269016181545,52.99734893850872],[-126.78254378837794,52.99750847571232],[-126.78237290594062,52.9976547195053],[-126.78219074294441,52.99779656453941],[-126.78200391034748,52.99793787547446],[-126.78182175512926,52.998080275650985],[-126.78165182453431,52.9982281973473],[-126.7814941437725,52.99838219625195],[-126.78133927902971,52.99853674103175],[-126.78117686136542,52.9986874181066],[-126.78099274120571,52.99882478286088],[-126.7807350343616,52.998918941245925],[-126.78048317181853,52.99902649826781],[-126.78023418689665,52.999137962177976],[-126.78007150586723,52.99927462774997],[-126.78001954376884,52.99944305725503],[-126.7800248236842,52.999629037193905],[-126.78003478241212,52.99981610673108],[-126.78002509111224,52.99999994452755],[-126.78011122262309,53.00016690457259],[-126.78025832050878,53.00030039979867],[-126.78028246457407,53.00044591425518],[-126.78023815786058,53.00062549878415],[-126.78020322802575,53.00080669760459],[-126.78022609784863,53.00098528177515],[-126.78025366155016,53.001164946469736],[-126.78024205321057,53.00134599988285],[-126.78025278936325,53.00152409951418],[-126.78033714063831,53.001695544365376],[-126.78044755529743,53.00186401969877],[-126.780534762015,53.00203881615882],[-126.78057351572946,53.00221785080582],[-126.78049262588146,53.002387027504994],[-126.78039309225998,53.002557457048994],[-126.78027767001117,53.0027263062875],[-126.78014627211775,53.00288965823849],[-126.77999794177755,53.00304583384239],[-126.77983171780933,53.00319372778841],[-126.77964951222825,53.00333500373207],[-126.7794541480443,53.003471328275964],[-126.77924845269611,53.003603794275215],[-126.77903613390171,53.003731821379944],[-126.77882189596454,53.00385705485608],[-126.77860480872997,53.00398007456626],[-126.77838398157179,53.00410198901346],[-126.77815935408184,53.00422113117017],[-126.77793190241407,53.00433861514342],[-126.77770065486607,53.00445275302728],[-126.77746656266143,53.00456411225953],[-126.77722959039878,53.00467157248954],[-126.77698120283313,53.0047673370015],[-126.77669948778433,53.00482746233356],[-126.77641878421895,53.004891497828964],[-126.7761552364671,53.004975034142575],[-126.77589551281869,53.00506359172968],[-126.77563960273442,53.00515659695337],[-126.7753865398091,53.005251832986865],[-126.77513633950205,53.00535096714999],[-126.77489842636926,53.005458984563475],[-126.77470210108932,53.0055947424484],[-126.77462870883191,53.00576722703555],[-126.77457967295177,53.00594459860979],[-126.77453813355926,53.00612360623817],[-126.77449190967499,53.00630207983076],[-126.77443071671452,53.00647784578797],[-126.7743423587369,53.00664875199996],[-126.77423152976547,53.00681588815382],[-126.77411883317572,53.0069830274762],[-126.77402392223605,53.0071534205973],[-126.77395336259121,53.00732757130814],[-126.7738940278845,53.00750388942561],[-126.77383376684483,53.00768021356994],[-126.77377184376385,53.0074060814235],[-126.77372658354894,53.00722764373747],[-126.77368320539621,53.007049202634974],[-126.77364541224725,53.006870715897136],[-126.7736169673644,53.006692176771054],[-126.7736034401268,53.006513530799474],[-126.7736113860135,53.00633475291151],[-126.77363892776201,53.00615528168672],[-126.77367765358015,53.005975737061426],[-126.77371919645286,53.005796729720466],[-126.7737542137732,53.005617774124325],[-126.77377336807054,53.00543947838379],[-126.77375147943984,53.00526257249029],[-126.77365965097287,53.00508948714184],[-126.77356319500166,53.004918108432484],[-126.77345096388748,53.0047513243321],[-126.77329882102964,53.004597119118095],[-126.77312998311618,53.00444863495778],[-126.77294352960888,53.004306980453315],[-126.77284341678634,53.00413955154319],[-126.77276930271456,53.003964672959384],[-126.77261990106129,53.00380653136499],[-126.77240027375767,53.00368806944124],[-126.77214112730748,53.00360291814072],[-126.77186722350872,53.00352739217556],[-126.77159425127307,53.00345130368032],[-126.77132680318701,53.00337180775563],[-126.77106119695793,53.0032900670132],[-126.7708065821794,53.003197603955165],[-126.77056297875791,53.00309386272004],[-126.77031568970665,53.00299350676233],[-126.77004733138874,53.00291457866092],[-126.76978724833855,53.00282830775899],[-126.7695518887536,53.002716110851246],[-126.76934882975345,53.002584088321136],[-126.76926085383155,53.00241545656303],[-126.76926218608867,53.002231674756565],[-126.76915842075817,53.00206762817073],[-126.76899604555794,53.00191348406914],[-126.76880223276918,53.001776362197326],[-126.76855123776933,53.001676026700665],[-126.76832704523416,53.00156150444852],[-126.76818606983076,53.001403867035954],[-126.76806917539062,53.00123597851235],[-126.76797271037658,53.00106236293015],[-126.76784939960552,53.000901239366684],[-126.76763444358402,53.00078106175774],[-126.76739168628718,53.00067170561239],[-126.7671960732574,53.00053682495915],[-126.76701801201354,53.00039230945453],[-126.76685753274297,53.000239835349554],[-126.76665548516185,53.000110607445464],[-126.76641831284402,53.000000092411746],[-126.76625642255942,52.99997537149872],[-126.76595818838227,52.99994648910052],[-126.7656585071416,52.9999400356863],[-126.76537214955569,52.99989650729467],[-126.76509559582696,52.99982770628198],[-126.7648118046451,52.99977072202236],[-126.76451704339934,52.99972724607178],[-126.76422321336108,52.99968320754951],[-126.76394498282201,52.99962394403451],[-126.76369702539618,52.99953590480914],[-126.76348850165941,52.999409510393846],[-126.7632992501193,52.99926449698191],[-126.76310545246288,52.999125680295535],[-126.76290890959302,52.9989902427567],[-126.76270867573174,52.99885706990122],[-126.7625010586378,52.99872842672658],[-126.7623008272879,52.99859525315783],[-126.76210520511097,52.998459252514294],[-126.76188559938362,52.998337964956775],[-126.76167706683111,52.99821044680882],[-126.76152673600664,52.99804950008138],[-126.76134141023073,52.99791454326077],[-126.76109063622944,52.99782427561308],[-126.76082050161602,52.99774757919897],[-126.76054298346429,52.997675412074],[-126.76026820802691,52.99760042967213],[-126.76000722685872,52.997513587255455],[-126.75976003015916,52.99741432917515],[-126.75951738235202,52.99730887366079],[-126.75927382530965,52.99720510883996],[-126.75902478597266,52.997106981658256],[-126.75877388670975,52.997009986491555],[-126.75852207306188,52.996913561442405],[-126.75826841424482,52.99681825932928],[-126.75800737210636,52.996727495383745],[-126.7577509338861,52.99663277479753],[-126.75751388400703,52.99652672339135],[-126.75731192225479,52.99639971111267],[-126.7571459544076,52.99625062071496],[-126.75699105962684,52.996093614993754],[-126.75682137194885,52.99594511277775],[-126.75662394811914,52.995810226188134],[-126.75640527752114,52.99568781081457],[-126.75615531318832,52.995589683517785],[-126.75590351373593,52.995493243831326],[-126.75570332833819,52.99536062350656],[-126.75551790340056,52.995218378923106],[-126.75529651195063,52.99510045224226],[-126.75502635542536,52.99502094580462],[-126.7547320202018,52.99499817784862],[-126.75448684080193,52.994906739814645],[-126.75439606351082,52.99473418812991],[-126.75427649020652,52.99456855298436],[-126.75411977094723,52.99441379625483],[-126.75399374039606,52.994252675425095],[-126.75393091724999,52.99407771237616],[-126.7538922633037,52.99389754767667],[-126.75382665941017,52.99372315812635],[-126.75369965181888,52.99355980204167],[-126.75352535795079,52.99341300081855],[-126.7533067086086,52.99329057952386],[-126.75308344257668,52.99317041949145],[-126.75290270343997,52.99302870556198],[-126.7527404714036,52.99287734384596],[-126.75259305411141,52.992720284470074],[-126.75245865502642,52.99255978009709],[-126.75235208244875,52.99239068921281],[-126.75225573136673,52.99221873605049],[-126.75214362722134,52.99205248616278],[-126.75199165674962,52.99190105789872],[-126.7518026067476,52.99176331276606],[-126.75159317158051,52.99163354129758],[-126.7513772589596,52.99150717245649],[-126.75116599022718,52.9913790972525],[-126.75093812745484,52.99126232412948],[-126.75065170506033,52.99121092560692],[-126.75041589070604,52.99111885469481],[-126.75023974249085,52.99097150453724],[-126.7499816039075,52.990884057118286],[-126.74970049625026,52.99081636970661],[-126.74941416716749,52.9907700056912],[-126.74911712729218,52.99075116754483],[-126.74882006778469,52.99073119923975],[-126.74853728462857,52.99067416962589],[-126.74825545241303,52.99061768910438],[-126.74795784813955,52.990620133530534],[-126.74765922975685,52.990617545545646],[-126.74736147301375,52.990610469054694],[-126.7470637605165,52.99060675324716],[-126.74676616141507,52.990608638828725],[-126.74646671108009,52.99061222072098],[-126.74617217860705,52.99062977338741],[-126.74588568928316,52.990680326805],[-126.74560017914284,52.99073312343488],[-126.74530976023145,52.99077249458067],[-126.74501393229569,52.99076988224751],[-126.7447230594489,52.99072970321195],[-126.7444393608635,52.990673781193024],[-126.74415660358147,52.99061786151678],[-126.74387383716133,52.990561376454885],[-126.74359015574339,52.99050545229252],[-126.7433092175052,52.990446713207675],[-126.7430254542003,52.990386870691275],[-126.7427527060109,52.990315752379324],[-126.74251571907169,52.99020911468055],[-126.74230909165924,52.990078188569974],[-126.74212745641317,52.98993533427794],[-126.74192458798586,52.9898049485912],[-126.74170318424274,52.98968251421323],[-126.74146466064451,52.989701388080114],[-126.74140161628829,52.98988443774571],[-126.74125219985409,52.99003777507227],[-126.74109249822315,52.990189491509604],[-126.7409422322532,52.99034731602627],[-126.74094342287982,52.9905226823729],[-126.74098203840822,52.990703972124905],[-126.74101507614083,52.99088641747876],[-126.74101537081977,52.991063465775575],[-126.74085183505098,52.99120960301341],[-126.74063473175723,52.99133422992174],[-126.7404326963435,52.99146604996299],[-126.74026646775755,52.991618926664586],[-126.74009643334516,52.99176678892111],[-126.73985070231146,52.991855179996904],[-126.73956050433864,52.99190798232143],[-126.73927412527895,52.99196580702281],[-126.73905769636822,52.992021516145385],[-126.73868893214504,52.99206360312499],[-126.73841841369321,52.99212189111226],[-126.73826138374352,52.99226686326344],[-126.73815807954473,52.9924434395014],[-126.73807710767369,52.99261651410399],[-126.73805874475745,52.9927953642923],[-126.73804888317034,52.99297975511544],[-126.73800599336491,52.99303493148195],[-126.73788830338563,52.99308217624785],[-126.73761344001997,52.99305139981518],[-126.73731327716825,52.99301405756185],[-126.73702411815032,52.99301978316147],[-126.7367220055557,52.993086108662645],[-126.73644605979791,52.993153946295635],[-126.73620415179228,52.99324846436159],[-126.73590487133153,52.99326209438687],[-126.73561531755752,52.99319162931197],[-126.73532787809815,52.993134588195005],[-126.73508010431499,52.99310587803376],[-126.73471830667448,52.993119903807234],[-126.73438954842769,52.993155569254],[-126.73417636924319,52.99318491122542],[-126.73388415604116,52.993175524948754],[-126.73358638808818,52.99316953421689],[-126.73329466566187,52.993134926167905],[-126.73300918271016,52.993082914285594],[-126.7327218872244,52.99303483944976],[-126.73242914436695,52.99299463276969],[-126.73214826300129,52.99293922851887],[-126.73189289839777,52.99284837178778],[-126.73165031695582,52.9927411824559],[-126.7314068636919,52.992637915539746],[-126.73116340741966,52.9925335365372],[-126.7309236306405,52.99242688411955],[-126.73069124720315,52.99231514731678],[-126.73048647341143,52.99218194818752],[-126.73027626245884,52.99205719112403],[-126.72999533236765,52.99199842036643],[-126.72972896507031,52.99191826800634],[-126.72949655339755,52.99180540845815],[-126.72932237907555,52.991660247501606],[-126.72917226112497,52.99150317600419],[-126.72902215396863,52.99134666900729],[-126.7289063800417,52.99128743001633],[-126.72876776508568,52.99125691109141],[-126.72847297122738,52.99125985368624],[-126.728168636671,52.99125052822455],[-126.72788035650481,52.9912528733014],[-126.72760219741676,52.99130053373402],[-126.72733588924149,52.991387340270315],[-126.72706286509413,52.99146298193491],[-126.7268125278645,52.99155584740769],[-126.72660859211372,52.991688210985096],[-126.72642252715295,52.991829428614594],[-126.7262486683061,52.99197561777235],[-126.72608984628566,52.99212730791364],[-126.7259516677667,52.99228672363678],[-126.72583130829888,52.992451067538354],[-126.72575138920396,52.992633647218106],[-126.72559654150989,52.99274553650233],[-126.72528425511004,52.99270823831271],[-126.72502245414519,52.992622444452735],[-126.72475698507634,52.99253947846342],[-126.72447694675232,52.99247844798437],[-126.72418260734592,52.992453362831874],[-126.72388471225408,52.99243950444719],[-126.72358776725964,52.99242619528045],[-126.72329084166913,52.99241401477905],[-126.72299297152396,52.99240070979234],[-126.72269686694652,52.99238235516305],[-126.72240073002367,52.992361203055495],[-126.7221030549747,52.99236022086044],[-126.72180554722938,52.992368210385905],[-126.72150946240954,52.99235097322405],[-126.72120410100489,52.99233603320355],[-126.72092419256595,52.99228227272238],[-126.72063782803302,52.992232477509],[-126.72034960779261,52.99218325770715],[-126.72005953168758,52.99213460433973],[-126.71980800538634,52.99204817143445],[-126.71960417904116,52.9919132714475],[-126.71936905973051,52.99180377032643],[-126.71911555713216,52.9917106246078],[-126.71885559876935,52.991621444176964],[-126.71859472956118,52.99153395405908],[-126.71833569886597,52.9914447668309],[-126.7180793943406,52.99135163596453],[-126.71782403150745,52.991258507773125],[-126.71763514369925,52.99117841221697],[-126.71735623413265,52.991072535355016],[-126.71701873791207,52.99103257182179],[-126.71672780862701,52.990988397750044],[-126.71644868517419,52.990924536816266],[-126.71617497161321,52.990849445656984],[-126.71592428799866,52.99075627597471],[-126.71571871797393,52.99062753850281],[-126.71552972526034,52.99048581801617],[-126.7153278234107,52.99035313112601],[-126.71512593232146,52.99022100858772],[-126.71493420302102,52.99008322123806],[-126.7147702892661,52.989934059250004],[-126.71462673533757,52.98977580906805],[-126.71446652735001,52.98962494781041],[-126.71427468042762,52.989479871912124],[-126.71411191329206,52.98934359304149],[-126.71404732030112,52.989164128782186],[-126.71396418281857,52.98899150916058],[-126.71380483965268,52.98883671525863],[-126.71359444021557,52.98869679759783],[-126.7133457950316,52.98861369519307],[-126.71306185611544,52.98859524288683],[-126.71275607273726,52.98860941844173],[-126.71244753548301,52.988625850981116],[-126.71214619292397,52.98862711606815],[-126.71184297126072,52.98862670639876],[-126.71155518879607,52.98860155027308],[-126.71130812342835,52.988501069744515],[-126.71109602732065,52.98837067823542],[-126.71088849596168,52.98823466494084],[-126.71074227398391,52.98808258471988],[-126.71066757796963,52.98791215299306],[-126.71062726595532,52.98773310518381],[-126.71060741187905,52.987550007546616],[-126.7105941331319,52.98736912034971],[-126.71059113657664,52.987189847518486],[-126.71060025034967,52.9870099368961],[-126.71061311055294,52.98683001263222],[-126.71064290622,52.98665950659715],[-126.71063212065235,52.98651613884474],[-126.71072854710373,52.98631329034027],[-126.71078871180228,52.986117392774545],[-126.71076617912776,52.98594103455443],[-126.71074830350022,52.985764657195745],[-126.71069962770476,52.98558790076275],[-126.71063511100998,52.98541179560089],[-126.71056778526616,52.98523459571779],[-126.7105079169989,52.98505790663037],[-126.7104629704739,52.984880006986295],[-126.71042546245415,52.98470149770757],[-126.71037958581681,52.98452416837142],[-126.71032252520506,52.984347462204],[-126.7102822273083,52.984168969642326],[-126.71034651534123,52.9839965791729],[-126.71048849404296,52.983839399379185],[-126.71052000389147,52.98365991816381],[-126.71048903381225,52.98348137833209],[-126.71041713382932,52.983309799643095],[-126.71048512296343,52.98313570135161],[-126.71049425139017,52.98295579917537],[-126.71050149912753,52.982775899351154],[-126.71008768178031,52.982741979123894],[-126.70979071531096,52.98272303283732],[-126.70949982257687,52.98273262828413],[-126.70922497543273,52.98280936071447],[-126.70899175788088,52.98292114454572],[-126.70881317234348,52.98306453114604],[-126.70866277439825,52.98322007425624],[-126.70852080953809,52.98337836340353],[-126.70838165885014,52.98353720021245],[-126.70822940148233,52.983693318648754],[-126.70806405583055,52.98384783015672],[-126.70790525526684,52.98400285790431],[-126.70777075677196,52.98416166596556],[-126.7076783527851,52.984326944540896],[-126.70764861221221,52.984501376147215],[-126.70766469282766,52.98468281184995],[-126.7076938702955,52.98486641003634],[-126.70770808560367,52.98504785689494],[-126.70771293549754,52.985227118826955],[-126.70771779468366,52.985406936486264],[-126.70772171376638,52.985586768735395],[-126.70772378198834,52.985766603113696],[-126.70772304439745,52.98594646328386],[-126.70772043171375,52.986125769926524],[-126.7077206193373,52.986305615538356],[-126.70772455344041,52.98648544760126],[-126.7077331442384,52.98666524272093],[-126.7077417352583,52.986845046784346],[-126.70774659475116,52.98702486426869],[-126.7077439821005,52.98720417079634],[-126.70773670701365,52.987384070064465],[-126.70772663130371,52.98756342136136],[-126.70771377358842,52.98774334514172],[-126.70770089158657,52.987922713245304],[-126.70768056131202,52.98810212604348],[-126.70766021593965,52.988281538908524],[-126.70765760284745,52.98846084529987],[-126.70765034210636,52.988640744338156],[-126.70766078957877,52.98881997228561],[-126.70768708907725,52.98899910504826],[-126.70771621364375,52.98917934139279],[-126.70774628808691,52.98936012781024],[-126.70775858332146,52.98953822401586],[-126.7076408780003,52.98969805103535],[-126.70739437110561,52.989798705109195],[-126.7071431964842,52.989898821889724],[-126.70693804345468,52.99001771175975],[-126.70685505521887,52.990189091178735],[-126.70680113829332,52.990369825506725],[-126.70676678285717,52.990548201379866],[-126.70675392032557,52.99072813369898],[-126.70672715838248,52.990914307950106],[-126.70664973739258,52.99108397737659],[-126.70643899815721,52.991204020301645],[-126.70616048918528,52.99128861073337],[-126.70587379903719,52.991330103262335],[-126.70557170682385,52.991343117359854],[-126.70527056787921,52.991357810308024],[-126.7049877011445,52.99140488062091],[-126.70472211939344,52.99148154636112],[-126.70446519156468,52.99157329188048],[-126.70421208157713,52.99167117264288],[-126.7039571008614,52.99176794345594],[-126.70369729828424,52.99185577797603],[-126.70342510815921,52.991928553733636],[-126.70313962962055,52.99198684974781],[-126.7028463472979,52.9920255772429],[-126.70255266262453,52.99203908923798],[-126.7022567730236,52.992033008254175],[-126.70195885678422,52.99201629772402],[-126.70165995403096,52.99199678642274],[-126.70136205100943,52.99198175067133],[-126.70106436639944,52.991979039067395],[-126.70076688855849,52.991989772243784],[-126.70047048940813,52.992008898002105],[-126.7001732384528,52.992032519290085],[-126.69987600898817,52.99205837186066],[-126.69957876650294,52.99208254739409],[-126.6992823847511,52.99210279958166],[-126.69898680839452,52.992115758104866],[-126.6986919972629,52.99211806152004],[-126.6983978596794,52.9921041165271],[-126.69810620092528,52.992071106552785],[-126.69781621551067,52.992026324525796],[-126.6975261570154,52.99197705100421],[-126.69723522315529,52.99193170840109],[-126.69694353900434,52.99189701934749],[-126.69663269260964,52.99188820679069],[-126.69638687964844,52.99197706299437],[-126.69615082328136,52.99209107820253],[-126.69592333827786,52.992216238985286],[-126.69571372705813,52.99235082309579],[-126.69553596089985,52.992491942312164],[-126.69543589901335,52.99264941132387],[-126.69545297534196,52.99283812978019],[-126.69543261844576,52.993019216136645],[-126.69529330489263,52.99317299901821],[-126.69510340649457,52.99331474483448],[-126.69489377817646,52.99344877165422],[-126.69468216003584,52.99357440111497],[-126.69445545109514,52.99369115458236],[-126.69422593103346,52.99380680359066],[-126.694008674452,52.99393022387351],[-126.69380747164165,52.99406587543529],[-126.69360627661585,52.99420208238743],[-126.6933917804807,52.99432380888291],[-126.69314604708127,52.99441881621087],[-126.69286816632803,52.99448712745923],[-126.69257501250799,52.994535348714194],[-126.69228254317706,52.99456788633526],[-126.69198593077405,52.99457523045605],[-126.69168530345726,52.99456522421882],[-126.69138733717867,52.994546246093265],[-126.69108999606841,52.99450876982562],[-126.69079660611337,52.994484716381486],[-126.69051343868615,52.994515509783135],[-126.69024041993198,52.99459666828728],[-126.6899596356999,52.9946593778736],[-126.68967973083046,52.99471928472256],[-126.68941037778396,52.994796502356955],[-126.68913551622074,52.99487934539914],[-126.68886633361058,52.99496720160906],[-126.68868925965575,52.995095979886045],[-126.68860995656419,52.99526957400645],[-126.68857752299401,52.99545633207047],[-126.68857017115519,52.99563566446907],[-126.6885917638898,52.995816513122286],[-126.68859746899142,52.995996325022396],[-126.688551808669,52.99617308418075],[-126.6884772211207,52.996349447460815],[-126.68838767069852,52.996524777476864],[-126.68829626831176,52.99670011821367],[-126.68821512160117,52.99687539899385],[-126.68815822529352,52.99704997339709],[-126.68813867036576,52.99722545934018],[-126.68815735547741,52.99740015731573],[-126.68819751843054,52.997575285706205],[-126.68825447766993,52.997750324986875],[-126.6883235660547,52.99792472865561],[-126.68840198016028,52.99809963361743],[-126.6884850680815,52.998274520185795],[-126.68857096335381,52.99844938132229],[-126.68865497830883,52.998624262328924],[-126.68873341915007,52.99879973161771],[-126.68880251443521,52.99897525543509],[-126.68885950521091,52.99915197047219],[-126.68889971819011,52.99932990404952],[-126.68892596004791,52.99950903978381],[-126.6889428739297,52.999689350553794],[-126.6889541858398,52.99986857347877],[-126.68896097827637,53.00000019467036],[-126.68895290527256,53.00025012586065],[-126.68894089008111,53.00043004978374],[-126.68889053483481,53.00060570649927],[-126.68881026926992,53.000777620438384],[-126.6887141045238,53.00094795081499],[-126.68861045531094,53.001117195280266],[-126.68850868077772,53.00128699344622],[-126.68841531475306,53.00145786296775],[-126.68833132206001,53.001630362992444],[-126.68824732275444,53.0018034187696],[-126.68816520408254,53.00197646348987],[-126.6880858858661,53.00215004758491],[-126.6880121844926,53.00232472835193],[-126.68794408159738,53.00249936742521],[-126.68788532851119,53.002675081414786],[-126.6878452844576,53.00285348312615],[-126.6878380039952,53.003038417020015],[-126.68784570620495,53.003225504606256],[-126.68784868947968,53.00340981383103],[-126.6878263776015,53.00358867677808],[-126.68776002058564,53.003756026298774],[-126.68763745130948,53.00391025692128],[-126.68747740656036,53.00405574145324],[-126.68729110307937,53.004193534922145],[-126.6870860700068,53.00432751078988],[-126.68686978247749,53.0044581991424],[-126.68665257681296,53.004589448220564],[-126.68644097249711,53.004721784828256],[-126.68624344555825,53.004858521329275],[-126.68606000504325,53.005000213535084],[-126.68588128552376,53.0051458043939],[-126.68570255581197,53.00529083922764],[-126.6855200465407,53.00543308987932],[-126.68532622835242,53.005568682638845],[-126.68511731393346,53.00569427779924],[-126.68488765841023,53.00580710220449],[-126.68464196610671,53.005909943251005],[-126.68438777211884,53.00600610083766],[-126.68413073956792,53.00609947743499],[-126.68387459564296,53.00619060720448],[-126.68360992646377,53.00627450672461],[-126.68334335947364,53.00635561077731],[-126.68307961989848,53.00643893894277],[-126.68282347167317,53.006530066411074],[-126.68258438258475,53.00663733807982],[-126.68235477828544,53.00675408353451],[-126.68212040881826,53.006865253335775],[-126.68186519673611,53.00695637325828],[-126.68158631103722,53.00702690374006],[-126.68130173460428,53.007091854713856],[-126.68103319579336,53.007167926847764],[-126.68079870080966,53.00727068607863],[-126.6805991606594,53.0074001452745],[-126.68042133818662,53.007545722308784],[-126.68025485482964,53.0076990774993],[-126.68008740250947,53.00785075271494],[-126.67991894552146,53.007998516023214],[-126.67975709094574,53.00815016742159],[-126.67959617587138,53.00830180419933],[-126.67943147567938,53.0084512304095],[-126.67925456770253,53.00859567972817],[-126.67905883938545,53.00873070797965],[-126.67885654821113,53.008863541531674],[-126.67867902676157,53.00902871913013],[-126.67857081516729,53.009149805246835],[-126.67847194537825,53.00927139330325],[-126.67832107531237,53.00941008857943],[-126.67843384580385,53.00963242904264],[-126.67852808873634,53.00980557185215],[-126.6784795997488,53.00998457374058],[-126.6784226818126,53.010161391941956],[-126.67835828736081,53.010337688340954],[-126.6783033156321,53.01051953323048],[-126.67819293229341,53.01067984155437],[-126.67795661888277,53.010788216927494],[-126.67772039054606,53.010901064549316],[-126.67754628613933,53.01104718019762],[-126.6773863228634,53.01120161397438],[-126.67721881078165,53.01135104391452],[-126.67701923156321,53.011479932037304],[-126.67676590117601,53.01157439129336],[-126.67650219666031,53.0116627509731],[-126.67627439747912,53.01177835309134],[-126.67606264473775,53.01190562403271],[-126.67579694512139,53.0119861497102],[-126.67556249996042,53.01209450045752],[-126.67537621164611,53.01223787666665],[-126.67530421832545,53.01240693553682],[-126.67527067441867,53.012587535468995],[-126.67520437854064,53.01276272013786],[-126.675148392987,53.012940086822745],[-126.67512048424446,53.01312289548396],[-126.6750578939111,53.01329637349687],[-126.67491563828476,53.01344958172614],[-126.67472931522572,53.01359128061588],[-126.67452986024448,53.01372912790148],[-126.67433317012308,53.013865273724974],[-126.6741655746435,53.01401078202497],[-126.67407870919983,53.01418440710555],[-126.67399555899718,53.014356881362396],[-126.67393113981596,53.01453317490762],[-126.67388171797226,53.014713309103065],[-126.67381540409342,53.01488792806865],[-126.67367591386889,53.01503999826167],[-126.67343117960016,53.01514896796789],[-126.67316358773984,53.01522949821818],[-126.67288206164913,53.0153734135729],[-126.67274076213212,53.01547002152449],[-126.67257226712003,53.015618894116315],[-126.67240567953141,53.01576944087159],[-126.6722343713913,53.015917208433784],[-126.67204993088416,53.01606112416553],[-126.67187204286604,53.01620668756427],[-126.67173256800088,53.016360440485606],[-126.67173079568079,53.01654309903989],[-126.67172803799592,53.01672295734716],[-126.67172807353121,53.01690280869353],[-126.67172251391051,53.017082127128994],[-126.67171602203076,53.017262006642525],[-126.67170858923434,53.01744190045858],[-126.67169369406979,53.017621271993576],[-126.6716713154984,53.01780068611719],[-126.67168161835109,53.01797991413357],[-126.67168913689349,53.018159713773244],[-126.67166298836885,53.0183369082198],[-126.67165576496491,53.01852912667885],[-126.67164510438043,53.0186815809899],[-126.67166857463098,53.01886689243908],[-126.67164165891973,53.01905417604128],[-126.67163059748617,53.019240813563755],[-126.67159792925649,53.019418600785045],[-126.67162944633351,53.01958089975102],[-126.67164842769759,53.01977800682259],[-126.67165226534506,53.01996119781776],[-126.67168584788402,53.02013693144405],[-126.67179848385251,53.020292600953475],[-126.67203108420874,53.02041734139781],[-126.67217259445508,53.020568928639356],[-126.67221002644422,53.02075079862281],[-126.67225297470061,53.020928163947936],[-126.67231924450282,53.021103711043004],[-126.6723892315946,53.02127811635948],[-126.6724610865075,53.021452510973134],[-126.67254505994975,53.021625151152435],[-126.67261132324644,53.02180014227419],[-126.67267479631768,53.021976260828275],[-126.67276254185178,53.022151129345225],[-126.67278212460448,53.02232637755136],[-126.67272145837626,53.02250488918747],[-126.6726092471836,53.0226719334756],[-126.67245210156331,53.022830825241826],[-126.67223835296666,53.022954182083545],[-126.671974311294,53.023026280223995],[-126.67168471302888,53.023076112503006],[-126.67139039396804,53.023123165103264],[-126.6711037117904,53.02318082311804],[-126.67082279898653,53.023249097219384],[-126.67061837129413,53.023371833307266],[-126.67045457528336,53.02352460161639],[-126.67029929456373,53.02368403556064],[-126.67012510332502,53.02382957445395],[-126.66990653188522,53.02394343423879],[-126.66964453287197,53.02402727662806],[-126.6693645973482,53.02409833849278],[-126.66909033629885,53.02417497019042],[-126.6688312222368,53.02426384128324],[-126.66857496248144,53.024356621983294],[-126.66831584003825,53.02444604775623],[-126.66804908582513,53.02452431975867],[-126.66777184988867,53.02458975982033],[-126.66749080788911,53.02465073860949],[-126.66721453169488,53.02471841299066],[-126.66694874388368,53.024799473865535],[-126.66668583397279,53.024885000015594],[-126.66641627414586,53.02496383991327],[-126.66613614510148,53.02502424553041],[-126.66583910474098,53.02501807849602],[-126.66554897226395,53.02497601458973],[-126.66526787032245,53.0249142941517],[-126.66498481394994,53.02484697241699],[-126.66470003459247,53.0248480213821],[-126.66442580403542,53.02492743881444],[-126.66418559496864,53.02503188062241],[-126.66397851233819,53.02516526943835],[-126.66383051844623,53.02519635667718],[-126.66370336809108,53.02518643140543],[-126.66341209151597,53.02513035751114],[-126.66314477982425,53.02505510806093],[-126.66291051139379,53.0249421299213],[-126.66264397681229,53.024856225401095],[-126.66234709538567,53.02486013351348],[-126.66208217123437,53.02493781690585],[-126.6618760148308,53.02507063205696],[-126.66167077471778,53.025202885906126],[-126.66144567366537,53.02531956323229],[-126.66118747165974,53.02540897698574],[-126.6609311795127,53.02550117632047],[-126.66067593201001,53.02560009244786],[-126.66046396786997,53.025721176424],[-126.66033295323254,53.02588270201947],[-126.66019914650737,53.02604537257077],[-126.66004370744078,53.0261986349412],[-126.65987324666042,53.026345813678816],[-126.65968020361966,53.02648304256801],[-126.65941670138535,53.02659264261045],[-126.65925883102395,53.026708939833775],[-126.6592196746932,53.02689404672861],[-126.65916823025512,53.027069137434026],[-126.65914954374496,53.027248527234406],[-126.65915232599971,53.02742779707887],[-126.65914859926512,53.02760934433389],[-126.65915323167849,53.02778748327147],[-126.65915136137822,53.027967343799546],[-126.65912248238264,53.0281523931029],[-126.6591129963036,53.02832388765376],[-126.65908687354495,53.02850555991244],[-126.6589153633972,53.028646584410446],[-126.6587066883469,53.02874018900059],[-126.65842261765431,53.02884934562375],[-126.65815589562088,53.02893263253428],[-126.65797878665082,53.02907425158633],[-126.65790677357809,53.02924833563769],[-126.65787967771625,53.029428327644254],[-126.6578432349733,53.029607815950634],[-126.65770462635413,53.029763786779085],[-126.65742622314974,53.02981688270679],[-126.65711933925394,53.029841002757856],[-126.65692114175047,53.029947992100524],[-126.65689510400507,53.03013583057558],[-126.65693709737104,53.0303148818237],[-126.65691838506733,53.03049427101287],[-126.65684262992913,53.03066837506508],[-126.65664577636096,53.03080169334876],[-126.65643672229184,53.03093171756604],[-126.6562248060223,53.03105839572084],[-126.65598926434018,53.03116671158032],[-126.65573198249072,53.03125778402581],[-126.65546519924207,53.03133938865014],[-126.65519178167133,53.03141429735152],[-126.65490410387345,53.03147248556433],[-126.6546750514464,53.03157852166733],[-126.65453279920611,53.031740667137974],[-126.65452232430385,53.03190936949392],[-126.65452898675537,53.0320992578811],[-126.65451307255438,53.032278630920615],[-126.65449622558393,53.03245857385878],[-126.65449064297049,53.03264125114187],[-126.6544597604283,53.03281902185652],[-126.65436521859081,53.03298706976281],[-126.65421448755127,53.033145335365255],[-126.654032679528,53.03328752980818],[-126.65380756408038,53.033406432793264],[-126.65355691445234,53.03350530723269],[-126.65328348825773,53.033580776116096],[-126.65302420855292,53.03366569505089],[-126.65283678864988,53.03380679809954],[-126.65270664648608,53.03396830933661],[-126.65257275917452,53.03412928533744],[-126.65243415940759,53.034288046162914],[-126.65223199772586,53.03401744006322],[-126.65211551516855,53.03385224560876],[-126.65202416145678,53.03368074479948],[-126.65196634493904,53.03350458547573],[-126.65192998122954,53.033326057572786],[-126.65190481588871,53.03314691199682],[-126.65188993089922,53.032967709607576],[-126.65187128706268,53.03278797218027],[-126.65181908189527,53.03261121695827],[-126.65173331178336,53.03243912919631],[-126.65160939030498,53.03227565152101],[-126.65146031472956,53.03211568312799],[-126.65119230291904,53.03205665384097],[-126.65089578129755,53.03202691497254],[-126.65060657423903,53.03198592973874],[-126.65031640925343,53.03194382854809],[-126.65003527469173,53.03188150737286],[-126.64979547964938,53.031774692504584],[-126.64963998822782,53.031622600848245],[-126.64953841244582,53.031453960054314],[-126.64944707430024,53.03128245700988],[-126.64938181816396,53.03110745772522],[-126.64933613766222,53.03092954486299],[-126.64927367422071,53.03075340062586],[-126.64914604045309,53.03059050545533],[-126.64892476667302,53.03047182581343],[-126.64865189543947,53.03039993588602],[-126.64836716647976,53.030346030002626],[-126.64807794772928,53.03030336235901],[-126.64778239029789,53.03027416620339],[-126.6475149969869,53.03019383512594],[-126.64735397633751,53.03004568810844],[-126.64724216602434,53.029878221931185],[-126.64713315054605,53.029710740308616],[-126.6470204177808,53.02954439948744],[-126.64690952796752,53.02937637212965],[-126.64669381188862,53.02925485201031],[-126.64655230401662,53.02909931794064],[-126.64640888041458,53.028941544162116],[-126.64623111993014,53.028797413595726],[-126.64603575397139,53.028661778649436],[-126.64586631574578,53.02851255508567],[-126.64579365727533,53.028339826253585],[-126.64577411496575,53.02816009244683],[-126.6457489786514,53.0279809450175],[-126.64575372306297,53.02780163403536],[-126.6457687313476,53.02762226685994],[-126.64576412946789,53.027442442243434],[-126.64574832271299,53.027262687895934],[-126.64574280326417,53.02708343301128],[-126.64574567152313,53.02690356745469],[-126.64572332138042,53.026723848860115],[-126.64561712867359,53.02655635015631],[-126.64543473862841,53.026414475690764],[-126.64521901426696,53.026290155966464],[-126.6450292080407,53.02615169198257],[-126.64486539209007,53.02600187135084],[-126.64473221274962,53.02584068671445],[-126.64463345539883,53.02567146116016],[-126.6445374905848,53.025501108687074],[-126.64444897909925,53.02532958591503],[-126.64435115681215,53.025159799194526],[-126.64422170831676,53.02499802880323],[-126.64410807323006,53.02483168979805],[-126.64403539641371,53.02465784811534],[-126.64394688028743,53.024485769143325],[-126.64378771015446,53.02433424524981],[-126.64362203821865,53.0241844329217],[-126.64353168291896,53.02401404892059],[-126.64348790190786,53.02383612287013],[-126.64344318011895,53.02365820191768],[-126.64333328635176,53.023491841667045],[-126.64320569718534,53.02332893937876],[-126.64308369402079,53.02316488595982],[-126.64293195032717,53.02300995875487],[-126.64274217462305,53.02287204656463],[-126.64254405557256,53.02273754110856],[-126.64239787485326,53.02257977708068],[-126.64215729323894,53.02247744188493],[-126.64186656172788,53.022516557423955],[-126.64159561885715,53.02244352016162],[-126.64138362009939,53.02231748776136],[-126.6412068369744,53.02217277924709],[-126.64103560813578,53.02202579921309],[-126.64086160394625,53.02187995453529],[-126.6407451905094,53.02171419194579],[-126.64056377024556,53.02157174869695],[-126.64036289601522,53.021438930825795],[-126.64016294082063,53.02130555183672],[-126.64005862751327,53.02113748180693],[-126.64003538669125,53.02095832229223],[-126.64000467716627,53.02077920327362],[-126.63992177859478,53.02060652579694],[-126.63978214928233,53.020448167100085],[-126.63963320379948,53.020292099812295],[-126.63949170939978,53.0201337508664],[-126.63933071277452,53.019982795398654],[-126.63913261800094,53.0198482839857],[-126.638893851002,53.019740885373274],[-126.63864770909242,53.019639684667865],[-126.63842741412348,53.01951873867763],[-126.63821451338275,53.01939271434185],[-126.6380053229133,53.01926498426711],[-126.6378044526527,53.01913216194046],[-126.63761100837952,53.018995381737014],[-126.63741940074344,53.01885747075189],[-126.63722965961597,53.01871842883234],[-126.63704177192231,53.01857937659407],[-126.63684092298753,53.01844656145623],[-126.63662248121344,53.01832391678059],[-126.63643552995029,53.01818430272486],[-126.63637406482383,53.018008145348944],[-126.63631354968207,53.017832547551485],[-126.63617300192443,53.01767418940083],[-126.6359971736242,53.017528911949825],[-126.63579448247938,53.01739721649756],[-126.63567438372402,53.017232589040916],[-126.63566701763676,53.01705277806741],[-126.6357147791595,53.01687547581839],[-126.63576909086524,53.016698702976804],[-126.63590487072308,53.01653885478133],[-126.63604720179988,53.01638064740847],[-126.63614081121618,53.016209820904095],[-126.6362054065259,53.01603466864361],[-126.6362812201407,53.015860576351955],[-126.63640667751766,53.0156979862929],[-126.6365030853349,53.0155277001052],[-126.63656206036426,53.015351457354456],[-126.63663787976076,53.01517792946918],[-126.63672866776285,53.01500655282672],[-126.63679232447535,53.014830849377056],[-126.63681017391389,53.01465146681666],[-126.63675617180952,53.014474713213566],[-126.63666584776986,53.014303193570285],[-126.63655227933228,53.01413741094887],[-126.63640616723697,53.013980759147934],[-126.63625540668828,53.01382581752321],[-126.63611394641293,53.01366746392335],[-126.63590293199269,53.01354030446448],[-126.63563385816309,53.01346387283006],[-126.63537579225489,53.013373379026106],[-126.63520555165758,53.01322582895859],[-126.63515715869929,53.013049044313036],[-126.63514047606988,53.012869283048346],[-126.63513218716493,53.01268948552899],[-126.63508006139753,53.01251272090128],[-126.63504006134086,53.01233477040924],[-126.63506819225428,53.01215533252572],[-126.63505991210124,53.011976090668846],[-126.6349537749193,53.011808016290495],[-126.63479932540172,53.0116542130759],[-126.63452933969202,53.01157779278394],[-126.63426487164313,53.01149573053729],[-126.63400496400205,53.01140692890609],[-126.63377827371349,53.01129104627617],[-126.63358578732696,53.011153133414076],[-126.63337571889164,53.01102596427152],[-126.63322219544138,53.010871589241034],[-126.63312631808759,53.01070178174916],[-126.6329542375079,53.010554793964644],[-126.6329189143094,53.01037626171779],[-126.63293304470645,53.01019689930845],[-126.63290797316033,53.010017747253805],[-126.63293237139688,53.00983888549362],[-126.63293902632871,53.00965900735404],[-126.63288225404463,53.0094822664439],[-126.63272225367893,53.00933073125403],[-126.63262916599908,53.00916034351361],[-126.63236930767054,53.00907265852802],[-126.63208745994665,53.00901366016006],[-126.63181018727622,53.00894791336043],[-126.63151930566816,53.00890801124577],[-126.63123294234593,53.00885855514508],[-126.63097951489284,53.008764109436065],[-126.63072608843325,53.00866965421354],[-126.63051881508214,53.00854022387568],[-126.63030970117502,53.008412479338],[-126.63011168890004,53.00827795186091],[-126.62993313758052,53.008134355764845],[-126.62976850352186,53.007984517611696],[-126.6295834703264,53.00784376142471],[-126.6293586529321,53.00772618389299],[-126.62910522803769,53.00763116938467],[-126.62887393869978,53.00751810762041],[-126.62864355986949,53.007403920005714],[-126.62842428102401,53.007281828995374],[-126.62823369680403,53.007143897125836],[-126.62808949783027,53.00698666868811],[-126.62793786658047,53.00683172072448],[-126.62777325294714,53.00668244437995],[-126.6276309072948,53.0065240849476],[-126.62753133711294,53.00635484808546],[-126.62738714341548,53.006197618715596],[-126.6271734179401,53.00607269892505],[-126.62700880159991,53.00592285673708],[-126.62680155296918,53.005793419656264],[-126.62653988540443,53.005707407774736],[-126.62627086982475,53.0056303986826],[-126.62605068271058,53.00550942858248],[-126.62582493838207,53.00539128443692],[-126.62557339367996,53.00529569655653],[-126.6253181498662,53.00520235987753],[-126.625064757364,53.005107901255094],[-126.6248427263315,53.00498805921184],[-126.62461054509033,53.004875549561696],[-126.62437374898681,53.00476699027205],[-126.62412862956838,53.00466407727638],[-126.6238550566727,53.00459325427586],[-126.62358513537582,53.00451679965073],[-126.62336404417249,53.00439639406057],[-126.62319665697021,53.00424768169892],[-126.62310082647335,53.004077309647315],[-126.62309167259303,53.00389807098849],[-126.62311610048233,53.003718654866475],[-126.6231601581591,53.003540811321834],[-126.62320982313905,53.00336350286044],[-126.62326136244253,53.00318674920516],[-126.62333533971395,53.00301267378036],[-126.62342897078096,53.0028418560172],[-126.62357318530145,53.0026847730081],[-126.6237822256803,53.00255649003277],[-126.62396964376195,53.00241710667129],[-126.62411197210442,53.00225892134527],[-126.62425524822038,53.00210128660004],[-126.62429743305341,53.00192345234079],[-126.62430693034743,53.001743558985396],[-126.62429962333621,53.001564310370064],[-126.62428018411039,53.001384561212056],[-126.62424956342824,53.00120600073803],[-126.62420869364782,53.00102805028539],[-126.6240942603446,53.000861694638516],[-126.62392411719378,53.00071468294624],[-126.62366889635908,53.0006207866965],[-126.62337543676252,53.00059208373906],[-126.6231552757126,53.00047054316044],[-126.6230148344027,53.00031216771069],[-126.62287253609333,53.00015436664925],[-126.62272001575982,52.99999997206702],[-126.62267748546084,52.99964498338957],[-126.62259565567086,52.99947341604425],[-126.62249331516419,52.99930418904296],[-126.62238445923441,52.999135561087336],[-126.62226817189618,52.99896921333264],[-126.62214166955422,52.998805725201144],[-126.62200217131922,52.99864789925316],[-126.62184228332109,52.998498589254595],[-126.62164526969359,52.99836404189169],[-126.62143342425001,52.998235175105144],[-126.62123083907105,52.99810234171033],[-126.6210356776282,52.99796554246304],[-126.62084885886931,52.9978253373161],[-126.62068894672433,52.99767490529771],[-126.62055502206864,52.99751368659497],[-126.62043408971937,52.997348481927595],[-126.62030389957563,52.99718725223159],[-126.62011802038867,52.99704759674129],[-126.6198941874647,52.99692831933669],[-126.61965190626093,52.99682369662544],[-126.6194077765368,52.996720212639865],[-126.61917933821387,52.99660431074955],[-126.61896753494649,52.996478245114815],[-126.618769622261,52.99634425339454],[-126.61858651778935,52.99620178401461],[-126.61840340645932,52.9960587585885],[-126.61819168011357,52.99593660857993],[-126.61790260494688,52.995886578699526],[-126.6176178555814,52.995876300443975],[-126.6173121815749,52.99583980265338],[-126.6170143210607,52.99582623890858],[-126.61671827123186,52.99580985908733],[-126.61642483329598,52.995780018286666],[-126.61614875789954,52.99572431340792],[-126.61583881801747,52.99571472726212],[-126.61554190054667,52.99570226646159],[-126.6152449265492,52.99568588777221],[-126.61503475267239,52.995671296666615],[-126.6147118727936,52.9956051918553],[-126.61435754383851,52.995623282200334],[-126.61412820900618,52.99550906052704],[-126.61415176866683,52.99533133536936],[-126.61418741783815,52.99515129714678],[-126.61421042244358,52.99506433926964],[-126.6142970198752,52.99498712603084],[-126.61441501790374,52.99482235524579],[-126.61450293204334,52.99464316502733],[-126.6146135368601,52.99448347052399],[-126.61472214641763,52.99431594245646],[-126.61481205278072,52.99414459436335],[-126.61483745854169,52.99396572976446],[-126.6148619155631,52.993786314295455],[-126.61491721808059,52.9936100995696],[-126.61492767876545,52.99343020125529],[-126.61494001342317,52.993250848938246],[-126.61492527386633,52.99306995251399],[-126.61476735577443,52.99292566934927],[-126.61462235354644,52.9927701041645],[-126.61454239620448,52.99259683569921],[-126.61452395095942,52.992417643789146],[-126.61451761105836,52.99223726820758],[-126.61459984867507,52.99205306920465],[-126.6146208721842,52.991893285602],[-126.61463778410538,52.991708306538484],[-126.61466879514691,52.99152997724604],[-126.61469513234431,52.991350551744475],[-126.61471025881119,52.99117118467425],[-126.61472072780846,52.99099184186848],[-126.61469855067935,52.990812669273964],[-126.61474449610205,52.99063481778149],[-126.61487653192465,52.99047445503819],[-126.61504982700508,52.9903284350796],[-126.61519308847075,52.99017025447657],[-126.6152942049919,52.99000164393321],[-126.61539907542577,52.98983356947912],[-126.61550767000779,52.98966604022395],[-126.61561815269526,52.98949906574589],[-126.61571360347202,52.9893260021356],[-126.6159029691568,52.989194464029644],[-126.61614585179262,52.989086742261264],[-126.61637460201509,52.98897012945116],[-126.61658266303607,52.98884129831601],[-126.61674468578055,52.988690861370145],[-126.61687669982595,52.98852993148467],[-126.61699839468577,52.98836569378293],[-126.61712665069894,52.988203097933535],[-126.61727273596527,52.98804714084892],[-126.61742723307643,52.98789281585222],[-126.61757329304403,52.98773629372823],[-126.61770998095592,52.9875758940939],[-126.61786074323767,52.987421588039915],[-126.61804808292618,52.9872811014084],[-126.61826082011905,52.98715448370248],[-126.6184961324115,52.987040629042035],[-126.61877434352428,52.9869893087387],[-126.61907065443042,52.986964221270306],[-126.61937077809425,52.986944715794806],[-126.61966994481637,52.98692409402929],[-126.6199557799753,52.98688392742711],[-126.62018169230137,52.9867656455345],[-126.62040571304773,52.98664568783494],[-126.62068183406956,52.98658036257052],[-126.62097738738078,52.98656703561912],[-126.62127511066909,52.98657555179842],[-126.62157359420043,52.986571737109124],[-126.62187007270336,52.98655841200328],[-126.62216825263735,52.986533862651605],[-126.62245490991043,52.98648697124601],[-126.62270921737485,52.986397104169974],[-126.6229445135619,52.98628324057832],[-126.62315255794756,52.986155518110586],[-126.6233605697287,52.986026674875774],[-126.62359589512288,52.985915059860766],[-126.62381241425854,52.98579344992158],[-126.62399880988234,52.985653514347014],[-126.62417111228459,52.98550637395458],[-126.62433965063708,52.985358123707606],[-126.6244922384947,52.98520324333358],[-126.62463732954801,52.98504615239237],[-126.6247861755983,52.98489072666582],[-126.62493502056033,52.98473530073681],[-126.62508385626309,52.984579318852596],[-126.62523269074194,52.98442332780199],[-126.62537028924346,52.98426459924692],[-126.62548725784266,52.98409870084769],[-126.62561080377893,52.98393556431213],[-126.62574931631791,52.98377626563992],[-126.62589346433992,52.983618622177886],[-126.62599111342976,52.983471875269785],[-126.62606284965823,52.983275396589114],[-126.62611729044428,52.983107579469696],[-126.62613603923685,52.982924273066814],[-126.62628871903175,52.98277666872047],[-126.62655053265763,52.982691791142905],[-126.62680675690906,52.982607507460436],[-126.62705216524827,52.9824851817551],[-126.62720518739172,52.982361106073604],[-126.62742171950846,52.98224229490591],[-126.62770630276331,52.98218363111273],[-126.62795493549804,52.98209098559882],[-126.62823360586601,52.98201106139448],[-126.62857076058856,52.9819750822446],[-126.6288316162817,52.981889648820136],[-126.62905079799086,52.981760735416266],[-126.62918320819942,52.98163116427883],[-126.62930669305186,52.98146634748346],[-126.62935348266818,52.98128680806284],[-126.62921316454167,52.98113404054287],[-126.62901338413829,52.980997278054744],[-126.62894274245146,52.98082564458641],[-126.62892237616092,52.98064646362832],[-126.62900563490237,52.980473453007995],[-126.6290384595171,52.98029622925875],[-126.62905819261195,52.98011683423556],[-126.62913771889556,52.979943843380575],[-126.6292865224097,52.979787855742714],[-126.6311222763345,52.97639618232344],[-126.63114943489724,52.97621506137895],[-126.63113372559275,52.976036420092186],[-126.63104164062074,52.97586490221112],[-126.63090682207601,52.975704827641444],[-126.6307321103248,52.975559524802094],[-126.63053333290462,52.97542556507145],[-126.63030128309245,52.975313064722734],[-126.6300453004431,52.97522087099447],[-126.62976644405096,52.97515904522097],[-126.62948758024291,52.97509666302958],[-126.62919337771845,52.97506966433099],[-126.62890542124018,52.97502301721171],[-126.62861927257234,52.9749724332907],[-126.6283358719882,52.974917916532064],[-126.62805517974545,52.97485778183913],[-126.62777722082143,52.97479371442631],[-126.62750107659534,52.974725145475965],[-126.6272222189558,52.97466275790758],[-126.62693972265367,52.97460655662473],[-126.62670400596387,52.97449743041283],[-126.62647381857805,52.97438268047706],[-126.6262390278782,52.974272427846294],[-126.62599684377811,52.97416670524462],[-126.62575097985852,52.97406435441389],[-126.625484971096,52.97398732717947],[-126.62519790172152,52.973937304629466],[-126.62491630356321,52.973877732053296],[-126.62468154444345,52.97376916148346],[-126.62440176532745,52.97370732794517],[-126.62412199378993,52.97364493790465],[-126.6238395164988,52.97358928491241],[-126.62354724243157,52.97356562365151],[-126.6232486614528,52.97355655339598],[-126.62295449660697,52.97353009477497],[-126.62267434123362,52.9735696746818],[-126.62241451492167,52.97365957192835],[-126.62213179739614,52.9737148519646],[-126.62184334444015,52.97376064127213],[-126.62155679690592,52.97380921674606],[-126.6212702732054,52.973859467756164],[-126.62098853388,52.97391754576232],[-126.62071348609169,52.973987349277564],[-126.62044508884253,52.97406608163519],[-126.62020789843376,52.97417378377968],[-126.61995250496109,52.97424796430049],[-126.61965554847184,52.974222632691074],[-126.6193648600093,52.97417989417651],[-126.61906985930537,52.97416071839515],[-126.61877236188727,52.974161716160836],[-126.61847393261601,52.974163282830126],[-126.61817637151154,52.97416092670024],[-126.61787880087645,52.97415688454225],[-126.61758113401606,52.97414723932197],[-126.61728434228543,52.97413310651404],[-126.61698683695553,52.974133544015174],[-126.6166894304382,52.97414182418878],[-126.61639211174497,52.97415514120277],[-126.61609453458003,52.97415165933818],[-126.61579690735516,52.97414368576805],[-126.61550158471687,52.97416708413252],[-126.61520307424058,52.97416304012802],[-126.61492027102167,52.97421325621248],[-126.6146915637963,52.9743276262742],[-126.61446850892831,52.974447013417546],[-126.61420865175505,52.974536327802184],[-126.6139217667585,52.97456247512781],[-126.61362335066492,52.97456514999086],[-126.61333675600179,52.97461146449674],[-126.61306249399378,52.97467172565034],[-126.6127691362732,52.974702386081425],[-126.61247675047079,52.97473528185196],[-126.61225644841315,52.97478628718688],[-126.61194603033812,52.97486242143475],[-126.61163648361406,52.97480519451545],[-126.61134120010607,52.974766386543216],[-126.611045281795,52.9747477512372],[-126.61074764453464,52.97474032971586],[-126.61045010272198,52.974738509757344],[-126.61015380761137,52.97475909382607],[-126.60989197796484,52.974841694426324],[-126.60967550678559,52.97496551158378],[-126.60940288683163,52.9750117441737],[-126.6092247045121,52.97487819811495],[-126.60917179967922,52.97470086709689],[-126.60908446981082,52.97452987258403],[-126.6088922699547,52.97439471312685],[-126.60867502715121,52.97426865616699],[-126.60844486665728,52.97415330635806],[-126.60823786936204,52.97402663092222],[-126.60808920114498,52.97386939896219],[-126.60789977376501,52.97373254719656],[-126.60767980406925,52.973611540499036],[-126.60745336305482,52.973493928434934],[-126.60723430497916,52.97337179563977],[-126.60702450884257,52.973244011911945],[-126.60681561503003,52.973114537835094],[-126.60661320310528,52.972982233092424],[-126.60642193421958,52.97284538840308],[-126.6062445437596,52.97270119282268],[-126.60608382071293,52.972548502539496],[-126.60594628541385,52.9723872840894],[-126.60584504035808,52.972219720274175],[-126.60579956541322,52.97203898765872],[-126.60576990352834,52.97185480306183],[-126.6057021679944,52.97168258455243],[-126.60555643512525,52.97153429868285],[-126.60535592369065,52.97140366727391],[-126.60513034621299,52.97128044343025],[-126.60490384497552,52.97115722389462],[-126.60469959116695,52.97102548104279],[-126.60450924637317,52.97088750785871],[-126.60432074403242,52.970747848549514],[-126.60412670348184,52.97061213481911],[-126.60392144220017,52.97047423714834],[-126.60369601695166,52.97036109483013],[-126.60340576737903,52.970345208348434],[-126.60311452001571,52.97039152202606],[-126.60283473919675,52.97045627009602],[-126.60254416055702,52.97048352935279],[-126.60224632449366,52.97045983486473],[-126.60197119848931,52.970392886393185],[-126.60174849671418,52.97027356784118],[-126.6015442727715,52.970142939932714],[-126.60137339756477,52.96999534197382],[-126.6011867743468,52.969855659093675],[-126.6009483760083,52.96974762474172],[-126.60071090378868,52.96963957622056],[-126.60047713817738,52.96952871140248],[-126.6002313784366,52.969427436496346],[-126.60002107804078,52.96932765687167],[-126.59999760816173,52.9693171265486],[-126.59972706034247,52.96924287034991],[-126.59945373218142,52.96917030404064],[-126.59917764740129,52.96910111280922],[-126.59889976863651,52.96903584754303],[-126.59862009764645,52.968976758313154],[-126.59832161739362,52.968972115772935],[-126.5980391891601,52.968915280297665],[-126.59774504843148,52.96888707346604],[-126.59746175248947,52.96883528803242],[-126.59718496043749,52.96878121886285],[-126.59688967179892,52.9688040058591],[-126.59659274355774,52.96877693980643],[-126.59632592788908,52.968703212723916],[-126.59616153346518,52.96855108317958],[-126.59609943690135,52.968378830500754],[-126.5960625170242,52.96820589460831],[-126.5958971306628,52.968049852189516],[-126.59563140427315,52.96811955024331],[-126.5954026700504,52.96823331855982],[-126.59518618255207,52.96835655383031],[-126.59496310425614,52.96847590447748],[-126.59474003173099,52.96859468989425],[-126.59448864767208,52.96869064168801],[-126.59421453803867,52.96876094354949],[-126.59396031489433,52.96885354682336],[-126.5937136444553,52.96895284382504],[-126.59341833784612,52.96897562219452],[-126.59313265967072,52.96901907729051],[-126.59285549086974,52.96907146234371],[-126.59255627345661,52.96908136726415],[-126.59227243531544,52.96912313464769],[-126.59202013326187,52.96922021524261],[-126.5917392005272,52.969270366471804],[-126.5914408357659,52.96927410565461],[-126.59116575786726,52.96920881711521],[-126.59089336171266,52.96913566158192],[-126.59062005715653,52.969063639501236],[-126.5903280419613,52.969053897290934],[-126.59002893289345,52.969071639187845],[-126.58973957576792,52.969052361907465],[-126.58947542756128,52.968967956195534],[-126.58918718207518,52.96896099819108],[-126.58906826676831,52.968993524326926],[-126.58894042216784,52.96905467380425],[-126.58882920678757,52.96910453440973],[-126.58868974524948,52.96913493067413],[-126.58839220537543,52.9691313698808],[-126.58809456433272,52.96911940910477],[-126.5877986574261,52.96909903919022],[-126.58749922139681,52.96909212391557],[-126.58712463827386,52.9690469274422],[-126.58702237882895,52.96900205866233],[-126.58670954935111,52.968971676301244],[-126.58641307444172,52.96897707867691],[-126.58616548374597,52.96907804071875],[-126.58588170926373,52.96912595096951],[-126.58585615026657,52.9693014505167],[-126.58578204737726,52.969473264939],[-126.58567058997917,52.96964133852574],[-126.58554692422815,52.96980275825041],[-126.58534920444565,52.96993708749569],[-126.5851580573883,52.97007530123371],[-126.58499224852572,52.97022460342624],[-126.58480015091543,52.97036114490717],[-126.58460054574688,52.97049436162263],[-126.58437835099323,52.97061255796298],[-126.58415428233094,52.970730207361655],[-126.58395938200667,52.970866205502325],[-126.58375881646822,52.970998304925494],[-126.58353099082319,52.971114286382864],[-126.58338485504758,52.971270212106674],[-126.58324433684702,52.97142890674216],[-126.58311500762309,52.971586425259424],[-126.58301941837489,52.97175722340029],[-126.58299389194215,52.97193607453657],[-126.58297677345138,52.9721154488117],[-126.58292043427193,52.97229222017648],[-126.5827817909984,52.972450904862455],[-126.58269180145385,52.97262223073528],[-126.58263451996262,52.97279788600066],[-126.582629530903,52.97297832070857],[-126.58261054530898,52.97315770404009],[-126.58253920512354,52.97332893750525],[-126.58257297730691,52.973479490198606],[-126.58254967389281,52.97368466766093],[-126.58254930872786,52.97386171773242],[-126.58256575362088,52.974041481595826],[-126.58256168883175,52.97422079103617],[-126.58246147432652,52.97439441715708],[-126.58235361391591,52.97455462529446],[-126.58221214825899,52.974712767198646],[-126.58206880859807,52.974870353408264],[-126.58194701788327,52.97503567691275],[-126.58175764036588,52.97516827301659],[-126.58153449625426,52.97528815350789],[-126.58136115499944,52.97543468125491],[-126.58123185256241,52.9755955587713],[-126.58095465053225,52.975718510603194],[-126.58056707425068,52.97574955514539],[-126.58042973315277,52.975800656751254],[-126.58022541776124,52.97593276806919],[-126.58002859312813,52.97606820381769],[-126.57983458020212,52.97620418118197],[-126.57961801471257,52.976327951977595],[-126.57939109702234,52.976444485157984],[-126.57912263832371,52.97652536423286],[-126.57888144644703,52.97662179653912],[-126.57871841825565,52.97677275177476],[-126.57845274638926,52.976852495049854],[-126.5781661513008,52.97690264115421],[-126.57788239184997,52.97695614328403],[-126.57761294852287,52.977033097265824],[-126.57735581895247,52.97712344593007],[-126.577136413242,52.97724554063786],[-126.57697801713502,52.9773953501273],[-126.57693193560732,52.97757374404173],[-126.57687184816977,52.97775052116129],[-126.5767780549497,52.9779190635141],[-126.57668709688633,52.97808983300811],[-126.57656620098197,52.97825402555097],[-126.57641720960189,52.978409955690154],[-126.57628320848747,52.978570850334805],[-126.57619411243581,52.978741610260144],[-126.57612654349501,52.97891730287605],[-126.57603558067983,52.97908807176511],[-126.57591841790182,52.97925281003189],[-126.57576847282678,52.97940817912992],[-126.57559883328892,52.97955523556986],[-126.57544233408812,52.97970839511629],[-126.57528770684304,52.97986211005679],[-126.5751208922607,52.98001083727489],[-126.57498026124192,52.980165595062225],[-126.57489211195931,52.98033746973256],[-126.57474309950632,52.98049283283906],[-126.57458284016633,52.98064433311549],[-126.57445979840789,52.98078891947503],[-126.57431850967107,52.980963858496075],[-126.57418914122407,52.98112416310263],[-126.57399792264648,52.98126236669807],[-126.57379072505819,52.98139223913397],[-126.5735788096066,52.98151877249243],[-126.57338194525383,52.98165363189211],[-126.57317191552767,52.98178184062332],[-126.57291753102902,52.981871601053655],[-126.57265091369602,52.981953011739364],[-126.57239688161711,52.98206910676287],[-126.57214751203036,52.98218573438444],[-126.57190133693324,52.98226144134913],[-126.57166658544398,52.982216637577665],[-126.5714425222604,52.98206420856513],[-126.57122260577894,52.98194257867751],[-126.57097869435057,52.98184010503765],[-126.57073478421819,52.98173763985058],[-126.5704715427416,52.98165375234992],[-126.570182696025,52.98160920745],[-126.56990479506355,52.98154499477891],[-126.56964798073757,52.98145379526016],[-126.5694455697614,52.981315824958145],[-126.5691762691299,52.98126725674594],[-126.56887040116733,52.98127433622355],[-126.56857105485362,52.981280262894046],[-126.56828623142256,52.98132645864267],[-126.56800052702859,52.98137714015107],[-126.56770711307551,52.98140825292662],[-126.56741069845498,52.981424803280554],[-126.56711430608091,52.981443038090134],[-126.56681892837109,52.98146799058191],[-126.56654562334087,52.981538778839145],[-126.56630859803568,52.98167214301224],[-126.56606897475349,52.98175061216204],[-126.56582402239415,52.98184927631983],[-126.56560458162329,52.98197191386125],[-126.5652917557452,52.98187704727487],[-126.56488078764986,52.98183755726963],[-126.56459099786257,52.98179131790468],[-126.56431589510335,52.98172708765795],[-126.56407012866259,52.98162405288263],[-126.56379404285917,52.98155645550773],[-126.56353910708725,52.98146523375531],[-126.56328758422437,52.9813498988101],[-126.5631448979668,52.98121106756552],[-126.56303383910567,52.981136521233594],[-126.56284716297606,52.98112789266359],[-126.56261264968093,52.98109987803496],[-126.5623159981333,52.98109848789298],[-126.56202147881484,52.98111726572072],[-126.56172903948695,52.98108111693168],[-126.56146769266907,52.980998885671895],[-126.56127372735837,52.980861981752724],[-126.5611048069215,52.98071375276491],[-126.56088215821177,52.98059491356437],[-126.56064011536228,52.98049016860817],[-126.56038609596911,52.98039612982053],[-126.56012932376083,52.98030602998065],[-126.55985417822042,52.98023729837399],[-126.55957810824194,52.98016970003137],[-126.55930480788201,52.98009928203919],[-126.55904801760077,52.980007494623294],[-126.55880507207661,52.97990387073236],[-126.55856120238987,52.97980138023571],[-126.55827152162107,52.97976184816778],[-126.55797514433247,52.97978062473576],[-126.55769418988265,52.979837417360855],[-126.55740562612283,52.97988304875064],[-126.55707917945304,52.97995686331642],[-126.55705026396457,52.98009875419784],[-126.55684088411961,52.980137277625936],[-126.55644920558075,52.98007245924054],[-126.55618228608668,52.979990798393125],[-126.55591630780398,52.979909132502435],[-126.55564215575325,52.97984374805803],[-126.55533793445915,52.979833420637355],[-126.55504756493463,52.97981293327332],[-126.55474995361512,52.979808175961665],[-126.55446029831867,52.97977031973175],[-126.55417966407043,52.979708888801376],[-126.55389539457346,52.97965475338893],[-126.55363036262959,52.97957419845698],[-126.55336439920346,52.97949309151013],[-126.55309570429523,52.979416470022926],[-126.55282422666687,52.97934154628609],[-126.55255551154423,52.97926436787087],[-126.5522886559661,52.97918550378529],[-126.55202269019897,52.97910382906837],[-126.55175673999301,52.97902327423039],[-126.55148251246595,52.97895227772946],[-126.55119114574796,52.97892562700713],[-126.55089604858435,52.97889899300358],[-126.55060453031227,52.9788605802368],[-126.55031844914122,52.97880980633473],[-126.55006083328288,52.978723606005445],[-126.54992161787878,52.97856177576023],[-126.5497827806378,52.97842795736012],[-126.54943319358928,52.97837076321008],[-126.5491254054541,52.978372197736014],[-126.54882053806755,52.97838370281809],[-126.54852200446504,52.97837948991403],[-126.54822537964321,52.97837862902836],[-126.54793266602279,52.97839175161922],[-126.54766126528828,52.97846641371764],[-126.54736672877246,52.97848290502268],[-126.54706820188314,52.97847925316022],[-126.5467718140677,52.97849687212146],[-126.54648707201413,52.97854973817013],[-126.54621662942431,52.97862606881928],[-126.54596128114912,52.978716896074694],[-126.54572578481907,52.97882780075398],[-126.5454638913168,52.978916980874445],[-126.54530158186651,52.97906171823265],[-126.54517780732291,52.979228697068805],[-126.54503434393374,52.97938847875076],[-126.54484860532546,52.979525479927325],[-126.5445744012453,52.97960014776776],[-126.54432855006226,52.97970492989691],[-126.54411558708829,52.979828053220835],[-126.54402450100021,52.97999936201639],[-126.54403239827349,52.98017916928303],[-126.54403563951287,52.980359006987136],[-126.54402394191088,52.98053890466498],[-126.54410544032496,52.98071109302323],[-126.54431965491817,52.98083112319255],[-126.54462096786726,52.98090537277048],[-126.54490071303691,52.980897912248594],[-126.54518972098411,52.98088537022605],[-126.54542247952025,52.980996348222476],[-126.54560155663323,52.98114007019647],[-126.54582415780988,52.98125950301401],[-126.5460532393275,52.981374414224796],[-126.54621469153994,52.98152494020048],[-126.54632782780043,52.98169137760041],[-126.5463366682177,52.98187062441317],[-126.54632124170519,52.982049983692086],[-126.54631889611053,52.98222984707348],[-126.54632961603322,52.982411326214006],[-126.54639620997159,52.98258413773219],[-126.54652138990262,52.98274323994427],[-126.54668658676185,52.98289542415841],[-126.5468508379122,52.98304593618073],[-126.54705583055379,52.983172727372875],[-126.54734020140886,52.98323360205299],[-126.54758679743871,52.98333050011662],[-126.54781224312866,52.9834515922264],[-126.54801637253713,52.983583988489954],[-126.54813505371783,52.98374423969794],[-126.54824167389107,52.9839101406486],[-126.54836226534607,52.98407486490898],[-126.54848472373018,52.98423845083487],[-126.54861275073083,52.98440089912051],[-126.54875100376958,52.984559929042526],[-126.54882694651435,52.98473326025814],[-126.54888892611741,52.98490946228239],[-126.54900020888385,52.985075340746306],[-126.54914033136458,52.98523437042173],[-126.5492692968815,52.985396248795354],[-126.54940106209246,52.98555754921213],[-126.54952267544186,52.985727870134994],[-126.54957515688542,52.98589066047331],[-126.54957467563956,52.986070514877184],[-126.54959100075395,52.98625028193866],[-126.54959145260166,52.98642956719854],[-126.54957790391015,52.98660891771578],[-126.5495802287586,52.986788758959506],[-126.54959655417228,52.9869685259431],[-126.54961658914829,52.987147719818836],[-126.54962263843997,52.98732697888431],[-126.54961844073814,52.98750685046337],[-126.54960583936088,52.98768675224087],[-126.5495848271327,52.987866137420895],[-126.54954141100062,52.988043385934056],[-126.54948491887669,52.9882206953639],[-126.54939663534188,52.988391429650086],[-126.54929432825243,52.9885605528617],[-126.54922847627091,52.988735664631136],[-126.54914674257869,52.98890860923964],[-126.54904442595688,52.989077167461986],[-126.5489346306157,52.98924463985653],[-126.54884073785145,52.989414834967484],[-126.5487533891874,52.989586684817965],[-126.54866603981712,52.98975853458603],[-126.54855998029237,52.989926553914906],[-126.54844736008356,52.990092918353305],[-126.5483487841008,52.99026257896711],[-126.54824927455552,52.99043167906557],[-126.54810673929356,52.990593700065105],[-126.54791435181623,52.99072402159429],[-126.54765044423536,52.990807047513734],[-126.5473752534614,52.99088340196774],[-126.54710758312466,52.99096420304038],[-126.5468408593531,52.991045554894946],[-126.5465845051562,52.99113583136384],[-126.5463602020912,52.99125172223732],[-126.5461585268393,52.99138600127115],[-126.54591444144035,52.99148798061918],[-126.54570331876178,52.99161333825554],[-126.5455269815791,52.99175870429124],[-126.54529420336526,52.99186959432665],[-126.54504353942211,52.99196768483426],[-126.54479189123764,52.99206128821529],[-126.5445440021702,52.99215824427429],[-126.54427631119371,52.99223847413758],[-126.54402089915864,52.99232986110094],[-126.54378906868689,52.99244186426194],[-126.5435657339611,52.99256222735946],[-126.5433395563462,52.99267868571021],[-126.54309832051389,52.99278512811447],[-126.542874975549,52.9929038135796],[-126.54269296741242,52.99304583968659],[-126.5425166212002,52.99319176581462],[-126.54239177539415,52.99335257755085],[-126.54231281091397,52.99352662457593],[-126.54223759282914,52.99370065429632],[-126.54213149794438,52.99386865848261],[-126.5420001171804,52.994030064525575],[-126.54186687706978,52.99419091419578],[-126.54172049410612,52.99434677717443],[-126.54151219428465,52.99447547561794],[-126.54128506035065,52.99459193421431],[-126.5411311887847,52.99474503392243],[-126.54095474393179,52.9948853552661],[-126.54071533427988,52.99499009889975],[-126.54049949972494,52.995113792088475],[-126.54032144140055,52.995274280570634],[-126.54004360812112,52.99543971694353],[-126.5398229625893,52.99547882572222],[-126.53952450893131,52.9954902767005],[-126.53923300557389,52.99553531129424],[-126.53897664360561,52.99562836768004],[-126.53873823644204,52.995738705320605],[-126.5385308819295,52.99587019982631],[-126.53834140317004,52.99601392928787],[-126.5380970533713,52.99609740877258],[-126.53779306015542,52.99611391856301],[-126.5375015011499,52.9961550316841],[-126.53722540271401,52.99623696878808],[-126.53701884632335,52.99635892787293],[-126.53688654101491,52.99652256417675],[-126.53681695771819,52.99670161124549],[-126.53682663719394,52.99687692681359],[-126.53689141192676,52.997055917857566],[-126.53693567379175,52.99723500226569],[-126.53696125187007,52.997413615943465],[-126.53698498588605,52.99759279378252],[-126.53701430388199,52.997771946166246],[-126.53705668660764,52.99794991848025],[-126.53710931947364,52.99812727931918],[-126.53716008663231,52.99830465758194],[-126.53719685676627,52.99848265536368],[-126.5372065807024,52.99866133213045],[-126.53719206433573,52.998841804604126],[-126.5371719419472,52.999021746809994],[-126.53716487634601,52.999201064760555],[-126.53723799107456,52.99937441471615],[-126.53730460295556,52.9995494705652],[-126.5373507063836,52.999727425644835],[-126.53737630263677,52.999906038900114],[-126.53737935190063,52.999999585233525],[-126.53739560882396,53.00017879680526],[-126.53740908096565,53.00035858579791],[-126.53742162036663,53.000537814271965],[-126.53743041923876,53.000717615559786],[-126.53742990136101,53.0008974682561],[-126.53736958755114,53.0010731023472],[-126.53729059606397,53.00124658938854],[-126.53720878973282,53.001419524430794],[-126.5371204215566,53.001590804001324],[-126.53703768813006,53.00176374310621],[-126.53697363874399,53.00193940286871],[-126.53694603398385,53.00211824926867],[-126.53693710761434,53.00229814009153],[-126.53699533053756,53.00247435455851],[-126.53707963474945,53.002646532808676],[-126.53718256173603,53.00281526455041],[-126.53730876412968,53.00297885221907],[-126.53726059354425,53.00315499544007],[-126.53723018201508,53.003333854567266],[-126.53716333165328,53.00350896227411],[-126.5371179812364,53.003686213062636],[-126.53709972274451,53.0038661462377],[-126.53711038043163,53.00404538294135],[-126.53713504457411,53.0042245558286],[-126.53717370118535,53.00440254442291],[-126.53720302467492,53.00458169603617],[-126.5371978318495,53.00476156064685],[-126.53709730335363,53.00493066312254],[-126.53692650232395,53.00507766585932],[-126.53673127844,53.005213583134854],[-126.53652666454491,53.005343931168454],[-126.53631734732119,53.00547206812196],[-126.53610707382957,53.005599079539955],[-126.53590151551722,53.00572943969947],[-126.53569878442941,53.005861462957185],[-126.5354960300327,53.00599292120851],[-126.53529517014567,53.00612549999144],[-126.53509617467864,53.00625918152343],[-126.53490188728244,53.006395647158406],[-126.53471323380869,53.00653489272134],[-126.53454992688263,53.00668521942292],[-126.5344044290297,53.00684219732815],[-126.53425142825742,53.00699640321549],[-126.53406933093821,53.00713841482066],[-126.5338834999477,53.00727932249925],[-126.53373892335026,53.007436286373206],[-126.53366551219912,53.00761030073945],[-126.53363041614337,53.00778862379829],[-126.53359251229881,53.00796695953027],[-126.53351162588271,53.00814045177734],[-126.53337548781468,53.008300182738516],[-126.53321402823079,53.008451063773364],[-126.53305633688841,53.00860360384852],[-126.53290050328235,53.00875670004663],[-126.53274749015856,53.008910903808356],[-126.53261696807434,53.009072293704236],[-126.53248926650627,53.00923478226591],[-126.53233905686086,53.009390093310785],[-126.53219073487912,53.00954596037367],[-126.5320423967629,53.009701818339444],[-126.53188657040998,53.00985491303115],[-126.53171947126303,53.010003576207204],[-126.53153455293702,53.01014504048579],[-126.53131297217139,53.0102653706267],[-126.53104702304687,53.01034669060773],[-126.53075721253617,53.010386648870785],[-126.53048175974125,53.01045456399815],[-126.53020442517409,53.010521357443096],[-126.52991850106883,53.01057251040095],[-126.52963253329533,53.010621412837956],[-126.52934661475211,53.01067312015692],[-126.52906354406386,53.01072929611282],[-126.52879093486756,53.010801676608985],[-126.52853160941665,53.01089024010355],[-126.52828171349275,53.01098772499997],[-126.52803844131998,53.0110919028639],[-126.52779233342403,53.01119273132328],[-126.5275424409252,53.011290770386466],[-126.52729538981464,53.01139160200534],[-126.5270841272121,53.0115180452791],[-126.52694698651264,53.011674411245394],[-126.52694268937267,53.01185539993962],[-126.52693465250093,53.01203472005003],[-126.52693407501056,53.01221456259709],[-126.52693630541528,53.012394401544974],[-126.52694881108329,53.01257418560447],[-126.52697249640872,53.01275336391574],[-126.52701763801058,53.01293077003039],[-126.52709727662388,53.013104095634674],[-126.52716852118382,53.01327857921226],[-126.527236965367,53.01345363102956],[-126.527305418152,53.0136281269726],[-126.52740389455514,53.01381593492075],[-126.5272311587247,53.013888420753105],[-126.52691760898792,53.0138976655273],[-126.52662200402149,53.013923081444986],[-126.52632937899301,53.013963605926726],[-126.52608694851239,53.014062728885875],[-126.5259273369131,53.01421471150049],[-126.52582392628224,53.01438325122639],[-126.52574018100745,53.014556185289514],[-126.5256452192857,53.014728048732614],[-126.52546678126107,53.014867788774815],[-126.52521686189058,53.014965831661996],[-126.52496789606835,53.01506498132493],[-126.52473966684187,53.01518029028347],[-126.52454624635766,53.01531673395228],[-126.52438286173663,53.01546761057373],[-126.52426072446173,53.01563119413786],[-126.52417789641142,53.01580412284893],[-126.524053869554,53.01596602928839],[-126.52389705730118,53.01611967278738],[-126.52376835335338,53.01628159965998],[-126.52368177409922,53.01645342407502],[-126.52360273955014,53.01663026175166],[-126.52340068548826,53.01674936911826],[-126.52312144552818,53.016817283369704],[-126.52283831872028,53.016872879468885],[-126.52255233489913,53.01692457019304],[-126.52226635848648,53.016975704407294],[-126.5219813280554,53.01702851003909],[-126.52169438161432,53.01707739714112],[-126.52143115767373,53.01715811804709],[-126.52139600930785,53.017337001170645],[-126.52131784150603,53.017509907035034],[-126.52118163438558,53.01767017878445],[-126.52099570776686,53.01781050952955],[-126.52077498326501,53.017930815237904],[-126.52054014364838,53.018042783375925],[-126.52034668983619,53.01817866417986],[-126.52025072279723,53.01834772143029],[-126.52023897022715,53.01853098296059],[-126.52001058610321,53.01863619838859],[-126.51977010475979,53.018745384006],[-126.51954090874104,53.01886013098778],[-126.51928151357488,53.0189497942495],[-126.51902213225112,53.019039456870416],[-126.51880041366437,53.019156401556344],[-126.51861165753324,53.01929617605921],[-126.51842385489878,53.01943706657322],[-126.5182266523033,53.01957408072578],[-126.51806321647175,53.0197227072296],[-126.51797474669269,53.01989509105544],[-126.5178797142999,53.02006470678601],[-126.51768250143662,53.020200034741364],[-126.5175124912105,53.020346448218845],[-126.51738830845024,53.02049994831654],[-126.5170881467079,53.02053936201214],[-126.51682387060644,53.02045872215432],[-126.51657430850096,53.020359524222364],[-126.51633493631644,53.02025300226807],[-126.51610201832875,53.0201402932151],[-126.51587003446642,53.020028135393204],[-126.51563249907315,53.01991879819535],[-126.51539490929079,53.01980610816007],[-126.51515366239006,53.019698471471415],[-126.51490139545132,53.01960712544312],[-126.51462251750002,53.019553436861216],[-126.51431892895292,53.01954019407002],[-126.51402008929942,53.01953421766681],[-126.5137203763047,53.019533837944586],[-126.51342173308771,53.019544102224444],[-126.51312796820737,53.01957115232311],[-126.51283240197522,53.019604932636625],[-126.51253599706745,53.01964600370969],[-126.51224716838526,53.01969599632888],[-126.51197157162713,53.01975938600955],[-126.51172335290057,53.01984729874553],[-126.51152145941525,53.019983757160034],[-126.5113383582536,53.02013021843136],[-126.511158956637,53.020273866555286],[-126.5109898767376,53.02042250753414],[-126.51083299410234,53.02057557751267],[-126.51069579796793,53.02073472041411],[-126.51057640640869,53.02089995341534],[-126.51046449644565,53.02106627442192],[-126.5103544663406,53.02123370768832],[-126.51025005066698,53.021402237067086],[-126.51015311677098,53.02157185449849],[-126.51007021970686,53.021744772695904],[-126.51001445913779,53.02192205557661],[-126.50999232992747,53.02210087829146],[-126.50999262847876,53.02228128032788],[-126.5099845247523,53.022461153925505],[-126.50994650854365,53.02263948050629],[-126.50989639544004,53.02282066511236],[-126.50982662162775,53.02299688782938],[-126.50972495275508,53.023162043120735],[-126.50953418751205,53.023293967626124],[-126.50929091302706,53.023407625481234],[-126.509072961787,53.023530146654025],[-126.50885500100838,53.02365322322725],[-126.5086370471434,53.02377573461346],[-126.508408706723,53.023889335175106],[-126.50818036497397,53.024002926323725],[-126.50799624019423,53.02414490428251],[-126.5077500158532,53.02424625485456],[-126.50746440315682,53.02425588305748],[-126.50722863130318,53.02413924274532],[-126.50700497290403,53.02401975309705],[-126.50677391967326,53.02390645314181],[-126.50654472169876,53.023792024250355],[-126.50631459200685,53.02367703416956],[-126.50608354248187,53.02356373283954],[-126.50585248757098,53.02344987530179],[-126.50563161680718,53.02332924160119],[-126.50540706761878,53.02321199375499],[-126.50514000849788,53.02313301608999],[-126.50484732851649,53.023096736045595],[-126.50455463398977,53.02306044637455],[-126.50426200151112,53.02302808200283],[-126.50396663415177,53.023001895911015],[-126.50367041890824,53.022983547350876],[-126.50337249098372,53.022976975258366],[-126.50307472072721,53.02298496845302],[-126.5027799910033,53.02301256145378],[-126.50249775069105,53.023069224977576],[-126.50224679060494,53.02316610220538],[-126.50202504402772,53.02328637645486],[-126.50181741494107,53.0234155633181],[-126.50161261291963,53.023546414072584],[-126.50139933281764,53.02367169790885],[-126.50116345773155,53.0237813901092],[-126.50089639858882,53.023860395566906],[-126.50060264870689,53.023891896244265],[-126.50030473953977,53.02388867785006],[-126.50000759357422,53.02387033299449],[-126.49971137574235,53.02385085398098],[-126.49941342740853,53.02384427195764],[-126.49911771045333,53.02386737787842],[-126.49884305895797,53.023936326148515],[-126.49859493343749,53.0240365450623],[-126.49835998183568,53.02414678346798],[-126.49811844147936,53.02425201137625],[-126.497855189246,53.024336605357185],[-126.49757579284648,53.02439884757046],[-126.4972897145107,53.02444935635869],[-126.49700175029113,53.02449707558875],[-126.49671853812387,53.02455260874311],[-126.49644484578184,53.02462379732247],[-126.49617589204978,53.02470167945423],[-126.49591356589542,53.024786820933045],[-126.49566919600325,53.02488981461164],[-126.49547186856007,53.025024549363025],[-126.49536457774734,53.025191956461676],[-126.49532462367173,53.02536972117052],[-126.49531738360632,53.02554959850588],[-126.49531481952738,53.02572944722751],[-126.49529355919722,53.02590881864089],[-126.49523771842144,53.02608497364213],[-126.49515944110065,53.026258981731345],[-126.49502779661735,53.02642033224576],[-126.4948191700714,53.02654782533498],[-126.49459268434752,53.02666474354995],[-126.49436526461834,53.026781109455996],[-126.4941350088146,53.02689524576249],[-126.49390380407573,53.02700882980476],[-126.49367165867535,53.02712128784048],[-126.49343763159284,53.027232641727686],[-126.49320172262348,53.02734287352825],[-126.49296579952856,53.02745199335584],[-126.49272800111596,53.02756055579274],[-126.49248926863028,53.0276685568991],[-126.49225051354875,53.02777600183101],[-126.49201082450728,53.0278828943885],[-126.49177020140432,53.02798922560246],[-126.49152955562039,53.02809499167071],[-126.49128892368223,53.02820076614303],[-126.49104734917798,53.02830653507164],[-126.49080576704813,53.028411747752244],[-126.49056419024413,53.02851752464236],[-126.49032353204741,53.02862273247139],[-126.49008006579078,53.02872683095006],[-126.48983188509388,53.02882646644234],[-126.48957991431388,53.02892275559491],[-126.48932606389452,53.0290168109726],[-126.48907031038121,53.029109188434106],[-126.48881456429983,53.02920100952772],[-126.48855881506097,53.02929395058107],[-126.48830496016163,53.02938800374154],[-126.48805298907786,53.02948485431223],[-126.48780573193064,53.02958503741392],[-126.48756412811781,53.0296896876322],[-126.48732819025632,53.02979990753059],[-126.48710073383562,53.02991625922071],[-126.48689772069679,53.030048196739735],[-126.48672476452909,53.03019402077261],[-126.48657525473553,53.03034926770529],[-126.48643792766305,53.03050894624709],[-126.48630623676911,53.0306702776644],[-126.48616984896738,53.030829951984956],[-126.4860212677514,53.030985759051106],[-126.48586988488618,53.03114101271065],[-126.48573911626336,53.031302339620986],[-126.48565610939087,53.03147468385973],[-126.48561237329646,53.031652459997794],[-126.48558640713448,53.03183184822285],[-126.48557164725915,53.03201119031089],[-126.48556436475154,53.03219106634662],[-126.4855580170799,53.03237037378007],[-126.48554886657575,53.03255024849878],[-126.4855322385096,53.032729598191665],[-126.48550066162538,53.0329084535937],[-126.48542325180296,53.03308188600639],[-126.48531964943824,53.03325038826809],[-126.48522633735682,53.03342108912285],[-126.48513956722654,53.03359288349721],[-126.48504812794711,53.03376414120727],[-126.48493983257376,53.03393154183745],[-126.48478656096442,53.03408623680647],[-126.48455810131408,53.034199790517],[-126.48432310398898,53.03431280586833],[-126.48418104235137,53.03446801873046],[-126.48411579845066,53.03464364119202],[-126.48407579483126,53.03482196581518],[-126.48402458575096,53.0349992158576],[-126.48390504398259,53.03516386473022],[-126.48370762504105,53.03529801428619],[-126.48354401422264,53.03544714732661],[-126.48345535890893,53.035618392167656],[-126.48339011023941,53.035794014110024],[-126.48328929403324,53.03596306758499],[-126.48314538066104,53.036120527606734],[-126.48297989676009,53.036269667440486],[-126.48279938959436,53.03641327492234],[-126.48256247550435,53.03652348864893],[-126.48237720160087,53.03665815090414],[-126.48232316107119,53.036834291048265],[-126.4822766047051,53.0370115210693],[-126.48220199008814,53.037185504181075],[-126.48214701941775,53.03736276848955],[-126.48206397329643,53.0375339801754],[-126.48194162003225,53.03769975874343],[-126.48185200148865,53.03786875607037],[-126.48192778558946,53.038043810014734],[-126.48204454374167,53.038209167784856],[-126.4821361554631,53.03838023067482],[-126.482137264548,53.038559506751795],[-126.48207574841348,53.03873567711154],[-126.48202545281946,53.038912922097275],[-126.48196767183497,53.03908907710575],[-126.48191550730037,53.03926632963654],[-126.48183620316458,53.03943976668041],[-126.4817353657081,53.03960825376114],[-126.48157736745284,53.03976016643531],[-126.48147184418396,53.03992811660183],[-126.48143464041716,53.040106984062405],[-126.48136843730506,53.04028149671985],[-126.48124137877312,53.04044448770501],[-126.48110587341732,53.040604707226926],[-126.48100316215877,53.040773201182645],[-126.48096128649136,53.04095153166493],[-126.48095024021558,53.04113085699549],[-126.48095320397749,53.0413106899518],[-126.4809561826083,53.041490513864716],[-126.48095448345131,53.041670365783816],[-126.4809639869907,53.041849607302694],[-126.48095668317326,53.04202947305812],[-126.48090637900565,53.042206717227],[-126.4808130294966,53.04237741370053],[-126.48070282094777,53.04254426146914],[-126.48059728719822,53.04271220161797],[-126.4805161116666,53.04288508923009],[-126.48046767927477,53.04306289022466],[-126.48043233048762,53.04324119369566],[-126.48040632896115,53.0434200148621],[-126.48038407012875,53.0435993855038],[-126.48036273777001,53.04377875235142],[-126.48033580905695,53.04395758618112],[-126.48029672240037,53.04413590472386],[-126.48022488840142,53.04431043023379],[-126.48015773213832,53.04448494561618],[-126.48014576115325,53.0446648300146],[-126.48016460353128,53.044844033287696],[-126.4801741108334,53.04502383924508],[-126.48013689084826,53.04520215002442],[-126.48006412140714,53.045376123355666],[-126.47996889319506,53.045546826445374],[-126.47984836424557,53.045711465062624],[-126.47970159733538,53.045867810905904],[-126.47952197992765,53.046011408746025],[-126.47932449669256,53.04614555012254],[-126.47912327137782,53.04627802111194],[-126.4789323767587,53.04641606128549],[-126.47876870400663,53.04656630724787],[-126.4786388089245,53.046728185725215],[-126.47852576408604,53.04689447772787],[-126.47842865160442,53.04706463125688],[-126.47835026034029,53.04723806135538],[-126.47829619599688,53.04741476327619],[-126.47826925617082,53.047593587293136],[-126.47829275556805,53.04777277166575],[-126.47836853004631,53.047946706440975],[-126.47846760281877,53.048116055773015],[-126.478568544951,53.04828540639422],[-126.4786489788229,53.048458757326834],[-126.47867715261746,53.048637357858425],[-126.47861934450255,53.0488135102317],[-126.47850161763161,53.0489787004728],[-126.47835013683849,53.04913338711729],[-126.47817894599623,53.04928086567804],[-126.47800118377268,53.04942500909211],[-126.47782342034192,53.04956915222643],[-126.47765504879145,53.049717739060796],[-126.47750731185592,53.04987352091852],[-126.47739520230664,53.05004037243024],[-126.47735516454337,53.05021812841287],[-126.47737587251773,53.05039788870218],[-126.47742271533423,53.05057529332941],[-126.47746674830317,53.050752718249406],[-126.47748092433687,53.0509324959206],[-126.4774735979466,53.051111804771374],[-126.47745786166844,53.05129171234392],[-126.47744400246266,53.051471047574644],[-126.47744415654084,53.05165088188056],[-126.47747326057473,53.051830043324394],[-126.47745193933173,53.05201052917241],[-126.47723747167579,53.05213297442729],[-126.47715251455713,53.05230475344453],[-126.47710592588056,53.05248253557205],[-126.47707709431394,53.052661375366974],[-126.47704266509989,53.05283967302401],[-126.47699513356297,53.053017458858214],[-126.47696537429852,53.05319630231517],[-126.47689913229547,53.053370802175934],[-126.4768160376672,53.05354369378271],[-126.47673108236201,53.0537160370593],[-126.47664611131655,53.0538883713545],[-126.47654290135219,53.054099440677305],[-126.47635384447027,53.0542385889551],[-126.47616290494157,53.05437661504979],[-126.47597009552858,53.05451465732164],[-126.47577915351005,53.05465268277374],[-126.47559009166004,53.05479182978404],[-126.47540478486789,53.05493263761257],[-126.47522510823974,53.05507566345746],[-126.4750529431193,53.055222020266854],[-126.47489204586012,53.05537336922064],[-126.4747395872206,53.05552805444762],[-126.47459089875227,53.055684400561084],[-126.47444218792565,53.05584018183085],[-126.4742887990408,53.05599487015862],[-126.4741269566781,53.05614510128446],[-126.47395102707186,53.05628979522515],[-126.47376288507792,53.05642949119599],[-126.47356723765411,53.05656529075231],[-126.47336970528791,53.056701106489605],[-126.47317781183291,53.056838575537874],[-126.47299530258452,53.05698104439365],[-126.47282219509192,53.05712740150228],[-126.47264910269908,53.05727656398794],[-126.47247977415769,53.05742682266785],[-126.47231606113975,53.057579308569586],[-126.47216173115346,53.057733988723015],[-126.47202049235925,53.05789086626921],[-126.47189703935615,53.05804990456561],[-126.47184480945809,53.05822715069454],[-126.47187584679826,53.05841247220998],[-126.47195437868336,53.0585835932761],[-126.4720627642361,53.05875011297296],[-126.47218887932037,53.05891487644559],[-126.47231687309505,53.059079076494506],[-126.47243646257408,53.05924443050729],[-126.47256537911608,53.059408070808814],[-126.47269336088317,53.05957227046273],[-126.4728026938231,53.05973878561476],[-126.47287750012991,53.059910476640056],[-126.47292432844881,53.06008732633852],[-126.47295250465157,53.060267612174194],[-126.47296292436599,53.06044853383175],[-126.47296027593215,53.06062949884726],[-126.47293983942943,53.06080830307365],[-126.47288296790006,53.0609889294376],[-126.47281115225466,53.061169050862944],[-126.47274865388798,53.06134802339952],[-126.472719781636,53.06152405557799],[-126.47274600149152,53.06169650573125],[-126.4728142493244,53.061867102383296],[-126.47290771901272,53.062035921730875],[-126.47302174315345,53.06220410289888],[-126.47315069582866,53.06236997419325],[-126.47328991212726,53.062533572190354],[-126.47343469055718,53.06269434201378],[-126.47357945372676,53.062852306010974],[-126.47373257159371,53.06300576332197],[-126.47389873679828,53.063155797643866],[-126.47407327554527,53.06330300137451],[-126.47425155620776,53.063449069325856],[-126.47442982314445,53.06359513705587],[-126.47460251134434,53.06374234741602],[-126.4747658650804,53.06389183601547],[-126.47491524634299,53.06404474203],[-126.4750236261568,53.06420846187679],[-126.47505837615805,53.06438984087291],[-126.47509684987489,53.064571204860876],[-126.47520991209335,53.064734896694596],[-126.47538172209651,53.06488715605058],[-126.4756019754541,53.06510924595291],[-126.47554307737671,53.065191278590426],[-126.47541404633587,53.06535370377937],[-126.47526162511636,53.06551342620572],[-126.47502240657634,53.065602351219894],[-126.4747247228966,53.06564388565491],[-126.4744753418248,53.06574292579977],[-126.47425895818695,53.06586816878888],[-126.4740717043213,53.06600674026237],[-126.47389293723289,53.06615144451882],[-126.47372166844644,53.06629947090234],[-126.47355604003269,53.06644915961319],[-126.47342983780219,53.06661549730634],[-126.47327819427595,53.066762888561904],[-126.47301279068861,53.06685022911621],[-126.47273044138426,53.0669281172593],[-126.47251579974166,53.067041580385464],[-126.47237917458692,53.06719507749003],[-126.47227732890168,53.067366918853516],[-126.47218020675172,53.06754265843631],[-126.47205960633883,53.0677078516468],[-126.47188927957787,53.06785700087217],[-126.47167382584936,53.067982790943496],[-126.47143572720029,53.06808963174372],[-126.47119102729259,53.06819200749109],[-126.47094162309608,53.06829104899265],[-126.47068939622194,53.06838785127613],[-126.47043527155957,53.068483549050725],[-126.47018115444808,53.06857868151516],[-126.46992890301918,53.06867492648312],[-126.46967572938918,53.06877173032913],[-126.46942066668318,53.06886686488828],[-126.46916275668329,53.06895752826648],[-126.46890009658962,53.069042051758174],[-126.46863077363852,53.069116507787676],[-126.4683529337493,53.06918092159129],[-126.46806562857803,53.06923472318179],[-126.46777447271396,53.06927845497876],[-126.46748040230625,53.069311548526976],[-126.46718529678431,53.06933624630034],[-126.46688826608788,53.06935591325703],[-126.46659024976468,53.069371657189734],[-126.46629034794276,53.06938460212607],[-126.46599041877553,53.06939643488983],[-126.46569049819817,53.06940770213446],[-126.46539151697432,53.06942008539747],[-126.46509348117307,53.069434140420995],[-126.46479641808759,53.06945099655042],[-126.4645022215965,53.06947288730828],[-126.46421087654622,53.06949980381115],[-126.46392152304247,53.06953791658843],[-126.46364004452006,53.069612408914054],[-126.46338693670526,53.069717051225595],[-126.46318640985325,53.06984333170287],[-126.46305729906994,53.07000406678658],[-126.46295640605013,53.07018093360801],[-126.46282918119296,53.07034334621528],[-126.4626164786141,53.07046855289008],[-126.46234063055302,53.07054582567753],[-126.46205123162997,53.07058057255083],[-126.46175228985553,53.07059742832606],[-126.46145241445227,53.07061372226873],[-126.46115643940774,53.070646251673615],[-126.46084282720437,53.070689498197815],[-126.46060074641963,53.07077783994782],[-126.46047712799178,53.07092902209169],[-126.46040523682453,53.071108579205095],[-126.46033619042483,53.07129260708804],[-126.46021830569158,53.07145553608413],[-126.4599980996944,53.07157964666707],[-126.4597788286158,53.07170319742841],[-126.45955673510575,53.071824508826516],[-126.45933274382246,53.07194471565785],[-126.45911158116492,53.07206658729418],[-126.4588988799431,53.072192342826774],[-126.45870026423883,53.07232477510465],[-126.45851856989776,53.072466096220346],[-126.45834909762645,53.07261465721189],[-126.45819279857746,53.07276988971924],[-126.45805149436903,53.072930110492784],[-126.457927066313,53.073093618128226],[-126.45781855145454,53.07325986961729],[-126.4577166020633,53.07342890122545],[-126.45762123305767,53.07360070394759],[-126.45753522932888,53.07377414653406],[-126.45745765776323,53.073948685825236],[-126.45739130633345,53.07412485783603],[-126.45733711434659,53.074300982713616],[-126.4572969636572,53.07447817366804],[-126.45727644229471,53.074655844361814],[-126.45727182339604,53.074835138674146],[-126.45727844938791,53.075015509916305],[-126.45728880588038,53.0751964314191],[-126.45729730765663,53.07537735111873],[-126.45729925217998,53.075557740427044],[-126.45728809687452,53.075737059950676],[-126.45727134448504,53.0759175215973],[-126.45725835550077,53.076100209608846],[-126.45724630585507,53.07628401444021],[-126.457231453024,53.07646727434409],[-126.4572100574326,53.07664999482884],[-126.45717926781639,53.07682994597285],[-126.45713442626385,53.07700659900115],[-126.45707271433294,53.077179391119344],[-126.45698944079264,53.077346099496836],[-126.45686677210445,53.07750232011874],[-126.4566897435302,53.077644749288375],[-126.45647802504021,53.07777890417453],[-126.45625505039543,53.077909740712094],[-126.45604051705462,53.07804390565462],[-126.45585787398196,53.078186346223745],[-126.45572679815992,53.078343162721296],[-126.45562948007067,53.07850936842156],[-126.45554903764668,53.07867999085041],[-126.45548172536536,53.078854479763294],[-126.45542378581747,53.0790311824003],[-126.45537147328378,53.07920953953006],[-126.45532384542864,53.079389554791504],[-126.45527623222422,53.07956957892101],[-126.45522580028862,53.079749049153484],[-126.45516880389242,53.07992742416151],[-126.4551033760211,53.08010359065364],[-126.45502482237725,53.08027644622233],[-126.45493033940846,53.08044543691859],[-126.45481709976312,53.08061058255285],[-126.45468793054685,53.08077187219136],[-126.45454751677546,53.08093095502197],[-126.45440148029151,53.08108894778338],[-126.45425263926522,53.0812463864105],[-126.45410660050099,53.08140436981553],[-126.45396898592726,53.08156400584411],[-126.45383232475828,53.0817247585044],[-126.45368817075844,53.08188441928798],[-126.45353934231164,53.08204354206665],[-126.45339237369558,53.082203213256356],[-126.45325009232596,53.08236342201739],[-126.45311717778803,53.0825252798561],[-126.45299924013815,53.082688765294414],[-126.45290097387276,53.082854971890576],[-126.45282517373047,53.08302500945456],[-126.4527802775451,53.083198854657944],[-126.45276160315802,53.08337652547849],[-126.45276073119824,53.08355692475686],[-126.45277202486811,53.08373895362269],[-126.4527879922896,53.08392152927592],[-126.45280023470764,53.084104119183856],[-126.45280403659214,53.08428506519414],[-126.45279286591919,53.084464939129774],[-126.45277514250613,53.08464484711975],[-126.45275461527133,53.084824201114635],[-126.45273222370469,53.08500411798388],[-126.45270983204377,53.085184043793724],[-126.4526874341656,53.08536340488708],[-126.45266690621214,53.08554275879325],[-126.45265011832909,53.085722098349194],[-126.45263894069384,53.085901416392545],[-126.45263243976262,53.08608015178429],[-126.45266238727423,53.086257636025394],[-126.45274933728619,53.08643209618579],[-126.45279517732804,53.08660839003164],[-126.45280087944215,53.08679212519488],[-126.45278976800094,53.08697760995452],[-126.45274490930127,53.08715537175334],[-126.4526427806781,53.0873126287134],[-126.4524036636467,53.08742559136207],[-126.45216927911552,53.08754470246667],[-126.45203817257848,53.08770262549417],[-126.4519314734905,53.08786942772594],[-126.45183698212956,53.08804177654284],[-126.45174156838056,53.0882146935067],[-126.45163488468772,53.08838317157461],[-126.45150759765681,53.088548931564006],[-126.45134556229794,53.08870024907523],[-126.4511128770662,53.08880422066827],[-126.4507958025796,53.088887224866426],[-126.45076403739472,53.089066065161106],[-126.45072666701529,53.08924548256002],[-126.45069303088967,53.08942432096961],[-126.4506687460431,53.08960313265099],[-126.45066129360895,53.08978187115268],[-126.45066789076473,53.08996336170538],[-126.45068480601833,53.09014705382244],[-126.45072040085779,53.09032843373972],[-126.45078396763401,53.09050186366026],[-126.45088764752283,53.0906650562849],[-126.4510501294197,53.090817940180635],[-126.4512582617561,53.09095496299753],[-126.45149141418943,53.09106948052034],[-126.45173471913697,53.0911705131721],[-126.45198638072223,53.09126647574195],[-126.4522436066683,53.09135792565085],[-126.45250732482607,53.09144487723747],[-126.45277382112992,53.091528447228114],[-126.4530430957241,53.091608653531026],[-126.4533132749978,53.09168660585374],[-126.45358435306461,53.09176175742511],[-126.45385820918631,53.091833536306595],[-126.45413390668037,53.091902510793865],[-126.45441238808525,53.091968668286114],[-126.45469270176858,53.09203257714042],[-126.45497393493756,53.092094240857925],[-126.45525513880492,53.09215309837235],[-126.45553820192086,53.092210836549185],[-126.45582581673803,53.09225622239891],[-126.4561262088948,53.09227355553849],[-126.45642356795437,53.09226904605279],[-126.45672080019565,53.09225276692917],[-126.45701794169337,53.09222808839095],[-126.4573131641064,53.09219893466412],[-126.45760623162542,53.09214346205846],[-126.45789647596304,53.092085749763186],[-126.45815074165203,53.09207468009034],[-126.45846363773984,53.092123331881034],[-126.45874496183906,53.09219282955908],[-126.4590171167333,53.092279169183406],[-126.45927345769859,53.09237396865798],[-126.45950103443865,53.09248905678354],[-126.4597119546699,53.09262045154602],[-126.45992565287975,53.092748473716625],[-126.4601643343319,53.09285230370955],[-126.4604298389723,53.092929146487855],[-126.46070922816075,53.092991924231654],[-126.46099509299032,53.0930473885424],[-126.4612837446644,53.093101729782575],[-126.46156684661369,53.0931616853623],[-126.46204396096222,53.0932601071864],[-126.4621828201575,53.093300456751884],[-126.4623437349569,53.093390029352676],[-126.46225956260213,53.093561789957235],[-126.46213797393678,53.093733132086996],[-126.4620129424615,53.093931943427734],[-126.46188756203831,53.09409882717942],[-126.46175463753718,53.0942601289622],[-126.46160857585471,53.0944175647419],[-126.46145311176085,53.09457055517347],[-126.461284504168,53.09471911482262],[-126.46110086424024,53.09486157478732],[-126.4609068728287,53.0949990282453],[-126.4607044458835,53.09513427332257],[-126.46048314188327,53.09525390508023],[-126.46023349873518,53.09534787607955],[-126.45996213187458,53.095421762723696],[-126.45968226622374,53.09548895900597],[-126.45940618323372,53.09556005706017],[-126.45912812568749,53.0956216426669],[-126.45883533932076,53.09570513833586],[-126.458594342283,53.09582148154507],[-126.4584179466911,53.095943176017336],[-126.45843954549505,53.096123486980524],[-126.45848552585817,53.09631098187634],[-126.45855944123906,53.09648548750111],[-126.45865109623927,53.09665768329736],[-126.45876233141281,53.096824765403454],[-126.45889595097573,53.096984472987415],[-126.45905101559549,53.09713849480169],[-126.45921632592696,53.097289115205015],[-126.45938256809518,53.09743861128358],[-126.45954603723888,53.09759035882883],[-126.45971694477267,53.097739271567605],[-126.4599008781005,53.09788029908879],[-126.46010803643021,53.09800722563717],[-126.4603365673916,53.098121743484626],[-126.46057812406463,53.09822836688847],[-126.46082432680726,53.09833273075652],[-126.46106587094346,53.09843935320912],[-126.46130185577191,53.09854935825277],[-126.46153782685936,53.09865936287673],[-126.46177382018934,53.09876992269025],[-126.46203612399952,53.09889271323817],[-126.46233425782924,53.098868573466326],[-126.4626314608103,53.098845566010795],[-126.46292700680243,53.09884216791539],[-126.46322382336253,53.0988701370634],[-126.46350879445274,53.09892616349328],[-126.46378551493333,53.098996787629595],[-126.46406227042313,53.09907189283283],[-126.46432793410482,53.0991576808782],[-126.46457038548567,53.099259810756884],[-126.46479901513813,53.09938160707063],[-126.46504090973059,53.09951735205163],[-126.46526887234248,53.0996626708257],[-126.46545385257107,53.09981208452333],[-126.46556959802591,53.09996009443878],[-126.46557189939277,53.099999301560175],[-126.4655795960731,53.10010459471099],[-126.46545781145339,53.10025857768834],[-126.46524621679771,53.100411793595235],[-126.46499424050026,53.10055003725055],[-126.46475128226201,53.100659121847166],[-126.46447108885515,53.1006988746544],[-126.46415591886097,53.10070459454239],[-126.46386077069005,53.10074553404779],[-126.46357456586017,53.10083517334174],[-126.46329401771848,53.10092758643437],[-126.46302607182973,53.10097626044916],[-126.46277871131886,53.10093913347025],[-126.46255483412097,53.1008251579796],[-126.46233717133516,53.100679793791905],[-126.46211028159706,53.10054734609912],[-126.46186132518461,53.10044859804666],[-126.46159935719409,53.10035886397734],[-126.46134390888787,53.10026574249503],[-126.46110980616429,53.100156286011256],[-126.46090349528649,53.10002319995715],[-126.46087143061078,53.09999923057128],[-126.46070925553668,53.09988109382842],[-126.4605094840229,53.099746296411816],[-126.46028564968152,53.09963512206502],[-126.45997872239786,53.099537716231914],[-126.45963278782583,53.09946735238783],[-126.45937040730104,53.09950982951002],[-126.4593160993824,53.09959183429548],[-126.45931413617204,53.099755994090785],[-126.45935461203736,53.09995135291611],[-126.45936728641537,53.099999483517635],[-126.45940923899593,53.100158426036664],[-126.45944881536201,53.10035771438186],[-126.45946014231855,53.10053974983415],[-126.45947051425846,53.10072065955416],[-126.45947433998087,53.100901038953076],[-126.45946225929073,53.101080359703104],[-126.4594258127462,53.101256978469436],[-126.45934723753197,53.10142983483365],[-126.45923681518718,53.10159888876635],[-126.4591151185534,53.101763513488244],[-126.4589708920545,53.10192093807256],[-126.45881447511555,53.102075048399506],[-126.45868150179257,53.10223522558386],[-126.45857106267329,53.10240316736783],[-126.45848125055603,53.10257550190278],[-126.45842514984871,53.10275107596009],[-126.45840555960018,53.10292986080652],[-126.45840564532065,53.103110819213185],[-126.458407601841,53.103291761382756],[-126.45843296437499,53.10347374218724],[-126.45844063679945,53.10366419053923],[-126.45844193532746,53.10387147047888],[-126.45846210454997,53.10400640311135],[-126.45854725285244,53.10418030872251],[-126.45876416237486,53.104341368970026],[-126.45898350866496,53.10446881454574],[-126.45918792778835,53.10459854964916],[-126.45939896198358,53.104734990403585],[-126.45957271173734,53.10488389181394],[-126.45972309246699,53.10503513372471],[-126.4598353271559,53.10520500690889],[-126.45992237267194,53.1053805802692],[-126.45997761520066,53.10555795350708],[-126.45999731202996,53.10573435352849],[-126.45998989609197,53.105913090983975],[-126.45996378215183,53.10609303059508],[-126.45992176280247,53.10627358780931],[-126.45986664866118,53.106453075470526],[-126.45980212740994,53.10662923830198],[-126.45972446850702,53.106800405627844],[-126.45957364665418,53.10695561517491],[-126.45939657090943,53.10710420379237],[-126.45923166053687,53.10725386532809],[-126.45906016847763,53.10740131125997],[-126.45888586395502,53.107547647386056],[-126.45871815701365,53.107697883719794],[-126.45853914062448,53.10784199667007],[-126.45832718025305,53.10796718929288],[-126.4580992066192,53.10808179475362],[-126.45786276195265,53.10819251545445],[-126.45762254362525,53.10830045361889],[-126.45738044685937,53.108407833841326],[-126.45714116015577,53.10851632314707],[-126.45690658768501,53.10862759039635],[-126.45667954691011,53.10874331886271],[-126.45646944768218,53.108868500863245],[-126.45630170881098,53.10901704856169],[-126.45614620211352,53.10917282729077],[-126.4559718802467,53.10931915897438],[-126.45578629401976,53.10946217244491],[-126.45558467971361,53.109594607528855],[-126.4553481658304,53.109700276784565],[-126.45499755673664,53.10981087549155],[-126.45474665524799,53.10970875894545],[-126.45455620619411,53.10957335154247],[-126.45440666586445,53.109413701291814],[-126.45417911418174,53.10930813241826],[-126.4538976900256,53.109239189230365],[-126.45362270638256,53.109160692308855],[-126.45335696267463,53.10906983430608],[-126.45320852443496,53.108925864670255],[-126.45312992705249,53.10875025441707],[-126.45305317146598,53.108571831417485],[-126.45294376921056,53.10840194133579],[-126.45281662669271,53.108236045167665],[-126.45264204553912,53.10809665672515],[-126.45239771914164,53.10799618618403],[-126.45213013223237,53.10790701762137],[-126.45188483529662,53.1078037530716],[-126.45164233572412,53.10769879215854],[-126.45140353781548,53.10758989949759],[-126.45117404292974,53.107475933277556],[-126.45096033571562,53.10735013711413],[-126.45076242507116,53.10721475196942],[-126.45056171952051,53.10708106230643],[-126.45034151943743,53.10696089203912],[-126.45010825891409,53.10684413245518],[-126.44986663499981,53.106731886060714],[-126.44961208432771,53.106637059894005],[-126.44934005831031,53.10656974630856],[-126.4490551851253,53.10652601048851],[-126.44876202483208,53.10649406575463],[-126.44846426296908,53.10646998991117],[-126.44816374066062,53.1064509613564],[-126.4478622964591,53.1064324912775],[-126.44756177195838,53.10641178499944],[-126.44726490978744,53.10638489710939],[-126.44697357559757,53.10634845921171],[-126.4466905183413,53.10629910855428],[-126.44641294504262,53.10623741148983],[-126.44613993650681,53.10616561243853],[-126.44587153738237,53.10608651688635],[-126.4456068164724,53.10600123986711],[-126.44534485761818,53.1059109053131],[-126.44508659173526,53.10581720386765],[-126.44483112330421,53.10572180616401],[-126.4445775270244,53.105626400866925],[-126.44433505800089,53.10552142483681],[-126.44410739970441,53.105401270982235],[-126.44388438663391,53.10527718212626],[-126.44365676019376,53.105159823938074],[-126.44341435480908,53.10506045702026],[-126.44314880178608,53.10498469701424],[-126.44286562933651,53.10492301261619],[-126.44257137226623,53.10487481452482],[-126.44227258620099,53.104840078130884],[-126.44197579100369,53.104818223276986],[-126.44168386190148,53.10481371209899],[-126.44139041186689,53.10484281958753],[-126.441097171273,53.10489209378793],[-126.44080772432109,53.10494639068478],[-126.4405210557381,53.10499732410835],[-126.44023723189548,53.10505271910177],[-126.43995436443299,53.10511091547337],[-126.4396724566459,53.10517079276064],[-126.43939150255889,53.10523177731866],[-126.43909549525641,53.105286103343616],[-126.43879953111025,53.10534322512175],[-126.43854496218572,53.10542427792456],[-126.43837324675944,53.10555488774042],[-126.43828152702625,53.105732259893216],[-126.43820106736065,53.10591295158406],[-126.43811893867536,53.106113261843134],[-126.43803323681472,53.10624019092969],[-126.43775245840168,53.10631909815997],[-126.43744226582031,53.106358906579985],[-126.43715033814536,53.106355504623195],[-126.43685157148404,53.10632467157559],[-126.43664373100559,53.10631031776347],[-126.43629658686993,53.106304312012234],[-126.4359888118261,53.10630713266164],[-126.43570736123958,53.10632105108057],[-126.43541389666808,53.10635014370853],[-126.43511572941466,53.106377576713754],[-126.43482368687216,53.10636296488138],[-126.43453593911345,53.106310241060825],[-126.43424815984035,53.10625583149195],[-126.43396123263817,53.10619246341651],[-126.4336735959538,53.106150376936505],[-126.43338079574684,53.10615369161003],[-126.43307981805559,53.10618000933129],[-126.43278562475808,53.1062287015883],[-126.4325131745616,53.10630028737377],[-126.43226055606488,53.106390847748564],[-126.43201744368461,53.10649481829578],[-126.43178000250776,53.10660605505775],[-126.43154352015821,53.106718964031515],[-126.43130324883663,53.10682740452533],[-126.431056372347,53.106929701621745],[-126.43081046261341,53.10703592074202],[-126.43056457440791,53.10714438017026],[-126.43031773628073,53.10725228678843],[-126.43006900095456,53.10735627370998],[-126.42983914206543,53.107478118732715],[-126.42961017374127,53.107594913534],[-126.4293728144965,53.10771398822674],[-126.42903581126141,53.10778804122504],[-126.42868846919126,53.10776353080968],[-126.42839251859992,53.107733230892364],[-126.42808238063702,53.10768841570904],[-126.42778718181646,53.10763906384114],[-126.42749374371722,53.10758017653086],[-126.42722912950448,53.10750270132516],[-126.42694684441302,53.10743481768606],[-126.42664213170593,53.10737093142091],[-126.42639086584052,53.10731805615311],[-126.42610225222647,53.10727259343963],[-126.42581272810517,53.10722881846481],[-126.42552227280785,53.1071861665876],[-126.42523089197884,53.1071452024896],[-126.4248747650602,53.10708429325219],[-126.42464728618201,53.10706998893441],[-126.42435409757388,53.10703518718686],[-126.42406092997497,53.10700094038299],[-126.42376683667908,53.10696838133405],[-126.42347274947609,53.10693638624143],[-126.42317773643481,53.106906069931334],[-126.42288275550492,53.106877428970265],[-126.42258777680381,53.10685047242872],[-126.42229189275612,53.10682575929379],[-126.42199602582852,53.106802730520556],[-126.42169927014436,53.10678362128452],[-126.42140067877995,53.10676955540803],[-126.42110215271174,53.106760535069164],[-126.42080273385291,53.106756563678466],[-126.42050428746144,53.106757060921694],[-126.42020598379868,53.10677044660327],[-126.4199078481482,53.10680232290138],[-126.41960974360934,53.1068358745335],[-126.41931519950852,53.1068526059801],[-126.41902223110185,53.10683795840851],[-126.41872249085532,53.10680148077199],[-126.41842908229644,53.10674370031273],[-126.41816070904387,53.10666229208634],[-126.41793511137959,53.10655440585693],[-126.41775035758732,53.106413881713834],[-126.41758600980626,53.10625535793576],[-126.41742260625169,53.106096830585294],[-126.41723972170323,53.1059557432756],[-126.4170169346491,53.10584840109771],[-126.41674869648948,53.10577987888036],[-126.41645449620624,53.105734977051625],[-126.41590085606794,53.10565905906978],[-126.41561684170503,53.105604035237505],[-126.41533283207016,53.105547890253185],[-126.41504697012836,53.105495112452715],[-126.41475657586783,53.10545635105698],[-126.4144588570283,53.105433865693456],[-126.41418224104474,53.10536817264947],[-126.41390837013756,53.10529685811371],[-126.41363634936337,53.10522330452573],[-126.41336431852064,53.105148620929576],[-126.41309227780584,53.105072825251646],[-126.41282024347551,53.10499758467083],[-126.41254728894606,53.10492458758378],[-126.4122725065488,53.1048543928951],[-126.41199494927784,53.104788133310514],[-126.41171373259466,53.10473029370799],[-126.41142422025156,53.10468591879611],[-126.41113010926202,53.10464884660376],[-126.41083603136126,53.104615134928146],[-126.41054199194788,53.104585348459665],[-126.41024522980287,53.10456340492522],[-126.40994845308408,53.104541469660624],[-126.40965263583229,53.10452120652638],[-126.40935588541564,53.10450038117506],[-126.40905909878711,53.10447732326037],[-126.40876232736262,53.104454255585246],[-126.408465535939,53.10443063148967],[-126.40817059305354,53.104403083159774],[-126.40787928581547,53.104365993209186],[-126.40759071216068,53.10432048522933],[-126.4073048992933,53.10426937372678],[-126.40701997741078,53.10421433239526],[-126.40673690029362,53.10415647841354],[-126.40645382403503,53.10409863271538],[-126.40617166038898,53.10403909804138],[-126.40589129761942,53.103970592878156],[-126.4056127541575,53.103898154736555],[-126.40533424812563,53.10382796568263],[-126.40505300399433,53.10376561957083],[-126.4047700289216,53.10371785358554],[-126.40448163944366,53.103690829370926],[-126.40418785121355,53.10368623199651],[-126.40389049199246,53.10369957335912],[-126.4035904200036,53.10372356306677],[-126.40329042130686,53.1037537187401],[-126.40299133422972,53.10378219434328],[-126.40269594595031,53.10380616580816],[-126.40239960911377,53.10382958401731],[-126.40210329754443,53.10385412185007],[-126.40180697601679,53.10387922368118],[-126.4015106796323,53.103905436172695],[-126.40121533215664,53.10393389457038],[-126.4009209281197,53.103964025227256],[-126.40062844133269,53.10399751001212],[-126.40033596027712,53.1040332349589],[-126.4000482481448,53.10407790666901],[-126.40001744322066,53.104084168927145],[-126.39976439350984,53.10413488961876],[-126.39948339948211,53.104196899773925],[-126.39920238443173,53.104258353582296],[-126.39891757314452,53.10431254106417],[-126.39861567050197,53.10434157081034],[-126.39830806428392,53.10435941446973],[-126.39803632759171,53.10441299105602],[-126.39780534367162,53.104521887825335],[-126.39759991309555,53.10466151512645],[-126.39743673341677,53.104818371514355],[-126.3973306728641,53.10498174944122],[-126.39728179439304,53.105156704331634],[-126.39726012593918,53.10533941091448],[-126.39723470032199,53.10552213009899],[-126.39718117178084,53.10569934142089],[-126.39712014903424,53.105877142582294],[-126.39705445560637,53.10605495041658],[-126.39697658119096,53.106230002451525],[-126.39687804154681,53.10639784533948],[-126.39674949010853,53.10655626053169],[-126.39657870566036,53.10670137183123],[-126.39638070353054,53.10683816626278],[-126.39617709149815,53.10697386766001],[-126.39598942186812,53.10711455284111],[-126.39577653917195,53.10736064452365],[-126.39540650624853,53.107309777278125],[-126.39510891524819,53.10730125289091],[-126.39480950020157,53.10729777139435],[-126.39451012691339,53.10729877080433],[-126.39421174873416,53.1073053683927],[-126.39391339713963,53.10731644694289],[-126.39361508116512,53.1073297655228],[-126.39331675519087,53.10734363912604],[-126.39301935650825,53.1073558326986],[-126.39272099845552,53.10736466735693],[-126.39242257867657,53.10736846391998],[-126.39212228191474,53.107370016090314],[-126.3918191762361,53.10737214151449],[-126.39151602400155,53.10736922876942],[-126.39121652083651,53.10735621015189],[-126.39092436274963,53.10732804488601],[-126.39064230787929,53.107280242109965],[-126.39036757745149,53.10721335785108],[-126.39010018838732,53.10713244757737],[-126.3898355423115,53.10704368449823],[-126.38957273752243,53.106951553405885],[-126.38930902640718,53.106861665614574],[-126.38904162619896,53.10677907678684],[-126.38876780394214,53.106709389176444],[-126.38851196528826,53.106661486142784],[-126.38819632068765,53.10662275152775],[-126.38790047365173,53.10659962846108],[-126.38760003366694,53.10658492757692],[-126.38729589823696,53.10657696074143],[-126.38699086556471,53.10657235741334],[-126.38668491513722,53.10656887675128],[-126.38637988258951,53.10656427184668],[-126.38607761858863,53.10655629576166],[-126.38577904553676,53.10654102841175],[-126.38548506638631,53.10651733746653],[-126.3851975218104,53.10648185561093],[-126.38491827273558,53.106431789151316],[-126.38464639658494,53.10636936412208],[-126.38437725912657,53.1062985306646],[-126.38411179387734,53.10622152666531],[-126.38384908778771,53.10613834614954],[-126.38359007912528,53.106050106541595],[-126.38333289701526,53.105956822895244],[-126.3830784946569,53.10585961258415],[-126.38282591907881,53.10575902549175],[-126.38257613855991,53.105656196873994],[-126.38232727693801,53.10555055914513],[-126.38208121048744,53.10544434714865],[-126.38183606327397,53.105337020180876],[-126.38159280318266,53.10522967764701],[-126.38134953443519,53.10512289934547],[-126.38110816293789,53.10501723487553],[-126.38087049950293,53.10490931706088],[-126.38064027578446,53.10479465210226],[-126.3804156009815,53.104674366578074],[-126.38019744818233,53.104550142548376],[-126.37998395639454,53.10442309751842],[-126.37977603864374,53.10429322857957],[-126.37957186402062,53.10416167105503],[-126.37937328354712,53.104029539474965],[-126.3792380954977,53.10387086909984],[-126.37912805324217,53.103700348686125],[-126.37900403764368,53.103537160378636],[-126.37888189886603,53.103372845461465],[-126.37875974606791,53.10320853045066],[-126.37863574332965,53.1030447859351],[-126.37850799976624,53.10288272945252],[-126.37837280861247,53.102722937564636],[-126.37822827407827,53.10256597205712],[-126.37807442625228,53.10241184176407],[-126.37791590992522,53.10225941134761],[-126.37775739465815,53.10210697174205],[-126.37760353524291,53.10195284084404],[-126.37745715038601,53.1017958892172],[-126.37730980368922,53.101636690599065],[-126.37716993152584,53.101476356447115],[-126.37704780573361,53.10131371564181],[-126.37701161389518,53.101135123257066],[-126.377030109053,53.10100676786502],[-126.37735501636136,53.100936827652944],[-126.37766728601541,53.100918458822754],[-126.3779675226048,53.10091358205151],[-126.37826390754597,53.100898068051926],[-126.37855627047027,53.10084950832374],[-126.37880046948202,53.10075069077315],[-126.37901166051343,53.10062283778896],[-126.37921813076417,53.1004894062533],[-126.37943780538755,53.1003682479872],[-126.37970645009496,53.10028391595042],[-126.38001558383795,53.10022857597597],[-126.38027964259948,53.10015546191001],[-126.38039167562779,53.100026249169325],[-126.38039423303105,53.099999350033706],[-126.38041339893739,53.09984186002015],[-126.38043595440675,53.099645152131544],[-126.38035323243517,53.09949471271879],[-126.38013606947334,53.0993744022231],[-126.3798787698581,53.09926262822054],[-126.37963267083295,53.09914801206201],[-126.37941827006914,53.099021524380376],[-126.37921223118599,53.098887731002],[-126.37900618865307,53.098755057725256],[-126.3787899411421,53.09863082468386],[-126.37855607576758,53.09852288978829],[-126.37830085603416,53.09843350580611],[-126.37803636887847,53.09835367926458],[-126.37776445986528,53.09828059858376],[-126.37748697963734,53.09821201689193],[-126.37720670673762,53.09814568437199],[-126.37692551187817,53.098079918837485],[-126.3766461785344,53.098013017283236],[-126.37637055264798,53.097942186151414],[-126.37610048506947,53.09786517866731],[-126.37583783654141,53.097780859532584],[-126.37558260715535,53.09768922879568],[-126.37532921985532,53.097594239253844],[-126.37507861242366,53.09749531426941],[-126.37483077985047,53.097393574330845],[-126.37458666013939,53.0972884697002],[-126.37434531534588,53.09718055015314],[-126.37410862619323,53.09706925400687],[-126.37387752543388,53.09695513408458],[-126.37365014252336,53.09683820529555],[-126.37342929088744,53.09671845877161],[-126.37321495050058,53.09659532093859],[-126.37300710669105,53.096467124638835],[-126.37280578429024,53.096334990283395],[-126.3726100404339,53.096198911913696],[-126.37241801933321,53.096060580570175],[-126.37222972586096,53.0959205520015],[-126.37204423227473,53.0957788381092],[-126.37185872009017,53.09563656823044],[-126.37167415183688,53.09549428612073],[-126.37148866691948,53.09535313601679],[-126.37131248665875,53.095208030301464],[-126.37115586261659,53.09505221408073],[-126.37099738887069,53.094898653326005],[-126.37081286591182,53.09476085151644],[-126.37059111480329,53.09464389909001],[-126.37034517533293,53.09454158798473],[-126.3700899333482,53.09444490778176],[-126.36983840424097,53.09434485403568],[-126.36955904817377,53.09427122199492],[-126.36928345844876,53.094200374186336],[-126.36901343240959,53.0941239060774],[-126.36875732666839,53.09403394843108],[-126.3685141836866,53.09393050432205],[-126.36827939356793,53.0938186257699],[-126.36804646552834,53.09370562945533],[-126.36780704321855,53.09359769046669],[-126.36756297240457,53.09349368256712],[-126.36731983062026,53.093389680237266],[-126.36707670491478,53.093285668391154],[-126.36683263776558,53.093181667928384],[-126.36658857661787,53.093078222687424],[-126.36634451178236,53.09297421224087],[-126.36610045789466,53.092871330675315],[-126.36585545761442,53.09276788682252],[-126.36561048315312,53.09266556283741],[-126.36536549004518,53.09256267368901],[-126.36511958011583,53.09246091628458],[-126.36487274841602,53.09235971695936],[-126.36462590293097,53.092258517158974],[-126.36437814052358,53.092158440126035],[-126.36412760515843,53.09206116777894],[-126.36386775684043,53.09197009057552],[-126.36360421260851,53.09188238554552],[-126.36334065934186,53.09179524466551],[-126.36307897809327,53.091706412276096],[-126.3628247213839,53.091612509967426],[-126.36257977531814,53.091511864757884],[-126.36234968755667,53.09140052464459],[-126.36213355023284,53.09127905720552],[-126.36192856464312,53.09114914729267],[-126.36173287962947,53.091013050509346],[-126.3615418458666,53.09087302204206],[-126.36135451994531,53.09073073203951],[-126.36116627239653,53.09058900926052],[-126.36097524241472,53.09044897984346],[-126.36077862576863,53.09031344003853],[-126.36057365379834,53.09018409240081],[-126.36035660007884,53.09006262445853],[-126.36012744963041,53.08994903619211],[-126.35988619291423,53.08984220710274],[-126.35963565310745,53.08974157277765],[-126.35937861311061,53.08964711573176],[-126.35911601078269,53.089558277325395],[-126.35885063924735,53.089474484328875],[-126.35858345609476,53.08939574278173],[-126.35830603663004,53.08932375442464],[-126.35801005237434,53.08926807280492],[-126.35771054560446,53.08923816270948],[-126.35742256793434,53.0892446363951],[-126.35714238747629,53.089288625681654],[-126.35686522117572,53.089358366797114],[-126.35659193207599,53.08944267048969],[-126.35632239570282,53.089530314640676],[-126.3560584606231,53.08961514462643],[-126.35580488832615,53.08971002694419],[-126.35555508370946,53.08980825874973],[-126.35530998380676,53.08991095770728],[-126.35503576882341,53.08999805720315],[-126.35477077785922,53.09007000665411],[-126.35450211554061,53.09015036547602],[-126.35423060738705,53.090225129918885],[-126.35395527717426,53.090292061971184],[-126.35367142954199,53.09034612911586],[-126.3533809305024,53.090386778929634],[-126.35308663323754,53.090422392831535],[-126.35279423942903,53.090460241232144],[-126.35233564160312,53.09041791157904],[-126.35203709099645,53.090391910346],[-126.35173859750049,53.09037094576936],[-126.351443097396,53.09037351012188],[-126.35115344942818,53.090405179292866],[-126.35086487244189,53.09045421615398],[-126.35057917262947,53.090511086977294],[-126.3502934582053,53.09056628094396],[-126.35000772446855,53.09061922439378],[-126.34972294657452,53.0906738494889],[-126.34944003722786,53.0907301535369],[-126.34915714666843,53.090787012595264],[-126.34887424495946,53.090844426752135],[-126.34859041021474,53.09090128723304],[-126.34830657470884,53.09095814703038],[-126.34802368574319,53.09101556806487],[-126.34774079016263,53.09107409993126],[-126.34745978839415,53.091133754969036],[-126.34717973643852,53.09119620320512],[-126.34690157237111,53.09126088614568],[-126.34662719401643,53.09133115960822],[-126.34635660582376,53.09140757935206],[-126.34608884226773,53.091487360532575],[-126.34582109259424,53.091567132095626],[-126.34555143836417,53.09164467666439],[-126.34527800249658,53.09171549995601],[-126.34499703726344,53.09178242747375],[-126.34471037017911,53.09183649018013],[-126.34441879128269,53.09186254612312],[-126.34412318483841,53.09185332317147],[-126.34382371510436,53.091828989038156],[-126.34352524147255,53.091813050193906],[-126.34322499873655,53.09180775559021],[-126.34292480460873,53.09181031224254],[-126.34263040855934,53.09183413103246],[-126.34233891436587,53.091870830412915],[-126.34204649961023,53.09191033735952],[-126.34175504953605,53.09195263744945],[-126.34146550083662,53.091998848439566],[-126.34117785351019,53.092048979306654],[-126.34089305918233,53.09210414777536],[-126.34061296861425,53.09216377485774],[-126.34033668112701,53.092231242476025],[-126.34006514667335,53.09230933561675],[-126.33980212090506,53.09239804351193],[-126.33955134462484,53.092497364431985],[-126.33931653468643,53.09260616732523],[-126.33909207512511,53.09272389472567],[-126.33887328992084,53.09284777240526],[-126.3386638900186,53.09297778975969],[-126.33846390076225,53.09311337309184],[-126.33827515391198,53.09325341467694],[-126.33809954535074,53.093397335471245],[-126.33794457631933,53.09355128106739],[-126.3378065224532,53.09371357702566],[-126.33767783632322,53.09387977211281],[-126.33754916414854,53.094045967001456],[-126.33741295386356,53.09420714568895],[-126.33725984704131,53.09435884407527],[-126.33708137265084,53.0944971691495],[-126.33687283947718,53.094619328553826],[-126.33663893421867,53.09472755865518],[-126.33638718511179,53.09482575498611],[-126.33612415827969,53.09491726012233],[-126.33585643479918,53.095005416650125],[-126.33559151302133,53.09509412931714],[-126.33533316057758,53.095186739850256],[-126.33507768669801,53.09528774057067],[-126.3348203588009,53.095390995853144],[-126.33456016493943,53.095485850794816],[-126.3342942107269,53.0955639146458],[-126.3340214997227,53.09561454139671],[-126.33373815025081,53.09561982367406],[-126.33344417905442,53.09558367846244],[-126.33314448220247,53.095532982764915],[-126.33284392688729,53.09549293751538],[-126.33254167027263,53.09547249974295],[-126.33222814045733,53.09544761107423],[-126.33191751204849,53.095433917960534],[-126.33162769667862,53.09545041787423],[-126.33137378090588,53.09551275501376],[-126.33115671992623,53.09562260312568],[-126.33096139821741,53.09576265115341],[-126.3307727021304,53.095913875867495],[-126.33057554648923,53.09605896591607],[-126.33035576335514,53.0961811540681],[-126.330120042595,53.096297775089276],[-126.32987491771856,53.096409949029756],[-126.32961940604837,53.09650869702481],[-126.329353429567,53.0965839530817],[-126.329074099273,53.09662786408325],[-126.32877955781598,53.09663821212792],[-126.32847455532661,53.09662729095234],[-126.32816481262977,53.09660910369291],[-126.32785886972006,53.0965965073437],[-126.3275614844421,53.09660293417643],[-126.3272802340148,53.096640688248],[-126.3270094820979,53.096704747711584],[-126.32674541783577,53.096786150589324],[-126.32648705729711,53.09688153828456],[-126.3262362621427,53.09698587710449],[-126.32599017787807,53.09709579568552],[-126.32575064506561,53.097207380847074],[-126.32551862150257,53.097320629990776],[-126.32530353792552,53.09744950940509],[-126.32509883514886,53.09758957334152],[-126.3248997687182,53.09773297380587],[-126.32469880884804,53.097873582474655],[-126.32448935562965,53.09800357429964],[-126.32426385137623,53.09811511785112],[-126.32401663712307,53.098202070555374],[-126.32374866665008,53.09826386496079],[-126.32347124577652,53.0983150448157],[-126.32318816732045,53.0983583963296],[-126.32289847792367,53.09839448677456],[-126.32260499970927,53.098424419887216],[-126.32230774560692,53.0984498807629],[-126.32200672843364,53.09847254553289],[-126.32170475538571,53.09849353594248],[-126.32140184995635,53.09851397237137],[-126.32109894844369,53.09853496375577],[-126.32079701062675,53.09855874839213],[-126.32049789225802,53.098585330219166],[-126.3202006865315,53.0986175083591],[-126.31990819191846,53.09865527525148],[-126.31962044017389,53.09870087174578],[-126.3193374395924,53.098755418303625],[-126.31905824063647,53.09882003797139],[-126.31878377566181,53.098891366908916],[-126.31851029469388,53.098968294803214],[-126.31823963657351,53.099048575808844],[-126.31796899006576,53.099130541313976],[-126.3176992619342,53.09921137431066],[-126.31742766029039,53.09928997978054],[-126.31715508119302,53.099364096479846],[-126.3168796373634,53.09943150648975],[-126.31660040334278,53.099490518150255],[-126.31631733263113,53.09953889066086],[-126.31602950421639,53.099575514971725],[-126.31573785870167,53.099602064729595],[-126.31544240048903,53.09961910460197],[-126.31514502544547,53.099629981891404],[-126.31484573369916,53.09963469658358],[-126.31454455038322,53.0996366189094],[-126.3142433504314,53.09963629961303],[-126.31394122258934,53.09963598201359],[-126.31363909636242,53.09963790453663],[-126.31333888067117,53.09964318257078],[-126.31303963005958,53.09965350379038],[-126.31274230374632,53.09967109759949],[-126.31244784189528,53.099697646682664],[-126.31215344413606,53.099730917557295],[-126.31186093467566,53.099768664511586],[-126.3115684561278,53.09980865155681],[-126.3112759579163,53.09984807322131],[-126.31098344953813,53.09988414180275],[-126.31068901380982,53.09991460351547],[-126.31039453113756,53.0999366657305],[-126.31009711979326,53.09994304860811],[-126.30979771891255,53.09993319392319],[-126.30949731798563,53.099915488992366],[-126.3091978724657,53.09989946595445],[-126.30890037957069,53.09989464154514],[-126.30860489615165,53.09990885877252],[-126.30830301493793,53.0999427042856],[-126.30801439678714,53.10000172008155],[-126.30776249315646,53.100092012144614],[-126.30753600991876,53.1002040817943],[-126.30731990075496,53.10032901366812],[-126.30711508409149,53.100463444088504],[-126.30691966061323,53.10060344302892],[-126.30673548907984,53.10074733848418],[-126.30656817388942,53.100893995522625],[-126.30645244735824,53.10106124237895],[-126.30635174197474,53.10123405241363],[-126.3062163126439,53.10139238648194],[-126.30603779226786,53.10154242411175],[-126.3058386872994,53.101691958975444],[-126.30561320320926,53.101815791399645],[-126.30535459101706,53.1018870479352],[-126.30507324836778,53.10191747071831],[-126.3047814872238,53.10193110401949],[-126.30448214995218,53.101931875452635],[-126.30417714787598,53.10192538227897],[-126.30386930796757,53.10191552530832],[-126.30356054834387,53.10190679930905],[-126.30325463864807,53.10190310272317],[-126.30295347469257,53.10191003295011],[-126.30265802322536,53.10193095785545],[-126.30237298955595,53.10197090297512],[-126.30209272780735,53.10202316012844],[-126.30181251724544,53.10208270387118],[-126.30153516347858,53.102148397635084],[-126.30125878457397,53.10222081094084],[-126.30098618624625,53.10229881620317],[-126.30071548958269,53.1023812977803],[-126.30044949334835,53.102468248570936],[-126.3001863415689,53.10255967331927],[-126.2999278931483,53.10265388217515],[-126.29967413316325,53.10275088417032],[-126.29942600452885,53.10285067694602],[-126.29918443115578,53.10295268453038],[-126.29895697498789,53.10306586933601],[-126.29874081016584,53.1031885444694],[-126.29853311805319,53.103317920475035],[-126.29833200485132,53.1034528817297],[-126.2981318301385,53.103589516448885],[-126.29793166519735,53.10372559504955],[-126.29772772247577,53.10385888617986],[-126.29751719825325,53.1039865823183],[-126.29729538813388,53.10410590759384],[-126.29706231960124,53.104220778952836],[-126.29681705290315,53.10432952250291],[-126.29656046183297,53.10442652478744],[-126.29629346925663,53.10450674590044],[-126.29601604019498,53.104565139376945],[-126.2957310099447,53.10460899439199],[-126.29543937176007,53.104643336967555],[-126.295143012402,53.104670403234806],[-126.29484379201686,53.10469076218748],[-126.29454267308529,53.10470719907332],[-126.29424153444747,53.10472082964634],[-126.29394225889223,53.104733343337756],[-126.29364390334514,53.104744724577245],[-126.29334366451758,53.10475219266143],[-126.29304246327685,53.10475686573835],[-126.29273937544971,53.104759292866376],[-126.29243627219181,53.104759487329346],[-126.29213221817243,53.104758553956536],[-126.29182817148313,53.10475650830236],[-126.2915241097937,53.10475445293974],[-126.29122006698077,53.10475296145267],[-126.29091788789415,53.10475258504186],[-126.2906157314616,53.10475332824751],[-126.2903154463805,53.1047563069744],[-126.29001706640263,53.10476208585788],[-126.28971963726205,53.10477121402785],[-126.28942503379095,53.10478426056875],[-126.28913327466829,53.10480178119623],[-126.28884435980525,53.10482377593116],[-126.28855828561713,53.10485192995128],[-126.28827599490296,53.104886232013996],[-126.28800414655106,53.10494403729239],[-126.28774465653632,53.10502982296874],[-126.28749841061456,53.10513742004017],[-126.28726349583268,53.105260684236235],[-126.28704081696591,53.10539399327658],[-126.28682937440563,53.10553120065723],[-126.28662821726428,53.10566670652405],[-126.28644016356249,53.10580329176626],[-126.28626620949886,53.10594881506653],[-126.28610445766263,53.10610158696638],[-126.28595677159585,53.10626048256306],[-126.28582035220948,53.10642327675244],[-126.28569610131882,53.10658828224653],[-126.28558121237326,53.10675438542034],[-126.28547381439364,53.10692159081893],[-126.28537108960312,53.10708934952485],[-126.28527118560632,53.10725821279624],[-126.28517597365237,53.107428194053156],[-126.28508262455102,53.107599282202244],[-126.28499208891758,53.107770372440484],[-126.28490250307063,53.107942571781045],[-126.28481477272004,53.108114775528584],[-126.28472798465135,53.108286967959806],[-126.28464214272815,53.10845972273368],[-126.28455535331213,53.10863192396801],[-126.28446762006439,53.108804118427685],[-126.28437895806313,53.108976324001475],[-126.28428935966231,53.109147402337044],[-126.2841903859118,53.109317947384135],[-126.28407925236587,53.109487965809635],[-126.28397093215504,53.10965796839159],[-126.28388131947881,53.109829611081274],[-126.28382542172763,53.11000397833595],[-126.28380695175589,53.11018105232741],[-126.28380159894567,53.1103586505505],[-126.28380559488272,53.11053735571868],[-126.28381802267536,53.110716596366544],[-126.28383606806214,53.11089637924788],[-126.28385880302842,53.111076715551484],[-126.28388433761084,53.11125704511083],[-126.28390987241049,53.1114373746463],[-126.28393446429843,53.11161770642289],[-126.2839571963472,53.111797486905196],[-126.28397429964748,53.11197727192114],[-126.2839514089181,53.11233026535643],[-126.28394889726009,53.11251402344701],[-126.28394826069879,53.11269834171681],[-126.28394762034891,53.112882095275246],[-126.2839413584325,53.11306474187581],[-126.28392853171212,53.11324628378271],[-126.2839035259625,53.113424493596995],[-126.28386540158478,53.113599929304996],[-126.28380947628801,53.11377093492072],[-126.28373198828248,53.11393694578247],[-126.28360856419363,53.11409129768268],[-126.28343735102561,53.11423456858568],[-126.28323426654948,53.114369507807524],[-126.28301431559746,53.11450112572485],[-126.28279436698737,53.114633298951574],[-126.28259036903184,53.114771044788924],[-126.28241167511095,53.114916008190235],[-126.28223111598872,53.11506209619634],[-126.28204869532985,53.115209864526776],[-126.28187189896546,53.11535930429113],[-126.28170728069898,53.1155120760748],[-126.28156328468158,53.11566815982133],[-126.28144738194037,53.115829778697496],[-126.28136521713913,53.11599691935366],[-126.28131583619084,53.11617014882958],[-126.281290813982,53.11634779310735],[-126.28128358574061,53.116528765308566],[-126.2812857447871,53.11671194707042],[-126.28128789262807,53.11689569353997],[-126.28128256190678,53.11707833734412],[-126.28126129702733,53.117258222421675],[-126.28122692365768,53.11743700925316],[-126.28118973892921,53.11761636744094],[-126.28114695048923,53.11779518318523],[-126.28109665294976,53.117972887346326],[-126.28103792926504,53.11814893532158],[-126.28096890400897,53.11832276685519],[-126.28086895230703,53.11849106961254],[-126.28070809856366,53.11864943293427],[-126.28055099438487,53.11880666668958],[-126.28046786956861,53.11897268826358],[-126.28045031012638,53.119147517766486],[-126.28045710768939,53.11932621548976],[-126.28048169314077,53.119507102912465],[-126.28051939902446,53.119688523888634],[-126.28056551650143,53.11986936914336],[-126.28061441947831,53.1200479579207],[-126.28066707381596,53.12022542628694],[-126.28073375493726,53.12040229661689],[-126.2808097950342,53.12057914467035],[-126.28089145452424,53.120756535046944],[-126.28097590739085,53.120932807243946],[-126.28105850791233,53.12110963950241],[-126.28113641860249,53.12128591813777],[-126.28120496763921,53.12146166323161],[-126.28126133982087,53.121636881495604],[-126.28130181012133,53.12181212857883],[-126.28132168417237,53.121986313157805],[-126.28131909728411,53.12216054218452],[-126.28128280754505,53.12233317519117],[-126.28121750145647,53.122504201002485],[-126.2811269146265,53.122674722159395],[-126.28101947358222,53.12284416284605],[-126.28090172933926,53.12301362788928],[-126.28077931214463,53.1231831038913],[-126.2806597128483,53.123353128795536],[-126.28054946416447,53.12352426077523],[-126.28045513623819,53.12369591061518],[-126.28038235589709,53.123869750144],[-126.2803423394423,53.12404575281503],[-126.28033229440847,53.12422504571249],[-126.28034191108233,53.12440653285049],[-126.2803590339341,53.124588557910556],[-126.2803723982794,53.12477060082328],[-126.28037078781169,53.12495042939009],[-126.28034293746428,53.12512752354246],[-126.28029265029508,53.125306355973464],[-126.28023677275073,53.125491359498724],[-126.2801659306876,53.12567583372906],[-126.28007163717956,53.12585364981081],[-126.27994635607249,53.12601752928296],[-126.27978069439322,53.126160215953625],[-126.27957276892796,53.12628002898168],[-126.2793497927469,53.12639092270289],[-126.27911556545799,53.12649679612802],[-126.27887192905887,53.12659764484814],[-126.27861984943605,53.126694595924],[-126.27836120592025,53.1267887653095],[-126.27809878393991,53.12688013744939],[-126.27783262816767,53.12697095307383],[-126.27756457702719,53.12706066107355],[-126.27729746816811,53.12715035728613],[-126.27703131267307,53.12724173578157],[-126.27676889602678,53.12733479004803],[-126.27651118393344,53.127430629318575],[-126.27625911218718,53.12753037186719],[-126.2760164248084,53.12763401795567],[-126.27578220419655,53.12774324594277],[-126.27556018664714,53.12785916760237],[-126.27535036854361,53.12798122727744],[-126.2751518471827,53.12811109432999],[-126.27496365692785,53.12824766855791],[-126.2747848655425,53.128390378515256],[-126.27461451867383,53.128537550297516],[-126.2744526349321,53.128689739629834],[-126.27429639159269,53.128845841626344],[-126.27414765348165,53.12900473155801],[-126.27400267281638,53.12916584447501],[-126.2738633181538,53.12932862929546],[-126.27372678526474,53.129492527832504],[-126.27359398051378,53.12965641757138],[-126.27346211468317,53.12981974924095],[-126.27333210906446,53.1299813913246],[-126.27320492168641,53.13014358247126],[-126.27308146622603,53.130306329544155],[-126.27296270846634,53.1304707507535],[-126.27284677262458,53.13063627678122],[-126.27273456880755,53.13080235876846],[-126.27262425844137,53.130969556695],[-126.27251675157486,53.13113731273751],[-126.27241204817943,53.13130561794029],[-126.27230736250135,53.13147447872361],[-126.27220453324249,53.13164334408783],[-126.27210172171054,53.131812765035775],[-126.27199983796186,53.131982183743126],[-126.2718979533983,53.132151602346774],[-126.27179419581634,53.13232102514832],[-126.27169043021918,53.1324893274333],[-126.2715847951417,53.132658189633005],[-126.27147820849795,53.13282594244189],[-126.27136976013747,53.132993134713516],[-126.27126129950146,53.13316088262734],[-126.27115284942752,53.13332807466888],[-126.27104438713242,53.13349583131587],[-126.2709368675415,53.13366357672327],[-126.27082841490025,53.13383076842058],[-126.2707199500334,53.13399852472316],[-126.27061149567857,53.13416571619055],[-126.27050302903787,53.13433346329975],[-126.27039362933026,53.13450065669387],[-126.27028422875912,53.134667849971315],[-126.2701738986563,53.13483504525294],[-126.27006355270402,53.13500224045032],[-126.26995322085932,53.13516943549506],[-126.2698428696251,53.135336074733196],[-126.26973253603991,53.135503269541125],[-126.26962218660502,53.13567046426464],[-126.26951185127788,53.13583765883564],[-126.2694014965097,53.136004288636975],[-126.26929115944205,53.13617148297112],[-126.26918080652436,53.13633867722085],[-126.2690713964195,53.136505869205855],[-126.2689619890364,53.13667362575929],[-126.26885352089413,53.13684081536629],[-126.26874503691637,53.137008004892294],[-126.26863749930541,53.13717574788223],[-126.26853090460216,53.13734349757998],[-126.26842429759672,53.1375118029218],[-126.26831862987733,53.13767954132663],[-126.26821390861042,53.13784784216683],[-126.26811011524933,53.13801614079383],[-126.2680081935265,53.138184435072404],[-126.26791283489499,53.138355519920815],[-126.26784656301562,53.13853549324039],[-126.26779529528544,53.13871935850118],[-126.26774308775798,53.1389015496958],[-126.26767395914605,53.13907537148775],[-126.26757011108911,53.13923582668744],[-126.26741092082922,53.13937903586272],[-126.26718232167475,53.13950503952404],[-126.26690955482132,53.1396042522688],[-126.26662063439039,53.13966485072811],[-126.26633238823716,53.13968510283253],[-126.26603369117137,53.13968241358053],[-126.26572742060246,53.13966405468759],[-126.26541640532439,53.13963674227662],[-126.26510443620367,53.139607755035655],[-126.26479530827407,53.139582677606306],[-126.2644918682442,53.139568790866576],[-126.26419789932496,53.13957224424662],[-126.26391719166895,53.13960032554442],[-126.26365071289219,53.13965694072432],[-126.26338992658735,53.13972810810197],[-126.26313201834061,53.13980935228787],[-126.2628769810309,53.139899552894136],[-126.26262572481498,53.139998143225334],[-126.2623782692035,53.14010345607466],[-126.26213458403521,53.14021547360449],[-126.26189656143556,53.14033252446257],[-126.26166229535322,53.14045404820569],[-126.26143461364144,53.14057948287794],[-126.2612116332731,53.1407071385984],[-126.26099521196643,53.140837029221956],[-126.26078533931722,53.140967460731865],[-126.26058202693977,53.14109787740913],[-126.26038246881097,53.1412299616111],[-126.26018666846629,53.14136428700371],[-126.2599936935743,53.14150028199878],[-126.25980352915855,53.141637946642945],[-126.25961617874006,53.14177785459613],[-126.25943165032552,53.14191886750767],[-126.25924900023021,53.14206100538488],[-126.25906823180283,53.1422048149935],[-126.25888933819272,53.14234917593751],[-126.25871232631056,53.142495217592725],[-126.25853718931562,53.14264181956309],[-126.25836299832262,53.14278897492178],[-126.25818973835322,53.142936683705464],[-126.258018353296,53.14308495282341],[-126.25784696703884,53.14323322168091],[-126.25767651187336,53.143382052938485],[-126.25750699929644,53.14353087292106],[-126.2573374821517,53.14367913692841],[-126.25716796724889,53.14382796536406],[-126.25699751543249,53.1439756661955],[-126.2568289235964,53.144123927420274],[-126.25667441415317,53.144277204205316],[-126.25653399393295,53.14443660804427],[-126.25640013334727,53.14459823832181],[-126.25626815127421,53.14476098478048],[-126.25613333800074,53.144921496368575],[-126.2559891545254,53.145078666806356],[-126.25583087941816,53.14522970074355],[-126.25564348981607,53.14536791704264],[-126.25543170015519,53.14549498153514],[-126.25521050326917,53.1456175842587],[-126.25499684166212,53.14574521667723],[-126.25480288959355,53.14588176062968],[-126.25461550722322,53.14602221605521],[-126.25443282999869,53.146165466576704],[-126.25425203103451,53.146309824219585],[-126.2540712308915,53.146454190537966],[-126.25388761426532,53.14659631281299],[-126.25369834614355,53.14673565034718],[-126.2535025024709,53.14687051998777],[-126.25329632413553,53.14699868891785],[-126.25307792667365,53.14712072580453],[-126.252850123438,53.147236050917186],[-126.25261292793333,53.14734692293207],[-126.25237009247932,53.147454436280206],[-126.25212442233307,53.147559158603464],[-126.25187594247404,53.14766276597298],[-126.25162840869011,53.14776693548988],[-126.25138273489698,53.14787165625525],[-126.2511427134979,53.147979725751846],[-126.25090925511014,53.14809057739352],[-126.25068424930721,53.148207021698305],[-126.2504714567735,53.14832903282709],[-126.2502736993876,53.14845998404799],[-126.25009661568414,53.14860320683582],[-126.24993738736002,53.14875591964119],[-126.24979316939942,53.148915887710324],[-126.24965928541441,53.149080306480954],[-126.24953384610332,53.14924639238],[-126.24941307744666,53.1494119125597],[-126.24929980299183,53.149577972537315],[-126.24919683798109,53.14974680723436],[-126.24910326855412,53.149918427564145],[-126.24901625625535,53.15009171910726],[-126.24893111951022,53.150265562348274],[-126.24884503807066,53.15043940749643],[-126.24875709131229,53.15061213607117],[-126.24866162360577,53.15078263953871],[-126.24855678849976,53.150950357071345],[-126.2484397473515,53.15111418315374],[-126.24830769140827,53.15127300323084],[-126.24815967647795,53.15142681026997],[-126.24799947666142,53.15157783712922],[-126.24782895841881,53.15172496840171],[-126.24764998632764,53.15186932055465],[-126.24746443660841,53.15201143638842],[-126.24727420064141,53.15215188557185],[-126.24708021069713,53.15229122186095],[-126.24688621294375,53.15242943742285],[-126.24669221392391,53.15256765265616],[-126.24650103079087,53.15270586169339],[-126.24630513658256,53.15284071897733],[-126.24610266469327,53.152973348778715],[-126.24589737632786,53.15310374324957],[-126.24568833071146,53.15323246901634],[-126.24547928377208,53.15336118544153],[-126.24527023883265,53.15349046616895],[-126.24506401309914,53.15362030536512],[-126.24497040659182,53.15379247780873],[-126.24492366287913,53.153967923388336],[-126.24495185977315,53.154148251223695],[-126.24502873238141,53.15432119111991],[-126.24512243639002,53.15449186423489],[-126.24521334529258,53.15466365449972],[-126.2452911555551,53.15483772161186],[-126.24534369855613,53.15501407289453],[-126.24534661699334,53.15519445293403],[-126.24528861895485,53.15536992185105],[-126.24522969453065,53.15554594836451],[-126.2451857652487,53.155723619902126],[-126.2451409097361,53.15590185801022],[-126.24509322998229,53.15607898152157],[-126.24507459090523,53.15625828568795],[-126.24507283259356,53.15643867529195],[-126.24507668239069,53.15661961795248],[-126.24508054393839,53.15679999588433],[-126.2450768940782,53.1569798246648],[-126.24505919546428,53.15715857106887],[-126.2450190007184,53.15733455851795],[-126.24493194344727,53.15750559659562],[-126.2448177103366,53.1576733385399],[-126.24470440544295,53.157841069474436],[-126.24459110291369,53.158009364964265],[-126.2444693522394,53.158176001645685],[-126.24435886214913,53.15834372638395],[-126.24428209619872,53.158514751596286],[-126.2442690683257,53.1586906825815],[-126.24430663568465,53.15887154648774],[-126.24434327421575,53.159052421245285],[-126.24431994493246,53.15923004957864],[-126.2442151137442,53.15940504953053],[-126.244188943526,53.15957876671826],[-126.24424427111587,53.1597517600281],[-126.24431833663303,53.15992527034526],[-126.2444055167988,53.160098753523364],[-126.24450112919209,53.160271098798276],[-126.24460234446296,53.16044286771862],[-126.2447026184203,53.160612406632936],[-126.2448131885074,53.16077911865584],[-126.24493497234498,53.16094356654581],[-126.24506051258923,53.16110688611434],[-126.24518323929716,53.16127076708627],[-126.24529754177587,53.16143691515167],[-126.24540811635916,53.16160362654345],[-126.24551775078794,53.16177089548997],[-126.24562644188313,53.16193817524196],[-126.24573420779546,53.162106012522635],[-126.24584291882175,53.162273847728756],[-126.2460187328306,53.162544620734906],[-126.24607128646451,53.162723211763705],[-126.24613602944878,53.162902342093616],[-126.24619514905008,53.1630809283455],[-126.24623085368233,53.16325899857213],[-126.24622718536935,53.16343490986043],[-126.24618042641889,53.16360866993766],[-126.24610648591477,53.16378136608502],[-126.24601473478405,53.163953534498425],[-126.24591268230407,53.164125168501066],[-126.24581062899652,53.164296802399505],[-126.24571701695861,53.164468983355825],[-126.2456412059272,53.16464280341121],[-126.24559631489173,53.1648188000681],[-126.24559361085142,53.16499862611431],[-126.24561246791632,53.165179536779966],[-126.24563599853921,53.16535987304447],[-126.24570553418752,53.16555859600136],[-126.24560900662559,53.165714532458324],[-126.24575237569483,53.165881175123346],[-126.24599537115971,53.165940051866976],[-126.24629820302877,53.16598032145981],[-126.24658603149665,53.166015575230176],[-126.24691301989581,53.166021051451544],[-126.24721558354888,53.16601257720846],[-126.247491933106,53.16600975901481],[-126.24780030129307,53.16603264245198],[-126.24809376373909,53.16607236238207],[-126.24838261572152,53.16612329529681],[-126.24866311336335,53.16618601377666],[-126.24893429088246,53.166259390543765],[-126.24920177648666,53.16633949688288],[-126.24946553037246,53.166424647814836],[-126.24972836589659,53.16651148518183],[-126.24999120249907,53.16659832196125],[-126.25025589737233,53.166682357699784],[-126.25052431088888,53.166761338678164],[-126.25080201770142,53.16682741023714],[-126.25109179922217,53.166874417638574],[-126.25133458989959,53.166899107063045],[-126.25152950827905,53.16690710061664],[-126.25135282070947,53.16712931576058],[-126.2512828421967,53.16733561852723],[-126.25123897928673,53.167522254274175],[-126.25134859226333,53.16767944274005],[-126.25151434941517,53.16782474312097],[-126.25169977323104,53.167967195963286],[-126.25189921759578,53.16810514602894],[-126.2521061417282,53.168240274335524],[-126.25231397318497,53.168371474448584],[-126.25252927272227,53.16849538012585],[-126.25276230369515,53.168608608209645],[-126.2529990700984,53.168719578079966],[-126.25322836932749,53.168835054017066],[-126.25343619043905,53.168963455628834],[-126.25362535994901,53.16910365656858],[-126.25381451238914,53.16924330151505],[-126.25402422278292,53.169371142304506],[-126.2542563416851,53.16948828629523],[-126.25450156350136,53.16960035537074],[-126.2547458388466,53.16971187025133],[-126.25497889254336,53.1698267699967],[-126.25518763114005,53.16994900878167],[-126.25536084837944,53.170084759668335],[-126.25546682344486,53.1702565172171],[-126.25549608141718,53.17044692237318],[-126.25545311262744,53.170625158937554],[-126.25534351911608,53.17078561274536],[-126.25519079433526,53.17094111311577],[-126.25502026358599,53.171094975505675],[-126.25485817026573,53.171251060275736],[-126.2547307731484,53.17141323685609],[-126.25464184548315,53.17158316439967],[-126.25457450537007,53.171758091732414],[-126.25452123209767,53.1719363499742],[-126.25447920890558,53.17211570439621],[-126.25444093330418,53.172295050731904],[-126.2544073281013,53.17247326660199],[-126.25439248762775,53.17265312721314],[-126.25438607919996,53.17283408112651],[-126.25437591602675,53.17301393165106],[-126.25434793201875,53.17319213535655],[-126.25429747785361,53.173370943015094],[-126.25423391704163,53.173554269337046],[-126.25413751030962,53.17372813822708],[-126.2539894227423,53.17387690441667],[-126.25379059218962,53.17400450054976],[-126.253563604141,53.174122064079754],[-126.25331499534897,53.17422959878913],[-126.25305225527337,53.17432595021304],[-126.25278289202193,53.17441055547702],[-126.25251157677445,53.17448228417773],[-126.25223177798777,53.17454450245043],[-126.25194629110749,53.1745983246875],[-126.25165609584924,53.174647118926345],[-126.2513630829893,53.1746936776348],[-126.2510709990294,53.1747402336462],[-126.250780805135,53.17478959041003],[-126.25049531809844,53.17484397381556],[-126.25021644350488,53.17490618534764],[-126.2499460718371,53.174979017576376],[-126.24968796596033,53.17506751786203],[-126.2494411960049,53.1751716703145],[-126.249201987284,53.175287019278656],[-126.24896843581845,53.17540851356411],[-126.24873581915911,53.175531125812455],[-126.24850131570696,53.17564925996027],[-126.24826299511723,53.17575843845224],[-126.24801523227242,53.17585307105908],[-126.24775703826532,53.175928113521515],[-126.24748463896887,53.17597910103383],[-126.24719993371814,53.17600770565117],[-126.24690669736401,53.17601840100686],[-126.24660494139373,53.176015668605814],[-126.24629939154097,53.176005100542795],[-126.24599100036997,53.17599062068365],[-126.24568262762917,53.17597669570073],[-126.24537709777651,53.17596948641049],[-126.24507630426655,53.17597235010903],[-126.24477563587227,53.17599425954478],[-126.24447409379503,53.17602849439376],[-126.24417441564886,53.17606103955189],[-126.24388118899387,53.176076208983126],[-126.24366180473355,53.176057613843255],[-126.24336696539481,53.175954023178186],[-126.24310864838812,53.17584475481371],[-126.24292889923437,53.17571236105663],[-126.24282953473221,53.175541699718174],[-126.24275820667145,53.17536034151063],[-126.24269908447128,53.17518176370407],[-126.24264559466313,53.17500485042597],[-126.24260053976617,53.174826799428715],[-126.24256108607058,53.17464761652594],[-126.2425235217724,53.17446842972348],[-126.24248688732744,53.17428924098818],[-126.24244743461416,53.17411005799501],[-126.24240238150342,53.17393200683547],[-126.24235077173644,53.17375564517869],[-126.24228885419598,53.173580433937396],[-126.24221477951447,53.17340804403285],[-126.2421247966138,53.17323792739582],[-126.24201889708606,53.17307120440722],[-126.2418998931888,53.17290674888122],[-126.24177058532581,53.172743990379836],[-126.24163660743284,53.172582370617874],[-126.2415007565317,53.17242074554909],[-126.2413658512017,53.172259127348084],[-126.24119030114772,53.17203652550682],[-126.24103855269966,53.17188109893002],[-126.24088774983663,53.171725670223985],[-126.24072667117035,53.171574179125884],[-126.24055156668847,53.17142888297705],[-126.24037085118877,53.171285283033086],[-126.24018732804568,53.171143364619],[-126.23999727077471,53.171004255676024],[-126.23980255021634,53.170867405628776],[-126.23960221638254,53.17073448353346],[-126.23939907411581,53.17060044636974],[-126.23919218848839,53.17046697213148],[-126.23898156909233,53.17033575482562],[-126.23876536090575,53.17021014144981],[-126.23854264717903,53.17009239254976],[-126.23831248093514,53.16998473287169],[-126.23801879263144,53.16990801596665],[-126.23771237921822,53.16990359422763],[-126.2375039878036,53.16999980223182],[-126.23734375194672,53.17016370207211],[-126.23720228512221,53.17033316608196],[-126.2370682657076,53.17049421647076],[-126.2369417628098,53.17065916857022],[-126.23681994247394,53.17082523155258],[-126.23670001635651,53.170992411006026],[-126.23657819411304,53.17115847370938],[-126.2364516810608,53.17132230483785],[-126.23631765250519,53.171482789614785],[-126.23617235109762,53.17163825042859],[-126.23601296403596,53.171787025690676],[-126.23583572199487,53.17192798452721],[-126.23563780906721,53.17205890959097],[-126.23542298864733,53.1721825808517],[-126.23519501487425,53.17230011116106],[-126.23495857459689,53.17241318518818],[-126.23471744624347,53.17252458294633],[-126.23447725798347,53.172635413661425],[-126.23423987821288,53.17274736768644],[-126.2340090641534,53.172862104766686],[-126.23377826071545,53.17297627668534],[-126.2335455608966,53.17308934044922],[-126.23331192720993,53.17320184090554],[-126.23307735348716,53.17331265766228],[-126.23284088646119,53.17342292195058],[-126.23260348252646,53.173532067199446],[-126.23236326460855,53.173639541369425],[-126.23212209476056,53.17374588754799],[-126.23188092065587,53.173851677517646],[-126.23163786516427,53.17395635026978],[-126.23139386394737,53.174061024362814],[-126.23114987039675,53.17416457753179],[-126.2309049280925,53.17426757632243],[-126.23065904001717,53.17437056747733],[-126.23041315968668,53.174472446663934],[-126.23016633056686,53.17457376249577],[-126.22991855572842,53.17467507964142],[-126.22967078861618,53.17477527584814],[-126.229421128187,53.17487491051669],[-126.22916959840462,53.17497287215419],[-126.22891335047429,53.17506636078153],[-126.22865144278475,53.17515313739231],[-126.22838292183148,53.1752315276748],[-126.22811159317233,53.17530935807166],[-126.22783934297871,53.17538886572877],[-126.22756614725577,53.17546838353481],[-126.22729199689974,53.1755462174604],[-126.22701596837506,53.17562069315592],[-126.22673802272355,53.175690125606465],[-126.22645817807867,53.175752282933985],[-126.22617639860253,53.175806044797845],[-126.22589270243314,53.175849161393884],[-126.22560326971463,53.17587379721018],[-126.22530621200343,53.17587156626856],[-126.22500436613541,53.175851408369624],[-126.2247006018307,53.175822854848384],[-126.22439684093003,53.17579486522172],[-126.2240959404663,53.175777508690075],[-126.22380171086166,53.17577974124708],[-126.22351325453184,53.17581053677237],[-126.22322589008715,53.175869339450415],[-126.2229479956554,53.17594997581269],[-126.22268988042973,53.17604849170348],[-126.22245806392036,53.176158726266465],[-126.22223379872881,53.17627959444188],[-126.22201614336566,53.17640884828007],[-126.22180882818533,53.17654592511175],[-126.22161746395189,53.17668857369746],[-126.22144581114462,53.176836222401604],[-126.22130041333907,53.17698719193191],[-126.22121974304935,53.17714980004424],[-126.22122162730544,53.17733242101666],[-126.22124979476483,53.1775205948458],[-126.22125167621485,53.177702651107104],[-126.2212394968308,53.17788250179245],[-126.22122918862301,53.17806178428404],[-126.22122545056882,53.178241610199606],[-126.22122545774525,53.178423678854145],[-126.22125263446046,53.17860289126453],[-126.22135939305825,53.178766269398785],[-126.2215223098502,53.17891889415954],[-126.2216880438178,53.17907095769637],[-126.22184348379,53.179224160669094],[-126.22199985453551,53.17937736168243],[-126.22215996912473,53.179529435061156],[-126.22232382466562,53.17967982508052],[-126.2224923507891,53.17982852101575],[-126.22266369117355,53.17997609101605],[-126.22283223466574,53.18012478641546],[-126.22299702159295,53.18027460903261],[-126.22315434208417,53.180427241982414],[-126.22329949369939,53.18058382351717],[-126.22343342101671,53.180744351898454],[-126.22355986669464,53.180907690741606],[-126.22368444192153,53.18107158868497],[-126.22381181629558,53.18123436976463],[-126.22395324807323,53.18139543904202],[-126.22410029815289,53.18155537711432],[-126.22424267679584,53.18171644423044],[-126.2243709999089,53.181879213899904],[-126.22447497753451,53.18204595542017],[-126.22454242116471,53.18221724767745],[-126.22458178182903,53.182391954314504],[-126.22460052397318,53.18256950548804],[-126.22460522437683,53.182748759378605],[-126.2245996317563,53.182929708878355],[-126.22458934844956,53.18311123193253],[-126.22457812332216,53.183293321431194],[-126.22457253351074,53.183474835548076],[-126.22457629805488,53.18365576723247],[-126.22459411988697,53.183834996137435],[-126.2246269408288,53.18401476125457],[-126.22467007926706,53.184194497811745],[-126.22471694914653,53.18437367154256],[-126.22476101514255,53.18455285055909],[-126.22479852521319,53.1847314862714],[-126.22482289586027,53.184909582219305],[-126.22482758255873,53.18508603044271],[-126.22479952578374,53.1852726332803],[-126.22472276873539,53.185469403054384],[-126.22460466356553,53.18564328764295],[-126.22445157016463,53.18576066315785],[-126.2241946112456,53.18573426043515],[-126.22387915562757,53.185635142344005],[-126.22358922556953,53.18557855007539],[-126.22329464396435,53.18552700314281],[-126.22302246037768,53.1854569313401],[-126.22280442449859,53.1853458672844],[-126.22263400075485,53.18519717576209],[-126.22247288582106,53.185038938695634],[-126.22228937513707,53.18489643787015],[-126.22209650741038,53.18475954729035],[-126.22189897096115,53.184624350203876],[-126.22170143577425,53.18448915277813],[-126.2215029750486,53.184354521423415],[-126.22130357374219,53.1842204472003],[-126.22099036697523,53.184011518799686],[-126.22069128433489,53.18399134473586],[-126.22038940902543,53.18397622135706],[-126.22009125088847,53.183954932629945],[-126.21980143923909,53.183917933219114],[-126.21952369194291,53.18385627108839],[-126.21925429232454,53.18377610191043],[-126.21899138600541,53.18368415151873],[-126.21873034376875,53.183589965278316],[-126.21846650657997,53.18350025621905],[-126.2181971343417,53.18342456614538],[-126.21791848251195,53.18336962426127],[-126.21763057489969,53.18333430110356],[-126.21733615429332,53.183309628438174],[-126.217038957962,53.183293367547535],[-126.21673806236204,53.18328383503169],[-126.21643530898189,53.18328047178265],[-126.21613258776843,53.18328045991316],[-126.2158298687498,53.183283817404316],[-126.21552904197311,53.18328772639244],[-126.21523008883376,53.18329442770922],[-126.2149313156824,53.18333362826565],[-126.21463352850003,53.18338402123269],[-126.2143412562305,53.18341312499152],[-126.21405902773263,53.18339122757879],[-126.21378504400225,53.18333010090686],[-126.21351563879757,53.183245992836866],[-126.21324899937306,53.18315404539375],[-126.21297957292273,53.183068260032535],[-126.21270739123787,53.18299199785297],[-126.2124352133691,53.18291629971713],[-126.2121583971848,53.18284845200583],[-126.21187413083733,53.18279294128475],[-126.21153738471911,53.18273528284184],[-126.21109656445708,53.18267053091874],[-126.21069695515035,53.18260009312589],[-126.21038472632715,53.1825748791518],[-126.21006225162147,53.1825608864466],[-126.20971659580879,53.18259567544027],[-126.20923703999493,53.18265702478021],[-126.20887758515445,53.182746170215566],[-126.20850690695619,53.18284037159276],[-126.20817655888463,53.182942352625254],[-126.20787624572394,53.18305043768744],[-126.20761453684162,53.18319654762193],[-126.207323638157,53.183316939063296],[-126.20709365465491,53.18343498250094],[-126.20681374908577,53.1835010099948],[-126.20642038561715,53.1835582804505],[-126.2061128486655,53.18353360275664],[-126.2060794785561,53.18341882521379],[-126.20608087553855,53.183320784071206],[-126.20602043985275,53.183227896738195],[-126.20578486730811,53.183159406692965],[-126.2056045354327,53.18308072780946],[-126.20540405273312,53.182906859290114],[-126.20531696918147,53.182729988427916],[-126.20517363166832,53.18254873338448],[-126.20504543462535,53.18239713784042],[-126.20489303928532,53.18228032512187],[-126.2047618637563,53.18209232614918],[-126.20456905468698,53.18195316605903],[-126.20437813359624,53.18181344667423],[-126.20419281386229,53.18167204120929],[-126.2040075130412,53.18153119112768],[-126.20382032675485,53.181390899706955],[-126.2036294160648,53.1812522994556],[-126.20343277428603,53.1810941063463],[-126.2032285653928,53.1809179906406],[-126.2030211159572,53.18085056717236],[-126.20281338455477,53.18091814664732],[-126.20260589654909,53.18103669871417],[-126.20239761436751,53.1811838262523],[-126.20218655985335,53.18134104167311],[-126.20197169617515,53.18148593888402],[-126.201751103706,53.18160900228655],[-126.20152298031242,53.18172534676721],[-126.20129109888961,53.181840021079935],[-126.20106014591525,53.18195469335314],[-126.20083484587002,53.18207271675635],[-126.20062080530761,53.182196887284725],[-126.20042745546054,53.18233333774723],[-126.20025382876302,53.182480402735976],[-126.20008864688543,53.18263137904131],[-126.2000149239651,53.1826970419797],[-126.19992252614398,53.1827806716182],[-126.1997611084295,53.18293219679813],[-126.19960813296858,53.1830870686893],[-126.19946641901008,53.183245282575406],[-126.1993256363468,53.18340405042323],[-126.19918579740566,53.18356282546425],[-126.19904503289922,53.18372271330777],[-126.19890707161015,53.18388260522381],[-126.19877191613864,53.18404304796835],[-126.19864146127286,53.18420515876355],[-126.19851570183687,53.1843678262061],[-126.19839650265726,53.184532167577295],[-126.19828668304369,53.18469816921379],[-126.19821344784393,53.184872507956975],[-126.19816274518645,53.185051855177164],[-126.19811202450073,53.18523064667437],[-126.19803880005503,53.185404429525285],[-126.19792239781214,53.18556820096624],[-126.1977844209838,53.18572696207088],[-126.19763425278452,53.18588294685037],[-126.19747562987985,53.18603670474223],[-126.1973123092481,53.186189914519574],[-126.19714805236931,53.18634199626326],[-126.19698567417493,53.186495203992365],[-126.19682892123188,53.18664895784963],[-126.19668249547942,53.18680493511423],[-126.1965491890368,53.18696368690397],[-126.19646558777343,53.18712684661271],[-126.19641300036194,53.187306195974095],[-126.19636977596336,53.18748665016042],[-126.19636783469609,53.1876726378217],[-126.19633771938346,53.18785026477505],[-126.19623817792424,53.1880112098851],[-126.19604571463753,53.18814709551548],[-126.19569324712555,53.18834598698167],[-126.19539503955055,53.18831790489914],[-126.19509679624721,53.188281988373944],[-126.19479761840667,53.18824494328404],[-126.19450032141992,53.18821238486437],[-126.19420308613246,53.18818990012408],[-126.19390873529802,53.18818478040796],[-126.19361635921959,53.18820150877474],[-126.19332402894493,53.18822831087063],[-126.19303077394646,53.18825960426474],[-126.19273755645936,53.18829593413337],[-126.19244340891423,53.18833562594837],[-126.19215021354167,53.18838035274899],[-126.19185892252281,53.18842844586295],[-126.19156858094244,53.18848100930951],[-126.19128106093827,53.188537493322954],[-126.19099637489,53.18859733322817],[-126.19071545764548,53.18866164792734],[-126.1904383015881,53.18872876135961],[-126.1901658565302,53.188799783450264],[-126.18989811498577,53.18887639930556],[-126.1896331996262,53.18895804728696],[-126.18937300514698,53.18904585373371],[-126.18911564672244,53.18913758091105],[-126.18886111174237,53.1892337756059],[-126.18860939523051,53.18933333538279],[-126.18836145693275,53.189436240806934],[-126.18811445479383,53.189540829279416],[-126.18787120841147,53.18964709633387],[-126.18762889561339,53.189754472825456],[-126.18738847384155,53.18986241049651],[-126.18715085548676,53.18997034324231],[-126.18691417324868,53.19007995908715],[-126.18668031928883,53.19019180180289],[-126.18644741146852,53.19030420723377],[-126.18621637205727,53.190418850032934],[-126.18598722366157,53.19053405407786],[-126.18575900879486,53.19065036762943],[-126.18553172752554,53.1907678086187],[-126.18530539232897,53.19088580339395],[-126.18508000320413,53.19100435196039],[-126.18485554519086,53.1911234633097],[-126.18463108591364,53.191242574226116],[-126.18440662537245,53.19136168470957],[-126.18418216356731,53.191480794760125],[-126.18395770049823,53.191599904377526],[-126.18373228883247,53.19171845932034],[-126.18350406623652,53.191835888830745],[-126.18327396511599,53.19195276508737],[-126.18304198786876,53.19206964378649],[-126.18281095426939,53.19218652056592],[-126.18258178409565,53.192304514398145],[-126.18235543971305,53.19242418848648],[-126.18213379595635,53.19254553100101],[-126.1819177726002,53.192669660940105],[-126.18170927457555,53.19279658437504],[-126.18150827429496,53.192926857098065],[-126.18131760904785,53.19306103947768],[-126.18115700102997,53.193209175900364],[-126.18103396443438,53.19337461615509],[-126.18093346429764,53.19354899388297],[-126.18083953783365,53.19372447289444],[-126.18073085699343,53.19396103971661],[-126.18045361692148,53.194020286959834],[-126.18032391398488,53.19394261330774],[-126.1801133365291,53.19380569112059],[-126.17989253679939,53.1936878216359],[-126.17965394523064,53.19357614530916],[-126.17941723223387,53.193465030325505],[-126.17918800110924,53.19334941304861],[-126.17897466491654,53.1932253729117],[-126.17878940932182,53.193087289688194],[-126.17863876197988,53.19293233925849],[-126.17850213918366,53.19277008947825],[-126.17835897468527,53.192610654819646],[-126.17818868498817,53.192463576045654],[-126.17799405538966,53.19232774639921],[-126.17778821404355,53.19219697050112],[-126.17758048644852,53.19206675277644],[-126.17738305818382,53.19193148200886],[-126.17717348973622,53.1918051921406],[-126.17699660283479,53.191649723061246],[-126.1768469111827,53.19149813894036],[-126.17667475171798,53.19134994032258],[-126.17650258081686,53.191202306135615],[-126.17632948121131,53.191054673070916],[-126.17615545992744,53.19090872617333],[-126.17597675463423,53.19076501777669],[-126.17579336773468,53.19062412149388],[-126.17560438665028,53.190486594367975],[-126.17538168526335,53.19035864462049],[-126.17512442300647,53.1902581905144],[-126.17485331936251,53.19020872934723],[-126.17455534597055,53.19023717844559],[-126.1742527285011,53.19027795786714],[-126.1739464058515,53.19032602894273],[-126.17367450544435,53.19031241859104],[-126.17346585381794,53.1901782780374],[-126.17328713783769,53.19002897259438],[-126.17311779460245,53.18987908849967],[-126.1729549906514,53.18972526877266],[-126.17279407766398,53.18957145501546],[-126.1726294082111,53.18941932260075],[-126.17245820641399,53.18927223671318],[-126.1722748572634,53.18913245522761],[-126.17207561227825,53.18900390040541],[-126.17182214284226,53.188910155886056],[-126.17156676801362,53.18880857087592],[-126.17131891821028,53.18871314103539],[-126.17104021773251,53.18863959827951],[-126.17076435358317,53.18856996764892],[-126.17048288206772,53.18850427027964],[-126.17019580987645,53.18844418222073],[-126.16990597222322,53.188393625200064],[-126.16961429494692,53.18835538539405],[-126.16932174890285,53.18833227581302],[-126.16900116117388,53.18832881676886],[-126.16870701348638,53.18837405153896],[-126.16841097930802,53.1884164828108],[-126.16813000002232,53.188473465961344],[-126.16787633506338,53.188561771592795],[-126.16764433167528,53.188678064643156],[-126.16743677360003,53.18881336028252],[-126.16726111764119,53.18895701788221],[-126.16711926749396,53.18911631292478],[-126.1670121377882,53.18928732736903],[-126.16693877857922,53.18946109059505],[-126.16691323503387,53.18963926793582],[-126.16692332710095,53.189821311911636],[-126.16691282340024,53.19001011616722],[-126.16700349541469,53.19018308344838],[-126.16707543587118,53.19036000289582],[-126.16683298449806,53.1904466142713],[-126.16660924206462,53.19051975421044],[-126.16633217875342,53.19062321900348],[-126.16603533327786,53.19070430316787],[-126.16574680785439,53.19075400416127],[-126.16545543544207,53.19079306924992],[-126.16516026723714,53.19082428725473],[-126.16486227646237,53.190851035874374],[-126.16456335101509,53.19087665569397],[-126.16426629374754,53.19090452190076],[-126.16397207747495,53.19093797639046],[-126.16368351768962,53.19097982970022],[-126.1634081740649,53.1910457568299],[-126.16315264143527,53.19114246213117],[-126.16290744616171,53.19124811573631],[-126.162651002851,53.191354339981274],[-126.16243305145518,53.19147788133139],[-126.1623305376631,53.19163487567306],[-126.16230968736947,53.191818091562574],[-126.16230570414109,53.19200351612707],[-126.16232514052291,53.19218275095374],[-126.16231082728567,53.19236147629548],[-126.16225620509901,53.19253857177702],[-126.16224470054112,53.19271840464958],[-126.16227913400739,53.19289706316429],[-126.16233794144527,53.19307567929129],[-126.1623967451131,53.19325318395744],[-126.16242836831098,53.1934301611745],[-126.16240936240962,53.193609448551726],[-126.16233225273021,53.19378993592267],[-126.16219222770451,53.19394529627832],[-126.16198928263286,53.19407441798795],[-126.1617459659879,53.1941862330129],[-126.16148382791536,53.194279582389136],[-126.16121411411152,53.19435333030959],[-126.16093216635686,53.19441309392959],[-126.16064267317003,53.194465024428894],[-126.16035318577796,53.194514713445336],[-126.15990341861867,53.19457470163719],[-126.15979061462657,53.19474403159074],[-126.15966467870743,53.194907777207284],[-126.15947486311623,53.195041358359475],[-126.15925030316112,53.19515818017236],[-126.15901071670542,53.19526829942722],[-126.15876831979197,53.195377301573814],[-126.15853624766977,53.195491891310155],[-126.15831168903715,53.195610396361516],[-126.1580890104294,53.195730574560315],[-126.15786726264245,53.19585130680019],[-126.1576455265188,53.19597148289075],[-126.15742096701433,53.19609110659906],[-126.15719452077373,53.1962079269406],[-126.15696243567356,53.19632139316695],[-126.15672564380759,53.196432059721694],[-126.15648698030226,53.196539931795556],[-126.15624928908092,53.19665957058206],[-126.15600971315176,53.196776961638804],[-126.1557597288978,53.19687084684839],[-126.15548988974831,53.196917692620914],[-126.15519171428433,53.19690744443307],[-126.15488592377837,53.19686582582056],[-126.1545951016909,53.19681523280328],[-126.15433412394263,53.19672146104795],[-126.15415079831834,53.19658053170056],[-126.15399740056696,53.1964233131546],[-126.15375609966136,53.19632335691781],[-126.15345973676918,53.19629461124929],[-126.15316075299489,53.19632076690878],[-126.1528588645705,53.1963194717393],[-126.1525560118121,53.19630865828349],[-126.15226990468108,53.19626589614934],[-126.15199684176397,53.19619621847662],[-126.15172935169467,53.196115893895126],[-126.15146560164678,53.196028285929025],[-126.15120370467824,53.19593842528216],[-126.15094275786481,53.195849692187366],[-126.15068649120187,53.1957564620734],[-126.15043394677191,53.19565930982182],[-126.15017674336,53.19556776484182],[-126.14989807728155,53.19550201523534],[-126.149610069588,53.195449721348915],[-126.14936222646259,53.19535312553758],[-126.14912932912823,53.1952408160843],[-126.14890484843528,53.19512009720762],[-126.14868222507295,53.194998255186476],[-126.14845213184307,53.19488034791939],[-126.14822108702474,53.194760191662986],[-126.14804247803514,53.194621487614505],[-126.14794252665459,53.194456360589186],[-126.14783452411753,53.19413326064159],[-126.14805074580853,53.194039443178596],[-126.1482611466219,53.193885687653406],[-126.14844720200088,53.193744842167256],[-126.14863139230987,53.19360288729682],[-126.14881368749148,53.19345980516239],[-126.14899692642743,53.19331673051096],[-126.14918111299606,53.193174765790076],[-126.14936716221689,53.19303392776806],[-126.14955885976619,53.19289587878742],[-126.14975430074047,53.19276062122924],[-126.14995727090965,53.19262984430319],[-126.15017525364931,53.1925074463828],[-126.1504064021092,53.19239287402123],[-126.15064504974303,53.192282773198315],[-126.15088464304704,53.19217322639242],[-126.15112047940882,53.19206200779245],[-126.15134504338957,53.19194464548701],[-126.15154612384393,53.191812183126714],[-126.15170681014348,53.191658484854955],[-126.15184309630231,53.19149753065092],[-126.15198780261774,53.19133433366673],[-126.15212689027321,53.1911688939737],[-126.1522397064721,53.19100125606114],[-126.15230753141776,53.190830870436905],[-126.15232190253346,53.190656627675594],[-126.15231001644727,53.1904796221789],[-126.15227750186007,53.19030096708799],[-126.15222903843268,53.190120647409024],[-126.1521674690756,53.189940900240444],[-126.1520965175273,53.18976285012929],[-126.15201996538474,53.18958704791733],[-126.1519368608863,53.18941573558595],[-126.15181722043144,53.18925231271102],[-126.15167042297635,53.18909397069353],[-126.15152175186967,53.188935621915476],[-126.15139463254997,53.18877277281592],[-126.151300289956,53.18860315042779],[-126.15122280638306,53.18842958955883],[-126.15115374605597,53.18825434177793],[-126.15108657396227,53.18807852685777],[-126.15101283757319,53.18790384063871],[-126.1509269209628,53.18773253103739],[-126.15082602476674,53.1875617961451],[-126.15070919936683,53.18739445154341],[-126.1505539850278,53.18724059128893],[-126.15035195676818,53.18709688269497],[-126.15013877043997,53.18698230898436],[-126.14989769524209,53.18692828003285],[-126.14959788129157,53.18696451144595],[-126.14929152578821,53.187008593051026],[-126.14899907908203,53.187007840898126],[-126.14871206921269,53.186953858345824],[-126.14842965198214,53.18687074824917],[-126.14817527937957,53.18677023191971],[-126.1479977039437,53.18664721137094],[-126.1480317045682,53.18645501803574],[-126.14809576643992,53.18627791679628],[-126.14820296178915,53.1861102893161],[-126.14838897851973,53.185963841398284],[-126.14860312719942,53.18582576527123],[-126.14873664143224,53.18567603044066],[-126.14877063004081,53.18548159602679],[-126.14875299085064,53.18526314257667],[-126.14866613929306,53.185086230343565],[-126.14849060918347,53.185010264154776],[-126.14823093408398,53.18499826515296],[-126.14791891422227,53.185022748053115],[-126.14758823121174,53.1850752541209],[-126.14727076028548,53.18514959487989],[-126.14700113247885,53.18523844045566],[-126.14680938548739,53.18535464288558],[-126.14668341951051,53.18551613476591],[-126.14658187883302,53.18569831895828],[-126.14646721083362,53.18587492630455],[-126.14630746113659,53.18602973718367],[-126.14612148091304,53.18618458019489],[-126.1459025954572,53.18631312985945],[-126.1456413123164,53.186380674639054],[-126.1453593245059,53.186419678863615],[-126.14506979197988,53.18644971959742],[-126.14477555894617,53.18647360772147],[-126.14447662742273,53.18649189891047],[-126.14417486287836,53.186506275920465],[-126.14387026725304,53.18651728547639],[-126.14356568269473,53.186527182811574],[-126.14326202588978,53.18653651356632],[-126.14295930254455,53.18654696280249],[-126.14266035082902,53.18655964749584],[-126.14236042207038,53.18656280483944],[-126.14205952215883,53.186558128844],[-126.14175957273471,53.1865551270452],[-126.1414624858358,53.186565001034445],[-126.14117016010768,53.18659952607505],[-126.14088164840774,53.18665364814214],[-126.14059407507403,53.186710564875256],[-126.14030458748256,53.18675124205085],[-126.14000937148403,53.18676503601081],[-126.13970661816772,53.186762597001184],[-126.13940379817849,53.186744462921084],[-126.13911030395703,53.186707279505875],[-126.13882705798234,53.1866532685901],[-126.13854003784867,53.186591427667175],[-126.13825486750966,53.18652173221883],[-126.13797716734562,53.186443073250196],[-126.13771443220536,53.186354303786],[-126.13747321036888,53.18625374918905],[-126.1372703609618,53.186132982668596],[-126.13713766843033,53.185966198721474],[-126.13703864270119,53.18578032908461],[-126.1369228106608,53.18560960848521],[-126.13674246612668,53.18549049110546],[-126.13646958093197,53.185451036565425],[-126.13614810236274,53.18545196224165],[-126.13583406031164,53.18543832244594],[-126.13554990082115,53.1853854251059],[-126.13527130776835,53.1853190850415],[-126.13499645822091,53.18524600876678],[-126.13472253942952,53.18517293975678],[-126.13445326662217,53.18508921667564],[-126.13418774830733,53.185002127563706],[-126.1339147728738,53.18493240781009],[-126.13361283718196,53.18489017407483],[-126.13327816163932,53.184865902615215],[-126.13301114151976,53.18490093479133],[-126.13287570575194,53.18504785756407],[-126.13277782072522,53.1852188308889],[-126.13273428583305,53.185381335835906],[-126.13265871688539,53.18549569998863],[-126.13228220038843,53.18558294660774],[-126.13199935167923,53.18565105005878],[-126.13174642375753,53.18569614713938],[-126.13144368202097,53.18569479842842],[-126.13114378114635,53.18570521434302],[-126.13085523328299,53.1857497932391],[-126.13057329018056,53.185811160989964],[-126.13029326173096,53.185880933343334],[-126.13001321565348,53.18595014933855],[-126.12973128328747,53.186010959352004],[-126.1294446029875,53.1860544034051],[-126.12915315801914,53.186074888512906],[-126.12885509435856,53.18607409275694],[-126.12855418546853,53.18605985469895],[-126.12827960457498,53.18607807857919],[-126.12796286952647,53.1861019493038],[-126.12764432374692,53.186147108477535],[-126.12739249663973,53.18624653828275],[-126.12710681115848,53.18631294800223],[-126.12696264655264,53.186373038812306],[-126.1268211733602,53.18639056084255],[-126.12667700642042,53.186450095592505],[-126.12655155503569,53.18649952669316],[-126.12639135191094,53.18652770740654],[-126.12628187512973,53.186588325034776],[-126.1261733261616,53.186648376896486],[-126.12607624664122,53.18678292661171],[-126.12591365615506,53.18695172215092],[-126.12580917816108,53.18712044677822],[-126.12568405827705,53.18728247984925],[-126.12554486003373,53.18744115757519],[-126.12539629914697,53.18759873361204],[-126.12523928866348,53.18775463332217],[-126.12507382355352,53.187907180580986],[-126.12490179344314,53.188056373361526],[-126.12472319333624,53.18820052658159],[-126.12445569972635,53.18840023649776],[-126.12432931487072,53.18845638847512],[-126.12403421830298,53.188511596710526],[-126.12374944237237,53.18857296002593],[-126.12346935631382,53.18863823463125],[-126.12318927948213,53.18870182350258],[-126.12290731048421,53.18876485796106],[-126.12262535403308,53.18882733602143],[-126.12234338335843,53.188890369133226],[-126.12206235993526,53.188954520979436],[-126.12178321360844,53.18901979061072],[-126.12150594596054,53.18908673374934],[-126.12123150506747,53.18915647878575],[-126.12095987589083,53.1892290257545],[-126.12069106156174,53.189305486092785],[-126.12043166524317,53.18939257541279],[-126.12019201679993,53.189504857253475],[-126.11997866602533,53.189635602790645],[-126.11979721809588,53.1897780752258],[-126.11963546547265,53.18992724978589],[-126.11948216833196,53.190080897119465],[-126.11933732355693,53.19023789687774],[-126.1191962185912,53.190397133448975],[-126.11905888186213,53.19055804214421],[-126.11892059762752,53.190718395906075],[-126.11878043597822,53.19087819566384],[-126.11863557242904,53.191035750220074],[-126.11849260078264,53.19119443203854],[-126.11835524537015,53.19135590453515],[-126.11821790390778,53.19151737684347],[-126.11807866842946,53.19167773048226],[-126.11793381452758,53.19183528409733],[-126.1177786278899,53.191988375226096],[-126.11761122888188,53.19213531167654],[-126.11742600008162,53.19227330249171],[-126.11721824053949,53.19240011147642],[-126.11699358414934,53.192519094097946],[-126.11675953661313,53.19263248362915],[-126.11652173648899,53.19274531170794],[-126.11628768951631,53.19285982067224],[-126.11606490604075,53.1929799200418],[-126.11585714663161,53.19310953202016],[-126.11544050139238,53.193298162927555],[-126.1152994341392,53.19348035787847],[-126.11532988649158,53.19364670941007],[-126.11523473207377,53.19381822039916],[-126.11514427479408,53.1939908471115],[-126.11503878843881,53.19415844213496],[-126.11490329409025,53.19431766777852],[-126.1147518403485,53.19447187147818],[-126.11459288104834,53.194624397177165],[-126.11442546963494,53.194774690050934],[-126.114251493004,53.194921627863565],[-126.1140709526271,53.19506576629448],[-126.11388570547889,53.19520599211144],[-126.1136891935383,53.195341191205934],[-126.11348141674331,53.19547135456011],[-126.1132623720642,53.19559536173808],[-126.11303674108193,53.19571378184684],[-126.11280173075676,53.19582547920261],[-126.11255262661464,53.19592879110413],[-126.11229413121035,53.19602650947558],[-126.11203188009486,53.19612255473956],[-126.11177150280781,53.19621858868617],[-126.11151863487781,53.196318540797805],[-126.11127890733906,53.19642464659309],[-126.11105795561765,53.19654080875306],[-126.11086234085073,53.196669279927384],[-126.11069020446028,53.196810608720845],[-126.11053403158122,53.19695920034601],[-126.11039098574919,53.19711451076222],[-126.11025921898481,53.197275403429614],[-126.11013494538064,53.19743965907129],[-126.11001537479186,53.19760726237484],[-126.10989955641405,53.1977759914034],[-126.10978280849518,53.197945276871906],[-126.10966416660884,53.19811344358306],[-126.10953990757334,53.19827937459528],[-126.10940719322996,53.19844195213335],[-126.10926414401105,53.19859949285379],[-126.1091117243018,53.198753689844494],[-126.10895085052341,53.198905088972026],[-126.10878527583633,53.19905480713506],[-126.10861408372071,53.19920229840972],[-126.1084400686897,53.19934922733741],[-126.10826510448692,53.19949503648604],[-126.10808827888444,53.19964084706183],[-126.10791331226257,53.19978665566805],[-126.10772897483572,53.19992911139066],[-126.10762319770105,53.19999979131262],[-126.10752585193536,53.20006486159769],[-126.10733305462713,53.20020284284742],[-126.10718061499051,53.200354231802116],[-126.10709760387644,53.200529641445264],[-126.1070521459706,53.200718470580384],[-126.10699634924826,53.2009005777892],[-126.10688140312993,53.20105473786021],[-126.10668387050586,53.201173675837346],[-126.1064365810912,53.201271371021356],[-126.10615924681791,53.20135340732933],[-126.10586781416832,53.20142537218994],[-126.10558106082757,53.201491165607116],[-126.1052980432302,53.201551362086946],[-126.10500750282394,53.20160315724877],[-126.10471132198386,53.20164935479759],[-126.10441138023278,53.201691629118855],[-126.10411143514622,53.20173279126872],[-126.10381336887957,53.20177562709515],[-126.1035209374712,53.20182237408375],[-126.10323509287649,53.201875845832035],[-126.10295957598673,53.2019382619635],[-126.10269626745752,53.20201187959793],[-126.1024489408521,53.20210003875554],[-126.10222135209197,53.20220499497266],[-126.10201441752507,53.20232729431462],[-126.10182346184862,53.20246302406916],[-126.10164377978097,53.202608262549404],[-126.10147068244173,53.20275966165511],[-126.10130039742275,53.20291441921776],[-126.1011272879564,53.20306805855658],[-126.10094855682404,53.20321778558503],[-126.10075853855471,53.203359670337385],[-126.10055255928107,53.20349037352699],[-126.10033155181803,53.20361099673263],[-126.10010490769331,53.203727707447136],[-126.09987357476116,53.20384162521523],[-126.09963847083665,53.20395386065045],[-126.09939962329074,53.20406329333259],[-126.09915888150353,53.20417161569892],[-126.09891533024178,53.204278810576206],[-126.09867084495107,53.20438489431151],[-126.09842541320619,53.20449096935865],[-126.09818091045678,53.20459705208353],[-126.09793642146334,53.204703125322595],[-126.09769473818294,53.2048097604058],[-126.09745398777964,53.20491807926513],[-126.09721700456973,53.20502750594893],[-126.09698376116727,53.20513917880236],[-126.09675428753073,53.205253079896686],[-126.0965304304059,53.205369781380696],[-126.09631222106765,53.20548983896582],[-126.09610150496496,53.20561325118606],[-126.09591709092975,53.20575065089222],[-126.09575707099768,53.20590091040929],[-126.09561584252704,53.206061237900485],[-126.09548774029571,53.206227712206385],[-126.09536528234426,53.206395866858024],[-126.09524187564246,53.206562901756136],[-126.09511283135707,53.20672545954151],[-126.0949837860796,53.20688801717212],[-126.09485849337112,53.20705169201677],[-126.09473883006171,53.20721704725467],[-126.09462572518683,53.20738350852977],[-126.09452014037682,53.20755164872454],[-126.09442391999289,53.207720901721125],[-126.09433240150223,53.20789295629427],[-126.094248389517,53.2080672365928],[-126.09417375723852,53.20824263869714],[-126.09411132438036,53.20841858675506],[-126.09406388197412,53.208595078570596],[-126.09405021500301,53.20877155251399],[-126.09410125386417,53.208950206859974],[-126.09415885033081,53.20912886492025],[-126.09416299947904,53.209307556450675],[-126.09413808761929,53.20948795609027],[-126.09409159445336,53.209666696767115],[-126.09402163906304,53.209841530242414],[-126.09391979453555,53.21000854633544],[-126.0937888577376,53.21017053919926],[-126.09355967033822,53.21043681298376],[-126.09332642098073,53.21055687658958],[-126.09309315775977,53.21067806010944],[-126.09284294827565,53.210763404569676],[-126.09253821490547,53.210797254022566],[-126.09221930602047,53.21077845629206],[-126.09198652188222,53.21068732248557],[-126.09181366326375,53.210551335933594],[-126.09166420937862,53.21039235893234],[-126.09152035163368,53.21022553481044],[-126.09136339373048,53.21006487815989],[-126.09117552356567,53.20992385605438],[-126.09097359909444,53.209791807401835],[-126.09077074677906,53.20966032377481],[-126.09056602128129,53.209529396928076],[-126.09036036792709,53.209399026131294],[-126.09015282762118,53.209269785739615],[-126.08994435825885,53.209140536718685],[-126.08973496226429,53.209012417359496],[-126.08952462221443,53.20888428937267],[-126.08931333932954,53.20875672638277],[-126.0891020727241,53.208629162996196],[-126.0888907923886,53.208501599235525],[-126.08867858303866,53.20837403578555],[-126.08846732025994,53.20824647124134],[-126.08825511464624,53.208119471682494],[-126.08804383823657,53.20799134171025],[-126.08783350956244,53.20786377531892],[-126.08762412628533,53.207735652142546],[-126.0874147281054,53.20760696393158],[-126.08720722058301,53.20747770928362],[-126.08699969818161,53.207347898570255],[-126.08679499671334,53.20721752971443],[-126.08663523452321,53.20705071104901],[-126.08647366909712,53.20691862503533],[-126.08618770455426,53.20694067615039],[-126.08585485036461,53.20696949175557],[-126.08557367528024,53.207045315821354],[-126.0853628616028,53.20713230124659],[-126.08512486125022,53.207227704138695],[-126.085076476083,53.207415961514016],[-126.0850102753945,53.207609268826715],[-126.08488489921801,53.2077516460144],[-126.08461096949027,53.20770254551477],[-126.08434254304258,53.207591264266554],[-126.08414254269955,53.20745975816959],[-126.0839612561663,53.207314238291474],[-126.08376874492251,53.20717489259265],[-126.0835687300167,53.20704170943302],[-126.08336029066692,53.20691189297248],[-126.0831508959073,53.20676863233045],[-126.08290505229547,53.206691498829215],[-126.08260498625786,53.20669955098325],[-126.08230406206961,53.20675241789733],[-126.08204822749646,53.20683774365408],[-126.0818149427113,53.20695385906308],[-126.08158072315109,53.20706829857033],[-126.08133710851845,53.20717434574086],[-126.08109631774798,53.20728262225397],[-126.08085363199596,53.20738922348598],[-126.08060813387578,53.2074930296771],[-126.08035794038977,53.20759010733864],[-126.08009928130544,53.20767823617143],[-126.07983123383563,53.20776132460199],[-126.07955472514526,53.207837695867795],[-126.0792697577236,53.20790062767489],[-126.07898007350879,53.20794507131313],[-126.07868657773484,53.20796543324997],[-126.07838837639024,53.207972917772366],[-126.07808828280669,53.207971430850066],[-126.07778537104991,53.20796323174688],[-126.07748150589835,53.20795054204079],[-126.07717669361661,53.20793674076311],[-126.07687282680142,53.20792292912519],[-126.07656991054802,53.20791192150614],[-126.07626793383224,53.207905958665066],[-126.07596972239932,53.20790782628388],[-126.07567527911554,53.20791921839197],[-126.07538460977675,53.20794349613011],[-126.07521397028952,53.20796432695708],[-126.07481646445927,53.208029004457295],[-126.07453615727854,53.20808463502751],[-126.0742586830182,53.2081475500578],[-126.07398309429682,53.20821662978642],[-126.07370938903466,53.20829074489237],[-126.07343663588951,53.208369340260354],[-126.07316669438515,53.208451850081104],[-126.07289768599853,53.20853660841541],[-126.07262962471177,53.20862304163031],[-126.07236343984471,53.20871059346025],[-126.07209725387546,53.20879814468825],[-126.07183201020624,53.20888457437083],[-126.07156769385914,53.2089698825235],[-126.0713052520592,53.20905518895431],[-126.07104562170476,53.20914440993267],[-126.07078976402008,53.20923811853253],[-126.07053671486064,53.20933405668277],[-126.07028554484621,53.20943279858233],[-126.07003718239937,53.20953322332283],[-126.0697897668613,53.20963532305434],[-126.06954329545299,53.20973742170909],[-126.06929775408683,53.20984007500523],[-126.06905784948064,53.209949455690555],[-126.06882450913307,53.21006386925882],[-126.068592115576,53.21017995788662],[-126.06835971713492,53.210293814275126],[-126.06812262763127,53.21040262674723],[-126.06787800389445,53.21050191542199],[-126.06760709595606,53.21057713509719],[-126.06730421407924,53.21060755749115],[-126.06700784557414,53.21060100320099],[-126.0667142628338,53.210572039191106],[-126.06641971668182,53.21053131558439],[-126.06598071333308,53.210471060788784],[-126.06572640100899,53.21037428555769],[-126.0654786552639,53.21027303362883],[-126.06526276325611,53.21014991192952],[-126.0650599891685,53.210018375366225],[-126.06486378176183,53.20988236233297],[-126.06466943367971,53.20974466291311],[-126.06447510271573,53.20960751885978],[-126.06427513537479,53.209473182944876],[-126.06406861975996,53.209343896375735],[-126.06384618365199,53.209223572023866],[-126.06361061798951,53.20911222622929],[-126.06336944676158,53.209004235109184],[-126.06313107934133,53.20889401021921],[-126.0629067626615,53.2087770461943],[-126.06272836944765,53.2086348535594],[-126.0625780888912,53.20847752526779],[-126.06238938901468,53.208334772875574],[-126.06219411263469,53.208188106804045],[-126.06197916537646,53.20806106168026],[-126.06172771800358,53.20797828538984],[-126.06145100216204,53.20792520704593],[-126.06116023225982,53.20788558873645],[-126.06086103069087,53.20785661309665],[-126.06055715936635,53.20783548169226],[-126.0602523644536,53.207818831466525],[-126.05995130906985,53.20780441930935],[-126.05965307473024,53.20779000496747],[-126.05935296818174,53.207777831556825],[-126.05905193622345,53.207769018963766],[-126.05875089561238,53.207764687098816],[-126.05845080885457,53.207766511563726],[-126.05815167660784,53.20777506599593],[-126.0578562926013,53.20779257185689],[-126.05755998876019,53.20781792899544],[-126.05726181961109,53.20785111993522],[-126.05696553613278,53.20789216078465],[-126.05667396049238,53.20794215265365],[-126.05638988338941,53.20800111217447],[-126.05611708728713,53.208070140054694],[-126.0558658837144,53.20816324960341],[-126.05564755534948,53.20830284309153],[-126.05544331756225,53.20845586507208],[-126.05522779474107,53.208585928811345],[-126.05497843188854,53.20865607245833],[-126.05469430248687,53.20866852801432],[-126.05440639301838,53.20867033661352],[-126.05411473658859,53.2086637479195],[-126.05381930549663,53.208650437992894],[-126.05352200620634,53.20863097061163],[-126.0532218806442,53.20860701330472],[-126.05291987632941,53.20858025962915],[-126.05261692501297,53.20855182952837],[-126.05231304241393,53.208522269729464],[-126.05200916162869,53.20849383848473],[-126.05170528398091,53.20846763823944],[-126.0514014101198,53.20844424262372],[-126.0510994189501,53.20842644727491],[-126.05079837939147,53.20841369690246],[-126.05049920994972,53.20840877860684],[-126.05020381673391,53.20841226522499],[-126.04998813498403,53.20842131936914],[-126.04962055628313,53.20845228854486],[-126.04933269186179,53.208491621729095],[-126.04904765883411,53.20854047171775],[-126.04876451108765,53.20859829217836],[-126.04848324457575,53.20866170408526],[-126.04820105204142,53.20872960614709],[-126.04792072109815,53.20879918285711],[-126.04763852925734,53.20886931535325],[-126.04735631897633,53.208937215402244],[-126.04707224281186,53.20900118973676],[-126.04678721365522,53.20905899724107],[-126.04649935355643,53.20910840686626],[-126.04620867890631,53.20915053895738],[-126.04591707092638,53.20919042099077],[-126.04562451588383,53.209229191262075],[-126.04533195909413,53.209266831476896],[-126.04503845528474,53.20930335992033],[-126.04474401887438,53.209338202950164],[-126.04444958020753,53.20937136021056],[-126.04415420960609,53.20940340567785],[-126.04385882238061,53.20943432108055],[-126.04356250268289,53.20946356001428],[-126.043266181429,53.20949167783609],[-126.04296985807788,53.2095181188424],[-126.04267353265571,53.20954287407025],[-126.04237627544786,53.209566508519146],[-126.04207994710929,53.209589021521346],[-126.04178267146818,53.209609849078525],[-126.04148633756792,53.20962732341065],[-126.04118811959331,53.209636390394124],[-126.04088801935033,53.20963873505154],[-126.04058886009517,53.209636597143785],[-126.04028780702286,53.209631098012316],[-126.03998769881723,53.209625033130465],[-126.03968666091053,53.209619532466895],[-126.03938655601225,53.20961683613704],[-126.03908738612539,53.20961917592588],[-126.03878916717605,53.20962767220607],[-126.03849190159644,53.20964513935514],[-126.03819369246388,53.20966483784102],[-126.03789453874185,53.20968566521199],[-126.03759352407907,53.20970648345478],[-126.03729156528131,53.209728986267244],[-126.03698960763614,53.20975317334738],[-126.03668858093049,53.209778470777096],[-126.03638757080569,53.20980601714098],[-126.03608842236288,53.209835238247344],[-126.03579116700692,53.209867819138125],[-126.03549671904912,53.209902639182985],[-126.03520414858798,53.20994025438282],[-126.03491626202472,53.20998123755405],[-126.03463119909979,53.21002613601527],[-126.03435176572968,53.2100749489731],[-126.03407703199031,53.21012825036408],[-126.03384358168799,53.21022466911313],[-126.03365332230685,53.21036701032298],[-126.03348276429195,53.21052894764884],[-126.03330374982453,53.210681933093646],[-126.03310128092302,53.21081643422154],[-126.03289225154857,53.210948696074624],[-126.03270009153124,53.21108655474539],[-126.03254734510344,53.21123728204769],[-126.03246682501454,53.2114137668424],[-126.03234033586956,53.21158297723447],[-126.03225133822252,53.2117034367267],[-126.03204697728088,53.211827297464865],[-126.03181633745652,53.21192819284671],[-126.03157444707323,53.2120358129873],[-126.03132317213351,53.212137268596145],[-126.03106062911567,53.21222193004566],[-126.03077648225914,53.21227354115093],[-126.0304895253413,53.21232067081996],[-126.03019975924413,53.21236443940156],[-126.02990810019291,53.21240596701301],[-126.02961550861993,53.212445253400745],[-126.02932103918286,53.21248229879182],[-126.02902656846071,53.212518223081766],[-126.02873209647683,53.212553026270704],[-126.02843762362845,53.21258726406149],[-126.02814314993334,53.21262094541712],[-126.02784962115922,53.21265462581832],[-126.02755420113567,53.21268830593162],[-126.02725879528946,53.212721429601686],[-126.02696337289966,53.2127528675039],[-126.02666701862103,53.212782619844035],[-126.02637160757487,53.212809574792345],[-126.02607430363915,53.21283373297986],[-126.02577794270383,53.212854520147],[-126.02548157911663,53.21287138976429],[-126.02518427923434,53.212878740186596],[-126.02488507988078,53.21287151650557],[-126.02458588944943,53.21285365304586],[-126.02428668137138,53.21283075165653],[-126.02398936344859,53.21280616409445],[-126.02369484921036,53.212776529084906],[-126.02340126205556,53.2127401799102],[-126.02282160554647,53.21266410786056],[-126.02306071167455,53.21254921928801],[-126.02327448125229,53.212425381214935],[-126.02340194205186,53.212260661868065],[-126.02341872364532,53.212079714455534],[-126.02331827338223,53.21191616035142],[-126.02316437543111,53.211757098083716],[-126.02300110243918,53.211602518900584],[-126.02281439677664,53.21145747161577],[-126.02261737025478,53.211315778141916],[-126.022452228533,53.21116736503854],[-126.02236023203405,53.21100324377556],[-126.02233200214518,53.21082455458243],[-126.02230469603604,53.210632976454626],[-126.02230835076156,53.210449790772095],[-126.02229419706802,53.210272219237105],[-126.02222377191617,53.21011986210057],[-126.02203521119357,53.20999665656504],[-126.0218222490569,53.209865612623545],[-126.02158960747792,53.209746331286745],[-126.02138134373632,53.209613609605356],[-126.02117870539207,53.20947527572704],[-126.02097513889848,53.20933862669425],[-126.02076313005152,53.20921038604467],[-126.0205351793231,53.209096703630266],[-126.02028567827536,53.20900487617802],[-126.02001930553028,53.20892930090939],[-126.01974918435546,53.20885764248128],[-126.01947531443894,53.20878934516443],[-126.01919864103587,53.20872440878014],[-126.01891914858719,53.20866171294023],[-126.01863683706105,53.208601257625176],[-126.0183526667276,53.208543042666165],[-126.01806755259571,53.20848650324354],[-126.01778056434797,53.208431648453015],[-126.01749263178381,53.208377357772584],[-126.01720377012245,53.208324177934585],[-126.01691490919119,53.208271006353854],[-126.01662604898284,53.208217825104605],[-126.01633813479432,53.208164651982415],[-126.01605115118525,53.20811034869874],[-126.01576604367632,53.208055488764764],[-126.0154809367037,53.20800007243906],[-126.01519395632033,53.20794857248532],[-126.01490415697356,53.20790043330479],[-126.01461342858742,53.20785396960513],[-126.01432364631329,53.20780806974411],[-126.01403384929198,53.207761048803455],[-126.01374594274625,53.20771178619025],[-126.01346084127177,53.20765804107061],[-126.01317949005251,53.207599257654785],[-126.01290376386176,53.20753262139087],[-126.01263928728515,53.207450862744324],[-126.01238324071457,53.207357343199135],[-126.01213095990336,53.20725877655515],[-126.01165455319754,53.20718319476895],[-125.99989777619953,53.20711206399207],[-125.99333343314163,53.207071543127086],[-125.98666688122763,53.20707154525851],[-125.98000125937045,53.20707172822795],[-125.97333281672287,53.20707153564381],[-125.96666626428775,53.20707152405976],[-125.96000064164235,53.20707170243355],[-125.9533321982084,53.20707150477749],[-125.94666564471406,53.20707149740337],[-125.94000002075359,53.20707167118102],[-125.93333345065636,53.20707202521197],[-125.9266668954953,53.20707201318976],[-125.9200003254099,53.207071617170456],[-125.91333376819823,53.207071975470825],[-125.90666626568789,53.20707194903971],[-125.89999969217004,53.20707211293007],[-125.8933331336638,53.20707190180801],[-125.88666750402996,53.20707188121818],[-125.87999905209685,53.207072038556014],[-125.87333249070109,53.207071822677335],[-125.86666685793995,53.20707178852419],[-125.86000027811575,53.20707194300082],[-125.85333371330611,53.2070717224693],[-125.84666712955865,53.20707224726293],[-125.83999961754854,53.20707184007027],[-125.83333304660844,53.207072170481595],[-125.82666646058244,53.20707213480823],[-125.81999988726558,53.20707227983318],[-125.81333424422013,53.207072051297395],[-125.80666577798375,53.20707199894113],[-125.77073987252979,53.20707797116679],[-125.77197532391953,53.09430355309072],[-125.77293182037958,53.006502661943415],[-125.77336966133988,52.96640688951577],[-125.77160159393753,52.966081882741385],[-125.76699598145957,52.96527056341096],[-125.7626038974968,52.96365439486978],[-125.75832628794033,52.96295376323778],[-125.75252946600547,52.96186153314781],[-125.7458568545473,52.96009256711597],[-125.73928604020765,52.95884113420576],[-125.72859888960917,52.95522230318949],[-125.71955744626558,52.95336119225156],[-125.7094308413976,52.953275580117776],[-125.7003809942764,52.95490234730392],[-125.69228476473846,52.95657180972955],[-125.67951365811419,52.95697028439055],[-125.67173307380335,52.956237877350034],[-125.66471309458612,52.95555081514545],[-125.65948371367644,52.95479849411988],[-125.65560545649839,52.95482924335388],[-125.65087693754175,52.954869109036956],[-125.6459559261833,52.95473843905052],[-125.63952398443256,52.95513970041212],[-125.6329424531932,52.95730556285516],[-125.62739411012019,52.95894822851811],[-125.62183290673867,52.9603110196273],[-125.61464218395466,52.96037063695313],[-125.59716651804813,52.95799712000445],[-125.59072974721823,52.95724825936788],[-125.57849158332402,52.95642407746858],[-125.56585477879025,52.95378297529258],[-125.55989314259148,52.9490287356346],[-125.55425490080779,52.94627055664693],[-125.54749042240756,52.94432075128978],[-125.54160897263553,52.94350912595475],[-125.52835149485975,52.94360468563679],[-125.52382780681069,52.9440924198411],[-125.5200886422695,52.94640857285867],[-125.51096928117627,52.94967672220763],[-125.50185878296139,52.95334144609715],[-125.49563260879756,52.955154347307925],[-125.49005362066482,52.95519588302645],[-125.48305754721001,52.95524326098111],[-125.47273771122458,52.95508994288182],[-125.46591633232566,52.95547830116769],[-125.46053893067841,52.9560835533239],[-125.45417940573387,52.95533036981896],[-125.44972733436616,52.954729201021735],[-125.44186602422886,52.95478633953679],[-125.4368539362112,52.95481739054179],[-125.43278159158693,52.95484379303369],[-125.42758580179702,52.9552237475317],[-125.42283659923383,52.95456296694392],[-125.41848162684097,52.95453370226043],[-125.41306762338131,52.953424930662834],[-125.40927872162231,52.95345529384998],[-125.40588629561762,52.9539318477313],[-125.40238085139127,52.95395388937664],[-125.39688391653968,52.953468675406505],[-125.38876518068363,52.95484098878864],[-125.3814093480903,52.95602737592229],[-125.37848372488459,52.957188023445525],[-125.37605426967112,52.95908855652225],[-125.37314975196082,52.960817313895376],[-125.36861810822751,52.961592637615965],[-125.36320832884253,52.96122286440989],[-125.35610474874613,52.96040657152966],[-125.35306900729455,52.95991369393932],[-125.34765866609035,52.959602591927364],[-125.34348152519081,52.95865042580812],[-125.33959057692635,52.957531627824665],[-125.33411353032609,52.958648267747556],[-125.32975635952994,52.95873281748091],[-125.32399999465319,52.95956389204887],[-125.31797054849125,52.96159548922488],[-125.31532713482056,52.962700736280624],[-125.30967729967396,52.96427075125802],[-125.30560207552601,52.964409285810575],[-125.30088423120043,52.96551989412239],[-125.29785615581878,52.96548171593609],[-125.29464051980753,52.965957804716325],[-125.290785462125,52.96809066019365],[-125.28597918656925,52.969088083556066],[-125.28107684474644,52.97134146109329],[-125.27626097433786,52.97199048650034],[-125.2727671328465,52.97298478598018],[-125.27022439162904,52.97420001874588],[-125.26590972178337,52.976907433499086],[-125.26338765689411,52.97948864088498],[-125.25960637776073,52.980651638121884],[-125.2548736698112,52.9807338692498],[-125.25117698194846,52.98046391231647],[-125.24445125965427,52.98015484474709],[-125.24007246295564,52.97880776726595],[-125.23628385359515,52.9778531928507],[-125.23286903772183,52.977696543577416],[-125.22774294066994,52.97726637664375],[-125.22414247442414,52.97665554050273],[-125.21920077005248,52.975134761895106],[-125.21454299935435,52.9744191279697],[-125.210465413901,52.9730051518427],[-125.20722476894898,52.97153558883904],[-125.20210602816513,52.971560985339224],[-125.19869719545262,52.971119315435374],[-125.19566787347075,52.971128366629046],[-125.18969849989165,52.9711597496466],[-125.1856266400842,52.97106387672671],[-125.18052181622814,52.971142784960826],[-125.17588677048658,52.97161920938709],[-125.16973761782101,52.972446190687656],[-125.16538959381033,52.97349124878647],[-125.16303670671489,52.974757645701914],[-125.1588869001715,52.97632383052148],[-125.15654295091905,52.97787422892332],[-125.15504521686266,52.9803938076787],[-125.15127116443136,52.981039047203076],[-125.14805969363036,52.98190787134177],[-125.14532917683688,52.98409007368732],[-125.1432713566997,52.98621043240077],[-125.13958935602201,52.98817322375354],[-125.13857155384882,52.990516238932436],[-125.13536488504968,52.991100679770646],[-125.12949018901675,52.991469823360234],[-125.12492809991954,52.989715377724806],[-125.12064879434317,52.98802000232843],[-125.1172281246867,52.987404443899756],[-125.11410794544022,52.9874168943633],[-125.10880993105059,52.9880633206477],[-125.10360608349664,52.98848387355935],[-125.10038377054921,52.98838031853997],[-125.0961084016241,52.98725334796999],[-125.0916567436153,52.986702528553565],[-125.0880643374089,52.98785366601076],[-125.08513712509985,52.98860811813181],[-125.07775458660883,52.98966167455163],[-125.07549389754118,52.991331032543144],[-125.07342608511443,52.99304781674742],[-125.06830348002892,52.99312230081466],[-125.06776803203242,52.9957526079493],[-125.06424923879145,52.9948517810227],[-125.06246923967439,52.997030105845596],[-125.05734965812125,52.99761849917016],[-125.05366378305578,52.99751837412395],[-125.05015977590666,52.997298573595],[-125.04607512751272,52.996339974464085],[-125.0409624808398,52.99727566699836],[-125.0366930950386,52.997230220023134],[-125.03500050401108,52.998780183385335],[-125.03102514129593,52.99827580335042],[-125.02781250337044,52.999028180684824],[-125.02459085036449,52.99886709937594],[-125.02088297170208,52.99842342563181],[-125.01869365172314,52.99688398856686],[-125.01241764127728,52.99387764272291],[-125.00862055928286,52.992801357518005],[-125.00434706423326,52.99167610010729],[-124.99865661387707,52.989236494505406],[-124.99257893701493,52.988675945865396],[-124.98833864098121,52.99120866568725],[-124.98693373465574,52.99315208785018],[-124.98485798632444,52.99567132018233],[-124.98232190610256,52.99744972945102],[-124.97966496845825,52.99865553093638],[-124.97368825801261,53.00005093519339],[-124.96901430922664,53.002513626427906],[-124.96788139037535,53.003659639547124],[-124.96636006312917,53.00480783170821],[-124.96372095501721,53.00646952488543],[-124.95824525848545,53.00990247842174],[-124.95492682781403,53.01122234355153],[-124.95228940208024,53.01156986816967],[-124.94943646140408,53.01157026403435],[-124.94650803462272,53.012205307820594],[-124.94574479579018,53.013467593276474],[-124.94499943732549,53.01460956228817],[-124.94367348041342,53.015068910130765],[-124.94263708579636,53.015296639125495],[-124.94073980637341,53.01530202814425],[-124.93875497787502,53.015822083604455],[-124.93714169147245,53.015819884212526],[-124.93505377946128,53.0162778707115],[-124.93364162125945,53.01599896984184],[-124.93277636448235,53.01416845049953],[-124.92897701830996,53.01200258712021],[-124.92529603622091,53.013439361134324],[-124.92415789822667,53.015322837966615],[-124.92349523378786,53.01612476053077],[-124.92322914328437,53.01955031130815],[-124.9234300034588,53.022235471084635],[-124.92334006026053,53.02755197462297],[-124.92241961516234,53.0332049081376],[-124.92241764044647,53.03446052987262],[-124.92045418783712,53.04114942605791],[-124.92198379063144,53.04742870381241],[-124.92702419148776,53.05324739674878],[-124.92827124167287,53.05478329052435],[-124.93415446546075,53.059860730718285],[-124.9456492203256,53.06607056019942],[-124.94783677606802,53.06892570949198],[-124.93740848103266,53.06905534126877],[-124.92678861463602,53.06906801237862],[-124.91853575595319,53.07010490934386],[-124.91124908333823,53.07194520548848],[-124.90755429723498,53.07543478396932],[-124.90680093409767,53.080287795308315],[-124.90606271397185,53.086287284657026],[-124.90568922363413,53.09148331335946],[-124.90503951561352,53.09520097048481],[-124.90334100837315,53.100112385570775],[-124.9036308418915,53.10279603774534],[-124.90734181862005,53.106333299050746],[-124.91039636845058,53.11038656584581],[-124.9067861425173,53.112787102598254],[-124.89938680507679,53.114626773945616],[-124.89559719591094,53.11525369029029],[-124.8875262178015,53.112981157118774],[-124.87877481498971,53.11099351520381],[-124.86757929387596,53.10917736402987],[-124.86007271953358,53.1088385212473],[-124.86454058429365,53.11083524832092],[-124.8725236097867,53.11522809533028],[-124.8799290113676,53.119440654227986],[-124.8840289641409,53.12183708684193],[-124.89258084962685,53.126968966811916],[-124.89629168304481,53.13170774925537],[-124.89468327163381,53.13421957939298],[-124.8925157236679,53.137481969464204],[-124.89194370738174,53.14044943483222],[-124.89184633096235,53.14073538357575],[-124.88977578445393,53.14599207089179],[-124.88701843716228,53.14999117001816],[-124.88294938177653,53.151994463250745],[-124.87913937014463,53.15325602975728],[-124.87173515125122,53.15440426978555],[-124.86317708431672,53.15441257074814],[-124.85196772447291,53.15436487321811],[-124.84180264324112,53.15339851922151],[-124.83619325437711,53.15300508021406],[-124.82735777570129,53.15437906759004],[-124.8143390888975,53.15792703255366],[-124.80606760090072,53.16049960980135],[-124.80216175802401,53.16026965138028],[-124.79836189647875,53.15947587621576],[-124.78629456243232,53.15793411077716],[-124.7805942980648,53.15496596487796],[-124.77375593327353,53.15251128360883],[-124.7584492529547,53.15114145889179],[-124.73013896712095,53.14965266519722],[-124.71988028264903,53.14793632213387],[-124.71342190162939,53.14496169439543],[-124.70003967089372,53.1391328511378],[-124.69386159116807,53.13833023954113],[-124.67808190382415,53.14083209429046],[-124.6664971259412,53.14139125503449],[-124.65111064119226,53.140867189297126],[-124.6094318384434,53.13476802072757],[-124.5774428267003,53.129069612274755],[-124.57003026599885,53.128999826440754],[-124.53088374192195,53.13172287123595],[-124.50626305104254,53.13447671384087],[-124.5006611654642,53.13486250452133],[-124.49580000001427,53.137590693510724],[-124.49120769771986,53.140324913205156],[-124.48099990796803,53.14669416057232],[-124.47852259171118,53.14765579683743],[-124.48251064707168,53.148865224776195],[-124.48457913663964,53.15053238705741],[-124.4866537284305,53.152871984450414],[-124.48920656018225,53.15567767187388],[-124.49221323764323,53.16048104765864],[-124.49530779278008,53.16494028240734],[-124.4996623066729,53.169405306391326],[-124.50116341921468,53.17232118956878],[-124.50142826076532,53.175005121346565],[-124.5013988099957,53.17837732399394],[-124.50138582075658,53.18128465482136],[-124.50185756307765,53.18151643720348],[-124.49945923374763,53.1831675844966],[-124.49783380923554,53.18459035946147],[-124.495148493929,53.187552853008675],[-124.49455985762332,53.190183350473546],[-124.49674509292778,53.19201253000515],[-124.50072949097546,53.19218742102234],[-124.50300593623398,53.193569371579706],[-124.50557228100212,53.19396934412432],[-124.5109049099566,53.193355725107644],[-124.51642042577363,53.19308369954828],[-124.52326825400989,53.1933222401182],[-124.52839782635819,53.19379118029823],[-124.53297048737772,53.19431519979321],[-124.53818715597656,53.19444077072992],[-124.5418104772662,53.19421984348247],[-124.54495440872421,53.193541309530204],[-124.54676962906342,53.19354397830479],[-124.54847007297985,53.193830978809046],[-124.54979539805919,53.19412007737971],[-124.55045613694259,53.194977590713826],[-124.55035259783082,53.19668525978636],[-124.5503518093289,53.19845918020279],[-124.55033149523949,53.200802695195065],[-124.55032438076033,53.20188567374101],[-124.54946121238105,53.20473938703146],[-124.54676831967375,53.2093014473952],[-124.54254198491482,53.213917424271166],[-124.53939321906631,53.21642860125682],[-124.53852714641776,53.217165368195396],[-124.53425229123648,53.21750366886967],[-124.52797120475071,53.217257167496],[-124.5252100172607,53.21594198408084],[-124.52102731130255,53.21536261786873],[-124.51646462461916,53.21534872970101],[-124.51482734814985,53.21666287371736],[-124.51435088282928,53.21740659208443],[-124.5131009058199,53.219228721554764],[-124.51138449976665,53.22065108994491],[-124.50793842979073,53.22258564092527],[-124.50611949832286,53.224351227418964],[-124.50361931123089,53.22754312621807],[-124.50246895453388,53.22822730526553],[-124.50017992047043,53.23010956455229],[-124.49825818196032,53.23221439624868],[-124.4948191107323,53.23306559749155],[-124.49090979139136,53.233624395507746],[-124.4879443600301,53.235500618790034],[-124.48728161480771,53.23681392112977],[-124.48639917715064,53.238808551925594],[-124.48277020934442,53.24074341334377],[-124.47876297624687,53.24107700968854],[-124.4755244692737,53.24174980690137],[-124.47418114132796,53.243178683978634],[-124.46930107858518,53.24562148435735],[-124.46786502935365,53.24669833440598],[-124.4664244740145,53.24789726469086],[-124.46367934208436,53.24737594845001],[-124.46081626130838,53.24679532991184],[-124.45805913602844,53.247017822783334],[-124.45603885849634,53.24804043546324],[-124.45508747636163,53.24940864368327],[-124.45430961325158,53.250549379662814],[-124.45314823823163,53.25231545003925],[-124.45161778834361,53.25431034386222],[-124.4506520729367,53.254423243134056],[-124.44852863937716,53.25823918928654],[-124.44544591525477,53.26320236041727],[-124.44185915509539,53.26958592839332],[-124.44164015431676,53.27266863629287],[-124.44848014402835,53.274691294689084],[-124.46142417053193,53.27712116743051],[-124.47219077688689,53.27869292726364],[-124.48132894359838,53.279165982154055],[-124.49381305104434,53.27982652045864],[-124.50362369845814,53.28127344368726],[-124.50321440767279,53.284760004180484],[-124.49793574600055,53.29028837211711],[-124.48969757683582,53.295688135517366],[-124.48222411405953,53.299840950496765],[-124.4777046064073,53.304628470392004],[-124.4771961013055,53.30788057903149],[-124.47718815009794,53.309767520205845],[-124.47810497085268,53.314794940074655],[-124.48100597849039,53.322393641896326],[-124.481650079955,53.324566244523176],[-124.48406869432254,53.33222140480224],[-124.48791009235252,53.342625918494484],[-124.49015218099011,53.34896421443746],[-124.49251320882105,53.351997229324965],[-124.49697263693147,53.35532117714603],[-124.50077253373969,53.357728996461525],[-124.50096303069071,53.358301195056605],[-124.50095937303274,53.35967380526541],[-124.50092381684013,53.36321256057797],[-124.50224189536443,53.36681207170925],[-124.5037534066177,53.369213896785965],[-124.50716308505571,53.37247545429085],[-124.51181236798871,53.37734242671581],[-124.51427111186045,53.38025737481735],[-124.51815668583113,53.38460413209768],[-124.5216462058739,53.391238391532674],[-124.5201854139356,53.395060227950204],[-124.5188248238958,53.39859755992952],[-124.52062190935517,53.40151249955463],[-124.52421483942885,53.40825882172928],[-124.52484663028166,53.41174356236266],[-124.52612886283802,53.41991160761801],[-124.52702383647365,53.43053597200369],[-124.52736120962116,53.437273710842916],[-124.52712611113238,53.44355447431677],[-124.52711323910003,53.44435265364446],[-124.52708976061503,53.447607358468474],[-124.5270466444709,53.453145347954845],[-124.52702226987103,53.45685606162984],[-124.52727432318764,53.46388005727471],[-124.52780603174335,53.46982119275792],[-124.52778231798126,53.471359857145785],[-124.52547820595437,53.47375720018525],[-124.52038408037198,53.47602916076972],[-124.51691558039131,53.4780174868439],[-124.5166203553985,53.48081722210906],[-124.51765236063024,53.482819997322025],[-124.51917894630975,53.48408043193895],[-124.52547247771415,53.488550039656936],[-124.52966970953412,53.48992453751871],[-124.5335053178975,53.49084570146478],[-124.53503030468855,53.491307580577526],[-124.53979519670773,53.493320060927545],[-124.54256244442728,53.49543400624018],[-124.54321763839415,53.49789018772789],[-124.54319809089199,53.500631128159895],[-124.54461808405956,53.50326300965193],[-124.54500444503373,53.50388901168541],[-124.54901489368649,53.50635687292999],[-124.5534986476963,53.50870091257989],[-124.55750616780014,53.51128160017634],[-124.56207347809118,53.51562796910614],[-124.56406911866588,53.518717490723645],[-124.5640622660998,53.5198014293617],[-124.56386463909544,53.52248360185418],[-124.56653082679698,53.524548652329926],[-124.56978911638555,53.52477764037549],[-124.57706293263914,53.525649394098906],[-124.58050971255581,53.52656827281301],[-124.58155367339103,53.52834029467752],[-124.58164140526942,53.52977099272833],[-124.58173541840833,53.53056872752587],[-124.58198143909985,53.53268587902582],[-124.58417608190678,53.533083339213384],[-124.58619289964558,53.53337332549038],[-124.5895498244767,53.533840459718355],[-124.59051009943545,53.53406859203377],[-124.59366304265774,53.53475840499112],[-124.5964339820154,53.53556744588502],[-124.6002638066872,53.53592217928371],[-124.6038275525592,53.53563897152947],[-124.60757435965279,53.53485136745334],[-124.61083138258934,53.534234975951264],[-124.61418888673568,53.53423645130758],[-124.61791691187871,53.53538604587047],[-124.62030839497851,53.536250637234254],[-124.62089463622186,53.53682097085584],[-124.62250760810208,53.538367257642314],[-124.62527565294315,53.539288181465224],[-124.62824090250322,53.54112051306923],[-124.62927796250213,53.5431760248393],[-124.63147772552554,53.544837024881616],[-124.63358076499321,53.54575741401875],[-124.63683981879103,53.54741921641576],[-124.63932711630632,53.54816126010122],[-124.64584250096098,53.549259885497],[-124.64927865582489,53.551553002612565],[-124.65023137103249,53.55297825326828],[-124.6515520424904,53.555667525603525],[-124.65441103827011,53.55852424043788],[-124.65756837550296,53.56058315806166],[-124.66168769293527,53.56191051602847],[-124.66830643679342,53.5631748435977],[-124.67060509559903,53.56466196753268],[-124.67031575196111,53.56471812888415],[-124.6721222814684,53.565978466917144],[-124.67817072201642,53.56615866543717],[-124.67913284377887,53.56684656158399],[-124.68229875747784,53.566283226303035],[-124.68566675379274,53.565547252497375],[-124.68844884252123,53.565152071761396],[-124.69152026459012,53.564698374264474],[-124.69737882584023,53.56465313489377],[-124.70312795022919,53.56472013380015],[-124.7091816185231,53.56472740494453],[-124.71589830382527,53.56433535862885],[-124.72080898264106,53.56211928370674],[-124.72657411245754,53.55915699430111],[-124.73099955578688,53.55893518081568],[-124.73635972557211,53.55882728445286],[-124.74029766634405,53.55820729087724],[-124.74500376954657,53.558208064316275],[-124.75018524124883,53.55901356739812],[-124.75689003507635,53.55999714026601],[-124.76486315318688,53.561088121632906],[-124.78433121103377,53.562418719667974],[-124.80410769744995,53.56305740672589],[-124.81974233316943,53.56192946986956],[-124.84058454551715,53.55577615714168],[-124.87023669290441,53.55538236715284],[-124.88165828890735,53.55886532803123],[-124.93971238258075,53.55913959456831],[-124.94259406143655,53.56667675992944],[-124.94720775630162,53.57460438566401],[-124.94960408514449,53.57985611962933],[-124.95066142240461,53.582370942336745],[-124.95210983719815,53.58499447765966],[-124.95363789531697,53.58807408961946],[-124.95411929098083,53.590020324333906],[-124.9513610985988,53.5938880516961],[-124.95284153129965,53.59388533719959],[-124.95565660730935,53.593880821034794],[-124.9555929294892,53.59400517239895],[-124.95549786570031,53.59417350541547],[-124.95544461366754,53.59425930236987],[-124.95528960516731,53.59447808918843],[-124.95518698248458,53.594645791302014],[-124.95501769545422,53.59498151835072],[-124.95498750283947,53.59505351745216],[-124.95490803699194,53.59520349704904],[-124.95489779108384,53.5952347755112],[-124.95488607797206,53.59532486059483],[-124.95487790527218,53.59550067391979],[-124.95489400157199,53.59584193678736],[-124.95489544718508,53.59585987397259],[-124.95493341246262,53.596007527575054],[-124.95497048406648,53.596191013489126],[-124.95499318230648,53.596343570470225],[-124.95501210249026,53.596419915094025],[-124.95502736285952,53.59649119094268],[-124.9550305895415,53.59651362481674],[-124.95504082842925,53.596558525632155],[-124.95504594788133,53.596580976039185],[-124.95505095557576,53.596607906606714],[-124.95507120994036,53.59670666855016],[-124.95507645526952,53.59672407429361],[-124.95522879177875,53.59706821181769],[-124.9552944947706,53.59724242965291],[-124.95536487110968,53.59745701846263],[-124.95577206159038,53.599045774523375],[-124.95578798050617,53.599090724793946],[-124.95587006866268,53.59929141626239],[-124.9558734998078,53.599381624493894],[-124.95586834830914,53.59958827617778],[-124.95586197418956,53.59976802142816],[-124.95586907353253,53.59993893096207],[-124.95583598671178,53.599975046881916],[-124.95580277406893,53.60001620744665],[-124.95561512578318,53.60017645473824],[-124.95542256555781,53.60030584660039],[-124.95522077707462,53.6004256306827],[-124.95497585498677,53.60052879804261],[-124.95471679445433,53.600591511207],[-124.95469963210523,53.60059640700497],[-124.95414072195501,53.600762925470555],[-124.95383966425656,53.60083926865351],[-124.95352933636228,53.60090769698217],[-124.953508388063,53.600912550532165],[-124.95321088988166,53.60099789450713],[-124.95288639912619,53.601102601965295],[-124.95283659407202,53.601125691971035],[-124.95261562637991,53.601254830725445],[-124.9525982396616,53.60126867755977],[-124.95257695472895,53.6012869803554],[-124.95256123687048,53.60130980405647],[-124.95246146193801,53.601513942184404],[-124.95245332974878,53.601536276630036],[-124.95244005280041,53.601612904210995],[-124.95243569265578,53.60163582734335],[-124.95242945341526,53.6016581783616],[-124.95242700014241,53.60168056253026],[-124.95242263975949,53.60170349462169],[-124.95241806937416,53.60173482251154],[-124.95238114001681,53.60192438253304],[-124.95235758733428,53.602109022878075],[-124.95235264228768,53.60230671387609],[-124.95231582420146,53.6024917936843],[-124.95229371564673,53.60269437113672],[-124.95227338784312,53.60290144529186],[-124.9522663250976,53.60310807993397],[-124.9522613656044,53.60330632638251],[-124.9522171981299,53.6034823794791],[-124.95210494948196,53.603655040056104],[-124.95195527255663,53.603810012784116],[-124.95181294285013,53.60397400298294],[-124.95164832931275,53.60412043787455],[-124.95146486771316,53.60426334651842],[-124.95145127948264,53.60427667081198],[-124.9512630206022,53.604459867238646],[-124.9510973933654,53.60464662262114],[-124.95095528167886,53.60480166041875],[-124.9507879691474,53.60497999400237],[-124.95062334807245,53.60512642742162],[-124.9504091390606,53.60528698927957],[-124.95002204266409,53.605621362195784],[-124.94984135833315,53.60580405823759],[-124.94983154127685,53.605817980068565],[-124.94957336903462,53.60614563210811],[-124.94937095954135,53.60628837121172],[-124.94935936141826,53.60629779624018],[-124.94916965493901,53.60646248754811],[-124.9490045726318,53.60662683919375],[-124.94884258656595,53.60681866917585],[-124.94864875181719,53.60699676676349],[-124.94863124870089,53.60701510208308],[-124.94849043666657,53.607193109644015],[-124.94835008764638,53.607352631992256],[-124.94821485446109,53.607534613720446],[-124.9480757212701,53.607721033166335],[-124.94804450066032,53.60775772795324],[-124.94802689859763,53.607779978814854],[-124.94801128814369,53.60779833068272],[-124.94798988556444,53.60782110378436],[-124.94797238181516,53.607839439001204],[-124.94792377001389,53.60788997987551],[-124.94777539289369,53.608067364405954],[-124.94776356899719,53.608085740576975],[-124.94775543302646,53.608108074641144],[-124.94772983642565,53.608297741570965],[-124.94772520676395,53.608481982505175],[-124.94772464387067,53.60850438316239],[-124.94772597427156,53.60852680046941],[-124.9477291979696,53.608549234425666],[-124.94773052837432,53.60857165173202],[-124.94774820250038,53.60869727855099],[-124.9477722116458,53.60887225339613],[-124.94778089018187,53.608903697556336],[-124.94787990070853,53.609108459144835],[-124.94800041414615,53.60928652295433],[-124.94811157446205,53.609460023281],[-124.94820768729056,53.609629474722134],[-124.94830726421976,53.6098118352474],[-124.9484064905357,53.6100081915995],[-124.94852489043626,53.610195198432024],[-124.94853782049047,53.610208199742154],[-124.9486869936601,53.6103764320385],[-124.94877932437232,53.61054584072554],[-124.94878845389337,53.61055936427643],[-124.94891322593494,53.61071898427466],[-124.94900756416756,53.61088392926408],[-124.94902405649682,53.61090592403306],[-124.94919752532351,53.611087247708284],[-124.94935394071442,53.61126898599949],[-124.94948962799468,53.61144662560232],[-124.94954732358956,53.611562520768985],[-124.94955634118928,53.61158052438275],[-124.94956535879675,53.611598527995746],[-124.94957415163357,53.61162549186243],[-124.94965970157952,53.611763472409976],[-124.94966884558539,53.6117764403509],[-124.94968521230085,53.61180347068336],[-124.9496905696596,53.611816396424565],[-124.94969212597248,53.611829853424275],[-124.9497810139301,53.611985796577564],[-124.94984660530133,53.61216449643081],[-124.9498970355549,53.61234361884805],[-124.94993564181388,53.61254112654185],[-124.94993090880942,53.61272985631752],[-124.94985629918006,53.612910686621206],[-124.9497725445783,53.61307854893962],[-124.94960443826947,53.613211506848444],[-124.94937391510395,53.61334112035151],[-124.94911420470108,53.61342622166376],[-124.94907585646374,53.61344492962655],[-124.94904888347175,53.613463172854814],[-124.94885746055449,53.61361945079088],[-124.94869347369887,53.613739000285655],[-124.94846017036649,53.6138282576307],[-124.94816780079223,53.613931550041855],[-124.94811796369585,53.61395520245359],[-124.94789668859939,53.61409329203527],[-124.94786769436534,53.61411656296155],[-124.94770848262893,53.614272001989875],[-124.94769099024717,53.61428977262047],[-124.94758259370073,53.614457981347606],[-124.947430390754,53.61463588719031],[-124.94728766860106,53.61481331161483],[-124.94710491223054,53.615001030773605],[-124.94699163340121,53.615137272573556],[-124.94697401370492,53.6151600787458],[-124.94695450016867,53.61518287721354],[-124.94694267390263,53.61520125324826],[-124.94692884112186,53.61522410169772],[-124.9469189224037,53.615241938857515],[-124.94685132839818,53.61536905567195],[-124.94668976368233,53.61554239706912],[-124.94667615629605,53.61555627629158],[-124.94656195881235,53.61572891412245],[-124.94646526794861,53.615883225860465],[-124.94633980566246,53.616051838855505],[-124.94620989249503,53.61624674351791],[-124.94609936573377,53.616423894319766],[-124.9459471493387,53.61660179812927],[-124.94582513150827,53.616783893192306],[-124.94572597796785,53.61696057919328],[-124.94560005793372,53.617147120749905],[-124.94548718115647,53.61734217468726],[-124.94536127313066,53.61752815146865],[-124.94534933264573,53.61755100744012],[-124.94521664795982,53.61793073219275],[-124.94521252190329,53.617944139147774],[-124.94517755200636,53.61812924118791],[-124.94511215513731,53.61831911179441],[-124.9451079161239,53.6183369988541],[-124.94508754518647,53.61854407042203],[-124.94509399130116,53.618588938287616],[-124.94517841192413,53.61877172273105],[-124.9452456623026,53.61895940150486],[-124.94527127206517,53.61899547602235],[-124.94543930230768,53.61916780320503],[-124.94556397462155,53.619331897266264],[-124.94557878636918,53.61934547106357],[-124.94576944617131,53.619521913574424],[-124.94578984060188,53.619539461961715],[-124.9459984487258,53.61968021334688],[-124.94611341595385,53.61985374812563],[-124.94636788839011,53.6202043941231],[-124.94644339821185,53.62036525814898],[-124.94647878582612,53.62053976792119],[-124.94650257097284,53.62072370236468],[-124.94651702254693,53.62082689485036],[-124.94652024654428,53.620849328723345],[-124.94652536439759,53.62087177926466],[-124.94652646906883,53.62090315668226],[-124.94652613084791,53.620916597003095],[-124.94651960040528,53.62110082920495],[-124.94654327331057,53.62128924370329],[-124.94656283701434,53.62171624047849],[-124.94658784067948,53.621927072113095],[-124.94662812281227,53.62213299246337],[-124.9466699468701,53.62235293425513],[-124.94667328379543,53.622370888005385],[-124.94674268000654,53.62254906658062],[-124.94674991755815,53.62256257355358],[-124.94686065710485,53.62275399448989],[-124.94692647828738,53.62292373492912],[-124.94693182201695,53.62293722522671],[-124.94702061080824,53.623097640846424],[-124.94704261851847,53.623277078222024],[-124.94704606836841,53.623290551851866],[-124.94709983701398,53.62348763730337],[-124.94718738817019,53.623697333888],[-124.94723793338538,53.62387198541751],[-124.94724623377068,53.62406922650186],[-124.94724957107996,53.62408718022313],[-124.94730345459837,53.62427977645603],[-124.94734051757106,53.62446327150651],[-124.94736385809031,53.62466512587994],[-124.94736897686255,53.62468757634938],[-124.9474381405994,53.624875270082164],[-124.94750597414715,53.62504054660668],[-124.94755830394661,53.62521968569568],[-124.94759692501303,53.62541663754558],[-124.94765225537823,53.6256271705629],[-124.94772487221519,53.62582833765446],[-124.94781053708587,53.62603802588897],[-124.94787781093854,53.62622570261369],[-124.94794731730734,53.626399955638014],[-124.94801592348576,53.626610049391125],[-124.94806970118655,53.626807125173734],[-124.94810532597658,53.626972682761675],[-124.94811539865405,53.627174975802916],[-124.94811873658372,53.62719292947663],[-124.94817063532945,53.62738943299065],[-124.94817937694732,53.6275693178289],[-124.94818616550799,53.62760074507067],[-124.94826872364197,53.62778351000374],[-124.94833755883221,53.62798464326071],[-124.948439941181,53.628207920900024],[-124.94850755898825,53.628382156816805],[-124.9485147981179,53.62839566365004],[-124.94862377950129,53.628582585757904],[-124.94867457585079,53.6287477116446],[-124.94867802667689,53.62876118519669],[-124.9487621317201,53.62895797110933],[-124.94877306112744,53.62897542679243],[-124.94890288168797,53.629162531563],[-124.94904666615189,53.62932175199541],[-124.94915542735747,53.62951763373365],[-124.94927199153594,53.62970462167188],[-124.94940561905649,53.629891203559254],[-124.94941664726167,53.62990474357573],[-124.94959197835972,53.63009056195241],[-124.94960859099896,53.6301080763714],[-124.9498130264251,53.630266707617345],[-124.95002349759554,53.63041138357474],[-124.95026808141384,53.63055580259609],[-124.95063503570442,53.6308827773528],[-124.9506517614202,53.63089581152909],[-124.95087159792244,53.631045049065904],[-124.95110471016471,53.631193846832346],[-124.95132063479143,53.63134809491714],[-124.95134482597018,53.631365675456806],[-124.95158418582622,53.631492121588366],[-124.95179489369127,53.63162783417481],[-124.95203759638201,53.63177223292316],[-124.95221596268132,53.63191327193925],[-124.95224763395785,53.63193483420645],[-124.95249635947089,53.632065841466186],[-124.95258984420857,53.632115951145124],[-124.95268726776749,53.63458306794128],[-124.95062192535008,53.634579547908956],[-124.94802674411943,53.634622314937],[-124.94802188530582,53.63466484243319],[-124.94789436587234,53.63483791917383],[-124.94772112386781,53.63502068532694],[-124.94762371696588,53.63520186828732],[-124.9474945248662,53.63536597671055],[-124.94708593507563,53.63571414850118],[-124.94685149132789,53.635843713648434],[-124.9466298565754,53.63599132427477],[-124.94660948457505,53.6361983945784],[-124.94646702377308,53.63636237619372],[-124.94621550922982,53.63649235452408],[-124.94591583470097,53.63657821794323],[-124.9455576249232,53.63665572328884],[-124.94527357010624,53.63672324272929],[-124.94498784592184,53.63678177568923],[-124.9446433466494,53.636841474839954],[-124.94428178096001,53.63690158715201],[-124.94393851015592,53.63698761693587],[-124.94362388267187,53.637064945265216],[-124.9432803686578,53.637160497793836],[-124.94302807641601,53.63724565193248],[-124.9427437873615,53.63732211654151],[-124.94240049567998,53.637408706390644],[-124.94214776118012,53.63751122342548],[-124.9419583236552,53.63765854535297],[-124.94173690290536,53.637796622180566],[-124.94157757830949,53.63795205151764],[-124.94140308143277,53.63810790216532],[-124.94119870820342,53.638246128717455],[-124.94100616905332,53.63836597964346],[-124.94071223444345,53.638523578100525],[-124.94047540682588,53.638671034126155],[-124.94022408672485,53.63879203961184],[-124.94001947928919,53.63893922424717],[-124.9398603709703,53.63908569109207],[-124.93968540865605,53.63925946838993],[-124.93958818416293,53.639431684362734],[-124.93956633508846,53.639620816132094],[-124.93955987054512,53.63980112198338],[-124.93967429872515,53.63999706181776],[-124.93984962861938,53.64018290264234],[-124.93998089910801,53.64038738875983],[-124.94007993166042,53.64059271859774],[-124.94008848533115,53.640778758648324],[-124.93999370534183,53.6407795956352],[-124.93942136277846,53.640779573708464],[-124.93858938282605,53.64077947960612],[-124.92878372853977,53.640779546673805],[-124.92525111846375,53.64077926154913],[-124.92524974383649,53.647989864797346],[-124.9252491644384,53.64808620258322],[-124.92949715126447,53.64719161947508],[-124.9296999631019,53.647191756124506],[-124.95185900110536,53.6472258440526],[-124.95234421746856,53.647226728557776],[-124.95223464286045,53.6472879490107],[-124.95210642754141,53.647412296551565],[-124.95192962840899,53.64758439005551],[-124.95179086956446,53.647751214918635],[-124.95162884954637,53.64793855636351],[-124.9515861754183,53.64797739196339],[-124.951532242989,53.64801164795086],[-124.95151880898985,53.64801825191705],[-124.95138449683827,53.64808317147987],[-124.95132892169335,53.64810733064548],[-124.95105929934758,53.64820131210752],[-124.9510420889584,53.64820732729867],[-124.95086438489712,53.64826402442787],[-124.95079189380107,53.64828243386742],[-124.95049283271494,53.64834086347573],[-124.95041483856149,53.64835194725222],[-124.95029325732749,53.648362640021396],[-124.95027802244326,53.64851654688759],[-124.95025621694865,53.64870567989747],[-124.95023169105126,53.6487765970342],[-124.95016837720016,53.648882466893426],[-124.95022270141126,53.648983766519336],[-124.95024035986671,53.64903545328782],[-124.95026040342348,53.649143173997494],[-124.95026364554971,53.64916505197916],[-124.95027731165042,53.64945139388889],[-124.95030380145162,53.649453310915426],[-124.95035377622764,53.64950135547067],[-124.95050755020081,53.649492064957144],[-124.94183916794356,53.65331206843236],[-124.94185952076147,53.65333184830493],[-124.94194571420701,53.65374655049455],[-124.94204871028684,53.654246531765004],[-124.94859122423247,53.65823736025953],[-124.95657174485076,53.662400542150905],[-124.95985883989863,53.665025867381836],[-124.96351062727805,53.669480256742425],[-124.96755115771732,53.67358499223719],[-124.9731370985146,53.67843770676878],[-124.97941036232008,53.68254263802803],[-124.98201414210699,53.68842081244411],[-124.97585291984956,53.692704773367595],[-124.97103593476257,53.69413608703554],[-124.96141462895167,53.695227146011334],[-124.95303446442645,53.69523492647517],[-124.94244894146563,53.69660338448636],[-124.93186363678478,53.699123089689465],[-124.92733607690587,53.702202553903795],[-124.9303150549783,53.70683110949531],[-124.93523318304008,53.71048203477714],[-124.9420745503183,53.71139114921905],[-124.94447406127895,53.71139267846662],[-124.9501540455581,53.71139099267262],[-124.95488377367263,53.71355625180816],[-124.96086280465656,53.71680756500698],[-124.97010474467122,53.71960044286691],[-124.97540293041517,53.720964871642785],[-124.98464960188936,53.723015063510516],[-124.99390680485314,53.724034577799586],[-124.99968777795682,53.723691398027256],[-125.00622726161737,53.72402634468566],[-125.01172399607482,53.72670200109424],[-125.01463308006318,53.72960991079799],[-125.01020274351501,53.731273368619235],[-125.00616054530724,53.73321265514595],[-125.0077868766339,53.73447066419359],[-125.01097250665835,53.73726275094062],[-125.01223710178549,53.73840737831336],[-125.01840533693294,53.73782897720539],[-125.02630766022897,53.7378205254687],[-125.0338221126363,53.73946857174164],[-125.03681217614181,53.74094774174127],[-125.03990296596794,53.743342842924754],[-125.04173518496701,53.745624206858906],[-125.04502766649344,53.74853214118793],[-125.05255581979131,53.75103212726688],[-125.05871960771539,53.752054606150175],[-125.06374610930479,53.75296317072558],[-125.06586937499345,53.75318582167206],[-125.0752136820949,53.75340377343813],[-125.08601554414037,53.755097301344804],[-125.09220995352138,53.75896858892639],[-125.09393612778891,53.75999426753561],[-125.10080729794372,53.76569160456471],[-125.10758310297281,53.770246922054696],[-125.11462658158379,53.77229294460854],[-125.12215834674731,53.77501869813811],[-125.12382513856656,53.78038526338737],[-125.11564651725021,53.78587689383405],[-125.10813843466765,53.78766184245194],[-125.10196820471977,53.78875958579002],[-125.09203428941468,53.78939793120062],[-125.0822954356969,53.791528458011996],[-125.07940466068419,53.79358538657275],[-125.07535701842396,53.79701732629353],[-125.07257571656766,53.80096129710963],[-125.07161046893692,53.80193342917381],[-125.06690394844907,53.807535359271526],[-125.06383379664129,53.8141053446726],[-125.06189949487806,53.81684755963339],[-125.05671367542365,53.82062003524564],[-125.04571080640622,53.82634520891094],[-125.03809312520424,53.82846942197743],[-125.0295934132973,53.831156765429164],[-125.0269913595516,53.832360089412575],[-125.02294872176242,53.836530740820045],[-125.02188397980315,53.84035697402235],[-125.02285592182635,53.841784115688796],[-125.02586414412715,53.84669183843491],[-125.02509702479702,53.85017212545474],[-125.02480798125262,53.85080267321574],[-125.02761845097403,53.855080320047826],[-125.03139913783984,53.85633121268307],[-125.03864278753815,53.85678188638458],[-125.04888723670364,53.85796996847287],[-125.05662631482255,53.85944393280044],[-125.06232889773321,53.86000654554802],[-125.06860950473701,53.86062657128501],[-125.06976666385397,53.86067864765346],[-125.07460584237712,53.86170110159086],[-125.07654668909976,53.863528393568174],[-125.07840030591973,53.86723738461829],[-125.08082209913725,53.87008480206127],[-125.08565780346957,53.87202081219643],[-125.08759677190153,53.87258718053512],[-125.09377789131796,53.87297829692731],[-125.10306325109225,53.87364707992653],[-125.11061189383146,53.8756935341499],[-125.1160530430635,53.8786509616718],[-125.11886316881571,53.88275441349222],[-125.1157836416196,53.88630449413138],[-125.11009932885283,53.88967790231684],[-125.10323944843203,53.893059103666054],[-125.09888845121864,53.89535202318198],[-125.0949395688792,53.896669374367264],[-125.08874155179163,53.89828045001463],[-125.08313695393325,53.89993941085678],[-125.07589542149177,53.90109552148992],[-125.06882532409449,53.90139058078123],[-125.05847656856761,53.90094444812111],[-125.05015438353549,53.90061423591676],[-125.04714894264741,53.90061627348831],[-125.03380497157525,53.90171921118601],[-125.02211141829521,53.90332470905698],[-125.01997864441842,53.90383664604827],[-125.01543254945078,53.90510343576822],[-125.00721567841045,53.90545104881966],[-125.00130093476854,53.904597356773124],[-124.99628240228067,53.90328542405923],[-124.99308376026332,53.90180591454423],[-124.98310651150712,53.89742077107672],[-124.97420720201009,53.8939428862147],[-124.97024349816314,53.89200481510356],[-124.96066770941593,53.887611108209676],[-124.94316549516694,53.885561843347546],[-124.93020213078196,53.88379573933625],[-124.92942444298983,53.883793310966645],[-124.92924211972732,53.88139732832095],[-124.9278782188781,53.87751669773456],[-124.92460180970491,53.8727261954925],[-124.92015045249352,53.86918357954221],[-124.91213354974207,53.86678201720438],[-124.90632257051246,53.8668990796265],[-124.90333104061312,53.869354187924706],[-124.90352565825351,53.87238212574236],[-124.90420209581484,53.8750632649328],[-124.90468231867793,53.87882973811167],[-124.90487197543426,53.88436848082361],[-124.90225249693273,53.88596664891971],[-124.89596637634895,53.88779389993539],[-124.89431775073669,53.88842231562881],[-124.88579790365722,53.89161697290054],[-124.87990053928223,53.89480855930639],[-124.87408736539194,53.89823757020715],[-124.87303299969584,53.89886452920335],[-124.87331272399344,53.90149059325336],[-124.87388839861322,53.90445771180442],[-124.87387549418929,53.906624004275145],[-124.87301468840394,53.906857359963716],[-124.86903957271282,53.907707302295144],[-124.86575639469396,53.90947656906277],[-124.86507127265918,53.91221397800974],[-124.86757033968536,53.91627009494933],[-124.86873401084307,53.91781453181742],[-124.87007991240091,53.92164188957561],[-124.87434380368184,53.924267114836155],[-124.87781297946422,53.92637959531956],[-124.87917401242119,53.92968720711709],[-124.8787765271295,53.93197032651234],[-124.87809701727316,53.93225636935802],[-124.87790271243378,53.9337975789574],[-124.8783862592863,53.935681150040125],[-124.88050355837947,53.938137722030994],[-124.88156754010554,53.94002218096851],[-124.88369765482281,53.94144882923982],[-124.88438159874951,53.94213900732728],[-124.88651051828839,53.94247848588184],[-124.89221612274949,53.943848872179835],[-124.89385962255542,53.94579061550808],[-124.89560406748483,53.947388251301874],[-124.89657253946078,53.94772812181649],[-124.8992822088713,53.948645068551116],[-124.9014193139119,53.94984686868407],[-124.90345270544955,53.95093174705913],[-124.90538832102293,53.951673493376674],[-124.90819505368576,53.95298261077848],[-124.91071273268068,53.95367073158992],[-124.91371161433811,53.95406965399516],[-124.91613647082931,53.95480835096111],[-124.91942604886498,53.95578213354765],[-124.9239715283713,53.95663821358261],[-124.92533622265327,53.9570329069846],[-124.93105495422193,53.95920579715226],[-124.93366791604655,53.960971847039154],[-124.93366593879128,53.9634282895101],[-124.93269755959719,53.96662500371296],[-124.93307952663996,53.966626695870566],[-124.93453333786337,53.96713744190421],[-124.93830523889432,53.96902393373121],[-124.94228427039833,53.972390700954605],[-124.94441239164328,53.97524381259844],[-124.94634938560323,53.977810145711956],[-124.94945811758862,53.97878150211349],[-124.95323525797106,53.97992267631975],[-124.95614556943615,53.98089493268752],[-124.96022322336516,53.9840888626934],[-124.96166842431477,53.99047926874498],[-124.97146943750339,53.99846835905917],[-124.95799152009474,54.07295805024351],[-124.95604527725651,54.07541444344953],[-124.95185320477677,54.08002883845821],[-124.94900900885396,54.08402754864303],[-124.94413152126275,54.08961244705502],[-124.94236567186218,54.093942987481185],[-124.93909442228025,54.10615470569125],[-124.94041259673256,54.11335271683854],[-124.94137653401529,54.11523392560684],[-124.9439734019685,54.12043585306722],[-124.95036759378617,54.125930522455455],[-124.95580566268993,54.12986641212972],[-124.95899289619523,54.132447603827416],[-124.9658711550097,54.14021258465142],[-124.97342314367485,54.147525856311916],[-124.98429745002193,54.15342385388989],[-124.99206843636611,54.15765532190167],[-124.99428913317827,54.161652206935024],[-124.99418755304251,54.164563514425566],[-124.99513985530642,54.16833479738912],[-124.99551861332417,54.17107086965558],[-124.99938857982912,54.17866545057145],[-125.00422287328418,54.189009676591084],[-125.00704202877971,54.190600840669816],[-125.00947063777801,54.19054900266482],[-125.01872120265435,54.18981771497983],[-125.03041087308863,54.188567615164445],[-125.03188093654322,54.18811341332667],[-125.0419066135186,54.187037093888954],[-125.05993482258116,54.186640464691266],[-125.06732359917376,54.186643713194826],[-125.07453830776898,54.18755913183133],[-125.08154231809638,54.189673198279365],[-125.08776345044149,54.191789932690874],[-125.09721412914007,54.19590165246127],[-125.10411629646207,54.20070169268121],[-125.10596601705933,54.20469364927564],[-125.10295505793758,54.20817486988652],[-125.09992146429974,54.209147000116715],[-125.0902679502251,54.211996080186246],[-125.07925867790539,54.21285392520435],[-125.06747835225153,54.21107951174348],[-125.06299012908589,54.21108080252553],[-125.05811804166737,54.21375806185772],[-125.05197354037878,54.218262051699774],[-125.04455609348831,54.21991533319338],[-125.03988323316283,54.220541542614],[-125.02828102997935,54.221623069287425],[-125.02397127732499,54.225728159634194],[-125.02347571630779,54.229774216405104],[-125.01967063822268,54.23200155744868],[-125.01419906297343,54.23251282037339],[-125.00737686443209,54.23290528734645],[-124.99704829828623,54.2339225794212],[-124.98971680864571,54.2368814610578],[-124.98434333865767,54.23898713851786],[-124.98092719334171,54.24029362365005],[-124.9767214701285,54.243035979001846],[-124.9667821839694,54.24250386311937],[-124.95664387207268,54.2425516465022],[-124.94874839334902,54.24271657113172],[-124.93003017998724,54.241433153357],[-124.92293108837296,54.238789836666115],[-124.92212566913797,54.23841531723263],[-124.91553072635301,54.235354887641456],[-124.90698131194273,54.231801616089044],[-124.89762182826979,54.22984430700153],[-124.8900393338232,54.22817133294471],[-124.88722999402827,54.22400586974074],[-124.88822957978607,54.221147653975606],[-124.88776525685542,54.21841043962857],[-124.88310935283928,54.21377990857723],[-124.87309637972041,54.21004940600171],[-124.86443926779545,54.20905477135992],[-124.85226275293073,54.20806214074965],[-124.84465983505122,54.207873545408255],[-124.83823614020908,54.207292532558604],[-124.82965701159097,54.20738935345292],[-124.81990235012711,54.2093558955218],[-124.81628045297902,54.21237623928062],[-124.8105622348056,54.219838391559456],[-124.80701680020604,54.22388073487492],[-124.80231247377586,54.22809077095098],[-124.79749071780323,54.23207545042254],[-124.79014159809364,54.23724449827702],[-124.78935370510374,54.237362100183255],[-124.78622096435005,54.239804000466386],[-124.78250101408807,54.24128114472447],[-124.77762027345135,54.241949002496675],[-124.77322258903989,54.241886763736645],[-124.76689571516445,54.24100729827374],[-124.76036548590186,54.241272403137195],[-124.75294094306334,54.24262119745553],[-124.74529261002259,54.24625223189878],[-124.73941752171481,54.24971302394124],[-124.73471136729272,54.25215522233442],[-124.7325501286049,54.252885411685924],[-124.72437577056522,54.2520113469109],[-124.71600224958286,54.249638164867974],[-124.71049045593257,54.24630909808652],[-124.70272736900095,54.242686929957216],[-124.69959030307723,54.24313728762072],[-124.69623836316626,54.24648858981061],[-124.68908762632081,54.24977200578779],[-124.68325738048999,54.247809266499495],[-124.67899491264168,54.24494927727972],[-124.67424565962577,54.24241537553169],[-124.6642295755371,54.2405582954899],[-124.65722660447489,54.239728385927755],[-124.64532388636427,54.239623149967194],[-124.62042545005133,54.23530155401061],[-124.61109423552357,54.23286534678066],[-124.60573321018241,54.23221250284684],[-124.59968954898598,54.232644814604605],[-124.59207535364197,54.232673305762376],[-124.58964776460653,54.23260034171709],[-124.58811689197996,54.23014511708109],[-124.58572593682923,54.226765816218155],[-124.58198678161445,54.22280617146466],[-124.57761823235049,54.22062231587381],[-124.56624127928737,54.219260845442285],[-124.55637471831632,54.22133051676777],[-124.54734359770345,54.22584686740419],[-124.54062565901663,54.23186899285841],[-124.5335885370292,54.23902499647307],[-124.52804099459202,54.245329414379036],[-124.52714812960375,54.24663590905419],[-124.52445351332678,54.24970383637623],[-124.52367518050441,54.25038440531973],[-124.52196255796545,54.25351797227907],[-124.51995740155952,54.25664795449132],[-124.51884943021103,54.25921531612425],[-124.51705021089948,54.2621685352314],[-124.51637151697076,54.264346813025085],[-124.5162323053757,54.264793179284275],[-124.51881575081727,54.267432416682205],[-124.52047195954329,54.26846520660217],[-124.52367245229802,54.26979453187692],[-124.52832959672521,54.27129374951783],[-124.53502275786899,54.273561112002255],[-124.53736312141622,54.27442267782957],[-124.54346643526675,54.27685272950869],[-124.55120330591699,54.281452618127986],[-124.555451561371,54.285015922709555],[-124.55980571790143,54.287773818439106],[-124.56728858531746,54.29048778552928],[-124.57379305885866,54.292571498393045],[-124.58342445725016,54.29467337897452],[-124.5863465856501,54.29525399017069],[-124.59375638231683,54.296137388203405],[-124.59980292210025,54.29725555985208],[-124.60565180105749,54.29785142386296],[-124.61326656126744,54.29770545833498],[-124.61894961332872,54.29636321987334],[-124.62031274893559,54.29613673787606],[-124.62665839345013,54.29662073016779],[-124.62702277241037,54.298166126394264],[-124.62856434513218,54.300907638369615],[-124.63401216263222,54.30247434891973],[-124.6390729933099,54.30317623589132],[-124.64814553203598,54.304639410426354],[-124.6535727825832,54.30734303254802],[-124.65879651179412,54.31158542714649],[-124.66199107465201,54.314281953902544],[-124.66595461355092,54.31704058470097],[-124.67305297199024,54.32106091584163],[-124.67993968518915,54.3245139915745],[-124.68225749419832,54.32674344639854],[-124.68409766037783,54.328008891839346],[-124.68800469938881,54.32875894886978],[-124.69417930787986,54.327526011100474],[-124.70093713884131,54.325384993666894],[-124.70799647041655,54.32392782143474],[-124.71629845835136,54.32412315943465],[-124.72566225695923,54.32587028274553],[-124.72790374610399,54.326162540094394],[-124.73454505334539,54.32624070098122],[-124.74098940846255,54.32671073092165],[-124.74498096842048,54.32724476962313],[-124.75367415570113,54.3277820846774],[-124.76137736514401,54.32997537908427],[-124.76614406637226,54.33295387268621],[-124.77051043898034,54.33593709096344],[-124.77333034134963,54.33754257882196],[-124.77681718838299,54.34057942146794],[-124.77708545116661,54.34348532372306],[-124.77365192255768,54.34485760944876],[-124.76817626229285,54.34489197059641],[-124.76531661486074,54.34665512963011],[-124.7670557436486,54.34883223080588],[-124.77105026868833,54.350897666272665],[-124.77766413527777,54.35410933261461],[-124.78323601516631,54.355034265617554],[-124.78782679812392,54.35471264039918],[-124.79183721240351,54.35471662723564],[-124.79426984096155,54.35592350274438],[-124.79486443706612,54.35616235645947],[-124.79885170372037,54.356963361931854],[-124.80149065586578,54.358512619516134],[-124.80538145221811,54.36052211636069],[-124.81044080800861,54.363214926380785],[-124.81385544024933,54.364646028475086],[-124.8176623758287,54.36585682848474],[-124.81656026252139,54.368767219955274],[-124.81301553237537,54.370757802981984],[-124.80467634462944,54.37416191540885],[-124.80318523810446,54.37661139751145],[-124.80335553581612,54.38083341669241],[-124.80282976092182,54.38351637360528],[-124.80291935530043,54.38573942964346],[-124.79908424732199,54.38755652375001],[-124.79417273032426,54.38869083194327],[-124.7919069117365,54.39119524150673],[-124.7890404267447,54.39363988596935],[-124.78461779641283,54.39648114859761],[-124.78312278110971,54.39847337501478],[-124.77810564577337,54.401541447365766],[-124.77767822711917,54.40604425228473],[-124.78008661667292,54.40919553621959],[-124.78399348191161,54.41183304620118],[-124.78876701264147,54.413385864854206],[-124.79384888162001,54.41392005985729],[-124.79904473305267,54.41478669650574],[-124.79922477234771,54.41655365606019],[-124.79803157495347,54.418262296120155],[-124.79801869548439,54.419229886226724],[-124.80103598240136,54.421186036397366],[-124.80591501193014,54.42342018507853],[-124.80913287187403,54.425942588175324],[-124.81185684874164,54.4268562021592],[-124.81498725388597,54.42761241483939],[-124.81497773666342,54.42954774509825],[-124.8132039546376,54.43103584284613],[-124.8070059018108,54.43426386280839],[-124.79639792250157,54.43709873276939],[-124.7927648599297,54.43765424718224],[-124.77911587055614,54.441326683568654],[-124.76896332953632,54.44688770665678],[-124.76875528562753,54.44763827970878],[-124.76561918622237,54.449103004464874],[-124.7596363691643,54.44908719359014],[-124.75462918481199,54.44901831898353],[-124.74609902470525,54.449388022620354],[-124.7421594153689,54.451309844199606],[-124.73704770489161,54.453120863847786],[-124.73115183330006,54.45527298767246],[-124.72120259702879,54.458950547029396],[-124.71576594570061,54.46366944005818],[-124.71475573225042,54.46629319107178],[-124.71305910250491,54.46959070093539],[-124.70832399893476,54.4711177813376],[-124.69918221639266,54.473538704153675],[-124.69326234093033,54.476773007688294],[-124.69386572246572,54.48357150176927],[-124.69814835039021,54.486609982242165],[-124.70380343694443,54.48982415136603],[-124.709182129063,54.492013641485734],[-124.71250071137595,54.49328517084791],[-124.71884477846983,54.495815921087775],[-124.72529432733096,54.49846391756239],[-124.73232418660696,54.50139535223145],[-124.73857263382949,54.50409430538273],[-124.74177865145607,54.50707528081601],[-124.74302718289722,54.51078873335894],[-124.74698996976288,54.516393744485086],[-124.74863939187506,54.5176561093063],[-124.75215892306221,54.519555798993956],[-124.75911877112436,54.520889984685674],[-124.76655242354083,54.522963287902726],[-124.76949344040322,54.524569903628944],[-124.77114899313216,54.52566177015916],[-124.78493462069602,54.53192821645481],[-124.79296700040359,54.53377285647999],[-124.79924674406077,54.53465000246394],[-124.80797753660933,54.534896628092426],[-124.81701747349389,54.534634890873456],[-124.82359746972408,54.534250306372186],[-124.8316538820805,54.534784442196965],[-124.84324469395975,54.53470637464336],[-124.85218339152023,54.53307019705275],[-124.86299821813576,54.53246330173307],[-124.8710443177054,54.53225106591849],[-124.87713030294368,54.53346289556016],[-124.8882994747611,54.53576901276445],[-124.89803301581753,54.53619751054036],[-124.9058755993227,54.53666210380277],[-124.91413383603162,54.53548125364779],[-124.91866840880336,54.53331725696698],[-124.92271582853834,54.52904322673784],[-124.9247014303568,54.5253960810547],[-124.92835870284779,54.52118116168068],[-124.93537661577393,54.5151407243217],[-124.94441130859441,54.512468323442775],[-124.95550903435569,54.51020713295467],[-124.96652011907896,54.50764853761282],[-124.96986720800405,54.506915183887884],[-124.97488535751134,54.50497721569838],[-124.99078796063779,54.500432435658674],[-125.00346054087633,54.49936262174984],[-125.00866279088501,54.499306345971796],[-125.01277889361366,54.49743120594979],[-125.02073569370853,54.495443391376426],[-125.0277122495526,54.49299032504689],[-125.02918861126236,54.49207919857868],[-125.02949092594433,54.489115910627284],[-125.0326513914938,54.484374353472376],[-125.04392520927017,54.483307234503684],[-125.05794903519873,54.485082623547875],[-125.06530495027963,54.48685039499927],[-125.07687424127627,54.489142388102024],[-125.08814219406011,54.49251515039581],[-125.09460481363399,54.49770602411104],[-125.09676416284206,54.5008578725447],[-125.0967575154326,54.50747900507946],[-125.0982134345967,54.51518607669443],[-125.09929035423272,54.518320920586255],[-125.1061462079723,54.52774295120811],[-125.1140963848027,54.5347086020826],[-125.12479101254456,54.54098555649763],[-125.1308735947398,54.542758084209304],[-125.14285212874776,54.54493010716897],[-125.15740195055292,54.54646462760805],[-125.17231784024499,54.54680827611828],[-125.18911820452597,54.546687750002064],[-125.18961526022426,54.54662832479161],[-125.19913886026356,54.546171342333096],[-125.20553107884594,54.54496762713344],[-125.21368500930468,54.5439899341609],[-125.21858805601205,54.54364503125236],[-125.2225159828032,54.543239987294314],[-125.22684621225082,54.54203997218031],[-125.23321828991425,54.54100492139061],[-125.23714528343608,54.541459506172934],[-125.24275102438563,54.5416287002745],[-125.24717427066967,54.54122593066214],[-125.25296302547719,54.54070591091433],[-125.25619823880777,54.540017820472],[-125.26455651022223,54.53875129436203],[-125.27201749999244,54.53999644430477],[-125.27565376427928,54.541137931891065],[-125.27801033921942,54.541931315078656],[-125.28027404808522,54.542724106358975],[-125.28283059994924,54.54449513765054],[-125.28911993468495,54.54637743695789],[-125.29265571058485,54.54442686621925],[-125.29569337464586,54.54258980121905],[-125.29961643829367,54.54151031268459],[-125.30424351766797,54.5418413134216],[-125.30728546608998,54.544286533394356],[-125.31044962084907,54.54685779322708],[-125.31614884712094,54.547982790004674],[-125.3206583328495,54.5479810152196],[-125.32635310512111,54.547519719340585],[-125.33196238460172,54.546591811183475],[-125.34060393234607,54.54594879337738],[-125.34462555272721,54.54543283146216],[-125.3474749642531,54.544570044679254],[-125.35040698664274,54.54239958055814],[-125.35178143035124,54.54170804455676],[-125.35767286679605,54.54147032027168],[-125.36121396155475,54.5419188918403],[-125.3641499349593,54.542426933786295],[-125.37310705373123,54.54435456358245],[-125.37861818525535,54.545708621890384],[-125.38540632998887,54.54769599081055],[-125.38618891694954,54.54821059086413],[-125.39001663339805,54.54820284197043],[-125.39415252856638,54.548312968158434],[-125.39730768495879,54.54977992728534],[-125.4008452305941,54.55160704247123],[-125.40546202244936,54.55171017765303],[-125.40859871133357,54.550211266840435],[-125.4121282183318,54.548319959561994],[-125.41800625302355,54.54579467752603],[-125.4227135506273,54.544930005790015],[-125.43008222590608,54.54543040430328],[-125.43667853809191,54.54689439530974],[-125.44109492311154,54.54688775724111],[-125.44846026975429,54.546526954708426],[-125.4539686083477,54.547133987333346],[-125.45949413655737,54.549971668746316],[-125.46394197925018,54.55350319425002],[-125.46679439714543,54.554635535908794],[-125.46993993025845,54.5558855476259],[-125.47122719732441,54.55701995921666],[-125.47308715524252,54.55701901649208],[-125.4761429209039,54.556835025319835],[-125.47821265404933,54.55739932485171],[-125.48155876390075,54.5587663577819],[-125.48186375962673,54.559161848352026],[-125.4847177448252,54.5602400199758],[-125.48775674078007,54.56017213583474],[-125.49160105281574,54.56016127622852],[-125.4955299676105,54.560831534095975],[-125.49917206968456,54.56088231709105],[-125.50090790820389,54.55836294477969],[-125.50187844603751,54.55630630930243],[-125.50381810709939,54.55356374761996],[-125.50457534811139,54.54990255094929],[-125.50366670368648,54.54687966055593],[-125.50097675556107,54.54255044577109],[-125.49996978769204,54.540001954274054],[-125.49887251951719,54.53724702408632],[-125.49914752352723,54.53376305859546],[-125.50069342072047,54.53021260941464],[-125.50794500468658,54.528709971879564],[-125.51747096418741,54.52999321485758],[-125.5217304200679,54.53397880983679],[-125.5250004931935,54.53785290698799],[-125.5292674753164,54.54131863229008],[-125.53282234700166,54.544790448243695],[-125.53629266456997,54.54757198955183],[-125.54310914196314,54.5518889982729],[-125.54734616451965,54.552728965356835],[-125.5530513184084,54.553968349685086],[-125.5539482982245,54.55556632775105],[-125.55961545677178,54.561831276273615],[-125.5706372567127,54.56326801363038],[-125.57546691644826,54.56542604952714],[-125.57767364808242,54.56941147239146],[-125.57740199104629,54.5716950790452],[-125.57556360149474,54.57553213138449],[-125.57217942868672,54.580340297822836],[-125.57095761134985,54.58593539090294],[-125.57164663638696,54.586788904102725],[-125.57432478598271,54.58877816870314],[-125.57512554403644,54.59083255188832],[-125.572574234117,54.59153144058296],[-125.56786531874921,54.592348114595104],[-125.5613002273072,54.59408971309206],[-125.5567876772882,54.596779092540345],[-125.55553714477115,54.599068063521116],[-125.55556255229997,54.60101225346077],[-125.55636820504607,54.603980591293116],[-125.56153566065227,54.60829948213831],[-125.56694043144577,54.6093668865827],[-125.57056974689338,54.60809851919625],[-125.5749825493664,54.606080211014984],[-125.57694498072327,54.60538819909189],[-125.58203641708707,54.60371241832077],[-125.59050156106353,54.602880923648264],[-125.59777745148408,54.60303043346079],[-125.6035998588161,54.60425885206347],[-125.6086172628155,54.60532316526029],[-125.61383826532371,54.606217693936685],[-125.61718971996964,54.60626403847792],[-125.62053206950291,54.605620426248976],[-125.62689526057117,54.60382129297545],[-125.63248861741796,54.601293853227055],[-125.63325869302135,54.60020317101463],[-125.63861861344071,54.595900888390105],[-125.64535214816834,54.592274273453405],[-125.65350673345577,54.591043347184005],[-125.66386367872923,54.59356276359895],[-125.67639212540121,54.59630206569812],[-125.68279963773308,54.598280810049054],[-125.69013831604954,54.60235795321521],[-125.69886666978114,54.60757584885011],[-125.7071615494961,54.61078529472489],[-125.71687575799015,54.61542191785118],[-125.72015961335293,54.61866359957119],[-125.72030576688468,54.622256430558174],[-125.71454251508825,54.62502935570018],[-125.70640457262665,54.627581338829145],[-125.70143542904697,54.63194126378397],[-125.70179280671846,54.63616174752277],[-125.70519109112695,54.64082855346897],[-125.71328734952728,54.642388653755894],[-125.72305009961369,54.643369666609495],[-125.73736894038979,54.646043992323015],[-125.77139018530771,54.6564326017938],[-125.78537394286361,54.66224521501737],[-125.80006854778301,54.66969683823234],[-125.8063308328344,54.67320974809512],[-125.81303246613821,54.67945542419167],[-125.81507525679608,54.684923351645814],[-125.81660452719774,54.694054599311166],[-125.82211549232215,54.699850040555226],[-125.82913289733965,54.70660591562221],[-125.83504978606058,54.712911975306845],[-125.83984263876721,54.716654094705866],[-125.840814402736,54.71883232269482],[-125.84518048671521,54.7287283044363],[-125.84940430608685,54.739779616816996],[-125.84707028513792,54.747732050856804],[-125.83950588925076,54.750804204357074],[-125.82492341345457,54.75225354622342],[-125.81287292028907,54.75151911705802],[-125.80562651098523,54.74927716979801],[-125.79117287631776,54.74672713632312],[-125.77536135082214,54.74509567681984],[-125.76678931338478,54.7465131218965],[-125.76307920263574,54.74990138594492],[-125.76028199810392,54.754196149688624],[-125.75910179180015,54.76151310879164],[-125.76128553045096,54.7689799611553],[-125.76198195636634,54.76977863367156],[-125.76497783521091,54.77170155005891],[-125.76768923472252,54.77437638649114],[-125.76384701556847,54.775936848648826],[-125.7615015716098,54.777311966859145],[-125.7577918918077,54.78008192094975],[-125.75664697027926,54.78390502528348],[-125.75511755275683,54.78683148558675],[-125.75485408024144,54.78916917933615],[-125.75565741873567,54.79037123971662],[-125.75912625904587,54.7916054118105],[-125.77054960448307,54.794915055173874],[-125.77749284918845,54.796710568023876],[-125.78404783401885,54.7983347935529],[-125.79197403028736,54.80022975207274],[-125.8011968027583,54.801785868866816],[-125.80655370405049,54.80323674011348],[-125.80874513950835,54.80476313310102],[-125.81263653318669,54.8062831245517],[-125.81920217237882,54.80967930346758],[-125.82947531805681,54.8144151541198],[-125.83394435696083,54.81622194382443],[-125.8390088447197,54.817447038202],[-125.84290126804314,54.81930649921973],[-125.84338373482487,54.81959378963348],[-125.84380405219838,54.81981828893477],[-125.84904364311217,54.82029962464703],[-125.8528023654941,54.82051021896847],[-125.8532077593221,54.82056445420728],[-125.85986240953481,54.82241767774309],[-125.86671903999034,54.824709732604646],[-125.86732602300319,54.82515831885129],[-125.87117889765386,54.82536845347999],[-125.87562628592558,54.82505050977609],[-125.87799786986375,54.82499016913625],[-125.8806793416176,54.825655732014894],[-125.8815020699125,54.827080947178445],[-125.88340146210905,54.82849822095913],[-125.88857742910542,54.82999909738777],[-125.89434579004713,54.83185860994813],[-125.89664999721982,54.83389416963994],[-125.89988581998581,54.83793717611543],[-125.90420114667995,54.84116570556292],[-125.90560440509432,54.841775973373686],[-125.91075351638898,54.84243378564039],[-125.91374847881029,54.84326906744052],[-125.91555609934004,54.844685778979084],[-125.91600297730132,54.84748117075204],[-125.91495206844365,54.84989031674561],[-125.91183964053442,54.85259363169259],[-125.90636631592156,54.85656722125661],[-125.90384562347496,54.85949474728274],[-125.90597691235648,54.86290961870975],[-125.90867464547604,54.86460482104312],[-125.91287248416954,54.86600539841168],[-125.91853755005675,54.86796224321574],[-125.91995539583553,54.86967426374767],[-125.9211047553556,54.87297176857987],[-125.91251130742631,54.874175387570006],[-125.90768224956838,54.87523794375812],[-125.90354002841069,54.87639939440687],[-125.89887320238336,54.881116841943545],[-125.89744256103404,54.884663267167376],[-125.9002382373977,54.88509557050527],[-125.90717410839044,54.885692247357625],[-125.91632615851802,54.88762488684572],[-125.9232120585503,54.89020943608235],[-125.92712888390835,54.893212937984245],[-125.93114016747377,54.896153657567815],[-125.93504425894348,54.89807291078497],[-125.9402590645869,54.90174856437757],[-125.94640995523902,54.90753863270969],[-125.94743952985425,54.90924120616269],[-125.94948335916342,54.912601527778214],[-125.94574458573679,54.91410498455553],[-125.94596203941843,54.91518906842819],[-125.94958663566965,54.91756462484477],[-125.95342835347924,54.92188416872015],[-125.957380503182,54.926078210389385],[-125.96128822161612,54.9285162296557],[-125.96766824135952,54.93047103328926],[-125.97296945725185,54.93254173766113],[-125.97615986737424,54.93372492631039],[-125.9797724472232,54.935696457072076],[-125.98501179298235,54.93937021941472],[-125.99992177230757,54.939962393886276],[-126.00318881614355,54.94082237599367],[-126.02816252138666,54.95483042015552],[-126.04361481186253,54.96989425687683],[-126.0591663947497,54.98608489807535],[-126.0681297930238,54.99541512264914],[-126.06996387781477,54.99999193092791],[-126.06966048052102,55.00180173387273],[-126.0692066310745,55.00500019914084],[-126.06919067103651,55.00597669258047],[-126.07108808137238,55.01112679786371],[-126.07361302195754,55.01468187683596],[-126.07901963131154,55.01814551415904],[-126.08634371762825,55.02024589093278],[-126.09011317158763,55.02078072087715],[-126.10144725193354,55.02106759082199],[-126.114183999213,55.02045628086634],[-126.13112321923538,55.018208821538416],[-126.1393096290311,55.01613045183562],[-126.15147974616048,55.013625678426294],[-126.15628706535952,55.01141589228265],[-126.15657868328708,55.011594695774676],[-126.15922284927392,55.0144043225965],[-126.16281825347151,55.0200256450752],[-126.16522979004024,55.02489592724786],[-126.16695872349283,55.02902352166831],[-126.16692203588653,55.031531977753694],[-126.16669806564337,55.033073157649476],[-126.1665879457228,55.03370040741161],[-126.16485840873959,55.03643509186877],[-126.1623244607124,55.039564986300206],[-126.15597112292565,55.045082679393914],[-126.15550884751391,55.049535681231625],[-126.15657163147554,55.051541068617],[-126.15881103620478,55.05474539728045],[-126.1614367549375,55.05881816763995],[-126.16324787264085,55.06409241056673],[-126.16382130303927,55.06569524353633],[-126.16376818870037,55.069287711902135],[-126.16341390772104,55.07288953623451],[-126.16287351662638,55.07585554361883],[-126.16173811857051,55.07824897546285],[-126.16011173263723,55.08058927989488],[-126.15808072867546,55.083145085502856],[-126.15755978363904,55.08468662746047],[-126.15752505958011,55.08685465300377],[-126.1586618898701,55.09069644486256],[-126.16186444199025,55.09630935370681],[-126.1663613952477,55.10204587446208],[-126.17147414173392,55.106589890786985],[-126.17720193411799,55.11004883027009],[-126.18265538377474,55.11212828431888],[-126.19047854121087,55.11553872143366],[-126.19392576782583,55.11840910290571],[-126.195673859277,55.12161354763472],[-126.19295584499,55.12343640083309],[-126.18710930607891,55.127691733435896],[-126.18681119798862,55.12780864424598],[-126.1821615408701,55.13195443358086],[-126.18096974621119,55.13852284638205],[-126.18206230766404,55.14567023389095],[-126.18457838255436,55.15082669264833],[-126.1881899186791,55.156330835635146],[-126.18929111517403,55.16285105050578],[-126.19281214953453,55.167781849832416],[-126.20016277297472,55.170332405447915],[-126.20829288935049,55.17414439461824],[-126.21371952738396,55.17868618192822],[-126.21637295065827,55.18171857799646],[-126.22146841308768,55.18866152936714],[-126.22576781296452,55.19565051842771],[-126.22798782526833,55.20120980421078],[-126.22887515260447,55.202175711878695],[-126.23200747743981,55.20671195944589],[-126.23312533038589,55.212604680941965],[-126.23331208781308,55.213742083462066],[-126.23406221414878,55.21711809841777],[-126.23411632028346,55.220665635743636],[-126.23255077762434,55.22545250855072],[-126.23239565232295,55.229627547384936],[-126.23482492534178,55.234783197259574],[-126.23977971006538,55.23811535050064],[-126.2417798656279,55.23818315333412],[-126.24819026048222,55.23712237590269],[-126.25292856641181,55.23400417326851],[-126.25576223388447,55.23149890780079],[-126.25841493644478,55.22739930447824],[-126.25847197292681,55.22293775389825],[-126.25848510893525,55.22191643511628],[-126.2636104713609,55.227478000404986],[-126.26675516179733,55.23165501871788],[-126.27189830775372,55.23614116821601],[-126.27696351425652,55.23872803453207],[-126.28373185893098,55.24132874628285],[-126.29069473694966,55.24427802930826],[-126.30282139261769,55.25032316279331],[-126.31642423919133,55.25888975553275],[-126.31978647643531,55.2622765407179],[-126.32364326275761,55.26628906764535],[-126.32341088471169,55.26926398007205],[-126.31918911842293,55.27084264608985],[-126.3173726084189,55.27215526368547],[-126.3162257879222,55.27614482804078],[-126.31597759626358,55.28032024257631],[-126.314937649276,55.283521154335276],[-126.31662976294618,55.28449337498648],[-126.32130340095364,55.287312392647955],[-126.3261727894438,55.29047115945175],[-126.33205344217308,55.29295514163278],[-126.33882703401224,55.295723107881706],[-126.3422784029016,55.300649982086945],[-126.34323608554274,55.30453547098981],[-126.3463038879192,55.307976133710376],[-126.34875844986418,55.31244870285573],[-126.35550032747963,55.31915775212475],[-126.3629576012356,55.324377203264596],[-126.36355894574798,55.324608382822774],[-126.37003960794605,55.3276622201536],[-126.3766371297657,55.329174450383135],[-126.37880576429163,55.332778305341854],[-126.37548819475083,55.33385443119613],[-126.36875392999458,55.335487096761256],[-126.36260224586447,55.33935741904388],[-126.36379135828543,55.34067091106889],[-126.36727914591775,55.342452471453974],[-126.37415266403224,55.34693837247711],[-126.38521861770703,55.35320281703035],[-126.39299179439755,55.357855139586654],[-126.4074621854034,55.36538800819727],[-126.41982041209437,55.37410891687057],[-126.41856253859662,55.38011561694338],[-126.40960334918779,55.38345114226727],[-126.39887164132298,55.382796011765414],[-126.3942719987165,55.3809471510248],[-126.37010557442264,55.369840351414844],[-126.35972172899356,55.36528373195697],[-126.3381066217918,55.36075716037307],[-126.3191529933273,55.36068159563139],[-126.31473792110359,55.36078238532992],[-126.31171169887885,55.36248319368417],[-126.30696619972701,55.36514676041777],[-126.2990094949101,55.36745951847515],[-126.29489628988013,55.36772910028482],[-126.28587104975635,55.36769632219908],[-126.27966689161978,55.36617840301623],[-126.27609998084073,55.362970118047876],[-126.27156807987953,55.35637740287333],[-126.26671714801407,55.35149634508533],[-126.2620751963053,55.35393400793996],[-126.25842641226004,55.35695176952732],[-126.25708506479664,55.35963322122604],[-126.25545778860277,55.361508950885835],[-126.25377400997755,55.36744311737099],[-126.24921667589196,55.37056099975866],[-126.24208380998907,55.3713902742755],[-126.23303771831844,55.37266170554655],[-126.2316753891117,55.37688384060951],[-126.23447893230295,55.37741614124954],[-126.24280547105329,55.37745399496218],[-126.25273486334923,55.37772099242898],[-126.25903689396606,55.37912358482996],[-126.26613906334292,55.38081084221466],[-126.27311123739044,55.38495270491725],[-126.28329169361648,55.38911383154551],[-126.28669684291015,55.38976006541925],[-126.29541024425457,55.39121799190279],[-126.30079545657156,55.39409886558793],[-126.30745294594779,55.399896982567064],[-126.3127190215942,55.404488791068964],[-126.31691068621012,55.40667316794467],[-126.32730307682577,55.410713744117416],[-126.33581202914824,55.413378862182334],[-126.34088172299145,55.417790854664354],[-126.34442299152111,55.424554103506395],[-126.34710065700091,55.4278167150892],[-126.35124572979026,55.43457810944231],[-126.35507897150532,55.44241533677319],[-126.35831123515572,55.450433360457346],[-126.3580382321912,55.45700107059876],[-126.3570014265252,55.45991569958737],[-126.35612184626342,55.46670911610791],[-126.35624931965346,55.473571344818566],[-126.36094253981024,55.476899620154676],[-126.36705702050529,55.478745330477274],[-126.37648505240065,55.481414021435576],[-126.38752976370739,55.48344988609216],[-126.39353491123119,55.48654891701123],[-126.39701917736556,55.49045303135284],[-126.40009166389487,55.4951467657711],[-126.40137502665551,55.49766015959937],[-126.40573149687155,55.505162797433286],[-126.4091793522523,55.51317893478718],[-126.4113305770006,55.51981059003921],[-126.41040826959721,55.52157855527391],[-126.40845027501756,55.52608241947249],[-126.40509058041785,55.52979342767777],[-126.39821751040157,55.53234190267614],[-126.39155830769806,55.5334110786418],[-126.38628238099913,55.53727089191578],[-126.3875445537816,55.5418451093204],[-126.39062033989364,55.54648536000599],[-126.39342637761413,55.54816091237305],[-126.3990362048423,55.551314738574085],[-126.4036237528745,55.556191767512544],[-126.40337729310717,55.56098571011619],[-126.40266276406439,55.56201830764057],[-126.40029349737813,55.5670967724373],[-126.40065839360027,55.571091400648],[-126.4028494567854,55.57372734971849],[-126.40503446565583,55.57710689512981],[-126.40600453298272,55.58105476822238],[-126.40568476595615,55.58282972294647],[-126.41111719168187,55.58420969750884],[-126.4195776253772,55.58566895415598],[-126.42843765525924,55.587359221266766],[-126.43095616453483,55.587762731705624],[-126.43930370402369,55.590296161734734],[-126.4467389768522,55.593808847251346],[-126.45758131877916,55.59995172384656],[-126.45868437174187,55.600700281529946],[-126.46864154799613,55.604892327483945],[-126.47807581430385,55.61115518537918],[-126.4812428989751,55.61899146250445],[-126.48071928280395,55.62167230414811],[-126.47765770721838,55.62555440217505],[-126.47267689173523,55.62988266201215],[-126.47102160561388,55.63485234670632],[-126.4751318334334,55.6384564653819],[-126.47986907753356,55.639612158968774],[-126.48188663636614,55.63990906472105],[-126.49046642833288,55.64067328936015],[-126.49590933980168,55.64194210090648],[-126.50740285883604,55.64522916239256],[-126.51093452073188,55.64575243346774],[-126.51557994606672,55.646047061537246],[-126.5236538708982,55.64686486015889],[-126.52737075586587,55.650074726673914],[-126.52795413394583,55.6531632824198],[-126.52813817724349,55.65630727099734],[-126.52961600648187,55.661963427981036],[-126.53119455507033,55.66722493503994],[-126.53129552097198,55.667627684643875],[-126.5324101260591,55.667282515889376],[-126.53857600110885,55.6673010837323],[-126.54767616366665,55.66629419677417],[-126.55294493538534,55.664246320987644],[-126.55700143025008,55.661907931175584],[-126.56114708814972,55.66105628511333],[-126.56902731088567,55.66204228602651],[-126.57154988555484,55.66250570920965],[-126.57538108447059,55.663885934853255],[-126.58053520006833,55.66413105364904],[-126.58446576349206,55.66607499623027],[-126.58879546527113,55.669396718506654],[-126.59292780335262,55.67192182900416],[-126.59514905820417,55.672153255328695],[-126.59828048767855,55.67238032057332],[-126.6037361479945,55.673250230474196],[-126.61009554026867,55.6754325837538],[-126.613314874085,55.678239204932034],[-126.61532589390731,55.68081870911161],[-126.61865740386797,55.68207464542492],[-126.62360673871977,55.68344792810904],[-126.62814541872402,55.686489552271276],[-126.62854336692561,55.687464163151255],[-126.63025083235695,55.69003599634379],[-126.63124685049374,55.69403595524335],[-126.63244634545178,55.69747043310618],[-126.63678895340794,55.69901649196125],[-126.64366245429518,55.70051365967739],[-126.64688620694949,55.704116847136326],[-126.65578069024211,55.70630182415733],[-126.6605392704307,55.70493301698401],[-126.66641177748672,55.70380005315333],[-126.67065820673034,55.704368860273185],[-126.67358193909301,55.70763251039748],[-126.67599703116707,55.7122607024082],[-126.67942710415885,55.716041175047415],[-126.68387203656152,55.71849897863298],[-126.68457990387184,55.718844565343154],[-126.69216551719315,55.721195387629756],[-126.69843073987181,55.72388459344283],[-126.709963872012,55.727556391940325],[-126.71856028733951,55.730697374189496],[-126.72553751106801,55.73521795977745],[-126.73363128605892,55.73836978762343],[-126.74101857928851,55.74122958398368],[-126.74587610299648,55.7450626478187],[-126.74698566211178,55.74803971768242],[-126.74738508184177,55.752723368030225],[-126.74758513514095,55.75529367009742],[-126.74768300490722,55.75752410323324],[-126.7477806049422,55.76186011616143],[-126.74807822488546,55.76695654100403],[-126.74898040485947,55.77324105647896],[-126.74887931357605,55.77523972154792],[-126.74765909989301,55.77889365041497],[-126.74491347089864,55.783121056580434],[-126.7443034703058,55.784728485492394],[-126.74420319965648,55.78529355358022],[-126.74420308706135,55.78560715259709],[-126.74419994773997,55.78666444573564],[-126.74480566024224,55.78860518496763],[-126.74672911927225,55.791299733753874],[-126.7513892787586,55.79432744130394],[-126.75605183737892,55.79775816898667],[-126.76324757095323,55.800958409031864],[-126.77024395949665,55.8027348198287],[-126.77937180923897,55.80428267277856],[-126.78840001775292,55.806511457798344],[-126.79874454218626,55.809940900233485],[-126.79945553127546,55.81006184394329],[-126.80280077705322,55.812056650384896],[-126.80696155869195,55.81702988180886],[-126.81112452465406,55.82171625125594],[-126.8182275120303,55.825370997769994],[-126.82208459394444,55.826627268255464],[-126.83111855136003,55.82776884314185],[-126.83923809479454,55.82857536416341],[-126.84167746321434,55.83120240018723],[-126.84361065560053,55.83554417271821],[-126.84523723292382,55.83754039557597],[-126.84899529783192,55.83930725759947],[-126.85153603837702,55.84067900555856],[-126.8554959045984,55.84296401481788],[-126.858853807244,55.846390948227466],[-126.86190821453938,55.85193449448654],[-126.86333256397259,55.85421861172827],[-126.86729936390716,55.85718420939971],[-126.87167406542979,55.86101602963261],[-126.87289719079135,55.86330143758007],[-126.87432703008751,55.86764628526061],[-126.87646524537794,55.87056152294382],[-126.88094346613877,55.873765110684005],[-126.88481044185404,55.87673089327813],[-126.88583626284127,55.880388514024524],[-126.88645363970393,55.88466726093278],[-126.88717281405052,55.88780732502359],[-126.88880424446455,55.89089618431855],[-126.89359491691657,55.895638368058044],[-126.89746326663952,55.898263297547025],[-126.90255538670947,55.90089731767804],[-126.90510623879216,55.904427458355904],[-126.90714987496939,55.90757588770713],[-126.91387758455916,55.91362066480969],[-126.9165296773372,55.91642406796971],[-126.91816905900609,55.920310031125034],[-126.91624922229458,55.92408736364043],[-126.90943814052106,55.92632281546877],[-126.90201395612429,55.927639327488876],[-126.89927572833311,55.93135053655902],[-126.89541418669319,55.93307142687355],[-126.87283458313672,55.94039738934935],[-126.87131302940853,55.94137559639876],[-126.86633982934805,55.95126628018112],[-126.87082892349953,55.95800075165331],[-126.87674759592929,55.96280764439006],[-126.88541003015168,55.96542668123684],[-126.89070721396932,55.9665723898353],[-126.90160654430719,55.96758857037001],[-126.9083316209909,55.96861586208432],[-126.91333178080961,55.97066779022376],[-126.9223010716992,55.97339862262633],[-126.93443502576147,55.97647294924164],[-126.93922383590979,55.97738742103921],[-126.9498278842772,55.97909165709659],[-126.95717383172239,55.98170675620877],[-126.9612579668612,55.98422074313886],[-126.95871019399435,55.984338589375675],[-126.95137679373514,55.98451924202552],[-126.94180046723797,55.98544196173877],[-126.93538722886686,55.987102341383405],[-126.93039896892752,55.9884204051951],[-126.9236756745884,55.989741951797924],[-126.91899075268907,55.99049282748419],[-126.91827731346488,55.99055175677921],[-126.91328860401931,55.99180642020541],[-126.91329270401762,55.994154106133266],[-126.91391082390021,55.9956998664979],[-126.91720360080627,56.00004000534153],[-126.91977450902856,56.00207341978249],[-126.92056470154358,56.00361790755975],[-126.92234257838938,56.00676816293932],[-126.92477033579775,56.00797813122514],[-126.92830758398473,56.00976240001316],[-126.93021770354791,56.01149577985165],[-126.93178376556706,56.015328495079466],[-126.93399896000763,56.01698789851122],[-126.93539869485421,56.01865327510117],[-126.93697128383702,56.022261871453225],[-126.93467911712399,56.025047671980694],[-126.93331663871339,56.0272172632909],[-126.93513141729089,56.02835986908974],[-126.93817222037788,56.02958300951759],[-126.94254028699758,56.030742471913904],[-126.946491566991,56.03253215699723],[-126.94952080120704,56.03437342282378],[-126.95224511911204,56.03627067124668],[-126.95518606021311,56.03743143802972],[-126.95741069627378,56.038642343282355],[-126.95900602437975,56.040879512802505],[-126.9605901179423,56.043968043162046],[-126.96187398035032,56.04648532853114],[-126.96387667623773,56.04895234919096],[-126.96677787531118,56.052622247345916],[-126.96834696660443,56.05657107474972],[-126.9698303106058,56.05959755724845],[-126.97254175403572,56.06253398837159],[-126.97666710329909,56.06637354327011],[-126.98040566127713,56.06890763913916],[-126.98425453281892,56.07080453874697],[-126.9884961352713,56.074024519215506],[-126.99112137052474,56.07603826073295],[-126.99601907696913,56.07634947849839],[-127.00019974510255,56.07671095572138],[-127.00150798736713,56.07802691038991],[-127.00350082755993,56.08140748276384],[-127.00568983114727,56.085127004942684],[-127.00552216910212,56.0895193158019],[-127.00149552524779,56.09230216884727],[-126.99747103812074,56.09491461296861],[-126.99642637940858,56.09627594093982],[-126.99412006956595,56.10010249632224],[-126.99344612070091,56.10391627873755],[-126.99423706128661,56.105693386585294],[-126.99469174835568,56.109462515957034],[-126.99526880773935,56.11181481397461],[-126.99617617769006,56.112730725207776],[-126.9976675359996,56.11530885068397],[-127.00090646580605,56.117604395544674],[-127.00610370897192,56.118710470926366],[-127.00849202337294,56.12300196284528],[-127.01025728469607,56.12815865416897],[-127.00868531974479,56.130662368707924],[-127.00628408873953,56.13396121871943],[-127.00612845054938,56.137331917921536],[-127.00632715868748,56.137733609283046],[-127.0063230419146,56.137966637243956],[-127.00401742452206,56.141443920480924],[-127.0006957202999,56.14461550129055],[-126.99543301551502,56.147622948942136],[-126.98779290533312,56.151930107897925],[-126.98363028859927,56.15619208299295],[-126.98356201317497,56.16047615551112],[-126.98278035624254,56.16470300807385],[-126.9773366383608,56.165703739735385],[-126.9758521229122,56.166593332547656],[-126.97299628535431,56.168308871786394],[-126.9709109516459,56.17064577846454],[-126.96556034111873,56.17215609194984],[-126.95912733872248,56.17115617403183],[-126.95576557907475,56.169944753504836],[-126.94955167585843,56.16813619153347],[-126.94600636855374,56.16589533062157],[-126.94340768324506,56.16211498333016],[-126.9388213938641,56.16083153681996],[-126.93145547212451,56.16056298112321],[-126.92993611242342,56.159758598451546],[-126.92840873724937,56.15912452147325],[-126.92368629681948,56.15406883011269],[-126.9222088417758,56.15069217320206],[-126.91878308397393,56.14765217649498],[-126.91227934934673,56.14498366311183],[-126.90761974456754,56.14240027321754],[-126.90454465844873,56.136955818211085],[-126.90329681438614,56.13237655234313],[-126.90167649469807,56.13140230725146],[-126.89867045670864,56.127892862683716],[-126.89579865028186,56.122688758236805],[-126.89474159752973,56.118905639262216],[-126.89256933767746,56.114610599578135],[-126.888545223761,56.110875100046954],[-126.88662751572828,56.109607040619046],[-126.87973037740159,56.10666191026144],[-126.8754927213679,56.10355477107556],[-126.87466795872238,56.09847058384989],[-126.87361214322158,56.09480382611915],[-126.87032043880234,56.09056095725928],[-126.86541446776074,56.08504759102138],[-126.8652169938398,56.0847621839695],[-126.8646722498109,56.081217354053315],[-126.86614182230878,56.07894919817381],[-126.8657513226232,56.078028881055324],[-126.86592661530926,56.0741476071239],[-126.8652560623027,56.07174168575756],[-126.86378377483854,56.068597458053596],[-126.86066505949633,56.06600202798251],[-126.86027399776559,56.06509066469236],[-126.85992363615554,56.061894002375276],[-126.85671669469549,56.05890480598163],[-126.85176704769778,56.05607955978507],[-126.84867373593536,56.0522918989125],[-126.84649511309635,56.048793788858596],[-126.84329287375051,56.04540997508067],[-126.8386785887429,56.04121102515193],[-126.83412807503863,56.039126240307915],[-126.8307307199644,56.035456670507166],[-126.82906337611699,56.03201767894495],[-126.82698752297419,56.028635096121704],[-126.82339783751439,56.024437924398065],[-126.81743407084434,56.0216090289421],[-126.81289470709442,56.01912021746837],[-126.80905367142695,56.01744222176182],[-126.80475997097916,56.01793545994719],[-126.79903003902244,56.01875122031983],[-126.79247267146252,56.02019913209144],[-126.78614763450996,56.02022052387901],[-126.78245881997046,56.02104976281109],[-126.78131827437782,56.02195284811297],[-126.7812864504899,56.023440509212115],[-126.77912862354152,56.024224379958184],[-126.7743592834443,56.023115548991896],[-126.76968026259352,56.02240026075974],[-126.76608061410813,56.02386468454678],[-126.76609690913467,56.02786102411207],[-126.76139250360052,56.03314024122324],[-126.75540142816087,56.03664377460877],[-126.7547356768328,56.03904022339085],[-126.75517125006739,56.04252332947039],[-126.75602926712334,56.045278111786814],[-126.75830958289812,56.04848140722469],[-126.7551359422705,56.048921456935446],[-126.75176733144178,56.04884286139267],[-126.74929432490232,56.04996858997327],[-126.74280804024902,56.04787402955818],[-126.74237532668819,56.044328139523486],[-126.74090315875742,56.04157685433884],[-126.7399543006678,56.038311753467475],[-126.74152728802311,56.03638500868975],[-126.74084029018869,56.035179333113064],[-126.74081202137494,56.031747583536],[-126.73873705552984,56.02870410306643],[-126.73383832227184,56.0242253268803],[-126.73201377045503,56.02358173438976],[-126.72408836907857,56.02227412292056],[-126.7160156709661,56.022785841568286],[-126.71536261459353,56.02467123711799],[-126.7153253216906,56.026382913119036],[-126.70969587479571,56.0270865345028],[-126.70151168771287,56.02811766001623],[-126.69345269163502,56.02806334788733],[-126.68919772443218,56.02666178276112],[-126.6862755237416,56.02520808036601],[-126.68504955762853,56.02525950139579],[-126.67789125599154,56.02595202666962],[-126.67104529490639,56.02647224798398],[-126.66947964499367,56.028003795665974],[-126.67085414763764,56.0302993947745],[-126.6714874005819,56.03367416485712],[-126.66606115502584,56.034374770122746],[-126.66137647214875,56.03405874603939],[-126.6556969872982,56.032538020054446],[-126.64904612435456,56.03339654114057],[-126.64767398073184,56.035213565087986],[-126.64825231025843,56.03670701964894],[-126.64938599566183,56.04042880378849],[-126.64605729251153,56.042909916038994],[-126.64314272321312,56.04529027993412],[-126.63946601124321,56.049547166068116],[-126.63684661651058,56.052329125422204],[-126.6324205986131,56.05377595195463],[-126.62606756788556,56.054649694820306],[-126.62288845302318,56.0553104728806],[-126.62294231373738,56.057191922072384],[-126.6249460337619,56.05875018210431],[-126.62842663675785,56.062541260012146],[-126.62622492786303,56.064810187169286],[-126.62258794190014,56.067354930291835],[-126.62223111260882,56.06934592498821],[-126.62347675549124,56.07267316103775],[-126.62355536241277,56.074080708852456],[-126.62355391760877,56.07411655832037],[-126.62353289920279,56.074251070323626],[-126.62349845124994,56.07442597086081],[-126.62347750336926,56.07456496282075],[-126.6234751097378,56.07466802142612],[-126.62347853366985,56.07482033480137],[-126.62348569403741,56.075018552933464],[-126.62352604379477,56.07521660835077],[-126.62361861497008,56.07540768724485],[-126.62363097039206,56.07542554785507],[-126.62372274646776,56.07556734728746],[-126.62379892719508,56.0756767409849],[-126.62386173702144,56.07576715895966],[-126.62391758577347,56.07586321143624],[-126.62397398457172,56.07599398352767],[-126.62402048332972,56.07613488485962],[-126.62404869691173,56.07626467515843],[-126.62407470354334,56.07638215545806],[-126.62408669709401,56.07650418482888],[-126.62405116461473,56.07667461067827],[-126.6239540742321,56.076896862044116],[-126.62386157093934,56.077218777586864],[-126.62389397925206,56.077740573957584],[-126.62401526167466,56.078219371484074],[-126.62408841748258,56.078391504252686],[-126.62411845447728,56.07844624058926],[-126.62416121910687,56.078541237204306],[-126.62419793143766,56.07863626351437],[-126.62425004469378,56.0787502555236],[-126.62435517975489,56.07897151457707],[-126.62447678772261,56.07921733436957],[-126.62461989412856,56.07935888135534],[-126.62481551541295,56.07944864667663],[-126.62492972499145,56.07954441214492],[-126.62494205806071,56.0797515657671],[-126.62493668182461,56.08017386121654],[-126.62492950640409,56.080609606496516],[-126.62492618425983,56.08084371897834],[-126.62492377133762,56.08107222662474],[-126.6249174709997,56.08143628277577],[-126.6249120975891,56.08179585410828],[-126.62489947252143,56.0822047445418],[-126.6248737411761,56.08261257934455],[-126.62486344170287,56.08278848220482],[-126.62486164251041,56.08280193198132],[-126.62485489154408,56.08281988639709],[-126.62485912939775,56.08283330651552],[-126.62487284110276,56.082873561966935],[-126.62489073406581,56.08298660195808],[-126.62489451947427,56.083161315567445],[-126.624892786297,56.08330581418478],[-126.62473415837272,56.08345556383229],[-126.62433833348241,56.083623278967714],[-126.62398197271861,56.083741515822126],[-126.62354164389761,56.08383216137196],[-126.62294630302975,56.08391908434876],[-126.62256024477603,56.08406882483282],[-126.62228323012054,56.08436924129337],[-126.62193654400068,56.08465543682034],[-126.62141046869381,56.08486074218039],[-126.62079997025609,56.08507317788082],[-126.62047898845799,56.08520243297966],[-126.62032401900223,56.08526703329703],[-126.62014596647039,56.085335106200375],[-126.62006793810723,56.085364608632695],[-126.62007110590152,56.08537355381856],[-126.62015614965686,56.08547058605497],[-126.62030607666085,56.08566138845326],[-126.62037731476354,56.08577528906153],[-126.62037752640539,56.08578872897383],[-126.6202707311738,56.08584525371689],[-126.61996510914061,56.085992353876335],[-126.61962231409544,56.08614299461451],[-126.61939198359373,56.086214681336735],[-126.61920940720549,56.086251412746705],[-126.61899749998682,56.086279325996834],[-126.61878961603439,56.08630609924277],[-126.61866113076114,56.08632688561943],[-126.61856570338314,56.086338550486694],[-126.6184241268973,56.086358280203655],[-126.61825535544911,56.08637702186415],[-126.61820229648299,56.08639520099706],[-126.61813023187763,56.08642019293648],[-126.61808970827619,56.08653127763763],[-126.61809294600396,56.08654470284965],[-126.61812970733102,56.08670693563579],[-126.61825822564539,56.08688104335423],[-126.61842728991807,56.08700903060978],[-126.61856850776934,56.08709346998372],[-126.61868014889589,56.08715341132047],[-126.61875010232706,56.087186673446794],[-126.6188058959828,56.08721440402247],[-126.61894729284641,56.08731116298918],[-126.61913320119044,56.08748611071437],[-126.61924182260789,56.087609910792125],[-126.61926452455093,56.087645642815396],[-126.61928939759501,56.08769144497965],[-126.61934631928119,56.08779085491604],[-126.61942244105072,56.08789577173867],[-126.61950386852155,56.08801858395492],[-126.61974668635042,56.08810028709257],[-126.62003868151317,56.088172789448436],[-126.62000765095964,56.08831183056888],[-126.6198689266649,56.08838531180008],[-126.61985296656938,56.08839435020692],[-126.61989351889072,56.08841319395715],[-126.61993601338641,56.08842754791104],[-126.61995628076617,56.08843640977774],[-126.61997261101145,56.08845089122798],[-126.62001416171734,56.08846973007498],[-126.62007921846731,56.08851085592736],[-126.62009999719676,56.088552197592826],[-126.6200904276166,56.0885836064745],[-126.62010387046618,56.08860594254253],[-126.62012527729561,56.0886237594675],[-126.62013348656454,56.08863380016718],[-126.6201469999819,56.088660616206624],[-126.62020037755066,56.088791405327214],[-126.62025669204823,56.08904426883144],[-126.62020781882282,56.089264042805205],[-126.62010424159378,56.08939671719082],[-126.62003827173059,56.089490005396854],[-126.61999121868901,56.08956976041624],[-126.61992173248628,56.08969442794821],[-126.61985826786692,56.089819066105505],[-126.61982293788397,56.0898763623412],[-126.61978426196337,56.08991239334334],[-126.61970728144057,56.09000909527091],[-126.6196218870747,56.09014728110769],[-126.61954123253504,56.09026640244152],[-126.61945535997592,56.09037322825031],[-126.6194338785978,56.090479740490764],[-126.61950987057476,56.09063954196734],[-126.61959423281911,56.09082058417695],[-126.61962662642786,56.090960436487975],[-126.61962329386131,56.09106798046802],[-126.61958968304238,56.091171191595755],[-126.61953873056882,56.091322650645125],[-126.61950861173167,56.09151993154759],[-126.61948741735475,56.091708208351235],[-126.6194681651349,56.09189199538231],[-126.61948179770795,56.092054340758594],[-126.61954237154801,56.09219405593551],[-126.61963151314123,56.09235827374573],[-126.61972265070293,56.09252136170286],[-126.619797051739,56.092644208214],[-126.61984570283201,56.09273021745997],[-126.61987065026472,56.09278049957692],[-126.6199142775783,56.092866533279604],[-126.6199596006441,56.09293239723989],[-126.62001421901739,56.09301277694761],[-126.62011384534088,56.09313998069635],[-126.62015899271564,56.09319464463495],[-126.62017446769396,56.093218090916594],[-126.62023477437023,56.093277161260936],[-126.62034493421002,56.093369590960634],[-126.6204296415303,56.093443103303635],[-126.62048068723331,56.09348877771933],[-126.62051750161487,56.09352556087182],[-126.62056739185947,56.09356228023556],[-126.62062766281281,56.09361799033494],[-126.620657335995,56.09364920787579],[-126.62067065735403,56.093663703953894],[-126.6207042152197,56.09368594187765],[-126.62079282614418,56.09375159437544],[-126.62090275910053,56.093829463661464],[-126.62094855363289,56.0938617225432],[-126.62096877106482,56.09386722427833],[-126.62100803095575,56.093867032653485],[-126.62107965798391,56.09387788383665],[-126.62125750115078,56.09392181882935],[-126.62148115594469,56.093998012187164],[-126.62162763264953,56.0940320191438],[-126.62170524430957,56.094038360408],[-126.62175248691885,56.09403476929951],[-126.62179988707057,56.09404013806137],[-126.62187769486911,56.094059919249034],[-126.62195975692649,56.09409312058017],[-126.62204085767014,56.094129686806276],[-126.62215339860012,56.094181780394685],[-126.62230851065767,56.09425158698483],[-126.62251654539094,56.0943592172605],[-126.62273529956907,56.09450711771082],[-126.6229181603641,56.09467759519323],[-126.62305584539597,56.094855014163954],[-126.62316601016803,56.09501016614126],[-126.62324898076368,56.09510160652608],[-126.62333355542813,56.09516615701319],[-126.62349736528817,56.09527736266545],[-126.62366406173639,56.0953795933022],[-126.62376869667506,56.09543956484799],[-126.62385218740614,56.095499639987544],[-126.62389504581402,56.09553639257866],[-126.62409037773993,56.09553991493724],[-126.62448501442219,56.09554357900602],[-126.62470147488203,56.09554699672188],[-126.62472363564409,56.09554800799592],[-126.62475663953056,56.09566097435195],[-126.62475841064477,56.09589954341093],[-126.62467925570532,56.096050023241304],[-126.62461043604058,56.09608956402576],[-126.62461079127691,56.09611196395123],[-126.62463719156285,56.0961263954314],[-126.62465853347753,56.09613973165689],[-126.62468910197373,56.09616310333084],[-126.62474900965488,56.09619529160792],[-126.62482495230184,56.09622404086353],[-126.62487759327496,56.09624282376407],[-126.62495886110008,56.09628946812549],[-126.62509004324299,56.09637282998431],[-126.62517231005793,56.09641946930628],[-126.62520884709643,56.096438331198776],[-126.62530010982863,56.09648044590148],[-126.62541287352369,56.09654485653184],[-126.62543970124806,56.09658616776017],[-126.62544221229986,56.09661751776299],[-126.62552779229051,56.09668206191884],[-126.62565874733765,56.09675198332538],[-126.6257489416203,56.09678962263504],[-126.62586135267333,56.09683275302246],[-126.62609085845872,56.09689546869405],[-126.62639458313336,56.09694213741866],[-126.62670787442025,56.09702012065832],[-126.62691484817199,56.097122148786276],[-126.62694239100912,56.09720825956228],[-126.62681141689552,56.097327633776736],[-126.62664892744101,56.09749084636225],[-126.62669558590089,56.09763958778125],[-126.62695860906636,56.09772117828339],[-126.62717575772692,56.09776603158797],[-126.62723832475118,56.09777580393511],[-126.62723666838313,56.097798213790725],[-126.62721650608074,56.097986487387004],[-126.62715923576317,56.09830935406294],[-126.62708874235152,56.09849675565125],[-126.62704226338163,56.09854962869092],[-126.62701578929492,56.09859344245845],[-126.62700916314779,56.09862035714593],[-126.62698960216449,56.09865629624918],[-126.62693644144565,56.098731603873134],[-126.62687702709614,56.09879350126654],[-126.62676539495344,56.09886349644809],[-126.62661880725322,56.0989504649508],[-126.62653190249736,56.09905618087134],[-126.62647434073716,56.09917183303507],[-126.62643019229301,56.099243735827024],[-126.62641089768844,56.099296474809236],[-126.6264021143563,56.099377164171074],[-126.6264072816371,56.09951266902829],[-126.62642310118262,56.09968396417786],[-126.62642990767375,56.09979593919047],[-126.6264327046759,56.09997177880742],[-126.62642409859245,56.09999982330718],[-126.62634852256093,56.10024885428605],[-126.62613387023671,56.10036079913702],[-126.62582839272861,56.10033317967574],[-126.62544040658732,56.1003070851364],[-126.62507622293298,56.10032231564888],[-126.62482137614516,56.10037621127512],[-126.62468849985282,56.10044070852103],[-126.62456821389172,56.100600351080196],[-126.62441149741267,56.10100211074375],[-126.62433920095908,56.10158490996363],[-126.62425776327193,56.10216327375595],[-126.62409268222126,56.1025460327798],[-126.62392180157443,56.102754086627215],[-126.62372955607744,56.102947683850836],[-126.6235124824086,56.10322652899138],[-126.62334070114734,56.10369556660976],[-126.62326729227415,56.1043366156455],[-126.62325875724558,56.10500646933946],[-126.62324892185582,56.10565728808178],[-126.62324486087807,56.10629127738716],[-126.62327403785403,56.10686237915656],[-126.62335907472158,56.10727303489032],[-126.62344140009394,56.10751233045544],[-126.62346540230854,56.10775639206637],[-126.62343492455186,56.108056724982916],[-126.62345867476333,56.108348951676895],[-126.62356359676677,56.108616138789735],[-126.62365343096137,56.10882067482213],[-126.62366913215102,56.10904909595618],[-126.62358715929108,56.1092768756079],[-126.62351023893069,56.10937918052742],[-126.62344914411344,56.10946348646373],[-126.6234160184651,56.10966078435108],[-126.62346308304272,56.10989913275321],[-126.62351222299581,56.11001314111228],[-126.62353091424886,56.11004889239498],[-126.62360801266296,56.110212047675915],[-126.62374271769883,56.11051605187324],[-126.62386584240451,56.11078763014126],[-126.62396200849412,56.111010056547215],[-126.62407421041556,56.111290648939615],[-126.62419020061385,56.111747076788255],[-126.62426191722044,56.1123325321193],[-126.62430357665714,56.11280052548957],[-126.62432685922363,56.112998667279435],[-126.62432475391783,56.11305692230442],[-126.6243281380447,56.11307930751362],[-126.62440972831546,56.11308114748248],[-126.62465062799694,56.11309452670561],[-126.6250057139566,56.11313310693562],[-126.62536007025963,56.113189611212945],[-126.62568564342357,56.113272018080615],[-126.6260061912312,56.11335444883961],[-126.62629328893303,56.11342360229699],[-126.62649653468706,56.113476366481464],[-126.62661597966708,56.1135149817207],[-126.62667871420918,56.113533714424506],[-126.62678628999568,56.11358582903195],[-126.62703724713671,56.11366187933165],[-126.6272797390791,56.113712208765165],[-126.62750034618655,56.113779446994236],[-126.62779037442134,56.113905707318764],[-126.62800437154144,56.113999859479044],[-126.62816762959919,56.114070739770135],[-126.62833556394307,56.114307370304],[-126.62866035107874,56.11471796039297],[-126.6292358978204,56.115128430551394],[-126.62960273882763,56.115459284017035],[-126.6296553464181,56.115600155421],[-126.62960145141265,56.11563066448255],[-126.62949061414263,56.11569057751382],[-126.62943571992676,56.1157210914461],[-126.62940018366129,56.115766070842575],[-126.62932000385429,56.115853834446064],[-126.62925826692312,56.11589782323694],[-126.62917148423016,56.115887051269894],[-126.6289970631883,56.11587447212472],[-126.6288527114681,56.11585390355624],[-126.62879113038564,56.11584412692422],[-126.62878746010354,56.11586654689684],[-126.62878111849069,56.115911381907964],[-126.62873750724789,56.1159552809115],[-126.6286835394983,56.11598130957306],[-126.62864828390482,56.11598036359215],[-126.62853113382421,56.11602350557575],[-126.6283785154885,56.11611498650146],[-126.62828899149295,56.11618487410156],[-126.62822128221578,56.11623337223223],[-126.62813844140057,56.11628082490008],[-126.62807354648794,56.116315867957994],[-126.62804561766495,56.116332807135265],[-126.62801863418929,56.11634638136587],[-126.6279836641555,56.116363355266465],[-126.62793962274615,56.11638037390492],[-126.6278706832478,56.11641543681009],[-126.62780159898317,56.116440419561386],[-126.62775244274049,56.11645298299034],[-126.62771617165672,56.11645204175683],[-126.62761974638525,56.116468198487105],[-126.627403884654,56.11650958587969],[-126.62718820264442,56.11656329303365],[-126.62703579311443,56.11660548725523],[-126.62688835516592,56.11664317644194],[-126.62667894575283,56.11671141303798],[-126.62641426326556,56.11678664183818],[-126.62623169417877,56.1168323437729],[-126.62611131206911,56.116862058310595],[-126.62595681489859,56.11689978113259],[-126.62584030030517,56.11691939556593],[-126.62570371587094,56.11694358890866],[-126.6254346636646,56.116997555388345],[-126.62511493509827,56.117094333655736],[-126.62488673207412,56.11718394132376],[-126.62474381748393,56.11725408848301],[-126.6246069430662,56.11732308575306],[-126.62452805275635,56.11736603630607],[-126.62450028157723,56.11739305475724],[-126.62444263615154,56.11744150149667],[-126.62438181757297,56.117479882943634],[-126.62434786173277,56.11749797095782],[-126.6243048164874,56.117514983446384],[-126.62420881345359,56.11755801772217],[-126.62408466569208,56.11760455018049],[-126.62395247886883,56.117652242011616],[-126.62381243043143,56.11771229324291],[-126.62369648022286,56.11776774588864],[-126.62359350544997,56.11781529422351],[-126.62344222814086,56.11786643931143],[-126.62325216147691,56.11794801661911],[-126.62307750958324,56.11804855976519],[-126.62288914921616,56.118174931868545],[-126.6227070057036,56.11831135411485],[-126.62260192017146,56.118417156770946],[-126.62252079162757,56.118509401086584],[-126.62242959180705,56.11860169459308],[-126.62231140449673,56.118707561070075],[-126.62219323266417,56.11881342736267],[-126.6221465107063,56.11885285893682],[-126.62209087444074,56.11890129479411],[-126.62196564367618,56.119007195370784],[-126.62186811567943,56.11908159791588],[-126.62183162176636,56.1191299401536],[-126.62183361163169,56.11919265561737],[-126.62186174930228,56.11925188308352],[-126.62190728296031,56.119328947048444],[-126.6219582867128,56.11943398659354],[-126.6219828741288,56.11952347388795],[-126.62198116076091,56.11954252383521],[-126.62197637459668,56.11962207380373],[-126.62198082139314,56.11971277959449],[-126.62204607343034,56.119762864961544],[-126.62216230738181,56.11978805911645],[-126.62225139428334,56.11981674613373],[-126.62228190891223,56.11983563856351],[-126.62230427806215,56.11984897033785],[-126.62233579180648,56.11986785787141],[-126.62237120851447,56.119877765573925],[-126.62243120512036,56.11991443532675],[-126.6225108589262,56.11998349163246],[-126.62258700366704,56.120021202447134],[-126.62265657588452,56.120026462664754],[-126.6227173755418,56.12004968724281],[-126.6227876904921,56.120100867572205],[-126.62286282053925,56.1201385831897],[-126.62296714943936,56.120176155889915],[-126.62311828365573,56.12024262185145],[-126.62322613906333,56.12031153969323],[-126.62327405151613,56.12034826821656],[-126.62332061025889,56.120362601485056],[-126.62337401418621,56.120363460100805],[-126.62343749108727,56.120365389461114],[-126.62352831062378,56.12037614562464],[-126.62367403014635,56.12041911549873],[-126.62385652171058,56.12049438773103],[-126.62398107924786,56.120600186188305],[-126.62405864716476,56.12072749664891],[-126.62413743234428,56.120805516986145],[-126.62422853728108,56.12083419275599],[-126.62430525806012,56.12084501750022],[-126.6243596617531,56.12084587080334],[-126.62440716561528,56.1208557186726],[-126.62444256761914,56.1208656258816],[-126.62454000014147,56.12091219189406],[-126.62472803719572,56.12101879833093],[-126.62495213560773,56.121176751804434],[-126.62512489821586,56.12133719716193],[-126.62519347112247,56.121405186176524],[-126.6252017596814,56.12141970669602],[-126.62519808683497,56.121442126611456],[-126.62517380698144,56.1214993706316],[-126.625145674609,56.12156671441084],[-126.62513825766725,56.12160707421423],[-126.62514809680498,56.121656310040414],[-126.62515750610177,56.121741390988184],[-126.62516866294328,56.12180966194517],[-126.62518167406247,56.121867842950465],[-126.62521167174783,56.1219808251567],[-126.62525772831621,56.1221530934932],[-126.62530052436395,56.122310816612895],[-126.62532346436107,56.12242383347714],[-126.62534194698117,56.122508869874544],[-126.62537850742041,56.12259157728815],[-126.6254652116682,56.12272332252866],[-126.62556623088253,56.12286843852134],[-126.62564042266895,56.122973362867064],[-126.62569072722795,56.123032480683555],[-126.62572181577983,56.12308721254257],[-126.62575096123321,56.1231464343244],[-126.62576714748101,56.123214680553346],[-126.62576541601457,56.123295335889516],[-126.62577511195381,56.123398336961074],[-126.62580259945247,56.123479968786214],[-126.62581921351686,56.12351124978257],[-126.6258174127895,56.12352469977269],[-126.6258182854088,56.123579580135605],[-126.62581883729106,56.12367814578054],[-126.62582796357805,56.12374530662287],[-126.62584078040913,56.12379116752008],[-126.62585897983098,56.12385828376511],[-126.6258698356143,56.1239713600078],[-126.6258611169065,56.12405653009564],[-126.62580310532628,56.124145302757405],[-126.6256856226481,56.12429597289317],[-126.62555014949703,56.12445457198039],[-126.62543901175535,56.124560406911115],[-126.62534363341594,56.12464376244003],[-126.62524925386059,56.12472711299339],[-126.62516195049112,56.12481154882952],[-126.62507880026548,56.12490380488553],[-126.62496197216528,56.12503206924905],[-126.62483909976062,56.1251603631695],[-126.62475480660723,56.125243663863316],[-126.6246723870664,56.1253191146416],[-126.62458413526372,56.125406915027206],[-126.62450183945771,56.1254902057583],[-126.6244225198556,56.12557012155505],[-126.62437192129839,56.12561853379221],[-126.62433713854543,56.12564894693037],[-126.62428438311278,56.12568840894408],[-126.6242097356996,56.12574589978985],[-126.62409313613799,56.12582487804103],[-126.62394758338337,56.12592079950187],[-126.62382829019091,56.12602107252814],[-126.62373313565536,56.126118987009896],[-126.62368287440768,56.12618979923794],[-126.62366659282469,56.12624252348677],[-126.62362052017231,56.126323396038515],[-126.62355248053943,56.126415577109505],[-126.62349474580232,56.12652338902878],[-126.62347549925104,56.12664333352955],[-126.62346691271495,56.12680130909979],[-126.62346292147578,56.12699398515591],[-126.62346546837942,56.127027575567055],[-126.62304240020434,56.12702964634746],[-126.60271189982407,56.127127500497686],[-126.60000042709856,56.13250555630207],[-126.59186445852556,56.14863270844461],[-126.59185857988156,56.148643936763506],[-126.60000012152531,56.153168033674326],[-126.60091615490299,56.15367672452053],[-126.60743870723385,56.16492751996414],[-126.60302344126039,56.17244314929009],[-126.60000015574035,56.173455435018724],[-126.56428289118715,56.18541106212802],[-126.56424558568776,56.18548291445319],[-126.56411938416309,56.18568733343193],[-126.56398056109221,56.18585596448657],[-126.56389492759287,56.185934751125785],[-126.56367510737745,56.186083577951095],[-126.56330944664234,56.18626441188712],[-126.56295272168428,56.186293989996166],[-126.56262237015214,56.186333531771695],[-126.56256293727144,56.186339394539],[-126.56240620262712,56.186526024714915],[-126.562352991632,56.186614748347445],[-126.56240601442123,56.186794852812234],[-126.56252514073336,56.18694106228529],[-126.56251697622352,56.18707551195323],[-126.56248293178287,56.187093583940396],[-126.56209651731984,56.187094167619485],[-126.56183339907243,56.18717933563144],[-126.56181386251114,56.1872242262523],[-126.56185074188942,56.18740440210225],[-126.56187487462617,56.18753982955958],[-126.5617756136612,56.18758283118759],[-126.56175856697187,56.18759074707734],[-126.56166257278181,56.1875799687579],[-126.56136093907169,56.18751184981581],[-126.56116314467705,56.18757992716591],[-126.56101707523693,56.18759513131873],[-126.56100002838947,56.187603047107075],[-126.56098225256424,56.187630008035484],[-126.56099512647693,56.18768371686956],[-126.56120875516122,56.18787655664856],[-126.56131350004483,56.18800490877227],[-126.5613213452376,56.18813032702079],[-126.56126549485498,56.18824706470679],[-126.56106771273643,56.188315141857636],[-126.56089034106311,56.188329363454194],[-126.56086989780371,56.18838209873063],[-126.5609142152494,56.18844687044029],[-126.56117879723824,56.18860476268286],[-126.56144325332735,56.188753694034624],[-126.56177643665144,56.188840715831624],[-126.56193113444093,56.18893412391237],[-126.56196638259264,56.18914118979911],[-126.5620542302699,56.18928641758099],[-126.56183538517435,56.18943523702113],[-126.56173183530416,56.189532023030175],[-126.56178500330314,56.18972220835979],[-126.56205186321067,56.18982632337063],[-126.56237544667482,56.18980585495011],[-126.5625555867096,56.18977257714015],[-126.56290883736442,56.18977997937367],[-126.56309029741843,56.189980799039404],[-126.5628085137939,56.190101895179936],[-126.56276968057303,56.190208477488504],[-126.56262108031152,56.19025953830875],[-126.56226606397009,56.190270064885496],[-126.5619212890491,56.190362313757575],[-126.56185595650925,56.19037940332292],[-126.56148466784973,56.190381038484404],[-126.5612927778931,56.190368441765926],[-126.56104193131459,56.190255293773525],[-126.56089496278277,56.190279462633995],[-126.56096163578535,56.190496471717964],[-126.56102458984284,56.190524197680894],[-126.56105362382205,56.19057895560205],[-126.56104031142524,56.19077727455864],[-126.56101182455971,56.19097342004823],[-126.56099417514862,56.191009341374325],[-126.56061294641233,56.191163353381945],[-126.56052907283876,56.191225328378444],[-126.56052656533475,56.19126118309192],[-126.56058863111802,56.191297874109885],[-126.56092261131487,56.191368093076264],[-126.56105015634868,56.19139665506758],[-126.56135020145527,56.191492784860685],[-126.56151941837611,56.19161301245184],[-126.56144742023059,56.191728701335826],[-126.56121239963497,56.191876470870206],[-126.56107755557039,56.19197227398913],[-126.5609369351187,56.19215883175462],[-126.56088018887468,56.1922834141791],[-126.5610384222581,56.192340964261085],[-126.56140884042743,56.19234829523869],[-126.56160086816388,56.19236985215686],[-126.56159836156488,56.192405706907564],[-126.56149567615155,56.192493528066564],[-126.56113083483294,56.19266539137079],[-126.56079108323688,56.19268592764041],[-126.56040199421373,56.192714520605065],[-126.56004355770632,56.192769860573456],[-126.55973358408124,56.19282722709025],[-126.5593615102597,56.1928467812717],[-126.55906693312414,56.19292200049416],[-126.55875027059624,56.193076844022436],[-126.55871143935377,56.19318454526702],[-126.55878979400259,56.19323124688428],[-126.55888152896947,56.193295811683264],[-126.55923593928695,56.19331105996782],[-126.55940930153197,56.193368545766994],[-126.55948414783954,56.19345110607368],[-126.55946649591881,56.193487027223625],[-126.55911766926341,56.193650973695966],[-126.55901422907628,56.193756718031835],[-126.55901717725719,56.19396392664062],[-126.55921628921335,56.19412883105344],[-126.55924281447173,56.19421944419459],[-126.55884300515723,56.1944183370709],[-126.55881780826286,56.194561822395315],[-126.55880088539185,56.19457869828654],[-126.55859728561688,56.19473752655815],[-126.558576979482,56.194799221906116],[-126.55870987848688,56.19499129992511],[-126.55884352508433,56.19516433256255],[-126.55894589994183,56.195337502117056],[-126.55914338299324,56.195529296711996],[-126.5592447429773,56.19570247051055],[-126.55937852192773,56.19588446301562],[-126.55939761752566,56.19609160098561],[-126.55948548719893,56.1962379509844],[-126.55973457253171,56.19636791194685],[-126.55973828655134,56.19655719552796],[-126.5596891998,56.196583173626806],[-126.5593485239746,56.19661267093033],[-126.55914729766585,56.19672556493892],[-126.5591569008292,56.19683305414153],[-126.55933915226264,56.19701707452822],[-126.55931141443018,56.19719529489564],[-126.55929985410035,56.19737568457271],[-126.55927225934073,56.19756398539045],[-126.55925357223869,56.1975987909812],[-126.55921964472539,56.19762582255806],[-126.55914270586575,56.197821060387064],[-126.55904785665984,56.19803541868703],[-126.55877975075077,56.19820125079178],[-126.55859566198916,56.19831406888687],[-126.55846153576265,56.19839194432355],[-126.55815076901008,56.198467232282894],[-126.55788666015805,56.19856023732777],[-126.5577049825456,56.19862935897442],[-126.55768216217494,56.19872802915909],[-126.55787018316536,56.19882129697233],[-126.55788469305948,56.19884811635833],[-126.55786691000809,56.198875076972755],[-126.55761808626426,56.198978095681596],[-126.55760028707321,56.19900393621118],[-126.5576462478505,56.19904181933038],[-126.5576938133772,56.19905169245483],[-126.55804814787496,56.19905798368253],[-126.55836779060391,56.19910923052811],[-126.55842988269144,56.19914704276001],[-126.5584095740144,56.199208738189526],[-126.55832555243894,56.19926175154296],[-126.55814547670353,56.19930286384679],[-126.55781273961999,56.199466736480524],[-126.5576998079418,56.19947395096749],[-126.55749398478886,56.19940652339771],[-126.55723655920963,56.1994020475668],[-126.55715340991371,56.19944497526553],[-126.55713222479552,56.19951675538551],[-126.55731269919113,56.199717588419716],[-126.55732155094697,56.19984412317276],[-126.55720520096239,56.19989503678627],[-126.55704381133988,56.19990134222225],[-126.55697593336795,56.199954284191676],[-126.55697416908802,56.19997221379633],[-126.55697860283462,56.200000197409224],[-126.55698410148798,56.20003153672935],[-126.55699791011503,56.20022301677258],[-126.55686635367839,56.20923944478546],[-126.55688375610328,56.209541802062176],[-126.56469190794182,56.22145811811559],[-126.56508409975598,56.221625521922],[-126.56530953403644,56.2217835820708],[-126.56537628831153,56.22186057534762],[-126.56547241422595,56.221944159249546],[-126.56561973800008,56.222076801927706],[-126.56589684326873,56.2223164015938],[-126.56621177351016,56.222587196554706],[-126.56635083017322,56.22270643355489],[-126.56647500778271,56.22284365853413],[-126.56678014034257,56.22320522624379],[-126.56709343770396,56.22357123755064],[-126.56725570313411,56.22375869850814],[-126.56733768436936,56.2238412238367],[-126.56745902581149,56.22399190213137],[-126.56758153406501,56.224223224575965],[-126.56761991130551,56.22436307031841],[-126.56761328798825,56.22439446344522],[-126.56765712277344,56.22442227179273],[-126.56777641263933,56.224501270555194],[-126.56790082494592,56.2245847269462],[-126.56795892719543,56.22462143276748],[-126.56799575050384,56.22465375272644],[-126.56804892542847,56.22469944148534],[-126.56811436417877,56.224755156824386],[-126.56818597551089,56.22481868557652],[-126.56825039675356,56.224874405379396],[-126.56830539735535,56.2249066443323],[-126.56837361491577,56.22494442506934],[-126.5684774279043,56.22499996935634],[-126.56859040265986,56.225061073409826],[-126.56865684446461,56.22511566388528],[-126.56870315482581,56.225175944679506],[-126.5687382029986,56.22522507432135],[-126.56878323599157,56.2252663185417],[-126.56885353922155,56.225308570266286],[-126.56894706071697,56.22535071846792],[-126.56912400594412,56.22543505969226],[-126.56936700572345,56.225548229493334],[-126.5695684489437,56.22565038295508],[-126.5697160544344,56.225730373762964],[-126.56983488094316,56.22577688891609],[-126.56988870349086,56.22579681101535],[-126.56988277448879,56.22580579854232],[-126.56988025716133,56.225841654009834],[-126.56990559915431,56.225917709858535],[-126.56994819809475,56.22599928931615],[-126.56997303620513,56.226040623306616],[-126.57001800637852,56.2260773868664],[-126.5701077517898,56.22613747322384],[-126.57017117614693,56.22619319656139],[-126.57020125104181,56.22624794870994],[-126.5702224243293,56.22631506207392],[-126.57023527476117,56.2263654106294],[-126.57032265053344,56.22647031273268],[-126.5704928920942,56.226648773221974],[-126.57058921970251,56.2267446740922],[-126.57059742890277,56.22675359845922],[-126.57060969386939,56.22676362482902],[-126.57064758828729,56.22680041981289],[-126.57069592331409,56.2268595707645],[-126.57063870200831,56.22695279758913],[-126.57047566304391,56.227062179187605],[-126.57043713958848,56.227191166615974],[-126.57051802647166,56.2273364224128],[-126.57055847821681,56.22740905025918],[-126.57056885383814,56.22742804614483],[-126.57079354551584,56.227531214027714],[-126.57128796185309,56.22770710351391],[-126.57190528045453,56.22786227816703],[-126.57253178281738,56.228023009345904],[-126.57287359463972,56.22819173618324],[-126.57296615378172,56.22830557441362],[-126.57311692865575,56.22839450829633],[-126.57332028520277,56.22848768640499],[-126.5734127681482,56.22852647570781],[-126.57345442840462,56.228544210713224],[-126.5735784728174,56.22860078025868],[-126.57373706764639,56.22867175615182],[-126.57388474211518,56.22875510241921],[-126.57401941115211,56.22884746807381],[-126.57407450395804,56.22888530489524],[-126.57401945774535,56.22892027657993],[-126.5739136829018,56.22900812261372],[-126.57386005786732,56.22920886769893],[-126.57386231163436,56.22950121261529],[-126.57386232215335,56.22964010923133],[-126.57386158227635,56.22965803470787],[-126.57397324940251,56.229696737400175],[-126.574343348373,56.22972643664432],[-126.57475359979254,56.22973915203326],[-126.5750572729413,56.2297848301399],[-126.57538383880168,56.22987632987375],[-126.57559067338626,56.22993028408805],[-126.57569915721332,56.22995891842551],[-126.57584928738466,56.23000304671134],[-126.57592937757927,56.230022847849305],[-126.57594768821988,56.230031726321236],[-126.57596189331427,56.2300361427739],[-126.57601974847071,56.23005604416943],[-126.57625230225132,56.23014124505381],[-126.57664622223267,56.23027948322598],[-126.57690927541282,56.23037910692338],[-126.57696752636738,56.230424769217],[-126.57696749611458,56.23049197746488],[-126.576967320062,56.23061743340653],[-126.57696841168564,56.2308291340464],[-126.57703309073963,56.2310371869071],[-126.57720515274482,56.231130500475146],[-126.57752508164036,56.23118169998065],[-126.57808437398671,56.23130014333318],[-126.57862097637576,56.23145453144283],[-126.57888486229459,56.23154070577048],[-126.57906580399944,56.23168774314497],[-126.57925986517223,56.23197025722648],[-126.57940463847785,56.232198108072126],[-126.57952585362942,56.232335334672534],[-126.57968270949007,56.23249144166896],[-126.57982412692856,56.232628576282146],[-126.57987537256919,56.232678749682705],[-126.57989154946438,56.2326797963436],[-126.57998934798965,56.23266815073168],[-126.58026995991825,56.23272288247896],[-126.58065912685767,56.232879052388284],[-126.58097449664984,56.23296162793848],[-126.58131227134878,56.23305754235062],[-126.58167792922308,56.233330310505295],[-126.58185437883579,56.23351320897738],[-126.58188112148895,56.23354557107855],[-126.58189641306737,56.23355446248334],[-126.58198686356708,56.23359213487383],[-126.58213053387604,56.233675490186954],[-126.58248127807974,56.23369181268453],[-126.5831922212725,56.23361127772175],[-126.5838920429925,56.233530789652086],[-126.58441664970404,56.2334197360408],[-126.58481610907269,56.23324764601145],[-126.58508354274508,56.23309520216763],[-126.5854629953679,56.23286943519669],[-126.58593714961202,56.232559222206795],[-126.58622115091565,56.2323674951393],[-126.58629221744333,56.232323483450486],[-126.58631720869744,56.23230656662306],[-126.58637420179302,56.23226710006846],[-126.58640019433278,56.232249058488726],[-126.58653436693561,56.23223836091357],[-126.58681693518831,56.23222138051474],[-126.58701227704209,56.23224736579605],[-126.58712086266236,56.232348798982706],[-126.58722019981953,56.232440193385685],[-126.587313690988,56.23247784801129],[-126.58743117129558,56.232498590132],[-126.58749596321246,56.23250837323529],[-126.58753733166976,56.23250482245239],[-126.58755888602482,56.23252824614546],[-126.58762327973814,56.23257835596861],[-126.58786510672509,56.232673574527944],[-126.58823059412337,56.23279734652762],[-126.58851917063389,56.232911390811445],[-126.58863535510031,56.23298030373783],[-126.5887381555589,56.23309968448752],[-126.58891275140165,56.233291542986265],[-126.58912022777817,56.233385797535696],[-126.58940003408388,56.23338674639972],[-126.5896481915462,56.23343152621171],[-126.58981073220257,56.233560711466104],[-126.58992256891636,56.233675569015915],[-126.58998803684105,56.23373015328281],[-126.59006038199003,56.23377238421183],[-126.5901346961936,56.23381012544628],[-126.59016411428189,56.23381895057479],[-126.590205888096,56.233842280380046],[-126.59039583770517,56.233913091016696],[-126.59065006997939,56.234026169274884],[-126.59076250785161,56.23411414001924],[-126.5907966739341,56.23416886872156],[-126.59086927368385,56.23422790011052],[-126.59098064318441,56.23431139506416],[-126.59111126377883,56.23439928135458],[-126.59118671712994,56.23444597783359],[-126.5911999748738,56.234454877556],[-126.59122032804005,56.23446486456001],[-126.59138710963445,56.234539141459095],[-126.59166925954314,56.2348279502692],[-126.59186107564125,56.23522247038242],[-126.59198093167633,56.23540001689025],[-126.59207509854443,56.235415262207],[-126.59232019501128,56.235523899082864],[-126.59271631016045,56.235733767239346],[-126.59292852582287,56.23587279938651],[-126.59302856513101,56.2359417834496],[-126.59318420255279,56.23601274943135],[-126.59332734750164,56.236060250342135],[-126.5934077298272,56.236097961543535],[-126.59342711702388,56.23611131311827],[-126.5935602454477,56.23616334088625],[-126.59377751038036,56.23623513979542],[-126.59389116828446,56.236269335528526],[-126.59400333166604,56.23633826245835],[-126.59425436360785,56.2365051153927],[-126.59450108573417,56.23665406567628],[-126.59463932784028,56.23671054909782],[-126.59468197366458,56.236724912308766],[-126.59470297452616,56.23671137281169],[-126.59476731691745,56.23669091058579],[-126.59483366251133,56.23666931885466],[-126.59485785452584,56.23666584572905],[-126.5948850680073,56.236661238381245],[-126.59490662903008,56.23668466087371],[-126.59492698397543,56.236760735582536],[-126.59495287394844,56.23686926857418],[-126.594987100031,56.236928476538175],[-126.5949871847128,56.2370001651381],[-126.59493949693976,56.23712024238749],[-126.59490705344422,56.23717864086349],[-126.59499260125357,56.23715807972181],[-126.59516989246848,56.23712476937117],[-126.59530766149149,56.23714989035851],[-126.59540173237667,56.23722450116308],[-126.59549115188481,56.2373248968329],[-126.59560758429407,56.237475572782316],[-126.59572496781963,56.23762176363779],[-126.59582233422208,56.237713160895616],[-126.59589834375794,56.23779569662762],[-126.59599448864874,56.23787365777211],[-126.59614324707539,56.23795697392502],[-126.59627760866293,56.23802355502367],[-126.59645648579382,56.238094408616696],[-126.59676203712657,56.23825764173731],[-126.59706409561359,56.238456735009784],[-126.59727671278208,56.238554313110484],[-126.5974704308238,56.23860381320731],[-126.59763097611483,56.23866466969402],[-126.59771250647267,56.23871133403057],[-126.59786031619568,56.238731924746396],[-126.59810595142278,56.238741975835175],[-126.59828097600425,56.2387579580203],[-126.59841505362087,56.23880549584063],[-126.5986011551034,56.2388863939074],[-126.59879540623574,56.23897061391832],[-126.59890394906964,56.23900034870408],[-126.59892415271274,56.23900025394216],[-126.59894442473174,56.239004639424444],[-126.59909629403516,56.239026329820526],[-126.59938660905017,56.2391168190539],[-126.59959677780705,56.239251369547524],[-126.59969515937857,56.239342759207936],[-126.59978896996861,56.239399445857],[-126.5998480576017,56.23943165242771],[-126.59986435765549,56.23944053699418],[-126.59988580237145,56.23945499810135],[-126.59993067895432,56.239482790826955],[-126.5999601719901,56.23949609396657],[-126.6000005969059,56.23949702416722],[-126.60011319905415,56.239526738868776],[-126.6003151793517,56.23958851744613],[-126.6005872241105,56.239738457450535],[-126.60081823230809,56.23998044168487],[-126.60084773880578,56.240192009832256],[-126.60078580105271,56.24030319539597],[-126.60078156494927,56.240356982183876],[-126.60082678616432,56.240407175849484],[-126.60090657791349,56.24047176868269],[-126.60107707686896,56.240587461112405],[-126.60129243964067,56.240730945657475],[-126.60144636520079,56.240819832219394],[-126.60162821833278,56.24088618416342],[-126.6018737876943,56.241021684442096],[-126.60195886038545,56.24116690208215],[-126.6019548319671,56.24123412967763],[-126.60205752720101,56.24127621099436],[-126.6022712763352,56.24137937640358],[-126.60245665373918,56.241477074601676],[-126.6025632545806,56.241511296089925],[-126.60265441756479,56.2415265479053],[-126.60272658324013,56.24155421090344],[-126.60274694302149,56.241564196099134],[-126.6027654027465,56.24158203126634],[-126.60280686219888,56.24165016433094],[-126.60282832323458,56.24173183351774],[-126.60282980717469,56.24176319053904],[-126.60291490932853,56.24177847078434],[-126.60308877236494,56.24184933900663],[-126.60319203600318,56.24199446999324],[-126.60324749653505,56.242184632496986],[-126.60333257683072,56.242329849291636],[-126.6033988528618,56.24243482970245],[-126.60344134774705,56.2425701663571],[-126.60346443288512,56.2426921529976],[-126.60346689811718,56.24278623347321],[-126.60347685787538,56.24290828214711],[-126.60349179213783,56.24302582674066],[-126.60351822873861,56.243101871632504],[-126.603580778492,56.24316206381811],[-126.60368684792559,56.24322653083433],[-126.60380405623675,56.243292065244965],[-126.60389663974341,56.24333419296245],[-126.60393627335583,56.24334856741598],[-126.60395870668046,56.243361903059764],[-126.60401296827399,56.24340869250557],[-126.60409095769145,56.2434867337447],[-126.60414319793924,56.243532412555986],[-126.60418404100464,56.24356022295153],[-126.60423592035318,56.243583500537746],[-126.60428990552252,56.24361124871836],[-126.60440414600934,56.243681277221924],[-126.60454607116623,56.243778058053415],[-126.6045984503914,56.24383269719056],[-126.60463114260567,56.243856065457564],[-126.60468397196028,56.24387485778971],[-126.604781427519,56.243904640222176],[-126.60499326449091,56.243948442652766],[-126.60523112702386,56.243975319219366],[-126.6053797035489,56.24397909557685],[-126.60551608613333,56.24397732885302],[-126.60563930931332,56.243974504246445],[-126.60568789060697,56.243979874570634],[-126.60570528254513,56.243994353970926],[-126.60586980095798,56.244113429110705],[-126.60626619788182,56.24439606484601],[-126.60660406875596,56.244618489551286],[-126.60673431060556,56.24474220702142],[-126.60681643955428,56.24489191634119],[-126.60689101979874,56.245010297408115],[-126.60704846561381,56.245129404726335],[-126.60727010937822,56.24528293114053],[-126.60736911011138,56.24534742882275],[-126.6074506659343,56.24539408707016],[-126.60760847921493,56.24553671505475],[-126.60767465448299,56.24569882140555],[-126.6076696331197,56.24576605407623],[-126.60771865059417,56.24579942522682],[-126.60782956945371,56.24585042410626],[-126.6079324218975,56.24590146128936],[-126.60798446276048,56.24593481794989],[-126.60804112967976,56.24594014890407],[-126.6081457950397,56.245977735530566],[-126.6082686878202,56.246083564199886],[-126.60839374093057,56.246198343640515],[-126.60848062140472,56.24626289824222],[-126.6085040937612,56.24627734831525],[-126.60852349112368,56.24629069765373],[-126.60862372339481,56.24636863030518],[-126.60877311430781,56.24648889414738],[-126.60885185969184,56.246549006699894],[-126.6088927092344,56.246576815624145],[-126.60897116067555,56.24661900715806],[-126.60905128410533,56.24663766758645],[-126.60918331137785,56.24668072363514],[-126.60938094258664,56.24678395448322],[-126.60948224971389,56.246866361950644],[-126.60948180415627,56.24690220878371],[-126.60948301523666,56.246915644769444],[-126.60949039178635,56.24693465206801],[-126.60951250654519,56.24699279418032],[-126.60954510681906,56.24707440933827],[-126.60960202745095,56.24716150914697],[-126.60967922457782,56.24725187258512],[-126.60971731465519,56.24729761678973],[-126.60970539877913,56.24731111544282],[-126.60967666233985,56.247347097337546],[-126.60961525336236,56.24742692092765],[-126.60959435535544,56.24757824057286],[-126.60968238830492,56.24771559850399],[-126.60975079102793,56.24776119800482],[-126.60978402067124,56.247753198324105],[-126.60989868465892,56.2477190463921],[-126.61004758029311,56.24767688982157],[-126.61018996952187,56.247671729030706],[-126.6103311032526,56.247714740426545],[-126.61040745057808,56.2477513404332],[-126.61041266751816,56.247761396828366],[-126.61044353734137,56.24779709401152],[-126.61047431235879,56.24789215946811],[-126.61038726072947,56.248012431333564],[-126.61033073011909,56.2481459990707],[-126.61041201698107,56.2483046715962],[-126.61041547505482,56.248461475777006],[-126.61038623478505,56.24859603327836],[-126.61046045786411,56.248754739565996],[-126.61055381945422,56.24890999389275],[-126.61059962082143,56.24899602635151],[-126.61060898558202,56.24901390395309],[-126.61060529245252,56.24903632457368],[-126.61058661757264,56.24913498689859],[-126.61060447547194,56.249243555913495],[-126.61070308942706,56.24928116947926],[-126.61079367358015,56.249323301963926],[-126.61085752452341,56.249400286845606],[-126.61092954652422,56.249482833358094],[-126.61096663785702,56.24952858202705],[-126.61099773632948,56.24957883994902],[-126.61104650912378,56.24966037747097],[-126.61106829627438,56.249697238141756],[-126.61106597077732,56.2497420552125],[-126.61108221059935,56.249876395356885],[-126.61111593437205,56.25003081453306],[-126.61112729517308,56.25011141088939],[-126.61110650215986,56.25013839394673],[-126.61113681618298,56.25013824890603],[-126.6112231515139,56.25016695965583],[-126.61131396386197,56.25022253249419],[-126.61142735722235,56.25030152030528],[-126.61159056914977,56.25039931201957],[-126.61170287386949,56.250472704064336],[-126.61180994257454,56.25053379945476],[-126.61196389678099,56.250621553711774],[-126.61204762977823,56.25067715996705],[-126.61214132803227,56.25072375721755],[-126.61234093843309,56.250822493711254],[-126.61250798691765,56.250906824110515],[-126.61255383416069,56.25093012738491],[-126.61258646707243,56.25094901342204],[-126.6126943834332,56.25100002268568],[-126.61283182366604,56.25106545215515],[-126.61294879068441,56.25111305733653],[-126.61304040005587,56.25115518337193],[-126.61316571546858,56.25122067068425],[-126.61333601711937,56.25131842621067],[-126.6134513511494,56.25139180222831],[-126.61348918557778,56.25141962425897],[-126.61353111595862,56.25145190720398],[-126.61360886000723,56.251512021840064],[-126.61367953884975,56.25157217037621],[-126.61371879654511,56.2516268691015],[-126.61378951216498,56.2516903778545],[-126.61395333367824,56.25176128013363],[-126.61412205998994,56.251823197425544],[-126.61420254856837,56.25186537612114],[-126.61425602461443,56.251924486923286],[-126.61432178484436,56.25199361997694],[-126.61436176428012,56.252029272496664],[-126.6143720272985,56.25203930448511],[-126.61434875980693,56.252038296245495],[-126.61418324264807,56.25211638257785],[-126.61391477244452,56.252267773314856],[-126.61378282046502,56.25236025975408],[-126.61381464684116,56.25239259117585],[-126.61384617183896,56.252469730049796],[-126.61375419848157,56.25259786914436],[-126.61354551194042,56.252760173346815],[-126.61329963442724,56.252934977437185],[-126.6130306603198,56.253118853107544],[-126.61280159958801,56.25327117252528],[-126.6126946335667,56.25334561557223],[-126.61264269717051,56.2533850699457],[-126.61255167334782,56.253445994605094],[-126.61238157536685,56.25355546478639],[-126.61211823662613,56.25371242791042],[-126.61188593564118,56.2538513194095],[-126.61176777213562,56.25392133471675],[-126.61163572221867,56.2540082186666],[-126.6113787738245,56.25418755268402],[-126.61113389637174,56.25436234783437],[-126.61103182945034,56.254427804848646],[-126.61096256247146,56.25445838023312],[-126.6108188425841,56.25450947432894],[-126.6106381934611,56.25459098887298],[-126.61045616730993,56.2547139553233],[-126.61026443488609,56.25486273135674],[-126.61004958862645,56.25502057869762],[-126.60986370779162,56.255155884376975],[-126.60977397279171,56.25523472332524],[-126.60973041171005,56.25529317910812],[-126.60968118726348,56.25537742538143],[-126.60964092688042,56.25545266764925],[-126.60962624709997,56.25548410193716],[-126.60958643206278,56.25552349722813],[-126.609477711014,56.25561586838643],[-126.60933164095017,56.255711778064445],[-126.60922248513539,56.255777267452196],[-126.60914431824298,56.25582020595702],[-126.60905115654627,56.25587329726685],[-126.60892683125559,56.255937738573415],[-126.6087542739593,56.256020332031376],[-126.60856364638411,56.256110852400276],[-126.60844220434332,56.25616631828847],[-126.6083920032443,56.256187840256196],[-126.6083618929807,56.25620142546865],[-126.60833689601174,56.25621834677801],[-126.60828728049007,56.256212982285],[-126.60804324761212,56.25624886875016],[-126.60743311882824,56.25646572025567],[-126.60664043431164,56.25677416813102],[-126.60603393418361,56.25696523221401],[-126.6057229688604,56.25705295869384],[-126.60559339900055,56.25710509994673],[-126.60551285840374,56.257125644447676],[-126.60545139094789,56.25713825744488],[-126.6051637624001,56.25723147271022],[-126.60438215541367,56.25734158725309],[-126.60346393025814,56.257310083226585],[-126.60281307385006,56.257248187324784],[-126.60249721723505,56.257214952691086],[-126.60240783274432,56.25718625029433],[-126.60237226168012,56.25717297621521],[-126.60234083745928,56.25716752363046],[-126.60230039427834,56.25716659416387],[-126.6022417594076,56.25716575044596],[-126.60216902702788,56.25716833360582],[-126.6019392004684,56.25720862200925],[-126.60152398030553,56.2572867480594],[-126.6012311828421,56.257307168959706],[-126.60113216201803,56.257242666198074],[-126.60090068680792,56.25717542601222],[-126.60047955343036,56.25713148004758],[-126.60019640035998,56.257121609177496],[-126.60003901329746,56.257140270933256],[-126.59999970981933,56.25714829659025],[-126.5997820945837,56.25719412450232],[-126.59944194954741,56.25729093382703],[-126.59893898301313,56.25744787369446],[-126.59834953979339,56.257634340551704],[-126.59805069612614,56.25772199150003],[-126.59796719560413,56.25774814583419],[-126.59787856436863,56.257768723372486],[-126.59763816671392,56.257844898303254],[-126.59723985232236,56.25797221791666],[-126.59699133357965,56.25804730944028],[-126.59676859639647,56.258088675529116],[-126.59644608335142,56.258149549657716],[-126.59622337991593,56.25819427508659],[-126.59597448258698,56.25824360292688],[-126.59560573087657,56.25832149288234],[-126.59526940451867,56.258404831439314],[-126.59487759990319,56.258496268504814],[-126.59435988994605,56.25861629394904],[-126.59402755028746,56.25869625022365],[-126.59395603682674,56.25871226483227],[-126.5938139452965,56.258740929129495],[-126.59347538679152,56.2588108315128],[-126.59309867471238,56.25889771238566],[-126.59267767643344,56.25899711925754],[-126.59219312834473,56.25910466038207],[-126.59180596559477,56.25916918286043],[-126.5915235431988,56.259208575935524],[-126.59127839002936,56.25923995484775],[-126.59111501039337,56.25926423405344],[-126.5910284610563,56.259289277788795],[-126.59098916975296,56.25929730060596],[-126.59076908229278,56.25938232980303],[-126.59031789521299,56.25955803869148],[-126.58998828519802,56.25968613827194],[-126.58982335306384,56.25974178720061],[-126.58975392544785,56.259763390569745],[-126.58971631805454,56.259749002211244],[-126.58955277635803,56.25969598977848],[-126.58933330046929,56.259619712014185],[-126.58924285020102,56.25958652471206],[-126.58916060420404,56.259562260714986],[-126.58902848827854,56.259514703447316],[-126.58893999266292,56.259477026321626],[-126.58891957664916,56.259463678632144],[-126.58888748615398,56.25948062880888],[-126.58880357843456,56.259547104412704],[-126.5886896582059,56.25970221013157],[-126.58859886309808,56.25991545703579],[-126.58859301272257,56.260064463995434],[-126.58863047460773,56.260135981031],[-126.58874730750651,56.260377395209574],[-126.58893510891095,56.26076746224594],[-126.58902259208467,56.261006771240545],[-126.58902637972338,56.26112436963181],[-126.58903190951388,56.26129012649341],[-126.58899510574602,56.26146503974309],[-126.58869467798614,56.26158516040195],[-126.58819922333575,56.261845077115915],[-126.5879715029256,56.262231457337776],[-126.5879730524336,56.26240171322539],[-126.58797547698885,56.2624285857033],[-126.58797325929623,56.262483483332744],[-126.58797507747865,56.26267166042772],[-126.58797708448665,56.26314323506414],[-126.58815977796831,56.263731594144026],[-126.58859931126104,56.26412162340059],[-126.58894790177354,56.26424547416356],[-126.58905616998636,56.26425169598476],[-126.58906885514901,56.264288602535416],[-126.5890694512361,56.26439613443091],[-126.58907276539568,56.26461678921671],[-126.58889769578722,56.26494132035667],[-126.58854619578483,56.26523081917375],[-126.58837584526964,56.265331297320365],[-126.58837874078661,56.26538953193934],[-126.58838291340821,56.2655328923061],[-126.58839977105409,56.26571315932063],[-126.58842619984567,56.2658575373701],[-126.58844037445839,56.265925801438186],[-126.58844455241301,56.265934743423486],[-126.5884533116749,56.26597950921347],[-126.58847980244879,56.26606115840035],[-126.5886308753264,56.266157915884286],[-126.58891774397772,56.26627645046877],[-126.58908250012304,56.2663417800733],[-126.58910011391802,56.26636970270666],[-126.58907637414566,56.266404536910784],[-126.58894060246386,56.266452209209994],[-126.58885175126946,56.26652654883159],[-126.58899481413847,56.26669615281482],[-126.58911738761968,56.26698122695909],[-126.58912231081739,56.267242200108896],[-126.58912150717234,56.267390064135434],[-126.58912446180472,56.26751998837928],[-126.58907431391094,56.26781594025492],[-126.58897508210867,56.26820957181477],[-126.58891650123364,56.268414830061815],[-126.58890531186599,56.2684776102787],[-126.58887962298701,56.268585263495844],[-126.58878746978658,56.268777234563416],[-126.58866785984144,56.268958130515344],[-126.58860650875738,56.26904690534214],[-126.58858978511206,56.26907834670425],[-126.58858487289856,56.26908733056762],[-126.58860766877547,56.269124190674624],[-126.58866860193928,56.26921016191048],[-126.58872545724454,56.26929279144416],[-126.58879131930782,56.26936977868322],[-126.58890735013878,56.26948910058946],[-126.5890484621622,56.269594864929346],[-126.58918823548602,56.2696782321922],[-126.58924076320245,56.26974295899183],[-126.58921433326229,56.26980020876962],[-126.58919660689335,56.26983165484532],[-126.58924399693667,56.269823595250685],[-126.58935976240427,56.26978945674436],[-126.58946050647823,56.26976546881979],[-126.58949474495506,56.26975634964074],[-126.58956446050092,56.26975378771296],[-126.58974258586073,56.269698078194125],[-126.5899134997931,56.26956735132212],[-126.59000308843841,56.26947396484783],[-126.59008023320575,56.26942656213191],[-126.59015958581857,56.26939259103403],[-126.59029064921361,56.26943455157644],[-126.59052704894178,56.26955667643083],[-126.59080954991822,56.26965170400231],[-126.59106273202379,56.269679657250315],[-126.59119918845535,56.26967790587167],[-126.59124268528342,56.269678824787825],[-126.5913609272941,56.26967603735244],[-126.5915823554174,56.26967613263016],[-126.59186774272607,56.269627764624616],[-126.59222291130988,56.26958019276106],[-126.59253596937563,56.26962242761156],[-126.59274283402313,56.26966291400369],[-126.5929207652248,56.269662088556835],[-126.59313016401426,56.26967007805502],[-126.59329509624894,56.26967827366568],[-126.59335866083045,56.269670137445566],[-126.59338083443974,56.269665553863305],[-126.59343559646803,56.269676501124145],[-126.5936237730897,56.269684588365365],[-126.59388401047104,56.26964417376267],[-126.59406430384912,56.26959852951742],[-126.59417216417214,56.26957786524962],[-126.59433689252805,56.26957261859405],[-126.59459167400364,56.269572553526565],[-126.59484451848913,56.26957809774651],[-126.59503464888752,56.269581693191085],[-126.59521553649235,56.269576370157694],[-126.59541813869207,56.26960231005736],[-126.59564699328567,56.269691976160836],[-126.59586592722957,56.26979512999396],[-126.59602082126874,56.26987505888635],[-126.59612883626932,56.2699305628568],[-126.5962040914926,56.269959335835544],[-126.59630292908136,56.269943192485385],[-126.59643979196896,56.26990110799571],[-126.596516166302,56.26987050729177],[-126.59652411781668,56.26986150892523],[-126.59655952715353,56.26986246378544],[-126.59673348704004,56.26993334156854],[-126.59701690954887,56.270087719495976],[-126.59718645903376,56.27026615229596],[-126.5971980743815,56.27043188117105],[-126.59717753827903,56.27054399279114],[-126.5971688611199,56.27063812649122],[-126.59717267411821,56.270755725118356],[-126.5971798317963,56.27082738169701],[-126.59718739451505,56.27085871074339],[-126.59719696307758,56.270890030416176],[-126.597218696946,56.27092241339369],[-126.59724850271844,56.27095475864395],[-126.59727310805455,56.27097704678261],[-126.59731815535126,56.271013801409254],[-126.59741312562399,56.271074966099604],[-126.59758918273015,56.27115031361021],[-126.59782809314544,56.2712354482808],[-126.59796941858778,56.27128743445387],[-126.59806496639217,56.27132059204642],[-126.59820124546262,56.27137260158434],[-126.598286615143,56.27140132602869],[-126.59853774631327,56.271492002968536],[-126.59902271491602,56.271667835670634],[-126.59930250059305,56.27178077996563],[-126.59932833310418,56.27181762401601],[-126.59932456290059,56.271835564216325],[-126.59933408110705,56.27186240335743],[-126.59936234664734,56.27192611977213],[-126.59938649872316,56.271984254687915],[-126.5993991961097,56.272021160333246],[-126.59941801108815,56.27206139775699],[-126.59944924961141,56.272120619584214],[-126.59948278428402,56.27219775315706],[-126.59951793853516,56.272315204803434],[-126.59954056563913,56.27240583143013],[-126.59955222704929,56.272441621770575],[-126.59955647673623,56.27245504372683],[-126.59956167705384,56.27246398059192],[-126.59959439013667,56.27248735042889],[-126.59963916728888,56.272506183021626],[-126.59967295192827,56.27253402844266],[-126.59973149758301,56.27259312207944],[-126.59981330658579,56.27265322666712],[-126.59987657422325,56.272691015079225],[-126.59997737988434,56.27273758850097],[-126.59999970870395,56.27274308446188],[-126.60009106329021,56.27276617884932],[-126.60013470089368,56.272776055360175],[-126.60012984325552,56.27278952006719],[-126.60013560945892,56.272835419468535],[-126.60015793067521,56.27290700476329],[-126.60017326837952,56.27298422364338],[-126.60019001961382,56.27308719952362],[-126.60025236355088,56.273196682224594],[-126.60033013035323,56.27325680549174],[-126.60036459229363,56.273262244397266],[-126.60036377893415,56.27327569011732],[-126.60035537340724,56.27332053593457],[-126.60034114251326,56.27338221149136],[-126.60032296921624,56.273449506358425],[-126.6003033651485,56.273489924144265],[-126.60027470474888,56.273533744939776],[-126.60024546995672,56.273605572387495],[-126.60029518467334,56.273682629815525],[-126.60040877706368,56.27377058873488],[-126.6004779863373,56.273866597209555],[-126.60050573249477,56.27396168032249],[-126.60054020421917,56.27403320849897],[-126.60058648411639,56.2740845183231],[-126.60065702924496,56.27413459393268],[-126.60072952907214,56.27418129984119],[-126.60075679555031,56.27424502072467],[-126.60076207552204,56.27432564733951],[-126.60078368747855,56.27441627861449],[-126.6008294285487,56.274497835185855],[-126.60089743114223,56.27458040723912],[-126.60100117400057,56.27468521437823],[-126.60109855987413,56.27477212879343],[-126.60113134448687,56.27479997857315],[-126.60115085549003,56.274818929506885],[-126.60125714397005,56.274892360024566],[-126.60142461476991,56.27499910734052],[-126.60156536795381,56.27507797622206],[-126.60173479385575,56.275180233307864],[-126.60191837627305,56.27528242350721],[-126.6019908109376,56.27532464840916],[-126.6020162345476,56.27533348993367],[-126.6020712132923,56.27535787446187],[-126.60214335583973,56.27538105794451],[-126.6022644957154,56.27543313465576],[-126.60243451497848,56.27550850421832],[-126.60266684480074,56.27555781608359],[-126.60291559841062,56.275557763027365],[-126.6030108162814,56.27556851541299],[-126.60300009924968,56.2755954498099],[-126.60299525842419,56.27560891456573],[-126.60297377158027,56.275658302966924],[-126.60293603474875,56.275769376814104],[-126.60297006170269,56.275877871791955],[-126.60309837365018,56.27600160413513],[-126.60322625664946,56.2760984545441],[-126.60338368051583,56.27614251785224],[-126.6036236743756,56.276164907991046],[-126.60398320975746,56.27606911601527],[-126.60441454518033,56.27584304493115],[-126.60462399799304,56.27572107696337],[-126.60462942444006,56.275744574652755],[-126.60463146382726,56.27581177460717],[-126.60463256926914,56.27588345962225],[-126.60463191167733,56.27590586593502],[-126.60463289607529,56.27603579985316],[-126.60477160069243,56.27630846270345],[-126.6049736040781,56.27655506215495],[-126.60505240461806,56.276812326062476],[-126.60516079766774,56.27702128293447],[-126.60536131991728,56.27710658573327],[-126.605569100846,56.2771369659534],[-126.605779647913,56.27715053031457],[-126.60600179458937,56.277195403837894],[-126.606233169036,56.2771819848416],[-126.60651943698848,56.27705740901603],[-126.60675135941035,56.27694877280044],[-126.60677626859244,56.276990100502424],[-126.60666885172063,56.27717207647848],[-126.60659050591642,56.27733711199304],[-126.60665655521792,56.27742305091594],[-126.6068389671802,56.27751291803817],[-126.6070061695706,56.277600616817956],[-126.60714405780415,56.27768957479812],[-126.60735439054322,56.27781963438401],[-126.60765837365952,56.27792348472754],[-126.60800203723083,56.27791288913518],[-126.60827733502886,56.27786341233691],[-126.60837618757029,56.27784725959508],[-126.60839444598649,56.27791550254197],[-126.6084242602132,56.27807778405822],[-126.60841920626551,56.27820774687049],[-126.60842814751382,56.27826259223355],[-126.60851286809469,56.278313716362966],[-126.60866996568275,56.27840146113681],[-126.60887288909849,56.278509150350466],[-126.60920189246737,56.27859607547929],[-126.60961450558918,56.2786624381133],[-126.60985887561641,56.2787038385434],[-126.60993999845071,56.27871801356413],[-126.60996940241309,56.27872347405779],[-126.60997016917024,56.27877275753455],[-126.6099729311054,56.278884760576176],[-126.60997520635975,56.27896652156364],[-126.60997476088805,56.27900236888293],[-126.6099768793132,56.27907404916186],[-126.60998054840596,56.279114357496816],[-126.6099823183107,56.2791636361946],[-126.60998219540473,56.27928573448389],[-126.60998826181954,56.27941564438024],[-126.60998858314922,56.279500775198514],[-126.60996745151381,56.279572566445225],[-126.60992377655228,56.27962542249809],[-126.60990173864266,56.27963896960565],[-126.60992454326973,56.279674705994225],[-126.60996923788841,56.27975290410198],[-126.60999204264326,56.27978864048026],[-126.61001646905851,56.279798605374026],[-126.6100978905324,56.279831821653104],[-126.61018842133754,56.27986499439614],[-126.61022092028804,56.27987380055248],[-126.6102477179778,56.27990615733776],[-126.61032679555535,56.27998419117712],[-126.61043629655147,56.28006656033501],[-126.61063761347843,56.28020113847083],[-126.61094822538145,56.28040464407262],[-126.61117274281848,56.28053462985761],[-126.61125916129336,56.280563340873925],[-126.61135562383791,56.28058864330485],[-126.61151594329817,56.280622601492134],[-126.61162867229213,56.28065230655203],[-126.61165301228527,56.28065667073812],[-126.61177179282924,56.28068634671593],[-126.61200507431509,56.280793885861314],[-126.61212148942322,56.28093110853969],[-126.61215443321534,56.28109785514713],[-126.61222457012474,56.28131483099478],[-126.61226376202747,56.28142777981787],[-126.6122856379516,56.28146912109509],[-126.6123272960903,56.28154621285135],[-126.61236651192995,56.28159643236427],[-126.61240053958704,56.281637715411534],[-126.61244617326196,56.28171030743458],[-126.61252504884665,56.281774899012575],[-126.61264699790834,56.281812400175795],[-126.612732050773,56.28181871349508],[-126.61283843626629,56.28183052530626],[-126.61302158834906,56.2819013376019],[-126.6131377508496,56.28195678867966],[-126.61317445502034,56.281975655411145],[-126.61322943249878,56.28199891512825],[-126.61348455486873,56.282080583134324],[-126.61386266665295,56.28220086582951],[-126.61403029255501,56.28224822781448],[-126.61407718056098,56.28227152603161],[-126.6142145923415,56.28232799423592],[-126.61435383265693,56.28237101153363],[-126.61446041463145,56.28239626303744],[-126.61457811156434,56.282420340850976],[-126.61469589645667,56.28245001895714],[-126.6148025477452,56.28247863033908],[-126.61490443326484,56.282526307357465],[-126.61504812582643,56.282596186445915],[-126.6153059462691,56.28265543459726],[-126.61566167881884,56.28270188889188],[-126.61591401390491,56.28273427828808],[-126.6159748507224,56.28274406663441],[-126.61607413485794,56.282754789828076],[-126.61652750093123,56.28283549626404],[-126.61712739845312,56.28297374237257],[-126.61732229949412,56.28314754708852],[-126.61727496326559,56.28341661535869],[-126.61732678761426,56.28362471587933],[-126.61738954671014,56.28369274289026],[-126.61745334309012,56.28376188502887],[-126.6176115413357,56.28391682384377],[-126.61786225764168,56.28410155982513],[-126.61808674853405,56.284227053349035],[-126.61817128264333,56.284264730239826],[-126.61822229156766,56.28429248771655],[-126.6183437630271,56.28436247067381],[-126.6184397133458,56.284418014828105],[-126.61853777500775,56.284479149527954],[-126.61870199112788,56.284566847987335],[-126.61882641954232,56.28463233552645],[-126.61885901279986,56.28464673990753],[-126.6188740497638,56.28463770578289],[-126.61897349381675,56.28459465800726],[-126.61912716003991,56.2845255837388],[-126.61919547202763,56.28449612855663],[-126.61927481221257,56.28446101908374],[-126.61957408362463,56.28445396814963],[-126.61997608432489,56.28454723331101],[-126.62020161485745,56.28460998882915],[-126.62027842465679,56.28460625566367],[-126.62036024612827,56.284599137632505],[-126.62049047229188,56.28458394344786],[-126.62064584841777,56.28455966569856],[-126.62078389754025,56.28452651057037],[-126.62096906377954,56.28446736260056],[-126.6211984625953,56.28439119693189],[-126.62130708470389,56.28435258339626],[-126.62138258139284,56.284393662604586],[-126.62166692455563,56.28453006064421],[-126.6220938434465,56.28466352399859],[-126.6224477396159,56.284720050013945],[-126.62264011101512,56.284732555202105],[-126.62278624479013,56.28476320803526],[-126.62303172343005,56.28480793874146],[-126.62329556741156,56.28486266094018],[-126.62346334242581,56.28491897132922],[-126.62361011901626,56.28498994610808],[-126.62379259235367,56.285015939860315],[-126.62398627518095,56.28498362994991],[-126.62410941192864,56.284967346512346],[-126.62414700097999,56.28497724449986],[-126.62422951980176,56.2850149272723],[-126.6244312152557,56.28510467578429],[-126.6246369392625,56.28519328413471],[-126.6247843814171,56.28524185099029],[-126.62495404007808,56.285289188905494],[-126.62509237253798,56.28533779994473],[-126.62513203852674,56.28535104799396],[-126.62519014318498,56.28537988820351],[-126.62537875652252,56.28547305973364],[-126.62565444042148,56.28557252590158],[-126.6258921940472,56.28563969233133],[-126.6259987369728,56.285660453850134],[-126.62601701338679,56.28566484502511],[-126.62606888986413,56.28568363383357],[-126.62617571928199,56.285722316487416],[-126.62632739155192,56.28578318271974],[-126.62647822210845,56.28585413441165],[-126.62658329818328,56.28590962784282],[-126.62665780182657,56.28595182903995],[-126.62671388399326,56.28597955832032],[-126.62673634946292,56.28599289020189],[-126.6267926483946,56.28603518056995],[-126.62686049283003,56.286103178167586],[-126.62690161132709,56.28614442275802],[-126.62693023488993,56.28616332524985],[-126.62697577363097,56.28616422209007],[-126.62710550086476,56.28618038832357],[-126.62736848369757,56.28624406779139],[-126.62767881496835,56.28635792183405],[-126.6279304346613,56.28646982319038],[-126.62802585246146,56.286617216718405],[-126.63022606534581,56.28814102101144],[-126.62954901504159,56.287804945427204],[-126.62312990219831,56.28570359390723],[-126.61890549003763,56.28618114314727],[-126.6186464090053,56.28835104133789],[-126.61763280278822,56.291877752405156],[-126.61427643119895,56.29460025148995],[-126.61544189041396,56.29711279214122],[-126.6166798193442,56.30100502993454],[-126.61610769372838,56.30323021323329],[-126.61271936477135,56.303201683726755],[-126.6078679711898,56.30403135867337],[-126.60240291366127,56.30484581790109],[-126.59869036334224,56.3053292417999],[-126.59072955664922,56.307095803844916],[-126.58309822934436,56.30806280382994],[-126.57807930791861,56.30756582464652],[-126.57291773478032,56.30837764832032],[-126.56804403802988,56.31000346990276],[-126.56301208652106,56.309729990924396],[-126.55698808675517,56.30836735206771],[-126.55123500469782,56.30832058310708],[-126.54573495649097,56.31016332079904],[-126.53910370696302,56.31221670454037],[-126.53703613216226,56.31260177778267],[-126.53488722819073,56.31229713347608],[-126.52832169641918,56.31178673620591],[-126.52238897566919,56.31082535351713],[-126.5174262425113,56.31186711500025],[-126.51192077731393,56.313995177695766],[-126.50772295827494,56.31326811595135],[-126.50289582742076,56.30963096498981],[-126.50080042755972,56.30738093698798],[-126.50090223187277,56.30378705993304],[-126.49764364957332,56.30273338781211],[-126.48960692493127,56.303517153103655],[-126.47862448136573,56.30308377620494],[-126.47260102754463,56.301770948492475],[-126.46628850790155,56.29976887800508],[-126.46331857175649,56.29940330023965],[-126.45686646244967,56.298718575715164],[-126.45424604319254,56.296980471893],[-126.44874932329238,56.29521659796247],[-126.44484234941775,56.29193252806414],[-126.43959782163822,56.28874256344206],[-126.43842390298934,56.286793059047454],[-126.43624255807977,56.28419282318016],[-126.4337089263368,56.28309026123461],[-126.43082094383358,56.28009804438405],[-126.42541856497864,56.278789891356794],[-126.4214496529889,56.28098059341297],[-126.41738520450161,56.28288472841355],[-126.4150300955977,56.282632523438934],[-126.41218142032695,56.281700821787666],[-126.40869716478109,56.28148798103065],[-126.40390335453218,56.28373453826216],[-126.39484877769362,56.28427360999219],[-126.38744538741464,56.28448444577007],[-126.37614406327685,56.28786965641007],[-126.36990476361564,56.29339895740037],[-126.36348641478139,56.29813988908029],[-126.3591478301176,56.302095058766945],[-126.35751978338315,56.30476108898263],[-126.35228902542609,56.30756253069283],[-126.34879451367145,56.31073540782493],[-126.3489306686578,56.31284091890468],[-126.3511304088248,56.31468987079702],[-126.35300256341706,56.31722970546625],[-126.35284079880559,56.31904928119272],[-126.34862175070802,56.31918630352871],[-126.34384209078257,56.32073160770112],[-126.34217148842342,56.32151571343681],[-126.33483345770622,56.322646318625374],[-126.32659673984969,56.323017094397414],[-126.32425035864776,56.32550532390305],[-126.32416124346562,56.32819392355161],[-126.3209010983746,56.33044245327514],[-126.31638273063012,56.330166942267795],[-126.3123394001394,56.32812474763689],[-126.30566999587079,56.32463700837221],[-126.29960882103951,56.32149699423895],[-126.29453986643138,56.31327342676906],[-126.29187776410612,56.30999077930264],[-126.28972978375086,56.30665315177851],[-126.28446794295947,56.30420064858502],[-126.27335282480183,56.30168888837235],[-126.2633835975458,56.30175461295536],[-126.25979532071229,56.304459249122225],[-126.25798839322859,56.30912269559165],[-126.25544938778172,56.31411915195047],[-126.2532684533519,56.314786613970426],[-126.24770397343411,56.31518283852841],[-126.24302108272975,56.31673313937234],[-126.24166952574699,56.320140944512964],[-126.23969612394103,56.32354990637174],[-126.23665522048627,56.325285076486885],[-126.23358741478621,56.32764750849568],[-126.2304102326539,56.330243057255466],[-126.22876386982115,56.333203212682925],[-126.22540067734776,56.33510895955397],[-126.22291971872576,56.3383393492909],[-126.2243584507677,56.34126716425213],[-126.22941279319154,56.34371359248276],[-126.23454521258478,56.34691242954991],[-126.23012411926491,56.346857722890135],[-126.22477613915878,56.34680449412402],[-126.21887127883295,56.34788111607802],[-126.21465853505839,56.34778071253515],[-126.20687620635225,56.34678089901821],[-126.20169020226862,56.345122377809496],[-126.1953731637927,56.343456418185696],[-126.19477193945829,56.34293758165342],[-126.18845934059907,56.341217509312266],[-126.18141755795936,56.34244641065135],[-126.17463371448753,56.34505460560339],[-126.16601715548299,56.34712715676436],[-126.15798018543916,56.347442007961796],[-126.15198029461703,56.34828266708188],[-126.14727414536941,56.35028652784289],[-126.14625700351073,56.352725159191486],[-126.1487548587182,56.3547027248903],[-126.15063739552072,56.35654654976589],[-126.15086004393909,56.3588403796646],[-126.14832160631083,56.360689373200984],[-126.14873200823111,56.360688897298076],[-126.1484894773234,56.36166596152318],[-126.14386188867574,56.36429690834794],[-126.13963073742092,56.36458835267237],[-126.13995713848911,56.36687313479088],[-126.14239627898968,56.36759631476263],[-126.14615932931312,56.36889147079453],[-126.14917471476049,56.37075195505781],[-126.15081849556412,56.37356389632982],[-126.15195659493249,56.376098618553804],[-126.15372955629257,56.3809714961078],[-126.15242980368073,56.385408942734465],[-126.15051175360497,56.38710491688932],[-126.14405044567889,56.38908385412479],[-126.1385136223007,56.3911331625214],[-126.13372244511002,56.395188820682336],[-126.13124396794042,56.398014239653435],[-126.1300529588623,56.39948513303995],[-126.1203182120731,56.40348249269759],[-126.11428970138793,56.40746690780754],[-126.11304965850178,56.41019230307951],[-126.11489649089599,56.41301353815668],[-126.11726318894847,56.41584323795001],[-126.11875596095315,56.41985663431179],[-126.12001383156489,56.42461405131776],[-126.12365435824482,56.42642979344103],[-126.12626585873376,56.42822852781748],[-126.12588226558486,56.4301556465763],[-126.12291624749456,56.43218384332893],[-126.11914067553796,56.43385426302387],[-126.11201038057185,56.43416537981818],[-126.10382589792432,56.43515803996534],[-126.10426086085906,56.43721885889187],[-126.10433961953918,56.44047186552301],[-126.10371356056359,56.44332217456574],[-126.10830985805984,56.444465469400555],[-126.11383078632052,56.445670515460655],[-126.118986147404,56.44578234161911],[-126.12651367778106,56.4458199513036],[-126.13312817199831,56.44554441156017],[-126.13790922688021,56.44720623384373],[-126.1412505983007,56.4488963571023],[-126.1463138996232,56.45140891949957],[-126.15229039633249,56.45427867420993],[-126.15548700798934,56.45706193513917],[-126.1597014013273,56.4601844048401],[-126.16166502795838,56.46283462255268],[-126.16494604861181,56.46338607837731],[-126.17073601502292,56.465851955462476],[-126.17168321780538,56.46820763741894],[-126.18010714476844,56.4719510873844],[-126.1871265398333,56.47197689989247],[-126.19350963554342,56.47238864629305],[-126.20111864019088,56.47321936686041],[-126.20869486362271,56.47489210118412],[-126.21418751657964,56.4771862480573],[-126.21282381520403,56.48059401146759],[-126.20874628380975,56.482034596492696],[-126.20510200095906,56.482793261159124],[-126.20142474680765,56.481723657548464],[-126.20136067229336,56.48348924169586],[-126.2015590253483,56.48646426716406],[-126.2010368361925,56.48949419737122],[-126.20093049315447,56.492335280715245],[-126.20007551086253,56.495930335589286],[-126.19967626045175,56.49838652012864],[-126.20387165525945,56.49945536430544],[-126.20689672755863,56.501484888247546],[-126.20316619976643,56.50459166969108],[-126.19975947083519,56.507285594035295],[-126.19484365833968,56.508951100965305],[-126.19086903152849,56.50742456849532],[-126.1859634937625,56.50599784621858],[-126.17926367743794,56.505577190268966],[-126.17297345801872,56.50528110208221],[-126.17076840401992,56.506225053966006],[-126.16817336805705,56.50922176580513],[-126.16806310453731,56.51219728142544],[-126.16301923291695,56.51436361090664],[-126.15441176077822,56.51523458552765],[-126.14523859010612,56.514564164063614],[-126.13980032104095,56.51358437520642],[-126.13038767159412,56.51381831406144],[-126.12013174349781,56.51444668091718],[-126.10957869135267,56.5173508242626],[-126.10469386739851,56.520715638417634],[-126.10075121860238,56.526320040612816],[-126.10374430787445,56.5290421166119],[-126.10554006676121,56.530716556230225],[-126.10627316798228,56.533064008261285],[-126.10785596097573,56.53491783618828],[-126.1112673928547,56.537576664291805],[-126.11356474594832,56.539609048357036],[-126.11682585878812,56.54347775198955],[-126.11933255521126,56.545500887541415],[-126.12279081469423,56.54696742080499],[-126.12861308237507,56.54886170372007],[-126.1338091949566,56.55091769670681],[-126.13348842185286,56.55388450007622],[-126.13091272113178,56.55625315531552],[-126.12398991827342,56.55868875751517],[-126.11820589222133,56.56107813814198],[-126.11664289564646,56.56397435114277],[-126.11641882615412,56.567048589870595],[-126.11539578840333,56.569379687128276],[-126.11083174044175,56.57229642073252],[-126.10774060543913,56.574548566365536],[-126.1069114105809,56.57722000831886],[-126.11065149244553,56.57949326412073],[-126.11378748839232,56.581354684676846],[-126.11443440228327,56.5833616630707],[-126.11588080796069,56.58548443354928],[-126.11639163997312,56.58623680625397],[-126.12037784404762,56.58754163952011],[-126.12387943762607,56.58798643531034],[-126.12703461760789,56.589390446193946],[-126.12929032999938,56.58998867762632],[-126.13371758318718,56.59066529509034],[-126.13879458774275,56.590552377357604],[-126.14517737020093,56.591540161494414],[-126.14670114650886,56.592300234009734],[-126.14975351821994,56.59370380999904],[-126.15269587620949,56.59533150428746],[-126.16112936538731,56.59960524528121],[-126.16424786906263,56.60192256564677],[-126.168488164187,56.60488364528686],[-126.17107796640892,56.60759584465637],[-126.17707367986304,56.616173766777145],[-126.17613894813,56.61901615054218],[-126.17490720298179,56.62140184805711],[-126.17448949161668,56.62425248772969],[-126.17316180165079,56.62645905459538],[-126.17098986101028,56.62907004612593],[-126.17062242407843,56.63322914938751],[-126.17121949033785,56.636723754467155],[-126.17624688978194,56.63809721801961],[-126.17923080270356,56.63869359858744],[-126.18023581095402,56.6395077927529],[-126.18033713632305,56.63957038919018],[-126.18119741303023,56.64151406463953],[-126.18396261043812,56.64240641003261],[-126.18663591928548,56.64305683953655],[-126.19004675472816,56.64338347582788],[-126.19530907484693,56.644074699039024],[-126.19881104588165,56.644625031297295],[-126.2038479509221,56.64587193670946],[-126.2052047166362,56.64840620909634],[-126.21044065280385,56.64989453546624],[-126.2153605649053,56.64863164708438],[-126.21956599344462,56.64708298516635],[-126.22699634035422,56.64807394062716],[-126.23053580430759,56.650505504561806],[-126.23395160615618,56.653519773242444],[-126.23867289241265,56.65487345315343],[-126.24001569015924,56.655059178705585],[-126.24756271439028,56.655770897500666],[-126.25369243647398,56.655499073872356],[-126.26298553793325,56.65661873093435],[-126.26652680736906,56.65916583662483],[-126.26640760999899,56.66248228969298],[-126.26628214354724,56.66607660690816],[-126.26662085069401,56.66825385682313],[-126.26914179683452,56.670336949397694],[-126.27156696734887,56.67212442547477],[-126.27547922300954,56.67297656341026],[-126.2825097288441,56.673732169409355],[-126.28375337468225,56.67379218143332],[-126.2893454354115,56.67408450415192],[-126.29640185710569,56.67415812378325],[-126.30090939349114,56.6757968531567],[-126.30199989426661,56.67730006048407],[-126.3073455292324,56.67877527540726],[-126.31333485505789,56.67969301447417],[-126.32091249312653,56.67965647713084],[-126.32634854084797,56.678513532946454],[-126.33288527107494,56.678523733438055],[-126.33609864977798,56.678667776897264],[-126.34388808995539,56.67845904483891],[-126.35149088711496,56.677730505267036],[-126.3599615261641,56.67884545009672],[-126.36847028214083,56.678866261889084],[-126.37647165516908,56.678610144268305],[-126.38204910992982,56.679454197248695],[-126.39285997985203,56.67887501899451],[-126.39224396180906,56.67544410947805],[-126.39232877885058,56.672817732867195],[-126.39200862717371,56.66984303970848],[-126.39632027916957,56.668055231509456],[-126.40021829042523,56.66620582333806],[-126.40336967094744,56.664977068631856],[-126.4073629706483,56.66341395824287],[-126.40809359336366,56.66325928214735],[-126.41321606397894,56.661988188399796],[-126.41883296111287,56.66152194096256],[-126.42205347076904,56.66138596954818],[-126.42448683685167,56.65987223523753],[-126.42787048137362,56.65778168870518],[-126.4319962392771,56.65845807938777],[-126.43609037957735,56.66030857550031],[-126.43903359527782,56.66239589915428],[-126.44218933975517,56.66437487703834],[-126.44413223771868,56.66530034272174],[-126.44907110847159,56.66660079420669],[-126.45513180197038,56.668596212762615],[-126.45699077146298,56.672327171226186],[-126.45619771713785,56.67786009572888],[-126.45770123309025,56.6796473616477],[-126.45898465170586,56.68182080188055],[-126.46049012409476,56.68349151488671],[-126.46344180194664,56.685345252675276],[-126.46595268992768,56.68816851996535],[-126.46791278825499,56.69206930223981],[-126.47035837488573,56.693575169200265],[-126.47795666751352,56.696325816341435],[-126.4788873009568,56.696447852025585],[-126.4848783599706,56.69752795698996],[-126.4889056424456,56.698247747849514],[-126.49695873202081,56.6998572596536],[-126.50076129372832,56.701267705662644],[-126.506318640578,56.70285043853703],[-126.51198860833286,56.704333895051924],[-126.51319224813987,56.705825960541574],[-126.51562814962516,56.707788150789405],[-126.51775719688456,56.70957226531299],[-126.52155071838317,56.711322750406715],[-126.52359021224613,56.71265001408951],[-126.52699853518439,56.71325461796675],[-126.53359129453882,56.71519050100936],[-126.53557268826319,56.71863313762781],[-126.53664364156228,56.72115632301592],[-126.53877090318525,56.723056641692125],[-126.54172257071436,56.72530304277022],[-126.54393723905187,56.72778552902209],[-126.5472080217157,56.72968986606151],[-126.55130993945303,56.73167125189641],[-126.5547093802669,56.73272334361705],[-126.55767937906496,56.73435085260277],[-126.55818523401314,56.73480579888874],[-126.5608281147143,56.73699934052876],[-126.56336131823569,56.73930087034667],[-126.56210510639825,56.74334881146179],[-126.56380757031394,56.74570773163696],[-126.56802927233994,56.74716821764941],[-126.5725553124273,56.74897679453973],[-126.57737722265078,56.75124103113846],[-126.57819451548514,56.75182000315083],[-126.58106387247113,56.75333092936422],[-126.58401211750972,56.75591705274788],[-126.58364871174922,56.75768449489122],[-126.58098445435441,56.76011662448286],[-126.57903812125993,56.76278750446298],[-126.57832913366911,56.76598168053085],[-126.5779006392606,56.77020541142723],[-126.58257964225405,56.77407460961384],[-126.58615374233501,56.77655034259057],[-126.59250014261534,56.780429570106044],[-126.60077370379993,56.78231861135301],[-126.60680604015525,56.782478710470336],[-126.61191442388086,56.78212300906724],[-126.62348112668928,56.781413468972104],[-126.62943400982151,56.78065860438714],[-126.63892980017557,56.77964400701303],[-126.64114637878066,56.778458809110056],[-126.64670625900614,56.77672805684966],[-126.65401989570555,56.775526032995934],[-126.66270123736268,56.77365328874942],[-126.66909860566446,56.771585625268024],[-126.68134702238346,56.76852786042095],[-126.69655045984753,56.76778360520656],[-126.71128505311957,56.7693079477882],[-126.71593076871314,56.77082408278601],[-126.72306715385302,56.77258610992864],[-126.72753155672571,56.772964456542326],[-126.73556136229209,56.7721571497434],[-126.74267890516587,56.77015344260769],[-126.75332955699798,56.76845151577576],[-126.76424321410452,56.76886259792209],[-126.76719589198048,56.76711512319673],[-126.77568693597523,56.764025791936554],[-126.78352566969461,56.76236508672528],[-126.7891893888489,56.76017040235177],[-126.78855082865824,56.75611373056372],[-126.78353448133429,56.752424279318795],[-126.7780030268069,56.74867500144484],[-126.77629174315166,56.74147852257703],[-126.77517828642063,56.74009584266623],[-126.77788880985848,56.735033060541134],[-126.77921824701941,56.73133206227063],[-126.77812066864452,56.729151565085715],[-126.77927865009104,56.72853506818589],[-126.78553196564728,56.7276008643687],[-126.79145493838574,56.727636444276456],[-126.79265267990586,56.72507449146148],[-126.79221383187627,56.721420057267444],[-126.7937067666712,56.71960026499842],[-126.7978867111256,56.7185437214815],[-126.80038572354479,56.718214545430925],[-126.80059696181861,56.71804293002597],[-126.80611395879657,56.71756045857222],[-126.8141143468699,56.717384817771034],[-126.82470043023221,56.717846546161475],[-126.8314432057423,56.71840390093599],[-126.83489323719557,56.71722535796993],[-126.83452987206677,56.714646198530325],[-126.83125661426355,56.712229211275215],[-126.83120908802572,56.70948667606593],[-126.83777163851359,56.70342080656669],[-126.84040250110218,56.70178132470608],[-126.83919838861875,56.699664804976585],[-126.83788519889622,56.69793441446685],[-126.83461807993166,56.69517689233548],[-126.82937426971343,56.6926381628055],[-126.82483603576024,56.691286858619826],[-126.81592951075599,56.69020508261296],[-126.81210016106456,56.689727269276695],[-126.81247520534403,56.686650468348276],[-126.8144944085674,56.684549281301685],[-126.81569644522556,56.681646526285284],[-126.81449218834916,56.679574630957475],[-126.80947634608498,56.676289743569946],[-126.80789680007683,56.67250815758299],[-126.81270222366317,56.67094526825542],[-126.82045217583226,56.67247378519019],[-126.82737271518984,56.67412368397466],[-126.83223304417477,56.674719876055306],[-126.83655466681567,56.67657424878981],[-126.84110289195947,56.67750377752141],[-126.8451434232672,56.67781799882932],[-126.84899153294771,56.67727287440636],[-126.85388236272348,56.67666696195714],[-126.8576925003214,56.67806688559712],[-126.85953687601895,56.6792736431628],[-126.86344952199337,56.68089680523722],[-126.86600909380674,56.68268131315686],[-126.86816204083698,56.68400240882724],[-126.87012771433994,56.684302898552964],[-126.87281363711455,56.68500184791202],[-126.87983485175391,56.68692616331489],[-126.88364775855116,56.68831635999369],[-126.88425573099782,56.689118913332095],[-126.89173302942622,56.68881651946584],[-126.89239698457689,56.68653520225794],[-126.8973325113858,56.68359682526337],[-126.90524662088082,56.68226876615047],[-126.91137229932505,56.68212707488751],[-126.91841762660982,56.68267770912308],[-126.92393358924042,56.68173303983545],[-126.93049688396805,56.680457902568286],[-126.93467450167876,56.678993561491524],[-126.93772319116714,56.67678435274613],[-126.93777515872547,56.67369156171284],[-126.93768792111528,56.67278688119679],[-126.94166666432717,56.67075009265915],[-126.94602906702339,56.670431361865326],[-126.94885251285582,56.669299162542025],[-126.94920180920732,56.66695712064684],[-126.95047253659288,56.66554050058906],[-126.9538077443545,56.664762962091025],[-126.95649521986759,56.66522710134321],[-126.96135192729228,56.66633834525239],[-126.97181877307071,56.666959112850094],[-126.97607037336567,56.666971847703714],[-126.9842869134748,56.6657621135458],[-126.98973132848587,56.662645979215185],[-126.99248394891102,56.659173876762274],[-126.99522976175247,56.65621269169742],[-126.99862042524077,56.65165991954141],[-126.99998089620813,56.650923338127676],[-127.00029974923532,56.65041891022374],[-127.00344592746835,56.648261164750295],[-127.00707971629556,56.64787430871867],[-127.01174218734317,56.648178439839164],[-127.01598081208525,56.64894288129852],[-127.01907889699503,56.649698272520745],[-127.02345136302412,56.648632852596386],[-127.02595190528314,56.647788345377315],[-127.03002491051663,56.64580183793389],[-127.03346306728709,56.64456426166134],[-127.03380292027371,56.64279572342496],[-127.03186167147038,56.6409647833673],[-127.03136874736519,56.639238769326596],[-127.03408974301485,56.6375408069962],[-127.03898412581177,56.635905967151956],[-127.0414922518661,56.634550174926794],[-127.04316827262039,56.63341619125225],[-127.04724153976824,56.631375353763374],[-127.05386804661181,56.631796433236765],[-127.06038554784368,56.63263039188348],[-127.06775191944709,56.63225588396437],[-127.07097651987792,56.63124315403572],[-127.07870541892633,56.626992757242355],[-127.08291360087482,56.62237711974751],[-127.08470928886399,56.6198163861694],[-127.0885619135171,56.61840353063861],[-127.09331667260932,56.61922378875594],[-127.09816507486,56.6207870493147],[-127.10394618267122,56.62252141988088],[-127.10951283069842,56.62448147251038],[-127.11187188095752,56.62637039341601],[-127.11360860161194,56.62843496000372],[-127.11595053468284,56.63152508740396],[-127.11602534086698,56.633810165906475],[-127.11352091943999,56.63534666997203],[-127.11102000785672,56.636085330806914],[-127.11140528378938,56.63842152232465],[-127.11263035803206,56.63985410815819],[-127.11415674329467,56.6420370303008],[-127.11525914557944,56.64494966379402],[-127.11605992678801,56.64723744448419],[-127.1169684057312,56.649183670310016],[-127.11725147025916,56.651180128889216],[-127.1174235501552,56.654038069483775],[-127.11885239873008,56.655926001300195],[-127.12028926453326,56.657025039729916],[-127.12214372381028,56.65794115725422],[-127.12731448182095,56.659213762458876],[-127.13187476312883,56.65939793696874],[-127.13766744138778,56.66079016975307],[-127.14148066061374,56.662513405643146],[-127.1459376987027,56.662644217696624],[-127.15423319623135,56.66301848128474],[-127.15680701474317,56.664626859579265],[-127.1601016141718,56.66686514920696],[-127.16452155186842,56.670133026815684],[-127.1673861828699,56.67390785761361],[-127.16859934347534,56.676433679113785],[-127.16992183912245,56.6787164762401],[-127.17300034399277,56.68158390962758],[-127.17504947250202,56.68432619015403],[-127.17668013862003,56.68674058993737],[-127.17913088118041,56.69016939031562],[-127.1809743265182,56.69257284155904],[-127.18197126296303,56.696005927246446],[-127.18205951389874,56.697493158709015],[-127.18410292649925,56.70046845341943],[-127.1863575306857,56.70321768109938],[-127.18697291647855,56.70384848180314],[-127.19047806632246,56.706084158055],[-127.19191674227523,56.7075141231219],[-127.19314109615163,56.70951976123194],[-127.19467408982605,56.71174664275775],[-127.19671721832566,56.71495485061355],[-127.19866298102484,56.71718683681275],[-127.20568040990548,56.721720219567885],[-127.20835151414114,56.72458177297864],[-127.20989381184548,56.72601059707697],[-127.21217521359854,56.72659879477713],[-127.21382102842486,56.72802660498507],[-127.21484356630816,56.72973814998231],[-127.2176225660548,56.732607487200525],[-127.2200998153777,56.733874999054386],[-127.22206065171551,56.73524595652358],[-127.22247432169726,56.73570819342385],[-127.22568504949048,56.736341159052024],[-127.23015953302047,56.73606558775384],[-127.23526845027793,56.73431363823722],[-127.24172707926881,56.732674028596996],[-127.24557842096353,56.73200050451994],[-127.2495444028439,56.73034863529866],[-127.25269400629807,56.726588957117805],[-127.26372159732115,56.725074197114594],[-127.26829389053952,56.72508319794561],[-127.27193716198488,56.72452745900531],[-127.27433310198467,56.723562592467054],[-127.2754974932109,56.72105003070126],[-127.27821300079728,56.7195171781583],[-127.2832073957512,56.71860709746309],[-127.28706381380785,56.71679378916364],[-127.29040470037997,56.71474347395856],[-127.29195468724382,56.71589336182384],[-127.2935017161043,56.71725840905114],[-127.29493702474518,56.71944032507217],[-127.29492023681111,56.72166368060352],[-127.29501814539688,56.722236425800645],[-127.29562728816836,56.723781175558216],[-127.29592107434654,56.72623450059083],[-127.2969358834572,56.72892263837614],[-127.2982663716544,56.73150002950734],[-127.29970869192984,56.732982613958676],[-127.30094371072244,56.73441348365242],[-127.30259795070108,56.73567875838194],[-127.30530200299485,56.735508052352806],[-127.31040219724235,56.73426416917618],[-127.31580849057838,56.73387756701682],[-127.32027500323439,56.73417268357195],[-127.32567213518548,56.73480772689499],[-127.3301440041878,56.73453767838715],[-127.3351416251227,56.73340144147626],[-127.33763540751825,56.733402555870406],[-127.34201219038906,56.731752524062934],[-127.34379203819685,56.72969906252939],[-127.3446462049314,56.72650773916781],[-127.34685562213542,56.722459626130245],[-127.34926226401947,56.71988857774359],[-127.34886496274886,56.71743642957873],[-127.34908958208996,56.714690926461856],[-127.34744935977182,56.711669058463485],[-127.34663177506528,56.70983088789906],[-127.34737608537782,56.70720548622878],[-127.3495657721716,56.70589173949309],[-127.35299060217083,56.706133816199554],[-127.3582857313011,56.70625754169028],[-127.36119868820371,56.70551868251667],[-127.36557475553188,56.70300724757277],[-127.3696430398312,56.700221025359745],[-127.37038787002317,56.697254829953415],[-127.36988400462353,56.694624607508544],[-127.37176494959533,56.69268623776031],[-127.37436697187408,56.69183383783761],[-127.37446260701311,56.69291752552856],[-127.37746352316064,56.69475017287062],[-127.37964200774778,56.69480760021493],[-127.38421107447417,56.69482146182071],[-127.38628640075545,56.69470955640385],[-127.39200418250873,56.69306132777544],[-127.39481908019282,56.69134561902421],[-127.39514391553452,56.688894788426445],[-127.39422336306663,56.68626019384489],[-127.39465341006489,56.68380823539773],[-127.39621610969938,56.68278732017877],[-127.40161226950873,56.682791603860586],[-127.40451788259676,56.68279588592248],[-127.41095135872253,56.6827436679485],[-127.41374994407438,56.683035777684495],[-127.41457082347837,56.685088636596156],[-127.4154983715111,56.687149288936574],[-127.41746168846556,56.68829314830484],[-127.42222928095936,56.689782638076856],[-127.42440259212476,56.69104062450476],[-127.42615670978165,56.69315484765582],[-127.4254231909584,56.69464211227942],[-127.42375262092497,56.696587939304955],[-127.423743832983,56.69835407382725],[-127.42518646601799,56.7005255433579],[-127.42611506011592,56.70167173826759],[-127.42943579274454,56.70246874947325],[-127.43098763337368,56.703679732014194],[-127.43326345230224,56.70533090339401],[-127.43492133641145,56.70636137206988],[-127.43761293825435,56.70790924200315],[-127.44010158802912,56.70916348492719],[-127.44186393882262,56.7099685869265],[-127.44590878140696,56.71123224058946],[-127.44871181666329,56.71089603796297],[-127.45380640457782,56.70929686625626],[-127.45880057401236,56.70724141958374],[-127.46264297133662,56.70735934017539],[-127.46502639481888,56.708730845298575],[-127.46532668919261,56.711130014137275],[-127.46708822367296,56.712275453337256],[-127.46905632888316,56.71382194064187],[-127.47061020087995,56.71496073221076],[-127.4728904109524,56.716853244805755],[-127.47631091643892,56.71867891022453],[-127.47891110314536,56.718514704797094],[-127.48057223115163,56.718056402419286],[-127.48555999659882,56.71725506974886],[-127.48940381147622,56.717381156177545],[-127.49449321849181,56.71725964009624],[-127.50197602344294,56.71647361328558],[-127.50716728694165,56.7164759219778],[-127.51298523634625,56.71641689589334],[-127.51620985492987,56.71533019406811],[-127.51943408111838,56.712880735933325],[-127.52203270948924,56.71190882566737],[-127.52618985810223,56.709403377014034],[-127.5312811388188,56.70808803184993],[-127.53242320791131,56.70940131034086],[-127.53252288263059,56.71088831992179],[-127.53251955974436,56.71277101360226],[-127.53334341577894,56.71694791190696],[-127.53406321592546,56.719395794262375],[-127.53363927662787,56.723910258866844],[-127.53270018093878,56.72665575217638],[-127.53269728362271,56.72813502842453],[-127.53269013596427,56.731783915336756],[-127.53174709192555,56.73596388078031],[-127.5322629955398,56.738476975145154],[-127.53194402414108,56.74138546904602],[-127.53297762547007,56.743838644019704],[-127.5352632949909,56.74510251473944],[-127.53889952946525,56.74600960400406],[-127.53889450138837,56.74750685591065],[-127.53546555765058,56.74749382424201],[-127.53172412419278,56.7472154472697],[-127.52912648193623,56.746762069167005],[-127.52496701174167,56.74675739629381],[-127.52049661730778,56.74715071351467],[-127.51748337595605,56.74703370024732],[-127.51207980420862,56.74686390277217],[-127.5066736774476,56.74725871340435],[-127.50313244582337,56.74896743845319],[-127.503227582375,56.7517096666971],[-127.50405117715071,56.75456894294101],[-127.5037371970737,56.75576496148221],[-127.50226975109699,56.75987910139142],[-127.4981088270402,56.76090456146439],[-127.49456832103701,56.76187789360657],[-127.48863792162025,56.76243935657757],[-127.488218336948,56.763753099257805],[-127.48955946573233,56.7666692808361],[-127.49007535099256,56.768151563681464],[-127.4912124109142,56.77044252354699],[-127.4939118582673,56.77289475475436],[-127.49567543415023,56.77421020453339],[-127.4976452236357,56.77598047493386],[-127.50180677442323,56.77741151863871],[-127.50385758177293,56.778407505861345],[-127.50354467189493,56.77834390181491],[-127.50325757853423,56.77825870458197],[-127.50297434883335,56.77816785855316],[-127.50268128762623,56.77808721203365],[-127.50238219735236,56.77800999684336],[-127.50207459541703,56.77795081034932],[-127.50175486322269,56.77792202174652],[-127.50142578695187,56.77791687464539],[-127.50109847120879,56.777903861662594],[-127.50075902439268,56.77789547117396],[-127.50046997172531,56.7778652029806],[-127.50007448878047,56.77783840915097],[-127.4997915906638,56.77783496396533],[-127.49943644508714,56.77781778666695],[-127.49917917472747,56.77778826803336],[-127.49897993164667,56.778093154183445],[-127.4989869583029,56.778274619769775],[-127.49899189351734,56.77845498894002],[-127.49894033956542,56.77863152976063],[-127.49887542059491,56.778807104701016],[-127.49885670657171,56.77898550649798],[-127.49885135704675,56.77916487419415],[-127.49870693953955,56.77932455983724],[-127.49843198605987,56.7794207583773],[-127.49815608563037,56.779519208606764],[-127.49793576952334,56.779650634745614],[-127.49770824806139,56.77978102322357],[-127.49754101681432,56.77993424757988],[-127.49744113955876,56.78010686434842],[-127.4974491050113,56.7802860779761],[-127.4974683709972,56.78046628153687],[-127.49734244744081,56.78062799300621],[-127.4971805565483,56.78078675844094],[-127.49704871894397,56.780954141350016],[-127.49690120672206,56.78111386078417],[-127.49667856913159,56.78123858763536],[-127.49640381353483,56.78134038278327],[-127.49619098832939,56.78148068459493],[-127.4961751248071,56.78165344987517],[-127.49623490203727,56.78171551590859],[-127.49654761061588,56.78177353694992],[-127.49682781426516,56.781865553028354],[-127.4971060142517,56.78195871235918],[-127.49737636893957,56.7820609271745],[-127.49761630348577,56.78217133807465],[-127.49787249604601,56.78227819841646],[-127.49810685192892,56.7824032416317],[-127.49831710610356,56.78254089074921],[-127.4985334201095,56.78267622806871],[-127.49874969225505,56.78281044487669],[-127.49892970253173,56.78296077058457],[-127.49910160745756,56.783113431275865],[-127.49927957212279,56.78326378024919],[-127.4994878301418,56.78340257142579],[-127.4996899878511,56.783542553641254],[-127.49990831725468,56.7836767448506],[-127.50010547892316,56.78382014636249],[-127.50024295985374,56.78398329065024],[-127.50046146735521,56.784121961608875],[-127.50071805445789,56.7842646733938],[-127.50072541150304,56.784428205199866],[-127.50091710261106,56.78458847902675],[-127.50117706964082,56.78468632418556],[-127.50133950003104,56.78475280088533],[-127.50128652248904,56.78505151241868],[-127.50117547058632,56.78527917487905],[-127.5011413650199,56.785456635628094],[-127.50107340706899,56.785633368290846],[-127.5010208205956,56.785809922682546],[-127.50100114044513,56.78598945749331],[-127.50096912543397,56.78616801468191],[-127.50092272684492,56.786345617992275],[-127.50085883640216,56.786521182778614],[-127.5007444432345,56.7866894883986],[-127.50066824356752,56.78686519581933],[-127.50054659984022,56.78703134399978],[-127.50043420897521,56.78719850548726],[-127.50032082806688,56.7873667990247],[-127.50021057070593,56.787536176936165],[-127.50008170111987,56.787701287775285],[-127.50001148507319,56.78787244285126],[-127.50000003716667,56.7880530029444],[-127.49955358170477,56.788035762126576],[-127.49922728393501,56.78802497289001],[-127.49884819894277,56.78802712138285],[-127.4985656168307,56.78803375497864],[-127.49831123855873,56.788027734181135],[-127.49796240617187,56.78801720258535],[-127.49775853140278,56.788018440946466],[-127.49761182875609,56.78801453490611],[-127.49729432541083,56.78799243239861],[-127.49701407630057,56.7879004169869],[-127.49671539802321,56.787835510058954],[-127.49639075463594,56.787787712596945],[-127.49608147526887,56.7877666327467],[-127.49576993364518,56.78779264626464],[-127.49543536417308,56.787806597732164],[-127.49511276249363,56.787838340756984],[-127.49477874900113,56.78783995677884],[-127.49440375728443,56.78781514904163],[-127.49418475887674,56.78771681717038],[-127.49393211887629,56.78759645989912],[-127.49368638300935,56.78746929850685],[-127.49343482189583,56.78735004853538],[-127.49316584572779,56.78725789493322],[-127.49286476226945,56.78720981698889],[-127.49253562461317,56.787204647067654],[-127.49219585937497,56.78721640878273],[-127.49186407244233,56.78722247433475],[-127.49153761456024,56.78723408095233],[-127.49118646016414,56.78724260924969],[-127.4908837416405,56.78725842339903],[-127.49056278186005,56.787253154273266],[-127.49023401327939,56.78723116429642],[-127.48985189519539,56.78720754618979],[-127.48958544766614,56.78720725055421],[-127.48925366040324,56.78721330941649],[-127.48893759554724,56.787148584810055],[-127.48865592701631,56.78707225726062],[-127.48833833263498,56.78702099676467],[-127.48801929344275,56.786985441386406],[-127.48769330914894,56.786982464261236],[-127.48737558004751,56.78703430392219],[-127.48712680494782,56.78714698708453],[-127.48690132130459,56.78727957414932],[-127.4866883163058,56.78741650015008],[-127.48647850360722,56.7875567511245],[-127.48629014886758,56.78766873881846],[-127.48622353875466,56.787882429489585],[-127.48610707229541,56.78805186600173],[-127.48582788520126,56.78814696514607],[-127.48562716359719,56.7882837483867],[-127.48557847141645,56.78845688925608],[-127.48555466393319,56.78863758919435],[-127.48554215882073,56.788819280108235],[-127.48552352388388,56.7890010413817],[-127.48499362734411,56.78913263530867],[-127.48469521779724,56.78920778052005],[-127.4843978232541,56.789282913395056],[-127.48409830931519,56.78935582854856],[-127.48379873491048,56.789427623029646],[-127.48348047757976,56.789519802836494],[-127.4831846140943,56.78955457147823],[-127.48286289160296,56.789582911669896],[-127.48254696886286,56.78962911523989],[-127.48223436769386,56.78968200397598],[-127.48191481774289,56.78974057480642],[-127.4816036795607,56.789777755981895],[-127.48128488679106,56.7898295926011],[-127.4809589736096,56.789882630546124],[-127.4806579485479,56.789916331749275],[-127.48033602546916,56.78988639347743],[-127.48001244413256,56.789839663440226],[-127.47969096687189,56.78982092510027],[-127.47937021296794,56.78984812483058],[-127.47905236357646,56.789897703810446],[-127.47874009787765,56.789959545499364],[-127.4784415842295,56.790032435989474],[-127.47816557371263,56.79013084405406],[-127.47792843972121,56.790254582914855],[-127.47769967040807,56.79038270850131],[-127.47744468288094,56.790495443632274],[-127.47720327573994,56.79061474726145],[-127.47686506735853,56.790694810957724],[-127.47664132703396,56.79079374006948],[-127.4763674289381,56.79081367383726],[-127.47617181167334,56.791032192178236],[-127.47597718555059,56.791115098882095],[-127.47561719177753,56.79113489192112],[-127.47531250803898,56.79118094953466],[-127.47505149840758,56.79132400635021],[-127.47478139480764,56.79138984059549],[-127.47448294803385,56.79146496237229],[-127.47418117900729,56.79153339731486],[-127.47387785563363,56.791615297174],[-127.47360019243648,56.79169802490015],[-127.47331126755414,56.79178088018228],[-127.47301374586884,56.79185374667407],[-127.47276181649272,56.791966437623074],[-127.47248351575946,56.79205925611794],[-127.47226704706227,56.792161456813595],[-127.4719710744543,56.792220855323684],[-127.47181112404618,56.7922462076924],[-127.47168017234439,56.79227907484965],[-127.47142443669223,56.7923996510437],[-127.47110846667611,56.79247272276217],[-127.47082247365756,56.792579072965374],[-127.4704659486682,56.792663810428564],[-127.47025443148921,56.79276146881639],[-127.46999198829334,56.79286754971313],[-127.46964900934587,56.79293083853335],[-127.46934025639563,56.79292425704826],[-127.46903581832116,56.79295012502094],[-127.46877017776632,56.793052877699566],[-127.46845062212111,56.793112535597416],[-127.46813712359129,56.79314298684338],[-127.46780946493702,56.79315118465927],[-127.46751948414806,56.793234038798396],[-127.46722831289334,56.793285527286564],[-127.4669031717042,56.79333291736437],[-127.46656461589262,56.79335132141619],[-127.466232432824,56.793348359871366],[-127.46593061623494,56.79330807187758],[-127.46563456329542,56.7932307361764],[-127.4653753481015,56.79312496638866],[-127.46511913108407,56.793016920857696],[-127.4647784721669,56.792952415284645],[-127.46452916778867,56.7928644622803],[-127.46421489372358,56.79281982864567],[-127.46389483863399,56.79278534555264],[-127.46357782331022,56.79274970665355],[-127.46325688017936,56.79271859401229],[-127.46294157611696,56.7926739689625],[-127.46262128573004,56.79263276146102],[-127.46243177048274,56.792608006548484],[-127.46224211129811,56.792633682597135],[-127.46209936509874,56.79265322528137],[-127.4620532834969,56.79246435450184],[-127.46185077444196,56.79236690274118],[-127.46163174921688,56.79223937939256],[-127.46148523229199,56.79207741747223],[-127.46128944171359,56.79194066604879],[-127.46110846097218,56.7917891786731],[-127.46091518720237,56.791664725560906],[-127.46066186387189,56.7915241398568],[-127.46048238517365,56.791384961969676],[-127.46027120132035,56.79124726214152],[-127.45979734880059,56.791074421796765],[-127.45964573517179,56.790967427661286],[-127.4595346571687,56.79076696193387],[-127.45934200374853,56.790631293114814],[-127.45909883341818,56.790515244552466],[-127.45885243065099,56.790394749362484],[-127.4585982787413,56.790231756141736],[-127.45860427781268,56.790091606658635],[-127.45858727896079,56.78991249338114],[-127.45859490753077,56.78973422330125],[-127.45860555873355,56.789554798528144],[-127.45857225466705,56.789378110333026],[-127.4585921755545,56.7891997018124],[-127.45862438855507,56.78902115480523],[-127.45864734805426,56.78884159141819],[-127.45867136571374,56.7886631367751],[-127.45869639930088,56.78848467069681],[-127.45874094551603,56.78830710540594],[-127.4587968094183,56.78813053322876],[-127.45887835730939,56.78795591289836],[-127.4589630114726,56.78778237817129],[-127.45905902505667,56.78761095667141],[-127.45915708642245,56.78743951202595],[-127.45925309829663,56.78726809041788],[-127.45928021707509,56.78700891379959],[-127.45908057386612,56.78687780653241],[-127.45894270453798,56.78672695166976],[-127.45884260304067,56.786545413428726],[-127.45872756854757,56.78637524994828],[-127.45858828997636,56.78621432479906],[-127.45845298305032,56.7860499928234],[-127.4582740441354,56.78592425445906],[-127.45810541425593,56.78574572910273],[-127.45786216813268,56.78562631784926],[-127.45774030015151,56.785465195841994],[-127.45757764790949,56.78530901560928],[-127.45735352142731,56.785180422972445],[-127.45709622042575,56.78506901318544],[-127.45683659365422,56.784949784530426],[-127.4565978164478,56.784840406620035],[-127.45632264777085,56.784743764892035],[-127.45603751662176,56.784655079219775],[-127.45577225601967,56.78454935970635],[-127.45551001926268,56.78444248501995],[-127.45523906303016,56.78434915565674],[-127.45495927716647,56.78426601084572],[-127.45465294101359,56.784212300721435],[-127.45440295828992,56.7841041655113],[-127.4541465791031,56.78398937780455],[-127.45397991844149,56.78383547975525],[-127.45379931509582,56.78369182396404],[-127.45357504226138,56.78355874420643],[-127.4533160509596,56.78345631143241],[-127.452996225531,56.78342516194357],[-127.45266818348729,56.78342099945305],[-127.45234712740056,56.78343917071582],[-127.4520205454328,56.78341930112316],[-127.45173188322501,56.783345214298116],[-127.45153186440464,56.783202893914066],[-127.45136122110574,56.78305127868026],[-127.4511093746532,56.78294764086297],[-127.45074473311821,56.782786993200695],[-127.45043108580464,56.78283869613683],[-127.45011739568753,56.78288927813739],[-127.44980271431402,56.7829409911207],[-127.44948893865168,56.782989331246775],[-127.44916596206448,56.78301087808695],[-127.4488389563391,56.78300669433532],[-127.44851367932338,56.78302154141083],[-127.44819213703605,56.783054276230395],[-127.44786580146156,56.7830680128682],[-127.44753869522427,56.7830615856589],[-127.44721202430135,56.783066359222964],[-127.44688402779353,56.78306330225441],[-127.44655782856776,56.78305350049087],[-127.44623188062803,56.78305041897708],[-127.44590502587491,56.7830507087115],[-127.44560595679793,56.78299913757923],[-127.44527874242766,56.782989343940294],[-127.44495209726504,56.78299523216317],[-127.44462563561811,56.783005600095294],[-127.44429953358686,56.7830260490001],[-127.44397645792198,56.783017326534186],[-127.44364943631665,56.78301312985623],[-127.44332135700313,56.78300782350221],[-127.4429993257081,56.78302710308603],[-127.44267425503512,56.78304753638717],[-127.44234719157478,56.78304221623973],[-127.44201952950915,56.78304810838489],[-127.44169671516522,56.78307411731048],[-127.44137160169711,56.783093427161056],[-127.44104882824357,56.783120554651966],[-127.44073139204322,56.78315322514802],[-127.44041652924753,56.78320043460069],[-127.44018300948052,56.783203033100214],[-127.43997397149565,56.78323001299597],[-127.43990420953934,56.783255443255314],[-127.43982351340023,56.78326194415311],[-127.43964951780012,56.78340508072057],[-127.43938500575865,56.783511121751346],[-127.43916032894805,56.78364137350223],[-127.43894291168088,56.78377378544208],[-127.43868671391608,56.783883094524626],[-127.43838250125715,56.78394138702531],[-127.43809146884298,56.78402306589792],[-127.43784580065665,56.78414010081158],[-127.43769068778124,56.78429535202966],[-127.43747022249345,56.784428915951004],[-127.43723086170773,56.78455036220891],[-127.4370435852645,56.78469476332148],[-127.4367737778754,56.78479637513364],[-127.4365374772067,56.784917786120445],[-127.43626450282991,56.785017190711294],[-127.4360271831481,56.78513861205709],[-127.43579834697746,56.78526778337094],[-127.4355631974766,56.785392541712696],[-127.43534062851364,56.7855250046317],[-127.43509494247891,56.78564203443188],[-127.43483782997959,56.785754707838414],[-127.43465523678589,56.78588784708153],[-127.43445811656298,56.78604355993756],[-127.43422504811905,56.786169413390795],[-127.43395205897794,56.786268813181344],[-127.43370116775127,56.78638365666261],[-127.43352424147896,56.78655931601332],[-127.43328694065801,56.78665383657157],[-127.4331039024635,56.78680266754493],[-127.43293532763259,56.78695470008885],[-127.4328112449936,56.787118567047045],[-127.43277272712409,56.7872960552516],[-127.43268381785113,56.78746849795146],[-127.43256498672885,56.787635668508834],[-127.43244307338482,56.78780287306936],[-127.43232322405296,56.787970054683065],[-127.4321723368571,56.78812973506146],[-127.43199654891086,56.78828072555703],[-127.43179267952355,56.78842081995297],[-127.43155327623964,56.78854225600817],[-127.43129816648968,56.78865490010965],[-127.43107761289262,56.78878733331108],[-127.43091636586938,56.788943764801196],[-127.43074785594531,56.78909803507048],[-127.43054815803468,56.78924032266653],[-127.4303691945828,56.78938910472879],[-127.43025759283304,56.78955843460192],[-127.43014395772661,56.789727786848495],[-127.43002924764906,56.789896030230636],[-127.42996497203318,56.790070440315276],[-127.42994295272779,56.79025110751916],[-127.42992294063508,56.79043063192066],[-127.4298761695682,56.79060708995155],[-127.42968163230702,56.79075043986806],[-127.42946224296492,56.79088734002174],[-127.42928535793507,56.791037218302364],[-127.4291581816771,56.7912011160062],[-127.42905277373436,56.79137149718382],[-127.4289535777991,56.79154405101097],[-127.42885127450047,56.791715518419025],[-127.42873864315457,56.79188485843929],[-127.42861462603958,56.79205096206786],[-127.42844814231528,56.79220520702755],[-127.42828902697715,56.79236497371826],[-127.4280963999041,56.79250493823045],[-127.42775965141333,56.792572529211505],[-127.42758074404001,56.79269553193759],[-127.42752137666953,56.79286428357846],[-127.42749524647284,56.79304499585775],[-127.4274888208604,56.79323221477606],[-127.42748748447777,56.79341825695529],[-127.42748082722454,56.79359875458422],[-127.4274874388021,56.79377798528844],[-127.42750125505331,56.793958257224546],[-127.42751196479755,56.79413744278392],[-127.427479521361,56.794313742206306],[-127.4273534420352,56.7944798674647],[-127.42723046829556,56.79464707901938],[-127.42710641946378,56.7948131816646],[-127.4269803369094,56.79497930661047],[-127.42685005615085,56.7951432364074],[-127.42668667518946,56.79529856562502],[-127.42637744670716,56.79536248764239],[-127.42616186997208,56.79549261628128],[-127.42600479715861,56.795652357735385],[-127.42591168266833,56.79582372178625],[-127.42583719079666,56.795999363298506],[-127.42575543560264,56.79617284346247],[-127.42567268819025,56.79634745515903],[-127.42558786602102,56.79652096900786],[-127.42549996118177,56.79669451674955],[-127.42542644087807,56.79686902673469],[-127.42540841230586,56.797047408411075],[-127.42539452317325,56.79722686518315],[-127.42518282625518,56.79749030675011],[-127.42580476090322,56.79751147601915],[-127.42612952299031,56.79753479507271],[-127.4264514925677,56.79756598862903],[-127.42676799238367,56.79761517206187],[-127.42707760183815,56.797672275223384],[-127.42735972183719,56.797762179546815],[-127.42764285955127,56.797852072054006],[-127.4279190825917,56.797948764118644],[-127.42820321442501,56.798037523826764],[-127.42849624637914,56.79811721953648],[-127.4287705069529,56.798216172797375],[-127.42901075952314,56.798337913842175],[-127.42922187081571,56.7984756652411],[-127.42943095076394,56.79861343874863],[-127.42962285373082,56.79875812550351],[-127.42976418902751,56.79892130079711],[-127.42991658128862,56.7990787506057],[-127.43011258692498,56.79922339141667],[-127.43029139038661,56.79937382523246],[-127.43045800735524,56.79952775541197],[-127.43061553626801,56.79968514777016],[-127.43076093632432,56.79984715659172],[-127.43087425000631,56.800000554614954],[-127.4308839194239,56.80001277494956],[-127.43097334652298,56.80018548796038],[-127.43105772575728,56.80036049802862],[-127.4310878728621,56.8005383487342],[-127.43108942858512,56.800718756742356],[-127.43108272904847,56.80089813534933],[-127.43108629269824,56.801077400553325],[-127.43109327609923,56.801321625909516],[-127.43108661791102,56.80150212477917],[-127.43106554736725,56.80168054163162],[-127.43105888898793,56.80186104053965],[-127.43103990897677,56.8020405549759],[-127.43096946944966,56.80221503479923],[-127.43089600475497,56.80239066867724],[-127.43082767121548,56.80256624583147],[-127.43075932066017,56.802741823149724],[-127.43068684551855,56.80291632535663],[-127.43067707771615,56.80309573805722],[-127.43057781754536,56.80326717417129],[-127.43053407496988,56.8034424795794],[-127.43051921578459,56.80362306921346],[-127.43046833245957,56.8037995741637],[-127.4303815901869,56.803976475178665],[-127.43037587835254,56.804154722500954],[-127.43032081175578,56.80432903232863],[-127.4302215468425,56.80450046829977],[-127.43013360324777,56.804672899838486],[-127.42995444260234,56.804818322138495],[-127.42974946209168,56.80495842596134],[-127.42954237272114,56.805097432077716],[-127.42932906670696,56.80523426515734],[-127.42931881516584,56.80545626820886],[-127.42929875092484,56.80563467398813],[-127.42921908189984,56.80580925494494],[-127.42913108947937,56.805980565742104],[-127.42906682447497,56.80615609730121],[-127.42901388154249,56.80633262457179],[-127.42893416841683,56.80650608522816],[-127.42889463820086,56.80668470580454],[-127.42888587777671,56.80686410757],[-127.42885970312172,56.8070437014772],[-127.42885300854938,56.807223080486],[-127.42881136974601,56.80740060370894],[-127.42871308194754,56.8075709072508],[-127.42861914095542,56.80774788672452],[-127.42851056138828,56.80791718299428],[-127.42829365703271,56.80804060619088],[-127.42800287691475,56.8081345858053],[-127.42774758628948,56.808246104062455],[-127.4274966167994,56.80836317747024],[-127.42724345563364,56.80847691256213],[-127.42697763883834,56.80858070066668],[-127.42668646322862,56.80866459571664],[-127.4263768800734,56.80872179704293],[-127.42605971699382,56.80876787450496],[-127.42574249547242,56.80881283116943],[-127.4254286450455,56.8088655945507],[-127.42511475249245,56.80891723697019],[-127.42479758630746,56.80896331134752],[-127.42447589086304,56.80899822818369],[-127.42415084168857,56.80899732006768],[-127.42382397601111,56.808975138624525],[-127.42349120866976,56.80895974516378],[-127.42316893508332,56.8089789759023],[-127.42284023975975,56.80899043178567],[-127.4225142811771,56.808992891523786],[-127.4221906065236,56.80897403289202],[-127.42187128252158,56.808933833225616],[-127.42155183568266,56.808890272160255],[-127.4212286604039,56.80885683713238],[-127.42090335360078,56.80882118337734],[-127.4205772775348,56.80879226118411],[-127.42025300010192,56.808784610909335],[-127.41993393260367,56.80880716040582],[-127.41961662142145,56.808849861660136],[-127.41930178674544,56.808903741546374],[-127.41898600028095,56.808959872397836],[-127.41867000748255,56.80901040145509],[-127.41835494841115,56.809058678198596],[-127.41803998708262,56.80910919440889],[-127.41772386866022,56.809156360546226],[-127.41740541232816,56.80919570690485],[-127.41708260949962,56.8092283760999],[-127.41675751014294,56.80925434567675],[-127.41643129520575,56.80927808532363],[-127.41610611297499,56.80930181285412],[-127.41578204545335,56.809327768688654],[-127.41546021587125,56.80935930252357],[-127.41515771117291,56.809414158153736],[-127.4148407175259,56.80946580937849],[-127.41454747550853,56.80954969939894],[-127.41424982945993,56.809625792253506],[-127.41394141713613,56.80968743344095],[-127.41362446056428,56.80974020190531],[-127.413303577055,56.80976947869997],[-127.41297872626443,56.80977414358661],[-127.41265140005392,56.809767628117484],[-127.41232285272959,56.80975552186867],[-127.41199426471992,56.80974229457896],[-127.4116668735804,56.80973353602769],[-127.41133991578268,56.80973709911648],[-127.41102181594447,56.809786511668676],[-127.41072602311442,56.80985697288668],[-127.41043800817964,56.80994415852335],[-127.41013383390717,56.81001022702696],[-127.40981778014165,56.81005961431393],[-127.40949599682887,56.81009225337559],[-127.40916859040205,56.81011150497368],[-127.40884215958143,56.81012962447636],[-127.40850204844831,56.81016582236473],[-127.40820411388732,56.81020604342408],[-127.40789128575568,56.81025987351408],[-127.40758182511017,56.81032151081415],[-127.40727666700883,56.81038870388294],[-127.40698253144087,56.810477068890265],[-127.40674230270011,56.810581657553264],[-127.40642110852707,56.81065910861378],[-127.4061981315332,56.81078704263025],[-127.40594805639208,56.81090294321806],[-127.40569905361825,56.81101995232995],[-127.40544794231741,56.81113586318128],[-127.40521799630011,56.81126947436391],[-127.40498890222116,56.81137057696641],[-127.404647117273,56.81144600559706],[-127.40438018629553,56.811549758719146],[-127.40415159275747,56.8116643022198],[-127.40384534392592,56.81175839456499],[-127.4035721368205,56.81185885205852],[-127.40330834814023,56.81196481019196],[-127.40309688017875,56.81209933800856],[-127.40288137564998,56.8122361504981],[-127.40259312221583,56.81231771775787],[-127.40228351482958,56.812375981841235],[-127.40198149571177,56.81244536956931],[-127.40168376207467,56.81252031347272],[-127.40139278325316,56.81244165424796],[-127.4011101491446,56.81239540303344],[-127.40067255247003,56.81228919111492],[-127.40022923607593,56.81259095682744],[-127.40000091105425,56.81268531824095],[-127.39997363326442,56.81269681957736],[-127.39969760899494,56.8127479905425],[-127.39937226575476,56.81276831547458],[-127.3990469221727,56.81278863958982],[-127.39872178079818,56.81281456395915],[-127.39841417311845,56.8128716764624],[-127.39810676699143,56.81293438930953],[-127.39778379523,56.81296364984371],[-127.3974564041246,56.81295597575216],[-127.39712894862143,56.812946060226814],[-127.39680208370234,56.812952947273565],[-127.39647507328709,56.81295535245899],[-127.39615177663138,56.812975647205114],[-127.39589521845186,56.81299858391832],[-127.39574560721776,56.81300131673501],[-127.39552996190558,56.81304958684088],[-127.39528365736622,56.81315758132314],[-127.39495704913904,56.81317118483188],[-127.39463006075587,56.81317470575263],[-127.39430429071729,56.813154679073584],[-127.39398881903017,56.813107645145614],[-127.39366664917999,56.81307413032754],[-127.39334457699705,56.813042854964564],[-127.39302478860631,56.81307543129578],[-127.39270972117906,56.8131247658235],[-127.39240979333483,56.81319634983617],[-127.39209902580691,56.813251239891564],[-127.39177604685693,56.8132804854541],[-127.39144950055825,56.81329632073061],[-127.39112224516657,56.81329199110432],[-127.390794933167,56.81328654061057],[-127.39046808064491,56.813293411501604],[-127.39014161422563,56.813311483915854],[-127.38981610021825,56.81332730398726],[-127.38948833468483,56.813337544144176],[-127.38916876915776,56.8133476955315],[-127.38884428767099,56.81336350208096],[-127.38851408174132,56.81339169631347],[-127.38818690628243,56.81338959970766],[-127.38785975465458,56.81338862266918],[-127.3875329811219,56.813397726591454],[-127.38720646089612,56.81338553465529],[-127.38689207900538,56.81342588240907],[-127.38658996752963,56.81349411425549],[-127.38627156430063,56.813536744831794],[-127.38594837785841,56.813560374777786],[-127.38562136163732,56.81356275256733],[-127.3852948004994,56.81354943559307],[-127.38495856489529,56.813523894108855],[-127.38464654096916,56.81354403951005],[-127.38434975843707,56.81361781236101],[-127.38402902105979,56.81365261780338],[-127.38370378221433,56.813676264055594],[-127.38337846283825,56.81369766905255],[-127.38305882087366,56.81373470167454],[-127.38273927479366,56.81377397377344],[-127.38241224016942,56.81377634363794],[-127.38208341200823,56.81378545569484],[-127.38175942053604,56.813786670794244],[-127.3814692894934,56.81370235481418],[-127.38120401724765,56.813596480856255],[-127.38094278297733,56.813488322037074],[-127.38067850687838,56.81338131578208],[-127.38043719985754,56.81325725454151],[-127.38020689797892,56.813125231094766],[-127.37994401930953,56.813028294337045],[-127.37962096535001,56.81299811608479],[-127.37928903808323,56.81297811732782],[-127.378961805119,56.81294574064979],[-127.37864102361229,56.81295027578828],[-127.37833133518559,56.81300736242751],[-127.37802409498883,56.813075628727205],[-127.37772859955857,56.81315721711715],[-127.37745835814505,56.813256466603946],[-127.37722595719403,56.81338220869068],[-127.37701037043396,56.81351897806878],[-127.376807185787,56.81365897720171],[-127.37663733561317,56.813813190150135],[-127.37646235067228,56.81396745743816],[-127.37626543154657,56.81411075107369],[-127.37597280858324,56.81418670164198],[-127.37565233785689,56.81422932791348],[-127.37532832146464,56.81425854328646],[-127.3750028332612,56.81427544636922],[-127.37467497614973,56.81428340860919],[-127.37438149469955,56.814306694334604],[-127.37402356071077,56.81430488822332],[-127.37369819090766,56.81432514869746],[-127.37337069110232,56.81434318964385],[-127.37305218678512,56.81438354730615],[-127.3727371066014,56.81443395369559],[-127.37243718780879,56.814506611573954],[-127.372157331964,56.81459586590214],[-127.37192585952708,56.81471934719284],[-127.3716766334419,56.81483405089728],[-127.3714473670745,56.81496199053898],[-127.37121704260164,56.815088820324604],[-127.37123983811875,56.815269002829595],[-127.37107089613828,56.81542095742054],[-127.3709589597321,56.815590238830744],[-127.37089134772555,56.81576577496802],[-127.37086794156974,56.8159442052289],[-127.37082090996438,56.81612176486018],[-127.37065389372218,56.81627033661719],[-127.37060574802813,56.81644566668843],[-127.37069896498483,56.81661613917405],[-127.37074731033387,56.81667838378841],[-127.37076153190988,56.81679029787381],[-127.37075968363506,56.81696962075267],[-127.3707445168747,56.81714908457431],[-127.37072318277238,56.81732861366788],[-127.3707018648742,56.81750814260446],[-127.3706795134343,56.81768768249055],[-127.370666379913,56.81786712486385],[-127.37067273236335,56.81804636109118],[-127.37069753769796,56.81822540210282],[-127.37074585077141,56.81840195311382],[-127.37085340898336,56.81857227401196],[-127.37101988844601,56.81872628225878],[-127.37123394841731,56.818862977014625],[-127.37142067944447,56.81901004656993],[-127.3715404417186,56.81917687588029],[-127.37157755403506,56.8193557866107],[-127.37155208208655,56.81953423927317],[-127.3714762643086,56.81970986297088],[-127.37140659704669,56.81988542153104],[-127.37133893983881,56.82005983814208],[-127.37125278851778,56.82023332982605],[-127.37120473645045,56.82041090083348],[-127.37119673874052,56.8205902892245],[-127.3712113356114,56.82077055915297],[-127.37128416385318,56.82094460954346],[-127.37140904949341,56.821111385006766],[-127.37156843669989,56.82126770930028],[-127.37175724749572,56.82141475670984],[-127.37196019803454,56.82155605089876],[-127.37214293973382,56.821705403368796],[-127.37230840436357,56.821859421204714],[-127.37238854386739,56.82203675567681],[-127.37226705689659,56.8221971747334],[-127.37211690121654,56.82235901794088],[-127.3720492826322,56.82253455542027],[-127.37206076043392,56.82271373790008],[-127.37215415791593,56.82288869092014],[-127.37213997263731,56.82306702456438],[-127.3720807539819,56.823248076422125],[-127.37196039825825,56.82341184523095],[-127.37176331154626,56.823551771999824],[-127.37151852659537,56.82367763491016],[-127.37126416297723,56.82379351286761],[-127.37100971839716,56.82390714987337],[-127.37074999512592,56.824016359612926],[-127.37048607332143,56.82412337193084],[-127.37021900291762,56.824228175698096],[-127.36994976136258,56.824329639909635],[-127.36967536030787,56.82443003744256],[-127.36939037079853,56.82452158108517],[-127.36909450845334,56.82459530856718],[-127.36877267243355,56.82463120762759],[-127.36844319097783,56.82465373882236],[-127.36813958539221,56.82471185677211],[-127.36786820509184,56.82481109787802],[-127.36760653507132,56.82492368372346],[-127.36733837818241,56.82502737228239],[-127.36706703321764,56.8251277319625],[-127.366796759989,56.82522920041117],[-127.36653606157344,56.82534065316252],[-127.36625185397911,56.82542545765735],[-127.36593675411392,56.825478088320004],[-127.36562809886075,56.82553849483954],[-127.3653237254324,56.82560445875008],[-127.36501178620875,56.825659295137825],[-127.36469874987044,56.825711901021954],[-127.36439228324517,56.825776764116355],[-127.36408366271574,56.825838287202544],[-127.36377392861668,56.82589757996615],[-127.36354763840708,56.82602547421819],[-127.36318007461527,56.82584107242397],[-127.36297311121669,56.82570204771752],[-127.36277521135885,56.82555844478803],[-127.36256323440278,56.82542283415889],[-127.36232901706018,56.82529642223599],[-127.36214688824522,56.82516385910383],[-127.36193728964916,56.82500805085032],[-127.36175351517576,56.824857574137646],[-127.36152155179136,56.82473674041768],[-127.36121079725892,56.82470862721862],[-127.3609123781457,56.82471064122214],[-127.36064114820688,56.82461039005246],[-127.36038386372334,56.824498785444376],[-127.36011960868368,56.82439285675771],[-127.3598563492188,56.82428579645824],[-127.35958708045189,56.82418328129149],[-127.35932985763745,56.82407279468244],[-127.35908460864795,56.823953216814346],[-127.3588264340192,56.82384498053061],[-127.3585352997848,56.8237617435689],[-127.35821785254645,56.823718004433374],[-127.35791200158127,56.8236539713607],[-127.35760417968356,56.82359219952315],[-127.35728956666715,56.823541704569706],[-127.35696648189104,56.82351258986385],[-127.35663910464604,56.823507052869324],[-127.35632170093585,56.8234644293304],[-127.35600418007448,56.82341844431113],[-127.35587456035319,56.82340747367686],[-127.35570944810952,56.8233498071658],[-127.35559723613922,56.82327925989768],[-127.35547239438708,56.8232290162854],[-127.35514646506084,56.82320665071981],[-127.35482808762065,56.82316515440281],[-127.35450682298712,56.82312929072044],[-127.35418749183867,56.82309004410559],[-127.35387288736878,56.823039540872784],[-127.35356997617849,56.82297098441303],[-127.3532651951048,56.82290805001251],[-127.35296658114459,56.82281591375322],[-127.35271339448126,56.822732267715374],[-127.35245020440385,56.822597175984676],[-127.35221541188862,56.82248195897415],[-127.35195820504644,56.822371458021614],[-127.3516859420967,56.82227007880424],[-127.35139589130154,56.822187935509334],[-127.3510841861171,56.82213179219157],[-127.35076281614847,56.822092558544384],[-127.35045419664475,56.82203638156263],[-127.35016407199255,56.82195199505177],[-127.34986412615949,56.82188003730304],[-127.3495760153868,56.82179450788492],[-127.34930380183106,56.821694243934296],[-127.34906767807058,56.82157007016434],[-127.34883454522173,56.82144362356758],[-127.34861148741501,56.82131146849633],[-127.34835634913834,56.82120093913142],[-127.34807515827862,56.82110748999105],[-127.34781394954747,56.82099926404787],[-127.34754900907105,56.82090116218774],[-127.34722890410733,56.82086863064099],[-127.34690233356704,56.820856337068264],[-127.34657784988451,56.82087427829726],[-127.34625938084358,56.82091793095886],[-127.34593712536122,56.82094145062765],[-127.34560945962298,56.82092692388935],[-127.34528292807589,56.820915746470895],[-127.34495756555056,56.82093817531842],[-127.34465311517974,56.821001850015506],[-127.34440034971566,56.82110645139506],[-127.34413863645884,56.82121898958808],[-127.34382705294166,56.821283856961365],[-127.3435048707702,56.8213096110604],[-127.34329777101368,56.821311758426525],[-127.34319214530018,56.82128259621323],[-127.34289916912961,56.82120382646319],[-127.34260215456831,56.82112733919559],[-127.3422793343271,56.82110490933859],[-127.34205358686948,56.82110164471825],[-127.34197036245776,56.821067766924806],[-127.34164960294788,56.82110470807642],[-127.34134465708684,56.8211538117498],[-127.34110910146059,56.82128176187975],[-127.34088493035073,56.821412955673686],[-127.34066491397445,56.82154522672356],[-127.34040199810127,56.8216532871413],[-127.34012638942865,56.82175027190585],[-127.339864550817,56.82183030407817],[-127.33963185166874,56.821981755380754],[-127.33935202125313,56.82207542020472],[-127.33906260472298,56.82215909773042],[-127.33878068231692,56.82225166228429],[-127.33847066674734,56.82230305276186],[-127.33814616701758,56.82232097289228],[-127.33781940625359,56.8223333123554],[-127.33748859933017,56.82234681339982],[-127.33727841500833,56.82246777071155],[-127.33709169288265,56.82261426026663],[-127.33686648333729,56.82274545771326],[-127.33664545086727,56.822878852951185],[-127.33637714774348,56.822980236820676],[-127.33608993982561,56.823068367396324],[-127.33581005427132,56.82316090439408],[-127.33558274790087,56.82329100055443],[-127.33536059700667,56.82342216381765],[-127.33511022799152,56.82353792850753],[-127.33483459261781,56.823634902130074],[-127.33459353400161,56.82375281117006],[-127.3344047284616,56.82389931826107],[-127.33423667624524,56.824052335212635],[-127.33415468280805,56.82423248185657],[-127.33407648073589,56.82440362430589],[-127.33398087771333,56.82457606650631],[-127.33386564600484,56.82474422814958],[-127.3336893465926,56.82489620866992],[-127.33356993399752,56.82506217181351],[-127.33350110216853,56.82523770008413],[-127.33343539262282,56.825414316840806],[-127.33333562194059,56.82558456022577],[-127.33316033377785,56.825736529639556],[-127.33295594767753,56.825877591741964],[-127.33271284081198,56.82599663895611],[-127.33249158240508,56.826124426160725],[-127.33228301309359,56.82626328892533],[-127.3320962537181,56.82640977162819],[-127.33191369384248,56.826559572817736],[-127.33173630630274,56.82671044123285],[-127.33159314947302,56.82687216405859],[-127.33146448496363,56.82703822038452],[-127.33141927117924,56.82721462559322],[-127.33142442604183,56.82739387521133],[-127.33147874591805,56.827571499043],[-127.33163086715088,56.82772906698029],[-127.33180436097246,56.827881932545324],[-127.33193718637597,56.82804530169999],[-127.33204327447284,56.82820670430571],[-127.33216519997583,56.82838139174486],[-127.33229290961717,56.828544813209795],[-127.33237788266156,56.82871875977166],[-127.33251987339908,56.82887979294829],[-127.33270646691027,56.829025798946894],[-127.33291142061375,56.82916825392928],[-127.3331152649095,56.82930847874249],[-127.33328773801699,56.82946135310597],[-127.33351577145295,56.82958900139513],[-127.33383528986845,56.82963278009125],[-127.33413006953803,56.82970258749936],[-127.33434618810767,56.82984156349025],[-127.33442084111269,56.830013373950855],[-127.33442520856677,56.83019935588227],[-127.33452429741544,56.83036531149053],[-127.33473837012127,56.830504308005814],[-127.33493922075495,56.83064680233013],[-127.3350466716967,56.83081715406097],[-127.33513982747846,56.8309898942963],[-127.33521051666328,56.83116510725622],[-127.33527708802258,56.83134036263118],[-127.33535289786157,56.831515522804764],[-127.33548272107201,56.831680040559164],[-127.33561361261806,56.831875925278176],[-127.33574538408543,56.83200792402562],[-127.33591383260801,56.83216195751015],[-127.33603145362382,56.832329962547284],[-127.33613788030607,56.832500324209605],[-127.33626466403193,56.83266599333332],[-127.33638939773682,56.832831683500444],[-127.33643761112022,56.833009369138395],[-127.33649911033469,56.83318579712816],[-127.3365493593904,56.83336346178115],[-127.33659552302704,56.83354116857227],[-127.33668052640971,56.8337151128563],[-127.3368195072066,56.83387729389001],[-127.33699707398594,56.834027870280806],[-127.33719998008654,56.83416921983881],[-127.3373866555544,56.83431633982998],[-127.3375267140359,56.834479629746795],[-127.33766972600868,56.83463952711383],[-127.33786859648814,56.834783158686],[-127.33807450080887,56.83492223476967],[-127.33830869714726,56.835048691282594],[-127.3385075497264,56.83519120149351],[-127.33870437491713,56.835334853017],[-127.3388799432846,56.83548656840118],[-127.33900979483832,56.83565108303173],[-127.33915490735019,56.835812077934136],[-127.33930916596682,56.83597073689431],[-127.33942579588953,56.83613874976534],[-127.3395169491802,56.83631150845882],[-127.33959786919911,56.83648549353105],[-127.33967474256319,56.83666064105575],[-127.33974442880523,56.8368358628508],[-127.33975576112316,56.837015049774784],[-127.33975790956141,56.837195452298936],[-127.33976412188595,56.837374692186586],[-127.33977853969279,56.83755384727889],[-127.33965543847982,56.83773218249678],[-127.3395320112885,56.837871298190095],[-127.33926632288977,56.83799171203947],[-127.33899485287974,56.83809313399587],[-127.33873076350888,56.83820008240117],[-127.33851576451194,56.83833229830568],[-127.33836019057937,56.83849191655392],[-127.33818072203107,56.83864281609782],[-127.33806132503511,56.83880990505795],[-127.33793262621413,56.838974848625604],[-127.33780600009703,56.839140891330274],[-127.33769693473354,56.83931011464555],[-127.33757343066664,56.839477245568354],[-127.33750662046566,56.83965163595985],[-127.33745837284077,56.83982919675676],[-127.33740603820924,56.84000679971902],[-127.33738658816027,56.84018630469982],[-127.33737637791684,56.84036571436657],[-127.33737745912386,56.84054500755579],[-127.3373507977767,56.84072346633553],[-127.33720034645219,56.840883030433076],[-127.33703340403964,56.84104052315181],[-127.33695100010668,56.8412094709518],[-127.33689438674827,56.8413826353373],[-127.33671175242391,56.841531324268296],[-127.33658302237107,56.84169626694754],[-127.33648117194038,56.841866535643554],[-127.33643398958048,56.84204520589957],[-127.33641142605454,56.8422236223523],[-127.3364063703138,56.84240409963433],[-127.33637970320108,56.84258255842303],[-127.33635817313458,56.84276096426723],[-127.33637769806762,56.84294006755394],[-127.33635675933633,56.84310614014891],[-127.3364049197422,56.84331184396879],[-127.3364299193417,56.84347071910454],[-127.33651289213412,56.84364468573439],[-127.33660913238317,56.843816274236495],[-127.33668907612633,56.84399139269264],[-127.33676591249038,56.844165422513704],[-127.33682537923535,56.844341872741396],[-127.33687525678728,56.84450833596056],[-127.3370704127944,56.84475062609111],[-127.33634936488573,56.8449104698813],[-127.33605615926612,56.84497848994848],[-127.33576441260846,56.84505882151632],[-127.3354511242529,56.845110237299316],[-127.33517431822176,56.84520722343866],[-127.33489536522912,56.84530198977604],[-127.33458855496131,56.845362301984785],[-127.3342590702761,56.845390347838126],[-127.3339409390108,56.84542051733911],[-127.33364473313603,56.84549080407145],[-127.3333752861424,56.84559331388802],[-127.33309739869775,56.84568918600152],[-127.33281417900416,56.845779509057415],[-127.33257100156517,56.845899677580185],[-127.332298115378,56.84599213458576],[-127.33197151653368,56.846014541635824],[-127.33164432188768,56.84602014416382],[-127.33131618663099,56.84602799683304],[-127.33098927826165,56.8460414393455],[-127.33066246896682,56.8460582419769],[-127.33034016505759,56.84608620409003],[-127.33001918681104,56.846123117029414],[-127.32969717383492,56.84616003978153],[-127.32938490260155,56.84621143033568],[-127.32908362166384,56.846283999883596],[-127.32879401804635,56.8463676555745],[-127.32852877127871,56.84647347409236],[-127.32829814031784,56.84660135047965],[-127.32807588563509,56.84673362326127],[-127.32784939382827,56.8468625770931],[-127.3276187747127,56.84699045213515],[-127.3273754801315,56.84710837065355],[-127.32712288188783,56.84722414263744],[-127.32705013780814,56.8473470385283],[-127.32712552314199,56.847540140025316],[-127.32721018484364,56.847704009538056],[-127.32738773922875,56.84785348014062],[-127.32757448192342,56.84800173578882],[-127.32772670614062,56.84816043059051],[-127.3278809671265,56.84831910438181],[-127.32804326107096,56.84847209246059],[-127.32811161218602,56.848639490577774],[-127.32809976670089,56.84883236461884],[-127.32812748072841,56.84901138558728],[-127.32816403568708,56.8491791094515],[-127.32817775495573,56.84936948037069],[-127.32816544753796,56.84954891136991],[-127.32820752644425,56.84972778525927],[-127.32821675703345,56.84990699566573],[-127.32819213745927,56.85008655285463],[-127.32812944766592,56.8502631380606],[-127.32804850346879,56.850446634164314],[-127.32798412371481,56.85060418547614],[-127.32786606487863,56.8507824583349],[-127.32778580614605,56.850955861380555],[-127.32771484984346,56.85113141044576],[-127.32765313552227,56.8513068648529],[-127.32771352892362,56.85148106893817],[-127.32789718194343,56.85162823563428],[-127.32817961884487,56.85172284001686],[-127.3285064827691,56.85173630127727],[-127.32882571632682,56.851766649779115],[-127.32910978477226,56.85184890822188],[-127.32930769414038,56.85199256491815],[-127.32947823983211,56.85214658783349],[-127.32965791409433,56.85229715496908],[-127.32976942915452,56.85246523078124],[-127.32990334832297,56.85262859410686],[-127.33002409196621,56.85279657510371],[-127.3301529296843,56.85296111100934],[-127.33027873699436,56.853126798563906],[-127.33040354964793,56.853293616889445],[-127.3305334085327,56.85345814202516],[-127.33063986916436,56.85362851046843],[-127.33066451185401,56.85380756311125],[-127.33067893218524,56.85398784133494],[-127.33059971374786,56.85416123585969],[-127.33049368317847,56.85433154347796],[-127.33039898589185,56.85450285540198],[-127.33029193557444,56.85467317333588],[-127.33015273509886,56.854833735042],[-127.33005080528994,56.85500400026718],[-127.32985252559591,56.85514835771467],[-127.32969160996632,56.85530465899116],[-127.3295834978123,56.85547386659981],[-127.32948259817698,56.85564412084181],[-127.32937344978308,56.855813338916626],[-127.3292767301002,56.8559857914873],[-127.32917688428104,56.85615715537769],[-127.3290180526102,56.85631455514801],[-127.32884880369329,56.85646757883151],[-127.32852894270012,56.85647982143813],[-127.32820132875824,56.85647533275071],[-127.3278762077072,56.85645400779999],[-127.32755756921884,56.85641244378454],[-127.32724080778068,56.856365256480856],[-127.32691488463864,56.856350661307715],[-127.32658754122927,56.8563540104103],[-127.32626482443669,56.856373000609494],[-127.32594711272547,56.856417714006966],[-127.32564513076072,56.85647235176189],[-127.32533737511012,56.856538254414694],[-127.32501465616446,56.85655724150522],[-127.3246873108405,56.85656058581221],[-127.32436222941182,56.85654037231875],[-127.32405815037579,56.8564739965328],[-127.32373523751802,56.856457121316055],[-127.32340937137336,56.85647389521749],[-127.32308072368315,56.85646940415149],[-127.32275309404456,56.85646490186895],[-127.32242630715778,56.85645478687022],[-127.32209857913567,56.85644692196294],[-127.3217762809356,56.85647822394356],[-127.32145056702466,56.85649947399657],[-127.32113574978264,56.856448890060356],[-127.3208228544213,56.8563949238193],[-127.32050522011251,56.856352211674775],[-127.32021593763017,56.856267745764754],[-127.3199062848478,56.85621822696708],[-127.31957767800057,56.856214847293444],[-127.31925008918031,56.85621145643114],[-127.31892171189936,56.856214796708166],[-127.31859553984991,56.8562225963607],[-127.31826823502968,56.856227044734176],[-127.31794361570516,56.85625051616605],[-127.31762361378532,56.85628850841268],[-127.3173035948173,56.85632650003762],[-127.3169790668617,56.85635220942877],[-127.31665459840798,56.856380158714316],[-127.31633348341843,56.856415917743995],[-127.31601236783456,56.85645167597945],[-127.31570873882384,56.85651863439623],[-127.31542221433334,56.856605590419214],[-127.31505165513228,56.85669675998114],[-127.31470237955962,56.85671935262264],[-127.31462621327812,56.85680417405532],[-127.31452000182595,56.85700136571133],[-127.31426083831032,56.85710821360838],[-127.31414847249708,56.857275209598484],[-127.31396654114202,56.85741937657262],[-127.31372739646996,56.85754170975207],[-127.31343667889338,56.85762646248609],[-127.31311354261139,56.85763309682283],[-127.31278369957262,56.8576241090483],[-127.31245372088378,56.85761063918168],[-127.31212577844082,56.857597147875175],[-127.311798718507,56.85757916418816],[-127.31147060284333,56.85756006969953],[-127.31114459955279,56.85754319434023],[-127.310818841016,56.8575330396289],[-127.31050507635358,56.85757431308684],[-127.31018011550798,56.85758768248972],[-127.30985864415804,56.85755282761679],[-127.30954374115132,56.85749997512986],[-127.30921884955819,56.8574853250301],[-127.30889122934663,56.857480787561165],[-127.30856280244377,56.85748298133969],[-127.30823550730963,56.85748852483553],[-127.30790871557325,56.85747837325052],[-127.30758546583812,56.85748163299456],[-127.30725707675899,56.85748494373969],[-127.30693156858463,56.85748262134296],[-127.30660470146874,56.85747022592581],[-127.3062773468282,56.8574735237679],[-127.30595112373942,56.85748017135267],[-127.30562277239034,56.85748459823334],[-127.30529536327674,56.85748677348861],[-127.30501730462571,56.857490692610426],[-127.30464848149275,56.85745181876617],[-127.30433655982911,56.85739556176313],[-127.30401987790887,56.857350558430795],[-127.30372164716194,56.85730424818616],[-127.30337064479735,56.85730665578408],[-127.30304461153092,56.85731889742863],[-127.30271750586193,56.85733002837052],[-127.30239060524251,56.85734675969532],[-127.30206722782516,56.85737690266322],[-127.30177429665068,56.8573966533144],[-127.30142777554515,56.857410217196254],[-127.30110309833405,56.857432526218346],[-127.30078534881481,56.85747717800375],[-127.30047306082002,56.85753186011567],[-127.30015107535813,56.85757319085316],[-127.29986098529724,56.85764670003234],[-127.29961977979781,56.857770148062315],[-127.29936915652335,56.85788808673399],[-127.29908369489243,56.85797723692159],[-127.29876187251419,56.85799278751256],[-127.29844125614868,56.85801392849302],[-127.29813880707228,56.85808643686441],[-127.29784477612834,56.85816558419442],[-127.29753236553736,56.858216898420196],[-127.2972122520475,56.85825259979672],[-127.29690211802719,56.858310613636895],[-127.29659740685119,56.858377537732984],[-127.29629376666202,56.8584455710531],[-127.29598040886967,56.85849913227981],[-127.29566262824028,56.85854377170899],[-127.29533795459658,56.85856606615087],[-127.29500959280752,56.85857046616517],[-127.29468187356761,56.858563652408655],[-127.29435679101306,56.858543363681335],[-127.29403244307646,56.858514101595205],[-127.29371199662963,56.85847919652269],[-127.29339053272653,56.8584443008124],[-127.29307097191446,56.85840490272913],[-127.29275039372074,56.858365514007616],[-127.29243079673705,56.858324994071005],[-127.29211990384859,56.85826869751055],[-127.2918207812866,56.85819547319914],[-127.29150499204471,56.85814594786961],[-127.29121205003395,56.85807378128073],[-127.2909615983375,56.85795188243272],[-127.29069833940022,56.85784579970407],[-127.29039558788705,56.857787176760624],[-127.29007405792257,56.857750032289154],[-127.28974565237925,56.85772192061119],[-127.28941928334667,56.85769378785815],[-127.28909413611746,56.85767124539469],[-127.28876636723002,56.85766217597459],[-127.2884386941555,56.857656466725714],[-127.28811198091292,56.85764850581638],[-127.28778396216512,56.85766297004494],[-127.28745992600878,56.857704289496425],[-127.2871933045329,56.85780555334799],[-127.2870635789295,56.85794804276334],[-127.28701820090986,56.858126676438616],[-127.28697384050382,56.85830530001544],[-127.28693759414026,56.858480481123294],[-127.28680548731221,56.85864428629341],[-127.28677036985106,56.85882281813102],[-127.28674134603436,56.85890715488201],[-127.2867721974857,56.85900098340725],[-127.28679458777843,56.85918006532799],[-127.28689591831397,56.85935612266615],[-127.2869027101964,56.859436742125006],[-127.28690893184574,56.8595308150567],[-127.28683557226412,56.85970188192384],[-127.28678392147926,56.85987721597284],[-127.28680936209882,56.86005514707994],[-127.2869013546059,56.86022793523388],[-127.2870554960855,56.860386658781984],[-127.28708508082671,56.860565669434145],[-127.28710952609218,56.86074473110826],[-127.28719946895858,56.86091753949725],[-127.28730267188051,56.86108797493208],[-127.2874446310099,56.86125018102918],[-127.28758452225905,56.86141240752898],[-127.28777015960578,56.86156073186229],[-127.28793549580519,56.86171598147487],[-127.28810996651976,56.86186777822547],[-127.28828526993951,56.86201396323324],[-127.28845177774005,56.86217368324766],[-127.28857329342345,56.86233833270449],[-127.28869791836601,56.8625040718346],[-127.28880216670579,56.86267449596891],[-127.28888291353266,56.86284851555567],[-127.28897591916314,56.86302017198189],[-127.28909446456686,56.86318821256902],[-127.28921802251142,56.863352841289206],[-127.28939147106547,56.863504646758095],[-127.2895720390894,56.86365413992853],[-127.28973635688874,56.863809397739196],[-127.28986407895627,56.863975105203984],[-127.28997342277566,56.86414435731934],[-127.29009502597049,56.86431124612348],[-127.29023186842592,56.86447350062965],[-127.29037278025005,56.864634593880425],[-127.29048007533495,56.864803866062246],[-127.29055776312352,56.86497791539697],[-127.29065590523076,56.865149519869746],[-127.29075610106689,56.86532110385854],[-127.29089398452015,56.865483347474814],[-127.29104311428486,56.86564435837793],[-127.29114429390836,56.86581481170239],[-127.29127811242078,56.86597821611479],[-127.291408919411,56.8661438917142],[-127.29147228116777,56.8663192040056],[-127.29153464628632,56.866495646872046],[-127.2916134143645,56.866670805744626],[-127.29171049331816,56.866841299623275],[-127.29181476665258,56.867011721807685],[-127.2919170254213,56.86718328465839],[-127.29198673744172,56.86736413689739],[-127.29206715009737,56.86752695201065],[-127.29212450806592,56.86770680662574],[-127.29218380712707,56.86788327993],[-127.29228017320442,56.868062745939206],[-127.2923348052592,56.86822245584144],[-127.29239465434182,56.86850762755039],[-127.29215645123793,56.86847750146927],[-127.2918493957389,56.868415561567744],[-127.29153553847135,56.868364895258765],[-127.29121582258264,56.86832325178463],[-127.29089614482434,56.868282727809365],[-127.29057742759137,56.868239952181455],[-127.290256716475,56.868199436927306],[-127.28993400686016,56.86816006141941],[-127.28961429439333,56.86811841400386],[-127.28930044247174,56.86806774229731],[-127.28900134511083,56.867997872047354],[-127.28874486395893,56.867881630779934],[-127.28859539877226,56.8677105344315],[-127.28842155145196,56.867577782464735],[-127.2881196611183,56.86754716099124],[-127.28779480521652,56.86753581798833],[-127.28745598942093,56.86753693995434],[-127.28711432633652,56.86754481322779],[-127.28677782466615,56.86755375505526],[-127.28645066496532,56.86756596532905],[-127.2861239691055,56.8675916180536],[-127.28580390013875,56.86763177279465],[-127.28549261812603,56.867688649505425],[-127.28519332665138,56.86776669913195],[-127.28492139370488,56.86786464887115],[-127.28470934035367,56.86800346928209],[-127.28452332887953,56.86815323802978],[-127.28433306092224,56.868298566028855],[-127.28407275708403,56.86840648473123],[-127.2837776377063,56.86848673105736],[-127.28346307193183,56.868538032048285],[-127.28314325287334,56.86858602226542],[-127.28284223765388,56.86851951880243],[-127.28255685008158,56.86842932636492],[-127.28226356570482,56.86834817662493],[-127.28195946611267,56.868281701646154],[-127.28164562290742,56.8682310114157],[-127.2813211868398,56.86820171752368],[-127.28099870924024,56.86816904151939],[-127.28067527175725,56.86813861550666],[-127.28035187191887,56.86810930897674],[-127.28002934236089,56.86807551043829],[-127.27970781096664,56.868040580602184],[-127.279385373184,56.868009020879505],[-127.27906193831164,56.86797859084775],[-127.27873854103703,56.86794928029896],[-127.2784132395664,56.86792447033394],[-127.27809646448416,56.867878283115665],[-127.27777589706999,56.86784109772268],[-127.27745440671542,56.86780728259593],[-127.27713979785932,56.8677644336945],[-127.27681545961616,56.867737368959986],[-127.27648833030979,56.86771929611527],[-127.27616146040197,56.86770906447219],[-127.27583897485643,56.86767637581413],[-127.27551463826401,56.86764930782896],[-127.27518845462424,56.86762898111529],[-127.27486158582498,56.86761874619759],[-127.27453288600712,56.86761525236755],[-127.27420679350823,56.86759716360441],[-127.27388149791392,56.86757234228161],[-127.27356576584167,56.86752613384932],[-127.2732607637749,56.86746300954465],[-127.27296852454107,56.86738182884699],[-127.27267632344729,56.86730176778531],[-127.27240703973105,56.86720018888835],[-127.27215677269655,56.86708385447348],[-127.27189045242048,56.8669788835272],[-127.27163820918886,56.866864808838606],[-127.27138593057313,56.866749613377614],[-127.27111660080946,56.86664691170869],[-127.27083430520464,56.86655554304562],[-127.27054901345281,56.86646644443666],[-127.2702587298586,56.86638187670713],[-127.26994586203088,56.86632890768315],[-127.26964694004123,56.866262353601265],[-127.26937347565733,56.86615856824403],[-127.26906450815781,56.8661302132723],[-127.26875317681106,56.86618592947086],[-127.2684295888304,56.866212627862716],[-127.26810126934008,56.866220320645944],[-127.26781972665957,56.86630824221615],[-127.26761272417387,56.86644586400433],[-127.26743183123676,56.86659667814751],[-127.26717650554941,56.866701151885515],[-127.26683274422265,56.866770628034594],[-127.26661579735304,56.86685567476965],[-127.26634907451209,56.8669568961966],[-127.26602555184934,56.86698582918851],[-127.26573135069499,56.867063783864666],[-127.26540442513364,56.86708266265012],[-127.2650831371326,56.86711717472722],[-127.26479007782204,56.8671984780609],[-127.26449587255516,56.86727642994577],[-127.26417674510337,56.86731428064686],[-127.26386648875591,56.867372215821014],[-127.26358544967125,56.867444434085556],[-127.2633066900097,56.86755473162977],[-127.26302843419012,56.86764933456344],[-127.26273631155821,56.86772838278382],[-127.26246337689527,56.86782853593994],[-127.26218184627086,56.867917565657834],[-127.26189346640639,56.86801674723515],[-127.26158584964251,56.86806120341792],[-127.26127018657355,56.868111340350204],[-127.26095223007786,56.86815365425455],[-127.26062993103086,56.86818928567865],[-127.26031197319233,56.86823159801588],[-127.25999756107494,56.86828844357019],[-127.25970117519199,56.86836304369375],[-127.25950543271813,56.86850054299043],[-127.25950595419607,56.868674238603916],[-127.25947778578266,56.86884933344576],[-127.25935497682364,56.86901974387528],[-127.25917194999474,56.869169446384106],[-127.25896181352806,56.86930708459141],[-127.25872452716182,56.86943041745218],[-127.25845129813777,56.869522720365566],[-127.25816345706569,56.86960731986859],[-127.25787772438417,56.86969413958069],[-127.25757499833388,56.86976319299847],[-127.2572967125693,56.869857783771494],[-127.25705511252808,56.869975552097415],[-127.25685853642115,56.87011977934901],[-127.25668169056914,56.87027053906994],[-127.25648821951779,56.87041585633006],[-127.25629985166717,56.87056000323036],[-127.25577281408829,56.87039476736739],[-127.25549254411814,56.87030222493037],[-127.25523024398932,56.870193818936386],[-127.25496696338163,56.870086542568494],[-127.25473391875256,56.86996216350055],[-127.25447269421906,56.86985486628702],[-127.2541824567424,56.86977138270013],[-127.25391429553295,56.86967199600848],[-127.25362208025663,56.86959077161753],[-127.2533541035101,56.86949698526528],[-127.25305693151147,56.86942141076722],[-127.25275672558793,56.86934698555097],[-127.25245072483087,56.86928382208403],[-127.25213783803504,56.86922968955869],[-127.25182299153566,56.86917893714378],[-127.25150720013514,56.869130434385944],[-127.25119629640017,56.869074039192796],[-127.25089319034716,56.86900524095121],[-127.25058514227415,56.868942092895544],[-127.2502810925513,56.86887554364202],[-127.24998096872831,56.86880335262386],[-127.24968084602706,56.86873116091484],[-127.24938464937163,56.86865332747849],[-127.24909942784315,56.86856530188014],[-127.24882614725759,56.86846595425075],[-127.24854385488356,56.86837341668235],[-127.24828162355817,56.868266117071684],[-127.24801837538665,56.86815882673561],[-127.24773710549259,56.86806627763279],[-127.24744195257438,56.867988429841255],[-127.24713197374842,56.86792865426353],[-127.24682008751628,56.86787337887227],[-127.2465101828826,56.86781584240891],[-127.24621296491777,56.867738011719965],[-127.2459109129381,56.86766919195615],[-127.24560684516007,56.867601511504205],[-127.24530575780217,56.86753043980557],[-127.24500759839378,56.86745485674104],[-127.24469377433643,56.86740295685332],[-127.24437800640673,56.867354436797406],[-127.2440612406469,56.86730704619603],[-127.2437426555394,56.867266396139655],[-127.24341825636208,56.86723700748131],[-127.2430930917754,56.867215469859815],[-127.24276612687963,56.86720179318235],[-127.24243919825011,56.8671892359796],[-127.24211032492794,56.867180058507806],[-127.24176271297463,56.86719459310522],[-127.24149441988638,56.86728120946615],[-127.24118504009081,56.86733571974884],[-127.24089289157104,56.867414718606035],[-127.24038126186117,56.86747004092878],[-127.2400643779974,56.867514534481806],[-127.23976474444623,56.867584637181544],[-127.2395084824585,56.86769466790952],[-127.23916918475972,56.86771247799119],[-127.23887849094642,56.8677735280766],[-127.23866632503102,56.86791339333311],[-127.23839016708293,56.868011284732745],[-127.23810022389473,56.86809585939373],[-127.23777558045596,56.86812249107099],[-127.23745206254797,56.868152473124205],[-127.23713183077157,56.868189146884355],[-127.23680340265416,56.86822589799759],[-127.23649011246776,56.868254659478815],[-127.23616882476769,56.86829022026982],[-127.23587965843926,56.868366938013914],[-127.23556647393099,56.86839905817114],[-127.23524291616515,56.86842791441914],[-127.23492605434437,56.86847351574969],[-127.2346047633843,56.8685090726721],[-127.23429664937508,56.86857139883392],[-127.23399603399903,56.86864373870639],[-127.23369111309283,56.868709394967865],[-127.23338083562106,56.86876837758159],[-127.23307589626084,56.86883403255844],[-127.23278063199851,56.86891304257363],[-127.2324885258597,56.86899426318844],[-127.23220175743492,56.86908215628964],[-127.23196224604435,56.86920321922796],[-127.2317437092986,56.86933753026916],[-127.2315178340614,56.869467428038],[-127.23132218354952,56.86961160687355],[-127.23110781993081,56.86974811850962],[-127.23092466376868,56.86989778138142],[-127.23078708436852,56.87005933865319],[-127.23065989591852,56.8702252797803],[-127.23055236235717,56.870395516919956],[-127.23043552543007,56.87056360093595],[-127.23031970586135,56.87073167520646],[-127.23017903297148,56.87089326120577],[-127.2300248979018,56.871051612772284],[-127.22986974318043,56.87120997382652],[-127.22971872927643,56.87136941609103],[-127.22956878461338,56.87152996869326],[-127.22937418686524,56.87167525527871],[-127.22917448200906,56.87182171060443],[-127.22897163269096,56.871965954123645],[-127.22875394575735,56.872095769495026],[-127.22846204154791,56.8721523248325],[-127.22814517679522,56.87219903001575],[-127.22785625020168,56.87228469251706],[-127.22757480183232,56.87237924875279],[-127.22728930031957,56.87247608400095],[-127.22703825412033,56.87259052302661],[-127.22693873320165,56.87275507821316],[-127.226925143143,56.872941233564],[-127.22696056670316,56.873119080893034],[-127.22701038021265,56.87329679213924],[-127.22702941349908,56.873475915155105],[-127.22693421047195,56.87364715343602],[-127.22688953522241,56.87382463770447],[-127.22689008804555,56.87400393556158],[-127.22696040038831,56.87418033243865],[-127.22705692801938,56.87434191298408],[-127.22704276845171,56.87451014360694],[-127.2271564719137,56.87469509522116],[-127.22730770969848,56.87486512332304],[-127.22742921824808,56.87503655318547],[-127.22751687392213,56.87520942390362],[-127.22761985162478,56.875379908321904],[-127.22773916728144,56.87554687614539],[-127.22788091292098,56.87570914902938],[-127.22800228417377,56.87587609721263],[-127.2280725885769,56.87605249385431],[-127.22804434353013,56.876229823299674],[-127.22798631456942,56.876407434652464],[-127.2279499809795,56.87658932325158],[-127.22790952085697,56.876770130265136],[-127.22783070604874,56.87694009378218],[-127.22761407701437,56.877072138636024],[-127.22735812556118,56.87719446928296],[-127.22706748410462,56.877259974512704],[-127.22673577691161,56.877260869849955],[-127.22640575100932,56.877250541981724],[-127.22607949306378,56.87722897120542],[-127.22575516589644,56.87720401943307],[-127.22543074892421,56.87717570576404],[-127.22510731543204,56.87714626135648],[-127.22478381136928,56.877114575522235],[-127.22446107772409,56.87707503709515],[-127.22413739722283,56.87703774809767],[-127.22381428540503,56.87701838326609],[-127.22348997226064,56.877025924455374],[-127.22316524368892,56.87705251972307],[-127.22284074657028,56.877086956511036],[-127.22251731931289,56.877122503047715],[-127.22219601589529,56.877160270058084],[-127.2218768362684,56.87720025755804],[-127.2215566728699,56.87724137417499],[-127.22123533209492,56.87727801849779],[-127.22091277863197,56.87730907020581],[-127.22058686928371,56.87733118751756],[-127.22026088876042,56.87735106338706],[-127.21993490790159,56.87737093843792],[-127.21960794353579,56.87739194255653],[-127.21926939317183,56.87740408956641],[-127.21892771871323,56.87741514439577],[-127.21860294837504,56.877440607940514],[-127.21831413169316,56.87749935241182],[-127.21810360872217,56.87763020312068],[-127.21793860558014,56.87780433134765],[-127.21773752447226,56.87794181669974],[-127.21744633127848,56.87799049571346],[-127.21710529769942,56.877989212591565],[-127.21676345737325,56.87799466000575],[-127.21645176212989,56.87804464967843],[-127.2161510913093,56.878118068797214],[-127.21585582727133,56.87820040170181],[-127.21556572298717,56.87828380623301],[-127.21528204144819,56.87837499446213],[-127.21501205121697,56.87847726030121],[-127.21474941515496,56.87858505994389],[-127.21449414963972,56.87869839328182],[-127.21424723799099,56.8788161305133],[-127.21400560798479,56.878938300431244],[-127.21376301184985,56.879062720220766],[-127.21353291199108,56.879192625903435],[-127.21332104694385,56.87931451615344],[-127.21316819615278,56.87948404202069],[-127.21310240512943,56.879646029946166],[-127.21300238630347,56.879829630075484],[-127.21280191044131,56.87998727364379],[-127.21261240336166,56.88013472859434],[-127.21235921019664,56.88024915896966],[-127.21209420091135,56.88034688954878],[-127.21203811094733,56.88052335473458],[-127.21201196694548,56.880705143432216],[-127.21198987624862,56.88088465299441],[-127.2120161453827,56.88106707281774],[-127.21206295220622,56.88124930082489],[-127.21204570627387,56.8814198000403],[-127.21180528263281,56.881548678454465],[-127.2115257296333,56.88164206109278],[-127.21123934673238,56.881746713330415],[-127.21101557525155,56.88181716125435],[-127.2107511677718,56.881967553787106],[-127.21047059051202,56.88206094368243],[-127.21015767691927,56.88207282739934],[-127.20984804691068,56.88205890489897],[-127.2095211436132,56.8820507458931],[-127.20919350244806,56.88205155810349],[-127.20886563439122,56.882045647728745],[-127.2085394509364,56.88202739374103],[-127.20821219762601,56.88200802825271],[-127.20788582079703,56.88201666990725],[-127.20755854885968,56.882029801648834],[-127.20723161126533,56.882020516557034],[-127.20690542879531,56.88200225846266],[-127.20657828154205,56.88198624981132],[-127.20647193927255,56.88219904039674],[-127.2065278151931,56.882376703403956],[-127.20655600833167,56.882555744452986],[-127.20656777112494,56.88273493828942],[-127.20656006581503,56.88291543380519],[-127.2066230698291,56.883090789300034],[-127.20673617553994,56.88325895502212],[-127.20684422582947,56.883429408979616],[-127.20696960311345,56.88359521913627],[-127.20715907502986,56.88374138200558],[-127.20739022444185,56.88387370910846],[-127.20754532775294,56.88400450218144],[-127.20768429735568,56.88417802979989],[-127.20776691761185,56.88435656433417],[-127.2077777028736,56.8845368880706],[-127.20771463542962,56.88472126108965],[-127.20764935466454,56.884900051456455],[-127.20755800527006,56.88506675726064],[-127.20748521078639,56.885235531663106],[-127.2073257636702,56.885392785093664],[-127.20711524907706,56.8855269797559],[-127.20687899642931,56.885659172138865],[-127.20666247335392,56.88579790452795],[-127.20645263937959,56.885920885306405],[-127.20625589813608,56.886068398292565],[-127.20609856658204,56.886227871852796],[-127.2059701299925,56.88639155931311],[-127.20586658560867,56.88656285989906],[-127.20578577469271,56.886738431788736],[-127.20572659231146,56.88691604399842],[-127.20569207451581,56.88709342705942],[-127.20568740214065,56.88727277416022],[-127.20570535955913,56.88745303169543],[-127.20573049823284,56.88763322253433],[-127.2057504751271,56.887812340698545],[-127.20576741425442,56.88799260775349],[-127.20579046446261,56.888171697403706],[-127.20582174781738,56.88835071057921],[-127.20587759465496,56.888527254247826],[-127.20596823889228,56.88869899198868],[-127.20607321157047,56.888869475893706],[-127.20613523922688,56.88904596209175],[-127.20622693970135,56.88921881056543],[-127.20629200666883,56.889394147843554],[-127.2063437837951,56.88957184993959],[-127.20639043411707,56.88974959969353],[-127.20644735591117,56.889927253978335],[-127.20646012075979,56.890105318728644],[-127.20649344658003,56.890284313024154],[-127.20649904872653,56.89046356504697],[-127.20649236045921,56.89064405198856],[-127.20648358285963,56.89082343772057],[-127.20647480517852,56.89100282347277],[-127.20646602741581,56.89118220924524],[-127.2064551952867,56.891361614132734],[-127.2064062968039,56.89153913155638],[-127.20638515776638,56.891717511622936],[-127.20642666687121,56.89189530942118],[-127.20643641260021,56.89207564377147],[-127.20645639506839,56.89225476234202],[-127.20648254074763,56.892433823644616],[-127.20650868666942,56.89261288496278],[-127.20653277847282,56.89279196539251],[-127.20654968842072,56.89297111259936],[-127.20657643377119,56.89313672056884],[-127.20650361627513,56.89333799426428],[-127.20643227575444,56.89352132376428],[-127.20637164680842,56.8936855025878],[-127.20632897827535,56.89386520362455],[-127.20623029822545,56.894028615378566],[-127.20597409659429,56.89414866452301],[-127.20570711481807,56.894253124144605],[-127.20555793044062,56.89441140123394],[-127.20551418688224,56.894589991375646],[-127.20549411249131,56.89476948236222],[-127.20542046515013,56.89494498825481],[-127.20534990708535,56.89512046543335],[-127.20529069130122,56.89529695792657],[-127.20524591003286,56.89547555769501],[-127.2052316476607,56.89564378822388],[-127.20525006161357,56.89583861108226],[-127.2051996267004,56.896000453566955],[-127.20509803770838,56.896169494871366],[-127.20510164963508,56.896351007371514],[-127.20482941718075,56.89645215195472],[-127.20463728132924,56.896518933061536],[-127.20427575099129,56.896623146422165],[-127.20392728415428,56.89661965477792],[-127.20362746390191,56.89669303630743],[-127.2033425484429,56.896783088789434],[-127.20307134384076,56.8968842201154],[-127.20278956915664,56.89697648357093],[-127.20251839665107,56.897078734085596],[-127.20223445994169,56.897167654387054],[-127.20193145387195,56.8972376994979],[-127.20160394622879,56.897247455358205],[-127.20127645485684,56.897257210240426],[-127.20095824591695,56.897301618698805],[-127.200670106642,56.89738721246012],[-127.20041774915993,56.89750049105419],[-127.20016969005681,56.89761933268392],[-127.20000062884647,56.89770158267808],[-127.1999236676167,56.89773815500938],[-127.1996735160091,56.897855894368604],[-127.19940642191332,56.897958100618254],[-127.19912991468651,56.89805478999131],[-127.19887345545574,56.89816810343865],[-127.19861481924956,56.89827807451135],[-127.19834780543495,56.898382519125605],[-127.19810804086111,56.89850464216924],[-127.1978954887895,56.89864220282724],[-127.19767977542794,56.898777550992165],[-127.19745257774015,56.89890740145608],[-127.19722539496132,56.8990372513819],[-127.19701901923588,56.89917587429171],[-127.1968095681777,56.89931452522363],[-127.1965949175643,56.899450982432676],[-127.19638021426726,56.89958631911589],[-127.19616449031614,56.89972166484632],[-127.19593208390715,56.899849319313844],[-127.19570071155425,56.899976963837936],[-127.19565927513908,56.899999758563716],[-127.19547141069086,56.90010570952589],[-127.19523269660802,56.90022893819544],[-127.19494968617038,56.90031559254126],[-127.19465622720871,56.900396739138294],[-127.19436276701317,56.90047788507625],[-127.19407351913085,56.90056235356504],[-127.19378958843434,56.900652375782784],[-127.19352147487743,56.900755699818816],[-127.19323647121587,56.90084461002263],[-127.19293659782299,56.900917967063194],[-127.19262924629217,56.90098242686404],[-127.19233253032931,56.90105799479959],[-127.19206019661488,56.901157992577716],[-127.19178894987222,56.901260221109226],[-127.1915250401529,56.901366864349185],[-127.19128003743138,56.90148678141642],[-127.19105383790499,56.901616611408684],[-127.19083497531108,56.90175085632613],[-127.19060240080744,56.901874020071084],[-127.19034482096222,56.901986206111694],[-127.19008717052415,56.90209615097348],[-127.18979898945157,56.90218284136219],[-127.1895246208936,56.902283973064876],[-127.18925316881833,56.902379474192735],[-127.18902177728869,56.90250822751371],[-127.18882882210735,56.90265007633385],[-127.18859000207057,56.90277105231613],[-127.18839289967204,56.90291181779794],[-127.18830574129096,56.90308519641009],[-127.18812733753055,56.90323251428335],[-127.18783393260408,56.903216147800286],[-127.18757366025775,56.90330818112976],[-127.18734849130718,56.90343911583767],[-127.18711380609793,56.90356117192178],[-127.18692097646918,56.90370749936419],[-127.18675199234653,56.90386033249692],[-127.18661300239302,56.90401961522277],[-127.18663498846993,56.904199839787985],[-127.18672560189883,56.904372713199784],[-127.18683156792024,56.904543204929304],[-127.186950797254,56.90471021338368],[-127.18705063461711,56.90488188167161],[-127.18715556774082,56.90505238266243],[-127.18726253879542,56.90522174430484],[-127.18735008309307,56.90539464550772],[-127.18739255495763,56.90557244149614],[-127.1873970693275,56.90575282593178],[-127.18739847488197,56.90593211816188],[-127.1873885857335,56.90611151370077],[-127.1873817709061,56.90629088114558],[-127.18732452893961,56.90646846842097],[-127.1872641775351,56.90664496346134],[-127.18720486135763,56.90682144902366],[-127.18718467900631,56.90700093875277],[-127.18720150536254,56.907180090130026],[-127.1872152409356,56.90735926978706],[-127.18720431477135,56.90753867494971],[-127.18719955400041,56.90771802376188],[-127.18719967482696,56.907989221939815],[-127.18733829457466,56.90815157060766],[-127.18748201078166,56.908312751889895],[-127.18766037276889,56.90846353023573],[-127.1878438314716,56.90861314108221],[-127.18801708448296,56.90876508638758],[-127.18817612475206,56.908922764835374],[-127.18833920778829,56.90907816480093],[-127.18852267204483,56.90922777474858],[-127.18870510187662,56.90937739393402],[-127.18890274867768,56.90952014961138],[-127.18909841072505,56.90966516450935],[-127.18926863323793,56.909818256748714],[-127.18941849503251,56.90997825925025],[-127.1895601878809,56.91013945709995],[-127.18966720169152,56.91030993781938],[-127.18973428428716,56.91048526697024],[-127.18978602990374,56.91066297795499],[-127.18986335575326,56.91083709257871],[-127.18996729805107,56.91100760130202],[-127.19006407388378,56.91117929630608],[-127.19010951845154,56.911386202209066],[-127.19030344922234,56.91150769756726],[-127.19059950984445,56.91157446457961],[-127.19096312211624,56.91163164613391],[-127.19107358018418,56.91171356206367],[-127.19080930365027,56.91184374117106],[-127.19076032536682,56.91202237556116],[-127.19098414361713,56.912179457145356],[-127.19113909926524,56.9123371700172],[-127.19130120732696,56.912493696457595],[-127.19141944463779,56.91266071118003],[-127.19149469182764,56.91283372357174],[-127.19154126726785,56.913010361005874],[-127.19158171137319,56.91318817536873],[-127.19165295320236,56.91336458648561],[-127.19173848017552,56.91353750451158],[-127.19185368218662,56.91370566751679],[-127.19194551026034,56.913783271206135],[-127.19215270748168,56.91390128040476],[-127.19218104040482,56.91398619077834],[-127.19218965453786,56.91416541795553],[-127.19219215326835,56.914345821956864],[-127.19219116063415,56.91448031078933],[-127.19204659568784,56.91469232270032],[-127.19195322587018,56.91486464135077],[-127.1918649858777,56.915036912868636],[-127.19169706049053,56.915191984907324],[-127.19145820641606,56.915314087504996],[-127.19119951976992,56.91542628558083],[-127.1909123122284,56.91551409004203],[-127.19065370993819,56.9156296482397],[-127.19057154189814,56.91579850123554],[-127.19052770472423,56.91597708881656],[-127.190491122711,56.91615785122734],[-127.19043906226669,56.91633651419009],[-127.1903497579856,56.91650767384195],[-127.19021505599152,56.91667364615365],[-127.19006171375254,56.91683530647036],[-127.18991971912592,56.916997983313706],[-127.18981797334672,56.917165894626756],[-127.1898161951691,56.91734185544598],[-127.18987116388617,56.91752402042178],[-127.18988296351216,56.917706580892606],[-127.18983509510588,56.91778770738388],[-127.18954873125534,56.91780377841379],[-127.18933381520884,56.91783600457098],[-127.18901129330081,56.917879301491446],[-127.18870229715549,56.917928077146456],[-127.18860852435216,56.91812168989435],[-127.18862700316876,56.918320999368134],[-127.18864670942101,56.9184934016404],[-127.18864425139621,56.918680575434735],[-127.18863552251109,56.91886444463934],[-127.18865344948203,56.919045828592374],[-127.18862499177105,56.91922315438476],[-127.18853988788742,56.91939763654452],[-127.18843007916844,56.91957122403799],[-127.18833153365358,56.91974358773699],[-127.18821850947639,56.91991272182191],[-127.18808888325289,56.92007752500719],[-127.1879374709018,56.92023580331784],[-127.18776218189555,56.920386455122596],[-127.18757238066598,56.92053387737429],[-127.18737741208484,56.9206802259184],[-127.18718762438647,56.92082764748614],[-127.1870133839505,56.92097940937188],[-127.186853705656,56.92113664130994],[-127.18669412945911,56.92129723412719],[-127.18654386417212,56.92145998303721],[-127.18640810878247,56.92162596125631],[-127.18629501975494,56.921793973673864],[-127.18622614033818,56.921961582281284],[-127.18623144618641,56.92213411675748],[-127.18623001240633,56.922321281492],[-127.18624079452218,56.92250497268667],[-127.18630791720776,56.92268142536607],[-127.1863955313086,56.92285544954727],[-127.18651289722354,56.92302696060515],[-127.18666691088056,56.923186930111136],[-127.1868615795952,56.92333083864246],[-127.1870704184701,56.92346789340065],[-127.18728231658447,56.92360379921808],[-127.18749727395166,56.92373855607968],[-127.18771629392496,56.923872154796044],[-127.18793735339104,56.92400461384771],[-127.18816045396622,56.92413705387956],[-127.18838559404973,56.924268354225404],[-127.18861175546823,56.924399644861296],[-127.18883890370036,56.924529805427056],[-127.18906708972301,56.92465995612164],[-127.18929429201803,56.9247912361179],[-127.18952144485914,56.92492139552395],[-127.18974761397236,56.92505268423907],[-127.18997276480238,56.92518398191365],[-127.19021994744313,56.925329646101325],[-127.19133198388866,56.92564220633829],[-127.19193213015713,56.92596169631555],[-127.19264957436883,56.92718112839746],[-127.19295239561444,56.92909133968258],[-127.19267791509016,56.930325482414936],[-127.19329835003845,56.93159735702299],[-127.19398314389153,56.93268708881704],[-127.19428541081298,56.93424429595628],[-127.19416164698848,56.93552861205925],[-127.19300063977201,56.936668922691105],[-127.19064024421793,56.93854529902121],[-127.18932702788976,56.939192750979814],[-127.18753466028699,56.93941534784004],[-127.18619661471814,56.93962592886793],[-127.18606896902688,56.93999131542875],[-127.18566165377352,56.94032787472423],[-127.18481613900668,56.94093403016691],[-127.18352744693152,56.941782922137534],[-127.18266717471228,56.94305040082719],[-127.18223955968351,56.944169371301676],[-127.18272535928791,56.94477908628494],[-127.18355263750801,56.94545181114299],[-127.18411580290778,56.94616728241277],[-127.1845146842908,56.946893214528316],[-127.18449758888951,56.94791095391427],[-127.18434099075687,56.9490431546059],[-127.18434616390574,56.95102000235066],[-127.18368507204343,56.95170852379226],[-127.18312705240788,56.95233670734844],[-127.18296071562222,56.95325382519274],[-127.18263317492135,56.95374766793456],[-127.18234265009653,56.95430729408115],[-127.1825260109553,56.9551181278315],[-127.18295437112002,56.955729490867135],[-127.18297962469336,56.95628400403104],[-127.18293461929375,56.95793631598562],[-127.18287158280052,56.95923577472493],[-127.18284240782728,56.95982776734851],[-127.18285455622967,56.960659213257415],[-127.18281845441612,56.96139471863543],[-127.18222894469228,56.96200749771295],[-127.18172868467789,56.962577997307314],[-127.18165536118599,56.96337547975887],[-127.18096967458655,56.96414378383197],[-127.18035895794984,56.96446984866441],[-127.17999952145787,56.96466587099446],[-127.17939077480203,56.96532588160958],[-127.179317990871,56.966815951297185],[-127.17932227218866,56.967426694113364],[-127.17924682259292,56.9682578175946],[-127.17914856736253,56.96884819739971],[-127.17872687788558,56.969299180066585],[-127.17834764963266,56.969320547897574],[-127.17801784170194,56.96934258767636],[-127.17762138146854,56.969373075082814],[-127.17725738273299,56.96942119865391],[-127.17684569049467,56.96942492473463],[-127.1764332001897,56.9694365016394],[-127.17603750160515,56.9694580117006],[-127.1757076911766,56.96948004562343],[-127.1753601567815,56.969528015014305],[-127.17499391205321,56.96960417004029],[-127.1746286527225,56.969679194424785],[-127.17429809178435,56.96971019713787],[-127.17424865416729,56.9697095228199],[-127.17399898789917,56.96975996695909],[-127.17354563348557,56.96981561087616],[-127.17245011510083,56.97015049495436],[-127.1721343344342,56.97022730760861],[-127.17180176125933,56.970294184485475],[-127.17143626717385,56.970361357035486],[-127.17105700795737,56.97038270377256],[-127.17084103453746,56.970423872806336],[-127.17077388654431,56.970450253411364],[-127.17048950608903,56.97054471057206],[-127.17018817946217,56.97065725078863],[-127.16990381251145,56.97075170653382],[-127.16960372476616,56.97083733742524],[-127.1693025981803,56.970922976957155],[-127.16898600537067,56.97100763409969],[-127.16865370835504,56.97108346597421],[-127.16832064433191,56.971168269485545],[-127.16800304380087,56.97125405396509],[-127.16768644541543,56.97133870796331],[-127.16731919606823,56.971450712612345],[-127.16695191064854,56.971561595836995],[-127.16666679692416,56.97166613743556],[-127.16638268526188,56.971769548715756],[-127.16609753454144,56.97187296868494],[-127.16554085422328,56.97195192482245],[-127.16517125466387,56.97198661608774],[-127.16455968221123,56.97208847375288],[-127.1643799801058,56.972376981933145],[-127.16437262787224,56.972508169698294],[-127.16416523919189,56.97269830384258],[-127.16391028456452,56.972847397407435],[-127.16367310554172,56.97300529703883],[-127.16341814697834,56.973154389670185],[-127.16316572496046,56.97328552790356],[-127.16287980384323,56.97339791324263],[-127.16259568658872,56.97350243691786],[-127.16231051287737,56.9736058487063],[-127.16224283941828,56.97364904006876],[-127.16202159483991,56.973789983770025],[-127.16181460960676,56.97399355897259],[-127.16114590193197,56.97414858364243],[-127.16065792712088,56.97432216481951],[-127.16053946625222,56.97449132697804],[-127.16066468112389,56.97495642136383],[-127.16047361262642,56.97514192121968],[-127.16034826323386,56.97535597278774],[-127.16029007658933,56.97554364901686],[-127.16007427107085,56.97589971565508],[-127.15983947301793,56.97593318916925],[-127.15968333482282,56.97577432097877],[-127.15952117366736,56.975621109828595],[-127.15930803251254,56.975484042708594],[-127.15908066716995,56.975353826227064],[-127.15885434098938,56.975223600114894],[-127.1585936237492,56.97511385259042],[-127.15834100830838,56.97499954961146],[-127.1580893646177,56.97488299611091],[-127.1578519152182,56.974759591589844],[-127.15762862570234,56.97462709503334],[-127.15739825853993,56.97449914389923],[-127.15714056291064,56.9743871253095],[-127.15687610886584,56.974289735441026],[-127.15675508876197,56.9741339138203],[-127.15663266201258,56.973965776925894],[-127.15636302350619,56.97386731148325],[-127.15605419132021,56.97380057344584],[-127.15573093656225,56.97376758381729],[-127.15541845932304,56.973716566467026],[-127.15511567169465,56.973645289742024],[-127.15483286756364,56.97355366231929],[-127.15454608171498,56.97346655243819],[-127.15425929716314,56.973379441929985],[-127.15395276613785,56.97332052345931],[-127.15365299701014,56.9732469752234],[-127.15333836744246,56.973192609952676],[-127.15303466728156,56.97312469866533],[-127.15274485950904,56.97303985308805],[-127.15243322859492,56.97298209699202],[-127.15212364080605,56.97292432206172],[-127.1518061372678,56.97287670278192],[-127.15148388150423,56.97284257317654],[-127.15115687318954,56.972821933209026],[-127.15083532132259,56.97281133041735],[-127.15041169110202,56.97276128466399],[-127.15019934942073,56.97271833478006],[-127.1498770295218,56.97268196039523],[-127.14954926979954,56.97267028862506],[-127.14922070667592,56.97266646800596],[-127.14889108911514,56.97266153517523],[-127.14856264281106,56.972661073952665],[-127.14822110761062,56.97267081372016],[-127.14798736465653,56.972601152476436],[-127.1479109413561,56.97242027421758],[-127.14768768311741,56.97228776095375],[-127.14740611101111,56.97220171032047],[-127.14707874336172,56.972168735694105],[-127.14680875235902,56.97226413434657],[-127.14659542704942,56.972396015853086],[-127.14633426791006,56.97251150817481],[-127.14601655848561,56.97245715251041],[-127.14572176612367,56.9723768182076],[-127.14541423505244,56.97231788865074],[-127.14508716783965,56.97229499262754],[-127.14475934627605,56.9722810679867],[-127.14443335059664,56.972259281589956],[-127.14410626765977,56.972235262554015],[-127.14382957613535,56.97214019576366],[-127.14352300440939,56.97207901196035],[-127.14320158424944,56.97203813046327],[-127.14286553827476,56.97198953183783],[-127.14259924431299,56.971897733205765],[-127.14229078396534,56.971842166605335],[-127.14196966598793,56.9718113656925],[-127.14164922084187,56.97176823045189],[-127.1414169648328,56.971643630544385],[-127.14111376250176,56.97159137713141],[-127.14078726801176,56.9715875171508],[-127.14050793655043,56.97164600162307],[-127.14022740356901,56.971629409554915],[-127.13993560981132,56.9715456739764],[-127.13961444637212,56.971512626305284],[-127.13928931550114,56.971485216066554],[-127.13898096260135,56.97143300284139],[-127.13867331691571,56.97136957577317],[-127.13835582635033,56.97132192385741],[-127.13803738170773,56.97127652090888],[-127.13747088315212,56.97119854539867],[-127.13715489599007,56.97116656712745],[-127.13702841401086,56.970997327721506],[-127.13688464203041,56.97083496351459],[-127.13674600939524,56.970672554257376],[-127.13660734487482,56.97050902446735],[-127.13650250683494,56.97034071619988],[-127.13637713402056,56.970173707994334],[-127.13627840734574,56.970003104819156],[-127.13621554836236,56.96982658478737],[-127.1361218786417,56.96965257529414],[-127.13590386446852,56.96952111742848],[-127.13566749059977,56.96939542300071],[-127.13545855267475,56.96925716103671],[-127.13527201179643,56.96911085841958],[-127.13509774051583,56.96896108640136],[-127.13495301281975,56.968800970142134],[-127.13482766826446,56.96863508116268],[-127.13473002283868,56.96846558833871],[-127.13447842034358,56.96820666275057],[-127.1344040517964,56.968163604595006],[-127.13411990536277,56.96809323807004],[-127.13390979787305,56.96805472538664],[-127.13353231797375,56.9680311196082],[-127.13336853450836,56.96802806432868],[-127.13304048990088,56.96800514697879],[-127.13269522097693,56.96799134433828],[-127.13233496722813,56.967958619549385],[-127.13195920312872,56.9678531840154],[-127.13152801063612,56.96782331583436],[-127.13112527323517,56.96781561250296],[-127.13074932967952,56.96777405431194],[-127.13035484293111,56.96776739755001],[-127.1299758353716,56.9677617257834],[-127.1296488324802,56.96773879086882],[-127.12932001783585,56.96772483637142],[-127.12899070774866,56.967728816349585],[-127.12882697522116,56.96772687561119],[-127.12854683679537,56.967722582825274],[-127.12825125224927,56.96771842344363],[-127.1281029495186,56.96771634792908],[-127.12775713943556,56.96771934722534],[-127.12658590782124,56.96776424007319],[-127.12639466645373,56.96812451655354],[-127.1262645121052,56.96870840133366],[-127.12643572701913,56.969317693453384],[-127.12672034035519,56.969967468759535],[-127.12654766515573,56.970540516012264],[-127.12622738087761,56.97088958291221],[-127.12548250860269,56.971083186084364],[-127.12457828377445,56.971567300791236],[-127.12318140001958,56.972387388745105],[-127.12135035217831,56.97417611986396],[-127.1196365407176,56.974973125765956],[-127.11875072833529,56.97513988580138],[-127.11808175021514,56.97515012074826],[-127.1178457260425,56.97524852876359],[-127.11687739430458,56.97587210621245],[-127.11587547686108,56.97661699921519],[-127.1157503933244,56.976813072471764],[-127.11564816368697,56.97687446664723],[-127.11522483007224,56.97711904544028],[-127.11492907823771,56.977217960189044],[-127.11426595987955,56.9775744186208],[-127.11339490314433,56.97807610214449],[-127.11307218548743,56.978382571410414],[-127.11287302338825,56.9785815171898],[-127.11278663413431,56.978763808330825],[-127.11255053601208,56.978967552365674],[-127.1123071559031,56.979169116860085],[-127.11200353023929,56.97931740268211],[-127.11168315545098,56.97945574469476],[-127.11138030425582,56.97959505689416],[-127.11098461949359,56.979693695629216],[-127.11065425713831,56.979771602997104],[-127.11030470754298,56.97989898374514],[-127.10999447603882,56.97999689006361],[-127.1097091131141,56.98010018695923],[-127.10942324370646,56.980221418619706],[-127.10907195490311,56.98032415562607],[-127.10870596039831,56.98041693077696],[-127.10838764552344,56.980520505581026],[-127.10806826905367,56.98065883010301],[-127.10771645042021,56.9807794990054],[-127.10738239793292,56.98090898125504],[-127.10709499433797,56.98101341042696],[-127.10674391746342,56.98112398413131],[-127.10647608045899,56.98122824546051],[-127.10622213298981,56.98135031920453],[-127.10591924714898,56.98148961887055],[-127.10559985377999,56.98162793742428],[-127.10517150838774,56.981738042798426],[-127.10438696540452,56.98206746468676],[-127.1039318627361,56.982394086744726],[-127.10369386542921,56.98253395125365],[-127.10323618906905,56.982699212963546],[-127.10296201454507,56.98283490013545],[-127.10279774669735,56.98299655175442],[-127.1024757826925,56.98318979831999],[-127.10272631583348,56.98348690006299],[-127.10289241825845,56.98364126843129],[-127.10299720979658,56.98381184613477],[-127.10314395240427,56.9839731025305],[-127.1032456487983,56.98414370633357],[-127.1034005345751,56.98430153136085],[-127.10360233602123,56.98444326855758],[-127.10370489655874,56.98460826128274],[-127.10369459737757,56.98478765974621],[-127.1036853195263,56.98496704956601],[-127.10380635160513,56.98512964419932],[-127.103957642691,56.985233705868296],[-127.10418921696129,56.985335965351794],[-127.10437757513401,56.985511436460314],[-127.10440125012455,56.98569054672905],[-127.10443316283227,56.98586958709055],[-127.10445066015005,56.98604874983785],[-127.10446713617152,56.98622792127564],[-127.10449904963076,56.986406961686704],[-127.1045525147097,56.98658357776357],[-127.10461423444144,56.98676012376363],[-127.10467697621691,56.98693666108306],[-127.10473559968636,56.987113233365655],[-127.1048055102874,56.98728858911048],[-127.10489397313422,56.98746378730264],[-127.10510685825741,56.9875964629631],[-127.10533820010522,56.987725619416345],[-127.10545204788323,56.98788827398965],[-127.10542009090481,56.98806673635875],[-127.10540566331072,56.988246170515154],[-127.10534065717397,56.988421551578476],[-127.10536949547021,56.98860061821784],[-127.10546406168056,56.9887735229817],[-127.10550006879635,56.98895140803855],[-127.10555153109321,56.989129161795276],[-127.1056142810248,56.98930569894858],[-127.10568523762846,56.98948104566347],[-127.10576336298337,56.98965521074732],[-127.10585279282684,56.98982815903924],[-127.10594837007827,56.98999993434899],[-127.10603371452717,56.99017403799353],[-127.10612314678959,56.99034698616109],[-127.10620537941635,56.99051999550075],[-127.10627736252603,56.990695333353756],[-127.10633703711417,56.990871896543474],[-127.10639979348637,56.99104843352861],[-127.10652408265224,56.99121548167594],[-127.10661248146265,56.99138843845778],[-127.10664231729464,56.99156637606422],[-127.10664952904159,56.99174562679484],[-127.10666807742822,56.991924781135545],[-127.10673185864827,56.99210130939944],[-127.10681515158086,56.99227543029979],[-127.10690665195806,56.9924483606587],[-127.10694164754557,56.992626254454315],[-127.10697357781245,56.99280529504194],[-127.10700135665728,56.992983250260345],[-127.1070332874978,56.9931622908772],[-127.10706212073721,56.99334135786274],[-127.10708375324621,56.99352048612566],[-127.10710436429974,56.993699623098806],[-127.10715170426703,56.993877411988024],[-127.10720008281608,56.99405519204909],[-127.10721141726623,56.99423440800391],[-127.1072073113368,56.994413755350436],[-127.10718980817285,56.99459321670223],[-127.10715788590169,56.99477280074639],[-127.10710217006798,56.994949225111945],[-127.10703407877949,56.995124634041744],[-127.10698872568378,56.99530321164657],[-127.10696916120952,56.99548269060019],[-127.10696093422501,56.995662073135485],[-127.106951668971,56.995841464523195],[-127.10695482755284,56.996022991664645],[-127.10681514267628,56.99618107826593],[-127.10662785276277,56.99633172460369],[-127.10645713750802,56.99648559187184],[-127.10628538267439,56.9966394677578],[-127.10611570290534,56.9967933257853],[-127.10595119564012,56.99694826034497],[-127.10578881138545,56.99710541807243],[-127.10562744755681,56.997262566934],[-127.10547336496347,56.99742189516262],[-127.10532961326317,56.99758225618006],[-127.10521704997446,56.997752438536644],[-127.10519844991971,56.9979296678456],[-127.1053135742221,56.99810015802377],[-127.10533310906463,56.99827818422624],[-127.10532075376622,56.998457601993536],[-127.10533081732035,56.99862898444596],[-127.10510704870354,56.9987653693271],[-127.10485066392052,56.99887849589153],[-127.1045805895784,56.99898165178074],[-127.10431049813113,56.99908368654418],[-127.10404358353486,56.99918905591029],[-127.10376823436896,56.99928777202194],[-127.10349602992761,56.99938870229431],[-127.10324695118864,56.99950512584515],[-127.1030512301827,56.99965023506288],[-127.10294994110325,56.99981919930858],[-127.10296438800329,56.99999951051966],[-127.10297657689951,57.00013725405888],[-127.10295290307026,57.00031788835554],[-127.10291889613245,57.000497489523895],[-127.10286003848226,57.0006728184492],[-127.10276812119118,57.00084506535134],[-127.10265031415285,57.0010130487081],[-127.1025149064128,57.001177818938906],[-127.1023691002474,57.00133931498679],[-127.10221406222811,57.0015020097636],[-127.10203187073442,57.00165260649241],[-127.10180046900754,57.00177560186842],[-127.10152734818271,57.00188101858912],[-127.10122899018621,57.00196871694284],[-127.10092478353002,57.00203180852248],[-127.1006053821837,57.00203226828185],[-127.10023269993407,57.002007401390145],[-127.09994212403545,57.00197063254119],[-127.09961609440964,57.00195545599837],[-127.09930324382715,57.00200516831275],[-127.09898635240606,57.00205715540136],[-127.0986661057046,57.00210020438294],[-127.09834237606452,57.00212983348516],[-127.09801524421431,57.002148283415714],[-127.09768592400776,57.00216226815171],[-127.09735767386671,57.002177363737566],[-127.09702940698627,57.00219245863473],[-127.09670070945332,57.00219186644578],[-127.09637068637244,57.00218119823861],[-127.0960405677728,57.002167167883],[-127.09571270100898,57.00215984197087],[-127.09538623883152,57.002165951881906],[-127.0950658915833,57.00220563069712],[-127.09474690067265,57.00225650436771],[-127.09442449175457,57.002296198935035],[-127.09409882432016,57.00233031656184],[-127.09377539540243,57.00233415551187],[-127.09345272184001,57.00229203839289],[-127.09312712592038,57.002255548549996],[-127.09279565143532,57.00223031430487],[-127.09248409686566,57.00218025651673],[-127.09221242826212,57.002083914404096],[-127.09196270918306,57.001961611393234],[-127.0917059950488,57.00184721152938],[-127.09139949204003,57.001793746713304],[-127.0911741327841,57.0017676185623],[-127.09087356835988,57.00192367444783],[-127.09064872276194,57.00206116391967],[-127.09041113319299,57.00218531131049],[-127.09016935811198,57.00230725191216],[-127.0899256164012,57.00243257064371],[-127.0896617213893,57.00253788494969],[-127.08934580275738,57.00258871959366],[-127.08901136488343,57.002603845865046],[-127.0886940902142,57.00257063743197],[-127.08838799044368,57.00249474802721],[-127.08807723967567,57.00243682806241],[-127.0877512424433,57.00242274223719],[-127.08741846937272,57.00242440206099],[-127.0870860607973,57.002438385732404],[-127.0867621928828,57.00246350428311],[-127.08647409811776,57.00255108284172],[-127.08622716580776,57.00267305907618],[-127.08596838638135,57.002777202419665],[-127.0856357365631,57.00278333944721],[-127.0853150968393,57.002740064519394],[-127.0849935622538,57.00270127908276],[-127.0846816420561,57.00271172369346],[-127.08441969000971,57.00273968252369],[-127.08401511955901,57.00275313879865],[-127.08371094158792,57.00281843106341],[-127.08341222041456,57.00289488422587],[-127.08311461453798,57.00297468952647],[-127.08281589096794,57.00305114132876],[-127.08251611279131,57.00312648050705],[-127.08221741835403,57.00320405138525],[-127.0819197446297,57.0032816130882],[-127.0816210163053,57.00335806216462],[-127.08131907865683,57.00343005439735],[-127.08101385235994,57.00349534901658],[-127.08070324577099,57.003552842662025],[-127.08038606493506,57.00359582098654],[-127.08006246584391,57.003631006867906],[-127.07973666517022,57.00366060668786],[-127.07941091034849,57.00369244671455],[-127.07908841078265,57.00372986245086],[-127.07877132088338,57.00377619817398],[-127.07845540910313,57.00382812687346],[-127.07814267289666,57.00388339060703],[-127.07783001501912,57.003940894341035],[-127.0775183781442,57.003998388866805],[-127.07720570191738,57.00405589124231],[-127.07689088684236,57.004110048448084],[-127.07657712415856,57.00416531688591],[-127.07626653686542,57.00422392041505],[-127.07596239676907,57.004291435527],[-127.07566786346105,57.0043711982646],[-127.07538185216816,57.00446097624992],[-127.07509898446585,57.00455296904296],[-127.07481297049583,57.00464274578961],[-127.07451950183444,57.004723617818286],[-127.07421859342277,57.004796705657654],[-127.07391552968768,57.00486644846961],[-127.07360927225096,57.004932854803386],[-127.07330303024088,57.00499926028382],[-127.07299677069099,57.0050656651828],[-127.07269268065714,57.00513541358487],[-127.07239491038112,57.00521071271919],[-127.07209934067625,57.005290475852696],[-127.07179944521313,57.00536354971176],[-127.07148895102955,57.00542550309185],[-127.07119012299725,57.00549968745204],[-127.07090093162648,57.00558724027108],[-127.07061277740648,57.00567478391228],[-127.07027317284037,57.00576499134523],[-127.06999338713598,57.005782981250555],[-127.06967848551939,57.005834880185695],[-127.06936469842387,57.005890131305236],[-127.06905196353595,57.00594649372422],[-127.068740328426,57.006005087761636],[-127.0684307839382,57.00606478459066],[-127.06812133176395,57.006127842027446],[-127.06781500861675,57.00619199375794],[-127.06750454700203,57.00625617869994],[-127.06719300022282,57.00631813038797],[-127.06688676718082,57.00638564128517],[-127.0665776514101,57.00646101999022],[-127.06636068622464,57.00658943681898],[-127.06619394764071,57.0067454594754],[-127.06606872835663,57.00691234893641],[-127.06599117935627,57.007088934258185],[-127.06586786347872,57.00725020445034],[-127.06565110861952,57.00738646330651],[-127.06544583208124,57.00752823137186],[-127.06526865889117,57.007679855470705],[-127.06511018443058,57.007836929858605],[-127.0649610825109,57.007997289495684],[-127.06480469706884,57.00815546713863],[-127.06462651091904,57.00830821937346],[-127.06436988168116,57.008419026026445],[-127.06408178433719,57.00850991673173],[-127.06390226190992,57.00865147186699],[-127.06377606635579,57.008820608595535],[-127.06362385588201,57.008980992134525],[-127.06343726388957,57.00912820791889],[-127.06311043931021,57.00927208586191],[-127.06291974010553,57.009382351232205],[-127.0627283106068,57.0095038293191],[-127.06246330156272,57.00961021778704],[-127.06219096326925,57.0097121826968],[-127.06191442387198,57.00981193989312],[-127.06163996020635,57.009911679570216],[-127.06137076217964,57.010015858549615],[-127.06111202060269,57.01012555525979],[-127.06086794949893,57.010244097536265],[-127.06063658076125,57.01037486360856],[-127.06042191224132,57.010513338168494],[-127.06023120999883,57.01066170353631],[-127.06006746654379,57.010815452639434],[-127.05992658939742,57.01097686030964],[-127.05980027619012,57.0111426320976],[-127.05968434173435,57.011311681409175],[-127.05957774963719,57.01148289600457],[-127.05941935966399,57.011644445691296],[-127.05920126735296,57.01180872232965],[-127.05906793344393,57.01194429154957],[-127.05905933987785,57.01211919137045],[-127.05890038071423,57.01222246844245],[-127.05871488605791,57.01237303070345],[-127.05853778732049,57.01252912796687],[-127.05828185729115,57.01262983054258],[-127.0579628854125,57.01268621670393],[-127.05764290473101,57.012743730978244],[-127.05737761305186,57.01284114569469],[-127.05716384889769,57.01297624545293],[-127.05696797800225,57.01312464806057],[-127.05676059450289,57.013266419589634],[-127.05652387943022,57.013391618234465],[-127.0562777433617,57.01351128935283],[-127.05601908675067,57.013625458029765],[-127.0557739863044,57.013745119790705],[-127.05557269979745,57.01388459857584],[-127.05540176407095,57.01404064161216],[-127.05525780315133,57.01420319003881],[-127.05516767072518,57.01437426773893],[-127.05516028192541,57.014555881918994],[-127.05517347174278,57.014736208646475],[-127.05519905810813,57.01491755563834],[-127.05521637015127,57.01509784900183],[-127.05520992800305,57.01527609348608],[-127.05515907433436,57.015451335782174],[-127.05505660333527,57.01562363422107],[-127.05491371872002,57.01578841507787],[-127.05474374919324,57.015942208125],[-127.05454782316659,57.01608948693914],[-127.05432479538429,57.01622577784616],[-127.0540754731854,57.01634322921974],[-127.05379544429363,57.016430669546715],[-127.05348274013964,57.016491476674595],[-127.05316053743002,57.01654451492597],[-127.05285199825346,57.01660752825446],[-127.05255156871625,57.016702975785776],[-127.05227582846801,57.01683408571187],[-127.05224312190626,57.01695762776557],[-127.05234898577211,57.0171349646245],[-127.05252646742254,57.01729267052444],[-127.05272671444263,57.017453554284025],[-127.05291044371253,57.01761345062481],[-127.05306632718325,57.01777245122769],[-127.05322323425399,57.01793144339277],[-127.05337605105049,57.01809158919327],[-127.05351552488266,57.01825408421212],[-127.05363345822086,57.018420115530425],[-127.05370527045363,57.01859548565664],[-127.05373599711592,57.018776791791524],[-127.05374194518171,57.01895605704259],[-127.05371178377914,57.0191344938076],[-127.0536816527783,57.01931405104854],[-127.0536865618311,57.01949332477498],[-127.05371620539856,57.01967239837818],[-127.05374893282004,57.019851447044545],[-127.0537631260118,57.0200306457103],[-127.05375360689405,57.02021003628081],[-127.05373895701624,57.02039058909971],[-127.05372223155346,57.02057003802369],[-127.0536993363374,57.02075065759951],[-127.05368572488078,57.02093120207427],[-127.05369164236222,57.021109347134164],[-127.05374898365898,57.021283713984836],[-127.05387523387063,57.02145191964041],[-127.05401886110019,57.02161438100346],[-127.05418603296675,57.02177104808869],[-127.0543449915923,57.02192890219505],[-127.0544547251376,57.02209612041239],[-127.05451938643853,57.02227378994773],[-127.05457070270833,57.022453808967825],[-127.05463942644957,57.02262920417652],[-127.0547573473309,57.02279411451924],[-127.0549122819253,57.02295536282655],[-127.05509386225548,57.023110791542955],[-127.05529882032161,57.023253702763945],[-127.0555259777919,57.02337962307592],[-127.05580866539866,57.023462505751986],[-127.05613387497291,57.02351702517746],[-127.05643690216216,57.02358965515216],[-127.0566874414304,57.02370305599645],[-127.05691683791233,57.023834559379814],[-127.05714925829565,57.02396379641098],[-127.0574110701865,57.024074862998575],[-127.05769939085238,57.02417450665454],[-127.05798560425886,57.02427304609616],[-127.05823716069698,57.0243853151094],[-127.0584243907725,57.02452052073833],[-127.0585423028448,57.02468430740742],[-127.05861222531618,57.02486529480095],[-127.05865342737988,57.02505099850544],[-127.05867793634613,57.02523011363181],[-127.05865920113477,57.02541070101617],[-127.0586209038853,57.025592568142024],[-127.05859697532786,57.02577207705713],[-127.05862243101494,57.025947822444586],[-127.05871373317399,57.0261185497452],[-127.05884510492828,57.02628446839093],[-127.05898167081972,57.02645146541563],[-127.05908943752895,57.02662093794734],[-127.05917365944661,57.02679620547385],[-127.05925168085582,57.026971523401805],[-127.05934301908896,57.02714337084865],[-127.05946410548727,57.02730937269488],[-127.05962203873152,57.02746610895595],[-127.05980660573415,57.027615904035585],[-127.06000241231192,57.027762245257385],[-127.06020631256429,57.02790291674341],[-127.06042957555397,57.028035585270466],[-127.06065282568511,57.02816713282682],[-127.06078498214913,57.02839804511675],[-127.06089070057514,57.02856753317951],[-127.0609984816208,57.02873700438216],[-127.06111756379835,57.028905262737716],[-127.06124384032627,57.02907234167679],[-127.06137115705532,57.02923941204569],[-127.06149128152667,57.029407661651234],[-127.06159700583855,57.02957714926033],[-127.0616811363894,57.02974905426086],[-127.06173959682123,57.02992453064037],[-127.06177854115654,57.030102407547545],[-127.06180306789066,57.03028152271753],[-127.0618194260812,57.03046294593557],[-127.06183265256593,57.0306432739856],[-127.06184690182728,57.03082359372021],[-127.0618621594451,57.03100278453709],[-127.06187227090518,57.0311820173278],[-127.06187824230794,57.031361283891464],[-127.06188322202478,57.03154167928253],[-127.06188817085791,57.031720954227694],[-127.06189518159455,57.031900212386724],[-127.0619012006415,57.03208059937369],[-127.06190821150436,57.032259857577074],[-127.06191418324195,57.032439124274305],[-127.06192020246232,57.032619511328456],[-127.06192617431161,57.032798778070216],[-127.06193318542175,57.03297803636242],[-127.06194022753024,57.033158415146346],[-127.0619482779863,57.033337665011025],[-127.06195837396582,57.03351689822254],[-127.06197366410554,57.033697209834145],[-127.06199408660946,57.033876358903925],[-127.06201556297803,57.034056620125405],[-127.06203910153042,57.034236864555176],[-127.06206054737368,57.0344160053442],[-127.06207892310435,57.034596291907434],[-127.06209212128802,57.034775499982096],[-127.06209707151078,57.03495477532555],[-127.06209481292076,57.03513410946541],[-127.06208013463333,57.03531242416087],[-127.06205412318455,57.0354908312714],[-127.06201780119795,57.035669322452314],[-127.06197220781253,57.03584788922275],[-127.06191625618007,57.03602541970749],[-127.06185103288352,57.03620302575898],[-127.06177856896076,57.0363795700845],[-127.06169777759067,57.03655394080369],[-127.06161078470993,57.03672724129969],[-127.06151025528682,57.03689616915266],[-127.06138384729219,57.03706194560617],[-127.06124188763472,57.03722448645843],[-127.06109374032215,57.037387077562514],[-127.06094869324659,57.03754964325918],[-127.06081606327167,57.03771434914523],[-127.06070518598472,57.03788223997784],[-127.06060784379031,57.038054503440726],[-127.0605198032577,57.0382278118521],[-127.06044007254465,57.03840329403105],[-127.06037068307575,57.03857981273489],[-127.06031163498778,57.038757367980445],[-127.06026495976556,57.0389348225249],[-127.0602337426987,57.039112151275106],[-127.06022941292245,57.039291502688194],[-127.0602498755521,57.0394728938189],[-127.06029091582957,57.039651876053966],[-127.06034428279774,57.03982963725353],[-127.06042435298359,57.040002698210536],[-127.06053838182083,57.04017324127137],[-127.06065749739348,57.04034150139627],[-127.06074991306775,57.04051334100471],[-127.06080943943373,57.04068993127382],[-127.06086491998386,57.04086879593998],[-127.06091523693027,57.041047702655256],[-127.0609562963965,57.04122780548939],[-127.06098602147586,57.0414080006354],[-127.06100127928165,57.04158719288361],[-127.06099895336762,57.04176428688669],[-127.06097817301686,57.04194601410201],[-127.06093596183268,57.042135760941925],[-127.06086062792917,57.04232129456664],[-127.06074148785314,57.04248925314289],[-127.0605699824521,57.0426284989219],[-127.06033573755789,57.042736874653755],[-127.06005241442153,57.04282323468102],[-127.05973773538858,57.0428952796425],[-127.05940838757685,57.04295847727654],[-127.05908305451962,57.0430182792527],[-127.05877113467716,57.043077971417546],[-127.05845478054886,57.04312649156411],[-127.05813306190242,57.043167209401695],[-127.05781024145071,57.04320569392834],[-127.05748745116435,57.0432452981347],[-127.05716459860913,57.04328266058526],[-127.05683852029883,57.04331556548165],[-127.05651138766066,57.04334735737875],[-127.05618640927771,57.04338249317396],[-127.05586681009478,57.0434254296634],[-127.05555469742683,57.043478391271044],[-127.05525225653113,57.04354584326575],[-127.05495519421079,57.04362109610408],[-127.05466247081998,57.043704158238235],[-127.05437399404506,57.04379166825924],[-127.05408979452787,57.043884746676234],[-127.05380878776202,57.04398116083177],[-127.05353092650158,57.044079790400595],[-127.05325721954358,57.04417950652009],[-127.05298560437217,57.04428032588458],[-127.05271614232706,57.04438448946838],[-127.05244874135862,57.04448863584345],[-127.05218242327864,57.04459501437842],[-127.0519171432495,57.044701383984986],[-127.05165296256531,57.044809985632085],[-127.05138873325357,57.04491746640375],[-127.05112451896541,57.04502494651451],[-127.05086028669986,57.04513242623096],[-127.05059499930674,57.045238793186364],[-127.05032868740484,57.04534516785595],[-127.05006023374641,57.04544931777953],[-127.04978970195106,57.04555236315971],[-127.04950966468834,57.04564763943317],[-127.04921387309885,57.04573295539625],[-127.04891280966982,57.045813830204295],[-127.0486180244801,57.04589801597413],[-127.04834105342916,57.04599214431242],[-127.04809136727106,57.04610398425922],[-127.04786481257018,57.046231327917255],[-127.04764664305856,57.04636420740973],[-127.0474358826785,57.04650375135488],[-127.04723453302482,57.04664770224657],[-127.04704051497023,57.04679607683578],[-127.04685483761415,57.04694774632136],[-127.04667640041826,57.04710047812158],[-127.04650629004456,57.04725538426969],[-127.04634441258159,57.04741022409503],[-127.04619101453291,57.04757284075569],[-127.04605329065835,57.04774317653044],[-127.04594047063145,57.04791891593259],[-127.04586480923695,57.04809547775864],[-127.04583649878892,57.04826829735988],[-127.04587204194198,57.04843724232559],[-127.04597571744787,57.0486078819163],[-127.04612674611059,57.048774779135485],[-127.04629930504085,57.048937020424205],[-127.0464737312495,57.04909140140522],[-127.04661654329344,57.04925948485817],[-127.04689655767555,57.049389481927854],[-127.04714998719813,57.049490553034246],[-127.04731601547165,57.04963939681927],[-127.04737767918252,57.0498204597242],[-127.04737331875866,57.05000093254685],[-127.04734310345086,57.05017937171908],[-127.04730051074228,57.05035791037427],[-127.04725481509222,57.05053647396987],[-127.0472153241385,57.050714987710215],[-127.04719132670044,57.05089449769493],[-127.04719104404323,57.051073817141834],[-127.0472010923939,57.05125305359798],[-127.04720394291614,57.05143346864711],[-127.04719025958046,57.05161289584107],[-127.04717451318665,57.05179233963221],[-127.04715772692411,57.051971791798216],[-127.04713785433214,57.052151268781564],[-127.04711591859531,57.05233076235947],[-127.04708982619994,57.05250916861719],[-127.04705963812054,57.052688728528786],[-127.0470232302804,57.05286721768797],[-127.04697853959824,57.05304465266187],[-127.04692457322314,57.05322216215027],[-127.04686334702897,57.05339860921409],[-127.04680005724666,57.053575072841134],[-127.0467357271134,57.053751544810254],[-127.04667553898437,57.053927983501275],[-127.04662155346608,57.05410549310771],[-127.04658202540394,57.05428288661715],[-127.04656214893004,57.05446236380624],[-127.04654642893942,57.05464292837369],[-127.04651826923913,57.05482135137494],[-127.04646944774966,57.0549988195507],[-127.04641130305347,57.05517524184344],[-127.0463469849634,57.055351713688154],[-127.04628264977785,57.055528185655696],[-127.04622141696538,57.05570463270625],[-127.04616744336087,57.05588214221566],[-127.04612170539208,57.056059585620964],[-127.04608220350396,57.056238099716005],[-127.04604372458581,57.05641660560909],[-127.04600214227466,57.056595136415325],[-127.04595537934841,57.056772588064476],[-127.04591553083769,57.05686256676552],[-127.04580081265243,57.0571212567202],[-127.04571059848257,57.05729457400731],[-127.04563384723261,57.057470024720864],[-127.04552182330023,57.05763791317902],[-127.0453838775819,57.05780152650211],[-127.04523758624102,57.057961844399955],[-127.04508612724956,57.0581222035752],[-127.04493674678041,57.05828254592003],[-127.04478109778749,57.058440696871095],[-127.04462340072355,57.05859886405734],[-127.04447190621602,57.05875810209755],[-127.04433601532408,57.05892169790867],[-127.0442146882858,57.05908965987161],[-127.04409024300843,57.05925652597189],[-127.04394600407693,57.05941682605872],[-127.04378316337096,57.05957615421081],[-127.04361727886517,57.05973774801288],[-127.04344411860272,57.05989715837546],[-127.0432573099355,57.06004771183903],[-127.04305459051656,57.06018270201263],[-127.0428180347045,57.0602877026198],[-127.04248643694277,57.06031276972897],[-127.04213662336144,57.06031332537377],[-127.04180259712786,57.06032496129124],[-127.0414740929822,57.06031189598667],[-127.04116407658952,57.0602572148735],[-127.04085993132152,57.06019127877009],[-127.0405586781004,57.060117473715955],[-127.0402584053322,57.0600414186786],[-127.03995808693128,57.05996424258943],[-127.03965680691567,57.0598893149672],[-127.03935256246605,57.05981889324892],[-127.03904934255807,57.059748462666285],[-127.03874502327254,57.05967579867688],[-127.03844180560628,57.05960536668825],[-127.0381365257013,57.0595349504307],[-127.03783034450089,57.05946902359426],[-127.03752217522826,57.05940647408461],[-127.03721107136855,57.059349550891135],[-127.03689311769112,57.05930613029182],[-127.03656647575686,57.05928519274389],[-127.03623487901858,57.05927213892425],[-127.03590426203645,57.059256835004135],[-127.03557753050276,57.05923253349],[-127.03524968544055,57.05920487779616],[-127.03492185450992,57.05917834190585],[-127.03459524489209,57.05915851991696],[-127.03426899738004,57.059152143069475],[-127.03394817257445,57.05919391403103],[-127.03362525360733,57.059234580068726],[-127.03329772537388,57.05925735006941],[-127.03297126678463,57.05928123150363],[-127.03264822564944,57.05931741313545],[-127.03223213603653,57.05938571143194],[-127.03200644937642,57.059358359301335],[-127.03167696347728,57.059346397917615],[-127.0313475514637,57.05933779732434],[-127.03101818615704,57.05933031626557],[-127.03068880447185,57.05932283450523],[-127.03035946945519,57.05931647227987],[-127.03003008801687,57.05930898885507],[-127.02969971330405,57.059302633180515],[-127.02937037862421,57.059296268456414],[-127.02904099755155,57.059288782532676],[-127.02871169308499,57.059283536642546],[-127.02838240217753,57.05927941054883],[-127.02805208792407,57.05927529169479],[-127.0277227237946,57.05926780231009],[-127.02739328339257,57.059258071226836],[-127.02706479326767,57.05924496962217],[-127.02673716372144,57.05922513600814],[-127.02641298647397,57.05918061824027],[-127.0260921824126,57.05914615972585],[-127.02578199435754,57.05920015486175],[-127.02546337272572,57.05924749119846],[-127.02513927151082,57.059282541773975],[-127.02481506358224,57.059314230177435],[-127.02448871869292,57.05934257236543],[-127.02416232696265,57.059369793367644],[-127.02383373871118,57.05939142713376],[-127.0235047755765,57.05939961421014],[-127.02317744479264,57.05939097664031],[-127.02284889534,57.059375623412144],[-127.02252025673435,57.05935690785753],[-127.02219158865314,57.05933707097535],[-127.02186397411621,57.059318345741374],[-127.02153440239013,57.05930299722402],[-127.0212060627132,57.05929548335392],[-127.02087677251092,57.05929133830086],[-127.02054654820374,57.059290561928215],[-127.02021739357336,57.05929089707978],[-127.01988725846842,57.05929348053686],[-127.0195571530378,57.05929718365807],[-127.01922707725271,57.05930200644355],[-127.01889802480429,57.05930682039364],[-127.0185679488538,57.05931164151021],[-127.0182357501136,57.05931423690802],[-127.01790361066965,57.059319072460276],[-127.01757362347213,57.0593272525608],[-127.01724581808767,57.05933989772652],[-127.01692135290004,57.05936148186417],[-127.01660792841601,57.059410997384944],[-127.01631409705395,57.05949846427365],[-127.01603812045747,57.059598119377526],[-127.01577263692245,57.05970441651805],[-127.0155113970724,57.059815162982325],[-127.0152480331495,57.059923683999095],[-127.01497617750846,57.060023304743765],[-127.01466405126149,57.06008289203278],[-127.01436155587473,57.060155852410695],[-127.01405474213901,57.060221000550904],[-127.01374151380507,57.060278352725135],[-127.01342275025257,57.060321177658956],[-127.01309254678256,57.06032150290575],[-127.01276263852182,57.060333032341],[-127.01243502956292,57.0603535089358],[-127.01210750876228,57.060377346215716],[-127.0117798990768,57.06039782116489],[-127.0114745147909,57.06040019112822],[-127.01112277099439,57.060405161445104],[-127.01079230160664,57.060395396339295],[-127.01046285583674,57.06038562246244],[-127.01013363285588,57.06038369114698],[-127.00980468775404,57.0603929641598],[-127.00947480732006,57.06040560577832],[-127.00914501491745,57.06042160807219],[-127.0088163504189,57.060440962994136],[-127.00848982068518,57.060463662762494],[-127.0081643599138,57.06048747417386],[-127.00786498176784,57.060561515999865],[-127.00757094549898,57.060642240229335],[-127.00726092489819,57.06070403487777],[-127.00694771184654,57.06076249125177],[-127.00663768927413,57.06082428442324],[-127.00633403201932,57.06089275209817],[-127.00604420486161,57.06097680255737],[-127.0057703131143,57.06107866111192],[-127.00549639060519,57.06117939859365],[-127.00519264060794,57.06124450211264],[-127.00489642565711,57.06132187487256],[-127.00461932432606,57.061419272809886],[-127.00434011233587,57.06151556568481],[-127.00406091545462,57.061611857841115],[-127.00378382266936,57.06171037465529],[-127.00351198319268,57.06181221262916],[-127.00325060596359,57.06191957316989],[-127.0030197117909,57.06204799253235],[-127.00280870345996,57.062187465824465],[-127.00257354576179,57.062311434270335],[-127.00227529952541,57.06238993738274],[-127.00198764526529,57.06247956570713],[-127.00170739547144,57.062575860882845],[-127.0014544373086,57.06268987749651],[-127.00121633104588,57.06281946978854],[-127.00101056660677,57.06296226208355],[-127.00087645193724,57.06312243568127],[-127.00079111345923,57.063293442025156],[-127.00073069951318,57.06346986065822],[-127.00068273753678,57.06364954589581],[-127.00063375156833,57.06382923899501],[-127.00057130162135,57.0640067939689],[-127.00049433094885,57.0641822189058],[-127.0004100868136,57.064355458164385],[-127.00032377828529,57.06452871322424],[-127.00023746897891,57.06470196824838],[-127.00015635543751,57.06487630410305],[-127.00008248487758,57.06505170509446],[-127.00001274098612,57.065227074407076],[-127.00000120440212,57.06525966415223],[-126.99994611287646,57.065403540534426],[-126.99988255879525,57.065578862335826],[-126.99982007338724,57.0657552966614],[-126.99975966375195,57.06593283579027],[-126.99969924092319,57.066109254277016],[-126.99963984114905,57.06628566490939],[-126.99959285239876,57.066463101110685],[-126.99954795610316,57.0666416420058],[-126.99948129426822,57.06681698756291],[-126.99939913269536,57.066991331183075],[-126.99930868613984,57.06716461753591],[-126.99920683794303,57.06733574975468],[-126.99909147853703,57.06750362324173],[-126.99896370618042,57.06767047101356],[-126.99881930573571,57.0678329631196],[-126.9986477541284,57.06798333496086],[-126.99837749160382,57.06810868559132],[-127.0000006552701,57.07237858182163],[-127.0105063798752,57.100000338488464],[-127.02563497944791,57.13970596011405],[-127.02584764252805,57.13988585955906],[-127.02611320472847,57.139994732758026],[-127.02639190032815,57.140092294237846],[-127.02667967031715,57.14018081741548],[-127.02697148703358,57.140265945758124],[-127.0272634250715,57.14035555571123],[-127.02755637658174,57.14044403625539],[-127.02785616784648,57.1405178919295],[-127.02816672375585,57.1405692461828],[-127.02849003793419,57.14059472083193],[-127.02882017708271,57.140604449716704],[-127.02915422485145,57.140606301366105],[-127.02948931478026,57.14060814394783],[-127.02982047988397,57.14061786222133],[-127.03014583319457,57.140642195907134],[-127.03045950302294,57.14069352018793],[-127.03076642668657,57.140762829782695],[-127.03107336503568,57.1408332593543],[-127.03138820031198,57.14088905544124],[-127.03171290656235,57.1409279607866],[-127.03204054246069,57.140960117372636],[-127.03236517604743,57.14099565927691],[-127.03267882156938,57.14104585767832],[-127.03297147255832,57.141123120617735],[-127.03324314604876,57.14122744810982],[-127.0335118182306,57.14133516121143],[-127.03379458729995,57.14142931258133],[-127.03408439174551,57.14151556204112],[-127.03437620482887,57.141599553361864],[-127.03466801919,57.14168354403602],[-127.03496187237039,57.141766397116314],[-127.0352556965788,57.14184812897697],[-127.03554955228907,57.14193098074543],[-127.03584238364625,57.14201383999106],[-127.03613423463572,57.14209894797938],[-127.03642401912421,57.14218407172771],[-127.0367118279506,57.142272572940925],[-127.03699461178283,57.142366717449285],[-127.03727336882642,57.14246425575216],[-127.03755214105391,57.14256291416238],[-127.03783189626279,57.14265932257734],[-127.03811566722784,57.142751215278075],[-127.03840540037203,57.14283409354464],[-127.03871028768197,57.14290340102238],[-127.03903723800457,57.1429478745951],[-127.03937322936694,57.14298218817266],[-127.03970110183283,57.14302216953934],[-127.04000574993069,57.14308250949408],[-127.04027197464563,57.14317565810718],[-127.04050886337333,57.143292576792696],[-127.04072657317927,57.14342645996052],[-127.04093110876548,57.1435705350266],[-127.0411305895828,57.14371913331237],[-127.0413321563732,57.143867714693634],[-127.04154176676593,57.144008386013496],[-127.04175750763885,57.14414564571428],[-127.04197122648442,57.14428516282759],[-127.04218496342784,57.14442467947372],[-127.04240476733877,57.14455966415551],[-127.04263370399295,57.144687850756846],[-127.04287788576556,57.144805828008174],[-127.04314550687127,57.14491128877231],[-127.04343958598216,57.14500084636659],[-127.04375068690975,57.14507009277038],[-127.04406836403638,57.1451146281088],[-127.0443916355449,57.14513670179255],[-127.04472175676699,57.14514414939284],[-127.04505578376724,57.14514371925595],[-127.04539076138792,57.14513991823254],[-127.0457248048874,57.1451394862527],[-127.04605601321484,57.14514916339865],[-127.04637934729557,57.145173473292175],[-127.04669595550254,57.14521689002919],[-127.04700582424242,57.14527829296419],[-127.04731180282097,57.1453486928351],[-127.04761684862716,57.145422461909895],[-127.04792286009118,57.14549398092105],[-127.04823483162914,57.145556484928576],[-127.04857517381313,57.145597465099925],[-127.04891144205708,57.14564071872203],[-127.04919780358814,57.14571239256554],[-127.0493844150078,57.14584202842029],[-127.04948654669495,57.1460216583826],[-127.04957234992438,57.14620926515688],[-127.04971403484679,57.146360556958676],[-127.05004706392558,57.1463982297212],[-127.05036208966507,57.14634526073365],[-127.05065027389941,57.14625664091806],[-127.05093721615283,57.146160184779326],[-127.05123390118766,57.14607934095353],[-127.05155284361818,57.1460184918812],[-127.05187761117422,57.14601923970659],[-127.05220405000097,57.146043510289424],[-127.05253174675657,57.146075615601355],[-127.05285756061308,57.14611446013754],[-127.05317942373345,57.14616006058452],[-127.05349529904547,57.14621355421236],[-127.05380014811453,57.146279464955214],[-127.05409315871776,57.14636676593951],[-127.05436800627814,57.14646990423962],[-127.05462039860763,57.146584431378315],[-127.0548524676678,57.14671145108613],[-127.05507439729566,57.14684639797984],[-127.055294276983,57.14698136108201],[-127.05552533921485,57.14710950861488],[-127.05577674429587,57.147225162425265],[-127.05604748071272,57.147329451381246],[-127.05632327360546,57.147429215659606],[-127.05658992421083,57.14753465738052],[-127.0568140254238,57.14767294636616],[-127.0570449424866,57.14779548845976],[-127.0573554275659,57.14784005007729],[-127.05769299002408,57.14785412977966],[-127.05802738049573,57.14786599267355],[-127.05835762061128,57.1478767675225],[-127.05868781343712,57.14788642110771],[-127.05901789921316,57.1478915914719],[-127.0593489799029,57.147895632121426],[-127.05967892546455,57.14789631869758],[-127.06001080083048,57.14789138471195],[-127.06034157183448,57.1478842172174],[-127.06067243568036,57.147880410573755],[-127.06100241213284,57.147882214370505],[-127.06132960482718,57.14789524809354],[-127.06165626824576,57.147926218333346],[-127.06197815702657,57.1479717971647],[-127.06229205349901,57.148027527531845],[-127.0625969776433,57.14809565909612],[-127.06289796952456,57.148170546843964],[-127.06319897709882,57.14824655459964],[-127.06350395221168,57.1483158044861],[-127.06381289271417,57.148379417306636],[-127.06412385672807,57.148440771294865],[-127.0644347740929,57.14850100411825],[-127.06474673477042,57.14856122770949],[-127.06505866531029,57.14862032999626],[-127.06536963326998,57.14868168103051],[-127.06567959101896,57.148744160391956],[-127.06598455802155,57.14881340464878],[-127.06627550180386,57.14889845408929],[-127.06655744354474,57.14899478455457],[-127.06683640087486,57.14909562206714],[-127.06711630849117,57.149193088791094],[-127.06740324607824,57.149282651778954],[-127.06770111493611,57.14935643337848],[-127.0680119205239,57.14941217548112],[-127.06832771844395,57.149461151126346],[-127.06864552290186,57.149507867969014],[-127.0689652713845,57.14955008486987],[-127.06928702626892,57.14959004293836],[-127.06961078750454,57.1496277421595],[-127.06993451811603,57.14966432001746],[-127.07026028626134,57.149699759570055],[-127.070586023729,57.149734077749414],[-127.07091179306873,57.149769515679445],[-127.0712365684861,57.14980608177105],[-127.07156132797715,57.149842647192024],[-127.07188515621563,57.149882581908045],[-127.07220694825801,57.14992365335772],[-127.07252676679941,57.14996810267907],[-127.07284762845595,57.150012542659624],[-127.07316847431036,57.15005698198952],[-127.07349036328439,57.15010141196828],[-127.07381122717253,57.15014584958683],[-127.0741331176369,57.15019027798512],[-127.07445399786052,57.1502358347257],[-127.07477388441376,57.1502825196799],[-127.07509380315753,57.150330324413964],[-127.07541272828247,57.15037925737148],[-127.07572960088264,57.15042932727886],[-127.07604655373544,57.15048163740577],[-127.07636042828585,57.150535092953675],[-127.07667332423885,57.150590797462144],[-127.07698426381403,57.15064987981949],[-127.07729215667037,57.15071122821047],[-127.07760537026896,57.150778136105664],[-127.07791882196965,57.150852887044245],[-127.07822630562951,57.15093665306578],[-127.07851860212531,57.15103175196064],[-127.07878636463896,57.15113714018911],[-127.07902239405226,57.15125399818139],[-127.07921645850753,57.151386893915294],[-127.07935734822443,57.15154152429637],[-127.07945941467531,57.15171328764317],[-127.07953797220222,57.15189533258333],[-127.07960522613074,57.15207971255348],[-127.07967756513841,57.1522606880318],[-127.07976004063306,57.152434854796],[-127.0798394226416,57.15260904710345],[-127.07991574267672,57.15278438552211],[-127.07998994694796,57.15295862059006],[-127.08006318910189,57.1531351052438],[-127.08013537445345,57.15331047779808],[-127.08020651799855,57.15348585895384],[-127.08027766219435,57.15366124009379],[-127.08034883860905,57.15383774178084],[-127.08041998410843,57.15401312288931],[-127.08049319868243,57.15418848687758],[-127.08056743986894,57.154363842363345],[-127.0806437351472,57.15453806002271],[-127.08072312552298,57.15471225206657],[-127.08080561103823,57.15488641848924],[-127.08089015073615,57.15505944707094],[-127.08097985412302,57.155232432908456],[-127.08107262118848,57.15540427254063],[-127.08116954263016,57.15557607776183],[-127.08126858009321,57.155750107082014],[-127.08137174043769,57.15592298141167],[-127.08147905381988,57.15609694214369],[-127.081592527118,57.15626861017836],[-127.08171320145449,57.15643909770712],[-127.08184101368609,57.15660616357975],[-127.08197909153824,57.15676978187644],[-127.08212634437406,57.15692884076913],[-127.08228588339841,57.157083314457466],[-127.08245764543724,57.157230961764135],[-127.08265701017115,57.15736717190603],[-127.08289121099712,57.157490763984214],[-127.08315094612,57.15760293573873],[-127.08342911030925,57.157708229236185],[-127.08371539214866,57.157807850700756],[-127.08400266983413,57.15790634246882],[-127.08427965409047,57.15800603986332],[-127.08456766035088,57.15809331609732],[-127.08487480443698,57.1581624995728],[-127.0851849022999,57.158226053665906],[-127.08549992729316,57.15828059947466],[-127.08581591576724,57.15833289486983],[-127.0861309577275,57.158388559864775],[-127.08644003344928,57.158452119518344],[-127.08674317351323,57.15852581528018],[-127.08706110728801,57.15857360820922],[-127.08738486650184,57.158607901942744],[-127.087710631381,57.158639936526],[-127.08803737581654,57.15866972048678],[-127.08836511501033,57.1586983745206],[-127.08869285469392,57.1587270277332],[-127.08901958408508,57.158756809378076],[-127.08934432553541,57.158788848443336],[-127.08966815229749,57.158825377655695],[-127.08998899581054,57.15886641427741],[-127.09030587852833,57.15891308731824],[-127.09062290483152,57.158965362554305],[-127.09093909722567,57.15902436897758],[-127.09125128079121,57.159087891446944],[-127.09155748263208,57.15915930896555],[-127.09185560230384,57.15923751829639],[-127.09214464575986,57.159323648635905],[-127.09242259171916,57.159419958607096],[-127.09268854197516,57.15953093912142],[-127.09294756441376,57.15965318537653],[-127.09319957990077,57.15978333558397],[-127.09344856619512,57.15991575234302],[-127.0936954369618,57.160047065527905],[-127.09394420288571,57.16017163741359],[-127.09419673960996,57.16028384811818],[-127.0944540101669,57.16038032705094],[-127.09472104991558,57.16045654866555],[-127.0950043713748,57.16048667916521],[-127.09531449460809,57.160441488597705],[-127.09563579737814,57.16035249106832],[-127.09595570368387,57.160251175289],[-127.09625852836142,57.160167935344724],[-127.09654571630173,57.16008034256796],[-127.09682751499682,57.15998494855554],[-127.09710932780303,57.15989067464524],[-127.09739431471915,57.159798615133944],[-127.09767607715331,57.15970209874831],[-127.09795775744439,57.15960334077412],[-127.09823951702552,57.15950682318783],[-127.09852449837554,57.159414761238516],[-127.09881486660049,57.159330499199],[-127.09911283556441,57.15925850174504],[-127.09942053845596,57.15920099254414],[-127.09974012413178,57.15916131594396],[-127.10006830535927,57.15913277453224],[-127.10040091288523,57.15911428252007],[-127.10073464266024,57.159099142706204],[-127.10106632004242,57.15908401933101],[-127.10139685798659,57.159065542215096],[-127.1017304259575,57.15904479704792],[-127.10206413894508,57.159028533138176],[-127.10239599194327,57.15902012990077],[-127.1027241107133,57.159025207336086],[-127.10304655500431,57.159049386022026],[-127.10337557698236,57.15908583755225],[-127.10370801688242,57.15913346773391],[-127.1040335638567,57.15919348448985],[-127.10433991943687,57.159269354311],[-127.10461573008988,57.15936229414184],[-127.10485071704997,57.159474632753565],[-127.10504911460956,57.15960969707016],[-127.10522110480349,57.159761796976476],[-127.10537480091365,57.15992525978001],[-127.10552038495545,57.160094395235824],[-127.10566698061322,57.16026240116727],[-127.10582371084288,57.16042359619491],[-127.10597941628656,57.160584799737876],[-127.1061229367328,57.160753952113986],[-127.10626245021956,57.16092762162907],[-127.10640090651711,57.161100179142295],[-127.10654443075174,57.16126933112081],[-127.10670011031513,57.16142941334442],[-127.10687205052085,57.161579270159265],[-127.1070662637433,57.161712125544405],[-127.10728885934114,57.1618245651201],[-127.10755208833056,57.16191088072443],[-127.10785287130435,57.161972219046305],[-127.10818001603943,57.16201427891363],[-127.10852434953927,57.162042742119155],[-127.10887466319866,57.16206330781675],[-127.10922183328442,57.16208277842218],[-127.10955466812385,57.16210685316878],[-127.10988725976249,57.16212308327015],[-127.11022781910826,57.16212803645815],[-127.11057131123351,57.1621273596456],[-127.11091576455378,57.162124432082884],[-127.1112571553182,57.16212265049161],[-127.11159150832268,57.16212765290067],[-127.11191683584548,57.16214281879352],[-127.11222916298843,57.162173786262464],[-127.11252446651787,57.16222395217035],[-127.11279272781147,57.1623046103352],[-127.11302891303166,57.16242140800011],[-127.1132430745947,57.16256305133012],[-127.11344417233275,57.16271825571264],[-127.11364119904123,57.16287573618716],[-127.11384420614309,57.16302531954875],[-127.11405418719285,57.163165876457164],[-127.1142560735662,57.16331210627108],[-127.11445183592086,57.16346175054471],[-127.11464460243985,57.163614782627256],[-127.11483834806708,57.16376556442282],[-127.11503515775173,57.16391519897894],[-127.11523900641211,57.16405804815751],[-127.1154519795181,57.16419409412429],[-127.11567707438158,57.16431994872168],[-127.11591940638685,57.16443332652408],[-127.11617995248139,57.16453309824681],[-127.11646203660845,57.16462596043345],[-127.11676155346305,57.164713068863904],[-127.11707527678031,57.164791088465364],[-127.11739913422196,57.164861174791774],[-127.11772885655694,57.164920001748456],[-127.11806037132838,57.16496872496788],[-127.11839147811902,57.16500400073412],[-127.11871699623035,57.16502475254811],[-127.11903381352036,57.16503100709371],[-127.1193407071038,57.16501604984643],[-127.11964373599255,57.164975345595224],[-127.119945034042,57.164911117765534],[-127.12024378750377,57.164830098400785],[-127.12054222838387,57.16473899344011],[-127.12083944507349,57.164641173232496],[-127.12113662747743,57.16454223179434],[-127.12143397223615,57.164448892496615],[-127.12173265337717,57.1643656286336],[-127.12229740982453,57.16442915167106],[-127.1226233189187,57.164463340486094],[-127.12294919577204,57.164496407928034],[-127.12327507318747,57.16452947455824],[-127.12360098400616,57.164563660938136],[-127.12392588549798,57.164598976034696],[-127.12424982710077,57.16463654027441],[-127.12457176610803,57.164676362636975],[-127.12489173544941,57.16471956369836],[-127.12520874187996,57.16476727286957],[-127.12552379516123,57.164819481477714],[-127.12583095190638,57.164884086645955],[-127.12613118912242,57.164959959171455],[-127.12642644432516,57.16504259902805],[-127.12672077337865,57.165128608752724],[-127.1270150708112,57.165213497259025],[-127.1273123495248,57.16529387602438],[-127.12761449709124,57.16536412451507],[-127.12792455914995,57.165421974719585],[-127.12824687132351,57.165474114224224],[-127.1285773284786,57.16552169923004],[-127.12891169350499,57.16556140373469],[-127.12924675538599,57.16558989291106],[-127.12957720102987,57.16560160843919],[-127.12989675681797,57.16559548373933],[-127.13020308908344,57.16556145145242],[-127.13049166258904,57.165487221588435],[-127.1307690802121,57.16538506644591],[-127.13104408021243,57.16527172317042],[-127.13132336539324,57.16516282560368],[-127.13161464857863,57.16507511962978],[-127.13192104192149,57.165008578214575],[-127.13223499829455,57.16495317901816],[-127.13255540896779,57.164905569055826],[-127.13287907959564,57.16486353427699],[-127.13320390821274,57.164825972036475],[-127.13353285755652,57.1647872523992],[-127.13387810944612,57.16474054457076],[-127.13422564492302,57.164700541085764],[-127.13455437843496,57.1646898418982],[-127.1348461544312,57.16472429665523],[-127.13508998427517,57.164816330365696],[-127.13530089667621,57.1649501209139],[-127.13549491286123,57.16510759573104],[-127.13569007299928,57.16526842289415],[-127.13590342420066,57.16541452068559],[-127.13614809118891,57.165534566444684],[-127.13641103214458,57.1656432444046],[-127.13668623915217,57.16574621094164],[-127.13696240740992,57.16584692686199],[-127.13723146019217,57.16595218752423],[-127.13748628047482,57.16606541745813],[-127.13770861283938,57.166200225840164],[-127.1378945186174,57.166362251376725],[-127.1380741689592,57.166523210301804],[-127.13835044020227,57.16669677772522],[-127.13854503823686,57.166733191616565],[-127.13885745755009,57.166765216116445],[-127.13919902150886,57.16676784377118],[-127.13954933837518,57.16675133977916],[-127.13989016923696,57.166729313327764],[-127.14021540673413,57.16670518031797],[-127.14053931752062,57.16667097042561],[-127.14086203473425,57.1666311658961],[-127.14118357504174,57.1665868874417],[-127.14150614086154,57.16654259923493],[-127.14182771305789,57.166499439757374],[-127.14215152051251,57.166461864200514],[-127.14247853937549,57.16642762231583],[-127.14280771036796,57.16639672334155],[-127.14313578775267,57.16636359139901],[-127.14345959277786,57.166326012605516],[-127.14377695599909,57.16628064342676],[-127.14408464819056,57.166223028774766],[-127.14436866032015,57.16613535777174],[-127.14463119439067,57.166020973839906],[-127.14489265064071,57.16590547796802],[-127.14517129345644,57.16581112713761],[-127.14547566709244,57.16574681315568],[-127.14579285567983,57.16569583631864],[-127.14611655196042,57.16565488929245],[-127.14644347682724,57.16561839654129],[-127.14676831509651,57.16558080042565],[-127.14709327029108,57.16554768587361],[-127.14742051170927,57.16552127554166],[-127.14768800340582,57.16550435587594],[-127.14804549325392,57.16541715242216],[-127.14831351128213,57.16531392135117],[-127.14861631231541,57.16523168020698],[-127.14888965959453,57.16513400536138],[-127.14911032356775,57.16500428848392],[-127.14932543582442,57.164862290699645],[-127.14952582857279,57.164712576074564],[-127.14970325966308,57.164556338034245],[-127.14984534923826,57.16439480644372],[-127.14993971769556,57.164229211198176],[-127.14997798909074,57.16405626355802],[-127.14997570635555,57.16387694766995],[-127.1499515739736,57.163693340661865],[-127.14992434675614,57.163509760907175],[-127.14991161905165,57.16332717444832],[-127.14991651879119,57.16314555376556],[-127.1499077774834,57.16295732803726],[-127.14991671407819,57.16277230933885],[-127.14997774142508,57.16259916164762],[-127.15012005789154,57.16244547386512],[-127.1503020171615,57.162302645495856],[-127.15050792637706,57.16216521027847],[-127.1507305357099,57.162032111084635],[-127.15096353826087,57.16190116167522],[-127.15120175314173,57.16177128678286],[-127.15143786396347,57.161640309144786],[-127.15166769949657,57.16150714468346],[-127.15188288365827,57.16136850471688],[-127.15208242407581,57.16122551891633],[-127.15228187910247,57.16108029187022],[-127.15247921304972,57.16093284153177],[-127.15267232406146,57.160783186450296],[-127.15285710777732,57.16063136285336],[-127.15303043634566,57.16047739837522],[-127.15318813873083,57.160320209022196],[-127.15332819662851,57.16016093351365],[-127.15344119166643,57.15999629249721],[-127.15347924078326,57.159816621081994],[-127.1534673040267,57.15962618242478],[-127.15344502402213,57.15943583509034],[-127.15345512017161,57.15925528963225],[-127.15353817565138,57.15909315457286],[-127.15370887186333,57.158954904375506],[-127.15393797804748,57.1588329508824],[-127.15420362944539,57.158721882669674],[-127.1544880319138,57.158615131639436],[-127.15477239905192,57.15850725945051],[-127.15503688472512,57.15839171644536],[-127.15527523281581,57.15826743720983],[-127.15550727224978,57.15813985078368],[-127.15573507162523,57.1580089389058],[-127.1559597582889,57.15787805416564],[-127.15618232381176,57.157744946113425],[-127.1564038114348,57.157610726374706],[-127.15662425495007,57.15747651550214],[-127.15683946618724,57.157340108886764],[-127.15703568700246,57.157191540764444],[-127.15723828101264,57.15704852013844],[-127.1574746465579,57.156927616974585],[-127.15777021508859,57.15684878098369],[-127.15809324857874,57.156788755286875],[-127.15839095099332,57.1567121406592],[-127.158635720333,57.15659564425838],[-127.15886760301207,57.15646356984297],[-127.15907736663604,57.15631824107164],[-127.15925160895843,57.15616201864861],[-127.1593780879681,57.1559994947255],[-127.15946188281522,57.15582838268777],[-127.15951651508449,57.155650804327955],[-127.15955449754287,57.15547001118369],[-127.15958620653369,57.15528703203358],[-127.15962415441763,57.155105118373974],[-127.15967984473215,57.15492865148063],[-127.1597646783758,57.15475753013319],[-127.159911029447,57.15460267532983],[-127.16012506869302,57.154462911220186],[-127.16036313853185,57.15433077926651],[-127.16059086479312,57.1541987387539],[-127.16081759748928,57.154067827515036],[-127.16104959307546,57.15394023164869],[-127.1612836554842,57.15381261699937],[-127.16151775027494,57.15368612248545],[-127.16174970727636,57.15355740487006],[-127.16197644963151,57.15342761237244],[-127.16219262759496,57.15329006754138],[-127.1624045828707,57.15315031823246],[-127.16262079170704,57.153013893263214],[-127.16284966417219,57.15288632198156],[-127.1631016089215,57.152768632505364],[-127.1633763888861,57.152654101746506],[-127.16367051245689,57.152562935845026],[-127.16397631996375,57.152516498940614],[-127.16429187929113,57.15251817070488],[-127.16461661406747,57.152550022710486],[-127.16494697090724,57.15259639476204],[-127.16527826882383,57.15263939506088],[-127.1656079801258,57.15266447517157],[-127.16594227518728,57.15267045919359],[-127.16628351098312,57.15266629280491],[-127.16661375753097,57.152640927597844],[-127.16691826344807,57.152585528643556],[-127.16719589994383,57.15249674367013],[-127.16745629006653,57.152385695311786],[-127.16770700438158,57.15226240361568],[-127.1679587936207,57.1521402226709],[-127.16821177778448,57.15202363477644],[-127.1684594790643,57.151903731100866],[-127.16871035774456,57.151786040219335],[-127.16898143799912,57.151686101617635],[-127.1692833180348,57.15161278707523],[-127.16968419900795,57.15152961879061],[-127.16968091864531,57.1513884217551],[-127.16954622906567,57.15121141326964],[-127.16948015106551,57.15104611982725],[-127.16937465763247,57.150876695791794],[-127.1692670462275,57.15070616981226],[-127.16915948648501,57.15053676415546],[-127.16905187699041,57.15036623804193],[-127.16894842133306,57.15019567470437],[-127.16885009456848,57.15002394458566],[-127.16875173453677,57.149851093877494],[-127.16863879598064,57.14967501100382],[-127.16853206285194,57.14949887256197],[-127.16845531018116,57.14932246593107],[-127.16843661842543,57.14915002339097],[-127.16849984757339,57.14898469407929],[-127.16863559602099,57.148823199438986],[-127.16880969706828,57.14866472407294],[-127.1689900174508,57.1485061928302],[-127.16914017029933,57.14834232711395],[-127.16923733897555,57.14817108956031],[-127.16931273221759,57.147997805170405],[-127.16937458830195,57.14782127940246],[-127.16942812098833,57.14764370728967],[-127.16947649140089,57.14746618138656],[-127.16952272501945,57.14728643293255],[-127.169572136816,57.14710889771047],[-127.16962667569065,57.14693019574435],[-127.16968958849978,57.146754781318414],[-127.16976176416216,57.14657816309689],[-127.16983915151435,57.14640261902254],[-127.16991761458505,57.1462281861253],[-127.16999395827439,57.146052651338806],[-127.170064114006,57.14587717194895],[-127.17012594666964,57.14570064625167],[-127.17017437977321,57.14552536141356],[-127.17016998655554,57.145347187273956],[-127.17012105697722,57.14516717041829],[-127.1700825014711,57.14498818148965],[-127.17004269902998,57.144802478711256],[-127.17000393917876,57.144616766611584],[-127.17001412439224,57.1444418245358],[-127.17014605652682,57.14429157123833],[-127.17044129639278,57.144172358980505],[-127.17068581232668,57.14405135897047],[-127.17068326331335,57.14390006861763],[-127.17051161403495,57.14373123940447],[-127.17037593952085,57.14355536265233],[-127.17039437741131,57.143380346724435],[-127.17046755145431,57.14320259868626],[-127.17056550398657,57.143023507741326],[-127.17066656553091,57.14284438887528],[-127.17074387281198,57.14266660368968],[-127.17077478350495,57.1424937176873],[-127.17073757756778,57.14232480474174],[-127.17063839180959,57.142158688966],[-127.1704907262285,57.14199637008915],[-127.17031108894038,57.141836579208125],[-127.17011200673505,57.14168368732301],[-127.16990795363985,57.14153756470614],[-127.1696990486483,57.14140157277417],[-127.16946767388046,57.141274748403376],[-127.16922097208366,57.14115366502708],[-127.16896815472039,57.141035998448245],[-127.16871838040251,57.140916062505205],[-127.16847781799694,57.14079268119556],[-127.1682484503431,57.14066359516577],[-127.16802111776194,57.14053336972605],[-127.16779578614171,57.140400884357675],[-127.16757255781542,57.14026950066064],[-127.16734926282206,57.14013587553549],[-127.16712702901454,57.14000336140763],[-127.1669027797559,57.1398719857686],[-127.16667234675509,57.13974178583987],[-127.16644088978958,57.139611594675756],[-127.16621353551326,57.13948024566239],[-127.1659974606038,57.13934543308746],[-127.16579770697611,57.139203749505086],[-127.16561820444942,57.13904731408927],[-127.16548070562663,57.13887817449032],[-127.16541253075265,57.13871065789634],[-127.16556755613391,57.13846941634355],[-127.16578634446215,57.13842150953876],[-127.16612402358219,57.13837254091867],[-127.16642938162258,57.1384168891903],[-127.16672335749992,57.13849496341929],[-127.16701571016125,57.138587622335315],[-127.16731110563504,57.138678011754756],[-127.16761627804765,57.13875037978838],[-127.16793208092885,57.138797993728176],[-127.16825601832463,57.1388410508192],[-127.16858392089858,57.138878467469496],[-127.1689147630083,57.13891025282649],[-127.16924741761979,57.138934175287964],[-127.16957873967688,57.13894802133268],[-127.16990659301283,57.13894956843392],[-127.17022988454013,57.13893770557462],[-127.17055068037297,57.138911293434745],[-127.17087002331874,57.13887144351646],[-127.1711879814643,57.138820396886764],[-127.17150467373165,57.13876151499094],[-127.17182020261451,57.138698159421345],[-127.1721325181618,57.13863146941738],[-127.1724428335752,57.13856703828369],[-127.17275424195273,57.13850483826173],[-127.17307086068423,57.13844371152875],[-127.17338852044125,57.13838257466956],[-127.17370189046768,57.13831699224231],[-127.17400673155181,57.13824251904486],[-127.17429680790283,57.138159211202904],[-127.17456680391427,57.13806151244633],[-127.17481357559475,57.13794833034701],[-127.17504129216663,57.137820748364796],[-127.1752541915232,57.1376820909718],[-127.17545755361256,57.13753567322731],[-127.17565459217376,57.137385949586935],[-127.17585270554355,57.137237336809726],[-127.17605399553389,57.13709093679839],[-127.1762647853753,57.13695117592508],[-127.17648832195528,57.13682250822988],[-127.17673091075595,57.136708239335015],[-127.17700302654374,57.13661275806863],[-127.17730256768525,57.13653496235481],[-127.17762225578025,57.13647379679833],[-127.17795166736876,57.13642599276295],[-127.1782824642549,57.136389383735],[-127.17860731710788,57.13636179418013],[-127.17893456334525,57.136344269717775],[-127.1792673139783,57.1363379030753],[-127.17960244198825,57.13634160162216],[-127.17993676932112,57.13635315238578],[-127.18026827977576,57.13637369442975],[-127.18059172780208,57.13640103352598],[-127.18089953368371,57.13645765497067],[-127.1811929470334,57.13655027259264],[-127.18148728372196,57.13663951871597],[-127.18179695317066,57.136689396214265],[-127.18212453981673,57.13671669410569],[-127.18246008584572,57.1367338315972],[-127.18279837959702,57.13673973498834],[-127.18313217500528,57.136733349061274],[-127.18345820753046,57.13671022008628],[-127.18376917987108,57.136668172588635],[-127.18407108640045,57.136600427312565],[-127.18436413411015,57.13651370745799],[-127.18464959026385,57.136415847441235],[-127.18493188289723,57.136315773824926],[-127.18520694640637,57.13621576519698],[-127.18546184055556,57.136099126524435],[-127.18570931585649,57.135976950526334],[-127.1859718320332,57.13587257084465],[-127.18628995311266,57.13582821069566],[-127.18662014546625,57.13580615680689],[-127.18694820072528,57.135781879831086],[-127.18727635959738,57.13576096359426],[-127.18760458748295,57.135742287574615],[-127.18793392639807,57.13572584229406],[-127.18826331790162,57.13571163737477],[-127.18859276041468,57.13569855199478],[-127.18892322812138,57.135685456448975],[-127.18925155876032,57.13567013785257],[-127.18958081032467,57.135651447530456],[-127.18990783697079,57.13562717246399],[-127.1902356452825,57.13559504359453],[-127.1905622720042,57.135558441322644],[-127.19088898420432,57.13552407912351],[-127.19121382066126,57.13549645823289],[-127.19153905599258,57.13548116209801],[-127.1918681844665,57.135491608873465],[-127.19219528320797,57.13553681930218],[-127.19249941730766,57.135608017870055],[-127.19273611523684,57.135738115188815],[-127.19296350327562,57.13586829714706],[-127.19327295218959,57.135877799342616],[-127.1936152663597,57.13584665027818],[-127.19394261011811,57.13586607487756],[-127.19426924270918,57.135895592705324],[-127.1946899074082,57.135856999291555],[-127.1949908161135,57.13579147938596],[-127.1952721215805,57.13569363388883],[-127.19552698166143,57.13557697562012],[-127.19573779701598,57.13544054503786],[-127.19590453286045,57.135283221843096],[-127.19603273379074,57.13511728465258],[-127.19611518936594,57.13494279962616],[-127.19617478229775,57.13476516145883],[-127.19623751885312,57.134588615324944],[-127.19630025483119,57.134412069183895],[-127.19635986262027,57.1342344308502],[-127.19640911689793,57.13405688735937],[-127.19644494170345,57.13387946690525],[-127.19643422603956,57.13370135201608],[-127.19637902127242,57.13352252389372],[-127.196352758462,57.1333434306419],[-127.19633778755029,57.133161992294085],[-127.19631755217054,57.13297723968868],[-127.19629632658318,57.13279361701409],[-127.19628335348683,57.13260991876487],[-127.19628497223594,57.13242944937669],[-127.19630528392422,57.13225217127612],[-127.19635368527899,57.132080240035684],[-127.19644577626116,57.13191687519794],[-127.19661273850784,57.131767395113776],[-127.19682962567919,57.13162754478154],[-127.19706522045358,57.13149088510499],[-127.19728830582721,57.131350977191346],[-127.19748121463186,57.13120462061351],[-127.19766680881872,57.13105608916999],[-127.19784922266875,57.13090534496958],[-127.19803165162246,57.130754600379426],[-127.19821616469433,57.130604957249005],[-127.19840385522178,57.130457526369796],[-127.19859889236533,57.130313390293495],[-127.19880336163729,57.13017365067424],[-127.19902667811432,57.1300415835181],[-127.19927311593985,57.129921632809015],[-127.19952999257762,57.12980494824202],[-127.19978375881425,57.12968829174435],[-127.2000004384347,57.12957533807739],[-127.2000217836713,57.12956393357321],[-127.2002325500131,57.12942749634166],[-127.20042860029763,57.129283348218436],[-127.20062048001508,57.129138117315605],[-127.2008091959041,57.12899067356002],[-127.20099476650293,57.12884213762963],[-127.2011771918322,57.128692509538155],[-127.20135645336839,57.12854066863586],[-127.20153364650963,57.12838884652458],[-127.2017087010994,57.12823480219113],[-127.20188069720774,57.128081906613254],[-127.20205053825791,57.12792678898559],[-127.20221832752779,57.12777169003349],[-127.2023840319716,57.12761661006914],[-127.20254764957122,57.127460428286234],[-127.20271022411272,57.12730425591154],[-127.202870660175,57.1271458613746],[-127.20302584913894,57.12698527332564],[-127.20317587784334,57.1268247326501],[-127.20331650717971,57.12666091593499],[-127.20344674927293,57.12649607398367],[-127.2035655253302,57.126327975107344],[-127.20366979721392,57.126158889012665],[-127.20376263849558,57.125987666567084],[-127.20384715991645,57.12581539994805],[-127.20392542632509,57.12564094930133],[-127.20399743987939,57.12546543545164],[-127.20406533569299,57.125289959552546],[-127.20412904559535,57.12511340140797],[-127.20418966299495,57.12493687177193],[-127.20424921955252,57.12475923107873],[-127.20430669225468,57.12458160959797],[-127.20436418095893,57.124403987962474],[-127.20442269423947,57.1242263568683],[-127.20448226724989,57.124049836820646],[-127.20454494807682,57.12387328809104],[-127.20460969504927,57.12369672028568],[-127.20467237471337,57.12352017154064],[-127.2047350538008,57.12334362278849],[-127.20479773231163,57.12316707402905],[-127.20485938517055,57.12299053472251],[-127.20491999585838,57.12281400502267],[-127.2049816310545,57.1226374658567],[-127.20504328221685,57.12246092653203],[-127.20510491627893,57.12228438735356],[-127.20516660149313,57.122108968521054],[-127.20522927600277,57.12193241971455],[-127.2052940165532,57.12175585182138],[-127.205360858307,57.121580385342824],[-127.20542973085497,57.12140377926693],[-127.20549966299215,57.12122828421651],[-127.20556961102245,57.121052788998654],[-127.2056395418806,57.120877293918575],[-127.20570634532447,57.12070070687267],[-127.20577009179584,57.12052526887293],[-127.20582965286572,57.12034874868999],[-127.20587679552433,57.12017122237953],[-127.20586798429775,57.11998972961778],[-127.20587082887327,57.11981709583827],[-127.20589285984883,57.11959721008724],[-127.2060031226832,57.11945496722317],[-127.20608449299463,57.11928160803946],[-127.20618131765,57.119106985201526],[-127.20628856071195,57.11893450768986],[-127.20640198564537,57.1187619729739],[-127.20651749253693,57.118589418929844],[-127.20662992569429,57.118418014033786],[-127.20673405690856,57.11824556497041],[-127.20682575344662,57.118072109966974],[-127.20690091788498,57.11789880776079],[-127.20695434094985,57.11772458572026],[-127.20697984029434,57.117549501037935],[-127.20698154905999,57.11737351551837],[-127.20697290942351,57.117197625704314],[-127.20695388412183,57.117019590287995],[-127.20692765373194,57.11684274233683],[-127.20689312298221,57.11666485032245],[-127.20685239355379,57.11648701563443],[-127.20680438887717,57.11630812739526],[-127.20675122712893,57.11612928684165],[-127.20669396849274,57.11595160499206],[-127.20663254257433,57.11577284084243],[-127.20656802606563,57.11559410526025],[-127.20650043769832,57.11541651889259],[-127.20643177334165,57.11523782163916],[-127.20636211997555,57.11506025434342],[-127.20629250246603,57.114883807532124],[-127.20622285038642,57.11470624020813],[-127.20615427553787,57.11452978374535],[-127.20608778621421,57.11435442882831],[-127.20601197261841,57.11417803923398],[-127.20591443768774,57.11400072948192],[-127.2057923040277,57.11383037186819],[-127.20564263818962,57.113671476710444],[-127.20545938260565,57.11352858314645],[-127.20521184499152,57.1134120618346],[-127.20492351320067,57.113312729002814],[-127.20463414155833,57.11321340515203],[-127.20438561882483,57.11309801225601],[-127.20420434997283,57.11295285708263],[-127.2040669152142,57.11278824336038],[-127.2039529340754,57.11261332579541],[-127.20385013365791,57.112432700933546],[-127.20374230121861,57.112256605716006],[-127.20361620760518,57.11209076622816],[-127.20345550193942,57.111942058102194],[-127.20324502966314,57.11182070829981],[-127.20297260500129,57.11173355381022],[-127.20265852084985,57.11166919904793],[-127.20232615894113,57.111615099297445],[-127.2019967484748,57.11155648825037],[-127.20169165729808,57.11148196099963],[-127.2013812886888,57.11140411916828],[-127.20106671910905,57.111324073634215],[-127.20076640293148,57.111237171311934],[-127.20050181522606,57.111136489860755],[-127.20029345777715,57.11101623686413],[-127.20018514633182,57.11085695576713],[-127.20015243799631,57.11067007977648],[-127.20013922525338,57.11047854126428],[-127.20011695256134,57.1102949318167],[-127.20012966185325,57.11010651745166],[-127.20012598326959,57.10992273707645],[-127.20004342197008,57.10976097760198],[-127.20000044732954,57.10974119801197],[-127.19983171190118,57.109665412891935],[-127.19957643348457,57.10953101968694],[-127.19932499220653,57.10938762421097],[-127.19903393016607,57.10929839152603],[-127.19873219824404,57.10923167255754],[-127.19841342324706,57.109181921659406],[-127.19808671654548,57.10914233015805],[-127.1977591091156,57.10910722938033],[-127.1973873209713,57.109080378851054],[-127.19697675121265,57.10906845357365],[-127.19674275307781,57.109020162714124],[-127.19684896414677,57.108913831995885],[-127.19723206267716,57.108905834967125],[-127.19762585127111,57.108876443198795],[-127.1979586861767,57.10884760974601],[-127.19824350678587,57.108769900338956],[-127.19849614819088,57.10865437804494],[-127.1987349830848,57.10852665308765],[-127.19896650748568,57.1083967532178],[-127.19919282232156,57.10826577998729],[-127.19941173824579,57.10812927027832],[-127.19962855172255,57.107991658710624],[-127.19984640484459,57.10785403722419],[-127.20000060932018,57.107762954105745],[-127.2000695879226,57.10772197044429],[-127.20030117301766,57.107594309271654],[-127.2005454670161,57.107476618122305],[-127.2008067068176,57.10737222038753],[-127.20108902423601,57.10728107793733],[-127.20138615178148,57.10720100669735],[-127.20169178690958,57.10712870215106],[-127.20199952179424,57.10705749835903],[-127.20230411344983,57.10698520197607],[-127.20261408735674,57.10691958017605],[-127.20293263943158,57.106863965911714],[-127.20324901942169,57.10680500844077],[-127.2035495267536,57.10673386759854],[-127.20382242318577,57.10663944360881],[-127.20408244804493,57.106529446371134],[-127.2043349165515,57.106409430995576],[-127.2045747426885,57.10628168610605],[-127.20479986065978,57.10614623084567],[-127.20500414350947,57.1060053635002],[-127.20518759138048,57.10585908416906],[-127.20534898741205,57.10570180010184],[-127.2054873940136,57.10553576167831],[-127.2056018240992,57.105363219728],[-127.20568825204059,57.1051875739595],[-127.20574577569344,57.10501219521557],[-127.20577639292227,57.10483594426247],[-127.20578626386131,57.10465652257271],[-127.20578266429084,57.10447610455744],[-127.20577080204451,57.10429576291303],[-127.20575683905513,57.10411431988782],[-127.20574700751352,57.10393283871237],[-127.2057485640533,57.10375237315149],[-127.2057677571413,57.10357398628123],[-127.20582527801392,57.10339860770807],[-127.20592527606505,57.1032273198437],[-127.2060377020817,57.10305703786793],[-127.20613662203606,57.102884639017084],[-127.20623864775258,57.10271221139544],[-127.20634070775527,57.10254090420401],[-127.20643340961918,57.1023674418389],[-127.20650127214631,57.10219308827612],[-127.20653499025399,57.10201680878241],[-127.20653761925506,57.10183745432535],[-127.20652571907154,57.101655992607654],[-127.20651282970626,57.10147566087317],[-127.20651129253616,57.101295224196605],[-127.20650352365686,57.10111372435146],[-127.20649158865344,57.10093114223893],[-127.20648791570856,57.100748483757705],[-127.20650609806611,57.10057122728027],[-127.20655850955282,57.100398137561726],[-127.20670232888102,57.10024101471023],[-127.2069188251798,57.10009554841789],[-127.2070377282651,57.1000003003325],[-127.20710829296742,57.099944727755876],[-127.20719182328425,57.09977583318435],[-127.20723277334602,57.09959948686097],[-127.2072518870124,57.09941885933905],[-127.20725857284492,57.099237226014466],[-127.20726109259853,57.09905451044865],[-127.20726774309809,57.09887175668636],[-127.20728788066393,57.09869111977578],[-127.20732775295629,57.09851366270811],[-127.2073966807825,57.09834042001997],[-127.20749780528627,57.09817248340064],[-127.2076238373831,57.09800879942466],[-127.2077695677765,57.09784717461619],[-127.20792673495751,57.09768768539176],[-127.20808909110141,57.097529268748694],[-127.20825141065262,57.097369731437986],[-127.2084054324175,57.097209149973864],[-127.20854909120138,57.09704754351673],[-127.20869890934269,57.09688475903843],[-127.20885185112604,57.09672306626371],[-127.20899757147322,57.09656144023426],[-127.20912869272414,57.096395466109534],[-127.20923289413548,57.09622749974917],[-127.2092738663246,57.096052273721284],[-127.20930382513279,57.095855854406956],[-127.20937130918402,57.09570279882917],[-127.20942117719578,57.09551516145046],[-127.209422697367,57.095333576313074],[-127.20940466058639,57.095154414110006],[-127.20936604279761,57.09497768432728],[-127.20929551288985,57.09480461278746],[-127.2092012425846,57.094631761277036],[-127.20909255237581,57.094460164176326],[-127.20897770299693,57.09428974489959],[-127.20886802571921,57.09411927762733],[-127.20873672792855,57.09395125222595],[-127.20858380988362,57.093785668629245],[-127.20847011135884,57.093618600788595],[-127.20844812591966,57.09344507933647],[-127.20847462661833,57.093269987967254],[-127.20852894331546,57.09309239732267],[-127.20859669068642,57.09291468224897],[-127.20859777327139,57.09275215526273],[-127.20868594041437,57.09260002954795],[-127.20869657371121,57.09238025298569],[-127.20870521072719,57.09219523994146],[-127.20871345812664,57.09203040503801],[-127.20871674789731,57.09183983755344],[-127.20876387748785,57.09166343436299],[-127.20884613017152,57.091487826515596],[-127.20894085902462,57.09131434462311],[-127.20902311015169,57.09113873670846],[-127.20907129696604,57.09096344448209],[-127.2090594939949,57.09078534585902],[-127.20900533285953,57.090606519033656],[-127.20894393671342,57.090427759264436],[-127.20891457441307,57.09024982343493],[-127.20896685516232,57.090073372609446],[-127.20907495831284,57.08989864600368],[-127.20913143817558,57.089724397833855],[-127.20910479314621,57.08953410810282],[-127.20907276497402,57.08936964678008],[-127.20897942595263,57.08922592818726],[-127.20893601632018,57.08902794825022],[-127.20902966275109,57.08885335576946],[-127.20910156527165,57.08867672317781],[-127.2090897275931,57.088497504374985],[-127.2090479419242,57.088318563180835],[-127.20907641187137,57.08814009161791],[-127.20914822578187,57.08796121829271],[-127.20921492058598,57.087783513202936],[-127.20915705665234,57.08761817081651],[-127.20912430663694,57.087463803659226],[-127.20904064368618,57.08726619714764],[-127.20890629843984,57.08709932200739],[-127.20877306550872,57.08693467805549],[-127.20862954530597,57.08677125012125],[-127.208485037471,57.08660895201145],[-127.20834977857581,57.08644544728977],[-127.2082340215675,57.086278399408734],[-127.20814291750601,57.08610663990753],[-127.20807230368159,57.08593020739141],[-127.20801714862368,57.08575251089429],[-127.2079753874535,57.08557356955761],[-127.20794500927754,57.085395643616884],[-127.20795585392706,57.085215094329314],[-127.2079770569122,57.08503556993153],[-127.20796935486355,57.084856313254456],[-127.20793477757458,57.084676184698594],[-127.20786217318351,57.084502012317884],[-127.20770721320604,57.08433532731599],[-127.20759457049925,57.084168250369224],[-127.2076128455717,57.0839943572806],[-127.20764850151323,57.083814699284],[-127.2076985386315,57.08363266653732],[-127.20776722672979,57.08345270267939],[-127.20785564131722,57.08327591851611],[-127.20796905963931,57.0831067483218],[-127.20811070870808,57.08294852452983],[-127.2082752777737,57.08279681304888],[-127.2084586023776,57.082650531576085],[-127.20865752338118,57.08250746770919],[-127.20886789515032,57.082367659799985],[-127.20908551810696,57.08222890512746],[-127.20930631501254,57.08209236225775],[-127.20952711034883,57.081955819027534],[-127.20974373989905,57.08181819326507],[-127.2099530799698,57.08167839317299],[-127.2101613780335,57.081538602413595],[-127.21036967458149,57.08139881133564],[-127.21057902888079,57.08126013090443],[-127.2107904979257,57.081122551301746],[-127.21100508914952,57.080986063162364],[-127.21122177858777,57.08085067598029],[-127.21144368992088,57.08071748152646],[-127.2116907424097,57.08059526108768],[-127.21196916687086,57.080486198210046],[-127.21223613781133,57.08037387880162],[-127.21244673239698,57.08024190861643],[-127.21257910641094,57.080084887053935],[-127.21269263598454,57.079920195014346],[-127.21279467741311,57.07975112653286],[-127.21288632547292,57.07957991305128],[-127.21297064967413,57.07940540524725],[-127.21304869286266,57.07922871423356],[-127.21312258783597,57.07905094097991],[-127.21319436592354,57.07887206659719],[-127.21326619523964,57.07869431251152],[-127.2133411474502,57.07851765014362],[-127.21342026291484,57.0783420698072],[-127.21350357697204,57.07816869196098],[-127.21358994301868,57.07799416487811],[-127.21367636018836,57.07782075807271],[-127.2137627246682,57.077646230918994],[-127.21384704064593,57.07747172279057],[-127.21392721090007,57.077297253214056],[-127.21400323311217,57.07712170142393],[-127.2140720570664,57.076947337416506],[-127.2141336120552,57.07677192027156],[-127.2141661073822,57.07659116971172],[-127.21409061154812,57.07639125032974],[-127.21406624142776,57.07617516383713],[-127.21421501320356,57.076113255753754],[-127.21447445643253,57.076058162391526],[-127.21485646681076,57.07605908723194],[-127.2151892918502,57.076071677259065],[-127.2155174966594,57.07610112143009],[-127.21584589819012,57.07613728771689],[-127.21617189804327,57.07616226763015],[-127.21649387149158,57.07615814361651],[-127.2168058850351,57.07610031356835],[-127.21707158790342,57.07604739818524],[-127.21742367627247,57.076048594770796],[-127.21775154648584,57.076067949297],[-127.21808049288396,57.07608841374528],[-127.21840943963244,57.07610887736421],[-127.21873831565199,57.076127099226284],[-127.21906708533574,57.07614195886827],[-127.21939574859721,57.076153456291],[-127.21972419864488,57.07615823010456],[-127.22005243530624,57.07615628031056],[-127.22038042282149,57.07614648644746],[-127.22070927251876,57.07613107970491],[-127.2210379274057,57.07611006997259],[-127.22136555811318,57.07608906900151],[-127.22169422879519,57.07606805746117],[-127.22202295387525,57.07604928617312],[-127.22235183772695,57.076034995752586],[-127.22268188777005,57.07602517675349],[-127.22301093297772,57.076016487138624],[-127.22334098269341,57.076006666471635],[-127.22367110360712,57.07599908589395],[-127.22400118869757,57.075990384018496],[-127.2243313450437,57.075983922231806],[-127.22466051317467,57.075978589686436],[-127.22499077647396,57.07597548761627],[-127.22532003512222,57.07597351494709],[-127.22565040554774,57.0759737725919],[-127.22597881908466,57.075977410191],[-127.2263083445333,57.075983278102704],[-127.2266370086024,57.07599475727511],[-127.22696581598554,57.076010717464825],[-127.2272936906787,57.0760300480008],[-127.22762168961064,57.07605273894102],[-127.22794970822493,57.076076549673296],[-127.2282767392448,57.076101489685605],[-127.22860377068916,57.07612642887825],[-127.22892977873813,57.076151376899894],[-127.22925580654356,57.076177444723655],[-127.2295818871604,57.0762046320379],[-127.22990798759083,57.07623293915391],[-127.23023410501496,57.07626124529924],[-127.23055918258315,57.07628956044697],[-127.23088532034818,57.07631898558161],[-127.23121043478817,57.07634841956764],[-127.23153554972619,57.07637785274397],[-127.23186166957892,57.076406154822415],[-127.23218678550423,57.07643558637638],[-127.23251288981326,57.076463886983554],[-127.23283800672579,57.07649331691538],[-127.23316312413627,57.07652274603733],[-127.23348931835763,57.07655328496877],[-127.23381443677427,57.07658271246828],[-127.23413955568888,57.076612139157916],[-127.23446467510142,57.07664156503777],[-127.23479078283592,57.07666985995319],[-127.23511687154632,57.07669703343774],[-127.23544387646949,57.07672083502886],[-127.23577378962835,57.07673900423914],[-127.23610264321844,57.07675606186064],[-127.23643054537817,57.07677536927942],[-127.23675665569559,57.07680365928184],[-127.23707691512577,57.076842091191914],[-127.23739531100136,57.07688726481535],[-127.2377137963264,57.076934678424614],[-127.23803023783391,57.07698323147054],[-127.23834673276684,57.077032904052565],[-127.2386632842475,57.077084816943184],[-127.2389788488706,57.077137859253945],[-127.2392944143649,57.07719090080316],[-127.23960899303334,57.07724507178218],[-127.2399235560751,57.077299242161544],[-127.24023919653416,57.077354522348635],[-127.24055377787398,57.077408691055226],[-127.240868343587,57.07746285916214],[-127.24118391435837,57.077515896151716],[-127.24149846214642,57.077568942127186],[-127.24181303050298,57.077623107961905],[-127.24212761626019,57.077677272882504],[-127.2424411987642,57.07773256741712],[-127.24275481841217,57.07778898165837],[-127.24306743485634,57.07784652552312],[-127.24338003249092,57.077902948025155],[-127.24369265079858,57.07796049039604],[-127.2440053228346,57.07801915232066],[-127.24431691915676,57.078076702967],[-127.24462855270873,57.07813537332944],[-127.24494121108259,57.078194033175414],[-127.24525281022456,57.07825158159294],[-127.245565487011,57.078310239789516],[-127.24587708803028,57.07836778672029],[-127.24618975020121,57.078426443582956],[-127.24650239348944,57.078483979082606],[-127.24681399732074,57.07854152378219],[-127.24712666233556,57.07860017840604],[-127.24743930844025,57.078657711667],[-127.24775095147156,57.07871637459309],[-127.24806358294217,57.078773906520325],[-127.24837623186322,57.07883143754255],[-127.24868886520619,57.0788889679757],[-127.24900147957494,57.078945377046026],[-127.24931511875221,57.079001775560705],[-127.24962771844372,57.079058183292744],[-127.24994232696417,57.079112329419175],[-127.25025691985687,57.079166474947],[-127.2505735215157,57.07921835884946],[-127.2508910749667,57.07926799124951],[-127.25121054759173,57.07931312124332],[-127.25153089887128,57.079353758800885],[-127.25185510390689,57.079385392125225],[-127.2521831294512,57.079408021504],[-127.25251212274252,57.0794283991517],[-127.2528391982134,57.07945327762903],[-127.25316048316162,57.079490539822146],[-127.25347800564758,57.07953904547633],[-127.25379262353053,57.07959318233373],[-127.25410530775443,57.079651820271636],[-127.25441804603074,57.07971157776019],[-127.25473169941174,57.079767963280084],[-127.2550472350409,57.079818725898505],[-127.25536856179725,57.079857103118734],[-127.25569962496213,57.07987745286126],[-127.25603359357737,57.07989216973816],[-127.25636255641538,57.07991141722396],[-127.25667982987419,57.07995207190323],[-127.25698239950225,57.080016404541674],[-127.25727713623623,57.08009426172191],[-127.2575669782661,57.08018001112016],[-127.25785287629179,57.08027140198218],[-127.2581388490626,57.080365033135884],[-127.25842474982524,57.080456422756434],[-127.2587146705671,57.08054441053911],[-127.25901049202594,57.080623374246294],[-127.25931427841101,57.08069329390252],[-127.25962507908906,57.08075642025261],[-127.25993980932151,57.0808139038567],[-127.26025853877235,57.080866864822475],[-127.26057825627655,57.080918694658166],[-127.26089801141683,57.08097164416807],[-127.26121573982314,57.08102573331596],[-127.26152841024019,57.081083233061776],[-127.26183611284588,57.08114638419417],[-127.26213581650181,57.0812174577083],[-127.26242545693688,57.08129647364376],[-127.26270315398487,57.0813890543352],[-127.26296379188932,57.08149637021662],[-127.26321343705366,57.08161500019968],[-127.26345305637459,57.08174269335898],[-127.26368869582681,57.081874907919534],[-127.26392329641827,57.08200713215041],[-127.26415990585697,57.08213709488945],[-127.26440351299772,57.08226026450507],[-127.26465809917842,57.082372119095595],[-127.26492667507722,57.082469266951584],[-127.26521322571377,57.082548306881655],[-127.26551774691562,57.082608117987704],[-127.2658362239885,57.08265322235991],[-127.26616366789285,57.08268815158331],[-127.26649712115996,57.08271741756407],[-127.26683161543689,57.082746672586445],[-127.26716108857408,57.082780458799604],[-127.2674836240532,57.0828232781275],[-127.26779322999425,57.082880792943904],[-127.26809096767086,57.08295411384204],[-127.26838388643132,57.08303756827709],[-127.26866886494078,57.08313118664732],[-127.26894692338746,57.08323383826719],[-127.26921285533895,57.08334445303432],[-127.26946662383,57.08346191056919],[-127.26970510331279,57.0835851205564],[-127.26992628677195,57.08371634425512],[-127.27012723379028,57.083860093655495],[-127.27031505086524,57.084012937189996],[-127.2704937724457,57.08417147316869],[-127.27066741645571,57.08433230003597],[-127.27084201181711,57.08449087580116],[-127.27102371520161,57.08464601964584],[-127.27121546292469,57.08479209883402],[-127.2714223546123,57.08492794279],[-127.27165147628598,57.08504899908136],[-127.27190580525887,57.08515187609951],[-127.27217724784069,57.08524113590677],[-127.27246078250607,57.08532131065408],[-127.27275545932191,57.0853946511661],[-127.27305811934119,57.08546006737911],[-127.2733689068763,57.08552092028205],[-127.27368576133567,57.08557835075646],[-127.27400557331858,57.085631268309356],[-127.27432947829608,57.08568302428107],[-127.2746533841463,57.0857347794505],[-127.27497729086922,57.08578653381759],[-127.27530024879522,57.085840538306584],[-127.2756191734302,57.08589794391086],[-127.2759330945057,57.085959880972396],[-127.27623998467536,57.086027490185266],[-127.27654088882828,57.08610188219482],[-127.27683874264841,57.08617742420599],[-127.27713568531976,57.08625633693516],[-127.2774295612006,57.08633639986028],[-127.27772351284536,57.086418703039094],[-127.27801543834403,57.08650214624581],[-127.27830740239756,57.08658670925986],[-127.27859832713139,57.08667128182607],[-127.27888826636028,57.086756984245106],[-127.27917824419512,57.08684380648038],[-127.27946818601981,57.086929507621186],[-127.27975816646752,57.08701632857821],[-127.28004811088796,57.08710202844062],[-127.28033905987404,57.087186596994066],[-127.28062999362331,57.08727116506581],[-127.2809229725356,57.08735459160047],[-127.28121589883021,57.08743689718894],[-127.2815118569816,57.087516930704815],[-127.2818117962877,57.08759244115259],[-127.28211476735058,57.087665679480686],[-127.28242071620816,57.087735525374946],[-127.28272769029488,57.08780536048422],[-127.28303364137926,57.08787520494803],[-127.28333860689068,57.08794617922889],[-127.28363950237379,57.088019434511324],[-127.28393643579977,57.0880972114089],[-127.28422734690342,57.088180651058124],[-127.28451122816382,57.08826976342278],[-127.28478608983237,57.0883668097971],[-127.28505691925665,57.088467257810066],[-127.28532374951361,57.08857110716196],[-127.28558758826254,57.08867834794742],[-127.28584839803946,57.08878785973014],[-127.28610723604655,57.088899632105615],[-127.28636403175125,57.089012544956745],[-127.2866188181955,57.08912659797],[-127.28687159988606,57.08924291193862],[-127.28712439962601,57.08935922526413],[-127.28737619777223,57.089476668835424],[-127.2876279974581,57.089594111930744],[-127.28787979868362,57.08971155454991],[-127.28813156387241,57.08982787623764],[-127.28838539544917,57.08994417705528],[-127.2886402151467,57.09005934681607],[-127.28889600187132,57.09017226489514],[-127.28942258183841,57.090321735040554],[-127.28971588757736,57.09041410581693],[-127.29000921124603,57.0905064757766],[-127.29030344759299,57.0905954735866],[-127.29059948666074,57.0906766071224],[-127.29090034206091,57.090747604890716],[-127.29120692014682,57.09080397457135],[-127.29152003988841,57.09084010386959],[-127.2918388650413,57.090861605154934],[-127.29216151881472,57.09087410111373],[-127.29248803868995,57.09087871217211],[-127.2928163972705,57.0908765792202],[-127.29314663210677,57.09086882269885],[-127.29347980498115,57.09085655289299],[-127.2938128431895,57.090839800254585],[-127.2941468297958,57.090820795696715],[-127.29448074054656,57.09079954937567],[-127.29481357244376,57.090777192076],[-127.29514541754341,57.09075596455023],[-127.2954752351658,57.09073587714098],[-127.29580302534352,57.09071692986363],[-127.29613073957672,57.09069574085553],[-127.29645735361873,57.090672320296264],[-127.29678391291371,57.09064777863047],[-127.29711041263243,57.090620995076776],[-127.29743685752815,57.09059309041745],[-127.29776223990532,57.09056407467788],[-127.29808758392342,57.0905339376743],[-127.29841396813454,57.090503789501554],[-127.2987393111307,57.09047365087422],[-127.29906469151226,57.0904446318887],[-127.29939109558401,57.090415601890435],[-127.29971651289631,57.090387701733036],[-127.30004511116323,57.0903620107188],[-127.30038119334314,57.09034409008121],[-127.30072155674024,57.09033060920762],[-127.30106409863726,57.09032046820735],[-127.30140762656778,57.090309195638234],[-127.30174802726945,57.090296832538876],[-127.302085148781,57.090278897127426],[-127.30241484469637,57.09025543082666],[-127.3027348980051,57.09022197250886],[-127.3030442628153,57.09017741186022],[-127.30333870008812,57.090119549647056],[-127.3036170878482,57.090045034689325],[-127.30386989750434,57.08994723734642],[-127.3040991936408,57.089826137129435],[-127.30431037471239,57.08968840517341],[-127.30450873015835,57.089538471997265],[-127.30470063968583,57.08938075717666],[-127.30489249305434,57.08922192180694],[-127.30508756451655,57.08906641645232],[-127.3052943036599,57.08891976069869],[-127.3055170139708,57.088787515569514],[-127.30576204224923,57.08867410076876],[-127.30603472777563,57.088583946031086],[-127.30633183459008,57.08851372109675],[-127.3066480187699,57.08845787517707],[-127.30697382835922,57.08841201951731],[-127.30730382135957,57.08836724194132],[-127.3076316560194,57.08832024349954],[-127.30794883920449,57.0882632635543],[-127.30824899075674,57.08819188284898],[-127.30851810360271,57.08808830872039],[-127.30876477988524,57.08796254253189],[-127.30900823463523,57.08783344570911],[-127.30926789060243,57.08772548159518],[-127.30956081720997,57.087654170352316],[-127.30987087186043,57.0876006197383],[-127.31019056911543,57.087557059003935],[-127.31051778972545,57.087522388540854],[-127.31084944507674,57.08749663933327],[-127.3111833559336,57.08747647076158],[-127.31151543125925,57.0874630447753],[-127.31184559469907,57.08745412049531],[-127.31217575798543,57.08744519537964],[-127.31250690693233,57.087435138677414],[-127.31284013693825,57.08742506018722],[-127.31317439086747,57.08741497053579],[-127.3135097070331,57.08740599016137],[-127.3138451162076,57.08739924965046],[-127.31417952298317,57.087393639207306],[-127.31451296573316,57.087390279285316],[-127.31484657835522,57.0873914001268],[-127.31517818649306,57.08739478199078],[-127.31550789998498,57.08740266545021],[-127.31583466181301,57.087415061183606],[-127.31615955109639,57.087433079158444],[-127.31648148895812,57.087455609446465],[-127.31679958315593,57.087486023576844],[-127.3171137624216,57.08752320146673],[-127.31742429051646,57.087573865480984],[-127.31773003373965,57.08763578543688],[-127.31803091544401,57.087706720479886],[-127.31832901706348,57.08778664961004],[-127.3186242618624,57.087873331958264],[-127.31891551588514,57.08796453734475],[-127.31920383635575,57.08806025510558],[-127.31948914637526,57.088158244371535],[-127.31977237657667,57.088256254078374],[-127.32005454559587,57.088353153096584],[-127.32033358863471,57.08844896233248],[-127.32061981298108,57.088543577452135],[-127.32091020681972,57.08863927057733],[-127.32120174185597,57.088738314024],[-127.32148824033483,57.08884077037202],[-127.32176557270905,57.088946681500445],[-127.32202966999319,57.08905833037875],[-127.32227541701182,57.089176889776276],[-127.32249970825283,57.089302391283226],[-127.32269640427809,57.08943601810129],[-127.3228593876276,57.08958007406711],[-127.32298362556493,57.08973909369621],[-127.32307621509935,57.08990852177126],[-127.3231453381006,57.09008603369624],[-127.32319811932675,57.09026931556406],[-127.32324277389172,57.0904560423875],[-127.32328634958768,57.090641659332256],[-127.32333600456776,57.09082385210793],[-127.32339685429262,57.091001447973454],[-127.32343913690265,57.09117923220777],[-127.32346905247162,57.09135826276226],[-127.32350104976884,57.09153727221551],[-127.32353303084479,57.0917162818517],[-127.32355572820727,57.09189538569833],[-127.32355269927957,57.092076992261184],[-127.32351474238936,57.092264557407724],[-127.32348903708188,57.092447514914504],[-127.32353091907326,57.09261409500001],[-127.32371964598643,57.09275564752778],[-127.32401256927793,57.0928636380058],[-127.32431809478113,57.09291769962606],[-127.32465882036676,57.09291424030312],[-127.32498800336195,57.0929052931261],[-127.3253168217069,57.09288626126407],[-127.32566756253479,57.09287373083766],[-127.32597613363122,57.09286611145558],[-127.32630767393009,57.09286610370164],[-127.32663581536897,57.092857162948604],[-127.32696345339804,57.09283365556714],[-127.32728875497907,57.09280232524931],[-127.32761057948952,57.09275982109818],[-127.3279247801594,57.092706185348696],[-127.32823461748337,57.09264586821917],[-127.32854219506136,57.09257996915772],[-127.32884651078805,57.09250961922808],[-127.32914972362137,57.09243703813688],[-127.32945083155343,57.0923633569436],[-127.32974535550268,57.092278533754715],[-127.3300311138927,57.09217922833518],[-127.33031810558846,57.09208551390774],[-127.33061629692548,57.09201746393813],[-127.33093039495671,57.091990722096966],[-127.33125577168414,57.09199188541641],[-127.33158798133879,57.092010911631604],[-127.33192343591422,57.092034387237696],[-127.33225663161812,57.09205228084928],[-127.33258602218675,57.092050037341544],[-127.33291009390527,57.092013101268115],[-127.33323668015944,57.09198958878154],[-127.33356795708211,57.0919817193027],[-127.33389862118376,57.091986184504535],[-127.33422379113077,57.0920108802114],[-127.33454354529108,57.092058047352616],[-127.33485251885004,57.092122136661544],[-127.33514667666317,57.09220543120357],[-127.33544473192623,57.09228196014893],[-127.3357645677789,57.09233136519371],[-127.33609327631487,57.092368349324005],[-127.33640396904318,57.09242232983378],[-127.33666675758619,57.09252387586107],[-127.33689158340542,57.09266279824586],[-127.33716236177,57.092756415541174],[-127.3374679927151,57.09278354522471],[-127.33779245969474,57.09281720609827],[-127.33812094937569,57.092818320448146],[-127.33842985692559,57.092880160434134],[-127.33873002801866,57.09295778116831],[-127.33900814938433,57.09305468189806],[-127.33922252196665,57.093189224353964],[-127.33937785367215,57.093349031238404],[-127.33958113685587,57.0934915329276],[-127.33979459036804,57.09362944650299],[-127.34002521557969,57.09375597492878],[-127.3403193971219,57.09383925790637],[-127.34053071194752,57.09397495064162],[-127.34072688409809,57.094120886293275],[-127.34094750297253,57.09425648279406],[-127.34116793471343,57.09435733465969],[-127.34154414596318,57.09439381699108],[-127.34185503584816,57.09445226620242],[-127.34212916322427,57.094552564194686],[-127.34243626108105,57.09462113867715],[-127.34271119694574,57.09471470208916],[-127.34293690235924,57.09484800134756],[-127.34322100820135,57.094938106796185],[-127.34353200611554,57.09499991353459],[-127.34384500824616,57.09505945720614],[-127.34410972623776,57.09515648556035],[-127.34431606404338,57.09529670717231],[-127.34461365157908,57.095358649579225],[-127.34484540582622,57.09548739997248],[-127.34513754594629,57.095570693478464],[-127.34541271418597,57.095670974092194],[-127.3457393989291,57.09567881321891],[-127.34606525908983,57.09566312222517],[-127.34638120287957,57.095718146193526],[-127.34669118788288,57.09577995600757],[-127.34699548933169,57.09585639481069],[-127.34717332467969,57.09597897281511],[-127.34745087864282,57.096117333474325],[-127.34774933917456,57.096350749790076],[-127.34806611870535,57.09640015690902],[-127.34811896579451,57.09646349926281],[-127.34840010772722,57.096556986963485],[-127.3486863435676,57.09664817972188],[-127.34896249093572,57.096746201281654],[-127.3492356289042,57.096846495100635],[-127.34951280344247,57.09694450491659],[-127.34980000691418,57.09703344360513],[-127.35010308665606,57.09710428378369],[-127.35026488247361,57.097151926829774],[-127.35073001326981,57.09721884665609],[-127.35104001738367,57.09728064620562],[-127.3512300112313,57.097425510127785],[-127.35135071175924,57.09759687111139],[-127.35158206830907,57.09771328487362],[-127.3518723719373,57.09780218704407],[-127.35242976464224,57.09770225888319],[-127.35272880393408,57.09762854509786],[-127.35299679906244,57.09752376870645],[-127.35325096563815,57.097407926672425],[-127.35349142203809,57.0972843804058],[-127.35368777345857,57.09713999513118],[-127.35385686418599,57.09698468392969],[-127.35400504155591,57.09682174359439],[-127.3541075299547,57.096652552199025],[-127.35415189288932,57.096474997239696],[-127.35416712898102,57.09629214035305],[-127.35419591525014,57.09611250539356],[-127.35429027537444,57.09594676083537],[-127.35451055542124,57.095807730219946],[-127.354684887099,57.095654605288274],[-127.354869701131,57.09550585466939],[-127.35507630781312,57.095360239990015],[-127.35531271090323,57.09523897415798],[-127.35561204188457,57.09517421741489],[-127.35594221747913,57.095134918967204],[-127.35625517585436,57.09507562335206],[-127.35655946057129,57.0950052086611],[-127.35683810867793,57.094910401165635],[-127.35709537533675,57.094795640171135],[-127.35736658655095,57.09469530463885],[-127.35766226594507,57.09461488921864],[-127.3579676248471,57.09454558087445],[-127.35827520622436,57.094480732072036],[-127.3585859948091,57.09441921169014],[-127.3588957581275,57.094357701239815],[-127.35920333643317,57.09429285025823],[-127.35950333730467,57.09421798984835],[-127.3597989523591,57.09413644934851],[-127.36010113493346,57.09406492736061],[-127.36041538025401,57.09401345419619],[-127.36073716169844,57.09397086847287],[-127.3610568144965,57.093926062455246],[-127.361373082718,57.09387344500804],[-127.3616860853617,57.09381637746687],[-127.36200327338689,57.09376038632281],[-127.3623001588463,57.093685551936325],[-127.36250073126573,57.09354559256699],[-127.36268745062492,57.09339344822707],[-127.36294681093004,57.09327977451459],[-127.36322832113626,57.09317931903647],[-127.36340196312769,57.0930373979825],[-127.36347312364924,57.09285955975793],[-127.3635410584614,57.092678392673676],[-127.36369044105616,57.092522153754054],[-127.36388031947365,57.09237221639677],[-127.36409423008985,57.09222987342522],[-127.3643293059063,57.092101879807046],[-127.36458364127763,57.09199273876154],[-127.36487511508646,57.09191122991943],[-127.3651952922047,57.091852957903264],[-127.36552222081342,57.09181030633423],[-127.36584577591618,57.09178898543039],[-127.36617738656682,57.091791117230756],[-127.36651007783841,57.09179435772004],[-127.36684233054942,57.09178527259203],[-127.36717538451855,57.09176945311027],[-127.36749098481447,57.09172803615638],[-127.36777172687673,57.09163542475706],[-127.36804050371099,57.091526125454344],[-127.36833736013915,57.09145127745163],[-127.36865157303896,57.09139978454808],[-127.36897436416245,57.0913571676716],[-127.3692982586472,57.09131678011185],[-127.36961894351076,57.09127306288549],[-127.36995127253631,57.09123706854293],[-127.370273980903,57.09119220759178],[-127.37055724048304,57.09111301390086],[-127.37078402843228,57.09098509553497],[-127.37098627727659,57.0908350176392],[-127.3712108372948,57.09070263853302],[-127.37148635249264,57.09060895312724],[-127.3717947035992,57.090538459716484],[-127.37211395469305,57.09048354284256],[-127.37243390900196,57.09044879311659],[-127.37276726944478,57.09044192282102],[-127.37309784468663,57.09044404780732],[-127.37342761967341,57.09045290549556],[-127.37375653094769,57.0904662548574],[-127.37408552261883,57.09048184425062],[-127.37441365076847,57.09050192532596],[-127.37474180284575,57.090523126180464],[-127.37507155529619,57.09053085910962],[-127.37539852332894,57.09054758738875],[-127.37572414917443,57.09058450436194],[-127.37603993308389,57.09063497458853],[-127.37633603287541,57.09071255222946],[-127.37661832237474,57.090808208613666],[-127.37690458234512,57.09089933908449],[-127.37719286836914,57.09098932670384],[-127.37750472871222,57.09104543914774],[-127.37783725370001,57.09104416903223],[-127.37812348154924,57.090961564832064],[-127.37839960381191,57.09085664969636],[-127.3786823780598,57.09076399305965],[-127.37896621533712,57.09067244541853],[-127.37925001102663,57.09057977673722],[-127.37953065958105,57.09048601985872],[-127.37984464244101,57.09039975574414],[-127.38005301306579,57.09027762004827],[-127.38011407283827,57.0901088459312],[-127.38012811841301,57.089924877274626],[-127.38013899438971,57.08973870046754],[-127.38013862097924,57.08964231099852],[-127.3802740168556,57.08938644461724],[-127.38038047551142,57.089216069207765],[-127.38049938582999,57.08904780364981],[-127.38062565082906,57.088882822708456],[-127.38075600395975,57.08871667752563],[-127.38089160662672,57.08855271835279],[-127.38102095714808,57.088387704387785],[-127.38112843382424,57.08821731764799],[-127.38120688273628,57.08804387565051],[-127.3812521345671,57.08786630175081],[-127.38128491725178,57.08768661819384],[-127.38130841682342,57.0875070329564],[-127.38132570564362,57.087327513508285],[-127.38131921865829,57.08714712501773],[-127.38129208521288,57.086966955197376],[-127.38134886034238,57.08679374275919],[-127.3814645896391,57.08662326847623],[-127.38157622895851,57.08645395827434],[-127.38163703416193,57.08627846136253],[-127.38165742605996,57.08609890913686],[-127.38166538989331,57.085918367730216],[-127.38168269284719,57.085738848265365],[-127.38170721339783,57.085559252360284],[-127.38173173371925,57.085379656473734],[-127.38176042322763,57.08520113728569],[-127.38179530611139,57.08502255249699],[-127.38183423713777,57.08484168312915],[-127.38187196605494,57.084656343105024],[-127.38195040433905,57.08448290110535],[-127.38211978504326,57.084339879187375],[-127.38237892956965,57.084223926922874],[-127.38267820172162,57.08413220743641],[-127.38298036749606,57.084063994422195],[-127.38329441965489,57.084010225683635],[-127.38361602774636,57.083965342825685],[-127.38393976378678,57.08392267828903],[-127.3842592655331,57.08387669533247],[-127.38457660475079,57.08382849284337],[-127.38489614534403,57.08378362875163],[-127.38521905646033,57.08374657402591],[-127.38554423348462,57.083715098676336],[-127.38587063605848,57.0836892137418],[-127.38619936176188,57.083670028399446],[-127.38652943463394,57.0836597947103],[-127.38686193584738,57.08365962202055],[-127.38719443705781,57.083659448483196],[-127.38752350954981,57.08365034376612],[-127.38784583829637,57.083625618061276],[-127.38815677510533,57.08357187067328],[-127.38845870028443,57.08349692229889],[-127.38876156724685,57.08341972148609],[-127.38907225802572,57.083359249404005],[-127.38939158685076,57.08330877221567],[-127.38971655408837,57.0832716843763],[-127.39004237207908,57.0832581245375],[-127.39037090311099,57.08326246858707],[-127.39069983982857,57.08327801600218],[-127.39102992249153,57.08329691292441],[-127.39135894093147,57.083314699516336],[-127.39168867543893,57.08332351082361],[-127.39201910926774,57.08332334701693],[-127.3923485838295,57.083325434318695],[-127.3926786029884,57.08334208605547],[-127.3929991368542,57.083382376175145],[-127.39331402283153,57.083437296938264],[-127.39362799116242,57.08349558931725],[-127.39394278113886,57.08354826790621],[-127.39426499237484,57.08357732849444],[-127.39459724878701,57.08357041357626],[-127.394921549336,57.08360057106303],[-127.39524320958887,57.08364308538385],[-127.39555115193531,57.08370592107098],[-127.39586314280832,57.08376647100775],[-127.39616014801273,57.0838406308785],[-127.3964293348165,57.0839453510011],[-127.39674406735834,57.083995781833615],[-127.39706767517941,57.08403490830428],[-127.3973912836596,57.084074033973216],[-127.39772344093953,57.08409289184855],[-127.39795900728504,57.08398276508516],[-127.39814347525555,57.08383059320105],[-127.39835003475832,57.08368939274646],[-127.39855980354466,57.0835515201124],[-127.39876953002886,57.08341252673772],[-127.3989792549956,57.08327353303966],[-127.39918583272484,57.083133451912005],[-127.39939344941948,57.08299335930717],[-127.39960421030894,57.08285435348215],[-127.39982135052992,57.08272088311466],[-127.4000000790053,57.082638263160845],[-127.40007321353906,57.08260497329955],[-127.40036977523609,57.08252557123764],[-127.40068260312667,57.08246729002824],[-127.40096207531083,57.08237237818086],[-127.40123410815988,57.08227194138426],[-127.4015039690938,57.08216816478946],[-127.4017706419816,57.082062180185865],[-127.40203727250781,57.081955074630585],[-127.40230394244551,57.08184908895293],[-127.40256309105908,57.081735337630604],[-127.40283636021319,57.08164048842049],[-127.40316242263536,57.08160559676481],[-127.40346136203277,57.08153512883237],[-127.40372564559274,57.081646611657106],[-127.40401574365927,57.081729794696585],[-127.4043207850006,57.081798245088315],[-127.4046189791,57.08187685622354],[-127.4049402668746,57.081909262853955],[-127.40524432834411,57.081978842538874],[-127.4055483909149,57.08204842151848],[-127.40586034307847,57.08210782705713],[-127.40617523698904,57.08216271672143],[-127.40649107369195,57.082215353758144],[-127.40680397054415,57.08227250517741],[-127.40711196184701,57.08233643392261],[-127.40741202498856,57.082409414362324],[-127.40770816575966,57.08248804074741],[-127.4080023665374,57.08257004999179],[-127.40829558569995,57.08265319004752],[-127.40858878961626,57.082736329627444],[-127.4088849764063,57.08281607377251],[-127.40918410491031,57.08289130204878],[-127.40948524138267,57.08296538709771],[-127.40978837772128,57.083037208135],[-127.41009249802316,57.083107896987656],[-127.4103946372831,57.08318084828604],[-127.41069475439897,57.083254941631274],[-127.41099189121424,57.08333242912006],[-127.41128408218441,57.08341557375976],[-127.41157024575438,57.08350326643306],[-127.41184848224401,57.08360001118016],[-127.4121217731777,57.083702413197],[-127.41238799646212,57.083809374638335],[-127.41264917540148,57.08391975277493],[-127.41290528532828,57.084032427045976],[-127.41314537549991,57.08415872472907],[-127.41335697662636,57.084296539322985],[-127.41348480063839,57.084458799624045],[-127.41359537428679,57.084629092817],[-127.41376530856509,57.08478529219467],[-127.41399405965142,57.084911711375746],[-127.41425220341401,57.08502324028716],[-127.41452248833528,57.085127911874466],[-127.4147907514555,57.085233725717785],[-127.41505999879413,57.08533840749417],[-127.41533020557003,57.085440836604874],[-127.41559542581378,57.085547802745694],[-127.41584961456397,57.08566385501543],[-127.41607135000966,57.08579595123037],[-127.41623816959954,57.08595106063697],[-127.41639379231118,57.08611077490226],[-127.41660026261779,57.08624864038892],[-127.41685758900827,57.08636577762137],[-127.41709242949607,57.08648876298926],[-127.4171814209384,57.08666152983364],[-127.41703046209241,57.086824574206425],[-127.41713712850986,57.08702853327372],[-127.4173554034761,57.08706651265124],[-127.4176965647232,57.08707625534562],[-127.41802557649919,57.08706483282877],[-127.41835419087981,57.087042205166],[-127.41868059957945,57.08701623807107],[-127.41900694157357,57.08698802915352],[-127.41933215971483,57.08695758991662],[-127.41965741875026,57.08692827028284],[-127.42000014694688,57.08692453952217],[-127.42030557584762,57.08688982982948],[-127.4206390920611,57.08686041782123],[-127.42096836631649,57.08685571018094],[-127.42129878891606,57.08685435178838],[-127.42162821238941,57.08685412431272],[-127.42195867642859,57.08685388466127],[-127.4222890574912,57.086851403347964],[-127.42261935551944,57.08684668037382],[-127.42295332614772,57.08682958698311],[-127.42328717193298,57.086809131501994],[-127.42361730337542,57.08679992435354],[-127.42393798378868,57.08681435771297],[-127.42424157841704,57.08686932800281],[-127.42453200964346,57.0869591881913],[-127.42481856232703,57.08705581531564],[-127.4251178797448,57.08713436851394],[-127.42543593106014,57.087189178128924],[-127.42573085545482,57.08726105276567],[-127.42595680498655,57.087394207603744],[-127.42619993951236,57.087517086379926],[-127.4264561131615,57.08762973433483],[-127.4267522499076,57.08770607695181],[-127.42706242425248,57.08777105666384],[-127.42732256493726,57.087879176113724],[-127.42757680453748,57.08799520572513],[-127.42786810955997,57.088080565704644],[-127.42816343679641,57.088162518411025],[-127.42842654701415,57.08826724063622],[-127.42866763026412,57.088390137500966],[-127.42890267113968,57.08851758361238],[-127.42914375748394,57.088640479619464],[-127.42939292095434,57.08875880322355],[-127.42965315829348,57.08886915892616],[-127.4299572361715,57.088936440522765],[-127.43026730070811,57.08899805143774],[-127.4305754266941,57.08906304549727],[-127.43121159735274,57.089200659012945],[-127.43140011852623,57.089243425174175],[-127.43146675301101,57.089285286980314],[-127.4317649772285,57.08936159565021],[-127.43208572759212,57.0894051511227],[-127.43241222984165,57.089436313083425],[-127.43272407455464,57.089490052629706],[-127.43303022748717,57.08955730441505],[-127.43335189612469,57.08959748411505],[-127.43367360725641,57.08963878343394],[-127.43399238099222,57.08968459774277],[-127.43431117200655,57.08973041109268],[-127.43463188648713,57.08977283990586],[-127.43495541408437,57.089807390896055],[-127.43527998291034,57.089841929634375],[-127.43559588072848,57.089893376072325],[-127.43590892528385,57.08995157839416],[-127.436235148763,57.09000290964284],[-127.43654825360339,57.090062230663705],[-127.43681515205213,57.090156806941266],[-127.43702778602609,57.09029121103078],[-127.43720816466033,57.09044726676337],[-127.4373751736523,57.09060459047376],[-127.43749830177626,57.09077584804601],[-127.43764871084738,57.09093111265462],[-127.43792512780412,57.09103118627828],[-127.43835990970163,57.09111270013917],[-127.4386847277259,57.09107100846097],[-127.43871016887468,57.090950794431805],[-127.43877474039957,57.090771863415256],[-127.43900051025874,57.090650560497046],[-127.43923536867345,57.09052355254147],[-127.43949365222548,57.090415340497145],[-127.43980746710062,57.09035583341957],[-127.44012042490438,57.09030081853357],[-127.44040621904199,57.09021023490151],[-127.44067498922337,57.090106388177986],[-127.44094160910367,57.090000322899535],[-127.44120822751162,57.08989425708423],[-127.44147910013201,57.08979150632344],[-127.44175043392927,57.08970107949941],[-127.44199804456433,57.08958401340234],[-127.44232058494912,57.089509832386845],[-127.4426160463764,57.089429224808136],[-127.44290348593597,57.08930050773803],[-127.4431482219419,57.089272020208995],[-127.44349235977221,57.08925027835813],[-127.4436997191896,57.08921659903562],[-127.44415184126578,57.08923737430127],[-127.44448191706321,57.08925389522117],[-127.44480611007066,57.089223403770035],[-127.44513251940018,57.08919737044925],[-127.4454589869696,57.089172456535955],[-127.44578522672776,57.08914193995629],[-127.44611039967828,57.089110313508755],[-127.44643711903122,57.08909211958783],[-127.44676781316053,57.08909741911966],[-127.44709772003128,57.0891094517946],[-127.44742668744655,57.08912373581149],[-127.44775738198454,57.08912903283496],[-127.44809174141925,57.08912195871272],[-127.44841089267011,57.08914979972642],[-127.44870712701096,57.08922721299025],[-127.4489976332774,57.089317018856626],[-127.44930085128853,57.08938762797885],[-127.44961197459348,57.0894491815554],[-127.44992405493868,57.089508482014466],[-127.45023221826479,57.08957342966841],[-127.4505315226228,57.089649683882286],[-127.45081200879521,57.089747443376176],[-127.45101856330442,57.089884134509724],[-127.45124759432578,57.0900138500254],[-127.45146787558018,57.09007640993016],[-127.45181507558264,57.09019023815575],[-127.45203593666983,57.090322285050085],[-127.45227611004506,57.090446270451125],[-127.45250613043605,57.090574852002256],[-127.45273110921451,57.09070685195665],[-127.45295808610597,57.09083658754174],[-127.45319624324065,57.09096171469947],[-127.45342118425755,57.0910925930951],[-127.45362587658423,57.091233784678494],[-127.45382444417878,57.09137728598873],[-127.4540291395048,57.09151847696843],[-127.45423283806845,57.09166079964892],[-127.4544130384562,57.091810109307595],[-127.45453409666028,57.09197913315595],[-127.4546998879432,57.09212972402477],[-127.45495634569468,57.09224679800374],[-127.45514985440634,57.09239259569816],[-127.45531079306511,57.09255108617152],[-127.45540397290186,57.09272042037993],[-127.45540241646603,57.09292443792713],[-127.45550933032533,57.09307456392928],[-127.45570580706003,57.09321696519944],[-127.45584313412766,57.09321543271648],[-127.45621688600146,57.09302071144326],[-127.45644537972663,57.09289038022513],[-127.45666969956694,57.092758974328426],[-127.45685518774592,57.09261118850578],[-127.45703954877456,57.09246117324784],[-127.4572428750227,57.09232103379573],[-127.45747660010254,57.092192884073505],[-127.45770616785416,57.092063659503104],[-127.4579336101365,57.091933337398046],[-127.45816317479947,57.09180411204767],[-127.45840012684744,57.091679287218575],[-127.4586762901474,57.09158092461948],[-127.45897718497082,57.09150806506674],[-127.45931997158291,57.0914504284961],[-127.45959299703738,57.09137787927862],[-127.45990359793042,57.09131611776301],[-127.46020883100807,57.09124881118447],[-127.46050967771731,57.091174827711306],[-127.46080262280331,57.091082997934414],[-127.46109086502211,57.09100354985142],[-127.46137333891606,57.09090847341773],[-127.46166674893563,57.090828966149644],[-127.46198641161027,57.09078839480489],[-127.46231490391189,57.09076229513785],[-127.462632218523,57.090687001217184],[-127.46292011258316,57.09059858589732],[-127.46320051417732,57.090503528691876],[-127.46346605046878,57.09039742884353],[-127.46372094597415,57.090283601682906],[-127.4639758137814,57.09016865344674],[-127.46422120949116,57.090049327507096],[-127.46444646754281,57.089916776613094],[-127.46467393348944,57.08978756317591],[-127.46488829556877,57.089694364679175],[-127.4652018219357,57.08957427172548],[-127.46542287537015,57.08943952458967],[-127.46565768175883,57.089313589588926],[-127.46608887288899,57.08908344688421],[-127.46616944907096,57.089002958691445],[-127.46645504632251,57.08893585799297],[-127.46667494057009,57.08887958338013],[-127.46675945533545,57.088712742727935],[-127.46685197138726,57.0885390867711],[-127.46724385601604,57.088226437079804],[-127.46729110712789,57.08811157577107],[-127.46737885718746,57.08805678638032],[-127.46755189346933,57.08809855396922],[-127.46790885069267,57.0882234385589],[-127.46822369544297,57.08827369723821],[-127.4685501316736,57.088302527929336],[-127.4688552543788,57.08836858689425],[-127.46915165244594,57.08844931488296],[-127.46945296454682,57.08852326157015],[-127.469763089044,57.08858477858571],[-127.47008224008908,57.088639467856446],[-127.47040518950331,57.088658245326734],[-127.47073361496643,57.08863100410444],[-127.47104968898888,57.088578121066675],[-127.47133324683337,57.08848525229561],[-127.47165503032714,57.088446874835306],[-127.47197889437159,57.0884084730962],[-127.47230287009079,57.088373431932474],[-127.47262952779288,57.08835405202886],[-127.4729587918729,57.08834921334045],[-127.47328837321413,57.08835221641318],[-127.4736190646542,57.08835744787733],[-127.4739497131898,57.088361558106506],[-127.47428108484414,57.08835781314636],[-127.47460627067025,57.08838103846316],[-127.47491446666277,57.08844592775747],[-127.47522400551834,57.08851864733298],[-127.47552919207551,57.08855890980967],[-127.47587033816369,57.088567379976354],[-127.47619935466851,57.08858271182855],[-127.47652665131211,57.088607029391774],[-127.47685407760883,57.0886347073223],[-127.47717478678244,57.08867591111372],[-127.47748781467944,57.088731772625664],[-127.47779606146023,57.08879777552459],[-127.47809639544064,57.08887283445166],[-127.4783857977244,57.088959225449955],[-127.47866321778389,57.08905583962052],[-127.47893164176111,57.08916040141681],[-127.47919511288873,57.08927062327621],[-127.47944840789435,57.0893843227031],[-127.47967755856311,57.08951510883449],[-127.47992487824892,57.08963447960072],[-127.48015188093387,57.08976304755629],[-127.48030878221586,57.0899215537413],[-127.48041351668165,57.09009298157958],[-127.48051819237583,57.09026328914634],[-127.48069337787035,57.090413741235785],[-127.48086147583862,57.09056763624308],[-127.48100001619105,57.0907319546337],[-127.48116109774631,57.09089153341558],[-127.4813678131304,57.09100239566224],[-127.48172360877422,57.091015167982874],[-127.48205061659017,57.09097782647817],[-127.48236002425303,57.090912661968595],[-127.48267725493658,57.09086310022245],[-127.48300026071578,57.09082916446747],[-127.48331190344744,57.09076845581579],[-127.48361489651111,57.090697756799926],[-127.48390817229591,57.09061595873663],[-127.48419175738711,57.090524182276575],[-127.48447099504959,57.09042685022669],[-127.48475134204743,57.0903317467185],[-127.48503381226172,57.090237739314496],[-127.48533929602051,57.09017821675982],[-127.48567163619484,57.09017219022291],[-127.48599243871469,57.09013490941042],[-127.486307376746,57.09007976041621],[-127.48662241712312,57.09002685126339],[-127.48693852412423,57.089975050071445],[-127.48725574115682,57.089925477226],[-127.48757404139607,57.08987701213696],[-127.48789588023507,57.08983971478443],[-127.48822602209874,57.08983034411369],[-127.48855492408063,57.089842283638696],[-127.48888399999421,57.08985870390662],[-127.48921392653659,57.08987063008108],[-127.48954597799774,57.089883652047384],[-127.48987792624432,57.08989443257213],[-127.4902052835295,57.089892934921664],[-127.49052203679028,57.08985793094039],[-127.49082577258082,57.08978048116775],[-127.49114084777692,57.08972868150753],[-127.4914695557044,57.08970923099617],[-127.49179952150774,57.08969536971523],[-127.49212494686921,57.08972415334467],[-127.49244191683906,57.089774329818695],[-127.4927472664811,57.08984481453616],[-127.49300962716846,57.0899516590928],[-127.49310171674892,57.0900088913123],[-127.49355758307041,57.09015162997901],[-127.49381688628068,57.09025962888438],[-127.49403280909301,57.090393904656665],[-127.49423360455826,57.09053732051585],[-127.49441921253789,57.09068875633207],[-127.49458941497181,57.09084261021314],[-127.49472792783041,57.091004673271414],[-127.49483479440825,57.09117606600271],[-127.49494879333042,57.091345135156196],[-127.49512610510479,57.09149554431628],[-127.49531265814917,57.09164472644296],[-127.49547582420759,57.09180314359091],[-127.4956572262328,57.091952384342704],[-127.4958923093908,57.09207410787815],[-127.4961749498713,57.09217062592276],[-127.49646643886487,57.092255832939124],[-127.49676585584436,57.092331981212126],[-127.49706818837167,57.09240361178218],[-127.49736759117702,57.09247975887195],[-127.49766507787798,57.09255928997253],[-127.49795648572723,57.09264225289892],[-127.49824404381842,57.09273198477439],[-127.49852960926974,57.0928239807161],[-127.49880211228121,57.092925093290994],[-127.49903823555324,57.093046799476056],[-127.49922993814039,57.09319479636057],[-127.4994490457646,57.09333014815363],[-127.49968835021448,57.093454058475366],[-127.49997376597494,57.09354156954472],[-127.50027431167634,57.09361993884498],[-127.50050245426868,57.093695777598846],[-127.50065898399193,57.093868836824385],[-127.50100342321232,57.093960150334],[-127.50131854997235,57.09401481072287],[-127.50163950552759,57.09406043609768],[-127.50196390720285,57.0940880866723],[-127.50229460807697,57.09409212507578],[-127.50262522134572,57.094093921857414],[-127.5029567554346,57.094119246027944],[-127.50323907787121,57.094206785776834],[-127.50350660784873,57.094312429775776],[-127.50376620299605,57.09442601099829],[-127.50401465338692,57.094545324706424],[-127.50424378682703,57.09467270699158],[-127.50443857945709,57.0948195401936],[-127.50460583886753,57.094975657874244],[-127.50471472127094,57.095144778593195],[-127.50483901279146,57.09531147971322],[-127.50500517826119,57.09543958713252],[-127.50518768842073,57.09561570443858],[-127.505418092526,57.095748674713604],[-127.5056747289739,57.09586564927312],[-127.50595693863208,57.09594982207455],[-127.5062912891649,57.09596725920835],[-127.50661380453434,57.09599940386227],[-127.5068968085909,57.096103741697384],[-127.50700384321439,57.09619890274094],[-127.50709672070911,57.09643321886867],[-127.50714203998314,57.09661428117824],[-127.5072754721215,57.0967763911345],[-127.50743964565571,57.09693254128685],[-127.50761816093348,57.0970851628342],[-127.50780070338286,57.09723549582585],[-127.50801478115898,57.097373134177055],[-127.50825635211449,57.09750036626265],[-127.50849284156159,57.09762989848855],[-127.50863112944701,57.09778410482838],[-127.50867938748698,57.09796064929352],[-127.50870415229386,57.09814419085397],[-127.50875973557811,57.0983228924418],[-127.50882869087103,57.098500318491055],[-127.50892534271082,57.098672940606974],[-127.50907207306666,57.098831532631046],[-127.5092555823068,57.098979610951275],[-127.50945548267094,57.09912413670411],[-127.50965440423047,57.09926979441231],[-127.50983181018293,57.09942018444569],[-127.50997557317018,57.099582172665535],[-127.51008966369811,57.099751229613865],[-127.51018327877185,57.099925007107984],[-127.51021514496843,57.09999973884037],[-127.51025835122853,57.10010012010513],[-127.5103015968988,57.10028008511873],[-127.51029508296246,57.100456142519896],[-127.51013194129926,57.100616078371964],[-127.5099276957359,57.10075519251132],[-127.50969305271404,57.100883449000186],[-127.50949718107928,57.101025828281095],[-127.50936838430212,57.10119209126758],[-127.50925622480139,57.10136152440549],[-127.50915341072408,57.10153197027031],[-127.50905687990634,57.101704585206456],[-127.50887258969763,57.10185243414049],[-127.50860294144395,57.10195755443816],[-127.50846672447109,57.10211941873628],[-127.50880117670286,57.10240138267322],[-127.50898697171888,57.10252813829926],[-127.50934141112938,57.1026350085316],[-127.5096370239768,57.102716777603206],[-127.50994526199767,57.102778223613946],[-127.51027472231974,57.10280131245695],[-127.51059815674196,57.1027762712535],[-127.51091631357573,57.10272214678383],[-127.5112403642933,57.10271278953486],[-127.5115701876579,57.10271905730187],[-127.51187828834884,57.10272445502725],[-127.51223595924284,57.10272927754119],[-127.51253245272102,57.102780765439135],[-127.51283173725365,57.10287705660876],[-127.51314662841496,57.10292384620497],[-127.5134234064066,57.10297331893],[-127.51374619044964,57.10306261005072],[-127.51402882413299,57.10315572899631],[-127.51432358674069,57.103241981143164],[-127.51461224271125,57.10333054534487],[-127.5148706696502,57.10343851532149],[-127.51505233464367,57.103591091545134],[-127.51531683577645,57.10366984653666],[-127.51554068459473,57.103791667715925],[-127.51566110750178,57.103884425368356],[-127.51607669509637,57.10399505113638],[-127.51628346998469,57.10412939949862],[-127.51645603437196,57.10428656333658],[-127.5166863524833,57.10441503296647],[-127.51693180111042,57.10453435904781],[-127.51707256744213,57.104697496366825],[-127.51724787343804,57.104845660132334],[-127.51749845438714,57.10496380465204],[-127.51773997164462,57.10508765869307],[-127.5179499977179,57.105225329576214],[-127.51814892227743,57.105369854776136],[-127.51835091063857,57.105513223145024],[-127.518559097233,57.10565651910427],[-127.51872117259872,57.10580931872412],[-127.51877046732763,57.105984728164486],[-127.51878492973505,57.10616726849424],[-127.5188949473914,57.10633636663361],[-127.51902140231967,57.10650303155162],[-127.51906867801267,57.10667958540926],[-127.51910779677466,57.10685847605784],[-127.51917779543892,57.1070347654129],[-127.51924672584204,57.107209946284215],[-127.5192816702998,57.107387764649125],[-127.5192753736883,57.10756830499563],[-127.51930425456321,57.10774955673902],[-127.51946030549577,57.10790690960348],[-127.5197267292064,57.108006931334096],[-127.52004419668444,57.10806488418757],[-127.52034569975969,57.108137594154634],[-127.52064326659766,57.10821483296631],[-127.52093988228845,57.108294324032144],[-127.52123348115876,57.10837609143885],[-127.52152907471827,57.10845559311864],[-127.52182865118881,57.10853168495672],[-127.52213413160418,57.10859986085767],[-127.52244252571387,57.108663518407056],[-127.52274903287407,57.108731680922226],[-127.52305351983158,57.10880098722653],[-127.52335701121221,57.10887142537391],[-127.52365661107574,57.1089475128466],[-127.52394331018942,57.10903720129142],[-127.52417772440273,57.109163369105204],[-127.52439897135051,57.10929641583183],[-127.52461421702166,57.10943401599066],[-127.52482329486723,57.109572808808196],[-127.52502426112098,57.10971505886189],[-127.52520491048404,57.10986651341807],[-127.52535588247122,57.11002504013296],[-127.5255400691424,57.11023922433699],[-127.525657919242,57.11034433388837],[-127.52587519659538,57.11048078752568],[-127.52605585291808,57.110632240988735],[-127.52620378546814,57.11079192334643],[-127.52628824025217,57.11099270101253],[-127.52637464470438,57.11113853084402],[-127.52644159399091,57.11131485299745],[-127.52648186561527,57.11149597085081],[-127.52655792605161,57.111667702761835],[-127.52672832223375,57.11182039645012],[-127.52693046570329,57.11196599301012],[-127.52714873687806,57.11210131230237],[-127.52740195129572,57.11220595748783],[-127.52769843432371,57.112306732984905],[-127.52780815208608,57.1124668611797],[-127.52783747635524,57.112606632949884],[-127.528186281398,57.11272360872663],[-127.52844296684214,57.1128371787461],[-127.52861228984936,57.11298876190062],[-127.5287552920286,57.11315410422217],[-127.52885792618011,57.11329189625764],[-127.52906662574458,57.1134721616217],[-127.52923406656306,57.11362824983886],[-127.52936882431553,57.11376790701734],[-127.52933427484841,57.113964473190194],[-127.5293091323129,57.11411160858206],[-127.52930199092076,57.11429552350092],[-127.52951384999997,57.114476872273514],[-127.52967214200447,57.11463643009366],[-127.52984470259202,57.11479133682418],[-127.5300265254798,57.114945013862496],[-127.53018877503402,57.115100041074086],[-127.5302524740439,57.11522035400385],[-127.53023576842634,57.11544921824425],[-127.53029550333652,57.115625623850924],[-127.53037793790048,57.115800642390674],[-127.53048394666116,57.115970900796775],[-127.53062885542234,57.11613173559854],[-127.53078607286606,57.11629018407183],[-127.53115126436995,57.116350914331136],[-127.53143983420804,57.1164338401549],[-127.53170361503861,57.11654283752715],[-127.53198741633733,57.116635906466165],[-127.5322741476055,57.11672445671473],[-127.53256492305508,57.116810717020485],[-127.53286258170597,57.11688792846213],[-127.53316921778875,57.116957187316366],[-127.5334041983682,57.1170698824488],[-127.53360510822093,57.11715719618564],[-127.53396401793795,57.11726731332653],[-127.53424582519453,57.11736152189253],[-127.53452761730475,57.11745573005117],[-127.53480942732772,57.11754993741352],[-127.53508722422038,57.11764755416706],[-127.53535897487043,57.11774860425248],[-127.53561058614564,57.11786334185035],[-127.53584113948378,57.11799401974433],[-127.53608373306925,57.11811558815413],[-127.53633743168656,57.11823029987258],[-127.53660819322239,57.11833248005769],[-127.53684979484926,57.11845517973326],[-127.53708737177601,57.11858016823996],[-127.53732395373055,57.11870628899053],[-127.53756151722524,57.11883127685218],[-127.53780309667647,57.11895285421335],[-127.5380527466666,57.11906985234837],[-127.53831858577057,57.11917769181814],[-127.53858738279907,57.119282133120315],[-127.53887270354238,57.11941216048599],[-127.53908768985374,57.11951499330099],[-127.53931521868026,57.119646822064425],[-127.53953051438471,57.11978327845773],[-127.5397305471663,57.11992551920961],[-127.53991742823872,57.12007464041682],[-127.54010631561646,57.120222616788844],[-127.54031448332977,57.1203613979755],[-127.54054597420807,57.12048869430978],[-127.54078962337826,57.12061024210181],[-127.54104137615394,57.12072721007936],[-127.54129311393297,57.120844177776796],[-127.54156422213217,57.12095419068312],[-127.54185258936836,57.121056152682],[-127.54210115040833,57.12117091456016],[-127.54225478767428,57.121315941710044],[-127.54231662486882,57.12149119756294],[-127.54233554655272,57.12167929071345],[-127.54235937259465,57.12186060034793],[-127.54237179666818,57.12204092378378],[-127.54237280208008,57.122220261219105],[-127.54234703356659,57.1224021568675],[-127.54247543952634,57.122562054185586],[-127.5427691483602,57.122642653596934],[-127.54305294802171,57.12273345789687],[-127.54331072431178,57.12284586699392],[-127.54356347934817,57.12296169778156],[-127.54383258758905,57.123072850983675],[-127.54402120579456,57.123212979010425],[-127.5441160567072,57.12338672299439],[-127.54417804098925,57.12356533943744],[-127.54418834601005,57.12374456716272],[-127.54416249490932,57.123924222568746],[-127.54415835062497,57.12410362124774],[-127.54416052470653,57.12428630802426],[-127.54418215916114,57.1244642809085],[-127.54430056239002,57.12463214170793],[-127.54456011033275,57.12471089964961],[-127.54488475271815,57.12476310529943],[-127.54510366018013,57.12488493867622],[-127.54540431781555,57.124957603778746],[-127.54573574050202,57.12497273618907],[-127.54605278421053,57.12501606146059],[-127.54635946388164,57.12508416934279],[-127.54666516476291,57.125153409053745],[-127.54697952587662,57.12520685232694],[-127.54730263722534,57.12524673990205],[-127.54762476939229,57.125287759231675],[-127.54793231481563,57.125351369478444],[-127.54823405170862,57.12542513633896],[-127.54851720667872,57.12549912291807],[-127.54861269162565,57.12555964195308],[-127.54911251140994,57.125623210548675],[-127.5494401247251,57.12564622541895],[-127.54976864426655,57.12566586589905],[-127.55009778185963,57.125675409769514],[-127.55042830721347,57.12566812224845],[-127.55075985749087,57.12566082171522],[-127.5510879989448,57.12564571426343],[-127.55141114622612,57.125609367484536],[-127.55172966126757,57.125560744623705],[-127.55205267127691,57.12552103505727],[-127.55251089075229,57.12555257799056],[-127.55269913376354,57.12552904152964],[-127.5530292039148,57.12551054342172],[-127.55334892254524,57.1254663860224],[-127.55366438765012,57.12541891563144],[-127.55399513698158,57.12541722108329],[-127.55432947714976,57.12542781328747],[-127.55465516148352,57.125454200873364],[-127.55496047166582,57.12551333758439],[-127.55524957051153,57.12560629492767],[-127.55555132347133,57.12568004489305],[-127.55586184057282,57.12574023844643],[-127.55617442528363,57.12580040663108],[-127.55647910798832,57.1258696358169],[-127.55676816774174,57.1259614694228],[-127.55707630413735,57.12601384194729],[-127.55740832740038,57.12601772832705],[-127.55774235536076,57.12602046900293],[-127.55806234754361,57.12605924646573],[-127.55836928436575,57.126132928187616],[-127.55863203019963,57.12623852315227],[-127.55885063085174,57.12637715203283],[-127.55908324455984,57.12650440381856],[-127.55937101706687,57.126589521551864],[-127.55968868154538,57.12664737895303],[-127.56001263208273,57.126681620681225],[-127.56034007872725,57.12670012662648],[-127.56067134006616,57.1267107395521],[-127.5610034608799,57.12671685758985],[-127.56133358976169,57.12672524049214],[-127.56166471479712,57.126732489702775],[-127.56199570313368,57.126736376879265],[-127.5623253927573,57.12673355309464],[-127.56265349319894,57.12671729616915],[-127.56297973029609,57.12668088372846],[-127.56329501088538,57.12662890843797],[-127.56365977441612,57.12654831614783],[-127.56387487749268,57.1264739993498],[-127.56410167378073,57.12661027964866],[-127.56430587521453,57.12675019314064],[-127.56458678495054,57.126844349339386],[-127.56488656112145,57.12691922276398],[-127.56518641333143,57.12699633649741],[-127.56547329857611,57.12708481449208],[-127.5657916979353,57.12713480179703],[-127.566102918657,57.127185995391315],[-127.56639380363754,57.1272710606041],[-127.56668078521047,57.12736177675818],[-127.56696273034149,57.127455915587625],[-127.56723166328328,57.127560298541894],[-127.5674612658923,57.12768869302322],[-127.5676908992793,57.12781820770855],[-127.56795885741995,57.127923721898625],[-127.56824875625783,57.128009915931635],[-127.56854266903166,57.12809269827935],[-127.56882759507278,57.12818343459907],[-127.56906774098077,57.12829152268284],[-127.56931110059669,57.12842759541756],[-127.56961578201975,57.128495673686835],[-127.56987439557788,57.12860017550716],[-127.5700889167225,57.12873883551309],[-127.57030446454613,57.1288774828519],[-127.57054910323181,57.129019142796174],[-127.57085766594126,57.129055785026424],[-127.57113433738304,57.12914661583923],[-127.57129774639532,57.12929934041696],[-127.57143799305074,57.129466915931296],[-127.57162488956953,57.12961263179077],[-127.571893988008,57.12972036650055],[-127.57215693334004,57.129829295719944],[-127.57245359256676,57.12995351173101],[-127.57270793762179,57.1300289149601],[-127.57299763336347,57.130109496598216],[-127.5733961087424,57.13011926792353],[-127.57361423246701,57.130193984943695],[-127.5738671733073,57.13031087808217],[-127.57412006972217,57.13042665034382],[-127.57437301363689,57.130543542522574],[-127.57462689230475,57.130658181064746],[-127.57489384763363,57.13076369380692],[-127.57513966224964,57.13088291247697],[-127.57537338246503,57.13101012329583],[-127.57560208325363,57.13114075715142],[-127.57583182732563,57.13127137804723],[-127.57601264058808,57.131419403447644],[-127.57613224624099,57.13158722365173],[-127.57624774854852,57.13175621426569],[-127.5763684275215,57.131925142316895],[-127.57643241250017,57.13209811761153],[-127.57640055185982,57.13227897574514],[-127.57618635753784,57.13252705021821],[-127.57601269709721,57.132679354080715],[-127.57578118861917,57.132807694824095],[-127.5755718800282,57.132948097783135],[-127.57534917204252,57.13308978300854],[-127.57520971189624,57.13324391510542],[-127.57522838659285,57.13342192150387],[-127.57527211253458,57.13360523049663],[-127.5751944019911,57.13377767391413],[-127.57508559282115,57.13394825049916],[-127.57501219887462,57.134125125585555],[-127.57495538689537,57.134302921611265],[-127.57494607148057,57.134479023847426],[-127.57502877966192,57.13465513718172],[-127.57506194051017,57.13483296906794],[-127.57506107792938,57.13501345325423],[-127.57505292612096,57.135192904425836],[-127.57505615176751,57.135372218395204],[-127.57510998484443,57.135549801041236],[-127.57512147941905,57.135729015324465],[-127.57512370958086,57.13590946233067],[-127.5751217759441,57.136088838626385],[-127.57510742263037,57.13626836474319],[-127.57507343908337,57.13644812764121],[-127.5750302070586,57.13662912304922],[-127.57510442138397,57.13679973433223],[-127.57527544440076,57.13696021024425],[-127.5755248656409,57.137065934238315],[-127.57585172190028,57.13711803842727],[-127.57617125992581,57.13716798822121],[-127.57648288164474,57.13722700046782],[-127.57676278051028,57.13731890277343],[-127.5770187783996,57.13743351228009],[-127.5772828330379,57.13754241921707],[-127.57755491129988,57.13764562393374],[-127.57783297894063,57.13774315095525],[-127.57812095297655,57.137830469073705],[-127.57841693735101,57.137910964012306],[-127.57871794456278,57.13798803470502],[-127.5790228108341,57.1380583323094],[-127.57933346492527,57.13811847059314],[-127.57965178935439,57.138163942902985],[-127.57998563761119,57.13818456552918],[-127.58032427692257,57.13819616165416],[-127.58065399124459,57.138216832603554],[-127.58096207395329,57.13826466762897],[-127.58124480668816,57.13834980055543],[-127.58150590898286,57.13846209787717],[-127.58174910002819,57.138591426045515],[-127.58197693474024,57.13872430268963],[-127.58218553911215,57.138867500588034],[-127.58233802466424,57.13902931350216],[-127.58240406952672,57.139201141329785],[-127.58242180131703,57.1393802803082],[-127.58241481739829,57.13956196069654],[-127.58240679145922,57.139743653733454],[-127.58240182856285,57.139924188719625],[-127.58238752441996,57.140103715944456],[-127.58238044776839,57.14028315562394],[-127.58239611254035,57.14046231979739],[-127.58242831680084,57.14064128360314],[-127.58246770286532,57.1408190394495],[-127.58254620223396,57.140991837538465],[-127.58243978373993,57.141119795749255],[-127.5821738586718,57.141417830664544],[-127.5816718494944,57.141558426496424],[-127.58144118201363,57.14163296128689],[-127.58115507065655,57.141692473392744],[-127.58095137203124,57.14184402726285],[-127.58071686407045,57.14202621968785],[-127.5805124430909,57.14218562835268],[-127.5805037712612,57.142402079187605],[-127.58039797846395,57.142570382849364],[-127.58030828324827,57.14267795964167],[-127.58044429843399,57.14284109554977],[-127.58069312629682,57.14300622903331],[-127.58105494361362,57.143202502394495],[-127.58164037115053,57.14347901867366],[-127.58221057710341,57.143787103895],[-127.58254647619218,57.14390634076909],[-127.58265898924098,57.14422669460573],[-127.58270256153021,57.144405521154226],[-127.58272231851564,57.14458351532389],[-127.58268202166711,57.14475999525102],[-127.58258782687663,57.144933765319095],[-127.58250717174101,57.14510961322848],[-127.5824051206635,57.145293567067235],[-127.58230822953271,57.14547745833421],[-127.58227094719743,57.14565165976744],[-127.58234551370165,57.14580432894301],[-127.58254640417648,57.145935290307236],[-127.5828201993638,57.146053037362904],[-127.58311035296344,57.146166101750914],[-127.58337353538914,57.146277250523575],[-127.58364772999765,57.14637929754558],[-127.58391782033192,57.14648251475228],[-127.58415765306874,57.14660403386541],[-127.58462506152271,57.146876364728556],[-127.58473631905717,57.14691536989372],[-127.5849754770675,57.146920315050956],[-127.58523798924881,57.146914887638204],[-127.58569714654283,57.14693733890955],[-127.5859651779116,57.1469901334269],[-127.586101134828,57.147051256955756],[-127.58635881780488,57.147203942607646],[-127.58658154193017,57.14733687494706],[-127.58680638173954,57.14747090220835],[-127.58704451639109,57.14760140468418],[-127.58727551638823,57.147734235391454],[-127.58747986842174,57.14787299441576],[-127.58762576139289,57.14802367335484],[-127.58763016529946,57.14820521706521],[-127.58761197878587,57.14839039826312],[-127.58761949270341,57.148571904226294],[-127.58764348894329,57.148676983864775],[-127.5876497313001,57.148777795396846],[-127.58751341736874,57.14900813013641],[-127.58711720943859,57.1492079933929],[-127.58694046968759,57.14936147165931],[-127.58677518638113,57.14951705247397],[-127.58662972394893,57.14967687623647],[-127.58653009534875,57.14984399001803],[-127.58646739379718,57.15000392946466],[-127.58640379905862,57.15019190403683],[-127.58635349799295,57.150376354255556],[-127.5862976938733,57.15055302449072],[-127.58627513216526,57.150732653998965],[-127.58627327973699,57.150913153040875],[-127.586271397489,57.15109253149624],[-127.58614844312919,57.15124647665041],[-127.58607365331244,57.15136396582857],[-127.58596042294582,57.151602986698755],[-127.5858505390182,57.151772466547094],[-127.58574693431312,57.15194411204212],[-127.58566514397094,57.15211773464737],[-127.58567383068981,57.15230258980862],[-127.58551220242016,57.15244691505368],[-127.58524078724412,57.152563426975355],[-127.5851012960406,57.15271757185956],[-127.58500892918713,57.152885717551754],[-127.58496575528827,57.15306783906807],[-127.5849006890108,57.153245742273796],[-127.58478868128303,57.15341412611252],[-127.58465476389549,57.15357829171384],[-127.58452507420331,57.153744647858865],[-127.58439542968073,57.15391212430869],[-127.58429069430125,57.15408154053671],[-127.58426496432689,57.15426008747502],[-127.58433534900111,57.154436347968684],[-127.5845086109977,57.15457324769121],[-127.58463154349874,57.15469394302133],[-127.58467210467356,57.15492437194076],[-127.5847058371223,57.15511452860443],[-127.58469156785875,57.15529517872373],[-127.58483375846586,57.15545599550982],[-127.58455361528377,57.15536186843361],[-127.58446982201518,57.15533710219411],[-127.58436689840838,57.15532489861497],[-127.58421396590354,57.155354777420925],[-127.58405970739274,57.15535216383647],[-127.5839331300464,57.155343609617546],[-127.5836066524819,57.15538007537984],[-127.58321522439189,57.15549691660855],[-127.58299506814286,57.15547716465629],[-127.58265623761115,57.155439793340875],[-127.58232476828057,57.15543035637686],[-127.58200665377105,57.155468958783835],[-127.58170019036585,57.1555388066542],[-127.5813847432654,57.15559194791041],[-127.5810682694499,57.15564510082102],[-127.58075504394742,57.15570157658011],[-127.58045167048289,57.155771384100674],[-127.58015712294703,57.15585453585995],[-127.57985927883634,57.15593324290855],[-127.5795606653974,57.15599290200564],[-127.5792164323583,57.156000426021535],[-127.57889658124355,57.1560468885874],[-127.57844094605764,57.156112926387515],[-127.57816426109038,57.15612747838745],[-127.57792833500669,57.15607652108766],[-127.57760856148872,57.156024333856465],[-127.57727949111063,57.15599804047639],[-127.57698055058948,57.156049850760326],[-127.5766351746146,57.15613024502722],[-127.57647761560861,57.15624872741058],[-127.57638519784527,57.156366423695964],[-127.57598999498526,57.156442933479426],[-127.57566328684375,57.15647377713671],[-127.57533718652843,57.15644408008962],[-127.57500842292315,57.15645028547784],[-127.57467930700915,57.156473308878205],[-127.57435705614297,57.15651194234667],[-127.57404830166061,57.156577315772076],[-127.57373726445276,57.15663711108902],[-127.57340937249722,57.156664600414544],[-127.57309592697229,57.15671657638093],[-127.57276431108679,57.15670375389994],[-127.57244538026524,57.156747947512926],[-127.57211969356565,57.156728326205695],[-127.57179086710636,57.15670762088914],[-127.5714602776068,57.156694782758265],[-127.57113007215867,57.15669090695101],[-127.57080030923942,57.15669823470808],[-127.57021870289529,57.156745580489094],[-127.56960195878149,57.15686957183664],[-127.56929639575911,57.15693713752485],[-127.56899308336239,57.15700915934897],[-127.5686897239867,57.15708006005208],[-127.56838420351072,57.15714874403906],[-127.56806756136871,57.157198504261856],[-127.56774307544399,57.15723378519765],[-127.56741639973679,57.15726572867679],[-127.56709200423063,57.157303248841146],[-127.5667917039976,57.157372987423045],[-127.56655158835527,57.1574980522965],[-127.5662525861252,57.15757449988319],[-127.5659675843517,57.15766423063534],[-127.56569665779612,57.157769485691006],[-127.56547003445297,57.157895507839086],[-127.5653539117747,57.158067286625595],[-127.56514203859619,57.15819985731862],[-127.56488176800686,57.1583128298119],[-127.56461835585294,57.15842471842469],[-127.56439181652553,57.15855297961219],[-127.56425679711305,57.15871825783659],[-127.56416973226412,57.15889192966151],[-127.56398119722212,57.1590387917054],[-127.56389613657873,57.15921131840598],[-127.56376004106713,57.15937548805286],[-127.56359880314652,57.159532111620365],[-127.56333942441009,57.159641707405044],[-127.56307675051083,57.15974685819639],[-127.56286922547957,57.1598849780119],[-127.56260348330517,57.15999128550501],[-127.56238340738031,57.160126191709146],[-127.56218344535723,57.16027206679539],[-127.56214167540422,57.160440711923215],[-127.56196896658464,57.16059522865741],[-127.56177730369247,57.16074212489596],[-127.56158245354834,57.160886816996154],[-127.5613855334029,57.16103153353771],[-127.56118861177106,57.16117624979825],[-127.56099375719947,57.16132094106779],[-127.56084913947227,57.161479604644875],[-127.56074643918313,57.16165121909818],[-127.56056737674557,57.16180244695487],[-127.56029090720618,57.16189990999059],[-127.56002313747571,57.162007357326594],[-127.5598449597824,57.162155210700355],[-127.55971202227143,57.162321580411316],[-127.55954229867172,57.16247381636309],[-127.55933381126123,57.16261418394906],[-127.55911473481595,57.16274907267064],[-127.55887871428037,57.16287407439041],[-127.55860875749828,57.162979302922274],[-127.55834295307062,57.16308448137142],[-127.55802179284281,57.163126423801856],[-127.55756948765861,57.163149751085534],[-127.55738197326595,57.163195703827014],[-127.55708065356069,57.163241891367036],[-127.55675708226134,57.16332645634291],[-127.5564471713607,57.16339068030646],[-127.55614025973784,57.16342684350299],[-127.55581075432515,57.163441976487256],[-127.55547981344296,57.163447036974844],[-127.55514927875845,57.1634363981818],[-127.5548188185919,57.16342799961237],[-127.55448912858323,57.16341286521764],[-127.55416671418527,57.16337298209311],[-127.55383918439463,57.163360062320365],[-127.55350726330666,57.1633662504447],[-127.55317780131601,57.163356714900914],[-127.55285070805766,57.16332921484439],[-127.55252286146161,57.163308448750904],[-127.55219578563398,57.16328094685979],[-127.55186784909442,57.16325793826014],[-127.55154631756302,57.163290901327514],[-127.55123278824658,57.16334282510922],[-127.55091729662094,57.163397013360054],[-127.55064394765719,57.16349553961338],[-127.55032709415566,57.16354189578785],[-127.55003455044566,57.16352406754321],[-127.54966596435533,57.1635194710665],[-127.54933875180367,57.163514383046206],[-127.54902973605698,57.16344742517233],[-127.54889041092397,57.16343114104988],[-127.54869770792075,57.16342557809028],[-127.54861411456216,57.16345683489494],[-127.54857293382331,57.16353915367857],[-127.54854202233349,57.16361910882691],[-127.54854348383788,57.163706527159185],[-127.5485866679095,57.163750854238316],[-127.5486266502513,57.16379297730686],[-127.54856137232333,57.163841952554804],[-127.5484249101192,57.16394781972486],[-127.54817187394373,57.16406291459917],[-127.54790903768291,57.16416579438268],[-127.54750532286207,57.16416272879],[-127.54733423362046,57.16425667415817],[-127.54705564403157,57.16435413386834],[-127.5467684330144,57.16444272725689],[-127.54657195698833,57.16452352043984],[-127.546192495894,57.164608720338066],[-127.54599015422792,57.16474899343367],[-127.54589339108938,57.16489025931725],[-127.54551581662243,57.16494516870914],[-127.54522539588227,57.16503155467024],[-127.5449892994671,57.165156531715844],[-127.54478704080985,57.16529904387884],[-127.54458364769378,57.165439327194214],[-127.54431147456093,57.16554230997334],[-127.54405816128414,57.165650674205494],[-127.54384851211516,57.16578990930299],[-127.54343970955217,57.1659438268472],[-127.5433274251239,57.166007927177674],[-127.54311565742603,57.166146065129915],[-127.54289331858796,57.16627872268311],[-127.54270366812747,57.16642668758482],[-127.5425652972439,57.16658861958492],[-127.54244581536051,57.16675705434078],[-127.54232835620729,57.16692434415563],[-127.54221094110679,57.16709275432454],[-127.54209766273327,57.16726111558733],[-127.54199172289348,57.16743163212119],[-127.54188055652244,57.16760108926852],[-127.54175161492303,57.16776627213117],[-127.5415986626524,57.167926133229884],[-127.54141008683877,57.16807520457831],[-127.54123401325057,57.16822637016778],[-127.54113215973669,57.168395716893755],[-127.54105538644961,57.16857149366689],[-127.54096296840304,57.16874409194812],[-127.54084149387263,57.1689147907845],[-127.54068853322462,57.169074650956084],[-127.54046167079936,57.16919838991461],[-127.54015538216164,57.169277104588794],[-127.53983248627445,57.1693291108697],[-127.53950603546876,57.169344166155796],[-127.53920804612764,57.16926920774058],[-127.53892770571953,57.16916937949488],[-127.53865540125484,57.16906385121662],[-127.53837433579987,57.16897187716551],[-127.5380576487541,57.16892067666665],[-127.53772850247172,57.16892006567343],[-127.537431737264,57.169004266717046],[-127.53716272122541,57.16910943916667],[-127.53687113405226,57.16919357801977],[-127.53656982262156,57.16926774179963],[-127.53626414750137,57.16933635131362],[-127.53594879333617,57.16939610608375],[-127.53562809440665,57.16945143899872],[-127.53531909650805,57.16951448046324],[-127.53504323586247,57.16960403529849],[-127.53482187526966,57.16973666741354],[-127.53461869130093,57.16988365835025],[-127.53445892176016,57.17000323600837],[-127.53410176878683,57.17010495286131],[-127.53381237087427,57.17019242200219],[-127.53351000287606,57.170266591021964],[-127.53322594602251,57.170358480062],[-127.53295263639355,57.17046033116198],[-127.53269102706264,57.17056989127379],[-127.53244847334445,57.17071621945993],[-127.53234288018773,57.17087103035031],[-127.53208454081022,57.17098503477544],[-127.5317864357323,57.17106251268398],[-127.53149266326993,57.17114442302006],[-127.5312075522495,57.171236319953444],[-127.53093207238673,57.17133595024299],[-127.53067472376748,57.17144881926177],[-127.53042487570345,57.17156832576719],[-127.53015887312887,57.17167232731651],[-127.52985852734918,57.171745343110366],[-127.52954418622564,57.17180507033269],[-127.52923104923006,57.171869266583464],[-127.52889826263404,57.171933691912656],[-127.52870175833546,57.17206714372152],[-127.52852910021673,57.17227990526647],[-127.52802974956849,57.1723462760075],[-127.52819783230831,57.17269405376219],[-127.52830710078766,57.17286428474272],[-127.52838135601343,57.17303940894401],[-127.52841535997729,57.17321724572649],[-127.52839354002428,57.173396856228585],[-127.52833749650779,57.173574624951286],[-127.52824189700128,57.17374725127251],[-127.52825313922106,57.173925354300245],[-127.52830369743447,57.17410299769347],[-127.52836464713222,57.17428164057189],[-127.5284358097292,57.17445680112305],[-127.52851210978176,57.1746307806219],[-127.52856990438184,57.17480833941678],[-127.52857709920438,57.174988731853055],[-127.52856782895411,57.175171558790915],[-127.52852626892223,57.17534915845226],[-127.5284106132873,57.17551193084088],[-127.5282031014014,57.17565559948169],[-127.52800498109883,57.175801399960974],[-127.5277952181011,57.175940610369885],[-127.5275676042972,57.17607330319391],[-127.5273036320763,57.17617727510537],[-127.52698602091273,57.17623367119038],[-127.5265407485803,57.176229903797584],[-127.52661309946068,57.176331067446114],[-127.5268154488018,57.17647330980006],[-127.5270086576737,57.17662014253639],[-127.52718653438974,57.17677163802935],[-127.52733372859515,57.17693245958017],[-127.52746864149599,57.17709678741975],[-127.52759231596325,57.17726460939987],[-127.5277005071209,57.17743373320915],[-127.52778709577203,57.17760647234575],[-127.52785107175441,57.177782838656604],[-127.52790886804513,57.17796039816583],[-127.5279810784049,57.178135547260574],[-127.52809341270498,57.17830462248027],[-127.52821600609865,57.17847133576183],[-127.52829338430311,57.17864642436953],[-127.52834497540874,57.178824056379895],[-127.52841407682823,57.17899924173671],[-127.52851715565176,57.17916954593513],[-127.52863979835061,57.17933737938201],[-127.5288007651958,57.17950588557696],[-127.52896722856671,57.17968217416669],[-127.52874753067246,57.179754243891125],[-127.52841071442414,57.179823198578404],[-127.52811689572064,57.17990622251723],[-127.52783500275939,57.180002558138334],[-127.52757754216034,57.1801143013431],[-127.52720787341737,57.18034617833878],[-127.52707467360374,57.18043292844102],[-127.52689166841097,57.180491114691975],[-127.52664359602007,57.180604988338544],[-127.52643264135857,57.18074084768647],[-127.52622918836876,57.18088334497914],[-127.52598551845136,57.18100389182596],[-127.52571211366552,57.18110572860533],[-127.52543227547933,57.18120203498194],[-127.52515455013034,57.18129943708007],[-127.5248833444457,57.18140460937607],[-127.52469130161398,57.181548092136865],[-127.5245456090414,57.181711211736896],[-127.52432984157828,57.18188299502925],[-127.52406418979272,57.18191972125503],[-127.52377886368681,57.182008241168184],[-127.52351079002025,57.18211449504586],[-127.52325864676034,57.18223065156018],[-127.5229873847493,57.182334699539894],[-127.5227321421657,57.182450891125185],[-127.52253483097584,57.18259219008096],[-127.52251927635277,57.182773969485446],[-127.52241719588591,57.182941062756214],[-127.5221660425138,57.1830560846311],[-127.52185609213613,57.183124709357784],[-127.52154483053812,57.18318662273675],[-127.52124130967863,57.18326077605184],[-127.52097310334509,57.18336366325648],[-127.52077793968063,57.18350717650159],[-127.52059343469948,57.183658412336925],[-127.5203930409085,57.18380086485305],[-127.5201642227079,57.18393131678563],[-127.51992690151715,57.184056262269536],[-127.51967163818814,57.18417244803225],[-127.51951739627941,57.18433005646659],[-127.51931997470312,57.18446910985027],[-127.5190837350456,57.184595162194576],[-127.5188801898509,57.184736528006304],[-127.51868405697653,57.18488229131699],[-127.51849630739348,57.1850301989303],[-127.51833373334894,57.18518678175983],[-127.51817535867254,57.1853444366104],[-127.51796019158418,57.18548033103384],[-127.51774210395737,57.185620742910736],[-127.51753302688579,57.18575320300147],[-127.51735575730704,57.18587856778695],[-127.5172411451043,57.185965092055596],[-127.51718596020909,57.18606213648529],[-127.51725591829167,57.18618126940607],[-127.51746147706457,57.186247263728426],[-127.51763885649318,57.18633376241311],[-127.51775242982583,57.186404186818045],[-127.5177262914445,57.18647623283602],[-127.51756398756572,57.18648260050401],[-127.51739720088713,57.18642848715353],[-127.5172918252268,57.18632994286448],[-127.51718415834652,57.18622582019789],[-127.51702894359578,57.186176056051394],[-127.51692536694523,57.186096547259076],[-127.51680261270876,57.18600380912186],[-127.5165662593687,57.18589221088448],[-127.51631038470578,57.18578420155509],[-127.51609271443499,57.1856477243543],[-127.51587001227911,57.18551466808975],[-127.51565038043799,57.18538045491107],[-127.51543785344165,57.18524279612106],[-127.51522735352182,57.18510399255098],[-127.51501892497906,57.18496516467384],[-127.51481045364898,57.18482521601622],[-127.51460202813278,57.184686387503994],[-127.51439251664742,57.18454645029359],[-127.51418409416142,57.18440762114459],[-127.51397562891312,57.184267671215245],[-127.51376720945356,57.18412884143122],[-127.5135556508228,57.183988926710335],[-127.51334719014709,57.183848975823494],[-127.51314084502685,57.183710121128954],[-127.5129344571607,57.18357014566079],[-127.51272900893844,57.18342791707919],[-127.51251852879875,57.18328910933979],[-127.51229184591234,57.18315945649299],[-127.51202667938557,57.183051546829454],[-127.51175044847443,57.18295161139928],[-127.51154307082327,57.18281276633906],[-127.51132553935142,57.18267852224426],[-127.51105330329588,57.18257517632569],[-127.51073758350466,57.18252389706358],[-127.51043043604942,57.182480364829885],[-127.51017438066418,57.18236674146256],[-127.50985577166759,57.18232109834639],[-127.50952661040569,57.18229687476825],[-127.50920314568133,57.1822591329463],[-127.5088786825824,57.1822225228265],[-127.50855031679077,57.18221846512281],[-127.50822333478531,57.182249140757555],[-127.50790209146017,57.18229432201741],[-127.50756944081218,57.182312730693894],[-127.50724801814813,57.182300742854295],[-127.50693117444743,57.18224722551124],[-127.5066251340284,57.18217901029874],[-127.5063379282737,57.18208927894155],[-127.50603879009387,57.18201201510287],[-127.5057556382919,57.181919993870046],[-127.50551571778827,57.18179496610438],[-127.50523463852797,57.1817029199262],[-127.50493635612801,57.18162115991552],[-127.50462401259166,57.18157655307235],[-127.50429057484777,57.18157478505136],[-127.50384066657571,57.18150709771353],[-127.50371318853558,57.18142449120729],[-127.50338565344416,57.18141480622089],[-127.50305582910146,57.18139954188693],[-127.5027260330324,57.181411179660444],[-127.50240483418231,57.18145746785096],[-127.50209895678795,57.18152487763287],[-127.50183825422639,57.18163548557668],[-127.50158077813278,57.18174941884474],[-127.50128348301152,57.18182457490818],[-127.50100448966128,57.181917455681855],[-127.50078087046592,57.18205005513076],[-127.5005730879811,57.18219031922018],[-127.50035050883912,57.18232290598864],[-127.50013108489043,57.18245657714184],[-127.49994748622485,57.182606651476476],[-127.49974492416041,57.18274797531993],[-127.49950543013817,57.18287178690089],[-127.49908522367843,57.18314003321107],[-127.49914478648665,57.183498060573804],[-127.49917042872313,57.18367712174517],[-127.49919304589639,57.1838584595641],[-127.49911682943528,57.18402747895896],[-127.49887314192027,57.18415021649617],[-127.4985866540235,57.18423757307512],[-127.49839460274225,57.184383258259956],[-127.49819309601168,57.18452568859296],[-127.49798843092823,57.18466703382687],[-127.49779430536583,57.18481274189074],[-127.49763269087263,57.18496928700321],[-127.49747839891293,57.185127989999955],[-127.49729159294779,57.18527585543359],[-127.49708477964424,57.185414981907385],[-127.49691267890653,57.18556828328683],[-127.49674269046652,57.185722681233955],[-127.4965842081954,57.185880310183215],[-127.49642992478468,57.18603901186293],[-127.4962704132333,57.18619665221917],[-127.49611404075083,57.18635537743975],[-127.49591247142642,57.18649668400071],[-127.49572992388141,57.18664786140885],[-127.49554207705836,57.18679573625768],[-127.49529502860813,57.18691290063468],[-127.49502051713887,57.18701580590044],[-127.49474285308078,57.18714452896047],[-127.4945547154871,57.18725877655544],[-127.49439730484484,57.18741751158592],[-127.49423675247012,57.18757516136002],[-127.4940193305723,57.18770879932473],[-127.49377555963292,57.187830407232475],[-127.49353930259518,57.18795865468979],[-127.49338379752986,57.188060197179645],[-127.49348041379302,57.18828104618712],[-127.49347963192751,57.18834046663184],[-127.49350595757436,57.18837827901468],[-127.49353990828577,57.18839918972417],[-127.49351343939857,57.18843760508356],[-127.49346005479032,57.188449424508065],[-127.49350485782193,57.18850944531112],[-127.49351423501386,57.18856426585015],[-127.493518663752,57.18862474776961],[-127.49352358239886,57.1888040471671],[-127.49348912584324,57.18898267531995],[-127.49344013464292,57.189160348503805],[-127.49339011621775,57.189338033419055],[-127.49334112410396,57.1895157066138],[-127.49330045569434,57.18969440573236],[-127.49325874355948,57.18987311677643],[-127.49320035545759,57.19004865531925],[-127.49309943312959,57.19022243754702],[-127.49292082239626,57.1903690822896],[-127.4926357814434,57.19046873974826],[-127.49242188335246,57.19058664124938],[-127.49240424338896,57.190771803209245],[-127.49239466576927,57.19095126831518],[-127.49238818507804,57.19113069810236],[-127.49237344005168,57.19131022222263],[-127.49232651092028,57.19148787167914],[-127.49224735359749,57.191662525959806],[-127.49216195775875,57.19183613041355],[-127.49207970187675,57.1920108199761],[-127.49199847209194,57.192185497795286],[-127.49189322360789,57.19235484470327],[-127.49176818396451,57.19252105436472],[-127.49163584533267,57.192686226189565],[-127.49149720743132,57.192849227777856],[-127.49135334069413,57.19301116787688],[-127.49119584953819,57.19316877926958],[-127.49101006717358,57.19331774521337],[-127.49083483646581,57.19347219549093],[-127.49067424405995,57.19362984161669],[-127.49058864574735,57.193798963576725],[-127.49057086464735,57.19398076430466],[-127.49046978924498,57.19415118358563],[-127.49033857003815,57.194318583369714],[-127.4902322648846,57.194487941106466],[-127.49025059114103,57.19466596751243],[-127.49029378941168,57.19484483151195],[-127.49035243726131,57.19502127752445],[-127.49066223946942,57.19526436184396],[-127.48991789033451,57.195085640258235],[-127.4895538856515,57.195179464518354],[-127.48938986193048,57.195329301373135],[-127.48910041623188,57.195423396254604],[-127.48885339611194,57.195542790003934],[-127.48859574439622,57.19565557842402],[-127.48832636367234,57.195759531985544],[-127.48804848201782,57.19585797681799],[-127.48776516994344,57.195949756963174],[-127.48747756847929,57.19603822233845],[-127.4871846672798,57.19612338440357],[-127.4868895203248,57.19620408742787],[-127.48659005722197,57.19628035492828],[-127.48628623457304,57.19635106639214],[-127.48597918294767,57.1964184508974],[-127.4856720702195,57.19648471439084],[-127.48536717383912,57.196554314913385],[-127.48506666143554,57.196630590797646],[-127.48477479388279,57.1967157356567],[-127.48448717976316,57.19680419450893],[-127.48419849392337,57.196891543904705],[-127.4839033781675,57.196973360722275],[-127.48359847468492,57.19704295714837],[-127.48328147967464,57.19709475436097],[-127.482956534588,57.197128705319145],[-127.48262805770561,57.197151485739816],[-127.48229829328343,57.197167554068315],[-127.48196846866917,57.19718250126884],[-127.48163977402979,57.19719967678602],[-127.48105273876955,57.197232107735665],[-127.48100189412109,57.1973100307636],[-127.48098272289127,57.19745709563467],[-127.48104500919432,57.19764807721796],[-127.48103123550452,57.19782758931916],[-127.48100292431637,57.198006145070885],[-127.48096425992667,57.198184818061],[-127.48091934006275,57.1983624409081],[-127.48087337619647,57.19854007557899],[-127.48082954240488,57.1987188071145],[-127.48081472372483,57.198898331154275],[-127.48080820401456,57.19907776126367],[-127.48079752638687,57.19925723846756],[-127.48078686522432,57.199436715507616],[-127.48077516034674,57.1996162043857],[-127.48076345535945,57.19979569328718],[-127.4807517502625,57.19997518221239],[-127.48074958896534,57.19999986818834],[-127.48073900142602,57.200154682974976],[-127.48072936680863,57.20033414850683],[-127.48071351996026,57.20051368438281],[-127.48066342767757,57.20069136596404],[-127.48058626889227,57.200865990970605],[-127.48054138744534,57.20104473453966],[-127.48053072458521,57.20122421180378],[-127.48053351329376,57.20140353684423],[-127.48053630202844,57.20158286190914],[-127.48052873688333,57.201762304184655],[-127.48049734928884,57.201942016101725],[-127.48045863525536,57.202119568990035],[-127.4804386447789,57.202299151949575],[-127.48046628297392,57.20247819590761],[-127.48052184259471,57.20265580290378],[-127.48059490994441,57.20283096979088],[-127.48066797796243,57.203006136660655],[-127.48069250316912,57.20318521592042],[-127.48069115104245,57.203364588105714],[-127.48067841736082,57.203544089139704],[-127.48066566699279,57.203723590384755],[-127.48066328755661,57.203902974269475],[-127.48068574240911,57.20408207709265],[-127.48076192788672,57.20425720882422],[-127.48086484621435,57.2044275540082],[-127.48106739644737,57.20481648366053],[-127.48104123788343,57.204997257911],[-127.48101813390457,57.20517687661607],[-127.48099504627679,57.205356495154156],[-127.48097811148774,57.20553492307558],[-127.48096847663736,57.205714389363216],[-127.48097959507167,57.20589474172528],[-127.48099378508307,57.206073938358095],[-127.48098931944575,57.20625334620354],[-127.48097451516772,57.206432871107744],[-127.48095141000994,57.20661248999844],[-127.48093043558846,57.20679320577169],[-127.48090008957145,57.20697290666151],[-127.48082697469647,57.20714524477578],[-127.48066786574073,57.20726362791674],[-127.48076990705957,57.20746425015067],[-127.48089768722221,57.207634314431914],[-127.48103885233111,57.20780198513507],[-127.48120349807057,57.20796042201233],[-127.48138448086547,57.2081130688134],[-127.481450148495,57.208283835961446],[-127.481476708532,57.20846177185153],[-127.48148575900467,57.208642148002376],[-127.48148656826353,57.2088237384822],[-127.4814894053517,57.20900418503998],[-127.48150157106993,57.20918452599214],[-127.48152926255534,57.20936469116448],[-127.48156415186789,57.20954365386687],[-127.4815959863294,57.2097237721673],[-127.48161846552651,57.20990287544134],[-127.48162017270468,57.21008109297529],[-127.48159497034884,57.210259615253],[-127.48151140937345,57.21042983046248],[-127.48148533577579,57.210612846571735],[-127.48141757644362,57.21078960875741],[-127.48135293168858,57.21096633566266],[-127.48129866955387,57.21114406599718],[-127.48125482332046,57.2113227993992],[-127.48121403200831,57.211500377235545],[-127.48117642569699,57.21168016100025],[-127.48113981963768,57.21185881246429],[-127.48110425719037,57.21203745212569],[-127.48106765045286,57.212216103618594],[-127.48102999941044,57.2123947669422],[-127.4809902932221,57.212573453536564],[-127.48094742797593,57.21275105490498],[-127.4809004195626,57.21292870317006],[-127.48084818060498,57.21310528964387],[-127.48072108386205,57.21327487631756],[-127.48059362278684,57.213435499086046],[-127.4805007497384,57.21363272304724],[-127.48039439500857,57.213776291993966],[-127.48020206648407,57.213920833427885],[-127.47999615045117,57.21406216529136],[-127.4797797024003,57.2141991319746],[-127.47955695181565,57.21433392758046],[-127.47933101415781,57.214466516854664],[-127.4791050150764,57.21459798543915],[-127.47887691625093,57.21472835637],[-127.47864138427379,57.21485432693336],[-127.47840057718382,57.214978114685955],[-127.47815551232107,57.21509858711639],[-127.47790624307041,57.215217985576636],[-127.4776398977593,57.21532412450197],[-127.47736714688372,57.21542585123629],[-127.47711145888128,57.215539715678666],[-127.47686534231488,57.21566019753033],[-127.47662345371484,57.21578287318378],[-127.47647430530957,57.21583836362581],[-127.47613755710776,57.21602712604958],[-127.475896734548,57.216150909306805],[-127.47565272498794,57.21627248607364],[-127.4754055284394,57.216391856331576],[-127.47515840012461,57.21651346732722],[-127.47491348790214,57.21663841584291],[-127.47466644275279,57.21676226694004],[-127.4744139663698,57.216879452817224],[-127.47415074209252,57.21698667036376],[-127.473874439601,57.217077219818634],[-127.47357219817584,57.217140036015586],[-127.47324833405918,57.21717955414491],[-127.47291472417287,57.21720797126002],[-127.47258329813921,57.21723972591481],[-127.47225659154581,57.21728599949669],[-127.47189569400594,57.217332656825135],[-127.4716105698998,57.21743675253404],[-127.47143154354616,57.21747015333653],[-127.47143244055638,57.2176820103131],[-127.47150236609698,57.21801864204925],[-127.47136688645313,57.21813338536747],[-127.47131538681288,57.21824942637784],[-127.47129279369969,57.21838980418033],[-127.47148407350234,57.218459396939416],[-127.47158161282778,57.21859730299808],[-127.47139531423298,57.21881911193665],[-127.4711516609096,57.21895076512158],[-127.47088841325741,57.219057976278],[-127.47060613118245,57.21915531187431],[-127.4703184448755,57.21924710261531],[-127.47003284550127,57.21933886927305],[-127.46974620059936,57.2194306470405],[-127.46945410860333,57.21951575938826],[-127.46915442844764,57.21959198833387],[-127.46884370043347,57.21965040473026],[-127.46852196792715,57.21969212900441],[-127.46816881828217,57.21975214078368],[-127.46784979687195,57.2197837440627],[-127.46756255527568,57.21983292603901],[-127.4672552658159,57.21990026799013],[-127.46671079723137,57.22002519606041],[-127.46703371583152,57.220338816985],[-127.46722278969484,57.22048578919422],[-127.46743230881914,57.22062580597566],[-127.46763674413796,57.22076812144667],[-127.4678360956314,57.22091273563177],[-127.46806077962239,57.22104249249794],[-127.46834118599872,57.22113911509099],[-127.4686428405539,57.22122204676614],[-127.46889266155307,57.22133134234851],[-127.4690531119219,57.22148872234306],[-127.46921469384037,57.2216483314575],[-127.46944478984719,57.22178363033174],[-127.46966141198548,57.22191908013506],[-127.4697630426105,57.222082724841236],[-127.4697711259469,57.22226647694666],[-127.46981318898882,57.222444242517284],[-127.46997469205087,57.22260160979041],[-127.47018324818038,57.222742754449506],[-127.47043342784177,57.22286101130345],[-127.4707119107446,57.222961013762735],[-127.47101022681221,57.22303725186577],[-127.47133681308802,57.22306721073233],[-127.47166447063653,57.223098277739666],[-127.47195384542006,57.22318470322331],[-127.47224322151006,57.223271128072874],[-127.47256114183575,57.22331799632868],[-127.47288786106532,57.22335131286244],[-127.47321552230389,57.223382375994134],[-127.47354025696416,57.22341795524304],[-127.47386503537179,57.223454654197035],[-127.47418882986302,57.22349248443125],[-127.47451260841852,57.223530314052404],[-127.474837345539,57.223565890087606],[-127.47516204008109,57.223600344808666],[-127.47548769309613,57.223632545933995],[-127.47581514284535,57.22365800001824],[-127.47614455194295,57.22368006820095],[-127.47647381518327,57.22369877421464],[-127.47680986339857,57.223705071882236],[-127.4771536374819,57.22369670853497],[-127.47747177330636,57.223722263610995],[-127.47775270498185,57.22380428783751],[-127.47801797060843,57.2239100293346],[-127.47827245589187,57.22403158604342],[-127.47851881136444,57.22415771811473],[-127.47876095445926,57.224281655348854],[-127.4790103861536,57.22440663080242],[-127.47924963261896,57.22453620491548],[-127.47945710256515,57.224675105793075],[-127.47960920889415,57.224829205220075],[-127.4797068756403,57.2249962509455],[-127.47977178034685,57.22517375601696],[-127.47982438327074,57.225354763168205],[-127.47988625938542,57.2255345444846],[-127.47997690178681,57.225707274550444],[-127.4800799176175,57.22587874367194],[-127.48019123932868,57.22605011881898],[-127.48031382031539,57.22621800357008],[-127.48045073381039,57.226381242133925],[-127.48060603750095,57.22653754656575],[-127.48081352321539,57.226676445508375],[-127.48105374761016,57.226803763715935],[-127.48127868443595,57.22693798052311],[-127.48144832534304,57.22708963783399],[-127.48157907368886,57.22725406619464],[-127.48169241832508,57.22742429647007],[-127.48181095270266,57.22759446793136],[-127.4819529794894,57.22775540533734],[-127.4821247856662,57.22790927942935],[-127.48230893964919,57.228060771498036],[-127.48250431035233,57.228207652296646],[-127.48271294322169,57.228348777602456],[-127.48293573588862,57.228480774172574],[-127.48317373274493,57.228603630098426],[-127.48343429202087,57.228720624917244],[-127.48371415655244,57.22882731139848],[-127.48400787668356,57.22891702517426],[-127.48431001904572,57.22898310173093],[-127.48462094240845,57.22900872187168],[-127.48495090979415,57.22899040608469],[-127.48528958491892,57.228956296601176],[-127.48562476735849,57.228939040938855],[-127.48595292211785,57.228954373318544],[-127.48628064191475,57.22898540388099],[-127.48660742145218,57.229018686317396],[-127.4869340709598,57.22904860640811],[-127.4872607209781,57.2290785256845],[-127.48758737150699,57.229108444146625],[-127.48791406610799,57.22913948230448],[-127.48824067409663,57.22916827862787],[-127.48856828341525,57.22919594175043],[-127.48889583303901,57.22922248373271],[-127.48922348689493,57.22925126572686],[-127.4895491832296,57.22928343219963],[-127.48987199809659,57.22932123569476],[-127.49019797392108,57.229360123424236],[-127.49052502189211,57.229400119149126],[-127.49084814424067,57.22944576380709],[-127.49116531247783,57.2294982015431],[-127.4914704845777,57.22956198527073],[-127.4917628783696,57.22964385003333],[-127.4920406132081,57.22974830138767],[-127.49229008018797,57.22987213155469],[-127.49249962786014,57.23000874750095],[-127.49266210915951,57.23016159393823],[-127.4927929598738,57.23032713199793],[-127.49291366862725,57.230498390664735],[-127.49304663763134,57.230665025390174],[-127.4931858248314,57.23083158908808],[-127.4933231157755,57.2310026583393],[-127.49348575234178,57.23115886521297],[-127.49370000289727,57.23128309475102],[-127.49398728570019,57.23136613418571],[-127.49431695216472,57.231419542969896],[-127.49464816679401,57.23145948114688],[-127.4949747121021,57.23148601970287],[-127.49530694964083,57.231499040314446],[-127.49563918740557,57.231512060083126],[-127.49596667415122,57.23153634340334],[-127.49628857407191,57.23157638390838],[-127.49660873625106,57.231625411579415],[-127.49692503401955,57.23168120872997],[-127.49723636262584,57.23174266701511],[-127.49753875277648,57.23181431592188],[-127.49783226509697,57.23189727583304],[-127.49812388173893,57.23198474084439],[-127.49841536809697,57.232068843684814],[-127.49870794411359,57.232154054433245],[-127.4989984324349,57.232239288453435],[-127.49929001044929,57.23232563038153],[-127.49958056185505,57.23241198344083],[-127.49986911339077,57.23250060081285],[-127.5001566383339,57.23258922933421],[-127.50044623705014,57.23267783347738],[-127.50073773378931,57.232761931192776],[-127.50103428937554,57.23284260723745],[-127.50133471078887,57.23291651221832],[-127.50163920692215,57.23298812776269],[-127.50194562814639,57.23305635749016],[-127.50225409552156,57.23312344202359],[-127.50256245940851,57.23318828500669],[-127.50287286938713,57.23325198277639],[-127.5032003159626,57.23330091102744],[-127.50350950729647,57.23336013725249],[-127.50370563467412,57.23349689043504],[-127.5037603026256,57.23367450379387],[-127.50378811660799,57.23385466765118],[-127.50385422001709,57.23403327069138],[-127.50394922382716,57.2342081786904],[-127.50412908518021,57.234352965359896],[-127.50436821454936,57.23447577149993],[-127.50462680603604,57.234592748483436],[-127.50487215614774,57.234715482268406],[-127.50508596442987,57.23485315144416],[-127.50529692157652,57.23499757918166],[-127.50549457664016,57.23514664364297],[-127.50566138156364,57.23530166771689],[-127.50577978235577,57.23546509544798],[-127.50584870637168,57.23563581828487],[-127.50588368925807,57.23581365761202],[-127.50589602254425,57.23599512052756],[-127.50589906492871,57.23617781135043],[-127.50590417997977,57.236360478359856],[-127.50592059815585,57.23654077335158],[-127.50593184313456,57.236721127870986],[-127.50593998750963,57.236901518079364],[-127.50595123268572,57.23708187264761],[-127.50597068051444,57.23725989085631],[-127.50601288407755,57.23743652632494],[-127.50617567140881,57.23759495942662],[-127.50641888479812,57.23771547342052],[-127.5066814899754,57.23782791670905],[-127.50692073750413,57.237952959541964],[-127.50718319679635,57.238062040501624],[-127.50746694400279,57.23815854465171],[-127.50777299206429,57.23821555571031],[-127.50810904038107,57.23821841156394],[-127.50845043899133,57.238225688995904],[-127.50871455202909,57.23832353772669],[-127.50880210486348,57.238492923920404],[-127.50874599097057,57.2386740548231],[-127.50865537485794,57.23884773612504],[-127.50860634605841,57.23902430128475],[-127.5085926867669,57.23920382199658],[-127.50844111821294,57.239356906057665],[-127.50814059726925,57.239439960343155],[-127.50788085483681,57.23955841699503],[-127.50782736681879,57.23972718611407],[-127.50787394812019,57.239909376145654],[-127.50795447502509,57.24008444913122],[-127.5080639176193,57.240256947027945],[-127.50820929113179,57.24042006283135],[-127.50844920699987,57.240535006471774],[-127.50875731992264,57.240617775293764],[-127.50902269936272,57.240721214304486],[-127.50918529213963,57.24087404150365],[-127.509305167771,57.241047539333664],[-127.50945559091343,57.2412072326759],[-127.50968550464327,57.241331257707834],[-127.5099591831798,57.241434599280495],[-127.51024205033347,57.24153447125867],[-127.51050179646504,57.2416525457454],[-127.51076145570981,57.24176837870094],[-127.51106713926542,57.241815297600034],[-127.51141209669247,57.241806832301826],[-127.51172505677891,57.2417494104366],[-127.51199708056456,57.2416532246642],[-127.51225591258994,57.24153813325895],[-127.51250825856174,57.24141639010973],[-127.51276073583647,57.24129800802278],[-127.51300794898538,57.241177444219915],[-127.51325095390182,57.24105580755308],[-127.51349604673699,57.24093414629554],[-127.51373320970235,57.240795760885554],[-127.51397585518795,57.24066515881825],[-127.51424286913101,57.24057351032963],[-127.51455039468982,57.24053632288288],[-127.51488727020727,57.24053354689986],[-127.51523131269201,57.240554228624426],[-127.51556361195259,57.24059298176416],[-127.51588199554568,57.24064646849159],[-127.51620225182627,57.24072123224387],[-127.51648923133277,57.24081992215701],[-127.51671074076016,57.24094066931323],[-127.51686317842812,57.24109808910084],[-127.51695337968316,57.24128089232716],[-127.51698148344205,57.24146665699972],[-127.51694998451154,57.24163965988513],[-127.51687286434053,57.24181319127531],[-127.51676669453543,57.241985938103454],[-127.51665009804596,57.2421576845977],[-127.51653869118721,57.24232937089548],[-127.51643553077123,57.242499840584664],[-127.51632719529594,57.24267037013078],[-127.51621672488325,57.242839803292114],[-127.51610834306746,57.24300921218964],[-127.51600310590085,57.24317970562964],[-127.5158937217766,57.24335024700315],[-127.51578951093333,57.24352072841404],[-127.51570513440001,57.243694343260955],[-127.51564473850249,57.243871043596],[-127.51559261765442,57.244047648148204],[-127.51554682085781,57.244226421563454],[-127.51550827107663,57.24440511111318],[-127.51547701279887,57.2445848373182],[-127.51545199007259,57.24476449137704],[-127.51543425904234,57.2449451821005],[-127.51543736809066,57.24515477841923],[-127.51550006845724,57.24529754446979],[-127.5157897274754,57.24527961865041],[-127.51614094394262,57.245192596764376],[-127.5164478673751,57.24524397338295],[-127.51669561893273,57.24537226459622],[-127.51684679431949,57.24557566196915],[-127.51698317758824,57.24571981600738],[-127.51715374339028,57.245653941404846],[-127.51733947855956,57.24547354581757],[-127.51755909297187,57.2453106938388],[-127.51780955166227,57.24519344619724],[-127.51807164148532,57.245081668384145],[-127.51834430102612,57.244975372634734],[-127.51862566830742,57.24487906459183],[-127.5189147265508,57.244793877021635],[-127.51921684493793,57.24472423170164],[-127.51953423036012,57.24467346602257],[-127.51985917401718,57.24463045905096],[-127.52018299965091,57.244585222185826],[-127.5204992207952,57.244531104572445],[-127.52080543581542,57.24446028694859],[-127.52094030188601,57.24438361163442],[-127.52133452135573,57.24423105646558],[-127.52158253184702,57.244104861696954],[-127.52185864604417,57.244033270294715],[-127.52217698359463,57.24403293340307],[-127.52251468936953,57.24407609071673],[-127.5228426550892,57.24413505485891],[-127.52314714690739,57.24420325947235],[-127.52344188261843,57.24428727131877],[-127.52373568064142,57.24437353549435],[-127.5240372812446,57.24444737688692],[-127.52435475321839,57.24450309635829],[-127.52468508418161,57.24454297092172],[-127.52501225420725,57.24455597672418],[-127.52533435744898,57.24451971535493],[-127.52563579173231,57.24443324758159],[-127.52586729428441,57.244309478914694],[-127.52606243611623,57.24415810779479],[-127.52631295061063,57.24404308501918],[-127.52662389472961,57.243960988215335],[-127.5269438574593,57.243949410470535],[-127.52727062118342,57.24397810975279],[-127.52759919079774,57.24402584469618],[-127.52791602239633,57.24409165229236],[-127.52820757692226,57.24417344857248],[-127.52847528571107,57.244281306292784],[-127.52871798654925,57.244411876081024],[-127.52892282160386,57.24455521891369],[-127.52906099152004,57.24471727641025],[-127.52906013338347,57.24490337786807],[-127.52888744540915,57.24504552322641],[-127.52864304827825,57.245209805071035],[-127.5284569338301,57.245327443862266],[-127.5283047950993,57.24549064823577],[-127.52820676358827,57.2456588262048],[-127.52823168950111,57.24584126375402],[-127.52833871918219,57.24600256455533],[-127.5285994172623,57.246116109316596],[-127.52890666339708,57.24620108430798],[-127.52922448523243,57.246238851674526],[-127.52964596131696,57.24622384001924],[-127.5298745038111,57.24625928550782],[-127.5302348968017,57.24635036276598],[-127.53050128168542,57.2464246012024],[-127.53080980061833,57.246489378326146],[-127.5311251813764,57.246543985197945],[-127.53145007664507,57.246577180392286],[-127.53178263705851,57.246594590638175],[-127.53211610802798,57.2466086262847],[-127.5324447022058,57.24663056540051],[-127.53276472237897,57.24667166165448],[-127.53309237141004,57.24674741993826],[-127.53333550318318,57.24686228223941],[-127.53339380046486,57.24702302885615],[-127.53336311810818,57.24721508530652],[-127.53339941911445,57.247396268171094],[-127.53345736290137,57.247573834528396],[-127.53352043710804,57.24775021977912],[-127.5335928332135,57.24792649587075],[-127.53367759626268,57.24810038505531],[-127.53377776650068,57.24827073066659],[-127.53389749065386,57.24843748410252],[-127.53403471224749,57.24860066939883],[-127.53418428488405,57.24876146782608],[-127.53434310703437,57.248919915678435],[-127.53450706052956,57.24907718221261],[-127.53467199878405,57.24923331599877],[-127.53483793838181,57.249388316838385],[-127.53500902598705,57.24954213612669],[-127.53518524505924,57.24969477403748],[-127.53536556726208,57.24984624260548],[-127.53554994764737,57.24999542130108],[-127.53573640283615,57.25014457544275],[-127.53592379788861,57.250291476251604],[-127.53611228436172,57.25043948506544],[-127.53630181728137,57.25058748136755],[-127.53649238007237,57.25073546534794],[-127.5366838827172,57.25088119597694],[-127.53687850523357,57.25102688975056],[-127.53707620263013,57.25117142614189],[-127.53727695833634,57.25131480533148],[-127.53748072732975,57.2514559067921],[-127.5376906446529,57.251594693702614],[-127.53790663210802,57.251730045909376],[-127.53812979636947,57.251863071427096],[-127.53835603560822,57.251994939438134],[-127.53858533324767,57.25212565012093],[-127.53881354234248,57.252255252180646],[-127.5390408147059,57.25238710696655],[-127.53926398674413,57.2525201306206],[-127.53948202997927,57.25265433525197],[-127.53969298959818,57.25279310699583],[-127.53989677537699,57.25293420486151],[-127.540092465629,57.25307988180764],[-127.54028301037599,57.25322674004881],[-127.54046747135855,57.253377032730484],[-127.54064678676573,57.25352850675556],[-127.54082201821264,57.25368114965649],[-127.54098695694704,57.25383615553937],[-127.54113965277834,57.25399578947858],[-127.5412851292151,57.2541566292707],[-127.54143065203289,57.25431858943541],[-127.5415813066183,57.25447936803153],[-127.54173503600555,57.254638989252705],[-127.54188169800763,57.25480317770498],[-127.54202731616272,57.25496737831773],[-127.54217703765086,57.25513040944759],[-127.5423369026902,57.25528771577297],[-127.54251407042669,57.25543697085628],[-127.54271365958024,57.25557587224603],[-127.54294375088902,57.25569984046489],[-127.5432003206458,57.25581116484645],[-127.54347622174595,57.2559132925898],[-127.54376126666652,57.25601082782445],[-127.54404731294068,57.25610722961223],[-127.54432629202073,57.25620819831132],[-127.54460210848475,57.25630808268606],[-127.54488296655848,57.25640454390028],[-127.54515978576924,57.25650329427545],[-127.54542446450516,57.256610034663595],[-127.5456659392701,57.25673274302964],[-127.54611729253021,57.25694041577685],[-127.54634776139795,57.25727849438528],[-127.54642948422658,57.25745241340669],[-127.54648438479231,57.25763001221668],[-127.54653420035054,57.25780991316838],[-127.54656745482852,57.2579911307064],[-127.54657677866223,57.25817038869649],[-127.54655180249728,57.25834780955937],[-127.54649034483484,57.25852117692094],[-127.54640188161808,57.25869374201507],[-127.54629361729664,57.25886429869148],[-127.54617395418062,57.259034989828834],[-127.54604797784863,57.25920351327244],[-127.54592507419552,57.25937087929256],[-127.54580841977301,57.259539292518],[-127.54569501930213,57.259711030411054],[-127.54558478222516,57.25988385194679],[-127.54547349890814,57.2600566857442],[-127.54536112405685,57.260228411282846],[-127.54524457168033,57.26039906495988],[-127.54512168935179,57.26056755109753],[-127.54499043625772,57.2607338937444],[-127.54484961465539,57.2608947438404],[-127.54469512184399,57.26105127077924],[-127.5445279743187,57.26120234147299],[-127.54434287169234,57.2613457762474],[-127.54413666596204,57.26148049107428],[-127.54391043097976,57.261607594247664],[-127.54366837648158,57.261728157110596],[-127.5434126216615,57.26184327565983],[-127.5431484170536,57.261955130073396],[-127.54287898896878,57.26206592440921],[-127.54260844020926,57.26217448927243],[-127.54233900901492,57.262285282517055],[-127.54207593389512,57.26239936354252],[-127.54182231759134,57.26251669587301],[-127.54158143158888,57.26264060422848],[-127.54134900427894,57.26276889683028],[-127.54111992057983,57.262902754947305],[-127.54089828339711,57.2630410092893],[-127.54069132708882,57.26318357482151],[-127.54050120415279,57.26333154735937],[-127.54033510397875,57.263483721401485],[-127.54019523629067,57.263643434225536],[-127.54008157279785,57.26380956520062],[-127.53998789144552,57.26398218753594],[-127.53991201149108,57.264159084803936],[-127.53984973976783,57.26433918526868],[-127.53979578062028,57.264519188029105],[-127.53974793658645,57.26469687681372],[-127.53970633118608,57.26487449228594],[-127.53967719895245,57.26505308224223],[-127.53965642488279,57.26523269504977],[-127.5396418565969,57.26541223495267],[-127.53963045289011,57.26559285874557],[-127.53962004935947,57.26577234975435],[-127.53960652610415,57.26595187744541],[-127.53958780885034,57.266131466190835],[-127.53956915313198,57.26631217528921],[-127.5395598681802,57.266493895356696],[-127.53955265739957,57.26667559107699],[-127.53954444623601,57.26685841963227],[-127.53952681880057,57.26703911673954],[-127.5394966552323,57.26721771904899],[-127.53944561305187,57.267393203509165],[-127.53937054370682,57.26756448602491],[-127.53925470044038,57.26772840011317],[-127.53909912825509,57.26788493338256],[-127.5389184823884,57.26803727673246],[-127.53872637280898,57.26818863339995],[-127.53853842700423,57.26833994089595],[-127.53836832888668,57.268496643868595],[-127.53822957029188,57.268658584006666],[-127.53811389913092,57.26882697933919],[-127.53800764354108,57.26899750617917],[-127.5379087007579,57.26916906817378],[-127.53781504153618,57.26934281021362],[-127.53772551369738,57.269516503717846],[-127.53763812112949,57.26969129317636],[-127.5375496822481,57.2698660948687],[-127.53746019703871,57.27004090879246],[-127.5373654430622,57.270213542368516],[-127.53726542026334,57.27038399558447],[-127.53715808257357,57.270553413486496],[-127.53704023638471,57.270719591398475],[-127.53691188158969,57.27088252929076],[-127.53674888281967,57.27103578382457],[-127.53654710736674,57.27117940332254],[-127.5363221955523,57.27131544635055],[-127.53609092351104,57.27144820036835],[-127.53594096803327,57.27161587476651],[-127.53566549744212,57.27173345124701],[-127.53560018826524,57.27181269069066],[-127.53560670601257,57.27207830527281],[-127.53566775599207,57.27225471719778],[-127.53573605924576,57.272431044123365],[-127.53578160432052,57.2726087588205],[-127.53581370167898,57.272787752194816],[-127.53583754594163,57.27296796337486],[-127.53584577751775,57.2731472364973],[-127.53583742878756,57.27332670396231],[-127.53581869022037,57.27350629321547],[-127.53578647460212,57.27368604043004],[-127.53573549678624,57.27386376540811],[-127.53566575651914,57.27403946812695],[-127.53559827032318,57.27421962865684],[-127.5355319191476,57.27440201799343],[-127.53545928166167,57.27458335990732],[-127.5353709115117,57.27476040187368],[-127.53525935871994,57.27492874688588],[-127.5351172348483,57.275085118240064],[-127.53493608917566,57.27522625162176],[-127.5347212515761,57.27535544763072],[-127.53448106584786,57.27547372946303],[-127.5342208454418,57.27558439795802],[-127.5339469660839,57.27569074155454],[-127.53366574193745,57.275794928398106],[-127.53338445471282,57.27589799430549],[-127.53310746692681,57.27600437248981],[-127.53284210522457,57.27611621940988],[-127.5325914900669,57.27623349864705],[-127.5323462317148,57.27635519901233],[-127.53210310810604,57.27647799501832],[-127.53186317664772,57.27660299537951],[-127.53162531843033,57.276727971066634],[-127.53138750354785,57.27685406687179],[-127.5311496870967,57.276980162258084],[-127.53091186907685,57.27710625722549],[-127.53067291403103,57.277230122911405],[-127.53043085346941,57.27735402441958],[-127.53018658192086,57.27747458810272],[-127.52993911514737,57.27759294649948],[-127.5296863168578,57.27770800346281],[-127.52940089992312,57.27781222994952],[-127.529045084936,57.277894855882295],[-127.52867429613659,57.2779664448679],[-127.52835051273172,57.27804533209734],[-127.52801012821462,57.27822867081179],[-127.52802774319534,57.278305818718756],[-127.52811111366874,57.27841807397465],[-127.52820142735025,57.278573969663526],[-127.52833570172498,57.278739442269476],[-127.52850129704166,57.27890903376189],[-127.52868465695153,57.27908178107958],[-127.52887319759036,57.279254467751954],[-127.52905444105495,57.279426118263146],[-127.52921580294142,57.27959351627748],[-127.52935519135934,57.27975668627193],[-127.52949358001308,57.279920988883624],[-127.52962991146302,57.280085315392704],[-127.52976727328605,57.28024962976941],[-127.5299056206446,57.28041281146937],[-127.53004709001381,57.28057595661405],[-127.53019059075943,57.28073795686147],[-127.53033819793139,57.28089878797735],[-127.5304909125223,57.28105731719455],[-127.53064979206793,57.28121465321053],[-127.53082613973639,57.28136730079661],[-127.53103434650674,57.28151172859025],[-127.53127399197466,57.28163785175684],[-127.5315417023825,57.28173898314092],[-127.53182655015131,57.28182758199744],[-127.53212449137504,57.28190593761152],[-127.53243055449218,57.28197971334719],[-127.53273960493107,57.28205009025371],[-127.53304660975031,57.28212161144102],[-127.5333545716636,57.282190878596246],[-127.5336746256385,57.28225103502296],[-127.53399762169651,57.28230667198161],[-127.53431357240673,57.28236799596503],[-127.53461034210737,57.28244299658157],[-127.53487572186309,57.2825374222691],[-127.53508863477434,57.28266945715397],[-127.5352651419112,57.2828254605688],[-127.53543462085455,57.28298715145213],[-127.53562429592924,57.283135152728754],[-127.53583447053593,57.28327618716617],[-127.5360486453293,57.2834138112175],[-127.53625570196695,57.283554881584145],[-127.53644535459291,57.283701761003584],[-127.53661348115607,57.28385561894224],[-127.53678069834042,57.284012850571365],[-127.53694594841473,57.284172347227745],[-127.53710504774195,57.284334157977334],[-127.53725283310554,57.284498343392926],[-127.53738401784405,57.2846627233732],[-127.53749661665648,57.284829563393245],[-127.53758540440353,57.28499780371667],[-127.5376214908112,57.28517226755381],[-127.53760081479138,57.28535524472039],[-127.5375386044098,57.285537588000786],[-127.53745229385929,57.28571460856891],[-127.53734482379622,57.2858817875974],[-127.53719660547694,57.28604271794852],[-127.53702534865283,57.286198312904204],[-127.53684780278361,57.28635286029697],[-127.53668388864313,57.28651061087458],[-127.53653274059381,57.28667605912663],[-127.53637739547646,57.286840435327235],[-127.53620184588564,57.28699271631772],[-127.53598911187314,57.28712413238193],[-127.53573599857961,57.28723247861392],[-127.5354637551818,57.287329837690194],[-127.53517666758422,57.28741952251779],[-127.53487996104005,57.287502592893006],[-127.53457690862903,57.287582373653606],[-127.5342717179608,57.28766105765655],[-127.53396969242523,57.28774082497609],[-127.53367295239707,57.28782277190076],[-127.53335594682012,57.28789150231211],[-127.53305476715266,57.28796677331242],[-127.53283755142584,57.28809038907816],[-127.53270740448126,57.28826231374113],[-127.53252862239667,57.28841238538559],[-127.53228975329893,57.28853961658],[-127.53203408265476,57.28866255938898],[-127.53176119444588,57.288770007847184],[-127.5314717424352,57.28885298562806],[-127.53116324752106,57.28890143192424],[-127.53083704243696,57.288922057478445],[-127.53049985961283,57.28892823643573],[-127.53015943716701,57.28893108912033],[-127.52982356934244,57.28894397742027],[-127.52950209715935,57.28897911834792],[-127.52919752737262,57.28904769348443],[-127.52890202056503,57.28913522043387],[-127.52860646758097,57.28922162617423],[-127.52829972913283,57.28928798233964],[-127.52797950612485,57.28932871029044],[-127.5276535926386,57.28935717197241],[-127.52732430500595,57.289378945718326],[-127.5269917777215,57.28939739315252],[-127.52665914397984,57.28941359883685],[-127.52632760076588,57.28943091204924],[-127.52599831174255,57.28945268246666],[-127.52566902234412,57.2894744520573],[-127.5253397325706,57.28949622082138],[-127.52501039770404,57.28951686820831],[-127.52468115189822,57.28953975586994],[-127.52435195039672,57.28956376325641],[-127.52402053890204,57.28958443229048],[-127.523688097594,57.289605112451824],[-127.52336001370077,57.289631346487184],[-127.52303870843572,57.28967095379317],[-127.52272758241632,57.289731742412194],[-127.5224330849653,57.28981924287302],[-127.5221674622045,57.28992770775373],[-127.52191667909949,57.290043847315275],[-127.52167131473949,57.29016552884902],[-127.52143338340383,57.29029160794075],[-127.52120288508394,57.29042208463223],[-127.5209819119482,57.29055693469253],[-127.52077041942657,57.29069503761767],[-127.52056631538048,57.29083641771994],[-127.52036747966525,57.2909799785506],[-127.52017397348894,57.291126840495856],[-127.5199867372186,57.29127475053676],[-127.51980275492632,57.29142598580367],[-127.51962395193434,57.29157716078285],[-127.51945141898085,57.2917293839266],[-127.51929471097102,57.291888149894746],[-127.51915268145713,57.29205010881802],[-127.51901487454153,57.29221426081516],[-127.5188137668839,57.29237914597485],[-127.51881051825771,57.29274128971089],[-127.51880211318178,57.29292187962952],[-127.51879372463205,57.29310246938148],[-127.5187894708308,57.29328301126243],[-127.51879249033503,57.29346346891762],[-127.51880689017962,57.293642673700475],[-127.51883571469125,57.293819469270744],[-127.51888219169346,57.2939960603744],[-127.51896386803693,57.29417000157453],[-127.5190776833769,57.29434244933861],[-127.51921219641774,57.29451353615295],[-127.51935393968179,57.29468341801247],[-127.51949050300536,57.294853359784575],[-127.51961044445122,57.29502349409102],[-127.51970129752381,57.29519284438875],[-127.5197496331733,57.295363808530986],[-127.51974917874901,57.29553533818653],[-127.51971867740096,57.29570833718933],[-127.51966538591505,57.295882721411274],[-127.51959345570738,57.29605844271061],[-127.51950384362655,57.29623324781596],[-127.5193996829162,57.296408221456865],[-127.51928511382252,57.296582194550325],[-127.51916005844303,57.29675404689417],[-127.51902977590508,57.2969248386077],[-127.51889417705459,57.29709232855576],[-127.51875842677711,57.29725645689888],[-127.51861845097844,57.29741839189453],[-127.51846899030647,57.297577073355214],[-127.51830910406771,57.297734754290396],[-127.51814082358686,57.29789029006679],[-127.51796517847374,57.29804366873158],[-127.51778218527735,57.29819489006216],[-127.51759499413677,57.29834503864596],[-127.51740253081665,57.29849300581832],[-127.51720685468932,57.298638767728164],[-127.51700905655831,57.29878343281751],[-127.51680804561185,57.29892589261736],[-127.51659752139554,57.29906397782535],[-127.51637748387856,57.29919768839429],[-127.51615215746088,57.29932921758651],[-127.51592158658943,57.299459685936775],[-127.51568993996065,57.29958904523419],[-127.51545829176344,57.299718404135874],[-127.51522876251643,57.29984885921691],[-127.515004519087,57.299981494979455],[-127.51497511855261,57.29999977186624],[-127.51478661905449,57.300117420312226],[-127.51457717174597,57.30025661088638],[-127.51437087318456,57.300396885839575],[-127.51416573609906,57.300540510287234],[-127.51396371995858,57.3006840983825],[-127.51376491360156,57.300829891269125],[-127.51357133216342,57.30097674462723],[-127.51338302007879,57.30112577904556],[-127.51320099598283,57.30127586171677],[-127.51302627310208,57.301426980978064],[-127.51285994227493,57.30158024535356],[-127.51274388214823,57.30174414043128],[-127.51270534996719,57.301925078420126],[-127.51267309039166,57.30210706514688],[-127.51260846347444,57.302284940901515],[-127.51253653312537,57.30246177979728],[-127.51246980098776,57.30263855872148],[-127.51242385837296,57.30281621895831],[-127.51241733629413,57.302992303520114],[-127.51248658925753,57.30316751423642],[-127.51257872616426,57.303343582100496],[-127.51262621566525,57.30352016489055],[-127.51262783893321,57.30353472019889],[-127.51263954392883,57.30369938386278],[-127.51264045891197,57.30387986711178],[-127.51263614707167,57.304059289591365],[-127.51263809190004,57.30423976101472],[-127.51264934414476,57.30441900403684],[-127.51266271720384,57.30459934370462],[-127.51266671076742,57.304778670497974],[-127.51265092631819,57.30495710434666],[-127.51260395188068,57.30513477685538],[-127.51254762501681,57.305312557225115],[-127.51250692318344,57.30549127848122],[-127.51248702927563,57.30567088087237],[-127.51247648730215,57.30585037543947],[-127.51246597298758,57.30603099079314],[-127.51244500433147,57.306209484562345],[-127.51240633312729,57.306387061401686],[-127.51234174209402,57.306566058206705],[-127.51224787491674,57.30673978714093],[-127.51211505172179,57.30690051215759],[-127.51185901587166,57.30701893514569],[-127.51160074119117,57.30713289910031],[-127.51133920893075,57.30724353682894],[-127.51108939783623,57.307361886567094],[-127.51085128015355,57.307486827620664],[-127.51061740254795,57.307613961567746],[-127.51038568851376,57.30774331234331],[-127.51015821454762,57.30787485605147],[-127.50993598292406,57.30800746009458],[-127.50971801907825,57.30814337788222],[-127.5095116600841,57.30828364608072],[-127.50943393583835,57.30834059467422],[-127.50931482945336,57.3084282886408],[-127.50912543406041,57.30857732969008],[-127.50891938042483,57.30872544101945],[-127.50871652026566,57.30887575745776],[-127.50855230480968,57.3090312345499],[-127.50846013688621,57.30919597264331],[-127.5084493813845,57.30937098528981],[-127.50848874650217,57.309552148063645],[-127.50853684090738,57.30969173037572],[-127.50855211755878,57.309736398021975],[-127.5086144426066,57.309920660014406],[-127.50864852065047,57.31009964147569],[-127.50862726635374,57.31027141176915],[-127.5084920291857,57.3104243134323],[-127.50826163069013,57.310561492929935],[-127.50801874288985,57.310697694518076],[-127.50781461748835,57.310842418763706],[-127.50773669194798,57.3108948843568],[-127.50760213956467,57.31098611760376],[-127.50742215007772,57.31113729034358],[-127.50731438861887,57.311302206992416],[-127.50723605397624,57.311475754123066],[-127.507170267395,57.31165139921999],[-127.50711499652455,57.311830286739735],[-127.50707115552251,57.31200904294077],[-127.5070367396188,57.312189933038646],[-127.50700958374688,57.31237073974522],[-127.50698966040797,57.31255034229672],[-127.50698007657013,57.31272870500437],[-127.5069829976024,57.31290804516783],[-127.50699734937118,57.313087254042344],[-127.5070179150903,57.31326639155671],[-127.50704269547523,57.313446601763424],[-127.50706741525964,57.31362569160415],[-127.50708804243251,57.313805949573016],[-127.50710237841672,57.31398515875679],[-127.50712936919184,57.3141687069287],[-127.50715951144568,57.31435334000573],[-127.50714888120172,57.31453171501102],[-127.507053570313,57.31469648873288],[-127.50688816027417,57.31484861456663],[-127.50668300585555,57.31499447013958],[-127.50646739351612,57.315138203307434],[-127.50626855509238,57.315286227877124],[-127.50611468675481,57.3154415834876],[-127.50602682349046,57.31561075535665],[-127.50598918728434,57.315789440403414],[-127.50597251367913,57.315972369179896],[-127.5059485180292,57.316154260941595],[-127.50588794579211,57.31633096713092],[-127.50579085728639,57.31650360808605],[-127.50567922892878,57.31667641585583],[-127.50556963238736,57.31684807913728],[-127.50548189600454,57.3170206125799],[-127.50543474085188,57.317194922500555],[-127.50542925847974,57.31737211751413],[-127.50544977497441,57.31755013531136],[-127.50548904593758,57.31772905901491],[-127.50553868596909,57.317907863747806],[-127.50559046433658,57.31808776504426],[-127.50563699799321,57.31826660545046],[-127.50567209976845,57.31844557706709],[-127.50569480006118,57.31862581211948],[-127.50571437659157,57.318806083046546],[-127.50573810755056,57.31898630632025],[-127.50577316627292,57.31916415743005],[-127.50582896916076,57.31934064938486],[-127.50590237584407,57.31951581820534],[-127.50598418023097,57.31969313280945],[-127.50607735730468,57.31986919575884],[-127.50618495950557,57.3200417298053],[-127.50631305271317,57.32020730199708],[-127.50646261222893,57.32036365889041],[-127.50666430989712,57.320498116182854],[-127.50693253709878,57.32060714506319],[-127.50721823692167,57.32071148833657],[-127.5074702033578,57.32082967171002],[-127.50766701537592,57.32097203136711],[-127.50784133327058,57.32112361801602],[-127.50800341035952,57.32128095062371],[-127.50816043674105,57.32144170440316],[-127.50832251649464,57.32159903665724],[-127.50851028953113,57.32174934678835],[-127.50872377266859,57.32189263449267],[-127.5087978459661,57.32205770474641],[-127.50876970535573,57.32223964569275],[-127.50875302563516,57.322422575968055],[-127.50880676973988,57.322599091007966],[-127.50888850564989,57.32277416307158],[-127.50899606783136,57.32294557482357],[-127.50915098360085,57.32310523093805],[-127.50938022574375,57.32325282097913],[-127.50945635381512,57.323443652682606],[-127.5095146069013,57.3235763930043],[-127.50941695667603,57.32376137615461],[-127.50924671366818,57.323923651197696],[-127.50901657481822,57.3240428920798],[-127.50875141293213,57.32414347661353],[-127.50743146327552,57.324849242317235],[-127.50720126725925,57.32491466798588],[-127.50686979307395,57.3250204946993],[-127.50643640320177,57.325151033643],[-127.5060514247293,57.32532361719464],[-127.50571889676134,57.325429453053424],[-127.50539586984404,57.32556544867345],[-127.50519364415288,57.32570790556758],[-127.50496379109782,57.3258349836464],[-127.50471381106942,57.32595220223938],[-127.50445320455911,57.32606393669586],[-127.50418515693615,57.32617127153512],[-127.50391391155308,57.3262764002735],[-127.50364269219023,57.3263826492419],[-127.50337573125381,57.326491091049256],[-127.50311723880682,57.32660391969213],[-127.50287144727648,57.32672220784669],[-127.50264477661503,57.32685148755792],[-127.50243621297184,57.32699177053613],[-127.50224033366788,57.327137513462425],[-127.50205186495833,57.32728653456596],[-127.50186337815703,57.327435555607096],[-127.50167490650519,57.32758457620537],[-127.50149901458171,57.32773681589286],[-127.5013241683705,57.32788904338397],[-127.50113357069633,57.328036966434915],[-127.50093127195672,57.328178296453245],[-127.50072372527653,57.32831856507505],[-127.50051199436709,57.32845776011207],[-127.50024528583437,57.32867942346148],[-127.4999116904058,57.32873256498113],[-127.4996015914556,57.328722655679584],[-127.49933232505248,57.32861474365582],[-127.49906471441555,57.3284956012195],[-127.4987590908148,57.32844079494459],[-127.49843252425204,57.32840864904345],[-127.49809904660734,57.32838555000681],[-127.49776069132993,57.3283703534741],[-127.49742271528434,57.328365241614904],[-127.49708830353484,57.32837129919062],[-127.49676264157648,57.32838846708215],[-127.49644828995469,57.32842904821416],[-127.49614126850231,57.32849757242624],[-127.4960086738831,57.32853495911323],[-127.49584113750886,57.328582833815894],[-127.49554426166489,57.3286714207027],[-127.49524931381099,57.32875662165277],[-127.4949596548773,57.328844003874316],[-127.49467329492794,57.32893583225925],[-127.49438899465505,57.329027636556724],[-127.49410154094797,57.32911835503529],[-127.49380975510935,57.32920463780211],[-127.49351363721149,57.329286484827456],[-127.49320548539947,57.32935277275317],[-127.49287964259749,57.32939235488741],[-127.49254976650536,57.32938153275893],[-127.49231526665216,57.32925863680309],[-127.4921142262029,57.3291140592187],[-127.4918552080376,57.32900153112799],[-127.49161045576093,57.328882113836734],[-127.4912263200801,57.32862638535919],[-127.49279492736989,57.33272746266905],[-127.49142463450585,57.33378230006058],[-127.48945481112614,57.335297973523225],[-127.48355012292598,57.33838733073836],[-127.47032426889281,57.346410751378855],[-127.46081689965219,57.352283836168795],[-127.45710622209509,57.357751225598086],[-127.45680116303654,57.36095650473165],[-127.45503889442125,57.36490442429749],[-127.45414292351799,57.36942572498322],[-127.45895157123165,57.37377618342823],[-127.46088574674089,57.37472334474147],[-127.46681441090709,57.38072037207297],[-127.46977420894265,57.38663381893392],[-127.46476515292852,57.39130884512785],[-127.4544213449213,57.394840948651535],[-127.44410172791332,57.396093799621106],[-127.43466796058573,57.395506471212876],[-127.43362876801868,57.395751005092535],[-127.4252276582951,57.39777071008003],[-127.41528844232333,57.40090066794012],[-127.40678336769125,57.402642257721716],[-127.39524257294026,57.405563581125904],[-127.38982812150158,57.408006696154374],[-127.38878397828788,57.40847515094049],[-127.37810598068816,57.414919661450796],[-127.37553018356707,57.42008593296626],[-127.37201421014947,57.42566559064852],[-127.37068236389408,57.42698897353644],[-127.36304168596244,57.42963353891296],[-127.35482437789993,57.43080367949389],[-127.34154265099268,57.43577414589991],[-127.33331131167024,57.43653945947875],[-127.32491399026097,57.435539005019486],[-127.31099878513788,57.43743631630496],[-127.30594209855715,57.441540637666826],[-127.30423885486641,57.444580129703624],[-127.30265809448603,57.45151102290218],[-127.30182424310057,57.45864981246057],[-127.30424354990421,57.464796743078864],[-127.31166262630224,57.47146801468316],[-127.31709896535719,57.47570114480017],[-127.32252538881083,57.479584368297274],[-127.3206045645928,57.485774648197136],[-127.3134834128346,57.48858152950506],[-127.30469919859966,57.489063454750195],[-127.29851077259951,57.49117859688963],[-127.29942847846857,57.493447808737756],[-127.30051800469526,57.49429813673572],[-127.30184543602711,57.49599821429798],[-127.30658784753167,57.501718729137195],[-127.31381979387183,57.505656275728455],[-127.31848625997226,57.50560968657789],[-127.32342388492033,57.50744384449677],[-127.32333405109125,57.51122099375495],[-127.32335712710581,57.515212296363295],[-127.32525659674558,57.51817118377924],[-127.32668913648418,57.519744432824034],[-127.32688108986014,57.52568949469381],[-127.32473058133806,57.53136212637584],[-127.32175914567921,57.54126781521603],[-127.31952989314087,57.547909973630546],[-127.32035430509185,57.55373224968631],[-127.32209110893206,57.55485406252958],[-127.32665717039708,57.558073362438094],[-127.33064773032255,57.56322690588386],[-127.32921219323899,57.56478423457523],[-127.32168426898049,57.56851066614314],[-127.32177898227852,57.57146988137731],[-127.323235337901,57.57706168941749],[-127.32032337603644,57.57908222968634],[-127.31648242253952,57.578609266569785],[-127.31113957762554,57.577747450994565],[-127.30340059171144,57.57838020662638],[-127.29800288153275,57.57911510087698],[-127.2893002725742,57.57954120812669],[-127.2870607148257,57.57932982615537],[-127.28573920010098,57.57780879705128],[-127.28065882920401,57.57853091977954],[-127.2771991635435,57.58004449821779],[-127.26954826246188,57.58011826028694],[-127.26624911188222,57.58003331856003],[-127.26230670416086,57.57966739957952],[-127.25788853737288,57.58119859271968],[-127.25406544333285,57.58482300315107],[-127.24777322257529,57.587681277283096],[-127.23971070554921,57.58820569131386],[-127.23545108664239,57.588012371606446],[-127.23101914923461,57.589085309913195],[-127.22725368491116,57.59116553524993],[-127.22072205031414,57.593280209572804],[-127.21593096093832,57.592974552742476],[-127.20924057517949,57.593322998578216],[-127.20334746531591,57.59548478124855],[-127.19797729182146,57.597291724033724],[-127.19422113811814,57.59978354194542],[-127.18860349941998,57.604112952952825],[-127.18307783973911,57.60438678658981],[-127.17644834708496,57.603127353992676],[-127.17344184160922,57.60206869752562],[-127.16823412671393,57.5984550356495],[-127.16460493629317,57.594208352709806],[-127.1605803306986,57.59086206798423],[-127.15900833713809,57.58790680136121],[-127.1553657826858,57.58308596518248],[-127.15101885523241,57.579634621024645],[-127.14696473254982,57.57522083481158],[-127.14450062033478,57.574497715379735],[-127.13886494549097,57.57048311174493],[-127.14135564921276,57.564523616898136],[-127.14313454203077,57.5596017828053],[-127.14366825342624,57.555767098683276],[-127.14356211379764,57.552000757602784],[-127.14010010990627,57.54963581452819],[-127.13847060999296,57.548277529209976],[-127.13889133643818,57.54421964129771],[-127.14206755541638,57.54002134063379],[-127.14497525559315,57.53771787536399],[-127.14556546735196,57.53594575375775],[-127.1434812213006,57.53356000468341],[-127.13845467236796,57.53206072493108],[-127.12667737270188,57.53238607143942],[-127.11066544304457,57.532961350660834],[-127.10462339821142,57.53335291793936],[-127.09762445770087,57.533572784096],[-127.09041751431147,57.533973385732374],[-127.08373974903405,57.534360277317866],[-127.07788110254118,57.53360999848867],[-127.0771145889834,57.53270138317298],[-127.0745118692942,57.53055202445347],[-127.07155583658565,57.52275483347207],[-127.06982671245207,57.51739628894098],[-127.06694870770525,57.51279149501147],[-127.05958082654729,57.51073418430188],[-127.05032553859948,57.50983060072434],[-127.04234052322143,57.508629323844495],[-127.0354622480274,57.50936517443633],[-127.03071838580301,57.51054142046647],[-127.03081938471725,57.51476508593862],[-127.0283757945937,57.519008634172025],[-127.02169311181473,57.52344649975712],[-127.01552601529545,57.52737778808587],[-127.01265170953396,57.53139118780228],[-127.00970456374209,57.53701059105032],[-127.00182704853863,57.54060453480857],[-126.99147011307203,57.54267394162047],[-126.97800743202565,57.54361751695681],[-126.97268056460304,57.54291243955368],[-126.96542563647941,57.54125259179268],[-126.95539764760376,57.539199876980156],[-126.94667279942993,57.53828512193315],[-126.9357591613292,57.53926885801605],[-126.93088366916814,57.53969798699769],[-126.92549809307573,57.54098258382283],[-126.91798924229049,57.542461130834454],[-126.9128011147506,57.54312496121678],[-126.90532754471354,57.54625286625853],[-126.90337542864232,57.54928885655163],[-126.90054249343568,57.55107514771666],[-126.89232177936435,57.554099785622434],[-126.88311541084217,57.55574924911296],[-126.87515159889115,57.555963732383205],[-126.86498017132989,57.557107075978074],[-126.85681832976317,57.558012375686936],[-126.85077735687578,57.55873310361509],[-126.8421916425966,57.5596940419288],[-126.8336142880468,57.561102825996336],[-126.82983320559656,57.5634676025849],[-126.82734408895477,57.56650584396916],[-126.82439699761647,57.5681207970846],[-126.82080484418918,57.56917463503016],[-126.81762182924628,57.56947242753179],[-126.80636841678023,57.570043900864114],[-126.79334181451459,57.57240098037057],[-126.78625996786052,57.57443449794297],[-126.78386589681219,57.57589725816288],[-126.78353332710809,57.576101039157315],[-126.78347186466257,57.576214640269775],[-126.78336493878766,57.57650677446503],[-126.78335004938572,57.5766974589404],[-126.78336066082541,57.5768061479477],[-126.78295065474317,57.57690724064916],[-126.78280192405191,57.57694736262949],[-126.78246859960122,57.57711526858486],[-126.78182377997733,57.577445343010716],[-126.78144995347256,57.57767851312741],[-126.78135009543074,57.57780691553585],[-126.7812783885922,57.57788021477554],[-126.78104647010068,57.57789391910681],[-126.78077694798282,57.577910087633136],[-126.78070479461239,57.57791051413693],[-126.7805908146791,57.577912308955014],[-126.78017154046277,57.5779192707921],[-126.77944376299368,57.57792917336668],[-126.77905915801766,57.57799534826544],[-126.7789826399382,57.57808885540494],[-126.7789854036943,57.57817292570796],[-126.77890192412012,57.578284412346854],[-126.77863375357657,57.5784171686208],[-126.77826810267372,57.578540408375225],[-126.77796991512817,57.57863858436554],[-126.77782030203798,57.57868767516626],[-126.77766620301746,57.57877266917266],[-126.77734058880908,57.57896181879165],[-126.77706284494086,57.57913835329747],[-126.77689764455137,57.57929516568225],[-126.77674485236041,57.579342031658335],[-126.77655680494011,57.57940480091165],[-126.77635574251774,57.579495675285976],[-126.77623873773183,57.579553541883485],[-126.77609778387823,57.579617154875656],[-126.77580854527055,57.57974442346933],[-126.77547127984877,57.579875336868966],[-126.77516148663864,57.57996909004551],[-126.77500984160798,57.580021553062366],[-126.77480339705535,57.58010572972666],[-126.77462715331221,57.58018300202573],[-126.77445428372945,57.580271465868705],[-126.77433217312047,57.58033608765995],[-126.77417206489447,57.580435687890066],[-126.77397689239314,57.58055903767516],[-126.77379393256992,57.5806666194466],[-126.77358229751704,57.580803518975635],[-126.77357752804902,57.58092911644196],[-126.77367189975588,57.58104292171437],[-126.7737788829717,57.581210468590136],[-126.77381270709867,57.5813302342487],[-126.77381203054604,57.58145132318245],[-126.77387153123374,57.58154739413299],[-126.77393970534155,57.58160753721286],[-126.77405049444609,57.58170554990543],[-126.77422752244979,57.58171796631978],[-126.77446513961954,57.58172554264798],[-126.77481889238642,57.58173467970337],[-126.77499690636904,57.58174372583276],[-126.77498908074094,57.58187270488841],[-126.77487303442183,57.58197877451225],[-126.77451954492436,57.58208511530696],[-126.77453286677569,57.582173608678666],[-126.77454221706614,57.582273336925304],[-126.77456137840545,57.5823920673435],[-126.77462179810608,57.58253297900616],[-126.77470450282097,57.58263900405384],[-126.77482621442046,57.582759375334156],[-126.77488659702676,57.58284759268442],[-126.77492431225814,57.582952760374646],[-126.77494540676112,57.583063631365924],[-126.77495192653414,57.583177951346016],[-126.77496672251246,57.58328773814836],[-126.77500641583772,57.583387288459654],[-126.77506270757453,57.58348001442656],[-126.77512527546229,57.58357270355239],[-126.77517484986895,57.583694619057965],[-126.77519792239589,57.58385144603781],[-126.7752122086413,57.58398702255729],[-126.77523157863072,57.584167415666776],[-126.77523197665585,57.58439164539706],[-126.77511972651357,57.58463223243475],[-126.7750396724597,57.5847078198949],[-126.77497046755941,57.58480240339911],[-126.77497317008678,57.584934684529756],[-126.77505363772207,57.58513490028557],[-126.7751278826694,57.58528694260672],[-126.77515999594112,57.58537420476765],[-126.77512456093493,57.58548316534923],[-126.77507408494324,57.58562360670396],[-126.77506377656537,57.58578511447616],[-126.7751127574051,57.58592945698892],[-126.77517206164354,57.58606701195765],[-126.77520726966686,57.58620246599228],[-126.77524429462704,57.58637602889712],[-126.77527014857172,57.58656647481708],[-126.7754316775184,57.5865868289003],[-126.77568468097493,57.58662906898362],[-126.77586644414295,57.58666724233882],[-126.77619549942575,57.58674491200615],[-126.77661587699698,57.58683774034478],[-126.77709757604316,57.586911146901684],[-126.77760021515026,57.58698442846812],[-126.77805244098012,57.587099488105665],[-126.7783897618794,57.5872230714261],[-126.77859748389324,57.58725099765336],[-126.77876352607015,57.58723656502122],[-126.77903047361549,57.58729553403381],[-126.7794845870423,57.5873489136855],[-126.7799650302774,57.58736065326378],[-126.78027411738488,57.58738237257219],[-126.78051973806114,57.58747285716648],[-126.78073215499896,57.587525417944846],[-126.78091649717294,57.58753554008129],[-126.78121550242487,57.58762682901055],[-126.78143024432549,57.58769058658562],[-126.78164971754317,57.587729650197204],[-126.78192359446791,57.587769512633685],[-126.78208041852545,57.58781455214053],[-126.78217515396048,57.58789359402801],[-126.78232695082686,57.58799920594349],[-126.78253735982908,57.588106712876],[-126.78268522535618,57.588174228065604],[-126.78286980606892,57.588246010204294],[-126.78300367153032,57.58829454819252],[-126.78317625564593,57.58839330899863],[-126.78341732654874,57.58856678163151],[-126.78355791495966,57.58868703385827],[-126.78363522738017,57.58878299561954],[-126.78374111821591,57.58889448414969],[-126.78386728994928,57.58897558078398],[-126.78405652478985,57.589069757075535],[-126.78432822303863,57.58920604793223],[-126.78454696066918,57.58931013891168],[-126.78467748240745,57.589399057160826],[-126.78477817286279,57.58946124447443],[-126.78494490141429,57.58952976639554],[-126.78524764238003,57.589649053511245],[-126.78560108151129,57.589790461867366],[-126.7859072446729,57.58987272863426],[-126.7862691512773,57.58991766443675],[-126.78668179216946,57.589988084048684],[-126.78691331838223,57.59005285421317],[-126.78706973139327,57.59012816197723],[-126.78730867634306,57.59024782452925],[-126.78759308183201,57.59038963906046],[-126.78785746414285,57.590524845397496],[-126.78801401039966,57.590556425712855],[-126.78821731679642,57.590572030527156],[-126.78850409492095,57.59062637782256],[-126.78883768149159,57.59071856480007],[-126.78919129536851,57.59081735834605],[-126.78934748274212,57.590881453164265],[-126.78960195400875,57.59099204960584],[-126.79006099882466,57.591028546418976],[-126.79059823206879,57.59095133564944],[-126.79105652012133,57.59100128757337],[-126.79153511289482,57.59117220265699],[-126.79208551417786,57.59132474686461],[-126.79256155474644,57.591473250218435],[-126.79275564789874,57.591548325422025],[-126.79256214937506,57.59165151281291],[-126.79236381588409,57.59172445730289],[-126.79221733937968,57.59182511985434],[-126.79219698479966,57.59200238693297],[-126.79222348971574,57.592219735253586],[-126.79215898208057,57.592437629293734],[-126.79214288964398,57.59256890286288],[-126.79217699351061,57.59264830160002],[-126.79227631425785,57.592794579620914],[-126.79231077658886,57.59289191494764],[-126.79238171730971,57.59308208882372],[-126.79244617817857,57.59316242665603],[-126.79254315112073,57.59329638574135],[-126.79252132097369,57.59345348085367],[-126.79234288054967,57.59362721161449],[-126.79224938861522,57.59376007061684],[-126.79217444772559,57.59387936427146],[-126.79211389649647,57.593986238726735],[-126.79205122897953,57.594092004675],[-126.7919607650057,57.59421923949902],[-126.79186623903703,57.59435322565658],[-126.79180975425872,57.59445446977141],[-126.79171179245422,57.59457390117018],[-126.79156539849987,57.59462859456401],[-126.791429263052,57.59467425696284],[-126.79129627449882,57.59471990037652],[-126.79097642978148,57.594786843439614],[-126.79079023490146,57.59484065304226],[-126.791136106645,57.594967517701036],[-126.79126913222348,57.59502390106569],[-126.79152074701274,57.5951468444536],[-126.79162693460624,57.595321111551],[-126.79161695312153,57.595444500551885],[-126.79161174182948,57.59559589035857],[-126.79160858624236,57.595645240954866],[-126.79159940188649,57.595756292290254],[-126.79158500092832,57.595868496060966],[-126.7915853653515,57.59598621726692],[-126.7916152374132,57.596113852297215],[-126.79167297765419,57.59622338157293],[-126.79174646833829,57.596335058818106],[-126.79182214575002,57.59645120763618],[-126.79186471674484,57.596535040719836],[-126.79205798274447,57.5966695447252],[-126.79235679778914,57.596847141499296],[-126.79248478776286,57.59706276102744],[-126.79249648535429,57.597221897944856],[-126.7926110613905,57.59729632960498],[-126.79272566131161,57.59737188220712],[-126.79288181139705,57.59748306308502],[-126.79304764592989,57.59760651862493],[-126.79317193125267,57.59769434569712],[-126.7933053446639,57.59776866373779],[-126.79350109596864,57.59787175796382],[-126.79372320376628,57.59798366303446],[-126.79388803401861,57.59805891299449],[-126.79403170262592,57.59812307813363],[-126.79427883266894,57.5982303472516],[-126.79447159697179,57.598289732121366],[-126.79459316755498,57.59834842363356],[-126.79472463425073,57.59842947909136],[-126.79482971519656,57.59849948134638],[-126.79494194837729,57.59856159225205],[-126.79508061540052,57.598636998174534],[-126.79527108187962,57.59873675817662],[-126.79546735740047,57.59881405937668],[-126.79585969253651,57.59870854873203],[-126.79602768282447,57.5986851133518],[-126.79621248349102,57.59871427187867],[-126.79647485889724,57.59874968970194],[-126.79659753091804,57.598760162088944],[-126.79705044525473,57.59879891479842],[-126.79772470134425,57.59881278526558],[-126.79827181640967,57.59880275442017],[-126.79876130225826,57.598888369898646],[-126.79922371718277,57.59893042130144],[-126.79941870189135,57.59894605962657],[-126.79960891918338,57.598984150105345],[-126.7999533119236,57.5991861205787],[-126.80000011062484,57.59922171504544],[-126.80057456660687,57.599663344859394],[-126.80109552615355,57.599999905709666],[-126.8014743460407,57.60024538988941],[-126.8022420157942,57.600666781080996],[-126.80266162933283,57.60091089327436],[-126.80291551440548,57.60108761905768],[-126.80307079029635,57.601204399772755],[-126.80318505669102,57.601312460098875],[-126.80336444921252,57.601480668350064],[-126.80363865104592,57.60172678273812],[-126.80394314850928,57.601970469981744],[-126.80416188602815,57.6021182566424],[-126.80405977928383,57.602436172929586],[-126.80393299736282,57.602824873934736],[-126.80379614467996,57.603231575146324],[-126.80371075251793,57.60354826861361],[-126.80367508615323,57.60379178269808],[-126.8036546762894,57.60391523720198],[-126.80360867413093,57.60401642361194],[-126.80355596480682,57.6040974694495],[-126.80354077400743,57.60412110670457],[-126.80352057015135,57.6042053184659],[-126.8034669409877,57.60429197580078],[-126.8033390834914,57.60443290123214],[-126.80327797684153,57.60451287683595],[-126.80335228765618,57.60461108956212],[-126.80354262780337,57.604850987570074],[-126.80377308942833,57.605106338002855],[-126.80398446357664,57.60515326344675],[-126.80420348175058,57.605214717478134],[-126.80448831589888,57.60531949686883],[-126.80480504868191,57.605447626370896],[-126.80505228075,57.605555997105505],[-126.80528579795657,57.605658845019065],[-126.80552316237885,57.60579530472412],[-126.80566925904702,57.60587289742255],[-126.80579294063381,57.605930445238464],[-126.80598554762541,57.60597972434803],[-126.80609884179471,57.605991366516236],[-126.8061796356017,57.60600096444601],[-126.80635066779747,57.60602010254094],[-126.80651671551294,57.60610093618418],[-126.80668826768635,57.60619406910721],[-126.80694291616862,57.60630575474461],[-126.80725966548616,57.60643387848107],[-126.80746390854485,57.6065873549871],[-126.80751308736687,57.60673393031045],[-126.80760005167079,57.60683654839513],[-126.80775772554244,57.60691631055237],[-126.8078985896304,57.606993932897915],[-126.80812124739332,57.607127114533405],[-126.80836038981846,57.60724786191874],[-126.80855925971613,57.607345310263305],[-126.80875884810035,57.60747638963015],[-126.8088444080466,57.607659741289254],[-126.80882250777647,57.607859447192716],[-126.80886803312922,57.608030710776454],[-126.8089903653157,57.60817123216562],[-126.8091095500671,57.60831177273122],[-126.80918723039723,57.6084200527532],[-126.80925732966926,57.608516046052145],[-126.8093269099565,57.60858849748345],[-126.80941532330532,57.60865971237235],[-126.80950903376703,57.608734258343425],[-126.8096211760411,57.608838963537735],[-126.80985458087221,57.60898440986834],[-126.81000457400897,57.60904739876457],[-126.81026777736585,57.609068209487205],[-126.81042981218269,57.609058246613756],[-126.81066907797738,57.60903659799941],[-126.8108718693411,57.60902302104765],[-126.81103212224343,57.60902764386247],[-126.81123252545481,57.60904883796599],[-126.81139768505115,57.609087065992576],[-126.81157837921988,57.609165561363916],[-126.81185253848238,57.609209846718905],[-126.8121969102619,57.60915951994841],[-126.8125436387953,57.60912151090793],[-126.81284955720625,57.60913308438688],[-126.81319139954068,57.60916013286102],[-126.81350386316201,57.60918399768361],[-126.81365802216463,57.60919650317456],[-126.81381254957854,57.60922694530337],[-126.8139807165447,57.60925842445737],[-126.81417407639739,57.6092931118107],[-126.81431931324886,57.609329216542875],[-126.81454431518065,57.609374920361],[-126.81485300433042,57.609417865558555],[-126.81506168881867,57.60943451806795],[-126.81525327223402,57.60943557901384],[-126.81541960725578,57.60943006827422],[-126.81558062807109,57.609421226533335],[-126.81574619740331,57.6094291744271],[-126.81608645847848,57.609431558953176],[-126.816451687797,57.60942594003495],[-126.8167321029527,57.60941972297609],[-126.81696656050052,57.60941827414107],[-126.81714977040349,57.609419384089634],[-126.81751999391238,57.60954827459708],[-126.81782660353926,57.60964055828258],[-126.81807668378569,57.60968385859206],[-126.81832866439164,57.609718177115916],[-126.81851798902268,57.609759610315166],[-126.81865398937848,57.609803615890094],[-126.81881536038847,57.609859797315394],[-126.81898322257202,57.6099249078891],[-126.81913958747319,57.609991210698],[-126.81926645142302,57.610048726613535],[-126.8194197415411,57.61011841174578],[-126.81958923880806,57.61016220874097],[-126.81976898124117,57.61014763985343],[-126.82006778109832,57.61011999902728],[-126.82028266244888,57.610133241314685],[-126.82037649984466,57.610260475217856],[-126.82044483425412,57.6105156836268],[-126.82059252117348,57.610713218521994],[-126.8207893715179,57.61081178281666],[-126.82097182262123,57.61087343679721],[-126.82119701173622,57.61092697667242],[-126.82137612117236,57.61097968129982],[-126.8215665001828,57.61106931512303],[-126.82176698288285,57.61114206793243],[-126.82195472849828,57.611158839828214],[-126.82211293937385,57.61116458317684],[-126.82230970081102,57.61116223816153],[-126.82252629311907,57.61115752707036],[-126.8227664655375,57.611177335185495],[-126.82290684079005,57.61123027884793],[-126.82304735488462,57.61128882748513],[-126.82318878605369,57.611341764284404],[-126.82337115381198,57.611400051952245],[-126.82362737095002,57.61148366680869],[-126.8239610896696,57.61161725200951],[-126.82425961131433,57.61176899502294],[-126.82450974085879,57.61190982725676],[-126.82465689597822,57.61193693929651],[-126.82492158055312,57.61197677219324],[-126.82510112846826,57.61200143920724],[-126.82541196888606,57.61204546783034],[-126.82573546880005,57.61209390144599],[-126.82602133507083,57.612144811832074],[-126.82641120638154,57.61221188944207],[-126.82676399388393,57.61225901627492],[-126.82694125515913,57.61227472552573],[-126.82709540670008,57.61228609433613],[-126.82735434024322,57.612302413219204],[-126.82763644194281,57.61232419254341],[-126.82781054748371,57.61233879919208],[-126.82796157536477,57.61235130775541],[-126.82813358762562,57.612365927090956],[-126.82839237516566,57.61237551767043],[-126.82865728862764,57.61237722095294],[-126.82887216125894,57.61238932826048],[-126.82921285884827,57.6124096156237],[-126.82957669158681,57.61243536292816],[-126.82986278627904,57.61244814286828],[-126.83002894381045,57.612434766520686],[-126.83032701049682,57.61242056150705],[-126.83068817894699,57.61246762527886],[-126.83102540555348,57.61256865615107],[-126.83128879440855,57.61264436292377],[-126.8315491308291,57.6128198751624],[-126.83173658593974,57.612965573090406],[-126.83190426036784,57.61311588005996],[-126.83194410984224,57.613214294909085],[-126.83200571228727,57.613302482050806],[-126.83210986793311,57.61342067374943],[-126.83221826850544,57.61354220226259],[-126.8323209518226,57.61364134268396],[-126.83235518341847,57.61372185362224],[-126.83242648806937,57.61382231274472],[-126.83253870869355,57.61392699898308],[-126.83268375914244,57.613952994276715],[-126.83265432500565,57.61404287576584],[-126.8327303108789,57.61416572930732],[-126.83294442818776,57.61438077233156],[-126.83325655295772,57.61438665383454],[-126.83344364787813,57.61446732220295],[-126.83364171286092,57.61457146638576],[-126.83383356403829,57.61467789188468],[-126.83396955840267,57.61472076096065],[-126.83418631539763,57.61476984754045],[-126.83447336712634,57.61482521730427],[-126.83468446315364,57.614855278369134],[-126.83493791879114,57.614906374434106],[-126.83514111027009,57.61495778754908],[-126.83544262285575,57.615004094263185],[-126.83564278268315,57.615012920068494],[-126.83581898955957,57.61497929129868],[-126.8359914618215,57.614966988762845],[-126.83617486398613,57.614927708003194],[-126.83644994178125,57.6148676653432],[-126.83668045877906,57.614828085778555],[-126.83690945894948,57.614815424281154],[-126.83733523033938,57.61479927384829],[-126.8375629191697,57.61477428629002],[-126.83773753314586,57.614764210306596],[-126.83789697338507,57.614777775525816],[-126.8381544962117,57.614823233651705],[-126.83834554015077,57.6148455675926],[-126.83854685422776,57.61485886649245],[-126.8387563446455,57.614863143587044],[-126.83902983238615,57.614873741429456],[-126.8393269631255,57.614911097489134],[-126.83953133553005,57.61492101186825],[-126.83970289203998,57.61491431631491],[-126.83996178623248,57.614880156783194],[-126.84029226748797,57.614910571561595],[-126.84052119801436,57.61494163118843],[-126.84075419192226,57.61496705856241],[-126.8410639449963,57.61500769407657],[-126.84143170619772,57.61506702015296],[-126.84160446759455,57.61506704168872],[-126.84176929287712,57.61513438577441],[-126.84190670167823,57.615192934624176],[-126.84206197356201,57.61525473317535],[-126.8423077397067,57.615336136706595],[-126.84262906249445,57.615426027884936],[-126.84279057603516,57.61543845282074],[-126.84302723829582,57.61544030754637],[-126.84319571425013,57.61543586952137],[-126.84338324116067,57.61544140059386],[-126.84370749887499,57.61547408901118],[-126.84400928387532,57.61553270781936],[-126.84422202092574,57.615588530988326],[-126.84444288366328,57.61563308986977],[-126.84470183929707,57.61564825367297],[-126.84488586045754,57.61563698694384],[-126.84496769546286,57.61573849362337],[-126.8449398523591,57.61585191331761],[-126.84514379810933,57.61584164009907],[-126.84553306731145,57.61578533324],[-126.84575963558062,57.61566279383688],[-126.84593906876262,57.615633615703544],[-126.84618696815731,57.61557596899161],[-126.8464227051647,57.61553633896707],[-126.84668316190803,57.61552570155292],[-126.84701621319759,57.61548320479513],[-126.84729823286528,57.615500458154166],[-126.8478616647808,57.615459846190504],[-126.84830080947098,57.61529333313532],[-126.84844633977711,57.615199339201645],[-126.84866720521238,57.615243891010216],[-126.84893660252811,57.61530494890947],[-126.84921778421163,57.61533117319497],[-126.84958284765176,57.61531649446208],[-126.84979395000839,57.6153454102632],[-126.85006438758134,57.615359368550195],[-126.85020411797186,57.6152407434136],[-126.85038786000193,57.61526422818446],[-126.8505455402178,57.61529236519684],[-126.85073240487036,57.61526761754659],[-126.85096319278975,57.61519437506347],[-126.85121822492484,57.61512882452113],[-126.8514069553702,57.615093973046825],[-126.85165385756125,57.61508565551939],[-126.85166659295702,57.615186482017926],[-126.85170997788295,57.61539362566547],[-126.85181503211258,57.6155487965195],[-126.85196308073292,57.615661084411116],[-126.85205283075625,57.61574123289619],[-126.85222948203032,57.61586791186617],[-126.85222294722908,57.6159498020941],[-126.85253273737487,57.61599041066678],[-126.85273729119886,57.616054121473525],[-126.85298950126324,57.616142191069954],[-126.85319993410711,57.61618792393134],[-126.85340814751638,57.616228064752136],[-126.85363137099614,57.616283805240776],[-126.85378236946752,57.61634001179463],[-126.8540028998338,57.61641595080078],[-126.85418964467851,57.61647865324359],[-126.85436161605261,57.61653696606785],[-126.85466843917779,57.61663140686584],[-126.85484113854088,57.61667513867109],[-126.85498069216713,57.61673478152231],[-126.85510336965264,57.616788927342],[-126.85537034768993,57.616881381841736],[-126.85555028435735,57.61692058108561],[-126.85583254577836,57.61699387522734],[-126.85606020097448,57.61710676467079],[-126.85616898442771,57.617194635768975],[-126.85634370589018,57.617234988940396],[-126.85648458886705,57.617167925026884],[-126.85671557996082,57.6171036407327],[-126.85707273961049,57.61715514393795],[-126.85711578238677,57.61725241010187],[-126.85718238438173,57.61751209888823],[-126.85718151395791,57.617843982597805],[-126.85709927210014,57.61823581807381],[-126.85701018065299,57.618601910183465],[-126.85699220274536,57.618918208149466],[-126.85704820491424,57.6193113902634],[-126.857111687973,57.619664160386876],[-126.85715432274122,57.61988252031362],[-126.85718128515455,57.6200101636929],[-126.85720993701531,57.62016582643653],[-126.85721009980638,57.620265613277795],[-126.85721662158461,57.62041469225256],[-126.8572308950197,57.62058278160843],[-126.85719918664542,57.62080162367511],[-126.85714171699304,57.62103857218525],[-126.85712864145253,57.62120123286671],[-126.85714611396077,57.62132557429027],[-126.85725279266318,57.62141233736502],[-126.85736353309176,57.621493467959006],[-126.8575221082751,57.621605682245175],[-126.8577190453574,57.621747920300216],[-126.8578183804122,57.62183360939037],[-126.85796925068702,57.62197614596393],[-126.8580622032086,57.62205739145216],[-126.85826867557256,57.62215808196092],[-126.85844809277609,57.62221970529884],[-126.85859620115697,57.62228601655898],[-126.85882515503572,57.62240786334107],[-126.85889177364953,57.62248255204192],[-126.85901032765102,57.62263090353606],[-126.85913241332715,57.62279605023482],[-126.85924453442955,57.62293771607691],[-126.85937162021514,57.623092739182475],[-126.85946672288907,57.623269273180654],[-126.85959261943128,57.62341757656753],[-126.85963898662845,57.62352266946517],[-126.85967132688246,57.623609914089215],[-126.85977110362329,57.62371465972874],[-126.85983714591266,57.623902594694506],[-126.85985903753681,57.624128938134824],[-126.8598898231265,57.624285708326184],[-126.85988882708374,57.62437989704063],[-126.85983005444238,57.62446661293093],[-126.85975004718132,57.624587103380925],[-126.85966333245976,57.62478051653475],[-126.85958161514415,57.624963806217096],[-126.85951238228692,57.62509768114421],[-126.85943282167553,57.62523722925976],[-126.85936550406313,57.625363243163534],[-126.85931770835812,57.625472311916525],[-126.85924362769738,57.62562303653058],[-126.85917175573182,57.625732261687766],[-126.85910276220564,57.62583025592925],[-126.85903046605713,57.62592154428325],[-126.8588967811123,57.6260760195789],[-126.8587626464105,57.62621143695455],[-126.85866047257116,57.62632422230585],[-126.85853589586377,57.62646518350609],[-126.85842469676528,57.62664193677984],[-126.85856928287987,57.62669033180872],[-126.85878619101084,57.62674162070712],[-126.85905946834986,57.62678469455717],[-126.85920626048423,57.62683868067247],[-126.85921402127681,57.62694963099492],[-126.8592076134523,57.627083097780606],[-126.85946048812922,57.627195819029104],[-126.86010894956597,57.62729587658803],[-126.86070877732672,57.62737494434549],[-126.8609452745587,57.62741264763869],[-126.86109448290141,57.627434100596005],[-126.86141903691065,57.627474593319846],[-126.86175629396467,57.627521729802],[-126.86191932889737,57.627552061504836],[-126.8620594114127,57.62758702751161],[-126.86221003376386,57.627624167098666],[-126.86238117504882,57.62764323317893],[-126.86257234893124,57.62766777448499],[-126.86292747068548,57.627717033929876],[-126.863172008952,57.6277389837147],[-126.86335548755436,57.627747877025016],[-126.86357338712915,57.6277957880672],[-126.86384148432008,57.62784112843228],[-126.86405297220539,57.62779153430026],[-126.864221697933,57.62784200799928],[-126.86438916395151,57.62788351994856],[-126.86463750244549,57.62793459396668],[-126.86486753598955,57.627963362798546],[-126.86517264364045,57.62797818545439],[-126.8653697201128,57.62798586580259],[-126.86558458166279,57.62799230823098],[-126.86584126289996,57.62799623407621],[-126.86603407397203,57.628000577695595],[-126.86621434443431,57.628006124396755],[-126.86637995428444,57.62801176689733],[-126.86656260564165,57.6279836608603],[-126.86687711281067,57.62790535655341],[-126.86715958371825,57.62784632234097],[-126.86731780045213,57.62798655881369],[-126.86750413668696,57.62802794309367],[-126.86776825977348,57.62803630127583],[-126.86801682082434,57.62805148840937],[-126.86823832597884,57.62807358004319],[-126.86840316347974,57.62809155853457],[-126.86860060098154,57.62811492882483],[-126.8689177786902,57.6281532092639],[-126.86918119845531,57.62817614515184],[-126.86936183031463,57.62819738231843],[-126.86950202498535,57.62823682467839],[-126.86981897300899,57.62826501347521],[-126.87018468473445,57.62827269864795],[-126.87050124723629,57.62828407000313],[-126.87073719311293,57.62829709263466],[-126.87092909629656,57.62830704122725],[-126.87132501572603,57.628353767136865],[-126.87165031789151,57.628380775298204],[-126.87210772257045,57.62841363893402],[-126.87248556656137,57.62844814712411],[-126.87273158977041,57.628443160145515],[-126.87291584550796,57.628439701644126],[-126.87307983437415,57.628420679548995],[-126.8732677361898,57.62839365078298],[-126.87358096063284,57.62839606703059],[-126.87400687357847,57.628425768454804],[-126.87429962905827,57.62844962153502],[-126.87447281890232,57.628511265026596],[-126.87464088517763,57.628577427081204],[-126.87497289487992,57.62866829254129],[-126.87530345297961,57.62874122719816],[-126.8754569671267,57.62876712046697],[-126.8757499266837,57.628753968598005],[-126.8759940664818,57.62871310883689],[-126.8762042598763,57.628744231923676],[-126.87641541304863,57.62881683364308],[-126.87664046798467,57.62881085713214],[-126.87685763918155,57.628781386783096],[-126.87702242364861,57.62875114226471],[-126.8773154090382,57.628694258974974],[-126.87754379512249,57.62865125839682],[-126.87771088063687,57.628629967548676],[-126.87789829604033,57.62862760236344],[-126.87824942997989,57.628638725716534],[-126.87849486594054,57.62865391397316],[-126.87877210828962,57.62868570881347],[-126.87898137826096,57.62872243976293],[-126.87913083606611,57.62875396187014],[-126.87931173641753,57.628786395984285],[-126.87952224521403,57.628830966431],[-126.87978982455196,57.6288975814175],[-126.88012494734707,57.6289861709103],[-126.88041601044063,57.62907168921176],[-126.88057235336221,57.62912895208277],[-126.88081237012646,57.62918117262054],[-126.88097304628259,57.62919916325029],[-126.88112816526456,57.62920373599485],[-126.88131364530632,57.62920810623853],[-126.88150031139617,57.62921807444908],[-126.88175415627155,57.629234321877455],[-126.88202016987113,57.62932336739299],[-126.88220702467851,57.62938603100833],[-126.88235954819275,57.629459014463386],[-126.88248062930124,57.62953108633266],[-126.88257968452014,57.62960218386117],[-126.88274441664717,57.62970423733028],[-126.88299391522158,57.62980348223961],[-126.88320702498912,57.629869332885704],[-126.88336293109157,57.62990753460013],[-126.88346557341458,57.63004251752308],[-126.88370033349375,57.63022819415564],[-126.88405055912908,57.63024491444313],[-126.8843098581862,57.63022524128002],[-126.88449007134044,57.63027224899239],[-126.8846533289455,57.63031152128286],[-126.88486597318314,57.63035719033042],[-126.88506623421091,57.63041079050961],[-126.88547733680817,57.630612102342404],[-126.8859392201829,57.630879225324506],[-126.88621174855211,57.63097718888231],[-126.88642080885784,57.63095896944425],[-126.88679760937268,57.630992322848826],[-126.88708035675387,57.63103415465641],[-126.88726417195184,57.631056467464965],[-126.88744559447763,57.631065341320465],[-126.88763015052353,57.631074193897554],[-126.88761430830134,57.63115839243904],[-126.88757324438328,57.63137282290253],[-126.88752048441266,57.63157948326836],[-126.88747395838688,57.63169528217118],[-126.8874064767453,57.6318101004416],[-126.8872609587622,57.63199271603343],[-126.88704680667983,57.6321959739661],[-126.88679954760899,57.63237254401763],[-126.886827637513,57.632454205524695],[-126.88666792605129,57.63252255014899],[-126.88655792235241,57.632700442037326],[-126.88657525430052,57.63285954068138],[-126.88670042296403,57.632970824739346],[-126.88676425337866,57.633057852856226],[-126.88688523875027,57.63325886334615],[-126.88688804084238,57.63342366562831],[-126.88676380369779,57.633486166372876],[-126.88671713234287,57.633595238766056],[-126.88672794514437,57.63374429014428],[-126.88657462116417,57.63390677538772],[-126.88623070690372,57.63416135743621],[-126.88600362356377,57.63448467251484],[-126.88587482985339,57.63471090298137],[-126.88566759251837,57.634852444908674],[-126.88553001263625,57.63492736743763],[-126.88520803232377,57.63508985898397],[-126.88497339301088,57.63526970515813],[-126.88480520012486,57.6354692886771],[-126.88467875291776,57.635617016057054],[-126.8845883620061,57.63569386447676],[-126.88447779056459,57.635758514208185],[-126.88428526903891,57.635813620624766],[-126.88410097492319,57.635996492437975],[-126.88389335319329,57.63630173442498],[-126.88381298614956,57.63644915312646],[-126.88369959777557,57.636618095860584],[-126.88372669207487,57.63688140500701],[-126.88377598638365,57.63706383696843],[-126.8837709284359,57.6372062676221],[-126.88370413186247,57.63735135322888],[-126.88362062096482,57.63745394352271],[-126.88355187852082,57.63756092006911],[-126.88349747630848,57.63769919540885],[-126.8833243372959,57.637776595708836],[-126.88291272129035,57.63796098387665],[-126.88259360291023,57.63811335904649],[-126.88244167068784,57.63820182906163],[-126.88230334650649,57.6382902081423],[-126.88204908809165,57.63843878568309],[-126.88191552133944,57.63850695039222],[-126.88174357107292,57.63859106812775],[-126.88157782666636,57.638671780574846],[-126.881400358924,57.63874360103717],[-126.8812567971574,57.63878716448115],[-126.8810431793117,57.638881650012955],[-126.88083927569217,57.63889870520409],[-126.88061890211219,57.63897305277758],[-126.88046336799397,57.63904248349549],[-126.88031647379415,57.63912306890092],[-126.88014997143303,57.63921611820979],[-126.87994225462594,57.63933971485839],[-126.87970877379749,57.639481422308045],[-126.87955988540007,57.63956650509309],[-126.87944399609192,57.63962894360192],[-126.87928992938893,57.6397163029861],[-126.87910408313961,57.63983414678366],[-126.87892470293052,57.63995979602511],[-126.87876800290076,57.64006959705122],[-126.87858026626498,57.64019642258525],[-126.8784423677655,57.6403038558933],[-126.87831825997026,57.640419046165086],[-126.87809982211999,57.64062231902669],[-126.87789289651245,57.64082551515525],[-126.87772132554521,57.64101726404046],[-126.87763903733506,57.641128812540146],[-126.87755244532103,57.64123478335513],[-126.87747175781587,57.64132501762161],[-126.87736171182227,57.64145917484721],[-126.8772560370544,57.64160115167635],[-126.87718134717757,57.64172386193557],[-126.87708824104058,57.64191060487082],[-126.87699627701049,57.64210182515194],[-126.87694520409644,57.64220419645938],[-126.87686999188685,57.64234933484404],[-126.87681653765222,57.642439388272095],[-126.8766914812175,57.64260391799047],[-126.87653657983726,57.64279219138084],[-126.87644781709214,57.64289593349463],[-126.87631240547397,57.64297531727868],[-126.85902834659046,57.64735610792356],[-126.85848264577614,57.64787542062842],[-126.85098780122547,57.654996641808914],[-126.8489706182728,57.65562179871177],[-126.84515364817867,57.65680672085013],[-126.84733306933761,57.660896563409025],[-126.84733768830809,57.66091559514125],[-126.84736199027574,57.66101747359666],[-126.84743403781904,57.66123902048559],[-126.84750258454399,57.661397799599044],[-126.84757236030103,57.6614713555507],[-126.84763124517458,57.66152591990277],[-126.84765071377801,57.661552705316836],[-126.8476585442738,57.66157508024586],[-126.84765461732277,57.66163341059441],[-126.84764384712135,57.66171420984904],[-126.84765785542453,57.661778031617395],[-126.84768848102553,57.66188211211586],[-126.84772935170615,57.6620220071408],[-126.84776545482748,57.66208905117164],[-126.84781316491657,57.66211341318491],[-126.84786829573977,57.662141091411364],[-126.8478885200458,57.66215441691457],[-126.84791809389792,57.66216431875896],[-126.84797196745791,57.662183034962254],[-126.84799752458173,57.66220081130376],[-126.84796185252786,57.662245890016635],[-126.84788329666048,57.662342821142],[-126.84782638323509,57.66242279478257],[-126.84780442871676,57.662472270614344],[-126.84779740134881,57.66248577068237],[-126.84777711625654,57.66251617448701],[-126.8477405879456,57.66257022867328],[-126.84772020234624,57.66259614809511],[-126.84775331424656,57.66262396740218],[-126.8478293984397,57.662697482917324],[-126.84792663014258,57.662779832969136],[-126.8480140001728,57.66288915626462],[-126.84804558374249,57.66298874564275],[-126.84804323451782,57.66302464086664],[-126.84803441217122,57.66305160751956],[-126.84801756443011,57.663095444420165],[-126.84800864159699,57.66311792669463],[-126.84805109558337,57.66314120107257],[-126.84814648537898,57.6631876826282],[-126.84821020430104,57.66322427576825],[-126.84823023669836,57.66322975367746],[-126.84826096851519,57.66324413306357],[-126.84834848567104,57.66326711856135],[-126.84843624583525,57.66330019374679],[-126.84847440710013,57.66331901048771],[-126.84848728666944,57.66333238299911],[-126.84851276942706,57.66334679597608],[-126.84854507843855,57.663338740071765],[-126.84860031210371,57.663370902404395],[-126.84862633842218,57.66345595100062],[-126.84862527246247,57.6635019293311],[-126.84864548099115,57.663515254843375],[-126.84868919344318,57.66354749101109],[-126.8486970249653,57.663569865920785],[-126.84870151927878,57.66358329217847],[-126.84868021966477,57.66361482391466],[-126.84864126850708,57.66365431761021],[-126.8486116671141,57.66369038758595],[-126.84859557475554,57.66372076467111],[-126.84858675264017,57.66374773137846],[-126.84858839556931,57.66377463099723],[-126.84863121823267,57.66386069320459],[-126.84866505041977,57.66401408844048],[-126.84864785751206,57.66413529438616],[-126.84868283229434,57.66419898178733],[-126.84879041679362,57.6643216302303],[-126.84882485334987,57.664501931794284],[-126.84881094860026,57.66458275147325],[-126.84881784113992,57.664609617449486],[-126.84883175194034,57.664668954883325],[-126.84883874506474,57.664700305245105],[-126.84880937009224,57.664699372351855],[-126.84874968923728,57.66470311880122],[-126.84870793684091,57.66471123530563],[-126.84869136657525,57.664720311603844],[-126.84864791985599,57.664746379069605],[-126.84861485465315,57.66476789493846],[-126.84859335324953,57.66479045792571],[-126.84853583453135,57.66484352574345],[-126.84842792472048,57.66494064556522],[-126.84841253521454,57.665002413366636],[-126.84843582212605,57.665012355431486],[-126.848480374935,57.66503561627646],[-126.84850014748955,57.665075854813324],[-126.84849117301262,57.66514318780123],[-126.84848419443529,57.66520602296797],[-126.84847501887369,57.6652643871885],[-126.84837311233673,57.66534801342107],[-126.84813031403355,57.66546057380294],[-126.84790365628614,57.66559209174577],[-126.84778619144168,57.66568366600042],[-126.84771599096351,57.66573232967612],[-126.8476542766298,57.66578542400892],[-126.84759980777916,57.66583398688897],[-126.84760010901084,57.66584744005995],[-126.8475551661964,57.66590042696171],[-126.84744221880467,57.66600654836266],[-126.8473508740694,57.666094591259395],[-126.84732838980939,57.66612052412671],[-126.84732595610332,57.66615193494467],[-126.84732326878705,57.666219227663426],[-126.84732187493596,57.66625063182829],[-126.8473012110331,57.666264219196464],[-126.84727330133606,57.66628233797299],[-126.8472599584615,57.66629475721836],[-126.84724558403146,57.666308304323316],[-126.84721271739926,57.66633878865899],[-126.84719834293561,57.66635233575955],[-126.84719758738792,57.66636579570036],[-126.84718581123356,57.6664017513473],[-126.8471637532099,57.666446742865254],[-126.84712196223477,57.66649970947107],[-126.84701275029704,57.66663271685896],[-126.84683562284373,57.66682222160338],[-126.8467615369543,57.666978550552194],[-126.8468438005202,57.667047542415716],[-126.84692917058156,57.667067178941636],[-126.8469761224528,57.66710388011341],[-126.84699030722297,57.66717554997059],[-126.84686668252296,57.66722679756408],[-126.84663492100985,57.66722379494766],[-126.84652352768269,57.66721217345606],[-126.84648290021285,57.66727073874512],[-126.84639760217142,57.66739462270182],[-126.84634906429712,57.66747454246943],[-126.84634421554715,57.667492513625696],[-126.8463346350711,57.667532940229876],[-126.84619416086508,57.667673995714736],[-126.84594495920226,57.66787629393802],[-126.84582156397788,57.66803181630212],[-126.84581962992631,57.66808564915476],[-126.84581697765836,57.66810809130785],[-126.8458101566333,57.66822474597378],[-126.84583156412903,57.66843204241202],[-126.84584835269277,57.668620306964826],[-126.84578014832667,57.66875865782555],[-126.84570559131299,57.66884771375659],[-126.84565750569521,57.66890072020131],[-126.84561015933367,57.66894026677359],[-126.84557393537322,57.6689618021099],[-126.84553553131532,57.668978866315456],[-126.84548978054069,57.66899597742997],[-126.84541631743258,57.66904017577196],[-126.84531219716196,57.66911932892966],[-126.84524638074365,57.669176933490874],[-126.84523521621638,57.66919382369309],[-126.84517664615096,57.66924689691144],[-126.84506911564841,57.66936195202726],[-126.84502582253505,57.66944183794565],[-126.8450432217133,57.66946975842807],[-126.84505849920363,57.66949657119068],[-126.84507893495066,57.66951998724043],[-126.84509516909291,57.669542308846744],[-126.84510519654324,57.66956915511937],[-126.84508972464103,57.66962755949823],[-126.84505933682932,57.669721939471074],[-126.84504298326401,57.66978819831386],[-126.84503815037118,57.66980616935448],[-126.8449941002826,57.66989951526937],[-126.84491355480742,57.67009625022294],[-126.84488336638066,57.67019959901884],[-126.84490148044429,57.67021293856763],[-126.84493840673208,57.67022279426581],[-126.84496985759199,57.67022259353811],[-126.84499608328322,57.67022354741551],[-126.8450362464244,57.67023786747713],[-126.84510512428491,57.67026994443304],[-126.84520166854385,57.670320906196054],[-126.84528489313568,57.67038540808838],[-126.84533550179006,57.670444511880554],[-126.84535593822025,57.67046792790856],[-126.84537636640972,57.67049022272379],[-126.84543433059844,57.67055040078058],[-126.84549866033802,57.670613901953246],[-126.84553267922477,57.670682081737596],[-126.84552359796224,57.670744930468004],[-126.8455115183266,57.67076743287641],[-126.8454816997737,57.67079341235826],[-126.84542301063874,57.670842001459846],[-126.84539003843994,57.67086800106037],[-126.84541123140603,57.67087795710106],[-126.84545147052573,57.670895640355695],[-126.84547172370156,57.67091008744172],[-126.84552830633433,57.67095569788538],[-126.8456421149857,57.671074946186124],[-126.84573932549146,57.67120214928329],[-126.84581047331274,57.67128915333804],[-126.84592111403666,57.67131311426013],[-126.8461643660408,57.67131268106807],[-126.84642838530513,57.67130314454989],[-126.84652804934774,57.67130587112939],[-126.84655560843628,57.67131915008125],[-126.84661410593078,57.67135577773502],[-126.84664169016378,57.67137017777333],[-126.84665886571433,57.671388008161614],[-126.84669438226939,57.67142926779975],[-126.84671158295163,57.67144821928596],[-126.84669548576987,57.67147859636273],[-126.84666563891257,57.67155054814206],[-126.84665006829493,57.671604468397206],[-126.84664932922182,57.67161792829442],[-126.84666544810038,57.67163576544411],[-126.84670108198902,57.67168150939871],[-126.84673606046854,57.67174519776817],[-126.84675813213681,57.671794392242816],[-126.8467208125089,57.67186078552543],[-126.84666049120189,57.67197666153867],[-126.84668548735878,57.67206283907045],[-126.84672271688531,57.67208614754054],[-126.8467021248221,57.67210309820342],[-126.84668006290089,57.67214808988326],[-126.84667601625233,57.6722019364744],[-126.84666254221756,57.672255843355074],[-126.84661180151754,57.67233129257685],[-126.84650408279312,57.67243738024838],[-126.84640033982174,57.67253447230127],[-126.84636167795094,57.672587418918425],[-126.8463577850858,57.67260089898642],[-126.84638622637469,57.67260632349914],[-126.84648217654082,57.672630377920584],[-126.84656677803245,57.672662353695735],[-126.84654577244235,57.67270733861963],[-126.84648005195851,57.67276942841028],[-126.84645910465142,57.672817776747756],[-126.8464608635312,57.672849160937126],[-126.84645727155586,57.672876094274464],[-126.84645502050483,57.67291647422656],[-126.8464554096415,57.672980383879775],[-126.84647269546947,57.673096885003694],[-126.84650063769072,57.67326826003982],[-126.84650713839304,57.67337137495301],[-126.84649831254022,57.67339834176722],[-126.84647465420687,57.67346576899157],[-126.84643330206707,57.673586008846414],[-126.8464129439018,57.67370723575986],[-126.84641429403858,57.673814868711574],[-126.84641465804283,57.67387765731302],[-126.84639553117191,57.67391366011605],[-126.84631716441181,57.67401956012513],[-126.8462037340644,57.67415259459843],[-126.84611468102332,57.674249592665454],[-126.84601901915654,57.674333177702394],[-126.84593492357202,57.6744178100449],[-126.8458682592523,57.674484390705786],[-126.84574267466614,57.674589470788554],[-126.84557029990991,57.67471278985481],[-126.84550215176391,57.674760318272895],[-126.8454268359657,57.67476864806472],[-126.84527797572916,57.67477071973517],[-126.84508645585593,57.674834733225225],[-126.84488700899601,57.67496607306686],[-126.84477256978371,57.675054262117804],[-126.84474484433929,57.67508022816017],[-126.84471755840451,57.6750792809711],[-126.84461050563642,57.6751225720587],[-126.84440390363281,57.675168740488516],[-126.84419266353633,57.67514766211142],[-126.84407379974408,57.67513160088685],[-126.84400936791552,57.67515780076472],[-126.84399066994919,57.67516576882296],[-126.84393168889346,57.67520090405939],[-126.843845929878,57.675258635282255],[-126.84378816362981,57.67530161158738],[-126.84372842521356,57.675350206773494],[-126.84364288225991,57.675416906633835],[-126.84359866277508,57.67545643274235],[-126.84357882449572,57.67545992293731],[-126.84349531872103,57.675477273944686],[-126.84338544186882,57.675488065267366],[-126.84330708694696,57.675500898275715],[-126.84321297097185,57.67551271034112],[-126.84300783782763,57.67553083553783],[-126.84272910907359,57.67554045870075],[-126.84265860090825,57.67552969476124],[-126.84197145573032,57.68169208528309],[-126.84642342306662,57.68589764790492],[-126.85445884554684,57.68796303166427],[-126.86132634612038,57.69020597301933],[-126.86630017008143,57.6938334263937],[-126.87297417974689,57.697162467646365],[-126.88377525797439,57.69864273295929],[-126.89166754874525,57.69870646616307],[-126.89348343350055,57.69881981820064],[-126.90137577744508,57.69888297312128],[-126.90672457075725,57.699644844062576],[-126.91770792066322,57.69964098501333],[-126.92996836135342,57.699510641145956],[-126.93223297577956,57.70075059503003],[-126.93175611383248,57.70337333822553],[-126.93356465243878,57.708106026025874],[-126.93672341704516,57.71105299817011],[-126.9425944913628,57.71616051036088],[-126.9470906074885,57.721726164646974],[-126.94892258833403,57.72736462502619],[-126.94893280106785,57.72793868054682],[-126.94706543928272,57.73513763553553],[-126.94697091146654,57.74062846797187],[-126.94793289297473,57.74547484846903],[-126.94847107893841,57.75054855127466],[-126.95161738092126,57.75281361747386],[-126.95599642101601,57.752782134714536],[-126.96637676689238,57.7537385949421],[-126.97208645119164,57.7558768445478],[-126.97333210809246,57.759070381430256],[-126.97396470971007,57.76334495241089],[-126.97520089987832,57.77075501470497],[-126.97839300010789,57.7749031338923],[-126.98086577730963,57.78019586655324],[-126.9781049168145,57.78569769753126],[-126.96995422037915,57.78922939027641],[-126.95572778131996,57.79349524123354],[-126.94124161716714,57.796038903574875],[-126.93214428373456,57.79563655432506],[-126.9206763281814,57.79434393650617],[-126.90603602466611,57.794650959965466],[-126.89259778613241,57.79632986967173],[-126.8793625133619,57.79737808254279],[-126.86734338260574,57.80065088089219],[-126.864631155146,57.80419427709238],[-126.8638419715713,57.807455997392324],[-126.86386462599378,57.80872080789597],[-126.8689827149842,57.81330768437552],[-126.87107062490391,57.81598543389933],[-126.87306573025617,57.819507085340554],[-126.87280409764413,57.82271161621053],[-126.87132805879938,57.8235735917776],[-126.86945556840192,57.82637598854513],[-126.86741521679325,57.83141337339206],[-126.86922679408131,57.83631796228427],[-126.87316153685606,57.84046398245955],[-126.87736977223682,57.842158838681776],[-126.88264149983297,57.84337101328346],[-126.88435943105216,57.843592863038815],[-126.88951801279951,57.84459020115619],[-126.8917025549668,57.84680952781823],[-126.89078806465811,57.849211109848774],[-126.88644146631633,57.851456173949636],[-126.8819951128143,57.85382736403674],[-126.87661815640834,57.85802581820449],[-126.87520522883001,57.86243131471349],[-126.87645433336539,57.86602080797112],[-126.88017063105588,57.86976447411762],[-126.8850428697419,57.87219943980034],[-126.89120764987786,57.87501138315369],[-126.89534935492874,57.87841088956504],[-126.89735685885526,57.88217459942512],[-126.89765943679407,57.886506073957605],[-126.89912938069307,57.89021061140608],[-126.90293546304565,57.892930332149],[-126.90810131624471,57.89392699979645],[-126.9146413209347,57.89377456820995],[-126.91667201849843,57.89352732588056],[-126.92287849721039,57.89298200794562],[-126.92875024188913,57.89294117884732],[-126.93059781408398,57.892928278205176],[-126.93318801001529,57.892919121244326],[-126.93488372461466,57.892907225380064],[-126.93926631813822,57.892364963473746],[-126.94482122524667,57.89130282579111],[-126.95512868135913,57.88735327958257],[-126.9622423221096,57.884278419364655],[-126.96856472068754,57.879387591680874],[-126.97305901628853,57.8743932181642],[-126.97501070714023,57.87061962326584],[-126.97784619597344,57.86814046780559],[-126.9806382446919,57.863723615311024],[-126.98202358034024,57.858689071991776],[-126.98663881331771,57.85449192519099],[-126.99247561301627,57.852232428678086],[-126.99927142564937,57.84973220358621],[-127.00101726365945,57.8465250700232],[-126.9936547467613,57.84309022468669],[-126.99259590750222,57.83904285928638],[-127.00040715880603,57.83413953458597],[-127.00141747555352,57.83173646121718],[-127.00030410972577,57.8251775276319],[-127.00416804949198,57.82126364402915],[-127.00897698470104,57.82094909886407],[-127.01368449828345,57.82097607736394],[-127.01860293031426,57.820821838588],[-127.02382260030194,57.81993838846323],[-127.02678417224257,57.81848006616666],[-127.02783908667232,57.817790061864265],[-127.03174632628895,57.815705265061226],[-127.03941443202416,57.81429077902626],[-127.04883118112805,57.814387245029586],[-127.05588567480487,57.81416988307605],[-127.06067081921144,57.81305516522392],[-127.06972811793446,57.81161885183635],[-127.07518142774335,57.81152100366722],[-127.08288353535187,57.81152125480229],[-127.09226336294745,57.81025123175831],[-127.09778093801103,57.808608784016066],[-127.09948314294563,57.80819097903614],[-127.10411849864228,57.80547895658299],[-127.11061674191893,57.804518642286624],[-127.1229793453221,57.80293436952466],[-127.13564677782779,57.800673452562584],[-127.14954506480215,57.80056286894255],[-127.15039922402988,57.80055547386898],[-127.15660995709425,57.80085143782835],[-127.1637288575698,57.80302324153417],[-127.1667869919519,57.80497022081174],[-127.1662663547529,57.80593141707703],[-127.1687365862537,57.80594335190999],[-127.1734911995487,57.80790777461671],[-127.17760740346723,57.80970162167756],[-127.1806412657888,57.81110123287755],[-127.18794343291795,57.81206791828921],[-127.19962705049393,57.812779392013226],[-127.20550757091426,57.81284280380245],[-127.21962855801016,57.81283954096741],[-127.22470692116757,57.81445265814572],[-127.22941040370189,57.81795319728697],[-127.2351565557748,57.82047491193393],[-127.24170134261374,57.82110477669638],[-127.24277275716577,57.82109476155342],[-127.24768002303577,57.82059119923353],[-127.25419208572504,57.82019792919389],[-127.26033759001267,57.821629172452724],[-127.26246917983272,57.824856886204536],[-127.26086176993012,57.82829954611814],[-127.25760343701553,57.83021459162816],[-127.25318832826032,57.83288516829995],[-127.25006349682424,57.83570497501306],[-127.2500556733743,57.8389620032229],[-127.25214908464858,57.84094313939048],[-127.25424736019372,57.84303187142046],[-127.2562774771824,57.846323524800766],[-127.25697673033088,57.84821010030071],[-127.26057734519011,57.85040118849238],[-127.26829493055786,57.85067774007464],[-127.27654190745226,57.85071547946742],[-127.28560981628013,57.84961423640572],[-127.29174910199629,57.85081090160455],[-127.29499098034653,57.85500545505634],[-127.29150548106779,57.85658263032875],[-127.28642367877177,57.85845331203762],[-127.28341940444618,57.861739389780254],[-127.28332886315037,57.86567028092228],[-127.28415447633019,57.8681208273325],[-127.28426701707703,57.868299194831536],[-127.28557059907916,57.872333297621324],[-127.28437184806226,57.87508155840851],[-127.28311877939066,57.876179349417676],[-127.27822866950282,57.87741978461722],[-127.27559582941302,57.878880687446184],[-127.27526261576247,57.88196154376022],[-127.27312808205734,57.88569671952979],[-127.26717353754417,57.887287888985206],[-127.26574747344154,57.88976001224263],[-127.26885244663322,57.89304144170914],[-127.27144213275231,57.8970724889848],[-127.27382404815192,57.90127598207408],[-127.27117911602849,57.90586850544525],[-127.27054582380454,57.9062693608114],[-127.26563268083399,57.910309132964805],[-127.26153095542831,57.913084821073404],[-127.25768406886051,57.91712318297631],[-127.258143130174,57.92150669507971],[-127.26021852943256,57.92623387664462],[-127.2618391099706,57.930103932790495],[-127.26397048618155,57.933107712934834],[-127.27066820615013,57.934416932996214],[-127.2759852809201,57.93625949891643],[-127.28229079961197,57.938828169501704],[-127.28909473326108,57.940198279244946],[-127.2943918534,57.941349380283086],[-127.302381358555,57.942707307142506],[-127.30931787310558,57.941383076996644],[-127.31520966440146,57.93768186613458],[-127.31603825678616,57.93670455993381],[-127.32172581168406,57.93339093747036],[-127.32795200045297,57.93333801781163],[-127.3362504755382,57.93445751048814],[-127.34526767826321,57.93442961179097],[-127.35387352989875,57.93177605988091],[-127.3532033050993,57.927735853663584],[-127.3526792549004,57.92162133394027],[-127.35713891802575,57.91701752804254],[-127.35850180454212,57.916088359041886],[-127.36514830097428,57.91271823591097],[-127.37694469152346,57.91255194906259],[-127.38226539109277,57.91448892258044],[-127.38727912357136,57.916787825567255],[-127.3926286410698,57.91941505867668],[-127.39566574127659,57.92041522133802],[-127.40449727467208,57.92135435953884],[-127.41481946036126,57.921945077316565],[-127.42552996648186,57.92143607451101],[-127.43346742139936,57.921297067954086],[-127.43775687797036,57.92125084700399],[-127.44737277461257,57.92006990028436],[-127.45522695338117,57.917705051592485],[-127.46318672822902,57.915230892347395],[-127.47257697874929,57.913871115392155],[-127.4787464261455,57.91535520100712],[-127.48592643559017,57.91801226110876],[-127.49266947195473,57.92051232311042],[-127.49963902285951,57.92324282814501],[-127.50278370196887,57.926985348969566],[-127.50128934170438,57.930017387293894],[-127.50150821387588,57.93303909792381],[-127.50394097387363,57.93495899111624],[-127.50691560708476,57.9369804076978],[-127.511537742554,57.940015093493926],[-127.51617686524727,57.943399428740136],[-127.52091955946192,57.946764494559076],[-127.52213607486067,57.947665960580466],[-127.52556771641314,57.950381768789214],[-127.52985658384488,57.95301587653849],[-127.53359085361559,57.955198559483286],[-127.53924214138954,57.95691032558574],[-127.54604042338039,57.95774704607869],[-127.54915999612551,57.957827506469584],[-127.5547896772622,57.95896453184502],[-127.55920656407099,57.96206292386613],[-127.55853652271112,57.964125864451375],[-127.55665772873682,57.96551189736805],[-127.55580234205746,57.968438526406864],[-127.55667624234897,57.971569347520536],[-127.56133879803436,57.97540076325674],[-127.56662510515373,57.975913154029264],[-127.57394230795494,57.976168057885616],[-127.57480406067027,57.9762207096552],[-127.5783553056645,57.97629541144761],[-127.58969015496417,57.977596750584894],[-127.59343141056084,57.979777801575466],[-127.59393392899784,57.98160260580732],[-127.5925040742837,57.983441513618615],[-127.58790856017693,57.98407065102431],[-127.5824407583243,57.98453048486605],[-127.57828682734447,57.985432261656825],[-127.57503348447453,57.98746304897031],[-127.57298500277848,57.99006290882967],[-127.57168250494144,57.99247446696552],[-127.56974862179499,57.995297301092194],[-127.5688531080769,57.99712967757246],[-127.56877172397526,58.00037048078202],[-127.56742380245981,58.00163379217908],[-127.56519680388901,58.00252148883255],[-127.5599737613166,58.00372240399025],[-127.55459327958211,58.00365951892685],[-127.55089581835841,58.002616590796116],[-127.54765647434701,58.00231314688995],[-127.54249020836664,58.00225626791023],[-127.537367448695,58.003338461943045],[-127.53405989279246,58.00400473015056],[-127.53020344583356,58.00449771577148],[-127.52372593461068,58.006626979335095],[-127.52340711616827,58.00680113467821],[-127.51461259156618,58.01032050663936],[-127.5074011109397,58.01313936355165],[-127.5032757354545,58.01500771329021],[-127.50100456802865,58.017546155357486],[-127.50088316093455,58.0233732016744],[-127.50049202820507,58.02351894741575],[-127.49170674176801,58.02869926905401],[-127.48421875186789,58.03640671356574],[-127.48507880227916,58.04077013081225],[-127.4851513623096,58.04078390853306],[-127.48462961003747,58.04322637402463],[-127.48374586674834,58.04409777407366],[-127.48182334460404,58.045994849497774],[-127.4774214356734,58.04930145993871],[-127.47631543817158,58.05147663025523],[-127.47614582494943,58.05558902012384],[-127.47716572728932,58.05700477284728],[-127.47752162739003,58.05786243708128],[-127.4766402803146,58.060259519928245],[-127.47360583429014,58.06268932334669],[-127.47096864451206,58.06426206341624],[-127.46746865495415,58.065781397769825],[-127.46644612762826,58.06727349513578],[-127.46662368009372,58.06921015831114],[-127.46678684607612,58.07075208007856],[-127.46577993990738,58.072701736920266],[-127.46311022930001,58.073359224918036],[-127.46099088645215,58.074351701893896],[-127.45707049060545,58.07621641152348],[-127.4528723782014,58.076369778228724],[-127.4476222682151,58.07722548381988],[-127.44206423510002,58.078542030831265],[-127.44125647632765,58.08008547714808],[-127.44095979133324,58.08083360682327],[-127.4410455514833,58.0832828904286],[-127.44068902446362,58.08534203743881],[-127.43848447892596,58.086909484835],[-127.43714064869651,58.08858433178933],[-127.43657722033136,58.09092393020712],[-127.43328405936035,58.092323474791804],[-127.42761274152387,58.093577801064356],[-127.42219980343104,58.09603181638299],[-127.41870336565172,58.09777421793209],[-127.41166034693133,58.10001171883078],[-127.40429199231818,58.10208173029171],[-127.4024426539276,58.10473086390384],[-127.40459099607367,58.10756247299732],[-127.40538589073692,58.10875681899975],[-127.40678595187977,58.11176679454136],[-127.41060811029533,58.11309980551487],[-127.41278403499733,58.11359743328804],[-127.41749884761708,58.1157106670416],[-127.42179026404827,58.11806160300832],[-127.42461885695664,58.11865981957629],[-127.43437276102848,58.11988406149598],[-127.4382850555833,58.12058706330463],[-127.44328184253258,58.12150265690659],[-127.44599310785911,58.1218773069596],[-127.4489308972311,58.12253666955893],[-127.45321497102667,58.124599507125566],[-127.45685581894323,58.12673204522053],[-127.45942704208868,58.12921722750976],[-127.4595274476976,58.13195370826961],[-127.4624963850062,58.13351899715589],[-127.4652129449327,58.133947071238936],[-127.46738305031396,58.134273369624964],[-127.47315707517228,58.13563713723004],[-127.47579290901811,58.13686473098716],[-127.47717487610343,58.13919217761197],[-127.4813747756945,58.1418295722284],[-127.48468267691544,58.143624029828835],[-127.4865772268501,58.145200727828104],[-127.48773473565625,58.144451859228646],[-127.49359240139367,58.14221453019335],[-127.49956842886935,58.14027182154531],[-127.50811502282474,58.13784216216261],[-127.51323240841181,58.138933368603745],[-127.51686430384254,58.14077723575743],[-127.523106791237,58.14298630272135],[-127.52800408720091,58.14401663418843],[-127.53259876426098,58.14550802870772],[-127.53663887630022,58.146727376236434],[-127.53707429164041,58.14683009465878],[-127.54176718926934,58.14803282727025],[-127.54467890502613,58.1478915818675],[-127.54978470777982,58.148694331596666],[-127.54903214779459,58.14875688951039],[-127.54812759044715,58.15053563215832],[-127.5486741127269,58.15344655436171],[-127.54952076334598,58.155779541442676],[-127.55069100887252,58.15809981108091],[-127.55179817580579,58.158769187752],[-127.55431194756538,58.15953894353016],[-127.55803095977467,58.16069858075214],[-127.564467815268,58.16228421615418],[-127.5671830990323,58.16260257374287],[-127.569432294732,58.16211846943604],[-127.57173243748495,58.16014366892163],[-127.57551642642002,58.15748715454064],[-127.57957669842561,58.156353239468494],[-127.58612392488531,58.15525262485593],[-127.59310290332307,58.154146555760406],[-127.60009787754983,58.15349771867104],[-127.6042080629686,58.153628108318046],[-127.60984571761965,58.15412601415441],[-127.61395668891821,58.1542471204439],[-127.61802972388085,58.153515807617595],[-127.6219465686919,58.1515385511565],[-127.62706324519351,58.14987874044852],[-127.6301079501018,58.15035338832684],[-127.63264039838596,58.15152538862613],[-127.6355786957527,58.15206404644267],[-127.64091320608652,58.153031118334376],[-127.649251578927,58.15350325278277],[-127.6540618217045,58.154925082621745],[-127.65637741313331,58.15604547091222],[-127.6598053921561,58.157834264490326],[-127.66195936908031,58.16025816070673],[-127.6620109761023,58.1615142351327],[-127.66218260530427,58.16305607285278],[-127.66358473147258,58.16555211924189],[-127.66708411357644,58.1665319804749],[-127.67491231730715,58.16763727503151],[-127.68067709676296,58.16848074928609],[-127.68354818797796,58.169934855438974],[-127.68464202626416,58.17272184793588],[-127.68245532891295,58.174742137113704],[-127.6774017595702,58.177830610312355],[-127.67447628372487,58.18283132500599],[-127.67562116639014,58.18429819892862],[-127.67649162441208,58.18445788077098],[-127.6792380012801,58.18545585929393],[-127.6837378570676,58.18699732679721],[-127.68575664356436,58.18868655403044],[-127.68520799146853,58.19109028029118],[-127.68197085562214,58.193752167518895],[-127.67877092938903,58.19481561818453],[-127.67291408143336,58.196944494987505],[-127.67102745182824,58.19839533926718],[-127.67200433692392,58.20106728083939],[-127.67458218477374,58.20314472747222],[-127.6744608564532,58.2053725417244],[-127.66981117897957,58.20806074853808],[-127.66422938388155,58.20909062527664],[-127.65796464575635,58.20933872752468],[-127.65172485346991,58.21015178091858],[-127.65017915147654,58.21205596813336],[-127.65300884890026,58.21492971186918],[-127.65641643915933,58.21626119783767],[-127.66078543132976,58.217239581022675],[-127.66639482962653,58.219396394034945],[-127.66960820367646,58.22369244650726],[-127.67004599781473,58.2288848201495],[-127.67392320057765,58.23352269091963],[-127.67973892969876,58.23784898011994],[-127.68370422032802,58.244532402694745],[-127.68139192487301,58.248726917693865],[-127.6789010988233,58.25126279445145],[-127.67882070619514,58.254468781330395],[-127.68029578463228,58.25604835035671],[-127.6828418487795,58.257327216162345],[-127.68503923718256,58.25798197730957],[-127.68810655602341,58.2588143086618],[-127.69532885768666,58.260491984892255],[-127.69763842206771,58.26126184235545],[-127.70677654978202,58.26457558759009],[-127.7135689540231,58.26877156335797],[-127.71512340716677,58.274578363126246],[-127.7130636053454,58.27956940767958],[-127.7075888594688,58.28328409295603],[-127.70288361247594,58.284825125805995],[-127.69081756602009,58.28913417480474],[-127.68452433748205,58.29418694804702],[-127.68125690485572,58.2989053771231],[-127.68078222287097,58.30050940175725],[-127.67494915422715,58.303652651760906],[-127.66935318521101,58.30475468281773],[-127.66477283445627,58.30417399661147],[-127.66245127359349,58.30317920794734],[-127.65773293111782,58.30186379552274],[-127.65370669442548,58.301572185438964],[-127.65045309347948,58.30160316389074],[-127.64405407304184,58.301627650692005],[-127.6308812860613,58.30052210347916],[-127.62491460423571,58.300477594777746],[-127.61568465718675,58.30023862989503],[-127.60983665371631,58.30047034112162],[-127.60723370517371,58.30050146514369],[-127.60181479640234,58.30061996546753],[-127.5947202845272,58.299564073348876],[-127.59079460286515,58.29903597610342],[-127.58645861097068,58.300088203951454],[-127.58641533806306,58.301075148046486],[-127.5880008897868,58.30256920022572],[-127.59194278725272,58.30376828594889],[-127.59250729029789,58.305097058896635],[-127.59253391457088,58.305719582191074],[-127.59409706833935,58.306679657820176],[-127.59628010238495,58.30629802732781],[-127.59917337353879,58.306709196897685],[-127.59956846275838,58.30684365764032],[-127.60295036168147,58.30799859235702],[-127.60536427346082,58.30903818547919],[-127.60692018284631,58.30981977143445],[-127.6086457400233,58.31060043514038],[-127.60920706406428,58.31183941560894],[-127.60992923194144,58.31289915667042],[-127.61218561954074,58.31420649745304],[-127.6151182715777,58.31550681210599],[-127.61871277278621,58.3164422309456],[-127.61927451991757,58.31768117815447],[-127.6158073010359,58.31968119007549],[-127.6180643548798,58.320989564698685],[-127.62288594154501,58.32288874399265],[-127.6263428817146,58.32453827769708],[-127.62793491148057,58.32612051406499],[-127.6301927820654,58.32742869553004],[-127.63196642313953,58.32927579605475],[-127.63370512782717,58.330323117337315],[-127.63660847433118,58.33091071987445],[-127.6388081528375,58.33088396152636],[-127.64037461522757,58.3318435157239],[-127.64061379098236,58.33344322548135],[-127.63932659346919,58.33497174793486],[-127.63684323571611,58.336247701151926],[-127.63264409445821,58.33701021357847],[-127.62968088129337,58.3389158439218],[-127.62908898673163,58.34088028241719],[-127.62857603802884,58.344624852221926],[-127.62855045152436,58.34791798990205],[-127.62924054280607,58.34967951700162],[-127.63193229869765,58.34964693083627],[-127.63595409491144,58.34972384142754],[-127.64066181850637,58.35058238495429],[-127.64282269209761,58.352890457667456],[-127.64611217010885,58.356271124499884],[-127.64965119597257,58.35772725690765],[-127.65442841513905,58.35766867521278],[-127.65518330470549,58.357542680862],[-127.6593878785822,58.35669186105437],[-127.66415114969169,58.356300895865814],[-127.67048306158335,58.35702162698847],[-127.67433916194416,58.358284640982454],[-127.67595258471225,58.360500271981365],[-127.67257956181744,58.36293052238554],[-127.67079901851984,58.36443410176471],[-127.67354630240024,58.36520809411072],[-127.67769796478814,58.36573110678632],[-127.68424292268365,58.366277973283374],[-127.68892352414896,58.36644385865702],[-127.69395990521535,58.36735933107266],[-127.69726978530771,58.36845799531825],[-127.70236197461955,58.36806154448691],[-127.70433324320055,58.365917617331306],[-127.70422627323038,58.3634677500166],[-127.70409021321514,58.36033587051405],[-127.70699006844518,58.35453479879869],[-127.7176579850802,58.35000859424597],[-127.73020921748748,58.34642705457678],[-127.74094229008199,58.345956526540014],[-127.7439240154418,58.34705825080909],[-127.7478268740798,58.349351119904924],[-127.74928444590589,58.350301908300764],[-127.75081203237451,58.350515509622845],[-127.75244071779335,58.350494329186766],[-127.75589420362897,58.3499914323816],[-127.7592695231302,58.35011798565121],[-127.76106523840075,58.35141441012207],[-127.76220594313004,58.352656532954406],[-127.76293868925018,58.354415785815696],[-127.76455339442091,58.35650468885372],[-127.76585867531305,58.356550437660744],[-127.76726644596009,58.356415250677486],[-127.77063105796303,58.35637106895964],[-127.77401449226271,58.356676734538475],[-127.77577566429476,58.35716533152575],[-127.77724070890261,58.35834021605963],[-127.77815579487792,58.35936072536357],[-127.77957718217237,58.35957541160575],[-127.78120838290727,58.35955385494839],[-127.78599273411398,58.35966111625167],[-127.78938695800808,58.3601817567203],[-127.79272392684459,58.361861374994156],[-127.79277201035276,58.362947203989016],[-127.79039458016423,58.36560071252781],[-127.78846114168952,58.36847276959992],[-127.78759441550315,58.370890680885374],[-127.7872793650767,58.37351677772998],[-127.7868037572361,58.37500465103916],[-127.78733343249078,58.37710774318318],[-127.78567014960863,58.37879094692466],[-127.7847327175931,58.379656390552135],[-127.7840308399582,58.38097665267898],[-127.78407716899675,58.382008654904396],[-127.7850242947044,58.383702180076696],[-127.78624920003111,58.38665810736476],[-127.78676062965039,58.38831250801421],[-127.78852588748077,58.38891765702129],[-127.79315215204633,58.39016719721726],[-127.79873832668292,58.39100868803886],[-127.80294458205631,58.39266758108102],[-127.8023531719185,58.39398648809757],[-127.80284688180204,58.39523701391134],[-127.80355403088774,58.39636795241623],[-127.80384209893786,58.4002522293348],[-127.80419171275749,58.403156928189155],[-127.80643025679828,58.40450084117374],[-127.80833839632437,58.40577731459444],[-127.81147072978438,58.40756712870275],[-127.81382239553469,58.40902615002496],[-127.8152606525559,58.41186234370605],[-127.81486664873847,58.412774595333296],[-127.81845805130827,58.41273521271195],[-127.82215375577071,58.412685345912976],[-127.82635021102587,58.41165878726274],[-127.82886956278385,58.40968503312442],[-127.8339245234561,58.40842210000127],[-127.83770360236832,58.407795964870196],[-127.83898758338988,58.407329479245284],[-127.84383970348605,58.40641016459359],[-127.84735375544184,58.404763688530494],[-127.84758812448611,58.40287473713381],[-127.84853637813022,58.40217928587176],[-127.85144776971357,58.40162750666314],[-127.85326162981151,58.40085727782749],[-127.8527665789342,58.39961590191575],[-127.85437351062572,58.39907299332025],[-127.85661460407914,58.39818908752016],[-127.85900831077694,58.398156110718354],[-127.86842449432493,58.39946273346596],[-127.8838027558846,58.400227591572104],[-127.89116214575121,58.40166912183041],[-127.89602018131957,58.403145448777636],[-127.90381427814933,58.40680721972543],[-127.91374818783912,58.41625731038582],[-127.91583994862475,58.41897553476592],[-127.91686164438194,58.41976025480833],[-127.91816436664172,58.419687860342584],[-127.92107178376455,58.419071766987706],[-127.9234502273454,58.41875949687201],[-127.92789095061579,58.41829201019529],[-127.93512506947854,58.41716470813018],[-127.94417832078926,58.41750152305333],[-127.94856684242791,58.42034780796262],[-127.95027885498234,58.42409478870546],[-127.95180524398182,58.426299837356346],[-127.95372327710847,58.42764607470162],[-127.95557692163607,58.42772699086697],[-127.95720415785057,58.42753277425085],[-127.961833903685,58.42655853248318],[-127.96539391004212,58.42594096791566],[-127.97365129520368,58.42553307973064],[-127.978358212494,58.426038902497915],[-127.9844501275344,58.428005978382416],[-127.98811126348228,58.42937998919813],[-127.9951035652679,58.431908096510895],[-127.99877728572766,58.43346126173857],[-128.0001981525995,58.43523633060743],[-128.00242431021587,58.4401875758114],[-128.00455110863805,58.442535892725225],[-128.00649922405876,58.443000891465225],[-128.01207746305607,58.442010816435165],[-128.0181076303827,58.440043834372325],[-128.02152281125402,58.43811576498816],[-128.02767042855018,58.435634689283596],[-128.03215453276349,58.434633259245714],[-128.0379343268389,58.43415096359805],[-128.0471039698546,58.43288960655137],[-128.05987014192198,58.431465005844636],[-128.06868298841584,58.43168046257004],[-128.07704185748423,58.43280939855688],[-128.07975640527835,58.43334237152479],[-128.0822996481761,58.431183673724],[-128.08901261555476,58.42738880021584],[-128.09603996918224,58.423992843427506],[-128.09801366305896,58.423315550616245],[-128.11108896251682,58.422464991100824],[-128.11866676050425,58.4245644997111],[-128.11963984080776,58.424962340030916],[-128.1271575506639,58.424538687513035],[-128.13935336396747,58.42413931520565],[-128.14392581567327,58.42416553327978],[-128.15739529412127,58.425594382449994],[-128.16193096826146,58.42766827376583],[-128.1626812527741,58.4283657603084],[-128.17184229158602,58.42732051769504],[-128.1782613070689,58.427342790819324],[-128.18795756505727,58.42681769502138],[-128.20088261239812,58.4286372732596],[-128.20163586349472,58.42904710663512],[-128.2104794701346,58.427357750370845],[-128.22422729477927,58.425129006965165],[-128.22609995885958,58.42348148563558],[-128.2315942806327,58.42002272943642],[-128.24555166202524,58.4180667235622],[-128.25881516278986,58.418869179017825],[-128.2619710417875,58.41887019161267],[-128.273131232627,58.41451522713407],[-128.28308297992297,58.41061088723344],[-128.28647325373657,58.409529577353155],[-128.28998389457746,58.40708994469108],[-128.30410808962446,58.39999656545219],[-128.30678067952286,58.3950829750876],[-128.30158988523146,58.392845529232616],[-128.29499806586801,58.38985039149274],[-128.293294639269,58.38687067744251],[-128.2913541562413,58.38578102999365],[-128.28420899519486,58.38357618839187],[-128.28065070649257,58.38151690652528],[-128.28036698392972,58.3782526033924],[-128.27844826782894,58.37544705526716],[-128.27834792255675,58.37487396822209],[-128.27761302357723,58.372928538204505],[-128.27536096723648,58.37064051986601],[-128.27062711744807,58.367415406092704],[-128.26889684794472,58.36690570296624],[-128.26761950052568,58.36478078530803],[-128.26572231187012,58.36060070744883],[-128.26240011377251,58.35750430010439],[-128.2608116876255,58.354468547630425],[-128.2614288828169,58.34915959263473],[-128.2620249751594,58.34533281822901],[-128.26512954822172,58.340718492777015],[-128.2781677259367,58.332128624858896],[-128.2862512852528,58.328156887533154],[-128.29009636296385,58.32485853746366],[-128.2962610267422,58.31808100325486],[-128.30143683002032,58.312155299961084],[-128.30736540977233,58.30657571622916],[-128.30923993359866,58.30423559864116],[-128.31404583246731,58.30144992249956],[-128.31658278236347,58.29826313710116],[-128.31630293677142,58.29443337379587],[-128.31234161634802,58.290361660425795],[-128.30752267830252,58.28572087764634],[-128.30456319186314,58.279647214502845],[-128.299321810898,58.27437590097292],[-128.29827008293208,58.27203215753635],[-128.30231343872117,58.269242029132045],[-128.30678371629972,58.267091005331714],[-128.30812462794984,58.26377234934809],[-128.30403433687613,58.26182207312761],[-128.29723712631775,58.25973839702287],[-128.29636930674906,58.25962751451475],[-128.29772087802522,58.25579697328036],[-128.30026627293282,58.25151496599962],[-128.3005415319868,58.24689467642552],[-128.30156914244816,58.24278233878076],[-128.3017312916332,58.23855913187545],[-128.30162860654116,58.23832742204154],[-128.2916252740788,58.233317307904436],[-128.28992272043808,58.231029645349636],[-128.286549200426,58.22438848207557],[-128.2892062203343,58.21947637081014],[-128.29044827586367,58.215486311461994],[-128.29423178771714,58.207555823358646],[-128.30273823969378,58.20221111634966],[-128.3033928920468,58.20175091661075],[-128.316961974282,58.19751250921422],[-128.33172864945476,58.192587418495485],[-128.3350962670274,58.19122683905505],[-128.3449630696522,58.18869314146834],[-128.3513947135557,58.18413579014287],[-128.35735938274075,58.182262151808516],[-128.36613861898383,58.18006024607843],[-128.3759842725234,58.179176773985404],[-128.38246298746338,58.179708321494346],[-128.38937555164333,58.18018693224253],[-128.3917476129862,58.18064748596491],[-128.3992055099401,58.18072077287396],[-128.40256637436232,58.17987040392795],[-128.404846912511,58.17862627676635],[-128.40681335123872,58.17645389009485],[-128.40890534327633,58.172456405076346],[-128.41207915379533,58.16829576515321],[-128.4137339879908,58.164638325302455],[-128.41790418830246,58.15790949878367],[-128.41966295809874,58.15470807610742],[-128.42445273902732,58.15055390164838],[-128.4266121815524,58.150559703573926],[-128.43036457801085,58.153885847801504],[-128.43830876504114,58.15904830517608],[-128.44433301009238,58.16202747183714],[-128.45080539869426,58.16295986199929],[-128.4660400498799,58.162590606090035],[-128.47069065607334,58.16208291225444],[-128.4813951619942,58.16056514097647],[-128.48832902301484,58.15776963442167],[-128.48844595701155,58.156860526646064],[-128.49311230131113,58.15378359154964],[-128.49454969823148,58.149383804025405],[-128.49457945844082,58.14532451908808],[-128.4945618499224,58.14509250318451],[-128.52504245892186,58.13149996825234],[-128.52775903234541,58.130288118867576],[-128.53869057828965,58.136564548325694],[-128.54466407546352,58.13999364410144],[-128.54845832952907,58.14569319935894],[-128.55419930438137,58.154314457161156],[-128.55503658369605,58.15557138625817],[-128.5557601279364,58.15496267206446],[-128.55550715918875,58.15479126760561],[-128.55559526879284,58.15460325532039],[-128.55568089410426,58.15454998802358],[-128.55570393671064,58.15454505858273],[-128.55585640897675,58.15456796724753],[-128.56534694354858,58.157376901628794],[-128.5678172689098,58.15954762947709],[-128.57038684917327,58.16389855787779],[-128.57350465780118,58.16744869961036],[-128.57543619672606,58.169791319130276],[-128.57790781361354,58.17265336396841],[-128.57939395466755,58.17808471653368],[-128.580231400173,58.18351061895554],[-128.57900713418695,58.190484912909625],[-128.5779090308425,58.19379282768997],[-128.57887715503966,58.19482491819116],[-128.58243690517762,58.19694764146023],[-128.58651940885244,58.20203273683213],[-128.58984288247333,58.20826396279743],[-128.59307031149788,58.212269833997944],[-128.59738801110117,58.214449448042295],[-128.60213271294086,58.21770732506588],[-128.60525173287982,58.22217311000394],[-128.60761996141062,58.225423074288656],[-128.61302148250246,58.228173944097726],[-128.61625196533063,58.23182911725364],[-128.6220999297787,58.23092470111363],[-128.63292166192974,58.23155710749269],[-128.63735151526066,58.233796242304656],[-128.63831086268388,58.23842959062792],[-128.6352704324206,58.24116566600926],[-128.63450833046306,58.242078731802415],[-128.63753130034175,58.244650866900415],[-128.6406577786638,58.24882855199991],[-128.64335321537612,58.25271829987698],[-128.64625677649678,58.258660650221984],[-128.64701501528083,58.25946301601276],[-128.65578437939078,58.26043956372929],[-128.66531655698176,58.26164291821805],[-128.67484261226812,58.26410314818945],[-128.67765075314998,58.2674781762937],[-128.6806773382928,58.27188170204242],[-128.68273323859898,58.27176882220143],[-128.6914035617369,58.27124516799176],[-128.6985542752935,58.27142510503246],[-128.71144883943532,58.27366249030083],[-128.7134003489039,58.27113513759672],[-128.71709134000022,58.26691096525282],[-128.7231613836517,58.262800167563746],[-128.72630369815133,58.26188317034287],[-128.73388558864698,58.26050757245914],[-128.74179678833747,58.25919667158714],[-128.7512195503926,58.25913875233757],[-128.7539270179843,58.258508436108926],[-128.75620146433099,58.25571333778357],[-128.7610735921982,58.25342170339223],[-128.77006401908199,58.25387430579274],[-128.7767806197005,58.25495716391367],[-128.78317174359927,58.25610033192668],[-128.78707091725002,58.25421410336457],[-128.78804197633087,58.250897564461425],[-128.78977054630218,58.248095228318626],[-128.79345368348467,58.24791986593546],[-128.80179228056383,58.24842879010754],[-128.81121492298303,58.24985763089476],[-128.81479049095284,58.25082466169424],[-128.82172231155837,58.25161334610784],[-128.82735397813119,58.25218653689298],[-128.8366749170002,58.2543523236822],[-128.84469503064773,58.257766642179014],[-128.84871127248516,58.26022353493028],[-128.85532295140226,58.26193354166126],[-128.85998453779624,58.26289431103113],[-128.86713753505572,58.264089218374686],[-128.87732415228402,58.26470681565242],[-128.8780833052555,58.264708520128885],[-128.87763586339705,58.26099933160489],[-128.87643191384691,58.25733330927443],[-128.8751213306132,58.25391210553355],[-128.87370098774542,58.25070883404917],[-128.87379652072926,58.2467096337556],[-128.87487020048044,58.24362367412989],[-128.87756581038553,58.2409880070486],[-128.88080949675887,58.23852915519647],[-128.88307401736003,58.23669306783429],[-128.88371319356898,58.233787045281204],[-128.88283444619444,58.22955731950848],[-128.88281375369695,58.22435707585962],[-128.87641751399073,58.22047032735132],[-128.87489278271585,58.21779041574324],[-128.87304026823074,58.213851055536416],[-128.87206449879397,58.213566557893984],[-128.8742270746287,58.212936419331925],[-128.88039781452756,58.21372923717493],[-128.88689090168995,58.21469448426649],[-128.895547054081,58.21501994428099],[-128.89900693915152,58.21444223548008],[-128.9002980056147,58.21295922752486],[-128.90028791812549,58.20976181191154],[-128.89962903734855,58.207871851625086],[-128.90080740423736,58.20484636636796],[-128.9008064184885,58.204505069789064],[-128.90501933363504,58.20294982333733],[-128.91161575577416,58.203453510756226],[-128.91303155347296,58.20551560362781],[-128.914451241351,58.20853869612005],[-128.91488686731455,58.20940050194224],[-128.9177020955489,58.20996805827447],[-128.92257157510826,58.21006865921472],[-128.92754151711375,58.20914291636472],[-128.93110814500727,58.20833747596811],[-128.93457235569582,58.20924979132398],[-128.9367459176212,58.21135797969336],[-128.938923211154,58.213699602589124],[-128.9389238653582,58.213924146884246],[-128.9447684640791,58.21432595858511],[-128.95267158557817,58.21539184615071],[-128.95993354045396,58.21754932383584],[-128.96546485531195,58.219879427342214],[-128.97251970882044,58.223639753460304],[-128.97719931593605,58.22768601592048],[-128.97872133131995,58.22928709925881],[-128.98435080864252,58.229332721605225],[-128.99106439631777,58.2299468179737],[-129.00212102484133,58.23209839852736],[-129.00906224094,58.23401803074175],[-129.0117731509881,58.23487349651854],[-129.0174175278443,58.236920626908905],[-129.0223080922733,58.23947857905232],[-129.02317530061345,58.23970159677366],[-129.02848217337598,58.239977247912435],[-129.03758399957692,58.24075977186878],[-129.0490893315654,58.24421803170778],[-129.05845160577795,58.25007783672402],[-129.06324635796096,58.25366971742411],[-129.06368025632625,58.25383948884966],[-129.06723530523777,58.25165621827536],[-129.07455514830883,58.246772525722726],[-129.08708295470603,58.243143238839366],[-129.0941146909035,58.242720855416806],[-129.11816767386168,58.24390721108919],[-129.1399529617963,58.246184466454835],[-129.14831953641718,58.2487825273573],[-129.1574536134239,58.25207179019928],[-129.1612614620255,58.25359932105755],[-129.17037841862046,58.255055433861564],[-129.17969891267808,58.25587724092442],[-129.1917789326797,58.26046013244447],[-129.19943683274036,58.266369297186635],[-129.20458272995202,58.27075680445551],[-129.2154177587437,58.27906017372795],[-129.22786451471964,58.285751846287475],[-129.23678179867312,58.287891398975376],[-129.2464658568953,58.2904790863597],[-129.25343296748576,58.292511940431005],[-129.26202023105105,58.293966053533275],[-129.27080614877892,58.294381522804855],[-129.27795948899103,58.29411743427537],[-129.28978241072517,58.29435874348362],[-129.29815687287373,58.295977539452885],[-129.30044085757797,58.29642465932066],[-129.30478941746543,58.29715346088805],[-129.30805824815198,58.29816028764769],[-129.31036806273465,58.30032281033013],[-129.312012057199,58.30140549246956],[-129.31714589038853,58.303606151858254],[-129.31758419032704,58.303828959287515],[-129.3202248921562,58.30638753185669],[-129.3232981061184,58.30854900447916],[-129.32756240585118,58.31065399859388],[-129.33356622477493,58.312958380964105],[-129.33967999532655,58.315277761590444],[-129.34447673285527,58.31684788532914],[-129.3493759459901,58.31757063695408],[-129.35645876532604,58.319424873168565],[-129.35819925049321,58.319812752162804],[-129.3677824868908,58.321765720771204],[-129.37399646217688,58.323335311559816],[-129.37736299216868,58.32354737149655],[-129.38407516981553,58.32254298705511],[-129.39153084159705,58.32078265966092],[-129.40480698909946,58.31694268376506],[-129.41992054328043,58.31280302301405],[-129.42778154778335,58.30967339649109],[-129.4313037746794,58.30662711995664],[-129.43921133840587,58.30046727222865],[-129.44135148143837,58.29896573956282],[-129.44439981459865,58.29398125225589],[-129.44689959045866,58.288705248612175],[-129.44785135472702,58.287332928609764],[-129.45480873984255,58.28289486766376],[-129.4594289435309,58.28080806027197],[-129.46999429154081,58.27800155970977],[-129.4742676029758,58.27489876313982],[-129.475646607897,58.273398365807836],[-129.47677676016627,58.27042169698132],[-129.48104067977877,58.26695947791313],[-129.48618819533198,58.264309886178744],[-129.48907628918616,58.26245565700198],[-129.49444711601615,58.26031213456119],[-129.49820854008112,58.25892021797839],[-129.4988289008841,58.25743034528424],[-129.50725820210417,58.25651853084745],[-129.51470890492118,58.25544308690156],[-129.5217157130561,58.25380374940422],[-129.52657260117434,58.252975355778496],[-129.53159399745044,58.2499138829388],[-129.53500510193444,58.24737088901003],[-129.54115683209682,58.24647189837279],[-129.54550616419726,58.24724673892775],[-129.54967503981797,58.24957185375857],[-129.55144435963518,58.25126840463213],[-129.55364161430822,58.25257618860506],[-129.5608252513802,58.2542370655797],[-129.5651856245119,58.25546932649239],[-129.56900532556423,58.25669785367784],[-129.5764198974575,58.25888201267054],[-129.58372755049098,58.26094283197365],[-129.59047696457986,58.26232623161981],[-129.59331094180783,58.26310417230594],[-129.59969767899034,58.262834286896414],[-129.60218139636493,58.262480116484454],[-129.6032760667138,58.26298096979928],[-129.60367151004246,58.2659000503644],[-129.60580695676214,58.26914090382895],[-129.6066008928366,58.27062039417441],[-129.60881604726305,58.27266383328872],[-129.61495189061003,58.27541961811957],[-129.61778960627277,58.276143072731095],[-129.62116840979374,58.277031628480984],[-129.624439981899,58.27786907509811],[-129.6290619725728,58.280584231568355],[-129.63138359951407,58.28250766358159],[-129.63438947272493,58.28574266733713],[-129.63431992744864,58.28722743899185],[-129.63004478025678,58.28977852372376],[-129.6258596600605,58.29157210934744],[-129.62241359318514,58.292518818065005],[-129.61776997885323,58.29323704593863],[-129.61107423843808,58.29442366723318],[-129.60701612134295,58.296914223514],[-129.60720692731732,58.30051295930269],[-129.60766652133722,58.30599182013129],[-129.60791559215912,58.30736018784854],[-129.6067049163151,58.31114036637089],[-129.60343254200603,58.314939854609875],[-129.59635649782012,58.318589381007136],[-129.58865867220106,58.32355826569655],[-129.580985791371,58.329550577199406],[-129.57767738895654,58.33197530504398],[-129.5686734863371,58.3369507454304],[-129.55985556759208,58.34077923947581],[-129.55392885952736,58.34276030922581],[-129.5540183225036,58.346703385099154],[-129.55408086816843,58.34955971685122],[-129.54981990216342,58.3532401450683],[-129.54641368084307,58.356295763205445],[-129.54513825967075,58.35750670536836],[-129.54423372605615,58.36093675596494],[-129.54069770101265,58.367995073132626],[-129.53857406055295,58.3702887791329],[-129.53299475759272,58.37346404409832],[-129.5265298492788,58.37608705399925],[-129.52267163345698,58.37861463420792],[-129.5215483331198,58.381942423652255],[-129.52235099042647,58.38381781292082],[-129.52317319166667,58.386789179270025],[-129.52299095774433,58.38833082526858],[-129.52240885435558,58.39159057870917],[-129.52134379327686,58.39765813356249],[-129.52125944042362,58.40388884407705],[-129.52126613313052,58.40423020490898],[-129.5213778616898,58.409323375486466],[-129.52275807215239,58.4128555003835],[-129.52498642488038,58.41517905607546],[-129.52774099835182,58.41676079742225],[-129.5345417960162,58.41924315084105],[-129.5314364547352,58.4215984826743],[-129.52789633085496,58.42390219763325],[-129.52499724293125,58.425640791171595],[-129.5209025382933,58.427662201135256],[-129.51810134464625,58.42894868097109],[-129.5171360717723,58.429692897913064],[-129.5116061994023,58.430753755409995],[-129.50216141879005,58.43183518662118],[-129.49791770462645,58.43203517778227],[-129.49373484652307,58.42966291604943],[-129.48839190360292,58.42928889292954],[-129.48114049088807,58.43116594595931],[-129.47528357567992,58.43239550518889],[-129.47427241700353,58.430749821789966],[-129.47177952233773,58.425906698874996],[-129.469052651016,58.42026070756503],[-129.46891615138549,58.4188351863285],[-129.46260572407488,58.41887154475805],[-129.45693575678007,58.41833396325953],[-129.44996107071358,58.41768573508714],[-129.4485264648862,58.41677874634835],[-129.44881664483177,58.41494687048373],[-129.44820927994272,58.41163705602522],[-129.44631011539073,58.40907927355375],[-129.44463806007968,58.40702795415963],[-129.44094714246708,58.4017298437742],[-129.43970352511454,58.39939794298514],[-129.4387807253883,58.39659950979173],[-129.43555651348288,58.39284422816907],[-129.43377664854106,58.39080458502663],[-129.43355062763692,58.39039693845297],[-129.42821690067927,58.39002946365867],[-129.42168890403713,58.389844890875366],[-129.41235405230069,58.39057588515998],[-129.41045977367745,58.38812547437456],[-129.40661932705797,58.38637132485232],[-129.40104487472786,58.38457997953342],[-129.3923441727741,58.384394921712016],[-129.3894074568293,58.38440592320549],[-129.38290224228302,58.38524341547796],[-129.37474889442288,58.38527713005534],[-129.37191913419153,58.38512331023449],[-129.36096500654298,58.38661018836681],[-129.3570699162302,58.387713785519445],[-129.34926413097128,58.38906729441165],[-129.33742099125865,58.38957680737347],[-129.32514436529584,58.390158874438505],[-129.31276192937307,58.39084126586005],[-129.29389224711295,58.394071572412415],[-129.27945354431347,58.395672763604864],[-129.25973849132987,58.4011293371954],[-129.25184973132866,58.40464474053592],[-129.24915183152422,58.406201489989556],[-129.24669954690043,58.40981010066116],[-129.24286778182912,58.415941034139344],[-129.24129500649698,58.42029224145391],[-129.24135614876002,58.42469405367919],[-129.24206731510395,58.4289724333293],[-129.24396264955118,58.432287780327975],[-129.24672050975082,58.434953317068064],[-129.25001890885952,58.43729126912908],[-129.25376069842775,58.44018461957053],[-129.2562970511182,58.442459948494836],[-129.25511977785544,58.44389026207513],[-129.25144998520983,58.44619842299753],[-129.24548730055034,58.44804939986343],[-129.2397276157285,58.449041505426855],[-129.2388563956991,58.44905342865906],[-129.23265416953288,58.449471719065286],[-129.23014129475155,58.4487949865859],[-129.2270672160984,58.446864534986695],[-129.2211485866273,58.44403141747144],[-129.21918979945622,58.44397930718627],[-129.21832847456335,58.444844572897374],[-129.2150033937206,58.448967713016685],[-129.21023936679438,58.45098623109693],[-129.20502575338344,58.452260390378235],[-129.19904670099913,58.452914450613875],[-129.19380375267062,58.451852405853366],[-129.19195195580332,58.451914181906496],[-129.19034205051435,58.453803428511264],[-129.18580946635677,58.45719049301412],[-129.18515946473536,58.45742150337721],[-129.1780972987569,58.45910663208572],[-129.17103620078976,58.46089919086699],[-129.16779327839203,58.46279953997412],[-129.1654283893239,58.46572164212097],[-129.1637290782135,58.469436886773465],[-129.16050902042463,58.4739066285101],[-129.15858256440748,58.47723173833346],[-129.1512765503575,58.47673739722922],[-129.14178825221373,58.476086760124616],[-129.13579286216753,58.47610926388954],[-129.13067529135853,58.47674918286045],[-129.12951363968926,58.479957247871155],[-129.12770311731688,58.48413288746642],[-129.12568058093515,58.48876273968574],[-129.12395231788005,58.49037532743591],[-129.12257124093065,58.49374120715912],[-129.1212951030075,58.49700580682615],[-129.11935839473563,58.49975544863145],[-129.11687219929894,58.50193361665852],[-129.11720408135008,58.50244717916616],[-129.11907363483584,58.50387783634299],[-129.1196311336773,58.50506916534512],[-129.12084622729907,58.50661376279005],[-129.12424678713865,58.508314553787216],[-129.12556429241886,58.50911086572461],[-129.12689835967086,58.51139856660551],[-129.127573478396,58.513279136218436],[-129.12879409592728,58.515389727164695],[-129.1292604513054,58.518074952302605],[-129.12926846529857,58.51898242835724],[-129.1295991204028,58.519325259212486],[-129.13051281671483,58.52309653227857],[-129.13043152006816,58.52595622430386],[-129.12893965675528,58.529100198899485],[-129.12832051925668,58.53270028856334],[-129.12922296810302,58.53544738814923],[-129.13185077594184,58.53629425794455],[-129.13261550563854,58.53629452506075],[-129.13578774301274,58.53679619526766],[-129.1443182761445,58.53796421630048],[-129.1478180062937,58.538700651838305],[-129.1523060343829,58.53982738375905],[-129.15462063206513,58.54165174614077],[-129.15442134832563,58.54353471132046],[-129.15164511453273,58.54902767647778],[-129.15026318863917,58.55217842775594],[-129.15030534428954,58.556293622526894],[-129.1504488859229,58.559327997854496],[-129.15025006893057,58.56109414666593],[-129.14697946258664,58.561673515042536],[-129.14065376610955,58.56266523713852],[-129.13498935496776,58.56451311394208],[-129.13216916668614,58.566241047265656],[-129.1309834221951,58.567724422269436],[-129.12718582664834,58.570598266029066],[-129.11019258930628,58.57602256288759],[-129.1096477854852,58.5760260873901],[-129.10091343635352,58.57708016874292],[-129.09580602406334,58.580234720795346],[-129.09615789256546,58.58268919785567],[-129.0968524935582,58.586807496248234],[-129.09491979342718,58.59058143271057],[-129.09166408093915,58.593217183892705],[-129.0862225906998,58.59609139853375],[-129.08187725539253,58.59912919498142],[-129.0749062052491,58.602298354659425],[-129.06421053770268,58.60534469878296],[-129.0625751251406,58.605696225830584],[-129.05645840919564,58.606688116400235],[-129.0483812779326,58.60893712710355],[-129.04292317789262,58.61020117146953],[-129.03570939026133,58.611306601520816],[-129.0305785681338,58.612922298044644],[-129.02227344399583,58.61419518866375],[-129.01439222250883,58.61393030192545],[-129.00946952681804,58.613994745749665],[-129.00761515180218,58.61479981554209],[-128.9997541356529,58.61772408132334],[-128.99517269813288,58.61928130455265],[-128.99978301556996,58.62172276069307],[-129.00505288377366,58.62405959252394],[-129.0095548879853,58.62588303218506],[-129.01405512615662,58.62787713676055],[-129.0193231671643,58.629458567112934],[-129.02327469996175,58.63088042492732],[-129.02437644378224,58.632132084600734],[-129.02493773592116,58.63396200945007],[-129.02702987503042,58.635667904406034],[-129.02956357286035,58.63748973976091],[-129.03089222051764,58.63954518574232],[-129.03222228872212,58.641537682254956],[-129.03333196002256,58.6433104101723],[-129.03490093124785,58.64816464634743],[-129.03579720262746,58.65050838169424],[-129.03558030225403,58.65079185640969],[-129.02670276348937,58.650298125346815],[-129.02243255730465,58.650312427181674],[-129.0143318646915,58.65089708348935],[-129.0063441968904,58.652170796469],[-128.99836369958564,58.65436061010931],[-128.99541586988926,58.65579183500652],[-128.98688898034916,58.65900861486643],[-128.984279276186,58.661645479688644],[-128.98418148066062,58.66393948585293],[-128.98277368324287,58.66622634107466],[-128.97566668020488,58.669384215299424],[-128.96757898790216,58.67265302195315],[-128.96124573703614,58.677006540906596],[-128.95972207457032,58.67861261459755],[-128.95928306146175,58.67883788889265],[-128.9540296751779,58.680048781670536],[-128.95106825246071,58.679996334411875],[-128.9428470439394,58.679662460082326],[-128.9395528240564,58.679329370671255],[-128.93143735154004,58.67813870228387],[-128.92441812308007,58.67718459391945],[-128.91652354948695,58.67719262316519],[-128.9115983784283,58.67868239639198],[-128.91117021065014,58.680686799653245],[-128.90975729999673,58.68326054859637],[-128.9077879462484,58.6846328846589],[-128.90143727326435,58.68646735227288],[-128.89551967904922,58.68761821884464],[-128.89398559527726,58.68796547827299],[-128.89080953961633,58.689911502947375],[-128.88632639848413,58.69260423349465],[-128.88107317040436,58.69587037365473],[-128.87855644215477,58.6980447837188],[-128.8777975139757,58.70021787564872],[-128.87900908110058,58.701863897972046],[-128.88142802996754,58.70387078434478],[-128.88538854144966,58.706438099997605],[-128.88615648241193,58.706835224923346],[-128.891649750404,58.70860586172366],[-128.89439274085277,58.70928446165195],[-128.8981368678568,58.71259306647098],[-128.89803617001013,58.71430290297254],[-128.8970544106288,58.71641800421708],[-128.89760964394594,58.71767345947272],[-128.90069174181568,58.72001648167384],[-128.90223229432397,58.7212688747641],[-128.9034448166239,58.72241141773063],[-128.90520758393924,58.72423427151708],[-128.90873876743947,58.72846403963183],[-128.91061425386275,58.73125515572765],[-128.91061823123124,58.73194715650284],[-128.90425845496227,58.733781898873964],[-128.90283246980687,58.73412693213128],[-128.89658204186694,58.73585111334077],[-128.8894518979646,58.7379711934644],[-128.88506575154764,58.73992484926964],[-128.88078956871763,58.74181311331037],[-128.8772695477733,58.73970352462311],[-128.87166321415484,58.737709834738034],[-128.86836594226375,58.736853658473514],[-128.8640830241705,58.73674619287633],[-128.85859475401745,58.73766159564712],[-128.85310839370868,58.73870256328036],[-128.84805976843157,58.74012960666202],[-128.84422201858652,58.74247487193082],[-128.84192247036157,58.745740618910624],[-128.84115992772286,58.74807544261758],[-128.83644013632752,58.74905475842578],[-128.83325539618272,58.75065806640834],[-128.8336998924562,58.752320572800514],[-128.83556859830654,58.75351299394301],[-128.8367825825938,58.755626838976106],[-128.83315723231476,58.756088863847495],[-128.82722528116133,58.75569095032067],[-128.8241456122524,58.75569199332139],[-128.81953147823276,58.75472711067972],[-128.8145869729308,58.75323862626007],[-128.81216962130836,58.752560595283214],[-128.8045872982846,58.751018411279055],[-128.79525076397002,58.75142627310732],[-128.78690435373568,58.75280186464634],[-128.78525483307874,58.7527996929209],[-128.78635442767128,58.75451181681044],[-128.7871250669672,58.75691375031007],[-128.78690751016703,58.75914718762034],[-128.78657673751283,58.760627968959035],[-128.78713125378883,58.76331297582943],[-128.78812102211745,58.764739754564644],[-128.78977136389815,58.76668328032206],[-128.79251790754194,58.76982667573035],[-128.79285202932203,58.773316162828486],[-128.78977511456605,58.774511751007275],[-128.78504767278594,58.77468045700759],[-128.779994851863,58.774577015232566],[-128.7762553967785,58.773889352814344],[-128.77284908407836,58.77366217890815],[-128.7686710465244,58.77372025726306],[-128.76273343575727,58.77337352275452],[-128.75712959622595,58.771725520044654],[-128.7522926796887,58.77155377261825],[-128.74756627915025,58.77229637976518],[-128.74657954625033,58.772469085859825],[-128.73954288545312,58.77263784837509],[-128.73547591093765,58.77253089475822],[-128.73239988758965,58.77166693814222],[-128.72327947457933,58.76949494089482],[-128.71547798128591,58.768356589678284],[-128.70899534548334,58.768584632048345],[-128.70239946702105,58.768580936529624],[-128.6983324188915,58.76777186044991],[-128.69537012529716,58.76561064657966],[-128.68977066948347,58.76434634659923],[-128.68284770496297,58.76423134703678],[-128.67779205870926,58.76474433371726],[-128.67460708865755,58.76342290980343],[-128.67098580703356,58.76239757640994],[-128.66922465268632,58.76217149865532],[-128.66351496712386,58.76130375457718],[-128.65780236636405,58.761020004280084],[-128.65340530227542,58.76164504230961],[-128.65098267461576,58.76330096872261],[-128.64822742730524,58.76563736728802],[-128.6460209484,58.768322534576946],[-128.64304058615434,58.7713552282736],[-128.64226794411277,58.77215212284859],[-128.64138320639563,58.77444308277075],[-128.6410474262808,58.77684022950713],[-128.6412519482017,58.779748170632665],[-128.64113972712488,58.780954658987625],[-128.63969447176092,58.785575262154566],[-128.6382531689513,58.78861399657052],[-128.63483216267846,58.792544852293574],[-128.63053039108772,58.79540514901165],[-128.6297590709269,58.79562675639813],[-128.62204329784004,58.79973900500373],[-128.61498314214379,58.80424266593993],[-128.61012639262006,58.80829932340361],[-128.60394127985268,58.81337882837917],[-128.6013944786933,58.81633946860741],[-128.59862980775424,58.81948397399497],[-128.59597885843235,58.82119721583173],[-128.5916723910994,58.82421814878963],[-128.58802179132758,58.82775677269394],[-128.58780005520472,58.828219357563476],[-128.58107449519562,58.829919714006664],[-128.57600125417017,58.831453705582504],[-128.57235808323523,58.83316724858513],[-128.5720181816588,58.83505210302985],[-128.572007986696,58.83682288884272],[-128.5716654383623,58.83899541146429],[-128.57164797877903,58.84179095896611],[-128.57086635689762,58.84407962698222],[-128.56920054642669,58.846762446855145],[-128.56709203236215,58.84887835698918],[-128.56565573291962,58.84989405343606],[-128.5608004005446,58.85132449353367],[-128.5555038152234,58.85286189088307],[-128.5514167219104,58.85434051050059],[-128.55019779258703,58.85582833529319],[-128.55106767319322,58.85742091560843],[-128.55248948961915,58.85925483452255],[-128.55379997198366,58.86102791385095],[-128.55511221520223,58.862917799236186],[-128.55554212085897,58.864860159341575],[-128.55509508448498,58.86600102977518],[-128.55309490250625,58.8686270406278],[-128.55087483171386,58.87085267048604],[-128.54976289851973,58.87256322024729],[-128.5497539799381,58.873884647050104],[-128.55172211839874,58.876679148615956],[-128.55302878182727,58.87943208204355],[-128.55344880199516,58.88257012490033],[-128.5532073686007,58.885765495170496],[-128.55032458634165,58.88862374017341],[-128.54944152771955,58.88890988233297],[-128.54657098245647,58.889017380183525],[-128.54149798617215,58.889237736883665],[-128.5404970357693,58.8900922795422],[-128.541474142049,58.89272566378371],[-128.54101629353042,58.89558350640124],[-128.53735973630413,58.89797050528279],[-128.53481191199936,58.89950989635969],[-128.5320432814636,58.90121512505584],[-128.52729278503557,58.902237905583156],[-128.52276141285796,58.90326545912658],[-128.51878424063818,58.90388715032851],[-128.5185498865617,58.90565320488577],[-128.51842705310878,58.907543045871044],[-128.51840763556598,58.910401743602726],[-128.51828160279817,58.91262423193777],[-128.51209060488614,58.91433816073544],[-128.5041209964769,58.91728887297381],[-128.49692168401978,58.92030593408775],[-128.49360665169877,58.92122037653698],[-128.48851994189303,58.9218344341902],[-128.48476266207146,58.922567951260255],[-128.48055441031434,58.92404660744954],[-128.47467768706272,58.927397999230564],[-128.4716762032599,58.92974438775083],[-128.47000031811908,58.93173418808561],[-128.46954780802085,58.933054696680976],[-128.4704174392602,58.93454008025498],[-128.47194765994726,58.93659778164869],[-128.47346644122467,58.939914098724365],[-128.4752074038629,58.94294774720334],[-128.47498520803228,58.94311356670237],[-128.476283732458,58.9462630934498],[-128.47681562997212,58.94842875278204],[-128.4767954245195,58.951404426554866],[-128.4753398933253,58.95351619695924],[-128.47532607458524,58.95506253736352],[-128.47574592956184,58.957401047779655],[-128.47727328065304,58.959863337868725],[-128.47793364051066,58.96026487081933],[-128.4816829028086,58.961356487159456],[-128.4863183304717,58.96217122134964],[-128.49293856535436,58.96343506031],[-128.49823588045388,58.964533981563086],[-128.4994496953349,58.964700583076564],[-128.50308965341645,58.96562284266411],[-128.50506741134066,58.96734852570932],[-128.5054943697955,58.969237432947935],[-128.50558818972064,58.97179765099459],[-128.50534956331362,58.97397742606761],[-128.50365829561395,58.978143464779436],[-128.49977209222467,58.98036295587201],[-128.49600437859905,58.98126772822291],[-128.4919117829441,58.98137825876218],[-128.48869860400123,58.982227782352574],[-128.48459650431388,58.983479908725094],[-128.48270618578715,58.98489856569048],[-128.48281497068183,58.98507637939355],[-128.4846797310928,58.986849405154004],[-128.4839716803295,58.99221994253877],[-128.48395421943698,58.99439570842457],[-128.48304135679433,58.9978102950049],[-128.48169610159036,58.9999831795406],[-128.48136054154025,59.00050166436066],[-128.46910777046585,59.007177627606964],[-128.46613928205198,59.01127642851499],[-128.46805306845422,59.01500862517847],[-128.47057592448695,59.021372831161806],[-128.46494337193545,59.02557362208503],[-128.44448263292895,59.032943189177686],[-128.43858407320823,59.033767452451094],[-128.43252620564144,59.031843414890254],[-128.4242504538643,59.029904439784055],[-128.41281750525232,59.03978812562087],[-128.41264792842122,59.04236219170555],[-128.41633790819526,59.045983041074265],[-128.4325609310829,59.064907951466296],[-128.43282721241522,59.06782505372159],[-128.42933953714294,59.069855727203766],[-128.4230821799115,59.07153968567791],[-128.4190281645868,59.074029607484945],[-128.41861426879032,59.0775161498133],[-128.42039731718586,59.082042822060004],[-128.42683593609388,59.09203441856338],[-128.42969414632063,59.09834022052622],[-128.45587473999842,59.110911120729],[-128.48631797079136,59.106569099484766],[-128.501808727147,59.09927472250628],[-128.50932462113929,59.09594574678492],[-128.51592349074792,59.093927863249924],[-128.51925376864943,59.093992657069926],[-128.52332366347503,59.09619263264331],[-128.52765043431324,59.10221799297453],[-128.52598449555146,59.107760246910935],[-128.52132341750107,59.11288100157042],[-128.51413099541324,59.11668129490004],[-128.503933672755,59.12050904133955],[-128.4955272087138,59.12361116362205],[-128.4776286153223,59.13889672032137],[-128.48998210606945,59.14416727335827],[-128.49723813916214,59.14844152967424],[-128.5041460656975,59.15356702925864],[-128.50673154338045,59.157755051388044],[-128.5109254143082,59.159665729122764],[-128.51262602803482,59.163627074331075],[-128.5090751409373,59.16858353776182],[-128.517071117806,59.17514552262041],[-128.52543216611346,59.174848398082034],[-128.53525947785255,59.1793076157101],[-128.5434469147918,59.18220488479527],[-128.555889376724,59.18415945343041],[-128.56274281529124,59.187053443168395],[-128.56470441931273,59.18940890756565],[-128.5675141141929,59.19411359397748],[-128.56993227386556,59.20190109678681],[-128.55737464115717,59.20566911738955],[-128.55566510649345,59.20760732907105],[-128.55314401246596,59.21119726356229],[-128.5493916555306,59.21495385082158],[-128.53815181062808,59.21953200774221],[-128.52860849520866,59.22268419738371],[-128.52075984340485,59.22458167797051],[-128.51012891218681,59.22618770658043],[-128.50519132096107,59.22764450880336],[-128.50291403407687,59.22992512370329],[-128.5045011940082,59.23415890522941],[-128.50985538453583,59.23973603760091],[-128.51196761017133,59.240147197739866],[-128.52089085832026,59.24037093319513],[-128.5398813742517,59.23943762628123],[-128.54876908522093,59.24160274599379],[-128.55518333615447,59.24472153006718],[-128.55836674669328,59.247477379334825],[-128.57841916154393,59.26800477702049],[-128.58779084939812,59.274799434278926],[-128.59499053468218,59.27815379830297],[-128.60648682739796,59.27883641516109],[-128.62070882812327,59.27695696547015],[-128.64306919175078,59.27608053674673],[-128.651333573466,59.2763536217703],[-128.66418718010638,59.276006972716985],[-128.67641043155137,59.27302703135331],[-128.68774991189704,59.26946958913795],[-128.69279861285472,59.26788702343306],[-128.70622210628989,59.266571865258854],[-128.71930023634638,59.26581984865346],[-128.72625402999637,59.26378469830372],[-128.73353281203322,59.26238134733501],[-128.73999922764685,59.263035489968516],[-128.7446977877918,59.270830223721696],[-128.75020809051037,59.27651298383211],[-128.7603646284447,59.28570064345354],[-128.76662223621005,59.28578215922362],[-128.77153439412413,59.28631319422959],[-128.7765130888828,59.29016187410412],[-128.7819393852845,59.29424426321864],[-128.79042516307624,59.29512533050043],[-128.79306162262023,59.298912937696166],[-128.7932296603424,59.30348812976937],[-128.7877290046476,59.30523650072596],[-128.77810447472373,59.305781394838455],[-128.7774232468393,59.306694632967044],[-128.79338881924446,59.31812944394599],[-128.7937811360567,59.32253832417768],[-128.80055589778527,59.326674007479106],[-128.80051636761888,59.330111171089676],[-128.80338298451127,59.33377725955641],[-128.80277723307296,59.33766675778898],[-128.8043111432763,59.34046932823647],[-128.80876374949426,59.34260085997626],[-128.8125507082576,59.34409810728538],[-128.813861232086,59.34702211879722],[-128.81776504595214,59.35818775195705],[-128.82322583610556,59.36037934852015],[-128.82353873347634,59.362604044173565],[-128.82091536948826,59.36671496986311],[-128.82156119384678,59.36894189373106],[-128.82591626381793,59.37032834955485],[-128.83217200013337,59.37206260278374],[-128.83494613151763,59.37453377432491],[-128.8352393235778,59.378306336605334],[-128.83981250011192,59.380434662778086],[-128.84640574393745,59.3819994778782],[-128.84880031752706,59.3888147324257],[-128.85135679017463,59.39082233767747],[-128.85378978227064,59.39414601208485],[-128.85406502109376,59.41073997571223],[-128.85604121160674,59.41497290381507],[-128.86268937254496,59.42323011508765],[-128.861085247189,59.42635841033885],[-128.8661562576749,59.43547604540775],[-128.8564803904567,59.437736443534234],[-128.84669788751157,59.439188555448],[-128.83670037104238,59.43978959800649],[-128.82804154345004,59.441199354516456],[-128.82039015438875,59.442606042571754],[-128.8126369830607,59.44315060508986],[-128.80565651758266,59.44490273741104],[-128.7917982249753,59.4488627250657],[-128.7825480458682,59.452377910935084],[-128.7730549774529,59.45686905743189],[-128.7662554242265,59.46153073490577],[-128.75968524155786,59.465800617291315],[-128.75447450198445,59.4688644899285],[-128.749069805515,59.46970960128819],[-128.7395404228603,59.46824273864886],[-128.73382027728556,59.46752791925204],[-128.72515582937714,59.4684723419438],[-128.7154660420941,59.470318057099455],[-128.70272347802705,59.47336531306726],[-128.68894455402557,59.47788006323549],[-128.681936145414,59.480652067991834],[-128.6770592622239,59.48326560530083],[-128.67553452697516,59.48743387843511],[-128.67545038878504,59.49275305731087],[-128.67437219434393,59.496930755754015],[-128.6682413295445,59.50055791957668],[-128.6656310614963,59.501994873072064],[-128.6388425239995,59.51673126763908],[-128.63126952098753,59.518872572034816],[-128.6220108554261,59.52065840551799],[-128.59390797917257,59.52516345654868],[-128.5868962481493,59.527129840782706],[-128.5605710748092,59.53232369581557],[-128.55347208058637,59.53257141384763],[-128.5435635357502,59.532798287821365],[-128.53304895987586,59.53503297304395],[-128.51641588716225,59.539123395060074],[-128.50115563954836,59.54207137010233],[-128.48740469152202,59.54267825157035],[-128.47435882827818,59.5419215865267],[-128.46941408998973,59.54137978285236],[-128.45609970454566,59.54267759100409],[-128.43268110154926,59.547399495665296],[-128.42966682140377,59.551150170897934],[-128.43165338957795,59.55785449707632],[-128.43435614710017,59.56279180889092],[-128.42732698658946,59.56469630040782],[-128.41258680684768,59.563747335532774],[-128.4100243300929,59.5721415452937],[-128.39760841064154,59.577610899035726],[-128.38239221661348,59.57751261705575],[-128.37773094920055,59.57914001426769],[-128.37172632371636,59.584884103721244],[-128.36863675817477,59.59126216409573],[-128.36860114933958,59.597273306587276],[-128.3722076976714,59.60187275312531],[-128.38048360172223,59.60478168496089],[-128.3893059890434,59.6086075838814],[-128.39149573372222,59.611197419653934],[-128.38951975978713,59.613759862899535],[-128.38356380097255,59.61732633598521],[-128.39321236733267,59.619671249781966],[-128.399482315876,59.621767876628304],[-128.4059107688569,59.62678600322761],[-128.41530947046078,59.635135890708796],[-128.42235022274846,59.64313043709419],[-128.39868026843547,59.645789894331415],[-128.38773598503343,59.650009428361365],[-128.3671336720687,59.66074573466424],[-128.35132127069576,59.660410605334285],[-128.3480849806605,59.65878242167896],[-128.3376731788782,59.6506517800204],[-128.32957532709042,59.64065518813711],[-128.31482440003987,59.63048123594191],[-128.30221096105038,59.62501263894195],[-128.2794567526169,59.61913363015349],[-128.26763818021877,59.61802204030142],[-128.2575487302636,59.61960773189267],[-128.24648098157508,59.62381782675202],[-128.23309826708984,59.625949713433194],[-128.21513334634574,59.63026776146352],[-128.19706370829843,59.63418920824639],[-128.17992728510816,59.63703193526954],[-128.1698459040089,59.63803519982485],[-128.16116142990816,59.6376214132097],[-128.14783889466347,59.6340305893384],[-128.12663602331364,59.6296774191301],[-128.1099139168369,59.62312993173052],[-128.09424069158484,59.61572809716023],[-128.08202937333638,59.609622463576585],[-128.07498137227722,59.59096956306662],[-128.07473804302967,59.584846553720965],[-128.0674015341083,59.5784334360298],[-128.05736782477874,59.57177211263944],[-128.0465067294648,59.56641782006556],[-128.03541262727958,59.56460161438421],[-128.02377321926122,59.56551826647551],[-128.01167969206656,59.56655745835637],[-128.00263682734197,59.56321563652372],[-127.99937820800666,59.561949162506785],[-127.99295915083493,59.561798482897686],[-127.97239154825134,59.562244859605],[-127.9606874297383,59.56488431425666],[-127.94964583363941,59.5700862720284],[-127.94076951805935,59.57605777456817],[-127.93420679263018,59.58359784519917],[-127.9327680744472,59.58988806686134],[-127.93023175610553,59.594016509919044],[-127.92438588891258,59.59710222126872],[-127.91761611431099,59.5996246751556],[-127.90899492033482,59.60376454098096],[-127.8997082804711,59.608254820354325],[-127.88305221820521,59.61168389019142],[-127.86157381764315,59.61269258702114],[-127.84859259803997,59.61202900356474],[-127.83555510793258,59.60981763691261],[-127.83067493265008,59.60575276752255],[-127.82433674560721,59.5988012378242],[-127.81328263725923,59.59211800377617],[-127.80819968876624,59.59304776647183],[-127.80601323829339,59.593444998123424],[-127.80318183640972,59.59609948347737],[-127.803010963044,59.597585994152375],[-127.80063324187572,59.60039648315273],[-127.7976135050132,59.60407883692075],[-127.7954618231223,59.60689533428758],[-127.79440500838433,59.60884308226432],[-127.79283818452018,59.60914215247832],[-127.78866642416608,59.60906990074309],[-127.78552057421773,59.60933520202138],[-127.78132554290387,59.61176388344852],[-127.77838129495335,59.614527304449275],[-127.77476773855872,59.61747013135564],[-127.76598625281585,59.620919344014226],[-127.75703416261562,59.622651917939386],[-127.75101574246608,59.62465290232361],[-127.74991011832421,59.62522455864278],[-127.74965329339614,59.62762972856931],[-127.74970441562152,59.629113437151084],[-127.75113748030842,59.634744987607505],[-127.75140956594767,59.639311641332014],[-127.75036771709027,59.64177172546984],[-127.74815829550988,59.64315791800615],[-127.74472767714568,59.6450091966643],[-127.73816655956638,59.647754147529014],[-127.73442112873659,59.65030182430793],[-127.73515795361182,59.65206493665335],[-127.73864826476152,59.655224149321484],[-127.74088708676588,59.658057075944704],[-127.74405019945819,59.661454200046194],[-127.74520833608784,59.665542158411924],[-127.7472447328789,59.66906133541563],[-127.75216866294427,59.67106876646764],[-127.76140554540503,59.673903287363906],[-127.76505326767439,59.67494576106605],[-127.7700763804654,59.676501501910764],[-127.77512060291717,59.67867759307699],[-127.77794338156163,59.681898531442194],[-127.78008519032981,59.684957189711994],[-127.78283605571045,59.689321634484784],[-127.79076427383195,59.69325079003012],[-127.79191411794176,59.69380284646865],[-127.79169403130265,59.69705369690985],[-127.79047017684142,59.700776321287464],[-127.78740840276338,59.70360478364319],[-127.7875193759672,59.706680485489485],[-127.79089761723468,59.709615326934944],[-127.79530868697442,59.71288772863819],[-127.79461777398096,59.715631891546984],[-127.79246393802303,59.71861080775633],[-127.79188712344433,59.72147048651272],[-127.79089956842363,59.72547816568702],[-127.79090608250523,59.73192053432963],[-127.79229758804689,59.73613170176348],[-127.79593303127899,59.742878495300594],[-127.80062189024207,59.74746114775587],[-127.80576127273493,59.75197488472555],[-127.81012185091058,59.75677753148329],[-127.80913072502233,59.76060569231501],[-127.80301509642126,59.763573259267076],[-127.79949948816763,59.76651609605509],[-127.8037624669143,59.771788266709095],[-127.80609188843701,59.77359389559072],[-127.8104221457231,59.77747928268749],[-127.81517631320237,59.78370776178548],[-127.81545587075264,59.79135319576014],[-127.8145960577135,59.79256122181431],[-127.81077941184722,59.79664226117126],[-127.80494741750123,59.801433175296985],[-127.79856648713894,59.806743882001406],[-127.79389601816949,59.80917964804138],[-127.78505724373612,59.81234345893785],[-127.77119622948757,59.817838199307],[-127.76392029189363,59.82371667448951],[-127.76063816951142,59.827114775043185],[-127.75654026262008,59.82994709062469],[-127.74643131424013,59.83266544307303],[-127.73776608040762,59.83468118431382],[-127.72858006048665,59.83807073627243],[-127.719870630428,59.84208379727895],[-127.7177081897127,59.84867103420253],[-127.71426818713815,59.85434698422047],[-127.70465545791721,59.85876619778226],[-127.69591582170438,59.85866530720397],[-127.68881063568581,59.856618238696164],[-127.68260554950638,59.85421802985628],[-127.67186579948626,59.851916780458296],[-127.66218068125498,59.85068215626707],[-127.66133472066458,59.85616391397257],[-127.66204253748612,59.86054733114407],[-127.66658595842095,59.864273217899395],[-127.6744854920875,59.866257954441686],[-127.67878006716373,59.86931149458199],[-127.67994215431366,59.87357251667778],[-127.6778966139526,59.87696301419065],[-127.67467480345593,59.8792155578433],[-127.67179429327199,59.881463961021694],[-127.67209139631822,59.88722047985109],[-127.67520348865654,59.89204342504615],[-127.67654087520629,59.89830064440764],[-127.67742365388689,59.900918195547035],[-127.68851194889334,59.89603288903639],[-127.7022557111261,59.89597468012933],[-127.71834967799971,59.898172451895846],[-127.73890582305498,59.907801673534586],[-127.7427978629373,59.91529601532871],[-127.74410994009436,59.923605564133986],[-127.74525599269201,59.933753544662565],[-127.7425382878244,59.93748681496175],[-127.73445019499954,59.940521414165865],[-127.72780524158581,59.94246663755033],[-127.72545239505156,59.94362074203644],[-127.72119212629603,59.948857812220176],[-127.72161969666331,59.95466748820463],[-127.7232004876454,59.97124709027911],[-127.72785486102738,59.98084891782212],[-127.73015237781816,59.99480088072238],[-127.72921450744029,60.00008774269539],[-127.83695030774581,60.00039669357853],[-128.21274421336733,60.00082850831405],[-128.60000443831964,60.000222043389314],[-129.04946329943564,59.99818170561853],[-130.5757127976026,59.99849900310536],[-131.10858430939257,59.99832095540589],[-131.64519199267133,59.99793065931641],[-132.401868786655,59.99820120570144],[-133.8152138884425,59.99823536432027],[-134.61141543137754,59.99825384329495],[-134.88893986000426,60.00223207902473],[-136.85245544825068,59.998100714803826],[-136.8525138428472,59.99813259695702],[-136.85271877549943,59.998273737209786],[-136.8528867023421,59.998388160867286],[-136.8531101813402,59.99853810251911],[-136.85327931637147,59.99867861285752],[-136.8534302856142,59.99881143020442],[-136.853581255982,59.99894424742384],[-136.85374971038604,59.99906773603051],[-136.85388336289992,59.99921783693228],[-136.85396495228864,59.99938792525693],[-136.85400399452462,59.99945432379811],[-136.8547873274981,59.99945256023924],[-136.86748476713188,59.99944397466532],[-136.8772832921283,59.9994360781467],[-136.882708045242,59.99943413323806],[-136.90077714143783,59.99950308115904],[-136.90252164489766,59.999505619172865],[-136.91751899623156,59.99956203895059],[-136.92958339463783,59.99961561349746],[-136.95238665457555,59.99969396945919],[-136.96619141476282,59.999758020127445],[-136.98475988989935,59.999830446396906],[-137.01673478839737,59.99995223986842],[-137.06582308380894,60.000145865483084],[-137.06690498883847,60.000146558926154],[-137.08479579599586,60.00021630792415],[-137.09759933578044,60.00026507475413],[-137.10149914809526,60.00028379815265],[-137.10344087382023,60.000288645607135],[-137.1168001750727,60.00034949847624],[-137.13880671148306,60.00043842103358],[-137.1641956182461,60.00054586460544],[-137.1658554347975,60.00055078158205],[-137.17895085049213,60.00060409540123],[-137.19977086208326,60.00069889005438],[-137.2106221797305,60.00074268678734],[-137.2407236960236,60.00075579690932],[-137.24773340968153,60.000762360205584],[-137.25806237106804,60.000766031301424],[-137.26687673496278,60.000768310577506],[-137.31323635056742,60.000772638919905],[-137.32212457264953,60.000768878942395],[-137.34487931241839,60.0007625453201],[-137.36368674266646,60.00075416257739],[-137.38337315103658,60.000742138789995],[-137.38585615720567,60.00074218948078],[-137.3991645781273,60.00075192009021],[-137.41984840134376,60.000756924118505],[-137.46049753065793,60.0007690176007],[-137.53143872767154,60.00074781059956],[-137.59338718041136,60.000776849419246],[-137.691473784337,60.00078075667107],[-137.73632080576837,60.00072112486642],[-137.7950257749444,60.00073949169065],[-137.8572857946129,60.000741072278934],[-137.90044106285703,60.000720590239084],[-137.94490249655576,60.0007243192707],[-138.00055589632382,60.000894630848805],[-139.06222268537968,59.99960626795072],[-139.05474258161965,59.99477494149259],[-138.79946803276445,59.92458414530065],[-138.70829136507103,59.90626090861531],[-138.68035425358914,59.845302064853946],[-138.66954084133107,59.80959169152114],[-138.62707311555823,59.76851112390613],[-138.03533359143978,59.46682692316017],[-138.02337320526902,59.46063863363388],[-138.00054763550798,59.44883147336357],[-137.9640030559676,59.42990691385635],[-137.95810132920448,59.42684636993442],[-137.60786433361432,59.24377693667323],[-137.54260385795482,59.106405444137856],[-137.50551571115636,58.999985876057416],[-137.5004445446074,58.98538057427455],[-137.52655512722964,58.90635443654343],[-137.45214973220433,58.908340410692624],[-137.28327152730355,58.999985476058846],[-137.28324224286112,58.999999282880815],[-137.17601874133885,59.03215159278435],[-137.08495190982785,59.062768332828796],[-137.037322165369,59.07873034018619],[-136.97000636449678,59.10124436247577],[-136.87705120067898,59.136163900292914],[-136.8290371263821,59.1599655723572],[-136.5847225717385,59.16585737008533],[-136.4899878644698,59.259764237909735],[-136.4960456867097,59.27511668086155],[-136.46953352199088,59.284063443822426],[-136.47261627039612,59.31800599873637],[-136.47298534444522,59.32199462417102],[-136.4776805124054,59.37620804775663],[-136.4774407607405,59.46580504207704],[-136.37407408466976,59.44980548184178],[-136.37271732863843,59.44959536648623],[-136.36851764091554,59.44894402909803],[-136.3627780882405,59.45035559261219],[-136.36221559441748,59.45049110010231],[-136.3623108203597,59.45050892048723],[-136.36259648657995,59.45058169355219],[-136.36288188003223,59.45064199105563],[-136.36311252056282,59.45071095529952],[-136.36341791710402,59.45084244727605],[-136.36357898325727,59.4508996111184],[-136.3637784929015,59.45101862965542],[-136.36395915439874,59.45113793159531],[-136.36410663477568,59.45128472376667],[-136.36416655858366,59.45144606205861],[-136.3642082605997,59.451615588604646],[-136.36426818540951,59.451776926943914],[-136.36430797359068,59.45192047044157],[-136.36431288608765,59.452028017652495],[-136.36431569420571,59.4520993723114],[-136.3643554273462,59.45222928840775],[-136.36439811991883,59.45237715719652],[-136.3644558317993,59.45252503082678],[-136.36449757666963,59.45266388331471],[-136.36457352680287,59.45279788771966],[-136.36464993895302,59.452948896956386],[-136.36476197858846,59.453109718623196],[-136.36485531370326,59.45324809362235],[-136.3649679124609,59.45340887323259],[-136.36513278944534,59.45356003550519],[-136.3653330842931,59.45369717031682],[-136.3655322448857,59.45382075869471],[-136.36573092307145,59.45395801498315],[-136.36587723007258,59.4540776322878],[-136.36605871439406,59.45421504747443],[-136.366245319727,59.45432594928827],[-136.36189988808908,59.45375464570929],[-136.35807850433844,59.44907137901812],[-136.3026977496212,59.46231532333996],[-136.23514495155558,59.522651343601225],[-136.23741285937822,59.55750336257711],[-136.35021194464335,59.598007902500015],[-136.189658443117,59.637820749186865],[-135.99977759373894,59.655017969533844],[-135.95166352642403,59.661800937542154],[-135.47918744185603,59.798042326359976],[-135.35946664518593,59.737873191800006],[-135.25239871785215,59.69793726221047],[-135.23160740782694,59.69817055355993],[-135.21730755799103,59.66205765879292],[-135.15352870993618,59.62487439624885],[-135.13595965726796,59.62374043228242],[-135.11483288041728,59.62233983913796],[-135.02601209550545,59.5629164317576],[-135.02510658766454,59.473847062776436],[-135.07345617219872,59.451765071034586],[-135.09829681868501,59.427093232690005],[-134.9878357066885,59.386192673211895],[-135.0279429463674,59.34506857696497],[-134.95753453982277,59.280240145567596],[-134.69963878409402,59.24792887746274],[-134.67665517333154,59.19041823064389],[-134.56497670144446,59.1306837967488],[-134.48106764027096,59.131159940000366],[-134.44448000153199,59.08875317450023],[-134.37949529177146,59.03876228615348],[-134.3949814723213,59.00010837792467],[-134.40458790687333,58.97962097512302],[-134.31301156910575,58.96311994193226],[-134.33395513513713,58.924309001674146],[-134.256701642706,58.86164813048936],[-134.2552517326845,58.861202650751686],[-133.83822434244593,58.73047840560437],[-133.70110560709114,58.611450493152816],[-133.37602599366943,58.431746589500555],[-133.45931869469968,58.38876209830661],[-133.34411122954677,58.27790778844444],[-133.27874158166418,58.234863225377495],[-133.2427411108601,58.209218109392665],[-133.17789164221466,58.16053797750495],[-133.16936441999837,58.15352706329963],[-133.1559448984228,58.134059997519586],[-133.12235308739957,58.08342777360582],[-133.0672290699981,58.00005130516571],[-132.8678144049678,57.84038436864562],[-132.86727271202,57.83973643345486],[-132.7464001319254,57.69424777162892],[-132.66905249038552,57.62644326205541],[-132.55553558559913,57.5006660928158],[-132.4648849672236,57.42832171998007],[-132.39776957355082,57.37393992626353],[-132.36849243099815,57.35059751926746],[-132.31959906902458,57.2966455241741],[-132.24624552704958,57.21165039817932],[-132.3658302975748,57.091269141778746],[-132.04392870784048,57.04510602145448],[-132.06377874364034,57.00005695155241],[-132.12103474800978,56.87398370178612],[-131.87053621491495,56.80697288576414],[-131.8980498617292,56.754469536049264],[-131.85766612741858,56.70424364112611],[-131.84775027538234,56.66208294778403],[-131.84168290579927,56.636224102208324],[-131.83230200949464,56.60063284536978],[-131.57930218801826,56.61344953599196],[-131.47021636680918,56.55387107774184],[-131.17240029734697,56.451095929781],[-131.0866648953095,56.40713289114635],[-130.78096686398786,56.3673379532281],[-130.62754710582792,56.27003836876449],[-130.62372665969028,56.26730322747155],[-130.59422614772757,56.26056529372383],[-130.5392615639207,56.24752816244836],[-130.46394751177232,56.242769743303825],[-130.44754072085865,56.20296675581036],[-130.43640910289554,56.17463338790889],[-130.4226295289504,56.1417413912501],[-130.34702762808254,56.12851094675459],[-130.2438234285662,56.096763543403625],[-130.22619792063782,56.09996298977128],[-130.101719308489,56.122494251296345],[-130.00960189287036,56.0173321785347],[-130.00364249813993,56.011031906251795],[-130.0060630740834,56.00713237375398],[-130.00200814391937,56.00005398077717],[-130.01606807897338,55.912746865870666],[-130.00213154096645,55.912667976844446],[-130.00208342156438,55.91021059330933],[-130.08426164900303,55.82097046468687],[-130.12388881420884,55.80525061366311],[-130.15038005648228,55.766822105320465],[-130.14573501482155,55.71485862352811],[-130.11131191314666,55.682315554519526],[-130.126413423329,55.58077848820747],[-130.09091655404714,55.50156101528003],[-130.04062910337365,55.453911167758875],[-130.01805266591808,55.33852466824567],[-129.97393551132407,55.29978458772338],[-129.97330100309944,55.28178740534525],[-130.1007971471309,55.19313130931442],[-130.14447838121436,55.14205602935251],[-130.15066638782005,55.124807582502314],[-130.17851266108593,55.09213097220891],[-130.18625990405022,55.061778863389115],[-130.24718731071385,54.9998701209583],[-130.2827703849277,54.96487901003696],[-130.3271729064141,54.92121064708908],[-130.39250949911718,54.89081708803368],[-130.42939669233388,54.8697681172053],[-130.5296170983689,54.80152722687031],[-130.59195732799412,54.790795477474596],[-130.60592337191994,54.78465331398684],[-130.64779917509634,54.766226176895344],[-130.64164839934043,54.755155345805676],[-130.6306488949593,54.744330012781255],[-130.62905663578167,54.73033966795039],[-130.6226096332751,54.716550159431335],[-130.60159594480288,54.703289486062594],[-131.00117036830275,54.69889821675219],[-131.19577543340597,54.69298417012296],[-131.42156012724843,54.705358629863],[-132.01702263385448,54.67788821529675],[-132.68203042833042,54.66131374571547],[-133.93440246777618,54.23025496692671],[-133.45536254987877,53.10081314458159],[-133.45531205825955,53.100689594047275],[-132.60854119189614,52.372665204212055],[-131.71801038202236,51.6633007910513],[-131.20198261399824,51.617099631335044],[-130.7226837922304,51.717999603985405],[-130.15839615122493,51.83362586752288],[-129.63165632846273,51.98932669673295],[-129.63158949604681,51.98934621540206],[-129.00168771616853,52.32941358139882],[-128.99374004154558,52.33342772372428],[-128.9930582666909,52.33378080406584],[-128.98637334773383,52.33699378349214],[-128.9841062896663,52.33816348668521],[-128.9826245055809,52.33890677638553],[-128.9800010980401,52.34024655790885],[-128.9752515063529,52.342727488361476],[-128.97114913640146,52.34519779746835],[-128.9699428517159,52.34598097668286],[-128.96558706864082,52.34853384927774],[-128.96325449051196,52.34994488386951],[-128.96214281483503,52.35059597138537],[-128.95897311423536,52.352561211080285],[-128.9574341193696,52.353650618229445],[-128.9563537154437,52.35445175675288],[-128.95515332613883,52.355194222038726],[-128.9528298667091,52.35686957475345],[-128.95200822243,52.35750138749574],[-128.94705708079698,52.36116310764871],[-128.9431957805596,52.36430160487256],[-128.94200587407886,52.365339846339516],[-128.93863812784693,52.367911974301656],[-128.93476091378253,52.37106401028182],[-128.93392435935556,52.37175495818318],[-128.9322179477675,52.37344676454046],[-128.93141297894556,52.37429228638305],[-128.93040609862896,52.37506547536098],[-128.92963590787434,52.37565149306827],[-128.92765507693196,52.377631192965644],[-128.92368772028564,52.38175890152651],[-128.92289015196255,52.38269110942193],[-128.92195879783324,52.38361938896105],[-128.9209976085986,52.3844883824024],[-128.91993270622027,52.38549852740858],[-128.91815935195095,52.38748235174638],[-128.91547486439794,52.390917775681935],[-128.91399775444805,52.39263154396733],[-128.91321229159442,52.39329915780438],[-128.91213258416568,52.39434156482912],[-128.91172637625291,52.39480331346405],[-128.91129070010055,52.39530619665248],[-128.9107739763521,52.39595919186112],[-128.9104042386007,52.39637515326427],[-128.91005846752014,52.396927941913695],[-128.90980290357163,52.39756204690262],[-128.9096191332789,52.39792286017349],[-128.9092064246179,52.39846665917651],[-128.90874984316838,52.39917928410661],[-128.90842541577754,52.39980333302506],[-128.90797664054904,52.40041366489172],[-128.90756124978256,52.40112300813717],[-128.9071013374667,52.40189628981706],[-128.9065216025321,52.402709589501015],[-128.90571558597858,52.403950944666214],[-128.9055033937668,52.40443754618624],[-128.9051450572958,52.405516232262],[-128.90452414545047,52.406894860773875],[-128.9039544443717,52.408282300630134],[-128.90354472364217,52.40932412576346],[-128.90322408153736,52.41025264615116],[-128.90270006420116,52.411594622565126],[-128.90231056289954,52.41281430549108],[-128.90143510191152,52.41434230758998],[-128.90035644028444,52.41704044426483],[-128.89946939894122,52.41904213710549],[-128.89807211083786,52.42243140948442],[-128.89735237885662,52.42393696267672],[-128.89680779689468,52.42492376826041],[-128.89551678451346,52.4280354779768],[-128.8948096713099,52.429909785426275],[-128.8941425747615,52.431310781799446],[-128.89368598987284,52.432525911582495],[-128.89341076172374,52.43338144934746],[-128.89231921662133,52.43573760099882],[-128.89194492698994,52.436807071875705],[-128.89151188837158,52.43792175386847],[-128.89110899487056,52.43890891305825],[-128.8906836662795,52.43985063122111],[-128.89030956503603,52.44095149898758],[-128.88981813752676,52.44279066115],[-128.88948920614,52.44386459749867],[-128.8890406563618,52.444983568505435],[-128.88721479965554,52.45055795676075],[-128.8866333288515,52.452377997464346],[-128.88627086159417,52.45391663268198],[-128.88572877281908,52.45550009810635],[-128.88487773009962,52.458349368989445],[-128.884275723297,52.4609529430424],[-128.88386823125362,52.46242759795925],[-128.88323219369133,52.46453894921073],[-128.88289558440925,52.46554459991529],[-128.88210130854887,52.46788366799557],[-128.88148610745554,52.4692894075709],[-128.8810442717905,52.471314593657326],[-128.88076063831866,52.47315411316792],[-128.88039876115047,52.474555819913974],[-128.87792117526317,52.484683742631425],[-128.8766619243775,52.48900691791759],[-128.87620652548856,52.48999414361118],[-128.8759493832758,52.49126870390471],[-128.8756488516199,52.49248823456345],[-128.87531992403694,52.49339380260041],[-128.87485739234538,52.49433071294723],[-128.8742617746824,52.495900236779356],[-128.87373106973237,52.497889392971004],[-128.87332651174768,52.498962842543],[-128.87308499580817,52.499271687628486],[-128.87294750011327,52.49960376696997],[-128.87289933147537,52.49969806463778],[-128.8728900397086,52.499807664676716],[-128.87284495757098,52.50029339343721],[-128.87282536270703,52.500607980057524],[-128.87275353727003,52.50119084273828],[-128.87269577879093,52.50152825011146],[-128.87258273779017,52.502489052226906],[-128.8722727257554,52.50312714789545],[-128.8718654627094,52.503788389276735],[-128.87152753698595,52.504672286471866],[-128.87121256249773,52.50570649243962],[-128.87061547192343,52.508253648996096],[-128.87026498544213,52.509738560791504],[-128.86983414822245,52.51127873848671],[-128.86960039177143,52.51223071966337],[-128.8683961726758,52.51696009447519],[-128.86805379316218,52.51855472136358],[-128.86705703476068,52.52181670621122],[-128.8666770887807,52.52332026020828],[-128.86643037456426,52.52455074203174],[-128.86610280669726,52.52594026787561],[-128.86570691134312,52.52728883511284],[-128.86531583672368,52.529374848168445],[-128.86512372186232,52.53105100629074],[-128.86477684672502,52.53821975492851],[-128.86488853591393,52.539353918688825],[-128.86488187558749,52.54084714469569],[-128.8648140651811,52.54194981309348],[-128.86469643486984,52.54356635686412],[-128.86448097432333,52.54510172720228],[-128.86382019031927,52.54849556343428],[-128.86356654387143,52.54993034035064],[-128.86308130594466,52.55130181927236],[-128.86249495195935,52.55333368632255],[-128.8617953149073,52.55652315869593],[-128.86155855235629,52.55818521968989],[-128.86130083736933,52.56019890596853],[-128.8612859633807,52.56148758580768],[-128.8609615310876,52.56481701425674],[-128.86084202547607,52.56626979515419],[-128.86064177093417,52.56774585877816],[-128.86046271630448,52.570441854890596],[-128.86035063511162,52.57188154221145],[-128.86015208273258,52.57373053602501],[-128.85978254715815,52.57581703787113],[-128.85943330107716,52.577597927751775],[-128.85923393663748,52.57928315898203],[-128.85878259024423,52.582836056086656],[-128.85871735556918,52.58448041940818],[-128.8584430273515,52.58616578911189],[-128.85822891858032,52.588019625273624],[-128.85802757456165,52.58945418915675],[-128.8572571601811,52.592206108145476],[-128.85690719705872,52.59291013792722],[-128.8016803061475,52.59283119861739],[-128.79224889010317,52.592839071004946],[-128.77949482916188,52.59284852305203],[-128.773922550294,52.59285210914261],[-128.76599980456504,52.59285675524154],[-128.7550467669257,52.592862904326914],[-128.75493129492975,52.597676372509405],[-128.75433477176466,52.59769381550548],[-128.75323079871035,52.59773275583545],[-128.752476635867,52.59784532602209],[-128.75160303023063,52.5979853742086],[-128.75062431795408,52.59827539302051],[-128.7496603946645,52.59865198651909],[-128.7489363819301,52.598860274999474],[-128.74750273730578,52.59896693601606],[-128.74609276866983,52.599010210515196],[-128.7440474364482,52.59921590591904],[-128.74315958918012,52.599351181425895],[-128.74238976671228,52.59959584075594],[-128.74175529923755,52.59968589482959],[-128.73948133305637,52.59980377440781],[-128.73944739579773,52.599808501082244],[-128.7392465574508,52.59983620333476],[-128.73871300707023,52.5998840588802],[-128.7378648128871,52.59998863524553],[-128.73721202225448,52.60005274015737],[-128.73658236541604,52.60013143656379],[-128.73563575411865,52.60030335831649],[-128.7347513624569,52.60034820092003],[-128.73400996528594,52.60035771674572],[-128.73332676870655,52.60039502741078],[-128.73143517840612,52.60070680921873],[-128.73041515922608,52.60080133525806],[-128.72959121059122,52.60083687319414],[-128.72853249492232,52.600963127698165],[-128.72712009500532,52.60126028045564],[-128.72668423663805,52.60138991079058],[-128.72614341359122,52.601454702318044],[-128.72512318317388,52.60159012110022],[-128.7246655258971,52.60160977716241],[-128.72370476294898,52.60176399347985],[-128.7226616418831,52.60190328933903],[-128.7215739056597,52.60201053255874],[-128.72095140524786,52.60205701470026],[-128.71979751735464,52.602054742722565],[-128.71904119070214,52.60207740472306],[-128.71834989731678,52.60219165075556],[-128.71785516075826,52.60222503746666],[-128.71720191282634,52.60231202826806],[-128.71629367193418,52.60243411104873],[-128.71558872073388,52.60249369898007],[-128.71514106806913,52.60252542242897],[-128.71477584954755,52.60257317297497],[-128.71432073858367,52.60261852608351],[-128.70951279267376,52.60309474402618],[-128.70881441646316,52.60320011508981],[-128.70788403948498,52.60329460476467],[-128.7074406600865,52.60336489930502],[-128.70673581212878,52.60345582685477],[-128.70491107517785,52.603731981372796],[-128.7038594052061,52.60389878856043],[-128.7031013998388,52.604012800787864],[-128.70240276922792,52.604158516496284],[-128.70188150621044,52.60438817365869],[-128.70004059405932,52.60480538164041],[-128.6996271541392,52.6048665368155],[-128.69881676111922,52.60495705662116],[-128.6973460811074,52.605112178966195],[-128.69638628183904,52.605151740306646],[-128.69598819974644,52.605222056812856],[-128.69518599223284,52.60528095718036],[-128.69413964587562,52.60560738470962],[-128.69368023333223,52.60579126855172],[-128.69298867274094,52.60593284211931],[-128.6924619406309,52.606061637451916],[-128.69172632028005,52.60619412504125],[-128.69104983248184,52.60628094620891],[-128.6901944779483,52.60640776728961],[-128.68944294754908,52.60656696881224],[-128.68887904959723,52.60666407733353],[-128.68809835506167,52.606786363663424],[-128.68676186590753,52.60698761067093],[-128.6858320621533,52.60700451815681],[-128.68509567921672,52.607154926115115],[-128.68424916995264,52.60717214840162],[-128.68325926328274,52.607234159271215],[-128.68247208468296,52.60729766824286],[-128.68188677506305,52.60734869271897],[-128.68093536710134,52.60736044930556],[-128.67922526869654,52.6074770952547],[-128.6781975318082,52.60757077025657],[-128.67698950586424,52.607681472831565],[-128.67625338663376,52.60777742537343],[-128.67614912968264,52.607767477676624],[-128.67506071271072,52.607897284842984],[-128.6742491632152,52.608074585514004],[-128.67331052512012,52.60817290557465],[-128.672281290226,52.608376486512014],[-128.67164382475264,52.608422479535484],[-128.6705051108171,52.60842834217784],[-128.6698001370801,52.60846016697725],[-128.66763869524877,52.60871537814405],[-128.66716607065405,52.608748607416594],[-128.66647553443883,52.60878962009134],[-128.65712026004672,52.60916104329642],[-128.65596641267223,52.60916205653924],[-128.65588394265956,52.609175148277885],[-128.65448273320192,52.60921598587342],[-128.65361368241176,52.609228454794945],[-128.65073480541506,52.608867086257284],[-128.64895371185185,52.60874993264049],[-128.648017963407,52.60871620205414],[-128.64701504365266,52.608673327476886],[-128.64633253666366,52.6087095523521],[-128.64477880733628,52.60891803594647],[-128.64363097284777,52.60900123105641],[-128.64244507959307,52.60915762173688],[-128.64008980477414,52.60909257249341],[-128.639038005298,52.6090675671228],[-128.63731441025405,52.60907230010201],[-128.63628163533403,52.60901038491059],[-128.63375112953474,52.60892449927119],[-128.63121227038667,52.60889818106292],[-128.62922515004934,52.60852853329109],[-128.62848001593844,52.60831314757259],[-128.6276148826337,52.60810213577221],[-128.62655596392526,52.60783940835512],[-128.62551825831252,52.60759020955259],[-128.6233984123339,52.60719708831875],[-128.62218052602805,52.606996771294476],[-128.62138950128613,52.60683172069037],[-128.61994723124877,52.60663866169646],[-128.61845791427942,52.606523462401874],[-128.61729337629527,52.60628713056816],[-128.61576186801435,52.60607134694717],[-128.61442481778013,52.60584278196539],[-128.6132604173218,52.60563836742556],[-128.6114430980612,52.60543846288554],[-128.61086077432432,52.60531129289928],[-128.6082752947463,52.604955231537616],[-128.60595274903008,52.60455566862642],[-128.60507878747336,52.60444003127576],[-128.60417221433397,52.60444231231515],[-128.60362554506804,52.60442926587713],[-128.60306511750827,52.60435709056523],[-128.60274421544406,52.604313775564876],[-128.60229462600836,52.604314825522515],[-128.60167197561748,52.604162713860795],[-128.60105870076285,52.603814119256356],[-128.60064113978504,52.603626029396445],[-128.59832580596563,52.60317513110208],[-128.5946410089049,52.60288809671879],[-128.59064971239488,52.60349937518793],[-128.58886914786117,52.60483986056005],[-128.5881162236078,52.60726561849775],[-128.5875349757273,52.609363437504285],[-128.58704341123564,52.611583752523934],[-128.58679315631153,52.614506958060666],[-128.5864893533969,52.61711059411217],[-128.58593080645875,52.6200793092668],[-128.58487186543036,52.623316474222186],[-128.58366973382772,52.626622399428996],[-128.5825272277637,52.629937641326435],[-128.58138482845575,52.633503511850655],[-128.58017389512818,52.63654936964893],[-128.579075433592,52.63931290170612],[-128.57780409570682,52.64160639772159],[-128.57643487900236,52.64372203470361],[-128.57550757237834,52.64584248184332],[-128.57381634746378,52.64861451916289],[-128.57344217563266,52.64926201180569],[-128.572746343606,52.65083060218419],[-128.57144440625314,52.65352055600222],[-128.5705023937013,52.655928363843984],[-128.56926800666494,52.65947136463626],[-128.56844623910015,52.66242098252954],[-128.5677807413045,52.665243791418774],[-128.56672661851792,52.66861791594861],[-128.5657685774989,52.67113927740094],[-128.56435331971664,52.673811391408364],[-128.5626224692282,52.67632329639498],[-128.5610107180691,52.67828864788215],[-128.55922632824303,52.67991121646411],[-128.55726142019114,52.68110537180779],[-128.5553790023112,52.68209919910421],[-128.55439648046683,52.68259559409658],[-128.55464365323544,52.68297878620311],[-128.55471901570627,52.68348067548767],[-128.5549225135796,52.68445190001659],[-128.55514078423568,52.686120903984786],[-128.5553749369221,52.68793142779504],[-128.55573607875553,52.689896744081494],[-128.55631535526666,52.692067559370074],[-128.5567366995727,52.693704645516874],[-128.55754860584724,52.695701584845],[-128.55823978003195,52.69712025474324],[-128.55881889249406,52.69829239991021],[-128.55954792758902,52.69927286809453],[-128.55998883048434,52.69980768250489],[-128.56052247884324,52.70086923384128],[-128.5614744043291,52.702628705609975],[-128.56216431366644,52.70450212121968],[-128.56107671407497,52.70668975313149],[-128.5606179708853,52.70889557849862],[-128.56011535869558,52.71225968429807],[-128.55930420888745,52.71510401413275],[-128.55844831171856,52.71876851222709],[-128.55742000678023,52.721631004911856],[-128.5562867812733,52.72502228616784],[-128.55503244383118,52.72898307249383],[-128.55407794059073,52.7322190159068],[-128.5534838792782,52.735774537638825],[-128.55285243395483,52.73923385362942],[-128.55209320489922,52.74279351207952],[-128.55124355457136,52.74661303896735],[-128.55071641400542,52.74927497105632],[-128.5501140338751,52.753026285875556],[-128.54949757150928,52.75599852737438],[-128.5490084395758,52.75841400795507],[-128.54854915753984,52.761486536324],[-128.54809603454058,52.76477255147224],[-128.54715574434601,52.76808203584404],[-128.54617836540294,52.77147304792439],[-128.5449593592876,52.77508290620315],[-128.5433123092333,52.77912086577076],[-128.54203271602046,52.78251668420032],[-128.54122697895264,52.785228817977384],[-128.5403312106297,52.78813183646378],[-128.53943539300215,52.79128603693443],[-128.5383964327787,52.793879262644175],[-128.5373277084832,52.79631781136306],[-128.5365519454712,52.79846462639959],[-128.53573655127704,52.79980489914421],[-128.53531501328425,52.800515983276256],[-128.5352111664333,52.80095836635368],[-128.53518920123219,52.801746592215586],[-128.53512474230433,52.80333751674897],[-128.5351279068042,52.80520618724915],[-128.53492928866032,52.80726144045321],[-128.5345877813182,52.8090714016284],[-128.53449280512228,52.810712307368306],[-128.53419705560393,52.81338751339944],[-128.5340666988133,52.81607708329023],[-128.53418391366498,52.8188022356917],[-128.53400816886793,52.82146362086957],[-128.53364510238313,52.82363341102252],[-128.53314724601495,52.82661907774527],[-128.53272424584313,52.829691705756524],[-128.532518731632,52.83208907404937],[-128.5320497473452,52.834655270425],[-128.53158254709697,52.83769126821505],[-128.5312726372496,52.84077655951502],[-128.5310741783156,52.84342044542736],[-128.53086764767414,52.84548982495511],[-128.53043668226732,52.848042277555976],[-128.52993805098598,52.85063149816221],[-128.52967875087396,52.85308324972785],[-128.52938977386648,52.85509831226366],[-128.52863408426816,52.85720023369838],[-128.5279997886685,52.85927879358106],[-128.52755327901306,52.86158989374639],[-128.52715039914258,52.86369597964238],[-128.52647831893486,52.86561105561556],[-128.52624094776647,52.867479774772384],[-128.52586873383808,52.869649657141515],[-128.52522500425985,52.87149570649921],[-128.52500203411512,52.873027713926],[-128.5247415349893,52.87458631538666],[-128.5246614783619,52.87595378061838],[-128.52416727238187,52.877057099764095],[-128.5239880260515,52.87802358980457],[-128.5236150240117,52.87920896369735],[-128.52299281931914,52.88052639163561],[-128.522311207318,52.88161185982663],[-128.52106662429836,52.883035131025814],[-128.49736381056712,52.88308984237852],[-128.49707341990828,52.88255219105271],[-128.49701455197822,52.8823897347122],[-128.49691249041413,52.88223716621408],[-128.4966469731121,52.88209198990136],[-128.49627906909575,52.881883962345235],[-128.49616080948655,52.881756961596956],[-128.49596873560532,52.88165732675776],[-128.49585095577478,52.88152246655752],[-128.4956884376502,52.8813868788072],[-128.49554226304306,52.88125991406549],[-128.49532113041266,52.88120462517761],[-128.49509742577362,52.88116900841449],[-128.49478634192337,52.88116776318767],[-128.49453489271863,52.881103581001604],[-128.49443015415056,52.88111196655957],[-128.49416148630465,52.881119354818296],[-128.4941045054287,52.88110038098242],[-128.49404377628485,52.88106522361178],[-128.49395533383972,52.88093815315239],[-128.49386961378846,52.880794205655896],[-128.4938722392931,52.88063212941603],[-128.49387184560624,52.88049814026788],[-128.49381620646,52.88032720880402],[-128.49371336635332,52.88012923784723],[-128.4937730336908,52.880066866481066],[-128.49377600790737,52.879958595288535],[-128.4937467894333,52.879777567762304],[-128.49367278758388,52.879706254700324],[-128.49360106113636,52.87956257517583],[-128.4934987938813,52.87939038130771],[-128.49342654424743,52.87923774252319],[-128.49333906247028,52.87911120734787],[-128.49314657579424,52.8790199820076],[-128.4931031820263,52.87886728703129],[-128.4930901194746,52.87872348397565],[-128.49309239964737,52.87857149749169],[-128.49305027669843,52.87840868397406],[-128.49294788600346,52.87828190861585],[-128.49287338198823,52.87813828754169],[-128.4927726481451,52.87797615203121],[-128.49266895657686,52.87785893940821],[-128.49255212018244,52.8777240560161],[-128.49237646466793,52.877570245870025],[-128.49237729470477,52.87748893085267],[-128.49225950526431,52.87735351123622],[-128.49217242981672,52.877218005296896],[-128.4920093377173,52.87705607025448],[-128.49195138079247,52.87702029693133],[-128.4918318854794,52.87698302972599],[-128.49162671840824,52.876802368373674],[-128.49145000212582,52.87669398682674],[-128.49124386261553,52.87657613723649],[-128.49121426858338,52.876531913324676],[-128.49108307975052,52.87642200098989],[-128.49100901645252,52.87626995532731],[-128.49074420558878,52.876151671116816],[-128.49068316505367,52.876142873317384],[-128.49052185602847,52.876043134143245],[-128.49037402088183,52.87601487125277],[-128.49015190747443,52.87594220961392],[-128.48994574220592,52.87582379326507],[-128.48978345455967,52.87570725463129],[-128.48974022345544,52.8755091475529],[-128.48968391851403,52.87537410024164],[-128.48950539742253,52.87528257336852],[-128.48931458031913,52.87515599081674],[-128.48928562741193,52.875074750563854],[-128.48916814415654,52.87491241074494],[-128.48905247762264,52.87473321310241],[-128.4889351379349,52.87458936668033],[-128.48875720163605,52.874444004811856],[-128.48851963265037,52.8743615760447],[-128.4884780777617,52.87427163221203],[-128.48843410109953,52.87423612630551],[-128.48821077959406,52.874126484467084],[-128.48787150216066,52.87392847342783],[-128.48763697759745,52.8738185026041],[-128.48738309118943,52.87372744680863],[-128.487250649986,52.87362765741074],[-128.48722424136292,52.873494218738436],[-128.48721101148047,52.87333135675039],[-128.48715192045682,52.87319636724362],[-128.4871393116333,52.873044139773555],[-128.487096973715,52.872908804602055],[-128.4870697890255,52.872746228943875],[-128.4870557522939,52.87266523756164],[-128.48689274609944,52.872584026241036],[-128.48677434570675,52.872565227645794],[-128.48664092929832,52.872448639000716],[-128.48651050360775,52.872303389744445],[-128.48642247607836,52.872151071665485],[-128.4863059918804,52.872005527183454],[-128.48621831543716,52.87184311895197],[-128.48617592344618,52.871690956371225],[-128.48608654389872,52.8715470807444],[-128.4860135671708,52.87149312574156],[-128.48601382590476,52.871465644361415],[-128.4859400777966,52.87136628920838],[-128.4858671015635,52.871312334108474],[-128.4857669617231,52.871095802518525],[-128.48551664554432,52.8709059945677],[-128.48529558351007,52.87077106635148],[-128.48510315170202,52.870679827365606],[-128.4849404496732,52.87057170523235],[-128.48488354636692,52.87042602061781],[-128.48473507709855,52.870290677466784],[-128.48463410074774,52.87015546011422],[-128.48453063521282,52.86999337555625],[-128.48441289140555,52.86985794744154],[-128.4842811943646,52.869722814230244],[-128.48414818720966,52.86967685504001],[-128.4839864281125,52.86956870274435],[-128.4837804836931,52.869469342230204],[-128.48360303379053,52.869315548529094],[-128.4835451577858,52.869153064602955],[-128.48348884849216,52.8690174583135],[-128.48344553238493,52.868865323246304],[-128.48344644373387,52.86872121463875],[-128.48353855938038,52.86856061051475],[-128.48352470061795,52.86837084146056],[-128.4835123993901,52.86819169614001],[-128.4833064447139,52.868091769963115],[-128.48308396945046,52.86802807365075],[-128.4830386482295,52.86800099937296],[-128.48308432791754,52.86793836340891],[-128.48308444933937,52.86789238822443],[-128.48307120462164,52.867856787068206],[-128.48296923699826,52.867784381133056],[-128.48270085570934,52.867747443768614],[-128.48249347840942,52.86763913217658],[-128.48248172743334,52.86748520849594],[-128.48243798316818,52.86734148720662],[-128.4823949335537,52.86716187014495],[-128.48239867786495,52.867018266735776],[-128.48228016653744,52.86683743629077],[-128.48217790087818,52.86671177053834],[-128.48207723522543,52.86654963366068],[-128.48198707126136,52.86650387939009],[-128.4819590604523,52.866422617408126],[-128.4819297053079,52.86627018677604],[-128.48188723660135,52.86611634673537],[-128.4818756592277,52.86598147209312],[-128.48181523850525,52.865918835251236],[-128.48177469514178,52.8657660757648],[-128.4816559675624,52.86569345765442],[-128.48152342570222,52.86557515856278],[-128.48149414386117,52.8655040148584],[-128.48142140626075,52.86534184367666],[-128.48140868177603,52.865171121057],[-128.48129237215286,52.86504406475239],[-128.48115925609085,52.86489998785109],[-128.4809975260777,52.864727926802644],[-128.48089686907545,52.86456577975209],[-128.4805724232023,52.864348938871025],[-128.48042544725448,52.86422252924008],[-128.48024865877096,52.86409563651711],[-128.48010067486587,52.86395187235348],[-128.47996872918227,52.86384365055932],[-128.4798226466516,52.86371666519205],[-128.47970724735995,52.863508855680294],[-128.47958696100665,52.8634732708765],[-128.47927783911393,52.863407476559026],[-128.47921785923677,52.86333641501571],[-128.4791142020197,52.863282538260606],[-128.4788934471993,52.86319973634526],[-128.47868737532897,52.86308130826418],[-128.47843400549718,52.86298180926227],[-128.47836032260975,52.86296318059786],[-128.4780359961213,52.86290779542677],[-128.47782663559715,52.86284493433964],[-128.47772318025667,52.86276245491749],[-128.47763829751065,52.862583162249074],[-128.47752045878684,52.8624292238199],[-128.4773303205848,52.86231269999678],[-128.477224413985,52.862284093484696],[-128.47713622135325,52.86223998051197],[-128.47687094136813,52.86217549818245],[-128.47675078641828,52.8621741024795],[-128.4765001486054,52.86213734272586],[-128.4763377658981,52.86200172658141],[-128.47619036175544,52.86188373504244],[-128.47613073053782,52.861866486282594],[-128.4759089762676,52.861846491917746],[-128.47580502881434,52.86181952928258],[-128.47575930215416,52.86180143114231],[-128.4757459294681,52.86174733519453],[-128.47559942114498,52.86169267211003],[-128.47534599092418,52.86165596880978],[-128.4752724474469,52.86165583202514],[-128.47518237565032,52.86169136835631],[-128.47494460537658,52.861635828585825],[-128.4746946730312,52.86156316914387],[-128.47444295274596,52.861507922248585],[-128.47423660186575,52.86141639437025],[-128.47405867976985,52.86123737247314],[-128.4739873168994,52.861066197786045],[-128.47386833128525,52.861020488378635],[-128.4738092214519,52.86094829359355],[-128.473661810065,52.86082973405461],[-128.47344087674333,52.86077552322236],[-128.47323456430757,52.86068455797943],[-128.47293801624318,52.86067453795084],[-128.47271354331025,52.86073589241743],[-128.47251965205706,52.8609070446159],[-128.47245715587874,52.86104907644124],[-128.4723955610798,52.86123874821919],[-128.47233443627331,52.8613723459383],[-128.47221555903337,52.86148921848718],[-128.47208031259527,52.86151617666136],[-128.4717829066929,52.8615235560095],[-128.47154634764166,52.86150498627577],[-128.4714875760569,52.86148659583936],[-128.4712954499886,52.86128712961013],[-128.47111928464457,52.861170293202726],[-128.47089684637302,52.86110601775491],[-128.47074922470358,52.86109622345161],[-128.47049721090283,52.86106788517749],[-128.47018543624293,52.86100380073238],[-128.47008347417952,52.86093081886898],[-128.46998052203438,52.86076030627969],[-128.4698170103845,52.860669000382465],[-128.46953682639236,52.86058798703706],[-128.4693153666844,52.86054050732916],[-128.469255808928,52.860540637959794],[-128.4691072319002,52.86059477472809],[-128.46906258000246,52.86059515708383],[-128.46898612403845,52.86057658097215],[-128.46900208817195,52.860530829087466],[-128.46903314138953,52.86042421986084],[-128.46906436647774,52.860288444727125],[-128.4690685909493,52.86013642683801],[-128.4689961793895,52.8599467658783],[-128.4689528266425,52.85979294024667],[-128.4688938924321,52.85965906897998],[-128.46873361884812,52.85955927949902],[-128.46849617149792,52.85947680949745],[-128.46827239029346,52.85942151878184],[-128.46805217298206,52.859411569140775],[-128.46778550082726,52.85933868200452],[-128.46759359423118,52.85923899941504],[-128.46738696300199,52.8591581224611],[-128.46713461509705,52.85907539764429],[-128.46697227383373,52.858939768298406],[-128.4668095150883,52.85881311775174],[-128.46669423593934,52.8586865912568],[-128.46641366727562,52.858469912836505],[-128.46635601824997,52.858325912908015],[-128.46616503184782,52.85814547654335],[-128.46601946074856,52.85801005000811],[-128.46597471300132,52.85784784752006],[-128.46590162030103,52.85777481228085],[-128.46581558153053,52.85755853375381],[-128.46569868674155,52.85738774513911],[-128.4655685105101,52.857260974127534],[-128.46540576234048,52.85713432150228],[-128.4652431292929,52.857025606744905],[-128.4652156075693,52.8569359167299],[-128.46508387992984,52.85678226701348],[-128.46484791999643,52.85662855290932],[-128.46477632947983,52.85648485372418],[-128.46468833023843,52.85633084214104],[-128.46468934433594,52.85626802910318],[-128.4646154101409,52.856115964892595],[-128.4645745336194,52.855972177263155],[-128.46465044922994,52.85583658670996],[-128.4648441414823,52.85569404847618],[-128.46487501241302,52.8556485493755],[-128.4648461767578,52.85548768987869],[-128.46480378041224,52.85533384262212],[-128.46477541572338,52.855181378334706],[-128.46465923040225,52.85505486890101],[-128.46460157756306,52.854910877072115],[-128.46451423121326,52.85478431852034],[-128.464500210598,52.85470275908964],[-128.4644272508701,52.85456749347195],[-128.46438358069594,52.85442376429536],[-128.4643727048801,52.85423561700305],[-128.46425359661106,52.85409067181952],[-128.4639439935979,52.85391831797738],[-128.4638274277101,52.85380135111563],[-128.46359103755614,52.853656057768454],[-128.46344496261815,52.85365631392066],[-128.46338523638227,52.85363738350783],[-128.4633718625722,52.85350255392988],[-128.4635222934563,52.85336820871389],[-128.46353786457465,52.853170536319105],[-128.46333262606706,52.85301674009871],[-128.4631416946541,52.852917021232436],[-128.4629476628935,52.852844286842945],[-128.462755651123,52.85272609334636],[-128.46256472236013,52.852626373524124],[-128.4625076620403,52.852492459786454],[-128.46242063327597,52.85233898226895],[-128.46228889730435,52.85218476452907],[-128.46215472390844,52.85214945374198],[-128.46196379964917,52.85204974186624],[-128.46183179150933,52.85192299629133],[-128.46163935024228,52.85181322416302],[-128.4614770861642,52.85167814208676],[-128.46127231499526,52.851596659865436],[-128.4610650059999,52.85148718943791],[-128.46084379737562,52.85137857502323],[-128.46063582841265,52.851306128997344],[-128.46056337204004,52.85109852329614],[-128.46037360580772,52.850954489528945],[-128.46035931923075,52.85090041108551],[-128.4602566068133,52.850765201122776],[-128.46017001002198,52.8506027516712],[-128.460052704996,52.8504403802621],[-128.45992007870612,52.850286734788575],[-128.45981879078835,52.850159908721906],[-128.45974591828568,52.850025759738145],[-128.45974821908354,52.84987209575162],[-128.45961494753746,52.849755474770916],[-128.4593637364639,52.84969121610436],[-128.45918676191485,52.84959119883416],[-128.45898084254762,52.84947329066967],[-128.4587294906632,52.849390536953706],[-128.45852154933692,52.84931807782338],[-128.4583313605577,52.84918246385818],[-128.4581835022679,52.84903867074819],[-128.45791790318398,52.848902383021525],[-128.45781702994648,52.84876657636848],[-128.45786469270945,52.84856038405246],[-128.45786493438095,52.84837088213072],[-128.45786730642234,52.84821833795194],[-128.45783950308982,52.84807483941044],[-128.45784187520567,52.84792229520354],[-128.45775484053468,52.847768258298785],[-128.45768266090778,52.84759764734613],[-128.45746320346367,52.84738976112783],[-128.45725660144507,52.847308301619535],[-128.45703291403342,52.84725299772365],[-128.45684126073866,52.84718860912423],[-128.45665007821563,52.847116361389006],[-128.45638110133544,52.84711469504512],[-128.45614452429487,52.84715888818856],[-128.45587661172235,52.84717570408004],[-128.45584590568663,52.84717579006322],[-128.45577398576847,52.84705787292852],[-128.45562662744143,52.846922480394184],[-128.45537664111353,52.84681445791392],[-128.4553626405886,52.84673289698114],[-128.45525936475065,52.846652081328905],[-128.45521774351863,52.84646233339186],[-128.4551434067362,52.846318676894846],[-128.45505744925748,52.8461831212461],[-128.45493945873102,52.8460566403356],[-128.45485376777788,52.84587733994555],[-128.45457189652544,52.84581315628017],[-128.45454178166517,52.84575884286095],[-128.45451339816563,52.84568598758496],[-128.45456145027487,52.84555099431709],[-128.4545629121533,52.84539846919999],[-128.45453297168262,52.84536321394672],[-128.45440100631276,52.84523645948577],[-128.45426916885484,52.845128207874396],[-128.4540628139766,52.845018149577804],[-128.45403273280914,52.844964400448745],[-128.45391529624115,52.8448474333946],[-128.4536944063518,52.84479206495569],[-128.45365005027875,52.84476495968901],[-128.4535485458039,52.84458543263203],[-128.4535052020132,52.84441421672766],[-128.4534769621792,52.84427913142893],[-128.45343461797472,52.84412527897798],[-128.45336352517674,52.84397314842946],[-128.4533355662162,52.8438105902323],[-128.45312973775475,52.843612494107134],[-128.45305806708853,52.843450283879704],[-128.45294177509908,52.84330470371027],[-128.4528522102364,52.84317089925924],[-128.45281132135,52.84302598641965],[-128.45272316260755,52.84290056661311],[-128.4526358760873,52.8427739982683],[-128.45260885731201,52.84261142021046],[-128.4525345360246,52.842467761710985],[-128.45244798548035,52.842305305712244],[-128.45236110752,52.84216975834726],[-128.4523038411976,52.841998841632346],[-128.45224521679563,52.84183691455181],[-128.45221832581527,52.84169283039834],[-128.4521314652137,52.84155729145963],[-128.45205883588588,52.84137828130588],[-128.45195652977745,52.84123296424666],[-128.4518849760654,52.84108869135529],[-128.4517828941172,52.840963561568635],[-128.45166533439308,52.840828098176246],[-128.45150197026916,52.840737321135414],[-128.4514739085434,52.8406375475055],[-128.45146171796443,52.840457840211435],[-128.45144879215232,52.84031402041444],[-128.45143514697813,52.84020610573289],[-128.45142309691516,52.84004489218637],[-128.45136669401512,52.839872826638484],[-128.45123486736261,52.839683282797324],[-128.45114840884315,52.83952250129668],[-128.45113504568775,52.8393871046677],[-128.4510903735456,52.839224885637776],[-128.45103420691146,52.83908926124424],[-128.45093027401313,52.83896416934852],[-128.45084470154274,52.838818501988314],[-128.45086105977768,52.838666230716846],[-128.45086198734631,52.83850418098172],[-128.45084906466252,52.83836036989918],[-128.4507936671907,52.83818940428519],[-128.45067611825098,52.8380539396633],[-128.45057301380191,52.83792714373599],[-128.45053157932392,52.837756451675986],[-128.45050373149036,52.83759556759722],[-128.4504600936756,52.83745127620598],[-128.45034417274513,52.83727933095926],[-128.45027234956882,52.8371625386177],[-128.4501980285927,52.83701832233834],[-128.4501115150443,52.836856419856694],[-128.4500101480436,52.836711081450105],[-128.4499362681453,52.83655845062404],[-128.4498650752363,52.83638781410955],[-128.44977854718866,52.83622535551446],[-128.44966100688254,52.836089889706855],[-128.4495289452714,52.83594463517314],[-128.4494286156318,52.835800961039546],[-128.4493557360049,52.83566568444087],[-128.44923805880077,52.83551171534534],[-128.4491651202101,52.83535906438073],[-128.4490632779521,52.835205329900326],[-128.44897611474224,52.8350804426148],[-128.44887424142271,52.83492614348999],[-128.4488320198018,52.83477397286305],[-128.4487284462779,52.83463877096934],[-128.44856862886948,52.83451203491954],[-128.44842073027004,52.834349733999495],[-128.44840781655782,52.83420591330752],[-128.4483211591032,52.8340249505774],[-128.4482493469417,52.833908156756166],[-128.44819041675953,52.83377258850891],[-128.44817881587096,52.83361921391391],[-128.4481802251185,52.83344930482293],[-128.4481686073356,52.833295374390936],[-128.4481407070437,52.83313336934531],[-128.44812779464337,52.83298954851085],[-128.44820381830166,52.83285565100731],[-128.44829378361206,52.832721462677384],[-128.448356222044,52.83257775675081],[-128.44840176723775,52.83241534117982],[-128.44843296737773,52.832245940860666],[-128.4484200691243,52.832102119666665],[-128.44836381335938,52.83194855497425],[-128.44828908576724,52.83181331613013],[-128.44817390259374,52.83168621380403],[-128.44801131845767,52.83155953472114],[-128.44789529656035,52.83143412707279],[-128.4478219894841,52.83130726350482],[-128.4477350572592,52.831153782002055],[-128.44763329445126,52.831001165818634],[-128.44750183381637,52.83086598808577],[-128.44733880007993,52.83074772267667],[-128.44732559671414,52.83071211665754],[-128.4473112846507,52.830559919571904],[-128.4473297441943,52.83037900698879],[-128.44743504155693,52.83023665037097],[-128.44755593455918,52.83007435035677],[-128.44761749951218,52.82993178405383],[-128.44763470555566,52.82977780843729],[-128.44766559073508,52.82963531664259],[-128.44769676994792,52.82948161474964],[-128.44769855648855,52.829302170893484],[-128.4477152521781,52.82912297229028],[-128.44749608942675,52.82895037805121],[-128.44727263442178,52.828913549171354],[-128.44721434104312,52.828886176039354],[-128.44718613714963,52.82883237691327],[-128.44712827766043,52.828715291381904],[-128.4471431450999,52.82855295032592],[-128.44721916394417,52.82841905307968],[-128.44723738889564,52.82826674256983],[-128.44723829813117,52.828104136290065],[-128.4472119044283,52.82795219084811],[-128.44718446098003,52.827798024690466],[-128.44716922895827,52.82764584651409],[-128.44724664913463,52.82752032512919],[-128.44730768044596,52.82736824332503],[-128.44732532588347,52.827205844161554],[-128.44728161777422,52.82704361185859],[-128.44716411068143,52.82690814275683],[-128.44704797997622,52.8267642306656],[-128.44691547459698,52.8266105771543],[-128.44659281631175,52.826384074137394],[-128.4464469613249,52.82625704427404],[-128.4464462819054,52.82621276288207],[-128.44634584753769,52.826050591248524],[-128.44619724720934,52.82592417446669],[-128.44605198774823,52.82580722335778],[-128.44605216644536,52.82576181175413],[-128.44617287346315,52.825644924306886],[-128.44615853484515,52.82549216212955],[-128.44605736416847,52.8253658869626],[-128.4459551810868,52.825221683145045],[-128.44579306826603,52.82508658608054],[-128.44573679884178,52.824932454982275],[-128.44569278232746,52.824797139495814],[-128.44557563514968,52.82463530646081],[-128.44545963923187,52.82450989585011],[-128.44538772769485,52.82437459630529],[-128.44524050724397,52.82425600763376],[-128.44512260642796,52.82412951509362],[-128.44500649016672,52.823985600727084],[-128.44482997367564,52.82385865149361],[-128.44469682360884,52.8237420026975],[-128.44459518925134,52.82362358501963],[-128.44449165620685,52.82348837842469],[-128.44437554433057,52.823344472334675],[-128.44430301962512,52.823182273854194],[-128.44421717499463,52.82304726377097],[-128.44419584379034,52.823032009883896],[-128.43554564683384,52.82833387240265],[-128.43599336229929,52.828422133851554],[-128.4360281864025,52.828429260156916],[-128.43604537029464,52.82859989509992],[-128.43607909072563,52.82894623760453],[-128.43609303933124,52.82912535375781],[-128.43607510074986,52.829136938887565],[-128.43602407298025,52.829155373282916],[-128.4359702663849,52.82917387429145],[-128.43586349520734,52.82920972850303],[-128.43554113001335,52.82923211545845],[-128.4351210521701,52.82918813022456],[-128.43485334265117,52.829125285127766],[-128.4346394965262,52.82911009366805],[-128.4344568566429,52.82915257038687],[-128.43440294337876,52.829185640599285],[-128.434538008292,52.82927086475935],[-128.43510806733426,52.829498430249586],[-128.43575632675126,52.82982472988953],[-128.43587826379067,52.83015242239129],[-128.43571171082752,52.830330233556325],[-128.4354097950742,52.830450312467605],[-128.435003284978,52.830628059254295],[-128.43479838638652,52.83078592509492],[-128.43476013477974,52.8308814624143],[-128.43474891940446,52.83091309095681],[-128.43474574722606,52.83092269214141],[-128.43473767230645,52.83094416399883],[-128.43482424874463,52.830945732171216],[-128.435007638451,52.830981173197216],[-128.43510758853606,52.831119260304604],[-128.43511651664787,52.83125923549117],[-128.43512482232174,52.83138856690405],[-128.43513317513245,52.83151846245544],[-128.4351364997502,52.831576700199406],[-128.43509187407759,52.83160958693562],[-128.43500959265535,52.83171612913995],[-128.43497049257817,52.831878404860106],[-128.4349921024115,52.83204502771534],[-128.4350526601765,52.83219346728516],[-128.43512689315133,52.83230461186553],[-128.4351731748435,52.832365887479085],[-128.4352215794278,52.832415341088556],[-128.43527500153326,52.832503935472765],[-128.43531518136976,52.83263765582723],[-128.43533183351528,52.832749994753684],[-128.43533294323973,52.83278585275969],[-128.43533684736158,52.83282165279593],[-128.43533431263387,52.83292374204187],[-128.43531091517298,52.83303523432319],[-128.43530061752068,52.833099361007555],[-128.43531928990177,52.8331331772418],[-128.43531919592093,52.833180273027274],[-128.43526623364315,52.83326266012721],[-128.43521024944857,52.83337370704544],[-128.43518032789058,52.83345226126885],[-128.43517039470666,52.83347377166201],[-128.43516238345657,52.833496363468825],[-128.43511874275273,52.83357912224032],[-128.43501801107334,52.83370455256693],[-128.43485599068254,52.83381555600226],[-128.43464545586104,52.8338911191911],[-128.4344192523404,52.833936741286166],[-128.43427925682758,52.83396094853337],[-128.43424336915987,52.833967855222795],[-128.4342185171887,52.83397229948934],[-128.4341506649718,52.8339894042888],[-128.43404451931644,52.8340364562899],[-128.43393361278012,52.83409761841182],[-128.43385254794805,52.83416041329371],[-128.4337526736064,52.834300957405794],[-128.4336560627522,52.834514882078075],[-128.43362925351374,52.834697085154346],[-128.4336273976718,52.83484401126905],[-128.43361508442436,52.834970414954476],[-128.43359898065287,52.83506324984512],[-128.43358426608063,52.83513139675288],[-128.43356516877722,52.8352041106495],[-128.4335325072184,52.83531635944657],[-128.43349317938507,52.835442192779816],[-128.4334492778669,52.835520471009396],[-128.4333971821803,52.83555294661461],[-128.4333753644895,52.83556181290229],[-128.43339326455782,52.8355659270085],[-128.43342331821052,52.83558716454462],[-128.4334247458858,52.8356286222768],[-128.4333926367584,52.835685351748005],[-128.43335979760965,52.83574546017395],[-128.43332691181214,52.8358050133991],[-128.4332723127618,52.83590761625534],[-128.43319830847346,52.836061643908586],[-128.4331341524592,52.836225002742886],[-128.4330932418667,52.83637217291657],[-128.4330816610578,52.8365114514161],[-128.43308241160628,52.83662244239837],[-128.43308282176739,52.83666224375571],[-128.43296891626747,52.836703848963786],[-128.43270059608443,52.83681032395601],[-128.43248830217152,52.836904424762196],[-128.4324373811988,52.83694136063478],[-128.43238673048705,52.83698277599322],[-128.43208025872536,52.83713825480059],[-128.4316131748463,52.837364335865026],[-128.43138706352332,52.83747721728638],[-128.4313546377602,52.83749582920376],[-128.43107047860136,52.83761832609876],[-128.43049621515496,52.83785727823458],[-128.43010607876846,52.83801391831054],[-128.42980559989883,52.83812777953343],[-128.42912262880628,52.83832019428698],[-128.42837590678602,52.838471315048515],[-128.42809546479856,52.83851243959718],[-128.4280991746825,52.838561133811076],[-128.42811125041385,52.83865900004056],[-128.42814474416207,52.83872446253941],[-128.428301171858,52.838808686803006],[-128.42853161024416,52.83895136374756],[-128.42863224826186,52.83905243934663],[-128.4286354403494,52.839124699972956],[-128.42863459909103,52.839273281673066],[-128.42863672367437,52.83947394572324],[-128.42864059908132,52.83968915008916],[-128.4286457736896,52.83989423609318],[-128.4285917815513,52.84000804531387],[-128.4284740562141,52.84008055533293],[-128.42841035709753,52.84018727244753],[-128.42838734337568,52.84033856411246],[-128.4283432639764,52.84054466866539],[-128.42825635576315,52.84071745559475],[-128.4281191722826,52.84079149781646],[-128.4279671849151,52.84086695828134],[-128.42782673256966,52.840965170593535],[-128.42768243295274,52.84104496575918],[-128.42753914030789,52.8411589342208],[-128.42739893129792,52.84129414289797],[-128.4272851916124,52.841387873315625],[-128.42723953944562,52.84145217334574],[-128.42719768196318,52.84151750721405],[-128.42701609451498,52.841563312831454],[-128.42670529135773,52.84159440451682],[-128.42662407622012,52.84167120810297],[-128.42685194353135,52.841768534428674],[-128.4269838385224,52.84184653987226],[-128.42697655407704,52.84188200598719],[-128.42697171216417,52.84189500516616],[-128.42682567426783,52.84196081469125],[-128.4264603084482,52.84209562510299],[-128.42594626525653,52.842200998222694],[-128.42523697472075,52.84230815031029],[-128.42454474359042,52.84243738014987],[-128.42403534972505,52.842444533180846],[-128.4235048638073,52.84230971818625],[-128.4229584061806,52.84222120243761],[-128.42241180112165,52.842261067968096],[-128.4220072608774,52.84231258618737],[-128.42186076446941,52.84230495125834],[-128.42170274753244,52.84222523645139],[-128.42144313749137,52.84209323949786],[-128.42128043666574,52.8420130556152],[-128.4211935347781,52.841973360621544],[-128.42108274554653,52.841939208284614],[-128.4209845834736,52.84193057568953],[-128.42088537519055,52.84193655003307],[-128.420608840187,52.84193215962731],[-128.42022442367102,52.84191205193218],[-128.4200563427759,52.84190093972012],[-128.42003783916726,52.84191926135342],[-128.42000877207158,52.84194789209731],[-128.41993491421593,52.84202341788154],[-128.41986499505668,52.842102782390285],[-128.41980314527822,52.84217693934099],[-128.41973470325092,52.842249554683036],[-128.41968883108822,52.84229366425096],[-128.4196475492388,52.842336566912],[-128.41958188635977,52.84240911590902],[-128.41950454857133,52.84252171487018],[-128.41942192058985,52.84265572682549],[-128.41934926767888,52.84275253139316],[-128.4192770115464,52.84282353860649],[-128.41920056206718,52.842886227148796],[-128.4191367396823,52.84294191893021],[-128.41907339386344,52.843006014833186],[-128.41901354299029,52.84304985591243],[-128.41889703285196,52.84307861025488],[-128.41872286309726,52.843124240914825],[-128.4186086722678,52.84316135219533],[-128.4185859893439,52.84317135463589],[-128.41859545621125,52.84319077731038],[-128.41863600721055,52.84328245097089],[-128.41868500733295,52.84345748037458],[-128.41867131267293,52.84360968941869],[-128.41861474742282,52.84369494938981],[-128.41854517266978,52.843780477270876],[-128.41846560603543,52.843870139800515],[-128.4184046879337,52.84394427664039],[-128.41831103164165,52.84404824054182],[-128.41816719461653,52.84416949157454],[-128.41804318246287,52.84424661383569],[-128.41794944630223,52.84428330317805],[-128.41784308234148,52.84431071721545],[-128.41773991069184,52.84436162094627],[-128.4176167235265,52.84443703935347],[-128.4174634347858,52.844490086914256],[-128.41731086191723,52.84452294574895],[-128.4171810667206,52.84456374051664],[-128.41706863262627,52.844615390426554],[-128.41698129555385,52.844666523667506],[-128.41693649871246,52.84471341749192],[-128.41688577569457,52.8447705246373],[-128.41675775483716,52.84485893159693],[-128.41656179506055,52.84494705910444],[-128.416410218551,52.845014090246984],[-128.41635199552903,52.84508649299426],[-128.41630581333723,52.84515808283254],[-128.41625918677107,52.84522183294978],[-128.41623300537898,52.84526889957561],[-128.41621893058877,52.84528320944346],[-128.41620321910383,52.84530147291953],[-128.41615261936144,52.845377073505006],[-128.416086831126,52.845496724766214],[-128.4160018370692,52.84562236844985],[-128.41590076694112,52.84574330158499],[-128.41580829110762,52.84585172392869],[-128.41575429223283,52.845916746709946],[-128.4157357364559,52.84593394735607],[-128.41572707810343,52.84594533808836],[-128.41566952235317,52.84599697884689],[-128.4154942194731,52.84610486214354],[-128.4152239847338,52.846228717876606],[-128.41502511008008,52.84629839720048],[-128.41496661886794,52.846316984088865],[-128.4149579602323,52.846328374761676],[-128.41492583770682,52.846352581823055],[-128.414864453226,52.84638579558101],[-128.4147746656263,52.84642688603577],[-128.4146711680967,52.84647218721787],[-128.4145891144879,52.84651815968554],[-128.41450831465943,52.84658654050121],[-128.41441185025099,52.846657476861736],[-128.41433656483483,52.846691541230946],[-128.4143006951886,52.846699006228626],[-128.41425190801883,52.84672467694676],[-128.41396678488815,52.846815753991415],[-128.41349611413946,52.84693251281533],[-128.41319466130332,52.84699813453369],[-128.41306539623972,52.84703218600156],[-128.4129609235675,52.8470931942953],[-128.4128796098419,52.84716886815118],[-128.4128415581198,52.84720328775103],[-128.4128317718723,52.84721133763448],[-128.41281330966592,52.847230222220844],[-128.41280355483948,52.84723882760067],[-128.41278150210238,52.84726002846945],[-128.41270544677653,52.847329987851325],[-128.41247446259305,52.84737509844366],[-128.41212366411597,52.84734137380658],[-128.41191672635543,52.84731815769794],[-128.411778469448,52.84734117978634],[-128.41144425240103,52.84741980359207],[-128.41107160071525,52.84752612571304],[-128.41088883969138,52.847584819422345],[-128.41077022183111,52.84765901499408],[-128.41063678819398,52.84778397116508],[-128.4105688779348,52.84784983296947],[-128.41054531718538,52.84786097301397],[-128.41051921375472,52.84787664130509],[-128.4104741402723,52.84790223413458],[-128.41023216717417,52.84790103803278],[-128.40970781951725,52.84784228023377],[-128.4091613274339,52.84778677305743],[-128.408827047122,52.84776559865219],[-128.40872345659017,52.84775987459158],[-128.40871751327052,52.84777008780436],[-128.4086819489541,52.84781566751498],[-128.40861179038086,52.847907928256696],[-128.40850986713434,52.848030558183126],[-128.40837585147642,52.848161685959106],[-128.40823001904036,52.84828128716382],[-128.40811558660593,52.8483638079681],[-128.40803006298276,52.84839807802791],[-128.40786000591208,52.84838530210268],[-128.40764010610312,52.848346646594926],[-128.40754711375286,52.84833116903984],[-128.4075155481266,52.84833238124969],[-128.40745367598822,52.84848893905132],[-128.40741845967347,52.848820996475546],[-128.40745817835113,52.84909601111529],[-128.40753363061222,52.8492951690888],[-128.407527467416,52.849466282358165],[-128.40730236155179,52.84961553857481],[-128.4068592928447,52.84976085643882],[-128.40651380024548,52.84983801023255],[-128.4064206996647,52.849853372936465],[-128.40640306034882,52.849870553174895],[-128.40643362814185,52.849917584635364],[-128.40673694358804,52.8499999484271],[-128.4071747438075,52.850123840178725],[-128.40736487449925,52.85024496744329],[-128.40736907930398,52.850319440189104],[-128.40732273822806,52.85037196776538],[-128.40725180743794,52.850417715660576],[-128.40719670946206,52.850479948840764],[-128.4071518773437,52.85059243698876],[-128.40710190583462,52.85072913291529],[-128.40703040707015,52.85086346237547],[-128.40693806742541,52.85099150032757],[-128.4068476003893,52.851119490840254],[-128.40678631666376,52.85125361972393],[-128.40675688469778,52.85139157189938],[-128.40673661428607,52.85149402132471],[-128.4067198077017,52.851542579606935],[-128.40667860985272,52.85160397147713],[-128.40657956806587,52.85171196381331],[-128.40645051628437,52.85181607694904],[-128.4063345281371,52.851904233707295],[-128.40624125041043,52.85201546239889],[-128.40618453398312,52.8521152945703],[-128.40616893683801,52.85215205929364],[-128.40615149729928,52.85218941789863],[-128.40610104102632,52.852284636752664],[-128.40606056814826,52.852358903408515],[-128.40604944107497,52.85237595013554],[-128.4060727643698,52.852377158708926],[-128.4064354304505,52.85237309246377],[-128.40722831484808,52.852424119769076],[-128.40784208106504,52.85254945288259],[-128.40814182921972,52.85268346412619],[-128.40842039180689,52.852854345296436],[-128.4085527996841,52.85310615461143],[-128.40856713051312,52.853359829021535],[-128.4085934114361,52.85347926414765],[-128.40861798381948,52.853502306559356],[-128.4086287697841,52.85351217664907],[-128.40864347824464,52.85352533005778],[-128.40874805050206,52.853663342154306],[-128.4090267488067,52.85396821336761],[-128.4092670574733,52.85423574880412],[-128.40935338792107,52.85439655960047],[-128.40947160615974,52.854496168566726],[-128.40959353838718,52.854611954905515],[-128.40962842562615,52.854768214557645],[-128.40971154700986,52.85493806093866],[-128.40998885497956,52.855201472122616],[-128.4103937804284,52.85548356771512],[-128.41075895159227,52.855638655116316],[-128.41100928788558,52.8556716395488],[-128.41122563772058,52.85571261375757],[-128.41147518422915,52.85581400984196],[-128.41159906010463,52.85586528674257],[-128.41157720521517,52.85590665668224],[-128.41152707341664,52.85600747740157],[-128.4114935809405,52.856090016444256],[-128.4114800492999,52.85614692198401],[-128.41146498492506,52.85624253770948],[-128.41146098940345,52.85636932125255],[-128.4114645151796,52.8564645553137],[-128.41146613037066,52.856493109601594],[-128.41156849201363,52.85655884836561],[-128.41177702547893,52.85670817847242],[-128.41189449185416,52.856810599185984],[-128.41195138217702,52.85686212989644],[-128.41205069598,52.85692344583238],[-128.41214517926647,52.85698148815629],[-128.4122339594188,52.85703741399154],[-128.412297174458,52.857085450901955],[-128.41233693559911,52.85714685936238],[-128.4124081683432,52.85723790425424],[-128.4125367743775,52.857356358216855],[-128.41266045262446,52.85748612577939],[-128.41271368291302,52.85758818765689],[-128.41273235865452,52.85765507918921],[-128.41275210095193,52.85770792867426],[-128.4127761958414,52.85777191024305],[-128.4128415705162,52.85784176244357],[-128.41291112538613,52.85790312383803],[-128.41289840795446,52.85794150763573],[-128.41289666875647,52.857993120950496],[-128.41297308033506,52.85810984792024],[-128.4130525693711,52.85826462521524],[-128.41309781673974,52.858422913481675],[-128.41313418469784,52.85855559534141],[-128.4131691432359,52.85866363860176],[-128.41320405342427,52.85877056158981],[-128.4132407625862,52.85886007269332],[-128.41327005534026,52.858917210881515],[-128.41327961863863,52.8589383181936],[-128.4132881619153,52.858974022728866],[-128.4133053085424,52.859079633214606],[-128.41332156070038,52.85921889063778],[-128.41333663468356,52.85936994987574],[-128.41336467354108,52.859536440262424],[-128.41340815961482,52.85969645087945],[-128.41344912406578,52.85981165426998],[-128.41347590467572,52.859890156740384],[-128.41350503399707,52.85999383460736],[-128.41354553484854,52.860133714995705],[-128.4135850182174,52.86028875763738],[-128.41358165421343,52.86049233822338],[-128.4135613321466,52.86070859197656],[-128.41358668039211,52.86081122621822],[-128.41361424912645,52.860821316165264],[-128.41357562924583,52.86086247464191],[-128.41349260352027,52.86095780031155],[-128.41344054767694,52.86105753977475],[-128.4134133387056,52.86120161875478],[-128.41337778448232,52.86136268789915],[-128.4133439892188,52.86143962714857],[-128.41331841771606,52.86146481995737],[-128.41331164676544,52.86147673665865],[-128.41326054997006,52.86152767744322],[-128.41313557024614,52.861621631074435],[-128.41297632748436,52.86171852184654],[-128.4128515890055,52.861783873845],[-128.41279884356234,52.86180570475259],[-128.41277588040455,52.86181121751022],[-128.41271820865964,52.861828099450506],[-128.41264327874165,52.86185262839628],[-128.4126004027202,52.86186808516745],[-128.41257260580508,52.86188659600114],[-128.4125025032307,52.8619306430881],[-128.41240428195755,52.86202067363785],[-128.41237680506325,52.86212720036052],[-128.41238772824218,52.86218864473684],[-128.41238638342813,52.86224697728274],[-128.412380808384,52.862329499051796],[-128.41237039949752,52.862425018918564],[-128.41235150031625,52.86255155193523],[-128.41232762792217,52.8626725718441],[-128.41228478674972,52.86275418140448],[-128.41220490315516,52.86283935913391],[-128.41211422957977,52.862914658134834],[-128.41206422893444,52.862952129776644],[-128.41204293122885,52.86297050701464],[-128.41202916555886,52.86299040699432],[-128.4120136992546,52.863013149492204],[-128.41200484328286,52.863037442628276],[-128.41199735617855,52.86305329381526],[-128.4119960457804,52.86309592813712],[-128.41198816388982,52.86318691103005],[-128.41199246981603,52.8632793210797],[-128.41205760867874,52.86337777476257],[-128.4121322980185,52.863480517312034],[-128.41213679791335,52.86356003350149],[-128.41208378505675,52.86364297300643],[-128.4120418682029,52.863708309818655],[-128.41203255006346,52.86374101730282],[-128.41198283229298,52.86388219395251],[-128.41196153088217,52.864196580476666],[-128.41207830601437,52.86446720219106],[-128.41222754137857,52.8646042940398],[-128.41230545569422,52.864731081529555],[-128.4122500429028,52.86490320493154],[-128.41211001993986,52.865077074393504],[-128.41201865124773,52.86518938851515],[-128.41199952772112,52.86531199696682],[-128.41197594870602,52.86547114185775],[-128.41185432102913,52.865575107025855],[-128.41169951526913,52.86565228706151],[-128.41139986013803,52.8657520661996],[-128.4109528510075,52.86583019204858],[-128.41052949186582,52.86589886994717],[-128.41010994072377,52.86598539912176],[-128.40989922677815,52.866028408796346],[-128.4098734792403,52.866033978029506],[-128.4097671554566,52.866046815124676],[-128.4095692984603,52.86608675289583],[-128.40938885314938,52.866154920507704],[-128.4092859156383,52.866227669793496],[-128.4091280678944,52.86630042366968],[-128.40884369311254,52.866324759376496],[-128.40858960408713,52.866308664892216],[-128.40850179788882,52.86630317233443],[-128.40838660661487,52.86630721998561],[-128.40808888579866,52.86637554695238],[-128.40781067081085,52.86654215177112],[-128.4076561862052,52.86674041387038],[-128.4075163997918,52.86700116412663],[-128.4073971241495,52.867278868656136],[-128.40727878019896,52.867408558896],[-128.40693584744307,52.867483980330576],[-128.4064602725471,52.867600795865656],[-128.4062228461361,52.86769872149936],[-128.40614491015782,52.86778553189743],[-128.40605749234572,52.86785291916341],[-128.4060050833966,52.867880902164565],[-128.40593814560066,52.867915344987374],[-128.40583585630637,52.867966774109554],[-128.40573611063797,52.868013666091294],[-128.4055749999932,52.86806181436362],[-128.40538393579695,52.86809039328579],[-128.40524689870247,52.86810328979615],[-128.40512344712474,52.86812599921852],[-128.4050207982285,52.86815445400996],[-128.4049489501212,52.86818451178508],[-128.40495503815148,52.86827577275199],[-128.40504209243272,52.86844946050196],[-128.40510570527576,52.868570373590835],[-128.4051155195053,52.86859596122482],[-128.40511124032795,52.868701445396],[-128.40498442720857,52.86902752333273],[-128.4046455545872,52.86935681082601],[-128.40429098078457,52.86944087604838],[-128.40408970784458,52.869420883203645],[-128.40391691670484,52.86944347950295],[-128.40368185314276,52.86946791456159],[-128.4033883159795,52.8693634725348],[-128.4029878203089,52.86916143598622],[-128.4025172409907,52.86907014743095],[-128.40206832347363,52.86906587077774],[-128.40183521233885,52.86905885861846],[-128.40180908372776,52.869057715346194],[-128.4018091489223,52.869091907291384],[-128.4018084205763,52.86916143894086],[-128.4018069564286,52.869284248917396],[-128.4018102090647,52.869490490204576],[-128.4018118302024,52.86968443120012],[-128.4018117833405,52.86979935453254],[-128.40151540291427,52.869809341209525],[-128.4007747338441,52.869715716825496],[-128.40009934438248,52.86965719014758],[-128.3997566485212,52.8696714821528],[-128.39961471080946,52.869679987086],[-128.3995855953384,52.86967553163182],[-128.39957434366556,52.86970715603288],[-128.39950304960013,52.869796633502105],[-128.399378794686,52.86988774852137],[-128.39930122682446,52.869931939404616],[-128.39932717674498,52.87004577560953],[-128.3991575425097,52.87030655848484],[-128.39870000701166,52.870513236948966],[-128.39833900552463,52.87053293942435],[-128.3980680963238,52.87048297193308],[-128.3978517467109,52.87047617475876],[-128.397787383336,52.87049037790116],[-128.3977340205531,52.87050155793104],[-128.39763470226168,52.87052321063993],[-128.39758127639072,52.87053327065107],[-128.39753797638974,52.87054143769262],[-128.39745797874147,52.8705755857429],[-128.3974255121792,52.870627268826084],[-128.39742379985856,52.87067943668897],[-128.3973922782095,52.870747918996855],[-128.39730944905068,52.87084771243353],[-128.39720432750715,52.87093170717242],[-128.39713506846257,52.8709746057704],[-128.39710260227318,52.87099320783489],[-128.3970610030539,52.87103162228436],[-128.39698140286885,52.871122379702506],[-128.39692097538472,52.87120658366197],[-128.39690234558364,52.87123947946372],[-128.3968916047295,52.871263809572305],[-128.3968667959184,52.87131925608407],[-128.3968343575351,52.87140456642361],[-128.39680919305144,52.87147011127368],[-128.3968019195259,52.871489885709224],[-128.39679391204336,52.871513029845794],[-128.39676808448908,52.87159989164402],[-128.39674298893573,52.87171645567326],[-128.39673305547186,52.87180467062708],[-128.39673299863458,52.87185344992662],[-128.39673664435662,52.87190158860387],[-128.396742125565,52.87196594324108],[-128.39660302877,52.87205847890652],[-128.39621528594503,52.87218243848162],[-128.39584395852467,52.872250556533096],[-128.3956967250822,52.87224795217755],[-128.39553266219642,52.87221093251669],[-128.39518894223784,52.87214113021163],[-128.39473807386702,52.872102671595506],[-128.39430017912218,52.872112716026066],[-128.394076452314,52.872124001778076],[-128.39399943817503,52.8721283694116],[-128.39391969040864,52.872133922886505],[-128.39380962665354,52.87214681231121],[-128.39366932561632,52.872168175166706],[-128.39354669879873,52.87218916887372],[-128.3934535615601,52.87220508584327],[-128.39329860219442,52.872230666637925],[-128.39300831162737,52.87228310524665],[-128.3927488560091,52.87233772281783],[-128.3926069138997,52.87236303761815],[-128.3924799175639,52.872356097355784],[-128.39236784087427,52.8723331470076],[-128.39232903213244,52.87232160357269],[-128.39224029945294,52.87233294497038],[-128.3920362370006,52.87236288739491],[-128.39183152371402,52.87241414608412],[-128.39168755263205,52.87250284608253],[-128.39166450176182,52.872606468419846],[-128.39170457731643,52.872673491669005],[-128.3917149446262,52.872692341572915],[-128.39182918057634,52.872720845781465],[-128.3920963036791,52.87278604588726],[-128.39228132609685,52.87283161346375],[-128.39234369931276,52.872881364115216],[-128.3924217058714,52.8729941414828],[-128.39252142202395,52.87311208294541],[-128.39261480938842,52.87318361764343],[-128.39270951667157,52.87322878096766],[-128.39277734453,52.87327617787316],[-128.3927504129321,52.87336025342384],[-128.39263780084755,52.87347691183089],[-128.39254334590348,52.87358535182224],[-128.39250009543568,52.87366079866609],[-128.3924885542532,52.873687378055855],[-128.39251131194393,52.87369476332933],[-128.39256526675044,52.87371048326619],[-128.39266160023425,52.873751693707504],[-128.39306625465557,52.873928456855765],[-128.39373325341387,52.87418452344134],[-128.39422051080598,52.874306902289476],[-128.39449053776312,52.874324390193784],[-128.39461362217497,52.87434430675201],[-128.39463210120013,52.87435850619688],[-128.39467987706345,52.874396775711084],[-128.39471802431754,52.87442963526669],[-128.3947227821871,52.87444803412939],[-128.39474534895874,52.87448513996739],[-128.39478930788198,52.87455488167563],[-128.3948301550553,52.874619080629024],[-128.3948649193085,52.87467443368964],[-128.39488780053188,52.8747171302741],[-128.39490142438729,52.87474432725834],[-128.39490897957037,52.87476266910447],[-128.3949154720175,52.87477879911717],[-128.39491991529474,52.87479159822987],[-128.3949692066585,52.87490664551104],[-128.39510291323626,52.8751489048427],[-128.39523346038968,52.87530153896764],[-128.39539422943872,52.87527975727604],[-128.39566088984895,52.87518743065169],[-128.39585126082684,52.875129165479194],[-128.3959663829228,52.87512345469517],[-128.39610484044252,52.87511895433308],[-128.39616791779784,52.875114860636984],[-128.39624243618414,52.87514866443606],[-128.3964479206705,52.87524314260986],[-128.39668201327825,52.87534992666851],[-128.39688394651728,52.87543102176105],[-128.39702531779727,52.875478037533796],[-128.397077307023,52.875492109222904],[-128.3971030619449,52.87548654282605],[-128.39715066251767,52.87547211709413],[-128.39727627410699,52.87547067600084],[-128.39749278357058,52.87546345159092],[-128.39764960417105,52.875421009062826],[-128.39776627949772,52.87542647715344],[-128.39793035627275,52.87549657444576],[-128.39805149068204,52.875547921764785],[-128.3981716882456,52.87556620726482],[-128.3983357982171,52.87557070679546],[-128.39843942366912,52.87557588442178],[-128.39844776818543,52.87567438250645],[-128.39842737903885,52.875858115511186],[-128.39855437828078,52.87598054532589],[-128.39880136531357,52.876034929346815],[-128.3989305889323,52.87606480727681],[-128.39894835968124,52.87606612188164],[-128.39896595817567,52.87606464140575],[-128.3990233859374,52.87607580264328],[-128.3991621615362,52.87610997025712],[-128.39931100844606,52.87615738687388],[-128.39942455796006,52.87622290756688],[-128.3995586610981,52.87628968584794],[-128.39970499534897,52.87634219434508],[-128.3998549241278,52.8763923957687],[-128.39997961039026,52.87644086107487],[-128.40005693142191,52.876474605301695],[-128.4001208393169,52.87650188705554],[-128.40019018445142,52.87652625913278],[-128.40025560570132,52.876547347616345],[-128.4003126017553,52.87656748691451],[-128.4003566415489,52.876589012050296],[-128.40043210424233,52.876655865855994],[-128.40054718007323,52.87676508238033],[-128.40060331827343,52.8768194321585],[-128.40073231410747,52.8767954936806],[-128.40099761881376,52.87674522441755],[-128.40118462623968,52.87671000912704],[-128.40131359011158,52.876685514517895],[-128.40141767305198,52.87666544801281],[-128.40149989515973,52.876654232894886],[-128.40163138112925,52.87664145484923],[-128.40176195399127,52.87664551380743],[-128.40183982055672,52.87667251834806],[-128.4018898415317,52.8766843857213],[-128.40197281206085,52.876669800246006],[-128.40217945900554,52.876652677798674],[-128.4025149039695,52.87662451722644],[-128.40282801962553,52.876579993735135],[-128.4030607363811,52.876562901795594],[-128.40324240097294,52.87656479313688],[-128.40339872850373,52.87656328253372],[-128.40362538840432,52.87658723388753],[-128.40386866559345,52.876641683322724],[-128.40402030861483,52.87667278350469],[-128.4041316189199,52.87666545643192],[-128.40424332971273,52.87664859505489],[-128.40439382499443,52.876642717513946],[-128.4046127679227,52.87664552141545],[-128.40485783401954,52.87663265816638],[-128.40506721422548,52.876614362419026],[-128.40523098101352,52.87661268816668],[-128.40541933228297,52.87663406539028],[-128.4056372109691,52.87668398103061],[-128.40583430414614,52.876761240397336],[-128.40601751509365,52.876856714446085],[-128.40621055306397,52.876944703473505],[-128.40643318664823,52.876996206662966],[-128.4067074445512,52.877021985070805],[-128.40699259442445,52.87704305482302],[-128.40724192628937,52.877072706217234],[-128.40742706694132,52.877103115928634],[-128.4075193425509,52.87712140786951],[-128.40775367386692,52.87713286061713],[-128.40816349175358,52.877135676021815],[-128.4083897340688,52.87713552476691],[-128.40842680609404,52.87713252256665],[-128.4084759558462,52.87714553524312],[-128.4085688453209,52.877191279588914],[-128.40868360246034,52.87726125183845],[-128.40884054914477,52.87733652154747],[-128.40904966181284,52.877379327122725],[-128.4092159564663,52.877389373025146],[-128.4093022417696,52.877400493872415],[-128.40940189527157,52.877417511872835],[-128.40952305742522,52.87743633128072],[-128.40961956121163,52.87746350480516],[-128.40969275990307,52.87749003486747],[-128.40972413826654,52.8775017250803],[-128.4097450096176,52.87750858964731],[-128.40979069315713,52.877526148837084],[-128.40982871550898,52.8775399452614],[-128.40987827761802,52.87756023246351],[-128.41002645368425,52.877628396934945],[-128.41018653474833,52.87770976294604],[-128.41029867576006,52.877766332492584],[-128.41040385578182,52.87781518707992],[-128.4105389540748,52.877866235500825],[-128.41073972168473,52.87792602786043],[-128.4109903606633,52.87797863447502],[-128.4112351982844,52.87802743077835],[-128.41141040692153,52.87807989775196],[-128.4114905539298,52.8781141328196],[-128.41156054204168,52.87814969752888],[-128.41166349438328,52.878224950292214],[-128.41173799031174,52.87830751435099],[-128.41176743971002,52.87835063825578],[-128.41177668966694,52.87836614575157],[-128.41184679844542,52.87835461586887],[-128.41198199299657,52.878324931641004],[-128.41207925411337,52.87831620807357],[-128.4121350819644,52.878331880808226],[-128.41220170293522,52.878357423123376],[-128.41231483719875,52.87839882923985],[-128.41245591778423,52.87844021773031],[-128.4125732979924,52.87847425289095],[-128.41272241464677,52.87857546678684],[-128.41295279096002,52.878730508931945],[-128.41320809088126,52.87881608726946],[-128.41336289452636,52.87885327307984],[-128.41341857930723,52.87888296811512],[-128.41347776189141,52.87890866247959],[-128.41356008932007,52.87894845759607],[-128.41364597565203,52.87900163441812],[-128.41378462264382,52.879082314658675],[-128.41421942791914,52.879147950563734],[-128.41491807550645,52.87915377929501],[-128.41554778686304,52.87920811276516],[-128.416176856599,52.87936616617571],[-128.41669883125883,52.87949110397799],[-128.416860604317,52.879519737163356],[-128.41685484740657,52.879549563894024],[-128.4168969241662,52.87961821542792],[-128.41701892066712,52.8796678486777],[-128.4171437795548,52.879702281726125],[-128.41724611013055,52.879766330205626],[-128.41727787011786,52.87985032603809],[-128.41716324180283,52.87994686765637],[-128.41698998242174,52.88004405877108],[-128.41686279387227,52.880149263163204],[-128.41681687439646,52.88025896755629],[-128.4168171552616,52.880345862234996],[-128.41683172834234,52.880438625338606],[-128.41686615620708,52.88056965838294],[-128.41689959698778,52.88071585290806],[-128.41690388156812,52.880857040791014],[-128.4168864185149,52.880992513550055],[-128.41686202498636,52.881087755276795],[-128.41685116429304,52.881126100692406],[-128.41682996885132,52.88117923471006],[-128.41678334816913,52.88129288223024],[-128.41671771172912,52.88143270021333],[-128.4166501345894,52.88157088067093],[-128.41659920616502,52.88167452550899],[-128.41656889827985,52.881747463973404],[-128.41652804854428,52.88184809396024],[-128.4164223800043,52.881955106612054],[-128.41632030556752,52.882043540370006],[-128.4163153855949,52.88213726030269],[-128.41628312066715,52.882241642485404],[-128.4161804702469,52.882352512657796],[-128.41609437164712,52.8824434163598],[-128.41602554109465,52.882510428040966],[-128.41595949262026,52.8825773735195],[-128.4158970206387,52.88264144683585],[-128.41581357716356,52.88273006221483],[-128.41570768000443,52.88284940340776],[-128.41562744592895,52.88294523621304],[-128.41547802868405,52.882937659671995],[-128.4152707887784,52.88291220117112],[-128.41521762916358,52.88300916365694],[-128.41526960867878,52.883121340339805],[-128.41525292402147,52.88318839221303],[-128.4151907675243,52.88325806478348],[-128.41515742397812,52.88329407332069],[-128.41514808488776,52.88335929686407],[-128.41509909914555,52.88353016603868],[-128.41501145957287,52.88372538426914],[-128.41494609708087,52.88388649868648],[-128.4149095948081,52.88401451326905],[-128.41488766062758,52.88410409757884],[-128.41486542433802,52.884188090881736],[-128.41480221586767,52.88427236082051],[-128.41472510687632,52.88439055331205],[-128.4146939544988,52.884580116769705],[-128.41467371453777,52.88473246426581],[-128.41464413344275,52.88480202334993],[-128.41463415847406,52.88485604749134],[-128.41464596482996,52.88491635159056],[-128.41467616858495,52.88497291405275],[-128.4147132890696,52.88501980841307],[-128.41473866130113,52.88505684403596],[-128.41475671745943,52.88511253479385],[-128.41478181454667,52.885193869279355],[-128.414810219916,52.88526785225836],[-128.41483953292487,52.88532498910698],[-128.41487597024562,52.885376382385495],[-128.41493132744566,52.885432984148785],[-128.41500954816772,52.88549865112087],[-128.41511543248362,52.885592345607456],[-128.41522513053377,52.88570389241044],[-128.41527163387067,52.88575227117358],[-128.4151216269182,52.88581646505641],[-128.41481722346856,52.885949974484305],[-128.41463256743893,52.886027213078954],[-128.41454306241752,52.88605820370804],[-128.41443458775353,52.88609967500398],[-128.41435221817042,52.88615798463774],[-128.41426254626018,52.88625176750453],[-128.41417368462805,52.886343291182676],[-128.4141113142572,52.88642586596625],[-128.41405658921266,52.88652845691203],[-128.4140105463745,52.88661966616636],[-128.41397759377543,52.88667920309899],[-128.41393891653215,52.886736058982024],[-128.41388815144316,52.88682624390892],[-128.41388230222634,52.8869368009016],[-128.41389494735427,52.88702848226041],[-128.41384530982302,52.88712200768444],[-128.41384666580976,52.887211678391225],[-128.413906710959,52.88730182128299],[-128.41388389134906,52.88744132262312],[-128.41382084407286,52.88757773016898],[-128.4137989377527,52.8876678785202],[-128.41379824003516,52.887770481042736],[-128.4137958693015,52.88790956241627],[-128.41378878917382,52.888063881585424],[-128.41376932306895,52.88821340504108],[-128.4137290773325,52.88834148665861],[-128.41368344695027,52.8884237173107],[-128.41362658989098,52.88850504824451],[-128.41356247882857,52.888606154101105],[-128.41349153124887,52.888701794116834],[-128.4133833252604,52.8888138962218],[-128.41327834689642,52.88891696210507],[-128.41323259070356,52.88898069032034],[-128.4131929727124,52.88903756512518],[-128.41313257245932,52.88908926037388],[-128.4131141237108,52.88910869999386],[-128.41313652653258,52.88912617980112],[-128.41316315523395,52.88916880501903],[-128.41318076387014,52.88923290979686],[-128.41318697054106,52.88930959113074],[-128.41319157004514,52.88939078140312],[-128.41320626830202,52.889469530874216],[-128.41322870862695,52.889553162459734],[-128.41324903733963,52.88961609014908],[-128.4132720544647,52.88967728528482],[-128.41329883304365,52.889788302407545],[-128.41331086579294,52.88993493648353],[-128.41331989300193,52.8900777034581],[-128.41334065734495,52.89021406719419],[-128.4133809471587,52.890366292390134],[-128.41343367187844,52.890524424558635],[-128.41347925807247,52.89067149095612],[-128.41350679631145,52.89081220047907],[-128.41362689315707,52.89100874852513],[-128.4138169396506,52.89123974853322],[-128.41387348655354,52.89136640758471],[-128.41385040982237,52.89138649843405],[-128.41380818838195,52.89139745640255],[-128.41370534213945,52.89145619456147],[-128.41361888233746,52.89157401235263],[-128.41359909673668,52.89171793582416],[-128.413604914759,52.89185348503084],[-128.4136087365087,52.89193749870352],[-128.41361203642347,52.89199573483271],[-128.41362724111633,52.892099696912986],[-128.41366235003449,52.89224249333135],[-128.41372039183258,52.89237921275789],[-128.41377640312055,52.89248009454083],[-128.413805065465,52.8925585571266],[-128.41382727132014,52.89263826452523],[-128.4138521171963,52.89271511912763],[-128.41388368742153,52.892812017760996],[-128.4139331749632,52.89294554901739],[-128.4139664592567,52.893072685579575],[-128.41397882101936,52.893159331397804],[-128.41397786051672,52.89320812004219],[-128.41397720584513,52.893229436811325],[-128.4139768193728,52.89327205139972],[-128.41397549006683,52.89334720094779],[-128.41397515046648,52.89339037966925],[-128.41399604182374,52.89343031490606],[-128.41404542565044,52.893512827877025],[-128.41410048706962,52.893596910571695],[-128.41416655415827,52.89367796866518],[-128.41424801403983,52.89376767148586],[-128.41431840846394,52.89384303449834],[-128.41438182189734,52.8939101271402],[-128.41443222789616,52.893961224591216],[-128.41445501472055,52.8939854236367],[-128.41447182206602,52.894002461982716],[-128.4144876276569,52.89401839070189],[-128.41453822694925,52.89405659450879],[-128.414669052605,52.89414641340532],[-128.41481368230504,52.8942331410832],[-128.41492092782389,52.894284757197816],[-128.4150734963497,52.89434721062654],[-128.41526502560671,52.894439701738236],[-128.4154048547241,52.89452372875339],[-128.41549217374904,52.89458527969039],[-128.41556820236718,52.89464482904873],[-128.41563430702752,52.89471017942777],[-128.4157058973279,52.89479000198762],[-128.41586194754038,52.89489723200142],[-128.41608032668685,52.894986927671695],[-128.41627385176622,52.895032284631036],[-128.4165167894433,52.8950951304331],[-128.41677217743344,52.89518013541039],[-128.41690463548258,52.89523291784971],[-128.41702856893983,52.89528306783668],[-128.41720485546904,52.89535287960489],[-128.41751273088823,52.895411024635436],[-128.41797708223078,52.89545248723226],[-128.41827145539258,52.89553500991878],[-128.4186274560797,52.89571886105012],[-128.41936798020808,52.895801172219116],[-128.41996478146228,52.895681808221724],[-128.42012394391048,52.895597803635525],[-128.42016647084122,52.895624958992386],[-128.42033498633202,52.89565624821847],[-128.42053931838626,52.89571146689311],[-128.42079147653428,52.89585427765504],[-128.42114807556678,52.8959663503809],[-128.42142958847472,52.895953825624275],[-128.42176870309788,52.89592217405834],[-128.42217429928112,52.895962031889354],[-128.42237171533537,52.895993844090064],[-128.42242119100183,52.89597936997539],[-128.4224756165161,52.896019169043264],[-128.4226137306815,52.89608920327424],[-128.42270006285273,52.896165910509765],[-128.42272214150384,52.89621030478055],[-128.42277254187405,52.89622832715034],[-128.42282491557057,52.8962485512966],[-128.4228313128395,52.89629551114719],[-128.42282099600223,52.89635963387178],[-128.42281600490915,52.896386646248196],[-128.422811443055,52.89642094226052],[-128.42280946462276,52.896533662183],[-128.42284553201358,52.89669269874525],[-128.42288847355553,52.89689082771247],[-128.42288001938834,52.89715169236203],[-128.42285016817885,52.89736365480706],[-128.4228410467276,52.8974490562159],[-128.4228410656428,52.897482136583264],[-128.4228407976047,52.897510172845216],[-128.4228414663133,52.89752192749096],[-128.4228428415648,52.89761159751227],[-128.42284287200948,52.89779211481912],[-128.4228457625638,52.89792492541304],[-128.4228644277149,52.8980400274086],[-128.42290704682236,52.898166969314595],[-128.42294194896317,52.89825650456248],[-128.4229984667782,52.898349523151914],[-128.42309279016453,52.89845185369261],[-128.42316279353318,52.89851992725872],[-128.423203274538,52.89856002234985],[-128.42326603963033,52.89861534640953],[-128.42337210215453,52.89871127252654],[-128.4234885388331,52.89884229895885],[-128.42356758111703,52.89895447005141],[-128.42362193567962,52.89902567345747],[-128.42368785155844,52.89908710360137],[-128.4237515410522,52.89914240835858],[-128.42379091324787,52.89921223419189],[-128.42379965789098,52.89933314664898],[-128.42378483018499,52.89944893885673],[-128.42376506863638,52.89952727607991],[-128.42374222208406,52.899616880200554],[-128.42373165558425,52.899709603842204],[-128.4237251439176,52.8998078410688],[-128.42371589765688,52.89990726485303],[-128.42370763197138,52.8999584466315],[-128.42370225859605,52.89997873949802],[-128.42369974777014,52.900000094588826],[-128.42369203661266,52.90002828423864],[-128.42368111350163,52.90006550991765],[-128.4236645122607,52.900101175273804],[-128.42359965537028,52.90015633102396],[-128.42346800019908,52.900249298894856],[-128.4233208539038,52.900364454282574],[-128.42319217384977,52.90047698646267],[-128.42309720912996,52.900559671805695],[-128.42302401912133,52.900632382421946],[-128.4229252538507,52.90073027800287],[-128.4228454305291,52.90081713602417],[-128.4228083939869,52.90090311240348],[-128.4227778464966,52.90098839893566],[-128.42275884191503,52.90103083203094],[-128.42274836317168,52.901059643704755],[-128.42273233367243,52.901105379176336],[-128.42271539937542,52.90116796065917],[-128.42268472461566,52.901267260618155],[-128.4226530663305,52.90139853130052],[-128.42262078897917,52.901535429816605],[-128.4226136417188,52.9016718016084],[-128.42262316244322,52.901789899339704],[-128.42261045888938,52.901861354451064],[-128.42256988578598,52.901901433251986],[-128.42250583806174,52.901971147523085],[-128.42242407333165,52.90208943945273],[-128.4223642296299,52.90223306794098],[-128.4223426536882,52.90236133215327],[-128.42245867819636,52.90241948825616],[-128.42269868743074,52.902429684761],[-128.42281874865571,52.90244402953707],[-128.42281742897654,52.9024535826639],[-128.42281694330893,52.90254329075445],[-128.42268883425922,52.90273149753369],[-128.42243136617725,52.90283995442021],[-128.42229040457073,52.902851262845324],[-128.42227209904144,52.902889761581925],[-128.4222482142774,52.90297770915612],[-128.42223317117165,52.90304080763924],[-128.42218842857244,52.90307312355555],[-128.4220822082675,52.90312184674164],[-128.421973092892,52.90316894312942],[-128.42189652090215,52.90319855080002],[-128.42181414245204,52.90322434922706],[-128.4217259901625,52.90324691179405],[-128.42165455522584,52.90326856493386],[-128.42155417114435,52.90330539008325],[-128.42144752045277,52.90334682907952],[-128.42140920228772,52.90336107279173],[-128.42139086419465,52.90341526917368],[-128.4213514060454,52.903540537570585],[-128.42131323562384,52.90365568840551],[-128.42124966103097,52.903750059013845],[-128.4211106409778,52.90386111492995],[-128.4209389487705,52.903987428157464],[-128.42080726120298,52.904112908624796],[-128.42074109180476,52.90419444272148],[-128.42072567885708,52.90421830569284],[-128.42071887109594,52.9042296580659],[-128.420699926908,52.90425695739343],[-128.42067870751882,52.904277011111546],[-128.42064426988483,52.90429398220972],[-128.42060318331727,52.90432510096656],[-128.4205930349948,52.90435950268968],[-128.42060178476035,52.9043823121556],[-128.4205937524494,52.90440490196002],[-128.42055422517848,52.90446345408903],[-128.42049055246395,52.904556148849906],[-128.4204182735888,52.90466134518303],[-128.42036147188108,52.90474380742372],[-128.42031920849425,52.90480353698451],[-128.42028542326136,52.904864778358736],[-128.42027362169705,52.904919405043415],[-128.42026776851696,52.90494755607944],[-128.42026169228498,52.90497178293995],[-128.42021175996757,52.90499467888987],[-128.4200713012479,52.905064277718274],[-128.41991320070986,52.90515106669985],[-128.41980514414573,52.90524971530979],[-128.41974639960424,52.90536360241697],[-128.41971092788472,52.90544450415549],[-128.41969425707433,52.90547903996012],[-128.41963056454475,52.90553865399537],[-128.41944236521678,52.9056697891943],[-128.4191577489524,52.90584214124619],[-128.41879138133768,52.90605149694496],[-128.4184178684077,52.90623353290763],[-128.4181981981437,52.906286262528056],[-128.41808797517933,52.90626498326752],[-128.4179456012234,52.90626791057447],[-128.41778222790663,52.90632788658963],[-128.417665224549,52.906400372734886],[-128.41759376505667,52.90645453911437],[-128.41752788899998,52.90650859066951],[-128.41748185023206,52.90655102220563],[-128.4174606281851,52.90657107531488],[-128.4174460234243,52.90659267871244],[-128.41742518334047,52.906619460253935],[-128.41737548379655,52.906712421898625],[-128.4173397811588,52.90682191411296],[-128.41732164378303,52.9068800252668],[-128.41730004053045,52.90689336782328],[-128.41728281140925,52.90690157049419],[-128.4172907805605,52.90692719475475],[-128.41731602427694,52.90696143370747],[-128.4173338387692,52.90701264365858],[-128.41731940534504,52.907119456220286],[-128.417286423054,52.907227771246184],[-128.4172661542596,52.907264623006135],[-128.41726604271958,52.90727920115516],[-128.41726979284996,52.90736153820829],[-128.4172694843481,52.907503939440865],[-128.41725158240345,52.90761530812368],[-128.41720776583063,52.90771318969533],[-128.41716169195072,52.90780439928821],[-128.41725880516813,52.907922929905304],[-128.41740072965715,52.90812519591417],[-128.41725261439387,52.908322776251936],[-128.41699380954367,52.90844133832646],[-128.41690941349617,52.90848119414785],[-128.4169006471327,52.908490900171735],[-128.41686596407706,52.90853646165262],[-128.4167952449918,52.908636582126],[-128.4167202296304,52.90874296201182],[-128.416686118269,52.90879860264221],[-128.4166737716906,52.908827442923304],[-128.41662187215923,52.90891428702566],[-128.41652561726767,52.909040719998615],[-128.41640559237584,52.90917492467301],[-128.41627993632542,52.90930868876309],[-128.41616073805142,52.90944119881009],[-128.41606085473464,52.90953631175882],[-128.4160109614515,52.9095765792887],[-128.41603368720848,52.909681506892575],[-128.41607713422806,52.909905422951496],[-128.41609490978107,52.91003791755397],[-128.41605101485948,52.91006909211881],[-128.41596621678184,52.9101016719715],[-128.41592518628173,52.91011764673103],[-128.4158969465214,52.91012888284658],[-128.4158212174886,52.910157347559505],[-128.41566807123962,52.91021711006174],[-128.41547519866884,52.91028273818276],[-128.41536259708516,52.910252535354005],[-128.4153115709843,52.91014146155733],[-128.4152627984272,52.910086402294624],[-128.41520040144516,52.91010338065606],[-128.415131958894,52.91012889673379],[-128.41504684186222,52.9101558674029],[-128.41487854999716,52.91021146395044],[-128.41467976970793,52.91032093947352],[-128.4145022376424,52.91047650441575],[-128.41434074639255,52.910586335019374],[-128.4141810918194,52.91062997595064],[-128.41407053433696,52.91066868918328],[-128.41404776473715,52.91069437939223],[-128.41407884625994,52.91073298399513],[-128.41411320337272,52.91079675319328],[-128.41412447889954,52.910831279442775],[-128.41406377497137,52.91091101047923],[-128.41393999704857,52.911061551352276],[-128.4138682824618,52.9111443067936],[-128.41375927033485,52.91114430156594],[-128.41353900300552,52.91115442777123],[-128.41329935408467,52.91118401189051],[-128.41311325552718,52.91122146657742],[-128.4129688380062,52.91127096432552],[-128.41279910374152,52.91135068893234],[-128.412582829885,52.91144762102457],[-128.4123624199712,52.911537354116774],[-128.41216714941945,52.91161031809253],[-128.41199830494975,52.911672639921775],[-128.41187518828312,52.91172001313645],[-128.41179587262846,52.91175079109096],[-128.41170013816387,52.911788076804584],[-128.41155164132587,52.91184773831733],[-128.41140400442555,52.91190626975825],[-128.4112972269253,52.911946014982526],[-128.41120311422196,52.911978782169435],[-128.4111464874781,52.91199900362114],[-128.41113011496205,52.912006066525514],[-128.41108440317,52.91202157934455],[-128.4109985004266,52.91205137054701],[-128.4108791678833,52.912099786308865],[-128.41071030116603,52.912178368718905],[-128.41052181349616,52.91227248486803],[-128.41036985740894,52.91235352770354],[-128.41028840531476,52.91239611660992],[-128.41027126797465,52.91240600257558],[-128.41024776628532,52.91241881750008],[-128.41014887610672,52.912466248483845],[-128.40996203606838,52.91250707681538],[-128.40979810829091,52.91254127324441],[-128.40972049442257,52.91263535884736],[-128.40965142305888,52.91273207689697],[-128.40956489264536,52.912783747962656],[-128.40942604564316,52.91284938009022],[-128.40923853884314,52.912944595144864],[-128.4090495019617,52.91304545624172],[-128.4089011360783,52.913124172104915],[-128.40884410738633,52.91315393539187],[-128.40882690553343,52.91316269226975],[-128.4087712265512,52.91319971126464],[-128.40867154906326,52.91326622659184],[-128.40857630562627,52.91334497537941],[-128.40847120108555,52.91341440018845],[-128.4083806550489,52.913477364633536],[-128.40836035131886,52.913546730320135],[-128.40835681385303,52.91363257984064],[-128.40830479622457,52.91371773566631],[-128.4082225548871,52.913779399746275],[-128.40812776295854,52.913833481205856],[-128.4079967799172,52.91392305202453],[-128.40785215941636,52.91401851686536],[-128.40772647976837,52.914086675799936],[-128.40761965724408,52.91414212427932],[-128.40752560671132,52.91420907946082],[-128.40744848497238,52.914279051709855],[-128.40741857987737,52.91431049254557],[-128.40740195946532,52.91434615529112],[-128.40737234592478,52.91441571126641],[-128.40730481126738,52.91450679016694],[-128.40719061722328,52.914629661623835],[-128.40713194103984,52.914728963698074],[-128.4071520199715,52.91478742076496],[-128.40709135940386,52.91481893475266],[-128.4068896388497,52.91482754732373],[-128.40664280855606,52.91484605215678],[-128.40641309153386,52.91488718666184],[-128.40620318734224,52.91496548038852],[-128.40604077153492,52.91505962050609],[-128.40593731384382,52.915125089378115],[-128.4058368934359,52.91519497189216],[-128.405725156202,52.91527910534336],[-128.40564615146764,52.915348558656014],[-128.4055643257251,52.91543432262542],[-128.4054673101798,52.915547862251394],[-128.40539738135075,52.91564628116638],[-128.4053617044402,52.91570755591085],[-128.40533533553418,52.91576864030948],[-128.4053031333664,52.915858430278014],[-128.4052701403621,52.91593422579482],[-128.40523152571464,52.91597650002695],[-128.4051995982257,52.916005183026925],[-128.40518984150702,52.916013796058934],[-128.40519812145985,52.916045020560865],[-128.4052035944686,52.91614188858543],[-128.4051928560264,52.91628170291072],[-128.40517586792768,52.916409867847754],[-128.40517177956534,52.91650244651972],[-128.40517064486662,52.916564701181706],[-128.40516812845974,52.916619126675265],[-128.40516707351821,52.91668305702699],[-128.40511947129772,52.916764201061184],[-128.4050260483346,52.91687542427821],[-128.404983819723,52.9169693477638],[-128.40498543336972,52.91699791002095],[-128.40490844509577,52.91702078690339],[-128.40460209981168,52.91710777621929],[-128.40419988789426,52.91722979512917],[-128.4040075202041,52.91730548368918],[-128.4039640351762,52.917343937215044],[-128.403880431437,52.91739834234127],[-128.40376894829762,52.91745387320905],[-128.40355145726613,52.91756315438062],[-128.40320845712975,52.91774394883801],[-128.4029698132755,52.917858136833026],[-128.40282776729802,52.91790084555965],[-128.40261959847624,52.917960592506624],[-128.40229490917653,52.918053000090374],[-128.4019556400974,52.918151301487754],[-128.40171971055673,52.91823123915325],[-128.40150425922624,52.91831075827821],[-128.4012919306576,52.91837956629757],[-128.4011175383232,52.91844367091451],[-128.40096616429858,52.918519073616416],[-128.40082465256415,52.91860437463353],[-128.40071657906947,52.91867104486681],[-128.40067865097302,52.91869256561167],[-128.40063804119376,52.918732636429475],[-128.40055586614267,52.91881223242711],[-128.40048260627833,52.91888492819438],[-128.4004154590414,52.918950206880396],[-128.40033801617145,52.91901457439103],[-128.40023850084123,52.9190844331181],[-128.40013502445157,52.9191498967263],[-128.40004843762597,52.91920099615223],[-128.39994746913592,52.9192450966048],[-128.39982516105414,52.919290762455454],[-128.3997061025098,52.91932794838774],[-128.39957873630922,52.919366424850786],[-128.39945725598398,52.919410387129204],[-128.39933894591104,52.91947726476628],[-128.3992005747879,52.91956866171865],[-128.39909281240477,52.919640938951005],[-128.39891865567762,52.91969270206841],[-128.39866819598,52.91974657683142],[-128.3985641875914,52.91978626217421],[-128.39860770283164,52.91983077911073],[-128.39862235281907,52.91990896448076],[-128.3985050815243,52.91999432432286],[-128.39830656091155,52.92007685562248],[-128.39813050755666,52.92016117098352],[-128.39803243790058,52.920223714880045],[-128.39799838818828,52.92024795414462],[-128.3979764879386,52.92025624894823],[-128.39796470898153,52.92026209504316],[-128.3979232128345,52.92025341514131],[-128.39783100534757,52.92023791146557],[-128.39775962520022,52.92022815431543],[-128.3977112177973,52.92022914091854],[-128.39764546282728,52.920236652140574],[-128.39755461194454,52.92024523089042],[-128.3974712083233,52.92025365780203],[-128.3974369612465,52.92025771931795],[-128.39719284637175,52.920341733914114],[-128.3966860738247,52.92051126944319],[-128.39637885798751,52.920599940329936],[-128.39625803480334,52.92062258296365],[-128.39605282217536,52.92061947037581],[-128.3958278837087,52.92054725377891],[-128.39568926839385,52.92048560315489],[-128.395650446634,52.920474625599475],[-128.39560254313224,52.92048457065875],[-128.395455780189,52.9205099830739],[-128.39529599909383,52.920535660356826],[-128.39520436602683,52.92054705170568],[-128.39504333437554,52.920534077233974],[-128.39470450760868,52.92049164191609],[-128.39439282792932,52.92045145163276],[-128.39427272551785,52.92043707800641],[-128.39423994697208,52.92043438150588],[-128.39422129737474,52.92043420493559],[-128.39418667189386,52.920431546007784],[-128.39415947886323,52.92042873581429],[-128.39412655749902,52.92042323470873],[-128.39407838038562,52.92041188194519],[-128.3940367901517,52.920401516319686],[-128.39399362179483,52.920396232669866],[-128.3939181302401,52.92039608256649],[-128.39383905783092,52.92039881275785],[-128.3937377593458,52.920420499386694],[-128.39353623212736,52.92048290200453],[-128.39326126938616,52.920565293462644],[-128.39301798264475,52.920630787060205],[-128.39284820982968,52.92067796696821],[-128.39276805127722,52.9207109908449],[-128.3927519871345,52.920723650737976],[-128.39271025562167,52.92076037780166],[-128.39249527825237,52.920848839643014],[-128.3920544175517,52.920981135958655],[-128.3915341175812,52.92110943944786],[-128.390979703378,52.9212277870046],[-128.39061107095085,52.9213019849083],[-128.39053077863196,52.92131594958198],[-128.39051407844588,52.92135048986982],[-128.39046258679983,52.92146253448856],[-128.39042227123466,52.921591169923055],[-128.3904067902562,52.921680615015156],[-128.39035693995368,52.92178870650354],[-128.39027978926237,52.92190855560518],[-128.39021428349548,52.92198669281156],[-128.3901572808776,52.92203381987895],[-128.39008636923953,52.92208235067601],[-128.3900015202879,52.92214798247803],[-128.38995647449894,52.92220887698595],[-128.38992371868144,52.922355862771454],[-128.38993828288665,52.92258204820958],[-128.39004082599047,52.922681993824256],[-128.39010309885808,52.92267904248354],[-128.39011277936973,52.92271865271024],[-128.39006829878588,52.92290567459521],[-128.38994072406572,52.92317342409559],[-128.3897313518871,52.92334529995701],[-128.3894768496213,52.92344408422092],[-128.38933898158163,52.92349509548051],[-128.3891996452134,52.92355342862939],[-128.388897270456,52.92369578905096],[-128.3886337296532,52.923832884437545],[-128.3883611159812,52.923990900943565],[-128.38777537700997,52.924332420289346],[-128.38715983064614,52.924724429763685],[-128.3868982285621,52.92507899268718],[-128.38656028689152,52.92540202372317],[-128.38597680417897,52.92550186639172],[-128.38567661395427,52.925467590612136],[-128.38563076650405,52.925464600530105],[-128.38555566371815,52.92550479984257],[-128.38548734319824,52.925582991026374],[-128.38542660639288,52.92563019120303],[-128.38536758504532,52.92564147849014],[-128.38534458390947,52.92564698566861],[-128.3852903195432,52.925659862746066],[-128.38512843393528,52.92569845748887],[-128.38497027268676,52.92573698547914],[-128.38491879325628,52.925749796959956],[-128.38490349183166,52.925759641707586],[-128.38486292322034,52.92580082682437],[-128.3848203424092,52.925889142665746],[-128.38476643600845,52.92610830210015],[-128.38458284337287,52.926474732155086],[-128.38430415828196,52.926757869448984],[-128.38415513728705,52.9268433009217],[-128.38392786372393,52.926846219563394],[-128.38346494488962,52.92685223408066],[-128.38316769458697,52.92687058805676],[-128.3830178993392,52.926908943825936],[-128.3828061852268,52.92697321048938],[-128.3826223880953,52.92703692042834],[-128.38251606224037,52.927085598202915],[-128.38244907555946,52.92712115525737],[-128.38241382217464,52.9271409292411],[-128.3823556296387,52.92718359140996],[-128.38224370585883,52.927282279572744],[-128.38213045372467,52.92740733791395],[-128.3820349304528,52.92753260229739],[-128.38196254915545,52.92763833793727],[-128.38191448279574,52.927712188088925],[-128.38189292537066,52.92779334990815],[-128.38191942646858,52.92790044735635],[-128.38197839957522,52.92802146287837],[-128.38202895294722,52.92812527491169],[-128.38197431495408,52.92821495469957],[-128.38175276901683,52.92832034605967],[-128.38150263075954,52.92841453872497],[-128.381343688903,52.9284558757859],[-128.38125499411245,52.92848682156876],[-128.38116002612642,52.92855545843164],[-128.38102678177825,52.928656253962636],[-128.3809019272204,52.92879052409603],[-128.38082619368197,52.92891987157387],[-128.38079807554905,52.92898378296707],[-128.3807941481918,52.92899676054277],[-128.38078804606582,52.92902098500159],[-128.3807629182565,52.92910502617794],[-128.38073638465448,52.929247388433446],[-128.3807190533563,52.92940414885839],[-128.38071347188222,52.9295208649999],[-128.38071253508843,52.92957077218848],[-128.38070033107329,52.929619230039336],[-128.38066294983616,52.92971752938268],[-128.38062184391111,52.9298159040589],[-128.38058006421562,52.92988570662403],[-128.38053313450015,52.929946634910195],[-128.3804656735652,52.93002368406149],[-128.38036553798761,52.930133343398104],[-128.38025548102442,52.930265626998505],[-128.38014741397518,52.93048363629861],[-128.3800701620909,52.930785676031924],[-128.38005724661818,52.93110491842291],[-128.3800897347152,52.931568987263994],[-128.38012916312653,52.93220726399188],[-128.3801647246833,52.9327598527375],[-128.3801832318313,52.933007259671676],[-128.3801852363668,52.93304309695413],[-128.380160070823,52.933059858596955],[-128.380107909346,52.93309399292944],[-128.3800809129095,52.93311135665903],[-128.38011274941974,52.9332138615049],[-128.38018100884744,52.933417657216715],[-128.38021682124122,52.933524566337624],[-128.3802212662308,52.93353736553944],[-128.3802368138689,52.93371531896075],[-128.38026847611334,52.93414801968692],[-128.3802971930697,52.93451125767864],[-128.380304631124,52.93461089235142],[-128.3803093137496,52.93467806850128],[-128.38012598802726,52.934983939002954],[-128.37966411848743,52.935443993531415],[-128.37930525307752,52.935711919105024],[-128.37914919498724,52.935838968847506],[-128.37900961596884,52.93599370575867],[-128.37894026525944,52.93607079170154],[-128.37880982486206,52.936005592475084],[-128.37847846698864,52.93589849440267],[-128.37820699211704,52.935878749528676],[-128.37813731177457,52.93589978269079],[-128.3781202986735,52.93589564175565],[-128.3780728903049,52.93588145931456],[-128.37786925073323,52.93582447418813],[-128.37742786759895,52.93570052719157],[-128.37697878464124,52.93562214631517],[-128.3766914850665,52.935686249881826],[-128.3765753314237,52.93579343016621],[-128.3765600843753,52.935837464009204],[-128.37655363508216,52.93585553309394],[-128.37652656929868,52.93593848175076],[-128.37642160414688,52.936062253583074],[-128.37627687100314,52.93612515451004],[-128.37614653916992,52.93614516870378],[-128.37596702888257,52.93618634781918],[-128.37574528895294,52.93623903479559],[-128.37552788476773,52.93628602794016],[-128.37531512902103,52.936332926854256],[-128.3750688986968,52.93631435146789],[-128.37481508591364,52.936210163018664],[-128.37457349300118,52.936157857730194],[-128.37419080941268,52.93618351713732],[-128.3737659426283,52.93622179398362],[-128.37346213938622,52.93627445447132],[-128.37324235189237,52.93632877456393],[-128.37312395892027,52.93636255483492],[-128.37307110069892,52.93638436689867],[-128.37303010613255,52.93640144605525],[-128.37296657214847,52.9364324427339],[-128.37281646573916,52.936482558566844],[-128.37257439381855,52.93650537762896],[-128.37236605742265,52.93648098289988],[-128.37229586307222,52.936459418211356],[-128.37207336760417,52.9363983095857],[-128.37136530543978,52.93629037042579],[-128.37037862211858,52.93631866038025],[-128.36961777971374,52.936467957653086],[-128.3692286856736,52.93657950416131],[-128.3689141118469,52.93667328790789],[-128.36856400294138,52.936781796113884],[-128.36831831431144,52.93685681816292],[-128.3679096559983,52.93693510967871],[-128.3673196050931,52.93702097706826],[-128.3670501804953,52.93705499044381],[-128.36688294605094,52.93703200172196],[-128.36654954152237,52.93698825348702],[-128.3663823081089,52.93696527301244],[-128.36635510635335,52.93696245642336],[-128.36621235509404,52.93687675393639],[-128.36599124503135,52.936706296329895],[-128.36587676590372,52.936609369470375],[-128.36586596879792,52.936599495968565],[-128.3657489027661,52.936623716533724],[-128.36536057486782,52.93669879205163],[-128.36490307118828,52.93680440674746],[-128.3646571053949,52.936891194404794],[-128.36451447326138,52.93697534047006],[-128.36435560647783,52.937069346925355],[-128.36425626590403,52.93711058352858],[-128.36409732462636,52.93705211188723],[-128.36382729022364,52.936940933998386],[-128.36367990275184,52.93692259189914],[-128.36367034304658,52.93700238700252],[-128.36367339703844,52.93704044546676],[-128.36364707194622,52.937036489477954],[-128.36359001227876,52.937016333161395],[-128.3635624374138,52.93700679640034],[-128.36350336925415,52.937000699494035],[-128.36336646731024,52.93698663111331],[-128.363218047585,52.93696662292548],[-128.36301834356362,52.936929714486915],[-128.36277859230557,52.936876783181575],[-128.36258224114312,52.93683307968535],[-128.36247265693055,52.9368072501959],[-128.36244428297314,52.93679997155986],[-128.3624501787727,52.9367718239616],[-128.36246361504195,52.93671156716838],[-128.36247189329896,52.93667608862211],[-128.3624739792781,52.936663148808066],[-128.36246667580852,52.93664928527054],[-128.3622014734042,52.936523987656784],[-128.36167714605457,52.936315882176736],[-128.36138163757585,52.936215865627894],[-128.36110591197274,52.93611937108688],[-128.36062657531332,52.93591539924841],[-128.36036113370702,52.93575199163253],[-128.36024623401906,52.935613584706836],[-128.36009750751214,52.935487076696745],[-128.3600126748715,52.93541982145397],[-128.35995452447847,52.93536325177519],[-128.35989784064623,52.93531617811933],[-128.35984528543455,52.93527630477008],[-128.35977537792476,52.935226132704514],[-128.35971087958137,52.93518930617904],[-128.35965351373028,52.93516354830975],[-128.35949315003325,52.935062494728335],[-128.35924453507582,52.93488305097223],[-128.35911781408834,52.9346322068962],[-128.3591062956294,52.93432355100602],[-128.35910107976565,52.934162207076994],[-128.3590904948668,52.93413943975781],[-128.35907200174842,52.934125235254164],[-128.3590502342201,52.93411950067598],[-128.35888605814168,52.934084115664554],[-128.35854367590034,52.933995678461784],[-128.3582653946439,52.93388633083544],[-128.3581084608009,52.933796418418986],[-128.35800546097755,52.93373793907516],[-128.35795446923584,52.933709254258474],[-128.35788903609307,52.93367244550834],[-128.35778309527362,52.933611217493635],[-128.35768344892477,52.933545943674055],[-128.35758931227204,52.93347888212611],[-128.35749625454923,52.933414597332074],[-128.357385248377,52.93334618732732],[-128.3572171990464,52.93324080005585],[-128.3570209429723,52.933114110207484],[-128.35682492177182,52.932991908989834],[-128.35652946217166,52.93289187080139],[-128.3561713270009,52.932788045997924],[-128.355954079251,52.93265281434035],[-128.3558540125778,52.93256288172164],[-128.35580826098928,52.93254473773427],[-128.3557215453671,52.93251059620998],[-128.35554964331652,52.93245349406079],[-128.3553902574072,52.93240342427193],[-128.35527324825787,52.93236091939888],[-128.35503781544918,52.93231798595279],[-128.35469910255293,52.93231243099692],[-128.35442669441977,52.93234254709994],[-128.35424874666563,52.93237805599032],[-128.354147523434,52.932401948238805],[-128.3540729563753,52.93241913625987],[-128.3539746266702,52.932444647741306],[-128.35389153100945,52.93245919883628],[-128.35380473626324,52.932457571401095],[-128.3536681618528,52.93244909135145],[-128.35347875907692,52.93242933481343],[-128.3532841198213,52.93239903607572],[-128.35314273690125,52.932371026651346],[-128.35306160120945,52.932353589159376],[-128.3529943953613,52.932335316989395],[-128.3529118713803,52.93230949390963],[-128.35281769410233,52.93227549948667],[-128.35272887136563,52.932236913267346],[-128.35264152478183,52.93219157046405],[-128.35252849142714,52.932103015551206],[-128.35240093606802,52.93198784279612],[-128.3522719884164,52.93189792850482],[-128.35217111118777,52.93184388648452],[-128.35213659806772,52.93182663764137],[-128.35213254272253,52.93180373026937],[-128.3521245107417,52.93175960915709],[-128.35212053361045,52.931738386457496],[-128.35212152935512,52.93172267020171],[-128.3521513786056,52.931638542069955],[-128.35221279082384,52.93148483566602],[-128.35226048484031,52.93136952314762],[-128.35227231959433,52.93131379322917],[-128.35227142692642,52.93126391459159],[-128.35227327381605,52.93121286899182],[-128.35226855900896,52.931144571956324],[-128.35225122525583,52.93103335768395],[-128.35222908387237,52.93090262353554],[-128.35220461102674,52.93079716676067],[-128.35217299803017,52.93069744957294],[-128.35213655694022,52.93056083927575],[-128.35210597652784,52.930412335057554],[-128.35208466652045,52.93027989799158],[-128.35207093966505,52.93018319572317],[-128.352059926339,52.93010212660987],[-128.35204190780203,52.93001223712718],[-128.35202494583623,52.929958194966794],[-128.35201963300076,52.92994653336565],[-128.35206881076314,52.92990855181938],[-128.35213312472712,52.92984111729443],[-128.35216032627946,52.92981030199359],[-128.35215191745854,52.92979308746608],[-128.35212218337827,52.92974435035847],[-128.35207414620513,52.92968476739717],[-128.3520273572329,52.92963076531531],[-128.35197385729322,52.92957353384237],[-128.35191827884964,52.929512424280496],[-128.35187483324248,52.92946844584151],[-128.35185366280967,52.92943971855924],[-128.35184503781522,52.929418588721724],[-128.3518407562666,52.92940858376884],[-128.3518685774985,52.92933851520569],[-128.35190980753038,52.92907253002715],[-128.3519167543093,52.92872594967612],[-128.351876720564,52.92855801822828],[-128.35177240460342,52.92855953808937],[-128.35162327188397,52.9285597201577],[-128.35152426561453,52.928505640256034],[-128.35147965025888,52.928457200369174],[-128.35144153495517,52.9284254481224],[-128.35143360141586,52.928399819752016],[-128.35142760777876,52.92837582988551],[-128.35134871981055,52.9283314383393],[-128.3511952568299,52.92825322451495],[-128.35100138826172,52.92815226426544],[-128.35059143672515,52.928088143370424],[-128.34999814508043,52.92809663021252],[-128.34965179366222,52.92812092045655],[-128.3494827034316,52.92813102381503],[-128.34928204849712,52.928143443369166],[-128.34901654368204,52.92811230146922],[-128.34868806889858,52.928038134207505],[-128.34852081511963,52.92799719083798],[-128.34839884472802,52.92798280763467],[-128.34800609375705,52.92794299129048],[-128.34740157181446,52.92788329790921],[-128.34685574944763,52.9278229957879],[-128.3465855854595,52.92779194139994],[-128.34652833296764,52.92778467886988],[-128.346506819935,52.92780023916227],[-128.3464609318194,52.927830304608975],[-128.34643657163318,52.92784480946498],[-128.34640360518486,52.92783873984481],[-128.34636866795339,52.92783046717877],[-128.34633725500785,52.92781876072387],[-128.34629034195274,52.92779615165663],[-128.34622420528086,52.92776327030336],[-128.34618017105007,52.92774229002791],[-128.3461448941322,52.927727853163546],[-128.34609524227434,52.92770641979748],[-128.3460732639449,52.92769676749855],[-128.34599074111722,52.92768776621776],[-128.34582362687087,52.92763223215648],[-128.34564652604968,52.92747992043412],[-128.34547103963223,52.927306274091386],[-128.3453871088144,52.92723787858543],[-128.34534227272897,52.92720232984346],[-128.3452309759365,52.92711093517209],[-128.34513644743387,52.92696874468573],[-128.3450989607979,52.92676207577959],[-128.34503835966174,52.92655867491982],[-128.34488028641078,52.92639644845602],[-128.3446751238171,52.926242452223015],[-128.3444656981239,52.92607845007953],[-128.34421284464878,52.925904666197965],[-128.34384705931578,52.925677064112485],[-128.34340829738687,52.92539374381478],[-128.34304462064273,52.925238417148776],[-128.342691571429,52.92517424847611],[-128.3423446318233,52.925085856518365],[-128.34211439013035,52.92501756400115],[-128.341958080521,52.924971909070244],[-128.3418898131962,52.92495084453029],[-128.3418363674981,52.92496199880359],[-128.34170279138763,52.924990444202486],[-128.34160601053745,52.92501030900106],[-128.34158574304323,52.92501463195303],[-128.34155530364822,52.92502028746982],[-128.34144844243363,52.92504315117804],[-128.34127323893142,52.92507747419647],[-128.3410051147203,52.925100182794424],[-128.3406851894729,52.92509590109995],[-128.34051136853125,52.92508758216479],[-128.34047235734803,52.9250900444087],[-128.3404215122008,52.92511460029587],[-128.34031377322955,52.92513860158203],[-128.3400878744338,52.92508143044314],[-128.3398043283367,52.924976073963556],[-128.33968346243938,52.92493083238319],[-128.33961681213387,52.92490524972854],[-128.33948264973213,52.924855222610994],[-128.33941606122298,52.92483075978359],[-128.3393411321462,52.924841218899495],[-128.33919947570843,52.924875427919176],[-128.33909835394834,52.92490098277074],[-128.3390569569996,52.92491077507092],[-128.3388410476677,52.924967761910146],[-128.33847342783685,52.92519818080993],[-128.33831543462531,52.92551188354455],[-128.33832831196986,52.92564448120504],[-128.33822858806656,52.92567842069242],[-128.33801850538885,52.925756592237775],[-128.33787895124456,52.925846250959964],[-128.33782019135666,52.925930384647934],[-128.33779255042015,52.92597017459691],[-128.33774261156796,52.92597733769034],[-128.33761827960868,52.92598765602341],[-128.33745468887548,52.925995946738325],[-128.33721010340707,52.92600585507064],[-128.33689748065433,52.92601598406445],[-128.336651710482,52.92602143010529],[-128.33648696597578,52.9260258227926],[-128.33631571142584,52.926030344512384],[-128.33615104322072,52.92603585637679],[-128.33607118647416,52.926041361461344],[-128.33603368149798,52.926054438875134],[-128.3359117626211,52.926091615407124],[-128.33573396287812,52.92614671856258],[-128.33565142691154,52.92617134528677],[-128.33549749606613,52.926219803380874],[-128.3349065945203,52.926407553227314],[-128.33412178447176,52.926662496865426],[-128.333663797519,52.92680948398449],[-128.33346013873935,52.92685219858092],[-128.33324488141218,52.926853103736995],[-128.33301760761378,52.926839115562686],[-128.33285309189915,52.92683060071516],[-128.33276253860973,52.92682791136019],[-128.33269083765612,52.92682933283863],[-128.33261448872355,52.9268308464156],[-128.3325447262061,52.926833350538274],[-128.332447384502,52.92684312828375],[-128.33223644729043,52.92687197498483],[-128.33200514862367,52.926903467167385],[-128.3318971089571,52.926921869663964],[-128.33182229707472,52.92693456386929],[-128.33166313176952,52.92695565656726],[-128.33144015811865,52.92698586149151],[-128.3311069940092,52.92701264324542],[-128.33061656635567,52.92701002543853],[-128.3301555536064,52.92698271366464],[-128.3299167043206,52.92697847411424],[-128.32979314560922,52.92702016123823],[-128.32967910829998,52.927082405647994],[-128.32958096749442,52.92714544740754],[-128.32951580594323,52.92721512819165],[-128.3294905821474,52.927282341022845],[-128.32944848315708,52.92731344576389],[-128.3293837045854,52.9273220112167],[-128.32935691011383,52.927326470190316],[-128.32933654857507,52.92732911558801],[-128.3292887940105,52.92732501122823],[-128.32924324750286,52.92729339922598],[-128.32919795415668,52.92723207596268],[-128.32910698473128,52.92710270103593],[-128.3288986108197,52.926957146212],[-128.32865481189998,52.92693057889003],[-128.32851149244988,52.92696873614767],[-128.32843997036736,52.92699033235031],[-128.32825998868412,52.927039861302994],[-128.32792095659076,52.92712953498099],[-128.3276453036745,52.927202257701495],[-128.32750021677603,52.92722530852718],[-128.32740069360815,52.92721213697816],[-128.3273274452799,52.92718500072959],[-128.3272376006455,52.92717836456202],[-128.32701348612292,52.92725623727676],[-128.32668837803985,52.927396084040005],[-128.32649349979312,52.927480095582666],[-128.32643788918642,52.927503062146705],[-128.32642420534847,52.92750837341733],[-128.32636587002645,52.927532514973734],[-128.3261807147401,52.9276751989804],[-128.3259842254491,52.92788313381151],[-128.3259165869276,52.927975840628456],[-128.32579522730717,52.927904243081315],[-128.32545537828528,52.927774743855565],[-128.32505139179315,52.92771657882557],[-128.3247446328085,52.92768059194388],[-128.32459760291854,52.92761679236703],[-128.32456909448788,52.92758988274557],[-128.32445839929397,52.92766214627749],[-128.3242268650622,52.927809106705574],[-128.3240357257165,52.92787622283217],[-128.32384702972553,52.92786873799632],[-128.3236156344358,52.92788172076647],[-128.32344250229394,52.92790307798956],[-128.32329475371623,52.927911601062995],[-128.32314912673772,52.92792456668507],[-128.32305193296557,52.92793713204571],[-128.3229675147822,52.927944404400726],[-128.322848668736,52.92795292138701],[-128.3227267157494,52.927955884836045],[-128.32254106489628,52.92795282241583],[-128.3223049357075,52.92794739248572],[-128.32211183601402,52.9279444763994],[-128.32194979195043,52.9279471180194],[-128.3217442527637,52.92795565834523],[-128.3215058567949,52.92795979687008],[-128.32126485862764,52.92796735867778],[-128.32108175733143,52.927977132453194],[-128.32098335705015,52.92800149649545],[-128.32091662293956,52.92804261824715],[-128.32081494157717,52.92810965071906],[-128.32065056937333,52.92818913102473],[-128.32046471184816,52.92819952323647],[-128.32025169134792,52.92813925301016],[-128.3200040062255,52.92809256362452],[-128.3197661364405,52.928089405218614],[-128.3195880332808,52.92810524894711],[-128.3194953794984,52.928115488507345],[-128.319402939052,52.92812964334112],[-128.31928851788288,52.928150958267366],[-128.31918107936613,52.92818053962243],[-128.31907365655985,52.92821068562741],[-128.31901329397553,52.92821468262502],[-128.3189523372784,52.92817383620367],[-128.31881459479658,52.928109281468736],[-128.31863749922036,52.92810940775168],[-128.31847804704972,52.92815963801959],[-128.31840096190493,52.92818190263813],[-128.31836889847247,52.92819205968215],[-128.31817479697384,52.92822223535011],[-128.31771259077317,52.92829300360176],[-128.31723163858317,52.928361896859435],[-128.31674085511705,52.92842144740535],[-128.31618411674344,52.92860506469925],[-128.3157270171927,52.92888986433294],[-128.31546469931365,52.92900265681696],[-128.3152903231992,52.928950030394624],[-128.31506038388713,52.92890410263027],[-128.3147740145517,52.92890021097839],[-128.31454545201848,52.92889685885578],[-128.31432114028843,52.92878298489503],[-128.31381347167638,52.928600695671655],[-128.31321452921526,52.928539596647646],[-128.31297955444154,52.92855542712524],[-128.3129586490798,52.92851379044287],[-128.31291769210367,52.928394632457774],[-128.31286814572152,52.92825490649387],[-128.31281068324577,52.92812374023617],[-128.31274274282785,52.927988295286575],[-128.31269181584784,52.92789175616564],[-128.3126781666508,52.92786343061581],[-128.31253506567313,52.92782027589602],[-128.31212771506424,52.9276825313201],[-128.31172662870003,52.92745441422371],[-128.3115596820325,52.92721216213771],[-128.31146798678907,52.927051396691986],[-128.31134200606772,52.92697987551146],[-128.3112296430349,52.926936115471364],[-128.31111889915954,52.926887838925],[-128.3110117884489,52.92683780471162],[-128.3108844793299,52.92677639949953],[-128.31074717553577,52.926702301693005],[-128.3106493274193,52.926634146861296],[-128.3105556565873,52.92655694969323],[-128.3104557186437,52.92648435114464],[-128.31035634039236,52.926405023594505],[-128.31022897699887,52.92629092471944],[-128.31009361855627,52.9261668923286],[-128.30997403927026,52.9260588022037],[-128.30989249761342,52.92598192249951],[-128.3098285814117,52.92592039284088],[-128.30972964304604,52.92583208694753],[-128.30960096787476,52.92572810351989],[-128.30942966457235,52.92564569344053],[-128.30928296849083,52.92558747444264],[-128.30923161781502,52.92551728474859],[-128.30913105900734,52.925416112466095],[-128.30896583957423,52.92530836095159],[-128.3088101903031,52.92520547108415],[-128.3086418557538,52.92510899175883],[-128.30846189674807,52.92502170946914],[-128.30833306845523,52.92496649325324],[-128.30829206874716,52.924949359201506],[-128.30827776167126,52.92494347803962],[-128.30820172834228,52.92491637583544],[-128.30805481102936,52.92487104844137],[-128.30787166691061,52.9248281176602],[-128.3077248741761,52.92480240305621],[-128.30766383251924,52.92479407498861],[-128.30759190617314,52.92479100105287],[-128.30739214779763,52.924802766650124],[-128.30712570486975,52.924839383633824],[-128.306903800025,52.924872319423734],[-128.30680454901335,52.92488099223238],[-128.3067869122557,52.92488245915868],[-128.30673589387558,52.92488682283109],[-128.30663101147357,52.92489504980515],[-128.30656436988713,52.924903639217],[-128.30653206381575,52.92490932217987],[-128.30649415602974,52.92491510597448],[-128.30647938054875,52.92491763791383],[-128.3064547656504,52.92492765468226],[-128.30640738254598,52.92494764303448],[-128.30638461434083,52.92495761461905],[-128.30631744370774,52.92497350621035],[-128.30617109758333,52.92500776686918],[-128.30597317303327,52.925053128544725],[-128.30574394121527,52.92510583028367],[-128.30548318902748,52.92516139148028],[-128.30512687703788,52.925208177825205],[-128.30484572667973,52.925214241632595],[-128.30477426883263,52.92520275266392],[-128.3047112887442,52.92519277483106],[-128.3045862373708,52.92517280126543],[-128.30441887140117,52.92514580827966],[-128.3041434105514,52.925101872401235],[-128.30389969538757,52.925024801008476],[-128.30382659573098,52.92489673530517],[-128.30381701897113,52.924737163761954],[-128.3037984493182,52.9245833650561],[-128.3037293622533,52.92444345314303],[-128.30359979671476,52.924322663650436],[-128.3034789542905,52.92424262962645],[-128.3033735094047,52.92418863654165],[-128.30325283460346,52.92412877070535],[-128.30316190871338,52.9240845835481],[-128.303097764342,52.92405332586712],[-128.30304318771803,52.92402636546526],[-128.30302588367914,52.92401661384246],[-128.3030134397154,52.92401069558944],[-128.3029433005976,52.92398908043835],[-128.30282535320222,52.92396223913869],[-128.30276128568516,52.92394948319823],[-128.30264966694057,52.92393652772558],[-128.30235453650988,52.923942303253746],[-128.30198707388757,52.92400667175604],[-128.3015027686319,52.924047538304926],[-128.30094652379117,52.924016379096955],[-128.30070562026486,52.92399081903481],[-128.3007137959184,52.92395254018079],[-128.30072984476317,52.92383562709959],[-128.3007445011331,52.923692954857664],[-128.3007564469563,52.923586212305985],[-128.3007321053225,52.92348073542511],[-128.30066118264503,52.92337561330165],[-128.30056435780568,52.923308560520084],[-128.30041300323134,52.92326723010309],[-128.30026644815638,52.92322861301436],[-128.30017413514202,52.92317604662477],[-128.3001236644432,52.92313891431969],[-128.30010931299503,52.9231319029437],[-128.3000787941862,52.9231190458025],[-128.29996798234913,52.92306908318643],[-128.29977581808538,52.92297978432153],[-128.2995675026869,52.92286725674479],[-128.29939320479042,52.92274621596847],[-128.29927447924533,52.92265323874796],[-128.29920856937284,52.92260631746497],[-128.2991901029911,52.922557903962634],[-128.2991231959976,52.92247512542029],[-128.2989602065233,52.92240824315291],[-128.29883643806107,52.92237702712109],[-128.29866551368414,52.922352894103874],[-128.29826921467918,52.92229729584311],[-128.2978671970233,52.92220480115625],[-128.29756796429857,52.92216916261948],[-128.29706355193838,52.922113429282284],[-128.296511784847,52.92195714996689],[-128.29630858178828,52.921870303381766],[-128.29624924171094,52.92185856388754],[-128.29612685372663,52.92183573120053],[-128.29606752929982,52.92182455636836],[-128.29605969073387,52.92180004413669],[-128.29604201593065,52.921748816365124],[-128.29603077286214,52.92171315911351],[-128.29583183955248,52.92163631871961],[-128.29534388269926,52.921418803116936],[-128.29488533556852,52.9211592384823],[-128.29450923353153,52.920993917702084],[-128.29417264579726,52.920904619214014],[-128.29397035193938,52.92086876759454],[-128.29383724559074,52.92087191895322],[-128.2937710638139,52.92087153205764],[-128.29376502511465,52.9208632367178],[-128.29375555261765,52.92084324078442],[-128.29374747141665,52.920831630798716],[-128.2937293076327,52.920823015764086],[-128.29369098255452,52.92080358233964],[-128.29364757556976,52.920759017725864],[-128.29360228632814,52.920662361021854],[-128.2935593148722,52.92055668995107],[-128.2935252999254,52.92047887289202],[-128.29349630941377,52.920407684745584],[-128.2934763119848,52.92033071554978],[-128.29348593042891,52.920215050059454],[-128.2935309738445,52.920082441830466],[-128.29360750260489,52.920032740618566],[-128.2936921271045,52.919994649060996],[-128.2937273048771,52.919834760506795],[-128.29372906512342,52.91964245413732],[-128.29373443409588,52.91949996390524],[-128.2937399294141,52.919411842303845],[-128.29365793757754,52.919377564193454],[-128.29348150337202,52.91935466143174],[-128.29336863577274,52.919300804409694],[-128.29332564443874,52.91922932406315],[-128.2932934714714,52.91918567043776],[-128.29326202211038,52.919155447482936],[-128.2932177845117,52.91911258510197],[-128.293137707443,52.91904463493396],[-128.29301849332532,52.91894213592429],[-128.29288233032557,52.91881922144467],[-128.2927250391562,52.91868438596824],[-128.2925757658897,52.91857742269601],[-128.29251792021765,52.91854155212583],[-128.29250191408292,52.91857325612929],[-128.29248210052958,52.91856859258967],[-128.2924254915936,52.918555685856006],[-128.292172767289,52.91862170819988],[-128.29175400187032,52.91877113105685],[-128.29154510782377,52.91885480154512],[-128.29153741559614,52.91886784903612],[-128.2914652089481,52.91894604946813],[-128.29131599765054,52.919099754211715],[-128.29120937539147,52.9192139453047],[-128.29118847967118,52.91924125973978],[-128.29116908109535,52.91920968041538],[-128.29111554491007,52.91913280793844],[-128.29106791031245,52.91906141726351],[-128.2910409333367,52.91901036994827],[-128.29102737044715,52.91894897109319],[-128.2910376047046,52.918879260788934],[-128.29106738094902,52.918809169910155],[-128.29109624910248,52.91873966176109],[-128.2911109794332,52.91866705652979],[-128.29111187436436,52.91859697199813],[-128.2911084385274,52.918533133620926],[-128.29110553412764,52.91846199296113],[-128.29109672784125,52.91838480542186],[-128.29108799734863,52.91830930260573],[-128.29107967333815,52.91824107483205],[-128.2910737990493,52.91818401080414],[-128.29104319347624,52.91811733809929],[-128.29095310209553,52.91798455507961],[-128.2907854625452,52.917743965881606],[-128.29059385670803,52.91747358112873],[-128.29047507275675,52.91732678152265],[-128.29041608106849,52.91728700377697],[-128.29036479303764,52.91725156957133],[-128.29019186380054,52.91712039874735],[-128.28978539726478,52.91682279436503],[-128.28938536989838,52.916523386085736],[-128.2892090592093,52.916381068222826],[-128.28915466181394,52.916322706041484],[-128.28910634647013,52.91627319465288],[-128.2889665703842,52.91615203233749],[-128.28863844466747,52.915872524315084],[-128.28830584708686,52.9155790835923],[-128.28816326560505,52.91544003659452],[-128.28813470333506,52.91539406012089],[-128.28812572177765,52.915365650081405],[-128.28811460308694,52.91529747643759],[-128.288092636443,52.91516616454767],[-128.28807336926735,52.915067878439515],[-128.28806796048042,52.915036591548194],[-128.2880103351718,52.914952505273],[-128.28788969058246,52.91480573932938],[-128.2878308364555,52.91473345338899],[-128.28785349812378,52.91472180117704],[-128.2878907368204,52.91470369465582],[-128.28794261884275,52.914663445439125],[-128.28803464098516,52.91457252890937],[-128.2881258101703,52.91444855057275],[-128.28817372819933,52.91435175594382],[-128.28820427912657,52.91427885217209],[-128.2882629154764,52.91417344487426],[-128.28835853377242,52.91404545124917],[-128.28846447362383,52.91391894292821],[-128.28855082292884,52.9138090767576],[-128.28860157963607,52.91373073007388],[-128.28863418604513,52.913661140621805],[-128.28870496901052,52.91357400011803],[-128.28882891022394,52.913470120181096],[-128.28894133529914,52.913360302359656],[-128.2890296592143,52.91321788403589],[-128.28909563302798,52.91305851828583],[-128.28916611247197,52.91296576863037],[-128.28925652271215,52.91293149580718],[-128.2892987073879,52.91291890723119],[-128.2891854704682,52.91285776165731],[-128.28892995036247,52.91269792534076],[-128.2887294468382,52.912538704219216],[-128.2885996287018,52.912411732978036],[-128.28844383529045,52.912252197564435],[-128.28829155573166,52.912088674057635],[-128.28822840948587,52.91200581635875],[-128.28824632818163,52.91195781447719],[-128.28824778542486,52.91184623632878],[-128.28815186579757,52.91169114148727],[-128.28801886548393,52.911591704153516],[-128.2879654481062,52.91156863403611],[-128.28788666158377,52.91155895504505],[-128.28773890810618,52.9115489401671],[-128.28766072344357,52.911550460805636],[-128.2876057288731,52.91158459977722],[-128.28747770223166,52.911647075557276],[-128.28735650056916,52.91166288632966],[-128.2872762039629,52.91164258090221],[-128.2871963082212,52.9116469418566],[-128.2870484128896,52.911651494824476],[-128.28686690755873,52.911602894924464],[-128.28676646220114,52.91155439609893],[-128.28673820801018,52.91154877459708],[-128.28669821655177,52.911567490438244],[-128.28659019623373,52.91158585151887],[-128.2864226482726,52.911571726232154],[-128.28624625029445,52.911548812513324],[-128.2861359079768,52.91154142293966],[-128.28608072960537,52.91153745469431],[-128.2860351442445,52.911538896751374],[-128.28598158566618,52.911617296846536],[-128.28581949948088,52.91177404403142],[-128.28558266839363,52.91187506484816],[-128.28539605553803,52.911887659980465],[-128.285245666663,52.91188049155066],[-128.2851330951764,52.911883799714786],[-128.28502917885183,52.91189198927795],[-128.2848944638404,52.911899090821144],[-128.28476618820557,52.911887563722836],[-128.28461879343647,52.91184950928458],[-128.28444668770013,52.911802400361495],[-128.28419729847587,52.91177360921823],[-128.28387888262074,52.91177810603265],[-128.28359905696186,52.91178970978103],[-128.28337251080066,52.91182213645601],[-128.28313273128524,52.911937784353825],[-128.28292109162837,52.912074187351614],[-128.28283905493626,52.91212566602364],[-128.28280135084822,52.91210005532889],[-128.2826975758842,52.91205890069303],[-128.28258819423922,52.91203468092299],[-128.28242210265847,52.911943162630315],[-128.28219886018775,52.91179389733248],[-128.2820171803485,52.911707174489685],[-128.28183274534373,52.911655816422815],[-128.28165833153855,52.91160033519042],[-128.28153514063024,52.91156180744901],[-128.28140758822278,52.911528960934454],[-128.28126698250298,52.91151319359788],[-128.2809653891132,52.91153585967333],[-128.28056019382782,52.91157286630163],[-128.28031958059685,52.91158593530231],[-128.280196268842,52.91157992172217],[-128.28012159678204,52.911577440760475],[-128.28006172738193,52.91157299558048],[-128.27995327784907,52.911566128595105],[-128.27981599715662,52.911560385383325],[-128.27961342710645,52.91155310002642],[-128.27936955819519,52.91154044385906],[-128.27916424850463,52.9115343319663],[-128.27903994455855,52.91154458851095],[-128.27898457774822,52.911554630418465],[-128.27896617233594,52.911558915513915],[-128.278942280746,52.911547601914066],[-128.2788800345802,52.91151629472805],[-128.27878927194598,52.91149171075552],[-128.27864935639042,52.91148881561191],[-128.2784390581934,52.91152876599714],[-128.2782518772707,52.91158284311125],[-128.27812394911425,52.91157747286703],[-128.27801309329547,52.911543178201185],[-128.2779188476953,52.91152314559479],[-128.27786171844798,52.91151752509154],[-128.2777903410463,52.91152451305617],[-128.27768949333196,52.91153767736597],[-128.27761569047092,52.91155143905074],[-128.27757926807976,52.911567275262016],[-128.27756674672705,52.911577051918044],[-128.27753560003018,52.91160456245037],[-128.27740399987343,52.91166989454763],[-128.27711049376865,52.91175685533418],[-128.27674676633413,52.91178519793218],[-128.27641956148412,52.911729868016835],[-128.27625698322998,52.91163435377511],[-128.27622802760231,52.91156316098895],[-128.2762129911399,52.91152589817401],[-128.27620322958103,52.9115003007933],[-128.2761602442931,52.91148038699228],[-128.27606382835677,52.9114721624309],[-128.27594060709626,52.9114678198866],[-128.27577451044002,52.91146318562825],[-128.27553687146494,52.91146217749222],[-128.27531720900643,52.911466426851106],[-128.27521293271516,52.911467887840196],[-128.27519428708496,52.91146768344784],[-128.27516229937478,52.911531651198466],[-128.27508816671894,52.91166145138118],[-128.27503474807096,52.91172526854202],[-128.2749740307741,52.911722523377165],[-128.2748685906682,52.91171951302114],[-128.2745676289556,52.91178923833548],[-128.2740976423735,52.911956406687864],[-128.27381757038725,52.912085711679886],[-128.2737335865074,52.91213554420372],[-128.27369716217333,52.91215137920758],[-128.27355534209124,52.91216533190062],[-128.27323934805855,52.91223254588232],[-128.27300242479367,52.91233242136302],[-128.27288098693904,52.91239643067837],[-128.27275078705011,52.912435944070054],[-128.27262399934585,52.91248715887424],[-128.272533789151,52.91254271648363],[-128.27246487498974,52.9125956203165],[-128.27237304186383,52.9126556937041],[-128.27221670985043,52.91272934549712],[-128.27198295511346,52.91283644948046],[-128.27174535025887,52.9129060646705],[-128.2715682549479,52.91288761806819],[-128.27147606211003,52.912853521950744],[-128.27145354352743,52.9128505933799],[-128.27145290708924,52.912873593510994],[-128.27145376399525,52.912924584318496],[-128.27142175723836,52.91300592440649],[-128.27135971068282,52.91308280389766],[-128.27130378353056,52.9131522732998],[-128.27126473033198,52.91322365913361],[-128.27124427263047,52.91325936553724],[-128.27122588587966,52.91329896041996],[-128.2711806109235,52.9133934541768],[-128.27114437486387,52.9134827237791],[-128.27113306355858,52.91353282836176],[-128.2711337112248,52.91357990368273],[-128.27112928203408,52.9136366111863],[-128.27112566869533,52.913673678525306],[-128.27111950639264,52.91369789749831],[-128.27108337895004,52.91371934056302],[-128.27099718853353,52.913797798107595],[-128.27092324856943,52.913931519911856],[-128.27088721110567,52.91405946930612],[-128.2708512424501,52.914153774233526],[-128.27079467624785,52.91424624345619],[-128.27074108621028,52.914324636481375],[-128.27072068727657,52.91436146275444],[-128.27068834442017,52.91440132690914],[-128.27059910080254,52.91449274059422],[-128.2705126271523,52.914583544649695],[-128.27045069347497,52.91464528148981],[-128.27038243032376,52.91471050386642],[-128.27031385344205,52.91477012656452],[-128.27022314733514,52.914851477902936],[-128.27009241134422,52.914968356915864],[-128.26994418776405,52.91507211956922],[-128.26977220234733,52.91513205111266],[-128.26961455624672,52.91516368628334],[-128.26955365707542,52.915174951473844],[-128.26954166969463,52.91519479815776],[-128.26948420369908,52.915270466919196],[-128.26947969018738,52.91539555624719],[-128.26959727500608,52.915503724121876],[-128.26966685166386,52.91556796373197],[-128.2696522757171,52.91560917092844],[-128.26962252617446,52.91568037650837],[-128.26954508780872,52.91576595577824],[-128.26939043307777,52.915801452368],[-128.26917267640488,52.91587684069525],[-128.2689628229085,52.916047937771154],[-128.26877752528793,52.916190532444155],[-128.2686724466567,52.91633438709875],[-128.26862925628407,52.91652076345895],[-128.268514418222,52.916639020014635],[-128.26840485992614,52.91668149352283],[-128.26834454321894,52.91673871333682],[-128.268260072204,52.91684964827589],[-128.26815683709822,52.91699346680068],[-128.2680513958954,52.91713059196442],[-128.2679437493845,52.917261597768714],[-128.26784734764092,52.917393507812875],[-128.26777928758173,52.91749796419218],[-128.26772760938272,52.91757743978145],[-128.26765223565127,52.91768427931439],[-128.2675453759714,52.91781247114185],[-128.2674536314277,52.91790953585548],[-128.26740043071965,52.9179604472092],[-128.26734794481288,52.91800742527483],[-128.26729282284128,52.91805726143625],[-128.26723335134807,52.9181127780914],[-128.2671241194428,52.91821410797253],[-128.26702693638728,52.918314075449295],[-128.26700683102587,52.91835650986758],[-128.26699691316205,52.91839761786552],[-128.26695857954635,52.91850037967003],[-128.26691944274285,52.918622781242156],[-128.2669000982839,52.91869714877375],[-128.26687524149332,52.91875536160127],[-128.2667942779076,52.91886230813525],[-128.2666481938825,52.91898901245152],[-128.26647811189048,52.91910271633024],[-128.26635538027662,52.91919533636766],[-128.266313854127,52.919238174306145],[-128.26630794121104,52.91924949953449],[-128.26629510245314,52.919271048370355],[-128.2662891895276,52.919282373597596],[-128.26628311287757,52.919290903632096],[-128.26626799527511,52.919322021502126],[-128.2662984751347,52.91942178017257],[-128.26635293878766,52.91958721463697],[-128.26629885992767,52.919726720689624],[-128.266146215693,52.91981766541371],[-128.26602678661072,52.91986761839431],[-128.2536075053442,52.92323578426477],[-128.25360853664603,52.92339608511409],[-128.25362550267013,52.923575704872654],[-128.25363261993385,52.92376279606768],[-128.25377647477094,52.92389233309864],[-128.25407185053044,52.923943852067566],[-128.2543421658511,52.92401490955348],[-128.25452488655282,52.924156589471686],[-128.25470665542971,52.92429773127995],[-128.25486476681243,52.924449981345894],[-128.25504385608932,52.924593416251064],[-128.25522841431805,52.924734503825285],[-128.25545531735662,52.92484787247673],[-128.25567899834274,52.92505884017387],[-128.2558526251531,52.925204620861],[-128.25601895264697,52.925353339577704],[-128.25618347897046,52.925503222696825],[-128.2562542519991,52.925677881910474],[-128.25637810861582,52.92583414125518],[-128.2565160444044,52.9259923816861],[-128.2565812329955,52.926167147786586],[-128.2566205292903,52.9263457737774],[-128.25672357496416,52.92651364309274],[-128.25682574275052,52.92668265924518],[-128.25691033097485,52.92685424576518],[-128.2569329284924,52.92703431302237],[-128.25701747382723,52.92720478811957],[-128.2570928119699,52.927377673035615],[-128.25713488291453,52.927555689486006],[-128.25723245062835,52.92772590564712],[-128.25721570448275,52.92790224300712],[-128.25706264305038,52.92805653041534],[-128.25686275904184,52.92818929319339],[-128.25670010189805,52.92833872353556],[-128.25659812075523,52.92850716126562],[-128.25644216515673,52.92865982602924],[-128.25626146341196,52.92880286597777],[-128.25604418931422,52.928924193342816],[-128.25582895392824,52.929048835583515],[-128.25564821902955,52.929191319045536],[-128.2555027303912,52.92934826623121],[-128.25533151238136,52.929494486158426],[-128.25533692345073,52.929825112734754],[-128.25521885880528,52.929989381683214],[-128.25503244147754,52.930130286739036],[-128.25481719750638,52.93025493599759],[-128.2545499803495,52.93033124238098],[-128.2542626745218,52.93036253214166],[-128.25408878114382,52.930511052466024],[-128.25393376237932,52.93066425153575],[-128.2537319640664,52.93079647998527],[-128.253540682355,52.93093355617876],[-128.25334461730273,52.93106848138276],[-128.25315124849163,52.93120167741056],[-128.25287121257196,52.93126477179197],[-128.25272998455623,52.93141434170937],[-128.2527172989178,52.93159732661877],[-128.25268089554345,52.931772361621384],[-128.2525486909004,52.93193409078707],[-128.2524117179754,52.932093668799325],[-128.25229460383898,52.93225847213156],[-128.2521013742779,52.93239446181219],[-128.2519196590346,52.93253639246495],[-128.25172163031337,52.93266967497989],[-128.2514623757317,52.93275591153331],[-128.2512295752676,52.93286631495361],[-128.25096747293972,52.9329514837246],[-128.25069738687947,52.93302672350797],[-128.25042004793175,52.933088082922716],[-128.25024114029927,52.93323052211459],[-128.25006513624572,52.93337514771438],[-128.2498170434065,52.933478548813156],[-128.24939265791392,52.93368565422868],[-128.2491352848049,52.933772414475534],[-128.24891979775015,52.9338931282546],[-128.2486666065392,52.933988220345285],[-128.24840481788172,52.93407954773544],[-128.2483209573459,52.93423922676135],[-128.2482358994039,52.934411260814436],[-128.24811877717187,52.934576615554384],[-128.2480035613378,52.93474249877034],[-128.24797757955804,52.93492125190663],[-128.24797493181313,52.93510068043576],[-128.24798070306522,52.935280513178625],[-128.24798088603652,52.935460443671985],[-128.2480061632243,52.93563878269237],[-128.24805735444235,52.93581381945006],[-128.2480752402895,52.93599341175039],[-128.24810147141227,52.93617228855612],[-128.24816945740366,52.93634756946934],[-128.24819479460902,52.93652701937375],[-128.24812741952653,52.9366987152377],[-128.24794659701968,52.93684063069671],[-128.2476836729982,52.93692861431218],[-128.24747670305146,52.93705196047241],[-128.24735681382364,52.93721793186864],[-128.2472736529857,52.93739104961181],[-128.24720086213392,52.93756621149358],[-128.2470826854712,52.93772935152247],[-128.2469219529766,52.9378809626338],[-128.24675360589666,52.93802992055385],[-128.24658238251666,52.93817725591826],[-128.2464206485949,52.93832776424277],[-128.24625183983343,52.93850308069438],[-128.24604159155925,52.93856482556856],[-128.24574203499486,52.93859464979136],[-128.24544772607413,52.93861820255088],[-128.2451513916785,52.938638429879155],[-128.24485445120746,52.938647456933545],[-128.24455365205014,52.93865374956666],[-128.24429786679983,52.93857678618358],[-128.24394298683956,52.938742193600106],[-128.24362465537277,52.93882281118035],[-128.24336413064668,52.93886813682884],[-128.24310391225006,52.93886636955228],[-128.24279252840407,52.938848760051016],[-128.24258466895165,52.93883198458057],[-128.24222071647392,52.93886077549029],[-128.24188311227903,52.93885880250553],[-128.24159782216537,52.93884124891387],[-128.24128965879663,52.938849359564095],[-128.24100868432222,52.93878968537713],[-128.24071623932764,52.938777880389],[-128.2404817954343,52.93878738378217],[-128.24016923344712,52.938800624691815],[-128.23993495636606,52.93883086875418],[-128.23959607320074,52.93887543494677],[-128.23931047283796,52.93890496815136],[-128.23894550952332,52.93895002861984],[-128.23863233652474,52.93905800590977],[-128.23842206401923,52.939137118960986],[-128.238157387081,52.93920998344517],[-128.23791883982324,52.93931878191399],[-128.23764251242292,52.9393828889039],[-128.23735394777682,52.93942705693526],[-128.2370608320609,52.93945560632265],[-128.23678811080626,52.939517409485056],[-128.2364985461649,52.9395604643133],[-128.23620020257368,52.93956052721471],[-128.2359054257594,52.93957509594593],[-128.23562108359843,52.93962870434652],[-128.23532852454593,52.93966789375657],[-128.23504303650085,52.939717603119554],[-128.2347857890516,52.9398076913476],[-128.23454356299527,52.93991767365952],[-128.23427683482672,52.939987195833595],[-128.23398457881854,52.94001460898889],[-128.23368403321794,52.94002591826318],[-128.23338361929297,52.94004002253805],[-128.23309359277204,52.94007411776826],[-128.2330149032639,52.94012045466646],[-128.2328038460374,52.940291502506824],[-128.23277500504244,52.94041704786341],[-128.23271951916135,52.94062101959922],[-128.23269135527676,52.94077738680916],[-128.232583938696,52.940933580039044],[-128.23239901477228,52.94110525238889],[-128.23224439349153,52.94126793701354],[-128.23218463317232,52.94144396188452],[-128.2320910172004,52.941614467124964],[-128.23199832401102,52.941784945792925],[-128.23193105152808,52.941959991789275],[-128.23184780444274,52.94213254233667],[-128.23173535043287,52.94229947600702],[-128.23149196208303,52.94247673942421],[-128.23139531569234,52.9425895602881],[-128.23121736085156,52.942734191910425],[-128.23099472123457,52.942844916080354],[-128.23078111720852,52.94296780064901],[-128.23053758647498,52.943071072107436],[-128.23027039234648,52.943150127218416],[-128.22999027348712,52.94321373117968],[-128.22970327353127,52.943252800650924],[-128.2293648866402,52.94325416027756],[-128.22912702732648,52.94323456564665],[-128.22884056901108,52.943248393573555],[-128.22845172076703,52.94322997019931],[-128.22819169690453,52.94319677508714],[-128.22798624422597,52.94310145127437],[-128.22772726345627,52.94305254006112],[-128.22754550004277,52.943035800008346],[-128.22723409213623,52.94301814940613],[-128.2269490016833,52.94296916547961],[-128.22666795903245,52.94296159383211],[-128.22639338733356,52.942917459023676],[-128.2260981723939,52.942942100818016],[-128.22580502492215,52.94297062212337],[-128.22550093800055,52.94295058633998],[-128.22505549584898,52.94299096266222],[-128.22483716539273,52.94311280434296],[-128.22457686870192,52.943198998597595],[-128.22430868010565,52.94327693764878],[-128.22403411141374,52.94333986631551],[-128.22375572789204,52.94340118026372],[-128.22351898332127,52.943509914084984],[-128.22329870937418,52.94363066835737],[-128.22312639922794,52.94377685760393],[-128.22298833891904,52.94393641794668],[-128.22285594004953,52.944096992281935],[-128.22274338706384,52.94426279717549],[-128.22255388115883,52.944401471445566],[-128.22233751635054,52.944525513189255],[-128.22213080158548,52.944656098900445],[-128.22201629326685,52.94482025374774],[-128.22198179085973,52.94499860262708],[-128.22199955562135,52.945178198151986],[-128.2220188770087,52.94535160275327],[-128.22200153648748,52.94553747528379],[-128.2220127881974,52.94571719368633],[-128.22200623150422,52.94589501498664],[-128.22195870055904,52.94607416569625],[-128.22199493621028,52.94625004921083],[-128.2220645592989,52.94644044173473],[-128.22208799347843,52.94658574129457],[-128.22219215149508,52.94677660295828],[-128.22230153683927,52.94694270184326],[-128.22242015125485,52.947106949249616],[-128.22253131349058,52.94727132825596],[-128.2226287884528,52.947441579989416],[-128.22275020726354,52.94760576514978],[-128.22275157214986,52.94770327429416],[-128.22285861809956,52.94794957930244],[-128.22282960871925,52.94809026337276],[-128.22280155232065,52.94823148548849],[-128.22269363130076,52.94845045853234],[-128.22255959462535,52.94866935941856],[-128.22245281978473,52.94885691101294],[-128.22218772846128,52.949137702994314],[-128.22179180521167,52.94944899054926],[-128.22124476683842,52.949813020661765],[-128.2210926428043,52.949953784520275],[-128.22088075334418,52.950056993507985],[-128.2206498937604,52.95015439839127],[-128.22046427167243,52.950296358188595],[-128.2202718560547,52.95043339639073],[-128.22006793765053,52.95056448067672],[-128.21979878472382,52.950642991288014],[-128.21960148080115,52.95077563611013],[-128.21935682226936,52.95087666168722],[-128.21908961678534,52.95095681103769],[-128.21879331925172,52.95096183016922],[-128.2184956011681,52.95095735056906],[-128.21814950413022,52.95091959302185],[-128.2178718163384,52.950959577936544],[-128.21763865717028,52.95088773594891],[-128.2173464178286,52.95091678284327],[-128.21705250905927,52.95093184238253],[-128.21679434944016,52.95091708883548],[-128.21653153334182,52.95092035079068],[-128.21626137163943,52.950908064201684],[-128.21600219670333,52.95085576719203],[-128.2157158507714,52.95080117376202],[-128.21542106190938,52.95081737585157],[-128.21514846924683,52.950883599452254],[-128.21489200746575,52.950973070699334],[-128.2146599805203,52.95108393841115],[-128.2145163619724,52.95124526876063],[-128.21426188292654,52.95131900607776],[-128.21396400194746,52.95131171085447],[-128.2136665943739,52.9512954462758],[-128.21338282252722,52.95134393850524],[-128.21308963802213,52.951372992483854],[-128.2127965990074,52.951404850183216],[-128.2125089090697,52.95145005065818],[-128.21229437055325,52.951502853579434],[-128.21198097931494,52.95160963916151],[-128.21170823086914,52.95167305927598],[-128.21143795613037,52.951748199161855],[-128.21115442604219,52.95180173071876],[-128.21086158669675,52.95180162443503],[-128.21057719189918,52.95174866801758],[-128.21029119657047,52.95170079032456],[-128.20999938539396,52.95166646512662],[-128.20970107326664,52.95166870086327],[-128.20940380168298,52.95167315848104],[-128.2091118089074,52.95165341753602],[-128.2088324839204,52.95159027210494],[-128.20853566612183,52.9515672480525],[-128.20824061341108,52.95159632490862],[-128.20800066158137,52.95169892408005],[-128.2077852865726,52.95182571669767],[-128.20759955614915,52.951966536082345],[-128.20738105663074,52.95208722501797],[-128.2071117400553,52.95216290182561],[-128.20687487492165,52.952271037127225],[-128.20660863442467,52.95235226048038],[-128.20639205160867,52.952474032621986],[-128.206167680305,52.9525892237912],[-128.20587206733836,52.95260765926198],[-128.20557461457008,52.95260874723916],[-128.2052779603635,52.95262494958945],[-128.20484602216905,52.952676204831114],[-128.2045526192573,52.95270131308452],[-128.204255379691,52.95268838472991],[-128.2039596198943,52.95270401094016],[-128.2036772160449,52.95276142237802],[-128.2033917192334,52.9528132945819],[-128.20311223249342,52.95287289219957],[-128.20285106740673,52.952962424423525],[-128.2025872658301,52.953018929097404],[-128.202314322219,52.952934904486604],[-128.20204639404096,52.95285752089229],[-128.20175791690946,52.95281583040544],[-128.20145995578915,52.952806827775596],[-128.20116177988527,52.95281183738495],[-128.2008798906054,52.952861393840784],[-128.20064216863756,52.952971218307844],[-128.20032049179954,52.95309886230007],[-128.20003194002211,52.953145733993026],[-128.2000004067208,52.95314913035529],[-128.19973879191215,52.953175874698694],[-128.19945116323615,52.95322272769933],[-128.19916464682018,52.95327292243681],[-128.19888122184096,52.95332866410737],[-128.19860486092767,52.95339492787432],[-128.198334667886,52.953472277599545],[-128.19806336151066,52.953546293210984],[-128.19778056818703,52.953596414998444],[-128.19748201197294,52.95361207696823],[-128.19718426410296,52.953625480944496],[-128.19688631334836,52.95363495970627],[-128.1965916420608,52.953653910145206],[-128.19631013246564,52.95371073084751],[-128.1960277699018,52.95376925286393],[-128.19574217004623,52.953819422021056],[-128.19545561610073,52.953869043240225],[-128.1951690619493,52.953918672720704],[-128.19488044114294,52.953964411774436],[-128.1946040407449,52.95403010165064],[-128.19433765025792,52.95410905718651],[-128.19407329558746,52.95419133738],[-128.19380996551178,52.9542752749915],[-128.19354761691113,52.954360323746975],[-128.19328432759818,52.95444538044825],[-128.19302096575132,52.95452876076468],[-128.19275468468427,52.95460995268865],[-128.19248040034478,52.95468064731562],[-128.19220207035386,52.95474524622886],[-128.19193567093205,52.95482419629794],[-128.19168212618067,52.95491748039774],[-128.1914345606456,52.95501793512158],[-128.19119087964555,52.95512168919037],[-128.1909481939083,52.955226536309446],[-128.19070739958514,52.955331912730024],[-128.1904685543619,52.95543893846026],[-128.19022976515035,52.95554707473593],[-128.18999188535088,52.955654637534074],[-128.18975306511663,52.955762217310905],[-128.18951522565695,52.955870899406314],[-128.1892725029224,52.95597518750698],[-128.18900112208902,52.956048061857246],[-128.1887207990269,52.95611044713996],[-128.18846812117474,52.95620258679366],[-128.18821063153658,52.95629200814251],[-128.18798246370886,52.95640723366023],[-128.18776976457312,52.956533381989296],[-128.1876030151521,52.956682218693594],[-128.18748556742887,52.95684695529443],[-128.1873044856452,52.95698933134692],[-128.1874298220401,52.95717758458308],[-128.18746604006762,52.95735572647006],[-128.18756617167273,52.957525389617224],[-128.1876699737502,52.95769386342105],[-128.18770804150242,52.95787196187294],[-128.18781473457955,52.95804206791569],[-128.18789454173273,52.95821547156832],[-128.18797341024586,52.95838889260072],[-128.1880021478207,52.95856660822189],[-128.18801698672436,52.95874625917662],[-128.18802996251878,52.958925953697815],[-128.18803359086425,52.959105256859964],[-128.18798578686213,52.959282152411205],[-128.18802200854844,52.95946028494052],[-128.1880934826068,52.95963496426744],[-128.1881538473826,52.95981097102924],[-128.1881779774886,52.959989893162216],[-128.18818349934264,52.96016972605151],[-128.18817967341013,52.960349167594906],[-128.18816931681044,52.96052873046222],[-128.18812999241788,52.96070714545753],[-128.18809253193783,52.960885534751725],[-128.1880578161966,52.96106274297991],[-128.1879081550086,52.96121798829464],[-128.18777070156025,52.961374692684124],[-128.18773045026362,52.961553124628246],[-128.18769112354437,52.96173154832657],[-128.18768732397217,52.96191154520146],[-128.18765936365438,52.96211161396054],[-128.187700979073,52.9622677898533],[-128.18765476081342,52.96243905006599],[-128.1875127506141,52.96259808071818],[-128.18730468624233,52.96272414104803],[-128.18707653906176,52.96284048435618],[-128.18686767657957,52.96296935684363],[-128.18664360018948,52.96309235003724],[-128.1864308926794,52.96321905991554],[-128.1862816676971,52.96336476109886],[-128.18626507406483,52.96355004439966],[-128.18616124348358,52.96370779939979],[-128.18606038818675,52.9638688622398],[-128.18600331608678,52.964083488303],[-128.185799583531,52.96416686490491],[-128.1855310006237,52.96425929198222],[-128.18529704686955,52.96437181104493],[-128.1850462915688,52.96446614830021],[-128.18475200031938,52.96449402894077],[-128.18446033945057,52.96451849687013],[-128.18417882827444,52.96457697267442],[-128.18389099033405,52.96462154736577],[-128.18360947723315,52.964680012846046],[-128.1833259984647,52.96473683697047],[-128.1830369465375,52.96477582673985],[-128.18273576197902,52.96479654763963],[-128.18249368598097,52.96487838678257],[-128.18230888284313,52.96502194353848],[-128.182060124506,52.96511903536929],[-128.1817877620395,52.9651924656196],[-128.18150719576147,52.965251473407235],[-128.18125267040944,52.965345316069616],[-128.18105782279756,52.965475039014144],[-128.18086612255445,52.965611438643904],[-128.18060752056672,52.96569861999398],[-128.1803251427394,52.96575877945351],[-128.18003066136777,52.96580122532439],[-128.17976144491266,52.965863381910324],[-128.17957866451215,52.96601025978585],[-128.17954528646507,52.96605067946394],[-128.17953824519617,52.96618645767696],[-128.1794894159409,52.96636224613678],[-128.17945486379622,52.966452570047664],[-128.17935511972635,52.966526719345076],[-128.17908874369024,52.966589942763626],[-128.17879117978282,52.96662683713299],[-128.1785046060893,52.96667810119979],[-128.1782241691212,52.96673990558368],[-128.17794361614634,52.96679946034757],[-128.17766212336275,52.96685904077092],[-128.1773825656504,52.96691969682009],[-128.17709691285833,52.966970940362216],[-128.1768092097813,52.96701830188026],[-128.176536969184,52.96709451541663],[-128.17624798864568,52.96711723593273],[-128.17594815443871,52.967109878797764],[-128.17565008375647,52.967100811229365],[-128.1753527807935,52.96708836556688],[-128.1750555925861,52.967078159146986],[-128.17475776636053,52.967073569031086],[-128.1744645043689,52.967103646576746],[-128.17411596136142,52.96709270875588],[-128.17392716314117,52.96723184099988],[-128.17372875701864,52.967365544952834],[-128.1734819439722,52.96746482412588],[-128.17318810595933,52.96748369851895],[-128.1728921788601,52.96746169676306],[-128.172595437486,52.96747838112841],[-128.17229853330886,52.96747376774312],[-128.17200195283814,52.96745737210532],[-128.1717054735421,52.96744265992264],[-128.17140722038545,52.96744815864027],[-128.17110989173685,52.96745363956035],[-128.1708155572392,52.96748092954432],[-128.17054502432725,52.96755429934361],[-128.17028550703841,52.96764259524584],[-128.1700079408782,52.967706003896964],[-128.1697212350274,52.96775500656981],[-128.169433360435,52.96779954585307],[-128.16914662495216,52.96784799160551],[-128.1688589354276,52.96789588920425],[-128.16856902350904,52.96793710069984],[-128.16827575118828,52.967967162825914],[-128.16798986688107,52.96801390398505],[-128.16764804401737,52.96815303497745],[-128.16735458739257,52.9681063107281],[-128.16706178972757,52.96809095405985],[-128.16676475630814,52.96810202373632],[-128.16646710885644,52.96810133741977],[-128.16618119290243,52.96814750970684],[-128.16590872658477,52.96821978311322],[-128.1656211017806,52.96826935754965],[-128.1653575143436,52.96835099083058],[-128.16507384438714,52.9684049753901],[-128.1647779881245,52.96840256578771],[-128.16448096431768,52.96839569270447],[-128.16423908902573,52.96848252968226],[-128.16402722735077,52.9686091814303],[-128.16384889100536,52.968753144692585],[-128.16361319562566,52.96894301212073],[-128.16339348257674,52.96897058965889],[-128.16310360121253,52.969012342926206],[-128.16281478655807,52.96905688298448],[-128.1625391632096,52.96912248003346],[-128.16230209080786,52.969230533527146],[-128.16208445580563,52.96935391542327],[-128.16190088774783,52.96948677002796],[-128.16165030666605,52.969567599935196],[-128.161290861317,52.969672847722684],[-128.1609638172384,52.969607657054446],[-128.16070737119122,52.969518193560525],[-128.16051926089844,52.96937815013382],[-128.16030491059811,52.96925428230306],[-128.16002315203622,52.96919891296417],[-128.15975267914564,52.96912708536083],[-128.1594619960356,52.96917165137784],[-128.1591782275829,52.96922393723289],[-128.15888115553972,52.969234422546116],[-128.15858338657262,52.969231476308885],[-128.158286130571,52.96922010760116],[-128.15798840485343,52.969217715108556],[-128.15769072109234,52.969216442140194],[-128.15739273947824,52.96920900364748],[-128.15709853044427,52.969184123615804],[-128.156811481804,52.9691350137825],[-128.15653573445255,52.969069436734074],[-128.1562738502495,52.968982861480164],[-128.15600765537746,52.96890309979175],[-128.1557352415903,52.968829612588074],[-128.1554645225657,52.96875273062478],[-128.1551947005258,52.968675266635756],[-128.155034233669,52.96852798272693],[-128.15487342735707,52.96837397855494],[-128.15463081974715,52.96828088584386],[-128.15433405402015,52.96827903168569],[-128.1540378153025,52.96826931087141],[-128.15374754501073,52.96822977702262],[-128.15347253455317,52.96816026032284],[-128.15319934686255,52.96808957966281],[-128.1529075116656,52.968056242604085],[-128.1526123319236,52.96803024824663],[-128.15232371514332,52.96798675258668],[-128.1520366950105,52.967937630813324],[-128.15175057157722,52.967887926965304],[-128.15163371895693,52.968067742298295],[-128.1515047324868,52.96822873036382],[-128.1513302536355,52.9683759666304],[-128.15114533013625,52.96851947418774],[-128.15100470225354,52.96867170587096],[-128.1510148905325,52.96885480562794],[-128.15104540157893,52.969033615083006],[-128.15101974604,52.9692089660316],[-128.15093241716193,52.969382080022],[-128.150887279607,52.96955947268361],[-128.1508963729757,52.96973922921792],[-128.15088026406397,52.96991888988555],[-128.15085947383287,52.970098079971145],[-128.15083492642535,52.97027677362904],[-128.1507785735748,52.97045380590447],[-128.15068823882928,52.97062304627761],[-128.15059609622392,52.97079344956531],[-128.15049833156883,52.970963390382096],[-128.15032277195604,52.971107846261454],[-128.15019285980722,52.971269405270725],[-128.1500068252987,52.971409567653296],[-128.1498035997107,52.97154219616966],[-128.14971133785733,52.97171034970026],[-128.14957284171493,52.97186814538802],[-128.14940882884164,52.97201967126685],[-128.14916260217976,52.97211384679632],[-128.148925422512,52.97222075317424],[-128.14869612321124,52.97233591860899],[-128.1484512289385,52.97243791553403],[-128.14819354375194,52.972526692722624],[-128.1479240622527,52.97260390903298],[-128.1476684090226,52.97269601108847],[-128.1474482778139,52.97282670132785],[-128.1472000230159,52.97291754640696],[-128.14695902017496,52.973022832249455],[-128.14669741505728,52.973108314344735],[-128.14642494040126,52.9731816624834],[-128.14624153306792,52.973318972407114],[-128.14609416895786,52.97346794782977],[-128.14595974965837,52.973632946734554],[-128.14592955843682,52.97381118535289],[-128.14585428197057,52.97398351000342],[-128.14567688624626,52.974129112664315],[-128.14550419937808,52.97427575030051],[-128.14535908986093,52.97443253976346],[-128.1452309281165,52.9745923745381],[-128.14505412875988,52.97476823319897],[-128.14494689764396,52.974936098729565],[-128.14483310465909,52.975103527563064],[-128.1449043860026,52.975277111138475],[-128.14494687444355,52.97545346096285],[-128.1449026863057,52.97563194489197],[-128.14486698035856,52.97581196038697],[-128.1448295226442,52.97599424980571],[-128.1448449558723,52.97617053611707],[-128.14494018000426,52.97633807853057],[-128.14507807726193,52.97650035976703],[-128.14523613112777,52.97665554761959],[-128.14542967528158,52.97679270847909],[-128.14564147061893,52.9769216983754],[-128.14576606614338,52.977079171949505],[-128.1458264071258,52.97725800328163],[-128.1459144204636,52.97743016037967],[-128.146043156949,52.97759597046744],[-128.1462164525781,52.977738548044584],[-128.14647580660474,52.97782966706664],[-128.14669726382826,52.97794670377588],[-128.146911787996,52.97807395571983],[-128.14704581929337,52.97821500553923],[-128.1470392966521,52.97840009488305],[-128.14699702225155,52.97857910951235],[-128.14709785404852,52.978746548005645],[-128.14726403893746,52.97889597987447],[-128.14742110019657,52.97904950590632],[-128.14768190524583,52.9791321926856],[-128.14792420062798,52.979236515970904],[-128.14817812846596,52.979331093419034],[-128.14840153434392,52.97944921255271],[-128.14864326172747,52.97956083596156],[-128.14891245568936,52.97964336710914],[-128.14917060987844,52.9797104045661],[-128.14941291220777,52.979814724754675],[-128.14964804033352,52.97992478051929],[-128.14988497768272,52.98003368178393],[-128.15013713519153,52.98012997346955],[-128.15041173623402,52.980189981938956],[-128.15070502025034,52.98015828001968],[-128.1509714848789,52.980076064420594],[-128.15125018519683,52.98001436840777],[-128.1515472027599,52.98001959031711],[-128.15183760818562,52.98006024930533],[-128.15211697876106,52.98012240880117],[-128.15239892774946,52.98018003640668],[-128.15269332355425,52.98020716800522],[-128.1529869501288,52.980237676035195],[-128.153254037067,52.98031519579404],[-128.1534892346425,52.98042636386029],[-128.15375023017924,52.98051239713571],[-128.15404284938307,52.9805412349594],[-128.15433966955166,52.98056103593802],[-128.15463619244588,52.980574671431704],[-128.15492979433554,52.98060461013618],[-128.15519872317608,52.980681526888866],[-128.1554419574576,52.980785261912615],[-128.15567354758164,52.98089873380524],[-128.15592123948173,52.98099845820683],[-128.1561671528414,52.981099891719374],[-128.15638710179934,52.98122310857146],[-128.1566410909351,52.98129973053931],[-128.1569409494517,52.98132395360809],[-128.15723860427443,52.981322988470474],[-128.15753559018123,52.98130913842865],[-128.15783227833018,52.981289131871804],[-128.15812897994184,52.98126968931859],[-128.15842592323204,52.981254716764624],[-128.15895125603794,52.98123500281157],[-128.15926980519578,52.98124149693822],[-128.1595664482194,52.98125736001138],[-128.15986008697624,52.98128785089887],[-128.16015139190253,52.98132735214905],[-128.16044698219457,52.98134099024709],[-128.16074504955054,52.98132991935066],[-128.1610441421986,52.981320514933856],[-128.16134223750208,52.981309998043955],[-128.1616171727605,52.98124778149608],[-128.1618825411304,52.98116276302112],[-128.1621661293407,52.98110542657869],[-128.16246177336893,52.9810652487619],[-128.16273970956672,52.98100690257117],[-128.1629673808715,52.980896224612906],[-128.1631694135977,52.98075854694605],[-128.16334139964266,52.98067243236332],[-128.1636655042873,52.98056782961634],[-128.16394092882646,52.980497195169825],[-128.16421828859214,52.98042763658484],[-128.16448579644705,52.9803481779198],[-128.16475034221835,52.98026540095789],[-128.16502893798463,52.980201987901935],[-128.16531366907105,52.98014911578825],[-128.1655973887701,52.98009457551585],[-128.16587693531957,52.980031698966],[-128.16615251008514,52.979963854554846],[-128.166428097823,52.97989657424686],[-128.1667066315825,52.97983203721923],[-128.16699112926685,52.979774672113926],[-128.16735186493756,52.979729921423626],[-128.16752588604396,52.979811919335106],[-128.16779383576122,52.97988770468141],[-128.1680827205111,52.97993452210829],[-128.16837723888057,52.97996385451615],[-128.1686734405012,52.97993486100047],[-128.1688731466648,52.97980674922471],[-128.16905514072815,52.979661026468186],[-128.16921576921646,52.97959024164251],[-128.1693205238773,52.97963147758701],[-128.16958897171102,52.97962541357456],[-128.16988656051447,52.97964178917341],[-128.17018692557264,52.97965755685061],[-128.17048471521576,52.97967785538478],[-128.17077731164872,52.97970609615919],[-128.17106047526073,52.97975076965037],[-128.1713004424946,52.97986293616225],[-128.17155586179408,52.97994903339719],[-128.17184662455597,52.97997786139375],[-128.1721485711887,52.97998798975097],[-128.17244843830716,52.97999423650903],[-128.17274680772476,52.9799892907115],[-128.1730424252168,52.97996702320431],[-128.1733356051425,52.97993358946482],[-128.1736290709595,52.97990575493746],[-128.17392451557404,52.979880125251505],[-128.17422388153454,52.979876287322696],[-128.17450098905474,52.9799300237818],[-128.17472273511487,52.98005093210979],[-128.1749127467324,52.98018979755356],[-128.1751524111651,52.980295791781536],[-128.17540279167386,52.980392628287795],[-128.17563531537863,52.98050492364027],[-128.17587858312194,52.980608607810474],[-128.17612457072394,52.980710564175844],[-128.1763516761094,52.980826321370294],[-128.17659230149718,52.980932860019415],[-128.17683190249002,52.9810377400341],[-128.17708055569935,52.98113683811995],[-128.17734433550993,52.9812216475769],[-128.1776285991282,52.98126908336431],[-128.17792416557523,52.98124568364421],[-128.1782205922265,52.9812026534472],[-128.17847869374975,52.98124944980654],[-128.17871952755468,52.98135989955367],[-128.17889676380867,52.98150404423682],[-128.17913820946274,52.98160832057206],[-128.1794185124829,52.981669277925],[-128.17969446274336,52.98173647641924],[-128.17999046422028,52.98175790538956],[-128.18026346805289,52.98182235895604],[-128.18048711999577,52.98194322152079],[-128.18073571464097,52.98204119213388],[-128.18099391319774,52.982126096912566],[-128.18147999761192,52.98206889343472],[-128.18176672893756,52.98201874258781],[-128.182060002621,52.98198697164174],[-128.18235752235364,52.98196520177578],[-128.18263568007623,52.98202058608827],[-128.18292027151804,52.982074173474494],[-128.18321446978214,52.9820967488727],[-128.18351105523737,52.982111431965855],[-128.18380400731323,52.98209142915454],[-128.18409437115116,52.98213032415446],[-128.1843694649096,52.982198657770574],[-128.18464198480572,52.98227151370675],[-128.1849133935622,52.98234103545288],[-128.1850987943276,52.98247997058967],[-128.18531922681615,52.982592471609465],[-128.18557859313916,52.98268182908628],[-128.18586398832335,52.982732587479184],[-128.18615432985243,52.98277092187909],[-128.18644721699505,52.98280415913014],[-128.18673844175035,52.98284135466974],[-128.18695380483203,52.98296403624862],[-128.1871174142094,52.98311458327736],[-128.18735434999863,52.98322116903338],[-128.18758842472562,52.98332668639588],[-128.18778304709105,52.98346320416806],[-128.18798442305356,52.98358614363119],[-128.18827445306712,52.98363625422252],[-128.1885584544462,52.98369600052339],[-128.18879172519232,52.98380377260268],[-128.18885477247997,52.983976920201876],[-128.18887995954782,52.984158062366596],[-128.18879615701252,52.9843972815449],[-128.18868431854946,52.98456359712328],[-128.18860552436854,52.98473713719417],[-128.18849086540922,52.98490293990243],[-128.1883515880254,52.98506191732975],[-128.18816657255417,52.985202677109875],[-128.18796329971184,52.98533313009013],[-128.18778115831142,52.98547552188817],[-128.18757694308982,52.98560599163107],[-128.18737162871759,52.98573311824644],[-128.18717786232097,52.98586732142536],[-128.18698037939242,52.98600158425966],[-128.18682110056739,52.98615308347832],[-128.18664172759148,52.98629485692648],[-128.1864325620586,52.98641981110893],[-128.18620113484857,52.98652948324146],[-128.18593085624266,52.98659167058879],[-128.18583486005582,52.98675768905691],[-128.18563659489442,52.98685889754487],[-128.1854477175745,52.98699748212921],[-128.18521456393987,52.98710999129793],[-128.18498240611896,52.987223593588325],[-128.18488663510996,52.987394091133126],[-128.18466592956526,52.98767620219161],[-128.1845455372792,52.98783986453702],[-128.18437485134797,52.987987643313886],[-128.18410983482303,52.98806149515627],[-128.18381958489806,52.98809826348911],[-128.18354788819732,52.98816943969841],[-128.18333787946975,52.988296645621865],[-128.18323905027776,52.98846214902927],[-128.18314892202534,52.98863366135994],[-128.18310013944955,52.988810568927775],[-128.18309161947911,52.98899009373073],[-128.1830502963573,52.98916686304403],[-128.18302782435092,52.989347202286815],[-128.18287226390555,52.98949862649451],[-128.18274241926886,52.989660219593084],[-128.1825916554061,52.98981435264507],[-128.18268756299594,52.98993701212369],[-128.18279315056594,52.990084711211026],[-128.1826626663741,52.9902519211844],[-128.18244527570857,52.99036301120841],[-128.18218040863175,52.99045815530448],[-128.18196757941243,52.990585410553095],[-128.18174879504372,52.99070549334288],[-128.18160500422655,52.99086846414497],[-128.18143999216383,52.991017810038215],[-128.18129495805718,52.99117464216102],[-128.1811432435538,52.99132879061991],[-128.18102571850636,52.99149407258421],[-128.18094501553716,52.99166765029176],[-128.18080359226389,52.991822163805665],[-128.180587818385,52.991946672628735],[-128.18032744927848,52.99203893087391],[-128.1801970126076,52.99218932115457],[-128.18006152512163,52.992350450082085],[-128.17996945317486,52.99252087410827],[-128.17999910549304,52.99269857092851],[-128.18011490736825,52.99286346378925],[-128.18022424687476,52.99302959712117],[-128.18031883799506,52.99319936630574],[-128.18044206077502,52.99336300052309],[-128.18057725705447,52.99352360600499],[-128.18072892549597,52.9936777453269],[-128.18089793388359,52.993824281332195],[-128.18094627189586,52.994002188140385],[-128.18092749038985,52.9941819019256],[-128.1808297647043,52.9943513100066],[-128.18069039874132,52.994509713017685],[-128.1806246678472,52.994684125121296],[-128.18061804541102,52.99486417879867],[-128.1806141844181,52.995043616362615],[-128.18062527424493,52.995223333336526],[-128.1806549886666,52.99540214968066],[-128.1806893591488,52.995580879859254],[-128.18078860004562,52.9957500064865],[-128.18090724725508,52.99591540186998],[-128.18100277272953,52.99608515309515],[-128.18107335432018,52.99625984996498],[-128.18110957900902,52.99643798962976],[-128.18108330672692,52.99661727678255],[-128.18115469976848,52.996789716480805],[-128.18125297621646,52.996958295526326],[-128.18130409628728,52.99713559443176],[-128.18133938253592,52.99731375133155],[-128.1813858609725,52.99749169211154],[-128.1814453405563,52.997668280182374],[-128.18148152410052,52.997845855393685],[-128.1814440025241,52.998024229644145],[-128.18141680588224,52.998203542785404],[-128.18141481338935,52.99838294549706],[-128.1814128493999,52.99856290369569],[-128.18140808022173,52.99874292275629],[-128.1814061451677,52.998923445382204],[-128.1814228072229,52.99910250279417],[-128.18150077094603,52.99927537656757],[-128.18160008120532,52.99944562211216],[-128.18171693391494,52.99961217081435],[-128.18185577130626,52.999770474196715],[-128.18201946991695,52.999922147041275],[-128.18210190480846,53.000000214612655],[-128.18230844513937,53.00013147139159],[-128.1824425725773,53.000288740266534],[-128.18253360127457,53.00046137146483],[-128.18262182541608,53.00063406348516],[-128.1827164715777,53.00080438548393],[-128.18285066019106,53.00096277380187],[-128.1830344851629,53.001106225345005],[-128.18318251601568,53.001261549881335],[-128.18332603516322,53.001419755904095],[-128.18346764633586,53.00157744106377],[-128.1836120643863,53.001735074065024],[-128.18375657008886,53.00189439130769],[-128.183952871459,53.00202583499619],[-128.1841864328918,53.00213753938312],[-128.18442909274276,53.002244581617994],[-128.18461097052077,53.00234995167637],[-128.18432967923857,53.002435878680785],[-128.18403643932342,53.00247102375173],[-128.18373940031108,53.00248661586568],[-128.18345167905974,53.00253846378847],[-128.1831615838427,53.0025438365113],[-128.18286664007357,53.00250950606282],[-128.18256651156003,53.00250161069775],[-128.1822824488646,53.00255171093632],[-128.18203649184636,53.002653228749224],[-128.1818245413976,53.00278046541315],[-128.18163977270592,53.002927942238436],[-128.18142606025995,53.00303895125853],[-128.1811208488606,53.003041235506394],[-128.18084633618102,53.00296840684318],[-128.1805619523389,53.002921534934174],[-128.18026329956558,53.002905759136226],[-128.17996761858453,53.00291179225351],[-128.17967559890232,53.002952499972785],[-128.17938537237706,53.00299206174326],[-128.17909413355716,53.003029955467944],[-128.17879847368513,53.003054477788616],[-128.17850065313803,53.003054932619996],[-128.17820307628912,53.0030604313231],[-128.1779057796097,53.00305303671868],[-128.17760825294832,53.003041152520616],[-128.17730920566592,53.003036030816176],[-128.17700920417388,53.00303036097621],[-128.1767102713462,53.00302746873585],[-128.17641461747237,53.00303404844976],[-128.17613218013773,53.003079619527576],[-128.17586875513686,53.003168559196055],[-128.17561005797458,53.003258532029626],[-128.17536895347348,53.00336387406035],[-128.17512205033253,53.0034654034375],[-128.17487795151172,53.00356687156615],[-128.1747005033157,53.003711959829936],[-128.17450084546678,53.00384287510514],[-128.17424423626034,53.00393729038171],[-128.1740503887613,53.00407202575704],[-128.17386430331007,53.00421278779399],[-128.17363102410238,53.004325263938995],[-128.17340159012005,53.00443991972821],[-128.17317122904979,53.00455458316207],[-128.17294280368245,53.004670896463246],[-128.17272205557697,53.00479099588339],[-128.1725340107096,53.0049301057077],[-128.1724409270503,53.005099975167866],[-128.17239122634092,53.00527856937696],[-128.17231229880994,53.00545154090772],[-128.17220128076687,53.00561782143308],[-128.17207802686778,53.00578207623108],[-128.1719509687449,53.00594528889205],[-128.1718096658846,53.006103714687086],[-128.17169296070378,53.006268413342795],[-128.1715895441754,53.00643735118762],[-128.17148709558398,53.00660682711081],[-128.17137607129357,53.006773106745804],[-128.17123000544288,53.00692993337714],[-128.1710677719051,53.00708089635988],[-128.17089887142012,53.00722918376493],[-128.17072613708507,53.00737585545874],[-128.17055548238986,53.007526407682384],[-128.17037511060337,53.0076698563232],[-128.17016765788043,53.0077947457071],[-128.16990137146678,53.00788316766993],[-128.1696150622385,53.007927107525255],[-128.16931752224355,53.00793370348739],[-128.16899811699102,53.00793285377952],[-128.16870810358688,53.007977424549004],[-128.1684181045012,53.008021994329596],[-128.16812664993964,53.00805650093803],[-128.16783225405857,53.00805182507987],[-128.16754050184946,53.00800730804402],[-128.16725821953997,53.00794691292931],[-128.16696523125015,53.00791474846719],[-128.16666853048244,53.00791963629749],[-128.166380609058,53.00796864694744],[-128.166089438756,53.008008748388654],[-128.165797056924,53.008043266243135],[-128.16550683980697,53.00808391371041],[-128.16522803317838,53.008146762377066],[-128.16495251740997,53.008219083109644],[-128.16467996327822,53.008294711868125],[-128.16442007131064,53.008380761717135],[-128.16421162844807,53.00850509336842],[-128.1640246508636,53.00864753197709],[-128.16382317176408,53.00878014720414],[-128.16362077974046,53.008913343800955],[-128.1634259924771,53.00904919854512],[-128.16324647354605,53.00919149892412],[-128.16308903146137,53.00934572520013],[-128.16295815372862,53.009507867084146],[-128.16287533400356,53.0096786603774],[-128.1628462276914,53.00985912246757],[-128.16281237793405,53.010037985523596],[-128.16278225982308,53.010216780096485],[-128.16275027548508,53.01039560886963],[-128.16270517198362,53.01057355722515],[-128.16268251699918,53.010752214811475],[-128.16268887755177,53.010932017221116],[-128.1626989556965,53.011111760393],[-128.162710886127,53.01129090457867],[-128.16272469603544,53.011470570298144],[-128.16273944699532,53.011650227706525],[-128.16275419762374,53.011829876134236],[-128.16276894883313,53.01200953350085],[-128.162783699711,53.012189181886825],[-128.16279565954378,53.012368890415914],[-128.16280573802487,53.012548624466454],[-128.16281396590009,53.01272840141087],[-128.1628100280923,53.01290783648732],[-128.16279584756887,53.01308801543892],[-128.16278071305305,53.013267655840444],[-128.16277211725028,53.01344717628952],[-128.16276723867696,53.013626628538965],[-128.16276332933154,53.01380662798429],[-128.16276128562808,53.01398658422371],[-128.16275921362038,53.01416598493846],[-128.1627590364855,53.01434591587253],[-128.16276261994634,53.01452633383933],[-128.16278124680375,53.01470871791131],[-128.16280742382543,53.01489264052629],[-128.16283078098132,53.0150760588154],[-128.1628418865902,53.01525745976014],[-128.1628312671627,53.0154342190598],[-128.16278862322307,53.01560539562],[-128.16268179976456,53.015763732005716],[-128.16250519954943,53.01590878362169],[-128.1622994073947,53.01604932115997],[-128.16210877177002,53.01619406447589],[-128.16196077308462,53.01635091297037],[-128.1618365936102,53.01651685770074],[-128.16174536504903,53.01668780331232],[-128.1617150667145,53.01686323700277],[-128.16174391882436,53.01704487746245],[-128.16174671482048,53.017228107585275],[-128.16183060137675,53.01740817415292],[-128.16199146091603,53.01754086795143],[-128.1622187816959,53.017657769813816],[-128.16245420946782,53.017768917525096],[-128.16269322872114,53.01787720086647],[-128.16293317442484,53.01798545777915],[-128.16316951820787,53.01809603128556],[-128.16339768508638,53.0182112294262],[-128.16361310300198,53.01833283110301],[-128.16382255318115,53.01846575204288],[-128.16401669069265,53.01860960773097],[-128.1641207939605,53.01881956917051],[-128.16421377872678,53.01893948840516],[-128.16429495660532,53.019102787784654],[-128.16431132614005,53.019277365607095],[-128.16428898742356,53.019462186882144],[-128.16429631057082,53.01964253575693],[-128.1643018244722,53.01982403882961],[-128.16430917604748,53.02000494316856],[-128.16432489071897,53.02018513799005],[-128.1643554375758,53.02036281856933],[-128.16440822429445,53.02053729292969],[-128.16448450762897,53.02073262631808],[-128.16466405236673,53.020864973671074],[-128.16483594894228,53.02101203432187],[-128.16505648723142,53.02114195159614],[-128.1652492431623,53.021276853617564],[-128.16532579959457,53.021440802053675],[-128.1653147195939,53.021626528688564],[-128.16530812734715,53.021808818837584],[-128.16530700642042,53.0219882015006],[-128.16530310661088,53.022168191184576],[-128.16530013300738,53.022348172812684],[-128.1653018326491,53.02252805965773],[-128.165311910751,53.02270723664304],[-128.16532946886988,53.022886841275415],[-128.16535450772503,53.02306629958176],[-128.16538604387412,53.02324508256028],[-128.16543616028497,53.023421847357625],[-128.16552711232268,53.023593369359304],[-128.1655948974564,53.02376868865623],[-128.16565058626543,53.02394478603203],[-128.16569889469253,53.02412269592078],[-128.16573973765318,53.0243007518263],[-128.16577127634028,53.02447953457238],[-128.16579353942853,53.024659608627395],[-128.16573875776388,53.02483100824728],[-128.16556419658738,53.02497994478427],[-128.16540942588964,53.025132436757495],[-128.16538496500206,53.02531224756296],[-128.16521400472107,53.025458875353245],[-128.16506503104182,53.025615188382716],[-128.164968053457,53.02578344293613],[-128.16494264953147,53.02596327084916],[-128.16494245281675,53.026142636077836],[-128.16499073245322,53.02631999052614],[-128.1650631651066,53.0264946595956],[-128.16513651038252,53.02666874687303],[-128.16520056542365,53.02684413460871],[-128.1652265319513,53.02702357553007],[-128.16525804217167,53.027201802627204],[-128.16527937861886,53.02738189348799],[-128.16532847273518,53.02755699075126],[-128.16546101398222,53.02771934600538],[-128.16554727267385,53.0278903978692],[-128.16558444179284,53.02806963297714],[-128.16557019745488,53.028248134921796],[-128.16551385789595,53.02842573260854],[-128.16546025297808,53.02860215006326],[-128.165460087226,53.02878207947536],[-128.16549343772868,53.02895970759696],[-128.16553985607368,53.02913709579769],[-128.16560022616702,53.02931310682964],[-128.16568191456193,53.02948591943633],[-128.16578302680304,53.02965502130855],[-128.16591000420087,53.029818034181616],[-128.16607183770793,53.029968640793285],[-128.16621442089354,53.03012632673912],[-128.16635151889744,53.030286355265545],[-128.16649410418816,53.03044404084415],[-128.16663120427157,53.03060406901583],[-128.1667572185121,53.03076654266848],[-128.16687036590199,53.03093318054519],[-128.166965016415,53.03110351214248],[-128.16704858115222,53.03127629828861],[-128.16709127473436,53.031453754227144],[-128.16710791755327,53.03163336572515],[-128.16712829479246,53.031812917570335],[-128.167165416847,53.03199103181187],[-128.16719790817825,53.03216979608613],[-128.16724526315113,53.032347166271634],[-128.16729452921322,53.03252506630523],[-128.16734564724516,53.03270292331558],[-128.1675847058414,53.03281007584125],[-128.16782826848507,53.03291377314409],[-128.16809500163578,53.032995753970084],[-128.16835982612542,53.03307663931441],[-128.1685791248069,53.03319928218829],[-128.16879124292532,53.033327661710615],[-128.16904777683578,53.033410948951264],[-128.1693381243182,53.03346109569937],[-128.16962238892995,53.03352033064035],[-128.16990132568256,53.03358470295457],[-128.17015002645326,53.033679333037846],[-128.17037202686453,53.033799680975385],[-128.17058961147703,53.033925158773584],[-128.17081791239573,53.03404090595007],[-128.17105345349998,53.03415203543151],[-128.17128989300653,53.03426258293586],[-128.171519978965,53.03437661891941],[-128.1717117128198,53.03454460384746],[-128.1718898063562,53.03464670012386],[-128.17210601961366,53.034781724555124],[-128.17227434994143,53.03493051736622],[-128.17243450196582,53.03508395353935],[-128.17261004516797,53.03522757302132],[-128.17284291906938,53.03534099019451],[-128.17308568273035,53.03544693372751],[-128.1732161095784,53.0356037144263],[-128.17332288256634,53.035772705781454],[-128.17352218765393,53.03590579716706],[-128.17373339322188,53.0360341849389],[-128.17393367028802,53.036167813767435],[-128.1741284475479,53.036303794601196],[-128.17418461816595,53.03648828180673],[-128.1743311255147,53.03663019187943],[-128.17443010633127,53.03679315583737],[-128.17445657157037,53.036963061241764],[-128.17448499862246,53.03711668034589],[-128.17460543188793,53.03727868377929],[-128.17476122767025,53.037437802230826],[-128.1749159583459,53.03764906247617],[-128.17539616309298,53.03764693558945],[-128.17579792574176,53.03762775222704],[-128.17609761881235,53.03764072626212],[-128.1763967300232,53.03766042735305],[-128.17669435511428,53.03766951001406],[-128.1769928779557,53.03767801934197],[-128.17733714678872,53.03766718259444],[-128.17759441253156,53.03769101590801],[-128.17788663795181,53.03770412324398],[-128.1781843496408,53.03771487758961],[-128.1784790173331,53.03773914846762],[-128.17876906064186,53.037782552198834],[-128.179057410313,53.03782935850229],[-128.17934984561515,53.03786486958355],[-128.1796437614211,53.037892514499624],[-128.1799394143512,53.0379178756078],[-128.18023180887516,53.0379522732385],[-128.1805119526936,53.038003146717905],[-128.18079568194545,53.03806908242263],[-128.18105979430334,53.03815332521908],[-128.18132479075643,53.03823642111666],[-128.18156461166865,53.03833904806836],[-128.18175683124886,53.038478983117564],[-128.18200288036442,53.0385753240009],[-128.18227756764855,53.03864702850229],[-128.18255497798512,53.038717004976036],[-128.18282344142014,53.03879499340535],[-128.18308970797318,53.03886629582325],[-128.18331589016407,53.0389579615664],[-128.1836314551387,53.03904292368392],[-128.18392823240325,53.03907161719972],[-128.18421918242416,53.03907800659889],[-128.18451821900703,53.03904163817368],[-128.18481300833085,53.03903169587658],[-128.18510125784064,53.03907624749217],[-128.18538731980212,53.03913260506794],[-128.185671558033,53.03919011675744],[-128.18595489949846,53.0392482004106],[-128.18622677582883,53.03931939195238],[-128.18649636396998,53.039400714391384],[-128.1867599010184,53.03949168146246],[-128.18699628205547,53.039599401498734],[-128.18719637190136,53.039728528048045],[-128.1873766311991,53.03987148301127],[-128.18754056185264,53.040024264557],[-128.1876916686796,53.04018176769745],[-128.1878343950796,53.04033998206341],[-128.18795506207263,53.04050534035115],[-128.18804249393193,53.040678596915875],[-128.18809269614272,53.04085478582848],[-128.1881215328285,53.04103361294085],[-128.18813920948858,53.04121320300881],[-128.18814666679324,53.04139411254796],[-128.18815125750862,53.041573945248224],[-128.1881306472235,53.04175425422685],[-128.18809221767634,53.04193320761268],[-128.18813958398786,53.042108884005884],[-128.18823262196526,53.04228203638461],[-128.1883634007558,53.04244384364803],[-128.18852808369664,53.04259268187021],[-128.18871202169439,53.042734445625136],[-128.1888987981079,53.04287671247338],[-128.18906900035043,53.04302377055467],[-128.18923894164132,53.04318372038072],[-128.18933983370258,53.04334608107384],[-128.18952276454695,53.04348617630014],[-128.1897368647928,53.04361448274905],[-128.189961013447,53.04373811829743],[-128.19017689678915,53.0438647048858],[-128.1903643203363,53.04400135244019],[-128.19050867709214,53.0441544933173],[-128.19062005680442,53.044320577328456],[-128.19071037384882,53.044494899330616],[-128.19079148416682,53.04467219919528],[-128.19087534555422,53.04484831794416],[-128.19097293253583,53.045018585707886],[-128.19109520297178,53.04517829701894],[-128.1912615714305,53.045323181217576],[-128.19147933466434,53.04544973958964],[-128.191728904902,53.04555888271162],[-128.19198969761004,53.04564988966743],[-128.19226139365287,53.04571658729928],[-128.1925092603421,53.04581063130871],[-128.1927420856171,53.04592120447197],[-128.19300360587582,53.04602620388183],[-128.19322711168547,53.046119022102296],[-128.1934450154407,53.04621193507026],[-128.1936542055949,53.046298848548105],[-128.19385311771532,53.046368016565225],[-128.194024045897,53.04652850641781],[-128.1941151633971,53.046700013013485],[-128.19419236909206,53.04687345523127],[-128.19426866288939,53.04704747036964],[-128.19435607608108,53.04721960166422],[-128.1944491218907,53.047392193141015],[-128.19454955168078,53.04756296123094],[-128.19467107538762,53.047726045905726],[-128.19483022734187,53.04787554351732],[-128.19503436233734,53.04800907510412],[-128.19526198022837,53.04812703141029],[-128.1955048442077,53.04823237254667],[-128.19575945073083,53.04832964764801],[-128.19601679442422,53.04842575027291],[-128.19626590139305,53.048525368670234],[-128.1964977382811,53.04863427607259],[-128.19668229331032,53.048768725353646],[-128.1968031921879,53.048937424619886],[-128.19694692374182,53.049095618598486],[-128.19716816819272,53.04921648804868],[-128.19738036603528,53.049343139559866],[-128.19757438124998,53.04947965338325],[-128.19776474914423,53.049617911853176],[-128.1979569571824,53.0497555797365],[-128.19815462471252,53.04989034759174],[-128.1983586776544,53.05002218917741],[-128.19856817581214,53.0501505659545],[-128.19878759192724,53.050272031533126],[-128.1990322285577,53.050375090626325],[-128.1992894759753,53.05046894614429],[-128.1995059994583,53.05058877833693],[-128.1997302401637,53.05069502314755],[-128.19989489828458,53.05087804191706],[-128.19999320018937,53.051043240200514],[-128.2000011063443,53.051051495924376],[-128.20014149603654,53.05119909438133],[-128.2002861448231,53.05135670237361],[-128.200494559772,53.05151817036251],[-128.20065067862996,53.05168060413598],[-128.2007987011641,53.05181293035785],[-128.20096337715384,53.05196007500732],[-128.20111195021724,53.052085099530935],[-128.20130245436357,53.05220765582812],[-128.20148409242893,53.05237522660351],[-128.20168218965196,53.052517818876915],[-128.2018801316067,53.05267555185721],[-128.202020570528,53.05278783988964],[-128.2021515678843,53.0529703626082],[-128.2023924633024,53.053072919833],[-128.20263377852027,53.05316538861846],[-128.20289924865202,53.05327309128484],[-128.20309519280784,53.05339218920404],[-128.2032425349904,53.05360130994405]]]}' - )), 4326)))); - -INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Cariboo','5','5- Cariboo','AR10100000','WHSE Admin Boundary',3 - , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-120.28144716490331,52.699982277216726],[-120.28166686600646,52.70011896334786],[-120.2828756256696,52.701201315825905],[-120.28407887503646,52.70254761120022],[-120.28522032845889,52.70335566367774],[-120.28751046571567,52.70414004606085],[-120.28965042825898,52.70482428295139],[-120.29240122405507,52.70539101976941],[-120.29252745630977,52.70567097398517],[-120.28939316354857,52.70541324522477],[-120.28599549824204,52.705567562471295],[-120.28430391282484,52.70597954066127],[-120.28109902884427,52.70691559824003],[-120.28083291217072,52.70745857213733],[-120.27977185580527,52.708938031039374],[-120.27978189189712,52.70908525826075],[-120.27979267736787,52.709226891266205],[-120.27978935429807,52.709362778321],[-120.27964278064515,52.70945736295711],[-120.27942529333349,52.70952597887767],[-120.27922385804065,52.70958582765892],[-120.27900764078449,52.709644952325824],[-120.27880620434767,52.70970480038374],[-120.27859118315975,52.70975498786757],[-120.2783755628213,52.70980964315706],[-120.27815994193219,52.709864298047606],[-120.27794499342299,52.70991393028236],[-120.27773019529164,52.70996243613495],[-120.27751509610646,52.71001318462698],[-120.27730014729923,52.7100628067367],[-120.27707228707438,52.71009774579993],[-120.27684382766677,52.71013715261249],[-120.27663007392854,52.710177846037546],[-120.27640168914233,52.71021668899316],[-120.27618786032522,52.71025793566452],[-120.27597350645614,52.7103030960774],[-120.27575870413729,52.71035159830088],[-120.2755282201043,52.71040608713984],[-120.27532744966409,52.71046089800538],[-120.27511174612788,52.710516110250055],[-120.27489559396797,52.71057466429583],[-120.27469347288381,52.71063953641421],[-120.27447672046252,52.71070255786268],[-120.27427444836745,52.71076854629712],[-120.27408568486955,52.710844749175585],[-120.27392341428335,52.71094529549888],[-120.2738037651921,52.71106086533794],[-120.27366873445949,52.71118017878129],[-120.27353430214654,52.71129502388634],[-120.2734140518401,52.7114150614727],[-120.2732649104536,52.71152862772448],[-120.27310428320678,52.71161688539678],[-120.27290088169079,52.711691244768055],[-120.27268456955544,52.711750920664564],[-120.27248259058557,52.71181466293728],[-120.27227971084793,52.71188511604265],[-120.27206339806516,52.71194478184764],[-120.27184918123481,52.711988817618526],[-120.27162190568818,52.71201927786795],[-120.27139410593674,52.712053642847486],[-120.27118146197438,52.712085944006105],[-120.27095373584665,52.71211975407567],[-120.27072518447761,52.71215971188456],[-120.27051036689257,52.712208204419625],[-120.27028114077055,52.712253183565494],[-120.27006677067553,52.712298333104975],[-120.26985375036311,52.712333419974286],[-120.26962632166737,52.71236499338135],[-120.26938800798413,52.71236679840094],[-120.26916687502872,52.712351455353655],[-120.26892976073758,52.712344323145466],[-120.26869099737041,52.71234947785639],[-120.26845088458002,52.712364685404424],[-120.26825114423333,52.712411673749315],[-120.26813200110911,52.71252332358602],[-120.26803297434833,52.71270680574982],[-120.2683216362544,52.71388189379666],[-120.26953134658105,52.71495767180443],[-120.27062374477461,52.71557737021681],[-120.27147408511172,52.716559601479396],[-120.27230740808518,52.717447108578234],[-120.27338131166643,52.71842735221519],[-120.27596892965518,52.71921750517063],[-120.2820285784541,52.7208633853572],[-120.28365914405965,52.72135635842112],[-120.28512865746933,52.72194093332705],[-120.28718246354575,52.72271932955358],[-120.28924567727223,52.72353917983902],[-120.29094147552749,52.72399081239386],[-120.2924367140561,52.72416165650734],[-120.29348358054588,52.72423525953055],[-120.29498540604138,52.72435692048751],[-120.29654608888399,52.724483682500015],[-120.29834025516872,52.724756734146396],[-120.29961374458527,52.72491666656982],[-120.29888095500658,52.725723058148695],[-120.2979963988474,52.726662585439655],[-120.29751974760514,52.72711099869403],[-120.29678383489107,52.7280515817626],[-120.2961182592231,52.7291338963917],[-120.29569119237547,52.72999060173554],[-120.29452889990687,52.730556765287005],[-120.29280042041259,52.73157200038862],[-120.29177055322471,52.732371722606295],[-120.29181350123712,52.73305236637745],[-120.2921249137554,52.7340631734056],[-120.2925471109942,52.73457962086514],[-120.29232429684427,52.73557784504068],[-120.29144918109127,52.73633283569501],[-120.29051539952746,52.73685840538675],[-120.28829489653417,52.7375426125683],[-120.28719489351067,52.738197208590854],[-120.28698980615032,52.739061929472385],[-120.2869384640395,52.73922301771431],[-120.28689026313428,52.73936063915329],[-120.28682719469862,52.739498100783685],[-120.28673543935182,52.739627414584604],[-120.28661499688609,52.73974858049065],[-120.28648110776106,52.739858970109076],[-120.28636021524687,52.73998348684981],[-120.28622647429127,52.740092759121914],[-120.28602348305364,52.74016323470566],[-120.28581996823772,52.7402376150972],[-120.28564469073017,52.74032349429609],[-120.2854821858882,52.74042517169166],[-120.28534769337305,52.740540028112314],[-120.28519982843193,52.74064355402443],[-120.28499563731049,52.74072295515544],[-120.2847934644648,52.74078728041323],[-120.28459046756917,52.74085775348203],[-120.28441451239202,52.7409486529962],[-120.28426664377909,52.74105217770264],[-120.28411817716218,52.74116016141728],[-120.28392750154481,52.74124978302589],[-120.28373757328752,52.7413338191494],[-120.28363288202392,52.74144844875393],[-120.28361320555634,52.74159533420679],[-120.28357940915238,52.74173647428704],[-120.28351692512892,52.74186946578541],[-120.28345459035839,52.74200134020577],[-120.28337686392445,52.74213695951473],[-120.28328449389507,52.7422707385175],[-120.28319332048613,52.74239558117631],[-120.28310162216219,52.74252433783469],[-120.28299528126303,52.74265124519605],[-120.28287541832165,52.74276793888733],[-120.2827404624476,52.74288614323175],[-120.28260595482922,52.74300099631786],[-120.28247144648833,52.7431158492408],[-120.28235173048999,52.7432314253297],[-120.2822312654534,52.743352586439535],[-120.28209660531817,52.74346855593593],[-120.28196224382471,52.74358229120874],[-120.28181376140745,52.74369028075849],[-120.28165198313764,52.74378636746684],[-120.28144829377537,52.74386185711611],[-120.28124527677237,52.74393232424607],[-120.28104315856727,52.74399607991392],[-120.28082729325746,52.74405130145031],[-120.2806115783111,52.744105396623056],[-120.28039653600052,52.74415446924085],[-120.28016722330582,52.74419891273304],[-120.27995090781603,52.74425747479309],[-120.27977739899568,52.74432994066428],[-120.2796430286275,52.74444367321295],[-120.27952240274819,52.74456594846703],[-120.27938728217435,52.74468526583489],[-120.2792530594132,52.74479788088386],[-120.27910434188463,52.74490753798379],[-120.27896989242771,52.745021832697724],[-120.2788347688717,52.745141149392445],[-120.27871563648141,52.74525225351226],[-120.27856631687045,52.74536637799452],[-120.27841797066608,52.74547323715341],[-120.2782693984368,52.74558177612087],[-120.27814966417779,52.74569734772758],[-120.27798622110875,52.745805725441635],[-120.27782442623524,52.7459018067311],[-120.27756562627206,52.74605498942275],[-120.27736334273281,52.74611985567672],[-120.27716053360842,52.74618863562351],[-120.27694270447184,52.74625837120834],[-120.2767815048654,52.74634998294319],[-120.27666041592197,52.746475606160566],[-120.27662786571906,52.746607253568364],[-120.27663790102596,52.74675446841954],[-120.27664928373164,52.74689163900525],[-120.2766898810864,52.747033045746214],[-120.27673107805091,52.74716998437735],[-120.27680208939213,52.74730669103944],[-120.27692077956884,52.74742100417152],[-120.27708520342006,52.747527427032246],[-120.27723535737174,52.74762922057867],[-120.2773840138364,52.74774218413646],[-120.2775178009955,52.74785498654088],[-120.27765114061688,52.74797113091161],[-120.27776961078996,52.74808711419738],[-120.27790235138748,52.74820773528532],[-120.2780050550039,52.74833025059697],[-120.27812262831156,52.74845293562608],[-120.27820948849448,52.74858255496404],[-120.278295901003,52.748715516354814],[-120.27836759340775,52.74884719980027],[-120.27845385594776,52.7489812870088],[-120.27855663730048,52.749103247731554],[-120.27867473918647,52.749222018101],[-120.2787763234321,52.749352914783664],[-120.27886378657566,52.74947806547338],[-120.27890439370991,52.74961947120505],[-120.27897616499634,52.74975059122059],[-120.2791093635097,52.749867859744214],[-120.27925855753453,52.74997690671317],[-120.27940827593577,52.750082048375866],[-120.27955747027214,52.750191103885],[-120.27966018339524,52.75031361758533],[-120.27976177325121,52.75044451331934],[-120.27986456185208,52.75056647277718],[-120.28001301023347,52.75068111278173],[-120.28017737884025,52.75078809405374],[-120.28035946474596,52.75087401225751],[-120.28055911684174,52.75093999327311],[-120.28077865654386,52.75096871868881],[-120.28100238918006,52.7509661670414],[-120.28124091751131,52.750964338432254],[-120.28148064361814,52.75095357314649],[-120.28170811909598,52.750923094554025],[-120.28192661149357,52.75095963698929],[-120.28214323232456,52.75101014629334],[-120.28235813269416,52.75107349651407],[-120.28255831334386,52.751135560060334],[-120.28275564922902,52.751218855679824],[-120.28293878996331,52.75129695067522],[-120.28313657638267,52.751376894568175],[-120.28333571183893,52.75144677595388],[-120.28353514609428,52.75151443188198],[-120.28375311983875,52.75155487602128],[-120.28398746082654,52.75158431856126],[-120.28420461165047,52.7516309099735],[-120.2844202664457,52.75168867125321],[-120.28463569675779,52.75174811214306],[-120.28485359731644,52.751789117211395],[-120.28507321967881,52.75181727158521],[-120.28530995705452,52.75182883903064],[-120.28553788332327,52.75179500193869],[-120.28576057268968,52.75180026040944],[-120.28598026991307,52.751827859037306],[-120.28621341709879,52.75186623335329],[-120.28649095311154,52.75190677561694],[-120.28706664413683,52.752056325443014],[-120.28740932687744,52.75227769263884],[-120.28771360676014,52.75245220963747],[-120.28823429244889,52.75279020356582],[-120.28861770390756,52.75315241522759],[-120.28899768370732,52.753540308339076],[-120.28961405205266,52.75383124731745],[-120.29044288940646,52.75420395377302],[-120.29104806773003,52.75446735399589],[-120.29193320492449,52.75486471632208],[-120.29260513698544,52.75496327362673],[-120.29308747389803,52.75514308945989],[-120.29232447862232,52.75873068819226],[-120.2897655068513,52.7604884921862],[-120.28850931084419,52.76219404417509],[-120.28809988342852,52.764361437383684],[-120.28786263808905,52.76824619834096],[-120.28828691787076,52.77052904712322],[-120.28930911091484,52.77201919262032],[-120.29285421750008,52.773808355134584],[-120.29725538462382,52.77577233903188],[-120.30062931294853,52.77795482227044],[-120.3018303083873,52.779449589198244],[-120.30642044020901,52.78089845366951],[-120.30690286448622,52.780968583010896],[-120.31019439662825,52.781429949378904],[-120.31339589050344,52.78144950002766],[-120.3199062642525,52.78079425229202],[-120.32660358271652,52.779740163875296],[-120.33161832564346,52.77833722268069],[-120.33662328607828,52.77790271575189],[-120.33772853935741,52.77945426411749],[-120.33855823815112,52.78162260562137],[-120.33881419371782,52.7835107888517],[-120.34029936281834,52.78545784898121],[-120.34129851106611,52.78803569692282],[-120.33759421132042,52.789554189085884],[-120.33409882265306,52.790283912513864],[-120.32946310719878,52.79151705480249],[-120.32519703847422,52.793554366151405],[-120.32139160369707,52.79615914735961],[-120.32016183067142,52.79632604090371],[-120.31842062693174,52.79954632839427],[-120.31620242987793,52.80022060855412],[-120.31509329521631,52.801465850398706],[-120.31498690143239,52.80159279080771],[-120.31486636436841,52.80171398081484],[-120.31474590173278,52.80183460770588],[-120.31461136845533,52.80194893902904],[-120.31444854904743,52.802051769503045],[-120.31428647289238,52.80214902353921],[-120.31411092460363,52.80223549586729],[-120.3139342570902,52.80233035010369],[-120.31377210477264,52.80242815745766],[-120.31360935545281,52.80253043268986],[-120.3134748169403,52.802644762658566],[-120.3133402037673,52.802759646509806],[-120.31322040411783,52.80287524960195],[-120.31311385336811,52.80300329628704],[-120.31299338095221,52.80312393021467],[-120.31288817067771,52.803241923441824],[-120.31276717573304,52.80336646224007],[-120.31266129272099,52.80348948632759],[-120.3125548127138,52.80361697840969],[-120.31244892846875,52.803740002285615],[-120.31234244720285,52.803867494154304],[-120.31225070477215,52.80399626842212],[-120.31217362853701,52.804126870231045],[-120.31215454264625,52.80426984931284],[-120.31225807459103,52.80438787093999],[-120.31243978202328,52.80447876736336],[-120.31265618917811,52.80453312362102],[-120.31287431203022,52.80457462922565],[-120.31309131656708,52.804624516578926],[-120.31330712896872,52.80468333973084],[-120.31350641210204,52.80475429337874],[-120.31368872003442,52.804840719745535],[-120.31387110383426,52.80492658284338],[-120.31405266793057,52.80501859376352],[-120.31421911965299,52.80511211917431],[-120.31456721242458,52.805297100405916],[-120.31473307017772,52.80539509317596],[-120.31488307021442,52.805500185700694],[-120.31504840844458,52.80560208313699],[-120.3151988570877,52.80570382416408],[-120.31534841226278,52.805812267153335],[-120.31546595306196,52.805937144144714],[-120.31556897720729,52.80605906784994],[-120.31568674226975,52.80618227352782],[-120.31582096390832,52.806293901916824],[-120.3159708207634,52.80640011001724],[-120.31613668602219,52.80649810073398],[-120.31631796366638,52.806592342110804],[-120.31650184908007,52.806667039683674],[-120.31671760260025,52.806726410532214],[-120.31695063016569,52.806768073414894],[-120.31716988541301,52.80680119773196],[-120.31740648936261,52.80681605102265],[-120.31762991650402,52.80681789767202],[-120.31786696761174,52.80682939894689],[-120.31808331851097,52.806884308097345],[-120.31828262104455,52.80695524459781],[-120.31844961032475,52.80704485875535],[-120.31858324609414,52.80716095204256],[-120.31859403489156,52.80730369825801],[-120.31844661638604,52.80740278452457],[-120.31821886627088,52.80743333328443],[-120.31798300345585,52.807412896491634],[-120.31789507575681,52.80740132743855],[-120.31776314854405,52.80738424182216],[-120.31752728621834,52.807363804112974],[-120.31730623998553,52.80734408481562],[-120.31706911107989,52.80733314539416],[-120.31684255232815,52.807354755260576],[-120.31661495032482,52.8073841838814],[-120.31638965824646,52.80739629367177],[-120.31615141226678,52.80739372563203],[-120.31592500175054,52.80741421669965],[-120.31569724977047,52.80744476056629],[-120.31546949746455,52.80747530399027],[-120.31524107355855,52.807510878055105],[-120.3150134696193,52.807540303567365],[-120.31478698385013,52.80756134648226],[-120.3145617642512,52.807572898718206],[-120.31432292114084,52.807574795065875],[-120.3141005336696,52.807565122953314],[-120.31386407579522,52.807549145981625],[-120.31362642544254,52.807542104721456],[-120.31340239833388,52.80754471854472],[-120.31316221348278,52.80755666573949],[-120.31293758986924,52.807563746767165],[-120.31271117690935,52.8075842316329],[-120.31247106560232,52.807595623369956],[-120.31224509960461,52.80761275627018],[-120.31201928254983,52.80762877171382],[-120.31179160179344,52.80765874501859],[-120.31156324900692,52.80769374894278],[-120.31134725030324,52.80774790736592],[-120.31113065565225,52.807806524533994],[-120.3109557483042,52.80788796970356],[-120.3107929714274,52.80799024066884],[-120.31058902732228,52.80806577778618],[-120.31040079353374,52.808135332189266],[-120.3101827026816,52.80820512671903],[-120.30999499034183,52.808270766431804],[-120.30977712250944,52.80833888020623],[-120.30958866181167,52.80841011328958],[-120.30938493796154,52.80848396829967],[-120.309181735016,52.808553917860685],[-120.30899275074829,52.80862905506914],[-120.3088170898935,52.808716082092246],[-120.30863956251567,52.80881707601902],[-120.30847752265618,52.80891375863064],[-120.3083013378846,52.809004689953554],[-120.30813914731627,52.80910248910197],[-120.30796161672818,52.80920348197814],[-120.30780024604628,52.80929513259483],[-120.3076232368117,52.8093922109269],[-120.30746126649609,52.80948833806046],[-120.30729914739057,52.809585573042426],[-120.30713635528316,52.80968783882426],[-120.30696001400275,52.80977989403807],[-120.30678389646265,52.809870268993734],[-120.30658008555935,52.80994468204034],[-120.30637888694632,52.809999542542236],[-120.30616212357191,52.81005927640477],[-120.30594551007718,52.810117883916725],[-120.30573061231429,52.810163649861494],[-120.30550216591313,52.81019920491047],[-120.30527394369354,52.81023307952962],[-120.30506106098869,52.810263760129544],[-120.30483194214415,52.810304335951635],[-120.30460364356965,52.81033877223836],[-120.30438881852074,52.810383972747005],[-120.30418686713222,52.81044442346039],[-120.30399659687762,52.81052904264418],[-120.30380684799492,52.81060975645209],[-120.30360243095238,52.81068863232787],[-120.30341342741733,52.81076376044918],[-120.30322375047434,52.810843919266155],[-120.30303340124759,52.810929099838745],[-120.30285719656501,52.81102002287112],[-120.30270912999349,52.811123566096036],[-120.30257431173614,52.81123955397442],[-120.30248267458444,52.81136719404909],[-120.30239081220269,52.81149651401926],[-120.30231301940391,52.8116321397145],[-120.30226456162076,52.81177144092581],[-120.30223151830063,52.81190699486818],[-120.30219765249142,52.812048696789006],[-120.30216393705062,52.81218927274538],[-120.3021301460905,52.81233041165016],[-120.30205294855193,52.812461569078586],[-120.30191961834487,52.81256638605323],[-120.30174138688983,52.81267239134933],[-120.30159338718657,52.81277537008611],[-120.30144538676933,52.81287834862945],[-120.30128197038896,52.812985074090506],[-120.30111974861993,52.81308286328781],[-120.30094420282529,52.81316876127421],[-120.30074021655821,52.81324428102542],[-120.30055074833962,52.813322755422206],[-120.30036157832343,52.813398995504464],[-120.30015706623506,52.8134784282073],[-120.29996804428635,52.8135535506457],[-120.29976472764827,52.813624037707],[-120.2995622318337,52.813688385374405],[-120.29934611343833,52.81374307553408],[-120.29913006863282,52.81379721126168],[-120.29891462243094,52.813846869652714],[-120.29869977251062,52.81389206858292],[-120.29847197365535,52.81392257889612],[-120.29823130022805,52.81393784648616],[-120.29800537030556,52.81395438893358],[-120.29777831821703,52.81397931290442],[-120.29753592408075,52.814007429021316],[-120.29732032543238,52.8140582014779],[-120.29724610066768,52.81416701563881],[-120.29731624121317,52.814311531802396],[-120.29743278131807,52.81444368218246],[-120.2976149485578,52.814531249972674],[-120.29781559725853,52.814592176828214],[-120.29803248559944,52.81464320870001],[-120.29825012200506,52.81468865517528],[-120.29846768472024,52.81473465527736],[-120.29869939270064,52.814786407171106],[-120.29891658206941,52.814835203404535],[-120.29911693508181,52.81489836202282],[-120.29929993046957,52.81497977920639],[-120.29946519287735,52.81508226093752],[-120.29961503988747,52.815188489316334],[-120.29977978011219,52.8152948845592],[-120.29991436187666,52.81540374244722],[-120.30006383806918,52.81551275826387],[-120.30022910437408,52.815615238884476],[-120.30041255212878,52.81569331223009],[-120.30062788053377,52.81575606331086],[-120.3008443298138,52.815810440952276],[-120.30106070432757,52.8158653811616],[-120.3012623361401,52.81591903709565],[-120.30147931065461,52.815969499586586],[-120.30171237379787,52.81601119247434],[-120.3019306187658,52.81605216407716],[-120.30214931238896,52.816089784264896],[-120.30238222743712,52.816132592822264],[-120.30260099597297,52.81616965813317],[-120.30282028836866,52.81620280905504],[-120.30305499737372,52.81623221223228],[-120.30327682995795,52.81624637323541],[-120.30351333204176,52.81626237144661],[-120.30373628581646,52.8162681495804],[-120.30397398311341,52.81627521082615],[-120.30421287535921,52.81627333554856],[-120.30443694883526,52.81627073928013],[-120.30467584103572,52.81626886306046],[-120.30489991446014,52.816266265908354],[-120.30513880661519,52.816264388746546],[-120.30536362663096,52.8162562056771],[-120.30560371328764,52.816245391515224],[-120.30582778653238,52.81624279259202],[-120.30606563334415,52.81624873259546],[-120.30628731770828,52.81626400491724],[-120.30652322382446,52.81628446509623],[-120.30696427886572,52.816332325695456],[-120.3074272448933,52.816327842356884],[-120.30788976303548,52.81632670822227],[-120.30835332590722,52.81631775319193],[-120.30881756075414,52.8163037653131],[-120.3092830631221,52.81628028546687],[-120.30974662519732,52.816271324934476],[-120.31021093308676,52.816256777507064],[-120.31068931355793,52.81624853302798],[-120.31113626601267,52.81625225145272],[-120.3116111402787,52.81627025751593],[-120.31206813901673,52.81631043646129],[-120.3125227523497,52.81636848587885],[-120.31297334040747,52.81645669297331],[-120.31337499974516,52.816576250712885],[-120.31375617607989,52.81673753439064],[-120.31410384038047,52.81692642070051],[-120.31442261481023,52.81710828238357],[-120.31476916752963,52.817305539841115],[-120.31489642869167,52.81735781031479],[-120.31499613864904,52.817393004053436],[-120.31509517732337,52.81743322875681],[-120.31517895080175,52.81747607634637],[-120.31527761775344,52.81751908897144],[-120.3153766569855,52.817559313434124],[-120.31547644294007,52.81759394378291],[-120.31557540859633,52.81763472211717],[-120.31567526882398,52.817668798254026],[-120.31577550126782,52.81770008622596],[-120.31587506369073,52.81773639622922],[-120.3159759677887,52.817762652974935],[-120.31609161755252,52.81779018270981],[-120.31619416146779,52.817804152055395],[-120.31631152493611,52.81781884031798],[-120.31642769612856,52.81784246462049],[-120.31652979315344,52.81785978473133],[-120.3166459645781,52.81788340881726],[-120.31674746564367,52.81790519681787],[-120.3168630411783,52.81793328876827],[-120.31697980910967,52.81795244444223],[-120.3170812353997,52.81797479513152],[-120.31719800354254,52.817993950587926],[-120.31729995221991,52.818012387047794],[-120.3174168695831,52.8180304252654],[-120.31753304196306,52.81805404847092],[-120.31763387392081,52.818080857828726],[-120.3177500465581,52.81810448081879],[-120.31785035664586,52.81813520403177],[-120.31795185892489,52.818156990987546],[-120.31806683992217,52.81818954983375],[-120.3181682673447,52.81821189958048],[-120.31828384464471,52.818239990126635],[-120.31838519839928,52.81826289372802],[-120.31850152093966,52.81828539894985],[-120.31860347087607,52.81830383427426],[-120.31871912380052,52.818331361411126],[-120.31881988207036,52.81835873272468],[-120.31893501325402,52.81839017369398],[-120.31903532486598,52.81842089588892],[-120.31911954997474,52.818460398507895],[-120.3192175533854,52.81850842992789],[-120.3193174185643,52.81854250294752],[-120.31941705985334,52.81857825588389],[-120.31951662742193,52.818614562778265],[-120.31961701505762,52.818644721492156],[-120.31971673191278,52.818679911192206],[-120.31981644893234,52.81871510080677],[-120.31991668686818,52.81874638522194],[-120.32003167095164,52.8187789421314],[-120.32013317587466,52.818800727192276],[-120.32024883113179,52.81882825281338],[-120.32035137890107,52.81884221851832],[-120.32046874665377,52.81885690261528],[-120.32049756671296,52.8188644876735],[-120.32058551872959,52.818876054691486],[-120.3207034824014,52.818886270456694],[-120.32080543472381,52.81890470386181],[-120.3209228028045,52.818919387504216],[-120.32104017096592,52.8189340710292],[-120.32114227247301,52.8189513871165],[-120.32125964079795,52.81896607042174],[-120.32137760487981,52.818976285508974],[-120.32149452660605,52.81899431965456],[-120.32159647952813,52.819012752371385],[-120.32171444381962,52.81902296711994],[-120.32183419505508,52.8190197774418],[-120.32195335065619,52.819021055744905],[-120.322057090658,52.81902608375174],[-120.3221762462834,52.81902736182854],[-120.32229540191592,52.81902863978436],[-120.32241396198712,52.81903438572499],[-120.32253371320233,52.819031195333395],[-120.32263812268984,52.81903120067533],[-120.32275727834688,52.81903247816247],[-120.32287643401108,52.81903375552869],[-120.32299320765088,52.81905290520795],[-120.32309575685767,52.81906686851381],[-120.32321253068643,52.81908601797443],[-120.32332870914627,52.81910963542877],[-120.32339737637673,52.819153993041816],[-120.323464033474,52.81921343495413],[-120.32353076459331,52.81927232278068],[-120.32359764594983,52.819330084603095],[-120.3236650479041,52.819383941256376],[-120.32373125915593,52.81944673409128],[-120.32376708591347,52.819513675901],[-120.32378801753525,52.81958046261841],[-120.32380850384008,52.81965059147618],[-120.32384410700882,52.819719213263284],[-120.32386504004273,52.81978599102197],[-120.32388612080779,52.81985166068251],[-120.32392179929231,52.81991971945526],[-120.32397222442678,52.81998905029878],[-120.32400849857929,52.8200526409286],[-120.32402824001376,52.820128363801075],[-120.32406451436809,52.82019195440783],[-120.32414726030689,52.82024261471483],[-120.32419880196765,52.82030357220714],[-120.32424974838078,52.82036899778544],[-120.32430129034056,52.82042995522774],[-120.32436854607334,52.82048492846678],[-120.3244506963739,52.820540065597726],[-120.32451862285919,52.82059000765348],[-120.32460181543925,52.820637325479616],[-120.32469938350259,52.820688703340124],[-120.32476730932468,52.820738654183394],[-120.32484946181935,52.82079378209013],[-120.32494911299709,52.820829530279504],[-120.32504764871514,52.82087365162853],[-120.32513143893549,52.82091649202101],[-120.32521463283123,52.82096380940299],[-120.32531383943305,52.821002899428265],[-120.32541356649351,52.82103808423619],[-120.32549735621335,52.821080933299164],[-120.32558010557604,52.82113159256737],[-120.32566270513006,52.821183377740766],[-120.32574590132539,52.821230685801936],[-120.3258445876033,52.82127368944172],[-120.3259277829858,52.821321006307514],[-120.32601112854934,52.82136719714737],[-120.32610899639442,52.82141634869012],[-120.32617692621449,52.82146628975834],[-120.32626012234078,52.821513606382624],[-120.32635992636851,52.82154822739245],[-120.32647365756316,52.82159027715321],[-120.32658872929966,52.821622264598076],[-120.32668801248984,52.821660799399],[-120.3267722510736,52.821700296445215],[-120.32687198096565,52.82173547999865],[-120.3269710420964,52.82177568563429],[-120.3270703259886,52.821814220108074],[-120.3271687911886,52.8218589026322],[-120.32725377567571,52.8218928052399],[-120.3273529113226,52.821932456502246],[-120.32745264223574,52.82196763955717],[-120.32755289340619,52.82199891738695],[-120.32766685071975,52.822039285965595],[-120.32775124090942,52.82207765633278],[-120.3278344399726,52.82212497182306],[-120.32790192666089,52.82217826296348],[-120.32798341597092,52.822238419734155],[-120.32805075307857,52.82229283675251],[-120.3281176452847,52.822350595887926],[-120.32818431394756,52.82241003499804],[-120.32825180033338,52.822463334863805],[-120.32831802310977,52.822526124987654],[-120.3283853622879,52.82258053286777],[-120.32846759677871,52.822635104129965],[-120.32853493512947,52.82268952085683],[-120.32861754247324,52.82274129496328],[-120.3287020086809,52.82277911058213],[-120.32880285762522,52.82280591920176],[-120.32892023918397,52.82282059481214],[-120.32903702589525,52.82283973843337],[-120.3291532177949,52.822863350066896],[-120.32926955854924,52.822885844552836],[-120.32937092922965,52.82290873860142],[-120.32948719645704,52.822931786919156],[-120.3295879724911,52.82295914890989],[-120.32970475988097,52.82297829186523],[-120.32980568487682,52.82300453663544],[-120.32992143152157,52.82303149860503],[-120.33002168699988,52.82306277430557],[-120.33010489168983,52.823110079220676],[-120.33018698069627,52.82316576629327],[-120.33023912932042,52.82322225288621],[-120.33027415100206,52.82329534069861],[-120.33030991749624,52.82336283439449],[-120.33033093618846,52.8234290567952],[-120.33035188000115,52.82349584217412],[-120.33037185792645,52.82356988379446],[-120.33037768391952,52.82363817706338],[-120.33036801841837,52.82371078421845],[-120.33035924508886,52.82377668917101],[-120.33033557497302,52.82384243987269],[-120.33028211359967,52.823907864188065],[-120.33022842841032,52.82397496849363],[-120.33017563529091,52.82403537057584],[-120.33010802012436,52.82409505537142],[-120.33004159445157,52.82414580386668],[-120.329959305702,52.82420365426927],[-120.32989243353956,52.82425775377318],[-120.3298112591542,52.824307230795284],[-120.32972956465822,52.82436061290308],[-120.32964794491356,52.82441343196824],[-120.32956743980088,52.82445787770616],[-120.32948626465817,52.82450735449731],[-120.32940464433182,52.824560173388406],[-120.32932369249684,52.8246079700488],[-120.32922784344152,52.82465561226421],[-120.32916149081237,52.82470579725964],[-120.3290790510525,52.82476476405539],[-120.32901277185356,52.82481439491607],[-120.32893048042041,52.82487224457278],[-120.32886353093939,52.824926906450926],[-120.32878242905669,52.824975819757235],[-120.3287006582149,52.82502975517331],[-120.3286337831627,52.825083853931666],[-120.32855268071846,52.82513276707445],[-120.3284715031158,52.82518224314255],[-120.32838988024295,52.825235061305385],[-120.32832359951222,52.825284691762036],[-120.32824130623817,52.82534254091833],[-120.32815953281985,52.82539648488102],[-120.32809325157059,52.82544611520257],[-120.3279972516811,52.82549486448047],[-120.32793052377896,52.82554784579345],[-120.32784934466558,52.82559732141833],[-120.32776764524633,52.82565070211688],[-120.3276858718291,52.825704636802826],[-120.32761884565376,52.82575985198803],[-120.32756664175707,52.825815784715516],[-120.32751302369448,52.8258823336514],[-120.32747497307089,52.82594400607858],[-120.32742128090672,52.826011109013024],[-120.32738248491228,52.826078375479774],[-120.32734368998581,52.82614563299461],[-120.3272906663193,52.82620771370495],[-120.32725187113061,52.82627497118395],[-120.32719817819927,52.82634207400204],[-120.32714530287102,52.826403037611676],[-120.32709309756703,52.82645897010554],[-120.3270260694401,52.82651418492569],[-120.32694369823184,52.8265725871723],[-120.32687726494042,52.82662333379671],[-120.32679511592887,52.82668006486327],[-120.3267280870692,52.82673527950545],[-120.32666113184489,52.82678994006246],[-120.32659350739937,52.826849622728716],[-120.32652647801258,52.82690483724985],[-120.32645885319673,52.82696451983414],[-120.32640597723174,52.827025474150396],[-120.32633894732615,52.827080688558276],[-120.32627191724713,52.8271359029259],[-120.32619013790335,52.827189845454996],[-120.32609442956652,52.82723635907223],[-120.3259997616198,52.82727506237105],[-120.3259059876697,52.82730705450689],[-120.32579657145293,52.82734447686819],[-120.32570264717212,52.8273775948012],[-120.32559345444878,52.82741333696654],[-120.3254988606709,52.82745147687685],[-120.32540367135046,52.827494084806446],[-120.32532330485228,52.827537410522574],[-120.32522811516489,52.82758001830749],[-120.32516346446711,52.82761735964383],[-120.32514692905316,52.82762949199958],[-120.3250652973854,52.827682307768434],[-120.32499826471364,52.82773752138774],[-120.32494538451401,52.827798483952286],[-120.32490658418317,52.82786574058773],[-120.32488290339886,52.82793149001775],[-120.32493385996665,52.827996914979025],[-120.3249853382832,52.8280584258662],[-120.32505171379046,52.82812010058369],[-120.3251032662569,52.82818105737084],[-120.32515526542808,52.828238663063125],[-120.32522089720631,52.828305922794016],[-120.32527304553827,52.828362411406275],[-120.32533979345945,52.82842129785885],[-120.32542211032903,52.82847530806989],[-120.32548878480547,52.82853474847719],[-120.32559076224432,52.82855317761252],[-120.32570830734534,52.82856673935638],[-120.32582570368496,52.82858141800629],[-120.3259436954377,52.8285916284425],[-120.32604805449554,52.828592184795895],[-120.32616619515855,52.82860127798442],[-120.32628478234456,52.82860701998081],[-120.32640322074135,52.82861387888183],[-120.3265029664854,52.82864906259273],[-120.32658677224222,52.828691910669086],[-120.32668540280918,52.82873546744059],[-120.32676920891885,52.82877831538437],[-120.32686724463285,52.828826340100434],[-120.32695053087185,52.82887309303168],[-120.32703433751797,52.82891594078244],[-120.32713237384647,52.82896396527286],[-120.32721618085363,52.82900681289141],[-120.32731473779619,52.829050932106306],[-120.32739914153453,52.82908930255415],[-120.3274807921272,52.82914834238166],[-120.32754813949691,52.82920275944714],[-120.3276002182044,52.82925980103819],[-120.32766600419698,52.829325942332886],[-120.32770221679971,52.8293900944214],[-120.3277379093445,52.82945815161791],[-120.32778887211212,52.8295235752763],[-120.32783983503599,52.82958899890979],[-120.32789198840243,52.82964548631256],[-120.32794295162995,52.82971090989622],[-120.32799391501375,52.82977633345499],[-120.3280459200307,52.82983393780834],[-120.32811230272266,52.82989561072574],[-120.32817980204645,52.829948901440964],[-120.32826242182134,52.83000068449263],[-120.32834519176227,52.830051341522186],[-120.32842840702943,52.83009865634975],[-120.32851117735741,52.83014931325914],[-120.3285948393075,52.83019327688739],[-120.32869347539399,52.8302368319305],[-120.3287773614457,52.830279115418634],[-120.3288758479644,52.83032379626876],[-120.32895966058265,52.83036663366947],[-120.32905837122608,52.830409634356066],[-120.32914158798266,52.830456948667326],[-120.32922540112918,52.83049978587479],[-120.32932403737767,52.830543349315874],[-120.32940725587953,52.83059065449865],[-120.3294905483446,52.830637405575644],[-120.32957384099213,52.83068415659215],[-120.32967195801716,52.83073162486258],[-120.3297556223047,52.830775587647466],[-120.32985426092185,52.8308191416993],[-120.32993874421408,52.83085695623272],[-120.33003782821824,52.83089716798202],[-120.3301381772215,52.83092788044348],[-120.33025327688372,52.830959864105346],[-120.33035407236748,52.83098722529776],[-120.33045501670398,52.83101346937519],[-120.33057123164342,52.83103707948177],[-120.33068759542898,52.83105957244486],[-120.33079017600583,52.83107352892221],[-120.33090817583671,52.83108373435402],[-120.33102558088888,52.83109840778186],[-120.3311429860218,52.83111308109212],[-120.33124437725081,52.831135973402525],[-120.33136126151682,52.83115456056363],[-120.33146265296149,52.83117745268494],[-120.331578868905,52.83120106179197],[-120.3316956797439,52.83122020266595],[-120.33179722021303,52.83124197746808],[-120.33191403126189,52.831261118124345],[-120.33201549819272,52.83128344678395],[-120.33213230945299,52.831302587222545],[-120.33224912081803,52.831321727544804],[-120.33234947241114,52.831352438108354],[-120.33245041883863,52.83137868046442],[-120.33256485184184,52.83141569295565],[-120.33266453428644,52.8314514343529],[-120.33274954224298,52.83148533277409],[-120.33283231920068,52.831535995529066],[-120.33289908370602,52.83159486862873],[-120.33298074670192,52.83165390453729],[-120.33304810503928,52.8317083183611],[-120.33311605936325,52.83175825508478],[-120.3332312372291,52.83178968176365],[-120.33333203658228,52.83181704038558],[-120.33343231520068,52.831848312997685],[-120.33353207429997,52.831883490665035],[-120.33363131390622,52.83192257338847],[-120.3337145386833,52.83196988441336],[-120.33381370374353,52.83200952996432],[-120.33391338981038,52.83204526135174],[-120.33401374430268,52.83207597047894],[-120.3341283291628,52.832111864398506],[-120.3341815343461,52.83216052969381],[-120.3341866981795,52.832233853509294],[-120.33416206376376,52.832306860864826],[-120.33412319894984,52.83237468333499],[-120.33407032604019,52.83243564982725],[-120.3340167109917,52.83250219251429],[-120.33397903486181,52.83256107867709],[-120.33393957497404,52.83263336920072],[-120.33393065668778,52.832700391074596],[-120.33395064513195,52.83277443164933],[-120.33395677419644,52.83284049921198],[-120.3339772835786,52.83291062569855],[-120.33399779183908,52.83298076111467],[-120.33400355000666,52.83304961677568],[-120.33400878855524,52.83312237757381],[-120.33401454675966,52.83319123322804],[-120.33402030498266,52.83326008887892],[-120.33402539375851,52.83333397563363],[-120.33403182148443,52.83339780017089],[-120.3340369852103,52.83347112393512],[-120.33404274350727,52.83353997957258],[-120.33404842690908,52.83360939819028],[-120.33405366560291,52.833682158960336],[-120.3340441527206,52.8337536489203],[-120.3340198881888,52.833823868066844],[-120.33396708825124,52.83388427147271],[-120.33390005735558,52.83393948995403],[-120.33383243170476,52.833999176515746],[-120.33376540045435,52.8340543949162],[-120.33368436176218,52.834102748339255],[-120.33360339661773,52.83415054765818],[-120.33350753090592,52.83419819307595],[-120.33341166616928,52.83424582947775],[-120.33333114642662,52.834290277516416],[-120.33326418780634,52.83434494157399],[-120.33319715527742,52.834400159637795],[-120.33312893325149,52.83446431389297],[-120.33307613126021,52.83452471687369],[-120.33300902446568,52.83458048887011],[-120.33295622216092,52.83464089179243],[-120.33290267634554,52.83470687983092],[-120.33284972505997,52.834768399728944],[-120.33281145061846,52.834831753545075],[-120.3327865887412,52.834906440501165],[-120.33275414543519,52.835038086943854],[-120.33270111859031,52.83510016974392],[-120.33266247252497,52.835166311599735],[-120.33260937164123,52.83522894839904],[-120.33257057544458,52.83529621618298],[-120.3325176978859,52.83535717292629],[-120.33247882767996,52.83542499472007],[-120.33244003109928,52.835492262452526],[-120.33240168165075,52.835556170151406],[-120.33236281107915,52.83562399189825],[-120.33233928616899,52.83568862547815],[-120.33230049031816,52.835755884217],[-120.33226154446254,52.835824268903174],[-120.33222274836582,52.83589152761055],[-120.33218439704343,52.8359554441584],[-120.33215953460343,52.836030121991975],[-120.33215076150799,52.836096026558735],[-120.33212656747187,52.836165682227666],[-120.3321177193538,52.8362321497675],[-120.33210812890484,52.836304193499245],[-120.33212856196968,52.83637488313476],[-120.33214906885644,52.83644501871852],[-120.33219997297894,52.836510994215196],[-120.33220632350968,52.83657538170413],[-120.33219636079467,52.83665022246097],[-120.33214400087536,52.836707273859844],[-120.33203463978083,52.8367441477636],[-120.33194010602202,52.83678172965377],[-120.3318454971482,52.83681987444799],[-120.3317509618653,52.83685746512039],[-120.33164160123587,52.83689432971844],[-120.33154706560839,52.836931920224934],[-120.33145253100408,52.83696950171825],[-120.33134368975846,52.83700246091691],[-120.33124915362896,52.83704005118105],[-120.33114053573111,52.837071330184834],[-120.33104652041715,52.837105006230296],[-120.33093790101556,52.837136293981644],[-120.33082920768204,52.837168135675775],[-120.33072177905444,52.837190478097234],[-120.33061368038535,52.837217851495254],[-120.330506771528,52.83723628860424],[-120.33039874638325,52.83726310775994],[-120.33029124232135,52.837286012766015],[-120.33018381311526,52.837308354693725],[-120.33007571380236,52.83733572759455],[-120.3299804320272,52.83737890194444],[-120.32988530000999,52.83742095025682],[-120.32980424933655,52.837469309834844],[-120.32970837311592,52.837516943114345],[-120.32962799211035,52.83756027149888],[-120.32954619702949,52.83761421600569],[-120.32947855946396,52.83767389992031],[-120.3294262696364,52.83773038709132],[-120.32937286325995,52.83779525636846],[-120.3293339108506,52.83786363999478],[-120.32929570339614,52.83792642956103],[-120.32927142867658,52.83799664753928],[-120.3292478239806,52.83806183444471],[-120.3292383770546,52.838132760836615],[-120.32921358198493,52.838206883900256],[-120.32918997708425,52.83827207078532],[-120.32918045502922,52.838343560141816],[-120.3291567750156,52.838409309993175],[-120.32911797167402,52.83847656756389],[-120.32907976216262,52.8385393659716],[-120.32901197369033,52.83860016660312],[-120.32895916075236,52.838660567573335],[-120.32890508353749,52.83873045872402],[-120.32885197270187,52.83879309368207],[-120.32881376251548,52.83885589199041],[-120.32877570220194,52.838917564327545],[-120.32872199575715,52.83898466730007],[-120.3286979432827,52.839053205114254],[-120.32865958383798,52.83911712038203],[-120.32862063026896,52.8391854947781],[-120.32858167538468,52.83925387809434],[-120.3285430191709,52.83932001841929],[-120.32848990706985,52.839382653190015],[-120.32845124940665,52.839448802415426],[-120.32841303923368,52.83951159163109],[-120.32841864046303,52.83958156429801],[-120.32846902114458,52.83965145531517],[-120.32852118764428,52.83970794207549],[-120.32860278511467,52.839767543700155],[-120.32867074707181,52.83981748273901],[-120.32875353535171,52.83986814809935],[-120.3288209024565,52.83992255512616],[-120.32887247456905,52.83998350979884],[-120.32889290403493,52.84005419983123],[-120.32886914882553,52.840120503594655],[-120.32883049108179,52.84018665291375],[-120.32879168560937,52.840253910300575],[-120.32875273002375,52.84032229362697],[-120.32871392430536,52.84038955098219],[-120.32867556368306,52.84045346620092],[-120.32863675772374,52.840520723525096],[-120.3286124804436,52.84059094125098],[-120.32858835307995,52.84066003301379],[-120.3285647458667,52.84072521967137],[-120.32853994812004,52.840799342470305],[-120.32850166186834,52.840862694638076],[-120.32846344931276,52.840925492749776],[-120.32840981485033,52.84099203251645],[-120.32837160204373,52.84105483059298],[-120.32834687877211,52.84112839035848],[-120.32832327093075,52.841193576947965],[-120.3282997368298,52.84125820948919],[-120.32828961735217,52.841334166708954],[-120.32829529362176,52.84140357632347],[-120.3283010437227,52.841472431893884],[-120.32832214203141,52.841538099846595],[-120.32832722311672,52.84161197752158],[-120.32834824772213,52.84167819950457],[-120.32836815568139,52.84175280358195],[-120.32835915292364,52.84182037868331],[-120.32834970249743,52.84189131377004],[-120.32832594542091,52.841957617345926],[-120.32831664491746,52.84202742647012],[-120.32829169716408,52.842102666172565],[-120.32828291684493,52.84216857019514],[-120.32824395869554,52.842236953269435],[-120.32822042508941,52.84230157681561],[-120.32816678732738,52.84236812534907],[-120.3281139685283,52.84242852579429],[-120.32804632132641,52.84248820870101],[-120.32797926924914,52.84254342349986],[-120.32791162167665,52.84260310632471],[-120.32785813307649,52.84266852875195],[-120.32780531346852,52.84272892904677],[-120.32775219604048,52.8427915633479],[-120.3276993011164,52.84285252656646],[-120.3276462583934,52.842914597838714],[-120.32759343818078,52.84297499802885],[-120.32752638475229,52.843030212552115],[-120.32745880960093,52.843089341057826],[-120.32737752273378,52.84313936984186],[-120.32730927798131,52.84320352035872],[-120.32725705233342,52.84325945232534],[-120.3271893287846,52.843319688746476],[-120.32713635857009,52.84338120573058],[-120.3270976213529,52.8434479083814],[-120.32704457582335,52.84350998829456],[-120.32700576451238,52.84357724494899],[-120.32695279371336,52.84363876184025],[-120.32691398094966,52.84370602739493],[-120.32686108488484,52.84376698126449],[-120.32680736932346,52.84383408315433],[-120.32676915161228,52.84389688059594],[-120.32670150020063,52.843956562672375],[-120.32663384859967,52.84401624470768],[-120.32656679229257,52.84407145864665],[-120.32649914032095,52.84413114060003],[-120.32643290306513,52.844180206415544],[-120.32633693296387,52.844228399714076],[-120.32625586533463,52.844276756633626],[-120.32617479871266,52.844325104559765],[-120.32607897687848,52.844372180630046],[-120.32599775979669,52.844421654379985],[-120.32591669260682,52.844470002123465],[-120.32583629464922,52.8445133277212],[-120.3257410675951,52.84455593546018],[-120.32563227643442,52.84458833516878],[-120.32553771965323,52.844625911718055],[-120.32542833254914,52.84466277928451],[-120.3253344449012,52.844695333582905],[-120.32522624990013,52.84472325592946],[-120.32513117067887,52.8447647461569],[-120.3250365380129,52.84480288527227],[-120.32494130951366,52.84484549235515],[-120.32484608082417,52.84488809935969],[-120.32476560593514,52.84493198718664],[-120.32467045193457,52.844974031072994],[-120.32457581839243,52.84501216981211],[-120.32448058896586,52.8450547765159],[-120.32438468856162,52.84510241415559],[-120.32430436291887,52.84514517571424],[-120.32419489954475,52.84518259615707],[-120.32410153050337,52.84521124439251],[-120.32399229079103,52.84524698466214],[-120.32389825181662,52.84528065481036],[-120.32380302111395,52.84532326095756],[-120.32369355684311,52.84536068092894],[-120.3235997402161,52.84539267978991],[-120.32349161619311,52.84542004649001],[-120.32338416294233,52.845442382082716],[-120.32327544280776,52.845474216617916],[-120.32318073183077,52.84551291719343],[-120.3231859534501,52.845585677895365],[-120.32320637617573,52.84565636866453],[-120.32327329726638,52.84571413863358],[-120.32335653865316,52.84576144764612],[-120.32345751364463,52.845787697490934],[-120.32357495660129,52.84580237822958],[-120.32369299544727,52.84581259081525],[-120.32381043855351,52.84582727131828],[-120.32391364817701,52.8458367656346],[-120.3239877949205,52.84584035577857],[-120.32403228297257,52.845842509842505],[-120.32415091780004,52.84584825393054],[-120.32427014840798,52.84584952986036],[-120.32437514540042,52.84584561965587],[-120.32449504560245,52.84584187328166],[-120.32461546762724,52.84583421278181],[-120.32473529390937,52.84583102019937],[-120.32484088650199,52.84582264153774],[-120.32496011705896,52.84582391676736],[-120.32507756063245,52.84583859600351],[-120.32519500428673,52.8458532751222],[-120.32529702299912,52.84587170430909],[-120.32541402009824,52.84588973424113],[-120.32551551842158,52.84591206830836],[-120.32563058000068,52.84594461916876],[-120.32573140792574,52.845971984067276],[-120.32584736320933,52.84599783264599],[-120.32594819139919,52.84602519735755],[-120.32604849800349,52.846056475991084],[-120.32617652934718,52.84610370225491],[-120.3262756452187,52.84614391678743],[-120.32637483631424,52.846183568261274],[-120.3264592731056,52.84622193896518],[-120.32655786903862,52.84626605833082],[-120.32665653901823,52.84630962357434],[-120.3267245091196,52.84635956353137],[-120.3267915111098,52.846416768496105],[-120.32682706757566,52.846485942242694],[-120.32689347441854,52.846547615194034],[-120.32694445630746,52.84661303850578],[-120.3269964804331,52.846670642705305],[-120.32700215411775,52.8467400610828],[-120.32699270153606,52.84681098690217],[-120.32696923735047,52.84687505597153],[-120.32694435822546,52.846949741117704],[-120.3269207450192,52.847014927184006],[-120.32689661128201,52.847084018316906],[-120.32684296544127,52.84715056604353],[-120.32678998997021,52.84721208272158],[-120.32672292884143,52.84726729663751],[-120.32665527201983,52.847326978559465],[-120.32657420005384,52.84737532666742],[-120.32649305286634,52.84742423769162],[-120.32639714938261,52.847471876902375],[-120.32630273577298,52.847508336987424],[-120.32620742745702,52.84755150799689],[-120.32611346019374,52.84758461689552],[-120.32601822656012,52.84762722477601],[-120.32590942777702,52.847659624678066],[-120.32581501333499,52.8476960843667],[-120.32572029972887,52.84773478693497],[-120.32561217112975,52.84776215554616],[-120.32550538259575,52.847779470969044],[-120.3253830944007,52.847801090523944],[-120.32527690134675,52.84781393770029],[-120.32515572924783,52.84782718391513],[-120.32505251453199,52.84781769070205],[-120.32493506551822,52.84780301145924],[-120.3248164251487,52.84779726817018],[-120.32469838054183,52.84778705672622],[-120.32457854876228,52.84779024926705],[-120.32447295124751,52.84779862768244],[-120.3243535662438,52.847798468968335],[-120.32423254284708,52.847810597222825],[-120.32412694521399,52.84781897532703],[-120.32400465501547,52.84784060238261],[-120.3239119509151,52.84786421941579],[-120.32380270424989,52.84789995944891],[-120.3236932333665,52.84793737935874],[-120.32359807041315,52.84797943123224],[-120.32351758959979,52.84802330918189],[-120.3234498520154,52.84808355220086],[-120.32339701946036,52.84814395030542],[-120.32330170797529,52.84818711000418],[-120.32320699099863,52.84822581053415],[-120.32311197709015,52.848266736063664],[-120.32301733484971,52.84830487346754],[-120.3229085320589,52.848337270576444],[-120.32281470948827,52.848369259813985],[-120.3227058324818,52.84840221076886],[-120.32259702920615,52.84843460758727],[-120.32248897192167,52.84846141034084],[-120.32239507366961,52.84849396221152],[-120.3222869410127,52.848521327748905],[-120.32217932912552,52.84854478813664],[-120.3220707491887,52.8485755044893],[-120.32196328724513,52.848597838737504],[-120.32185500503782,52.8486263208803],[-120.32174702071185,52.84865256891392],[-120.32163940819665,52.84867602880526],[-120.32153075362362,52.84870729869034],[-120.32142261987137,52.84873466342852],[-120.32132872020406,52.84876721444125],[-120.32121991495153,52.848799609976794],[-120.32112609009758,52.84883159785642],[-120.32101721060664,52.8488645472367],[-120.3209232352302,52.848897660892305],[-120.3208139834141,52.848933398122774],[-120.3207199338039,52.84896706564785],[-120.32061112757921,52.84899946061554],[-120.32051730182917,52.849031448004894],[-120.3204078251599,52.849068864826464],[-120.3202990184385,52.84910125950303],[-120.3202051922305,52.84913324664109],[-120.32009631125821,52.84916619516162],[-120.32000173825998,52.84920377608149],[-120.31989367739627,52.849230576434934],[-120.31979962640443,52.84926424321685],[-120.31969037151552,52.84929998833018],[-120.3195821611404,52.84932790539689],[-120.3194882587627,52.84936045492628],[-120.31937952573425,52.84939228577674],[-120.31927071740692,52.84942467949437],[-120.31917748604864,52.849452197802215],[-120.3190686034684,52.849485145363744],[-120.31895919831207,52.84952200679247],[-120.3188659665401,52.8495495248515],[-120.31875723256528,52.84958135512221],[-120.31864842328307,52.84961374825965],[-120.31855451956356,52.84964629703689],[-120.31844571115458,52.849678681049234],[-120.31833697653691,52.84971051092843],[-120.31824299721602,52.8497436224223],[-120.31813493387968,52.84977042114903],[-120.3180408803094,52.84980408651154],[-120.31793221903199,52.84983536198212],[-120.31782340966825,52.84986774541428],[-120.31772950476004,52.84990029352689],[-120.31762069388375,52.84993268570592],[-120.31751195800294,52.84996451481646],[-120.31741797867504,52.84999761670915],[-120.31732340147367,52.85003519545318],[-120.31721399459146,52.850072046308],[-120.31713357723572,52.85011536579514],[-120.31703832898242,52.850157966327735],[-120.3169424839621,52.850205034770696],[-120.31684723531771,52.850247635145976],[-120.31675191131174,52.85029079840918],[-120.31667156824676,52.85033355460774],[-120.31657624387101,52.85037671772611],[-120.31648106965262,52.85041875483355],[-120.3164005757226,52.850462636775696],[-120.31630525197743,52.8505057907347],[-120.31620992684604,52.85054895355116],[-120.31611490104956,52.85058987336136],[-120.31602024739871,52.850628005072295],[-120.31592559357864,52.850666136706046],[-120.31581610868601,52.85070354921008],[-120.3157209317958,52.85074559462898],[-120.31564043766039,52.850789467105365],[-120.31555942062344,52.85083725347586],[-120.31547758229097,52.850891187728855],[-120.31541109748267,52.85094192707865],[-120.3153440157609,52.850997134367866],[-120.31527574033888,52.85106127757276],[-120.31522281852163,52.85112222591621],[-120.31516997055338,52.85118262020422],[-120.31510214216087,52.851243412318],[-120.31504914467398,52.85130492354123],[-120.31499562424004,52.85137034868479],[-120.31492779530049,52.851431140690686],[-120.31487494653176,52.851491534834274],[-120.31482202360796,52.85155248298051],[-120.31476902533309,52.85161399406529],[-120.31471602690533,52.8516755051238],[-120.314647749453,52.851739647936185],[-120.31458066548859,52.85179485476154],[-120.3145135813505,52.85185006154669],[-120.31444590017661,52.85190973626302],[-120.31437881568338,52.85196494296729],[-120.31431128335814,52.852023500608944],[-120.31424494461879,52.85207312227005],[-120.31417726271509,52.8521327968232],[-120.31411017752333,52.85218800336619],[-120.31404249524877,52.8522476778373],[-120.31397481278483,52.852307352267204],[-120.3139225585045,52.85236327798119],[-120.31386881176259,52.85243037358725],[-120.31382989634496,52.85249818847015],[-120.31379098080357,52.85256600333729],[-120.31375273610458,52.85262879619502],[-120.31367096726622,52.85268216616466],[-120.31360395577228,52.85273680943585],[-120.31355087905108,52.852798882888415],[-120.31351263498374,52.8528616667229],[-120.31347304640859,52.85293451239622],[-120.31344888753843,52.853003600505865],[-120.3134106419434,52.85306639323494],[-120.31337165119,52.853134761966075],[-120.31331872288506,52.853195718307624],[-120.31326572040022,52.8532572286502],[-120.31319803524744,52.85331690259447],[-120.31313169320119,52.85336652358627],[-120.31304984813971,52.85342044712579],[-120.31296822616383,52.853472699589595],[-120.312886976546,52.85352216398866],[-120.31280520491156,52.85357553332562],[-120.31272335903623,52.85362945663055],[-120.31265701595154,52.85367907734454],[-120.31258873219527,52.853743218878925],[-120.3125216424143,52.8537984244586],[-120.31246863803098,52.85385993441815],[-120.31241555825977,52.85392200731377],[-120.31236270284721,52.853982400231935],[-120.31230917612667,52.85404781510478],[-120.31227085387435,52.85411116144755],[-120.31221777350261,52.854173234243966],[-120.31216424632031,52.85423864904285],[-120.31212592368122,52.85430199533072],[-120.31208707783044,52.854369255529804],[-120.31204823305143,52.85443650677733],[-120.31200923766716,52.854504883932925],[-120.31195630690902,52.85456583067199],[-120.31191798366712,52.85462917687891],[-120.31186430496551,52.85469571744587],[-120.31181137376345,52.85475666411222],[-120.31177245295179,52.8548244782137],[-120.31173360606768,52.854891738273714],[-120.31170996521651,52.85495692095279],[-120.31168580234471,52.85502600861148],[-120.31164680584038,52.855094385621264],[-120.3116226427884,52.855163473260866],[-120.31159915091875,52.855227538919564],[-120.31156000478825,52.85529703287867],[-120.31152115833308,52.855364283912444],[-120.31148231056099,52.85543154386635],[-120.31144406108773,52.85549432692277],[-120.31140506376761,52.85556270383203],[-120.31136606751691,52.855631071789546],[-120.31134190251161,52.85570016828387],[-120.31131766336975,52.85576981879537],[-120.31129394733748,52.85583555537968],[-120.31128454067586,52.855905925499286],[-120.31126089857615,52.855971108046134],[-120.31126617519939,52.856043314769074],[-120.31125646981852,52.856115918848836],[-120.31126219439388,52.85618477460808],[-120.31126724647744,52.85625866126771],[-120.31127364360006,52.856322486116746],[-120.31129345446661,52.85639764641699],[-120.3112992531992,52.85646594813732],[-120.31131973668613,52.856536077523316],[-120.31132531210632,52.85660605024669],[-120.31134579450887,52.85667618855788],[-120.31135159455768,52.85674448132768],[-120.31135672211651,52.856817804996695],[-120.3113630442028,52.85688219277891],[-120.31136809654372,52.856956079401634],[-120.3113733734703,52.85702828607478],[-120.31136434055995,52.85709585921649],[-120.31136991612652,52.85716583191309],[-120.31137579034058,52.85723357063589],[-120.3113808427452,52.85730745724165],[-120.31138604567668,52.85738021792279],[-120.31139236789065,52.85744460568047],[-120.31141210423307,52.85752032886781],[-120.31144846683398,52.85758335889493],[-120.31149943822061,52.85764878844979],[-120.31155160425705,52.8577052820994],[-120.31160257594763,52.857770711604445],[-120.31166890309255,52.85783295567946],[-120.31170511703128,52.857897102599765],[-120.31175608918666,52.857962532030385],[-120.31180765872271,52.85802349349545],[-120.311889865093,52.8580786380949],[-120.31197371519325,52.858121486860554],[-120.31205704231478,52.85816824948217],[-120.31213917523473,52.858223947926824],[-120.31222197960449,52.85827462434521],[-120.3122898025767,52.85832568925926],[-120.31237260732301,52.85837636556832],[-120.31245586133186,52.858423681924386],[-120.3125392636196,52.858469890170205],[-120.31263735156273,52.85851792585746],[-120.31272068018657,52.85856468799667],[-120.31280393375502,52.85861201303636],[-120.31288718870248,52.858659329079856],[-120.31297044264045,52.858706653998745],[-120.31305325012947,52.858757320880066],[-120.31313650444305,52.85880464567851],[-120.31320291066827,52.858866325885735],[-120.31328616655487,52.85891364163898],[-120.3133695707005,52.858959849281185],[-120.31343739613669,52.859010913510794],[-120.31351915872321,52.85906940789542],[-120.31355477943836,52.85913802214176],[-120.3135604329011,52.85920744061869],[-120.31350749852311,52.85926838787513],[-120.31339933284376,52.8592957450455],[-120.31329489881671,52.859295177462364],[-120.31317682514322,52.859284954516546],[-120.31306039358012,52.85926244460741],[-120.31295954236423,52.85923506906482],[-120.31285921316999,52.859203788453435],[-120.31276112459368,52.859155744036315],[-120.31267779477056,52.85910898194318],[-120.31259506228646,52.859057751847935],[-120.31251233000113,52.85900652169271],[-120.3124290007424,52.85895975941879],[-120.31234462660078,52.8589208159809],[-120.31224601611648,52.8588766850415],[-120.31214733058908,52.858833116978595],[-120.31206392801565,52.858786908465284],[-120.31198067373253,52.858739591842394],[-120.31188213929438,52.85869489763223],[-120.31179821410169,52.85865260284111],[-120.3117143631335,52.85860975396443],[-120.3116162772133,52.85856170857373],[-120.31153287455157,52.85851550861138],[-120.31144917463108,52.85847153362157],[-120.3113510140706,52.85842405096538],[-120.31126768722343,52.85837728785077],[-120.31118436055905,52.85833052467562],[-120.31110170544461,52.8582787394796],[-120.31101890239809,52.858228062271984],[-120.31091917431614,52.858192312048175],[-120.31083532633086,52.85814945359589],[-120.31075200058572,52.85810269010754],[-120.31065331837574,52.858059120768836],[-120.31055478690094,52.85801442542641],[-120.31047026700018,52.857976597603106],[-120.31037098799636,52.857937495957785],[-120.31027126233182,52.85790173624166],[-120.31016981873056,52.857878826214765],[-120.31005234713365,52.85786413218772],[-120.30993487561769,52.8578494380431],[-120.30981740418268,52.85783474378087],[-120.30969993282862,52.85782004940122],[-120.30959669737064,52.857810542669945],[-120.30947982362417,52.85779138013989],[-120.30936220313666,52.85777780240449],[-120.30926016283124,52.8577593595194],[-120.30914314000142,52.85774131363608],[-120.30902566913706,52.857726618581445],[-120.30890819835365,52.85771192340915],[-120.30880556086812,52.85769794805552],[-120.30868749269321,52.85768772058871],[-120.30857002213347,52.85767302507816],[-120.30845135651329,52.85766726529911],[-120.30833209334189,52.85766597332427],[-120.30822885856182,52.85765646539049],[-120.3081095954274,52.85765517318981],[-120.30799033230016,52.85765388086814],[-120.30787166681156,52.85764812050372],[-120.30776716159022,52.85764811096573],[-120.30764789849314,52.857646818296544],[-120.30752923307041,52.857641057586235],[-120.30740937232065,52.857644232594865],[-120.30730554010852,52.85763919176928],[-120.30718747245605,52.85762896279499],[-120.3070688071452,52.85762320161968],[-120.30694939470706,52.85762302522099],[-120.30683072944491,52.857617263805324],[-120.30672570186513,52.85762115830015],[-120.30660584111149,52.85762433248921],[-120.3064871758921,52.857618570726665],[-120.30636731512799,52.85762174467249],[-120.30624924774888,52.85761151475539],[-120.30614481794188,52.85761094081757],[-120.30602555499797,52.85760964650172],[-120.30590688989787,52.85760388415315],[-120.30578762698089,52.85760258959584],[-120.30566836407117,52.85760129491755],[-120.30556453216938,52.85759625255336],[-120.30544526928416,52.857594957648665],[-120.30531132275895,52.857591825270326],[-120.30508329521354,52.857622347561716],[-120.30485661272301,52.85764281662071],[-120.30462865992394,52.85767277507272],[-120.30440122945276,52.85769882813397],[-120.30417320068388,52.857729348657266],[-120.30394584379025,52.857754846816285],[-120.30371781439595,52.85778536645481],[-120.30348926194216,52.857819790593915],[-120.30327546693499,52.85785549787705],[-120.30304624024241,52.85789495200573],[-120.30281693775692,52.85793496864105],[-120.30260261879323,52.85797457963768],[-120.30237383949742,52.85801068153136],[-120.30216019215815,52.85804526980784],[-120.30193148629279,52.8580808168202],[-120.30170352909784,52.85811076958965],[-120.30147504746454,52.85814463578597],[-120.30124686463478,52.85817626759413],[-120.30101830689493,52.8582106958546],[-120.30080331109882,52.85825533440142],[-120.30058689424239,52.858310579307286],[-120.30038418748568,52.858374926556984],[-120.30018207856523,52.85843480557424],[-120.29996633267504,52.85848502743356],[-120.29973650104155,52.85852894296935],[-120.29952082836677,52.85857860999098],[-120.29930575492918,52.85862379980419],[-120.2990757722258,52.858668831012615],[-120.29886009807404,52.858718496817254],[-120.2986445742706,52.85876703632087],[-120.29842822625199,52.858821723217325],[-120.2982131492332,52.858866919959645],[-120.29798398785546,52.85890580123679],[-120.29776943441001,52.8589470833125],[-120.29754012131635,52.85898708962452],[-120.29732459465309,52.85903562669904],[-120.2971088423583,52.859085843293194],[-120.29689316380689,52.85913550547478],[-120.29667673741864,52.859190743148815],[-120.2964610578335,52.85924040453411],[-120.29624552866186,52.85928893962176],[-120.29603037271045,52.859334686370175],[-120.29581341954072,52.85939383628943],[-120.29561070043259,52.85945817526101],[-120.2954078309719,52.85952363084345],[-120.29520443617702,52.859592999911015],[-120.29500096644342,52.85966292263707],[-120.29479682273245,52.85973786687022],[-120.2946083351132,52.85980739364924],[-120.29440411453733,52.85988290014227],[-120.29421420218821,52.85996304188636],[-120.29402361571918,52.860048205176504],[-120.29383437654683,52.8601233155058],[-120.29364446325464,52.860203447381224],[-120.29330808638639,52.86037370353305],[-120.29318732157321,52.86049486671119],[-120.29306655607377,52.86061602975601],[-120.29294526495518,52.86074110649248],[-120.29282509732344,52.860857801433646],[-120.29269024476673,52.86097265731775],[-120.29254198126503,52.86107617547959],[-120.29235138648144,52.861161335997934],[-120.29216154009629,52.86124091141307],[-120.29197169300262,52.86132048651769],[-120.29178169535797,52.86140117826888],[-120.29157753646902,52.86147612576307],[-120.29138828665145,52.861551232085624],[-120.29119836240342,52.86163135993586],[-120.29100776245512,52.861716518245295],[-120.29083117120875,52.861808546168675],[-120.29065540410494,52.86189442609811],[-120.29046555129118,52.861973998736865],[-120.29027554788466,52.86205468801976],[-120.2900855437591,52.862135376991425],[-120.28989501488255,52.862219970523974],[-120.2896915239085,52.862289883941045],[-120.28947582051408,52.86233953240878],[-120.2892471566024,52.86237449169319],[-120.28901916754792,52.86240441977524],[-120.28879185223342,52.862429325594974],[-120.28857847160272,52.86246165517642],[-120.288336321189,52.862485837627],[-120.28810892947061,52.862511305068395],[-120.2878820629004,52.86253285827136],[-120.2876559458736,52.86254882627998],[-120.28743095398087,52.862556412253674],[-120.28719060198031,52.86256718893127],[-120.28695084975065,52.862573497316056],[-120.28672593199194,52.8625805279326],[-120.28650101415907,52.86258755811862],[-120.28626051175668,52.862599449843614],[-120.28603559374727,52.86260647913887],[-120.28579509110837,52.862618369911225],[-120.28556957288465,52.862629866109764],[-120.28534465460093,52.86263689408252],[-120.28510550179304,52.86263873090977],[-120.28488050777217,52.86264632093594],[-120.28464075475598,52.86265262460782],[-120.28441568615936,52.862660767749986],[-120.28417593299324,52.86266707047358],[-120.28394981386722,52.862683031350265],[-120.28372369457193,52.86269899179185],[-120.28348326639919,52.862710314891885],[-120.28325834734737,52.86271733887154],[-120.28301799338561,52.86272810701468],[-120.282792473833,52.862739597883426],[-120.28256740442441,52.86274773748558],[-120.2823262996425,52.862764088936764],[-120.28195093337547,52.86277951478567],[-120.28155607873732,52.86282884130553],[-120.2813286066812,52.86285484962635],[-120.28111409171034,52.86289554718601],[-120.28089702527112,52.862955223436806],[-120.28072123343487,52.86304108844596],[-120.280557647424,52.86314722763464],[-120.28042275458583,52.86326206927433],[-120.28031625477011,52.86338784734457],[-120.28023889770627,52.86351898614998],[-120.28016154016657,52.86365012489361],[-120.28006942178227,52.86377998601427],[-120.28003619312594,52.86391608320774],[-120.2800623785006,52.86405452063406],[-120.28005829342797,52.86419597868626],[-120.2800097776898,52.86433471203113],[-120.27997587207904,52.864475839858166],[-120.27992795761249,52.86461009644948],[-120.27982122711843,52.864737553841564],[-120.2797139697881,52.86486892488232],[-120.2795668626371,52.8649634909037],[-120.27933689939195,52.86500792929856],[-120.27911016529293,52.865028348595715],[-120.27886859570918,52.865048043745496],[-120.27864178667363,52.86506901613994],[-120.27841565273897,52.86508496634471],[-120.27818936842367,52.86510203305171],[-120.27794960061125,52.8651083230639],[-120.27772586978858,52.86510640094891],[-120.2774879046421,52.865099286778396],[-120.27726161987948,52.86511635169894],[-120.27703225437554,52.86515631783587],[-120.27681667319321,52.8652048171075],[-120.27660026452436,52.8652594635935],[-120.27638332879137,52.86531802341898],[-120.27618167979577,52.865373947153294],[-120.27596534398907,52.86542803846489],[-120.27575021104951,52.865473184969446],[-120.27550923852611,52.865488405473386],[-120.27527247393154,52.86547235134995],[-120.27510662349613,52.86537318965762],[-120.27510869555722,52.86524681495018],[-120.2752017339575,52.86511025623724],[-120.27526397364267,52.86498063058195],[-120.27539948694658,52.86486132725216],[-120.27551956326758,52.86474576736157],[-120.27565514964695,52.86462590972006],[-120.27576053985763,52.8645085085142],[-120.27583896438331,52.86436955419473],[-120.2758569967841,52.864235522006666],[-120.27567338516243,52.86415741270954],[-120.27545379152569,52.864124775029275],[-120.27523367282753,52.86409604174025],[-120.27499811839985,52.864071051575856],[-120.27477965355388,52.86403003116147],[-120.27456246730134,52.863979511937664],[-120.27434475488397,52.86393290604491],[-120.27412734356976,52.86388406588162],[-120.27389359479716,52.863845670303874],[-120.27367167468756,52.863830337277285],[-120.27343672396887,52.86380087624942],[-120.27321999028266,52.863747012676335],[-120.27301884475315,52.863688279558346],[-120.27280263898446,52.863630501482874],[-120.27260209478644,52.86356730885671],[-120.27238604055373,52.86350841307922],[-120.27216946124756,52.86345342169247],[-120.27195100228731,52.863412396004286],[-120.27173194224927,52.86337583763008],[-120.27149879994188,52.86333296955591],[-120.27128041683552,52.863291388620816],[-120.2710625611274,52.8632458935578],[-120.27084658644985,52.86318643200586],[-120.27066238571432,52.86311279148168],[-120.2704810445348,52.86301792008025],[-120.27031446273826,52.86292433611764],[-120.27014968664186,52.86281734876946],[-120.26999966986521,52.86271164894711],[-120.26986554224557,52.86259884634089],[-120.26973186540357,52.862482701723884],[-120.26962891183071,52.86236017927273],[-120.26954169434467,52.862231688977865],[-120.2694398695485,52.86210079384661],[-120.26936854142257,52.861965200869356],[-120.26926566475818,52.86184212406356],[-120.26910014328648,52.861740719812325],[-120.26891783294174,52.86165311041742],[-120.26871888409767,52.86157817887505],[-120.26851820515147,52.86151609612633],[-120.26831873165072,52.861445068678876],[-120.2681197089971,52.8613706990438],[-120.26793672575089,52.86128810981076],[-120.26777075817806,52.86119005443269],[-120.267620753023,52.86108435146522],[-120.26745644222905,52.86097400943664],[-120.26730591252924,52.86087221082833],[-120.26715591084832,52.86076649831093],[-120.26700688748599,52.86065353004273],[-120.26687277305261,52.86054073280986],[-120.26675394547053,52.86042530094528],[-120.26663624665883,52.86030149647535],[-120.26651854853054,52.860177691877944],[-120.26641553390195,52.86005572936434],[-120.26629776123838,52.85993248745719],[-120.2661641036759,52.85981632965128],[-120.26604603137913,52.859695321324665],[-120.26591177319125,52.859583630917164],[-120.26577766501927,52.859470832358255],[-120.26564401032041,52.859354673926866],[-120.26550990357669,52.859241875046166],[-120.26539221164286,52.85911806923781],[-120.26528980490653,52.858991637954645],[-120.26518739877739,52.85886520657225],[-120.2650855953846,52.858734307390286],[-120.26496662713848,52.8586199905119],[-120.26481724012815,52.85850981609421],[-120.26466777922084,52.85840019547366],[-120.2645023579168,52.858298221596364],[-120.26435124251519,52.85820088673013],[-120.26418649962999,52.85809389070252],[-120.26383804276611,52.85790989220235],[-120.2636716460665,52.857815181598525],[-120.26348974068412,52.85772476678844],[-120.26332274318223,52.8576345233746],[-120.26314151631321,52.85753908632649],[-120.26297497202428,52.85744549163743],[-120.2627930684911,52.85735508466316],[-120.26261063925988,52.85726858216459],[-120.26244417309275,52.8571744237781],[-120.26226189594242,52.857086803805444],[-120.26206335600652,52.8570090729414],[-120.26188055381343,52.856925357129015],[-120.26169699806144,52.85684723457345],[-120.26149981704857,52.856759441511215],[-120.26131754361208,52.85667182005073],[-120.26113504437987,52.85658587815263],[-120.26098447054467,52.856484625158366],[-120.26083502658656,52.856374999522835],[-120.26068558339674,52.85626537368959],[-120.26055262989867,52.85614418755453],[-120.26046507646377,52.85601847785517],[-120.26039303261415,52.85588847245129],[-120.26035238567457,52.855747070040444],[-120.26031113641945,52.855610135287385],[-120.26027049001664,52.85546873282328],[-120.26022924129369,52.855331798017446],[-120.26018859542768,52.855190395500045],[-120.26013191316854,52.855057202247394],[-120.2600760604411,52.85491786142116],[-120.2600195295466,52.85478355116988],[-120.25996307373156,52.85464868688697],[-120.25990699550864,52.85451102579425],[-120.25988110799946,52.85437090319797],[-120.25985499407777,52.8542324604336],[-120.25984438879588,52.85408972208951],[-120.25983303152559,52.85395255940478],[-120.25982182377588,52.85381428872051],[-120.25976589775966,52.85367551056581],[-120.25972510435396,52.85353522466168],[-120.25971389826903,52.85339694499524],[-120.25970314301323,52.853255323484966],[-120.25966204890686,52.853117271365875],[-120.25957548417897,52.852984296300875],[-120.25944133878804,52.85287204403378],[-120.25927602614979,52.85276950844964],[-120.25909377433301,52.852681883318446],[-120.25889367921417,52.85261587009246],[-120.25866158743936,52.85256572073979],[-120.25844214245187,52.852532488108096],[-120.25822330056623,52.85249478738324],[-120.25800679545021,52.85243976951554],[-120.25776950707898,52.852428147683014],[-120.25754192529287,52.85245522705429],[-120.25731404179034,52.85248453982335],[-120.25710015895243,52.85252072613795],[-120.25688401607884,52.85257365691073],[-120.25669459396192,52.852649824697785],[-120.25654491422762,52.852763359179704],[-120.25638191164595,52.85286498879336],[-120.25626166618234,52.852981646913484],[-120.25619848178613,52.85311796499025],[-120.256149826271,52.853257243440694],[-120.25608709335626,52.853390210681596],[-120.25602375704563,52.85352764554636],[-120.25596109811373,52.85366005870642],[-120.25586907958883,52.85378877581925],[-120.255806345017,52.853921742865516],[-120.25575768730437,52.85406102108265],[-120.25570902927393,52.85420029926738],[-120.2555882499232,52.854320870273796],[-120.25544067336084,52.85441875747051],[-120.25530498663781,52.85453915548581],[-120.25515597567738,52.85464765747556],[-120.25499364050252,52.85474426339146],[-120.25481647328444,52.85484014232704],[-120.2547224333833,52.85487320289035],[-120.25462718820154,52.85491518975722],[-120.25453179083057,52.854958302395225],[-120.25445062264014,52.85500660047365],[-120.25435530088957,52.85504915004124],[-120.25427413111996,52.85509745693024],[-120.25417888499607,52.85513944342774],[-120.25408348667032,52.85518255569568],[-120.25398884341062,52.85522007438317],[-120.25389352072224,52.85526262357038],[-120.25379880110664,52.85530070502713],[-120.25370347804842,52.855343254058006],[-120.25360883289129,52.85538078137091],[-120.25351403795054,52.85541941658391],[-120.25341878915275,52.855461411392014],[-120.2533241446895,52.85549892953752],[-120.25322889552714,52.85554092418962],[-120.25311941918498,52.85557771521618],[-120.25302605571213,52.85560574383516],[-120.25291786056536,52.855633045389965],[-120.25280958925525,52.855660909768055],[-120.25270214805904,52.85568262656602],[-120.25257980036231,52.85570417022119],[-120.25247281149602,52.85572253607533],[-120.25236521911825,52.85574536947532],[-120.25225838091391,52.85576261822293],[-120.25213663500051,52.855779702708176],[-120.25203024920911,52.855793600516385],[-120.2519079756847,52.85581458948302],[-120.25180174060168,52.85582737017389],[-120.25168059902002,52.855839977610394],[-120.25157376030178,52.85585722573449],[-120.25145269340402,52.855869278948546],[-120.2513463071663,52.85588317613684],[-120.2512252401306,52.85589522911631],[-120.25111885375402,52.855909126098446],[-120.25099778658036,52.855921178843396],[-120.25089215453544,52.855929491075194],[-120.25077108723988,52.85594154358645],[-120.25065115102588,52.8559452236267],[-120.25054491524084,52.855958003180206],[-120.2504230932337,52.85597563987443],[-120.25031746094187,52.85598395158934],[-120.25019639332933,52.85599600350805],[-120.25009008242749,52.85600933663631],[-120.24996901467864,52.856021388320585],[-120.24986338218501,52.85602969962696],[-120.24974231431429,52.856041751077534],[-120.24962185008627,52.85604933477481],[-120.24950183860824,52.85605356762764],[-120.24939560220892,52.85606634614126],[-120.24928861106294,52.85608470909202],[-120.24918048717468,52.85611145321152],[-120.24907168451337,52.8561432188421],[-120.24896280682104,52.85617553835681],[-120.24886883551574,52.85620803128665],[-120.2487599562966,52.85624035954723],[-120.24865183288985,52.85626709424249],[-120.2485571063632,52.85630517144965],[-120.24844837761928,52.856336382514],[-120.24835493453875,52.856364961393076],[-120.2482461306158,52.856396726254175],[-120.24813853427445,52.85641955577434],[-120.24803101269943,52.856441831210795],[-120.2479216044439,52.85647806338891],[-120.2478127250252,52.8565103818311],[-120.24771935602321,52.85653840621715],[-120.24761047508932,52.85657073340583],[-120.24751597403976,52.85660712994253],[-120.24740762183765,52.85663554331036],[-120.24729889141025,52.8566667533046],[-120.24719189785529,52.85668511433932],[-120.2470702233816,52.856701630645944],[-120.24696511774117,52.85670602571405],[-120.246845934063,52.85670411735237],[-120.24672780864464,52.85669438161412],[-120.24662579805765,52.85667588433584],[-120.24652710980047,52.8566328151091],[-120.24644393246986,52.85658545201191],[-120.2463613605917,52.856533612309086],[-120.24627863668928,52.856482898384215],[-120.24621134998,52.8564284356919],[-120.24612930665585,52.856372691129614],[-120.246061868081,52.856319354185636],[-120.24599518600061,52.856260423754335],[-120.24592797491273,52.856205406908536],[-120.24584510113523,52.85615580957021],[-120.2457619267006,52.85610843704094],[-120.2456787512425,52.8560610733865],[-120.24559557717741,52.85601370073654],[-120.24551285519405,52.85596298625593],[-120.24537564176966,52.8558736101671],[-120.24517547678757,52.855808136632696],[-120.24507588572808,52.855771767573145],[-120.24495897168715,52.85575309483908],[-120.24485575570704,52.85574353122399],[-120.24473770832668,52.85573323949623],[-120.24461966100333,52.85572294764986],[-120.24450161373692,52.85571265568474],[-120.24438175376224,52.855715766408494],[-120.24427672520348,52.855719605092],[-120.24415746947176,52.85571824798505],[-120.2440370051648,52.85572582595849],[-120.2439312211719,52.85573524883391],[-120.24380954814552,52.855751761774236],[-120.24370255538392,52.855770119642386],[-120.24358148650961,52.85578216474736],[-120.24347335980991,52.85580890362067],[-120.2433787058274,52.85584641374699],[-120.24328329500374,52.85588951722681],[-120.24320286778082,52.85593222301132],[-120.2431074565875,52.85597532634598],[-120.24301219751085,52.85601730376827],[-120.24291678593448,52.85606040694592],[-120.24283545138817,52.856109813865025],[-120.2427685698407,52.85616274571162],[-120.24268662927878,52.8562166290525],[-120.24260536911963,52.856265481826114],[-120.24252403382147,52.856314888523286],[-120.24244292440571,52.856362624283676],[-120.24236098304833,52.856416507390676],[-120.24227979830056,52.85646479701659],[-120.24219793270719,52.85651811709011],[-120.24213014297324,52.856577749942886],[-120.24206310868875,52.85663179826931],[-120.24199531858561,52.85669143103993],[-120.24192881230803,52.85674157461462],[-120.24183271851625,52.856789698459835],[-120.24175092791315,52.85684245529513],[-120.24166966548968,52.856891307402286],[-120.24158908241132,52.856935137886595],[-120.24150789580224,52.85698342696334],[-120.24141248054407,52.85702652889319],[-120.24131721745108,52.85706850491338],[-120.24122240641586,52.857107139103775],[-120.24112729410984,52.857147998072406],[-120.24103255890884,52.857186069192316],[-120.24092306661431,52.857222857752326],[-120.24084248335146,52.857266678780306],[-120.24074653831535,52.85731368482634],[-120.24065119773712,52.857356223214],[-120.24055646164857,52.85739429394514],[-120.24046172539086,52.857432364598935],[-120.24036706394689,52.85746988119594],[-120.24025832744981,52.8575010757239],[-120.2401641954117,52.857534678559105],[-120.24005530620786,52.85756699872688],[-120.2399614012484,52.85759892159021],[-120.23985183198002,52.85763626312164],[-120.2397565647794,52.85767824679565],[-120.23967590325559,52.857722629925235],[-120.23959395699859,52.857776502121176],[-120.23951223672807,52.85782870338639],[-120.23944572575736,52.85787884551955],[-120.23936385390618,52.85793216357096],[-120.23928190685241,52.8579860355422],[-120.23920018579838,52.85803823658347],[-120.2391342789726,52.858083910964666],[-120.23903765036444,52.858135937138265],[-120.23895713844135,52.85817920286962],[-120.23884817167314,52.85821207588405],[-120.23874003584498,52.858238810360625],[-120.23863242976813,52.858261631149674],[-120.2385236899835,52.85829282405685],[-120.23841668857159,52.858311177082584],[-120.2383096870676,52.85832953001072],[-120.23818800446317,52.85834603710302],[-120.23808115401151,52.85836327293182],[-120.23796060492805,52.85837140757609],[-120.23785375432092,52.858388643197884],[-120.2377325251138,52.85840179914693],[-120.23762567433833,52.85841903456102],[-120.23751874845493,52.85843682385514],[-120.23739767026393,52.85844886256843],[-120.237277197043,52.858456433598775],[-120.23717216109551,52.85846026592549],[-120.23696852544498,52.85853065111299],[-120.2367785874863,52.85861013716978],[-120.2365884975411,52.85869073980413],[-120.2363976504586,52.858776926567806],[-120.23622178628268,52.85886272522616],[-120.23603184545311,52.85894221005943],[-120.23582760163147,52.85901705186348],[-120.23562418866602,52.85908575489826],[-120.23541994223098,52.859160604922174],[-120.23524467976824,52.85924193455106],[-120.2350417950204,52.85930672299828],[-120.23482354686367,52.85937469538878],[-120.23466235829441,52.85946233783818],[-120.23455542914165,52.85959031742277],[-120.23453605820926,52.85973327872519],[-120.23454673151876,52.85987490194976],[-120.23458744815781,52.86001519602361],[-120.23464375454957,52.86015063494203],[-120.23472972701643,52.860287532393414],[-120.23481547243337,52.86042610956514],[-120.23487185636226,52.860560985429096],[-120.23492846703611,52.86069419039469],[-120.23489691147599,52.86081688138043],[-120.2346631418838,52.86088914565841],[-120.23444125130047,52.86087373853011],[-120.2342087655861,52.86082632888436],[-120.23402539510417,52.860747046419114],[-120.23384240430298,52.86066496698742],[-120.23366115547292,52.86057003864002],[-120.2334948154306,52.86047528547393],[-120.23331424874101,52.860375335072675],[-120.2331471533578,52.860286165818614],[-120.23296469544484,52.86020018037343],[-120.23276604426074,52.86012350811747],[-120.23252690334975,52.86012523795516],[-120.23233740419569,52.86020136610689],[-120.23218702751846,52.86031933653796],[-120.23209492286902,52.86044803448316],[-120.23203202806626,52.86058155117685],[-120.23199819437981,52.86072098567574],[-120.2319250794183,52.86092988729041],[-120.23187187363969,52.86099192348381],[-120.23183365340522,52.86105356348511],[-120.23177976658636,52.861120621127284],[-120.23172656035838,52.861182657247504],[-120.23168773407939,52.86124876471554],[-120.23164920930293,52.86131264734247],[-120.23162491313532,52.86138171821613],[-120.2315857824676,52.861450068337575],[-120.23156148611898,52.86151913919209],[-120.2315378704806,52.86158318854637],[-120.23149873948844,52.86165153863013],[-120.23145976100582,52.8617187628831],[-120.23140647845909,52.86178135280727],[-120.23135281658327,52.86184673937104],[-120.23129968514806,52.86190821236223],[-120.23124662988037,52.86196912241987],[-120.23119334670798,52.86203171223752],[-120.23115451761781,52.86209782842897],[-120.23110138558387,52.86215930132079],[-120.23104832972052,52.862220211279265],[-120.23099519738102,52.8622816841183],[-120.23094145913099,52.86234762444552],[-120.23087356806232,52.862407813490876],[-120.23082043523713,52.862469286243524],[-120.23075262013218,52.86252891230767],[-120.23070024421436,52.862584800610314],[-120.23063182296359,52.862648894112866],[-120.23057937162082,52.86270533632877],[-120.23049679727525,52.86276367845743],[-120.2304295870673,52.86281883681313],[-120.23036237668552,52.86287399512851],[-120.23029456029643,52.86293362091314],[-120.23022750101939,52.86298766227001],[-120.23014553270802,52.86304152769756],[-120.2300784730724,52.86309556896572],[-120.22999718536066,52.863144412807316],[-120.22991582112222,52.86319381949701],[-120.22983400349239,52.863246567823566],[-120.22975286668661,52.86329429461495],[-120.22965681952009,52.86334185433264],[-120.2295760616376,52.863386784340996],[-120.22949492427632,52.86343451095008],[-120.22939895285407,52.86348150754735],[-120.22931842105852,52.86352476652848],[-120.22922297884314,52.86356785838196],[-120.2291276891381,52.8636098243464],[-120.22903292886842,52.863647885636524],[-120.22893824357186,52.863685392879255],[-120.22882811936911,52.86372662858348],[-120.22873403972633,52.863759668160185],[-120.2286399611498,52.863792698725916],[-120.2285311235914,52.86382444518213],[-120.22842289191361,52.86385172403969],[-120.22831518978879,52.86387509820495],[-120.22820771542665,52.863896792492525],[-120.22808661910415,52.86390882157087],[-120.22797967547572,52.863926602123655],[-120.22785857900423,52.8639386309668],[-120.22775095272102,52.86396144170945],[-120.22764332632264,52.86398425235328],[-120.22753516883236,52.864010976421355],[-120.22741331430733,52.86402858917037],[-120.22730644526189,52.86404581514022],[-120.22720078847745,52.864054106031865],[-120.22707961625703,52.864066688040246],[-120.22695912533302,52.864074248465826],[-120.2268534684106,52.86408253904502],[-120.22673237117854,52.86409456672657],[-120.2266112738782,52.86410659428326],[-120.22650485899887,52.864120468907984],[-120.22639662527341,52.86414774589443],[-120.22628770874844,52.86418005316926],[-120.22619377891976,52.86421196489683],[-120.22608478689669,52.8642448259504],[-120.2259900976814,52.86428233080386],[-120.22589556109067,52.864318709774444],[-120.22578596223893,52.86435603803167],[-120.2256918788503,52.86438907516002],[-120.22559719018174,52.86442657075861],[-120.22550234854465,52.86446519208508],[-120.22540644680456,52.86451162248903],[-120.22532583260958,52.86455544160865],[-120.22522977887735,52.864602988735584],[-120.2251486343371,52.86465071230746],[-120.22506665520015,52.864704583071045],[-120.22498596509566,52.86474895591946],[-120.22490413838332,52.86480170076218],[-120.22482162862366,52.86485947592416],[-120.2247683324084,52.864922062714335],[-120.22474417343614,52.86499002407407],[-120.22472039402311,52.86505518878658],[-120.22471076725697,52.86512610548021],[-120.22468622965053,52.86519685452328],[-120.22467713283744,52.86526386663542],[-120.22466742953863,52.865335346217954],[-120.2246725606752,52.8654075563482],[-120.22466346379571,52.86547456845038],[-120.22465376042602,52.865546048022274],[-120.22464405702381,52.86561752759003],[-120.22464911174028,52.86569030061005],[-120.22463986314708,52.865758429566675],[-120.22464552555256,52.86582672617318],[-120.22466640104821,52.86589296562637],[-120.22471664269995,52.86596289990305],[-120.22476749097316,52.86602836668295],[-120.2248183394025,52.866093833438036],[-120.22486994604763,52.86615371582785],[-120.22490596002922,52.86621845201333],[-120.22495696050795,52.86628280183259],[-120.22500780953165,52.86634826849529],[-120.22504382388688,52.866413004630566],[-120.22509527962785,52.866474003777526],[-120.22514620428855,52.86653891640574],[-120.22518221901497,52.86660365249092],[-120.22520256571357,52.86667379638753],[-120.22522298767511,52.866743386310866],[-120.22521320854564,52.86681542877325],[-120.22518935363479,52.866881147472256],[-120.2251209172056,52.866945237592674],[-120.22503976808586,52.86699296101899],[-120.22493091967782,52.86702470407714],[-120.22482389050352,52.86704304462468],[-120.22470278429061,52.8670550701926],[-120.22459651305365,52.867067826196376],[-120.224475936789,52.867075946962935],[-120.22436905891875,52.86709317022884],[-120.2242478008036,52.867106312194316],[-120.22414031622722,52.86712800271841],[-120.22403336287877,52.867145779644176],[-120.2239104364638,52.867171206791014],[-120.22372035924343,52.86725123420793],[-120.2235153709727,52.86733108458344],[-120.22333944559304,52.86741686349875],[-120.22317706616477,52.86751286177054],[-120.22307068900585,52.86763636279397],[-120.22300783178007,52.86776931115184],[-120.22292907717326,52.86790934674696],[-120.22286629554567,52.868041732106725],[-120.22281751411981,52.868180995426364],[-120.22272604613974,52.868304663969205],[-120.22260505834076,52.86842575395042],[-120.22249882892979,52.8685481375217],[-120.22240607051849,52.86868129465761],[-120.2222984747014,52.868813729796],[-120.22217884947409,52.86892476753386],[-120.22198929273378,52.86900087857623],[-120.22177226423301,52.86905932851416],[-120.22160911526689,52.86916091776559],[-120.22147472797491,52.86927066092768],[-120.22135305055386,52.869396779890586],[-120.22126089359149,52.86952546860671],[-120.22119734458754,52.86966344618024],[-120.22116392342565,52.86979952617759],[-120.22117455362141,52.869941158650086],[-120.22121508414847,52.87008257332472],[-120.22125622182858,52.870219520530405],[-120.22123740835977,52.87035801123825],[-120.22118945405043,52.87049112647955],[-120.22112537294207,52.870633008473774],[-120.22104766896128,52.87076522453548],[-120.22095558337776,52.870893358938986],[-120.22084926782286,52.871016294791886],[-120.22072834226007,52.871136828672455],[-120.22060734074962,52.87125791638157],[-120.22048641503149,52.87137844106005],[-120.22036617089265,52.871493944208986],[-120.22024440857744,52.87162061580964],[-120.22013816442896,52.87174299700158],[-120.22003207264356,52.87186425229515],[-120.21992575200433,52.87198718723781],[-120.21981943075194,52.87211012207476],[-120.21969720974514,52.872240143631565],[-120.2195908107096,52.872363641138186],[-120.21948471582286,52.87248489589053],[-120.21940654804428,52.8726204612835],[-120.21931437702317,52.87274915714747],[-120.21917913708891,52.87286504461409],[-120.21907303978342,52.8729862989567],[-120.21899547693867,52.87311739661055],[-120.2189460698905,52.873261125300964],[-120.21889795215229,52.873395365154614],[-120.21877762272905,52.87351142049234],[-120.21864260601271,52.87362563647109],[-120.21850683075941,52.87374542762471],[-120.21840065283888,52.87386724418811],[-120.21827902971701,52.873992796709835],[-120.21817277401429,52.87411517594287],[-120.21805183330801,52.87423569790048],[-120.21790318947784,52.87434024676624],[-120.21769959920763,52.87440947206887],[-120.21746952060226,52.87445378913442],[-120.21725572212043,52.87448822266679],[-120.21701520990834,52.87449940970248],[-120.21679143262936,52.87449737160818],[-120.21655403275594,52.87448566670498],[-120.21631602555046,52.874478428727194],[-120.21609164092911,52.87448085670576],[-120.21586467436539,52.87450227071698],[-120.21563649250497,52.874532619092435],[-120.21541935057991,52.8745916199898],[-120.21522861675506,52.87467610070013],[-120.21503978153257,52.874746616011734],[-120.21482332187568,52.87480058551073],[-120.2146067851072,52.87485511750104],[-120.21439024778473,52.8749096490907],[-120.21418725556799,52.874974409826955],[-120.21399644223222,52.875059442474594],[-120.2138480906648,52.875161743528366],[-120.2136841397733,52.87526890562743],[-120.21350740214206,52.87536025363408],[-120.21335889640756,52.87546367089813],[-120.21319562751356,52.87556580201829],[-120.21304658785448,52.87567313230427],[-120.21288331741,52.875775262977236],[-120.21273480749993,52.87587868836083],[-120.21258584217887,52.87598545515143],[-120.21245133354894,52.87609575041576],[-120.21233029445148,52.876216829226884],[-120.21222340820927,52.876343670290446],[-120.21210229237684,52.87646530280288],[-120.21195377816775,52.87656872715508],[-120.21178997031062,52.876674760739114],[-120.21160096854884,52.876746387282274],[-120.21136538161639,52.876721269794814],[-120.2111464572337,52.876683481972904],[-120.21096290942853,52.87660528116173],[-120.21078103571024,52.87651478585633],[-120.21061514038122,52.87641665073405],[-120.21044985391954,52.876314048002165],[-120.21030054584722,52.87620380554282],[-120.21015055500723,52.87609858420854],[-120.21001654368683,52.87598571429019],[-120.20989835857625,52.87586632161753],[-120.20979607622536,52.87573984334848],[-120.20967842395832,52.875616545956696],[-120.20954487154344,52.875500324940646],[-120.20941147069013,52.87538299585756],[-120.20927731152342,52.8752712418876],[-120.20914330389964,52.87515837984994],[-120.20900929820192,52.87504550871687],[-120.20887590024596,52.874928178992505],[-120.20872645024897,52.874819042344846],[-120.20857646816665,52.87471381891082],[-120.20841012870176,52.874619031089665],[-120.20821221367572,52.87453674275962],[-120.20802822546521,52.87446187884911],[-120.20784590964341,52.874374738337806],[-120.20766351912953,52.8742881514918],[-120.20746576039414,52.87420473611305],[-120.20729988168692,52.874106596170485],[-120.20718117642497,52.873991114032684],[-120.20706361320859,52.873867251001464],[-120.2069453667956,52.87374840915405],[-120.20679554498835,52.87364206653753],[-120.20661376820863,52.87355101066458],[-120.20643138372165,52.87346442186218],[-120.206248466928,52.87338174617587],[-120.2060139666644,52.873348800038784],[-120.20579263015043,52.873328871587],[-120.20555645695384,52.87330820975919],[-120.2053190667904,52.87329648215946],[-120.20509651363078,52.873285487099174],[-120.2048572977821,52.873287160617686],[-120.20464281082312,52.87332659253663],[-120.20441386640256,52.873362503335706],[-120.20418454053859,52.87340121024622],[-120.20396936694057,52.87344567116419],[-120.20374065020927,52.87347990092814],[-120.20351368277407,52.873501291107104],[-120.20327750972697,52.8734806247031],[-120.2030578481106,52.87344840591784],[-120.20283894790084,52.87341060254875],[-120.20260582010172,52.87336759810242],[-120.20238912738141,52.8733136042635],[-120.2022051546764,52.87323873118216],[-120.20200680132919,52.8731597828359],[-120.2018256457956,52.873064252196976],[-120.20165925226486,52.87297000867543],[-120.20150921739919,52.872865338987424],[-120.20137539137328,52.872751342157336],[-120.20122589147361,52.87264275870988],[-120.20109252245844,52.872525419977244],[-120.20095839409268,52.87241365631411],[-120.20080958101872,52.8723000510334],[-120.20066031315324,52.87218978711939],[-120.2005099034172,52.87208790371893],[-120.20035995122429,52.87198266962251],[-120.20021060888477,52.87187296799897],[-120.20007656041531,52.87176064933503],[-120.19992767643737,52.87164759684005],[-120.19977727036508,52.8715457124676],[-120.1995691320251,52.87131954149876],[-120.19836402950924,52.870956358503825],[-120.19749264780539,52.87055570326119],[-120.19681321417401,52.86984296912915],[-120.1964531705147,52.869197755769086],[-120.19596653356436,52.86860474284256],[-120.19560123320875,52.868107682027755],[-120.19502518246479,52.86773230613001],[-120.19391009316242,52.86725771472156],[-120.19263662246203,52.866849477277164],[-120.19162539019983,52.86648962672554],[-120.19075961216973,52.86593964796982],[-120.19028419238614,52.86559339935719],[-120.18961422402081,52.864922124834145],[-120.18852414144756,52.86404674253874],[-120.1874205551773,52.86337982267376],[-120.186155521844,52.86269250876893],[-120.18461779211604,52.86192475845396],[-120.18333526531588,52.86125678963697],[-120.18198715299931,52.860413509044],[-120.18051077137429,52.85930749022414],[-120.17893523292544,52.85816278447559],[-120.17752817002233,52.85786073463595],[-120.17622770784965,52.85787091511526],[-120.17558737822712,52.85796728973118],[-120.1742330170867,52.857825791503586],[-120.17295443350828,52.85745810637779],[-120.1717572311076,52.85682345985377],[-120.17059726642802,52.85646220059233],[-120.16881250638855,52.85630205142659],[-120.16773395485575,52.85665431734459],[-120.1672501778233,52.85724249077404],[-120.16662476813639,52.85842799409702],[-120.16612929509127,52.859210115047865],[-120.16491676224767,52.86064750147244],[-120.1637468979167,52.861446641873876],[-120.16136919727808,52.86277652399305],[-120.15988668453116,52.863458874616796],[-120.15838654584115,52.86372540963486],[-120.1571248631098,52.86399537953415],[-120.15609003994102,52.86457068425537],[-120.15523792126018,52.86533780222359],[-120.15416050311288,52.866440007554985],[-120.1526560422527,52.86858405433791],[-120.15121605004937,52.87058401059423],[-120.15020274257616,52.87176134827239],[-120.14897734416684,52.87263405632304],[-120.1481905614669,52.87314127657074],[-120.14709528325966,52.873719121783125],[-120.1349396777323,52.876507162425675],[-120.13549258661033,52.87748103138881],[-120.1359455747684,52.87885469079408],[-120.13665824546464,52.88051232471764],[-120.13785424717925,52.88234926630599],[-120.13869055263727,52.88332770803692],[-120.14131569286015,52.8847704880479],[-120.1437414804113,52.88592607318498],[-120.14581037284735,52.88685295988595],[-120.14982621487314,52.88916042421994],[-120.15307627246156,52.89204069205163],[-120.15725868256816,52.89651331076293],[-120.1612397287914,52.900934671574085],[-120.16270093290196,52.90357321157164],[-120.16499857334205,52.90741591436758],[-120.16653387898785,52.9115872120535],[-120.16749617591847,52.915360081268844],[-120.17064722040432,52.919093756924816],[-120.1743860770838,52.92214362080175],[-120.17662883320699,52.92323755008589],[-120.1770904606114,52.923470137890476],[-120.1806816879196,52.92378250891051],[-120.18652615224094,52.924787060303785],[-120.18690540245512,52.925075675803576],[-120.18941067352364,52.927315104570525],[-120.19336626427331,52.92813755084759],[-120.19876150886579,52.92805675130887],[-120.20426293501352,52.927635779721726],[-120.20520676534976,52.927185403615255],[-120.21093032849019,52.92436456679762],[-120.21751735331073,52.92068712795092],[-120.22453173334137,52.91924693853725],[-120.23058289270777,52.91928075209569],[-120.23530991992138,52.9195961031566],[-120.24079160480107,52.919970202851395],[-120.24652890196613,52.92176976178433],[-120.24981234519129,52.92269957696943],[-120.25415721854039,52.92330067275709],[-120.25955127163479,52.92333117096378],[-120.26664346969267,52.922855800623346],[-120.27403476640254,52.92226755595138],[-120.27629937639706,52.92210645337745],[-120.28322073020483,52.921229980869406],[-120.29023016301818,52.92069691817159],[-120.29614896638438,52.921046931891915],[-120.29850197587582,52.921005495395455],[-120.29873680994208,52.92103825603949],[-120.29895903720565,52.921053541191924],[-120.29919731862113,52.921060611643576],[-120.29942134439099,52.92106249282049],[-120.29966269836903,52.92104666088957],[-120.29988852216216,52.92103513806746],[-120.30012680362898,52.92104220663732],[-120.30034963072252,52.9210530214584],[-120.3005861145089,52.921073492218234],[-120.3008084924358,52.9210876569512],[-120.30104557587325,52.921103659078504],[-120.30128385791555,52.92111072530545],[-120.30150788404113,52.92111260251054],[-120.3017455670453,52.921124135515065],[-120.3019838493183,52.92113120032468],[-120.302207426245,52.92113642698432],[-120.30244570866343,52.92114349085876],[-120.30267093314886,52.921136430415736],[-120.30290981468723,52.921139025632264],[-120.30313384103333,52.921140899742376],[-120.30337152463575,52.92115242946293],[-120.30359674901491,52.92114536724827],[-120.30383750176642,52.92113400341514],[-120.30406272597085,52.92112694030859],[-120.30430100864386,52.921134000426875],[-120.30452323840373,52.92114927507192],[-120.30476212012695,52.92115186652876],[-120.30500160070297,52.92114998977068],[-120.30522562719871,52.92115185989903],[-120.30546331142858,52.92116338539513],[-120.30568434425385,52.92118759331219],[-120.30592038230549,52.92121140415197],[-120.30614081693453,52.92124007894562],[-120.30637730454302,52.92126053806654],[-120.30660073302329,52.92126687331399],[-120.30683849369503,52.92127783309718],[-120.30705952789614,52.9213020384298],[-120.30729302336182,52.92134483441029],[-120.30751076606998,52.921393611470805],[-120.30772880854778,52.92144015425538],[-120.30794804854077,52.921477761146356],[-120.30816676463789,52.92151928137281],[-120.3083855565693,52.921560238255694],[-120.30861965323393,52.92159856385133],[-120.30883897023119,52.92163560614282],[-120.30907426452569,52.92166499533598],[-120.30929350686456,52.92170259971536],[-120.30951289918033,52.92173908674758],[-120.3097471474265,52.9217762931585],[-120.30996579262055,52.921818364035396],[-120.31018391414467,52.92186434825795],[-120.31040196195472,52.921910886076674],[-120.31062023518169,52.92195574361362],[-120.31083708748989,52.92201121613627],[-120.31102101305818,52.922089267676796],[-120.31120329548217,52.92217959632748],[-120.31138565285256,52.92226937068879],[-120.31155225797339,52.92236512684429],[-120.31173401873849,52.922459368415346],[-120.31190129767242,52.922550102302765],[-120.31208305999965,52.922644343324066],[-120.31224989303615,52.92273841859158],[-120.31243210548955,52.922829308241134],[-120.31259841612885,52.9229272967643],[-120.3127488249275,52.9230323842272],[-120.31286727970537,52.92315278682658],[-120.31298543614528,52.92327542318032],[-120.31308806373322,52.923402370745556],[-120.31319076728087,52.923528755272976],[-120.31335708239811,52.92362674268197],[-120.3135398989803,52.923713162801384],[-120.31372219369986,52.92380348746065],[-120.31393973152613,52.92385393243352],[-120.31416257683838,52.923864721083454],[-120.31440207225617,52.9238628252004],[-120.31462611343628,52.92386467743183],[-120.31486560883314,52.92386278060552],[-120.31509263904817,52.923842293084675],[-120.31531922071073,52.923825155957],[-120.31554752133277,52.923795169068015],[-120.31577529802178,52.92376909550888],[-120.31600367213751,52.92373855372962],[-120.31623070114252,52.92371806401195],[-120.31647266037696,52.923697738789954],[-120.31669909130683,52.92368171594982],[-120.31702041256429,52.92362699903186],[-120.3171023134444,52.92357362909453],[-120.31716950722573,52.923518423303136],[-120.31725133241615,52.92346561619958],[-120.31731852583381,52.92341041031946],[-120.31740050121539,52.92335647722649],[-120.31746754488096,52.923302388204384],[-120.31754884703957,52.92325348573343],[-120.31764425829034,52.92321088673168],[-120.31773966935019,52.923168287651464],[-120.31783508021914,52.92312568849276],[-120.31794332991016,52.92309889126965],[-120.31804911545062,52.923090519117174],[-120.31816736722443,52.92310073676115],[-120.31828442413997,52.92311988987076],[-120.31838557945206,52.92314614280533],[-120.31850091956079,52.92317813613493],[-120.31860088029353,52.92321332446975],[-120.31868479013733,52.92325672964896],[-120.31876825209518,52.92330348561282],[-120.31888351764556,52.92333604150647],[-120.31898422579981,52.92336564476904],[-120.31908403802774,52.92340194963813],[-120.31918332713167,52.92344216821098],[-120.31928276695741,52.92348126081447],[-120.31938213169987,52.92352091627534],[-120.31946731169589,52.92355483128855],[-120.31956712477918,52.92359113574374],[-120.31968261631064,52.923622010957224],[-120.31978183242693,52.923662783026685],[-120.31988254197857,52.92369238551468],[-120.31998355031413,52.92371975401634],[-120.32009948925888,52.92374728690455],[-120.3202028869262,52.923756784018444],[-120.3203205438141,52.92377146729507],[-120.32043820078317,52.923786150454006],[-120.32054040415962,52.92380458287363],[-120.32065746407756,52.92382373361486],[-120.32077452410081,52.923842884239264],[-120.32089173352797,52.92386091779627],[-120.32099281815721,52.9238877224858],[-120.32110928133496,52.92391134058036],[-120.32120924594457,52.92394652668399],[-120.32130921071939,52.923981712701966],[-120.32139424388622,52.92401674326227],[-120.32149308994963,52.92406030178988],[-120.3216089567546,52.92408838719333],[-120.32171116136335,52.924106818592975],[-120.3218288197386,52.92412150035877],[-120.32194603037927,52.924139532862775],[-120.32204883233386,52.924153496160656],[-120.32216649095456,52.92416817758842],[-120.32228310481369,52.92419067756518],[-120.32238471291714,52.92421357618836],[-120.32248520109688,52.924244856335825],[-120.32260106905846,52.924272940759515],[-120.32270267752921,52.92429583910698],[-120.32281988901987,52.92431387073876],[-120.32293695136319,52.92433301920688],[-120.323039157134,52.92435144945059],[-120.32315510096855,52.924378970382605],[-120.32325670999028,52.92440186825025],[-120.32337213118142,52.924433302772535],[-120.32347329275058,52.92445955131332],[-120.32357370829226,52.92449138453573],[-120.32369024856956,52.92451444605863],[-120.3237906644029,52.92454627909492],[-120.32389122960883,52.92457699509079],[-120.32400717460831,52.924604515179645],[-120.32410878462652,52.924627412308546],[-120.32422584841152,52.92464655949099],[-120.32434350914532,52.92466123873807],[-120.32446191599935,52.92467033309325],[-120.32456412323991,52.92468876200896],[-120.32468178420699,52.924703440917526],[-120.32478235042697,52.924734156148986],[-120.32489822123526,52.92476223830278],[-120.32499811577979,52.92479798411553],[-120.32509868245128,52.92482869907493],[-120.32519857851355,52.924864435780414],[-120.3252981011801,52.92490296925741],[-120.32539799639052,52.924938714727624],[-120.3254973702295,52.92497836499015],[-120.32558136576847,52.92502120225964],[-120.3256807399707,52.925060852365455],[-120.3257806358728,52.92509659750738],[-120.3258812038141,52.92512731179253],[-120.32599834495181,52.925145894260275],[-120.32610115066507,52.92515985401013],[-120.32621881346385,52.9251745313779],[-120.32633587970197,52.9251936764554],[-120.32643689574687,52.92522103939348],[-120.3265529181264,52.92524800295302],[-120.32665348698244,52.92527871657552],[-120.32675450343322,52.925306079239625],[-120.32686925789984,52.925342541090586],[-120.32696930579827,52.925377159324526],[-120.32705442157639,52.92541162281892],[-120.32716865519261,52.925451989259344],[-120.32726974635752,52.92547879746728],[-120.32737195675409,52.925497223935565],[-120.32748962092327,52.92551190003],[-120.32760728517354,52.92552657600661],[-120.32772614250665,52.92553231619852],[-120.32784440338341,52.925542524104486],[-120.32794840361504,52.92554754656944],[-120.32806785751781,52.925548818581724],[-120.32818790788022,52.92554562263692],[-120.32829369748418,52.9255372412894],[-120.32841449333264,52.92552846031798],[-120.32853573644296,52.9255163283444],[-120.3286416010526,52.925507383736516],[-120.32876403682077,52.92548631585107],[-120.32887176439809,52.92546341350719],[-120.32897889549156,52.925444978904515],[-120.32908587740312,52.92542766116423],[-120.3292071200351,52.925415528498306],[-120.32931298306039,52.92540659222169],[-120.32943422556765,52.925394459321666],[-120.32955487169909,52.92538679413979],[-120.32967372890448,52.925392532365606],[-120.3297777289855,52.92539755321467],[-120.32989375396158,52.925424513478134],[-120.32999544423097,52.9254468425652],[-120.33011072416716,52.92547938742043],[-120.33021293579458,52.92549781142167],[-120.33033060094456,52.925512484676],[-120.33044766996059,52.9255316256599],[-120.3305665276906,52.9255373629836],[-120.33067306204505,52.925523394687595],[-120.33078138486896,52.925496022747964],[-120.3308890362685,52.925473681506965],[-120.33099862625495,52.925436810718075],[-120.33110694864928,52.92540943847733],[-120.33120100986355,52.92537688120781],[-120.33129581608833,52.9253387390475],[-120.33140473415368,52.925306898678976],[-120.33151365205613,52.92527505820896],[-120.33162130251276,52.92525271629517],[-120.331729027962,52.92522981133293],[-120.33183667938333,52.925207460285854],[-120.33194425558894,52.92518567208983],[-120.33206639077757,52.925166834693066],[-120.33217396676297,52.92514504628656],[-120.33228102052736,52.925127171624766],[-120.33238859630274,52.92510538302157],[-120.33250998607384,52.9250921299865],[-120.33261763673708,52.925069778223225],[-120.3327388773434,52.92505764191675],[-120.33284585675224,52.9250403207549],[-120.33296709720963,52.92502818421306],[-120.33307303357005,52.92501868160201],[-120.33319442288094,52.92500542786039],[-120.33330080606514,52.924992574147154],[-120.3334226421521,52.92497596927251],[-120.33352842930995,52.92496758321726],[-120.33364914738254,52.924959359821585],[-120.33376859980504,52.92496062604881],[-120.33386902422471,52.924992450477795],[-120.33396788531397,52.92503599850219],[-120.33403598847349,52.925085940708314],[-120.33411835429801,52.92514105851542],[-120.33420131496071,52.925191717331515],[-120.33426941983475,52.92524165046207],[-120.33435230699371,52.92529286318416],[-120.33443459855795,52.92534854371419],[-120.33450203309935,52.925403507524535],[-120.33456954169179,52.92545791727872],[-120.33465205787003,52.92551191773268],[-120.33471949295094,52.925566881412905],[-120.3347865552595,52.92562464193863],[-120.33485406575767,52.9256790425865],[-120.33493695447136,52.9257302548831],[-120.33503589223744,52.925773247974824],[-120.33511915308814,52.92582167218954],[-120.33520271318014,52.92586785347294],[-120.3353015764747,52.92591140928939],[-120.33538498801492,52.92595870740847],[-120.33546906930145,52.926000983579655],[-120.33556897562622,52.926036720393135],[-120.3356848570926,52.92606479190539],[-120.33578603012751,52.92609102983699],[-120.33590250753574,52.92611463326131],[-120.33600360696379,52.92614142502131],[-120.33612008463051,52.9261650282296],[-120.33622066255326,52.92619573366005],[-120.3363218362295,52.92622197112896],[-120.33642114819015,52.92626217508935],[-120.336520014838,52.926305720936185],[-120.33660335346111,52.92635358113276],[-120.33670281488727,52.92639266788317],[-120.33678742005208,52.92643102924162],[-120.33688665909149,52.92647178682082],[-120.33698619609225,52.926510310376514],[-120.33708670041818,52.92654157801308],[-120.33718608888245,52.92658121836751],[-120.3372865947136,52.926612476896324],[-120.33738598352947,52.92665211708024],[-120.3374860418643,52.92668673528262],[-120.33758587765128,52.926723024386185],[-120.33768593750622,52.926757633481316],[-120.33780003594711,52.92679910654011],[-120.33798239414622,52.9268894023842],[-120.33811735246857,52.92699876284195],[-120.33822028783992,52.92712400827131],[-120.33829179550906,52.92726067087046],[-120.33836345368074,52.92739620750839],[-120.33840487463884,52.927534225624655],[-120.33844644471695,52.92767112674412],[-120.33847285921622,52.92780954562028],[-120.33848382028887,52.92795171620352],[-120.33847999702172,52.92809261659913],[-120.33847632377268,52.92823239107659],[-120.33847257547751,52.92837272849489],[-120.33846882715764,52.928513065900844],[-120.33844977381037,52.92865603804356],[-120.33844617424576,52.92879525845473],[-120.33844294620198,52.92893169089777],[-120.33845383363101,52.929074415403],[-120.33848024902498,52.92921283415837],[-120.33850644071173,52.929352932818055],[-120.33851807274095,52.92949007243391],[-120.33852895937379,52.929632805818976],[-120.33853954955781,52.92977776419312],[-120.33853624790578,52.9299147505733],[-120.33853242463584,52.93005565080103],[-120.33852882522315,52.930194871095395],[-120.33851036676096,52.9303333752255],[-120.33847719796552,52.930470046216115],[-120.338457623351,52.93061692311046],[-120.33843916447415,52.9307554271937],[-120.33843548967037,52.93089521037748],[-120.33843233646034,52.931031079692765],[-120.33841268640535,52.93117851948113],[-120.33837959166624,52.931314627421656],[-120.33833111567053,52.93145393302218],[-120.33829801926557,52.931590049852474],[-120.33827941057748,52.931729670795555],[-120.3383358439069,52.93186728778284],[-120.33842281618165,52.932000189273424],[-120.33852598724711,52.93212376306833],[-120.33866007038961,52.93223982435776],[-120.33879519508292,52.93234807564803],[-120.33894451098506,52.93246206476151],[-120.3391103998891,52.932563920155935],[-120.33927680995644,52.932661870389694],[-120.33944314577266,52.93276038333435],[-120.33961000389071,52.932854982180764],[-120.33977641624543,52.93295293169082],[-120.339942382873,52.93305423186588],[-120.34006109127156,52.93317348937934],[-120.34014903837787,52.93329913365978],[-120.34023601923883,52.933432033694295],[-120.34027700566926,52.93357340154751],[-120.34031799237192,52.933714769374276],[-120.34035957463819,52.93385166929986],[-120.340400561883,52.933993037073755],[-120.34044273997311,52.9341254690726],[-120.34049895964625,52.93426476474176],[-120.34057138073207,52.934394714611756],[-120.34064290816303,52.93453137517402],[-120.34071518132554,52.93466244190284],[-120.34078730492769,52.934794634481115],[-120.3408741420242,52.93492865089107],[-120.34096120228914,52.93506099624084],[-120.341049155952,52.935186639703964],[-120.3411678733981,52.93530589594579],[-120.34131668462295,52.93542379570235],[-120.34148363233977,52.93551782878686],[-120.34168364991287,52.935588165796574],[-120.34188530482723,52.93564621580041],[-120.34210241638694,52.935700513276785],[-120.34232004862855,52.935750905424435],[-120.34253656618662,52.93580966997588],[-120.34275301055403,52.93586898814432],[-120.34295422197108,52.93593038721822],[-120.34317126137041,52.935985245667226],[-120.34338785626613,52.93604344569147],[-120.34360541800505,52.93609438947007],[-120.34382327774469,52.936143098902136],[-120.3440414354517,52.93618957398616],[-120.34425966740459,52.93623549464652],[-120.3444784209546,52.93627750103044],[-120.34469851339477,52.93630945425459],[-120.34493391353094,52.936338771489304],[-120.34517057858196,52.936358589514],[-120.34539468684969,52.9363603831636],[-120.34563425115917,52.936358423744366],[-120.34585776469628,52.936364684406996],[-120.34609613956002,52.93637165983906],[-120.34633451450189,52.93637863478852],[-120.34655683889558,52.936393829919695],[-120.34679164612608,52.93642761133739],[-120.34699464990427,52.93647559978494],[-120.34721050807114,52.936539386571106],[-120.34740927699822,52.9366192036326],[-120.3475927381521,52.936701665215075],[-120.34777634984435,52.93678300059571],[-120.34794264771243,52.93688205530246],[-120.34812395649251,52.93698070772965],[-120.34829040456793,52.937078644956955],[-120.34845789376291,52.93716876310671],[-120.34865622092818,52.937251937897884],[-120.34885618478995,52.93732281666769],[-120.34905681745467,52.93738867316513],[-120.34925782165064,52.93745174134236],[-120.34947324355858,52.93751886593834],[-120.34967268937021,52.9375936571994],[-120.34985727410563,52.937667733402556],[-120.35003955586183,52.93775912694345],[-120.3502220618621,52.93784884026153],[-120.3503884444672,52.93794732849206],[-120.35055438094383,52.93804917635337],[-120.3507053825658,52.93815086338666],[-120.35087124690736,52.93825326481024],[-120.35102180433407,52.93835830236152],[-120.35117169459957,52.93846836165196],[-120.35130694575497,52.938576035209884],[-120.35145639069061,52.938689453996666],[-120.35157566756953,52.93880478559177],[-120.3517091383037,52.938925862417996],[-120.35181251326951,52.93904830706418],[-120.35193067749181,52.939172020088584],[-120.35203412855464,52.93929390156411],[-120.35215177483212,52.93942151930879],[-120.35223925008634,52.939551067972694],[-120.35232687559042,52.93967949064579],[-120.35238373560523,52.93981431224628],[-120.35244015158712,52.93995247581164],[-120.35249708718258,52.940086734377296],[-120.35253797221985,52.94022921436481],[-120.35257974868043,52.940364992447826],[-120.35262122835897,52.94050300446402],[-120.35266300535388,52.94063878249495],[-120.35268932561227,52.94077831405988],[-120.35271557118752,52.940918408564805],[-120.35274189179117,52.94105794009434],[-120.35279823572907,52.941196666340915],[-120.35288527222691,52.94132955638664],[-120.35295751977964,52.94146117801174],[-120.35306045894532,52.94158697231091],[-120.35314727369395,52.94172154206822],[-120.35325028890051,52.94184677322382],[-120.35336846507178,52.94197048459414],[-120.35347244742464,52.94208845070191],[-120.35357531597089,52.94221479852465],[-120.35366280129942,52.94234434591028],[-120.35378046089284,52.942471961790275],[-120.3538845192681,52.942589373476174],[-120.35400210536187,52.94271755207338],[-120.35410542248167,52.94284054844532],[-120.35422375238893,52.942963141902624],[-120.35434237995419,52.94308350127173],[-120.35452536330794,52.943169856688],[-120.35472536356131,52.94324073416953],[-120.35494141728734,52.943303380601975],[-120.35514431458289,52.94335247177672],[-120.35538035471619,52.943377300075134],[-120.35578064004869,52.943404396748555],[-120.35587993685252,52.943445137890315],[-120.35597886213624,52.94348867586975],[-120.35601521573577,52.94355280571281],[-120.35603640740815,52.94361846450748],[-120.35604154878683,52.943692336280584],[-120.35604676381249,52.94376565402729],[-120.35605324005215,52.94382948189414],[-120.35607324554428,52.943904067588285],[-120.35607905443314,52.943972917397694],[-120.35606955389535,52.94404440421879],[-120.35604593142827,52.94410959219582],[-120.35602164027964,52.944179811049715],[-120.35601228804762,52.94425018087586],[-120.35598799795082,52.944320390781],[-120.35596437520563,52.944385578730724],[-120.3559395647802,52.944459702522025],[-120.35591586706373,52.94452545341491],[-120.3559063661285,52.94459694019883],[-120.35589745897272,52.94466395905523],[-120.35588810642896,52.94473432885074],[-120.35586381585095,52.94480453870965],[-120.3558397472816,52.944873077557276],[-120.35580073939595,52.94494146539217],[-120.35576188103016,52.94500872729488],[-120.35572413538884,52.945067616296846],[-120.35565576992047,52.945131779205404],[-120.35560278777284,52.945192751099135],[-120.35553560963567,52.94524797809188],[-120.35549675057095,52.945315239894555],[-120.35545774172881,52.94538362759743],[-120.35543404394117,52.94544936942047],[-120.35540938044048,52.94552237607238],[-120.3553710399764,52.945585732861396],[-120.35534682170088,52.945655388555394],[-120.35532327087435,52.94572002230168],[-120.35529831008179,52.945795262877105],[-120.35528955019059,52.945861164659256],[-120.35527989943155,52.945933768313814],[-120.35527039711357,52.94600525498517],[-120.35524684716519,52.94606987976657],[-120.35522218298372,52.946142886351694],[-120.35518376684952,52.94620680601329],[-120.35514550026592,52.946269599745165],[-120.35509244232463,52.946331125388596],[-120.35503879030435,52.946397118920416],[-120.35498565721439,52.94645920746821],[-120.35493274729023,52.946519616054076],[-120.35486497224251,52.94657931053326],[-120.354782480501,52.946637173901934],[-120.3547294215766,52.94669869936813],[-120.35476592452532,52.94676171249351],[-120.35483289895245,52.94682057782573],[-120.35490061718636,52.94687384929113],[-120.35499999489139,52.946914037067735],[-120.35510004154594,52.94694919388897],[-120.35521599283796,52.94697724581335],[-120.35531656008041,52.94700848855682],[-120.35541883432394,52.94702689042668],[-120.35553493450851,52.947053825057054],[-120.35563720895544,52.94707222673681],[-120.3557533094019,52.94709916115115],[-120.35585499020223,52.947122030557445],[-120.35597213013918,52.947141145901035],[-120.35608874998975,52.947164175023964],[-120.35619161875697,52.94717810830312],[-120.3563087589995,52.94719722331128],[-120.35642827451211,52.947198466524966],[-120.35654838381004,52.9471952416974],[-120.35665244033798,52.94720023873379],[-120.35677195586906,52.94720148159868],[-120.35689028392216,52.94721166018583],[-120.35700742457088,52.9472307744986],[-120.35712456532484,52.94724988869466],[-120.35722639564926,52.94727163993407],[-120.35732755876136,52.947298413031376],[-120.35744291878704,52.947330930680785],[-120.35754356211609,52.94736161749317],[-120.35764420559028,52.94739230421888],[-120.35776023337986,52.947419799608],[-120.35786072873688,52.94745160312904],[-120.35796196628651,52.94747782165561],[-120.35806194310415,52.9475135299714],[-120.35817789788625,52.947541578969854],[-120.35827869064397,52.94757114816821],[-120.35837918674588,52.9476029512438],[-120.35847916302043,52.9476386681385],[-120.35857810189917,52.94768219488746],[-120.35866165558112,52.94772892185722],[-120.35874520944657,52.94777564876628],[-120.35882816994778,52.947826843544625],[-120.35891164940236,52.947874133292096],[-120.35901058927094,52.947917659671354],[-120.35909466262804,52.94796048135614],[-120.3591941216139,52.948000102607494],[-120.3592781965056,52.9480429152232],[-120.35937706236129,52.9480870042496],[-120.35947585364289,52.94813165615114],[-120.35956007744687,52.94817335157914],[-120.35964296492686,52.94822510873062],[-120.35971113651333,52.9482750264347],[-120.35980948349327,52.94832302900099],[-120.35989415308545,52.94836137323526],[-120.35999316867758,52.948404344752475],[-120.36007709562871,52.94844828270666],[-120.36017603802429,52.948491808091624],[-120.3602750542046,52.94853477936842],[-120.3603595751015,52.94857424918271],[-120.3604585180789,52.94861777432702],[-120.36054266904209,52.94866003199987],[-120.36064146287713,52.94870468290815],[-120.36072613397836,52.94874302653537],[-120.36082500296087,52.94878711432742],[-120.36088164795073,52.94881119032923],[-120.36096616995927,52.948850659701534],[-120.36106511419983,52.94889418432898],[-120.36116457720267,52.948933803893794],[-120.36124865473501,52.94897662401436],[-120.36134759955738,52.94902014840106],[-120.36144706311767,52.94905976772432],[-120.36153114118314,52.9491025876399],[-120.36163119837879,52.94913773886573],[-120.3617305889135,52.949177911971184],[-120.3618302015121,52.94921641398192],[-120.36193018447399,52.94925212791184],[-120.3620141898447,52.94929550150236],[-120.36211313619158,52.949339025237535],[-120.36219721547907,52.94938184467024],[-120.36229556900794,52.94942983619232],[-120.36237913020352,52.949476560474906],[-120.36246209839275,52.949527752640435],[-120.36253020063207,52.94957823163408],[-120.36262862854394,52.94962566884725],[-120.36271219048982,52.949672392887926],[-120.36279671590687,52.94971186092584],[-120.3628962571698,52.94975091604746],[-120.36299616873325,52.94978718308604],[-120.36311287437026,52.94980964225488],[-120.36321412076587,52.949835856228894],[-120.3633306783756,52.94985943216786],[-120.36343007101428,52.94989961275738],[-120.36349824972596,52.94994952821841],[-120.36356531597833,52.95000782550859],[-120.36361647819311,52.95007322869285],[-120.36363709176663,52.9501433538066],[-120.36365755832574,52.95021458696485],[-120.36369355798139,52.95028151110994],[-120.36371469131205,52.95034772227933],[-120.36372043871779,52.95041713440297],[-120.36374046074631,52.950491718495364],[-120.36374687600971,52.950556099703185],[-120.3637371638894,52.95062926680449],[-120.36372782299956,52.95069963696709],[-120.3637190016128,52.95076609320483],[-120.36369405270601,52.950841335328555],[-120.36367058641693,52.95090540757888],[-120.36364645224278,52.950974510728784],[-120.36362217090407,52.9510447219213],[-120.36361327455126,52.95111174109827],[-120.36360378507737,52.95118322821668],[-120.36360908759494,52.951255991269065],[-120.36361490968093,52.951324840398534],[-120.36362065824208,52.95139424354998],[-120.36362648036572,52.95146309267323],[-120.36363163468317,52.951536972698165],[-120.36365299154428,52.951601503881264],[-120.36365807238086,52.95167593792395],[-120.36366396814734,52.95174423300849],[-120.36368443552145,52.951815466092846],[-120.3637203618444,52.95188295312559],[-120.36375688255521,52.951945963265246],[-120.36379273556072,52.95201400429554],[-120.36379796496234,52.95208732132768],[-120.36384972311595,52.952148256384895],[-120.3639018514973,52.95220640342037],[-120.36396847705748,52.95226805135856],[-120.36403562233457,52.95232578533794],[-120.36410313786169,52.952380731279966],[-120.36418618732613,52.95243136811564],[-120.364269089914,52.95248311294139],[-120.3643360864935,52.95254197266396],[-120.36437260868179,52.95260498258745],[-120.36443960559637,52.952663842246864],[-120.36452280545437,52.952713352914294],[-120.36459024750613,52.952768861525264],[-120.36467329949384,52.952819489069554],[-120.36475627696178,52.952870679515],[-120.36483984761692,52.95291740195409],[-120.3649239367195,52.95296021934725],[-120.36502274632258,52.95300485752763],[-120.36512237085954,52.95304335666436],[-120.36520631225754,52.95308729083938],[-120.36530527068734,52.95313081179257],[-120.36537286265542,52.953185202954295],[-120.36547122855777,52.953233191713565],[-120.36557144695077,52.95326722251649],[-120.36567136905134,52.953303487208245],[-120.36575545975371,52.95334630399764],[-120.36583792136567,52.953401398652666],[-120.36589027692405,52.9534578648147],[-120.36594144686114,52.95352326685201],[-120.36599261695555,52.95358866886452],[-120.36602899309149,52.95365280415779],[-120.36607957060778,52.953722674077476],[-120.36611602169042,52.953786246377014],[-120.36615239936701,52.9538503726887],[-120.3662037183936,52.9539146576089],[-120.36623957697093,52.95398269781312],[-120.3662600485482,52.95405393928901],[-120.36628126244595,52.95411958688461],[-120.36628634818119,52.95419402070018],[-120.36630756100367,52.954259677221266],[-120.36632862686459,52.95432644178755],[-120.36634924696878,52.95439656624572],[-120.36638518088367,52.954464043424025],[-120.36640513478923,52.95453918984199],[-120.36642619975599,52.954605963315416],[-120.36644741418533,52.95467161085903],[-120.36646788644208,52.95474285226916],[-120.3664885081633,52.954812967749405],[-120.36649418718521,52.95488293357531],[-120.36651480783196,52.954953057980845],[-120.36652078333599,52.95502078982514],[-120.36651122436301,52.955092831033916],[-120.36651705167029,52.955161679859756],[-120.36650756617209,52.95523316703657],[-120.36649808064199,52.955304654209414],[-120.36648933614072,52.95537055644349],[-120.36646498228524,52.95544133099631],[-120.36644070186284,52.95551155151552],[-120.36643136437272,52.955581921684185],[-120.36640782607653,52.955646548321155],[-120.36638302727913,52.95572067380515],[-120.36634461926495,52.95578459673516],[-120.36632033963375,52.95585480827911],[-120.3662962816582,52.95592334880349],[-120.3662725935622,52.95598910132226],[-120.36624838721296,52.95605875881752],[-120.36623897576688,52.95612968297277],[-120.36620004898087,52.95619751082339],[-120.3661617149661,52.9562608707144],[-120.36612286145655,52.95632814450903],[-120.36608386078362,52.95639652633801],[-120.36606039502954,52.956460598848764],[-120.36603626158573,52.956529702255594],[-120.3660119810204,52.95659991370436],[-120.3659730534423,52.95666774146059],[-120.36596364021666,52.95673867450356],[-120.36593987762976,52.95680498094772],[-120.36591515205099,52.95687854332055],[-120.36590625809035,52.956945562433795],[-120.36588205059712,52.95701521981339],[-120.36585791654905,52.95708432316058],[-120.36584842951461,52.9571558102009],[-120.36585492368337,52.95721962807344],[-120.36589011684015,52.957292699147835],[-120.36592597776313,52.95736073930828],[-120.3659936519541,52.95741456701409],[-120.36607775229243,52.957457374530975],[-120.36617560947734,52.95750927649329],[-120.36625911609713,52.95755656075448],[-120.36634277231207,52.95760271903411],[-120.36642613107935,52.95765112015954],[-120.36651023232045,52.957693927361504],[-120.36661046205246,52.95772795718843],[-120.36672585745252,52.95776046553872],[-120.36682764314351,52.957782771298085],[-120.36694303885822,52.95781527943445],[-120.36704430666558,52.95784148998855],[-120.36714490827431,52.957872722424824],[-120.3672454353374,52.95790451773555],[-120.36734507335922,52.95794301487797],[-120.36744448867438,52.957983191882704],[-120.3675446463311,52.9580177749341],[-120.36764398850661,52.958058505793986],[-120.36772816528024,52.95810075809054],[-120.36779599111603,52.958153467750044],[-120.36786233526045,52.95821734723681],[-120.36791410669315,52.958278280281576],[-120.36801942819342,52.95838674245371],[-120.36813835946965,52.958505415783264],[-120.36825714441781,52.9586251970356],[-120.36837541083192,52.958748892081985],[-120.36849427062046,52.95886811905192],[-120.36861305639806,52.95898790885478],[-120.3687473062768,52.9591039339691],[-120.36888200019062,52.95921661689592],[-120.3690320836333,52.9593260980257],[-120.36918327960767,52.95942719708184],[-120.36934867876671,52.959534039099346],[-120.3694989126782,52.95964240262564],[-120.36963405472218,52.959751733692464],[-120.3697681616542,52.9598688745776],[-120.36991839781668,52.95997723754696],[-120.3700684119501,52.96008728026809],[-120.3702195384346,52.960188940909724],[-120.37038627630041,52.960285728525974],[-120.37053681175618,52.960391856702365],[-120.37070288519472,52.96049366583945],[-120.3708694772393,52.96059156974271],[-120.37103643973633,52.96068668539972],[-120.37120318141163,52.96078347183059],[-120.37136918332975,52.96088584296674],[-120.3715197980034,52.96099140688599],[-120.37167033878417,52.9610975335686],[-120.37183649114402,52.961198787037254],[-120.37198718153716,52.961303796312066],[-120.37213720570006,52.9614138363105],[-120.37228834184108,52.96151549421655],[-120.37245434922714,52.961617863778365],[-120.37262154199792,52.96171129717656],[-120.37280412493006,52.961801528208895],[-120.37298767046181,52.96188450298131],[-120.3731855685673,52.96197210316331],[-120.37338568948734,52.962042939204984],[-120.37360223570995,52.96210276267317],[-120.37383779847725,52.96213202165647],[-120.3740374089568,52.96209380564985],[-120.37421482851136,52.96199719050272],[-120.37437907833254,52.9618870225258],[-120.37456936797389,52.96180620231148],[-120.37478606713002,52.961751941723016],[-120.37501637883187,52.96170788224265],[-120.37524365656303,52.961686716214544],[-120.37546730751745,52.961692920569114],[-120.37570227732867,52.96172664380741],[-120.37592119298789,52.96176859111646],[-120.37615586761542,52.9618045474375],[-120.37637360032168,52.96185542986202],[-120.37659140694177,52.96190575785287],[-120.37680928865109,52.96195552247374],[-120.3770282811508,52.961996904754116],[-120.37724779131976,52.96203438160818],[-120.37746789366427,52.96206739006739],[-120.37770419859953,52.962091056338885],[-120.37793976412296,52.96212030712027],[-120.37816045916611,52.96214884629658],[-120.37838130242898,52.96217626806161],[-120.37861746055975,52.962201049497075],[-120.37885302732023,52.962230298450315],[-120.37907372354671,52.96225883591388],[-120.37929390182772,52.96229128692594],[-120.37952887797725,52.96232500251972],[-120.37974839204213,52.962362474707064],[-120.37996731496294,52.96240441448119],[-120.3801858692141,52.96244914187804],[-120.38040361003974,52.96250001683436],[-120.38062164711828,52.9625486573869],[-120.3808387975324,52.962603999535304],[-120.38105498686237,52.96266660625198],[-120.38125571555281,52.96273296089351],[-120.3814399463009,52.96281090041561],[-120.3816378673033,52.962898477413425],[-120.38182084345345,52.962985906371614],[-120.38200507633243,52.963063844998146],[-120.38218827628043,52.96314959340707],[-120.38238782525933,52.96322489104754],[-120.38258914993106,52.9632867753882],[-120.38280475406113,52.96335384687545],[-120.38300600545526,52.96341629346804],[-120.38322279448934,52.963474419230764],[-120.38342404706762,52.9635368651047],[-120.38363965378167,52.96360393505391],[-120.38384039092688,52.963670285253855],[-120.38405769903409,52.963724504428406],[-120.38427670650901,52.96376588212628],[-120.38449623219144,52.96380334543429],[-120.38473122081624,52.96383705062082],[-120.38495192932172,52.9638655770447],[-120.38518765740555,52.96389369629755],[-120.38540777553052,52.96392668988528],[-120.38564453842754,52.96394698918812],[-120.38586709537253,52.96396154686203],[-120.386105040499,52.96397290919483],[-120.3863281141705,52.96398356094535],[-120.38656724126274,52.96398598629588],[-120.38680577754764,52.96399287918767],[-120.38702885149932,52.96400352961119],[-120.3872673879574,52.96401042156836],[-120.38751998322054,52.96402417100515],[-120.38796506881243,52.96394031409972],[-120.38841103746438,52.96384976239192],[-120.38885685774483,52.96376031706439],[-120.38929038777822,52.96365061710931],[-120.38970904409207,52.96354020587659],[-120.39012946966581,52.96341638901405],[-120.39054871192843,52.96330150673659],[-120.39096979629274,52.96317266477178],[-120.391363645569,52.96302340420236],[-120.39172988876732,52.96285653123416],[-120.39211100031818,52.96269036648481],[-120.3924778279359,52.96251902310069],[-120.39283125692747,52.962335799121455],[-120.3931974884486,52.962168921521666],[-120.39360427264864,52.962034892751326],[-120.39403954299276,52.96191177100689],[-120.39445757986572,52.96180581085302],[-120.39490469340288,52.9617062893692],[-120.39534981333168,52.961621850406935],[-120.39578072360933,52.96153167872888],[-120.39621296031498,52.9614314433518],[-120.39660684820385,52.9612816110553],[-120.39698792659465,52.96111543037156],[-120.39738180882797,52.96096559545545],[-120.39781337208011,52.960870385239446],[-120.39827150510631,52.96080061109969],[-120.39872845873448,52.96073976242976],[-120.39960231719967,52.960581315648454],[-120.40006507464948,52.96058987172148],[-120.40052783228538,52.96059842597675],[-120.40099184177565,52.96059748815508],[-120.40145636742734,52.96059263444195],[-120.40192266057198,52.96057437456213],[-120.4023796065469,52.96051351172149],[-120.40280011259962,52.960388532389096],[-120.40319330434707,52.96024370907644],[-120.40358664185,52.96009775847233],[-120.4039946986996,52.95995364038421],[-120.40438876693345,52.95980210192102],[-120.4047826109386,52.959652242142106],[-120.40516217068424,52.95949720517582],[-120.40555615634251,52.95934622575021],[-120.40593644648726,52.95918560109349],[-120.40631680676115,52.95902442114444],[-120.40667007411584,52.95884170931401],[-120.40700964447106,52.95864936156235],[-120.4073906586441,52.958483146964966],[-120.40778396546918,52.95833718219091],[-120.40820443413298,52.95821218340333],[-120.40862357628814,52.958097236447166],[-120.40904330459406,52.95797781983736],[-120.40947657654085,52.95786916226001],[-120.40990999335487,52.9577593860421],[-120.41031682980022,52.957624182170576],[-120.41069642540121,52.95746856419455],[-120.41107726754689,52.95730345459536],[-120.41143057309735,52.957120174246164],[-120.4118249555787,52.95696582251119],[-120.41222994123432,52.95684457053434],[-120.41266378151947,52.956731432986],[-120.41311079794967,52.95663185103836],[-120.41354103328203,52.95654607336953],[-120.4140108770225,52.95650040245866],[-120.41447609122778,52.95648991216486],[-120.41493821938046,52.95650287801938],[-120.4154003478148,52.95651584206082],[-120.41586130117159,52.9565377406734],[-120.41633661090049,52.95656424900256],[-120.41679639009928,52.9565950803443],[-120.4172538198257,52.956643782686335],[-120.41771066311178,52.95669695145159],[-120.41818237712317,52.956750824528875],[-120.41863863532735,52.95680845789475],[-120.41910858972066,52.956875731874824],[-120.41954719118297,52.95695387973284],[-120.41998293080769,52.95705381295284],[-120.42038746609934,52.957163494543124],[-120.42070605643575,52.957357902107226],[-120.42097402277074,52.95759598186836],[-120.42124206490926,52.95783350692678],[-120.42154249221166,52.95805233569154],[-120.42184350968,52.95826669544379],[-120.42214386916719,52.95848608561288],[-120.42244540696255,52.95869652961215],[-120.4227309021724,52.958915212680765],[-120.42303156546966,52.959132357454195],[-120.42331714057123,52.95935047604865],[-120.42361758925999,52.95956929932027],[-120.42393445174481,52.95977710253612],[-120.42425183140232,52.959980990708715],[-120.42455339022123,52.96019142912166],[-120.42483810004944,52.96041624622689],[-120.42502947913013,52.960668108926065],[-120.4252040084212,52.96093435081472],[-120.42531773585091,52.961207816263304],[-120.42543161025503,52.96148017343667],[-120.42556131159945,52.96174597027119],[-120.42567460345239,52.96202278641037],[-120.42578833564382,52.9622962601613],[-120.42591855566035,52.962558142305916],[-120.4260930255207,52.962824936633574],[-120.42629988147144,52.96307303375918],[-120.42655318858873,52.96330928682742],[-120.42683727048923,52.96353912096437],[-120.42709058336663,52.96377537281066],[-120.42728213754289,52.96402611428229],[-120.42742724442354,52.96428869941764],[-120.42754106784827,52.964561608105654],[-120.42765423227202,52.96483954786424],[-120.42776813253208,52.96511189324544],[-120.4278818864428,52.965385364465405],[-120.42799622952028,52.96565435836595],[-120.42812485930499,52.965928534102815],[-120.42826983125067,52.9661922349559],[-120.42847561601606,52.966448710151845],[-120.42869789047134,52.96669359313731],[-120.42895123246959,52.96692984053358],[-120.42918919133795,52.96716928789457],[-120.42944195366799,52.96740999346086],[-120.42968006458058,52.967648322703795],[-120.42991759180171,52.96789111966303],[-120.43015512173466,52.96813391610783],[-120.43040789409099,52.968374628398436],[-120.43066191576467,52.968605840647676],[-120.43094656763911,52.96883175890631],[-120.43126580717771,52.969022222366526],[-120.43166462345938,52.9691765467841],[-120.43206468762675,52.969321379298954],[-120.43246416840466,52.96947067868297],[-120.43286467761693,52.96961215727622],[-120.4332657755276,52.96974916625286],[-120.4336822626124,52.96988297273007],[-120.4340993394396,52.970012300541306],[-120.43451758944681,52.97013269930565],[-120.4349186975911,52.97026970261273],[-120.43528529974776,52.97044159678368],[-120.43557035400887,52.970664715433315],[-120.43585511954363,52.97089005855352],[-120.43615681194953,52.97110047481329],[-120.43645748350212,52.971318700783485],[-120.43675808434314,52.97153748895818],[-120.43702842494851,52.97175878313535],[-120.43734376065328,52.971979390520325],[-120.43759791535102,52.97221002431346],[-120.43768236722921,52.97247928051288],[-120.4376748581348,52.97276498509819],[-120.43766749651492,52.9730495636334],[-120.43766013362527,52.97333415105598],[-120.43765394306051,52.97360979298355],[-120.43763163146446,52.973894230751746],[-120.43761012423712,52.974172529087575],[-120.43757330257108,52.97445346599723],[-120.43752167684747,52.97473314514983],[-120.4374701230672,52.97501227017005],[-120.43740427907164,52.97528621428603],[-120.43733740810576,52.97556798669049],[-120.43727126954637,52.97584416476427],[-120.43720432419404,52.97612649106141],[-120.43712315953086,52.976403091281234],[-120.43704214141641,52.97667856540193],[-120.43696119488463,52.97695348535939],[-120.43687951510975,52.97723399051733],[-120.4367984200269,52.97751002733157],[-120.436673204131,52.97778004758726],[-120.43647550502718,52.97803201814993],[-120.4362490001551,52.9782753243427],[-120.4359935426918,52.978511083061406],[-120.4357232786529,52.978745574335946],[-120.43548196185574,52.978987612091444],[-120.43529890749275,52.97924196444241],[-120.43517367697454,52.97951198282459],[-120.43506259147628,52.97978828132009],[-120.43493735784843,52.98005829936282],[-120.43478317278561,52.98032076100005],[-120.43462854628939,52.98058657356013],[-120.43445969948294,52.980846650641254],[-120.43426131307137,52.981103648240804],[-120.4340481923364,52.98135882434257],[-120.43384994758189,52.981614704117206],[-120.43372528702648,52.98188025236305],[-120.43365882210443,52.98215866147064],[-120.43365201697462,52.9824387788769],[-120.43370487516006,52.982720586718564],[-120.43378859055954,52.982995429273736],[-120.43391782362647,52.98326568167879],[-120.43406237715594,52.98353328681055],[-120.43422225141028,52.98379824461364],[-120.43439737279584,52.98406111802179],[-120.43457249751911,52.984323982192045],[-120.43474776975633,52.9845857379445],[-120.43487759982682,52.98485152083007],[-120.4349915999688,52.985123855955],[-120.43507547493333,52.98539758014884],[-120.43512863808928,52.98567716168503],[-120.43518136357464,52.98596008537119],[-120.43521928225152,52.986241751007505],[-120.43524246766546,52.986521595614704],[-120.43525099219401,52.986799065144496],[-120.43524346540308,52.98708475818773],[-120.4352520638956,52.987361664630285],[-120.43524460968527,52.98764680352028],[-120.4352677960322,52.98792664788767],[-120.43530564319049,52.98820887615923],[-120.43546620268093,52.9884688003383],[-120.43570387927612,52.98871158260191],[-120.4359727859064,52.98894460149249],[-120.43625811434036,52.98916659895458],[-120.4365757725099,52.989370450324266],[-120.4369254675122,52.98955838945117],[-120.43729151059227,52.98973586959123],[-120.43764165115374,52.98992045539575],[-120.43791174770607,52.99014453327435],[-120.43816520802257,52.99038131159486],[-120.43843421134311,52.99061377058026],[-120.43870424384494,52.990838400608965],[-120.43902192623713,52.991042245183955],[-120.43937157200983,52.99123073986237],[-120.43973705405057,52.99141268044763],[-120.44010488285544,52.991576738068204],[-120.44050401543754,52.99173047642298],[-120.44088936595449,52.99187513676192],[-120.44128894329874,52.99202552126574],[-120.44168984074958,52.99216585089519],[-120.44209066825559,52.99230673320979],[-120.44250645347867,52.992447763089324],[-120.44292487546086,52.99256868445482],[-120.44334505569532,52.99267619963044],[-120.44378107110734,52.99277715972873],[-120.44423387431307,52.99286429028717],[-120.44467186924835,52.99295016231597],[-120.44510957339833,52.993038266833125],[-120.4455634047993,52.993117581788795],[-120.44601906665541,52.99318292726313],[-120.44647582731466,52.99323988854425],[-120.44693193057597,52.99330187930123],[-120.44763804618199,52.99339871277767],[-120.442665498624,53.0020927309927],[-120.44335477979303,53.0058630081444],[-120.44450883714619,53.00803053083985],[-120.45580101088828,53.0111446893542],[-120.45725638322341,53.0159410785913],[-120.4574931690191,53.024215381538006],[-120.45414583773189,53.03376459285127],[-120.4498142660667,53.04074414761551],[-120.4433220919037,53.049438524586584],[-120.43388712322522,53.058821434172266],[-120.4223472283608,53.065246516184544],[-120.4157558832078,53.07325501514711],[-120.41570117462646,53.084020959184485],[-120.41606537389583,53.09741364493472],[-120.41732438184032,53.10300410743055],[-120.41820062823379,53.107514863102146],[-120.42097831162921,53.110362766345276],[-120.43705730057367,53.11689879898301],[-120.44514694358502,53.11728268996732],[-120.45302621516699,53.11720994471486],[-120.45769217928364,53.11873623590527],[-120.45732472396423,53.12016484015962],[-120.45535883650263,53.12668196841566],[-120.45349010415396,53.131766766785105],[-120.45446761292611,53.13519552032072],[-120.45676092398368,53.13901869664365],[-120.46079232050036,53.145062598911416],[-120.4656898441216,53.15161720062951],[-120.4696109163248,53.15702949324633],[-120.4707696844726,53.158857707131325],[-120.47352886252554,53.15937004755062],[-120.48999977579764,53.1626376588545],[-120.5047564377638,53.16499996175401],[-120.50932188827322,53.165385845430954],[-120.51254234640315,53.162005691632714],[-120.51603133712356,53.15794231926725],[-120.52056424740815,53.15347329470969],[-120.52308937533648,53.149413921364484],[-120.5263889647906,53.14540445747242],[-120.53249881320889,53.14824066542282],[-120.53832281067756,53.15096890281284],[-120.53995376204371,53.15381659131023],[-120.54210561217452,53.16101190365096],[-120.54057228963772,53.17066812577],[-120.5404908910253,53.174206372181544],[-120.54233729645235,53.178886015721396],[-120.54581971521432,53.18487607598207],[-120.55124925510161,53.1867429247635],[-120.55918042669143,53.189861285607385],[-120.56822652397976,53.190519407062624],[-120.57421707751148,53.19072537043344],[-120.58076621161376,53.18927506047958],[-120.58781471736822,53.18897093596365],[-120.59221871888215,53.19169732574339],[-120.60283747121177,53.197826591540974],[-120.61087412701715,53.20334328536866],[-120.61806918834202,53.20863113233548],[-120.62638761696813,53.212202058672986],[-120.634995424694,53.21599330946712],[-120.64351620167582,53.22024452196074],[-120.65202165869977,53.22415446806657],[-120.65977223739611,53.22737968190713],[-120.66522876876229,53.2295869352177],[-120.67060973842965,53.23442240109647],[-120.67178227574063,53.23682113360805],[-120.67344092813225,53.239664168266145],[-120.67691985697525,53.24491022934825],[-120.68449874942222,53.25001893526254],[-120.69064422341509,53.253366314887366],[-120.69313850553216,53.25592847386119],[-120.69995894724619,53.2596706672675],[-120.7068552571565,53.26329783248027],[-120.71214100052282,53.26716105062752],[-120.71560547733729,53.26897219401078],[-120.72311546576704,53.26808126616526],[-120.73101666488385,53.26610686597198],[-120.7352832949626,53.264999549237004],[-120.73735292253714,53.26242109545427],[-120.74226759509685,53.25937464447085],[-120.74548926486598,53.25769934170088],[-120.75280589297229,53.255434226582814],[-120.75792937706544,53.25432649470572],[-120.76070219619297,53.25431551294853],[-120.7683355075092,53.25519108481407],[-120.77875830435404,53.25811297422093],[-120.78881494452231,53.261204818946105],[-120.79466568672892,53.264207607637545],[-120.80039748336753,53.27172301636122],[-120.80439492448805,53.278042582436164],[-120.80714224716293,53.28448689914986],[-120.8153412787644,53.28375397397772],[-120.82848020935961,53.28243298093601],[-120.83344461272418,53.28275285341829],[-120.84282153507144,53.28470131644295],[-120.84666077486872,53.28633646589936],[-120.85400239553161,53.28595450884366],[-120.86087339371512,53.28596956031592],[-120.867398602657,53.28845168058016],[-120.87432222143997,53.2928686139334],[-120.87811382735673,53.29701837511626],[-120.87995593572536,53.299351192733525],[-120.89981741288653,53.299924148900494],[-120.90530090315828,53.30257707137162],[-120.91059615713904,53.30591971210804],[-120.91414836555538,53.30709535545066],[-120.91880046304182,53.30615527683244],[-120.92268940340604,53.30441464725941],[-120.93095575336103,53.30225290545569],[-120.93627376806562,53.30090709389989],[-120.94110745141248,53.29882099900886],[-120.93944865390824,53.29694300345075],[-120.93463041244097,53.29388714861078],[-120.93172693351782,53.2913335772234],[-120.93072482104813,53.28813733456719],[-120.93070933737175,53.28751441782314],[-120.93278661223034,53.285781403881025],[-120.93561931879125,53.28428169278531],[-120.9391320952084,53.28288958612274],[-120.9457762628533,53.28101770196503],[-120.95032472993842,53.2799053208636],[-120.95083729025951,53.27902299487773],[-120.95941682502863,53.277084575114635],[-120.96208556612068,53.27719525352489],[-120.96498800482287,53.27812447411363],[-120.96768618886082,53.27836768454969],[-120.97627568443474,53.276589675916],[-120.97624261613947,53.27762551482514],[-120.97448776635255,53.282612619321746],[-120.97940428442612,53.28776452736009],[-120.9771296524557,53.2910426649518],[-120.97676190820115,53.292736515486936],[-120.97629803638985,53.29776428375855],[-120.97598045906217,53.30282856506842],[-120.97691071689596,53.304509450096724],[-120.98324499463861,53.30702385180509],[-120.98513421323024,53.30799888835838],[-120.98572170092699,53.31370226242645],[-120.9871318264602,53.31477772665343],[-120.99124393214159,53.315198521601594],[-120.99274272954122,53.31654439915016],[-120.99390177705959,53.319226465070365],[-120.99536702070634,53.31996832742897],[-120.99659844279562,53.32026679667177],[-120.99813385088812,53.3216882570749],[-120.99812893490899,53.323380006277034],[-121.00010388225371,53.32491205556288],[-121.0048010087032,53.32613192098167],[-121.01313007390779,53.32763737766385],[-121.01303879763546,53.33007905869866],[-121.01245687935894,53.33039097052558],[-121.01224927121449,53.33051981809078],[-121.01207894541925,53.33066821083009],[-121.01191223978121,53.33081786963958],[-121.01174378796556,53.330966340748994],[-121.01156628471358,53.33111161894919],[-121.01137811848183,53.33125139028056],[-121.01118814031057,53.331390528130555],[-121.01099460625385,53.33152783608497],[-121.01080281593306,53.33166633118331],[-121.01063254717859,53.3318141585353],[-121.01047843581097,53.33196884650974],[-121.01035529616173,53.33213268921219],[-121.01031171530317,53.3323094277756],[-121.01032623679178,53.33248917537435],[-121.0103672946216,53.332667783539115],[-121.01042369506862,53.33284423351885],[-121.01048391461333,53.33302028695764],[-121.01054607789482,53.33319585601568],[-121.0106312892816,53.33336790167027],[-121.01073767255215,53.33353634498173],[-121.01086549286721,53.333698950859194],[-121.01099519066565,53.33386163547275],[-121.0110707577796,53.33403552135509],[-121.01103468400554,53.33421257555791],[-121.01092615472245,53.33438040230934],[-121.01081581375344,53.33454759576924],[-121.01071465534181,53.3347168643152],[-121.01058601143635,53.33487935284046],[-121.01041579465644,53.33502662535609],[-121.0102508756601,53.33517692363322],[-121.01012960231742,53.33534084473756],[-121.01003762387958,53.335512178945955],[-121.0099548950791,53.33568502510075],[-121.00987585198838,53.33585859221988],[-121.00980056249026,53.33603230814278],[-121.00972889200511,53.33620730827161],[-121.00966841484373,53.33638333607641],[-121.00964158373698,53.336561901701685],[-121.00960905680923,53.336740784866386],[-121.00952826619724,53.336913155239706],[-121.00941603641701,53.33708026827879],[-121.00930749330708,53.33724809331172],[-121.0092545852343,53.337423882181184],[-121.0092464525872,53.33760379105237],[-121.00922705879874,53.33778323535943],[-121.00917395146094,53.337960695945924],[-121.00906366096538,53.3381273242538],[-121.00887907490417,53.338268375426054],[-121.0086364014109,53.33837440502262],[-121.00835237523592,53.33843153434459],[-121.00807137315746,53.33849496269702],[-121.00784975856985,53.3386142304977],[-121.00767576373065,53.338761340942234],[-121.00751082035357,53.33891163513751],[-121.00735311753421,53.3390644798912],[-121.00720446629101,53.33922050846314],[-121.0070503152664,53.339375191420196],[-121.00689442001992,53.339528668764],[-121.00677493102664,53.339693228265865],[-121.00672569706926,53.33986972798656],[-121.00668008363068,53.34004750309039],[-121.00659545538946,53.340220267560994],[-121.0064924564701,53.340388889853536],[-121.00637289663479,53.34055401210522],[-121.00622973427812,53.34071139372994],[-121.00606658807534,53.3408623279615],[-121.00590344176517,53.341013253017756],[-121.00574746944089,53.34116729195622],[-121.00559705958877,53.34132213081768],[-121.0054465170574,53.341478078044055],[-121.00531783114795,53.34164056925957],[-121.00525739462122,53.341816031119436],[-121.00518958178023,53.341990068453846],[-121.00503735694245,53.34214426434219],[-121.00486514878104,53.342292003678104],[-121.00470018156608,53.342442293709304],[-121.00452803786743,53.34258946931204],[-121.00432732118357,53.34272309717109],[-121.00410695308716,53.342847469978494],[-121.00395693031298,53.34299894518092],[-121.00389816351878,53.34317616595568],[-121.00390689799815,53.34335679387124],[-121.00400583881954,53.343524363150934],[-121.00416890748599,53.34367610480839],[-121.00435401606282,53.34381698580884],[-121.00456310948745,53.343946512877146],[-121.00478446026693,53.34406813665989],[-121.00500949935751,53.34419048120791],[-121.00514704681207,53.34435068904121],[-121.00504220105799,53.34450295241778],[-121.00478835289364,53.34460738244166],[-121.00452536331812,53.34469346685663],[-121.00425197377683,53.3447718084829],[-121.0040360789872,53.34489018827614],[-121.0038835740791,53.345046617472065],[-121.00373126654692,53.345201374675376],[-121.00356809507842,53.345352296201035],[-121.00341203127992,53.34550689496443],[-121.00334252745844,53.34567917119568],[-121.00338557826294,53.34585674210088],[-121.00348807734694,53.34602615033965],[-121.00360806716299,53.34619124521331],[-121.00372611506171,53.346356815232404],[-121.00382486263508,53.34652606513642],[-121.00390430967651,53.34669899497242],[-121.00397404085508,53.34687431904099],[-121.00404383842806,53.34704908877225],[-121.00413092835956,53.34722121689391],[-121.00424321725083,53.347387666832965],[-121.00434578931659,53.34755651992225],[-121.00440412845249,53.347732487217954],[-121.00443190251656,53.34791166958384],[-121.00445210253167,53.34809109025004],[-121.00446472840142,53.348270749220475],[-121.00447742018955,53.34844985389236],[-121.00449567664143,53.34862975873513],[-121.00451594414447,53.34880861610553],[-121.0045361449473,53.34898803667771],[-121.00455252471619,53.34916786247536],[-121.00455382141512,53.3493476106326],[-121.00455511812511,53.34952735877376],[-121.00457531943924,53.34970677927525],[-121.00460698367559,53.34988499295833],[-121.00464810002515,53.35006304726929],[-121.00469297115193,53.35024125952197],[-121.0047436728193,53.3504180369148],[-121.0048038948088,53.350594082749396],[-121.00487557922294,53.35076893065391],[-121.00495309445847,53.35094234366298],[-121.00501713838901,53.35111799302643],[-121.00504686142253,53.351296690707805],[-121.00505191483668,53.35147659663016],[-121.00504945917957,53.35165618661611],[-121.00505632412616,53.35183672576685],[-121.00514570341136,53.35200557921371],[-121.00526967089223,53.352169149156495],[-121.00536642830403,53.352339435816795],[-121.005457421876,53.35251060296439],[-121.00556188860187,53.35267953354951],[-121.00566441303047,53.35284893933897],[-121.00568307551319,53.35302548216411],[-121.00565226269411,53.353205568192486],[-121.00566858306262,53.35338594774106],[-121.00580890218548,53.353538973763335],[-121.00599768271431,53.35368111801228],[-121.00608894706203,53.35385004956111],[-121.00611478913827,53.354029706307585],[-121.00611421525659,53.35420937505171],[-121.00607602646444,53.3543880277307],[-121.00600994258198,53.35456325197165],[-121.00593829169854,53.354737684982794],[-121.00586094108239,53.35491244425456],[-121.00570175984261,53.355061290915586],[-121.00549206518834,53.35519060934601],[-121.00528585876528,53.3553223203496],[-121.00511017391082,53.35546711184387],[-121.00499237751602,53.3556328647301],[-121.00494311746759,53.35580936231601],[-121.0049292635712,53.35598959552305],[-121.00488362510335,53.356167368515244],[-121.00477675955972,53.356336384300995],[-121.00457476421633,53.35646434519197],[-121.00432305157857,53.35656606331613],[-121.0041299114523,53.356698879443584],[-121.00399366394576,53.35686105202124],[-121.00379689912876,53.356992592098486],[-121.00359074442399,53.35712374576742],[-121.00349707979377,53.35729275906486],[-121.00350782681387,53.3574723383142],[-121.00352809331514,53.357651204010246],[-121.0035180547619,53.357831031678714],[-121.00350043898726,53.358011106531215],[-121.00345465956056,53.35818999629342],[-121.00327579919798,53.35832959366246],[-121.00315622366826,53.35847842404984],[-121.0032333477667,53.358655190004185],[-121.00335920498281,53.358818840409384],[-121.00351448878509,53.35897305505649],[-121.00369168789634,53.35911752676771],[-121.00386674514127,53.35926415419738],[-121.00401425543113,53.35942029609497],[-121.00414407284732,53.359582422886774],[-121.00428562108944,53.3597411167101],[-121.00444694171298,53.35989222349791],[-121.0046180509599,53.36004036356096],[-121.0047793080964,53.36019202415363],[-121.00493051452486,53.36034887708949],[-121.00501971177307,53.36051941063513],[-121.00493019881615,53.3606852302501],[-121.00473624543066,53.36082475206783],[-121.0045318867612,53.3609565403826],[-121.00431866923344,53.36108346340151],[-121.00410551625657,53.361209831752824],[-121.00389753106917,53.36134034346877],[-121.00373818586291,53.36149030452406],[-121.00366805911906,53.36166761277675],[-121.0035380248592,53.361824988246745],[-121.00326240772297,53.3618734718681],[-121.00295954312683,53.36184949726811],[-121.00266038631423,53.36184196706488],[-121.0023606043451,53.36187146246541],[-121.00210635954917,53.3619624058748],[-121.00195573034398,53.36211834708685],[-121.00198228969515,53.3622918622631],[-121.00211754168721,53.36245590882884],[-121.00221605495788,53.362627393705054],[-121.00216582685607,53.36279598806483],[-121.0019768239504,53.36294132977165],[-121.00184302387656,53.3630985452336],[-121.00183686415076,53.36327742178662],[-121.00189119338292,53.36345546586917],[-121.00198802892724,53.36362520005384],[-121.00220178449521,53.363763907017415],[-121.00221293567682,53.363892407359266],[-121.00197468647148,53.36402333185355],[-121.00173178031116,53.3641299092183],[-121.00148564850477,53.36423185804898],[-121.00125488915421,53.364347364385345],[-121.00099176912912,53.364433440144545],[-121.00072858214365,53.36452006959284],[-121.00046707319395,53.36460844927036],[-120.99998984960197,53.3647809715493],[-120.99969757406552,53.36482650032776],[-120.9994392842319,53.36491951475174],[-120.99932197058226,53.36508079129929],[-120.99921874889189,53.36525052270184],[-120.99905554950915,53.36540088226567],[-120.99886718861379,53.365540631411626],[-120.99868587238572,53.365684612241836],[-120.99850113083136,53.365825645374755],[-120.99831269921509,53.36596595682649],[-120.99816022966259,53.36612125956637],[-120.9980792699366,53.36629417392115],[-120.9979235082154,53.36644540248544],[-120.99776191167471,53.36659807424813],[-120.99771508405698,53.36676962276975],[-120.99785274342139,53.36692928298047],[-120.99802975774527,53.3670754343175],[-120.99818129548993,53.36722950605943],[-120.99828382564898,53.367398916995676],[-120.99842738895725,53.367556578781205],[-120.99856887653924,53.36771583305713],[-120.99869681950922,53.36787789499011],[-120.99881101998878,53.36804442744101],[-120.99891167665896,53.36821375869052],[-120.99905323419243,53.3683724580664],[-120.99917327134365,53.36853754665368],[-120.99924684094933,53.36871247547589],[-120.99918828424121,53.36888745670073],[-120.99906311364968,53.369051214573304],[-120.99889802093713,53.36920149456658],[-120.99879854355345,53.369371383414105],[-120.99871751428151,53.36954485219964],[-120.99864023942204,53.36971848801635],[-120.9985944936157,53.369896811665576],[-120.99848635340484,53.3700601630967],[-120.99834480647786,53.3702187294975],[-120.99819970113107,53.370375465787816],[-120.99807452227435,53.370539222500824],[-120.99798241794255,53.37071054439489],[-120.99792372027659,53.370886642308534],[-120.9977514366533,53.37103380603202],[-120.9975120357041,53.37114221329571],[-120.9972245500706,53.371194678042414],[-120.99701481501755,53.37132342622818],[-120.99686775682244,53.37148063597374],[-120.9967298883232,53.37163992177013],[-120.99659926549221,53.371801758806505],[-120.99650903056715,53.371973158566654],[-120.99647641945717,53.37215204394239],[-120.99649471902515,53.37233138470092],[-120.99657995218956,53.3725034370921],[-120.99671367067663,53.372664611696344],[-120.99686898012885,53.37281884290945],[-120.99699297672511,53.372982419803066],[-120.99707814729561,53.37315502605283],[-120.9971116746041,53.37333332771759],[-120.99715466039582,53.37351146166687],[-120.99726310236241,53.37367887531248],[-120.99738120235969,53.37384444938665],[-120.99745873027071,53.37401785637005],[-120.99748273558238,53.37419687983966],[-120.99746891072002,53.3743765473379],[-120.99744569325098,53.37455582826283],[-120.99749639483355,53.37473259768908],[-120.99754890813584,53.374910009385914],[-120.99759196332901,53.37508758876997],[-120.99761214723974,53.37526700819599],[-120.99761153679681,53.375446675022125],[-120.997569603023,53.3756246017006],[-120.99749781540675,53.37579958208986],[-120.99741871270457,53.37597257427377],[-120.99729170283221,53.37613568740573],[-120.9971428164562,53.37629226375019],[-120.99704338119614,53.37646159627123],[-120.99697910347459,53.376636892697796],[-120.99692408310477,53.376813711029904],[-120.99687463149517,53.37699132091494],[-120.99682148968785,53.3771682093373],[-120.99676089975907,53.37734422701217],[-120.99665407979994,53.377512125203445],[-120.996539879348,53.37767858041448],[-120.99652611528163,53.377857693229],[-120.99653495832231,53.378037201121266],[-120.99653622169028,53.37821694681232],[-120.99653366219775,53.378397088529304],[-120.996534925571,53.378576834188806],[-120.9965380674257,53.37875665894598],[-120.99653557387117,53.378936246347116],[-120.99647122323076,53.37911210549582],[-120.99636627612615,53.37928008239839],[-120.99625206974228,53.379446537189736],[-120.99614893346923,53.3796151472591],[-120.99607719911762,53.379789572182574],[-120.99598687791612,53.379961534085865],[-120.99591514230325,53.38013595888221],[-120.99589567318608,53.380315388307146],[-120.99589317679971,53.380494975558456],[-120.99589068039205,53.38067456279394],[-120.9958787241095,53.380854317602775],[-120.99586864735997,53.38103414257874],[-120.99586990797377,53.38121388801434],[-120.99589008748372,53.38139330719626],[-120.99596567751881,53.381567198597445],[-120.99609164094201,53.38173030058694],[-120.99621955098671,53.381892918341165],[-120.99635329791036,53.38205409261195],[-120.99650079420441,53.38221079635075],[-120.99667404378086,53.382357353592795],[-120.9968572197251,53.3824998362135],[-120.9970244368306,53.382649508025025],[-120.99716804741767,53.38280717015529],[-120.99732936490717,53.38295883915634],[-120.99752649420905,53.38309516955808],[-120.99776458845896,53.383204590349095],[-120.99804128788068,53.38327519620171],[-120.9983278291446,53.38332656638468],[-120.99861839436602,53.38337585908433],[-120.9989143304364,53.38342762325427],[-120.99917639354057,53.38336734287557],[-120.99946101882468,53.38332372553741],[-120.99999511376316,53.38335743323024],[-121.00028946838724,53.38337487819447],[-121.00058136520329,53.3834129913167],[-121.0008579378279,53.383484708092205],[-121.00111072248843,53.38358182000493],[-121.00135928531648,53.383682688949925],[-121.00164422043709,53.38373173714211],[-121.0019465400757,53.383729854737375],[-121.00224731364865,53.38372509437075],[-121.00254896898642,53.38372879783771],[-121.00284708467453,53.38374639450961],[-121.00314119769367,53.383781782187675],[-121.00343772014173,53.38381278715585],[-121.00372915852383,53.383854799265436],[-121.0039948838898,53.383938414977905],[-121.00423695689116,53.38404630007289],[-121.0044544944768,53.384169999052965],[-121.00466787750227,53.384296892106725],[-121.0048793830747,53.38442370578867],[-121.00510081476762,53.384546444044815],[-121.00534738238623,53.384648334178465],[-121.0056024614431,53.38474216301987],[-121.00585312031276,53.38484142079715],[-121.00611008043057,53.38493532750796],[-121.00636262041591,53.38503466316494],[-121.00655326862486,53.38516228598244],[-121.00655826669863,53.385342743124134],[-121.00649401397028,53.38551805287048],[-121.00640378992959,53.385689458986754],[-121.0063283300989,53.385863731657444],[-121.00630708973954,53.38604252905341],[-121.00623189438652,53.386214566666],[-121.00613240639957,53.3863844602344],[-121.00602929269884,53.386553078296146],[-121.00594282223605,53.38672464190334],[-121.0058360820087,53.38689198435766],[-121.00576806725384,53.38706712670778],[-121.00568152775323,53.387239253293465],[-121.00560988682223,53.387413120103865],[-121.00554368224611,53.38758890446223],[-121.0053775236468,53.387731853954136],[-121.00518002080571,53.38786842746941],[-121.0050040680528,53.38801432504123],[-121.00487349209416,53.38817561559838],[-121.00473553334531,53.38833546364494],[-121.00466945647244,53.3885101299578],[-121.00464075788875,53.38868805661765],[-121.00467043997631,53.388867305372905],[-121.00477311480876,53.3890361546576],[-121.00496030484983,53.389177101619076],[-121.00518390632156,53.38929768345682],[-121.00544250553357,53.389393905343496],[-121.00560533867473,53.389533270351805],[-121.00563301264378,53.389713566244424],[-121.00571630657586,53.38988664914454],[-121.0058876080487,53.390034230939435],[-121.0060548871808,53.39018388951414],[-121.0062442970099,53.390322124107975],[-121.00646992001344,53.39044166494144],[-121.00669970060102,53.390558010800476],[-121.006893071935,53.39069472154957],[-121.00706022451766,53.39084549614536],[-121.0071651910336,53.39101106970605],[-121.00721199550293,53.39118935637808],[-121.00727034017775,53.391365881714194],[-121.00732103635302,53.391543208717856],[-121.0073641508373,53.39172077418796],[-121.00739391249873,53.39189946772974],[-121.00740844208413,53.39207921041172],[-121.00741351048532,53.39225911264146],[-121.00741864583249,53.392438451644686],[-121.00743693392879,53.39261835215843],[-121.00744965173116,53.39279745262145],[-121.00745666642365,53.392976870516975],[-121.00745428444557,53.39315590263411],[-121.0074349243307,53.39333477854011],[-121.00747421592729,53.39351274914501],[-121.00753639014007,53.393688868822196],[-121.00760044297675,53.39386507633011],[-121.00774030724652,53.394023121237936],[-121.00786440853966,53.394186685113745],[-121.0080119901897,53.39434337366206],[-121.00823797105437,53.3944601216791],[-121.00852875744407,53.394508272435615],[-121.00879743467321,53.39458357033577],[-121.00901477469424,53.394709495312306],[-121.00920206998521,53.39484988094491],[-121.00939533646137,53.39498770482741],[-121.00958652540508,53.395127130173655],[-121.00976778869402,53.395270630614476],[-121.00992926515035,53.39542172734695],[-121.01006699872242,53.395581925465855],[-121.01018916752606,53.395745971106905],[-121.01030744714166,53.39591096736184],[-121.0104178783872,53.39607844608887],[-121.01052059386161,53.396247289826256],[-121.01061170330186,53.396418449355785],[-121.01069315167864,53.396591449321186],[-121.01076111447797,53.396766686236994],[-121.01081183186274,53.396944011291026],[-121.01089387854513,53.39711198687299],[-121.01105939114001,53.397260995805006],[-121.01115225163653,53.397433351203404],[-121.01116699870136,53.39761141225169],[-121.01115510284308,53.397791167115514],[-121.01116965158396,53.397970899886786],[-121.01115587627184,53.39815057583784],[-121.01104744795371,53.398316162464944],[-121.01088241592069,53.39846533946553],[-121.01081090897745,53.398638099919914],[-121.0107003333017,53.39880584226822],[-121.01051568619178,53.398945211091245],[-121.01030934695407,53.39907637372076],[-121.01008903377318,53.39919795600952],[-121.00984963711909,53.39930526913236],[-121.00967902558945,53.39945364447616],[-121.00949403994801,53.39959580984145],[-121.00929844111582,53.39973190510516],[-121.00909202839819,53.39986361984508],[-121.00886998104508,53.39999973600189],[-121.0086565788234,53.40012666438228],[-121.0084380020822,53.40024943995436],[-121.0082477027745,53.400388568388756],[-121.00811522139261,53.40054978260981],[-121.00797360820793,53.400708358116134],[-121.00779586368327,53.40085307143988],[-121.007591254397,53.40098541671036],[-121.00743869222588,53.40114072869587],[-121.00732634875054,53.4013072802308],[-121.00721769753774,53.40147454380265],[-121.00708339620276,53.40163511463934],[-121.00689483288294,53.40177543724072],[-121.00670445570977,53.40191511737432],[-121.00656289848324,53.40207313683062],[-121.00630963544278,53.402169753774956],[-121.00604609062603,53.40225751087257],[-121.00580129433467,53.40236233492086],[-121.00560211031465,53.40249659425678],[-121.00547693167115,53.40265979299693],[-121.00534987249557,53.40282291261931],[-121.00513651123124,53.40294928025117],[-121.00485655459639,53.4030161303972],[-121.0045881598464,53.40309694245153],[-121.00432467259569,53.40318413249371],[-121.00406803717316,53.4032772342228],[-121.00383189660738,53.403388599703135],[-121.0036237691102,53.403518545056485],[-121.00336040904563,53.40360462441571],[-121.00308683454378,53.403681280430874],[-121.00283026033374,53.40377381626482],[-121.00259754011324,53.40388813544205],[-121.00241076542821,53.40402908407169],[-121.0022437337759,53.404178732871394],[-121.00207851462844,53.404329014715685],[-121.00191692063125,53.40448057184378],[-121.00176076550989,53.40463403756446],[-121.00165570993987,53.404802571321156],[-121.00158952743091,53.40497779774018],[-121.00151408008381,53.40515150253107],[-121.00140351618174,53.40531868145382],[-121.00129113767053,53.40548522695924],[-121.00119896995417,53.40565654843963],[-121.00111606697227,53.40582938250267],[-121.0010443085253,53.40600380820847],[-121.00099484000468,53.406181417296125],[-121.00096228846562,53.40635973773183],[-121.00092221777498,53.40653774197108],[-121.00089335915722,53.40671677470689],[-121.00091545204693,53.40689626986847],[-121.00101627605699,53.407065041882525],[-121.00115790626265,53.4072242900267],[-121.00130557460761,53.40738043164161],[-121.001462975776,53.40753417009831],[-121.00157930753284,53.40769965825645],[-121.0016820169733,53.40786849973464],[-121.00179640372555,53.40803447182628],[-121.00192045729726,53.40819859505839],[-121.00203679268981,53.40836408271682],[-121.00213171941344,53.408534851524685],[-121.00222282133643,53.4087060164615],[-121.0023293614004,53.4088744610814],[-121.00244570026936,53.40903994828679],[-121.00255425483769,53.40920735423069],[-121.00264341415603,53.409378994036906],[-121.00268646018313,53.40955712287941],[-121.00266512539743,53.409736480785575],[-121.00264191162022,53.40991575071712],[-121.00266595945988,53.41009477003099],[-121.0027186056788,53.41027161320804],[-121.0027865563003,53.41044686246273],[-121.00286028118799,53.410621222294864],[-121.00292829995603,53.410795908236345],[-121.00292012501932,53.410975819160136],[-121.00289133778782,53.411154297736104],[-121.00294391928685,53.41133170392687],[-121.00301771230545,53.41150550932458],[-121.00310103861591,53.41167859223878],[-121.00319020540067,53.411850231432666],[-121.00329293037244,53.412019080125674],[-121.00340337597278,53.412186564062274],[-121.00351972822286,53.41235204995613],[-121.00363024258519,53.412518970452666],[-121.00373297095528,53.41268781871218],[-121.00382402246309,53.412859536347206],[-121.00387855595976,53.41303646671427],[-121.00392933093269,53.413213230110976],[-121.00398003935014,53.41339055667418],[-121.00402504109688,53.413568209422344],[-121.00407192433366,53.413745932191745],[-121.00412652700246,53.413922299167474],[-121.00418489025462,53.414098824086054],[-121.00422989362374,53.41427647669655],[-121.00425771193284,53.41445564435723],[-121.00427988915477,53.41463458396648],[-121.00431536119004,53.414812950076104],[-121.00435271256586,53.41499140408831],[-121.00437294444671,53.41517081890888],[-121.00435537530487,53.4153503256733],[-121.00430033530945,53.41552714411074],[-121.00422488023723,53.41570084974192],[-121.00415493100097,53.415875918691206],[-121.00410741113883,53.416053044022135],[-121.00408419895855,53.416232322633185],[-121.00407226863945,53.41641206624342],[-121.00406221732912,53.41659189776986],[-121.00404464626817,53.41677140436684],[-121.00400833908199,53.41694956674479],[-121.00396639099505,53.41712749211268],[-121.00393753700399,53.417306533619154],[-121.00391808489896,53.417485961141175],[-121.00390615245136,53.41766571356693],[-121.0039112759495,53.41784505053346],[-121.00395816240821,53.418022781924684],[-121.00402425152915,53.41819794189],[-121.00407691253365,53.41837479272184],[-121.00412192108399,53.4185524360712],[-121.00414403396286,53.41873192961803],[-121.00415291809716,53.418911433406315],[-121.0041542152384,53.41909117547407],[-121.00415739268462,53.41927099651813],[-121.0041643307619,53.419450975529685],[-121.00416186734856,53.41963055956832],[-121.00413301353602,53.41980959196896],[-121.00407615343771,53.419985767733664],[-121.00402856160957,53.42016345588749],[-121.00398473006221,53.4203413019959],[-121.00387050828733,53.42050720654418],[-121.00368722486576,53.42064999471155],[-121.00344233383362,53.42077054539576],[-121.00351685790433,53.42092247572519],[-121.00367767976745,53.42107972064865],[-121.00382534016477,53.42123641236677],[-121.00392621021582,53.421405180760964],[-121.00399230451731,53.42158034046194],[-121.00406800024885,53.42175422335338],[-121.00418236824017,53.42192074631403],[-121.00436775521462,53.42206217619231],[-121.00459152977534,53.42218275723955],[-121.00483187695666,53.42229112335756],[-121.00506806686718,53.422402674479656],[-121.00528372492131,53.42252797135044],[-121.00547717162915,53.422665245504454],[-121.00564873862281,53.42281170785901],[-121.00576895699113,53.4229767854518],[-121.00588917523991,53.42314187184988],[-121.00600946140291,53.42330639491221],[-121.00615720527023,53.42346252037247],[-121.00631683057648,53.42361409526651],[-121.00640026034857,53.42378662061155],[-121.00649342604441,53.42395674252833],[-121.0065538265326,53.42413222693354],[-121.006670158316,53.42429826306943],[-121.00679817172379,53.424461429326335],[-121.00686817672307,53.42463562761308],[-121.00689413150981,53.42481472376539],[-121.00689920165564,53.424994623195],[-121.0068835197539,53.42517420844112],[-121.00690564789737,53.425353700910215],[-121.00696605211107,53.42552918499003],[-121.00711790011763,53.42568267780006],[-121.0073749127342,53.425778260603714],[-121.00763004698598,53.425873754972535],[-121.00788967366765,53.42596326507322],[-121.00815104922867,53.42605397099694],[-121.00840853187512,53.42614563595936],[-121.00866796213471,53.42623682501902],[-121.0089273945816,53.42632800457],[-121.00921109962616,53.42638988895917],[-121.0095004269547,53.42643627702747],[-121.00976824754626,53.426520511310414],[-121.00998998096478,53.426642683726996],[-121.0100949166214,53.42680936039089],[-121.0102429524484,53.42696325453202],[-121.01041032807815,53.427113458600765],[-121.01057777075691,53.42726310816041],[-121.0108693388763,53.427417963969894],[-121.01117044487489,53.427428913510454],[-121.01146880803734,53.42744704248137],[-121.0117664419261,53.42747131230655],[-121.01206374380067,53.42749837952742],[-121.01236044827381,53.42753047908267],[-121.01265120256714,53.42758085394432],[-121.01294739857076,53.427585411875185],[-121.01324536372574,53.427559155350636],[-121.01354029642012,53.42752659878208],[-121.01381832214794,53.42746133083755],[-121.01412088972154,53.427459971813356],[-121.0144208230643,53.42744896033282],[-121.01471967153103,53.42743116444758],[-121.015019893367,53.4274336399336],[-121.0153208679137,53.427445696455905],[-121.01562204211754,53.42745607154021],[-121.01591974424959,53.427479776723516],[-121.01621410720753,53.42751569455908],[-121.0165126298807,53.427548416840914],[-121.01681175027049,53.42757610527542],[-121.01709237693441,53.42763222591139],[-121.01732823157207,53.42774710486117],[-121.01757890920615,53.427848570841746],[-121.01786650660634,53.42789375124719],[-121.01816576291299,53.42792031880364],[-121.01846287270433,53.42794905073191],[-121.01875932119029,53.427983360354474],[-121.01905382264353,53.428018153690225],[-121.01935040357708,53.42805135330536],[-121.01964523785328,53.42808334701915],[-121.01994221728336,53.428113192732006],[-121.0202396614693,53.42813912206624],[-121.02053931854331,53.428162331228044],[-121.02083702844445,53.4281860241164],[-121.02113480439697,53.42820916199174],[-121.02144185288755,53.42823380125301],[-121.02172813448466,53.428210412584555],[-121.02196664514065,53.42809573920993],[-121.02215158149747,53.42795467388262],[-121.02230257080402,53.42779703137407],[-121.02246424661597,53.427644894003585],[-121.02260945910095,53.427488132455366],[-121.0227088453055,53.42731934594846],[-121.02279364934978,53.42714601411918],[-121.02289329888967,53.426974992470875],[-121.02304926171621,53.42682317243068],[-121.02323593601764,53.42668331044859],[-121.02343174856124,53.42654606762245],[-121.02362755876773,53.42640883340538],[-121.02381973988304,53.42627031507437],[-121.02401010476977,53.426131163475304],[-121.02418433713412,53.42598459859445],[-121.02434774740006,53.425833654694756],[-121.02452735442452,53.425689560274165],[-121.02471596611763,53.425549211356405],[-121.0249045108902,53.42540941640231],[-121.02508417985548,53.425264766841565],[-121.0252403275232,53.425111263114744],[-121.02539109596609,53.42495529717544],[-121.02554549314797,53.424800596885724],[-121.02568705554295,53.42464255658325],[-121.02579381258748,53.424475199365745],[-121.02587678327463,53.42430123218603],[-121.02594101340404,53.424125924187635],[-121.0259959736864,53.42394909648199],[-121.0260787434505,53.42377680981614],[-121.02618193472603,53.42360761419293],[-121.02627430470393,53.423434039883034],[-121.02642090526476,53.423281267689305],[-121.02664162871837,53.42315685839775],[-121.02686927795905,53.42303778744199],[-121.02710714931887,53.42292813665589],[-121.02736560180622,53.42283618226243],[-121.02762896645153,53.422750613819375],[-121.02788477970797,53.422649006874074],[-121.0281492288843,53.42257022081866],[-121.02844849085521,53.42258048489017],[-121.02874960478005,53.42257510336352],[-121.02903760111238,53.42252088304681],[-121.0293060061458,53.42244057985178],[-121.02955623868452,53.422338170303846],[-121.0297748685499,53.4222153572659],[-121.03000929786934,53.422102745271864],[-121.03025246710428,53.42199611316364],[-121.03049718553726,53.42189234838767],[-121.03074384879864,53.421788107399784],[-121.0309833856591,53.42168019914817],[-121.03121962257822,53.42156822652771],[-121.03145054793224,53.42145321954941],[-121.0316762939051,53.42133406075072],[-121.03190015710892,53.42121483190392],[-121.03213114528019,53.421099260370234],[-121.03235507255978,53.42097946743844],[-121.03256144942497,53.42084827692403],[-121.03276607780761,53.420715881069526],[-121.03298287607014,53.42059242029222],[-121.03321916816115,53.42047988043117],[-121.03347571079217,53.42038784308198],[-121.0337475913294,53.420309912906696],[-121.03402115253681,53.420233741342244],[-121.03429982545578,53.42016227468008],[-121.03455125106625,53.42006552946732],[-121.03475062455027,53.419929542128436],[-121.0348776213859,53.419766392481904],[-121.03494375402894,53.419590594541134],[-121.03495360747745,53.4194113239015],[-121.03494096216473,53.419230556901226],[-121.03491113074884,53.41905130938582],[-121.03487935267646,53.418872546559854],[-121.03489860785929,53.4186936683963],[-121.03492732998605,53.41851462846514],[-121.0349221407752,53.41833472968815],[-121.03490553770476,53.4181554773568],[-121.03490981667451,53.41797540786025],[-121.03492349597857,53.417795739818224],[-121.0349106536701,53.417616644453474],[-121.03487317035673,53.41743820026439],[-121.03483575287974,53.41725920176879],[-121.03482855186871,53.41708034187145],[-121.03485733976655,53.41690073860009],[-121.03485967200358,53.41672115371003],[-121.03484877604129,53.41654158247436],[-121.03484734785229,53.41636184053924],[-121.03485538731526,53.41618192790506],[-121.0348577195208,53.41600234295345],[-121.03483729067786,53.41582349661873],[-121.03481699515427,53.415643523825786],[-121.034781890548,53.41544497338802],[-121.03476680876902,53.4152528650748],[-121.03487505170978,53.415120376988526],[-121.03512584759147,53.41506066483868],[-121.03544627215396,53.41503529466805],[-121.03577279850543,53.41500625233017],[-121.0360526537171,53.414940447386414],[-121.03630625489606,53.4148409784937],[-121.03654755154456,53.41473370040169],[-121.03677855685933,53.41461756521872],[-121.03700425106868,53.41449839593539],[-121.03723518729257,53.414382823074995],[-121.03746074693505,53.4142647704162],[-121.03767588207259,53.41413898724577],[-121.03788032867503,53.414007708626386],[-121.03808315893484,53.41387410724352],[-121.0382841067401,53.41374043599367],[-121.038486867909,53.413607397128416],[-121.03868599957624,53.41347308351117],[-121.03887988561252,53.413335181705904],[-121.03906295226908,53.4131928931925],[-121.03923714407797,53.41304575111518],[-121.03940401283398,53.41289661430219],[-121.03956194243051,53.41274316933853],[-121.03972524610711,53.41259220339845],[-121.03990830667269,53.41244991353516],[-121.04009680771489,53.41230953938505],[-121.04028524100526,53.412169728150886],[-121.04046681358402,53.41202400645652],[-121.04064818649398,53.41187996520705],[-121.04085422904113,53.41175099477288],[-121.04110021413018,53.411651756154825],[-121.0413724852304,53.411569901442085],[-121.04163265031758,53.411478557228264],[-121.04186685619636,53.411367038833696],[-121.04209258397452,53.41124730543867],[-121.04232705109817,53.411133551107],[-121.0425666294705,53.411024501506255],[-121.04281468353278,53.41092366590239],[-121.0430813066169,53.410841572109284],[-121.04336300268845,53.41077582823546],[-121.04364456604073,53.41071120120506],[-121.04392438037672,53.41064537763076],[-121.04420729467948,53.41058529767905],[-121.04449660712615,53.41053503380393],[-121.04478888904269,53.41049162206528],[-121.04508090570154,53.41045045357568],[-121.04537305463558,53.410408157915164],[-121.04566836937316,53.41037105149475],[-121.0459658622201,53.410347511180966],[-121.04626619230206,53.410331949382936],[-121.04656497106254,53.41031351918672],[-121.04686292466126,53.41028606085773],[-121.04715784199512,53.41025230328868],[-121.04745166930417,53.410211761582275],[-121.0477422630239,53.41016659247557],[-121.04803305317398,53.41011975085342],[-121.04832364563427,53.410074580326174],[-121.04861760228408,53.410032918222264],[-121.04890479248049,53.40996851360281],[-121.04919141873093,53.40989285482339],[-121.04940303629874,53.40978038214989],[-121.04951282917659,53.40961818342067],[-121.04957047208913,53.40943360820831],[-121.04962000275727,53.40925374422146],[-121.04964301709092,53.409074456175226],[-121.04966797645386,53.408894692093114],[-121.04970220346827,53.40871643687537],[-121.04972145630565,53.408537001161896],[-121.04972567090081,53.40835693030937],[-121.0497636570005,53.408178831573295],[-121.04981292203252,53.40800120243822],[-121.0498433879708,53.407822790560836],[-121.04985700021805,53.40764311993596],[-121.04985745444031,53.40746289246036],[-121.0498370323564,53.40728348474149],[-121.04977842071727,53.40710754488503],[-121.04971034512329,53.40693176791055],[-121.04968032785308,53.406753640564986],[-121.0496940721162,53.406572852345796],[-121.04965445812718,53.40639601434783],[-121.04957665658142,53.406222635199484],[-121.04949127016393,53.40604950611084],[-121.04942118603026,53.405874768126345],[-121.04937412006603,53.405697062574944],[-121.04932524109803,53.40551871548015],[-121.04927468082438,53.40533860931858],[-121.04915569526136,53.40517812263615],[-121.04898599488487,53.4050312367885],[-121.04879871860845,53.40488924264673],[-121.04860949855014,53.40474772420054],[-121.04843604237287,53.40460068095795],[-121.04827653453358,53.404447489340924],[-121.04812085364624,53.4042938908652],[-121.04795336888024,53.40414429245092],[-121.04778186250265,53.4039967722235],[-121.04760834592886,53.403850290952285],[-121.04743295088362,53.40370373110877],[-121.0472594367323,53.40355724930852],[-121.0470859901781,53.40341020401518],[-121.04691650121958,53.40326164328417],[-121.04675096983316,53.40311156713196],[-121.046591343088,53.402959481727244],[-121.0464337942173,53.40280580261365],[-121.04627805972834,53.40265276483705],[-121.04611655680895,53.40250060043503],[-121.04594901990019,53.40235156230227],[-121.04576974590395,53.402205960757236],[-121.04559034138774,53.402061476450825],[-121.04541684041943,53.401914991849864],[-121.04525722303306,53.4017629045691],[-121.04511524725021,53.40160538029484],[-121.04497937193615,53.40144418403906],[-121.0448532254655,53.40128058109964],[-121.04473304862927,53.40111441480349],[-121.04462434719456,53.40094704668691],[-121.04452718745323,53.40077791355181],[-121.04444935099228,53.40060509381504],[-121.04438513259139,53.400428915670986],[-121.04433051053442,53.400251448521004],[-121.04424686504893,53.3999997754583],[-121.04415950188623,53.39982768118786],[-121.04406630379842,53.39965702355966],[-121.04396539030799,53.39948773313633],[-121.04386642247768,53.39931796669017],[-121.04377517154822,53.39914683286848],[-121.04368975797321,53.39897425332044],[-121.04363514073567,53.39879678572714],[-121.04367851871253,53.39862115825843],[-121.04375767101426,53.39844646545304],[-121.04388631575918,53.398284500410085],[-121.04411843104214,53.39817401603465],[-121.04436478979814,53.39807086317974],[-121.04460583905431,53.39796467647899],[-121.04487587185855,53.39788496990443],[-121.04515869903932,53.39782488732415],[-121.04543855709748,53.39775794226403],[-121.0457247462081,53.397701367579366],[-121.04601545249133,53.39765453060299],[-121.04630144305916,53.39759962634142],[-121.0465647430262,53.3975128974823],[-121.04682804190824,53.39742616803724],[-121.04706914658493,53.39731942202489],[-121.04724492708218,53.39717401724427],[-121.04743669892709,53.397037139641796],[-121.04762147878252,53.39689547840156],[-121.04781875455912,53.3967599526079],[-121.04807020735848,53.39666149702087],[-121.04836556056671,53.396655276654265],[-121.04866395570593,53.39668735562284],[-121.0489578015809,53.396725991364356],[-121.0492433116444,53.396787296341486],[-121.04953596097936,53.39677196736571],[-121.04982691986545,53.396722886009904],[-121.05012233262867,53.39668408754129],[-121.05040112228323,53.39662607099198],[-121.05066124069442,53.39653415210642],[-121.05093913678301,53.39646767011001],[-121.05123151124188,53.39642257044468],[-121.05151854733275,53.396390723910095],[-121.05181215963971,53.396415300793926],[-121.0521033112871,53.39636453310322],[-121.05237991612356,53.39629294509232],[-121.05264972562405,53.396214901586106],[-121.0529472460684,53.39619022614272],[-121.05324869422297,53.39618031250196],[-121.05354876169011,53.39618212769929],[-121.0538488661686,53.39619967472179],[-121.05414630350245,53.39622383903176],[-121.05444597574555,53.396229013501625],[-121.05474683260547,53.39622412048966],[-121.05504801759693,53.39621643735685],[-121.0553473231191,53.396208675277606],[-121.05564804720204,53.396204906460945],[-121.05594999430812,53.396206793785566],[-121.05625025874299,53.396206930344],[-121.0565497606266,53.39619749341146],[-121.05684998583838,53.39618190481687],[-121.05715014563606,53.39616686976218],[-121.05744958184506,53.39615798486291],[-121.05775043679655,53.39615309320056],[-121.05805007042305,53.39614252601781],[-121.05835062266907,53.396124144269514],[-121.05864767977216,53.39610336148496],[-121.05894982283905,53.39610356936692],[-121.05925067722725,53.39609867391314],[-121.05955028404586,53.39610438983321],[-121.05985035124229,53.3961061891474],[-121.0601481945583,53.396078706333014],[-121.06044885213403,53.396075479688065],[-121.06074778722014,53.396054769766614],[-121.06104685229256,53.39603295049562],[-121.06134294732156,53.39600426011743],[-121.06163510991412,53.39596081567185],[-121.06192106859568,53.39590587384567],[-121.06221012769414,53.39585668412538],[-121.06249156231198,53.39579201207465],[-121.06277718999317,53.395739866509494],[-121.06307972429968,53.395736711286965],[-121.06336520662197,53.395782258784074],[-121.0636286561265,53.39587068724978],[-121.06389879487155,53.39595040893977],[-121.06418257330819,53.39601048251992],[-121.06448021156895,53.39603294916997],[-121.06477850630812,53.396049827360315],[-121.0650792055543,53.39606231266023],[-121.06537572984568,53.39609427171957],[-121.06567389416989,53.39611226520956],[-121.06597367572323,53.39613257105806],[-121.06627238773889,53.396129814931754],[-121.06657422587128,53.396116514915214],[-121.06687462086985,53.39611550713239],[-121.06717263489664,53.39610260389621],[-121.06746621299116,53.39606313008016],[-121.06774595774561,53.395996695772624],[-121.06800752136661,53.39590816064924],[-121.06827756169838,53.39582784661886],[-121.06854720865536,53.395750875674686],[-121.06878851089898,53.395641850500695],[-121.0690208084738,53.395529082345384],[-121.06925161878851,53.39541288312069],[-121.06946999296972,53.39528999566486],[-121.06966725694768,53.39515387032397],[-121.06985914279,53.395015284623256],[-121.06998955594221,53.39485336907309],[-121.07007954068533,53.39468191558551],[-121.07014911444445,53.39450736945935],[-121.07022244623293,53.394332979177086],[-121.07028275342549,53.39415692564476],[-121.07033560902637,53.39397999703034],[-121.07040893912367,53.39380560658874],[-121.0704803893411,53.393631138141735],[-121.07057587619705,53.39346103556514],[-121.07068069251117,53.393291885856236],[-121.07078537796797,53.393123844652095],[-121.07089926168952,53.392957873834995],[-121.07108595497057,53.39281513629192],[-121.07134392937978,53.39272476597246],[-121.07162028048907,53.39265481393342],[-121.07190465150772,53.3925969807007],[-121.07219671456345,53.39255406457079],[-121.07249336657145,53.39252032189295],[-121.07279098027122,53.392494479261316],[-121.07309097707692,53.39248052154281],[-121.07339077667125,53.39246824387007],[-121.07368825846756,53.39244351654898],[-121.07398322521749,53.39240802039955],[-121.07427508891432,53.39236677102905],[-121.07456572657343,53.39231986422215],[-121.0748548122711,53.392270080467284],[-121.07514680510258,53.39222771140058],[-121.07544157322884,53.39219388349846],[-121.07574208968218,53.39217545780946],[-121.07604208323588,53.39216149265156],[-121.07634192613229,53.392164931208605],[-121.07664139474447,53.392155443712404],[-121.07693229114959,53.392106287065765],[-121.07717833711148,53.39200474682768],[-121.07736837063368,53.39186550772342],[-121.07748961091372,53.39170095940787],[-121.07763630875941,53.391544760283786],[-121.0777520403858,53.39137886061744],[-121.07788254278628,53.391215818576946],[-121.07806518459302,53.39107514943142],[-121.07828532480866,53.39095287768444],[-121.07852132939682,53.39084024638113],[-121.0787977221542,53.39076971436556],[-121.07904718754939,53.39067111526108],[-121.07930034414218,53.39057323449333],[-121.07956191465493,53.39048411944205],[-121.07981836988601,53.39039030016657],[-121.08005773307427,53.39028117407122],[-121.08031916936797,53.390193174906436],[-121.08057743539872,53.390099986084195],[-121.08080267745282,53.38998241323788],[-121.08102474799556,53.389859659831075],[-121.08116760216458,53.38970386390992],[-121.08122980197714,53.389527318964056],[-121.08133268659196,53.38935808177989],[-121.08153292287473,53.38922824301503],[-121.08177771667187,53.3891210185909],[-121.08205557952152,53.38905390941623],[-121.08235283546351,53.38903084122075],[-121.08265290199346,53.3890483067522],[-121.08295063160983,53.38906960973246],[-121.08325104076675,53.38906800631102],[-121.08354991486664,53.389047239064126],[-121.08384025786667,53.389002544673254],[-121.08412465329806,53.388944118892994],[-121.08439630178624,53.38886551764421],[-121.08468535213885,53.38881570993318],[-121.0849843220124,53.388826395394844],[-121.08528582549522,53.38883156102923],[-121.08557816299441,53.38886667610487],[-121.08584174651783,53.38895393813605],[-121.08609897582356,53.38904710864881],[-121.08636282283129,53.3891321343779],[-121.0866330920045,53.389210687166106],[-121.08689025879549,53.38930441921304],[-121.08714120108647,53.38940295119312],[-121.08736698392404,53.38952289298105],[-121.087615918902,53.38962246384215],[-121.08786686583167,53.38972098533667],[-121.08805829060991,53.389860284927735],[-121.08825386671134,53.38999638681532],[-121.08846117549881,53.39012904731148],[-121.08875744301811,53.39013061844645],[-121.0890250052716,53.39005464976709],[-121.08930350205505,53.38999821383005],[-121.08960540507734,53.390000024740665],[-121.08988398575262,53.39007217524747],[-121.09009798289539,53.390196116274666],[-121.09035509762957,53.390290404048365],[-121.09065349256215,53.39030609987702],[-121.09094558478083,53.39034342795362],[-121.09122209456692,53.390417178526825],[-121.09150139907491,53.390483174100105],[-121.09176954633632,53.39056387271094],[-121.09201836738886,53.39066455189035],[-121.09227795617639,53.39075387953299],[-121.09253086466596,53.39085191442441],[-121.0927630252947,53.39096593648535],[-121.09298507412946,53.39108571233757],[-121.09321496668538,53.391203008644005],[-121.09339883329658,53.39134255245765],[-121.09361854960362,53.39146616551239],[-121.09377836836705,53.3916176254223],[-121.09397792577471,53.39175219210831],[-121.09418364288356,53.39188252979542],[-121.09439733528141,53.392009261398705],[-121.09458691282099,53.392148472767616],[-121.09478252065777,53.392284563777075],[-121.09499621689913,53.39241129428062],[-121.09520998015536,53.392537461133315],[-121.09540144203648,53.392676748724675],[-121.09559497955115,53.392814441650096],[-121.09580680163968,53.392941093116924],[-121.09602860876566,53.39306309833488],[-121.09625054652189,53.39318399449367],[-121.09648072039833,53.39329904921557],[-121.09670655073882,53.393418973060605],[-121.09694094155516,53.3935302748845],[-121.0971505665803,53.39365963586743],[-121.09738081017547,53.39377413450272],[-121.09760891602431,53.39389078138915],[-121.09781659986128,53.39402062691991],[-121.09802817401564,53.39414950952091],[-121.09828559132966,53.39424154482244],[-121.09857486027514,53.39428716292673],[-121.09887438402582,53.39430962110586],[-121.09917391880896,53.39431579163211],[-121.0994712374398,53.39434096924138],[-121.09977134891327,53.3943583915733],[-121.10006262992333,53.3944029659606],[-121.10036314214113,53.39440075609411],[-121.10066384921774,53.394396873564375],[-121.10096275255134,53.39437606264979],[-121.10126052910336,53.39439731977621],[-121.10153319459914,53.394472008916644],[-121.10182454390369,53.39451601572795],[-121.1021157625392,53.39456114835086],[-121.10239965174125,53.39462056760224],[-121.10265059742692,53.39471962095187],[-121.10289337567075,53.394823951960696],[-121.10309479117852,53.39495914385023],[-121.10335261513467,53.39504781540179],[-121.10362074960867,53.395129041459086],[-121.10388213975645,53.39521953861016],[-121.10409808264477,53.395343540516095],[-121.1042480360125,53.39549906935582],[-121.10441380696231,53.395648511753606],[-121.10458554334208,53.39579538769356],[-121.10474327821841,53.39594899033003],[-121.10495507799878,53.396076188589305],[-121.10517893776763,53.396197136386064],[-121.10541336645278,53.39630842137799],[-121.10564967688028,53.39641977435193],[-121.10590258495597,53.39651834382709],[-121.1061473266935,53.39662218223118],[-121.10639829312996,53.39672122758498],[-121.10666443349582,53.39680349587181],[-121.10694367446627,53.396870572594494],[-121.10722311096826,53.39693597674657],[-121.1074931433886,53.397017280313925],[-121.10775708355453,53.397102258288406],[-121.10803172316119,53.39717644653842],[-121.10831583295055,53.39723417969182],[-121.10859961885807,53.39729470167154],[-121.10887912526084,53.397359547598576],[-121.10916096776135,53.3974205541629],[-121.10945474516353,53.39746014920815],[-121.10975585780261,53.39746916887824],[-121.11005522108817,53.39747699287407],[-121.1103568540825,53.39748154065611],[-121.11065855790123,53.397469246472866],[-121.11095009516526,53.39743070574083],[-121.11114885346272,53.397296833261905],[-121.11128287384878,53.3971350272885],[-121.1113929797337,53.39696774588465],[-121.11151040823067,53.396802445477164],[-121.1116259552831,53.39663707658555],[-121.11174895485533,53.39647257107151],[-121.11189197770553,53.396314503601154],[-121.11205495920501,53.396163428430825],[-121.11223945218637,53.396022230165265],[-121.11242945335356,53.39588237210887],[-121.11245659599433,53.395713924318976],[-121.11254654932564,53.39571986905201],[-121.11243370341595,53.39555352551729],[-121.11233440429586,53.3953843700696],[-121.11223322655378,53.39521513723892],[-121.11213010470709,53.39504639028852],[-121.11203865107592,53.394874745244934],[-121.11197214920769,53.394699643454615],[-121.1119401278048,53.39452033593686],[-121.11198146698219,53.39434348841499],[-121.1121099011098,53.39418089508106],[-121.11226924479769,53.39402854728878],[-121.11242495753189,53.39387493604947],[-121.1125752920195,53.39371884861776],[-121.11273100249143,53.39356523695518],[-121.11289759907142,53.393415432584845],[-121.11306957154682,53.39326810392623],[-121.1132451725784,53.39312203820683],[-121.11341889202977,53.392975903891084],[-121.11359630446378,53.392830478170204],[-121.11377734437099,53.392686324297635],[-121.11396000251102,53.39254448259674],[-121.11415536034077,53.39240708852634],[-121.11435946279751,53.392275677329366],[-121.11457950385021,53.39215333854852],[-121.11482397067945,53.39204828152604],[-121.11508210622083,53.39195558120448],[-121.11534024062537,53.39186288031905],[-121.11559500495781,53.3917666715994],[-121.11580953182194,53.39164298121312],[-121.11597066632767,53.39149126878085],[-121.11610277044656,53.39132937970048],[-121.11620921335512,53.39116082132051],[-121.11626368597061,53.39098451259014],[-121.11626372484534,53.39080541003712],[-121.11622786423749,53.39062651216094],[-121.11619388314888,53.39044769148256],[-121.11616936382545,53.390268693629835],[-121.11614108527493,53.39008955024765],[-121.11608986816762,53.389912824004334],[-121.1160195345164,53.38973812393441],[-121.1159414894506,53.389564795770696],[-121.11586739866316,53.38938994112534],[-121.11580089057367,53.3892148320685],[-121.11573632659758,53.389039245860126],[-121.11567558585554,53.38886325973535],[-121.115616725795,53.38868734185684],[-121.11555987417499,53.38851039250651],[-121.11550678230942,53.38833358864296],[-121.11545181073998,53.38815671644543],[-121.11540059887703,53.38797998973998],[-121.1153494518566,53.38780270866622],[-121.11531547677771,53.38762388749234],[-121.11530236613126,53.387444243981136],[-121.11525873645833,53.38726727177497],[-121.11517110950946,53.38709522863809],[-121.11505639729073,53.38692880965472],[-121.11491239686774,53.38677072704099],[-121.11473469997992,53.38662642315367],[-121.11454514511772,53.38648668917347],[-121.11435358363866,53.38634798629068],[-121.11416396686903,53.386208806015595],[-121.11397260223325,53.38606843056734],[-121.11384597401455,53.38590713479102],[-121.11387777183575,53.38573101716863],[-121.11393224718901,53.38555470904101],[-121.11395316015958,53.38537477499987],[-121.11396266920298,53.38519549498619],[-121.11395902538969,53.38501567414019],[-121.11394592134245,53.38483603025211],[-121.11392329379477,53.38465710870921],[-121.11388174606941,53.384478541084455],[-121.1138305452696,53.38430181338792],[-121.11378517600498,53.384123645506584],[-121.11376442740378,53.383944810074624],[-121.11377400239408,53.38376496667927],[-121.1138173321062,53.38358707725681],[-121.1139126211012,53.3834169391223],[-121.11401898731329,53.38324894532609],[-121.11409211779613,53.383074527101705],[-121.11414477540151,53.3828975781192],[-121.11419555265935,53.382720560783056],[-121.11424633052931,53.38254353446927],[-121.11431576556232,53.38236840720546],[-121.11441292862882,53.38219834582341],[-121.11447854031387,53.3820236182624],[-121.11449938478182,53.38184423814858],[-121.11455935909723,53.38166927875938],[-121.11466759712721,53.38150136149088],[-121.11477032877704,53.38133208582307],[-121.11485828789411,53.3811599658184],[-121.11496276688138,53.38099188480791],[-121.11510021858918,53.38083246295905],[-121.11525956535237,53.38067955584468],[-121.11542422215082,53.38052967870339],[-121.11559082197802,53.38037931528322],[-121.11576992277126,53.38023508027509],[-121.11598283670223,53.38010851316303],[-121.11620805625454,53.379989755156],[-121.1164175341522,53.379860243252594],[-121.11664430485696,53.37974436011811],[-121.11690236097144,53.3796516552954],[-121.11717045584267,53.37957002598294],[-121.11744981840003,53.379505146308816],[-121.11774316817977,53.37946611147628],[-121.11804305721483,53.37945204038627],[-121.11834339639121,53.37945034839077],[-121.11864529041343,53.37945152238039],[-121.11894459265639,53.37945876081578],[-121.1192449942843,53.37947279028626],[-121.11954390760013,53.37948338004952],[-121.11984489553531,53.37947609620409],[-121.12013649491105,53.37943585175119],[-121.1204194143902,53.3793728003156],[-121.12069067396699,53.379296351106774],[-121.12095059714966,53.37920371463888],[-121.12116336061256,53.379078255808835],[-121.12128069983663,53.378912953272454],[-121.12143399176388,53.378763159158694],[-121.12168017710805,53.3786587277924],[-121.12192623157019,53.37855541352665],[-121.12210867131684,53.378414675964834],[-121.12221693622521,53.37824618828651],[-121.12225270990301,53.37806798679828],[-121.12223005070034,53.377889066246304],[-121.122192231745,53.37771065519373],[-121.12216393704433,53.37753150320836],[-121.12214510009672,53.377352182516255],[-121.1221395433917,53.37717228410456],[-121.12211306255757,53.37699377246931],[-121.12203708964547,53.37681884346465],[-121.12187903868822,53.37666806083084],[-121.1216278960225,53.37657128238161],[-121.12134799037555,53.376494658095],[-121.12118864740128,53.37635504173719],[-121.12114539350517,53.37617471788711],[-121.12111710325203,53.375995574459424],[-121.12109069284753,53.375816499215745],[-121.12106998267402,53.375637101056014],[-121.12104739412244,53.3754576257289],[-121.121019040449,53.37527903655281],[-121.12099262987338,53.37509997016557],[-121.12096622055974,53.37492089481583],[-121.12093793191089,53.374741751235845],[-121.12090387932126,53.37456348485815],[-121.12084125935708,53.3743874229795],[-121.12073621119787,53.37421915896378],[-121.12062151205951,53.37405274430069],[-121.12052611739752,53.37388263061259],[-121.12044620572831,53.37370921796793],[-121.1203892897117,53.37353282397166],[-121.1203552393841,53.37335456627254],[-121.12030609740857,53.37317624560866],[-121.1201930872373,53.37301157956169],[-121.12004328474843,53.37285495149408],[-121.11993429167889,53.372688213211376],[-121.119819599878,53.372521797650684],[-121.11963793005806,53.372379580979484],[-121.11941616451608,53.372257609590676],[-121.1191798235446,53.372147400253006],[-121.11892897347691,53.3720483806623],[-121.11865856015264,53.37197157250916],[-121.11837551473646,53.37190604002519],[-121.11812842476975,53.37180717311541],[-121.11794099885772,53.37166583983569],[-121.11782618796803,53.37150053988491],[-121.11777887183321,53.3713228584924],[-121.11779781859428,53.371143399664135],[-121.11787460371696,53.37096969576191],[-121.11798830735589,53.37080311486461],[-121.11812396576714,53.37064249391832],[-121.11827594377375,53.370487601273865],[-121.11843336155236,53.370334611945324],[-121.11858358975752,53.37017851513819],[-121.11871373868436,53.37001654429277],[-121.11882374417058,53.3698492538115],[-121.11891716791091,53.36967847900795],[-121.11899763798115,53.36950548295783],[-121.11906515452816,53.369330265686756],[-121.1191140164837,53.36915316790008],[-121.11914798267553,53.36897432609502],[-121.11916692150974,53.36879487578322],[-121.11917264812814,53.368615439546886],[-121.11916140622377,53.368435863032126],[-121.11911978795975,53.368257850160475],[-121.11904371352847,53.36808403611489],[-121.11894840308987,53.36791336632617],[-121.11884337863648,53.3677451001059],[-121.11872669669287,53.367579723523384],[-121.1186022434702,53.36741627330098],[-121.11847202694376,53.36725370898631],[-121.11835340530139,53.36708880914716],[-121.11824262105151,53.36692142837355],[-121.11812400020501,53.36675653721966],[-121.11798789364516,53.36659597597414],[-121.11784194384796,53.36643893575643],[-121.1176842063228,53.36628591154977],[-121.11748650761844,53.36615201448535],[-121.11725448222901,53.366037475992535],[-121.11704078743065,53.36591134710255],[-121.11684931129751,53.365772646842856],[-121.11665576315613,53.3656355499431],[-121.1164582649026,53.365499979172675],[-121.11626679255717,53.3653612779474],[-121.11608535975421,53.36521738339851],[-121.11593741396551,53.36506138112745],[-121.1158517085084,53.36488941385486],[-121.11580058762405,53.36471213097606],[-121.11575523112478,53.36453396213967],[-121.11570974522691,53.364356910886485],[-121.11567390948551,53.3641780105346],[-121.11566074023509,53.36399891934319],[-121.1156759356355,53.363819314681884],[-121.11571366815767,53.363640627855375],[-121.11577743190534,53.36346526642118],[-121.11587085487552,53.36329448453369],[-121.11598642267971,53.36312799109296],[-121.11612381223043,53.3629685666677],[-121.11629027575326,53.36281875531362],[-121.11648898354369,53.36268375404403],[-121.11671236029675,53.36256379923062],[-121.11695146978732,53.362454597477196],[-121.11719912508354,53.36235304133623],[-121.11745182876102,53.36225675004746],[-121.11771650947138,53.36217105720151],[-121.1179957558156,53.36210617569266],[-121.11828924335447,53.36206490394125],[-121.1185853842993,53.362033281144384],[-121.11888281966014,53.36200675961632],[-121.11917980023762,53.361984153489075],[-121.11947839909641,53.36196385903659],[-121.11977686800057,53.361944681456414],[-121.12007540094386,53.36192494878643],[-121.1203740642957,53.36190408880338],[-121.12067305094064,53.361880438483354],[-121.1209687998943,53.361852162618945],[-121.1212633186397,53.361818220755445],[-121.12155667135211,53.36177805856035],[-121.12184872933048,53.36173278472521],[-121.1221373553234,53.36168455737722],[-121.12242313090785,53.3616283606402],[-121.12270094254518,53.361559474783505],[-121.122973831644,53.36148421445067],[-121.12324341689204,53.361404892040824],[-121.12351623975589,53.36133018480047],[-121.12379883877315,53.361268796740084],[-121.12408441551378,53.361214267970034],[-121.1243715450635,53.36116261414788],[-121.12466042333199,53.36111214540952],[-121.12494917034513,53.361062802537454],[-121.12523804723732,53.361012332393884],[-121.12552685816364,53.36096242483228],[-121.1258201366187,53.360922806449906],[-121.12611619861575,53.36089172817196],[-121.12641219595017,53.360861203500974],[-121.126708063376,53.360831795723215],[-121.12700541988575,53.36080581715482],[-121.12730413608553,53.36078438541571],[-121.12760388894863,53.36077029010316],[-121.12790422401021,53.36076745633091],[-121.12820287734958,53.360779142072545],[-121.1285023722779,53.360799854092896],[-121.12879979596613,53.36082216031089],[-121.12909987438442,53.36083783701007],[-121.1293991103741,53.360844494871145],[-121.12970048317804,53.36084899372457],[-121.13000095029979,53.36086131525024],[-121.13029526865697,53.36089415377038],[-121.1305787109328,53.36095575100232],[-121.13083191774516,53.361050353025874],[-121.1310395420649,53.36118014266158],[-121.1312190654115,53.361324500985845],[-121.13140655505403,53.361465250776355],[-121.13161023273193,53.36159656634223],[-121.13186312286534,53.361693955757694],[-121.13213984006373,53.36176481374072],[-121.1324238734011,53.36182137271913],[-121.13271729405521,53.361862037622416],[-121.1330150512793,53.361881534728],[-121.13331669050244,53.36188378914427],[-121.13361722758314,53.36187926002319],[-121.13391782872783,53.36187417579461],[-121.13421836567532,53.361869645154655],[-121.1345174124121,53.361861683905545],[-121.13481820774128,53.36185491647397],[-121.13511777552387,53.36185876137894],[-121.13541501579392,53.36188273197291],[-121.13570339239674,53.36193440311439],[-121.13598471312145,53.361998145794075],[-121.13626862396333,53.36205581322496],[-121.13655913922983,53.362105323915934],[-121.13684790536995,53.36215364829791],[-121.13713686650013,53.36220029104613],[-121.13742764218252,53.362247564331064],[-121.13771848259671,53.36229428255404],[-121.13801217002293,53.362332699104286],[-121.1383091579636,53.36235888880266],[-121.13860672701628,53.36238005283991],[-121.13890636759758,53.36239962100588],[-121.13920400233113,53.36242022025678],[-121.13950105568561,53.362445852627424],[-121.13979998741131,53.36247156110834],[-121.14009813857508,53.36248769648866],[-121.14039971847137,53.362490487294316],[-121.14069838110498,53.36248586344084],[-121.14100001856637,53.362471820161176],[-121.14129135092776,53.36243264118203],[-121.14154743277399,53.362339250954975],[-121.14174955622175,53.36220658746487],[-121.14191054874213,53.36205428339623],[-121.14204064793748,53.36189172310189],[-121.14217793485638,53.36173226849862],[-121.14237117876247,53.36159475819293],[-121.14260147167626,53.361479532541836],[-121.14286272755727,53.36139027715819],[-121.143145105726,53.36133051514007],[-121.14343986101873,53.36129428306608],[-121.14373831425507,53.36127504535762],[-121.14404033676995,53.361273919636226],[-121.14433166477318,53.36125102035047],[-121.14459926635753,53.361172127108],[-121.14486427201396,53.361083020868065],[-121.14511722678887,53.36098388110023],[-121.14536143658447,53.36087875977364],[-121.14560570913456,53.360773083585585],[-121.14585198737095,53.360666365996174],[-121.14609295244736,53.360556627974375],[-121.14632873434319,53.360442742959],[-121.14655195027711,53.36032328634491],[-121.14676279213873,53.36019659513539],[-121.14695575718805,53.360061303641416],[-121.14713440634796,53.359919255312796],[-121.14730236655316,53.35977172133386],[-121.14746326574948,53.35961996392384],[-121.147618852934,53.35946517749312],[-121.14777081109357,53.35930912868123],[-121.14792102019398,53.359151876343596],[-121.14807304107372,53.358995263823765],[-121.14822862268,53.35884048548897],[-121.14839139284071,53.35868880347332],[-121.14856135151402,53.358540217747766],[-121.14873299298533,53.358393389433736],[-121.14890838893639,53.358246714279],[-121.14908365478856,53.3581011565108],[-121.14926079725547,53.35795567517728],[-121.14943975136947,53.357810833568585],[-121.1496168274706,53.35766590604153],[-121.1497939662667,53.35752042388262],[-121.14997110383958,53.35737494144941],[-121.15014454850743,53.3572287510053],[-121.15031812184434,53.35708143369863],[-121.15048800230585,53.356933408401886],[-121.15065425485363,53.356784111830784],[-121.15082244789122,53.35663433733629],[-121.15099064076365,53.35648455365165],[-121.15115889633371,53.35633421535903],[-121.15132352401459,53.356182605816514],[-121.1514845238306,53.356029725038866],[-121.15163814033201,53.35587541970898],[-121.15178631519919,53.35571921215922],[-121.15192717177906,53.35556101680689],[-121.15205514086364,53.35540004934063],[-121.15217216519375,53.355235823157486],[-121.15227817893296,53.35506891053153],[-121.15237324812757,53.354898739248966],[-121.1524609994854,53.354726580302255],[-121.15254324483085,53.354553082601356],[-121.15262186395682,53.354378304925135],[-121.15269672607099,53.354203382825006],[-121.15277346625086,53.35402852836926],[-121.15285383129785,53.35385495374584],[-121.15292111708591,53.35368027923293],[-121.1529791429058,53.35350410378124],[-121.15307057924343,53.35333266085735],[-121.15316382859396,53.353161848851265],[-121.15324781685169,53.352989544833825],[-121.15332630138927,53.35281588422007],[-121.15341035318123,53.35264301675597],[-121.15351279394427,53.35247426857336],[-121.15363731376704,53.352310356197066],[-121.15374713437579,53.35214303198603],[-121.15380696834079,53.35196748699058],[-121.15385009635602,53.351789580245836],[-121.15393407907277,53.35161727562667],[-121.15405309184604,53.35145200625024],[-121.15418485925356,53.351290635058824],[-121.15433126077579,53.35113322075186],[-121.15449572801307,53.350982724094],[-121.15467994582549,53.350840893658244],[-121.15487666147847,53.35070518756293],[-121.15507331100181,53.35057004443706],[-121.15526290018914,53.350430678237636],[-121.15543642763353,53.3502833529664],[-121.15559544764768,53.350130952876],[-121.15574540130683,53.349975370916425],[-121.15588810130181,53.34981724702471],[-121.1560290514253,53.349657928684536],[-121.15613691434734,53.34949107981364],[-121.15620055331566,53.34931513220958],[-121.15626788179924,53.349139901046954],[-121.15635554041283,53.34896830204106],[-121.1564542704305,53.34879883452924],[-121.15655494088826,53.34862888914564],[-121.15665548188666,53.34846006133202],[-121.15675796329576,53.348290755640264],[-121.15686038007554,53.34812200421022],[-121.15696286086859,53.347952689372065],[-121.15826433454053,53.346903633593904],[-121.16681044277392,53.343701769778235],[-121.1696254142913,53.343232429844846],[-121.17803527761347,53.34199497037214],[-121.18381726471003,53.33906313313641],[-121.18948170332135,53.335964583041736],[-121.19806133428646,53.33520314326185],[-121.20059205372027,53.33668888548102],[-121.20099282257196,53.33833382507764],[-121.20909593646637,53.33884473179366],[-121.21745139565223,53.338994711338124],[-121.22611857863349,53.336795278825775],[-121.22559763665055,53.32915297460155],[-121.26952541325035,53.29094362812431],[-121.33815957556234,53.28369622825333],[-121.3442233512123,53.283896338779584],[-121.41517316925447,53.28375514630432],[-121.41528590122901,53.27080877568252],[-121.41531148887603,53.26724971822006],[-121.40352340177944,53.26709567978848],[-121.3986558421037,53.266856826920225],[-121.39828786196347,53.25974252091877],[-121.40342003639044,53.259341639725996],[-121.40361425141643,53.2593553441324],[-121.40531966941668,53.25890167461051],[-121.40508334573752,53.25885995192493],[-121.40475126470147,53.25845356959942],[-121.40974089435863,53.25479554020456],[-121.40993775079951,53.25436980358848],[-121.41203105852749,53.2509009008489],[-121.42008630030669,53.251152528472446],[-121.42560893147136,53.24977560726528],[-121.42721516934269,53.24884236089632],[-121.42846843965765,53.24824911170084],[-121.42857830235506,53.247790804018095],[-121.42808184069136,53.24640028415969],[-121.428084396867,53.245404557178155],[-121.43190186855624,53.24197608117264],[-121.44345205131333,53.24161882594079],[-121.4544065668613,53.241619866244825],[-121.46160416002043,53.24045494728477],[-121.471054599017,53.23778216802382],[-121.47654922789044,53.23326357126498],[-121.47753200640723,53.23125227637445],[-121.4812377870477,53.22755149069467],[-121.48993945570938,53.22551168869642],[-121.50226839167316,53.223721950489484],[-121.50901790318548,53.223190642183425],[-121.52213956825445,53.22241854385827],[-121.52784945924786,53.22218363571966],[-121.53356520319753,53.22246114562267],[-121.54058202372079,53.22124270648139],[-121.54360595854035,53.22023510506967],[-121.54853242537824,53.21943818495457],[-121.55262510646665,53.219559448849],[-121.55704894094043,53.221106885660895],[-121.55709065774845,53.222139530480476],[-121.55842766195214,53.22515552823107],[-121.56059349917307,53.233593130546836],[-121.56678826986494,53.24278765706047],[-121.57187853260051,53.24690191301837],[-121.57760364480778,53.253295889483326],[-121.58287015921357,53.257186024212245],[-121.58740859129709,53.256102377782184],[-121.59565317574447,53.25440373080037],[-121.60051745220923,53.25177648027734],[-121.60547749156419,53.24851276190605],[-121.61318818248738,53.248308553527245],[-121.62729686734366,53.248366534288884],[-121.6314755754086,53.24826476307597],[-121.63592729749219,53.2471233833089],[-121.64038939565778,53.24369461728675],[-121.64398537464466,53.24005032660888],[-121.6561070693716,53.238189371654656],[-121.66708592597311,53.238510677232256],[-121.68438021835892,53.251217746550346],[-121.70183279934612,53.251688253371114],[-121.7089777607934,53.25423019255195],[-121.71312698495662,53.25812189745025],[-121.71432700455802,53.259938688411616],[-121.71880824649847,53.25730701596232],[-121.72093434734086,53.25533768284739],[-121.72401330222043,53.2534672379739],[-121.7292438540952,53.25323105045415],[-121.73412468579386,53.25362516069206],[-121.75224365708178,53.26168363621593],[-121.76184436523108,53.266193490806465],[-121.7743252448046,53.27397914000325],[-121.78101626105256,53.27692167791684],[-121.7892805262753,53.28402116629989],[-121.79389267762086,53.28744906373916],[-121.80704183403783,53.30014313087531],[-121.81232689686621,53.30350136606875],[-121.81963739772362,53.30740879332144],[-121.83482693904114,53.31057969398396],[-121.83847640190403,53.311157189049],[-121.84814205950534,53.31153896239955],[-121.85910107020976,53.311333255155],[-121.87117622061912,53.310190735540324],[-121.8832168837376,53.30785122632712],[-121.8871714871287,53.306540145519755],[-121.89517844458503,53.30367972930983],[-121.90025956344837,53.301774294143314],[-121.90866916170711,53.299711905341695],[-121.9186591709659,53.29905107857855],[-121.92531493689934,53.29844439223738],[-121.93003158051111,53.297172156369385],[-121.93797813899644,53.295512138244085],[-121.94545461029912,53.294035286833164],[-121.94562298512237,53.2979214704296],[-121.94574821936729,53.30335250184838],[-121.94608394195461,53.30941462429332],[-121.946437116381,53.31341705506624],[-121.94721387612977,53.316149646141845],[-121.94778195031122,53.3163530741606],[-121.94827676592502,53.31653492200527],[-121.95243327106445,53.31561686988145],[-121.9539541497233,53.31295931844379],[-121.95412354343911,53.31009689501318],[-121.95534767483039,53.307388804667774],[-121.96071377877043,53.305312714973354],[-121.96325949060113,53.3045268872258],[-121.96457023888684,53.304052478267145],[-121.96824781399782,53.30308509871047],[-121.9724386096383,53.302734807630266],[-121.97614912679755,53.30268115819791],[-121.97946449694778,53.30171686042596],[-121.97993205320692,53.30171026031883],[-121.98458715298037,53.30106838298163],[-121.98618844641234,53.30070232558517],[-121.9875560964581,53.30136631551704],[-121.98725511080987,53.30326205056303],[-121.98834765567987,53.30444355261681],[-121.99023702580253,53.30390034944746],[-121.99020096004094,53.305387620223364],[-121.99023407968089,53.30630606301949],[-121.99284447995623,53.30689358079954],[-121.99494029312903,53.30703166047943],[-121.99596630872288,53.30622133684496],[-121.99711290050676,53.30620279248392],[-121.99855366780847,53.30657623883188],[-121.99960348534687,53.306625099482424],[-122.00366397285865,53.307966484860444],[-122.00498979466933,53.30796456303332],[-122.01166472333988,53.30922140950868],[-122.01720116972477,53.31025452088837],[-122.02597795615966,53.31127584847557],[-122.02912101381699,53.31133448064467],[-122.03427261244559,53.31150112116572],[-122.04029275313702,53.3099601246038],[-122.04439139097948,53.307219832483156],[-122.0464876719855,53.30687228092438],[-122.05192501939278,53.30607317931614],[-122.05506201247822,53.30538757756766],[-122.05801870420095,53.30372981786636],[-122.06088359711818,53.30321288075699],[-122.062792225187,53.30309669707544],[-122.06488682059621,53.302924372223394],[-122.0694556700278,53.30109202392011],[-122.06975022423154,53.299548312292764],[-122.07202798330655,53.297892981008985],[-122.07250559201523,53.29777751279436],[-122.0779465814341,53.29692017700614],[-122.08204756960507,53.296057617198606],[-122.08423285422303,53.295714609475],[-122.08518873024262,53.2953130489502],[-122.08727937041479,53.29177075216683],[-122.08794426993963,53.28817523566679],[-122.08916798285975,53.282286739148034],[-122.0903025699275,53.27800541466003],[-122.0946649289495,53.26389417474027],[-122.09759738932065,53.255779614058106],[-122.09996126084175,53.24892260861735],[-122.10109559258903,53.244296694074464],[-122.10147126233574,53.24332332790619],[-122.10194463469215,53.24178037188577],[-122.10270812877621,53.24035243023938],[-122.10346946369486,53.23943606913724],[-122.10659499035476,53.236691055561806],[-122.10812492756178,53.23640695375257],[-122.11050002235238,53.23543640390898],[-122.11429984372866,53.23434198926676],[-122.11668008306339,53.23331257998558],[-122.11973393303032,53.23296888504888],[-122.12221181744276,53.23267469591213],[-122.12372079317811,53.231305824659785],[-122.12629855118766,53.23090487140832],[-122.12962180365025,53.230899608382344],[-122.13333904295123,53.23003979198667],[-122.1341826280445,53.22837979032019],[-122.1368554555523,53.226607788141],[-122.13941665809176,53.2252320919775],[-122.14246319862279,53.22397202286528],[-122.14435436573264,53.223510173553144],[-122.14940553227153,53.22350676541733],[-122.15120953159769,53.22350537013558],[-122.15473488037736,53.222759291422896],[-122.15929800187831,53.22200525576819],[-122.16319763807208,53.22011427704931],[-122.16442370582958,53.219026936739645],[-122.16633219124958,53.21754091599658],[-122.1678550734547,53.21765303921594],[-122.17089660022035,53.21759266493115],[-122.17309261499233,53.21707684292907],[-122.17621796077054,53.2157579021056],[-122.17859248494595,53.21409769508664],[-122.17973229513224,53.213292972548395],[-122.18164120434565,53.21328946843771],[-122.18373422553012,53.213576855083915],[-122.18667512542132,53.2136284083954],[-122.19020564130028,53.21430753676696],[-122.19363164693023,53.214646600040425],[-122.19572562283433,53.21492482473484],[-122.19695799288776,53.21275465274611],[-122.19856717989593,53.21023641913698],[-122.20179630566837,53.209085104786006],[-122.20446162245321,53.20885529987599],[-122.20655531710173,53.208966722245414],[-122.20817291126345,53.20936017646821],[-122.21026942861037,53.21044549913811],[-122.21331077773321,53.210379552311366],[-122.21568570744476,53.21020415965955],[-122.21759948242698,53.210144137920615],[-122.21940406218164,53.20962507907154],[-122.22100775633419,53.20916746611882],[-122.22320169542782,53.209334515432516],[-122.22616267883234,53.209325707994076],[-122.2287276866594,53.20903943165522],[-122.2305258933817,53.20943160393998],[-122.23443268519524,53.20993793900184],[-122.23586406787503,53.21056911333169],[-122.23796620762803,53.212105681157105],[-122.23825144862491,53.21244628478352],[-122.24063600017658,53.2126689900762],[-122.24349234422145,53.21231814838945],[-122.24577730588956,53.21180159334177],[-122.24938990022736,53.21122495952923],[-122.25100416815454,53.210306165838126],[-122.25069631715714,53.20801830626182],[-122.24964643899436,53.205965552151746],[-122.25029949216628,53.204193931642735],[-122.25095197912765,53.20276671864654],[-122.25331728814224,53.20167589896571],[-122.2571300275824,53.200694203231954],[-122.25931447792073,53.19977649802544],[-122.26139467376032,53.19765891617139],[-122.26299859433254,53.196338551680626],[-122.26394152286308,53.194508139071154],[-122.26477887739898,53.192851654792676],[-122.26553662952306,53.190905436148846],[-122.26609314775946,53.1895362743041],[-122.26856235171722,53.188956695637444],[-122.27321458528291,53.188145154292386],[-122.27567908644339,53.18625318403855],[-122.27662607044638,53.1843678375695],[-122.27766252723553,53.184023474741615],[-122.27841925071942,53.18293319358258],[-122.28125812573086,53.18172941119525],[-122.2835512017311,53.181779017187395],[-122.28582409519007,53.18086196207206],[-122.28658037856452,53.18011549802836],[-122.28839257200248,53.18051061580561],[-122.29009466923561,53.18010737098516],[-122.29267292354922,53.18032842343021],[-122.29408952027583,53.18026958329784],[-122.29608731439971,53.18060364384523],[-122.29847012459332,53.181514041004625],[-122.30085805011542,53.18150906087082],[-122.30008195570377,53.18042570343374],[-122.30168900542769,53.17956270223989],[-122.30492747789354,53.178586285003924],[-122.30500240058021,53.1766981932567],[-122.30517749297248,53.175038168494616],[-122.30537251142792,53.17486811756858],[-122.30583768232366,53.17332429758857],[-122.30800434469273,53.1710336614849],[-122.3100862310569,53.170228009832165],[-122.31246881262389,53.17096535714737],[-122.3134406954799,53.17290402491085],[-122.31354105576668,53.173474840552046],[-122.31686491602228,53.173922238385515],[-122.31953829033661,53.17459948256333],[-122.32183117052077,53.175164428697656],[-122.32544012746176,53.17527040809087],[-122.32885887630017,53.17531932403661],[-122.33295434264082,53.17604767086528],[-122.33620513846105,53.17820873419065],[-122.33773354675462,53.17997703141677],[-122.33862767758283,53.18300238661811],[-122.33967011174506,53.18414305941091],[-122.34282581296927,53.18515777178837],[-122.34492475691715,53.186412368637725],[-122.34588197771696,53.186978187043984],[-122.34758950756873,53.187203110728035],[-122.34959839190468,53.188112108251254],[-122.35189234773053,53.188503132537114],[-122.35474923535212,53.190551633245235],[-122.35694859379578,53.19134519939801],[-122.35914785077333,53.19196650801642],[-122.36162850877338,53.193157920536486],[-122.36591548011806,53.1936059844002],[-122.36866488950204,53.19359557381236],[-122.37189875191889,53.19301545524271],[-122.37665648879027,53.1930534973361],[-122.38008743034779,53.19332675251028],[-122.38028423766366,53.194185374491504],[-122.38355083554276,53.197433678670436],[-122.38862989869294,53.202154043584535],[-122.39169283204849,53.20357961495993],[-122.39636527934148,53.20515954129312],[-122.39981192209017,53.207376786705744],[-122.40182543987696,53.20913699272791],[-122.4043292964301,53.212905505830705],[-122.4050161620038,53.214898508715365],[-122.40837196288254,53.216431203299685],[-122.41028926158201,53.217741270418394],[-122.4134399743852,53.21903929889269],[-122.41554228044131,53.22012041627876],[-122.42088742799665,53.22124174917639],[-122.42364194228648,53.22083584782824],[-122.42423990679369,53.22069572826227],[-122.42649142175607,53.2201949290035],[-122.42877100760182,53.22007242219802],[-122.43305037036306,53.22011499514747],[-122.43304207142367,53.21914552011323],[-122.4346623258992,53.218109535676625],[-122.43502009514458,53.217075355051406],[-122.4362505293474,53.21638378897275],[-122.43615853785789,53.21587116374719],[-122.43679659194954,53.213472908504684],[-122.43867576152842,53.21060941930541],[-122.43968157725203,53.20723166803632],[-122.44088419012448,53.204369116237544],[-122.44114462467135,53.20145524220952],[-122.44122877272211,53.19974254986488],[-122.44330573546208,53.19933661379949],[-122.44521785100426,53.19892570156909],[-122.44795246770099,53.197484950233914],[-122.44794231630084,53.19617608192593],[-122.45020572917088,53.19462018292273],[-122.45133383009438,53.19370553938156],[-122.45295417025852,53.19300923796243],[-122.45703821724858,53.1924820375471],[-122.45654682037954,53.190998909560825],[-122.45671565013026,53.18934315333543],[-122.459659268769,53.18915976818138],[-122.46211066039731,53.18732154966898],[-122.46515820030001,53.18679114292331],[-122.46647079025782,53.18581849231954],[-122.46570086581913,53.184790384434],[-122.46625764194229,53.18387761805029],[-122.46693115273463,53.18444234845065],[-122.46903247398365,53.185350329320535],[-122.46988276767195,53.1839785138686],[-122.47016782258173,53.18380136644356],[-122.47203891186689,53.182250773126434],[-122.47554966815567,53.18138056117241],[-122.47888774719387,53.182221426756904],[-122.47968021156164,53.18370330902992],[-122.48263024028007,53.183977796613206],[-122.48557365341445,53.18397101466785],[-122.48805309774201,53.18412707450331],[-122.49053137261323,53.18520176276061],[-122.49204033882725,53.183483088794205],[-122.49430231605638,53.18227803958239],[-122.49552905882972,53.18124421379765],[-122.49551331278731,53.17998513009508],[-122.4948369633246,53.17872667058588],[-122.49520335505964,53.177928731482325],[-122.49557233675678,53.176555968127246],[-122.4965938267911,53.17546052269066],[-122.49982974677116,53.174995411563906],[-122.50117618974843,53.174143434645146],[-122.50247464843329,53.17332648688211],[-122.50321903313463,53.17194853159228],[-122.50500445159365,53.170686584584296],[-122.50469643053285,53.169146836314916],[-122.50488824158982,53.168460376016625],[-122.50686426116054,53.167250593182416],[-122.51197406705984,53.16425426951604],[-122.5156408008429,53.161096898704386],[-122.51998163137333,53.158676064236175],[-122.52435416024741,53.15860272299354],[-122.52806303150898,53.158753725895814],[-122.53318451752857,53.158329622100524],[-122.53656970350153,53.15528622728513],[-122.53986639375131,53.15258509657716],[-122.54298986369527,53.15199891373674],[-122.5444152788365,53.1519968270004],[-122.54858166650963,53.15094628381244],[-122.55017064096769,53.14893762507056],[-122.55329612714513,53.14795302312976],[-122.55654755215006,53.14873706455341],[-122.55920095985276,53.149128389397696],[-122.56225646723439,53.1497411071895],[-122.56481536217092,53.14926525937156],[-122.56593198052794,53.1478910463621],[-122.5678119529865,53.14616657082194],[-122.5702719378209,53.14524185942185],[-122.57329993916409,53.1439695681268],[-122.57367284012973,53.1436247884715],[-122.57574133368679,53.14178843618128],[-122.57856598044691,53.14080009024992],[-122.58160590061985,53.13993007703772],[-122.58158869944438,53.13884319733816],[-122.58157018550891,53.137586889981954],[-122.58021181817314,53.13565188929197],[-122.58000431998484,53.13450790081084],[-122.5836624012484,53.13117503246024],[-122.58942461113217,53.12851694632306],[-122.59292731966481,53.12747157304475],[-122.59593814529323,53.125455673318655],[-122.59754152230774,53.124533237429354],[-122.59942644967367,53.123837627168086],[-122.60197238803346,53.122563678758716],[-122.60300162324818,53.12113335187107],[-122.6049687254056,53.11940972109419],[-122.60591140296636,53.11905710547059],[-122.6090275746716,53.1179564336595],[-122.61411972613362,53.121760904324454],[-122.62376211899546,53.12548208496813],[-122.63347682328941,53.127371635023934],[-122.63956520184328,53.1271668916252],[-122.65002665919737,53.12853731751206],[-122.655549246201,53.129421679558504],[-122.66478178774584,53.13022600878065],[-122.6757307500431,53.131707130836375],[-122.6842251547109,53.134287713253926],[-122.69265441142323,53.13886627685169],[-122.69909443951549,53.143397068042994],[-122.70832607837245,53.15043014086324],[-122.71559878274552,53.1583854791399],[-122.72065069952646,53.165213210645646],[-122.72700029251166,53.17546207644144],[-122.73112749370931,53.183038617907656],[-122.73790699005507,53.19031290112207],[-122.74382538685487,53.19690410983467],[-122.750066908756,53.20498089721799],[-122.75704169944851,53.212537880515484],[-122.75947545858607,53.22115343583116],[-122.76122014263069,53.227597263716554],[-122.76457931045006,53.23455391845708],[-122.76964582374325,53.24160743660431],[-122.77681414357333,53.24813184778062],[-122.78388582350087,53.25437442432177],[-122.78731693882828,53.26006708263483],[-122.7889701156933,53.262057652941806],[-122.79464145046227,53.2640172392638],[-122.80062814948155,53.26380769151989],[-122.80339464394116,53.26361986873441],[-122.80910861582694,53.26363413366452],[-122.81635899126344,53.26381609692146],[-122.82265748044348,53.26405679119587],[-122.82802493409615,53.266080049389075],[-122.83622536199387,53.271449937010466],[-122.84018674677016,53.27399020191006],[-122.84230695016211,53.27500662035415],[-122.84722589991269,53.278230398124855],[-122.85100114654516,53.281064179775285],[-122.85229494964987,53.28368678788084],[-122.85426300473114,53.28715711123111],[-122.85589462659402,53.2921167024107],[-122.858867474461,53.29786702616002],[-122.86124589837652,53.30231133426542],[-122.86252357788999,53.304358620647136],[-122.8657639649935,53.308964069726265],[-122.86673773853089,53.31004165620476],[-122.87119135283643,53.313325401965784],[-122.8752507606393,53.3156392213354],[-122.87923006343624,53.319040779969704],[-122.88138637347818,53.32205397850907],[-122.88238566879639,53.32422095250514],[-122.88365811786487,53.326157910988],[-122.88629034175602,53.32396286353913],[-122.88713055653976,53.3229862878183],[-122.88708485863958,53.32115834709992],[-122.88562545061261,53.31950976602264],[-122.88272812789246,53.31775894884357],[-122.87896539568933,53.31549749262093],[-122.87508961335695,53.31232908711991],[-122.8736203525079,53.31062063709349],[-122.87728373931827,53.30791297323286],[-122.87970331696012,53.30491909016454],[-122.88540329115241,53.303564977716206],[-122.88794437888785,53.30645922359998],[-122.88887745484642,53.310339038133066],[-122.89000169005347,53.31387508740918],[-122.89382686685532,53.314477597903384],[-122.89932293087362,53.3128359998249],[-122.90359253541699,53.311487944834894],[-122.90651105264998,53.309467592848755],[-122.90739003818264,53.306310249858825],[-122.90782434135438,53.30408327973487],[-122.90966469900445,53.30115504886441],[-122.91499719755306,53.300481877085225],[-122.92012020460196,53.29958324429461],[-122.92619445551767,53.29822684211448],[-122.92951840575516,53.29722458678662],[-122.93273777662493,53.296002549376475],[-122.93778939842485,53.296073558446004],[-122.94112801894607,53.296107501121526],[-122.94414360878095,53.29436856988369],[-122.94848829856632,53.29713518502099],[-122.94877991650138,53.29747291824432],[-122.95288281927901,53.297553649880584],[-122.95467251657921,53.296112662515235],[-122.95791262393149,53.29626023513601],[-122.96026129850567,53.298753179847544],[-122.96334654677759,53.300218138275575],[-122.96501026192453,53.29780549985495],[-122.96704783465944,53.2952139985115],[-122.96874663231121,53.29440125253281],[-122.9700456150145,53.293078146656654],[-122.9693507241616,53.29164919007986],[-122.96750433185832,53.290121275231975],[-122.96743886672698,53.28726463786933],[-122.96596936178553,53.285730065281854],[-122.96222899814703,53.284391903127904],[-122.96397316529179,53.281689780390536],[-122.96847677254415,53.28245363491451],[-122.97353610883016,53.28281323497206],[-122.97782379527834,53.282604616512536],[-122.98221945926268,53.2831992408344],[-122.98519347074111,53.283688618998525],[-122.98965197403032,53.283194606732096],[-122.99199940766093,53.28128955211866],[-122.99550368082403,53.280458843723125],[-122.9966334992235,53.279592064830176],[-122.99763266151571,53.27781255512242],[-123.00113762985787,53.27675464038529],[-123.00496805507521,53.27746645064199],[-123.00754092942118,53.277670420317804],[-123.01032008646534,53.27793559852957],[-123.01102065778227,53.27930053227718],[-123.01123661787459,53.28049906620901],[-123.01325610017383,53.28151033204351],[-123.0158203532232,53.28120201747629],[-123.01822963376641,53.281808673550664],[-123.01747352464083,53.28250226597363],[-123.01391795641185,53.285337251937925],[-123.01452750997672,53.28692861311011],[-123.01645493231635,53.2875450332309],[-123.01818719401922,53.28815596063227],[-123.01906259798673,53.28918209859586],[-123.02126988289324,53.289673149731016],[-123.02386306592324,53.29045360890921],[-123.02447983774641,53.29216225722909],[-123.02734843238893,53.29288113858006],[-123.03015448889744,53.29406204832819],[-123.03137566449716,53.29381619224549],[-123.03319427100945,53.29363404079643],[-123.03704179845653,53.29520186982656],[-123.0396581378085,53.29694741829672],[-123.04187573966549,53.2977293069174],[-123.04401723770795,53.29959803463989],[-123.0465975912575,53.300146105644394],[-123.04822301036376,53.30036145669197],[-123.05233311056281,53.30055777656868],[-123.05357618139207,53.300429970558504],[-123.05400522999174,53.298597220523135],[-123.05527538431728,53.296356449305044],[-123.0568303617964,53.29348246285608],[-123.05850171842093,53.291525758637896],[-123.06162818344623,53.290925948227695],[-123.06381329103182,53.290446296106545],[-123.06646252249891,53.28956656630769],[-123.07177955731225,53.28883505545957],[-123.07466169673418,53.289148888607166],[-123.08174796603821,53.29046089202415],[-123.0863371076782,53.29133330507024],[-123.0893968517641,53.2914756590836],[-123.09643401557565,53.2943867249903],[-123.09879334785644,53.29355805578925],[-123.10389481100661,53.291800049523744],[-123.10721699268916,53.29096893080155],[-123.11159477579417,53.2907604822551],[-123.11596229623684,53.29026121928689],[-123.11930884598789,53.29016925844901],[-123.12549670054679,53.29011242736134],[-123.12646020229005,53.29010436511991],[-123.1281659548207,53.289801986966424],[-123.13207328896539,53.28964867837386],[-123.1370957638221,53.28880399763328],[-123.13875969842492,53.29044693304099],[-123.13955123303315,53.29186531808849],[-123.14597742599804,53.303409476669735],[-123.16147431313466,53.31578471912617],[-123.17395472321763,53.32252366572792],[-123.19893992797411,53.32833404811629],[-123.21791105419905,53.33112140647047],[-123.24619059419801,53.33208747219923],[-123.29275938435212,53.33507933761528],[-123.31655840744332,53.33928689847357],[-123.33326771046707,53.34253135772542],[-123.34293562052336,53.343050044906825],[-123.35824518062614,53.341282606706166],[-123.36784139617077,53.339571786704425],[-123.37761268368327,53.34060059041298],[-123.39322474885255,53.34534309087677],[-123.40823979460816,53.348825516611946],[-123.41488686912844,53.350977490454206],[-123.42514511539194,53.35223148904437],[-123.43732841581803,53.35379851215729],[-123.45266007414052,53.355389171096775],[-123.46103653248588,53.35739952201064],[-123.46526758497033,53.36095258265368],[-123.47234686448918,53.369789328867505],[-123.48015517913556,53.374554999505314],[-123.48459687511685,53.378674466764316],[-123.48575515828304,53.387297423496605],[-123.48558207672197,53.39347537444597],[-123.48713613014057,53.39952277268096],[-123.48653075905513,53.404102028493845],[-123.4868548020961,53.40827270041919],[-123.48995886227297,53.41212423642297],[-123.49640248840073,53.41336518490678],[-123.51377488022068,53.41503178911675],[-123.5313916955192,53.41538267790686],[-123.55270979401446,53.41539403693425],[-123.5720208193485,53.41514824936341],[-123.58624468917345,53.41415570661772],[-123.59774429003429,53.40960428777966],[-123.60518597582137,53.40687127263076],[-123.62449611788976,53.40896194272359],[-123.64544948089033,53.414336973770986],[-123.6664922511104,53.42200043270141],[-123.6832895677855,53.42331082281638],[-123.7020309943176,53.42551156181574],[-123.71529430309722,53.42469354239014],[-123.72791894355477,53.422279829794526],[-123.74075887370927,53.42032394274371],[-123.74790102368888,53.42416465436188],[-123.7577145508426,53.43255079012237],[-123.76679570792365,53.43945179780214],[-123.77228140971967,53.44274988746133],[-123.78155161823234,53.4467273762448],[-123.79105927210556,53.45225237604869],[-123.79587762502446,53.455385618307524],[-123.79947063085373,53.461168507997705],[-123.8056851206809,53.465651819627816],[-123.80866415868934,53.467899395102435],[-123.81455270919649,53.466780807706975],[-123.82815183383902,53.46463035470799],[-123.83947695872332,53.46291293519462],[-123.84397239729539,53.463012814347756],[-123.84960427217327,53.46687576103613],[-123.85013547264208,53.468301404855296],[-123.85514299001363,53.4687373408077],[-123.86655704508198,53.46913265901437],[-123.87563004502381,53.473111870602956],[-123.88956507580399,53.4762731997495],[-123.908240585757,53.47620776445569],[-123.92395541997081,53.474299254894454],[-123.92661811360259,53.47391187107251],[-123.93455219300111,53.471383983179145],[-123.94571791608645,53.46823103345428],[-123.9524945380113,53.465544188038585],[-123.95752145487494,53.462485182456604],[-123.95998618574161,53.45993185687624],[-123.96269665870273,53.460401279432936],[-123.96989959358089,53.4610301540956],[-123.98048424196784,53.460112235372435],[-123.9898361656515,53.4593844026177],[-123.99555527540532,53.458833521774764],[-123.99688376223106,53.458523567953506],[-123.99991231397826,53.45707495544681],[-124.02066234855158,53.44898771958581],[-124.03288631223654,53.44552777194568],[-124.04059586709162,53.4423762714204],[-124.04701644558894,53.43608154738383],[-124.0524536403699,53.43142957243442],[-124.05983637594328,53.43102108995824],[-124.06843199322033,53.431470081308646],[-124.07387993333722,53.43178858543686],[-124.07702973698503,53.432205928243135],[-124.08536807397196,53.43168521838997],[-124.08920593037955,53.43091026824812],[-124.09160601315473,53.42989420832692],[-124.09756372149168,53.42861558850053],[-124.11225462867604,53.43075328986046],[-124.11654298694452,53.43203427005257],[-124.12846772018908,53.43398272892627],[-124.13649352228116,53.435056031080805],[-124.13867366079597,53.43557815173918],[-124.14410981433922,53.43652639810476],[-124.14909884646126,53.435980941658315],[-124.15236017916735,53.4352560916889],[-124.15562891562335,53.43401578146276],[-124.16263877784928,53.4327972827657],[-124.1685775007589,53.432257263865864],[-124.18236620635957,53.43198097863008],[-124.19068848847743,53.43179445221615],[-124.20531959928472,53.43192275980073],[-124.21256774423064,53.43321789454838],[-124.22008337521332,53.43604674891428],[-124.23337999426734,53.44318782732464],[-124.24193496296473,53.44722574317171],[-124.24936748773716,53.45650483983974],[-124.25792756262946,53.460885054369854],[-124.26054314678308,53.465180281394446],[-124.26492363159608,53.46771047053935],[-124.26832853853234,53.47120457327289],[-124.27106150026604,53.47379013816944],[-124.27534742627728,53.475349261484155],[-124.27842237910296,53.47513596368133],[-124.28180933798964,53.47172510562935],[-124.28275024574397,53.46607256636757],[-124.28475449645362,53.45951701888168],[-124.29593991910906,53.45288237650285],[-124.30862372905267,53.44830796824185],[-124.32261559715732,53.445680242315994],[-124.3374570582116,53.445566619604904],[-124.35376470548013,53.45001968367617],[-124.37054098876689,53.45687928222409],[-124.38427744704313,53.46086146933132],[-124.39227674588031,53.464886943727436],[-124.39559058631487,53.46826511383925],[-124.39715869001814,53.474662478848764],[-124.39622619466319,53.4816805683321],[-124.39488359353506,53.48242277697987],[-124.39598680805,53.48636666517029],[-124.3963107177429,53.49173150585608],[-124.39292005472507,53.49623287665008],[-124.38596625090219,53.50140929907503],[-124.38133325824718,53.50476071341688],[-124.38543178243968,53.507053866336555],[-124.39797067326853,53.50921282711073],[-124.41557235151144,53.51103942501628],[-124.4230437019854,53.511744546642596],[-124.43243459657667,53.51205984357704],[-124.44240649133556,53.51220158620829],[-124.46326772239154,53.515919095291146],[-124.48789990116298,53.52711549063481],[-124.52390039693253,53.53456474205967],[-124.52972177686728,53.53806227633034],[-124.57051597215495,53.54693817243736],[-124.57272831116715,53.54505655699108],[-124.57802850823137,53.54266829611914],[-124.58168452809421,53.54102049050741],[-124.58466356235927,53.53925476402782],[-124.5849637571996,53.53708191102132],[-124.58325424867022,53.53485330605995],[-124.58201922067862,53.53291041122529],[-124.58198143909985,53.53268587902582],[-124.58173541840833,53.53056872752587],[-124.58164140526942,53.52977099272833],[-124.58155367339103,53.52834029467752],[-124.58050971255581,53.52656827281301],[-124.57706293263914,53.525649394098906],[-124.56978911638555,53.52477764037549],[-124.56653082679698,53.524548652329926],[-124.56386463909544,53.52248360185418],[-124.5640622660998,53.5198014293617],[-124.56406911866588,53.518717490723645],[-124.56207347809118,53.51562796910614],[-124.55750616780014,53.51128160017634],[-124.5534986476963,53.50870091257989],[-124.54901489368649,53.50635687292999],[-124.54500444503373,53.50388901168541],[-124.54461808405956,53.50326300965193],[-124.54319809089199,53.500631128159895],[-124.54321763839415,53.49789018772789],[-124.54256244442728,53.49543400624018],[-124.53979519670773,53.493320060927545],[-124.53503030468855,53.491307580577526],[-124.5335053178975,53.49084570146478],[-124.52966970953412,53.48992453751871],[-124.52547247771415,53.488550039656936],[-124.51917894630975,53.48408043193895],[-124.51765236063024,53.482819997322025],[-124.5166203553985,53.48081722210906],[-124.51691558039131,53.4780174868439],[-124.52038408037198,53.47602916076972],[-124.52547820595437,53.47375720018525],[-124.52778231798126,53.471359857145785],[-124.52780603174335,53.46982119275792],[-124.52727432318764,53.46388005727471],[-124.52702226987103,53.45685606162984],[-124.5270466444709,53.453145347954845],[-124.52708976061503,53.447607358468474],[-124.52711323910003,53.44435265364446],[-124.52712611113238,53.44355447431677],[-124.52736120962116,53.437273710842916],[-124.52702383647365,53.43053597200369],[-124.52612886283802,53.41991160761801],[-124.52484663028166,53.41174356236266],[-124.52421483942885,53.40825882172928],[-124.52062190935517,53.40151249955463],[-124.5188248238958,53.39859755992952],[-124.5201854139356,53.395060227950204],[-124.5216462058739,53.391238391532674],[-124.51815668583113,53.38460413209768],[-124.51427111186045,53.38025737481735],[-124.51181236798871,53.37734242671581],[-124.50716308505571,53.37247545429085],[-124.5037534066177,53.369213896785965],[-124.50224189536443,53.36681207170925],[-124.50092381684013,53.36321256057797],[-124.50095937303274,53.35967380526541],[-124.50096303069071,53.358301195056605],[-124.50077253373969,53.357728996461525],[-124.49697263693147,53.35532117714603],[-124.49251320882105,53.351997229324965],[-124.49015218099011,53.34896421443746],[-124.48791009235252,53.342625918494484],[-124.48406869432254,53.33222140480224],[-124.481650079955,53.324566244523176],[-124.48100597849039,53.322393641896326],[-124.47810497085268,53.314794940074655],[-124.47718815009794,53.309767520205845],[-124.4771961013055,53.30788057903149],[-124.4777046064073,53.304628470392004],[-124.48222411405953,53.299840950496765],[-124.48969757683582,53.295688135517366],[-124.49793574600055,53.29028837211711],[-124.50321440767279,53.284760004180484],[-124.50362369845814,53.28127344368726],[-124.49381305104434,53.27982652045864],[-124.48132894359838,53.279165982154055],[-124.47219077688689,53.27869292726364],[-124.46142417053193,53.27712116743051],[-124.44848014402835,53.274691294689084],[-124.44164015431676,53.27266863629287],[-124.44185915509539,53.26958592839332],[-124.44544591525477,53.26320236041727],[-124.44852863937716,53.25823918928654],[-124.4506520729367,53.254423243134056],[-124.45161778834361,53.25431034386222],[-124.45314823823163,53.25231545003925],[-124.45430961325158,53.250549379662814],[-124.45508747636163,53.24940864368327],[-124.45603885849634,53.24804043546324],[-124.45805913602844,53.247017822783334],[-124.46081626130838,53.24679532991184],[-124.46367934208436,53.24737594845001],[-124.4664244740145,53.24789726469086],[-124.46786502935365,53.24669833440598],[-124.46930107858518,53.24562148435735],[-124.47418114132796,53.243178683978634],[-124.4755244692737,53.24174980690137],[-124.47876297624687,53.24107700968854],[-124.48277020934442,53.24074341334377],[-124.48639917715064,53.238808551925594],[-124.48728161480771,53.23681392112977],[-124.4879443600301,53.235500618790034],[-124.49090979139136,53.233624395507746],[-124.4948191107323,53.23306559749155],[-124.49825818196032,53.23221439624868],[-124.50017992047043,53.23010956455229],[-124.50246895453388,53.22822730526553],[-124.50361931123089,53.22754312621807],[-124.50611949832286,53.224351227418964],[-124.50793842979073,53.22258564092527],[-124.51138449976665,53.22065108994491],[-124.5131009058199,53.219228721554764],[-124.51435088282928,53.21740659208443],[-124.51482734814985,53.21666287371736],[-124.51646462461916,53.21534872970101],[-124.52102731130255,53.21536261786873],[-124.5252100172607,53.21594198408084],[-124.52797120475071,53.217257167496],[-124.53425229123648,53.21750366886967],[-124.53852714641776,53.217165368195396],[-124.53939321906631,53.21642860125682],[-124.54254198491482,53.213917424271166],[-124.54676831967375,53.2093014473952],[-124.54946121238105,53.20473938703146],[-124.55032438076033,53.20188567374101],[-124.55033149523949,53.200802695195065],[-124.5503518093289,53.19845918020279],[-124.55035259783082,53.19668525978636],[-124.55045613694259,53.194977590713826],[-124.54979539805919,53.19412007737971],[-124.54847007297985,53.193830978809046],[-124.54676962906342,53.19354397830479],[-124.54495440872421,53.193541309530204],[-124.5418104772662,53.19421984348247],[-124.53818715597656,53.19444077072992],[-124.53297048737772,53.19431519979321],[-124.52839782635819,53.19379118029823],[-124.52326825400989,53.1933222401182],[-124.51642042577363,53.19308369954828],[-124.5109049099566,53.193355725107644],[-124.50557228100212,53.19396934412432],[-124.50300593623398,53.193569371579706],[-124.50072949097546,53.19218742102234],[-124.49674509292778,53.19201253000515],[-124.49455985762332,53.190183350473546],[-124.495148493929,53.187552853008675],[-124.49783380923554,53.18459035946147],[-124.49945923374763,53.1831675844966],[-124.50185756307765,53.18151643720348],[-124.50138582075658,53.18128465482136],[-124.5013988099957,53.17837732399394],[-124.50142826076532,53.175005121346565],[-124.50116341921468,53.17232118956878],[-124.4996623066729,53.169405306391326],[-124.49530779278008,53.16494028240734],[-124.49221323764323,53.16048104765864],[-124.48920656018225,53.15567767187388],[-124.4866537284305,53.152871984450414],[-124.48457913663964,53.15053238705741],[-124.48251064707168,53.148865224776195],[-124.47852259171118,53.14765579683743],[-124.48099990796803,53.14669416057232],[-124.49120769771986,53.140324913205156],[-124.49580000001427,53.137590693510724],[-124.5006611654642,53.13486250452133],[-124.50626305104254,53.13447671384087],[-124.53088374192195,53.13172287123595],[-124.57003026599885,53.128999826440754],[-124.5774428267003,53.129069612274755],[-124.6094318384434,53.13476802072757],[-124.65111064119226,53.140867189297126],[-124.6664971259412,53.14139125503449],[-124.67808190382415,53.14083209429046],[-124.69386159116807,53.13833023954113],[-124.70003967089372,53.1391328511378],[-124.71342190162939,53.14496169439543],[-124.71988028264903,53.14793632213387],[-124.73013896712095,53.14965266519722],[-124.7584492529547,53.15114145889179],[-124.77375593327353,53.15251128360883],[-124.7805942980648,53.15496596487796],[-124.78629456243232,53.15793411077716],[-124.79836189647875,53.15947587621576],[-124.80216175802401,53.16026965138028],[-124.80606760090072,53.16049960980135],[-124.8143390888975,53.15792703255366],[-124.82735777570129,53.15437906759004],[-124.83619325437711,53.15300508021406],[-124.84180264324112,53.15339851922151],[-124.85196772447291,53.15436487321811],[-124.86317708431672,53.15441257074814],[-124.87173515125122,53.15440426978555],[-124.87913937014463,53.15325602975728],[-124.88294938177653,53.151994463250745],[-124.88701843716228,53.14999117001816],[-124.88977578445393,53.14599207089179],[-124.89184633096235,53.14073538357575],[-124.89194370738174,53.14044943483222],[-124.8925157236679,53.137481969464204],[-124.89468327163381,53.13421957939298],[-124.89629168304481,53.13170774925537],[-124.89258084962685,53.126968966811916],[-124.8840289641409,53.12183708684193],[-124.8799290113676,53.119440654227986],[-124.8725236097867,53.11522809533028],[-124.86454058429365,53.11083524832092],[-124.86007271953358,53.1088385212473],[-124.86757929387596,53.10917736402987],[-124.87877481498971,53.11099351520381],[-124.8875262178015,53.112981157118774],[-124.89559719591094,53.11525369029029],[-124.89938680507679,53.114626773945616],[-124.9067861425173,53.112787102598254],[-124.91039636845058,53.11038656584581],[-124.90734181862005,53.106333299050746],[-124.9036308418915,53.10279603774534],[-124.90334100837315,53.100112385570775],[-124.90503951561352,53.09520097048481],[-124.90568922363413,53.09148331335946],[-124.90606271397185,53.086287284657026],[-124.90680093409767,53.080287795308315],[-124.90755429723498,53.07543478396932],[-124.91124908333823,53.07194520548848],[-124.91853575595319,53.07010490934386],[-124.92678861463602,53.06906801237862],[-124.93740848103266,53.06905534126877],[-124.94783677606802,53.06892570949198],[-124.9456492203256,53.06607056019942],[-124.93415446546075,53.059860730718285],[-124.92827124167287,53.05478329052435],[-124.92702419148776,53.05324739674878],[-124.92198379063144,53.04742870381241],[-124.92045418783712,53.04114942605791],[-124.92241764044647,53.03446052987262],[-124.92241961516234,53.0332049081376],[-124.92334006026053,53.02755197462297],[-124.9234300034588,53.022235471084635],[-124.92322914328437,53.01955031130815],[-124.92349523378786,53.01612476053077],[-124.92415789822667,53.015322837966615],[-124.92529603622091,53.013439361134324],[-124.92897701830996,53.01200258712021],[-124.93277636448235,53.01416845049953],[-124.93364162125945,53.01599896984184],[-124.93505377946128,53.0162778707115],[-124.93714169147245,53.015819884212526],[-124.93875497787502,53.015822083604455],[-124.94073980637341,53.01530202814425],[-124.94263708579636,53.015296639125495],[-124.94367348041342,53.015068910130765],[-124.94499943732549,53.01460956228817],[-124.94574479579018,53.013467593276474],[-124.94650803462272,53.012205307820594],[-124.94943646140408,53.01157026403435],[-124.95228940208024,53.01156986816967],[-124.95492682781403,53.01122234355153],[-124.95824525848545,53.00990247842174],[-124.96372095501721,53.00646952488543],[-124.96636006312917,53.00480783170821],[-124.96788139037535,53.003659639547124],[-124.96901430922664,53.002513626427906],[-124.97368825801261,53.00005093519339],[-124.97966496845825,52.99865553093638],[-124.98232190610256,52.99744972945102],[-124.98485798632444,52.99567132018233],[-124.98693373465574,52.99315208785018],[-124.98833864098121,52.99120866568725],[-124.99257893701493,52.988675945865396],[-124.99865661387707,52.989236494505406],[-125.00434706423326,52.99167610010729],[-125.00862055928286,52.992801357518005],[-125.01241764127728,52.99387764272291],[-125.01869365172314,52.99688398856686],[-125.02088297170208,52.99842342563181],[-125.02459085036449,52.99886709937594],[-125.02781250337044,52.999028180684824],[-125.03102514129593,52.99827580335042],[-125.03500050401108,52.998780183385335],[-125.0366930950386,52.997230220023134],[-125.0409624808398,52.99727566699836],[-125.04607512751272,52.996339974464085],[-125.05015977590666,52.997298573595],[-125.05366378305578,52.99751837412395],[-125.05734965812125,52.99761849917016],[-125.06246923967439,52.997030105845596],[-125.06424923879145,52.9948517810227],[-125.06776803203242,52.9957526079493],[-125.06830348002892,52.99312230081466],[-125.07342608511443,52.99304781674742],[-125.07549389754118,52.991331032543144],[-125.07775458660883,52.98966167455163],[-125.08513712509985,52.98860811813181],[-125.0880643374089,52.98785366601076],[-125.0916567436153,52.986702528553565],[-125.0961084016241,52.98725334796999],[-125.10038377054921,52.98838031853997],[-125.10360608349664,52.98848387355935],[-125.10880993105059,52.9880633206477],[-125.11410794544022,52.9874168943633],[-125.1172281246867,52.987404443899756],[-125.12064879434317,52.98802000232843],[-125.12492809991954,52.989715377724806],[-125.12949018901675,52.991469823360234],[-125.13536488504968,52.991100679770646],[-125.13857155384882,52.990516238932436],[-125.13958935602201,52.98817322375354],[-125.1432713566997,52.98621043240077],[-125.14532917683688,52.98409007368732],[-125.14805969363036,52.98190787134177],[-125.15127116443136,52.981039047203076],[-125.15504521686266,52.9803938076787],[-125.15654295091905,52.97787422892332],[-125.1588869001715,52.97632383052148],[-125.16303670671489,52.974757645701914],[-125.16538959381033,52.97349124878647],[-125.16973761782101,52.972446190687656],[-125.17588677048658,52.97161920938709],[-125.18052181622814,52.971142784960826],[-125.1856266400842,52.97106387672671],[-125.18969849989165,52.9711597496466],[-125.19566787347075,52.971128366629046],[-125.19869719545262,52.971119315435374],[-125.20210602816513,52.971560985339224],[-125.20722476894898,52.97153558883904],[-125.210465413901,52.9730051518427],[-125.21454299935435,52.9744191279697],[-125.21920077005248,52.975134761895106],[-125.22414247442414,52.97665554050273],[-125.22774294066994,52.97726637664375],[-125.23286903772183,52.977696543577416],[-125.23628385359515,52.9778531928507],[-125.24007246295564,52.97880776726595],[-125.24445125965427,52.98015484474709],[-125.25117698194846,52.98046391231647],[-125.2548736698112,52.9807338692498],[-125.25960637776073,52.980651638121884],[-125.26338765689411,52.97948864088498],[-125.26590972178337,52.976907433499086],[-125.27022439162904,52.97420001874588],[-125.2727671328465,52.97298478598018],[-125.27626097433786,52.97199048650034],[-125.28107684474644,52.97134146109329],[-125.28597918656925,52.969088083556066],[-125.290785462125,52.96809066019365],[-125.29464051980753,52.965957804716325],[-125.29785615581878,52.96548171593609],[-125.30088423120043,52.96551989412239],[-125.30560207552601,52.964409285810575],[-125.30967729967396,52.96427075125802],[-125.31532713482056,52.962700736280624],[-125.31797054849125,52.96159548922488],[-125.32399999465319,52.95956389204887],[-125.32975635952994,52.95873281748091],[-125.33411353032609,52.958648267747556],[-125.33959057692635,52.957531627824665],[-125.34348152519081,52.95865042580812],[-125.34765866609035,52.959602591927364],[-125.35306900729455,52.95991369393932],[-125.35610474874613,52.96040657152966],[-125.36320832884253,52.96122286440989],[-125.36861810822751,52.961592637615965],[-125.37314975196082,52.960817313895376],[-125.37605426967112,52.95908855652225],[-125.37848372488459,52.957188023445525],[-125.3814093480903,52.95602737592229],[-125.38876518068363,52.95484098878864],[-125.39688391653968,52.953468675406505],[-125.40238085139127,52.95395388937664],[-125.40588629561762,52.9539318477313],[-125.40927872162231,52.95345529384998],[-125.41306762338131,52.953424930662834],[-125.41848162684097,52.95453370226043],[-125.42283659923383,52.95456296694392],[-125.42758580179702,52.9552237475317],[-125.43278159158693,52.95484379303369],[-125.4368539362112,52.95481739054179],[-125.44186602422886,52.95478633953679],[-125.44972733436616,52.954729201021735],[-125.45417940573387,52.95533036981896],[-125.46053893067841,52.9560835533239],[-125.46591633232566,52.95547830116769],[-125.47273771122458,52.95508994288182],[-125.48305754721001,52.95524326098111],[-125.49005362066482,52.95519588302645],[-125.49563260879756,52.955154347307925],[-125.50185878296139,52.95334144609715],[-125.51096928117627,52.94967672220763],[-125.5200886422695,52.94640857285867],[-125.52382780681069,52.9440924198411],[-125.52835149485975,52.94360468563679],[-125.54160897263553,52.94350912595475],[-125.54749042240756,52.94432075128978],[-125.55425490080779,52.94627055664693],[-125.55989314259148,52.9490287356346],[-125.56585477879025,52.95378297529258],[-125.57849158332402,52.95642407746858],[-125.59072974721823,52.95724825936788],[-125.59716651804813,52.95799712000445],[-125.61464218395466,52.96037063695313],[-125.62183290673867,52.9603110196273],[-125.62739411012019,52.95894822851811],[-125.6329424531932,52.95730556285516],[-125.63952398443256,52.95513970041212],[-125.6459559261833,52.95473843905052],[-125.65087693754175,52.954869109036956],[-125.65560545649839,52.95482924335388],[-125.65948371367644,52.95479849411988],[-125.66471309458612,52.95555081514545],[-125.67173307380335,52.956237877350034],[-125.67951365811419,52.95697028439055],[-125.69228476473846,52.95657180972955],[-125.7003809942764,52.95490234730392],[-125.7094308413976,52.953275580117776],[-125.71955744626558,52.95336119225156],[-125.72859888960917,52.95522230318949],[-125.73928604020765,52.95884113420576],[-125.7458568545473,52.96009256711597],[-125.75252946600547,52.96186153314781],[-125.75832628794033,52.96295376323778],[-125.7626038974968,52.96365439486978],[-125.76699598145957,52.96527056341096],[-125.77160159393753,52.966081882741385],[-125.77336966133988,52.96640688951577],[-125.77293182037958,53.006502661943415],[-125.77197532391953,53.09430355309072],[-125.77073987252979,53.20707797116679],[-125.80666577798375,53.20707199894113],[-125.81333424422013,53.207072051297395],[-125.81999988726558,53.20707227983318],[-125.82666646058244,53.20707213480823],[-125.83333304660844,53.207072170481595],[-125.83999961754854,53.20707184007027],[-125.84666712955865,53.20707224726293],[-125.85333371330611,53.2070717224693],[-125.86000027811575,53.20707194300082],[-125.86666685793995,53.20707178852419],[-125.87333249070109,53.207071822677335],[-125.87999905209685,53.207072038556014],[-125.88666750402996,53.20707188121818],[-125.8933331336638,53.20707190180801],[-125.89999969217004,53.20707211293007],[-125.90666626568789,53.20707194903971],[-125.91333376819823,53.207071975470825],[-125.9200003254099,53.207071617170456],[-125.9266668954953,53.20707201318976],[-125.93333345065636,53.20707202521197],[-125.94000002075359,53.20707167118102],[-125.94666564471406,53.20707149740337],[-125.9533321982084,53.20707150477749],[-125.96000064164235,53.20707170243355],[-125.96666626428775,53.20707152405976],[-125.97333281672287,53.20707153564381],[-125.98000125937045,53.20707172822795],[-125.98666688122763,53.20707154525851],[-125.99333343314163,53.207071543127086],[-125.99989777619953,53.20711206399207],[-126.01165455319754,53.20718319476895],[-126.01213095990336,53.20725877655515],[-126.01238324071457,53.207357343199135],[-126.01263928728515,53.207450862744324],[-126.01290376386176,53.20753262139087],[-126.01317949005251,53.207599257654785],[-126.01346084127177,53.20765804107061],[-126.01374594274625,53.20771178619025],[-126.01403384929198,53.207761048803455],[-126.01432364631329,53.20780806974411],[-126.01461342858742,53.20785396960513],[-126.01490415697356,53.20790043330479],[-126.01519395632033,53.20794857248532],[-126.0154809367037,53.20800007243906],[-126.01576604367632,53.208055488764764],[-126.01605115118525,53.20811034869874],[-126.01633813479432,53.208164651982415],[-126.01662604898284,53.208217825104605],[-126.01691490919119,53.208271006353854],[-126.01720377012245,53.208324177934585],[-126.01749263178381,53.208377357772584],[-126.01778056434797,53.208431648453015],[-126.01806755259571,53.20848650324354],[-126.0183526667276,53.208543042666165],[-126.01863683706105,53.208601257625176],[-126.01891914858719,53.20866171294023],[-126.01919864103587,53.20872440878014],[-126.01947531443894,53.20878934516443],[-126.01974918435546,53.20885764248128],[-126.02001930553028,53.20892930090939],[-126.02028567827536,53.20900487617802],[-126.0205351793231,53.209096703630266],[-126.02076313005152,53.20921038604467],[-126.02097513889848,53.20933862669425],[-126.02117870539207,53.20947527572704],[-126.02138134373632,53.209613609605356],[-126.02158960747792,53.209746331286745],[-126.0218222490569,53.209865612623545],[-126.02203521119357,53.20999665656504],[-126.02222377191617,53.21011986210057],[-126.02229419706802,53.210272219237105],[-126.02230835076156,53.210449790772095],[-126.02230469603604,53.210632976454626],[-126.02233200214518,53.21082455458243],[-126.02236023203405,53.21100324377556],[-126.022452228533,53.21116736503854],[-126.02261737025478,53.211315778141916],[-126.02281439677664,53.21145747161577],[-126.02300110243918,53.211602518900584],[-126.02316437543111,53.211757098083716],[-126.02331827338223,53.21191616035142],[-126.02341872364532,53.212079714455534],[-126.02340194205186,53.212260661868065],[-126.02327448125229,53.212425381214935],[-126.02306071167455,53.21254921928801],[-126.02282160554647,53.21266410786056],[-126.02340126205556,53.2127401799102],[-126.02369484921036,53.212776529084906],[-126.02398936344859,53.21280616409445],[-126.02428668137138,53.21283075165653],[-126.02458588944943,53.21285365304586],[-126.02488507988078,53.21287151650557],[-126.02518427923434,53.212878740186596],[-126.02548157911663,53.21287138976429],[-126.02577794270383,53.212854520147],[-126.02607430363915,53.21283373297986],[-126.02637160757487,53.212809574792345],[-126.02666701862103,53.212782619844035],[-126.02696337289966,53.2127528675039],[-126.02725879528946,53.212721429601686],[-126.02755420113567,53.21268830593162],[-126.02784962115922,53.21265462581832],[-126.02814314993334,53.21262094541712],[-126.02843762362845,53.21258726406149],[-126.02873209647683,53.212553026270704],[-126.02902656846071,53.212518223081766],[-126.02932103918286,53.21248229879182],[-126.02961550861993,53.212445253400745],[-126.02990810019291,53.21240596701301],[-126.03019975924413,53.21236443940156],[-126.0304895253413,53.21232067081996],[-126.03077648225914,53.21227354115093],[-126.03106062911567,53.21222193004566],[-126.03132317213351,53.212137268596145],[-126.03157444707323,53.2120358129873],[-126.03181633745652,53.21192819284671],[-126.03204697728088,53.211827297464865],[-126.03225133822252,53.2117034367267],[-126.03234033586956,53.21158297723447],[-126.03246682501454,53.2114137668424],[-126.03254734510344,53.21123728204769],[-126.03270009153124,53.21108655474539],[-126.03289225154857,53.210948696074624],[-126.03310128092302,53.21081643422154],[-126.03330374982453,53.210681933093646],[-126.03348276429195,53.21052894764884],[-126.03365332230685,53.21036701032298],[-126.03384358168799,53.21022466911313],[-126.03407703199031,53.21012825036408],[-126.03435176572968,53.2100749489731],[-126.03463119909979,53.21002613601527],[-126.03491626202472,53.20998123755405],[-126.03520414858798,53.20994025438282],[-126.03549671904912,53.209902639182985],[-126.03579116700692,53.209867819138125],[-126.03608842236288,53.209835238247344],[-126.03638757080569,53.20980601714098],[-126.03668858093049,53.209778470777096],[-126.03698960763614,53.20975317334738],[-126.03729156528131,53.209728986267244],[-126.03759352407907,53.20970648345478],[-126.03789453874185,53.20968566521199],[-126.03819369246388,53.20966483784102],[-126.03849190159644,53.20964513935514],[-126.03878916717605,53.20962767220607],[-126.03908738612539,53.20961917592588],[-126.03938655601225,53.20961683613704],[-126.03968666091053,53.209619532466895],[-126.03998769881723,53.209625033130465],[-126.04028780702286,53.209631098012316],[-126.04058886009517,53.209636597143785],[-126.04088801935033,53.20963873505154],[-126.04118811959331,53.209636390394124],[-126.04148633756792,53.20962732341065],[-126.04178267146818,53.209609849078525],[-126.04207994710929,53.209589021521346],[-126.04237627544786,53.209566508519146],[-126.04267353265571,53.20954287407025],[-126.04296985807788,53.2095181188424],[-126.043266181429,53.20949167783609],[-126.04356250268289,53.20946356001428],[-126.04385882238061,53.20943432108055],[-126.04415420960609,53.20940340567785],[-126.04444958020753,53.20937136021056],[-126.04474401887438,53.209338202950164],[-126.04503845528474,53.20930335992033],[-126.04533195909413,53.209266831476896],[-126.04562451588383,53.209229191262075],[-126.04591707092638,53.20919042099077],[-126.04620867890631,53.20915053895738],[-126.04649935355643,53.20910840686626],[-126.04678721365522,53.20905899724107],[-126.04707224281186,53.20900118973676],[-126.04735631897633,53.208937215402244],[-126.04763852925734,53.20886931535325],[-126.04792072109815,53.20879918285711],[-126.04820105204142,53.20872960614709],[-126.04848324457575,53.20866170408526],[-126.04876451108765,53.20859829217836],[-126.04904765883411,53.20854047171775],[-126.04933269186179,53.208491621729095],[-126.04962055628313,53.20845228854486],[-126.04998813498403,53.20842131936914],[-126.05020381673391,53.20841226522499],[-126.05049920994972,53.20840877860684],[-126.05079837939147,53.20841369690246],[-126.0510994189501,53.20842644727491],[-126.0514014101198,53.20844424262372],[-126.05170528398091,53.20846763823944],[-126.05200916162869,53.20849383848473],[-126.05231304241393,53.208522269729464],[-126.05261692501297,53.20855182952837],[-126.05291987632941,53.20858025962915],[-126.0532218806442,53.20860701330472],[-126.05352200620634,53.20863097061163],[-126.05381930549663,53.208650437992894],[-126.05411473658859,53.2086637479195],[-126.05440639301838,53.20867033661352],[-126.05469430248687,53.20866852801432],[-126.05497843188854,53.20865607245833],[-126.05522779474107,53.208585928811345],[-126.05544331756225,53.20845586507208],[-126.05564755534948,53.20830284309153],[-126.0558658837144,53.20816324960341],[-126.05611708728713,53.208070140054694],[-126.05638988338941,53.20800111217447],[-126.05667396049238,53.20794215265365],[-126.05696553613278,53.20789216078465],[-126.05726181961109,53.20785111993522],[-126.05755998876019,53.20781792899544],[-126.0578562926013,53.20779257185689],[-126.05815167660784,53.20777506599593],[-126.05845080885457,53.207766511563726],[-126.05875089561238,53.207764687098816],[-126.05905193622345,53.207769018963766],[-126.05935296818174,53.207777831556825],[-126.05965307473024,53.20779000496747],[-126.05995130906985,53.20780441930935],[-126.0602523644536,53.207818831466525],[-126.06055715936635,53.20783548169226],[-126.06086103069087,53.20785661309665],[-126.06116023225982,53.20788558873645],[-126.06145100216204,53.20792520704593],[-126.06172771800358,53.20797828538984],[-126.06197916537646,53.20806106168026],[-126.06219411263469,53.208188106804045],[-126.06238938901468,53.208334772875574],[-126.0625780888912,53.20847752526779],[-126.06272836944765,53.2086348535594],[-126.0629067626615,53.2087770461943],[-126.06313107934133,53.20889401021921],[-126.06336944676158,53.209004235109184],[-126.06361061798951,53.20911222622929],[-126.06384618365199,53.209223572023866],[-126.06406861975996,53.209343896375735],[-126.06427513537479,53.209473182944876],[-126.06447510271573,53.20960751885978],[-126.06466943367971,53.20974466291311],[-126.06486378176183,53.20988236233297],[-126.0650599891685,53.210018375366225],[-126.06526276325611,53.21014991192952],[-126.0654786552639,53.21027303362883],[-126.06572640100899,53.21037428555769],[-126.06598071333308,53.210471060788784],[-126.06641971668182,53.21053131558439],[-126.0667142628338,53.210572039191106],[-126.06700784557414,53.21060100320099],[-126.06730421407924,53.21060755749115],[-126.06760709595606,53.21057713509719],[-126.06787800389445,53.21050191542199],[-126.06812262763127,53.21040262674723],[-126.06835971713492,53.210293814275126],[-126.068592115576,53.21017995788662],[-126.06882450913307,53.21006386925882],[-126.06905784948064,53.209949455690555],[-126.06929775408683,53.20984007500523],[-126.06954329545299,53.20973742170909],[-126.0697897668613,53.20963532305434],[-126.07003718239937,53.20953322332283],[-126.07028554484621,53.20943279858233],[-126.07053671486064,53.20933405668277],[-126.07078976402008,53.20923811853253],[-126.07104562170476,53.20914440993267],[-126.0713052520592,53.20905518895431],[-126.07156769385914,53.2089698825235],[-126.07183201020624,53.20888457437083],[-126.07209725387546,53.20879814468825],[-126.07236343984471,53.20871059346025],[-126.07262962471177,53.20862304163031],[-126.07289768599853,53.20853660841541],[-126.07316669438515,53.208451850081104],[-126.07343663588951,53.208369340260354],[-126.07370938903466,53.20829074489237],[-126.07398309429682,53.20821662978642],[-126.0742586830182,53.2081475500578],[-126.07453615727854,53.20808463502751],[-126.07481646445927,53.208029004457295],[-126.07521397028952,53.20796432695708],[-126.07538460977675,53.20794349613011],[-126.07567527911554,53.20791921839197],[-126.07596972239932,53.20790782628388],[-126.07626793383224,53.207905958665066],[-126.07656991054802,53.20791192150614],[-126.07687282680142,53.20792292912519],[-126.07717669361661,53.20793674076311],[-126.07748150589835,53.20795054204079],[-126.07778537104991,53.20796323174688],[-126.07808828280669,53.207971430850066],[-126.07838837639024,53.207972917772366],[-126.07868657773484,53.20796543324997],[-126.07898007350879,53.20794507131313],[-126.0792697577236,53.20790062767489],[-126.07955472514526,53.207837695867795],[-126.07983123383563,53.20776132460199],[-126.08009928130544,53.20767823617143],[-126.08035794038977,53.20759010733864],[-126.08060813387578,53.2074930296771],[-126.08085363199596,53.20738922348598],[-126.08109631774798,53.20728262225397],[-126.08133710851845,53.20717434574086],[-126.08158072315109,53.20706829857033],[-126.0818149427113,53.20695385906308],[-126.08204822749646,53.20683774365408],[-126.08230406206961,53.20675241789733],[-126.08260498625786,53.20669955098325],[-126.08290505229547,53.206691498829215],[-126.0831508959073,53.20676863233045],[-126.08336029066692,53.20691189297248],[-126.0835687300167,53.20704170943302],[-126.08376874492251,53.20717489259265],[-126.0839612561663,53.207314238291474],[-126.08414254269955,53.20745975816959],[-126.08434254304258,53.207591264266554],[-126.08461096949027,53.20770254551477],[-126.08488489921801,53.2077516460144],[-126.0850102753945,53.207609268826715],[-126.085076476083,53.207415961514016],[-126.08512486125022,53.207227704138695],[-126.0853628616028,53.20713230124659],[-126.08557367528024,53.207045315821354],[-126.08585485036461,53.20696949175557],[-126.08618770455426,53.20694067615039],[-126.08647366909712,53.20691862503533],[-126.08663523452321,53.20705071104901],[-126.08679499671334,53.20721752971443],[-126.08699969818161,53.207347898570255],[-126.08720722058301,53.20747770928362],[-126.0874147281054,53.20760696393158],[-126.08762412628533,53.207735652142546],[-126.08783350956244,53.20786377531892],[-126.08804383823657,53.20799134171025],[-126.08825511464624,53.208119471682494],[-126.08846732025994,53.20824647124134],[-126.08867858303866,53.20837403578555],[-126.0888907923886,53.208501599235525],[-126.0891020727241,53.208629162996196],[-126.08931333932954,53.20875672638277],[-126.08952462221443,53.20888428937267],[-126.08973496226429,53.209012417359496],[-126.08994435825885,53.209140536718685],[-126.09015282762118,53.209269785739615],[-126.09036036792709,53.209399026131294],[-126.09056602128129,53.209529396928076],[-126.09077074677906,53.20966032377481],[-126.09097359909444,53.209791807401835],[-126.09117552356567,53.20992385605438],[-126.09136339373048,53.21006487815989],[-126.09152035163368,53.21022553481044],[-126.09166420937862,53.21039235893234],[-126.09181366326375,53.210551335933594],[-126.09198652188222,53.21068732248557],[-126.09221930602047,53.21077845629206],[-126.09253821490547,53.210797254022566],[-126.09284294827565,53.210763404569676],[-126.09309315775977,53.21067806010944],[-126.09332642098073,53.21055687658958],[-126.09355967033822,53.21043681298376],[-126.0937888577376,53.21017053919926],[-126.09391979453555,53.21000854633544],[-126.09402163906304,53.209841530242414],[-126.09409159445336,53.209666696767115],[-126.09413808761929,53.20948795609027],[-126.09416299947904,53.209307556450675],[-126.09415885033081,53.20912886492025],[-126.09410125386417,53.208950206859974],[-126.09405021500301,53.20877155251399],[-126.09406388197412,53.208595078570596],[-126.09411132438036,53.20841858675506],[-126.09417375723852,53.20824263869714],[-126.094248389517,53.2080672365928],[-126.09433240150223,53.20789295629427],[-126.09442391999289,53.207720901721125],[-126.09452014037682,53.20755164872454],[-126.09462572518683,53.20738350852977],[-126.09473883006171,53.20721704725467],[-126.09485849337112,53.20705169201677],[-126.0949837860796,53.20688801717212],[-126.09511283135707,53.20672545954151],[-126.09524187564246,53.206562901756136],[-126.09536528234426,53.206395866858024],[-126.09548774029571,53.206227712206385],[-126.09561584252704,53.206061237900485],[-126.09575707099768,53.20590091040929],[-126.09591709092975,53.20575065089222],[-126.09610150496496,53.20561325118606],[-126.09631222106765,53.20548983896582],[-126.0965304304059,53.205369781380696],[-126.09675428753073,53.205253079896686],[-126.09698376116727,53.20513917880236],[-126.09721700456973,53.20502750594893],[-126.09745398777964,53.20491807926513],[-126.09769473818294,53.2048097604058],[-126.09793642146334,53.204703125322595],[-126.09818091045678,53.20459705208353],[-126.09842541320619,53.20449096935865],[-126.09867084495107,53.20438489431151],[-126.09891533024178,53.204278810576206],[-126.09915888150353,53.20417161569892],[-126.09939962329074,53.20406329333259],[-126.09963847083665,53.20395386065045],[-126.09987357476116,53.20384162521523],[-126.10010490769331,53.203727707447136],[-126.10033155181803,53.20361099673263],[-126.10055255928107,53.20349037352699],[-126.10075853855471,53.203359670337385],[-126.10094855682404,53.20321778558503],[-126.1011272879564,53.20306805855658],[-126.10130039742275,53.20291441921776],[-126.10147068244173,53.20275966165511],[-126.10164377978097,53.202608262549404],[-126.10182346184862,53.20246302406916],[-126.10201441752507,53.20232729431462],[-126.10222135209197,53.20220499497266],[-126.1024489408521,53.20210003875554],[-126.10269626745752,53.20201187959793],[-126.10295957598673,53.2019382619635],[-126.10323509287649,53.201875845832035],[-126.1035209374712,53.20182237408375],[-126.10381336887957,53.20177562709515],[-126.10411143514622,53.20173279126872],[-126.10441138023278,53.201691629118855],[-126.10471132198386,53.20164935479759],[-126.10500750282394,53.20160315724877],[-126.1052980432302,53.201551362086946],[-126.10558106082757,53.201491165607116],[-126.10586781416832,53.20142537218994],[-126.10615924681791,53.20135340732933],[-126.1064365810912,53.201271371021356],[-126.10668387050586,53.201173675837346],[-126.10688140312993,53.20105473786021],[-126.10699634924826,53.2009005777892],[-126.1070521459706,53.200718470580384],[-126.10709760387644,53.200529641445264],[-126.10718061499051,53.200354231802116],[-126.10733305462713,53.20020284284742],[-126.10752585193536,53.20006486159769],[-126.10762319770105,53.19999979131262],[-126.10772897483572,53.19992911139066],[-126.10791331226257,53.19978665566805],[-126.10808827888444,53.19964084706183],[-126.10826510448692,53.19949503648604],[-126.1084400686897,53.19934922733741],[-126.10861408372071,53.19920229840972],[-126.10878527583633,53.19905480713506],[-126.10895085052341,53.198905088972026],[-126.1091117243018,53.198753689844494],[-126.10926414401105,53.19859949285379],[-126.10940719322996,53.19844195213335],[-126.10953990757334,53.19827937459528],[-126.10966416660884,53.19811344358306],[-126.10978280849518,53.197945276871906],[-126.10989955641405,53.1977759914034],[-126.11001537479186,53.19760726237484],[-126.11013494538064,53.19743965907129],[-126.11025921898481,53.197275403429614],[-126.11039098574919,53.19711451076222],[-126.11053403158122,53.19695920034601],[-126.11069020446028,53.196810608720845],[-126.11086234085073,53.196669279927384],[-126.11105795561765,53.19654080875306],[-126.11127890733906,53.19642464659309],[-126.11151863487781,53.196318540797805],[-126.11177150280781,53.19621858868617],[-126.11203188009486,53.19612255473956],[-126.11229413121035,53.19602650947558],[-126.11255262661464,53.19592879110413],[-126.11280173075676,53.19582547920261],[-126.11303674108193,53.19571378184684],[-126.1132623720642,53.19559536173808],[-126.11348141674331,53.19547135456011],[-126.1136891935383,53.195341191205934],[-126.11388570547889,53.19520599211144],[-126.1140709526271,53.19506576629448],[-126.114251493004,53.194921627863565],[-126.11442546963494,53.194774690050934],[-126.11459288104834,53.194624397177165],[-126.1147518403485,53.19447187147818],[-126.11490329409025,53.19431766777852],[-126.11503878843881,53.19415844213496],[-126.11514427479408,53.1939908471115],[-126.11523473207377,53.19381822039916],[-126.11532988649158,53.19364670941007],[-126.1152994341392,53.19348035787847],[-126.11544050139238,53.193298162927555],[-126.11585714663161,53.19310953202016],[-126.11606490604075,53.1929799200418],[-126.11628768951631,53.19285982067224],[-126.11652173648899,53.19274531170794],[-126.11675953661313,53.19263248362915],[-126.11699358414934,53.192519094097946],[-126.11721824053949,53.19240011147642],[-126.11742600008162,53.19227330249171],[-126.11761122888188,53.19213531167654],[-126.1177786278899,53.191988375226096],[-126.11793381452758,53.19183528409733],[-126.11807866842946,53.19167773048226],[-126.11821790390778,53.19151737684347],[-126.11835524537015,53.19135590453515],[-126.11849260078264,53.19119443203854],[-126.11863557242904,53.191035750220074],[-126.11878043597822,53.19087819566384],[-126.11892059762752,53.190718395906075],[-126.11905888186213,53.19055804214421],[-126.1191962185912,53.190397133448975],[-126.11933732355693,53.19023789687774],[-126.11948216833196,53.190080897119465],[-126.11963546547265,53.18992724978589],[-126.11979721809588,53.1897780752258],[-126.11997866602533,53.189635602790645],[-126.12019201679993,53.189504857253475],[-126.12043166524317,53.18939257541279],[-126.12069106156174,53.189305486092785],[-126.12095987589083,53.1892290257545],[-126.12123150506747,53.18915647878575],[-126.12150594596054,53.18908673374934],[-126.12178321360844,53.18901979061072],[-126.12206235993526,53.188954520979436],[-126.12234338335843,53.188890369133226],[-126.12262535403308,53.18882733602143],[-126.12290731048421,53.18876485796106],[-126.12318927948213,53.18870182350258],[-126.12346935631382,53.18863823463125],[-126.12374944237237,53.18857296002593],[-126.12403421830298,53.188511596710526],[-126.12432931487072,53.18845638847512],[-126.12445569972635,53.18840023649776],[-126.12472319333624,53.18820052658159],[-126.12490179344314,53.188056373361526],[-126.12507382355352,53.187907180580986],[-126.12523928866348,53.18775463332217],[-126.12539629914697,53.18759873361204],[-126.12554486003373,53.18744115757519],[-126.12568405827705,53.18728247984925],[-126.12580917816108,53.18712044677822],[-126.12591365615506,53.18695172215092],[-126.12607624664122,53.18678292661171],[-126.1261733261616,53.186648376896486],[-126.12628187512973,53.186588325034776],[-126.12639135191094,53.18652770740654],[-126.12655155503569,53.18649952669316],[-126.12667700642042,53.186450095592505],[-126.1268211733602,53.18639056084255],[-126.12696264655264,53.186373038812306],[-126.12710681115848,53.18631294800223],[-126.12739249663973,53.18624653828275],[-126.12764432374692,53.186147108477535],[-126.12796286952647,53.1861019493038],[-126.12827960457498,53.18607807857919],[-126.12855418546853,53.18605985469895],[-126.12885509435856,53.18607409275694],[-126.12915315801914,53.186074888512906],[-126.1294446029875,53.1860544034051],[-126.12973128328747,53.186010959352004],[-126.13001321565348,53.18595014933855],[-126.13029326173096,53.185880933343334],[-126.13057329018056,53.185811160989964],[-126.13085523328299,53.1857497932391],[-126.13114378114635,53.18570521434302],[-126.13144368202097,53.18569479842842],[-126.13174642375753,53.18569614713938],[-126.13199935167923,53.18565105005878],[-126.13228220038843,53.18558294660774],[-126.13265871688539,53.18549569998863],[-126.13273428583305,53.185381335835906],[-126.13277782072522,53.1852188308889],[-126.13287570575194,53.18504785756407],[-126.13301114151976,53.18490093479133],[-126.13327816163932,53.184865902615215],[-126.13361283718196,53.18489017407483],[-126.1339147728738,53.18493240781009],[-126.13418774830733,53.185002127563706],[-126.13445326662217,53.18508921667564],[-126.13472253942952,53.18517293975678],[-126.13499645822091,53.18524600876678],[-126.13527130776835,53.1853190850415],[-126.13554990082115,53.1853854251059],[-126.13583406031164,53.18543832244594],[-126.13614810236274,53.18545196224165],[-126.13646958093197,53.185451036565425],[-126.13674246612668,53.18549049110546],[-126.1369228106608,53.18560960848521],[-126.13703864270119,53.18578032908461],[-126.13713766843033,53.185966198721474],[-126.1372703609618,53.186132982668596],[-126.13747321036888,53.18625374918905],[-126.13771443220536,53.186354303786],[-126.13797716734562,53.186443073250196],[-126.13825486750966,53.18652173221883],[-126.13854003784867,53.186591427667175],[-126.13882705798234,53.1866532685901],[-126.13911030395703,53.186707279505875],[-126.13940379817849,53.186744462921084],[-126.13970661816772,53.186762597001184],[-126.14000937148403,53.18676503601081],[-126.14030458748256,53.18675124205085],[-126.14059407507403,53.186710564875256],[-126.14088164840774,53.18665364814214],[-126.14117016010768,53.18659952607505],[-126.1414624858358,53.186565001034445],[-126.14175957273471,53.1865551270452],[-126.14205952215883,53.186558128844],[-126.14236042207038,53.18656280483944],[-126.14266035082902,53.18655964749584],[-126.14295930254455,53.18654696280249],[-126.14326202588978,53.18653651356632],[-126.14356568269473,53.186527182811574],[-126.14387026725304,53.18651728547639],[-126.14417486287836,53.186506275920465],[-126.14447662742273,53.18649189891047],[-126.14477555894617,53.18647360772147],[-126.14506979197988,53.18644971959742],[-126.1453593245059,53.186419678863615],[-126.1456413123164,53.186380674639054],[-126.1459025954572,53.18631312985945],[-126.14612148091304,53.18618458019489],[-126.14630746113659,53.18602973718367],[-126.14646721083362,53.18587492630455],[-126.14658187883302,53.18569831895828],[-126.14668341951051,53.18551613476591],[-126.14680938548739,53.18535464288558],[-126.14700113247885,53.18523844045566],[-126.14727076028548,53.18514959487989],[-126.14758823121174,53.1850752541209],[-126.14791891422227,53.185022748053115],[-126.14823093408398,53.18499826515296],[-126.14849060918347,53.185010264154776],[-126.14866613929306,53.185086230343565],[-126.14875299085064,53.18526314257667],[-126.14877063004081,53.18548159602679],[-126.14873664143224,53.18567603044066],[-126.14860312719942,53.18582576527123],[-126.14838897851973,53.185963841398284],[-126.14820296178915,53.1861102893161],[-126.14809576643992,53.18627791679628],[-126.1480317045682,53.18645501803574],[-126.1479977039437,53.18664721137094],[-126.14817527937957,53.18677023191971],[-126.14842965198214,53.18687074824917],[-126.14871206921269,53.186953858345824],[-126.14899907908203,53.187007840898126],[-126.14929152578821,53.187008593051026],[-126.14959788129157,53.18696451144595],[-126.14989769524209,53.18692828003285],[-126.15013877043997,53.18698230898436],[-126.15035195676818,53.18709688269497],[-126.1505539850278,53.18724059128893],[-126.15070919936683,53.18739445154341],[-126.15082602476674,53.1875617961451],[-126.1509269209628,53.18773253103739],[-126.15101283757319,53.18790384063871],[-126.15108657396227,53.18807852685777],[-126.15115374605597,53.18825434177793],[-126.15122280638306,53.18842958955883],[-126.151300289956,53.18860315042779],[-126.15139463254997,53.18877277281592],[-126.15152175186967,53.188935621915476],[-126.15167042297635,53.18909397069353],[-126.15181722043144,53.18925231271102],[-126.1519368608863,53.18941573558595],[-126.15201996538474,53.18958704791733],[-126.1520965175273,53.18976285012929],[-126.1521674690756,53.189940900240444],[-126.15222903843268,53.190120647409024],[-126.15227750186007,53.19030096708799],[-126.15231001644727,53.1904796221789],[-126.15232190253346,53.190656627675594],[-126.15230753141776,53.190830870436905],[-126.1522397064721,53.19100125606114],[-126.15212689027321,53.1911688939737],[-126.15198780261774,53.19133433366673],[-126.15184309630231,53.19149753065092],[-126.15170681014348,53.191658484854955],[-126.15154612384393,53.191812183126714],[-126.15134504338957,53.19194464548701],[-126.15112047940882,53.19206200779245],[-126.15088464304704,53.19217322639242],[-126.15064504974303,53.192282773198315],[-126.1504064021092,53.19239287402123],[-126.15017525364931,53.1925074463828],[-126.14995727090965,53.19262984430319],[-126.14975430074047,53.19276062122924],[-126.14955885976619,53.19289587878742],[-126.14936716221689,53.19303392776806],[-126.14918111299606,53.193174765790076],[-126.14899692642743,53.19331673051096],[-126.14881368749148,53.19345980516239],[-126.14863139230987,53.19360288729682],[-126.14844720200088,53.193744842167256],[-126.1482611466219,53.193885687653406],[-126.14805074580853,53.194039443178596],[-126.14783452411753,53.19413326064159],[-126.14794252665459,53.194456360589186],[-126.14804247803514,53.194621487614505],[-126.14822108702474,53.194760191662986],[-126.14845213184307,53.19488034791939],[-126.14868222507295,53.194998255186476],[-126.14890484843528,53.19512009720762],[-126.14912932912823,53.1952408160843],[-126.14936222646259,53.19535312553758],[-126.149610069588,53.195449721348915],[-126.14989807728155,53.19550201523534],[-126.15017674336,53.19556776484182],[-126.15043394677191,53.19565930982182],[-126.15068649120187,53.1957564620734],[-126.15094275786481,53.195849692187366],[-126.15120370467824,53.19593842528216],[-126.15146560164678,53.196028285929025],[-126.15172935169467,53.196115893895126],[-126.15199684176397,53.19619621847662],[-126.15226990468108,53.19626589614934],[-126.1525560118121,53.19630865828349],[-126.1528588645705,53.1963194717393],[-126.15316075299489,53.19632076690878],[-126.15345973676918,53.19629461124929],[-126.15375609966136,53.19632335691781],[-126.15399740056696,53.1964233131546],[-126.15415079831834,53.19658053170056],[-126.15433412394263,53.19672146104795],[-126.1545951016909,53.19681523280328],[-126.15488592377837,53.19686582582056],[-126.15519171428433,53.19690744443307],[-126.15548988974831,53.196917692620914],[-126.1557597288978,53.19687084684839],[-126.15600971315176,53.196776961638804],[-126.15624928908092,53.19665957058206],[-126.15648698030226,53.196539931795556],[-126.15672564380759,53.196432059721694],[-126.15696243567356,53.19632139316695],[-126.15719452077373,53.1962079269406],[-126.15742096701433,53.19609110659906],[-126.1576455265188,53.19597148289075],[-126.15786726264245,53.19585130680019],[-126.1580890104294,53.195730574560315],[-126.15831168903715,53.195610396361516],[-126.15853624766977,53.195491891310155],[-126.15876831979197,53.195377301573814],[-126.15901071670542,53.19526829942722],[-126.15925030316112,53.19515818017236],[-126.15947486311623,53.195041358359475],[-126.15966467870743,53.194907777207284],[-126.15979061462657,53.19474403159074],[-126.15990341861867,53.19457470163719],[-126.16035318577796,53.194514713445336],[-126.16064267317003,53.194465024428894],[-126.16093216635686,53.19441309392959],[-126.16121411411152,53.19435333030959],[-126.16148382791536,53.194279582389136],[-126.1617459659879,53.1941862330129],[-126.16198928263286,53.19407441798795],[-126.16219222770451,53.19394529627832],[-126.16233225273021,53.19378993592267],[-126.16240936240962,53.193609448551726],[-126.16242836831098,53.1934301611745],[-126.1623967451131,53.19325318395744],[-126.16233794144527,53.19307567929129],[-126.16227913400739,53.19289706316429],[-126.16224470054112,53.19271840464958],[-126.16225620509901,53.19253857177702],[-126.16231082728567,53.19236147629548],[-126.16232514052291,53.19218275095374],[-126.16230570414109,53.19200351612707],[-126.16230968736947,53.191818091562574],[-126.1623305376631,53.19163487567306],[-126.16243305145518,53.19147788133139],[-126.162651002851,53.191354339981274],[-126.16290744616171,53.19124811573631],[-126.16315264143527,53.19114246213117],[-126.1634081740649,53.1910457568299],[-126.16368351768962,53.19097982970022],[-126.16397207747495,53.19093797639046],[-126.16426629374754,53.19090452190076],[-126.16456335101509,53.19087665569397],[-126.16486227646237,53.190851035874374],[-126.16516026723714,53.19082428725473],[-126.16545543544207,53.19079306924992],[-126.16574680785439,53.19075400416127],[-126.16603533327786,53.19070430316787],[-126.16633217875342,53.19062321900348],[-126.16660924206462,53.19051975421044],[-126.16683298449806,53.1904466142713],[-126.16707543587118,53.19036000289582],[-126.16700349541469,53.19018308344838],[-126.16691282340024,53.19001011616722],[-126.16692332710095,53.189821311911636],[-126.16691323503387,53.18963926793582],[-126.16693877857922,53.18946109059505],[-126.1670121377882,53.18928732736903],[-126.16711926749396,53.18911631292478],[-126.16726111764119,53.18895701788221],[-126.16743677360003,53.18881336028252],[-126.16764433167528,53.188678064643156],[-126.16787633506338,53.188561771592795],[-126.16813000002232,53.188473465961344],[-126.16841097930802,53.1884164828108],[-126.16870701348638,53.18837405153896],[-126.16900116117388,53.18832881676886],[-126.16932174890285,53.18833227581302],[-126.16961429494692,53.18835538539405],[-126.16990597222322,53.188393625200064],[-126.17019580987645,53.18844418222073],[-126.17048288206772,53.18850427027964],[-126.17076435358317,53.18856996764892],[-126.17104021773251,53.18863959827951],[-126.17131891821028,53.18871314103539],[-126.17156676801362,53.18880857087592],[-126.17182214284226,53.188910155886056],[-126.17207561227825,53.18900390040541],[-126.1722748572634,53.18913245522761],[-126.17245820641399,53.18927223671318],[-126.1726294082111,53.18941932260075],[-126.17279407766398,53.18957145501546],[-126.1729549906514,53.18972526877266],[-126.17311779460245,53.18987908849967],[-126.17328713783769,53.19002897259438],[-126.17346585381794,53.1901782780374],[-126.17367450544435,53.19031241859104],[-126.1739464058515,53.19032602894273],[-126.1742527285011,53.19027795786714],[-126.17455534597055,53.19023717844559],[-126.17485331936251,53.19020872934723],[-126.17512442300647,53.1902581905144],[-126.17538168526335,53.19035864462049],[-126.17560438665028,53.190486594367975],[-126.17579336773468,53.19062412149388],[-126.17597675463423,53.19076501777669],[-126.17615545992744,53.19090872617333],[-126.17632948121131,53.191054673070916],[-126.17650258081686,53.191202306135615],[-126.17667475171798,53.19134994032258],[-126.1768469111827,53.19149813894036],[-126.17699660283479,53.191649723061246],[-126.17717348973622,53.1918051921406],[-126.17738305818382,53.19193148200886],[-126.17758048644852,53.19206675277644],[-126.17778821404355,53.19219697050112],[-126.17799405538966,53.19232774639921],[-126.17818868498817,53.192463576045654],[-126.17835897468527,53.192610654819646],[-126.17850213918366,53.19277008947825],[-126.17863876197988,53.19293233925849],[-126.17878940932182,53.193087289688194],[-126.17897466491654,53.1932253729117],[-126.17918800110924,53.19334941304861],[-126.17941723223387,53.193465030325505],[-126.17965394523064,53.19357614530916],[-126.17989253679939,53.1936878216359],[-126.1801133365291,53.19380569112059],[-126.18032391398488,53.19394261330774],[-126.18045361692148,53.194020286959834],[-126.18073085699343,53.19396103971661],[-126.18083953783365,53.19372447289444],[-126.18093346429764,53.19354899388297],[-126.18103396443438,53.19337461615509],[-126.18115700102997,53.193209175900364],[-126.18131760904785,53.19306103947768],[-126.18150827429496,53.192926857098065],[-126.18170927457555,53.19279658437504],[-126.1819177726002,53.192669660940105],[-126.18213379595635,53.19254553100101],[-126.18235543971305,53.19242418848648],[-126.18258178409565,53.192304514398145],[-126.18281095426939,53.19218652056592],[-126.18304198786876,53.19206964378649],[-126.18327396511599,53.19195276508737],[-126.18350406623652,53.191835888830745],[-126.18373228883247,53.19171845932034],[-126.18395770049823,53.191599904377526],[-126.18418216356731,53.191480794760125],[-126.18440662537245,53.19136168470957],[-126.18463108591364,53.191242574226116],[-126.18485554519086,53.1911234633097],[-126.18508000320413,53.19100435196039],[-126.18530539232897,53.19088580339395],[-126.18553172752554,53.1907678086187],[-126.18575900879486,53.19065036762943],[-126.18598722366157,53.19053405407786],[-126.18621637205727,53.190418850032934],[-126.18644741146852,53.19030420723377],[-126.18668031928883,53.19019180180289],[-126.18691417324868,53.19007995908715],[-126.18715085548676,53.18997034324231],[-126.18738847384155,53.18986241049651],[-126.18762889561339,53.189754472825456],[-126.18787120841147,53.18964709633387],[-126.18811445479383,53.189540829279416],[-126.18836145693275,53.189436240806934],[-126.18860939523051,53.18933333538279],[-126.18886111174237,53.1892337756059],[-126.18911564672244,53.18913758091105],[-126.18937300514698,53.18904585373371],[-126.1896331996262,53.18895804728696],[-126.18989811498577,53.18887639930556],[-126.1901658565302,53.188799783450264],[-126.1904383015881,53.18872876135961],[-126.19071545764548,53.18866164792734],[-126.19099637489,53.18859733322817],[-126.19128106093827,53.188537493322954],[-126.19156858094244,53.18848100930951],[-126.19185892252281,53.18842844586295],[-126.19215021354167,53.18838035274899],[-126.19244340891423,53.18833562594837],[-126.19273755645936,53.18829593413337],[-126.19303077394646,53.18825960426474],[-126.19332402894493,53.18822831087063],[-126.19361635921959,53.18820150877474],[-126.19390873529802,53.18818478040796],[-126.19420308613246,53.18818990012408],[-126.19450032141992,53.18821238486437],[-126.19479761840667,53.18824494328404],[-126.19509679624721,53.188281988373944],[-126.19539503955055,53.18831790489914],[-126.19569324712555,53.18834598698167],[-126.19604571463753,53.18814709551548],[-126.19623817792424,53.1880112098851],[-126.19633771938346,53.18785026477505],[-126.19636783469609,53.1876726378217],[-126.19636977596336,53.18748665016042],[-126.19641300036194,53.187306195974095],[-126.19646558777343,53.18712684661271],[-126.1965491890368,53.18696368690397],[-126.19668249547942,53.18680493511423],[-126.19682892123188,53.18664895784963],[-126.19698567417493,53.186495203992365],[-126.19714805236931,53.18634199626326],[-126.1973123092481,53.186189914519574],[-126.19747562987985,53.18603670474223],[-126.19763425278452,53.18588294685037],[-126.1977844209838,53.18572696207088],[-126.19792239781214,53.18556820096624],[-126.19803880005503,53.185404429525285],[-126.19811202450073,53.18523064667437],[-126.19816274518645,53.185051855177164],[-126.19821344784393,53.184872507956975],[-126.19828668304369,53.18469816921379],[-126.19839650265726,53.184532167577295],[-126.19851570183687,53.1843678262061],[-126.19864146127286,53.18420515876355],[-126.19877191613864,53.18404304796835],[-126.19890707161015,53.18388260522381],[-126.19904503289922,53.18372271330777],[-126.19918579740566,53.18356282546425],[-126.1993256363468,53.18340405042323],[-126.19946641901008,53.183245282575406],[-126.19960813296858,53.1830870686893],[-126.1997611084295,53.18293219679813],[-126.19992252614398,53.1827806716182],[-126.2000149239651,53.1826970419797],[-126.20008864688543,53.18263137904131],[-126.20025382876302,53.182480402735976],[-126.20042745546054,53.18233333774723],[-126.20062080530761,53.182196887284725],[-126.20083484587002,53.18207271675635],[-126.20106014591525,53.18195469335314],[-126.20129109888961,53.181840021079935],[-126.20152298031242,53.18172534676721],[-126.201751103706,53.18160900228655],[-126.20197169617515,53.18148593888402],[-126.20218655985335,53.18134104167311],[-126.20239761436751,53.1811838262523],[-126.20260589654909,53.18103669871417],[-126.20281338455477,53.18091814664732],[-126.2030211159572,53.18085056717236],[-126.2032285653928,53.1809179906406],[-126.20343277428603,53.1810941063463],[-126.2036294160648,53.1812522994556],[-126.20382032675485,53.181390899706955],[-126.2040075130412,53.18153119112768],[-126.20419281386229,53.18167204120929],[-126.20437813359624,53.18181344667423],[-126.20456905468698,53.18195316605903],[-126.2047618637563,53.18209232614918],[-126.20489303928532,53.18228032512187],[-126.20504543462535,53.18239713784042],[-126.20517363166832,53.18254873338448],[-126.20531696918147,53.182729988427916],[-126.20540405273312,53.182906859290114],[-126.2056045354327,53.18308072780946],[-126.20578486730811,53.183159406692965],[-126.20602043985275,53.183227896738195],[-126.20608087553855,53.183320784071206],[-126.2060794785561,53.18341882521379],[-126.2061128486655,53.18353360275664],[-126.20642038561715,53.1835582804505],[-126.20681374908577,53.1835010099948],[-126.20709365465491,53.18343498250094],[-126.207323638157,53.183316939063296],[-126.20761453684162,53.18319654762193],[-126.20787624572394,53.18305043768744],[-126.20817655888463,53.182942352625254],[-126.20850690695619,53.18284037159276],[-126.20887758515445,53.182746170215566],[-126.20923703999493,53.18265702478021],[-126.20971659580879,53.18259567544027],[-126.21006225162147,53.1825608864466],[-126.21038472632715,53.1825748791518],[-126.21069695515035,53.18260009312589],[-126.21109656445708,53.18267053091874],[-126.21153738471911,53.18273528284184],[-126.21187413083733,53.18279294128475],[-126.2121583971848,53.18284845200583],[-126.2124352133691,53.18291629971713],[-126.21270739123787,53.18299199785297],[-126.21297957292273,53.183068260032535],[-126.21324899937306,53.18315404539375],[-126.21351563879757,53.183245992836866],[-126.21378504400225,53.18333010090686],[-126.21405902773263,53.18339122757879],[-126.2143412562305,53.18341312499152],[-126.21463352850003,53.18338402123269],[-126.2149313156824,53.18333362826565],[-126.21523008883376,53.18329442770922],[-126.21552904197311,53.18328772639244],[-126.2158298687498,53.183283817404316],[-126.21613258776843,53.18328045991316],[-126.21643530898189,53.18328047178265],[-126.21673806236204,53.18328383503169],[-126.217038957962,53.183293367547535],[-126.21733615429332,53.183309628438174],[-126.21763057489969,53.18333430110356],[-126.21791848251195,53.18336962426127],[-126.2181971343417,53.18342456614538],[-126.21846650657997,53.18350025621905],[-126.21873034376875,53.183589965278316],[-126.21899138600541,53.18368415151873],[-126.21925429232454,53.18377610191043],[-126.21952369194291,53.18385627108839],[-126.21980143923909,53.183917933219114],[-126.22009125088847,53.183954932629945],[-126.22038940902543,53.18397622135706],[-126.22069128433489,53.18399134473586],[-126.22099036697523,53.184011518799686],[-126.22130357374219,53.1842204472003],[-126.2215029750486,53.184354521423415],[-126.22170143577425,53.18448915277813],[-126.22189897096115,53.184624350203876],[-126.22209650741038,53.18475954729035],[-126.22228937513707,53.18489643787015],[-126.22247288582106,53.185038938695634],[-126.22263400075485,53.18519717576209],[-126.22280442449859,53.1853458672844],[-126.22302246037768,53.1854569313401],[-126.22329464396435,53.18552700314281],[-126.22358922556953,53.18557855007539],[-126.22387915562757,53.185635142344005],[-126.2241946112456,53.18573426043515],[-126.22445157016463,53.18576066315785],[-126.22460466356553,53.18564328764295],[-126.22472276873539,53.185469403054384],[-126.22479952578374,53.1852726332803],[-126.22482758255873,53.18508603044271],[-126.22482289586027,53.184909582219305],[-126.22479852521319,53.1847314862714],[-126.22476101514255,53.18455285055909],[-126.22471694914653,53.18437367154256],[-126.22467007926706,53.184194497811745],[-126.2246269408288,53.18401476125457],[-126.22459411988697,53.183834996137435],[-126.22457629805488,53.18365576723247],[-126.22457253351074,53.183474835548076],[-126.22457812332216,53.183293321431194],[-126.22458934844956,53.18311123193253],[-126.2245996317563,53.182929708878355],[-126.22460522437683,53.182748759378605],[-126.22460052397318,53.18256950548804],[-126.22458178182903,53.182391954314504],[-126.22454242116471,53.18221724767745],[-126.22447497753451,53.18204595542017],[-126.2243709999089,53.181879213899904],[-126.22424267679584,53.18171644423044],[-126.22410029815289,53.18155537711432],[-126.22395324807323,53.18139543904202],[-126.22381181629558,53.18123436976463],[-126.22368444192153,53.18107158868497],[-126.22355986669464,53.180907690741606],[-126.22343342101671,53.180744351898454],[-126.22329949369939,53.18058382351717],[-126.22315434208417,53.180427241982414],[-126.22299702159295,53.18027460903261],[-126.22283223466574,53.18012478641546],[-126.22266369117355,53.17997609101605],[-126.2224923507891,53.17982852101575],[-126.22232382466562,53.17967982508052],[-126.22215996912473,53.179529435061156],[-126.22199985453551,53.17937736168243],[-126.22184348379,53.179224160669094],[-126.2216880438178,53.17907095769637],[-126.2215223098502,53.17891889415954],[-126.22135939305825,53.178766269398785],[-126.22125263446046,53.17860289126453],[-126.22122545774525,53.178423678854145],[-126.22122545056882,53.178241610199606],[-126.22122918862301,53.17806178428404],[-126.2212394968308,53.17788250179245],[-126.22125167621485,53.177702651107104],[-126.22124979476483,53.1775205948458],[-126.22122162730544,53.17733242101666],[-126.22121974304935,53.17714980004424],[-126.22130041333907,53.17698719193191],[-126.22144581114462,53.176836222401604],[-126.22161746395189,53.17668857369746],[-126.22180882818533,53.17654592511175],[-126.22201614336566,53.17640884828007],[-126.22223379872881,53.17627959444188],[-126.22245806392036,53.176158726266465],[-126.22268988042973,53.17604849170348],[-126.2229479956554,53.17594997581269],[-126.22322589008715,53.175869339450415],[-126.22351325453184,53.17581053677237],[-126.22380171086166,53.17577974124708],[-126.2240959404663,53.175777508690075],[-126.22439684093003,53.17579486522172],[-126.2247006018307,53.175822854848384],[-126.22500436613541,53.175851408369624],[-126.22530621200343,53.17587156626856],[-126.22560326971463,53.17587379721018],[-126.22589270243314,53.175849161393884],[-126.22617639860253,53.175806044797845],[-126.22645817807867,53.175752282933985],[-126.22673802272355,53.175690125606465],[-126.22701596837506,53.17562069315592],[-126.22729199689974,53.1755462174604],[-126.22756614725577,53.17546838353481],[-126.22783934297871,53.17538886572877],[-126.22811159317233,53.17530935807166],[-126.22838292183148,53.1752315276748],[-126.22865144278475,53.17515313739231],[-126.22891335047429,53.17506636078153],[-126.22916959840462,53.17497287215419],[-126.229421128187,53.17487491051669],[-126.22967078861618,53.17477527584814],[-126.22991855572842,53.17467507964142],[-126.23016633056686,53.17457376249577],[-126.23041315968668,53.174472446663934],[-126.23065904001717,53.17437056747733],[-126.2309049280925,53.17426757632243],[-126.23114987039675,53.17416457753179],[-126.23139386394737,53.174061024362814],[-126.23163786516427,53.17395635026978],[-126.23188092065587,53.173851677517646],[-126.23212209476056,53.17374588754799],[-126.23236326460855,53.173639541369425],[-126.23260348252646,53.173532067199446],[-126.23284088646119,53.17342292195058],[-126.23307735348716,53.17331265766228],[-126.23331192720993,53.17320184090554],[-126.2335455608966,53.17308934044922],[-126.23377826071545,53.17297627668534],[-126.2340090641534,53.172862104766686],[-126.23423987821288,53.17274736768644],[-126.23447725798347,53.172635413661425],[-126.23471744624347,53.17252458294633],[-126.23495857459689,53.17241318518818],[-126.23519501487425,53.17230011116106],[-126.23542298864733,53.1721825808517],[-126.23563780906721,53.17205890959097],[-126.23583572199487,53.17192798452721],[-126.23601296403596,53.171787025690676],[-126.23617235109762,53.17163825042859],[-126.23631765250519,53.171482789614785],[-126.2364516810608,53.17132230483785],[-126.23657819411304,53.17115847370938],[-126.23670001635651,53.170992411006026],[-126.23681994247394,53.17082523155258],[-126.2369417628098,53.17065916857022],[-126.2370682657076,53.17049421647076],[-126.23720228512221,53.17033316608196],[-126.23734375194672,53.17016370207211],[-126.2375039878036,53.16999980223182],[-126.23771237921822,53.16990359422763],[-126.23801879263144,53.16990801596665],[-126.23831248093514,53.16998473287169],[-126.23854264717903,53.17009239254976],[-126.23876536090575,53.17021014144981],[-126.23898156909233,53.17033575482562],[-126.23919218848839,53.17046697213148],[-126.23939907411581,53.17060044636974],[-126.23960221638254,53.17073448353346],[-126.23980255021634,53.170867405628776],[-126.23999727077471,53.171004255676024],[-126.24018732804568,53.171143364619],[-126.24037085118877,53.171285283033086],[-126.24055156668847,53.17142888297705],[-126.24072667117035,53.171574179125884],[-126.24088774983663,53.171725670223985],[-126.24103855269966,53.17188109893002],[-126.24119030114772,53.17203652550682],[-126.2413658512017,53.172259127348084],[-126.2415007565317,53.17242074554909],[-126.24163660743284,53.172582370617874],[-126.24177058532581,53.172743990379836],[-126.2418998931888,53.17290674888122],[-126.24201889708606,53.17307120440722],[-126.2421247966138,53.17323792739582],[-126.24221477951447,53.17340804403285],[-126.24228885419598,53.173580433937396],[-126.24235077173644,53.17375564517869],[-126.24240238150342,53.17393200683547],[-126.24244743461416,53.17411005799501],[-126.24248688732744,53.17428924098818],[-126.2425235217724,53.17446842972348],[-126.24256108607058,53.17464761652594],[-126.24260053976617,53.174826799428715],[-126.24264559466313,53.17500485042597],[-126.24269908447128,53.17518176370407],[-126.24275820667145,53.17536034151063],[-126.24282953473221,53.175541699718174],[-126.24292889923437,53.17571236105663],[-126.24310864838812,53.17584475481371],[-126.24336696539481,53.175954023178186],[-126.24366180473355,53.176057613843255],[-126.24388118899387,53.176076208983126],[-126.24417441564886,53.17606103955189],[-126.24447409379503,53.17602849439376],[-126.24477563587227,53.17599425954478],[-126.24507630426655,53.17597235010903],[-126.24537709777651,53.17596948641049],[-126.24568262762917,53.17597669570073],[-126.24599100036997,53.17599062068365],[-126.24629939154097,53.176005100542795],[-126.24660494139373,53.176015668605814],[-126.24690669736401,53.17601840100686],[-126.24719993371814,53.17600770565117],[-126.24748463896887,53.17597910103383],[-126.24775703826532,53.175928113521515],[-126.24801523227242,53.17585307105908],[-126.24826299511723,53.17575843845224],[-126.24850131570696,53.17564925996027],[-126.24873581915911,53.175531125812455],[-126.24896843581845,53.17540851356411],[-126.249201987284,53.175287019278656],[-126.2494411960049,53.1751716703145],[-126.24968796596033,53.17506751786203],[-126.2499460718371,53.174979017576376],[-126.25021644350488,53.17490618534764],[-126.25049531809844,53.17484397381556],[-126.250780805135,53.17478959041003],[-126.2510709990294,53.1747402336462],[-126.2513630829893,53.1746936776348],[-126.25165609584924,53.174647118926345],[-126.25194629110749,53.1745983246875],[-126.25223177798777,53.17454450245043],[-126.25251157677445,53.17448228417773],[-126.25278289202193,53.17441055547702],[-126.25305225527337,53.17432595021304],[-126.25331499534897,53.17422959878913],[-126.253563604141,53.174122064079754],[-126.25379059218962,53.17400450054976],[-126.2539894227423,53.17387690441667],[-126.25413751030962,53.17372813822708],[-126.25423391704163,53.173554269337046],[-126.25429747785361,53.173370943015094],[-126.25434793201875,53.17319213535655],[-126.25437591602675,53.17301393165106],[-126.25438607919996,53.17283408112651],[-126.25439248762775,53.17265312721314],[-126.2544073281013,53.17247326660199],[-126.25444093330418,53.172295050731904],[-126.25447920890558,53.17211570439621],[-126.25452123209767,53.1719363499742],[-126.25457450537007,53.171758091732414],[-126.25464184548315,53.17158316439967],[-126.2547307731484,53.17141323685609],[-126.25485817026573,53.171251060275736],[-126.25502026358599,53.171094975505675],[-126.25519079433526,53.17094111311577],[-126.25534351911608,53.17078561274536],[-126.25545311262744,53.170625158937554],[-126.25549608141718,53.17044692237318],[-126.25546682344486,53.1702565172171],[-126.25536084837944,53.170084759668335],[-126.25518763114005,53.16994900878167],[-126.25497889254336,53.1698267699967],[-126.2547458388466,53.16971187025133],[-126.25450156350136,53.16960035537074],[-126.2542563416851,53.16948828629523],[-126.25402422278292,53.169371142304506],[-126.25381451238914,53.16924330151505],[-126.25362535994901,53.16910365656858],[-126.25343619043905,53.168963455628834],[-126.25322836932749,53.168835054017066],[-126.2529990700984,53.168719578079966],[-126.25276230369515,53.168608608209645],[-126.25252927272227,53.16849538012585],[-126.25231397318497,53.168371474448584],[-126.2521061417282,53.168240274335524],[-126.25189921759578,53.16810514602894],[-126.25169977323104,53.167967195963286],[-126.25151434941517,53.16782474312097],[-126.25134859226333,53.16767944274005],[-126.25123897928673,53.167522254274175],[-126.2512828421967,53.16733561852723],[-126.25135282070947,53.16712931576058],[-126.25152950827905,53.16690710061664],[-126.25133458989959,53.166899107063045],[-126.25109179922217,53.166874417638574],[-126.25080201770142,53.16682741023714],[-126.25052431088888,53.166761338678164],[-126.25025589737233,53.166682357699784],[-126.24999120249907,53.16659832196125],[-126.24972836589659,53.16651148518183],[-126.24946553037246,53.166424647814836],[-126.24920177648666,53.16633949688288],[-126.24893429088246,53.166259390543765],[-126.24866311336335,53.16618601377666],[-126.24838261572152,53.16612329529681],[-126.24809376373909,53.16607236238207],[-126.24780030129307,53.16603264245198],[-126.247491933106,53.16600975901481],[-126.24721558354888,53.16601257720846],[-126.24691301989581,53.166021051451544],[-126.24658603149665,53.166015575230176],[-126.24629820302877,53.16598032145981],[-126.24599537115971,53.165940051866976],[-126.24575237569483,53.165881175123346],[-126.24560900662559,53.165714532458324],[-126.24570553418752,53.16555859600136],[-126.24563599853921,53.16535987304447],[-126.24561246791632,53.165179536779966],[-126.24559361085142,53.16499862611431],[-126.24559631489173,53.1648188000681],[-126.2456412059272,53.16464280341121],[-126.24571701695861,53.164468983355825],[-126.24581062899652,53.164296802399505],[-126.24591268230407,53.164125168501066],[-126.24601473478405,53.163953534498425],[-126.24610648591477,53.16378136608502],[-126.24618042641889,53.16360866993766],[-126.24622718536935,53.16343490986043],[-126.24623085368233,53.16325899857213],[-126.24619514905008,53.1630809283455],[-126.24613602944878,53.162902342093616],[-126.24607128646451,53.162723211763705],[-126.2460187328306,53.162544620734906],[-126.24584291882175,53.162273847728756],[-126.24573420779546,53.162106012522635],[-126.24562644188313,53.16193817524196],[-126.24551775078794,53.16177089548997],[-126.24540811635916,53.16160362654345],[-126.24529754177587,53.16143691515167],[-126.24518323929716,53.16127076708627],[-126.24506051258923,53.16110688611434],[-126.24493497234498,53.16094356654581],[-126.2448131885074,53.16077911865584],[-126.2447026184203,53.160612406632936],[-126.24460234446296,53.16044286771862],[-126.24450112919209,53.160271098798276],[-126.2444055167988,53.160098753523364],[-126.24431833663303,53.15992527034526],[-126.24424427111587,53.1597517600281],[-126.244188943526,53.15957876671826],[-126.2442151137442,53.15940504953053],[-126.24431994493246,53.15923004957864],[-126.24434327421575,53.159052421245285],[-126.24430663568465,53.15887154648774],[-126.2442690683257,53.1586906825815],[-126.24428209619872,53.158514751596286],[-126.24435886214913,53.15834372638395],[-126.2444693522394,53.158176001645685],[-126.24459110291369,53.158009364964265],[-126.24470440544295,53.157841069474436],[-126.2448177103366,53.1576733385399],[-126.24493194344727,53.15750559659562],[-126.2450190007184,53.15733455851795],[-126.24505919546428,53.15715857106887],[-126.2450768940782,53.1569798246648],[-126.24508054393839,53.15679999588433],[-126.24507668239069,53.15661961795248],[-126.24507283259356,53.15643867529195],[-126.24507459090523,53.15625828568795],[-126.24509322998229,53.15607898152157],[-126.2451409097361,53.15590185801022],[-126.2451857652487,53.155723619902126],[-126.24522969453065,53.15554594836451],[-126.24528861895485,53.15536992185105],[-126.24534661699334,53.15519445293403],[-126.24534369855613,53.15501407289453],[-126.2452911555551,53.15483772161186],[-126.24521334529258,53.15466365449972],[-126.24512243639002,53.15449186423489],[-126.24502873238141,53.15432119111991],[-126.24495185977315,53.154148251223695],[-126.24492366287913,53.153967923388336],[-126.24497040659182,53.15379247780873],[-126.24506401309914,53.15362030536512],[-126.24527023883265,53.15349046616895],[-126.24547928377208,53.15336118544153],[-126.24568833071146,53.15323246901634],[-126.24589737632786,53.15310374324957],[-126.24610266469327,53.152973348778715],[-126.24630513658256,53.15284071897733],[-126.24650103079087,53.15270586169339],[-126.24669221392391,53.15256765265616],[-126.24688621294375,53.15242943742285],[-126.24708021069713,53.15229122186095],[-126.24727420064141,53.15215188557185],[-126.24746443660841,53.15201143638842],[-126.24764998632764,53.15186932055465],[-126.24782895841881,53.15172496840171],[-126.24799947666142,53.15157783712922],[-126.24815967647795,53.15142681026997],[-126.24830769140827,53.15127300323084],[-126.2484397473515,53.15111418315374],[-126.24855678849976,53.150950357071345],[-126.24866162360577,53.15078263953871],[-126.24875709131229,53.15061213607117],[-126.24884503807066,53.15043940749643],[-126.24893111951022,53.150265562348274],[-126.24901625625535,53.15009171910726],[-126.24910326855412,53.149918427564145],[-126.24919683798109,53.14974680723436],[-126.24929980299183,53.149577972537315],[-126.24941307744666,53.1494119125597],[-126.24953384610332,53.14924639238],[-126.24965928541441,53.149080306480954],[-126.24979316939942,53.148915887710324],[-126.24993738736002,53.14875591964119],[-126.25009661568414,53.14860320683582],[-126.2502736993876,53.14845998404799],[-126.2504714567735,53.14832903282709],[-126.25068424930721,53.148207021698305],[-126.25090925511014,53.14809057739352],[-126.2511427134979,53.147979725751846],[-126.25138273489698,53.14787165625525],[-126.25162840869011,53.14776693548988],[-126.25187594247404,53.14766276597298],[-126.25212442233307,53.147559158603464],[-126.25237009247932,53.147454436280206],[-126.25261292793333,53.14734692293207],[-126.252850123438,53.147236050917186],[-126.25307792667365,53.14712072580453],[-126.25329632413553,53.14699868891785],[-126.2535025024709,53.14687051998777],[-126.25369834614355,53.14673565034718],[-126.25388761426532,53.14659631281299],[-126.2540712308915,53.146454190537966],[-126.25425203103451,53.146309824219585],[-126.25443282999869,53.146165466576704],[-126.25461550722322,53.14602221605521],[-126.25480288959355,53.14588176062968],[-126.25499684166212,53.14574521667723],[-126.25521050326917,53.1456175842587],[-126.25543170015519,53.14549498153514],[-126.25564348981607,53.14536791704264],[-126.25583087941816,53.14522970074355],[-126.2559891545254,53.145078666806356],[-126.25613333800074,53.144921496368575],[-126.25626815127421,53.14476098478048],[-126.25640013334727,53.14459823832181],[-126.25653399393295,53.14443660804427],[-126.25667441415317,53.144277204205316],[-126.2568289235964,53.144123927420274],[-126.25699751543249,53.1439756661955],[-126.25716796724889,53.14382796536406],[-126.2573374821517,53.14367913692841],[-126.25750699929644,53.14353087292106],[-126.25767651187336,53.143382052938485],[-126.25784696703884,53.14323322168091],[-126.258018353296,53.14308495282341],[-126.25818973835322,53.142936683705464],[-126.25836299832262,53.14278897492178],[-126.25853718931562,53.14264181956309],[-126.25871232631056,53.142495217592725],[-126.25888933819272,53.14234917593751],[-126.25906823180283,53.1422048149935],[-126.25924900023021,53.14206100538488],[-126.25943165032552,53.14191886750767],[-126.25961617874006,53.14177785459613],[-126.25980352915855,53.141637946642945],[-126.2599936935743,53.14150028199878],[-126.26018666846629,53.14136428700371],[-126.26038246881097,53.1412299616111],[-126.26058202693977,53.14109787740913],[-126.26078533931722,53.140967460731865],[-126.26099521196643,53.140837029221956],[-126.2612116332731,53.1407071385984],[-126.26143461364144,53.14057948287794],[-126.26166229535322,53.14045404820569],[-126.26189656143556,53.14033252446257],[-126.26213458403521,53.14021547360449],[-126.2623782692035,53.14010345607466],[-126.26262572481498,53.139998143225334],[-126.2628769810309,53.139899552894136],[-126.26313201834061,53.13980935228787],[-126.26338992658735,53.13972810810197],[-126.26365071289219,53.13965694072432],[-126.26391719166895,53.13960032554442],[-126.26419789932496,53.13957224424662],[-126.2644918682442,53.139568790866576],[-126.26479530827407,53.139582677606306],[-126.26510443620367,53.139607755035655],[-126.26541640532439,53.13963674227662],[-126.26572742060246,53.13966405468759],[-126.26603369117137,53.13968241358053],[-126.26633238823716,53.13968510283253],[-126.26662063439039,53.13966485072811],[-126.26690955482132,53.1396042522688],[-126.26718232167475,53.13950503952404],[-126.26741092082922,53.13937903586272],[-126.26757011108911,53.13923582668744],[-126.26767395914605,53.13907537148775],[-126.26774308775798,53.1389015496958],[-126.26779529528544,53.13871935850118],[-126.26784656301562,53.13853549324039],[-126.26791283489499,53.138355519920815],[-126.2680081935265,53.138184435072404],[-126.26811011524933,53.13801614079383],[-126.26821390861042,53.13784784216683],[-126.26831862987733,53.13767954132663],[-126.26842429759672,53.1375118029218],[-126.26853090460216,53.13734349757998],[-126.26863749930541,53.13717574788223],[-126.26874503691637,53.137008004892294],[-126.26885352089413,53.13684081536629],[-126.2689619890364,53.13667362575929],[-126.2690713964195,53.136505869205855],[-126.26918080652436,53.13633867722085],[-126.26929115944205,53.13617148297112],[-126.2694014965097,53.136004288636975],[-126.26951185127788,53.13583765883564],[-126.26962218660502,53.13567046426464],[-126.26973253603991,53.135503269541125],[-126.2698428696251,53.135336074733196],[-126.26995322085932,53.13516943549506],[-126.27006355270402,53.13500224045032],[-126.2701738986563,53.13483504525294],[-126.27028422875912,53.134667849971315],[-126.27039362933026,53.13450065669387],[-126.27050302903787,53.13433346329975],[-126.27061149567857,53.13416571619055],[-126.2707199500334,53.13399852472316],[-126.27082841490025,53.13383076842058],[-126.2709368675415,53.13366357672327],[-126.27104438713242,53.13349583131587],[-126.27115284942752,53.13332807466888],[-126.27126129950146,53.13316088262734],[-126.27136976013747,53.132993134713516],[-126.27147820849795,53.13282594244189],[-126.2715847951417,53.132658189633005],[-126.27169043021918,53.1324893274333],[-126.27179419581634,53.13232102514832],[-126.2718979533983,53.132151602346774],[-126.27199983796186,53.131982183743126],[-126.27210172171054,53.131812765035775],[-126.27220453324249,53.13164334408783],[-126.27230736250135,53.13147447872361],[-126.27241204817943,53.13130561794029],[-126.27251675157486,53.13113731273751],[-126.27262425844137,53.130969556695],[-126.27273456880755,53.13080235876846],[-126.27284677262458,53.13063627678122],[-126.27296270846634,53.1304707507535],[-126.27308146622603,53.130306329544155],[-126.27320492168641,53.13014358247126],[-126.27333210906446,53.1299813913246],[-126.27346211468317,53.12981974924095],[-126.27359398051378,53.12965641757138],[-126.27372678526474,53.129492527832504],[-126.2738633181538,53.12932862929546],[-126.27400267281638,53.12916584447501],[-126.27414765348165,53.12900473155801],[-126.27429639159269,53.128845841626344],[-126.2744526349321,53.128689739629834],[-126.27461451867383,53.128537550297516],[-126.2747848655425,53.128390378515256],[-126.27496365692785,53.12824766855791],[-126.2751518471827,53.12811109432999],[-126.27535036854361,53.12798122727744],[-126.27556018664714,53.12785916760237],[-126.27578220419655,53.12774324594277],[-126.2760164248084,53.12763401795567],[-126.27625911218718,53.12753037186719],[-126.27651118393344,53.127430629318575],[-126.27676889602678,53.12733479004803],[-126.27703131267307,53.12724173578157],[-126.27729746816811,53.12715035728613],[-126.27756457702719,53.12706066107355],[-126.27783262816767,53.12697095307383],[-126.27809878393991,53.12688013744939],[-126.27836120592025,53.1267887653095],[-126.27861984943605,53.126694595924],[-126.27887192905887,53.12659764484814],[-126.27911556545799,53.12649679612802],[-126.2793497927469,53.12639092270289],[-126.27957276892796,53.12628002898168],[-126.27978069439322,53.126160215953625],[-126.27994635607249,53.12601752928296],[-126.28007163717956,53.12585364981081],[-126.2801659306876,53.12567583372906],[-126.28023677275073,53.125491359498724],[-126.28029265029508,53.125306355973464],[-126.28034293746428,53.12512752354246],[-126.28037078781169,53.12495042939009],[-126.2803723982794,53.12477060082328],[-126.2803590339341,53.124588557910556],[-126.28034191108233,53.12440653285049],[-126.28033229440847,53.12422504571249],[-126.2803423394423,53.12404575281503],[-126.28038235589709,53.123869750144],[-126.28045513623819,53.12369591061518],[-126.28054946416447,53.12352426077523],[-126.2806597128483,53.123353128795536],[-126.28077931214463,53.1231831038913],[-126.28090172933926,53.12301362788928],[-126.28101947358222,53.12284416284605],[-126.2811269146265,53.122674722159395],[-126.28121750145647,53.122504201002485],[-126.28128280754505,53.12233317519117],[-126.28131909728411,53.12216054218452],[-126.28132168417237,53.121986313157805],[-126.28130181012133,53.12181212857883],[-126.28126133982087,53.121636881495604],[-126.28120496763921,53.12146166323161],[-126.28113641860249,53.12128591813777],[-126.28105850791233,53.12110963950241],[-126.28097590739085,53.120932807243946],[-126.28089145452424,53.120756535046944],[-126.2808097950342,53.12057914467035],[-126.28073375493726,53.12040229661689],[-126.28066707381596,53.12022542628694],[-126.28061441947831,53.1200479579207],[-126.28056551650143,53.11986936914336],[-126.28051939902446,53.119688523888634],[-126.28048169314077,53.119507102912465],[-126.28045710768939,53.11932621548976],[-126.28045031012638,53.119147517766486],[-126.28046786956861,53.11897268826358],[-126.28055099438487,53.11880666668958],[-126.28070809856366,53.11864943293427],[-126.28086895230703,53.11849106961254],[-126.28096890400897,53.11832276685519],[-126.28103792926504,53.11814893532158],[-126.28109665294976,53.117972887346326],[-126.28114695048923,53.11779518318523],[-126.28118973892921,53.11761636744094],[-126.28122692365768,53.11743700925316],[-126.28126129702733,53.117258222421675],[-126.28128256190678,53.11707833734412],[-126.28128789262807,53.11689569353997],[-126.2812857447871,53.11671194707042],[-126.28128358574061,53.116528765308566],[-126.281290813982,53.11634779310735],[-126.28131583619084,53.11617014882958],[-126.28136521713913,53.11599691935366],[-126.28144738194037,53.115829778697496],[-126.28156328468158,53.11566815982133],[-126.28170728069898,53.1155120760748],[-126.28187189896546,53.11535930429113],[-126.28204869532985,53.115209864526776],[-126.28223111598872,53.11506209619634],[-126.28241167511095,53.114916008190235],[-126.28259036903184,53.114771044788924],[-126.28279436698737,53.114633298951574],[-126.28301431559746,53.11450112572485],[-126.28323426654948,53.114369507807524],[-126.28343735102561,53.11423456858568],[-126.28360856419363,53.11409129768268],[-126.28373198828248,53.11393694578247],[-126.28380947628801,53.11377093492072],[-126.28386540158478,53.113599929304996],[-126.2839035259625,53.113424493596995],[-126.28392853171212,53.11324628378271],[-126.2839413584325,53.11306474187581],[-126.28394762034891,53.112882095275246],[-126.28394826069879,53.11269834171681],[-126.28394889726009,53.11251402344701],[-126.2839514089181,53.11233026535643],[-126.28397429964748,53.11197727192114],[-126.2839571963472,53.111797486905196],[-126.28393446429843,53.11161770642289],[-126.28390987241049,53.1114373746463],[-126.28388433761084,53.11125704511083],[-126.28385880302842,53.111076715551484],[-126.28383606806214,53.11089637924788],[-126.28381802267536,53.110716596366544],[-126.28380559488272,53.11053735571868],[-126.28380159894567,53.1103586505505],[-126.28380695175589,53.11018105232741],[-126.28382542172763,53.11000397833595],[-126.28388131947881,53.109829611081274],[-126.28397093215504,53.10965796839159],[-126.28407925236587,53.109487965809635],[-126.2841903859118,53.109317947384135],[-126.28428935966231,53.109147402337044],[-126.28437895806313,53.108976324001475],[-126.28446762006439,53.108804118427685],[-126.28455535331213,53.10863192396801],[-126.28464214272815,53.10845972273368],[-126.28472798465135,53.108286967959806],[-126.28481477272004,53.108114775528584],[-126.28490250307063,53.107942571781045],[-126.28499208891758,53.107770372440484],[-126.28508262455102,53.107599282202244],[-126.28517597365237,53.107428194053156],[-126.28527118560632,53.10725821279624],[-126.28537108960312,53.10708934952485],[-126.28547381439364,53.10692159081893],[-126.28558121237326,53.10675438542034],[-126.28569610131882,53.10658828224653],[-126.28582035220948,53.10642327675244],[-126.28595677159585,53.10626048256306],[-126.28610445766263,53.10610158696638],[-126.28626620949886,53.10594881506653],[-126.28644016356249,53.10580329176626],[-126.28662821726428,53.10566670652405],[-126.28682937440563,53.10553120065723],[-126.28704081696591,53.10539399327658],[-126.28726349583268,53.105260684236235],[-126.28749841061456,53.10513742004017],[-126.28774465653632,53.10502982296874],[-126.28800414655106,53.10494403729239],[-126.28827599490296,53.104886232013996],[-126.28855828561713,53.10485192995128],[-126.28884435980525,53.10482377593116],[-126.28913327466829,53.10480178119623],[-126.28942503379095,53.10478426056875],[-126.28971963726205,53.10477121402785],[-126.29001706640263,53.10476208585788],[-126.2903154463805,53.1047563069744],[-126.2906157314616,53.10475332824751],[-126.29091788789415,53.10475258504186],[-126.29122006698077,53.10475296145267],[-126.2915241097937,53.10475445293974],[-126.29182817148313,53.10475650830236],[-126.29213221817243,53.104758553956536],[-126.29243627219181,53.104759487329346],[-126.29273937544971,53.104759292866376],[-126.29304246327685,53.10475686573835],[-126.29334366451758,53.10475219266143],[-126.29364390334514,53.104744724577245],[-126.29394225889223,53.104733343337756],[-126.29424153444747,53.10472082964634],[-126.29454267308529,53.10470719907332],[-126.29484379201686,53.10469076218748],[-126.295143012402,53.104670403234806],[-126.29543937176007,53.104643336967555],[-126.2957310099447,53.10460899439199],[-126.29601604019498,53.104565139376945],[-126.29629346925663,53.10450674590044],[-126.29656046183297,53.10442652478744],[-126.29681705290315,53.10432952250291],[-126.29706231960124,53.104220778952836],[-126.29729538813388,53.10410590759384],[-126.29751719825325,53.1039865823183],[-126.29772772247577,53.10385888617986],[-126.29793166519735,53.10372559504955],[-126.2981318301385,53.103589516448885],[-126.29833200485132,53.1034528817297],[-126.29853311805319,53.103317920475035],[-126.29874081016584,53.1031885444694],[-126.29895697498789,53.10306586933601],[-126.29918443115578,53.10295268453038],[-126.29942600452885,53.10285067694602],[-126.29967413316325,53.10275088417032],[-126.2999278931483,53.10265388217515],[-126.3001863415689,53.10255967331927],[-126.30044949334835,53.102468248570936],[-126.30071548958269,53.1023812977803],[-126.30098618624625,53.10229881620317],[-126.30125878457397,53.10222081094084],[-126.30153516347858,53.102148397635084],[-126.30181251724544,53.10208270387118],[-126.30209272780735,53.10202316012844],[-126.30237298955595,53.10197090297512],[-126.30265802322536,53.10193095785545],[-126.30295347469257,53.10191003295011],[-126.30325463864807,53.10190310272317],[-126.30356054834387,53.10190679930905],[-126.30386930796757,53.10191552530832],[-126.30417714787598,53.10192538227897],[-126.30448214995218,53.101931875452635],[-126.3047814872238,53.10193110401949],[-126.30507324836778,53.10191747071831],[-126.30535459101706,53.1018870479352],[-126.30561320320926,53.101815791399645],[-126.3058386872994,53.101691958975444],[-126.30603779226786,53.10154242411175],[-126.3062163126439,53.10139238648194],[-126.30635174197474,53.10123405241363],[-126.30645244735824,53.10106124237895],[-126.30656817388942,53.100893995522625],[-126.30673548907984,53.10074733848418],[-126.30691966061323,53.10060344302892],[-126.30711508409149,53.100463444088504],[-126.30731990075496,53.10032901366812],[-126.30753600991876,53.1002040817943],[-126.30776249315646,53.100092012144614],[-126.30801439678714,53.10000172008155],[-126.30830301493793,53.0999427042856],[-126.30860489615165,53.09990885877252],[-126.30890037957069,53.09989464154514],[-126.3091978724657,53.09989946595445],[-126.30949731798563,53.099915488992366],[-126.30979771891255,53.09993319392319],[-126.31009711979326,53.09994304860811],[-126.31039453113756,53.0999366657305],[-126.31068901380982,53.09991460351547],[-126.31098344953813,53.09988414180275],[-126.3112759579163,53.09984807322131],[-126.3115684561278,53.09980865155681],[-126.31186093467566,53.099768664511586],[-126.31215344413606,53.099730917557295],[-126.31244784189528,53.099697646682664],[-126.31274230374632,53.09967109759949],[-126.31303963005958,53.09965350379038],[-126.31333888067117,53.09964318257078],[-126.31363909636242,53.09963790453663],[-126.31394122258934,53.09963598201359],[-126.3142433504314,53.09963629961303],[-126.31454455038322,53.0996366189094],[-126.31484573369916,53.09963469658358],[-126.31514502544547,53.099629981891404],[-126.31544240048903,53.09961910460197],[-126.31573785870167,53.099602064729595],[-126.31602950421639,53.099575514971725],[-126.31631733263113,53.09953889066086],[-126.31660040334278,53.099490518150255],[-126.3168796373634,53.09943150648975],[-126.31715508119302,53.099364096479846],[-126.31742766029039,53.09928997978054],[-126.3176992619342,53.09921137431066],[-126.31796899006576,53.099130541313976],[-126.31823963657351,53.099048575808844],[-126.31851029469388,53.098968294803214],[-126.31878377566181,53.098891366908916],[-126.31905824063647,53.09882003797139],[-126.3193374395924,53.098755418303625],[-126.31962044017389,53.09870087174578],[-126.31990819191846,53.09865527525148],[-126.3202006865315,53.0986175083591],[-126.32049789225802,53.098585330219166],[-126.32079701062675,53.09855874839213],[-126.32109894844369,53.09853496375577],[-126.32140184995635,53.09851397237137],[-126.32170475538571,53.09849353594248],[-126.32200672843364,53.09847254553289],[-126.32230774560692,53.0984498807629],[-126.32260499970927,53.098424419887216],[-126.32289847792367,53.09839448677456],[-126.32318816732045,53.0983583963296],[-126.32347124577652,53.0983150448157],[-126.32374866665008,53.09826386496079],[-126.32401663712307,53.098202070555374],[-126.32426385137623,53.09811511785112],[-126.32448935562965,53.09800357429964],[-126.32469880884804,53.097873582474655],[-126.3248997687182,53.09773297380587],[-126.32509883514886,53.09758957334152],[-126.32530353792552,53.09744950940509],[-126.32551862150257,53.097320629990776],[-126.32575064506561,53.097207380847074],[-126.32599017787807,53.09709579568552],[-126.3262362621427,53.09698587710449],[-126.32648705729711,53.09688153828456],[-126.32674541783577,53.096786150589324],[-126.3270094820979,53.096704747711584],[-126.3272802340148,53.096640688248],[-126.3275614844421,53.09660293417643],[-126.32785886972006,53.0965965073437],[-126.32816481262977,53.09660910369291],[-126.32847455532661,53.09662729095234],[-126.32877955781598,53.09663821212792],[-126.329074099273,53.09662786408325],[-126.329353429567,53.0965839530817],[-126.32961940604837,53.09650869702481],[-126.32987491771856,53.096409949029756],[-126.330120042595,53.096297775089276],[-126.33035576335514,53.0961811540681],[-126.33057554648923,53.09605896591607],[-126.3307727021304,53.095913875867495],[-126.33096139821741,53.09576265115341],[-126.33115671992623,53.09562260312568],[-126.33137378090588,53.09551275501376],[-126.33162769667862,53.09545041787423],[-126.33191751204849,53.095433917960534],[-126.33222814045733,53.09544761107423],[-126.33254167027263,53.09547249974295],[-126.33284392688729,53.09549293751538],[-126.33314448220247,53.095532982764915],[-126.33344417905442,53.09558367846244],[-126.33373815025081,53.09561982367406],[-126.3340214997227,53.09561454139671],[-126.3342942107269,53.0955639146458],[-126.33456016493943,53.095485850794816],[-126.3348203588009,53.095390995853144],[-126.33507768669801,53.09528774057067],[-126.33533316057758,53.095186739850256],[-126.33559151302133,53.09509412931714],[-126.33585643479918,53.095005416650125],[-126.33612415827969,53.09491726012233],[-126.33638718511179,53.09482575498611],[-126.33663893421867,53.09472755865518],[-126.33687283947718,53.094619328553826],[-126.33708137265084,53.0944971691495],[-126.33725984704131,53.09435884407527],[-126.33741295386356,53.09420714568895],[-126.33754916414854,53.094045967001456],[-126.33767783632322,53.09387977211281],[-126.3378065224532,53.09371357702566],[-126.33794457631933,53.09355128106739],[-126.33809954535074,53.093397335471245],[-126.33827515391198,53.09325341467694],[-126.33846390076225,53.09311337309184],[-126.3386638900186,53.09297778975969],[-126.33887328992084,53.09284777240526],[-126.33909207512511,53.09272389472567],[-126.33931653468643,53.09260616732523],[-126.33955134462484,53.092497364431985],[-126.33980212090506,53.09239804351193],[-126.34006514667335,53.09230933561675],[-126.34033668112701,53.092231242476025],[-126.34061296861425,53.09216377485774],[-126.34089305918233,53.09210414777536],[-126.34117785351019,53.092048979306654],[-126.34146550083662,53.091998848439566],[-126.34175504953605,53.09195263744945],[-126.34204649961023,53.09191033735952],[-126.34233891436587,53.091870830412915],[-126.34263040855934,53.09183413103246],[-126.34292480460873,53.09181031224254],[-126.34322499873655,53.09180775559021],[-126.34352524147255,53.091813050193906],[-126.34382371510436,53.091828989038156],[-126.34412318483841,53.09185332317147],[-126.34441879128269,53.09186254612312],[-126.34471037017911,53.09183649018013],[-126.34499703726344,53.09178242747375],[-126.34527800249658,53.09171549995601],[-126.34555143836417,53.09164467666439],[-126.34582109259424,53.091567132095626],[-126.34608884226773,53.091487360532575],[-126.34635660582376,53.09140757935206],[-126.34662719401643,53.09133115960822],[-126.34690157237111,53.09126088614568],[-126.34717973643852,53.09119620320512],[-126.34745978839415,53.091133754969036],[-126.34774079016263,53.09107409993126],[-126.34802368574319,53.09101556806487],[-126.34830657470884,53.09095814703038],[-126.34859041021474,53.09090128723304],[-126.34887424495946,53.090844426752135],[-126.34915714666843,53.090787012595264],[-126.34944003722786,53.0907301535369],[-126.34972294657452,53.0906738494889],[-126.35000772446855,53.09061922439378],[-126.3502934582053,53.09056628094396],[-126.35057917262947,53.090511086977294],[-126.35086487244189,53.09045421615398],[-126.35115344942818,53.090405179292866],[-126.351443097396,53.09037351012188],[-126.35173859750049,53.09037094576936],[-126.35203709099645,53.090391910346],[-126.35233564160312,53.09041791157904],[-126.35279423942903,53.090460241232144],[-126.35308663323754,53.090422392831535],[-126.3533809305024,53.090386778929634],[-126.35367142954199,53.09034612911586],[-126.35395527717426,53.090292061971184],[-126.35423060738705,53.090225129918885],[-126.35450211554061,53.09015036547602],[-126.35477077785922,53.09007000665411],[-126.35503576882341,53.08999805720315],[-126.35530998380676,53.08991095770728],[-126.35555508370946,53.08980825874973],[-126.35580488832615,53.08971002694419],[-126.3560584606231,53.08961514462643],[-126.35632239570282,53.089530314640676],[-126.35659193207599,53.08944267048969],[-126.35686522117572,53.089358366797114],[-126.35714238747629,53.089288625681654],[-126.35742256793434,53.0892446363951],[-126.35771054560446,53.08923816270948],[-126.35801005237434,53.08926807280492],[-126.35830603663004,53.08932375442464],[-126.35858345609476,53.08939574278173],[-126.35885063924735,53.089474484328875],[-126.35911601078269,53.089558277325395],[-126.35937861311061,53.08964711573176],[-126.35963565310745,53.08974157277765],[-126.35988619291423,53.08984220710274],[-126.36012744963041,53.08994903619211],[-126.36035660007884,53.09006262445853],[-126.36057365379834,53.09018409240081],[-126.36077862576863,53.09031344003853],[-126.36097524241472,53.09044897984346],[-126.36116627239653,53.09058900926052],[-126.36135451994531,53.09073073203951],[-126.3615418458666,53.09087302204206],[-126.36173287962947,53.091013050509346],[-126.36192856464312,53.09114914729267],[-126.36213355023284,53.09127905720552],[-126.36234968755667,53.09140052464459],[-126.36257977531814,53.091511864757884],[-126.3628247213839,53.091612509967426],[-126.36307897809327,53.091706412276096],[-126.36334065934186,53.09179524466551],[-126.36360421260851,53.09188238554552],[-126.36386775684043,53.09197009057552],[-126.36412760515843,53.09206116777894],[-126.36437814052358,53.092158440126035],[-126.36462590293097,53.092258517158974],[-126.36487274841602,53.09235971695936],[-126.36511958011583,53.09246091628458],[-126.36536549004518,53.09256267368901],[-126.36561048315312,53.09266556283741],[-126.36585545761442,53.09276788682252],[-126.36610045789466,53.092871330675315],[-126.36634451178236,53.09297421224087],[-126.36658857661787,53.093078222687424],[-126.36683263776558,53.093181667928384],[-126.36707670491478,53.093285668391154],[-126.36731983062026,53.093389680237266],[-126.36756297240457,53.09349368256712],[-126.36780704321855,53.09359769046669],[-126.36804646552834,53.09370562945533],[-126.36827939356793,53.0938186257699],[-126.3685141836866,53.09393050432205],[-126.36875732666839,53.09403394843108],[-126.36901343240959,53.0941239060774],[-126.36928345844876,53.094200374186336],[-126.36955904817377,53.09427122199492],[-126.36983840424097,53.09434485403568],[-126.3700899333482,53.09444490778176],[-126.37034517533293,53.09454158798473],[-126.37059111480329,53.09464389909001],[-126.37081286591182,53.09476085151644],[-126.37099738887069,53.094898653326005],[-126.37115586261659,53.09505221408073],[-126.37131248665875,53.095208030301464],[-126.37148866691948,53.09535313601679],[-126.37167415183688,53.09549428612073],[-126.37185872009017,53.09563656823044],[-126.37204423227473,53.0957788381092],[-126.37222972586096,53.0959205520015],[-126.37241801933321,53.096060580570175],[-126.3726100404339,53.096198911913696],[-126.37280578429024,53.096334990283395],[-126.37300710669105,53.096467124638835],[-126.37321495050058,53.09659532093859],[-126.37342929088744,53.09671845877161],[-126.37365014252336,53.09683820529555],[-126.37387752543388,53.09695513408458],[-126.37410862619323,53.09706925400687],[-126.37434531534588,53.09718055015314],[-126.37458666013939,53.0972884697002],[-126.37483077985047,53.097393574330845],[-126.37507861242366,53.09749531426941],[-126.37532921985532,53.097594239253844],[-126.37558260715535,53.09768922879568],[-126.37583783654141,53.097780859532584],[-126.37610048506947,53.09786517866731],[-126.37637055264798,53.097942186151414],[-126.3766461785344,53.098013017283236],[-126.37692551187817,53.098079918837485],[-126.37720670673762,53.09814568437199],[-126.37748697963734,53.09821201689193],[-126.37776445986528,53.09828059858376],[-126.37803636887847,53.09835367926458],[-126.37830085603416,53.09843350580611],[-126.37855607576758,53.09852288978829],[-126.3787899411421,53.09863082468386],[-126.37900618865307,53.098755057725256],[-126.37921223118599,53.098887731002],[-126.37941827006914,53.099021524380376],[-126.37963267083295,53.09914801206201],[-126.3798787698581,53.09926262822054],[-126.38013606947334,53.0993744022231],[-126.38035323243517,53.09949471271879],[-126.38043595440675,53.099645152131544],[-126.38041339893739,53.09984186002015],[-126.38039423303105,53.099999350033706],[-126.38039167562779,53.100026249169325],[-126.38027964259948,53.10015546191001],[-126.38001558383795,53.10022857597597],[-126.37970645009496,53.10028391595042],[-126.37943780538755,53.1003682479872],[-126.37921813076417,53.1004894062533],[-126.37901166051343,53.10062283778896],[-126.37880046948202,53.10075069077315],[-126.37855627047027,53.10084950832374],[-126.37826390754597,53.100898068051926],[-126.3779675226048,53.10091358205151],[-126.37766728601541,53.100918458822754],[-126.37735501636136,53.100936827652944],[-126.377030109053,53.10100676786502],[-126.37701161389518,53.101135123257066],[-126.37704780573361,53.10131371564181],[-126.37716993152584,53.101476356447115],[-126.37730980368922,53.101636690599065],[-126.37745715038601,53.1017958892172],[-126.37760353524291,53.10195284084404],[-126.37775739465815,53.10210697174205],[-126.37791590992522,53.10225941134761],[-126.37807442625228,53.10241184176407],[-126.37822827407827,53.10256597205712],[-126.37837280861247,53.102722937564636],[-126.37850799976624,53.10288272945252],[-126.37863574332965,53.1030447859351],[-126.37875974606791,53.10320853045066],[-126.37888189886603,53.103372845461465],[-126.37900403764368,53.103537160378636],[-126.37912805324217,53.103700348686125],[-126.3792380954977,53.10387086909984],[-126.37937328354712,53.104029539474965],[-126.37957186402062,53.10416167105503],[-126.37977603864374,53.10429322857957],[-126.37998395639454,53.10442309751842],[-126.38019744818233,53.104550142548376],[-126.3804156009815,53.104674366578074],[-126.38064027578446,53.10479465210226],[-126.38087049950293,53.10490931706088],[-126.38110816293789,53.10501723487553],[-126.38134953443519,53.10512289934547],[-126.38159280318266,53.10522967764701],[-126.38183606327397,53.105337020180876],[-126.38208121048744,53.10544434714865],[-126.38232727693801,53.10555055914513],[-126.38257613855991,53.105656196873994],[-126.38282591907881,53.10575902549175],[-126.3830784946569,53.10585961258415],[-126.38333289701526,53.105956822895244],[-126.38359007912528,53.106050106541595],[-126.38384908778771,53.10613834614954],[-126.38411179387734,53.10622152666531],[-126.38437725912657,53.1062985306646],[-126.38464639658494,53.10636936412208],[-126.38491827273558,53.106431789151316],[-126.3851975218104,53.10648185561093],[-126.38548506638631,53.10651733746653],[-126.38577904553676,53.10654102841175],[-126.38607761858863,53.10655629576166],[-126.38637988258951,53.10656427184668],[-126.38668491513722,53.10656887675128],[-126.38699086556471,53.10657235741334],[-126.38729589823696,53.10657696074143],[-126.38760003366694,53.10658492757692],[-126.38790047365173,53.10659962846108],[-126.38819632068765,53.10662275152775],[-126.38851196528826,53.106661486142784],[-126.38876780394214,53.106709389176444],[-126.38904162619896,53.10677907678684],[-126.38930902640718,53.106861665614574],[-126.38957273752243,53.106951553405885],[-126.3898355423115,53.10704368449823],[-126.39010018838732,53.10713244757737],[-126.39036757745149,53.10721335785108],[-126.39064230787929,53.107280242109965],[-126.39092436274963,53.10732804488601],[-126.39121652083651,53.10735621015189],[-126.39151602400155,53.10736922876942],[-126.3918191762361,53.10737214151449],[-126.39212228191474,53.107370016090314],[-126.39242257867657,53.10736846391998],[-126.39272099845552,53.10736466735693],[-126.39301935650825,53.1073558326986],[-126.39331675519087,53.10734363912604],[-126.39361508116512,53.1073297655228],[-126.39391339713963,53.10731644694289],[-126.39421174873416,53.1073053683927],[-126.39451012691339,53.10729877080433],[-126.39480950020157,53.10729777139435],[-126.39510891524819,53.10730125289091],[-126.39540650624853,53.107309777278125],[-126.39577653917195,53.10736064452365],[-126.39598942186812,53.10711455284111],[-126.39617709149815,53.10697386766001],[-126.39638070353054,53.10683816626278],[-126.39657870566036,53.10670137183123],[-126.39674949010853,53.10655626053169],[-126.39687804154681,53.10639784533948],[-126.39697658119096,53.106230002451525],[-126.39705445560637,53.10605495041658],[-126.39712014903424,53.105877142582294],[-126.39718117178084,53.10569934142089],[-126.39723470032199,53.10552213009899],[-126.39726012593918,53.10533941091448],[-126.39728179439304,53.105156704331634],[-126.3973306728641,53.10498174944122],[-126.39743673341677,53.104818371514355],[-126.39759991309555,53.10466151512645],[-126.39780534367162,53.104521887825335],[-126.39803632759171,53.10441299105602],[-126.39830806428392,53.10435941446973],[-126.39861567050197,53.10434157081034],[-126.39891757314452,53.10431254106417],[-126.39920238443173,53.104258353582296],[-126.39948339948211,53.104196899773925],[-126.39976439350984,53.10413488961876],[-126.40001744322066,53.104084168927145],[-126.4000482481448,53.10407790666901],[-126.40033596027712,53.1040332349589],[-126.40062844133269,53.10399751001212],[-126.4009209281197,53.103964025227256],[-126.40121533215664,53.10393389457038],[-126.4015106796323,53.103905436172695],[-126.40180697601679,53.10387922368118],[-126.40210329754443,53.10385412185007],[-126.40239960911377,53.10382958401731],[-126.40269594595031,53.10380616580816],[-126.40299133422972,53.10378219434328],[-126.40329042130686,53.1037537187401],[-126.4035904200036,53.10372356306677],[-126.40389049199246,53.10369957335912],[-126.40418785121355,53.10368623199651],[-126.40448163944366,53.103690829370926],[-126.4047700289216,53.10371785358554],[-126.40505300399433,53.10376561957083],[-126.40533424812563,53.10382796568263],[-126.4056127541575,53.103898154736555],[-126.40589129761942,53.103970592878156],[-126.40617166038898,53.10403909804138],[-126.40645382403503,53.10409863271538],[-126.40673690029362,53.10415647841354],[-126.40701997741078,53.10421433239526],[-126.4073048992933,53.10426937372678],[-126.40759071216068,53.10432048522933],[-126.40787928581547,53.104365993209186],[-126.40817059305354,53.104403083159774],[-126.408465535939,53.10443063148967],[-126.40876232736262,53.104454255585246],[-126.40905909878711,53.10447732326037],[-126.40935588541564,53.10450038117506],[-126.40965263583229,53.10452120652638],[-126.40994845308408,53.104541469660624],[-126.41024522980287,53.10456340492522],[-126.41054199194788,53.104585348459665],[-126.41083603136126,53.104615134928146],[-126.41113010926202,53.10464884660376],[-126.41142422025156,53.10468591879611],[-126.41171373259466,53.10473029370799],[-126.41199494927784,53.104788133310514],[-126.4122725065488,53.1048543928951],[-126.41254728894606,53.10492458758378],[-126.41282024347551,53.10499758467083],[-126.41309227780584,53.105072825251646],[-126.41336431852064,53.105148620929576],[-126.41363634936337,53.10522330452573],[-126.41390837013756,53.10529685811371],[-126.41418224104474,53.10536817264947],[-126.4144588570283,53.105433865693456],[-126.41475657586783,53.10545635105698],[-126.41504697012836,53.105495112452715],[-126.41533283207016,53.105547890253185],[-126.41561684170503,53.105604035237505],[-126.41590085606794,53.10565905906978],[-126.41645449620624,53.105734977051625],[-126.41674869648948,53.10577987888036],[-126.4170169346491,53.10584840109771],[-126.41723972170323,53.1059557432756],[-126.41742260625169,53.106096830585294],[-126.41758600980626,53.10625535793576],[-126.41775035758732,53.106413881713834],[-126.41793511137959,53.10655440585693],[-126.41816070904387,53.10666229208634],[-126.41842908229644,53.10674370031273],[-126.41872249085532,53.10680148077199],[-126.41902223110185,53.10683795840851],[-126.41931519950852,53.1068526059801],[-126.41960974360934,53.1068358745335],[-126.4199078481482,53.10680232290138],[-126.42020598379868,53.10677044660327],[-126.42050428746144,53.106757060921694],[-126.42080273385291,53.106756563678466],[-126.42110215271174,53.106760535069164],[-126.42140067877995,53.10676955540803],[-126.42169927014436,53.10678362128452],[-126.42199602582852,53.106802730520556],[-126.42229189275612,53.10682575929379],[-126.42258777680381,53.10685047242872],[-126.42288275550492,53.106877428970265],[-126.42317773643481,53.106906069931334],[-126.42347274947609,53.10693638624143],[-126.42376683667908,53.10696838133405],[-126.42406092997497,53.10700094038299],[-126.42435409757388,53.10703518718686],[-126.42464728618201,53.10706998893441],[-126.4248747650602,53.10708429325219],[-126.42523089197884,53.1071452024896],[-126.42552227280785,53.1071861665876],[-126.42581272810517,53.10722881846481],[-126.42610225222647,53.10727259343963],[-126.42639086584052,53.10731805615311],[-126.42664213170593,53.10737093142091],[-126.42694684441302,53.10743481768606],[-126.42722912950448,53.10750270132516],[-126.42749374371722,53.10758017653086],[-126.42778718181646,53.10763906384114],[-126.42808238063702,53.10768841570904],[-126.42839251859992,53.107733230892364],[-126.42868846919126,53.10776353080968],[-126.42903581126141,53.10778804122504],[-126.4293728144965,53.10771398822674],[-126.42961017374127,53.107594913534],[-126.42983914206543,53.107478118732715],[-126.43006900095456,53.10735627370998],[-126.43031773628073,53.10725228678843],[-126.43056457440791,53.10714438017026],[-126.43081046261341,53.10703592074202],[-126.431056372347,53.106929701621745],[-126.43130324883663,53.10682740452533],[-126.43154352015821,53.106718964031515],[-126.43178000250776,53.10660605505775],[-126.43201744368461,53.10649481829578],[-126.43226055606488,53.106390847748564],[-126.4325131745616,53.10630028737377],[-126.43278562475808,53.1062287015883],[-126.43307981805559,53.10618000933129],[-126.43338079574684,53.10615369161003],[-126.4336735959538,53.106150376936505],[-126.43396123263817,53.10619246341651],[-126.43424815984035,53.10625583149195],[-126.43453593911345,53.106310241060825],[-126.43482368687216,53.10636296488138],[-126.43511572941466,53.106377576713754],[-126.43541389666808,53.10635014370853],[-126.43570736123958,53.10632105108057],[-126.4359888118261,53.10630713266164],[-126.43629658686993,53.106304312012234],[-126.43664373100559,53.10631031776347],[-126.43685157148404,53.10632467157559],[-126.43715033814536,53.106355504623195],[-126.43744226582031,53.106358906579985],[-126.43775245840168,53.10631909815997],[-126.43803323681472,53.10624019092969],[-126.43811893867536,53.106113261843134],[-126.43820106736065,53.10591295158406],[-126.43828152702625,53.105732259893216],[-126.43837324675944,53.10555488774042],[-126.43854496218572,53.10542427792456],[-126.43879953111025,53.10534322512175],[-126.43909549525641,53.105286103343616],[-126.43939150255889,53.10523177731866],[-126.4396724566459,53.10517079276064],[-126.43995436443299,53.10511091547337],[-126.44023723189548,53.10505271910177],[-126.4405210557381,53.10499732410835],[-126.44080772432109,53.10494639068478],[-126.441097171273,53.10489209378793],[-126.44139041186689,53.10484281958753],[-126.44168386190148,53.10481371209899],[-126.44197579100369,53.104818223276986],[-126.44227258620099,53.104840078130884],[-126.44257137226623,53.10487481452482],[-126.44286562933651,53.10492301261619],[-126.44314880178608,53.10498469701424],[-126.44341435480908,53.10506045702026],[-126.44365676019376,53.105159823938074],[-126.44388438663391,53.10527718212626],[-126.44410739970441,53.105401270982235],[-126.44433505800089,53.10552142483681],[-126.4445775270244,53.105626400866925],[-126.44483112330421,53.10572180616401],[-126.44508659173526,53.10581720386765],[-126.44534485761818,53.1059109053131],[-126.4456068164724,53.10600123986711],[-126.44587153738237,53.10608651688635],[-126.44613993650681,53.10616561243853],[-126.44641294504262,53.10623741148983],[-126.4466905183413,53.10629910855428],[-126.44697357559757,53.10634845921171],[-126.44726490978744,53.10638489710939],[-126.44756177195838,53.10641178499944],[-126.4478622964591,53.1064324912775],[-126.44816374066062,53.1064509613564],[-126.44846426296908,53.10646998991117],[-126.44876202483208,53.10649406575463],[-126.4490551851253,53.10652601048851],[-126.44934005831031,53.10656974630856],[-126.44961208432771,53.106637059894005],[-126.44986663499981,53.106731886060714],[-126.45010825891409,53.10684413245518],[-126.45034151943743,53.10696089203912],[-126.45056171952051,53.10708106230643],[-126.45076242507116,53.10721475196942],[-126.45096033571562,53.10735013711413],[-126.45117404292974,53.107475933277556],[-126.45140353781548,53.10758989949759],[-126.45164233572412,53.10769879215854],[-126.45188483529662,53.1078037530716],[-126.45213013223237,53.10790701762137],[-126.45239771914164,53.10799618618403],[-126.45264204553912,53.10809665672515],[-126.45281662669271,53.108236045167665],[-126.45294376921056,53.10840194133579],[-126.45305317146598,53.108571831417485],[-126.45312992705249,53.10875025441707],[-126.45320852443496,53.108925864670255],[-126.45335696267463,53.10906983430608],[-126.45362270638256,53.109160692308855],[-126.4538976900256,53.109239189230365],[-126.45417911418174,53.10930813241826],[-126.45440666586445,53.109413701291814],[-126.45455620619411,53.10957335154247],[-126.45474665524799,53.10970875894545],[-126.45499755673664,53.10981087549155],[-126.4553481658304,53.109700276784565],[-126.45558467971361,53.109594607528855],[-126.45578629401976,53.10946217244491],[-126.4559718802467,53.10931915897438],[-126.45614620211352,53.10917282729077],[-126.45630170881098,53.10901704856169],[-126.45646944768218,53.108868500863245],[-126.45667954691011,53.10874331886271],[-126.45690658768501,53.10862759039635],[-126.45714116015577,53.10851632314707],[-126.45738044685937,53.108407833841326],[-126.45762254362525,53.10830045361889],[-126.45786276195265,53.10819251545445],[-126.4580992066192,53.10808179475362],[-126.45832718025305,53.10796718929288],[-126.45853914062448,53.10784199667007],[-126.45871815701365,53.107697883719794],[-126.45888586395502,53.107547647386056],[-126.45906016847763,53.10740131125997],[-126.45923166053687,53.10725386532809],[-126.45939657090943,53.10710420379237],[-126.45957364665418,53.10695561517491],[-126.45972446850702,53.106800405627844],[-126.45980212740994,53.10662923830198],[-126.45986664866118,53.106453075470526],[-126.45992176280247,53.10627358780931],[-126.45996378215183,53.10609303059508],[-126.45998989609197,53.105913090983975],[-126.45999731202996,53.10573435352849],[-126.45997761520066,53.10555795350708],[-126.45992237267194,53.1053805802692],[-126.4598353271559,53.10520500690889],[-126.45972309246699,53.10503513372471],[-126.45957271173734,53.10488389181394],[-126.45939896198358,53.104734990403585],[-126.45918792778835,53.10459854964916],[-126.45898350866496,53.10446881454574],[-126.45876416237486,53.104341368970026],[-126.45854725285244,53.10418030872251],[-126.45846210454997,53.10400640311135],[-126.45844193532746,53.10387147047888],[-126.45844063679945,53.10366419053923],[-126.45843296437499,53.10347374218724],[-126.458407601841,53.103291761382756],[-126.45840564532065,53.103110819213185],[-126.45840555960018,53.10292986080652],[-126.45842514984871,53.10275107596009],[-126.45848125055603,53.10257550190278],[-126.45857106267329,53.10240316736783],[-126.45868150179257,53.10223522558386],[-126.45881447511555,53.102075048399506],[-126.4589708920545,53.10192093807256],[-126.4591151185534,53.101763513488244],[-126.45923681518718,53.10159888876635],[-126.45934723753197,53.10142983483365],[-126.4594258127462,53.101256978469436],[-126.45946225929073,53.101080359703104],[-126.45947433998087,53.100901038953076],[-126.45947051425846,53.10072065955416],[-126.45946014231855,53.10053974983415],[-126.45944881536201,53.10035771438186],[-126.45940923899593,53.100158426036664],[-126.45936728641537,53.099999483517635],[-126.45935461203736,53.09995135291611],[-126.45931413617204,53.099755994090785],[-126.4593160993824,53.09959183429548],[-126.45937040730104,53.09950982951002],[-126.45963278782583,53.09946735238783],[-126.45997872239786,53.099537716231914],[-126.46028564968152,53.09963512206502],[-126.4605094840229,53.099746296411816],[-126.46070925553668,53.09988109382842],[-126.46087143061078,53.09999923057128],[-126.46090349528649,53.10002319995715],[-126.46110980616429,53.100156286011256],[-126.46134390888787,53.10026574249503],[-126.46159935719409,53.10035886397734],[-126.46186132518461,53.10044859804666],[-126.46211028159706,53.10054734609912],[-126.46233717133516,53.100679793791905],[-126.46255483412097,53.1008251579796],[-126.46277871131886,53.10093913347025],[-126.46302607182973,53.10097626044916],[-126.46329401771848,53.10092758643437],[-126.46357456586017,53.10083517334174],[-126.46386077069005,53.10074553404779],[-126.46415591886097,53.10070459454239],[-126.46447108885515,53.1006988746544],[-126.46475128226201,53.100659121847166],[-126.46499424050026,53.10055003725055],[-126.46524621679771,53.100411793595235],[-126.46545781145339,53.10025857768834],[-126.4655795960731,53.10010459471099],[-126.46557189939277,53.099999301560175],[-126.46556959802591,53.09996009443878],[-126.46545385257107,53.09981208452333],[-126.46526887234248,53.0996626708257],[-126.46504090973059,53.09951735205163],[-126.46479901513813,53.09938160707063],[-126.46457038548567,53.099259810756884],[-126.46432793410482,53.0991576808782],[-126.46406227042313,53.09907189283283],[-126.46378551493333,53.098996787629595],[-126.46350879445274,53.09892616349328],[-126.46322382336253,53.0988701370634],[-126.46292700680243,53.09884216791539],[-126.4626314608103,53.098845566010795],[-126.46233425782924,53.098868573466326],[-126.46203612399952,53.09889271323817],[-126.46177382018934,53.09876992269025],[-126.46153782685936,53.09865936287673],[-126.46130185577191,53.09854935825277],[-126.46106587094346,53.09843935320912],[-126.46082432680726,53.09833273075652],[-126.46057812406463,53.09822836688847],[-126.4603365673916,53.098121743484626],[-126.46010803643021,53.09800722563717],[-126.4599008781005,53.09788029908879],[-126.45971694477267,53.097739271567605],[-126.45954603723888,53.09759035882883],[-126.45938256809518,53.09743861128358],[-126.45921632592696,53.097289115205015],[-126.45905101559549,53.09713849480169],[-126.45889595097573,53.096984472987415],[-126.45876233141281,53.096824765403454],[-126.45865109623927,53.09665768329736],[-126.45855944123906,53.09648548750111],[-126.45848552585817,53.09631098187634],[-126.45843954549505,53.096123486980524],[-126.4584179466911,53.095943176017336],[-126.458594342283,53.09582148154507],[-126.45883533932076,53.09570513833586],[-126.45912812568749,53.0956216426669],[-126.45940618323372,53.09556005706017],[-126.45968226622374,53.09548895900597],[-126.45996213187458,53.095421762723696],[-126.46023349873518,53.09534787607955],[-126.46048314188327,53.09525390508023],[-126.4607044458835,53.09513427332257],[-126.4609068728287,53.0949990282453],[-126.46110086424024,53.09486157478732],[-126.461284504168,53.09471911482262],[-126.46145311176085,53.09457055517347],[-126.46160857585471,53.0944175647419],[-126.46175463753718,53.0942601289622],[-126.46188756203831,53.09409882717942],[-126.4620129424615,53.093931943427734],[-126.46213797393678,53.093733132086996],[-126.46225956260213,53.093561789957235],[-126.4623437349569,53.093390029352676],[-126.4621828201575,53.093300456751884],[-126.46204396096222,53.0932601071864],[-126.46156684661369,53.0931616853623],[-126.4612837446644,53.093101729782575],[-126.46099509299032,53.0930473885424],[-126.46070922816075,53.092991924231654],[-126.4604298389723,53.092929146487855],[-126.4601643343319,53.09285230370955],[-126.45992565287975,53.092748473716625],[-126.4597119546699,53.09262045154602],[-126.45950103443865,53.09248905678354],[-126.45927345769859,53.09237396865798],[-126.4590171167333,53.092279169183406],[-126.45874496183906,53.09219282955908],[-126.45846363773984,53.092123331881034],[-126.45815074165203,53.09207468009034],[-126.45789647596304,53.092085749763186],[-126.45760623162542,53.09214346205846],[-126.4573131641064,53.09219893466412],[-126.45701794169337,53.09222808839095],[-126.45672080019565,53.09225276692917],[-126.45642356795437,53.09226904605279],[-126.4561262088948,53.09227355553849],[-126.45582581673803,53.09225622239891],[-126.45553820192086,53.092210836549185],[-126.45525513880492,53.09215309837235],[-126.45497393493756,53.092094240857925],[-126.45469270176858,53.09203257714042],[-126.45441238808525,53.091968668286114],[-126.45413390668037,53.091902510793865],[-126.45385820918631,53.091833536306595],[-126.45358435306461,53.09176175742511],[-126.4533132749978,53.09168660585374],[-126.4530430957241,53.091608653531026],[-126.45277382112992,53.091528447228114],[-126.45250732482607,53.09144487723747],[-126.4522436066683,53.09135792565085],[-126.45198638072223,53.09126647574195],[-126.45173471913697,53.0911705131721],[-126.45149141418943,53.09106948052034],[-126.4512582617561,53.09095496299753],[-126.4510501294197,53.090817940180635],[-126.45088764752283,53.0906650562849],[-126.45078396763401,53.09050186366026],[-126.45072040085779,53.09032843373972],[-126.45068480601833,53.09014705382244],[-126.45066789076473,53.08996336170538],[-126.45066129360895,53.08978187115268],[-126.4506687460431,53.08960313265099],[-126.45069303088967,53.08942432096961],[-126.45072666701529,53.08924548256002],[-126.45076403739472,53.089066065161106],[-126.4507958025796,53.088887224866426],[-126.4511128770662,53.08880422066827],[-126.45134556229794,53.08870024907523],[-126.45150759765681,53.088548931564006],[-126.45163488468772,53.08838317157461],[-126.45174156838056,53.0882146935067],[-126.45183698212956,53.08804177654284],[-126.4519314734905,53.08786942772594],[-126.45203817257848,53.08770262549417],[-126.45216927911552,53.08754470246667],[-126.4524036636467,53.08742559136207],[-126.4526427806781,53.0873126287134],[-126.45274490930127,53.08715537175334],[-126.45278976800094,53.08697760995452],[-126.45280087944215,53.08679212519488],[-126.45279517732804,53.08660839003164],[-126.45274933728619,53.08643209618579],[-126.45266238727423,53.086257636025394],[-126.45263243976262,53.08608015178429],[-126.45263894069384,53.085901416392545],[-126.45265011832909,53.085722098349194],[-126.45266690621214,53.08554275879325],[-126.4526874341656,53.08536340488708],[-126.45270983204377,53.085184043793724],[-126.45273222370469,53.08500411798388],[-126.45275461527133,53.084824201114635],[-126.45277514250613,53.08464484711975],[-126.45279286591919,53.084464939129774],[-126.45280403659214,53.08428506519414],[-126.45280023470764,53.084104119183856],[-126.4527879922896,53.08392152927592],[-126.45277202486811,53.08373895362269],[-126.45276073119824,53.08355692475686],[-126.45276160315802,53.08337652547849],[-126.4527802775451,53.083198854657944],[-126.45282517373047,53.08302500945456],[-126.45290097387276,53.082854971890576],[-126.45299924013815,53.082688765294414],[-126.45311717778803,53.0825252798561],[-126.45325009232596,53.08236342201739],[-126.45339237369558,53.082203213256356],[-126.45353934231164,53.08204354206665],[-126.45368817075844,53.08188441928798],[-126.45383232475828,53.0817247585044],[-126.45396898592726,53.08156400584411],[-126.45410660050099,53.08140436981553],[-126.45425263926522,53.0812463864105],[-126.45440148029151,53.08108894778338],[-126.45454751677546,53.08093095502197],[-126.45468793054685,53.08077187219136],[-126.45481709976312,53.08061058255285],[-126.45493033940846,53.08044543691859],[-126.45502482237725,53.08027644622233],[-126.4551033760211,53.08010359065364],[-126.45516880389242,53.07992742416151],[-126.45522580028862,53.079749049153484],[-126.45527623222422,53.07956957892101],[-126.45532384542864,53.079389554791504],[-126.45537147328378,53.07920953953006],[-126.45542378581747,53.0790311824003],[-126.45548172536536,53.078854479763294],[-126.45554903764668,53.07867999085041],[-126.45562948007067,53.07850936842156],[-126.45572679815992,53.078343162721296],[-126.45585787398196,53.078186346223745],[-126.45604051705462,53.07804390565462],[-126.45625505039543,53.077909740712094],[-126.45647802504021,53.07777890417453],[-126.4566897435302,53.077644749288375],[-126.45686677210445,53.07750232011874],[-126.45698944079264,53.077346099496836],[-126.45707271433294,53.077179391119344],[-126.45713442626385,53.07700659900115],[-126.45717926781639,53.07682994597285],[-126.4572100574326,53.07664999482884],[-126.457231453024,53.07646727434409],[-126.45724630585507,53.07628401444021],[-126.45725835550077,53.076100209608846],[-126.45727134448504,53.0759175215973],[-126.45728809687452,53.075737059950676],[-126.45729925217998,53.075557740427044],[-126.45729730765663,53.07537735111873],[-126.45728880588038,53.0751964314191],[-126.45727844938791,53.075015509916305],[-126.45727182339604,53.074835138674146],[-126.45727644229471,53.074655844361814],[-126.4572969636572,53.07447817366804],[-126.45733711434659,53.074300982713616],[-126.45739130633345,53.07412485783603],[-126.45745765776323,53.073948685825236],[-126.45753522932888,53.07377414653406],[-126.45762123305767,53.07360070394759],[-126.4577166020633,53.07342890122545],[-126.45781855145454,53.07325986961729],[-126.457927066313,53.073093618128226],[-126.45805149436903,53.072930110492784],[-126.45819279857746,53.07276988971924],[-126.45834909762645,53.07261465721189],[-126.45851856989776,53.072466096220346],[-126.45870026423883,53.07232477510465],[-126.4588988799431,53.072192342826774],[-126.45911158116492,53.07206658729418],[-126.45933274382246,53.07194471565785],[-126.45955673510575,53.071824508826516],[-126.4597788286158,53.07170319742841],[-126.4599980996944,53.07157964666707],[-126.46021830569158,53.07145553608413],[-126.46033619042483,53.07129260708804],[-126.46040523682453,53.071108579205095],[-126.46047712799178,53.07092902209169],[-126.46060074641963,53.07077783994782],[-126.46084282720437,53.070689498197815],[-126.46115643940774,53.070646251673615],[-126.46145241445227,53.07061372226873],[-126.46175228985553,53.07059742832606],[-126.46205123162997,53.07058057255083],[-126.46234063055302,53.07054582567753],[-126.4626164786141,53.07046855289008],[-126.46282918119296,53.07034334621528],[-126.46295640605013,53.07018093360801],[-126.46305729906994,53.07000406678658],[-126.46318640985325,53.06984333170287],[-126.46338693670526,53.069717051225595],[-126.46364004452006,53.069612408914054],[-126.46392152304247,53.06953791658843],[-126.46421087654622,53.06949980381115],[-126.4645022215965,53.06947288730828],[-126.46479641808759,53.06945099655042],[-126.46509348117307,53.069434140420995],[-126.46539151697432,53.06942008539747],[-126.46569049819817,53.06940770213446],[-126.46599041877553,53.06939643488983],[-126.46629034794276,53.06938460212607],[-126.46659024976468,53.069371657189734],[-126.46688826608788,53.06935591325703],[-126.46718529678431,53.06933624630034],[-126.46748040230625,53.069311548526976],[-126.46777447271396,53.06927845497876],[-126.46806562857803,53.06923472318179],[-126.4683529337493,53.06918092159129],[-126.46863077363852,53.069116507787676],[-126.46890009658962,53.069042051758174],[-126.46916275668329,53.06895752826648],[-126.46942066668318,53.06886686488828],[-126.46967572938918,53.06877173032913],[-126.46992890301918,53.06867492648312],[-126.47018115444808,53.06857868151516],[-126.47043527155957,53.068483549050725],[-126.47068939622194,53.06838785127613],[-126.47094162309608,53.06829104899265],[-126.47119102729259,53.06819200749109],[-126.47143572720029,53.06808963174372],[-126.47167382584936,53.067982790943496],[-126.47188927957787,53.06785700087217],[-126.47205960633883,53.0677078516468],[-126.47218020675172,53.06754265843631],[-126.47227732890168,53.067366918853516],[-126.47237917458692,53.06719507749003],[-126.47251579974166,53.067041580385464],[-126.47273044138426,53.0669281172593],[-126.47301279068861,53.06685022911621],[-126.47327819427595,53.066762888561904],[-126.47342983780219,53.06661549730634],[-126.47355604003269,53.06644915961319],[-126.47372166844644,53.06629947090234],[-126.47389293723289,53.06615144451882],[-126.4740717043213,53.06600674026237],[-126.47425895818695,53.06586816878888],[-126.4744753418248,53.06574292579977],[-126.4747247228966,53.06564388565491],[-126.47502240657634,53.065602351219894],[-126.47526162511636,53.06551342620572],[-126.47541404633587,53.06535370377937],[-126.47554307737671,53.065191278590426],[-126.4756019754541,53.06510924595291],[-126.47538172209651,53.06488715605058],[-126.47520991209335,53.064734896694596],[-126.47509684987489,53.064571204860876],[-126.47505837615805,53.06438984087291],[-126.4750236261568,53.06420846187679],[-126.47491524634299,53.06404474203],[-126.4747658650804,53.06389183601547],[-126.47460251134434,53.06374234741602],[-126.47442982314445,53.06359513705587],[-126.47425155620776,53.063449069325856],[-126.47407327554527,53.06330300137451],[-126.47389873679828,53.063155797643866],[-126.47373257159371,53.06300576332197],[-126.47357945372676,53.062852306010974],[-126.47343469055718,53.06269434201378],[-126.47328991212726,53.062533572190354],[-126.47315069582866,53.06236997419325],[-126.47302174315345,53.06220410289888],[-126.47290771901272,53.062035921730875],[-126.4728142493244,53.061867102383296],[-126.47274600149152,53.06169650573125],[-126.472719781636,53.06152405557799],[-126.47274865388798,53.06134802339952],[-126.47281115225466,53.061169050862944],[-126.47288296790006,53.0609889294376],[-126.47293983942943,53.06080830307365],[-126.47296027593215,53.06062949884726],[-126.47296292436599,53.06044853383175],[-126.47295250465157,53.060267612174194],[-126.47292432844881,53.06008732633852],[-126.47287750012991,53.059910476640056],[-126.4728026938231,53.05973878561476],[-126.47269336088317,53.05957227046273],[-126.47256537911608,53.059408070808814],[-126.47243646257408,53.05924443050729],[-126.47231687309505,53.059079076494506],[-126.47218887932037,53.05891487644559],[-126.4720627642361,53.05875011297296],[-126.47195437868336,53.0585835932761],[-126.47187584679826,53.05841247220998],[-126.47184480945809,53.05822715069454],[-126.47189703935615,53.05804990456561],[-126.47202049235925,53.05789086626921],[-126.47216173115346,53.057733988723015],[-126.47231606113975,53.057579308569586],[-126.47247977415769,53.05742682266785],[-126.47264910269908,53.05727656398794],[-126.47282219509192,53.05712740150228],[-126.47299530258452,53.05698104439365],[-126.47317781183291,53.056838575537874],[-126.47336970528791,53.056701106489605],[-126.47356723765411,53.05656529075231],[-126.47376288507792,53.05642949119599],[-126.47395102707186,53.05628979522515],[-126.4741269566781,53.05614510128446],[-126.4742887990408,53.05599487015862],[-126.47444218792565,53.05584018183085],[-126.47459089875227,53.055684400561084],[-126.4747395872206,53.05552805444762],[-126.47489204586012,53.05537336922064],[-126.4750529431193,53.055222020266854],[-126.47522510823974,53.05507566345746],[-126.47540478486789,53.05493263761257],[-126.47559009166004,53.05479182978404],[-126.47577915351005,53.05465268277374],[-126.47597009552858,53.05451465732164],[-126.47616290494157,53.05437661504979],[-126.47635384447027,53.0542385889551],[-126.47654290135219,53.054099440677305],[-126.47664611131655,53.0538883713545],[-126.47673108236201,53.0537160370593],[-126.4768160376672,53.05354369378271],[-126.47689913229547,53.053370802175934],[-126.47696537429852,53.05319630231517],[-126.47699513356297,53.053017458858214],[-126.47704266509989,53.05283967302401],[-126.47707709431394,53.052661375366974],[-126.47710592588056,53.05248253557205],[-126.47715251455713,53.05230475344453],[-126.47723747167579,53.05213297442729],[-126.47745193933173,53.05201052917241],[-126.47747326057473,53.051830043324394],[-126.47744415654084,53.05165088188056],[-126.47744400246266,53.051471047574644],[-126.47745786166844,53.05129171234392],[-126.4774735979466,53.051111804771374],[-126.47748092433687,53.0509324959206],[-126.47746674830317,53.050752718249406],[-126.47742271533423,53.05057529332941],[-126.47737587251773,53.05039788870218],[-126.47735516454337,53.05021812841287],[-126.47739520230664,53.05004037243024],[-126.47750731185592,53.04987352091852],[-126.47765504879145,53.049717739060796],[-126.47782342034192,53.04956915222643],[-126.47800118377268,53.04942500909211],[-126.47817894599623,53.04928086567804],[-126.47835013683849,53.04913338711729],[-126.47850161763161,53.0489787004728],[-126.47861934450255,53.0488135102317],[-126.47867715261746,53.048637357858425],[-126.4786489788229,53.048458757326834],[-126.478568544951,53.04828540639422],[-126.47846760281877,53.048116055773015],[-126.47836853004631,53.047946706440975],[-126.47829275556805,53.04777277166575],[-126.47826925617082,53.047593587293136],[-126.47829619599688,53.04741476327619],[-126.47835026034029,53.04723806135538],[-126.47842865160442,53.04706463125688],[-126.47852576408604,53.04689447772787],[-126.4786388089245,53.046728185725215],[-126.47876870400663,53.04656630724787],[-126.4789323767587,53.04641606128549],[-126.47912327137782,53.04627802111194],[-126.47932449669256,53.04614555012254],[-126.47952197992765,53.046011408746025],[-126.47970159733538,53.045867810905904],[-126.47984836424557,53.045711465062624],[-126.47996889319506,53.045546826445374],[-126.48006412140714,53.045376123355666],[-126.48013689084826,53.04520215002442],[-126.4801741108334,53.04502383924508],[-126.48016460353128,53.044844033287696],[-126.48014576115325,53.0446648300146],[-126.48015773213832,53.04448494561618],[-126.48022488840142,53.04431043023379],[-126.48029672240037,53.04413590472386],[-126.48033580905695,53.04395758618112],[-126.48036273777001,53.04377875235142],[-126.48038407012875,53.0435993855038],[-126.48040632896115,53.0434200148621],[-126.48043233048762,53.04324119369566],[-126.48046767927477,53.04306289022466],[-126.4805161116666,53.04288508923009],[-126.48059728719822,53.04271220161797],[-126.48070282094777,53.04254426146914],[-126.4808130294966,53.04237741370053],[-126.48090637900565,53.042206717227],[-126.48095668317326,53.04202947305812],[-126.4809639869907,53.041849607302694],[-126.48095448345131,53.041670365783816],[-126.4809561826083,53.041490513864716],[-126.48095320397749,53.0413106899518],[-126.48095024021558,53.04113085699549],[-126.48096128649136,53.04095153166493],[-126.48100316215877,53.040773201182645],[-126.48110587341732,53.040604707226926],[-126.48124137877312,53.04044448770501],[-126.48136843730506,53.04028149671985],[-126.48143464041716,53.040106984062405],[-126.48147184418396,53.03992811660183],[-126.48157736745284,53.03976016643531],[-126.4817353657081,53.03960825376114],[-126.48183620316458,53.03943976668041],[-126.48191550730037,53.03926632963654],[-126.48196767183497,53.03908907710575],[-126.48202545281946,53.038912922097275],[-126.48207574841348,53.03873567711154],[-126.482137264548,53.038559506751795],[-126.4821361554631,53.03838023067482],[-126.48204454374167,53.038209167784856],[-126.48192778558946,53.038043810014734],[-126.48185200148865,53.03786875607037],[-126.48194162003225,53.03769975874343],[-126.48206397329643,53.0375339801754],[-126.48214701941775,53.03736276848955],[-126.48220199008814,53.037185504181075],[-126.4822766047051,53.0370115210693],[-126.48232316107119,53.036834291048265],[-126.48237720160087,53.03665815090414],[-126.48256247550435,53.03652348864893],[-126.48279938959436,53.03641327492234],[-126.48297989676009,53.036269667440486],[-126.48314538066104,53.036120527606734],[-126.48328929403324,53.03596306758499],[-126.48339011023941,53.035794014110024],[-126.48345535890893,53.035618392167656],[-126.48354401422264,53.03544714732661],[-126.48370762504105,53.03529801428619],[-126.48390504398259,53.03516386473022],[-126.48402458575096,53.0349992158576],[-126.48407579483126,53.03482196581518],[-126.48411579845066,53.03464364119202],[-126.48418104235137,53.03446801873046],[-126.48432310398898,53.03431280586833],[-126.48455810131408,53.034199790517],[-126.48478656096442,53.03408623680647],[-126.48493983257376,53.03393154183745],[-126.48504812794711,53.03376414120727],[-126.48513956722654,53.03359288349721],[-126.48522633735682,53.03342108912285],[-126.48531964943824,53.03325038826809],[-126.48542325180296,53.03308188600639],[-126.48550066162538,53.0329084535937],[-126.4855322385096,53.032729598191665],[-126.48554886657575,53.03255024849878],[-126.4855580170799,53.03237037378007],[-126.48556436475154,53.03219106634662],[-126.48557164725915,53.03201119031089],[-126.48558640713448,53.03183184822285],[-126.48561237329646,53.031652459997794],[-126.48565610939087,53.03147468385973],[-126.48573911626336,53.031302339620986],[-126.48586988488618,53.03114101271065],[-126.4860212677514,53.030985759051106],[-126.48616984896738,53.030829951984956],[-126.48630623676911,53.0306702776644],[-126.48643792766305,53.03050894624709],[-126.48657525473553,53.03034926770529],[-126.48672476452909,53.03019402077261],[-126.48689772069679,53.030048196739735],[-126.48710073383562,53.02991625922071],[-126.48732819025632,53.02979990753059],[-126.48756412811781,53.0296896876322],[-126.48780573193064,53.02958503741392],[-126.48805298907786,53.02948485431223],[-126.48830496016163,53.02938800374154],[-126.48855881506097,53.02929395058107],[-126.48881456429983,53.02920100952772],[-126.48907031038121,53.029109188434106],[-126.48932606389452,53.0290168109726],[-126.48957991431388,53.02892275559491],[-126.48983188509388,53.02882646644234],[-126.49008006579078,53.02872683095006],[-126.49032353204741,53.02862273247139],[-126.49056419024413,53.02851752464236],[-126.49080576704813,53.028411747752244],[-126.49104734917798,53.02830653507164],[-126.49128892368223,53.02820076614303],[-126.49152955562039,53.02809499167071],[-126.49177020140432,53.02798922560246],[-126.49201082450728,53.0278828943885],[-126.49225051354875,53.02777600183101],[-126.49248926863028,53.0276685568991],[-126.49272800111596,53.02756055579274],[-126.49296579952856,53.02745199335584],[-126.49320172262348,53.02734287352825],[-126.49343763159284,53.027232641727686],[-126.49367165867535,53.02712128784048],[-126.49390380407573,53.02700882980476],[-126.4941350088146,53.02689524576249],[-126.49436526461834,53.026781109455996],[-126.49459268434752,53.02666474354995],[-126.4948191700714,53.02654782533498],[-126.49502779661735,53.02642033224576],[-126.49515944110065,53.026258981731345],[-126.49523771842144,53.02608497364213],[-126.49529355919722,53.02590881864089],[-126.49531481952738,53.02572944722751],[-126.49531738360632,53.02554959850588],[-126.49532462367173,53.02536972117052],[-126.49536457774734,53.025191956461676],[-126.49547186856007,53.025024549363025],[-126.49566919600325,53.02488981461164],[-126.49591356589542,53.024786820933045],[-126.49617589204978,53.02470167945423],[-126.49644484578184,53.02462379732247],[-126.49671853812387,53.02455260874311],[-126.49700175029113,53.02449707558875],[-126.4972897145107,53.02444935635869],[-126.49757579284648,53.02439884757046],[-126.497855189246,53.024336605357185],[-126.49811844147936,53.02425201137625],[-126.49835998183568,53.02414678346798],[-126.49859493343749,53.0240365450623],[-126.49884305895797,53.023936326148515],[-126.49911771045333,53.02386737787842],[-126.49941342740853,53.02384427195764],[-126.49971137574235,53.02385085398098],[-126.50000759357422,53.02387033299449],[-126.50030473953977,53.02388867785006],[-126.50060264870689,53.023891896244265],[-126.50089639858882,53.023860395566906],[-126.50116345773155,53.0237813901092],[-126.50139933281764,53.02367169790885],[-126.50161261291963,53.023546414072584],[-126.50181741494107,53.0234155633181],[-126.50202504402772,53.02328637645486],[-126.50224679060494,53.02316610220538],[-126.50249775069105,53.023069224977576],[-126.5027799910033,53.02301256145378],[-126.50307472072721,53.02298496845302],[-126.50337249098372,53.022976975258366],[-126.50367041890824,53.022983547350876],[-126.50396663415177,53.023001895911015],[-126.50426200151112,53.02302808200283],[-126.50455463398977,53.02306044637455],[-126.50484732851649,53.023096736045595],[-126.50514000849788,53.02313301608999],[-126.50540706761878,53.02321199375499],[-126.50563161680718,53.02332924160119],[-126.50585248757098,53.02344987530179],[-126.50608354248187,53.02356373283954],[-126.50631459200685,53.02367703416956],[-126.50654472169876,53.023792024250355],[-126.50677391967326,53.02390645314181],[-126.50700497290403,53.02401975309705],[-126.50722863130318,53.02413924274532],[-126.50746440315682,53.02425588305748],[-126.5077500158532,53.02424625485456],[-126.50799624019423,53.02414490428251],[-126.50818036497397,53.024002926323725],[-126.508408706723,53.023889335175106],[-126.5086370471434,53.02377573461346],[-126.50885500100838,53.02365322322725],[-126.509072961787,53.023530146654025],[-126.50929091302706,53.023407625481234],[-126.50953418751205,53.023293967626124],[-126.50972495275508,53.023162043120735],[-126.50982662162775,53.02299688782938],[-126.50989639544004,53.02282066511236],[-126.50994650854365,53.02263948050629],[-126.5099845247523,53.022461153925505],[-126.50999262847876,53.02228128032788],[-126.50999232992747,53.02210087829146],[-126.51001445913779,53.02192205557661],[-126.51007021970686,53.021744772695904],[-126.51015311677098,53.02157185449849],[-126.51025005066698,53.021402237067086],[-126.5103544663406,53.02123370768832],[-126.51046449644565,53.02106627442192],[-126.51057640640869,53.02089995341534],[-126.51069579796793,53.02073472041411],[-126.51083299410234,53.02057557751267],[-126.5109898767376,53.02042250753414],[-126.511158956637,53.020273866555286],[-126.5113383582536,53.02013021843136],[-126.51152145941525,53.019983757160034],[-126.51172335290057,53.01984729874553],[-126.51197157162713,53.01975938600955],[-126.51224716838526,53.01969599632888],[-126.51253599706745,53.01964600370969],[-126.51283240197522,53.019604932636625],[-126.51312796820737,53.01957115232311],[-126.51342173308771,53.019544102224444],[-126.5137203763047,53.019533837944586],[-126.51402008929942,53.01953421766681],[-126.51431892895292,53.01954019407002],[-126.51462251750002,53.019553436861216],[-126.51490139545132,53.01960712544312],[-126.51515366239006,53.019698471471415],[-126.51539490929079,53.01980610816007],[-126.51563249907315,53.01991879819535],[-126.51587003446642,53.020028135393204],[-126.51610201832875,53.0201402932151],[-126.51633493631644,53.02025300226807],[-126.51657430850096,53.020359524222364],[-126.51682387060644,53.02045872215432],[-126.5170881467079,53.02053936201214],[-126.51738830845024,53.02049994831654],[-126.5175124912105,53.020346448218845],[-126.51768250143662,53.020200034741364],[-126.5178797142999,53.02006470678601],[-126.51797474669269,53.01989509105544],[-126.51806321647175,53.0197227072296],[-126.5182266523033,53.01957408072578],[-126.51842385489878,53.01943706657322],[-126.51861165753324,53.01929617605921],[-126.51880041366437,53.019156401556344],[-126.51902213225112,53.019039456870416],[-126.51928151357488,53.0189497942495],[-126.51954090874104,53.01886013098778],[-126.51977010475979,53.018745384006],[-126.52001058610321,53.01863619838859],[-126.52023897022715,53.01853098296059],[-126.52025072279723,53.01834772143029],[-126.52034668983619,53.01817866417986],[-126.52054014364838,53.018042783375925],[-126.52077498326501,53.017930815237904],[-126.52099570776686,53.01781050952955],[-126.52118163438558,53.01767017878445],[-126.52131784150603,53.017509907035034],[-126.52139600930785,53.017337001170645],[-126.52143115767373,53.01715811804709],[-126.52169438161432,53.01707739714112],[-126.5219813280554,53.01702851003909],[-126.52226635848648,53.016975704407294],[-126.52255233489913,53.01692457019304],[-126.52283831872028,53.016872879468885],[-126.52312144552818,53.016817283369704],[-126.52340068548826,53.01674936911826],[-126.52360273955014,53.01663026175166],[-126.52368177409922,53.01645342407502],[-126.52376835335338,53.01628159965998],[-126.52389705730118,53.01611967278738],[-126.524053869554,53.01596602928839],[-126.52417789641142,53.01580412284893],[-126.52426072446173,53.01563119413786],[-126.52438286173663,53.01546761057373],[-126.52454624635766,53.01531673395228],[-126.52473966684187,53.01518029028347],[-126.52496789606835,53.01506498132493],[-126.52521686189058,53.014965831661996],[-126.52546678126107,53.014867788774815],[-126.5256452192857,53.014728048732614],[-126.52574018100745,53.014556185289514],[-126.52582392628224,53.01438325122639],[-126.5259273369131,53.01421471150049],[-126.52608694851239,53.014062728885875],[-126.52632937899301,53.013963605926726],[-126.52662200402149,53.013923081444986],[-126.52691760898792,53.0138976655273],[-126.5272311587247,53.013888420753105],[-126.52740389455514,53.01381593492075],[-126.527305418152,53.0136281269726],[-126.527236965367,53.01345363102956],[-126.52716852118382,53.01327857921226],[-126.52709727662388,53.013104095634674],[-126.52701763801058,53.01293077003039],[-126.52697249640872,53.01275336391574],[-126.52694881108329,53.01257418560447],[-126.52693630541528,53.012394401544974],[-126.52693407501056,53.01221456259709],[-126.52693465250093,53.01203472005003],[-126.52694268937267,53.01185539993962],[-126.52694698651264,53.011674411245394],[-126.5270841272121,53.0115180452791],[-126.52729538981464,53.01139160200534],[-126.5275424409252,53.011290770386466],[-126.52779233342403,53.01119273132328],[-126.52803844131998,53.0110919028639],[-126.52828171349275,53.01098772499997],[-126.52853160941665,53.01089024010355],[-126.52879093486756,53.010801676608985],[-126.52906354406386,53.01072929611282],[-126.52934661475211,53.01067312015692],[-126.52963253329533,53.010621412837956],[-126.52991850106883,53.01057251040095],[-126.53020442517409,53.010521357443096],[-126.53048175974125,53.01045456399815],[-126.53075721253617,53.010386648870785],[-126.53104702304687,53.01034669060773],[-126.53131297217139,53.0102653706267],[-126.53153455293702,53.01014504048579],[-126.53171947126303,53.010003576207204],[-126.53188657040998,53.00985491303115],[-126.5320423967629,53.009701818339444],[-126.53219073487912,53.00954596037367],[-126.53233905686086,53.009390093310785],[-126.53248926650627,53.00923478226591],[-126.53261696807434,53.009072293704236],[-126.53274749015856,53.008910903808356],[-126.53290050328235,53.00875670004663],[-126.53305633688841,53.00860360384852],[-126.53321402823079,53.008451063773364],[-126.53337548781468,53.008300182738516],[-126.53351162588271,53.00814045177734],[-126.53359251229881,53.00796695953027],[-126.53363041614337,53.00778862379829],[-126.53366551219912,53.00761030073945],[-126.53373892335026,53.007436286373206],[-126.5338834999477,53.00727932249925],[-126.53406933093821,53.00713841482066],[-126.53425142825742,53.00699640321549],[-126.5344044290297,53.00684219732815],[-126.53454992688263,53.00668521942292],[-126.53471323380869,53.00653489272134],[-126.53490188728244,53.006395647158406],[-126.53509617467864,53.00625918152343],[-126.53529517014567,53.00612549999144],[-126.5354960300327,53.00599292120851],[-126.53569878442941,53.005861462957185],[-126.53590151551722,53.00572943969947],[-126.53610707382957,53.005599079539955],[-126.53631734732119,53.00547206812196],[-126.53652666454491,53.005343931168454],[-126.53673127844,53.005213583134854],[-126.53692650232395,53.00507766585932],[-126.53709730335363,53.00493066312254],[-126.5371978318495,53.00476156064685],[-126.53720302467492,53.00458169603617],[-126.53717370118535,53.00440254442291],[-126.53713504457411,53.0042245558286],[-126.53711038043163,53.00404538294135],[-126.53709972274451,53.0038661462377],[-126.5371179812364,53.003686213062636],[-126.53716333165328,53.00350896227411],[-126.53723018201508,53.003333854567266],[-126.53726059354425,53.00315499544007],[-126.53730876412968,53.00297885221907],[-126.53718256173603,53.00281526455041],[-126.53707963474945,53.002646532808676],[-126.53699533053756,53.00247435455851],[-126.53693710761434,53.00229814009153],[-126.53694603398385,53.00211824926867],[-126.53697363874399,53.00193940286871],[-126.53703768813006,53.00176374310621],[-126.5371204215566,53.001590804001324],[-126.53720878973282,53.001419524430794],[-126.53729059606397,53.00124658938854],[-126.53736958755114,53.0010731023472],[-126.53742990136101,53.0008974682561],[-126.53743041923876,53.000717615559786],[-126.53742162036663,53.000537814271965],[-126.53740908096565,53.00035858579791],[-126.53739560882396,53.00017879680526],[-126.53737935190063,52.999999585233525],[-126.53737630263677,52.999906038900114],[-126.5373507063836,52.999727425644835],[-126.53730460295556,52.9995494705652],[-126.53723799107456,52.99937441471615],[-126.53716487634601,52.999201064760555],[-126.5371719419472,52.999021746809994],[-126.53719206433573,52.998841804604126],[-126.5372065807024,52.99866133213045],[-126.53719685676627,52.99848265536368],[-126.53716008663231,52.99830465758194],[-126.53710931947364,52.99812727931918],[-126.53705668660764,52.99794991848025],[-126.53701430388199,52.997771946166246],[-126.53698498588605,52.99759279378252],[-126.53696125187007,52.997413615943465],[-126.53693567379175,52.99723500226569],[-126.53689141192676,52.997055917857566],[-126.53682663719394,52.99687692681359],[-126.53681695771819,52.99670161124549],[-126.53688654101491,52.99652256417675],[-126.53701884632335,52.99635892787293],[-126.53722540271401,52.99623696878808],[-126.5375015011499,52.9961550316841],[-126.53779306015542,52.99611391856301],[-126.5380970533713,52.99609740877258],[-126.53834140317004,52.99601392928787],[-126.5385308819295,52.99587019982631],[-126.53873823644204,52.995738705320605],[-126.53897664360561,52.99562836768004],[-126.53923300557389,52.99553531129424],[-126.53952450893131,52.9954902767005],[-126.5398229625893,52.99547882572222],[-126.54004360812112,52.99543971694353],[-126.54032144140055,52.995274280570634],[-126.54049949972494,52.995113792088475],[-126.54071533427988,52.99499009889975],[-126.54095474393179,52.9948853552661],[-126.5411311887847,52.99474503392243],[-126.54128506035065,52.99459193421431],[-126.54151219428465,52.99447547561794],[-126.54172049410612,52.99434677717443],[-126.54186687706978,52.99419091419578],[-126.5420001171804,52.994030064525575],[-126.54213149794438,52.99386865848261],[-126.54223759282914,52.99370065429632],[-126.54231281091397,52.99352662457593],[-126.54239177539415,52.99335257755085],[-126.5425166212002,52.99319176581462],[-126.54269296741242,52.99304583968659],[-126.542874975549,52.9929038135796],[-126.54309832051389,52.99278512811447],[-126.5433395563462,52.99267868571021],[-126.5435657339611,52.99256222735946],[-126.54378906868689,52.99244186426194],[-126.54402089915864,52.99232986110094],[-126.54427631119371,52.99223847413758],[-126.5445440021702,52.99215824427429],[-126.54479189123764,52.99206128821529],[-126.54504353942211,52.99196768483426],[-126.54529420336526,52.99186959432665],[-126.5455269815791,52.99175870429124],[-126.54570331876178,52.99161333825554],[-126.54591444144035,52.99148798061918],[-126.5461585268393,52.99138600127115],[-126.5463602020912,52.99125172223732],[-126.5465845051562,52.99113583136384],[-126.5468408593531,52.991045554894946],[-126.54710758312466,52.99096420304038],[-126.5473752534614,52.99088340196774],[-126.54765044423536,52.990807047513734],[-126.54791435181623,52.99072402159429],[-126.54810673929356,52.990593700065105],[-126.54824927455552,52.99043167906557],[-126.5483487841008,52.99026257896711],[-126.54844736008356,52.990092918353305],[-126.54855998029237,52.989926553914906],[-126.54866603981712,52.98975853458603],[-126.5487533891874,52.989586684817965],[-126.54884073785145,52.989414834967484],[-126.5489346306157,52.98924463985653],[-126.54904442595688,52.989077167461986],[-126.54914674257869,52.98890860923964],[-126.54922847627091,52.988735664631136],[-126.54929432825243,52.9885605528617],[-126.54939663534188,52.988391429650086],[-126.54948491887669,52.9882206953639],[-126.54954141100062,52.988043385934056],[-126.5495848271327,52.987866137420895],[-126.54960583936088,52.98768675224087],[-126.54961844073814,52.98750685046337],[-126.54962263843997,52.98732697888431],[-126.54961658914829,52.987147719818836],[-126.54959655417228,52.9869685259431],[-126.5495802287586,52.986788758959506],[-126.54957790391015,52.98660891771578],[-126.54959145260166,52.98642956719854],[-126.54959100075395,52.98625028193866],[-126.54957467563956,52.986070514877184],[-126.54957515688542,52.98589066047331],[-126.54952267544186,52.985727870134994],[-126.54940106209246,52.98555754921213],[-126.5492692968815,52.985396248795354],[-126.54914033136458,52.98523437042173],[-126.54900020888385,52.985075340746306],[-126.54888892611741,52.98490946228239],[-126.54882694651435,52.98473326025814],[-126.54875100376958,52.984559929042526],[-126.54861275073083,52.98440089912051],[-126.54848472373018,52.98423845083487],[-126.54836226534607,52.98407486490898],[-126.54824167389107,52.9839101406486],[-126.54813505371783,52.98374423969794],[-126.54801637253713,52.983583988489954],[-126.54781224312866,52.9834515922264],[-126.54758679743871,52.98333050011662],[-126.54734020140886,52.98323360205299],[-126.54705583055379,52.983172727372875],[-126.5468508379122,52.98304593618073],[-126.54668658676185,52.98289542415841],[-126.54652138990262,52.98274323994427],[-126.54639620997159,52.98258413773219],[-126.54632961603322,52.982411326214006],[-126.54631889611053,52.98222984707348],[-126.54632124170519,52.982049983692086],[-126.5463366682177,52.98187062441317],[-126.54632782780043,52.98169137760041],[-126.54621469153994,52.98152494020048],[-126.5460532393275,52.981374414224796],[-126.54582415780988,52.98125950301401],[-126.54560155663323,52.98114007019647],[-126.54542247952025,52.980996348222476],[-126.54518972098411,52.98088537022605],[-126.54490071303691,52.980897912248594],[-126.54462096786726,52.98090537277048],[-126.54431965491817,52.98083112319255],[-126.54410544032496,52.98071109302323],[-126.54402394191088,52.98053890466498],[-126.54403563951287,52.980359006987136],[-126.54403239827349,52.98017916928303],[-126.54402450100021,52.97999936201639],[-126.54411558708829,52.979828053220835],[-126.54432855006226,52.97970492989691],[-126.5445744012453,52.97960014776776],[-126.54484860532546,52.979525479927325],[-126.54503434393374,52.97938847875076],[-126.54517780732291,52.979228697068805],[-126.54530158186651,52.97906171823265],[-126.5454638913168,52.978916980874445],[-126.54572578481907,52.97882780075398],[-126.54596128114912,52.978716896074694],[-126.54621662942431,52.97862606881928],[-126.54648707201413,52.97854973817013],[-126.5467718140677,52.97849687212146],[-126.54706820188314,52.97847925316022],[-126.54736672877246,52.97848290502268],[-126.54766126528828,52.97846641371764],[-126.54793266602279,52.97839175161922],[-126.54822537964321,52.97837862902836],[-126.54852200446504,52.97837948991403],[-126.54882053806755,52.97838370281809],[-126.5491254054541,52.978372197736014],[-126.54943319358928,52.97837076321008],[-126.5497827806378,52.97842795736012],[-126.54992161787878,52.97856177576023],[-126.55006083328288,52.978723606005445],[-126.55031844914122,52.97880980633473],[-126.55060453031227,52.9788605802368],[-126.55089604858435,52.97889899300358],[-126.55119114574796,52.97892562700713],[-126.55148251246595,52.97895227772946],[-126.55175673999301,52.97902327423039],[-126.55202269019897,52.97910382906837],[-126.5522886559661,52.97918550378529],[-126.55255551154423,52.97926436787087],[-126.55282422666687,52.97934154628609],[-126.55309570429523,52.979416470022926],[-126.55336439920346,52.97949309151013],[-126.55363036262959,52.97957419845698],[-126.55389539457346,52.97965475338893],[-126.55417966407043,52.979708888801376],[-126.55446029831867,52.97977031973175],[-126.55474995361512,52.979808175961665],[-126.55504756493463,52.97981293327332],[-126.55533793445915,52.979833420637355],[-126.55564215575325,52.97984374805803],[-126.55591630780398,52.979909132502435],[-126.55618228608668,52.979990798393125],[-126.55644920558075,52.98007245924054],[-126.55684088411961,52.980137277625936],[-126.55705026396457,52.98009875419784],[-126.55707917945304,52.97995686331642],[-126.55740562612283,52.97988304875064],[-126.55769418988265,52.979837417360855],[-126.55797514433247,52.97978062473576],[-126.55827152162107,52.97976184816778],[-126.55856120238987,52.97980138023571],[-126.55880507207661,52.97990387073236],[-126.55904801760077,52.980007494623294],[-126.55930480788201,52.98009928203919],[-126.55957810824194,52.98016970003137],[-126.55985417822042,52.98023729837399],[-126.56012932376083,52.98030602998065],[-126.56038609596911,52.98039612982053],[-126.56064011536228,52.98049016860817],[-126.56088215821177,52.98059491356437],[-126.5611048069215,52.98071375276491],[-126.56127372735837,52.980861981752724],[-126.56146769266907,52.980998885671895],[-126.56172903948695,52.98108111693168],[-126.56202147881484,52.98111726572072],[-126.5623159981333,52.98109848789298],[-126.56261264968093,52.98109987803496],[-126.56284716297606,52.98112789266359],[-126.56303383910567,52.981136521233594],[-126.5631448979668,52.98121106756552],[-126.56328758422437,52.9813498988101],[-126.56353910708725,52.98146523375531],[-126.56379404285917,52.98155645550773],[-126.56407012866259,52.98162405288263],[-126.56431589510335,52.98172708765795],[-126.56459099786257,52.98179131790468],[-126.56488078764986,52.98183755726963],[-126.5652917557452,52.98187704727487],[-126.56560458162329,52.98197191386125],[-126.56582402239415,52.98184927631983],[-126.56606897475349,52.98175061216204],[-126.56630859803568,52.98167214301224],[-126.56654562334087,52.981538778839145],[-126.56681892837109,52.98146799058191],[-126.56711430608091,52.981443038090134],[-126.56741069845498,52.981424803280554],[-126.56770711307551,52.98140825292662],[-126.56800052702859,52.98137714015107],[-126.56828623142256,52.98132645864267],[-126.56857105485362,52.981280262894046],[-126.56887040116733,52.98127433622355],[-126.5691762691299,52.98126725674594],[-126.5694455697614,52.981315824958145],[-126.56964798073757,52.98145379526016],[-126.56990479506355,52.98154499477891],[-126.570182696025,52.98160920745],[-126.5704715427416,52.98165375234992],[-126.57073478421819,52.98173763985058],[-126.57097869435057,52.98184010503765],[-126.57122260577894,52.98194257867751],[-126.5714425222604,52.98206420856513],[-126.57166658544398,52.982216637577665],[-126.57190133693324,52.98226144134913],[-126.57214751203036,52.98218573438444],[-126.57239688161711,52.98206910676287],[-126.57265091369602,52.981953011739364],[-126.57291753102902,52.981871601053655],[-126.57317191552767,52.98178184062332],[-126.57338194525383,52.98165363189211],[-126.5735788096066,52.98151877249243],[-126.57379072505819,52.98139223913397],[-126.57399792264648,52.98126236669807],[-126.57418914122407,52.98112416310263],[-126.57431850967107,52.980963858496075],[-126.57445979840789,52.98078891947503],[-126.57458284016633,52.98064433311549],[-126.57474309950632,52.98049283283906],[-126.57489211195931,52.98033746973256],[-126.57498026124192,52.980165595062225],[-126.5751208922607,52.98001083727489],[-126.57528770684304,52.97986211005679],[-126.57544233408812,52.97970839511629],[-126.57559883328892,52.97955523556986],[-126.57576847282678,52.97940817912992],[-126.57591841790182,52.97925281003189],[-126.57603558067983,52.97908807176511],[-126.57612654349501,52.97891730287605],[-126.57619411243581,52.978741610260144],[-126.57628320848747,52.978570850334805],[-126.57641720960189,52.978409955690154],[-126.57656620098197,52.97825402555097],[-126.57668709688633,52.97808983300811],[-126.5767780549497,52.9779190635141],[-126.57687184816977,52.97775052116129],[-126.57693193560732,52.97757374404173],[-126.57697801713502,52.9773953501273],[-126.577136413242,52.97724554063786],[-126.57735581895247,52.97712344593007],[-126.57761294852287,52.977033097265824],[-126.57788239184997,52.97695614328403],[-126.5781661513008,52.97690264115421],[-126.57845274638926,52.976852495049854],[-126.57871841825565,52.97677275177476],[-126.57888144644703,52.97662179653912],[-126.57912263832371,52.97652536423286],[-126.57939109702234,52.976444485157984],[-126.57961801471257,52.976327951977595],[-126.57983458020212,52.97620418118197],[-126.58002859312813,52.97606820381769],[-126.58022541776124,52.97593276806919],[-126.58042973315277,52.975800656751254],[-126.58056707425068,52.97574955514539],[-126.58095465053225,52.975718510603194],[-126.58123185256241,52.9755955587713],[-126.58136115499944,52.97543468125491],[-126.58153449625426,52.97528815350789],[-126.58175764036588,52.97516827301659],[-126.58194701788327,52.97503567691275],[-126.58206880859807,52.974870353408264],[-126.58221214825899,52.974712767198646],[-126.58235361391591,52.97455462529446],[-126.58246147432652,52.97439441715708],[-126.58256168883175,52.97422079103617],[-126.58256575362088,52.974041481595826],[-126.58254930872786,52.97386171773242],[-126.58254967389281,52.97368466766093],[-126.58257297730691,52.973479490198606],[-126.58253920512354,52.97332893750525],[-126.58261054530898,52.97315770404009],[-126.582629530903,52.97297832070857],[-126.58263451996262,52.97279788600066],[-126.58269180145385,52.97262223073528],[-126.5827817909984,52.972450904862455],[-126.58292043427193,52.97229222017648],[-126.58297677345138,52.9721154488117],[-126.58299389194215,52.97193607453657],[-126.58301941837489,52.97175722340029],[-126.58311500762309,52.971586425259424],[-126.58324433684702,52.97142890674216],[-126.58338485504758,52.971270212106674],[-126.58353099082319,52.971114286382864],[-126.58375881646822,52.970998304925494],[-126.58395938200667,52.970866205502325],[-126.58415428233094,52.970730207361655],[-126.58437835099323,52.97061255796298],[-126.58460054574688,52.97049436162263],[-126.58480015091543,52.97036114490717],[-126.58499224852572,52.97022460342624],[-126.5851580573883,52.97007530123371],[-126.58534920444565,52.96993708749569],[-126.58554692422815,52.96980275825041],[-126.58567058997917,52.96964133852574],[-126.58578204737726,52.969473264939],[-126.58585615026657,52.9693014505167],[-126.58588170926373,52.96912595096951],[-126.58616548374597,52.96907804071875],[-126.58641307444172,52.96897707867691],[-126.58670954935111,52.968971676301244],[-126.58702237882895,52.96900205866233],[-126.58712463827386,52.9690469274422],[-126.58749922139681,52.96909212391557],[-126.5877986574261,52.96909903919022],[-126.58809456433272,52.96911940910477],[-126.58839220537543,52.9691313698808],[-126.58868974524948,52.96913493067413],[-126.58882920678757,52.96910453440973],[-126.58894042216784,52.96905467380425],[-126.58906826676831,52.968993524326926],[-126.58918718207518,52.96896099819108],[-126.58947542756128,52.968967956195534],[-126.58973957576792,52.969052361907465],[-126.59002893289345,52.969071639187845],[-126.5903280419613,52.969053897290934],[-126.59062005715653,52.969063639501236],[-126.59089336171266,52.96913566158192],[-126.59116575786726,52.96920881711521],[-126.5914408357659,52.96927410565461],[-126.5917392005272,52.969270366471804],[-126.59202013326187,52.96922021524261],[-126.59227243531544,52.96912313464769],[-126.59255627345661,52.96908136726415],[-126.59285549086974,52.96907146234371],[-126.59313265967072,52.96901907729051],[-126.59341833784612,52.96897562219452],[-126.5937136444553,52.96895284382504],[-126.59396031489433,52.96885354682336],[-126.59421453803867,52.96876094354949],[-126.59448864767208,52.96869064168801],[-126.59474003173099,52.96859468989425],[-126.59496310425614,52.96847590447748],[-126.59518618255207,52.96835655383031],[-126.5954026700504,52.96823331855982],[-126.59563140427315,52.96811955024331],[-126.5958971306628,52.968049852189516],[-126.5960625170242,52.96820589460831],[-126.59609943690135,52.968378830500754],[-126.59616153346518,52.96855108317958],[-126.59632592788908,52.968703212723916],[-126.59659274355774,52.96877693980643],[-126.59688967179892,52.9688040058591],[-126.59718496043749,52.96878121886285],[-126.59746175248947,52.96883528803242],[-126.59774504843148,52.96888707346604],[-126.5980391891601,52.968915280297665],[-126.59832161739362,52.968972115772935],[-126.59862009764645,52.968976758313154],[-126.59889976863651,52.96903584754303],[-126.59917764740129,52.96910111280922],[-126.59945373218142,52.96917030404064],[-126.59972706034247,52.96924287034991],[-126.59999760816173,52.9693171265486],[-126.60002107804078,52.96932765687167],[-126.6002313784366,52.969427436496346],[-126.60047713817738,52.96952871140248],[-126.60071090378868,52.96963957622056],[-126.6009483760083,52.96974762474172],[-126.6011867743468,52.969855659093675],[-126.60137339756477,52.96999534197382],[-126.6015442727715,52.970142939932714],[-126.60174849671418,52.97027356784118],[-126.60197119848931,52.970392886393185],[-126.60224632449366,52.97045983486473],[-126.60254416055702,52.97048352935279],[-126.60283473919675,52.97045627009602],[-126.60311452001571,52.97039152202606],[-126.60340576737903,52.970345208348434],[-126.60369601695166,52.97036109483013],[-126.60392144220017,52.97047423714834],[-126.60412670348184,52.97061213481911],[-126.60432074403242,52.970747848549514],[-126.60450924637317,52.97088750785871],[-126.60469959116695,52.97102548104279],[-126.60490384497552,52.97115722389462],[-126.60513034621299,52.97128044343025],[-126.60535592369065,52.97140366727391],[-126.60555643512525,52.97153429868285],[-126.6057021679944,52.97168258455243],[-126.60576990352834,52.97185480306183],[-126.60579956541322,52.97203898765872],[-126.60584504035808,52.972219720274175],[-126.60594628541385,52.9723872840894],[-126.60608382071293,52.972548502539496],[-126.6062445437596,52.97270119282268],[-126.60642193421958,52.97284538840308],[-126.60661320310528,52.972982233092424],[-126.60681561503003,52.973114537835094],[-126.60702450884257,52.973244011911945],[-126.60723430497916,52.97337179563977],[-126.60745336305482,52.973493928434934],[-126.60767980406925,52.973611540499036],[-126.60789977376501,52.97373254719656],[-126.60808920114498,52.97386939896219],[-126.60823786936204,52.97402663092222],[-126.60844486665728,52.97415330635806],[-126.60867502715121,52.97426865616699],[-126.6088922699547,52.97439471312685],[-126.60908446981082,52.97452987258403],[-126.60917179967922,52.97470086709689],[-126.6092247045121,52.97487819811495],[-126.60940288683163,52.9750117441737],[-126.60967550678559,52.97496551158378],[-126.60989197796484,52.974841694426324],[-126.61015380761137,52.97475909382607],[-126.61045010272198,52.974738509757344],[-126.61074764453464,52.97474032971586],[-126.611045281795,52.9747477512372],[-126.61134120010607,52.974766386543216],[-126.61163648361406,52.97480519451545],[-126.61194603033812,52.97486242143475],[-126.61225644841315,52.97478628718688],[-126.61247675047079,52.97473528185196],[-126.6127691362732,52.974702386081425],[-126.61306249399378,52.97467172565034],[-126.61333675600179,52.97461146449674],[-126.61362335066492,52.97456514999086],[-126.6139217667585,52.97456247512781],[-126.61420865175505,52.974536327802184],[-126.61446850892831,52.974447013417546],[-126.6146915637963,52.9743276262742],[-126.61492027102167,52.97421325621248],[-126.61520307424058,52.97416304012802],[-126.61550158471687,52.97416708413252],[-126.61579690735516,52.97414368576805],[-126.61609453458003,52.97415165933818],[-126.61639211174497,52.97415514120277],[-126.6166894304382,52.97414182418878],[-126.61698683695553,52.974133544015174],[-126.61728434228543,52.97413310651404],[-126.61758113401606,52.97414723932197],[-126.61787880087645,52.97415688454225],[-126.61817637151154,52.97416092670024],[-126.61847393261601,52.974163282830126],[-126.61877236188727,52.974161716160836],[-126.61906985930537,52.97416071839515],[-126.6193648600093,52.97417989417651],[-126.61965554847184,52.974222632691074],[-126.61995250496109,52.97424796430049],[-126.62020789843376,52.97417378377968],[-126.62044508884253,52.97406608163519],[-126.62071348609169,52.973987349277564],[-126.62098853388,52.97391754576232],[-126.6212702732054,52.973859467756164],[-126.62155679690592,52.97380921674606],[-126.62184334444015,52.97376064127213],[-126.62213179739614,52.9737148519646],[-126.62241451492167,52.97365957192835],[-126.62267434123362,52.9735696746818],[-126.62295449660697,52.97353009477497],[-126.6232486614528,52.97355655339598],[-126.62354724243157,52.97356562365151],[-126.6238395164988,52.97358928491241],[-126.62412199378993,52.97364493790465],[-126.62440176532745,52.97370732794517],[-126.62468154444345,52.97376916148346],[-126.62491630356321,52.973877732053296],[-126.62519790172152,52.973937304629466],[-126.625484971096,52.97398732717947],[-126.62575097985852,52.97406435441389],[-126.62599684377811,52.97416670524462],[-126.6262390278782,52.974272427846294],[-126.62647381857805,52.97438268047706],[-126.62670400596387,52.97449743041283],[-126.62693972265367,52.97460655662473],[-126.6272222189558,52.97466275790758],[-126.62750107659534,52.974725145475965],[-126.62777722082143,52.97479371442631],[-126.62805517974545,52.97485778183913],[-126.6283358719882,52.974917916532064],[-126.62861927257234,52.9749724332907],[-126.62890542124018,52.97502301721171],[-126.62919337771845,52.97506966433099],[-126.62948758024291,52.97509666302958],[-126.62976644405096,52.97515904522097],[-126.6300453004431,52.97522087099447],[-126.63030128309245,52.975313064722734],[-126.63053333290462,52.97542556507145],[-126.6307321103248,52.975559524802094],[-126.63090682207601,52.975704827641444],[-126.63104164062074,52.97586490221112],[-126.63113372559275,52.976036420092186],[-126.63114943489724,52.97621506137895],[-126.6311222763345,52.97639618232344],[-126.6292865224097,52.979787855742714],[-126.62913771889556,52.979943843380575],[-126.62905819261195,52.98011683423556],[-126.6290384595171,52.98029622925875],[-126.62900563490237,52.980473453007995],[-126.62892237616092,52.98064646362832],[-126.62894274245146,52.98082564458641],[-126.62901338413829,52.980997278054744],[-126.62921316454167,52.98113404054287],[-126.62935348266818,52.98128680806284],[-126.62930669305186,52.98146634748346],[-126.62918320819942,52.98163116427883],[-126.62905079799086,52.981760735416266],[-126.6288316162817,52.981889648820136],[-126.62857076058856,52.9819750822446],[-126.62823360586601,52.98201106139448],[-126.62795493549804,52.98209098559882],[-126.62770630276331,52.98218363111273],[-126.62742171950846,52.98224229490591],[-126.62720518739172,52.982361106073604],[-126.62705216524827,52.9824851817551],[-126.62680675690906,52.982607507460436],[-126.62655053265763,52.982691791142905],[-126.62628871903175,52.98277666872047],[-126.62613603923685,52.982924273066814],[-126.62611729044428,52.983107579469696],[-126.62606284965823,52.983275396589114],[-126.62599111342976,52.983471875269785],[-126.62589346433992,52.983618622177886],[-126.62574931631791,52.98377626563992],[-126.62561080377893,52.98393556431213],[-126.62548725784266,52.98409870084769],[-126.62537028924346,52.98426459924692],[-126.62523269074194,52.98442332780199],[-126.62508385626309,52.984579318852596],[-126.62493502056033,52.98473530073681],[-126.6247861755983,52.98489072666582],[-126.62463732954801,52.98504615239237],[-126.6244922384947,52.98520324333358],[-126.62433965063708,52.985358123707606],[-126.62417111228459,52.98550637395458],[-126.62399880988234,52.985653514347014],[-126.62381241425854,52.98579344992158],[-126.62359589512288,52.985915059860766],[-126.6233605697287,52.986026674875774],[-126.62315255794756,52.986155518110586],[-126.6229445135619,52.98628324057832],[-126.62270921737485,52.986397104169974],[-126.62245490991043,52.98648697124601],[-126.62216825263735,52.986533862651605],[-126.62187007270336,52.98655841200328],[-126.62157359420043,52.986571737109124],[-126.62127511066909,52.98657555179842],[-126.62097738738078,52.98656703561912],[-126.62068183406956,52.98658036257052],[-126.62040571304773,52.98664568783494],[-126.62018169230137,52.9867656455345],[-126.6199557799753,52.98688392742711],[-126.61966994481637,52.98692409402929],[-126.61937077809425,52.986944715794806],[-126.61907065443042,52.986964221270306],[-126.61877434352428,52.9869893087387],[-126.6184961324115,52.987040629042035],[-126.61826082011905,52.98715448370248],[-126.61804808292618,52.9872811014084],[-126.61786074323767,52.987421588039915],[-126.61770998095592,52.9875758940939],[-126.61757329304403,52.98773629372823],[-126.61742723307643,52.98789281585222],[-126.61727273596527,52.98804714084892],[-126.61712665069894,52.988203097933535],[-126.61699839468577,52.98836569378293],[-126.61687669982595,52.98852993148467],[-126.61674468578055,52.988690861370145],[-126.61658266303607,52.98884129831601],[-126.61637460201509,52.98897012945116],[-126.61614585179262,52.989086742261264],[-126.6159029691568,52.989194464029644],[-126.61571360347202,52.9893260021356],[-126.61561815269526,52.98949906574589],[-126.61550767000779,52.98966604022395],[-126.61539907542577,52.98983356947912],[-126.6152942049919,52.99000164393321],[-126.61519308847075,52.99017025447657],[-126.61504982700508,52.9903284350796],[-126.61487653192465,52.99047445503819],[-126.61474449610205,52.99063481778149],[-126.61469855067935,52.990812669273964],[-126.61472072780846,52.99099184186848],[-126.61471025881119,52.99117118467425],[-126.61469513234431,52.991350551744475],[-126.61466879514691,52.99152997724604],[-126.61463778410538,52.991708306538484],[-126.6146208721842,52.991893285602],[-126.61459984867507,52.99205306920465],[-126.61451761105836,52.99223726820758],[-126.61452395095942,52.992417643789146],[-126.61454239620448,52.99259683569921],[-126.61462235354644,52.9927701041645],[-126.61476735577443,52.99292566934927],[-126.61492527386633,52.99306995251399],[-126.61494001342317,52.993250848938246],[-126.61492767876545,52.99343020125529],[-126.61491721808059,52.9936100995696],[-126.6148619155631,52.993786314295455],[-126.61483745854169,52.99396572976446],[-126.61481205278072,52.99414459436335],[-126.61472214641763,52.99431594245646],[-126.6146135368601,52.99448347052399],[-126.61450293204334,52.99464316502733],[-126.61441501790374,52.99482235524579],[-126.6142970198752,52.99498712603084],[-126.61421042244358,52.99506433926964],[-126.61418741783815,52.99515129714678],[-126.61415176866683,52.99533133536936],[-126.61412820900618,52.99550906052704],[-126.61435754383851,52.995623282200334],[-126.6147118727936,52.9956051918553],[-126.61503475267239,52.995671296666615],[-126.6152449265492,52.99568588777221],[-126.61554190054667,52.99570226646159],[-126.61583881801747,52.99571472726212],[-126.61614875789954,52.99572431340792],[-126.61642483329598,52.995780018286666],[-126.61671827123186,52.99580985908733],[-126.6170143210607,52.99582623890858],[-126.6173121815749,52.99583980265338],[-126.6176178555814,52.995876300443975],[-126.61790260494688,52.995886578699526],[-126.61819168011357,52.99593660857993],[-126.61840340645932,52.9960587585885],[-126.61858651778935,52.99620178401461],[-126.618769622261,52.99634425339454],[-126.61896753494649,52.996478245114815],[-126.61917933821387,52.99660431074955],[-126.6194077765368,52.996720212639865],[-126.61965190626093,52.99682369662544],[-126.6198941874647,52.99692831933669],[-126.62011802038867,52.99704759674129],[-126.62030389957563,52.99718725223159],[-126.62043408971937,52.997348481927595],[-126.62055502206864,52.99751368659497],[-126.62068894672433,52.99767490529771],[-126.62084885886931,52.9978253373161],[-126.6210356776282,52.99796554246304],[-126.62123083907105,52.99810234171033],[-126.62143342425001,52.998235175105144],[-126.62164526969359,52.99836404189169],[-126.62184228332109,52.998498589254595],[-126.62200217131922,52.99864789925316],[-126.62214166955422,52.998805725201144],[-126.62226817189618,52.99896921333264],[-126.62238445923441,52.999135561087336],[-126.62249331516419,52.99930418904296],[-126.62259565567086,52.99947341604425],[-126.62267748546084,52.99964498338957],[-126.62272001575982,52.99999997206702],[-126.62287253609333,53.00015436664925],[-126.6230148344027,53.00031216771069],[-126.6231552757126,53.00047054316044],[-126.62337543676252,53.00059208373906],[-126.62366889635908,53.0006207866965],[-126.62392411719378,53.00071468294624],[-126.6240942603446,53.000861694638516],[-126.62420869364782,53.00102805028539],[-126.62424956342824,53.00120600073803],[-126.62428018411039,53.001384561212056],[-126.62429962333621,53.001564310370064],[-126.62430693034743,53.001743558985396],[-126.62429743305341,53.00192345234079],[-126.62425524822038,53.00210128660004],[-126.62411197210442,53.00225892134527],[-126.62396964376195,53.00241710667129],[-126.6237822256803,53.00255649003277],[-126.62357318530145,53.0026847730081],[-126.62342897078096,53.0028418560172],[-126.62333533971395,53.00301267378036],[-126.62326136244253,53.00318674920516],[-126.62320982313905,53.00336350286044],[-126.6231601581591,53.003540811321834],[-126.62311610048233,53.003718654866475],[-126.62309167259303,53.00389807098849],[-126.62310082647335,53.004077309647315],[-126.62319665697021,53.00424768169892],[-126.62336404417249,53.00439639406057],[-126.62358513537582,53.00451679965073],[-126.6238550566727,53.00459325427586],[-126.62412862956838,53.00466407727638],[-126.62437374898681,53.00476699027205],[-126.62461054509033,53.004875549561696],[-126.6248427263315,53.00498805921184],[-126.625064757364,53.005107901255094],[-126.6253181498662,53.00520235987753],[-126.62557339367996,53.00529569655653],[-126.62582493838207,53.00539128443692],[-126.62605068271058,53.00550942858248],[-126.62627086982475,53.0056303986826],[-126.62653988540443,53.005707407774736],[-126.62680155296918,53.005793419656264],[-126.62700880159991,53.00592285673708],[-126.6271734179401,53.00607269892505],[-126.62738714341548,53.006197618715596],[-126.62753133711294,53.00635484808546],[-126.6276309072948,53.0065240849476],[-126.62777325294714,53.00668244437995],[-126.62793786658047,53.00683172072448],[-126.62808949783027,53.00698666868811],[-126.62823369680403,53.007143897125836],[-126.62842428102401,53.007281828995374],[-126.62864355986949,53.007403920005714],[-126.62887393869978,53.00751810762041],[-126.62910522803769,53.00763116938467],[-126.6293586529321,53.00772618389299],[-126.6295834703264,53.00784376142471],[-126.62976850352186,53.007984517611696],[-126.62993313758052,53.008134355764845],[-126.63011168890004,53.00827795186091],[-126.63030970117502,53.008412479338],[-126.63051881508214,53.00854022387568],[-126.63072608843325,53.00866965421354],[-126.63097951489284,53.008764109436065],[-126.63123294234593,53.00885855514508],[-126.63151930566816,53.00890801124577],[-126.63181018727622,53.00894791336043],[-126.63208745994665,53.00901366016006],[-126.63236930767054,53.00907265852802],[-126.63262916599908,53.00916034351361],[-126.63272225367893,53.00933073125403],[-126.63288225404463,53.0094822664439],[-126.63293902632871,53.00965900735404],[-126.63293237139688,53.00983888549362],[-126.63290797316033,53.010017747253805],[-126.63293304470645,53.01019689930845],[-126.6329189143094,53.01037626171779],[-126.6329542375079,53.010554793964644],[-126.63312631808759,53.01070178174916],[-126.63322219544138,53.010871589241034],[-126.63337571889164,53.01102596427152],[-126.63358578732696,53.011153133414076],[-126.63377827371349,53.01129104627617],[-126.63400496400205,53.01140692890609],[-126.63426487164313,53.01149573053729],[-126.63452933969202,53.01157779278394],[-126.63479932540172,53.0116542130759],[-126.6349537749193,53.011808016290495],[-126.63505991210124,53.011976090668846],[-126.63506819225428,53.01215533252572],[-126.63504006134086,53.01233477040924],[-126.63508006139753,53.01251272090128],[-126.63513218716493,53.01268948552899],[-126.63514047606988,53.012869283048346],[-126.63515715869929,53.013049044313036],[-126.63520555165758,53.01322582895859],[-126.63537579225489,53.013373379026106],[-126.63563385816309,53.01346387283006],[-126.63590293199269,53.01354030446448],[-126.63611394641293,53.01366746392335],[-126.63625540668828,53.01382581752321],[-126.63640616723697,53.013980759147934],[-126.63655227933228,53.01413741094887],[-126.63666584776986,53.014303193570285],[-126.63675617180952,53.014474713213566],[-126.63681017391389,53.01465146681666],[-126.63679232447535,53.014830849377056],[-126.63672866776285,53.01500655282672],[-126.63663787976076,53.01517792946918],[-126.63656206036426,53.015351457354456],[-126.6365030853349,53.0155277001052],[-126.63640667751766,53.0156979862929],[-126.6362812201407,53.015860576351955],[-126.6362054065259,53.01603466864361],[-126.63614081121618,53.016209820904095],[-126.63604720179988,53.01638064740847],[-126.63590487072308,53.01653885478133],[-126.63576909086524,53.016698702976804],[-126.6357147791595,53.01687547581839],[-126.63566701763676,53.01705277806741],[-126.63567438372402,53.017232589040916],[-126.63579448247938,53.01739721649756],[-126.6359971736242,53.017528911949825],[-126.63617300192443,53.01767418940083],[-126.63631354968207,53.017832547551485],[-126.63637406482383,53.018008145348944],[-126.63643552995029,53.01818430272486],[-126.63662248121344,53.01832391678059],[-126.63684092298753,53.01844656145623],[-126.63704177192231,53.01857937659407],[-126.63722965961597,53.01871842883234],[-126.63741940074344,53.01885747075189],[-126.63761100837952,53.018995381737014],[-126.6378044526527,53.01913216194046],[-126.6380053229133,53.01926498426711],[-126.63821451338275,53.01939271434185],[-126.63842741412348,53.01951873867763],[-126.63864770909242,53.019639684667865],[-126.638893851002,53.019740885373274],[-126.63913261800094,53.0198482839857],[-126.63933071277452,53.019982795398654],[-126.63949170939978,53.0201337508664],[-126.63963320379948,53.020292099812295],[-126.63978214928233,53.020448167100085],[-126.63992177859478,53.02060652579694],[-126.64000467716627,53.02077920327362],[-126.64003538669125,53.02095832229223],[-126.64005862751327,53.02113748180693],[-126.64016294082063,53.02130555183672],[-126.64036289601522,53.021438930825795],[-126.64056377024556,53.02157174869695],[-126.6407451905094,53.02171419194579],[-126.64086160394625,53.02187995453529],[-126.64103560813578,53.02202579921309],[-126.6412068369744,53.02217277924709],[-126.64138362009939,53.02231748776136],[-126.64159561885715,53.02244352016162],[-126.64186656172788,53.022516557423955],[-126.64215729323894,53.02247744188493],[-126.64239787485326,53.02257977708068],[-126.64254405557256,53.02273754110856],[-126.64274217462305,53.02287204656463],[-126.64293195032717,53.02300995875487],[-126.64308369402079,53.02316488595982],[-126.64320569718534,53.02332893937876],[-126.64333328635176,53.023491841667045],[-126.64344318011895,53.02365820191768],[-126.64348790190786,53.02383612287013],[-126.64353168291896,53.02401404892059],[-126.64362203821865,53.0241844329217],[-126.64378771015446,53.02433424524981],[-126.64394688028743,53.024485769143325],[-126.64403539641371,53.02465784811534],[-126.64410807323006,53.02483168979805],[-126.64422170831676,53.02499802880323],[-126.64435115681215,53.025159799194526],[-126.64444897909925,53.02532958591503],[-126.6445374905848,53.025501108687074],[-126.64463345539883,53.02567146116016],[-126.64473221274962,53.02584068671445],[-126.64486539209007,53.02600187135084],[-126.6450292080407,53.02615169198257],[-126.64521901426696,53.026290155966464],[-126.64543473862841,53.026414475690764],[-126.64561712867359,53.02655635015631],[-126.64572332138042,53.026723848860115],[-126.64574567152313,53.02690356745469],[-126.64574280326417,53.02708343301128],[-126.64574832271299,53.027262687895934],[-126.64576412946789,53.027442442243434],[-126.6457687313476,53.02762226685994],[-126.64575372306297,53.02780163403536],[-126.6457489786514,53.0279809450175],[-126.64577411496575,53.02816009244683],[-126.64579365727533,53.028339826253585],[-126.64586631574578,53.02851255508567],[-126.64603575397139,53.028661778649436],[-126.64623111993014,53.028797413595726],[-126.64640888041458,53.028941544162116],[-126.64655230401662,53.02909931794064],[-126.64669381188862,53.02925485201031],[-126.64690952796752,53.02937637212965],[-126.6470204177808,53.02954439948744],[-126.64713315054605,53.029710740308616],[-126.64724216602434,53.029878221931185],[-126.64735397633751,53.03004568810844],[-126.6475149969869,53.03019383512594],[-126.64778239029789,53.03027416620339],[-126.64807794772928,53.03030336235901],[-126.64836716647976,53.030346030002626],[-126.64865189543947,53.03039993588602],[-126.64892476667302,53.03047182581343],[-126.64914604045309,53.03059050545533],[-126.64927367422071,53.03075340062586],[-126.64933613766222,53.03092954486299],[-126.64938181816396,53.03110745772522],[-126.64944707430024,53.03128245700988],[-126.64953841244582,53.031453960054314],[-126.64963998822782,53.031622600848245],[-126.64979547964938,53.031774692504584],[-126.65003527469173,53.03188150737286],[-126.65031640925343,53.03194382854809],[-126.65060657423903,53.03198592973874],[-126.65089578129755,53.03202691497254],[-126.65119230291904,53.03205665384097],[-126.65146031472956,53.03211568312799],[-126.65160939030498,53.03227565152101],[-126.65173331178336,53.03243912919631],[-126.65181908189527,53.03261121695827],[-126.65187128706268,53.03278797218027],[-126.65188993089922,53.032967709607576],[-126.65190481588871,53.03314691199682],[-126.65192998122954,53.033326057572786],[-126.65196634493904,53.03350458547573],[-126.65202416145678,53.03368074479948],[-126.65211551516855,53.03385224560876],[-126.65223199772586,53.03401744006322],[-126.65243415940759,53.034288046162914],[-126.65257275917452,53.03412928533744],[-126.65270664648608,53.03396830933661],[-126.65283678864988,53.03380679809954],[-126.65302420855292,53.03366569505089],[-126.65328348825773,53.033580776116096],[-126.65355691445234,53.03350530723269],[-126.65380756408038,53.033406432793264],[-126.654032679528,53.03328752980818],[-126.65421448755127,53.033145335365255],[-126.65436521859081,53.03298706976281],[-126.6544597604283,53.03281902185652],[-126.65449064297049,53.03264125114187],[-126.65449622558393,53.03245857385878],[-126.65451307255438,53.032278630920615],[-126.65452898675537,53.0320992578811],[-126.65452232430385,53.03190936949392],[-126.65453279920611,53.031740667137974],[-126.6546750514464,53.03157852166733],[-126.65490410387345,53.03147248556433],[-126.65519178167133,53.03141429735152],[-126.65546519924207,53.03133938865014],[-126.65573198249072,53.03125778402581],[-126.65598926434018,53.03116671158032],[-126.6562248060223,53.03105839572084],[-126.65643672229184,53.03093171756604],[-126.65664577636096,53.03080169334876],[-126.65684262992913,53.03066837506508],[-126.65691838506733,53.03049427101287],[-126.65693709737104,53.0303148818237],[-126.65689510400507,53.03013583057558],[-126.65692114175047,53.029947992100524],[-126.65711933925394,53.029841002757856],[-126.65742622314974,53.02981688270679],[-126.65770462635413,53.029763786779085],[-126.6578432349733,53.029607815950634],[-126.65787967771625,53.029428327644254],[-126.65790677357809,53.02924833563769],[-126.65797878665082,53.02907425158633],[-126.65815589562088,53.02893263253428],[-126.65842261765431,53.02884934562375],[-126.6587066883469,53.02874018900059],[-126.6589153633972,53.028646584410446],[-126.65908687354495,53.02850555991244],[-126.6591129963036,53.02832388765376],[-126.65912248238264,53.0281523931029],[-126.65915136137822,53.027967343799546],[-126.65915323167849,53.02778748327147],[-126.65914859926512,53.02760934433389],[-126.65915232599971,53.02742779707887],[-126.65914954374496,53.027248527234406],[-126.65916823025512,53.027069137434026],[-126.6592196746932,53.02689404672861],[-126.65925883102395,53.026708939833775],[-126.65941670138535,53.02659264261045],[-126.65968020361966,53.02648304256801],[-126.65987324666042,53.026345813678816],[-126.66004370744078,53.0261986349412],[-126.66019914650737,53.02604537257077],[-126.66033295323254,53.02588270201947],[-126.66046396786997,53.025721176424],[-126.66067593201001,53.02560009244786],[-126.6609311795127,53.02550117632047],[-126.66118747165974,53.02540897698574],[-126.66144567366537,53.02531956323229],[-126.66167077471778,53.025202885906126],[-126.6618760148308,53.02507063205696],[-126.66208217123437,53.02493781690585],[-126.66234709538567,53.02486013351348],[-126.66264397681229,53.024856225401095],[-126.66291051139379,53.0249421299213],[-126.66314477982425,53.02505510806093],[-126.66341209151597,53.02513035751114],[-126.66370336809108,53.02518643140543],[-126.66383051844623,53.02519635667718],[-126.66397851233819,53.02516526943835],[-126.66418559496864,53.02503188062241],[-126.66442580403542,53.02492743881444],[-126.66470003459247,53.0248480213821],[-126.66498481394994,53.02484697241699],[-126.66526787032245,53.0249142941517],[-126.66554897226395,53.02497601458973],[-126.66583910474098,53.02501807849602],[-126.66613614510148,53.02502424553041],[-126.66641627414586,53.02496383991327],[-126.66668583397279,53.024885000015594],[-126.66694874388368,53.024799473865535],[-126.66721453169488,53.02471841299066],[-126.66749080788911,53.02465073860949],[-126.66777184988867,53.02458975982033],[-126.66804908582513,53.02452431975867],[-126.66831584003825,53.02444604775623],[-126.66857496248144,53.024356621983294],[-126.6688312222368,53.02426384128324],[-126.66909033629885,53.02417497019042],[-126.6693645973482,53.02409833849278],[-126.66964453287197,53.02402727662806],[-126.66990653188522,53.02394343423879],[-126.67012510332502,53.02382957445395],[-126.67029929456373,53.02368403556064],[-126.67045457528336,53.02352460161639],[-126.67061837129413,53.023371833307266],[-126.67082279898653,53.023249097219384],[-126.6711037117904,53.02318082311804],[-126.67139039396804,53.023123165103264],[-126.67168471302888,53.023076112503006],[-126.671974311294,53.023026280223995],[-126.67223835296666,53.022954182083545],[-126.67245210156331,53.022830825241826],[-126.6726092471836,53.0226719334756],[-126.67272145837626,53.02250488918747],[-126.67278212460448,53.02232637755136],[-126.67276254185178,53.022151129345225],[-126.67267479631768,53.021976260828275],[-126.67261132324644,53.02180014227419],[-126.67254505994975,53.021625151152435],[-126.6724610865075,53.021452510973134],[-126.6723892315946,53.02127811635948],[-126.67231924450282,53.021103711043004],[-126.67225297470061,53.020928163947936],[-126.67221002644422,53.02075079862281],[-126.67217259445508,53.020568928639356],[-126.67203108420874,53.02041734139781],[-126.67179848385251,53.020292600953475],[-126.67168584788402,53.02013693144405],[-126.67165226534506,53.01996119781776],[-126.67164842769759,53.01977800682259],[-126.67162944633351,53.01958089975102],[-126.67159792925649,53.019418600785045],[-126.67163059748617,53.019240813563755],[-126.67164165891973,53.01905417604128],[-126.67166857463098,53.01886689243908],[-126.67164510438043,53.0186815809899],[-126.67165576496491,53.01852912667885],[-126.67166298836885,53.0183369082198],[-126.67168913689349,53.018159713773244],[-126.67168161835109,53.01797991413357],[-126.6716713154984,53.01780068611719],[-126.67169369406979,53.017621271993576],[-126.67170858923434,53.01744190045858],[-126.67171602203076,53.017262006642525],[-126.67172251391051,53.017082127128994],[-126.67172807353121,53.01690280869353],[-126.67172803799592,53.01672295734716],[-126.67173079568079,53.01654309903989],[-126.67173256800088,53.016360440485606],[-126.67187204286604,53.01620668756427],[-126.67204993088416,53.01606112416553],[-126.6722343713913,53.015917208433784],[-126.67240567953141,53.01576944087159],[-126.67257226712003,53.015618894116315],[-126.67274076213212,53.01547002152449],[-126.67288206164913,53.0153734135729],[-126.67316358773984,53.01522949821818],[-126.67343117960016,53.01514896796789],[-126.67367591386889,53.01503999826167],[-126.67381540409342,53.01488792806865],[-126.67388171797226,53.014713309103065],[-126.67393113981596,53.01453317490762],[-126.67399555899718,53.014356881362396],[-126.67407870919983,53.01418440710555],[-126.6741655746435,53.01401078202497],[-126.67433317012308,53.013865273724974],[-126.67452986024448,53.01372912790148],[-126.67472931522572,53.01359128061588],[-126.67491563828476,53.01344958172614],[-126.6750578939111,53.01329637349687],[-126.67512048424446,53.01312289548396],[-126.675148392987,53.012940086822745],[-126.67520437854064,53.01276272013786],[-126.67527067441867,53.012587535468995],[-126.67530421832545,53.01240693553682],[-126.67537621164611,53.01223787666665],[-126.67556249996042,53.01209450045752],[-126.67579694512139,53.0119861497102],[-126.67606264473775,53.01190562403271],[-126.67627439747912,53.01177835309134],[-126.67650219666031,53.0116627509731],[-126.67676590117601,53.01157439129336],[-126.67701923156321,53.011479932037304],[-126.67721881078165,53.01135104391452],[-126.6773863228634,53.01120161397438],[-126.67754628613933,53.01104718019762],[-126.67772039054606,53.010901064549316],[-126.67795661888277,53.010788216927494],[-126.67819293229341,53.01067984155437],[-126.6783033156321,53.01051953323048],[-126.67835828736081,53.010337688340954],[-126.6784226818126,53.010161391941956],[-126.6784795997488,53.00998457374058],[-126.67852808873634,53.00980557185215],[-126.67843384580385,53.00963242904264],[-126.67832107531237,53.00941008857943],[-126.67847194537825,53.00927139330325],[-126.67857081516729,53.009149805246835],[-126.67867902676157,53.00902871913013],[-126.67885654821113,53.008863541531674],[-126.67905883938545,53.00873070797965],[-126.67925456770253,53.00859567972817],[-126.67943147567938,53.0084512304095],[-126.67959617587138,53.00830180419933],[-126.67975709094574,53.00815016742159],[-126.67991894552146,53.007998516023214],[-126.68008740250947,53.00785075271494],[-126.68025485482964,53.0076990774993],[-126.68042133818662,53.007545722308784],[-126.6805991606594,53.0074001452745],[-126.68079870080966,53.00727068607863],[-126.68103319579336,53.007167926847764],[-126.68130173460428,53.007091854713856],[-126.68158631103722,53.00702690374006],[-126.68186519673611,53.00695637325828],[-126.68212040881826,53.006865253335775],[-126.68235477828544,53.00675408353451],[-126.68258438258475,53.00663733807982],[-126.68282347167317,53.006530066411074],[-126.68307961989848,53.00643893894277],[-126.68334335947364,53.00635561077731],[-126.68360992646377,53.00627450672461],[-126.68387459564296,53.00619060720448],[-126.68413073956792,53.00609947743499],[-126.68438777211884,53.00600610083766],[-126.68464196610671,53.005909943251005],[-126.68488765841023,53.00580710220449],[-126.68511731393346,53.00569427779924],[-126.68532622835242,53.005568682638845],[-126.6855200465407,53.00543308987932],[-126.68570255581197,53.00529083922764],[-126.68588128552376,53.0051458043939],[-126.68606000504325,53.005000213535084],[-126.68624344555825,53.004858521329275],[-126.68644097249711,53.004721784828256],[-126.68665257681296,53.004589448220564],[-126.68686978247749,53.0044581991424],[-126.6870860700068,53.00432751078988],[-126.68729110307937,53.004193534922145],[-126.68747740656036,53.00405574145324],[-126.68763745130948,53.00391025692128],[-126.68776002058564,53.003756026298774],[-126.6878263776015,53.00358867677808],[-126.68784868947968,53.00340981383103],[-126.68784570620495,53.003225504606256],[-126.6878380039952,53.003038417020015],[-126.6878452844576,53.00285348312615],[-126.68788532851119,53.002675081414786],[-126.68794408159738,53.00249936742521],[-126.6880121844926,53.00232472835193],[-126.6880858858661,53.00215004758491],[-126.68816520408254,53.00197646348987],[-126.68824732275444,53.0018034187696],[-126.68833132206001,53.001630362992444],[-126.68841531475306,53.00145786296775],[-126.68850868077772,53.00128699344622],[-126.68861045531094,53.001117195280266],[-126.6887141045238,53.00094795081499],[-126.68881026926992,53.000777620438384],[-126.68889053483481,53.00060570649927],[-126.68894089008111,53.00043004978374],[-126.68895290527256,53.00025012586065],[-126.68896097827637,53.00000019467036],[-126.6889541858398,52.99986857347877],[-126.6889428739297,52.999689350553794],[-126.68892596004791,52.99950903978381],[-126.68889971819011,52.99932990404952],[-126.68885950521091,52.99915197047219],[-126.68880251443521,52.99897525543509],[-126.68873341915007,52.99879973161771],[-126.68865497830883,52.998624262328924],[-126.68857096335381,52.99844938132229],[-126.6884850680815,52.998274520185795],[-126.68840198016028,52.99809963361743],[-126.6883235660547,52.99792472865561],[-126.68825447766993,52.997750324986875],[-126.68819751843054,52.997575285706205],[-126.68815735547741,52.99740015731573],[-126.68813867036576,52.99722545934018],[-126.68815822529352,52.99704997339709],[-126.68821512160117,52.99687539899385],[-126.68829626831176,52.99670011821367],[-126.68838767069852,52.996524777476864],[-126.6884772211207,52.996349447460815],[-126.688551808669,52.99617308418075],[-126.68859746899142,52.995996325022396],[-126.6885917638898,52.995816513122286],[-126.68857017115519,52.99563566446907],[-126.68857752299401,52.99545633207047],[-126.68860995656419,52.99526957400645],[-126.68868925965575,52.995095979886045],[-126.68886633361058,52.99496720160906],[-126.68913551622074,52.99487934539914],[-126.68941037778396,52.994796502356955],[-126.68967973083046,52.99471928472256],[-126.6899596356999,52.9946593778736],[-126.69024041993198,52.99459666828728],[-126.69051343868615,52.994515509783135],[-126.69079660611337,52.994484716381486],[-126.69108999606841,52.99450876982562],[-126.69138733717867,52.994546246093265],[-126.69168530345726,52.99456522421882],[-126.69198593077405,52.99457523045605],[-126.69228254317706,52.99456788633526],[-126.69257501250799,52.994535348714194],[-126.69286816632803,52.99448712745923],[-126.69314604708127,52.99441881621087],[-126.6933917804807,52.99432380888291],[-126.69360627661585,52.99420208238743],[-126.69380747164165,52.99406587543529],[-126.694008674452,52.99393022387351],[-126.69422593103346,52.99380680359066],[-126.69445545109514,52.99369115458236],[-126.69468216003584,52.99357440111497],[-126.69489377817646,52.99344877165422],[-126.69510340649457,52.99331474483448],[-126.69529330489263,52.99317299901821],[-126.69543261844576,52.993019216136645],[-126.69545297534196,52.99283812978019],[-126.69543589901335,52.99264941132387],[-126.69553596089985,52.992491942312164],[-126.69571372705813,52.99235082309579],[-126.69592333827786,52.992216238985286],[-126.69615082328136,52.99209107820253],[-126.69638687964844,52.99197706299437],[-126.69663269260964,52.99188820679069],[-126.69694353900434,52.99189701934749],[-126.69723522315529,52.99193170840109],[-126.6975261570154,52.99197705100421],[-126.69781621551067,52.992026324525796],[-126.69810620092528,52.992071106552785],[-126.6983978596794,52.9921041165271],[-126.6986919972629,52.99211806152004],[-126.69898680839452,52.992115758104866],[-126.6992823847511,52.99210279958166],[-126.69957876650294,52.99208254739409],[-126.69987600898817,52.99205837186066],[-126.7001732384528,52.992032519290085],[-126.70047048940813,52.992008898002105],[-126.70076688855849,52.991989772243784],[-126.70106436639944,52.991979039067395],[-126.70136205100943,52.99198175067133],[-126.70165995403096,52.99199678642274],[-126.70195885678422,52.99201629772402],[-126.7022567730236,52.992033008254175],[-126.70255266262453,52.99203908923798],[-126.7028463472979,52.9920255772429],[-126.70313962962055,52.99198684974781],[-126.70342510815921,52.991928553733636],[-126.70369729828424,52.99185577797603],[-126.7039571008614,52.99176794345594],[-126.70421208157713,52.99167117264288],[-126.70446519156468,52.99157329188048],[-126.70472211939344,52.99148154636112],[-126.7049877011445,52.99140488062091],[-126.70527056787921,52.991357810308024],[-126.70557170682385,52.991343117359854],[-126.70587379903719,52.991330103262335],[-126.70616048918528,52.99128861073337],[-126.70643899815721,52.991204020301645],[-126.70664973739258,52.99108397737659],[-126.70672715838248,52.990914307950106],[-126.70675392032557,52.99072813369898],[-126.70676678285717,52.990548201379866],[-126.70680113829332,52.990369825506725],[-126.70685505521887,52.990189091178735],[-126.70693804345468,52.99001771175975],[-126.7071431964842,52.989898821889724],[-126.70739437110561,52.989798705109195],[-126.7076408780003,52.98969805103535],[-126.70775858332146,52.98953822401586],[-126.70774628808691,52.98936012781024],[-126.70771621364375,52.98917934139279],[-126.70768708907725,52.98899910504826],[-126.70766078957877,52.98881997228561],[-126.70765034210636,52.988640744338156],[-126.70765760284745,52.98846084529987],[-126.70766021593965,52.988281538908524],[-126.70768056131202,52.98810212604348],[-126.70770089158657,52.987922713245304],[-126.70771377358842,52.98774334514172],[-126.70772663130371,52.98756342136136],[-126.70773670701365,52.987384070064465],[-126.7077439821005,52.98720417079634],[-126.70774659475116,52.98702486426869],[-126.7077417352583,52.986845046784346],[-126.7077331442384,52.98666524272093],[-126.70772455344041,52.98648544760126],[-126.7077206193373,52.986305615538356],[-126.70772043171375,52.986125769926524],[-126.70772304439745,52.98594646328386],[-126.70772378198834,52.985766603113696],[-126.70772171376638,52.985586768735395],[-126.70771779468366,52.985406936486264],[-126.70771293549754,52.985227118826955],[-126.70770808560367,52.98504785689494],[-126.7076938702955,52.98486641003634],[-126.70766469282766,52.98468281184995],[-126.70764861221221,52.984501376147215],[-126.7076783527851,52.984326944540896],[-126.70777075677196,52.98416166596556],[-126.70790525526684,52.98400285790431],[-126.70806405583055,52.98384783015672],[-126.70822940148233,52.983693318648754],[-126.70838165885014,52.98353720021245],[-126.70852080953809,52.98337836340353],[-126.70866277439825,52.98322007425624],[-126.70881317234348,52.98306453114604],[-126.70899175788088,52.98292114454572],[-126.70922497543273,52.98280936071447],[-126.70949982257687,52.98273262828413],[-126.70979071531096,52.98272303283732],[-126.71008768178031,52.982741979123894],[-126.71050149912753,52.982775899351154],[-126.71049425139017,52.98295579917537],[-126.71048512296343,52.98313570135161],[-126.71041713382932,52.983309799643095],[-126.71048903381225,52.98348137833209],[-126.71052000389147,52.98365991816381],[-126.71048849404296,52.983839399379185],[-126.71034651534123,52.9839965791729],[-126.7102822273083,52.984168969642326],[-126.71032252520506,52.984347462204],[-126.71037958581681,52.98452416837142],[-126.71042546245415,52.98470149770757],[-126.7104629704739,52.984880006986295],[-126.7105079169989,52.98505790663037],[-126.71056778526616,52.98523459571779],[-126.71063511100998,52.98541179560089],[-126.71069962770476,52.98558790076275],[-126.71074830350022,52.985764657195745],[-126.71076617912776,52.98594103455443],[-126.71078871180228,52.986117392774545],[-126.71072854710373,52.98631329034027],[-126.71063212065235,52.98651613884474],[-126.71064290622,52.98665950659715],[-126.71061311055294,52.98683001263222],[-126.71060025034967,52.9870099368961],[-126.71059113657664,52.987189847518486],[-126.7105941331319,52.98736912034971],[-126.71060741187905,52.987550007546616],[-126.71062726595532,52.98773310518381],[-126.71066757796963,52.98791215299306],[-126.71074227398391,52.98808258471988],[-126.71088849596168,52.98823466494084],[-126.71109602732065,52.98837067823542],[-126.71130812342835,52.988501069744515],[-126.71155518879607,52.98860155027308],[-126.71184297126072,52.98862670639876],[-126.71214619292397,52.98862711606815],[-126.71244753548301,52.988625850981116],[-126.71275607273726,52.98860941844173],[-126.71306185611544,52.98859524288683],[-126.7133457950316,52.98861369519307],[-126.71359444021557,52.98869679759783],[-126.71380483965268,52.98883671525863],[-126.71396418281857,52.98899150916058],[-126.71404732030112,52.989164128782186],[-126.71411191329206,52.98934359304149],[-126.71427468042762,52.989479871912124],[-126.71446652735001,52.98962494781041],[-126.71462673533757,52.98977580906805],[-126.7147702892661,52.989934059250004],[-126.71493420302102,52.99008322123806],[-126.71512593232146,52.99022100858772],[-126.7153278234107,52.99035313112601],[-126.71552972526034,52.99048581801617],[-126.71571871797393,52.99062753850281],[-126.71592428799866,52.99075627597471],[-126.71617497161321,52.990849445656984],[-126.71644868517419,52.990924536816266],[-126.71672780862701,52.990988397750044],[-126.71701873791207,52.99103257182179],[-126.71735623413265,52.991072535355016],[-126.71763514369925,52.99117841221697],[-126.71782403150745,52.991258507773125],[-126.7180793943406,52.99135163596453],[-126.71833569886597,52.9914447668309],[-126.71859472956118,52.99153395405908],[-126.71885559876935,52.991621444176964],[-126.71911555713216,52.9917106246078],[-126.71936905973051,52.99180377032643],[-126.71960417904116,52.9919132714475],[-126.71980800538634,52.99204817143445],[-126.72005953168758,52.99213460433973],[-126.72034960779261,52.99218325770715],[-126.72063782803302,52.992232477509],[-126.72092419256595,52.99228227272238],[-126.72120410100489,52.99233603320355],[-126.72150946240954,52.99235097322405],[-126.72180554722938,52.992368210385905],[-126.7221030549747,52.99236022086044],[-126.72240073002367,52.992361203055495],[-126.72269686694652,52.99238235516305],[-126.72299297152396,52.99240070979234],[-126.72329084166913,52.99241401477905],[-126.72358776725964,52.99242619528045],[-126.72388471225408,52.99243950444719],[-126.72418260734592,52.992453362831874],[-126.72447694675232,52.99247844798437],[-126.72475698507634,52.99253947846342],[-126.72502245414519,52.992622444452735],[-126.72528425511004,52.99270823831271],[-126.72559654150989,52.99274553650233],[-126.72575138920396,52.992633647218106],[-126.72583130829888,52.992451067538354],[-126.7259516677667,52.99228672363678],[-126.72608984628566,52.99212730791364],[-126.7262486683061,52.99197561777235],[-126.72642252715295,52.991829428614594],[-126.72660859211372,52.991688210985096],[-126.7268125278645,52.99155584740769],[-126.72706286509413,52.99146298193491],[-126.72733588924149,52.991387340270315],[-126.72760219741676,52.99130053373402],[-126.72788035650481,52.9912528733014],[-126.728168636671,52.99125052822455],[-126.72847297122738,52.99125985368624],[-126.72876776508568,52.99125691109141],[-126.7289063800417,52.99128743001633],[-126.72902215396863,52.99134666900729],[-126.72917226112497,52.99150317600419],[-126.72932237907555,52.991660247501606],[-126.72949655339755,52.99180540845815],[-126.72972896507031,52.99191826800634],[-126.72999533236765,52.99199842036643],[-126.73027626245884,52.99205719112403],[-126.73048647341143,52.99218194818752],[-126.73069124720315,52.99231514731678],[-126.7309236306405,52.99242688411955],[-126.73116340741966,52.9925335365372],[-126.7314068636919,52.992637915539746],[-126.73165031695582,52.9927411824559],[-126.73189289839777,52.99284837178778],[-126.73214826300129,52.99293922851887],[-126.73242914436695,52.99299463276969],[-126.7327218872244,52.99303483944976],[-126.73300918271016,52.993082914285594],[-126.73329466566187,52.993134926167905],[-126.73358638808818,52.99316953421689],[-126.73388415604116,52.993175524948754],[-126.73417636924319,52.99318491122542],[-126.73438954842769,52.993155569254],[-126.73471830667448,52.993119903807234],[-126.73508010431499,52.99310587803376],[-126.73532787809815,52.993134588195005],[-126.73561531755752,52.99319162931197],[-126.73590487133153,52.99326209438687],[-126.73620415179228,52.99324846436159],[-126.73644605979791,52.993153946295635],[-126.7367220055557,52.993086108662645],[-126.73702411815032,52.99301978316147],[-126.73731327716825,52.99301405756185],[-126.73761344001997,52.99305139981518],[-126.73788830338563,52.99308217624785],[-126.73800599336491,52.99303493148195],[-126.73804888317034,52.99297975511544],[-126.73805874475745,52.9927953642923],[-126.73807710767369,52.99261651410399],[-126.73815807954473,52.9924434395014],[-126.73826138374352,52.99226686326344],[-126.73841841369321,52.99212189111226],[-126.73868893214504,52.99206360312499],[-126.73905769636822,52.992021516145385],[-126.73927412527895,52.99196580702281],[-126.73956050433864,52.99190798232143],[-126.73985070231146,52.991855179996904],[-126.74009643334516,52.99176678892111],[-126.74026646775755,52.991618926664586],[-126.7404326963435,52.99146604996299],[-126.74063473175723,52.99133422992174],[-126.74085183505098,52.99120960301341],[-126.74101537081977,52.991063465775575],[-126.74101507614083,52.99088641747876],[-126.74098203840822,52.990703972124905],[-126.74094342287982,52.9905226823729],[-126.7409422322532,52.99034731602627],[-126.74109249822315,52.990189491509604],[-126.74125219985409,52.99003777507227],[-126.74140161628829,52.98988443774571],[-126.74146466064451,52.989701388080114],[-126.74170318424274,52.98968251421323],[-126.74192458798586,52.9898049485912],[-126.74212745641317,52.98993533427794],[-126.74230909165924,52.990078188569974],[-126.74251571907169,52.99020911468055],[-126.7427527060109,52.990315752379324],[-126.7430254542003,52.990386870691275],[-126.7433092175052,52.990446713207675],[-126.74359015574339,52.99050545229252],[-126.74387383716133,52.990561376454885],[-126.74415660358147,52.99061786151678],[-126.7444393608635,52.990673781193024],[-126.7447230594489,52.99072970321195],[-126.74501393229569,52.99076988224751],[-126.74530976023145,52.99077249458067],[-126.74560017914284,52.99073312343488],[-126.74588568928316,52.990680326805],[-126.74617217860705,52.99062977338741],[-126.74646671108009,52.99061222072098],[-126.74676616141507,52.990608638828725],[-126.7470637605165,52.99060675324716],[-126.74736147301375,52.990610469054694],[-126.74765922975685,52.990617545545646],[-126.74795784813955,52.990620133530534],[-126.74825545241303,52.99061768910438],[-126.74853728462857,52.99067416962589],[-126.74882006778469,52.99073119923975],[-126.74911712729218,52.99075116754483],[-126.74941416716749,52.9907700056912],[-126.74970049625026,52.99081636970661],[-126.7499816039075,52.990884057118286],[-126.75023974249085,52.99097150453724],[-126.75041589070604,52.99111885469481],[-126.75065170506033,52.99121092560692],[-126.75093812745484,52.99126232412948],[-126.75116599022718,52.9913790972525],[-126.7513772589596,52.99150717245649],[-126.75159317158051,52.99163354129758],[-126.7518026067476,52.99176331276606],[-126.75199165674962,52.99190105789872],[-126.75214362722134,52.99205248616278],[-126.75225573136673,52.99221873605049],[-126.75235208244875,52.99239068921281],[-126.75245865502642,52.99255978009709],[-126.75259305411141,52.992720284470074],[-126.7527404714036,52.99287734384596],[-126.75290270343997,52.99302870556198],[-126.75308344257668,52.99317041949145],[-126.7533067086086,52.99329057952386],[-126.75352535795079,52.99341300081855],[-126.75369965181888,52.99355980204167],[-126.75382665941017,52.99372315812635],[-126.7538922633037,52.99389754767667],[-126.75393091724999,52.99407771237616],[-126.75399374039606,52.994252675425095],[-126.75411977094723,52.99441379625483],[-126.75427649020652,52.99456855298436],[-126.75439606351082,52.99473418812991],[-126.75448684080193,52.994906739814645],[-126.7547320202018,52.99499817784862],[-126.75502635542536,52.99502094580462],[-126.75529651195063,52.99510045224226],[-126.75551790340056,52.995218378923106],[-126.75570332833819,52.99536062350656],[-126.75590351373593,52.995493243831326],[-126.75615531318832,52.995589683517785],[-126.75640527752114,52.99568781081457],[-126.75662394811914,52.995810226188134],[-126.75682137194885,52.99594511277775],[-126.75699105962684,52.996093614993754],[-126.7571459544076,52.99625062071496],[-126.75731192225479,52.99639971111267],[-126.75751388400703,52.99652672339135],[-126.7577509338861,52.99663277479753],[-126.75800737210636,52.996727495383745],[-126.75826841424482,52.99681825932928],[-126.75852207306188,52.996913561442405],[-126.75877388670975,52.997009986491555],[-126.75902478597266,52.997106981658256],[-126.75927382530965,52.99720510883996],[-126.75951738235202,52.99730887366079],[-126.75976003015916,52.99741432917515],[-126.76000722685872,52.997513587255455],[-126.76026820802691,52.99760042967213],[-126.76054298346429,52.997675412074],[-126.76082050161602,52.99774757919897],[-126.76109063622944,52.99782427561308],[-126.76134141023073,52.99791454326077],[-126.76152673600664,52.99804950008138],[-126.76167706683111,52.99821044680882],[-126.76188559938362,52.998337964956775],[-126.76210520511097,52.998459252514294],[-126.7623008272879,52.99859525315783],[-126.7625010586378,52.99872842672658],[-126.76270867573174,52.99885706990122],[-126.76290890959302,52.9989902427567],[-126.76310545246288,52.999125680295535],[-126.7632992501193,52.99926449698191],[-126.76348850165941,52.999409510393846],[-126.76369702539618,52.99953590480914],[-126.76394498282201,52.99962394403451],[-126.76422321336108,52.99968320754951],[-126.76451704339934,52.99972724607178],[-126.7648118046451,52.99977072202236],[-126.76509559582696,52.99982770628198],[-126.76537214955569,52.99989650729467],[-126.7656585071416,52.9999400356863],[-126.76595818838227,52.99994648910052],[-126.76625642255942,52.99997537149872],[-126.76641831284402,53.000000092411746],[-126.76665548516185,53.000110607445464],[-126.76685753274297,53.000239835349554],[-126.76701801201354,53.00039230945453],[-126.7671960732574,53.00053682495915],[-126.76739168628718,53.00067170561239],[-126.76763444358402,53.00078106175774],[-126.76784939960552,53.000901239366684],[-126.76797271037658,53.00106236293015],[-126.76806917539062,53.00123597851235],[-126.76818606983076,53.001403867035954],[-126.76832704523416,53.00156150444852],[-126.76855123776933,53.001676026700665],[-126.76880223276918,53.001776362197326],[-126.76899604555794,53.00191348406914],[-126.76915842075817,53.00206762817073],[-126.76926218608867,53.002231674756565],[-126.76926085383155,53.00241545656303],[-126.76934882975345,53.002584088321136],[-126.7695518887536,53.002716110851246],[-126.76978724833855,53.00282830775899],[-126.77004733138874,53.00291457866092],[-126.77031568970665,53.00299350676233],[-126.77056297875791,53.00309386272004],[-126.7708065821794,53.003197603955165],[-126.77106119695793,53.0032900670132],[-126.77132680318701,53.00337180775563],[-126.77159425127307,53.00345130368032],[-126.77186722350872,53.00352739217556],[-126.77214112730748,53.00360291814072],[-126.77240027375767,53.00368806944124],[-126.77261990106129,53.00380653136499],[-126.77276930271456,53.003964672959384],[-126.77284341678634,53.00413955154319],[-126.77294352960888,53.004306980453315],[-126.77312998311618,53.00444863495778],[-126.77329882102964,53.004597119118095],[-126.77345096388748,53.0047513243321],[-126.77356319500166,53.004918108432484],[-126.77365965097287,53.00508948714184],[-126.77375147943984,53.00526257249029],[-126.77377336807054,53.00543947838379],[-126.7737542137732,53.005617774124325],[-126.77371919645286,53.005796729720466],[-126.77367765358015,53.005975737061426],[-126.77363892776201,53.00615528168672],[-126.7736113860135,53.00633475291151],[-126.7736034401268,53.006513530799474],[-126.7736169673644,53.006692176771054],[-126.77364541224725,53.006870715897136],[-126.77368320539621,53.007049202634974],[-126.77372658354894,53.00722764373747],[-126.77377184376385,53.0074060814235],[-126.77383376684483,53.00768021356994],[-126.7738940278845,53.00750388942561],[-126.77395336259121,53.00732757130814],[-126.77402392223605,53.0071534205973],[-126.77411883317572,53.0069830274762],[-126.77423152976547,53.00681588815382],[-126.7743423587369,53.00664875199996],[-126.77443071671452,53.00647784578797],[-126.77449190967499,53.00630207983076],[-126.77453813355926,53.00612360623817],[-126.77457967295177,53.00594459860979],[-126.77462870883191,53.00576722703555],[-126.77470210108932,53.0055947424484],[-126.77489842636926,53.005458984563475],[-126.77513633950205,53.00535096714999],[-126.7753865398091,53.005251832986865],[-126.77563960273442,53.00515659695337],[-126.77589551281869,53.00506359172968],[-126.7761552364671,53.004975034142575],[-126.77641878421895,53.004891497828964],[-126.77669948778433,53.00482746233356],[-126.77698120283313,53.0047673370015],[-126.77722959039878,53.00467157248954],[-126.77746656266143,53.00456411225953],[-126.77770065486607,53.00445275302728],[-126.77793190241407,53.00433861514342],[-126.77815935408184,53.00422113117017],[-126.77838398157179,53.00410198901346],[-126.77860480872997,53.00398007456626],[-126.77882189596454,53.00385705485608],[-126.77903613390171,53.003731821379944],[-126.77924845269611,53.003603794275215],[-126.7794541480443,53.003471328275964],[-126.77964951222825,53.00333500373207],[-126.77983171780933,53.00319372778841],[-126.77999794177755,53.00304583384239],[-126.78014627211775,53.00288965823849],[-126.78027767001117,53.0027263062875],[-126.78039309225998,53.002557457048994],[-126.78049262588146,53.002387027504994],[-126.78057351572946,53.00221785080582],[-126.780534762015,53.00203881615882],[-126.78044755529743,53.00186401969877],[-126.78033714063831,53.001695544365376],[-126.78025278936325,53.00152409951418],[-126.78024205321057,53.00134599988285],[-126.78025366155016,53.001164946469736],[-126.78022609784863,53.00098528177515],[-126.78020322802575,53.00080669760459],[-126.78023815786058,53.00062549878415],[-126.78028246457407,53.00044591425518],[-126.78025832050878,53.00030039979867],[-126.78011122262309,53.00016690457259],[-126.78002509111224,52.99999994452755],[-126.78003478241212,52.99981610673108],[-126.7800248236842,52.999629037193905],[-126.78001954376884,52.99944305725503],[-126.78007150586723,52.99927462774997],[-126.78023418689665,52.999137962177976],[-126.78048317181853,52.99902649826781],[-126.7807350343616,52.998918941245925],[-126.78099274120571,52.99882478286088],[-126.78117686136542,52.9986874181066],[-126.78133927902971,52.99853674103175],[-126.7814941437725,52.99838219625195],[-126.78165182453431,52.9982281973473],[-126.78182175512926,52.998080275650985],[-126.78200391034748,52.99793787547446],[-126.78219074294441,52.99779656453941],[-126.78237290594062,52.9976547195053],[-126.78254378837794,52.99750847571232],[-126.78269016181545,52.99734893850872],[-126.78277658010705,52.99717691705442],[-126.78275741343158,52.996997196722916],[-126.782634947446,52.99683328538133],[-126.78244669142066,52.996695018961645],[-126.78223619219325,52.99656418802903],[-126.78203219759322,52.99643219300039],[-126.78189029865128,52.99637879077375],[-126.78182544923594,52.9963030217948],[-126.78183782242715,52.99616398856764],[-126.78195788500346,52.99604496727706],[-126.78220132125216,52.99593746267716],[-126.78245242103554,52.995839982904656],[-126.78271682534842,52.99575642592101],[-126.78300131511087,52.995699072926264],[-126.78330268489775,52.99569650628336],[-126.7835790094734,52.99575350474929],[-126.783774822279,52.99589675730242],[-126.78402811924208,52.99596958688253],[-126.7843342831395,52.995974273952115],[-126.78463210425606,52.99598237747329],[-126.78492991972301,52.99598935970583],[-126.78522687757354,52.99600082919761],[-126.78552220770526,52.99602519987977],[-126.78581580664229,52.99605686061681],[-126.786111054443,52.99607673911285],[-126.7864124119566,52.99607417358486],[-126.78670399016994,52.996097436800106],[-126.78698686074101,52.99615438363407],[-126.78726165319165,52.996228183393306],[-126.78752451718579,52.99631327690708],[-126.78777476584047,52.99642254200852],[-126.78790915462044,52.99657459798053],[-126.78797024488486,52.99674899937979],[-126.78801281969194,52.99693136850664],[-126.78807582906137,52.99710856291259],[-126.78818625662947,52.99727591092226],[-126.78833937352162,52.997431202878765],[-126.78854619921542,52.99756316814482],[-126.78844951128895,52.99773414203996],[-126.7884412865483,52.99789443913839],[-126.78866862206317,52.99802514644415],[-126.78879293935468,52.99818679804763],[-126.78888016236652,52.99836102401704],[-126.78893477207052,52.998538274051214],[-126.78895581559185,52.998716304456075],[-126.78895262505088,52.99889673814561],[-126.78893825202258,52.99907724663938],[-126.78892197690396,52.9992566472649],[-126.78888517737379,52.99943562042189],[-126.78885677869931,52.99961510211076],[-126.788820015728,52.99979688087519],[-126.78878419304299,52.99997865331636],[-126.788781796213,52.999999960232174],[-126.78883921449781,53.00017719136116],[-126.78891707906418,53.00034979439328],[-126.78905257074737,53.000509694410304],[-126.78920292095533,53.000665568328984],[-126.78935326177748,53.000820877343344],[-126.78950360386497,53.00097619511515],[-126.78964373710616,53.00113493380692],[-126.78975608928258,53.001304508313176],[-126.78987675010536,53.00146954475677],[-126.7900538696278,53.00160955021684],[-126.79026801968963,53.001732498658036],[-126.79049881785207,53.00184805586923],[-126.7907342487674,53.00196133145445],[-126.79096506437115,53.00207688763733],[-126.79117366796717,53.00220323335273],[-126.79127299565233,53.00237457012896],[-126.79129124382747,53.00255261854793],[-126.79121515899206,53.002727382425924],[-126.7911446874922,53.002902099607056],[-126.79107139799203,53.00307627982562],[-126.79099342404538,53.00324993559628],[-126.7909098441069,53.003422499358074],[-126.79081688521782,53.003593449563326],[-126.79070056088845,53.003762315206615],[-126.79064685237175,53.00393524318231],[-126.79066141788974,53.00411612212051],[-126.7907216729891,53.00429500934264],[-126.79083115759013,53.004460675342344],[-126.79097966182606,53.00461655914757],[-126.7911448925552,53.0047684130308],[-126.79130364078618,53.00492254235131],[-126.79143075968743,53.005083051345736],[-126.79151890664573,53.00525502747803],[-126.79157356743944,53.00543395172798],[-126.79160025637636,53.00561362847208],[-126.79159145609597,53.00579297865361],[-126.79153878914572,53.00597205849178],[-126.79144770868308,53.00614299630767],[-126.7913341096409,53.00630848229396],[-126.7912074066825,53.0064712591261],[-126.79107505676008,53.00663238834437],[-126.7909408645409,53.00679408555021],[-126.79081040003169,53.006956322350725],[-126.79068557006096,53.00711964177541],[-126.79055885760638,53.00728297366514],[-126.79043496204699,53.007446851282694],[-126.7903204297384,53.00761234237027],[-126.7902349301976,53.00778267686079],[-126.7902168219367,53.00796377437111],[-126.7902098968929,53.008143111592695],[-126.79022910011594,53.008322829524545],[-126.79031355732157,53.00849707209849],[-126.79040173359192,53.008671289673686],[-126.79042084875044,53.00884541424433],[-126.79036529275231,53.00902059503704],[-126.79028175109396,53.00919596331426],[-126.79021314811777,53.00937235198401],[-126.79018846095705,53.00955068749584],[-126.79018808235256,53.00973110125059],[-126.79017930052748,53.009911006521705],[-126.79015742635397,53.01009044368687],[-126.79013088232061,53.01026935631233],[-126.79010433789702,53.01044825994961],[-126.79008153722793,53.01062770324646],[-126.79006807009908,53.01080708399545],[-126.79006676506195,53.010987503818434],[-126.79007943242968,53.01116670945841],[-126.79014616339433,53.0113416354018],[-126.79022220779115,53.011515369363636],[-126.79029917890205,53.01168910601769],[-126.79037057553637,53.01186343576414],[-126.79043637826553,53.012038923507326],[-126.79050312240963,53.01221440488963],[-126.79057079747258,53.012389315215295],[-126.79063845832496,53.012564234547526],[-126.79070613450224,53.01273914475945],[-126.79077288086047,53.012914625916714],[-126.79083682003274,53.01309012584371],[-126.79089797743141,53.0132662091389],[-126.79095447548238,53.01344231466819],[-126.79100632038734,53.013619580889376],[-126.79105256492512,53.013796875667595],[-126.7910913633373,53.01397534988134],[-126.79111150349088,53.01415450500975],[-126.79111671895333,53.01433431601929],[-126.79111165915899,53.01451420489148],[-126.79110286990769,53.014693553993546],[-126.79109407599518,53.01487345890608],[-126.79109088739375,53.0150527704056],[-126.79109983692751,53.015232565241725],[-126.79111625416449,53.01541230100888],[-126.79113826206071,53.01559144345951],[-126.7911425370297,53.0157712695901],[-126.79114401887743,53.01595110547095],[-126.79114644186261,53.016130943985],[-126.79115630736824,53.016310167798814],[-126.79119977295207,53.01648804566421],[-126.79125440511699,53.01666472803123],[-126.79123439308626,53.01684303163551],[-126.79119197207015,53.017022041321866],[-126.79116917246697,53.01720148413344],[-126.79115665934906,53.01738142269283],[-126.79114039693583,53.01756137741239],[-126.7911073042988,53.0177392128245],[-126.79104528520377,53.017918353786264],[-126.79092601018645,53.0180816349482],[-126.7907192659551,53.01821020912805],[-126.79048904336078,53.01833108737139],[-126.79032647824648,53.01847617317987],[-126.7902194361655,53.01864440962744],[-126.79014524181667,53.018821399389054],[-126.79009252144218,53.01899880105534],[-126.79008467388824,53.019179263825976],[-126.79011508430439,53.01935890557534],[-126.79017161855869,53.019536695960056],[-126.79026536654807,53.0197080784145],[-126.79040739447319,53.0198640052659],[-126.7905819137883,53.02001018495637],[-126.79076386138512,53.02015408243614],[-126.7909531952508,53.0202934389053],[-126.79118866716581,53.02040336005404],[-126.79144253012221,53.02049802531489],[-126.79169912485833,53.02058931001977],[-126.7919456466771,53.02069074682661],[-126.79216269171737,53.020813671690405],[-126.79234647333594,53.02095530432176],[-126.79250616037281,53.02110662776569],[-126.7926519565176,53.02126364711848],[-126.7927596671578,53.021431572016105],[-126.7928757213023,53.02159663484913],[-126.79299458465825,53.02176167867508],[-126.7931143794801,53.02192615134766],[-126.79323601715502,53.022090055700744],[-126.79336510839411,53.022252233438614],[-126.79353870660312,53.02239841487852],[-126.79370491487612,53.02254801641678],[-126.79393118517764,53.02266415257382],[-126.79418228033138,53.022759951130155],[-126.79442143539868,53.02286591458408],[-126.79459049437916,53.02301829258504],[-126.79471509602273,53.02319001931372],[-126.79486651977248,53.02334755372898],[-126.79502714056075,53.023498311581015],[-126.79521459405744,53.02363543268672],[-126.79543531430274,53.02375384447728],[-126.79568006963689,53.02385921182171],[-126.79593130613034,53.02396116429709],[-126.79617140910358,53.02406768257031],[-126.79637923099459,53.024195144105015],[-126.79647583321328,53.02436705792347],[-126.79648102019617,53.02454407105708],[-126.79646571874586,53.02472401939925],[-126.79644109093366,53.02490459543906],[-126.79641553669542,53.02508517770682],[-126.79639462221216,53.0252646080724],[-126.79636997277626,53.02544406362468],[-126.79634810633657,53.02562294457098],[-126.79633747991349,53.0258028612216],[-126.79634363474642,53.025982108790664],[-126.79635356041761,53.026162451446176],[-126.79634669598194,53.02634459272575],[-126.79633147734393,53.02652902251952],[-126.79632277066979,53.0267117319874],[-126.79633639537876,53.02689092904574],[-126.79638631707678,53.02706315775806],[-126.79648556642177,53.02722608900771],[-126.79662855816515,53.02738144570259],[-126.79679946847686,53.02753156669794],[-126.79697968580582,53.027679939259215],[-126.79715524939066,53.02782947250256],[-126.79730851373068,53.02798419418551],[-126.7974032291831,53.028154434380376],[-126.79743742261304,53.02833461274143],[-126.79745293500842,53.02851379677811],[-126.79746003617728,53.02869303764289],[-126.79746248212852,53.02887343050675],[-126.79746212381598,53.02905328650895],[-126.7974617653321,53.02923313352897],[-126.79745767188918,53.029413014736996],[-126.79744610796291,53.0295929374493],[-126.79742239128235,53.02977183068056],[-126.79738090366102,53.029949714459946],[-126.79732725842955,53.030127124561034],[-126.79726801445345,53.030304016650426],[-126.7973198536216,53.0304784728288],[-126.79730913101795,53.03065390750873],[-126.79712688679977,53.03079632857985],[-126.79692015192444,53.030927709215135],[-126.79677357948934,53.031079973765046],[-126.79678814879428,53.031259163957145],[-126.79682791796391,53.031437063410024],[-126.796873275503,53.03161492509446],[-126.79693262736902,53.03179157168119],[-126.79687709375203,53.03196731776417],[-126.79682812054418,53.032144695846924],[-126.79681513759817,53.03234872413653],[-126.79663382125341,53.03249169377337],[-126.79655301136341,53.03266480438908],[-126.7964909305665,53.03284059437686],[-126.79648495435102,53.03301992309121],[-126.79652938575074,53.03319779099605],[-126.7965691660764,53.033376246057955],[-126.79659959323975,53.03355477319336],[-126.79663750644241,53.033733240803315],[-126.79661748360299,53.033910987913096],[-126.79651889258942,53.03408197727099],[-126.79638082082805,53.034240342142944],[-126.79620140926367,53.03438498334783],[-126.79601347894624,53.034524078965745],[-126.79582179081244,53.034662079055295],[-126.79562913906871,53.03479896475976],[-126.79532128760513,53.035018426775515],[-126.79505427324126,53.035224166214455],[-126.79487106500255,53.03536603393977],[-126.79469255941565,53.03551010182945],[-126.79452630147817,53.03566025447972],[-126.79440701551894,53.03582410204901],[-126.79435146162882,53.036000402352784],[-126.79429219689447,53.03617728337772],[-126.79421792146853,53.0363514684798],[-126.79413428964844,53.03652404013175],[-126.79402348139166,53.03669230339023],[-126.79390142318263,53.03685841006789],[-126.79385048021608,53.037031317340634],[-126.79386222989673,53.03721052616816],[-126.79389549949897,53.03739126655643],[-126.79391849289387,53.03757152025553],[-126.79389566243955,53.03774928530357],[-126.79381952508923,53.03792403828285],[-126.79374058227741,53.03809825426709],[-126.79370561657169,53.038276100831766],[-126.79369308249252,53.03845547285402],[-126.79369270796523,53.03863531887471],[-126.79369607994421,53.03881570443739],[-126.79369664705831,53.03899555305226],[-126.79370187651938,53.03917536132973],[-126.79370897419287,53.039355165988916],[-126.79371233574192,53.03953498679054],[-126.79370821486525,53.03971430210131],[-126.79369942697714,53.039894213534026],[-126.79368878575902,53.04007412844548],[-126.79367532453004,53.040253506508755],[-126.79365905364313,53.0404329034445],[-126.79363998800709,53.04061231915084],[-126.7936125130074,53.040791235587896],[-126.79357475574217,53.04097021216881],[-126.7935360462598,53.04114863932788],[-126.7935057503177,53.04132700988953],[-126.79349415601351,53.04150637524209],[-126.79350871505572,53.041685564748896],[-126.79353449344146,53.041865243562384],[-126.79355092089591,53.04204442046703],[-126.7935617544959,53.04222419075177],[-126.79356885208566,53.04240399510031],[-126.79357221328263,53.04258381558677],[-126.79356810207332,53.042763695258365],[-126.79355931735051,53.04294304157697],[-126.79354773321865,53.04312296248676],[-126.79353706521582,53.0433023214265],[-126.7935282908052,53.043482232370366],[-126.79352043238784,53.04366157238156],[-126.79351351091744,53.04384146186463],[-126.79350753113167,53.04402135396174],[-126.7935193275742,53.04420223811762],[-126.79352268887133,53.044382067380745],[-126.79346896739919,53.04455723342759],[-126.79338717405413,53.044729226483774],[-126.7932885299616,53.04490021216568],[-126.79318144354528,53.04506901338491],[-126.79307152988117,53.045236148182425],[-126.79295784311132,53.045402196622895],[-126.79284042330377,53.045567705251734],[-126.7927201717636,53.04573211221519],[-126.79259709884288,53.04589597322487],[-126.79247216124848,53.046059290813275],[-126.79234628106799,53.046222614574525],[-126.79222324726724,53.046388724915914],[-126.7920917705683,53.04655264171057],[-126.7919414007547,53.046705488628035],[-126.7917391356439,53.046830660888354],[-126.79147077346363,53.04691930704193],[-126.79119936437534,53.04699451752432],[-126.79092125577357,53.04706081688824],[-126.79065463340064,53.04714271727988],[-126.79039388048875,53.04723803322624],[-126.79017832715408,53.04735320682236],[-126.79014996445645,53.04753604498117],[-126.79016736318898,53.04771745626713],[-126.78993347865365,53.04790166984632],[-126.78992935151088,53.04808154883534],[-126.78992148737913,53.04826144384696],[-126.78989959235481,53.048440876936205],[-126.78987023845501,53.04862035990917],[-126.78985487962278,53.04879919342801],[-126.78987688899741,53.048977767935725],[-126.78993250966792,53.049155005941934],[-126.79001142662452,53.04932928217459],[-126.79006606934966,53.04950372079979],[-126.79002735819044,53.04968326632418],[-126.78998489336256,53.04986115164145],[-126.78992640325204,53.0500318651251],[-126.7897291762895,53.050178299065344],[-126.78962120405637,53.05035158443866],[-126.78960203353188,53.050526516857865],[-126.7896212891453,53.05070735073063],[-126.789672232268,53.05088461997565],[-126.78975302433007,53.05105831892636],[-126.7898625945739,53.05122230516939],[-126.79005401616907,53.05136613861556],[-126.79025089848835,53.05150208245711],[-126.79045422068361,53.05163294490641],[-126.79066598094111,53.051764871031516],[-126.79086084203215,53.05189242782634],[-126.7909834777522,53.05205520492958],[-126.7910940702514,53.05222310950304],[-126.79120279046091,53.052391582297325],[-126.79133790588233,53.052571639235104],[-126.79144067755699,53.0527216672564],[-126.7915475258768,53.05288903171233],[-126.79165158555568,53.0530575352983],[-126.79175470428052,53.05322604509193],[-126.79185876560808,53.05339454846252],[-126.79196376954955,53.05356304540741],[-126.79207340698802,53.05372982587359],[-126.79219794221972,53.05389370940341],[-126.7923224680391,53.05405703706915],[-126.79242467537796,53.054226108117355],[-126.79248869415467,53.05440216759422],[-126.79248343060598,53.05457028356489],[-126.79238311087092,53.05475303974473],[-126.79232753874832,53.054929337056926],[-126.79230472358354,53.05510877611924],[-126.79230808059833,53.05528860428004],[-126.79235064909562,53.055466483995886],[-126.79239321794975,53.05564436367808],[-126.79243579753657,53.055822799043256],[-126.7924811627303,53.056000659894124],[-126.79253305545197,53.05617735636039],[-126.79259335507338,53.056353440568785],[-126.7926685379013,53.05652661899223],[-126.79276145060199,53.05669799302761],[-126.79286090184718,53.0568687672857],[-126.79295566408675,53.05703901715315],[-126.79303644541602,53.05721159294342],[-126.79304258487683,53.05738971691265],[-126.79304129703736,53.057571252356034],[-126.79308481277761,53.05774912524657],[-126.79321118025814,53.057910198268914],[-126.79335345756338,53.058072840571576],[-126.79350941393406,53.058216897452745],[-126.79369996288585,53.05836128635058],[-126.79388490221646,53.058506277403374],[-126.79403359621237,53.05866158775846],[-126.79413861142085,53.058829526540826],[-126.7941839869648,53.05900738642859],[-126.79419390061524,53.05918716112293],[-126.79419464986502,53.05942695052775],[-126.79416901896394,53.059605852674],[-126.79416864626687,53.05978569649059],[-126.79418135608769,53.05996546126438],[-126.79416884296441,53.06014538669587],[-126.79413951560655,53.06032655468679],[-126.79416710344837,53.0605022929957],[-126.79424232540052,53.06067602561666],[-126.79433991859901,53.060847375586036],[-126.79445520162702,53.061014680099866],[-126.79458904930262,53.06117513636995],[-126.79475731350469,53.06132639658125],[-126.7949376462192,53.06147364895532],[-126.79510028054206,53.0616243907829],[-126.79521545311924,53.06178552784208],[-126.7952719812723,53.061958829823325],[-126.79529033483921,53.06214023259763],[-126.79529095706268,53.0623234400496],[-126.7952924791134,53.06250439139223],[-126.79528182856468,53.0626837483768],[-126.79526182838177,53.062863733054165],[-126.79524649753006,53.06304312151573],[-126.79527601318337,53.06322164319986],[-126.79542381232557,53.063377522302275],[-126.79549718167362,53.063552395879945],[-126.79550802900943,53.0637321637481],[-126.79541588813042,53.0639025494966],[-126.79530407598051,53.06407026181834],[-126.79523710628528,53.06423767205395],[-126.79518361266172,53.064425161061706],[-126.79511668391974,53.06459481197505],[-126.79508344513847,53.06476591233044],[-126.79519316594407,53.064934938564356],[-126.79529731163792,53.0651056785453],[-126.7952641422258,53.06528126056078],[-126.79520486156608,53.06545926839591],[-126.79521389157118,53.06564185413489],[-126.7952825669505,53.06581507396698],[-126.79542761633965,53.06597376825451],[-126.7956255213515,53.066110260418526],[-126.79590850033804,53.06619687559241],[-126.79617082039631,53.0662791472435],[-126.79619991128534,53.06643470487538],[-126.79610911922752,53.066626927646496],[-126.79614403857094,53.066794216022075],[-126.79633541494263,53.06693075098417],[-126.79656774710877,53.06705804516237],[-126.79678599088676,53.06718207234253],[-126.79703639713233,53.06727618353836],[-126.79731524828892,53.06734153313992],[-126.7975620447082,53.06744239974196],[-126.79781711983439,53.06753647776104],[-126.79807768188124,53.06762323919064],[-126.79829589082024,53.067745022765095],[-126.79850860317174,53.0678718899666],[-126.79875081971748,53.06797782296136],[-126.79899206812115,53.06808152095085],[-126.79915197731651,53.06823395164232],[-126.79925889511505,53.06840130762148],[-126.79934534220713,53.068574404690196],[-126.79942246896508,53.06874812055247],[-126.7994370941409,53.06892899156672],[-126.79945256200567,53.06910536577539],[-126.79960032316878,53.06925732225215],[-126.79977042829594,53.06940520090363],[-126.79995729949681,53.06954903941497],[-126.8000008962085,53.069580683688685],[-126.80015063328788,53.06968891647577],[-126.80035038740877,53.06982259128341],[-126.8005760219535,53.06993983817753],[-126.80080720854643,53.07005480593948],[-126.80102176686725,53.07017940603754],[-126.80123262575275,53.07030683664613],[-126.80144256936578,53.0704348378347],[-126.80164974933471,53.07056453371793],[-126.8018550567403,53.07069479773172],[-126.80205668412506,53.07082733639888],[-126.80225182581682,53.070963271394945],[-126.80244602675317,53.07109922142201],[-126.8026393334205,53.07123685351545],[-126.80283263065644,53.07137392060795],[-126.80303240542763,53.07150702597505],[-126.80324236040939,53.07163502387642],[-126.80345415417064,53.07176132362118],[-126.8036696561322,53.07188591248001],[-126.80389529586724,53.07200315299611],[-126.8041310988311,53.07211360072157],[-126.80438451098772,53.072215528578475],[-126.80461103290708,53.07232940013819],[-126.80474392747077,53.07248536873753],[-126.80483141123706,53.072661816115186],[-126.80490859985886,53.0728372130433],[-126.80499225032553,53.07300863953986],[-126.80516700668677,53.07315311704905],[-126.8053501482036,53.07329641659753],[-126.80547391814868,53.07346309603545],[-126.80557727957247,53.07363886977812],[-126.80570561132313,53.073799915204646],[-126.80590153979055,53.07392631874427],[-126.80613169678504,53.074033995182276],[-126.8063794164925,53.074131475497076],[-126.80663826280087,53.074223267712114],[-126.80690359293635,53.07431221823499],[-126.80716985147617,53.074401161820916],[-126.80742963918135,53.07449351062354],[-126.80768112918659,53.07459151823133],[-126.80792893030606,53.0746929121191],[-126.8081712136861,53.07479826956795],[-126.80840333613429,53.07491041025989],[-126.80860959562148,53.07503897966946],[-126.8087964640992,53.07518057203384],[-126.80900276882396,53.07531138149872],[-126.80919515649838,53.075447323828705],[-126.80932725724007,53.07560889524791],[-126.80945841670993,53.07577047296143],[-126.80964156698872,53.07591208944996],[-126.80987094108366,53.076027051891195],[-126.81013251786963,53.07611433565362],[-126.81038491903915,53.07621065496584],[-126.8106198455711,53.07632165154136],[-126.81083907754694,53.0764434048665],[-126.81107765597542,53.07655045810566],[-126.81133923864294,53.07663774813291],[-126.81159070752106,53.07673350653802],[-126.8118164163714,53.07685185197599],[-126.81204030387215,53.0769718858114],[-126.81222530120503,53.0771123650681],[-126.8123555811058,53.07727562188884],[-126.81241502922188,53.07745057993317],[-126.81243906102453,53.07763137517796],[-126.81243034886246,53.07781071928802],[-126.8123860653406,53.0779886316972],[-126.81233805682514,53.07816656071977],[-126.8123125017608,53.07834602058029],[-126.81229819057054,53.07852596784725],[-126.81228199440163,53.07870591908991],[-126.81225362019649,53.07888427773701],[-126.81220371908714,53.0790611080547],[-126.81213975468526,53.07923634974103],[-126.8120682892695,53.07941052240841],[-126.81199121396686,53.07958473356965],[-126.8119131848564,53.07975838646956],[-126.81183705065483,53.07993259101909],[-126.81176652104547,53.08010732173167],[-126.8117016258402,53.08028256944855],[-126.81163766815563,53.08045836644779],[-126.81157559055816,53.080634715219745],[-126.81151725208628,53.08081103825354],[-126.81146359102455,53.08098789385458],[-126.81141556461421,53.081165266490494],[-126.8113768826955,53.08134313069028],[-126.81134757547362,53.08152149522061],[-126.81132762377787,53.08170091600018],[-126.81131517714559,53.08188084996232],[-126.81130552757077,53.08206075573214],[-126.81129867543194,53.08224065123643],[-126.81128996813078,53.0824205504965],[-126.8112803076969,53.082599900502515],[-126.81127345536403,53.082779795949946],[-126.81126661776086,53.08295968231287],[-126.81126350515898,53.08313955204292],[-126.81126132417543,53.08331885061402],[-126.8112628936816,53.08349867919317],[-126.81127008384404,53.08367903390289],[-126.81129221227904,53.083858165497006],[-126.81133956082031,53.08403544758458],[-126.81141210384375,53.08421030660676],[-126.81150419981529,53.08438111393184],[-126.81160562934339,53.084550180759436],[-126.81171077389932,53.08471865722389],[-126.81181778280553,53.08488600025316],[-126.81192759008776,53.08505332394529],[-126.81204018496744,53.08522006362425],[-126.81215371258217,53.085386240996236],[-126.81227654831895,53.08555011321689],[-126.81241334273066,53.08570997198258],[-126.81255756028476,53.085867529527256],[-126.81271107988532,53.0860216703085],[-126.81287480318969,53.08617181438159],[-126.81305247038634,53.086317935968744],[-126.81325418554871,53.0864493339636],[-126.8134983827669,53.086553537674625],[-126.81376459646155,53.08663462306181],[-126.81404448521296,53.08669768530726],[-126.8143262018536,53.08675849325403],[-126.8146088146699,53.086817618055086],[-126.81489141085719,53.08687505703508],[-126.81517310835511,53.086934742584305],[-126.81545206933994,53.08699836369193],[-126.81572648201455,53.0870681828911],[-126.81599911172262,53.08714249585292],[-126.81626898784226,53.08721906825335],[-126.81653704458452,53.08729901417603],[-126.81680327964342,53.08738065735014],[-126.8170667569556,53.0874651158173],[-126.81732931437108,53.0875507005841],[-126.81758825556399,53.087641912396485],[-126.81783981044333,53.08773877737257],[-126.81808033356084,53.08784468236021],[-126.8183088890976,53.08796075442729],[-126.81852175846494,53.088088139921766],[-126.81871333531497,53.08822631302879],[-126.81888171724236,53.08837361969822],[-126.81903711319153,53.0885271745163],[-126.819186958015,53.08868300864964],[-126.81933959080796,53.08883825851291],[-126.8195024167941,53.08898896436378],[-126.81967731008913,53.089134539454896],[-126.8198587034996,53.08927726340166],[-126.82004287445525,53.089418856235284],[-126.82022981187403,53.089558744313884],[-126.82041770386274,53.089699181244654],[-126.82060281017925,53.089840201961216],[-126.82078604347195,53.08998180013702],[-126.82096466403546,53.090126226890256],[-126.82113680162325,53.09027349523733],[-126.82129407217884,53.09042647822241],[-126.82143091613759,53.09058631714063],[-126.82155752159095,53.090749032856486],[-126.82167947752745,53.0909134660198],[-126.82179866896684,53.09107959457074],[-126.82191414249995,53.091246869370984],[-126.82202868928262,53.09141415049558],[-126.82214230511549,53.09158199375378],[-126.82225683874101,53.09174927472941],[-126.8223732585398,53.09191654245847],[-126.82249150209931,53.09208212107359],[-126.8226144079595,53.09224653762361],[-126.82274195477443,53.092408689653055],[-126.8228750549529,53.09256855286602],[-126.82301466649962,53.092726138501014],[-126.82316263771688,53.09288029521467],[-126.82331988174184,53.09303103454326],[-126.82348549651633,53.093178909549984],[-126.82365576311906,53.09332506663894],[-126.8238325371639,53.093469501818916],[-126.824013031404,53.093612790273106],[-126.82419909447307,53.09375379857411],[-126.82438887778513,53.093893660109615],[-126.82458238136154,53.09403237486218],[-126.82477958343048,53.09416882244789],[-126.82497956310657,53.094304129795155],[-126.82518233536356,53.09443829678565],[-126.82538788939439,53.09457076770394],[-126.82559526736627,53.0947015402632],[-126.82580452101818,53.09483173461026],[-126.82601558795517,53.09495968384115],[-126.82622666012642,53.09508706791732],[-126.8264386284669,53.0952127600908],[-126.8266514931339,53.09533676932008],[-126.82687357337991,53.095452870065955],[-126.82712697885151,53.095545220295364],[-126.82739975964608,53.095623432352106],[-126.82767899708,53.0956965517538],[-126.82795085884882,53.095775880535484],[-126.8282033846071,53.095870475667965],[-126.82844032632495,53.095980866750196],[-126.82866437984961,53.096102552901726],[-126.82887271814774,53.09623331298631],[-126.82906062469861,53.09637150387719],[-126.82920865252848,53.096526773065015],[-126.82932608447194,53.09669626770794],[-126.82944905230097,53.09686180604511],[-126.82961556543003,53.097006304538716],[-126.82983952201923,53.09712182180823],[-126.83009218073498,53.09722257931089],[-126.83033931661095,53.097327848181365],[-126.83054943797124,53.0974535549268],[-126.83072999382088,53.097597953160914],[-126.83088735900134,53.09775259880397],[-126.8310242518757,53.097911870247664],[-126.83113697795791,53.09807971086734],[-126.83122360869005,53.09825166118937],[-126.83124394754246,53.09843024501256],[-126.83126430835677,53.09860994021312],[-126.83135559882798,53.09878130184913],[-126.83146371449648,53.09895198030169],[-126.83160521655354,53.09910785703379],[-126.83185872012233,53.09920355801073],[-126.83207345121555,53.09932473853828],[-126.83224657075165,53.099470872002],[-126.83241230780511,53.09962209504132],[-126.83258822804035,53.09976819930808],[-126.8327826731336,53.0999040971098],[-126.83292393339497,53.10000002186413],[-126.83298081272602,53.10003828329732],[-126.83318082810906,53.1001718911888],[-126.83338453818844,53.10030379639833],[-126.83359011315164,53.100434567587996],[-126.83379845496479,53.10056364261],[-126.83400864652108,53.10069157473272],[-126.83422159399274,53.100817254963594],[-126.83444290203633,53.10093950527745],[-126.83468177015176,53.10105043498445],[-126.83493798438465,53.10113994292437],[-126.83521984901633,53.10120182091696],[-126.83551707814833,53.10123669726316],[-126.83581160172572,53.101228456630736],[-126.8361070859752,53.101174823103776],[-126.83639101459234,53.10119858618379],[-126.83667108831798,53.101264390726996],[-126.83694217435442,53.101348751241375],[-126.83730536854752,53.101549557061446],[-126.83749768714881,53.10171906870053],[-126.83760460441911,53.101875183270195],[-126.83765587985815,53.102055222888104],[-126.83772572666793,53.102228972497805],[-126.83790248603391,53.102368339807654],[-126.83808490334509,53.102509916728636],[-126.83821905811126,53.10267087541483],[-126.83834579740497,53.10283525704428],[-126.83846228896273,53.103001387511135],[-126.83856571520045,53.10316985157262],[-126.8386355492079,53.10334191541155],[-126.83863540908287,53.103523995557644],[-126.83865019138405,53.10370373774887],[-126.83866964322526,53.103883437826724],[-126.83864887987389,53.104063432172275],[-126.83860662009329,53.10424413477535],[-126.8386381403818,53.10441871135451],[-126.83875191233042,53.104589342776755],[-126.83892127913228,53.10473268720564],[-126.83917753574856,53.10482275042934],[-126.83931722588802,53.10497918638896],[-126.83943376772962,53.105148121175596],[-126.83953724022084,53.10531770443259],[-126.83963696777832,53.105487869963405],[-126.83972832909845,53.10566034482123],[-126.839802874938,53.105834050608266],[-126.83984289456521,53.106011927911524],[-126.83982601019518,53.10619861779619],[-126.8398628722191,53.10635914505766],[-126.8401754078391,53.106361406244986],[-126.84047484691936,53.1063637597211],[-126.84077172777772,53.10637902101781],[-126.8410702500553,53.10638193528206],[-126.84136951143104,53.106375323651086],[-126.84166785200556,53.106369838331325],[-126.84196637445807,53.106372759295475],[-126.84226419869177,53.1063880011652],[-126.84256168928408,53.10638644592507],[-126.84285518542106,53.10641964537358],[-126.84314693764347,53.10645846806652],[-126.84343947340025,53.106489996631325],[-126.84373862366888,53.106477777230644],[-126.84403628205725,53.10648461645752],[-126.8443235739394,53.10653466427619],[-126.84460543242027,53.10659372329492],[-126.84488093667079,53.106662902719506],[-126.84515097813055,53.106738852608046],[-126.84543012566584,53.10680296688321],[-126.84568365437063,53.10689527662288],[-126.84594267031349,53.106981943986646],[-126.8461436873104,53.107115522776034],[-126.84641637629404,53.10718360724519],[-126.84666526925145,53.107278189110666],[-126.84688560698237,53.10739482056014],[-126.84708940569699,53.10752726626828],[-126.8473548311856,53.1072317894244],[-126.84747823832522,53.10703985267551],[-126.84767626981252,53.10693030770135],[-126.84789954347306,53.10691301927671],[-126.84827300809773,53.106967486227866],[-126.84859022127019,53.107016188500204],[-126.84886307939064,53.10699910705094],[-126.84916019230708,53.10697848023855],[-126.84945826669876,53.106959531022156],[-126.8497559182518,53.10696580015073],[-126.85005043440005,53.10700233600599],[-126.85031163802324,53.10710354481928],[-126.85052991927748,53.10721122919345],[-126.85078899566646,53.10729956186356],[-126.85107700428385,53.10733839200459],[-126.85135884367352,53.107395749884596],[-126.85164792015446,53.10744072929899],[-126.85194396328714,53.107459885967266],[-126.85227560849378,53.10743452041688],[-126.85253208305467,53.10748702054261],[-126.85283145178413,53.107485417004646],[-126.85313077557369,53.10748158096713],[-126.85342771752482,53.10749848641005],[-126.85372461080793,53.107513706205715],[-126.85401643685168,53.10755529844801],[-126.8542654280638,53.10765379000532],[-126.85451074601686,53.10775566017333],[-126.85475607653534,53.10785809448363],[-126.85499953723459,53.1079605418108],[-126.85518112653249,53.10810377476401],[-126.8553987685928,53.108224901015916],[-126.85564516004602,53.10833292838674],[-126.85570090171531,53.108359973056416],[-126.85573816315255,53.108397800844536],[-126.85580336197238,53.108429823807796],[-126.85594889426473,53.10845454203075],[-126.85613876926732,53.108544493552046],[-126.8564250933901,53.1085452164655],[-126.8567231225848,53.10852288778778],[-126.85702161219332,53.10852408583238],[-126.8573201282076,53.108525847671466],[-126.85761422967083,53.10849513688133],[-126.85790235854324,53.10844598468061],[-126.85819655192803,53.10846570391523],[-126.85847023092767,53.108535429835676],[-126.85875749709028,53.10858264612419],[-126.85904482056637,53.10863265810777],[-126.85932474016583,53.10868664950021],[-126.85958571511857,53.10877495818102],[-126.85986179189896,53.10882392944984],[-126.86015672762244,53.108880050694964],[-126.86045116377937,53.108911523506634],[-126.86074468011698,53.108944122800075],[-126.86103993508202,53.10896942983635],[-126.86133523225632,53.10899753263654],[-126.86163223364566,53.10901665815657],[-126.86192394891496,53.10905262920575],[-126.86221995088009,53.109068954769036],[-126.8625192622015,53.10906397461517],[-126.86281774794567,53.10906403756703],[-126.86311597908862,53.10905233172647],[-126.86340748648898,53.10903171907567],[-126.863701560848,53.10904525820313],[-126.86398147298178,53.10905217700611],[-126.86430451862252,53.10906438238835],[-126.86459091495192,53.10906844657204],[-126.86489128540256,53.10902366986057],[-126.86517154801429,53.10895607343629],[-126.86540702062969,53.10884902141099],[-126.86552902875268,53.1086839680736],[-126.86569198788915,53.108554480215446],[-126.86591791874663,53.10843853286066],[-126.86617256601349,53.108354304906776],[-126.86640411907165,53.10823888013949],[-126.86662341363102,53.108118497957435],[-126.8667803303199,53.107968318763405],[-126.86704235400553,53.10787899695005],[-126.86730271190532,53.10779977142086],[-126.86760560929493,53.10774152294571],[-126.86800725404673,53.10761699391248],[-126.86806600121969,53.10742495401868],[-126.86803867428266,53.10732375230077],[-126.86807078122428,53.10715543885834],[-126.8681204709676,53.106978032125475],[-126.86813272176397,53.10679921503873],[-126.8681655723564,53.10662193190776],[-126.86815627687673,53.1064421614616],[-126.86812641267342,53.106263097827906],[-126.86806481194697,53.106087628780585],[-126.86803963313872,53.10590853068747],[-126.86804436244886,53.10572864821451],[-126.86805474249446,53.105549853711004],[-126.8680678981726,53.105369909322114],[-126.86807263886571,53.10519059145004],[-126.86805120229826,53.10501146579108],[-126.86809246683224,53.104833564929166],[-126.86811126919869,53.104655264253125],[-126.86807767612981,53.10447678359959],[-126.86798529362903,53.104306022481595],[-126.86785196358491,53.10414509081728],[-126.86770468742492,53.10398873448446],[-126.86752492929651,53.10384550681672],[-126.86740569482859,53.103687832740555],[-126.86728956135829,53.10354413780295],[-126.8669961344425,53.10342358893404],[-126.86674990655115,53.10332287158264],[-126.86697859379066,53.1032063366792],[-126.86715625660608,53.10306441264526],[-126.86735555068347,53.10292848797988],[-126.86754544376451,53.10279039091625],[-126.86775895340978,53.10266388113937],[-126.86797058323062,53.10253627320554],[-126.8681548257795,53.10239653133374],[-126.86831825958582,53.10224574577306],[-126.86846659997249,53.102088903514364],[-126.86862420111278,53.101927510907664],[-126.86870308120022,53.101759408777724],[-126.86880062211996,53.10158893733438],[-126.86894050977257,53.10143103600107],[-126.86913219278489,53.10128956146005],[-126.86931708184709,53.10113581081366],[-126.86942702342763,53.10097756433879],[-126.86956691029766,53.10081910640439],[-126.86970206579429,53.10065843308762],[-126.86983439537639,53.10049722461166],[-126.869962031786,53.10033492998624],[-126.87009061002927,53.10017262826766],[-126.87022765531025,53.10001306983674],[-126.87023954249113,53.10000009181978],[-126.87036471096779,53.09985406692793],[-126.87045566293287,53.099682512886496],[-126.87052411277418,53.099507771883346],[-126.87056160874293,53.09932933250313],[-126.87059442038586,53.0991509275951],[-126.87062536451892,53.09897197167051],[-126.8706562936101,53.09879302479269],[-126.87069004721565,53.09861461285898],[-126.8707247317127,53.09843562929342],[-126.87075848474574,53.09825721730413],[-126.87078848495409,53.098078277154805],[-126.87080912053263,53.097898841232244],[-126.87083163789801,53.0977199472014],[-126.87086913099152,53.097541507542985],[-126.87092255042285,53.0973646357613],[-126.87099380431839,53.09719042933214],[-126.87107912842048,53.097017795441715],[-126.87114935787793,53.09683967907046],[-126.87122818404946,53.09666989871974],[-126.87141764504369,53.096512748902065],[-126.87160644163694,53.09636848521699],[-126.87174832191695,53.09621785309298],[-126.87192211780602,53.09607202320255],[-126.87215147560292,53.095944831960054],[-126.87233629239839,53.0957899558806],[-126.87248225821281,53.0956555357823],[-126.87266536349982,53.095508515463365],[-126.87289592387377,53.09539419538725],[-126.8731226812055,53.09527767085293],[-126.87334468782764,53.09515725464902],[-126.87356384886344,53.09503461799109],[-126.87379815321002,53.094921388939284],[-126.87397602396193,53.0947923336052],[-126.87414473018471,53.09462748890863],[-126.87431178424957,53.0944733056596],[-126.87438594445106,53.0943052336777],[-126.87454141577635,53.09413376310135],[-126.87467111650508,53.09398265253044],[-126.87478460201133,53.0938159744411],[-126.87487835947654,53.093645524906265],[-126.87496177530917,53.09347290182351],[-126.87503958290316,53.09329976440476],[-126.87511359962078,53.09312497867531],[-126.87520111596972,53.092969132917254],[-126.87525042403301,53.09277548106689],[-126.87531226605172,53.09259965582599],[-126.87537784836826,53.09242381178903],[-126.8754528277419,53.09225013017216],[-126.87553813540987,53.09207805723948],[-126.87563093171771,53.09190704926319],[-126.8757340329726,53.091736529571925],[-126.8758221710146,53.09156611170447],[-126.87588496317697,53.091390843717285],[-126.87593273149844,53.091213445981495],[-126.8759730102331,53.091034983195456],[-126.87599924284217,53.09085606871885],[-126.87603296765204,53.090677654456634],[-126.87607511220226,53.09049973352524],[-126.87613411500556,53.09032225231337],[-126.87616223985411,53.09014444422028],[-126.87613889155723,53.089965332480354],[-126.87609218496566,53.089786949685426],[-126.87600727476746,53.0896150174829],[-126.87592048011516,53.08944309917654],[-126.87581600807484,53.08927523815841],[-126.87579172245508,53.08909556847559],[-126.87577773057563,53.088915831442456],[-126.87576280773501,53.088736657073426],[-126.87572078361379,53.088558804072036],[-126.87561896511082,53.08838307046798],[-126.8756180847302,53.088204912503265],[-126.87563586276607,53.088023819405926],[-126.87570424582569,53.087848509696656],[-126.8758271539265,53.08768624216747],[-126.87598386985687,53.087531567579305],[-126.8761960953238,53.08739272438068],[-126.8763530438166,53.08724869707237],[-126.87656266247483,53.087119957298505],[-126.8767590655243,53.08698460096749],[-126.87694127198823,53.086841496963466],[-126.87713766907268,53.086706695791634],[-126.87734921422548,53.086580190273615],[-126.87754851408677,53.086449848957834],[-126.87780157675057,53.08634207433031],[-126.87798957278781,53.086207898828285],[-126.87810678770713,53.08604230938132],[-126.87821831858865,53.085873956228376],[-126.87836941250457,53.08571876420498],[-126.87851379016298,53.085555769204376],[-126.87866298614347,53.08544484747597],[-126.8790073231159,53.08536441363937],[-126.87933758133575,53.08532665489442],[-126.87961112208258,53.08530501392052],[-126.87987661624136,53.085390994542855],[-126.88015412295024,53.08546960609931],[-126.88045734521761,53.08557100081379],[-126.88072694909799,53.08553985758177],[-126.88099741352566,53.085459403808564],[-126.8812071256362,53.08533625746858],[-126.88146646818323,53.08517072492367],[-126.88169166567683,53.08511750004938],[-126.88196977695034,53.085045951211285],[-126.88213511039406,53.084992051796725],[-126.88219282224317,53.08493391783956],[-126.88240461811557,53.08477601715014],[-126.8826303085899,53.084702061352665],[-126.88290081071062,53.08462384390612],[-126.8831617486624,53.084536168289006],[-126.88342461731371,53.08445072768207],[-126.88369513632952,53.08437418457766],[-126.88395558411595,53.08426242380452],[-126.8840574856506,53.08421628415762],[-126.88413835026142,53.0841478821676],[-126.88439634530852,53.084053511531046],[-126.88464028364845,53.083958116067855],[-126.88482248567274,53.08381668468809],[-126.88498289771161,53.083661414006016],[-126.88524506027609,53.08358773567614],[-126.88553866447893,53.08354239029291],[-126.88582757753171,53.08349596777482],[-126.8862844511864,53.08334294529921],[-126.88653127322583,53.08329571624215],[-126.8868438671656,53.08312977186016],[-126.88706551817074,53.08308664800377],[-126.88732783916817,53.082976541848275],[-126.88758673293526,53.08297011501088],[-126.88789258185997,53.082973984322116],[-126.88818054438529,53.08301607660879],[-126.88847921104147,53.082989179140235],[-126.88873737719217,53.082903761849614],[-126.88896964552056,53.08278771958652],[-126.8892768138236,53.0827204167584],[-126.88953215394915,53.082722976692885],[-126.8898541964592,53.08274072122935],[-126.89015019012446,53.08276481963001],[-126.89044014971002,53.08281362356515],[-126.89071862253296,53.08275997969753],[-126.89104555532772,53.082699246465616],[-126.89128759246456,53.082602730834545],[-126.89154431404596,53.08244896539714],[-126.89174048525388,53.08243964111409],[-126.89203804143618,53.082449155989444],[-126.89233411690023,53.082477174665804],[-126.89262930938249,53.08250800510214],[-126.89292363371,53.082541638229216],[-126.89321346816506,53.08258370412756],[-126.89349517639562,53.08263984198857],[-126.89376513693773,53.08271568195971],[-126.89425189764414,53.08287279142712],[-126.89437655165978,53.082709369749594],[-126.89446048085622,53.082653827967285],[-126.89462828530827,53.08262959085976],[-126.89492719644157,53.08265925791108],[-126.89521249358616,53.08270808549039],[-126.89550821434764,53.08267446928737],[-126.89561139355605,53.082645673697584],[-126.89573403220561,53.08256350039824],[-126.89591236878147,53.08241816338224],[-126.89610207704848,53.082280018847015],[-126.89632293695735,53.08215620466403],[-126.89656760243798,53.082052379107026],[-126.89684119089986,53.08198979343885],[-126.8971369171167,53.08195672884393],[-126.89743653372686,53.081931486695325],[-126.89773250815749,53.08191018886689],[-126.8980294689399,53.08189167966471],[-126.89832134418347,53.08185416816754],[-126.8986092566407,53.081805471721175],[-126.89890707270322,53.08178360114203],[-126.89918824209884,53.08172599025763],[-126.89945466993672,53.08163431893136],[-126.89971829263632,53.081587489971746],[-126.90001864505686,53.08159640763782],[-126.90031064430475,53.08165301565244],[-126.90058247156355,53.08172769640396],[-126.9008606345566,53.081792808110734],[-126.90114690774895,53.0818438550305],[-126.90143410002808,53.08189376474287],[-126.90171862679709,53.08194986156083],[-126.9019951005638,53.082067648914304],[-126.90223963448493,53.0821341346807],[-126.90239347817845,53.082288714844715],[-126.90245312219078,53.08232356077212],[-126.9026331435519,53.08238997374538],[-126.9029194824388,53.08244381276731],[-126.90324377125634,53.082522577613126],[-126.90361395746989,53.08256176265835],[-126.90371756767887,53.08264052854573],[-126.90382869002407,53.082677221084055],[-126.90408466452605,53.08275370039987],[-126.90425827476808,53.08291428537923],[-126.90443808917945,53.08305914400256],[-126.9046215876921,53.083200603555866],[-126.90480416908997,53.08334319935026],[-126.90495804731788,53.083499452237234],[-126.90518568639028,53.08360584501823],[-126.90544122878114,53.08370585607212],[-126.90567752845583,53.08382394272927],[-126.90586530701816,53.08394688310647],[-126.9061534168182,53.084038799143464],[-126.9063702250509,53.08416319240032],[-126.90660714601424,53.08426670541909],[-126.90687188085838,53.08435824329125],[-126.9071191561575,53.084464472681475],[-126.90732559336408,53.08458502641033],[-126.90745116035835,53.08472861172741],[-126.90766670558084,53.08488103477621],[-126.90784744636979,53.08502419579313],[-126.9080365238558,53.085163930841816],[-126.90825238898874,53.085287772112096],[-126.90852146505951,53.08536357641802],[-126.90880242853862,53.085426406955044],[-126.90907518652342,53.08549938482052],[-126.90933060536389,53.085592665224404],[-126.90955201439148,53.08571309984971],[-126.90977629735285,53.085836317763956],[-126.90998905284421,53.08585876649322],[-126.91023781904481,53.08577225402364],[-126.91054175663471,53.08568530689197],[-126.91080579347984,53.085613242539615],[-126.911081446437,53.08555957244698],[-126.91123910401276,53.08558524960484],[-126.91133092657272,53.08559350572246],[-126.91141466376361,53.085617511701784],[-126.91154329604917,53.08564117126846],[-126.91179152114793,53.08570368255358],[-126.91189853007003,53.08576617172255],[-126.91208126069279,53.08578324571536],[-126.9121997095294,53.0857688848123],[-126.91250088922013,53.08577160609738],[-126.91279508521129,53.08575364608776],[-126.91307131424017,53.08568371457475],[-126.91335240589403,53.085622153353796],[-126.91364518745851,53.085582356087514],[-126.91397097845442,53.08555518448806],[-126.91421066242104,53.085481615556475],[-126.9143927240577,53.08533789800448],[-126.9145824093455,53.08520084438515],[-126.91480613961588,53.08508145550801],[-126.91502034957247,53.08495429612998],[-126.91508720593438,53.08488934272864],[-126.91514022589227,53.08478920388105],[-126.91507655220242,53.08452524923385],[-126.9151391447696,53.084349404133775],[-126.91519143528203,53.08417250927361],[-126.91520710020605,53.08398806325544],[-126.9152435003776,53.083811856173384],[-126.91543988535531,53.08368202812679],[-126.91571701497102,53.08361097165179],[-126.91601277120064,53.08358010066849],[-126.91625456310193,53.083474580069435],[-126.91649100745524,53.083381982201175],[-126.91667725027821,53.08321581753596],[-126.91685643308395,53.08306987711242],[-126.91712054496513,53.08304541634799],[-126.91740855012424,53.08300227601632],[-126.91774695967493,53.082954270240975],[-126.91802594771677,53.08296946668802],[-126.91825080877146,53.08290329247623],[-126.91857097591176,53.082877272222454],[-126.91886600389897,53.08285592879248],[-126.91916270240246,53.08286818793436],[-126.91945975043461,53.082897251766546],[-126.919754871067,53.08292296822833],[-126.9200500134561,53.082950360119256],[-126.92034603796571,53.082974947526786],[-126.92064290796283,53.082995045431225],[-126.9209363154388,53.08302861610793],[-126.92122622984411,53.08307286294497],[-126.92150349091357,53.08313793334704],[-126.92177081680025,53.08321876823137],[-126.92203540713585,53.083302420741475],[-126.92229541393579,53.08339059958392],[-126.92255817025624,53.083476506336304],[-126.92283003626828,53.0835505801256],[-126.92310186388633,53.08362353304979],[-126.9233655659141,53.083709439594706],[-126.92363739813372,53.083781826505245],[-126.92402221712331,53.08389031610578],[-126.92431310464598,53.08393622414096],[-126.92460380951874,53.083973724330995],[-126.92490022431389,53.083972524822975],[-126.9251979808175,53.08394778263785],[-126.92549390645969,53.08392417458535],[-126.92579089385617,53.08390672494476],[-126.92609087391989,53.08389820648842],[-126.9263858342371,53.08391606390451],[-126.92667751743933,53.0839558013884],[-126.92696570882508,53.08400620624195],[-126.92724390274925,53.08407013539196],[-126.92751941979719,53.08414024341849],[-126.92781289245765,53.08417548188871],[-126.92810909747665,53.08416531163172],[-126.92840692963476,53.084143357643974],[-126.92870472218877,53.084120291633425],[-126.92899519917019,53.08414714215346],[-126.92928247671249,53.08419866911287],[-126.92956885202095,53.08425132302117],[-126.92986052813072,53.084290487982436],[-126.93014772159869,53.08433808712212],[-126.93042509331802,53.084406497477495],[-126.93069244420131,53.08448731211726],[-126.93093051632499,53.084597491021874],[-126.93114480923035,53.08473195305354],[-126.93138520148793,53.0848202576551],[-126.93168428419763,53.084812861627356],[-126.93198259118607,53.08477016931106],[-126.93226071632974,53.084702418734544],[-126.93254645342913,53.08464133964913],[-126.93283304229486,53.08461834271505],[-126.9331141082471,53.08468504129271],[-126.93341321416182,53.08467875227598],[-126.93371193777531,53.084655101550446],[-126.9338760371295,53.084633078989185],[-126.9339806727549,53.08458574476495],[-126.93422626835927,53.08440059833124],[-126.9343934703558,53.084434568828236],[-126.9346549213476,53.084543999619555],[-126.93493170499272,53.084628091747916],[-126.9352245668499,53.084635858854476],[-126.93552810732456,53.08461832391799],[-126.9358213153165,53.08464177444785],[-126.93607877162071,53.084739463541204],[-126.93635817392466,53.08477255124726],[-126.93666072296574,53.08475278017185],[-126.93696117729566,53.08476552973119],[-126.93711816670758,53.08476035826914],[-126.93725339922457,53.08474359793936],[-126.93753417710406,53.08466965531522],[-126.93781786339002,53.084685332632795],[-126.9381016509092,53.0847475156216],[-126.9383882514756,53.08480966662681],[-126.93850735806119,53.084825528780044],[-126.93868041089004,53.084827515678384],[-126.93898105217757,53.08480607747598],[-126.93927516871501,53.08482783589981],[-126.93956689488022,53.08486865292953],[-126.93986121077444,53.08489937268695],[-126.94015381846637,53.08493738437757],[-126.94051386131721,53.08502192152327],[-126.94053373615975,53.08520160655749],[-126.94053585403773,53.08538144188938],[-126.94051646202819,53.08556088367217],[-126.94047269525745,53.08573827835996],[-126.94041020567913,53.085914136729954],[-126.94035332317706,53.086090515175414],[-126.9403217551437,53.086269497958625],[-126.94031268772335,53.086408517794275],[-126.94027933907759,53.08646536626306],[-126.94024852983833,53.08650987747436],[-126.94023045567768,53.0866226316524],[-126.94020071941645,53.086799914465075],[-126.94013187337683,53.08698479646662],[-126.94001564191066,53.08714147701043],[-126.93991184562381,53.087310384496945],[-126.93982211623342,53.08748142107286],[-126.93973896106101,53.08765408160732],[-126.93964079750579,53.087824064534146],[-126.9395322782038,53.087991332820515],[-126.93934215925796,53.08827465681335],[-126.93938017005266,53.08834439313313],[-126.93948342697294,53.08844609751078],[-126.93961363579396,53.08858233331283],[-126.93988524703006,53.08876898036982],[-126.94013570555967,53.08892946679784],[-126.94042827811121,53.08913331874406],[-126.94066553804609,53.08928887112694],[-126.94093835740607,53.08944525145849],[-126.94105417676873,53.08964883286897],[-126.94134159088226,53.08995693419051],[-126.94159777475267,53.090164434732436],[-126.94169479734684,53.090616361132504],[-126.94167817109752,53.09083667589492],[-126.94185951643739,53.090916474477545],[-126.94217695328885,53.0908489524048],[-126.94246094670036,53.09079233688602],[-126.94274596921784,53.090739638850955],[-126.94303687573262,53.09069921914304],[-126.94334063650643,53.090648055414945],[-126.94363374331785,53.09066419963638],[-126.94376614690438,53.09068835895754],[-126.94401167611646,53.09075194506025],[-126.94411359067811,53.090792590962465],[-126.9443801028365,53.090875066865095],[-126.94446973173793,53.090909643174484],[-126.94462485534413,53.09102998670439],[-126.94482515477476,53.09116228584693],[-126.94505776527663,53.091275841758815],[-126.9453077871989,53.091373570321785],[-126.94556791684455,53.091462817885215],[-126.9458012267692,53.09152370119795],[-126.94602114133549,53.091487203994745],[-126.9461220097125,53.091480793717786],[-126.94641675111714,53.09152829322104],[-126.94670761521054,53.09156966454754],[-126.94700800627828,53.09161880261972],[-126.9471400000144,53.09166592813746],[-126.94724414040341,53.09172224113331],[-126.94745282797665,53.09176931626016],[-126.94781318227746,53.09182300948203],[-126.9481021670666,53.091863836679906],[-126.94837208977502,53.091805078782635],[-126.94858809084496,53.09167728835027],[-126.94877661590468,53.09153346573648],[-126.9490061571892,53.09142572661861],[-126.9493222028999,53.09138060737283],[-126.94948933315733,53.09132604321648],[-126.94940611753786,53.09111829053708],[-126.94937405084576,53.090939261018924],[-126.94937096758441,53.09075943386836],[-126.94938842921546,53.090578885846924],[-126.94944812814508,53.09040472171108],[-126.94969096634077,53.09030640340801],[-126.94998161227977,53.09025476315879],[-126.9502523644969,53.0901915209239],[-126.95044900943188,53.090035304123255],[-126.9507060880973,53.0899469540459],[-126.95097653557546,53.089870257054685],[-126.95124985544682,53.08979690691189],[-126.95152122858781,53.08972020120003],[-126.95178780480131,53.0896384955171],[-126.95205153192276,53.0895545710835],[-126.95230856897804,53.08946397668822],[-126.95254552056322,53.08935393855623],[-126.95282066668118,53.08927888468613],[-126.95307973186156,53.08919611604502],[-126.9532663981969,53.08905397718447],[-126.95337955928059,53.08888778803381],[-126.95343075580263,53.08871032852733],[-126.9534753611297,53.088531236860725],[-126.95356032973758,53.08835910746862],[-126.95365564107023,53.088189135613284],[-126.95375470452161,53.08801969812821],[-126.95385657958667,53.08785022887588],[-126.95396127687599,53.087681866239535],[-126.95406878345942,53.08751403659562],[-126.95417817421442,53.08734619161548],[-126.9542903869155,53.087179444268],[-126.95440449399464,53.08701380203744],[-126.95452422280943,53.086848670050834],[-126.95465053896665,53.08668573475849],[-126.95478438694887,53.08652441478631],[-126.95492389197337,53.086365845809276],[-126.95507466893004,53.08620887083676],[-126.95525560223435,53.08606285733413],[-126.95548958217002,53.08598812971367],[-126.95578817217311,53.08591680538662],[-126.95605471626047,53.08583508990133],[-126.9563125992125,53.08574223840973],[-126.95654861717038,53.0856333109074],[-126.95675316537114,53.085497753521615],[-126.95694725551287,53.085354992407524],[-126.95716247246918,53.0852361471464],[-126.95742660429093,53.08517182103011],[-126.95772817858371,53.08515088330746],[-126.95803355828261,53.08513216402117],[-126.95832929426606,53.08510118714591],[-126.95862210594254,53.08506463946502],[-126.95889458057356,53.08499687172822],[-126.95915354450277,53.08491129318853],[-126.95942485951768,53.08483401342251],[-126.95971840783822,53.084788483643436],[-126.96001196613184,53.08474408256312],[-126.96029118952406,53.08468578588826],[-126.96054165258165,53.08459634693432],[-126.96075480802719,53.08446966786642],[-126.9609593243786,53.08433353845574],[-126.96118770116618,53.08421906979485],[-126.96145136318798,53.084134559471075],[-126.96172934825177,53.084062822784524],[-126.96200352676917,53.0839888753241],[-126.9622548610886,53.08389662864832],[-126.96241120948571,53.083740154218454],[-126.96241187491627,53.0835631015544],[-126.96227666120855,53.083373709031875],[-126.9621977991449,53.0831950629439],[-126.96225887090438,53.083043290963964],[-126.96253230691661,53.082936296398884],[-126.96277776760398,53.08283344661442],[-126.963036800599,53.08271031571991],[-126.9632420899077,53.08260891293583],[-126.9635206202417,53.082520914918064],[-126.96378541332956,53.08244536334603],[-126.96404989756351,53.0823569228441],[-126.96429625530506,53.08225237718119],[-126.96445314026293,53.082119436002195],[-126.96457369261405,53.08195204511139],[-126.9647131356829,53.081792352659896],[-126.96489601420988,53.081651910489896],[-126.96510343047964,53.081520787794695],[-126.96532506564373,53.081398521931646],[-126.96555913888685,53.081289035870945],[-126.96581413782313,53.081194501263596],[-126.96606912086871,53.08109997518572],[-126.96631733611079,53.080995409943796],[-126.96656640323897,53.080886919734404],[-126.96677588257353,53.080765306293166],[-126.96684124613739,53.08059725288352],[-126.96680712904272,53.08041319629105],[-126.96674884612172,53.08023550496635],[-126.9667766226237,53.08005935046898],[-126.96685399258602,53.079884475386386],[-126.96682936516703,53.07970650860131],[-126.96677198496603,53.079527689279836],[-126.96675860186289,53.079350750983934],[-126.96684699970787,53.079208837496395],[-126.96685785586966,53.0789874343442],[-126.96689219304524,53.07881234654394],[-126.96693180655126,53.07874535369376],[-126.96709628435279,53.07870030560996],[-126.96738981813701,53.07865699742989],[-126.96768999221226,53.07861756055036],[-126.96797865379149,53.078565335318025],[-126.96825771037729,53.078501973568],[-126.96853476876339,53.0784330337127],[-126.96880701873683,53.0783579650865],[-126.96906969974121,53.07827400986293],[-126.96930747473748,53.07816336503607],[-126.96954238532922,53.078050502108084],[-126.96980711191961,53.07797437231563],[-126.97009109968705,53.0779221712509],[-126.97038369789331,53.07787887219101],[-126.97068011148359,53.077838893757985],[-126.97095731547141,53.07777667027761],[-126.97123245652122,53.07770605443252],[-126.97149605804836,53.07762152138064],[-126.97176253268468,53.07754033473168],[-126.97204735271752,53.0774842045898],[-126.97233703328854,53.07743587765359],[-126.97248228551904,53.07740946492641],[-126.97260172533979,53.07735862122521],[-126.97273497009664,53.07721633372309],[-126.97267992232426,53.07697642270459],[-126.97273190796531,53.07683816591274],[-126.97288752154469,53.07669289706276],[-126.97303351622031,53.07653593686844],[-126.97333213149368,53.07638835983822],[-126.97364693197194,53.07633534036338],[-126.97390239422747,53.07630409990644],[-126.97412097078063,53.07621377342569],[-126.97451140078772,53.07619710638535],[-126.97478185363053,53.07624866175334],[-126.9750719430909,53.07630061917853],[-126.97528374513072,53.07636274256196],[-126.9754776246133,53.07637795006812],[-126.9757324419423,53.07635903712825],[-126.97587138377298,53.07630241718011],[-126.9759900307803,53.0762577351084],[-126.97607231811904,53.07617693964567],[-126.9762516029015,53.07608581327571],[-126.97639188416179,53.0760062146239],[-126.97658776165461,53.07598610165926],[-126.97680108285802,53.07595240636494],[-126.97706336055359,53.07589252389844],[-126.97732656502279,53.0757917372001],[-126.9775880019766,53.07569544676937],[-126.97786472976648,53.07561359645235],[-126.97809029466694,53.07550247874791],[-126.97830522153744,53.07537575188425],[-126.97855165887358,53.07527790712656],[-126.97882286390335,53.07520001774091],[-126.9790940050867,53.07516023629693],[-126.97942153046435,53.075132303934154],[-126.97969188557839,53.07509868623129],[-126.98000673571076,53.075089351110975],[-126.9802856398119,53.07506126392264],[-126.9805825166394,53.075042556130235],[-126.98089711995111,53.07502257086187],[-126.98113883460547,53.074963414738676],[-126.98139213182567,53.07483916929068],[-126.98161467920741,53.074719105270596],[-126.98182392936461,53.0745907426417],[-126.98202086540584,53.0744551938617],[-126.98220834924818,53.07431525004573],[-126.98238354497026,53.07416924053354],[-126.98252291927726,53.07401120252003],[-126.98262085496341,53.07383949753375],[-126.98276876420118,53.07368643519741],[-126.9829675755529,53.07355143386949],[-126.9831838206535,53.07344261582645],[-126.98340691928429,53.073306855755064],[-126.98363690258721,53.07318616103184],[-126.9837840603064,53.0730409385567],[-126.98396935084178,53.0728875632349],[-126.98405238583742,53.072719342703024],[-126.98402952095746,53.072539687164344],[-126.98400018574262,53.072362882436394],[-126.98398934774751,53.07217807963952],[-126.98394969792642,53.07200024023101],[-126.98376837196898,53.07171936841559],[-126.98398839636363,53.0716127583414],[-126.9842307870127,53.071503164535294],[-126.98449536839291,53.07142364050037],[-126.9847631073543,53.07139899721512],[-126.98510632042895,53.07140454387269],[-126.9854123990725,53.07138069989877],[-126.98568935380902,53.071350374792736],[-126.98588072481319,53.07129835213218],[-126.98608995810838,53.071170537387566],[-126.98645406894451,53.07106945192454],[-126.98673695044049,53.07109341777992],[-126.98702407929989,53.07113920297666],[-126.98731243772575,53.071197303422835],[-126.98759811585494,53.071261028409396],[-126.98787821289928,53.07132591995552],[-126.98814292283234,53.07141279508691],[-126.98840758344507,53.07149686414622],[-126.98869565698698,53.071543193202174],[-126.98899921240147,53.07153113147143],[-126.98924285644722,53.07143608412398],[-126.98943299693174,53.071291059008814],[-126.9895610018185,53.07112806034521],[-126.98963828771296,53.07095428980356],[-126.98964066755333,53.070776099819135],[-126.98963504923799,53.070575000737726],[-126.98966682888127,53.07041449343445],[-126.98965889582955,53.070234713440016],[-126.98962105404382,53.070055175071055],[-126.98958512115998,53.069877306012636],[-126.98961269153814,53.06969666371811],[-126.9896804694986,53.06951680504746],[-126.9898180647657,53.069363819592674],[-126.99005559003827,53.06924753082965],[-126.9903034937613,53.06913507205216],[-126.99044968569704,53.0689904134912],[-126.9905083240483,53.06881903962096],[-126.99053022982322,53.06863620333554],[-126.990546475448,53.06845117336172],[-126.99059181696383,53.06827150216583],[-126.99065676601472,53.06809054589317],[-126.9907688235584,53.06792543813186],[-126.99095641967526,53.06779275769588],[-126.99118647126014,53.067676529163464],[-126.99143448071938,53.06756911396316],[-126.99167882913626,53.06746509067338],[-126.99192891481918,53.06736662151955],[-126.99218473782635,53.06727370646634],[-126.99244151302194,53.067181903412234],[-126.9926973207916,53.067088431545635],[-126.99295217390647,53.06699383760296],[-126.99321084112074,53.066903137495174],[-126.99347629280093,53.06682246486215],[-126.99375235932183,53.06675571390641],[-126.99403995283424,53.066702867914834],[-126.99433047485357,53.06665503464169],[-126.99462005610138,53.06660665276745],[-126.9949000528884,53.06654883055503],[-126.99515513434426,53.06646431497052],[-126.99538457404789,53.06632343061989],[-126.9955326476236,53.06618043478509],[-126.99570777694758,53.06603496052542],[-126.99588383235533,53.06588948713875],[-126.99606744162615,53.0657473025035],[-126.99624899665133,53.06559729985673],[-126.99644292852884,53.06545726865309],[-126.99667231315155,53.065353925727216],[-126.9969457117332,53.0652939041089],[-126.99724496837965,53.06526000140826],[-126.99754911374026,53.06523558599103],[-126.99784572956331,53.065208983301055],[-126.99814467540321,53.06520197465869],[-126.99843087434004,53.06524942524853],[-126.99871955526952,53.06528284252741],[-126.99901819803041,53.065262943180194],[-126.99931779582181,53.0652435997621],[-126.99960960849764,53.06525121521079],[-126.99986539467713,53.06535662474914],[-127.00000125343196,53.065370041835536],[-127.00043683648254,53.065410054904184],[-127.00073374258521,53.06539577775936],[-127.00103750159114,53.06539432387725],[-127.00128992750366,53.06547566205427],[-127.00141250689991,53.0656399115775],[-127.0014382396636,53.065818984927176],[-127.00149566624175,53.06599498357138],[-127.00159038490331,53.06616619257732],[-127.0017759486667,53.066305810712656],[-127.0020278116269,53.066402284306804],[-127.00231581251522,53.06644633958516],[-127.00261176935473,53.06647072109359],[-127.00290341880465,53.066510270647434],[-127.0031743872939,53.06658472393072],[-127.00340791973329,53.06669703832242],[-127.00361291324138,53.06682752393893],[-127.00377450752235,53.0669802337145],[-127.00380951551406,53.06715642175462],[-127.00377544613121,53.067336002816745],[-127.00379760899655,53.067522394110696],[-127.00405955877082,53.06757059309138],[-127.00435919639239,53.06759213307567],[-127.00465086675395,53.067632798762176],[-127.00491183782957,53.06771853886058],[-127.00512052618387,53.06784674928252],[-127.00530243700317,53.067989198903724],[-127.00548806245776,53.068129931278335],[-127.00567368736179,53.06827121916856],[-127.0057851312315,53.06843723529869],[-127.00593834707328,53.06859113401434],[-127.00610083022762,53.06874158290242],[-127.00627627967312,53.06888688299994],[-127.00644804500232,53.06903445537231],[-127.00656971410632,53.06919814245355],[-127.00669789246396,53.06936065334808],[-127.00682885657919,53.069522019777715],[-127.00698116615834,53.06967648063922],[-127.00716123499082,53.06981949887594],[-127.00722620959905,53.069996559746215],[-127.00740712951907,53.070135643862415],[-127.00763797607809,53.07025133454438],[-127.00786972445076,53.070365896512],[-127.00807840814363,53.07049298116913],[-127.00824184851307,53.070643427869065],[-127.00839416551553,53.07079844262692],[-127.00853536278048,53.0709569228116],[-127.0086608640135,53.07112393666279],[-127.00880297712084,53.07128184392695],[-127.00900873661494,53.07140390486329],[-127.00927262962145,53.07149353693042],[-127.0095346678326,53.07158374903392],[-127.00979296824312,53.0716739835525],[-127.01005943603137,53.07175350673074],[-127.01029667382451,53.07186241416861],[-127.0105192265058,53.07198209667348],[-127.01075096542,53.072095532532224],[-127.01098913560901,53.07220386584322],[-127.01124471316979,53.072296926427825],[-127.01153011407712,53.07234714939075],[-127.0118261440928,53.07237262806794],[-127.01212217446404,53.07239810600272],[-127.0124031100423,53.07245732969478],[-127.01268854014359,53.07250867019542],[-127.0129843847212,53.07252630357968],[-127.01328008806975,53.07249855881179],[-127.01358330693493,53.07247298098331],[-127.01379269254944,53.072588843896796],[-127.01389768271494,53.07275714886353],[-127.01401199395642,53.072924253136954],[-127.01421980673281,53.073053019837296],[-127.01450072423603,53.07311055339791],[-127.01479241545405,53.07315007357024],[-127.0150873404139,53.07312904546167],[-127.01542830336574,53.07307849496716],[-127.01542981838797,53.07314178970225],[-127.01518091956244,53.073289047560074],[-127.0150114232874,53.073433372459306],[-127.01499704466839,53.07361390783435],[-127.01489515322837,53.07377110737512],[-127.01478829078289,53.073876238527724],[-127.01502926467995,53.073983983865936],[-127.01515002702585,53.074146549271276],[-127.01530051238217,53.074301570877715],[-127.01547601632814,53.07444685684486],[-127.01567555644057,53.07458073017547],[-127.01586585771582,53.07471916490507],[-127.01603489678294,53.07486731154426],[-127.01617425146567,53.0750257894736],[-127.01627740113433,53.07519467282347],[-127.01640285132237,53.07535775237608],[-127.01652826231174,53.07551915575407],[-127.01668432761532,53.07567189536775],[-127.01676140131977,53.075844920205085],[-127.01675169570235,53.076025415378204],[-127.01670918630201,53.07620226640681],[-127.01664121690321,53.07636981616988],[-127.01654873976022,53.07652973279988],[-127.01663980355356,53.07670096087544],[-127.01674945480258,53.07686810241207],[-127.01681909278335,53.07704286748566],[-127.0168868619603,53.07721765755742],[-127.01700768081405,53.07738189678686],[-127.01714147897592,53.07754210662179],[-127.01729201215379,53.077697689910835],[-127.01743136750216,53.07785561041346],[-127.0175112736864,53.0780291749764],[-127.01764694542672,53.078189368075456],[-127.01777519479602,53.07835130133123],[-127.01786533848147,53.07852309208884],[-127.01795264404612,53.07869378665587],[-127.01793359614209,53.07887380637098],[-127.01785077583314,53.07904652261711],[-127.01771154349733,53.07920572217348],[-127.01750509562281,53.07933076291907],[-127.01720703452048,53.0793400531964],[-127.01692428440887,53.079285338601146],[-127.01667632574951,53.07935639218384],[-127.01665170321911,53.079538135918646],[-127.01666349181619,53.07971788094808],[-127.01664252646022,53.07989679623338],[-127.01666086661177,53.08007648484586],[-127.01666891615925,53.080256270963105],[-127.0166591418976,53.080433960354114],[-127.01655472492922,53.08060294382094],[-127.01643808069385,53.08076867067616],[-127.0163993182772,53.080946053588406],[-127.01643628706111,53.081123349684255],[-127.01633092657069,53.08129177621729],[-127.01615581830481,53.081437835465486],[-127.01598544444818,53.081586094847324],[-127.01581315946784,53.08173269402753],[-127.01562952015533,53.081873778755174],[-127.01540609081655,53.0819933586371],[-127.01518548592561,53.08211347857186],[-127.01493437129454,53.082209763559575],[-127.01472708039684,53.082339288540695],[-127.01452165639135,53.082469352906266],[-127.01427438664237,53.0825695298811],[-127.01399441620022,53.08263244360586],[-127.01371054605765,53.08268810196972],[-127.01342473704904,53.08274154411128],[-127.01314086542878,53.082797201102935],[-127.01286280188451,53.08286178108619],[-127.01259154342901,53.08293694295337],[-127.01232601378724,53.08301709315279],[-127.01210637576749,53.08313943998992],[-127.01190948209634,53.08327447359288],[-127.011701220876,53.08340343660971],[-127.01149581086354,53.08353406015562],[-127.01128468159973,53.083660814790456],[-127.01106121713762,53.08377982168528],[-127.0108148857421,53.08388110374227],[-127.01053098983037,53.08393619874143],[-127.01023520494367,53.08396393644577],[-127.00994341473583,53.084001733285135],[-127.00965558866493,53.08404957161882],[-127.0093736534473,53.08410857350386],[-127.00913584305019,53.08421481723994],[-127.0089843191782,53.084370748914914],[-127.00886198516507,53.08453483085725],[-127.0087593837447,53.0847032353853],[-127.00868686009777,53.084878097424834],[-127.00864620499621,53.08505605798916],[-127.00862428890262,53.085235534909145],[-127.00865186571072,53.085412348173925],[-127.0087792001946,53.08557598355421],[-127.00887210858266,53.08574663611811],[-127.00898547912976,53.08591318741442],[-127.00912858547328,53.086071084903374],[-127.00929020464756,53.08622154491179],[-127.00945833733694,53.08637026372394],[-127.00952793420616,53.08654391181373],[-127.00948451016373,53.08672301673281],[-127.00945040746488,53.086901477216195],[-127.00944907737829,53.08708133404349],[-127.00966674478572,53.087189289146394],[-127.00993332326595,53.08726937655169],[-127.01021527010893,53.087327476555814],[-127.01042945412024,53.087446100889416],[-127.01050846060292,53.087621917962124],[-127.01062361931088,53.08778453483556],[-127.01065393859558,53.08795796232485],[-127.0108212220476,53.088109483332154],[-127.01096154349466,53.088267967111825],[-127.01110836364583,53.08842470978749],[-127.01127558387807,53.088573433764594],[-127.01145576068089,53.088716999593714],[-127.01165997128274,53.088848042186136],[-127.01188444515151,53.08896657578107],[-127.01209787517672,53.08909193586992],[-127.0123553718811,53.0891832922867],[-127.01262468542193,53.08925998856858],[-127.0128867600459,53.089346822366544],[-127.01310938502499,53.089465378466045],[-127.01326087332258,53.08962095788047],[-127.01344383394277,53.089762820459796],[-127.01362958003904,53.089904094098806],[-127.01376899031979,53.09006258233992],[-127.01388890462928,53.09022739628832],[-127.0139473584983,53.09040337833146],[-127.01399928673675,53.0905805458535],[-127.01410246536388,53.09074942064132],[-127.01422609651017,53.0909130817542],[-127.01436551233724,53.09107156920065],[-127.01448635944305,53.091236374485526],[-127.01461927745949,53.091397149558325],[-127.01476799385287,53.09155331553837],[-127.01493614007622,53.09170090577634],[-127.01516892764313,53.09181375894962],[-127.0154209576028,53.0919102027034],[-127.01568580019799,53.09199420965358],[-127.0159496879238,53.092077668427514],[-127.016212674248,53.09216281072459],[-127.01649643837624,53.09221695386809],[-127.01679559838186,53.092211018452325],[-127.01709084257996,53.09223649162878],[-127.01738433631635,53.09226758193498],[-127.01768540725003,53.09226331313754],[-127.01791812453742,53.09237279987746],[-127.0181334060076,53.0924958920577],[-127.01825707114666,53.09266010447306],[-127.01827820825508,53.092839211736866],[-127.01827223243691,53.093019117372066],[-127.01826906927876,53.093198989787666],[-127.0182836681223,53.09337815333664],[-127.01828050520109,53.09355803467852],[-127.01826329380994,53.09373747229115],[-127.0182395436058,53.09391696622271],[-127.01812568069623,53.094083225061034],[-127.01788121689584,53.094186181150036],[-127.01763007874283,53.09428359140286],[-127.01742081152727,53.094411460446985],[-127.017301292795,53.09457609074399],[-127.01733737619753,53.0947545045318],[-127.01734637406788,53.09493428098588],[-127.01734133645806,53.09511416928241],[-127.01736713941328,53.095293236271125],[-127.01742841444405,53.09546863618787],[-127.01749622891639,53.095643979757234],[-127.01749493289822,53.095823844743215],[-127.01749550707449,53.096003684644664],[-127.01753065002829,53.0961821153078],[-127.01759472519234,53.09635749095803],[-127.01776015590958,53.096507341518134],[-127.01795702079244,53.09664235386296],[-127.01817237764558,53.09676767736029],[-127.01820658277182,53.096945551094535],[-127.01832559107937,53.09711036801858],[-127.01854462517045,53.09723286224209],[-127.01869613424408,53.09738731367862],[-127.0188012052771,53.09755561190808],[-127.01898699000589,53.09769632082051],[-127.01914873036823,53.09784788654423],[-127.01931137250855,53.09799831474615],[-127.019523954156,53.09812478923337],[-127.01971714501803,53.09826207144025],[-127.01982687912161,53.098429207940065],[-127.01987044520143,53.09860700032243],[-127.01994385946685,53.09878117342919],[-127.02005638056424,53.098947720875216],[-127.02019491521487,53.09910676453853],[-127.02023848353421,53.099284556717],[-127.02023251512544,53.09946446179401],[-127.0201993901903,53.09964291594875],[-127.0201559706382,53.09982089417114],[-127.02013408226378,53.09999981603925],[-127.02024621736396,53.1001893424046],[-127.020485562842,53.100222013315175],[-127.02078799520532,53.10023340416291],[-127.02108328428314,53.100258311569696],[-127.02136535976902,53.10031750486199],[-127.02161562414705,53.10041562710516],[-127.02182823818194,53.10054265295421],[-127.02205114940872,53.100669589381326],[-127.02227963188069,53.10079535664971],[-127.02249603171973,53.100924033874236],[-127.0226826511457,53.10105912694967],[-127.02281903457427,53.10120586000696],[-127.02283073381629,53.10138056524612],[-127.02278196842138,53.10156924034585],[-127.02278820414728,53.101750151394526],[-127.02291566929182,53.10191489034044],[-127.02310054550821,53.10205504479075],[-127.0233094849182,53.10218434088186],[-127.02349346124402,53.10232617885722],[-127.02367611855595,53.10245177545643],[-127.0239018168738,53.10257756369971],[-127.02410170544194,53.10271926288903],[-127.02432630272035,53.10283778074859],[-127.02454261067534,53.10296196383896],[-127.0247644374091,53.10308218123443],[-127.02495951147942,53.103218317950024],[-127.02517212249602,53.10334421726437],[-127.0253718292358,53.103478072014816],[-127.02556783649442,53.1036136438392],[-127.02577677744762,53.10374237081485],[-127.02597556007285,53.103876232567565],[-127.0261734282051,53.1040112224793],[-127.0263508954764,53.104153677278994],[-127.02645041477035,53.104322572472114],[-127.02669967833029,53.10441621947834],[-127.02696382768843,53.10450636601302],[-127.02718015210034,53.10463055312246],[-127.02738541566005,53.10476155032888],[-127.02758234952603,53.10489654600991],[-127.02775617856727,53.105042947783225],[-127.02784819530862,53.105210795423844],[-127.02780387295815,53.10538934873289],[-127.02782123357751,53.10556512458136],[-127.0278209509174,53.1057460918249],[-127.02779817608837,53.10592614302715],[-127.02782400390558,53.10610352155022],[-127.02786841292316,53.10631436401987],[-127.02777465888853,53.10646085099159],[-127.0277761098133,53.10663676506705],[-127.02772051945384,53.106813730843044],[-127.02772767932595,53.10699295690501],[-127.02771424428805,53.107172361997854],[-127.02773731319796,53.10735201447153],[-127.02771265381281,53.10753095235189],[-127.02770578798058,53.10771086503482],[-127.02768018529932,53.10788981106978],[-127.027724722031,53.10806759153867],[-127.0277515333862,53.10824721138814],[-127.02769591364917,53.10842305667703],[-127.02758393352569,53.108589871636376],[-127.02740307183466,53.10873263300631],[-127.02717476774995,53.10884891309248],[-127.02691875709688,53.10894134604715],[-127.02663860540223,53.109002603708504],[-127.02637779916651,53.10909059491059],[-127.02609473690812,53.10914795908893],[-127.02580277382596,53.109185229914445],[-127.02550882928325,53.10921859079532],[-127.02531536340352,53.10930487488801],[-127.02531228865162,53.10952620565714],[-127.02537363079267,53.10970216468144],[-127.02542188815384,53.10987934874153],[-127.0254841592955,53.11005529962389],[-127.0255529597723,53.110230064306144],[-127.02562920316679,53.110403652780946],[-127.02571479012755,53.110576030615924],[-127.02568729279471,53.11075443648838],[-127.025768236305,53.11092853985004],[-127.0259305861433,53.11106383807989],[-127.02614364625327,53.11120653979226],[-127.02629058854279,53.11136270589135],[-127.02643477333578,53.111520572085055],[-127.02664282782936,53.111649305013884],[-127.02689497469146,53.11174460290251],[-127.02716448503634,53.11182238538074],[-127.02742672894519,53.11190918582315],[-127.02767250065871,53.11201126076252],[-127.02790175945879,53.11212692534907],[-127.02812457325635,53.11224657194384],[-127.02835013295187,53.11236394417612],[-127.02858957055564,53.11247503670835],[-127.02876514214242,53.11261469822218],[-127.02886850133687,53.11278636327146],[-127.02908931415455,53.112900422728615],[-127.02933782675217,53.112999664523855],[-127.0295973377761,53.11308873405092],[-127.02982933876947,53.11320156519277],[-127.03000689754069,53.11334568975186],[-127.03014644616053,53.113504156568084],[-127.03021992845657,53.113678321826924],[-127.03031577036185,53.113848365780065],[-127.03044603248954,53.1140102747919],[-127.0306004454847,53.1141641203403],[-127.03081215781962,53.114288896644155],[-127.03106711682797,53.11438304064683],[-127.0312834899331,53.114506654920284],[-127.03144069362544,53.11465991923743],[-127.03155328852921,53.11482589857179],[-127.03158570687629,53.11500434758094],[-127.03153480708713,53.115181273435525],[-127.03144633040178,53.11535293328594],[-127.03133057691356,53.11551866348242],[-127.03100354673056,53.11542402796747],[-127.03070847633245,53.11537393484641],[-127.03041391044924,53.115344562238626],[-127.03011512247039,53.11533428395082],[-127.02981655367373,53.115332402621284],[-127.0295059774626,53.115337348371845],[-127.02922258151686,53.11534429780434],[-127.02892644144917,53.11536535981425],[-127.02861591438034,53.115411207236136],[-127.0283573298122,53.115476207163944],[-127.02808300913385,53.1155480666248],[-127.02782600317424,53.11563994476008],[-127.02761113018117,53.11577067527015],[-127.02738931860985,53.115885778012824],[-127.02711399620046,53.11595540278386],[-127.02698484292965,53.11599405845661],[-127.02691601392985,53.11608878212975],[-127.02687726306323,53.11626616493062],[-127.02683852555356,53.11644411233734],[-127.02676600872263,53.11661842665506],[-127.02666529903415,53.116787938767416],[-127.0266125054369,53.11696488753658],[-127.0266018770275,53.117144267060304],[-127.02657913149427,53.117325992856216],[-127.02648534756923,53.11739516030167],[-127.02634494899766,53.11743279227837],[-127.02604988407147,53.11746056982183],[-127.02576579517853,53.11751682081771],[-127.02565169558305,53.11759736926508],[-127.02559339774832,53.117663422315026],[-127.02554434134731,53.117840338057135],[-127.0255215366824,53.11801982296008],[-127.02543868576831,53.11819254056675],[-127.0252814185342,53.11834574253683],[-127.02510237733259,53.11848903918085],[-127.02486640821263,53.11859977739193],[-127.02463421990537,53.11871272344027],[-127.02443531602164,53.11884723574108],[-127.02430350390439,53.11900805060815],[-127.02415471111692,53.119163974415024],[-127.02394536912722,53.119292408761154],[-127.02371604336226,53.11940756920741],[-127.02346763660904,53.119507771494376],[-127.02313957219927,53.1195649523675],[-127.02288757521085,53.11947805381664],[-127.02260001243542,53.11942955180298],[-127.02230163134112,53.119436613975175],[-127.02203788452847,53.11952181403816],[-127.02179804931318,53.119628661941604],[-127.02156870228129,53.119743253566135],[-127.02135936320214,53.11987224792837],[-127.02114048828663,53.11999459202907],[-127.020870932291,53.12007199578291],[-127.02059169409301,53.12013603597231],[-127.02031440746471,53.120203420279395],[-127.02004289623599,53.12027747735763],[-127.01977333643617,53.120354878597304],[-127.0195028204346,53.12043116691302],[-127.01922745553844,53.12050077314348],[-127.01895789282885,53.12057817251473],[-127.01868835606733,53.12065669157741],[-127.01840812719652,53.12071905873301],[-127.01813468398208,53.12079088690818],[-127.01788243193577,53.12088773972207],[-127.01764354866592,53.12099569130794],[-127.01741515315133,53.121111386981],[-127.01719531882854,53.12123317600803],[-127.01700488795021,53.121371519841034],[-127.01693314519748,53.12150211949795],[-127.01696374231099,53.12172372333414],[-127.01696790993515,53.121897371207325],[-127.0169478413807,53.122075153858844],[-127.01693431490176,53.122291534370554],[-127.01696118407718,53.12243640872279],[-127.01692250683534,53.122618833497555],[-127.01693525185406,53.12279856600998],[-127.0169320810129,53.12297844433376],[-127.016866082315,53.123153815982086],[-127.01675496393099,53.12332061119214],[-127.01660424304418,53.123475976577986],[-127.01642043900604,53.12361762384268],[-127.01625932199887,53.12376860490464],[-127.0161510264763,53.123936495736224],[-127.01603141953284,53.12410112201165],[-127.01590711311364,53.12426466797476],[-127.01581478372768,53.12443521813762],[-127.01572436732735,53.12460688127816],[-127.01561888091241,53.12477530316741],[-127.01548418854236,53.12493557617164],[-127.01536363450546,53.125099653978914],[-127.0152778999713,53.12527183227681],[-127.01522223296642,53.125448790322054],[-127.0151458961658,53.125622573095],[-127.0150121410064,53.1257833931891],[-127.01484251488735,53.12593108344172],[-127.0146976522386,53.12605782655301],[-127.01462571290014,53.126259019843246],[-127.0145136341841,53.12642582075111],[-127.01435344140641,53.12657734668783],[-127.01419798805094,53.1267310728157],[-127.01396575502194,53.12684455294557],[-127.0137038306333,53.12693028265456],[-127.01341674096837,53.12698148182497],[-127.01312763158136,53.127026539127094],[-127.01283032479154,53.127041976198164],[-127.01253163252348,53.1270389310586],[-127.01223362929677,53.12702522969596],[-127.01193649601197,53.12704794203244],[-127.01164027904244,53.127069525246085],[-127.01134155992321,53.12706535679433],[-127.01104276237288,53.1270572708672],[-127.01074482642248,53.12704637100222],[-127.01044683718766,53.12703322977256],[-127.01014962952956,53.12701391369195],[-127.00985164070764,53.12700077096255],[-127.00955311084907,53.127003884344084],[-127.00926100844721,53.127041669746184],[-127.00897814628968,53.12707378188156],[-127.00872166915971,53.127192505273214],[-127.00851325916015,53.12728504592341],[-127.00821098745209,53.12721030616256],[-127.00799368838686,53.12708665846726],[-127.00773415048498,53.12699810686196],[-127.00744035655669,53.126964187947536],[-127.00714173191034,53.126963934447154],[-127.00684292245904,53.12695527327459],[-127.0065448950457,53.12694043727069],[-127.00624774324618,53.12692336096286],[-127.00594922686214,53.126927020921315],[-127.00565058908438,53.12692619902081],[-127.00536032822598,53.126883280640634],[-127.0050691779409,53.1268426191433],[-127.00477081963965,53.126853553778275],[-127.00449118051183,53.12690355633198],[-127.00441486336975,53.127080128325325],[-127.00441821103334,53.12726050585238],[-127.00439622864131,53.12743885740759],[-127.00425865675183,53.12759857665972],[-127.00405870466815,53.12773249726131],[-127.00386348988313,53.12786918311093],[-127.00368434938619,53.12801301119265],[-127.00348627853779,53.128147470583556],[-127.00327206281473,53.1282725465264],[-127.00303213074926,53.12837935584464],[-127.00279223875415,53.128487275888304],[-127.00259980335535,53.128623371217024],[-127.00250181047147,53.128793967007056],[-127.00241413095362,53.12896558685328],[-127.00227749027854,53.12912530463168],[-127.00221047953039,53.129300110728494],[-127.00221653884479,53.12947710344351],[-127.0019975857493,53.129600540722706],[-127.00172407053837,53.12967288626729],[-127.00151841879173,53.12980405369348],[-127.00134211714214,53.1299495302132],[-127.00118564761993,53.130102691261776],[-127.00104522808398,53.130261309936124],[-127.00083467229491,53.13038355334468],[-127.00053360670583,53.130399546829004],[-127.00023716470962,53.13037347605299],[-127.00000079725996,53.1303541845816],[-126.99970197868322,53.13034607002004],[-126.99940881025441,53.13037935763813],[-126.99913237781439,53.1304478043525],[-126.99886753455688,53.13053071943864],[-126.99860076382537,53.13061197387865],[-126.99831753328526,53.130669826529505],[-126.99802014275403,53.130682985726764],[-126.99772165194027,53.130688865527446],[-126.99742339654182,53.13070538314309],[-126.99713421837225,53.130749280949814],[-126.99685389271838,53.130811031915016],[-126.99657940436607,53.13088281779318],[-126.99630685472566,53.130956827753046],[-126.99606593505821,53.131062510293425],[-126.99584694257672,53.13118537144284],[-126.99565451391896,53.13132257544845],[-126.99548385445067,53.131470236455094],[-126.99532168948589,53.13162119626616],[-126.9951500860853,53.13176830890736],[-126.9949557522715,53.13190496297233],[-126.99474624577518,53.13203278903175],[-126.99451868306556,53.13214955226529],[-126.99430828312822,53.13227962607906],[-126.99404291756112,53.132341800236716],[-126.99374006858041,53.13236227337439],[-126.99344721002956,53.13240955450401],[-126.99317273376212,53.132481896922215],[-126.99295932845513,53.132604140838346],[-126.99279632663908,53.1327595861163],[-126.99270105885009,53.132929020616444],[-126.9926557095835,53.13311092666649],[-126.99259146668524,53.13328626805655],[-126.99242057887066,53.13342497098816],[-126.99217892985125,53.13354017138549],[-126.99203655385571,53.13369711878404],[-126.99195922902577,53.13387368998241],[-126.99197177980325,53.134049507452744],[-126.99205082262195,53.134226443593555],[-126.99212422369553,53.13440231542546],[-126.99221157995458,53.134574699603],[-126.99236207998142,53.13472415243932],[-126.99256834973077,53.134856885026196],[-126.99275143641941,53.13499877602757],[-126.99298991422314,53.1351071417778],[-126.99321454361669,53.13522347597438],[-126.99338467327738,53.13537163319943],[-126.99355757883347,53.13551865530071],[-126.99374809460552,53.13565767656449],[-126.99393955542025,53.13579669854512],[-126.99411893267121,53.13593973912202],[-126.99426220325766,53.13610044657473],[-126.99425411737872,53.13627419606487],[-126.99417303961566,53.136450244256785],[-126.99415285524883,53.136627456954734],[-126.99418235795049,53.13680704890041],[-126.9941828339215,53.13698689373159],[-126.99422536211475,53.1371635793359],[-126.99421834904356,53.13734347810868],[-126.99427769048698,53.137517781309896],[-126.99438375854292,53.13768889488372],[-126.99444027198915,53.13786265700594],[-126.99441542809919,53.138040473525706],[-126.99436721219199,53.1382201627775],[-126.99434988135721,53.138399592399054],[-126.9943456845632,53.13857946738753],[-126.99432273653882,53.138758944179926],[-126.99428947172227,53.138937387132025],[-126.99425527794831,53.13911583786192],[-126.9942117204571,53.139294931997114],[-126.99418501546202,53.13947331973204],[-126.9942088488925,53.13965128274312],[-126.99425985234171,53.139829573177224],[-126.99430245128941,53.14000849895436],[-126.9943300698314,53.140188115350625],[-126.99427517375031,53.140362257854015],[-126.99417901693775,53.14053450599638],[-126.99411665646863,53.140709831631575],[-126.99411432914042,53.14089025540613],[-126.99415501657045,53.14106751193014],[-126.99421161269174,53.141244643703935],[-126.99423641723705,53.141423718906054],[-126.99424905666822,53.141603452097975],[-126.9942635838475,53.14178317837153],[-126.9942808990929,53.14196231645283],[-126.99427575792971,53.14214219901431],[-126.99427434862706,53.14232149441675],[-126.99428245953153,53.14250743292893],[-126.99453428328937,53.14258431769241],[-126.99481767884615,53.14264916650167],[-126.99509363602537,53.14271687402145],[-126.99538995647389,53.142773769108956],[-126.99550207676054,53.14292241997067],[-126.99553913056478,53.14310475328835],[-126.9955705031108,53.14328377281795],[-126.99558313569577,53.14346295001317],[-126.99557145350737,53.14364288756559],[-126.99552317039546,53.14381978046177],[-126.99546551086695,53.14399618746279],[-126.99543224675175,53.14417463021828],[-126.99541491799245,53.144354059403696],[-126.99539760406688,53.14453348844278],[-126.99537934621434,53.14471292540108],[-126.99536014442276,53.14489237027819],[-126.99534001366092,53.14507182294761],[-126.99531332283534,53.14525076603474],[-126.9952772406856,53.145429232313916],[-126.99523742797354,53.14560772994046],[-126.99518352334417,53.145784669758186],[-126.9950938933032,53.14595574263987],[-126.99497695685507,53.1461208777084],[-126.99485344660363,53.14628495635418],[-126.99473652329013,53.14645009102908],[-126.99463089921858,53.14661850110951],[-126.99452810385547,53.14678744307558],[-126.99442812418224,53.14695636126647],[-126.99433285729084,53.14712691604474],[-126.99423946253721,53.14729746395748],[-126.99416112734157,53.14747123784194],[-126.99412691115474,53.14764968781747],[-126.99413208934358,53.147830047839925],[-126.9942044998776,53.14800256409147],[-126.99429376732682,53.14817437390385],[-126.9942895149918,53.148352572077705],[-126.99421402096732,53.1485274425264],[-126.99408293081676,53.148688222196675],[-126.9939027401456,53.14883204160395],[-126.99370074101824,53.14896483867428],[-126.99349304518246,53.149093756913274],[-126.99328915770727,53.14922601331769],[-126.9931127732063,53.149372596300566],[-126.9930512191226,53.149543431533466],[-126.99306951582012,53.14972424602866],[-126.99308122386218,53.14990398631553],[-126.99305544957413,53.15008292958234],[-126.99300340274701,53.15025984329084],[-126.99298886491779,53.15043869221431],[-126.99301180986697,53.15061833814489],[-126.99303379806297,53.15079743630723],[-126.9930689114324,53.15097642430682],[-126.99307027225862,53.15115457501147],[-126.99301073289237,53.15133156044704],[-126.99287961625247,53.15149177390643],[-126.99313705873105,53.15156580877483],[-126.9934326127122,53.15162775325696],[-126.99370773677813,53.15169715639573],[-126.99394353378942,53.15180722779899],[-126.99415171394001,53.151937144256486],[-126.99436999143191,53.15205856715292],[-126.9946196096497,53.15215843643942],[-126.99486921577832,53.15225774056536],[-126.99508748392132,53.15237860645085],[-126.99525675837752,53.1525273321424],[-126.99544272102857,53.15266807360641],[-126.99566104540075,53.152791170033254],[-126.99589041117702,53.1529057737567],[-126.99610965398566,53.153028305856374],[-126.99634363304679,53.153139508329474],[-126.9965959851279,53.15323598891669],[-126.9968401021562,53.15334038194724],[-126.99708970737404,53.15343912565958],[-126.99735030098239,53.153527135827446],[-126.99761635600437,53.15360836732895],[-126.99783556962505,53.153728655470964],[-126.99802246202567,53.15386882928988],[-126.99824540914284,53.153989085192016],[-126.99848670616142,53.15409237812437],[-126.99875461348556,53.15417247094664],[-126.99898953482435,53.1542836602787],[-126.99922166683396,53.154395993214386],[-126.99948046376124,53.15448681070964],[-127.00000131758074,53.15464769141089],[-127.00030316190208,53.15469668429486],[-127.00059537520436,53.15473510845709],[-127.00088759088534,53.154772976105484],[-127.0011753688071,53.154821529961346],[-127.00148369747399,53.15486765922545],[-127.00174927858724,53.154928160459875],[-127.00190446404602,53.15511341722232],[-127.00188425012045,53.15528838882642],[-127.00180437656086,53.15547562635584],[-127.00193634682093,53.15562914036701],[-127.00214595105547,53.155738861517335],[-127.00226872039775,53.15582017532297],[-127.00220326569043,53.15590421250192],[-127.00205429102195,53.15602144278818],[-127.00188542761775,53.1561691041144],[-127.00183811195171,53.156347101827684],[-127.00182839227034,53.15652982807042],[-127.00179038869672,53.156705514834364],[-127.0017393142776,53.156882423747426],[-127.00162427341017,53.15704867778798],[-127.00154015893168,53.15721522577192],[-127.00165190021899,53.15738459837118],[-127.00175892553573,53.15755289025773],[-127.00189224201692,53.15772375629263],[-127.0019365372934,53.157893699504356],[-127.00194914998576,53.15807007820511],[-127.00188397860836,53.15824543008486],[-127.00181872716004,53.15841742104325],[-127.00181740227953,53.15859895550337],[-127.00175410274184,53.15877429140583],[-127.00165976788153,53.15894484310749],[-127.00148326607719,53.15908696558643],[-127.00141183392466,53.159274695698365],[-127.0014092981632,53.15944503516628],[-127.00157911515106,53.15961391630969],[-127.00170663210625,53.15977698789232],[-127.00179219333732,53.15994882276646],[-127.00188803916731,53.1601194500027],[-127.00203875686344,53.160272804945926],[-127.00224136868165,53.16040275426966],[-127.00227173215882,53.16057729715624],[-127.00219375014365,53.160765638829936],[-127.00219333126198,53.160945489115655],[-127.00222285687651,53.16112452110785],[-127.00224115785986,53.161303648118434],[-127.00228751727401,53.16148141701594],[-127.00234883878383,53.161657373933096],[-127.00246953497772,53.161848524109146],[-127.00244436696028,53.161933331422084],[-127.002393772944,53.161972422021016],[-127.0025632041849,53.16212505300095],[-127.00258296635612,53.16236579564293],[-127.00264763747037,53.162525481034926],[-127.00280297617884,53.162675998960275],[-127.00303549785566,53.162801767210276],[-127.00327519400695,53.16291458383509],[-127.003581963343,53.16301058840732],[-127.00375546928052,53.163097637681346],[-127.0039766494479,53.163219018222065],[-127.00424916824338,53.16329346607801],[-127.0045325578022,53.16335156916315],[-127.00480869206116,53.16342037353838],[-127.00506479352993,53.163512887072045],[-127.00531221860342,53.163595380174556],[-127.00557233340486,53.16369961942487],[-127.00579259113849,53.16382156917723],[-127.00597308459997,53.163965137205295],[-127.0061322271191,53.16411729474819],[-127.00626720247183,53.16427750109052],[-127.0063928782988,53.164440592094856],[-127.00650815025347,53.16459984514809],[-127.00672962582065,53.16473297895236],[-127.00706504759044,53.164811923239945],[-127.00729546319762,53.164887842834865],[-127.00756227128036,53.16495784072102],[-127.00782867124309,53.16504969593569],[-127.008017120016,53.16517303288899],[-127.00823278284315,53.16529781405003],[-127.00843826869587,53.1654282840707],[-127.00864192225443,53.16556044563257],[-127.00884275954981,53.165692639809826],[-127.00902513159728,53.16583563141067],[-127.00916661977143,53.16599353790229],[-127.00927836132023,53.16616066191904],[-127.00938821523224,53.166327801917504],[-127.00949808500006,53.166494941671004],[-127.00960143070704,53.166663813237484],[-127.00969077175773,53.16683505413627],[-127.00977080069819,53.16700805067037],[-127.00988439241866,53.167174593547145],[-127.01002963715291,53.167331911138625],[-127.01014230146396,53.167498461666916],[-127.0102213892147,53.167671465890926],[-127.010293023439,53.167846218905815],[-127.01035717709712,53.16802159148064],[-127.0104390696288,53.16819457158871],[-127.01053868947919,53.168364038784325],[-127.01070874545384,53.16850096557105],[-127.01077885726069,53.16869029786424],[-127.0108793837119,53.168858071762216],[-127.01093802741629,53.169037973043935],[-127.01105721011436,53.16920279067265],[-127.0112163906021,53.169354940944494],[-127.01141821155052,53.16948767807165],[-127.0116375869027,53.169609624501845],[-127.01183571658929,53.169744633480015],[-127.01202828005401,53.16988193072654],[-127.01225042195354,53.17000216713304],[-127.01251298244199,53.17008844219306],[-127.01279371802758,53.1701510305058],[-127.0130130186488,53.170270169290916],[-127.01318614971473,53.1704171507812],[-127.01334718931642,53.17056816177299],[-127.01349338793361,53.170725466868674],[-127.01364329474528,53.17088105478652],[-127.01379134223164,53.17103721420411],[-127.01399518722356,53.17117553216719],[-127.0141383170958,53.17132221341955],[-127.0143365701754,53.17146169920148],[-127.01456979503546,53.17157455750438],[-127.01479196636213,53.17169534468954],[-127.01499010254796,53.17182979257723],[-127.01510837949209,53.171994613843765],[-127.01508035408848,53.17215452210466],[-127.01501217041695,53.17231982138778],[-127.01488988630899,53.172496233668404],[-127.01470493424162,53.172637882398405],[-127.01457291617737,53.17279924638307],[-127.01451715685843,53.1729750791755],[-127.0145167902233,53.173154928300754],[-127.0145473208994,53.17333394792824],[-127.0145722302928,53.17351301570055],[-127.01458309181108,53.17369275959892],[-127.01456397328452,53.17387220460099],[-127.01457856928015,53.17405136069403],[-127.01462500946981,53.17422912338936],[-127.01470786257185,53.174401536207974],[-127.01483174041978,53.17456518906649],[-127.01499838296571,53.17471446439237],[-127.01519189543075,53.17485119249658],[-127.01539839357281,53.1749816416577],[-127.01560117038264,53.175113798657165],[-127.01578729992826,53.175254506406894],[-127.01596322418354,53.17539978345431],[-127.01612802718526,53.1755502024392],[-127.01627143472308,53.1757075189011],[-127.0163822855054,53.1758746434318],[-127.01647728339516,53.17604470968742],[-127.01656949030045,53.17621591136109],[-127.01664489958335,53.176390062922074],[-127.0166913226771,53.17656726905275],[-127.01671438240663,53.1767469078054],[-127.01672152106595,53.17692669220529],[-127.01670145208159,53.177105580727485],[-127.01667106857427,53.177284566749904],[-127.01664444762902,53.17746351147743],[-127.01662064357095,53.177642996730775],[-127.0166052649815,53.17782240962679],[-127.01659832696033,53.17800175004021],[-127.01659702460377,53.17818160678797],[-127.01662381958477,53.17836065756724],[-127.0166936509749,53.17853653309066],[-127.01688067490517,53.178674990331366],[-127.01712405916894,53.178779348048934],[-127.0173435110729,53.17890240369138],[-127.01749160027639,53.179058557799564],[-127.01753429663736,53.179235795419224],[-127.01747194733308,53.17941056513997],[-127.01730211483768,53.179558254555154],[-127.0170762598512,53.17967616229657],[-127.01682365458298,53.1797730186679],[-127.01658439571972,53.179879279716864],[-127.01652763703856,53.180052880340945],[-127.01651320174746,53.18023228488182],[-127.01651752141576,53.180412093148426],[-127.01651716300275,53.18059193258944],[-127.01649052454798,53.18077088605146],[-127.0164779630302,53.18095027443107],[-127.01647573026095,53.181130129906144],[-127.01648285365222,53.18130991402062],[-127.01646279514392,53.181489366693185],[-127.01643522607206,53.18166831907224],[-127.01643299329852,53.181848183438525],[-127.01643636796709,53.18202799069554],[-127.01643317700314,53.182207298517234],[-127.01641782451748,53.182387275431985],[-127.01640338796437,53.18256667973202],[-127.01641519086151,53.18274585881522],[-127.01644947145158,53.182924280230026],[-127.01638997160983,53.18310070972484],[-127.01635489071695,53.18327917061541],[-127.0163207391744,53.18345762350055],[-127.01627437167,53.183634504912355],[-127.01626836237972,53.183813272017645],[-127.01631107033032,53.18399163001994],[-127.01635940302693,53.184169374990184],[-127.01635340593678,53.184349262446986],[-127.01627169717412,53.1844984345131],[-127.01630043628748,53.184680264862145],[-127.0163181462022,53.184832501037675],[-127.01654640559741,53.184969484203584],[-127.01680419781668,53.1851258266377],[-127.01676474664856,53.18531777098419],[-127.01667667145117,53.18547539717591],[-127.01655936173448,53.18562543070506],[-127.01626729956689,53.185798253216035],[-127.0162598744256,53.18595742798318],[-127.01635903175206,53.18614425644229],[-127.01622789564762,53.186304492711386],[-127.01598669703229,53.18640964798977],[-127.01569520230377,53.18645024509753],[-127.01540475155966,53.18641687954231],[-127.01512002423641,53.18646638120904],[-127.01491161855397,53.18657069742541],[-127.01471574649293,53.186729245627404],[-127.01447839802543,53.18683884676964],[-127.01422285909624,53.18693235146555],[-127.01394511124421,53.18699916270616],[-127.0136722155029,53.187073210521284],[-127.01341187240698,53.1871622725484],[-127.01320026007517,53.18728957883],[-127.0130076175312,53.187426806960346],[-127.01283015893154,53.18757119263931],[-127.01280064241438,53.18774791907266],[-127.01335004283528,53.18771184596176],[-127.01364770876725,53.18769361190717],[-127.01394556239111,53.187683218986926],[-127.01424291585185,53.1876907575807],[-127.01453802792318,53.187722409835786],[-127.01483316709437,53.18775517266155],[-127.01513161224749,53.18776942267002],[-127.015430826008,53.1877769423446],[-127.01572927151595,53.187791190847],[-127.0160208516779,53.187831833703136],[-127.01627802804542,53.1879231845421],[-127.01651967028985,53.188030919866236],[-127.01674283664069,53.18815058302523],[-127.01695585001015,53.18827649120276],[-127.01716241911798,53.18840693633675],[-127.01736527936256,53.188539653966856],[-127.01755612569167,53.188679197455585],[-127.01773404026954,53.1888266952444],[-127.01795156511834,53.188944719383315],[-127.01822806361285,53.189020777715314],[-127.0185036467096,53.18909739904595],[-127.01871650822389,53.189216582391175],[-127.01890450377671,53.18935390724121],[-127.01908141375863,53.1894986148939],[-127.01925096306243,53.18964842338277],[-127.01941866439014,53.189799923797665],[-127.01958821609573,53.18994973177939],[-127.01976514430253,53.19009499401635],[-127.01994951964647,53.1902373950983],[-127.02014774544686,53.19037126838703],[-127.0203617099312,53.19049716228077],[-127.02058399716738,53.19061793735613],[-127.02080811983829,53.19073701993428],[-127.02103962065154,53.19085100073233],[-127.02125835176538,53.19097964869414],[-127.02142405726426,53.191125005216456],[-127.02147047586088,53.19130052317835],[-127.02148052280513,53.191483642482844],[-127.02148957227229,53.191663964643666],[-127.02149483045437,53.19184319898303],[-127.02164736339668,53.19198642775763],[-127.02180944514485,53.192137417450326],[-127.02198455751584,53.19228381250662],[-127.02220497066483,53.19240404494649],[-127.02244661152247,53.19251064778377],[-127.022668888207,53.192630298551585],[-127.02287364858364,53.19276186986697],[-127.02309225989536,53.192884921953215],[-127.02334304879253,53.19298191525535],[-127.02361305649303,53.19305913773368],[-127.02389396093822,53.193121698946136],[-127.0241757568221,53.19318201079491],[-127.02444758777484,53.19325697462784],[-127.02470941342688,53.19334491459832],[-127.02494552454237,53.19345435698141],[-127.02519541856687,53.19355248360283],[-127.02545178613168,53.193647183206565],[-127.02566485309903,53.19377307534787],[-127.02579437280151,53.193933305533236],[-127.0259081151197,53.19409983942799],[-127.02599010802948,53.19427224171324],[-127.02603192394754,53.19445003864113],[-127.02602034371822,53.19462941851904],[-127.02605839706578,53.19480669222871],[-127.02627049960319,53.19493147112424],[-127.02647335315132,53.19506081177249],[-127.02649171561804,53.195238246973446],[-127.02629994335624,53.195372127158166],[-127.02606546418221,53.19548453171161],[-127.02591345459689,53.19563430954957],[-127.02590094232086,53.19581426209579],[-127.02589217939813,53.19599417319004],[-127.02588433284777,53.19617352056389],[-127.02587556999734,53.19635344058409],[-127.02586587692319,53.1965333596768],[-127.02585428042043,53.19671273946684],[-127.02584364245203,53.196892675667364],[-127.02583486558557,53.197072031003614],[-127.02581956118442,53.197252563337955],[-127.02581172756915,53.197432466234524],[-127.02583293554326,53.19761100611667],[-127.02587014212708,53.19779163947247],[-127.02592138999769,53.19797159544561],[-127.02599593160367,53.19814574718184],[-127.02610397968377,53.19830896844265],[-127.02628381233758,53.198455316124004],[-127.02650904480343,53.198579416043266],[-127.02676891174896,53.19866176602804],[-127.02705726258347,53.19872032916425],[-127.02730991593123,53.19881506595324],[-127.02754607802842,53.19892506744125],[-127.02777951656812,53.19903900934032],[-127.02801661112588,53.1991490018095],[-127.02826291841056,53.199252190880735],[-127.02852388635692,53.19934125046663],[-127.0288047852851,53.19940155930595],[-127.02910746243847,53.19943198071476],[-127.02941456107742,53.19945172271438],[-127.0297060342266,53.19944527256917],[-127.02995144578448,53.19935741701739],[-127.03011351376973,53.199197462377306],[-127.0302134483624,53.19902683387267],[-127.03030485565994,53.198852926894695],[-127.03044075264806,53.198696551849835],[-127.03064373573994,53.198560891431555],[-127.03088775981618,53.198454562203175],[-127.03115497707795,53.19837716349437],[-127.03143850654831,53.19831474437568],[-127.03172791971134,53.198262922529004],[-127.03201755084613,53.19822006204139],[-127.03231414774073,53.19819339182667],[-127.03261178341222,53.19817118483473],[-127.03291245632754,53.19815847931633],[-127.03319900698841,53.19810443781016],[-127.03348053361533,53.19803699346572],[-127.0337276262223,53.197941836472786],[-127.03390690473917,53.197796292642444],[-127.03409477714582,53.19765683175953],[-127.03436860796238,53.19758160894182],[-127.03465816313478,53.19753593685669],[-127.03495583417758,53.19751540883676],[-127.03525495726866,53.19751560106718],[-127.03555351918867,53.19753147545235],[-127.035850357438,53.197553531377814],[-127.03614376190308,53.1975885068013],[-127.03643722153728,53.19762571305093],[-127.03673237821837,53.197655624972136],[-127.03703003803837,53.197673188772114],[-127.03732252798115,53.197708725062135],[-127.03760709598758,53.19776561948043],[-127.03783844209464,53.1978319434515],[-127.03815720010485,53.19790646501268],[-127.03843228593988,53.19795895856234],[-127.03857509637689,53.19797059692781],[-127.03876731496659,53.198008684914576],[-127.0390182576281,53.19803225584346],[-127.03935239333236,53.198045576671426],[-127.03969071315072,53.19803868190482],[-127.03991111417241,53.198002576784994],[-127.04016198992376,53.19794714625385],[-127.04036284176448,53.19787871745937],[-127.04048749659445,53.197838405282745],[-127.04071338306748,53.19772044509714],[-127.04095555611457,53.19761691681114],[-127.04121301773661,53.19752444967422],[-127.041500428273,53.19746813938598],[-127.04166239261816,53.1974583161539],[-127.04179009247625,53.19746559253898],[-127.04208543983749,53.19754087417687],[-127.04236819343491,53.197600014169694],[-127.04265451801724,53.19765183433715],[-127.04294621962731,53.197693530951376],[-127.04324453699871,53.197699303648314],[-127.04354323182605,53.19768267124367],[-127.04383381961067,53.19764089379063],[-127.04412335124901,53.197594642928216],[-127.04441899094918,53.197567941768675],[-127.0447162245518,53.19756812677341],[-127.04481759085574,53.197609811845446],[-127.0447704580239,53.19771386926013],[-127.04454824972606,53.19782844335209],[-127.04433681607141,53.19796140579185],[-127.04410232760766,53.198072716797206],[-127.04388124018887,53.19819455846871],[-127.04378790483196,53.19836402043737],[-127.04382885463497,53.19854181901138],[-127.04392401356057,53.19871185218693],[-127.0439687141923,53.19888961763744],[-127.04395251389793,53.1990690402034],[-127.04383469162124,53.19923423588435],[-127.04367246816463,53.19938581185519],[-127.04350168803516,53.199532980952064],[-127.04329579728406,53.19966365149167],[-127.043067061082,53.19977995630885],[-127.04295005264593,53.19994065287802],[-127.04295526683394,53.199999993372465],[-127.04296666788764,53.200119786290855],[-127.0430095185886,53.20029868872896],[-127.04310750272886,53.20043116534127],[-127.04331194883399,53.20054646169579],[-127.04355460677601,53.200651892429555],[-127.0437751385542,53.2007726398351],[-127.04396703085771,53.2009104556166],[-127.044140379899,53.20105738952322],[-127.04429793814751,53.201210073808255],[-127.0444471499995,53.20136618398565],[-127.0445842506879,53.201525771205084],[-127.04470460107848,53.20169054371183],[-127.04479696442066,53.20186116537188],[-127.04484074200086,53.202038938393585],[-127.04482454419957,53.20221836077478],[-127.04476042635022,53.202394279466276],[-127.04465486283222,53.202562164279975],[-127.04450017040338,53.20271591562066],[-127.04430665676675,53.202854321950404],[-127.04406635101262,53.20295840487865],[-127.043801472573,53.203055425032716],[-127.04352373979386,53.203087004276206],[-127.04320554945328,53.20307579549003],[-127.04290627779388,53.20307058654343],[-127.04260646171691,53.20308163330696],[-127.04232169536694,53.20313287581114],[-127.0420776052335,53.203235867428596],[-127.04186599769024,53.20336378854694],[-127.04166009823719,53.20349445584321],[-127.04145133576182,53.203623462700705],[-127.04124350232107,53.20375246997007],[-127.04103569629233,53.203882032379724],[-127.04082883275952,53.20401214189127],[-127.04062289827073,53.204142251826205],[-127.04041699118692,53.20427291690789],[-127.0402120266007,53.204404129102706],[-127.04000800473332,53.20453589737759],[-127.03981821850368,53.20467426332398],[-127.03963319555649,53.204815392870785],[-127.03944817003061,53.20495707789484],[-127.03927831147834,53.20510478781807],[-127.03913589690329,53.20526290598123],[-127.03902463561374,53.2054297147344],[-127.0389303622222,53.20560030062545],[-127.03883703185282,53.205771433916844],[-127.0387257680465,53.205938242343784],[-127.038578626515,53.206094715938015],[-127.03838313408771,53.20623033262982],[-127.03815623665066,53.206347731506675],[-127.03792745016106,53.20646402598417],[-127.03773865766449,53.20656707961159],[-127.0376073087942,53.20675647260743],[-127.0375188176029,53.206933729502744],[-127.03739534956611,53.20710007863016],[-127.03736951745479,53.207232522875465],[-127.03751150171419,53.20743857090298],[-127.03762997987954,53.20760393109781],[-127.03767838782156,53.20777998024005],[-127.03767436729129,53.207960414663624],[-127.03767315365133,53.20814026872646],[-127.03769162514173,53.20831938566824],[-127.03769509231446,53.208499189744764],[-127.0376760561269,53.208678635093875],[-127.03765418553394,53.208857549476505],[-127.03763983004059,53.2090369537969],[-127.0376357953708,53.209216823491495],[-127.0376383323872,53.20939664459026],[-127.03764181442509,53.20957644843334],[-127.03764435148868,53.20975626949746],[-127.0376468883539,53.209936081582185],[-127.03764471545253,53.210115379125014],[-127.0376256783236,53.210294824310736],[-127.03760662602933,53.210474269607566],[-127.03758946406121,53.21065369833225],[-127.03757230079873,53.210833691774226],[-127.03755606878707,53.211013112315136],[-127.03754171214564,53.21119251641671],[-127.03752923089829,53.21137190407981],[-127.03752238975146,53.21155179810941],[-127.03752681559249,53.211732158210076],[-127.03755934707864,53.21191115174617],[-127.03766752995634,53.21207660175199],[-127.03782789786074,53.21222870456555],[-127.03800962334236,53.212371656184786],[-127.03820061785171,53.212510044370184],[-127.03839532337552,53.21264671451753],[-127.03860207767363,53.212777120548395],[-127.03882453435257,53.212897868908264],[-127.03906722445768,53.213002187885834],[-127.0393355818597,53.2130821862805],[-127.0396211036964,53.21313570649097],[-127.03991552326578,53.2131689791371],[-127.04021167997148,53.21319719808819],[-127.04050856159455,53.213216437058215],[-127.04080733298423,53.213236223417574],[-127.04109819608759,53.213277367798426],[-127.04138014973522,53.21333820280582],[-127.04165123806558,53.21341425477233],[-127.04190405320931,53.21351063558235],[-127.0421255926514,53.213631376915565],[-127.0423193709339,53.213768057808736],[-127.04248998864884,53.21391613804115],[-127.04262249631479,53.214078008129505],[-127.04268125490813,53.214254528536785],[-127.04262461248723,53.21443037893376],[-127.0424641883437,53.214581379873515],[-127.04225729077807,53.214712055737564],[-127.04201121535732,53.214813942960205],[-127.04174207971465,53.214893057844805],[-127.0414699979776,53.21496716027718],[-127.04120279010276,53.21504906267706],[-127.04093943030814,53.215134292130685],[-127.04068952905256,53.21523341339908],[-127.04047213469217,53.215356890537315],[-127.04026806078295,53.215488658487665],[-127.04006779346383,53.2156220778764],[-127.03987226154028,53.2157576873717],[-127.03967960341714,53.215896077016176],[-127.03949262763165,53.216036101703914],[-127.0393094419181,53.21617832485228],[-127.03912911749028,53.216322207823474],[-127.03897909288582,53.216477594495274],[-127.03888951773013,53.2166498141931],[-127.03888359936995,53.21682857926234],[-127.0388983271225,53.217008292801594],[-127.03891588981838,53.217188537235565],[-127.03892404622654,53.217367743612805],[-127.0388768193633,53.21754519443526],[-127.03880983367505,53.21772057741746],[-127.03872022767084,53.217891676628135],[-127.03860426313022,53.218059080531994],[-127.0385626054339,53.21823480609922],[-127.03855485103381,53.21841527228517],[-127.0385592681271,53.218595067083214],[-127.038581498492,53.218774714749],[-127.03861684727212,53.21895311799892],[-127.03867184419671,53.21912967280813],[-127.03873620726456,53.219305589741225],[-127.03875654900578,53.2194846891418],[-127.03877409825184,53.21966436875598],[-127.03876724740647,53.219843706420605],[-127.0387341202601,53.22002271857026],[-127.0386423219587,53.22033389728298],[-127.03853857891981,53.220502314240555],[-127.03840083341076,53.22066207404261],[-127.03823185242742,53.2208103376782],[-127.03806003634107,53.22095750539408],[-127.03792228732028,53.22111725563943],[-127.03784962299719,53.22129101113858],[-127.03784078198463,53.221465884046495],[-127.03793083563913,53.22165613359691],[-127.03801064262873,53.221811746760025],[-127.0379921057787,53.2219738144931],[-127.03791273039822,53.22214146156417],[-127.03786141074171,53.22230606620457],[-127.03780416126125,53.2224578326785],[-127.0377715011107,53.22257968655904],[-127.03766093735841,53.2227005461277],[-127.03750604644806,53.222811709196506],[-127.0373114324253,53.22294787027511],[-127.03718028906431,53.223109246811525],[-127.03710386617801,53.223283034497435],[-127.0370707154397,53.22346148125276],[-127.03705351706321,53.2236403441868],[-127.03698181785346,53.22381521089122],[-127.03687049923273,53.223982015969895],[-127.03670718280945,53.22413246842666],[-127.0365163672521,53.224270835774895],[-127.03632081139511,53.22440755902904],[-127.03610431531786,53.224532148622124],[-127.03590394932758,53.22466443126101],[-127.03581804161632,53.22483437461659],[-127.03580257763115,53.225007063867814],[-127.03581057146678,53.225180112867186],[-127.03581518360389,53.225368313411174],[-127.0358175214505,53.225540282350686],[-127.03581038257468,53.225708416873466],[-127.03574550828928,53.2258944277402],[-127.0356429698884,53.226037059865455],[-127.03546771436265,53.226198263685816],[-127.03523592255222,53.22631177129887],[-127.03496575564328,53.22639088753186],[-127.03468063102993,53.22643426934988],[-127.03438713914296,53.22648052916324],[-127.03409134570357,53.22650944535965],[-127.03379756483362,53.226543936700644],[-127.03350782360421,53.22659016161364],[-127.03323563855608,53.226663689043214],[-127.03301146632347,53.22678217243849],[-127.03285382229969,53.22693536644064],[-127.03274910817758,53.22710435058007],[-127.03271403246116,53.22728169185772],[-127.03277278182559,53.22745878053652],[-127.03282775160888,53.22763477265722],[-127.03275035822931,53.22780800062495],[-127.03262956280425,53.2279720869665],[-127.03247854211101,53.22812746359146],[-127.03229528061163,53.228269683946756],[-127.03207207022292,53.22838927747171],[-127.03180081528963,53.228463349075206],[-127.03152284944272,53.228531311322435],[-127.03125646863236,53.22861262684169],[-127.03099881065363,53.22870506171371],[-127.03076410295566,53.22881578885265],[-127.03056849391436,53.22895194664923],[-127.03040230158969,53.229101294181895],[-127.03022187816208,53.229244606974056],[-127.03003197625117,53.22938407566356],[-127.02985249455749,53.229527935426155],[-127.02968820106291,53.22967838585444],[-127.02953620424964,53.229833211164824],[-127.02939839408492,53.229992950752006],[-127.0292728687425,53.2301559539054],[-127.02915962789892,53.23032220273963],[-127.02903881134772,53.230486285204265],[-127.02888776847021,53.23064165704846],[-127.02873198522883,53.230795393574695],[-127.02857620085409,53.23094912988378],[-127.02842513982876,53.23110451019275],[-127.02828354274885,53.23126260491887],[-127.0281598992633,53.23142614615019],[-127.02805233311574,53.2315951502109],[-127.02794856121736,53.23176524173247],[-127.02783529584103,53.23193148929039],[-127.02769743314988,53.23208899507671],[-127.02751616452812,53.23223734831683],[-127.02729393207669,53.232360285246884],[-127.02703206779246,53.23243538460606],[-127.02673552664841,53.23247436374133],[-127.02644009416679,53.232520064344286],[-127.02617361032152,53.23259856319364],[-127.02591298593765,53.23268653028653],[-127.02565623586798,53.232779509896915],[-127.0254023749508,53.23287526961965],[-127.0251475806167,53.23297159260931],[-127.02489178503589,53.233065682742854],[-127.0246330996044,53.23315643586038],[-127.0243696070321,53.233242183315014],[-127.02410512702332,53.23332626247054],[-127.02383970020657,53.233410349198714],[-127.02357714886259,53.23349665144488],[-127.02332520968939,53.23359463096424],[-127.02307895156639,53.23369535761787],[-127.02278913592156,53.23374099156093],[-127.0224902730658,53.2337614966421],[-127.02219102919813,53.23376688234808],[-127.02189184079249,53.23377394304776],[-127.02158657441925,53.233763127790446],[-127.02130420679117,53.233767236422246],[-127.02099678447762,53.23382254610934],[-127.02071946846536,53.23388040149801],[-127.02042713790716,53.23393894119575],[-127.02013036303593,53.23392972533495],[-127.01982644497724,53.23385783267718],[-127.019559841864,53.23377664566026],[-127.01926976399915,53.2337337648651],[-127.0189709658468,53.233718405392494],[-127.01867300565745,53.233698556080796],[-127.01837670466767,53.23367028374914],[-127.01807886665316,53.23365547850661],[-127.01777967672004,53.23366308459972],[-127.01748479438993,53.233693071377786],[-127.01719991278426,53.233749298235495],[-127.0169218886956,53.23381722606154],[-127.01664966857048,53.2338923910114],[-127.01638612848458,53.233977009413934],[-127.01613990547057,53.234079962117725],[-127.01590610170106,53.23419177166385],[-127.01564737651239,53.23428194052319],[-127.01537031933496,53.23435098579404],[-127.01509323267727,53.23441946594233],[-127.01488130806723,53.23454341128774],[-127.01474627639892,53.23470422952902],[-127.01460458773444,53.234861752105985],[-127.01437639633973,53.234933729310185],[-127.01406366778916,53.234963860127344],[-127.01380106340604,53.23501035967732],[-127.01353829891602,53.235049581433024],[-127.01327766974356,53.23506077259947],[-127.0130034345394,53.23505247568064],[-127.01274697623768,53.23496390820572],[-127.01248578141353,53.23487313968385],[-127.01225591225084,53.234758008590894],[-127.0120426652895,53.23463153945125],[-127.01182850213888,53.23450563350184],[-127.01158297359177,53.2344029599087],[-127.01130375665956,53.234343159965796],[-127.0110091868291,53.234308131652995],[-127.01071214369912,53.23428769876886],[-127.01041331795702,53.23427119749612],[-127.01011385450879,53.234267581827496],[-127.00981462049732,53.234272936172474],[-127.00951546495753,53.23428220625609],[-127.00921632429883,53.234291475457134],[-127.00895855136851,53.23434352551771],[-127.00873923975969,53.234395256789995],[-127.00849293879509,53.2344561719887],[-127.00822988198566,53.234522840449614],[-127.0079921813654,53.234629620706805],[-127.00776416970386,53.2347492080053],[-127.00757090341848,53.23483040366992],[-127.00736223669348,53.23489548752361],[-127.00722694620447,53.23500699848727],[-127.0069186609262,53.23510597701988],[-127.00667523065682,53.23520888604309],[-127.00649126617294,53.235325855919264],[-127.00620503211675,53.23544425805529],[-127.0060226095153,53.23558698485744],[-127.0058354333219,53.235727510742485],[-127.0056025255532,53.23583872725097],[-127.00534480592472,53.235933355589225],[-127.00524540284002,53.23609442519718],[-127.00525906323,53.23627413998774],[-127.00526239649618,53.236453386555],[-127.00520840452978,53.23662975765016],[-127.00509128355885,53.236796023825],[-127.00496374073515,53.236957887351245],[-127.00480595729738,53.237111052186165],[-127.0046434484698,53.23726257163977],[-127.00447903335728,53.23741354228061],[-127.00431652219422,53.237565061262146],[-127.00415683082336,53.237717120837],[-127.00400471156114,53.23787191275127],[-127.00386202797242,53.23802886550714],[-127.0037581012845,53.238197815157086],[-127.00368444248925,53.2383760280035],[-127.00359655381453,53.23854820312629],[-127.00345092419458,53.23870014261643],[-127.00325986737467,53.23883565027477],[-127.00304514305252,53.23896295877836],[-127.00282283063603,53.239086969643516],[-127.00260904799286,53.239214834070246],[-127.00240097571752,53.239345446506384],[-127.00219005291252,53.23947496218158],[-127.00198671564209,53.23960777476708],[-127.00180044073124,53.23974772139229],[-127.00164069211593,53.23989809256257],[-127.00149989626033,53.24005614669782],[-127.00137143723865,53.24022026351267],[-127.00125336010383,53.2403865244807],[-127.00114092589303,53.2405533023872],[-127.00109158453151,53.24072851131413],[-127.00105544525621,53.240906970156615],[-127.00103716978741,53.24108639865111],[-127.00106113094716,53.241265470618906],[-127.0011468545603,53.24143729843025],[-127.00132856837254,53.241579748417884],[-127.00155475740165,53.24169772809475],[-127.00178832240807,53.24181004272162],[-127.00198952887756,53.24194279862482],[-127.00209113903706,53.24211113012657],[-127.00213570957835,53.242288907222665],[-127.00213809728588,53.242468716941076],[-127.00212545649237,53.242648097877776],[-127.00212033668625,53.24282797996057],[-127.00209642071597,53.243006891413636],[-127.00207909473811,53.243186311877714],[-127.00213109444526,53.24336066472638],[-127.00240673718979,53.24342612786214],[-127.00270386713503,53.243447701689966],[-127.003002794765,53.24346590714787],[-127.00328570773617,53.24352121364119],[-127.00344219925576,53.24366779086542],[-127.0034811462127,53.24384561494995],[-127.00345256390084,53.2440251308182],[-127.00345210792861,53.24420385295401],[-127.00353209821289,53.24437012510181],[-127.00376335253094,53.24450317947651],[-127.00391906305461,53.24465648542506],[-127.0040001467667,53.24482947075962],[-127.00406252759373,53.24500541999504],[-127.00414173553352,53.24517842109098],[-127.00424432128419,53.245347298090074],[-127.00436650299486,53.245511536173716],[-127.00443823155574,53.24568572083997],[-127.00449125659645,53.24586286052326],[-127.00449442595212,53.24603594951639],[-127.00447270171317,53.24622773244638],[-127.00447211844522,53.246400288473275],[-127.00446229451427,53.24657964550755],[-127.00444966235906,53.24675902630445],[-127.00443139877419,53.24693845476984],[-127.00443191939969,53.24711827989826],[-127.00443807161304,53.2472980662848],[-127.00443108374563,53.247477954961674],[-127.00438851028574,53.24766151529683],[-127.00433343611616,53.24783229166156],[-127.00421343236988,53.24799689493349],[-127.00413492485487,53.24816954576014],[-127.00408657134528,53.24834698781977],[-127.00405231538254,53.248525430970716],[-127.00402371912531,53.24870439089923],[-127.00399510739526,53.24888334196926],[-127.00396556454362,53.24906230985796],[-127.00393696734245,53.249241260753266],[-127.00390742399419,53.24942022859386],[-127.00387975740854,53.24959917156188],[-127.00381350671957,53.249774523895674],[-127.00378582630054,53.24995291117234],[-127.00377790431367,53.25013281640145],[-127.00374930399096,53.25031233187598],[-127.00363681318522,53.25047742644742],[-127.00350359187799,53.25063934384987],[-127.00343262569403,53.25081361528036],[-127.00342749705246,53.25099293205105],[-127.00346461503565,53.25117189144369],[-127.00346041762916,53.251351200305606],[-127.00349376802987,53.25152962681835],[-127.00352243131715,53.251708657668935],[-127.00352294834494,53.25188849131364],[-127.0034651747166,53.25206489194668],[-127.00335081420175,53.25223056657298],[-127.00322231193898,53.25239411974644],[-127.00311360825735,53.25256086671896],[-127.00304922871999,53.252735637755215],[-127.00300841492523,53.25291470028583],[-127.00298332657701,53.25304432074551],[-127.0030657261005,53.253272197341246],[-127.00307179358569,53.25344862252259],[-127.00297359101764,53.25362312365534],[-127.00278145257133,53.253755841382045],[-127.0025275598799,53.25385770786846],[-127.00225710218191,53.253934498987846],[-127.00197407409443,53.253996273967445],[-127.00172093663002,53.25409085382271],[-127.00147650620634,53.25419599947472],[-127.001209945456,53.25427892225296],[-127.00095007992228,53.25436739021137],[-127.0007428325473,53.254496870611064],[-127.00070008990306,53.25467426319077],[-127.00072030242056,53.254853365624164],[-127.00070203265854,53.25503334838955],[-127.00069594566439,53.25521267262792],[-127.00067766247888,53.25539209972097],[-127.00068286868141,53.25557189337791],[-127.0006824271943,53.25575172569122],[-127.00067540876915,53.25593105771587],[-127.00064584692232,53.25611002411774],[-127.00049094839629,53.25623009870333],[-127.00025119431373,53.256136881640884],[-127.0000010278834,53.2560403904988],[-126.99969875945175,53.25592472543375],[-126.99940155641923,53.25590369985385],[-126.99910544016446,53.255928603025524],[-126.99882817412293,53.25599592403344],[-126.9985202489851,53.25599796031648],[-126.99841320430069,53.25599774074717],[-126.99823494007464,53.256043494271324],[-126.99796277987605,53.256049145281146],[-126.99780993368047,53.25601793770329],[-126.99770132766734,53.25595162381207],[-126.99760720770983,53.255901994830054],[-126.99745580340162,53.25585229165943],[-126.997170613133,53.255823316325596],[-126.99686354279036,53.255821415062485],[-126.99656409963629,53.25582505120822],[-126.99626681959312,53.25580065707833],[-126.99596727257597,53.25579924606535],[-126.99567422786271,53.25583531941903],[-126.9953911265351,53.25589428240683],[-126.99509615037336,53.25592812961846],[-126.99481984866543,53.25599710931627],[-126.99455229276985,53.25607834899898],[-126.99429147097156,53.25616681009591],[-126.99403737010188,53.256261937015324],[-126.9937601068689,53.25632980180325],[-126.99346504730792,53.256360284254406],[-126.99318966025395,53.256428140945594],[-126.99296746019796,53.2565224337602],[-126.99278272500449,53.25669204770297],[-126.99260109654884,53.25683474447196],[-126.99238809983582,53.256960896537],[-126.99216844588811,53.25708318677114],[-126.9919877203974,53.25722418982894],[-126.99182601948141,53.25737568233117],[-126.99165578186341,53.257523884587094],[-126.99149028408767,53.25767373212722],[-126.99133993717032,53.25782904611855],[-126.99121704549002,53.25799365884931],[-126.9910846446224,53.258153869057566],[-126.99088593662702,53.25828886249966],[-126.99071285682616,53.25843596655898],[-126.99048257991943,53.25854657295498],[-126.99019943815065,53.258605523596806],[-126.98993183037649,53.258685623555614],[-126.98964473464827,53.25873619798054],[-126.98928786555197,53.25873413655981],[-126.98898988703834,53.258720369723854],[-126.98870501334834,53.25866504522007],[-126.98843554197406,53.25858605329198],[-126.98816517972578,53.25850875333479],[-126.98790760818679,53.258416224661765],[-126.98766385225493,53.258311811212664],[-126.9874320849817,53.25819833388533],[-126.98719845433241,53.25808542735692],[-126.98694732070892,53.25798724079631],[-126.98668244079455,53.257903169181105],[-126.98640387992023,53.25783601748534],[-126.9861154564572,53.25778911522836],[-126.98581659163321,53.257777588748596],[-126.98551735596085,53.257790723475985],[-126.98521803038439,53.25779936742775],[-126.98491995344058,53.25778167415245],[-126.98463323993595,53.257727475666194],[-126.98435289716552,53.2576642510688],[-126.98407540336484,53.25760268734104],[-126.98380937901054,53.257671000109326],[-126.98367142470387,53.25783517395367],[-126.98355698386783,53.258001384629715],[-126.9834226894535,53.25816216644951],[-126.98323548345401,53.25830825603644],[-126.98299377104401,53.258372439368884],[-126.98272958223708,53.25827714876812],[-126.98245996836546,53.25819143081191],[-126.98217871863417,53.25812989376083],[-126.98189835082258,53.25806554314318],[-126.98160823544538,53.25802648711376],[-126.98130776597112,53.25802673175339],[-126.98100952548927,53.25804208775226],[-126.98071347435022,53.25807086133254],[-126.98042446814618,53.25812030874987],[-126.98015585969837,53.2581987186291],[-126.97991036662215,53.258302151566575],[-126.97968781942923,53.25842331273509],[-126.97950614142394,53.25856543356678],[-126.97938317336661,53.258729469501304],[-126.97930551692481,53.25890322430054],[-126.97924951021437,53.25907959698644],[-126.97920573920027,53.259257544836686],[-126.97916386071874,53.259435485996576],[-126.97914829324063,53.25961488618688],[-126.97912990351864,53.25979374494108],[-126.97912091521168,53.25997309079945],[-126.97913070387004,53.260152281690964],[-126.97909729235036,53.260331273311614],[-126.97906009892876,53.260509166699016],[-126.9790257423855,53.260687601353695],[-126.97896313967364,53.260863472393524],[-126.97888640873295,53.26103721007912],[-126.97880497741524,53.26121043072671],[-126.97869898973099,53.26137825161174],[-126.97855240311772,53.26153632318398],[-126.97832880001107,53.261653017310934],[-126.97812327342366,53.261780201751954],[-126.97805121144418,53.26195334454321],[-126.97808917578082,53.262132858798026],[-126.97822434513047,53.26229253307577],[-126.97831751880506,53.26246319320797],[-126.97840134104557,53.262636171258045],[-126.97853001311243,53.2627986953755],[-126.97873859984057,53.262925261680635],[-126.97895569772628,53.26305400725946],[-126.97901596725008,53.26322325311935],[-126.97907353209534,53.26339701200149],[-126.97921713895904,53.26355605078463],[-126.97933366819568,53.26372147083874],[-126.97941375637795,53.263894478933004],[-126.9794705332274,53.2640749667609],[-126.97966497449237,53.26419828685069],[-126.9799409392734,53.264273318961],[-126.98020948459043,53.264352337764336],[-126.98045973305973,53.26445223090705],[-126.98070626583583,53.264553830421825],[-126.98097150097142,53.26465192244921],[-126.98101276751694,53.264811240320654],[-126.98098505900153,53.26499298155909],[-126.98098360228992,53.265172829571384],[-126.98097651155355,53.26535271517787],[-126.98097221725091,53.26553202190897],[-126.98097831120195,53.265713483637796],[-126.98088552072207,53.265882882113544],[-126.98064945241727,53.26598959027956],[-126.98037214100611,53.26605967298253],[-126.9801073808068,53.26614420818167],[-126.97987717717174,53.266260959295245],[-126.97974374988998,53.26642004361882],[-126.97973850566069,53.266598793300474],[-126.97972388449433,53.26677818508328],[-126.97967258471421,53.266955083018864],[-126.97962599781,53.26713305348839],[-126.97960855143508,53.26731246852362],[-126.9796005100879,53.267491805903575],[-126.97959341327808,53.26767170017267],[-126.97959758447799,53.26785149244876],[-126.97958577184852,53.26803086090629],[-126.97955705869187,53.268209813105685],[-126.97953680198596,53.26838925122066],[-126.97953814838597,53.26856906674603],[-126.97950758256296,53.26874915461335],[-126.97958286118835,53.26891715544753],[-126.97952115607265,53.269091333393256],[-126.97937069870213,53.269245520027376],[-126.97924108116104,53.26940736863115],[-126.97912846985301,53.26957356750037],[-126.97902335708906,53.26973913968052],[-126.97886626244834,53.26989113049415],[-126.9787536612552,53.27005788459904],[-126.9787022624364,53.27023085653609],[-126.97866223408475,53.27040878113981],[-126.97858929282505,53.2705847272517],[-126.97871780806196,53.270739408902294],[-126.97890515489966,53.27087960413697],[-126.97914805612399,53.270985162809254],[-126.979434761761,53.27103545786188],[-126.97972236056711,53.271084059709025],[-126.97999464007019,53.27116024266211],[-126.98027686800548,53.27121953620093],[-126.98055550743045,53.271286701813445],[-126.980818620042,53.271372486863584],[-126.98109358492742,53.27144247821237],[-126.98137130865501,53.271510214197015],[-126.98164993861188,53.27157681263601],[-126.98191086440067,53.27164916807117],[-126.98200409967919,53.271820944705645],[-126.98207298187849,53.27199628409662],[-126.98220633256,53.272156524194386],[-126.98230137021336,53.27232492432927],[-126.98233276762176,53.272503935097916],[-126.98235480194977,53.27268357907955],[-126.98237493024203,53.27286268307925],[-126.98238308882345,53.27293040672375],[-126.98240416400607,53.273109502860244],[-126.98243275251615,53.273288536787696],[-126.98250162575063,53.27346331120332],[-126.98258643363675,53.27363627747341],[-126.98267122928465,53.27380868803589],[-126.98271330661565,53.27400217589468],[-126.98275563985808,53.274165965448105],[-126.98284693861179,53.2743355164245],[-126.98294857648813,53.27450498169961],[-126.98302725764134,53.27465670996627],[-126.98303038757822,53.27487180856924],[-126.98306432808762,53.27503847304685],[-126.98313415369984,53.2752132480582],[-126.98320585806174,53.27538799849153],[-126.98327849678317,53.275562185392204],[-126.98333895826306,53.27573815826195],[-126.98339098580354,53.275915312439835],[-126.9834007962821,53.27609450149659],[-126.9833654725835,53.27627182358512],[-126.98347273953961,53.276440685925046],[-126.98360146004818,53.27660263878766],[-126.98366568124833,53.27677858026501],[-126.98369239914291,53.27695762911622],[-126.98372653962437,53.27713269041409],[-126.98371893668113,53.277290179580255],[-126.98380161080233,53.27749229383805],[-126.98383396517004,53.27767129588473],[-126.98386913190147,53.27784970989692],[-126.98387707952067,53.27802947889719],[-126.98385267466273,53.2781915800546],[-126.98375440046892,53.27836886806592],[-126.98356886696862,53.27850989560011],[-126.98344961386391,53.278673911883196],[-126.98343315184927,53.27885443878677],[-126.98356462471433,53.27901357213204],[-126.98376595118869,53.279146356372166],[-126.98399876832922,53.27926038753344],[-126.98419637951248,53.279394886983326],[-126.98434003397496,53.27955279802801],[-126.98442767383385,53.27972517441868],[-126.98447033112124,53.279902970243654],[-126.98445948263254,53.28008233021595],[-126.98437707767506,53.28025500520006],[-126.98421242471767,53.28040538860017],[-126.98401452179482,53.28054036125174],[-126.98386120143162,53.280694011495],[-126.98378729321325,53.2808682917386],[-126.9837792649575,53.28104818389825],[-126.98375714139861,53.28122763711078],[-126.98370207050696,53.28140400201115],[-126.983614942561,53.281576150738026],[-126.98348341182165,53.281737462880024],[-126.983323478307,53.28188949089585],[-126.98315785521693,53.28203931595875],[-126.98304052328753,53.28220499169832],[-126.9829439324195,53.28237442157658],[-126.98290205970048,53.282552917553645],[-126.98289683998858,53.282732230474416],[-126.98294511686399,53.282909415317725],[-126.98303275820429,53.28308180140197],[-126.98329234881214,53.283335666605126],[-126.98356590320816,53.283624158002674],[-126.98375682068232,53.28383377368907],[-126.9840025050251,53.28409560455575],[-126.98419417789533,53.28429681448206],[-126.98443988060596,53.284559200009575],[-126.9847002265945,53.28480409234504],[-126.98490598955011,53.285005184237775],[-126.98509711612704,53.285223203734],[-126.98524682252248,53.285397869703615],[-126.9853225557645,53.28562301323841],[-126.98533710958408,53.28588450940233],[-126.9853751004881,53.28606290784818],[-126.98542341978987,53.28624065584483],[-126.98544544643912,53.28641974247734],[-126.98543649227092,53.286599641970184],[-126.98540214144683,53.28677807606225],[-126.98543148779709,53.28694870312734],[-126.98543477999188,53.28712962136],[-126.98550279564623,53.28730608532775],[-126.98557924650758,53.28748192348986],[-126.9856669210782,53.28765486285161],[-126.98577044193154,53.28782262414411],[-126.98589450131355,53.28798462159496],[-126.98604377586045,53.28814024264263],[-126.98621640186175,53.288289502675674],[-126.98640671663478,53.2884313371699],[-126.98660996090867,53.288564100458366],[-126.98681692704749,53.28869459160151],[-126.98702390563393,53.28882620271524],[-126.98723279273324,53.28895836229965],[-126.98744353188717,53.28908994141797],[-126.98765799294236,53.28921924833917],[-126.98787520063443,53.28934572645956],[-126.98809795494952,53.289468240994],[-126.9883252693952,53.28958511499228],[-126.98855902494992,53.28969577703376],[-126.98880012709762,53.28979909014398],[-126.98904948351827,53.289893370550715],[-126.98930802409794,53.28997916618925],[-126.98957484521888,53.29005705819237],[-126.98984902559899,53.2901281566906],[-126.99012965984423,53.290193607542584],[-126.99041486663019,53.29025397316624],[-126.99070374016695,53.29031038151872],[-126.99099440155447,53.290362857218184],[-126.99128690334562,53.290413640678366],[-126.99157936625319,53.29046273861602],[-126.99186992446175,53.290510731315315],[-126.9921576572367,53.290558746916886],[-126.99244897939447,53.2905988887923],[-126.9927438870699,53.29063227738003],[-126.99304057057373,53.290660603955565],[-126.99333812067297,53.2906861259415],[-126.99363565804953,53.290711091556105],[-126.99393416726227,53.290737724461124],[-126.9942299316517,53.29076717620365],[-126.99452396269697,53.290802808596624],[-126.9948144473723,53.2908474334454],[-126.99510315925725,53.290896554179334],[-126.99539187181426,53.29094567420986],[-126.99567886455696,53.29100153056627],[-126.99596920651587,53.29103999590059],[-126.9962699769506,53.29104251018674],[-126.99657077408713,53.29104615288452],[-126.99687615728561,53.29104470988455],[-126.99717973889973,53.29104719826595],[-126.9974735096028,53.29107162123375],[-126.99775205763387,53.29112754354548],[-126.99802443286247,53.291200888301425],[-126.99829144993836,53.29128603756195],[-126.99855208247216,53.29137963869234],[-126.99880720019156,53.2914777763444],[-126.99905577442391,53.291577644677915],[-126.99928960883422,53.29168996131675],[-126.99951236875108,53.291810769492855],[-126.99973422278613,53.29193327001407],[-126.9999755642679,53.292044966373616],[-127.00000023168258,53.29205484254464],[-127.00024205686532,53.292146922216666],[-127.00042372018326,53.29227815877607],[-127.00051783590457,53.2924426342997],[-127.00059239959263,53.29261510856987],[-127.00065113167798,53.2927933273275],[-127.00069678964717,53.29297500856079],[-127.00073119980021,53.29315791395124],[-127.00075804021373,53.293338633282225],[-127.00077827149595,53.29351773212468],[-127.00078440151805,53.29369694979244],[-127.0007802018839,53.2938768191984],[-127.00076756648708,53.29405731541566],[-127.00074834786439,53.29423730239556],[-127.00072628955255,53.29441675755028],[-127.00070045941871,53.29459568873318],[-127.00065956839423,53.29477361740833],[-127.00060832048679,53.29495107758417],[-127.00055614003904,53.295128545575416],[-127.00051524810219,53.295306483114175],[-127.000492256123,53.295485945980545],[-127.00049088128485,53.295665782437524],[-127.00050829949231,53.29584546951019],[-127.00054355022166,53.29602444162424],[-127.00060505997173,53.29620038690245],[-127.00070959352483,53.29636813554035],[-127.00083846754288,53.296531188257376],[-127.00091906315346,53.296719861938115],[-127.00107281092107,53.296861981240085],[-127.00120441980799,53.297021658158634],[-127.00134822614436,53.29718010268542],[-127.00139399841976,53.29736627303334],[-127.00147209381166,53.29752863275961],[-127.00164205465973,53.29768014273046],[-127.00175448877256,53.297823730001845],[-127.0017085860159,53.29802803564053],[-127.00179366818253,53.29820714265328],[-127.00186174350571,53.29838247603847],[-127.00193636319213,53.298556633731465],[-127.00205118554146,53.29872148872044],[-127.00210060159718,53.298902581526335],[-127.00219113942784,53.29907380811935],[-127.00228637068703,53.29924443032824],[-127.00240391466446,53.2994053359891],[-127.00249177623219,53.299582187068246],[-127.00262623704933,53.299742949700196],[-127.00271082094655,53.29990078095844],[-127.00272915997586,53.299999779708784],[-127.00274424659378,53.30008088799494],[-127.00286515392925,53.300264173367836],[-127.00297533157769,53.300431307469005],[-127.00307893938371,53.300598496948545],[-127.00322097878417,53.300760879989845],[-127.00337405495586,53.300913650446375],[-127.00357833337009,53.301045255632594],[-127.00374315634241,53.301177749655196],[-127.00393924017787,53.301320072040056],[-127.00413821689015,53.301465721969706],[-127.0042540014509,53.30163113128564],[-127.00436514869017,53.30179881159266],[-127.00445362223475,53.30196164609271],[-127.00456670426152,53.302131559656395],[-127.00468729203581,53.30230084491887],[-127.00473579132759,53.30248194418387],[-127.00472407587286,53.30266131193948],[-127.00470279063916,53.30283291762494],[-127.00460999853149,53.303002322572546],[-127.00444452839909,53.303158905885034],[-127.00428223043563,53.3033300187302],[-127.00427352643912,53.30351720388198],[-127.00432824986204,53.30368368500337],[-127.00459787716754,53.303756473533],[-127.00484109875268,53.303864782824114],[-127.00511792798623,53.303923499419575],[-127.0054205104819,53.30391926235292],[-127.00572144016385,53.30392455767066],[-127.00602008957885,53.3039130651112],[-127.00631957750183,53.30389763871321],[-127.00661920063125,53.303887256823366],[-127.00691767585323,53.3038684851732],[-127.00721717661104,53.30385362109371],[-127.00751758425875,53.30383706343938],[-127.00781723342409,53.30382779872944],[-127.00811537604005,53.30383479675312],[-127.00841953408724,53.30385686427039],[-127.00871385582995,53.30390030270169],[-127.00892734390052,53.3039836420834],[-127.00920073246526,53.304095038614776],[-127.00941537678209,53.30422599002618],[-127.00963369958339,53.30435410423006],[-127.00986371274136,53.304459710061074],[-127.01012836081821,53.30455885406878],[-127.01038894084186,53.30464571633982],[-127.01067152929511,53.30470885280451],[-127.0109666037037,53.304744436296644],[-127.01126331832891,53.30476936549835],[-127.01156679819383,53.30476342005763],[-127.01186639931082,53.30475190473637],[-127.01216682507548,53.3047358999126],[-127.0124661283959,53.304712616620584],[-127.01276047100747,53.30467817953516],[-127.01315204063661,53.304660274616054],[-127.01341291524015,53.304602583382675],[-127.01362397742786,53.304505545881916],[-127.01387364494013,53.3044115397605],[-127.01414721704288,53.30433470015119],[-127.01442280394743,53.30426288014742],[-127.01470237667446,53.304201109316985],[-127.01499075130724,53.304153263504425],[-127.01528986188364,53.30412157594154],[-127.01559224241021,53.304108906982954],[-127.01589037470484,53.30411532091009],[-127.0161869528971,53.30413463682123],[-127.01648370504694,53.30416178455764],[-127.01677966048419,53.30419454949363],[-127.01707479188605,53.304231793511946],[-127.01736904410899,53.304271849890284],[-127.01766144425825,53.30431304184273],[-127.01795330308815,53.30437104418447],[-127.01828436681545,53.30441694967308],[-127.01852524722145,53.30450451885423],[-127.0188484951904,53.304499505702395],[-127.01901549883439,53.30436977921568],[-127.01926674910483,53.30426398801616],[-127.0195442335532,53.30419326019745],[-127.01982748980366,53.304128640055396],[-127.0201030793436,53.30405737144633],[-127.0203556093318,53.303966123546985],[-127.02055631937876,53.30383051204345],[-127.02074844022039,53.30368992756933],[-127.02095287823072,53.3035537186188],[-127.02114027786014,53.30341205361849],[-127.02126810855069,53.30325633488923],[-127.02130618877351,53.30308234042043],[-127.02149611568204,53.30296754344872],[-127.0216407477562,53.3027685386175],[-127.02178516913749,53.302637890762206],[-127.02191993229403,53.30249723295421],[-127.02206271244567,53.302338023322775],[-127.022232076763,53.30218978903143],[-127.0224261455454,53.30205254614877],[-127.0226401458943,53.30192297435044],[-127.02279948741763,53.301788270688256],[-127.02291455440503,53.301610251203606],[-127.02301497663157,53.3014491642336],[-127.02316448446308,53.301296062046426],[-127.02334806540695,53.30115330571271],[-127.02353163296814,53.301009428755236],[-127.02368095903165,53.30084959585092],[-127.02382656741844,53.300690924182234],[-127.02405237572339,53.30058421228991],[-127.02435925160113,53.30052554416746],[-127.02461976039565,53.30045383005061],[-127.02486143985975,53.300342506878415],[-127.02508881026384,53.300222898957294],[-127.025329690853,53.30011717490454],[-127.02560634049554,53.30005260653522],[-127.0259227573509,53.30000000982583],[-127.02616845476649,53.2999385041044],[-127.02646705023652,53.29988718930867],[-127.02676510644075,53.29985267598778],[-127.02706730305134,53.2998338211719],[-127.02736473847334,53.29981275693589],[-127.02766214781519,53.29979001600578],[-127.0279775543055,53.29977328543312],[-127.0282463603151,53.29973453980523],[-127.02853901308677,53.29967094641424],[-127.02883848996755,53.29965658340715],[-127.02912687237185,53.299610952527416],[-127.029409192087,53.29954800224445],[-127.02969254021217,53.29948840367432],[-127.02996906945127,53.29941933536289],[-127.03023780675305,53.29933913858662],[-127.03050360671755,53.2992544759666],[-127.0307762923687,53.29918208674606],[-127.03106752323728,53.29913753784787],[-127.03136177058171,53.29910136979358],[-127.03165803379223,53.29907078568017],[-127.03195651858276,53.29905419146755],[-127.0322550715457,53.29904039252164],[-127.03254533905347,53.29899529261083],[-127.03283058443482,53.298937346146296],[-127.03310034273574,53.29886049523322],[-127.03335939893492,53.2987691621621],[-127.03363683602782,53.29869952155622],[-127.03389211767272,53.298607664411364],[-127.03412525744892,53.29849415544766],[-127.03436796987519,53.29838839673833],[-127.03464058836009,53.29831375821582],[-127.0348938074032,53.29821462949833],[-127.03514537959846,53.29812504278941],[-127.03540088825525,53.298042708547506],[-127.0356614838613,53.29793791164331],[-127.0359013504331,53.29783106305142],[-127.03617359111067,53.29774129382091],[-127.03645046988304,53.297687337525545],[-127.03671159751764,53.297604386659614],[-127.03693807000985,53.29748812462435],[-127.03713112330371,53.29735030094858],[-127.03734036267977,53.297221308034615],[-127.03758882177891,53.29712053880352],[-127.03784788513421,53.297030316060386],[-127.03809617789872,53.296922268813574],[-127.03835338720519,53.296833181585555],[-127.03859909919733,53.296735239781576],[-127.03872770972454,53.296690973498166],[-127.03886998547519,53.296667320156544],[-127.03903608979056,53.296657468145725],[-127.0391867377394,53.29666847482021],[-127.03948682576457,53.29667929376668],[-127.03960622311034,53.29668104522253],[-127.03977536931608,53.29664146939355],[-127.04004696455732,53.29656458629037],[-127.04031956099237,53.296489925701636],[-127.04059894882026,53.29642361275372],[-127.04087836229711,53.29635898405679],[-127.0411616588746,53.29629879344904],[-127.04142844809392,53.29621746750328],[-127.04170005131137,53.29614113622164],[-127.04196877287846,53.296062024006446],[-127.04222686080185,53.29597068860435],[-127.04249106833758,53.295899457889824],[-127.04264550671883,53.295873452318716],[-127.04279541928155,53.29585477363926],[-127.04309283275511,53.2958342345542],[-127.04323140002904,53.29581284938814],[-127.04336068700094,53.29575793234163],[-127.04354702962745,53.29561623975645],[-127.04373433082037,53.295475658874764],[-127.04383814162445,53.295417039167226],[-127.04398090015854,53.29537489256676],[-127.04411828260955,53.295343988519136],[-127.04427008563465,53.295325847068476],[-127.04456970795985,53.29531817438505],[-127.04486285202775,53.2953531257931],[-127.04515516169957,53.2953920098552],[-127.04544926789492,53.29542751605846],[-127.04559728231018,53.29544582512707],[-127.04574500397261,53.29545292320122],[-127.04604142552992,53.2954301445399],[-127.04632864766563,53.29537719423913],[-127.04661389144655,53.29532089934373],[-127.04690015119756,53.29526740038724],[-127.0471943717673,53.29523174865639],[-127.04746452514243,53.295172788140896],[-127.04773785087363,53.29509082544522],[-127.04801531072711,53.29502339138592],[-127.04829080574783,53.2949531684229],[-127.04859042469533,53.294945485594006],[-127.04888973663137,53.29496356595845],[-127.04917852572333,53.295011999482924],[-127.04947260479375,53.295046375531946],[-127.04976580677166,53.295083555237284],[-127.05004832048154,53.29514380231182],[-127.05033352096913,53.295198987440365],[-127.05062761611794,53.29523391624369],[-127.0509208764393,53.295273342449434],[-127.05120960010203,53.29531896605408],[-127.05148308412096,53.295393855443464],[-127.05176652039378,53.29545352558862],[-127.05205261532268,53.2955070135488],[-127.05221288228094,53.29552688203487],[-127.05234743790437,53.295532977086054],[-127.05244035538766,53.29552822760577],[-127.05251584395282,53.29550235305441],[-127.0526095089473,53.29545222330973],[-127.0528177313145,53.29532208211009],[-127.05301833678034,53.29518865569826],[-127.0532256653764,53.29506076255769],[-127.05345781438099,53.29494834404015],[-127.05369280236873,53.29483645560136],[-127.05390378780359,53.29470461169708],[-127.05411896397794,53.294590092612765],[-127.05438326428302,53.294485785665],[-127.0546327117914,53.294388897399315],[-127.05491389936817,53.29432141395324],[-127.05519916760375,53.29426621847042],[-127.05549434840142,53.29423222265195],[-127.05579271939426,53.29421276352402],[-127.0560924156021,53.2942084133931],[-127.05639072254631,53.294224251851325],[-127.0566883359671,53.29424961504117],[-127.05698749221631,53.29426151840475],[-127.05728746932844,53.29426836721913],[-127.05758734750073,53.29427186378329],[-127.05788695969105,53.29426414853586],[-127.05818640234473,53.29425027607022],[-127.05847769678003,53.294210705214425],[-127.05876691386287,53.29416387374087],[-127.0590652968082,53.294144962007245],[-127.0594226796432,53.294155219476835],[-127.05971939045479,53.29418170358266],[-127.06001689301362,53.29420257764945],[-127.06032290841299,53.29415111063054],[-127.06044292293318,53.293990370788194],[-127.06058651839083,53.29383279049754],[-127.06069035348091,53.29366435173784],[-127.06085480057475,53.293513863246176],[-127.06102493944371,53.29336612924747],[-127.0611363456083,53.293199307534586],[-127.06119675962705,53.29302341312564],[-127.06137260409193,53.29287786846874],[-127.06146508863509,53.29270673371693],[-127.0615311671537,53.29253135314471],[-127.06157462446329,53.29235393385718],[-127.06161901426898,53.29217594149148],[-127.06173041494331,53.29200911911966],[-127.06184085369841,53.29184174948071],[-127.06197116928466,53.291680359933295],[-127.06212516289311,53.29152603685935],[-127.06229529012114,53.29137773617677],[-127.0624246565373,53.29121579881397],[-127.06251430790289,53.29104412367235],[-127.06259545315011,53.29087084837125],[-127.06263607925416,53.29069289808281],[-127.06265848088901,53.290499980316795],[-127.06272736199898,53.290324573723105],[-127.06282110680108,53.29016630700108],[-127.06286831425176,53.28998885338685],[-127.06291176435965,53.28981087762648],[-127.06297876430848,53.28963548764558],[-127.06306935625743,53.28946436818172],[-127.06310715385048,53.289285878191585],[-127.06312423931017,53.28910645317549],[-127.06311970996767,53.28892665697023],[-127.06313681026009,53.288747231784626],[-127.06317083402175,53.288568775491385],[-127.06323312711878,53.288392871631366],[-127.06332087627953,53.288220656839684],[-127.06340297375928,53.28804792787336],[-127.06351530265121,53.287881659707196],[-127.06368539527344,53.28773335689056],[-127.06389259844302,53.28760320424408],[-127.06409218604462,53.28746920237131],[-127.0642623042459,53.28732146314223],[-127.0644571138931,53.28718469783209],[-127.06469012236569,53.28707168383555],[-127.064943260122,53.286974739848084],[-127.06519064681702,53.286873356131025],[-127.06542651893179,53.286762555850686],[-127.06563467238644,53.286633520896586],[-127.0658781988264,53.28652825324274],[-127.06614003330816,53.286440747911264],[-127.06641054039223,53.28636212771168],[-127.06668591995239,53.286290741567996],[-127.06696425189303,53.28622437476187],[-127.0672385703622,53.28614795929426],[-127.06747127039515,53.28606071285487],[-127.06774008977192,53.28595241721345],[-127.06797496049313,53.28583993555592],[-127.06819648081245,53.2857191746158],[-127.06840460636116,53.2855895701567],[-127.06855762256987,53.2854352556071],[-127.0686189557522,53.28525991278006],[-127.06856564025277,53.28508391669823],[-127.06846737671054,53.28491393634539],[-127.06834669627857,53.28474919519229],[-127.0682418936494,53.284580949681995],[-127.0681342953082,53.2844132849707],[-127.06804164294259,53.284242133297745],[-127.06801273779432,53.284027821853044],[-127.06804296562885,53.283848841915294],[-127.06812694234716,53.28367721259287],[-127.06826572710294,53.28351797972911],[-127.06843200065317,53.28336802763749],[-127.06859034593171,53.28320245132161],[-127.06872948204585,53.28305722485513],[-127.06888911226835,53.28290508198841],[-127.0690781947243,53.28276556337764],[-127.0692663150054,53.282625497364805],[-127.06941352416544,53.28246562241437],[-127.06954766773278,53.282308670593906],[-127.06967981737768,53.28214781945308],[-127.06985557297641,53.28200169684265],[-127.07003703342791,53.28185888389673],[-127.07023466733077,53.281723768036834],[-127.07038575557975,53.28156833859909],[-127.07051400043152,53.281401919344674],[-127.07068510283335,53.28125807827078],[-127.07085059668444,53.28111540797906],[-127.07096457152929,53.28094182944382],[-127.07113842474546,53.28079515721044],[-127.07133223611739,53.280657832950034],[-127.07151083290809,53.28051336719549],[-127.07166191143143,53.28035850075353],[-127.07179972584046,53.28019870731742],[-127.07194893796225,53.280044422027544],[-127.07208954645255,53.27988404723177],[-127.07226529839906,53.27973847650322],[-127.07242394243181,53.27958578155643],[-127.0725664830428,53.27942762958865],[-127.0727355780574,53.27927932158267],[-127.07290857127128,53.27913658037184],[-127.07309303369347,53.279001578415695],[-127.07324503363908,53.278846145659735],[-127.0734433761677,53.278702609699025],[-127.07364002350236,53.278566940892475],[-127.0738509649444,53.27843897667687],[-127.07406190533567,53.278311021039656],[-127.07427665817566,53.278185262459125],[-127.07449812030106,53.278064489286294],[-127.07476583842619,53.2779528252587],[-127.07492082390002,53.27780464165655],[-127.07496608887195,53.27762663440007],[-127.0749839803631,53.277443837425395],[-127.07500400686985,53.277271105233105],[-127.07500873495317,53.27708787168465],[-127.07500695224144,53.276907493752915],[-127.07502401129304,53.276728621368186],[-127.07507681614199,53.276552230840835],[-127.07519276818523,53.276383676215076],[-127.07532582425142,53.27622280076147],[-127.0754816197993,53.27606957128906],[-127.07562888321706,53.27591304856272],[-127.07572505807093,53.275742987373924],[-127.07579292915156,53.27556758031566],[-127.07584101243958,53.275390111633314],[-127.07587497173604,53.2752116504753],[-127.07588135990778,53.27501999367045],[-127.07596171625248,53.27485567787679],[-127.07613350618425,53.27470342284284],[-127.07621931012802,53.27453176995828],[-127.07625609209569,53.27435328299699],[-127.076281589845,53.27417434258137],[-127.07628935018914,53.27400003587225],[-127.076189892719,53.27381998755889],[-127.07598564816173,53.27369354192005],[-127.07572505244192,53.273604590898124],[-127.07546428230846,53.27354532865746],[-127.07518015628402,53.2734907592771],[-127.0749463776755,53.27338474773111],[-127.07469109275951,53.2732828565656],[-127.0744867556169,53.273152492079056],[-127.0743250776386,53.27300045232863],[-127.07414111854739,53.2728586981685],[-127.07392659076295,53.27273347151271],[-127.07370826406458,53.27260714941405],[-127.07345870783625,53.272508009438695],[-127.07323400268726,53.27238903165345],[-127.07301575113297,53.27226551325161],[-127.0727892272506,53.272148792000124],[-127.07253964720374,53.27204852090205],[-127.07228823225405,53.2719505157512],[-127.07203590099833,53.27185307409948],[-127.07179095556097,53.2717505186557],[-127.07156624504066,53.27163098204462],[-127.07136933862742,53.27149661904817],[-127.07127674401481,53.27132714458704],[-127.07126651919438,53.27114628666086],[-127.0712422583725,53.27096723162253],[-127.07119829817684,53.27078947483311],[-127.0711580802953,53.27061111952456],[-127.07114038616909,53.27043200515411],[-127.0711405127052,53.27025217417679],[-127.07113877592779,53.27007235103629],[-127.07112387765402,53.2698926556321],[-127.07109867159794,53.26971360899127],[-127.07107436957112,53.269532868994375],[-127.0710219954494,53.26935687314126],[-127.07094896369402,53.269180498958185],[-127.07087793764626,53.26900970893963],[-127.07079461277914,53.26883510373505],[-127.07071039981412,53.268662191652794],[-127.07059629430276,53.26849627195902],[-127.07046353798664,53.26833500224148],[-127.07032612281654,53.26817545956775],[-127.07018683043881,53.268015924695995],[-127.07005314498694,53.26785522759978],[-127.06992037773662,53.26769395735643],[-127.06979694544292,53.26752979716528],[-127.06977082829836,53.267351878764245],[-127.06988971428004,53.267187783889156],[-127.07003126172498,53.26702907789906],[-127.07016526878417,53.26686876350197],[-127.07027844617883,53.26670247872042],[-127.07037274436142,53.266531873273905],[-127.07047363570497,53.266362337684384],[-127.07054152689938,53.26618805312159],[-127.07056985402514,53.26600852311076],[-127.07055844552325,53.26581814690348],[-127.07027625574867,53.265763548624264],[-127.07001617934127,53.26561854833083],[-127.06994300655944,53.26547354759091],[-127.06989808365272,53.265294122377846],[-127.06986163227636,53.26511573225876],[-127.06981206464108,53.26493858979432],[-127.06970638798838,53.26477090787518],[-127.06954292411635,53.26462056267474],[-127.0693478638837,53.26448338286529],[-127.0691639586017,53.264341620365414],[-127.06902376518363,53.26418321254914],[-127.06893675876465,53.26401088882088],[-127.06887876763096,53.26383437754419],[-127.06887328436582,53.26365515232366],[-127.0688950510765,53.26347623737158],[-127.06889050014048,53.26329644796833],[-127.06889252883289,53.26311659031479],[-127.06891334900337,53.262937692796314],[-127.06894262631684,53.262758710105295],[-127.06893995303322,53.26257890372058],[-127.06892976846713,53.262399156021715],[-127.06894683333343,53.262219727540554],[-127.06898363531377,53.26204124169382],[-127.06903079972403,53.26186434763882],[-127.06909772992412,53.26168895167345],[-127.06916842909585,53.261514077439884],[-127.06922594119473,53.26133764575683],[-127.06929006068886,53.261162274948255],[-127.06936924301485,53.26098900926597],[-127.0694267535598,53.26081257743732],[-127.0694503943786,53.260633654156415],[-127.06945898493815,53.26045373707634],[-127.06947322274704,53.26027433379206],[-127.06949686306768,53.26009541045176],[-127.06949876147623,53.259910516010464],[-127.06958109074225,53.25975010258825],[-127.06979163858347,53.259609830954396],[-127.07003366922595,53.259489434479505],[-127.07023215909881,53.259354873110766],[-127.07043444450119,53.25922250912096],[-127.07064529926757,53.259094558279635],[-127.07088770881487,53.258988722667304],[-127.07113491754266,53.25888733405892],[-127.07141806102862,53.258833235906586],[-127.071717646707,53.258834447329114],[-127.07200471491632,53.25878703513373],[-127.07226646438464,53.258703440262565],[-127.07248860481866,53.25857649554868],[-127.07274057912687,53.2584784218493],[-127.07299355526395,53.2583825705162],[-127.07324749090324,53.25828727466613],[-127.07349947584702,53.25818975496613],[-127.07374379345967,53.2580855812812],[-127.07396893468174,53.25796645878795],[-127.07421611566913,53.257864499118774],[-127.07447099084159,53.25776974781836],[-127.07476662482509,53.25768975757959],[-127.07497982108826,53.257580825548],[-127.07515260377492,53.25743359860789],[-127.07525629128925,53.25726514394752],[-127.07531189464144,53.25708872594083],[-127.07534301853761,53.256909733070515],[-127.07534338448353,53.256739418021674],[-127.07536579476428,53.256550410875995],[-127.07533870118982,53.25637138091121],[-127.07528818961048,53.25619424836838],[-127.0752181426243,53.25602457143083],[-127.07513663173194,53.25584715502536],[-127.0750673745843,53.25567186845833],[-127.07501686475123,53.25549472677362],[-127.07499258200143,53.25531567118037],[-127.07498425110225,53.25513591527077],[-127.07499095390592,53.254956578874676],[-127.07500986744651,53.25477713181385],[-127.07504286811151,53.25459811283214],[-127.07509469987643,53.25442117308062],[-127.07516064689106,53.25424578159008],[-127.0752256621692,53.254070398486604],[-127.07528031588566,53.25389342405168],[-127.07532932221018,53.25371650972542],[-127.07537080490167,53.25353853412189],[-127.07540192593235,53.253359540904164],[-127.07542364553835,53.25318006816769],[-127.07544725645603,53.253001134018206],[-127.07548026825553,53.25282267933727],[-127.0755320960098,53.25264573923042],[-127.07560180723661,53.252470868917655],[-127.07567717923615,53.25229651193181],[-127.07574878097502,53.25212218906666],[-127.07582132828324,53.25194785756172],[-127.07590682679091,53.25180254087801],[-127.0759899946853,53.251602906694664],[-127.07607573813553,53.25143069622361],[-127.07614921403353,53.25125635600846],[-127.07621513820597,53.25107984328872],[-127.07631410609909,53.25091087402738],[-127.07641116740577,53.25074080148634],[-127.07654849544863,53.250567001985964],[-127.07662605144657,53.250404949572456],[-127.07672500172364,53.2502354153193],[-127.07685229521798,53.250072911240245],[-127.0770127741613,53.249923551416785],[-127.07723216036192,53.24980111256781],[-127.07745249055475,53.24967922047571],[-127.07767281947609,53.2495573279665],[-127.0779084504956,53.24944650074638],[-127.07812973656218,53.24932571912998],[-127.07837493675856,53.249222082591544],[-127.07862013598071,53.249118454502344],[-127.07887593763287,53.24902536951008],[-127.07916655659338,53.24897286013945],[-127.07962508991248,53.248877928909465],[-127.0797750197743,53.248867044617036],[-127.07969063725011,53.248687971569616],[-127.07969660284066,53.24851704888777],[-127.07961518771526,53.24834355114225],[-127.07951419921818,53.24817584282267],[-127.07934632252248,53.24803506983375],[-127.07918381992408,53.24788471916698],[-127.07908001165326,53.24771647139694],[-127.07895380781012,53.247553473882775],[-127.0788354994332,53.24740552639209],[-127.07869021166502,53.24723036793715],[-127.07855191722615,53.247071397127314],[-127.07841545729201,53.24691128899483],[-127.07829858658174,53.24674596494569],[-127.07817425130592,53.24658238486449],[-127.07800247395811,53.246435478296746],[-127.07780655276619,53.24629943990572],[-127.07761249632175,53.246162263772305],[-127.07741556093208,53.246022872517],[-127.07735019316513,53.24585259774775],[-127.0773379999549,53.24566894996239],[-127.07737008120958,53.24549105815532],[-127.0774087100396,53.24531255108593],[-127.07744922994135,53.24513459152703],[-127.07749255725165,53.24495659746664],[-127.07753589944127,53.24477861219898],[-127.07757641806666,53.24460064358502],[-127.07761981584312,53.24442545445936],[-127.07758044204607,53.24424317398927],[-127.07748316818959,53.244073189032626],[-127.07735417325192,53.24391020605225],[-127.07720844346308,53.24375410676564],[-127.0770256907985,53.243617947425626],[-127.07694869532676,53.24343320265253],[-127.07693680450376,53.24326132139365],[-127.07699047694541,53.24308379812801],[-127.07710078425414,53.24291864153136],[-127.0772602043489,53.242765372973444],[-127.0773657679315,53.24259801821199],[-127.07739969443165,53.24241955356663],[-127.07739605551764,53.24223975391725],[-127.07738301707973,53.24206003067569],[-127.07736250074726,53.24188094007003],[-127.07733540811894,53.241701909184705],[-127.07730456204324,53.24152291237384],[-127.07726527737974,53.24134455691536],[-127.0772092450688,53.241171391235945],[-127.07718206786421,53.24098899958196],[-127.07713155170298,53.240811857569994],[-127.07706887306362,53.240635955429546],[-127.07702398902367,53.240458206436784],[-127.0770250790475,53.240280039900796],[-127.07701096283056,53.24016811989158],[-127.0766933262097,53.240042704433286],[-127.07695096832335,53.239950170701256],[-127.07712940217418,53.239806804691604],[-127.07732302046784,53.2396700323109],[-127.07751662310977,53.23953269501173],[-127.07769502470582,53.2393882078965],[-127.07786868298089,53.23924208736065],[-127.07806324216638,53.23910530513372],[-127.07827301316918,53.23897678339524],[-127.07850954366376,53.238866501395336],[-127.07876912213293,53.238777307394734],[-127.07905101859345,53.2387164775862],[-127.0793443461997,53.23866226595851],[-127.07961393547876,53.238597064873765],[-127.07988703327962,53.23852286734699],[-127.08017686280685,53.238478769841734],[-127.08047368293433,53.238450850464865],[-127.08077061671175,53.23842797596537],[-127.08108511413644,53.23839430048717],[-127.08137020099646,53.238421389544506],[-127.08163349965143,53.23851422945937],[-127.08193112167173,53.23851823739871],[-127.08222400112948,53.23848307091977],[-127.08250099050373,53.238414434228794],[-127.08276538607672,53.23833022508471],[-127.08301145718151,53.23822657868945],[-127.08315479244499,53.23807007795095],[-127.08330663686496,53.237915749218025],[-127.08349925246819,53.237777290306994],[-127.08364298959833,53.23767289228285],[-127.08401798629951,53.2375831875738],[-127.08431577165656,53.23755693487388],[-127.08467386851326,53.23754021415013],[-127.0851226055225,53.237544507954176],[-127.08540743596839,53.2374892384197],[-127.08570621295529,53.23750163437862],[-127.08599734431974,53.23754490848361],[-127.08625770998471,53.23763328313483],[-127.08648799768493,53.23775610313619],[-127.08664996875679,53.237886280604776],[-127.08685451866138,53.238030069211455],[-127.0870656308515,53.238173797312],[-127.08725086896082,53.23829647303685],[-127.08746859733654,53.23840483998437],[-127.08764192873072,53.238502417843804],[-127.08795085274714,53.23858081484096],[-127.08827785321455,53.23863159773685],[-127.08852542537673,53.23873297493651],[-127.088772082194,53.23883491578954],[-127.08899829145109,53.2389807428492],[-127.08901018693805,53.23915094743388],[-127.08900168372553,53.23933085896893],[-127.08909336230786,53.23950145133616],[-127.0892698059721,53.23964661440142],[-127.0895082053459,53.2397553524971],[-127.08978500617543,53.239825084974804],[-127.09007436766863,53.239871726924086],[-127.09035747162321,53.239930751045776],[-127.09063786937914,53.23999428132687],[-127.09091103623254,53.240067961836665],[-127.09116776096721,53.240159720776994],[-127.09143184966432,53.240245244243134],[-127.09165164881799,53.240360872170996],[-127.09174892782158,53.24052916998904],[-127.09193926528741,53.24066692255028],[-127.09213890154744,53.24080066299426],[-127.0923376221229,53.24093553202385],[-127.09253078583241,53.241073248645435],[-127.0926961028437,53.24122299110436],[-127.09285398628053,53.24137560752701],[-127.09303602322471,53.241518472524774],[-127.09319948130674,53.2416687871728],[-127.0933796728276,53.24181278913931],[-127.09355519493637,53.241957954372964],[-127.09372238151366,53.24210712239788],[-127.09392018236358,53.242241997268074],[-127.09413462920281,53.24236775436426],[-127.09431704038674,53.24248820424955],[-127.09459673048093,53.2425959865006],[-127.09482039199615,53.24271437865283],[-127.0950863368905,53.24279875646233],[-127.0953449067003,53.242887692698815],[-127.09559988285893,53.24298337552073],[-127.09584835687524,53.243081367812934],[-127.09616005208437,53.24311938062161],[-127.09643557868245,53.24310226746105],[-127.0967424307525,53.2430624542811],[-127.09704205040026,53.24306976758218],[-127.09734021548083,53.24305692484939],[-127.09763744947566,53.243080510240475],[-127.0979369970859,53.2430844604936],[-127.09823645682094,53.24308560510872],[-127.09853594626777,53.24308731341745],[-127.09883542072365,53.24308902110905],[-127.09913499764983,53.243094088552525],[-127.09943461793583,53.243101395809575],[-127.09973339486176,53.24311207158861],[-127.10003057224542,53.24313341055079],[-127.10034202104505,53.24312603949032],[-127.10064508956174,53.243120986354626],[-127.10093902121616,53.24312610163495],[-127.10122936015262,53.24313685197789],[-127.10152892268967,53.24314191351415],[-127.10182852952875,53.243148094369346],[-127.10212781448158,53.243142507869884],[-127.1024258471066,53.24312461586695],[-127.10272377702641,53.24310279788241],[-127.10301768962502,53.243070932128035],[-127.1032985756132,53.24300724846667],[-127.10356295846455,53.242922993164576],[-127.10382827119697,53.242838728605115],[-127.10410627327126,53.24277283782806],[-127.10440010920725,53.242738163625106],[-127.1046959534665,53.24270851665758],[-127.1049887991769,53.242671618198834],[-127.10528369661125,53.24264197857771],[-127.10556264083105,53.242576066602936],[-127.10583568944334,53.24250068926941],[-127.10606931580848,53.2423892675853],[-127.10629143033427,53.242268424176636],[-127.106492854068,53.24214608816064],[-127.10673373459159,53.24202506880031],[-127.10695299363731,53.241902574490254],[-127.10715782991683,53.24176732429931],[-127.10739149266534,53.24165757580898],[-127.10761358476223,53.24153616528965],[-127.10783376962351,53.241413660625746],[-127.10805110086356,53.2412900527421],[-127.1082627568831,53.24116426546061],[-127.10843290097912,53.24103101338645],[-127.10860322592153,53.24086863559764],[-127.10883968782345,53.24075829322784],[-127.10909532784689,53.240664022597095],[-127.10936163491073,53.24058254173179],[-127.10963082222925,53.24050326532194],[-127.1098999789276,53.24042343281179],[-127.11016628292347,53.24034195012944],[-127.11043059112335,53.240255994598776],[-127.11069486903537,53.24016892722225],[-127.11095338291146,53.24007686655051],[-127.11119565612749,53.239973752569426],[-127.11140534525927,53.239845727927495],[-127.11158073649112,53.23969786451057],[-127.11172490217731,53.23954076488389],[-127.11185390556588,53.239378204760264],[-127.11202079618798,53.23922873510296],[-127.11223811880407,53.23910568399338],[-127.11246306512456,53.238986478187286],[-127.11268801003025,53.238867836676185],[-127.11290342301997,53.238743125950315],[-127.11309785122805,53.2386062774097],[-127.1133075281843,53.238477693544944],[-127.11354684586473,53.238370120312496],[-127.1137880538879,53.23826309355325],[-127.11403791961158,53.2381643841638],[-127.11431682061692,53.23809845144596],[-127.11461485670883,53.23808220460982],[-127.1148994606914,53.238126034143505],[-127.11507229302039,53.23827343463405],[-127.11522653710598,53.2384277326382],[-127.11538914587932,53.238579146052004],[-127.11559528911165,53.23870830458676],[-127.11583281997088,53.23881756329946],[-127.11607864188476,53.238920576321576],[-127.11632628218167,53.23902188650217],[-127.116579421047,53.23911755090134],[-127.11682802448921,53.23921941570552],[-127.11706968494613,53.239342634751054],[-127.1172560370949,53.23950390640375],[-127.11738728407947,53.23963993462989],[-127.11757773050213,53.239778757352845],[-127.11779315148257,53.23990334270303],[-127.11805485540793,53.24000340522786],[-127.11847513686108,53.240243144759454],[-127.11872188967571,53.24034558782072],[-127.11896861378183,53.240446901189046],[-127.11921811729398,53.24054707629111],[-127.11948040334353,53.24063311957694],[-127.11975362430947,53.240707289391665],[-127.12004036565963,53.240760050502566],[-127.12033238140744,53.240799306227075],[-127.120627027382,53.240831257664446],[-127.12092594219564,53.24084748113035],[-127.12122543139417,53.240850252503776],[-127.12152466802516,53.240842941075954],[-127.12182054647782,53.240815491789114],[-127.1221173554326,53.240788032955926],[-127.12241120753411,53.24075499889606],[-127.1227019240722,53.240709668363664],[-127.12298479032941,53.240652086023445],[-127.12326564514329,53.24058891958502],[-127.12354064525564,53.24051796448514],[-127.12378472247636,53.24041313119693],[-127.12397984563096,53.24026785887193],[-127.1242225798496,53.240183762025296],[-127.1245166348044,53.24015856421664],[-127.1248233579684,53.24015060869355],[-127.1251263275226,53.240143252717004],[-127.12542675789044,53.24014600450854],[-127.12572326511574,53.240177369861335],[-127.126015666161,53.2401605832511],[-127.12629448715018,53.240092391118516],[-127.12657599534373,53.24001912608524],[-127.12686450165064,53.239926745468225],[-127.12706223122491,53.23984419084701],[-127.12723891058558,53.23964137830652],[-127.12738429257253,53.23949713770098],[-127.1276111199292,53.23937957014665],[-127.12784941546016,53.23927029230298],[-127.12809445037675,53.23916711705941],[-127.12836068144566,53.23908447326214],[-127.1286464414474,53.239030211145796],[-127.12893824985977,53.238991577691486],[-127.12923196438012,53.23895404585851],[-127.12952476238833,53.23891707778793],[-127.12981957158064,53.238885701271265],[-127.1301174574468,53.23886381443101],[-127.13041439537484,53.23887667125323],[-127.13067397608945,53.2389666330201],[-127.13084219772259,53.239114619707586],[-127.13099741819774,53.23926832366614],[-127.1311869919168,53.23940769802365],[-127.13141998757598,53.239520886410475],[-127.13169766671825,53.23958546661658],[-127.13199581116807,53.239608392477855],[-127.13228152429306,53.2396572076951],[-127.13253048419213,53.239736070853716],[-127.1327628398687,53.23989520308447],[-127.13288618058601,53.240049773836986],[-127.13299297683987,53.24021682797444],[-127.1330259194832,53.24039522785419],[-127.13301949534707,53.2405756890471],[-127.13299706606786,53.24075462686873],[-127.13295585344127,53.240932614651165],[-127.13290521167013,53.24110958094264],[-127.13285647619226,53.2412870847481],[-127.13280867120412,53.24146457962519],[-127.13277308767678,53.24164307822453],[-127.1327670226841,53.24183698178155],[-127.13267462287679,53.24199640983207],[-127.1325806759756,53.242168742735544],[-127.13241940208837,53.24231539128527],[-127.13222877287279,53.24245222643181],[-127.13211025892153,53.24261863518977],[-127.13204545226468,53.24279236567012],[-127.13201803283695,53.24296014573812],[-127.1320119041594,53.24315180870731],[-127.13200640610108,53.24333169597024],[-127.13201496238192,53.24351089330688],[-127.13199725709346,53.24369090601221],[-127.13198422131921,53.243870309400315],[-127.13197025447795,53.24404972165527],[-127.13195723349382,53.24422912486331],[-127.13194233532667,53.24440910173219],[-127.13193024508146,53.24458849601827],[-127.13194257034117,53.244768221999514],[-127.1319417418022,53.244947508772405],[-127.13189957464395,53.24512550482373],[-127.13183953839334,53.2453019951057],[-127.13178983271283,53.24547895148675],[-127.13177586451428,53.24565836356727],[-127.13178631218166,53.245838098412825],[-127.1318080071456,53.24601717015178],[-127.1318607257002,53.246198186808584],[-127.13187390711575,53.24637454300063],[-127.13185223561254,53.24654674083799],[-127.13199108906117,53.246719091970846],[-127.13220573208933,53.246846464565046],[-127.1324092189225,53.24697841628909],[-127.13261733222916,53.24710752674178],[-127.1328346819541,53.24723094615968],[-127.13306036710773,53.247349803591604],[-127.13328324555005,53.24746925214344],[-127.13347377949525,53.24760804876618],[-127.13365134061854,53.24775258049558],[-127.13381313542509,53.247904541382205],[-127.13394231510497,53.2480657777814],[-127.13400432565925,53.24824222260634],[-127.13404196412642,53.24842057665834],[-127.13410863085741,53.24859585639768],[-127.1341837226894,53.24876993503889],[-127.13427281113773,53.24894108303518],[-127.13437965041703,53.249109255490616],[-127.1344911608684,53.249276262676],[-127.13458772996839,53.249446209410905],[-127.13466001718119,53.24962087925983],[-127.13472855038661,53.24979557600199],[-127.13481205665708,53.249968453196665],[-127.13488904619382,53.250143077889504],[-127.13496136570281,53.250318858732],[-127.13503183894193,53.25049578664028],[-127.13510509075053,53.2506715584534],[-127.13518392990377,53.25084504472516],[-127.1352730116065,53.251015627202385],[-127.13537511429385,53.251181603017734],[-127.13552003318263,53.25133372301016],[-127.13573660241545,53.25146218232101],[-127.13596428597889,53.25158437659579],[-127.1361973465817,53.25169755501709],[-127.13643042345147,53.25181073283003],[-127.13663023817712,53.251944397720756],[-127.13678372512732,53.2521003602775],[-127.13694457154769,53.25225120541286],[-127.13715644912688,53.25237915135937],[-127.1374070121579,53.25247926953582],[-127.13768116692428,53.2525489166761],[-127.13796352133237,53.25260895588615],[-127.13825042634018,53.25266390407976],[-127.13853640114827,53.25271942523976],[-127.13881697120647,53.252782841031305],[-127.13907573955238,53.25287392199636],[-127.13927836095642,53.25300643504136],[-127.13935810731626,53.253178224603985],[-127.13938359282571,53.25335725820629],[-127.1393555664563,53.25353624101658],[-127.13926722299394,53.253707403881315],[-127.1391108254302,53.253861292311115],[-127.13891163472977,53.25399542254373],[-127.13868668313617,53.254114677567046],[-127.13848652851934,53.25424769580681],[-127.13833296487041,53.254402676413825],[-127.13822759816134,53.25456951975833],[-127.13820052746783,53.25474961344704],[-127.13817625022077,53.25492856878553],[-127.13815572755497,53.255108043841844],[-127.13814272943348,53.25528744668875],[-127.13814479601805,53.255468945968595],[-127.13814497001202,53.25564934290004],[-127.13812063159259,53.25582661350858],[-127.1379747215968,53.25598712247155],[-127.13793615789031,53.2561589270118],[-127.13796010867712,53.256350856447526],[-127.13809111698768,53.256508153250735],[-127.13834850724815,53.256581877008045],[-127.13865115926527,53.25659297426681],[-127.13894953339022,53.25661980761644],[-127.13920475163933,53.256717080628206],[-127.13943793405443,53.256798313180965],[-127.13962142273239,53.25691700769751],[-127.13974043907228,53.257082252350166],[-127.13984644993496,53.257252668506],[-127.13994682909612,53.25742313867182],[-127.14002107488619,53.257599462299595],[-127.14011112162737,53.257770031592926],[-127.14026728493543,53.25791979661357],[-127.14059033746703,53.258129583937134],[-127.14087722311264,53.25818229418852],[-127.14116502525079,53.25823386548525],[-127.1414553949463,53.2582764564514],[-127.14175208665245,53.25831001300879],[-127.14204871824079,53.258340772669925],[-127.14234170132102,53.25837604867273],[-127.14260749128266,53.25844688568741],[-127.1428434161384,53.258559458872334],[-127.14308573960844,53.258665811746],[-127.14330959176338,53.25878299124345],[-127.14348262280198,53.258930904340275],[-127.14367232597338,53.25907025730269],[-127.14380655200233,53.25924151845287],[-127.1439475612995,53.25938582234651],[-127.14413914565891,53.2595251564263],[-127.14427954459752,53.259681791170905],[-127.1443369138183,53.259858274864555],[-127.1444755280027,53.260017732281426],[-127.14466894894278,53.260155362576114],[-127.14487159245986,53.26028674537025],[-127.14500930917013,53.260447887069496],[-127.14518290470879,53.26058179062797],[-127.14547781394673,53.2606176051558],[-127.14574548567225,53.26068840811463],[-127.1459454326182,53.26082374132159],[-127.14611190187907,53.26097171397097],[-127.14621323111574,53.26114104916958],[-127.14629859329706,53.26131053853337],[-127.14620934569808,53.261482279447115],[-127.1461991584677,53.26166053525014],[-127.146335892622,53.26181999966626],[-127.14645665962595,53.26197906243861],[-127.14656525673482,53.26217409825059],[-127.14666063820715,53.26233172985431],[-127.14675005261388,53.2624776494556],[-127.14686663806118,53.26265523574399],[-127.14686486529244,53.262832289703546],[-127.1469194708864,53.263009919202275],[-127.1469721690538,53.263187011340584],[-127.14702959980914,53.26336516921709],[-127.14706153651991,53.26353798004008],[-127.1471003423235,53.26372192033018],[-127.14700906294581,53.26388807882566],[-127.14686224288864,53.26404972738255],[-127.1468105174927,53.264219976360145],[-127.14698825495935,53.264366727252614],[-127.14714460387204,53.26452151908584],[-127.14723565591507,53.264692637783426],[-127.1472883572648,53.264869720664684],[-127.1473176391603,53.265048715158436],[-127.14734035629563,53.265227773104584],[-127.14736589825927,53.265407368442524],[-127.14740359335946,53.26558516103954],[-127.14745724298211,53.26576223461221],[-127.14751089329823,53.26593931710602],[-127.1475401919787,53.26611886705951],[-127.14755072714873,53.26629916316739],[-127.1476883214518,53.266454700304074],[-127.14787811810274,53.26659573076198],[-127.14806971768397,53.266733937783115],[-127.14827606783086,53.266861917408434],[-127.14852671268781,53.26696089115398],[-127.1487746256304,53.267062696515175],[-127.1489893618151,53.2671883527651],[-127.14898950610062,53.26736595258603],[-127.1489559231944,53.26754723142796],[-127.14892980619763,53.26772620595444],[-127.14894877574265,53.26790585546647],[-127.14898466261963,53.26808535013091],[-127.14908502808562,53.26825300665176],[-127.14922648188373,53.26841186604345],[-127.14938283885402,53.26856609898927],[-127.1495504040721,53.26871798219084],[-127.14975858541635,53.26884370053907],[-127.15004018045232,53.268905960042936],[-127.15031824928006,53.26897666117271],[-127.15059963214495,53.26906581302257],[-127.15087408417367,53.26914158562386],[-127.15102212833968,53.26930037898486],[-127.15114246087484,53.26944206898748],[-127.151223248795,53.269649139475504],[-127.15128255379628,53.26982615629054],[-127.15127516502265,53.27000326431347],[-127.15113857021608,53.270160901197016],[-127.15120906787394,53.27033501271427],[-127.15122241387446,53.270514160515255],[-127.15119460993331,53.27070043035966],[-127.15114185553816,53.270866773501794],[-127.15104408706453,53.271036349913636],[-127.1510355517477,53.271205625542116],[-127.1510750079062,53.27130889196649],[-127.15131055212508,53.271197355691825],[-127.15154995840224,53.27108970762869],[-127.15179218852363,53.270982596382666],[-127.1520411968799,53.27088269748375],[-127.15232327828627,53.27082449055448],[-127.15262146954416,53.27080590811622],[-127.15292037951968,53.270813653778866],[-127.15321751650639,53.27079059814879],[-127.15351589296831,53.27081346953802],[-127.15380060459901,53.27085159507277],[-127.15410316656254,53.270889555308024],[-127.15440320791221,53.2709045649027],[-127.15468848469133,53.27092868126079],[-127.15500324498623,53.270932341299265],[-127.15529949640802,53.27091153004122],[-127.15558163483563,53.27085555573952],[-127.15585963307798,53.2707856195147],[-127.15614253268053,53.27072292250721],[-127.15643349632927,53.27068087071133],[-127.15673035424675,53.2706477246194],[-127.15702331768331,53.27061013381086],[-127.1573054211058,53.27055303521785],[-127.15757261657978,53.27046583723881],[-127.1578369553412,53.270377537065436],[-127.15811539236743,53.270323842702325],[-127.15841399234027,53.27032036372154],[-127.15871871865343,53.27033476089626],[-127.1590185884464,53.2703435933311],[-127.15931760385513,53.27035523905024],[-127.15953713859405,53.27041416521749],[-127.15974630459321,53.270539856686405],[-127.15996750184708,53.27072761263261],[-127.16005892026635,53.27080739399249],[-127.1601765933101,53.27098776226837],[-127.16038283178544,53.2710412144507],[-127.16073207653493,53.27106860808059],[-127.16105551307383,53.27108001062203],[-127.1615071909278,53.27100724136735],[-127.16182558733506,53.27107415963792],[-127.16201171762717,53.27118214491315],[-127.16222837646728,53.271306638218796],[-127.16245651199407,53.271404682837726],[-127.16260760502469,53.27146819095875],[-127.16267408373247,53.2715627809537],[-127.16293402691814,53.27165604007804],[-127.1631791927376,53.27175839838875],[-127.16335095302368,53.27178753270023],[-127.16346939980247,53.271790853536885],[-127.16376920332031,53.27179631326753],[-127.1640674272863,53.271778822265034],[-127.16436692240052,53.27177364338035],[-127.16466638623697,53.27176678779966],[-127.16496609756221,53.27176944867939],[-127.16528492993137,53.271783681681555],[-127.1654846212676,53.27190609475257],[-127.16557757986779,53.272074939908244],[-127.16563409244948,53.27225030112826],[-127.16572893033245,53.272419118727605],[-127.16595833653629,53.272528913796805],[-127.16625320745715,53.27255963117034],[-127.16653930751828,53.27261340845996],[-127.16677995447509,53.27272140626619],[-127.16716412008861,53.272856569159856],[-127.16738838411862,53.27288181988615],[-127.16756051748204,53.272754067527806],[-127.1677263651844,53.272603411266644],[-127.16791889304766,53.272465938037286],[-127.168135245825,53.27234112005327],[-127.16835727819314,53.272217921990006],[-127.16860541644144,53.272121913878514],[-127.16889620625211,53.272073110327106],[-127.16917819493653,53.27201206740553],[-127.16942996149457,53.271979333767845],[-127.16972450624905,53.27186270619402],[-127.16996965898682,53.27176056639022],[-127.17021283925227,53.27165508405046],[-127.17045219992409,53.271547397889734],[-127.17069151265822,53.27143802648829],[-127.17092891520934,53.27132756190853],[-127.17116633193099,53.27121765245737],[-127.17139992902848,53.27110553923816],[-127.17164842540812,53.2709887964986],[-127.17184410021127,53.27086416665088],[-127.17207168608725,53.270738665549665],[-127.17227390886282,53.27061341452315],[-127.17249695995166,53.27049355979946],[-127.17271903210693,53.270372593821634],[-127.17294014100419,53.270251081166016],[-127.17316030141876,53.27012901272794],[-127.17337951335008,53.270006388512655],[-127.17359489084086,53.269881569776935],[-127.17380644799509,53.2697539827114],[-127.17401131405077,53.26962253524586],[-127.1742142698858,53.26948999478005],[-127.17441627766793,53.26935745436358],[-127.17463262647514,53.26923374451711],[-127.17483744080467,53.26910061979889],[-127.17503756631208,53.26896754113141],[-127.17520906885376,53.26881905869766],[-127.17536723636877,53.268663420398994],[-127.17552541913109,53.26850891116853],[-127.17569699550276,53.268362668208596],[-127.17590112080147,53.268239068033914],[-127.17617895906044,53.268165167970125],[-127.17644714103383,53.26808183431753],[-127.17667106716067,53.26796084217669],[-127.17693203599627,53.26782098963737],[-127.17697343226394,53.26765474638607],[-127.17699567470395,53.267475811909215],[-127.17706882352661,53.26730308646827],[-127.17728040470914,53.2671777335524],[-127.17756442970419,53.26712393758397],[-127.17786360817838,53.26710807827514],[-127.17816295919434,53.26709894841173],[-127.17847208320163,53.26706954292004],[-127.17874608181435,53.26702648386047],[-127.17905311569133,53.26702343365325],[-127.17940766873849,53.26700646447467],[-127.17964611892677,53.26693518855111],[-127.17987790133063,53.266826993219695],[-127.18012293765503,53.266722591816624],[-127.18037186963053,53.26662319783924],[-127.18065220789236,53.26650499824213],[-127.18090063765341,53.2664549008415],[-127.18118449649289,53.266395495283355],[-127.18145860447194,53.26632329596481],[-127.18168206126938,53.266219661859964],[-127.18188269117697,53.26607256439261],[-127.18214731237161,53.26599709644424],[-127.18244565479698,53.26601933058991],[-127.1827426740149,53.266027575488124],[-127.18303659144516,53.265992151311224],[-127.18332339406895,53.2659371931891],[-127.18358488909487,53.26585110399507],[-127.18377831319647,53.265715280024764],[-127.18393080391743,53.26555968626393],[-127.18409752722815,53.26540956169824],[-127.18424910065039,53.26525509712888],[-127.18435611215229,53.265085954922654],[-127.18447456192843,53.26492230089488],[-127.1846669382072,53.264783124314356],[-127.1849033980007,53.26467487210362],[-127.1851871290742,53.264611531801954],[-127.18540340616296,53.264487237446986],[-127.18560920511656,53.26435800962375],[-127.18585716299478,53.26425804875371],[-127.18600601188719,53.26410753518738],[-127.18612145514521,53.26393774218291],[-127.18622649864682,53.26376525625061],[-127.18641919422242,53.263637834169806],[-127.18667006540423,53.263541768591715],[-127.18693240657889,53.263452866477095],[-127.18719853366756,53.2633650463847],[-127.1875114461032,53.26327115498277],[-127.18769821668467,53.26316675572728],[-127.18789439200039,53.263029211837946],[-127.18812316600491,53.26291599212187],[-127.188334423706,53.26278053743181],[-127.1886572078547,53.262670857085254],[-127.18887589230262,53.26266586940081],[-127.18918112566257,53.26269978711148],[-127.18948037962093,53.26268837935684],[-127.18977800754581,53.26268539536353],[-127.19008848047378,53.26270525647313],[-127.19037605763558,53.262712456265795],[-127.19068441629294,53.26272392881688],[-127.19097732661872,53.26272042442645],[-127.19127997342288,53.26272915600077],[-127.19158254120232,53.262735081871234],[-127.19188010673346,53.26273040800503],[-127.19216951242242,53.262702293880736],[-127.19243174190916,53.262610019028926],[-127.19270285543489,53.26253334125774],[-127.19300420347761,53.26249613208075],[-127.19331183320267,53.26248183365966],[-127.1935924527296,53.26250870882912],[-127.1938147616599,53.26263196817874],[-127.1940507672716,53.26274164330269],[-127.19435193303967,53.26276438370522],[-127.19464855574095,53.26279277158073],[-127.19495955006298,53.26279748351054],[-127.19524797582383,53.26276824226931],[-127.19550830553536,53.26267542392796],[-127.19567007238922,53.262551094806504],[-127.19590640791728,53.26240697437696],[-127.1961140420491,53.26227770031119],[-127.19632547732874,53.26214951699911],[-127.19646655912805,53.26205788975868],[-127.19663832245388,53.26192169765747],[-127.19672925957295,53.26175046453074],[-127.19684099341481,53.26158406826933],[-127.19693573182649,53.261414472863045],[-127.19688104493909,53.26124134699618],[-127.19670507197975,53.261095780679526],[-127.19654954868086,53.26094327591092],[-127.19640237246547,53.26078676950107],[-127.19623754194946,53.26063660813532],[-127.19606897379617,53.26048759575531],[-127.19592274727196,53.260331079173774],[-127.19581000270502,53.260163584689316],[-127.1956387241886,53.2600179605142],[-127.19548320800143,53.25986489850112],[-127.1954209395469,53.25968905152373],[-127.19540647820821,53.25950991710277],[-127.19542202655585,53.25932935980292],[-127.19539939316465,53.25915982746371],[-127.19527606508974,53.258982910313954],[-127.19516894337877,53.25881479378485],[-127.19505811414089,53.258647834998904],[-127.1949053822122,53.258493623644924],[-127.19474179468598,53.25832103762009],[-127.19470520235481,53.258156127665465],[-127.19462238104983,53.25798328390441],[-127.19451247168568,53.25781575954889],[-127.19434502553388,53.25767233588684],[-127.19422653512167,53.257500415636265],[-127.19413530822446,53.25732933238965],[-127.19406463962564,53.257154689613124],[-127.1939874393718,53.25698122405744],[-127.19389433734958,53.256810168435635],[-127.19380696687517,53.25667602266327],[-127.19370537494673,53.256470316744156],[-127.19359925945281,53.25630386485158],[-127.19338832742417,53.256182731595686],[-127.19318640494909,53.256048626061926],[-127.19303345180553,53.25588600622803],[-127.19286866808358,53.25573639541031],[-127.19271035406763,53.25558335781267],[-127.19258368839247,53.255420482070654],[-127.19251678394811,53.25524579149109],[-127.19248731731668,53.255066807272286],[-127.1924625211969,53.25488722031611],[-127.19242463005214,53.25470887650309],[-127.19240172746245,53.254529826242106],[-127.19238447216429,53.254350719200055],[-127.19236250043889,53.25417110377577],[-127.19234991536511,53.25399138502379],[-127.19236175169901,53.25381198552865],[-127.19238202839725,53.2536325011779],[-127.1924023358803,53.25345358122946],[-127.19241792646417,53.2532741439383],[-127.1924429034339,53.25309461227558],[-127.1925027132178,53.25291864771789],[-127.19256723917296,53.252743200430956],[-127.19264495312466,53.25256930573681],[-127.19276612814681,53.25240504955692],[-127.1929460828804,53.25226093594459],[-127.19307580619787,53.25209996391304],[-127.19315258643283,53.25192663395611],[-127.19320940933336,53.25174454063687],[-127.19325345489207,53.25157545712277],[-127.19329727106972,53.251497701519654],[-127.19342707913567,53.251439814615345],[-127.19365015003349,53.25139330572927],[-127.19397525486896,53.25136874429694],[-127.19426508876823,53.251359103643075],[-127.19460471985035,53.25131703087956],[-127.19495112346576,53.251315782882095],[-127.19520336872861,53.25133789273087],[-127.19534696791891,53.2513358810508],[-127.19549544312795,53.25134055205353],[-127.19566947954775,53.25138585920165],[-127.19575888251107,53.25142641673247],[-127.19603950897313,53.25155580726397],[-127.19614983738118,53.25153956349895],[-127.19629405671698,53.251460238492555],[-127.1963644713251,53.25142703368316],[-127.19648734207341,53.25132326364357],[-127.19659201640533,53.251272905537526],[-127.19674430416141,53.25124671812027],[-127.19698679703292,53.25115631618938],[-127.19697576895443,53.25096594141688],[-127.1969486343094,53.250770682389536],[-127.19714242260623,53.25065163836348],[-127.19740163113248,53.25055489954591],[-127.19762753559303,53.25044280930418],[-127.19786476545855,53.250332845259884],[-127.19809528938224,53.25021846642683],[-127.19830378723864,53.250088622538726],[-127.19845525374164,53.24993413859305],[-127.198626691304,53.24978842564923],[-127.19885432237115,53.24967126873906],[-127.19905619011627,53.24953981417058],[-127.19923800409639,53.249396227435696],[-127.19939325102011,53.24924283342784],[-127.19955892367607,53.24909268631877],[-127.1997626793614,53.24896176713748],[-127.1999797637226,53.24883688002255],[-127.20000104055337,53.248826015461304],[-127.20033159136507,53.2485974487001],[-127.20042907898215,53.248427265324445],[-127.20055701227494,53.24827078453349],[-127.20082304724134,53.248184053378274],[-127.20104682992411,53.248064134183075],[-127.20120966896825,53.24791401326205],[-127.20139339361029,53.24777208885288],[-127.20159519645716,53.2476389450722],[-127.20178937736948,53.24750139611446],[-127.20190864132108,53.247337713754426],[-127.20197405070002,53.24716225140549],[-127.20208903016096,53.24707873317833],[-127.20238381424656,53.24711215733392],[-127.20266157201853,53.24717377511652],[-127.20292047438336,53.247265272517076],[-127.20319568194407,53.2473364347792],[-127.2034790094294,53.24739574418384],[-127.20376588444753,53.247447738080766],[-127.2040383504095,53.24752116725196],[-127.20433206452194,53.247549559652605],[-127.20463292001241,53.247564997414834],[-127.20492482167916,53.24759564778244],[-127.20519650327712,53.24767412010057],[-127.2054333858962,53.24778376398207],[-127.20567487400382,53.2478899990518],[-127.20591082804755,53.24799965143119],[-127.20614959057399,53.24810871901553],[-127.20641025618707,53.24819626469094],[-127.20670168046442,53.248242602735544],[-127.20694218045188,53.248347169027774],[-127.20718827977197,53.248449992604286],[-127.20745174077365,53.248536387058415],[-127.207682215986,53.24865113851234],[-127.20792369856245,53.24875680438277],[-127.20817893301816,53.24885113355556],[-127.2084414836512,53.24893809984948],[-127.20871038928652,53.24901771301055],[-127.20897655302824,53.249100159274064],[-127.20924637496195,53.24917865034849],[-127.20952523159222,53.24924527884657],[-127.20980225907377,53.24931304586243],[-127.21007848564605,53.249385858224734],[-127.21031531042155,53.24949269628136],[-127.2105356904002,53.24961482411034],[-127.21080826225008,53.249691033624806],[-127.21107988925802,53.24976726113075],[-127.2113542279183,53.24983953405999],[-127.21163039634529,53.24991010242317],[-127.21191543751085,53.24996266028889],[-127.2122135687671,53.24998033890011],[-127.21251333758592,53.24999016541249],[-127.21280887118075,53.250015712662766],[-127.21309758829011,53.25006542436301],[-127.21338972266044,53.25010333952469],[-127.21364943636107,53.25018920293284],[-127.21384030993107,53.2503295547827],[-127.21404867225891,53.25045795748652],[-127.2143075884217,53.250548874418804],[-127.21459271762528,53.25060422180689],[-127.21488663733545,53.250638744544965],[-127.21518145541737,53.25067158107099],[-127.21547879212326,53.25069430645804],[-127.21577821210607,53.25069180272446],[-127.21607307020051,53.250660767475324],[-127.21635089981052,53.25059292921654],[-127.21660539579133,53.250497316819796],[-127.21683397642686,53.25038235626924],[-127.21699104024204,53.25022892005879],[-127.21707715202791,53.25005659818943],[-127.21709356761522,53.249877147794244],[-127.21707149290214,53.249697527574895],[-127.21707290632212,53.24951823107651],[-127.21711752714639,53.24934017647135],[-127.2172225206322,53.24917157795862],[-127.2173862377656,53.249021434329734],[-127.2175870651271,53.24888827298989],[-127.21782134529177,53.248775492843414],[-127.21808651511306,53.248692657827306],[-127.21836726464727,53.24862870193954],[-127.21864803088967,53.248565874682384],[-127.21893977401113,53.24852533525488],[-127.21923679903203,53.24850491902168],[-127.21953477084138,53.248485048082],[-127.21983158592961,53.248457900464096],[-127.22011729160825,53.248403418265205],[-127.22039705799392,53.24833835607566],[-127.22064772840133,53.24824108876763],[-127.22089931158135,53.24814269996745],[-127.22118386517784,53.248113434107054],[-127.2214769891148,53.24815356016849],[-127.22177360724918,53.24818412066255],[-127.22206759461254,53.24815644076078],[-127.22234345623048,53.24808636735666],[-127.22262124249997,53.248017949750626],[-127.2229079699149,53.24796681176362],[-127.22319663749633,53.24791733832164],[-127.22348027955027,53.24785670189072],[-127.22371080185106,53.247745078072796],[-127.2239730804188,53.247660009501686],[-127.22426691673249,53.247627287809735],[-127.22456378660789,53.24760181293569],[-127.22486289154801,53.24758919568344],[-127.22516181278854,53.24760236040162],[-127.22546735999661,53.24761713220235],[-127.22569256117777,53.2477106048928],[-127.22593029706019,53.247815161731566],[-127.22620647659546,53.24788569623525],[-127.22648535031618,53.24795172914425],[-127.22677044540964,53.248005927158296],[-127.22705474148931,53.24806517059937],[-127.2273493883309,53.248092376032645],[-127.22764599526609,53.24812292199922],[-127.22791032826083,53.248205345089126],[-127.22818466940892,53.2482770235451],[-127.22847331114959,53.24832389294041],[-127.22875666456444,53.24838258632664],[-127.22903030655762,53.248462669480936],[-127.22917925864033,53.248612960459795],[-127.22926223413657,53.248786336378856],[-127.22936664291807,53.24895445225061],[-127.22947111773826,53.249124808372116],[-127.22945193183502,53.24930428981032],[-127.22926339889545,53.249439585194],[-127.229074113087,53.2495810553759],[-127.2290584514139,53.24975265656137],[-127.22921604196374,53.24990901628669],[-127.22938372229339,53.25005742762097],[-127.2294909264973,53.250224949596905],[-127.22957762842614,53.250397175019074],[-127.2296820586189,53.25056584607932],[-127.2297808745372,53.250735139986524],[-127.22985822652308,53.25090913840504],[-127.22992999518948,53.25108431517001],[-127.23005672685879,53.25124491999561],[-127.23029090189048,53.25135509875527],[-127.2305761553746,53.251413768232695],[-127.23086309100987,53.25146569648519],[-127.23112472581234,53.251551502092894],[-127.2313654030475,53.251659379211084],[-127.23161065117628,53.25176271736536],[-127.23186321367464,53.2518592649356],[-127.23211760541751,53.25195410772035],[-127.23237292795893,53.252048375557045],[-127.23260899099105,53.2521585391536],[-127.23281097228106,53.252291457827624],[-127.23297589902195,53.25244101326051],[-127.23311575448179,53.252600357944324],[-127.23326676001174,53.25275566025775],[-127.23344561490873,53.25290002343627],[-127.23366696171124,53.253020422606276],[-127.23391862274026,53.25311808678999],[-127.23417945754056,53.253207820363684],[-127.23444479897866,53.25329133916006],[-127.23469368772865,53.25339015108476],[-127.23493797539773,53.25349238090191],[-127.23522049032974,53.25355274416326],[-127.23550932351023,53.253604641572345],[-127.23580109263827,53.25362849481837],[-127.23609174444057,53.25358233126564],[-127.23638059864126,53.2535384177951],[-127.23667959462246,53.25352073448584],[-127.23696941200029,53.25347793900833],[-127.23725312096822,53.25341895456408],[-127.23754809705073,53.253391782111585],[-127.23784867796432,53.25339593384778],[-127.23814521466731,53.25342252838976],[-127.2384241107563,53.25348741286646],[-127.23868221593989,53.25357996195081],[-127.23891277036836,53.253693523279594],[-127.23911850086283,53.25382528068436],[-127.23935547158341,53.25393317156398],[-127.23964325133564,53.25398115266002],[-127.23994390215647,53.253987530470184],[-127.24023986110055,53.25396202634],[-127.24053059116638,53.25391809210874],[-127.24082434286667,53.25388140442757],[-127.24112258917512,53.253869876130764],[-127.24142247447607,53.253882425521226],[-127.24171810229238,53.253909585437114],[-127.2420095554046,53.25395416082009],[-127.24227757709171,53.254032587407224],[-127.24251002124748,53.254146131020676],[-127.24268706924532,53.254291619995215],[-127.24283068918477,53.25444979356826],[-127.24300677542863,53.2545941716266],[-127.2432263633076,53.2547173684718],[-127.24346615831539,53.254825230619126],[-127.24371783639096,53.254922318318584],[-127.24398505182846,53.255004675849484],[-127.24425584141025,53.255080827975085],[-127.24452031636645,53.25516545409163],[-127.24477568761552,53.25526025979969],[-127.24501731737884,53.25536641434642],[-127.24524512331202,53.25548112186951],[-127.24552766790282,53.25554202524665],[-127.24582078212764,53.25557872136719],[-127.24609428839418,53.255651488231706],[-127.24633962878752,53.255755915889395],[-127.24656102730599,53.25587629082109],[-127.24672320950435,53.25602641213302],[-127.24684358868473,53.256191548257604],[-127.24697977043417,53.25635147134921],[-127.24712618874636,53.256508480900074],[-127.24724469343849,53.256673636312016],[-127.247341716591,53.256842934783606],[-127.24738828089484,53.25702060733175],[-127.2474095418544,53.25720022219325],[-127.2474373652351,53.257379212259146],[-127.24747175111914,53.25755757752495],[-127.24748925773423,53.257737231804356],[-127.24753485931856,53.25791379383572],[-127.24762723499337,53.25808482613147],[-127.24771867990769,53.258255859172486],[-127.24784000058195,53.25842098430033],[-127.24799103127441,53.258574582664856],[-127.24823998310971,53.258673374858546],[-127.24852526113656,53.25873031621999],[-127.24880962537188,53.2587878312603],[-127.24909043578317,53.25885267087601],[-127.24938164896714,53.25888770213299],[-127.24967956366885,53.25886383051882],[-127.24997345799282,53.25883104534468],[-127.25027504298687,53.25883626698036],[-127.25055921129415,53.25888705682422],[-127.25075840635891,53.259017742705375],[-127.25084245531683,53.25919221292762],[-127.2508871761042,53.259370468243105],[-127.25090655910527,53.259549546450444],[-127.2509109531747,53.25972933844851],[-127.25091249048607,53.259908048997815],[-127.25086517708465,53.26008614508251],[-127.25084606066326,53.2602650733423],[-127.25085419473604,53.26044482584444],[-127.25086046655274,53.26062460692708],[-127.25095372485502,53.26079282152023],[-127.25115680140438,53.26092738310806],[-127.25136722380208,53.26105626430178],[-127.25158949587811,53.26117325023835],[-127.25187396388621,53.2612335627547],[-127.25214931167417,53.26130349074258],[-127.25238733891729,53.26141303006937],[-127.25260881729022,53.26153450456349],[-127.25281366415514,53.26166512734625],[-127.25300744547252,53.2618025807645],[-127.25322616867886,53.261925768472544],[-127.25344753591231,53.26204332527529],[-127.2535128419476,53.26221855625018],[-127.25347120350786,53.2623977227741],[-127.25343423468915,53.262576275194576],[-127.25339821192125,53.26275481759015],[-127.25335748531981,53.26293284490248],[-127.25331297142067,53.26311035640932],[-127.25328823081445,53.263289344281716],[-127.25326255837504,53.26346833300793],[-127.25323876519667,53.26364786660038],[-127.25321874234388,53.26382736034836],[-127.25320340621211,53.26400680457575],[-127.25318054238524,53.26418577251019],[-127.25316520596098,53.264365216699275],[-127.25315174719127,53.26454464103839],[-127.25312230280227,53.26472366943838],[-127.25310791234679,53.26490310357518],[-127.25314419109431,53.265081446825974],[-127.25313167842663,53.26526086110124],[-127.25308812403638,53.26543891791469],[-127.25303326930768,53.26561598247071],[-127.2529896976489,53.265793483614836],[-127.2529800098624,53.26597342374459],[-127.25304435710783,53.26614810901243],[-127.25332892736141,53.266179274884195],[-127.25362712414345,53.26619461790499],[-127.2539105991498,53.266252130495744],[-127.25417614461409,53.26633840051441],[-127.25426161778284,53.26649660994608],[-127.25423290703978,53.26666835187],[-127.25439806737882,53.26682180159783],[-127.25450918418016,53.26698925962996],[-127.25465739561932,53.26714120292151],[-127.25489461419784,53.26725355161675],[-127.25513814933565,53.26735742470826],[-127.25540744356415,53.267443096597745],[-127.25560159168494,53.26756037262872],[-127.25561273863187,53.267745703999715],[-127.25562558026073,53.2679248501212],[-127.25564877471426,53.26810444245679],[-127.2556672504549,53.268283528928535],[-127.25567636987675,53.268463834895904],[-127.25570044647466,53.26864174155644],[-127.25579384171633,53.26881331212266],[-127.25592915156703,53.2689732339067],[-127.25612478816493,53.269108430479996],[-127.25634538616949,53.269229907373756],[-127.25648438876937,53.269387548409156],[-127.2565825081764,53.26955963305927],[-127.25651481447039,53.269715536203854],[-127.25638341620305,53.2698766047454],[-127.25624254484359,53.270035523408986],[-127.25609123423611,53.27019063506552],[-127.25592948430642,53.270341939676214],[-127.25577531354797,53.270495960639025],[-127.25563254148788,53.27065377808269],[-127.25550589120199,53.27081703629468],[-127.25540855888352,53.270987263054],[-127.25535744604684,53.271163723881386],[-127.25535998219125,53.27134353449538],[-127.25539253631797,53.27152247179302],[-127.25543072352983,53.27170079370687],[-127.2554510945514,53.27188041560957],[-127.25541221437483,53.27205786747725],[-127.25528933179582,53.27222164120383],[-127.25511141628212,53.27236694812337],[-127.25491631340738,53.272502916638985],[-127.25472411710149,53.27264165087419],[-127.25456232108056,53.27279238902909],[-127.25445646963263,53.27296046377927],[-127.2543987843582,53.27313699341475],[-127.25437592038782,53.27331595177072],[-127.2543953413635,53.27349559267037],[-127.25446253046076,53.27367023767152],[-127.25456151658868,53.27384007345049],[-127.25465117880331,53.27401223975835],[-127.25472776111216,53.27418679424985],[-127.25490671357389,53.27432888314611],[-127.25517129714471,53.2744123645167],[-127.25545487953322,53.274471557888944],[-127.25574195234216,53.274521740627925],[-127.25603264924625,53.274567411255596],[-127.25632241668536,53.27461364678754],[-127.25660952483516,53.274664947580526],[-127.25689219587382,53.274724702971746],[-127.2571604774,53.27480646451722],[-127.25737554015132,53.274930239131976],[-127.25758327662231,53.275060823005965],[-127.25782960473137,53.275161855354554],[-127.25807779751963,53.275262876398195],[-127.25832600625462,53.27536388779721],[-127.25857877101554,53.27546037730159],[-127.25883610805326,53.27555289151864],[-127.25909437603097,53.27564483057328],[-127.25934164305794,53.275745858831996],[-127.25955307753107,53.275873594319854],[-127.25974787763911,53.27601102583098],[-127.25985525008427,53.27617740673829],[-127.25992715428964,53.27635199864054],[-127.26003270001446,53.27652007504632],[-127.26014576169311,53.276688636294146],[-127.26034608372333,53.276821526167026],[-127.26063894237915,53.27684475255289],[-127.26086818246391,53.27693923712674],[-127.26106226116387,53.27708340618223],[-127.261268141021,53.27721399445697],[-127.26153278872815,53.27729858167587],[-127.26182344404857,53.277341997750675],[-127.26211848663766,53.277375272925426],[-127.26241176713313,53.277411936602896],[-127.26270157770146,53.27745871208991],[-127.26299223532628,53.27750212529923],[-127.26328980329791,53.277525286129226],[-127.26358940880085,53.277522097043985],[-127.26388538427614,53.277492053634],[-127.26415744369041,53.277416323315926],[-127.2644314644946,53.27734337722248],[-127.26473068442043,53.27732786374435],[-127.26503045625903,53.2773302717815],[-127.26505887842009,53.27715012257535],[-127.26515327722676,53.27697712265834],[-127.26534286713655,53.276845678311815],[-127.26561663017237,53.27676432383978],[-127.2658965309833,53.27669971091502],[-127.26616756781502,53.27662174575151],[-127.26642603246808,53.276531588481944],[-127.26667092784892,53.27642757354236],[-127.26689756530679,53.276309742094284],[-127.26709166690026,53.27617264410834],[-127.26725341445844,53.27602133354489],[-127.26743035692522,53.27587601881067],[-127.2676292422239,53.275741674553174],[-127.26786355462248,53.27562936173908],[-127.26812392149483,53.275540300814754],[-127.26839792299955,53.275467336533545],[-127.26868374871702,53.27541273814481],[-127.26898181974494,53.27539050298207],[-127.26927834540858,53.27541086304776],[-127.2695759697337,53.27543625740978],[-127.26987606537858,53.27544985472937],[-127.27016704905589,53.27541088473201],[-127.2704459516118,53.27534458629674],[-127.27072082900415,53.27526993092776],[-127.27093120652945,53.27514330150197],[-127.27104836848385,53.27497845202414],[-127.27112392183564,53.2748045281545],[-127.2711429421718,53.2746250423902],[-127.27108690113242,53.27444860152549],[-127.27107869494976,53.2742694073196],[-127.27111558436074,53.27409085065169],[-127.2711862789586,53.27391136714825],[-127.27139035403339,53.27379433308136],[-127.27168058058209,53.273730151276006],[-127.27196987015768,53.27376011090516],[-127.2722572785876,53.2738208996433],[-127.27254703992283,53.273865975272265],[-127.2728431005184,53.27387119992016],[-127.27314234155054,53.27385678520209],[-127.2734432598342,53.27383619338613],[-127.27374346579191,53.273822887308455],[-127.27404422921569,53.273828058487815],[-127.27433013797192,53.27377680691093],[-127.27462208505902,53.27376975458996],[-127.27492169747991,53.27379903144789],[-127.27521122641157,53.2738368152724],[-127.27547688014917,53.27392360184297],[-127.27576023369275,53.27397434110523],[-127.27605526195771,53.27400702594195],[-127.27634941180223,53.27404196052578],[-127.27664769131674,53.27405836595224],[-127.27694767779548,53.274068584952246],[-127.27724592356874,53.27408385976364],[-127.2775442865503,53.27410250307544],[-127.2778433269475,53.274112730000965],[-127.27814390654353,53.27411173444678],[-127.2784641318488,53.274108285483074],[-127.2787321323023,53.274024156489276],[-127.2789521420197,53.2739063727875],[-127.27914045523796,53.2737653994429],[-127.27932113763225,53.27362114648225],[-127.27949516797213,53.27347416812797],[-127.27966919682869,53.27332718054624],[-127.27985660955319,53.273187900935405],[-127.2801005037657,53.273083303602185],[-127.28036275809112,53.27299587120404],[-127.28061047628465,53.27289403730718],[-127.28085629591254,53.27279109388407],[-127.28110015347127,53.27268593904306],[-127.28133732474788,53.272576929578456],[-127.28155144726125,53.272451360751326],[-127.28175311304875,53.27231751768706],[-127.2819662695708,53.27219140272313],[-127.28218329784322,53.27206859811405],[-127.2823725407622,53.27192817399958],[-127.28258770741199,53.27180650924008],[-127.28287042521909,53.27174351030759],[-127.28315157236494,53.271691168111865],[-127.28343150793809,53.27159849968912],[-127.2836967649048,53.27145612181331],[-127.28383261877539,53.27132075479247],[-127.28382946272843,53.2711863267131],[-127.28395578772043,53.270954133250925],[-127.28412412244532,53.270806079751075],[-127.28430286115518,53.270660163400244],[-127.28448161741254,53.270515358120846],[-127.28465559980924,53.27036780740889],[-127.28486975252255,53.27024391715809],[-127.2851173733477,53.2701392686913],[-127.28534017143255,53.2700219980833],[-127.28549228638535,53.269865718735005],[-127.28564917310945,53.269712193253966],[-127.28579847822277,53.26955649968205],[-127.28594018513685,53.26939809141387],[-127.2861208597346,53.269254947927465],[-127.28633879257855,53.26913213439976],[-127.28660397045041,53.26904913801987],[-127.28681076960584,53.268930926376406],[-127.28694435374223,53.268783810081615],[-127.28702237418577,53.26863169363038],[-127.28705355523681,53.268452627874495],[-127.28708568468902,53.268274116547325],[-127.28712250117437,53.268095554354936],[-127.28716310541989,53.26791751578924],[-127.28720464049354,53.26773945812865],[-127.28724805339289,53.26756138902766],[-127.28729148286537,53.26738387548921],[-127.28733015837827,53.26720472822238],[-127.28736318106921,53.267024530690406],[-127.2874056289043,53.266845907177014],[-127.28747077932302,53.26667207518324],[-127.28757272788127,53.26650401121328],[-127.28770773542927,53.2663423115249],[-127.28785409234385,53.26618272952928],[-127.2879900614368,53.266021583777665],[-127.28809490087916,53.265856284709635],[-127.28811563757625,53.26567397911502],[-127.28804737341397,53.265498798012445],[-127.28790733633652,53.26534175950824],[-127.28774111390378,53.265188375545215],[-127.28759076085348,53.265032013361306],[-127.28744133810586,53.264875076148954],[-127.28730125426223,53.26471636113008],[-127.28716910951277,53.26457157084799],[-127.28710965941279,53.26437724465665],[-127.28708242392494,53.26419265370582],[-127.2870950119205,53.26401995652868],[-127.28711564932654,53.26383428151345],[-127.2871584023088,53.263665739173724],[-127.28716466652493,53.263501518947784],[-127.28715045380277,53.26331230456492],[-127.28709060548542,53.26313591096352],[-127.28707856317682,53.26295675771606],[-127.28710691575368,53.26277772205163],[-127.28721829612739,53.26261124091522],[-127.28740749686388,53.26247136368056],[-127.28761770922216,53.262343019131926],[-127.287823148384,53.26221192916566],[-127.28801518847175,53.262073140599036],[-127.28814554493557,53.26191317562739],[-127.2882492886192,53.261742849967],[-127.28835497745247,53.26157474412125],[-127.28845877059021,53.261406093998666],[-127.28856048899418,53.261261562078055],[-127.28868339487182,53.26119635726002],[-127.28882922284615,53.26114322910259],[-127.28900254188504,53.26109876630765],[-127.28872618813273,53.26102893411562],[-127.28842868828444,53.26100471669641],[-127.28813475761278,53.261035921325536],[-127.28784516247673,53.26108612709739],[-127.2875634528129,53.26114857236186],[-127.28729247147899,53.26122434685334],[-127.2870351596654,53.261316780313145],[-127.28678559808691,53.261417528601385],[-127.28658580749712,53.261548555582394],[-127.28648674417971,53.26171882899068],[-127.2864084516168,53.26189223867332],[-127.28626487706262,53.26205011287668],[-127.28606516918842,53.26218449956445],[-127.28582617361899,53.26229297485407],[-127.28555912270048,53.262374305256024],[-127.28527635243225,53.26243339483828],[-127.28499482642192,53.26247118030634],[-127.284704948401,53.26245078829051],[-127.28441285227012,53.26241921434218],[-127.2841159867528,53.262385450248374],[-127.28382809953385,53.26233758620692],[-127.28356710291845,53.26224796223728],[-127.28329991782653,53.26217073935824],[-127.28300232782694,53.26214370347967],[-127.28270328573184,53.26213068461819],[-127.2824041248947,53.26211374893851],[-127.28211103347498,53.26207993907308],[-127.28182660175183,53.262022503946355],[-127.28169087781842,53.261975231851146],[-127.28163773326332,53.26189512823678],[-127.28157041625848,53.261719368446606],[-127.2815784398672,53.26151982860486],[-127.28157420758016,53.26138037361755],[-127.28152466614074,53.26129518418133],[-127.2813758523575,53.26124972942195],[-127.28099685776677,53.26123253188851],[-127.2806986674203,53.26121614624338],[-127.28041426028174,53.261159263303206],[-127.28015605132963,53.26106792554664],[-127.27993818350824,53.26094422162344],[-127.27974712530487,53.26080621711419],[-127.27954444832103,53.260657132368415],[-127.27947901959254,53.260481351029775],[-127.27942199727637,53.26030380269162],[-127.27930991877952,53.260138053210596],[-127.27914941469106,53.25998571622177],[-127.27895004255154,53.259852282164196],[-127.27873676889234,53.259725156003604],[-127.27853550491294,53.25959118586888],[-127.27837410807075,53.25943996902055],[-127.27826107288197,53.2592736730717],[-127.27818257672922,53.25910027280746],[-127.2781312113834,53.25892322759938],[-127.27812389249105,53.2587434578444],[-127.27814287584683,53.258563969462564],[-127.27814401528966,53.2583846732962],[-127.27814515292742,53.25820482135218],[-127.27818106720156,53.258026271032065],[-127.27824712248793,53.25785075751415],[-127.27833675659605,53.25767890723316],[-127.27848134316538,53.25752271678661],[-127.27869059495711,53.25739384231999],[-127.27893920583386,53.2572931210464],[-127.27919268602098,53.257197940394065],[-127.27933544318512,53.257044009592],[-127.27938452739109,53.25686643723988],[-127.27939410059979,53.256686494113836],[-127.27938865413508,53.256506703980676],[-127.27938508539525,53.25632690254536],[-127.27938998932207,53.2561475655031],[-127.27939956207311,53.25596761334781],[-127.27940631142991,53.25578770058718],[-127.2794065142567,53.25560841419118],[-127.27940294524528,53.25542860371077],[-127.27940595480212,53.2552487312306],[-127.27941554438364,53.25506934355065],[-127.27942699412459,53.254889371045024],[-127.27944409287588,53.25470990234083],[-127.27947529786043,53.25453140200225],[-127.27951872976904,53.25435333450474],[-127.27954994919325,53.25417483395124],[-127.27955294274491,53.253994952550194],[-127.27953342401659,53.25381532291763],[-127.27950078308682,53.253636946365],[-127.2794484727105,53.253459911427235],[-127.27936531391711,53.25328712651788],[-127.27925135989608,53.25312083205886],[-127.27910946854848,53.252962126642764],[-127.27892951123248,53.252817842540544],[-127.278687912588,53.25271511741605],[-127.27840968568526,53.25264304080331],[-127.278195637721,53.25251984827541],[-127.27800545274063,53.25237846983416],[-127.27772284862806,53.252316523542866],[-127.27744968421867,53.25225671598582],[-127.27730332024834,53.25210477977421],[-127.27721709539273,53.25192361793325],[-127.27719858639064,53.251746218023435],[-127.2772353625196,53.2515654170351],[-127.27732317618296,53.251395271731845],[-127.27751712945921,53.25125815492356],[-127.27773594056711,53.25113534585268],[-127.2779432519313,53.25100537233044],[-127.27814770280094,53.250873743970395],[-127.27834168310976,53.2507371901772],[-127.27849661372291,53.25058257268765],[-127.27868015802588,53.25044276918729],[-127.2789248378014,53.25033759843197],[-127.27916190631774,53.250229156608256],[-127.2793873883758,53.25011018974839],[-127.2796282423433,53.2500028176894],[-127.27989038857493,53.24991651440905],[-127.28017205151666,53.249854642596134],[-127.2804577397879,53.24980169985517],[-127.28074339310751,53.24974762729999],[-127.28103396903853,53.2497013535606],[-127.28132166794691,53.249652860154846],[-127.28160038320894,53.24958654358409],[-127.28186445078497,53.249501891405735],[-127.28209188330995,53.24938569500235],[-127.28226170995232,53.24922754968176],[-127.28228450970437,53.24914381917007],[-127.28228794175064,53.2490401374323],[-127.28208009871854,53.24896674382529],[-127.28182665336062,53.24893698760339],[-127.2815440347944,53.248874494864054],[-127.28127052850067,53.24880237403312],[-127.28101306933681,53.24870262178464],[-127.28079899978154,53.24857831353551],[-127.28070759459163,53.24841234140086],[-127.28067011508254,53.24822897899347],[-127.28064306899788,53.248048865504835],[-127.28052082286779,53.24788770830941],[-127.28040503606316,53.247722563878625],[-127.28026505236849,53.24756439473496],[-127.28014647628014,53.24739983593491],[-127.27998874057629,53.24724466386676],[-127.27997328257574,53.2470750746467],[-127.28003549143276,53.24689735930826],[-127.28013740474154,53.24672873542831],[-127.28027430558498,53.24656870699835],[-127.28042070682238,53.246411928456496],[-127.28055286960715,53.24625026552526],[-127.28072965875644,53.246105493279515],[-127.28092357486135,53.24596781475749],[-127.28112222536437,53.245831761072864],[-127.28132182267098,53.245696261551934],[-127.28151384118577,53.24555804671027],[-127.28169539165513,53.24541545356141],[-127.28186079280816,53.24526687620268],[-127.28200818285276,53.24511233482579],[-127.28214320921553,53.24495231526738],[-127.28226875020994,53.24478960123071],[-127.28238858972286,53.244624151832454],[-127.28250367744876,53.24445706838972],[-127.28261969519225,53.24428997475309],[-127.28273763790835,53.244123980692585],[-127.28286222608794,53.24396071146161],[-127.28297262765037,53.243794242904166],[-127.28301885627806,53.24361613362611],[-127.2830303047124,53.24343672425657],[-127.28302577565981,53.24325693193309],[-127.28301843865599,53.24307716100572],[-127.28300171794372,53.2428975005409],[-127.28300941265485,53.242718131712934],[-127.28305565709584,53.24254058688389],[-127.28311979113865,53.24236508953448],[-127.28320183144507,53.24219219523908],[-127.28330464978374,53.24202300238362],[-127.28343301740301,53.241860820884376],[-127.28357937559372,53.24170403821884],[-127.2837304832668,53.241548889222315],[-127.28388062492614,53.24139262993081],[-127.28403364115803,53.24123858037256],[-127.28418946385858,53.24108450020206],[-127.2843443717316,53.24093099446004],[-127.2845011720847,53.24077802377893],[-127.2846579541361,53.240624488313806],[-127.28481475221655,53.24047151719358],[-127.28496774480936,53.24031691075229],[-127.2851179115878,53.24016176996092],[-127.28528960031547,53.24000471040884],[-127.2854020631268,53.2398449399117],[-127.28552852223677,53.239682211735634],[-127.28564928222946,53.23951730411155],[-127.28576816462976,53.23935241669762],[-127.28588515227764,53.239186984934825],[-127.28600213928226,53.23902156200363],[-127.28612196473127,53.23885666393503],[-127.28624934891502,53.238693924810505],[-127.28637864065921,53.23853172061883],[-127.28648995999374,53.238365238051955],[-127.2865663148426,53.23819128197343],[-127.28659842334415,53.238012767952895],[-127.2865891957429,53.23783302607215],[-127.28654248776576,53.23765536714726],[-127.28650609161193,53.23747703156575],[-127.28649216561867,53.23729734060606],[-127.2865185587,53.237116082695955],[-127.2864982257223,53.23694149916036],[-127.28648974910766,53.23678640089814],[-127.2863788484469,53.236596547566265],[-127.28625181056788,53.236431530004495],[-127.28619479224814,53.23625398268289],[-127.2862137312207,53.23607449089323],[-127.2863071420351,53.2359059524293],[-127.28643353485381,53.23574154717573],[-127.28656465923342,53.23557820200034],[-127.28669203182997,53.23541546211894],[-127.28682413623291,53.23525379126499],[-127.28696004385696,53.235093764253556],[-127.28709972028139,53.2349342519402],[-127.28729878420464,53.234783059035486],[-127.28738855454385,53.234618485425614],[-127.28752824470916,53.23445952817201],[-127.28765755299781,53.234298451355606],[-127.28771786845242,53.23412187134184],[-127.28780930733365,53.23395055595297],[-127.28789888408339,53.23377926069642],[-127.28792530307544,53.23359912230749],[-127.28797532293025,53.23342377444881],[-127.28810175291781,53.23326104297776],[-127.28824329534683,53.2331015087785],[-127.28835553871978,53.23293501370841],[-127.28843943287016,53.23276265910872],[-127.28851482196252,53.23258815576953],[-127.28859776689424,53.23241524657367],[-127.28868733719416,53.23224395058238],[-127.28876744180714,53.2320705163034],[-127.28882776666346,53.23189450008373],[-127.28886268279817,53.231715954181055],[-127.28890042253069,53.231537933342416],[-127.28889473414888,53.23135142920052],[-127.28890066212305,53.231176559983666],[-127.28906790961683,53.23102962684085],[-127.28932897102963,53.23094274739312],[-127.28960643378016,53.230870820782144],[-127.28984319447062,53.23075674668056],[-127.2900540016128,53.230622793656046],[-127.29017876111807,53.2304673567832],[-127.29021837071112,53.23028932395149],[-127.29021553246756,53.230103900251954],[-127.29020159313286,53.22992420902787],[-127.29016985428328,53.22974526727404],[-127.29013062781104,53.229566962767066],[-127.29009138470893,53.22938810262457],[-127.29005871613458,53.229209170916484],[-127.29005698049757,53.22902934680743],[-127.29006760324717,53.22885498196606],[-127.29017382346838,53.22867622414219],[-127.29023997103813,53.22850685771405],[-127.29021386156491,53.22832785458248],[-127.29018024771182,53.22814893309801],[-127.2900501123586,53.22803605358382],[-127.29000827388019,53.22792557482015],[-127.28996485654048,53.22788682814537],[-127.28993032212848,53.22783117661744],[-127.28985079700429,53.227777699883895],[-127.2896903608671,53.22777832476312],[-127.28938690558218,53.22779731317416],[-127.28923110080356,53.22779620175981],[-127.2890988660386,53.22776794972399],[-127.28900909892349,53.227716815930435],[-127.28897506045813,53.22761633691822],[-127.28898816762835,53.22743074858261],[-127.28899394078945,53.22725083373264],[-127.28901570271928,53.227071874529074],[-127.28901958267338,53.22689142443605],[-127.28901693989582,53.22671272158512],[-127.28905628944361,53.226618167843576],[-127.28913670174221,53.226547263790884],[-127.28934485411509,53.22641893416083],[-127.28955680876474,53.226292248084306],[-127.28976110420341,53.226160606957926],[-127.28995775711502,53.2260245574656],[-127.2901773831251,53.22590338947174],[-127.29042187527756,53.22579763803706],[-127.29065499037247,53.22568809251122],[-127.29076440060494,53.22561462150005],[-127.29082209044837,53.22553724033541],[-127.29091449487896,53.22536758725973],[-127.29098986056417,53.22519308166338],[-127.29110489560401,53.22502710833668],[-127.29115767941468,53.22485060743456],[-127.29120762207424,53.22467301688599],[-127.29128489552158,53.224499610779326],[-127.29139424837317,53.224332022633035],[-127.2915319965311,53.22417252462699],[-127.29166972639628,53.22401246187883],[-127.29182833069632,53.22386002427049],[-127.29193810759666,53.223706433280576],[-127.29197877191196,53.223624745817],[-127.29203076049745,53.22354518496856],[-127.29208773325739,53.223505900563254],[-127.29217795559244,53.22348026503432],[-127.29237126338148,53.22348096354215],[-127.29265962179987,53.22349070124666],[-127.29295063270014,53.22349537133065],[-127.29310664951167,53.22347349963299],[-127.29323871030397,53.22343508084246],[-127.29334120445142,53.223380741008995],[-127.29341344810527,53.22328862350851],[-127.29341902018238,53.22319500130989],[-127.29337049664409,53.22311148953697],[-127.2932757800175,53.22305201326285],[-127.29321825942102,53.2229506707909],[-127.2932054302046,53.22286844587197],[-127.2932309298865,53.22278188535371],[-127.29325663510629,53.22270204588101],[-127.29335392103435,53.22260069972395],[-127.29350729736494,53.22246175430821],[-127.29373164348684,53.22234221298858],[-127.29397806763089,53.22223922950605],[-127.29423898105992,53.222150098654986],[-127.29449799821161,53.222059867371584],[-127.29475605179803,53.22196909023768],[-127.2950150174104,53.22187773780398],[-127.29525663355798,53.22177088665621],[-127.29547212724573,53.22163854781733],[-127.29562530441531,53.22149344310347],[-127.29575161762767,53.22132901770307],[-127.29589312557786,53.22117059354026],[-127.29604220448249,53.22101432750645],[-127.29620838811417,53.220865162282884],[-127.29644058478596,53.22072703612187],[-127.29664707100012,53.22057686466103],[-127.29678359860611,53.22043978427929],[-127.29695006936767,53.22030013498786],[-127.29716293299724,53.220173980165555],[-127.29738915180332,53.22005553159164],[-127.29761152934788,53.21993375399437],[-127.2977977352496,53.219795572682195],[-127.29785858911289,53.21960777403921],[-127.29791555366798,53.219446346444016],[-127.29787816277667,53.21926746737849],[-127.2978211381653,53.21909104437471],[-127.29773423774712,53.21891887485851],[-127.29765947105646,53.21874488711645],[-127.29761457898351,53.21856609004427],[-127.29757448569724,53.218482487460136],[-127.2974756265661,53.21841016894616],[-127.29731984346277,53.2182555614223],[-127.29727486508251,53.21816584467502],[-127.2972741111223,53.218080135054144],[-127.29731162722658,53.21798783902407],[-127.29738724349623,53.21791473114234],[-127.29754296389551,53.217761195932404],[-127.29767591903043,53.217600056900764],[-127.29779938957392,53.217435104091415],[-127.29791059105166,53.217268044375416],[-127.29799820086625,53.21709676067903],[-127.29802542587792,53.2169138121297],[-127.29803098744327,53.216728303906336],[-127.29809526094466,53.2165606373109],[-127.29816600268138,53.21648142365228],[-127.29828167388332,53.2164297316676],[-127.29853250818083,53.21631884570004],[-127.29874906620074,53.21619209121849],[-127.2989199178523,53.216042870345504],[-127.29906322006885,53.21588273664862],[-127.29916880303735,53.21571630185812],[-127.29921402186405,53.21553931416464],[-127.29927427964236,53.215363291086405],[-127.29971945772797,53.21513597501863],[-127.30024453948072,53.21485343809356],[-127.30054130759447,53.214437261205745],[-127.30111710864779,53.214034819740284],[-127.30159359495813,53.21378923252698],[-127.30200676063956,53.213589717086684],[-127.30256416663143,53.213260871262605],[-127.30369224543502,53.21266969411378],[-127.3040825288852,53.212245755193656],[-127.30506443544063,53.21202595726134],[-127.30541635500457,53.211970535485605],[-127.30616025853976,53.211850282709825],[-127.30643456059708,53.21180243669275],[-127.306717172862,53.21175058092201],[-127.30695473272098,53.21166728088651],[-127.30715782420322,53.21156138458944],[-127.3072884495666,53.21147814276547],[-127.30743601501655,53.211366144080635],[-127.30788919359138,53.21121826745343],[-127.30805808503551,53.21106848930693],[-127.30814854825012,53.210899971336744],[-127.30820685191821,53.2107228348444],[-127.3082500657004,53.21054306796969],[-127.30828393701537,53.21036452476147],[-127.30830184045574,53.21018503725284],[-127.30831879857458,53.210005560159445],[-127.30834418802624,53.20982598995684],[-127.30837241521469,53.20964695316083],[-127.30839596110664,53.20946795906152],[-127.30840916792923,53.20928852329795],[-127.30841298096314,53.20910863543761],[-127.30841116782138,53.20892880071683],[-127.308405604411,53.20874901635217],[-127.30839909563319,53.208569233444365],[-127.30838978179197,53.20838949045619],[-127.30837578711174,53.20820979016962],[-127.30841668920489,53.20801604592582],[-127.30842344582781,53.20784059872587],[-127.30841332311022,53.20766478209056],[-127.30841180480168,53.20749447324587],[-127.30843345938693,53.2073155087659],[-127.30842602060761,53.20713573599185],[-127.30839516684746,53.20695678651415],[-127.30839307790306,53.20691983098129],[-127.30847776667596,53.206746893778906],[-127.3085984124527,53.206584200271735],[-127.30877682965206,53.20643935335218],[-127.30896283562083,53.20629779296403],[-127.30914983731088,53.20615789762232],[-127.30933778284388,53.206017991531745],[-127.30952282003736,53.20587531136752],[-127.30974622660364,53.20576022985556],[-127.31002947908144,53.205699949732455],[-127.31031479666925,53.20564580470938],[-127.31059116461094,53.205575514269626],[-127.31085202466218,53.20548858626052],[-127.31108869040415,53.20537783770413],[-127.31129851234353,53.20524832715824],[-127.31141922998383,53.20508843558226],[-127.31147088958481,53.204909693862795],[-127.31162663243526,53.204760055240214],[-127.31187285855569,53.204655357805336],[-127.31213753224168,53.204571181540274],[-127.31240999864198,53.20449589184735],[-127.3126863903602,53.20442671665903],[-127.3129647928525,53.20436143603209],[-127.313249065779,53.20430449840554],[-127.3135404301557,53.20426428997126],[-127.31383280862481,53.204226310702424],[-127.31412406747353,53.20418274028865],[-127.31441744452957,53.20414698962227],[-127.31471528532697,53.204134164802284],[-127.31501231319687,53.20415552107208],[-127.31530607901598,53.20419260075449],[-127.3155971470721,53.20423362717171],[-127.31588477697002,53.20428422036823],[-127.31617149738106,53.2043359435432],[-127.31645644803024,53.20439104739658],[-127.31673962897897,53.20444953194081],[-127.31702013013165,53.20451252787258],[-127.31729072805786,53.204588524258725],[-127.31754229151299,53.20468545771454],[-127.3177710033137,53.204801694444825],[-127.31797302594607,53.20493447136452],[-127.31814826991979,53.20508043686358],[-127.31830868876209,53.205232169890074],[-127.31845798038142,53.2053879529848],[-127.3185859085449,53.20555013227125],[-127.31869058292243,53.2057187288526],[-127.31878872282951,53.20588852759591],[-127.31889152369705,53.206057144839484],[-127.318993412914,53.206226336901636],[-127.31909435786005,53.206395539382044],[-127.31919623370244,53.206564731406225],[-127.31929903811823,53.20673335719657],[-127.31941488218297,53.206899031796674],[-127.31952888691183,53.207065847328415],[-127.31959155891519,53.20724051361886],[-127.31960654604408,53.20742020214677],[-127.31960371088982,53.20760008016968],[-127.31959526529637,53.20778002961881],[-127.3195839816504,53.20795944588873],[-127.31956425179114,53.20813895619586],[-127.31954453676639,53.208318466315426],[-127.31953418289248,53.20849787217122],[-127.31954915260394,53.20867699601651],[-127.3195884834613,53.20885528379768],[-127.31962781493002,53.20903358051021],[-127.31964937360496,53.209213186722494],[-127.31965964829722,53.209392362778416],[-127.31966525991993,53.20957215551189],[-127.31967181647174,53.20975192874084],[-127.31968492950419,53.20993163790149],[-127.31971020720573,53.2101106468074],[-127.3197542185925,53.2102883264939],[-127.31982532788116,53.210462898457536],[-127.3199300196415,53.210631502461744],[-127.32006168741599,53.210793073521614],[-127.32020823454815,53.21095000537438],[-127.32035846591046,53.211105210666894],[-127.32050687297894,53.211261556660936],[-127.32065805174233,53.21141675101544],[-127.32081941619049,53.2115679051938],[-127.32098451288856,53.211717905950096],[-127.32114682486103,53.2118690491222],[-127.32129892098943,53.21202367663234],[-127.32143152617908,53.21218467990508],[-127.32153622832708,53.212353273373864],[-127.32161108196104,53.212527246639624],[-127.32166725175327,53.21270366934854],[-127.3217159552046,53.21288129585416],[-127.32176839262509,53.21305832488223],[-127.32183858465365,53.21323290575437],[-127.3219377172585,53.21340324626975],[-127.32210918898386,53.21354700674364],[-127.32236541055657,53.21364108132064],[-127.3226388469248,53.2137159046822],[-127.32290953123542,53.213792443468826],[-127.32318565034055,53.21386276234732],[-127.32345451353744,53.21394099660094],[-127.32368234400798,53.21405667612879],[-127.32384932081105,53.21420664295337],[-127.32396239739953,53.21437234378715],[-127.32401390080777,53.21454938224054],[-127.32401299214986,53.21472980312862],[-127.32398575806951,53.214908832766575],[-127.32394725063794,53.21508687671528],[-127.32390969056041,53.21526546584771],[-127.32389558468768,53.21544434875419],[-127.32389558839277,53.215624203558605],[-127.32388056973011,53.21580366138692],[-127.3238965231414,53.21598332902884],[-127.32391338958685,53.216162430654734],[-127.32392839824631,53.21634211777884],[-127.3239387102058,53.216521848385526],[-127.32393871409444,53.216701703086564],[-127.32392369523207,53.21688116081721],[-127.32390587028222,53.21706064987189],[-127.3238992840738,53.21724001336825],[-127.32391429277523,53.21741969142958],[-127.32394335919771,53.217598656646075],[-127.32397241086092,53.21777762200599],[-127.32400521173638,53.21795598966454],[-127.32404176666415,53.218134871162164],[-127.32408485925727,53.21831255903943],[-127.3241345069984,53.21848960889344],[-127.32419257095547,53.218666008889414],[-127.3242618546284,53.21884116293104],[-127.32437769881595,53.219005155834985],[-127.32457800453794,53.21914018178209],[-127.32476993101385,53.21927698637294],[-127.32489513940548,53.21944030934356],[-127.32497001941026,53.21961427983013],[-127.32500284333562,53.21979320264158],[-127.32501973368508,53.21997286831124],[-127.32503099656219,53.220152587906966],[-127.32504413560228,53.220332295476624],[-127.32509186381697,53.220508245708274],[-127.32523383653295,53.22066746337727],[-127.32538785237723,53.220821499209976],[-127.32554555313422,53.220973808311854],[-127.32567728987048,53.22113538103462],[-127.32578203111947,53.22130396994776],[-127.32586717510908,53.221476148613945],[-127.3259598027554,53.22164711397291],[-127.32607852006635,53.221812749347734],[-127.32626394068207,53.221950744856905],[-127.32651932959301,53.22204649638033],[-127.32678740862482,53.22212753804152],[-127.32705270254709,53.22220973084466],[-127.32729073880007,53.22232024227684],[-127.32749927251015,53.22244733624324],[-127.32763752648563,53.22260714848745],[-127.32774135148327,53.22277631069015],[-127.32781905273033,53.22294968290289],[-127.32787806863983,53.22312607025233],[-127.32793240275386,53.223302510008914],[-127.3280026375311,53.22347709523849],[-127.3280607244806,53.22365349287151],[-127.32811881191488,53.223829890459506],[-127.3281927849445,53.224004424698705],[-127.32829380916725,53.22417361773624],[-127.32841254026457,53.2243386947814],[-127.32854426569227,53.22449969963441],[-127.32868810529847,53.22465776267836],[-127.32884306128842,53.22481122766442],[-127.32901842520025,53.2249571755385],[-127.32920488763034,53.22509795171443],[-127.32939597862598,53.22523644354153],[-127.32960458577034,53.22536520937259],[-127.32987264151035,53.22544512391903],[-127.33016821503541,53.225474859747024],[-127.33046735840817,53.22546870585293],[-127.33076188790456,53.22543570061333],[-127.33105768023027,53.22541277445471],[-127.33132491437145,53.22549605665278],[-127.33156383744333,53.22560374380539],[-127.33178167442134,53.225727364167035],[-127.33201053922733,53.22584357210719],[-127.33224762807566,53.225952963834395],[-127.33240912226482,53.22610466545431],[-127.3325362386435,53.226267394113236],[-127.33269121450549,53.22642085393838],[-127.33290997171139,53.22654389715093],[-127.33314892255275,53.22665214561097],[-127.3334224093047,53.2267252678144],[-127.33368958570584,53.226806304301206],[-127.33394133652789,53.22690375739251],[-127.33418669182703,53.22700689369476],[-127.3344448269289,53.227098671086864],[-127.33473431916252,53.22714359615776],[-127.33503456330601,53.227142456512524],[-127.33532916913695,53.227111124509285],[-127.3356046877196,53.22704023142528],[-127.33585009164796,53.226937171833576],[-127.33609165129603,53.226830802325765],[-127.33632551308727,53.226718907314556],[-127.33656321189936,53.2266092186463],[-127.33679803460458,53.226497876590635],[-127.33703764500184,53.22638984173317],[-127.33728886201953,53.2262923162861],[-127.33755653089035,53.22621085727854],[-127.3378330234286,53.22614162424417],[-127.33811154796443,53.22607684985983],[-127.33839294913517,53.22601428345436],[-127.33867833229293,53.22595895953349],[-127.3389688052329,53.225916459400324],[-127.3392542045821,53.22586168969001],[-127.33954365686817,53.22581639377668],[-127.33982903718375,53.22576106708026],[-127.34012573657695,53.225736978494126],[-127.34042022515642,53.22570283806707],[-127.34071804988635,53.22568490283822],[-127.34101469506781,53.225659136266906],[-127.34131403616749,53.22565966717437],[-127.34161358799183,53.22566636251586],[-127.3419125026483,53.22565345895544],[-127.34219793198031,53.225599802311244],[-127.34246465650487,53.22551834272848],[-127.34273038097257,53.22543520853152],[-127.34301279065943,53.225375425480195],[-127.34331178875917,53.22536474957779],[-127.34360901584829,53.22538715408401],[-127.3439053869352,53.225412373442545],[-127.34420184435079,53.22543982324682],[-127.34444910986674,53.22554347271777],[-127.3447139386853,53.22546202951876],[-127.34497771136688,53.22537668020593],[-127.34522506306085,53.225276384543264],[-127.34546846829424,53.22517053031926],[-127.34574695675317,53.2251051734047],[-127.34603639718547,53.22505987058331],[-127.34633298404778,53.22503297070837],[-127.34663085494037,53.22501669637782],[-127.34692988557195,53.22500714046872],[-127.3472300247993,53.22500316506211],[-127.34752936161618,53.225003689238505],[-127.34782805344143,53.22501317554423],[-127.34812613676597,53.225032762064814],[-127.34842331032243,53.22505346978759],[-127.34871978917766,53.22508203759006],[-127.34901915931302,53.22508311343274],[-127.34931483168955,53.2250567722859],[-127.34960827031188,53.225019259142314],[-127.34989667093882,53.22497115278384],[-127.35017515123687,53.2249057854608],[-127.35043592675542,53.22481541092451],[-127.35073427795876,53.224814252891974],[-127.35102809346715,53.22484732753391],[-127.3513261590542,53.22486634145131],[-127.35162335106237,53.22488760571405],[-127.35191377383616,53.22493191355048],[-127.3522025007149,53.22498185181989],[-127.35249926233207,53.22496053730373],[-127.3527767394082,53.22489349890205],[-127.35305024850098,53.224819781731625],[-127.3533316550527,53.22475829998623],[-127.35361904743215,53.224707954875235],[-127.35391249761044,53.22467098666934],[-127.35420499870924,53.22463346380697],[-127.35449440875203,53.22458757576682],[-127.35478278306309,53.224538901913974],[-127.3550671681269,53.224482420018646],[-127.35534556846416,53.224415364951504],[-127.35561812169242,53.22434109687943],[-127.35588867491838,53.2242634803763],[-127.35615927838764,53.22418699219845],[-127.35643474267701,53.224116041641565],[-127.35671710604139,53.224055661346796],[-127.35701271262987,53.22402762523432],[-127.35731044656421,53.22400740799739],[-127.3576019229134,53.223967656215805],[-127.35789125273483,53.2239195195554],[-127.35817362771333,53.22385913561345],[-127.35842960722344,53.22376599222163],[-127.35866255262593,53.223656868508016],[-127.35892626772359,53.22357092352351],[-127.35918707047215,53.22348221438962],[-127.35943241124382,53.223379105626044],[-127.35969129981197,53.223289296731195],[-127.35995501052489,53.223203349441555],[-127.36021973771211,53.223119631023856],[-127.3604863786712,53.22303756640653],[-127.36075110376787,53.222953846794915],[-127.36100800284184,53.22286069607145],[-127.36125814415982,53.222761454761766],[-127.36151802448522,53.22267330674403],[-127.3617846751155,53.22259123901483],[-127.36205423958197,53.22251250786428],[-127.36232675345829,53.2224382155059],[-127.3626080584395,53.2223744713538],[-127.3628984976807,53.22233191234215],[-127.36319589171576,53.222301598907876],[-127.36348438494831,53.22225738445215],[-127.3637480271552,53.222169743964656],[-127.36395405580419,53.22204131366349],[-127.36412932857154,53.22189026073744],[-127.36424244465223,53.221732078919146],[-127.36417304468283,53.221558624294985],[-127.3640633410178,53.22138619820427],[-127.36395471323077,53.221218241913135],[-127.3638284032862,53.2210549712556],[-127.36366592139996,53.22090444290013],[-127.36347096532948,53.22076493779299],[-127.36332154403044,53.220612017588714],[-127.36324089504755,53.22043869176402],[-127.36317977233055,53.220260103220326],[-127.36308613908297,53.2200914178532],[-127.36289592457864,53.21995353365296],[-127.36270102945699,53.21981570296383],[-127.3625468631455,53.21966115098833],[-127.36237881828457,53.219512370161134],[-127.362167352036,53.2193842494569],[-127.3619577298821,53.21925555138778],[-127.36180921076452,53.21910094253573],[-127.36172948331641,53.21892704925599],[-127.3617105255971,53.21874629013231],[-127.36173951416698,53.21856835082638],[-127.36178911969691,53.218390165652714],[-127.36182373471298,53.21821216164044],[-127.36182071256715,53.21803121936579],[-127.36186758360465,53.21785531562676],[-127.3619520573327,53.217681776710165],[-127.36199049425974,53.21750596083145],[-127.36206844884491,53.2173341820425],[-127.3621199964572,53.217157659604325],[-127.36214612490056,53.21697862334822],[-127.36216473277617,53.21679911769699],[-127.36217112366955,53.216619196632124],[-127.36216345476043,53.21643942817712],[-127.36215673150106,53.216259657801245],[-127.3621612646706,53.21608031384054],[-127.36216484932713,53.21590041599424],[-127.36214780304864,53.215720764213145],[-127.36211391272276,53.215542417614145],[-127.36206598177036,53.215364797126306],[-127.3619900113906,53.21519086056521],[-127.36187026281979,53.215026391612156],[-127.36171148996218,53.214873576670136],[-127.3615333035204,53.214729393340996],[-127.36135140622623,53.21458692875272],[-127.36116672228832,53.214445051699386],[-127.36097559131076,53.21430661908739],[-127.36077985534074,53.21417103600145],[-127.36058410245661,53.21403488802134],[-127.36039204787573,53.21389702088981],[-127.36020830069533,53.2137551405739],[-127.36003657234296,53.21360751020925],[-127.35989540178561,53.21344721159399],[-127.359884994505,53.213269715377905],[-127.35995535494727,53.213094663014694],[-127.36007955344937,53.212931310087534],[-127.36024546116708,53.212781489950174],[-127.36044184313006,53.212645887207806],[-127.36067747377498,53.21253505091814],[-127.36094602781087,53.2124557679843],[-127.36122142581819,53.21238537042361],[-127.361493713704,53.2123060433312],[-127.3617854559754,53.21230605296684],[-127.36207926390298,53.21228306184353],[-127.36236345168999,53.21222376632668],[-127.36263787952241,53.2121522559981],[-127.3628966021236,53.212059634681694],[-127.36308916741534,53.21192239487528],[-127.3631360443179,53.21174704566132],[-127.36311336916361,53.211567449375245],[-127.36309165759035,53.21138840675719],[-127.36306337493087,53.2112094397025],[-127.3630126243684,53.21103185162897],[-127.36294133583753,53.21085730566296],[-127.36285699244739,53.210685141975226],[-127.36276982953403,53.21051301960851],[-127.36268361220478,53.21034087733181],[-127.36260019814773,53.21016814694433],[-127.3625644532495,53.209990386070594],[-127.36255955350988,53.2098094735447],[-127.36247808849453,53.20963896178537],[-127.36236201394095,53.20947164482923],[-127.36234132713955,53.20929539606838],[-127.36237775627163,53.209116240518],[-127.36239244690164,53.20893174094168],[-127.3625514251861,53.20880048171623],[-127.36284430598411,53.20874949352457],[-127.36313709564763,53.208695699718334],[-127.3632872784579,53.20855333484138],[-127.36341048771546,53.20838943329956],[-127.363603853159,53.20824825645946],[-127.36365746026804,53.20807843207112],[-127.36364317679153,53.20789706257075],[-127.36363082589463,53.20771791197175],[-127.3636119014872,53.2075382811952],[-127.3635752062577,53.20735996651671],[-127.36351790572776,53.20718301846896],[-127.36341213685638,53.207015027953375],[-127.36323210547037,53.20687142392271],[-127.36310037512358,53.20671269644516],[-127.3630515049574,53.206535086389074],[-127.36303260145002,53.206356011008054],[-127.36302961108758,53.20617618778272],[-127.36304633532855,53.205996702526626],[-127.36308843540202,53.20581861068306],[-127.36315971815583,53.20564410062234],[-127.36326684405505,53.20547590159117],[-127.36335793281106,53.2053050810336],[-127.363400978844,53.205127533913675],[-127.36341677105216,53.2049480592062],[-127.36342972509651,53.204768061328636],[-127.36344550204791,53.20458858675539],[-127.36345941880514,53.20440913356727],[-127.36347426547046,53.204229669657934],[-127.36349098705453,53.2040501841517],[-127.36351522655913,53.2038711679162],[-127.36354321620523,53.20369211746282],[-127.36356745528353,53.20351310118219],[-127.36358510619526,53.20333360489051],[-127.36360277195718,53.2031541084062],[-127.36362324256466,53.20297457961865],[-127.36364183800936,53.20279507239041],[-127.36365105839072,53.20261567304361],[-127.36363681611336,53.202435987914875],[-127.36357394793117,53.20226021519995],[-127.36344492725357,53.20209809492849],[-127.36325199077594,53.20196080698883],[-127.36300853085311,53.201856032123764],[-127.36279263661447,53.20173356617474],[-127.36263476520256,53.201577944573025],[-127.36255808564515,53.201410174230894],[-127.36261609434082,53.20123133435168],[-127.36261028334069,53.201050987277185],[-127.36252696327651,53.20088106105143],[-127.36231741064846,53.20075124200316],[-127.36207761945184,53.20064361713681],[-127.36184788165194,53.20052804111092],[-127.3616062901625,53.20042267716725],[-127.36135464823654,53.2003252812756],[-127.36114055148657,53.200199994729616],[-127.36088184882439,53.200000141106514],[-127.36082496178668,53.19995148887934],[-127.36067547942092,53.19979408295886],[-127.36055949321634,53.19962844808857],[-127.36049009070967,53.19945331348359],[-127.36046836329918,53.1992737048283],[-127.36048507780612,53.19909366366401],[-127.3605375036703,53.19891600934038],[-127.36062860432035,53.19874519010658],[-127.36074417009358,53.198577460488],[-127.36084867385637,53.1983863165651],[-127.36088210440231,53.198230171300004],[-127.36087253376952,53.198049311317455],[-127.3608255756173,53.19787223358519],[-127.36075521213284,53.197696554219156],[-127.36066715436984,53.197524430825865],[-127.36056606431144,53.19735526298074],[-127.36045751212613,53.19718730132464],[-127.36034246091877,53.197021099553446],[-127.36021903860694,53.19685722599073],[-127.36008447728443,53.19669685090506],[-127.35991185589788,53.19654867425153],[-127.3596839276402,53.196429702605016],[-127.35948206963596,53.19630539319287],[-127.35939780563325,53.19613435483191],[-127.35934883708312,53.19595281715565],[-127.3593252747787,53.19577379385919],[-127.35931105318039,53.19559410754947],[-127.35924817714285,53.19541721171978],[-127.3592415084714,53.1952391151025],[-127.35928075838616,53.19505993576077],[-127.35926373246679,53.1948802725954],[-127.35918596890563,53.19470691823178],[-127.35903379971268,53.194552902665606],[-127.35887323932766,53.194400103750205],[-127.35874518730759,53.19423740226981],[-127.35864131151978,53.19406882939035],[-127.35854953884889,53.193897311656386],[-127.35845310579073,53.19372640310103],[-127.3583362361085,53.193561896522],[-127.35818776633745,53.19340559626117],[-127.35802350018997,53.193253959261554],[-127.3578610919461,53.1931017449266],[-127.35771916086954,53.19294480434677],[-127.3576237531419,53.19277668928862],[-127.35757113703613,53.19259799843652],[-127.3575232183268,53.19241981848948],[-127.35746969115637,53.192241693820584],[-127.35742835941423,53.19206399413273],[-127.35745074348489,53.19188500842629],[-127.35740778930105,53.191715171407246],[-127.357217613069,53.19157391547111],[-127.35694617194433,53.19150082548232],[-127.35666748218303,53.19143509723905],[-127.35638699374913,53.19137219489539],[-127.35610559450525,53.19130986709897],[-127.35582506873183,53.19124527850405],[-127.35554907920984,53.191176163954125],[-127.35527932045437,53.19109688322735],[-127.35501957493489,53.19100796683631],[-127.35479087127125,53.190892921327595],[-127.35462387681743,53.19074299622901],[-127.3544624557551,53.190591877611],[-127.35433259393146,53.19043032160036],[-127.35423804525487,53.1902593880327],[-127.35416591599959,53.19008540107794],[-127.35412363774611,53.189907155223004],[-127.35405895329313,53.18973139770394],[-127.35399802126778,53.18955616201857],[-127.35398851788153,53.189376420812145],[-127.3539733911153,53.18919673490796],[-127.353972330137,53.189016897156485],[-127.35396750513516,53.188837093451916],[-127.35395987640752,53.188657330746054],[-127.35395224745785,53.18847755906073],[-127.35395118658747,53.188297721239124],[-127.35395387720138,53.18811839632606],[-127.35395843905295,53.187938485227],[-127.35396298615794,53.187758583243145],[-127.35396662134464,53.18757924747816],[-127.35395336962567,53.187399539969505],[-127.35393449539482,53.18721990568355],[-127.35391936962907,53.187040219562725],[-127.3539248614447,53.18686030669388],[-127.35400846571304,53.18668957714516],[-127.35413259187868,53.18652567252089],[-127.35424820367231,53.186359623921255],[-127.35436097480651,53.18619248707849],[-127.3543683747463,53.18601367285282],[-127.35425434303885,53.185848564754316],[-127.35408924463204,53.185698617060915],[-127.35391672496343,53.185551550972406],[-127.35384551660218,53.18537698818075],[-127.35381541622618,53.18519803783975],[-127.35378345996466,53.18501967346908],[-127.35378332921401,53.18483981572123],[-127.35383680764974,53.18457755097428],[-127.35383552184133,53.18444925355865],[-127.3537970191269,53.18430065513606],[-127.35387351435023,53.184113206761566],[-127.3538370986274,53.18394217264775],[-127.35383235904969,53.18373547329271],[-127.35378969664059,53.18357404005438],[-127.35377118296377,53.18340559822429],[-127.35383964491227,53.18323056810192],[-127.3538239450462,53.183003823318394],[-127.35386558494216,53.18286944106307],[-127.35390963116322,53.18269356040821],[-127.35383717577162,53.18250893529119],[-127.35382960236207,53.18233084775296],[-127.35389717141994,53.1821575040863],[-127.35399479677032,53.18198605789],[-127.35410281067172,53.18181728979712],[-127.35422404688117,53.18165117633726],[-127.35438614044448,53.18150252492299],[-127.35462630613601,53.18139164513379],[-127.3548092447251,53.18125003400937],[-127.35491637793177,53.181082960496326],[-127.35494719242848,53.18090387779354],[-127.35495547951697,53.180723367455926],[-127.35495346979056,53.180543530732926],[-127.35494958636866,53.180363724396614],[-127.35495225416737,53.180183834117074],[-127.35497839039434,53.18000480484002],[-127.35502144584888,53.179827258339536],[-127.35507483305538,53.179650149385495],[-127.35513669909787,53.17947462872638],[-127.35520324201205,53.179299054486975],[-127.35525288018955,53.17912199725694],[-127.35529404157393,53.178943907447135],[-127.35534930354677,53.17876734158026],[-127.35539986995417,53.17859027359861],[-127.35543537258036,53.17841112785389],[-127.35555857536683,53.17824835182245],[-127.35567226725222,53.17808176692777],[-127.35575955901687,53.17790987223657],[-127.35582329355793,53.17773432959703],[-127.35586068563903,53.17755572675766],[-127.35590748263392,53.177378136783986],[-127.3559702713356,53.17720260482937],[-127.35602365154728,53.177025504156184],[-127.35612320208868,53.17685627463717],[-127.35618598912133,53.17668074251829],[-127.35625066445176,53.17650518871419],[-127.35632472926169,53.17633064789197],[-127.35641483608542,53.176159285016105],[-127.35650683379583,53.17598845620018],[-127.35658375074794,53.17581500306502],[-127.3566324165732,53.175637391167825],[-127.35666418204246,53.17545885227927],[-127.3566950000384,53.17527976840218],[-127.35674555636112,53.17510269054829],[-127.35685030785072,53.17492051817042],[-127.35698093912308,53.17475653444362],[-127.35718400811407,53.17462982055548],[-127.3574715045368,53.174593462590686],[-127.35774651686121,53.17466483344611],[-127.35801159119066,53.1747475146713],[-127.35826945947817,53.174839251726176],[-127.35851819370966,53.17493837243577],[-127.35876423386574,53.175040885341964],[-127.35902208744037,53.175132056169964],[-127.35926263757173,53.17523911346348],[-127.35948761107338,53.175356990326335],[-127.35963045196203,53.1755144750513],[-127.35974358625772,53.17568126554194],[-127.35981851423034,53.17585466248254],[-127.35997034888894,53.17600027273942],[-127.36025338208319,53.176058098571275],[-127.36053554339689,53.17611816598306],[-127.36081326278035,53.176185572149315],[-127.36109895429432,53.17623831825676],[-127.36139253060192,53.17627416405415],[-127.36168858620884,53.1762998952335],[-127.36197604523839,53.176349257121736],[-127.3622465616475,53.17642570760082],[-127.36250894606165,53.17651178061374],[-127.36277950054894,53.17658935005179],[-127.36306872839451,53.17663532716401],[-127.36335086146077,53.176694267665894],[-127.36362230906703,53.176770148503],[-127.36389643439331,53.17684207130502],[-127.36415250838209,53.176935492821016],[-127.36439490126608,53.17704083324081],[-127.36461167263442,53.17716496281407],[-127.36478785574596,53.17730973060502],[-127.36498345227406,53.17744587433767],[-127.36524747387837,53.17749493378667],[-127.36554951457084,53.177472965459096],[-127.36583056988961,53.17741088790984],[-127.36611260821152,53.17735048372117],[-127.36639366218022,53.1772884137929],[-127.36667775039459,53.17723302279332],[-127.36696880516006,53.17719044204789],[-127.36726195036523,53.17715456003614],[-127.36755831483802,53.17713153148567],[-127.3678571831333,53.17712751449063],[-127.3681524461221,53.17715716534934],[-127.36843462597388,53.17721721390325],[-127.36870108045716,53.17731219111959],[-127.3689963428987,53.17737096652526],[-127.36925883933445,53.17743068489429],[-127.36953117716493,53.177504856656974],[-127.36977631448693,53.177607357461426],[-127.37002694782154,53.17770587655895],[-127.37029570411424,53.177785126244686],[-127.37058700359799,53.177836664178194],[-127.37086271321668,53.17789903207435],[-127.37115541917937,53.17793654035835],[-127.37145316338093,53.17795550415163],[-127.37175163770749,53.1779682999225],[-127.37205031490667,53.1779586716233],[-127.37234786284803,53.17794289683796],[-127.37262796420848,53.17790939394267],[-127.37294490464072,53.17791356365454],[-127.37324385094712,53.17791178238599],[-127.37354260013313,53.17790439068086],[-127.37384111110137,53.17791830136468],[-127.3741402753834,53.17792322994464],[-127.37443860474895,53.17793153822874],[-127.37474443128932,53.177968885381766],[-127.37502192862026,53.177999281301844],[-127.37529875732841,53.178067228962966],[-127.3755827694349,53.17812499815857],[-127.37586227250343,53.178188431044326],[-127.37614357715,53.17824959217273],[-127.37642754049465,53.1783062482943],[-127.37671151929922,53.17836289459761],[-127.37699548416454,53.1784195493539],[-127.37727320840011,53.178485796654066],[-127.37753474286374,53.178572958302496],[-127.37780981148367,53.17864371766074],[-127.37809368834827,53.17869756485159],[-127.37839182309807,53.17869969771904],[-127.37868495096481,53.178663231852546],[-127.37897600348094,53.17862062162969],[-127.3792630701035,53.178570768716305],[-127.37954807982575,53.17851534501594],[-127.37983015744365,53.17845602819652],[-127.38012022639856,53.178412305985795],[-127.38041777451932,53.17839651092813],[-127.38071559921123,53.17841769178157],[-127.38115133747615,53.17847200200925],[-127.38145006765271,53.1784634700071],[-127.38174026316152,53.17842366892558],[-127.38202716069327,53.17836877299504],[-127.3823216116835,53.178344044464865],[-127.38262094798633,53.178354552674215],[-127.38291539180275,53.17838697351532],[-127.38318856115527,53.178457186840475],[-127.38344199401195,53.178553959832676],[-127.38369355729698,53.178651309957345],[-127.38395150502973,53.1787429908844],[-127.3842265303673,53.17881205058809],[-127.38452183475172,53.17884221621156],[-127.38482037412525,53.17885665481934],[-127.38510676816762,53.178900935226565],[-127.38527280286624,53.17904803321939],[-127.38534412991896,53.179222568738275],[-127.38548431357475,53.17943889046594],[-127.38553523378681,53.17956268164594],[-127.38564287732979,53.17973006840079],[-127.3857876860748,53.17988694365315],[-127.3859686086813,53.18003050462278],[-127.38614580276742,53.18017466478403],[-127.38631841601364,53.18032224908642],[-127.38652513760987,53.18045205993951],[-127.38674384684812,53.18057556225372],[-127.3869780752157,53.180686564730465],[-127.38723882746625,53.180777640991884],[-127.38749133898405,53.180874416260885],[-127.3877034866913,53.1809979937143],[-127.38789368039727,53.1811380813328],[-127.38807094095195,53.18128392326611],[-127.38822782745281,53.18143729218777],[-127.38833643093061,53.18160466525121],[-127.38841527140382,53.1817791197544],[-127.3885572235728,53.18193433975352],[-127.38872337394207,53.182084228614734],[-127.38887840994893,53.182238174190225],[-127.38904363340362,53.18238808244061],[-127.38923558298808,53.182524220735885],[-127.38952920847247,53.18255944104859],[-127.38982634327387,53.18258733105114],[-127.39010758692746,53.18264509834938],[-127.39034270975772,53.18275439839835],[-127.3905633346872,53.18287843606758],[-127.39077377490318,53.1830065195364],[-127.39097408517456,53.18314031567183],[-127.39119462202801,53.18326155619425],[-127.391411488877,53.183385636458056],[-127.39163477652875,53.183505158467504],[-127.39185071635092,53.18362924883425],[-127.39204182474325,53.18376763375422],[-127.39222738928434,53.18390888953409],[-127.39242401229352,53.184043856171485],[-127.39262247712895,53.18417823604476],[-127.39282005052264,53.18431374667761],[-127.39305704190029,53.184421898851696],[-127.39331688207585,53.18451240791563],[-127.39357668675947,53.184601805197836],[-127.39376305705107,53.184738566718394],[-127.39389307054375,53.18490064454054],[-127.39403048604264,53.185059273280146],[-127.39426477665775,53.18517081667839],[-127.39452278674436,53.1852624652929],[-127.39479611192667,53.185335447519265],[-127.3950694530455,53.18540842893536],[-127.39528168285914,53.18553312163823],[-127.39544412275325,53.18568304493962],[-127.39558156856758,53.18584279215629],[-127.39575607148711,53.185988655254384],[-127.39596561661212,53.18611729601752],[-127.39617057748124,53.186248796447934],[-127.39645983365779,53.18629245142664],[-127.39675873055661,53.18628780608552],[-127.39705825742301,53.186273622951006],[-127.39734848815617,53.186233219051346],[-127.39763148487718,53.186172728946524],[-127.39791555846806,53.186116707856236],[-127.39820775424127,53.186079084621696],[-127.39850601992069,53.18605539204381],[-127.39880381848128,53.18604570729018],[-127.39910317292974,53.18605449784856],[-127.39940174978366,53.1860683440395],[-127.39972883233602,53.18606559933904],[-127.39996715307481,53.18609976233962],[-127.40000025955808,53.1861088916374],[-127.40026899572275,53.18618415683243],[-127.40053144010096,53.18626734005834],[-127.40081014521758,53.186332400716616],[-127.40110465848174,53.186364776191944],[-127.40140381513379,53.186367960285814],[-127.40170012917316,53.18634148573662],[-127.40198215707069,53.18628043185753],[-127.40220613439078,53.18616459917213],[-127.40237557353066,53.186015793713445],[-127.40255729781668,53.18587020431039],[-127.4027659249706,53.18574391102048],[-127.40302942556899,53.185661226693085],[-127.40330637899173,53.1855884678059],[-127.40357936007013,53.1855090317032],[-127.40384655010737,53.18542461639471],[-127.4040658248131,53.185308835769064],[-127.40424386623665,53.185165528492576],[-127.40440750448082,53.18501175045281],[-127.40458071679862,53.18486401746104],[-127.40477207474396,53.18472615440614],[-127.4049681649995,53.18458991130223],[-127.40515664605502,53.18445040527873],[-127.40533748013696,53.1843064982836],[-127.40548222081706,53.184148460426],[-127.40557307475221,53.183977049881996],[-127.40552876383768,53.1837999551012],[-127.40546384176035,53.18362366969309],[-127.40537750583893,53.18345156497438],[-127.40512859768049,53.183182766860625],[-127.40510392300877,53.18300432724078],[-127.40515144513078,53.18282614260521],[-127.40511932992665,53.18264946767112],[-127.40498089549737,53.182489186850624],[-127.40480364600359,53.18234561065922],[-127.40463188956709,53.18219804244075],[-127.4045474524306,53.18202647035754],[-127.40450686249429,53.18184877512675],[-127.40451870515331,53.181668781568106],[-127.40455684312829,53.181490708355284],[-127.40462885836978,53.181316159885284],[-127.4047442764918,53.18115062613571],[-127.40484458636473,53.18098134487428],[-127.40489964422949,53.18080475612421],[-127.40499522300306,53.180634410207794],[-127.40509363792141,53.180464586358326],[-127.40521664064468,53.18030175906486],[-127.40537845699592,53.18015024185133],[-127.40559942528574,53.18002995514355],[-127.40588145770401,53.17997001176075],[-127.40616557195023,53.17991677559578],[-127.40629066251635,53.179760081148395],[-127.40629218284687,53.179580209700504],[-127.40630307251845,53.17940021799693],[-127.40638261369706,53.17922726415087],[-127.4065368885663,53.179074705163316],[-127.4067101063902,53.17892808874925],[-127.40689189358199,53.17878529685875],[-127.40707557540514,53.178643593795286],[-127.40724403785835,53.17849479180974],[-127.40742960990387,53.17835363046914],[-127.4076525113917,53.17823555787618],[-127.40790419062972,53.17813731367331],[-127.40816070998389,53.17804349380137],[-127.4083672996142,53.17791440767105],[-127.40851015175511,53.17775694345613],[-127.40859346200895,53.177584498815044],[-127.40868335982465,53.17741309633073],[-127.40875722874578,53.17723908741378],[-127.40882450857085,53.17706402724934],[-127.4088691904333,53.176885883040526],[-127.40890732078222,53.1767078077858],[-127.40895202042014,53.176530219114966],[-127.40900046727091,53.176352585813916],[-127.40906963726663,53.1761780676926],[-127.40916988455858,53.17600822688486],[-127.40929096255768,53.17584429691865],[-127.40941579066264,53.17568087798693],[-127.40950662547735,53.17550946345856],[-127.40957482913066,53.17533440060031],[-127.40960824475769,53.17515582522258],[-127.40960319995445,53.17497602230827],[-127.40958036611994,53.17479699595191],[-127.40953321147116,53.17461937973162],[-127.40946179242445,53.17444485835438],[-127.40935034273971,53.17427864877178],[-127.40919062199018,53.174125905168594],[-127.40901243040248,53.17398179025849],[-127.40882776392122,53.17383998439344],[-127.4086329876878,53.17370391056277],[-127.4084317404204,53.17357071044921],[-127.40822682164271,53.173439794897554],[-127.40802184807676,53.173307194244735],[-127.40788574965244,53.17324493772185],[-127.40741101621651,53.172891429686544],[-127.40678469910308,53.172432133103186],[-127.40637237234756,53.17195349118976],[-127.40605862471763,53.17173421551354],[-127.40570787457939,53.171557396940976],[-127.40563287557947,53.17155661098311],[-127.4055826324021,53.1714826821554],[-127.40542024829753,53.171333891774864],[-127.40513554401545,53.171170299639684],[-127.40490579733849,53.17113772240128],[-127.40463859847426,53.17110615387365],[-127.40452126658391,53.17107225104415],[-127.40441284144867,53.17079842196012],[-127.40434052413381,53.17062446393866],[-127.40424210441493,53.170454177324416],[-127.40413719497786,53.17028620882404],[-127.4040127371298,53.17012239869885],[-127.4038521626637,53.169971334528135],[-127.40366662043365,53.16983009589155],[-127.4034607902594,53.1696991830207],[-127.40323388805491,53.169582531741376],[-127.4029923330789,53.16947613025883],[-127.40275172385236,53.169369726050085],[-127.40250926418896,53.16926445493324],[-127.40226500306171,53.16916089007165],[-127.40200280789567,53.16905361943825],[-127.40182866849943,53.168917281211804],[-127.40179192025911,53.16874122397882],[-127.40186394732733,53.16856779633099],[-127.40199823907855,53.16840651381779],[-127.40216762656796,53.16825827178695],[-127.40238848607673,53.16813630554585],[-127.40264993012296,53.16805140311183],[-127.40294396681817,53.16801710633084],[-127.40324267466153,53.16801020405202],[-127.40354127440138,53.16800049627744],[-127.40383732833035,53.1679700910213],[-127.40406215163192,53.16785480722096],[-127.4042182483947,53.167701672480526],[-127.40433172012771,53.16753503099022],[-127.40445279262688,53.167371105213185],[-127.40456154968861,53.16720340773471],[-127.4046476762791,53.16703148723084],[-127.40471119168342,53.16685591727983],[-127.40474742369399,53.16667730919093],[-127.40477241178456,53.16649827867685],[-127.40481053502413,53.166320203909734],[-127.40488910980417,53.16614669629094],[-127.40499407813306,53.165977922592695],[-127.40510663176234,53.16581185579993],[-127.40522578581943,53.165646831137856],[-127.40535627543085,53.165485033605535],[-127.4054934025093,53.16532539832985],[-127.40561160954596,53.165160384445926],[-127.40571469895809,53.16499162330089],[-127.40582722868389,53.16482500012557],[-127.40593127930471,53.16465679211709],[-127.40597974369844,53.16447971450796],[-127.40597935432989,53.16429874363765],[-127.40582717988737,53.164146461448425],[-127.40569351235195,53.163986679742145],[-127.40564265832089,53.163809669985],[-127.40572782950684,53.1636377595875],[-127.40584321011819,53.163472222992276],[-127.40596423140627,53.16330773091334],[-127.40606355002339,53.16313845818549],[-127.40606033924377,53.16295695590137],[-127.40607677108555,53.16277466443493],[-127.40607590221252,53.162607702357015],[-127.40613944226835,53.16243325139269],[-127.40626427673617,53.1622703989773],[-127.40640895707553,53.162112913696426],[-127.40656120341586,53.16195757954316],[-127.40671821694204,53.1618049855799],[-127.40689516576194,53.161660007736245],[-127.40708259053619,53.1615199433766],[-127.40726999908523,53.16137987888759],[-127.40743553773244,53.16122998854308],[-127.4075925603936,53.16107739318106],[-127.40774481744275,53.16092262198732],[-127.40788284979676,53.16076297249471],[-127.4080057622762,53.16059902019552],[-127.40810412233888,53.16042975673463],[-127.40816666567532,53.1602536307776],[-127.40820285897446,53.16007446537625],[-127.40829003088308,53.15990645542681],[-127.40852232845799,53.159792184716714],[-127.40879928961176,53.15972501285468],[-127.40907821630891,53.15966062297078],[-127.40935808968965,53.15959677697332],[-127.40963797721062,53.159532930133466],[-127.40991586392917,53.15946574458423],[-127.41017913088638,53.1593813584168],[-127.4104520793828,53.15930638605423],[-127.41074317229533,53.159269862774494],[-127.41104241012636,53.159252848101545],[-127.411342207918,53.159252635350384],[-127.4116363167279,53.15927826404539],[-127.41192728116202,53.1593224153392],[-127.41222002241653,53.159363191815395],[-127.41251678508388,53.15938430417382],[-127.41281506577387,53.159394747257586],[-127.41311512631783,53.159402371262104],[-127.41341257577379,53.1594161936064],[-127.41370945163597,53.15944066350742],[-127.41400734669031,53.15946736174043],[-127.41430354121759,53.15949968267209],[-127.4145953231044,53.15953989998123],[-127.41487809583867,53.159590865730394],[-127.41512685436528,53.15968931271795],[-127.41537487198228,53.15979336221077],[-127.41564982934692,53.15986291439481],[-127.41594921927364,53.15985036803046],[-127.4162473730737,53.159856886324626],[-127.41654662092785,53.15986787327537],[-127.41684501879696,53.159881675692326],[-127.41714260394052,53.15989940479658],[-127.41742997867237,53.15994751232178],[-127.41772258310682,53.159984350257616],[-127.41802027798424,53.16000487293457],[-127.41831932469971,53.16001025470258],[-127.41861559383308,53.15998821815989],[-127.41890647772759,53.15994550937134],[-127.41918342340576,53.15987831321921],[-127.4194494389834,53.15979275267841],[-127.41973254686106,53.159741734872945],[-127.42002753086815,53.159709615575046],[-127.42032463192916,53.159684758685124],[-127.42062288356802,53.159666055163285],[-127.42092348151448,53.159661881899886],[-127.42121589530285,53.15969255454333],[-127.42149279093388,53.159763746449116],[-127.42175430103042,53.159850820276674],[-127.42198403815019,53.15996796740334],[-127.42220556605709,53.1600919364974],[-127.42241504438805,53.16021996770796],[-127.42263822207426,53.16033719241825],[-127.42288325686538,53.16043566809301],[-127.42312386220965,53.160541476120244],[-127.42335138219319,53.160620545984756],[-127.42368605197248,53.160682073030564],[-127.4239457178461,53.160769720109776],[-127.42418638442703,53.160877210698935],[-127.42442336612123,53.160986977442995],[-127.42459314513462,53.16107626965486],[-127.42461041726307,53.161227346400665],[-127.42483736033859,53.16112207278062],[-127.42513830914197,53.16109996364384],[-127.42543554883208,53.16107901007006],[-127.42572855183639,53.16104354758963],[-127.42599968587427,53.16097080235514],[-127.42622426037516,53.160850986380794],[-127.42645176802101,53.16073506128678],[-127.42670331861503,53.16063734076198],[-127.42695876495925,53.16054404626222],[-127.42722588314473,53.160463502154194],[-127.42750775488382,53.16040351559251],[-127.42779560759428,53.16035465351655],[-127.42808548011712,53.16030969304294],[-127.42837641351325,53.160268645730746],[-127.42867041279806,53.1602353961246],[-127.42896665905764,53.16021276911061],[-127.42926390968582,53.160192370480544],[-127.42955998902424,53.160165261472855],[-127.42986607276708,53.16015652572176],[-127.43013496387215,53.160212105497806],[-127.43035182295644,53.1603355602151],[-127.43062408203426,53.16040735180162],[-127.43091670112223,53.160444157113],[-127.43120322691236,53.160494482941495],[-127.4314800650144,53.16056285532388],[-127.43177676990732,53.16058167903888],[-127.4320744007361,53.160572475067916],[-127.43232499305007,53.160474745049356],[-127.43257077648204,53.16037315496451],[-127.43283788291166,53.16029259818531],[-127.433132936961,53.160262695542364],[-127.43349138093743,53.16011267280237],[-127.43363322639573,53.15995742835363],[-127.43391336824749,53.15990248568108],[-127.43421303752316,53.15989828992567],[-127.4345116070359,53.159889068383855],[-127.43480987786072,53.159898900435024],[-127.43510928149276,53.1598868701771],[-127.43539925073034,53.159928179076665],[-127.43569587693388,53.15994475263405],[-127.43599079338983,53.15991091778484],[-127.43628322367488,53.159942108988716],[-127.43654214446664,53.15997930935778],[-127.43687278797503,53.15997697218255],[-127.43716594475397,53.15994651765552],[-127.43746428573223,53.159930567646995],[-127.43775977851055,53.15994154664864],[-127.43804381137392,53.160000851329656],[-127.43833020957128,53.16004724380634],[-127.43864746026891,53.16006411518166],[-127.43892305523339,53.1600960693326],[-127.43920873531471,53.16014862742623],[-127.43948823381598,53.16021246634278],[-127.43977208433166,53.160266721809094],[-127.44006733695234,53.16029786938942],[-127.44035821975297,53.16033803447706],[-127.44064561396773,53.16041354572666],[-127.4405405276617,53.160243923846764],[-127.44052281789291,53.16008164766022],[-127.4407165582183,53.15993808973705],[-127.44093156814506,53.15981388808209],[-127.44116568826121,53.15970065068278],[-127.44140862500409,53.15959852072113],[-127.44168248674478,53.15952458521541],[-127.44194860330258,53.15944289898886],[-127.44220595819009,53.15935178904493],[-127.44245553376908,53.15925237306412],[-127.44268202118445,53.159135307831754],[-127.44287978238283,53.15900010637679],[-127.44304991776951,53.158851784829174],[-127.44315668418523,53.1586857497479],[-127.4432228443392,53.15851012400886],[-127.4433399412985,53.15834508337158],[-127.44349302074835,53.158190810076604],[-127.44367075750387,53.158045765662216],[-127.44385043813972,53.15790237370962],[-127.44406237073059,53.15774345487534],[-127.44422403041075,53.15762157425842],[-127.44441702831539,53.15748418683228],[-127.44461192083737,53.157347887609994],[-127.44480873855198,53.15721269413903],[-127.4450074319129,53.15707803324949],[-127.44520805014963,53.156944469131346],[-127.44540963432978,53.1568120134868],[-127.44561405736397,53.1566806434334],[-127.44582135319996,53.15655091437754],[-127.44602963027134,53.156422302546254],[-127.44623406848086,53.15629148699785],[-127.44643466013815,53.156157365138974],[-127.44663052226385,53.15602217112589],[-127.44682538194259,53.155885312545394],[-127.44699745571594,53.15573921129],[-127.447118294999,53.155574676468426],[-127.44723347249912,53.15540853426211],[-127.44737419300968,53.15524992398362],[-127.44752969823057,53.15511298959277],[-127.4477088170811,53.1549539091771],[-127.44790515807715,53.15480582413091],[-127.44811655250669,53.15465923099935],[-127.44824782162365,53.154525954053014],[-127.44838003864783,53.15436520520772],[-127.44848575231232,53.15419693612311],[-127.44858769622151,53.154027592425095],[-127.44872653429218,53.15386900334309],[-127.44889140409187,53.153759403479555],[-127.44906855944309,53.15370792617994],[-127.44923137972599,53.15367511023357],[-127.44952130315029,53.15363402236323],[-127.44980230708374,53.1535784657706],[-127.4500583355526,53.153477277274355],[-127.45026950108291,53.153351974982606],[-127.45041209547446,53.153193902526894],[-127.45047161649991,53.15301723246622],[-127.45050970442418,53.15295344494666],[-127.45062395616608,53.152870237690784],[-127.45093588483357,53.15281542881079],[-127.4512206653294,53.152760943071264],[-127.45145477668869,53.152649369618985],[-127.45171012060236,53.152556030263604],[-127.4519519124665,53.152449964767165],[-127.45220632491085,53.15235662676672],[-127.45251123960836,53.15228845202728],[-127.45263446241465,53.15222137743066],[-127.45270480535348,53.152169529189294],[-127.4528350869688,53.15200767797893],[-127.45285984779643,53.15182862713665],[-127.45271179695244,53.15166346915767],[-127.45261544536119,53.15150327956183],[-127.45255135904004,53.151328125473846],[-127.45251540151239,53.1511537467026],[-127.45244838439098,53.15097526658601],[-127.45240854797076,53.15079701760373],[-127.45235189631356,53.1506200866612],[-127.45230848813327,53.15044691986732],[-127.45225824563417,53.1502654365879],[-127.45221559397127,53.150087213075885],[-127.45217110441028,53.14990957689506],[-127.45212567143567,53.14973195226247],[-127.45207836625701,53.149554350575066],[-127.45203293405251,53.1493767258721],[-127.4519856296596,53.149199124112855],[-127.45192247822105,53.14902395806418],[-127.45185278085577,53.14884887229107],[-127.45179522470109,53.14867251685486],[-127.45173672526634,53.14849617295281],[-127.45167355685724,53.14832045109782],[-127.4516076067252,53.14814531916472],[-127.45152047629729,53.14798053281212],[-127.45146308935252,53.14786412504602],[-127.45143750181279,53.14780056223401],[-127.45135198086417,53.14762847629654],[-127.45132700793896,53.14758283621966],[-127.45128228815415,53.147453390052554],[-127.45127874869372,53.14737722967495],[-127.4512929976952,53.14727395564612],[-127.45133924734631,53.1471747716593],[-127.45141674688048,53.14711330621174],[-127.45156673073386,53.147034697647136],[-127.45163646388005,53.14699237827846],[-127.45189443991379,53.14689507877891],[-127.45217396548975,53.146852425798805],[-127.45230486534773,53.14684578071086],[-127.4524689122367,53.14682247473865],[-127.45276076897373,53.1467841515592],[-127.45305262926861,53.14674638344896],[-127.45332256167153,53.14666967034548],[-127.4535643734148,53.1465652769888],[-127.45378115021254,53.14644102807687],[-127.45398839029444,53.14631184855291],[-127.4541946469362,53.14618156008282],[-127.45439520366266,53.146048535197366],[-127.45447644155287,53.14598702167404],[-127.45457003158262,53.145902943313416],[-127.45471540506229,53.14574538619179],[-127.4548589200313,53.14558785171781],[-127.4550213933039,53.14543737258013],[-127.45519428625788,53.14529011801105],[-127.45537862423834,53.14514889041646],[-127.45558010136558,53.14501586098416],[-127.45579020265184,53.14488831933643],[-127.45600600124932,53.14476351327787],[-127.4562314259233,53.14464587700998],[-127.45645970803298,53.14452988160213],[-127.45666977016856,53.14440178293696],[-127.45689038678724,53.14428083363318],[-127.45715348512692,53.1441969068688],[-127.4574422145352,53.1441502099523],[-127.45773094299832,53.1441035033688],[-127.45800872510895,53.14403788891563],[-127.45813168526126,53.14399154760071],[-127.45823711479453,53.14392525055885],[-127.45840240479953,53.14377528753763],[-127.45859434965395,53.14363787861909],[-127.45870041855719,53.14359062427843],[-127.45883852645566,53.14357603839961],[-127.45900795881813,53.143627740187526],[-127.4591314155791,53.143677202668975],[-127.45925468220169,53.1436941775165],[-127.4594148118343,53.14369332297257],[-127.45971515505006,53.1436576746848],[-127.4599871043339,53.143613419798235],[-127.4602747668024,53.14356335812078],[-127.46056883351562,53.14353563862504],[-127.4608650082013,53.14351517210345],[-127.46102540879443,53.14349526098213],[-127.46119505483983,53.14347187350434],[-127.4612711420271,53.143478213485935],[-127.46145744900898,53.14347647699502],[-127.46175609013308,53.143472787511904],[-127.46205342000226,53.143458462821734],[-127.46222142922801,53.14346927839916],[-127.46248876715492,53.14353545425577],[-127.46275657444376,53.14361562735678],[-127.46302880044536,53.14368790963232],[-127.46332381894665,53.1437150744062],[-127.46363668534454,53.14368935604834],[-127.46380804237316,53.14360710502163],[-127.46407513191933,53.14344971510029],[-127.4642894867224,53.14333779431192],[-127.4645613118473,53.143263272782605],[-127.46484400282259,53.143204861034285],[-127.46513271667708,53.14315813636543],[-127.46542998520542,53.14314212741194],[-127.4657284493112,53.14313339161298],[-127.46602813263779,53.14313304035467],[-127.46632474998495,53.14315233325737],[-127.46662152309115,53.14317611506055],[-127.46692049589102,53.143182494264366],[-127.46722168578874,53.14319836627575],[-127.46751535249425,53.14321377499973],[-127.46781123686607,53.143238685507804],[-127.46810639137911,53.14326976344065],[-127.46839722692734,53.14331153596054],[-127.4686931901999,53.1433386846019],[-127.46897011709682,53.14341145080875],[-127.4692370267921,53.14349218534387],[-127.46950129201194,53.143577434742234],[-127.46976008188427,53.14366723419002],[-127.47001616892145,53.14375986381276],[-127.47027225738992,53.143852501837785],[-127.47055773047612,53.14390105966614],[-127.47085297421438,53.1438805796917],[-127.4711314101006,53.14380763730072],[-127.47140444230044,53.143740929518664],[-127.4716763157298,53.14366806743372],[-127.47181497697807,53.14358845263134],[-127.47196105950927,53.14353396450173],[-127.4721037644354,53.14340948186653],[-127.47221396669828,53.14337337031417],[-127.47232581464642,53.14327727873504],[-127.47243875906223,53.14323945634047],[-127.47261554513442,53.14317898196191],[-127.47282432615062,53.143150043151905],[-127.47297638450593,53.14313302570967],[-127.47308956795762,53.14312881035141],[-127.47323082106038,53.143124254312426],[-127.47334799583463,53.14310038204339],[-127.47350125882251,53.143063732992545],[-127.47365574239637,53.14303546895781],[-127.47395361131599,53.14303680568138],[-127.47424140933822,53.14299119070805],[-127.47452112820027,53.14292831006116],[-127.47481384743575,53.142889365231966],[-127.47510886730363,53.142862709221156],[-127.47540601290471,53.14284331469776],[-127.47570426269338,53.14282895308079],[-127.47599632448988,53.14279784912213],[-127.47611685089305,53.142762725710824],[-127.47623441146983,53.142696260839266],[-127.47642436289009,53.1425571705107],[-127.47664203917314,53.14243454363228],[-127.47683749654061,53.14231891763141],[-127.47719312397143,53.14207017472411],[-127.47718123620947,53.14189046237825],[-127.4771282374348,53.141713495680705],[-127.47713977962731,53.14153404659539],[-127.47716630410805,53.14135497522619],[-127.47718251905533,53.141175467751346],[-127.47716036139572,53.1409964394],[-127.47709244510467,53.14082134434854],[-127.47695297027175,53.140662267048135],[-127.476856200467,53.14049201470202],[-127.47674549990438,53.14032529814156],[-127.47668131134365,53.14014960044375],[-127.47669001960766,53.13996962182903],[-127.47671000000855,53.13979063210716],[-127.4767205998944,53.13961119464979],[-127.47669188508215,53.139432247944455],[-127.47663794788102,53.139255292564364],[-127.4764781363057,53.139103201416034],[-127.47641769459764,53.13892744776191],[-127.47634604050516,53.138752398811675],[-127.47624928220503,53.138582710541606],[-127.47608115952211,53.13843407557575],[-127.47591218785428,53.13828770124676],[-127.47591337170327,53.13810669576195],[-127.47598031210946,53.1379316027168],[-127.47595814625133,53.137752574005084],[-127.47593130796245,53.1375736035724],[-127.47592691464169,53.137393788259814],[-127.4759262657237,53.137213935175346],[-127.47593030403367,53.13703401462394],[-127.47594652256466,53.136854506888085],[-127.47596556114837,53.136675528754786],[-127.47603155089287,53.13649988256065],[-127.47610507146557,53.13632581883485],[-127.47612503294346,53.136146264282864],[-127.4761459574018,53.135967262502334],[-127.47617622621263,53.135788135118176],[-127.47622154410575,53.13561050536287],[-127.47629882592778,53.1354369592727],[-127.4763921238662,53.13526601933183],[-127.47650807917435,53.135100390801796],[-127.47668185742879,53.134954776962026],[-127.4769176949155,53.13484369324555],[-127.47714779790837,53.13472930970428],[-127.47730254550765,53.134575532064595],[-127.47747531667251,53.13442824406047],[-127.47768531921434,53.134301227360275],[-127.47794727337319,53.134214469735156],[-127.47824288124339,53.134179397179764],[-127.4780521447634,53.13405346062287],[-127.47778627994643,53.13397441850295],[-127.47760153835199,53.13383216123125],[-127.47740394871327,53.133697343972024],[-127.477213711216,53.13355851673519],[-127.47702530776311,53.133418545633326],[-127.47683509244266,53.13328028233348],[-127.47663565565192,53.133146051689224],[-127.47641605936501,53.133024399632056],[-127.47616183635496,53.13293007520582],[-127.47590489666034,53.13283858131234],[-127.47566249906384,53.13273402231918],[-127.47537950077374,53.13267367507744],[-127.47510030560719,53.13261496520999],[-127.47491372648874,53.13247328258455],[-127.47475950814587,53.13231999852817],[-127.47468974388373,53.13214492459267],[-127.47457627345088,53.13197824014333],[-127.47448048078029,53.131808529064664],[-127.4743827977574,53.13163828561877],[-127.47441966892528,53.13146020562941],[-127.4743928411217,53.131281234221476],[-127.47432122766533,53.131106738907974],[-127.47432151404796,53.13092687361293],[-127.47425269724774,53.130751787524396],[-127.47421465952947,53.13057351159954],[-127.47421588971089,53.13039363449268],[-127.47426306679736,53.13021598181035],[-127.47424747070569,53.13003687025625],[-127.47425902191881,53.12985742028738],[-127.47427150139458,53.12967795872704],[-127.47428208942976,53.12949795591015],[-127.47428708198734,53.12931858763878],[-127.47428362516143,53.12913876882816],[-127.47426988139433,53.12895906926851],[-127.47425426640085,53.12877940198199],[-127.4742461378156,53.12859963238952],[-127.47425113041953,53.12842026402983],[-127.47426359016985,53.12824024671842],[-127.47430985566956,53.12806316098459],[-127.47428488276043,53.12788361027285],[-127.47423006164318,53.127707228800254],[-127.47421351865464,53.12752756399358],[-127.47421100556922,53.12734773324245],[-127.47421410694437,53.12716782351987],[-127.47425097493102,53.12698974313924],[-127.47425781924595,53.12680978671699],[-127.47427029782918,53.12663032485161],[-127.47427903320276,53.1264509096304],[-127.47431211822204,53.12627175564404],[-127.4743414792249,53.126093203904645],[-127.47436707727613,53.125914134236425],[-127.47438984100836,53.12573454402935],[-127.47440702463075,53.12555558818501],[-127.47441199654686,53.12537565494338],[-127.47440386825727,53.12519589398166],[-127.47438731054038,53.12501622913396],[-127.47436984435672,53.1248371404097],[-127.47435797340384,53.124657426056984],[-127.47435453131716,53.12447759763237],[-127.47435668897046,53.124297708338865],[-127.47436449525871,53.124118304450725],[-127.47438164371422,53.12393878406426],[-127.47440631206338,53.1237597257452],[-127.47444408485623,53.1235810688208],[-127.47451477055809,53.12340648412847],[-127.47464204648817,53.123244085821796],[-127.47477782791306,53.123083813641564],[-127.47484662067441,53.12290869643241],[-127.47485535284063,53.12272928079546],[-127.474796793258,53.12255294575936],[-127.47460292991074,53.12241583593136],[-127.47435783923473,53.12231299350751],[-127.4740838988351,53.12224187994768],[-127.4737948831857,53.12219505248121],[-127.47350158682696,53.12215948432822],[-127.4732075381935,53.122128972309504],[-127.47291266333119,53.12210182289135],[-127.47261520823577,53.1220814378418],[-127.47231638345531,53.122075072952335],[-127.4720193042366,53.12209221957693],[-127.4717267457064,53.122131722515434],[-127.47143401141346,53.12216617942864],[-127.47113777200812,53.12215362020287],[-127.47089539343641,53.12204793082177],[-127.47071257872727,53.1219050739954],[-127.47047206967414,53.12179880465991],[-127.47020614471309,53.1217158200294],[-127.4699520226458,53.12162203727352],[-127.46971695610584,53.12151065129064],[-127.46950016178754,53.121386710442614],[-127.46927790584321,53.12126676388364],[-127.46904010625595,53.121157651872316],[-127.46879684927147,53.12105308984664],[-127.46855268917145,53.120949659211874],[-127.46831035815798,53.12084451988697],[-127.4680662004471,53.12074108823587],[-127.46779046783048,53.12067166802648],[-127.467499749463,53.12062877330424],[-127.46721254580967,53.12057966611612],[-127.46694939097803,53.120494954425425],[-127.46667815362632,53.12041987255664],[-127.46640780662587,53.120343658366764],[-127.46614371205195,53.12025896552995],[-127.46589140148218,53.12016291039867],[-127.46564090536465,53.120065155731446],[-127.4653913147823,53.11996626865427],[-127.46514354292671,53.11986623785749],[-127.46489488282242,53.11976733822074],[-127.46459661647047,53.119749740459305],[-127.46430593845756,53.11978920191336],[-127.46415214535251,53.11994351689934],[-127.46394986698974,53.120076018662495],[-127.46370732755696,53.12018156664069],[-127.46344639784174,53.120269402109756],[-127.46321922817422,53.120385965465715],[-127.46300641309863,53.12051187192111],[-127.46275516526077,53.12060911614273],[-127.46246042772205,53.12063965785203],[-127.4621622913832,53.12062597013012],[-127.46187160270512,53.12058418194261],[-127.46158355499472,53.120537312930914],[-127.46129290162781,53.12049607874624],[-127.46099596405541,53.12051711386737],[-127.46070940620079,53.120567722087316],[-127.46043675759559,53.12064169174565],[-127.46015023683371,53.120693418793856],[-127.45986061161447,53.120736782973225],[-127.45958402487756,53.12080519593141],[-127.45931038658259,53.12087748967917],[-127.45903177242727,53.12094144368737],[-127.45874015735141,53.120981467646075],[-127.45844641515833,53.12101366350955],[-127.45815171025156,53.121045314660606],[-127.45785688927646,53.12107360451462],[-127.45756519511148,53.121111385198354],[-127.45727363067083,53.12115251657839],[-127.45698295563196,53.121192524575775],[-127.45669233765825,53.12123420765847],[-127.45641078720605,53.12129482958867],[-127.45614884973698,53.121380984532514],[-127.45589179361943,53.12147323793416],[-127.45563664652141,53.12156659688477],[-127.45538925274018,53.1216676955018],[-127.45517258830634,53.12179139345887],[-127.45495208387031,53.1219123410737],[-127.45468431825113,53.121992961067306],[-127.45440670985518,53.122059132911694],[-127.45412906624497,53.12212473971145],[-127.45383647175726,53.1221636427783],[-127.45354164012127,53.12219192185677],[-127.45326007440491,53.12225197149457],[-127.45296165892731,53.122257879954404],[-127.45266681550844,53.122231244633916],[-127.4523721362167,53.122264001548984],[-127.45208958710347,53.122322948755304],[-127.45181592622333,53.122395225100085],[-127.45154712758817,53.122473053374684],[-127.45127740381548,53.12255144822424],[-127.45100468762163,53.1226242758656],[-127.45072608780352,53.122689330431854],[-127.45043234701187,53.12272207093363],[-127.45013373612949,53.122722371312626],[-127.44983429270512,53.122725478309825],[-127.44953608000803,53.122736978885435],[-127.44923756495844,53.122740081954944],[-127.44893871975373,53.12273309342305],[-127.44864217666274,53.12271151633901],[-127.44834492013811,53.122696662238525],[-127.44804675490309,53.12268238333308],[-127.44774866642291,53.122670344054995],[-127.44744987951228,53.12266503652598],[-127.44715119248869,53.12266308899467],[-127.44685242498369,53.12265834453187],[-127.44655352753249,53.122650229965835],[-127.44625288878588,53.12264550688149],[-127.44597121456323,53.122593474543514],[-127.44573896706254,53.122480886542526],[-127.44554423196116,53.12234262920623],[-127.44530035047079,53.122245871788905],[-127.44502458791304,53.122174713794294],[-127.44474978870633,53.12210410820629],[-127.44447049544556,53.12203916017427],[-127.44418581802164,53.12198100119454],[-127.44389261662542,53.12197506067745],[-127.44359401768803,53.12200279608459],[-127.44332503457314,53.122075560346346],[-127.44310071393052,53.122195411335625],[-127.44284933414639,53.122290372788214],[-127.44255649902198,53.12232251783319],[-127.4422575626892,53.12231271641909],[-127.4419602733828,53.12229673503767],[-127.44166087048463,53.12230094153272],[-127.4413645816737,53.12228662296162],[-127.44107824517033,53.12223464485714],[-127.44078686630645,53.122199528384655],[-127.4404879693353,53.122190842689065],[-127.44018982949942,53.12217710854803],[-127.43989184182739,53.12216784546369],[-127.43959447830792,53.12214961774895],[-127.43929709165786,53.12213025994981],[-127.43900090805867,53.12214675671601],[-127.43870057772149,53.122150967012615],[-127.43842688869766,53.12208538078761],[-127.43819454995642,53.121969417360546],[-127.43792099579389,53.12190774615353],[-127.4376249649448,53.121928711287445],[-127.43734145020457,53.12198706997573],[-127.43705071264063,53.12202590876785],[-127.43675261922921,53.12204129349201],[-127.43645419907587,53.122046604501264],[-127.43615583951281,53.1220541463654],[-127.43585791270081,53.12207401838874],[-127.43557123840515,53.12212232526092],[-127.43527745574544,53.12215446373559],[-127.43497922430485,53.12216537199255],[-127.43468107241559,53.1221790756837],[-127.43438405312786,53.12219836815311],[-127.4340891324491,53.122224358346635],[-127.43379328319995,53.12225035905895],[-127.43349531982813,53.12226966073191],[-127.4332065615654,53.1223118190029],[-127.4329170263583,53.122358477555736],[-127.43262223608285,53.12238838028904],[-127.43232582086841,53.122398139167395],[-127.43202781381716,53.12241575218723],[-127.43173500777705,53.12244899959092],[-127.43144335626346,53.122488947241116],[-127.43114962104369,53.122522204430425],[-127.43085271123395,53.12254484861247],[-127.43055568763991,53.12256413146308],[-127.43025787184531,53.122587905756895],[-127.42997007043732,53.12263060928829],[-127.42970519951771,53.12271505485458],[-127.42943265322035,53.12279399829668],[-127.42915823418677,53.122872954763494],[-127.42891438039265,53.122970036477916],[-127.42875267799542,53.12311599860388],[-127.42862447226244,53.12328395987526],[-127.42847053655102,53.12343822813626],[-127.42832134262848,53.1235941243557],[-127.42814320774515,53.12375260222274],[-127.42792689336429,53.12380620857902],[-127.42778578394147,53.12364653865043],[-127.42793569670444,53.123483910548586],[-127.42804991898156,53.123317795448244],[-127.42817164511914,53.12315215439232],[-127.42831900437558,53.12299740112345],[-127.42853673431428,53.122874861257266],[-127.42876110004337,53.12275504690223],[-127.42893021110297,53.12260675388738],[-127.429115485186,53.12246611879631],[-127.42931787978131,53.12233311205039],[-127.42956335485422,53.12222873005347],[-127.42983128692724,53.12215208333831],[-127.43012700164947,53.12212161157218],[-127.43042629096611,53.12211407368977],[-127.43072503402482,53.12211830403347],[-127.43102388654869,53.12212532944884],[-127.43132257313442,53.12212788247079],[-127.4316235621607,53.12214272508551],[-127.43183793624836,53.12206000722708],[-127.4320165420804,53.12191607722102],[-127.43219892760351,53.121773230758585],[-127.43239274820178,53.12163640458312],[-127.43256751311783,53.121489723041186],[-127.43263462514967,53.121315208549376],[-127.43280188344727,53.121168052747244],[-127.43300237426935,53.12103507141767],[-127.43323635831642,53.12092353204109],[-127.43344157000777,53.120791604385985],[-127.43356823769147,53.120634297722695],[-127.43354338478547,53.120453052918975],[-127.43351112268394,53.12027413923005],[-127.4336094200725,53.120108775967736],[-127.43384332159343,53.119994994940704],[-127.43408894243376,53.11989563981439],[-127.43427700164234,53.119754953328155],[-127.4344660597595,53.11961593986449],[-127.43467129952256,53.11948513913636],[-127.43489566759102,53.119366424150556],[-127.43513154663752,53.119255978407345],[-127.43538284982105,53.11915879280717],[-127.43564774397802,53.11907601017003],[-127.43589520767598,53.118976072903266],[-127.43612049775447,53.118857344288514],[-127.43634007423275,53.11873533162362],[-127.43656539976274,53.11861772234104],[-127.43680416057536,53.11850947941331],[-127.43705059916411,53.118407310765775],[-127.43727408388628,53.11829028725081],[-127.43745834498557,53.11814852087552],[-127.43765029883197,53.11801282875099],[-127.43776255908357,53.11784560631902],[-127.43787954609485,53.117680011741044],[-127.43800788796399,53.117517631929516],[-127.43816840426267,53.11736607614534],[-127.4383450596254,53.11722103876798],[-127.43852267600849,53.11707655421962],[-127.43869267751022,53.116928800061636],[-127.43880685912588,53.11676323854309],[-127.43885792670224,53.11658555292633],[-127.43889306260944,53.116407496344365],[-127.43893005047434,53.11622886134407],[-127.43895953471265,53.11604976178885],[-127.43898620425713,53.11587068749804],[-127.43901383578067,53.11569216628425],[-127.43904144820343,53.115513089428525],[-127.43906906008849,53.115334003586824],[-127.43909387292037,53.11515496075372],[-127.43911678033665,53.1149753762757],[-127.43913034724505,53.11479590547174],[-127.4391046259195,53.1146174687356],[-127.43903970430638,53.11444175941658],[-127.439005571413,53.11426342501613],[-127.43898353608205,53.11408326683697],[-127.43899619831419,53.11390492763415],[-127.4391283617486,53.11374530569121],[-127.43935168704331,53.1136249175314],[-127.43959039373986,53.1135161130566],[-127.43977564964577,53.11337713636632],[-127.4398756400056,53.1132072545338],[-127.43991918105854,53.11302910381764],[-127.43993178179446,53.11284907963071],[-127.43993411879843,53.11266974524994],[-127.43995327940303,53.11249020593595],[-127.43999591028278,53.11231262204152],[-127.44002912916996,53.11213347624675],[-127.44002863265926,53.11195361148775],[-127.43994137440485,53.11178153647462],[-127.43992598707099,53.111604094385385],[-127.44001658426158,53.11143377076889],[-127.44014866001656,53.11127190706512],[-127.44030819785796,53.11111979456884],[-127.44050479967528,53.11098460496071],[-127.44073006852578,53.110866431429585],[-127.44098034701385,53.11076868038775],[-127.44123931772374,53.11067867643532],[-127.4414983062319,53.110589227529935],[-127.44175628948257,53.11049754897169],[-127.44197868115965,53.1103777225666],[-127.44213537639898,53.11022508623192],[-127.44222030686288,53.11005314430204],[-127.44227229919446,53.109876009800374],[-127.44231208478838,53.109697894558586],[-127.44235094242529,53.1095197995692],[-127.44241984682557,53.10934469094581],[-127.442516075768,53.10917486111205],[-127.44262831232999,53.109008188849884],[-127.44275186824285,53.10884418444829],[-127.44288581943849,53.10868341500069],[-127.44303586940745,53.10852805217749],[-127.44319634865418,53.108376488619925],[-127.44335588358307,53.108224927382615],[-127.44351159985808,53.108071180168714],[-127.44366542502266,53.107916891002915],[-127.44382115797063,53.10776369897388],[-127.44398257833065,53.107612678569566],[-127.44415726425522,53.10746653436633],[-127.44436145320503,53.10733516286642],[-127.44460306293958,53.10723079449217],[-127.44486395112727,53.10714299099808],[-127.44513557401179,53.10706794782774],[-127.44541400333962,53.10700066546034],[-127.44565464648481,53.10689574186544],[-127.44583127111764,53.10675182161285],[-127.4459642568998,53.10659049525634],[-127.4460793058313,53.10642434963896],[-127.44619811846833,53.10625927850245],[-127.4463207247066,53.10609528146944],[-127.4464480566608,53.10593291193849],[-127.44659334222048,53.10577591689803],[-127.44675948674308,53.105626519988526],[-127.44694938772062,53.10548802972828],[-127.44713358009218,53.105346811838665],[-127.44731679018996,53.10520448499415],[-127.44749430667277,53.10505943037459],[-127.44768707766958,53.10492314501617],[-127.4478988173653,53.104793915791745],[-127.44809067732257,53.104658205701675],[-127.44815202976179,53.10448207368872],[-127.44821430919693,53.1043059212969],[-127.44828038282111,53.104130851992785],[-127.44835490396582,53.10395679081808],[-127.4484897612355,53.103796003025934],[-127.44863030572458,53.10363738668967],[-127.44878978440222,53.10348526209505],[-127.44894548255374,53.10333206293316],[-127.44907561347472,53.10317021163386],[-127.44918312051146,53.103003034206296],[-127.44927362383072,53.102831582470436],[-127.44937168104921,53.1026617234972],[-127.44947726185265,53.10249344867375],[-127.4495989017833,53.102329459453934],[-127.4497574443005,53.102177344820454],[-127.44994633899299,53.10203774083811],[-127.45014573849207,53.10190417581719],[-127.45036038814544,53.10177883281789],[-127.45049052386113,53.10161697963533],[-127.45066990799091,53.101473008421785],[-127.45087500992723,53.10134217823869],[-127.45111647345368,53.10123499121409],[-127.45127321268966,53.101085137823354],[-127.4513910430744,53.100919507780624],[-127.4514919045751,53.10075016812257],[-127.4515889860669,53.10057975410586],[-127.45165118810345,53.100401923692225],[-127.45154448984067,53.10023681865583],[-127.4511340694745,53.09999979322472],[-127.45108509713386,53.09996284747517],[-127.45099141821369,53.09979534073659],[-127.45092917212075,53.099616797137614],[-127.45087622075262,53.09943645389369],[-127.45081310968152,53.09926016217683],[-127.45075651453034,53.09908266975387],[-127.45072330669602,53.09890489020496],[-127.45074615607494,53.09872530183093],[-127.45076902022294,53.098545713250644],[-127.45072648450166,53.098369168836115],[-127.45065313470806,53.09819412331577],[-127.45057606421827,53.098019688229556],[-127.45050080702075,53.09784354533269],[-127.45035892867362,53.09768894802143],[-127.45015415156972,53.09755530350114],[-127.44992015982359,53.097442745074794],[-127.4496605982724,53.0973484306561],[-127.44945697812456,53.097220929986165],[-127.44927706403286,53.09707576330532],[-127.44910999025278,53.09692260314268],[-127.44896517334703,53.096764122331685],[-127.44885203256842,53.09660132614318],[-127.44882261775712,53.09642518492388],[-127.44883409499488,53.0962406886515],[-127.44879432519232,53.096062432996895],[-127.448698640304,53.09589045721384],[-127.4485973841445,53.09571967928155],[-127.44853997523202,53.0955455576155],[-127.4485367215498,53.09536796591745],[-127.44855959757346,53.095188942190575],[-127.44859459846292,53.0950086401645],[-127.44860405334794,53.09481969482588],[-127.44863803463173,53.09463716388971],[-127.44868002807911,53.09446966831068],[-127.44869914342885,53.09429012573524],[-127.44869862964248,53.09411082378558],[-127.44867567429249,53.093931796943764],[-127.44864149839954,53.09375290763857],[-127.44860919290986,53.09357399537946],[-127.44857501758574,53.09339510601868],[-127.44852501174651,53.0932180961913],[-127.44846564060032,53.09304119216561],[-127.4483839972785,53.09286905277437],[-127.44827904740548,53.09269943136821],[-127.44814265184404,53.092540290311085],[-127.4479793248898,53.09238707354056],[-127.4477884225442,53.09224765151346],[-127.44755924874762,53.092138391509984],[-127.4472844487777,53.09206218957077],[-127.4470088219814,53.09198935915901],[-127.44672872361393,53.091922742104344],[-127.44646134952373,53.09184477082344],[-127.44623393673177,53.09173212470425],[-127.44603656659328,53.09159501145391],[-127.44582637526074,53.09146590846901],[-127.44560334317784,53.091344242135264],[-127.44539321153384,53.0912168141959],[-127.4452152981556,53.09107385820045],[-127.44505304474231,53.09092399532386],[-127.44489815762573,53.09077067114915],[-127.44474693557031,53.09061506956831],[-127.44459939718446,53.0904577372577],[-127.44443247315593,53.090335382755065],[-127.4442888409114,53.090210501958914],[-127.44418462798583,53.08997923065646],[-127.44404256306727,53.08979045176581],[-127.44391707603819,53.0896485385821],[-127.44375631305465,53.08951490105983],[-127.44356085865903,53.089350873011185],[-127.44337304852851,53.08921924195656],[-127.44323762896109,53.08906063921908],[-127.44313191520871,53.088894949428806],[-127.44316402648367,53.0887118866668],[-127.443227406888,53.088512752426226],[-127.4432612224324,53.08835208234198],[-127.44328149102353,53.0881781295716],[-127.44328485434312,53.08800214193177],[-127.4433105797503,53.087823639743895],[-127.44330538779218,53.08764383868346],[-127.44333281101318,53.0874602681714],[-127.44330810754482,53.08728406746778],[-127.4433150767488,53.08710410882484],[-127.44331737911656,53.08692421613923],[-127.44331779638466,53.086744337498494],[-127.44331849580398,53.086572309115574],[-127.44334108378273,53.08638431483063],[-127.44338988283066,53.086196565120986],[-127.44346826571409,53.086026384800554],[-127.44364936341691,53.08587904844231],[-127.44395335665554,53.08574252833055],[-127.44425126935393,53.08561953886693],[-127.4444030067787,53.085516257761796],[-127.44431889872806,53.08543604115959],[-127.44410443793556,53.085372542630694],[-127.44380709032328,53.0853195780015],[-127.44346596855429,53.085272195018604],[-127.44311644115257,53.0852249137348],[-127.44272616118107,53.085189335897674],[-127.44235704852815,53.08514341223334],[-127.44201879918192,53.08509767553931],[-127.44174280776029,53.08501251018869],[-127.44152907077182,53.084942829987035],[-127.44138533222865,53.08481402900489],[-127.44115748631509,53.08474172306088],[-127.44086704510318,53.084699317807434],[-127.4405740165018,53.084663102653394],[-127.44027921394138,53.08462971458728],[-127.43998378876206,53.08460529881845],[-127.43968842502444,53.08458312292561],[-127.43939624566934,53.08454409730464],[-127.43910106472227,53.084499504132054],[-127.43882985306364,53.08455492361065],[-127.4386438344581,53.08469558840568],[-127.43847872399063,53.084846093385835],[-127.43828888747369,53.08498456269729],[-127.43807328796119,53.085108220595565],[-127.43783764446982,53.08521979455461],[-127.43758731962896,53.085311939275414],[-127.43729094889069,53.08528752825008],[-127.43700413589202,53.08526915948069],[-127.43669668892616,53.08530427764858],[-127.43640316245308,53.08533642854949],[-127.43610872695027,53.08536914562132],[-127.43581268088667,53.0853817093227],[-127.4354909856085,53.085355360205746],[-127.43523003949207,53.08527223834131],[-127.43495970886192,53.08521556134102],[-127.43483966559738,53.085205812549844],[-127.4346784298736,53.08516742624894],[-127.43438424889003,53.08512449467223],[-127.43409915589767,53.085074163165075],[-127.43385526464644,53.08496953840324],[-127.43358877154148,53.0848881568198],[-127.43332826721223,53.08479045664392],[-127.43306315407048,53.084721949425045],[-127.43278146418751,53.08466148740116],[-127.4325006796107,53.084599893058744],[-127.4321951354391,53.08452515008649],[-127.4319294799264,53.08449587063811],[-127.43164086277432,53.08445174419067],[-127.43134457708858,53.08442955867657],[-127.43104592917464,53.08442028434093],[-127.43075918158796,53.08440358521346],[-127.43064527904902,53.08435397827646],[-127.43054729700557,53.08427727323857],[-127.43050750339225,53.08420659658062],[-127.43039426200154,53.084121110768706],[-127.43032073853892,53.08404860107862],[-127.43026166275719,53.08396078280718],[-127.43013104763334,53.08385926174502],[-127.43000742285739,53.08377110405184],[-127.42978951690539,53.08371546628548],[-127.42955648565275,53.08368298054854],[-127.42927569351131,53.08362082287873],[-127.42899144577093,53.08356710694313],[-127.42871509521481,53.08349816120381],[-127.42844238697843,53.08342581772048],[-127.42814224110023,53.08334427507251],[-127.42797036802949,53.083239323573586],[-127.42772612937276,53.0831240486135],[-127.42745992356109,53.083050494669706],[-127.42717373688689,53.08299455649257],[-127.42690511300367,53.08296026317752],[-127.42660565190315,53.082870863672184],[-127.42634219025989,53.082795597571206],[-127.42615648802797,53.082612927905394],[-127.42589559132578,53.082557802041514],[-127.42562895934351,53.082471365875435],[-127.42536999417521,53.08241845690899],[-127.42510859136532,53.082348201818704],[-127.42482517186245,53.08229110396689],[-127.42454441453248,53.08222949063451],[-127.4242610304998,53.08217295583739],[-127.42396979032479,53.08213331624432],[-127.42367579533972,53.08209539463543],[-127.42337898527983,53.08205695036366],[-127.42308225063486,53.082020736830266],[-127.42278564818021,53.08198844781359],[-127.42249019526638,53.0819623124155],[-127.4221968789656,53.08194455114639],[-127.42187585271455,53.08193664393896],[-127.42163133531412,53.08200739210574],[-127.42134520085128,53.082148113398084],[-127.42106485095313,53.0821542923062],[-127.42074069257816,53.08213689841881],[-127.42043055781666,53.082063301266935],[-127.42014792830771,53.08197368320565],[-127.4198870330687,53.081890527298775],[-127.41967088295814,53.0817748893804],[-127.41949441704405,53.08164364959766],[-127.4192814500782,53.08151172742162],[-127.41905413713023,53.081425924882666],[-127.41876980462276,53.08136882361464],[-127.41850009239958,53.08130146003751],[-127.41825820582959,53.08119902085975],[-127.41801806268977,53.08109319824189],[-127.41778154393985,53.080983413764685],[-127.41754680584656,53.080871357138676],[-127.41731478738308,53.08075647021912],[-127.41708552600296,53.08063987324754],[-127.41685900645541,53.080521557457345],[-127.41660668177119,53.080442774325796],[-127.41636953403093,53.08031393417007],[-127.41616559452838,53.08017181215795],[-127.41602428197884,53.08000036636],[-127.4158334318349,53.079858086874836],[-127.41563275676104,53.07972937292966],[-127.4153816429875,53.079658417444456],[-127.41508917570604,53.07963726653496],[-127.41478678869014,53.07962687564199],[-127.4144892178767,53.07962091797112],[-127.41419299151738,53.0796552787836],[-127.4139367817444,53.079740155050274],[-127.41369228228584,53.07981144250785],[-127.41336084734344,53.079911786494186],[-127.41314730687525,53.07995804754199],[-127.41285801990392,53.08000409350559],[-127.41257073612408,53.080054597494126],[-127.41229720633929,53.080124552613576],[-127.41202860280416,53.0802022839521],[-127.41174433372585,53.0802589180495],[-127.41146495367057,53.0803222081112],[-127.41120862713562,53.08043173452466],[-127.4109618023388,53.08048959590128],[-127.41068534349492,53.08055622017214],[-127.41039086532878,53.08058718842256],[-127.41009753398764,53.08062431042731],[-127.40980368462697,53.08064631327936],[-127.40950641643182,53.08062127897216],[-127.40923650034422,53.08054717284815],[-127.40895150518807,53.080497900764726],[-127.4086576430924,53.08046274662556],[-127.40836470848645,53.08042757173753],[-127.40807193186687,53.080453475371534],[-127.40779843276172,53.080525096100075],[-127.40751711640287,53.080586167422304],[-127.4072307645842,53.080636647181976],[-127.406936097532,53.08066200567404],[-127.40666068843937,53.08073252579763],[-127.40639208944829,53.08081080888977],[-127.40612643145015,53.08089298318162],[-127.40586856969743,53.08098514115412],[-127.40559304189591,53.081051742276166],[-127.40531064653274,53.08110889425408],[-127.4050263065951,53.08116382733248],[-127.40474002212008,53.081216541497696],[-127.4044536998373,53.08126813473782],[-127.40416735816532,53.0813191626868],[-127.40387792596545,53.081361826114325],[-127.40358654600259,53.08140171477403],[-127.40329618533153,53.08144438779236],[-127.40301084251871,53.081497642377386],[-127.40272547719191,53.08154978482576],[-127.40243193231511,53.08158128680539],[-127.40213632850477,53.081606644321546],[-127.40183967126981,53.081628660550564],[-127.40154297641108,53.081649546842286],[-127.4012452652466,53.08166821206672],[-127.40094736510737,53.081680710614805],[-127.40064915386718,53.081684246744416],[-127.40035075395127,53.081681616194395],[-127.40005237639159,53.08168011426062],[-127.40000098776132,53.08168127913287],[-127.39951509088631,53.08169320468306],[-127.39921673160602,53.081692256273314],[-127.3989206113645,53.08167390574867],[-127.39862593630316,53.08164265416821],[-127.39833216702677,53.081610270467145],[-127.39803591864369,53.08158800139538],[-127.39773698368701,53.08159770690301],[-127.39746142388825,53.08166428025294],[-127.39718600749528,53.08173477807221],[-127.39689240202736,53.081764590418736],[-127.39659438926209,53.08177371729538],[-127.39629614012455,53.08177612220585],[-127.3959970187827,53.081780213188864],[-127.39569900571503,53.08178933780701],[-127.3954010512773,53.08180070231433],[-127.39510305650974,53.081810390026234],[-127.39480491755532,53.08181615186893],[-127.39450653563927,53.08181407115579],[-127.3942087310916,53.08180133205498],[-127.39391248353947,53.081779052646546],[-127.39361703494245,53.08175284522156],[-127.39332160137309,53.08172662791918],[-127.39302537335324,53.08170491088273],[-127.39272835020127,53.08168767618282],[-127.3924298039327,53.08168055365699],[-127.39213197793539,53.081695826255974],[-127.39183636746665,53.08172116696177],[-127.39154177572001,53.08174929210666],[-127.39124823938737,53.0817813219317],[-127.39095575541776,53.08181670959425],[-127.3906643966217,53.08185767764557],[-127.39037598142434,53.08190310195498],[-127.39009457888172,53.08196300272307],[-127.38982693904207,53.082042921841285],[-127.38956607288738,53.082130040505035],[-127.38929747020161,53.082209404902365],[-127.38901206798313,53.08226150542049],[-127.38871399515756,53.08226893654757],[-127.38841778390014,53.082247763601536],[-127.38812235362042,53.08222209807952],[-127.38782541711258,53.08220709135141],[-127.38752753880678,53.08219210390628],[-127.38722971552804,53.082178791580816],[-127.38693122474518,53.08217388684557],[-127.38663333530253,53.082186913896464],[-127.38634188159477,53.08222563098598],[-127.38606150519433,53.08228831614655],[-127.38580353341503,53.08237819856585],[-127.38557633819777,53.08249460641091],[-127.38534343821054,53.08260772766854],[-127.38506688846151,53.082673162711096],[-127.38476885181497,53.08268225993009],[-127.38447339910495,53.082655464880155],[-127.3841918472648,53.082596571793445],[-127.38391740584117,53.082525823298205],[-127.3836483216465,53.082447722632594],[-127.38339368094584,53.08235320708943],[-127.38311287383583,53.08228813461033],[-127.38282893165287,53.08232788467028],[-127.38254061413197,53.082376641585405],[-127.382243630866,53.08238908211556],[-127.38194433973618,53.08238810093899],[-127.38164600932075,53.08238767258261],[-127.38134760907778,53.082385558812625],[-127.3810491873428,53.08238232387794],[-127.3807507506961,53.082379088364306],[-127.3804523106747,53.0823752873229],[-127.38015383766768,53.08237093006516],[-127.37985537967923,53.08236657187855],[-127.3795569067949,53.08236221311286],[-127.37925844892915,53.08235785341835],[-127.3789599581013,53.082352937507125],[-127.37866146394626,53.082347456067644],[-127.37836295491111,53.08234197404872],[-127.37806449731056,53.082337611338176],[-127.37776607925697,53.08233492392311],[-127.3774677492583,53.082334485016574],[-127.37716867688385,53.08234021316677],[-127.37687069529224,53.08235096633962],[-127.37657274683261,53.082362283186264],[-127.3762744924335,53.08236463755417],[-127.37597592585337,53.082356908854685],[-127.37567587447418,53.082361523963705],[-127.37540499335563,53.082429120521304],[-127.37517400862853,53.08254443148213],[-127.37492563616301,53.08264314339285],[-127.37464914273508,53.08271079452493],[-127.37435974093054,53.08275507026649],[-127.37406513042374,53.0827831518178],[-127.37376848640999,53.082806208822916],[-127.37347378460336,53.082831492784386],[-127.3731782486501,53.082860138716654],[-127.3728846877434,53.0828915670846],[-127.37259827917842,53.08294196283249],[-127.37233644806155,53.08302961895581],[-127.37205757090138,53.083081602388916],[-127.37175763762998,53.083089568087374],[-127.3714607548923,53.083105342224385],[-127.37116305651745,53.08312505186907],[-127.37086535842465,53.08311561465598],[-127.37058568883323,53.08305610269273],[-127.37031028861706,53.08298421330408],[-127.37002183629161,53.082942732437125],[-127.36972386852429,53.08292489503326],[-127.36942610010097,53.082913222675856],[-127.36912831361458,53.08290098496709],[-127.36883121652427,53.08288089391163],[-127.36853668165087,53.082853483667584],[-127.36824294817153,53.08282214558965],[-127.3679491398947,53.08278801048875],[-127.367656241245,53.08275329931961],[-127.36736506828208,53.08271408482235],[-127.36707738244019,53.082666984652455],[-127.36678966113456,53.08261876354047],[-127.36649932687271,53.0825767310953],[-127.36620385036194,53.082548770118656],[-127.36590650031488,53.08254996717537],[-127.3656129754626,53.0825830624965],[-127.36532460036219,53.08263065715076],[-127.36503321152652,53.082671570935],[-127.36473618502143,53.08268284721505],[-127.36444252761343,53.082653740168126],[-127.36415649890372,53.08259988984338],[-127.36387230456793,53.08254489699784],[-127.36358291601734,53.0825028465055],[-127.36328916757421,53.082470375691805],[-127.36299458527442,53.08244127574429],[-127.36269833182409,53.08241836243953],[-127.3624005867409,53.082407228012805],[-127.36210197145888,53.08239834418473],[-127.3618082608441,53.08236698992923],[-127.36152318260385,53.082313678170834],[-127.36124342354248,53.082250783340584],[-127.36096541216713,53.08218450575132],[-127.36068747067313,53.08211991217802],[-127.36040415735549,53.08206321544921],[-127.36011384846981,53.082021176089434],[-127.35981500277477,53.08200500041947],[-127.35952733413154,53.082045292994934],[-127.35927509896321,53.08214120997588],[-127.35904403634947,53.082255378137575],[-127.3588072046772,53.08236512059308],[-127.35854527372781,53.082449940921244],[-127.35826188149196,53.082507555823675],[-127.35797445905324,53.08255568630828],[-127.35768303061249,53.08259601753626],[-127.35739054862222,53.0826324333672],[-127.35709803056986,53.08266773719191],[-127.35680552980668,53.082703595932486],[-127.35651195785985,53.08273498362269],[-127.35621412961952,53.08275073027247],[-127.35591476492942,53.08274744267252],[-127.35562812327731,53.08270309993932],[-127.35539635224218,53.08259089667729],[-127.35521130290103,53.08244845517181],[-127.3550327703243,53.082304817976436],[-127.35485145969449,53.0821617682188],[-127.35467661532198,53.08201641169109],[-127.35450451533205,53.081869337974965],[-127.35433243149275,53.08172226382427],[-127.35415664812815,53.08157690833157],[-127.35397441929601,53.081434432573495],[-127.35378298660494,53.08129654463198],[-127.35357868235263,53.08116552779871],[-127.35338550780843,53.081031585954456],[-127.35325871067158,53.080867737431674],[-127.35310700436999,53.08071426894961],[-127.3529073000438,53.08058095696839],[-127.35270205662066,53.080449384581975],[-127.35253185741983,53.080302851056516],[-127.3524134148733,53.08013666465374],[-127.35224601175118,53.07998953389448],[-127.35203618128033,53.079860818993055],[-127.35180639395091,53.079751383244755],[-127.3516814408739,53.07958640023022],[-127.35149924661188,53.07944447613514],[-127.35132259108158,53.07930025605522],[-127.35120228957338,53.079134654505516],[-127.35096962217311,53.07902244397612],[-127.3506891009267,53.078964015804004],[-127.3504040598191,53.07891068607574],[-127.3501377650637,53.07882911605105],[-127.3498652030509,53.07875602645107],[-127.34959349796411,53.07868068512866],[-127.34932004921069,53.07860928988318],[-127.34902792583465,53.078568356013484],[-127.34876629943815,53.078486173776874],[-127.34848941692456,53.07842433692544],[-127.34820003641684,53.07838113737081],[-127.34793734580776,53.07829503869152],[-127.34766742774612,53.07821687544494],[-127.34739044183256,53.07815167526103],[-127.34710099286177,53.07810622354708],[-127.34681859587621,53.078047251830114],[-127.34652352221782,53.07803099987347],[-127.34623159854199,53.077995669115175],[-127.3459331599004,53.07799122539801],[-127.34563384722631,53.0779884673839],[-127.345365055241,53.077915889379184],[-127.34507993891496,53.07785974166749],[-127.3447864675185,53.07783450191152],[-127.34448804805902,53.07783061914952],[-127.34418871900336,53.07782730182958],[-127.34389108200048,53.07781836122982],[-127.34359297918093,53.077823993684646],[-127.34329480796741,53.077827940700296],[-127.34299665193794,53.07783189575528],[-127.34269810840074,53.077824083113285],[-127.34241851323323,53.077764504302195],[-127.3421335436142,53.077712830478724],[-127.34183594328728,53.07770500495173],[-127.34153935272951,53.07772910135442],[-127.34126080937526,53.07779165911707],[-127.34099114575255,53.07786868389883],[-127.34071952589231,53.07794348894767],[-127.34060285015319,53.07765400812466],[-127.34048738250621,53.077491703137504],[-127.34026842977732,53.07736867448834],[-127.3400928542185,53.07722777872002],[-127.33996521038723,53.07706449070374],[-127.33984406770247,53.07690000814934],[-127.3397479788567,53.076729638033335],[-127.33961763238109,53.076569742242484],[-127.33944097601338,53.07642381930108],[-127.3392459450965,53.07628819031605],[-127.33903711456045,53.07615944137445],[-127.33883010437674,53.076029550781676],[-127.33865165428284,53.0758858883102],[-127.33848055936116,53.07573822441775],[-127.33825259268696,53.07562538010749],[-127.33800719365753,53.07552281872157],[-127.33777451316264,53.07540890624553],[-127.33751380213447,53.07532500357869],[-127.337233182611,53.07526206231726],[-127.33695085358616,53.07520418717117],[-127.33666410623003,53.07515419696909],[-127.3363871397217,53.07508841522718],[-127.33614358492282,53.07498526434911],[-127.33586838383704,53.07491609947409],[-127.33557668432624,53.074886899244476],[-127.33527865657686,53.0748947514074],[-127.33498000105473,53.07491213098438],[-127.33468849618971,53.0748890944451],[-127.3344313217042,53.074798421172474],[-127.3341904616345,53.074691318074166],[-127.33394689698318,53.07458760699691],[-127.33370696400694,53.07447993661274],[-127.33347894635996,53.07436484249781],[-127.33325821344573,53.0742434976433],[-127.33303931618909,53.074121019976516],[-127.33280854349276,53.07400763217758],[-127.33257960364502,53.07389254675795],[-127.33234881596806,53.07377860239876],[-127.33209437683375,53.07368509610632],[-127.3318462805685,53.07358535863926],[-127.3315990949142,53.073485045583],[-127.33133919196932,53.07339608189976],[-127.33109565915976,53.07329292051428],[-127.33086580341336,53.073178406953275],[-127.33063320504598,53.07306560034752],[-127.33040061038763,53.07295334909271],[-127.33017166533783,53.072837703289096],[-127.32995004284449,53.07271748301486],[-127.32973942396033,53.07258985868139],[-127.3295453337193,53.07245308268799],[-127.32936693010974,53.07230940589792],[-127.32919682402111,53.07216171765426],[-127.32902853801224,53.072012879066875],[-127.32885750960914,53.07186575655895],[-127.3286818696058,53.07172037114747],[-127.32851267770882,53.07157210682807],[-127.32833237702198,53.071427329169374],[-127.32818556509903,53.071277127209264],[-127.32821165936028,53.07109528783095],[-127.3282481316276,53.07091669367236],[-127.3282602842468,53.07073725234208],[-127.32824810529681,53.070557528794794],[-127.32823499906857,53.0703778066922],[-127.32821724523771,53.07019870164954],[-127.3282088049027,53.07001893600032],[-127.32823311670354,53.06983991367655],[-127.32828177965399,53.069662302915596],[-127.32834728191459,53.069485067520226],[-127.32834188016311,53.069312547400635],[-127.32817266398399,53.06916316212861],[-127.32792633193519,53.06905890514427],[-127.32766817527565,53.06896487544848],[-127.32747447620841,53.068839854028205],[-127.32744177359453,53.068660916784964],[-127.32743602511405,53.06847719392856],[-127.32743324805891,53.06829904093089],[-127.32728714709656,53.06814099412694],[-127.32704926145796,53.06803776106863],[-127.32678582111544,53.067953874753485],[-127.32654046156817,53.067850724653134],[-127.32627438745698,53.06777247007464],[-127.3260037716148,53.06769818371165],[-127.32577670334136,53.06758194361055],[-127.32558727618235,53.06744342330537],[-127.32533738004354,53.0673442484406],[-127.32506580923302,53.06726941483163],[-127.32478801984477,53.06720472730009],[-127.32449351765655,53.06717385519421],[-127.32419824845877,53.06714858527],[-127.32390166938607,53.06717096162315],[-127.32360604959956,53.06719389128622],[-127.32331050175563,53.06721961655414],[-127.32301910814479,53.067258177585735],[-127.32272872849464,53.06729953265409],[-127.32243731913346,53.06733810137805],[-127.3221418194396,53.0673649438154],[-127.32184939466079,53.06740071632606],[-127.32155267300585,53.06741860572263],[-127.32125602087581,53.067438734901295],[-127.32095778105966,53.06743814450714],[-127.32065758283873,53.067434222264104],[-127.32037891926217,53.06749168548853],[-127.3201257551092,53.067587530039496],[-127.31985608574466,53.06766395154084],[-127.31956772593144,53.06771031464645],[-127.31927323610356,53.067739944683915],[-127.31898181797628,53.067777940092135],[-127.3186893876874,53.06781370477027],[-127.31839700898487,53.06785114463937],[-127.31811952783586,53.06791699863394],[-127.31786246147654,53.068007843323805],[-127.31762946030703,53.06812082302668],[-127.31743074736242,53.068254721113604],[-127.31724249417296,53.0683940964721],[-127.31703617825637,53.06852359603963],[-127.31682034409474,53.068648153937225],[-127.31660258499717,53.06877049157333],[-127.31638294059586,53.06889284980004],[-127.3161651962195,53.06901574226367],[-127.31595124361735,53.069140842320635],[-127.31574491985073,53.0692703306149],[-127.31553955692343,53.069400937438566],[-127.31532561776166,53.069526591985706],[-127.31509543244039,53.06964065571273],[-127.31488625800942,53.0697690624712],[-127.31471419736795,53.069918339085305],[-127.31443931741273,53.06997799608916],[-127.31415694260737,53.07003717103293],[-127.31394870769066,53.07016612143676],[-127.31384265251295,53.07033371338343],[-127.31377796356055,53.070509254416685],[-127.31372459094653,53.07068747562142],[-127.31346531677308,53.07076824005026],[-127.31317076678302,53.07079673455585],[-127.3128762825107,53.07076694484846],[-127.31257795037334,53.070764101728855],[-127.31228125313125,53.0707836437136],[-127.31198568837236,53.070809340423146],[-127.31170229326692,53.07086627940666],[-127.31152159061295,53.07100893215335],[-127.31136836105205,53.07116304188715],[-127.31121607467779,53.07131769676666],[-127.31104866067135,53.071466925073246],[-127.31087647828477,53.07161339993767],[-127.31069293842359,53.07175495316618],[-127.31047516536538,53.07187839971685],[-127.31026311750259,53.072005144273206],[-127.31010230149566,53.07215653921099],[-127.30994242616569,53.072307914505686],[-127.30972274204271,53.07242970428113],[-127.30950592195748,53.072553694200884],[-127.30932045493525,53.072694154809426],[-127.30911220723203,53.072823096323994],[-127.30890678926856,53.07295312673557],[-127.30867945108561,53.073069951884555],[-127.30845403044749,53.07318787597814],[-127.30826003176105,53.07332450257038],[-127.30810393601497,53.07347751874148],[-127.30794216213636,53.07362835626619],[-127.30773389070407,53.07375729544733],[-127.3075265772699,53.07388677947315],[-127.3072742880631,53.07398258569427],[-127.30698685065526,53.074030592529816],[-127.30668832098456,53.07402156844237],[-127.30639020787925,53.07402655154708],[-127.30609226473696,53.07403657044142],[-127.30579423753004,53.07404434822121],[-127.30549815976107,53.074024087567544],[-127.30522035599117,53.07395935426615],[-127.30498597173768,53.07384763830305],[-127.30479656740233,53.07370852950566],[-127.30463669423085,53.073556767117324],[-127.30448330333084,53.073402691627884],[-127.30431695131921,53.07325324165203],[-127.30412664202234,53.07311470658559],[-127.30392345773127,53.07298359306792],[-127.30370832109949,53.072858770204334],[-127.30347668944708,53.07274477961246],[-127.30321868487995,53.0726546131313],[-127.3029534476022,53.07257293520802],[-127.30267829896441,53.07250312830913],[-127.30241575452027,53.07241749275101],[-127.30219330307133,53.07229779521798],[-127.30199748307578,53.07216211465809],[-127.3018025741496,53.072025858929536],[-127.30159295347819,53.07189761849735],[-127.30136134980225,53.07178417934705],[-127.30116553720177,53.07164906214736],[-127.30097893215645,53.0715087958144],[-127.30078310473229,53.071373113344734],[-127.30057993675834,53.07124142916559],[-127.30037217555203,53.0711126013106],[-127.30014971968095,53.070992344186735],[-127.2998998791416,53.07089367136195],[-127.29961764717304,53.070836262505864],[-127.29931989710924,53.070821608238184],[-127.29902219884323,53.07080863810321],[-127.29872417573092,53.07081583344477],[-127.2984265289817,53.07080453772985],[-127.29812706475954,53.0707949466936],[-127.29785474684796,53.070725097588344],[-127.2975580793421,53.07071546541814],[-127.29726139279428,53.07073553429026],[-127.29696328237792,53.07073937318077],[-127.29666630680582,53.07071965635096],[-127.29637185191834,53.07069039011052],[-127.29607911274263,53.070656065892805],[-127.29578467567346,53.070627353841026],[-127.29548850693496,53.07060315159774],[-127.2951899696279,53.07059297816458],[-127.29489304345822,53.07060519920304],[-127.29459637337747,53.070625817036124],[-127.2942983852512,53.0706341304434],[-127.29400001886404,53.070629555351395],[-127.2937041900241,53.07064736459206],[-127.29346987777734,53.070750788963565],[-127.29317897529772,53.070715307856155],[-127.29290382064983,53.070644357845275],[-127.29261533822014,53.070595965946794],[-127.2923372020427,53.07064215901434],[-127.29208585907374,53.07073904309803],[-127.29183451495692,53.07083592664149],[-127.29160537200437,53.07095553554483],[-127.29132219174504,53.07098945426239],[-127.29101835390533,53.07098996985016],[-127.29072180357979,53.070983690121224],[-127.29047201909735,53.07088611762582],[-127.29028360269173,53.07074697519448],[-127.29003195169767,53.07064943113814],[-127.28978031875404,53.07055244219465],[-127.28952868696082,53.070455452709666],[-127.28927525523608,53.070360723630785],[-127.28900743278759,53.07028463720696],[-127.28870709816833,53.07027670833022],[-127.28841205001247,53.07025863523465],[-127.288141399741,53.07018146603835],[-127.287905280191,53.07007197687569],[-127.28770490380593,53.06993856403469],[-127.28748343177672,53.069818263742974],[-127.2872610192263,53.069697982257956],[-127.28706620293482,53.06956282229592],[-127.28696291724138,53.0693941749453],[-127.28692383564422,53.069215297939984],[-127.28688571326576,53.06903696629372],[-127.28681219938947,53.06886351179164],[-127.28664414122235,53.06871629729206],[-127.28639614665883,53.06861533486762],[-127.28619579901515,53.06848248397257],[-127.28605542623582,53.06832376068507],[-127.28596143973218,53.068152760896275],[-127.28582756735031,53.06799229006309],[-127.28561623055974,53.067866837538396],[-127.28534194910095,53.06779305453817],[-127.28507500722297,53.067714152628646],[-127.2848544476559,53.06759272585382],[-127.28467158649855,53.067450708035366],[-127.28452660872203,53.067293718478645],[-127.28439087517222,53.06713325730537],[-127.28421544105998,53.066988925682345],[-127.28398662207668,53.06687262553566],[-127.28375800559759,53.066762481808084],[-127.28366118719688,53.06659039927999],[-127.28359696769502,53.06641459143898],[-127.28354582982742,53.066238085527154],[-127.28351516850488,53.06605911573662],[-127.28349945741176,53.06587942759309],[-127.28351085585834,53.065700000621554],[-127.28351381932029,53.06552010050459],[-127.28344684025096,53.06534545210156],[-127.28331020709548,53.065185564201],[-127.28314396187575,53.06503608370893],[-127.2829721937231,53.06488890427665],[-127.2828142836991,53.064736526667055],[-127.28268228584896,53.064575467031524],[-127.2825697528751,53.064409157412825],[-127.28248043708408,53.06423754814575],[-127.28242742051997,53.06406049720614],[-127.28240890396079,53.06388083923692],[-127.28239693796753,53.063701665949054],[-127.28239337242465,53.06352183660833],[-127.282406643782,53.06334238920376],[-127.28242833236965,53.06316285036364],[-127.28244813697157,53.0629833319602],[-127.28246608751309,53.06280383366982],[-127.28247654760965,53.06262441671018],[-127.28248045740158,53.06244451503305],[-127.2824787604302,53.06226466526725],[-127.28246773647886,53.062085481589776],[-127.28244644167381,53.06190640944494],[-127.2824737378621,53.06172737433993],[-127.28254416607116,53.06155234434485],[-127.28254438857229,53.061374159088786],[-127.28247274062878,53.061199560543514],[-127.28247946065719,53.061019619229285],[-127.28245815138744,53.06084054713897],[-127.2824583403882,53.060661241530326],[-127.28241930288375,53.060482926756904],[-127.28244755690581,53.06030443694041],[-127.28243277908051,53.06012472902993],[-127.28244978664418,53.05994524067567],[-127.28247426890297,53.0597656711112],[-127.28246137691792,53.05958650747233],[-127.28238974728343,53.05941190853437],[-127.28232372613964,53.05923780447203],[-127.2823369625985,53.05905723635162],[-127.282364289157,53.05887875647463],[-127.28239439394264,53.058699681588465],[-127.2824132868154,53.058520737417375],[-127.28235746722746,53.05834371638872],[-127.28222460010885,53.05818435077981],[-127.28198679335625,53.058077665383045],[-127.28169571693205,53.05803320244684],[-127.28145602877761,53.05792653641916],[-127.28124746397162,53.05779768400185],[-127.28116948060172,53.05762931226636],[-127.28120608864573,53.05744905534659],[-127.28120439727428,53.057269205044214],[-127.28120177936586,53.05708937374294],[-127.28120663764489,53.05691001713607],[-127.28119371805707,53.05672973278091],[-127.28124821911899,53.05655375520712],[-127.28146983714821,53.05643368174745],[-127.28104874771145,53.05638558099604],[-127.28075699373488,53.05634896773792],[-127.28046692459264,53.056306723277714],[-127.28018304874615,53.056252648618205],[-127.27990089027176,53.05619351622471],[-127.2796160891021,53.05613945024586],[-127.27932864721772,53.056091015447876],[-127.27903773900509,53.056051582702935],[-127.27874508079802,53.05601608599026],[-127.27845247383797,53.05598227345811],[-127.27815722575693,53.05595409204391],[-127.27786377736221,53.055923093276135],[-127.27757283793653,53.055882536634265],[-127.27728021583758,53.055848156571365],[-127.27698422820954,53.05582614829261],[-127.27668657429021,53.05581087222119],[-127.27638988134322,53.05579671462621],[-127.27609722710825,53.05576121134539],[-127.27581958800981,53.055696417187406],[-127.27554191784056,53.05563105791219],[-127.2752484396568,53.05559892339174],[-127.27495242116487,53.0555757897316],[-127.27466413066824,53.05553014996397],[-127.27437430693206,53.055495176689554],[-127.27407669017488,53.055481023283455],[-127.27378208735473,53.055474116341685],[-127.27348637062443,53.055491874938845],[-127.27318784578985,53.0554788407737],[-127.27289103687497,53.05546019308085],[-127.2725957455949,53.055430312842034],[-127.27232633001823,53.05535925385019],[-127.27208481028912,53.05525203295013],[-127.27183605471878,53.055153298854044],[-127.27157548122446,53.055065333198996],[-127.27132948768924,53.05496488284647],[-127.27111820815618,53.05483771852942],[-127.27091979140675,53.05470313564121],[-127.27070667972832,53.05457711993209],[-127.27050466268918,53.05444705769607],[-127.27034399087061,53.05429301662909],[-127.27026141208171,53.0541258079817],[-127.27030274178199,53.05394549477622],[-127.27031230772651,53.05376553228858],[-127.27016119920447,53.05361866777482],[-127.26992510098938,53.05350522510095],[-127.26972581764825,53.053372326022235],[-127.26954582836011,53.05322857744887],[-127.26936030203764,53.05308712943532],[-127.26915368470203,53.05295935565725],[-127.26892499757044,53.05284302523066],[-127.26871464592165,53.05271529083219],[-127.26855780779785,53.05256401222361],[-127.26848996877426,53.05238935519272],[-127.26844726079018,53.05221107510374],[-127.26836637597273,53.05203712295885],[-127.26821790804291,53.05188462433397],[-127.26799928038233,53.05176090432684],[-127.26777334760816,53.051642856651014],[-127.26753009445622,53.05153957192398],[-127.26726234626071,53.051460639128216],[-127.26698377342207,53.05139470488939],[-127.26672153188689,53.0513123498333],[-127.26647733964333,53.05120850823509],[-127.26623133052493,53.05110637108269],[-127.2659889921559,53.05100194379532],[-127.26574663840842,53.05089696033996],[-127.26550064942134,53.050795377310834],[-127.26524919023866,53.0506983350015],[-127.26499774903377,53.05060185677776],[-127.26476270634909,53.05049118973897],[-127.26456803329786,53.050355435512955],[-127.26437613803984,53.05021853056725],[-127.26413746260928,53.050111263155706],[-127.26387693602048,53.0500232802545],[-127.26362184860882,53.04992963531728],[-127.26339688122864,53.04981213384893],[-127.26320772046073,53.04967295646327],[-127.26304069666219,53.04952401192053],[-127.26288569214692,53.049370464923214],[-127.26273345006733,53.049215758556116],[-127.26258767411049,53.04905875049611],[-127.26245395004337,53.04889824244726],[-127.26232300376078,53.048736592853594],[-127.26217817228738,53.0485795652127],[-127.26204630297656,53.0484184810157],[-127.26200369266502,53.048242438773244],[-127.26203197428248,53.04806226766371],[-127.26203224950268,53.04788296077002],[-127.26193658877303,53.047714209538434],[-127.26176770895844,53.04756528299793],[-127.26158408496511,53.047423246666064],[-127.26139956861316,53.047282331270765],[-127.26122609786844,53.04713625912494],[-127.2610581313809,53.04698621012685],[-127.26094402773124,53.046825490687574],[-127.26090506004118,53.0466460470879],[-127.26083726039957,53.04647082923573],[-127.2607666849284,53.04629676163253],[-127.26072588336051,53.04611844920543],[-127.2606981424129,53.04593944140956],[-127.26065920984608,53.04576111793193],[-127.260589546093,53.045586475625846],[-127.26048549734632,53.04541781269375],[-127.2603629013977,53.045253821351935],[-127.2602236270282,53.04509449952331],[-127.26002811642317,53.04496042324228],[-127.25977128310632,53.04486959487393],[-127.25949813666283,53.044795740831745],[-127.25921965311476,53.04473091727722],[-127.25892651349206,53.04470770451678],[-127.25862836637967,53.04470416030218],[-127.25833239970869,53.0446798645322],[-127.25804686136063,53.044629117097074],[-127.25780368852483,53.044526367577944],[-127.25761365955616,53.0443877463438],[-127.25745773520556,53.044233637164155],[-127.25728709999977,53.04408752903935],[-127.25706125456857,53.04397002496986],[-127.25684646939025,53.04384736425028],[-127.2566794743782,53.04369785453687],[-127.25653649936768,53.043539123660636],[-127.25635484433606,53.0433992906097],[-127.25610075654973,53.04330618382969],[-127.25582761011202,53.043231765559135],[-127.2555863168849,53.0431284267233],[-127.25537972321317,53.04299838750749],[-127.25515848359953,53.04287803370576],[-127.25491893126603,53.042770757213184],[-127.25468122994646,53.04266233991197],[-127.25444716793501,53.04255107734692],[-127.25421494053985,53.042438118333386],[-127.25397904638727,53.04232800393768],[-127.253733118531,53.0422258312548],[-127.25350641608863,53.04211001502939],[-127.25334501041661,53.04195932063037],[-127.25326703450575,53.041786447734296],[-127.25325329672513,53.04160616875217],[-127.25325919605818,53.04142623707076],[-127.25324550644214,53.04124707819172],[-127.25320748621998,53.04106705700067],[-127.25307868199,53.04091265405751],[-127.2528868020554,53.040774053876206],[-127.25274758683129,53.0406152784821],[-127.25263429150087,53.04044838324894],[-127.25253215454906,53.04027968401575],[-127.25243838180347,53.040109219427514],[-127.25235014898401,53.039937019472795],[-127.25227403202672,53.0397635612642],[-127.25222117224835,53.03958650323361],[-127.25219813352257,53.03940744329361],[-127.25218349100001,53.0392277294371],[-127.25217260087885,53.03904854055618],[-127.25216823924768,53.038868726543406],[-127.25215265566804,53.03868902261491],[-127.2521324268722,53.03850993276256],[-127.25211872656304,53.03833021777846],[-127.25211621780012,53.03815037506736],[-127.25212960918286,53.037970928443826],[-127.25215233923731,53.03779138271152],[-127.25216573035416,53.037611936046325],[-127.25214923749871,53.037432806448315],[-127.25212524081017,53.03725263579562],[-127.25205378998248,53.03707857188035],[-127.2518584595318,53.036948971778614],[-127.25159341035037,53.03686213085541],[-127.25134755290865,53.03676107318072],[-127.25113361503401,53.03663391051238],[-127.25100936153575,53.03647497427069],[-127.25099655973897,53.036294119855704],[-127.25099965746959,53.03611366167938],[-127.25093661024403,53.035939507953124],[-127.25080665749883,53.03577726991524],[-127.25065173246178,53.03562370578781],[-127.25048480796681,53.0354747422664],[-127.25031880957539,53.035325212850935],[-127.2501592922864,53.03517393803967],[-127.25000250389162,53.0350203838298],[-127.24986796188074,53.0348604346625],[-127.24977232923435,53.03468998735751],[-127.24967206876252,53.03452070963121],[-127.24951718370558,53.034367699415355],[-127.24932904720934,53.03422793306328],[-127.24913633269514,53.034091012030494],[-127.24894269309917,53.0339541004765],[-127.24876102183882,53.03381145867381],[-127.2486209199476,53.033653243401154],[-127.24852532656782,53.03348335944203],[-127.24845199773449,53.0333087482474],[-127.24840195578672,53.033131658279956],[-127.24836401123942,53.032952754826304],[-127.24827865125845,53.03278163273831],[-127.24813113396208,53.03262518075724],[-127.24797254291504,53.0324727724881],[-127.24782687874497,53.03231573571173],[-127.24770808819873,53.032151134806114],[-127.24763572283742,53.03197707765077],[-127.24758940426474,53.03179938307292],[-127.2475375002047,53.03162231232824],[-127.24748931494989,53.03144463741899],[-127.2474085884429,53.0312717891301],[-127.24722979334909,53.03113135582868],[-127.24698391367107,53.031028048108034],[-127.24675087740992,53.03091676854245],[-127.24654805426806,53.03078443270315],[-127.2463792957432,53.03063548268295],[-127.24629117293361,53.03046551786603],[-127.24629898421693,53.03028613027457],[-127.24635543047015,53.03010902608737],[-127.24641096658794,53.02993249627558],[-127.24645149886136,53.02975444841579],[-127.24648080819698,53.02957538946244],[-127.24650730899339,53.02939636911742],[-127.24653194192078,53.02921735951416],[-127.24653600089734,53.02903745555984],[-127.24652885537614,53.028857660997865],[-127.24654226743633,53.02867821403466],[-127.24657717933496,53.02849966055156],[-127.24663552254715,53.02832366558879],[-127.24673421753053,53.02815395916831],[-127.24682068452505,53.02798158469982],[-127.24681264631562,53.02780348493727],[-127.2467142648966,53.02763362860882],[-127.24658061908251,53.02747142459355],[-127.24652794618142,53.027299399662446],[-127.24653377336838,53.02711610588013],[-127.24640417692905,53.02696450959964],[-127.2461573165261,53.02685896922355],[-127.24590514996235,53.026763014456726],[-127.24565381212457,53.02666368843069],[-127.24546492772302,53.026528406316054],[-127.24539537455094,53.0263543177248],[-127.24539195251317,53.02617392771432],[-127.24540723577053,53.02599446088711],[-127.24542061881219,53.02581389343774],[-127.24537993419905,53.02563669389235],[-127.2452408460561,53.02547959319143],[-127.24506196607626,53.0253346747192],[-127.24488956568075,53.02518800213092],[-127.24471624195553,53.025041903844986],[-127.24454108371259,53.02489638946974],[-127.24436868689472,53.024749716082674],[-127.24419997653027,53.024601327057425],[-127.24403956371307,53.02444948831227],[-127.24385890716026,53.024307392884474],[-127.24366899922458,53.024168747724886],[-127.24352342744409,53.02401283399245],[-127.24341112221653,53.023845353887396],[-127.24333042674765,53.02367250203936],[-127.24330184926478,53.02349406237157],[-127.24328351561853,53.0233143850957],[-127.24325959730567,53.0231353314686],[-127.24324782287006,53.02295614983908],[-127.24324629385497,53.02277630436878],[-127.24324849877644,53.02259641056288],[-127.2432478958456,53.02241655529474],[-127.24323237097673,53.022236848302946],[-127.24324111973088,53.02205745028916],[-127.24320978337748,53.02188016018247],[-127.24307803610169,53.02171793197625],[-127.2428615858143,53.02159693988416],[-127.2425921886447,53.02151740479649],[-127.24234277314811,53.021418616384544],[-127.24222145408552,53.02126131589699],[-127.24209156328148,53.02109851119234],[-127.24194402732017,53.02093924513312],[-127.24182532413788,53.02077575752575],[-127.24176797106048,53.020602658692056],[-127.24175339565346,53.02042350620591],[-127.24175742476794,53.020241916531006],[-127.24175771988357,53.02006036614365],[-127.2417328838148,53.019881321612864],[-127.2416791680061,53.019704822385485],[-127.24161428363824,53.01952956134104],[-127.24154287451243,53.01935493373718],[-127.24146682232315,53.01918091079373],[-127.24139075425524,53.019006323143124],[-127.24131655400289,53.01883172474136],[-127.24124889578894,53.01865704847512],[-127.24118959929886,53.018481172474594],[-127.2411684526878,53.01830096820798],[-127.24116780782751,53.01811886271763],[-127.24113739251112,53.0179409972657],[-127.24105304920884,53.01777042318606],[-127.24095474678244,53.01760168137466],[-127.24084806923149,53.01743413927644],[-127.24073397300185,53.01726780473977],[-127.24061614525445,53.01710206518307],[-127.24049646651562,53.01693634496903],[-127.24037771466227,53.016770614880144],[-127.24026175651474,53.016604855289295],[-127.24014766454619,53.016438511141786],[-127.24003264907823,53.01627274140089],[-127.23991576769849,53.01610699115587],[-127.23979426193476,53.01594297487606],[-127.23966720409055,53.01578012851818],[-127.23953459756365,53.01561959062453],[-127.23939921554681,53.01545963759184],[-127.23926104185524,53.01529971373138],[-127.2391191696227,53.01514150507533],[-127.23897546308855,53.014983880328785],[-127.23882804185037,53.01482741508542],[-127.23867695226905,53.01467267366049],[-127.2385221477753,53.01451908274887],[-127.2383654602042,53.014364399703645],[-127.23820135697952,53.01421202666447],[-127.23802808331591,53.01406479713193],[-127.23784010716753,53.01392613112335],[-127.23762737963524,53.013802849044964],[-127.23735292555382,53.01370766600106],[-127.23705825054972,53.01362391003585],[-127.23680344081099,53.013530205164585],[-127.2366438612394,53.01340412265504],[-127.23657947998299,53.013245098400034],[-127.2365705780551,53.01306757074961],[-127.23659775886058,53.01287901395546],[-127.236643539306,53.01268745596187],[-127.23668669139305,53.01250209362986],[-127.23673570394564,53.012325635131816],[-127.23682120589069,53.01215215593007],[-127.23691704630167,53.011980809545676],[-127.23700446098746,53.01180843076643],[-127.23709745987362,53.01163599332219],[-127.23721121780643,53.011470626824405],[-127.237364566249,53.01131884867392],[-127.23755659402624,53.01118066827849],[-127.23774858817623,53.0110413761971],[-127.23791884524306,53.01089278179233],[-127.23807113266079,53.010736531090664],[-127.2381764282726,53.01056956686242],[-127.23826740606457,53.01039210202317],[-127.23833775180665,53.01021093587834],[-127.23836437279874,53.010035276300265],[-127.23828048206751,53.00987981950877],[-127.23805155635606,53.0097443808312],[-127.2379478807091,53.00958241645318],[-127.23791185279198,53.00940348772877],[-127.23790744017556,53.00921974444351],[-127.23791896685312,53.009038631011634],[-127.23793229490018,53.008855266276974],[-127.23796055443971,53.00867173581101],[-127.23801702318723,53.00849519800709],[-127.23812155244735,53.008334409758234],[-127.23829764150685,53.00819415374712],[-127.23851891776862,53.00806743573066],[-127.23874398966993,53.00794236289181],[-127.23896066997919,53.00781793361694],[-127.23917168435067,53.007691322120195],[-127.23938628314296,53.007559625054],[-127.23960461372292,53.00742789731076],[-127.23980507344724,53.00729186538019],[-127.23996988900605,53.00714949283123],[-127.24003242057502,53.0069891352824],[-127.23994949719784,53.006802855267836],[-127.23997346426373,53.00663226132152],[-127.24016336735654,53.00648626259853],[-127.2402601726401,53.006317143842644],[-127.24034941200212,53.006144177732864],[-127.24021223992285,53.00598592934176],[-127.24001322475202,53.00585185625601],[-127.23980044974233,53.005725781171364],[-127.23956299422039,53.00561733107045],[-127.23932644914804,53.00550830611006],[-127.23911184422855,53.00538336970043],[-127.2389404548109,53.005236121285364],[-127.23881250808563,53.00507384750564],[-127.23870401904247,53.004906321679684],[-127.23860387293185,53.0047370315878],[-127.23850559392221,53.0045677217916],[-127.23839988316442,53.00439961062776],[-127.23828119097529,53.004234441847146],[-127.23814860925904,53.0040733366548],[-127.23800956933395,53.00391454045853],[-127.23786960477919,53.003755753801045],[-127.23773517604215,53.00359522337372],[-127.23761187932865,53.00343177875062],[-127.2375312312805,53.003258921012595],[-127.23751760408352,53.00307920061438],[-127.23755439910005,53.00290062752332],[-127.2376080699975,53.002724118614616],[-127.23765984285893,53.002547064762126],[-127.23771724528581,53.00237051658896],[-127.23777745551692,53.00219450370828],[-127.23786767104153,53.002023214314285],[-127.23790073130532,53.0018446801876],[-127.23804925401352,53.00168846786284],[-127.23832644283246,53.0016233551698],[-127.23861342035372,53.001574393235444],[-127.23890856273603,53.00154887895188],[-127.23920564316897,53.00155808444567],[-127.2394906223563,53.0015046586659],[-127.23969778989999,53.00137528864515],[-127.23982559674592,53.00121312357055],[-127.2400384745885,53.00108761073515],[-127.24028856590958,53.000989722903306],[-127.24054055647878,53.00089350003503],[-127.24077535658579,53.00078344459745],[-127.24097586314483,53.00065021544947],[-127.24121924721516,53.000546792788164],[-127.24149929740629,53.00048444851147],[-127.24179131270019,53.00044830892753],[-127.24203087966872,53.00034212754198],[-127.2420995065961,53.00016713507096],[-127.24220941798372,53.00000011712874],[-127.24226585820914,52.99988745489799],[-127.24236981767459,52.99974011578657],[-127.2425060074131,52.99960980290724],[-127.24269513317716,52.999438587572484],[-127.24293107295907,52.99927248177385],[-127.24321729622254,52.9991024832303],[-127.24349755076165,52.99895159840764],[-127.24365076874363,52.99886144885048],[-127.24384464400312,52.99875685721124],[-127.24397845507488,52.99867308015074],[-127.24412000842082,52.99859874250275],[-127.24418183366564,52.99844735451509],[-127.24417658580069,52.998268101522555],[-127.24418813212354,52.9980886712821],[-127.24420620057256,52.99790861633458],[-127.24423267467382,52.997729028510605],[-127.24426757085331,52.99755047245176],[-127.24431184439139,52.99737293806739],[-127.2443616677587,52.997194224388686],[-127.24441989503012,52.99701542195988],[-127.24449410463329,52.996840368661935],[-127.24459276947812,52.99667234601772],[-127.2447234320513,52.996512950867505],[-127.24487755822713,52.9963583553264],[-127.24505237238247,52.996209135505865],[-127.24524235904329,52.99606816471715],[-127.24544380261159,52.99593603799814],[-127.24566624625079,52.99581994335717],[-127.24591624584612,52.99572092310878],[-127.24617864293191,52.99563073670186],[-127.24644017912944,52.995542800155995],[-127.24671342053188,52.99547267010943],[-127.2469129413763,52.99533887558579],[-127.24705671810302,52.995181580240484],[-127.24716565533771,52.995014011289015],[-127.24734524467,52.99486922001086],[-127.24751923379495,52.99472393183875],[-127.2476131916975,52.99455483540631],[-127.24768925135437,52.99438032490062],[-127.24780477116545,52.994214362100976],[-127.24790055974853,52.99404412530568],[-127.24798320465199,52.99387123033069],[-127.24801717277917,52.99369323823523],[-127.24802308789073,52.993513310704465],[-127.2480243307123,52.99333342365305],[-127.24801718516088,52.99315363435411],[-127.24793215608378,52.99295897103473],[-127.24798211645462,52.992849180121794],[-127.24799921162442,52.992795762259185],[-127.24814403275113,52.99264293688845],[-127.24841812723832,52.99257055214586],[-127.24870600527778,52.99252267576182],[-127.24899487252944,52.992476473692165],[-127.24928078472996,52.99242525466877],[-127.24957079006965,52.99238631906621],[-127.24986695221709,52.99236636907453],[-127.25016420426529,52.992352010192015],[-127.25046051408357,52.99233709572855],[-127.25085771818111,52.9924208597277],[-127.25115076043178,52.99239028863943],[-127.2514268788565,52.99232347875489],[-127.2517129026136,52.99224423551487],[-127.25184723854488,52.99221142986535],[-127.2519949961402,52.9922221881728],[-127.25223673571378,52.992192168188716],[-127.25254623584303,52.9920863329533],[-127.25280037486282,52.99200238721759],[-127.2530508297101,52.99188821264491],[-127.25330988597987,52.9918126141571],[-127.25358304091243,52.99174022720995],[-127.25385040116349,52.991661741971214],[-127.25412357060196,52.991589909450326],[-127.25440123275632,52.99154436904882],[-127.25470305008133,52.991526588002316],[-127.25500688186479,52.991513832298146],[-127.2552944308693,52.9914552921537],[-127.25544649447278,52.99145367273081],[-127.25559268247683,52.99147452939827],[-127.25589012496853,52.991466878066795],[-127.25615744436969,52.99138670244414],[-127.2564374621072,52.99132600733139],[-127.25671452382564,52.99126029548948],[-127.2569158922532,52.991127584146085],[-127.25709452326807,52.99098335219887],[-127.25730351792724,52.99085617121068],[-127.25752294553483,52.990734472995065],[-127.25777003023715,52.990633216423944],[-127.25797235119649,52.99050162264767],[-127.25817235247082,52.990322975458064],[-127.25820627854766,52.99017636820945],[-127.25836152665617,52.98993600468784],[-127.25844694493306,52.98976418353174],[-127.25853891642718,52.98959285714661],[-127.25861216454695,52.989419489213184],[-127.25862455463714,52.98923892624461],[-127.2587024915429,52.98906662882949],[-127.2588217018517,52.988901179515814],[-127.25888462947235,52.98872623602062],[-127.25892695072967,52.98854815945901],[-127.25896739085988,52.988370093986134],[-127.25898349382655,52.988188935328786],[-127.259031644647,52.98801919707571],[-127.25921269616639,52.98786260800662],[-127.2593790061515,52.98771290027135],[-127.25953684434528,52.98756047660054],[-127.25965885449708,52.98739555215433],[-127.25975652277994,52.987196146359494],[-127.25978099874902,52.987046277233915],[-127.25977562011727,52.986864783054024],[-127.25970968637895,52.98668617744346],[-127.25977307188032,52.98652691792929],[-127.25999040560457,52.986398521699535],[-127.26022788254724,52.98628895243417],[-127.2604539495638,52.986172224687714],[-127.26063157433039,52.98602687667457],[-127.2608358445938,52.985898618515016],[-127.26107523201848,52.98579071253784],[-127.2613146014746,52.9856822414187],[-127.2615586261598,52.98557372893102],[-127.26173929954561,52.98543674719683],[-127.26184055914123,52.98526476225645],[-127.26188382281819,52.985087785731814],[-127.26189184277737,52.98491791962995],[-127.26193455728836,52.98472246199833],[-127.26192451368642,52.9845410175177],[-127.26192030074817,52.98436791129305],[-127.26192990301503,52.98418849780772],[-127.26192179145997,52.98400927396742],[-127.26190245626452,52.98382961441737],[-127.26188033036694,52.98364997576077],[-127.26186566638681,52.98347026615521],[-127.26185554010841,52.98328601621077],[-127.2618820169574,52.98304646937336],[-127.26207871275535,52.98300962170457],[-127.26236160698741,52.98295391936655],[-127.2626464140154,52.982899316539786],[-127.2629244344254,52.982836376060696],[-127.26304303683588,52.98268325563776],[-127.2630096649854,52.98250206099078],[-127.2629772018415,52.98232029175013],[-127.26291054631045,52.9821176046857],[-127.26277255055668,52.98199468640077],[-127.262570736296,52.981859003350245],[-127.26238643651347,52.98171640818739],[-127.26223996781523,52.981559394401366],[-127.26201894213494,52.98134210553567],[-127.26197114940094,52.98124063419393],[-127.26173199207217,52.98113505245496],[-127.26147552389357,52.981043659724804],[-127.26121724128056,52.980953962419264],[-127.26095983521361,52.98086257861784],[-127.2606970487551,52.98077797598077],[-127.2604216734341,52.98070976194773],[-127.26013099965628,52.98066019782492],[-127.25984214186771,52.98060892805417],[-127.25957594417282,52.98053501048412],[-127.25933869671691,52.98043108009481],[-127.25911686428573,52.980311850690256],[-127.2589031689468,52.98018357736527],[-127.25869314052726,52.9800535789682],[-127.25848134587324,52.97992639631336],[-127.25828148664168,52.97979292651135],[-127.25807700806115,52.979661191211115],[-127.25791493125233,52.979511627721415],[-127.25778693967683,52.97934768705631],[-127.2576377738707,52.97919350260169],[-127.25744344998834,52.97905773092331],[-127.2572233793905,52.978934561244294],[-127.25697779395426,52.978831835807945],[-127.25674259158322,52.97873292604752],[-127.2566081949032,52.97866767347904],[-127.25650930306469,52.97860429254373],[-127.25647772808053,52.97841971469486],[-127.25644536218863,52.97824018389402],[-127.25642420254408,52.97806054255265],[-127.25639373538023,52.9778821121544],[-127.25634370890151,52.97770445509379],[-127.25629181773279,52.97752681787717],[-127.25623434837955,52.97734980492044],[-127.25616760355766,52.97717456735898],[-127.25608509613248,52.97700229502308],[-127.25597849417832,52.97683589187489],[-127.25584594576213,52.97667480379436],[-127.255704107607,52.97651549111453],[-127.25556690779979,52.976355017108055],[-127.25544083290578,52.97619217405519],[-127.25533606572031,52.9760240652197],[-127.25527117531105,52.97584825145205],[-127.25524538459786,52.97566977077094],[-127.25524284990418,52.97548936577046],[-127.25521889173118,52.97530975379682],[-127.25518841344405,52.97513020228994],[-127.25514029330347,52.97495364490254],[-127.25501239253991,52.97479195042681],[-127.25488846981962,52.97460723468624],[-127.25473188617389,52.97445312540367],[-127.25459106565526,52.974296041851474],[-127.2545466458037,52.974118324074375],[-127.2545310761653,52.97393862253846],[-127.25451738625719,52.97375889200332],[-127.25449623846058,52.973579805682796],[-127.25448160915597,52.9734000940749],[-127.25436665421411,52.97323433406963],[-127.25421294990325,52.973082990651335],[-127.25401861544971,52.97294553679159],[-127.25383901965134,52.97280175745691],[-127.25365117261158,52.97266254843024],[-127.25343855598557,52.972537606841904],[-127.25320758917415,52.97242295529156],[-127.25296663976233,52.972317930894455],[-127.2527211191865,52.97221575187208],[-127.25250967867409,52.97209864996861],[-127.25226657102905,52.97198356082495],[-127.25204475314081,52.97186264146702],[-127.25183671589197,52.97173428626645],[-127.2516608459287,52.971589908188186],[-127.2514996978167,52.97143864032417],[-127.25134313981316,52.97128509105901],[-127.25118199398612,52.97113382273287],[-127.25101340662232,52.97098319803003],[-127.25089857059511,52.97082079544415],[-127.25085878998478,52.97064135028947],[-127.25079021303868,52.97046612877514],[-127.2507160752275,52.97029208693821],[-127.25063822479352,52.970118640318475],[-127.25055664570166,52.969945242178575],[-127.2504713870162,52.96977355958972],[-127.25036385067976,52.96960547545295],[-127.25025446677391,52.96943796668265],[-127.2501952345994,52.96926321040797],[-127.25019739101873,52.969082755056455],[-127.2502191525891,52.96890321234147],[-127.25018408026189,52.9687253934037],[-127.24999626318841,52.9685861782095],[-127.24983973744297,52.96843318237679],[-127.24975484683318,52.96827382296079],[-127.2497621874953,52.968079299312215],[-127.24976530208812,52.9678993985268],[-127.2497372466327,52.96770637101631],[-127.24970773840404,52.967527372117075],[-127.24965682883114,52.96735028573909],[-127.24960118307145,52.9671704433288],[-127.24953537182907,52.96699350596404],[-127.2494455199465,52.966824112551464],[-127.24928919871634,52.96667728207859],[-127.24904713635085,52.96656441665386],[-127.24879530581137,52.96646846478324],[-127.24853169271147,52.9663838442531],[-127.24825462958162,52.96631729685234],[-127.24799643140055,52.966226449430806],[-127.2477912565249,52.966099186417054],[-127.24763469843337,52.96594450241665],[-127.2474873153416,52.965784126514386],[-127.24731523022236,52.96564025763834],[-127.24705908354933,52.96555555480265],[-127.24678364788973,52.96548114186237],[-127.24657744034617,52.96534996074994],[-127.24633667869318,52.96524940376022],[-127.24605149093985,52.96519190280421],[-127.24576123529222,52.96515238595677],[-127.24546835482649,52.96511849964965],[-127.24517899224712,52.96507785123545],[-127.24489217218964,52.96502820964837],[-127.24460975938987,52.96496955520686],[-127.24433632747945,52.96489959823378],[-127.24406553691053,52.96482400923987],[-127.24379925232985,52.96474276855604],[-127.24353747514847,52.96465643206522],[-127.24328664081446,52.96456157874433],[-127.24305302213499,52.964449732741265],[-127.24282121866197,52.96433562573032],[-127.24235303071013,52.96417470065454],[-127.24209487462932,52.96408440484158],[-127.24184401417415,52.963988428061775],[-127.24159944296468,52.963883983701734],[-127.24137223489817,52.96376758404008],[-127.24119465049077,52.963626005704405],[-127.24106858675097,52.96346034962478],[-127.24093033196965,52.9632925804285],[-127.24086764622344,52.9631256916285],[-127.24099066374059,52.96296301490474],[-127.24112386205796,52.96279798936118],[-127.24123180004307,52.962630432541964],[-127.24133879592931,52.962462320692566],[-127.24144956878234,52.962295845483304],[-127.24156877116909,52.96213041096372],[-127.24170958589704,52.96197090785181],[-127.24190810758431,52.9618399343893],[-127.2421454450507,52.96172872388804],[-127.24238573248448,52.96162252044848],[-127.24262123580677,52.961512448994554],[-127.242842436542,52.96139188577281],[-127.24303237325023,52.96125427667328],[-127.2432090287531,52.96110896250147],[-127.2433743657256,52.960959284705034],[-127.24351800658816,52.9608008700769],[-127.243654108459,52.96064029343963],[-127.24382236058271,52.960494502134246],[-127.24405491887615,52.96037997592108],[-127.24431335694905,52.96028927543854],[-127.24458236660516,52.96020910486914],[-127.24482753881965,52.9601112543403],[-127.24502021965534,52.95997249209716],[-127.24517516825962,52.95981843854599],[-127.24529715452171,52.95965352621989],[-127.24536662707905,52.95947851780655],[-127.24539766009154,52.95929663567105],[-127.24548600459956,52.95912928149339],[-127.24565043398188,52.95898073045851],[-127.24583926345113,52.95883808048036],[-127.24600832745756,52.958688924004306],[-127.24613223717067,52.95852623169422],[-127.24624761633281,52.95835858183271],[-127.24635451600396,52.958188224279326],[-127.24644922403374,52.95801575421037],[-127.2465299240506,52.95784231158454],[-127.24659295339924,52.95767017660748],[-127.24658291758583,52.95748705197435],[-127.24646051385471,52.95731912087281],[-127.24621557150002,52.95723317704692],[-127.24592010972448,52.957172978524035],[-127.2456567076995,52.957093397180614],[-127.24554641866415,52.95692533701401],[-127.24552348397916,52.95674682252125],[-127.24551818653303,52.95656588904946],[-127.24547197517535,52.95638874136508],[-127.24541180846745,52.95621287088569],[-127.24535164064044,52.95603643553819],[-127.2453137134405,52.955855838035205],[-127.24527119948347,52.95567753937812],[-127.24514720432056,52.95551858931536],[-127.24496861880729,52.95537366465818],[-127.24478355162017,52.95523048481246],[-127.24512992664168,52.955183115894016],[-127.24541763753487,52.95513805184572],[-127.24568682564478,52.95506515636264],[-127.24593557921466,52.954963347011926],[-127.24617487946313,52.95485714534827],[-127.24641028642971,52.95474538981088],[-127.24664765449728,52.95463696618056],[-127.24689460483383,52.95453741522965],[-127.24715595401439,52.95445227150285],[-127.24742690061512,52.95437600015606],[-127.2476978476292,52.954300284039014],[-127.24796112217696,52.95421680362845],[-127.24820809960974,52.95411836129527],[-127.24844164937473,52.954007177102916],[-127.24867227938964,52.953892105386515],[-127.2489077236595,52.9537820208509],[-127.24915080376792,52.953678014250265],[-127.2493957799144,52.953575116689066],[-127.24964555384456,52.9534766415617],[-127.24990110161761,52.95338483782977],[-127.25016535659034,52.95330358335332],[-127.25044115704759,52.95323453348822],[-127.25072081644136,52.953169924821296],[-127.25099663147088,52.95310142934842],[-127.25126089919844,52.9530207370614],[-127.25152115758843,52.952930556256355],[-127.25178316339628,52.952836429318026],[-127.25203753074253,52.95273622356268],[-127.2522767375437,52.95262777760274],[-127.2524913644987,52.95250782060787],[-127.2526606932777,52.95236929294984],[-127.2527628666925,52.952197858091296],[-127.25284234291841,52.95201601334262],[-127.2529502386815,52.95184900023571],[-127.25314798500344,52.951725859388944],[-127.25342233585219,52.951640007071965],[-127.25365303687727,52.9515277216982],[-127.25383807877914,52.951385106902755],[-127.25401650371737,52.95123919115087],[-127.25422160084331,52.95111260798165],[-127.25449345441491,52.95103686607771],[-127.25477211926457,52.950970581495035],[-127.2550508341678,52.950906528166655],[-127.25530165273932,52.950813077134974],[-127.25552939232377,52.95069578077266],[-127.25578583345417,52.95060338944113],[-127.25605952824284,52.95052705936116],[-127.25629320318534,52.95042146115943],[-127.25649160792116,52.95028934168923],[-127.25667472124736,52.95014505719578],[-127.25684935394536,52.9499975007643],[-127.2570155227454,52.94984723709308],[-127.25716456917057,52.94968593985144],[-127.25731560926523,52.94952854808847],[-127.25749045257038,52.94938827747567],[-127.25772626294822,52.94929217503714],[-127.25802601165533,52.94924638605276],[-127.25832044810048,52.949209618776834],[-127.25861216377086,52.94917568610734],[-127.25890585872735,52.94914564956831],[-127.2591996028716,52.949117288354934],[-127.25949427136419,52.94908892548369],[-127.25978794838046,52.94905832208171],[-127.26008068404398,52.949027172140696],[-127.26037340436811,52.94899602163114],[-127.2606670636461,52.948964860336794],[-127.26095978155446,52.94893315251035],[-127.26125348965219,52.94890366581088],[-127.26154912789498,52.948876408092936],[-127.26184181288092,52.94884413357108],[-127.26212949617614,52.94880013992687],[-127.26241222781877,52.94874612117939],[-127.26269291348414,52.9486865111369],[-127.26297257439855,52.948623558222984],[-127.26325129325872,52.94856004989872],[-127.26353098552002,52.948498207050484],[-127.26381265740247,52.94844026927126],[-127.26409918034055,52.94838900303229],[-127.26438670854121,52.94833996672675],[-127.26467324502289,52.94828869892794],[-127.2649539745981,52.9482307685002],[-127.26522691338025,52.94816115805543],[-127.26549303710017,52.94808208962688],[-127.26575526557004,52.94799745886622],[-127.2660145396919,52.94790781155774],[-127.26627000027064,52.94781485148361],[-127.26652349752162,52.94771910567783],[-127.26677417204344,52.94762226895697],[-127.26702293146083,52.9475237667311],[-127.26727069882119,52.947423042167514],[-127.26751557831612,52.94731954187085],[-127.26775473177581,52.94721161981983],[-127.26798627857352,52.94709873145702],[-127.26820738246323,52.94697979561978],[-127.26841233348449,52.94685039099736],[-127.26860210575684,52.94671217480678],[-127.26878522778115,52.9465695560322],[-127.26897115330385,52.94642746261145],[-127.2691665967497,52.946291990600194],[-127.26937340500146,52.946162555200104],[-127.26959159515853,52.94603972997665],[-127.26982699187653,52.945931279162],[-127.27008238391161,52.94583719050781],[-127.27031675351932,52.94572538759358],[-127.27053676896207,52.945601420120646],[-127.27081114122795,52.94554970343523],[-127.27111574825055,52.945543053378834],[-127.27141309954084,52.94554264932497],[-127.27171067003083,52.9455500782317],[-127.2720082892933,52.94555863554712],[-127.2723050695996,52.94557055437352],[-127.27260269083457,52.9455796660457],[-127.27289997533728,52.94557701751998],[-127.27319887366765,52.94556649678006],[-127.27349447862434,52.9455700243962],[-127.27378340219668,52.94559996498061],[-127.27409106357976,52.94560167511243],[-127.27437212833816,52.94561768579454],[-127.27467047163675,52.94561950422747],[-127.27498483209337,52.94565812331628],[-127.27525673201951,52.94567983473863],[-127.27554417820967,52.94572211496104],[-127.27579233830909,52.94582253283465],[-127.27590561843385,52.94555905651824],[-127.27588907798598,52.94538047612169],[-127.27578799965663,52.94521122159837],[-127.27568042540085,52.94504315807933],[-127.27554474598357,52.94487036015307],[-127.27550884985494,52.94469927850462],[-127.27546437354437,52.94452156544018],[-127.27547669571666,52.9443415515187],[-127.27546668974087,52.944163465013865],[-127.2753971297867,52.94398826503677],[-127.27533405204883,52.943811874071486],[-127.27531670889134,52.94373081399532],[-127.27540770698072,52.943594776724936],[-127.27560677743872,52.94336399266708],[-127.27570727548223,52.94320264040071],[-127.27575132975471,52.9430245328868],[-127.27579632263352,52.94284640619686],[-127.27581519181904,52.94266745078382],[-127.27581633059117,52.94248755778342],[-127.27583704615982,52.94230801747284],[-127.27583660819411,52.94216905243182],[-127.27599836491659,52.941968375425965],[-127.27611272643718,52.94180351020302],[-127.27622987490649,52.94163861463331],[-127.27635833596182,52.94147751433763],[-127.27655749379511,52.94134310960912],[-127.27675859804364,52.94121148970716],[-127.27694266032987,52.94107107950621],[-127.27715225792026,52.94094328482087],[-127.27736091328165,52.94081494408173],[-127.27756864282776,52.94068660402962],[-127.27777920947713,52.94055991836764],[-127.27799449338907,52.940435422551985],[-127.27821170502612,52.94031259096275],[-127.2784326944673,52.94019195041452],[-127.27865561164674,52.940072974064925],[-127.27888042675924,52.93995566222735],[-127.27910904950903,52.93984054105787],[-127.27934050938329,52.93972707416635],[-127.2795710288519,52.939613617019326],[-127.27980345912107,52.93950125935544],[-127.28003682940574,52.93938945583782],[-127.28026440571206,52.93927098151364],[-127.28049095745176,52.93914972053502],[-127.28073500152222,52.93905180408785],[-127.28101004135596,52.93899334017677],[-127.28130354903898,52.93895988651509],[-127.28160387227226,52.93893587962716],[-127.28189942823492,52.93890857065942],[-127.28219500056028,52.93888181664808],[-127.28249079183043,52.93886233975627],[-127.28278695456498,52.938855195048816],[-127.28308370816872,52.93886765142107],[-127.2833806646573,52.93888682920662],[-127.28367731727626,52.93889592300181],[-127.28398320239663,52.93890210905469],[-127.28429076519318,52.93890211648702],[-127.28457693455933,52.938872661715095],[-127.28483373168434,52.93879644721596],[-127.2850688467946,52.938681252260835],[-127.28527716241057,52.9385428051146],[-127.28544981879415,52.938396345947645],[-127.28560456143259,52.93824335774633],[-127.28574699545196,52.938083779365115],[-127.28587341126816,52.93791821621351],[-127.28598295626675,52.93775003088074],[-127.28607285797237,52.93757925370238],[-127.28614776776219,52.937405842874654],[-127.28621047118632,52.93722920314527],[-127.2862609705412,52.93704989935733],[-127.28629839215294,52.93686960872072],[-127.28632278738283,52.936690025233354],[-127.28633135399883,52.936511179524736],[-127.28632130229059,52.93633252826908],[-127.28628511623822,52.93615305078876],[-127.28622658584896,52.93597380845297],[-127.2861486028439,52.93579870564703],[-127.28605308134232,52.93562939803929],[-127.28592063219511,52.93547114516659],[-127.2857566967704,52.9353199514697],[-127.28558535857441,52.93516996808533],[-127.28543250338221,52.935015290733176],[-127.28530178634735,52.93485253530964],[-127.28519322781727,52.93468336931094],[-127.2851255571382,52.93450982978961],[-127.28512328740963,52.93434230960368],[-127.28514067313223,52.9341773721654],[-127.28515984610966,52.93397879322218],[-127.28516749265886,52.9337999484284],[-127.28523178951681,52.933614890408585],[-127.28530285725778,52.93346841919548],[-127.2854406449216,52.93331001202319],[-127.28558875401448,52.93315373340536],[-127.28574434843497,52.93299849354753],[-127.28590462380178,52.9328437582053],[-127.28606676328876,52.93268956710075],[-127.28622703659138,52.93253484025331],[-127.28638167034687,52.93237904509148],[-127.28653072881983,52.932223319601114],[-127.28668445330257,52.93206809877555],[-127.28684379982035,52.93191393699424],[-127.28700596623911,52.93176086487258],[-127.28716812932122,52.93160722768654],[-127.28732748943949,52.93145362987067],[-127.28748120823775,52.93129840793148],[-127.28762650079739,52.93114215720639],[-127.28775960502021,52.93098323330034],[-127.28787865824198,52.930821665601314],[-127.28797988571728,52.93065637472192],[-127.28805016124198,52.93048468906184],[-127.28809327737191,52.93030826172735],[-127.2881167033114,52.93012756689497],[-127.288127005283,52.929944774190545],[-127.2881335792535,52.929761466377606],[-127.28814297383578,52.9295792394447],[-127.28815990516927,52.92939973633002],[-127.28817124743014,52.92922029436063],[-127.28817790790548,52.92904034772379],[-127.28818085703519,52.9288604327192],[-127.28818474725207,52.92868107224617],[-127.28819048356516,52.9285011356621],[-127.2881943566213,52.92832121048469],[-127.28819729099952,52.92814130452643],[-127.28820023998504,52.92796138942229],[-127.28820411322206,52.92778147314787],[-127.28821265305523,52.92760206166242],[-127.28822585751281,52.9274225991002],[-127.28824465052925,52.92724307534608],[-127.28826438227982,52.92706354129224],[-127.28828314107065,52.92688289712532],[-127.2883028405009,52.926702798523486],[-127.28832440070876,52.92652212364157],[-127.2883487646467,52.92634198289453],[-127.28837967451189,52.92616288223534],[-127.2884152657449,52.925984295149576],[-127.28845929785076,52.92580730121366],[-127.28851267951379,52.92563188150313],[-127.28858012391892,52.925459105139986],[-127.28868126809365,52.925291572377745],[-127.28880583928388,52.92512825695161],[-127.288943485163,52.92496648376532],[-127.28908116199608,52.9248052749044],[-127.28920944087905,52.92464191835841],[-127.28932836907723,52.92447698745962],[-127.28945197973948,52.92431312585059],[-127.2895944206129,52.92415578219112],[-127.28975943415585,52.9240054802521],[-127.28991880725697,52.92385355428397],[-127.29005646162531,52.923692335372465],[-127.29018456171482,52.92352281994141],[-127.29025018434257,52.92335174785351],[-127.29021978461031,52.9231789311032],[-127.29012598308665,52.923004003059916],[-127.29000255086564,52.92283555933084],[-127.2898580797895,52.92267968318523],[-127.28968313735359,52.92253254187702],[-127.28951558089706,52.922383633780925],[-127.2893710281772,52.92222495158793],[-127.28924124213526,52.92206162447329],[-127.28915040324293,52.92189226685598],[-127.28910779039117,52.921715656433946],[-127.28909580031451,52.92153479242118],[-127.28909867939812,52.921353200653286],[-127.28909776317049,52.92116884410129],[-127.28908157508828,52.92097289150859],[-127.28907476610644,52.920778521747685],[-127.28910100300753,52.920598915509785],[-127.28918678586214,52.920447796228544],[-127.28936712016473,52.92034214726433],[-127.28964387277948,52.92028307743965],[-127.28996595248482,52.920243683465245],[-127.29028037976929,52.92019821290297],[-127.29055971062847,52.920131823309966],[-127.29083900692191,52.920064321643316],[-127.29111633756514,52.91999346967086],[-127.29138698611455,52.919917095608774],[-127.29164430866844,52.91983189226388],[-127.29187960658523,52.919726765709136],[-127.29205764963226,52.919576872706656],[-127.29217656951742,52.919412494120586],[-127.29225330216829,52.91923962169176],[-127.29230842048618,52.91906081798411],[-127.29235890635225,52.91888262099209],[-127.29241222729645,52.91870552252699],[-127.2924636532503,52.918527879972075],[-127.29251229247659,52.91835026798026],[-127.292556265378,52.91817214234648],[-127.29259184955853,52.91799411778822],[-127.29261991524407,52.917813925331444],[-127.29262354767455,52.91762672088909],[-127.29252545900432,52.917464169487005],[-127.29234976012133,52.91732264384327],[-127.29214262191586,52.91718875251857],[-127.29192714742449,52.917056628997],[-127.29172462426682,52.9169210006701],[-127.291558157347,52.91677656615523],[-127.2914526081533,52.916613539839815],[-127.29140891646408,52.91643245848616],[-127.29140607710202,52.916246445755355],[-127.29142674815863,52.91606802019267],[-127.29147257073672,52.915889874436004],[-127.29153986890579,52.91571317851453],[-127.29162308925964,52.91553911409776],[-127.29172042205067,52.91536993354675],[-127.29183931659126,52.91520555503887],[-127.29197320906589,52.91504381805286],[-127.29211463700257,52.914885360378044],[-127.29226738882869,52.914731261127216],[-127.29244648650041,52.91458640309602],[-127.29258138332055,52.914427451664196],[-127.29269276977566,52.91426092208482],[-127.29279568233407,52.9140916791284],[-127.2928986109464,52.91392299177006],[-127.29299115285623,52.91374994441115],[-127.29307808775006,52.913575828860374],[-127.29317725568163,52.91340607072649],[-127.29330280063279,52.91324610031912],[-127.29347354980632,52.9131024530023],[-127.2936847883717,52.91297348584997],[-127.29391023832912,52.91285220725184],[-127.29413486546741,52.91273429949803],[-127.29437280151414,52.912625766766375],[-127.29460979578214,52.912516688003855],[-127.29483156744695,52.91239713363299],[-127.29504954498759,52.912275370118415],[-127.29526747030319,52.91215193010958],[-127.29548163583108,52.912027410322516],[-127.29569482545259,52.91190122422692],[-127.29590331647158,52.911773959758335],[-127.2961098761164,52.9116444836377],[-127.29630307499869,52.9115045027237],[-127.29644643958557,52.91134938010508],[-127.2964969161884,52.91117174516002],[-127.29651190871243,52.910991138957606],[-127.29652131460725,52.91081059429766],[-127.29652419312212,52.910629556690864],[-127.29652801243037,52.91044907355453],[-127.29653463466387,52.91026912436708],[-127.29655153987277,52.91009017362004],[-127.29658153113631,52.90991276424036],[-127.29666574549944,52.90974204658482],[-127.29681362910478,52.909582390451924],[-127.29697953306037,52.90943317810956],[-127.29716231662945,52.90928827136973],[-127.29734982962346,52.909145544704636],[-127.29752984194549,52.90900122379471],[-127.29768925080688,52.90885321170098],[-127.29777646376056,52.90868917554481],[-127.29775123741986,52.90850340873725],[-127.29774111055724,52.908323643968785],[-127.29772538246003,52.908143932002666],[-127.29771804140734,52.90796413646355],[-127.29772747565924,52.90778471174682],[-127.29774157234638,52.90760523557521],[-127.29775005075659,52.90742525649904],[-127.29773155459037,52.90724613983348],[-127.29771025609114,52.90706649816621],[-127.29771875173145,52.90688708370287],[-127.29773471014569,52.90670758689193],[-127.29775251550915,52.90652806968215],[-127.29776474970323,52.90634861390923],[-127.29776297747998,52.90616819187842],[-127.29775469791018,52.9059883975114],[-127.29776320804385,52.90580898276081],[-127.29780530361684,52.905632003833986],[-127.29787071431174,52.905455879422504],[-127.29793800359793,52.9052802990826],[-127.2980005939062,52.90510309387805],[-127.29810510381532,52.904957363097374],[-127.29831524479752,52.9048244713646],[-127.29856316798576,52.904739363645795],[-127.29879020031377,52.90467185329384],[-127.29905522156474,52.904628579618986],[-127.29932061894088,52.90456736907676],[-127.299614232788,52.9044845518059],[-127.29987188808809,52.90441333871809],[-127.29997569062665,52.904305719684935],[-127.29955932756813,52.90421112882349],[-127.29927082073716,52.90409495969122],[-127.29901265085215,52.9040266384361],[-127.29872319007164,52.90400125983305],[-127.29842848529266,52.903987137009324],[-127.29813033041037,52.90398202654475],[-127.29783045000879,52.90398140842423],[-127.29753063814827,52.90398303926269],[-127.29723173255425,52.90398409448119],[-127.29693369709935,52.9039828978333],[-127.29663678749053,52.90398784769758],[-127.29633991420171,52.903994482029056],[-127.29604208324241,52.90400000540559],[-127.29574432037133,52.90400776878956],[-127.29544720627416,52.90400600233034],[-127.29515318756623,52.90398401846592],[-127.29486067154414,52.90394969797907],[-127.29456738759852,52.903920980034],[-127.29426976548848,52.90390296075714],[-127.29397215852515,52.90388494056337],[-127.29368161006761,52.90385451367848],[-127.29339965492399,52.903799899829906],[-127.29312735478206,52.90372611736155],[-127.29286132685849,52.9036444290093],[-127.29260163675168,52.903556501779036],[-127.29234736329745,52.903462910694024],[-127.29209218434289,52.903369884907455],[-127.29183073759435,52.90328533755886],[-127.29156473175998,52.90320420196194],[-127.2912969479298,52.90312532679996],[-127.29102557948151,52.903051538261295],[-127.29075068980471,52.90298394741462],[-127.2904704721752,52.90292538042763],[-127.2901849222904,52.90287471655354],[-127.28989674254524,52.90282968460761],[-127.28960678625464,52.90278746884344],[-127.28931686472265,52.90274638170996],[-127.28901980135544,52.902715449961576],[-127.28872183423258,52.902685657089805],[-127.28843201564388,52.90264791996108],[-127.2881620169436,52.902588114832746],[-127.28788940931784,52.902380398002165],[-127.28793374227331,52.90227568236978],[-127.28800532506311,52.90208717654593],[-127.2879110147047,52.90198622048984],[-127.2878433171469,52.90181043826713],[-127.2877478312493,52.90164000810629],[-127.28762998598272,52.901468701874855],[-127.28746446609868,52.90132257398436],[-127.28723495209627,52.90121525190856],[-127.2869826000051,52.901122749102846],[-127.28671646475007,52.90103656518213],[-127.28644945776658,52.90095206685113],[-127.28618972964841,52.900861884549265],[-127.28593910836442,52.90076487758369],[-127.2856902990923,52.90066616466786],[-127.28544149124363,52.900567460182685],[-127.28519000055017,52.90047213779286],[-127.28493217353655,52.900383052731556],[-127.2846545953335,52.90031828356456],[-127.28438147887695,52.90024729638986],[-127.28413544247013,52.90014742919122],[-127.28389567962485,52.900039656681884],[-127.28383395125478,52.899999983277404],[-127.28327087680742,52.899637955345746],[-127.28283959872883,52.89932380953856],[-127.28241754825153,52.899099213039925],[-127.28167335427374,52.89878230579247],[-127.28098495512982,52.89846310957532],[-127.28052640531499,52.898324646192265],[-127.28011096446417,52.89822605905592],[-127.27974943241776,52.89815545868567],[-127.27936356948521,52.89792598355091],[-127.2788705143561,52.897568221007035],[-127.2781511247014,52.89720731255851],[-127.2775914876805,52.89677125049133],[-127.27650723079886,52.89597832097553],[-127.27566576846993,52.89570614137785],[-127.2750585296109,52.8955132318668],[-127.27443710806847,52.89534400882594],[-127.27383587635117,52.895351643292315],[-127.27326604517302,52.89522612965445],[-127.2724422133977,52.89513754030504],[-127.27250971775572,52.894810105129565],[-127.27254815094423,52.894632053932135],[-127.27259218282728,52.89445393314947],[-127.27263988916314,52.8942746607733],[-127.2727579255069,52.894111994466385],[-127.27293322761908,52.89396495466741],[-127.27311788803642,52.89382006375045],[-127.27327163988643,52.893668773661354],[-127.27334197892377,52.89349877777588],[-127.27334857910975,52.89331490214827],[-127.27337952634865,52.89313524589829],[-127.27342541659404,52.89295766932233],[-127.27345731998686,52.89277912340944],[-127.27346126888642,52.892599759427576],[-127.27345310965309,52.89241997064764],[-127.27343935122937,52.892240233514535],[-127.27342466995555,52.892060515320225],[-127.27341464936089,52.89188073767024],[-127.27341762675397,52.89170026335246],[-127.27346817607916,52.89152263613028],[-127.27358616814784,52.89135884831744],[-127.27372285638734,52.891197664233346],[-127.2738793124347,52.891043546272144],[-127.27405374384385,52.890899320156194],[-127.27424323201872,52.89076053439685],[-127.27444029818936,52.89062614921588],[-127.27464016423114,52.89049228922756],[-127.2748371943874,52.890356782962854],[-127.27502575440438,52.89021800590432],[-127.27519543423652,52.8900710320459],[-127.27534715314518,52.889914721772215],[-127.275496069596,52.88975787681035],[-127.27565917195443,52.889608732028194],[-127.27585059414247,52.8894727198857],[-127.27606094638826,52.8893471536914],[-127.27628261594678,52.88922651216908],[-127.27650807356868,52.88910806163996],[-127.27673163541169,52.88898851944496],[-127.27694568818413,52.88886234653304],[-127.27714542068261,52.88872456523277],[-127.27735091832929,52.88859232474853],[-127.27758042822339,52.88848504461123],[-127.2778454029633,52.888412113256145],[-127.2781315372333,52.88836137549974],[-127.27842533573856,52.888318390079355],[-127.27871430332935,52.8882692967432],[-127.27900120728636,52.88821350056082],[-127.27929188345432,52.88815934825477],[-127.2795729835392,52.888096324361726],[-127.27982844284331,52.8880162115304],[-127.28002373546926,52.887885762890846],[-127.28014702318937,52.88771349988677],[-127.28021533124323,52.88753960277824],[-127.28025268459747,52.88735763243785],[-127.28031631230462,52.88718265645164],[-127.28044558448549,52.88702378598984],[-127.2806049028593,52.88687354526879],[-127.28078016509328,52.88672705779139],[-127.2809601051482,52.88658163982902],[-127.28113345527778,52.88643405183883],[-127.28128802291305,52.88628050852272],[-127.28143315100833,52.8861231406943],[-127.28157168729095,52.88596303811352],[-127.2817017879808,52.88580079473355],[-127.28182062195471,52.88563586761562],[-127.28192451395114,52.88546886173029],[-127.2819983940631,52.88529489350658],[-127.28204326644584,52.885115646650526],[-127.28207232675395,52.88493656320564],[-127.28208366609407,52.88475656116768],[-127.28206984003883,52.884575703787654],[-127.28202912115461,52.88439794602575],[-127.28194660468098,52.884222885504194],[-127.28180598227216,52.8840658347631],[-127.28161647474906,52.88392387772811],[-127.28138418614431,52.88381377706853],[-127.28112921613356,52.8837229671625],[-127.28086331909624,52.88364068598095],[-127.28059559395795,52.88355898898271],[-127.28033424092101,52.88347272996123],[-127.2800864855867,52.88337455875867],[-127.279847781957,52.88326732237862],[-127.27961632361328,52.88315384693406],[-127.27939125250028,52.883035809504086],[-127.27917255222567,52.882912663368955],[-127.27896302553295,52.88278549884052],[-127.27876084095973,52.88265432692055],[-127.27856504569411,52.88251915800769],[-127.27837475058487,52.88238113153309],[-127.2781890343767,52.88224081343846],[-127.2780051449366,52.882098798527544],[-127.27782217946739,52.88195676432114],[-127.27764013849743,52.88181472874991],[-127.27746267434786,52.881669836767486],[-127.27729257090944,52.8815220581482],[-127.27712429623455,52.88137314761569],[-127.27695146176076,52.8812270838015],[-127.27676944345743,52.881085602536835],[-127.27657004064962,52.88095383179448],[-127.27634866112784,52.88083407184395],[-127.27611722329225,52.88072002449438],[-127.2758875991239,52.880604836244565],[-127.27566558534278,52.880339382215624],[-127.27552674223243,52.88017837749976],[-127.27536318871405,52.880031089889926],[-127.27515932018292,52.87990553391665],[-127.27492431988286,52.879796570817675],[-127.27467193688565,52.87969787366684],[-127.27441499635384,52.87960259665371],[-127.27416088885741,52.87950840018165],[-127.27389870108703,52.87942382172862],[-127.27363557651229,52.87933925284699],[-127.27338784402957,52.879240511555956],[-127.27314825916514,52.879133827177405],[-127.27289060325931,52.87904527922256],[-127.27262300577104,52.878966360367606],[-127.27238798538832,52.87885682761221],[-127.27216563867687,52.87873482880784],[-127.27194059494663,52.87861622106927],[-127.27169570235101,52.878518557330324],[-127.27141463196412,52.87845603710704],[-127.27112048459809,52.87842335345787],[-127.27082234452398,52.87841256271001],[-127.27052301209014,52.87842420839604],[-127.27024055515392,52.87847097064328],[-127.26997220979838,52.87855456505461],[-127.26969276875396,52.87860913875076],[-127.26939338444292,52.87861909646885],[-127.26909782532093,52.87860099297258],[-127.26880553950319,52.87856828344682],[-127.26851489636454,52.878527710110355],[-127.26827475066936,52.878464175958854],[-127.26796565738711,52.87839802270341],[-127.2676953744705,52.878322484006176],[-127.2674233317064,52.87825032596581],[-127.26714765149468,52.878181003942586],[-127.26687577707673,52.87811444666388],[-127.2665687195018,52.878116634553585],[-127.26627954045352,52.878156735098464],[-127.26600225757039,52.87822136365767],[-127.26572601337298,52.878289907530295],[-127.26560575313019,52.87806368688331],[-127.2655048917674,52.87789497221906],[-127.26536435081613,52.87773790119732],[-127.26517864764901,52.877595877053984],[-127.2649292971979,52.87744109727308],[-127.26481597334161,52.877322950564206],[-127.26472236210124,52.877147997465656],[-127.26461129859231,52.87698052149177],[-127.26436778556763,52.87689684188984],[-127.26411376638292,52.876804308639116],[-127.26387601267004,52.87669534437732],[-127.26362463000206,52.87659774277135],[-127.26340429694426,52.876479624174905],[-127.26322046673214,52.87633758579206],[-127.26300732996006,52.87621098786352],[-127.2627768426196,52.876095783601],[-127.2626071753636,52.87602307066209],[-127.26251753162992,52.87601282581919],[-127.26221723486329,52.875991393806316],[-127.26192245404127,52.875967660283216],[-127.2615412045078,52.875915158208635],[-127.26149920696352,52.875785600052666],[-127.26140113432537,52.87561629603182],[-127.26133439493388,52.87543656881515],[-127.26124561020131,52.875266600114955],[-127.26105654019477,52.87513525739201],[-127.26081411173402,52.875025225357795],[-127.26058541437723,52.87490719124723],[-127.26041547939568,52.87476219309898],[-127.26027582231933,52.874602300120976],[-127.26012325972567,52.87444702838864],[-127.25995051158971,52.87430093895374],[-127.2597703903347,52.87415773468381],[-127.25958845744053,52.87401566135179],[-127.25945068470263,52.87385686795279],[-127.25933225774465,52.873691142523946],[-127.2592443895159,52.8735200506307],[-127.25924652620783,52.87327737717556],[-127.25927004487805,52.87309724655274],[-127.25924434936618,52.87292044058387],[-127.25906242350541,52.87277836632723],[-127.25883925869765,52.87265803700285],[-127.25858417366655,52.872559899534856],[-127.25837773926646,52.87243882533425],[-127.25828143133896,52.87226557250775],[-127.25821011629051,52.872087577953835],[-127.25802940142498,52.871955020145364],[-127.25777881582084,52.87185122895494],[-127.2575365133887,52.87174454221395],[-127.25739707528946,52.8715913679988],[-127.25731466987158,52.87141628895604],[-127.25723694037072,52.87124172469503],[-127.25713336319144,52.87107415247212],[-127.25698452740173,52.87091771595114],[-127.25680258635026,52.87077508245178],[-127.25661789633878,52.87063359882945],[-127.25648200452255,52.870474225838215],[-127.25640146543864,52.870299126143905],[-127.25639809177652,52.87012151590594],[-127.25643467481162,52.8699418018506],[-127.25646938226178,52.869762107810864],[-127.25646691323475,52.8695833760386],[-127.25643095892345,52.8694055581117],[-127.25637919920743,52.86922790911227],[-127.25631909211059,52.86905090520342],[-127.25626178524416,52.868874436186346],[-127.2561970541034,52.86869861134731],[-127.25612861919214,52.86852338194542],[-127.25606946986503,52.86834748838566],[-127.25603536220441,52.868169094590684],[-127.25601980659081,52.867988252000146],[-127.25598757610629,52.86781039399692],[-127.25591639347856,52.867636314532234],[-127.2558220163328,52.8674647243963],[-127.25570638785382,52.867298409184244],[-127.25556958886065,52.86713960054843],[-127.25540694502973,52.86698779244799],[-127.25522502428164,52.86684459130437],[-127.255027565587,52.86671108684049],[-127.25481634663751,52.86658445359034],[-127.25459508648264,52.86646409587792],[-127.25436745575713,52.86634827986496],[-127.25411887113599,52.86624782190846],[-127.25386485539119,52.8661524693286],[-127.25363912321392,52.86603831730466],[-127.25343984593295,52.865905950368365],[-127.253255188171,52.86576446102907],[-127.2530815116688,52.86561668558983],[-127.25291983664515,52.86546542859731],[-127.25276461651619,52.865312416932206],[-127.25261397470976,52.86515711471849],[-127.25246794240714,52.865000077543],[-127.25232651983849,52.864841314385636],[-127.2521906310561,52.86468137131891],[-127.25206030577158,52.86452024804453],[-127.25194845316929,52.86435500961114],[-127.25187077482731,52.86418099675497],[-127.25179586188068,52.86400583360651],[-127.25175199938506,52.86371602093863],[-127.25165861950248,52.86354609335922],[-127.25153470400294,52.86338153885827],[-127.25139233647056,52.863222228669784],[-127.2511986101883,52.863088113160224],[-127.25096374724576,52.86297853633127],[-127.25071884474617,52.86287579052379],[-127.25047664410394,52.8627702180138],[-127.25024446889456,52.86265724884691],[-127.25000859104487,52.86254487451491],[-127.24977452538411,52.862430803766664],[-127.2495523947041,52.862311001788356],[-127.2493486212441,52.86218315882313],[-127.24918343277123,52.8620380937611],[-127.24907610756547,52.861867756436645],[-127.24897428143353,52.861694563109765],[-127.24882101485858,52.861543766950824],[-127.2486291315107,52.861408506872756],[-127.2484271595478,52.86127840162474],[-127.24821598572068,52.86115120019151],[-127.24800023752665,52.86102684441263],[-127.24778170939743,52.8609030736636],[-127.24756504116239,52.860778726862584],[-127.2473520302778,52.86065266416681],[-127.24714543949905,52.86052316166553],[-127.2469443319075,52.86039024726608],[-127.24674414648992,52.860256757870786],[-127.24654213646967,52.86012496416877],[-127.2463337399899,52.85999716504852],[-127.24611622514638,52.859875630994104],[-127.24588957515965,52.859759788298064],[-127.24565746122373,52.85964793028081],[-127.24542077151428,52.859538361854305],[-127.24518227363096,52.859431053663535],[-127.24494287090299,52.85932431945031],[-127.24470439029879,52.859217010117455],[-127.2444640196005,52.85910915545408],[-127.24421918767605,52.85900751627865],[-127.24396265086402,52.85891889388802],[-127.24369526723407,52.85884158451519],[-127.24342065606673,52.85877108462701],[-127.24314158430064,52.85870734696713],[-127.24286078434359,52.85864811898839],[-127.24257830469624,52.85859506787524],[-127.2422895859515,52.8585516041378],[-127.241999137116,52.85851208517109],[-127.24170957870636,52.85847143530876],[-127.24124566271186,52.858448882398356],[-127.2409503382952,52.85843406935488],[-127.24065414033832,52.85842094147034],[-127.24035710165879,52.85841062812988],[-127.2400577871569,52.858418270415534],[-127.2397644535726,52.85840791647694],[-127.23947977763099,52.85834311751288],[-127.2392092776371,52.8583179512922],[-127.23892564562084,52.85838482622588],[-127.23863274054787,52.85842097250249],[-127.23832835040854,52.858446040329824],[-127.23804351946904,52.85840812909882],[-127.23752920967168,52.858379923772596],[-127.23723244849016,52.8583791306637],[-127.23693618705745,52.85836375254887],[-127.23664159104237,52.85834164049923],[-127.23634783650083,52.85831671244842],[-127.23606830182817,52.85833253775036],[-127.23579199212612,52.858395965725876],[-127.23551186316777,52.85845551498378],[-127.2352309255975,52.85851954618151],[-127.23494914739317,52.85858695680974],[-127.23466480928076,52.85862972772708],[-127.23437362737626,52.85862942465886],[-127.23407683033243,52.858595556725945],[-127.23378960628067,52.85853861621836],[-127.23352052955029,52.85846634962378],[-127.23325945797579,52.85838110505687],[-127.23300375670087,52.85828852303826],[-127.23274892914358,52.85819368976205],[-127.23249413654644,52.85810054121167],[-127.23223756454557,52.858009643350336],[-127.23198190008705,52.85791817951748],[-127.23172895438397,52.85782444509369],[-127.23147689876588,52.85772902413028],[-127.23123299444272,52.857625662859306],[-127.23099268308935,52.857518345232194],[-127.23074700225203,52.857417807984696],[-127.23048602359714,52.85733536276098],[-127.23021063589475,52.85726932348167],[-127.22992801954003,52.8572106397543],[-127.2296463101679,52.8571513809932],[-127.22937349606197,52.85707746744466],[-127.2290843306825,52.85704966692801],[-127.22878656070732,52.85704605673214],[-127.22849969434007,52.85700142815353],[-127.22821620790822,52.85694442611167],[-127.2279398888836,52.856878391292746],[-127.2276778674483,52.85679146771323],[-127.22741853264792,52.85670115318002],[-127.22714072726038,52.85664801640057],[-127.22684700481915,52.85662306441827],[-127.22654888351553,52.856607123783846],[-127.22625241271419,52.85658387568285],[-127.22596642503926,52.8565369902571],[-127.22568121542102,52.85648504807726],[-127.22538838523425,52.85645896238967],[-127.22509129954136,52.85644636958162],[-127.22479588184893,52.85642758992126],[-127.22449116420947,52.85640835053878],[-127.22419173816837,52.85637953317916],[-127.2239321177364,52.856311064527475],[-127.22372490709282,52.85618938227533],[-127.22354483787758,52.85604050959252],[-127.22336017751375,52.855893934941236],[-127.22315735416908,52.85576267498905],[-127.22294995535327,52.855634259754176],[-127.22274161939748,52.855505298006605],[-127.22253423822026,52.855376890825546],[-127.22232682722763,52.855247918723336],[-127.22213227402838,52.85511264379814],[-127.2219762488038,52.8549590444996],[-127.22178527322605,52.85481869281005],[-127.22157854776844,52.85468074610532],[-127.22135218458357,52.854571578329235],[-127.22107337500144,52.854547577812646],[-127.22076630006885,52.85457542573461],[-127.22047141802143,52.85460707337056],[-127.22017694478696,52.85462077473664],[-127.2198834167877,52.854601972199724],[-127.21959055488502,52.85457418689616],[-127.21929756548063,52.854541928077936],[-127.2190036550933,52.854510233990126],[-127.21870899868827,52.85448470665716],[-127.21841369243002,52.85446871634896],[-127.21811762523174,52.854458901903094],[-127.21782070072126,52.8544518930384],[-127.21752377506424,52.85444431856873],[-127.21722675481163,52.854433946890595],[-127.2169296536636,52.85442021299457],[-127.21662886642017,52.85440820215516],[-127.21632985783948,52.85439280086166],[-127.21603615848231,52.85436838667616],[-127.21575316949502,52.85432760530606],[-127.21547820332165,52.85424246542056],[-127.21527630162737,52.854109505856385],[-127.21520653364492,52.85394603040217],[-127.21516672585832,52.853757032212435],[-127.21512006911777,52.85358827866589],[-127.21508734968504,52.85338687864307],[-127.21499952509815,52.85320958462381],[-127.21498650472628,52.85304665183629],[-127.21527184532698,52.85277807830438],[-127.21544439483696,52.852631714056514],[-127.21562260185264,52.85248808843312],[-127.21580645076374,52.852346654634566],[-127.21599123668543,52.85220576672684],[-127.21617319131073,52.85206322217369],[-127.21634575094123,52.85191742123741],[-127.21651168004165,52.85176719663113],[-127.21667285584869,52.85161366764381],[-127.21681904157482,52.851456366486794],[-127.21694186168139,52.851295379974474],[-127.21697778545753,52.85112016755836],[-127.21696326033342,52.85093707640675],[-127.21698607072626,52.85075863746834],[-127.21704896514447,52.850583145570624],[-127.21708291627792,52.85040402628415],[-127.21712619715328,52.85022594004373],[-127.21720871985436,52.85005416284776],[-127.21731740368448,52.849886606542796],[-127.21740269096352,52.84971424460891],[-127.21745903435429,52.849537699456505],[-127.21755275961932,52.84936749146108],[-127.21767642829467,52.849203697633],[-127.217820726429,52.8490458495611],[-127.21796127275445,52.84888692837634],[-127.21807187388835,52.84872158388974],[-127.21815807709798,52.848548655823585],[-127.21822280678496,52.84837257906672],[-127.21826703514054,52.84819560305366],[-127.21826188266934,52.84801521192652],[-127.21824652655216,52.84783548249982],[-127.2182330153917,52.84765574288524],[-127.21821114405131,52.847476080981075],[-127.21815213239816,52.84729848984244],[-127.2181555314886,52.84712417867728],[-127.21826040516902,52.846953854163864],[-127.21834661991616,52.846781481504856],[-127.21840111200045,52.84660551059649],[-127.21843133576027,52.84642643800326],[-127.21845316846351,52.84624688754632],[-127.21847035997676,52.84606738520525],[-127.21848197323635,52.845887940702895],[-127.21852060246583,52.84570989261525],[-127.21857038875517,52.84553229362152],[-127.21860993978545,52.84535424486059],[-127.21864947435215,52.84517563136252],[-127.21869835313136,52.84499859756224],[-127.21876027903585,52.84482255808864],[-127.218837142727,52.84464859614575],[-127.21893927423031,52.84447998476845],[-127.21907789388499,52.84431939593291],[-127.21919598007317,52.84415621361016],[-127.21921402577473,52.84397446046065],[-127.21910518265648,52.843810280056886],[-127.218970390489,52.843649166297304],[-127.21882361759727,52.84349153902674],[-127.2186713171614,52.8433362104723],[-127.21850341366542,52.84318776824442],[-127.21832817035802,52.84304276423799],[-127.21817039034832,52.84289028932159],[-127.21803010703113,52.84273203783143],[-127.21789626037285,52.842571468906975],[-127.21824509740436,52.84241318404587],[-127.2184345517201,52.84227448401239],[-127.21862398892809,52.842135227919975],[-127.21877301111832,52.84198069100634],[-127.21889195038538,52.84181526724886],[-127.21902499988624,52.841655291825795],[-127.21920403811816,52.841509973856155],[-127.21944090959182,52.841403847291645],[-127.21968539262838,52.841303800990104],[-127.21985034781983,52.84115414509102],[-127.22000681593487,52.84100064988068],[-127.22016423608709,52.840847709417645],[-127.2203470976457,52.84070627704798],[-127.22056681256208,52.84058574723944],[-127.22080834797424,52.840480690078245],[-127.22103184282058,52.84036236162771],[-127.22125913498958,52.840246799678745],[-127.22152751136714,52.8401694813873],[-127.22177576484466,52.84007163287855],[-127.22200683585913,52.83995827167585],[-127.22221323960062,52.83982779011097],[-127.22238572910277,52.839681979170535],[-127.22243738346467,52.83950547895453],[-127.22249836360714,52.839329437528995],[-127.2225723901865,52.8391549458958],[-127.22264644721689,52.838981018747056],[-127.22271955049276,52.838806536581586],[-127.22278798192,52.83863153811175],[-127.22287325565966,52.83845973552374],[-127.22302971920719,52.83830680072887],[-127.22322765724853,52.838173042940255],[-127.22343122077194,52.8380414767236],[-127.22362324196556,52.83789601612386],[-127.22368266240578,52.83773119790369],[-127.22363007519597,52.837550743906455],[-127.22358033350115,52.83737249282287],[-127.22349452755911,52.83720135108254],[-127.22356594194412,52.83703304554251],[-127.22369192495172,52.83688715190293],[-127.22370390433957,52.83668864844975],[-127.22370432334472,52.83650876283638],[-127.22370474208927,52.836328868238716],[-127.2236698249755,52.8361487859019],[-127.2236201171405,52.835971664088206],[-127.2235324387336,52.83579997688486],[-127.2234836525771,52.83562228050651],[-127.22341810555173,52.835444193826234],[-127.22331570117736,52.83527714296895],[-127.22327900810946,52.83509988536488],[-127.22323209995088,52.834923290044046],[-127.22316201164418,52.834748612820036],[-127.22314144874571,52.83458239496371],[-127.22312381772873,52.83438923875027],[-127.22312892585909,52.83421042484563],[-127.22319267642261,52.83403435350085],[-127.22329193748507,52.83386464586843],[-127.2233510164,52.83368806714127],[-127.2233635585496,52.83350916672492],[-127.22332681848752,52.833330223777324],[-127.2232567326667,52.83315555539559],[-127.22316422920875,52.832977193230946],[-127.22308510733355,52.83281157616157],[-127.2230372646031,52.832634434363435],[-127.22302095708133,52.832454713556864],[-127.22305486898037,52.83227559944084],[-127.22314854994183,52.83210594085423],[-127.22325435297189,52.83193784155349],[-127.2233545616572,52.831768679626016],[-127.22345475467812,52.83159951774968],[-127.2235558837083,52.83143034600818],[-127.22365235660922,52.83126066676255],[-127.2237217089067,52.83108565714335],[-127.22383127291211,52.83091920363315],[-127.22398206364521,52.830763519180685],[-127.22416097634233,52.83061651660343],[-127.2241876558601,52.83054170158965],[-127.22418449541004,52.8304963471136],[-127.22413750343532,52.83044640155926],[-127.22380927594945,52.83015224919861],[-127.22364785499049,52.83000150429026],[-127.2234873411369,52.82985019379471],[-127.22331121483178,52.829705761493734],[-127.22312775038351,52.82956421182035],[-127.22295161054815,52.82941922320851],[-127.22278927481729,52.82926905151453],[-127.22263337250659,52.829116006151345],[-127.22248206217832,52.82896122710367],[-127.22233996595577,52.82880355444947],[-127.22221813918898,52.82863951077882],[-127.22209815579538,52.82847488291068],[-127.22197725250635,52.82831082039692],[-127.22184621564116,52.82814966965777],[-127.22169951751103,52.82799316487593],[-127.22153534893691,52.827843566395536],[-127.22135556859882,52.8277008548124],[-127.22115745923739,52.82756674398466],[-127.2209694534586,52.82742860051449],[-127.22076795101754,52.82730628811971],[-127.22051809400202,52.82718279236956],[-127.2203944041175,52.82708320702665],[-127.22022637489947,52.826961110662296],[-127.22015612697854,52.826812210834035],[-127.22011979008725,52.82671171739159],[-127.21999540682722,52.826555543439184],[-127.21979246090292,52.82641474686126],[-127.21958796213346,52.826284618048376],[-127.2193807324325,52.826156202911434],[-127.21917166236057,52.82602891834452],[-127.21896167197636,52.82590165192907],[-127.21876450004545,52.8257675183756],[-127.21855638651792,52.825640787669066],[-127.21832714915102,52.825522686201644],[-127.21810165607103,52.825373154361785],[-127.21802718055834,52.825238876309015],[-127.21819909180091,52.82504207525832],[-127.21835460111477,52.82488915494345],[-127.21855789109303,52.824749187980565],[-127.21859217177378,52.82468046395981],[-127.2186516054057,52.82458065262224],[-127.21873764538856,52.82440379537942],[-127.21879407784024,52.82423172857026],[-127.21888211908066,52.82405989843621],[-127.21898324837045,52.82389072981563],[-127.21911247696262,52.82372911484435],[-127.21923983004606,52.823566954302194],[-127.21932974238825,52.82339566020743],[-127.21941590523039,52.82322328417032],[-127.21954139753315,52.8230611515143],[-127.21964906659825,52.82289359093145],[-127.21977725594901,52.82272806757421],[-127.21991294278982,52.82256526364088],[-127.22007417213408,52.82241788517363],[-127.22028829887547,52.82230021804518],[-127.22054876218935,52.8222100885972],[-127.22081105171648,52.82211937468484],[-127.22105062241107,52.822013770242435],[-127.22128539452409,52.82190317612416],[-127.22152019723259,52.82179369302459],[-127.22176259262314,52.821689743352934],[-127.22200975324212,52.82159021776827],[-127.22226072453329,52.82149345843875],[-127.22251649347835,52.82140225256466],[-127.22277707632549,52.82131716482721],[-127.22305198781298,52.821245367784435],[-127.22332885327049,52.82117692107304],[-127.22359618535211,52.8211001626191],[-127.2238406066122,52.82100234728918],[-127.2240583519602,52.82088182880259],[-127.22426181318667,52.820749139075254],[-127.22446522587981,52.82061531971555],[-127.224676310515,52.82048927447727],[-127.22488737878025,52.82036322004079],[-127.22509180476237,52.82023219542195],[-127.22529435529164,52.82010063408348],[-127.22551205976315,52.81997899237101],[-127.22575538763704,52.81987558030618],[-127.22601981587152,52.819795484071086],[-127.22629383884127,52.819725374164996],[-127.22656786227368,52.819655828483164],[-127.22684288551193,52.81958850432714],[-127.22711398218743,52.819513939865246],[-127.22737071389976,52.81942439868259],[-127.22751689484194,52.81927211857157],[-127.2275824472102,52.81909546797983],[-127.22763497571601,52.81891839761058],[-127.22783916867515,52.81910287028509],[-127.2280368954398,52.81912714523347],[-127.2283231737005,52.81909613017953],[-127.22862283089563,52.819045355962245],[-127.2289218077993,52.81900299855666],[-127.22921580777069,52.81898198764984],[-127.22951193872036,52.8189699200653],[-127.22980905573375,52.81896008299721],[-127.23010630177784,52.81895472701478],[-127.23040251432013,52.8189460187177],[-127.23069651201122,52.81892444819854],[-127.2310008841309,52.81887642491176],[-127.23126660408771,52.81884113502304],[-127.23156467274286,52.818799901163736],[-127.23185351458807,52.81876100496086],[-127.23209979405266,52.818664273250455],[-127.23235930606943,52.81857524768151],[-127.23261788048627,52.81848623136749],[-127.23289190026624,52.81841666175037],[-127.23318322677311,52.818367648939535],[-127.23348072480205,52.81833874493425],[-127.2337639267679,52.818362112071945],[-127.23400413645547,52.818441405556165],[-127.23430817093534,52.8185104961994],[-127.23457725640507,52.81859172649952],[-127.23484619836911,52.81866847450188],[-127.23512917859051,52.8187159334078],[-127.23538852594088,52.818814076318226],[-127.23566637244014,52.81887727915872],[-127.23594778877734,52.81893483976572],[-127.2362317749129,52.81898509192839],[-127.23652110881032,52.81902743251674],[-127.23680945818033,52.81906810605357],[-127.23710239606805,52.819106488932576],[-127.23739887234568,52.81913867387283],[-127.23769269891234,52.81917536023761],[-127.23797573579037,52.81922505333785],[-127.23823901447282,52.819297935050244],[-127.23847082452845,52.819407569683314],[-127.23868648079618,52.819536983827064],[-127.23890755066883,52.81966074541288],[-127.23916130525016,52.81975781830518],[-127.23946480430321,52.81980784777849],[-127.23970177102407,52.81974258079146],[-127.23988883873318,52.81959153875446],[-127.24007505009675,52.819443311920516],[-127.24027455906398,52.81930446659096],[-127.2404375639796,52.819157040225775],[-127.24049107474158,52.81898387149138],[-127.2404856526436,52.81879731098673],[-127.24059630037608,52.81863922957551],[-127.24078654562905,52.818501601948256],[-127.2409992356027,52.81836934071711],[-127.2411903838376,52.818231146921626],[-127.24137398405597,52.81808910532116],[-127.24156327141984,52.81795092157976],[-127.24176955798984,52.81782208898351],[-127.24198521560615,52.817695963341315],[-127.24220943633503,52.817576462509244],[-127.2424451322498,52.817468612677935],[-127.24269907369049,52.817380743643184],[-127.24297790382577,52.817317833043944],[-127.2432634395154,52.81726156660054],[-127.2435412989106,52.81719754411988],[-127.2438172486695,52.81713129063248],[-127.24409610818518,52.81706949782429],[-127.24438091671124,52.817020526031065],[-127.24466860231661,52.81697488544179],[-127.24494828154786,52.81690915459248],[-127.24522493653701,52.816835609521945],[-127.24550855422495,52.816809619578855],[-127.24579844472747,52.816839611523896],[-127.24609258978533,52.816887481485864],[-127.24638519387685,52.81691463669183],[-127.246679416432,52.816901989929654],[-127.24697303148776,52.81686804463988],[-127.24726258788567,52.81682294266086],[-127.24754053503094,52.816761707197585],[-127.2478048210712,52.816678756117554],[-127.2480652902543,52.816591926677056],[-127.24833445648852,52.816516777084125],[-127.24861034676687,52.81644939200329],[-127.2488921368204,52.81639259562092],[-127.2491809958976,52.81635534189435],[-127.24947677639054,52.81633257527561],[-127.24977071362792,52.81630983649949],[-127.25006562124226,52.81628876337438],[-127.25035949363632,52.81626433811619],[-127.25065234560722,52.81623656057406],[-127.25094504930011,52.81620373576886],[-127.2512366341413,52.81616420628714],[-127.25148740433545,52.81625455981008],[-127.2517129989346,52.81637320140784],[-127.25199446989947,52.816496285761964],[-127.25227595880563,52.81658799566597],[-127.25245765524515,52.8166359285142],[-127.25275049122162,52.81657564256029],[-127.25299778163392,52.81680052672039],[-127.25368023104144,52.817064475046244],[-127.25390096951237,52.81720726615709],[-127.254290829569,52.81728659659792],[-127.25467690981996,52.81739511607208],[-127.25526978753248,52.81755129445637],[-127.25568165407618,52.817620297740916],[-127.25579434017031,52.817596676166374],[-127.2558612415404,52.8175012568182],[-127.25590937855618,52.817368486696445],[-127.25615548333519,52.81729972579766],[-127.25630141106683,52.81720569311447],[-127.25649807883987,52.81706741463657],[-127.25668917080256,52.816929186530274],[-127.25688596801832,52.816795389192286],[-127.25712402109662,52.816674034472946],[-127.25735536664169,52.81657740885106],[-127.25761964733117,52.816494435507344],[-127.25787914258025,52.816407038571185],[-127.25810145575882,52.81628809206965],[-127.25836196767504,52.81620348066998],[-127.25862815336005,52.81612272618365],[-127.25887606639735,52.81602088066357],[-127.25912884549963,52.81592626317246],[-127.25940706884157,52.81587563956606],[-127.25970379367288,52.815853401834424],[-127.26000045204674,52.81582892244576],[-127.26028817753459,52.815784928548375],[-127.26057086924756,52.815728094214556],[-127.26083716375808,52.815651260763154],[-127.26108321049375,52.81554942154543],[-127.26133118056207,52.815449811709755],[-127.26157437913052,52.815345760411496],[-127.26178634905008,52.81522299949833],[-127.26196513239807,52.81507816982354],[-127.26214677549166,52.81493555968545],[-127.26233126136565,52.81479459539929],[-127.26252612322651,52.814659123242485],[-127.26273512660244,52.81453077938728],[-127.26298124536349,52.81443174173371],[-127.26325129142288,52.81435598305183],[-127.26352716090108,52.81428912753131],[-127.26382232071283,52.81424560067094],[-127.264101513855,52.814196640963225],[-127.2641965189639,52.814141262917175],[-127.26423434128799,52.81403774095201],[-127.2642522488752,52.813858218322636],[-127.26427761941795,52.813679171205344],[-127.26455734667469,52.81349178888511],[-127.2647512407941,52.81335520239554],[-127.2649169179164,52.81320771153691],[-127.26504875103568,52.813046570562435],[-127.2651683667435,52.81288108682387],[-127.2653001830419,52.81271994569324],[-127.26546110237202,52.81256858688956],[-127.26563415397524,52.812418773750125],[-127.26581945577608,52.81227498819912],[-127.26602000161904,52.81214393172958],[-127.26613701157201,52.8120787832138],[-127.26624541325859,52.812036708592366],[-127.2665347003084,52.81198427150502],[-127.26683004062139,52.81194745974334],[-127.26712680079963,52.81192744410143],[-127.2674127029512,52.81188624950337],[-127.26768275831843,52.8118116009572],[-127.26794889898851,52.811730825108675],[-127.26822378936382,52.81166284793872],[-127.26849966529578,52.811596545164946],[-127.26876777761558,52.81151967344035],[-127.26903103515205,52.811435563805794],[-127.26929819069959,52.811357580371165],[-127.26957603732335,52.81129517206974],[-127.26985681257352,52.8112377795618],[-127.27013954464634,52.811183718672815],[-127.27042326444266,52.81113189699768],[-127.27070887278481,52.81108061010496],[-127.27099357745477,52.81103045310908],[-127.27127826463916,52.810979730712496],[-127.27156490935835,52.810932357820505],[-127.27185444944247,52.810888871214615],[-127.27215192393598,52.8107993444527],[-127.27245903996896,52.81069065852216],[-127.27266226251196,52.810681730162905],[-127.27300592138417,52.81070770033267],[-127.27329672900436,52.810675404540845],[-127.2735882570976,52.810636375309166],[-127.27388440128172,52.810627001353254],[-127.27417187488182,52.810669834247165],[-127.27444264558322,52.81074478659132],[-127.27468273592551,52.81084977764202],[-127.27489554755604,52.81097523921408],[-127.2750892122016,52.81111268147133],[-127.27530018336537,52.81123816231055],[-127.27552576927718,52.811355638233955],[-127.27575496965306,52.81146914710123],[-127.2759859976227,52.81158207973245],[-127.27622157839042,52.81169159996118],[-127.2764662486393,52.81179429597332],[-127.2767191037069,52.811890742444874],[-127.2769843465445,52.811966869946176],[-127.27728055169123,52.81199054644947],[-127.27756644826948,52.81204235481973],[-127.2778544550949,52.81210255012872],[-127.27812525621061,52.812177493746645],[-127.27835140550438,52.81228207326972],[-127.2785055881482,52.812435066506126],[-127.27864803864432,52.81259939550769],[-127.27883526082421,52.81273801368535],[-127.27904173312625,52.81286802015665],[-127.27926005754402,52.81299061627063],[-127.27948748587917,52.813106378879255],[-127.27972676628715,52.81321473100933],[-127.27998144659563,52.81331002982053],[-127.28024939757698,52.81338275805345],[-127.28054193211676,52.81340758728509],[-127.28084162975142,52.81342337109589],[-127.28112474410544,52.81347464533961],[-127.28140267382294,52.8135394163351],[-127.28167973344503,52.81360588188767],[-127.28196112667487,52.813661656191094],[-127.28225351253214,52.81368143465211],[-127.28255204067052,52.81368938118307],[-127.28284640291682,52.813713063916786],[-127.28314079916952,52.81373786636024],[-127.28343434160108,52.81376491903793],[-127.28372703237514,52.81379478682438],[-127.2840179834415,52.8138285912915],[-127.28430592700145,52.813885965100326],[-127.28446810041254,52.81402541340967],[-127.2845754969877,52.8141973997786],[-127.28468366437043,52.8143643384124],[-127.28474022888346,52.81454529155972],[-127.28480133022552,52.81472283255578],[-127.28494973473695,52.814868034969294],[-127.28518453627099,52.81498090840593],[-127.28542399361343,52.81509429528349],[-127.28560939287665,52.815233487648186],[-127.28575631300423,52.815390469386735],[-127.28586924176159,52.815560717176034],[-127.28600317696379,52.815718970623124],[-127.28622133122651,52.81583426602099],[-127.28647977447592,52.81593006559409],[-127.28670631861934,52.8160463889648],[-127.28692469589627,52.81616896144516],[-127.2871448670662,52.81628983711238],[-127.28737593232466,52.816401626365696],[-127.28762330085512,52.81649978654364],[-127.28788427535139,52.81658658876986],[-127.2881488150125,52.81666831211127],[-127.28841337246153,52.81675059059282],[-127.28867789710273,52.81683174802933],[-127.28894424698986,52.81691176401845],[-127.28921235442827,52.81698839765959],[-127.2894831558365,52.81706163865396],[-127.28976676355211,52.81712856935027],[-127.2900545560585,52.817148943998035],[-127.29034900920287,52.817113203921934],[-127.29062277588355,52.8170390268713],[-127.29086033786324,52.816934976305454],[-127.29108346444505,52.81681483665648],[-127.29131035687992,52.81669634084114],[-127.29155923537245,52.816598333282634],[-127.2918385515006,52.816522962468724],[-127.29211130528401,52.816445986469894],[-127.29233762960553,52.81633982383139],[-127.29250714040198,52.81619841120996],[-127.29264636401075,52.81603940774207],[-127.29277419863452,52.81587211889871],[-127.29290958522493,52.81570922997604],[-127.29307326315066,52.81555947902684],[-127.29326707738261,52.81542340153323],[-127.29347222328728,52.815292811882145],[-127.29366886342034,52.815157823352536],[-127.2938532312861,52.81501680972583],[-127.29403384601616,52.814874160414995],[-127.29421631950252,52.81473204623134],[-127.29440637442703,52.81459433140786],[-127.29461151485374,52.81446429560046],[-127.29482890813664,52.814339728341075],[-127.29504255024928,52.81421408122337],[-127.2952383100382,52.81408078528732],[-127.29540008360948,52.81393048689924],[-127.29552234446234,52.813763821055154],[-127.2955998460749,52.813592600951075],[-127.29559713131741,52.813411058040245],[-127.29561301483979,52.81323043063505],[-127.29562792556104,52.81304812822935],[-127.29564844412089,52.812866893682546],[-127.29569512583551,52.81269040950088],[-127.29578482736173,52.8125229728382],[-127.29592412653993,52.81236676157493],[-127.29609238429481,52.81221583444675],[-127.29626156235881,52.81206489688559],[-127.29640639783193,52.811907503001926],[-127.29652406497561,52.81174312817337],[-127.29663048181042,52.81157550605556],[-127.2967321948836,52.811406259033404],[-127.29683765481582,52.81123753538974],[-127.2969543649567,52.81107260569991],[-127.29707950985711,52.81090982429493],[-127.29720840345499,52.810748122118646],[-127.29734010708972,52.81058694463956],[-127.29747366981911,52.810426311327575],[-127.29760724640573,52.81026567768254],[-127.29774174344332,52.81010503368002],[-127.2978743817015,52.80994441005086],[-127.29800514430435,52.80978325105989],[-127.29812932794059,52.8096199140503],[-127.29825444720315,52.80945657549837],[-127.29838708151807,52.809295951222666],[-127.29852627531082,52.80913693094649],[-127.29867768936091,52.80898282344605],[-127.29884316412642,52.80883304341041],[-127.29901620290012,52.80868710676105],[-127.29919394524545,52.808543350443664],[-127.29937543616704,52.808400682118815],[-127.29955598932564,52.80825801490445],[-127.2997403228157,52.808116991240134],[-127.29991899895353,52.80797378827286],[-127.30007130600028,52.80781854804053],[-127.30015435157846,52.80764726253572],[-127.30016557696275,52.80746668521139],[-127.30011176755929,52.80728627242871],[-127.30019494609215,52.80711890375842],[-127.30031631765293,52.80695503920083],[-127.30045539658322,52.806793219922085],[-127.30059830696102,52.806634720467294],[-127.30075435847199,52.80648112335866],[-127.30093583514135,52.80633844346738],[-127.30113053590165,52.80620290650979],[-127.30133750520513,52.806073402190435],[-127.3015615352283,52.80595547246613],[-127.30180645645304,52.80585188130231],[-127.30206269492369,52.80575432410802],[-127.30231519802369,52.80565569592742],[-127.302547880081,52.80554719077198],[-127.30274843555273,52.805421117501815],[-127.30290742239312,52.8052725239329],[-127.30303712986112,52.80510856364059],[-127.30315180258981,52.804938601095564],[-127.30326467068107,52.80477090907583],[-127.30334859951591,52.80459849012717],[-127.30342598232319,52.80442445807405],[-127.30352299809893,52.8042547001413],[-127.30362466641529,52.80408544634695],[-127.30372822325721,52.80391672738691],[-127.30383084337713,52.803748027682424],[-127.30393065177955,52.80357879420607],[-127.30402578890103,52.80340849169831],[-127.30411253984533,52.80323716145613],[-127.30418153407565,52.80306266598422],[-127.3042318504956,52.80288501555276],[-127.30427749819393,52.80270685206919],[-127.30433623118988,52.80253079372088],[-127.30441449328355,52.80235563009192],[-127.30452647951667,52.802189623013696],[-127.30469754817676,52.80204201301917],[-127.3049272548602,52.801927940499326],[-127.30519051900752,52.8018482310592],[-127.30546806512953,52.80178013533591],[-127.30574085449794,52.80170817344794],[-127.30599630919552,52.801616219908226],[-127.3062307490078,52.80150545455754],[-127.3064422645645,52.80137420407633],[-127.30668273679446,52.80127849736595],[-127.3069743222331,52.80124386661824],[-127.30727399064543,52.80123099683868],[-127.30757064546398,52.80124058549251],[-127.30783443207548,52.800935576766705],[-127.30799522485965,52.800786399429064],[-127.30820226926859,52.8006613555547],[-127.3084470926581,52.80055607398443],[-127.30869866554502,52.80045911837128],[-127.30895889703343,52.80037215311139],[-127.3092220066502,52.80028795274491],[-127.30947749703412,52.80019767670053],[-127.30972889363694,52.800095116603735],[-127.30991271019819,52.80000003542396],[-127.30995479300734,52.799978834662305],[-127.3100072828355,52.79981236517065],[-127.30996199793852,52.79963857652149],[-127.3101897119569,52.7993698402856],[-127.31033821906496,52.79921406263873],[-127.31051878286385,52.79907418332299],[-127.31072282701194,52.798942452153966],[-127.31094198595798,52.798818953511194],[-127.31117445416854,52.79870539322532],[-127.31141755645717,52.7986051636274],[-127.31168267968741,52.79852653914424],[-127.31196019386965,52.79845842792051],[-127.31223197809658,52.79838477593144],[-127.31248648023897,52.798293383242495],[-127.31273138282396,52.79819145392567],[-127.31297245126729,52.79808619550751],[-127.31321544244219,52.797982600791734],[-127.31346612222363,52.797887886175445],[-127.3137379346927,52.79781535112214],[-127.31400969690354,52.79774169515131],[-127.31427670198636,52.797664173378095],[-127.31454368871638,52.79758608628625],[-127.31480873086933,52.7975052137865],[-127.31506986795219,52.79741822431919],[-127.31533492546085,52.79733791532933],[-127.31562054303987,52.79729156522003],[-127.3159164321708,52.79727759453807],[-127.31621259511273,52.79727203080444],[-127.31650976564597,52.79726926159502],[-127.31681129505034,52.797257467039316],[-127.31711198964766,52.7972484876573],[-127.31738554685506,52.797293056517816],[-127.31763016441434,52.79739342676641],[-127.31786962641334,52.79750730448058],[-127.31812516472178,52.79760026111181],[-127.31838606854136,52.79768644083965],[-127.31865148781979,52.79776864182813],[-127.31892044696824,52.79784463333652],[-127.31919465267518,52.79791048666665],[-127.31948658064618,52.797948110131344],[-127.31978023044822,52.797981795055136],[-127.32003907488509,52.79806126928357],[-127.32026571954842,52.79818089056809],[-127.32054504818923,52.798231547325564],[-127.32084041939613,52.798260726892366],[-127.32113051143241,52.79829893187266],[-127.32140565924156,52.79836476051333],[-127.32167016734853,52.79844696501216],[-127.32194889299333,52.79850827770193],[-127.32222577938562,52.79857016639921],[-127.32247954567033,52.798665375308964],[-127.32273501431325,52.79875552519381],[-127.32301367407216,52.79881459444712],[-127.32330387834405,52.79885671129245],[-127.32359309279913,52.798896605879975],[-127.32388411282574,52.7989347936452],[-127.32417662569028,52.79896119055169],[-127.32447337278631,52.798974097831994],[-127.32477071090833,52.79897634523397],[-127.32506673054387,52.798966277539655],[-127.32535950194195,52.798941109971715],[-127.32565103901408,52.79890587702509],[-127.32594160447076,52.79886952452151],[-127.32623423577348,52.798839881946854],[-127.32653105095613,52.798825318191],[-127.32682692987285,52.79881076426966],[-127.3271166596707,52.79877722486918],[-127.32740317773434,52.79873027099957],[-127.32768671010342,52.79867718110168],[-127.32797020449891,52.798622414161215],[-127.32825172149738,52.79856430638899],[-127.328530302552,52.79850119187397],[-127.32881389929561,52.798449784227294],[-127.32910769076207,52.798427958204705],[-127.3294085481175,52.79842399380748],[-127.3297034496033,52.79840775791637],[-127.32998432080734,52.79835861998588],[-127.33026199407861,52.7982960675346],[-127.33053662886698,52.798225702980304],[-127.33080640271677,52.79814866785462],[-127.33107325747017,52.79806718184284],[-127.33133441739126,52.7979818413641],[-127.33159925550399,52.797895328734086],[-127.33187053064064,52.797806509701054],[-127.33213040153184,52.79770996464197],[-127.33236386588604,52.797600277715794],[-127.33255492241769,52.79747145272826],[-127.33269798230606,52.797322997427464],[-127.33280804051783,52.79715866011547],[-127.33289645053999,52.796985045927286],[-127.33297540184876,52.79680649979678],[-127.33305809904458,52.796628466962396],[-127.33315489173732,52.79645587809439],[-127.33327983818722,52.796292491870425],[-127.3334376088622,52.79613938492979],[-127.33362080716277,52.79599719715642],[-127.33380662240283,52.79584937509784],[-127.3339971067533,52.795702620471474],[-127.33419814659622,52.79556695391573],[-127.33441845404808,52.79545292879728],[-127.33466298203273,52.79537112324596],[-127.33494204049616,52.79532423537189],[-127.33524327109141,52.79530343882902],[-127.33555339114585,52.79529934402581],[-127.3358572466327,52.79530260971023],[-127.33615195964204,52.795311027017775],[-127.33644613706032,52.795331770020425],[-127.33674057794079,52.79536092011138],[-127.33703332010471,52.795395137114795],[-127.33732515901092,52.79542991962795],[-127.33761344477179,52.7954703461584],[-127.33790011683821,52.79551807140164],[-127.33818590636055,52.795567491768594],[-127.33847343089892,52.7956129731746],[-127.33876550348327,52.79565559538608],[-127.33905757380074,52.795697651995475],[-127.33934786069833,52.79574253484105],[-127.33963183141418,52.795793093324754],[-127.33990769921536,52.79585158959061],[-127.34016285391033,52.79593106195452],[-127.34035674806822,52.796071194435335],[-127.34057045647579,52.79619148090873],[-127.34068583220147,52.79637510213577],[-127.34077533840428,52.79653380432677],[-127.3408866358971,52.79667600064815],[-127.3410611799188,52.79685053441994],[-127.34118652029437,52.797026195303296],[-127.34126072597253,52.79720019892708],[-127.34131365227898,52.797376687454424],[-127.34135269547367,52.79755502041337],[-127.34139366631868,52.79773556402766],[-127.34117288277453,52.79798187626584],[-127.34112453011105,52.7981578367015],[-127.34108274062123,52.79833597273185],[-127.34104655484039,52.79851460061339],[-127.34101221115557,52.79869320740585],[-127.34099183928247,52.79887277532459],[-127.34100211966148,52.799051992893226],[-127.34102540368238,52.79923161775856],[-127.34105627689054,52.7995047508018],[-127.34110462490882,52.79968353319682],[-127.3410542897115,52.799855597575025],[-127.34096592815767,52.80000007541473],[-127.34095000415493,52.80002548086089],[-127.34088583326383,52.80020050085987],[-127.34086174547991,52.800380111030655],[-127.34087851892943,52.8005592542333],[-127.34093608375406,52.80073568956877],[-127.3410241471999,52.80090729293237],[-127.34109835896044,52.801081296220886],[-127.34114295901131,52.801259000433944],[-127.34116254521632,52.80143867626712],[-127.34116539999042,52.80161853434905],[-127.3411543143246,52.8017979958077],[-127.34110786759112,52.801975619713374],[-127.34097354186652,52.8021357584833],[-127.34092058275934,52.80231289178193],[-127.34085920474689,52.80248844445496],[-127.3407351904529,52.80265182756593],[-127.34061868989167,52.80281735739093],[-127.34056569615935,52.80299393488313],[-127.34058529817989,52.80317416634843],[-127.34077814971738,52.803309826414115],[-127.34104180443748,52.803391997507575],[-127.34130903718942,52.803470208657345],[-127.34154036517758,52.8036177569263],[-127.3417359976516,52.80375281874003],[-127.34189957316772,52.80390226181298],[-127.34203560733694,52.80406267210795],[-127.34213119735186,52.80423643000365],[-127.34230919857313,52.8043722574172],[-127.34254586322618,52.80448219002542],[-127.3427862117847,52.80459152407156],[-127.34301926986055,52.80470486849505],[-127.34322032608102,52.804834826477574],[-127.34334444239845,52.80499984606026],[-127.34336315612272,52.805181207981434],[-127.34343629013146,52.8053501825439],[-127.34362202729399,52.80549488612885],[-127.34385778311525,52.8056053914308],[-127.3441300739358,52.80569585861493],[-127.34437657198441,52.805793354668275],[-127.34450181216668,52.80593482249007],[-127.34449298510182,52.80612658727367],[-127.34459711787619,52.806305849422316],[-127.34473899552026,52.806385489115485],[-127.3450293442267,52.80640009510863],[-127.34524151879317,52.806381406433935],[-127.34566654318391,52.806512155170935],[-127.34595896557998,52.8065043182948],[-127.34625759670976,52.80648688680443],[-127.34655100534005,52.806509855762314],[-127.34684293091647,52.8065451792219],[-127.34709754360877,52.80660502386639],[-127.34738180789994,52.806662285845775],[-127.34769314106536,52.806694012891214],[-127.34799072886106,52.80670236831688],[-127.34828421067172,52.80672757380726],[-127.34857351931433,52.806767962357135],[-127.34885202098923,52.80684882468253],[-127.34915091795244,52.806868926479034],[-127.3493805885298,52.80684498989001],[-127.34974422120725,52.80688508584799],[-127.35004009456325,52.80689793021266],[-127.35035171519327,52.8069094807619],[-127.35063100905796,52.80686815809411],[-127.3509365037123,52.80683269328794],[-127.35128453217234,52.80684942644668],[-127.35152018282761,52.80686744387379],[-127.35225193133685,52.80697166341709],[-127.35287392732808,52.80692582109715],[-127.35323978059307,52.80685995661054],[-127.35385145820167,52.80681087449924],[-127.35451101394597,52.806806626216655],[-127.35487186319635,52.806905013315394],[-127.35528906016565,52.80687610233393],[-127.35555790469525,52.80679845668388],[-127.35570829300602,52.806648212238706],[-127.3558367914067,52.806481398866936],[-127.35599644480176,52.80632992610923],[-127.35617301363334,52.8061849737195],[-127.35632233388876,52.80603025734644],[-127.35645470348352,52.80586844672011],[-127.35657392679522,52.80570230451191],[-127.35667262701733,52.805533592827224],[-127.35672092396106,52.80535762682968],[-127.35673746417169,52.805176414759934],[-127.35680440688793,52.805002474792474],[-127.35690586267731,52.80483261010093],[-127.35699051428773,52.80466070689278],[-127.3570592767684,52.804485615845415],[-127.357146720743,52.80431368017847],[-127.35726130073654,52.804147590724874],[-127.3574040121235,52.803990142486924],[-127.35755705285794,52.803835937085346],[-127.35769509025148,52.80367742166429],[-127.35782183934543,52.803514553289254],[-127.35795419545991,52.803352740708384],[-127.35810052446813,52.803191887078654],[-127.35817129799145,52.80302182015006],[-127.35818144759621,52.80284460893471],[-127.35816923368189,52.802664849944605],[-127.35814488593972,52.802483554587845],[-127.35811960227208,52.80230227003946],[-127.358100880738,52.802122595270916],[-127.35807754099291,52.801943529871075],[-127.35805232920272,52.80176448611458],[-127.35802897189683,52.801584855964286],[-127.35800561788825,52.80140579065968],[-127.35798040390169,52.80122619091751],[-127.35795519294224,52.80104714705688],[-127.35793461502219,52.8008674846475],[-127.35792056333561,52.800688311595806],[-127.35791576587162,52.800508475484605],[-127.35791466202929,52.80032746679183],[-127.35791909759935,52.800145838029486],[-127.35793211740453,52.79999997705131],[-127.35793566662362,52.79996575457905],[-127.35796810093058,52.79978772021805],[-127.35802482534703,52.79961445299462],[-127.35813657829138,52.79944783877499],[-127.35828480382428,52.79928863918349],[-127.35843966411822,52.79913385492417],[-127.35859627332124,52.798975678666096],[-127.35877460684073,52.798829023993385],[-127.35899109736238,52.79871331086585],[-127.35924666935706,52.798629093279544],[-127.35952320478712,52.79856143599996],[-127.3598073646742,52.79849985885094],[-127.36008763083692,52.7984327218864],[-127.36034878839027,52.798348993033805],[-127.36060019468005,52.79825080560586],[-127.3608428421128,52.79814038985126],[-127.361061869954,52.798017362269555],[-127.36124608094238,52.797880158174536],[-127.36138318508267,52.797722769100666],[-127.36149010579848,52.797550603086336],[-127.361587599668,52.797374618881165],[-127.36170113629946,52.79720629433495],[-127.36185242296106,52.79705658595747],[-127.36204996709137,52.79692987825025],[-127.36227581730445,52.796817412603254],[-127.36251960276326,52.79671370503403],[-127.3627728515917,52.796615491279454],[-127.36302891014866,52.7965178002592],[-127.36327923844865,52.79641570080048],[-127.3635144725641,52.79630592127233],[-127.36373167969269,52.796184586318226],[-127.36393558163725,52.79605388284873],[-127.36413001747154,52.79591767582991],[-127.36431686265634,52.79577651737526],[-127.3644999565821,52.79563428137063],[-127.36467931731794,52.79549153253373],[-127.36485301589109,52.79534604264777],[-127.36502294523197,52.79519891056751],[-127.36519002676127,52.79505013455365],[-127.36535616824742,52.794900813270324],[-127.36552326230645,52.79475203658032],[-127.36569410808022,52.79460489275019],[-127.36586590669586,52.79445830246103],[-127.36603674719444,52.794310602193676],[-127.36620290062211,52.794161835376855],[-127.36636155303539,52.79401091394839],[-127.36649388319725,52.793850211178395],[-127.3665868562794,52.793678758139244],[-127.36665181213685,52.7935025920154],[-127.36665063881375,52.79332102701874],[-127.36660563603616,52.793133803387065],[-127.36661037143573,52.792962257224126],[-127.36681078621821,52.79283943482036],[-127.36710050435568,52.79277889531389],[-127.36739407592196,52.79275193586531],[-127.36769047590259,52.79272606355958],[-127.36797596957504,52.79267845648469],[-127.36825737512365,52.79261969678376],[-127.36853203629968,52.792553160107154],[-127.36877396116752,52.792450581357954],[-127.36882967504079,52.79227619839639],[-127.36880811674472,52.7920959918824],[-127.36883669947257,52.791915765203306],[-127.36891289246239,52.791742819972754],[-127.369015225844,52.791574062009154],[-127.36912595764102,52.791406317802064],[-127.36924698413777,52.79124125993119],[-127.36938304461079,52.79108163070426],[-127.36953509589628,52.790928539757374],[-127.36970309899246,52.79078031067977],[-127.36988146471505,52.79063643479178],[-127.37006731409429,52.790494721886816],[-127.37025416971292,52.79035522965796],[-127.37046932675518,52.79022942169487],[-127.3706817227775,52.79010421048687],[-127.37082255283728,52.789949007075414],[-127.3709417296331,52.789784524736945],[-127.37105243138639,52.7896162227782],[-127.37116501022189,52.78944901960561],[-127.37129449438602,52.78928722297475],[-127.37144096195632,52.789134194498594],[-127.37170515350387,52.78885818033381],[-127.37184871425062,52.7887012577662],[-127.37201013720299,52.788550860206215],[-127.3721922387171,52.78840862247654],[-127.37237339990769,52.78826583052414],[-127.37253761497001,52.78811595543552],[-127.37266710804253,52.787954721851335],[-127.37274136782315,52.78778011923792],[-127.37282685743398,52.787608182793136],[-127.3729393520035,52.78743873681779],[-127.37308005400875,52.78727961319206],[-127.37327553996118,52.78714954636824],[-127.37351540382696,52.78704193275388],[-127.37376377362271,52.7869387114261],[-127.37398474345824,52.786821230324264],[-127.37411880729856,52.786658255572505],[-127.37417447392075,52.786483313677046],[-127.37420115538468,52.7863025420828],[-127.37421022334033,52.78612253276526],[-127.37421651390608,52.78594256493168],[-127.37421905804216,52.78576207605394],[-127.37421511123829,52.785581663202905],[-127.37420099629804,52.78540249032505],[-127.37417296701925,52.78522403639267],[-127.37411797341463,52.78504478643807],[-127.37402510651363,52.78487157547477],[-127.37386363340484,52.78473056122488],[-127.37365430628269,52.784603548613404],[-127.37342758422365,52.78448402942506],[-127.37322189778939,52.784354175741605],[-127.37304828185928,52.78421106081339],[-127.37306919797263,52.783995045015665],[-127.37335189160564,52.783920564823546],[-127.37357383687228,52.78380475845447],[-127.37374174374912,52.78365483775902],[-127.37389553749071,52.78349947778834],[-127.37403436610012,52.78334036539358],[-127.3741722582547,52.78318127274452],[-127.3743374043637,52.78303250429424],[-127.3745232746709,52.78289245963795],[-127.3747109854541,52.7827523930879],[-127.37488365905186,52.78260633323723],[-127.37505253170605,52.78245808490093],[-127.3752157760303,52.78230765158831],[-127.37536963170969,52.78215453043599],[-127.37551034333843,52.78199652379108],[-127.3756369601942,52.78183363388453],[-127.37575326755963,52.78166805809431],[-127.37586302974299,52.781500882125854],[-127.3759643903243,52.78133212777749],[-127.37605448782931,52.78116013389314],[-127.37614741312082,52.78098923656602],[-127.37625626911634,52.780822626700555],[-127.37640542800132,52.780667882231654],[-127.37657048441193,52.78051686950394],[-127.37669995714334,52.78035618640965],[-127.37679940401928,52.7801863237717],[-127.37689416243973,52.78001483924607],[-127.37700955739992,52.779849837528204],[-127.37715308660037,52.77969347225208],[-127.37730973616364,52.77954088021164],[-127.37747294347628,52.7793898877301],[-127.37763615270511,52.77923945092188],[-127.37779373449716,52.779086847199046],[-127.37793911464392,52.77893045907345],[-127.37806385678262,52.77876758803276],[-127.37817079228549,52.7785998776913],[-127.37827397500965,52.77843053450718],[-127.37838463976337,52.77826334500404],[-127.37851689415392,52.77810319173102],[-127.37866976596447,52.777948956206785],[-127.3788357573952,52.7777984847651],[-127.37900645028179,52.77764964356536],[-127.37917152201011,52.77749974732554],[-127.37932440753013,52.777346075592106],[-127.37945391441778,52.77718706531233],[-127.37954961243497,52.77701668792098],[-127.3796107045828,52.77683831549317],[-127.37964202309526,52.77665804258124],[-127.37964093666513,52.77648040159305],[-127.37960081737847,52.776302089956914],[-127.37954584528141,52.77612339706945],[-127.37950295006823,52.775945126990315],[-127.37946463398201,52.775765117219386],[-127.37946538631267,52.77558688958424],[-127.37950229142955,52.775407115759116],[-127.37956527357969,52.7752298328145],[-127.37966662599547,52.77506219519733],[-127.37981102873434,52.77490469472412],[-127.37997783466844,52.774751413894876],[-127.38014188049736,52.77459872123808],[-127.38028072961242,52.77444185038469],[-127.3803626308418,52.77427555288927],[-127.3803586953587,52.774096259339366],[-127.3803267547666,52.773912255981436],[-127.38032554183147,52.773731244545914],[-127.38033924734897,52.7735517432705],[-127.3803594418043,52.77337216558411],[-127.38041519212067,52.77320113629787],[-127.3804407372609,52.77301477030891],[-127.3804442804616,52.77283707436273],[-127.38040879097716,52.77265815211807],[-127.38035290266913,52.77248002593804],[-127.38027766352373,52.77230661997528],[-127.38014612936462,52.77214339954106],[-127.38000726222775,52.771983062963635],[-127.3799794349089,52.771811340516656],[-127.38004042720839,52.7716301616496],[-127.3799738067493,52.771349605831475],[-127.37997635849722,52.77116967067556],[-127.37999840938492,52.77099007092661],[-127.3800204783251,52.77081103585955],[-127.38002211264921,52.77063167635605],[-127.38000794521497,52.770451937892645],[-127.37998636902944,52.770272295573065],[-127.37996385731478,52.770092655274034],[-127.37994507599853,52.76991353596962],[-127.37993555678624,52.76973375167966],[-127.37993811198713,52.769554381216125],[-127.37994996182937,52.76937490133804],[-127.37996920230894,52.76919476952833],[-127.37999498233921,52.76901569056679],[-127.38002542737374,52.76883711262294],[-127.3800660903033,52.7686589703313],[-127.38011979878746,52.768482360240164],[-127.38017813919528,52.76830569557291],[-127.38023182882256,52.76812852964505],[-127.38027436435854,52.76795093005814],[-127.38031037514698,52.76777228636837],[-127.38034080313088,52.76759370837157],[-127.38036843622653,52.76741459832599],[-127.3803802836684,52.76723511815218],[-127.38037818667027,52.767055246179],[-127.380377009904,52.76687535438301],[-127.38037028074454,52.766695536906205],[-127.38035333681617,52.76651583070829],[-127.38032898794675,52.76633677659514],[-127.38030183017335,52.76615719957227],[-127.38027005846256,52.76597823280214],[-127.38023181706335,52.7657998981296],[-127.38018525393588,52.765622791243665],[-127.38011372088998,52.765448775990585],[-127.38001539551159,52.76527843870517],[-127.3799124930185,52.76510983203972],[-127.37980035204592,52.764943019812364],[-127.37969010078903,52.764776750154375],[-127.37959361617152,52.76460582589069],[-127.37951187010293,52.764431374430636],[-127.37943194398828,52.764255771638574],[-127.37934654188147,52.764083039896406],[-127.37924465588931,52.7639172273042],[-127.37908216481682,52.76377174748136],[-127.37882107476058,52.76367730189197],[-127.37853820946069,52.76362738212278],[-127.37824725476293,52.763585411918456],[-127.37795891070724,52.76353779693804],[-127.37768215272497,52.763475482607696],[-127.37742133826478,52.76338943282781],[-127.37716847122,52.76329096838627],[-127.37694293204845,52.76317592516494],[-127.37675382517435,52.763039712870416],[-127.37658749019127,52.76288979126265],[-127.37642295778,52.76273816244753],[-127.37623655537305,52.762599119847394],[-127.37599172870566,52.76249046161047],[-127.37576625117046,52.76237710123405],[-127.37567739060053,52.762211688658795],[-127.37561315994907,52.76203310133036],[-127.37547805422916,52.761872723737554],[-127.37531543923963,52.76172274769998],[-127.37513448571343,52.76157972081831],[-127.37495996311445,52.76143436749766],[-127.37479639850432,52.76128384591855],[-127.37462096119883,52.76113906774478],[-127.37442725731121,52.76100347053849],[-127.37422715769544,52.76087075468138],[-127.3740197480401,52.760742042773714],[-127.3738041588414,52.76061846585028],[-127.37357949117641,52.76050116424964],[-127.3733475464497,52.76038843100911],[-127.37311106157414,52.760278557187206],[-127.3728764004978,52.7601680966099],[-127.37264631499468,52.76005534022533],[-127.37238491993517,52.75995023121164],[-127.37222071965392,52.759808124607865],[-127.37204347755056,52.75966448461932],[-127.37187807116207,52.759513415625875],[-127.3716693592885,52.759372385138214],[-127.371500136319,52.75924714953673],[-127.37131614557958,52.75909574123409],[-127.37109419344215,52.75897559646816],[-127.37085597745022,52.75886965700855],[-127.37060873363097,52.75877111285271],[-127.37035605300044,52.75867710630591],[-127.37009974944486,52.75858539230051],[-127.36984348586482,52.758495354115254],[-127.3695835990281,52.758407599476946],[-127.36931106894315,52.75833120079266],[-127.36907757887141,52.75822744432512],[-127.36891309104307,52.75807580450621],[-127.36876874532364,52.75791551814664],[-127.36860988014249,52.75776549804744],[-127.36837273760266,52.75766345968021],[-127.36811464257363,52.757573439148544],[-127.36784925539943,52.75748798668362],[-127.36759026323462,52.75739909636411],[-127.36733491135388,52.75730792124954],[-127.3670804779306,52.75721617891606],[-127.36682601269824,52.757123871483614],[-127.36657156340823,52.75703156332012],[-127.36631981931001,52.75693698131261],[-127.36607344551263,52.756836166844714],[-127.36582168590927,52.756741028004434],[-127.36554926251569,52.75666741717289],[-127.36526330777414,52.756605737077585],[-127.36499373055874,52.75653377762519],[-127.36476202689963,52.756427194149246],[-127.36456340460342,52.756280985238405],[-127.36444581626435,52.75611534262657],[-127.36443574889279,52.75594508564563],[-127.36448574170768,52.755766848220134],[-127.36456349286851,52.75558603685126],[-127.36463484977054,52.75540867146566],[-127.36470723046605,52.755234091813406],[-127.36478706774096,52.75506054614752],[-127.3648659660874,52.75488644640805],[-127.36493557256415,52.75471246376441],[-127.36498467710402,52.7545353482014],[-127.3649872225677,52.754353735337624],[-127.36498140878722,52.75417166384601],[-127.36506868192431,52.75399858718975],[-127.365142154691,52.75382904280269],[-127.36529788857204,52.75367870707671],[-127.36549504310496,52.75354638763004],[-127.365733749413,52.75343712222804],[-127.36592319397836,52.75329592477191],[-127.36607782421726,52.75314000530457],[-127.36614385534648,52.75297053790056],[-127.36614830169228,52.75279002349347],[-127.36613780184668,52.752606885553035],[-127.36615894528899,52.752426176472],[-127.36626031397275,52.7522591036807],[-127.36643950462994,52.752116903848155],[-127.36663464993562,52.75198012210325],[-127.3668147044828,52.751836225755625],[-127.36697217001301,52.7516819486387],[-127.36712868161605,52.751527126449034],[-127.36730415594037,52.75138496850793],[-127.36753365910177,52.751278604194475],[-127.36780960643189,52.75120252625246],[-127.36805408924167,52.75109991364098],[-127.36827287313982,52.750977424560894],[-127.3684229486913,52.7508249174029],[-127.36854195392867,52.75065819234073],[-127.36872584732986,52.7505181755553],[-127.3689673008176,52.75040831501067],[-127.36920893220442,52.7503040473427],[-127.36930956131984,52.75014314949338],[-127.36938901151011,52.74995839541563],[-127.3694789975703,52.74978416209564],[-127.3695676095394,52.74962452526106],[-127.36961831393872,52.74944066283697],[-127.36975229531015,52.74927825379065],[-127.36992027732572,52.74913449326554],[-127.37013711891974,52.74900978129189],[-127.37039183313928,52.7489087296401],[-127.37066343501506,52.748842218517616],[-127.37095491945344,52.74881751201839],[-127.3712581778955,52.74881228708239],[-127.37155544268089,52.748794236787326],[-127.37183487590501,52.74874052598244],[-127.37210988208375,52.74866500448638],[-127.37236950427305,52.74857229316645],[-127.3726016980881,52.74846365408335],[-127.37276115041384,52.74831494963957],[-127.37288933501624,52.748145870295374],[-127.37308184964802,52.7480152772087],[-127.37331493728699,52.74790549628435],[-127.37356504627515,52.74780616832],[-127.3738246960989,52.74771457419365],[-127.37408636504668,52.74762856025758],[-127.37434995697085,52.74754420898922],[-127.3746173148053,52.747462045753366],[-127.37488947884677,52.7473848740013],[-127.37516380338839,52.74731720831806],[-127.37544034223954,52.747260715948386],[-127.37572647928525,52.74724278551767],[-127.37602643320541,52.747279615890704],[-127.37631543794309,52.74732217856124],[-127.37660194193518,52.7473737370445],[-127.37688671469883,52.74742867785375],[-127.37717220992143,52.74747744905963],[-127.37745997522067,52.7475104914229],[-127.37775238236283,52.74751434425656],[-127.37804858874928,52.747492362172906],[-127.37834459630245,52.747464221245686],[-127.37863892910501,52.74744170373568],[-127.3789322364724,52.747416399798496],[-127.37922555804354,52.7473910859885],[-127.37951895495463,52.74736857727102],[-127.37981445659375,52.747353333326544],[-127.38011015990408,52.747344802655974],[-127.38040591440216,52.747337400496136],[-127.38070844308237,52.74733887596004],[-127.38100805532683,52.74733646636663],[-127.38128493061839,52.74729060913309],[-127.38154299542171,52.74720798348412],[-127.38179216113744,52.74710864876502],[-127.38203833673025,52.74700318832267],[-127.38229045287059,52.74690885725036],[-127.38263982474146,52.7470106646498],[-127.38292099734475,52.747040408728125],[-127.38321787924774,52.747010568231964],[-127.3835068543053,52.746966239722404],[-127.38378899936222,52.74691134712232],[-127.3840720423345,52.74685532233153],[-127.38435728749997,52.746810479787634],[-127.38465544974605,52.746791829447176],[-127.3849503465564,52.74675808035963],[-127.38522051423057,52.74670612357977],[-127.385500225413,52.746661908572094],[-127.38573869689918,52.74654812006989],[-127.38594047593968,52.7464185075498],[-127.38608099458531,52.746259364043645],[-127.38623181568119,52.746103452188116],[-127.38640711354932,52.74595846845724],[-127.38658713084858,52.745816226351025],[-127.38677088967681,52.74567449562684],[-127.3869565420372,52.7455344280045],[-127.38714312806026,52.745394349008365],[-127.38734759644281,52.74526190425496],[-127.38755491122289,52.745131667209186],[-127.3877115241904,52.744982974959534],[-127.38781464591223,52.744815860744964],[-127.38789056940284,52.74463954540632],[-127.38795815244617,52.74446331981578],[-127.38800526210922,52.7442856598117],[-127.38802726541306,52.74410605536885],[-127.3880316367936,52.74392610379664],[-127.38802949042297,52.74374566447709],[-127.38803107178884,52.743565736944085],[-127.38804567362212,52.743386785016256],[-127.38807687766204,52.74320482965775],[-127.38812929526641,52.74301926025554],[-127.3882409646066,52.742858204575434],[-127.3884496364314,52.74274140029053],[-127.38872226515073,52.742651860116055],[-127.38899209990244,52.742561796442544],[-127.38917651035734,52.74244079479732],[-127.3891740680168,52.74225139156896],[-127.38917651002257,52.742069776713144],[-127.38917055823471,52.74188657551766],[-127.38916745080022,52.74170502641235],[-127.3891811488505,52.74152720567454],[-127.38925654105994,52.74136321617595],[-127.389481534876,52.741235572208325],[-127.3897049056522,52.74111466347491],[-127.3899188777273,52.74099051204703],[-127.39008483182353,52.74084450289951],[-127.39022348008791,52.74068593159587],[-127.39034991859347,52.74052302137789],[-127.39047536686219,52.74035844587629],[-127.39060929508027,52.74019768823969],[-127.3907760875453,52.740048870248266],[-127.39096261875623,52.739908219944155],[-127.39108537925375,52.73974647335577],[-127.39116318945626,52.73957180950704],[-127.39121117871137,52.73939301606795],[-127.39123860253935,52.739209427205935],[-127.39126136374018,52.73902532874432],[-127.39129726782512,52.738845557796765],[-127.39136130424306,52.73867554086207],[-127.39148815160584,52.73852551013402],[-127.39172191459143,52.738411208068406],[-127.39197818663713,52.738304475448],[-127.39222874797105,52.73819333545498],[-127.39246906025579,52.73808063087493],[-127.39256635634597,52.737934877726296],[-127.3924982000392,52.73775073851578],[-127.3924273609346,52.737569428914355],[-127.39240677848578,52.73739313546206],[-127.3924781319487,52.73721966799518],[-127.39256803363041,52.737046535956885],[-127.3926532875389,52.73687290310087],[-127.39270972984635,52.73669737085081],[-127.39271412052115,52.73651909462123],[-127.39268505350515,52.736338418325374],[-127.39265876079742,52.73615770005683],[-127.3926761515709,52.735979834164056],[-127.39278848303407,52.73581148369558],[-127.39295716346054,52.73566488123995],[-127.39313803191845,52.73552205226765],[-127.39332829948599,52.735383038859425],[-127.39352708281245,52.73524897238481],[-127.39373251228939,52.7351198660768],[-127.39394833337676,52.73499679624324],[-127.39416984130499,52.73487703],[-127.39439322385044,52.73475835294137],[-127.3946241292762,52.734642392629105],[-127.39473811843477,52.734383226715266],[-127.39482433298325,52.73421126621263],[-127.39491987003724,52.73404030655395],[-127.39498652771434,52.73386577199057],[-127.39500568918888,52.73368564245122],[-127.39501553837552,52.7335039379323],[-127.39505709815842,52.733328016277],[-127.39520851997717,52.7331642460469],[-127.39547829105915,52.733131324162834],[-127.39577681004094,52.733126646800265],[-127.39608507634095,52.733136424336195],[-127.3963851003912,52.73314966204033],[-127.39667773867461,52.73319213068768],[-127.39696779118876,52.73321221125075],[-127.3972580510996,52.73318184768254],[-127.3975468966915,52.733136372461644],[-127.39783556189407,52.733085850093225],[-127.39812438776305,52.733039808727185],[-127.39841271803556,52.73300722348062],[-127.39870045754466,52.7330133114989],[-127.39898632122238,52.733075475705185],[-127.39927503286958,52.733111259322],[-127.39957171510294,52.73310715019475],[-127.39986784746169,52.73308624219277],[-127.40000092255809,52.7330712009566],[-127.4001598487906,52.73305248785569],[-127.40044773732764,52.73300645193192],[-127.40072670421047,52.73294314336476],[-127.40098447987175,52.73285543647818],[-127.40121396354755,52.732725463822696],[-127.40144506346704,52.73261677764145],[-127.40170834542684,52.7326125066654],[-127.4019975504018,52.73269142828853],[-127.40229063330125,52.732719305783995],[-127.40259127620845,52.73269440917525],[-127.4028559518757,52.732619501481736],[-127.40309064547982,52.73250740621695],[-127.4033175491356,52.73238362971601],[-127.40355139372834,52.73227377650921],[-127.40381277951435,52.73221180097863],[-127.4041174609782,52.73222551899984],[-127.40441641420111,52.73223426528269],[-127.40471448830695,52.73224470719911],[-127.40501055727005,52.7322501238165],[-127.40530322977517,52.732237080882996],[-127.40558721449973,52.73218547443935],[-127.40587215511918,52.732134976738465],[-127.40616541134222,52.732111280438126],[-127.40646078322875,52.73209596933306],[-127.40675626172514,52.732083454000836],[-127.40705172521395,52.732070938101444],[-127.4073482337194,52.7320617716415],[-127.40764400673467,52.732058217837356],[-127.40793993069938,52.73205970110118],[-127.4082359618977,52.73206398909759],[-127.408532052121,52.73207051746542],[-127.4088274627359,52.73208434368618],[-127.40912302090898,52.73210264207937],[-127.40941769346934,52.73209405740514],[-127.40971085497206,52.73206754657206],[-127.41000067341955,52.73202427048658],[-127.41028974113578,52.73198659832096],[-127.41058274310679,52.73198363539056],[-127.41087918062031,52.73200024187768],[-127.41117549262147,52.73201348638406],[-127.41147450112193,52.732023890880654],[-127.4117658251844,52.7319979619642],[-127.41194108965811,52.73185630009916],[-127.4120504899487,52.73168627913642],[-127.41209750411986,52.731509172665],[-127.4121146787406,52.731326812320475],[-127.41212271521177,52.73114905474257],[-127.41217821464897,52.73100378750066],[-127.41221498081089,52.730825118573826],[-127.4122387111616,52.73064492091541],[-127.41225038151347,52.73046487759585],[-127.41223987094253,52.7302867785663],[-127.41214147982454,52.7301158995552],[-127.4121222300452,52.72992614069171],[-127.412258508757,52.729783818140305],[-127.41249800850181,52.72967780595012],[-127.41276479291783,52.7295837942622],[-127.41303388940023,52.72950320506638],[-127.41329175235238,52.72941995296455],[-127.41348291719245,52.72928257121654],[-127.41362697064076,52.729123348309564],[-127.41372154237179,52.72895406921245],[-127.41380017502638,52.72877937780634],[-127.41392087031198,52.72861482282385],[-127.41400145198591,52.728443470454714],[-127.41404751618315,52.72826580920198],[-127.41408983464721,52.72808707220794],[-127.41412846313466,52.72790894466594],[-127.41417267209023,52.72773130568599],[-127.41425515710173,52.72756105094819],[-127.4144436147128,52.72742650679493],[-127.41473133883797,52.727377074184496],[-127.41500359921828,52.72730877203604],[-127.41523933300239,52.727201678392724],[-127.41546351440576,52.72708182879642],[-127.41568677877429,52.72696255477415],[-127.41592794157539,52.726851475319314],[-127.4161700559873,52.72674093981538],[-127.41637648139877,52.726617384320896],[-127.41650959066695,52.72646388532954],[-127.41656287308871,52.7262805307987],[-127.41656152688397,52.726100078774074],[-127.41646945794346,52.725924086702086],[-127.41646640650255,52.725748138946926],[-127.41657657790772,52.72557418459071],[-127.41680859011825,52.72546713251376],[-127.4170741900129,52.72539442216111],[-127.41734727580348,52.72532330646909],[-127.41762231098332,52.72525552033037],[-127.41789447896805,52.72518497042071],[-127.41815986721994,52.725105534576514],[-127.4184267964478,52.72501711207158],[-127.41868138361376,52.72491987105646],[-127.41888945756752,52.724790130227895],[-127.4189257019367,52.72462491544862],[-127.41891419343408,52.724445707171604],[-127.41889154238068,52.72426606891905],[-127.4188680926415,52.72406234494779],[-127.41910196362575,52.723955830478246],[-127.41930821452678,52.72382722279589],[-127.41951349290842,52.723697514554964],[-127.41973380606294,52.723573784272205],[-127.41996164531957,52.723453325074026],[-127.42017824803114,52.723329638890604],[-127.42036582684881,52.72319789286213],[-127.4203849099779,52.72301831347571],[-127.42054072836844,52.7228796707747],[-127.42076397148573,52.72276038656101],[-127.4209939179534,52.72264774611491],[-127.42122669264477,52.72253675674452],[-127.42144049485432,52.72241253708903],[-127.42162971502118,52.722274608330636],[-127.42180855878028,52.72213120058406],[-127.42200533739498,52.72199710712488],[-127.42221342794987,52.72186903654723],[-127.42242248886687,52.72174207471443],[-127.42262774750517,52.7216123518711],[-127.42283395802774,52.72148318202395],[-127.42304393473155,52.72135620787755],[-127.42325956112913,52.721231406521824],[-127.42350098871975,52.72112983059861],[-127.42376439815591,52.721048163607406],[-127.42403454501964,52.72097370459387],[-127.42430562497866,52.7208992246263],[-127.42457964537674,52.72082975690573],[-127.42487319090569,52.720817783237315],[-127.42516340274878,52.7207890265139],[-127.4254450791794,52.720726754083906],[-127.42569029958298,52.72062792518701],[-127.42592596980869,52.72052080956095],[-127.42615967298411,52.72041035460798],[-127.4263905269376,52.72029769201223],[-127.42661947367633,52.720183931243234],[-127.42684931614339,52.720069038160474],[-127.4270791762133,52.719954709336626],[-127.42731002528733,52.719842044894165],[-127.42754372118257,52.719731587129324],[-127.4277821736339,52.71962498965273],[-127.42802541664919,52.719522825937865],[-127.4282753222953,52.719425620137486],[-127.42852809342362,52.71933117667031],[-127.42878281089708,52.7192395157004],[-127.42903848416961,52.71914896342427],[-127.42929701927264,52.719060617503025],[-127.42955845366792,52.71897559839179],[-127.42982282888838,52.71889559144509],[-127.4300930262254,52.718823350334354],[-127.43037000331228,52.718760002190784],[-127.4306518458474,52.71870331055878],[-127.43093473464405,52.718649977214206],[-127.43121854188769,52.71859662298317],[-127.43150425853992,52.718544930594085],[-127.43179431941853,52.71851224022198],[-127.43208801565204,52.71850528610089],[-127.43238393687248,52.71850895736391],[-127.4326809838078,52.71851877474989],[-127.43297717165667,52.718530843761],[-127.43327329942979,52.718540670895834],[-127.43357021523471,52.71854655988972],[-127.43386634734907,52.71855695042479],[-127.43415751526614,52.718584770978744],[-127.43444284535451,52.7186322741585],[-127.43472561380557,52.71868654259684],[-127.43501191706913,52.71873515341252],[-127.43530161321637,52.71877476345529],[-127.43558868679145,52.718818879700976],[-127.43586608059859,52.71887825101388],[-127.43613473713422,52.71895398683858],[-127.4363972335186,52.719039321060585],[-127.43665256034876,52.719132024239016],[-127.43689996804096,52.71923716326713],[-127.43714814556036,52.719337799633706],[-127.43740210873047,52.71941763169212],[-127.43769076206509,52.71937037190089],[-127.43791967379562,52.71925658897364],[-127.4381628715265,52.719153839463395],[-127.43841561952448,52.719059383604545],[-127.43867222430919,52.718969354565516],[-127.43893367720148,52.7188854349934],[-127.43919977499617,52.718802022685495],[-127.43946873903666,52.71872137237449],[-127.43974081042327,52.71865020668257],[-127.44001617818785,52.71859413690615],[-127.44053390557815,52.718631485724266],[-127.4407351795581,52.71849561838382],[-127.44094986241748,52.71837248090767],[-127.44118928365212,52.718268085484794],[-127.44143913333751,52.71817029576299],[-127.44168997652947,52.71807472615925],[-127.44194557776096,52.71798302516743],[-127.442203140999,52.71789410625754],[-127.44245111735879,52.717796328401164],[-127.44268762650273,52.71768804686945],[-127.44292127093337,52.71757755826473],[-127.44315111246635,52.71746431818145],[-127.44337807020709,52.717348306344604],[-127.44359936712529,52.71722900102086],[-127.44381495450189,52.717105837890074],[-127.44402109840159,52.71697719507435],[-127.44422059427943,52.71684414114681],[-127.44441817868298,52.71670943350857],[-127.44461671907918,52.71657583465286],[-127.44482096654495,52.71644609278083],[-127.4450346549908,52.71632182974074],[-127.44525399389072,52.71619974738808],[-127.44547994412152,52.716081501785645],[-127.4457106899367,52.71596823625246],[-127.4459491100679,52.715862166057924],[-127.4462067510101,52.7157765998125],[-127.44650656742805,52.71573142176037],[-127.44675984479372,52.71565374577523],[-127.44692563940232,52.71551157983443],[-127.44705813527213,52.71534460850031],[-127.44721137506798,52.71518746008859],[-127.44739669726162,52.7150472939218],[-127.44759517876521,52.71491201345992],[-127.44780411126838,52.71478444102216],[-127.44802924565745,52.71467012807053],[-127.44829443688567,52.7145883824582],[-127.44856436735468,52.71450994041895],[-127.44882294793057,52.714424912536934],[-127.44902618112509,52.71429348951463],[-127.44917297223192,52.714138103988084],[-127.44924671581025,52.71396120357838],[-127.4493917082394,52.713807516909405],[-127.44960338401917,52.713679351089354],[-127.44983977638039,52.71356881387321],[-127.45010625638893,52.71349825742662],[-127.4504050391104,52.71347830754718],[-127.4506993088755,52.71346176667385],[-127.4509244242515,52.71334688315374],[-127.45117141615394,52.71324854217423],[-127.45143846923779,52.71316788704726],[-127.45171541179477,52.713105043755995],[-127.45200234770009,52.71306393873017],[-127.45229531437569,52.713036200533246],[-127.4525892572058,52.713010135385666],[-127.45288010768668,52.71297514032506],[-127.45316984810546,52.71293455359793],[-127.4534497688872,52.712877838852236],[-127.45371893094274,52.71280443388966],[-127.45398412298654,52.712723795945635],[-127.45424930997079,52.71264260145909],[-127.45451837817308,52.712566953890544],[-127.45479527422376,52.712502982819785],[-127.45508113141217,52.712457399774344],[-127.45537421064827,52.71243358017594],[-127.45567091584547,52.712406907915636],[-127.4559625413459,52.71236741169039],[-127.45614623612714,52.71223509775245],[-127.45632110096652,52.712088321050594],[-127.45656816870743,52.71199277426316],[-127.45683516123724,52.7119104213896],[-127.45709932733652,52.71182699108723],[-127.45736253904744,52.711743007094654],[-127.45764653469877,52.71169743186977],[-127.45794038872144,52.71166911232667],[-127.45823332305977,52.71164080349517],[-127.45852920173652,52.71161750598628],[-127.45881911860077,52.711582507594095],[-127.4590816161203,52.711504689279934],[-127.4593265152237,52.71140019597388],[-127.45957626822972,52.71130235833307],[-127.45981554728317,52.71119624811827],[-127.46001508209993,52.71106653714586],[-127.46018522637641,52.710917571306204],[-127.46038179906031,52.71078284785244],[-127.46058494121756,52.710650283980705],[-127.46079186535206,52.71051991443625],[-127.46100641192656,52.71039561010734],[-127.4612305876735,52.71028183866604],[-127.46149303486897,52.71020290337203],[-127.4617804164031,52.710148308043834],[-127.46206219918048,52.71009266993538],[-127.46234697910027,52.71004315443285],[-127.46263275421492,52.709995867691525],[-127.462919543565,52.70995136545716],[-127.46320736233652,52.70990965650112],[-127.46349823620835,52.709875755279874],[-127.4637480284244,52.709779593827484],[-127.46397870704259,52.7096663006032],[-127.46420554764248,52.709549683085534],[-127.46444104141696,52.70944193342803],[-127.46470135546039,52.70935516182965],[-127.46498171131651,52.709284962061744],[-127.46525740623032,52.70921425498282],[-127.46550277567545,52.709124305739394],[-127.46566926779988,52.70897818397603],[-127.4657530964386,52.70880002439234],[-127.4657868899396,52.708623047166014],[-127.46579457957617,52.70844135694169],[-127.4658032460901,52.70826134037253],[-127.46580356514154,52.70808141932646],[-127.46581689112402,52.70790190036408],[-127.4658403833894,52.70772169809549],[-127.46586662855529,52.70754089636908],[-127.46590780995277,52.70736270548302],[-127.46597696671579,52.70718977797234],[-127.46608437056284,52.707023653127784],[-127.46621884442861,52.70686279388347],[-127.46636075364968,52.706702962274534],[-127.4664886741348,52.70654049883314],[-127.46658856578338,52.70637166961496],[-127.46666883273424,52.70619803738027],[-127.46673139034638,52.706021820078014],[-127.46677815005391,52.70584468866937],[-127.4668044623835,52.705665562544105],[-127.46681868352901,52.70548547590482],[-127.4668282639872,52.70530543842074],[-127.46683787854502,52.70512596544616],[-127.46684283375278,52.70494599483806],[-127.46684687399646,52.70476659166518],[-127.46685738814159,52.70458654238852],[-127.46687814037267,52.70440749471939],[-127.46690164530085,52.7042278475681],[-127.46691865682305,52.70404828175805],[-127.46691900533494,52.70386892473087],[-127.46690359534384,52.703689765155],[-127.46688075388099,52.70351013371989],[-127.46686161902433,52.703330464781615],[-127.46685452140701,52.70315063601636],[-127.46685670417116,52.70297069990556],[-127.46686815629143,52.70279120361141],[-127.46688978799675,52.70261101476835],[-127.46690858995966,52.702429184409176],[-127.4669338698743,52.70224727284233],[-127.4669769186228,52.702070187346635],[-127.4670498982337,52.701900564414544],[-127.46722577554839,52.70175880550734],[-127.46742870002402,52.70162174705947],[-127.46757725290135,52.70146686966904],[-127.46771640554873,52.701308191064996],[-127.46785085532728,52.70114732932645],[-127.46798437020782,52.700986479128105],[-127.46812071389311,52.700827279186676],[-127.46825799013737,52.7006680583913],[-127.468396199545,52.70050883466627],[-127.46853347374342,52.70034961351362],[-127.46867166627501,52.700190389615145],[-127.46883290287647,52.700000045530494],[-127.46891847768117,52.69990088335127],[-127.46893468374549,52.699752157532565],[-127.46895818619286,52.69970758025751],[-127.46896212981451,52.699660450528164],[-127.46933478026533,52.69944615400001],[-127.46953690705018,52.69931358530912],[-127.46973719453365,52.699181039337255],[-127.46993557460856,52.69904739599062],[-127.47013020497458,52.69891212242242],[-127.47031918343869,52.69877466861502],[-127.47047515157949,52.69864716183184],[-127.47054276915152,52.69856504725062],[-127.47057131762938,52.698452027661965],[-127.47076165039955,52.69819181543487],[-127.47078607402197,52.69801271992231],[-127.47074476815952,52.69783556233004],[-127.47066739823114,52.69766054378506],[-127.47055788640486,52.697494340704516],[-127.47039783931548,52.69734109399001],[-127.47030213628317,52.697171910292795],[-127.47023399934132,52.69699621943735],[-127.47017972735416,52.69681922444043],[-127.470143887388,52.696639199962455],[-127.47016651325904,52.69646124795502],[-127.47023832537732,52.696285475977355],[-127.47031569512362,52.69610963410928],[-127.47035597111557,52.695933137213736],[-127.47033784007428,52.6957562530926],[-127.47028542194596,52.69557923472066],[-127.4702200162029,52.695401823463364],[-127.47016478918141,52.695223728297755],[-127.47013827164649,52.69504526349537],[-127.47013396747288,52.6948659636421],[-127.4701435319214,52.694685933559704],[-127.47015866881269,52.69450582448652],[-127.47017287214278,52.694325736082874],[-127.47019912928243,52.69414605223],[-127.47026635166041,52.693971458529354],[-127.47038000919281,52.69380020025496],[-127.47041869952172,52.69363156969514],[-127.47026952887309,52.69347034816307],[-127.4700839844518,52.69332975172057],[-127.46990928335572,52.693180616053716],[-127.4697593939076,52.69302556370882],[-127.46963333946667,52.69286293007982],[-127.46952103824209,52.69269619575729],[-127.46943268247574,52.692524676805206],[-127.46935997061493,52.69235015446552],[-127.4693325439016,52.692172265579],[-127.46932631391616,52.69199074764463],[-127.46925368061223,52.69181847510217],[-127.46909277899321,52.69166635803241],[-127.46886376148176,52.69155433843433],[-127.46862468317661,52.69144636354407],[-127.46841281760355,52.69132123225448],[-127.46820546189863,52.69119268111269],[-127.46797583097094,52.691035819960575],[-127.46777758264372,52.69090211396959],[-127.46758936300009,52.690763789052994],[-127.46742028151299,52.69061626510729],[-127.46727680504493,52.6904583222285],[-127.4671562866611,52.690294495484316],[-127.46706603962565,52.69012187739451],[-127.46702475676649,52.689944717543476],[-127.46700102265457,52.68976566070479],[-127.46698559835284,52.68958594367122],[-127.46697294514017,52.689406182909146],[-127.46695658292434,52.689225912622305],[-127.46692633952006,52.689046381291206],[-127.46691742996161,52.6888676944984],[-127.46696046079703,52.68869004249586],[-127.46702299193811,52.68851383191602],[-127.46708366985266,52.68833763554192],[-127.4671415615699,52.68816148300977],[-127.46720038610792,52.6879853097581],[-127.4672592104691,52.687809145419784],[-127.46712476264774,52.687454919808076],[-127.46706589242413,52.68727798915652],[-127.46704038827556,52.687101752143626],[-127.46705836438616,52.68692329301394],[-127.46711331027471,52.68674212840098],[-127.46720276154818,52.68656725688574],[-127.46732884347338,52.6864070634763],[-127.46751315236551,52.68626967101195],[-127.4677396292512,52.68614633085042],[-127.46796331442388,52.68602246027963],[-127.468136428997,52.68588296525336],[-127.46820280946679,52.685711189170874],[-127.4682270206517,52.68552536060967],[-127.46828673677341,52.685348619207126],[-127.4683529621122,52.685172361030496],[-127.46843134897422,52.68499930410327],[-127.46853588279701,52.68483265371639],[-127.46868337785023,52.68467554371838],[-127.46885436363875,52.68452823630662],[-127.46903651915537,52.684382465348776],[-127.46925572624811,52.68426368809998],[-127.46950938303993,52.684176429885554],[-127.4697772691864,52.68409908109178],[-127.47005281342919,52.68402892624308],[-127.4703303625773,52.68396322045063],[-127.47060802663002,52.68390088442138],[-127.47088869141025,52.6838452268542],[-127.47117322898805,52.68379401275872],[-127.47145784717593,52.68374559489074],[-127.47174341733185,52.68369772034815],[-127.47203171493129,52.68364813381212],[-127.47232185520978,52.68362542668061],[-127.47261050669955,52.683667197903766],[-127.47289313083972,52.68372248698522],[-127.47317222062648,52.68378231274496],[-127.47345570264912,52.68383534773758],[-127.47374508253064,52.6838715021572],[-127.47403864542513,52.68386723921971],[-127.47433447792821,52.683848383280655],[-127.47462935721086,52.683828973633986],[-127.47492442456992,52.68381460076007],[-127.4752194963694,52.683800792053596],[-127.47551448642295,52.683784185684495],[-127.47580737720652,52.683760870245514],[-127.47609397283,52.68371577900727],[-127.47638343547665,52.68367345779692],[-127.47667480755447,52.683632788739054],[-127.47696369197398,52.68362745651145],[-127.47724899151707,52.68367934741872],[-127.47753845056505,52.683717724467364],[-127.47783604528959,52.683722933825905],[-127.47813270657808,52.683728154220766],[-127.47841311867649,52.68377281324648],[-127.47867825013915,52.68385746375552],[-127.47896613037607,52.68390370406535],[-127.47925828607448,52.68391234149536],[-127.47954170619695,52.683856072196534],[-127.4798066703371,52.6837753742011],[-127.48009703285292,52.68370556404161],[-127.48033293141778,52.6837485396288],[-127.48049779928793,52.683907873850494],[-127.48065961143556,52.68405939969104],[-127.4807508387168,52.68423256110321],[-127.48088371837724,52.68437772693251],[-127.48116332715811,52.684452090922974],[-127.48144241843337,52.68451189711636],[-127.48173100693299,52.684551395887425],[-127.4820245712466,52.684574025288846],[-127.48232063055195,52.684588210561],[-127.48261603491962,52.68458390283054],[-127.4829106564938,52.68458353216784],[-127.48320416327627,52.6846044734043],[-127.48350050150374,52.684600160571506],[-127.48379847819287,52.68458965636661],[-127.48409553602833,52.68457916305569],[-127.4843918736801,52.68457483900175],[-127.48468495375798,52.68458345122459],[-127.48497405657078,52.684611169763],[-127.48525825932877,52.684657450360454],[-127.48554094520293,52.684713829338754],[-127.48582370511735,52.68477189264768],[-127.4861080894882,52.68482377377003],[-127.486396723289,52.6848643815077],[-127.4866861358626,52.68490050371165],[-127.48697640911512,52.684934928320686],[-127.48726662429921,52.684967667006106],[-127.48755773933469,52.68499983753289],[-127.48784974940678,52.685030874983745],[-127.48814082186983,52.68506136763172],[-127.48843283278407,52.68509240362634],[-127.48872392990874,52.68512400652739],[-127.48901508155836,52.6851567379588],[-127.48930631611213,52.685192265570926],[-127.4895976632634,52.6852305889859],[-127.48988809704755,52.68526948828311],[-127.49017939174259,52.68530669892091],[-127.49047062344226,52.68534165872162],[-127.49076166540384,52.68537158031168],[-127.49105344621793,52.685395886886184],[-127.49134495417593,52.685412349380854],[-127.49163879942525,52.68541589461173],[-127.49193484944354,52.68540315235051],[-127.49223131035937,52.68537583140196],[-127.49252460933819,52.685337340262606],[-127.4928102056094,52.685290534842714],[-127.49308386751508,52.68522034945631],[-127.49334426515261,52.685115017440346],[-127.49360010165537,52.68501198499866],[-127.4938610096348,52.68494812143793],[-127.49414171467407,52.68494733523263],[-127.49444344027255,52.68499112795045],[-127.49473159988206,52.68507095551643],[-127.49496889527198,52.68518002168212],[-127.49514865541225,52.685312807107145],[-127.49530034465691,52.68546444263656],[-127.49543575587248,52.68562749578471],[-127.4955648734214,52.68579623410126],[-127.49569669954437,52.68596269569168],[-127.49584305129474,52.68612055962268],[-127.49602116154442,52.68625896968549],[-127.49628816094737,52.68634299193809],[-127.49654433652704,52.68643499886492],[-127.4967234276942,52.686575072311406],[-127.49687805474613,52.68673115212479],[-127.49704816086039,52.68687918685593],[-127.49722824772464,52.68702092377531],[-127.4974120062001,52.68716205742934],[-127.49759578070555,52.68730319059169],[-127.49777138998364,52.68744947686174],[-127.49794335439543,52.68759748650961],[-127.49812528478651,52.68773919845665],[-127.49833259593524,52.687864335457036],[-127.49857247158113,52.687967200497134],[-127.49883137394453,52.68805748163373],[-127.49908846456641,52.688148915360706],[-127.49933563048303,52.688247757562486],[-127.49958461532941,52.688346010968225],[-127.49984069221945,52.6884346491328],[-127.50010850904037,52.68851473340291],[-127.50038671466586,52.68857394130857],[-127.50067965740043,52.688604370170324],[-127.5009804921724,52.68862181032063],[-127.50127772077263,52.688642102892885],[-127.50156079819102,52.688681623946145],[-127.50182844274782,52.688756657657045],[-127.50208067452597,52.68886775988054],[-127.5022890985757,52.688997924590815],[-127.50236111294542,52.689148887969175],[-127.50228893884409,52.68933646172082],[-127.50227855761518,52.68951595129522],[-127.50228763905396,52.68969574699389],[-127.502303211875,52.68987546830306],[-127.5023243418912,52.69005510927899],[-127.502352862452,52.6902340993461],[-127.502384208694,52.69041417408652],[-127.50241012071187,52.69059824646781],[-127.50245995304745,52.69077696283853],[-127.50256848055345,52.690938666917276],[-127.5027220291789,52.691089147990496],[-127.50289488031761,52.691234897066494],[-127.5030851667729,52.691375938045425],[-127.50328729174299,52.69151122176501],[-127.50349849869744,52.691640783580304],[-127.50371316103879,52.69176357476657],[-127.5039395784591,52.69187781166495],[-127.50417593742827,52.691984629526104],[-127.50442048865621,52.69208741370521],[-127.50466775355935,52.69218848551111],[-127.5049140812261,52.69228901285107],[-127.50515682279989,52.692392939762414],[-127.50527247305999,52.69265096258992],[-127.50534274221201,52.692831091780626],[-127.5054185060447,52.693008917251014],[-127.5055125054724,52.69317865227867],[-127.50563481473468,52.69333625725588],[-127.50580005782611,52.69347593906449],[-127.50601369881963,52.69359537629849],[-127.50626113389107,52.69370092650567],[-127.5065221962191,52.693798453953605],[-127.5067795150513,52.693894908050375],[-127.50702852519505,52.6939920245852],[-127.50728020953369,52.69408630820334],[-127.50753548187598,52.69417718214549],[-127.5077934479191,52.69426577888492],[-127.5080541224598,52.69435209821341],[-127.50831471909342,52.694436176023686],[-127.50857714981484,52.69451967361693],[-127.50883954175097,52.694602041187416],[-127.50910376776089,52.694683828524916],[-127.50936705626572,52.69476507136157],[-127.50963216369635,52.69484572518055],[-127.50989724742617,52.69492525773805],[-127.51016325106491,52.695004777833695],[-127.51042923576613,52.69508373260614],[-127.51069520183552,52.69516213101926],[-127.51096206819149,52.69523996120976],[-127.51122893040285,52.69531722588226],[-127.51149581831918,52.695395610598204],[-127.51176364096796,52.69547398264013],[-127.51203148422762,52.69555290981543],[-127.51229932879151,52.69563184533725],[-127.51256713443478,52.695709650814436],[-127.51283583553128,52.695786332104845],[-127.51310541660938,52.69586187146672],[-127.51337491972984,52.695935178240696],[-127.51364617727556,52.69600565478934],[-127.5139173564599,52.69607388977974],[-127.51419025034605,52.69613817406671],[-127.51447984902285,52.696150685643744],[-127.51478116775719,52.69612772959106],[-127.515148833725,52.69606804262424],[-127.5154364088742,52.69602339927006],[-127.51572306479761,52.69597877607273],[-127.51600968530221,52.69593358765093],[-127.51629528687846,52.69588560479322],[-127.51657893602977,52.69583484857037],[-127.51685965405436,52.695779645730504],[-127.51713637316212,52.695716647203774],[-127.51740816940506,52.69564530899],[-127.51767793313014,52.69556894760443],[-127.51794580347462,52.6954914891601],[-127.5182156247213,52.69541680273905],[-127.51848938918044,52.69534879935371],[-127.51876719586807,52.69529026668722],[-127.51905193093573,52.69524397418273],[-127.51934160780553,52.69520658464851],[-127.51963331567339,52.69517420793764],[-127.51992600185889,52.69514350373964],[-127.52021772890977,52.69511169028369],[-127.5205074038664,52.69507429786116],[-127.52079402808675,52.69502909750432],[-127.52107959851912,52.69498054719526],[-127.52136508866167,52.69492975526492],[-127.52164862605747,52.69487619005229],[-127.5219301705043,52.69481872214631],[-127.52220784951912,52.694756819908754],[-127.52248162318236,52.694689362905066],[-127.52274864508202,52.69461470224224],[-127.5230077323025,52.6945250154656],[-127.52325514970512,52.69442035123717],[-127.52348558770271,52.69430693068381],[-127.52368124512073,52.69417995470307],[-127.52376199723714,52.69400123239694],[-127.52355868083366,52.69373091611875],[-127.52344295725999,52.693551944678845],[-127.52346209340476,52.69338635536264],[-127.52359834597698,52.69323100717567],[-127.52377744087704,52.69308126189597],[-127.52398098223209,52.692941851774464],[-127.52419342472369,52.692818019083944],[-127.52442954910445,52.692708450264725],[-127.52468468201009,52.69261265005652],[-127.52494863630692,52.69253017714174],[-127.52521954015873,52.692460508821675],[-127.52550011043965,52.692402488654544],[-127.52578655176528,52.692352794142785],[-127.5260750298587,52.692308677273374],[-127.52636591387758,52.692279657088804],[-127.52666387366389,52.692267367582474],[-127.52694975855967,52.69222832230464],[-127.52722841231942,52.692168636982714],[-127.52750307537057,52.69210060018254],[-127.52777676356723,52.69203144549851],[-127.52805336239794,52.69196618008154],[-127.52832900153258,52.69189980554646],[-127.52860768621568,52.691840681446635],[-127.52889639804317,52.69180328037672],[-127.52919136213207,52.691784853619936],[-127.52948647126954,52.69177090815784],[-127.52978165493232,52.69175863796752],[-127.53007676369685,52.69174469101678],[-127.53037188708925,52.69173074312806],[-127.53066693553723,52.691715118479564],[-127.53096092452016,52.691695579013576],[-127.53125267983143,52.69166541419092],[-127.5315403692705,52.69162522194784],[-127.53182693854545,52.691579429757866],[-127.53211357290658,52.69153588694343],[-127.53240532631763,52.69150571924426],[-127.53269195419952,52.691461610105065],[-127.53297450057364,52.691407464848965],[-127.53325508816803,52.69134998160552],[-127.53352782893924,52.691280834635236],[-127.53379759646559,52.691206112085],[-127.53407618878128,52.6911447340166],[-127.53432670681723,52.69105008480081],[-127.53456666654874,52.69094549357108],[-127.53480751826518,52.690839760173006],[-127.53504826851473,52.69073122960349],[-127.53530571534654,52.69064882714359],[-127.53559548743033,52.69061531439805],[-127.53589209736934,52.69059180903795],[-127.53587517035545,52.690791566946594],[-127.53585633937499,52.690963881143716],[-127.53585751502932,52.69115163552967],[-127.53592005821378,52.69131951872732],[-127.53599439519722,52.69150574784699],[-127.53608004308586,52.69167165067774],[-127.5362242797789,52.691843510261094],[-127.53636514308853,52.691998599151354],[-127.5365537109078,52.69214017466063],[-127.5367458238412,52.69227721040251],[-127.53694341550016,52.692411940874486],[-127.53714733848113,52.6925420949425],[-127.53735759855768,52.69266824644366],[-127.53757604828503,52.692790371005124],[-127.53780260138574,52.69290565379815],[-127.53803389533623,52.69302368080368],[-127.53826704860627,52.69314224789725],[-127.53850899733817,52.69324723810274],[-127.5387628736601,52.693323490320175],[-127.53904946728635,52.6933298105809],[-127.53935497411183,52.69329552585185],[-127.53965147417007,52.69326808473236],[-127.53994693954658,52.693237858488146],[-127.54023194757016,52.693252043621335],[-127.54050440792801,52.69332916850251],[-127.54076693461725,52.69341370547239],[-127.54102229432334,52.69350507112507],[-127.54126867422666,52.693604392432945],[-127.5415069736002,52.693711110565296],[-127.54173987257938,52.693821827302415],[-127.54196375709013,52.69393994428664],[-127.5421822005769,52.694060930532025],[-127.54239250329361,52.694187637567865],[-127.54257841511841,52.69433203653729],[-127.54275707367563,52.69448044979848],[-127.54296860664132,52.69458975981583],[-127.54327439220066,52.694588534887046],[-127.54356948600511,52.69459921605467],[-127.54386572095419,52.694616042371855],[-127.5441520476193,52.694666072279496],[-127.54439107165186,52.69476661412943],[-127.54452673963961,52.6949307298611],[-127.54454059826497,52.69510933991382],[-127.54433856754683,52.6952381215006],[-127.5441741692873,52.6953820910373],[-127.54417499740154,52.695559195989404],[-127.54441593962854,52.69566138948147],[-127.5447066355677,52.69570407851199],[-127.54497898344945,52.695777831686236],[-127.54520907543784,52.695887448732464],[-127.5454094764547,52.69602156308556],[-127.54560709226745,52.69615571388149],[-127.54580106476344,52.69629159843158],[-127.54598237285387,52.696436052865685],[-127.54616091575491,52.696581099560426],[-127.54638272605006,52.69669195369742],[-127.54666394187976,52.696754375990615],[-127.5469415689657,52.69681964303219],[-127.54721565902608,52.69689000510511],[-127.54749402466955,52.69695022113403],[-127.54778662762254,52.69696821571344],[-127.5480786208965,52.6969951765549],[-127.54836972161371,52.69702327843506],[-127.54866646308767,52.69702775526445],[-127.5489615954844,52.69703898752776],[-127.54925784414137,52.69705524423115],[-127.54955261151132,52.697056381987686],[-127.54984115780657,52.69701389184295],[-127.55008312245644,52.69691316158996],[-127.55030864052918,52.696793591877444],[-127.55053234520943,52.69667516671585],[-127.55074941451049,52.69655290107702],[-127.55095418366287,52.69642351606805],[-127.55113814570123,52.69628264054406],[-127.55130702086576,52.69613467376634],[-127.55146274313677,52.695981832139246],[-127.55161752522142,52.69582844672854],[-127.55177980378205,52.69567776864377],[-127.5519439483652,52.695527056591324],[-127.55209406786653,52.69537317627587],[-127.55220389955957,52.695207490218635],[-127.55227817958003,52.695032195631875],[-127.5523655342171,52.69486008154666],[-127.55245569498982,52.69468849512225],[-127.55256271168851,52.69452173392858],[-127.55271469821673,52.69436838387932],[-127.55288447361308,52.694219837538775],[-127.5530289255521,52.694063224024234],[-127.55316773733684,52.69390444317203],[-127.55330652792665,52.6937451063942],[-127.5535539894819,52.69356694703658],[-127.55379774317709,52.6934656197669],[-127.55405490580544,52.69337588880448],[-127.55431882871434,52.693293914413424],[-127.55458568480776,52.69321638441318],[-127.55484866666082,52.69313386528067],[-127.5551077644258,52.69304690421538],[-127.55537467308076,52.69297049265778],[-127.5556611706408,52.69292353086564],[-127.55594619876834,52.69286145001479],[-127.55620547039923,52.692778968111476],[-127.55642105889405,52.69266792974394],[-127.5565504888878,52.69250646231019],[-127.5566609447858,52.69233292513496],[-127.55679690483947,52.69217249149829],[-127.55699613851243,52.69204485462792],[-127.55724445310919,52.69194178216403],[-127.55750241613207,52.69184922569727],[-127.55776534859815,52.69176613542487],[-127.55803503641651,52.691690245551584],[-127.55830282967256,52.69161325030591],[-127.55856099271082,52.69152630270591],[-127.55880571795217,52.69142663759147],[-127.55904466002276,52.69132087903394],[-127.55927977385494,52.69121181695754],[-127.5595129520587,52.69110052922168],[-127.55974612937695,52.69098924997647],[-127.559981198447,52.69087905705164],[-127.56021919548567,52.690772752561585],[-127.56046289724341,52.690670855476505],[-127.56071233339382,52.690573365366404],[-127.56096655552312,52.69048029484703],[-127.56122466546147,52.690392220853674],[-127.561487602027,52.690309677881466],[-127.5617592900031,52.69023823643867],[-127.56204365877505,52.69018399604749],[-127.562331513447,52.690149321376055],[-127.56262857713166,52.69016385585506],[-127.56320975805299,52.69019364255005],[-127.56349398559264,52.6902374922391],[-127.56378736571658,52.690252629019476],[-127.56407342023203,52.69029532293287],[-127.56436379209897,52.69032955544092],[-127.56464565996902,52.690384643877174],[-127.56490543017901,52.690469164122284],[-127.56515457279731,52.690566721899806],[-127.56542535755322,52.69064829567955],[-127.56566717453693,52.69074819237539],[-127.5658491991013,52.69088588158556],[-127.56601042072228,52.69103730087495],[-127.56616531086841,52.69119273265382],[-127.56633021905974,52.69134353718026],[-127.56652146971234,52.691479980865715],[-127.56673189310966,52.69160832057623],[-127.56692678401636,52.69174247287722],[-127.56709992348429,52.69189036810393],[-127.56724841151829,52.69204812617934],[-127.56734071382252,52.69221503957272],[-127.56736303670745,52.692394656139825],[-127.56737248925164,52.69257669602136],[-127.56762260101449,52.692852474154726],[-127.56781367217215,52.69298331315557],[-127.56807366961051,52.69307342845432],[-127.56831562961409,52.69317668085413],[-127.56851877963787,52.693308477849286],[-127.56870741846866,52.69344888097021],[-127.5688576265226,52.69360268596164],[-127.56892146239882,52.69377670564553],[-127.56895219856018,52.693957895008786],[-127.56894504100413,52.69411660745524],[-127.56874742986719,52.694262744001946],[-127.56849342815482,52.69436199811595],[-127.56823626364275,52.69445064009469],[-127.56797429495246,52.6945348618718],[-127.56824657268011,52.69460575536874],[-127.5685170959464,52.694678922714104],[-127.56878953973705,52.6947542967225],[-127.56902681054369,52.694855933532544],[-127.56918991098847,52.69500732319742],[-127.569331047711,52.69516628913933],[-127.56947218581024,52.69532526385746],[-127.56960416422162,52.695487159251485],[-127.56971588759482,52.6956526891465],[-127.56980556452257,52.695823554633414],[-127.56988054434399,52.695997989136806],[-127.56994263783315,52.6961748294604],[-127.5699927174491,52.69635239587816],[-127.57002518940672,52.696530198460536],[-127.57002156749243,52.69670960619984],[-127.57000224596071,52.69689034551226],[-127.56999124855484,52.69707041712308],[-127.56997198821092,52.69725283256902],[-127.56995087529103,52.6974352818051],[-127.569938964127,52.69761592160964],[-127.56994916265126,52.69779290184009],[-127.57001276262982,52.697960197780894],[-127.57019516065067,52.69810684309835],[-127.57036660179759,52.69825755413635],[-127.57053171677559,52.69841284275316],[-127.57069962511746,52.69856864966339],[-127.57085276825684,52.69872577549119],[-127.5709707766939,52.698885614685835],[-127.57102405514392,52.699049120603206],[-127.57094609848728,52.699223364861766],[-127.57081438264478,52.69939720056434],[-127.57067287296233,52.69955715958515],[-127.57051260198361,52.69971064418476],[-127.57044197120541,52.699882547703965],[-127.57040735718961,52.70000015133338],[-127.57038925753429,52.70006261372507],[-127.5703459103346,52.70024535202883],[-127.57031928003028,52.70042899597781],[-127.5703166132584,52.70060894646352],[-127.5703452195852,52.70078231640087],[-127.57043368256811,52.700944794325665],[-127.57059402442776,52.701096218800124],[-127.57078297150126,52.701243896213164],[-127.57095538777955,52.70139572313951],[-127.57107368595308,52.701562840117326],[-127.57115450695748,52.70174447689133],[-127.5712516144534,52.70191525004607],[-127.57141869566317,52.70204808207799],[-127.5716711122607,52.70213157446644],[-127.57196349761587,52.70219322177053],[-127.57224417667024,52.70226400248756],[-127.57250588132823,52.70234792435934],[-127.5727658220025,52.70243466735055],[-127.57302128304025,52.702525397925896],[-127.57326774822523,52.70262353978854],[-127.57348817744918,52.7027444419836],[-127.57372658757099,52.7028505381137],[-127.57397938392357,52.702944100452754],[-127.57423483013241,52.70303427261211],[-127.57449210962713,52.70312385458454],[-127.57474847674098,52.70321400428656],[-127.57500127780352,52.70330757335954],[-127.57525050332892,52.70340510899795],[-127.57550530381398,52.70350256908013],[-127.5757501745026,52.70360744424576],[-127.5759623319027,52.703730139184614],[-127.57613815249309,52.70387294484181],[-127.57630941649563,52.704018044610585],[-127.57647797160291,52.70416486658272],[-127.57664473691247,52.704313398390276],[-127.57680783824887,52.70446309133824],[-127.5769691292948,52.70461393840536],[-127.57712863019354,52.704766486371],[-127.57728538053297,52.704919627191586],[-127.57744121886273,52.70507334507059],[-127.57759431259197,52.70522822071984],[-127.57774648830134,52.705383108540595],[-127.5778977668017,52.70553857323503],[-127.57804717815237,52.70569405393421],[-127.57819475264382,52.70584956817261],[-127.57834326784473,52.70600562555115],[-127.57849180462676,52.70616223845983],[-127.57863945018491,52.706319993154764],[-127.57878527903162,52.70647832817332],[-127.5789265100494,52.70663784601124],[-127.57906316370439,52.70679910241941],[-127.57919244146255,52.70696102314174],[-127.57931343578055,52.70712474143472],[-127.57942520623793,52.707289696063235],[-127.57952592074278,52.70745648571797],[-127.57960727383146,52.70762634348041],[-127.57965824340222,52.707801651123766],[-127.57968620050718,52.707981188230384],[-127.57970031364616,52.708162598085224],[-127.57970797462792,52.7083452159698],[-127.57971748320064,52.70852725289118],[-127.5797343068654,52.70870694013736],[-127.57974835856938,52.70888667373337],[-127.57975778437746,52.70906646076054],[-127.57976534252354,52.70924628193598],[-127.5797719606719,52.70942555079598],[-127.57978230591563,52.70960532535225],[-127.57980566582827,52.709786054224736],[-127.57982435846156,52.709965716097805],[-127.57981332198197,52.71014410211555],[-127.57975303595677,52.71031923368653],[-127.57967044762671,52.71049298015099],[-127.57960274696325,52.710668202662816],[-127.5795490565878,52.71084604304194],[-127.57949632637241,52.711024991402965],[-127.57945656903384,52.711203764702844],[-127.57943995017247,52.71138166981105],[-127.5794650385518,52.71155900328366],[-127.57953366785996,52.71173519332115],[-127.57961523592239,52.71191065273182],[-127.57967922557629,52.712086905254516],[-127.57969410868445,52.71226382029335],[-127.5796682026286,52.7124412856416],[-127.57961823760117,52.7126196315614],[-127.57955896981449,52.71279754692639],[-127.57950434246816,52.7129753996325],[-127.57945340098482,52.71315264655525],[-127.57939873138886,52.71332937874218],[-127.57934218706689,52.71350557118776],[-127.57928566312225,52.71368232828057],[-127.57923286644542,52.713859600022936],[-127.57918100314116,52.71403685015778],[-127.57912725060764,52.714213569714126],[-127.57906980551925,52.714390339017214],[-127.57900580351543,52.714565519695974],[-127.57893339070746,52.71473912777103],[-127.57884047969328,52.71490964922139],[-127.57872887325509,52.715076494713664],[-127.57861353275334,52.71524227839602],[-127.57849821753517,52.71540917360892],[-127.57836707156737,52.71557404907477],[-127.57823777778658,52.71573889042902],[-127.57812986823689,52.715905129360394],[-127.57806476063253,52.716075840233806],[-127.5780712487359,52.71625174709003],[-127.57812424115474,52.7164315111071],[-127.57817727534758,52.71661239550396],[-127.57819688349865,52.716792044421936],[-127.57819895236283,52.71697361566818],[-127.57819177979758,52.71715643242886],[-127.57818183418905,52.717339286539946],[-127.5781718884955,52.71752214062767],[-127.57816746222768,52.71770379932206],[-127.57817409582015,52.717883631947984],[-127.57819549633865,52.7180615795762],[-127.57823624363772,52.71823590348754],[-127.57830280345287,52.7184065165191],[-127.5783924383458,52.71857401153677],[-127.57850144158257,52.718738447426205],[-127.57862798621169,52.718900969747075],[-127.57876740397371,52.719060511434705],[-127.57891790349645,52.719218782554485],[-127.57907482241865,52.71937528096124],[-127.57923446856789,52.719530065390686],[-127.57939594905424,52.71968426885553],[-127.5795536815955,52.71983739270344],[-127.57971135337286,52.719988840171325],[-127.57987635838472,52.72013794653203],[-127.58004684295659,52.720284736766786],[-127.58022282797573,52.72042977554486],[-127.58040062620245,52.720573659642234],[-127.58057933937896,52.7207169751167],[-127.58075899407781,52.720860842585836],[-127.58102392950055,52.721079220139416],[-127.58175814213739,52.721273323880666],[-127.58350517684023,52.72152154718082],[-127.58419666530192,52.72198861183208],[-127.5849329409051,52.72208738469133],[-127.58534275645184,52.72261094052856],[-127.58585983471227,52.72307531645117],[-127.58669903479483,52.72359809224681],[-127.58718427517194,52.72380394729837],[-127.58760930257831,52.723886178853625],[-127.5882958933253,52.72411956616567],[-127.58884035571234,52.72447089476067],[-127.58966096106433,52.72486611021573],[-127.59032399237492,52.72511325739075],[-127.59110041956849,52.7254171424239],[-127.59142100493172,52.725533296613264],[-127.59188947897258,52.72573598842333],[-127.59232702426436,52.72602934230466],[-127.59301098116568,52.72656371702067],[-127.59357559083512,52.726856458980095],[-127.59390381955255,52.72695344584036],[-127.59451691032596,52.72692940708671],[-127.59504001105182,52.72690490472396],[-127.59587857563008,52.72700782178688],[-127.59701608163321,52.72729218399329],[-127.59794089005553,52.727568218564684],[-127.59913091845394,52.72801662821657],[-127.60000118006805,52.7281230023096],[-127.60029755866621,52.72813633296156],[-127.60057871529486,52.72816443467674],[-127.60086536277268,52.728240106886105],[-127.60113165854936,52.72831717759689],[-127.60139270787602,52.728402731290615],[-127.6016510952598,52.72849167479063],[-127.60191128984616,52.72857891602466],[-127.60217863514393,52.72865933298463],[-127.60245228940816,52.72873462309473],[-127.60272506665953,52.728811036589775],[-127.60298601704243,52.728893781204384],[-127.60322707743869,52.728990249283136],[-127.603406160585,52.72914081644534],[-127.60345814577794,52.72931497799165],[-127.60340357553409,52.72949227518413],[-127.6033361311874,52.729672555489294],[-127.60333726806479,52.72985134097228],[-127.60338974303293,52.730038947546625],[-127.60350364634935,52.73020721248568],[-127.6036982402494,52.73032561437415],[-127.60395101873685,52.73041295271667],[-127.60423381084429,52.730484185725864],[-127.60452114178452,52.730552557918315],[-127.60479204448121,52.730628436388464],[-127.60506308911206,52.730707675241064],[-127.60533817398674,52.73077116436252],[-127.60562874825153,52.73080248806477],[-127.60593262090121,52.73079271737935],[-127.60620024845156,52.73073187775645],[-127.60642949619935,52.730612151829504],[-127.6066703938428,52.73050628239146],[-127.60691704199212,52.730405373481226],[-127.607163731079,52.73030558444974],[-127.60741425361377,52.73020910521773],[-127.60766964922935,52.73011871946563],[-127.60793346451275,52.73003046848887],[-127.60821473787,52.72993804927438],[-127.60849614375927,52.72987365212597],[-127.60876415618735,52.72987221331801],[-127.60901905655211,52.729941575977755],[-127.60926624687391,52.730052520408975],[-127.6095065488007,52.73017756679129],[-127.60973814281787,52.73029320848633],[-127.60995698477666,52.7304146299239],[-127.61016947883361,52.730540066147455],[-127.61038649647652,52.73066263285821],[-127.61061256877679,52.73077890477782],[-127.6108431862449,52.730892880764415],[-127.6110774076029,52.73100399979444],[-127.61131606808111,52.73111000839034],[-127.6115705459576,52.731192267205245],[-127.61183536301168,52.731278302162714],[-127.61211854462664,52.73133493821106],[-127.6123998241105,52.73138991380722],[-127.61268377273494,52.73144205401269],[-127.61296770109341,52.73149363780882],[-127.61325246495419,52.73154295848216],[-127.61353291859149,52.73160074970652],[-127.61380560741888,52.73167378501235],[-127.6140875572783,52.7317220214648],[-127.6143854662287,52.731726327886065],[-127.61467864516737,52.731703230155546],[-127.6149729550069,52.73168572101638],[-127.61526949963593,52.731678269177195],[-127.61556542689699,52.73167922800103],[-127.61586266999896,52.731690265755574],[-127.61614726298852,52.7317345418601],[-127.61642083413257,52.73180642901948],[-127.61671352012254,52.731819769485035],[-127.61701076674235,52.73180613365746],[-127.61730846714273,52.73178016893964],[-127.61760222330314,52.73177274970044],[-127.61788744164075,52.73180916607491],[-127.6181680728487,52.73187142779255],[-127.61844520845283,52.731939342071485],[-127.61871426284492,52.73201409329119],[-127.61898334575623,52.73208996449359],[-127.61926118511597,52.73215169723875],[-127.61954248569859,52.73220722054197],[-127.6198229946227,52.732266117082155],[-127.62009642696626,52.732334078718964],[-127.62036638536786,52.73240825768709],[-127.6206337192065,52.73248639132021],[-127.62089125155725,52.73257530486171],[-127.62113983248945,52.73267275360782],[-127.62138575320482,52.732773601614966],[-127.62163073430278,52.732873906113994],[-127.62187933972965,52.73297190898879],[-127.622142716747,52.73306802979559],[-127.62239428935753,52.733146377738166],[-127.62262676273187,52.7332591842686],[-127.62285111278861,52.733377698847804],[-127.62306451514145,52.733501413613986],[-127.62321653080271,52.7336450354045],[-127.62333367221656,52.73382276985914],[-127.62343805381153,52.73400685092915],[-127.62346242359725,52.73416008822187],[-127.62349853084892,52.734353518301766],[-127.62355134588417,52.7344009886949],[-127.62372513154428,52.73445799220844],[-127.62402858056764,52.73446106763422],[-127.62425808325045,52.73454420157121],[-127.62439396636591,52.73472672400829],[-127.6245809888513,52.73486368870022],[-127.62487283908534,52.73500088508224],[-127.62471173780895,52.735155573547104],[-127.62454786126132,52.7353103002452],[-127.6244352902524,52.73547272712451],[-127.62439642610872,52.73564645371075],[-127.62438741699361,52.73582425919453],[-127.62439706409272,52.736005159951546],[-127.62441510633164,52.7361870742302],[-127.62443131543867,52.73636956991323],[-127.62443539336378,52.7365499918216],[-127.62443199628599,52.73672939637513],[-127.62442584607965,52.73690939509014],[-127.62441782028573,52.73708886378152],[-127.62441075050931,52.737268884169694],[-127.62440178994599,52.73744836577662],[-127.62439098969357,52.73762787286891],[-127.62437369133222,52.73780747003655],[-127.62435360371015,52.73798710585181],[-127.62434094864658,52.73816663858762],[-127.62434867792804,52.738345888671574],[-127.62438147139542,52.73852534722385],[-127.62443093449262,52.73870401860884],[-127.62446089056799,52.738881839457015],[-127.62442963317572,52.739060509049416],[-127.62437891048717,52.73923944849598],[-127.62430390828418,52.739414240586136],[-127.6241951408359,52.73957941186584],[-127.62404329256664,52.73973397039041],[-127.62387835516404,52.73988591213995],[-127.6237349637672,52.74004315095567],[-127.62363184129245,52.740210485318265],[-127.62354839627118,52.74038315178632],[-127.6234771192617,52.74055845649222],[-127.62341330220372,52.74073476977244],[-127.6233578591421,52.74091153193686],[-127.62333591119486,52.74109119290366],[-127.62336497220332,52.74127014709174],[-127.62337452487078,52.741448250577264],[-127.6233405079855,52.74162752269379],[-127.62328880042605,52.74180535392388],[-127.62320152886859,52.74197470997649],[-127.62306192892714,52.742134702024785],[-127.62295048134854,52.742302706779654],[-127.62286416987246,52.74247317017289],[-127.6228682269306,52.74265359160924],[-127.62290376473578,52.74283189999862],[-127.62282504083548,52.743006742103944],[-127.62269123388229,52.74317281419767],[-127.62253141733878,52.743313472750316],[-127.62232757509324,52.743442965892775],[-127.62211239707705,52.74356756670232],[-127.62189442207465,52.74369164980078],[-127.62168401358737,52.74381955564831],[-127.62149935097044,52.74396559644556],[-127.62129250054971,52.744089524387874],[-127.62102602817507,52.74415822794493],[-127.62050756536621,52.7442371421074],[-127.62022373988037,52.74428870417503],[-127.6199389578644,52.74433972276394],[-127.61965806926784,52.74439517073743],[-127.61938227618283,52.74446287834315],[-127.61913355190197,52.74455935662184],[-127.61890311804325,52.744673517261305],[-127.61868796007363,52.74479867615271],[-127.61849827831432,52.744935257453385],[-127.61833038399988,52.74508385926836],[-127.61817569919916,52.74523789223385],[-127.6180313340731,52.745395136420754],[-127.6179095225733,52.7455599247817],[-127.61776886498976,52.74571711739088],[-127.6175981268584,52.74586408028695],[-127.61741700909813,52.746006702278954],[-127.61722458548589,52.746144440099464],[-127.61702449324478,52.74627611355857],[-127.61681117654744,52.74640124327489],[-127.6165902335944,52.74652142892172],[-127.61636643017296,52.746639420603245],[-127.61614070696767,52.74675575236496],[-127.61590926958505,52.74686823457477],[-127.61567876617313,52.746980712392514],[-127.61545210444324,52.74709705569142],[-127.61522362244337,52.74721397961954],[-127.61499510336272,52.74733034758456],[-127.61477420799964,52.74745165888149],[-127.61457120024784,52.74758000510895],[-127.61440876196554,52.74772628359401],[-127.61430291546716,52.74789645257718],[-127.61418110345512,52.74806179250245],[-127.61402162099368,52.74821251353102],[-127.61385275723451,52.7483605655675],[-127.61367449079775,52.74850538389621],[-127.6134895543244,52.748645809877694],[-127.61329231326559,52.74877967911137],[-127.61307144785845,52.74890210747146],[-127.61284675060506,52.74902178121622],[-127.61264093329783,52.74914959748388],[-127.61247664878503,52.74929646334181],[-127.6123557819245,52.74946235302835],[-127.61226487436107,52.74963566820203],[-127.61219999328216,52.74980975515658],[-127.61216221256899,52.749989065109034],[-127.61213558283777,52.750168786590756],[-127.61211172797549,52.750348469869415],[-127.6120971841288,52.750528590002176],[-127.61208448000556,52.75070867583463],[-127.61206622585753,52.7508888469567],[-127.61203674163949,52.751066921624734],[-127.61198397105062,52.751242518633404],[-127.61188183726034,52.75141318971313],[-127.61174212190318,52.75157204688641],[-127.61158261808828,52.75172277320911],[-127.61141279061657,52.75187026936403],[-127.61123542140214,52.7520150709947],[-127.6110533362379,52.75215769522121],[-127.6108702875122,52.752299211411646],[-127.61068534669498,52.75244019729082],[-127.61049568955387,52.75257899675825],[-127.61029844224754,52.752713425280156],[-127.61009168584022,52.752841814281005],[-127.60986968618596,52.75295975861275],[-127.60963436223814,52.75306892673717],[-127.60939526338062,52.75317646027024],[-127.60916187618143,52.753287833765896],[-127.60894276737655,52.753408543446646],[-127.60873223015962,52.7535353048282],[-127.60852740454882,52.75366590630877],[-127.60832449591062,52.75379815806066],[-127.60812156511085,52.753929853737844],[-127.60791577983407,52.75405991123323],[-127.6077052151265,52.754186106040606],[-127.60748701777604,52.75430680030596],[-127.60725830695353,52.75441922660003],[-127.60701525268429,52.75452064841958],[-127.6067616911173,52.75461435804475],[-127.60650238835996,52.75470310594166],[-127.60624119359744,52.75479132317666],[-127.60598476914664,52.75488282836723],[-127.6057369311308,52.754980385121186],[-127.6054996882078,52.75508844982963],[-127.60526098841491,52.75520717865551],[-127.60504126028592,52.7553368567924],[-127.60486183161099,52.755477192305115],[-127.60481978860169,52.75561788835671],[-127.60481451537309,52.7557989915689],[-127.60480155303271,52.755997579444404],[-127.60479167013688,52.75617931069013],[-127.60475566626857,52.75635748067342],[-127.60471040655615,52.7565363333432],[-127.60465580675826,52.756713627915985],[-127.6045899909426,52.75688884303057],[-127.60451110300349,52.75706198614048],[-127.60443048561822,52.75723852469492],[-127.60434619864515,52.757416225387175],[-127.60424971175021,52.7575901740897],[-127.60413248534351,52.75775600380102],[-127.60398689581636,52.75790764005002],[-127.60380632243475,52.75804238437538],[-127.60359837548265,52.75816517233854],[-127.6033696761565,52.758278720107434],[-127.60312494513455,52.75838575194582],[-127.60287258167084,52.75848729179043],[-127.6026182984535,52.75858717139348],[-127.60236772480032,52.75868699970999],[-127.60212083957161,52.7587862120895],[-127.60186913968616,52.75888101485584],[-127.60161268134516,52.75897251023538],[-127.60135523883326,52.75906234152409],[-127.60109873666958,52.75915272434589],[-127.60084319532862,52.75924420545505],[-127.60059244584842,52.75933954839144],[-127.60035028291577,52.759440943292276],[-127.60000053521846,52.759668788623046],[-127.599778703089,52.759792879912496],[-127.59969493462476,52.759960480931156],[-127.59964501874326,52.760139394422964],[-127.59961653768143,52.760320822233446],[-127.59961025878997,52.76050026111207],[-127.59962995634598,52.76067934548068],[-127.59965989367605,52.760859411044386],[-127.59967775692557,52.76103907639468],[-127.59968261111152,52.76121836326239],[-127.5996828551572,52.7613982779854],[-127.59968216369583,52.761578196486084],[-127.59968147256413,52.761758123928644],[-127.59968449212887,52.761937991743444],[-127.59969305749851,52.762117227861225],[-127.59970256442138,52.762297016070974],[-127.59971486182428,52.762476757211154],[-127.59972809486332,52.762656494529345],[-127.59974316839157,52.7628361977419],[-127.59976009165473,52.76301531969552],[-127.59978444364653,52.763194905208785],[-127.59983297484877,52.76337527270381],[-127.59985165556138,52.76355212869372],[-127.59976239114994,52.76372149017125],[-127.59961894238606,52.76388206730298],[-127.59939965781432,52.764049839688745],[-127.59937769390528,52.76420707300047],[-127.59939618423957,52.76437888276398],[-127.59943639964536,52.764560493655544],[-127.59944594167588,52.764740837104014],[-127.59949528893863,52.764918395524326],[-127.59962198703495,52.76507920511811],[-127.59980920990759,52.765220132408665],[-127.60000070062905,52.76532625158275],[-127.60002818764164,52.76534156978531],[-127.60008950227724,52.76551615772295],[-127.60007211166032,52.765696312652295],[-127.6000099742653,52.765871464539785],[-127.60000130423911,52.76588784117973],[-127.59991608011329,52.766041453966054],[-127.59989047850735,52.76615109182508],[-127.59982583353893,52.76620970759759],[-127.59970002103854,52.76629605190832],[-127.59969029423935,52.76635840201576],[-127.5997729003481,52.76653157852166],[-127.59985179601034,52.76670481456126],[-127.59987979886942,52.766882663918345],[-127.59987078587656,52.767063260301974],[-127.59987658281351,52.76724308959862],[-127.59989816149137,52.76742271247456],[-127.59992622180808,52.767601681913874],[-127.5999838340218,52.767776885172104],[-127.6000005592238,52.76780187385654],[-127.60009963832985,52.76794400351072],[-127.6001241352648,52.7681269493069],[-127.6001059550807,52.76831103354343],[-127.60015036229328,52.768480247165805],[-127.60026081185465,52.76865305211245],[-127.60042272131395,52.768811694108905],[-127.60066127586902,52.7689345489643],[-127.60080181760742,52.769092926174956],[-127.6009359563386,52.769253632550736],[-127.60107472195065,52.769413710625365],[-127.60119137183044,52.769578583342955],[-127.60126471096001,52.76975188515809],[-127.6013233089026,52.76992819511372],[-127.60137638169999,52.7701057014421],[-127.60143036947468,52.77028263924269],[-127.60149360112435,52.770458885780286],[-127.60157248984675,52.77063155554515],[-127.60166338683422,52.770802375296554],[-127.60176167250907,52.77097253803701],[-127.6018627294329,52.77114210683408],[-127.60196284544948,52.771311123432845],[-127.60205742162307,52.77148133658374],[-127.60214371709496,52.77165333974256],[-127.60221525004889,52.77182779542658],[-127.60227295504518,52.77200467295315],[-127.60231953107468,52.772182267482734],[-127.60235871963619,52.772360527894875],[-127.6023895700424,52.772539458220265],[-127.60241208219009,52.77271905846533],[-127.60242622914024,52.772898217019595],[-127.60242279364313,52.77307873679155],[-127.60240266036666,52.773260049695345],[-127.60238437660698,52.773440772338326],[-127.6023836543063,52.77361956905685],[-127.6024217829539,52.773794480940346],[-127.60252282799128,52.77396348418614],[-127.6026561579337,52.77412699731909],[-127.60278942002137,52.774288278295074],[-127.60293092270933,52.77444663961106],[-127.60307883118044,52.77460267128135],[-127.60322582011926,52.77475871533648],[-127.60336549075663,52.77491765716182],[-127.6035042841996,52.77507774072976],[-127.60365676050075,52.775231467304486],[-127.60383572334574,52.7753736219298],[-127.60403482494904,52.77550765416668],[-127.60424214666963,52.77563821076757],[-127.6044466780577,52.775768805187596],[-127.60463750760347,52.77590519149769],[-127.60476233820495,52.77606433473766],[-127.60485334400933,52.7762374011145],[-127.60499580232467,52.77639630284111],[-127.60505803201575,52.77656976290428],[-127.6050843058843,52.77674987581293],[-127.60511425624334,52.7769293734161],[-127.60515715195068,52.7771070168569],[-127.60520098989743,52.77728521232558],[-127.60523461140446,52.77746353864696],[-127.60524516477719,52.777645552530565],[-127.60530919018763,52.777817301872226],[-127.60544424546755,52.77797630432796],[-127.60559863741756,52.77813112304389],[-127.60575760062554,52.77828420202557],[-127.60593935379096,52.778425750262485],[-127.60611383080457,52.77857132567227],[-127.6062809895156,52.77871980791669],[-127.60644364224166,52.77887170552247],[-127.60659624816151,52.779028233298],[-127.60663433550874,52.77920145815752],[-127.60662072126016,52.779382672983864],[-127.60660712813223,52.77956445245287],[-127.60661758236316,52.779743660560165],[-127.60663454752857,52.77992334440336],[-127.60664967104638,52.78010304448817],[-127.60666571575896,52.78028274089872],[-127.60668822906086,52.78046178370974],[-127.60673036782796,52.780643920453805],[-127.60677340040635,52.78082492397493],[-127.60678377136067,52.78100189118471],[-127.6067138558019,52.781167627960286],[-127.60644835776928,52.78139264713389],[-127.60670783746995,52.78130390070887],[-127.60696533969325,52.78121238290793],[-127.6072248172253,52.78112363532878],[-127.60749020604888,52.7810443296795],[-127.60776460860005,52.780982278975486],[-127.60805658214494,52.78094297055092],[-127.60835588214576,52.780925414867035],[-127.60864949983153,52.78092979031564],[-127.60894131745988,52.78096053643348],[-127.60923009202938,52.78100870273005],[-127.60951551929098,52.781066993807336],[-127.60979881198242,52.78116679746355],[-127.61006470634089,52.78119957358657],[-127.61032414996238,52.78113492435092],[-127.61058906235048,52.78104273175718],[-127.61084295360678,52.78092939194498],[-127.61106648710889,52.78079908944608],[-127.61124129028808,52.78065713456597],[-127.61137011890145,52.78050291573411],[-127.61146877425416,52.780336215976746],[-127.6115466355613,52.78016027829102],[-127.61161600255743,52.77998053842622],[-127.61168536863181,52.77980078953634],[-127.61176601991613,52.77962481327444],[-127.61187301783599,52.77945800733946],[-127.61206551805091,52.77931748468646],[-127.61231467630031,52.77927594711151],[-127.61256388089954,52.77928485103307],[-127.61286208854804,52.77931269259094],[-127.6131605194007,52.779322039160064],[-127.61345063057985,52.779307403527916],[-127.61374394731871,52.77935324532201],[-127.61396393031877,52.7794735223047],[-127.61417648944935,52.77959390106844],[-127.61448949095242,52.77954644030107],[-127.61470359771154,52.779412897433616],[-127.61491234644572,52.77928504164291],[-127.61510624353186,52.77915738103151],[-127.61532832248196,52.7790383084479],[-127.6155590146068,52.77892583348822],[-127.6157980091453,52.77881213167231],[-127.61604760674838,52.778708927766075],[-127.61631333951979,52.77863912941629],[-127.61659895419376,52.778604361816406],[-127.61689736253591,52.77858848223762],[-127.6172010544985,52.778589334320635],[-127.61750062888748,52.77860425877719],[-127.6177886821061,52.778633913771465],[-127.61807198813472,52.77868493162782],[-127.61835024197639,52.77875003489747],[-127.61862684612878,52.77882020008068],[-127.6189042231173,52.778886426140254],[-127.61917626594986,52.7789588949171],[-127.61944653839845,52.77903362942247],[-127.61972383342552,52.77909762176875],[-127.6200088162988,52.77914412804102],[-127.62029731468523,52.77918498029939],[-127.62058660682274,52.77922245803209],[-127.6208776707081,52.77925766866613],[-127.62116963434958,52.77929230118579],[-127.62146072062349,52.7793280750346],[-127.62175097140249,52.779366092656474],[-127.62203857993579,52.77940807392719],[-127.62232127988692,52.779467501638884],[-127.62259879446698,52.779537080021996],[-127.62287946953141,52.779592050615946],[-127.62316998441993,52.779612690837695],[-127.62346647819228,52.77961979615057],[-127.62376644394779,52.779620126929075],[-127.62406707486063,52.779613722015974],[-127.62436653564728,52.77960116281778],[-127.62466210699863,52.77958361693453],[-127.62495096065867,52.77956055862365],[-127.62517725939847,52.7794554160265],[-127.62539421599656,52.779324620539796],[-127.62562953786365,52.779212626239605],[-127.62590752576719,52.77917234585985],[-127.62620717500904,52.77916482806871],[-127.6265093777521,52.77917520934783],[-127.62680273233858,52.77919747812254],[-127.62709213711624,52.77923774519448],[-127.62738249916117,52.77927855426757],[-127.62767436166901,52.77931037417303],[-127.6279662394616,52.7793421931454],[-127.62825895298792,52.77937175788525],[-127.62855239525649,52.77939626300284],[-127.62884736756853,52.77941178747415],[-127.62914537534225,52.7794098897642],[-127.62944324820029,52.77940406534763],[-127.62973707162716,52.779413998778274],[-127.63001943998954,52.77946443608945],[-127.63029869542167,52.77953061833499],[-127.63058959835097,52.7795613234206],[-127.63088619433574,52.77954654546894],[-127.63117852179677,52.77951726269276],[-127.63146967780128,52.77948182574323],[-127.63175877794,52.77944081189444],[-127.63204487170186,52.77939423438793],[-127.63232889453748,52.77934208022279],[-127.63260988921242,52.779283797777104],[-127.63288791363463,52.77922051618717],[-127.63315814835494,52.779147818767775],[-127.63341852246069,52.779060120667204],[-127.63367795320985,52.77897187014871],[-127.63394820626766,52.778899726595455],[-127.6342317736467,52.77883580851491],[-127.63452289334977,52.77877513836986],[-127.63481461280448,52.77873016148893],[-127.63510179178213,52.7787121411785],[-127.6353805339101,52.778740762015566],[-127.6356529256445,52.77882159975317],[-127.63592227076968,52.7789198497187],[-127.6361918232015,52.77899903991496],[-127.6364626708829,52.77901543782992],[-127.63673249026941,52.77893208428072],[-127.63700979775246,52.778850302513725],[-127.6373030730897,52.77882154709791],[-127.63760457409138,52.77881397427074],[-127.637896989981,52.7788356724621],[-127.6381829264187,52.77888212151603],[-127.63846577424668,52.778944871407205],[-127.63873623058359,52.77902347823065],[-127.63898499347916,52.779117525052385],[-127.63919783626635,52.7792434602777],[-127.63939540420212,52.779382504162605],[-127.63960639326098,52.77950846457458],[-127.63985947139973,52.779594037576466],[-127.64015104853029,52.77964208895367],[-127.64044571484771,52.77967383802464],[-127.64074304433562,52.77970218622567],[-127.64104197875209,52.77972434146493],[-127.6413376846915,52.77973477555363],[-127.64162134905023,52.77972183733621],[-127.64185635085008,52.77960253268004],[-127.64206399070672,52.779471836110545],[-127.6422937009342,52.77935988636669],[-127.64257822231265,52.779297046626],[-127.64285130244042,52.77934702735273],[-127.64310690395052,52.77944938144009],[-127.64331157234129,52.7795799077366],[-127.64355680843796,52.77967847827181],[-127.6437652280701,52.77980950721368],[-127.64397542590385,52.77993883390912],[-127.64422145040199,52.78003347315626],[-127.6444871684398,52.78010933542706],[-127.64476006859107,52.78017837061938],[-127.64503832931557,52.78024228118953],[-127.64530843934732,52.780311354262786],[-127.64557516152402,52.780388885941505],[-127.64584841053902,52.7804668814194],[-127.64612257362292,52.780520758326226],[-127.64641291233973,52.78058450511321],[-127.64668238657407,52.78066086574851],[-127.64696058869738,52.780723095689886],[-127.6471807359037,52.78079679401379],[-127.64747324327865,52.78084424935199],[-127.64791764731021,52.78078532035514],[-127.6481325900401,52.78077221116014],[-127.64843746541523,52.78080323188315],[-127.64873177852047,52.78082544159846],[-127.64902447331619,52.78085383413308],[-127.64931465760137,52.78088954300889],[-127.64960144778877,52.780933154606295],[-127.64988747571834,52.78098125110814],[-127.65017177815744,52.781032743049266],[-127.65045610275193,52.78108478999401],[-127.6507395139267,52.781137405111224],[-127.65102468889354,52.7811871968022],[-127.65131067716337,52.78123417843711],[-127.65159409038144,52.781286791484284],[-127.6518822395428,52.781341588036405],[-127.65215966292499,52.78140717964004],[-127.652391361521,52.78151489042339],[-127.65248890976346,52.781683902033535],[-127.6524985995167,52.78186255429225],[-127.65248615824876,52.78204489021881],[-127.65251039562627,52.782215490728085],[-127.6525186993288,52.78240593702564],[-127.65252034681075,52.78259255821263],[-127.65253766126303,52.78275204660606],[-127.65251691993221,52.78296028146431],[-127.65248744551346,52.783134445575016],[-127.65248945716911,52.783354681368415],[-127.65263218894901,52.78346700808819],[-127.65296133588154,52.7835010471442],[-127.65326771056527,52.78349840564973],[-127.65355411162682,52.7834596182454],[-127.65371884187714,52.783324466277136],[-127.65381543692544,52.78310900075529],[-127.65395416332811,52.78295010994678],[-127.65406650876794,52.78278150236763],[-127.65420817685451,52.78262648858752],[-127.65441084150534,52.782487993541935],[-127.65464429173792,52.7823770878064],[-127.65479866233514,52.782358660271456],[-127.65522740994689,52.782374464091866],[-127.65550292383898,52.78243839790243],[-127.65572022636343,52.78255807106288],[-127.65592778361481,52.78268965600887],[-127.65615513278165,52.78280471164562],[-127.65640773381324,52.782900344890614],[-127.65667542632545,52.783001934195234],[-127.65687995893059,52.78310329425197],[-127.65708952304098,52.7832623168746],[-127.65725823359656,52.78339781126744],[-127.6574638778598,52.783527734653404],[-127.65768040141361,52.7836507871143],[-127.65790061716281,52.78377322202558],[-127.65812446006785,52.783893363328154],[-127.65835365607583,52.784007823712514],[-127.65859180910022,52.78411374529421],[-127.65884239318528,52.784204927045934],[-127.65912340626797,52.7842665238486],[-127.65941658872569,52.78430665850123],[-127.65971254852234,52.7843226479627],[-127.660016071435,52.784318352318735],[-127.66030228554001,52.78434624385293],[-127.66051572442453,52.784461488122346],[-127.66075265961136,52.784559575905696],[-127.66104477423696,52.78464399516994],[-127.66131692516709,52.784716365920325],[-127.66159434136475,52.78478081471977],[-127.66184954080101,52.78487080380516],[-127.6620781215325,52.784993112508324],[-127.6624015285948,52.78518918121242],[-127.66256026598064,52.785186931167004],[-127.66285223639267,52.78519567861279],[-127.66315818672618,52.78518181681218],[-127.66345494391032,52.78519442273336],[-127.66374852681098,52.785220524486526],[-127.6640413269881,52.78525055550054],[-127.66433325756068,52.78528228405712],[-127.6646252470812,52.78531513201889],[-127.66491658540659,52.785355279246716],[-127.66520783657464,52.78539317610139],[-127.66549955056115,52.78541930003803],[-127.66579329262531,52.78542578207653],[-127.6660891273898,52.785414289271955],[-127.6663854897901,52.78539270851846],[-127.6666817861416,52.785369442021114],[-127.6670139903617,52.78529073718297],[-127.66728973257148,52.78533557510555],[-127.66756172582137,52.7853799096912],[-127.66784974807602,52.78543018550189],[-127.6681377052016,52.785478775609604],[-127.66842378442422,52.785526826766],[-127.66872540788452,52.7855208587571],[-127.66902141911925,52.785490299650846],[-127.66920328287543,52.78560485679676],[-127.66933832164204,52.78578060323943],[-127.66953307224188,52.785915709819946],[-127.66976870560022,52.78602725877833],[-127.67001323546059,52.786129147919276],[-127.67026403063622,52.78622477755058],[-127.67051666173603,52.78631982450878],[-127.67078755257377,52.78640676407244],[-127.67106023548313,52.786492000526216],[-127.67129096383296,52.78659688161592],[-127.67143865272644,52.78673938147322],[-127.67151696232581,52.78691313593573],[-127.6715697121826,52.78709790824678],[-127.67163891548721,52.7872762762382],[-127.67171997533607,52.78744887036955],[-127.67180105759098,52.787622020113595],[-127.671882118751,52.787794614093976],[-127.67195951121211,52.78796838126768],[-127.67203229230137,52.78814277908091],[-127.67210599451795,52.7883171547386],[-127.67218153220811,52.7884909481741],[-127.67226445319002,52.78866351532409],[-127.67235749121545,52.78883369623463],[-127.6724625400045,52.789002028847726],[-127.67257309360664,52.78916859693667],[-127.67268550473565,52.78933513842698],[-127.67279424727836,52.78950285308514],[-127.67288645609662,52.78967528729018],[-127.6729722624541,52.78985005465496],[-127.67309097025819,52.79001145710876],[-127.6732805551947,52.790156163885605],[-127.67352340691932,52.790261432718715],[-127.67381164323677,52.790292625913594],[-127.67411301264774,52.79025581720398],[-127.67436395506861,52.790164800345444],[-127.6745999243377,52.79004709357639],[-127.67483687930232,52.78993105815989],[-127.6750879940385,52.78984452107776],[-127.67536734267752,52.78981474932357],[-127.67566699385796,52.78982896045127],[-127.67597241330853,52.78984813721984],[-127.67627022789618,52.78983939777724],[-127.67656639595006,52.789812189687844],[-127.67686330127266,52.789779921482314],[-127.6771594681844,52.78975270293206],[-127.67745155798981,52.78974012343982],[-127.67773729166842,52.78975452831276],[-127.67801279880109,52.78981616827143],[-127.67828451590684,52.78989971614611],[-127.67855952198147,52.78997200668964],[-127.67883878877335,52.790034702932694],[-127.67911897765757,52.79009739428832],[-127.67939909375572,52.79015783512855],[-127.67968181237129,52.790213763149886],[-127.67996516602109,52.79026239064703],[-127.68025658451327,52.79027951492004],[-127.68055664246668,52.79025671594501],[-127.68083352859044,52.79030599898876],[-127.6810987851606,52.79039018901673],[-127.68136138295893,52.79047778842964],[-127.68162094461216,52.79058223630514],[-127.68189571067205,52.790554200652835],[-127.68217515655644,52.79050311295907],[-127.68245606829953,52.79044247086999],[-127.68273675149108,52.79037567054414],[-127.68301634367988,52.79030496628737],[-127.68329219929367,52.790233750002194],[-127.68355343664179,52.79014536339997],[-127.68379912788097,52.79003927285943],[-127.68407648250117,52.79000614602677],[-127.68437524633416,52.79002146867798],[-127.68467370852004,52.790052497408695],[-127.68496406639004,52.79008980263712],[-127.68525203017795,52.79013723025326],[-127.68554069444583,52.79017904226898],[-127.6858330574587,52.79019669514266],[-127.68612975267199,52.79018290689825],[-127.68642640310071,52.790167988609255],[-127.68672670051176,52.790151340156875],[-127.68701718518281,52.79016846109428],[-127.68729653224081,52.790232822174524],[-127.68757090786107,52.79031239167249],[-127.68784678663769,52.7903829621993],[-127.68812872068911,52.79041870390305],[-127.68842214586316,52.790416157649226],[-127.68872195694573,52.790387180456115],[-127.68901539999474,52.790338116754434],[-127.68929059078522,52.790273621610275],[-127.68954054320982,52.79018203008593],[-127.68977378893288,52.79006712936797],[-127.68999744002436,52.789944528580946],[-127.69022779496659,52.78982687061665],[-127.69045229771152,52.7897025706964],[-127.69059578005512,52.789549171908824],[-127.69069690262526,52.789381810884315],[-127.69079706629857,52.789213898596536],[-127.69089626429026,52.789044888112166],[-127.69099360450882,52.788875895328935],[-127.69108997906572,52.78870580435502],[-127.6911854167646,52.7885357178122],[-127.6912789750877,52.78836510225954],[-127.69137251065752,52.78819393092914],[-127.69146416651984,52.78802222163186],[-127.69155488592476,52.787850525738435],[-127.69164468373631,52.787678843036886],[-127.69173351559016,52.78750605319788],[-127.69182049731845,52.78733384595019],[-127.6919065354802,52.78716109621744],[-127.69199165209697,52.78698835968607],[-127.69207581031331,52.786815080887784],[-127.69215905416844,52.78664237119365],[-127.69224135414116,52.786469110059585],[-127.69232181929833,52.78629644028299],[-127.69240136297469,52.78612378371882],[-127.69244024798311,52.78595676264185],[-127.69246510863984,52.7857635965545],[-127.6924997249933,52.78558262035958],[-127.69253433353053,52.7854010792711],[-127.69257319498614,52.7852334934236],[-127.69260697843676,52.78505477108875],[-127.69264820981448,52.78487650620133],[-127.69269411142197,52.78469872987364],[-127.69274744558967,52.78452140223099],[-127.69280922985503,52.78434620348819],[-127.6928717492669,52.784165945205714],[-127.69293031844437,52.783980139009444],[-127.69300869769167,52.78380189360986],[-127.69312876092076,52.7836443448824],[-127.69331233001068,52.783518943388],[-127.69355275225617,52.78342243094385],[-127.69382731411052,52.783343360528576],[-127.69411322059014,52.78326973045544],[-127.69438778042587,52.78319065872043],[-127.69464809783399,52.7831039452936],[-127.69490747857179,52.78301724480556],[-127.69516779386848,52.7829305302156],[-127.69542815257603,52.78284493537647],[-127.69569423517257,52.78276318508072],[-127.69596889985289,52.782686905971104],[-127.6962435490575,52.78261063539201],[-127.69650870752699,52.78252888759083],[-127.69675573306247,52.782435079738875],[-127.69697223241606,52.78232097049473],[-127.69713636057391,52.78217454539772],[-127.69727472266648,52.78201056626986],[-127.69741967693699,52.7818487245198],[-127.69759502905444,52.781704387156566],[-127.69778455447197,52.781566005209754],[-127.69797978117661,52.781430903314025],[-127.6981797214493,52.781297409792685],[-127.69837966807208,52.78116448078209],[-127.69860402733437,52.78103792367883],[-127.69886213994319,52.780919844987714],[-127.6990612956447,52.78079028912117],[-127.6991236945972,52.78063132698348],[-127.69912338095453,52.78045982168479],[-127.6990903305188,52.78028262977823],[-127.6990385392916,52.780101216481874],[-127.69897827678736,52.779917127912256],[-127.69892268526115,52.77973353660082],[-127.69888292373234,52.7795508279305],[-127.69887022635746,52.77937165506756],[-127.69890136531656,52.77919745201984],[-127.69898753669307,52.77902917751689],[-127.69911002215807,52.778863183698434],[-127.69924552932966,52.7786981130432],[-127.699370767225,52.77853151402972],[-127.69946520646741,52.7783608772785],[-127.69954374889164,52.7781876728491],[-127.69961198489568,52.778012366787685],[-127.69967276637907,52.77783605669385],[-127.6997279416246,52.77765926282847],[-127.69977846103988,52.77748197142375],[-127.69979635005028,52.77732477464354],[-127.6997538172987,52.777119130480415],[-127.69977887024567,52.77693212827428],[-127.6997932472328,52.7767800222806],[-127.69988520073092,52.77659372719248],[-127.69983245302286,52.77641177168328],[-127.6997903892226,52.77621789542648],[-127.69974832603732,52.77604755079986],[-127.69975045246736,52.77586760669319],[-127.69975908975557,52.77568812419194],[-127.69977650927581,52.775495618567966],[-127.69995177586578,52.775373132522326],[-127.70021762494005,52.77528689021741],[-127.70051135868495,52.7752248955712],[-127.70080378712888,52.77519992054552],[-127.70109482110402,52.775209706553106],[-127.70138847735463,52.775239075497346],[-127.70168433974895,52.775276823560425],[-127.70198003142886,52.77531064543286],[-127.70224074152745,52.7753517003119],[-127.70255917863426,52.77535044001578],[-127.70284807598853,52.77528346975368],[-127.70315385290972,52.77519719684683],[-127.70343668904648,52.77518803938038],[-127.7037330284564,52.77516804015409],[-127.70402802561708,52.77516095549465],[-127.7043237152396,52.77517123081481],[-127.70462557637481,52.77519654449148],[-127.70493492923502,52.77522343442686],[-127.70523949303829,52.775292990649376],[-127.7054094467897,52.77543344906403],[-127.7054884736357,52.775598761514],[-127.7053891373344,52.77578516887748],[-127.70537798194353,52.77594787397094],[-127.70562521888536,52.7760468525826],[-127.70586654933686,52.77616048044935],[-127.70604225578845,52.776305338198554],[-127.70619975283765,52.77645886355125],[-127.70634806740546,52.77661532029396],[-127.7064872072804,52.77677416130585],[-127.70661349707154,52.776937108134625],[-127.70672600868576,52.777103618318506],[-127.70679804463614,52.77727968541368],[-127.70688660727437,52.777451027951656],[-127.7070322631202,52.777610329460124],[-127.70719386118985,52.777773317652894],[-127.70737623924803,52.77792199524514],[-127.70758608286751,52.778037764063264],[-127.70783894754418,52.77809125181814],[-127.70814315538135,52.77808178099134],[-127.70845912151353,52.77806428220282],[-127.70876230171605,52.77807555847303],[-127.709073198203,52.77809401238693],[-127.7093446714575,52.77814834669803],[-127.7095462658901,52.778266474302285],[-127.70969493544335,52.778431333593524],[-127.7098030990284,52.77860463019702],[-127.70985929776884,52.77877924041339],[-127.70987682347709,52.778961705374975],[-127.70988679776357,52.779141482445205],[-127.7098828576533,52.77932145341385],[-127.7100037997586,52.77951249920014],[-127.71007984743628,52.77960275495183],[-127.71039420275258,52.779683921231346],[-127.71062031403383,52.779764696950785],[-127.71084201842893,52.779828165761224],[-127.71107247885756,52.779948111628315],[-127.71135734139924,52.780011769944906],[-127.71161863499202,52.78008978837344],[-127.71180143515204,52.78022500125412],[-127.71195805442194,52.78037909678202],[-127.71211020600406,52.780537732297695],[-127.7122777854909,52.7806871834484],[-127.71245084477839,52.780834303407936],[-127.71263119597333,52.7809779626407],[-127.7128250959092,52.781111890865915],[-127.7130928209105,52.78118812619764],[-127.71338662214175,52.78115020452664],[-127.71361445559543,52.781042068032846],[-127.71376708439304,52.78088793978063],[-127.71388017664184,52.78072094626575],[-127.71400552055292,52.780558248516485],[-127.71412054935006,52.78039290339716],[-127.71420274858292,52.780219635120126],[-127.71428499174854,52.78004747813155],[-127.71440091647689,52.779881563540165],[-127.71459702592801,52.77974697606502],[-127.71481695157556,52.77962717776557],[-127.71507899472432,52.77953871564485],[-127.71536677491632,52.779536183425876],[-127.71565760590131,52.77949381533209],[-127.7158844215669,52.77938400302539],[-127.71614218799232,52.77930456893337],[-127.716408298565,52.7792250031581],[-127.71663618145489,52.77911853666984],[-127.71681507977075,52.77897187532066],[-127.71701218068132,52.77883895500472],[-127.7171866459968,52.77869739789451],[-127.71734298856755,52.77854377503653],[-127.71748900092057,52.77838749628368],[-127.71758495443251,52.778279597023136],[-127.71764806631681,52.77811725030498],[-127.71768327082059,52.77797661109889],[-127.71777971845228,52.77788103526446],[-127.71789752491561,52.77771621012074],[-127.7180598125057,52.77757202294474],[-127.71833557253714,52.77750184400764],[-127.71862151365707,52.77745393497169],[-127.71891609570463,52.777436165271986],[-127.71919308968101,52.777373813116505],[-127.71944260173406,52.77727431460561],[-127.71972500826728,52.77723093861908],[-127.71999637663475,52.77728244300393],[-127.72030445786906,52.77730034345773],[-127.72059504908306,52.77732186270994],[-127.72088768302892,52.77730187463587],[-127.72118050760061,52.77726339117484],[-127.72145539257245,52.77719489462978],[-127.72174350030562,52.777154793017964],[-127.7220868572133,52.777149195008086],[-127.72234659866776,52.77714257322484],[-127.72264177386198,52.77711638244979],[-127.72295576559422,52.777096631428186],[-127.72324886831103,52.777134366059904],[-127.72353235185466,52.77716382943316],[-127.72382621247932,52.77715109791863],[-127.72412045135015,52.77712491717431],[-127.72441459080461,52.77711947100821],[-127.72472152762357,52.77708581108305],[-127.72500840877754,52.77706141331903],[-127.72533496979608,52.77700784123991],[-127.72564313419642,52.77702741242566],[-127.72588485608568,52.777080460552135],[-127.72617747860042,52.77708344420968],[-127.72647147371042,52.777074067044424],[-127.72675944007148,52.77703059213046],[-127.72704853045775,52.776992148895715],[-127.7273324664098,52.776940884966905],[-127.72761527700517,52.77688458796678],[-127.7278852220846,52.776808866955996],[-127.72813098358577,52.77670940484483],[-127.72829014686621,52.77655796692566],[-127.72843294186603,52.77636921226202],[-127.72852256736664,52.776197500068164],[-127.72852273906341,52.776018138514345],[-127.7285219676787,52.77583823482852],[-127.72858263441498,52.775662465417156],[-127.72873407952301,52.77548087364147],[-127.72893972395775,52.77539992800087],[-127.72921164936793,52.775327537474894],[-127.72951968290722,52.77525237172315],[-127.72976856685682,52.775207223610934],[-127.73007243578253,52.775235814348335],[-127.73032807552504,52.775311632842055],[-127.73033009565101,52.775132243792555],[-127.73032831300438,52.774950668848426],[-127.73025194496881,52.77478476745985],[-127.73002141319354,52.77466373855027],[-127.72988988882943,52.77451153767784],[-127.7298628143562,52.774370135651324],[-127.73030085649435,52.774295847567046],[-127.73059731326494,52.77427914142907],[-127.73088032924628,52.77422844705163],[-127.73116301157715,52.774169900963535],[-127.7314397997445,52.77410303822846],[-127.73170495980338,52.77402458058034],[-127.7319639979761,52.77393219579833],[-127.73220847203586,52.7738243316268],[-127.7324141407556,52.77369853934637],[-127.73253955268912,52.773539746671396],[-127.73262425074736,52.7733613775185],[-127.73275990651553,52.77320355416872],[-127.73295954075807,52.77306608399884],[-127.73319555741409,52.772956100603366],[-127.73346193778328,52.772884902736045],[-127.73375062233289,52.7728369154038],[-127.7340412382328,52.772791140783134],[-127.73432987602153,52.772742031696],[-127.73462522880527,52.77269842753632],[-127.73490711219756,52.77264325592366],[-127.73515999600264,52.77255992283053],[-127.73539009506013,52.77244161045335],[-127.73559045576305,52.77229964080825],[-127.73574301994626,52.77214661237383],[-127.73577699918826,52.77197739439893],[-127.73573040268354,52.77179032124841],[-127.73578741334259,52.77161684324619],[-127.73590506462229,52.77145031437319],[-127.73600495536618,52.771280685325905],[-127.73606274006626,52.77110326765856],[-127.73608797182868,52.770924654951905],[-127.73606208479359,52.77074455716188],[-127.73597158621774,52.77057382803931],[-127.73588106542535,52.770402534183035],[-127.7358107315368,52.77022533636901],[-127.73577570369547,52.770048736793996],[-127.73586157487898,52.76987707323181],[-127.73593704104664,52.76970051465092],[-127.73609335949185,52.76954910677392],[-127.73633149242181,52.76944581107933],[-127.73662629488341,52.769412298585976],[-127.73690730169194,52.769358811690964],[-127.7371569156368,52.769264312187104],[-127.7373986192433,52.76915759832928],[-127.73764227662112,52.76905366198068],[-127.73788888314303,52.768953600409795],[-127.73813551111414,52.768854093996154],[-127.73838406221671,52.76875624451296],[-127.73863646038708,52.768661700437185],[-127.73889567903117,52.76857490165642],[-127.739163627701,52.76849750579007],[-127.73943851867391,52.76843120735993],[-127.73971335540195,52.768363232052835],[-127.73998125564361,52.7682847139803],[-127.7402541743888,52.768215644834314],[-127.74054634869718,52.76818608033094],[-127.74083343470997,52.768145389572275],[-127.74109247096006,52.76805466050103],[-127.741206540348,52.76789210666452],[-127.74119550167994,52.76771234484049],[-127.74110306468785,52.76753996192781],[-127.7411088192102,52.76736220163302],[-127.74113035384488,52.76718419798457],[-127.74104346257216,52.767011176602274],[-127.74088773083963,52.76685766955209],[-127.74073946026178,52.76670460752634],[-127.74071894052346,52.76651994629172],[-127.74056923495542,52.76637755938926],[-127.7403324453599,52.766262248262464],[-127.7402070019506,52.76609988760279],[-127.74018304733235,52.765922003263874],[-127.74016832527722,52.76574286084634],[-127.74015912449163,52.76556251544279],[-127.74015363494676,52.76538211492782],[-127.74014908065736,52.765201700508776],[-127.7401473249611,52.76502180054487],[-127.74015487006312,52.76484232748246],[-127.74016331282658,52.764662285052744],[-127.74016251527897,52.764482935788756],[-127.74014126901922,52.76430332506894],[-127.74012095848856,52.76412370940446],[-127.74010346145637,52.76394460797303],[-127.74009520429195,52.763764804373146],[-127.7400934492464,52.76358491320097],[-127.74005277405655,52.76340671178721],[-127.74007996916058,52.76323087486325],[-127.74024845418718,52.763082642652144],[-127.74037264258435,52.76291825272336],[-127.7405553908334,52.76277821131866],[-127.74076363591375,52.76264901001657],[-127.74098720243236,52.76253134686378],[-127.74123568723486,52.76243292628261],[-127.74149578312958,52.762346107727744],[-127.74176662342153,52.76227258103433],[-127.74203752329292,52.762200173821725],[-127.74230936556434,52.762128316947276],[-127.7425802030768,52.76205478836378],[-127.7428510771626,52.761981814614394],[-127.74312099252225,52.761908298457975],[-127.74339185027874,52.761835332635464],[-127.74366364187759,52.76176234331058],[-127.74393455834314,52.76169049633693],[-127.7442073828733,52.761620297359904],[-127.74448024403324,52.76155065320765],[-127.74476099153333,52.761492666115664],[-127.74504580720517,52.76144302984084],[-127.74532460632041,52.761382828357],[-127.74560033134502,52.761315380917814],[-127.7458711959553,52.76124240911786],[-127.74613618089873,52.76116223320282],[-127.74639724000552,52.76107651010163],[-127.74665832900969,52.76099190696524],[-127.7469213330007,52.760908395699374],[-127.74718342357035,52.76082545346106],[-127.74744544459423,52.76074083461917],[-127.7477055633946,52.76065512252156],[-127.74796565842442,52.760568854158535],[-127.74824188183528,52.76049130378051],[-127.74851148076388,52.76041049748101],[-127.7487014803343,52.760289956638594],[-127.74876638965942,52.760106819063544],[-127.74883326404347,52.759903482824136],[-127.74893926949447,52.759749443266784],[-127.7491738665647,52.759766120808074],[-127.74945447899483,52.75984095983718],[-127.74974444345466,52.75994032987596],[-127.75001093443707,52.76003331462619],[-127.7502474862306,52.760143005034244],[-127.75047501503806,52.76025899978783],[-127.75069438659712,52.76037959103447],[-127.75083475004925,52.76004455324338],[-127.75092512567869,52.7598716880218],[-127.75104162771207,52.759701795439994],[-127.7512303146683,52.75957230177943],[-127.7514759603563,52.75947334509001],[-127.75174447391544,52.75938918428745],[-127.75201215766818,52.759307268315695],[-127.75228100550201,52.75923094835607],[-127.75255577059671,52.759163498442994],[-127.75284053853981,52.759113278510455],[-127.75312434794955,52.75906251618755],[-127.75340009166209,52.7589961706308],[-127.75366596082583,52.75891540790733],[-127.75394385706706,52.75885631992379],[-127.75423575118961,52.758821684131746],[-127.75453002884332,52.7587998991342],[-127.75482836194661,52.75878646478655],[-127.75512214116138,52.75879776024269],[-127.75541480997359,52.75887241354499],[-127.75567510247284,52.75885954676755],[-127.7559023875478,52.75874347531193],[-127.75612437331878,52.75861123251762],[-127.75625998298183,52.758319978038145],[-127.75636157148841,52.758149182064926],[-127.75651216355386,52.75799670889935],[-127.75673188301157,52.75787739496203],[-127.75696387478146,52.75776293671772],[-127.7571730577804,52.75763592374547],[-127.75737650480188,52.757504521269176],[-127.75758093968372,52.75737478064019],[-127.75778725139487,52.75724556750255],[-127.75799450526821,52.757116904833914],[-127.75820367402697,52.756989334063164],[-127.75840904734379,52.756860142787495],[-127.75859634116908,52.75672000323458],[-127.7587931866773,52.7565864551031],[-127.75904832702344,52.75649350047786],[-127.75926123121441,52.75636699263081],[-127.75939767191895,52.75629936928644],[-127.7594803036106,52.756299805859236],[-127.75964031535098,52.75655692432224],[-127.75970877807765,52.75673189662613],[-127.75977172188871,52.756908072763615],[-127.75973529197204,52.757105354293955],[-127.75989219623119,52.75724144884226],[-127.76005251007962,52.75741559769316],[-127.76018088371335,52.757557725396275],[-127.7603118745916,52.75771830599344],[-127.76047311620897,52.757869463911064],[-127.7606325811771,52.758022890336775],[-127.76074976048831,52.75818591995251],[-127.7608191505755,52.75836087759599],[-127.76086643129348,52.75853953040643],[-127.76088309288477,52.758718643194335],[-127.76086915785926,52.758898771654074],[-127.76084591529803,52.759077927866414],[-127.76088014880473,52.75925565558937],[-127.7609237201475,52.759434364016776],[-127.76094876999639,52.75961447169543],[-127.76089270538246,52.75978570881292],[-127.7608923926161,52.75995835035814],[-127.7609091933496,52.760140823949214],[-127.76095185351662,52.760320101991155],[-127.7610018435091,52.76049703681136],[-127.7610740288464,52.76067195211385],[-127.76114898198422,52.76084626078139],[-127.76124785650069,52.76101573485129],[-127.76137691425173,52.76117410112302],[-127.76155835108582,52.76131934889635],[-127.76170946767446,52.76147233422901],[-127.76180275636857,52.76164132677557],[-127.7618713055558,52.761817982196106],[-127.76194443181352,52.76199288275472],[-127.76201935306267,52.76216663525701],[-127.76209706549555,52.76234034574215],[-127.76217754586318,52.76251344956172],[-127.76225615695847,52.76268659038668],[-127.76232647238365,52.76286096791785],[-127.76237278302315,52.76303851332827],[-127.76241909404739,52.76321605869976],[-127.76246357326262,52.763394196572136],[-127.76251265241622,52.76357113526463],[-127.7625626755907,52.763748624719966],[-127.76261453176477,52.76392553055368],[-127.76266824350976,52.76410239948027],[-127.76271918828958,52.76427987496797],[-127.7627719809414,52.76445676660765],[-127.76282754953982,52.76463360749681],[-127.76288955972548,52.76480923942715],[-127.76297834428185,52.76498109663655],[-127.76310040756297,52.765194495821326],[-127.76307690025703,52.76532208910015],[-127.76292172859496,52.76547631583546],[-127.76275709343645,52.765626209544386],[-127.76267136174359,52.76579844894767],[-127.7626388301758,52.76597774442945],[-127.7626943539874,52.76615346488518],[-127.76278778736287,52.766325261184335],[-127.76288761591272,52.76649471023479],[-127.76298834271691,52.766663589661526],[-127.7630807969276,52.76683427941521],[-127.76319074879935,52.76700133390976],[-127.76331635169045,52.76716535483495],[-127.76339678537369,52.76733734613556],[-127.76344037547841,52.76751605267708],[-127.76345057203199,52.76769581752704],[-127.76337414065586,52.76786848228316],[-127.76323213587764,52.768027004020425],[-127.76308923255266,52.76818609508906],[-127.76298656468249,52.768352984010555],[-127.76296614821132,52.768533218099066],[-127.7630004672602,52.768712620092394],[-127.76305878748276,52.76888830705143],[-127.7631272839588,52.76906327593832],[-127.76320132489774,52.76923759639733],[-127.76327907829354,52.76941186993113],[-127.76335497620457,52.769586162342684],[-127.76343186472987,52.769762125796674],[-127.76355091973556,52.769924567763056],[-127.76372125164322,52.77006997906545],[-127.763915400895,52.77020718470389],[-127.7641159233823,52.77034148711575],[-127.76431546592276,52.77047469189476],[-127.76451862028848,52.77060503496832],[-127.7647254263715,52.77073420172002],[-127.76493133617957,52.77086393762899],[-127.76513184198498,52.77099768256945],[-127.76535754354613,52.77111199059539],[-127.76563115998276,52.77119475328484],[-127.76588645890392,52.77128395232382],[-127.76605102000566,52.77142384217119],[-127.76612813114508,52.77160484057827],[-127.7661586998159,52.771782620982925],[-127.7661559645505,52.77196371006248],[-127.76615785299053,52.77214416448047],[-127.76616443484623,52.77232566918856],[-127.7662622730156,52.772491226037765],[-127.76640896112427,52.77264819977417],[-127.76641463173051,52.77283027417553],[-127.76640916738077,52.773012525278155],[-127.76654253374835,52.77316128746049],[-127.76679840226467,52.77326392815432],[-127.76707239976996,52.77333322973969],[-127.76735342770816,52.77339289164444],[-127.76763000947224,52.77345710395946],[-127.76789249460083,52.77354002038226],[-127.76815327913899,52.773626333875434],[-127.76841400314069,52.77371151773339],[-127.76867476640403,52.77379726542009],[-127.7689275196708,52.77389154545156],[-127.76917040673162,52.77399437691942],[-127.76941509596695,52.77409549469764],[-127.76966615891776,52.77419371773403],[-127.76993391887461,52.77426926797282],[-127.77021728411817,52.774317677734345],[-127.77050681342178,52.77435814666091],[-127.77079712452222,52.774395240037805],[-127.77108844137709,52.77443400351246],[-127.77137709818969,52.77447560450257],[-127.771666606247,52.7745155059254],[-127.77195613826349,52.77455597126868],[-127.77224304230434,52.77460040365191],[-127.77252566287567,52.77465330320229],[-127.77280134822041,52.774718073082035],[-127.77306917834817,52.77479473622145],[-127.77333445056406,52.774877042507406],[-127.77359878839016,52.77495936233801],[-127.77386850088375,52.77503656020177],[-127.77413645964367,52.77511658203852],[-127.77437743200448,52.77521718987998],[-127.77456426965539,52.77535616597331],[-127.77474395552997,52.77550142007474],[-127.77496162642336,52.7756225576509],[-127.77519383560777,52.775735627643606],[-127.77541515134652,52.775855032181255],[-127.7756074849421,52.77599168140717],[-127.77578892507738,52.776134665352096],[-127.77598215861826,52.7762707443245],[-127.7762007492801,52.77639130969936],[-127.77643113298616,52.77650496097249],[-127.77666512235152,52.776616324114606],[-127.7768945965415,52.7767305532685],[-127.77710412137866,52.776856294449274],[-127.77726643833594,52.77700796908393],[-127.77741980275482,52.77716763525312],[-127.77761520818562,52.77728854052133],[-127.77788956354169,52.77734323872202],[-127.77815591505637,52.77736162027328],[-127.77846479316163,52.77737542821066],[-127.77875288181095,52.77738059156652],[-127.77904823373883,52.77735929573464],[-127.77934046720151,52.77733019938421],[-127.77963253673595,52.777297176757074],[-127.77992346049835,52.777259130711634],[-127.78021040634427,52.77721441824736],[-127.78049332129562,52.777162484172685],[-127.78077118215595,52.77710052806658],[-127.78104505022407,52.77703191481888],[-127.78131785629415,52.77695994503837],[-127.78159165231578,52.77688964557008],[-127.78186845772716,52.77682490478664],[-127.78214732013605,52.7767646161292],[-127.78242813999782,52.776707104059945],[-127.78270991773714,52.77665013276514],[-127.78298979192779,52.77659206870971],[-127.78326954826052,52.7765311987432],[-127.78354443765151,52.776464806015305],[-127.78381534180967,52.776392303185084],[-127.78408715690671,52.77631922085975],[-127.78436199687118,52.77625170590263],[-127.7846408371728,52.77619141151975],[-127.78492465180862,52.77613888785071],[-127.78521262233158,52.776096945379685],[-127.78550359462332,52.77606000554033],[-127.78579471565529,52.77602699074703],[-127.78608789407271,52.775998418983],[-127.78638220366989,52.77597487830579],[-127.78667677082053,52.775957503036885],[-127.78697244537953,52.77594458524758],[-127.78726921941474,52.77593557799525],[-127.78756514324624,52.775928268961216],[-127.78786205769468,52.77592262111656],[-127.78815941734749,52.77592761091166],[-127.78844526252324,52.77596809211666],[-127.78872194833797,52.77603393973788],[-127.7890046689669,52.77608847549719],[-127.78928908229665,52.776139065675956],[-127.78957610003549,52.77618513135363],[-127.78986392182526,52.77622838600273],[-127.79015172053782,52.77627107531239],[-127.79043956677728,52.776314884215815],[-127.79072565150062,52.77636096135842],[-127.7910092271776,52.77641380224451],[-127.79129195323891,52.77646833247642],[-127.79157726026284,52.77651778250267],[-127.79186584226015,52.77655709263059],[-127.79215791671962,52.776590743584094],[-127.79244985946669,52.776621597767296],[-127.79274269068904,52.77665130765889],[-127.79303469614068,52.776683280458066],[-127.79332499555179,52.77671919771051],[-127.79361747188321,52.776762363091954],[-127.79388890827087,52.776835561126404],[-127.79408929747758,52.776963654523755],[-127.79424908705717,52.77711983828235],[-127.79435695794331,52.77725607298291],[-127.79408419998781,52.77741718915925],[-127.79390750033379,52.77756562496104],[-127.79388977470455,52.777740775023275],[-127.79389915784618,52.77791999441955],[-127.79389240071087,52.77811291293108],[-127.79390647868205,52.778293181480606],[-127.79392100695004,52.778462232940946],[-127.79393577056327,52.77863688587125],[-127.79395937325957,52.7788231697593],[-127.79400115267028,52.77899965137821],[-127.79401704935259,52.7791793359729],[-127.7940320251402,52.7793590256669],[-127.7940451452691,52.77953875269748],[-127.79405548830336,52.77971851322576],[-127.79406116022112,52.77989778917211],[-127.79405571879342,52.78007780011192],[-127.79403820426876,52.7802579867636],[-127.7940197692975,52.780438196438624],[-127.79405278706236,52.780627143099345],[-127.79407685637976,52.780802209444566],[-127.79411112807527,52.780977128650626],[-127.79414447898435,52.781152052950134],[-127.79418781200233,52.781321228392095],[-127.79420671369296,52.78150590682585],[-127.79426614707795,52.781682674021994],[-127.79432647831885,52.78185887141363],[-127.79438499235725,52.78203566155837],[-127.79443611360853,52.78221367682751],[-127.79447996656707,52.7823951752908],[-127.79453480122939,52.78257313366683],[-127.79462083213103,52.78274165546992],[-127.7947710427204,52.782890693789284],[-127.79497996503524,52.78302201808855],[-127.79518254870321,52.78315735812021],[-127.79534852553623,52.78330559834985],[-127.79550907543162,52.78345727551093],[-127.79566412829024,52.78361072262761],[-127.7958146048185,52.78376592562225],[-127.79596326430479,52.78392171227385],[-127.79607245311468,52.78408874837552],[-127.79605120935564,52.78426843604889],[-127.79541357010096,52.78445531955581],[-127.7950356257912,52.7847665855817],[-127.79458766803148,52.78513552826472],[-127.79403960922862,52.78566461910912],[-127.79368369575852,52.7861913335963],[-127.79358833151214,52.78666306100649],[-127.79357427604978,52.78716885218311],[-127.79361586338361,52.78765025106216],[-127.7936311846674,52.78808160597496],[-127.79341361056947,52.78851876404651],[-127.79324424822526,52.78873265945765],[-127.79294066318302,52.788824739267625],[-127.79214288151748,52.78898266275691],[-127.79163460733866,52.789111496691156],[-127.7914029051037,52.78927870300168],[-127.79117033466069,52.78953616775648],[-127.79119390589385,52.78985473027407],[-127.79114587942647,52.79041484680138],[-127.79088314566518,52.79099450047257],[-127.7905854801292,52.79127257056335],[-127.79046888470485,52.79143857340563],[-127.79035886484608,52.79160616173163],[-127.7902591573028,52.791775834549036],[-127.79017348440432,52.791948100064666],[-127.79011117644241,52.792123927962415],[-127.790088085037,52.79230419738645],[-127.79004065368024,52.79248036315574],[-127.78994467958994,52.79265053460556],[-127.78982434114285,52.792816037659165],[-127.7896794800023,52.792972390632656],[-127.7895044250393,52.79311798498927],[-127.78934073572583,52.79326845469221],[-127.78919604417864,52.793429288405875],[-127.7891409605856,52.793599956329246],[-127.78918570004133,52.793780876752976],[-127.78917553995458,52.793959836461816],[-127.78914027311323,52.79413804909901],[-127.78909665815085,52.794316397988446],[-127.78904555340166,52.79449373108846],[-127.78898793349899,52.794670607479006],[-127.78891813400993,52.79484487152185],[-127.78883901125737,52.795018712678015],[-127.7887617359083,52.79519196059623],[-127.78869756054982,52.79536781568586],[-127.7886501818363,52.795545100603654],[-127.78858978942307,52.79572257492125],[-127.78856568358658,52.795901181942256],[-127.78871130820156,52.79605086203119],[-127.78896343351546,52.79614790778994],[-127.78920480259195,52.796254641109414],[-127.78941450639579,52.79638147898321],[-127.78961701860152,52.796514031213306],[-127.78982312867176,52.796643730186986],[-127.79004456116435,52.79676197601299],[-127.79030104674396,52.796852226413804],[-127.7905611532916,52.796940178993],[-127.79080243724594,52.797044677361406],[-127.79103017839155,52.79715834105696],[-127.79130086593048,52.797232678454925],[-127.79156621862931,52.79731270172525],[-127.79183338224942,52.797391575744165],[-127.79210402564587,52.79746479099292],[-127.7923738196528,52.79753970459429],[-127.79264186019745,52.79761744240425],[-127.79290721779945,52.79769746262203],[-127.79316462723982,52.79778712778239],[-127.79340956549896,52.797889879058616],[-127.79367217193489,52.797970504622405],[-127.79395511489065,52.798026712575826],[-127.79417826688587,52.79814156147493],[-127.79448759144302,52.79829489202718],[-127.794634533811,52.79838680864612],[-127.79463575809449,52.79848207522762],[-127.7945897010435,52.79864644626766],[-127.79453500932463,52.798826087371936],[-127.79454367556683,52.79901035536351],[-127.79451867169546,52.79918897731468],[-127.79449555686493,52.79936869134578],[-127.79447429037326,52.799547821060266],[-127.79445300847027,52.79972694201514],[-127.79442897197738,52.79990667005848],[-127.7944152452798,52.79999992320653],[-127.79440303114636,52.800085306196266],[-127.79437525676568,52.80026453533194],[-127.79434653731664,52.800443213905375],[-127.79431782612255,52.80062244833812],[-127.79428910619254,52.800801126855994],[-127.79420623300533,52.800973907479],[-127.7941261759524,52.80114720993534],[-127.79406106888416,52.80132251674226],[-127.79401001494763,52.80150041559271],[-127.79398127828229,52.80167909416085],[-127.79399076121389,52.80186055131934],[-127.79405748601516,52.80203328619434],[-127.79420925848333,52.80210719343713],[-127.79408124214585,52.80235521512394],[-127.79393735580372,52.802513234241104],[-127.79375082749797,52.80265172705954],[-127.79353297948327,52.802774439323244],[-127.79331127507002,52.80289385606361],[-127.79312013088034,52.80303297435402],[-127.7929049786039,52.803153411135945],[-127.792640906575,52.803237592966326],[-127.79236091790669,52.80329679932491],[-127.79207188197817,52.80333989318154],[-127.79183070479876,52.8034382964391],[-127.79168778952669,52.80359741867364],[-127.7915476985949,52.80375761857603],[-127.7915254108069,52.80393507663681],[-127.79159222290231,52.80411005324235],[-127.79170239112172,52.80427764177585],[-127.79179045287327,52.80444949575819],[-127.79185369341391,52.80462788971896],[-127.79186326176247,52.80476730336471],[-127.79189457696172,52.80498205673477],[-127.7919484619985,52.805158916458176],[-127.7920153010668,52.80533444834288],[-127.79209780285107,52.80550694295655],[-127.7921895596233,52.805678175150014],[-127.79227022917394,52.80585126259196],[-127.79231673426622,52.80602934683795],[-127.79229259116707,52.806206833153034],[-127.79224618362066,52.80638522448495],[-127.7922155938085,52.80656393019719],[-127.79219058424367,52.806743106663724],[-127.79216841533444,52.80692336968048],[-127.79217779766402,52.80710258581358],[-127.79229067531513,52.80726789025037],[-127.79244587344196,52.80742301518372],[-127.79263746798875,52.807559656933925],[-127.79283554832928,52.80769563430463],[-127.79302721573983,52.807833951329336],[-127.79313354322984,52.80799823404597],[-127.79315693822498,52.80817891292889],[-127.79314686175583,52.80835954724592],[-127.7931711549456,52.80853965634891],[-127.79320675781997,52.80872352057438],[-127.79328550016844,52.80889438561944],[-127.79345035191055,52.80903591870641],[-127.79367933558449,52.80915516345105],[-127.79390289828095,52.8092784185969],[-127.79406800382935,52.80942555193262],[-127.7942021071241,52.809587167001915],[-127.7943426258416,52.809746441832125],[-127.79449148796567,52.8099050239288],[-127.79469922863028,52.81002739854063],[-127.79495319850288,52.81012216182135],[-127.7952090418568,52.810216895904304],[-127.79542099211403,52.810306696007764],[-127.79564682157732,52.81046130109895],[-127.79579975787946,52.8105620924623],[-127.79602277062207,52.81073803885932],[-127.79620623716043,52.810879839281604],[-127.79640693454623,52.811011286706325],[-127.79662312332931,52.81113521464961],[-127.79684742869009,52.811253403986186],[-127.79707799381742,52.81136590103983],[-127.79732207427868,52.81146809273768],[-127.79757692417044,52.81156115998716],[-127.79782906685949,52.8116559451765],[-127.79808039224797,52.81175354036226],[-127.79834048779743,52.81183867864926],[-127.79862002591364,52.81189996852306],[-127.79890833370135,52.811948801332726],[-127.79918865304616,52.812006714909714],[-127.79942712265324,52.81210787631265],[-127.79960526086175,52.81225479325463],[-127.79974491952855,52.812415195970296],[-127.7999328680855,52.812552437998775],[-127.79999993043573,52.81257775732604],[-127.80018685602107,52.81264663391852],[-127.80046372657561,52.81271076738251],[-127.80074956999341,52.81276691555576],[-127.80103445410685,52.81282251278236],[-127.80131311395438,52.812884939803915],[-127.80157841701791,52.812961014195636],[-127.80182232858529,52.813058724312704],[-127.80204573706638,52.8131769177146],[-127.8022575143672,52.813305943261525],[-127.80246564884133,52.81343671036055],[-127.8026664009865,52.81356870251908],[-127.80286412540669,52.813716999776894],[-127.8025703566779,52.81369348725006],[-127.80227655583029,52.813668853490135],[-127.80198198479626,52.81364815879375],[-127.8016856271526,52.813629167798574],[-127.8013882151338,52.81360738527025],[-127.80109096047474,52.81358897153162],[-127.80079498175472,52.81357894044557],[-127.80050246723337,52.81358510541346],[-127.80021195217446,52.81361646585047],[-127.79999993000972,52.81365783167909],[-127.79992619128947,52.813672414532945],[-127.79964840361801,52.81374113616606],[-127.79938890752236,52.81382470562298],[-127.79914613745517,52.81393043796586],[-127.7988945505619,52.81402565099462],[-127.79862743178384,52.81410485156491],[-127.79837389101486,52.81419786035759],[-127.79813776717386,52.81430685165875],[-127.79790072926507,52.81441641247417],[-127.79764614550753,52.81450662863425],[-127.79735096914389,52.814559917088346],[-127.7971549344773,52.81460607278645],[-127.79714389235909,52.81471890613794],[-127.7973857329784,52.81498816000457],[-127.79754474065737,52.815144349756],[-127.79769171373857,52.815301835651525],[-127.79784648918289,52.81544575890324],[-127.79801781983643,52.81558550037884],[-127.79824403396117,52.815704222863914],[-127.79842841831515,52.8158448847443],[-127.79860278256895,52.81599018386308],[-127.79880264568803,52.81612331702925],[-127.79901430994033,52.81624955199124],[-127.7992177880616,52.81637983105948],[-127.79941311240422,52.81651527477192],[-127.7995920490797,52.81665882534729],[-127.79977279711693,52.816801217919384],[-127.80000063760268,52.81698044575047],[-127.80034459358117,52.817267749385],[-127.80049063939013,52.81742469004248],[-127.80063482846214,52.81758165900336],[-127.80083265885101,52.81771034497192],[-127.80111226282344,52.817772193293386],[-127.80139873146996,52.81782048369555],[-127.80167736821114,52.81788122454261],[-127.80196042983897,52.81793684785614],[-127.8022484510672,52.81797783040818],[-127.80254225770877,52.81800189955606],[-127.80283781925449,52.818023143020525],[-127.80313249207927,52.8180455203907],[-127.80342625272527,52.818068476021494],[-127.80372181517188,52.818089717259554],[-127.80402088929625,52.81810641981146],[-127.80429574473533,52.81816552666255],[-127.80455417601655,52.81825404018357],[-127.80480205332042,52.81835672336163],[-127.80503540071676,52.818467476426946],[-127.8052570210747,52.81858681236899],[-127.80546962910248,52.8187124564769],[-127.80568137330685,52.818839799471654],[-127.80589577944397,52.81896429417115],[-127.80610747837952,52.8190905071508],[-127.80630010539406,52.81922711116017],[-127.80648819986,52.81936658261719],[-127.80667357223612,52.819507772683295],[-127.80685440376854,52.819651283315814],[-127.80696694453633,52.81980648993082],[-127.80712050245741,52.819964427942374],[-127.80729099606813,52.82012714498352],[-127.80745585759668,52.82026641661923],[-127.80756798772546,52.82043395990088],[-127.8076764412595,52.820602115702805],[-127.8077821016787,52.820770323383975],[-127.80787301777013,52.82094155604867],[-127.80796398205209,52.82111390888576],[-127.8080613711361,52.82128447671075],[-127.80818443168927,52.82144624604809],[-127.80833597607378,52.82160029449063],[-127.80850678522583,52.8217484320056],[-127.80869876717722,52.82186934819457],[-127.80889228872621,52.82200480428455],[-127.80912803696657,52.822149707180046],[-127.80928437739496,52.822285179647686],[-127.80949457732487,52.8224192567088],[-127.80971631698554,52.822540268571565],[-127.80994800847118,52.82265496560937],[-127.81019213677709,52.822756009541926],[-127.81045839145584,52.82283093787177],[-127.81074685773315,52.82288141716853],[-127.8110282013883,52.82293928761881],[-127.81127853556832,52.823032951628726],[-127.81150663653526,52.82315049905879],[-127.8117301577328,52.82326980271125],[-127.81195362350162,52.82338742083101],[-127.81221915353495,52.823466831433976],[-127.8125064282135,52.82351116390518],[-127.81279456837623,52.82355379634298],[-127.81307683209592,52.823611091750095],[-127.81336656954792,52.82364752818545],[-127.81366039901171,52.823627295025325],[-127.8139542362412,52.82358520612109],[-127.8141176104995,52.82355745465093],[-127.81416689539334,52.823667115327595],[-127.81415731009096,52.82376982985709],[-127.81411000560307,52.82394712179301],[-127.81409253411596,52.82412675066541],[-127.81408157324503,52.824306278902526],[-127.81404266911919,52.824484552948675],[-127.81398042685738,52.82466038958734],[-127.8139340422741,52.82483766710988],[-127.8138856083157,52.82501048331682],[-127.81385508089646,52.82518919274713],[-127.81384311873168,52.82534519546039],[-127.81383247297737,52.82555386443074],[-127.81385773727132,52.825732832755634],[-127.81390804680886,52.825910293091695],[-127.81392683946254,52.82608992634225],[-127.81395304099229,52.826268880114796],[-127.81399128077025,52.82644652686314],[-127.81392344598339,52.82662244961607],[-127.81383875880935,52.8267952697029],[-127.81378952856683,52.82697146088788],[-127.81373127708031,52.82713210649666],[-127.81371850331126,52.827312783316685],[-127.81372879792752,52.827489175780954],[-127.81371604804123,52.82767041716761],[-127.81362522758106,52.827852299611195],[-127.81345693224952,52.828005111966085],[-127.81325625952607,52.828139923297364],[-127.81303245347279,52.82825547866747],[-127.8127962032246,52.828362822795775],[-127.81255234280721,52.828465790989334],[-127.81230467859963,52.82856714036919],[-127.81205893394478,52.82866958056377],[-127.81181893839839,52.82877641545214],[-127.81159232151248,52.82889145528587],[-127.8113887487256,52.829024065965925],[-127.81119375867803,52.82916159278904],[-127.81098528368099,52.829288117383165],[-127.81073252114987,52.82937889700417],[-127.81044407860837,52.829439394617566],[-127.81019976373535,52.82953227579301],[-127.81002170656197,52.829674588382474],[-127.80986947956956,52.829833873310854],[-127.80972457492004,52.82999080316807],[-127.80959100029126,52.83015147715763],[-127.80944797584337,52.830308942607445],[-127.80927661427793,52.8304556256966],[-127.80909109274542,52.83059748673211],[-127.80892724281495,52.830746304445974],[-127.80881815429107,52.83091444704157],[-127.808715609722,52.831083618648975],[-127.80855552052311,52.83123348983281],[-127.80836149536881,52.831372117585126],[-127.80814446490817,52.83149484946609],[-127.80789464427843,52.83158949621476],[-127.8076922048188,52.83168341293738],[-127.80744919997204,52.83180765536991],[-127.80718373037519,52.831950187758416],[-127.8069991400092,52.83204831242507],[-127.806773793699,52.83217228160304],[-127.80655509735689,52.83227765624949],[-127.80629965487344,52.83237182992333],[-127.80604707732454,52.83246763594251],[-127.80579640451802,52.8325645330846],[-127.8055524557892,52.832666366210326],[-127.80532295880953,52.83278031638638],[-127.80509826506325,52.83289811120112],[-127.80539373795209,52.83311271608229],[-127.80534394687932,52.833298443825605],[-127.8053041001276,52.83347729272971],[-127.80525487471964,52.83365460879764],[-127.8051756901366,52.833826771528614],[-127.80507688857274,52.833997002752106],[-127.80499304887682,52.83416923686363],[-127.80491391869721,52.83434308445113],[-127.80484600140745,52.834517880588024],[-127.80478929128992,52.83469419035829],[-127.80474381783537,52.834872004358445],[-127.80471420529847,52.83505125153132],[-127.8047032495544,52.83523189788877],[-127.80470165791644,52.835414086260315],[-127.80469815990187,52.83559517396092],[-127.80468155725211,52.835774230050355],[-127.80464065000814,52.835950287731336],[-127.80456134941984,52.8361202184819],[-127.80443992842507,52.836283505550256],[-127.8042960607981,52.83644377442325],[-127.80414559954018,52.836601902431674],[-127.80400634503202,52.83676153503425],[-127.80386719947221,52.83692341669285],[-127.80371189138565,52.83707713458336],[-127.8035231955943,52.837211187397806],[-127.80328783209461,52.83731905303899],[-127.80302864936324,52.83741326718935],[-127.80277112030184,52.83750298041037],[-127.8025028776298,52.83758108273637],[-127.8022375475699,52.837661937692175],[-127.80197513944685,52.837746119094234],[-127.80170291598301,52.83781811075734],[-127.80141687688393,52.83787126605144],[-127.80116298792385,52.8379592338353],[-127.8009432406812,52.83808479068968],[-127.8007039354321,52.8381876624878],[-127.8004265241062,52.838246843892406],[-127.80013537702663,52.83828942053012],[-127.80000054186213,52.83831166495378],[-127.79984726120864,52.83833755486144],[-127.79957589647402,52.83840785131208],[-127.79931454219825,52.83849537335961],[-127.79905891926107,52.83858616096236],[-127.7988052573861,52.838679724872634],[-127.79855356247069,52.838775500039716],[-127.79830185155537,52.83887127488927],[-127.79804724096684,52.83896429561808],[-127.79779262889043,52.83905730682744],[-127.79754961687804,52.83916079365325],[-127.79730422438634,52.83927384915779],[-127.7971371885564,52.839414841421686],[-127.79705032216823,52.83958263999921],[-127.79699836869064,52.83976222600938],[-127.79696050506968,52.839944968265534],[-127.79692060209734,52.84012381379284],[-127.7968890942449,52.84030308683278],[-127.79687158221095,52.84048327563842],[-127.79687539143671,52.840662008251606],[-127.7969358878335,52.84083988245613],[-127.79707456646328,52.84099693876181],[-127.79725460541809,52.841142152210146],[-127.79734446760936,52.84131060002197],[-127.79739108011775,52.841489807417766],[-127.79746171621977,52.84166527520925],[-127.79754251349257,52.84183891044678],[-127.79764999821452,52.84200597625714],[-127.79777497028896,52.84216884638443],[-127.79790915819962,52.84232933334736],[-127.79805346916986,52.84248742322684],[-127.79820597335198,52.84264145959214],[-127.79837583889102,52.84278794807407],[-127.79855946595075,52.84292974167799],[-127.79874399282379,52.84307096521709],[-127.79891850180562,52.8432173818119],[-127.79905176041282,52.843377881712954],[-127.79909089894856,52.843556072888354],[-127.7990677707739,52.84373522682675],[-127.79897932734882,52.84390976737584],[-127.79894864433494,52.844086230043985],[-127.79896661026997,52.844269794339745],[-127.79901788771677,52.84444892945351],[-127.79912602294259,52.84460924906001],[-127.79934253167085,52.84473653007251],[-127.7995816334524,52.844848326917],[-127.7998141514388,52.84495853823417],[-127.79999042769033,52.84510212820717],[-127.80000102303711,52.845110933605916],[-127.80015584331042,52.84525316621518],[-127.80030292118121,52.84541008993657],[-127.80043066204748,52.845571793781964],[-127.80054736770575,52.84573646460227],[-127.80065859210453,52.84590347024732],[-127.800766122732,52.84607108841653],[-127.80087184244856,52.84623985522003],[-127.80097753915952,52.84640805730615],[-127.80108783002062,52.846575076840374],[-127.80120364270195,52.84674032564754],[-127.80132223747546,52.846905531670444],[-127.8014408804862,52.847071857801964],[-127.80155861090648,52.84723875380937],[-127.80167723229238,52.847404524025244],[-127.80179865033222,52.847570242249795],[-127.80192277975517,52.84773424177798],[-127.80205145585055,52.8478959294758],[-127.8021856305272,52.848055290724204],[-127.80232618760486,52.848211755942515],[-127.8024813344541,52.84836126231425],[-127.80270875166437,52.84848220004564],[-127.80297301165281,52.848572305618134],[-127.80325144907304,52.84862352394333],[-127.80355271450541,52.84864299494898],[-127.80385308194967,52.848663043946125],[-127.80414815653624,52.8486898993032],[-127.8043865821038,52.84878488243712],[-127.80459588064612,52.8489167486405],[-127.80480786661582,52.84904632227709],[-127.80503067744971,52.849167891365035],[-127.80528023887896,52.84926213663467],[-127.8055539448547,52.849333599795365],[-127.80583905591901,52.849388628421224],[-127.80612982833844,52.849423391826434],[-127.80643295992843,52.8494428268493],[-127.80673226669263,52.84943766751254],[-127.80700841987249,52.84939082266812],[-127.80725815683047,52.849291697911156],[-127.80750663811092,52.84918474511529],[-127.8077771122475,52.84911388041506],[-127.8080692477325,52.84907127093457],[-127.80836614604335,52.849053248793254],[-127.80865383697089,52.84908132755907],[-127.8089416754671,52.84913462972819],[-127.80924106435273,52.849153559133335],[-127.8094752196287,52.84925700071487],[-127.80970703162394,52.84937113167062],[-127.80996747484258,52.849458482626346],[-127.81023671562059,52.84953392273462],[-127.8105168507767,52.849603024481034],[-127.8108045427561,52.8496748159929],[-127.81106311831385,52.849630474499904],[-127.81130522014928,52.84952697485647],[-127.8115448102806,52.84940781979234],[-127.81179344825458,52.84930478325904],[-127.81205692545872,52.84922280679582],[-127.81232618486419,52.84914523337322],[-127.81259159084391,52.84906491185807],[-127.81285991087745,52.84898734270209],[-127.81313514948265,52.84891919888927],[-127.813423607586,52.84887775372559],[-127.81371942233872,52.8488563718016],[-127.81401679327425,52.84884953777252],[-127.81431144661887,52.84886628544703],[-127.81460159538244,52.84890832840528],[-127.81488758059314,52.84896163577241],[-127.81517117580921,52.849024512161975],[-127.8154222128185,52.84910918961839],[-127.81558209741914,52.849259736081564],[-127.81583728428974,52.84935443730953],[-127.81609061310505,52.849449166722486],[-127.81634661979791,52.849541047269604],[-127.81660872191557,52.849623309193504],[-127.81688848654426,52.84968344280426],[-127.81717432173168,52.84973338409633],[-127.81745063186534,52.84979973071253],[-127.81772694285854,52.849866076676236],[-127.81800497064901,52.84992903250138],[-127.81824327603661,52.8500419255001],[-127.81835059959867,52.85020280570854],[-127.81839361531505,52.85038261694784],[-127.81859753943756,52.85051846099174],[-127.81887579311385,52.85056459667955],[-127.81917591864068,52.85057844965965],[-127.8194765837914,52.85058331674035],[-127.819778286739,52.850568554373744],[-127.82006803592137,52.85057920290007],[-127.82033608776052,52.85066976731669],[-127.82045452844794,52.8508293524313],[-127.82051450234549,52.851013949035405],[-127.82060101267243,52.85118803656387],[-127.82077608864351,52.851323203054456],[-127.82099321144088,52.85144090284571],[-127.82123132693671,52.851549308967876],[-127.82148313270373,52.851651341451735],[-127.82173853841182,52.851750510655044],[-127.82198932826236,52.85185030691299],[-127.82224089826792,52.85194673658425],[-127.8225049574569,52.852030632256145],[-127.82277600017305,52.85210377419152],[-127.82305600508785,52.852168929590675],[-127.82334249008595,52.85221156421953],[-127.82363782923181,52.85222211735244],[-127.82393688968405,52.85221074843322],[-127.82423194383375,52.85219271510353],[-127.82452564414496,52.85216461326231],[-127.82481928125651,52.852135390684914],[-127.82511378294119,52.85210446798422],[-127.82540934136034,52.85207633504494],[-127.82569979946929,52.85208135394884],[-127.82598331124996,52.85214139905319],[-127.82626226447415,52.852203765276926],[-127.82653507807096,52.85227462916311],[-127.82680175217283,52.85235399075324],[-127.82706927768085,52.8524316615244],[-127.82735269809154,52.852489471810195],[-127.82761921614659,52.85256547107195],[-127.82785459741774,52.852674471565095],[-127.8280819561524,52.852791434322754],[-127.828306616146,52.852910689577676],[-127.82854731468929,52.8530134360961],[-127.82882545083899,52.853078042054115],[-127.82911127508132,52.85312684292872],[-127.82940428769837,52.853169361307636],[-127.82967675199616,52.85323181165052],[-127.82978984897467,52.85339595489176],[-127.82980973901101,52.853577808543164],[-127.82999508791846,52.85371280168418],[-127.83025647296867,52.85379896386268],[-127.83050283166705,52.853903304234905],[-127.83070557612682,52.85403185536026],[-127.83078936189649,52.854206543227455],[-127.83075605465892,52.854384176842565],[-127.83064615117173,52.854554601199276],[-127.83046143686114,52.85469423875172],[-127.83026250364577,52.854827927648536],[-127.83015890525108,52.854993769312465],[-127.83008647446408,52.85517032613423],[-127.82999897566135,52.85534264266026],[-127.8298823733799,52.85550867758593],[-127.82977886799846,52.85567675929934],[-127.82969892473099,52.85585175578999],[-127.8296358359821,52.85602928766512],[-127.82961551499142,52.85620616240492],[-127.82959359853483,52.85638922285061],[-127.82966243616875,52.85654060355459],[-127.82975202614159,52.856698942864064],[-127.82969535630023,52.85687414170423],[-127.82969883953001,52.85710725042337],[-127.82972633663972,52.8572710406327],[-127.8297422836647,52.85744735040463],[-127.82977789278883,52.85764857139362],[-127.82978401323615,52.85781269447045],[-127.82979989775004,52.85798788417936],[-127.82983270137832,52.85816672928802],[-127.82986270849304,52.85834561792701],[-127.829865768434,52.858525482247785],[-127.82986044387047,52.85870492113211],[-127.82984775320956,52.858886160664944],[-127.82984336576274,52.85906558491057],[-127.82991597602248,52.85923988202366],[-127.83001640914529,52.85941206874356],[-127.83014983538632,52.859572531703776],[-127.83033799342617,52.859707480456926],[-127.8305691493361,52.859825509359396],[-127.83077109597889,52.85995631471033],[-127.83091274339769,52.86011328579511],[-127.83103433547095,52.86027953704988],[-127.83117417338964,52.86043765699261],[-127.83137629339971,52.86057238651791],[-127.83158378631352,52.860702548051684],[-127.83170777972565,52.860859793390055],[-127.83176290976198,52.86103828973182],[-127.83181988507316,52.86121675726605],[-127.83190180595152,52.861390916909045],[-127.83201314544311,52.86155676201155],[-127.8322070659622,52.861695545873964],[-127.8324838364802,52.861748399343284],[-127.83278655479533,52.861777306978226],[-127.83300978180523,52.861861816706195],[-127.83304564912915,52.862046782780446],[-127.83304968434288,52.862227196567005],[-127.83303239717522,52.86240961994893],[-127.83314574619497,52.86255694105749],[-127.83340640997316,52.86247328496178],[-127.8335777929096,52.86232600506453],[-127.83384709589134,52.86224838296773],[-127.83413657035045,52.86220742853428],[-127.83443347697487,52.862187664819416],[-127.83472014439143,52.862146196753265],[-127.83499881491959,52.86207010266245],[-127.83521544469454,52.86195798477126],[-127.8353215574296,52.861785939185694],[-127.83547404454833,52.86163222561794],[-127.83567962995018,52.86150122273935],[-127.83591692858418,52.861393820428475],[-127.83620465733344,52.86124752531315],[-127.83641577285405,52.86124534681954],[-127.83668866116567,52.86131618672431],[-127.83695978722437,52.86138929550927],[-127.83723274958008,52.86146180999487],[-127.83750566496828,52.86153321258425],[-127.83777770676039,52.86160574022292],[-127.83804794753156,52.86167998136484],[-127.8383164410188,52.8617564911859],[-127.83858137044638,52.86183698407478],[-127.83884643635295,52.86192027219848],[-127.83911170568568,52.86200859646063],[-127.83936614699951,52.862104380472296],[-127.83960156261067,52.86221223655446],[-127.83980512742349,52.86233684057405],[-127.83997250445256,52.86248498646362],[-127.84011534923165,52.86264697699254],[-127.84024798299154,52.862809683274534],[-127.8403547894139,52.86297727783399],[-127.84044595027059,52.86314903628455],[-127.84056653012291,52.863312495973425],[-127.8407284888858,52.86346465356791],[-127.84090599820343,52.86361039746321],[-127.8411023427202,52.863739596312755],[-127.84126352493627,52.86385197519892],[-127.84152804046985,52.86396553241603],[-127.84182230773521,52.86405675919738],[-127.84213934766363,52.864136427454625],[-127.84239248213117,52.86415879717264],[-127.8427372866883,52.86410575332742],[-127.84303000318226,52.86411797711382],[-127.84326029745203,52.86421468764661],[-127.84345368328414,52.86436130870197],[-127.84367748545391,52.864479983809204],[-127.84391480894874,52.864588357535595],[-127.84415304658232,52.8646961514757],[-127.84438853707745,52.86480511800812],[-127.8446231395003,52.864915210029714],[-127.84485686951699,52.86502644523551],[-127.84509148924558,52.86513653607322],[-127.84532971842584,52.865244336786205],[-127.84557158602853,52.86534982896221],[-127.8458052964556,52.865460497663165],[-127.84602186549603,52.86558376594052],[-127.84620756049297,52.86572433355122],[-127.84635848628137,52.86587889890989],[-127.8464911202738,52.866040477366376],[-127.8465823127866,52.86621223968655],[-127.84674215294488,52.86635769666095],[-127.84695435366896,52.866487192800186],[-127.84712443310818,52.866632488330985],[-127.84723772988539,52.86679885380962],[-127.84735568481383,52.86696514594661],[-127.84750120946667,52.86712372266009],[-127.84771858359885,52.86724361230639],[-127.84794778876365,52.86735714566059],[-127.84818154084029,52.867468374083444],[-127.84841894099274,52.867577858722825],[-127.84865810516177,52.867685073191765],[-127.84889997996555,52.867790558590045],[-127.84914182263962,52.867894931999786],[-127.84940347912394,52.86798441144473],[-127.84967751539902,52.86805856676787],[-127.84984997989707,52.868194297101404],[-127.84992330911324,52.868361289196194],[-127.84998913660029,52.86854857690031],[-127.85002588403096,52.86873071747692],[-127.8500773809057,52.86890926289851],[-127.85027330059353,52.86902779975076],[-127.85054580137691,52.86910926813277],[-127.8508238691669,52.869276398387],[-127.85107719946912,52.869366570319976],[-127.85134847417753,52.86944132137121],[-127.85159033220951,52.869545689634585],[-127.85170631442863,52.86964475003243],[-127.85201530519416,52.86979513165911],[-127.85225719101054,52.869900054150726],[-127.85250710004628,52.86999700285202],[-127.85276148270816,52.87008996157312],[-127.85301769233827,52.87018176100504],[-127.85327115462047,52.8702747331595],[-127.85352469088284,52.87036938059292],[-127.85377011823708,52.870470316286195],[-127.85401379939242,52.87057352994713],[-127.85426282761892,52.87067160987177],[-127.85453049351435,52.87074865262957],[-127.85480528409242,52.87081830048124],[-127.85509030980869,52.87086648758799],[-127.85538696731503,52.87088254702813],[-127.8557183988622,52.87082070027289],[-127.85597140919687,52.87073207560611],[-127.85618149610292,52.87059815930107],[-127.85644299325836,52.87053349605347],[-127.85674923758815,52.870534827884676],[-127.85704333016106,52.87055596356013],[-127.85733694907674,52.87058775079318],[-127.85763315622039,52.87061502144468],[-127.85792501355616,52.87064907702142],[-127.85820296778944,52.87070578023588],[-127.8584547551589,52.87080268683191],[-127.85856410184918,52.87087718410884],[-127.85865894753032,52.87089641773576],[-127.85898810195634,52.87091083317915],[-127.85930742405404,52.87093436211809],[-127.85961113301731,52.87094133154297],[-127.85991129277743,52.870952275295046],[-127.86020455008689,52.87097565830217],[-127.86048295761388,52.8710211302668],[-127.86074860587392,52.87109427206052],[-127.86100132393656,52.87119115857039],[-127.86124083351565,52.87130506841598],[-127.86146404364028,52.87142932476289],[-127.86167068541978,52.87155777106233],[-127.86186638768889,52.87169143023634],[-127.86205484640902,52.87182968777386],[-127.8622369744131,52.871971964270934],[-127.86241640426336,52.872116534174666],[-127.86259399945997,52.872261688892394],[-127.86277065834648,52.87240685818801],[-127.8629510046821,52.87255084779479],[-127.86311776058207,52.87270345543089],[-127.8633277174019,52.87282231353827],[-127.86359174219568,52.872900523705816],[-127.86386745940594,52.87296957106658],[-127.86414771311891,52.87303574787448],[-127.86442255884594,52.873105937724944],[-127.86469836732266,52.87317666767486],[-127.86497599732125,52.87324680311125],[-127.86524191228003,52.87332553565333],[-127.86547264044346,52.87342948764743],[-127.86562755558649,52.873587893639204],[-127.86566252297577,52.87379135672836],[-127.8657003037662,52.87397403253668],[-127.86571745089189,52.874153116920695],[-127.86568501502703,52.87432626249757],[-127.86559003271948,52.87449536093943],[-127.86538925103346,52.874650435825835],[-127.86524054575139,52.87480412789059],[-127.86506958119755,52.874938560329504],[-127.86486012902932,52.87506574735265],[-127.86464214045994,52.875189150462994],[-127.86441559077484,52.875308205033306],[-127.86418421036157,52.87542341682092],[-127.86394891174704,52.875534197387154],[-127.86371150706933,52.87563941493462],[-127.86344795071864,52.875721497121354],[-127.86316494835454,52.87578427435161],[-127.86288357043466,52.87584198522932],[-127.86259913926494,52.87589357395219],[-127.8623117039072,52.875940160698896],[-127.86202320816155,52.8759839655748],[-127.86173360314604,52.87602386837189],[-127.86144198071035,52.87605987449807],[-127.86115031824383,52.87609531555466],[-127.8608596664586,52.87613242582453],[-127.86057104585322,52.876173431110615],[-127.86028360639207,52.87622001289056],[-127.85999718719627,52.87626882872824],[-127.85971071807107,52.87631651470391],[-127.8594232375804,52.876362538991884],[-127.85913282680609,52.87640524599215],[-127.85883948020117,52.87642333726422],[-127.85854133793438,52.87641684220293],[-127.85824533450486,52.87639518390914],[-127.85794892541364,52.876364554529026],[-127.85766545167344,52.876310188487736],[-127.85743005897469,52.87620573015609],[-127.85721958955581,52.87607510412464],[-127.85696134320109,52.87597997377816],[-127.85669234078438,52.875915844045316],[-127.85639811381766,52.87589246715728],[-127.8561072153429,52.875923964668615],[-127.85586243159842,52.87600966101309],[-127.85555947422297,52.876085065499296],[-127.85530757152112,52.87613556687408],[-127.8550063129401,52.87618571671511],[-127.85473337318848,52.87624495165647],[-127.85447088004065,52.876330368462085],[-127.85450165831942,52.87663142438801],[-127.85450694250514,52.87681685741265],[-127.85442858026471,52.876983997613834],[-127.8542383481654,52.87712599925427],[-127.8539956706651,52.877239126538825],[-127.85372472932009,52.877301690363616],[-127.85343690957535,52.87733985832983],[-127.85313926086627,52.87736640586519],[-127.85283974213057,52.877392426117034],[-127.8525471410355,52.87742786930749],[-127.85226508273189,52.877491725891154],[-127.85205999482477,52.8776132154776],[-127.85193090393747,52.87776994335174],[-127.85187908685437,52.877948438004466],[-127.8518701317024,52.87812793430436],[-127.85182950061014,52.87830680865227],[-127.8517085054051,52.87847853723237],[-127.85160003000578,52.8785099562085],[-127.8514415039545,52.87850348550703],[-127.85113849510815,52.878492564245185],[-127.85085610034959,52.87852727735851],[-127.8506455925871,52.87865277747376],[-127.85056395287013,52.87883061093743],[-127.85031462863718,52.87891972952507],[-127.85006304018901,52.879021213854394],[-127.84987290922406,52.87912285142081],[-127.84968245791362,52.879260364686345],[-127.84949704276737,52.87938491172284],[-127.84929160802845,52.87952041810893],[-127.84909548928479,52.87965577755798],[-127.84889742082439,52.87978948138043],[-127.8486831314743,52.879913916206384],[-127.8484506390609,52.88002630621698],[-127.84822293499695,52.88014198335479],[-127.84802486192875,52.880275694628146],[-127.84783062029756,52.88041157827436],[-127.84763838404031,52.88052950355106],[-127.84742594782233,52.88065390678451],[-127.8471869619907,52.88081011386112],[-127.84704421286577,52.88093173533096],[-127.84689691613265,52.881076977306165],[-127.84669467615197,52.881200653935274],[-127.84647157134518,52.88131513420478],[-127.84626517077129,52.881450094013786],[-127.84603586730732,52.88161511418749],[-127.84580707383797,52.881641682201064],[-127.84550838784425,52.88162339645787],[-127.84521631937636,52.88158594071565],[-127.84493635429126,52.88152700493655],[-127.84466066050697,52.88145902478952],[-127.84463335944022,52.88164553332637],[-127.84459748410904,52.88182769251729],[-127.84457643552815,52.88200794205948],[-127.844594323001,52.88218477372732],[-127.84466502688132,52.88235572777546],[-127.8447672166272,52.882522833753335],[-127.84488890222666,52.88268850374587],[-127.84501890603057,52.88285293106232],[-127.84514523769084,52.883018527867115],[-127.84525579634723,52.88318550204956],[-127.84534141417242,52.88335678651897],[-127.84539467272181,52.88353306274201],[-127.84542387375377,52.88371307947238],[-127.84543639239463,52.88389447902182],[-127.8454385729327,52.88407379891085],[-127.84539039346518,52.8842511024182],[-127.84534412319341,52.88442950584196],[-127.84533724242954,52.88461457271434],[-127.845332635636,52.88478782927879],[-127.84535800962185,52.884965108042785],[-127.84546847673714,52.885129832458695],[-127.84559476876011,52.88529431730565],[-127.84573492730526,52.88545633342172],[-127.84588884133746,52.88561365851442],[-127.846054600895,52.88576518362619],[-127.84623396091577,52.885908092196104],[-127.84642958357571,52.88603953546442],[-127.84665163790922,52.886157676665015],[-127.84688916232409,52.88626771872972],[-127.84713307203253,52.88637486208294],[-127.8473742722854,52.88648373344437],[-127.84760273932586,52.88659952123613],[-127.84780752760341,52.8867274553445],[-127.84798322453993,52.88687153985101],[-127.84814075192453,52.88702599838241],[-127.84829460742064,52.887181635393695],[-127.84845936185474,52.88733094004238],[-127.84870375750158,52.88742741895976],[-127.84899903146687,52.88745192061763],[-127.84929690912813,52.88745059844943],[-127.84959185610583,52.88742466045575],[-127.84988125853057,52.8873780756305],[-127.85015287616666,52.88730822076946],[-127.85041556740717,52.88722561916581],[-127.85067419540985,52.8871352341731],[-127.85093091284678,52.88704375770477],[-127.85119152132475,52.88695614724256],[-127.85145316353825,52.88687075286164],[-127.85171476566948,52.886784802510796],[-127.85197640617206,52.88669941591805],[-127.85223901688381,52.88661512543329],[-127.85250264730321,52.88653306917026],[-127.85276919690097,52.8864537642192],[-127.853038641548,52.88637665494315],[-127.85331285132281,52.886302267841664],[-127.8535921923347,52.88623901779929],[-127.85387602421328,52.886193066738706],[-127.85417362133822,52.88616426836487],[-127.85447580789818,52.88615501821715],[-127.8547708813097,52.88617502461635],[-127.85504873752272,52.88622725395259],[-127.85531911572066,52.886300334034615],[-127.85558715020026,52.8863835391899],[-127.85585516113495,52.8864661791514],[-127.85612920567141,52.886537522565476],[-127.85641264786558,52.886589651572294],[-127.85670198605754,52.88662767919974],[-127.8569965560279,52.88665722072337],[-127.8572919024732,52.88668337738187],[-127.85758720083327,52.886708422065055],[-127.85788489211551,52.88672445149754],[-127.85818337528637,52.886737113731826],[-127.85847842984191,52.88675654624248],[-127.85876319998174,52.886796326985994],[-127.8590622234466,52.88688519523924],[-127.85928423785269,52.88698032947091],[-127.85947461068359,52.887097262116],[-127.85963012417083,52.88724725388919],[-127.85969671686568,52.8874289181364],[-127.85988820203114,52.88754976040151],[-127.86017442136287,52.88762257892443],[-127.8604448903791,52.88769732296575],[-127.86071801265751,52.88776867047172],[-127.86099023714637,52.887840587565236],[-127.86125914175965,52.887922080332956],[-127.86152888776878,52.88800132620943],[-127.86180869824278,52.88805518585726],[-127.86212504086454,52.888092772705484],[-127.86240789644731,52.88806699403166],[-127.86271121358607,52.888062188878266],[-127.86298088904557,52.88809714988666],[-127.86320186508034,52.88816818805331],[-127.86341461585701,52.88826402643481],[-127.86371868918073,52.88838306917594],[-127.86390171885117,52.888523095567464],[-127.86407204203607,52.88867060494487],[-127.86423417127334,52.88882216290685],[-127.86439355231282,52.888974894163624],[-127.86455288507815,52.88912649603809],[-127.86470214841867,52.889282185269906],[-127.86484775497004,52.88943905328208],[-127.86499247373298,52.889597056165364],[-127.86513168458556,52.88975683218043],[-127.86528460032599,52.889910776806644],[-127.86546860393892,52.89005134136061],[-127.86568288992753,52.89018190138521],[-127.8659158261255,52.890291978678164],[-127.86619668395076,52.89032675506775],[-127.86649852408235,52.89033037558491],[-127.86679497739873,52.890338555758625],[-127.86664883842832,52.89002084414447],[-127.86670727622007,52.88984560137403],[-127.86683477333717,52.889674310899984],[-127.86701997675483,52.88954470072144],[-127.86730318776219,52.8894847197044],[-127.86758810169457,52.889420783066576],[-127.86782924625052,52.88931437928396],[-127.86806558298264,52.88920469743031],[-127.86829908510236,52.88909393018133],[-127.86854513170942,52.88899306076977],[-127.86879790367827,52.88889712379949],[-127.86905159750002,52.88880117160747],[-127.86930723945751,52.88870686484142],[-127.86956588552731,52.888617558575504],[-127.86982949496303,52.888535463572836],[-127.87009725771865,52.88846282566049],[-127.87038102254013,52.88841571487564],[-127.87067692561514,52.888390264708036],[-127.87097571094445,52.8883670188323],[-127.87126435491881,52.88832486812826],[-127.87154462040104,52.88826156059498],[-127.87183566530229,52.88823170093033],[-127.8721322652677,52.88822249453744],[-127.8724311102575,52.888221663410356],[-127.8727284485975,52.88822925832565],[-127.87302418731868,52.88824248283294],[-127.87331919900222,52.88821816114234],[-127.87359970703515,52.8881604496427],[-127.87387609809787,52.88809382633198],[-127.87416315930277,52.88803712998441],[-127.87436902397236,52.887912218165475],[-127.87448566458195,52.887748938497694],[-127.87443138231231,52.8875732552194],[-127.87435538816979,52.88739062724295],[-127.87436288256632,52.88722236181931],[-127.87459625888366,52.88710934155552],[-127.87481415656842,52.88698312492241],[-127.8750111651642,52.88684770824603],[-127.87520532460304,52.88671121567895],[-127.87539565268625,52.886571976958315],[-127.87557936119136,52.88643061052254],[-127.8757526292276,52.8862849174807],[-127.87590698310653,52.88613224410366],[-127.87603093280525,52.88596604797044],[-127.87614353432963,52.885795539907114],[-127.87626755592169,52.88563101929031],[-127.87642398849857,52.88548336080151],[-127.87662505183341,52.88535572321128],[-127.87685556408147,52.88524162281609],[-127.87710422823572,52.88513788586506],[-127.87736065498771,52.88504131522709],[-127.87761633024577,52.884948674939906],[-127.8779082958036,52.88489805147676],[-127.87816283409477,52.884822242766376],[-127.87828386395913,52.884653283643445],[-127.87836936702202,52.884480964110615],[-127.87850847395704,52.88432068366954],[-127.87858097572119,52.884149136644375],[-127.87859344217078,52.88396733915719],[-127.87865651649822,52.88379314472415],[-127.8787785876409,52.883626966224526],[-127.8789424217859,52.88347862068076],[-127.87916998637257,52.883361208501015],[-127.87941109262707,52.883255345142985],[-127.87965998604501,52.88315720359901],[-127.87992036302174,52.883066159737915],[-127.88019217458083,52.88298110225812],[-127.8804449590238,52.88288682465713],[-127.88064910268355,52.88276641219503],[-127.88079861902924,52.882610446031435],[-127.88090355289256,52.88243558033466],[-127.88096753796138,52.882261360767906],[-127.88096986689702,52.8820819668107],[-127.88094970587329,52.88189956975584],[-127.88094826431437,52.881719115111146],[-127.88094590997467,52.881539240025454],[-127.88091106280568,52.88136156182005],[-127.88081602793802,52.88119100751454],[-127.88068048279263,52.88103063406808],[-127.88067796951842,52.88076276003449],[-127.88072115667576,52.8805810352448],[-127.88093468200704,52.88048345640591],[-127.8812306326544,52.88046078474909],[-127.8815081543381,52.88052639982486],[-127.88176015162645,52.88062549627714],[-127.88193108156386,52.88076512441822],[-127.88206198672222,52.88092557080109],[-127.88226787292554,52.881055670937755],[-127.88248831308105,52.88117769078914],[-127.88273754320491,52.88127739449259],[-127.88292968458174,52.88141219756499],[-127.88309825871146,52.88156138563891],[-127.8832914146865,52.88169785783679],[-127.88349822113753,52.88182737615864],[-127.88370321820106,52.88195805306906],[-127.88391092544211,52.88208700024339],[-127.8841231442174,52.8822125118089],[-127.88434441943983,52.882332272927556],[-127.88457561431626,52.88244458375585],[-127.88481404006717,52.8825523032502],[-127.88505695229631,52.882656022413826],[-127.88530256491619,52.882757455818606],[-127.8855499748494,52.88285773891359],[-127.88580182160564,52.882952901428325],[-127.8860563690695,52.88304578709246],[-127.88630911633379,52.88314037809132],[-127.88656463808663,52.88323435905959],[-127.88678492840303,52.88335245452246],[-127.88697813862537,52.883490031973025],[-127.88715216859838,52.8836357728505],[-127.88743473144635,52.883730438864575],[-127.88769827766134,52.883816450696465],[-127.88797372234126,52.88387647933019],[-127.88827906596234,52.883876059072094],[-127.88857114242673,52.8838915448969],[-127.88880114622575,52.883997705842944],[-127.889007480017,52.88413675515597],[-127.8892500391713,52.88423206866034],[-127.88954196531525,52.884264925259856],[-127.88984198436656,52.88429149012821],[-127.89012289308732,52.88434862799938],[-127.8903995907476,52.884415921760564],[-127.89067535150639,52.884483229949666],[-127.89095628766354,52.884540930395026],[-127.89125095107825,52.884572617789615],[-127.89153865975537,52.88461507016746],[-127.89182846089692,52.88468383574126],[-127.89202012390106,52.88480685728187],[-127.89212159206642,52.88497449251363],[-127.89219387710764,52.88515549314509],[-127.89226775943851,52.88533085413441],[-127.89232958028661,52.88550697418913],[-127.89239787184421,52.88568186906055],[-127.89247827630223,52.88585713387068],[-127.89257622633714,52.88602930922818],[-127.89273269070027,52.8861770018509],[-127.89294125901965,52.886303112702315],[-127.89317359542896,52.88641931659603],[-127.89340494550602,52.886534414946134],[-127.89362813000825,52.88665412830181],[-127.89385672398133,52.88676983515352],[-127.89409963245753,52.886872415182374],[-127.89435859177267,52.886959042352544],[-127.89462655713822,52.88703879793996],[-127.89489183942268,52.88712083813702],[-127.89515630926203,52.887205688814795],[-127.89541904415319,52.88729337381967],[-127.89564744705876,52.88740459643068],[-127.89584330351789,52.88753763312769],[-127.89602557182495,52.88767930049105],[-127.89620247322776,52.88782553806587],[-127.89637843799456,52.88797179048852],[-127.89656167292237,52.88811400642457],[-127.8967576603701,52.88824984646372],[-127.89696734848131,52.888379860221264],[-127.89719860943073,52.888492145803575],[-127.89745833345339,52.888574835028344],[-127.89774045307765,52.88863754053602],[-127.89801812847884,52.888704801051055],[-127.89827445790968,52.88879482520853],[-127.89852116018444,52.88889845606114],[-127.89874712024674,52.88901699415554],[-127.89893748629521,52.88915180046561],[-127.89910515926748,52.889299859837436],[-127.89925915913102,52.88945430973303],[-127.89941321005217,52.889609879587205],[-127.89957817770761,52.88975966795914],[-127.89976324194633,52.88990072850787],[-127.89997105138059,52.89002964642847],[-127.90018795186825,52.89015393314054],[-127.9004183430009,52.890267347598915],[-127.90067460183808,52.89035512584805],[-127.9009505672056,52.89042577021223],[-127.9014773257556,52.89056578713604],[-127.90175309380216,52.89063194891364],[-127.90203071331551,52.89069751512971],[-127.90230737096448,52.89076254025656],[-127.90258497769422,52.890828114361156],[-127.90286078886223,52.89089482889536],[-127.90313573824166,52.89096324270073],[-127.90341068850394,52.891031655860324],[-127.9036865126225,52.891098933257595],[-127.9039640884908,52.891163383679725],[-127.90424414835886,52.891221058363364],[-127.90453291321347,52.891265148560436],[-127.90482247628454,52.89130641818409],[-127.90519761605901,52.891303703125836],[-127.90549435522325,52.89129720855586],[-127.9057854222907,52.891267829495455],[-127.90606977864982,52.89121334084773],[-127.90635204757068,52.891153836432416],[-127.90663972749873,52.891111058339646],[-127.90693382717777,52.89108723214397],[-127.907229140058,52.89106954645716],[-127.90752556635447,52.89105576989032],[-127.907822990932,52.89104366233577],[-127.90812041493916,52.89103154506747],[-127.90841680090652,52.89101721089115],[-127.90875409159256,52.89100108197324],[-127.90900707325613,52.890973999097476],[-127.90930073372787,52.890940085208285],[-127.90958829394451,52.8908950597989],[-127.90986442066375,52.890823315743205],[-127.91013202272656,52.89072760383459],[-127.91040103046603,52.89066326502448],[-127.91068429238365,52.89066763010147],[-127.91097670642537,52.890709959275036],[-127.91126553151817,52.890775886779146],[-127.9115371738565,52.89085330280138],[-127.9117818582933,52.89095245527915],[-127.91201243542041,52.8910692074728],[-127.91224748294366,52.89118196755366],[-127.91250648039043,52.89126799892062],[-127.9127885896878,52.891329548053044],[-127.91306263477664,52.89139795364735],[-127.91331192052684,52.89149590716483],[-127.91354165742418,52.89161435607315],[-127.9137348658818,52.89174909290075],[-127.91388805490249,52.89190465859159],[-127.9139925505256,52.89207502457922],[-127.91404603872864,52.89225014874097],[-127.91407738666817,52.89242956121879],[-127.91409760388999,52.89261026688584],[-127.9141196722184,52.89279038638896],[-127.91415651333486,52.89296802341136],[-127.91435951991176,52.893092510853016],[-127.91463286765942,52.8931659732128],[-127.91491052349684,52.893231508920266],[-127.9151934212574,52.89328967667841],[-127.91547185113599,52.89335184448478],[-127.91573997157239,52.89343322740733],[-127.9159867431726,52.893536821317994],[-127.91615515368412,52.8936786842598],[-127.91624596459144,52.893854885177056],[-127.91628194279478,52.89403365662373],[-127.91629755028784,52.894215001997324],[-127.91637682840613,52.894383534861404],[-127.91654839541843,52.89453319269884],[-127.91669603195663,52.8946894102685],[-127.91684911614364,52.894842166926615],[-127.91678575722871,52.895048340110165],[-127.91669648949764,52.895216822033895],[-127.91649190365108,52.89534739289078],[-127.91634408244548,52.8954977720327],[-127.91644278671345,52.89566319019719],[-127.91668944672946,52.89576397760015],[-127.91694156552194,52.89586187753258],[-127.91719289870302,52.89596315270117],[-127.91734002783441,52.896107602888804],[-127.91736408420853,52.896290496175155],[-127.91734703326112,52.89647013176749],[-127.917333493003,52.89662448345529],[-127.91740736621259,52.89690016214535],[-127.91755596794896,52.896973966008844],[-127.91783097527752,52.897000868847236],[-127.91805892877402,52.89712045928417],[-127.91824678452487,52.897259204114214],[-127.91838614420588,52.89741723155965],[-127.91850633288549,52.89758397450543],[-127.91860249323983,52.89775448127477],[-127.91874185586023,52.89791250825015],[-127.91890965756033,52.898061103133124],[-127.9190875028474,52.8982050499434],[-127.91926628740659,52.89834898116219],[-127.9194395754696,52.89849524379817],[-127.91961568910183,52.89864201607037],[-127.91978720911038,52.89878999302736],[-127.91994211500867,52.89894159496858],[-127.92001038996587,52.89911311184775],[-127.92007050965107,52.89928981074136],[-127.92019159780088,52.89945541629543],[-127.92037662088688,52.89959308307156],[-127.92059549089251,52.89971730100667],[-127.92073665266946,52.8998736103093],[-127.92082152489978,52.90000001626921],[-127.92084848937215,52.90004049624585],[-127.92095940332683,52.90020738817756],[-127.92104538513831,52.90037918016969],[-127.92104227526276,52.90055802336704],[-127.92102899645616,52.90073871860858],[-127.92104176643241,52.90091843232493],[-127.92112686200254,52.901091350702345],[-127.92134109590246,52.901215643027825],[-127.92160470705261,52.90129877280135],[-127.92188241213219,52.90136430092288],[-127.92215839775466,52.90143265447741],[-127.92241933851486,52.901518624081376],[-127.92266428671877,52.90162167828906],[-127.92288028802253,52.90174369702673],[-127.923065531641,52.90188583104268],[-127.92324705408306,52.902028034594714],[-127.92342039586958,52.90217484662935],[-127.92356070388551,52.90233229652115],[-127.92365499336789,52.9025022647863],[-127.92387920857188,52.90262021946887],[-127.92414189520174,52.90270335883081],[-127.92441172493619,52.90277965483901],[-127.92468155563715,52.902855950224605],[-127.92495225995383,52.90293110972145],[-127.92522204194655,52.90300628370537],[-127.92548921760984,52.903085427679166],[-127.92574129865473,52.903181067994616],[-127.92598892235713,52.90328126471029],[-127.92622753322925,52.903387769454746],[-127.92646362452444,52.903500484892746],[-127.92668887780626,52.903620668292625],[-127.92687026729081,52.9037594966786],[-127.92700962954216,52.90391639311499],[-127.92712706037372,52.904082616608775],[-127.92723533667797,52.90425235294042],[-127.92734723547923,52.90441978784026],[-127.9274591607111,52.90458778717321],[-127.9275229402683,52.90476217137823],[-127.92755059066553,52.90494107556839],[-127.92755969148075,52.905121404718685],[-127.92755385994512,52.90530142255832],[-127.92753496125263,52.90548052457207],[-127.92750487852888,52.905659818809376],[-127.92747012351606,52.905838624606325],[-127.92743630644772,52.906017414998274],[-127.92740247420281,52.90619620560477],[-127.92736213353565,52.906375102825834],[-127.92731903271556,52.90655460124206],[-127.92727405543357,52.90673413933096],[-127.92723092873527,52.90691308208002],[-127.92718964840867,52.907091994535755],[-127.92715489090405,52.90727080008094],[-127.92712665630374,52.90744949872161],[-127.92710862754987,52.90762746514949],[-127.92710269238324,52.90780524238629],[-127.92711350150654,52.907982180299456],[-127.92715502088946,52.90815861504814],[-127.92722260415552,52.90833462273389],[-127.92730781588168,52.908509220550535],[-127.92740319883146,52.90868196568138],[-127.92750133226062,52.90885355364582],[-127.92759845191725,52.909023472181424],[-127.92770389192708,52.90919213329757],[-127.92781945272901,52.9093578215119],[-127.92794424722446,52.90952168128483],[-127.92807730136228,52.9096826075743],[-127.9282167633208,52.90984117774794],[-127.92836082293337,52.90999856037502],[-127.92851043264828,52.910154721888816],[-127.92866551280233,52.91030856053116],[-127.92882701584547,52.91046004272863],[-127.92899489188737,52.910608066229976],[-127.92917098703305,52.9107525827976],[-127.92935711317257,52.91089245963455],[-127.92955147338785,52.9110288292141],[-127.92975406852217,52.91116170941867],[-127.92996022092728,52.91129115901478],[-127.93017184818599,52.91141772046205],[-127.93039340457099,52.911537392723666],[-127.93062220634586,52.911652461749654],[-127.93085282039173,52.911766379616765],[-127.93107981360457,52.9118825984425],[-127.93129596746726,52.91200628565141],[-127.93150125598355,52.912136867786884],[-127.93171195365142,52.912263441805266],[-127.9319434213682,52.912375666589796],[-127.93219202587694,52.91247526971425],[-127.93245129476149,52.912563496309325],[-127.93271851818562,52.912642058843346],[-127.93289592767509,52.91287679178983],[-127.93297718298803,52.91304528067371],[-127.93291939032797,52.913208772359525],[-127.93276547344597,52.91336880337279],[-127.93259083473596,52.9135235607019],[-127.93240054763685,52.91366232506448],[-127.93221119770377,52.913801073694586],[-127.93208244465049,52.91396124637727],[-127.93197926637272,52.914130531694084],[-127.93187892315267,52.91430088234412],[-127.93176348068044,52.91446700586908],[-127.93161687547331,52.914624108119135],[-127.93138926328734,52.914741063894915],[-127.93115394796777,52.91485254075964],[-127.93102878449068,52.915009846216634],[-127.9309605210335,52.91518920212924],[-127.93092952232831,52.915368511324644],[-127.93095445918074,52.915548579404245],[-127.93096541307374,52.9157283119952],[-127.93093625040262,52.91590702601912],[-127.93089589018439,52.91608536778719],[-127.9308583404147,52.916264219395586],[-127.93085998391987,52.91644410471493],[-127.93080646138567,52.91661985547256],[-127.93071458137813,52.9167923167222],[-127.93058961375044,52.9169541020948],[-127.93043921044047,52.917109587769495],[-127.9302878671429,52.917265079673506],[-127.93014310893587,52.917422149265825],[-127.9300087764977,52.917582975518606],[-127.92988293104705,52.9177458953553],[-127.92979283060482,52.917916640527146],[-127.92973470477096,52.9180935870148],[-127.92965495361335,52.91826640422634],[-127.92955456616893,52.91843619686946],[-127.92947856348256,52.91860951739849],[-127.9294278942263,52.91878689734242],[-127.92939311139519,52.9189651466676],[-127.92936865350218,52.91914490362516],[-127.92935535346717,52.919324477587544],[-127.92936720003836,52.91950363917305],[-127.9293827962405,52.91968329525531],[-127.92938629623431,52.91986315864123],[-127.92939536752911,52.9200429216811],[-127.92940631640371,52.92022266288062],[-127.92942281150874,52.92040174814194],[-127.92944865790678,52.92058123604086],[-127.92946517891605,52.92076088580762],[-127.92945855634555,52.920943713021025],[-127.92947040380143,52.92112287441757],[-127.92953248035539,52.92127934865536],[-127.92969370798154,52.921403374538215],[-127.92982459677842,52.921515567102205],[-127.93006708822679,52.92170551800417],[-127.93025345764794,52.92184930824254],[-127.93035710325643,52.92201856074718],[-127.93043670819668,52.9222123039998],[-127.93055325356416,52.9223779728003],[-127.9306634271513,52.922547117916274],[-127.93076720289706,52.92271916585355],[-127.93087464259513,52.92288946762873],[-127.93099576386257,52.923053383917505],[-127.93114148669987,52.92320513060508],[-127.93132723980486,52.92331473515701],[-127.93158613372746,52.92343435750034],[-127.93185038515756,52.92352810000191],[-127.93211097462539,52.92362358799503],[-127.93238617387088,52.92371210966821],[-127.93258977028077,52.92382479114219],[-127.93260994330907,52.92400212945544],[-127.93260736360939,52.92419161612851],[-127.9326857370488,52.92435791873019],[-127.93292910606398,52.924463776559975],[-127.9331525748332,52.92458284752346],[-127.9333188986754,52.92473649508948],[-127.93342337475079,52.92490292435094],[-127.93339434310138,52.92508443383445],[-127.9334004431526,52.925259770183075],[-127.9335436755692,52.9254177157338],[-127.93372913431571,52.925561515563764],[-127.93395354975112,52.925680569501395],[-127.9341896580698,52.92579047202627],[-127.93443738224124,52.925889529425774],[-127.93468780686308,52.92598629997577],[-127.93491036476527,52.92610538267806],[-127.93512843875503,52.92622846659222],[-127.93535095899463,52.926346993102186],[-127.93558436456482,52.9264586143283],[-127.9358204814078,52.92656851352933],[-127.93605206299507,52.926681284829804],[-127.93627567972783,52.92680315451618],[-127.93644535530946,52.92694776589055],[-127.93655819753627,52.92711349876434],[-127.9366582471612,52.927284481945215],[-127.93676654381242,52.927452522395164],[-127.93687300449042,52.92762115792964],[-127.93698130325348,52.92778920710833],[-127.9370996860078,52.9279537183148],[-127.93724105338529,52.92811113417761],[-127.93744837702037,52.92824335866115],[-127.9377238271235,52.928316170545905],[-127.93801889918207,52.92836960214559],[-127.93821043321063,52.92848246386298],[-127.93827563981651,52.92866579422025],[-127.93836190160083,52.928840921967044],[-127.93846005974788,52.92901137877385],[-127.93858319225806,52.92917749621994],[-127.9387396993133,52.92933970081871],[-127.93898339255169,52.929410791071525],[-127.93928401006988,52.929422087336036],[-127.9395936601787,52.92942707310874],[-127.93988596073378,52.929460368344614],[-127.94017333774082,52.92950831666451],[-127.94045986835208,52.929557964189385],[-127.94074117978784,52.92961609990062],[-127.94101230183834,52.92969570147313],[-127.94114708603956,52.929851535444946],[-127.94125285056741,52.930024662524865],[-127.9414419016381,52.93016446341523],[-127.94172365018964,52.93019120241928],[-127.94202217884406,52.93015657536371],[-127.94231894247389,52.930144387150015],[-127.94261148035439,52.93018272066264],[-127.94288731323805,52.93024318371566],[-127.94308649494359,52.9303800168591],[-127.94331344158763,52.93049228582386],[-127.94358425221725,52.93056516090857],[-127.94386669260874,52.93062719853884],[-127.94414739888826,52.93069206209687],[-127.94441108355925,52.93077177886719],[-127.94466349878954,52.93087017283938],[-127.94490532808896,52.930981636894906],[-127.94512259416429,52.931106402108384],[-127.9452958374998,52.93124645826558],[-127.94540588780997,52.93141110815158],[-127.94548669883974,52.93158856300301],[-127.94558494305574,52.93176013370702],[-127.94571637269009,52.931923299926375],[-127.94588888776556,52.932067860125436],[-127.94611695417797,52.932184033214135],[-127.9463386888677,52.932304229503195],[-127.94653141556495,52.932442284708316],[-127.94669122924313,52.93259433566918],[-127.9468216248059,52.93275528481065],[-127.94694558586733,52.93291801722396],[-127.94706498604462,52.933083066902476],[-127.94718161098173,52.93324871837465],[-127.94729641479624,52.93341496482999],[-127.9474102806709,52.93358122669036],[-127.94752231049142,52.933748083789105],[-127.9476159438088,52.933920285086806],[-127.94772514784998,52.93408662377571],[-127.94790231712332,52.934230539101684],[-127.94810235500752,52.934365107886144],[-127.94822556606529,52.93453177028117],[-127.94825979884745,52.9347094381527],[-127.94812645554474,52.9348713882037],[-127.9478937206701,52.934979490421455],[-127.94760859676818,52.935043055227865],[-127.94732448797308,52.93510828847306],[-127.94703841297037,52.935171311599134],[-127.94679181390711,52.935261705356346],[-127.94661446465017,52.93539915504509],[-127.94648039388434,52.93556559893662],[-127.94635374771308,52.93573135489892],[-127.94622436492466,52.93589827691156],[-127.94617353996655,52.93607118168784],[-127.94619005002342,52.936248586903865],[-127.94623555552451,52.93642831061092],[-127.94628941120726,52.93660733124703],[-127.94633761686812,52.93678476830212],[-127.94638674693901,52.936962190039104],[-127.94644052728614,52.93713953484502],[-127.9464989216345,52.93731568234527],[-127.94656474282267,52.93749115098636],[-127.94664441582586,52.93766358359719],[-127.94673890116198,52.93783408523646],[-127.94684080318227,52.93800335212694],[-127.94694362963725,52.93817259466724],[-127.94704275678183,52.938342463271894],[-127.94714923415549,52.93850996826602],[-127.94727692431306,52.9386726383707],[-127.94742673004788,52.938829337617236],[-127.94757649655345,52.93898548132506],[-127.94770410213404,52.939145910432245],[-127.94775230166344,52.93932334687975],[-127.94776435921479,52.9395053002307],[-127.94772679786873,52.939682478702146],[-127.94757538619909,52.939836870562324],[-127.9474155313936,52.939990289873606],[-127.94734979139417,52.94016288546848],[-127.94733201296464,52.94034477630992],[-127.94730944088452,52.940523939521846],[-127.94728502084638,52.94070314224341],[-127.94725032031674,52.94088195002615],[-127.94721373056224,52.9410602240572],[-127.9471846445953,52.94123950386746],[-127.94716207142031,52.94141866695343],[-127.94714980434735,52.94159878947897],[-127.94716080791221,52.94177796210854],[-127.94718121487291,52.94195922111403],[-127.9472007491478,52.94214161549986],[-127.9472286493986,52.9423233065178],[-127.94727131232291,52.94250195539092],[-127.94733890535579,52.94267515198948],[-127.94743872726737,52.942839403672394],[-127.94758281542627,52.94299339025871],[-127.9477564233148,52.94314017144358],[-127.94794387050415,52.94328391648892],[-127.94812950704498,52.94342881217261],[-127.9482948547303,52.94357852720552],[-127.94841801647905,52.94374351276766],[-127.94862325411366,52.94386846190344],[-127.94880687837531,52.9440100269589],[-127.94899142802186,52.94415157641609],[-127.9491859775834,52.944287355198895],[-127.94937506716097,52.94442603097553],[-127.94954958537949,52.94457222954755],[-127.94968124989144,52.944719137565976],[-127.94983351369248,52.94488812358449],[-127.94998236029429,52.945043714423726],[-127.95013945672052,52.945196361527174],[-127.95030021893409,52.945347270734835],[-127.95046374430031,52.9454975779519],[-127.95062910823547,52.94564728951847],[-127.95079720947597,52.9457958345367],[-127.95096622511038,52.94594379920184],[-127.95113799338903,52.94609060601476],[-127.95131161085736,52.946237372967374],[-127.9514732798876,52.94638770958387],[-127.95158994786743,52.94655279952097],[-127.951698481179,52.94672362901558],[-127.95185068209811,52.94687075021306],[-127.95213080005131,52.94694065464936],[-127.9516842382211,52.946982243050655],[-127.95153578438635,52.947059252497645],[-127.95145311143223,52.947248944875845],[-127.95143315004167,52.94742358122253],[-127.95137903205486,52.947605518415806],[-127.95135184803519,52.94778532323289],[-127.95134774329645,52.94796026165901],[-127.95136445915256,52.948141580776706],[-127.95145073741683,52.94831502115931],[-127.95156190819176,52.94848244405668],[-127.95169607181742,52.94864275992977],[-127.95184131427669,52.948800650065046],[-127.95197639322961,52.94896038548249],[-127.95208386676697,52.94912843414401],[-127.95217476465713,52.94930067642003],[-127.95226748593151,52.949472323421354],[-127.95238317485484,52.949636307724624],[-127.95253932156508,52.94978785537663],[-127.952723035814,52.94993053392627],[-127.95290858886793,52.95007261673343],[-127.95307856844455,52.95022057136561],[-127.95325399601954,52.950365628490914],[-127.95345588731652,52.950497915722565],[-127.95367771265387,52.95061754127174],[-127.9539122751732,52.95073022927155],[-127.95412582566178,52.95083205590383],[-127.95436405117964,52.950902641629156],[-127.95464912341258,52.95097806299861],[-127.95493284970051,52.95108488404718],[-127.95511282496547,52.951227065062504],[-127.95526807354487,52.95137918011921],[-127.95541238832764,52.95153651640221],[-127.95555122753126,52.95169675034085],[-127.95568914345229,52.951856999452495],[-127.95583254812836,52.95201491530909],[-127.95598514320804,52.95216988040483],[-127.95614235389611,52.95232363869882],[-127.95629308761953,52.95247863432555],[-127.95638278398805,52.95262454625208],[-127.95650879421989,52.95280965340749],[-127.95656549118127,52.952988065412136],[-127.95665082459472,52.95316039672688],[-127.95674722251269,52.95333030218534],[-127.95684823621714,52.953499009891786],[-127.95695114033774,52.9536682510561],[-127.95705215565305,52.95383695855315],[-127.95715043527385,52.95400683239069],[-127.95725240212504,52.9541760798903],[-127.95735530949085,52.954345320632],[-127.9574609946712,52.95451395013967],[-127.95757676886842,52.95467904894462],[-127.95772468718359,52.95483352458144],[-127.95790754178527,52.95497676554698],[-127.95806654145187,52.95512881459503],[-127.95829985937378,52.95545673955932],[-127.95841844243844,52.95562179082895],[-127.95854162673022,52.955785644490376],[-127.95868132775189,52.95594361849612],[-127.95883027138504,52.956099761638725],[-127.9589388581217,52.95627058347003],[-127.95909939452318,52.95641531484872],[-127.95934571252499,52.95651882914247],[-127.95958839248195,52.95662464539584],[-127.95982560045107,52.95673279415194],[-127.96008428257898,52.95682152867199],[-127.960347452219,52.9569062690531],[-127.96061151021102,52.95698986413986],[-127.96087376820518,52.95707517454614],[-127.9611324695113,52.9571639064977],[-127.96138222559843,52.95726119857817],[-127.96162130547869,52.95736931263459],[-127.96185133658011,52.95748373777138],[-127.96203503799104,52.95762472545689],[-127.96219223902636,52.95777735506574],[-127.96234482626072,52.9579311912794],[-127.96249468871102,52.95808674966528],[-127.96264456716794,52.95824230759735],[-127.96279626960434,52.9583972699778],[-127.96311333756188,52.95867951629687],[-127.96328338660162,52.95882744646683],[-127.96344882181299,52.95897658324942],[-127.96360418019039,52.95912980670236],[-127.96374487604167,52.959288314289154],[-127.96386625364015,52.959452757627375],[-127.96397007243775,52.95962084757257],[-127.96406098914393,52.95979195947823],[-127.96414358931241,52.95996489593402],[-127.96422062404618,52.96013848114299],[-127.96429395720975,52.96031268402807],[-127.96433111802695,52.960491418028575],[-127.9644173968043,52.9606631719441],[-127.96448053913613,52.96083866562498],[-127.96453812735204,52.961015381836184],[-127.96459570488031,52.96119153322234],[-127.9646560713922,52.96136763804566],[-127.9647210648252,52.96154310067816],[-127.96480180708703,52.961716067584085],[-127.96483615664144,52.96189428326405],[-127.9648575106064,52.9620738456509],[-127.96487607577305,52.962253445574696],[-127.96489462659832,52.96243305468566],[-127.96489172261482,52.96261245674197],[-127.96485894225872,52.96279123623433],[-127.96481870544629,52.962970140083094],[-127.96479338071985,52.96314879513388],[-127.96483710345053,52.96332797527679],[-127.96496298307795,52.9634884144015],[-127.96514591043076,52.96363220815711],[-127.96533151339352,52.96377315907658],[-127.9655153309469,52.96391581646171],[-127.96568175895528,52.96406548953923],[-127.9657280422835,52.96423958676409],[-127.96574020988272,52.96442210004596],[-127.9658310921933,52.9645920899945],[-127.96592012187766,52.964762666784935],[-127.96593405101878,52.964942908686425],[-127.96594143756518,52.96512270377408],[-127.96594135226029,52.965302614585575],[-127.96591416670596,52.96548130073965],[-127.9658682875196,52.965659177902545],[-127.96586635306167,52.96583912848031],[-127.96592022503506,52.96601589674703],[-127.96599078688513,52.96619015346426],[-127.96607062926446,52.96636369026376],[-127.96615602802129,52.96653601329702],[-127.96624138645345,52.96670777197242],[-127.96632030617593,52.96688132398338],[-127.96638903256847,52.96705616705722],[-127.96638708533631,52.96723611774097],[-127.96623186305263,52.96738947315653],[-127.96601747592106,52.96751411495407],[-127.96582603522063,52.96779194448974],[-127.96587071784812,52.96797167284258],[-127.96598014740165,52.96813911099918],[-127.9661715466905,52.96828388271185],[-127.9663748765833,52.96842453609998],[-127.96650217517784,52.968574861138954],[-127.96645435290941,52.96875108470303],[-127.96635642730108,52.96893319338231],[-127.96635394222463,52.9690004922458],[-127.96646651922725,52.969074838011515],[-127.96667494368266,52.96920419628454],[-127.96671280285724,52.96937731243157],[-127.96671660489463,52.96956052080387],[-127.96671764402227,52.96974434024646],[-127.96673256961489,52.96992568591598],[-127.96680118408572,52.97009828849638],[-127.96692628126361,52.97026154526397],[-127.96707075506052,52.97041998555542],[-127.9672445011169,52.97056617129035],[-127.96740445455785,52.97071651495474],[-127.96751300938955,52.97088508719408],[-127.96758821325722,52.97105870019646],[-127.96761803214393,52.97123923196603],[-127.96757486549349,52.97141538693691],[-127.96749332940408,52.97158881086083],[-127.9674099286357,52.971762274807965],[-127.9673236857491,52.971934656206905],[-127.96726281241301,52.97211110665204],[-127.96726270697854,52.972290461143324],[-127.9672822376546,52.97247060866454],[-127.96725594101814,52.97264815857641],[-127.96717910681878,52.97282262453137],[-127.96714555889416,52.97300477926846],[-127.96726022218886,52.97316428196027],[-127.96743777584837,52.97331152473921],[-127.967607935771,52.97346057665965],[-127.96778365307514,52.97360840559489],[-127.96795197659742,52.97375804369832],[-127.96809444643846,52.97391316224475],[-127.96815103845245,52.97408764161144],[-127.96814081909326,52.974269971781766],[-127.96810894209254,52.97444817094979],[-127.96806684336939,52.974627105800124],[-127.96802096332028,52.97480498282237],[-127.96800963672801,52.974983403566945],[-127.96806541990384,52.97516070325765],[-127.96815915001066,52.97533120823924],[-127.96826212583817,52.975499872767166],[-127.9683632636051,52.97566912390283],[-127.96846624106044,52.97583778821822],[-127.96857383646136,52.97600525432777],[-127.96868882440945,52.97617147585744],[-127.96880288840086,52.976337712713175],[-127.96890400458335,52.97650640773729],[-127.9689829533574,52.976679956942185],[-127.96905633497046,52.97685416408788],[-127.96901987819538,52.97721515497719],[-127.96894073757043,52.97738013652356],[-127.9687460763583,52.977508379997204],[-127.96849651907245,52.97762016107175],[-127.96827181252495,52.97774441290431],[-127.96808705230276,52.97788537625326],[-127.96802215881125,52.97805572380856],[-127.96799977292365,52.97823713577506],[-127.96799330707749,52.9784199587482],[-127.9679913656992,52.9785998992689],[-127.96800435752442,52.97877959931281],[-127.96801454447001,52.97895933721947],[-127.9680343667989,52.97914564883815],[-127.96803817540376,52.97932885609319],[-127.96791606633727,52.97947270025647],[-127.9676404727487,52.97956641385012],[-127.96737076435943,52.97964602112236],[-127.96708778618809,52.97970118840352],[-127.96678913702253,52.97970001311759],[-127.96649727351796,52.979724496688995],[-127.96621851562672,52.97979024491736],[-127.96593052867742,52.97983820230515],[-127.96564040656246,52.979880033862436],[-127.96537443320003,52.97996013910506],[-127.96519717962752,52.98010209315346],[-127.96510900545111,52.98027394785741],[-127.9650818068271,52.9804526322121],[-127.96507429959163,52.98063323003897],[-127.96508820425002,52.980812905799084],[-127.96517444944169,52.98098297245423],[-127.96554412891642,52.98078456832296],[-127.96576145160232,52.980661557484204],[-127.9659855149623,52.98054292650852],[-127.96621049082488,52.9804237148926],[-127.96643151364685,52.98030008499432],[-127.9666881374414,52.98021957744808],[-127.96698833612697,52.98019382440599],[-127.96728406154647,52.98017207308497],[-127.96758090817968,52.98015423010047],[-127.96788359940747,52.98012170744113],[-127.9681655464083,52.98012484489893],[-127.96839167784945,52.98023260645407],[-127.96860049980396,52.98036923651464],[-127.96879732385159,52.98050886457808],[-127.96896104982058,52.980659142914774],[-127.96912664135591,52.98080938088598],[-127.96929673342511,52.98095618953269],[-127.96946870600911,52.98110295754177],[-127.96964160515766,52.98124971878635],[-127.96981447934031,52.981395915243056],[-127.96998738045836,52.98154266699397],[-127.97015476626122,52.98169119662163],[-127.9703221794,52.98184029051942],[-127.97049414418049,52.981987057203945],[-127.9706780058692,52.98212858489154],[-127.9708619726466,52.98227235244187],[-127.97105413239652,52.98241149887088],[-127.97126249119952,52.98253804356169],[-127.97149614362178,52.98264622952384],[-127.97175048305041,52.982737819599265],[-127.97201660006371,52.98282192138385],[-127.97228273304904,52.98290602231366],[-127.97254829101242,52.98299797892917],[-127.97264693218756,52.98309272933978],[-127.9726365128264,52.98333054506538],[-127.97265510521432,52.98351014171799],[-127.97267560382555,52.9836902713984],[-127.97265681965678,52.983868816769146],[-127.97261002381602,52.984046710077735],[-127.9725481889346,52.984222613186354],[-127.97246851396511,52.98439601696351],[-127.97238226596147,52.984568400758825],[-127.97231289164918,52.98474275291315],[-127.97227733539295,52.98492157878884],[-127.9722614059553,52.98510119709797],[-127.9722594823359,52.98528113696924],[-127.97226036411485,52.9854610388368],[-127.9722500295045,52.98564056344604],[-127.97222568826083,52.98581975748857],[-127.9721929208511,52.98599853652927],[-127.97215732234184,52.986176806925776],[-127.97210865680547,52.98635473100182],[-127.97207210637585,52.98653245229643],[-127.97207298697208,52.98671234507033],[-127.97205718613165,52.986894767832894],[-127.97192159250262,52.987050041505796],[-127.9717149470405,52.987182407907035],[-127.97146670125746,52.987282962399185],[-127.97128566658306,52.98742443207536],[-127.97112285007094,52.98757624123408],[-127.97097518693691,52.98773283647696],[-127.97085402433267,52.987897399905],[-127.97075925862444,52.98806769144369],[-127.97067866979768,52.988241664640874],[-127.97058387644563,52.988411391485016],[-127.97044563810086,52.988570070205206],[-127.97028284037152,52.98872244261837],[-127.97015303765104,52.98888210084767],[-127.97010438679735,52.989060588327455],[-127.97001253541025,52.98923362821438],[-127.96982186461781,52.98936852169794],[-127.96959214408751,52.98948669729671],[-127.96943278453332,52.98963284120974],[-127.96940844036591,52.98981259901133],[-127.96937100242477,52.98999145463723],[-127.96930837604062,52.9901707311095],[-127.96909872648169,52.99027904668861],[-127.96882987801757,52.99035864133329],[-127.96860773987326,52.990479486017605],[-127.96839329513864,52.99060525048985],[-127.96819032620029,52.99073699256934],[-127.96802641597458,52.990886008179395],[-127.96787683893865,52.991042074820484],[-127.96773390047017,52.99120027228924],[-127.96758905500636,52.991357945400644],[-127.96744514816187,52.99151559366547],[-127.96730977140321,52.991675906178536],[-127.9671979617651,52.991841429862184],[-127.96713049719841,52.992017422709665],[-127.96709394721701,52.99219570637818],[-127.967036774164,52.992372083343746],[-127.96697397890071,52.992547998094715],[-127.96694678026267,52.99272668156995],[-127.96694671449491,52.99290659811802],[-127.96702207746814,52.99310318194594],[-127.96695451346213,52.99325675736824],[-127.96694806696449,52.99344014316169],[-127.96687394851301,52.993653793680856],[-127.96681022544549,52.99382972364987],[-127.96674742709124,52.99400563812749],[-127.96668741887437,52.99418150599011],[-127.96663307318082,52.9943584002567],[-127.96658617382407,52.99453517023484],[-127.96655153666458,52.99471454241893],[-127.9665374966391,52.994895247856505],[-127.96654670414591,52.995073879523396],[-127.96658684027312,52.9952553669439],[-127.96667508990852,52.99542764005961],[-127.96683225124906,52.99557634448624],[-127.96704367508923,52.995707329119696],[-127.9672739693239,52.995822305303754],[-127.9675249064113,52.995919557451806],[-127.9677812597935,52.99601279985802],[-127.96802949762419,52.99611234686571],[-127.96828041241947,52.996209041832984],[-127.96854825363064,52.996288074566344],[-127.96882222863904,52.99635860169478],[-127.9690551663122,52.996470167524855],[-127.969250944723,52.996605893423755],[-127.96943486550954,52.99674742181671],[-127.96964169875362,52.99687959956842],[-127.96989946077801,52.99696272550051],[-127.9701858779324,52.99701959034394],[-127.9704465627714,52.997105473085355],[-127.97068681513474,52.99721355069113],[-127.97091833822626,52.99733466009346],[-127.97111138765793,52.997471549567216],[-127.97115743277398,52.99763892050473],[-127.97115701612597,52.99783117302482],[-127.97114636209308,52.99800397579354],[-127.97117998320252,52.99818556168256],[-127.97116858590834,52.99836230461506],[-127.97102745956254,52.998519909926614],[-127.97087888508337,52.99867764853106],[-127.97082445802579,52.99885285992141],[-127.97080018133944,52.99903373684426],[-127.9707411492538,52.999210155039506],[-127.97058866884578,52.999364586672606],[-127.97057172378743,52.99954254305313],[-127.9705660610549,52.99972254372226],[-127.97055385015916,52.99990209784459],[-127.97055839563126,53.00000010837264],[-127.97076347975127,53.00059750242299],[-127.9709577952534,53.00080162718149],[-127.97120300518398,53.001156783109856],[-127.97144599085007,53.001826402942854],[-127.97183222635005,53.00238377450923],[-127.97170221352205,53.002921756476866],[-127.9717923398302,53.00309343822051],[-127.97218171753795,53.00353697647831],[-127.97273858954634,53.00386786820493],[-127.97310859235121,53.0041553616257],[-127.97340568589372,53.004541595721406],[-127.97360644318115,53.004903660240636],[-127.97378838510372,53.005282853420525],[-127.97387345901055,53.00566703087326],[-127.97414922587078,53.00593535695657],[-127.97453228378254,53.00618171778094],[-127.97475186937224,53.00634618041457],[-127.97494411273662,53.0064645773629],[-127.9752690221495,53.006584679256385],[-127.97550825860353,53.00668940174782],[-127.97597709850791,53.006792517906284],[-127.97633918281318,53.00682848869269],[-127.97654710869084,53.0069023477645],[-127.97675398828207,53.00699415898843],[-127.97704890766113,53.00713157292464],[-127.97738615145155,53.007396062986366],[-127.9777941283274,53.00757529547711],[-127.9781129866892,53.00804634405264],[-127.97834252321398,53.0083036709044],[-127.9789947129601,53.00859369297619],[-127.97927178459805,53.00880874563109],[-127.97978183025383,53.009153842400856],[-127.98033995601553,53.009428622569786],[-127.98090345953362,53.00951836442259],[-127.98156260199933,53.00949607973399],[-127.98200950808926,53.00952835718411],[-127.98243158556141,53.00958851781554],[-127.98273852133715,53.00956262413371],[-127.98318814484752,53.00945305744352],[-127.98389464279805,53.00944509135655],[-127.98462729230575,53.00933748239049],[-127.98561452987936,53.00940269002085],[-127.98662175637007,53.00959590456378],[-127.98773307443844,53.009917940789435],[-127.98831486582517,53.01017827793626],[-127.98853870973016,53.0106912557903],[-127.98856943103884,53.011387396218275],[-127.98829628737833,53.01199563155997],[-127.98811747624332,53.01260450843603],[-127.98812725964372,53.013172658365995],[-127.98813514387204,53.013840047452234],[-127.98811506674984,53.014209173845224],[-127.98810311724793,53.01469193359338],[-127.98809233773332,53.01516011028503],[-127.98801059920397,53.01562835316435],[-127.9880719038505,53.016040388605155],[-127.98799676156982,53.016749520834956],[-127.98801045539281,53.017161793672],[-127.98809992769283,53.01723762983164],[-127.98812672982595,53.017730388790746],[-127.9883538659011,53.018073492941106],[-127.98886098716571,53.0185318062761],[-127.98897230638119,53.01863529669698],[-127.98898617626732,53.01873202799136],[-127.98902052198616,53.019285745640346],[-127.99007069411782,53.01969230776547],[-127.99034871786832,53.019865279619125],[-127.99158121313242,53.020135916574915],[-127.99258522041539,53.02027421233104],[-127.99336004333679,53.02038497821014],[-127.99421707381498,53.02063503083463],[-127.99461786482652,53.020716807287464],[-127.99494658695927,53.020814938522946],[-127.99514583952758,53.02092085475006],[-127.99531610158051,53.021026149132574],[-127.99576462268854,53.02138790390558],[-127.99556638545056,53.0218401967584],[-127.99477359478021,53.02250094209023],[-127.9941282960737,53.022921559195254],[-127.99343397713096,53.023412489750555],[-127.99369855204861,53.02365630895097],[-127.99432168745254,53.02421520818594],[-127.99445184672673,53.02469949183476],[-127.99446746482154,53.02501196766278],[-127.99474123539727,53.02541142957443],[-127.99525242501105,53.02571440280347],[-127.99561861880073,53.026171717681315],[-127.9959902868818,53.02638792963541],[-127.996455554473,53.02664740255692],[-127.99680186213756,53.026920087815846],[-127.99705752126329,53.02709231100201],[-127.99752386076504,53.02729515018253],[-127.99758655405113,53.02739664927593],[-127.99799956991245,53.027597591765904],[-127.99851543437869,53.0277009463312],[-127.99886536940974,53.02783177092533],[-127.99941947209852,53.02829092992949],[-127.99971769483902,53.02857338935867],[-127.99973097413067,53.028577647977436],[-128.00000045260055,53.028666116845876],[-128.00021018237703,53.02873542144624],[-128.00050665090643,53.02872254769134],[-128.00079951975334,53.02869292026377],[-128.00108651432407,53.02863761031202],[-128.00137532037024,53.028600768779896],[-128.00167645473138,53.02862760151749],[-128.00194345691477,53.02856422617774],[-128.00219944500532,53.02846572329595],[-128.00247991094307,53.02839089989162],[-128.00276941996376,53.02830976162251],[-128.00305845123626,53.02823816314859],[-128.00333929437457,53.02819135456946],[-128.00360165118934,53.02818801972077],[-128.00383146552957,53.02828724203552],[-128.00403331318094,53.02844691345336],[-128.00421133114602,53.028596336048686],[-128.00435975557176,53.02875242186096],[-128.00450549436755,53.02891080395969],[-128.00467410182307,53.029058699897625],[-128.0048582811648,53.0292001703084],[-128.00505067053513,53.0293375821155],[-128.0052405589371,53.02948119678061],[-128.0054457164982,53.02961165636039],[-128.00570083352284,53.02969251007768],[-128.00600475999462,53.02971872847578],[-128.0063020424694,53.02970302856294],[-128.00657628518493,53.02963502693423],[-128.00683644130177,53.02954541055795],[-128.00708973691852,53.029449184703225],[-128.00736195137122,53.029377861862024],[-128.00765325843565,53.02933479279179],[-128.00794856432861,53.02931687147325],[-128.00824732530003,53.029312906761895],[-128.00854648380516,53.02931734602056],[-128.0088439869903,53.02932628748282],[-128.00914172901005,53.02934027282146],[-128.00943855701098,53.02935483793281],[-128.00973629942663,53.02936882177098],[-128.01003396229177,53.029381120329546],[-128.01033165205686,53.029393982633216],[-128.01062841600637,53.02940685996837],[-128.01092613286735,53.0294202852681],[-128.01122224783623,53.02943933284317],[-128.01151787337977,53.029467920466224],[-128.0118139626234,53.02948641102036],[-128.01211400749776,53.02947008433713],[-128.01236668321954,53.02938058313239],[-128.0126003935803,53.02926562338039],[-128.01284004875944,53.02915785227556],[-128.01307878813893,53.02905065226926],[-128.01331946126226,53.02894453968698],[-128.01356495231158,53.0288417071621],[-128.01381420231132,53.02873936591537],[-128.0140755029376,53.02865476234413],[-128.01436156539964,53.02859999170421],[-128.01466166727965,53.02856516644098],[-128.01495284848488,53.02855907222294],[-128.01520149294026,53.02866074908316],[-128.0154784556657,53.02872887841108],[-128.01577296725375,53.02875355558106],[-128.01607448960044,53.02874895883186],[-128.01636428894537,53.028713740355784],[-128.01662836532338,53.02862851864168],[-128.01688258607265,53.0285328203804],[-128.01713201270934,53.028434396690926],[-128.01738043218398,53.02833430377975],[-128.0176298565011,53.02823587902646],[-128.01788420550182,53.02814297417884],[-128.01815230201333,53.028063849798784],[-128.01842532299224,53.02799023626229],[-128.01868636998873,53.02790057783143],[-128.01893648395526,53.02777747770002],[-128.0191795730204,53.027683641712436],[-128.019438642324,53.027729093261634],[-128.0195873596183,53.027890204605335],[-128.0195725814651,53.02807036412747],[-128.01953091277463,53.02825491176781],[-128.0194983117548,53.02843369943131],[-128.01946290266454,53.028612535134165],[-128.01943776865778,53.02879119490543],[-128.0194565942074,53.028970788010085],[-128.01948284576886,53.029149689015505],[-128.01951097940383,53.029328557780524],[-128.01953259799475,53.029508094043884],[-128.01955511634296,53.02968705889805],[-128.01958233655103,53.02986650819196],[-128.0196355872875,53.030043260978125],[-128.01966464816797,53.030222113759685],[-128.01966296513228,53.03040261380171],[-128.0196115603198,53.03057892530891],[-128.01953291615456,53.03075233129333],[-128.01954798214987,53.03093142360481],[-128.01954444350997,53.031112520280125],[-128.01953805810052,53.03129253576243],[-128.01965046914876,53.031455954308925],[-128.01978427909424,53.03161732049563],[-128.01979472470853,53.03179761275011],[-128.01985357984964,53.03197426934423],[-128.01990399989842,53.03215051433477],[-128.01989204156735,53.032331190119024],[-128.0198912321878,53.03251055406083],[-128.0199519826403,53.03268774305881],[-128.0200434147425,53.03286160881843],[-128.02017426263856,53.033019662435315],[-128.02039313258825,53.03314258041859],[-128.020601094242,53.033271845508516],[-128.02070537176448,53.0334410070105],[-128.02077148814416,53.033613054962515],[-128.0210173833539,53.03371477606906],[-128.02129208661376,53.033793575404275],[-128.02156765213326,53.033870682416214],[-128.02185214682595,53.033919612329804],[-128.0221449035184,53.03392636926658],[-128.022442209047,53.033910619770275],[-128.0227419609084,53.03388754596377],[-128.0230411719196,53.03387289218662],[-128.02333854992656,53.03387843701092],[-128.02363751011274,53.03389741418163],[-128.02393240914066,53.03392934658128],[-128.0242196198414,53.033976538354295],[-128.02449726425127,53.034038474767364],[-128.024769868773,53.03411226241005],[-128.02503903361176,53.03419226915712],[-128.02530635926433,53.03427287182947],[-128.025573659426,53.03435291836159],[-128.02583917341414,53.03443467189727],[-128.02610381577634,53.034517560757195],[-128.02636757159158,53.03460158520351],[-128.02663222760808,53.03468502865753],[-128.0268968730785,53.03476791572692],[-128.02716147811796,53.03485024692515],[-128.02742612565103,53.034933132799715],[-128.02768826001946,53.03502222197183],[-128.02795031544775,53.03510963500677],[-128.02823356368074,53.03515184555446],[-128.02843594334752,53.035007127849205],[-128.02868803077948,53.034964125585084],[-128.02899919404436,53.03500361241888],[-128.02928644462403,53.035051356321],[-128.02957384443653,53.03510189483446],[-128.02986106976473,53.03514908180547],[-128.03015169664266,53.03518891895705],[-128.03044566848422,53.035220851249406],[-128.0307396021288,53.03525166253278],[-128.03103302382002,53.03529144943355],[-128.0313267140212,53.03533683569686],[-128.03160817460582,53.03532190098899],[-128.03185525736436,53.03521339855437],[-128.03208526634805,53.035099584936184],[-128.0323132726842,53.03498299849871],[-128.03254225792762,53.034867524636866],[-128.0327751516132,53.03475533682068],[-128.03301094501066,53.03464534940228],[-128.03324865753484,53.03453644038639],[-128.03348444849044,53.03442645200794],[-128.0337098132337,53.03433289204401],[-128.03395213108732,53.03420316917921],[-128.03419084552542,53.034095926779244],[-128.03443239351364,53.033989190995555],[-128.0346758881259,53.03388410701801],[-128.03495343073675,53.03382663583294],[-128.03524898481837,53.033794078993964],[-128.0355455451833,53.033801849069455],[-128.0358408824784,53.03378442274242],[-128.03609838234286,53.033698715075495],[-128.03630028569316,53.03356407990287],[-128.03649172307476,53.03342569722059],[-128.0366774509432,53.033285179837094],[-128.03687080664577,53.0331478843033],[-128.03707087666666,53.033014400279086],[-128.03728925451583,53.03289237414804],[-128.0375221248284,53.03278017683477],[-128.03776076849354,53.03267180710705],[-128.03800137378425,53.03256508888527],[-128.03824004168806,53.032457273703436],[-128.03853521873626,53.032378191150336],[-128.03872337088785,53.03232730410815],[-128.03894935380512,53.03214965193716],[-128.0391406957028,53.0320095892976],[-128.03935609261896,53.03188423879323],[-128.03959967058975,53.031781384562],[-128.03985888298203,53.03169283178827],[-128.0401229578479,53.03160812213569],[-128.04038801108678,53.031524506928704],[-128.04067246152812,53.03147531393438],[-128.04096079462005,53.031428850957454],[-128.04124911214515,53.03138238753321],[-128.0415364491567,53.0313348194118],[-128.04182277848838,53.03128558211194],[-128.0421079778625,53.031232444826806],[-128.04239975736763,53.03118031386835],[-128.04267676015237,53.03111218875396],[-128.04290698738015,53.031003953854515],[-128.04311197269917,53.03087597854762],[-128.04330716359138,53.03073863994151],[-128.04349845802153,53.03059801459273],[-128.04369458732842,53.03046065902419],[-128.04390522239737,53.030333705286374],[-128.0442678757394,53.030162641764065],[-128.0445611131351,53.030199035099464],[-128.044852538038,53.03023658008223],[-128.04513895608758,53.03028654161344],[-128.04542106586368,53.03034386782451],[-128.04570242412282,53.030405125249395],[-128.04597937821995,53.030472063153795],[-128.04625194318095,53.030544681309124],[-128.04651032925943,53.03063323813818],[-128.04676173452444,53.03073200409384],[-128.04702014958974,53.030821115324116],[-128.04729095962065,53.03089600348871],[-128.04756704742155,53.03096407373203],[-128.04784578196424,53.03102873454274],[-128.04812536254587,53.031091703075184],[-128.04840662158557,53.031150713998144],[-128.0486896943398,53.0312085718135],[-128.0489718537174,53.03126700081726],[-128.04925311509422,53.03132600971656],[-128.04953613610277,53.031382745482446],[-128.0498252403684,53.03142985127073],[-128.05011584557386,53.03146963960287],[-128.05037864983518,53.03155250661029],[-128.05062923676527,53.031653520651766],[-128.05088157134878,53.031751696928794],[-128.05114857916786,53.03182496557454],[-128.0514415901887,53.03185629724287],[-128.0517431520548,53.031871230145356],[-128.05204020155492,53.03188960362831],[-128.05233792157358,53.03190235993731],[-128.05263488367547,53.031899435339405],[-128.05293205579707,53.031881377951194],[-128.05322899563546,53.031858831070906],[-128.05352544294382,53.03184526860846],[-128.05382361643808,53.03184792469361],[-128.05412210016667,53.03185730034829],[-128.0544204090577,53.031862750471575],[-128.05471693710282,53.03185086055144],[-128.05501267912038,53.031822734219915],[-128.05532357318017,53.03179881801331],[-128.05558803256946,53.03174209040363],[-128.05568477522067,53.03157898720008],[-128.05571006054592,53.03138741929108],[-128.05565830804832,53.03120617037339],[-128.05562089062175,53.03103138840021],[-128.05574027926744,53.030872939230214],[-128.0559283724913,53.03072505812656],[-128.0561330460211,53.03059146012955],[-128.0563683213901,53.03047245673752],[-128.05660082985057,53.030354066043685],[-128.05678586235462,53.030220253232514],[-128.05688643929923,53.03005932381962],[-128.0569253715703,53.02987929194822],[-128.05695188985834,53.02969387171481],[-128.05701244614758,53.029516825581865],[-128.05712089837178,53.02934510495932],[-128.05731457727956,53.02921618017949],[-128.05758299026965,53.029125750014686],[-128.0577814226307,53.028998418451444],[-128.0579184979045,53.028839093158396],[-128.05804592705894,53.028673210216084],[-128.05820580992196,53.02852189827933],[-128.0583857079987,53.02837863954426],[-128.0585465289947,53.02822730174165],[-128.05870631472044,53.028073748804694],[-128.058893034119,53.02793653093755],[-128.05914033008597,53.0278346909826],[-128.05938765224548,53.02773341498859],[-128.05962814782598,53.0276260878835],[-128.05987162488887,53.027522627070915],[-128.0601298281441,53.02743404598264],[-128.06040277270523,53.02736034426338],[-128.0606708119783,53.02728167878078],[-128.06092989860247,53.02719195948249],[-128.0611898282875,53.027100538935656],[-128.06144680145346,53.02700581554575],[-128.06169518988082,53.02690731376948],[-128.06193203524776,53.02680228745362],[-128.06208992662073,53.02661008497102],[-128.06198813056295,53.02643755054122],[-128.0618938027679,53.02626489444313],[-128.0618759847746,53.026090335938804],[-128.06200516022597,53.02592273158815],[-128.0622826956259,53.025866880362194],[-128.0625526975278,53.02579041792018],[-128.06281867802173,53.02570842035649],[-128.0630965801774,53.02564078616498],[-128.06333920543327,53.02553957455339],[-128.06355835576198,53.02541636281737],[-128.063774587988,53.025290950806266],[-128.0640299225093,53.02520128991747],[-128.06430479410844,53.02512922194649],[-128.06454735954372,53.02502689676993],[-128.0647674836249,53.0249047775955],[-128.0649953459392,53.02478813629275],[-128.06523294871673,53.02467972671936],[-128.06547538786717,53.02457459484119],[-128.06571669410076,53.02446555441985],[-128.06595992068588,53.02435760977282],[-128.06622705712635,53.024299680191504],[-128.06646466799594,53.024229945628214],[-128.0667300594123,53.0241552309769],[-128.0669943739787,53.02409679305676],[-128.06724176575932,53.02401679678808],[-128.06756161434296,53.02394785155299],[-128.06792618140489,53.02393417867182],[-128.0682543286815,53.023920578318574],[-128.06853627324415,53.023917311057616],[-128.06885437940463,53.023908368987925],[-128.06910964556542,53.02389436759885],[-128.06942815853694,53.02387476317684],[-128.06971855605224,53.02394925642604],[-128.06999211511317,53.02402292351904],[-128.07026495275062,53.02410108651976],[-128.07056657538953,53.02411821140272],[-128.07078071044444,53.024007960328674],[-128.07106574298354,53.02395307730259],[-128.0713430075319,53.02389216018521],[-128.07164156038831,53.023884674931885],[-128.07193706592167,53.023910306507055],[-128.0722200131474,53.02396586810427],[-128.07249617805013,53.024035564784924],[-128.07276525952807,53.0241132231167],[-128.07303788413705,53.02418689967322],[-128.0733156450457,53.024250961585885],[-128.07361270526474,53.024270400853375],[-128.07389908931955,53.024319728264075],[-128.07419270545003,53.02434483148088],[-128.07449116851348,53.024354720137886],[-128.07478950961956,53.02436180328264],[-128.0750875893785,53.024363841429754],[-128.0753858211682,53.024368683055215],[-128.07568190254807,53.02438701339672],[-128.0759774814331,53.02441431959542],[-128.0762713732627,53.024445017664156],[-128.0765499570583,53.02450681564483],[-128.0768462590181,53.02452962308265],[-128.07714245172312,53.0245501897669],[-128.07744054785007,53.024552221706315],[-128.0777378346592,53.02453801757239],[-128.0780303614921,53.02450259811801],[-128.07831219680784,53.02443990703243],[-128.0786068330275,53.024447601827376],[-128.07889541622583,53.02444644377833],[-128.07915219652435,53.024348877193894],[-128.07939365853952,53.024243733281395],[-128.0796109161706,53.02412108006858],[-128.07982135756973,53.02399294176066],[-128.0800240840797,53.02385989024213],[-128.0802151434272,53.023717520337954],[-128.08041987140595,53.02358723968666],[-128.0806627456955,53.02349215683401],[-128.08094172308643,53.023428388686334],[-128.0812335259979,53.02337840121987],[-128.0815205444405,53.02332625550871],[-128.08180667631817,53.023275245705825],[-128.08209287735679,53.023225354947044],[-128.08238005847878,53.023176567150024],[-128.0826672112562,53.02312721417103],[-128.08295336810468,53.02307676606275],[-128.08323848811403,53.0230240846457],[-128.08351946231375,53.022963072943895],[-128.08379939996007,53.02289983692226],[-128.08408248668746,53.02284383538962],[-128.08437194161678,53.02280340529036],[-128.08466871902272,53.02277910365637],[-128.0849671244459,53.022768789152686],[-128.08526429540743,53.02277138243824],[-128.08556190645507,53.02278293499036],[-128.08585886691182,53.02280010317327],[-128.08615592271988,53.02281951087592],[-128.08645562104695,53.0228355081647],[-128.08675715844163,53.02285090718717],[-128.0870535371167,53.02287537349483],[-128.087336859694,53.02291911773342],[-128.08761064797673,53.022997224286094],[-128.08785524294498,53.02310835527584],[-128.0880375865118,53.02324524929059],[-128.08813701873123,53.02342453099623],[-128.0881202935751,53.023597457280225],[-128.0879826002674,53.023760750307574],[-128.0878059320801,53.02391016932867],[-128.08758777334353,53.024032854032754],[-128.08745323196797,53.02418432480564],[-128.08742286369514,53.02432666103055],[-128.0874384184441,53.024453055850785],[-128.08754527967218,53.02461258492599],[-128.08771236031097,53.02476208026191],[-128.08789406000074,53.024904590750566],[-128.08809216053243,53.025038963810445],[-128.08832829351854,53.02514856673913],[-128.08855675301885,53.02525437718761],[-128.08871918048013,53.02540395354095],[-128.08893549929775,53.02552846985895],[-128.08914631499343,53.025655334178616],[-128.0893444379219,53.02578970481218],[-128.08951790514712,53.02593572163357],[-128.08965837889772,53.026094653429475],[-128.08977765446934,53.02625956549355],[-128.08986922049093,53.02643057324867],[-128.0899422424797,53.02660470744079],[-128.09001807310173,53.026778800783994],[-128.0901105393366,53.026949227415635],[-128.09021877146165,53.027117141621716],[-128.0903205179664,53.02728628266328],[-128.0904397721055,53.02745063842453],[-128.0905220919171,53.02762348648017],[-128.09059882487202,53.027796998458456],[-128.09068114644342,53.02796985532794],[-128.09079950531475,53.02813478258868],[-128.09092430854517,53.028297909558276],[-128.09104915546865,53.02846160059334],[-128.09116657625648,53.02862654411679],[-128.09128493884293,53.02879147082713],[-128.0913977847847,53.028958181168235],[-128.09150783835904,53.02912493194183],[-128.09163542761047,53.02928745276587],[-128.09174086395478,53.02945541513025],[-128.0918666155864,53.02961852429323],[-128.09194706403161,53.02979141346492],[-128.09203589378794,53.02996358897067],[-128.09209966637346,53.03013900673423],[-128.09212995845905,53.03031782514385],[-128.0921360788745,53.03049875815498],[-128.09204541057346,53.03066851196207],[-128.09194161786732,53.03083737743271],[-128.0918274383591,53.031004185014886],[-128.09170569476032,53.03116888462833],[-128.0915620865957,53.03132612493185],[-128.09140048531884,53.03147863515609],[-128.09126536675322,53.03163741046834],[-128.09117018314268,53.03181060634058],[-128.09114623471666,53.03198814428751],[-128.0911578264336,53.0321667292105],[-128.09118351114768,53.032346750245736],[-128.0912176050597,53.03252662219845],[-128.09125257012863,53.03270535771463],[-128.09132657736282,53.03288003820674],[-128.09134198711223,53.03306024129448],[-128.0913379387547,53.033243596204635],[-128.09134032169177,53.033424586180644],[-128.0913759933789,53.033598825182104],[-128.0917238805567,53.033870658295214],[-128.09219178021857,53.033866289477494],[-128.09248094395736,53.03381856428005],[-128.09277018964121,53.03377251387965],[-128.09305932470318,53.03372423174653],[-128.09334985436328,53.033685447916405],[-128.09364599755594,53.03366562025166],[-128.09395029896956,53.03365965469788],[-128.09424818227905,53.03367510971278],[-128.09451650834558,53.033735362621044],[-128.09475309266693,53.03385278310649],[-128.09501689737704,53.033934978612784],[-128.0953010056152,53.03399326357955],[-128.09559003992334,53.034037452710976],[-128.09589116195676,53.03406181388066],[-128.09619130252656,53.034085061786094],[-128.09647209503294,53.03413275813564],[-128.09671962643014,53.0342258838389],[-128.0969398588861,53.0343525674131],[-128.09714635825026,53.03448509059752],[-128.09731532329002,53.03463341829252],[-128.0974678325889,53.03478876414039],[-128.09761023248257,53.03494765245165],[-128.09776997611874,53.03509838541038],[-128.09797266466458,53.03522929798563],[-128.09818908856454,53.03535436109545],[-128.09838088156695,53.035491636590876],[-128.09855902449613,53.035636436415764],[-128.09872614684858,53.03578479493622],[-128.09888598043563,53.03593720181132],[-128.0990402844695,53.036090836792496],[-128.0991835928118,53.036249142134935],[-128.09932505043605,53.0364074892057],[-128.09949581459995,53.03655409592989],[-128.0996977554855,53.036688381869794],[-128.09989416448173,53.036824451874004],[-128.10004652486433,53.03697643423313],[-128.1001584579608,53.03714258767486],[-128.10025293800868,53.03731465654641],[-128.10035201098054,53.03748495763653],[-128.1004575575766,53.03765403139184],[-128.10055385178183,53.03782494674536],[-128.1006222490711,53.03799860062615],[-128.10065536305547,53.0381768015549],[-128.10066618159172,53.03835765031516],[-128.1006657407937,53.03853756957565],[-128.10065131595042,53.03871830275144],[-128.10062846822296,53.038898629856995],[-128.1006075150753,53.039079479208254],[-128.10059954943125,53.03925841138081],[-128.10061580362859,53.03943580035096],[-128.1006759746351,53.03961296345029],[-128.1007797988492,53.03978486543118],[-128.1009147861021,53.03994443778676],[-128.10113103394727,53.0400655799618],[-128.1013702160755,53.04017790155913],[-128.1015874905023,53.04030070161539],[-128.10180479369285,53.04042405677434],[-128.10202841991898,53.04054282399174],[-128.10226109142303,53.04065581582606],[-128.10249915971173,53.040764236140475],[-128.10274075458696,53.040868665263766],[-128.1029914249662,53.04096732730731],[-128.10324386547376,53.0410642713421],[-128.10349085893418,53.04116411886478],[-128.1037262077195,53.041274262230495],[-128.10394527890276,53.04139534908372],[-128.10415537506043,53.04152387741392],[-128.10436090758944,53.041654728711286],[-128.10456551515517,53.04178559616044],[-128.10476738588198,53.041917633055405],[-128.10496837223252,53.042050806364294],[-128.10516841866604,53.04218399611162],[-128.10536850884884,53.04231774075293],[-128.10556855779527,53.04245092980131],[-128.10585683031357,53.04249735032272],[-128.10614513147198,53.04254433460848],[-128.10643337724127,53.04259018924976],[-128.10672429350245,53.04263319757534],[-128.10701859669865,53.042669418887975],[-128.10728317067668,53.04274652536098],[-128.10752232857152,53.042857714337224],[-128.10772782231723,53.04298743969175],[-128.1079014230263,53.04313342801494],[-128.10806958942183,53.04328287608733],[-128.10825598663737,53.043423030446874],[-128.10846064277223,53.04355445547796],[-128.10866529972898,53.0436858711843],[-128.10885167307904,53.04382546906153],[-128.1090097487802,53.04397845908557],[-128.1091530933138,53.04413619608507],[-128.1092863420793,53.044297476284456],[-128.10940943933156,53.04446117974056],[-128.10950216130496,53.04463439383192],[-128.10962878541542,53.04479410613001],[-128.10985918008444,53.04491665692837],[-128.11008210593081,53.04503934084009],[-128.11017691679945,53.04519794443598],[-128.11019243909766,53.04537870823025],[-128.11018210859535,53.04556553017851],[-128.11017705972318,53.04574609680547],[-128.1101580114496,53.045926913735755],[-128.11014453814946,53.04610707495517],[-128.1101693297966,53.046285986978],[-128.11030629630272,53.04644663456887],[-128.11058219628558,53.0465067169132],[-128.11088586192972,53.046523705095524],[-128.11118339595637,53.04653015745132],[-128.1114825743473,53.04653208678556],[-128.11178169748246,53.04653290434732],[-128.11208007421274,53.04653765342578],[-128.1123785774396,53.04654464143028],[-128.11267809050128,53.0465532875771],[-128.11297515747498,53.046569267563164],[-128.11326817658178,53.04659764998222],[-128.11356105060946,53.046641727887675],[-128.1138408313644,53.04670454012594],[-128.11408680158667,53.04680157759517],[-128.11430883638994,53.04692483471834],[-128.11457545703402,53.047004686646886],[-128.11486160346215,53.0470640195456],[-128.11512170998787,53.04714455197297],[-128.11529928354443,53.04729437753955],[-128.11555289119218,53.04737559050169],[-128.11585035060503,53.04741789470558],[-128.11610329797364,53.04750472321285],[-128.11630997697895,53.047638331817254],[-128.1165562379839,53.04774097290391],[-128.11682967662188,53.047826302458574],[-128.11709846789978,53.04791227973434],[-128.11733171463374,53.048016273683466],[-128.1175086572173,53.04815322067148],[-128.11764308702058,53.04831838958696],[-128.11773332145927,53.0484972470763],[-128.11777679568567,53.048675266607475],[-128.11779309709814,53.048852087771145],[-128.1177927010589,53.04903145048778],[-128.11777928689727,53.04921216775777],[-128.117757460394,53.04939303595549],[-128.11773004545157,53.04957400440357],[-128.1177006917047,53.04975388663852],[-128.11766472400743,53.04993220157465],[-128.11757994310244,53.05010635240671],[-128.11751480864956,53.05028071563356],[-128.11752185433818,53.05045937969492],[-128.11755700081872,53.05063922550835],[-128.1175697064382,53.05081891792484],[-128.11755815855688,53.05099960147122],[-128.11754564103776,53.051179737423034],[-128.11755549663917,53.0513583599486],[-128.11754473504652,53.051536222415734],[-128.11759624583817,53.051706806763484],[-128.1176286552779,53.051887822526794],[-128.117606179756,53.052074306876655],[-128.11756150919135,53.052228125260974],[-128.1174833369096,53.052403834108695],[-128.11745051108625,53.05258882707129],[-128.11742840201612,53.05276409501782],[-128.11739749899343,53.05295016542567],[-128.11735539296998,53.053117945254826],[-128.11735221389193,53.05329792238564],[-128.11735747554434,53.053478304082546],[-128.11737109443004,53.0536574148738],[-128.11739596189085,53.05383744482982],[-128.1174376835732,53.054017728416824],[-128.1175154879833,53.054190647821066],[-128.11764208265967,53.05436716675259],[-128.11782184321888,53.05452256317551],[-128.11806365187982,53.05457258686361],[-128.1183543535709,53.05455336245711],[-128.11866202868273,53.05449963862061],[-128.11895801972926,53.05443659099302],[-128.11922919549065,53.05436334341789],[-128.11948718654082,53.05426959849178],[-128.1197267389845,53.05416216749756],[-128.11993112857857,53.05402453636254],[-128.12013972856104,53.05389636194436],[-128.12040153149002,53.05382272390962],[-128.12069283527603,53.05377825648295],[-128.12099437371285,53.053751539950575],[-128.12129281959827,53.05373776490395],[-128.12158932181848,53.053759904083364],[-128.12188682133325,53.05378313659872],[-128.12218251427117,53.0537705387312],[-128.12247839196078,53.053742799196286],[-128.12277415720723,53.05371281899124],[-128.1230705384318,53.05369515764932],[-128.12336853336146,53.05369091819451],[-128.12366779102453,53.05369338110082],[-128.12396738508036,53.05370256303043],[-128.12426447807854,53.05371795007915],[-128.12455676801,53.05374912542256],[-128.12484357833682,53.05380168820842],[-128.12513364865606,53.05384466782883],[-128.12543904504042,53.05383916893122],[-128.12573545336411,53.05384055695265],[-128.12598726506246,53.053922336600856],[-128.12621753202683,53.05404037497],[-128.12644344684276,53.05416466114798],[-128.12668085132518,53.054275844218274],[-128.12691912740925,53.054385890147394],[-128.12713375402896,53.054508692511],[-128.12729818501094,53.054655939599755],[-128.12749803555653,53.05489446788059],[-128.12769477159867,53.05508933401455],[-128.12785750729665,53.0552399738288],[-128.12805678905167,53.05537369596234],[-128.12827243496625,53.05549816390277],[-128.1284961863453,53.05561631546693],[-128.12875314086,53.0557069644688],[-128.12904231456307,53.05575050691809],[-128.12933870740727,53.055732829862485],[-128.12963470652136,53.055707312345305],[-128.12992654787624,53.05567346628246],[-128.13020459539467,53.055606795202316],[-128.13050087428206,53.05558687530915],[-128.13079590186905,53.055560807412],[-128.1310921522578,53.05554033053484],[-128.13139077621486,53.055529889854924],[-128.1316888678167,53.05552731382304],[-128.1319805713876,53.05556519855037],[-128.13226295131608,53.055622316534375],[-128.13253588149576,53.05569585423489],[-128.13280170634755,53.05577680155761],[-128.13307376823104,53.05585147470728],[-128.13334403281934,53.055927865674],[-128.13362300545802,53.055991202931956],[-128.1339129585909,53.05603135655527],[-128.13420631073419,53.056064731133354],[-128.13450286388624,53.056087393352094],[-128.13479700231477,53.05611794533477],[-128.135090327348,53.05615075325663],[-128.13537696989704,53.05619937501278],[-128.13566455458042,53.05624797903793],[-128.13594440294153,53.05631017407958],[-128.1362120218044,53.056389404439486],[-128.13646281826226,53.056487430312764],[-128.13671003599745,53.05658832737405],[-128.1369437168914,53.05669900178163],[-128.13716304682706,53.056821701340056],[-128.13737326349957,53.05694904942524],[-128.13757439488197,53.057081601582446],[-128.1377746429026,53.05721529935205],[-128.1379821531715,53.057344372387185],[-128.1382131728555,53.05745789052681],[-128.1384460203401,53.057570254140735],[-128.13874100048054,53.05759853930793],[-128.13903779262074,53.05762566993301],[-128.13933469310788,53.057636548169924],[-128.13965791116573,53.057575762089414],[-128.13992031977116,53.05755138379637],[-128.1400152648171,53.057691470714694],[-128.14002942291827,53.057898029890865],[-128.14003400947442,53.05808178701632],[-128.14007059071218,53.05830644024346],[-128.1400357064275,53.05843038013534],[-128.13994790826848,53.058598997336816],[-128.14000487332092,53.05878292583697],[-128.1400852867771,53.05898717175804],[-128.14014667098337,53.0591474795461],[-128.1402088596698,53.059324022386186],[-128.14025514904316,53.0595002974393],[-128.1403913459139,53.05966093463987],[-128.14052934007807,53.05982040915381],[-128.1406673506768,53.059979892180415],[-128.1408044202988,53.060139383146264],[-128.14094793757795,53.0602970800439],[-128.14109788902698,53.0604524181239],[-128.14126160639856,53.06060246642178],[-128.14143082957577,53.06075072867948],[-128.14160096702037,53.060898409145835],[-128.14177020750898,53.06104667062079],[-128.1419558809374,53.06118735184518],[-128.14215614857946,53.061320477141166],[-128.142355503939,53.06145417466956],[-128.14254939746004,53.061590777923826],[-128.14274329222937,53.061727380848964],[-128.14294267986207,53.06186164180938],[-128.14307000131282,53.061938919921005],[-128.14314109909228,53.06199536402132],[-128.1433368939435,53.06213248751914],[-128.1435335470134,53.06226791814162],[-128.14376549336654,53.062380288050385],[-128.14402908147602,53.062471349303394],[-128.14429262860227,53.0625612807841],[-128.14451687896567,53.06266930514022],[-128.1445949794229,53.06284556566753],[-128.14465258537027,53.06302331044877],[-128.14469524577314,53.06320133566511],[-128.144701494946,53.06338057831697],[-128.1446834708827,53.063560261899575],[-128.14466076835907,53.063740030445544],[-128.1446558074157,53.06391947668092],[-128.14468728671977,53.06409826093817],[-128.14470292080887,53.06427788901933],[-128.14475392623166,53.06445464154364],[-128.14481428843771,53.06463121508747],[-128.144896858799,53.064803466204246],[-128.14498965680826,53.06497441046849],[-128.1450815288411,53.06514537148039],[-128.14521127185512,53.06530724149225],[-128.1453769321513,53.065458360974475],[-128.14551214066003,53.06561732442999],[-128.14559107907002,53.06579132699589],[-128.14562066672192,53.06596958031348],[-128.14561013281028,53.06614969267494],[-128.1456126924328,53.06632955810443],[-128.1456180477388,53.06650938167881],[-128.14562806632028,53.06668911152366],[-128.145641837329,53.06686878212707],[-128.14556580003838,53.06702934222874],[-128.14544650379437,53.067185083445025],[-128.14530563438677,53.06735803109443],[-128.14529481513566,53.067532534601916],[-128.14524870000653,53.067693115694446],[-128.14511586803948,53.06784013460323],[-128.14498261017604,53.067978749287676],[-128.1449139937383,53.06815655354128],[-128.14481688025043,53.068325898627336],[-128.14473401449715,53.068499477663764],[-128.1446939544051,53.06866890722144],[-128.144673429422,53.06885480547334],[-128.1445556042225,53.069021163507735],[-128.14444629290122,53.06918961767978],[-128.14434451120286,53.0693590469812],[-128.1442476476878,53.069533435708564],[-128.14414289920813,53.069736556767204],[-128.14407772265432,53.069927184465136],[-128.1441165299979,53.070047544716395],[-128.1443806629321,53.0700371433585],[-128.14472026826513,53.06994745857117],[-128.14495709157708,53.06984114835456],[-128.1451694308997,53.06971286300341],[-128.1453652702926,53.06957254633147],[-128.14554790005542,53.069430227383855],[-128.14570189168967,53.06927609783747],[-128.14585012012967,53.069119274844816],[-128.1460135371173,53.06896665050816],[-128.1461466729886,53.06880729446319],[-128.14631051141907,53.06862608164847],[-128.14642620648547,53.06849170366668],[-128.14661563245767,53.06839130028379],[-128.1468054320026,53.068279671076105],[-128.14695833166934,53.068122761533594],[-128.14709251645516,53.06796562710827],[-128.14724813002616,53.067788481264145],[-128.14749427747978,53.06768199592619],[-128.14777202999528,53.067627064954884],[-128.14806611905797,53.06759929551058],[-128.14836844725468,53.067586504092205],[-128.14866837755775,53.0675816113278],[-128.1489678481132,53.067586249974916],[-128.14926615932973,53.067604916677276],[-128.14955693498726,53.06764109942569],[-128.1498302280899,53.06771964085922],[-128.15011141692418,53.06776944852672],[-128.15040916731687,53.06775842120677],[-128.15070957065146,53.06774453788536],[-128.15101625638022,53.06776249165226],[-128.15130321103914,53.06774156995951],[-128.15156558936363,53.06766000666889],[-128.15181158297682,53.06755070799221],[-128.15203363029295,53.06743007945963],[-128.15221912412937,53.067289383193675],[-128.15240165055462,53.06714536879812],[-128.15261502295115,53.06701985730235],[-128.15285258133076,53.06691015408368],[-128.15310478472546,53.066812514050596],[-128.15337566768272,53.06673302442554],[-128.15366690851835,53.06670473678256],[-128.15396991107673,53.066705370311574],[-128.15426570792567,53.06672968405353],[-128.1545580492792,53.0667781566731],[-128.15482853545691,53.066856728900625],[-128.15504851303223,53.06697153774607],[-128.15523623868626,53.067114403383776],[-128.15542211161699,53.06725729358869],[-128.1556026786412,53.06740645024788],[-128.15578939570838,53.06754764750146],[-128.15602508614606,53.06764031310319],[-128.1563311594954,53.067664425179736],[-128.15661569202555,53.06772481021487],[-128.15689742963087,53.067785236666076],[-128.15718881521698,53.067796172072825],[-128.15748747739192,53.06776660957686],[-128.1577847131085,53.067745484216736],[-128.1580847273406,53.06776074364118],[-128.15837959050603,53.067803555990594],[-128.1586335736673,53.06788802628152],[-128.15884497910278,53.06801812270311],[-128.15906180658584,53.0681441917007],[-128.15934340815576,53.068201816938725],[-128.15960678030098,53.06828723446911],[-128.15986911312066,53.06837043744685],[-128.16016633675014,53.06838573375211],[-128.1604487125473,53.06833012321901],[-128.160728635243,53.06826279107454],[-128.1610066160724,53.06819436383966],[-128.16128466847354,53.068127064570156],[-128.16156821109752,53.068075913860284],[-128.1618655461584,53.06805701838024],[-128.16216466559425,53.06807283989566],[-128.16245047795633,53.068121412835886],[-128.1627314710261,53.06818520213755],[-128.16301836952886,53.06823656076965],[-128.16331823366716,53.06828543023159],[-128.16361508792218,53.06831194342595],[-128.163889058582,53.06827497031324],[-128.16414067329734,53.0681661074403],[-128.16434133517674,53.068030153443644],[-128.16448374177077,53.067870605394276],[-128.16462038531034,53.067707799845095],[-128.16480799288783,53.06757264925305],[-128.16504759115494,53.06746680257711],[-128.16530544625724,53.067370718393654],[-128.1655537152591,53.067269760531346],[-128.16589528690173,53.06712841217486],[-128.16619038836032,53.06710226470134],[-128.16648762851125,53.067081673193165],[-128.1667852270238,53.0670678092285],[-128.16708301041896,53.067057860078634],[-128.16738115196122,53.06705462950864],[-128.16768007690817,53.06704857685652],[-128.16797785995854,53.06703862545047],[-128.1682758868039,53.06703315275395],[-128.16857648299688,53.06704164891207],[-128.16887496788706,53.067045134172815],[-128.16916217679946,53.067011268343414],[-128.16943397309666,53.06693173355744],[-128.16970287206976,53.0668505654037],[-128.16997493737455,53.06677662034686],[-128.17026331494174,53.066747223219124],[-128.17056567782805,53.06675343087118],[-128.17086408859174,53.06675579144743],[-128.1711624285816,53.066756475575716],[-128.1714604665226,53.06675155060394],[-128.17175903584553,53.0667567129548],[-128.17205670119813,53.06674451139847],[-128.17235148051287,53.066712184418726],[-128.17263796760824,53.06666431546015],[-128.17280714627034,53.06648015822387],[-128.17298722854215,53.06632663167122],[-128.17320095728465,53.06622741390949],[-128.17338834641882,53.06614325344731],[-128.17362021247646,53.066033056101766],[-128.17385083347534,53.066008067350744],[-128.17409758084722,53.066060694378784],[-128.174294924326,53.06620727277206],[-128.17437710075876,53.06636942372517],[-128.17441775464235,53.0661590501645],[-128.17443755123924,53.065979892363266],[-128.1744573336824,53.06580016981938],[-128.17447243750306,53.06562053341921],[-128.17447446250335,53.065441137877535],[-128.17449143450045,53.065261467026566],[-128.1745553736876,53.06508597106683],[-128.17460330943993,53.06490853680101],[-128.17465312763215,53.06473105884901],[-128.17471706581068,53.06455557170763],[-128.17481590426914,53.064386158584],[-128.17489021044057,53.06421215730346],[-128.1749795914146,53.06404068519242],[-128.17507936925648,53.063871254450845],[-128.17518577921774,53.063703387370886],[-128.17531301183033,53.06354074144996],[-128.175448802067,53.0633807446307],[-128.1755455517946,53.06320688520207],[-128.17565001758567,53.06303793241041],[-128.17581186672146,53.06289370473094],[-128.17606454689326,53.062788723286666],[-128.1763449388882,53.062731989075026],[-128.176648108003,53.06271798794182],[-128.17692493463724,53.062664681039536],[-128.17715932349233,53.062549380536765],[-128.17740271451027,53.06244568840907],[-128.1776450473076,53.062339764318146],[-128.17791019397046,53.062259210632824],[-128.17819336084966,53.06220185573315],[-128.17848492052224,53.06216229012469],[-128.17878236511746,53.062146147067885],[-128.1790800826272,53.062135612155345],[-128.17937624184154,53.062149202135444],[-128.17965888787668,53.062209001613475],[-128.17994533461209,53.06225191533909],[-128.1802231875154,53.06218232271106],[-128.1805032395122,53.06211885874392],[-128.18076936358088,53.06203940144464],[-128.1810019854638,53.06192636764651],[-128.18121233653528,53.061798606931916],[-128.18136333257294,53.061643926663],[-128.1815133569099,53.061488699141556],[-128.18164436756385,53.06132709680201],[-128.1817687444578,53.061163930907455],[-128.18188645954677,53.06099865495212],[-128.18201746726714,53.06083705215303],[-128.18213141511154,53.06067128053808],[-128.18226431762287,53.06051019838815],[-128.18241433465647,53.060354969620604],[-128.18255198465036,53.06019548529001],[-128.18266967990886,53.060029643739895],[-128.18276154221505,53.05985251372034],[-128.18295911799237,53.05973115564012],[-128.1832698025594,53.05968224716038],[-128.1835692161593,53.059650370258545],[-128.1838619540087,53.05961580911107],[-128.18405532808313,53.05948555885137],[-128.18413430824202,53.05931258492664],[-128.18422271450842,53.059141113521584],[-128.18433566495221,53.058974236830885],[-128.18443634916187,53.05880534499042],[-128.18455409086684,53.0586406213605],[-128.1846151402897,53.058464615794925],[-128.18468466062305,53.05828957439568],[-128.18474665049854,53.05811355130171],[-128.18481547384746,53.057943006664935],[-128.18509303123363,53.0578683671936],[-128.18536910973435,53.057801045407196],[-128.18564614252074,53.05773426130308],[-128.18592314535456,53.05766691210111],[-128.18619914857683,53.057598468711795],[-128.1864834745877,53.0575461205131],[-128.18673658691975,53.05745063084624],[-128.18697204867274,53.05733920863635],[-128.18722552840816,53.05719662903334],[-128.18736973288725,53.057074009847305],[-128.18756173894909,53.05693593158389],[-128.18779144755788,53.056821816214224],[-128.18803767560865,53.05671972517131],[-128.18830072616484,53.05663582272979],[-128.1885818293084,53.05657568201753],[-128.18885983333467,53.05650999307838],[-128.18914406186602,53.05645595406465],[-128.18942927444195,53.0564030260695],[-128.18971549928662,53.056351755611765],[-128.1900103950498,53.05632329964041],[-128.19030426247207,53.05629318498636],[-128.19058944336552,53.05623968973908],[-128.19085673728682,53.05622015587434],[-128.191170733529,53.05616332634093],[-128.1914624126864,53.056127079384446],[-128.19177787995102,53.05613523910281],[-128.19204120378754,53.056147164354925],[-128.1923638533564,53.056149575144936],[-128.19268023639225,53.05608485018871],[-128.1929707273393,53.05602564544054],[-128.19328684778114,53.055955874694554],[-128.19351705491104,53.055942063899785],[-128.19384823252955,53.05592862702937],[-128.19413095941925,53.05586395865023],[-128.19438941688858,53.05578180468286],[-128.19468071437285,53.05573827471401],[-128.194920171314,53.055632366724254],[-128.195198159923,53.05558459890543],[-128.1954994472914,53.055571713224545],[-128.19579362414805,53.05554774001935],[-128.19606958339938,53.05547870875377],[-128.19633747539328,53.055398616872075],[-128.1966033686843,53.05531576352313],[-128.1968712874032,53.05523622590686],[-128.1971454041907,53.055167791323655],[-128.19743920054844,53.05513653896485],[-128.19773167776304,53.05509801939751],[-128.19801174408332,53.05503619802224],[-128.1982425148553,53.05492540472543],[-128.19839048470783,53.05476794982015],[-128.19858497948263,53.05464269334127],[-128.19883315288496,53.054542784720255],[-128.1990823096302,53.05444397823747],[-128.19934032758027,53.05435397415573],[-128.199601269828,53.054266157006374],[-128.19986025626577,53.054176698678525],[-128.2000007749107,53.05412811826855],[-128.20011927041435,53.05408779526158],[-128.20038325098076,53.05400440371203],[-128.2006521538217,53.053925959832966],[-128.2009251691945,53.05385472967907],[-128.20119407055049,53.053776293518496],[-128.2014640131082,53.0537000703549],[-128.20175450811115,53.05365934445723],[-128.2020529850639,53.05364648520514],[-128.202350869675,53.05364037127795],[-128.20264903052092,53.05363929150601],[-128.20294537780728,53.053621429669285],[-128.2032425349904,53.05360130994405],[-128.20309519280784,53.05339218920404],[-128.20289924865202,53.05327309128484],[-128.20263377852027,53.05316538861846],[-128.2023924633024,53.053072919833],[-128.2021515678843,53.0529703626082],[-128.202020570528,53.05278783988964],[-128.2018801316067,53.05267555185721],[-128.20168218965196,53.052517818876915],[-128.20148409242893,53.05237522660351],[-128.20130245436357,53.05220765582812],[-128.20111195021724,53.052085099530935],[-128.20096337715384,53.05196007500732],[-128.2007987011641,53.05181293035785],[-128.20065067862996,53.05168060413598],[-128.200494559772,53.05151817036251],[-128.2002861448231,53.05135670237361],[-128.20014149603654,53.05119909438133],[-128.2000011063443,53.051051495924376],[-128.19999320018937,53.051043240200514],[-128.19989489828458,53.05087804191706],[-128.1997302401637,53.05069502314755],[-128.1995059994583,53.05058877833693],[-128.1992894759753,53.05046894614429],[-128.1990322285577,53.050375090626325],[-128.19878759192724,53.050272031533126],[-128.19856817581214,53.0501505659545],[-128.1983586776544,53.05002218917741],[-128.19815462471252,53.04989034759174],[-128.1979569571824,53.0497555797365],[-128.19776474914423,53.049617911853176],[-128.19757438124998,53.04947965338325],[-128.19738036603528,53.049343139559866],[-128.19716816819272,53.04921648804868],[-128.19694692374182,53.049095618598486],[-128.1968031921879,53.048937424619886],[-128.19668229331032,53.048768725353646],[-128.1964977382811,53.04863427607259],[-128.19626590139305,53.048525368670234],[-128.19601679442422,53.04842575027291],[-128.19575945073083,53.04832964764801],[-128.1955048442077,53.04823237254667],[-128.19526198022837,53.04812703141029],[-128.19503436233734,53.04800907510412],[-128.19483022734187,53.04787554351732],[-128.19467107538762,53.047726045905726],[-128.19454955168078,53.04756296123094],[-128.1944491218907,53.047392193141015],[-128.19435607608108,53.04721960166422],[-128.19426866288939,53.04704747036964],[-128.19419236909206,53.04687345523127],[-128.1941151633971,53.046700013013485],[-128.194024045897,53.04652850641781],[-128.19385311771532,53.046368016565225],[-128.1936542055949,53.046298848548105],[-128.1934450154407,53.04621193507026],[-128.19322711168547,53.046119022102296],[-128.19300360587582,53.04602620388183],[-128.1927420856171,53.04592120447197],[-128.1925092603421,53.04581063130871],[-128.19226139365287,53.04571658729928],[-128.19198969761004,53.04564988966743],[-128.191728904902,53.04555888271162],[-128.19147933466434,53.04544973958964],[-128.1912615714305,53.045323181217576],[-128.19109520297178,53.04517829701894],[-128.19097293253583,53.045018585707886],[-128.19087534555422,53.04484831794416],[-128.19079148416682,53.04467219919528],[-128.19071037384882,53.044494899330616],[-128.19062005680442,53.044320577328456],[-128.19050867709214,53.0441544933173],[-128.1903643203363,53.04400135244019],[-128.19017689678915,53.0438647048858],[-128.189961013447,53.04373811829743],[-128.1897368647928,53.04361448274905],[-128.18952276454695,53.04348617630014],[-128.18933983370258,53.04334608107384],[-128.18923894164132,53.04318372038072],[-128.18906900035043,53.04302377055467],[-128.1888987981079,53.04287671247338],[-128.18871202169439,53.042734445625136],[-128.18852808369664,53.04259268187021],[-128.1883634007558,53.04244384364803],[-128.18823262196526,53.04228203638461],[-128.18813958398786,53.042108884005884],[-128.18809221767634,53.04193320761268],[-128.1881306472235,53.04175425422685],[-128.18815125750862,53.041573945248224],[-128.18814666679324,53.04139411254796],[-128.18813920948858,53.04121320300881],[-128.1881215328285,53.04103361294085],[-128.18809269614272,53.04085478582848],[-128.18804249393193,53.040678596915875],[-128.18795506207263,53.04050534035115],[-128.1878343950796,53.04033998206341],[-128.1876916686796,53.04018176769745],[-128.18754056185264,53.040024264557],[-128.1873766311991,53.03987148301127],[-128.18719637190136,53.039728528048045],[-128.18699628205547,53.039599401498734],[-128.1867599010184,53.03949168146246],[-128.18649636396998,53.039400714391384],[-128.18622677582883,53.03931939195238],[-128.18595489949846,53.0392482004106],[-128.185671558033,53.03919011675744],[-128.18538731980212,53.03913260506794],[-128.18510125784064,53.03907624749217],[-128.18481300833085,53.03903169587658],[-128.18451821900703,53.03904163817368],[-128.18421918242416,53.03907800659889],[-128.18392823240325,53.03907161719972],[-128.1836314551387,53.03904292368392],[-128.18331589016407,53.0389579615664],[-128.18308970797318,53.03886629582325],[-128.18282344142014,53.03879499340535],[-128.18255497798512,53.038717004976036],[-128.18227756764855,53.03864702850229],[-128.18200288036442,53.0385753240009],[-128.18175683124886,53.038478983117564],[-128.18156461166865,53.03833904806836],[-128.18132479075643,53.03823642111666],[-128.18105979430334,53.03815332521908],[-128.18079568194545,53.03806908242263],[-128.1805119526936,53.038003146717905],[-128.18023180887516,53.0379522732385],[-128.1799394143512,53.0379178756078],[-128.1796437614211,53.037892514499624],[-128.17934984561515,53.03786486958355],[-128.179057410313,53.03782935850229],[-128.17876906064186,53.037782552198834],[-128.1784790173331,53.03773914846762],[-128.1781843496408,53.03771487758961],[-128.17788663795181,53.03770412324398],[-128.17759441253156,53.03769101590801],[-128.17733714678872,53.03766718259444],[-128.1769928779557,53.03767801934197],[-128.17669435511428,53.03766951001406],[-128.1763967300232,53.03766042735305],[-128.17609761881235,53.03764072626212],[-128.17579792574176,53.03762775222704],[-128.17539616309298,53.03764693558945],[-128.1749159583459,53.03764906247617],[-128.17476122767025,53.037437802230826],[-128.17460543188793,53.03727868377929],[-128.17448499862246,53.03711668034589],[-128.17445657157037,53.036963061241764],[-128.17443010633127,53.03679315583737],[-128.1743311255147,53.03663019187943],[-128.17418461816595,53.03648828180673],[-128.1741284475479,53.036303794601196],[-128.17393367028802,53.036167813767435],[-128.17373339322188,53.0360341849389],[-128.17352218765393,53.03590579716706],[-128.17332288256634,53.035772705781454],[-128.1732161095784,53.0356037144263],[-128.17308568273035,53.03544693372751],[-128.17284291906938,53.03534099019451],[-128.17261004516797,53.03522757302132],[-128.17243450196582,53.03508395353935],[-128.17227434994143,53.03493051736622],[-128.17210601961366,53.034781724555124],[-128.1718898063562,53.03464670012386],[-128.1717117128198,53.03454460384746],[-128.171519978965,53.03437661891941],[-128.17128989300653,53.03426258293586],[-128.17105345349998,53.03415203543151],[-128.17081791239573,53.03404090595007],[-128.17058961147703,53.033925158773584],[-128.17037202686453,53.033799680975385],[-128.17015002645326,53.033679333037846],[-128.16990132568256,53.03358470295457],[-128.16962238892995,53.03352033064035],[-128.1693381243182,53.03346109569937],[-128.16904777683578,53.033410948951264],[-128.16879124292532,53.033327661710615],[-128.1685791248069,53.03319928218829],[-128.16835982612542,53.03307663931441],[-128.16809500163578,53.032995753970084],[-128.16782826848507,53.03291377314409],[-128.1675847058414,53.03281007584125],[-128.16734564724516,53.03270292331558],[-128.16729452921322,53.03252506630523],[-128.16724526315113,53.032347166271634],[-128.16719790817825,53.03216979608613],[-128.167165416847,53.03199103181187],[-128.16712829479246,53.031812917570335],[-128.16710791755327,53.03163336572515],[-128.16709127473436,53.031453754227144],[-128.16704858115222,53.03127629828861],[-128.166965016415,53.03110351214248],[-128.16687036590199,53.03093318054519],[-128.1667572185121,53.03076654266848],[-128.16663120427157,53.03060406901583],[-128.16649410418816,53.03044404084415],[-128.16635151889744,53.030286355265545],[-128.16621442089354,53.03012632673912],[-128.16607183770793,53.029968640793285],[-128.16591000420087,53.029818034181616],[-128.16578302680304,53.02965502130855],[-128.16568191456193,53.02948591943633],[-128.16560022616702,53.02931310682964],[-128.16553985607368,53.02913709579769],[-128.16549343772868,53.02895970759696],[-128.165460087226,53.02878207947536],[-128.16546025297808,53.02860215006326],[-128.16551385789595,53.02842573260854],[-128.16557019745488,53.028248134921796],[-128.16558444179284,53.02806963297714],[-128.16554727267385,53.0278903978692],[-128.16546101398222,53.02771934600538],[-128.16532847273518,53.02755699075126],[-128.16527937861886,53.02738189348799],[-128.16525804217167,53.027201802627204],[-128.1652265319513,53.02702357553007],[-128.16520056542365,53.02684413460871],[-128.16513651038252,53.02666874687303],[-128.1650631651066,53.0264946595956],[-128.16499073245322,53.02631999052614],[-128.16494245281675,53.026142636077836],[-128.16494264953147,53.02596327084916],[-128.164968053457,53.02578344293613],[-128.16506503104182,53.025615188382716],[-128.16521400472107,53.025458875353245],[-128.16538496500206,53.02531224756296],[-128.16540942588964,53.025132436757495],[-128.16556419658738,53.02497994478427],[-128.16573875776388,53.02483100824728],[-128.16579353942853,53.024659608627395],[-128.16577127634028,53.02447953457238],[-128.16573973765318,53.0243007518263],[-128.16569889469253,53.02412269592078],[-128.16565058626543,53.02394478603203],[-128.1655948974564,53.02376868865623],[-128.16552711232268,53.023593369359304],[-128.16543616028497,53.023421847357625],[-128.16538604387412,53.02324508256028],[-128.16535450772503,53.02306629958176],[-128.16532946886988,53.022886841275415],[-128.165311910751,53.02270723664304],[-128.1653018326491,53.02252805965773],[-128.16530013300738,53.022348172812684],[-128.16530310661088,53.022168191184576],[-128.16530700642042,53.0219882015006],[-128.16530812734715,53.021808818837584],[-128.1653147195939,53.021626528688564],[-128.16532579959457,53.021440802053675],[-128.1652492431623,53.021276853617564],[-128.16505648723142,53.02114195159614],[-128.16483594894228,53.02101203432187],[-128.16466405236673,53.020864973671074],[-128.16448450762897,53.02073262631808],[-128.16440822429445,53.02053729292969],[-128.1643554375758,53.02036281856933],[-128.16432489071897,53.02018513799005],[-128.16430917604748,53.02000494316856],[-128.1643018244722,53.01982403882961],[-128.16429631057082,53.01964253575693],[-128.16428898742356,53.019462186882144],[-128.16431132614005,53.019277365607095],[-128.16429495660532,53.019102787784654],[-128.16421377872678,53.01893948840516],[-128.1641207939605,53.01881956917051],[-128.16401669069265,53.01860960773097],[-128.16382255318115,53.01846575204288],[-128.16361310300198,53.01833283110301],[-128.16339768508638,53.0182112294262],[-128.16316951820787,53.01809603128556],[-128.16293317442484,53.01798545777915],[-128.16269322872114,53.01787720086647],[-128.16245420946782,53.017768917525096],[-128.1622187816959,53.017657769813816],[-128.16199146091603,53.01754086795143],[-128.16183060137675,53.01740817415292],[-128.16174671482048,53.017228107585275],[-128.16174391882436,53.01704487746245],[-128.1617150667145,53.01686323700277],[-128.16174536504903,53.01668780331232],[-128.1618365936102,53.01651685770074],[-128.16196077308462,53.01635091297037],[-128.16210877177002,53.01619406447589],[-128.1622994073947,53.01604932115997],[-128.16250519954943,53.01590878362169],[-128.16268179976456,53.015763732005716],[-128.16278862322307,53.01560539562],[-128.1628312671627,53.0154342190598],[-128.1628418865902,53.01525745976014],[-128.16283078098132,53.0150760588154],[-128.16280742382543,53.01489264052629],[-128.16278124680375,53.01470871791131],[-128.16276261994634,53.01452633383933],[-128.1627590364855,53.01434591587253],[-128.16275921362038,53.01416598493846],[-128.16276128562808,53.01398658422371],[-128.16276332933154,53.01380662798429],[-128.16276723867696,53.013626628538965],[-128.16277211725028,53.01344717628952],[-128.16278071305305,53.013267655840444],[-128.16279584756887,53.01308801543892],[-128.1628100280923,53.01290783648732],[-128.16281396590009,53.01272840141087],[-128.16280573802487,53.012548624466454],[-128.16279565954378,53.012368890415914],[-128.162783699711,53.012189181886825],[-128.16276894883313,53.01200953350085],[-128.16275419762374,53.011829876134236],[-128.16273944699532,53.011650227706525],[-128.16272469603544,53.011470570298144],[-128.162710886127,53.01129090457867],[-128.1626989556965,53.011111760393],[-128.16268887755177,53.010932017221116],[-128.16268251699918,53.010752214811475],[-128.16270517198362,53.01057355722515],[-128.16275027548508,53.01039560886963],[-128.16278225982308,53.010216780096485],[-128.16281237793405,53.010037985523596],[-128.1628462276914,53.00985912246757],[-128.16287533400356,53.0096786603774],[-128.16295815372862,53.009507867084146],[-128.16308903146137,53.00934572520013],[-128.16324647354605,53.00919149892412],[-128.1634259924771,53.00904919854512],[-128.16362077974046,53.008913343800955],[-128.16382317176408,53.00878014720414],[-128.1640246508636,53.00864753197709],[-128.16421162844807,53.00850509336842],[-128.16442007131064,53.008380761717135],[-128.16467996327822,53.008294711868125],[-128.16495251740997,53.008219083109644],[-128.16522803317838,53.008146762377066],[-128.16550683980697,53.00808391371041],[-128.165797056924,53.008043266243135],[-128.166089438756,53.008008748388654],[-128.166380609058,53.00796864694744],[-128.16666853048244,53.00791963629749],[-128.16696523125015,53.00791474846719],[-128.16725821953997,53.00794691292931],[-128.16754050184946,53.00800730804402],[-128.16783225405857,53.00805182507987],[-128.16812664993964,53.00805650093803],[-128.1684181045012,53.008021994329596],[-128.16870810358688,53.007977424549004],[-128.16899811699102,53.00793285377952],[-128.16931752224355,53.00793370348739],[-128.1696150622385,53.007927107525255],[-128.16990137146678,53.00788316766993],[-128.17016765788043,53.0077947457071],[-128.17037511060337,53.0076698563232],[-128.17055548238986,53.007526407682384],[-128.17072613708507,53.00737585545874],[-128.17089887142012,53.00722918376493],[-128.1710677719051,53.00708089635988],[-128.17123000544288,53.00692993337714],[-128.17137607129357,53.006773106745804],[-128.17148709558398,53.00660682711081],[-128.1715895441754,53.00643735118762],[-128.17169296070378,53.006268413342795],[-128.1718096658846,53.006103714687086],[-128.1719509687449,53.00594528889205],[-128.17207802686778,53.00578207623108],[-128.17220128076687,53.00561782143308],[-128.17231229880994,53.00545154090772],[-128.17239122634092,53.00527856937696],[-128.1724409270503,53.005099975167866],[-128.1725340107096,53.0049301057077],[-128.17272205557697,53.00479099588339],[-128.17294280368245,53.004670896463246],[-128.17317122904979,53.00455458316207],[-128.17340159012005,53.00443991972821],[-128.17363102410238,53.004325263938995],[-128.17386430331007,53.00421278779399],[-128.1740503887613,53.00407202575704],[-128.17424423626034,53.00393729038171],[-128.17450084546678,53.00384287510514],[-128.1747005033157,53.003711959829936],[-128.17487795151172,53.00356687156615],[-128.17512205033253,53.0034654034375],[-128.17536895347348,53.00336387406035],[-128.17561005797458,53.003258532029626],[-128.17586875513686,53.003168559196055],[-128.17613218013773,53.003079619527576],[-128.17641461747237,53.00303404844976],[-128.1767102713462,53.00302746873585],[-128.17700920417388,53.00303036097621],[-128.17730920566592,53.003036030816176],[-128.17760825294832,53.003041152520616],[-128.1779057796097,53.00305303671868],[-128.17820307628912,53.0030604313231],[-128.17850065313803,53.003054932619996],[-128.17879847368513,53.003054477788616],[-128.17909413355716,53.003029955467944],[-128.17938537237706,53.00299206174326],[-128.17967559890232,53.002952499972785],[-128.17996761858453,53.00291179225351],[-128.18026329956558,53.002905759136226],[-128.1805619523389,53.002921534934174],[-128.18084633618102,53.00296840684318],[-128.1811208488606,53.003041235506394],[-128.18142606025995,53.00303895125853],[-128.18163977270592,53.002927942238436],[-128.1818245413976,53.00278046541315],[-128.18203649184636,53.002653228749224],[-128.1822824488646,53.00255171093632],[-128.18256651156003,53.00250161069775],[-128.18286664007357,53.00250950606282],[-128.1831615838427,53.0025438365113],[-128.18345167905974,53.00253846378847],[-128.18373940031108,53.00248661586568],[-128.18403643932342,53.00247102375173],[-128.18432967923857,53.002435878680785],[-128.18461097052077,53.00234995167637],[-128.18442909274276,53.002244581617994],[-128.1841864328918,53.00213753938312],[-128.183952871459,53.00202583499619],[-128.18375657008886,53.00189439130769],[-128.1836120643863,53.001735074065024],[-128.18346764633586,53.00157744106377],[-128.18332603516322,53.001419755904095],[-128.18318251601568,53.001261549881335],[-128.1830344851629,53.001106225345005],[-128.18285066019106,53.00096277380187],[-128.1827164715777,53.00080438548393],[-128.18262182541608,53.00063406348516],[-128.18253360127457,53.00046137146483],[-128.1824425725773,53.000288740266534],[-128.18230844513937,53.00013147139159],[-128.18210190480846,53.000000214612655],[-128.18201946991695,52.999922147041275],[-128.18185577130626,52.999770474196715],[-128.18171693391494,52.99961217081435],[-128.18160008120532,52.99944562211216],[-128.18150077094603,52.99927537656757],[-128.1814228072229,52.99910250279417],[-128.1814061451677,52.998923445382204],[-128.18140808022173,52.99874292275629],[-128.1814128493999,52.99856290369569],[-128.18141481338935,52.99838294549706],[-128.18141680588224,52.998203542785404],[-128.1814440025241,52.998024229644145],[-128.18148152410052,52.997845855393685],[-128.1814453405563,52.997668280182374],[-128.1813858609725,52.99749169211154],[-128.18133938253592,52.99731375133155],[-128.18130409628728,52.99713559443176],[-128.18125297621646,52.996958295526326],[-128.18115469976848,52.996789716480805],[-128.18108330672692,52.99661727678255],[-128.18110957900902,52.99643798962976],[-128.18107335432018,52.99625984996498],[-128.18100277272953,52.99608515309515],[-128.18090724725508,52.99591540186998],[-128.18078860004562,52.9957500064865],[-128.1806893591488,52.995580879859254],[-128.1806549886666,52.99540214968066],[-128.18062527424493,52.995223333336526],[-128.1806141844181,52.995043616362615],[-128.18061804541102,52.99486417879867],[-128.1806246678472,52.994684125121296],[-128.18069039874132,52.994509713017685],[-128.1808297647043,52.9943513100066],[-128.18092749038985,52.9941819019256],[-128.18094627189586,52.994002188140385],[-128.18089793388359,52.993824281332195],[-128.18072892549597,52.9936777453269],[-128.18057725705447,52.99352360600499],[-128.18044206077502,52.99336300052309],[-128.18031883799506,52.99319936630574],[-128.18022424687476,52.99302959712117],[-128.18011490736825,52.99286346378925],[-128.17999910549304,52.99269857092851],[-128.17996945317486,52.99252087410827],[-128.18006152512163,52.992350450082085],[-128.1801970126076,52.99218932115457],[-128.18032744927848,52.99203893087391],[-128.180587818385,52.991946672628735],[-128.18080359226389,52.991822163805665],[-128.18094501553716,52.99166765029176],[-128.18102571850636,52.99149407258421],[-128.1811432435538,52.99132879061991],[-128.18129495805718,52.99117464216102],[-128.18143999216383,52.991017810038215],[-128.18160500422655,52.99086846414497],[-128.18174879504372,52.99070549334288],[-128.18196757941243,52.990585410553095],[-128.18218040863175,52.99045815530448],[-128.18244527570857,52.99036301120841],[-128.1826626663741,52.9902519211844],[-128.18279315056594,52.990084711211026],[-128.18268756299594,52.98993701212369],[-128.1825916554061,52.98981435264507],[-128.18274241926886,52.989660219593084],[-128.18287226390555,52.98949862649451],[-128.18302782435092,52.989347202286815],[-128.1830502963573,52.98916686304403],[-128.18309161947911,52.98899009373073],[-128.18310013944955,52.988810568927775],[-128.18314892202534,52.98863366135994],[-128.18323905027776,52.98846214902927],[-128.18333787946975,52.988296645621865],[-128.18354788819732,52.98816943969841],[-128.18381958489806,52.98809826348911],[-128.18410983482303,52.98806149515627],[-128.18437485134797,52.987987643313886],[-128.1845455372792,52.98783986453702],[-128.18466592956526,52.98767620219161],[-128.18488663510996,52.987394091133126],[-128.18498240611896,52.987223593588325],[-128.18521456393987,52.98710999129793],[-128.1854477175745,52.98699748212921],[-128.18563659489442,52.98685889754487],[-128.18583486005582,52.98675768905691],[-128.18593085624266,52.98659167058879],[-128.18620113484857,52.98652948324146],[-128.1864325620586,52.98641981110893],[-128.18664172759148,52.98629485692648],[-128.18682110056739,52.98615308347832],[-128.18698037939242,52.98600158425966],[-128.18717786232097,52.98586732142536],[-128.18737162871759,52.98573311824644],[-128.18757694308982,52.98560599163107],[-128.18778115831142,52.98547552188817],[-128.18796329971184,52.98533313009013],[-128.18816657255417,52.985202677109875],[-128.1883515880254,52.98506191732975],[-128.18849086540922,52.98490293990243],[-128.18860552436854,52.98473713719417],[-128.18868431854946,52.98456359712328],[-128.18879615701252,52.9843972815449],[-128.18887995954782,52.984158062366596],[-128.18885477247997,52.983976920201876],[-128.18879172519232,52.98380377260268],[-128.1885584544462,52.98369600052339],[-128.18827445306712,52.98363625422252],[-128.18798442305356,52.98358614363119],[-128.18778304709105,52.98346320416806],[-128.18758842472562,52.98332668639588],[-128.18735434999863,52.98322116903338],[-128.1871174142094,52.98311458327736],[-128.18695380483203,52.98296403624862],[-128.18673844175035,52.98284135466974],[-128.18644721699505,52.98280415913014],[-128.18615432985243,52.98277092187909],[-128.18586398832335,52.982732587479184],[-128.18557859313916,52.98268182908628],[-128.18531922681615,52.982592471609465],[-128.1850987943276,52.98247997058967],[-128.1849133935622,52.98234103545288],[-128.18464198480572,52.98227151370675],[-128.1843694649096,52.982198657770574],[-128.18409437115116,52.98213032415446],[-128.18380400731323,52.98209142915454],[-128.18351105523737,52.982111431965855],[-128.18321446978214,52.9820967488727],[-128.18292027151804,52.982074173474494],[-128.18263568007623,52.98202058608827],[-128.18235752235364,52.98196520177578],[-128.182060002621,52.98198697164174],[-128.18176672893756,52.98201874258781],[-128.18147999761192,52.98206889343472],[-128.18099391319774,52.982126096912566],[-128.18073571464097,52.98204119213388],[-128.18048711999577,52.98194322152079],[-128.18026346805289,52.98182235895604],[-128.17999046422028,52.98175790538956],[-128.17969446274336,52.98173647641924],[-128.1794185124829,52.981669277925],[-128.17913820946274,52.98160832057206],[-128.17889676380867,52.98150404423682],[-128.17871952755468,52.98135989955367],[-128.17847869374975,52.98124944980654],[-128.1782205922265,52.9812026534472],[-128.17792416557523,52.98124568364421],[-128.1776285991282,52.98126908336431],[-128.17734433550993,52.9812216475769],[-128.17708055569935,52.98113683811995],[-128.17683190249002,52.9810377400341],[-128.17659230149718,52.980932860019415],[-128.1763516761094,52.980826321370294],[-128.17612457072394,52.980710564175844],[-128.17587858312194,52.980608607810474],[-128.17563531537863,52.98050492364027],[-128.17540279167386,52.980392628287795],[-128.1751524111651,52.980295791781536],[-128.1749127467324,52.98018979755356],[-128.17472273511487,52.98005093210979],[-128.17450098905474,52.9799300237818],[-128.17422388153454,52.979876287322696],[-128.17392451557404,52.979880125251505],[-128.1736290709595,52.97990575493746],[-128.1733356051425,52.97993358946482],[-128.1730424252168,52.97996702320431],[-128.17274680772476,52.9799892907115],[-128.17244843830716,52.97999423650903],[-128.1721485711887,52.97998798975097],[-128.17184662455597,52.97997786139375],[-128.17155586179408,52.97994903339719],[-128.1713004424946,52.97986293616225],[-128.17106047526073,52.97975076965037],[-128.17077731164872,52.97970609615919],[-128.17048471521576,52.97967785538478],[-128.17018692557264,52.97965755685061],[-128.16988656051447,52.97964178917341],[-128.16958897171102,52.97962541357456],[-128.1693205238773,52.97963147758701],[-128.16921576921646,52.97959024164251],[-128.16905514072815,52.979661026468186],[-128.1688731466648,52.97980674922471],[-128.1686734405012,52.97993486100047],[-128.16837723888057,52.97996385451615],[-128.1680827205111,52.97993452210829],[-128.16779383576122,52.97988770468141],[-128.16752588604396,52.979811919335106],[-128.16735186493756,52.979729921423626],[-128.16699112926685,52.979774672113926],[-128.1667066315825,52.97983203721923],[-128.166428097823,52.97989657424686],[-128.16615251008514,52.979963854554846],[-128.16587693531957,52.980031698966],[-128.1655973887701,52.98009457551585],[-128.16531366907105,52.98014911578825],[-128.16502893798463,52.980201987901935],[-128.16475034221835,52.98026540095789],[-128.16448579644705,52.9803481779198],[-128.16421828859214,52.98042763658484],[-128.16394092882646,52.980497195169825],[-128.1636655042873,52.98056782961634],[-128.16334139964266,52.98067243236332],[-128.1631694135977,52.98075854694605],[-128.1629673808715,52.980896224612906],[-128.16273970956672,52.98100690257117],[-128.16246177336893,52.9810652487619],[-128.1621661293407,52.98110542657869],[-128.1618825411304,52.98116276302112],[-128.1616171727605,52.98124778149608],[-128.16134223750208,52.981309998043955],[-128.1610441421986,52.981320514933856],[-128.16074504955054,52.98132991935066],[-128.16044698219457,52.98134099024709],[-128.16015139190253,52.98132735214905],[-128.15986008697624,52.98128785089887],[-128.1595664482194,52.98125736001138],[-128.15926980519578,52.98124149693822],[-128.15895125603794,52.98123500281157],[-128.15842592323204,52.981254716764624],[-128.15812897994184,52.98126968931859],[-128.15783227833018,52.981289131871804],[-128.15753559018123,52.98130913842865],[-128.15723860427443,52.981322988470474],[-128.1569409494517,52.98132395360809],[-128.1566410909351,52.98129973053931],[-128.15638710179934,52.98122310857146],[-128.1561671528414,52.981099891719374],[-128.15592123948173,52.98099845820683],[-128.15567354758164,52.98089873380524],[-128.1554419574576,52.980785261912615],[-128.15519872317608,52.980681526888866],[-128.15492979433554,52.98060461013618],[-128.15463619244588,52.980574671431704],[-128.15433966955166,52.98056103593802],[-128.15404284938307,52.9805412349594],[-128.15375023017924,52.98051239713571],[-128.1534892346425,52.98042636386029],[-128.153254037067,52.98031519579404],[-128.1529869501288,52.980237676035195],[-128.15269332355425,52.98020716800522],[-128.15239892774946,52.98018003640668],[-128.15211697876106,52.98012240880117],[-128.15183760818562,52.98006024930533],[-128.1515472027599,52.98001959031711],[-128.15125018519683,52.98001436840777],[-128.1509714848789,52.980076064420594],[-128.15070502025034,52.98015828001968],[-128.15041173623402,52.980189981938956],[-128.15013713519153,52.98012997346955],[-128.14988497768272,52.98003368178393],[-128.14964804033352,52.97992478051929],[-128.14941291220777,52.979814724754675],[-128.14917060987844,52.9797104045661],[-128.14891245568936,52.97964336710914],[-128.14864326172747,52.97956083596156],[-128.14840153434392,52.97944921255271],[-128.14817812846596,52.979331093419034],[-128.14792420062798,52.979236515970904],[-128.14768190524583,52.9791321926856],[-128.14742110019657,52.97904950590632],[-128.14726403893746,52.97889597987447],[-128.14709785404852,52.978746548005645],[-128.14699702225155,52.97857910951235],[-128.1470392966521,52.97840009488305],[-128.14704581929337,52.97821500553923],[-128.146911787996,52.97807395571983],[-128.14669726382826,52.97794670377588],[-128.14647580660474,52.97782966706664],[-128.1462164525781,52.977738548044584],[-128.146043156949,52.97759597046744],[-128.1459144204636,52.97743016037967],[-128.1458264071258,52.97725800328163],[-128.14576606614338,52.977079171949505],[-128.14564147061893,52.9769216983754],[-128.14542967528158,52.97679270847909],[-128.14523613112777,52.97665554761959],[-128.14507807726193,52.97650035976703],[-128.14494018000426,52.97633807853057],[-128.1448449558723,52.97617053611707],[-128.1448295226442,52.97599424980571],[-128.14486698035856,52.97581196038697],[-128.1449026863057,52.97563194489197],[-128.14494687444355,52.97545346096285],[-128.1449043860026,52.975277111138475],[-128.14483310465909,52.975103527563064],[-128.14494689764396,52.974936098729565],[-128.14505412875988,52.97476823319897],[-128.1452309281165,52.9745923745381],[-128.14535908986093,52.97443253976346],[-128.14550419937808,52.97427575030051],[-128.14567688624626,52.974129112664315],[-128.14585428197057,52.97398351000342],[-128.14592955843682,52.97381118535289],[-128.14595974965837,52.973632946734554],[-128.14609416895786,52.97346794782977],[-128.14624153306792,52.973318972407114],[-128.14642494040126,52.9731816624834],[-128.14669741505728,52.973108314344735],[-128.14695902017496,52.973022832249455],[-128.1472000230159,52.97291754640696],[-128.1474482778139,52.97282670132785],[-128.1476684090226,52.97269601108847],[-128.1479240622527,52.97260390903298],[-128.14819354375194,52.972526692722624],[-128.1484512289385,52.97243791553403],[-128.14869612321124,52.97233591860899],[-128.148925422512,52.97222075317424],[-128.14916260217976,52.97211384679632],[-128.14940882884164,52.97201967126685],[-128.14957284171493,52.97186814538802],[-128.14971133785733,52.97171034970026],[-128.1498035997107,52.97154219616966],[-128.1500068252987,52.971409567653296],[-128.15019285980722,52.971269405270725],[-128.15032277195604,52.971107846261454],[-128.15049833156883,52.970963390382096],[-128.15059609622392,52.97079344956531],[-128.15068823882928,52.97062304627761],[-128.1507785735748,52.97045380590447],[-128.15083492642535,52.97027677362904],[-128.15085947383287,52.970098079971145],[-128.15088026406397,52.96991888988555],[-128.1508963729757,52.96973922921792],[-128.150887279607,52.96955947268361],[-128.15093241716193,52.969382080022],[-128.15101974604,52.9692089660316],[-128.15104540157893,52.969033615083006],[-128.1510148905325,52.96885480562794],[-128.15100470225354,52.96867170587096],[-128.15114533013625,52.96851947418774],[-128.1513302536355,52.9683759666304],[-128.1515047324868,52.96822873036382],[-128.15163371895693,52.968067742298295],[-128.15175057157722,52.967887926965304],[-128.1520366950105,52.967937630813324],[-128.15232371514332,52.96798675258668],[-128.1526123319236,52.96803024824663],[-128.1529075116656,52.968056242604085],[-128.15319934686255,52.96808957966281],[-128.15347253455317,52.96816026032284],[-128.15374754501073,52.96822977702262],[-128.1540378153025,52.96826931087141],[-128.15433405402015,52.96827903168569],[-128.15463081974715,52.96828088584386],[-128.15487342735707,52.96837397855494],[-128.155034233669,52.96852798272693],[-128.1551947005258,52.968675266635756],[-128.1554645225657,52.96875273062478],[-128.1557352415903,52.968829612588074],[-128.15600765537746,52.96890309979175],[-128.1562738502495,52.968982861480164],[-128.15653573445255,52.969069436734074],[-128.156811481804,52.9691350137825],[-128.15709853044427,52.969184123615804],[-128.15739273947824,52.96920900364748],[-128.15769072109234,52.969216442140194],[-128.15798840485343,52.969217715108556],[-128.158286130571,52.96922010760116],[-128.15858338657262,52.969231476308885],[-128.15888115553972,52.969234422546116],[-128.1591782275829,52.96922393723289],[-128.1594619960356,52.96917165137784],[-128.15975267914564,52.96912708536083],[-128.16002315203622,52.96919891296417],[-128.16030491059811,52.96925428230306],[-128.16051926089844,52.96937815013382],[-128.16070737119122,52.969518193560525],[-128.1609638172384,52.969607657054446],[-128.161290861317,52.969672847722684],[-128.16165030666605,52.969567599935196],[-128.16190088774783,52.96948677002796],[-128.16208445580563,52.96935391542327],[-128.16230209080786,52.969230533527146],[-128.1625391632096,52.96912248003346],[-128.16281478655807,52.96905688298448],[-128.16310360121253,52.969012342926206],[-128.16339348257674,52.96897058965889],[-128.16361319562566,52.96894301212073],[-128.16384889100536,52.968753144692585],[-128.16402722735077,52.9686091814303],[-128.16423908902573,52.96848252968226],[-128.16448096431768,52.96839569270447],[-128.1647779881245,52.96840256578771],[-128.16507384438714,52.9684049753901],[-128.1653575143436,52.96835099083058],[-128.1656211017806,52.96826935754965],[-128.16590872658477,52.96821978311322],[-128.16618119290243,52.96814750970684],[-128.16646710885644,52.96810133741977],[-128.16676475630814,52.96810202373632],[-128.16706178972757,52.96809095405985],[-128.16735458739257,52.9681063107281],[-128.16764804401737,52.96815303497745],[-128.16798986688107,52.96801390398505],[-128.16827575118828,52.967967162825914],[-128.16856902350904,52.96793710069984],[-128.1688589354276,52.96789588920425],[-128.16914662495216,52.96784799160551],[-128.169433360435,52.96779954585307],[-128.1697212350274,52.96775500656981],[-128.1700079408782,52.967706003896964],[-128.17028550703841,52.96764259524584],[-128.17054502432725,52.96755429934361],[-128.1708155572392,52.96748092954432],[-128.17110989173685,52.96745363956035],[-128.17140722038545,52.96744815864027],[-128.1717054735421,52.96744265992264],[-128.17200195283814,52.96745737210532],[-128.17229853330886,52.96747376774312],[-128.172595437486,52.96747838112841],[-128.1728921788601,52.96746169676306],[-128.17318810595933,52.96748369851895],[-128.1734819439722,52.96746482412588],[-128.17372875701864,52.967365544952834],[-128.17392716314117,52.96723184099988],[-128.17411596136142,52.96709270875588],[-128.1744645043689,52.967103646576746],[-128.17475776636053,52.967073569031086],[-128.1750555925861,52.967078159146986],[-128.1753527807935,52.96708836556688],[-128.17565008375647,52.967100811229365],[-128.17594815443871,52.967109878797764],[-128.17624798864568,52.96711723593273],[-128.176536969184,52.96709451541663],[-128.1768092097813,52.96701830188026],[-128.17709691285833,52.966970940362216],[-128.1773825656504,52.96691969682009],[-128.17766212336275,52.96685904077092],[-128.17794361614634,52.96679946034757],[-128.1782241691212,52.96673990558368],[-128.1785046060893,52.96667810119979],[-128.17879117978282,52.96662683713299],[-128.17908874369024,52.966589942763626],[-128.17935511972635,52.966526719345076],[-128.17945486379622,52.966452570047664],[-128.1794894159409,52.96636224613678],[-128.17953824519617,52.96618645767696],[-128.17954528646507,52.96605067946394],[-128.17957866451215,52.96601025978585],[-128.17976144491266,52.965863381910324],[-128.18003066136777,52.96580122532439],[-128.1803251427394,52.96575877945351],[-128.18060752056672,52.96569861999398],[-128.18086612255445,52.965611438643904],[-128.18105782279756,52.965475039014144],[-128.18125267040944,52.965345316069616],[-128.18150719576147,52.965251473407235],[-128.1817877620395,52.9651924656196],[-128.182060124506,52.96511903536929],[-128.18230888284313,52.96502194353848],[-128.18249368598097,52.96487838678257],[-128.18273576197902,52.96479654763963],[-128.1830369465375,52.96477582673985],[-128.1833259984647,52.96473683697047],[-128.18360947723315,52.964680012846046],[-128.18389099033405,52.96462154736577],[-128.18417882827444,52.96457697267442],[-128.18446033945057,52.96451849687013],[-128.18475200031938,52.96449402894077],[-128.1850462915688,52.96446614830021],[-128.18529704686955,52.96437181104493],[-128.1855310006237,52.96425929198222],[-128.185799583531,52.96416686490491],[-128.18600331608678,52.964083488303],[-128.18606038818675,52.9638688622398],[-128.18616124348358,52.96370779939979],[-128.18626507406483,52.96355004439966],[-128.1862816676971,52.96336476109886],[-128.1864308926794,52.96321905991554],[-128.18664360018948,52.96309235003724],[-128.18686767657957,52.96296935684363],[-128.18707653906176,52.96284048435618],[-128.18730468624233,52.96272414104803],[-128.1875127506141,52.96259808071818],[-128.18765476081342,52.96243905006599],[-128.187700979073,52.9622677898533],[-128.18765936365438,52.96211161396054],[-128.18768732397217,52.96191154520146],[-128.18769112354437,52.96173154832657],[-128.18773045026362,52.961553124628246],[-128.18777070156025,52.961374692684124],[-128.1879081550086,52.96121798829464],[-128.1880578161966,52.96106274297991],[-128.18809253193783,52.960885534751725],[-128.18812999241788,52.96070714545753],[-128.18816931681044,52.96052873046222],[-128.18817967341013,52.960349167594906],[-128.18818349934264,52.96016972605151],[-128.1881779774886,52.959989893162216],[-128.1881538473826,52.95981097102924],[-128.1880934826068,52.95963496426744],[-128.18802200854844,52.95946028494052],[-128.18798578686213,52.959282152411205],[-128.18803359086425,52.959105256859964],[-128.18802996251878,52.958925953697815],[-128.18801698672436,52.95874625917662],[-128.1880021478207,52.95856660822189],[-128.18797341024586,52.95838889260072],[-128.18789454173273,52.95821547156832],[-128.18781473457955,52.95804206791569],[-128.18770804150242,52.95787196187294],[-128.1876699737502,52.95769386342105],[-128.18756617167273,52.957525389617224],[-128.18746604006762,52.95735572647006],[-128.1874298220401,52.95717758458308],[-128.1873044856452,52.95698933134692],[-128.18748556742887,52.95684695529443],[-128.1876030151521,52.956682218693594],[-128.18776976457312,52.956533381989296],[-128.18798246370886,52.95640723366023],[-128.18821063153658,52.95629200814251],[-128.18846812117474,52.95620258679366],[-128.1887207990269,52.95611044713996],[-128.18900112208902,52.956048061857246],[-128.1892725029224,52.95597518750698],[-128.18951522565695,52.955870899406314],[-128.18975306511663,52.955762217310905],[-128.18999188535088,52.955654637534074],[-128.19022976515035,52.95554707473593],[-128.1904685543619,52.95543893846026],[-128.19070739958514,52.955331912730024],[-128.1909481939083,52.955226536309446],[-128.19119087964555,52.95512168919037],[-128.1914345606456,52.95501793512158],[-128.19168212618067,52.95491748039774],[-128.19193567093205,52.95482419629794],[-128.19220207035386,52.95474524622886],[-128.19248040034478,52.95468064731562],[-128.19275468468427,52.95460995268865],[-128.19302096575132,52.95452876076468],[-128.19328432759818,52.95444538044825],[-128.19354761691113,52.954360323746975],[-128.19380996551178,52.9542752749915],[-128.19407329558746,52.95419133738],[-128.19433765025792,52.95410905718651],[-128.1946040407449,52.95403010165064],[-128.19488044114294,52.953964411774436],[-128.1951690619493,52.953918672720704],[-128.19545561610073,52.953869043240225],[-128.19574217004623,52.953819422021056],[-128.1960277699018,52.95376925286393],[-128.19631013246564,52.95371073084751],[-128.1965916420608,52.953653910145206],[-128.19688631334836,52.95363495970627],[-128.19718426410296,52.953625480944496],[-128.19748201197294,52.95361207696823],[-128.19778056818703,52.953596414998444],[-128.19806336151066,52.953546293210984],[-128.198334667886,52.953472277599545],[-128.19860486092767,52.95339492787432],[-128.19888122184096,52.95332866410737],[-128.19916464682018,52.95327292243681],[-128.19945116323615,52.95322272769933],[-128.19973879191215,52.953175874698694],[-128.2000004067208,52.95314913035529],[-128.20003194002211,52.953145733993026],[-128.20032049179954,52.95309886230007],[-128.20064216863756,52.952971218307844],[-128.2008798906054,52.952861393840784],[-128.20116177988527,52.95281183738495],[-128.20145995578915,52.952806827775596],[-128.20175791690946,52.95281583040544],[-128.20204639404096,52.95285752089229],[-128.202314322219,52.952934904486604],[-128.2025872658301,52.953018929097404],[-128.20285106740673,52.952962424423525],[-128.20311223249342,52.95287289219957],[-128.2033917192334,52.9528132945819],[-128.2036772160449,52.95276142237802],[-128.2039596198943,52.95270401094016],[-128.204255379691,52.95268838472991],[-128.2045526192573,52.95270131308452],[-128.20484602216905,52.952676204831114],[-128.2052779603635,52.95262494958945],[-128.20557461457008,52.95260874723916],[-128.20587206733836,52.95260765926198],[-128.206167680305,52.9525892237912],[-128.20639205160867,52.952474032621986],[-128.20660863442467,52.95235226048038],[-128.20687487492165,52.952271037127225],[-128.2071117400553,52.95216290182561],[-128.20738105663074,52.95208722501797],[-128.20759955614915,52.951966536082345],[-128.2077852865726,52.95182571669767],[-128.20800066158137,52.95169892408005],[-128.20824061341108,52.95159632490862],[-128.20853566612183,52.9515672480525],[-128.2088324839204,52.95159027210494],[-128.2091118089074,52.95165341753602],[-128.20940380168298,52.95167315848104],[-128.20970107326664,52.95166870086327],[-128.20999938539396,52.95166646512662],[-128.21029119657047,52.95170079032456],[-128.21057719189918,52.95174866801758],[-128.21086158669675,52.95180162443503],[-128.21115442604219,52.95180173071876],[-128.21143795613037,52.951748199161855],[-128.21170823086914,52.95167305927598],[-128.21198097931494,52.95160963916151],[-128.21229437055325,52.951502853579434],[-128.2125089090697,52.95145005065818],[-128.2127965990074,52.951404850183216],[-128.21308963802213,52.951372992483854],[-128.21338282252722,52.95134393850524],[-128.2136665943739,52.9512954462758],[-128.21396400194746,52.95131171085447],[-128.21426188292654,52.95131900607776],[-128.2145163619724,52.95124526876063],[-128.2146599805203,52.95108393841115],[-128.21489200746575,52.950973070699334],[-128.21514846924683,52.950883599452254],[-128.21542106190938,52.95081737585157],[-128.2157158507714,52.95080117376202],[-128.21600219670333,52.95085576719203],[-128.21626137163943,52.950908064201684],[-128.21653153334182,52.95092035079068],[-128.21679434944016,52.95091708883548],[-128.21705250905927,52.95093184238253],[-128.2173464178286,52.95091678284327],[-128.21763865717028,52.95088773594891],[-128.2178718163384,52.950959577936544],[-128.21814950413022,52.95091959302185],[-128.2184956011681,52.95095735056906],[-128.21879331925172,52.95096183016922],[-128.21908961678534,52.95095681103769],[-128.21935682226936,52.95087666168722],[-128.21960148080115,52.95077563611013],[-128.21979878472382,52.950642991288014],[-128.22006793765053,52.95056448067672],[-128.2202718560547,52.95043339639073],[-128.22046427167243,52.950296358188595],[-128.2206498937604,52.95015439839127],[-128.22088075334418,52.950056993507985],[-128.2210926428043,52.949953784520275],[-128.22124476683842,52.949813020661765],[-128.22179180521167,52.94944899054926],[-128.22218772846128,52.949137702994314],[-128.22245281978473,52.94885691101294],[-128.22255959462535,52.94866935941856],[-128.22269363130076,52.94845045853234],[-128.22280155232065,52.94823148548849],[-128.22282960871925,52.94809026337276],[-128.22285861809956,52.94794957930244],[-128.22275157214986,52.94770327429416],[-128.22275020726354,52.94760576514978],[-128.2226287884528,52.947441579989416],[-128.22253131349058,52.94727132825596],[-128.22242015125485,52.947106949249616],[-128.22230153683927,52.94694270184326],[-128.22219215149508,52.94677660295828],[-128.22208799347843,52.94658574129457],[-128.2220645592989,52.94644044173473],[-128.22199493621028,52.94625004921083],[-128.22195870055904,52.94607416569625],[-128.22200623150422,52.94589501498664],[-128.2220127881974,52.94571719368633],[-128.22200153648748,52.94553747528379],[-128.2220188770087,52.94535160275327],[-128.22199955562135,52.945178198151986],[-128.22198179085973,52.94499860262708],[-128.22201629326685,52.94482025374774],[-128.22213080158548,52.944656098900445],[-128.22233751635054,52.944525513189255],[-128.22255388115883,52.944401471445566],[-128.22274338706384,52.94426279717549],[-128.22285594004953,52.944096992281935],[-128.22298833891904,52.94393641794668],[-128.22312639922794,52.94377685760393],[-128.22329870937418,52.94363066835737],[-128.22351898332127,52.943509914084984],[-128.22375572789204,52.94340118026372],[-128.22403411141374,52.94333986631551],[-128.22430868010565,52.94327693764878],[-128.22457686870192,52.943198998597595],[-128.22483716539273,52.94311280434296],[-128.22505549584898,52.94299096266222],[-128.22550093800055,52.94295058633998],[-128.22580502492215,52.94297062212337],[-128.2260981723939,52.942942100818016],[-128.22639338733356,52.942917459023676],[-128.22666795903245,52.94296159383211],[-128.2269490016833,52.94296916547961],[-128.22723409213623,52.94301814940613],[-128.22754550004277,52.943035800008346],[-128.22772726345627,52.94305254006112],[-128.22798624422597,52.94310145127437],[-128.22819169690453,52.94319677508714],[-128.22845172076703,52.94322997019931],[-128.22884056901108,52.943248393573555],[-128.22912702732648,52.94323456564665],[-128.2293648866402,52.94325416027756],[-128.22970327353127,52.943252800650924],[-128.22999027348712,52.94321373117968],[-128.23027039234648,52.943150127218416],[-128.23053758647498,52.943071072107436],[-128.23078111720852,52.94296780064901],[-128.23099472123457,52.942844916080354],[-128.23121736085156,52.942734191910425],[-128.23139531569234,52.9425895602881],[-128.23149196208303,52.94247673942421],[-128.23173535043287,52.94229947600702],[-128.23184780444274,52.94213254233667],[-128.23193105152808,52.941959991789275],[-128.23199832401102,52.941784945792925],[-128.2320910172004,52.941614467124964],[-128.23218463317232,52.94144396188452],[-128.23224439349153,52.94126793701354],[-128.23239901477228,52.94110525238889],[-128.232583938696,52.940933580039044],[-128.23269135527676,52.94077738680916],[-128.23271951916135,52.94062101959922],[-128.23277500504244,52.94041704786341],[-128.2328038460374,52.940291502506824],[-128.2330149032639,52.94012045466646],[-128.23309359277204,52.94007411776826],[-128.23338361929297,52.94004002253805],[-128.23368403321794,52.94002591826318],[-128.23398457881854,52.94001460898889],[-128.23427683482672,52.939987195833595],[-128.23454356299527,52.93991767365952],[-128.2347857890516,52.9398076913476],[-128.23504303650085,52.939717603119554],[-128.23532852454593,52.93966789375657],[-128.23562108359843,52.93962870434652],[-128.2359054257594,52.93957509594593],[-128.23620020257368,52.93956052721471],[-128.2364985461649,52.9395604643133],[-128.23678811080626,52.939517409485056],[-128.2370608320609,52.93945560632265],[-128.23735394777682,52.93942705693526],[-128.23764251242292,52.9393828889039],[-128.23791883982324,52.93931878191399],[-128.238157387081,52.93920998344517],[-128.23842206401923,52.939137118960986],[-128.23863233652474,52.93905800590977],[-128.23894550952332,52.93895002861984],[-128.23931047283796,52.93890496815136],[-128.23959607320074,52.93887543494677],[-128.23993495636606,52.93883086875418],[-128.24016923344712,52.938800624691815],[-128.2404817954343,52.93878738378217],[-128.24071623932764,52.938777880389],[-128.24100868432222,52.93878968537713],[-128.24128965879663,52.938849359564095],[-128.24159782216537,52.93884124891387],[-128.24188311227903,52.93885880250553],[-128.24222071647392,52.93886077549029],[-128.24258466895165,52.93883198458057],[-128.24279252840407,52.938848760051016],[-128.24310391225006,52.93886636955228],[-128.24336413064668,52.93886813682884],[-128.24362465537277,52.93882281118035],[-128.24394298683956,52.938742193600106],[-128.24429786679983,52.93857678618358],[-128.24455365205014,52.93865374956666],[-128.24485445120746,52.938647456933545],[-128.2451513916785,52.938638429879155],[-128.24544772607413,52.93861820255088],[-128.24574203499486,52.93859464979136],[-128.24604159155925,52.93856482556856],[-128.24625183983343,52.93850308069438],[-128.2464206485949,52.93832776424277],[-128.24658238251666,52.93817725591826],[-128.24675360589666,52.93802992055385],[-128.2469219529766,52.9378809626338],[-128.2470826854712,52.93772935152247],[-128.24720086213392,52.93756621149358],[-128.2472736529857,52.93739104961181],[-128.24735681382364,52.93721793186864],[-128.24747670305146,52.93705196047241],[-128.2476836729982,52.93692861431218],[-128.24794659701968,52.93684063069671],[-128.24812741952653,52.9366987152377],[-128.24819479460902,52.93652701937375],[-128.24816945740366,52.93634756946934],[-128.24810147141227,52.93617228855612],[-128.2480752402895,52.93599341175039],[-128.24805735444235,52.93581381945006],[-128.2480061632243,52.93563878269237],[-128.24798088603652,52.935460443671985],[-128.24798070306522,52.935280513178625],[-128.24797493181313,52.93510068043576],[-128.24797757955804,52.93492125190663],[-128.2480035613378,52.93474249877034],[-128.24811877717187,52.934576615554384],[-128.2482358994039,52.934411260814436],[-128.2483209573459,52.93423922676135],[-128.24840481788172,52.93407954773544],[-128.2486666065392,52.933988220345285],[-128.24891979775015,52.9338931282546],[-128.2491352848049,52.933772414475534],[-128.24939265791392,52.93368565422868],[-128.2498170434065,52.933478548813156],[-128.25006513624572,52.93337514771438],[-128.25024114029927,52.93323052211459],[-128.25042004793175,52.933088082922716],[-128.25069738687947,52.93302672350797],[-128.25096747293972,52.9329514837246],[-128.2512295752676,52.93286631495361],[-128.2514623757317,52.93275591153331],[-128.25172163031337,52.93266967497989],[-128.2519196590346,52.93253639246495],[-128.2521013742779,52.93239446181219],[-128.25229460383898,52.93225847213156],[-128.2524117179754,52.932093668799325],[-128.2525486909004,52.93193409078707],[-128.25268089554345,52.931772361621384],[-128.2527172989178,52.93159732661877],[-128.25272998455623,52.93141434170937],[-128.25287121257196,52.93126477179197],[-128.25315124849163,52.93120167741056],[-128.25334461730273,52.93106848138276],[-128.253540682355,52.93093355617876],[-128.2537319640664,52.93079647998527],[-128.25393376237932,52.93066425153575],[-128.25408878114382,52.930511052466024],[-128.2542626745218,52.93036253214166],[-128.2545499803495,52.93033124238098],[-128.25481719750638,52.93025493599759],[-128.25503244147754,52.930130286739036],[-128.25521885880528,52.929989381683214],[-128.25533692345073,52.929825112734754],[-128.25533151238136,52.929494486158426],[-128.2555027303912,52.92934826623121],[-128.25564821902955,52.929191319045536],[-128.25582895392824,52.929048835583515],[-128.25604418931422,52.928924193342816],[-128.25626146341196,52.92880286597777],[-128.25644216515673,52.92865982602924],[-128.25659812075523,52.92850716126562],[-128.25670010189805,52.92833872353556],[-128.25686275904184,52.92818929319339],[-128.25706264305038,52.92805653041534],[-128.25721570448275,52.92790224300712],[-128.25723245062835,52.92772590564712],[-128.25713488291453,52.927555689486006],[-128.2570928119699,52.927377673035615],[-128.25701747382723,52.92720478811957],[-128.2569329284924,52.92703431302237],[-128.25691033097485,52.92685424576518],[-128.25682574275052,52.92668265924518],[-128.25672357496416,52.92651364309274],[-128.2566205292903,52.9263457737774],[-128.2565812329955,52.926167147786586],[-128.2565160444044,52.9259923816861],[-128.25637810861582,52.92583414125518],[-128.2562542519991,52.925677881910474],[-128.25618347897046,52.925503222696825],[-128.25601895264697,52.925353339577704],[-128.2558526251531,52.925204620861],[-128.25567899834274,52.92505884017387],[-128.25545531735662,52.92484787247673],[-128.25522841431805,52.924734503825285],[-128.25504385608932,52.924593416251064],[-128.25486476681243,52.924449981345894],[-128.25470665542971,52.92429773127995],[-128.25452488655282,52.924156589471686],[-128.2543421658511,52.92401490955348],[-128.25407185053044,52.923943852067566],[-128.25377647477094,52.92389233309864],[-128.25363261993385,52.92376279606768],[-128.25362550267013,52.923575704872654],[-128.25360853664603,52.92339608511409],[-128.2536075053442,52.92323578426477],[-128.26602678661072,52.91986761839431],[-128.266146215693,52.91981766541371],[-128.26629885992767,52.919726720689624],[-128.26635293878766,52.91958721463697],[-128.2662984751347,52.91942178017257],[-128.26626799527511,52.919322021502126],[-128.26628311287757,52.919290903632096],[-128.2662891895276,52.919282373597596],[-128.26629510245314,52.919271048370355],[-128.26630794121104,52.91924949953449],[-128.266313854127,52.919238174306145],[-128.26635538027662,52.91919533636766],[-128.26647811189048,52.91910271633024],[-128.2666481938825,52.91898901245152],[-128.2667942779076,52.91886230813525],[-128.26687524149332,52.91875536160127],[-128.2669000982839,52.91869714877375],[-128.26691944274285,52.918622781242156],[-128.26695857954635,52.91850037967003],[-128.26699691316205,52.91839761786552],[-128.26700683102587,52.91835650986758],[-128.26702693638728,52.918314075449295],[-128.2671241194428,52.91821410797253],[-128.26723335134807,52.9181127780914],[-128.26729282284128,52.91805726143625],[-128.26734794481288,52.91800742527483],[-128.26740043071965,52.9179604472092],[-128.2674536314277,52.91790953585548],[-128.2675453759714,52.91781247114185],[-128.26765223565127,52.91768427931439],[-128.26772760938272,52.91757743978145],[-128.26777928758173,52.91749796419218],[-128.26784734764092,52.917393507812875],[-128.2679437493845,52.917261597768714],[-128.2680513958954,52.91713059196442],[-128.26815683709822,52.91699346680068],[-128.268260072204,52.91684964827589],[-128.26834454321894,52.91673871333682],[-128.26840485992614,52.91668149352283],[-128.268514418222,52.916639020014635],[-128.26862925628407,52.91652076345895],[-128.2686724466567,52.91633438709875],[-128.26877752528793,52.916190532444155],[-128.2689628229085,52.916047937771154],[-128.26917267640488,52.91587684069525],[-128.26939043307777,52.915801452368],[-128.26954508780872,52.91576595577824],[-128.26962252617446,52.91568037650837],[-128.2696522757171,52.91560917092844],[-128.26966685166386,52.91556796373197],[-128.26959727500608,52.915503724121876],[-128.26947969018738,52.91539555624719],[-128.26948420369908,52.915270466919196],[-128.26954166969463,52.91519479815776],[-128.26955365707542,52.915174951473844],[-128.26961455624672,52.91516368628334],[-128.26977220234733,52.91513205111266],[-128.26994418776405,52.91507211956922],[-128.27009241134422,52.914968356915864],[-128.27022314733514,52.914851477902936],[-128.27031385344205,52.91477012656452],[-128.27038243032376,52.91471050386642],[-128.27045069347497,52.91464528148981],[-128.2705126271523,52.914583544649695],[-128.27059910080254,52.91449274059422],[-128.27068834442017,52.91440132690914],[-128.27072068727657,52.91436146275444],[-128.27074108621028,52.914324636481375],[-128.27079467624785,52.91424624345619],[-128.2708512424501,52.914153774233526],[-128.27088721110567,52.91405946930612],[-128.27092324856943,52.913931519911856],[-128.27099718853353,52.913797798107595],[-128.27108337895004,52.91371934056302],[-128.27111950639264,52.91369789749831],[-128.27112566869533,52.913673678525306],[-128.27112928203408,52.9136366111863],[-128.2711337112248,52.91357990368273],[-128.27113306355858,52.91353282836176],[-128.27114437486387,52.9134827237791],[-128.2711806109235,52.9133934541768],[-128.27122588587966,52.91329896041996],[-128.27124427263047,52.91325936553724],[-128.27126473033198,52.91322365913361],[-128.27130378353056,52.9131522732998],[-128.27135971068282,52.91308280389766],[-128.27142175723836,52.91300592440649],[-128.27145376399525,52.912924584318496],[-128.27145290708924,52.912873593510994],[-128.27145354352743,52.9128505933799],[-128.27147606211003,52.912853521950744],[-128.2715682549479,52.91288761806819],[-128.27174535025887,52.9129060646705],[-128.27198295511346,52.91283644948046],[-128.27221670985043,52.91272934549712],[-128.27237304186383,52.9126556937041],[-128.27246487498974,52.9125956203165],[-128.272533789151,52.91254271648363],[-128.27262399934585,52.91248715887424],[-128.27275078705011,52.912435944070054],[-128.27288098693904,52.91239643067837],[-128.27300242479367,52.91233242136302],[-128.27323934805855,52.91223254588232],[-128.27355534209124,52.91216533190062],[-128.27369716217333,52.91215137920758],[-128.2737335865074,52.91213554420372],[-128.27381757038725,52.912085711679886],[-128.2740976423735,52.911956406687864],[-128.2745676289556,52.91178923833548],[-128.2748685906682,52.91171951302114],[-128.2749740307741,52.911722523377165],[-128.27503474807096,52.91172526854202],[-128.27508816671894,52.91166145138118],[-128.27516229937478,52.911531651198466],[-128.27519428708496,52.91146768344784],[-128.27521293271516,52.911467887840196],[-128.27531720900643,52.911466426851106],[-128.27553687146494,52.91146217749222],[-128.27577451044002,52.91146318562825],[-128.27594060709626,52.9114678198866],[-128.27606382835677,52.9114721624309],[-128.2761602442931,52.91148038699228],[-128.27620322958103,52.9115003007933],[-128.2762129911399,52.91152589817401],[-128.27622802760231,52.91156316098895],[-128.27625698322998,52.91163435377511],[-128.27641956148412,52.911729868016835],[-128.27674676633413,52.91178519793218],[-128.27711049376865,52.91175685533418],[-128.27740399987343,52.91166989454763],[-128.27753560003018,52.91160456245037],[-128.27756674672705,52.911577051918044],[-128.27757926807976,52.911567275262016],[-128.27761569047092,52.91155143905074],[-128.27768949333196,52.91153767736597],[-128.2777903410463,52.91152451305617],[-128.27786171844798,52.91151752509154],[-128.2779188476953,52.91152314559479],[-128.27801309329547,52.911543178201185],[-128.27812394911425,52.91157747286703],[-128.2782518772707,52.91158284311125],[-128.2784390581934,52.91152876599714],[-128.27864935639042,52.91148881561191],[-128.27878927194598,52.91149171075552],[-128.2788800345802,52.91151629472805],[-128.278942280746,52.911547601914066],[-128.27896617233594,52.911558915513915],[-128.27898457774822,52.911554630418465],[-128.27903994455855,52.91154458851095],[-128.27916424850463,52.9115343319663],[-128.27936955819519,52.91154044385906],[-128.27961342710645,52.91155310002642],[-128.27981599715662,52.911560385383325],[-128.27995327784907,52.911566128595105],[-128.28006172738193,52.91157299558048],[-128.28012159678204,52.911577440760475],[-128.280196268842,52.91157992172217],[-128.28031958059685,52.91158593530231],[-128.28056019382782,52.91157286630163],[-128.2809653891132,52.91153585967333],[-128.28126698250298,52.91151319359788],[-128.28140758822278,52.911528960934454],[-128.28153514063024,52.91156180744901],[-128.28165833153855,52.91160033519042],[-128.28183274534373,52.911655816422815],[-128.2820171803485,52.911707174489685],[-128.28219886018775,52.91179389733248],[-128.28242210265847,52.911943162630315],[-128.28258819423922,52.91203468092299],[-128.2826975758842,52.91205890069303],[-128.28280135084822,52.91210005532889],[-128.28283905493626,52.91212566602364],[-128.28292109162837,52.912074187351614],[-128.28313273128524,52.911937784353825],[-128.28337251080066,52.91182213645601],[-128.28359905696186,52.91178970978103],[-128.28387888262074,52.91177810603265],[-128.28419729847587,52.91177360921823],[-128.28444668770013,52.911802400361495],[-128.28461879343647,52.91184950928458],[-128.28476618820557,52.911887563722836],[-128.2848944638404,52.911899090821144],[-128.28502917885183,52.91189198927795],[-128.2851330951764,52.911883799714786],[-128.285245666663,52.91188049155066],[-128.28539605553803,52.911887659980465],[-128.28558266839363,52.91187506484816],[-128.28581949948088,52.91177404403142],[-128.28598158566618,52.911617296846536],[-128.2860351442445,52.911538896751374],[-128.28608072960537,52.91153745469431],[-128.2861359079768,52.91154142293966],[-128.28624625029445,52.911548812513324],[-128.2864226482726,52.911571726232154],[-128.28659019623373,52.91158585151887],[-128.28669821655177,52.911567490438244],[-128.28673820801018,52.91154877459708],[-128.28676646220114,52.91155439609893],[-128.28686690755873,52.911602894924464],[-128.2870484128896,52.911651494824476],[-128.2871963082212,52.9116469418566],[-128.2872762039629,52.91164258090221],[-128.28735650056916,52.91166288632966],[-128.28747770223166,52.911647075557276],[-128.2876057288731,52.91158459977722],[-128.28766072344357,52.911550460805636],[-128.28773890810618,52.9115489401671],[-128.28788666158377,52.91155895504505],[-128.2879654481062,52.91156863403611],[-128.28801886548393,52.911591704153516],[-128.28815186579757,52.91169114148727],[-128.28824778542486,52.91184623632878],[-128.28824632818163,52.91195781447719],[-128.28822840948587,52.91200581635875],[-128.28829155573166,52.912088674057635],[-128.28844383529045,52.912252197564435],[-128.2885996287018,52.912411732978036],[-128.2887294468382,52.912538704219216],[-128.28892995036247,52.91269792534076],[-128.2891854704682,52.91285776165731],[-128.2892987073879,52.91291890723119],[-128.28925652271215,52.91293149580718],[-128.28916611247197,52.91296576863037],[-128.28909563302798,52.91305851828583],[-128.2890296592143,52.91321788403589],[-128.28894133529914,52.913360302359656],[-128.28882891022394,52.913470120181096],[-128.28870496901052,52.91357400011803],[-128.28863418604513,52.913661140621805],[-128.28860157963607,52.91373073007388],[-128.28855082292884,52.9138090767576],[-128.28846447362383,52.91391894292821],[-128.28835853377242,52.91404545124917],[-128.2882629154764,52.91417344487426],[-128.28820427912657,52.91427885217209],[-128.28817372819933,52.91435175594382],[-128.2881258101703,52.91444855057275],[-128.28803464098516,52.91457252890937],[-128.28794261884275,52.914663445439125],[-128.2878907368204,52.91470369465582],[-128.28785349812378,52.91472180117704],[-128.2878308364555,52.91473345338899],[-128.28788969058246,52.91480573932938],[-128.2880103351718,52.914952505273],[-128.28806796048042,52.915036591548194],[-128.28807336926735,52.915067878439515],[-128.288092636443,52.91516616454767],[-128.28811460308694,52.91529747643759],[-128.28812572177765,52.915365650081405],[-128.28813470333506,52.91539406012089],[-128.28816326560505,52.91544003659452],[-128.28830584708686,52.9155790835923],[-128.28863844466747,52.915872524315084],[-128.2889665703842,52.91615203233749],[-128.28910634647013,52.91627319465288],[-128.28915466181394,52.916322706041484],[-128.2892090592093,52.916381068222826],[-128.28938536989838,52.916523386085736],[-128.28978539726478,52.91682279436503],[-128.29019186380054,52.91712039874735],[-128.29036479303764,52.91725156957133],[-128.29041608106849,52.91728700377697],[-128.29047507275675,52.91732678152265],[-128.29059385670803,52.91747358112873],[-128.2907854625452,52.917743965881606],[-128.29095310209553,52.91798455507961],[-128.29104319347624,52.91811733809929],[-128.2910737990493,52.91818401080414],[-128.29107967333815,52.91824107483205],[-128.29108799734863,52.91830930260573],[-128.29109672784125,52.91838480542186],[-128.29110553412764,52.91846199296113],[-128.2911084385274,52.918533133620926],[-128.29111187436436,52.91859697199813],[-128.2911109794332,52.91866705652979],[-128.29109624910248,52.91873966176109],[-128.29106738094902,52.918809169910155],[-128.2910376047046,52.918879260788934],[-128.29102737044715,52.91894897109319],[-128.2910409333367,52.91901036994827],[-128.29106791031245,52.91906141726351],[-128.29111554491007,52.91913280793844],[-128.29116908109535,52.91920968041538],[-128.29118847967118,52.91924125973978],[-128.29120937539147,52.9192139453047],[-128.29131599765054,52.919099754211715],[-128.2914652089481,52.91894604946813],[-128.29153741559614,52.91886784903612],[-128.29154510782377,52.91885480154512],[-128.29175400187032,52.91877113105685],[-128.292172767289,52.91862170819988],[-128.2924254915936,52.918555685856006],[-128.29248210052958,52.91856859258967],[-128.29250191408292,52.91857325612929],[-128.29251792021765,52.91854155212583],[-128.2925757658897,52.91857742269601],[-128.2927250391562,52.91868438596824],[-128.29288233032557,52.91881922144467],[-128.29301849332532,52.91894213592429],[-128.293137707443,52.91904463493396],[-128.2932177845117,52.91911258510197],[-128.29326202211038,52.919155447482936],[-128.2932934714714,52.91918567043776],[-128.29332564443874,52.91922932406315],[-128.29336863577274,52.919300804409694],[-128.29348150337202,52.91935466143174],[-128.29365793757754,52.919377564193454],[-128.2937399294141,52.919411842303845],[-128.29373443409588,52.91949996390524],[-128.29372906512342,52.91964245413732],[-128.2937273048771,52.919834760506795],[-128.2936921271045,52.919994649060996],[-128.29360750260489,52.920032740618566],[-128.2935309738445,52.920082441830466],[-128.29348593042891,52.920215050059454],[-128.2934763119848,52.92033071554978],[-128.29349630941377,52.920407684745584],[-128.2935252999254,52.92047887289202],[-128.2935593148722,52.92055668995107],[-128.29360228632814,52.920662361021854],[-128.29364757556976,52.920759017725864],[-128.29369098255452,52.92080358233964],[-128.2937293076327,52.920823015764086],[-128.29374747141665,52.920831630798716],[-128.29375555261765,52.92084324078442],[-128.29376502511465,52.9208632367178],[-128.2937710638139,52.92087153205764],[-128.29383724559074,52.92087191895322],[-128.29397035193938,52.92086876759454],[-128.29417264579726,52.920904619214014],[-128.29450923353153,52.920993917702084],[-128.29488533556852,52.9211592384823],[-128.29534388269926,52.921418803116936],[-128.29583183955248,52.92163631871961],[-128.29603077286214,52.92171315911351],[-128.29604201593065,52.921748816365124],[-128.29605969073387,52.92180004413669],[-128.29606752929982,52.92182455636836],[-128.29612685372663,52.92183573120053],[-128.29624924171094,52.92185856388754],[-128.29630858178828,52.921870303381766],[-128.296511784847,52.92195714996689],[-128.29706355193838,52.922113429282284],[-128.29756796429857,52.92216916261948],[-128.2978671970233,52.92220480115625],[-128.29826921467918,52.92229729584311],[-128.29866551368414,52.922352894103874],[-128.29883643806107,52.92237702712109],[-128.2989602065233,52.92240824315291],[-128.2991231959976,52.92247512542029],[-128.2991901029911,52.922557903962634],[-128.29920856937284,52.92260631746497],[-128.29927447924533,52.92265323874796],[-128.29939320479042,52.92274621596847],[-128.2995675026869,52.92286725674479],[-128.29977581808538,52.92297978432153],[-128.29996798234913,52.92306908318643],[-128.3000787941862,52.9231190458025],[-128.30010931299503,52.9231319029437],[-128.3001236644432,52.92313891431969],[-128.30017413514202,52.92317604662477],[-128.30026644815638,52.92322861301436],[-128.30041300323134,52.92326723010309],[-128.30056435780568,52.923308560520084],[-128.30066118264503,52.92337561330165],[-128.3007321053225,52.92348073542511],[-128.3007564469563,52.923586212305985],[-128.3007445011331,52.923692954857664],[-128.30072984476317,52.92383562709959],[-128.3007137959184,52.92395254018079],[-128.30070562026486,52.92399081903481],[-128.30094652379117,52.924016379096955],[-128.3015027686319,52.924047538304926],[-128.30198707388757,52.92400667175604],[-128.30235453650988,52.923942303253746],[-128.30264966694057,52.92393652772558],[-128.30276128568516,52.92394948319823],[-128.30282535320222,52.92396223913869],[-128.3029433005976,52.92398908043835],[-128.3030134397154,52.92401069558944],[-128.30302588367914,52.92401661384246],[-128.30304318771803,52.92402636546526],[-128.303097764342,52.92405332586712],[-128.30316190871338,52.9240845835481],[-128.30325283460346,52.92412877070535],[-128.3033735094047,52.92418863654165],[-128.3034789542905,52.92424262962645],[-128.30359979671476,52.924322663650436],[-128.3037293622533,52.92444345314303],[-128.3037984493182,52.9245833650561],[-128.30381701897113,52.924737163761954],[-128.30382659573098,52.92489673530517],[-128.30389969538757,52.925024801008476],[-128.3041434105514,52.925101872401235],[-128.30441887140117,52.92514580827966],[-128.3045862373708,52.92517280126543],[-128.3047112887442,52.92519277483106],[-128.30477426883263,52.92520275266392],[-128.30484572667973,52.925214241632595],[-128.30512687703788,52.925208177825205],[-128.30548318902748,52.92516139148028],[-128.30574394121527,52.92510583028367],[-128.30597317303327,52.925053128544725],[-128.30617109758333,52.92500776686918],[-128.30631744370774,52.92497350621035],[-128.30638461434083,52.92495761461905],[-128.30640738254598,52.92494764303448],[-128.3064547656504,52.92492765468226],[-128.30647938054875,52.92491763791383],[-128.30649415602974,52.92491510597448],[-128.30653206381575,52.92490932217987],[-128.30656436988713,52.924903639217],[-128.30663101147357,52.92489504980515],[-128.30673589387558,52.92488682283109],[-128.3067869122557,52.92488245915868],[-128.30680454901335,52.92488099223238],[-128.306903800025,52.924872319423734],[-128.30712570486975,52.924839383633824],[-128.30739214779763,52.924802766650124],[-128.30759190617314,52.92479100105287],[-128.30766383251924,52.92479407498861],[-128.3077248741761,52.92480240305621],[-128.30787166691061,52.9248281176602],[-128.30805481102936,52.92487104844137],[-128.30820172834228,52.92491637583544],[-128.30827776167126,52.92494347803962],[-128.30829206874716,52.924949359201506],[-128.30833306845523,52.92496649325324],[-128.30846189674807,52.92502170946914],[-128.3086418557538,52.92510899175883],[-128.3088101903031,52.92520547108415],[-128.30896583957423,52.92530836095159],[-128.30913105900734,52.925416112466095],[-128.30923161781502,52.92551728474859],[-128.30928296849083,52.92558747444264],[-128.30942966457235,52.92564569344053],[-128.30960096787476,52.92572810351989],[-128.30972964304604,52.92583208694753],[-128.3098285814117,52.92592039284088],[-128.30989249761342,52.92598192249951],[-128.30997403927026,52.9260588022037],[-128.31009361855627,52.9261668923286],[-128.31022897699887,52.92629092471944],[-128.31035634039236,52.926405023594505],[-128.3104557186437,52.92648435114464],[-128.3105556565873,52.92655694969323],[-128.3106493274193,52.926634146861296],[-128.31074717553577,52.926702301693005],[-128.3108844793299,52.92677639949953],[-128.3110117884489,52.92683780471162],[-128.31111889915954,52.926887838925],[-128.3112296430349,52.926936115471364],[-128.31134200606772,52.92697987551146],[-128.31146798678907,52.927051396691986],[-128.3115596820325,52.92721216213771],[-128.31172662870003,52.92745441422371],[-128.31212771506424,52.9276825313201],[-128.31253506567313,52.92782027589602],[-128.3126781666508,52.92786343061581],[-128.31269181584784,52.92789175616564],[-128.31274274282785,52.927988295286575],[-128.31281068324577,52.92812374023617],[-128.31286814572152,52.92825490649387],[-128.31291769210367,52.928394632457774],[-128.3129586490798,52.92851379044287],[-128.31297955444154,52.92855542712524],[-128.31321452921526,52.928539596647646],[-128.31381347167638,52.928600695671655],[-128.31432114028843,52.92878298489503],[-128.31454545201848,52.92889685885578],[-128.3147740145517,52.92890021097839],[-128.31506038388713,52.92890410263027],[-128.3152903231992,52.928950030394624],[-128.31546469931365,52.92900265681696],[-128.3157270171927,52.92888986433294],[-128.31618411674344,52.92860506469925],[-128.31674085511705,52.92842144740535],[-128.31723163858317,52.928361896859435],[-128.31771259077317,52.92829300360176],[-128.31817479697384,52.92822223535011],[-128.31836889847247,52.92819205968215],[-128.31840096190493,52.92818190263813],[-128.31847804704972,52.92815963801959],[-128.31863749922036,52.92810940775168],[-128.31881459479658,52.928109281468736],[-128.3189523372784,52.92817383620367],[-128.31901329397553,52.92821468262502],[-128.31907365655985,52.92821068562741],[-128.31918107936613,52.92818053962243],[-128.31928851788288,52.928150958267366],[-128.319402939052,52.92812964334112],[-128.3194953794984,52.928115488507345],[-128.3195880332808,52.92810524894711],[-128.3197661364405,52.928089405218614],[-128.3200040062255,52.92809256362452],[-128.32025169134792,52.92813925301016],[-128.32046471184816,52.92819952323647],[-128.32065056937333,52.92818913102473],[-128.32081494157717,52.92810965071906],[-128.32091662293956,52.92804261824715],[-128.32098335705015,52.92800149649545],[-128.32108175733143,52.927977132453194],[-128.32126485862764,52.92796735867778],[-128.3215058567949,52.92795979687008],[-128.3217442527637,52.92795565834523],[-128.32194979195043,52.9279471180194],[-128.32211183601402,52.9279444763994],[-128.3223049357075,52.92794739248572],[-128.32254106489628,52.92795282241583],[-128.3227267157494,52.927955884836045],[-128.322848668736,52.92795292138701],[-128.3229675147822,52.927944404400726],[-128.32305193296557,52.92793713204571],[-128.32314912673772,52.92792456668507],[-128.32329475371623,52.927911601062995],[-128.32344250229394,52.92790307798956],[-128.3236156344358,52.92788172076647],[-128.32384702972553,52.92786873799632],[-128.3240357257165,52.92787622283217],[-128.3242268650622,52.927809106705574],[-128.32445839929397,52.92766214627749],[-128.32456909448788,52.92758988274557],[-128.32459760291854,52.92761679236703],[-128.3247446328085,52.92768059194388],[-128.32505139179315,52.92771657882557],[-128.32545537828528,52.927774743855565],[-128.32579522730717,52.927904243081315],[-128.3259165869276,52.927975840628456],[-128.3259842254491,52.92788313381151],[-128.3261807147401,52.9276751989804],[-128.32636587002645,52.927532514973734],[-128.32642420534847,52.92750837341733],[-128.32643788918642,52.927503062146705],[-128.32649349979312,52.927480095582666],[-128.32668837803985,52.927396084040005],[-128.32701348612292,52.92725623727676],[-128.3272376006455,52.92717836456202],[-128.3273274452799,52.92718500072959],[-128.32740069360815,52.92721213697816],[-128.32750021677603,52.92722530852718],[-128.3276453036745,52.927202257701495],[-128.32792095659076,52.92712953498099],[-128.32825998868412,52.927039861302994],[-128.32843997036736,52.92699033235031],[-128.32851149244988,52.92696873614767],[-128.32865481189998,52.92693057889003],[-128.3288986108197,52.926957146212],[-128.32910698473128,52.92710270103593],[-128.32919795415668,52.92723207596268],[-128.32924324750286,52.92729339922598],[-128.3292887940105,52.92732501122823],[-128.32933654857507,52.92732911558801],[-128.32935691011383,52.927326470190316],[-128.3293837045854,52.9273220112167],[-128.32944848315708,52.92731344576389],[-128.3294905821474,52.927282341022845],[-128.32951580594323,52.92721512819165],[-128.32958096749442,52.92714544740754],[-128.32967910829998,52.927082405647994],[-128.32979314560922,52.92702016123823],[-128.3299167043206,52.92697847411424],[-128.3301555536064,52.92698271366464],[-128.33061656635567,52.92701002543853],[-128.3311069940092,52.92701264324542],[-128.33144015811865,52.92698586149151],[-128.33166313176952,52.92695565656726],[-128.33182229707472,52.92693456386929],[-128.3318971089571,52.926921869663964],[-128.33200514862367,52.926903467167385],[-128.33223644729043,52.92687197498483],[-128.332447384502,52.92684312828375],[-128.3325447262061,52.926833350538274],[-128.33261448872355,52.9268308464156],[-128.33269083765612,52.92682933283863],[-128.33276253860973,52.92682791136019],[-128.33285309189915,52.92683060071516],[-128.33301760761378,52.926839115562686],[-128.33324488141218,52.926853103736995],[-128.33346013873935,52.92685219858092],[-128.333663797519,52.92680948398449],[-128.33412178447176,52.926662496865426],[-128.3349065945203,52.926407553227314],[-128.33549749606613,52.926219803380874],[-128.33565142691154,52.92617134528677],[-128.33573396287812,52.92614671856258],[-128.3359117626211,52.926091615407124],[-128.33603368149798,52.926054438875134],[-128.33607118647416,52.926041361461344],[-128.33615104322072,52.92603585637679],[-128.33631571142584,52.926030344512384],[-128.33648696597578,52.9260258227926],[-128.336651710482,52.92602143010529],[-128.33689748065433,52.92601598406445],[-128.33721010340707,52.92600585507064],[-128.33745468887548,52.925995946738325],[-128.33761827960868,52.92598765602341],[-128.33774261156796,52.92597733769034],[-128.33779255042015,52.92597017459691],[-128.33782019135666,52.925930384647934],[-128.33787895124456,52.925846250959964],[-128.33801850538885,52.925756592237775],[-128.33822858806656,52.92567842069242],[-128.33832831196986,52.92564448120504],[-128.33831543462531,52.92551188354455],[-128.33847342783685,52.92519818080993],[-128.3388410476677,52.924967761910146],[-128.3390569569996,52.92491077507092],[-128.33909835394834,52.92490098277074],[-128.33919947570843,52.924875427919176],[-128.3393411321462,52.924841218899495],[-128.33941606122298,52.92483075978359],[-128.33948264973213,52.924855222610994],[-128.33961681213387,52.92490524972854],[-128.33968346243938,52.92493083238319],[-128.3398043283367,52.924976073963556],[-128.3400878744338,52.92508143044314],[-128.34031377322955,52.92513860158203],[-128.3404215122008,52.92511460029587],[-128.34047235734803,52.9250900444087],[-128.34051136853125,52.92508758216479],[-128.3406851894729,52.92509590109995],[-128.3410051147203,52.925100182794424],[-128.34127323893142,52.92507747419647],[-128.34144844243363,52.92504315117804],[-128.34155530364822,52.92502028746982],[-128.34158574304323,52.92501463195303],[-128.34160601053745,52.92501030900106],[-128.34170279138763,52.924990444202486],[-128.3418363674981,52.92496199880359],[-128.3418898131962,52.92495084453029],[-128.341958080521,52.924971909070244],[-128.34211439013035,52.92501756400115],[-128.3423446318233,52.925085856518365],[-128.342691571429,52.92517424847611],[-128.34304462064273,52.925238417148776],[-128.34340829738687,52.92539374381478],[-128.34384705931578,52.925677064112485],[-128.34421284464878,52.925904666197965],[-128.3444656981239,52.92607845007953],[-128.3446751238171,52.926242452223015],[-128.34488028641078,52.92639644845602],[-128.34503835966174,52.92655867491982],[-128.3450989607979,52.92676207577959],[-128.34513644743387,52.92696874468573],[-128.3452309759365,52.92711093517209],[-128.34534227272897,52.92720232984346],[-128.3453871088144,52.92723787858543],[-128.34547103963223,52.927306274091386],[-128.34564652604968,52.92747992043412],[-128.34582362687087,52.92763223215648],[-128.34599074111722,52.92768776621776],[-128.3460732639449,52.92769676749855],[-128.34609524227434,52.92770641979748],[-128.3461448941322,52.927727853163546],[-128.34618017105007,52.92774229002791],[-128.34622420528086,52.92776327030336],[-128.34629034195274,52.92779615165663],[-128.34633725500785,52.92781876072387],[-128.34636866795339,52.92783046717877],[-128.34640360518486,52.92783873984481],[-128.34643657163318,52.92784480946498],[-128.3464609318194,52.927830304608975],[-128.346506819935,52.92780023916227],[-128.34652833296764,52.92778467886988],[-128.3465855854595,52.92779194139994],[-128.34685574944763,52.9278229957879],[-128.34740157181446,52.92788329790921],[-128.34800609375705,52.92794299129048],[-128.34839884472802,52.92798280763467],[-128.34852081511963,52.92799719083798],[-128.34868806889858,52.928038134207505],[-128.34901654368204,52.92811230146922],[-128.34928204849712,52.928143443369166],[-128.3494827034316,52.92813102381503],[-128.34965179366222,52.92812092045655],[-128.34999814508043,52.92809663021252],[-128.35059143672515,52.928088143370424],[-128.35100138826172,52.92815226426544],[-128.3511952568299,52.92825322451495],[-128.35134871981055,52.9283314383393],[-128.35142760777876,52.92837582988551],[-128.35143360141586,52.928399819752016],[-128.35144153495517,52.9284254481224],[-128.35147965025888,52.928457200369174],[-128.35152426561453,52.928505640256034],[-128.35162327188397,52.9285597201577],[-128.35177240460342,52.92855953808937],[-128.351876720564,52.92855801822828],[-128.3519167543093,52.92872594967612],[-128.35190980753038,52.92907253002715],[-128.3518685774985,52.92933851520569],[-128.3518407562666,52.92940858376884],[-128.35184503781522,52.929418588721724],[-128.35185366280967,52.92943971855924],[-128.35187483324248,52.92946844584151],[-128.35191827884964,52.929512424280496],[-128.35197385729322,52.92957353384237],[-128.3520273572329,52.92963076531531],[-128.35207414620513,52.92968476739717],[-128.35212218337827,52.92974435035847],[-128.35215191745854,52.92979308746608],[-128.35216032627946,52.92981030199359],[-128.35213312472712,52.92984111729443],[-128.35206881076314,52.92990855181938],[-128.35201963300076,52.92994653336565],[-128.35202494583623,52.929958194966794],[-128.35204190780203,52.93001223712718],[-128.352059926339,52.93010212660987],[-128.35207093966505,52.93018319572317],[-128.35208466652045,52.93027989799158],[-128.35210597652784,52.930412335057554],[-128.35213655694022,52.93056083927575],[-128.35217299803017,52.93069744957294],[-128.35220461102674,52.93079716676067],[-128.35222908387237,52.93090262353554],[-128.35225122525583,52.93103335768395],[-128.35226855900896,52.931144571956324],[-128.35227327381605,52.93121286899182],[-128.35227142692642,52.93126391459159],[-128.35227231959433,52.93131379322917],[-128.35226048484031,52.93136952314762],[-128.35221279082384,52.93148483566602],[-128.3521513786056,52.931638542069955],[-128.35212152935512,52.93172267020171],[-128.35212053361045,52.931738386457496],[-128.3521245107417,52.93175960915709],[-128.35213254272253,52.93180373026937],[-128.35213659806772,52.93182663764137],[-128.35217111118777,52.93184388648452],[-128.3522719884164,52.93189792850482],[-128.35240093606802,52.93198784279612],[-128.35252849142714,52.932103015551206],[-128.35264152478183,52.93219157046405],[-128.35272887136563,52.932236913267346],[-128.35281769410233,52.93227549948667],[-128.3529118713803,52.93230949390963],[-128.3529943953613,52.932335316989395],[-128.35306160120945,52.932353589159376],[-128.35314273690125,52.932371026651346],[-128.3532841198213,52.93239903607572],[-128.35347875907692,52.93242933481343],[-128.3536681618528,52.93244909135145],[-128.35380473626324,52.932457571401095],[-128.35389153100945,52.93245919883628],[-128.3539746266702,52.932444647741306],[-128.3540729563753,52.93241913625987],[-128.354147523434,52.932401948238805],[-128.35424874666563,52.93237805599032],[-128.35442669441977,52.93234254709994],[-128.35469910255293,52.93231243099692],[-128.35503781544918,52.93231798595279],[-128.35527324825787,52.93236091939888],[-128.3553902574072,52.93240342427193],[-128.35554964331652,52.93245349406079],[-128.3557215453671,52.93251059620998],[-128.35580826098928,52.93254473773427],[-128.3558540125778,52.93256288172164],[-128.355954079251,52.93265281434035],[-128.3561713270009,52.932788045997924],[-128.35652946217166,52.93289187080139],[-128.35682492177182,52.932991908989834],[-128.3570209429723,52.933114110207484],[-128.3572171990464,52.93324080005585],[-128.357385248377,52.93334618732732],[-128.35749625454923,52.933414597332074],[-128.35758931227204,52.93347888212611],[-128.35768344892477,52.933545943674055],[-128.35778309527362,52.933611217493635],[-128.35788903609307,52.93367244550834],[-128.35795446923584,52.933709254258474],[-128.35800546097755,52.93373793907516],[-128.3581084608009,52.933796418418986],[-128.3582653946439,52.93388633083544],[-128.35854367590034,52.933995678461784],[-128.35888605814168,52.934084115664554],[-128.3590502342201,52.93411950067598],[-128.35907200174842,52.934125235254164],[-128.3590904948668,52.93413943975781],[-128.35910107976565,52.934162207076994],[-128.3591062956294,52.93432355100602],[-128.35911781408834,52.9346322068962],[-128.35924453507582,52.93488305097223],[-128.35949315003325,52.935062494728335],[-128.35965351373028,52.93516354830975],[-128.35971087958137,52.93518930617904],[-128.35977537792476,52.935226132704514],[-128.35984528543455,52.93527630477008],[-128.35989784064623,52.93531617811933],[-128.35995452447847,52.93536325177519],[-128.3600126748715,52.93541982145397],[-128.36009750751214,52.935487076696745],[-128.36024623401906,52.935613584706836],[-128.36036113370702,52.93575199163253],[-128.36062657531332,52.93591539924841],[-128.36110591197274,52.93611937108688],[-128.36138163757585,52.936215865627894],[-128.36167714605457,52.936315882176736],[-128.3622014734042,52.936523987656784],[-128.36246667580852,52.93664928527054],[-128.3624739792781,52.936663148808066],[-128.36247189329896,52.93667608862211],[-128.36246361504195,52.93671156716838],[-128.3624501787727,52.9367718239616],[-128.36244428297314,52.93679997155986],[-128.36247265693055,52.9368072501959],[-128.36258224114312,52.93683307968535],[-128.36277859230557,52.936876783181575],[-128.36301834356362,52.936929714486915],[-128.363218047585,52.93696662292548],[-128.36336646731024,52.93698663111331],[-128.36350336925415,52.937000699494035],[-128.3635624374138,52.93700679640034],[-128.36359001227876,52.937016333161395],[-128.36364707194622,52.937036489477954],[-128.36367339703844,52.93704044546676],[-128.36367034304658,52.93700238700252],[-128.36367990275184,52.93692259189914],[-128.36382729022364,52.936940933998386],[-128.36409732462636,52.93705211188723],[-128.36425626590403,52.93711058352858],[-128.36435560647783,52.937069346925355],[-128.36451447326138,52.93697534047006],[-128.3646571053949,52.936891194404794],[-128.36490307118828,52.93680440674746],[-128.36536057486782,52.93669879205163],[-128.3657489027661,52.936623716533724],[-128.36586596879792,52.936599495968565],[-128.36587676590372,52.936609369470375],[-128.36599124503135,52.936706296329895],[-128.36621235509404,52.93687675393639],[-128.36635510635335,52.93696245642336],[-128.3663823081089,52.93696527301244],[-128.36654954152237,52.93698825348702],[-128.36688294605094,52.93703200172196],[-128.3670501804953,52.93705499044381],[-128.3673196050931,52.93702097706826],[-128.3679096559983,52.93693510967871],[-128.36831831431144,52.93685681816292],[-128.36856400294138,52.936781796113884],[-128.3689141118469,52.93667328790789],[-128.3692286856736,52.93657950416131],[-128.36961777971374,52.936467957653086],[-128.37037862211858,52.93631866038025],[-128.37136530543978,52.93629037042579],[-128.37207336760417,52.9363983095857],[-128.37229586307222,52.936459418211356],[-128.37236605742265,52.93648098289988],[-128.37257439381855,52.93650537762896],[-128.37281646573916,52.936482558566844],[-128.37296657214847,52.9364324427339],[-128.37303010613255,52.93640144605525],[-128.37307110069892,52.93638436689867],[-128.37312395892027,52.93636255483492],[-128.37324235189237,52.93632877456393],[-128.37346213938622,52.93627445447132],[-128.3737659426283,52.93622179398362],[-128.37419080941268,52.93618351713732],[-128.37457349300118,52.936157857730194],[-128.37481508591364,52.936210163018664],[-128.3750688986968,52.93631435146789],[-128.37531512902103,52.936332926854256],[-128.37552788476773,52.93628602794016],[-128.37574528895294,52.93623903479559],[-128.37596702888257,52.93618634781918],[-128.37614653916992,52.93614516870378],[-128.37627687100314,52.93612515451004],[-128.37642160414688,52.936062253583074],[-128.37652656929868,52.93593848175076],[-128.37655363508216,52.93585553309394],[-128.3765600843753,52.935837464009204],[-128.3765753314237,52.93579343016621],[-128.3766914850665,52.935686249881826],[-128.37697878464124,52.93562214631517],[-128.37742786759895,52.93570052719157],[-128.37786925073323,52.93582447418813],[-128.3780728903049,52.93588145931456],[-128.3781202986735,52.93589564175565],[-128.37813731177457,52.93589978269079],[-128.37820699211704,52.935878749528676],[-128.37847846698864,52.93589849440267],[-128.37880982486206,52.936005592475084],[-128.37894026525944,52.93607079170154],[-128.37900961596884,52.93599370575867],[-128.37914919498724,52.935838968847506],[-128.37930525307752,52.935711919105024],[-128.37966411848743,52.935443993531415],[-128.38012598802726,52.934983939002954],[-128.3803093137496,52.93467806850128],[-128.380304631124,52.93461089235142],[-128.3802971930697,52.93451125767864],[-128.38026847611334,52.93414801968692],[-128.3802368138689,52.93371531896075],[-128.3802212662308,52.93353736553944],[-128.38021682124122,52.933524566337624],[-128.38018100884744,52.933417657216715],[-128.38011274941974,52.9332138615049],[-128.3800809129095,52.93311135665903],[-128.380107909346,52.93309399292944],[-128.380160070823,52.933059858596955],[-128.3801852363668,52.93304309695413],[-128.3801832318313,52.933007259671676],[-128.3801647246833,52.9327598527375],[-128.38012916312653,52.93220726399188],[-128.3800897347152,52.931568987263994],[-128.38005724661818,52.93110491842291],[-128.3800701620909,52.930785676031924],[-128.38014741397518,52.93048363629861],[-128.38025548102442,52.930265626998505],[-128.38036553798761,52.930133343398104],[-128.3804656735652,52.93002368406149],[-128.38053313450015,52.929946634910195],[-128.38058006421562,52.92988570662403],[-128.38062184391111,52.9298159040589],[-128.38066294983616,52.92971752938268],[-128.38070033107329,52.929619230039336],[-128.38071253508843,52.92957077218848],[-128.38071347188222,52.9295208649999],[-128.3807190533563,52.92940414885839],[-128.38073638465448,52.929247388433446],[-128.3807629182565,52.92910502617794],[-128.38078804606582,52.92902098500159],[-128.3807941481918,52.92899676054277],[-128.38079807554905,52.92898378296707],[-128.38082619368197,52.92891987157387],[-128.3809019272204,52.92879052409603],[-128.38102678177825,52.928656253962636],[-128.38116002612642,52.92855545843164],[-128.38125499411245,52.92848682156876],[-128.381343688903,52.9284558757859],[-128.38150263075954,52.92841453872497],[-128.38175276901683,52.92832034605967],[-128.38197431495408,52.92821495469957],[-128.38202895294722,52.92812527491169],[-128.38197839957522,52.92802146287837],[-128.38191942646858,52.92790044735635],[-128.38189292537066,52.92779334990815],[-128.38191448279574,52.927712188088925],[-128.38196254915545,52.92763833793727],[-128.3820349304528,52.92753260229739],[-128.38213045372467,52.92740733791395],[-128.38224370585883,52.927282279572744],[-128.3823556296387,52.92718359140996],[-128.38241382217464,52.9271409292411],[-128.38244907555946,52.92712115525737],[-128.38251606224037,52.927085598202915],[-128.3826223880953,52.92703692042834],[-128.3828061852268,52.92697321048938],[-128.3830178993392,52.926908943825936],[-128.38316769458697,52.92687058805676],[-128.38346494488962,52.92685223408066],[-128.38392786372393,52.926846219563394],[-128.38415513728705,52.9268433009217],[-128.38430415828196,52.926757869448984],[-128.38458284337287,52.926474732155086],[-128.38476643600845,52.92610830210015],[-128.3848203424092,52.925889142665746],[-128.38486292322034,52.92580082682437],[-128.38490349183166,52.925759641707586],[-128.38491879325628,52.925749796959956],[-128.38497027268676,52.92573698547914],[-128.38512843393528,52.92569845748887],[-128.3852903195432,52.925659862746066],[-128.38534458390947,52.92564698566861],[-128.38536758504532,52.92564147849014],[-128.38542660639288,52.92563019120303],[-128.38548734319824,52.925582991026374],[-128.38555566371815,52.92550479984257],[-128.38563076650405,52.925464600530105],[-128.38567661395427,52.925467590612136],[-128.38597680417897,52.92550186639172],[-128.38656028689152,52.92540202372317],[-128.3868982285621,52.92507899268718],[-128.38715983064614,52.924724429763685],[-128.38777537700997,52.924332420289346],[-128.3883611159812,52.923990900943565],[-128.3886337296532,52.923832884437545],[-128.388897270456,52.92369578905096],[-128.3891996452134,52.92355342862939],[-128.38933898158163,52.92349509548051],[-128.3894768496213,52.92344408422092],[-128.3897313518871,52.92334529995701],[-128.38994072406572,52.92317342409559],[-128.39006829878588,52.92290567459521],[-128.39011277936973,52.92271865271024],[-128.39010309885808,52.92267904248354],[-128.39004082599047,52.922681993824256],[-128.38993828288665,52.92258204820958],[-128.38992371868144,52.922355862771454],[-128.38995647449894,52.92220887698595],[-128.3900015202879,52.92214798247803],[-128.39008636923953,52.92208235067601],[-128.3901572808776,52.92203381987895],[-128.39021428349548,52.92198669281156],[-128.39027978926237,52.92190855560518],[-128.39035693995368,52.92178870650354],[-128.3904067902562,52.921680615015156],[-128.39042227123466,52.921591169923055],[-128.39046258679983,52.92146253448856],[-128.39051407844588,52.92135048986982],[-128.39053077863196,52.92131594958198],[-128.39061107095085,52.9213019849083],[-128.390979703378,52.9212277870046],[-128.3915341175812,52.92110943944786],[-128.3920544175517,52.920981135958655],[-128.39249527825237,52.920848839643014],[-128.39271025562167,52.92076037780166],[-128.3927519871345,52.920723650737976],[-128.39276805127722,52.9207109908449],[-128.39284820982968,52.92067796696821],[-128.39301798264475,52.920630787060205],[-128.39326126938616,52.920565293462644],[-128.39353623212736,52.92048290200453],[-128.3937377593458,52.920420499386694],[-128.39383905783092,52.92039881275785],[-128.3939181302401,52.92039608256649],[-128.39399362179483,52.920396232669866],[-128.3940367901517,52.920401516319686],[-128.39407838038562,52.92041188194519],[-128.39412655749902,52.92042323470873],[-128.39415947886323,52.92042873581429],[-128.39418667189386,52.920431546007784],[-128.39422129737474,52.92043420493559],[-128.39423994697208,52.92043438150588],[-128.39427272551785,52.92043707800641],[-128.39439282792932,52.92045145163276],[-128.39470450760868,52.92049164191609],[-128.39504333437554,52.920534077233974],[-128.39520436602683,52.92054705170568],[-128.39529599909383,52.920535660356826],[-128.395455780189,52.9205099830739],[-128.39560254313224,52.92048457065875],[-128.395650446634,52.920474625599475],[-128.39568926839385,52.92048560315489],[-128.3958278837087,52.92054725377891],[-128.39605282217536,52.92061947037581],[-128.39625803480334,52.92062258296365],[-128.39637885798751,52.920599940329936],[-128.3966860738247,52.92051126944319],[-128.39719284637175,52.920341733914114],[-128.3974369612465,52.92025771931795],[-128.3974712083233,52.92025365780203],[-128.39755461194454,52.92024523089042],[-128.39764546282728,52.920236652140574],[-128.3977112177973,52.92022914091854],[-128.39775962520022,52.92022815431543],[-128.39783100534757,52.92023791146557],[-128.3979232128345,52.92025341514131],[-128.39796470898153,52.92026209504316],[-128.3979764879386,52.92025624894823],[-128.39799838818828,52.92024795414462],[-128.39803243790058,52.920223714880045],[-128.39813050755666,52.92016117098352],[-128.39830656091155,52.92007685562248],[-128.3985050815243,52.91999432432286],[-128.39862235281907,52.91990896448076],[-128.39860770283164,52.91983077911073],[-128.3985641875914,52.91978626217421],[-128.39866819598,52.91974657683142],[-128.39891865567762,52.91969270206841],[-128.39909281240477,52.919640938951005],[-128.3992005747879,52.91956866171865],[-128.39933894591104,52.91947726476628],[-128.39945725598398,52.919410387129204],[-128.39957873630922,52.919366424850786],[-128.3997061025098,52.91932794838774],[-128.39982516105414,52.919290762455454],[-128.39994746913592,52.9192450966048],[-128.40004843762597,52.91920099615223],[-128.40013502445157,52.9191498967263],[-128.40023850084123,52.9190844331181],[-128.40033801617145,52.91901457439103],[-128.4004154590414,52.918950206880396],[-128.40048260627833,52.91888492819438],[-128.40055586614267,52.91881223242711],[-128.40063804119376,52.918732636429475],[-128.40067865097302,52.91869256561167],[-128.40071657906947,52.91867104486681],[-128.40082465256415,52.91860437463353],[-128.40096616429858,52.918519073616416],[-128.4011175383232,52.91844367091451],[-128.4012919306576,52.91837956629757],[-128.40150425922624,52.91831075827821],[-128.40171971055673,52.91823123915325],[-128.4019556400974,52.918151301487754],[-128.40229490917653,52.918053000090374],[-128.40261959847624,52.917960592506624],[-128.40282776729802,52.91790084555965],[-128.4029698132755,52.917858136833026],[-128.40320845712975,52.91774394883801],[-128.40355145726613,52.91756315438062],[-128.40376894829762,52.91745387320905],[-128.403880431437,52.91739834234127],[-128.4039640351762,52.917343937215044],[-128.4040075202041,52.91730548368918],[-128.40419988789426,52.91722979512917],[-128.40460209981168,52.91710777621929],[-128.40490844509577,52.91702078690339],[-128.40498543336972,52.91699791002095],[-128.404983819723,52.9169693477638],[-128.4050260483346,52.91687542427821],[-128.40511947129772,52.916764201061184],[-128.40516707351821,52.91668305702699],[-128.40516812845974,52.916619126675265],[-128.40517064486662,52.916564701181706],[-128.40517177956534,52.91650244651972],[-128.40517586792768,52.916409867847754],[-128.4051928560264,52.91628170291072],[-128.4052035944686,52.91614188858543],[-128.40519812145985,52.916045020560865],[-128.40518984150702,52.916013796058934],[-128.4051995982257,52.916005183026925],[-128.40523152571464,52.91597650002695],[-128.4052701403621,52.91593422579482],[-128.4053031333664,52.915858430278014],[-128.40533533553418,52.91576864030948],[-128.4053617044402,52.91570755591085],[-128.40539738135075,52.91564628116638],[-128.4054673101798,52.915547862251394],[-128.4055643257251,52.91543432262542],[-128.40564615146764,52.915348558656014],[-128.405725156202,52.91527910534336],[-128.4058368934359,52.91519497189216],[-128.40593731384382,52.915125089378115],[-128.40604077153492,52.91505962050609],[-128.40620318734224,52.91496548038852],[-128.40641309153386,52.91488718666184],[-128.40664280855606,52.91484605215678],[-128.4068896388497,52.91482754732373],[-128.40709135940386,52.91481893475266],[-128.4071520199715,52.91478742076496],[-128.40713194103984,52.914728963698074],[-128.40719061722328,52.914629661623835],[-128.40730481126738,52.91450679016694],[-128.40737234592478,52.91441571126641],[-128.40740195946532,52.91434615529112],[-128.40741857987737,52.91431049254557],[-128.40744848497238,52.914279051709855],[-128.40752560671132,52.91420907946082],[-128.40761965724408,52.91414212427932],[-128.40772647976837,52.914086675799936],[-128.40785215941636,52.91401851686536],[-128.4079967799172,52.91392305202453],[-128.40812776295854,52.913833481205856],[-128.4082225548871,52.913779399746275],[-128.40830479622457,52.91371773566631],[-128.40835681385303,52.91363257984064],[-128.40836035131886,52.913546730320135],[-128.4083806550489,52.913477364633536],[-128.40847120108555,52.91341440018845],[-128.40857630562627,52.91334497537941],[-128.40867154906326,52.91326622659184],[-128.4087712265512,52.91319971126464],[-128.40882690553343,52.91316269226975],[-128.40884410738633,52.91315393539187],[-128.4089011360783,52.913124172104915],[-128.4090495019617,52.91304545624172],[-128.40923853884314,52.912944595144864],[-128.40942604564316,52.91284938009022],[-128.40956489264536,52.912783747962656],[-128.40965142305888,52.91273207689697],[-128.40972049442257,52.91263535884736],[-128.40979810829091,52.91254127324441],[-128.40996203606838,52.91250707681538],[-128.41014887610672,52.912466248483845],[-128.41024776628532,52.91241881750008],[-128.41027126797465,52.91240600257558],[-128.41028840531476,52.91239611660992],[-128.41036985740894,52.91235352770354],[-128.41052181349616,52.91227248486803],[-128.41071030116603,52.912178368718905],[-128.4108791678833,52.912099786308865],[-128.4109985004266,52.91205137054701],[-128.41108440317,52.91202157934455],[-128.41113011496205,52.912006066525514],[-128.4111464874781,52.91199900362114],[-128.41120311422196,52.911978782169435],[-128.4112972269253,52.911946014982526],[-128.41140400442555,52.91190626975825],[-128.41155164132587,52.91184773831733],[-128.41170013816387,52.911788076804584],[-128.41179587262846,52.91175079109096],[-128.41187518828312,52.91172001313645],[-128.41199830494975,52.911672639921775],[-128.41216714941945,52.91161031809253],[-128.4123624199712,52.911537354116774],[-128.412582829885,52.91144762102457],[-128.41279910374152,52.91135068893234],[-128.4129688380062,52.91127096432552],[-128.41311325552718,52.91122146657742],[-128.41329935408467,52.91118401189051],[-128.41353900300552,52.91115442777123],[-128.41375927033485,52.91114430156594],[-128.4138682824618,52.9111443067936],[-128.41393999704857,52.911061551352276],[-128.41406377497137,52.91091101047923],[-128.41412447889954,52.910831279442775],[-128.41411320337272,52.91079675319328],[-128.41407884625994,52.91073298399513],[-128.41404776473715,52.91069437939223],[-128.41407053433696,52.91066868918328],[-128.4141810918194,52.91062997595064],[-128.41434074639255,52.910586335019374],[-128.4145022376424,52.91047650441575],[-128.41467976970793,52.91032093947352],[-128.41487854999716,52.91021146395044],[-128.41504684186222,52.9101558674029],[-128.415131958894,52.91012889673379],[-128.41520040144516,52.91010338065606],[-128.4152627984272,52.910086402294624],[-128.4153115709843,52.91014146155733],[-128.41536259708516,52.910252535354005],[-128.41547519866884,52.91028273818276],[-128.41566807123962,52.91021711006174],[-128.4158212174886,52.910157347559505],[-128.4158969465214,52.91012888284658],[-128.41592518628173,52.91011764673103],[-128.41596621678184,52.9101016719715],[-128.41605101485948,52.91006909211881],[-128.41609490978107,52.91003791755397],[-128.41607713422806,52.909905422951496],[-128.41603368720848,52.909681506892575],[-128.4160109614515,52.9095765792887],[-128.41606085473464,52.90953631175882],[-128.41616073805142,52.90944119881009],[-128.41627993632542,52.90930868876309],[-128.41640559237584,52.90917492467301],[-128.41652561726767,52.909040719998615],[-128.41662187215923,52.90891428702566],[-128.4166737716906,52.908827442923304],[-128.416686118269,52.90879860264221],[-128.4167202296304,52.90874296201182],[-128.4167952449918,52.908636582126],[-128.41686596407706,52.90853646165262],[-128.4169006471327,52.908490900171735],[-128.41690941349617,52.90848119414785],[-128.41699380954367,52.90844133832646],[-128.41725261439387,52.908322776251936],[-128.41740072965715,52.90812519591417],[-128.41725880516813,52.907922929905304],[-128.41716169195072,52.90780439928821],[-128.41720776583063,52.90771318969533],[-128.41725158240345,52.90761530812368],[-128.4172694843481,52.907503939440865],[-128.41726979284996,52.90736153820829],[-128.41726604271958,52.90727920115516],[-128.4172661542596,52.907264623006135],[-128.417286423054,52.907227771246184],[-128.41731940534504,52.907119456220286],[-128.4173338387692,52.90701264365858],[-128.41731602427694,52.90696143370747],[-128.4172907805605,52.90692719475475],[-128.41728281140925,52.90690157049419],[-128.41730004053045,52.90689336782328],[-128.41732164378303,52.9068800252668],[-128.4173397811588,52.90682191411296],[-128.41737548379655,52.906712421898625],[-128.41742518334047,52.906619460253935],[-128.4174460234243,52.90659267871244],[-128.4174606281851,52.90657107531488],[-128.41748185023206,52.90655102220563],[-128.41752788899998,52.90650859066951],[-128.41759376505667,52.90645453911437],[-128.417665224549,52.906400372734886],[-128.41778222790663,52.90632788658963],[-128.4179456012234,52.90626791057447],[-128.41808797517933,52.90626498326752],[-128.4181981981437,52.906286262528056],[-128.4184178684077,52.90623353290763],[-128.41879138133768,52.90605149694496],[-128.4191577489524,52.90584214124619],[-128.41944236521678,52.9056697891943],[-128.41963056454475,52.90553865399537],[-128.41969425707433,52.90547903996012],[-128.41971092788472,52.90544450415549],[-128.41974639960424,52.90536360241697],[-128.41980514414573,52.90524971530979],[-128.41991320070986,52.90515106669985],[-128.4200713012479,52.905064277718274],[-128.42021175996757,52.90499467888987],[-128.42026169228498,52.90497178293995],[-128.42026776851696,52.90494755607944],[-128.42027362169705,52.904919405043415],[-128.42028542326136,52.904864778358736],[-128.42031920849425,52.90480353698451],[-128.42036147188108,52.90474380742372],[-128.4204182735888,52.90466134518303],[-128.42049055246395,52.904556148849906],[-128.42055422517848,52.90446345408903],[-128.4205937524494,52.90440490196002],[-128.42060178476035,52.9043823121556],[-128.4205930349948,52.90435950268968],[-128.42060318331727,52.90432510096656],[-128.42064426988483,52.90429398220972],[-128.42067870751882,52.904277011111546],[-128.420699926908,52.90425695739343],[-128.42071887109594,52.9042296580659],[-128.42072567885708,52.90421830569284],[-128.42074109180476,52.90419444272148],[-128.42080726120298,52.904112908624796],[-128.4209389487705,52.903987428157464],[-128.4211106409778,52.90386111492995],[-128.42124966103097,52.903750059013845],[-128.42131323562384,52.90365568840551],[-128.4213514060454,52.903540537570585],[-128.42139086419465,52.90341526917368],[-128.42140920228772,52.90336107279173],[-128.42144752045277,52.90334682907952],[-128.42155417114435,52.90330539008325],[-128.42165455522584,52.90326856493386],[-128.4217259901625,52.90324691179405],[-128.42181414245204,52.90322434922706],[-128.42189652090215,52.90319855080002],[-128.421973092892,52.90316894312942],[-128.4220822082675,52.90312184674164],[-128.42218842857244,52.90307312355555],[-128.42223317117165,52.90304080763924],[-128.4222482142774,52.90297770915612],[-128.42227209904144,52.902889761581925],[-128.42229040457073,52.902851262845324],[-128.42243136617725,52.90283995442021],[-128.42268883425922,52.90273149753369],[-128.42281694330893,52.90254329075445],[-128.42281742897654,52.9024535826639],[-128.42281874865571,52.90244402953707],[-128.42269868743074,52.902429684761],[-128.42245867819636,52.90241948825616],[-128.4223426536882,52.90236133215327],[-128.4223642296299,52.90223306794098],[-128.42242407333165,52.90208943945273],[-128.42250583806174,52.901971147523085],[-128.42256988578598,52.901901433251986],[-128.42261045888938,52.901861354451064],[-128.42262316244322,52.901789899339704],[-128.4226136417188,52.9016718016084],[-128.42262078897917,52.901535429816605],[-128.4226530663305,52.90139853130052],[-128.42268472461566,52.901267260618155],[-128.42271539937542,52.90116796065917],[-128.42273233367243,52.901105379176336],[-128.42274836317168,52.901059643704755],[-128.42275884191503,52.90103083203094],[-128.4227778464966,52.90098839893566],[-128.4228083939869,52.90090311240348],[-128.4228454305291,52.90081713602417],[-128.4229252538507,52.90073027800287],[-128.42302401912133,52.900632382421946],[-128.42309720912996,52.900559671805695],[-128.42319217384977,52.90047698646267],[-128.4233208539038,52.900364454282574],[-128.42346800019908,52.900249298894856],[-128.42359965537028,52.90015633102396],[-128.4236645122607,52.900101175273804],[-128.42368111350163,52.90006550991765],[-128.42369203661266,52.90002828423864],[-128.42369974777014,52.900000094588826],[-128.42370225859605,52.89997873949802],[-128.42370763197138,52.8999584466315],[-128.42371589765688,52.89990726485303],[-128.4237251439176,52.8998078410688],[-128.42373165558425,52.899709603842204],[-128.42374222208406,52.899616880200554],[-128.42376506863638,52.89952727607991],[-128.42378483018499,52.89944893885673],[-128.42379965789098,52.89933314664898],[-128.42379091324787,52.89921223419189],[-128.4237515410522,52.89914240835858],[-128.42368785155844,52.89908710360137],[-128.42362193567962,52.89902567345747],[-128.42356758111703,52.89895447005141],[-128.4234885388331,52.89884229895885],[-128.42337210215453,52.89871127252654],[-128.42326603963033,52.89861534640953],[-128.423203274538,52.89856002234985],[-128.42316279353318,52.89851992725872],[-128.42309279016453,52.89845185369261],[-128.4229984667782,52.898349523151914],[-128.42294194896317,52.89825650456248],[-128.42290704682236,52.898166969314595],[-128.4228644277149,52.8980400274086],[-128.4228457625638,52.89792492541304],[-128.42284287200948,52.89779211481912],[-128.4228428415648,52.89761159751227],[-128.4228414663133,52.89752192749096],[-128.4228407976047,52.897510172845216],[-128.4228410656428,52.897482136583264],[-128.4228410467276,52.8974490562159],[-128.42285016817885,52.89736365480706],[-128.42288001938834,52.89715169236203],[-128.42288847355553,52.89689082771247],[-128.42284553201358,52.89669269874525],[-128.42280946462276,52.896533662183],[-128.422811443055,52.89642094226052],[-128.42281600490915,52.896386646248196],[-128.42282099600223,52.89635963387178],[-128.4228313128395,52.89629551114719],[-128.42282491557057,52.8962485512966],[-128.42277254187405,52.89622832715034],[-128.42272214150384,52.89621030478055],[-128.42270006285273,52.896165910509765],[-128.4226137306815,52.89608920327424],[-128.4224756165161,52.896019169043264],[-128.42242119100183,52.89597936997539],[-128.42237171533537,52.895993844090064],[-128.42217429928112,52.895962031889354],[-128.42176870309788,52.89592217405834],[-128.42142958847472,52.895953825624275],[-128.42114807556678,52.8959663503809],[-128.42079147653428,52.89585427765504],[-128.42053931838626,52.89571146689311],[-128.42033498633202,52.89565624821847],[-128.42016647084122,52.895624958992386],[-128.42012394391048,52.895597803635525],[-128.41996478146228,52.895681808221724],[-128.41936798020808,52.895801172219116],[-128.4186274560797,52.89571886105012],[-128.41827145539258,52.89553500991878],[-128.41797708223078,52.89545248723226],[-128.41751273088823,52.895411024635436],[-128.41720485546904,52.89535287960489],[-128.41702856893983,52.89528306783668],[-128.41690463548258,52.89523291784971],[-128.41677217743344,52.89518013541039],[-128.4165167894433,52.8950951304331],[-128.41627385176622,52.895032284631036],[-128.41608032668685,52.894986927671695],[-128.41586194754038,52.89489723200142],[-128.4157058973279,52.89479000198762],[-128.41563430702752,52.89471017942777],[-128.41556820236718,52.89464482904873],[-128.41549217374904,52.89458527969039],[-128.4154048547241,52.89452372875339],[-128.41526502560671,52.894439701738236],[-128.4150734963497,52.89434721062654],[-128.41492092782389,52.894284757197816],[-128.41481368230504,52.8942331410832],[-128.414669052605,52.89414641340532],[-128.41453822694925,52.89405659450879],[-128.4144876276569,52.89401839070189],[-128.41447182206602,52.894002461982716],[-128.41445501472055,52.8939854236367],[-128.41443222789616,52.893961224591216],[-128.41438182189734,52.8939101271402],[-128.41431840846394,52.89384303449834],[-128.41424801403983,52.89376767148586],[-128.41416655415827,52.89367796866518],[-128.41410048706962,52.893596910571695],[-128.41404542565044,52.893512827877025],[-128.41399604182374,52.89343031490606],[-128.41397515046648,52.89339037966925],[-128.41397549006683,52.89334720094779],[-128.4139768193728,52.89327205139972],[-128.41397720584513,52.893229436811325],[-128.41397786051672,52.89320812004219],[-128.41397882101936,52.893159331397804],[-128.4139664592567,52.893072685579575],[-128.4139331749632,52.89294554901739],[-128.41388368742153,52.892812017760996],[-128.4138521171963,52.89271511912763],[-128.41382727132014,52.89263826452523],[-128.413805065465,52.8925585571266],[-128.41377640312055,52.89248009454083],[-128.41372039183258,52.89237921275789],[-128.41366235003449,52.89224249333135],[-128.41362724111633,52.892099696912986],[-128.41361203642347,52.89199573483271],[-128.4136087365087,52.89193749870352],[-128.413604914759,52.89185348503084],[-128.41359909673668,52.89171793582416],[-128.41361888233746,52.89157401235263],[-128.41370534213945,52.89145619456147],[-128.41380818838195,52.89139745640255],[-128.41385040982237,52.89138649843405],[-128.41387348655354,52.89136640758471],[-128.4138169396506,52.89123974853322],[-128.41362689315707,52.89100874852513],[-128.41350679631145,52.89081220047907],[-128.41347925807247,52.89067149095612],[-128.41343367187844,52.890524424558635],[-128.4133809471587,52.890366292390134],[-128.41334065734495,52.89021406719419],[-128.41331989300193,52.8900777034581],[-128.41331086579294,52.88993493648353],[-128.41329883304365,52.889788302407545],[-128.4132720544647,52.88967728528482],[-128.41324903733963,52.88961609014908],[-128.41322870862695,52.889553162459734],[-128.41320626830202,52.889469530874216],[-128.41319157004514,52.88939078140312],[-128.41318697054106,52.88930959113074],[-128.41318076387014,52.88923290979686],[-128.41316315523395,52.88916880501903],[-128.41313652653258,52.88912617980112],[-128.4131141237108,52.88910869999386],[-128.41313257245932,52.88908926037388],[-128.4131929727124,52.88903756512518],[-128.41323259070356,52.88898069032034],[-128.41327834689642,52.88891696210507],[-128.4133833252604,52.8888138962218],[-128.41349153124887,52.888701794116834],[-128.41356247882857,52.888606154101105],[-128.41362658989098,52.88850504824451],[-128.41368344695027,52.8884237173107],[-128.4137290773325,52.88834148665861],[-128.41376932306895,52.88821340504108],[-128.41378878917382,52.888063881585424],[-128.4137958693015,52.88790956241627],[-128.41379824003516,52.887770481042736],[-128.4137989377527,52.8876678785202],[-128.41382084407286,52.88757773016898],[-128.41388389134906,52.88744132262312],[-128.413906710959,52.88730182128299],[-128.41384666580976,52.887211678391225],[-128.41384530982302,52.88712200768444],[-128.41389494735427,52.88702848226041],[-128.41388230222634,52.8869368009016],[-128.41388815144316,52.88682624390892],[-128.41393891653215,52.886736058982024],[-128.41397759377543,52.88667920309899],[-128.4140105463745,52.88661966616636],[-128.41405658921266,52.88652845691203],[-128.4141113142572,52.88642586596625],[-128.41417368462805,52.886343291182676],[-128.41426254626018,52.88625176750453],[-128.41435221817042,52.88615798463774],[-128.41443458775353,52.88609967500398],[-128.41454306241752,52.88605820370804],[-128.41463256743893,52.886027213078954],[-128.41481722346856,52.885949974484305],[-128.4151216269182,52.88581646505641],[-128.41527163387067,52.88575227117358],[-128.41522513053377,52.88570389241044],[-128.41511543248362,52.885592345607456],[-128.41500954816772,52.88549865112087],[-128.41493132744566,52.885432984148785],[-128.41487597024562,52.885376382385495],[-128.41483953292487,52.88532498910698],[-128.414810219916,52.88526785225836],[-128.41478181454667,52.885193869279355],[-128.41475671745943,52.88511253479385],[-128.41473866130113,52.88505684403596],[-128.4147132890696,52.88501980841307],[-128.41467616858495,52.88497291405275],[-128.41464596482996,52.88491635159056],[-128.41463415847406,52.88485604749134],[-128.41464413344275,52.88480202334993],[-128.41467371453777,52.88473246426581],[-128.4146939544988,52.884580116769705],[-128.41472510687632,52.88439055331205],[-128.41480221586767,52.88427236082051],[-128.41486542433802,52.884188090881736],[-128.41488766062758,52.88410409757884],[-128.4149095948081,52.88401451326905],[-128.41494609708087,52.88388649868648],[-128.41501145957287,52.88372538426914],[-128.41509909914555,52.88353016603868],[-128.41514808488776,52.88335929686407],[-128.41515742397812,52.88329407332069],[-128.4151907675243,52.88325806478348],[-128.41525292402147,52.88318839221303],[-128.41526960867878,52.883121340339805],[-128.41521762916358,52.88300916365694],[-128.4152707887784,52.88291220117112],[-128.41547802868405,52.882937659671995],[-128.41562744592895,52.88294523621304],[-128.41570768000443,52.88284940340776],[-128.41581357716356,52.88273006221483],[-128.4158970206387,52.88264144683585],[-128.41595949262026,52.8825773735195],[-128.41602554109465,52.882510428040966],[-128.41609437164712,52.8824434163598],[-128.4161804702469,52.882352512657796],[-128.41628312066715,52.882241642485404],[-128.4163153855949,52.88213726030269],[-128.41632030556752,52.882043540370006],[-128.4164223800043,52.881955106612054],[-128.41652804854428,52.88184809396024],[-128.41656889827985,52.881747463973404],[-128.41659920616502,52.88167452550899],[-128.4166501345894,52.88157088067093],[-128.41671771172912,52.88143270021333],[-128.41678334816913,52.88129288223024],[-128.41682996885132,52.88117923471006],[-128.41685116429304,52.881126100692406],[-128.41686202498636,52.881087755276795],[-128.4168864185149,52.880992513550055],[-128.41690388156812,52.880857040791014],[-128.41689959698778,52.88071585290806],[-128.41686615620708,52.88056965838294],[-128.41683172834234,52.880438625338606],[-128.4168171552616,52.880345862234996],[-128.41681687439646,52.88025896755629],[-128.41686279387227,52.880149263163204],[-128.41698998242174,52.88004405877108],[-128.41716324180283,52.87994686765637],[-128.41727787011786,52.87985032603809],[-128.41724611013055,52.879766330205626],[-128.4171437795548,52.879702281726125],[-128.41701892066712,52.8796678486777],[-128.4168969241662,52.87961821542792],[-128.41685484740657,52.879549563894024],[-128.416860604317,52.879519737163356],[-128.41669883125883,52.87949110397799],[-128.416176856599,52.87936616617571],[-128.41554778686304,52.87920811276516],[-128.41491807550645,52.87915377929501],[-128.41421942791914,52.879147950563734],[-128.41378462264382,52.879082314658675],[-128.41364597565203,52.87900163441812],[-128.41356008932007,52.87894845759607],[-128.41347776189141,52.87890866247959],[-128.41341857930723,52.87888296811512],[-128.41336289452636,52.87885327307984],[-128.41320809088126,52.87881608726946],[-128.41295279096002,52.878730508931945],[-128.41272241464677,52.87857546678684],[-128.4125732979924,52.87847425289095],[-128.41245591778423,52.87844021773031],[-128.41231483719875,52.87839882923985],[-128.41220170293522,52.878357423123376],[-128.4121350819644,52.878331880808226],[-128.41207925411337,52.87831620807357],[-128.41198199299657,52.878324931641004],[-128.41184679844542,52.87835461586887],[-128.41177668966694,52.87836614575157],[-128.41176743971002,52.87835063825578],[-128.41173799031174,52.87830751435099],[-128.41166349438328,52.878224950292214],[-128.41156054204168,52.87814969752888],[-128.4114905539298,52.8781141328196],[-128.41141040692153,52.87807989775196],[-128.4112351982844,52.87802743077835],[-128.4109903606633,52.87797863447502],[-128.41073972168473,52.87792602786043],[-128.4105389540748,52.877866235500825],[-128.41040385578182,52.87781518707992],[-128.41029867576006,52.877766332492584],[-128.41018653474833,52.87770976294604],[-128.41002645368425,52.877628396934945],[-128.40987827761802,52.87756023246351],[-128.40982871550898,52.8775399452614],[-128.40979069315713,52.877526148837084],[-128.4097450096176,52.87750858964731],[-128.40972413826654,52.8775017250803],[-128.40969275990307,52.87749003486747],[-128.40961956121163,52.87746350480516],[-128.40952305742522,52.87743633128072],[-128.40940189527157,52.877417511872835],[-128.4093022417696,52.877400493872415],[-128.4092159564663,52.877389373025146],[-128.40904966181284,52.877379327122725],[-128.40884054914477,52.87733652154747],[-128.40868360246034,52.87726125183845],[-128.4085688453209,52.877191279588914],[-128.4084759558462,52.87714553524312],[-128.40842680609404,52.87713252256665],[-128.4083897340688,52.87713552476691],[-128.40816349175358,52.877135676021815],[-128.40775367386692,52.87713286061713],[-128.4075193425509,52.87712140786951],[-128.40742706694132,52.877103115928634],[-128.40724192628937,52.877072706217234],[-128.40699259442445,52.87704305482302],[-128.4067074445512,52.877021985070805],[-128.40643318664823,52.876996206662966],[-128.40621055306397,52.876944703473505],[-128.40601751509365,52.876856714446085],[-128.40583430414614,52.876761240397336],[-128.4056372109691,52.87668398103061],[-128.40541933228297,52.87663406539028],[-128.40523098101352,52.87661268816668],[-128.40506721422548,52.876614362419026],[-128.40485783401954,52.87663265816638],[-128.4046127679227,52.87664552141545],[-128.40439382499443,52.876642717513946],[-128.40424332971273,52.87664859505489],[-128.4041316189199,52.87666545643192],[-128.40402030861483,52.87667278350469],[-128.40386866559345,52.876641683322724],[-128.40362538840432,52.87658723388753],[-128.40339872850373,52.87656328253372],[-128.40324240097294,52.87656479313688],[-128.4030607363811,52.876562901795594],[-128.40282801962553,52.876579993735135],[-128.4025149039695,52.87662451722644],[-128.40217945900554,52.876652677798674],[-128.40197281206085,52.876669800246006],[-128.4018898415317,52.8766843857213],[-128.40183982055672,52.87667251834806],[-128.40176195399127,52.87664551380743],[-128.40163138112925,52.87664145484923],[-128.40149989515973,52.876654232894886],[-128.40141767305198,52.87666544801281],[-128.40131359011158,52.876685514517895],[-128.40118462623968,52.87671000912704],[-128.40099761881376,52.87674522441755],[-128.40073231410747,52.8767954936806],[-128.40060331827343,52.8768194321585],[-128.40054718007323,52.87676508238033],[-128.40043210424233,52.876655865855994],[-128.4003566415489,52.876589012050296],[-128.4003126017553,52.87656748691451],[-128.40025560570132,52.876547347616345],[-128.40019018445142,52.87652625913278],[-128.4001208393169,52.87650188705554],[-128.40005693142191,52.876474605301695],[-128.39997961039026,52.87644086107487],[-128.3998549241278,52.8763923957687],[-128.39970499534897,52.87634219434508],[-128.3995586610981,52.87628968584794],[-128.39942455796006,52.87622290756688],[-128.39931100844606,52.87615738687388],[-128.3991621615362,52.87610997025712],[-128.3990233859374,52.87607580264328],[-128.39896595817567,52.87606464140575],[-128.39894835968124,52.87606612188164],[-128.3989305889323,52.87606480727681],[-128.39880136531357,52.876034929346815],[-128.39855437828078,52.87598054532589],[-128.39842737903885,52.875858115511186],[-128.39844776818543,52.87567438250645],[-128.39843942366912,52.87557588442178],[-128.3983357982171,52.87557070679546],[-128.3981716882456,52.87556620726482],[-128.39805149068204,52.875547921764785],[-128.39793035627275,52.87549657444576],[-128.39776627949772,52.87542647715344],[-128.39764960417105,52.875421009062826],[-128.39749278357058,52.87546345159092],[-128.39727627410699,52.87547067600084],[-128.39715066251767,52.87547211709413],[-128.3971030619449,52.87548654282605],[-128.397077307023,52.875492109222904],[-128.39702531779727,52.875478037533796],[-128.39688394651728,52.87543102176105],[-128.39668201327825,52.87534992666851],[-128.3964479206705,52.87524314260986],[-128.39624243618414,52.87514866443606],[-128.39616791779784,52.875114860636984],[-128.39610484044252,52.87511895433308],[-128.3959663829228,52.87512345469517],[-128.39585126082684,52.875129165479194],[-128.39566088984895,52.87518743065169],[-128.39539422943872,52.87527975727604],[-128.39523346038968,52.87530153896764],[-128.39510291323626,52.8751489048427],[-128.3949692066585,52.87490664551104],[-128.39491991529474,52.87479159822987],[-128.3949154720175,52.87477879911717],[-128.39490897957037,52.87476266910447],[-128.39490142438729,52.87474432725834],[-128.39488780053188,52.8747171302741],[-128.3948649193085,52.87467443368964],[-128.3948301550553,52.874619080629024],[-128.39478930788198,52.87455488167563],[-128.39474534895874,52.87448513996739],[-128.3947227821871,52.87444803412939],[-128.39471802431754,52.87442963526669],[-128.39467987706345,52.874396775711084],[-128.39463210120013,52.87435850619688],[-128.39461362217497,52.87434430675201],[-128.39449053776312,52.874324390193784],[-128.39422051080598,52.874306902289476],[-128.39373325341387,52.87418452344134],[-128.39306625465557,52.873928456855765],[-128.39266160023425,52.873751693707504],[-128.39256526675044,52.87371048326619],[-128.39251131194393,52.87369476332933],[-128.3924885542532,52.873687378055855],[-128.39250009543568,52.87366079866609],[-128.39254334590348,52.87358535182224],[-128.39263780084755,52.87347691183089],[-128.3927504129321,52.87336025342384],[-128.39277734453,52.87327617787316],[-128.39270951667157,52.87322878096766],[-128.39261480938842,52.87318361764343],[-128.39252142202395,52.87311208294541],[-128.3924217058714,52.8729941414828],[-128.39234369931276,52.872881364115216],[-128.39228132609685,52.87283161346375],[-128.3920963036791,52.87278604588726],[-128.39182918057634,52.872720845781465],[-128.3917149446262,52.872692341572915],[-128.39170457731643,52.872673491669005],[-128.39166450176182,52.872606468419846],[-128.39168755263205,52.87250284608253],[-128.39183152371402,52.87241414608412],[-128.3920362370006,52.87236288739491],[-128.39224029945294,52.87233294497038],[-128.39232903213244,52.87232160357269],[-128.39236784087427,52.8723331470076],[-128.3924799175639,52.872356097355784],[-128.3926069138997,52.87236303761815],[-128.3927488560091,52.87233772281783],[-128.39300831162737,52.87228310524665],[-128.39329860219442,52.872230666637925],[-128.3934535615601,52.87220508584327],[-128.39354669879873,52.87218916887372],[-128.39366932561632,52.872168175166706],[-128.39380962665354,52.87214681231121],[-128.39391969040864,52.872133922886505],[-128.39399943817503,52.8721283694116],[-128.394076452314,52.872124001778076],[-128.39430017912218,52.872112716026066],[-128.39473807386702,52.872102671595506],[-128.39518894223784,52.87214113021163],[-128.39553266219642,52.87221093251669],[-128.3956967250822,52.87224795217755],[-128.39584395852467,52.872250556533096],[-128.39621528594503,52.87218243848162],[-128.39660302877,52.87205847890652],[-128.396742125565,52.87196594324108],[-128.39673664435662,52.87190158860387],[-128.39673299863458,52.87185344992662],[-128.39673305547186,52.87180467062708],[-128.39674298893573,52.87171645567326],[-128.39676808448908,52.87159989164402],[-128.39679391204336,52.871513029845794],[-128.3968019195259,52.871489885709224],[-128.39680919305144,52.87147011127368],[-128.3968343575351,52.87140456642361],[-128.3968667959184,52.87131925608407],[-128.3968916047295,52.871263809572305],[-128.39690234558364,52.87123947946372],[-128.39692097538472,52.87120658366197],[-128.39698140286885,52.871122379702506],[-128.3970610030539,52.87103162228436],[-128.39710260227318,52.87099320783489],[-128.39713506846257,52.8709746057704],[-128.39720432750715,52.87093170717242],[-128.39730944905068,52.87084771243353],[-128.3973922782095,52.870747918996855],[-128.39742379985856,52.87067943668897],[-128.3974255121792,52.870627268826084],[-128.39745797874147,52.8705755857429],[-128.39753797638974,52.87054143769262],[-128.39758127639072,52.87053327065107],[-128.39763470226168,52.87052321063993],[-128.3977340205531,52.87050155793104],[-128.397787383336,52.87049037790116],[-128.3978517467109,52.87047617475876],[-128.3980680963238,52.87048297193308],[-128.39833900552463,52.87053293942435],[-128.39870000701166,52.870513236948966],[-128.3991575425097,52.87030655848484],[-128.39932717674498,52.87004577560953],[-128.39930122682446,52.869931939404616],[-128.399378794686,52.86988774852137],[-128.39950304960013,52.869796633502105],[-128.39957434366556,52.86970715603288],[-128.3995855953384,52.86967553163182],[-128.39961471080946,52.869679987086],[-128.3997566485212,52.8696714821528],[-128.40009934438248,52.86965719014758],[-128.4007747338441,52.869715716825496],[-128.40151540291427,52.869809341209525],[-128.4018117833405,52.86979935453254],[-128.4018118302024,52.86968443120012],[-128.4018102090647,52.869490490204576],[-128.4018069564286,52.869284248917396],[-128.4018084205763,52.86916143894086],[-128.4018091489223,52.869091907291384],[-128.40180908372776,52.869057715346194],[-128.40183521233885,52.86905885861846],[-128.40206832347363,52.86906587077774],[-128.4025172409907,52.86907014743095],[-128.4029878203089,52.86916143598622],[-128.4033883159795,52.8693634725348],[-128.40368185314276,52.86946791456159],[-128.40391691670484,52.86944347950295],[-128.40408970784458,52.869420883203645],[-128.40429098078457,52.86944087604838],[-128.4046455545872,52.86935681082601],[-128.40498442720857,52.86902752333273],[-128.40511124032795,52.868701445396],[-128.4051155195053,52.86859596122482],[-128.40510570527576,52.868570373590835],[-128.40504209243272,52.86844946050196],[-128.40495503815148,52.86827577275199],[-128.4049489501212,52.86818451178508],[-128.4050207982285,52.86815445400996],[-128.40512344712474,52.86812599921852],[-128.40524689870247,52.86810328979615],[-128.40538393579695,52.86809039328579],[-128.4055749999932,52.86806181436362],[-128.40573611063797,52.868013666091294],[-128.40583585630637,52.867966774109554],[-128.40593814560066,52.867915344987374],[-128.4060050833966,52.867880902164565],[-128.40605749234572,52.86785291916341],[-128.40614491015782,52.86778553189743],[-128.4062228461361,52.86769872149936],[-128.4064602725471,52.867600795865656],[-128.40693584744307,52.867483980330576],[-128.40727878019896,52.867408558896],[-128.4073971241495,52.867278868656136],[-128.4075163997918,52.86700116412663],[-128.4076561862052,52.86674041387038],[-128.40781067081085,52.86654215177112],[-128.40808888579866,52.86637554695238],[-128.40838660661487,52.86630721998561],[-128.40850179788882,52.86630317233443],[-128.40858960408713,52.866308664892216],[-128.40884369311254,52.866324759376496],[-128.4091280678944,52.86630042366968],[-128.4092859156383,52.866227669793496],[-128.40938885314938,52.866154920507704],[-128.4095692984603,52.86608675289583],[-128.4097671554566,52.866046815124676],[-128.4098734792403,52.866033978029506],[-128.40989922677815,52.866028408796346],[-128.41010994072377,52.86598539912176],[-128.41052949186582,52.86589886994717],[-128.4109528510075,52.86583019204858],[-128.41139986013803,52.8657520661996],[-128.41169951526913,52.86565228706151],[-128.41185432102913,52.865575107025855],[-128.41197594870602,52.86547114185775],[-128.41199952772112,52.86531199696682],[-128.41201865124773,52.86518938851515],[-128.41211001993986,52.865077074393504],[-128.4122500429028,52.86490320493154],[-128.41230545569422,52.864731081529555],[-128.41222754137857,52.8646042940398],[-128.41207830601437,52.86446720219106],[-128.41196153088217,52.864196580476666],[-128.41198283229298,52.86388219395251],[-128.41203255006346,52.86374101730282],[-128.4120418682029,52.863708309818655],[-128.41208378505675,52.86364297300643],[-128.41213679791335,52.86356003350149],[-128.4121322980185,52.863480517312034],[-128.41205760867874,52.86337777476257],[-128.41199246981603,52.8632793210797],[-128.41198816388982,52.86318691103005],[-128.4119960457804,52.86309592813712],[-128.41199735617855,52.86305329381526],[-128.41200484328286,52.863037442628276],[-128.4120136992546,52.863013149492204],[-128.41202916555886,52.86299040699432],[-128.41204293122885,52.86297050701464],[-128.41206422893444,52.862952129776644],[-128.41211422957977,52.862914658134834],[-128.41220490315516,52.86283935913391],[-128.41228478674972,52.86275418140448],[-128.41232762792217,52.8626725718441],[-128.41235150031625,52.86255155193523],[-128.41237039949752,52.862425018918564],[-128.412380808384,52.862329499051796],[-128.41238638342813,52.86224697728274],[-128.41238772824218,52.86218864473684],[-128.41237680506325,52.86212720036052],[-128.41240428195755,52.86202067363785],[-128.4125025032307,52.8619306430881],[-128.41257260580508,52.86188659600114],[-128.4126004027202,52.86186808516745],[-128.41264327874165,52.86185262839628],[-128.41271820865964,52.861828099450506],[-128.41277588040455,52.86181121751022],[-128.41279884356234,52.86180570475259],[-128.4128515890055,52.861783873845],[-128.41297632748436,52.86171852184654],[-128.41313557024614,52.861621631074435],[-128.41326054997006,52.86152767744322],[-128.41331164676544,52.86147673665865],[-128.41331841771606,52.86146481995737],[-128.4133439892188,52.86143962714857],[-128.41337778448232,52.86136268789915],[-128.4134133387056,52.86120161875478],[-128.41344054767694,52.86105753977475],[-128.41349260352027,52.86095780031155],[-128.41357562924583,52.86086247464191],[-128.41361424912645,52.860821316165264],[-128.41358668039211,52.86081122621822],[-128.4135613321466,52.86070859197656],[-128.41358165421343,52.86049233822338],[-128.4135850182174,52.86028875763738],[-128.41354553484854,52.860133714995705],[-128.41350503399707,52.85999383460736],[-128.41347590467572,52.859890156740384],[-128.41344912406578,52.85981165426998],[-128.41340815961482,52.85969645087945],[-128.41336467354108,52.859536440262424],[-128.41333663468356,52.85936994987574],[-128.41332156070038,52.85921889063778],[-128.4133053085424,52.859079633214606],[-128.4132881619153,52.858974022728866],[-128.41327961863863,52.8589383181936],[-128.41327005534026,52.858917210881515],[-128.4132407625862,52.85886007269332],[-128.41320405342427,52.85877056158981],[-128.4131691432359,52.85866363860176],[-128.41313418469784,52.85855559534141],[-128.41309781673974,52.858422913481675],[-128.4130525693711,52.85826462521524],[-128.41297308033506,52.85810984792024],[-128.41289666875647,52.857993120950496],[-128.41289840795446,52.85794150763573],[-128.41291112538613,52.85790312383803],[-128.4128415705162,52.85784176244357],[-128.4127761958414,52.85777191024305],[-128.41275210095193,52.85770792867426],[-128.41273235865452,52.85765507918921],[-128.41271368291302,52.85758818765689],[-128.41266045262446,52.85748612577939],[-128.4125367743775,52.857356358216855],[-128.4124081683432,52.85723790425424],[-128.41233693559911,52.85714685936238],[-128.412297174458,52.857085450901955],[-128.4122339594188,52.85703741399154],[-128.41214517926647,52.85698148815629],[-128.41205069598,52.85692344583238],[-128.41195138217702,52.85686212989644],[-128.41189449185416,52.856810599185984],[-128.41177702547893,52.85670817847242],[-128.41156849201363,52.85655884836561],[-128.41146613037066,52.856493109601594],[-128.4114645151796,52.8564645553137],[-128.41146098940345,52.85636932125255],[-128.41146498492506,52.85624253770948],[-128.4114800492999,52.85614692198401],[-128.4114935809405,52.856090016444256],[-128.41152707341664,52.85600747740157],[-128.41157720521517,52.85590665668224],[-128.41159906010463,52.85586528674257],[-128.41147518422915,52.85581400984196],[-128.41122563772058,52.85571261375757],[-128.41100928788558,52.8556716395488],[-128.41075895159227,52.855638655116316],[-128.4103937804284,52.85548356771512],[-128.40998885497956,52.855201472122616],[-128.40971154700986,52.85493806093866],[-128.40962842562615,52.854768214557645],[-128.40959353838718,52.854611954905515],[-128.40947160615974,52.854496168566726],[-128.40935338792107,52.85439655960047],[-128.4092670574733,52.85423574880412],[-128.4090267488067,52.85396821336761],[-128.40874805050206,52.853663342154306],[-128.40864347824464,52.85352533005778],[-128.4086287697841,52.85351217664907],[-128.40861798381948,52.853502306559356],[-128.4085934114361,52.85347926414765],[-128.40856713051312,52.853359829021535],[-128.4085527996841,52.85310615461143],[-128.40842039180689,52.852854345296436],[-128.40814182921972,52.85268346412619],[-128.40784208106504,52.85254945288259],[-128.40722831484808,52.852424119769076],[-128.4064354304505,52.85237309246377],[-128.4060727643698,52.852377158708926],[-128.40604944107497,52.85237595013554],[-128.40606056814826,52.852358903408515],[-128.40610104102632,52.852284636752664],[-128.40615149729928,52.85218941789863],[-128.40616893683801,52.85215205929364],[-128.40618453398312,52.8521152945703],[-128.40624125041043,52.85201546239889],[-128.4063345281371,52.851904233707295],[-128.40645051628437,52.85181607694904],[-128.40657956806587,52.85171196381331],[-128.40667860985272,52.85160397147713],[-128.4067198077017,52.851542579606935],[-128.40673661428607,52.85149402132471],[-128.40675688469778,52.85139157189938],[-128.40678631666376,52.85125361972393],[-128.4068476003893,52.851119490840254],[-128.40693806742541,52.85099150032757],[-128.40703040707015,52.85086346237547],[-128.40710190583462,52.85072913291529],[-128.4071518773437,52.85059243698876],[-128.40719670946206,52.850479948840764],[-128.40725180743794,52.850417715660576],[-128.40732273822806,52.85037196776538],[-128.40736907930398,52.850319440189104],[-128.40736487449925,52.85024496744329],[-128.4071747438075,52.850123840178725],[-128.40673694358804,52.8499999484271],[-128.40643362814185,52.849917584635364],[-128.40640306034882,52.849870553174895],[-128.4064206996647,52.849853372936465],[-128.40651380024548,52.84983801023255],[-128.4068592928447,52.84976085643882],[-128.40730236155179,52.84961553857481],[-128.407527467416,52.849466282358165],[-128.40753363061222,52.8492951690888],[-128.40745817835113,52.84909601111529],[-128.40741845967347,52.848820996475546],[-128.40745367598822,52.84848893905132],[-128.4075155481266,52.84833238124969],[-128.40754711375286,52.84833116903984],[-128.40764010610312,52.848346646594926],[-128.40786000591208,52.84838530210268],[-128.40803006298276,52.84839807802791],[-128.40811558660593,52.8483638079681],[-128.40823001904036,52.84828128716382],[-128.40837585147642,52.848161685959106],[-128.40850986713434,52.848030558183126],[-128.40861179038086,52.847907928256696],[-128.4086819489541,52.84781566751498],[-128.40871751327052,52.84777008780436],[-128.40872345659017,52.84775987459158],[-128.408827047122,52.84776559865219],[-128.4091613274339,52.84778677305743],[-128.40970781951725,52.84784228023377],[-128.41023216717417,52.84790103803278],[-128.4104741402723,52.84790223413458],[-128.41051921375472,52.84787664130509],[-128.41054531718538,52.84786097301397],[-128.4105688779348,52.84784983296947],[-128.41063678819398,52.84778397116508],[-128.41077022183111,52.84765901499408],[-128.41088883969138,52.847584819422345],[-128.41107160071525,52.84752612571304],[-128.41144425240103,52.84741980359207],[-128.411778469448,52.84734117978634],[-128.41191672635543,52.84731815769794],[-128.41212366411597,52.84734137380658],[-128.41247446259305,52.84737509844366],[-128.41270544677653,52.847329987851325],[-128.41278150210238,52.84726002846945],[-128.41280355483948,52.84723882760067],[-128.41281330966592,52.847230222220844],[-128.4128317718723,52.84721133763448],[-128.4128415581198,52.84720328775103],[-128.4128796098419,52.84716886815118],[-128.4129609235675,52.8470931942953],[-128.41306539623972,52.84703218600156],[-128.41319466130332,52.84699813453369],[-128.41349611413946,52.84693251281533],[-128.41396678488815,52.846815753991415],[-128.41425190801883,52.84672467694676],[-128.4143006951886,52.846699006228626],[-128.41433656483483,52.846691541230946],[-128.41441185025099,52.846657476861736],[-128.41450831465943,52.84658654050121],[-128.4145891144879,52.84651815968554],[-128.4146711680967,52.84647218721787],[-128.4147746656263,52.84642688603577],[-128.414864453226,52.84638579558101],[-128.41492583770682,52.846352581823055],[-128.4149579602323,52.846328374761676],[-128.41496661886794,52.846316984088865],[-128.41502511008008,52.84629839720048],[-128.4152239847338,52.846228717876606],[-128.4154942194731,52.84610486214354],[-128.41566952235317,52.84599697884689],[-128.41572707810343,52.84594533808836],[-128.4157357364559,52.84593394735607],[-128.41575429223283,52.845916746709946],[-128.41580829110762,52.84585172392869],[-128.41590076694112,52.84574330158499],[-128.4160018370692,52.84562236844985],[-128.416086831126,52.845496724766214],[-128.41615261936144,52.845377073505006],[-128.41620321910383,52.84530147291953],[-128.41621893058877,52.84528320944346],[-128.41623300537898,52.84526889957561],[-128.41625918677107,52.84522183294978],[-128.41630581333723,52.84515808283254],[-128.41635199552903,52.84508649299426],[-128.416410218551,52.845014090246984],[-128.41656179506055,52.84494705910444],[-128.41675775483716,52.84485893159693],[-128.41688577569457,52.8447705246373],[-128.41693649871246,52.84471341749192],[-128.41698129555385,52.844666523667506],[-128.41706863262627,52.844615390426554],[-128.4171810667206,52.84456374051664],[-128.41731086191723,52.84452294574895],[-128.4174634347858,52.844490086914256],[-128.4176167235265,52.84443703935347],[-128.41773991069184,52.84436162094627],[-128.41784308234148,52.84431071721545],[-128.41794944630223,52.84428330317805],[-128.41804318246287,52.84424661383569],[-128.41816719461653,52.84416949157454],[-128.41831103164165,52.84404824054182],[-128.4184046879337,52.84394427664039],[-128.41846560603543,52.843870139800515],[-128.41854517266978,52.843780477270876],[-128.41861474742282,52.84369494938981],[-128.41867131267293,52.84360968941869],[-128.41868500733295,52.84345748037458],[-128.41863600721055,52.84328245097089],[-128.41859545621125,52.84319077731038],[-128.4185859893439,52.84317135463589],[-128.4186086722678,52.84316135219533],[-128.41872286309726,52.843124240914825],[-128.41889703285196,52.84307861025488],[-128.41901354299029,52.84304985591243],[-128.41907339386344,52.843006014833186],[-128.4191367396823,52.84294191893021],[-128.41920056206718,52.842886227148796],[-128.4192770115464,52.84282353860649],[-128.41934926767888,52.84275253139316],[-128.41942192058985,52.84265572682549],[-128.41950454857133,52.84252171487018],[-128.41958188635977,52.84240911590902],[-128.4196475492388,52.842336566912],[-128.41968883108822,52.84229366425096],[-128.41973470325092,52.842249554683036],[-128.41980314527822,52.84217693934099],[-128.41986499505668,52.842102782390285],[-128.41993491421593,52.84202341788154],[-128.42000877207158,52.84194789209731],[-128.42003783916726,52.84191926135342],[-128.4200563427759,52.84190093972012],[-128.42022442367102,52.84191205193218],[-128.420608840187,52.84193215962731],[-128.42088537519055,52.84193655003307],[-128.4209845834736,52.84193057568953],[-128.42108274554653,52.841939208284614],[-128.4211935347781,52.841973360621544],[-128.42128043666574,52.8420130556152],[-128.42144313749137,52.84209323949786],[-128.42170274753244,52.84222523645139],[-128.42186076446941,52.84230495125834],[-128.4220072608774,52.84231258618737],[-128.42241180112165,52.842261067968096],[-128.4229584061806,52.84222120243761],[-128.4235048638073,52.84230971818625],[-128.42403534972505,52.842444533180846],[-128.42454474359042,52.84243738014987],[-128.42523697472075,52.84230815031029],[-128.42594626525653,52.842200998222694],[-128.4264603084482,52.84209562510299],[-128.42682567426783,52.84196081469125],[-128.42697171216417,52.84189500516616],[-128.42697655407704,52.84188200598719],[-128.4269838385224,52.84184653987226],[-128.42685194353135,52.841768534428674],[-128.42662407622012,52.84167120810297],[-128.42670529135773,52.84159440451682],[-128.42701609451498,52.841563312831454],[-128.42719768196318,52.84151750721405],[-128.42723953944562,52.84145217334574],[-128.4272851916124,52.841387873315625],[-128.42739893129792,52.84129414289797],[-128.42753914030789,52.8411589342208],[-128.42768243295274,52.84104496575918],[-128.42782673256966,52.840965170593535],[-128.4279671849151,52.84086695828134],[-128.4281191722826,52.84079149781646],[-128.42825635576315,52.84071745559475],[-128.4283432639764,52.84054466866539],[-128.42838734337568,52.84033856411246],[-128.42841035709753,52.84018727244753],[-128.4284740562141,52.84008055533293],[-128.4285917815513,52.84000804531387],[-128.4286457736896,52.83989423609318],[-128.42864059908132,52.83968915008916],[-128.42863672367437,52.83947394572324],[-128.42863459909103,52.839273281673066],[-128.4286354403494,52.839124699972956],[-128.42863224826186,52.83905243934663],[-128.42853161024416,52.83895136374756],[-128.428301171858,52.838808686803006],[-128.42814474416207,52.83872446253941],[-128.42811125041385,52.83865900004056],[-128.4280991746825,52.838561133811076],[-128.42809546479856,52.83851243959718],[-128.42837590678602,52.838471315048515],[-128.42912262880628,52.83832019428698],[-128.42980559989883,52.83812777953343],[-128.43010607876846,52.83801391831054],[-128.43049621515496,52.83785727823458],[-128.43107047860136,52.83761832609876],[-128.4313546377602,52.83749582920376],[-128.43138706352332,52.83747721728638],[-128.4316131748463,52.837364335865026],[-128.43208025872536,52.83713825480059],[-128.43238673048705,52.83698277599322],[-128.4324373811988,52.83694136063478],[-128.43248830217152,52.836904424762196],[-128.43270059608443,52.83681032395601],[-128.43296891626747,52.836703848963786],[-128.43308282176739,52.83666224375571],[-128.43308241160628,52.83662244239837],[-128.4330816610578,52.8365114514161],[-128.4330932418667,52.83637217291657],[-128.4331341524592,52.836225002742886],[-128.43319830847346,52.836061643908586],[-128.4332723127618,52.83590761625534],[-128.43332691181214,52.8358050133991],[-128.43335979760965,52.83574546017395],[-128.4333926367584,52.835685351748005],[-128.4334247458858,52.8356286222768],[-128.43342331821052,52.83558716454462],[-128.43339326455782,52.8355659270085],[-128.4333753644895,52.83556181290229],[-128.4333971821803,52.83555294661461],[-128.4334492778669,52.835520471009396],[-128.43349317938507,52.835442192779816],[-128.4335325072184,52.83531635944657],[-128.43356516877722,52.8352041106495],[-128.43358426608063,52.83513139675288],[-128.43359898065287,52.83506324984512],[-128.43361508442436,52.834970414954476],[-128.4336273976718,52.83484401126905],[-128.43362925351374,52.834697085154346],[-128.4336560627522,52.834514882078075],[-128.4337526736064,52.834300957405794],[-128.43385254794805,52.83416041329371],[-128.43393361278012,52.83409761841182],[-128.43404451931644,52.8340364562899],[-128.4341506649718,52.8339894042888],[-128.4342185171887,52.83397229948934],[-128.43424336915987,52.833967855222795],[-128.43427925682758,52.83396094853337],[-128.4344192523404,52.833936741286166],[-128.43464545586104,52.8338911191911],[-128.43485599068254,52.83381555600226],[-128.43501801107334,52.83370455256693],[-128.43511874275273,52.83357912224032],[-128.43516238345657,52.833496363468825],[-128.43517039470666,52.83347377166201],[-128.43518032789058,52.83345226126885],[-128.43521024944857,52.83337370704544],[-128.43526623364315,52.83326266012721],[-128.43531919592093,52.833180273027274],[-128.43531928990177,52.8331331772418],[-128.43530061752068,52.833099361007555],[-128.43531091517298,52.83303523432319],[-128.43533431263387,52.83292374204187],[-128.43533684736158,52.83282165279593],[-128.43533294323973,52.83278585275969],[-128.43533183351528,52.832749994753684],[-128.43531518136976,52.83263765582723],[-128.43527500153326,52.832503935472765],[-128.4352215794278,52.832415341088556],[-128.4351731748435,52.832365887479085],[-128.43512689315133,52.83230461186553],[-128.4350526601765,52.83219346728516],[-128.4349921024115,52.83204502771534],[-128.43497049257817,52.831878404860106],[-128.43500959265535,52.83171612913995],[-128.43509187407759,52.83160958693562],[-128.4351364997502,52.831576700199406],[-128.43513317513245,52.83151846245544],[-128.43512482232174,52.83138856690405],[-128.43511651664787,52.83125923549117],[-128.43510758853606,52.831119260304604],[-128.435007638451,52.830981173197216],[-128.43482424874463,52.830945732171216],[-128.43473767230645,52.83094416399883],[-128.43474574722606,52.83092269214141],[-128.43474891940446,52.83091309095681],[-128.43476013477974,52.8308814624143],[-128.43479838638652,52.83078592509492],[-128.435003284978,52.830628059254295],[-128.4354097950742,52.830450312467605],[-128.43571171082752,52.830330233556325],[-128.43587826379067,52.83015242239129],[-128.43575632675126,52.82982472988953],[-128.43510806733426,52.829498430249586],[-128.434538008292,52.82927086475935],[-128.43440294337876,52.829185640599285],[-128.4344568566429,52.82915257038687],[-128.4346394965262,52.82911009366805],[-128.43485334265117,52.829125285127766],[-128.4351210521701,52.82918813022456],[-128.43554113001335,52.82923211545845],[-128.43586349520734,52.82920972850303],[-128.4359702663849,52.82917387429145],[-128.43602407298025,52.829155373282916],[-128.43607510074986,52.829136938887565],[-128.43609303933124,52.82912535375781],[-128.43607909072563,52.82894623760453],[-128.43604537029464,52.82859989509992],[-128.4360281864025,52.828429260156916],[-128.43599336229929,52.828422133851554],[-128.43554564683384,52.82833387240265],[-128.44419584379034,52.823032009883896],[-128.44421717499463,52.82304726377097],[-128.44430301962512,52.823182273854194],[-128.44437554433057,52.823344472334675],[-128.44449165620685,52.82348837842469],[-128.44459518925134,52.82362358501963],[-128.44469682360884,52.8237420026975],[-128.44482997367564,52.82385865149361],[-128.44500649016672,52.823985600727084],[-128.44512260642796,52.82412951509362],[-128.44524050724397,52.82425600763376],[-128.44538772769485,52.82437459630529],[-128.44545963923187,52.82450989585011],[-128.44557563514968,52.82463530646081],[-128.44569278232746,52.824797139495814],[-128.44573679884178,52.824932454982275],[-128.44579306826603,52.82508658608054],[-128.4459551810868,52.825221683145045],[-128.44605736416847,52.8253658869626],[-128.44615853484515,52.82549216212955],[-128.44617287346315,52.825644924306886],[-128.44605216644536,52.82576181175413],[-128.44605198774823,52.82580722335778],[-128.44619724720934,52.82592417446669],[-128.44634584753769,52.826050591248524],[-128.4464462819054,52.82621276288207],[-128.4464469613249,52.82625704427404],[-128.44659281631175,52.826384074137394],[-128.44691547459698,52.8266105771543],[-128.44704797997622,52.8267642306656],[-128.44716411068143,52.82690814275683],[-128.44728161777422,52.82704361185859],[-128.44732532588347,52.827205844161554],[-128.44730768044596,52.82736824332503],[-128.44724664913463,52.82752032512919],[-128.44716922895827,52.82764584651409],[-128.44718446098003,52.827798024690466],[-128.4472119044283,52.82795219084811],[-128.44723829813117,52.828104136290065],[-128.44723738889564,52.82826674256983],[-128.44721916394417,52.82841905307968],[-128.4471431450999,52.82855295032592],[-128.44712827766043,52.828715291381904],[-128.44718613714963,52.82883237691327],[-128.44721434104312,52.828886176039354],[-128.44727263442178,52.828913549171354],[-128.44749608942675,52.82895037805121],[-128.4477152521781,52.82912297229028],[-128.44769855648855,52.829302170893484],[-128.44769676994792,52.82948161474964],[-128.44766559073508,52.82963531664259],[-128.44763470555566,52.82977780843729],[-128.44761749951218,52.82993178405383],[-128.44755593455918,52.83007435035677],[-128.44743504155693,52.83023665037097],[-128.4473297441943,52.83037900698879],[-128.4473112846507,52.830559919571904],[-128.44732559671414,52.83071211665754],[-128.44733880007993,52.83074772267667],[-128.44750183381637,52.83086598808577],[-128.44763329445126,52.831001165818634],[-128.4477350572592,52.831153782002055],[-128.4478219894841,52.83130726350482],[-128.44789529656035,52.83143412707279],[-128.44801131845767,52.83155953472114],[-128.44817390259374,52.83168621380403],[-128.44828908576724,52.83181331613013],[-128.44836381335938,52.83194855497425],[-128.4484200691243,52.832102119666665],[-128.44843296737773,52.832245940860666],[-128.44840176723775,52.83241534117982],[-128.448356222044,52.83257775675081],[-128.44829378361206,52.832721462677384],[-128.44820381830166,52.83285565100731],[-128.44812779464337,52.83298954851085],[-128.4481407070437,52.83313336934531],[-128.4481686073356,52.833295374390936],[-128.4481802251185,52.83344930482293],[-128.44817881587096,52.83361921391391],[-128.44819041675953,52.83377258850891],[-128.4482493469417,52.833908156756166],[-128.4483211591032,52.8340249505774],[-128.44840781655782,52.83420591330752],[-128.44842073027004,52.834349733999495],[-128.44856862886948,52.83451203491954],[-128.4487284462779,52.83463877096934],[-128.4488320198018,52.83477397286305],[-128.44887424142271,52.83492614348999],[-128.44897611474224,52.8350804426148],[-128.4490632779521,52.835205329900326],[-128.4491651202101,52.83535906438073],[-128.44923805880077,52.83551171534534],[-128.4493557360049,52.83566568444087],[-128.4494286156318,52.835800961039546],[-128.4495289452714,52.83594463517314],[-128.44966100688254,52.836089889706855],[-128.44977854718866,52.83622535551446],[-128.4498650752363,52.83638781410955],[-128.4499362681453,52.83655845062404],[-128.4500101480436,52.836711081450105],[-128.4501115150443,52.836856419856694],[-128.4501980285927,52.83701832233834],[-128.45027234956882,52.8371625386177],[-128.45034417274513,52.83727933095926],[-128.4504600936756,52.83745127620598],[-128.45050373149036,52.83759556759722],[-128.45053157932392,52.837756451675986],[-128.45057301380191,52.83792714373599],[-128.45067611825098,52.8380539396633],[-128.4507936671907,52.83818940428519],[-128.45084906466252,52.83836036989918],[-128.45086198734631,52.83850418098172],[-128.45086105977768,52.838666230716846],[-128.45084470154274,52.838818501988314],[-128.45093027401313,52.83896416934852],[-128.45103420691146,52.83908926124424],[-128.4510903735456,52.839224885637776],[-128.45113504568775,52.8393871046677],[-128.45114840884315,52.83952250129668],[-128.45123486736261,52.839683282797324],[-128.45136669401512,52.839872826638484],[-128.45142309691516,52.84004489218637],[-128.45143514697813,52.84020610573289],[-128.45144879215232,52.84031402041444],[-128.45146171796443,52.840457840211435],[-128.4514739085434,52.8406375475055],[-128.45150197026916,52.840737321135414],[-128.45166533439308,52.840828098176246],[-128.4517828941172,52.840963561568635],[-128.4518849760654,52.84108869135529],[-128.45195652977745,52.84123296424666],[-128.45205883588588,52.84137828130588],[-128.4521314652137,52.84155729145963],[-128.45221832581527,52.84169283039834],[-128.45224521679563,52.84183691455181],[-128.4523038411976,52.841998841632346],[-128.45236110752,52.84216975834726],[-128.45244798548035,52.842305305712244],[-128.4525345360246,52.842467761710985],[-128.45260885731201,52.84261142021046],[-128.4526358760873,52.8427739982683],[-128.45272316260755,52.84290056661311],[-128.45281132135,52.84302598641965],[-128.4528522102364,52.84317089925924],[-128.45294177509908,52.84330470371027],[-128.45305806708853,52.843450283879704],[-128.45312973775475,52.843612494107134],[-128.4533355662162,52.8438105902323],[-128.45336352517674,52.84397314842946],[-128.45343461797472,52.84412527897798],[-128.4534769621792,52.84427913142893],[-128.4535052020132,52.84441421672766],[-128.4535485458039,52.84458543263203],[-128.45365005027875,52.84476495968901],[-128.4536944063518,52.84479206495569],[-128.45391529624115,52.8448474333946],[-128.45403273280914,52.844964400448745],[-128.4540628139766,52.845018149577804],[-128.45426916885484,52.845128207874396],[-128.45440100631276,52.84523645948577],[-128.45453297168262,52.84536321394672],[-128.4545629121533,52.84539846919999],[-128.45456145027487,52.84555099431709],[-128.45451339816563,52.84568598758496],[-128.45454178166517,52.84575884286095],[-128.45457189652544,52.84581315628017],[-128.45485376777788,52.84587733994555],[-128.45493945873102,52.8460566403356],[-128.45505744925748,52.8461831212461],[-128.4551434067362,52.846318676894846],[-128.45521774351863,52.84646233339186],[-128.45525936475065,52.846652081328905],[-128.4553626405886,52.84673289698114],[-128.45537664111353,52.84681445791392],[-128.45562662744143,52.846922480394184],[-128.45577398576847,52.84705787292852],[-128.45584590568663,52.84717579006322],[-128.45587661172235,52.84717570408004],[-128.45614452429487,52.84715888818856],[-128.45638110133544,52.84711469504512],[-128.45665007821563,52.847116361389006],[-128.45684126073866,52.84718860912423],[-128.45703291403342,52.84725299772365],[-128.45725660144507,52.847308301619535],[-128.45746320346367,52.84738976112783],[-128.45768266090778,52.84759764734613],[-128.45775484053468,52.847768258298785],[-128.45784187520567,52.84792229520354],[-128.45783950308982,52.84807483941044],[-128.45786730642234,52.84821833795194],[-128.45786493438095,52.84837088213072],[-128.45786469270945,52.84856038405246],[-128.45781702994648,52.84876657636848],[-128.45791790318398,52.848902383021525],[-128.4581835022679,52.84903867074819],[-128.4583313605577,52.84918246385818],[-128.45852154933692,52.84931807782338],[-128.4587294906632,52.849390536953706],[-128.45898084254762,52.84947329066967],[-128.45918676191485,52.84959119883416],[-128.4593637364639,52.84969121610436],[-128.45961494753746,52.849755474770916],[-128.45974821908354,52.84987209575162],[-128.45974591828568,52.850025759738145],[-128.45981879078835,52.850159908721906],[-128.45992007870612,52.850286734788575],[-128.460052704996,52.8504403802621],[-128.46017001002198,52.8506027516712],[-128.4602566068133,52.850765201122776],[-128.46035931923075,52.85090041108551],[-128.46037360580772,52.850954489528945],[-128.46056337204004,52.85109852329614],[-128.46063582841265,52.851306128997344],[-128.46084379737562,52.85137857502323],[-128.4610650059999,52.85148718943791],[-128.46127231499526,52.851596659865436],[-128.4614770861642,52.85167814208676],[-128.46163935024228,52.85181322416302],[-128.46183179150933,52.85192299629133],[-128.46196379964917,52.85204974186624],[-128.46215472390844,52.85214945374198],[-128.46228889730435,52.85218476452907],[-128.46242063327597,52.85233898226895],[-128.4625076620403,52.852492459786454],[-128.46256472236013,52.852626373524124],[-128.462755651123,52.85272609334636],[-128.4629476628935,52.852844286842945],[-128.4631416946541,52.852917021232436],[-128.46333262606706,52.85301674009871],[-128.46353786457465,52.853170536319105],[-128.4635222934563,52.85336820871389],[-128.4633718625722,52.85350255392988],[-128.46338523638227,52.85363738350783],[-128.46344496261815,52.85365631392066],[-128.46359103755614,52.853656057768454],[-128.4638274277101,52.85380135111563],[-128.4639439935979,52.85391831797738],[-128.46425359661106,52.85409067181952],[-128.4643727048801,52.85423561700305],[-128.46438358069594,52.85442376429536],[-128.4644272508701,52.85456749347195],[-128.464500210598,52.85470275908964],[-128.46451423121326,52.85478431852034],[-128.46460157756306,52.854910877072115],[-128.46465923040225,52.85505486890101],[-128.46477541572338,52.855181378334706],[-128.46480378041224,52.85533384262212],[-128.4648461767578,52.85548768987869],[-128.46487501241302,52.8556485493755],[-128.4648441414823,52.85569404847618],[-128.46465044922994,52.85583658670996],[-128.4645745336194,52.855972177263155],[-128.4646154101409,52.856115964892595],[-128.46468934433594,52.85626802910318],[-128.46468833023843,52.85633084214104],[-128.46477632947983,52.85648485372418],[-128.46484791999643,52.85662855290932],[-128.46508387992984,52.85678226701348],[-128.4652156075693,52.8569359167299],[-128.4652431292929,52.857025606744905],[-128.46540576234048,52.85713432150228],[-128.4655685105101,52.857260974127534],[-128.46569868674155,52.85738774513911],[-128.46581558153053,52.85755853375381],[-128.46590162030103,52.85777481228085],[-128.46597471300132,52.85784784752006],[-128.46601946074856,52.85801005000811],[-128.46616503184782,52.85814547654335],[-128.46635601824997,52.858325912908015],[-128.46641366727562,52.858469912836505],[-128.46669423593934,52.8586865912568],[-128.4668095150883,52.85881311775174],[-128.46697227383373,52.858939768298406],[-128.46713461509705,52.85907539764429],[-128.46738696300199,52.8591581224611],[-128.46759359423118,52.85923899941504],[-128.46778550082726,52.85933868200452],[-128.46805217298206,52.859411569140775],[-128.46827239029346,52.85942151878184],[-128.46849617149792,52.85947680949745],[-128.46873361884812,52.85955927949902],[-128.4688938924321,52.85965906897998],[-128.4689528266425,52.85979294024667],[-128.4689961793895,52.8599467658783],[-128.4690685909493,52.86013642683801],[-128.46906436647774,52.860288444727125],[-128.46903314138953,52.86042421986084],[-128.46900208817195,52.860530829087466],[-128.46898612403845,52.86057658097215],[-128.46906258000246,52.86059515708383],[-128.4691072319002,52.86059477472809],[-128.469255808928,52.860540637959794],[-128.4693153666844,52.86054050732916],[-128.46953682639236,52.86058798703706],[-128.4698170103845,52.860669000382465],[-128.46998052203438,52.86076030627969],[-128.47008347417952,52.86093081886898],[-128.47018543624293,52.86100380073238],[-128.47049721090283,52.86106788517749],[-128.47074922470358,52.86109622345161],[-128.47089684637302,52.86110601775491],[-128.47111928464457,52.861170293202726],[-128.4712954499886,52.86128712961013],[-128.4714875760569,52.86148659583936],[-128.47154634764166,52.86150498627577],[-128.4717829066929,52.8615235560095],[-128.47208031259527,52.86151617666136],[-128.47221555903337,52.86148921848718],[-128.47233443627331,52.8613723459383],[-128.4723955610798,52.86123874821919],[-128.47245715587874,52.86104907644124],[-128.47251965205706,52.8609070446159],[-128.47271354331025,52.86073589241743],[-128.47293801624318,52.86067453795084],[-128.47323456430757,52.86068455797943],[-128.47344087674333,52.86077552322236],[-128.473661810065,52.86082973405461],[-128.4738092214519,52.86094829359355],[-128.47386833128525,52.861020488378635],[-128.4739873168994,52.861066197786045],[-128.47405867976985,52.86123737247314],[-128.47423660186575,52.86141639437025],[-128.47444295274596,52.861507922248585],[-128.4746946730312,52.86156316914387],[-128.47494460537658,52.861635828585825],[-128.47518237565032,52.86169136835631],[-128.4752724474469,52.86165583202514],[-128.47534599092418,52.86165596880978],[-128.47559942114498,52.86169267211003],[-128.4757459294681,52.86174733519453],[-128.47575930215416,52.86180143114231],[-128.47580502881434,52.86181952928258],[-128.4759089762676,52.861846491917746],[-128.47613073053782,52.861866486282594],[-128.47619036175544,52.86188373504244],[-128.4763377658981,52.86200172658141],[-128.4765001486054,52.86213734272586],[-128.47675078641828,52.8621741024795],[-128.47687094136813,52.86217549818245],[-128.47713622135325,52.86223998051197],[-128.477224413985,52.862284093484696],[-128.4773303205848,52.86231269999678],[-128.47752045878684,52.8624292238199],[-128.47763829751065,52.862583162249074],[-128.47772318025667,52.86276245491749],[-128.47782663559715,52.86284493433964],[-128.4780359961213,52.86290779542677],[-128.47836032260975,52.86296318059786],[-128.47843400549718,52.86298180926227],[-128.47868737532897,52.86308130826418],[-128.4788934471993,52.86319973634526],[-128.4791142020197,52.863282538260606],[-128.47921785923677,52.86333641501571],[-128.47927783911393,52.863407476559026],[-128.47958696100665,52.8634732708765],[-128.47970724735995,52.863508855680294],[-128.4798226466516,52.86371666519205],[-128.47996872918227,52.86384365055932],[-128.48010067486587,52.86395187235348],[-128.48024865877096,52.86409563651711],[-128.48042544725448,52.86422252924008],[-128.4805724232023,52.864348938871025],[-128.48089686907545,52.86456577975209],[-128.4809975260777,52.864727926802644],[-128.48115925609085,52.86489998785109],[-128.48129237215286,52.86504406475239],[-128.48140868177603,52.865171121057],[-128.48142140626075,52.86534184367666],[-128.48149414386117,52.8655040148584],[-128.48152342570222,52.86557515856278],[-128.4816559675624,52.86569345765442],[-128.48177469514178,52.8657660757648],[-128.48181523850525,52.865918835251236],[-128.4818756592277,52.86598147209312],[-128.48188723660135,52.86611634673537],[-128.4819297053079,52.86627018677604],[-128.4819590604523,52.866422617408126],[-128.48198707126136,52.86650387939009],[-128.48207723522543,52.86654963366068],[-128.48217790087818,52.86671177053834],[-128.48228016653744,52.86683743629077],[-128.48239867786495,52.867018266735776],[-128.4823949335537,52.86716187014495],[-128.48243798316818,52.86734148720662],[-128.48248172743334,52.86748520849594],[-128.48249347840942,52.86763913217658],[-128.48270085570934,52.867747443768614],[-128.48296923699826,52.867784381133056],[-128.48307120462164,52.867856787068206],[-128.48308444933937,52.86789238822443],[-128.48308432791754,52.86793836340891],[-128.4830386482295,52.86800099937296],[-128.48308396945046,52.86802807365075],[-128.4833064447139,52.868091769963115],[-128.4835123993901,52.86819169614001],[-128.48352470061795,52.86837084146056],[-128.48353855938038,52.86856061051475],[-128.48344644373387,52.86872121463875],[-128.48344553238493,52.868865323246304],[-128.48348884849216,52.8690174583135],[-128.4835451577858,52.869153064602955],[-128.48360303379053,52.869315548529094],[-128.4837804836931,52.869469342230204],[-128.4839864281125,52.86956870274435],[-128.48414818720966,52.86967685504001],[-128.4842811943646,52.869722814230244],[-128.48441289140555,52.86985794744154],[-128.48453063521282,52.86999337555625],[-128.48463410074774,52.87015546011422],[-128.48473507709855,52.870290677466784],[-128.48488354636692,52.87042602061781],[-128.4849404496732,52.87057170523235],[-128.48510315170202,52.870679827365606],[-128.48529558351007,52.87077106635148],[-128.48551664554432,52.8709059945677],[-128.4857669617231,52.871095802518525],[-128.4858671015635,52.871312334108474],[-128.4859400777966,52.87136628920838],[-128.48601382590476,52.871465644361415],[-128.4860135671708,52.87149312574156],[-128.48608654389872,52.8715470807444],[-128.48617592344618,52.871690956371225],[-128.48621831543716,52.87184311895197],[-128.4863059918804,52.872005527183454],[-128.48642247607836,52.872151071665485],[-128.48651050360775,52.872303389744445],[-128.48664092929832,52.872448639000716],[-128.48677434570675,52.872565227645794],[-128.48689274609944,52.872584026241036],[-128.4870557522939,52.87266523756164],[-128.4870697890255,52.872746228943875],[-128.487096973715,52.872908804602055],[-128.4871393116333,52.873044139773555],[-128.48715192045682,52.87319636724362],[-128.48721101148047,52.87333135675039],[-128.48722424136292,52.873494218738436],[-128.487250649986,52.87362765741074],[-128.48738309118943,52.87372744680863],[-128.48763697759745,52.8738185026041],[-128.48787150216066,52.87392847342783],[-128.48821077959406,52.874126484467084],[-128.48843410109953,52.87423612630551],[-128.4884780777617,52.87427163221203],[-128.48851963265037,52.8743615760447],[-128.48875720163605,52.874444004811856],[-128.4889351379349,52.87458936668033],[-128.48905247762264,52.87473321310241],[-128.48916814415654,52.87491241074494],[-128.48928562741193,52.875074750563854],[-128.48931458031913,52.87515599081674],[-128.48950539742253,52.87528257336852],[-128.48968391851403,52.87537410024164],[-128.48974022345544,52.8755091475529],[-128.48978345455967,52.87570725463129],[-128.48994574220592,52.87582379326507],[-128.49015190747443,52.87594220961392],[-128.49037402088183,52.87601487125277],[-128.49052185602847,52.876043134143245],[-128.49068316505367,52.876142873317384],[-128.49074420558878,52.876151671116816],[-128.49100901645252,52.87626995532731],[-128.49108307975052,52.87642200098989],[-128.49121426858338,52.876531913324676],[-128.49124386261553,52.87657613723649],[-128.49145000212582,52.87669398682674],[-128.49162671840824,52.876802368373674],[-128.4918318854794,52.87698302972599],[-128.49195138079247,52.87702029693133],[-128.4920093377173,52.87705607025448],[-128.49217242981672,52.877218005296896],[-128.49225950526431,52.87735351123622],[-128.49237729470477,52.87748893085267],[-128.49237646466793,52.877570245870025],[-128.49255212018244,52.8777240560161],[-128.49266895657686,52.87785893940821],[-128.4927726481451,52.87797615203121],[-128.49287338198823,52.87813828754169],[-128.49294788600346,52.87828190861585],[-128.49305027669843,52.87840868397406],[-128.49309239964737,52.87857149749169],[-128.4930901194746,52.87872348397565],[-128.4931031820263,52.87886728703129],[-128.49314657579424,52.8790199820076],[-128.49333906247028,52.87911120734787],[-128.49342654424743,52.87923774252319],[-128.4934987938813,52.87939038130771],[-128.49360106113636,52.87956257517583],[-128.49367278758388,52.879706254700324],[-128.4937467894333,52.879777567762304],[-128.49377600790737,52.879958595288535],[-128.4937730336908,52.880066866481066],[-128.49371336635332,52.88012923784723],[-128.49381620646,52.88032720880402],[-128.49387184560624,52.88049814026788],[-128.4938722392931,52.88063212941603],[-128.49386961378846,52.880794205655896],[-128.49395533383972,52.88093815315239],[-128.49404377628485,52.88106522361178],[-128.4941045054287,52.88110038098242],[-128.49416148630465,52.881119354818296],[-128.49443015415056,52.88111196655957],[-128.49453489271863,52.881103581001604],[-128.49478634192337,52.88116776318767],[-128.49509742577362,52.88116900841449],[-128.49532113041266,52.88120462517761],[-128.49554226304306,52.88125991406549],[-128.4956884376502,52.8813868788072],[-128.49585095577478,52.88152246655752],[-128.49596873560532,52.88165732675776],[-128.49616080948655,52.881756961596956],[-128.49627906909575,52.881883962345235],[-128.4966469731121,52.88209198990136],[-128.49691249041413,52.88223716621408],[-128.49701455197822,52.8823897347122],[-128.49707341990828,52.88255219105271],[-128.49736381056712,52.88308984237852],[-128.52106662429836,52.883035131025814],[-128.522311207318,52.88161185982663],[-128.52299281931914,52.88052639163561],[-128.5236150240117,52.87920896369735],[-128.5239880260515,52.87802358980457],[-128.52416727238187,52.877057099764095],[-128.5246614783619,52.87595378061838],[-128.5247415349893,52.87458631538666],[-128.52500203411512,52.873027713926],[-128.52522500425985,52.87149570649921],[-128.52586873383808,52.869649657141515],[-128.52624094776647,52.867479774772384],[-128.52647831893486,52.86561105561556],[-128.52715039914258,52.86369597964238],[-128.52755327901306,52.86158989374639],[-128.5279997886685,52.85927879358106],[-128.52863408426816,52.85720023369838],[-128.52938977386648,52.85509831226366],[-128.52967875087396,52.85308324972785],[-128.52993805098598,52.85063149816221],[-128.53043668226732,52.848042277555976],[-128.53086764767414,52.84548982495511],[-128.5310741783156,52.84342044542736],[-128.5312726372496,52.84077655951502],[-128.53158254709697,52.83769126821505],[-128.5320497473452,52.834655270425],[-128.532518731632,52.83208907404937],[-128.53272424584313,52.829691705756524],[-128.53314724601495,52.82661907774527],[-128.53364510238313,52.82363341102252],[-128.53400816886793,52.82146362086957],[-128.53418391366498,52.8188022356917],[-128.5340666988133,52.81607708329023],[-128.53419705560393,52.81338751339944],[-128.53449280512228,52.810712307368306],[-128.5345877813182,52.8090714016284],[-128.53492928866032,52.80726144045321],[-128.5351279068042,52.80520618724915],[-128.53512474230433,52.80333751674897],[-128.53518920123219,52.801746592215586],[-128.5352111664333,52.80095836635368],[-128.53531501328425,52.800515983276256],[-128.53573655127704,52.79980489914421],[-128.5365519454712,52.79846462639959],[-128.5373277084832,52.79631781136306],[-128.5383964327787,52.793879262644175],[-128.53943539300215,52.79128603693443],[-128.5403312106297,52.78813183646378],[-128.54122697895264,52.785228817977384],[-128.54203271602046,52.78251668420032],[-128.5433123092333,52.77912086577076],[-128.5449593592876,52.77508290620315],[-128.54617836540294,52.77147304792439],[-128.54715574434601,52.76808203584404],[-128.54809603454058,52.76477255147224],[-128.54854915753984,52.761486536324],[-128.5490084395758,52.75841400795507],[-128.54949757150928,52.75599852737438],[-128.5501140338751,52.753026285875556],[-128.55071641400542,52.74927497105632],[-128.55124355457136,52.74661303896735],[-128.55209320489922,52.74279351207952],[-128.55285243395483,52.73923385362942],[-128.5534838792782,52.735774537638825],[-128.55407794059073,52.7322190159068],[-128.55503244383118,52.72898307249383],[-128.5562867812733,52.72502228616784],[-128.55742000678023,52.721631004911856],[-128.55844831171856,52.71876851222709],[-128.55930420888745,52.71510401413275],[-128.56011535869558,52.71225968429807],[-128.5606179708853,52.70889557849862],[-128.56107671407497,52.70668975313149],[-128.56216431366644,52.70450212121968],[-128.5614744043291,52.702628705609975],[-128.56052247884324,52.70086923384128],[-128.55998883048434,52.69980768250489],[-128.55954792758902,52.69927286809453],[-128.55881889249406,52.69829239991021],[-128.55823978003195,52.69712025474324],[-128.55754860584724,52.695701584845],[-128.5567366995727,52.693704645516874],[-128.55631535526666,52.692067559370074],[-128.55573607875553,52.689896744081494],[-128.5553749369221,52.68793142779504],[-128.55514078423568,52.686120903984786],[-128.5549225135796,52.68445190001659],[-128.55471901570627,52.68348067548767],[-128.55464365323544,52.68297878620311],[-128.55439648046683,52.68259559409658],[-128.5553790023112,52.68209919910421],[-128.55726142019114,52.68110537180779],[-128.55922632824303,52.67991121646411],[-128.5610107180691,52.67828864788215],[-128.5626224692282,52.67632329639498],[-128.56435331971664,52.673811391408364],[-128.5657685774989,52.67113927740094],[-128.56672661851792,52.66861791594861],[-128.5677807413045,52.665243791418774],[-128.56844623910015,52.66242098252954],[-128.56926800666494,52.65947136463626],[-128.5705023937013,52.655928363843984],[-128.57144440625314,52.65352055600222],[-128.572746343606,52.65083060218419],[-128.57344217563266,52.64926201180569],[-128.57381634746378,52.64861451916289],[-128.57550757237834,52.64584248184332],[-128.57643487900236,52.64372203470361],[-128.57780409570682,52.64160639772159],[-128.579075433592,52.63931290170612],[-128.58017389512818,52.63654936964893],[-128.58138482845575,52.633503511850655],[-128.5825272277637,52.629937641326435],[-128.58366973382772,52.626622399428996],[-128.58487186543036,52.623316474222186],[-128.58593080645875,52.6200793092668],[-128.5864893533969,52.61711059411217],[-128.58679315631153,52.614506958060666],[-128.58704341123564,52.611583752523934],[-128.5875349757273,52.609363437504285],[-128.5881162236078,52.60726561849775],[-128.58886914786117,52.60483986056005],[-128.59064971239488,52.60349937518793],[-128.5946410089049,52.60288809671879],[-128.59832580596563,52.60317513110208],[-128.60064113978504,52.603626029396445],[-128.60105870076285,52.603814119256356],[-128.60167197561748,52.604162713860795],[-128.60229462600836,52.604314825522515],[-128.60274421544406,52.604313775564876],[-128.60306511750827,52.60435709056523],[-128.60362554506804,52.60442926587713],[-128.60417221433397,52.60444231231515],[-128.60507878747336,52.60444003127576],[-128.60595274903008,52.60455566862642],[-128.6082752947463,52.604955231537616],[-128.61086077432432,52.60531129289928],[-128.6114430980612,52.60543846288554],[-128.6132604173218,52.60563836742556],[-128.61442481778013,52.60584278196539],[-128.61576186801435,52.60607134694717],[-128.61729337629527,52.60628713056816],[-128.61845791427942,52.606523462401874],[-128.61994723124877,52.60663866169646],[-128.62138950128613,52.60683172069037],[-128.62218052602805,52.606996771294476],[-128.6233984123339,52.60719708831875],[-128.62551825831252,52.60759020955259],[-128.62655596392526,52.60783940835512],[-128.6276148826337,52.60810213577221],[-128.62848001593844,52.60831314757259],[-128.62922515004934,52.60852853329109],[-128.63121227038667,52.60889818106292],[-128.63375112953474,52.60892449927119],[-128.63628163533403,52.60901038491059],[-128.63731441025405,52.60907230010201],[-128.639038005298,52.6090675671228],[-128.64008980477414,52.60909257249341],[-128.64244507959307,52.60915762173688],[-128.64363097284777,52.60900123105641],[-128.64477880733628,52.60891803594647],[-128.64633253666366,52.6087095523521],[-128.64701504365266,52.608673327476886],[-128.648017963407,52.60871620205414],[-128.64895371185185,52.60874993264049],[-128.65073480541506,52.608867086257284],[-128.65361368241176,52.609228454794945],[-128.65448273320192,52.60921598587342],[-128.65588394265956,52.609175148277885],[-128.65596641267223,52.60916205653924],[-128.65712026004672,52.60916104329642],[-128.66647553443883,52.60878962009134],[-128.66716607065405,52.608748607416594],[-128.66763869524877,52.60871537814405],[-128.6698001370801,52.60846016697725],[-128.6705051108171,52.60842834217784],[-128.67164382475264,52.608422479535484],[-128.672281290226,52.608376486512014],[-128.67331052512012,52.60817290557465],[-128.6742491632152,52.608074585514004],[-128.67506071271072,52.607897284842984],[-128.67614912968264,52.607767477676624],[-128.67625338663376,52.60777742537343],[-128.67698950586424,52.607681472831565],[-128.6781975318082,52.60757077025657],[-128.67922526869654,52.6074770952547],[-128.68093536710134,52.60736044930556],[-128.68188677506305,52.60734869271897],[-128.68247208468296,52.60729766824286],[-128.68325926328274,52.607234159271215],[-128.68424916995264,52.60717214840162],[-128.68509567921672,52.607154926115115],[-128.6858320621533,52.60700451815681],[-128.68676186590753,52.60698761067093],[-128.68809835506167,52.606786363663424],[-128.68887904959723,52.60666407733353],[-128.68944294754908,52.60656696881224],[-128.6901944779483,52.60640776728961],[-128.69104983248184,52.60628094620891],[-128.69172632028005,52.60619412504125],[-128.6924619406309,52.606061637451916],[-128.69298867274094,52.60593284211931],[-128.69368023333223,52.60579126855172],[-128.69413964587562,52.60560738470962],[-128.69518599223284,52.60528095718036],[-128.69598819974644,52.605222056812856],[-128.69638628183904,52.605151740306646],[-128.6973460811074,52.605112178966195],[-128.69881676111922,52.60495705662116],[-128.6996271541392,52.6048665368155],[-128.70004059405932,52.60480538164041],[-128.70188150621044,52.60438817365869],[-128.70240276922792,52.604158516496284],[-128.7031013998388,52.604012800787864],[-128.7038594052061,52.60389878856043],[-128.70491107517785,52.603731981372796],[-128.70673581212878,52.60345582685477],[-128.7074406600865,52.60336489930502],[-128.70788403948498,52.60329460476467],[-128.70881441646316,52.60320011508981],[-128.70951279267376,52.60309474402618],[-128.71432073858367,52.60261852608351],[-128.71477584954755,52.60257317297497],[-128.71514106806913,52.60252542242897],[-128.71558872073388,52.60249369898007],[-128.71629367193418,52.60243411104873],[-128.71720191282634,52.60231202826806],[-128.71785516075826,52.60222503746666],[-128.71834989731678,52.60219165075556],[-128.71904119070214,52.60207740472306],[-128.71979751735464,52.602054742722565],[-128.72095140524786,52.60205701470026],[-128.7215739056597,52.60201053255874],[-128.7226616418831,52.60190328933903],[-128.72370476294898,52.60176399347985],[-128.7246655258971,52.60160977716241],[-128.72512318317388,52.60159012110022],[-128.72614341359122,52.601454702318044],[-128.72668423663805,52.60138991079058],[-128.72712009500532,52.60126028045564],[-128.72853249492232,52.600963127698165],[-128.72959121059122,52.60083687319414],[-128.73041515922608,52.60080133525806],[-128.73143517840612,52.60070680921873],[-128.73332676870655,52.60039502741078],[-128.73400996528594,52.60035771674572],[-128.7347513624569,52.60034820092003],[-128.73563575411865,52.60030335831649],[-128.73658236541604,52.60013143656379],[-128.73721202225448,52.60005274015737],[-128.7378648128871,52.59998863524553],[-128.73871300707023,52.5998840588802],[-128.7392465574508,52.59983620333476],[-128.73944739579773,52.599808501082244],[-128.73948133305637,52.59980377440781],[-128.74175529923755,52.59968589482959],[-128.74238976671228,52.59959584075594],[-128.74315958918012,52.599351181425895],[-128.7440474364482,52.59921590591904],[-128.74609276866983,52.599010210515196],[-128.74750273730578,52.59896693601606],[-128.7489363819301,52.598860274999474],[-128.7496603946645,52.59865198651909],[-128.75062431795408,52.59827539302051],[-128.75160303023063,52.5979853742086],[-128.752476635867,52.59784532602209],[-128.75323079871035,52.59773275583545],[-128.75433477176466,52.59769381550548],[-128.75493129492975,52.597676372509405],[-128.7550467669257,52.592862904326914],[-128.76599980456504,52.59285675524154],[-128.773922550294,52.59285210914261],[-128.77949482916188,52.59284852305203],[-128.79224889010317,52.592839071004946],[-128.8016803061475,52.59283119861739],[-128.85690719705872,52.59291013792722],[-128.8572571601811,52.592206108145476],[-128.85802757456165,52.58945418915675],[-128.85822891858032,52.588019625273624],[-128.8584430273515,52.58616578911189],[-128.85871735556918,52.58448041940818],[-128.85878259024423,52.582836056086656],[-128.85923393663748,52.57928315898203],[-128.85943330107716,52.577597927751775],[-128.85978254715815,52.57581703787113],[-128.86015208273258,52.57373053602501],[-128.86035063511162,52.57188154221145],[-128.86046271630448,52.570441854890596],[-128.86064177093417,52.56774585877816],[-128.86084202547607,52.56626979515419],[-128.8609615310876,52.56481701425674],[-128.8612859633807,52.56148758580768],[-128.86130083736933,52.56019890596853],[-128.86155855235629,52.55818521968989],[-128.8617953149073,52.55652315869593],[-128.86249495195935,52.55333368632255],[-128.86308130594466,52.55130181927236],[-128.86356654387143,52.54993034035064],[-128.86382019031927,52.54849556343428],[-128.86448097432333,52.54510172720228],[-128.86469643486984,52.54356635686412],[-128.8648140651811,52.54194981309348],[-128.86488187558749,52.54084714469569],[-128.86488853591393,52.539353918688825],[-128.86477684672502,52.53821975492851],[-128.86512372186232,52.53105100629074],[-128.86531583672368,52.529374848168445],[-128.86570691134312,52.52728883511284],[-128.86610280669726,52.52594026787561],[-128.86643037456426,52.52455074203174],[-128.8666770887807,52.52332026020828],[-128.86705703476068,52.52181670621122],[-128.86805379316218,52.51855472136358],[-128.8683961726758,52.51696009447519],[-128.86960039177143,52.51223071966337],[-128.86983414822245,52.51127873848671],[-128.87026498544213,52.509738560791504],[-128.87061547192343,52.508253648996096],[-128.87121256249773,52.50570649243962],[-128.87152753698595,52.504672286471866],[-128.8718654627094,52.503788389276735],[-128.8722727257554,52.50312714789545],[-128.87258273779017,52.502489052226906],[-128.87269577879093,52.50152825011146],[-128.87275353727003,52.50119084273828],[-128.87282536270703,52.500607980057524],[-128.87284495757098,52.50029339343721],[-128.8728900397086,52.499807664676716],[-128.87289933147537,52.49969806463778],[-128.87294750011327,52.49960376696997],[-128.87308499580817,52.499271687628486],[-128.87332651174768,52.498962842543],[-128.87373106973237,52.497889392971004],[-128.8742617746824,52.495900236779356],[-128.87485739234538,52.49433071294723],[-128.87531992403694,52.49339380260041],[-128.8756488516199,52.49248823456345],[-128.8759493832758,52.49126870390471],[-128.87620652548856,52.48999414361118],[-128.8766619243775,52.48900691791759],[-128.87792117526317,52.484683742631425],[-128.88039876115047,52.474555819913974],[-128.88076063831866,52.47315411316792],[-128.8810442717905,52.471314593657326],[-128.88148610745554,52.4692894075709],[-128.88210130854887,52.46788366799557],[-128.88289558440925,52.46554459991529],[-128.88323219369133,52.46453894921073],[-128.88386823125362,52.46242759795925],[-128.884275723297,52.4609529430424],[-128.88487773009962,52.458349368989445],[-128.88572877281908,52.45550009810635],[-128.88627086159417,52.45391663268198],[-128.8866333288515,52.452377997464346],[-128.88721479965554,52.45055795676075],[-128.8890406563618,52.444983568505435],[-128.88948920614,52.44386459749867],[-128.88981813752676,52.44279066115],[-128.89030956503603,52.44095149898758],[-128.8906836662795,52.43985063122111],[-128.89110899487056,52.43890891305825],[-128.89151188837158,52.43792175386847],[-128.89194492698994,52.436807071875705],[-128.89231921662133,52.43573760099882],[-128.89341076172374,52.43338144934746],[-128.89368598987284,52.432525911582495],[-128.8941425747615,52.431310781799446],[-128.8948096713099,52.429909785426275],[-128.89551678451346,52.4280354779768],[-128.89680779689468,52.42492376826041],[-128.89735237885662,52.42393696267672],[-128.89807211083786,52.42243140948442],[-128.89946939894122,52.41904213710549],[-128.90035644028444,52.41704044426483],[-128.90143510191152,52.41434230758998],[-128.90231056289954,52.41281430549108],[-128.90270006420116,52.411594622565126],[-128.90322408153736,52.41025264615116],[-128.90354472364217,52.40932412576346],[-128.9039544443717,52.408282300630134],[-128.90452414545047,52.406894860773875],[-128.9051450572958,52.405516232262],[-128.9055033937668,52.40443754618624],[-128.90571558597858,52.403950944666214],[-128.9065216025321,52.402709589501015],[-128.9071013374667,52.40189628981706],[-128.90756124978256,52.40112300813717],[-128.90797664054904,52.40041366489172],[-128.90842541577754,52.39980333302506],[-128.90874984316838,52.39917928410661],[-128.9092064246179,52.39846665917651],[-128.9096191332789,52.39792286017349],[-128.90980290357163,52.39756204690262],[-128.91005846752014,52.396927941913695],[-128.9104042386007,52.39637515326427],[-128.9107739763521,52.39595919186112],[-128.91129070010055,52.39530619665248],[-128.91172637625291,52.39480331346405],[-128.91213258416568,52.39434156482912],[-128.91321229159442,52.39329915780438],[-128.91399775444805,52.39263154396733],[-128.91547486439794,52.390917775681935],[-128.91815935195095,52.38748235174638],[-128.91993270622027,52.38549852740858],[-128.9209976085986,52.3844883824024],[-128.92195879783324,52.38361938896105],[-128.92289015196255,52.38269110942193],[-128.92368772028564,52.38175890152651],[-128.92765507693196,52.377631192965644],[-128.92963590787434,52.37565149306827],[-128.93040609862896,52.37506547536098],[-128.93141297894556,52.37429228638305],[-128.9322179477675,52.37344676454046],[-128.93392435935556,52.37175495818318],[-128.93476091378253,52.37106401028182],[-128.93863812784693,52.367911974301656],[-128.94200587407886,52.365339846339516],[-128.9431957805596,52.36430160487256],[-128.94705708079698,52.36116310764871],[-128.95200822243,52.35750138749574],[-128.9528298667091,52.35686957475345],[-128.95515332613883,52.355194222038726],[-128.9563537154437,52.35445175675288],[-128.9574341193696,52.353650618229445],[-128.95897311423536,52.352561211080285],[-128.96214281483503,52.35059597138537],[-128.96325449051196,52.34994488386951],[-128.96558706864082,52.34853384927774],[-128.9699428517159,52.34598097668286],[-128.97114913640146,52.34519779746835],[-128.9752515063529,52.342727488361476],[-128.9800010980401,52.34024655790885],[-128.9826245055809,52.33890677638553],[-128.9841062896663,52.33816348668521],[-128.98637334773383,52.33699378349214],[-128.9930582666909,52.33378080406584],[-128.99374004154558,52.33342772372428],[-129.00168771616853,52.32941358139882],[-129.63158949604681,51.98934621540206],[-129.63165632846273,51.98932669673295],[-129.7033826955361,51.95010107803019],[-129.84802516851366,51.22938080102334],[-129.7084518691872,51.1497920793792],[-128.51015794216093,51.162322942706254],[-127.78919233803991,51.163730139475156],[-127.7041998503823,51.18444434253508],[-127.6897745383358,51.18483796850796],[-127.67696577675903,51.185347749934536],[-127.66983517412928,51.18758677723008],[-127.66327389110688,51.191011853894366],[-127.66161060275392,51.18982459606671],[-127.65683118779057,51.18764084276041],[-127.65026508656587,51.18672619713108],[-127.64388975817577,51.18626524443072],[-127.63853715713557,51.18682797295972],[-127.6325590659448,51.18779180829999],[-127.62722230740354,51.18903904296601],[-127.62207104125947,51.190567910221525],[-127.61898854201951,51.19098987141146],[-127.61679940220485,51.19067045695579],[-127.61397960386986,51.19063615721728],[-127.6112653242897,51.19128835518365],[-127.6083332490932,51.19028175741856],[-127.605026226241,51.18870739120069],[-127.60172379147848,51.18725352640495],[-127.59925796533811,51.18670029890265],[-127.59802416383734,51.188536191536926],[-127.59441666007943,51.18999646080576],[-127.58789737224518,51.19136066086164],[-127.58418399153375,51.19207788044313],[-127.58101771688072,51.192849618536165],[-127.57731448633159,51.194135566181124],[-127.57381359125625,51.19633561274263],[-127.56894453393737,51.19837216078536],[-127.56721780623533,51.19844160001704],[-127.56439769138319,51.19840998478873],[-127.56011919287417,51.19815937165803],[-127.5554841404271,51.19836249082219],[-127.55186018235938,51.19908132835135],[-127.54923659624977,51.19972851868387],[-127.5453262569349,51.199815764019306],[-127.54178015305374,51.199845146983186],[-127.53705005655799,51.1997670689793],[-127.53406131615873,51.200246580823055],[-127.53008434306558,51.20164914954096],[-127.52844664238634,51.201656166336456],[-127.5242623865372,51.201517973726155],[-127.52097865678826,51.20102796042187],[-127.5169701616416,51.20065814507168],[-127.51395446541186,51.199883162158756],[-127.51158307327248,51.19961747910735],[-127.51013226866506,51.19979851832343],[-127.50787994495492,51.200901095438745],[-127.50581572293474,51.20240351423769],[-127.50339685466746,51.204306273293774],[-127.5019614870117,51.20539841125806],[-127.49972348750917,51.20736264550547],[-127.49737985107295,51.20840560622185],[-127.49484576324998,51.20916929922173],[-127.49239743922641,51.20952941743815],[-127.48885148218135,51.209612124424645],[-127.48556859660775,51.20917943796423],[-127.48327379791161,51.20805294458861],[-127.48098238266154,51.20715813561393],[-127.47731400033271,51.20552309825296],[-127.47410206628645,51.20400546176587],[-127.47181940916892,51.20344371304527],[-127.46719370344213,51.20417116736471],[-127.46483459786583,51.20435612291834],[-127.46282985295728,51.2043703136165],[-127.46147189031316,51.2046067631443],[-127.45892443689077,51.20456730347914],[-127.45647021024469,51.20458438423531],[-127.45512049272588,51.205455936562785],[-127.45513886835809,51.20647989677295],[-127.4564392922543,51.20789757922771],[-127.46038805395706,51.20998703604118],[-127.46287120712162,51.21162505325486],[-127.46417129332899,51.213047703826746],[-127.46602769814514,51.215091659180366],[-127.46649042347498,51.21548579597557],[-127.46869403524603,51.216727734682394],[-127.47063021224058,51.21808703096134],[-127.47502250640714,51.21953773153236],[-127.47932757342934,51.2209972527366],[-127.48262430015801,51.222114609887676],[-127.48391947632125,51.2234153091609],[-127.48368544933973,51.22541794214012],[-127.47979071139227,51.22636411538057],[-127.47733151480507,51.226268902058564],[-127.47359148992368,51.225891220968606],[-127.46796645925195,51.22673494551137],[-127.46316668147298,51.22791059984426],[-127.4581741516177,51.22862779753912],[-127.45935973185708,51.228902627422016],[-127.45281789560225,51.2293522496411],[-127.44754503157993,51.22967187641658],[-127.44226660365851,51.229712420208855],[-127.43826000967375,51.22962374529765],[-127.43170358200388,51.22926981840978],[-127.42642757879815,51.22930061330087],[-127.42206302419761,51.22961488181281],[-127.41669417344055,51.229657056990085],[-127.41531947851914,51.22903620695219],[-127.41321360305761,51.22824547152606],[-127.41129367887595,51.22769256301585],[-127.40901178912601,51.227364120508064],[-127.40594019802381,51.22863585845923],[-127.40368665000989,51.22996693917148],[-127.40069096014834,51.23044631647034],[-127.39506023310688,51.23111080919459],[-127.38978514262949,51.231319457340135],[-127.38705609284258,51.23116330175432],[-127.38338749953328,51.229585894796394],[-127.3840057572978,51.228436882992305],[-127.3839854318419,51.22718288567037],[-127.38395165454476,51.22506763948545],[-127.3832819327626,51.22301517100427],[-127.37870582420402,51.221499220567395],[-127.3754109264736,51.220264917729416],[-127.37138615013396,51.21903265487048],[-127.36681367620191,51.217403936279695],[-127.36279209891082,51.216288614254225],[-127.36097229181375,51.216069804974175],[-127.35779774844832,51.21671800210533],[-127.35589849618835,51.21747483824238],[-127.35063982428552,51.218702835112126],[-127.34746329123541,51.21911956204985],[-127.3449152762818,51.219082576367086],[-127.3410640317183,51.21715748130884],[-127.3366646234225,51.215133795795694],[-127.33372763356715,51.213205487339536],[-127.33080796811686,51.21271128200443],[-127.32596189718949,51.21108527893198],[-127.32176513798788,51.21013723118878],[-127.31967140765236,51.21014823981222],[-127.3178662409058,51.21106889168619],[-127.31598188401381,51.21285521055819],[-127.31381571830015,51.213841717915884],[-127.31009185273557,51.21431706726126],[-127.30709706921064,51.21473167542383],[-127.30536770661263,51.214743246624096],[-127.30309376065027,51.21475547071938],[-127.29999566502566,51.21449092528916],[-127.29689700702538,51.214052902515974],[-127.29215500019846,51.21316165669167],[-127.28778047740532,51.21267343034968],[-127.28432070027306,51.212344681440705],[-127.28159436213036,51.212474407882965],[-127.27858841059248,51.21231991127548],[-127.2735045468857,51.2129783534997],[-127.27068149256257,51.21270486060878],[-127.2671259033833,51.212152751320446],[-127.26568409119496,51.21313413118708],[-127.2664247235751,51.21410227270014],[-127.26742718989082,51.21432672427687],[-127.26870153881482,51.214379762569784],[-127.26962682343894,51.21556803346943],[-127.2703664857624,51.21624771663904],[-127.27048493559204,51.21825594398225],[-127.26785976133854,51.219180492044124],[-127.26369886664251,51.22091790750502],[-127.25714742974448,51.220950577830145],[-127.24922718999701,51.22047724611878],[-127.24149237393715,51.22028470806732],[-127.23675439585728,51.21996966091018],[-127.23502696487803,51.21986397533197],[-127.2321891392742,51.218678350250556],[-127.22897054866215,51.215836310660166],[-127.22758445598564,51.21430255852276],[-127.22574458296643,51.212485828351994],[-127.22054466520173,51.211363114881],[-127.21899196698064,51.21092084338673],[-127.21605775966162,51.20922070014846],[-127.21422166263709,51.20774549588225],[-127.21374510708917,51.20597451064325],[-127.21344834681148,51.20403100210756],[-127.21315664205748,51.20266431084902],[-127.21222392236537,51.200777561566824],[-127.21075357658047,51.19953013593497],[-127.20674763840805,51.19920767923934],[-127.20413153855941,51.20070362735419],[-127.20124466548293,51.202722034537935],[-127.1999051994304,51.2047811735566],[-127.19728641392172,51.206164743317586],[-127.19465388850841,51.20657869742091],[-127.18946354281073,51.20609025878061],[-127.1811783565195,51.20550155052081],[-127.17698992687662,51.20506266609196],[-127.17125233476683,51.20428448722938],[-127.16742849116837,51.203909365529874],[-127.16754407704971,51.20602151683532],[-127.1674651841174,51.207107066039526],[-127.16447625970429,51.208148565059],[-127.15748229572787,51.20892525948612],[-127.15348969724563,51.209854416962],[-127.14868835904304,51.211413411083115],[-127.14434110079262,51.21308825018079],[-127.14116496166504,51.21385212228648],[-127.13663627510796,51.21552793089903],[-127.13191392559125,51.216227397520626],[-127.12648525608752,51.21917101539832],[-127.12230806218805,51.21969910185366],[-127.11731336109233,51.220459569295954],[-127.1114035864951,51.2208876481304],[-127.10021824560398,51.221502690582895],[-127.09469254564999,51.22363764387879],[-127.0893284886212,51.22416869182708],[-127.08514376154305,51.224132069332356],[-127.08196955527872,51.225231483227894],[-127.0822559773902,51.22643126251782],[-127.08626688699749,51.22755603414916],[-127.08954907216895,51.22800477823862],[-127.09083157276997,51.22896598279101],[-127.08875207913967,51.23028395439185],[-127.08248292133723,51.231286314566425],[-127.0773884381632,51.23119133672951],[-127.07411560857967,51.23154008839235],[-127.07112025745013,51.23247194202348],[-127.06684592875237,51.232653213735595],[-127.06266273923633,51.232899115011094],[-127.05648153545614,51.23360797057624],[-127.0525755393496,51.234476564771306],[-127.04757672128852,51.23518009005165],[-127.04330585312265,51.23605567263232],[-127.03939096744908,51.23572419036263],[-127.03893531780194,51.23555330615573],[-127.0357304891619,51.23339205965736],[-127.03380792974268,51.23202647377085],[-127.03016118945543,51.23118495829745],[-127.02425248980492,51.231830652207584],[-127.01981364085783,51.234017104397914],[-127.01681819526338,51.23488353690307],[-127.01173054016078,51.23615693226481],[-127.00946481924719,51.23736228605576],[-127.00602359236606,51.239256462729536],[-126.99975400473684,51.24053308346887],[-126.99375758869864,51.24169752771628],[-126.99039190429984,51.24216417815907],[-126.98747598619376,51.24166110684224],[-126.98410008131192,51.240297838529656],[-126.98272815518256,51.23961790444238],[-126.97907431911575,51.23791012776559],[-126.97479026056223,51.23695283943184],[-126.9723287021403,51.23638598148244],[-126.96677207093566,51.235204222867246],[-126.96240880397173,51.23618693954692],[-126.9587639011064,51.235173668112864],[-126.95611451326056,51.23415185484562],[-126.95011764740333,51.2351389329798],[-126.94576878627448,51.237946765780656],[-126.94204563841451,51.23927011054877],[-126.9371318368563,51.239393427771724],[-126.93258566208326,51.240038147605624],[-126.92932320099074,51.24215909355685],[-126.92386669010405,51.242920357965055],[-126.92077910050962,51.24378215949624],[-126.92052140222823,51.24686588396983],[-126.92008977857456,51.25029609931205],[-126.9202991363653,51.254635680814495],[-126.9193126141421,51.25703625796568],[-126.91486767381194,51.25990419297799],[-126.91333564161602,51.26230742422888],[-126.91335275932259,51.26487712564269],[-126.91528969592187,51.2688738914058],[-126.91740572869412,51.272580746139525],[-126.91606153088627,51.276014312692276],[-126.91380539956016,51.27973351801054],[-126.91172460942116,51.282139988113265],[-126.90919499370086,51.28493715998722],[-126.9034780052409,51.28929825511755],[-126.90003118543177,51.29164466746915],[-126.89713034590797,51.29434013060587],[-126.8947762425217,51.297198947317305],[-126.8933261826985,51.298401006856906],[-126.89152777176025,51.303029475711554],[-126.88998872955246,51.304863953024274],[-126.88580796776529,51.30664559577951],[-126.88043781633024,51.30785170474991],[-126.87560330929725,51.30729276658849],[-126.87305255544757,51.30729562898772],[-126.86948780633385,51.30548274354341],[-126.8645603117464,51.304002213419274],[-126.86174508835538,51.30617594204793],[-126.86049355814168,51.311094811528505],[-126.85868978937395,51.31532604001258],[-126.85569366633665,51.3176675876455],[-126.84694238504957,51.31757177630016],[-126.84129252466076,51.31797801504314],[-126.83546536539814,51.319934918584174],[-126.8267161199408,51.32006419469949],[-126.81814271021359,51.31921752739717],[-126.81622640667375,51.31904732508303],[-126.81302088069779,51.31477041803517],[-126.81191570745935,51.31231809615156],[-126.81298669120665,51.30597263348216],[-126.81477693859945,51.297914601647356],[-126.81339952697081,51.29488798710277],[-126.8119369906707,51.29317711486001],[-126.80956148840727,51.29158048067969],[-126.80791548000713,51.28992921627296],[-126.80518188775648,51.289984602926815],[-126.80045987714226,51.29399497822265],[-126.79591527645326,51.297139840088114],[-126.78598560408408,51.29795375470102],[-126.77587476232985,51.29950975796892],[-126.7726838559538,51.29905523898194],[-126.76712776004342,51.29866100056573],[-126.76448550055822,51.29946548689637],[-126.76403838758388,51.302830959426565],[-126.76495973229856,51.305979598049014],[-126.76816023623692,51.309342251951264],[-126.76761565525888,51.311114960457765],[-126.76543119551096,51.3118075043625],[-126.76188105062884,51.31357520944626],[-126.75960340017009,51.31392321935145],[-126.7554142873387,51.314779912652334],[-126.75423027829395,51.31541281920998],[-126.75159000190284,51.31735759702101],[-126.75104995374126,51.319125687581675],[-126.75069616287801,51.32330057819363],[-126.75006776248584,51.327753859775115],[-126.74961843747984,51.33112367079372],[-126.74807503962475,51.33352897679736],[-126.74634652823936,51.335353102567076],[-126.74115076306786,51.33662037581626],[-126.73504348964828,51.33747984062288],[-126.73294914931128,51.338678323177255],[-126.73030930761043,51.34068087949022],[-126.72885448521713,51.343366960910096],[-126.72721907544212,51.346170860272075],[-126.72503565261304,51.34931541876434],[-126.72430897981026,51.35091227539059],[-126.72221675703805,51.35411115974096],[-126.72413721491051,51.35622184591335],[-126.7265099980348,51.35713966152156],[-126.72824619206091,51.358789723759884],[-126.72697387395192,51.36125070019535],[-126.72469475882477,51.36227850301845],[-126.7216873637327,51.364335326892636],[-126.71932149535881,51.36656472408467],[-126.7161307908761,51.36960040621382],[-126.71239884460309,51.373768722270256],[-126.71030463309766,51.379257378073866],[-126.7115916923829,51.383481599924544],[-126.71333248293736,51.388338002306185],[-126.71133036803661,51.39176375028226],[-126.7081380985529,51.39462409983289],[-126.70531224316245,51.397365939630504],[-126.70157234854041,51.40062329989818],[-126.69956893176146,51.40434276059478],[-126.69920648534567,51.40570934453731],[-126.70176804935298,51.41027633272666],[-126.70460631709041,51.414728764004174],[-126.70872145365202,51.41746884925942],[-126.71229259664561,51.42204046118924],[-126.71531104318377,51.42483765754505],[-126.71915398657264,51.42883399545984],[-126.72336028042015,51.43123354675422],[-126.72839154381829,51.433798756920844],[-126.72921762074661,51.43580066058814],[-126.72748905305944,51.43905703806182],[-126.72639844755128,51.44236371014747],[-126.72521504703197,51.44425335383723],[-126.72211250110009,51.448427162423215],[-126.72047174085452,51.45116784343446],[-126.7167304127561,51.45488158957541],[-126.7108852840003,51.45779553234968],[-126.7075034484085,51.45986248864427],[-126.70851403052906,51.46328707518386],[-126.70961734857924,51.46608278155527],[-126.70980408255308,51.46962466992829],[-126.70907508247286,51.471570152539606],[-126.70460060054243,51.476141202018006],[-126.70167642047184,51.47831168174194],[-126.69893297755934,51.47917001611702],[-126.69463247113643,51.4788867215363],[-126.69334956333945,51.4761458566278],[-126.69389743827891,51.473633902293884],[-126.69197328619423,51.470431322657234],[-126.68776061668753,51.46723303968377],[-126.68163318273274,51.46586697430169],[-126.67733345444752,51.46489752765298],[-126.67468148544116,51.463644964430046],[-126.67120399669257,51.46004227409776],[-126.67047230474708,51.45912885181207],[-126.66855075078739,51.4570713248585],[-126.66681060274185,51.454671628861256],[-126.6642506489564,51.45187504219121],[-126.66223838191726,51.45039236191124],[-126.65757583413925,51.44844930981581],[-126.65163345208336,51.446508924827285],[-126.64779152782641,51.445823513350554],[-126.64194271479623,51.44530920210825],[-126.63490341299972,51.445140633060966],[-126.63006035118336,51.44461728574469],[-126.62530796189932,51.442161800749545],[-126.62430355602817,51.44141786476417],[-126.61973590395013,51.43873673724823],[-126.61680919194329,51.43730366456562],[-126.61470946734835,51.43467846103841],[-126.61242703792652,51.43119253623301],[-126.61051122120506,51.42868013341412],[-126.60868519318021,51.42541997615349],[-126.60832156660352,51.42182435000949],[-126.60960303902341,51.41805382860577],[-126.61143087528681,51.41594142379198],[-126.61444498159617,51.41445985227095],[-126.61800864294734,51.41343185197294],[-126.61792031388019,51.41245677750512],[-126.61362569782995,51.41228260405205],[-126.60951648228304,51.412112317421595],[-126.60476624207199,51.409999232026365],[-126.60184433021921,51.40874243592099],[-126.59654907081773,51.40731462221616],[-126.59298974158055,51.406052525822794],[-126.59098112067342,51.40531239532174],[-126.58787571394294,51.40467777154235],[-126.58468115859047,51.404505222707265],[-126.57737451304203,51.40421556345375],[-126.57454517711435,51.40438475420892],[-126.57052233066727,51.40484206241506],[-126.56824095712432,51.40523946787966],[-126.5660511755444,51.405978008541226],[-126.56412573669694,51.408262964270726],[-126.5618373543153,51.41003581410877],[-126.55991597769446,51.412600603203174],[-126.558544997542,51.41431275031572],[-126.55598415966001,51.41614121961056],[-126.55278687012495,51.41688274339844],[-126.54912952131353,51.41739247713204],[-126.54346955336428,51.41624669297691],[-126.54018243396307,51.415841087074405],[-126.53561317238736,51.41572024574524],[-126.53058820884387,51.41623357304709],[-126.52793935955714,51.41742903445955],[-126.5239137772482,51.41908293353013],[-126.52016388057977,51.42056320727466],[-126.51532012957807,51.4214761262645],[-126.5126686199488,51.4220401302876],[-126.51056761435927,51.422437236165635],[-126.50837155414393,51.42317860244657],[-126.50461775776489,51.42620272925392],[-126.50178676420201,51.425739567398495],[-126.5003282196888,51.42528151597867],[-126.4979509718365,51.42522521344648],[-126.49475241065105,51.4256761882868],[-126.49200758282372,51.42647179829459],[-126.49091006939935,51.427153638116664],[-126.49227384722381,51.42904326548021],[-126.48879841139879,51.43012243525948],[-126.48724370681228,51.430572848376976],[-126.48449385813876,51.43291824776021],[-126.48375324547801,51.4360499213984],[-126.48054634759704,51.43805104386413],[-126.47862063904678,51.439933355900784],[-126.47842721150562,51.44284894136417],[-126.4779640220985,51.445298932684175],[-126.47822326549216,51.44861648820519],[-126.47547148788928,51.451349811529724],[-126.47317943366875,51.45340350978498],[-126.46997342402155,51.45522926977143],[-126.4673226022092,51.45550777311922],[-126.46274730307296,51.456812205209985],[-126.45824113012388,51.463148480848055],[-126.4556633420928,51.46679996575201],[-126.45290552183316,51.470680969817124],[-126.45115768767222,51.473649147465764],[-126.45086392428496,51.478045310563125],[-126.45048630395416,51.48050148815652],[-126.45010807009936,51.4836964134962],[-126.4480875879455,51.48517853978089],[-126.4430447763051,51.487399981630794],[-126.43947376765186,51.48842183517912],[-126.43646002366823,51.48767337697011],[-126.43436228601023,51.48595427964902],[-126.43217272717006,51.484409946520266],[-126.42870529929237,51.48246427455337],[-126.42459667305808,51.480800238291714],[-126.42369860743561,51.4778266821769],[-126.42361156788473,51.476739336463126],[-126.4208780685152,51.47484677203135],[-126.41657969486805,51.47444526146388],[-126.41145980732453,51.47443249313671],[-126.40624085705429,51.47510644137755],[-126.40303845251418,51.47573038697037],[-126.39873304251458,51.47663409806185],[-126.39552740395987,51.477424445445365],[-126.39077234918709,51.477645625851416],[-126.38666127471674,51.47671898894934],[-126.38236207880753,51.47631113581853],[-126.37669375838324,51.47624255028436],[-126.37404172268113,51.47606395194309],[-126.37084345156396,51.47531323753585],[-126.3712280441948,51.47262787527193],[-126.37297730218594,51.47068858607383],[-126.37509721644352,51.467442721080815],[-126.37667155532695,51.4644717908216],[-126.37713726503881,51.46247776245484],[-126.37550344526598,51.46099105019274],[-126.37148465176303,51.4598913346639],[-126.3691092583083,51.45971957035751],[-126.36728383368698,51.458970446739805],[-126.36500951328887,51.45696733020439],[-126.36319715441489,51.454502152685656],[-126.36265810779251,51.452790726806484],[-126.3614793166525,51.45112957452385],[-126.35955499140253,51.452437647128754],[-126.3563368581113,51.45500348022954],[-126.35229257842354,51.45870040794604],[-126.34953287672293,51.46126741694245],[-126.34669130896668,51.462511881366865],[-126.3422174204123,51.461648119409766],[-126.33874880247231,51.46066844351975],[-126.33610397477665,51.45952017861106],[-126.32961958350973,51.45852778560503],[-126.32596808186055,51.45783207931487],[-126.32103483764062,51.45695926707374],[-126.3162770793817,51.457924531983465],[-126.3137963669766,51.45923225007221],[-126.30884521420057,51.46144527817743],[-126.3073756311719,51.462124640235565],[-126.30565279791513,51.46057546711159],[-126.30283437872484,51.458282009000214],[-126.30119552541952,51.45724973330367],[-126.29554354275895,51.455063411637205],[-126.29353209236395,51.45482853891053],[-126.28796220414145,51.454352520174965],[-126.28586223681022,51.45406445031492],[-126.28249248422425,51.45262618443927],[-126.28031270992427,51.45067274443778],[-126.27794068423512,51.4500407746617],[-126.27255020788576,51.449623021950764],[-126.26889077999948,51.450014865647546],[-126.26375923955761,51.451478075724154],[-126.2576306412435,51.45202728178526],[-126.25443824304445,51.45133272265555],[-126.2496030993276,51.45022940027164],[-126.24640447693197,51.44982633154285],[-126.24192829492283,51.44975124219018],[-126.23908469527927,51.450708631837394],[-126.2369597559456,51.45338880820795],[-126.23457509604798,51.454354098061174],[-126.23210684856595,51.45434402514226],[-126.22845693302814,51.45358684566115],[-126.22571988468698,51.45294779084682],[-126.22371559735211,51.45225617882821],[-126.22125236268381,51.451785317453854],[-126.21668054519482,51.45188667919412],[-126.21302791470279,51.451588429656844],[-126.21103094799538,51.449927259954016],[-126.20568047251253,51.445393373010184],[-126.20177860985407,51.44263263086898],[-126.1977003212021,51.43896106449866],[-126.19370101694092,51.43672413182785],[-126.19033083009441,51.435847448831574],[-126.1864827388974,51.43686355284824],[-126.18327177326161,51.43788186477485],[-126.17999020998795,51.437299230439734],[-126.17853770340105,51.436035440571445],[-126.17826957076485,51.435834482849],[-126.1767827882168,51.43655146469163],[-126.17586333672102,51.437117213464184],[-126.17457706701116,51.437798510115826],[-126.1721002964412,51.43904929662237],[-126.16870880568831,51.44006746725292],[-126.16429756798682,51.44262682559873],[-126.158792156716,51.4452335468267],[-126.15567139986976,51.44665538261195],[-126.15456851721892,51.44716623072172],[-126.14962115585453,51.44846303646472],[-126.14366505149506,51.449474821103635],[-126.14046118899562,51.450208624460615],[-126.12854840856319,51.45274081153638],[-126.12121944257574,51.4542550092764],[-126.11076917881635,51.45696886184911],[-126.1056174378828,51.46003371247955],[-126.10358233632431,51.46242462867718],[-126.1019092600112,51.465276835699584],[-126.09911115673289,51.470635138187276],[-126.09743305557215,51.473937694331774],[-126.09704558710636,51.4759366265006],[-126.09838826283293,51.47891065537065],[-126.09883385669823,51.48034288589551],[-126.10000504932202,51.482286044428236],[-126.10198586839306,51.485548331623335],[-126.10296177025447,51.488633670299144],[-126.10277448989473,51.48909267682491],[-126.10292051151224,51.492575320513296],[-126.10288592285227,51.49628865877946],[-126.10349551610794,51.49948535318163],[-126.1062163653211,51.50229585841471],[-126.10964932264115,51.50710190304629],[-126.11170953348365,51.511794751688605],[-126.11102406480614,51.516359000404165],[-126.10862281988851,51.518578589690975],[-126.10503378993135,51.52011211756016],[-126.09843194352096,51.52105978750395],[-126.09100854554102,51.52171717433506],[-126.08725043303393,51.52210546488721],[-126.08229589078645,51.52271324712994],[-126.07881140539581,51.5233888008515],[-126.06966739243508,51.52175411735039],[-126.02980966965389,51.51532052005944],[-126.00006220311604,51.509830853323486],[-125.3275214399127,51.38924948897171],[-125.32550962238986,51.389096173566564],[-125.32036426665728,51.38782845264813],[-125.32000459675356,51.38782909812466],[-125.31532542286567,51.38713280111982],[-125.3115600495445,51.3859655570411],[-125.30862213548876,51.38525147373671],[-125.30523300460676,51.38487845486784],[-125.30231503069618,51.38473432464558],[-125.29837922638279,51.38436895723279],[-125.29060052042362,51.38323950777682],[-125.28711373736746,51.382696473806675],[-125.28455840183767,51.38237799634351],[-125.2818082786497,51.3816559853445],[-125.28033391404433,51.38121185983969],[-125.27729987802212,51.38026801824495],[-125.27463812225749,51.37943531207339],[-125.27196683652166,51.37831411828013],[-125.27020003485038,51.377300787717644],[-125.26799025729231,51.376117943161496],[-125.266705096887,51.37555872146182],[-125.26486372943066,51.3747187374156],[-125.26256315760344,51.37382187960916],[-125.26236456677414,51.37365677029126],[-125.26059632390115,51.37189431437459],[-125.25874652987572,51.370715313756726],[-125.25598227516524,51.36919198365195],[-125.25440979974954,51.36863634127172],[-124.77208784980488,51.24185863850983],[-124.66792288856557,51.21303640219291],[-124.55405983507882,51.181294095442006],[-124.5351398902135,51.17654636241061],[-124.52275617730206,51.1742932753365],[-124.50993931533691,51.17260948024239],[-124.49503565969668,51.17042047959774],[-124.4949650312945,51.17039204172015],[-124.4727196688849,51.16315232131888],[-124.45586439823552,51.15959080789837],[-124.44136326126889,51.1493904249909],[-124.42532400486984,51.15249257045238],[-124.41864907212465,51.16107511592966],[-124.41415226211015,51.1683352370825],[-124.41309712122194,51.175822058724876],[-124.40929971890785,51.177887875241545],[-124.4093060070086,51.179310726225395],[-124.4064842280151,51.18091705626812],[-124.40032457680472,51.184522374039794],[-124.39731607280406,51.18572791238904],[-124.3945141827541,51.18715687370062],[-124.39078887335226,51.18915855533969],[-124.38889118408696,51.19013442959988],[-124.3850656363164,51.190940169362975],[-124.38016553660664,51.19174495443059],[-124.37680263619563,51.19203565337266],[-124.37561356518617,51.192035957167],[-124.37334579635592,51.19215203634311],[-124.37115890078827,51.190845363084186],[-124.37024782951785,51.189128274054035],[-124.3703320170793,51.18644617060112],[-124.37195388769092,51.18284445888212],[-124.37330915967398,51.17947572958226],[-124.37185267247327,51.176624329405435],[-124.37057489824272,51.1735908305702],[-124.36902051533244,51.17068576472747],[-124.36838695984007,51.16805440691773],[-124.36811140760776,51.16737074172144],[-124.36873387935572,51.164458375136064],[-124.37145879473806,51.16159937720684],[-124.37318453590628,51.159433100232626],[-124.37562468548235,51.156516007016684],[-124.37679958427069,51.15531104678099],[-124.37770436308912,51.15405391181685],[-124.37823775539155,51.15159874209531],[-124.37805544555056,51.14914450114258],[-124.37460405874984,51.14646583152189],[-124.36961004239576,51.14566859290309],[-124.36324087725154,51.14607644857415],[-124.3616110985545,51.146418171903214],[-124.35271970483353,51.147684000697886],[-124.34418062446248,51.14946675534477],[-124.34227436678918,51.14992257690956],[-124.33701222212584,51.15055625601306],[-124.33247057263546,51.15067555528522],[-124.32802416250411,51.1501652078677],[-124.32621018266249,51.14930649235558],[-124.32394019018224,51.14839719122681],[-124.3218371753369,51.14685889031835],[-124.3195657692517,51.144857776371154],[-124.31448247933349,51.142293193055885],[-124.31131116777772,51.14064104173134],[-124.30775485669899,51.13858393780491],[-124.30603357707201,51.13681753296084],[-124.30476161459461,51.135278444028],[-124.30294659213865,51.13447431579884],[-124.29895706487594,51.135160165630985],[-124.29586985378192,51.136192357024335],[-124.29359490107167,51.13768017933664],[-124.28896761069086,51.14042381701837],[-124.28452031247991,51.14145638747539],[-124.27770533412631,51.14191156741135],[-124.27081398922246,51.14248640603905],[-124.26518412431574,51.143001655679],[-124.2609995391881,51.14351646784111],[-124.25728833992575,51.145459082179705],[-124.25374666055356,51.14854193675932],[-124.2500141814717,51.149915946225114],[-124.24483821087469,51.15014256070315],[-124.23747884878566,51.15020293580942],[-124.2299482551726,51.149171785386486],[-124.22740437231751,51.14871760027237],[-124.22469062696483,51.147859359226565],[-124.22050680405188,51.14654453433848],[-124.21659903325913,51.14477645685914],[-124.21452229492942,51.14374729157153],[-124.21015766875317,51.14231918785255],[-124.20435589676246,51.14140296556879],[-124.2019969969093,51.141345175636744],[-124.19527067419193,51.141001988334935],[-124.18909301660607,51.14054147616305],[-124.18446988423148,51.13951291468298],[-124.1829311271503,51.13899866710647],[-124.17930664021779,51.136654536465024],[-124.17893717682989,51.13379933134314],[-124.17967746258049,51.12900191214069],[-124.18049582029178,51.126835521167],[-124.18049330798836,51.12654751861838],[-124.17877586452761,51.12237722802215],[-124.17679169874836,51.11844057572089],[-124.1755218593812,51.115924932552446],[-124.17480702753787,51.112783386629935],[-124.17309320505139,51.10889870283651],[-124.17155153961333,51.105702726392025],[-124.17046511827027,51.101873050550516],[-124.16974175835523,51.09964738292295],[-124.16766224515334,51.096333672510895],[-124.16441345144428,51.09364920776361],[-124.15834173816816,51.090105120456954],[-124.15789150926354,51.08993159947997],[-124.15262863549643,51.08827362972573],[-124.14746374797326,51.08633129273689],[-124.14438838804045,51.08501705706821],[-124.14384781343409,51.08461352221201],[-124.14357138412497,51.08336051417131],[-124.14385273521941,51.08141331495451],[-124.14403622370843,51.07941341947636],[-124.14359084111103,51.076730646409565],[-124.143507529248,51.07393314518517],[-124.14486952763828,51.07176853159196],[-124.1478604503799,51.070970673720154],[-124.15439490010154,51.07120035438402],[-124.15774799284856,51.07200244220666],[-124.16136564647562,51.07297490082091],[-124.16164158597826,51.07252133879198],[-124.16545066540536,51.069547643928075],[-124.16908941106236,51.06584015814982],[-124.17054530708427,51.063787359071654],[-124.17136250016452,51.06058795797782],[-124.17054867740771,51.057450747655444],[-124.16720507969684,51.05505208503595],[-124.1633936643262,51.05361572327356],[-124.16177482361557,51.05304307687298],[-124.15860851223118,51.051901699229624],[-124.15316191707953,51.04996047617776],[-124.15099345586893,51.0481857305366],[-124.14856288898007,51.044476610605756],[-124.14739198037748,51.04138771897591],[-124.1470371936604,51.038590692022034],[-124.14577112472642,51.03367906132495],[-124.14289239061122,51.02944980799342],[-124.13646944915384,51.02602014606013],[-124.12795445075224,51.02246995057627],[-124.11962986502408,51.02086413215758],[-124.11121472104928,51.02006122136955],[-124.10269466582528,51.02005253086527],[-124.09690041680346,51.0200472483414],[-124.09617510272557,51.01998725633648],[-124.09455830059605,51.01941474428977],[-124.09329176419796,51.018328852291916],[-124.0927528190278,51.015583418032406],[-124.09258422242716,51.01318840330197],[-124.09150135053846,51.01181758790473],[-124.08815282680632,51.01004277954308],[-124.0849039485546,51.00861146613917],[-124.08363054712143,51.007697675819955],[-124.08183035437298,51.0060961354172],[-124.07975886051426,51.003178456276956],[-124.07803958822961,51.001692753511854],[-124.07773892645567,51.0007253394263],[-124.08116885063525,50.99561438485762],[-124.08464650602008,50.993357278585634],[-124.08935999331463,50.99054394047651],[-124.09006368487108,50.98843428584908],[-124.09108344541913,50.98593586308376],[-124.09144639479173,50.98478661327623],[-124.09093267603595,50.982463124934874],[-124.09004758907771,50.981486916422924],[-124.08764412194121,50.98067181584182],[-124.08488798037344,50.98043398158634],[-124.08087929050177,50.98113754960013],[-124.07440304102282,50.98218159937648],[-124.07134763770422,50.98193830436804],[-124.06984813085728,50.9813303516599],[-124.06836771561048,50.9799535319537],[-124.06814370081261,50.97821259947198],[-124.06760615656486,50.97646851579144],[-124.06403918209236,50.97389634747737],[-124.06067668099105,50.97384396024804],[-124.05763898092883,50.973208698864276],[-124.05590223261225,50.97085877412662],[-124.04087902398027,50.950338842840324],[-124.03898906584216,50.94470638666277],[-124.03680328215833,50.93868464595095],[-124.03078116221049,50.9366538640399],[-124.02737937507496,50.937553681848925],[-123.99981479540835,50.95849206524224],[-123.99911841545969,50.95876488177187],[-123.99771466570334,50.96050734481203],[-123.99835239806687,50.96376564928804],[-123.9983086361717,50.963787884650564],[-123.9947538054329,50.96549363262791],[-123.99067128737052,50.96498328140762],[-123.9862306760413,50.963565781892676],[-123.98188646431566,50.9619140076917],[-123.97527088347175,50.95786801490397],[-123.97036801855488,50.954732398966954],[-123.96003205049784,50.94794772641249],[-123.9524998469395,50.94315983656207],[-123.94489591467999,50.93779848636789],[-123.94099386786029,50.93591223017454],[-123.93267373538372,50.93438304773564],[-123.92552463497506,50.93525451681699],[-123.92028811377465,50.936348524567684],[-123.91540928666842,50.9370991285095],[-123.90402310967235,50.93837839680277],[-123.89624236465546,50.93992798832311],[-123.89291723756895,50.943362058683036],[-123.88984842999554,50.94588504972316],[-123.88532374839511,50.947547845857926],[-123.87900346805445,50.94950333391833],[-123.87699828799879,50.94372523018924],[-123.87382536797912,50.939442103754175],[-123.86947359729723,50.93658854904306],[-123.86593899138457,50.93453252735847],[-123.85834808294405,50.93448505281553],[-123.84695332137161,50.93443995696843],[-123.84062790709602,50.934441951982784],[-123.83962525292638,50.9307278726212],[-123.8378225137443,50.92500888383088],[-123.83383573697783,50.92175263081372],[-123.8275934876016,50.91832565072078],[-123.81936903084151,50.91410113702231],[-123.813302982463,50.91089965044195],[-123.80662497963432,50.9114784695725],[-123.79071957897668,50.91205914231136],[-123.78619670555263,50.910229740776686],[-123.77752209165891,50.90857624912334],[-123.76406461846881,50.905491449404664],[-123.763968400337,50.90400084881232],[-123.7639720448351,50.90080005962185],[-123.76432822792853,50.898803529186374],[-123.76478785308981,50.894739150555516],[-123.76478435759057,50.88655936873921],[-123.76243325419564,50.885480868746065],[-123.75485698780588,50.88501994102562],[-123.74907060556149,50.88490782240891],[-123.74744829870713,50.88490723603936],[-123.73931971296032,50.88467844019241],[-123.73136758901481,50.88433863000838],[-123.72740823915733,50.88216205192268],[-123.72433583291445,50.87850335971254],[-123.72207387584295,50.873469432119414],[-123.72208834404536,50.873185564795556],[-123.71937272586797,50.87398618132257],[-123.71395552596826,50.87558526076773],[-123.70464358854386,50.8798696213592],[-123.69624474152502,50.883245948446095],[-123.69127560844706,50.881643141238264],[-123.6870415083248,50.87986713916745],[-123.67809863439746,50.87780200485891],[-123.67530570177904,50.877058401192585],[-123.6709712803902,50.8772272916764],[-123.66735676461896,50.878596534325574],[-123.66490425581013,50.88168814049419],[-123.66290887201949,50.885284545790135],[-123.66245737773363,50.88711377978723],[-123.66244473907945,50.889803530542345],[-123.66244122831166,50.89449495742425],[-123.66116194859468,50.899353504525344],[-123.65817105364299,50.902093373255774],[-123.65410064297386,50.90369303502094],[-123.65075125420024,50.902948446578726],[-123.64408325962837,50.9008817486704],[-123.63632394262513,50.89738933895648],[-123.63072298394795,50.895898016451774],[-123.6236857158817,50.89411932257448],[-123.62124057335733,50.894058480242],[-123.61355619073683,50.89427986114647],[-123.6095825783972,50.89644664925076],[-123.60785468922451,50.898673601318734],[-123.60621583063454,50.901361245439205],[-123.60394509068654,50.90467670263029],[-123.60104325575753,50.90913099888491],[-123.59731197823244,50.914961868801626],[-123.59704539387315,50.91541666147666],[-123.59430840223756,50.918900496540516],[-123.58939973775084,50.925927274437726],[-123.5855782426111,50.931527774431935],[-123.57994404708799,50.93900684350619],[-123.57489296092811,50.93677221267984],[-123.56876077245005,50.93372995455808],[-123.56035224305246,50.931948043960894],[-123.55149548519604,50.93107671630048],[-123.54661894891606,50.93140935740863],[-123.53783916074478,50.933797002799565],[-123.53376016162939,50.93567525136626],[-123.52578303981166,50.93897759882886],[-123.51553811212335,50.94485186713646],[-123.51452775593174,50.94559214122749],[-123.5113373192582,50.95015514199552],[-123.50587230660452,50.956379822353874],[-123.49824944529574,50.96139480570555],[-123.49242842819048,50.96527132404069],[-123.48881027291485,50.966981931241065],[-123.48345424321447,50.96890845371025],[-123.47802186267197,50.96889890230399],[-123.47224614840341,50.9673993261691],[-123.46908896027306,50.96624714184793],[-123.46266762176782,50.965830981023736],[-123.45875693968358,50.96764860108477],[-123.45711892437204,50.96936706650811],[-123.45366431558094,50.971928839343306],[-123.45057423722469,50.97409444471563],[-123.44638305057677,50.97705260771431],[-123.43958322341854,50.97898019424196],[-123.43232321883931,50.98096200531409],[-123.426797370833,50.98180262255237],[-123.42482482609694,50.98088582138205],[-123.41967501851123,50.97892391598538],[-123.41415721548215,50.978396038454534],[-123.41017234718561,50.97947179387559],[-123.4050781905163,50.98220266939028],[-123.40151112909078,50.98613397946442],[-123.39778598374086,50.98909667620091],[-123.39522886400286,50.99086318322363],[-123.39004134533938,50.99490592671236],[-123.38368215496865,50.99677137320732],[-123.37617532623827,50.997033818519455],[-123.36792572396607,50.997065525476415],[-123.36313201102014,50.9970514214135],[-123.35425671656927,50.99656479797193],[-123.34928541146068,50.99545864480949],[-123.34332918218553,50.994123421971956],[-123.34106090919822,50.99411581907337],[-123.33281735730438,50.99500604114952],[-123.33000762119799,50.99522292075524],[-123.3259733148203,50.99206728918151],[-123.32410474164037,50.987543314428876],[-123.31962961695412,50.982721792847464],[-123.3165708558871,50.98139970256801],[-123.31167903315857,50.98138270001094],[-123.30931539597647,50.98320138217208],[-123.30701815016468,50.98627909769725],[-123.30425538973905,50.99044301249217],[-123.3011414909311,50.99379923098185],[-123.29659374670673,50.99561402997481],[-123.29134064218752,50.99588008979418],[-123.28591317922994,50.99643037996825],[-123.27557788444537,50.99696035864114],[-123.26770289061609,50.99739087365076],[-123.25102973621894,50.99840233409775],[-123.24685365880548,50.999240840490444],[-123.24376134332996,51.000090613947584],[-123.24376198472181,51.00054162096628],[-123.2430947099364,51.00163841929981],[-123.24422091482509,51.00465844313977],[-123.24525739299767,51.007054518597116],[-123.24892552219436,51.01006204003611],[-123.2509693439603,51.0125646871889],[-123.25148238511593,51.01651142832836],[-123.253229890431,51.018501299168854],[-123.25621573279706,51.02380009892541],[-123.25574109739662,51.02872121717513],[-123.25433599881313,51.03159103292922],[-123.25231747202622,51.035603332532474],[-123.25056261429724,51.03950353704558],[-123.24618587441213,51.044677295574324],[-123.24325097880046,51.048239026186664],[-123.23959001970364,51.05198111802893],[-123.23688580633345,51.05388261167188],[-123.23060074065903,51.05798338673577],[-123.22537244666775,51.060244790623535],[-123.21887830185474,51.063314290617335],[-123.20857648441287,51.06646089461566],[-123.20605253081018,51.0672771880658],[-123.20126901238257,51.06901951177199],[-123.1949272103532,51.069625427041586],[-123.19466849436337,51.07146106117023],[-123.19041749528006,51.072226651148505],[-123.18643417369418,51.07327789120583],[-123.18111265858386,51.07536536577086],[-123.17388729703195,51.0783820227967],[-123.16866682226048,51.08200691158822],[-123.16234774742546,51.08513157250752],[-123.15768587056507,51.089386127589286],[-123.1538715956403,51.09535461487363],[-123.15155387453682,51.099829313451046],[-123.15107677009371,51.10526424568005],[-123.15185201224088,51.10834682602554],[-123.15210508232889,51.11355082923804],[-123.15046335343399,51.120185574490186],[-123.14858316834616,51.12294654005013],[-123.14428121657919,51.127085497964465],[-123.14248152310746,51.12880721669991],[-123.13923734481519,51.13139640647971],[-123.13418210299879,51.1334278703557],[-123.13019549730512,51.13464393844498],[-123.12275000141642,51.13577051342644],[-123.11785389997046,51.13665350402371],[-123.11596798201177,51.13791715585895],[-123.11061568141217,51.139204305704816],[-123.10307330419997,51.14003958763983],[-123.09935225668055,51.14045496245399],[-123.09451386664055,51.13825188120296],[-123.08738164502392,51.134795365403654],[-123.0805183406617,51.13031307417866],[-123.07705378256905,51.12901468954778],[-123.07241928446551,51.12983341944278],[-123.06826585238099,51.13225272106245],[-123.06974633785268,51.134765125665844],[-123.06977782856639,51.13710841815889],[-123.06707690864872,51.139634506135664],[-123.0645565018831,51.141591257548406],[-123.05983009190098,51.14161186575318],[-123.05401248099301,51.142324876998146],[-123.0493156089728,51.144915758953],[-123.04371842063121,51.148545420583396],[-123.04092337378609,51.15073147369066],[-123.03902885996497,51.15251034892002],[-123.04204432058421,51.1543271064752],[-123.04589288460937,51.156542432501254],[-123.05093784222915,51.16080618695564],[-123.0541675213375,51.165022269841124],[-123.05377054492301,51.17057002996794],[-123.05170870943917,51.172921472429834],[-123.0502722764338,51.17556160641255],[-123.0499493928016,51.178477938528694],[-123.05206943494255,51.18172542364921],[-123.05927506969138,51.183068052810704],[-123.06511161680827,51.184530732124735],[-123.06768810636838,51.18674856496651],[-123.06672314469012,51.190069949857765],[-123.06572923223605,51.19967627775731],[-123.06463383297674,51.20734358207308],[-123.06430916806025,51.210947150721786],[-123.05838325276817,51.21034705063561],[-123.05282473816293,51.2093996220876],[-123.04816849883048,51.20804197725037],[-123.0427735326851,51.205724695944966],[-123.03784041414131,51.20465811017063],[-123.0309865597728,51.20251479056419],[-123.02269071068554,51.19986295901613],[-123.01227470710305,51.19698760123611],[-123.00656070476002,51.198380607004026],[-122.99782349523761,51.19910273964078],[-122.9914440489583,51.19866950810596],[-122.98096275702855,51.19699466006434],[-122.97275853799997,51.195365871100904],[-122.96766545562338,51.19458050174594],[-122.96274008726402,51.19448851219844],[-122.953911054415,51.193831627110114],[-122.94580837949806,51.192830896157496],[-122.93904927744792,51.190853977180396],[-122.93731674497708,51.18937146867228],[-122.9324623484815,51.18618887861706],[-122.9275422135033,51.184999735009335],[-122.92262508425944,51.184390610960534],[-122.91732851318375,51.18326206380345],[-122.91077211119612,51.182939540933],[-122.90258027731858,51.18079192274414],[-122.89554181940201,51.177328601003886],[-122.89152701504685,51.17510795715073],[-122.8866013046547,51.1730086051871],[-122.8813946045614,51.170224455776385],[-122.8773686272663,51.16634886041285],[-122.87615790377538,51.164008607925176],[-122.8755106562543,51.16200969915388],[-122.86979455742154,51.16322559197802],[-122.86251969900046,51.16399007588501],[-122.85916070569941,51.164283013274336],[-122.8559527505998,51.16143247901001],[-122.85131533330053,51.160361188190144],[-122.8461211875149,51.15866021799481],[-122.84009828611681,51.15633141084787],[-122.83562905909062,51.15331511946225],[-122.83105842383347,51.15052382669076],[-122.8255858633882,51.14773500859345],[-122.82266343954983,51.14534302166333],[-122.81512297043008,51.1452448364981],[-122.81148047561207,51.14571030866479],[-122.80458406530462,51.146412637995454],[-122.79804533130591,51.147513971063425],[-122.79322696609789,51.149182878371654],[-122.78943797806303,51.153249586346966],[-122.78841851238815,51.15130348409453],[-122.78477578142888,51.14839902739957],[-122.78092317216087,51.14326014857831],[-122.77553264837377,51.13801475413773],[-122.77153738422398,51.13762178048563],[-122.76845724288994,51.13842832829588],[-122.76573514636503,51.13923270188955],[-122.75974491846051,51.14164736590877],[-122.75601372692698,51.142341057642405],[-122.75421038305204,51.14565550166009],[-122.75221822868976,51.14880607985904],[-122.7479781382969,51.154871683076124],[-122.74016508165127,51.158655017641514],[-122.73453235618875,51.15946550322991],[-122.72934272652483,51.158732048162605],[-122.72697775185873,51.15719229055955],[-122.7243314324434,51.15422596621024],[-122.72268404409132,51.15131556371121],[-122.72166932730002,51.14856901184736],[-122.71892711726863,51.14400497038018],[-122.7179212120814,51.1411445723864],[-122.71526706497588,51.13617569264165],[-122.71381053421764,51.13360542470033],[-122.70888946294008,51.13064526626222],[-122.69923353986623,51.12648288982566],[-122.69796012171514,51.12396939881102],[-122.6962254706705,51.11957565651345],[-122.69329049910183,51.11477531355584],[-122.68819860452516,51.11146415587918],[-122.68283139589455,51.109358599825335],[-122.67764558424393,51.10387684142185],[-122.67071955358307,51.09834052282772],[-122.6633475635964,51.09285958232891],[-122.65689615040448,51.09075814458836],[-122.65271895155898,51.09075762056401],[-122.64309488311108,51.09070926857649],[-122.63411056150736,51.090146643179665],[-122.62810216010679,51.08392416193689],[-122.6224636870278,51.08038430772428],[-122.61411836912345,51.07822118146577],[-122.61247913961718,51.080964602854806],[-122.61248884423352,51.086280689978224],[-122.60777101856874,51.08999427362531],[-122.60042145256445,51.09200406528107],[-122.59425124225076,51.09280411288906],[-122.58743823552723,51.09451919532845],[-122.57872473782606,51.098239109996186],[-122.57600135647544,51.101271562508494],[-122.57526820499571,51.1059566406868],[-122.57800054229607,51.10801499756058],[-122.58308409022777,51.110583399240994],[-122.5883600990048,51.11400792552271],[-122.59217170039928,51.1167524950465],[-122.59291190957296,51.12035236849101],[-122.59336398172064,51.127150184112864],[-122.59346632910217,51.133095267097005],[-122.59110444336345,51.140357885451806],[-122.59219492932559,51.142011026720375],[-122.59501026426966,51.14526676482059],[-122.59765352299388,51.148530140866676],[-122.59947799560354,51.15126650903453],[-122.59857010465241,51.1539535844339],[-122.59547862801051,51.159329638813034],[-122.5925792807528,51.16350024347859],[-122.59067176136773,51.16613288305565],[-122.58594938972621,51.17219132416688],[-122.57939927434289,51.17293664173573],[-122.57338986712841,51.17391541957693],[-122.56228591381256,51.17774363190497],[-122.55992763778546,51.180426647464394],[-122.55610291081953,51.185743915417206],[-122.55365463065411,51.18957454583412],[-122.55192445122279,51.192832162633124],[-122.5506376909531,51.19757567084036],[-122.54836682714262,51.2016919071808],[-122.5438163030341,51.20431820498586],[-122.53899107356095,51.20494446683022],[-122.53179875895765,51.2064898963089],[-122.52487856723228,51.207119152597265],[-122.51905207191932,51.20751825685317],[-122.51494754602034,51.206083821062954],[-122.50759086891225,51.20059826400439],[-122.50431358283127,51.1970519944147],[-122.50048594185397,51.197396278055976],[-122.49029265597403,51.19916283559818],[-122.48446616747334,51.20047359733543],[-122.48119369117285,51.20104520422999],[-122.47171707473743,51.20315661533988],[-122.46634347880422,51.205609262398475],[-122.46278263491558,51.207089844084976],[-122.45923898583167,51.20817254521872],[-122.45121467588721,51.21056660791135],[-122.4480228023082,51.211190936807114],[-122.4396399563307,51.21392517436137],[-122.43808855779707,51.21626891268227],[-122.43753477013085,51.21940927721908],[-122.43624238717197,51.22495156209024],[-122.43250325535098,51.22843512530242],[-122.43031588470059,51.22957610117728],[-122.41581006503883,51.23590313348321],[-122.39117069817073,51.24690286689373],[-122.36990960666981,51.255783593379455],[-122.36653226134902,51.25703685209779],[-122.36250910913368,51.2586310283421],[-122.35548591793712,51.26124522396721],[-122.3479927215999,51.26414831406005],[-122.34487435637546,51.26677225180464],[-122.34177792630767,51.267909736422574],[-122.33568023572809,51.26538579851172],[-122.3319542616369,51.26389076648897],[-122.32675953235379,51.26365352328019],[-122.31828114856437,51.26386419655524],[-122.312086173607,51.264253262066724],[-122.31059867772238,51.26744976185947],[-122.308401697302,51.26950393899086],[-122.30421657064545,51.26818007451042],[-122.30002693098979,51.266569360800936],[-122.29841290758971,51.26370966075552],[-122.29279212618724,51.25861283885363],[-122.2897764608687,51.25826217410776],[-122.28468313598654,51.25870780211904],[-122.27492711646471,51.25908612285839],[-122.26480190016429,51.2600919097353],[-122.26226685689029,51.25762252587447],[-122.26018631463997,51.25470683510872],[-122.25792399557614,51.25224579019432],[-122.25357582460698,51.24948966904223],[-122.24656534994921,51.248161947951004],[-122.23746461794218,51.24676417377108],[-122.2324545395627,51.24640730000344],[-122.21933290044159,51.24586051409547],[-122.21103855027835,51.24646364658424],[-122.2031974448451,51.24763934464566],[-122.19880712033282,51.24842779393202],[-122.19451551997471,51.25007064552477],[-122.19096152287044,51.251316238905474],[-122.18656309436837,51.25335861874409],[-122.18466990136321,51.25482694583358],[-122.18400155593199,51.25408236283749],[-122.18328353147874,51.253247886403315],[-122.18144262249685,51.25111180164555],[-122.17916796213842,51.249344201397896],[-122.17324470684116,51.24609326681938],[-122.16987365379623,51.24306226603301],[-122.16760008558721,51.23780789655003],[-122.16642327260574,51.234152737205655],[-122.16532239731757,51.230617564579155],[-122.16305079287642,51.22684535601189],[-122.16004788014708,51.2243939594232],[-122.15422838440348,51.22496121383772],[-122.15140420065119,51.22376365083619],[-122.14967642597904,51.220852495979294],[-122.1496670864904,51.217822355067334],[-122.15176155553347,51.21337150096527],[-122.15313306081777,51.21079748347758],[-122.15249302777944,51.20891404878899],[-122.15195137375409,51.20606352336105],[-122.14986678279203,51.198183978115466],[-122.14477455921694,51.193725988274416],[-122.14159133166814,51.191899919206755],[-122.13730985834991,51.18835989829592],[-122.13322574754842,51.1847022598355],[-122.13014041219613,51.18258864870767],[-122.1251288896536,51.18053127827481],[-122.11950108845771,51.17716448630118],[-122.1157728553807,51.176019575909656],[-122.1075788036333,51.17527851529753],[-122.0960395798113,51.174589130792846],[-122.08868011551687,51.172356569685505],[-122.08076909461721,51.170694964040344],[-122.07330607687844,51.16835153422724],[-122.07049106359557,51.166466384331464],[-122.06123098528334,51.16257975881871],[-122.05324692690651,51.15806258544744],[-122.0478899975213,51.153031647774895],[-122.0437226427172,51.14897676050155],[-122.03945635675778,51.14491481710129],[-122.03783003355242,51.13937696702392],[-122.04112156629732,51.134922414728074],[-122.04549156352121,51.13121825805472],[-122.04749388106214,51.12739267586427],[-122.04632927612167,51.12293832740225],[-122.03670034037891,51.12041929200425],[-122.03327115242455,51.11744405489664],[-122.03064563484565,51.112531615938316],[-122.02710217167956,51.109564475228055],[-122.0189396593329,51.10829879333536],[-122.01022872963217,51.105492198437155],[-122.00569686211568,51.10302993864934],[-121.99972818631892,51.10206206545997],[-121.99443255764636,51.101570819268325],[-121.98880469394538,51.101430577361974],[-121.9867984295714,51.10129443323607],[-121.98315447246809,51.10106274256119],[-121.97917791712851,51.09912837452106],[-121.97796046990234,51.09565688262554],[-121.9756250310232,51.0895182869044],[-121.97298313458793,51.086926522320006],[-121.96790026624231,51.08695136255805],[-121.96717820830614,51.08702272311236],[-121.96309373834976,51.087084811820084],[-121.95995104236471,51.085760756525126],[-121.95885776694512,51.08314719049617],[-121.9581616737703,51.07915728474438],[-121.9561425677409,51.07650028212393],[-121.95557623904712,51.07564804199231],[-121.95242398591071,51.071926085378536],[-121.95036376649949,51.06784311816712],[-121.95021843081203,51.066297755939324],[-121.94863894153846,51.063066172829224],[-121.94838684990064,51.06112348489076],[-121.94726636123318,51.05788085040046],[-121.94869169659039,51.05416727071185],[-121.94845959709205,51.05184867474672],[-121.94775318457565,51.0479874288918],[-121.94746253102456,51.04741090920934],[-121.94704468731061,51.04681800339177],[-121.94633414489562,51.04598520285392],[-121.94600889586032,51.04563171454185],[-121.9455429226435,51.0452534807445],[-121.94514009319373,51.04481006020094],[-121.94434293583762,51.04398705167617],[-121.94412687318686,51.04369089081136],[-121.9438069717985,51.0432791276334],[-121.94343885630916,51.04292577353812],[-121.94301875221129,51.04251544596751],[-121.94230650506331,51.0418596186066],[-121.94188852693665,51.04126948687643],[-121.94154522332377,51.040801225446636],[-121.9411138201546,51.04035844463869],[-121.94073369906013,51.03998047009745],[-121.94013207949091,51.039053175045495],[-121.93993197090936,51.03858276610837],[-121.93962104280263,51.03807350229738],[-121.93924048088942,51.03738746599639],[-121.9389677840589,51.03677277846951],[-121.9386299166742,51.03624567326009],[-121.93806131021223,51.03511438483852],[-121.93748902341588,51.03418026573852],[-121.93715610328607,51.033912463819156],[-121.93683462040161,51.03367599514532],[-121.93609525719619,51.033163035738674],[-121.93489627354218,51.03236137238278],[-121.93446810506467,51.03204121579542],[-121.93399300281972,51.031765453130774],[-121.93282305837673,51.03111602946266],[-121.93137861290887,51.03034254819471],[-121.93060723550613,51.02971202354904],[-121.93004936850323,51.02940401433649],[-121.92935760378569,51.029153543282845],[-121.92903327445464,51.028948990817064],[-121.92793392989994,51.02846676468887],[-121.92723677538308,51.02796313649641],[-121.92674030843598,51.027453277564625],[-121.92636548356464,51.027176057858945],[-121.92539312023632,51.026400478843385],[-121.9248931178357,51.025773567618245],[-121.92443925183986,51.025111217073274],[-121.92391240099138,51.02430962327055],[-121.92363842715108,51.02355599119494],[-121.92353021522581,51.0231771200162],[-121.92342287721911,51.0227887284884],[-121.92315143636723,51.02200763628667],[-121.9228815185908,51.02105402764307],[-121.9227474495296,51.02064555167442],[-121.92231520031427,51.019904147309035],[-121.9219797113515,51.01935457149158],[-121.92177923750833,51.01904711546394],[-121.92137811294896,51.01859015954922],[-121.92089549488703,51.01808695405074],[-121.92049173556369,51.017814836183526],[-121.9199094240535,51.01715228920227],[-121.91908935453695,51.01612190102708],[-121.91873585037591,51.01576952868668],[-121.91828059403049,51.015280235880006],[-121.91787357960122,51.01488824807062],[-121.91718990747246,51.014241120570404],[-121.91654784876505,51.013607858443116],[-121.91555795742855,51.012716860981726],[-121.91519705354644,51.01244571108781],[-121.91495799705223,51.01209243007594],[-121.91418502201627,51.011018167423934],[-121.91342234902132,51.010298988484855],[-121.91268023606065,51.009200541683825],[-121.91225092887419,51.008585673244504],[-121.91179649886054,51.007933352981205],[-121.91122318681145,51.00670892575971],[-121.9110064591445,51.00626874979115],[-121.91086106794616,51.00598518948756],[-121.9104738457031,51.00553486499252],[-121.91007995861463,51.00500166471077],[-121.90981082815806,51.00451009858112],[-121.90977195050554,51.00384478975567],[-121.90982940555982,51.00353038784706],[-121.90996924936819,51.00325215751576],[-121.91017400517326,51.00257828911848],[-121.91034206109444,51.00230390083273],[-121.91052342687648,51.00204010664144],[-121.9109277819393,51.00152585154091],[-121.91210916970935,51.00017191344924],[-121.91311204867154,50.995782038056745],[-121.91304987687923,50.991790733476265],[-121.91109165692671,50.98620861278771],[-121.91133102649214,50.98468993870348],[-121.91095300539698,50.98445243040201],[-121.91029812155155,50.98411995291889],[-121.91009395841154,50.98401075930826],[-121.90992504976599,50.98382865346199],[-121.90948038328067,50.98338408439224],[-121.90891482581237,50.98301211907056],[-121.90860129779792,50.98285003292445],[-121.90840244515987,50.98268313101958],[-121.90801979896045,50.98234088023076],[-121.90739935024347,50.98194498508902],[-121.90713161676867,50.98175083393625],[-121.90657881643793,50.98124046975287],[-121.90613680257026,50.980923030000824],[-121.90600046967197,50.98085284666423],[-121.90582129059902,50.980782791395434],[-121.90527757813732,50.98063984031426],[-121.90475391970051,50.98043409785921],[-121.90450724991243,50.98032165974704],[-121.90412116262877,50.98017265259645],[-121.9035733923247,50.98007396028778],[-121.90330615908083,50.98002991986397],[-121.90306754192888,50.979985232238846],[-121.90252065278436,50.97987700543161],[-121.90201898205352,50.979742884999865],[-121.90174009943736,50.97967030702748],[-121.90121425238141,50.97948863566107],[-121.90079559836084,50.97922824209132],[-121.90068547046445,50.97918374408361],[-121.9005112562488,50.979059892807875],[-121.9001753082327,50.978831749889835],[-121.89974754243613,50.97851535971132],[-121.8995712194209,50.978414474109755],[-121.89939701130461,50.978290621000376],[-121.89906850192082,50.97798179345179],[-121.89879072541711,50.97774227882741],[-121.8986605524758,50.97760540787394],[-121.89828627840386,50.97717347628636],[-121.89803817438793,50.976611799691135],[-121.89793038734683,50.97638692255993],[-121.89785718829641,50.97625157480786],[-121.8976202065656,50.97603435203555],[-121.89728914625395,50.97575353281773],[-121.89713160925065,50.97560385801772],[-121.8968223563578,50.97539635000945],[-121.8963692344655,50.975045852987144],[-121.89614928189863,50.974798891601424],[-121.8958956278861,50.974452870066905],[-121.89541398143058,50.97394728942727],[-121.89508429268055,50.97365189561009],[-121.89496162807072,50.973433782692354],[-121.8945762731926,50.97312285865426],[-121.89404908106631,50.97264708606317],[-121.8937243682013,50.972297900303175],[-121.8934462679455,50.97190769351989],[-121.89307454456193,50.9716040078528],[-121.89247606571573,50.97128246896522],[-121.89217850896364,50.971103482244615],[-121.89189254682655,50.97095359460557],[-121.89134188203884,50.970578138979704],[-121.89081149874622,50.97013765239799],[-121.89052387796762,50.969851086013875],[-121.88984213415566,50.96934939071486],[-121.88973369547944,50.9692869523103],[-121.88948142654577,50.96908151591025],[-121.8888584318984,50.968716888620136],[-121.88826432265789,50.96850341354246],[-121.88803209023033,50.96839033846495],[-121.88739323021007,50.96788851499314],[-121.8868027043195,50.967481772014494],[-121.88662774681151,50.96736686218169],[-121.88642195969169,50.9672766732702],[-121.88604349460692,50.96704692059042],[-121.88541145098871,50.9667808837837],[-121.88503087354651,50.966574103787245],[-121.88439516896888,50.96634783696771],[-121.88399670025001,50.96618030743926],[-121.88374581410775,50.966114885990855],[-121.88338842164823,50.965966293124985],[-121.88268875065991,50.96566008758182],[-121.88203103968235,50.965363296722934],[-121.88172320826094,50.965296338250255],[-121.88132144471028,50.965164657309124],[-121.88058283544814,50.964971136505866],[-121.87985617840975,50.96480278567484],[-121.87960359606092,50.964755848759246],[-121.8791877743802,50.96462195240296],[-121.87745401427638,50.96376839583782],[-121.873593288027,50.96106906690694],[-121.87117500738967,50.95897981398207],[-121.86979880650902,50.95796780437737],[-121.8694291722814,50.95779847188852],[-121.86819073786873,50.958841838227634],[-121.86659011110602,50.95994269431047],[-121.86382540257343,50.96159036052581],[-121.86354136483284,50.96142134963549],[-121.86323036386767,50.961389077522306],[-121.86200621753322,50.961661015219505],[-121.8607904518927,50.961996215362866],[-121.8592725368255,50.96251084211084],[-121.85825566823517,50.963009080579205],[-121.85671815808405,50.96388725587137],[-121.85547847875135,50.96447843863011],[-121.85401001408285,50.96522700836811],[-121.8527411747119,50.96597731649142],[-121.8510451312698,50.96702271690127],[-121.84995402908869,50.96785602632747],[-121.84893654570483,50.96851157882484],[-121.84760023622229,50.969064815947526],[-121.84632920744248,50.96952994475874],[-121.84480913717576,50.97052216851639],[-121.84337624141727,50.971497371810194],[-121.841971058013,50.972480888955474],[-121.84096925832188,50.97373063812845],[-121.84056727720268,50.97482496438231],[-121.84023756933615,50.975909589935256],[-121.83979585020866,50.97681747170807],[-121.8395495561206,50.97746723830264],[-121.83962188658616,50.978221582069104],[-121.83930046799924,50.978605454608754],[-121.83868723076037,50.979209008500696],[-121.83624970210883,50.983289547685644],[-121.8336401060426,50.987372650434565],[-121.82998792212105,50.98946727522235],[-121.82439299624369,50.99049503232222],[-121.81852397651275,50.99078819901062],[-121.81405703986468,50.98968736298602],[-121.80786379374625,50.988266091420506],[-121.80206065262614,50.987861464655204],[-121.79602388037655,50.9887223146393],[-121.7951384025614,50.989478497621924],[-121.79284405915328,50.99184322615537],[-121.78982402708596,50.99432686748948],[-121.78678952345102,50.99590304889067],[-121.7827382417009,50.997202034752014],[-121.7788975382458,50.998838812272275],[-121.77631340876388,50.99942472849545],[-121.77303052441302,51.00375843344189],[-121.77227917766498,51.0056523601396],[-121.77154334107493,51.00783358278299],[-121.77016133559084,51.00974647565459],[-121.76675955703016,51.011108734303775],[-121.76300378168568,51.01258461234618],[-121.76210362461764,51.01288348407989],[-121.75691148387624,51.01473224157925],[-121.75235986228735,51.01645376169837],[-121.7499434031459,51.01751378174162],[-121.74433186427196,51.02044863215185],[-121.73759470599252,51.02214412399099],[-121.73569997773241,51.02222739690607],[-121.7296346627611,51.0224265576504],[-121.71933626935518,51.023538040265734],[-121.71236664875589,51.02392109058709],[-121.7111049150623,51.024109069452365],[-121.70666815728588,51.0241656329887],[-121.70214784179522,51.0243470149781],[-121.69881218199261,51.024842323028786],[-121.69249937757023,51.0256709771918],[-121.68670938451942,51.02906686682533],[-121.68532278628504,51.03068685360794],[-121.68260588390662,51.03363826034474],[-121.67869327032113,51.03608878972835],[-121.6757725186332,51.03818716658294],[-121.67350337993021,51.04078733605419],[-121.67135057797255,51.044246542556095],[-121.66926776722993,51.04713042596393],[-121.66788069526312,51.04903637563244],[-121.66473644563781,51.052679326507096],[-121.66091867789832,51.05530274094617],[-121.65783076852762,51.057625878603154],[-121.6521099671459,51.06038915835702],[-121.64627863102476,51.06252043039969],[-121.64127172245969,51.06470136598947],[-121.6388004069891,51.0668477616423],[-121.6365853967441,51.06842157256311],[-121.63274925665718,51.07047215550663],[-121.63046435038424,51.07289831114781],[-121.62689005179992,51.07460804435208],[-121.62432237229251,51.076411932812334],[-121.61958256148056,51.07846910710551],[-121.61554387376071,51.08023407805941],[-121.61249236189397,51.081131073923565],[-121.6075077048456,51.08130988804006],[-121.60030348366406,51.0829422591976],[-121.59645282992904,51.08481963857312],[-121.59134911561605,51.086769805847176],[-121.5887296986077,51.08748633065119],[-121.58938341175443,51.090851717849944],[-121.58500739995404,51.0932490249073],[-121.57942030098866,51.09457361988398],[-121.57114046737121,51.09690695157427],[-121.56892156672646,51.098479379309026],[-121.56336525574272,51.101060505402906],[-121.55970927325096,51.1031068756624],[-121.55334611933041,51.10586711559781],[-121.54553923207563,51.10858958089504],[-121.54188127444004,51.110926018523],[-121.5341063875127,51.11787101579173],[-121.52223650300705,51.125044094639485],[-121.51095823557495,51.13100487461105],[-121.50186146969406,51.13351341896393],[-121.49604165928908,51.1335220481169],[-121.49491767217093,51.13513466365786],[-121.49557587833544,51.13924023833981],[-121.49726975680926,51.14133491759413],[-121.49937277045247,51.144626662580066],[-121.50066060708116,51.1483254699223],[-121.50140518507361,51.15540362950908],[-121.50446622352122,51.16976694339044],[-121.50806581894857,51.17812754538012],[-121.50923829655444,51.180857233409306],[-121.51248566873903,51.1829352137787],[-121.51975533760827,51.18610569728407],[-121.52481565299725,51.190843747471774],[-121.53318898409859,51.19732348313394],[-121.53647808379631,51.2038538555926],[-121.53322614170598,51.207775286429126],[-121.52305138286849,51.21469984465456],[-121.51319213889192,51.222871836075385],[-121.50196268465528,51.23134546011741],[-121.49098323257772,51.239013961811054],[-121.4812643197345,51.24597914011953],[-121.46791683466226,51.25733167575076],[-121.45725559304367,51.26373767436741],[-121.4467681387265,51.26968143423264],[-121.43242971901226,51.28183634321777],[-121.42284616229708,51.291199126546594],[-121.41527040290912,51.294481311272136],[-121.41110569957354,51.29538279825927],[-121.39894134989586,51.29739645381357],[-121.39502536081338,51.30115177613354],[-121.39471822960711,51.30478975643286],[-121.39474308463474,51.30593207221761],[-121.39246688842222,51.306233471139436],[-121.38918008876884,51.30642839723777],[-121.38463021398644,51.30645418476463],[-121.3821667701049,51.306756166769276],[-121.37825773526342,51.30780862936692],[-121.37508068892124,51.308740224939015],[-121.370991042137,51.308765746348975],[-121.36724573929364,51.308389167388846],[-121.36623764962734,51.308396216837096],[-121.3618794377684,51.31002063938538],[-121.35698577603317,51.312217758207474],[-121.35392727702546,51.31475152513109],[-121.34776023527353,51.31673010387151],[-121.3436963086356,51.31978112405626],[-121.34363416438025,51.322009518568336],[-121.34267797745044,51.324524951977466],[-121.34059303931653,51.326138739614706],[-121.33807208779766,51.328608230564726],[-121.33600706687739,51.33084796725989],[-121.33338954568303,51.33286359560313],[-121.33104369266685,51.334077954216085],[-121.32604186761087,51.335079140862646],[-121.32323154595011,51.336460825375426],[-121.32279757563762,51.33851866917275],[-121.32237548428674,51.34046399471463],[-121.32028816134464,51.34167814862595],[-121.31757929663027,51.34386284629166],[-121.31377157579998,51.345541516918125],[-121.31058114127906,51.34601659178607],[-121.30694399382267,51.34649273177435],[-121.30220136427644,51.347204567938626],[-121.28872723128467,51.3499612240278],[-121.28627228724952,51.35082721075777],[-121.28109509155954,51.35222684179409],[-121.27234216509821,51.35324645377222],[-121.26714044085905,51.35338949169777],[-121.2599208457083,51.35313801299874],[-121.25316823764626,51.3524294203366],[-121.2507871598113,51.35193089368543],[-121.24794322926725,51.351316182749486],[-121.24048137155363,51.352780010597684],[-121.23593707137707,51.35457199140796],[-121.23211691305566,51.35619244235008],[-121.22839378997152,51.35757901646542],[-121.22340136652936,51.35937468819862],[-121.2220402204597,51.360234889005625],[-121.21914008991138,51.362132163948495],[-121.21403767690987,51.36267454595807],[-121.20874622274819,51.36309849626546],[-121.20391349509752,51.363808726463226],[-121.19870638362475,51.36411714303784],[-121.18492877605546,51.36412133788748],[-121.17541727522199,51.363593852806986],[-121.17231767006,51.36360455349191],[-121.16856578929807,51.36259655538142],[-121.15858940763428,51.360924297783484],[-121.1540245353567,51.3599754907686],[-121.15153720740051,51.35861221894105],[-121.14674716768806,51.354866027034525],[-121.13897655003818,51.353072791791014],[-121.13167102646261,51.35281561181818],[-121.13120954194756,51.35281937991887],[-121.12829347025043,51.35300037417395],[-121.12419333999891,51.35398673538686],[-121.11725873340201,51.35350110986684],[-121.11130434978082,51.35249224516413],[-121.10491267205633,51.352180563229496],[-121.09880679295628,51.353058461642675],[-121.09415662246363,51.35393052811813],[-121.08677372414857,51.35527261462865],[-121.08049114785919,51.35643487174608],[-121.07356539076923,51.35754630925056],[-121.06800278737849,51.35922286359155],[-121.06208754016254,51.36147088762303],[-121.06036062647935,51.362220542778545],[-121.05545783741744,51.36520131273361],[-121.04964672247496,51.369847843911224],[-121.04539220327017,51.37345998715653],[-121.04303162212686,51.375351399241914],[-121.03822031893434,51.37890461952925],[-121.03366640155149,51.38029314275427],[-121.02727444693757,51.38173915088153],[-121.02189638842114,51.3830134309668],[-121.01953231437166,51.38415572315382],[-121.01433125576553,51.38526255213327],[-121.00439401419855,51.38705679511014],[-120.99992948727528,51.38827476440624],[-120.99692279892155,51.38947992286051],[-120.99418896518557,51.39120207832316],[-120.98991091410745,51.39343796572325],[-120.98681066656476,51.39419163727506],[-120.98316715208507,51.39642275057585],[-120.97933631061717,51.39763540529486],[-120.97396130260731,51.399990283595905],[-120.97122782827402,51.40182162295226],[-120.96657173834194,51.40229425453044],[-120.96310867483959,51.402299517444625],[-120.960821012084,51.402876052270315],[-120.95999540587685,51.40328306874693],[-120.95581075303754,51.40455010043803],[-120.95205907285107,51.40455400080064],[-120.94721073342984,51.40342624751812],[-120.94509532327476,51.40149170121699],[-120.94225130240473,51.400125233790476],[-120.93932183109688,51.39950456802496],[-120.9349428535601,51.39894444405433],[-120.9292727940098,51.39907438417383],[-120.92480512681581,51.399536304011555],[-120.91768115332312,51.40063820787361],[-120.91083623447754,51.40219371408719],[-120.90645591614584,51.40414198387652],[-120.90280987548772,51.40535203596405],[-120.89668952091937,51.40661986705435],[-120.89230702108586,51.40783018581483],[-120.88912068657496,51.4095493045733],[-120.88683849999536,51.41006559092779],[-120.87998324139886,51.41081683207095],[-120.87441368961342,51.41180243394979],[-120.869666766334,51.41414900787715],[-120.86530389672342,51.41814951225785],[-120.86265700913614,51.419930075766814],[-120.85334391221423,51.424280521305896],[-120.84676404876757,51.42697101032608],[-120.84403520091357,51.42857702960513],[-120.84148655638869,51.43086162986173],[-120.83910208507358,51.432235733601175],[-120.83683752987687,51.43566482294312],[-120.83354647466592,51.43823942926221],[-120.8323603528857,51.439610073665946],[-120.82917453003543,51.44263650744486],[-120.82817582951584,51.445606267233494],[-120.82846524251447,51.44965952506176],[-120.82773321040929,51.45183318754923],[-120.8239901080187,51.452462813787264],[-120.82014727864293,51.453325112138565],[-120.81722584145614,51.45458092410387],[-120.81410752872632,51.454072815551655],[-120.81109731823467,51.453506010036946],[-120.8054221537443,51.45385540058354],[-120.80066178302918,51.454775725189435],[-120.7974653150413,51.45615231697059],[-120.7923549949234,51.45758441896155],[-120.78549406306563,51.45964342612359],[-120.78101451581792,51.461475826692414],[-120.77295889039566,51.46336385758021],[-120.76692944201561,51.46291042349161],[-120.7631648053314,51.46297520949512],[-120.75795656582936,51.46217895757108],[-120.7519995877525,51.460756090230255],[-120.74971501482509,51.46052720520926],[-120.74569441791094,51.461042482663416],[-120.7439552710701,51.462417087490294],[-120.74076034924126,51.46424336998058],[-120.73992388640819,51.464471213708734],[-120.73709148780912,51.46555934629952],[-120.73188374487877,51.466932021334394],[-120.72784951656021,51.46876005819285],[-120.72547658081197,51.470471140978646],[-120.72283078084382,51.47578127856134],[-120.72236790780867,51.48012188643056],[-120.7200818148896,51.48086155083558],[-120.71550551747981,51.4818916882177],[-120.70863656795093,51.482749544729835],[-120.69884310007765,51.48303901295548],[-120.69307942961942,51.48383787412372],[-120.68566281161058,51.48515252867596],[-120.68237260900766,51.48498100416701],[-120.67852482526436,51.484638105892124],[-120.67468137101265,51.48509574546683],[-120.67082676989243,51.486241259575664],[-120.66662657071466,51.48749248556274],[-120.66451034167589,51.4892037904649],[-120.6602126464698,51.494112237438166],[-120.65608997948604,51.49947653892675],[-120.65096007535831,51.501816412149516],[-120.64995023577481,51.502270040946804],[-120.64435753146988,51.50329740194145],[-120.64087762791843,51.50455247619428],[-120.63831197497674,51.50495170967057],[-120.631168161691,51.50540791519946],[-120.62320294765165,51.50489041986656],[-120.62045497272982,51.50488628153334],[-120.6114715479663,51.50642194688169],[-120.6033239920769,51.50727095842774],[-120.59956385647115,51.50584784290313],[-120.59864927397851,51.50481425205494],[-120.59471550932494,51.50127648448422],[-120.58859769236412,51.49938909788402],[-120.58154255946117,51.49818682682708],[-120.5733950989554,51.49669674599667],[-120.56543143478433,51.49348941772516],[-120.56187809600704,51.49017835142679],[-120.56161146428654,51.48812452219791],[-120.56115895821884,51.48441677711876],[-120.55989551129508,51.48025214268191],[-120.55687506925395,51.47813767125371],[-120.55773533570282,51.67305372090504],[-120.55912583551252,51.87575393809824],[-120.55920031182822,51.8843736757376],[-120.56030957325369,51.88371437543922],[-120.5605701416977,51.88358502710081],[-120.56132421376391,51.88327215032187],[-120.56205023164236,51.88306703837676],[-120.56244671411767,51.882944703621966],[-120.56272198661036,51.882828978788055],[-120.56318751557885,51.88253333252663],[-120.56334624635295,51.88245988252398],[-120.56371273556398,51.88225625432268],[-120.56391114623827,51.88215713446379],[-120.56471203511622,51.88174635596129],[-120.5650414804683,51.88153253549671],[-120.56536018308434,51.88134632334164],[-120.56596376012827,51.88108420017541],[-120.56677158911879,51.880822204608414],[-120.56716232097408,51.88073107512671],[-120.56760319531811,51.88069124390873],[-120.56803060485171,51.88056922404844],[-120.56851205422957,51.88040871589818],[-120.56879349649407,51.88024322358228],[-120.5691151656513,51.87998910002527],[-120.56966429257773,51.879578161049146],[-120.5704411642865,51.87919826777003],[-120.57083926110742,51.879062476967675],[-120.57108283315168,51.878995854122905],[-120.5712123889361,51.87892213647751],[-120.57159380131546,51.8787006389987],[-120.57177669266744,51.87856477070088],[-120.57192241312515,51.8784198346567],[-120.5720898778866,51.87820282034475],[-120.57226583964817,51.8779322206986],[-120.57241844284538,51.877688074892134],[-120.57260018337179,51.877385688887],[-120.57273835131485,51.87715491363388],[-120.57279934139369,51.87701665213301],[-120.57286744241668,51.87686522154665],[-120.57302098969869,51.876481651494316],[-120.57323501690436,51.87586136669617],[-120.57364676091855,51.87546921451486],[-120.57389892357995,51.87524552935564],[-120.5740743172184,51.87503788609573],[-120.57431855774287,51.874628799962935],[-120.574560781948,51.87426516553784],[-120.57476076365907,51.87397714643854],[-120.57487597207191,51.873754837414154],[-120.57510451121215,51.87335457104699],[-120.57536296395907,51.87297764890532],[-120.57563882724763,51.87253406603263],[-120.57592737282931,51.87179808249343],[-120.57610998998801,51.87129778694622],[-120.57621072538764,51.87097188164477],[-120.57597374313008,51.870971340637254],[-120.57568398110735,51.87096999135197],[-120.57568331601274,51.869656822049365],[-120.5756919848216,51.86888396369627],[-120.57569841660062,51.863748654505244],[-120.58741836708133,51.863742470345464],[-120.58842497494284,51.86374055060043],[-120.59907466845488,51.86373377033149],[-120.599998880954,51.863734611748995],[-120.60791070078895,51.86363500307547],[-120.61175570394924,51.86366356334524],[-120.62223845725313,51.8637367559736],[-120.62222336309225,51.870966702447966],[-120.62939392956056,51.870972461569174],[-120.62912749128421,51.87109268174677],[-120.62885184379418,51.8712580236551],[-120.62861589873941,51.871397100635065],[-120.62841745545607,51.871483393178345],[-120.62779161250616,51.87181225976112],[-120.62750980764474,51.871968303564536],[-120.62726574775319,51.87214355416066],[-120.6270137998987,51.872264449546364],[-120.62668550011192,51.87238345453462],[-120.62634396999394,51.87256537813669],[-120.62613645219722,51.87265124142176],[-120.62599196106109,51.87268438479473],[-120.62566365533195,51.8728033868155],[-120.62547362436936,51.8728805050878],[-120.62509230056143,51.87313366278215],[-120.625015015151,51.87321326315389],[-120.62479487892273,51.87325354478245],[-120.62451896409465,51.87334688500509],[-120.62417654989866,51.87340279656116],[-120.62375629537806,51.87343930839517],[-120.62348881319257,51.873479048120736],[-120.62322967491215,51.873554610988265],[-120.62281800832562,51.87365450501977],[-120.62263489429547,51.873749380762504],[-120.62205515959681,51.874043826483394],[-120.62200961588475,51.87408780056059],[-120.62179553931364,51.87418234620936],[-120.62154427347386,51.87431226014992],[-120.62127739794165,51.874450438188866],[-120.62101659901607,51.8745984653374],[-120.62070386105964,51.87475360842468],[-120.62043084645353,51.874838069231814],[-120.62033022364733,51.874944130325666],[-120.62022328821337,51.875130863455816],[-120.62005568814534,51.87526245408281],[-120.61988131383316,51.87533074380597],[-120.61966745586118,51.875497276217054],[-120.61945351272,51.87570879182502],[-120.61922436869938,51.8758661749175],[-120.6189799271319,51.876058820119496],[-120.61882728913714,51.876172559092815],[-120.61854511216468,51.87630157308703],[-120.61825640463633,51.8763948564547],[-120.61767503143845,51.87659867239459],[-120.61733154919733,51.87678103793899],[-120.617096641551,51.876911153894106],[-120.61679886137027,51.877004007592284],[-120.61642503332169,51.877121962092254],[-120.61621857960435,51.877198861504624],[-120.61611210435835,51.87732263944411],[-120.6160206005749,51.87742855898241],[-120.6157224169975,51.87753938622108],[-120.6154246296092,51.87763223630207],[-120.61514276132284,51.87774382896517],[-120.61471547038116,51.878013915103956],[-120.61471456752858,51.87887706893617],[-120.6146614679392,51.878849271939345],[-120.61460136011503,51.878789645132045],[-120.61456354569086,51.8787119554552],[-120.61454016820159,51.87863550223216],[-120.61453214186407,51.87856764344439],[-120.61459322360471,51.87850134164352],[-120.61465430405427,51.87843504875181],[-120.61464620902939,51.87836774458488],[-120.61461635506512,51.878299426606354],[-120.61457918003909,51.87823132232046],[-120.61454019197996,51.8781631327877],[-120.61448607751547,51.87809928879298],[-120.61444165028955,51.87803084352368],[-120.61438815750091,51.87796197206745],[-120.61432623702818,51.877902268781256],[-120.61425045056592,51.877851469001314],[-120.61416615145268,51.87779577020375],[-120.61408855223077,51.87774488507543],[-120.6140055138042,51.87769374417471],[-120.61393035059872,51.8776379078215],[-120.61385275193223,51.877587022526605],[-120.61378539335992,51.877527063203544],[-120.61370834794114,51.877471705024405],[-120.61364043796296,51.87741620944598],[-120.61357907218023,51.87735203294633],[-120.61350983267592,51.8772925428278],[-120.61345704956112,51.877232701701864],[-120.61339568541169,51.87716851614806],[-120.61334944773981,51.877099985150345],[-120.61330440072759,51.87703657573153],[-120.6132654157264,51.87696838569317],[-120.61323611890832,51.87689558554347],[-120.61322802524924,51.8768282901298],[-120.61323512857858,51.876756076801584],[-120.61325122764211,51.876684853295465],[-120.61327471721083,51.87661285259062],[-120.61328175076075,51.87654120281631],[-120.61325057145856,51.8764688809625],[-120.6132279732697,51.87640090351197],[-120.61330307417693,51.87633920244017],[-120.61335028771668,51.87628181355377],[-120.6133202142971,51.87620054613293],[-120.6132499408149,51.87614943779505],[-120.61314372983198,51.876138262313205],[-120.61302869354928,51.87615422229364],[-120.61289915267788,51.87616950010467],[-120.61278529181635,51.87617595070515],[-120.61267782079616,51.87616021675189],[-120.61257981512688,51.87612692367566],[-120.61247928836322,51.87608452337183],[-120.61238844975522,51.876037512952415],[-120.61229754276992,51.87599105708394],[-120.61220489149977,51.87594396124889],[-120.6121218587048,51.87589281890342],[-120.61203882610437,51.87584167649553],[-120.61195342761279,51.87579492153287],[-120.61187094844384,51.875739306219394],[-120.61179335555194,51.87568841944614],[-120.61171819752164,51.8756325904902],[-120.61164841021098,51.875577571936795],[-120.61157979891375,51.87551304421073],[-120.61151969878499,51.87545342455798],[-120.61144998169976,51.875397842305006],[-120.61138256122106,51.87533843607943],[-120.6113050381952,51.87528699433333],[-120.61121413392532,51.87524053757564],[-120.61113055051175,51.8751938672593],[-120.61103065012433,51.87514642930332],[-120.61093138700139,51.87510858567085],[-120.61083157201084,51.8750752057827],[-120.6107257638742,51.87504605165524],[-120.61061940381816,51.87502136126001],[-120.61051248959835,51.875001152486966],[-120.61039699502734,51.87497659898093],[-120.61028283009622,51.874956039861516],[-120.61016804235562,51.87494051697196],[-120.61006238832545,51.874924865852634],[-120.60994822368717,51.87490430639942],[-120.60983398944741,51.87488431040174],[-120.6097174576561,51.8748681471314],[-120.60961235833719,51.874848013878776],[-120.6094968646775,51.87482345946362],[-120.60939121117116,51.874807807724764],[-120.6092757874582,51.87478268951704],[-120.60916155384459,51.87476269284795],[-120.60905464093297,51.874742482712215],[-120.60894047724608,51.87472192225339],[-120.60883411788255,51.874697239142186],[-120.60871933133741,51.87468171480037],[-120.60860516796734,51.87466115400687],[-120.60849770218226,51.87464541611851],[-120.60849695105769,51.87606643748543],[-120.60849788943656,51.87630941714006],[-120.60849785264111,51.876412887916985],[-120.60798672141823,51.87640232835651],[-120.60765958011851,51.8763638786135],[-120.60734684895874,51.876371085332515],[-120.60665878600496,51.87647872475947],[-120.60593418300546,51.8765132165485],[-120.60534742943956,51.87646534346292],[-120.60450004935754,51.876210051887114],[-120.60357022754232,51.87584009088769],[-120.6028441017538,51.87547466161941],[-120.60216445940712,51.87514627433937],[-120.60179877056692,51.875021637543796],[-120.6013953256222,51.87493682550571],[-120.60127998697024,51.874925766459405],[-120.60024279482619,51.87476047883551],[-120.59999953182633,51.8746927764397],[-120.59949543269161,51.87455204267922],[-120.59886871765592,51.874179457732005],[-120.59828149102138,51.87354722976134],[-120.5975723315429,51.87338388699539],[-120.5972587808184,51.87310366573234],[-120.596641343666,51.8730683527029],[-120.59648883038618,51.87303360749181],[-120.59643619796545,51.87304630396675],[-120.59539740470744,51.87289439042946],[-120.59485635025572,51.87269902889369],[-120.59465871636282,51.87264583909113],[-120.59429825172528,51.87255290586494],[-120.59382626288001,51.87240353770645],[-120.59308600031571,51.87206492309468],[-120.59262097731073,51.87166843876211],[-120.59193371109001,51.871079253787585],[-120.59175796197533,51.87042368002148],[-120.59174295857602,51.86994214602677],[-120.59162171900569,51.869831821789575],[-120.59136873044572,51.86975464183224],[-120.59105741325816,51.869721387624516],[-120.59078896144254,51.86966597067964],[-120.59030873284738,51.86953924897719],[-120.58972221981969,51.869225865326435],[-120.5896602924558,51.868946256282335],[-120.5896520939985,51.868747916260475],[-120.58946273504266,51.868613568477805],[-120.58891280641707,51.868490295994405],[-120.58869836073364,51.86849928531033],[-120.58803583129537,51.868489919417634],[-120.58740947969865,51.868468195617325],[-120.58616687707618,51.86840215349877],[-120.58605255281093,51.86842711760085],[-120.5857080237346,51.8684558214831],[-120.58557849615157,51.86847106856453],[-120.58530501483209,51.86851494403328],[-120.58478528582457,51.86854491842571],[-120.58445769389377,51.86856936257445],[-120.58422829150636,51.86865467650789],[-120.58400671893504,51.86879435670237],[-120.58393033288328,51.869012876111555],[-120.58382301476168,51.86928955293335],[-120.58380808192203,51.86958577768279],[-120.58399145885126,51.86978283775182],[-120.5845497353731,51.87001506083698],[-120.58452553028998,51.8704593120793],[-120.58427362733106,51.87093103876482],[-120.5840378820694,51.87121401541161],[-120.58385559037666,51.87144833913862],[-120.5835032826738,51.8717741579735],[-120.58293870055986,51.872193980078734],[-120.58284108228257,51.872524535043965],[-120.58314552614006,51.87293596381187],[-120.58319859716698,51.87330120501676],[-120.58310600610763,51.873649993381605],[-120.58265624745097,51.874099421635144],[-120.58229063879546,51.874370630117625],[-120.5818096626914,51.874733666119546],[-120.58120699176027,51.87506338343006],[-120.58066664162858,51.875375809885504],[-120.58027601186915,51.875745363713676],[-120.58017739173673,51.87587847363218],[-120.58005592129356,51.8760779955573],[-120.57993382442916,51.876282544546534],[-120.57986463726584,51.876442915701695],[-120.57976518844008,51.876611986655206],[-120.57952101953137,51.876903545761444],[-120.57942246347316,51.87703610028914],[-120.57923183140876,51.877293084728414],[-120.57899492586051,51.87764347282921],[-120.57885032922223,51.87795549764825],[-120.57873626218536,51.87822734277103],[-120.57865995771195,51.878400882303666],[-120.57850641751169,51.878667485083604],[-120.57832973890416,51.878988113721235],[-120.57820853947655,51.87921463141845],[-120.57804070536939,51.87950811771145],[-120.57784294519041,51.87977825965504],[-120.57766755043203,51.87998590779567],[-120.57741534235309,51.880327137832964],[-120.57707924550348,51.88069757195153],[-120.57670581146856,51.88098694854316],[-120.5761635573186,51.881357753264936],[-120.5757743352308,51.881583394613166],[-120.5753178840244,51.88182159803956],[-120.57507361650094,51.88193768560869],[-120.57442462455617,51.88225731491808],[-120.57368497870323,51.882660368086],[-120.57322593039451,51.88293387477189],[-120.57289093286677,51.88313395721907],[-120.57243285808276,51.88344348981922],[-120.57200622004832,51.88369096687666],[-120.57188417877427,51.88373354903553],[-120.57154190721535,51.88387479697713],[-120.57118268613269,51.884020306736055],[-120.57064108872538,51.88418022637702],[-120.5700383870843,51.884288884092996],[-120.56945046488933,51.88436674651274],[-120.5691062927688,51.88444996898532],[-120.56884002324209,51.88455207162153],[-120.56846565418635,51.884701912303036],[-120.56838168552902,51.884731674120644],[-120.56753482107734,51.885262337374904],[-120.56709258600749,51.88553211118353],[-120.5667279005063,51.88579432227951],[-120.56609267106174,51.88616348340173],[-120.56549188495602,51.88646116664125],[-120.56502598091335,51.88661340434015],[-120.56443843626167,51.88673175154856],[-120.56394930108199,51.88686544510803],[-120.56350660956254,51.88709470305792],[-120.56302708701877,51.88734132359522],[-120.56249189870675,51.887595432578806],[-120.56201927662585,51.88774284122163],[-120.56163787979526,51.887919322030534],[-120.56131792729667,51.88811502232102],[-120.56069999961424,51.888344951247845],[-120.55922880202529,51.888717134259544],[-120.5592969013895,51.91598113092819],[-120.55847653054127,51.91611878412022],[-120.5580290718513,51.916193717209076],[-120.55758217187058,51.91626416724991],[-120.55713415097759,51.91634356919914],[-120.5566872480162,51.91641401574971],[-120.55622575612392,51.916484334883],[-120.55577828981757,51.91655925918184],[-120.55533124261564,51.91663081853081],[-120.55488377327006,51.91670573933618],[-120.5544364433706,51.91677953136457],[-120.55398939059077,51.91685109442326],[-120.55352740067622,51.916925311512166],[-120.55307985582098,51.91700077984175],[-120.55263293845941,51.917071219525965],[-120.5521853211576,51.91714723893005],[-120.55173840085081,51.91721767512553],[-120.55127654317066,51.917290765059015],[-120.55082892013223,51.91736678810859],[-120.55038199650535,51.917437210069764],[-120.54993444095592,51.91751266611307],[-120.54948695329497,51.91758756584125],[-120.54903946521722,51.91766245487719],[-120.54859239453444,51.91773399688039],[-120.54813052611574,51.91780707413412],[-120.54768345245984,51.91787861259142],[-120.54723539808883,51.91795796688256],[-120.54678783175287,51.9180334106342],[-120.54634089365102,51.91810382577918],[-120.54589325478763,51.91817982060082],[-120.54544519294483,51.91825917683428],[-120.54498331369243,51.91833224140289],[-120.54453566899853,51.91840823986457],[-120.5440881640009,51.918483109562324],[-120.54364051619893,51.91855910452632],[-120.54319244748268,51.91863844300387],[-120.54274486717172,51.918713870961305],[-120.54229728531271,51.91878929717035],[-120.54184970190569,51.918864721630776],[-120.54140218649259,51.918939589781466],[-120.54095354892759,51.919023391767354],[-120.54050589011932,51.91909937448271],[-120.54005837111393,51.91917422843964],[-120.53961084945043,51.91924908959311],[-120.53916276631657,51.91932841230786],[-120.53871510125812,51.91940438802571],[-120.53826645374956,51.919488179485235],[-120.53781885620083,51.91956358819727],[-120.53737125710435,51.91963899516069],[-120.53692309516924,51.91971887261669],[-120.53647556253645,51.91979372152275],[-120.53602676637452,51.91987862226794],[-120.53557923056435,51.91995346767231],[-120.5351315539715,51.92002942044204],[-120.53468345355219,51.92010873457851],[-120.53423591419886,51.92018356579119],[-120.53378767016228,51.920263994479974],[-120.53333956601251,51.92034329441479],[-120.53289145910982,51.920422601540814],[-120.53244391346138,51.92049742575307],[-120.5319956628947,51.92057784742899],[-120.53154811411646,51.92065266814197],[-120.53109986030252,51.920733086312225],[-120.53065174644648,51.92081237573218],[-120.53020356014977,51.92089222689668],[-120.52975593425397,51.92096760410609],[-120.52930774472203,51.92104745176555],[-120.52885962325387,51.92112674311891],[-120.52841136073496,51.92120714182313],[-120.52797775416651,51.92128712242802],[-120.52753005064899,51.92136304549175],[-120.52708192270642,51.921442329890176],[-120.5266343566285,51.92151713140724],[-120.52618608487039,51.92159753034708],[-120.5257379532003,51.9216768005434],[-120.52528981877617,51.92175607793089],[-120.52484224640502,51.921830872446904],[-120.52439453072257,51.92190679220184],[-120.5239463926186,51.92198605538961],[-120.52349818198581,51.92206588031715],[-120.52304996971232,51.9221457034907],[-120.52260231858988,51.922221052748995],[-120.52215473571263,51.92229584571064],[-120.52170644881915,51.92237621817519],[-120.52125886281316,51.92245100763721],[-120.52081057267384,51.922531376595785],[-120.52036242051285,51.92261063470682],[-120.51991483092247,51.922685409973894],[-120.51946723867108,51.92276019243692],[-120.51901908284393,51.92283943634868],[-120.51900407096376,51.92284266005497],[-120.51855626489417,51.92291911154001],[-120.51812318762315,51.92299457375417],[-120.51767551927657,51.92306990376267],[-120.51721333076574,51.92314453790657],[-120.51677961454224,51.92322503066157],[-120.51631749272207,51.92329910664818],[-120.51586918476,51.923379456269146],[-120.51542157844898,51.9234542229279],[-120.51497340813953,51.92353345101294],[-120.51452565780286,51.92360933220146],[-120.51407804795663,51.92368408466764],[-120.51362987171684,51.92376331644094],[-120.51318225875477,51.923838065407644],[-120.51273400939078,51.92391784821772],[-120.51228632225926,51.923993157169804],[-120.51183863358156,51.92406846437276],[-120.51139044932329,51.92414768738513],[-120.51094268757464,51.924223545627676],[-120.51049506415524,51.924298293041026],[-120.51004687622257,51.92437750185315],[-120.50959910864907,51.92445336378921],[-120.50915105854573,51.92453145107447],[-120.50870328783327,51.924607309509724],[-120.50825509347061,51.92468651131201],[-120.50780731960762,51.92476236624566],[-120.50735968641283,51.92483709246639],[-120.50691141612964,51.92491685249357],[-120.50646314420675,51.924996610766556],[-120.50601543517368,51.92507189521646],[-120.50556779460229,51.925146623380954],[-120.50511944784698,51.92522693093246],[-120.50467180414891,51.925301655596535],[-120.50422359532907,51.925380841626705],[-120.50377524256093,51.92546115286144],[-120.5033277364878,51.925534745316405],[-120.5028799453456,51.925610580993634],[-120.50243173009714,51.92568976001362],[-120.50198344203714,51.925769500757646],[-120.50153515233772,51.92584923974731],[-120.50108742604485,51.925924504941484],[-120.5006396982065,51.92599976838622],[-120.50019140368302,51.92607950211784],[-120.4997431776034,51.92615867956303],[-120.4992948097182,51.92623896431814],[-120.49884714565242,51.92631366622643],[-120.498398915856,51.926392829468185],[-120.49795110733243,51.926468645882395],[-120.49750287431647,51.926547805618384],[-120.49705463854232,51.92662697254475],[-120.49660640227172,51.926706128773155],[-120.4961585874146,51.9267819381816],[-120.49571034792469,51.926861090904325],[-120.49526252991855,51.926936896810794],[-120.49481372150606,51.92702051803384],[-120.49436597158866,51.92709575696332],[-120.49391772448779,51.92717491161628],[-120.49346990127455,51.92725070157245],[-120.49302165095453,51.92732985271954],[-120.4925738245928,51.927405639173664],[-120.4921250050685,51.927489258805835],[-120.4916773170195,51.92756392375813],[-120.49122891870643,51.927644185888084],[-120.49078122753262,51.92771884733954],[-120.49033353369347,51.92779351598599],[-120.48988470701376,51.92787711789646],[-120.48943686844788,51.927952901034075],[-120.48898860472264,51.928032027457654],[-120.48854083437004,51.928107243624666],[-120.48809249606495,51.928186930010526],[-120.4876447225761,51.92826214267589],[-120.48719645128715,51.92834127103157],[-120.48674803786723,51.92842150667959],[-120.48630032990862,51.928496159568276],[-120.48585191324712,51.92857639170888],[-120.48540420216418,51.928651041096444],[-120.48495592394535,51.92873015174193],[-120.48450820974992,51.92880479762891],[-120.48405992832494,51.92888390476885],[-120.48361206929779,51.928959665141136],[-120.48316435157933,51.929034296834075],[-120.48271599391877,51.92911396218044],[-120.48226763461996,51.92919362577208],[-120.48181984074819,51.929268815675776],[-120.48137211565404,51.92934344931036],[-120.48092424837184,51.929419190234086],[-120.4804759529949,51.92949829229555],[-120.48002765712603,51.929577383659],[-120.47957992579626,51.92965201029153],[-120.47913162672185,51.92973109814927],[-120.47868375043187,51.929806839259896],[-120.47823601558103,51.9298814516981],[-120.47778764020687,51.92996109775847],[-120.47733990110373,51.93003571563935],[-120.47689201970803,51.930111440803685],[-120.47644427752856,51.93018605518564],[-120.47598201462401,51.93025995955406],[-120.47553483708603,51.930330098483076],[-120.47508765924496,51.93040022672406],[-120.47464040842061,51.930470916679425],[-120.47417870616867,51.93054035082725],[-120.47373223388055,51.93060488391891],[-120.47328554671842,51.930671096701374],[-120.4728238401895,51.93074052539433],[-120.4723777898868,51.93080169930092],[-120.4719172167329,51.930862180583176],[-120.47145614573859,51.930926568435744],[-120.47101023366302,51.93098661905612],[-120.47054958619678,51.931047649360316],[-120.47008957620146,51.93110365143528],[-120.46962970824619,51.93115852475611],[-120.46917033590442,51.931209487826074],[-120.46871153092432,51.93125597719699],[-120.46825222697466,51.931306382082276],[-120.46779455705763,51.93134392407282],[-120.46733638941527,51.93138537263949],[-120.46687942866252,51.93141732116686],[-120.46640823100698,51.9314463314229],[-120.46595240637791,51.9314693325661],[-120.4654831982374,51.93148268756715],[-120.4650145586272,51.93149156881121],[-120.46454648769188,51.931495976305186],[-120.46407898557564,51.93149591005622],[-120.46361262138379,51.931486898236706],[-120.46314739540266,51.93146894086024],[-120.462682738861,51.93144650977033],[-120.46221865190093,51.931419604973634],[-120.46175513466423,51.931388226476656],[-120.46129325396838,51.93134399408872],[-120.46083187286747,51.93129584252723],[-120.46037120439897,51.93124209933736],[-120.4599118180743,51.931178292709426],[-120.45945342951451,51.93110665856489],[-120.45899603896147,51.93102719691419],[-120.45855551999794,51.93092998426688],[-120.45811592789353,51.93082550770361],[-120.45769256675884,51.93070831565779],[-120.45730024176554,51.93057687408383],[-120.45692514498064,51.93042489180954],[-120.45655325463174,51.9302477588631],[-120.45621268714523,51.93005413217116],[-120.45587361766476,51.929848770427036],[-120.45556565578664,51.92962860564214],[-120.45525841039665,51.92940284129427],[-120.45495095393605,51.92917875747722],[-120.4546574503393,51.92895984661084],[-120.45436487516467,51.928733672750454],[-120.45408860392241,51.92849422134622],[-120.45382657005707,51.928257707249365],[-120.45356575074032,51.92801168546268],[-120.45331938168367,51.92776692866451],[-120.45305792635283,51.92752594086506],[-120.45281149106903,51.927281746320176],[-120.45254961392554,51.92704411111026],[-120.45227265077608,51.92681024473274],[-120.45197967596505,51.926587409277666],[-120.45168506448982,51.9263774339159],[-120.45134490461925,51.92618100174049],[-120.4509882336661,51.92599951732111],[-120.45058444646371,51.925843872877905],[-120.45016336314164,51.92570932886059],[-120.44972576913383,51.92558972296186],[-120.44928340025622,51.92550757107234],[-120.44883996298033,51.92543380654299],[-120.44838051210856,51.9253710714459],[-120.44793436906951,51.925318535440155],[-120.44747263857461,51.92527368383192],[-120.44701033844733,51.9252333021435],[-120.4465474685471,51.925197390368474],[-120.44606893990435,51.92516971716996],[-120.44560493000425,51.92514274514143],[-120.445139849909,51.92512416027525],[-120.44467527024848,51.9251016562599],[-120.44421004941253,51.92508417662806],[-120.44374432882812,51.925070612375336],[-120.44327803757079,51.92506151799395],[-120.44281231751827,51.92504794996386],[-120.44234488458159,51.92504779530922],[-120.44187745164821,51.925047638753234],[-120.44142510790714,51.92504371223772],[-120.44095653261994,51.9250524954353],[-120.4404878143318,51.925062394658504],[-120.44001923865513,51.925071174034166],[-120.43955051995353,51.925081069434135],[-120.43909589050864,51.92509502071134],[-120.43862674276114,51.92510826614679],[-120.4381575947287,51.925121509666766],[-120.43768901794803,51.92513027954035],[-120.43721929780904,51.92514799096031],[-120.43674900565499,51.925170172185894],[-120.4362775696581,51.925201294933636],[-120.43582057895794,51.92523368358267],[-120.43536115866965,51.92528506627452],[-120.43491503962883,51.925346658509575],[-120.43448000615602,51.92543578385994],[-120.43405405579296,51.92556809343397],[-120.43366615157598,51.92574556009698],[-120.43334726138148,51.92595448821532],[-120.43311233052228,51.92619224719604],[-120.43291880816268,51.92644887988603],[-120.4327521740396,51.92672369958424],[-120.4326135028226,51.92700830854522],[-120.43247568794493,51.92728620972312],[-120.43233801434002,51.927562992744186],[-120.43222844747991,51.92784844726709],[-120.43213261082657,51.928140759524574],[-120.43202318306604,51.928425104727694],[-120.43185832438557,51.928685944153735],[-120.4316378910053,51.92892439550192],[-120.43134650361274,51.9291464699749],[-120.43101255681604,51.92935860322217],[-120.43066551818936,51.9295588512171],[-120.43027692135117,51.929741331983145],[-120.42987802266855,51.929890132142084],[-120.42946753610697,51.93001530391569],[-120.42903058433114,51.930118941199666],[-120.42859484768991,51.930213070051956],[-120.42815968060405,51.93030273452464],[-120.42769733473386,51.930376444663025],[-120.4272356309911,51.930445126793316],[-120.4267757149912,51.93049983761315],[-120.4263157268132,51.930555101074944],[-120.42585759914024,51.930595829829166],[-120.42538545280797,51.93063193387964],[-120.42492904221254,51.93065924398629],[-120.4244596870627,51.93067354943152],[-120.42400542425055,51.930684087207645],[-120.42353850403882,51.93067938441698],[-120.42307273014441,51.93066573645684],[-120.42260752969727,51.93064761497485],[-120.42214175643367,51.93063396324142],[-120.42166203714157,51.930615131807926],[-120.42119683782073,51.930597004615215],[-120.4207316388867,51.930578875539275],[-120.42026472015527,51.93057415944819],[-120.41979722808206,51.930573913080586],[-120.41934368204411,51.93057884290693],[-120.4188738957755,51.93059647925562],[-120.41840410912688,51.93061411368368],[-120.41793374846358,51.93063621780211],[-120.41746338732341,51.93065831999514],[-120.416977358723,51.930688656699964],[-120.41651979470936,51.930724876622165],[-120.41604656274738,51.93076933103133],[-120.4156010053675,51.93082582191006],[-120.41515372621168,51.93089571690321],[-120.41471902747816,51.93098141331221],[-120.41429640708057,51.93108681944654],[-120.41389966660692,51.9312182320843],[-120.41351514703587,51.93136823689419],[-120.41315578886568,51.931549838104125],[-120.41279470517344,51.93174485290393],[-120.41244749154818,51.93194560888102],[-120.41210027587408,51.93214635483054],[-120.41175305585423,51.932347108638986],[-120.41140705366105,51.932538354803796],[-120.41103265496832,51.93272314986223],[-120.41067341889405,51.93290362520276],[-120.41032798199625,51.93309039646096],[-120.4099674473849,51.933280930552364],[-120.40960798628417,51.933463083781206],[-120.40926261278503,51.93364928832946],[-120.4089027871505,51.93383422954429],[-120.40854338944516,51.93401581593971],[-120.40817018655505,51.93419110386219],[-120.40779712434501,51.934365272659576],[-120.40741111911265,51.93452643549553],[-120.40702539843002,51.9346853612422],[-120.40662630389987,51.93483463451695],[-120.4062279252526,51.934978316967324],[-120.40580222716501,51.935107167055236],[-120.40539061617059,51.93524007743689],[-120.40496620686346,51.935358863457445],[-120.40454251408363,51.935472058492444],[-120.40410487328091,51.935580072034405],[-120.40366945849594,51.93567076123248],[-120.40321980967029,51.93575849556298],[-120.40277303417574,51.935823879497654],[-120.40231180881652,51.93588798965741],[-120.40186503178401,51.93595336111241],[-120.4010909497594,51.93606406688431],[-120.4002925911248,51.93590923120845],[-120.39978888886674,51.93584921069426],[-120.39904708394849,51.93593616394043],[-120.39449692818383,51.93575383415224],[-120.39373215039267,51.935678769089975],[-120.39278668410687,51.93575854498194],[-120.39133795688365,51.93577490194644],[-120.39034820040405,51.93608478224069],[-120.38965753158283,51.936454846874156],[-120.38864596592506,51.93716018328717],[-120.38759632705005,51.93770728621289],[-120.38673820179848,51.93801571310693],[-120.38567303797079,51.93811657408536],[-120.3830867728182,51.938453989408515],[-120.38163045879725,51.93864140289239],[-120.38051811304189,51.938994138718776],[-120.37990601350789,51.93965992060143],[-120.37978670935073,51.940357151320605],[-120.3799574792461,51.94095835051727],[-120.38004356556634,51.94142321791863],[-120.37975122169082,51.942215463262855],[-120.3792811692369,51.942573224096066],[-120.3786260674599,51.94289265925767],[-120.37773721410046,51.94321132718841],[-120.3768904721415,51.94354330204738],[-120.37588778959795,51.94395087103873],[-120.37429646601791,51.94484140956766],[-120.37337760924554,51.94539143482043],[-120.37247895492301,51.94601106491587],[-120.37193284332604,51.94650399250924],[-120.37190609499062,51.947275503409436],[-120.37197201408561,51.947782702682815],[-120.37190100487389,51.948218506559556],[-120.37176732702594,51.948799717057454],[-120.37171241795463,51.949336986389206],[-120.3717381746926,51.94970272451831],[-120.37169246294158,51.95005595751995],[-120.37156868556266,51.95056060029738],[-120.37140053236003,51.95106925767198],[-120.37109867831045,51.95159441253884],[-120.37090595023713,51.95206698215632],[-120.37063250002413,51.95248553697595],[-120.3702053170776,51.95296236139669],[-120.36968868873981,51.953226676535415],[-120.36914423113271,51.953480066695604],[-120.36808017347906,51.95390763258144],[-120.36652532552333,51.95451244915503],[-120.35647563757425,51.95816628492406],[-120.35632230820667,51.95822118310465],[-120.35613651409817,51.9583009159795],[-120.35594999385935,51.958386237537646],[-120.35576296563735,51.95847546660693],[-120.35556249651762,51.95855560184208],[-120.35537611917034,51.95863980465352],[-120.35519017643492,51.95872065376721],[-120.35500379766223,51.95880485596315],[-120.354816692565,51.95889464683032],[-120.35463081968658,51.95897494059503],[-120.35442976566165,51.95905954500284],[-120.35424323883363,51.959144863736554],[-120.35405685641663,51.95922906436688],[-120.35387040128667,51.95931381911489],[-120.35368387227494,51.95939913692259],[-120.35349734253276,51.959484454421386],[-120.35329700976656,51.959563467843594],[-120.35311047856347,51.95964878470279],[-120.35292351111323,51.95973745463108],[-120.35273755914316,51.95981829970214],[-120.35255102575377,51.95990361563505],[-120.35235061616984,51.959983190747046],[-120.35216408131694,51.960068506040216],[-120.35197769093146,51.96015270323331],[-120.351791227805,51.96023745454244],[-120.35160527160035,51.96031829774762],[-120.3514043507159,51.96040177897715],[-120.35121839309215,51.96048262154523],[-120.35103141821371,51.96057128833332],[-120.35084545917465,51.960652130286505],[-120.35064504303324,51.960731702374744],[-120.35045850163647,51.96081701484604],[-120.35027217795641,51.96090064585495],[-120.35007168758123,51.96098077134975],[-120.34988587026851,51.96106049393495],[-120.34970005227584,51.96114021621432],[-120.34949897868611,51.96122481184275],[-120.34931308606866,51.96130509685008],[-120.34911273734427,51.9613841028586],[-120.34892626337567,51.96146884943209],[-120.34872576791098,51.961548972541095],[-120.3485400910035,51.961627575127025],[-120.34833901291263,51.961712168691676],[-120.34815369728445,51.961787980651636],[-120.34795334423742,51.96186698460736],[-120.34776686594722,51.96195172926556],[-120.34756709271502,51.96202626140144],[-120.34738126636107,51.962105979867616],[-120.34718083720608,51.962185545818656],[-120.34697989923441,51.96226901918314],[-120.34679458003573,51.962344819974305],[-120.34659407662029,51.9624249393064],[-120.34640839213439,51.96250353839106],[-120.346207959374,51.962583102619234],[-120.34602198279943,51.962663936632005],[-120.34582169512294,51.962742373452755],[-120.34562118808905,51.96282249106108],[-120.34543608165333,51.96289661742741],[-120.34523506378807,51.962980651053265],[-120.34504966525289,51.96305701234702],[-120.34484879245622,51.963139918564394],[-120.34464886338841,51.963215563333776],[-120.34446317202399,51.96329415922405],[-120.34426273207443,51.96337372000782],[-120.34406221926848,51.963453834854455],[-120.34387703537142,51.9635285130889],[-120.34367608487675,51.96361198058417],[-120.34347629703451,51.96368650550712],[-120.34329096454802,51.96376230950188],[-120.3430900118523,51.96384577595619],[-120.34289014979552,51.96392085426293],[-120.34270430680404,51.964000565041346],[-120.34250393370172,51.964079559352314],[-120.34230406839892,51.96415464556769],[-120.34211822333793,51.964234355382935],[-120.34191777594475,51.96431390307293],[-120.34173192949774,51.96439361225312],[-120.34153155282479,51.96447260484315],[-120.34133110210048,51.96455216043653],[-120.34114590885397,51.9646268342026],[-120.34094538454984,51.96470694352843],[-120.3407451505113,51.96478481695444],[-120.3405597364298,51.96486117089114],[-120.34035870009549,51.96494519585096],[-120.34015897380608,51.96501915156862],[-120.33997297561064,51.96509997562923],[-120.3397727380277,51.965177847335845],[-120.33957286297974,51.96525292873369],[-120.33938686269896,51.96533375183005],[-120.33918655080437,51.96541217691442],[-120.33900069467569,51.96549188160558],[-120.33880089021577,51.96556639828569],[-120.33859984723522,51.96565042011996],[-120.33841457127468,51.96572565277256],[-120.3382141102582,51.965805193905226],[-120.33802766837434,51.96588936806925],[-120.33782786042727,51.96596388303345],[-120.33762681373595,51.96604790313811],[-120.33744138881409,51.966124251964274],[-120.337241069783,51.96620267360682],[-120.33705506112175,51.96628349286591],[-120.33685481288393,51.966361359413],[-120.33666880282864,51.96644217803644],[-120.33646833416307,51.96652172501921],[-120.33628188583992,51.966605896301225],[-120.33608141687957,51.96668543365629],[-120.3358955496385,51.966765133242035],[-120.3356945689247,51.96684858655781],[-120.33550862687576,51.96692884886],[-120.33530808161086,51.96700894819789],[-120.33512221157481,51.967088646511705],[-120.33492173827594,51.96716818181237],[-120.3347358668538,51.967247879490785],[-120.33453546436886,51.9673268596972],[-120.33434886319122,51.96741214554917],[-120.33414838582645,51.96749168842191],[-120.33396251160933,51.967571384828304],[-120.33376145121085,51.967655389117596],[-120.33357557558746,51.96773508488749],[-120.33338969928398,51.967814780351496],[-120.33318914604507,51.967894875933574],[-120.33300261207147,51.967979605150795],[-120.33280278594319,51.968054111250865],[-120.33261683458713,51.968134359852485],[-120.33241584127607,51.96821780734042],[-120.33221543012341,51.968296783438475],[-120.33203005843214,51.96837256898439],[-120.33182906289812,51.9684560154298],[-120.33164369102315,51.96853179140057],[-120.33144327702627,51.96861076613184],[-120.33124286230277,51.968689740508594],[-120.33105690419401,51.96876999548627],[-120.33085648803757,51.968848969178964],[-120.33065658194722,51.9689240259015],[-120.33047142412704,51.96899812779023],[-120.33027093238428,51.96907766379572],[-120.33007109654748,51.96915216507946],[-120.3298711877127,51.96922722041746],[-120.32967091310405,51.969305074259054],[-120.32948553269586,51.96938085563822],[-120.32928569412512,51.96945535553803],[-120.32908578254586,51.9695304094914],[-120.3288860884273,51.969603790934435],[-120.32868675762079,51.96967438211628],[-120.32847245874683,51.969747599332],[-120.3282733459529,51.9698165086898],[-120.32807357564911,51.969890452050976],[-120.32787438923013,51.96995991511439],[-120.32766059749446,51.97002922314214],[-120.32746199205587,51.97009422342256],[-120.32724783492395,51.97016632057993],[-120.32704849888881,51.97023690888864],[-120.32684989275707,51.97030189915865],[-120.32663631595284,51.97036953310922],[-120.32643712505156,51.970438993655165],[-120.32622464171683,51.97049823924725],[-120.32601091708037,51.970566989773644],[-120.32581245380001,51.97063086048591],[-120.32559931150192,51.97069513924885],[-120.3253861697421,51.97075940867131],[-120.32517302618604,51.97082368663727],[-120.32497514421381,51.9708830849039],[-120.3247619994461,51.970947362101434],[-120.3245490011548,51.97101051221278],[-120.3243358551348,51.97107478861366],[-120.32413782493161,51.97113530317254],[-120.32392540746686,51.97119399008049],[-120.32371240675688,51.97125713862928],[-120.3234998421591,51.97131694248971],[-120.32328800800273,51.97137114829309],[-120.3230755882431,51.9714298336198],[-120.32284922143323,51.97148331999689],[-120.3226373120799,51.971538087936786],[-120.32242547460692,51.971592301083454],[-120.32219983615596,51.9716401974627],[-120.3219885092465,51.97169049323134],[-120.3217627226266,51.971739515433015],[-120.32153766675539,51.97178293954134],[-120.32131253683956,51.97182692654918],[-120.32108740646908,51.971870913114834],[-120.3208773178705,51.97191171050858],[-120.32065284439106,51.97195066191858],[-120.3204281508557,51.97199129396972],[-120.32020425960722,51.972025782485154],[-120.31998029555915,51.972060824962476],[-120.31975647721521,51.97209474926403],[-120.31951863861772,51.97212403751395],[-120.31929525781905,51.97215460770143],[-120.31907246103617,51.97218070650348],[-120.31883527832339,51.972204967989754],[-120.31861196909293,51.97223498245061],[-120.31837405532562,51.97226483167022],[-120.31815140353342,51.972289810949306],[-120.31792867901424,51.972315344194065],[-120.31769091045818,51.97234407426271],[-120.31746752724854,51.9723746408955],[-120.3172296119343,51.97240448774478],[-120.31700637422736,51.97243393574539],[-120.31678174728462,51.97247400626119],[-120.3165572672458,51.972512949660825],[-120.3163322746824,51.97255580916078],[-120.31610757399586,51.972596432752],[-120.3158831652216,51.972634820436404],[-120.31564531990205,51.97266410960696],[-120.31542251832671,51.972690201328916],[-120.31518642777058,51.97270606781663],[-120.31496552616991,51.97271762813325],[-120.31473126215847,51.97271952650766],[-120.31449758293266,51.97271695347955],[-120.31426331890445,51.972718850901124],[-120.31402963970993,51.97271627692246],[-120.31379537566497,51.97271817339117],[-120.31356228140373,51.9727111275412],[-120.31332918721792,51.97270408121897],[-120.3130960931075,51.97269703442437],[-120.31286358404586,51.97268551624011],[-120.31263049011014,51.97267846850211],[-120.31239856629152,51.972662478461565],[-120.31216664264318,51.97264648795327],[-120.31193413409713,51.9726349678901],[-120.3117027958573,51.972614505533436],[-120.3114714578348,51.97259404271128],[-120.31124012002967,51.972573579423454],[-120.31100936760375,51.97254864476172],[-120.31077861544196,51.97252370963656],[-120.31054771724226,51.97249989177464],[-120.31033208253373,51.972471205039255],[-120.31010191642343,51.972441797649715],[-120.30987175062393,51.97241238979894],[-120.30964202411009,51.97237962831028],[-120.30941302959546,51.97234127773565],[-120.30918345013815,51.972307397603934],[-120.3089550417758,51.97226457521489],[-120.30874109169305,51.97222303612708],[-120.30851253785467,51.972181330581],[-120.30828413081294,51.972138506855174],[-120.30807076861737,51.97209248667808],[-120.30784353343577,51.9720407202833],[-120.30763068391262,51.971990791724295],[-120.3074178348774,51.97194086276922],[-120.30719096664265,51.971886305241654],[-120.30697936353495,51.97182687035479],[-120.30678221862662,51.97176871907867],[-120.3065709082796,51.97170705693121],[-120.30636047814225,51.97163867911791],[-120.30616494543821,51.97156823183079],[-120.30597058469627,51.9714888424332],[-120.30577563897911,51.97141392358799],[-120.30558127963516,51.971334533521954],[-120.30538743292013,51.971251235568765],[-120.30519300237773,51.971172399225374],[-120.30499974288561,51.97108462972272],[-120.30480531378845,51.971005792712646],[-120.30461103067262,51.97092584658992],[-120.30441718880313,51.97084253803058],[-120.30422283448425,51.970763145630194],[-120.30402789502052,51.97068822377629],[-120.30381849790403,51.97061202615395],[-120.30362290126843,51.97054212887268],[-120.30341291964918,51.970470401381505],[-120.30321703133387,51.970402738840654],[-120.3030220213829,51.970328378589436],[-120.3028120429553,51.97025664104627],[-120.30260140539119,51.97018993732061],[-120.30240595793464,51.97011892916763],[-120.30219554200654,51.97005054364207],[-120.30200002316651,51.96998008917921],[-120.30179004692855,51.96990835869086],[-120.30157948646111,51.96984108974406],[-120.30138345612306,51.969774550703605],[-120.30117289693021,51.96970728100476],[-120.30096226453229,51.96964057424612],[-120.30075126583414,51.969576665861105],[-120.30055523912337,51.96951011645242],[-120.30034402240992,51.96944787941762],[-120.30013302555203,51.96938396988801],[-120.29992195661745,51.96932061435504],[-120.29971022932125,51.96926228368215],[-120.299498575293,51.969203398229645],[-120.29928684796073,51.96914507571335],[-120.29907468261298,51.96909009700855],[-120.29886303028042,51.96903121037787],[-120.29863567541426,51.9689805433739],[-120.29842351051681,51.968925572402],[-120.29821127343801,51.96887115542251],[-120.29799852433479,51.968820645577615],[-120.2977717580426,51.968765506000175],[-120.29755893606712,51.968715558665565],[-120.29734604067916,51.968666174262594],[-120.29711942265048,51.96860991567824],[-120.29690667608901,51.968559403802615],[-120.2966932695355,51.968513925709935],[-120.29646591989258,51.968463254395026],[-120.29625317363181,51.96841275024619],[-120.29602523838548,51.968366548905465],[-120.29581249428118,51.96831603499555],[-120.29559982341925,51.968264966305135],[-120.29537232967034,51.96821541052968],[-120.29515848635641,51.96817328271052],[-120.2949312130337,51.96812205396274],[-120.29471781068486,51.96807657218801],[-120.29450506951265,51.96802605584753],[-120.29427728484787,51.967978733317395],[-120.2940493539679,51.96793252804417],[-120.29383654032968,51.96788257378695],[-120.29360817025704,51.96783972076513],[-120.29339484344881,51.96779368214111],[-120.29316691447295,51.96774747511199],[-120.2929535897566,51.967701426724204],[-120.29272580847454,51.96765410110861],[-120.29251182372674,51.96761308605752],[-120.29228389663233,51.96756687727158],[-120.29207064652635,51.967520272856],[-120.29184279318098,51.96747350880909],[-120.29162881015155,51.96743249210913],[-120.29140103171476,51.96738516385915],[-120.29118712351305,51.967343583009885],[-120.29095875887205,51.9673007247084],[-120.2907308350592,51.967254512832575],[-120.2905174413454,51.967209023231526],[-120.29028900407936,51.96716672691933],[-120.29007517082898,51.96712458961232],[-120.28984666161479,51.967082846800686],[-120.2896188869422,51.967035515007424],[-120.28940498215827,51.96699393083163],[-120.28917706159865,51.966947715864926],[-120.28896264315028,51.96691004730097],[-120.28873472349875,51.96686383145452],[-120.28852081922695,51.966822254569934],[-120.28829231308787,51.96678050865969],[-120.28806454168472,51.966733173776255],[-120.28785012525418,51.96669550313158],[-120.28762169444542,51.96665319256201],[-120.28740786629557,51.96661105027795],[-120.28717936233073,51.96656930214913],[-120.28695027125396,51.96653202437412],[-120.28673644434829,51.96648988083752],[-120.2865080145241,51.96644757699042],[-120.28627951227898,51.96640582706819],[-120.28606568664154,51.96636368228015],[-120.28583674451431,51.96632528457945],[-120.28560772991777,51.96628744080143],[-120.28539390551124,51.966245294760185],[-120.28516481766601,51.96620801341887],[-120.2849358771508,51.96616961392001],[-120.28472131925598,51.9661330551249],[-120.28449237952556,51.966094654740814],[-120.28426336613353,51.96605681722025],[-120.28403442720739,51.96601841592219],[-120.28381987081364,51.9659818554409],[-120.28359093267234,51.96594345325769],[-120.28336140702486,51.96590952141077],[-120.2831318088312,51.96587614348317],[-120.28291740088419,51.965838463615924],[-120.28268846429187,51.96580005963176],[-120.2824587931026,51.96576724367719],[-120.2822286812415,51.965737780354296],[-120.28201412774523,51.96570121649588],[-120.28178460460205,51.96566728149552],[-120.28155449372487,51.965637816821435],[-120.2813249712737,51.965603880902144],[-120.28109537507476,51.96557050784241],[-120.28088038223383,51.965537294951446],[-120.28064953742641,51.96551341694129],[-120.28042001633551,51.96547947921254],[-120.28018990737317,51.965450011803775],[-120.27995979872213,51.965420543933945],[-120.27974414626699,51.96539235406929],[-120.27951403822196,51.96536288530614],[-120.27928334216767,51.96533788685666],[-120.27905323472203,51.9653084171704],[-120.27882253922056,51.96528341779553],[-120.27859184398385,51.965258417957465],[-120.27836159032223,51.96523006457843],[-120.27813089563253,51.965205063814665],[-120.27789961274715,51.96518453335596],[-120.27768388864456,51.96515690293978],[-120.27745319473114,51.96513190081525],[-120.2772219125535,51.965111368992616],[-120.27699121914634,51.965086365940664],[-120.27676052600394,51.96506136242549],[-120.2765292445272,51.96504082920877],[-120.27629855189106,51.96501582476613],[-120.27606785951971,51.96499081986015],[-120.2758365787439,51.96497028524951],[-120.27560588687882,51.964945279416106],[-120.27537512110037,51.964920836434786],[-120.27514384102255,51.96490030042998],[-120.27491314992567,51.96487529320572],[-120.2746818703074,51.964854756271215],[-120.27446511946432,51.96483494362849],[-120.27423428189518,51.96481105272932],[-120.27400359179293,51.96478604367895],[-120.27377231307719,51.96476550491408],[-120.27354103457954,51.96474496568379],[-120.27331034522516,51.96471995524159],[-120.27307906718707,51.9646994150817],[-120.27284837833908,51.96467440371204],[-120.27261768975598,51.964649391879156],[-120.27238641241901,51.96462885032525],[-120.2721557243423,51.96460383756493],[-120.27192496348634,51.9645793787131],[-120.27156432962266,51.964541696200286],[-120.27878046741992,51.991049734228575],[-120.23830173679931,51.99096674699033],[-120.23819911274113,51.991188858874956],[-120.2381967411873,51.99120674072975],[-120.23819496252064,51.99122015212059],[-120.23817812772045,51.99123675031542],[-120.23817575615539,51.99125463216895],[-120.2381733845884,51.99127251402225],[-120.23815603157038,51.99129301939795],[-120.23815373469787,51.991310337971875],[-120.2381513631188,51.99132821982375],[-120.2381346029652,51.99134425473243],[-120.2381323796008,51.99136101896773],[-120.23813000801017,51.99137890081849],[-120.23811309960426,51.99139605333893],[-120.23811020862307,51.99141785131375],[-120.23809389309659,51.99143053336842],[-120.23809166971208,51.991447297601816],[-120.23808937280587,51.991464616172195],[-120.23807246435064,51.99148176868534],[-120.23807024095527,51.99149853291754],[-120.23805288779859,51.991519038273665],[-120.23805051616672,51.991536920120346],[-120.23804814453293,51.99155480196667],[-120.23803130954735,51.99157140013521],[-120.23802893790379,51.99158928198063],[-120.23802671448615,51.99160604621035],[-120.23801047357192,51.99161816497315],[-120.23800750900325,51.99164051727843],[-120.2379906004475,51.991657669776934],[-120.23798837701162,51.99167443400499],[-120.23798615357403,51.99169119823273],[-120.23796924499015,51.99170835072746],[-120.23796687331362,51.991726232569384],[-120.23796457515722,51.99174356007394],[-120.23794707362264,51.99176518302499],[-120.2379447019339,51.991783064865615],[-120.23794247847395,51.99179982909096],[-120.2379401814898,51.991817147653045],[-120.2379232728389,51.99183430013913],[-120.23792149406238,51.99184771151844],[-120.23791912235865,51.99186559335734],[-120.23791689888465,51.99188235758097],[-120.23789999019925,51.99189951006269],[-120.23789776671615,51.99191627428547],[-120.23789480206932,51.99193862658201],[-120.2378924303497,51.99195650841901],[-120.23789005862811,51.991974390255564],[-120.23788768690457,51.99199227209183],[-120.2378853887026,51.992009599590844],[-120.2378684799554,51.992026752066025],[-120.23786610822012,51.99204463390104],[-120.23786373648294,51.9920625157358],[-120.2378613647438,51.99208039757009],[-120.23785899300269,51.99209827940422],[-120.23785662125962,51.99211616123788],[-120.23785424951463,51.992134043071204],[-120.2378518777677,51.99215192490431],[-120.23784950601882,51.99216980673704],[-120.2378616713412,51.99218841793248],[-120.23785929959435,51.992206299764845],[-120.23785692784553,51.9922241815969],[-120.23785448257048,51.99224261776541],[-120.2378527037561,51.992256029139035],[-120.23786486910393,51.992274640332745],[-120.23786249735369,51.992292522163844],[-120.23786012560151,51.9923104039947],[-120.23785775384736,51.99232828582509],[-120.23785538209127,51.99234616765527],[-120.23786799216914,51.99236142600417],[-120.23786547218077,51.99238042544833],[-120.23786310042502,51.99239830727782],[-120.23787526581707,51.992416918468194],[-120.23787289406334,51.99243480029733],[-120.23787044759733,51.99245324540378],[-120.23788261300787,51.99247185659244],[-120.23788009301951,51.99249085603516],[-120.23787772126373,51.992508737863204],[-120.23788988669287,51.99252734905028],[-120.23788744141476,51.99254578521463],[-120.23788506965901,51.99256366704202],[-120.23789782804477,51.99257780777058],[-120.23789545629155,51.992595689597835],[-120.23789293630162,51.99261468903867],[-120.23790510176687,51.99263330022238],[-120.23790258177897,51.992652299662964],[-120.23790021002365,51.992670181489025],[-120.23791237550752,51.99268879267112],[-120.23790992904397,51.992707237774276],[-120.2379074090539,51.99272623721376],[-120.23791957455651,51.99274484839415],[-120.23791720280312,51.99276273021917],[-120.23791542398682,51.99277614158765],[-120.23792751598248,51.99279530710303],[-120.23792514422959,51.99281318892736],[-120.23792277247478,51.99283107075144],[-120.23792040071801,51.992848952575144],[-120.2379180289593,51.99286683439851],[-120.237930046271,51.99288656318955],[-120.2379276745142,51.99290444501259],[-120.23792530275544,51.99292232683528],[-120.23792278275963,51.99294132627155],[-120.2379205592321,51.992958090479725],[-120.2379325765701,51.99297781926882],[-120.23793020480939,51.992995701090514],[-120.23792783304671,51.99301358291188],[-120.23792546128207,51.9930314647329],[-120.23792308951548,51.99304934655361],[-120.23792071774697,51.99306722837395],[-120.23791834597648,51.99308511019401],[-120.23791597420406,51.9931029920137],[-120.23791360242967,51.99312087383312],[-120.23791123065335,51.993138755652204],[-120.23790900711128,51.993155519857275],[-120.23790663533119,51.99317340167574],[-120.23790426354914,51.99319128349382],[-120.23790189176516,51.9932091653117],[-120.23789951997921,51.993227047129146],[-120.23788275900192,51.99324308197485],[-120.23788038720629,51.9932609637914],[-120.23787801540868,51.99327884560764],[-120.23787564360916,51.99329672742351],[-120.23787327180764,51.99331460923918],[-120.23787090000421,51.993332491054375],[-120.23786793524718,51.99335484332299],[-120.23786556343934,51.993372725137526],[-120.23786326515572,51.9933900526155],[-120.23786089334406,51.993407934429364],[-120.23784398404412,51.99342508688026],[-120.23784161222264,51.99344296869324],[-120.23783924039921,51.99346085050588],[-120.23783686857384,51.993478732318195],[-120.23783464498577,51.99349549651696],[-120.2378322731566,51.99351337832861],[-120.2378299013255,51.99353126013993],[-120.2378276042052,51.99354857867396],[-120.23782523237026,51.99356646048465],[-120.23780832299472,51.99358361292798],[-120.23780654411134,51.99359702428533],[-120.23780357930325,51.99361937654717],[-120.23780135569518,51.99363614074326],[-120.2377989838447,51.99365402255211],[-120.23779661199224,51.993671904360646],[-120.23777985080581,51.993687939185165],[-120.23777747894364,51.993705820992794],[-120.23777510707957,51.99372370280002],[-120.23777273521351,51.99374158460691],[-120.23777043687345,51.99375891207749],[-120.23775352740158,51.993776064509966],[-120.23775115552382,51.993793946315655],[-120.23774878364412,51.99381182812097],[-120.23774596703444,51.99383306276447],[-120.23774359515046,51.993850944569076],[-120.2377267603469,51.99386753371938],[-120.23772438845316,51.99388541552313],[-120.23772201655748,51.993903297326526],[-120.23771964465985,51.993921179129565],[-120.23771742100405,51.993937943319644],[-120.23770051144176,51.99395509574168],[-120.23769828777685,51.99397185993087],[-120.23769591586573,51.99398974173242],[-120.23769354395267,51.99400762353365],[-120.23769057905861,51.99402997578461],[-120.23767374297965,51.99404657386549],[-120.23767137105438,51.99406445566538],[-120.23766899912718,51.994082337464974],[-120.23765223773573,51.99409837226522],[-120.2376498657988,51.99411625406386],[-120.23764756857604,51.99413357258551],[-120.23764519663527,51.994151454383534],[-120.23764341767846,51.994164865731825],[-120.23762650799885,51.99418201813962],[-120.23762369130559,51.99420325277323],[-120.23762131935123,51.99422113456969],[-120.23761909564226,51.99423789875354],[-120.23760218592473,51.99425505115664],[-120.23759981395872,51.994272932951866],[-120.2375975155218,51.99429026041101],[-120.23759514355196,51.994308142205576],[-120.23757823379768,51.99432529460413],[-120.23757586181802,51.99434317639773],[-120.23757304508963,51.99436441102724],[-120.2375707478232,51.99438172954364],[-120.23755383803076,51.99439888193756],[-120.23755146603705,51.994416763729525],[-120.2375490940414,51.994434645521146],[-120.23754687029373,51.99445140970052],[-120.23754449829428,51.99446929149154],[-120.237527736708,51.994485326268375],[-120.23752595770134,51.994498737611046],[-120.23752358569072,51.99451661940089],[-120.23750615635501,51.99453768789761],[-120.23750378433418,51.9945555696865],[-120.23750141231137,51.994573451475],[-120.23749918853822,51.99459021565147],[-120.23748235335567,51.994606804755456],[-120.23747998132127,51.99462468654273],[-120.23747760928494,51.99464256832973],[-120.23746084760732,51.994658603094365],[-120.2374580308024,51.99467983771535],[-120.23745565875406,51.99469771950095],[-120.23743874879354,51.99471487187333],[-120.2374370432839,51.99472772887657],[-120.2374201333044,51.994744881245715],[-120.2374179094912,51.994761645418116],[-120.2374155374219,51.994779527201636],[-120.23739810911466,51.994800586736446],[-120.23739573703513,51.99481846851901],[-120.23739351320879,51.99483523268984],[-120.237376751426,51.99485126743966],[-120.23737437933494,51.99486914922101],[-120.23737200724189,51.99488703100206],[-120.23735457768453,51.99490809946915],[-120.23735279860725,51.99492151080419],[-120.23733603677627,51.99493754554685],[-120.23733373938532,51.994954864049994],[-120.23733136727093,51.99497274582886],[-120.23731460541234,51.99498878056771],[-120.23731223328822,51.99500666234561],[-120.23729487837625,51.99502716752557],[-120.23729250624194,51.995045049302504],[-120.23729020764195,51.995062376744116],[-120.23727329747464,51.995079529086716],[-120.23727166662447,51.99509182280757],[-120.23725483116124,51.995108411871044],[-120.23725245900607,51.99512629364596],[-120.23724949380937,51.99514864586411],[-120.23723273185288,51.995164680588566],[-120.2372305079461,51.99518144475126],[-120.237213597709,51.99519859708344],[-120.23721129906949,51.9952159245211],[-120.23720892689059,51.99523380629344],[-120.23719157183939,51.9952543114537],[-120.23718979269776,51.99526772278223],[-120.23718749523121,51.99528504127753],[-120.23717058493693,51.99530219360183],[-120.23716836099919,51.99531895776132],[-120.23716598879703,51.99533683953118],[-120.23714922673734,51.99535287424097],[-120.23714685452546,51.99537075600985],[-120.23714396279658,51.99539255388577],[-120.23712705244337,51.99540970620197],[-120.23712468021931,51.995427587969616],[-120.23712245625747,51.99544435212647],[-120.23710562060108,51.99546094116315],[-120.23710384142451,51.99547435248794],[-120.23710146918738,51.99549223425407],[-120.23708470704409,51.99550826895227],[-120.23708174173527,51.99553062115876],[-120.23707951775164,51.99554738531326],[-120.23707714550052,51.99556526707774],[-120.23706023505393,51.99558241938166],[-120.23705793633313,51.995599746810605],[-120.23705556407032,51.99561762857377],[-120.23705319180554,51.995635510336726],[-120.23705081953884,51.99565339209932],[-120.23703405731484,51.995669426787906],[-120.23703168503842,51.99568730854958],[-120.23702938748686,51.995704627035536],[-120.23702701520662,51.99572250879657],[-120.23702464292438,51.9957403905573],[-120.2370077323891,51.995757542850846],[-120.23700536009704,51.99577542461062],[-120.2370029878031,51.99579330637006],[-120.2370007637757,51.995810070519255],[-120.23699839147795,51.99582795227815],[-120.23699601917824,51.99584583403659],[-120.23699364687657,51.99586371579478],[-120.23699142284201,51.995880479942834],[-120.23698905053658,51.995898361700384],[-120.2369866782292,51.995916243457565],[-120.23698430591988,51.995934125214525],[-120.23698193360859,51.995952006971144],[-120.23697956129537,51.99596988872735],[-120.23697718898019,51.99598777048329],[-120.2369602783301,51.99600492276624],[-120.2369579060051,51.99602280452123],[-120.23695553367814,51.99604068627593],[-120.23695256826672,51.99606303846879],[-120.23695019593538,51.99608092022275],[-120.23694789714445,51.99609824764202],[-120.2369599896369,51.99611741320412],[-120.23695761730565,51.99613529495737],[-120.23695531851482,51.99615262237602],[-120.23695294617971,51.9961705041286],[-120.23695050030021,51.99618894021521],[-120.23694820150371,51.99620626763289],[-120.23694575562016,51.99622470371881],[-120.23694338327722,51.99624258547011],[-120.23694101093233,51.996260467221134],[-120.23693863858547,51.99627834897178],[-120.23693626623667,51.996296230722166],[-120.23693389388595,51.99631411247213],[-120.23693152153326,51.99633199422178],[-120.23692914917862,51.99634987597119],[-120.23692677682205,51.99636775772024],[-120.236938942923,51.99638636894586],[-120.23693657056846,51.996404250694575],[-120.23693479130125,51.996417662005875],[-120.23693241894328,51.996435543754004],[-120.23693004658337,51.99645342550177],[-120.23692767422152,51.996471307249266],[-120.23692515358489,51.996490306605544],[-120.23692278121904,51.99650818835238],[-120.23693494735754,51.996526799576195],[-120.23693257499369,51.99654468132264],[-120.2369302026279,51.99656256306871],[-120.2369276819871,51.996581562423685],[-120.23692530961728,51.99659944416912],[-120.23692293724551,51.99661732591426],[-120.23693510341458,51.99663593713626],[-120.23693273104485,51.99665381888109],[-120.23693035867319,51.99667170062545],[-120.23692798629956,51.99668958236958],[-120.23692561392397,51.996707464113406],[-120.23693770538965,51.99672663860865],[-120.23693533301605,51.99674452035205],[-120.2369329606405,51.99676240209513],[-120.23693043998934,51.99678140144678],[-120.23692806760975,51.996799283189226],[-120.23692569522824,51.99681716493134],[-120.23693786145434,51.996835776149915],[-120.23693548907485,51.996853657891634],[-120.23693311669342,51.996871539633034],[-120.23693067076611,51.996889975708136],[-120.23692837192469,51.996907303114945],[-120.23694105772881,51.996921998230604],[-120.23693868534593,51.99693987997106],[-120.2369363129611,51.99695776171122],[-120.23693394057436,51.99697564345104],[-120.23693156818564,51.996993525190526],[-120.23694358618941,51.99701325401439],[-120.23694121380261,51.99703113575348],[-120.23693884141386,51.99704901749236],[-120.23693632074865,51.997068016839485],[-120.2369484870494,51.99708662805285],[-120.23694611466061,51.997104509790965],[-120.23694374226986,51.99712239152876],[-120.23694136987717,51.997140273266226],[-120.23695346147,51.997159447752644],[-120.23695108907928,51.99717732948975],[-120.23694871668663,51.99719521122649],[-120.23694619601727,51.99721421057144],[-120.23694382362059,51.997232092307506],[-120.23695658306875,51.99724623308352],[-120.2369542106746,51.997264114819345],[-120.23695176473416,51.99728255088866],[-120.23696393110146,51.99730116209693],[-120.23696155870732,51.99731904383208],[-120.23695918631122,51.997336925566906],[-120.23695666563826,51.99735592490971],[-120.23696883202814,51.997374536116446],[-120.23696631135721,51.99739353545893],[-120.23696393895901,51.99741141719259],[-120.23696156655886,51.997429298926015],[-120.23697373297136,51.997447910131015],[-120.23697136057326,51.99746579186407],[-120.23696891344255,51.99748423687141],[-120.23698167297277,51.99749837764153],[-120.23697915230026,51.99751737698223],[-120.23697677990059,51.997535258714315],[-120.23698894634921,51.997553869916025],[-120.23698650040723,51.99757230598137],[-120.23698412800756,51.99759018771285],[-120.23698175560598,51.99760806944392],[-120.23699392207708,51.99762668064389],[-120.23699140140248,51.9976456799828],[-120.23698902900084,51.997663561713146],[-120.23700104721564,51.99768329051962],[-120.23699867481591,51.99770117224959],[-120.23699689551485,51.99771458354687],[-120.23700906202217,51.99773319474353],[-120.23700661489244,51.99775163974735],[-120.23700424249128,51.997769521476435],[-120.23701626074221,51.99778925027951],[-120.23701388834297,51.99780713200818],[-120.23701151594179,51.99782501373657],[-120.23702360894185,51.997844179263474],[-120.23702123654266,51.997862060991494],[-120.23701945724196,51.997875472287184],[-120.23703162380392,51.99789408347896],[-120.23702969623015,51.99790861238248],[-120.23702717555484,51.9979276117175],[-120.23703934213465,51.997946222907586],[-120.23703696973632,51.997964104634356],[-120.23703452260544,51.99798254963517],[-120.23704668920374,51.99800116082349],[-120.23704416853049,51.998020160157395],[-120.23704179613011,51.99803804188311],[-120.23705396274704,51.99805665306991],[-120.23705151680433,51.99807508912866],[-120.23704973750426,51.9980885004224],[-120.23706190413868,51.99810711160756],[-120.23705938346595,51.998126110940035],[-120.23707155011499,51.99814472212355],[-120.2370690294443,51.998163721455654],[-120.23706665704631,51.99818160317962],[-120.237078823714,51.99820021436146],[-120.23707637658754,51.998218659359395],[-120.23707385591464,51.998237658690414],[-120.23708602260108,51.99825626987056],[-120.23708424330421,51.9982696811628],[-120.23709633645986,51.99828884667465],[-120.23709396406629,51.9983067283974],[-120.23709159167075,51.99832461011971],[-120.23710420321261,51.998339868473685],[-120.2371018308195,51.998357750195694],[-120.23711384927704,51.998377478978554],[-120.23711147688583,51.998395360700194],[-120.23710910449266,51.99841324242156],[-120.23712178961043,51.998427946439094],[-120.23711926894525,51.998446945767604],[-120.23713143570956,51.998465556939614],[-120.23712906332076,51.998483438660244],[-120.2371266173859,51.998501874713924],[-120.23713878416872,51.99852048588428],[-120.23713626350559,51.99853948521176],[-120.23714843030304,51.99855809638045],[-120.23714650273887,51.998572625277674],[-120.23715866954996,51.99859123644474],[-120.23715622243537,51.998609681438154],[-120.23716824098712,51.998629410211066],[-120.23716646170035,51.99864282150026],[-120.23717855499584,51.998661986997405],[-120.2371761826157,51.99867986871604],[-120.23718879429012,51.99869512705604],[-120.23718627363871,51.99871412638173],[-120.23719844050636,51.99873273754238],[-120.23719599340066,51.99875118253439],[-120.2372080120095,51.998770911300795],[-120.23722077199452,51.998785052028765],[-120.23721891917408,51.99879901765019],[-120.23723093780654,51.99881874641338],[-120.23724295644988,51.99883847517497],[-120.23724058408655,51.99885635689215],[-120.23725267628784,51.99887553131887],[-120.2372507487444,51.99889006021384],[-120.23726284214568,51.99890922569805],[-120.23727500910057,51.99892783684748],[-120.23727308156228,51.9989423657422],[-120.23728510025884,51.998962094497294],[-120.23728272790612,51.99897997621341],[-120.23729541324765,51.99899468020463],[-120.23730743196877,51.999014408956604],[-120.23730505962239,51.99903229067236],[-120.23731715308708,51.9990514561485],[-120.23731463247105,51.999070455471205],[-120.23732783739241,51.99908124336204],[-120.23734000442317,51.99909985450191],[-120.23733755735682,51.999118299491094],[-120.23734957613118,51.99913802823648],[-120.23734720379534,51.99915590995127],[-120.23735929731292,51.99917507542101],[-120.23735751806272,51.99918848670684],[-120.2373695368655,51.999208215448895],[-120.23736760934634,51.999222744341694],[-120.23737977643367,51.999241355475014],[-120.23737740410459,51.99925923718882],[-120.23738949647803,51.999278411594545],[-120.23738697588043,51.99929741091505],[-120.2373997360779,51.99931155161681],[-120.23739729021112,51.99932998766307],[-120.23739491788442,51.99934786937591],[-120.23740708501839,51.999366480504335],[-120.23740456442336,51.99938547982382],[-120.23740219209662,51.99940336153592],[-120.23741435924923,51.99942197266273],[-120.23741183865417,51.99944097198145],[-120.23740946632742,51.99945885369283],[-120.2374070939987,51.99947673540393],[-120.23741926117387,51.999495346529024],[-120.23741688884719,51.9995132282398],[-120.23741451651857,51.9995311099502],[-120.237412144188,51.999548991660205],[-120.23740977185547,51.999566873370085],[-120.23740739952098,51.99958475507946],[-120.23740502718455,51.99960263678862],[-120.23740258011749,51.99962108177113],[-120.23740028250585,51.99963840020588],[-120.2373979101636,51.999656281913985],[-120.23739553781937,51.999674163621755],[-120.2373931654732,51.99969204532928],[-120.23739079312509,51.99970992703647],[-120.23738842077502,51.999727808743316],[-120.237386048423,51.999745690449785],[-120.23738367606902,51.99976357215601],[-120.23738130371311,51.99978145386187],[-120.23737893135525,51.99979933556746],[-120.23737655899545,51.999817217272664],[-120.23737418663367,51.99983509897754],[-120.23737181426995,51.99985298068216],[-120.23736944190429,51.999870862386395],[-120.23736706953669,51.999888744090335],[-120.23706804255107,52.00390758999832],[-120.23921359731277,52.00472678473348],[-120.242503559746,52.00817680790828],[-120.24304199834219,52.00853229792919],[-120.24377026792786,52.00933324851675],[-120.2510514096021,52.011725641664],[-120.25750809869626,52.013826021539316],[-120.26430085142017,52.016268469355346],[-120.27083865083189,52.01865107222902],[-120.27473653146458,52.01884982518196],[-120.27947193292488,52.01824865712342],[-120.28093532448547,52.018032374442534],[-120.28569650824778,52.016232460791464],[-120.2936646007253,52.0154269467454],[-120.2954338927041,52.015443918594116],[-120.30247420177643,52.0182472633814],[-120.30996611163921,52.021074725679085],[-120.31300912389248,52.02165337722631],[-120.31392976524887,52.02211458275351],[-120.35149189421563,52.00913620259688],[-120.37413610340134,52.02303389270675],[-120.37255298319128,52.02485514053275],[-120.3715123347809,52.025879544398045],[-120.3697382963267,52.02781626976083],[-120.36813268098295,52.02992095192346],[-120.3659924684116,52.03162990103515],[-120.36338540855483,52.03298523175311],[-120.36057887991187,52.034859965185625],[-120.35943090906017,52.03862196097289],[-120.35819663461524,52.041018082699274],[-120.35679484786642,52.04312420241821],[-120.35676040178177,52.04575465871179],[-120.35730093178016,52.04666756043522],[-120.35903748697771,52.049875312665264],[-120.35974511473884,52.051983094663235],[-120.35990109387625,52.054728028427796],[-120.3600637352287,52.058098130002264],[-120.35955131169841,52.06237717446976],[-120.35702813736864,52.06453628379509],[-120.35440303928068,52.06601263903269],[-120.35262816051817,52.06748680550777],[-120.34954731778065,52.06987093218405],[-120.35037339005946,52.07050597188932],[-120.35072052704093,52.073129805219324],[-120.3503095482774,52.07707184058046],[-120.34842431139903,52.07848823132864],[-120.34638661773299,52.07893651198794],[-120.34637598036474,52.08036732956121],[-120.34673226459347,52.081682880134686],[-120.34753444353437,52.083739653833405],[-120.34982972722699,52.08637924519465],[-120.34952531801402,52.088489650473015],[-120.34811458639417,52.0905367376625],[-120.34679940702999,52.09218751000898],[-120.32341911401663,52.09243357611721],[-120.32457996700705,52.15424149108595],[-120.32826908047772,52.15466934997582],[-120.33725491237908,52.155924225808796],[-120.34581184402501,52.155856000890886],[-120.35152669038003,52.15246827714677],[-120.35595067756495,52.148612205791615],[-120.35980209288724,52.14474934829066],[-120.36451105916123,52.14083495955352],[-120.37077374567738,52.13704523497755],[-120.37943075839935,52.135835170647894],[-120.38719626536309,52.13742156170624],[-120.39412461790644,52.14026179912007],[-120.40049031716735,52.142577680420985],[-120.40678941620934,52.14564123578848],[-120.40805790229201,52.14718791898022],[-120.40631534262032,52.15215098127752],[-120.4028998516931,52.15766827451923],[-120.40078134112981,52.16314498833823],[-120.39784828286277,52.168214335412536],[-120.39698932988712,52.16951548337836],[-120.39064381541073,52.17324694975084],[-120.39039096299545,52.17531026486077],[-120.39130744556614,52.176740992268286],[-120.3935234101942,52.17857620787623],[-120.3962341740296,52.185440749051565],[-120.40045842366843,52.188229159958745],[-120.40067554387664,52.188368464116266],[-120.40373004506468,52.1902053044745],[-120.40369913819964,52.192147763503286],[-120.40192863584419,52.192653465098424],[-120.40015790791699,52.19282005128961],[-120.39829076541412,52.194071157622325],[-120.3971663479404,52.19492136090468],[-120.39325810174508,52.19490701880058],[-120.38758595124885,52.19557155877917],[-120.38532815044766,52.197676224084596],[-120.38504798415623,52.198475173904804],[-120.38520848400564,52.2000693220711],[-120.38350816050949,52.20240688976219],[-120.38331593470052,52.20354694739656],[-120.38459936981545,52.205438090066934],[-120.386058839136,52.20767291892942],[-120.3864168740939,52.20967141884407],[-120.3888112481055,52.21116326138498],[-120.39244153879456,52.21129126871007],[-120.39580142119644,52.2096487741184],[-120.39823523520099,52.208228937619864],[-120.4011069380819,52.20989774494813],[-120.40406784703768,52.21133349367428],[-120.4058323006975,52.211221059321275],[-120.40863936134117,52.21043763827065],[-120.41188798421203,52.21021872864031],[-120.41487918833909,52.20971567696418],[-120.41536873929319,52.20979614581929],[-120.4202282842702,52.2111079146876],[-120.42459256219664,52.212271277149],[-120.42513452634944,52.212629761616306],[-120.42661021510854,52.21315983747487],[-120.42910139687437,52.21493883716195],[-120.42852802816783,52.215850215214516],[-120.42730781394458,52.21664547526894],[-120.42655131415043,52.21795004787049],[-120.43134173306335,52.22209022348583],[-120.43432552000216,52.22758706799799],[-120.43632443263323,52.232740584986544],[-120.43981730780908,52.236807625289934],[-120.44364819769619,52.24088289810559],[-120.45077412247608,52.24440106096325],[-120.45706894016814,52.24752350801294],[-120.46279906207839,52.25058027488927],[-120.46750100907329,52.2545455907276],[-120.47015171507968,52.25878758418367],[-120.47542298440389,52.26291745432371],[-120.47564523658232,52.265667349109336],[-120.47629469031712,52.26680488102182],[-120.48175679280978,52.27002983913544],[-120.4874846661302,52.273716393931224],[-120.48960483053115,52.2751021426885],[-120.48904039245704,52.2764088682157],[-120.48631306101414,52.2789686096014],[-120.48639611611235,52.28039334130506],[-120.48756668837842,52.28114461565187],[-120.49462173315243,52.28448743508623],[-120.4933946732719,52.28579299307771],[-120.48490427142234,52.28826376343206],[-120.48274842677068,52.28945691654906],[-120.48145859350672,52.294819247724796],[-120.48052478043921,52.29613024899721],[-120.47349044486494,52.29940345337974],[-120.46741160221964,52.3024560258792],[-120.46627115525382,52.303764925015045],[-120.46633032896602,52.30514129388821],[-120.46782656932216,52.306458183773685],[-120.47310082927547,52.30876850426535],[-120.47724359276064,52.31312843027184],[-120.48326476121545,52.31744443409222],[-120.489735656703,52.32044226349477],[-120.49614691962111,52.32287463767185],[-120.50225781256607,52.32581801412572],[-120.50865785339197,52.3289282198648],[-120.51080990660456,52.329279312801184],[-120.51305618343568,52.32923790889235],[-120.52191512563432,52.32681601825389],[-120.5261354912362,52.32666817084152],[-120.53263296559614,52.32972085436557],[-120.53659838352367,52.33391242667719],[-120.53686480137343,52.334486049979766],[-120.52972592440098,52.33822209252032],[-120.5230840117425,52.340474594427846],[-120.51689250132814,52.34335409584496],[-120.5164291253499,52.34386624030519],[-120.51779897187596,52.34735760998022],[-120.52427120559213,52.351441562501286],[-120.53115338216132,52.353816307689485],[-120.53180262038501,52.35427982351029],[-120.53104686721228,52.35558493668085],[-120.52953834223155,52.35689274714939],[-120.52844413552658,52.36213901428213],[-120.5285065373346,52.367455041932644],[-120.52730886039656,52.37281557050943],[-120.52315179755831,52.37799977656454],[-120.52002772870804,52.383294516251894],[-120.51660731192923,52.38847567485202],[-120.51152306388808,52.39199270394468],[-120.50476236276644,52.39568029333545],[-120.49923301440097,52.3987367000178],[-120.49142270509235,52.40218435792321],[-120.48254589535466,52.4031117131441],[-120.47402988615174,52.404101137622895],[-120.46736831840738,52.40720567013114],[-120.46133276064569,52.411176857439344],[-120.45839718158422,52.41378244020073],[-120.45808117154587,52.41875794300641],[-120.45879934053532,52.420408535404675],[-120.4600840349909,52.42167633222297],[-120.4622261201832,52.42271236871135],[-120.47034126118429,52.42464250265957],[-120.47170963392873,52.427331951096555],[-120.47567849384814,52.43140725379036],[-120.48019524648976,52.435480307521],[-120.47980500185379,52.436792974138406],[-120.48092203588446,52.437993477167545],[-120.48296863820273,52.43863155720918],[-120.49156692810641,52.43970430163598],[-120.49592527584745,52.44064517846062],[-120.50150155440947,52.44524023380682],[-120.5030702087633,52.44661475777636],[-120.50938412820256,52.44938242139472],[-120.50937946386038,52.45069200455595],[-120.51003079969429,52.4520747633427],[-120.51455951528025,52.455747608430805],[-120.51511449819499,52.45614932794732],[-120.5188408400265,52.45754001943054],[-120.52754607898707,52.457458603895276],[-120.53613441118466,52.458295744394],[-120.54187770829597,52.461975035706466],[-120.5427766201174,52.46735629073441],[-120.54170200804248,52.472205801332244],[-120.5353768119665,52.47646281495497],[-120.5334950404477,52.47776499958578],[-120.53327167497118,52.48044986592182],[-120.53250781184562,52.48249883246095],[-120.52706561478232,52.485613178928425],[-120.52129754611958,52.48918749956401],[-120.5159293230941,52.493331316347145],[-120.51001707414414,52.49616533492059],[-120.50332019815959,52.498647200045],[-120.49665931124417,52.50061100350435],[-120.48803516671875,52.50125818865206],[-120.47906312276093,52.50173027092587],[-120.47051382178944,52.50385987095548],[-120.46169727248787,52.50438189221177],[-120.4530867464421,52.50525486842897],[-120.45064592223564,52.50604124077885],[-120.4461933394087,52.51001678048087],[-120.44321981255194,52.51434225156286],[-120.43960224586988,52.519633019180766],[-120.4345998756147,52.52303211674853],[-120.42783535603148,52.52482429442012],[-120.41901281618219,52.52660453685909],[-120.41093702048683,52.52821819401343],[-120.40368955128322,52.5297227490059],[-120.39487992620843,52.531273620100414],[-120.38615311816321,52.531620273779815],[-120.37850152377682,52.53009158515012],[-120.37180021563225,52.527307965843875],[-120.36478567337697,52.52590020719078],[-120.3638037092447,52.52852593385892],[-120.35999830175929,52.53358184726598],[-120.35628880417984,52.53778944939265],[-120.35199266756908,52.54284497351565],[-120.34609181049589,52.54949668013877],[-120.33947144577748,52.55327568716938],[-120.33527797633094,52.5571904712021],[-120.33211840107384,52.561689569330404],[-120.32923343077124,52.56623739732703],[-120.32531505348886,52.57152922016092],[-120.32303394628718,52.57408349772511],[-120.32049878750212,52.57486000559646],[-120.31957230058586,52.57435323742253],[-120.31962066408467,52.5737647117348],[-120.31934809728762,52.57380707202595],[-120.31881540785776,52.573686077791436],[-120.31867153710135,52.57365263077897],[-120.31855308193798,52.57320382516013],[-120.31851601708203,52.57247675672848],[-120.31828688472363,52.57174425737302],[-120.31808284703048,52.57126991041866],[-120.31787222178522,52.570845274246395],[-120.31784269925366,52.57050875150381],[-120.31782368224499,52.57031666925166],[-120.31767556871984,52.56964434161711],[-120.31733916738627,52.56916184170411],[-120.31696971354206,52.569152249722926],[-120.31674803212275,52.56925837257008],[-120.31668167940417,52.569423233462615],[-120.31653728517738,52.56961746092361],[-120.31617554190025,52.570220495912615],[-120.31568591010556,52.57089319178728],[-120.31475473379348,52.571093421460866],[-120.31373788484888,52.57126866322243],[-120.31350716483331,52.57267194487124],[-120.31375868223752,52.57323520163944],[-120.3139102806488,52.573545644489656],[-120.31403719658273,52.57404209655844],[-120.31406620647171,52.574158763401016],[-120.31398119477963,52.57468759702881],[-120.31390737462759,52.57513208628333],[-120.3135969476557,52.575683080552935],[-120.31348705183507,52.57617584115891],[-120.31337615215607,52.576452660487],[-120.31313189856334,52.57751064181821],[-120.31326953190802,52.578149853260136],[-120.31329872725854,52.57848860972837],[-120.31307698565199,52.57904169283102],[-120.31273018823973,52.57941943733163],[-120.3126262264899,52.579755623136194],[-120.31207943112297,52.580299012588576],[-120.31164728134311,52.580760859351116],[-120.31140334870736,52.58103398695369],[-120.31083725854839,52.58127564683816],[-120.31041619267687,52.58143049294895],[-120.3097765326986,52.581444224614025],[-120.30849773161448,52.581467762802205],[-120.30796919466074,52.58187316414874],[-120.30768780616867,52.581981410989755],[-120.30724801541176,52.582277011067305],[-120.30664936600236,52.58254010773045],[-120.3058330896311,52.58265482387586],[-120.30530478013345,52.582723450593036],[-120.30451760226067,52.58284238702905],[-120.30418455673662,52.58300432259579],[-120.3040329297723,52.58325215740277],[-120.30400038469494,52.583720026123395],[-120.30412945559824,52.583976521614645],[-120.3041630074464,52.584170442070445],[-120.30427351068205,52.58456659375761],[-120.30428850510796,52.58467695562057],[-120.30429978464744,52.584815255908964],[-120.30429959469544,52.584928248654165],[-120.30436628852031,52.58543076211442],[-120.30401512823184,52.58584032309023],[-120.30382268952685,52.58606030000087],[-120.30366733536043,52.58633606325126],[-120.3035111323771,52.586506644937415],[-120.3032168785024,52.58682284226116],[-120.3026025376594,52.587203220880305],[-120.30208900692655,52.587383320803795],[-120.30171194572532,52.587652735985664],[-120.30142678766526,52.58778889664987],[-120.30085901537063,52.588153554037476],[-120.30075679709685,52.58847576700217],[-120.3007695990732,52.58882553782247],[-120.30077076085689,52.58903979681408],[-120.30073686093576,52.58962903833421],[-120.300747216487,52.58966271150975],[-120.30055026134954,52.589804876521676],[-120.30010145150997,52.58994428210682],[-120.29959008898851,52.58999628315891],[-120.29931732441517,52.59003915923734],[-120.29891330641993,52.59006493429875],[-120.2984777259292,52.590104896649876],[-120.29793234137033,52.59018952579662],[-120.29717314855912,52.59031990945882],[-120.29608732839723,52.59022909039526],[-120.29499723150379,52.58961349067306],[-120.2947285279938,52.589180345197526],[-120.29470358593043,52.58914483246861],[-120.29402002075697,52.588930318447765],[-120.2933372739807,52.58848700922194],[-120.29243128884893,52.58827170979075],[-120.291474168349,52.58821751019168],[-120.290679471458,52.588725611311546],[-120.29026971102559,52.58923964713806],[-120.28929097292632,52.58934741766586],[-120.28833175697625,52.58919750251018],[-120.28720855647552,52.588942276653455],[-120.28678377994282,52.58890120614825],[-120.2866187954849,52.589025801795486],[-120.28636547625334,52.58947890598346],[-120.28582000065488,52.58956404163436],[-120.28475058637416,52.589572863523856],[-120.28387294129156,52.58958996931806],[-120.28384358141886,52.590143447961076],[-120.28424266444958,52.590710641938514],[-120.28490306610719,52.591321013128685],[-120.28503526795306,52.59144219316689],[-120.28508107746484,52.59176603645005],[-120.28527344323537,52.59232590060283],[-120.28523380794394,52.593957231623264],[-120.28518372171074,52.59477732207061],[-120.28489870976559,52.59568989766781],[-120.28560039458634,52.5966587365284],[-120.28621512868465,52.597167333854486],[-120.28664582709727,52.59816560426084],[-120.2870825322524,52.59889654583577],[-120.28753917073267,52.599255710133356],[-120.28764698453602,52.59933745804486],[-120.28798305556217,52.59993302474136],[-120.28800635902908,52.59998082725588],[-120.28836990664901,52.60070424409471],[-120.28804903589675,52.601552095458665],[-120.28766162711278,52.6018974284879],[-120.28725849929161,52.60224929434218],[-120.28688891426394,52.60290584752348],[-120.28650938970269,52.60374801364833],[-120.28624326623607,52.60463002968101],[-120.286149428037,52.60522194562822],[-120.28610434154625,52.60600460132014],[-120.28596403790681,52.60649979405804],[-120.28568103627401,52.60750804379002],[-120.28608610528923,52.60814297579626],[-120.28635299522227,52.60903481039827],[-120.28712870393913,52.609673286951015],[-120.28742362287939,52.60991038138299],[-120.28770045362144,52.61083924600956],[-120.28602210300396,52.611625056435756],[-120.28538732727972,52.61226579916084],[-120.28509108743317,52.61281687208186],[-120.2846829136297,52.61320559175057],[-120.28438563342928,52.61365316325592],[-120.28402485705547,52.61424267424669],[-120.28300448397913,52.61510231451188],[-120.28114616617673,52.615455321998496],[-120.27918493869493,52.61557836103313],[-120.27740240498262,52.61569721302971],[-120.27583934653408,52.61572897868563],[-120.27398663908825,52.61581734660549],[-120.27221056148298,52.61577675538297],[-120.27074188095396,52.616101519191005],[-120.26798899632077,52.61603815870739],[-120.26596594761128,52.616289501901605],[-120.26439851665445,52.616353519497274],[-120.26302049848694,52.61677653938093],[-120.2618658652988,52.61708348335969],[-120.26048719948278,52.61751094154851],[-120.25977966476994,52.61769425356785],[-120.25897974118685,52.61779149193227],[-120.25804309819375,52.61791178531397],[-120.2522571787399,52.617879106609855],[-120.25192219167948,52.617941304097975],[-120.25089326493368,52.61786414631371],[-120.2496941467307,52.61783817347953],[-120.24793632146434,52.61788189556265],[-120.24675478803765,52.618277328755596],[-120.2458880349228,52.61876081325271],[-120.24432830808567,52.619428791550874],[-120.24316505215448,52.620129265266534],[-120.24273045966031,52.62049013286669],[-120.2415337401793,52.62121817692793],[-120.24057774753248,52.621591516569175],[-120.24014083091973,52.62174872728975],[-120.23659310040512,52.62218175928463],[-120.2356995160989,52.622752685735996],[-120.23496081083124,52.6240475721871],[-120.23489325188959,52.62510013838043],[-120.23471941860676,52.62628014031776],[-120.2343387386405,52.62712155995037],[-120.23435139993217,52.628570541204354],[-120.23396730498065,52.62954729737981],[-120.23400991196829,52.63066378172816],[-120.23394555639545,52.63158212071056],[-120.2337835647486,52.63256366816737],[-120.23374810766506,52.63315734024909],[-120.23379620888568,52.63401264400877],[-120.23386463636585,52.63460695385611],[-120.23538233116753,52.636350727648505],[-120.23656821155393,52.63802241091399],[-120.23856502280657,52.63885760306696],[-120.23973824811775,52.63908029142343],[-120.24101224410629,52.639437249338116],[-120.24229452975882,52.6397327640431],[-120.24358615440872,52.63995899801619],[-120.24507872377893,52.64012710522303],[-120.24604734245902,52.640214814869964],[-120.24745131397209,52.64037907801461],[-120.24829287478265,52.64052797052409],[-120.24871959153965,52.64066876300831],[-120.24943722382385,52.64140806278389],[-120.249260866547,52.64238834339413],[-120.25041908898699,52.64294470128453],[-120.25182589710468,52.642978050496964],[-120.25319516153759,52.643401403939144],[-120.25501959963654,52.643643639178656],[-120.25651598421639,52.64400574383228],[-120.25862592063481,52.64477753483313],[-120.25967525343623,52.6452609646151],[-120.2611535963627,52.645758184569644],[-120.26330131057072,52.6461387413739],[-120.26565965547553,52.64638906370712],[-120.26648704066059,52.64686657176791],[-120.26772634242408,52.6478180296027],[-120.26832350967095,52.64868339494126],[-120.26860300744929,52.649480292856175],[-120.26940761499925,52.650350217592226],[-120.27130156435943,52.651185353674364],[-120.27396883850192,52.65190492001966],[-120.2753585371897,52.65206813116915],[-120.27584476135111,52.652320802546484],[-120.27642019821269,52.65246204099558],[-120.27728182889149,52.65290740616008],[-120.2782508068991,52.6532169174743],[-120.27925269471777,52.65372480727055],[-120.28060298387975,52.654072106728556],[-120.28158087924517,52.654093049430685],[-120.28320405400734,52.65384425697694],[-120.28422272271828,52.65389360367572],[-120.28515914805153,52.6540024382189],[-120.28701125714277,52.653819335925036],[-120.28834615832373,52.65350351211653],[-120.28994660372945,52.65331310998676],[-120.29056519718446,52.65335406669769],[-120.29157558712156,52.65346534444086],[-120.29227113125167,52.65382038320884],[-120.29261716083661,52.65434498197345],[-120.29251458050918,52.65511355403292],[-120.2917835233433,52.65546964408828],[-120.29042406386273,52.65552401147725],[-120.28751428140066,52.65617149165034],[-120.2871976171585,52.656873361985596],[-120.28639029755644,52.65768838689132],[-120.28543343438935,52.65806543532671],[-120.28407144918548,52.658804933771734],[-120.2831045692106,52.65981226950849],[-120.28195464688343,52.66018770587718],[-120.28070498438001,52.6606420171694],[-120.2801970865417,52.661216995760086],[-120.280093906991,52.66221041838777],[-120.2795318206043,52.66285695927506],[-120.27885240960315,52.66326948166943],[-120.27850649690558,52.66363314318652],[-120.27783450057707,52.6638790528644],[-120.27715950586102,52.664147300313296],[-120.27605457668649,52.66440738590463],[-120.27514969827438,52.66472731559686],[-120.27419651484067,52.664963910942646],[-120.27321296968556,52.665538026394835],[-120.27206300810072,52.66580093178158],[-120.2712981740587,52.666184485781876],[-120.27038204947654,52.66647684365494],[-120.26994802168677,52.666720900444616],[-120.26954205836884,52.66719908935117],[-120.26912060208936,52.66790364998794],[-120.26898126334916,52.66849949943484],[-120.26871892907758,52.66979094930868],[-120.26901933211307,52.67109822581561],[-120.26919742426567,52.6719873905269],[-120.2688728550166,52.673299395958374],[-120.26741385714486,52.67420206414738],[-120.26646541887574,52.6750662676483],[-120.26528302796414,52.67590098198686],[-120.26439493030382,52.67653650457893],[-120.26383467061372,52.677276959131845],[-120.26358538336743,52.677472728858454],[-120.2630785552409,52.67814721610142],[-120.26296234165176,52.6784591595409],[-120.26288698997234,52.67879896356595],[-120.26300005536743,52.679285772431584],[-120.26270688440947,52.68025130494538],[-120.26247368926076,52.680991517361925],[-120.26234921355984,52.68147564842548],[-120.26227047397906,52.68195134936766],[-120.26215326825942,52.68238129848031],[-120.26413841048416,52.68365441846714],[-120.26513635159536,52.68430668095866],[-120.26573326544059,52.684623288669314],[-120.26684545401189,52.68520018646475],[-120.26709443839388,52.68545022861521],[-120.26748290171281,52.68565820101713],[-120.26780604544824,52.68579887401356],[-120.26819712421951,52.68587654041304],[-120.26846305324808,52.68600034332774],[-120.26905469719338,52.68635658473854],[-120.26958690018793,52.68682347091802],[-120.2699862666895,52.687061203252036],[-120.27029928103947,52.68749933911687],[-120.2706025262686,52.68778857278657],[-120.27126822097614,52.688480133030446],[-120.27127308854132,52.689220230019124],[-120.2712185699633,52.68962683871387],[-120.2713227069073,52.68984839936137],[-120.27138758282246,52.69025186941735],[-120.2716527686683,52.69060332254585],[-120.27201536949548,52.690893770693826],[-120.27275368751913,52.69170975696125],[-120.27307549779485,52.691971781539124],[-120.2738077266119,52.69227866525526],[-120.27485914340016,52.69275635776706],[-120.27544307633099,52.693171206359274],[-120.27602709481194,52.693585497859964],[-120.2763296331884,52.69399161384022],[-120.2763748766436,52.694764040780875],[-120.27634733246697,52.69519165154673],[-120.27633475545856,52.695507547375165],[-120.27642987320284,52.69601875190461],[-120.27701872717519,52.6966193545049],[-120.2788651352884,52.698047830471424],[-120.28144716490331,52.699982277216726]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":39,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"5","REGION_NUMBER":5,"REGION_NAME":"Cariboo","REGION_NUMBER_NAME":"5- Cariboo","FEATURE_AREA_SQM":129902822539.641,"FEATURE_LENGTH_M":2590149.8606,"OBJECTID":3,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-120.28144716490331,52.699982277216726],[-120.28166686600646,52.70011896334786],[-120.2828756256696,52.701201315825905],[-120.28407887503646,52.70254761120022],[-120.28522032845889,52.70335566367774],[-120.28751046571567,52.70414004606085],[-120.28965042825898,52.70482428295139],[-120.29240122405507,52.70539101976941],[-120.29252745630977,52.70567097398517],[-120.28939316354857,52.70541324522477],[-120.28599549824204,52.705567562471295],[-120.28430391282484,52.70597954066127],[-120.28109902884427,52.70691559824003],[-120.28083291217072,52.70745857213733],[-120.27977185580527,52.708938031039374],[-120.27978189189712,52.70908525826075],[-120.27979267736787,52.709226891266205],[-120.27978935429807,52.709362778321],[-120.27964278064515,52.70945736295711],[-120.27942529333349,52.70952597887767],[-120.27922385804065,52.70958582765892],[-120.27900764078449,52.709644952325824],[-120.27880620434767,52.70970480038374],[-120.27859118315975,52.70975498786757],[-120.2783755628213,52.70980964315706],[-120.27815994193219,52.709864298047606],[-120.27794499342299,52.70991393028236],[-120.27773019529164,52.70996243613495],[-120.27751509610646,52.71001318462698],[-120.27730014729923,52.7100628067367],[-120.27707228707438,52.71009774579993],[-120.27684382766677,52.71013715261249],[-120.27663007392854,52.710177846037546],[-120.27640168914233,52.71021668899316],[-120.27618786032522,52.71025793566452],[-120.27597350645614,52.7103030960774],[-120.27575870413729,52.71035159830088],[-120.2755282201043,52.71040608713984],[-120.27532744966409,52.71046089800538],[-120.27511174612788,52.710516110250055],[-120.27489559396797,52.71057466429583],[-120.27469347288381,52.71063953641421],[-120.27447672046252,52.71070255786268],[-120.27427444836745,52.71076854629712],[-120.27408568486955,52.710844749175585],[-120.27392341428335,52.71094529549888],[-120.2738037651921,52.71106086533794],[-120.27366873445949,52.71118017878129],[-120.27353430214654,52.71129502388634],[-120.2734140518401,52.7114150614727],[-120.2732649104536,52.71152862772448],[-120.27310428320678,52.71161688539678],[-120.27290088169079,52.711691244768055],[-120.27268456955544,52.711750920664564],[-120.27248259058557,52.71181466293728],[-120.27227971084793,52.71188511604265],[-120.27206339806516,52.71194478184764],[-120.27184918123481,52.711988817618526],[-120.27162190568818,52.71201927786795],[-120.27139410593674,52.712053642847486],[-120.27118146197438,52.712085944006105],[-120.27095373584665,52.71211975407567],[-120.27072518447761,52.71215971188456],[-120.27051036689257,52.712208204419625],[-120.27028114077055,52.712253183565494],[-120.27006677067553,52.712298333104975],[-120.26985375036311,52.712333419974286],[-120.26962632166737,52.71236499338135],[-120.26938800798413,52.71236679840094],[-120.26916687502872,52.712351455353655],[-120.26892976073758,52.712344323145466],[-120.26869099737041,52.71234947785639],[-120.26845088458002,52.712364685404424],[-120.26825114423333,52.712411673749315],[-120.26813200110911,52.71252332358602],[-120.26803297434833,52.71270680574982],[-120.2683216362544,52.71388189379666],[-120.26953134658105,52.71495767180443],[-120.27062374477461,52.71557737021681],[-120.27147408511172,52.716559601479396],[-120.27230740808518,52.717447108578234],[-120.27338131166643,52.71842735221519],[-120.27596892965518,52.71921750517063],[-120.2820285784541,52.7208633853572],[-120.28365914405965,52.72135635842112],[-120.28512865746933,52.72194093332705],[-120.28718246354575,52.72271932955358],[-120.28924567727223,52.72353917983902],[-120.29094147552749,52.72399081239386],[-120.2924367140561,52.72416165650734],[-120.29348358054588,52.72423525953055],[-120.29498540604138,52.72435692048751],[-120.29654608888399,52.724483682500015],[-120.29834025516872,52.724756734146396],[-120.29961374458527,52.72491666656982],[-120.29888095500658,52.725723058148695],[-120.2979963988474,52.726662585439655],[-120.29751974760514,52.72711099869403],[-120.29678383489107,52.7280515817626],[-120.2961182592231,52.7291338963917],[-120.29569119237547,52.72999060173554],[-120.29452889990687,52.730556765287005],[-120.29280042041259,52.73157200038862],[-120.29177055322471,52.732371722606295],[-120.29181350123712,52.73305236637745],[-120.2921249137554,52.7340631734056],[-120.2925471109942,52.73457962086514],[-120.29232429684427,52.73557784504068],[-120.29144918109127,52.73633283569501],[-120.29051539952746,52.73685840538675],[-120.28829489653417,52.7375426125683],[-120.28719489351067,52.738197208590854],[-120.28698980615032,52.739061929472385],[-120.2869384640395,52.73922301771431],[-120.28689026313428,52.73936063915329],[-120.28682719469862,52.739498100783685],[-120.28673543935182,52.739627414584604],[-120.28661499688609,52.73974858049065],[-120.28648110776106,52.739858970109076],[-120.28636021524687,52.73998348684981],[-120.28622647429127,52.740092759121914],[-120.28602348305364,52.74016323470566],[-120.28581996823772,52.7402376150972],[-120.28564469073017,52.74032349429609],[-120.2854821858882,52.74042517169166],[-120.28534769337305,52.740540028112314],[-120.28519982843193,52.74064355402443],[-120.28499563731049,52.74072295515544],[-120.2847934644648,52.74078728041323],[-120.28459046756917,52.74085775348203],[-120.28441451239202,52.7409486529962],[-120.28426664377909,52.74105217770264],[-120.28411817716218,52.74116016141728],[-120.28392750154481,52.74124978302589],[-120.28373757328752,52.7413338191494],[-120.28363288202392,52.74144844875393],[-120.28361320555634,52.74159533420679],[-120.28357940915238,52.74173647428704],[-120.28351692512892,52.74186946578541],[-120.28345459035839,52.74200134020577],[-120.28337686392445,52.74213695951473],[-120.28328449389507,52.7422707385175],[-120.28319332048613,52.74239558117631],[-120.28310162216219,52.74252433783469],[-120.28299528126303,52.74265124519605],[-120.28287541832165,52.74276793888733],[-120.2827404624476,52.74288614323175],[-120.28260595482922,52.74300099631786],[-120.28247144648833,52.7431158492408],[-120.28235173048999,52.7432314253297],[-120.2822312654534,52.743352586439535],[-120.28209660531817,52.74346855593593],[-120.28196224382471,52.74358229120874],[-120.28181376140745,52.74369028075849],[-120.28165198313764,52.74378636746684],[-120.28144829377537,52.74386185711611],[-120.28124527677237,52.74393232424607],[-120.28104315856727,52.74399607991392],[-120.28082729325746,52.74405130145031],[-120.2806115783111,52.744105396623056],[-120.28039653600052,52.74415446924085],[-120.28016722330582,52.74419891273304],[-120.27995090781603,52.74425747479309],[-120.27977739899568,52.74432994066428],[-120.2796430286275,52.74444367321295],[-120.27952240274819,52.74456594846703],[-120.27938728217435,52.74468526583489],[-120.2792530594132,52.74479788088386],[-120.27910434188463,52.74490753798379],[-120.27896989242771,52.745021832697724],[-120.2788347688717,52.745141149392445],[-120.27871563648141,52.74525225351226],[-120.27856631687045,52.74536637799452],[-120.27841797066608,52.74547323715341],[-120.2782693984368,52.74558177612087],[-120.27814966417779,52.74569734772758],[-120.27798622110875,52.745805725441635],[-120.27782442623524,52.7459018067311],[-120.27756562627206,52.74605498942275],[-120.27736334273281,52.74611985567672],[-120.27716053360842,52.74618863562351],[-120.27694270447184,52.74625837120834],[-120.2767815048654,52.74634998294319],[-120.27666041592197,52.746475606160566],[-120.27662786571906,52.746607253568364],[-120.27663790102596,52.74675446841954],[-120.27664928373164,52.74689163900525],[-120.2766898810864,52.747033045746214],[-120.27673107805091,52.74716998437735],[-120.27680208939213,52.74730669103944],[-120.27692077956884,52.74742100417152],[-120.27708520342006,52.747527427032246],[-120.27723535737174,52.74762922057867],[-120.2773840138364,52.74774218413646],[-120.2775178009955,52.74785498654088],[-120.27765114061688,52.74797113091161],[-120.27776961078996,52.74808711419738],[-120.27790235138748,52.74820773528532],[-120.2780050550039,52.74833025059697],[-120.27812262831156,52.74845293562608],[-120.27820948849448,52.74858255496404],[-120.278295901003,52.748715516354814],[-120.27836759340775,52.74884719980027],[-120.27845385594776,52.7489812870088],[-120.27855663730048,52.749103247731554],[-120.27867473918647,52.749222018101],[-120.2787763234321,52.749352914783664],[-120.27886378657566,52.74947806547338],[-120.27890439370991,52.74961947120505],[-120.27897616499634,52.74975059122059],[-120.2791093635097,52.749867859744214],[-120.27925855753453,52.74997690671317],[-120.27940827593577,52.750082048375866],[-120.27955747027214,52.750191103885],[-120.27966018339524,52.75031361758533],[-120.27976177325121,52.75044451331934],[-120.27986456185208,52.75056647277718],[-120.28001301023347,52.75068111278173],[-120.28017737884025,52.75078809405374],[-120.28035946474596,52.75087401225751],[-120.28055911684174,52.75093999327311],[-120.28077865654386,52.75096871868881],[-120.28100238918006,52.7509661670414],[-120.28124091751131,52.750964338432254],[-120.28148064361814,52.75095357314649],[-120.28170811909598,52.750923094554025],[-120.28192661149357,52.75095963698929],[-120.28214323232456,52.75101014629334],[-120.28235813269416,52.75107349651407],[-120.28255831334386,52.751135560060334],[-120.28275564922902,52.751218855679824],[-120.28293878996331,52.75129695067522],[-120.28313657638267,52.751376894568175],[-120.28333571183893,52.75144677595388],[-120.28353514609428,52.75151443188198],[-120.28375311983875,52.75155487602128],[-120.28398746082654,52.75158431856126],[-120.28420461165047,52.7516309099735],[-120.2844202664457,52.75168867125321],[-120.28463569675779,52.75174811214306],[-120.28485359731644,52.751789117211395],[-120.28507321967881,52.75181727158521],[-120.28530995705452,52.75182883903064],[-120.28553788332327,52.75179500193869],[-120.28576057268968,52.75180026040944],[-120.28598026991307,52.751827859037306],[-120.28621341709879,52.75186623335329],[-120.28649095311154,52.75190677561694],[-120.28706664413683,52.752056325443014],[-120.28740932687744,52.75227769263884],[-120.28771360676014,52.75245220963747],[-120.28823429244889,52.75279020356582],[-120.28861770390756,52.75315241522759],[-120.28899768370732,52.753540308339076],[-120.28961405205266,52.75383124731745],[-120.29044288940646,52.75420395377302],[-120.29104806773003,52.75446735399589],[-120.29193320492449,52.75486471632208],[-120.29260513698544,52.75496327362673],[-120.29308747389803,52.75514308945989],[-120.29232447862232,52.75873068819226],[-120.2897655068513,52.7604884921862],[-120.28850931084419,52.76219404417509],[-120.28809988342852,52.764361437383684],[-120.28786263808905,52.76824619834096],[-120.28828691787076,52.77052904712322],[-120.28930911091484,52.77201919262032],[-120.29285421750008,52.773808355134584],[-120.29725538462382,52.77577233903188],[-120.30062931294853,52.77795482227044],[-120.3018303083873,52.779449589198244],[-120.30642044020901,52.78089845366951],[-120.30690286448622,52.780968583010896],[-120.31019439662825,52.781429949378904],[-120.31339589050344,52.78144950002766],[-120.3199062642525,52.78079425229202],[-120.32660358271652,52.779740163875296],[-120.33161832564346,52.77833722268069],[-120.33662328607828,52.77790271575189],[-120.33772853935741,52.77945426411749],[-120.33855823815112,52.78162260562137],[-120.33881419371782,52.7835107888517],[-120.34029936281834,52.78545784898121],[-120.34129851106611,52.78803569692282],[-120.33759421132042,52.789554189085884],[-120.33409882265306,52.790283912513864],[-120.32946310719878,52.79151705480249],[-120.32519703847422,52.793554366151405],[-120.32139160369707,52.79615914735961],[-120.32016183067142,52.79632604090371],[-120.31842062693174,52.79954632839427],[-120.31620242987793,52.80022060855412],[-120.31509329521631,52.801465850398706],[-120.31498690143239,52.80159279080771],[-120.31486636436841,52.80171398081484],[-120.31474590173278,52.80183460770588],[-120.31461136845533,52.80194893902904],[-120.31444854904743,52.802051769503045],[-120.31428647289238,52.80214902353921],[-120.31411092460363,52.80223549586729],[-120.3139342570902,52.80233035010369],[-120.31377210477264,52.80242815745766],[-120.31360935545281,52.80253043268986],[-120.3134748169403,52.802644762658566],[-120.3133402037673,52.802759646509806],[-120.31322040411783,52.80287524960195],[-120.31311385336811,52.80300329628704],[-120.31299338095221,52.80312393021467],[-120.31288817067771,52.803241923441824],[-120.31276717573304,52.80336646224007],[-120.31266129272099,52.80348948632759],[-120.3125548127138,52.80361697840969],[-120.31244892846875,52.803740002285615],[-120.31234244720285,52.803867494154304],[-120.31225070477215,52.80399626842212],[-120.31217362853701,52.804126870231045],[-120.31215454264625,52.80426984931284],[-120.31225807459103,52.80438787093999],[-120.31243978202328,52.80447876736336],[-120.31265618917811,52.80453312362102],[-120.31287431203022,52.80457462922565],[-120.31309131656708,52.804624516578926],[-120.31330712896872,52.80468333973084],[-120.31350641210204,52.80475429337874],[-120.31368872003442,52.804840719745535],[-120.31387110383426,52.80492658284338],[-120.31405266793057,52.80501859376352],[-120.31421911965299,52.80511211917431],[-120.31456721242458,52.805297100405916],[-120.31473307017772,52.80539509317596],[-120.31488307021442,52.805500185700694],[-120.31504840844458,52.80560208313699],[-120.3151988570877,52.80570382416408],[-120.31534841226278,52.805812267153335],[-120.31546595306196,52.805937144144714],[-120.31556897720729,52.80605906784994],[-120.31568674226975,52.80618227352782],[-120.31582096390832,52.806293901916824],[-120.3159708207634,52.80640011001724],[-120.31613668602219,52.80649810073398],[-120.31631796366638,52.806592342110804],[-120.31650184908007,52.806667039683674],[-120.31671760260025,52.806726410532214],[-120.31695063016569,52.806768073414894],[-120.31716988541301,52.80680119773196],[-120.31740648936261,52.80681605102265],[-120.31762991650402,52.80681789767202],[-120.31786696761174,52.80682939894689],[-120.31808331851097,52.806884308097345],[-120.31828262104455,52.80695524459781],[-120.31844961032475,52.80704485875535],[-120.31858324609414,52.80716095204256],[-120.31859403489156,52.80730369825801],[-120.31844661638604,52.80740278452457],[-120.31821886627088,52.80743333328443],[-120.31798300345585,52.807412896491634],[-120.31789507575681,52.80740132743855],[-120.31776314854405,52.80738424182216],[-120.31752728621834,52.807363804112974],[-120.31730623998553,52.80734408481562],[-120.31706911107989,52.80733314539416],[-120.31684255232815,52.807354755260576],[-120.31661495032482,52.8073841838814],[-120.31638965824646,52.80739629367177],[-120.31615141226678,52.80739372563203],[-120.31592500175054,52.80741421669965],[-120.31569724977047,52.80744476056629],[-120.31546949746455,52.80747530399027],[-120.31524107355855,52.807510878055105],[-120.3150134696193,52.807540303567365],[-120.31478698385013,52.80756134648226],[-120.3145617642512,52.807572898718206],[-120.31432292114084,52.807574795065875],[-120.3141005336696,52.807565122953314],[-120.31386407579522,52.807549145981625],[-120.31362642544254,52.807542104721456],[-120.31340239833388,52.80754471854472],[-120.31316221348278,52.80755666573949],[-120.31293758986924,52.807563746767165],[-120.31271117690935,52.8075842316329],[-120.31247106560232,52.807595623369956],[-120.31224509960461,52.80761275627018],[-120.31201928254983,52.80762877171382],[-120.31179160179344,52.80765874501859],[-120.31156324900692,52.80769374894278],[-120.31134725030324,52.80774790736592],[-120.31113065565225,52.807806524533994],[-120.3109557483042,52.80788796970356],[-120.3107929714274,52.80799024066884],[-120.31058902732228,52.80806577778618],[-120.31040079353374,52.808135332189266],[-120.3101827026816,52.80820512671903],[-120.30999499034183,52.808270766431804],[-120.30977712250944,52.80833888020623],[-120.30958866181167,52.80841011328958],[-120.30938493796154,52.80848396829967],[-120.309181735016,52.808553917860685],[-120.30899275074829,52.80862905506914],[-120.3088170898935,52.808716082092246],[-120.30863956251567,52.80881707601902],[-120.30847752265618,52.80891375863064],[-120.3083013378846,52.809004689953554],[-120.30813914731627,52.80910248910197],[-120.30796161672818,52.80920348197814],[-120.30780024604628,52.80929513259483],[-120.3076232368117,52.8093922109269],[-120.30746126649609,52.80948833806046],[-120.30729914739057,52.809585573042426],[-120.30713635528316,52.80968783882426],[-120.30696001400275,52.80977989403807],[-120.30678389646265,52.809870268993734],[-120.30658008555935,52.80994468204034],[-120.30637888694632,52.809999542542236],[-120.30616212357191,52.81005927640477],[-120.30594551007718,52.810117883916725],[-120.30573061231429,52.810163649861494],[-120.30550216591313,52.81019920491047],[-120.30527394369354,52.81023307952962],[-120.30506106098869,52.810263760129544],[-120.30483194214415,52.810304335951635],[-120.30460364356965,52.81033877223836],[-120.30438881852074,52.810383972747005],[-120.30418686713222,52.81044442346039],[-120.30399659687762,52.81052904264418],[-120.30380684799492,52.81060975645209],[-120.30360243095238,52.81068863232787],[-120.30341342741733,52.81076376044918],[-120.30322375047434,52.810843919266155],[-120.30303340124759,52.810929099838745],[-120.30285719656501,52.81102002287112],[-120.30270912999349,52.811123566096036],[-120.30257431173614,52.81123955397442],[-120.30248267458444,52.81136719404909],[-120.30239081220269,52.81149651401926],[-120.30231301940391,52.8116321397145],[-120.30226456162076,52.81177144092581],[-120.30223151830063,52.81190699486818],[-120.30219765249142,52.812048696789006],[-120.30216393705062,52.81218927274538],[-120.3021301460905,52.81233041165016],[-120.30205294855193,52.812461569078586],[-120.30191961834487,52.81256638605323],[-120.30174138688983,52.81267239134933],[-120.30159338718657,52.81277537008611],[-120.30144538676933,52.81287834862945],[-120.30128197038896,52.812985074090506],[-120.30111974861993,52.81308286328781],[-120.30094420282529,52.81316876127421],[-120.30074021655821,52.81324428102542],[-120.30055074833962,52.813322755422206],[-120.30036157832343,52.813398995504464],[-120.30015706623506,52.8134784282073],[-120.29996804428635,52.8135535506457],[-120.29976472764827,52.813624037707],[-120.2995622318337,52.813688385374405],[-120.29934611343833,52.81374307553408],[-120.29913006863282,52.81379721126168],[-120.29891462243094,52.813846869652714],[-120.29869977251062,52.81389206858292],[-120.29847197365535,52.81392257889612],[-120.29823130022805,52.81393784648616],[-120.29800537030556,52.81395438893358],[-120.29777831821703,52.81397931290442],[-120.29753592408075,52.814007429021316],[-120.29732032543238,52.8140582014779],[-120.29724610066768,52.81416701563881],[-120.29731624121317,52.814311531802396],[-120.29743278131807,52.81444368218246],[-120.2976149485578,52.814531249972674],[-120.29781559725853,52.814592176828214],[-120.29803248559944,52.81464320870001],[-120.29825012200506,52.81468865517528],[-120.29846768472024,52.81473465527736],[-120.29869939270064,52.814786407171106],[-120.29891658206941,52.814835203404535],[-120.29911693508181,52.81489836202282],[-120.29929993046957,52.81497977920639],[-120.29946519287735,52.81508226093752],[-120.29961503988747,52.815188489316334],[-120.29977978011219,52.8152948845592],[-120.29991436187666,52.81540374244722],[-120.30006383806918,52.81551275826387],[-120.30022910437408,52.815615238884476],[-120.30041255212878,52.81569331223009],[-120.30062788053377,52.81575606331086],[-120.3008443298138,52.815810440952276],[-120.30106070432757,52.8158653811616],[-120.3012623361401,52.81591903709565],[-120.30147931065461,52.815969499586586],[-120.30171237379787,52.81601119247434],[-120.3019306187658,52.81605216407716],[-120.30214931238896,52.816089784264896],[-120.30238222743712,52.816132592822264],[-120.30260099597297,52.81616965813317],[-120.30282028836866,52.81620280905504],[-120.30305499737372,52.81623221223228],[-120.30327682995795,52.81624637323541],[-120.30351333204176,52.81626237144661],[-120.30373628581646,52.8162681495804],[-120.30397398311341,52.81627521082615],[-120.30421287535921,52.81627333554856],[-120.30443694883526,52.81627073928013],[-120.30467584103572,52.81626886306046],[-120.30489991446014,52.816266265908354],[-120.30513880661519,52.816264388746546],[-120.30536362663096,52.8162562056771],[-120.30560371328764,52.816245391515224],[-120.30582778653238,52.81624279259202],[-120.30606563334415,52.81624873259546],[-120.30628731770828,52.81626400491724],[-120.30652322382446,52.81628446509623],[-120.30696427886572,52.816332325695456],[-120.3074272448933,52.816327842356884],[-120.30788976303548,52.81632670822227],[-120.30835332590722,52.81631775319193],[-120.30881756075414,52.8163037653131],[-120.3092830631221,52.81628028546687],[-120.30974662519732,52.816271324934476],[-120.31021093308676,52.816256777507064],[-120.31068931355793,52.81624853302798],[-120.31113626601267,52.81625225145272],[-120.3116111402787,52.81627025751593],[-120.31206813901673,52.81631043646129],[-120.3125227523497,52.81636848587885],[-120.31297334040747,52.81645669297331],[-120.31337499974516,52.816576250712885],[-120.31375617607989,52.81673753439064],[-120.31410384038047,52.81692642070051],[-120.31442261481023,52.81710828238357],[-120.31476916752963,52.817305539841115],[-120.31489642869167,52.81735781031479],[-120.31499613864904,52.817393004053436],[-120.31509517732337,52.81743322875681],[-120.31517895080175,52.81747607634637],[-120.31527761775344,52.81751908897144],[-120.3153766569855,52.817559313434124],[-120.31547644294007,52.81759394378291],[-120.31557540859633,52.81763472211717],[-120.31567526882398,52.817668798254026],[-120.31577550126782,52.81770008622596],[-120.31587506369073,52.81773639622922],[-120.3159759677887,52.817762652974935],[-120.31609161755252,52.81779018270981],[-120.31619416146779,52.817804152055395],[-120.31631152493611,52.81781884031798],[-120.31642769612856,52.81784246462049],[-120.31652979315344,52.81785978473133],[-120.3166459645781,52.81788340881726],[-120.31674746564367,52.81790519681787],[-120.3168630411783,52.81793328876827],[-120.31697980910967,52.81795244444223],[-120.3170812353997,52.81797479513152],[-120.31719800354254,52.817993950587926],[-120.31729995221991,52.818012387047794],[-120.3174168695831,52.8180304252654],[-120.31753304196306,52.81805404847092],[-120.31763387392081,52.818080857828726],[-120.3177500465581,52.81810448081879],[-120.31785035664586,52.81813520403177],[-120.31795185892489,52.818156990987546],[-120.31806683992217,52.81818954983375],[-120.3181682673447,52.81821189958048],[-120.31828384464471,52.818239990126635],[-120.31838519839928,52.81826289372802],[-120.31850152093966,52.81828539894985],[-120.31860347087607,52.81830383427426],[-120.31871912380052,52.818331361411126],[-120.31881988207036,52.81835873272468],[-120.31893501325402,52.81839017369398],[-120.31903532486598,52.81842089588892],[-120.31911954997474,52.818460398507895],[-120.3192175533854,52.81850842992789],[-120.3193174185643,52.81854250294752],[-120.31941705985334,52.81857825588389],[-120.31951662742193,52.818614562778265],[-120.31961701505762,52.818644721492156],[-120.31971673191278,52.818679911192206],[-120.31981644893234,52.81871510080677],[-120.31991668686818,52.81874638522194],[-120.32003167095164,52.8187789421314],[-120.32013317587466,52.818800727192276],[-120.32024883113179,52.81882825281338],[-120.32035137890107,52.81884221851832],[-120.32046874665377,52.81885690261528],[-120.32049756671296,52.8188644876735],[-120.32058551872959,52.818876054691486],[-120.3207034824014,52.818886270456694],[-120.32080543472381,52.81890470386181],[-120.3209228028045,52.818919387504216],[-120.32104017096592,52.8189340710292],[-120.32114227247301,52.8189513871165],[-120.32125964079795,52.81896607042174],[-120.32137760487981,52.818976285508974],[-120.32149452660605,52.81899431965456],[-120.32159647952813,52.819012752371385],[-120.32171444381962,52.81902296711994],[-120.32183419505508,52.8190197774418],[-120.32195335065619,52.819021055744905],[-120.322057090658,52.81902608375174],[-120.3221762462834,52.81902736182854],[-120.32229540191592,52.81902863978436],[-120.32241396198712,52.81903438572499],[-120.32253371320233,52.819031195333395],[-120.32263812268984,52.81903120067533],[-120.32275727834688,52.81903247816247],[-120.32287643401108,52.81903375552869],[-120.32299320765088,52.81905290520795],[-120.32309575685767,52.81906686851381],[-120.32321253068643,52.81908601797443],[-120.32332870914627,52.81910963542877],[-120.32339737637673,52.819153993041816],[-120.323464033474,52.81921343495413],[-120.32353076459331,52.81927232278068],[-120.32359764594983,52.819330084603095],[-120.3236650479041,52.819383941256376],[-120.32373125915593,52.81944673409128],[-120.32376708591347,52.819513675901],[-120.32378801753525,52.81958046261841],[-120.32380850384008,52.81965059147618],[-120.32384410700882,52.819719213263284],[-120.32386504004273,52.81978599102197],[-120.32388612080779,52.81985166068251],[-120.32392179929231,52.81991971945526],[-120.32397222442678,52.81998905029878],[-120.32400849857929,52.8200526409286],[-120.32402824001376,52.820128363801075],[-120.32406451436809,52.82019195440783],[-120.32414726030689,52.82024261471483],[-120.32419880196765,52.82030357220714],[-120.32424974838078,52.82036899778544],[-120.32430129034056,52.82042995522774],[-120.32436854607334,52.82048492846678],[-120.3244506963739,52.820540065597726],[-120.32451862285919,52.82059000765348],[-120.32460181543925,52.820637325479616],[-120.32469938350259,52.820688703340124],[-120.32476730932468,52.820738654183394],[-120.32484946181935,52.82079378209013],[-120.32494911299709,52.820829530279504],[-120.32504764871514,52.82087365162853],[-120.32513143893549,52.82091649202101],[-120.32521463283123,52.82096380940299],[-120.32531383943305,52.821002899428265],[-120.32541356649351,52.82103808423619],[-120.32549735621335,52.821080933299164],[-120.32558010557604,52.82113159256737],[-120.32566270513006,52.821183377740766],[-120.32574590132539,52.821230685801936],[-120.3258445876033,52.82127368944172],[-120.3259277829858,52.821321006307514],[-120.32601112854934,52.82136719714737],[-120.32610899639442,52.82141634869012],[-120.32617692621449,52.82146628975834],[-120.32626012234078,52.821513606382624],[-120.32635992636851,52.82154822739245],[-120.32647365756316,52.82159027715321],[-120.32658872929966,52.821622264598076],[-120.32668801248984,52.821660799399],[-120.3267722510736,52.821700296445215],[-120.32687198096565,52.82173547999865],[-120.3269710420964,52.82177568563429],[-120.3270703259886,52.821814220108074],[-120.3271687911886,52.8218589026322],[-120.32725377567571,52.8218928052399],[-120.3273529113226,52.821932456502246],[-120.32745264223574,52.82196763955717],[-120.32755289340619,52.82199891738695],[-120.32766685071975,52.822039285965595],[-120.32775124090942,52.82207765633278],[-120.3278344399726,52.82212497182306],[-120.32790192666089,52.82217826296348],[-120.32798341597092,52.822238419734155],[-120.32805075307857,52.82229283675251],[-120.3281176452847,52.822350595887926],[-120.32818431394756,52.82241003499804],[-120.32825180033338,52.822463334863805],[-120.32831802310977,52.822526124987654],[-120.3283853622879,52.82258053286777],[-120.32846759677871,52.822635104129965],[-120.32853493512947,52.82268952085683],[-120.32861754247324,52.82274129496328],[-120.3287020086809,52.82277911058213],[-120.32880285762522,52.82280591920176],[-120.32892023918397,52.82282059481214],[-120.32903702589525,52.82283973843337],[-120.3291532177949,52.822863350066896],[-120.32926955854924,52.822885844552836],[-120.32937092922965,52.82290873860142],[-120.32948719645704,52.822931786919156],[-120.3295879724911,52.82295914890989],[-120.32970475988097,52.82297829186523],[-120.32980568487682,52.82300453663544],[-120.32992143152157,52.82303149860503],[-120.33002168699988,52.82306277430557],[-120.33010489168983,52.823110079220676],[-120.33018698069627,52.82316576629327],[-120.33023912932042,52.82322225288621],[-120.33027415100206,52.82329534069861],[-120.33030991749624,52.82336283439449],[-120.33033093618846,52.8234290567952],[-120.33035188000115,52.82349584217412],[-120.33037185792645,52.82356988379446],[-120.33037768391952,52.82363817706338],[-120.33036801841837,52.82371078421845],[-120.33035924508886,52.82377668917101],[-120.33033557497302,52.82384243987269],[-120.33028211359967,52.823907864188065],[-120.33022842841032,52.82397496849363],[-120.33017563529091,52.82403537057584],[-120.33010802012436,52.82409505537142],[-120.33004159445157,52.82414580386668],[-120.329959305702,52.82420365426927],[-120.32989243353956,52.82425775377318],[-120.3298112591542,52.824307230795284],[-120.32972956465822,52.82436061290308],[-120.32964794491356,52.82441343196824],[-120.32956743980088,52.82445787770616],[-120.32948626465817,52.82450735449731],[-120.32940464433182,52.824560173388406],[-120.32932369249684,52.8246079700488],[-120.32922784344152,52.82465561226421],[-120.32916149081237,52.82470579725964],[-120.3290790510525,52.82476476405539],[-120.32901277185356,52.82481439491607],[-120.32893048042041,52.82487224457278],[-120.32886353093939,52.824926906450926],[-120.32878242905669,52.824975819757235],[-120.3287006582149,52.82502975517331],[-120.3286337831627,52.825083853931666],[-120.32855268071846,52.82513276707445],[-120.3284715031158,52.82518224314255],[-120.32838988024295,52.825235061305385],[-120.32832359951222,52.825284691762036],[-120.32824130623817,52.82534254091833],[-120.32815953281985,52.82539648488102],[-120.32809325157059,52.82544611520257],[-120.3279972516811,52.82549486448047],[-120.32793052377896,52.82554784579345],[-120.32784934466558,52.82559732141833],[-120.32776764524633,52.82565070211688],[-120.3276858718291,52.825704636802826],[-120.32761884565376,52.82575985198803],[-120.32756664175707,52.825815784715516],[-120.32751302369448,52.8258823336514],[-120.32747497307089,52.82594400607858],[-120.32742128090672,52.826011109013024],[-120.32738248491228,52.826078375479774],[-120.32734368998581,52.82614563299461],[-120.3272906663193,52.82620771370495],[-120.32725187113061,52.82627497118395],[-120.32719817819927,52.82634207400204],[-120.32714530287102,52.826403037611676],[-120.32709309756703,52.82645897010554],[-120.3270260694401,52.82651418492569],[-120.32694369823184,52.8265725871723],[-120.32687726494042,52.82662333379671],[-120.32679511592887,52.82668006486327],[-120.3267280870692,52.82673527950545],[-120.32666113184489,52.82678994006246],[-120.32659350739937,52.826849622728716],[-120.32652647801258,52.82690483724985],[-120.32645885319673,52.82696451983414],[-120.32640597723174,52.827025474150396],[-120.32633894732615,52.827080688558276],[-120.32627191724713,52.8271359029259],[-120.32619013790335,52.827189845454996],[-120.32609442956652,52.82723635907223],[-120.3259997616198,52.82727506237105],[-120.3259059876697,52.82730705450689],[-120.32579657145293,52.82734447686819],[-120.32570264717212,52.8273775948012],[-120.32559345444878,52.82741333696654],[-120.3254988606709,52.82745147687685],[-120.32540367135046,52.827494084806446],[-120.32532330485228,52.827537410522574],[-120.32522811516489,52.82758001830749],[-120.32516346446711,52.82761735964383],[-120.32514692905316,52.82762949199958],[-120.3250652973854,52.827682307768434],[-120.32499826471364,52.82773752138774],[-120.32494538451401,52.827798483952286],[-120.32490658418317,52.82786574058773],[-120.32488290339886,52.82793149001775],[-120.32493385996665,52.827996914979025],[-120.3249853382832,52.8280584258662],[-120.32505171379046,52.82812010058369],[-120.3251032662569,52.82818105737084],[-120.32515526542808,52.828238663063125],[-120.32522089720631,52.828305922794016],[-120.32527304553827,52.828362411406275],[-120.32533979345945,52.82842129785885],[-120.32542211032903,52.82847530806989],[-120.32548878480547,52.82853474847719],[-120.32559076224432,52.82855317761252],[-120.32570830734534,52.82856673935638],[-120.32582570368496,52.82858141800629],[-120.3259436954377,52.8285916284425],[-120.32604805449554,52.828592184795895],[-120.32616619515855,52.82860127798442],[-120.32628478234456,52.82860701998081],[-120.32640322074135,52.82861387888183],[-120.3265029664854,52.82864906259273],[-120.32658677224222,52.828691910669086],[-120.32668540280918,52.82873546744059],[-120.32676920891885,52.82877831538437],[-120.32686724463285,52.828826340100434],[-120.32695053087185,52.82887309303168],[-120.32703433751797,52.82891594078244],[-120.32713237384647,52.82896396527286],[-120.32721618085363,52.82900681289141],[-120.32731473779619,52.829050932106306],[-120.32739914153453,52.82908930255415],[-120.3274807921272,52.82914834238166],[-120.32754813949691,52.82920275944714],[-120.3276002182044,52.82925980103819],[-120.32766600419698,52.829325942332886],[-120.32770221679971,52.8293900944214],[-120.3277379093445,52.82945815161791],[-120.32778887211212,52.8295235752763],[-120.32783983503599,52.82958899890979],[-120.32789198840243,52.82964548631256],[-120.32794295162995,52.82971090989622],[-120.32799391501375,52.82977633345499],[-120.3280459200307,52.82983393780834],[-120.32811230272266,52.82989561072574],[-120.32817980204645,52.829948901440964],[-120.32826242182134,52.83000068449263],[-120.32834519176227,52.830051341522186],[-120.32842840702943,52.83009865634975],[-120.32851117735741,52.83014931325914],[-120.3285948393075,52.83019327688739],[-120.32869347539399,52.8302368319305],[-120.3287773614457,52.830279115418634],[-120.3288758479644,52.83032379626876],[-120.32895966058265,52.83036663366947],[-120.32905837122608,52.830409634356066],[-120.32914158798266,52.830456948667326],[-120.32922540112918,52.83049978587479],[-120.32932403737767,52.830543349315874],[-120.32940725587953,52.83059065449865],[-120.3294905483446,52.830637405575644],[-120.32957384099213,52.83068415659215],[-120.32967195801716,52.83073162486258],[-120.3297556223047,52.830775587647466],[-120.32985426092185,52.8308191416993],[-120.32993874421408,52.83085695623272],[-120.33003782821824,52.83089716798202],[-120.3301381772215,52.83092788044348],[-120.33025327688372,52.830959864105346],[-120.33035407236748,52.83098722529776],[-120.33045501670398,52.83101346937519],[-120.33057123164342,52.83103707948177],[-120.33068759542898,52.83105957244486],[-120.33079017600583,52.83107352892221],[-120.33090817583671,52.83108373435402],[-120.33102558088888,52.83109840778186],[-120.3311429860218,52.83111308109212],[-120.33124437725081,52.831135973402525],[-120.33136126151682,52.83115456056363],[-120.33146265296149,52.83117745268494],[-120.331578868905,52.83120106179197],[-120.3316956797439,52.83122020266595],[-120.33179722021303,52.83124197746808],[-120.33191403126189,52.831261118124345],[-120.33201549819272,52.83128344678395],[-120.33213230945299,52.831302587222545],[-120.33224912081803,52.831321727544804],[-120.33234947241114,52.831352438108354],[-120.33245041883863,52.83137868046442],[-120.33256485184184,52.83141569295565],[-120.33266453428644,52.8314514343529],[-120.33274954224298,52.83148533277409],[-120.33283231920068,52.831535995529066],[-120.33289908370602,52.83159486862873],[-120.33298074670192,52.83165390453729],[-120.33304810503928,52.8317083183611],[-120.33311605936325,52.83175825508478],[-120.3332312372291,52.83178968176365],[-120.33333203658228,52.83181704038558],[-120.33343231520068,52.831848312997685],[-120.33353207429997,52.831883490665035],[-120.33363131390622,52.83192257338847],[-120.3337145386833,52.83196988441336],[-120.33381370374353,52.83200952996432],[-120.33391338981038,52.83204526135174],[-120.33401374430268,52.83207597047894],[-120.3341283291628,52.832111864398506],[-120.3341815343461,52.83216052969381],[-120.3341866981795,52.832233853509294],[-120.33416206376376,52.832306860864826],[-120.33412319894984,52.83237468333499],[-120.33407032604019,52.83243564982725],[-120.3340167109917,52.83250219251429],[-120.33397903486181,52.83256107867709],[-120.33393957497404,52.83263336920072],[-120.33393065668778,52.832700391074596],[-120.33395064513195,52.83277443164933],[-120.33395677419644,52.83284049921198],[-120.3339772835786,52.83291062569855],[-120.33399779183908,52.83298076111467],[-120.33400355000666,52.83304961677568],[-120.33400878855524,52.83312237757381],[-120.33401454675966,52.83319123322804],[-120.33402030498266,52.83326008887892],[-120.33402539375851,52.83333397563363],[-120.33403182148443,52.83339780017089],[-120.3340369852103,52.83347112393512],[-120.33404274350727,52.83353997957258],[-120.33404842690908,52.83360939819028],[-120.33405366560291,52.833682158960336],[-120.3340441527206,52.8337536489203],[-120.3340198881888,52.833823868066844],[-120.33396708825124,52.83388427147271],[-120.33390005735558,52.83393948995403],[-120.33383243170476,52.833999176515746],[-120.33376540045435,52.8340543949162],[-120.33368436176218,52.834102748339255],[-120.33360339661773,52.83415054765818],[-120.33350753090592,52.83419819307595],[-120.33341166616928,52.83424582947775],[-120.33333114642662,52.834290277516416],[-120.33326418780634,52.83434494157399],[-120.33319715527742,52.834400159637795],[-120.33312893325149,52.83446431389297],[-120.33307613126021,52.83452471687369],[-120.33300902446568,52.83458048887011],[-120.33295622216092,52.83464089179243],[-120.33290267634554,52.83470687983092],[-120.33284972505997,52.834768399728944],[-120.33281145061846,52.834831753545075],[-120.3327865887412,52.834906440501165],[-120.33275414543519,52.835038086943854],[-120.33270111859031,52.83510016974392],[-120.33266247252497,52.835166311599735],[-120.33260937164123,52.83522894839904],[-120.33257057544458,52.83529621618298],[-120.3325176978859,52.83535717292629],[-120.33247882767996,52.83542499472007],[-120.33244003109928,52.835492262452526],[-120.33240168165075,52.835556170151406],[-120.33236281107915,52.83562399189825],[-120.33233928616899,52.83568862547815],[-120.33230049031816,52.835755884217],[-120.33226154446254,52.835824268903174],[-120.33222274836582,52.83589152761055],[-120.33218439704343,52.8359554441584],[-120.33215953460343,52.836030121991975],[-120.33215076150799,52.836096026558735],[-120.33212656747187,52.836165682227666],[-120.3321177193538,52.8362321497675],[-120.33210812890484,52.836304193499245],[-120.33212856196968,52.83637488313476],[-120.33214906885644,52.83644501871852],[-120.33219997297894,52.836510994215196],[-120.33220632350968,52.83657538170413],[-120.33219636079467,52.83665022246097],[-120.33214400087536,52.836707273859844],[-120.33203463978083,52.8367441477636],[-120.33194010602202,52.83678172965377],[-120.3318454971482,52.83681987444799],[-120.3317509618653,52.83685746512039],[-120.33164160123587,52.83689432971844],[-120.33154706560839,52.836931920224934],[-120.33145253100408,52.83696950171825],[-120.33134368975846,52.83700246091691],[-120.33124915362896,52.83704005118105],[-120.33114053573111,52.837071330184834],[-120.33104652041715,52.837105006230296],[-120.33093790101556,52.837136293981644],[-120.33082920768204,52.837168135675775],[-120.33072177905444,52.837190478097234],[-120.33061368038535,52.837217851495254],[-120.330506771528,52.83723628860424],[-120.33039874638325,52.83726310775994],[-120.33029124232135,52.837286012766015],[-120.33018381311526,52.837308354693725],[-120.33007571380236,52.83733572759455],[-120.3299804320272,52.83737890194444],[-120.32988530000999,52.83742095025682],[-120.32980424933655,52.837469309834844],[-120.32970837311592,52.837516943114345],[-120.32962799211035,52.83756027149888],[-120.32954619702949,52.83761421600569],[-120.32947855946396,52.83767389992031],[-120.3294262696364,52.83773038709132],[-120.32937286325995,52.83779525636846],[-120.3293339108506,52.83786363999478],[-120.32929570339614,52.83792642956103],[-120.32927142867658,52.83799664753928],[-120.3292478239806,52.83806183444471],[-120.3292383770546,52.838132760836615],[-120.32921358198493,52.838206883900256],[-120.32918997708425,52.83827207078532],[-120.32918045502922,52.838343560141816],[-120.3291567750156,52.838409309993175],[-120.32911797167402,52.83847656756389],[-120.32907976216262,52.8385393659716],[-120.32901197369033,52.83860016660312],[-120.32895916075236,52.838660567573335],[-120.32890508353749,52.83873045872402],[-120.32885197270187,52.83879309368207],[-120.32881376251548,52.83885589199041],[-120.32877570220194,52.838917564327545],[-120.32872199575715,52.83898466730007],[-120.3286979432827,52.839053205114254],[-120.32865958383798,52.83911712038203],[-120.32862063026896,52.8391854947781],[-120.32858167538468,52.83925387809434],[-120.3285430191709,52.83932001841929],[-120.32848990706985,52.839382653190015],[-120.32845124940665,52.839448802415426],[-120.32841303923368,52.83951159163109],[-120.32841864046303,52.83958156429801],[-120.32846902114458,52.83965145531517],[-120.32852118764428,52.83970794207549],[-120.32860278511467,52.839767543700155],[-120.32867074707181,52.83981748273901],[-120.32875353535171,52.83986814809935],[-120.3288209024565,52.83992255512616],[-120.32887247456905,52.83998350979884],[-120.32889290403493,52.84005419983123],[-120.32886914882553,52.840120503594655],[-120.32883049108179,52.84018665291375],[-120.32879168560937,52.840253910300575],[-120.32875273002375,52.84032229362697],[-120.32871392430536,52.84038955098219],[-120.32867556368306,52.84045346620092],[-120.32863675772374,52.840520723525096],[-120.3286124804436,52.84059094125098],[-120.32858835307995,52.84066003301379],[-120.3285647458667,52.84072521967137],[-120.32853994812004,52.840799342470305],[-120.32850166186834,52.840862694638076],[-120.32846344931276,52.840925492749776],[-120.32840981485033,52.84099203251645],[-120.32837160204373,52.84105483059298],[-120.32834687877211,52.84112839035848],[-120.32832327093075,52.841193576947965],[-120.3282997368298,52.84125820948919],[-120.32828961735217,52.841334166708954],[-120.32829529362176,52.84140357632347],[-120.3283010437227,52.841472431893884],[-120.32832214203141,52.841538099846595],[-120.32832722311672,52.84161197752158],[-120.32834824772213,52.84167819950457],[-120.32836815568139,52.84175280358195],[-120.32835915292364,52.84182037868331],[-120.32834970249743,52.84189131377004],[-120.32832594542091,52.841957617345926],[-120.32831664491746,52.84202742647012],[-120.32829169716408,52.842102666172565],[-120.32828291684493,52.84216857019514],[-120.32824395869554,52.842236953269435],[-120.32822042508941,52.84230157681561],[-120.32816678732738,52.84236812534907],[-120.3281139685283,52.84242852579429],[-120.32804632132641,52.84248820870101],[-120.32797926924914,52.84254342349986],[-120.32791162167665,52.84260310632471],[-120.32785813307649,52.84266852875195],[-120.32780531346852,52.84272892904677],[-120.32775219604048,52.8427915633479],[-120.3276993011164,52.84285252656646],[-120.3276462583934,52.842914597838714],[-120.32759343818078,52.84297499802885],[-120.32752638475229,52.843030212552115],[-120.32745880960093,52.843089341057826],[-120.32737752273378,52.84313936984186],[-120.32730927798131,52.84320352035872],[-120.32725705233342,52.84325945232534],[-120.3271893287846,52.843319688746476],[-120.32713635857009,52.84338120573058],[-120.3270976213529,52.8434479083814],[-120.32704457582335,52.84350998829456],[-120.32700576451238,52.84357724494899],[-120.32695279371336,52.84363876184025],[-120.32691398094966,52.84370602739493],[-120.32686108488484,52.84376698126449],[-120.32680736932346,52.84383408315433],[-120.32676915161228,52.84389688059594],[-120.32670150020063,52.843956562672375],[-120.32663384859967,52.84401624470768],[-120.32656679229257,52.84407145864665],[-120.32649914032095,52.84413114060003],[-120.32643290306513,52.844180206415544],[-120.32633693296387,52.844228399714076],[-120.32625586533463,52.844276756633626],[-120.32617479871266,52.844325104559765],[-120.32607897687848,52.844372180630046],[-120.32599775979669,52.844421654379985],[-120.32591669260682,52.844470002123465],[-120.32583629464922,52.8445133277212],[-120.3257410675951,52.84455593546018],[-120.32563227643442,52.84458833516878],[-120.32553771965323,52.844625911718055],[-120.32542833254914,52.84466277928451],[-120.3253344449012,52.844695333582905],[-120.32522624990013,52.84472325592946],[-120.32513117067887,52.8447647461569],[-120.3250365380129,52.84480288527227],[-120.32494130951366,52.84484549235515],[-120.32484608082417,52.84488809935969],[-120.32476560593514,52.84493198718664],[-120.32467045193457,52.844974031072994],[-120.32457581839243,52.84501216981211],[-120.32448058896586,52.8450547765159],[-120.32438468856162,52.84510241415559],[-120.32430436291887,52.84514517571424],[-120.32419489954475,52.84518259615707],[-120.32410153050337,52.84521124439251],[-120.32399229079103,52.84524698466214],[-120.32389825181662,52.84528065481036],[-120.32380302111395,52.84532326095756],[-120.32369355684311,52.84536068092894],[-120.3235997402161,52.84539267978991],[-120.32349161619311,52.84542004649001],[-120.32338416294233,52.845442382082716],[-120.32327544280776,52.845474216617916],[-120.32318073183077,52.84551291719343],[-120.3231859534501,52.845585677895365],[-120.32320637617573,52.84565636866453],[-120.32327329726638,52.84571413863358],[-120.32335653865316,52.84576144764612],[-120.32345751364463,52.845787697490934],[-120.32357495660129,52.84580237822958],[-120.32369299544727,52.84581259081525],[-120.32381043855351,52.84582727131828],[-120.32391364817701,52.8458367656346],[-120.3239877949205,52.84584035577857],[-120.32403228297257,52.845842509842505],[-120.32415091780004,52.84584825393054],[-120.32427014840798,52.84584952986036],[-120.32437514540042,52.84584561965587],[-120.32449504560245,52.84584187328166],[-120.32461546762724,52.84583421278181],[-120.32473529390937,52.84583102019937],[-120.32484088650199,52.84582264153774],[-120.32496011705896,52.84582391676736],[-120.32507756063245,52.84583859600351],[-120.32519500428673,52.8458532751222],[-120.32529702299912,52.84587170430909],[-120.32541402009824,52.84588973424113],[-120.32551551842158,52.84591206830836],[-120.32563058000068,52.84594461916876],[-120.32573140792574,52.845971984067276],[-120.32584736320933,52.84599783264599],[-120.32594819139919,52.84602519735755],[-120.32604849800349,52.846056475991084],[-120.32617652934718,52.84610370225491],[-120.3262756452187,52.84614391678743],[-120.32637483631424,52.846183568261274],[-120.3264592731056,52.84622193896518],[-120.32655786903862,52.84626605833082],[-120.32665653901823,52.84630962357434],[-120.3267245091196,52.84635956353137],[-120.3267915111098,52.846416768496105],[-120.32682706757566,52.846485942242694],[-120.32689347441854,52.846547615194034],[-120.32694445630746,52.84661303850578],[-120.3269964804331,52.846670642705305],[-120.32700215411775,52.8467400610828],[-120.32699270153606,52.84681098690217],[-120.32696923735047,52.84687505597153],[-120.32694435822546,52.846949741117704],[-120.3269207450192,52.847014927184006],[-120.32689661128201,52.847084018316906],[-120.32684296544127,52.84715056604353],[-120.32678998997021,52.84721208272158],[-120.32672292884143,52.84726729663751],[-120.32665527201983,52.847326978559465],[-120.32657420005384,52.84737532666742],[-120.32649305286634,52.84742423769162],[-120.32639714938261,52.847471876902375],[-120.32630273577298,52.847508336987424],[-120.32620742745702,52.84755150799689],[-120.32611346019374,52.84758461689552],[-120.32601822656012,52.84762722477601],[-120.32590942777702,52.847659624678066],[-120.32581501333499,52.8476960843667],[-120.32572029972887,52.84773478693497],[-120.32561217112975,52.84776215554616],[-120.32550538259575,52.847779470969044],[-120.3253830944007,52.847801090523944],[-120.32527690134675,52.84781393770029],[-120.32515572924783,52.84782718391513],[-120.32505251453199,52.84781769070205],[-120.32493506551822,52.84780301145924],[-120.3248164251487,52.84779726817018],[-120.32469838054183,52.84778705672622],[-120.32457854876228,52.84779024926705],[-120.32447295124751,52.84779862768244],[-120.3243535662438,52.847798468968335],[-120.32423254284708,52.847810597222825],[-120.32412694521399,52.84781897532703],[-120.32400465501547,52.84784060238261],[-120.3239119509151,52.84786421941579],[-120.32380270424989,52.84789995944891],[-120.3236932333665,52.84793737935874],[-120.32359807041315,52.84797943123224],[-120.32351758959979,52.84802330918189],[-120.3234498520154,52.84808355220086],[-120.32339701946036,52.84814395030542],[-120.32330170797529,52.84818711000418],[-120.32320699099863,52.84822581053415],[-120.32311197709015,52.848266736063664],[-120.32301733484971,52.84830487346754],[-120.3229085320589,52.848337270576444],[-120.32281470948827,52.848369259813985],[-120.3227058324818,52.84840221076886],[-120.32259702920615,52.84843460758727],[-120.32248897192167,52.84846141034084],[-120.32239507366961,52.84849396221152],[-120.3222869410127,52.848521327748905],[-120.32217932912552,52.84854478813664],[-120.3220707491887,52.8485755044893],[-120.32196328724513,52.848597838737504],[-120.32185500503782,52.8486263208803],[-120.32174702071185,52.84865256891392],[-120.32163940819665,52.84867602880526],[-120.32153075362362,52.84870729869034],[-120.32142261987137,52.84873466342852],[-120.32132872020406,52.84876721444125],[-120.32121991495153,52.848799609976794],[-120.32112609009758,52.84883159785642],[-120.32101721060664,52.8488645472367],[-120.3209232352302,52.848897660892305],[-120.3208139834141,52.848933398122774],[-120.3207199338039,52.84896706564785],[-120.32061112757921,52.84899946061554],[-120.32051730182917,52.849031448004894],[-120.3204078251599,52.849068864826464],[-120.3202990184385,52.84910125950303],[-120.3202051922305,52.84913324664109],[-120.32009631125821,52.84916619516162],[-120.32000173825998,52.84920377608149],[-120.31989367739627,52.849230576434934],[-120.31979962640443,52.84926424321685],[-120.31969037151552,52.84929998833018],[-120.3195821611404,52.84932790539689],[-120.3194882587627,52.84936045492628],[-120.31937952573425,52.84939228577674],[-120.31927071740692,52.84942467949437],[-120.31917748604864,52.849452197802215],[-120.3190686034684,52.849485145363744],[-120.31895919831207,52.84952200679247],[-120.3188659665401,52.8495495248515],[-120.31875723256528,52.84958135512221],[-120.31864842328307,52.84961374825965],[-120.31855451956356,52.84964629703689],[-120.31844571115458,52.849678681049234],[-120.31833697653691,52.84971051092843],[-120.31824299721602,52.8497436224223],[-120.31813493387968,52.84977042114903],[-120.3180408803094,52.84980408651154],[-120.31793221903199,52.84983536198212],[-120.31782340966825,52.84986774541428],[-120.31772950476004,52.84990029352689],[-120.31762069388375,52.84993268570592],[-120.31751195800294,52.84996451481646],[-120.31741797867504,52.84999761670915],[-120.31732340147367,52.85003519545318],[-120.31721399459146,52.850072046308],[-120.31713357723572,52.85011536579514],[-120.31703832898242,52.850157966327735],[-120.3169424839621,52.850205034770696],[-120.31684723531771,52.850247635145976],[-120.31675191131174,52.85029079840918],[-120.31667156824676,52.85033355460774],[-120.31657624387101,52.85037671772611],[-120.31648106965262,52.85041875483355],[-120.3164005757226,52.850462636775696],[-120.31630525197743,52.8505057907347],[-120.31620992684604,52.85054895355116],[-120.31611490104956,52.85058987336136],[-120.31602024739871,52.850628005072295],[-120.31592559357864,52.850666136706046],[-120.31581610868601,52.85070354921008],[-120.3157209317958,52.85074559462898],[-120.31564043766039,52.850789467105365],[-120.31555942062344,52.85083725347586],[-120.31547758229097,52.850891187728855],[-120.31541109748267,52.85094192707865],[-120.3153440157609,52.850997134367866],[-120.31527574033888,52.85106127757276],[-120.31522281852163,52.85112222591621],[-120.31516997055338,52.85118262020422],[-120.31510214216087,52.851243412318],[-120.31504914467398,52.85130492354123],[-120.31499562424004,52.85137034868479],[-120.31492779530049,52.851431140690686],[-120.31487494653176,52.851491534834274],[-120.31482202360796,52.85155248298051],[-120.31476902533309,52.85161399406529],[-120.31471602690533,52.8516755051238],[-120.314647749453,52.851739647936185],[-120.31458066548859,52.85179485476154],[-120.3145135813505,52.85185006154669],[-120.31444590017661,52.85190973626302],[-120.31437881568338,52.85196494296729],[-120.31431128335814,52.852023500608944],[-120.31424494461879,52.85207312227005],[-120.31417726271509,52.8521327968232],[-120.31411017752333,52.85218800336619],[-120.31404249524877,52.8522476778373],[-120.31397481278483,52.852307352267204],[-120.3139225585045,52.85236327798119],[-120.31386881176259,52.85243037358725],[-120.31382989634496,52.85249818847015],[-120.31379098080357,52.85256600333729],[-120.31375273610458,52.85262879619502],[-120.31367096726622,52.85268216616466],[-120.31360395577228,52.85273680943585],[-120.31355087905108,52.852798882888415],[-120.31351263498374,52.8528616667229],[-120.31347304640859,52.85293451239622],[-120.31344888753843,52.853003600505865],[-120.3134106419434,52.85306639323494],[-120.31337165119,52.853134761966075],[-120.31331872288506,52.853195718307624],[-120.31326572040022,52.8532572286502],[-120.31319803524744,52.85331690259447],[-120.31313169320119,52.85336652358627],[-120.31304984813971,52.85342044712579],[-120.31296822616383,52.853472699589595],[-120.312886976546,52.85352216398866],[-120.31280520491156,52.85357553332562],[-120.31272335903623,52.85362945663055],[-120.31265701595154,52.85367907734454],[-120.31258873219527,52.853743218878925],[-120.3125216424143,52.8537984244586],[-120.31246863803098,52.85385993441815],[-120.31241555825977,52.85392200731377],[-120.31236270284721,52.853982400231935],[-120.31230917612667,52.85404781510478],[-120.31227085387435,52.85411116144755],[-120.31221777350261,52.854173234243966],[-120.31216424632031,52.85423864904285],[-120.31212592368122,52.85430199533072],[-120.31208707783044,52.854369255529804],[-120.31204823305143,52.85443650677733],[-120.31200923766716,52.854504883932925],[-120.31195630690902,52.85456583067199],[-120.31191798366712,52.85462917687891],[-120.31186430496551,52.85469571744587],[-120.31181137376345,52.85475666411222],[-120.31177245295179,52.8548244782137],[-120.31173360606768,52.854891738273714],[-120.31170996521651,52.85495692095279],[-120.31168580234471,52.85502600861148],[-120.31164680584038,52.855094385621264],[-120.3116226427884,52.855163473260866],[-120.31159915091875,52.855227538919564],[-120.31156000478825,52.85529703287867],[-120.31152115833308,52.855364283912444],[-120.31148231056099,52.85543154386635],[-120.31144406108773,52.85549432692277],[-120.31140506376761,52.85556270383203],[-120.31136606751691,52.855631071789546],[-120.31134190251161,52.85570016828387],[-120.31131766336975,52.85576981879537],[-120.31129394733748,52.85583555537968],[-120.31128454067586,52.855905925499286],[-120.31126089857615,52.855971108046134],[-120.31126617519939,52.856043314769074],[-120.31125646981852,52.856115918848836],[-120.31126219439388,52.85618477460808],[-120.31126724647744,52.85625866126771],[-120.31127364360006,52.856322486116746],[-120.31129345446661,52.85639764641699],[-120.3112992531992,52.85646594813732],[-120.31131973668613,52.856536077523316],[-120.31132531210632,52.85660605024669],[-120.31134579450887,52.85667618855788],[-120.31135159455768,52.85674448132768],[-120.31135672211651,52.856817804996695],[-120.3113630442028,52.85688219277891],[-120.31136809654372,52.856956079401634],[-120.3113733734703,52.85702828607478],[-120.31136434055995,52.85709585921649],[-120.31136991612652,52.85716583191309],[-120.31137579034058,52.85723357063589],[-120.3113808427452,52.85730745724165],[-120.31138604567668,52.85738021792279],[-120.31139236789065,52.85744460568047],[-120.31141210423307,52.85752032886781],[-120.31144846683398,52.85758335889493],[-120.31149943822061,52.85764878844979],[-120.31155160425705,52.8577052820994],[-120.31160257594763,52.857770711604445],[-120.31166890309255,52.85783295567946],[-120.31170511703128,52.857897102599765],[-120.31175608918666,52.857962532030385],[-120.31180765872271,52.85802349349545],[-120.311889865093,52.8580786380949],[-120.31197371519325,52.858121486860554],[-120.31205704231478,52.85816824948217],[-120.31213917523473,52.858223947926824],[-120.31222197960449,52.85827462434521],[-120.3122898025767,52.85832568925926],[-120.31237260732301,52.85837636556832],[-120.31245586133186,52.858423681924386],[-120.3125392636196,52.858469890170205],[-120.31263735156273,52.85851792585746],[-120.31272068018657,52.85856468799667],[-120.31280393375502,52.85861201303636],[-120.31288718870248,52.858659329079856],[-120.31297044264045,52.858706653998745],[-120.31305325012947,52.858757320880066],[-120.31313650444305,52.85880464567851],[-120.31320291066827,52.858866325885735],[-120.31328616655487,52.85891364163898],[-120.3133695707005,52.858959849281185],[-120.31343739613669,52.859010913510794],[-120.31351915872321,52.85906940789542],[-120.31355477943836,52.85913802214176],[-120.3135604329011,52.85920744061869],[-120.31350749852311,52.85926838787513],[-120.31339933284376,52.8592957450455],[-120.31329489881671,52.859295177462364],[-120.31317682514322,52.859284954516546],[-120.31306039358012,52.85926244460741],[-120.31295954236423,52.85923506906482],[-120.31285921316999,52.859203788453435],[-120.31276112459368,52.859155744036315],[-120.31267779477056,52.85910898194318],[-120.31259506228646,52.859057751847935],[-120.31251233000113,52.85900652169271],[-120.3124290007424,52.85895975941879],[-120.31234462660078,52.8589208159809],[-120.31224601611648,52.8588766850415],[-120.31214733058908,52.858833116978595],[-120.31206392801565,52.858786908465284],[-120.31198067373253,52.858739591842394],[-120.31188213929438,52.85869489763223],[-120.31179821410169,52.85865260284111],[-120.3117143631335,52.85860975396443],[-120.3116162772133,52.85856170857373],[-120.31153287455157,52.85851550861138],[-120.31144917463108,52.85847153362157],[-120.3113510140706,52.85842405096538],[-120.31126768722343,52.85837728785077],[-120.31118436055905,52.85833052467562],[-120.31110170544461,52.8582787394796],[-120.31101890239809,52.858228062271984],[-120.31091917431614,52.858192312048175],[-120.31083532633086,52.85814945359589],[-120.31075200058572,52.85810269010754],[-120.31065331837574,52.858059120768836],[-120.31055478690094,52.85801442542641],[-120.31047026700018,52.857976597603106],[-120.31037098799636,52.857937495957785],[-120.31027126233182,52.85790173624166],[-120.31016981873056,52.857878826214765],[-120.31005234713365,52.85786413218772],[-120.30993487561769,52.8578494380431],[-120.30981740418268,52.85783474378087],[-120.30969993282862,52.85782004940122],[-120.30959669737064,52.857810542669945],[-120.30947982362417,52.85779138013989],[-120.30936220313666,52.85777780240449],[-120.30926016283124,52.8577593595194],[-120.30914314000142,52.85774131363608],[-120.30902566913706,52.857726618581445],[-120.30890819835365,52.85771192340915],[-120.30880556086812,52.85769794805552],[-120.30868749269321,52.85768772058871],[-120.30857002213347,52.85767302507816],[-120.30845135651329,52.85766726529911],[-120.30833209334189,52.85766597332427],[-120.30822885856182,52.85765646539049],[-120.3081095954274,52.85765517318981],[-120.30799033230016,52.85765388086814],[-120.30787166681156,52.85764812050372],[-120.30776716159022,52.85764811096573],[-120.30764789849314,52.857646818296544],[-120.30752923307041,52.857641057586235],[-120.30740937232065,52.857644232594865],[-120.30730554010852,52.85763919176928],[-120.30718747245605,52.85762896279499],[-120.3070688071452,52.85762320161968],[-120.30694939470706,52.85762302522099],[-120.30683072944491,52.857617263805324],[-120.30672570186513,52.85762115830015],[-120.30660584111149,52.85762433248921],[-120.3064871758921,52.857618570726665],[-120.30636731512799,52.85762174467249],[-120.30624924774888,52.85761151475539],[-120.30614481794188,52.85761094081757],[-120.30602555499797,52.85760964650172],[-120.30590688989787,52.85760388415315],[-120.30578762698089,52.85760258959584],[-120.30566836407117,52.85760129491755],[-120.30556453216938,52.85759625255336],[-120.30544526928416,52.857594957648665],[-120.30531132275895,52.857591825270326],[-120.30508329521354,52.857622347561716],[-120.30485661272301,52.85764281662071],[-120.30462865992394,52.85767277507272],[-120.30440122945276,52.85769882813397],[-120.30417320068388,52.857729348657266],[-120.30394584379025,52.857754846816285],[-120.30371781439595,52.85778536645481],[-120.30348926194216,52.857819790593915],[-120.30327546693499,52.85785549787705],[-120.30304624024241,52.85789495200573],[-120.30281693775692,52.85793496864105],[-120.30260261879323,52.85797457963768],[-120.30237383949742,52.85801068153136],[-120.30216019215815,52.85804526980784],[-120.30193148629279,52.8580808168202],[-120.30170352909784,52.85811076958965],[-120.30147504746454,52.85814463578597],[-120.30124686463478,52.85817626759413],[-120.30101830689493,52.8582106958546],[-120.30080331109882,52.85825533440142],[-120.30058689424239,52.858310579307286],[-120.30038418748568,52.858374926556984],[-120.30018207856523,52.85843480557424],[-120.29996633267504,52.85848502743356],[-120.29973650104155,52.85852894296935],[-120.29952082836677,52.85857860999098],[-120.29930575492918,52.85862379980419],[-120.2990757722258,52.858668831012615],[-120.29886009807404,52.858718496817254],[-120.2986445742706,52.85876703632087],[-120.29842822625199,52.858821723217325],[-120.2982131492332,52.858866919959645],[-120.29798398785546,52.85890580123679],[-120.29776943441001,52.8589470833125],[-120.29754012131635,52.85898708962452],[-120.29732459465309,52.85903562669904],[-120.2971088423583,52.859085843293194],[-120.29689316380689,52.85913550547478],[-120.29667673741864,52.859190743148815],[-120.2964610578335,52.85924040453411],[-120.29624552866186,52.85928893962176],[-120.29603037271045,52.859334686370175],[-120.29581341954072,52.85939383628943],[-120.29561070043259,52.85945817526101],[-120.2954078309719,52.85952363084345],[-120.29520443617702,52.859592999911015],[-120.29500096644342,52.85966292263707],[-120.29479682273245,52.85973786687022],[-120.2946083351132,52.85980739364924],[-120.29440411453733,52.85988290014227],[-120.29421420218821,52.85996304188636],[-120.29402361571918,52.860048205176504],[-120.29383437654683,52.8601233155058],[-120.29364446325464,52.860203447381224],[-120.29330808638639,52.86037370353305],[-120.29318732157321,52.86049486671119],[-120.29306655607377,52.86061602975601],[-120.29294526495518,52.86074110649248],[-120.29282509732344,52.860857801433646],[-120.29269024476673,52.86097265731775],[-120.29254198126503,52.86107617547959],[-120.29235138648144,52.861161335997934],[-120.29216154009629,52.86124091141307],[-120.29197169300262,52.86132048651769],[-120.29178169535797,52.86140117826888],[-120.29157753646902,52.86147612576307],[-120.29138828665145,52.861551232085624],[-120.29119836240342,52.86163135993586],[-120.29100776245512,52.861716518245295],[-120.29083117120875,52.861808546168675],[-120.29065540410494,52.86189442609811],[-120.29046555129118,52.861973998736865],[-120.29027554788466,52.86205468801976],[-120.2900855437591,52.862135376991425],[-120.28989501488255,52.862219970523974],[-120.2896915239085,52.862289883941045],[-120.28947582051408,52.86233953240878],[-120.2892471566024,52.86237449169319],[-120.28901916754792,52.86240441977524],[-120.28879185223342,52.862429325594974],[-120.28857847160272,52.86246165517642],[-120.288336321189,52.862485837627],[-120.28810892947061,52.862511305068395],[-120.2878820629004,52.86253285827136],[-120.2876559458736,52.86254882627998],[-120.28743095398087,52.862556412253674],[-120.28719060198031,52.86256718893127],[-120.28695084975065,52.862573497316056],[-120.28672593199194,52.8625805279326],[-120.28650101415907,52.86258755811862],[-120.28626051175668,52.862599449843614],[-120.28603559374727,52.86260647913887],[-120.28579509110837,52.862618369911225],[-120.28556957288465,52.862629866109764],[-120.28534465460093,52.86263689408252],[-120.28510550179304,52.86263873090977],[-120.28488050777217,52.86264632093594],[-120.28464075475598,52.86265262460782],[-120.28441568615936,52.862660767749986],[-120.28417593299324,52.86266707047358],[-120.28394981386722,52.862683031350265],[-120.28372369457193,52.86269899179185],[-120.28348326639919,52.862710314891885],[-120.28325834734737,52.86271733887154],[-120.28301799338561,52.86272810701468],[-120.282792473833,52.862739597883426],[-120.28256740442441,52.86274773748558],[-120.2823262996425,52.862764088936764],[-120.28195093337547,52.86277951478567],[-120.28155607873732,52.86282884130553],[-120.2813286066812,52.86285484962635],[-120.28111409171034,52.86289554718601],[-120.28089702527112,52.862955223436806],[-120.28072123343487,52.86304108844596],[-120.280557647424,52.86314722763464],[-120.28042275458583,52.86326206927433],[-120.28031625477011,52.86338784734457],[-120.28023889770627,52.86351898614998],[-120.28016154016657,52.86365012489361],[-120.28006942178227,52.86377998601427],[-120.28003619312594,52.86391608320774],[-120.2800623785006,52.86405452063406],[-120.28005829342797,52.86419597868626],[-120.2800097776898,52.86433471203113],[-120.27997587207904,52.864475839858166],[-120.27992795761249,52.86461009644948],[-120.27982122711843,52.864737553841564],[-120.2797139697881,52.86486892488232],[-120.2795668626371,52.8649634909037],[-120.27933689939195,52.86500792929856],[-120.27911016529293,52.865028348595715],[-120.27886859570918,52.865048043745496],[-120.27864178667363,52.86506901613994],[-120.27841565273897,52.86508496634471],[-120.27818936842367,52.86510203305171],[-120.27794960061125,52.8651083230639],[-120.27772586978858,52.86510640094891],[-120.2774879046421,52.865099286778396],[-120.27726161987948,52.86511635169894],[-120.27703225437554,52.86515631783587],[-120.27681667319321,52.8652048171075],[-120.27660026452436,52.8652594635935],[-120.27638332879137,52.86531802341898],[-120.27618167979577,52.865373947153294],[-120.27596534398907,52.86542803846489],[-120.27575021104951,52.865473184969446],[-120.27550923852611,52.865488405473386],[-120.27527247393154,52.86547235134995],[-120.27510662349613,52.86537318965762],[-120.27510869555722,52.86524681495018],[-120.2752017339575,52.86511025623724],[-120.27526397364267,52.86498063058195],[-120.27539948694658,52.86486132725216],[-120.27551956326758,52.86474576736157],[-120.27565514964695,52.86462590972006],[-120.27576053985763,52.8645085085142],[-120.27583896438331,52.86436955419473],[-120.2758569967841,52.864235522006666],[-120.27567338516243,52.86415741270954],[-120.27545379152569,52.864124775029275],[-120.27523367282753,52.86409604174025],[-120.27499811839985,52.864071051575856],[-120.27477965355388,52.86403003116147],[-120.27456246730134,52.863979511937664],[-120.27434475488397,52.86393290604491],[-120.27412734356976,52.86388406588162],[-120.27389359479716,52.863845670303874],[-120.27367167468756,52.863830337277285],[-120.27343672396887,52.86380087624942],[-120.27321999028266,52.863747012676335],[-120.27301884475315,52.863688279558346],[-120.27280263898446,52.863630501482874],[-120.27260209478644,52.86356730885671],[-120.27238604055373,52.86350841307922],[-120.27216946124756,52.86345342169247],[-120.27195100228731,52.863412396004286],[-120.27173194224927,52.86337583763008],[-120.27149879994188,52.86333296955591],[-120.27128041683552,52.863291388620816],[-120.2710625611274,52.8632458935578],[-120.27084658644985,52.86318643200586],[-120.27066238571432,52.86311279148168],[-120.2704810445348,52.86301792008025],[-120.27031446273826,52.86292433611764],[-120.27014968664186,52.86281734876946],[-120.26999966986521,52.86271164894711],[-120.26986554224557,52.86259884634089],[-120.26973186540357,52.862482701723884],[-120.26962891183071,52.86236017927273],[-120.26954169434467,52.862231688977865],[-120.2694398695485,52.86210079384661],[-120.26936854142257,52.861965200869356],[-120.26926566475818,52.86184212406356],[-120.26910014328648,52.861740719812325],[-120.26891783294174,52.86165311041742],[-120.26871888409767,52.86157817887505],[-120.26851820515147,52.86151609612633],[-120.26831873165072,52.861445068678876],[-120.2681197089971,52.8613706990438],[-120.26793672575089,52.86128810981076],[-120.26777075817806,52.86119005443269],[-120.267620753023,52.86108435146522],[-120.26745644222905,52.86097400943664],[-120.26730591252924,52.86087221082833],[-120.26715591084832,52.86076649831093],[-120.26700688748599,52.86065353004273],[-120.26687277305261,52.86054073280986],[-120.26675394547053,52.86042530094528],[-120.26663624665883,52.86030149647535],[-120.26651854853054,52.860177691877944],[-120.26641553390195,52.86005572936434],[-120.26629776123838,52.85993248745719],[-120.2661641036759,52.85981632965128],[-120.26604603137913,52.859695321324665],[-120.26591177319125,52.859583630917164],[-120.26577766501927,52.859470832358255],[-120.26564401032041,52.859354673926866],[-120.26550990357669,52.859241875046166],[-120.26539221164286,52.85911806923781],[-120.26528980490653,52.858991637954645],[-120.26518739877739,52.85886520657225],[-120.2650855953846,52.858734307390286],[-120.26496662713848,52.8586199905119],[-120.26481724012815,52.85850981609421],[-120.26466777922084,52.85840019547366],[-120.2645023579168,52.858298221596364],[-120.26435124251519,52.85820088673013],[-120.26418649962999,52.85809389070252],[-120.26383804276611,52.85790989220235],[-120.2636716460665,52.857815181598525],[-120.26348974068412,52.85772476678844],[-120.26332274318223,52.8576345233746],[-120.26314151631321,52.85753908632649],[-120.26297497202428,52.85744549163743],[-120.2627930684911,52.85735508466316],[-120.26261063925988,52.85726858216459],[-120.26244417309275,52.8571744237781],[-120.26226189594242,52.857086803805444],[-120.26206335600652,52.8570090729414],[-120.26188055381343,52.856925357129015],[-120.26169699806144,52.85684723457345],[-120.26149981704857,52.856759441511215],[-120.26131754361208,52.85667182005073],[-120.26113504437987,52.85658587815263],[-120.26098447054467,52.856484625158366],[-120.26083502658656,52.856374999522835],[-120.26068558339674,52.85626537368959],[-120.26055262989867,52.85614418755453],[-120.26046507646377,52.85601847785517],[-120.26039303261415,52.85588847245129],[-120.26035238567457,52.855747070040444],[-120.26031113641945,52.855610135287385],[-120.26027049001664,52.85546873282328],[-120.26022924129369,52.855331798017446],[-120.26018859542768,52.855190395500045],[-120.26013191316854,52.855057202247394],[-120.2600760604411,52.85491786142116],[-120.2600195295466,52.85478355116988],[-120.25996307373156,52.85464868688697],[-120.25990699550864,52.85451102579425],[-120.25988110799946,52.85437090319797],[-120.25985499407777,52.8542324604336],[-120.25984438879588,52.85408972208951],[-120.25983303152559,52.85395255940478],[-120.25982182377588,52.85381428872051],[-120.25976589775966,52.85367551056581],[-120.25972510435396,52.85353522466168],[-120.25971389826903,52.85339694499524],[-120.25970314301323,52.853255323484966],[-120.25966204890686,52.853117271365875],[-120.25957548417897,52.852984296300875],[-120.25944133878804,52.85287204403378],[-120.25927602614979,52.85276950844964],[-120.25909377433301,52.852681883318446],[-120.25889367921417,52.85261587009246],[-120.25866158743936,52.85256572073979],[-120.25844214245187,52.852532488108096],[-120.25822330056623,52.85249478738324],[-120.25800679545021,52.85243976951554],[-120.25776950707898,52.852428147683014],[-120.25754192529287,52.85245522705429],[-120.25731404179034,52.85248453982335],[-120.25710015895243,52.85252072613795],[-120.25688401607884,52.85257365691073],[-120.25669459396192,52.852649824697785],[-120.25654491422762,52.852763359179704],[-120.25638191164595,52.85286498879336],[-120.25626166618234,52.852981646913484],[-120.25619848178613,52.85311796499025],[-120.256149826271,52.853257243440694],[-120.25608709335626,52.853390210681596],[-120.25602375704563,52.85352764554636],[-120.25596109811373,52.85366005870642],[-120.25586907958883,52.85378877581925],[-120.255806345017,52.853921742865516],[-120.25575768730437,52.85406102108265],[-120.25570902927393,52.85420029926738],[-120.2555882499232,52.854320870273796],[-120.25544067336084,52.85441875747051],[-120.25530498663781,52.85453915548581],[-120.25515597567738,52.85464765747556],[-120.25499364050252,52.85474426339146],[-120.25481647328444,52.85484014232704],[-120.2547224333833,52.85487320289035],[-120.25462718820154,52.85491518975722],[-120.25453179083057,52.854958302395225],[-120.25445062264014,52.85500660047365],[-120.25435530088957,52.85504915004124],[-120.25427413111996,52.85509745693024],[-120.25417888499607,52.85513944342774],[-120.25408348667032,52.85518255569568],[-120.25398884341062,52.85522007438317],[-120.25389352072224,52.85526262357038],[-120.25379880110664,52.85530070502713],[-120.25370347804842,52.855343254058006],[-120.25360883289129,52.85538078137091],[-120.25351403795054,52.85541941658391],[-120.25341878915275,52.855461411392014],[-120.2533241446895,52.85549892953752],[-120.25322889552714,52.85554092418962],[-120.25311941918498,52.85557771521618],[-120.25302605571213,52.85560574383516],[-120.25291786056536,52.855633045389965],[-120.25280958925525,52.855660909768055],[-120.25270214805904,52.85568262656602],[-120.25257980036231,52.85570417022119],[-120.25247281149602,52.85572253607533],[-120.25236521911825,52.85574536947532],[-120.25225838091391,52.85576261822293],[-120.25213663500051,52.855779702708176],[-120.25203024920911,52.855793600516385],[-120.2519079756847,52.85581458948302],[-120.25180174060168,52.85582737017389],[-120.25168059902002,52.855839977610394],[-120.25157376030178,52.85585722573449],[-120.25145269340402,52.855869278948546],[-120.2513463071663,52.85588317613684],[-120.2512252401306,52.85589522911631],[-120.25111885375402,52.855909126098446],[-120.25099778658036,52.855921178843396],[-120.25089215453544,52.855929491075194],[-120.25077108723988,52.85594154358645],[-120.25065115102588,52.8559452236267],[-120.25054491524084,52.855958003180206],[-120.2504230932337,52.85597563987443],[-120.25031746094187,52.85598395158934],[-120.25019639332933,52.85599600350805],[-120.25009008242749,52.85600933663631],[-120.24996901467864,52.856021388320585],[-120.24986338218501,52.85602969962696],[-120.24974231431429,52.856041751077534],[-120.24962185008627,52.85604933477481],[-120.24950183860824,52.85605356762764],[-120.24939560220892,52.85606634614126],[-120.24928861106294,52.85608470909202],[-120.24918048717468,52.85611145321152],[-120.24907168451337,52.8561432188421],[-120.24896280682104,52.85617553835681],[-120.24886883551574,52.85620803128665],[-120.2487599562966,52.85624035954723],[-120.24865183288985,52.85626709424249],[-120.2485571063632,52.85630517144965],[-120.24844837761928,52.856336382514],[-120.24835493453875,52.856364961393076],[-120.2482461306158,52.856396726254175],[-120.24813853427445,52.85641955577434],[-120.24803101269943,52.856441831210795],[-120.2479216044439,52.85647806338891],[-120.2478127250252,52.8565103818311],[-120.24771935602321,52.85653840621715],[-120.24761047508932,52.85657073340583],[-120.24751597403976,52.85660712994253],[-120.24740762183765,52.85663554331036],[-120.24729889141025,52.8566667533046],[-120.24719189785529,52.85668511433932],[-120.2470702233816,52.856701630645944],[-120.24696511774117,52.85670602571405],[-120.246845934063,52.85670411735237],[-120.24672780864464,52.85669438161412],[-120.24662579805765,52.85667588433584],[-120.24652710980047,52.8566328151091],[-120.24644393246986,52.85658545201191],[-120.2463613605917,52.856533612309086],[-120.24627863668928,52.856482898384215],[-120.24621134998,52.8564284356919],[-120.24612930665585,52.856372691129614],[-120.246061868081,52.856319354185636],[-120.24599518600061,52.856260423754335],[-120.24592797491273,52.856205406908536],[-120.24584510113523,52.85615580957021],[-120.2457619267006,52.85610843704094],[-120.2456787512425,52.8560610733865],[-120.24559557717741,52.85601370073654],[-120.24551285519405,52.85596298625593],[-120.24537564176966,52.8558736101671],[-120.24517547678757,52.855808136632696],[-120.24507588572808,52.855771767573145],[-120.24495897168715,52.85575309483908],[-120.24485575570704,52.85574353122399],[-120.24473770832668,52.85573323949623],[-120.24461966100333,52.85572294764986],[-120.24450161373692,52.85571265568474],[-120.24438175376224,52.855715766408494],[-120.24427672520348,52.855719605092],[-120.24415746947176,52.85571824798505],[-120.2440370051648,52.85572582595849],[-120.2439312211719,52.85573524883391],[-120.24380954814552,52.855751761774236],[-120.24370255538392,52.855770119642386],[-120.24358148650961,52.85578216474736],[-120.24347335980991,52.85580890362067],[-120.2433787058274,52.85584641374699],[-120.24328329500374,52.85588951722681],[-120.24320286778082,52.85593222301132],[-120.2431074565875,52.85597532634598],[-120.24301219751085,52.85601730376827],[-120.24291678593448,52.85606040694592],[-120.24283545138817,52.856109813865025],[-120.2427685698407,52.85616274571162],[-120.24268662927878,52.8562166290525],[-120.24260536911963,52.856265481826114],[-120.24252403382147,52.856314888523286],[-120.24244292440571,52.856362624283676],[-120.24236098304833,52.856416507390676],[-120.24227979830056,52.85646479701659],[-120.24219793270719,52.85651811709011],[-120.24213014297324,52.856577749942886],[-120.24206310868875,52.85663179826931],[-120.24199531858561,52.85669143103993],[-120.24192881230803,52.85674157461462],[-120.24183271851625,52.856789698459835],[-120.24175092791315,52.85684245529513],[-120.24166966548968,52.856891307402286],[-120.24158908241132,52.856935137886595],[-120.24150789580224,52.85698342696334],[-120.24141248054407,52.85702652889319],[-120.24131721745108,52.85706850491338],[-120.24122240641586,52.857107139103775],[-120.24112729410984,52.857147998072406],[-120.24103255890884,52.857186069192316],[-120.24092306661431,52.857222857752326],[-120.24084248335146,52.857266678780306],[-120.24074653831535,52.85731368482634],[-120.24065119773712,52.857356223214],[-120.24055646164857,52.85739429394514],[-120.24046172539086,52.857432364598935],[-120.24036706394689,52.85746988119594],[-120.24025832744981,52.8575010757239],[-120.2401641954117,52.857534678559105],[-120.24005530620786,52.85756699872688],[-120.2399614012484,52.85759892159021],[-120.23985183198002,52.85763626312164],[-120.2397565647794,52.85767824679565],[-120.23967590325559,52.857722629925235],[-120.23959395699859,52.857776502121176],[-120.23951223672807,52.85782870338639],[-120.23944572575736,52.85787884551955],[-120.23936385390618,52.85793216357096],[-120.23928190685241,52.8579860355422],[-120.23920018579838,52.85803823658347],[-120.2391342789726,52.858083910964666],[-120.23903765036444,52.858135937138265],[-120.23895713844135,52.85817920286962],[-120.23884817167314,52.85821207588405],[-120.23874003584498,52.858238810360625],[-120.23863242976813,52.858261631149674],[-120.2385236899835,52.85829282405685],[-120.23841668857159,52.858311177082584],[-120.2383096870676,52.85832953001072],[-120.23818800446317,52.85834603710302],[-120.23808115401151,52.85836327293182],[-120.23796060492805,52.85837140757609],[-120.23785375432092,52.858388643197884],[-120.2377325251138,52.85840179914693],[-120.23762567433833,52.85841903456102],[-120.23751874845493,52.85843682385514],[-120.23739767026393,52.85844886256843],[-120.237277197043,52.858456433598775],[-120.23717216109551,52.85846026592549],[-120.23696852544498,52.85853065111299],[-120.2367785874863,52.85861013716978],[-120.2365884975411,52.85869073980413],[-120.2363976504586,52.858776926567806],[-120.23622178628268,52.85886272522616],[-120.23603184545311,52.85894221005943],[-120.23582760163147,52.85901705186348],[-120.23562418866602,52.85908575489826],[-120.23541994223098,52.859160604922174],[-120.23524467976824,52.85924193455106],[-120.2350417950204,52.85930672299828],[-120.23482354686367,52.85937469538878],[-120.23466235829441,52.85946233783818],[-120.23455542914165,52.85959031742277],[-120.23453605820926,52.85973327872519],[-120.23454673151876,52.85987490194976],[-120.23458744815781,52.86001519602361],[-120.23464375454957,52.86015063494203],[-120.23472972701643,52.860287532393414],[-120.23481547243337,52.86042610956514],[-120.23487185636226,52.860560985429096],[-120.23492846703611,52.86069419039469],[-120.23489691147599,52.86081688138043],[-120.2346631418838,52.86088914565841],[-120.23444125130047,52.86087373853011],[-120.2342087655861,52.86082632888436],[-120.23402539510417,52.860747046419114],[-120.23384240430298,52.86066496698742],[-120.23366115547292,52.86057003864002],[-120.2334948154306,52.86047528547393],[-120.23331424874101,52.860375335072675],[-120.2331471533578,52.860286165818614],[-120.23296469544484,52.86020018037343],[-120.23276604426074,52.86012350811747],[-120.23252690334975,52.86012523795516],[-120.23233740419569,52.86020136610689],[-120.23218702751846,52.86031933653796],[-120.23209492286902,52.86044803448316],[-120.23203202806626,52.86058155117685],[-120.23199819437981,52.86072098567574],[-120.2319250794183,52.86092988729041],[-120.23187187363969,52.86099192348381],[-120.23183365340522,52.86105356348511],[-120.23177976658636,52.861120621127284],[-120.23172656035838,52.861182657247504],[-120.23168773407939,52.86124876471554],[-120.23164920930293,52.86131264734247],[-120.23162491313532,52.86138171821613],[-120.2315857824676,52.861450068337575],[-120.23156148611898,52.86151913919209],[-120.2315378704806,52.86158318854637],[-120.23149873948844,52.86165153863013],[-120.23145976100582,52.8617187628831],[-120.23140647845909,52.86178135280727],[-120.23135281658327,52.86184673937104],[-120.23129968514806,52.86190821236223],[-120.23124662988037,52.86196912241987],[-120.23119334670798,52.86203171223752],[-120.23115451761781,52.86209782842897],[-120.23110138558387,52.86215930132079],[-120.23104832972052,52.862220211279265],[-120.23099519738102,52.8622816841183],[-120.23094145913099,52.86234762444552],[-120.23087356806232,52.862407813490876],[-120.23082043523713,52.862469286243524],[-120.23075262013218,52.86252891230767],[-120.23070024421436,52.862584800610314],[-120.23063182296359,52.862648894112866],[-120.23057937162082,52.86270533632877],[-120.23049679727525,52.86276367845743],[-120.2304295870673,52.86281883681313],[-120.23036237668552,52.86287399512851],[-120.23029456029643,52.86293362091314],[-120.23022750101939,52.86298766227001],[-120.23014553270802,52.86304152769756],[-120.2300784730724,52.86309556896572],[-120.22999718536066,52.863144412807316],[-120.22991582112222,52.86319381949701],[-120.22983400349239,52.863246567823566],[-120.22975286668661,52.86329429461495],[-120.22965681952009,52.86334185433264],[-120.2295760616376,52.863386784340996],[-120.22949492427632,52.86343451095008],[-120.22939895285407,52.86348150754735],[-120.22931842105852,52.86352476652848],[-120.22922297884314,52.86356785838196],[-120.2291276891381,52.8636098243464],[-120.22903292886842,52.863647885636524],[-120.22893824357186,52.863685392879255],[-120.22882811936911,52.86372662858348],[-120.22873403972633,52.863759668160185],[-120.2286399611498,52.863792698725916],[-120.2285311235914,52.86382444518213],[-120.22842289191361,52.86385172403969],[-120.22831518978879,52.86387509820495],[-120.22820771542665,52.863896792492525],[-120.22808661910415,52.86390882157087],[-120.22797967547572,52.863926602123655],[-120.22785857900423,52.8639386309668],[-120.22775095272102,52.86396144170945],[-120.22764332632264,52.86398425235328],[-120.22753516883236,52.864010976421355],[-120.22741331430733,52.86402858917037],[-120.22730644526189,52.86404581514022],[-120.22720078847745,52.864054106031865],[-120.22707961625703,52.864066688040246],[-120.22695912533302,52.864074248465826],[-120.2268534684106,52.86408253904502],[-120.22673237117854,52.86409456672657],[-120.2266112738782,52.86410659428326],[-120.22650485899887,52.864120468907984],[-120.22639662527341,52.86414774589443],[-120.22628770874844,52.86418005316926],[-120.22619377891976,52.86421196489683],[-120.22608478689669,52.8642448259504],[-120.2259900976814,52.86428233080386],[-120.22589556109067,52.864318709774444],[-120.22578596223893,52.86435603803167],[-120.2256918788503,52.86438907516002],[-120.22559719018174,52.86442657075861],[-120.22550234854465,52.86446519208508],[-120.22540644680456,52.86451162248903],[-120.22532583260958,52.86455544160865],[-120.22522977887735,52.864602988735584],[-120.2251486343371,52.86465071230746],[-120.22506665520015,52.864704583071045],[-120.22498596509566,52.86474895591946],[-120.22490413838332,52.86480170076218],[-120.22482162862366,52.86485947592416],[-120.2247683324084,52.864922062714335],[-120.22474417343614,52.86499002407407],[-120.22472039402311,52.86505518878658],[-120.22471076725697,52.86512610548021],[-120.22468622965053,52.86519685452328],[-120.22467713283744,52.86526386663542],[-120.22466742953863,52.865335346217954],[-120.2246725606752,52.8654075563482],[-120.22466346379571,52.86547456845038],[-120.22465376042602,52.865546048022274],[-120.22464405702381,52.86561752759003],[-120.22464911174028,52.86569030061005],[-120.22463986314708,52.865758429566675],[-120.22464552555256,52.86582672617318],[-120.22466640104821,52.86589296562637],[-120.22471664269995,52.86596289990305],[-120.22476749097316,52.86602836668295],[-120.2248183394025,52.866093833438036],[-120.22486994604763,52.86615371582785],[-120.22490596002922,52.86621845201333],[-120.22495696050795,52.86628280183259],[-120.22500780953165,52.86634826849529],[-120.22504382388688,52.866413004630566],[-120.22509527962785,52.866474003777526],[-120.22514620428855,52.86653891640574],[-120.22518221901497,52.86660365249092],[-120.22520256571357,52.86667379638753],[-120.22522298767511,52.866743386310866],[-120.22521320854564,52.86681542877325],[-120.22518935363479,52.866881147472256],[-120.2251209172056,52.866945237592674],[-120.22503976808586,52.86699296101899],[-120.22493091967782,52.86702470407714],[-120.22482389050352,52.86704304462468],[-120.22470278429061,52.8670550701926],[-120.22459651305365,52.867067826196376],[-120.224475936789,52.867075946962935],[-120.22436905891875,52.86709317022884],[-120.2242478008036,52.867106312194316],[-120.22414031622722,52.86712800271841],[-120.22403336287877,52.867145779644176],[-120.2239104364638,52.867171206791014],[-120.22372035924343,52.86725123420793],[-120.2235153709727,52.86733108458344],[-120.22333944559304,52.86741686349875],[-120.22317706616477,52.86751286177054],[-120.22307068900585,52.86763636279397],[-120.22300783178007,52.86776931115184],[-120.22292907717326,52.86790934674696],[-120.22286629554567,52.868041732106725],[-120.22281751411981,52.868180995426364],[-120.22272604613974,52.868304663969205],[-120.22260505834076,52.86842575395042],[-120.22249882892979,52.8685481375217],[-120.22240607051849,52.86868129465761],[-120.2222984747014,52.868813729796],[-120.22217884947409,52.86892476753386],[-120.22198929273378,52.86900087857623],[-120.22177226423301,52.86905932851416],[-120.22160911526689,52.86916091776559],[-120.22147472797491,52.86927066092768],[-120.22135305055386,52.869396779890586],[-120.22126089359149,52.86952546860671],[-120.22119734458754,52.86966344618024],[-120.22116392342565,52.86979952617759],[-120.22117455362141,52.869941158650086],[-120.22121508414847,52.87008257332472],[-120.22125622182858,52.870219520530405],[-120.22123740835977,52.87035801123825],[-120.22118945405043,52.87049112647955],[-120.22112537294207,52.870633008473774],[-120.22104766896128,52.87076522453548],[-120.22095558337776,52.870893358938986],[-120.22084926782286,52.871016294791886],[-120.22072834226007,52.871136828672455],[-120.22060734074962,52.87125791638157],[-120.22048641503149,52.87137844106005],[-120.22036617089265,52.871493944208986],[-120.22024440857744,52.87162061580964],[-120.22013816442896,52.87174299700158],[-120.22003207264356,52.87186425229515],[-120.21992575200433,52.87198718723781],[-120.21981943075194,52.87211012207476],[-120.21969720974514,52.872240143631565],[-120.2195908107096,52.872363641138186],[-120.21948471582286,52.87248489589053],[-120.21940654804428,52.8726204612835],[-120.21931437702317,52.87274915714747],[-120.21917913708891,52.87286504461409],[-120.21907303978342,52.8729862989567],[-120.21899547693867,52.87311739661055],[-120.2189460698905,52.873261125300964],[-120.21889795215229,52.873395365154614],[-120.21877762272905,52.87351142049234],[-120.21864260601271,52.87362563647109],[-120.21850683075941,52.87374542762471],[-120.21840065283888,52.87386724418811],[-120.21827902971701,52.873992796709835],[-120.21817277401429,52.87411517594287],[-120.21805183330801,52.87423569790048],[-120.21790318947784,52.87434024676624],[-120.21769959920763,52.87440947206887],[-120.21746952060226,52.87445378913442],[-120.21725572212043,52.87448822266679],[-120.21701520990834,52.87449940970248],[-120.21679143262936,52.87449737160818],[-120.21655403275594,52.87448566670498],[-120.21631602555046,52.874478428727194],[-120.21609164092911,52.87448085670576],[-120.21586467436539,52.87450227071698],[-120.21563649250497,52.874532619092435],[-120.21541935057991,52.8745916199898],[-120.21522861675506,52.87467610070013],[-120.21503978153257,52.874746616011734],[-120.21482332187568,52.87480058551073],[-120.2146067851072,52.87485511750104],[-120.21439024778473,52.8749096490907],[-120.21418725556799,52.874974409826955],[-120.21399644223222,52.875059442474594],[-120.2138480906648,52.875161743528366],[-120.2136841397733,52.87526890562743],[-120.21350740214206,52.87536025363408],[-120.21335889640756,52.87546367089813],[-120.21319562751356,52.87556580201829],[-120.21304658785448,52.87567313230427],[-120.21288331741,52.875775262977236],[-120.21273480749993,52.87587868836083],[-120.21258584217887,52.87598545515143],[-120.21245133354894,52.87609575041576],[-120.21233029445148,52.876216829226884],[-120.21222340820927,52.876343670290446],[-120.21210229237684,52.87646530280288],[-120.21195377816775,52.87656872715508],[-120.21178997031062,52.876674760739114],[-120.21160096854884,52.876746387282274],[-120.21136538161639,52.876721269794814],[-120.2111464572337,52.876683481972904],[-120.21096290942853,52.87660528116173],[-120.21078103571024,52.87651478585633],[-120.21061514038122,52.87641665073405],[-120.21044985391954,52.876314048002165],[-120.21030054584722,52.87620380554282],[-120.21015055500723,52.87609858420854],[-120.21001654368683,52.87598571429019],[-120.20989835857625,52.87586632161753],[-120.20979607622536,52.87573984334848],[-120.20967842395832,52.875616545956696],[-120.20954487154344,52.875500324940646],[-120.20941147069013,52.87538299585756],[-120.20927731152342,52.8752712418876],[-120.20914330389964,52.87515837984994],[-120.20900929820192,52.87504550871687],[-120.20887590024596,52.874928178992505],[-120.20872645024897,52.874819042344846],[-120.20857646816665,52.87471381891082],[-120.20841012870176,52.874619031089665],[-120.20821221367572,52.87453674275962],[-120.20802822546521,52.87446187884911],[-120.20784590964341,52.874374738337806],[-120.20766351912953,52.8742881514918],[-120.20746576039414,52.87420473611305],[-120.20729988168692,52.874106596170485],[-120.20718117642497,52.873991114032684],[-120.20706361320859,52.873867251001464],[-120.2069453667956,52.87374840915405],[-120.20679554498835,52.87364206653753],[-120.20661376820863,52.87355101066458],[-120.20643138372165,52.87346442186218],[-120.206248466928,52.87338174617587],[-120.2060139666644,52.873348800038784],[-120.20579263015043,52.873328871587],[-120.20555645695384,52.87330820975919],[-120.2053190667904,52.87329648215946],[-120.20509651363078,52.873285487099174],[-120.2048572977821,52.873287160617686],[-120.20464281082312,52.87332659253663],[-120.20441386640256,52.873362503335706],[-120.20418454053859,52.87340121024622],[-120.20396936694057,52.87344567116419],[-120.20374065020927,52.87347990092814],[-120.20351368277407,52.873501291107104],[-120.20327750972697,52.8734806247031],[-120.2030578481106,52.87344840591784],[-120.20283894790084,52.87341060254875],[-120.20260582010172,52.87336759810242],[-120.20238912738141,52.8733136042635],[-120.2022051546764,52.87323873118216],[-120.20200680132919,52.8731597828359],[-120.2018256457956,52.873064252196976],[-120.20165925226486,52.87297000867543],[-120.20150921739919,52.872865338987424],[-120.20137539137328,52.872751342157336],[-120.20122589147361,52.87264275870988],[-120.20109252245844,52.872525419977244],[-120.20095839409268,52.87241365631411],[-120.20080958101872,52.8723000510334],[-120.20066031315324,52.87218978711939],[-120.2005099034172,52.87208790371893],[-120.20035995122429,52.87198266962251],[-120.20021060888477,52.87187296799897],[-120.20007656041531,52.87176064933503],[-120.19992767643737,52.87164759684005],[-120.19977727036508,52.8715457124676],[-120.1995691320251,52.87131954149876],[-120.19836402950924,52.870956358503825],[-120.19749264780539,52.87055570326119],[-120.19681321417401,52.86984296912915],[-120.1964531705147,52.869197755769086],[-120.19596653356436,52.86860474284256],[-120.19560123320875,52.868107682027755],[-120.19502518246479,52.86773230613001],[-120.19391009316242,52.86725771472156],[-120.19263662246203,52.866849477277164],[-120.19162539019983,52.86648962672554],[-120.19075961216973,52.86593964796982],[-120.19028419238614,52.86559339935719],[-120.18961422402081,52.864922124834145],[-120.18852414144756,52.86404674253874],[-120.1874205551773,52.86337982267376],[-120.186155521844,52.86269250876893],[-120.18461779211604,52.86192475845396],[-120.18333526531588,52.86125678963697],[-120.18198715299931,52.860413509044],[-120.18051077137429,52.85930749022414],[-120.17893523292544,52.85816278447559],[-120.17752817002233,52.85786073463595],[-120.17622770784965,52.85787091511526],[-120.17558737822712,52.85796728973118],[-120.1742330170867,52.857825791503586],[-120.17295443350828,52.85745810637779],[-120.1717572311076,52.85682345985377],[-120.17059726642802,52.85646220059233],[-120.16881250638855,52.85630205142659],[-120.16773395485575,52.85665431734459],[-120.1672501778233,52.85724249077404],[-120.16662476813639,52.85842799409702],[-120.16612929509127,52.859210115047865],[-120.16491676224767,52.86064750147244],[-120.1637468979167,52.861446641873876],[-120.16136919727808,52.86277652399305],[-120.15988668453116,52.863458874616796],[-120.15838654584115,52.86372540963486],[-120.1571248631098,52.86399537953415],[-120.15609003994102,52.86457068425537],[-120.15523792126018,52.86533780222359],[-120.15416050311288,52.866440007554985],[-120.1526560422527,52.86858405433791],[-120.15121605004937,52.87058401059423],[-120.15020274257616,52.87176134827239],[-120.14897734416684,52.87263405632304],[-120.1481905614669,52.87314127657074],[-120.14709528325966,52.873719121783125],[-120.1349396777323,52.876507162425675],[-120.13549258661033,52.87748103138881],[-120.1359455747684,52.87885469079408],[-120.13665824546464,52.88051232471764],[-120.13785424717925,52.88234926630599],[-120.13869055263727,52.88332770803692],[-120.14131569286015,52.8847704880479],[-120.1437414804113,52.88592607318498],[-120.14581037284735,52.88685295988595],[-120.14982621487314,52.88916042421994],[-120.15307627246156,52.89204069205163],[-120.15725868256816,52.89651331076293],[-120.1612397287914,52.900934671574085],[-120.16270093290196,52.90357321157164],[-120.16499857334205,52.90741591436758],[-120.16653387898785,52.9115872120535],[-120.16749617591847,52.915360081268844],[-120.17064722040432,52.919093756924816],[-120.1743860770838,52.92214362080175],[-120.17662883320699,52.92323755008589],[-120.1770904606114,52.923470137890476],[-120.1806816879196,52.92378250891051],[-120.18652615224094,52.924787060303785],[-120.18690540245512,52.925075675803576],[-120.18941067352364,52.927315104570525],[-120.19336626427331,52.92813755084759],[-120.19876150886579,52.92805675130887],[-120.20426293501352,52.927635779721726],[-120.20520676534976,52.927185403615255],[-120.21093032849019,52.92436456679762],[-120.21751735331073,52.92068712795092],[-120.22453173334137,52.91924693853725],[-120.23058289270777,52.91928075209569],[-120.23530991992138,52.9195961031566],[-120.24079160480107,52.919970202851395],[-120.24652890196613,52.92176976178433],[-120.24981234519129,52.92269957696943],[-120.25415721854039,52.92330067275709],[-120.25955127163479,52.92333117096378],[-120.26664346969267,52.922855800623346],[-120.27403476640254,52.92226755595138],[-120.27629937639706,52.92210645337745],[-120.28322073020483,52.921229980869406],[-120.29023016301818,52.92069691817159],[-120.29614896638438,52.921046931891915],[-120.29850197587582,52.921005495395455],[-120.29873680994208,52.92103825603949],[-120.29895903720565,52.921053541191924],[-120.29919731862113,52.921060611643576],[-120.29942134439099,52.92106249282049],[-120.29966269836903,52.92104666088957],[-120.29988852216216,52.92103513806746],[-120.30012680362898,52.92104220663732],[-120.30034963072252,52.9210530214584],[-120.3005861145089,52.921073492218234],[-120.3008084924358,52.9210876569512],[-120.30104557587325,52.921103659078504],[-120.30128385791555,52.92111072530545],[-120.30150788404113,52.92111260251054],[-120.3017455670453,52.921124135515065],[-120.3019838493183,52.92113120032468],[-120.302207426245,52.92113642698432],[-120.30244570866343,52.92114349085876],[-120.30267093314886,52.921136430415736],[-120.30290981468723,52.921139025632264],[-120.30313384103333,52.921140899742376],[-120.30337152463575,52.92115242946293],[-120.30359674901491,52.92114536724827],[-120.30383750176642,52.92113400341514],[-120.30406272597085,52.92112694030859],[-120.30430100864386,52.921134000426875],[-120.30452323840373,52.92114927507192],[-120.30476212012695,52.92115186652876],[-120.30500160070297,52.92114998977068],[-120.30522562719871,52.92115185989903],[-120.30546331142858,52.92116338539513],[-120.30568434425385,52.92118759331219],[-120.30592038230549,52.92121140415197],[-120.30614081693453,52.92124007894562],[-120.30637730454302,52.92126053806654],[-120.30660073302329,52.92126687331399],[-120.30683849369503,52.92127783309718],[-120.30705952789614,52.9213020384298],[-120.30729302336182,52.92134483441029],[-120.30751076606998,52.921393611470805],[-120.30772880854778,52.92144015425538],[-120.30794804854077,52.921477761146356],[-120.30816676463789,52.92151928137281],[-120.3083855565693,52.921560238255694],[-120.30861965323393,52.92159856385133],[-120.30883897023119,52.92163560614282],[-120.30907426452569,52.92166499533598],[-120.30929350686456,52.92170259971536],[-120.30951289918033,52.92173908674758],[-120.3097471474265,52.9217762931585],[-120.30996579262055,52.921818364035396],[-120.31018391414467,52.92186434825795],[-120.31040196195472,52.921910886076674],[-120.31062023518169,52.92195574361362],[-120.31083708748989,52.92201121613627],[-120.31102101305818,52.922089267676796],[-120.31120329548217,52.92217959632748],[-120.31138565285256,52.92226937068879],[-120.31155225797339,52.92236512684429],[-120.31173401873849,52.922459368415346],[-120.31190129767242,52.922550102302765],[-120.31208305999965,52.922644343324066],[-120.31224989303615,52.92273841859158],[-120.31243210548955,52.922829308241134],[-120.31259841612885,52.9229272967643],[-120.3127488249275,52.9230323842272],[-120.31286727970537,52.92315278682658],[-120.31298543614528,52.92327542318032],[-120.31308806373322,52.923402370745556],[-120.31319076728087,52.923528755272976],[-120.31335708239811,52.92362674268197],[-120.3135398989803,52.923713162801384],[-120.31372219369986,52.92380348746065],[-120.31393973152613,52.92385393243352],[-120.31416257683838,52.923864721083454],[-120.31440207225617,52.9238628252004],[-120.31462611343628,52.92386467743183],[-120.31486560883314,52.92386278060552],[-120.31509263904817,52.923842293084675],[-120.31531922071073,52.923825155957],[-120.31554752133277,52.923795169068015],[-120.31577529802178,52.92376909550888],[-120.31600367213751,52.92373855372962],[-120.31623070114252,52.92371806401195],[-120.31647266037696,52.923697738789954],[-120.31669909130683,52.92368171594982],[-120.31702041256429,52.92362699903186],[-120.3171023134444,52.92357362909453],[-120.31716950722573,52.923518423303136],[-120.31725133241615,52.92346561619958],[-120.31731852583381,52.92341041031946],[-120.31740050121539,52.92335647722649],[-120.31746754488096,52.923302388204384],[-120.31754884703957,52.92325348573343],[-120.31764425829034,52.92321088673168],[-120.31773966935019,52.923168287651464],[-120.31783508021914,52.92312568849276],[-120.31794332991016,52.92309889126965],[-120.31804911545062,52.923090519117174],[-120.31816736722443,52.92310073676115],[-120.31828442413997,52.92311988987076],[-120.31838557945206,52.92314614280533],[-120.31850091956079,52.92317813613493],[-120.31860088029353,52.92321332446975],[-120.31868479013733,52.92325672964896],[-120.31876825209518,52.92330348561282],[-120.31888351764556,52.92333604150647],[-120.31898422579981,52.92336564476904],[-120.31908403802774,52.92340194963813],[-120.31918332713167,52.92344216821098],[-120.31928276695741,52.92348126081447],[-120.31938213169987,52.92352091627534],[-120.31946731169589,52.92355483128855],[-120.31956712477918,52.92359113574374],[-120.31968261631064,52.923622010957224],[-120.31978183242693,52.923662783026685],[-120.31988254197857,52.92369238551468],[-120.31998355031413,52.92371975401634],[-120.32009948925888,52.92374728690455],[-120.3202028869262,52.923756784018444],[-120.3203205438141,52.92377146729507],[-120.32043820078317,52.923786150454006],[-120.32054040415962,52.92380458287363],[-120.32065746407756,52.92382373361486],[-120.32077452410081,52.923842884239264],[-120.32089173352797,52.92386091779627],[-120.32099281815721,52.9238877224858],[-120.32110928133496,52.92391134058036],[-120.32120924594457,52.92394652668399],[-120.32130921071939,52.923981712701966],[-120.32139424388622,52.92401674326227],[-120.32149308994963,52.92406030178988],[-120.3216089567546,52.92408838719333],[-120.32171116136335,52.924106818592975],[-120.3218288197386,52.92412150035877],[-120.32194603037927,52.924139532862775],[-120.32204883233386,52.924153496160656],[-120.32216649095456,52.92416817758842],[-120.32228310481369,52.92419067756518],[-120.32238471291714,52.92421357618836],[-120.32248520109688,52.924244856335825],[-120.32260106905846,52.924272940759515],[-120.32270267752921,52.92429583910698],[-120.32281988901987,52.92431387073876],[-120.32293695136319,52.92433301920688],[-120.323039157134,52.92435144945059],[-120.32315510096855,52.924378970382605],[-120.32325670999028,52.92440186825025],[-120.32337213118142,52.924433302772535],[-120.32347329275058,52.92445955131332],[-120.32357370829226,52.92449138453573],[-120.32369024856956,52.92451444605863],[-120.3237906644029,52.92454627909492],[-120.32389122960883,52.92457699509079],[-120.32400717460831,52.924604515179645],[-120.32410878462652,52.924627412308546],[-120.32422584841152,52.92464655949099],[-120.32434350914532,52.92466123873807],[-120.32446191599935,52.92467033309325],[-120.32456412323991,52.92468876200896],[-120.32468178420699,52.924703440917526],[-120.32478235042697,52.924734156148986],[-120.32489822123526,52.92476223830278],[-120.32499811577979,52.92479798411553],[-120.32509868245128,52.92482869907493],[-120.32519857851355,52.924864435780414],[-120.3252981011801,52.92490296925741],[-120.32539799639052,52.924938714727624],[-120.3254973702295,52.92497836499015],[-120.32558136576847,52.92502120225964],[-120.3256807399707,52.925060852365455],[-120.3257806358728,52.92509659750738],[-120.3258812038141,52.92512731179253],[-120.32599834495181,52.925145894260275],[-120.32610115066507,52.92515985401013],[-120.32621881346385,52.9251745313779],[-120.32633587970197,52.9251936764554],[-120.32643689574687,52.92522103939348],[-120.3265529181264,52.92524800295302],[-120.32665348698244,52.92527871657552],[-120.32675450343322,52.925306079239625],[-120.32686925789984,52.925342541090586],[-120.32696930579827,52.925377159324526],[-120.32705442157639,52.92541162281892],[-120.32716865519261,52.925451989259344],[-120.32726974635752,52.92547879746728],[-120.32737195675409,52.925497223935565],[-120.32748962092327,52.92551190003],[-120.32760728517354,52.92552657600661],[-120.32772614250665,52.92553231619852],[-120.32784440338341,52.925542524104486],[-120.32794840361504,52.92554754656944],[-120.32806785751781,52.925548818581724],[-120.32818790788022,52.92554562263692],[-120.32829369748418,52.9255372412894],[-120.32841449333264,52.92552846031798],[-120.32853573644296,52.9255163283444],[-120.3286416010526,52.925507383736516],[-120.32876403682077,52.92548631585107],[-120.32887176439809,52.92546341350719],[-120.32897889549156,52.925444978904515],[-120.32908587740312,52.92542766116423],[-120.3292071200351,52.925415528498306],[-120.32931298306039,52.92540659222169],[-120.32943422556765,52.925394459321666],[-120.32955487169909,52.92538679413979],[-120.32967372890448,52.925392532365606],[-120.3297777289855,52.92539755321467],[-120.32989375396158,52.925424513478134],[-120.32999544423097,52.9254468425652],[-120.33011072416716,52.92547938742043],[-120.33021293579458,52.92549781142167],[-120.33033060094456,52.925512484676],[-120.33044766996059,52.9255316256599],[-120.3305665276906,52.9255373629836],[-120.33067306204505,52.925523394687595],[-120.33078138486896,52.925496022747964],[-120.3308890362685,52.925473681506965],[-120.33099862625495,52.925436810718075],[-120.33110694864928,52.92540943847733],[-120.33120100986355,52.92537688120781],[-120.33129581608833,52.9253387390475],[-120.33140473415368,52.925306898678976],[-120.33151365205613,52.92527505820896],[-120.33162130251276,52.92525271629517],[-120.331729027962,52.92522981133293],[-120.33183667938333,52.925207460285854],[-120.33194425558894,52.92518567208983],[-120.33206639077757,52.925166834693066],[-120.33217396676297,52.92514504628656],[-120.33228102052736,52.925127171624766],[-120.33238859630274,52.92510538302157],[-120.33250998607384,52.9250921299865],[-120.33261763673708,52.925069778223225],[-120.3327388773434,52.92505764191675],[-120.33284585675224,52.9250403207549],[-120.33296709720963,52.92502818421306],[-120.33307303357005,52.92501868160201],[-120.33319442288094,52.92500542786039],[-120.33330080606514,52.924992574147154],[-120.3334226421521,52.92497596927251],[-120.33352842930995,52.92496758321726],[-120.33364914738254,52.924959359821585],[-120.33376859980504,52.92496062604881],[-120.33386902422471,52.924992450477795],[-120.33396788531397,52.92503599850219],[-120.33403598847349,52.925085940708314],[-120.33411835429801,52.92514105851542],[-120.33420131496071,52.925191717331515],[-120.33426941983475,52.92524165046207],[-120.33435230699371,52.92529286318416],[-120.33443459855795,52.92534854371419],[-120.33450203309935,52.925403507524535],[-120.33456954169179,52.92545791727872],[-120.33465205787003,52.92551191773268],[-120.33471949295094,52.925566881412905],[-120.3347865552595,52.92562464193863],[-120.33485406575767,52.9256790425865],[-120.33493695447136,52.9257302548831],[-120.33503589223744,52.925773247974824],[-120.33511915308814,52.92582167218954],[-120.33520271318014,52.92586785347294],[-120.3353015764747,52.92591140928939],[-120.33538498801492,52.92595870740847],[-120.33546906930145,52.926000983579655],[-120.33556897562622,52.926036720393135],[-120.3356848570926,52.92606479190539],[-120.33578603012751,52.92609102983699],[-120.33590250753574,52.92611463326131],[-120.33600360696379,52.92614142502131],[-120.33612008463051,52.9261650282296],[-120.33622066255326,52.92619573366005],[-120.3363218362295,52.92622197112896],[-120.33642114819015,52.92626217508935],[-120.336520014838,52.926305720936185],[-120.33660335346111,52.92635358113276],[-120.33670281488727,52.92639266788317],[-120.33678742005208,52.92643102924162],[-120.33688665909149,52.92647178682082],[-120.33698619609225,52.926510310376514],[-120.33708670041818,52.92654157801308],[-120.33718608888245,52.92658121836751],[-120.3372865947136,52.926612476896324],[-120.33738598352947,52.92665211708024],[-120.3374860418643,52.92668673528262],[-120.33758587765128,52.926723024386185],[-120.33768593750622,52.926757633481316],[-120.33780003594711,52.92679910654011],[-120.33798239414622,52.9268894023842],[-120.33811735246857,52.92699876284195],[-120.33822028783992,52.92712400827131],[-120.33829179550906,52.92726067087046],[-120.33836345368074,52.92739620750839],[-120.33840487463884,52.927534225624655],[-120.33844644471695,52.92767112674412],[-120.33847285921622,52.92780954562028],[-120.33848382028887,52.92795171620352],[-120.33847999702172,52.92809261659913],[-120.33847632377268,52.92823239107659],[-120.33847257547751,52.92837272849489],[-120.33846882715764,52.928513065900844],[-120.33844977381037,52.92865603804356],[-120.33844617424576,52.92879525845473],[-120.33844294620198,52.92893169089777],[-120.33845383363101,52.929074415403],[-120.33848024902498,52.92921283415837],[-120.33850644071173,52.929352932818055],[-120.33851807274095,52.92949007243391],[-120.33852895937379,52.929632805818976],[-120.33853954955781,52.92977776419312],[-120.33853624790578,52.9299147505733],[-120.33853242463584,52.93005565080103],[-120.33852882522315,52.930194871095395],[-120.33851036676096,52.9303333752255],[-120.33847719796552,52.930470046216115],[-120.338457623351,52.93061692311046],[-120.33843916447415,52.9307554271937],[-120.33843548967037,52.93089521037748],[-120.33843233646034,52.931031079692765],[-120.33841268640535,52.93117851948113],[-120.33837959166624,52.931314627421656],[-120.33833111567053,52.93145393302218],[-120.33829801926557,52.931590049852474],[-120.33827941057748,52.931729670795555],[-120.3383358439069,52.93186728778284],[-120.33842281618165,52.932000189273424],[-120.33852598724711,52.93212376306833],[-120.33866007038961,52.93223982435776],[-120.33879519508292,52.93234807564803],[-120.33894451098506,52.93246206476151],[-120.3391103998891,52.932563920155935],[-120.33927680995644,52.932661870389694],[-120.33944314577266,52.93276038333435],[-120.33961000389071,52.932854982180764],[-120.33977641624543,52.93295293169082],[-120.339942382873,52.93305423186588],[-120.34006109127156,52.93317348937934],[-120.34014903837787,52.93329913365978],[-120.34023601923883,52.933432033694295],[-120.34027700566926,52.93357340154751],[-120.34031799237192,52.933714769374276],[-120.34035957463819,52.93385166929986],[-120.340400561883,52.933993037073755],[-120.34044273997311,52.9341254690726],[-120.34049895964625,52.93426476474176],[-120.34057138073207,52.934394714611756],[-120.34064290816303,52.93453137517402],[-120.34071518132554,52.93466244190284],[-120.34078730492769,52.934794634481115],[-120.3408741420242,52.93492865089107],[-120.34096120228914,52.93506099624084],[-120.341049155952,52.935186639703964],[-120.3411678733981,52.93530589594579],[-120.34131668462295,52.93542379570235],[-120.34148363233977,52.93551782878686],[-120.34168364991287,52.935588165796574],[-120.34188530482723,52.93564621580041],[-120.34210241638694,52.935700513276785],[-120.34232004862855,52.935750905424435],[-120.34253656618662,52.93580966997588],[-120.34275301055403,52.93586898814432],[-120.34295422197108,52.93593038721822],[-120.34317126137041,52.935985245667226],[-120.34338785626613,52.93604344569147],[-120.34360541800505,52.93609438947007],[-120.34382327774469,52.936143098902136],[-120.3440414354517,52.93618957398616],[-120.34425966740459,52.93623549464652],[-120.3444784209546,52.93627750103044],[-120.34469851339477,52.93630945425459],[-120.34493391353094,52.936338771489304],[-120.34517057858196,52.936358589514],[-120.34539468684969,52.9363603831636],[-120.34563425115917,52.936358423744366],[-120.34585776469628,52.936364684406996],[-120.34609613956002,52.93637165983906],[-120.34633451450189,52.93637863478852],[-120.34655683889558,52.936393829919695],[-120.34679164612608,52.93642761133739],[-120.34699464990427,52.93647559978494],[-120.34721050807114,52.936539386571106],[-120.34740927699822,52.9366192036326],[-120.3475927381521,52.936701665215075],[-120.34777634984435,52.93678300059571],[-120.34794264771243,52.93688205530246],[-120.34812395649251,52.93698070772965],[-120.34829040456793,52.937078644956955],[-120.34845789376291,52.93716876310671],[-120.34865622092818,52.937251937897884],[-120.34885618478995,52.93732281666769],[-120.34905681745467,52.93738867316513],[-120.34925782165064,52.93745174134236],[-120.34947324355858,52.93751886593834],[-120.34967268937021,52.9375936571994],[-120.34985727410563,52.937667733402556],[-120.35003955586183,52.93775912694345],[-120.3502220618621,52.93784884026153],[-120.3503884444672,52.93794732849206],[-120.35055438094383,52.93804917635337],[-120.3507053825658,52.93815086338666],[-120.35087124690736,52.93825326481024],[-120.35102180433407,52.93835830236152],[-120.35117169459957,52.93846836165196],[-120.35130694575497,52.938576035209884],[-120.35145639069061,52.938689453996666],[-120.35157566756953,52.93880478559177],[-120.3517091383037,52.938925862417996],[-120.35181251326951,52.93904830706418],[-120.35193067749181,52.939172020088584],[-120.35203412855464,52.93929390156411],[-120.35215177483212,52.93942151930879],[-120.35223925008634,52.939551067972694],[-120.35232687559042,52.93967949064579],[-120.35238373560523,52.93981431224628],[-120.35244015158712,52.93995247581164],[-120.35249708718258,52.940086734377296],[-120.35253797221985,52.94022921436481],[-120.35257974868043,52.940364992447826],[-120.35262122835897,52.94050300446402],[-120.35266300535388,52.94063878249495],[-120.35268932561227,52.94077831405988],[-120.35271557118752,52.940918408564805],[-120.35274189179117,52.94105794009434],[-120.35279823572907,52.941196666340915],[-120.35288527222691,52.94132955638664],[-120.35295751977964,52.94146117801174],[-120.35306045894532,52.94158697231091],[-120.35314727369395,52.94172154206822],[-120.35325028890051,52.94184677322382],[-120.35336846507178,52.94197048459414],[-120.35347244742464,52.94208845070191],[-120.35357531597089,52.94221479852465],[-120.35366280129942,52.94234434591028],[-120.35378046089284,52.942471961790275],[-120.3538845192681,52.942589373476174],[-120.35400210536187,52.94271755207338],[-120.35410542248167,52.94284054844532],[-120.35422375238893,52.942963141902624],[-120.35434237995419,52.94308350127173],[-120.35452536330794,52.943169856688],[-120.35472536356131,52.94324073416953],[-120.35494141728734,52.943303380601975],[-120.35514431458289,52.94335247177672],[-120.35538035471619,52.943377300075134],[-120.35578064004869,52.943404396748555],[-120.35587993685252,52.943445137890315],[-120.35597886213624,52.94348867586975],[-120.35601521573577,52.94355280571281],[-120.35603640740815,52.94361846450748],[-120.35604154878683,52.943692336280584],[-120.35604676381249,52.94376565402729],[-120.35605324005215,52.94382948189414],[-120.35607324554428,52.943904067588285],[-120.35607905443314,52.943972917397694],[-120.35606955389535,52.94404440421879],[-120.35604593142827,52.94410959219582],[-120.35602164027964,52.944179811049715],[-120.35601228804762,52.94425018087586],[-120.35598799795082,52.944320390781],[-120.35596437520563,52.944385578730724],[-120.3559395647802,52.944459702522025],[-120.35591586706373,52.94452545341491],[-120.3559063661285,52.94459694019883],[-120.35589745897272,52.94466395905523],[-120.35588810642896,52.94473432885074],[-120.35586381585095,52.94480453870965],[-120.3558397472816,52.944873077557276],[-120.35580073939595,52.94494146539217],[-120.35576188103016,52.94500872729488],[-120.35572413538884,52.945067616296846],[-120.35565576992047,52.945131779205404],[-120.35560278777284,52.945192751099135],[-120.35553560963567,52.94524797809188],[-120.35549675057095,52.945315239894555],[-120.35545774172881,52.94538362759743],[-120.35543404394117,52.94544936942047],[-120.35540938044048,52.94552237607238],[-120.3553710399764,52.945585732861396],[-120.35534682170088,52.945655388555394],[-120.35532327087435,52.94572002230168],[-120.35529831008179,52.945795262877105],[-120.35528955019059,52.945861164659256],[-120.35527989943155,52.945933768313814],[-120.35527039711357,52.94600525498517],[-120.35524684716519,52.94606987976657],[-120.35522218298372,52.946142886351694],[-120.35518376684952,52.94620680601329],[-120.35514550026592,52.946269599745165],[-120.35509244232463,52.946331125388596],[-120.35503879030435,52.946397118920416],[-120.35498565721439,52.94645920746821],[-120.35493274729023,52.946519616054076],[-120.35486497224251,52.94657931053326],[-120.354782480501,52.946637173901934],[-120.3547294215766,52.94669869936813],[-120.35476592452532,52.94676171249351],[-120.35483289895245,52.94682057782573],[-120.35490061718636,52.94687384929113],[-120.35499999489139,52.946914037067735],[-120.35510004154594,52.94694919388897],[-120.35521599283796,52.94697724581335],[-120.35531656008041,52.94700848855682],[-120.35541883432394,52.94702689042668],[-120.35553493450851,52.947053825057054],[-120.35563720895544,52.94707222673681],[-120.3557533094019,52.94709916115115],[-120.35585499020223,52.947122030557445],[-120.35597213013918,52.947141145901035],[-120.35608874998975,52.947164175023964],[-120.35619161875697,52.94717810830312],[-120.3563087589995,52.94719722331128],[-120.35642827451211,52.947198466524966],[-120.35654838381004,52.9471952416974],[-120.35665244033798,52.94720023873379],[-120.35677195586906,52.94720148159868],[-120.35689028392216,52.94721166018583],[-120.35700742457088,52.9472307744986],[-120.35712456532484,52.94724988869466],[-120.35722639564926,52.94727163993407],[-120.35732755876136,52.947298413031376],[-120.35744291878704,52.947330930680785],[-120.35754356211609,52.94736161749317],[-120.35764420559028,52.94739230421888],[-120.35776023337986,52.947419799608],[-120.35786072873688,52.94745160312904],[-120.35796196628651,52.94747782165561],[-120.35806194310415,52.9475135299714],[-120.35817789788625,52.947541578969854],[-120.35827869064397,52.94757114816821],[-120.35837918674588,52.9476029512438],[-120.35847916302043,52.9476386681385],[-120.35857810189917,52.94768219488746],[-120.35866165558112,52.94772892185722],[-120.35874520944657,52.94777564876628],[-120.35882816994778,52.947826843544625],[-120.35891164940236,52.947874133292096],[-120.35901058927094,52.947917659671354],[-120.35909466262804,52.94796048135614],[-120.3591941216139,52.948000102607494],[-120.3592781965056,52.9480429152232],[-120.35937706236129,52.9480870042496],[-120.35947585364289,52.94813165615114],[-120.35956007744687,52.94817335157914],[-120.35964296492686,52.94822510873062],[-120.35971113651333,52.9482750264347],[-120.35980948349327,52.94832302900099],[-120.35989415308545,52.94836137323526],[-120.35999316867758,52.948404344752475],[-120.36007709562871,52.94844828270666],[-120.36017603802429,52.948491808091624],[-120.3602750542046,52.94853477936842],[-120.3603595751015,52.94857424918271],[-120.3604585180789,52.94861777432702],[-120.36054266904209,52.94866003199987],[-120.36064146287713,52.94870468290815],[-120.36072613397836,52.94874302653537],[-120.36082500296087,52.94878711432742],[-120.36088164795073,52.94881119032923],[-120.36096616995927,52.948850659701534],[-120.36106511419983,52.94889418432898],[-120.36116457720267,52.948933803893794],[-120.36124865473501,52.94897662401436],[-120.36134759955738,52.94902014840106],[-120.36144706311767,52.94905976772432],[-120.36153114118314,52.9491025876399],[-120.36163119837879,52.94913773886573],[-120.3617305889135,52.949177911971184],[-120.3618302015121,52.94921641398192],[-120.36193018447399,52.94925212791184],[-120.3620141898447,52.94929550150236],[-120.36211313619158,52.949339025237535],[-120.36219721547907,52.94938184467024],[-120.36229556900794,52.94942983619232],[-120.36237913020352,52.949476560474906],[-120.36246209839275,52.949527752640435],[-120.36253020063207,52.94957823163408],[-120.36262862854394,52.94962566884725],[-120.36271219048982,52.949672392887926],[-120.36279671590687,52.94971186092584],[-120.3628962571698,52.94975091604746],[-120.36299616873325,52.94978718308604],[-120.36311287437026,52.94980964225488],[-120.36321412076587,52.949835856228894],[-120.3633306783756,52.94985943216786],[-120.36343007101428,52.94989961275738],[-120.36349824972596,52.94994952821841],[-120.36356531597833,52.95000782550859],[-120.36361647819311,52.95007322869285],[-120.36363709176663,52.9501433538066],[-120.36365755832574,52.95021458696485],[-120.36369355798139,52.95028151110994],[-120.36371469131205,52.95034772227933],[-120.36372043871779,52.95041713440297],[-120.36374046074631,52.950491718495364],[-120.36374687600971,52.950556099703185],[-120.3637371638894,52.95062926680449],[-120.36372782299956,52.95069963696709],[-120.3637190016128,52.95076609320483],[-120.36369405270601,52.950841335328555],[-120.36367058641693,52.95090540757888],[-120.36364645224278,52.950974510728784],[-120.36362217090407,52.9510447219213],[-120.36361327455126,52.95111174109827],[-120.36360378507737,52.95118322821668],[-120.36360908759494,52.951255991269065],[-120.36361490968093,52.951324840398534],[-120.36362065824208,52.95139424354998],[-120.36362648036572,52.95146309267323],[-120.36363163468317,52.951536972698165],[-120.36365299154428,52.951601503881264],[-120.36365807238086,52.95167593792395],[-120.36366396814734,52.95174423300849],[-120.36368443552145,52.951815466092846],[-120.3637203618444,52.95188295312559],[-120.36375688255521,52.951945963265246],[-120.36379273556072,52.95201400429554],[-120.36379796496234,52.95208732132768],[-120.36384972311595,52.952148256384895],[-120.3639018514973,52.95220640342037],[-120.36396847705748,52.95226805135856],[-120.36403562233457,52.95232578533794],[-120.36410313786169,52.952380731279966],[-120.36418618732613,52.95243136811564],[-120.364269089914,52.95248311294139],[-120.3643360864935,52.95254197266396],[-120.36437260868179,52.95260498258745],[-120.36443960559637,52.952663842246864],[-120.36452280545437,52.952713352914294],[-120.36459024750613,52.952768861525264],[-120.36467329949384,52.952819489069554],[-120.36475627696178,52.952870679515],[-120.36483984761692,52.95291740195409],[-120.3649239367195,52.95296021934725],[-120.36502274632258,52.95300485752763],[-120.36512237085954,52.95304335666436],[-120.36520631225754,52.95308729083938],[-120.36530527068734,52.95313081179257],[-120.36537286265542,52.953185202954295],[-120.36547122855777,52.953233191713565],[-120.36557144695077,52.95326722251649],[-120.36567136905134,52.953303487208245],[-120.36575545975371,52.95334630399764],[-120.36583792136567,52.953401398652666],[-120.36589027692405,52.9534578648147],[-120.36594144686114,52.95352326685201],[-120.36599261695555,52.95358866886452],[-120.36602899309149,52.95365280415779],[-120.36607957060778,52.953722674077476],[-120.36611602169042,52.953786246377014],[-120.36615239936701,52.9538503726887],[-120.3662037183936,52.9539146576089],[-120.36623957697093,52.95398269781312],[-120.3662600485482,52.95405393928901],[-120.36628126244595,52.95411958688461],[-120.36628634818119,52.95419402070018],[-120.36630756100367,52.954259677221266],[-120.36632862686459,52.95432644178755],[-120.36634924696878,52.95439656624572],[-120.36638518088367,52.954464043424025],[-120.36640513478923,52.95453918984199],[-120.36642619975599,52.954605963315416],[-120.36644741418533,52.95467161085903],[-120.36646788644208,52.95474285226916],[-120.3664885081633,52.954812967749405],[-120.36649418718521,52.95488293357531],[-120.36651480783196,52.954953057980845],[-120.36652078333599,52.95502078982514],[-120.36651122436301,52.955092831033916],[-120.36651705167029,52.955161679859756],[-120.36650756617209,52.95523316703657],[-120.36649808064199,52.955304654209414],[-120.36648933614072,52.95537055644349],[-120.36646498228524,52.95544133099631],[-120.36644070186284,52.95551155151552],[-120.36643136437272,52.955581921684185],[-120.36640782607653,52.955646548321155],[-120.36638302727913,52.95572067380515],[-120.36634461926495,52.95578459673516],[-120.36632033963375,52.95585480827911],[-120.3662962816582,52.95592334880349],[-120.3662725935622,52.95598910132226],[-120.36624838721296,52.95605875881752],[-120.36623897576688,52.95612968297277],[-120.36620004898087,52.95619751082339],[-120.3661617149661,52.9562608707144],[-120.36612286145655,52.95632814450903],[-120.36608386078362,52.95639652633801],[-120.36606039502954,52.956460598848764],[-120.36603626158573,52.956529702255594],[-120.3660119810204,52.95659991370436],[-120.3659730534423,52.95666774146059],[-120.36596364021666,52.95673867450356],[-120.36593987762976,52.95680498094772],[-120.36591515205099,52.95687854332055],[-120.36590625809035,52.956945562433795],[-120.36588205059712,52.95701521981339],[-120.36585791654905,52.95708432316058],[-120.36584842951461,52.9571558102009],[-120.36585492368337,52.95721962807344],[-120.36589011684015,52.957292699147835],[-120.36592597776313,52.95736073930828],[-120.3659936519541,52.95741456701409],[-120.36607775229243,52.957457374530975],[-120.36617560947734,52.95750927649329],[-120.36625911609713,52.95755656075448],[-120.36634277231207,52.95760271903411],[-120.36642613107935,52.95765112015954],[-120.36651023232045,52.957693927361504],[-120.36661046205246,52.95772795718843],[-120.36672585745252,52.95776046553872],[-120.36682764314351,52.957782771298085],[-120.36694303885822,52.95781527943445],[-120.36704430666558,52.95784148998855],[-120.36714490827431,52.957872722424824],[-120.3672454353374,52.95790451773555],[-120.36734507335922,52.95794301487797],[-120.36744448867438,52.957983191882704],[-120.3675446463311,52.9580177749341],[-120.36764398850661,52.958058505793986],[-120.36772816528024,52.95810075809054],[-120.36779599111603,52.958153467750044],[-120.36786233526045,52.95821734723681],[-120.36791410669315,52.958278280281576],[-120.36801942819342,52.95838674245371],[-120.36813835946965,52.958505415783264],[-120.36825714441781,52.9586251970356],[-120.36837541083192,52.958748892081985],[-120.36849427062046,52.95886811905192],[-120.36861305639806,52.95898790885478],[-120.3687473062768,52.9591039339691],[-120.36888200019062,52.95921661689592],[-120.3690320836333,52.9593260980257],[-120.36918327960767,52.95942719708184],[-120.36934867876671,52.959534039099346],[-120.3694989126782,52.95964240262564],[-120.36963405472218,52.959751733692464],[-120.3697681616542,52.9598688745776],[-120.36991839781668,52.95997723754696],[-120.3700684119501,52.96008728026809],[-120.3702195384346,52.960188940909724],[-120.37038627630041,52.960285728525974],[-120.37053681175618,52.960391856702365],[-120.37070288519472,52.96049366583945],[-120.3708694772393,52.96059156974271],[-120.37103643973633,52.96068668539972],[-120.37120318141163,52.96078347183059],[-120.37136918332975,52.96088584296674],[-120.3715197980034,52.96099140688599],[-120.37167033878417,52.9610975335686],[-120.37183649114402,52.961198787037254],[-120.37198718153716,52.961303796312066],[-120.37213720570006,52.9614138363105],[-120.37228834184108,52.96151549421655],[-120.37245434922714,52.961617863778365],[-120.37262154199792,52.96171129717656],[-120.37280412493006,52.961801528208895],[-120.37298767046181,52.96188450298131],[-120.3731855685673,52.96197210316331],[-120.37338568948734,52.962042939204984],[-120.37360223570995,52.96210276267317],[-120.37383779847725,52.96213202165647],[-120.3740374089568,52.96209380564985],[-120.37421482851136,52.96199719050272],[-120.37437907833254,52.9618870225258],[-120.37456936797389,52.96180620231148],[-120.37478606713002,52.961751941723016],[-120.37501637883187,52.96170788224265],[-120.37524365656303,52.961686716214544],[-120.37546730751745,52.961692920569114],[-120.37570227732867,52.96172664380741],[-120.37592119298789,52.96176859111646],[-120.37615586761542,52.9618045474375],[-120.37637360032168,52.96185542986202],[-120.37659140694177,52.96190575785287],[-120.37680928865109,52.96195552247374],[-120.3770282811508,52.961996904754116],[-120.37724779131976,52.96203438160818],[-120.37746789366427,52.96206739006739],[-120.37770419859953,52.962091056338885],[-120.37793976412296,52.96212030712027],[-120.37816045916611,52.96214884629658],[-120.37838130242898,52.96217626806161],[-120.37861746055975,52.962201049497075],[-120.37885302732023,52.962230298450315],[-120.37907372354671,52.96225883591388],[-120.37929390182772,52.96229128692594],[-120.37952887797725,52.96232500251972],[-120.37974839204213,52.962362474707064],[-120.37996731496294,52.96240441448119],[-120.3801858692141,52.96244914187804],[-120.38040361003974,52.96250001683436],[-120.38062164711828,52.9625486573869],[-120.3808387975324,52.962603999535304],[-120.38105498686237,52.96266660625198],[-120.38125571555281,52.96273296089351],[-120.3814399463009,52.96281090041561],[-120.3816378673033,52.962898477413425],[-120.38182084345345,52.962985906371614],[-120.38200507633243,52.963063844998146],[-120.38218827628043,52.96314959340707],[-120.38238782525933,52.96322489104754],[-120.38258914993106,52.9632867753882],[-120.38280475406113,52.96335384687545],[-120.38300600545526,52.96341629346804],[-120.38322279448934,52.963474419230764],[-120.38342404706762,52.9635368651047],[-120.38363965378167,52.96360393505391],[-120.38384039092688,52.963670285253855],[-120.38405769903409,52.963724504428406],[-120.38427670650901,52.96376588212628],[-120.38449623219144,52.96380334543429],[-120.38473122081624,52.96383705062082],[-120.38495192932172,52.9638655770447],[-120.38518765740555,52.96389369629755],[-120.38540777553052,52.96392668988528],[-120.38564453842754,52.96394698918812],[-120.38586709537253,52.96396154686203],[-120.386105040499,52.96397290919483],[-120.3863281141705,52.96398356094535],[-120.38656724126274,52.96398598629588],[-120.38680577754764,52.96399287918767],[-120.38702885149932,52.96400352961119],[-120.3872673879574,52.96401042156836],[-120.38751998322054,52.96402417100515],[-120.38796506881243,52.96394031409972],[-120.38841103746438,52.96384976239192],[-120.38885685774483,52.96376031706439],[-120.38929038777822,52.96365061710931],[-120.38970904409207,52.96354020587659],[-120.39012946966581,52.96341638901405],[-120.39054871192843,52.96330150673659],[-120.39096979629274,52.96317266477178],[-120.391363645569,52.96302340420236],[-120.39172988876732,52.96285653123416],[-120.39211100031818,52.96269036648481],[-120.3924778279359,52.96251902310069],[-120.39283125692747,52.962335799121455],[-120.3931974884486,52.962168921521666],[-120.39360427264864,52.962034892751326],[-120.39403954299276,52.96191177100689],[-120.39445757986572,52.96180581085302],[-120.39490469340288,52.9617062893692],[-120.39534981333168,52.961621850406935],[-120.39578072360933,52.96153167872888],[-120.39621296031498,52.9614314433518],[-120.39660684820385,52.9612816110553],[-120.39698792659465,52.96111543037156],[-120.39738180882797,52.96096559545545],[-120.39781337208011,52.960870385239446],[-120.39827150510631,52.96080061109969],[-120.39872845873448,52.96073976242976],[-120.39960231719967,52.960581315648454],[-120.40006507464948,52.96058987172148],[-120.40052783228538,52.96059842597675],[-120.40099184177565,52.96059748815508],[-120.40145636742734,52.96059263444195],[-120.40192266057198,52.96057437456213],[-120.4023796065469,52.96051351172149],[-120.40280011259962,52.960388532389096],[-120.40319330434707,52.96024370907644],[-120.40358664185,52.96009775847233],[-120.4039946986996,52.95995364038421],[-120.40438876693345,52.95980210192102],[-120.4047826109386,52.959652242142106],[-120.40516217068424,52.95949720517582],[-120.40555615634251,52.95934622575021],[-120.40593644648726,52.95918560109349],[-120.40631680676115,52.95902442114444],[-120.40667007411584,52.95884170931401],[-120.40700964447106,52.95864936156235],[-120.4073906586441,52.958483146964966],[-120.40778396546918,52.95833718219091],[-120.40820443413298,52.95821218340333],[-120.40862357628814,52.958097236447166],[-120.40904330459406,52.95797781983736],[-120.40947657654085,52.95786916226001],[-120.40990999335487,52.9577593860421],[-120.41031682980022,52.957624182170576],[-120.41069642540121,52.95746856419455],[-120.41107726754689,52.95730345459536],[-120.41143057309735,52.957120174246164],[-120.4118249555787,52.95696582251119],[-120.41222994123432,52.95684457053434],[-120.41266378151947,52.956731432986],[-120.41311079794967,52.95663185103836],[-120.41354103328203,52.95654607336953],[-120.4140108770225,52.95650040245866],[-120.41447609122778,52.95648991216486],[-120.41493821938046,52.95650287801938],[-120.4154003478148,52.95651584206082],[-120.41586130117159,52.9565377406734],[-120.41633661090049,52.95656424900256],[-120.41679639009928,52.9565950803443],[-120.4172538198257,52.956643782686335],[-120.41771066311178,52.95669695145159],[-120.41818237712317,52.956750824528875],[-120.41863863532735,52.95680845789475],[-120.41910858972066,52.956875731874824],[-120.41954719118297,52.95695387973284],[-120.41998293080769,52.95705381295284],[-120.42038746609934,52.957163494543124],[-120.42070605643575,52.957357902107226],[-120.42097402277074,52.95759598186836],[-120.42124206490926,52.95783350692678],[-120.42154249221166,52.95805233569154],[-120.42184350968,52.95826669544379],[-120.42214386916719,52.95848608561288],[-120.42244540696255,52.95869652961215],[-120.4227309021724,52.958915212680765],[-120.42303156546966,52.959132357454195],[-120.42331714057123,52.95935047604865],[-120.42361758925999,52.95956929932027],[-120.42393445174481,52.95977710253612],[-120.42425183140232,52.959980990708715],[-120.42455339022123,52.96019142912166],[-120.42483810004944,52.96041624622689],[-120.42502947913013,52.960668108926065],[-120.4252040084212,52.96093435081472],[-120.42531773585091,52.961207816263304],[-120.42543161025503,52.96148017343667],[-120.42556131159945,52.96174597027119],[-120.42567460345239,52.96202278641037],[-120.42578833564382,52.9622962601613],[-120.42591855566035,52.962558142305916],[-120.4260930255207,52.962824936633574],[-120.42629988147144,52.96307303375918],[-120.42655318858873,52.96330928682742],[-120.42683727048923,52.96353912096437],[-120.42709058336663,52.96377537281066],[-120.42728213754289,52.96402611428229],[-120.42742724442354,52.96428869941764],[-120.42754106784827,52.964561608105654],[-120.42765423227202,52.96483954786424],[-120.42776813253208,52.96511189324544],[-120.4278818864428,52.965385364465405],[-120.42799622952028,52.96565435836595],[-120.42812485930499,52.965928534102815],[-120.42826983125067,52.9661922349559],[-120.42847561601606,52.966448710151845],[-120.42869789047134,52.96669359313731],[-120.42895123246959,52.96692984053358],[-120.42918919133795,52.96716928789457],[-120.42944195366799,52.96740999346086],[-120.42968006458058,52.967648322703795],[-120.42991759180171,52.96789111966303],[-120.43015512173466,52.96813391610783],[-120.43040789409099,52.968374628398436],[-120.43066191576467,52.968605840647676],[-120.43094656763911,52.96883175890631],[-120.43126580717771,52.969022222366526],[-120.43166462345938,52.9691765467841],[-120.43206468762675,52.969321379298954],[-120.43246416840466,52.96947067868297],[-120.43286467761693,52.96961215727622],[-120.4332657755276,52.96974916625286],[-120.4336822626124,52.96988297273007],[-120.4340993394396,52.970012300541306],[-120.43451758944681,52.97013269930565],[-120.4349186975911,52.97026970261273],[-120.43528529974776,52.97044159678368],[-120.43557035400887,52.970664715433315],[-120.43585511954363,52.97089005855352],[-120.43615681194953,52.97110047481329],[-120.43645748350212,52.971318700783485],[-120.43675808434314,52.97153748895818],[-120.43702842494851,52.97175878313535],[-120.43734376065328,52.971979390520325],[-120.43759791535102,52.97221002431346],[-120.43768236722921,52.97247928051288],[-120.4376748581348,52.97276498509819],[-120.43766749651492,52.9730495636334],[-120.43766013362527,52.97333415105598],[-120.43765394306051,52.97360979298355],[-120.43763163146446,52.973894230751746],[-120.43761012423712,52.974172529087575],[-120.43757330257108,52.97445346599723],[-120.43752167684747,52.97473314514983],[-120.4374701230672,52.97501227017005],[-120.43740427907164,52.97528621428603],[-120.43733740810576,52.97556798669049],[-120.43727126954637,52.97584416476427],[-120.43720432419404,52.97612649106141],[-120.43712315953086,52.976403091281234],[-120.43704214141641,52.97667856540193],[-120.43696119488463,52.97695348535939],[-120.43687951510975,52.97723399051733],[-120.4367984200269,52.97751002733157],[-120.436673204131,52.97778004758726],[-120.43647550502718,52.97803201814993],[-120.4362490001551,52.9782753243427],[-120.4359935426918,52.978511083061406],[-120.4357232786529,52.978745574335946],[-120.43548196185574,52.978987612091444],[-120.43529890749275,52.97924196444241],[-120.43517367697454,52.97951198282459],[-120.43506259147628,52.97978828132009],[-120.43493735784843,52.98005829936282],[-120.43478317278561,52.98032076100005],[-120.43462854628939,52.98058657356013],[-120.43445969948294,52.980846650641254],[-120.43426131307137,52.981103648240804],[-120.4340481923364,52.98135882434257],[-120.43384994758189,52.981614704117206],[-120.43372528702648,52.98188025236305],[-120.43365882210443,52.98215866147064],[-120.43365201697462,52.9824387788769],[-120.43370487516006,52.982720586718564],[-120.43378859055954,52.982995429273736],[-120.43391782362647,52.98326568167879],[-120.43406237715594,52.98353328681055],[-120.43422225141028,52.98379824461364],[-120.43439737279584,52.98406111802179],[-120.43457249751911,52.984323982192045],[-120.43474776975633,52.9845857379445],[-120.43487759982682,52.98485152083007],[-120.4349915999688,52.985123855955],[-120.43507547493333,52.98539758014884],[-120.43512863808928,52.98567716168503],[-120.43518136357464,52.98596008537119],[-120.43521928225152,52.986241751007505],[-120.43524246766546,52.986521595614704],[-120.43525099219401,52.986799065144496],[-120.43524346540308,52.98708475818773],[-120.4352520638956,52.987361664630285],[-120.43524460968527,52.98764680352028],[-120.4352677960322,52.98792664788767],[-120.43530564319049,52.98820887615923],[-120.43546620268093,52.9884688003383],[-120.43570387927612,52.98871158260191],[-120.4359727859064,52.98894460149249],[-120.43625811434036,52.98916659895458],[-120.4365757725099,52.989370450324266],[-120.4369254675122,52.98955838945117],[-120.43729151059227,52.98973586959123],[-120.43764165115374,52.98992045539575],[-120.43791174770607,52.99014453327435],[-120.43816520802257,52.99038131159486],[-120.43843421134311,52.99061377058026],[-120.43870424384494,52.990838400608965],[-120.43902192623713,52.991042245183955],[-120.43937157200983,52.99123073986237],[-120.43973705405057,52.99141268044763],[-120.44010488285544,52.991576738068204],[-120.44050401543754,52.99173047642298],[-120.44088936595449,52.99187513676192],[-120.44128894329874,52.99202552126574],[-120.44168984074958,52.99216585089519],[-120.44209066825559,52.99230673320979],[-120.44250645347867,52.992447763089324],[-120.44292487546086,52.99256868445482],[-120.44334505569532,52.99267619963044],[-120.44378107110734,52.99277715972873],[-120.44423387431307,52.99286429028717],[-120.44467186924835,52.99295016231597],[-120.44510957339833,52.993038266833125],[-120.4455634047993,52.993117581788795],[-120.44601906665541,52.99318292726313],[-120.44647582731466,52.99323988854425],[-120.44693193057597,52.99330187930123],[-120.44763804618199,52.99339871277767],[-120.442665498624,53.0020927309927],[-120.44335477979303,53.0058630081444],[-120.44450883714619,53.00803053083985],[-120.45580101088828,53.0111446893542],[-120.45725638322341,53.0159410785913],[-120.4574931690191,53.024215381538006],[-120.45414583773189,53.03376459285127],[-120.4498142660667,53.04074414761551],[-120.4433220919037,53.049438524586584],[-120.43388712322522,53.058821434172266],[-120.4223472283608,53.065246516184544],[-120.4157558832078,53.07325501514711],[-120.41570117462646,53.084020959184485],[-120.41606537389583,53.09741364493472],[-120.41732438184032,53.10300410743055],[-120.41820062823379,53.107514863102146],[-120.42097831162921,53.110362766345276],[-120.43705730057367,53.11689879898301],[-120.44514694358502,53.11728268996732],[-120.45302621516699,53.11720994471486],[-120.45769217928364,53.11873623590527],[-120.45732472396423,53.12016484015962],[-120.45535883650263,53.12668196841566],[-120.45349010415396,53.131766766785105],[-120.45446761292611,53.13519552032072],[-120.45676092398368,53.13901869664365],[-120.46079232050036,53.145062598911416],[-120.4656898441216,53.15161720062951],[-120.4696109163248,53.15702949324633],[-120.4707696844726,53.158857707131325],[-120.47352886252554,53.15937004755062],[-120.48999977579764,53.1626376588545],[-120.5047564377638,53.16499996175401],[-120.50932188827322,53.165385845430954],[-120.51254234640315,53.162005691632714],[-120.51603133712356,53.15794231926725],[-120.52056424740815,53.15347329470969],[-120.52308937533648,53.149413921364484],[-120.5263889647906,53.14540445747242],[-120.53249881320889,53.14824066542282],[-120.53832281067756,53.15096890281284],[-120.53995376204371,53.15381659131023],[-120.54210561217452,53.16101190365096],[-120.54057228963772,53.17066812577],[-120.5404908910253,53.174206372181544],[-120.54233729645235,53.178886015721396],[-120.54581971521432,53.18487607598207],[-120.55124925510161,53.1867429247635],[-120.55918042669143,53.189861285607385],[-120.56822652397976,53.190519407062624],[-120.57421707751148,53.19072537043344],[-120.58076621161376,53.18927506047958],[-120.58781471736822,53.18897093596365],[-120.59221871888215,53.19169732574339],[-120.60283747121177,53.197826591540974],[-120.61087412701715,53.20334328536866],[-120.61806918834202,53.20863113233548],[-120.62638761696813,53.212202058672986],[-120.634995424694,53.21599330946712],[-120.64351620167582,53.22024452196074],[-120.65202165869977,53.22415446806657],[-120.65977223739611,53.22737968190713],[-120.66522876876229,53.2295869352177],[-120.67060973842965,53.23442240109647],[-120.67178227574063,53.23682113360805],[-120.67344092813225,53.239664168266145],[-120.67691985697525,53.24491022934825],[-120.68449874942222,53.25001893526254],[-120.69064422341509,53.253366314887366],[-120.69313850553216,53.25592847386119],[-120.69995894724619,53.2596706672675],[-120.7068552571565,53.26329783248027],[-120.71214100052282,53.26716105062752],[-120.71560547733729,53.26897219401078],[-120.72311546576704,53.26808126616526],[-120.73101666488385,53.26610686597198],[-120.7352832949626,53.264999549237004],[-120.73735292253714,53.26242109545427],[-120.74226759509685,53.25937464447085],[-120.74548926486598,53.25769934170088],[-120.75280589297229,53.255434226582814],[-120.75792937706544,53.25432649470572],[-120.76070219619297,53.25431551294853],[-120.7683355075092,53.25519108481407],[-120.77875830435404,53.25811297422093],[-120.78881494452231,53.261204818946105],[-120.79466568672892,53.264207607637545],[-120.80039748336753,53.27172301636122],[-120.80439492448805,53.278042582436164],[-120.80714224716293,53.28448689914986],[-120.8153412787644,53.28375397397772],[-120.82848020935961,53.28243298093601],[-120.83344461272418,53.28275285341829],[-120.84282153507144,53.28470131644295],[-120.84666077486872,53.28633646589936],[-120.85400239553161,53.28595450884366],[-120.86087339371512,53.28596956031592],[-120.867398602657,53.28845168058016],[-120.87432222143997,53.2928686139334],[-120.87811382735673,53.29701837511626],[-120.87995593572536,53.299351192733525],[-120.89981741288653,53.299924148900494],[-120.90530090315828,53.30257707137162],[-120.91059615713904,53.30591971210804],[-120.91414836555538,53.30709535545066],[-120.91880046304182,53.30615527683244],[-120.92268940340604,53.30441464725941],[-120.93095575336103,53.30225290545569],[-120.93627376806562,53.30090709389989],[-120.94110745141248,53.29882099900886],[-120.93944865390824,53.29694300345075],[-120.93463041244097,53.29388714861078],[-120.93172693351782,53.2913335772234],[-120.93072482104813,53.28813733456719],[-120.93070933737175,53.28751441782314],[-120.93278661223034,53.285781403881025],[-120.93561931879125,53.28428169278531],[-120.9391320952084,53.28288958612274],[-120.9457762628533,53.28101770196503],[-120.95032472993842,53.2799053208636],[-120.95083729025951,53.27902299487773],[-120.95941682502863,53.277084575114635],[-120.96208556612068,53.27719525352489],[-120.96498800482287,53.27812447411363],[-120.96768618886082,53.27836768454969],[-120.97627568443474,53.276589675916],[-120.97624261613947,53.27762551482514],[-120.97448776635255,53.282612619321746],[-120.97940428442612,53.28776452736009],[-120.9771296524557,53.2910426649518],[-120.97676190820115,53.292736515486936],[-120.97629803638985,53.29776428375855],[-120.97598045906217,53.30282856506842],[-120.97691071689596,53.304509450096724],[-120.98324499463861,53.30702385180509],[-120.98513421323024,53.30799888835838],[-120.98572170092699,53.31370226242645],[-120.9871318264602,53.31477772665343],[-120.99124393214159,53.315198521601594],[-120.99274272954122,53.31654439915016],[-120.99390177705959,53.319226465070365],[-120.99536702070634,53.31996832742897],[-120.99659844279562,53.32026679667177],[-120.99813385088812,53.3216882570749],[-120.99812893490899,53.323380006277034],[-121.00010388225371,53.32491205556288],[-121.0048010087032,53.32613192098167],[-121.01313007390779,53.32763737766385],[-121.01303879763546,53.33007905869866],[-121.01245687935894,53.33039097052558],[-121.01224927121449,53.33051981809078],[-121.01207894541925,53.33066821083009],[-121.01191223978121,53.33081786963958],[-121.01174378796556,53.330966340748994],[-121.01156628471358,53.33111161894919],[-121.01137811848183,53.33125139028056],[-121.01118814031057,53.331390528130555],[-121.01099460625385,53.33152783608497],[-121.01080281593306,53.33166633118331],[-121.01063254717859,53.3318141585353],[-121.01047843581097,53.33196884650974],[-121.01035529616173,53.33213268921219],[-121.01031171530317,53.3323094277756],[-121.01032623679178,53.33248917537435],[-121.0103672946216,53.332667783539115],[-121.01042369506862,53.33284423351885],[-121.01048391461333,53.33302028695764],[-121.01054607789482,53.33319585601568],[-121.0106312892816,53.33336790167027],[-121.01073767255215,53.33353634498173],[-121.01086549286721,53.333698950859194],[-121.01099519066565,53.33386163547275],[-121.0110707577796,53.33403552135509],[-121.01103468400554,53.33421257555791],[-121.01092615472245,53.33438040230934],[-121.01081581375344,53.33454759576924],[-121.01071465534181,53.3347168643152],[-121.01058601143635,53.33487935284046],[-121.01041579465644,53.33502662535609],[-121.0102508756601,53.33517692363322],[-121.01012960231742,53.33534084473756],[-121.01003762387958,53.335512178945955],[-121.0099548950791,53.33568502510075],[-121.00987585198838,53.33585859221988],[-121.00980056249026,53.33603230814278],[-121.00972889200511,53.33620730827161],[-121.00966841484373,53.33638333607641],[-121.00964158373698,53.336561901701685],[-121.00960905680923,53.336740784866386],[-121.00952826619724,53.336913155239706],[-121.00941603641701,53.33708026827879],[-121.00930749330708,53.33724809331172],[-121.0092545852343,53.337423882181184],[-121.0092464525872,53.33760379105237],[-121.00922705879874,53.33778323535943],[-121.00917395146094,53.337960695945924],[-121.00906366096538,53.3381273242538],[-121.00887907490417,53.338268375426054],[-121.0086364014109,53.33837440502262],[-121.00835237523592,53.33843153434459],[-121.00807137315746,53.33849496269702],[-121.00784975856985,53.3386142304977],[-121.00767576373065,53.338761340942234],[-121.00751082035357,53.33891163513751],[-121.00735311753421,53.3390644798912],[-121.00720446629101,53.33922050846314],[-121.0070503152664,53.339375191420196],[-121.00689442001992,53.339528668764],[-121.00677493102664,53.339693228265865],[-121.00672569706926,53.33986972798656],[-121.00668008363068,53.34004750309039],[-121.00659545538946,53.340220267560994],[-121.0064924564701,53.340388889853536],[-121.00637289663479,53.34055401210522],[-121.00622973427812,53.34071139372994],[-121.00606658807534,53.3408623279615],[-121.00590344176517,53.341013253017756],[-121.00574746944089,53.34116729195622],[-121.00559705958877,53.34132213081768],[-121.0054465170574,53.341478078044055],[-121.00531783114795,53.34164056925957],[-121.00525739462122,53.341816031119436],[-121.00518958178023,53.341990068453846],[-121.00503735694245,53.34214426434219],[-121.00486514878104,53.342292003678104],[-121.00470018156608,53.342442293709304],[-121.00452803786743,53.34258946931204],[-121.00432732118357,53.34272309717109],[-121.00410695308716,53.342847469978494],[-121.00395693031298,53.34299894518092],[-121.00389816351878,53.34317616595568],[-121.00390689799815,53.34335679387124],[-121.00400583881954,53.343524363150934],[-121.00416890748599,53.34367610480839],[-121.00435401606282,53.34381698580884],[-121.00456310948745,53.343946512877146],[-121.00478446026693,53.34406813665989],[-121.00500949935751,53.34419048120791],[-121.00514704681207,53.34435068904121],[-121.00504220105799,53.34450295241778],[-121.00478835289364,53.34460738244166],[-121.00452536331812,53.34469346685663],[-121.00425197377683,53.3447718084829],[-121.0040360789872,53.34489018827614],[-121.0038835740791,53.345046617472065],[-121.00373126654692,53.345201374675376],[-121.00356809507842,53.345352296201035],[-121.00341203127992,53.34550689496443],[-121.00334252745844,53.34567917119568],[-121.00338557826294,53.34585674210088],[-121.00348807734694,53.34602615033965],[-121.00360806716299,53.34619124521331],[-121.00372611506171,53.346356815232404],[-121.00382486263508,53.34652606513642],[-121.00390430967651,53.34669899497242],[-121.00397404085508,53.34687431904099],[-121.00404383842806,53.34704908877225],[-121.00413092835956,53.34722121689391],[-121.00424321725083,53.347387666832965],[-121.00434578931659,53.34755651992225],[-121.00440412845249,53.347732487217954],[-121.00443190251656,53.34791166958384],[-121.00445210253167,53.34809109025004],[-121.00446472840142,53.348270749220475],[-121.00447742018955,53.34844985389236],[-121.00449567664143,53.34862975873513],[-121.00451594414447,53.34880861610553],[-121.0045361449473,53.34898803667771],[-121.00455252471619,53.34916786247536],[-121.00455382141512,53.3493476106326],[-121.00455511812511,53.34952735877376],[-121.00457531943924,53.34970677927525],[-121.00460698367559,53.34988499295833],[-121.00464810002515,53.35006304726929],[-121.00469297115193,53.35024125952197],[-121.0047436728193,53.3504180369148],[-121.0048038948088,53.350594082749396],[-121.00487557922294,53.35076893065391],[-121.00495309445847,53.35094234366298],[-121.00501713838901,53.35111799302643],[-121.00504686142253,53.351296690707805],[-121.00505191483668,53.35147659663016],[-121.00504945917957,53.35165618661611],[-121.00505632412616,53.35183672576685],[-121.00514570341136,53.35200557921371],[-121.00526967089223,53.352169149156495],[-121.00536642830403,53.352339435816795],[-121.005457421876,53.35251060296439],[-121.00556188860187,53.35267953354951],[-121.00566441303047,53.35284893933897],[-121.00568307551319,53.35302548216411],[-121.00565226269411,53.353205568192486],[-121.00566858306262,53.35338594774106],[-121.00580890218548,53.353538973763335],[-121.00599768271431,53.35368111801228],[-121.00608894706203,53.35385004956111],[-121.00611478913827,53.354029706307585],[-121.00611421525659,53.35420937505171],[-121.00607602646444,53.3543880277307],[-121.00600994258198,53.35456325197165],[-121.00593829169854,53.354737684982794],[-121.00586094108239,53.35491244425456],[-121.00570175984261,53.355061290915586],[-121.00549206518834,53.35519060934601],[-121.00528585876528,53.3553223203496],[-121.00511017391082,53.35546711184387],[-121.00499237751602,53.3556328647301],[-121.00494311746759,53.35580936231601],[-121.0049292635712,53.35598959552305],[-121.00488362510335,53.356167368515244],[-121.00477675955972,53.356336384300995],[-121.00457476421633,53.35646434519197],[-121.00432305157857,53.35656606331613],[-121.0041299114523,53.356698879443584],[-121.00399366394576,53.35686105202124],[-121.00379689912876,53.356992592098486],[-121.00359074442399,53.35712374576742],[-121.00349707979377,53.35729275906486],[-121.00350782681387,53.3574723383142],[-121.00352809331514,53.357651204010246],[-121.0035180547619,53.357831031678714],[-121.00350043898726,53.358011106531215],[-121.00345465956056,53.35818999629342],[-121.00327579919798,53.35832959366246],[-121.00315622366826,53.35847842404984],[-121.0032333477667,53.358655190004185],[-121.00335920498281,53.358818840409384],[-121.00351448878509,53.35897305505649],[-121.00369168789634,53.35911752676771],[-121.00386674514127,53.35926415419738],[-121.00401425543113,53.35942029609497],[-121.00414407284732,53.359582422886774],[-121.00428562108944,53.3597411167101],[-121.00444694171298,53.35989222349791],[-121.0046180509599,53.36004036356096],[-121.0047793080964,53.36019202415363],[-121.00493051452486,53.36034887708949],[-121.00501971177307,53.36051941063513],[-121.00493019881615,53.3606852302501],[-121.00473624543066,53.36082475206783],[-121.0045318867612,53.3609565403826],[-121.00431866923344,53.36108346340151],[-121.00410551625657,53.361209831752824],[-121.00389753106917,53.36134034346877],[-121.00373818586291,53.36149030452406],[-121.00366805911906,53.36166761277675],[-121.0035380248592,53.361824988246745],[-121.00326240772297,53.3618734718681],[-121.00295954312683,53.36184949726811],[-121.00266038631423,53.36184196706488],[-121.0023606043451,53.36187146246541],[-121.00210635954917,53.3619624058748],[-121.00195573034398,53.36211834708685],[-121.00198228969515,53.3622918622631],[-121.00211754168721,53.36245590882884],[-121.00221605495788,53.362627393705054],[-121.00216582685607,53.36279598806483],[-121.0019768239504,53.36294132977165],[-121.00184302387656,53.3630985452336],[-121.00183686415076,53.36327742178662],[-121.00189119338292,53.36345546586917],[-121.00198802892724,53.36362520005384],[-121.00220178449521,53.363763907017415],[-121.00221293567682,53.363892407359266],[-121.00197468647148,53.36402333185355],[-121.00173178031116,53.3641299092183],[-121.00148564850477,53.36423185804898],[-121.00125488915421,53.364347364385345],[-121.00099176912912,53.364433440144545],[-121.00072858214365,53.36452006959284],[-121.00046707319395,53.36460844927036],[-120.99998984960197,53.3647809715493],[-120.99969757406552,53.36482650032776],[-120.9994392842319,53.36491951475174],[-120.99932197058226,53.36508079129929],[-120.99921874889189,53.36525052270184],[-120.99905554950915,53.36540088226567],[-120.99886718861379,53.365540631411626],[-120.99868587238572,53.365684612241836],[-120.99850113083136,53.365825645374755],[-120.99831269921509,53.36596595682649],[-120.99816022966259,53.36612125956637],[-120.9980792699366,53.36629417392115],[-120.9979235082154,53.36644540248544],[-120.99776191167471,53.36659807424813],[-120.99771508405698,53.36676962276975],[-120.99785274342139,53.36692928298047],[-120.99802975774527,53.3670754343175],[-120.99818129548993,53.36722950605943],[-120.99828382564898,53.367398916995676],[-120.99842738895725,53.367556578781205],[-120.99856887653924,53.36771583305713],[-120.99869681950922,53.36787789499011],[-120.99881101998878,53.36804442744101],[-120.99891167665896,53.36821375869052],[-120.99905323419243,53.3683724580664],[-120.99917327134365,53.36853754665368],[-120.99924684094933,53.36871247547589],[-120.99918828424121,53.36888745670073],[-120.99906311364968,53.369051214573304],[-120.99889802093713,53.36920149456658],[-120.99879854355345,53.369371383414105],[-120.99871751428151,53.36954485219964],[-120.99864023942204,53.36971848801635],[-120.9985944936157,53.369896811665576],[-120.99848635340484,53.3700601630967],[-120.99834480647786,53.3702187294975],[-120.99819970113107,53.370375465787816],[-120.99807452227435,53.370539222500824],[-120.99798241794255,53.37071054439489],[-120.99792372027659,53.370886642308534],[-120.9977514366533,53.37103380603202],[-120.9975120357041,53.37114221329571],[-120.9972245500706,53.371194678042414],[-120.99701481501755,53.37132342622818],[-120.99686775682244,53.37148063597374],[-120.9967298883232,53.37163992177013],[-120.99659926549221,53.371801758806505],[-120.99650903056715,53.371973158566654],[-120.99647641945717,53.37215204394239],[-120.99649471902515,53.37233138470092],[-120.99657995218956,53.3725034370921],[-120.99671367067663,53.372664611696344],[-120.99686898012885,53.37281884290945],[-120.99699297672511,53.372982419803066],[-120.99707814729561,53.37315502605283],[-120.9971116746041,53.37333332771759],[-120.99715466039582,53.37351146166687],[-120.99726310236241,53.37367887531248],[-120.99738120235969,53.37384444938665],[-120.99745873027071,53.37401785637005],[-120.99748273558238,53.37419687983966],[-120.99746891072002,53.3743765473379],[-120.99744569325098,53.37455582826283],[-120.99749639483355,53.37473259768908],[-120.99754890813584,53.374910009385914],[-120.99759196332901,53.37508758876997],[-120.99761214723974,53.37526700819599],[-120.99761153679681,53.375446675022125],[-120.997569603023,53.3756246017006],[-120.99749781540675,53.37579958208986],[-120.99741871270457,53.37597257427377],[-120.99729170283221,53.37613568740573],[-120.9971428164562,53.37629226375019],[-120.99704338119614,53.37646159627123],[-120.99697910347459,53.376636892697796],[-120.99692408310477,53.376813711029904],[-120.99687463149517,53.37699132091494],[-120.99682148968785,53.3771682093373],[-120.99676089975907,53.37734422701217],[-120.99665407979994,53.377512125203445],[-120.996539879348,53.37767858041448],[-120.99652611528163,53.377857693229],[-120.99653495832231,53.378037201121266],[-120.99653622169028,53.37821694681232],[-120.99653366219775,53.378397088529304],[-120.996534925571,53.378576834188806],[-120.9965380674257,53.37875665894598],[-120.99653557387117,53.378936246347116],[-120.99647122323076,53.37911210549582],[-120.99636627612615,53.37928008239839],[-120.99625206974228,53.379446537189736],[-120.99614893346923,53.3796151472591],[-120.99607719911762,53.379789572182574],[-120.99598687791612,53.379961534085865],[-120.99591514230325,53.38013595888221],[-120.99589567318608,53.380315388307146],[-120.99589317679971,53.380494975558456],[-120.99589068039205,53.38067456279394],[-120.9958787241095,53.380854317602775],[-120.99586864735997,53.38103414257874],[-120.99586990797377,53.38121388801434],[-120.99589008748372,53.38139330719626],[-120.99596567751881,53.381567198597445],[-120.99609164094201,53.38173030058694],[-120.99621955098671,53.381892918341165],[-120.99635329791036,53.38205409261195],[-120.99650079420441,53.38221079635075],[-120.99667404378086,53.382357353592795],[-120.9968572197251,53.3824998362135],[-120.9970244368306,53.382649508025025],[-120.99716804741767,53.38280717015529],[-120.99732936490717,53.38295883915634],[-120.99752649420905,53.38309516955808],[-120.99776458845896,53.383204590349095],[-120.99804128788068,53.38327519620171],[-120.9983278291446,53.38332656638468],[-120.99861839436602,53.38337585908433],[-120.9989143304364,53.38342762325427],[-120.99917639354057,53.38336734287557],[-120.99946101882468,53.38332372553741],[-120.99999511376316,53.38335743323024],[-121.00028946838724,53.38337487819447],[-121.00058136520329,53.3834129913167],[-121.0008579378279,53.383484708092205],[-121.00111072248843,53.38358182000493],[-121.00135928531648,53.383682688949925],[-121.00164422043709,53.38373173714211],[-121.0019465400757,53.383729854737375],[-121.00224731364865,53.38372509437075],[-121.00254896898642,53.38372879783771],[-121.00284708467453,53.38374639450961],[-121.00314119769367,53.383781782187675],[-121.00343772014173,53.38381278715585],[-121.00372915852383,53.383854799265436],[-121.0039948838898,53.383938414977905],[-121.00423695689116,53.38404630007289],[-121.0044544944768,53.384169999052965],[-121.00466787750227,53.384296892106725],[-121.0048793830747,53.38442370578867],[-121.00510081476762,53.384546444044815],[-121.00534738238623,53.384648334178465],[-121.0056024614431,53.38474216301987],[-121.00585312031276,53.38484142079715],[-121.00611008043057,53.38493532750796],[-121.00636262041591,53.38503466316494],[-121.00655326862486,53.38516228598244],[-121.00655826669863,53.385342743124134],[-121.00649401397028,53.38551805287048],[-121.00640378992959,53.385689458986754],[-121.0063283300989,53.385863731657444],[-121.00630708973954,53.38604252905341],[-121.00623189438652,53.386214566666],[-121.00613240639957,53.3863844602344],[-121.00602929269884,53.386553078296146],[-121.00594282223605,53.38672464190334],[-121.0058360820087,53.38689198435766],[-121.00576806725384,53.38706712670778],[-121.00568152775323,53.387239253293465],[-121.00560988682223,53.387413120103865],[-121.00554368224611,53.38758890446223],[-121.0053775236468,53.387731853954136],[-121.00518002080571,53.38786842746941],[-121.0050040680528,53.38801432504123],[-121.00487349209416,53.38817561559838],[-121.00473553334531,53.38833546364494],[-121.00466945647244,53.3885101299578],[-121.00464075788875,53.38868805661765],[-121.00467043997631,53.388867305372905],[-121.00477311480876,53.3890361546576],[-121.00496030484983,53.389177101619076],[-121.00518390632156,53.38929768345682],[-121.00544250553357,53.389393905343496],[-121.00560533867473,53.389533270351805],[-121.00563301264378,53.389713566244424],[-121.00571630657586,53.38988664914454],[-121.0058876080487,53.390034230939435],[-121.0060548871808,53.39018388951414],[-121.0062442970099,53.390322124107975],[-121.00646992001344,53.39044166494144],[-121.00669970060102,53.390558010800476],[-121.006893071935,53.39069472154957],[-121.00706022451766,53.39084549614536],[-121.0071651910336,53.39101106970605],[-121.00721199550293,53.39118935637808],[-121.00727034017775,53.391365881714194],[-121.00732103635302,53.391543208717856],[-121.0073641508373,53.39172077418796],[-121.00739391249873,53.39189946772974],[-121.00740844208413,53.39207921041172],[-121.00741351048532,53.39225911264146],[-121.00741864583249,53.392438451644686],[-121.00743693392879,53.39261835215843],[-121.00744965173116,53.39279745262145],[-121.00745666642365,53.392976870516975],[-121.00745428444557,53.39315590263411],[-121.0074349243307,53.39333477854011],[-121.00747421592729,53.39351274914501],[-121.00753639014007,53.393688868822196],[-121.00760044297675,53.39386507633011],[-121.00774030724652,53.394023121237936],[-121.00786440853966,53.394186685113745],[-121.0080119901897,53.39434337366206],[-121.00823797105437,53.3944601216791],[-121.00852875744407,53.394508272435615],[-121.00879743467321,53.39458357033577],[-121.00901477469424,53.394709495312306],[-121.00920206998521,53.39484988094491],[-121.00939533646137,53.39498770482741],[-121.00958652540508,53.395127130173655],[-121.00976778869402,53.395270630614476],[-121.00992926515035,53.39542172734695],[-121.01006699872242,53.395581925465855],[-121.01018916752606,53.395745971106905],[-121.01030744714166,53.39591096736184],[-121.0104178783872,53.39607844608887],[-121.01052059386161,53.396247289826256],[-121.01061170330186,53.396418449355785],[-121.01069315167864,53.396591449321186],[-121.01076111447797,53.396766686236994],[-121.01081183186274,53.396944011291026],[-121.01089387854513,53.39711198687299],[-121.01105939114001,53.397260995805006],[-121.01115225163653,53.397433351203404],[-121.01116699870136,53.39761141225169],[-121.01115510284308,53.397791167115514],[-121.01116965158396,53.397970899886786],[-121.01115587627184,53.39815057583784],[-121.01104744795371,53.398316162464944],[-121.01088241592069,53.39846533946553],[-121.01081090897745,53.398638099919914],[-121.0107003333017,53.39880584226822],[-121.01051568619178,53.398945211091245],[-121.01030934695407,53.39907637372076],[-121.01008903377318,53.39919795600952],[-121.00984963711909,53.39930526913236],[-121.00967902558945,53.39945364447616],[-121.00949403994801,53.39959580984145],[-121.00929844111582,53.39973190510516],[-121.00909202839819,53.39986361984508],[-121.00886998104508,53.39999973600189],[-121.0086565788234,53.40012666438228],[-121.0084380020822,53.40024943995436],[-121.0082477027745,53.400388568388756],[-121.00811522139261,53.40054978260981],[-121.00797360820793,53.400708358116134],[-121.00779586368327,53.40085307143988],[-121.007591254397,53.40098541671036],[-121.00743869222588,53.40114072869587],[-121.00732634875054,53.4013072802308],[-121.00721769753774,53.40147454380265],[-121.00708339620276,53.40163511463934],[-121.00689483288294,53.40177543724072],[-121.00670445570977,53.40191511737432],[-121.00656289848324,53.40207313683062],[-121.00630963544278,53.402169753774956],[-121.00604609062603,53.40225751087257],[-121.00580129433467,53.40236233492086],[-121.00560211031465,53.40249659425678],[-121.00547693167115,53.40265979299693],[-121.00534987249557,53.40282291261931],[-121.00513651123124,53.40294928025117],[-121.00485655459639,53.4030161303972],[-121.0045881598464,53.40309694245153],[-121.00432467259569,53.40318413249371],[-121.00406803717316,53.4032772342228],[-121.00383189660738,53.403388599703135],[-121.0036237691102,53.403518545056485],[-121.00336040904563,53.40360462441571],[-121.00308683454378,53.403681280430874],[-121.00283026033374,53.40377381626482],[-121.00259754011324,53.40388813544205],[-121.00241076542821,53.40402908407169],[-121.0022437337759,53.404178732871394],[-121.00207851462844,53.404329014715685],[-121.00191692063125,53.40448057184378],[-121.00176076550989,53.40463403756446],[-121.00165570993987,53.404802571321156],[-121.00158952743091,53.40497779774018],[-121.00151408008381,53.40515150253107],[-121.00140351618174,53.40531868145382],[-121.00129113767053,53.40548522695924],[-121.00119896995417,53.40565654843963],[-121.00111606697227,53.40582938250267],[-121.0010443085253,53.40600380820847],[-121.00099484000468,53.406181417296125],[-121.00096228846562,53.40635973773183],[-121.00092221777498,53.40653774197108],[-121.00089335915722,53.40671677470689],[-121.00091545204693,53.40689626986847],[-121.00101627605699,53.407065041882525],[-121.00115790626265,53.4072242900267],[-121.00130557460761,53.40738043164161],[-121.001462975776,53.40753417009831],[-121.00157930753284,53.40769965825645],[-121.0016820169733,53.40786849973464],[-121.00179640372555,53.40803447182628],[-121.00192045729726,53.40819859505839],[-121.00203679268981,53.40836408271682],[-121.00213171941344,53.408534851524685],[-121.00222282133643,53.4087060164615],[-121.0023293614004,53.4088744610814],[-121.00244570026936,53.40903994828679],[-121.00255425483769,53.40920735423069],[-121.00264341415603,53.409378994036906],[-121.00268646018313,53.40955712287941],[-121.00266512539743,53.409736480785575],[-121.00264191162022,53.40991575071712],[-121.00266595945988,53.41009477003099],[-121.0027186056788,53.41027161320804],[-121.0027865563003,53.41044686246273],[-121.00286028118799,53.410621222294864],[-121.00292829995603,53.410795908236345],[-121.00292012501932,53.410975819160136],[-121.00289133778782,53.411154297736104],[-121.00294391928685,53.41133170392687],[-121.00301771230545,53.41150550932458],[-121.00310103861591,53.41167859223878],[-121.00319020540067,53.411850231432666],[-121.00329293037244,53.412019080125674],[-121.00340337597278,53.412186564062274],[-121.00351972822286,53.41235204995613],[-121.00363024258519,53.412518970452666],[-121.00373297095528,53.41268781871218],[-121.00382402246309,53.412859536347206],[-121.00387855595976,53.41303646671427],[-121.00392933093269,53.413213230110976],[-121.00398003935014,53.41339055667418],[-121.00402504109688,53.413568209422344],[-121.00407192433366,53.413745932191745],[-121.00412652700246,53.413922299167474],[-121.00418489025462,53.414098824086054],[-121.00422989362374,53.41427647669655],[-121.00425771193284,53.41445564435723],[-121.00427988915477,53.41463458396648],[-121.00431536119004,53.414812950076104],[-121.00435271256586,53.41499140408831],[-121.00437294444671,53.41517081890888],[-121.00435537530487,53.4153503256733],[-121.00430033530945,53.41552714411074],[-121.00422488023723,53.41570084974192],[-121.00415493100097,53.415875918691206],[-121.00410741113883,53.416053044022135],[-121.00408419895855,53.416232322633185],[-121.00407226863945,53.41641206624342],[-121.00406221732912,53.41659189776986],[-121.00404464626817,53.41677140436684],[-121.00400833908199,53.41694956674479],[-121.00396639099505,53.41712749211268],[-121.00393753700399,53.417306533619154],[-121.00391808489896,53.417485961141175],[-121.00390615245136,53.41766571356693],[-121.0039112759495,53.41784505053346],[-121.00395816240821,53.418022781924684],[-121.00402425152915,53.41819794189],[-121.00407691253365,53.41837479272184],[-121.00412192108399,53.4185524360712],[-121.00414403396286,53.41873192961803],[-121.00415291809716,53.418911433406315],[-121.0041542152384,53.41909117547407],[-121.00415739268462,53.41927099651813],[-121.0041643307619,53.419450975529685],[-121.00416186734856,53.41963055956832],[-121.00413301353602,53.41980959196896],[-121.00407615343771,53.419985767733664],[-121.00402856160957,53.42016345588749],[-121.00398473006221,53.4203413019959],[-121.00387050828733,53.42050720654418],[-121.00368722486576,53.42064999471155],[-121.00344233383362,53.42077054539576],[-121.00351685790433,53.42092247572519],[-121.00367767976745,53.42107972064865],[-121.00382534016477,53.42123641236677],[-121.00392621021582,53.421405180760964],[-121.00399230451731,53.42158034046194],[-121.00406800024885,53.42175422335338],[-121.00418236824017,53.42192074631403],[-121.00436775521462,53.42206217619231],[-121.00459152977534,53.42218275723955],[-121.00483187695666,53.42229112335756],[-121.00506806686718,53.422402674479656],[-121.00528372492131,53.42252797135044],[-121.00547717162915,53.422665245504454],[-121.00564873862281,53.42281170785901],[-121.00576895699113,53.4229767854518],[-121.00588917523991,53.42314187184988],[-121.00600946140291,53.42330639491221],[-121.00615720527023,53.42346252037247],[-121.00631683057648,53.42361409526651],[-121.00640026034857,53.42378662061155],[-121.00649342604441,53.42395674252833],[-121.0065538265326,53.42413222693354],[-121.006670158316,53.42429826306943],[-121.00679817172379,53.424461429326335],[-121.00686817672307,53.42463562761308],[-121.00689413150981,53.42481472376539],[-121.00689920165564,53.424994623195],[-121.0068835197539,53.42517420844112],[-121.00690564789737,53.425353700910215],[-121.00696605211107,53.42552918499003],[-121.00711790011763,53.42568267780006],[-121.0073749127342,53.425778260603714],[-121.00763004698598,53.425873754972535],[-121.00788967366765,53.42596326507322],[-121.00815104922867,53.42605397099694],[-121.00840853187512,53.42614563595936],[-121.00866796213471,53.42623682501902],[-121.0089273945816,53.42632800457],[-121.00921109962616,53.42638988895917],[-121.0095004269547,53.42643627702747],[-121.00976824754626,53.426520511310414],[-121.00998998096478,53.426642683726996],[-121.0100949166214,53.42680936039089],[-121.0102429524484,53.42696325453202],[-121.01041032807815,53.427113458600765],[-121.01057777075691,53.42726310816041],[-121.0108693388763,53.427417963969894],[-121.01117044487489,53.427428913510454],[-121.01146880803734,53.42744704248137],[-121.0117664419261,53.42747131230655],[-121.01206374380067,53.42749837952742],[-121.01236044827381,53.42753047908267],[-121.01265120256714,53.42758085394432],[-121.01294739857076,53.427585411875185],[-121.01324536372574,53.427559155350636],[-121.01354029642012,53.42752659878208],[-121.01381832214794,53.42746133083755],[-121.01412088972154,53.427459971813356],[-121.0144208230643,53.42744896033282],[-121.01471967153103,53.42743116444758],[-121.015019893367,53.4274336399336],[-121.0153208679137,53.427445696455905],[-121.01562204211754,53.42745607154021],[-121.01591974424959,53.427479776723516],[-121.01621410720753,53.42751569455908],[-121.0165126298807,53.427548416840914],[-121.01681175027049,53.42757610527542],[-121.01709237693441,53.42763222591139],[-121.01732823157207,53.42774710486117],[-121.01757890920615,53.427848570841746],[-121.01786650660634,53.42789375124719],[-121.01816576291299,53.42792031880364],[-121.01846287270433,53.42794905073191],[-121.01875932119029,53.427983360354474],[-121.01905382264353,53.428018153690225],[-121.01935040357708,53.42805135330536],[-121.01964523785328,53.42808334701915],[-121.01994221728336,53.428113192732006],[-121.0202396614693,53.42813912206624],[-121.02053931854331,53.428162331228044],[-121.02083702844445,53.4281860241164],[-121.02113480439697,53.42820916199174],[-121.02144185288755,53.42823380125301],[-121.02172813448466,53.428210412584555],[-121.02196664514065,53.42809573920993],[-121.02215158149747,53.42795467388262],[-121.02230257080402,53.42779703137407],[-121.02246424661597,53.427644894003585],[-121.02260945910095,53.427488132455366],[-121.0227088453055,53.42731934594846],[-121.02279364934978,53.42714601411918],[-121.02289329888967,53.426974992470875],[-121.02304926171621,53.42682317243068],[-121.02323593601764,53.42668331044859],[-121.02343174856124,53.42654606762245],[-121.02362755876773,53.42640883340538],[-121.02381973988304,53.42627031507437],[-121.02401010476977,53.426131163475304],[-121.02418433713412,53.42598459859445],[-121.02434774740006,53.425833654694756],[-121.02452735442452,53.425689560274165],[-121.02471596611763,53.425549211356405],[-121.0249045108902,53.42540941640231],[-121.02508417985548,53.425264766841565],[-121.0252403275232,53.425111263114744],[-121.02539109596609,53.42495529717544],[-121.02554549314797,53.424800596885724],[-121.02568705554295,53.42464255658325],[-121.02579381258748,53.424475199365745],[-121.02587678327463,53.42430123218603],[-121.02594101340404,53.424125924187635],[-121.0259959736864,53.42394909648199],[-121.0260787434505,53.42377680981614],[-121.02618193472603,53.42360761419293],[-121.02627430470393,53.423434039883034],[-121.02642090526476,53.423281267689305],[-121.02664162871837,53.42315685839775],[-121.02686927795905,53.42303778744199],[-121.02710714931887,53.42292813665589],[-121.02736560180622,53.42283618226243],[-121.02762896645153,53.422750613819375],[-121.02788477970797,53.422649006874074],[-121.0281492288843,53.42257022081866],[-121.02844849085521,53.42258048489017],[-121.02874960478005,53.42257510336352],[-121.02903760111238,53.42252088304681],[-121.0293060061458,53.42244057985178],[-121.02955623868452,53.422338170303846],[-121.0297748685499,53.4222153572659],[-121.03000929786934,53.422102745271864],[-121.03025246710428,53.42199611316364],[-121.03049718553726,53.42189234838767],[-121.03074384879864,53.421788107399784],[-121.0309833856591,53.42168019914817],[-121.03121962257822,53.42156822652771],[-121.03145054793224,53.42145321954941],[-121.0316762939051,53.42133406075072],[-121.03190015710892,53.42121483190392],[-121.03213114528019,53.421099260370234],[-121.03235507255978,53.42097946743844],[-121.03256144942497,53.42084827692403],[-121.03276607780761,53.420715881069526],[-121.03298287607014,53.42059242029222],[-121.03321916816115,53.42047988043117],[-121.03347571079217,53.42038784308198],[-121.0337475913294,53.420309912906696],[-121.03402115253681,53.420233741342244],[-121.03429982545578,53.42016227468008],[-121.03455125106625,53.42006552946732],[-121.03475062455027,53.419929542128436],[-121.0348776213859,53.419766392481904],[-121.03494375402894,53.419590594541134],[-121.03495360747745,53.4194113239015],[-121.03494096216473,53.419230556901226],[-121.03491113074884,53.41905130938582],[-121.03487935267646,53.418872546559854],[-121.03489860785929,53.4186936683963],[-121.03492732998605,53.41851462846514],[-121.0349221407752,53.41833472968815],[-121.03490553770476,53.4181554773568],[-121.03490981667451,53.41797540786025],[-121.03492349597857,53.417795739818224],[-121.0349106536701,53.417616644453474],[-121.03487317035673,53.41743820026439],[-121.03483575287974,53.41725920176879],[-121.03482855186871,53.41708034187145],[-121.03485733976655,53.41690073860009],[-121.03485967200358,53.41672115371003],[-121.03484877604129,53.41654158247436],[-121.03484734785229,53.41636184053924],[-121.03485538731526,53.41618192790506],[-121.0348577195208,53.41600234295345],[-121.03483729067786,53.41582349661873],[-121.03481699515427,53.415643523825786],[-121.034781890548,53.41544497338802],[-121.03476680876902,53.4152528650748],[-121.03487505170978,53.415120376988526],[-121.03512584759147,53.41506066483868],[-121.03544627215396,53.41503529466805],[-121.03577279850543,53.41500625233017],[-121.0360526537171,53.414940447386414],[-121.03630625489606,53.4148409784937],[-121.03654755154456,53.41473370040169],[-121.03677855685933,53.41461756521872],[-121.03700425106868,53.41449839593539],[-121.03723518729257,53.414382823074995],[-121.03746074693505,53.4142647704162],[-121.03767588207259,53.41413898724577],[-121.03788032867503,53.414007708626386],[-121.03808315893484,53.41387410724352],[-121.0382841067401,53.41374043599367],[-121.038486867909,53.413607397128416],[-121.03868599957624,53.41347308351117],[-121.03887988561252,53.413335181705904],[-121.03906295226908,53.4131928931925],[-121.03923714407797,53.41304575111518],[-121.03940401283398,53.41289661430219],[-121.03956194243051,53.41274316933853],[-121.03972524610711,53.41259220339845],[-121.03990830667269,53.41244991353516],[-121.04009680771489,53.41230953938505],[-121.04028524100526,53.412169728150886],[-121.04046681358402,53.41202400645652],[-121.04064818649398,53.41187996520705],[-121.04085422904113,53.41175099477288],[-121.04110021413018,53.411651756154825],[-121.0413724852304,53.411569901442085],[-121.04163265031758,53.411478557228264],[-121.04186685619636,53.411367038833696],[-121.04209258397452,53.41124730543867],[-121.04232705109817,53.411133551107],[-121.0425666294705,53.411024501506255],[-121.04281468353278,53.41092366590239],[-121.0430813066169,53.410841572109284],[-121.04336300268845,53.41077582823546],[-121.04364456604073,53.41071120120506],[-121.04392438037672,53.41064537763076],[-121.04420729467948,53.41058529767905],[-121.04449660712615,53.41053503380393],[-121.04478888904269,53.41049162206528],[-121.04508090570154,53.41045045357568],[-121.04537305463558,53.410408157915164],[-121.04566836937316,53.41037105149475],[-121.0459658622201,53.410347511180966],[-121.04626619230206,53.410331949382936],[-121.04656497106254,53.41031351918672],[-121.04686292466126,53.41028606085773],[-121.04715784199512,53.41025230328868],[-121.04745166930417,53.410211761582275],[-121.0477422630239,53.41016659247557],[-121.04803305317398,53.41011975085342],[-121.04832364563427,53.410074580326174],[-121.04861760228408,53.410032918222264],[-121.04890479248049,53.40996851360281],[-121.04919141873093,53.40989285482339],[-121.04940303629874,53.40978038214989],[-121.04951282917659,53.40961818342067],[-121.04957047208913,53.40943360820831],[-121.04962000275727,53.40925374422146],[-121.04964301709092,53.409074456175226],[-121.04966797645386,53.408894692093114],[-121.04970220346827,53.40871643687537],[-121.04972145630565,53.408537001161896],[-121.04972567090081,53.40835693030937],[-121.0497636570005,53.408178831573295],[-121.04981292203252,53.40800120243822],[-121.0498433879708,53.407822790560836],[-121.04985700021805,53.40764311993596],[-121.04985745444031,53.40746289246036],[-121.0498370323564,53.40728348474149],[-121.04977842071727,53.40710754488503],[-121.04971034512329,53.40693176791055],[-121.04968032785308,53.406753640564986],[-121.0496940721162,53.406572852345796],[-121.04965445812718,53.40639601434783],[-121.04957665658142,53.406222635199484],[-121.04949127016393,53.40604950611084],[-121.04942118603026,53.405874768126345],[-121.04937412006603,53.405697062574944],[-121.04932524109803,53.40551871548015],[-121.04927468082438,53.40533860931858],[-121.04915569526136,53.40517812263615],[-121.04898599488487,53.4050312367885],[-121.04879871860845,53.40488924264673],[-121.04860949855014,53.40474772420054],[-121.04843604237287,53.40460068095795],[-121.04827653453358,53.404447489340924],[-121.04812085364624,53.4042938908652],[-121.04795336888024,53.40414429245092],[-121.04778186250265,53.4039967722235],[-121.04760834592886,53.403850290952285],[-121.04743295088362,53.40370373110877],[-121.0472594367323,53.40355724930852],[-121.0470859901781,53.40341020401518],[-121.04691650121958,53.40326164328417],[-121.04675096983316,53.40311156713196],[-121.046591343088,53.402959481727244],[-121.0464337942173,53.40280580261365],[-121.04627805972834,53.40265276483705],[-121.04611655680895,53.40250060043503],[-121.04594901990019,53.40235156230227],[-121.04576974590395,53.402205960757236],[-121.04559034138774,53.402061476450825],[-121.04541684041943,53.401914991849864],[-121.04525722303306,53.4017629045691],[-121.04511524725021,53.40160538029484],[-121.04497937193615,53.40144418403906],[-121.0448532254655,53.40128058109964],[-121.04473304862927,53.40111441480349],[-121.04462434719456,53.40094704668691],[-121.04452718745323,53.40077791355181],[-121.04444935099228,53.40060509381504],[-121.04438513259139,53.400428915670986],[-121.04433051053442,53.400251448521004],[-121.04424686504893,53.3999997754583],[-121.04415950188623,53.39982768118786],[-121.04406630379842,53.39965702355966],[-121.04396539030799,53.39948773313633],[-121.04386642247768,53.39931796669017],[-121.04377517154822,53.39914683286848],[-121.04368975797321,53.39897425332044],[-121.04363514073567,53.39879678572714],[-121.04367851871253,53.39862115825843],[-121.04375767101426,53.39844646545304],[-121.04388631575918,53.398284500410085],[-121.04411843104214,53.39817401603465],[-121.04436478979814,53.39807086317974],[-121.04460583905431,53.39796467647899],[-121.04487587185855,53.39788496990443],[-121.04515869903932,53.39782488732415],[-121.04543855709748,53.39775794226403],[-121.0457247462081,53.397701367579366],[-121.04601545249133,53.39765453060299],[-121.04630144305916,53.39759962634142],[-121.0465647430262,53.3975128974823],[-121.04682804190824,53.39742616803724],[-121.04706914658493,53.39731942202489],[-121.04724492708218,53.39717401724427],[-121.04743669892709,53.397037139641796],[-121.04762147878252,53.39689547840156],[-121.04781875455912,53.3967599526079],[-121.04807020735848,53.39666149702087],[-121.04836556056671,53.396655276654265],[-121.04866395570593,53.39668735562284],[-121.0489578015809,53.396725991364356],[-121.0492433116444,53.396787296341486],[-121.04953596097936,53.39677196736571],[-121.04982691986545,53.396722886009904],[-121.05012233262867,53.39668408754129],[-121.05040112228323,53.39662607099198],[-121.05066124069442,53.39653415210642],[-121.05093913678301,53.39646767011001],[-121.05123151124188,53.39642257044468],[-121.05151854733275,53.396390723910095],[-121.05181215963971,53.396415300793926],[-121.0521033112871,53.39636453310322],[-121.05237991612356,53.39629294509232],[-121.05264972562405,53.396214901586106],[-121.0529472460684,53.39619022614272],[-121.05324869422297,53.39618031250196],[-121.05354876169011,53.39618212769929],[-121.0538488661686,53.39619967472179],[-121.05414630350245,53.39622383903176],[-121.05444597574555,53.396229013501625],[-121.05474683260547,53.39622412048966],[-121.05504801759693,53.39621643735685],[-121.0553473231191,53.396208675277606],[-121.05564804720204,53.396204906460945],[-121.05594999430812,53.396206793785566],[-121.05625025874299,53.396206930344],[-121.0565497606266,53.39619749341146],[-121.05684998583838,53.39618190481687],[-121.05715014563606,53.39616686976218],[-121.05744958184506,53.39615798486291],[-121.05775043679655,53.39615309320056],[-121.05805007042305,53.39614252601781],[-121.05835062266907,53.396124144269514],[-121.05864767977216,53.39610336148496],[-121.05894982283905,53.39610356936692],[-121.05925067722725,53.39609867391314],[-121.05955028404586,53.39610438983321],[-121.05985035124229,53.3961061891474],[-121.0601481945583,53.396078706333014],[-121.06044885213403,53.396075479688065],[-121.06074778722014,53.396054769766614],[-121.06104685229256,53.39603295049562],[-121.06134294732156,53.39600426011743],[-121.06163510991412,53.39596081567185],[-121.06192106859568,53.39590587384567],[-121.06221012769414,53.39585668412538],[-121.06249156231198,53.39579201207465],[-121.06277718999317,53.395739866509494],[-121.06307972429968,53.395736711286965],[-121.06336520662197,53.395782258784074],[-121.0636286561265,53.39587068724978],[-121.06389879487155,53.39595040893977],[-121.06418257330819,53.39601048251992],[-121.06448021156895,53.39603294916997],[-121.06477850630812,53.396049827360315],[-121.0650792055543,53.39606231266023],[-121.06537572984568,53.39609427171957],[-121.06567389416989,53.39611226520956],[-121.06597367572323,53.39613257105806],[-121.06627238773889,53.396129814931754],[-121.06657422587128,53.396116514915214],[-121.06687462086985,53.39611550713239],[-121.06717263489664,53.39610260389621],[-121.06746621299116,53.39606313008016],[-121.06774595774561,53.395996695772624],[-121.06800752136661,53.39590816064924],[-121.06827756169838,53.39582784661886],[-121.06854720865536,53.395750875674686],[-121.06878851089898,53.395641850500695],[-121.0690208084738,53.395529082345384],[-121.06925161878851,53.39541288312069],[-121.06946999296972,53.39528999566486],[-121.06966725694768,53.39515387032397],[-121.06985914279,53.395015284623256],[-121.06998955594221,53.39485336907309],[-121.07007954068533,53.39468191558551],[-121.07014911444445,53.39450736945935],[-121.07022244623293,53.394332979177086],[-121.07028275342549,53.39415692564476],[-121.07033560902637,53.39397999703034],[-121.07040893912367,53.39380560658874],[-121.0704803893411,53.393631138141735],[-121.07057587619705,53.39346103556514],[-121.07068069251117,53.393291885856236],[-121.07078537796797,53.393123844652095],[-121.07089926168952,53.392957873834995],[-121.07108595497057,53.39281513629192],[-121.07134392937978,53.39272476597246],[-121.07162028048907,53.39265481393342],[-121.07190465150772,53.3925969807007],[-121.07219671456345,53.39255406457079],[-121.07249336657145,53.39252032189295],[-121.07279098027122,53.392494479261316],[-121.07309097707692,53.39248052154281],[-121.07339077667125,53.39246824387007],[-121.07368825846756,53.39244351654898],[-121.07398322521749,53.39240802039955],[-121.07427508891432,53.39236677102905],[-121.07456572657343,53.39231986422215],[-121.0748548122711,53.392270080467284],[-121.07514680510258,53.39222771140058],[-121.07544157322884,53.39219388349846],[-121.07574208968218,53.39217545780946],[-121.07604208323588,53.39216149265156],[-121.07634192613229,53.392164931208605],[-121.07664139474447,53.392155443712404],[-121.07693229114959,53.392106287065765],[-121.07717833711148,53.39200474682768],[-121.07736837063368,53.39186550772342],[-121.07748961091372,53.39170095940787],[-121.07763630875941,53.391544760283786],[-121.0777520403858,53.39137886061744],[-121.07788254278628,53.391215818576946],[-121.07806518459302,53.39107514943142],[-121.07828532480866,53.39095287768444],[-121.07852132939682,53.39084024638113],[-121.0787977221542,53.39076971436556],[-121.07904718754939,53.39067111526108],[-121.07930034414218,53.39057323449333],[-121.07956191465493,53.39048411944205],[-121.07981836988601,53.39039030016657],[-121.08005773307427,53.39028117407122],[-121.08031916936797,53.390193174906436],[-121.08057743539872,53.390099986084195],[-121.08080267745282,53.38998241323788],[-121.08102474799556,53.389859659831075],[-121.08116760216458,53.38970386390992],[-121.08122980197714,53.389527318964056],[-121.08133268659196,53.38935808177989],[-121.08153292287473,53.38922824301503],[-121.08177771667187,53.3891210185909],[-121.08205557952152,53.38905390941623],[-121.08235283546351,53.38903084122075],[-121.08265290199346,53.3890483067522],[-121.08295063160983,53.38906960973246],[-121.08325104076675,53.38906800631102],[-121.08354991486664,53.389047239064126],[-121.08384025786667,53.389002544673254],[-121.08412465329806,53.388944118892994],[-121.08439630178624,53.38886551764421],[-121.08468535213885,53.38881570993318],[-121.0849843220124,53.388826395394844],[-121.08528582549522,53.38883156102923],[-121.08557816299441,53.38886667610487],[-121.08584174651783,53.38895393813605],[-121.08609897582356,53.38904710864881],[-121.08636282283129,53.3891321343779],[-121.0866330920045,53.389210687166106],[-121.08689025879549,53.38930441921304],[-121.08714120108647,53.38940295119312],[-121.08736698392404,53.38952289298105],[-121.087615918902,53.38962246384215],[-121.08786686583167,53.38972098533667],[-121.08805829060991,53.389860284927735],[-121.08825386671134,53.38999638681532],[-121.08846117549881,53.39012904731148],[-121.08875744301811,53.39013061844645],[-121.0890250052716,53.39005464976709],[-121.08930350205505,53.38999821383005],[-121.08960540507734,53.390000024740665],[-121.08988398575262,53.39007217524747],[-121.09009798289539,53.390196116274666],[-121.09035509762957,53.390290404048365],[-121.09065349256215,53.39030609987702],[-121.09094558478083,53.39034342795362],[-121.09122209456692,53.390417178526825],[-121.09150139907491,53.390483174100105],[-121.09176954633632,53.39056387271094],[-121.09201836738886,53.39066455189035],[-121.09227795617639,53.39075387953299],[-121.09253086466596,53.39085191442441],[-121.0927630252947,53.39096593648535],[-121.09298507412946,53.39108571233757],[-121.09321496668538,53.391203008644005],[-121.09339883329658,53.39134255245765],[-121.09361854960362,53.39146616551239],[-121.09377836836705,53.3916176254223],[-121.09397792577471,53.39175219210831],[-121.09418364288356,53.39188252979542],[-121.09439733528141,53.392009261398705],[-121.09458691282099,53.392148472767616],[-121.09478252065777,53.392284563777075],[-121.09499621689913,53.39241129428062],[-121.09520998015536,53.392537461133315],[-121.09540144203648,53.392676748724675],[-121.09559497955115,53.392814441650096],[-121.09580680163968,53.392941093116924],[-121.09602860876566,53.39306309833488],[-121.09625054652189,53.39318399449367],[-121.09648072039833,53.39329904921557],[-121.09670655073882,53.393418973060605],[-121.09694094155516,53.3935302748845],[-121.0971505665803,53.39365963586743],[-121.09738081017547,53.39377413450272],[-121.09760891602431,53.39389078138915],[-121.09781659986128,53.39402062691991],[-121.09802817401564,53.39414950952091],[-121.09828559132966,53.39424154482244],[-121.09857486027514,53.39428716292673],[-121.09887438402582,53.39430962110586],[-121.09917391880896,53.39431579163211],[-121.0994712374398,53.39434096924138],[-121.09977134891327,53.3943583915733],[-121.10006262992333,53.3944029659606],[-121.10036314214113,53.39440075609411],[-121.10066384921774,53.394396873564375],[-121.10096275255134,53.39437606264979],[-121.10126052910336,53.39439731977621],[-121.10153319459914,53.394472008916644],[-121.10182454390369,53.39451601572795],[-121.1021157625392,53.39456114835086],[-121.10239965174125,53.39462056760224],[-121.10265059742692,53.39471962095187],[-121.10289337567075,53.394823951960696],[-121.10309479117852,53.39495914385023],[-121.10335261513467,53.39504781540179],[-121.10362074960867,53.395129041459086],[-121.10388213975645,53.39521953861016],[-121.10409808264477,53.395343540516095],[-121.1042480360125,53.39549906935582],[-121.10441380696231,53.395648511753606],[-121.10458554334208,53.39579538769356],[-121.10474327821841,53.39594899033003],[-121.10495507799878,53.396076188589305],[-121.10517893776763,53.396197136386064],[-121.10541336645278,53.39630842137799],[-121.10564967688028,53.39641977435193],[-121.10590258495597,53.39651834382709],[-121.1061473266935,53.39662218223118],[-121.10639829312996,53.39672122758498],[-121.10666443349582,53.39680349587181],[-121.10694367446627,53.396870572594494],[-121.10722311096826,53.39693597674657],[-121.1074931433886,53.397017280313925],[-121.10775708355453,53.397102258288406],[-121.10803172316119,53.39717644653842],[-121.10831583295055,53.39723417969182],[-121.10859961885807,53.39729470167154],[-121.10887912526084,53.397359547598576],[-121.10916096776135,53.3974205541629],[-121.10945474516353,53.39746014920815],[-121.10975585780261,53.39746916887824],[-121.11005522108817,53.39747699287407],[-121.1103568540825,53.39748154065611],[-121.11065855790123,53.397469246472866],[-121.11095009516526,53.39743070574083],[-121.11114885346272,53.397296833261905],[-121.11128287384878,53.3971350272885],[-121.1113929797337,53.39696774588465],[-121.11151040823067,53.396802445477164],[-121.1116259552831,53.39663707658555],[-121.11174895485533,53.39647257107151],[-121.11189197770553,53.396314503601154],[-121.11205495920501,53.396163428430825],[-121.11223945218637,53.396022230165265],[-121.11242945335356,53.39588237210887],[-121.11245659599433,53.395713924318976],[-121.11254654932564,53.39571986905201],[-121.11243370341595,53.39555352551729],[-121.11233440429586,53.3953843700696],[-121.11223322655378,53.39521513723892],[-121.11213010470709,53.39504639028852],[-121.11203865107592,53.394874745244934],[-121.11197214920769,53.394699643454615],[-121.1119401278048,53.39452033593686],[-121.11198146698219,53.39434348841499],[-121.1121099011098,53.39418089508106],[-121.11226924479769,53.39402854728878],[-121.11242495753189,53.39387493604947],[-121.1125752920195,53.39371884861776],[-121.11273100249143,53.39356523695518],[-121.11289759907142,53.393415432584845],[-121.11306957154682,53.39326810392623],[-121.1132451725784,53.39312203820683],[-121.11341889202977,53.392975903891084],[-121.11359630446378,53.392830478170204],[-121.11377734437099,53.392686324297635],[-121.11396000251102,53.39254448259674],[-121.11415536034077,53.39240708852634],[-121.11435946279751,53.392275677329366],[-121.11457950385021,53.39215333854852],[-121.11482397067945,53.39204828152604],[-121.11508210622083,53.39195558120448],[-121.11534024062537,53.39186288031905],[-121.11559500495781,53.3917666715994],[-121.11580953182194,53.39164298121312],[-121.11597066632767,53.39149126878085],[-121.11610277044656,53.39132937970048],[-121.11620921335512,53.39116082132051],[-121.11626368597061,53.39098451259014],[-121.11626372484534,53.39080541003712],[-121.11622786423749,53.39062651216094],[-121.11619388314888,53.39044769148256],[-121.11616936382545,53.390268693629835],[-121.11614108527493,53.39008955024765],[-121.11608986816762,53.389912824004334],[-121.1160195345164,53.38973812393441],[-121.1159414894506,53.389564795770696],[-121.11586739866316,53.38938994112534],[-121.11580089057367,53.3892148320685],[-121.11573632659758,53.389039245860126],[-121.11567558585554,53.38886325973535],[-121.115616725795,53.38868734185684],[-121.11555987417499,53.38851039250651],[-121.11550678230942,53.38833358864296],[-121.11545181073998,53.38815671644543],[-121.11540059887703,53.38797998973998],[-121.1153494518566,53.38780270866622],[-121.11531547677771,53.38762388749234],[-121.11530236613126,53.387444243981136],[-121.11525873645833,53.38726727177497],[-121.11517110950946,53.38709522863809],[-121.11505639729073,53.38692880965472],[-121.11491239686774,53.38677072704099],[-121.11473469997992,53.38662642315367],[-121.11454514511772,53.38648668917347],[-121.11435358363866,53.38634798629068],[-121.11416396686903,53.386208806015595],[-121.11397260223325,53.38606843056734],[-121.11384597401455,53.38590713479102],[-121.11387777183575,53.38573101716863],[-121.11393224718901,53.38555470904101],[-121.11395316015958,53.38537477499987],[-121.11396266920298,53.38519549498619],[-121.11395902538969,53.38501567414019],[-121.11394592134245,53.38483603025211],[-121.11392329379477,53.38465710870921],[-121.11388174606941,53.384478541084455],[-121.1138305452696,53.38430181338792],[-121.11378517600498,53.384123645506584],[-121.11376442740378,53.383944810074624],[-121.11377400239408,53.38376496667927],[-121.1138173321062,53.38358707725681],[-121.1139126211012,53.3834169391223],[-121.11401898731329,53.38324894532609],[-121.11409211779613,53.383074527101705],[-121.11414477540151,53.3828975781192],[-121.11419555265935,53.382720560783056],[-121.11424633052931,53.38254353446927],[-121.11431576556232,53.38236840720546],[-121.11441292862882,53.38219834582341],[-121.11447854031387,53.3820236182624],[-121.11449938478182,53.38184423814858],[-121.11455935909723,53.38166927875938],[-121.11466759712721,53.38150136149088],[-121.11477032877704,53.38133208582307],[-121.11485828789411,53.3811599658184],[-121.11496276688138,53.38099188480791],[-121.11510021858918,53.38083246295905],[-121.11525956535237,53.38067955584468],[-121.11542422215082,53.38052967870339],[-121.11559082197802,53.38037931528322],[-121.11576992277126,53.38023508027509],[-121.11598283670223,53.38010851316303],[-121.11620805625454,53.379989755156],[-121.1164175341522,53.379860243252594],[-121.11664430485696,53.37974436011811],[-121.11690236097144,53.3796516552954],[-121.11717045584267,53.37957002598294],[-121.11744981840003,53.379505146308816],[-121.11774316817977,53.37946611147628],[-121.11804305721483,53.37945204038627],[-121.11834339639121,53.37945034839077],[-121.11864529041343,53.37945152238039],[-121.11894459265639,53.37945876081578],[-121.1192449942843,53.37947279028626],[-121.11954390760013,53.37948338004952],[-121.11984489553531,53.37947609620409],[-121.12013649491105,53.37943585175119],[-121.1204194143902,53.3793728003156],[-121.12069067396699,53.379296351106774],[-121.12095059714966,53.37920371463888],[-121.12116336061256,53.379078255808835],[-121.12128069983663,53.378912953272454],[-121.12143399176388,53.378763159158694],[-121.12168017710805,53.3786587277924],[-121.12192623157019,53.37855541352665],[-121.12210867131684,53.378414675964834],[-121.12221693622521,53.37824618828651],[-121.12225270990301,53.37806798679828],[-121.12223005070034,53.377889066246304],[-121.122192231745,53.37771065519373],[-121.12216393704433,53.37753150320836],[-121.12214510009672,53.377352182516255],[-121.1221395433917,53.37717228410456],[-121.12211306255757,53.37699377246931],[-121.12203708964547,53.37681884346465],[-121.12187903868822,53.37666806083084],[-121.1216278960225,53.37657128238161],[-121.12134799037555,53.376494658095],[-121.12118864740128,53.37635504173719],[-121.12114539350517,53.37617471788711],[-121.12111710325203,53.375995574459424],[-121.12109069284753,53.375816499215745],[-121.12106998267402,53.375637101056014],[-121.12104739412244,53.3754576257289],[-121.121019040449,53.37527903655281],[-121.12099262987338,53.37509997016557],[-121.12096622055974,53.37492089481583],[-121.12093793191089,53.374741751235845],[-121.12090387932126,53.37456348485815],[-121.12084125935708,53.3743874229795],[-121.12073621119787,53.37421915896378],[-121.12062151205951,53.37405274430069],[-121.12052611739752,53.37388263061259],[-121.12044620572831,53.37370921796793],[-121.1203892897117,53.37353282397166],[-121.1203552393841,53.37335456627254],[-121.12030609740857,53.37317624560866],[-121.1201930872373,53.37301157956169],[-121.12004328474843,53.37285495149408],[-121.11993429167889,53.372688213211376],[-121.119819599878,53.372521797650684],[-121.11963793005806,53.372379580979484],[-121.11941616451608,53.372257609590676],[-121.1191798235446,53.372147400253006],[-121.11892897347691,53.3720483806623],[-121.11865856015264,53.37197157250916],[-121.11837551473646,53.37190604002519],[-121.11812842476975,53.37180717311541],[-121.11794099885772,53.37166583983569],[-121.11782618796803,53.37150053988491],[-121.11777887183321,53.3713228584924],[-121.11779781859428,53.371143399664135],[-121.11787460371696,53.37096969576191],[-121.11798830735589,53.37080311486461],[-121.11812396576714,53.37064249391832],[-121.11827594377375,53.370487601273865],[-121.11843336155236,53.370334611945324],[-121.11858358975752,53.37017851513819],[-121.11871373868436,53.37001654429277],[-121.11882374417058,53.3698492538115],[-121.11891716791091,53.36967847900795],[-121.11899763798115,53.36950548295783],[-121.11906515452816,53.369330265686756],[-121.1191140164837,53.36915316790008],[-121.11914798267553,53.36897432609502],[-121.11916692150974,53.36879487578322],[-121.11917264812814,53.368615439546886],[-121.11916140622377,53.368435863032126],[-121.11911978795975,53.368257850160475],[-121.11904371352847,53.36808403611489],[-121.11894840308987,53.36791336632617],[-121.11884337863648,53.3677451001059],[-121.11872669669287,53.367579723523384],[-121.1186022434702,53.36741627330098],[-121.11847202694376,53.36725370898631],[-121.11835340530139,53.36708880914716],[-121.11824262105151,53.36692142837355],[-121.11812400020501,53.36675653721966],[-121.11798789364516,53.36659597597414],[-121.11784194384796,53.36643893575643],[-121.1176842063228,53.36628591154977],[-121.11748650761844,53.36615201448535],[-121.11725448222901,53.366037475992535],[-121.11704078743065,53.36591134710255],[-121.11684931129751,53.365772646842856],[-121.11665576315613,53.3656355499431],[-121.1164582649026,53.365499979172675],[-121.11626679255717,53.3653612779474],[-121.11608535975421,53.36521738339851],[-121.11593741396551,53.36506138112745],[-121.1158517085084,53.36488941385486],[-121.11580058762405,53.36471213097606],[-121.11575523112478,53.36453396213967],[-121.11570974522691,53.364356910886485],[-121.11567390948551,53.3641780105346],[-121.11566074023509,53.36399891934319],[-121.1156759356355,53.363819314681884],[-121.11571366815767,53.363640627855375],[-121.11577743190534,53.36346526642118],[-121.11587085487552,53.36329448453369],[-121.11598642267971,53.36312799109296],[-121.11612381223043,53.3629685666677],[-121.11629027575326,53.36281875531362],[-121.11648898354369,53.36268375404403],[-121.11671236029675,53.36256379923062],[-121.11695146978732,53.362454597477196],[-121.11719912508354,53.36235304133623],[-121.11745182876102,53.36225675004746],[-121.11771650947138,53.36217105720151],[-121.1179957558156,53.36210617569266],[-121.11828924335447,53.36206490394125],[-121.1185853842993,53.362033281144384],[-121.11888281966014,53.36200675961632],[-121.11917980023762,53.361984153489075],[-121.11947839909641,53.36196385903659],[-121.11977686800057,53.361944681456414],[-121.12007540094386,53.36192494878643],[-121.1203740642957,53.36190408880338],[-121.12067305094064,53.361880438483354],[-121.1209687998943,53.361852162618945],[-121.1212633186397,53.361818220755445],[-121.12155667135211,53.36177805856035],[-121.12184872933048,53.36173278472521],[-121.1221373553234,53.36168455737722],[-121.12242313090785,53.3616283606402],[-121.12270094254518,53.361559474783505],[-121.122973831644,53.36148421445067],[-121.12324341689204,53.361404892040824],[-121.12351623975589,53.36133018480047],[-121.12379883877315,53.361268796740084],[-121.12408441551378,53.361214267970034],[-121.1243715450635,53.36116261414788],[-121.12466042333199,53.36111214540952],[-121.12494917034513,53.361062802537454],[-121.12523804723732,53.361012332393884],[-121.12552685816364,53.36096242483228],[-121.1258201366187,53.360922806449906],[-121.12611619861575,53.36089172817196],[-121.12641219595017,53.360861203500974],[-121.126708063376,53.360831795723215],[-121.12700541988575,53.36080581715482],[-121.12730413608553,53.36078438541571],[-121.12760388894863,53.36077029010316],[-121.12790422401021,53.36076745633091],[-121.12820287734958,53.360779142072545],[-121.1285023722779,53.360799854092896],[-121.12879979596613,53.36082216031089],[-121.12909987438442,53.36083783701007],[-121.1293991103741,53.360844494871145],[-121.12970048317804,53.36084899372457],[-121.13000095029979,53.36086131525024],[-121.13029526865697,53.36089415377038],[-121.1305787109328,53.36095575100232],[-121.13083191774516,53.361050353025874],[-121.1310395420649,53.36118014266158],[-121.1312190654115,53.361324500985845],[-121.13140655505403,53.361465250776355],[-121.13161023273193,53.36159656634223],[-121.13186312286534,53.361693955757694],[-121.13213984006373,53.36176481374072],[-121.1324238734011,53.36182137271913],[-121.13271729405521,53.361862037622416],[-121.1330150512793,53.361881534728],[-121.13331669050244,53.36188378914427],[-121.13361722758314,53.36187926002319],[-121.13391782872783,53.36187417579461],[-121.13421836567532,53.361869645154655],[-121.1345174124121,53.361861683905545],[-121.13481820774128,53.36185491647397],[-121.13511777552387,53.36185876137894],[-121.13541501579392,53.36188273197291],[-121.13570339239674,53.36193440311439],[-121.13598471312145,53.361998145794075],[-121.13626862396333,53.36205581322496],[-121.13655913922983,53.362105323915934],[-121.13684790536995,53.36215364829791],[-121.13713686650013,53.36220029104613],[-121.13742764218252,53.362247564331064],[-121.13771848259671,53.36229428255404],[-121.13801217002293,53.362332699104286],[-121.1383091579636,53.36235888880266],[-121.13860672701628,53.36238005283991],[-121.13890636759758,53.36239962100588],[-121.13920400233113,53.36242022025678],[-121.13950105568561,53.362445852627424],[-121.13979998741131,53.36247156110834],[-121.14009813857508,53.36248769648866],[-121.14039971847137,53.362490487294316],[-121.14069838110498,53.36248586344084],[-121.14100001856637,53.362471820161176],[-121.14129135092776,53.36243264118203],[-121.14154743277399,53.362339250954975],[-121.14174955622175,53.36220658746487],[-121.14191054874213,53.36205428339623],[-121.14204064793748,53.36189172310189],[-121.14217793485638,53.36173226849862],[-121.14237117876247,53.36159475819293],[-121.14260147167626,53.361479532541836],[-121.14286272755727,53.36139027715819],[-121.143145105726,53.36133051514007],[-121.14343986101873,53.36129428306608],[-121.14373831425507,53.36127504535762],[-121.14404033676995,53.361273919636226],[-121.14433166477318,53.36125102035047],[-121.14459926635753,53.361172127108],[-121.14486427201396,53.361083020868065],[-121.14511722678887,53.36098388110023],[-121.14536143658447,53.36087875977364],[-121.14560570913456,53.360773083585585],[-121.14585198737095,53.360666365996174],[-121.14609295244736,53.360556627974375],[-121.14632873434319,53.360442742959],[-121.14655195027711,53.36032328634491],[-121.14676279213873,53.36019659513539],[-121.14695575718805,53.360061303641416],[-121.14713440634796,53.359919255312796],[-121.14730236655316,53.35977172133386],[-121.14746326574948,53.35961996392384],[-121.147618852934,53.35946517749312],[-121.14777081109357,53.35930912868123],[-121.14792102019398,53.359151876343596],[-121.14807304107372,53.358995263823765],[-121.14822862268,53.35884048548897],[-121.14839139284071,53.35868880347332],[-121.14856135151402,53.358540217747766],[-121.14873299298533,53.358393389433736],[-121.14890838893639,53.358246714279],[-121.14908365478856,53.3581011565108],[-121.14926079725547,53.35795567517728],[-121.14943975136947,53.357810833568585],[-121.1496168274706,53.35766590604153],[-121.1497939662667,53.35752042388262],[-121.14997110383958,53.35737494144941],[-121.15014454850743,53.3572287510053],[-121.15031812184434,53.35708143369863],[-121.15048800230585,53.356933408401886],[-121.15065425485363,53.356784111830784],[-121.15082244789122,53.35663433733629],[-121.15099064076365,53.35648455365165],[-121.15115889633371,53.35633421535903],[-121.15132352401459,53.356182605816514],[-121.1514845238306,53.356029725038866],[-121.15163814033201,53.35587541970898],[-121.15178631519919,53.35571921215922],[-121.15192717177906,53.35556101680689],[-121.15205514086364,53.35540004934063],[-121.15217216519375,53.355235823157486],[-121.15227817893296,53.35506891053153],[-121.15237324812757,53.354898739248966],[-121.1524609994854,53.354726580302255],[-121.15254324483085,53.354553082601356],[-121.15262186395682,53.354378304925135],[-121.15269672607099,53.354203382825006],[-121.15277346625086,53.35402852836926],[-121.15285383129785,53.35385495374584],[-121.15292111708591,53.35368027923293],[-121.1529791429058,53.35350410378124],[-121.15307057924343,53.35333266085735],[-121.15316382859396,53.353161848851265],[-121.15324781685169,53.352989544833825],[-121.15332630138927,53.35281588422007],[-121.15341035318123,53.35264301675597],[-121.15351279394427,53.35247426857336],[-121.15363731376704,53.352310356197066],[-121.15374713437579,53.35214303198603],[-121.15380696834079,53.35196748699058],[-121.15385009635602,53.351789580245836],[-121.15393407907277,53.35161727562667],[-121.15405309184604,53.35145200625024],[-121.15418485925356,53.351290635058824],[-121.15433126077579,53.35113322075186],[-121.15449572801307,53.350982724094],[-121.15467994582549,53.350840893658244],[-121.15487666147847,53.35070518756293],[-121.15507331100181,53.35057004443706],[-121.15526290018914,53.350430678237636],[-121.15543642763353,53.3502833529664],[-121.15559544764768,53.350130952876],[-121.15574540130683,53.349975370916425],[-121.15588810130181,53.34981724702471],[-121.1560290514253,53.349657928684536],[-121.15613691434734,53.34949107981364],[-121.15620055331566,53.34931513220958],[-121.15626788179924,53.349139901046954],[-121.15635554041283,53.34896830204106],[-121.1564542704305,53.34879883452924],[-121.15655494088826,53.34862888914564],[-121.15665548188666,53.34846006133202],[-121.15675796329576,53.348290755640264],[-121.15686038007554,53.34812200421022],[-121.15696286086859,53.347952689372065],[-121.15826433454053,53.346903633593904],[-121.16681044277392,53.343701769778235],[-121.1696254142913,53.343232429844846],[-121.17803527761347,53.34199497037214],[-121.18381726471003,53.33906313313641],[-121.18948170332135,53.335964583041736],[-121.19806133428646,53.33520314326185],[-121.20059205372027,53.33668888548102],[-121.20099282257196,53.33833382507764],[-121.20909593646637,53.33884473179366],[-121.21745139565223,53.338994711338124],[-121.22611857863349,53.336795278825775],[-121.22559763665055,53.32915297460155],[-121.26952541325035,53.29094362812431],[-121.33815957556234,53.28369622825333],[-121.3442233512123,53.283896338779584],[-121.41517316925447,53.28375514630432],[-121.41528590122901,53.27080877568252],[-121.41531148887603,53.26724971822006],[-121.40352340177944,53.26709567978848],[-121.3986558421037,53.266856826920225],[-121.39828786196347,53.25974252091877],[-121.40342003639044,53.259341639725996],[-121.40361425141643,53.2593553441324],[-121.40531966941668,53.25890167461051],[-121.40508334573752,53.25885995192493],[-121.40475126470147,53.25845356959942],[-121.40974089435863,53.25479554020456],[-121.40993775079951,53.25436980358848],[-121.41203105852749,53.2509009008489],[-121.42008630030669,53.251152528472446],[-121.42560893147136,53.24977560726528],[-121.42721516934269,53.24884236089632],[-121.42846843965765,53.24824911170084],[-121.42857830235506,53.247790804018095],[-121.42808184069136,53.24640028415969],[-121.428084396867,53.245404557178155],[-121.43190186855624,53.24197608117264],[-121.44345205131333,53.24161882594079],[-121.4544065668613,53.241619866244825],[-121.46160416002043,53.24045494728477],[-121.471054599017,53.23778216802382],[-121.47654922789044,53.23326357126498],[-121.47753200640723,53.23125227637445],[-121.4812377870477,53.22755149069467],[-121.48993945570938,53.22551168869642],[-121.50226839167316,53.223721950489484],[-121.50901790318548,53.223190642183425],[-121.52213956825445,53.22241854385827],[-121.52784945924786,53.22218363571966],[-121.53356520319753,53.22246114562267],[-121.54058202372079,53.22124270648139],[-121.54360595854035,53.22023510506967],[-121.54853242537824,53.21943818495457],[-121.55262510646665,53.219559448849],[-121.55704894094043,53.221106885660895],[-121.55709065774845,53.222139530480476],[-121.55842766195214,53.22515552823107],[-121.56059349917307,53.233593130546836],[-121.56678826986494,53.24278765706047],[-121.57187853260051,53.24690191301837],[-121.57760364480778,53.253295889483326],[-121.58287015921357,53.257186024212245],[-121.58740859129709,53.256102377782184],[-121.59565317574447,53.25440373080037],[-121.60051745220923,53.25177648027734],[-121.60547749156419,53.24851276190605],[-121.61318818248738,53.248308553527245],[-121.62729686734366,53.248366534288884],[-121.6314755754086,53.24826476307597],[-121.63592729749219,53.2471233833089],[-121.64038939565778,53.24369461728675],[-121.64398537464466,53.24005032660888],[-121.6561070693716,53.238189371654656],[-121.66708592597311,53.238510677232256],[-121.68438021835892,53.251217746550346],[-121.70183279934612,53.251688253371114],[-121.7089777607934,53.25423019255195],[-121.71312698495662,53.25812189745025],[-121.71432700455802,53.259938688411616],[-121.71880824649847,53.25730701596232],[-121.72093434734086,53.25533768284739],[-121.72401330222043,53.2534672379739],[-121.7292438540952,53.25323105045415],[-121.73412468579386,53.25362516069206],[-121.75224365708178,53.26168363621593],[-121.76184436523108,53.266193490806465],[-121.7743252448046,53.27397914000325],[-121.78101626105256,53.27692167791684],[-121.7892805262753,53.28402116629989],[-121.79389267762086,53.28744906373916],[-121.80704183403783,53.30014313087531],[-121.81232689686621,53.30350136606875],[-121.81963739772362,53.30740879332144],[-121.83482693904114,53.31057969398396],[-121.83847640190403,53.311157189049],[-121.84814205950534,53.31153896239955],[-121.85910107020976,53.311333255155],[-121.87117622061912,53.310190735540324],[-121.8832168837376,53.30785122632712],[-121.8871714871287,53.306540145519755],[-121.89517844458503,53.30367972930983],[-121.90025956344837,53.301774294143314],[-121.90866916170711,53.299711905341695],[-121.9186591709659,53.29905107857855],[-121.92531493689934,53.29844439223738],[-121.93003158051111,53.297172156369385],[-121.93797813899644,53.295512138244085],[-121.94545461029912,53.294035286833164],[-121.94562298512237,53.2979214704296],[-121.94574821936729,53.30335250184838],[-121.94608394195461,53.30941462429332],[-121.946437116381,53.31341705506624],[-121.94721387612977,53.316149646141845],[-121.94778195031122,53.3163530741606],[-121.94827676592502,53.31653492200527],[-121.95243327106445,53.31561686988145],[-121.9539541497233,53.31295931844379],[-121.95412354343911,53.31009689501318],[-121.95534767483039,53.307388804667774],[-121.96071377877043,53.305312714973354],[-121.96325949060113,53.3045268872258],[-121.96457023888684,53.304052478267145],[-121.96824781399782,53.30308509871047],[-121.9724386096383,53.302734807630266],[-121.97614912679755,53.30268115819791],[-121.97946449694778,53.30171686042596],[-121.97993205320692,53.30171026031883],[-121.98458715298037,53.30106838298163],[-121.98618844641234,53.30070232558517],[-121.9875560964581,53.30136631551704],[-121.98725511080987,53.30326205056303],[-121.98834765567987,53.30444355261681],[-121.99023702580253,53.30390034944746],[-121.99020096004094,53.305387620223364],[-121.99023407968089,53.30630606301949],[-121.99284447995623,53.30689358079954],[-121.99494029312903,53.30703166047943],[-121.99596630872288,53.30622133684496],[-121.99711290050676,53.30620279248392],[-121.99855366780847,53.30657623883188],[-121.99960348534687,53.306625099482424],[-122.00366397285865,53.307966484860444],[-122.00498979466933,53.30796456303332],[-122.01166472333988,53.30922140950868],[-122.01720116972477,53.31025452088837],[-122.02597795615966,53.31127584847557],[-122.02912101381699,53.31133448064467],[-122.03427261244559,53.31150112116572],[-122.04029275313702,53.3099601246038],[-122.04439139097948,53.307219832483156],[-122.0464876719855,53.30687228092438],[-122.05192501939278,53.30607317931614],[-122.05506201247822,53.30538757756766],[-122.05801870420095,53.30372981786636],[-122.06088359711818,53.30321288075699],[-122.062792225187,53.30309669707544],[-122.06488682059621,53.302924372223394],[-122.0694556700278,53.30109202392011],[-122.06975022423154,53.299548312292764],[-122.07202798330655,53.297892981008985],[-122.07250559201523,53.29777751279436],[-122.0779465814341,53.29692017700614],[-122.08204756960507,53.296057617198606],[-122.08423285422303,53.295714609475],[-122.08518873024262,53.2953130489502],[-122.08727937041479,53.29177075216683],[-122.08794426993963,53.28817523566679],[-122.08916798285975,53.282286739148034],[-122.0903025699275,53.27800541466003],[-122.0946649289495,53.26389417474027],[-122.09759738932065,53.255779614058106],[-122.09996126084175,53.24892260861735],[-122.10109559258903,53.244296694074464],[-122.10147126233574,53.24332332790619],[-122.10194463469215,53.24178037188577],[-122.10270812877621,53.24035243023938],[-122.10346946369486,53.23943606913724],[-122.10659499035476,53.236691055561806],[-122.10812492756178,53.23640695375257],[-122.11050002235238,53.23543640390898],[-122.11429984372866,53.23434198926676],[-122.11668008306339,53.23331257998558],[-122.11973393303032,53.23296888504888],[-122.12221181744276,53.23267469591213],[-122.12372079317811,53.231305824659785],[-122.12629855118766,53.23090487140832],[-122.12962180365025,53.230899608382344],[-122.13333904295123,53.23003979198667],[-122.1341826280445,53.22837979032019],[-122.1368554555523,53.226607788141],[-122.13941665809176,53.2252320919775],[-122.14246319862279,53.22397202286528],[-122.14435436573264,53.223510173553144],[-122.14940553227153,53.22350676541733],[-122.15120953159769,53.22350537013558],[-122.15473488037736,53.222759291422896],[-122.15929800187831,53.22200525576819],[-122.16319763807208,53.22011427704931],[-122.16442370582958,53.219026936739645],[-122.16633219124958,53.21754091599658],[-122.1678550734547,53.21765303921594],[-122.17089660022035,53.21759266493115],[-122.17309261499233,53.21707684292907],[-122.17621796077054,53.2157579021056],[-122.17859248494595,53.21409769508664],[-122.17973229513224,53.213292972548395],[-122.18164120434565,53.21328946843771],[-122.18373422553012,53.213576855083915],[-122.18667512542132,53.2136284083954],[-122.19020564130028,53.21430753676696],[-122.19363164693023,53.214646600040425],[-122.19572562283433,53.21492482473484],[-122.19695799288776,53.21275465274611],[-122.19856717989593,53.21023641913698],[-122.20179630566837,53.209085104786006],[-122.20446162245321,53.20885529987599],[-122.20655531710173,53.208966722245414],[-122.20817291126345,53.20936017646821],[-122.21026942861037,53.21044549913811],[-122.21331077773321,53.210379552311366],[-122.21568570744476,53.21020415965955],[-122.21759948242698,53.210144137920615],[-122.21940406218164,53.20962507907154],[-122.22100775633419,53.20916746611882],[-122.22320169542782,53.209334515432516],[-122.22616267883234,53.209325707994076],[-122.2287276866594,53.20903943165522],[-122.2305258933817,53.20943160393998],[-122.23443268519524,53.20993793900184],[-122.23586406787503,53.21056911333169],[-122.23796620762803,53.212105681157105],[-122.23825144862491,53.21244628478352],[-122.24063600017658,53.2126689900762],[-122.24349234422145,53.21231814838945],[-122.24577730588956,53.21180159334177],[-122.24938990022736,53.21122495952923],[-122.25100416815454,53.210306165838126],[-122.25069631715714,53.20801830626182],[-122.24964643899436,53.205965552151746],[-122.25029949216628,53.204193931642735],[-122.25095197912765,53.20276671864654],[-122.25331728814224,53.20167589896571],[-122.2571300275824,53.200694203231954],[-122.25931447792073,53.19977649802544],[-122.26139467376032,53.19765891617139],[-122.26299859433254,53.196338551680626],[-122.26394152286308,53.194508139071154],[-122.26477887739898,53.192851654792676],[-122.26553662952306,53.190905436148846],[-122.26609314775946,53.1895362743041],[-122.26856235171722,53.188956695637444],[-122.27321458528291,53.188145154292386],[-122.27567908644339,53.18625318403855],[-122.27662607044638,53.1843678375695],[-122.27766252723553,53.184023474741615],[-122.27841925071942,53.18293319358258],[-122.28125812573086,53.18172941119525],[-122.2835512017311,53.181779017187395],[-122.28582409519007,53.18086196207206],[-122.28658037856452,53.18011549802836],[-122.28839257200248,53.18051061580561],[-122.29009466923561,53.18010737098516],[-122.29267292354922,53.18032842343021],[-122.29408952027583,53.18026958329784],[-122.29608731439971,53.18060364384523],[-122.29847012459332,53.181514041004625],[-122.30085805011542,53.18150906087082],[-122.30008195570377,53.18042570343374],[-122.30168900542769,53.17956270223989],[-122.30492747789354,53.178586285003924],[-122.30500240058021,53.1766981932567],[-122.30517749297248,53.175038168494616],[-122.30537251142792,53.17486811756858],[-122.30583768232366,53.17332429758857],[-122.30800434469273,53.1710336614849],[-122.3100862310569,53.170228009832165],[-122.31246881262389,53.17096535714737],[-122.3134406954799,53.17290402491085],[-122.31354105576668,53.173474840552046],[-122.31686491602228,53.173922238385515],[-122.31953829033661,53.17459948256333],[-122.32183117052077,53.175164428697656],[-122.32544012746176,53.17527040809087],[-122.32885887630017,53.17531932403661],[-122.33295434264082,53.17604767086528],[-122.33620513846105,53.17820873419065],[-122.33773354675462,53.17997703141677],[-122.33862767758283,53.18300238661811],[-122.33967011174506,53.18414305941091],[-122.34282581296927,53.18515777178837],[-122.34492475691715,53.186412368637725],[-122.34588197771696,53.186978187043984],[-122.34758950756873,53.187203110728035],[-122.34959839190468,53.188112108251254],[-122.35189234773053,53.188503132537114],[-122.35474923535212,53.190551633245235],[-122.35694859379578,53.19134519939801],[-122.35914785077333,53.19196650801642],[-122.36162850877338,53.193157920536486],[-122.36591548011806,53.1936059844002],[-122.36866488950204,53.19359557381236],[-122.37189875191889,53.19301545524271],[-122.37665648879027,53.1930534973361],[-122.38008743034779,53.19332675251028],[-122.38028423766366,53.194185374491504],[-122.38355083554276,53.197433678670436],[-122.38862989869294,53.202154043584535],[-122.39169283204849,53.20357961495993],[-122.39636527934148,53.20515954129312],[-122.39981192209017,53.207376786705744],[-122.40182543987696,53.20913699272791],[-122.4043292964301,53.212905505830705],[-122.4050161620038,53.214898508715365],[-122.40837196288254,53.216431203299685],[-122.41028926158201,53.217741270418394],[-122.4134399743852,53.21903929889269],[-122.41554228044131,53.22012041627876],[-122.42088742799665,53.22124174917639],[-122.42364194228648,53.22083584782824],[-122.42423990679369,53.22069572826227],[-122.42649142175607,53.2201949290035],[-122.42877100760182,53.22007242219802],[-122.43305037036306,53.22011499514747],[-122.43304207142367,53.21914552011323],[-122.4346623258992,53.218109535676625],[-122.43502009514458,53.217075355051406],[-122.4362505293474,53.21638378897275],[-122.43615853785789,53.21587116374719],[-122.43679659194954,53.213472908504684],[-122.43867576152842,53.21060941930541],[-122.43968157725203,53.20723166803632],[-122.44088419012448,53.204369116237544],[-122.44114462467135,53.20145524220952],[-122.44122877272211,53.19974254986488],[-122.44330573546208,53.19933661379949],[-122.44521785100426,53.19892570156909],[-122.44795246770099,53.197484950233914],[-122.44794231630084,53.19617608192593],[-122.45020572917088,53.19462018292273],[-122.45133383009438,53.19370553938156],[-122.45295417025852,53.19300923796243],[-122.45703821724858,53.1924820375471],[-122.45654682037954,53.190998909560825],[-122.45671565013026,53.18934315333543],[-122.459659268769,53.18915976818138],[-122.46211066039731,53.18732154966898],[-122.46515820030001,53.18679114292331],[-122.46647079025782,53.18581849231954],[-122.46570086581913,53.184790384434],[-122.46625764194229,53.18387761805029],[-122.46693115273463,53.18444234845065],[-122.46903247398365,53.185350329320535],[-122.46988276767195,53.1839785138686],[-122.47016782258173,53.18380136644356],[-122.47203891186689,53.182250773126434],[-122.47554966815567,53.18138056117241],[-122.47888774719387,53.182221426756904],[-122.47968021156164,53.18370330902992],[-122.48263024028007,53.183977796613206],[-122.48557365341445,53.18397101466785],[-122.48805309774201,53.18412707450331],[-122.49053137261323,53.18520176276061],[-122.49204033882725,53.183483088794205],[-122.49430231605638,53.18227803958239],[-122.49552905882972,53.18124421379765],[-122.49551331278731,53.17998513009508],[-122.4948369633246,53.17872667058588],[-122.49520335505964,53.177928731482325],[-122.49557233675678,53.176555968127246],[-122.4965938267911,53.17546052269066],[-122.49982974677116,53.174995411563906],[-122.50117618974843,53.174143434645146],[-122.50247464843329,53.17332648688211],[-122.50321903313463,53.17194853159228],[-122.50500445159365,53.170686584584296],[-122.50469643053285,53.169146836314916],[-122.50488824158982,53.168460376016625],[-122.50686426116054,53.167250593182416],[-122.51197406705984,53.16425426951604],[-122.5156408008429,53.161096898704386],[-122.51998163137333,53.158676064236175],[-122.52435416024741,53.15860272299354],[-122.52806303150898,53.158753725895814],[-122.53318451752857,53.158329622100524],[-122.53656970350153,53.15528622728513],[-122.53986639375131,53.15258509657716],[-122.54298986369527,53.15199891373674],[-122.5444152788365,53.1519968270004],[-122.54858166650963,53.15094628381244],[-122.55017064096769,53.14893762507056],[-122.55329612714513,53.14795302312976],[-122.55654755215006,53.14873706455341],[-122.55920095985276,53.149128389397696],[-122.56225646723439,53.1497411071895],[-122.56481536217092,53.14926525937156],[-122.56593198052794,53.1478910463621],[-122.5678119529865,53.14616657082194],[-122.5702719378209,53.14524185942185],[-122.57329993916409,53.1439695681268],[-122.57367284012973,53.1436247884715],[-122.57574133368679,53.14178843618128],[-122.57856598044691,53.14080009024992],[-122.58160590061985,53.13993007703772],[-122.58158869944438,53.13884319733816],[-122.58157018550891,53.137586889981954],[-122.58021181817314,53.13565188929197],[-122.58000431998484,53.13450790081084],[-122.5836624012484,53.13117503246024],[-122.58942461113217,53.12851694632306],[-122.59292731966481,53.12747157304475],[-122.59593814529323,53.125455673318655],[-122.59754152230774,53.124533237429354],[-122.59942644967367,53.123837627168086],[-122.60197238803346,53.122563678758716],[-122.60300162324818,53.12113335187107],[-122.6049687254056,53.11940972109419],[-122.60591140296636,53.11905710547059],[-122.6090275746716,53.1179564336595],[-122.61411972613362,53.121760904324454],[-122.62376211899546,53.12548208496813],[-122.63347682328941,53.127371635023934],[-122.63956520184328,53.1271668916252],[-122.65002665919737,53.12853731751206],[-122.655549246201,53.129421679558504],[-122.66478178774584,53.13022600878065],[-122.6757307500431,53.131707130836375],[-122.6842251547109,53.134287713253926],[-122.69265441142323,53.13886627685169],[-122.69909443951549,53.143397068042994],[-122.70832607837245,53.15043014086324],[-122.71559878274552,53.1583854791399],[-122.72065069952646,53.165213210645646],[-122.72700029251166,53.17546207644144],[-122.73112749370931,53.183038617907656],[-122.73790699005507,53.19031290112207],[-122.74382538685487,53.19690410983467],[-122.750066908756,53.20498089721799],[-122.75704169944851,53.212537880515484],[-122.75947545858607,53.22115343583116],[-122.76122014263069,53.227597263716554],[-122.76457931045006,53.23455391845708],[-122.76964582374325,53.24160743660431],[-122.77681414357333,53.24813184778062],[-122.78388582350087,53.25437442432177],[-122.78731693882828,53.26006708263483],[-122.7889701156933,53.262057652941806],[-122.79464145046227,53.2640172392638],[-122.80062814948155,53.26380769151989],[-122.80339464394116,53.26361986873441],[-122.80910861582694,53.26363413366452],[-122.81635899126344,53.26381609692146],[-122.82265748044348,53.26405679119587],[-122.82802493409615,53.266080049389075],[-122.83622536199387,53.271449937010466],[-122.84018674677016,53.27399020191006],[-122.84230695016211,53.27500662035415],[-122.84722589991269,53.278230398124855],[-122.85100114654516,53.281064179775285],[-122.85229494964987,53.28368678788084],[-122.85426300473114,53.28715711123111],[-122.85589462659402,53.2921167024107],[-122.858867474461,53.29786702616002],[-122.86124589837652,53.30231133426542],[-122.86252357788999,53.304358620647136],[-122.8657639649935,53.308964069726265],[-122.86673773853089,53.31004165620476],[-122.87119135283643,53.313325401965784],[-122.8752507606393,53.3156392213354],[-122.87923006343624,53.319040779969704],[-122.88138637347818,53.32205397850907],[-122.88238566879639,53.32422095250514],[-122.88365811786487,53.326157910988],[-122.88629034175602,53.32396286353913],[-122.88713055653976,53.3229862878183],[-122.88708485863958,53.32115834709992],[-122.88562545061261,53.31950976602264],[-122.88272812789246,53.31775894884357],[-122.87896539568933,53.31549749262093],[-122.87508961335695,53.31232908711991],[-122.8736203525079,53.31062063709349],[-122.87728373931827,53.30791297323286],[-122.87970331696012,53.30491909016454],[-122.88540329115241,53.303564977716206],[-122.88794437888785,53.30645922359998],[-122.88887745484642,53.310339038133066],[-122.89000169005347,53.31387508740918],[-122.89382686685532,53.314477597903384],[-122.89932293087362,53.3128359998249],[-122.90359253541699,53.311487944834894],[-122.90651105264998,53.309467592848755],[-122.90739003818264,53.306310249858825],[-122.90782434135438,53.30408327973487],[-122.90966469900445,53.30115504886441],[-122.91499719755306,53.300481877085225],[-122.92012020460196,53.29958324429461],[-122.92619445551767,53.29822684211448],[-122.92951840575516,53.29722458678662],[-122.93273777662493,53.296002549376475],[-122.93778939842485,53.296073558446004],[-122.94112801894607,53.296107501121526],[-122.94414360878095,53.29436856988369],[-122.94848829856632,53.29713518502099],[-122.94877991650138,53.29747291824432],[-122.95288281927901,53.297553649880584],[-122.95467251657921,53.296112662515235],[-122.95791262393149,53.29626023513601],[-122.96026129850567,53.298753179847544],[-122.96334654677759,53.300218138275575],[-122.96501026192453,53.29780549985495],[-122.96704783465944,53.2952139985115],[-122.96874663231121,53.29440125253281],[-122.9700456150145,53.293078146656654],[-122.9693507241616,53.29164919007986],[-122.96750433185832,53.290121275231975],[-122.96743886672698,53.28726463786933],[-122.96596936178553,53.285730065281854],[-122.96222899814703,53.284391903127904],[-122.96397316529179,53.281689780390536],[-122.96847677254415,53.28245363491451],[-122.97353610883016,53.28281323497206],[-122.97782379527834,53.282604616512536],[-122.98221945926268,53.2831992408344],[-122.98519347074111,53.283688618998525],[-122.98965197403032,53.283194606732096],[-122.99199940766093,53.28128955211866],[-122.99550368082403,53.280458843723125],[-122.9966334992235,53.279592064830176],[-122.99763266151571,53.27781255512242],[-123.00113762985787,53.27675464038529],[-123.00496805507521,53.27746645064199],[-123.00754092942118,53.277670420317804],[-123.01032008646534,53.27793559852957],[-123.01102065778227,53.27930053227718],[-123.01123661787459,53.28049906620901],[-123.01325610017383,53.28151033204351],[-123.0158203532232,53.28120201747629],[-123.01822963376641,53.281808673550664],[-123.01747352464083,53.28250226597363],[-123.01391795641185,53.285337251937925],[-123.01452750997672,53.28692861311011],[-123.01645493231635,53.2875450332309],[-123.01818719401922,53.28815596063227],[-123.01906259798673,53.28918209859586],[-123.02126988289324,53.289673149731016],[-123.02386306592324,53.29045360890921],[-123.02447983774641,53.29216225722909],[-123.02734843238893,53.29288113858006],[-123.03015448889744,53.29406204832819],[-123.03137566449716,53.29381619224549],[-123.03319427100945,53.29363404079643],[-123.03704179845653,53.29520186982656],[-123.0396581378085,53.29694741829672],[-123.04187573966549,53.2977293069174],[-123.04401723770795,53.29959803463989],[-123.0465975912575,53.300146105644394],[-123.04822301036376,53.30036145669197],[-123.05233311056281,53.30055777656868],[-123.05357618139207,53.300429970558504],[-123.05400522999174,53.298597220523135],[-123.05527538431728,53.296356449305044],[-123.0568303617964,53.29348246285608],[-123.05850171842093,53.291525758637896],[-123.06162818344623,53.290925948227695],[-123.06381329103182,53.290446296106545],[-123.06646252249891,53.28956656630769],[-123.07177955731225,53.28883505545957],[-123.07466169673418,53.289148888607166],[-123.08174796603821,53.29046089202415],[-123.0863371076782,53.29133330507024],[-123.0893968517641,53.2914756590836],[-123.09643401557565,53.2943867249903],[-123.09879334785644,53.29355805578925],[-123.10389481100661,53.291800049523744],[-123.10721699268916,53.29096893080155],[-123.11159477579417,53.2907604822551],[-123.11596229623684,53.29026121928689],[-123.11930884598789,53.29016925844901],[-123.12549670054679,53.29011242736134],[-123.12646020229005,53.29010436511991],[-123.1281659548207,53.289801986966424],[-123.13207328896539,53.28964867837386],[-123.1370957638221,53.28880399763328],[-123.13875969842492,53.29044693304099],[-123.13955123303315,53.29186531808849],[-123.14597742599804,53.303409476669735],[-123.16147431313466,53.31578471912617],[-123.17395472321763,53.32252366572792],[-123.19893992797411,53.32833404811629],[-123.21791105419905,53.33112140647047],[-123.24619059419801,53.33208747219923],[-123.29275938435212,53.33507933761528],[-123.31655840744332,53.33928689847357],[-123.33326771046707,53.34253135772542],[-123.34293562052336,53.343050044906825],[-123.35824518062614,53.341282606706166],[-123.36784139617077,53.339571786704425],[-123.37761268368327,53.34060059041298],[-123.39322474885255,53.34534309087677],[-123.40823979460816,53.348825516611946],[-123.41488686912844,53.350977490454206],[-123.42514511539194,53.35223148904437],[-123.43732841581803,53.35379851215729],[-123.45266007414052,53.355389171096775],[-123.46103653248588,53.35739952201064],[-123.46526758497033,53.36095258265368],[-123.47234686448918,53.369789328867505],[-123.48015517913556,53.374554999505314],[-123.48459687511685,53.378674466764316],[-123.48575515828304,53.387297423496605],[-123.48558207672197,53.39347537444597],[-123.48713613014057,53.39952277268096],[-123.48653075905513,53.404102028493845],[-123.4868548020961,53.40827270041919],[-123.48995886227297,53.41212423642297],[-123.49640248840073,53.41336518490678],[-123.51377488022068,53.41503178911675],[-123.5313916955192,53.41538267790686],[-123.55270979401446,53.41539403693425],[-123.5720208193485,53.41514824936341],[-123.58624468917345,53.41415570661772],[-123.59774429003429,53.40960428777966],[-123.60518597582137,53.40687127263076],[-123.62449611788976,53.40896194272359],[-123.64544948089033,53.414336973770986],[-123.6664922511104,53.42200043270141],[-123.6832895677855,53.42331082281638],[-123.7020309943176,53.42551156181574],[-123.71529430309722,53.42469354239014],[-123.72791894355477,53.422279829794526],[-123.74075887370927,53.42032394274371],[-123.74790102368888,53.42416465436188],[-123.7577145508426,53.43255079012237],[-123.76679570792365,53.43945179780214],[-123.77228140971967,53.44274988746133],[-123.78155161823234,53.4467273762448],[-123.79105927210556,53.45225237604869],[-123.79587762502446,53.455385618307524],[-123.79947063085373,53.461168507997705],[-123.8056851206809,53.465651819627816],[-123.80866415868934,53.467899395102435],[-123.81455270919649,53.466780807706975],[-123.82815183383902,53.46463035470799],[-123.83947695872332,53.46291293519462],[-123.84397239729539,53.463012814347756],[-123.84960427217327,53.46687576103613],[-123.85013547264208,53.468301404855296],[-123.85514299001363,53.4687373408077],[-123.86655704508198,53.46913265901437],[-123.87563004502381,53.473111870602956],[-123.88956507580399,53.4762731997495],[-123.908240585757,53.47620776445569],[-123.92395541997081,53.474299254894454],[-123.92661811360259,53.47391187107251],[-123.93455219300111,53.471383983179145],[-123.94571791608645,53.46823103345428],[-123.9524945380113,53.465544188038585],[-123.95752145487494,53.462485182456604],[-123.95998618574161,53.45993185687624],[-123.96269665870273,53.460401279432936],[-123.96989959358089,53.4610301540956],[-123.98048424196784,53.460112235372435],[-123.9898361656515,53.4593844026177],[-123.99555527540532,53.458833521774764],[-123.99688376223106,53.458523567953506],[-123.99991231397826,53.45707495544681],[-124.02066234855158,53.44898771958581],[-124.03288631223654,53.44552777194568],[-124.04059586709162,53.4423762714204],[-124.04701644558894,53.43608154738383],[-124.0524536403699,53.43142957243442],[-124.05983637594328,53.43102108995824],[-124.06843199322033,53.431470081308646],[-124.07387993333722,53.43178858543686],[-124.07702973698503,53.432205928243135],[-124.08536807397196,53.43168521838997],[-124.08920593037955,53.43091026824812],[-124.09160601315473,53.42989420832692],[-124.09756372149168,53.42861558850053],[-124.11225462867604,53.43075328986046],[-124.11654298694452,53.43203427005257],[-124.12846772018908,53.43398272892627],[-124.13649352228116,53.435056031080805],[-124.13867366079597,53.43557815173918],[-124.14410981433922,53.43652639810476],[-124.14909884646126,53.435980941658315],[-124.15236017916735,53.4352560916889],[-124.15562891562335,53.43401578146276],[-124.16263877784928,53.4327972827657],[-124.1685775007589,53.432257263865864],[-124.18236620635957,53.43198097863008],[-124.19068848847743,53.43179445221615],[-124.20531959928472,53.43192275980073],[-124.21256774423064,53.43321789454838],[-124.22008337521332,53.43604674891428],[-124.23337999426734,53.44318782732464],[-124.24193496296473,53.44722574317171],[-124.24936748773716,53.45650483983974],[-124.25792756262946,53.460885054369854],[-124.26054314678308,53.465180281394446],[-124.26492363159608,53.46771047053935],[-124.26832853853234,53.47120457327289],[-124.27106150026604,53.47379013816944],[-124.27534742627728,53.475349261484155],[-124.27842237910296,53.47513596368133],[-124.28180933798964,53.47172510562935],[-124.28275024574397,53.46607256636757],[-124.28475449645362,53.45951701888168],[-124.29593991910906,53.45288237650285],[-124.30862372905267,53.44830796824185],[-124.32261559715732,53.445680242315994],[-124.3374570582116,53.445566619604904],[-124.35376470548013,53.45001968367617],[-124.37054098876689,53.45687928222409],[-124.38427744704313,53.46086146933132],[-124.39227674588031,53.464886943727436],[-124.39559058631487,53.46826511383925],[-124.39715869001814,53.474662478848764],[-124.39622619466319,53.4816805683321],[-124.39488359353506,53.48242277697987],[-124.39598680805,53.48636666517029],[-124.3963107177429,53.49173150585608],[-124.39292005472507,53.49623287665008],[-124.38596625090219,53.50140929907503],[-124.38133325824718,53.50476071341688],[-124.38543178243968,53.507053866336555],[-124.39797067326853,53.50921282711073],[-124.41557235151144,53.51103942501628],[-124.4230437019854,53.511744546642596],[-124.43243459657667,53.51205984357704],[-124.44240649133556,53.51220158620829],[-124.46326772239154,53.515919095291146],[-124.48789990116298,53.52711549063481],[-124.52390039693253,53.53456474205967],[-124.52972177686728,53.53806227633034],[-124.57051597215495,53.54693817243736],[-124.57272831116715,53.54505655699108],[-124.57802850823137,53.54266829611914],[-124.58168452809421,53.54102049050741],[-124.58466356235927,53.53925476402782],[-124.5849637571996,53.53708191102132],[-124.58325424867022,53.53485330605995],[-124.58201922067862,53.53291041122529],[-124.58198143909985,53.53268587902582],[-124.58173541840833,53.53056872752587],[-124.58164140526942,53.52977099272833],[-124.58155367339103,53.52834029467752],[-124.58050971255581,53.52656827281301],[-124.57706293263914,53.525649394098906],[-124.56978911638555,53.52477764037549],[-124.56653082679698,53.524548652329926],[-124.56386463909544,53.52248360185418],[-124.5640622660998,53.5198014293617],[-124.56406911866588,53.518717490723645],[-124.56207347809118,53.51562796910614],[-124.55750616780014,53.51128160017634],[-124.5534986476963,53.50870091257989],[-124.54901489368649,53.50635687292999],[-124.54500444503373,53.50388901168541],[-124.54461808405956,53.50326300965193],[-124.54319809089199,53.500631128159895],[-124.54321763839415,53.49789018772789],[-124.54256244442728,53.49543400624018],[-124.53979519670773,53.493320060927545],[-124.53503030468855,53.491307580577526],[-124.5335053178975,53.49084570146478],[-124.52966970953412,53.48992453751871],[-124.52547247771415,53.488550039656936],[-124.51917894630975,53.48408043193895],[-124.51765236063024,53.482819997322025],[-124.5166203553985,53.48081722210906],[-124.51691558039131,53.4780174868439],[-124.52038408037198,53.47602916076972],[-124.52547820595437,53.47375720018525],[-124.52778231798126,53.471359857145785],[-124.52780603174335,53.46982119275792],[-124.52727432318764,53.46388005727471],[-124.52702226987103,53.45685606162984],[-124.5270466444709,53.453145347954845],[-124.52708976061503,53.447607358468474],[-124.52711323910003,53.44435265364446],[-124.52712611113238,53.44355447431677],[-124.52736120962116,53.437273710842916],[-124.52702383647365,53.43053597200369],[-124.52612886283802,53.41991160761801],[-124.52484663028166,53.41174356236266],[-124.52421483942885,53.40825882172928],[-124.52062190935517,53.40151249955463],[-124.5188248238958,53.39859755992952],[-124.5201854139356,53.395060227950204],[-124.5216462058739,53.391238391532674],[-124.51815668583113,53.38460413209768],[-124.51427111186045,53.38025737481735],[-124.51181236798871,53.37734242671581],[-124.50716308505571,53.37247545429085],[-124.5037534066177,53.369213896785965],[-124.50224189536443,53.36681207170925],[-124.50092381684013,53.36321256057797],[-124.50095937303274,53.35967380526541],[-124.50096303069071,53.358301195056605],[-124.50077253373969,53.357728996461525],[-124.49697263693147,53.35532117714603],[-124.49251320882105,53.351997229324965],[-124.49015218099011,53.34896421443746],[-124.48791009235252,53.342625918494484],[-124.48406869432254,53.33222140480224],[-124.481650079955,53.324566244523176],[-124.48100597849039,53.322393641896326],[-124.47810497085268,53.314794940074655],[-124.47718815009794,53.309767520205845],[-124.4771961013055,53.30788057903149],[-124.4777046064073,53.304628470392004],[-124.48222411405953,53.299840950496765],[-124.48969757683582,53.295688135517366],[-124.49793574600055,53.29028837211711],[-124.50321440767279,53.284760004180484],[-124.50362369845814,53.28127344368726],[-124.49381305104434,53.27982652045864],[-124.48132894359838,53.279165982154055],[-124.47219077688689,53.27869292726364],[-124.46142417053193,53.27712116743051],[-124.44848014402835,53.274691294689084],[-124.44164015431676,53.27266863629287],[-124.44185915509539,53.26958592839332],[-124.44544591525477,53.26320236041727],[-124.44852863937716,53.25823918928654],[-124.4506520729367,53.254423243134056],[-124.45161778834361,53.25431034386222],[-124.45314823823163,53.25231545003925],[-124.45430961325158,53.250549379662814],[-124.45508747636163,53.24940864368327],[-124.45603885849634,53.24804043546324],[-124.45805913602844,53.247017822783334],[-124.46081626130838,53.24679532991184],[-124.46367934208436,53.24737594845001],[-124.4664244740145,53.24789726469086],[-124.46786502935365,53.24669833440598],[-124.46930107858518,53.24562148435735],[-124.47418114132796,53.243178683978634],[-124.4755244692737,53.24174980690137],[-124.47876297624687,53.24107700968854],[-124.48277020934442,53.24074341334377],[-124.48639917715064,53.238808551925594],[-124.48728161480771,53.23681392112977],[-124.4879443600301,53.235500618790034],[-124.49090979139136,53.233624395507746],[-124.4948191107323,53.23306559749155],[-124.49825818196032,53.23221439624868],[-124.50017992047043,53.23010956455229],[-124.50246895453388,53.22822730526553],[-124.50361931123089,53.22754312621807],[-124.50611949832286,53.224351227418964],[-124.50793842979073,53.22258564092527],[-124.51138449976665,53.22065108994491],[-124.5131009058199,53.219228721554764],[-124.51435088282928,53.21740659208443],[-124.51482734814985,53.21666287371736],[-124.51646462461916,53.21534872970101],[-124.52102731130255,53.21536261786873],[-124.5252100172607,53.21594198408084],[-124.52797120475071,53.217257167496],[-124.53425229123648,53.21750366886967],[-124.53852714641776,53.217165368195396],[-124.53939321906631,53.21642860125682],[-124.54254198491482,53.213917424271166],[-124.54676831967375,53.2093014473952],[-124.54946121238105,53.20473938703146],[-124.55032438076033,53.20188567374101],[-124.55033149523949,53.200802695195065],[-124.5503518093289,53.19845918020279],[-124.55035259783082,53.19668525978636],[-124.55045613694259,53.194977590713826],[-124.54979539805919,53.19412007737971],[-124.54847007297985,53.193830978809046],[-124.54676962906342,53.19354397830479],[-124.54495440872421,53.193541309530204],[-124.5418104772662,53.19421984348247],[-124.53818715597656,53.19444077072992],[-124.53297048737772,53.19431519979321],[-124.52839782635819,53.19379118029823],[-124.52326825400989,53.1933222401182],[-124.51642042577363,53.19308369954828],[-124.5109049099566,53.193355725107644],[-124.50557228100212,53.19396934412432],[-124.50300593623398,53.193569371579706],[-124.50072949097546,53.19218742102234],[-124.49674509292778,53.19201253000515],[-124.49455985762332,53.190183350473546],[-124.495148493929,53.187552853008675],[-124.49783380923554,53.18459035946147],[-124.49945923374763,53.1831675844966],[-124.50185756307765,53.18151643720348],[-124.50138582075658,53.18128465482136],[-124.5013988099957,53.17837732399394],[-124.50142826076532,53.175005121346565],[-124.50116341921468,53.17232118956878],[-124.4996623066729,53.169405306391326],[-124.49530779278008,53.16494028240734],[-124.49221323764323,53.16048104765864],[-124.48920656018225,53.15567767187388],[-124.4866537284305,53.152871984450414],[-124.48457913663964,53.15053238705741],[-124.48251064707168,53.148865224776195],[-124.47852259171118,53.14765579683743],[-124.48099990796803,53.14669416057232],[-124.49120769771986,53.140324913205156],[-124.49580000001427,53.137590693510724],[-124.5006611654642,53.13486250452133],[-124.50626305104254,53.13447671384087],[-124.53088374192195,53.13172287123595],[-124.57003026599885,53.128999826440754],[-124.5774428267003,53.129069612274755],[-124.6094318384434,53.13476802072757],[-124.65111064119226,53.140867189297126],[-124.6664971259412,53.14139125503449],[-124.67808190382415,53.14083209429046],[-124.69386159116807,53.13833023954113],[-124.70003967089372,53.1391328511378],[-124.71342190162939,53.14496169439543],[-124.71988028264903,53.14793632213387],[-124.73013896712095,53.14965266519722],[-124.7584492529547,53.15114145889179],[-124.77375593327353,53.15251128360883],[-124.7805942980648,53.15496596487796],[-124.78629456243232,53.15793411077716],[-124.79836189647875,53.15947587621576],[-124.80216175802401,53.16026965138028],[-124.80606760090072,53.16049960980135],[-124.8143390888975,53.15792703255366],[-124.82735777570129,53.15437906759004],[-124.83619325437711,53.15300508021406],[-124.84180264324112,53.15339851922151],[-124.85196772447291,53.15436487321811],[-124.86317708431672,53.15441257074814],[-124.87173515125122,53.15440426978555],[-124.87913937014463,53.15325602975728],[-124.88294938177653,53.151994463250745],[-124.88701843716228,53.14999117001816],[-124.88977578445393,53.14599207089179],[-124.89184633096235,53.14073538357575],[-124.89194370738174,53.14044943483222],[-124.8925157236679,53.137481969464204],[-124.89468327163381,53.13421957939298],[-124.89629168304481,53.13170774925537],[-124.89258084962685,53.126968966811916],[-124.8840289641409,53.12183708684193],[-124.8799290113676,53.119440654227986],[-124.8725236097867,53.11522809533028],[-124.86454058429365,53.11083524832092],[-124.86007271953358,53.1088385212473],[-124.86757929387596,53.10917736402987],[-124.87877481498971,53.11099351520381],[-124.8875262178015,53.112981157118774],[-124.89559719591094,53.11525369029029],[-124.89938680507679,53.114626773945616],[-124.9067861425173,53.112787102598254],[-124.91039636845058,53.11038656584581],[-124.90734181862005,53.106333299050746],[-124.9036308418915,53.10279603774534],[-124.90334100837315,53.100112385570775],[-124.90503951561352,53.09520097048481],[-124.90568922363413,53.09148331335946],[-124.90606271397185,53.086287284657026],[-124.90680093409767,53.080287795308315],[-124.90755429723498,53.07543478396932],[-124.91124908333823,53.07194520548848],[-124.91853575595319,53.07010490934386],[-124.92678861463602,53.06906801237862],[-124.93740848103266,53.06905534126877],[-124.94783677606802,53.06892570949198],[-124.9456492203256,53.06607056019942],[-124.93415446546075,53.059860730718285],[-124.92827124167287,53.05478329052435],[-124.92702419148776,53.05324739674878],[-124.92198379063144,53.04742870381241],[-124.92045418783712,53.04114942605791],[-124.92241764044647,53.03446052987262],[-124.92241961516234,53.0332049081376],[-124.92334006026053,53.02755197462297],[-124.9234300034588,53.022235471084635],[-124.92322914328437,53.01955031130815],[-124.92349523378786,53.01612476053077],[-124.92415789822667,53.015322837966615],[-124.92529603622091,53.013439361134324],[-124.92897701830996,53.01200258712021],[-124.93277636448235,53.01416845049953],[-124.93364162125945,53.01599896984184],[-124.93505377946128,53.0162778707115],[-124.93714169147245,53.015819884212526],[-124.93875497787502,53.015822083604455],[-124.94073980637341,53.01530202814425],[-124.94263708579636,53.015296639125495],[-124.94367348041342,53.015068910130765],[-124.94499943732549,53.01460956228817],[-124.94574479579018,53.013467593276474],[-124.94650803462272,53.012205307820594],[-124.94943646140408,53.01157026403435],[-124.95228940208024,53.01156986816967],[-124.95492682781403,53.01122234355153],[-124.95824525848545,53.00990247842174],[-124.96372095501721,53.00646952488543],[-124.96636006312917,53.00480783170821],[-124.96788139037535,53.003659639547124],[-124.96901430922664,53.002513626427906],[-124.97368825801261,53.00005093519339],[-124.97966496845825,52.99865553093638],[-124.98232190610256,52.99744972945102],[-124.98485798632444,52.99567132018233],[-124.98693373465574,52.99315208785018],[-124.98833864098121,52.99120866568725],[-124.99257893701493,52.988675945865396],[-124.99865661387707,52.989236494505406],[-125.00434706423326,52.99167610010729],[-125.00862055928286,52.992801357518005],[-125.01241764127728,52.99387764272291],[-125.01869365172314,52.99688398856686],[-125.02088297170208,52.99842342563181],[-125.02459085036449,52.99886709937594],[-125.02781250337044,52.999028180684824],[-125.03102514129593,52.99827580335042],[-125.03500050401108,52.998780183385335],[-125.0366930950386,52.997230220023134],[-125.0409624808398,52.99727566699836],[-125.04607512751272,52.996339974464085],[-125.05015977590666,52.997298573595],[-125.05366378305578,52.99751837412395],[-125.05734965812125,52.99761849917016],[-125.06246923967439,52.997030105845596],[-125.06424923879145,52.9948517810227],[-125.06776803203242,52.9957526079493],[-125.06830348002892,52.99312230081466],[-125.07342608511443,52.99304781674742],[-125.07549389754118,52.991331032543144],[-125.07775458660883,52.98966167455163],[-125.08513712509985,52.98860811813181],[-125.0880643374089,52.98785366601076],[-125.0916567436153,52.986702528553565],[-125.0961084016241,52.98725334796999],[-125.10038377054921,52.98838031853997],[-125.10360608349664,52.98848387355935],[-125.10880993105059,52.9880633206477],[-125.11410794544022,52.9874168943633],[-125.1172281246867,52.987404443899756],[-125.12064879434317,52.98802000232843],[-125.12492809991954,52.989715377724806],[-125.12949018901675,52.991469823360234],[-125.13536488504968,52.991100679770646],[-125.13857155384882,52.990516238932436],[-125.13958935602201,52.98817322375354],[-125.1432713566997,52.98621043240077],[-125.14532917683688,52.98409007368732],[-125.14805969363036,52.98190787134177],[-125.15127116443136,52.981039047203076],[-125.15504521686266,52.9803938076787],[-125.15654295091905,52.97787422892332],[-125.1588869001715,52.97632383052148],[-125.16303670671489,52.974757645701914],[-125.16538959381033,52.97349124878647],[-125.16973761782101,52.972446190687656],[-125.17588677048658,52.97161920938709],[-125.18052181622814,52.971142784960826],[-125.1856266400842,52.97106387672671],[-125.18969849989165,52.9711597496466],[-125.19566787347075,52.971128366629046],[-125.19869719545262,52.971119315435374],[-125.20210602816513,52.971560985339224],[-125.20722476894898,52.97153558883904],[-125.210465413901,52.9730051518427],[-125.21454299935435,52.9744191279697],[-125.21920077005248,52.975134761895106],[-125.22414247442414,52.97665554050273],[-125.22774294066994,52.97726637664375],[-125.23286903772183,52.977696543577416],[-125.23628385359515,52.9778531928507],[-125.24007246295564,52.97880776726595],[-125.24445125965427,52.98015484474709],[-125.25117698194846,52.98046391231647],[-125.2548736698112,52.9807338692498],[-125.25960637776073,52.980651638121884],[-125.26338765689411,52.97948864088498],[-125.26590972178337,52.976907433499086],[-125.27022439162904,52.97420001874588],[-125.2727671328465,52.97298478598018],[-125.27626097433786,52.97199048650034],[-125.28107684474644,52.97134146109329],[-125.28597918656925,52.969088083556066],[-125.290785462125,52.96809066019365],[-125.29464051980753,52.965957804716325],[-125.29785615581878,52.96548171593609],[-125.30088423120043,52.96551989412239],[-125.30560207552601,52.964409285810575],[-125.30967729967396,52.96427075125802],[-125.31532713482056,52.962700736280624],[-125.31797054849125,52.96159548922488],[-125.32399999465319,52.95956389204887],[-125.32975635952994,52.95873281748091],[-125.33411353032609,52.958648267747556],[-125.33959057692635,52.957531627824665],[-125.34348152519081,52.95865042580812],[-125.34765866609035,52.959602591927364],[-125.35306900729455,52.95991369393932],[-125.35610474874613,52.96040657152966],[-125.36320832884253,52.96122286440989],[-125.36861810822751,52.961592637615965],[-125.37314975196082,52.960817313895376],[-125.37605426967112,52.95908855652225],[-125.37848372488459,52.957188023445525],[-125.3814093480903,52.95602737592229],[-125.38876518068363,52.95484098878864],[-125.39688391653968,52.953468675406505],[-125.40238085139127,52.95395388937664],[-125.40588629561762,52.9539318477313],[-125.40927872162231,52.95345529384998],[-125.41306762338131,52.953424930662834],[-125.41848162684097,52.95453370226043],[-125.42283659923383,52.95456296694392],[-125.42758580179702,52.9552237475317],[-125.43278159158693,52.95484379303369],[-125.4368539362112,52.95481739054179],[-125.44186602422886,52.95478633953679],[-125.44972733436616,52.954729201021735],[-125.45417940573387,52.95533036981896],[-125.46053893067841,52.9560835533239],[-125.46591633232566,52.95547830116769],[-125.47273771122458,52.95508994288182],[-125.48305754721001,52.95524326098111],[-125.49005362066482,52.95519588302645],[-125.49563260879756,52.955154347307925],[-125.50185878296139,52.95334144609715],[-125.51096928117627,52.94967672220763],[-125.5200886422695,52.94640857285867],[-125.52382780681069,52.9440924198411],[-125.52835149485975,52.94360468563679],[-125.54160897263553,52.94350912595475],[-125.54749042240756,52.94432075128978],[-125.55425490080779,52.94627055664693],[-125.55989314259148,52.9490287356346],[-125.56585477879025,52.95378297529258],[-125.57849158332402,52.95642407746858],[-125.59072974721823,52.95724825936788],[-125.59716651804813,52.95799712000445],[-125.61464218395466,52.96037063695313],[-125.62183290673867,52.9603110196273],[-125.62739411012019,52.95894822851811],[-125.6329424531932,52.95730556285516],[-125.63952398443256,52.95513970041212],[-125.6459559261833,52.95473843905052],[-125.65087693754175,52.954869109036956],[-125.65560545649839,52.95482924335388],[-125.65948371367644,52.95479849411988],[-125.66471309458612,52.95555081514545],[-125.67173307380335,52.956237877350034],[-125.67951365811419,52.95697028439055],[-125.69228476473846,52.95657180972955],[-125.7003809942764,52.95490234730392],[-125.7094308413976,52.953275580117776],[-125.71955744626558,52.95336119225156],[-125.72859888960917,52.95522230318949],[-125.73928604020765,52.95884113420576],[-125.7458568545473,52.96009256711597],[-125.75252946600547,52.96186153314781],[-125.75832628794033,52.96295376323778],[-125.7626038974968,52.96365439486978],[-125.76699598145957,52.96527056341096],[-125.77160159393753,52.966081882741385],[-125.77336966133988,52.96640688951577],[-125.77293182037958,53.006502661943415],[-125.77197532391953,53.09430355309072],[-125.77073987252979,53.20707797116679],[-125.80666577798375,53.20707199894113],[-125.81333424422013,53.207072051297395],[-125.81999988726558,53.20707227983318],[-125.82666646058244,53.20707213480823],[-125.83333304660844,53.207072170481595],[-125.83999961754854,53.20707184007027],[-125.84666712955865,53.20707224726293],[-125.85333371330611,53.2070717224693],[-125.86000027811575,53.20707194300082],[-125.86666685793995,53.20707178852419],[-125.87333249070109,53.207071822677335],[-125.87999905209685,53.207072038556014],[-125.88666750402996,53.20707188121818],[-125.8933331336638,53.20707190180801],[-125.89999969217004,53.20707211293007],[-125.90666626568789,53.20707194903971],[-125.91333376819823,53.207071975470825],[-125.9200003254099,53.207071617170456],[-125.9266668954953,53.20707201318976],[-125.93333345065636,53.20707202521197],[-125.94000002075359,53.20707167118102],[-125.94666564471406,53.20707149740337],[-125.9533321982084,53.20707150477749],[-125.96000064164235,53.20707170243355],[-125.96666626428775,53.20707152405976],[-125.97333281672287,53.20707153564381],[-125.98000125937045,53.20707172822795],[-125.98666688122763,53.20707154525851],[-125.99333343314163,53.207071543127086],[-125.99989777619953,53.20711206399207],[-126.01165455319754,53.20718319476895],[-126.01213095990336,53.20725877655515],[-126.01238324071457,53.207357343199135],[-126.01263928728515,53.207450862744324],[-126.01290376386176,53.20753262139087],[-126.01317949005251,53.207599257654785],[-126.01346084127177,53.20765804107061],[-126.01374594274625,53.20771178619025],[-126.01403384929198,53.207761048803455],[-126.01432364631329,53.20780806974411],[-126.01461342858742,53.20785396960513],[-126.01490415697356,53.20790043330479],[-126.01519395632033,53.20794857248532],[-126.0154809367037,53.20800007243906],[-126.01576604367632,53.208055488764764],[-126.01605115118525,53.20811034869874],[-126.01633813479432,53.208164651982415],[-126.01662604898284,53.208217825104605],[-126.01691490919119,53.208271006353854],[-126.01720377012245,53.208324177934585],[-126.01749263178381,53.208377357772584],[-126.01778056434797,53.208431648453015],[-126.01806755259571,53.20848650324354],[-126.0183526667276,53.208543042666165],[-126.01863683706105,53.208601257625176],[-126.01891914858719,53.20866171294023],[-126.01919864103587,53.20872440878014],[-126.01947531443894,53.20878934516443],[-126.01974918435546,53.20885764248128],[-126.02001930553028,53.20892930090939],[-126.02028567827536,53.20900487617802],[-126.0205351793231,53.209096703630266],[-126.02076313005152,53.20921038604467],[-126.02097513889848,53.20933862669425],[-126.02117870539207,53.20947527572704],[-126.02138134373632,53.209613609605356],[-126.02158960747792,53.209746331286745],[-126.0218222490569,53.209865612623545],[-126.02203521119357,53.20999665656504],[-126.02222377191617,53.21011986210057],[-126.02229419706802,53.210272219237105],[-126.02230835076156,53.210449790772095],[-126.02230469603604,53.210632976454626],[-126.02233200214518,53.21082455458243],[-126.02236023203405,53.21100324377556],[-126.022452228533,53.21116736503854],[-126.02261737025478,53.211315778141916],[-126.02281439677664,53.21145747161577],[-126.02300110243918,53.211602518900584],[-126.02316437543111,53.211757098083716],[-126.02331827338223,53.21191616035142],[-126.02341872364532,53.212079714455534],[-126.02340194205186,53.212260661868065],[-126.02327448125229,53.212425381214935],[-126.02306071167455,53.21254921928801],[-126.02282160554647,53.21266410786056],[-126.02340126205556,53.2127401799102],[-126.02369484921036,53.212776529084906],[-126.02398936344859,53.21280616409445],[-126.02428668137138,53.21283075165653],[-126.02458588944943,53.21285365304586],[-126.02488507988078,53.21287151650557],[-126.02518427923434,53.212878740186596],[-126.02548157911663,53.21287138976429],[-126.02577794270383,53.212854520147],[-126.02607430363915,53.21283373297986],[-126.02637160757487,53.212809574792345],[-126.02666701862103,53.212782619844035],[-126.02696337289966,53.2127528675039],[-126.02725879528946,53.212721429601686],[-126.02755420113567,53.21268830593162],[-126.02784962115922,53.21265462581832],[-126.02814314993334,53.21262094541712],[-126.02843762362845,53.21258726406149],[-126.02873209647683,53.212553026270704],[-126.02902656846071,53.212518223081766],[-126.02932103918286,53.21248229879182],[-126.02961550861993,53.212445253400745],[-126.02990810019291,53.21240596701301],[-126.03019975924413,53.21236443940156],[-126.0304895253413,53.21232067081996],[-126.03077648225914,53.21227354115093],[-126.03106062911567,53.21222193004566],[-126.03132317213351,53.212137268596145],[-126.03157444707323,53.2120358129873],[-126.03181633745652,53.21192819284671],[-126.03204697728088,53.211827297464865],[-126.03225133822252,53.2117034367267],[-126.03234033586956,53.21158297723447],[-126.03246682501454,53.2114137668424],[-126.03254734510344,53.21123728204769],[-126.03270009153124,53.21108655474539],[-126.03289225154857,53.210948696074624],[-126.03310128092302,53.21081643422154],[-126.03330374982453,53.210681933093646],[-126.03348276429195,53.21052894764884],[-126.03365332230685,53.21036701032298],[-126.03384358168799,53.21022466911313],[-126.03407703199031,53.21012825036408],[-126.03435176572968,53.2100749489731],[-126.03463119909979,53.21002613601527],[-126.03491626202472,53.20998123755405],[-126.03520414858798,53.20994025438282],[-126.03549671904912,53.209902639182985],[-126.03579116700692,53.209867819138125],[-126.03608842236288,53.209835238247344],[-126.03638757080569,53.20980601714098],[-126.03668858093049,53.209778470777096],[-126.03698960763614,53.20975317334738],[-126.03729156528131,53.209728986267244],[-126.03759352407907,53.20970648345478],[-126.03789453874185,53.20968566521199],[-126.03819369246388,53.20966483784102],[-126.03849190159644,53.20964513935514],[-126.03878916717605,53.20962767220607],[-126.03908738612539,53.20961917592588],[-126.03938655601225,53.20961683613704],[-126.03968666091053,53.209619532466895],[-126.03998769881723,53.209625033130465],[-126.04028780702286,53.209631098012316],[-126.04058886009517,53.209636597143785],[-126.04088801935033,53.20963873505154],[-126.04118811959331,53.209636390394124],[-126.04148633756792,53.20962732341065],[-126.04178267146818,53.209609849078525],[-126.04207994710929,53.209589021521346],[-126.04237627544786,53.209566508519146],[-126.04267353265571,53.20954287407025],[-126.04296985807788,53.2095181188424],[-126.043266181429,53.20949167783609],[-126.04356250268289,53.20946356001428],[-126.04385882238061,53.20943432108055],[-126.04415420960609,53.20940340567785],[-126.04444958020753,53.20937136021056],[-126.04474401887438,53.209338202950164],[-126.04503845528474,53.20930335992033],[-126.04533195909413,53.209266831476896],[-126.04562451588383,53.209229191262075],[-126.04591707092638,53.20919042099077],[-126.04620867890631,53.20915053895738],[-126.04649935355643,53.20910840686626],[-126.04678721365522,53.20905899724107],[-126.04707224281186,53.20900118973676],[-126.04735631897633,53.208937215402244],[-126.04763852925734,53.20886931535325],[-126.04792072109815,53.20879918285711],[-126.04820105204142,53.20872960614709],[-126.04848324457575,53.20866170408526],[-126.04876451108765,53.20859829217836],[-126.04904765883411,53.20854047171775],[-126.04933269186179,53.208491621729095],[-126.04962055628313,53.20845228854486],[-126.04998813498403,53.20842131936914],[-126.05020381673391,53.20841226522499],[-126.05049920994972,53.20840877860684],[-126.05079837939147,53.20841369690246],[-126.0510994189501,53.20842644727491],[-126.0514014101198,53.20844424262372],[-126.05170528398091,53.20846763823944],[-126.05200916162869,53.20849383848473],[-126.05231304241393,53.208522269729464],[-126.05261692501297,53.20855182952837],[-126.05291987632941,53.20858025962915],[-126.0532218806442,53.20860701330472],[-126.05352200620634,53.20863097061163],[-126.05381930549663,53.208650437992894],[-126.05411473658859,53.2086637479195],[-126.05440639301838,53.20867033661352],[-126.05469430248687,53.20866852801432],[-126.05497843188854,53.20865607245833],[-126.05522779474107,53.208585928811345],[-126.05544331756225,53.20845586507208],[-126.05564755534948,53.20830284309153],[-126.0558658837144,53.20816324960341],[-126.05611708728713,53.208070140054694],[-126.05638988338941,53.20800111217447],[-126.05667396049238,53.20794215265365],[-126.05696553613278,53.20789216078465],[-126.05726181961109,53.20785111993522],[-126.05755998876019,53.20781792899544],[-126.0578562926013,53.20779257185689],[-126.05815167660784,53.20777506599593],[-126.05845080885457,53.207766511563726],[-126.05875089561238,53.207764687098816],[-126.05905193622345,53.207769018963766],[-126.05935296818174,53.207777831556825],[-126.05965307473024,53.20779000496747],[-126.05995130906985,53.20780441930935],[-126.0602523644536,53.207818831466525],[-126.06055715936635,53.20783548169226],[-126.06086103069087,53.20785661309665],[-126.06116023225982,53.20788558873645],[-126.06145100216204,53.20792520704593],[-126.06172771800358,53.20797828538984],[-126.06197916537646,53.20806106168026],[-126.06219411263469,53.208188106804045],[-126.06238938901468,53.208334772875574],[-126.0625780888912,53.20847752526779],[-126.06272836944765,53.2086348535594],[-126.0629067626615,53.2087770461943],[-126.06313107934133,53.20889401021921],[-126.06336944676158,53.209004235109184],[-126.06361061798951,53.20911222622929],[-126.06384618365199,53.209223572023866],[-126.06406861975996,53.209343896375735],[-126.06427513537479,53.209473182944876],[-126.06447510271573,53.20960751885978],[-126.06466943367971,53.20974466291311],[-126.06486378176183,53.20988236233297],[-126.0650599891685,53.210018375366225],[-126.06526276325611,53.21014991192952],[-126.0654786552639,53.21027303362883],[-126.06572640100899,53.21037428555769],[-126.06598071333308,53.210471060788784],[-126.06641971668182,53.21053131558439],[-126.0667142628338,53.210572039191106],[-126.06700784557414,53.21060100320099],[-126.06730421407924,53.21060755749115],[-126.06760709595606,53.21057713509719],[-126.06787800389445,53.21050191542199],[-126.06812262763127,53.21040262674723],[-126.06835971713492,53.210293814275126],[-126.068592115576,53.21017995788662],[-126.06882450913307,53.21006386925882],[-126.06905784948064,53.209949455690555],[-126.06929775408683,53.20984007500523],[-126.06954329545299,53.20973742170909],[-126.0697897668613,53.20963532305434],[-126.07003718239937,53.20953322332283],[-126.07028554484621,53.20943279858233],[-126.07053671486064,53.20933405668277],[-126.07078976402008,53.20923811853253],[-126.07104562170476,53.20914440993267],[-126.0713052520592,53.20905518895431],[-126.07156769385914,53.2089698825235],[-126.07183201020624,53.20888457437083],[-126.07209725387546,53.20879814468825],[-126.07236343984471,53.20871059346025],[-126.07262962471177,53.20862304163031],[-126.07289768599853,53.20853660841541],[-126.07316669438515,53.208451850081104],[-126.07343663588951,53.208369340260354],[-126.07370938903466,53.20829074489237],[-126.07398309429682,53.20821662978642],[-126.0742586830182,53.2081475500578],[-126.07453615727854,53.20808463502751],[-126.07481646445927,53.208029004457295],[-126.07521397028952,53.20796432695708],[-126.07538460977675,53.20794349613011],[-126.07567527911554,53.20791921839197],[-126.07596972239932,53.20790782628388],[-126.07626793383224,53.207905958665066],[-126.07656991054802,53.20791192150614],[-126.07687282680142,53.20792292912519],[-126.07717669361661,53.20793674076311],[-126.07748150589835,53.20795054204079],[-126.07778537104991,53.20796323174688],[-126.07808828280669,53.207971430850066],[-126.07838837639024,53.207972917772366],[-126.07868657773484,53.20796543324997],[-126.07898007350879,53.20794507131313],[-126.0792697577236,53.20790062767489],[-126.07955472514526,53.207837695867795],[-126.07983123383563,53.20776132460199],[-126.08009928130544,53.20767823617143],[-126.08035794038977,53.20759010733864],[-126.08060813387578,53.2074930296771],[-126.08085363199596,53.20738922348598],[-126.08109631774798,53.20728262225397],[-126.08133710851845,53.20717434574086],[-126.08158072315109,53.20706829857033],[-126.0818149427113,53.20695385906308],[-126.08204822749646,53.20683774365408],[-126.08230406206961,53.20675241789733],[-126.08260498625786,53.20669955098325],[-126.08290505229547,53.206691498829215],[-126.0831508959073,53.20676863233045],[-126.08336029066692,53.20691189297248],[-126.0835687300167,53.20704170943302],[-126.08376874492251,53.20717489259265],[-126.0839612561663,53.207314238291474],[-126.08414254269955,53.20745975816959],[-126.08434254304258,53.207591264266554],[-126.08461096949027,53.20770254551477],[-126.08488489921801,53.2077516460144],[-126.0850102753945,53.207609268826715],[-126.085076476083,53.207415961514016],[-126.08512486125022,53.207227704138695],[-126.0853628616028,53.20713230124659],[-126.08557367528024,53.207045315821354],[-126.08585485036461,53.20696949175557],[-126.08618770455426,53.20694067615039],[-126.08647366909712,53.20691862503533],[-126.08663523452321,53.20705071104901],[-126.08679499671334,53.20721752971443],[-126.08699969818161,53.207347898570255],[-126.08720722058301,53.20747770928362],[-126.0874147281054,53.20760696393158],[-126.08762412628533,53.207735652142546],[-126.08783350956244,53.20786377531892],[-126.08804383823657,53.20799134171025],[-126.08825511464624,53.208119471682494],[-126.08846732025994,53.20824647124134],[-126.08867858303866,53.20837403578555],[-126.0888907923886,53.208501599235525],[-126.0891020727241,53.208629162996196],[-126.08931333932954,53.20875672638277],[-126.08952462221443,53.20888428937267],[-126.08973496226429,53.209012417359496],[-126.08994435825885,53.209140536718685],[-126.09015282762118,53.209269785739615],[-126.09036036792709,53.209399026131294],[-126.09056602128129,53.209529396928076],[-126.09077074677906,53.20966032377481],[-126.09097359909444,53.209791807401835],[-126.09117552356567,53.20992385605438],[-126.09136339373048,53.21006487815989],[-126.09152035163368,53.21022553481044],[-126.09166420937862,53.21039235893234],[-126.09181366326375,53.210551335933594],[-126.09198652188222,53.21068732248557],[-126.09221930602047,53.21077845629206],[-126.09253821490547,53.210797254022566],[-126.09284294827565,53.210763404569676],[-126.09309315775977,53.21067806010944],[-126.09332642098073,53.21055687658958],[-126.09355967033822,53.21043681298376],[-126.0937888577376,53.21017053919926],[-126.09391979453555,53.21000854633544],[-126.09402163906304,53.209841530242414],[-126.09409159445336,53.209666696767115],[-126.09413808761929,53.20948795609027],[-126.09416299947904,53.209307556450675],[-126.09415885033081,53.20912886492025],[-126.09410125386417,53.208950206859974],[-126.09405021500301,53.20877155251399],[-126.09406388197412,53.208595078570596],[-126.09411132438036,53.20841858675506],[-126.09417375723852,53.20824263869714],[-126.094248389517,53.2080672365928],[-126.09433240150223,53.20789295629427],[-126.09442391999289,53.207720901721125],[-126.09452014037682,53.20755164872454],[-126.09462572518683,53.20738350852977],[-126.09473883006171,53.20721704725467],[-126.09485849337112,53.20705169201677],[-126.0949837860796,53.20688801717212],[-126.09511283135707,53.20672545954151],[-126.09524187564246,53.206562901756136],[-126.09536528234426,53.206395866858024],[-126.09548774029571,53.206227712206385],[-126.09561584252704,53.206061237900485],[-126.09575707099768,53.20590091040929],[-126.09591709092975,53.20575065089222],[-126.09610150496496,53.20561325118606],[-126.09631222106765,53.20548983896582],[-126.0965304304059,53.205369781380696],[-126.09675428753073,53.205253079896686],[-126.09698376116727,53.20513917880236],[-126.09721700456973,53.20502750594893],[-126.09745398777964,53.20491807926513],[-126.09769473818294,53.2048097604058],[-126.09793642146334,53.204703125322595],[-126.09818091045678,53.20459705208353],[-126.09842541320619,53.20449096935865],[-126.09867084495107,53.20438489431151],[-126.09891533024178,53.204278810576206],[-126.09915888150353,53.20417161569892],[-126.09939962329074,53.20406329333259],[-126.09963847083665,53.20395386065045],[-126.09987357476116,53.20384162521523],[-126.10010490769331,53.203727707447136],[-126.10033155181803,53.20361099673263],[-126.10055255928107,53.20349037352699],[-126.10075853855471,53.203359670337385],[-126.10094855682404,53.20321778558503],[-126.1011272879564,53.20306805855658],[-126.10130039742275,53.20291441921776],[-126.10147068244173,53.20275966165511],[-126.10164377978097,53.202608262549404],[-126.10182346184862,53.20246302406916],[-126.10201441752507,53.20232729431462],[-126.10222135209197,53.20220499497266],[-126.1024489408521,53.20210003875554],[-126.10269626745752,53.20201187959793],[-126.10295957598673,53.2019382619635],[-126.10323509287649,53.201875845832035],[-126.1035209374712,53.20182237408375],[-126.10381336887957,53.20177562709515],[-126.10411143514622,53.20173279126872],[-126.10441138023278,53.201691629118855],[-126.10471132198386,53.20164935479759],[-126.10500750282394,53.20160315724877],[-126.1052980432302,53.201551362086946],[-126.10558106082757,53.201491165607116],[-126.10586781416832,53.20142537218994],[-126.10615924681791,53.20135340732933],[-126.1064365810912,53.201271371021356],[-126.10668387050586,53.201173675837346],[-126.10688140312993,53.20105473786021],[-126.10699634924826,53.2009005777892],[-126.1070521459706,53.200718470580384],[-126.10709760387644,53.200529641445264],[-126.10718061499051,53.200354231802116],[-126.10733305462713,53.20020284284742],[-126.10752585193536,53.20006486159769],[-126.10762319770105,53.19999979131262],[-126.10772897483572,53.19992911139066],[-126.10791331226257,53.19978665566805],[-126.10808827888444,53.19964084706183],[-126.10826510448692,53.19949503648604],[-126.1084400686897,53.19934922733741],[-126.10861408372071,53.19920229840972],[-126.10878527583633,53.19905480713506],[-126.10895085052341,53.198905088972026],[-126.1091117243018,53.198753689844494],[-126.10926414401105,53.19859949285379],[-126.10940719322996,53.19844195213335],[-126.10953990757334,53.19827937459528],[-126.10966416660884,53.19811344358306],[-126.10978280849518,53.197945276871906],[-126.10989955641405,53.1977759914034],[-126.11001537479186,53.19760726237484],[-126.11013494538064,53.19743965907129],[-126.11025921898481,53.197275403429614],[-126.11039098574919,53.19711451076222],[-126.11053403158122,53.19695920034601],[-126.11069020446028,53.196810608720845],[-126.11086234085073,53.196669279927384],[-126.11105795561765,53.19654080875306],[-126.11127890733906,53.19642464659309],[-126.11151863487781,53.196318540797805],[-126.11177150280781,53.19621858868617],[-126.11203188009486,53.19612255473956],[-126.11229413121035,53.19602650947558],[-126.11255262661464,53.19592879110413],[-126.11280173075676,53.19582547920261],[-126.11303674108193,53.19571378184684],[-126.1132623720642,53.19559536173808],[-126.11348141674331,53.19547135456011],[-126.1136891935383,53.195341191205934],[-126.11388570547889,53.19520599211144],[-126.1140709526271,53.19506576629448],[-126.114251493004,53.194921627863565],[-126.11442546963494,53.194774690050934],[-126.11459288104834,53.194624397177165],[-126.1147518403485,53.19447187147818],[-126.11490329409025,53.19431766777852],[-126.11503878843881,53.19415844213496],[-126.11514427479408,53.1939908471115],[-126.11523473207377,53.19381822039916],[-126.11532988649158,53.19364670941007],[-126.1152994341392,53.19348035787847],[-126.11544050139238,53.193298162927555],[-126.11585714663161,53.19310953202016],[-126.11606490604075,53.1929799200418],[-126.11628768951631,53.19285982067224],[-126.11652173648899,53.19274531170794],[-126.11675953661313,53.19263248362915],[-126.11699358414934,53.192519094097946],[-126.11721824053949,53.19240011147642],[-126.11742600008162,53.19227330249171],[-126.11761122888188,53.19213531167654],[-126.1177786278899,53.191988375226096],[-126.11793381452758,53.19183528409733],[-126.11807866842946,53.19167773048226],[-126.11821790390778,53.19151737684347],[-126.11835524537015,53.19135590453515],[-126.11849260078264,53.19119443203854],[-126.11863557242904,53.191035750220074],[-126.11878043597822,53.19087819566384],[-126.11892059762752,53.190718395906075],[-126.11905888186213,53.19055804214421],[-126.1191962185912,53.190397133448975],[-126.11933732355693,53.19023789687774],[-126.11948216833196,53.190080897119465],[-126.11963546547265,53.18992724978589],[-126.11979721809588,53.1897780752258],[-126.11997866602533,53.189635602790645],[-126.12019201679993,53.189504857253475],[-126.12043166524317,53.18939257541279],[-126.12069106156174,53.189305486092785],[-126.12095987589083,53.1892290257545],[-126.12123150506747,53.18915647878575],[-126.12150594596054,53.18908673374934],[-126.12178321360844,53.18901979061072],[-126.12206235993526,53.188954520979436],[-126.12234338335843,53.188890369133226],[-126.12262535403308,53.18882733602143],[-126.12290731048421,53.18876485796106],[-126.12318927948213,53.18870182350258],[-126.12346935631382,53.18863823463125],[-126.12374944237237,53.18857296002593],[-126.12403421830298,53.188511596710526],[-126.12432931487072,53.18845638847512],[-126.12445569972635,53.18840023649776],[-126.12472319333624,53.18820052658159],[-126.12490179344314,53.188056373361526],[-126.12507382355352,53.187907180580986],[-126.12523928866348,53.18775463332217],[-126.12539629914697,53.18759873361204],[-126.12554486003373,53.18744115757519],[-126.12568405827705,53.18728247984925],[-126.12580917816108,53.18712044677822],[-126.12591365615506,53.18695172215092],[-126.12607624664122,53.18678292661171],[-126.1261733261616,53.186648376896486],[-126.12628187512973,53.186588325034776],[-126.12639135191094,53.18652770740654],[-126.12655155503569,53.18649952669316],[-126.12667700642042,53.186450095592505],[-126.1268211733602,53.18639056084255],[-126.12696264655264,53.186373038812306],[-126.12710681115848,53.18631294800223],[-126.12739249663973,53.18624653828275],[-126.12764432374692,53.186147108477535],[-126.12796286952647,53.1861019493038],[-126.12827960457498,53.18607807857919],[-126.12855418546853,53.18605985469895],[-126.12885509435856,53.18607409275694],[-126.12915315801914,53.186074888512906],[-126.1294446029875,53.1860544034051],[-126.12973128328747,53.186010959352004],[-126.13001321565348,53.18595014933855],[-126.13029326173096,53.185880933343334],[-126.13057329018056,53.185811160989964],[-126.13085523328299,53.1857497932391],[-126.13114378114635,53.18570521434302],[-126.13144368202097,53.18569479842842],[-126.13174642375753,53.18569614713938],[-126.13199935167923,53.18565105005878],[-126.13228220038843,53.18558294660774],[-126.13265871688539,53.18549569998863],[-126.13273428583305,53.185381335835906],[-126.13277782072522,53.1852188308889],[-126.13287570575194,53.18504785756407],[-126.13301114151976,53.18490093479133],[-126.13327816163932,53.184865902615215],[-126.13361283718196,53.18489017407483],[-126.1339147728738,53.18493240781009],[-126.13418774830733,53.185002127563706],[-126.13445326662217,53.18508921667564],[-126.13472253942952,53.18517293975678],[-126.13499645822091,53.18524600876678],[-126.13527130776835,53.1853190850415],[-126.13554990082115,53.1853854251059],[-126.13583406031164,53.18543832244594],[-126.13614810236274,53.18545196224165],[-126.13646958093197,53.185451036565425],[-126.13674246612668,53.18549049110546],[-126.1369228106608,53.18560960848521],[-126.13703864270119,53.18578032908461],[-126.13713766843033,53.185966198721474],[-126.1372703609618,53.186132982668596],[-126.13747321036888,53.18625374918905],[-126.13771443220536,53.186354303786],[-126.13797716734562,53.186443073250196],[-126.13825486750966,53.18652173221883],[-126.13854003784867,53.186591427667175],[-126.13882705798234,53.1866532685901],[-126.13911030395703,53.186707279505875],[-126.13940379817849,53.186744462921084],[-126.13970661816772,53.186762597001184],[-126.14000937148403,53.18676503601081],[-126.14030458748256,53.18675124205085],[-126.14059407507403,53.186710564875256],[-126.14088164840774,53.18665364814214],[-126.14117016010768,53.18659952607505],[-126.1414624858358,53.186565001034445],[-126.14175957273471,53.1865551270452],[-126.14205952215883,53.186558128844],[-126.14236042207038,53.18656280483944],[-126.14266035082902,53.18655964749584],[-126.14295930254455,53.18654696280249],[-126.14326202588978,53.18653651356632],[-126.14356568269473,53.186527182811574],[-126.14387026725304,53.18651728547639],[-126.14417486287836,53.186506275920465],[-126.14447662742273,53.18649189891047],[-126.14477555894617,53.18647360772147],[-126.14506979197988,53.18644971959742],[-126.1453593245059,53.186419678863615],[-126.1456413123164,53.186380674639054],[-126.1459025954572,53.18631312985945],[-126.14612148091304,53.18618458019489],[-126.14630746113659,53.18602973718367],[-126.14646721083362,53.18587492630455],[-126.14658187883302,53.18569831895828],[-126.14668341951051,53.18551613476591],[-126.14680938548739,53.18535464288558],[-126.14700113247885,53.18523844045566],[-126.14727076028548,53.18514959487989],[-126.14758823121174,53.1850752541209],[-126.14791891422227,53.185022748053115],[-126.14823093408398,53.18499826515296],[-126.14849060918347,53.185010264154776],[-126.14866613929306,53.185086230343565],[-126.14875299085064,53.18526314257667],[-126.14877063004081,53.18548159602679],[-126.14873664143224,53.18567603044066],[-126.14860312719942,53.18582576527123],[-126.14838897851973,53.185963841398284],[-126.14820296178915,53.1861102893161],[-126.14809576643992,53.18627791679628],[-126.1480317045682,53.18645501803574],[-126.1479977039437,53.18664721137094],[-126.14817527937957,53.18677023191971],[-126.14842965198214,53.18687074824917],[-126.14871206921269,53.186953858345824],[-126.14899907908203,53.187007840898126],[-126.14929152578821,53.187008593051026],[-126.14959788129157,53.18696451144595],[-126.14989769524209,53.18692828003285],[-126.15013877043997,53.18698230898436],[-126.15035195676818,53.18709688269497],[-126.1505539850278,53.18724059128893],[-126.15070919936683,53.18739445154341],[-126.15082602476674,53.1875617961451],[-126.1509269209628,53.18773253103739],[-126.15101283757319,53.18790384063871],[-126.15108657396227,53.18807852685777],[-126.15115374605597,53.18825434177793],[-126.15122280638306,53.18842958955883],[-126.151300289956,53.18860315042779],[-126.15139463254997,53.18877277281592],[-126.15152175186967,53.188935621915476],[-126.15167042297635,53.18909397069353],[-126.15181722043144,53.18925231271102],[-126.1519368608863,53.18941573558595],[-126.15201996538474,53.18958704791733],[-126.1520965175273,53.18976285012929],[-126.1521674690756,53.189940900240444],[-126.15222903843268,53.190120647409024],[-126.15227750186007,53.19030096708799],[-126.15231001644727,53.1904796221789],[-126.15232190253346,53.190656627675594],[-126.15230753141776,53.190830870436905],[-126.1522397064721,53.19100125606114],[-126.15212689027321,53.1911688939737],[-126.15198780261774,53.19133433366673],[-126.15184309630231,53.19149753065092],[-126.15170681014348,53.191658484854955],[-126.15154612384393,53.191812183126714],[-126.15134504338957,53.19194464548701],[-126.15112047940882,53.19206200779245],[-126.15088464304704,53.19217322639242],[-126.15064504974303,53.192282773198315],[-126.1504064021092,53.19239287402123],[-126.15017525364931,53.1925074463828],[-126.14995727090965,53.19262984430319],[-126.14975430074047,53.19276062122924],[-126.14955885976619,53.19289587878742],[-126.14936716221689,53.19303392776806],[-126.14918111299606,53.193174765790076],[-126.14899692642743,53.19331673051096],[-126.14881368749148,53.19345980516239],[-126.14863139230987,53.19360288729682],[-126.14844720200088,53.193744842167256],[-126.1482611466219,53.193885687653406],[-126.14805074580853,53.194039443178596],[-126.14783452411753,53.19413326064159],[-126.14794252665459,53.194456360589186],[-126.14804247803514,53.194621487614505],[-126.14822108702474,53.194760191662986],[-126.14845213184307,53.19488034791939],[-126.14868222507295,53.194998255186476],[-126.14890484843528,53.19512009720762],[-126.14912932912823,53.1952408160843],[-126.14936222646259,53.19535312553758],[-126.149610069588,53.195449721348915],[-126.14989807728155,53.19550201523534],[-126.15017674336,53.19556776484182],[-126.15043394677191,53.19565930982182],[-126.15068649120187,53.1957564620734],[-126.15094275786481,53.195849692187366],[-126.15120370467824,53.19593842528216],[-126.15146560164678,53.196028285929025],[-126.15172935169467,53.196115893895126],[-126.15199684176397,53.19619621847662],[-126.15226990468108,53.19626589614934],[-126.1525560118121,53.19630865828349],[-126.1528588645705,53.1963194717393],[-126.15316075299489,53.19632076690878],[-126.15345973676918,53.19629461124929],[-126.15375609966136,53.19632335691781],[-126.15399740056696,53.1964233131546],[-126.15415079831834,53.19658053170056],[-126.15433412394263,53.19672146104795],[-126.1545951016909,53.19681523280328],[-126.15488592377837,53.19686582582056],[-126.15519171428433,53.19690744443307],[-126.15548988974831,53.196917692620914],[-126.1557597288978,53.19687084684839],[-126.15600971315176,53.196776961638804],[-126.15624928908092,53.19665957058206],[-126.15648698030226,53.196539931795556],[-126.15672564380759,53.196432059721694],[-126.15696243567356,53.19632139316695],[-126.15719452077373,53.1962079269406],[-126.15742096701433,53.19609110659906],[-126.1576455265188,53.19597148289075],[-126.15786726264245,53.19585130680019],[-126.1580890104294,53.195730574560315],[-126.15831168903715,53.195610396361516],[-126.15853624766977,53.195491891310155],[-126.15876831979197,53.195377301573814],[-126.15901071670542,53.19526829942722],[-126.15925030316112,53.19515818017236],[-126.15947486311623,53.195041358359475],[-126.15966467870743,53.194907777207284],[-126.15979061462657,53.19474403159074],[-126.15990341861867,53.19457470163719],[-126.16035318577796,53.194514713445336],[-126.16064267317003,53.194465024428894],[-126.16093216635686,53.19441309392959],[-126.16121411411152,53.19435333030959],[-126.16148382791536,53.194279582389136],[-126.1617459659879,53.1941862330129],[-126.16198928263286,53.19407441798795],[-126.16219222770451,53.19394529627832],[-126.16233225273021,53.19378993592267],[-126.16240936240962,53.193609448551726],[-126.16242836831098,53.1934301611745],[-126.1623967451131,53.19325318395744],[-126.16233794144527,53.19307567929129],[-126.16227913400739,53.19289706316429],[-126.16224470054112,53.19271840464958],[-126.16225620509901,53.19253857177702],[-126.16231082728567,53.19236147629548],[-126.16232514052291,53.19218275095374],[-126.16230570414109,53.19200351612707],[-126.16230968736947,53.191818091562574],[-126.1623305376631,53.19163487567306],[-126.16243305145518,53.19147788133139],[-126.162651002851,53.191354339981274],[-126.16290744616171,53.19124811573631],[-126.16315264143527,53.19114246213117],[-126.1634081740649,53.1910457568299],[-126.16368351768962,53.19097982970022],[-126.16397207747495,53.19093797639046],[-126.16426629374754,53.19090452190076],[-126.16456335101509,53.19087665569397],[-126.16486227646237,53.190851035874374],[-126.16516026723714,53.19082428725473],[-126.16545543544207,53.19079306924992],[-126.16574680785439,53.19075400416127],[-126.16603533327786,53.19070430316787],[-126.16633217875342,53.19062321900348],[-126.16660924206462,53.19051975421044],[-126.16683298449806,53.1904466142713],[-126.16707543587118,53.19036000289582],[-126.16700349541469,53.19018308344838],[-126.16691282340024,53.19001011616722],[-126.16692332710095,53.189821311911636],[-126.16691323503387,53.18963926793582],[-126.16693877857922,53.18946109059505],[-126.1670121377882,53.18928732736903],[-126.16711926749396,53.18911631292478],[-126.16726111764119,53.18895701788221],[-126.16743677360003,53.18881336028252],[-126.16764433167528,53.188678064643156],[-126.16787633506338,53.188561771592795],[-126.16813000002232,53.188473465961344],[-126.16841097930802,53.1884164828108],[-126.16870701348638,53.18837405153896],[-126.16900116117388,53.18832881676886],[-126.16932174890285,53.18833227581302],[-126.16961429494692,53.18835538539405],[-126.16990597222322,53.188393625200064],[-126.17019580987645,53.18844418222073],[-126.17048288206772,53.18850427027964],[-126.17076435358317,53.18856996764892],[-126.17104021773251,53.18863959827951],[-126.17131891821028,53.18871314103539],[-126.17156676801362,53.18880857087592],[-126.17182214284226,53.188910155886056],[-126.17207561227825,53.18900390040541],[-126.1722748572634,53.18913245522761],[-126.17245820641399,53.18927223671318],[-126.1726294082111,53.18941932260075],[-126.17279407766398,53.18957145501546],[-126.1729549906514,53.18972526877266],[-126.17311779460245,53.18987908849967],[-126.17328713783769,53.19002897259438],[-126.17346585381794,53.1901782780374],[-126.17367450544435,53.19031241859104],[-126.1739464058515,53.19032602894273],[-126.1742527285011,53.19027795786714],[-126.17455534597055,53.19023717844559],[-126.17485331936251,53.19020872934723],[-126.17512442300647,53.1902581905144],[-126.17538168526335,53.19035864462049],[-126.17560438665028,53.190486594367975],[-126.17579336773468,53.19062412149388],[-126.17597675463423,53.19076501777669],[-126.17615545992744,53.19090872617333],[-126.17632948121131,53.191054673070916],[-126.17650258081686,53.191202306135615],[-126.17667475171798,53.19134994032258],[-126.1768469111827,53.19149813894036],[-126.17699660283479,53.191649723061246],[-126.17717348973622,53.1918051921406],[-126.17738305818382,53.19193148200886],[-126.17758048644852,53.19206675277644],[-126.17778821404355,53.19219697050112],[-126.17799405538966,53.19232774639921],[-126.17818868498817,53.192463576045654],[-126.17835897468527,53.192610654819646],[-126.17850213918366,53.19277008947825],[-126.17863876197988,53.19293233925849],[-126.17878940932182,53.193087289688194],[-126.17897466491654,53.1932253729117],[-126.17918800110924,53.19334941304861],[-126.17941723223387,53.193465030325505],[-126.17965394523064,53.19357614530916],[-126.17989253679939,53.1936878216359],[-126.1801133365291,53.19380569112059],[-126.18032391398488,53.19394261330774],[-126.18045361692148,53.194020286959834],[-126.18073085699343,53.19396103971661],[-126.18083953783365,53.19372447289444],[-126.18093346429764,53.19354899388297],[-126.18103396443438,53.19337461615509],[-126.18115700102997,53.193209175900364],[-126.18131760904785,53.19306103947768],[-126.18150827429496,53.192926857098065],[-126.18170927457555,53.19279658437504],[-126.1819177726002,53.192669660940105],[-126.18213379595635,53.19254553100101],[-126.18235543971305,53.19242418848648],[-126.18258178409565,53.192304514398145],[-126.18281095426939,53.19218652056592],[-126.18304198786876,53.19206964378649],[-126.18327396511599,53.19195276508737],[-126.18350406623652,53.191835888830745],[-126.18373228883247,53.19171845932034],[-126.18395770049823,53.191599904377526],[-126.18418216356731,53.191480794760125],[-126.18440662537245,53.19136168470957],[-126.18463108591364,53.191242574226116],[-126.18485554519086,53.1911234633097],[-126.18508000320413,53.19100435196039],[-126.18530539232897,53.19088580339395],[-126.18553172752554,53.1907678086187],[-126.18575900879486,53.19065036762943],[-126.18598722366157,53.19053405407786],[-126.18621637205727,53.190418850032934],[-126.18644741146852,53.19030420723377],[-126.18668031928883,53.19019180180289],[-126.18691417324868,53.19007995908715],[-126.18715085548676,53.18997034324231],[-126.18738847384155,53.18986241049651],[-126.18762889561339,53.189754472825456],[-126.18787120841147,53.18964709633387],[-126.18811445479383,53.189540829279416],[-126.18836145693275,53.189436240806934],[-126.18860939523051,53.18933333538279],[-126.18886111174237,53.1892337756059],[-126.18911564672244,53.18913758091105],[-126.18937300514698,53.18904585373371],[-126.1896331996262,53.18895804728696],[-126.18989811498577,53.18887639930556],[-126.1901658565302,53.188799783450264],[-126.1904383015881,53.18872876135961],[-126.19071545764548,53.18866164792734],[-126.19099637489,53.18859733322817],[-126.19128106093827,53.188537493322954],[-126.19156858094244,53.18848100930951],[-126.19185892252281,53.18842844586295],[-126.19215021354167,53.18838035274899],[-126.19244340891423,53.18833562594837],[-126.19273755645936,53.18829593413337],[-126.19303077394646,53.18825960426474],[-126.19332402894493,53.18822831087063],[-126.19361635921959,53.18820150877474],[-126.19390873529802,53.18818478040796],[-126.19420308613246,53.18818990012408],[-126.19450032141992,53.18821238486437],[-126.19479761840667,53.18824494328404],[-126.19509679624721,53.188281988373944],[-126.19539503955055,53.18831790489914],[-126.19569324712555,53.18834598698167],[-126.19604571463753,53.18814709551548],[-126.19623817792424,53.1880112098851],[-126.19633771938346,53.18785026477505],[-126.19636783469609,53.1876726378217],[-126.19636977596336,53.18748665016042],[-126.19641300036194,53.187306195974095],[-126.19646558777343,53.18712684661271],[-126.1965491890368,53.18696368690397],[-126.19668249547942,53.18680493511423],[-126.19682892123188,53.18664895784963],[-126.19698567417493,53.186495203992365],[-126.19714805236931,53.18634199626326],[-126.1973123092481,53.186189914519574],[-126.19747562987985,53.18603670474223],[-126.19763425278452,53.18588294685037],[-126.1977844209838,53.18572696207088],[-126.19792239781214,53.18556820096624],[-126.19803880005503,53.185404429525285],[-126.19811202450073,53.18523064667437],[-126.19816274518645,53.185051855177164],[-126.19821344784393,53.184872507956975],[-126.19828668304369,53.18469816921379],[-126.19839650265726,53.184532167577295],[-126.19851570183687,53.1843678262061],[-126.19864146127286,53.18420515876355],[-126.19877191613864,53.18404304796835],[-126.19890707161015,53.18388260522381],[-126.19904503289922,53.18372271330777],[-126.19918579740566,53.18356282546425],[-126.1993256363468,53.18340405042323],[-126.19946641901008,53.183245282575406],[-126.19960813296858,53.1830870686893],[-126.1997611084295,53.18293219679813],[-126.19992252614398,53.1827806716182],[-126.2000149239651,53.1826970419797],[-126.20008864688543,53.18263137904131],[-126.20025382876302,53.182480402735976],[-126.20042745546054,53.18233333774723],[-126.20062080530761,53.182196887284725],[-126.20083484587002,53.18207271675635],[-126.20106014591525,53.18195469335314],[-126.20129109888961,53.181840021079935],[-126.20152298031242,53.18172534676721],[-126.201751103706,53.18160900228655],[-126.20197169617515,53.18148593888402],[-126.20218655985335,53.18134104167311],[-126.20239761436751,53.1811838262523],[-126.20260589654909,53.18103669871417],[-126.20281338455477,53.18091814664732],[-126.2030211159572,53.18085056717236],[-126.2032285653928,53.1809179906406],[-126.20343277428603,53.1810941063463],[-126.2036294160648,53.1812522994556],[-126.20382032675485,53.181390899706955],[-126.2040075130412,53.18153119112768],[-126.20419281386229,53.18167204120929],[-126.20437813359624,53.18181344667423],[-126.20456905468698,53.18195316605903],[-126.2047618637563,53.18209232614918],[-126.20489303928532,53.18228032512187],[-126.20504543462535,53.18239713784042],[-126.20517363166832,53.18254873338448],[-126.20531696918147,53.182729988427916],[-126.20540405273312,53.182906859290114],[-126.2056045354327,53.18308072780946],[-126.20578486730811,53.183159406692965],[-126.20602043985275,53.183227896738195],[-126.20608087553855,53.183320784071206],[-126.2060794785561,53.18341882521379],[-126.2061128486655,53.18353360275664],[-126.20642038561715,53.1835582804505],[-126.20681374908577,53.1835010099948],[-126.20709365465491,53.18343498250094],[-126.207323638157,53.183316939063296],[-126.20761453684162,53.18319654762193],[-126.20787624572394,53.18305043768744],[-126.20817655888463,53.182942352625254],[-126.20850690695619,53.18284037159276],[-126.20887758515445,53.182746170215566],[-126.20923703999493,53.18265702478021],[-126.20971659580879,53.18259567544027],[-126.21006225162147,53.1825608864466],[-126.21038472632715,53.1825748791518],[-126.21069695515035,53.18260009312589],[-126.21109656445708,53.18267053091874],[-126.21153738471911,53.18273528284184],[-126.21187413083733,53.18279294128475],[-126.2121583971848,53.18284845200583],[-126.2124352133691,53.18291629971713],[-126.21270739123787,53.18299199785297],[-126.21297957292273,53.183068260032535],[-126.21324899937306,53.18315404539375],[-126.21351563879757,53.183245992836866],[-126.21378504400225,53.18333010090686],[-126.21405902773263,53.18339122757879],[-126.2143412562305,53.18341312499152],[-126.21463352850003,53.18338402123269],[-126.2149313156824,53.18333362826565],[-126.21523008883376,53.18329442770922],[-126.21552904197311,53.18328772639244],[-126.2158298687498,53.183283817404316],[-126.21613258776843,53.18328045991316],[-126.21643530898189,53.18328047178265],[-126.21673806236204,53.18328383503169],[-126.217038957962,53.183293367547535],[-126.21733615429332,53.183309628438174],[-126.21763057489969,53.18333430110356],[-126.21791848251195,53.18336962426127],[-126.2181971343417,53.18342456614538],[-126.21846650657997,53.18350025621905],[-126.21873034376875,53.183589965278316],[-126.21899138600541,53.18368415151873],[-126.21925429232454,53.18377610191043],[-126.21952369194291,53.18385627108839],[-126.21980143923909,53.183917933219114],[-126.22009125088847,53.183954932629945],[-126.22038940902543,53.18397622135706],[-126.22069128433489,53.18399134473586],[-126.22099036697523,53.184011518799686],[-126.22130357374219,53.1842204472003],[-126.2215029750486,53.184354521423415],[-126.22170143577425,53.18448915277813],[-126.22189897096115,53.184624350203876],[-126.22209650741038,53.18475954729035],[-126.22228937513707,53.18489643787015],[-126.22247288582106,53.185038938695634],[-126.22263400075485,53.18519717576209],[-126.22280442449859,53.1853458672844],[-126.22302246037768,53.1854569313401],[-126.22329464396435,53.18552700314281],[-126.22358922556953,53.18557855007539],[-126.22387915562757,53.185635142344005],[-126.2241946112456,53.18573426043515],[-126.22445157016463,53.18576066315785],[-126.22460466356553,53.18564328764295],[-126.22472276873539,53.185469403054384],[-126.22479952578374,53.1852726332803],[-126.22482758255873,53.18508603044271],[-126.22482289586027,53.184909582219305],[-126.22479852521319,53.1847314862714],[-126.22476101514255,53.18455285055909],[-126.22471694914653,53.18437367154256],[-126.22467007926706,53.184194497811745],[-126.2246269408288,53.18401476125457],[-126.22459411988697,53.183834996137435],[-126.22457629805488,53.18365576723247],[-126.22457253351074,53.183474835548076],[-126.22457812332216,53.183293321431194],[-126.22458934844956,53.18311123193253],[-126.2245996317563,53.182929708878355],[-126.22460522437683,53.182748759378605],[-126.22460052397318,53.18256950548804],[-126.22458178182903,53.182391954314504],[-126.22454242116471,53.18221724767745],[-126.22447497753451,53.18204595542017],[-126.2243709999089,53.181879213899904],[-126.22424267679584,53.18171644423044],[-126.22410029815289,53.18155537711432],[-126.22395324807323,53.18139543904202],[-126.22381181629558,53.18123436976463],[-126.22368444192153,53.18107158868497],[-126.22355986669464,53.180907690741606],[-126.22343342101671,53.180744351898454],[-126.22329949369939,53.18058382351717],[-126.22315434208417,53.180427241982414],[-126.22299702159295,53.18027460903261],[-126.22283223466574,53.18012478641546],[-126.22266369117355,53.17997609101605],[-126.2224923507891,53.17982852101575],[-126.22232382466562,53.17967982508052],[-126.22215996912473,53.179529435061156],[-126.22199985453551,53.17937736168243],[-126.22184348379,53.179224160669094],[-126.2216880438178,53.17907095769637],[-126.2215223098502,53.17891889415954],[-126.22135939305825,53.178766269398785],[-126.22125263446046,53.17860289126453],[-126.22122545774525,53.178423678854145],[-126.22122545056882,53.178241610199606],[-126.22122918862301,53.17806178428404],[-126.2212394968308,53.17788250179245],[-126.22125167621485,53.177702651107104],[-126.22124979476483,53.1775205948458],[-126.22122162730544,53.17733242101666],[-126.22121974304935,53.17714980004424],[-126.22130041333907,53.17698719193191],[-126.22144581114462,53.176836222401604],[-126.22161746395189,53.17668857369746],[-126.22180882818533,53.17654592511175],[-126.22201614336566,53.17640884828007],[-126.22223379872881,53.17627959444188],[-126.22245806392036,53.176158726266465],[-126.22268988042973,53.17604849170348],[-126.2229479956554,53.17594997581269],[-126.22322589008715,53.175869339450415],[-126.22351325453184,53.17581053677237],[-126.22380171086166,53.17577974124708],[-126.2240959404663,53.175777508690075],[-126.22439684093003,53.17579486522172],[-126.2247006018307,53.175822854848384],[-126.22500436613541,53.175851408369624],[-126.22530621200343,53.17587156626856],[-126.22560326971463,53.17587379721018],[-126.22589270243314,53.175849161393884],[-126.22617639860253,53.175806044797845],[-126.22645817807867,53.175752282933985],[-126.22673802272355,53.175690125606465],[-126.22701596837506,53.17562069315592],[-126.22729199689974,53.1755462174604],[-126.22756614725577,53.17546838353481],[-126.22783934297871,53.17538886572877],[-126.22811159317233,53.17530935807166],[-126.22838292183148,53.1752315276748],[-126.22865144278475,53.17515313739231],[-126.22891335047429,53.17506636078153],[-126.22916959840462,53.17497287215419],[-126.229421128187,53.17487491051669],[-126.22967078861618,53.17477527584814],[-126.22991855572842,53.17467507964142],[-126.23016633056686,53.17457376249577],[-126.23041315968668,53.174472446663934],[-126.23065904001717,53.17437056747733],[-126.2309049280925,53.17426757632243],[-126.23114987039675,53.17416457753179],[-126.23139386394737,53.174061024362814],[-126.23163786516427,53.17395635026978],[-126.23188092065587,53.173851677517646],[-126.23212209476056,53.17374588754799],[-126.23236326460855,53.173639541369425],[-126.23260348252646,53.173532067199446],[-126.23284088646119,53.17342292195058],[-126.23307735348716,53.17331265766228],[-126.23331192720993,53.17320184090554],[-126.2335455608966,53.17308934044922],[-126.23377826071545,53.17297627668534],[-126.2340090641534,53.172862104766686],[-126.23423987821288,53.17274736768644],[-126.23447725798347,53.172635413661425],[-126.23471744624347,53.17252458294633],[-126.23495857459689,53.17241318518818],[-126.23519501487425,53.17230011116106],[-126.23542298864733,53.1721825808517],[-126.23563780906721,53.17205890959097],[-126.23583572199487,53.17192798452721],[-126.23601296403596,53.171787025690676],[-126.23617235109762,53.17163825042859],[-126.23631765250519,53.171482789614785],[-126.2364516810608,53.17132230483785],[-126.23657819411304,53.17115847370938],[-126.23670001635651,53.170992411006026],[-126.23681994247394,53.17082523155258],[-126.2369417628098,53.17065916857022],[-126.2370682657076,53.17049421647076],[-126.23720228512221,53.17033316608196],[-126.23734375194672,53.17016370207211],[-126.2375039878036,53.16999980223182],[-126.23771237921822,53.16990359422763],[-126.23801879263144,53.16990801596665],[-126.23831248093514,53.16998473287169],[-126.23854264717903,53.17009239254976],[-126.23876536090575,53.17021014144981],[-126.23898156909233,53.17033575482562],[-126.23919218848839,53.17046697213148],[-126.23939907411581,53.17060044636974],[-126.23960221638254,53.17073448353346],[-126.23980255021634,53.170867405628776],[-126.23999727077471,53.171004255676024],[-126.24018732804568,53.171143364619],[-126.24037085118877,53.171285283033086],[-126.24055156668847,53.17142888297705],[-126.24072667117035,53.171574179125884],[-126.24088774983663,53.171725670223985],[-126.24103855269966,53.17188109893002],[-126.24119030114772,53.17203652550682],[-126.2413658512017,53.172259127348084],[-126.2415007565317,53.17242074554909],[-126.24163660743284,53.172582370617874],[-126.24177058532581,53.172743990379836],[-126.2418998931888,53.17290674888122],[-126.24201889708606,53.17307120440722],[-126.2421247966138,53.17323792739582],[-126.24221477951447,53.17340804403285],[-126.24228885419598,53.173580433937396],[-126.24235077173644,53.17375564517869],[-126.24240238150342,53.17393200683547],[-126.24244743461416,53.17411005799501],[-126.24248688732744,53.17428924098818],[-126.2425235217724,53.17446842972348],[-126.24256108607058,53.17464761652594],[-126.24260053976617,53.174826799428715],[-126.24264559466313,53.17500485042597],[-126.24269908447128,53.17518176370407],[-126.24275820667145,53.17536034151063],[-126.24282953473221,53.175541699718174],[-126.24292889923437,53.17571236105663],[-126.24310864838812,53.17584475481371],[-126.24336696539481,53.175954023178186],[-126.24366180473355,53.176057613843255],[-126.24388118899387,53.176076208983126],[-126.24417441564886,53.17606103955189],[-126.24447409379503,53.17602849439376],[-126.24477563587227,53.17599425954478],[-126.24507630426655,53.17597235010903],[-126.24537709777651,53.17596948641049],[-126.24568262762917,53.17597669570073],[-126.24599100036997,53.17599062068365],[-126.24629939154097,53.176005100542795],[-126.24660494139373,53.176015668605814],[-126.24690669736401,53.17601840100686],[-126.24719993371814,53.17600770565117],[-126.24748463896887,53.17597910103383],[-126.24775703826532,53.175928113521515],[-126.24801523227242,53.17585307105908],[-126.24826299511723,53.17575843845224],[-126.24850131570696,53.17564925996027],[-126.24873581915911,53.175531125812455],[-126.24896843581845,53.17540851356411],[-126.249201987284,53.175287019278656],[-126.2494411960049,53.1751716703145],[-126.24968796596033,53.17506751786203],[-126.2499460718371,53.174979017576376],[-126.25021644350488,53.17490618534764],[-126.25049531809844,53.17484397381556],[-126.250780805135,53.17478959041003],[-126.2510709990294,53.1747402336462],[-126.2513630829893,53.1746936776348],[-126.25165609584924,53.174647118926345],[-126.25194629110749,53.1745983246875],[-126.25223177798777,53.17454450245043],[-126.25251157677445,53.17448228417773],[-126.25278289202193,53.17441055547702],[-126.25305225527337,53.17432595021304],[-126.25331499534897,53.17422959878913],[-126.253563604141,53.174122064079754],[-126.25379059218962,53.17400450054976],[-126.2539894227423,53.17387690441667],[-126.25413751030962,53.17372813822708],[-126.25423391704163,53.173554269337046],[-126.25429747785361,53.173370943015094],[-126.25434793201875,53.17319213535655],[-126.25437591602675,53.17301393165106],[-126.25438607919996,53.17283408112651],[-126.25439248762775,53.17265312721314],[-126.2544073281013,53.17247326660199],[-126.25444093330418,53.172295050731904],[-126.25447920890558,53.17211570439621],[-126.25452123209767,53.1719363499742],[-126.25457450537007,53.171758091732414],[-126.25464184548315,53.17158316439967],[-126.2547307731484,53.17141323685609],[-126.25485817026573,53.171251060275736],[-126.25502026358599,53.171094975505675],[-126.25519079433526,53.17094111311577],[-126.25534351911608,53.17078561274536],[-126.25545311262744,53.170625158937554],[-126.25549608141718,53.17044692237318],[-126.25546682344486,53.1702565172171],[-126.25536084837944,53.170084759668335],[-126.25518763114005,53.16994900878167],[-126.25497889254336,53.1698267699967],[-126.2547458388466,53.16971187025133],[-126.25450156350136,53.16960035537074],[-126.2542563416851,53.16948828629523],[-126.25402422278292,53.169371142304506],[-126.25381451238914,53.16924330151505],[-126.25362535994901,53.16910365656858],[-126.25343619043905,53.168963455628834],[-126.25322836932749,53.168835054017066],[-126.2529990700984,53.168719578079966],[-126.25276230369515,53.168608608209645],[-126.25252927272227,53.16849538012585],[-126.25231397318497,53.168371474448584],[-126.2521061417282,53.168240274335524],[-126.25189921759578,53.16810514602894],[-126.25169977323104,53.167967195963286],[-126.25151434941517,53.16782474312097],[-126.25134859226333,53.16767944274005],[-126.25123897928673,53.167522254274175],[-126.2512828421967,53.16733561852723],[-126.25135282070947,53.16712931576058],[-126.25152950827905,53.16690710061664],[-126.25133458989959,53.166899107063045],[-126.25109179922217,53.166874417638574],[-126.25080201770142,53.16682741023714],[-126.25052431088888,53.166761338678164],[-126.25025589737233,53.166682357699784],[-126.24999120249907,53.16659832196125],[-126.24972836589659,53.16651148518183],[-126.24946553037246,53.166424647814836],[-126.24920177648666,53.16633949688288],[-126.24893429088246,53.166259390543765],[-126.24866311336335,53.16618601377666],[-126.24838261572152,53.16612329529681],[-126.24809376373909,53.16607236238207],[-126.24780030129307,53.16603264245198],[-126.247491933106,53.16600975901481],[-126.24721558354888,53.16601257720846],[-126.24691301989581,53.166021051451544],[-126.24658603149665,53.166015575230176],[-126.24629820302877,53.16598032145981],[-126.24599537115971,53.165940051866976],[-126.24575237569483,53.165881175123346],[-126.24560900662559,53.165714532458324],[-126.24570553418752,53.16555859600136],[-126.24563599853921,53.16535987304447],[-126.24561246791632,53.165179536779966],[-126.24559361085142,53.16499862611431],[-126.24559631489173,53.1648188000681],[-126.2456412059272,53.16464280341121],[-126.24571701695861,53.164468983355825],[-126.24581062899652,53.164296802399505],[-126.24591268230407,53.164125168501066],[-126.24601473478405,53.163953534498425],[-126.24610648591477,53.16378136608502],[-126.24618042641889,53.16360866993766],[-126.24622718536935,53.16343490986043],[-126.24623085368233,53.16325899857213],[-126.24619514905008,53.1630809283455],[-126.24613602944878,53.162902342093616],[-126.24607128646451,53.162723211763705],[-126.2460187328306,53.162544620734906],[-126.24584291882175,53.162273847728756],[-126.24573420779546,53.162106012522635],[-126.24562644188313,53.16193817524196],[-126.24551775078794,53.16177089548997],[-126.24540811635916,53.16160362654345],[-126.24529754177587,53.16143691515167],[-126.24518323929716,53.16127076708627],[-126.24506051258923,53.16110688611434],[-126.24493497234498,53.16094356654581],[-126.2448131885074,53.16077911865584],[-126.2447026184203,53.160612406632936],[-126.24460234446296,53.16044286771862],[-126.24450112919209,53.160271098798276],[-126.2444055167988,53.160098753523364],[-126.24431833663303,53.15992527034526],[-126.24424427111587,53.1597517600281],[-126.244188943526,53.15957876671826],[-126.2442151137442,53.15940504953053],[-126.24431994493246,53.15923004957864],[-126.24434327421575,53.159052421245285],[-126.24430663568465,53.15887154648774],[-126.2442690683257,53.1586906825815],[-126.24428209619872,53.158514751596286],[-126.24435886214913,53.15834372638395],[-126.2444693522394,53.158176001645685],[-126.24459110291369,53.158009364964265],[-126.24470440544295,53.157841069474436],[-126.2448177103366,53.1576733385399],[-126.24493194344727,53.15750559659562],[-126.2450190007184,53.15733455851795],[-126.24505919546428,53.15715857106887],[-126.2450768940782,53.1569798246648],[-126.24508054393839,53.15679999588433],[-126.24507668239069,53.15661961795248],[-126.24507283259356,53.15643867529195],[-126.24507459090523,53.15625828568795],[-126.24509322998229,53.15607898152157],[-126.2451409097361,53.15590185801022],[-126.2451857652487,53.155723619902126],[-126.24522969453065,53.15554594836451],[-126.24528861895485,53.15536992185105],[-126.24534661699334,53.15519445293403],[-126.24534369855613,53.15501407289453],[-126.2452911555551,53.15483772161186],[-126.24521334529258,53.15466365449972],[-126.24512243639002,53.15449186423489],[-126.24502873238141,53.15432119111991],[-126.24495185977315,53.154148251223695],[-126.24492366287913,53.153967923388336],[-126.24497040659182,53.15379247780873],[-126.24506401309914,53.15362030536512],[-126.24527023883265,53.15349046616895],[-126.24547928377208,53.15336118544153],[-126.24568833071146,53.15323246901634],[-126.24589737632786,53.15310374324957],[-126.24610266469327,53.152973348778715],[-126.24630513658256,53.15284071897733],[-126.24650103079087,53.15270586169339],[-126.24669221392391,53.15256765265616],[-126.24688621294375,53.15242943742285],[-126.24708021069713,53.15229122186095],[-126.24727420064141,53.15215188557185],[-126.24746443660841,53.15201143638842],[-126.24764998632764,53.15186932055465],[-126.24782895841881,53.15172496840171],[-126.24799947666142,53.15157783712922],[-126.24815967647795,53.15142681026997],[-126.24830769140827,53.15127300323084],[-126.2484397473515,53.15111418315374],[-126.24855678849976,53.150950357071345],[-126.24866162360577,53.15078263953871],[-126.24875709131229,53.15061213607117],[-126.24884503807066,53.15043940749643],[-126.24893111951022,53.150265562348274],[-126.24901625625535,53.15009171910726],[-126.24910326855412,53.149918427564145],[-126.24919683798109,53.14974680723436],[-126.24929980299183,53.149577972537315],[-126.24941307744666,53.1494119125597],[-126.24953384610332,53.14924639238],[-126.24965928541441,53.149080306480954],[-126.24979316939942,53.148915887710324],[-126.24993738736002,53.14875591964119],[-126.25009661568414,53.14860320683582],[-126.2502736993876,53.14845998404799],[-126.2504714567735,53.14832903282709],[-126.25068424930721,53.148207021698305],[-126.25090925511014,53.14809057739352],[-126.2511427134979,53.147979725751846],[-126.25138273489698,53.14787165625525],[-126.25162840869011,53.14776693548988],[-126.25187594247404,53.14766276597298],[-126.25212442233307,53.147559158603464],[-126.25237009247932,53.147454436280206],[-126.25261292793333,53.14734692293207],[-126.252850123438,53.147236050917186],[-126.25307792667365,53.14712072580453],[-126.25329632413553,53.14699868891785],[-126.2535025024709,53.14687051998777],[-126.25369834614355,53.14673565034718],[-126.25388761426532,53.14659631281299],[-126.2540712308915,53.146454190537966],[-126.25425203103451,53.146309824219585],[-126.25443282999869,53.146165466576704],[-126.25461550722322,53.14602221605521],[-126.25480288959355,53.14588176062968],[-126.25499684166212,53.14574521667723],[-126.25521050326917,53.1456175842587],[-126.25543170015519,53.14549498153514],[-126.25564348981607,53.14536791704264],[-126.25583087941816,53.14522970074355],[-126.2559891545254,53.145078666806356],[-126.25613333800074,53.144921496368575],[-126.25626815127421,53.14476098478048],[-126.25640013334727,53.14459823832181],[-126.25653399393295,53.14443660804427],[-126.25667441415317,53.144277204205316],[-126.2568289235964,53.144123927420274],[-126.25699751543249,53.1439756661955],[-126.25716796724889,53.14382796536406],[-126.2573374821517,53.14367913692841],[-126.25750699929644,53.14353087292106],[-126.25767651187336,53.143382052938485],[-126.25784696703884,53.14323322168091],[-126.258018353296,53.14308495282341],[-126.25818973835322,53.142936683705464],[-126.25836299832262,53.14278897492178],[-126.25853718931562,53.14264181956309],[-126.25871232631056,53.142495217592725],[-126.25888933819272,53.14234917593751],[-126.25906823180283,53.1422048149935],[-126.25924900023021,53.14206100538488],[-126.25943165032552,53.14191886750767],[-126.25961617874006,53.14177785459613],[-126.25980352915855,53.141637946642945],[-126.2599936935743,53.14150028199878],[-126.26018666846629,53.14136428700371],[-126.26038246881097,53.1412299616111],[-126.26058202693977,53.14109787740913],[-126.26078533931722,53.140967460731865],[-126.26099521196643,53.140837029221956],[-126.2612116332731,53.1407071385984],[-126.26143461364144,53.14057948287794],[-126.26166229535322,53.14045404820569],[-126.26189656143556,53.14033252446257],[-126.26213458403521,53.14021547360449],[-126.2623782692035,53.14010345607466],[-126.26262572481498,53.139998143225334],[-126.2628769810309,53.139899552894136],[-126.26313201834061,53.13980935228787],[-126.26338992658735,53.13972810810197],[-126.26365071289219,53.13965694072432],[-126.26391719166895,53.13960032554442],[-126.26419789932496,53.13957224424662],[-126.2644918682442,53.139568790866576],[-126.26479530827407,53.139582677606306],[-126.26510443620367,53.139607755035655],[-126.26541640532439,53.13963674227662],[-126.26572742060246,53.13966405468759],[-126.26603369117137,53.13968241358053],[-126.26633238823716,53.13968510283253],[-126.26662063439039,53.13966485072811],[-126.26690955482132,53.1396042522688],[-126.26718232167475,53.13950503952404],[-126.26741092082922,53.13937903586272],[-126.26757011108911,53.13923582668744],[-126.26767395914605,53.13907537148775],[-126.26774308775798,53.1389015496958],[-126.26779529528544,53.13871935850118],[-126.26784656301562,53.13853549324039],[-126.26791283489499,53.138355519920815],[-126.2680081935265,53.138184435072404],[-126.26811011524933,53.13801614079383],[-126.26821390861042,53.13784784216683],[-126.26831862987733,53.13767954132663],[-126.26842429759672,53.1375118029218],[-126.26853090460216,53.13734349757998],[-126.26863749930541,53.13717574788223],[-126.26874503691637,53.137008004892294],[-126.26885352089413,53.13684081536629],[-126.2689619890364,53.13667362575929],[-126.2690713964195,53.136505869205855],[-126.26918080652436,53.13633867722085],[-126.26929115944205,53.13617148297112],[-126.2694014965097,53.136004288636975],[-126.26951185127788,53.13583765883564],[-126.26962218660502,53.13567046426464],[-126.26973253603991,53.135503269541125],[-126.2698428696251,53.135336074733196],[-126.26995322085932,53.13516943549506],[-126.27006355270402,53.13500224045032],[-126.2701738986563,53.13483504525294],[-126.27028422875912,53.134667849971315],[-126.27039362933026,53.13450065669387],[-126.27050302903787,53.13433346329975],[-126.27061149567857,53.13416571619055],[-126.2707199500334,53.13399852472316],[-126.27082841490025,53.13383076842058],[-126.2709368675415,53.13366357672327],[-126.27104438713242,53.13349583131587],[-126.27115284942752,53.13332807466888],[-126.27126129950146,53.13316088262734],[-126.27136976013747,53.132993134713516],[-126.27147820849795,53.13282594244189],[-126.2715847951417,53.132658189633005],[-126.27169043021918,53.1324893274333],[-126.27179419581634,53.13232102514832],[-126.2718979533983,53.132151602346774],[-126.27199983796186,53.131982183743126],[-126.27210172171054,53.131812765035775],[-126.27220453324249,53.13164334408783],[-126.27230736250135,53.13147447872361],[-126.27241204817943,53.13130561794029],[-126.27251675157486,53.13113731273751],[-126.27262425844137,53.130969556695],[-126.27273456880755,53.13080235876846],[-126.27284677262458,53.13063627678122],[-126.27296270846634,53.1304707507535],[-126.27308146622603,53.130306329544155],[-126.27320492168641,53.13014358247126],[-126.27333210906446,53.1299813913246],[-126.27346211468317,53.12981974924095],[-126.27359398051378,53.12965641757138],[-126.27372678526474,53.129492527832504],[-126.2738633181538,53.12932862929546],[-126.27400267281638,53.12916584447501],[-126.27414765348165,53.12900473155801],[-126.27429639159269,53.128845841626344],[-126.2744526349321,53.128689739629834],[-126.27461451867383,53.128537550297516],[-126.2747848655425,53.128390378515256],[-126.27496365692785,53.12824766855791],[-126.2751518471827,53.12811109432999],[-126.27535036854361,53.12798122727744],[-126.27556018664714,53.12785916760237],[-126.27578220419655,53.12774324594277],[-126.2760164248084,53.12763401795567],[-126.27625911218718,53.12753037186719],[-126.27651118393344,53.127430629318575],[-126.27676889602678,53.12733479004803],[-126.27703131267307,53.12724173578157],[-126.27729746816811,53.12715035728613],[-126.27756457702719,53.12706066107355],[-126.27783262816767,53.12697095307383],[-126.27809878393991,53.12688013744939],[-126.27836120592025,53.1267887653095],[-126.27861984943605,53.126694595924],[-126.27887192905887,53.12659764484814],[-126.27911556545799,53.12649679612802],[-126.2793497927469,53.12639092270289],[-126.27957276892796,53.12628002898168],[-126.27978069439322,53.126160215953625],[-126.27994635607249,53.12601752928296],[-126.28007163717956,53.12585364981081],[-126.2801659306876,53.12567583372906],[-126.28023677275073,53.125491359498724],[-126.28029265029508,53.125306355973464],[-126.28034293746428,53.12512752354246],[-126.28037078781169,53.12495042939009],[-126.2803723982794,53.12477060082328],[-126.2803590339341,53.124588557910556],[-126.28034191108233,53.12440653285049],[-126.28033229440847,53.12422504571249],[-126.2803423394423,53.12404575281503],[-126.28038235589709,53.123869750144],[-126.28045513623819,53.12369591061518],[-126.28054946416447,53.12352426077523],[-126.2806597128483,53.123353128795536],[-126.28077931214463,53.1231831038913],[-126.28090172933926,53.12301362788928],[-126.28101947358222,53.12284416284605],[-126.2811269146265,53.122674722159395],[-126.28121750145647,53.122504201002485],[-126.28128280754505,53.12233317519117],[-126.28131909728411,53.12216054218452],[-126.28132168417237,53.121986313157805],[-126.28130181012133,53.12181212857883],[-126.28126133982087,53.121636881495604],[-126.28120496763921,53.12146166323161],[-126.28113641860249,53.12128591813777],[-126.28105850791233,53.12110963950241],[-126.28097590739085,53.120932807243946],[-126.28089145452424,53.120756535046944],[-126.2808097950342,53.12057914467035],[-126.28073375493726,53.12040229661689],[-126.28066707381596,53.12022542628694],[-126.28061441947831,53.1200479579207],[-126.28056551650143,53.11986936914336],[-126.28051939902446,53.119688523888634],[-126.28048169314077,53.119507102912465],[-126.28045710768939,53.11932621548976],[-126.28045031012638,53.119147517766486],[-126.28046786956861,53.11897268826358],[-126.28055099438487,53.11880666668958],[-126.28070809856366,53.11864943293427],[-126.28086895230703,53.11849106961254],[-126.28096890400897,53.11832276685519],[-126.28103792926504,53.11814893532158],[-126.28109665294976,53.117972887346326],[-126.28114695048923,53.11779518318523],[-126.28118973892921,53.11761636744094],[-126.28122692365768,53.11743700925316],[-126.28126129702733,53.117258222421675],[-126.28128256190678,53.11707833734412],[-126.28128789262807,53.11689569353997],[-126.2812857447871,53.11671194707042],[-126.28128358574061,53.116528765308566],[-126.281290813982,53.11634779310735],[-126.28131583619084,53.11617014882958],[-126.28136521713913,53.11599691935366],[-126.28144738194037,53.115829778697496],[-126.28156328468158,53.11566815982133],[-126.28170728069898,53.1155120760748],[-126.28187189896546,53.11535930429113],[-126.28204869532985,53.115209864526776],[-126.28223111598872,53.11506209619634],[-126.28241167511095,53.114916008190235],[-126.28259036903184,53.114771044788924],[-126.28279436698737,53.114633298951574],[-126.28301431559746,53.11450112572485],[-126.28323426654948,53.114369507807524],[-126.28343735102561,53.11423456858568],[-126.28360856419363,53.11409129768268],[-126.28373198828248,53.11393694578247],[-126.28380947628801,53.11377093492072],[-126.28386540158478,53.113599929304996],[-126.2839035259625,53.113424493596995],[-126.28392853171212,53.11324628378271],[-126.2839413584325,53.11306474187581],[-126.28394762034891,53.112882095275246],[-126.28394826069879,53.11269834171681],[-126.28394889726009,53.11251402344701],[-126.2839514089181,53.11233026535643],[-126.28397429964748,53.11197727192114],[-126.2839571963472,53.111797486905196],[-126.28393446429843,53.11161770642289],[-126.28390987241049,53.1114373746463],[-126.28388433761084,53.11125704511083],[-126.28385880302842,53.111076715551484],[-126.28383606806214,53.11089637924788],[-126.28381802267536,53.110716596366544],[-126.28380559488272,53.11053735571868],[-126.28380159894567,53.1103586505505],[-126.28380695175589,53.11018105232741],[-126.28382542172763,53.11000397833595],[-126.28388131947881,53.109829611081274],[-126.28397093215504,53.10965796839159],[-126.28407925236587,53.109487965809635],[-126.2841903859118,53.109317947384135],[-126.28428935966231,53.109147402337044],[-126.28437895806313,53.108976324001475],[-126.28446762006439,53.108804118427685],[-126.28455535331213,53.10863192396801],[-126.28464214272815,53.10845972273368],[-126.28472798465135,53.108286967959806],[-126.28481477272004,53.108114775528584],[-126.28490250307063,53.107942571781045],[-126.28499208891758,53.107770372440484],[-126.28508262455102,53.107599282202244],[-126.28517597365237,53.107428194053156],[-126.28527118560632,53.10725821279624],[-126.28537108960312,53.10708934952485],[-126.28547381439364,53.10692159081893],[-126.28558121237326,53.10675438542034],[-126.28569610131882,53.10658828224653],[-126.28582035220948,53.10642327675244],[-126.28595677159585,53.10626048256306],[-126.28610445766263,53.10610158696638],[-126.28626620949886,53.10594881506653],[-126.28644016356249,53.10580329176626],[-126.28662821726428,53.10566670652405],[-126.28682937440563,53.10553120065723],[-126.28704081696591,53.10539399327658],[-126.28726349583268,53.105260684236235],[-126.28749841061456,53.10513742004017],[-126.28774465653632,53.10502982296874],[-126.28800414655106,53.10494403729239],[-126.28827599490296,53.104886232013996],[-126.28855828561713,53.10485192995128],[-126.28884435980525,53.10482377593116],[-126.28913327466829,53.10480178119623],[-126.28942503379095,53.10478426056875],[-126.28971963726205,53.10477121402785],[-126.29001706640263,53.10476208585788],[-126.2903154463805,53.1047563069744],[-126.2906157314616,53.10475332824751],[-126.29091788789415,53.10475258504186],[-126.29122006698077,53.10475296145267],[-126.2915241097937,53.10475445293974],[-126.29182817148313,53.10475650830236],[-126.29213221817243,53.104758553956536],[-126.29243627219181,53.104759487329346],[-126.29273937544971,53.104759292866376],[-126.29304246327685,53.10475686573835],[-126.29334366451758,53.10475219266143],[-126.29364390334514,53.104744724577245],[-126.29394225889223,53.104733343337756],[-126.29424153444747,53.10472082964634],[-126.29454267308529,53.10470719907332],[-126.29484379201686,53.10469076218748],[-126.295143012402,53.104670403234806],[-126.29543937176007,53.104643336967555],[-126.2957310099447,53.10460899439199],[-126.29601604019498,53.104565139376945],[-126.29629346925663,53.10450674590044],[-126.29656046183297,53.10442652478744],[-126.29681705290315,53.10432952250291],[-126.29706231960124,53.104220778952836],[-126.29729538813388,53.10410590759384],[-126.29751719825325,53.1039865823183],[-126.29772772247577,53.10385888617986],[-126.29793166519735,53.10372559504955],[-126.2981318301385,53.103589516448885],[-126.29833200485132,53.1034528817297],[-126.29853311805319,53.103317920475035],[-126.29874081016584,53.1031885444694],[-126.29895697498789,53.10306586933601],[-126.29918443115578,53.10295268453038],[-126.29942600452885,53.10285067694602],[-126.29967413316325,53.10275088417032],[-126.2999278931483,53.10265388217515],[-126.3001863415689,53.10255967331927],[-126.30044949334835,53.102468248570936],[-126.30071548958269,53.1023812977803],[-126.30098618624625,53.10229881620317],[-126.30125878457397,53.10222081094084],[-126.30153516347858,53.102148397635084],[-126.30181251724544,53.10208270387118],[-126.30209272780735,53.10202316012844],[-126.30237298955595,53.10197090297512],[-126.30265802322536,53.10193095785545],[-126.30295347469257,53.10191003295011],[-126.30325463864807,53.10190310272317],[-126.30356054834387,53.10190679930905],[-126.30386930796757,53.10191552530832],[-126.30417714787598,53.10192538227897],[-126.30448214995218,53.101931875452635],[-126.3047814872238,53.10193110401949],[-126.30507324836778,53.10191747071831],[-126.30535459101706,53.1018870479352],[-126.30561320320926,53.101815791399645],[-126.3058386872994,53.101691958975444],[-126.30603779226786,53.10154242411175],[-126.3062163126439,53.10139238648194],[-126.30635174197474,53.10123405241363],[-126.30645244735824,53.10106124237895],[-126.30656817388942,53.100893995522625],[-126.30673548907984,53.10074733848418],[-126.30691966061323,53.10060344302892],[-126.30711508409149,53.100463444088504],[-126.30731990075496,53.10032901366812],[-126.30753600991876,53.1002040817943],[-126.30776249315646,53.100092012144614],[-126.30801439678714,53.10000172008155],[-126.30830301493793,53.0999427042856],[-126.30860489615165,53.09990885877252],[-126.30890037957069,53.09989464154514],[-126.3091978724657,53.09989946595445],[-126.30949731798563,53.099915488992366],[-126.30979771891255,53.09993319392319],[-126.31009711979326,53.09994304860811],[-126.31039453113756,53.0999366657305],[-126.31068901380982,53.09991460351547],[-126.31098344953813,53.09988414180275],[-126.3112759579163,53.09984807322131],[-126.3115684561278,53.09980865155681],[-126.31186093467566,53.099768664511586],[-126.31215344413606,53.099730917557295],[-126.31244784189528,53.099697646682664],[-126.31274230374632,53.09967109759949],[-126.31303963005958,53.09965350379038],[-126.31333888067117,53.09964318257078],[-126.31363909636242,53.09963790453663],[-126.31394122258934,53.09963598201359],[-126.3142433504314,53.09963629961303],[-126.31454455038322,53.0996366189094],[-126.31484573369916,53.09963469658358],[-126.31514502544547,53.099629981891404],[-126.31544240048903,53.09961910460197],[-126.31573785870167,53.099602064729595],[-126.31602950421639,53.099575514971725],[-126.31631733263113,53.09953889066086],[-126.31660040334278,53.099490518150255],[-126.3168796373634,53.09943150648975],[-126.31715508119302,53.099364096479846],[-126.31742766029039,53.09928997978054],[-126.3176992619342,53.09921137431066],[-126.31796899006576,53.099130541313976],[-126.31823963657351,53.099048575808844],[-126.31851029469388,53.098968294803214],[-126.31878377566181,53.098891366908916],[-126.31905824063647,53.09882003797139],[-126.3193374395924,53.098755418303625],[-126.31962044017389,53.09870087174578],[-126.31990819191846,53.09865527525148],[-126.3202006865315,53.0986175083591],[-126.32049789225802,53.098585330219166],[-126.32079701062675,53.09855874839213],[-126.32109894844369,53.09853496375577],[-126.32140184995635,53.09851397237137],[-126.32170475538571,53.09849353594248],[-126.32200672843364,53.09847254553289],[-126.32230774560692,53.0984498807629],[-126.32260499970927,53.098424419887216],[-126.32289847792367,53.09839448677456],[-126.32318816732045,53.0983583963296],[-126.32347124577652,53.0983150448157],[-126.32374866665008,53.09826386496079],[-126.32401663712307,53.098202070555374],[-126.32426385137623,53.09811511785112],[-126.32448935562965,53.09800357429964],[-126.32469880884804,53.097873582474655],[-126.3248997687182,53.09773297380587],[-126.32509883514886,53.09758957334152],[-126.32530353792552,53.09744950940509],[-126.32551862150257,53.097320629990776],[-126.32575064506561,53.097207380847074],[-126.32599017787807,53.09709579568552],[-126.3262362621427,53.09698587710449],[-126.32648705729711,53.09688153828456],[-126.32674541783577,53.096786150589324],[-126.3270094820979,53.096704747711584],[-126.3272802340148,53.096640688248],[-126.3275614844421,53.09660293417643],[-126.32785886972006,53.0965965073437],[-126.32816481262977,53.09660910369291],[-126.32847455532661,53.09662729095234],[-126.32877955781598,53.09663821212792],[-126.329074099273,53.09662786408325],[-126.329353429567,53.0965839530817],[-126.32961940604837,53.09650869702481],[-126.32987491771856,53.096409949029756],[-126.330120042595,53.096297775089276],[-126.33035576335514,53.0961811540681],[-126.33057554648923,53.09605896591607],[-126.3307727021304,53.095913875867495],[-126.33096139821741,53.09576265115341],[-126.33115671992623,53.09562260312568],[-126.33137378090588,53.09551275501376],[-126.33162769667862,53.09545041787423],[-126.33191751204849,53.095433917960534],[-126.33222814045733,53.09544761107423],[-126.33254167027263,53.09547249974295],[-126.33284392688729,53.09549293751538],[-126.33314448220247,53.095532982764915],[-126.33344417905442,53.09558367846244],[-126.33373815025081,53.09561982367406],[-126.3340214997227,53.09561454139671],[-126.3342942107269,53.0955639146458],[-126.33456016493943,53.095485850794816],[-126.3348203588009,53.095390995853144],[-126.33507768669801,53.09528774057067],[-126.33533316057758,53.095186739850256],[-126.33559151302133,53.09509412931714],[-126.33585643479918,53.095005416650125],[-126.33612415827969,53.09491726012233],[-126.33638718511179,53.09482575498611],[-126.33663893421867,53.09472755865518],[-126.33687283947718,53.094619328553826],[-126.33708137265084,53.0944971691495],[-126.33725984704131,53.09435884407527],[-126.33741295386356,53.09420714568895],[-126.33754916414854,53.094045967001456],[-126.33767783632322,53.09387977211281],[-126.3378065224532,53.09371357702566],[-126.33794457631933,53.09355128106739],[-126.33809954535074,53.093397335471245],[-126.33827515391198,53.09325341467694],[-126.33846390076225,53.09311337309184],[-126.3386638900186,53.09297778975969],[-126.33887328992084,53.09284777240526],[-126.33909207512511,53.09272389472567],[-126.33931653468643,53.09260616732523],[-126.33955134462484,53.092497364431985],[-126.33980212090506,53.09239804351193],[-126.34006514667335,53.09230933561675],[-126.34033668112701,53.092231242476025],[-126.34061296861425,53.09216377485774],[-126.34089305918233,53.09210414777536],[-126.34117785351019,53.092048979306654],[-126.34146550083662,53.091998848439566],[-126.34175504953605,53.09195263744945],[-126.34204649961023,53.09191033735952],[-126.34233891436587,53.091870830412915],[-126.34263040855934,53.09183413103246],[-126.34292480460873,53.09181031224254],[-126.34322499873655,53.09180775559021],[-126.34352524147255,53.091813050193906],[-126.34382371510436,53.091828989038156],[-126.34412318483841,53.09185332317147],[-126.34441879128269,53.09186254612312],[-126.34471037017911,53.09183649018013],[-126.34499703726344,53.09178242747375],[-126.34527800249658,53.09171549995601],[-126.34555143836417,53.09164467666439],[-126.34582109259424,53.091567132095626],[-126.34608884226773,53.091487360532575],[-126.34635660582376,53.09140757935206],[-126.34662719401643,53.09133115960822],[-126.34690157237111,53.09126088614568],[-126.34717973643852,53.09119620320512],[-126.34745978839415,53.091133754969036],[-126.34774079016263,53.09107409993126],[-126.34802368574319,53.09101556806487],[-126.34830657470884,53.09095814703038],[-126.34859041021474,53.09090128723304],[-126.34887424495946,53.090844426752135],[-126.34915714666843,53.090787012595264],[-126.34944003722786,53.0907301535369],[-126.34972294657452,53.0906738494889],[-126.35000772446855,53.09061922439378],[-126.3502934582053,53.09056628094396],[-126.35057917262947,53.090511086977294],[-126.35086487244189,53.09045421615398],[-126.35115344942818,53.090405179292866],[-126.351443097396,53.09037351012188],[-126.35173859750049,53.09037094576936],[-126.35203709099645,53.090391910346],[-126.35233564160312,53.09041791157904],[-126.35279423942903,53.090460241232144],[-126.35308663323754,53.090422392831535],[-126.3533809305024,53.090386778929634],[-126.35367142954199,53.09034612911586],[-126.35395527717426,53.090292061971184],[-126.35423060738705,53.090225129918885],[-126.35450211554061,53.09015036547602],[-126.35477077785922,53.09007000665411],[-126.35503576882341,53.08999805720315],[-126.35530998380676,53.08991095770728],[-126.35555508370946,53.08980825874973],[-126.35580488832615,53.08971002694419],[-126.3560584606231,53.08961514462643],[-126.35632239570282,53.089530314640676],[-126.35659193207599,53.08944267048969],[-126.35686522117572,53.089358366797114],[-126.35714238747629,53.089288625681654],[-126.35742256793434,53.0892446363951],[-126.35771054560446,53.08923816270948],[-126.35801005237434,53.08926807280492],[-126.35830603663004,53.08932375442464],[-126.35858345609476,53.08939574278173],[-126.35885063924735,53.089474484328875],[-126.35911601078269,53.089558277325395],[-126.35937861311061,53.08964711573176],[-126.35963565310745,53.08974157277765],[-126.35988619291423,53.08984220710274],[-126.36012744963041,53.08994903619211],[-126.36035660007884,53.09006262445853],[-126.36057365379834,53.09018409240081],[-126.36077862576863,53.09031344003853],[-126.36097524241472,53.09044897984346],[-126.36116627239653,53.09058900926052],[-126.36135451994531,53.09073073203951],[-126.3615418458666,53.09087302204206],[-126.36173287962947,53.091013050509346],[-126.36192856464312,53.09114914729267],[-126.36213355023284,53.09127905720552],[-126.36234968755667,53.09140052464459],[-126.36257977531814,53.091511864757884],[-126.3628247213839,53.091612509967426],[-126.36307897809327,53.091706412276096],[-126.36334065934186,53.09179524466551],[-126.36360421260851,53.09188238554552],[-126.36386775684043,53.09197009057552],[-126.36412760515843,53.09206116777894],[-126.36437814052358,53.092158440126035],[-126.36462590293097,53.092258517158974],[-126.36487274841602,53.09235971695936],[-126.36511958011583,53.09246091628458],[-126.36536549004518,53.09256267368901],[-126.36561048315312,53.09266556283741],[-126.36585545761442,53.09276788682252],[-126.36610045789466,53.092871330675315],[-126.36634451178236,53.09297421224087],[-126.36658857661787,53.093078222687424],[-126.36683263776558,53.093181667928384],[-126.36707670491478,53.093285668391154],[-126.36731983062026,53.093389680237266],[-126.36756297240457,53.09349368256712],[-126.36780704321855,53.09359769046669],[-126.36804646552834,53.09370562945533],[-126.36827939356793,53.0938186257699],[-126.3685141836866,53.09393050432205],[-126.36875732666839,53.09403394843108],[-126.36901343240959,53.0941239060774],[-126.36928345844876,53.094200374186336],[-126.36955904817377,53.09427122199492],[-126.36983840424097,53.09434485403568],[-126.3700899333482,53.09444490778176],[-126.37034517533293,53.09454158798473],[-126.37059111480329,53.09464389909001],[-126.37081286591182,53.09476085151644],[-126.37099738887069,53.094898653326005],[-126.37115586261659,53.09505221408073],[-126.37131248665875,53.095208030301464],[-126.37148866691948,53.09535313601679],[-126.37167415183688,53.09549428612073],[-126.37185872009017,53.09563656823044],[-126.37204423227473,53.0957788381092],[-126.37222972586096,53.0959205520015],[-126.37241801933321,53.096060580570175],[-126.3726100404339,53.096198911913696],[-126.37280578429024,53.096334990283395],[-126.37300710669105,53.096467124638835],[-126.37321495050058,53.09659532093859],[-126.37342929088744,53.09671845877161],[-126.37365014252336,53.09683820529555],[-126.37387752543388,53.09695513408458],[-126.37410862619323,53.09706925400687],[-126.37434531534588,53.09718055015314],[-126.37458666013939,53.0972884697002],[-126.37483077985047,53.097393574330845],[-126.37507861242366,53.09749531426941],[-126.37532921985532,53.097594239253844],[-126.37558260715535,53.09768922879568],[-126.37583783654141,53.097780859532584],[-126.37610048506947,53.09786517866731],[-126.37637055264798,53.097942186151414],[-126.3766461785344,53.098013017283236],[-126.37692551187817,53.098079918837485],[-126.37720670673762,53.09814568437199],[-126.37748697963734,53.09821201689193],[-126.37776445986528,53.09828059858376],[-126.37803636887847,53.09835367926458],[-126.37830085603416,53.09843350580611],[-126.37855607576758,53.09852288978829],[-126.3787899411421,53.09863082468386],[-126.37900618865307,53.098755057725256],[-126.37921223118599,53.098887731002],[-126.37941827006914,53.099021524380376],[-126.37963267083295,53.09914801206201],[-126.3798787698581,53.09926262822054],[-126.38013606947334,53.0993744022231],[-126.38035323243517,53.09949471271879],[-126.38043595440675,53.099645152131544],[-126.38041339893739,53.09984186002015],[-126.38039423303105,53.099999350033706],[-126.38039167562779,53.100026249169325],[-126.38027964259948,53.10015546191001],[-126.38001558383795,53.10022857597597],[-126.37970645009496,53.10028391595042],[-126.37943780538755,53.1003682479872],[-126.37921813076417,53.1004894062533],[-126.37901166051343,53.10062283778896],[-126.37880046948202,53.10075069077315],[-126.37855627047027,53.10084950832374],[-126.37826390754597,53.100898068051926],[-126.3779675226048,53.10091358205151],[-126.37766728601541,53.100918458822754],[-126.37735501636136,53.100936827652944],[-126.377030109053,53.10100676786502],[-126.37701161389518,53.101135123257066],[-126.37704780573361,53.10131371564181],[-126.37716993152584,53.101476356447115],[-126.37730980368922,53.101636690599065],[-126.37745715038601,53.1017958892172],[-126.37760353524291,53.10195284084404],[-126.37775739465815,53.10210697174205],[-126.37791590992522,53.10225941134761],[-126.37807442625228,53.10241184176407],[-126.37822827407827,53.10256597205712],[-126.37837280861247,53.102722937564636],[-126.37850799976624,53.10288272945252],[-126.37863574332965,53.1030447859351],[-126.37875974606791,53.10320853045066],[-126.37888189886603,53.103372845461465],[-126.37900403764368,53.103537160378636],[-126.37912805324217,53.103700348686125],[-126.3792380954977,53.10387086909984],[-126.37937328354712,53.104029539474965],[-126.37957186402062,53.10416167105503],[-126.37977603864374,53.10429322857957],[-126.37998395639454,53.10442309751842],[-126.38019744818233,53.104550142548376],[-126.3804156009815,53.104674366578074],[-126.38064027578446,53.10479465210226],[-126.38087049950293,53.10490931706088],[-126.38110816293789,53.10501723487553],[-126.38134953443519,53.10512289934547],[-126.38159280318266,53.10522967764701],[-126.38183606327397,53.105337020180876],[-126.38208121048744,53.10544434714865],[-126.38232727693801,53.10555055914513],[-126.38257613855991,53.105656196873994],[-126.38282591907881,53.10575902549175],[-126.3830784946569,53.10585961258415],[-126.38333289701526,53.105956822895244],[-126.38359007912528,53.106050106541595],[-126.38384908778771,53.10613834614954],[-126.38411179387734,53.10622152666531],[-126.38437725912657,53.1062985306646],[-126.38464639658494,53.10636936412208],[-126.38491827273558,53.106431789151316],[-126.3851975218104,53.10648185561093],[-126.38548506638631,53.10651733746653],[-126.38577904553676,53.10654102841175],[-126.38607761858863,53.10655629576166],[-126.38637988258951,53.10656427184668],[-126.38668491513722,53.10656887675128],[-126.38699086556471,53.10657235741334],[-126.38729589823696,53.10657696074143],[-126.38760003366694,53.10658492757692],[-126.38790047365173,53.10659962846108],[-126.38819632068765,53.10662275152775],[-126.38851196528826,53.106661486142784],[-126.38876780394214,53.106709389176444],[-126.38904162619896,53.10677907678684],[-126.38930902640718,53.106861665614574],[-126.38957273752243,53.106951553405885],[-126.3898355423115,53.10704368449823],[-126.39010018838732,53.10713244757737],[-126.39036757745149,53.10721335785108],[-126.39064230787929,53.107280242109965],[-126.39092436274963,53.10732804488601],[-126.39121652083651,53.10735621015189],[-126.39151602400155,53.10736922876942],[-126.3918191762361,53.10737214151449],[-126.39212228191474,53.107370016090314],[-126.39242257867657,53.10736846391998],[-126.39272099845552,53.10736466735693],[-126.39301935650825,53.1073558326986],[-126.39331675519087,53.10734363912604],[-126.39361508116512,53.1073297655228],[-126.39391339713963,53.10731644694289],[-126.39421174873416,53.1073053683927],[-126.39451012691339,53.10729877080433],[-126.39480950020157,53.10729777139435],[-126.39510891524819,53.10730125289091],[-126.39540650624853,53.107309777278125],[-126.39577653917195,53.10736064452365],[-126.39598942186812,53.10711455284111],[-126.39617709149815,53.10697386766001],[-126.39638070353054,53.10683816626278],[-126.39657870566036,53.10670137183123],[-126.39674949010853,53.10655626053169],[-126.39687804154681,53.10639784533948],[-126.39697658119096,53.106230002451525],[-126.39705445560637,53.10605495041658],[-126.39712014903424,53.105877142582294],[-126.39718117178084,53.10569934142089],[-126.39723470032199,53.10552213009899],[-126.39726012593918,53.10533941091448],[-126.39728179439304,53.105156704331634],[-126.3973306728641,53.10498174944122],[-126.39743673341677,53.104818371514355],[-126.39759991309555,53.10466151512645],[-126.39780534367162,53.104521887825335],[-126.39803632759171,53.10441299105602],[-126.39830806428392,53.10435941446973],[-126.39861567050197,53.10434157081034],[-126.39891757314452,53.10431254106417],[-126.39920238443173,53.104258353582296],[-126.39948339948211,53.104196899773925],[-126.39976439350984,53.10413488961876],[-126.40001744322066,53.104084168927145],[-126.4000482481448,53.10407790666901],[-126.40033596027712,53.1040332349589],[-126.40062844133269,53.10399751001212],[-126.4009209281197,53.103964025227256],[-126.40121533215664,53.10393389457038],[-126.4015106796323,53.103905436172695],[-126.40180697601679,53.10387922368118],[-126.40210329754443,53.10385412185007],[-126.40239960911377,53.10382958401731],[-126.40269594595031,53.10380616580816],[-126.40299133422972,53.10378219434328],[-126.40329042130686,53.1037537187401],[-126.4035904200036,53.10372356306677],[-126.40389049199246,53.10369957335912],[-126.40418785121355,53.10368623199651],[-126.40448163944366,53.103690829370926],[-126.4047700289216,53.10371785358554],[-126.40505300399433,53.10376561957083],[-126.40533424812563,53.10382796568263],[-126.4056127541575,53.103898154736555],[-126.40589129761942,53.103970592878156],[-126.40617166038898,53.10403909804138],[-126.40645382403503,53.10409863271538],[-126.40673690029362,53.10415647841354],[-126.40701997741078,53.10421433239526],[-126.4073048992933,53.10426937372678],[-126.40759071216068,53.10432048522933],[-126.40787928581547,53.104365993209186],[-126.40817059305354,53.104403083159774],[-126.408465535939,53.10443063148967],[-126.40876232736262,53.104454255585246],[-126.40905909878711,53.10447732326037],[-126.40935588541564,53.10450038117506],[-126.40965263583229,53.10452120652638],[-126.40994845308408,53.104541469660624],[-126.41024522980287,53.10456340492522],[-126.41054199194788,53.104585348459665],[-126.41083603136126,53.104615134928146],[-126.41113010926202,53.10464884660376],[-126.41142422025156,53.10468591879611],[-126.41171373259466,53.10473029370799],[-126.41199494927784,53.104788133310514],[-126.4122725065488,53.1048543928951],[-126.41254728894606,53.10492458758378],[-126.41282024347551,53.10499758467083],[-126.41309227780584,53.105072825251646],[-126.41336431852064,53.105148620929576],[-126.41363634936337,53.10522330452573],[-126.41390837013756,53.10529685811371],[-126.41418224104474,53.10536817264947],[-126.4144588570283,53.105433865693456],[-126.41475657586783,53.10545635105698],[-126.41504697012836,53.105495112452715],[-126.41533283207016,53.105547890253185],[-126.41561684170503,53.105604035237505],[-126.41590085606794,53.10565905906978],[-126.41645449620624,53.105734977051625],[-126.41674869648948,53.10577987888036],[-126.4170169346491,53.10584840109771],[-126.41723972170323,53.1059557432756],[-126.41742260625169,53.106096830585294],[-126.41758600980626,53.10625535793576],[-126.41775035758732,53.106413881713834],[-126.41793511137959,53.10655440585693],[-126.41816070904387,53.10666229208634],[-126.41842908229644,53.10674370031273],[-126.41872249085532,53.10680148077199],[-126.41902223110185,53.10683795840851],[-126.41931519950852,53.1068526059801],[-126.41960974360934,53.1068358745335],[-126.4199078481482,53.10680232290138],[-126.42020598379868,53.10677044660327],[-126.42050428746144,53.106757060921694],[-126.42080273385291,53.106756563678466],[-126.42110215271174,53.106760535069164],[-126.42140067877995,53.10676955540803],[-126.42169927014436,53.10678362128452],[-126.42199602582852,53.106802730520556],[-126.42229189275612,53.10682575929379],[-126.42258777680381,53.10685047242872],[-126.42288275550492,53.106877428970265],[-126.42317773643481,53.106906069931334],[-126.42347274947609,53.10693638624143],[-126.42376683667908,53.10696838133405],[-126.42406092997497,53.10700094038299],[-126.42435409757388,53.10703518718686],[-126.42464728618201,53.10706998893441],[-126.4248747650602,53.10708429325219],[-126.42523089197884,53.1071452024896],[-126.42552227280785,53.1071861665876],[-126.42581272810517,53.10722881846481],[-126.42610225222647,53.10727259343963],[-126.42639086584052,53.10731805615311],[-126.42664213170593,53.10737093142091],[-126.42694684441302,53.10743481768606],[-126.42722912950448,53.10750270132516],[-126.42749374371722,53.10758017653086],[-126.42778718181646,53.10763906384114],[-126.42808238063702,53.10768841570904],[-126.42839251859992,53.107733230892364],[-126.42868846919126,53.10776353080968],[-126.42903581126141,53.10778804122504],[-126.4293728144965,53.10771398822674],[-126.42961017374127,53.107594913534],[-126.42983914206543,53.107478118732715],[-126.43006900095456,53.10735627370998],[-126.43031773628073,53.10725228678843],[-126.43056457440791,53.10714438017026],[-126.43081046261341,53.10703592074202],[-126.431056372347,53.106929701621745],[-126.43130324883663,53.10682740452533],[-126.43154352015821,53.106718964031515],[-126.43178000250776,53.10660605505775],[-126.43201744368461,53.10649481829578],[-126.43226055606488,53.106390847748564],[-126.4325131745616,53.10630028737377],[-126.43278562475808,53.1062287015883],[-126.43307981805559,53.10618000933129],[-126.43338079574684,53.10615369161003],[-126.4336735959538,53.106150376936505],[-126.43396123263817,53.10619246341651],[-126.43424815984035,53.10625583149195],[-126.43453593911345,53.106310241060825],[-126.43482368687216,53.10636296488138],[-126.43511572941466,53.106377576713754],[-126.43541389666808,53.10635014370853],[-126.43570736123958,53.10632105108057],[-126.4359888118261,53.10630713266164],[-126.43629658686993,53.106304312012234],[-126.43664373100559,53.10631031776347],[-126.43685157148404,53.10632467157559],[-126.43715033814536,53.106355504623195],[-126.43744226582031,53.106358906579985],[-126.43775245840168,53.10631909815997],[-126.43803323681472,53.10624019092969],[-126.43811893867536,53.106113261843134],[-126.43820106736065,53.10591295158406],[-126.43828152702625,53.105732259893216],[-126.43837324675944,53.10555488774042],[-126.43854496218572,53.10542427792456],[-126.43879953111025,53.10534322512175],[-126.43909549525641,53.105286103343616],[-126.43939150255889,53.10523177731866],[-126.4396724566459,53.10517079276064],[-126.43995436443299,53.10511091547337],[-126.44023723189548,53.10505271910177],[-126.4405210557381,53.10499732410835],[-126.44080772432109,53.10494639068478],[-126.441097171273,53.10489209378793],[-126.44139041186689,53.10484281958753],[-126.44168386190148,53.10481371209899],[-126.44197579100369,53.104818223276986],[-126.44227258620099,53.104840078130884],[-126.44257137226623,53.10487481452482],[-126.44286562933651,53.10492301261619],[-126.44314880178608,53.10498469701424],[-126.44341435480908,53.10506045702026],[-126.44365676019376,53.105159823938074],[-126.44388438663391,53.10527718212626],[-126.44410739970441,53.105401270982235],[-126.44433505800089,53.10552142483681],[-126.4445775270244,53.105626400866925],[-126.44483112330421,53.10572180616401],[-126.44508659173526,53.10581720386765],[-126.44534485761818,53.1059109053131],[-126.4456068164724,53.10600123986711],[-126.44587153738237,53.10608651688635],[-126.44613993650681,53.10616561243853],[-126.44641294504262,53.10623741148983],[-126.4466905183413,53.10629910855428],[-126.44697357559757,53.10634845921171],[-126.44726490978744,53.10638489710939],[-126.44756177195838,53.10641178499944],[-126.4478622964591,53.1064324912775],[-126.44816374066062,53.1064509613564],[-126.44846426296908,53.10646998991117],[-126.44876202483208,53.10649406575463],[-126.4490551851253,53.10652601048851],[-126.44934005831031,53.10656974630856],[-126.44961208432771,53.106637059894005],[-126.44986663499981,53.106731886060714],[-126.45010825891409,53.10684413245518],[-126.45034151943743,53.10696089203912],[-126.45056171952051,53.10708106230643],[-126.45076242507116,53.10721475196942],[-126.45096033571562,53.10735013711413],[-126.45117404292974,53.107475933277556],[-126.45140353781548,53.10758989949759],[-126.45164233572412,53.10769879215854],[-126.45188483529662,53.1078037530716],[-126.45213013223237,53.10790701762137],[-126.45239771914164,53.10799618618403],[-126.45264204553912,53.10809665672515],[-126.45281662669271,53.108236045167665],[-126.45294376921056,53.10840194133579],[-126.45305317146598,53.108571831417485],[-126.45312992705249,53.10875025441707],[-126.45320852443496,53.108925864670255],[-126.45335696267463,53.10906983430608],[-126.45362270638256,53.109160692308855],[-126.4538976900256,53.109239189230365],[-126.45417911418174,53.10930813241826],[-126.45440666586445,53.109413701291814],[-126.45455620619411,53.10957335154247],[-126.45474665524799,53.10970875894545],[-126.45499755673664,53.10981087549155],[-126.4553481658304,53.109700276784565],[-126.45558467971361,53.109594607528855],[-126.45578629401976,53.10946217244491],[-126.4559718802467,53.10931915897438],[-126.45614620211352,53.10917282729077],[-126.45630170881098,53.10901704856169],[-126.45646944768218,53.108868500863245],[-126.45667954691011,53.10874331886271],[-126.45690658768501,53.10862759039635],[-126.45714116015577,53.10851632314707],[-126.45738044685937,53.108407833841326],[-126.45762254362525,53.10830045361889],[-126.45786276195265,53.10819251545445],[-126.4580992066192,53.10808179475362],[-126.45832718025305,53.10796718929288],[-126.45853914062448,53.10784199667007],[-126.45871815701365,53.107697883719794],[-126.45888586395502,53.107547647386056],[-126.45906016847763,53.10740131125997],[-126.45923166053687,53.10725386532809],[-126.45939657090943,53.10710420379237],[-126.45957364665418,53.10695561517491],[-126.45972446850702,53.106800405627844],[-126.45980212740994,53.10662923830198],[-126.45986664866118,53.106453075470526],[-126.45992176280247,53.10627358780931],[-126.45996378215183,53.10609303059508],[-126.45998989609197,53.105913090983975],[-126.45999731202996,53.10573435352849],[-126.45997761520066,53.10555795350708],[-126.45992237267194,53.1053805802692],[-126.4598353271559,53.10520500690889],[-126.45972309246699,53.10503513372471],[-126.45957271173734,53.10488389181394],[-126.45939896198358,53.104734990403585],[-126.45918792778835,53.10459854964916],[-126.45898350866496,53.10446881454574],[-126.45876416237486,53.104341368970026],[-126.45854725285244,53.10418030872251],[-126.45846210454997,53.10400640311135],[-126.45844193532746,53.10387147047888],[-126.45844063679945,53.10366419053923],[-126.45843296437499,53.10347374218724],[-126.458407601841,53.103291761382756],[-126.45840564532065,53.103110819213185],[-126.45840555960018,53.10292986080652],[-126.45842514984871,53.10275107596009],[-126.45848125055603,53.10257550190278],[-126.45857106267329,53.10240316736783],[-126.45868150179257,53.10223522558386],[-126.45881447511555,53.102075048399506],[-126.4589708920545,53.10192093807256],[-126.4591151185534,53.101763513488244],[-126.45923681518718,53.10159888876635],[-126.45934723753197,53.10142983483365],[-126.4594258127462,53.101256978469436],[-126.45946225929073,53.101080359703104],[-126.45947433998087,53.100901038953076],[-126.45947051425846,53.10072065955416],[-126.45946014231855,53.10053974983415],[-126.45944881536201,53.10035771438186],[-126.45940923899593,53.100158426036664],[-126.45936728641537,53.099999483517635],[-126.45935461203736,53.09995135291611],[-126.45931413617204,53.099755994090785],[-126.4593160993824,53.09959183429548],[-126.45937040730104,53.09950982951002],[-126.45963278782583,53.09946735238783],[-126.45997872239786,53.099537716231914],[-126.46028564968152,53.09963512206502],[-126.4605094840229,53.099746296411816],[-126.46070925553668,53.09988109382842],[-126.46087143061078,53.09999923057128],[-126.46090349528649,53.10002319995715],[-126.46110980616429,53.100156286011256],[-126.46134390888787,53.10026574249503],[-126.46159935719409,53.10035886397734],[-126.46186132518461,53.10044859804666],[-126.46211028159706,53.10054734609912],[-126.46233717133516,53.100679793791905],[-126.46255483412097,53.1008251579796],[-126.46277871131886,53.10093913347025],[-126.46302607182973,53.10097626044916],[-126.46329401771848,53.10092758643437],[-126.46357456586017,53.10083517334174],[-126.46386077069005,53.10074553404779],[-126.46415591886097,53.10070459454239],[-126.46447108885515,53.1006988746544],[-126.46475128226201,53.100659121847166],[-126.46499424050026,53.10055003725055],[-126.46524621679771,53.100411793595235],[-126.46545781145339,53.10025857768834],[-126.4655795960731,53.10010459471099],[-126.46557189939277,53.099999301560175],[-126.46556959802591,53.09996009443878],[-126.46545385257107,53.09981208452333],[-126.46526887234248,53.0996626708257],[-126.46504090973059,53.09951735205163],[-126.46479901513813,53.09938160707063],[-126.46457038548567,53.099259810756884],[-126.46432793410482,53.0991576808782],[-126.46406227042313,53.09907189283283],[-126.46378551493333,53.098996787629595],[-126.46350879445274,53.09892616349328],[-126.46322382336253,53.0988701370634],[-126.46292700680243,53.09884216791539],[-126.4626314608103,53.098845566010795],[-126.46233425782924,53.098868573466326],[-126.46203612399952,53.09889271323817],[-126.46177382018934,53.09876992269025],[-126.46153782685936,53.09865936287673],[-126.46130185577191,53.09854935825277],[-126.46106587094346,53.09843935320912],[-126.46082432680726,53.09833273075652],[-126.46057812406463,53.09822836688847],[-126.4603365673916,53.098121743484626],[-126.46010803643021,53.09800722563717],[-126.4599008781005,53.09788029908879],[-126.45971694477267,53.097739271567605],[-126.45954603723888,53.09759035882883],[-126.45938256809518,53.09743861128358],[-126.45921632592696,53.097289115205015],[-126.45905101559549,53.09713849480169],[-126.45889595097573,53.096984472987415],[-126.45876233141281,53.096824765403454],[-126.45865109623927,53.09665768329736],[-126.45855944123906,53.09648548750111],[-126.45848552585817,53.09631098187634],[-126.45843954549505,53.096123486980524],[-126.4584179466911,53.095943176017336],[-126.458594342283,53.09582148154507],[-126.45883533932076,53.09570513833586],[-126.45912812568749,53.0956216426669],[-126.45940618323372,53.09556005706017],[-126.45968226622374,53.09548895900597],[-126.45996213187458,53.095421762723696],[-126.46023349873518,53.09534787607955],[-126.46048314188327,53.09525390508023],[-126.4607044458835,53.09513427332257],[-126.4609068728287,53.0949990282453],[-126.46110086424024,53.09486157478732],[-126.461284504168,53.09471911482262],[-126.46145311176085,53.09457055517347],[-126.46160857585471,53.0944175647419],[-126.46175463753718,53.0942601289622],[-126.46188756203831,53.09409882717942],[-126.4620129424615,53.093931943427734],[-126.46213797393678,53.093733132086996],[-126.46225956260213,53.093561789957235],[-126.4623437349569,53.093390029352676],[-126.4621828201575,53.093300456751884],[-126.46204396096222,53.0932601071864],[-126.46156684661369,53.0931616853623],[-126.4612837446644,53.093101729782575],[-126.46099509299032,53.0930473885424],[-126.46070922816075,53.092991924231654],[-126.4604298389723,53.092929146487855],[-126.4601643343319,53.09285230370955],[-126.45992565287975,53.092748473716625],[-126.4597119546699,53.09262045154602],[-126.45950103443865,53.09248905678354],[-126.45927345769859,53.09237396865798],[-126.4590171167333,53.092279169183406],[-126.45874496183906,53.09219282955908],[-126.45846363773984,53.092123331881034],[-126.45815074165203,53.09207468009034],[-126.45789647596304,53.092085749763186],[-126.45760623162542,53.09214346205846],[-126.4573131641064,53.09219893466412],[-126.45701794169337,53.09222808839095],[-126.45672080019565,53.09225276692917],[-126.45642356795437,53.09226904605279],[-126.4561262088948,53.09227355553849],[-126.45582581673803,53.09225622239891],[-126.45553820192086,53.092210836549185],[-126.45525513880492,53.09215309837235],[-126.45497393493756,53.092094240857925],[-126.45469270176858,53.09203257714042],[-126.45441238808525,53.091968668286114],[-126.45413390668037,53.091902510793865],[-126.45385820918631,53.091833536306595],[-126.45358435306461,53.09176175742511],[-126.4533132749978,53.09168660585374],[-126.4530430957241,53.091608653531026],[-126.45277382112992,53.091528447228114],[-126.45250732482607,53.09144487723747],[-126.4522436066683,53.09135792565085],[-126.45198638072223,53.09126647574195],[-126.45173471913697,53.0911705131721],[-126.45149141418943,53.09106948052034],[-126.4512582617561,53.09095496299753],[-126.4510501294197,53.090817940180635],[-126.45088764752283,53.0906650562849],[-126.45078396763401,53.09050186366026],[-126.45072040085779,53.09032843373972],[-126.45068480601833,53.09014705382244],[-126.45066789076473,53.08996336170538],[-126.45066129360895,53.08978187115268],[-126.4506687460431,53.08960313265099],[-126.45069303088967,53.08942432096961],[-126.45072666701529,53.08924548256002],[-126.45076403739472,53.089066065161106],[-126.4507958025796,53.088887224866426],[-126.4511128770662,53.08880422066827],[-126.45134556229794,53.08870024907523],[-126.45150759765681,53.088548931564006],[-126.45163488468772,53.08838317157461],[-126.45174156838056,53.0882146935067],[-126.45183698212956,53.08804177654284],[-126.4519314734905,53.08786942772594],[-126.45203817257848,53.08770262549417],[-126.45216927911552,53.08754470246667],[-126.4524036636467,53.08742559136207],[-126.4526427806781,53.0873126287134],[-126.45274490930127,53.08715537175334],[-126.45278976800094,53.08697760995452],[-126.45280087944215,53.08679212519488],[-126.45279517732804,53.08660839003164],[-126.45274933728619,53.08643209618579],[-126.45266238727423,53.086257636025394],[-126.45263243976262,53.08608015178429],[-126.45263894069384,53.085901416392545],[-126.45265011832909,53.085722098349194],[-126.45266690621214,53.08554275879325],[-126.4526874341656,53.08536340488708],[-126.45270983204377,53.085184043793724],[-126.45273222370469,53.08500411798388],[-126.45275461527133,53.084824201114635],[-126.45277514250613,53.08464484711975],[-126.45279286591919,53.084464939129774],[-126.45280403659214,53.08428506519414],[-126.45280023470764,53.084104119183856],[-126.4527879922896,53.08392152927592],[-126.45277202486811,53.08373895362269],[-126.45276073119824,53.08355692475686],[-126.45276160315802,53.08337652547849],[-126.4527802775451,53.083198854657944],[-126.45282517373047,53.08302500945456],[-126.45290097387276,53.082854971890576],[-126.45299924013815,53.082688765294414],[-126.45311717778803,53.0825252798561],[-126.45325009232596,53.08236342201739],[-126.45339237369558,53.082203213256356],[-126.45353934231164,53.08204354206665],[-126.45368817075844,53.08188441928798],[-126.45383232475828,53.0817247585044],[-126.45396898592726,53.08156400584411],[-126.45410660050099,53.08140436981553],[-126.45425263926522,53.0812463864105],[-126.45440148029151,53.08108894778338],[-126.45454751677546,53.08093095502197],[-126.45468793054685,53.08077187219136],[-126.45481709976312,53.08061058255285],[-126.45493033940846,53.08044543691859],[-126.45502482237725,53.08027644622233],[-126.4551033760211,53.08010359065364],[-126.45516880389242,53.07992742416151],[-126.45522580028862,53.079749049153484],[-126.45527623222422,53.07956957892101],[-126.45532384542864,53.079389554791504],[-126.45537147328378,53.07920953953006],[-126.45542378581747,53.0790311824003],[-126.45548172536536,53.078854479763294],[-126.45554903764668,53.07867999085041],[-126.45562948007067,53.07850936842156],[-126.45572679815992,53.078343162721296],[-126.45585787398196,53.078186346223745],[-126.45604051705462,53.07804390565462],[-126.45625505039543,53.077909740712094],[-126.45647802504021,53.07777890417453],[-126.4566897435302,53.077644749288375],[-126.45686677210445,53.07750232011874],[-126.45698944079264,53.077346099496836],[-126.45707271433294,53.077179391119344],[-126.45713442626385,53.07700659900115],[-126.45717926781639,53.07682994597285],[-126.4572100574326,53.07664999482884],[-126.457231453024,53.07646727434409],[-126.45724630585507,53.07628401444021],[-126.45725835550077,53.076100209608846],[-126.45727134448504,53.0759175215973],[-126.45728809687452,53.075737059950676],[-126.45729925217998,53.075557740427044],[-126.45729730765663,53.07537735111873],[-126.45728880588038,53.0751964314191],[-126.45727844938791,53.075015509916305],[-126.45727182339604,53.074835138674146],[-126.45727644229471,53.074655844361814],[-126.4572969636572,53.07447817366804],[-126.45733711434659,53.074300982713616],[-126.45739130633345,53.07412485783603],[-126.45745765776323,53.073948685825236],[-126.45753522932888,53.07377414653406],[-126.45762123305767,53.07360070394759],[-126.4577166020633,53.07342890122545],[-126.45781855145454,53.07325986961729],[-126.457927066313,53.073093618128226],[-126.45805149436903,53.072930110492784],[-126.45819279857746,53.07276988971924],[-126.45834909762645,53.07261465721189],[-126.45851856989776,53.072466096220346],[-126.45870026423883,53.07232477510465],[-126.4588988799431,53.072192342826774],[-126.45911158116492,53.07206658729418],[-126.45933274382246,53.07194471565785],[-126.45955673510575,53.071824508826516],[-126.4597788286158,53.07170319742841],[-126.4599980996944,53.07157964666707],[-126.46021830569158,53.07145553608413],[-126.46033619042483,53.07129260708804],[-126.46040523682453,53.071108579205095],[-126.46047712799178,53.07092902209169],[-126.46060074641963,53.07077783994782],[-126.46084282720437,53.070689498197815],[-126.46115643940774,53.070646251673615],[-126.46145241445227,53.07061372226873],[-126.46175228985553,53.07059742832606],[-126.46205123162997,53.07058057255083],[-126.46234063055302,53.07054582567753],[-126.4626164786141,53.07046855289008],[-126.46282918119296,53.07034334621528],[-126.46295640605013,53.07018093360801],[-126.46305729906994,53.07000406678658],[-126.46318640985325,53.06984333170287],[-126.46338693670526,53.069717051225595],[-126.46364004452006,53.069612408914054],[-126.46392152304247,53.06953791658843],[-126.46421087654622,53.06949980381115],[-126.4645022215965,53.06947288730828],[-126.46479641808759,53.06945099655042],[-126.46509348117307,53.069434140420995],[-126.46539151697432,53.06942008539747],[-126.46569049819817,53.06940770213446],[-126.46599041877553,53.06939643488983],[-126.46629034794276,53.06938460212607],[-126.46659024976468,53.069371657189734],[-126.46688826608788,53.06935591325703],[-126.46718529678431,53.06933624630034],[-126.46748040230625,53.069311548526976],[-126.46777447271396,53.06927845497876],[-126.46806562857803,53.06923472318179],[-126.4683529337493,53.06918092159129],[-126.46863077363852,53.069116507787676],[-126.46890009658962,53.069042051758174],[-126.46916275668329,53.06895752826648],[-126.46942066668318,53.06886686488828],[-126.46967572938918,53.06877173032913],[-126.46992890301918,53.06867492648312],[-126.47018115444808,53.06857868151516],[-126.47043527155957,53.068483549050725],[-126.47068939622194,53.06838785127613],[-126.47094162309608,53.06829104899265],[-126.47119102729259,53.06819200749109],[-126.47143572720029,53.06808963174372],[-126.47167382584936,53.067982790943496],[-126.47188927957787,53.06785700087217],[-126.47205960633883,53.0677078516468],[-126.47218020675172,53.06754265843631],[-126.47227732890168,53.067366918853516],[-126.47237917458692,53.06719507749003],[-126.47251579974166,53.067041580385464],[-126.47273044138426,53.0669281172593],[-126.47301279068861,53.06685022911621],[-126.47327819427595,53.066762888561904],[-126.47342983780219,53.06661549730634],[-126.47355604003269,53.06644915961319],[-126.47372166844644,53.06629947090234],[-126.47389293723289,53.06615144451882],[-126.4740717043213,53.06600674026237],[-126.47425895818695,53.06586816878888],[-126.4744753418248,53.06574292579977],[-126.4747247228966,53.06564388565491],[-126.47502240657634,53.065602351219894],[-126.47526162511636,53.06551342620572],[-126.47541404633587,53.06535370377937],[-126.47554307737671,53.065191278590426],[-126.4756019754541,53.06510924595291],[-126.47538172209651,53.06488715605058],[-126.47520991209335,53.064734896694596],[-126.47509684987489,53.064571204860876],[-126.47505837615805,53.06438984087291],[-126.4750236261568,53.06420846187679],[-126.47491524634299,53.06404474203],[-126.4747658650804,53.06389183601547],[-126.47460251134434,53.06374234741602],[-126.47442982314445,53.06359513705587],[-126.47425155620776,53.063449069325856],[-126.47407327554527,53.06330300137451],[-126.47389873679828,53.063155797643866],[-126.47373257159371,53.06300576332197],[-126.47357945372676,53.062852306010974],[-126.47343469055718,53.06269434201378],[-126.47328991212726,53.062533572190354],[-126.47315069582866,53.06236997419325],[-126.47302174315345,53.06220410289888],[-126.47290771901272,53.062035921730875],[-126.4728142493244,53.061867102383296],[-126.47274600149152,53.06169650573125],[-126.472719781636,53.06152405557799],[-126.47274865388798,53.06134802339952],[-126.47281115225466,53.061169050862944],[-126.47288296790006,53.0609889294376],[-126.47293983942943,53.06080830307365],[-126.47296027593215,53.06062949884726],[-126.47296292436599,53.06044853383175],[-126.47295250465157,53.060267612174194],[-126.47292432844881,53.06008732633852],[-126.47287750012991,53.059910476640056],[-126.4728026938231,53.05973878561476],[-126.47269336088317,53.05957227046273],[-126.47256537911608,53.059408070808814],[-126.47243646257408,53.05924443050729],[-126.47231687309505,53.059079076494506],[-126.47218887932037,53.05891487644559],[-126.4720627642361,53.05875011297296],[-126.47195437868336,53.0585835932761],[-126.47187584679826,53.05841247220998],[-126.47184480945809,53.05822715069454],[-126.47189703935615,53.05804990456561],[-126.47202049235925,53.05789086626921],[-126.47216173115346,53.057733988723015],[-126.47231606113975,53.057579308569586],[-126.47247977415769,53.05742682266785],[-126.47264910269908,53.05727656398794],[-126.47282219509192,53.05712740150228],[-126.47299530258452,53.05698104439365],[-126.47317781183291,53.056838575537874],[-126.47336970528791,53.056701106489605],[-126.47356723765411,53.05656529075231],[-126.47376288507792,53.05642949119599],[-126.47395102707186,53.05628979522515],[-126.4741269566781,53.05614510128446],[-126.4742887990408,53.05599487015862],[-126.47444218792565,53.05584018183085],[-126.47459089875227,53.055684400561084],[-126.4747395872206,53.05552805444762],[-126.47489204586012,53.05537336922064],[-126.4750529431193,53.055222020266854],[-126.47522510823974,53.05507566345746],[-126.47540478486789,53.05493263761257],[-126.47559009166004,53.05479182978404],[-126.47577915351005,53.05465268277374],[-126.47597009552858,53.05451465732164],[-126.47616290494157,53.05437661504979],[-126.47635384447027,53.0542385889551],[-126.47654290135219,53.054099440677305],[-126.47664611131655,53.0538883713545],[-126.47673108236201,53.0537160370593],[-126.4768160376672,53.05354369378271],[-126.47689913229547,53.053370802175934],[-126.47696537429852,53.05319630231517],[-126.47699513356297,53.053017458858214],[-126.47704266509989,53.05283967302401],[-126.47707709431394,53.052661375366974],[-126.47710592588056,53.05248253557205],[-126.47715251455713,53.05230475344453],[-126.47723747167579,53.05213297442729],[-126.47745193933173,53.05201052917241],[-126.47747326057473,53.051830043324394],[-126.47744415654084,53.05165088188056],[-126.47744400246266,53.051471047574644],[-126.47745786166844,53.05129171234392],[-126.4774735979466,53.051111804771374],[-126.47748092433687,53.0509324959206],[-126.47746674830317,53.050752718249406],[-126.47742271533423,53.05057529332941],[-126.47737587251773,53.05039788870218],[-126.47735516454337,53.05021812841287],[-126.47739520230664,53.05004037243024],[-126.47750731185592,53.04987352091852],[-126.47765504879145,53.049717739060796],[-126.47782342034192,53.04956915222643],[-126.47800118377268,53.04942500909211],[-126.47817894599623,53.04928086567804],[-126.47835013683849,53.04913338711729],[-126.47850161763161,53.0489787004728],[-126.47861934450255,53.0488135102317],[-126.47867715261746,53.048637357858425],[-126.4786489788229,53.048458757326834],[-126.478568544951,53.04828540639422],[-126.47846760281877,53.048116055773015],[-126.47836853004631,53.047946706440975],[-126.47829275556805,53.04777277166575],[-126.47826925617082,53.047593587293136],[-126.47829619599688,53.04741476327619],[-126.47835026034029,53.04723806135538],[-126.47842865160442,53.04706463125688],[-126.47852576408604,53.04689447772787],[-126.4786388089245,53.046728185725215],[-126.47876870400663,53.04656630724787],[-126.4789323767587,53.04641606128549],[-126.47912327137782,53.04627802111194],[-126.47932449669256,53.04614555012254],[-126.47952197992765,53.046011408746025],[-126.47970159733538,53.045867810905904],[-126.47984836424557,53.045711465062624],[-126.47996889319506,53.045546826445374],[-126.48006412140714,53.045376123355666],[-126.48013689084826,53.04520215002442],[-126.4801741108334,53.04502383924508],[-126.48016460353128,53.044844033287696],[-126.48014576115325,53.0446648300146],[-126.48015773213832,53.04448494561618],[-126.48022488840142,53.04431043023379],[-126.48029672240037,53.04413590472386],[-126.48033580905695,53.04395758618112],[-126.48036273777001,53.04377875235142],[-126.48038407012875,53.0435993855038],[-126.48040632896115,53.0434200148621],[-126.48043233048762,53.04324119369566],[-126.48046767927477,53.04306289022466],[-126.4805161116666,53.04288508923009],[-126.48059728719822,53.04271220161797],[-126.48070282094777,53.04254426146914],[-126.4808130294966,53.04237741370053],[-126.48090637900565,53.042206717227],[-126.48095668317326,53.04202947305812],[-126.4809639869907,53.041849607302694],[-126.48095448345131,53.041670365783816],[-126.4809561826083,53.041490513864716],[-126.48095320397749,53.0413106899518],[-126.48095024021558,53.04113085699549],[-126.48096128649136,53.04095153166493],[-126.48100316215877,53.040773201182645],[-126.48110587341732,53.040604707226926],[-126.48124137877312,53.04044448770501],[-126.48136843730506,53.04028149671985],[-126.48143464041716,53.040106984062405],[-126.48147184418396,53.03992811660183],[-126.48157736745284,53.03976016643531],[-126.4817353657081,53.03960825376114],[-126.48183620316458,53.03943976668041],[-126.48191550730037,53.03926632963654],[-126.48196767183497,53.03908907710575],[-126.48202545281946,53.038912922097275],[-126.48207574841348,53.03873567711154],[-126.482137264548,53.038559506751795],[-126.4821361554631,53.03838023067482],[-126.48204454374167,53.038209167784856],[-126.48192778558946,53.038043810014734],[-126.48185200148865,53.03786875607037],[-126.48194162003225,53.03769975874343],[-126.48206397329643,53.0375339801754],[-126.48214701941775,53.03736276848955],[-126.48220199008814,53.037185504181075],[-126.4822766047051,53.0370115210693],[-126.48232316107119,53.036834291048265],[-126.48237720160087,53.03665815090414],[-126.48256247550435,53.03652348864893],[-126.48279938959436,53.03641327492234],[-126.48297989676009,53.036269667440486],[-126.48314538066104,53.036120527606734],[-126.48328929403324,53.03596306758499],[-126.48339011023941,53.035794014110024],[-126.48345535890893,53.035618392167656],[-126.48354401422264,53.03544714732661],[-126.48370762504105,53.03529801428619],[-126.48390504398259,53.03516386473022],[-126.48402458575096,53.0349992158576],[-126.48407579483126,53.03482196581518],[-126.48411579845066,53.03464364119202],[-126.48418104235137,53.03446801873046],[-126.48432310398898,53.03431280586833],[-126.48455810131408,53.034199790517],[-126.48478656096442,53.03408623680647],[-126.48493983257376,53.03393154183745],[-126.48504812794711,53.03376414120727],[-126.48513956722654,53.03359288349721],[-126.48522633735682,53.03342108912285],[-126.48531964943824,53.03325038826809],[-126.48542325180296,53.03308188600639],[-126.48550066162538,53.0329084535937],[-126.4855322385096,53.032729598191665],[-126.48554886657575,53.03255024849878],[-126.4855580170799,53.03237037378007],[-126.48556436475154,53.03219106634662],[-126.48557164725915,53.03201119031089],[-126.48558640713448,53.03183184822285],[-126.48561237329646,53.031652459997794],[-126.48565610939087,53.03147468385973],[-126.48573911626336,53.031302339620986],[-126.48586988488618,53.03114101271065],[-126.4860212677514,53.030985759051106],[-126.48616984896738,53.030829951984956],[-126.48630623676911,53.0306702776644],[-126.48643792766305,53.03050894624709],[-126.48657525473553,53.03034926770529],[-126.48672476452909,53.03019402077261],[-126.48689772069679,53.030048196739735],[-126.48710073383562,53.02991625922071],[-126.48732819025632,53.02979990753059],[-126.48756412811781,53.0296896876322],[-126.48780573193064,53.02958503741392],[-126.48805298907786,53.02948485431223],[-126.48830496016163,53.02938800374154],[-126.48855881506097,53.02929395058107],[-126.48881456429983,53.02920100952772],[-126.48907031038121,53.029109188434106],[-126.48932606389452,53.0290168109726],[-126.48957991431388,53.02892275559491],[-126.48983188509388,53.02882646644234],[-126.49008006579078,53.02872683095006],[-126.49032353204741,53.02862273247139],[-126.49056419024413,53.02851752464236],[-126.49080576704813,53.028411747752244],[-126.49104734917798,53.02830653507164],[-126.49128892368223,53.02820076614303],[-126.49152955562039,53.02809499167071],[-126.49177020140432,53.02798922560246],[-126.49201082450728,53.0278828943885],[-126.49225051354875,53.02777600183101],[-126.49248926863028,53.0276685568991],[-126.49272800111596,53.02756055579274],[-126.49296579952856,53.02745199335584],[-126.49320172262348,53.02734287352825],[-126.49343763159284,53.027232641727686],[-126.49367165867535,53.02712128784048],[-126.49390380407573,53.02700882980476],[-126.4941350088146,53.02689524576249],[-126.49436526461834,53.026781109455996],[-126.49459268434752,53.02666474354995],[-126.4948191700714,53.02654782533498],[-126.49502779661735,53.02642033224576],[-126.49515944110065,53.026258981731345],[-126.49523771842144,53.02608497364213],[-126.49529355919722,53.02590881864089],[-126.49531481952738,53.02572944722751],[-126.49531738360632,53.02554959850588],[-126.49532462367173,53.02536972117052],[-126.49536457774734,53.025191956461676],[-126.49547186856007,53.025024549363025],[-126.49566919600325,53.02488981461164],[-126.49591356589542,53.024786820933045],[-126.49617589204978,53.02470167945423],[-126.49644484578184,53.02462379732247],[-126.49671853812387,53.02455260874311],[-126.49700175029113,53.02449707558875],[-126.4972897145107,53.02444935635869],[-126.49757579284648,53.02439884757046],[-126.497855189246,53.024336605357185],[-126.49811844147936,53.02425201137625],[-126.49835998183568,53.02414678346798],[-126.49859493343749,53.0240365450623],[-126.49884305895797,53.023936326148515],[-126.49911771045333,53.02386737787842],[-126.49941342740853,53.02384427195764],[-126.49971137574235,53.02385085398098],[-126.50000759357422,53.02387033299449],[-126.50030473953977,53.02388867785006],[-126.50060264870689,53.023891896244265],[-126.50089639858882,53.023860395566906],[-126.50116345773155,53.0237813901092],[-126.50139933281764,53.02367169790885],[-126.50161261291963,53.023546414072584],[-126.50181741494107,53.0234155633181],[-126.50202504402772,53.02328637645486],[-126.50224679060494,53.02316610220538],[-126.50249775069105,53.023069224977576],[-126.5027799910033,53.02301256145378],[-126.50307472072721,53.02298496845302],[-126.50337249098372,53.022976975258366],[-126.50367041890824,53.022983547350876],[-126.50396663415177,53.023001895911015],[-126.50426200151112,53.02302808200283],[-126.50455463398977,53.02306044637455],[-126.50484732851649,53.023096736045595],[-126.50514000849788,53.02313301608999],[-126.50540706761878,53.02321199375499],[-126.50563161680718,53.02332924160119],[-126.50585248757098,53.02344987530179],[-126.50608354248187,53.02356373283954],[-126.50631459200685,53.02367703416956],[-126.50654472169876,53.023792024250355],[-126.50677391967326,53.02390645314181],[-126.50700497290403,53.02401975309705],[-126.50722863130318,53.02413924274532],[-126.50746440315682,53.02425588305748],[-126.5077500158532,53.02424625485456],[-126.50799624019423,53.02414490428251],[-126.50818036497397,53.024002926323725],[-126.508408706723,53.023889335175106],[-126.5086370471434,53.02377573461346],[-126.50885500100838,53.02365322322725],[-126.509072961787,53.023530146654025],[-126.50929091302706,53.023407625481234],[-126.50953418751205,53.023293967626124],[-126.50972495275508,53.023162043120735],[-126.50982662162775,53.02299688782938],[-126.50989639544004,53.02282066511236],[-126.50994650854365,53.02263948050629],[-126.5099845247523,53.022461153925505],[-126.50999262847876,53.02228128032788],[-126.50999232992747,53.02210087829146],[-126.51001445913779,53.02192205557661],[-126.51007021970686,53.021744772695904],[-126.51015311677098,53.02157185449849],[-126.51025005066698,53.021402237067086],[-126.5103544663406,53.02123370768832],[-126.51046449644565,53.02106627442192],[-126.51057640640869,53.02089995341534],[-126.51069579796793,53.02073472041411],[-126.51083299410234,53.02057557751267],[-126.5109898767376,53.02042250753414],[-126.511158956637,53.020273866555286],[-126.5113383582536,53.02013021843136],[-126.51152145941525,53.019983757160034],[-126.51172335290057,53.01984729874553],[-126.51197157162713,53.01975938600955],[-126.51224716838526,53.01969599632888],[-126.51253599706745,53.01964600370969],[-126.51283240197522,53.019604932636625],[-126.51312796820737,53.01957115232311],[-126.51342173308771,53.019544102224444],[-126.5137203763047,53.019533837944586],[-126.51402008929942,53.01953421766681],[-126.51431892895292,53.01954019407002],[-126.51462251750002,53.019553436861216],[-126.51490139545132,53.01960712544312],[-126.51515366239006,53.019698471471415],[-126.51539490929079,53.01980610816007],[-126.51563249907315,53.01991879819535],[-126.51587003446642,53.020028135393204],[-126.51610201832875,53.0201402932151],[-126.51633493631644,53.02025300226807],[-126.51657430850096,53.020359524222364],[-126.51682387060644,53.02045872215432],[-126.5170881467079,53.02053936201214],[-126.51738830845024,53.02049994831654],[-126.5175124912105,53.020346448218845],[-126.51768250143662,53.020200034741364],[-126.5178797142999,53.02006470678601],[-126.51797474669269,53.01989509105544],[-126.51806321647175,53.0197227072296],[-126.5182266523033,53.01957408072578],[-126.51842385489878,53.01943706657322],[-126.51861165753324,53.01929617605921],[-126.51880041366437,53.019156401556344],[-126.51902213225112,53.019039456870416],[-126.51928151357488,53.0189497942495],[-126.51954090874104,53.01886013098778],[-126.51977010475979,53.018745384006],[-126.52001058610321,53.01863619838859],[-126.52023897022715,53.01853098296059],[-126.52025072279723,53.01834772143029],[-126.52034668983619,53.01817866417986],[-126.52054014364838,53.018042783375925],[-126.52077498326501,53.017930815237904],[-126.52099570776686,53.01781050952955],[-126.52118163438558,53.01767017878445],[-126.52131784150603,53.017509907035034],[-126.52139600930785,53.017337001170645],[-126.52143115767373,53.01715811804709],[-126.52169438161432,53.01707739714112],[-126.5219813280554,53.01702851003909],[-126.52226635848648,53.016975704407294],[-126.52255233489913,53.01692457019304],[-126.52283831872028,53.016872879468885],[-126.52312144552818,53.016817283369704],[-126.52340068548826,53.01674936911826],[-126.52360273955014,53.01663026175166],[-126.52368177409922,53.01645342407502],[-126.52376835335338,53.01628159965998],[-126.52389705730118,53.01611967278738],[-126.524053869554,53.01596602928839],[-126.52417789641142,53.01580412284893],[-126.52426072446173,53.01563119413786],[-126.52438286173663,53.01546761057373],[-126.52454624635766,53.01531673395228],[-126.52473966684187,53.01518029028347],[-126.52496789606835,53.01506498132493],[-126.52521686189058,53.014965831661996],[-126.52546678126107,53.014867788774815],[-126.5256452192857,53.014728048732614],[-126.52574018100745,53.014556185289514],[-126.52582392628224,53.01438325122639],[-126.5259273369131,53.01421471150049],[-126.52608694851239,53.014062728885875],[-126.52632937899301,53.013963605926726],[-126.52662200402149,53.013923081444986],[-126.52691760898792,53.0138976655273],[-126.5272311587247,53.013888420753105],[-126.52740389455514,53.01381593492075],[-126.527305418152,53.0136281269726],[-126.527236965367,53.01345363102956],[-126.52716852118382,53.01327857921226],[-126.52709727662388,53.013104095634674],[-126.52701763801058,53.01293077003039],[-126.52697249640872,53.01275336391574],[-126.52694881108329,53.01257418560447],[-126.52693630541528,53.012394401544974],[-126.52693407501056,53.01221456259709],[-126.52693465250093,53.01203472005003],[-126.52694268937267,53.01185539993962],[-126.52694698651264,53.011674411245394],[-126.5270841272121,53.0115180452791],[-126.52729538981464,53.01139160200534],[-126.5275424409252,53.011290770386466],[-126.52779233342403,53.01119273132328],[-126.52803844131998,53.0110919028639],[-126.52828171349275,53.01098772499997],[-126.52853160941665,53.01089024010355],[-126.52879093486756,53.010801676608985],[-126.52906354406386,53.01072929611282],[-126.52934661475211,53.01067312015692],[-126.52963253329533,53.010621412837956],[-126.52991850106883,53.01057251040095],[-126.53020442517409,53.010521357443096],[-126.53048175974125,53.01045456399815],[-126.53075721253617,53.010386648870785],[-126.53104702304687,53.01034669060773],[-126.53131297217139,53.0102653706267],[-126.53153455293702,53.01014504048579],[-126.53171947126303,53.010003576207204],[-126.53188657040998,53.00985491303115],[-126.5320423967629,53.009701818339444],[-126.53219073487912,53.00954596037367],[-126.53233905686086,53.009390093310785],[-126.53248926650627,53.00923478226591],[-126.53261696807434,53.009072293704236],[-126.53274749015856,53.008910903808356],[-126.53290050328235,53.00875670004663],[-126.53305633688841,53.00860360384852],[-126.53321402823079,53.008451063773364],[-126.53337548781468,53.008300182738516],[-126.53351162588271,53.00814045177734],[-126.53359251229881,53.00796695953027],[-126.53363041614337,53.00778862379829],[-126.53366551219912,53.00761030073945],[-126.53373892335026,53.007436286373206],[-126.5338834999477,53.00727932249925],[-126.53406933093821,53.00713841482066],[-126.53425142825742,53.00699640321549],[-126.5344044290297,53.00684219732815],[-126.53454992688263,53.00668521942292],[-126.53471323380869,53.00653489272134],[-126.53490188728244,53.006395647158406],[-126.53509617467864,53.00625918152343],[-126.53529517014567,53.00612549999144],[-126.5354960300327,53.00599292120851],[-126.53569878442941,53.005861462957185],[-126.53590151551722,53.00572943969947],[-126.53610707382957,53.005599079539955],[-126.53631734732119,53.00547206812196],[-126.53652666454491,53.005343931168454],[-126.53673127844,53.005213583134854],[-126.53692650232395,53.00507766585932],[-126.53709730335363,53.00493066312254],[-126.5371978318495,53.00476156064685],[-126.53720302467492,53.00458169603617],[-126.53717370118535,53.00440254442291],[-126.53713504457411,53.0042245558286],[-126.53711038043163,53.00404538294135],[-126.53709972274451,53.0038661462377],[-126.5371179812364,53.003686213062636],[-126.53716333165328,53.00350896227411],[-126.53723018201508,53.003333854567266],[-126.53726059354425,53.00315499544007],[-126.53730876412968,53.00297885221907],[-126.53718256173603,53.00281526455041],[-126.53707963474945,53.002646532808676],[-126.53699533053756,53.00247435455851],[-126.53693710761434,53.00229814009153],[-126.53694603398385,53.00211824926867],[-126.53697363874399,53.00193940286871],[-126.53703768813006,53.00176374310621],[-126.5371204215566,53.001590804001324],[-126.53720878973282,53.001419524430794],[-126.53729059606397,53.00124658938854],[-126.53736958755114,53.0010731023472],[-126.53742990136101,53.0008974682561],[-126.53743041923876,53.000717615559786],[-126.53742162036663,53.000537814271965],[-126.53740908096565,53.00035858579791],[-126.53739560882396,53.00017879680526],[-126.53737935190063,52.999999585233525],[-126.53737630263677,52.999906038900114],[-126.5373507063836,52.999727425644835],[-126.53730460295556,52.9995494705652],[-126.53723799107456,52.99937441471615],[-126.53716487634601,52.999201064760555],[-126.5371719419472,52.999021746809994],[-126.53719206433573,52.998841804604126],[-126.5372065807024,52.99866133213045],[-126.53719685676627,52.99848265536368],[-126.53716008663231,52.99830465758194],[-126.53710931947364,52.99812727931918],[-126.53705668660764,52.99794991848025],[-126.53701430388199,52.997771946166246],[-126.53698498588605,52.99759279378252],[-126.53696125187007,52.997413615943465],[-126.53693567379175,52.99723500226569],[-126.53689141192676,52.997055917857566],[-126.53682663719394,52.99687692681359],[-126.53681695771819,52.99670161124549],[-126.53688654101491,52.99652256417675],[-126.53701884632335,52.99635892787293],[-126.53722540271401,52.99623696878808],[-126.5375015011499,52.9961550316841],[-126.53779306015542,52.99611391856301],[-126.5380970533713,52.99609740877258],[-126.53834140317004,52.99601392928787],[-126.5385308819295,52.99587019982631],[-126.53873823644204,52.995738705320605],[-126.53897664360561,52.99562836768004],[-126.53923300557389,52.99553531129424],[-126.53952450893131,52.9954902767005],[-126.5398229625893,52.99547882572222],[-126.54004360812112,52.99543971694353],[-126.54032144140055,52.995274280570634],[-126.54049949972494,52.995113792088475],[-126.54071533427988,52.99499009889975],[-126.54095474393179,52.9948853552661],[-126.5411311887847,52.99474503392243],[-126.54128506035065,52.99459193421431],[-126.54151219428465,52.99447547561794],[-126.54172049410612,52.99434677717443],[-126.54186687706978,52.99419091419578],[-126.5420001171804,52.994030064525575],[-126.54213149794438,52.99386865848261],[-126.54223759282914,52.99370065429632],[-126.54231281091397,52.99352662457593],[-126.54239177539415,52.99335257755085],[-126.5425166212002,52.99319176581462],[-126.54269296741242,52.99304583968659],[-126.542874975549,52.9929038135796],[-126.54309832051389,52.99278512811447],[-126.5433395563462,52.99267868571021],[-126.5435657339611,52.99256222735946],[-126.54378906868689,52.99244186426194],[-126.54402089915864,52.99232986110094],[-126.54427631119371,52.99223847413758],[-126.5445440021702,52.99215824427429],[-126.54479189123764,52.99206128821529],[-126.54504353942211,52.99196768483426],[-126.54529420336526,52.99186959432665],[-126.5455269815791,52.99175870429124],[-126.54570331876178,52.99161333825554],[-126.54591444144035,52.99148798061918],[-126.5461585268393,52.99138600127115],[-126.5463602020912,52.99125172223732],[-126.5465845051562,52.99113583136384],[-126.5468408593531,52.991045554894946],[-126.54710758312466,52.99096420304038],[-126.5473752534614,52.99088340196774],[-126.54765044423536,52.990807047513734],[-126.54791435181623,52.99072402159429],[-126.54810673929356,52.990593700065105],[-126.54824927455552,52.99043167906557],[-126.5483487841008,52.99026257896711],[-126.54844736008356,52.990092918353305],[-126.54855998029237,52.989926553914906],[-126.54866603981712,52.98975853458603],[-126.5487533891874,52.989586684817965],[-126.54884073785145,52.989414834967484],[-126.5489346306157,52.98924463985653],[-126.54904442595688,52.989077167461986],[-126.54914674257869,52.98890860923964],[-126.54922847627091,52.988735664631136],[-126.54929432825243,52.9885605528617],[-126.54939663534188,52.988391429650086],[-126.54948491887669,52.9882206953639],[-126.54954141100062,52.988043385934056],[-126.5495848271327,52.987866137420895],[-126.54960583936088,52.98768675224087],[-126.54961844073814,52.98750685046337],[-126.54962263843997,52.98732697888431],[-126.54961658914829,52.987147719818836],[-126.54959655417228,52.9869685259431],[-126.5495802287586,52.986788758959506],[-126.54957790391015,52.98660891771578],[-126.54959145260166,52.98642956719854],[-126.54959100075395,52.98625028193866],[-126.54957467563956,52.986070514877184],[-126.54957515688542,52.98589066047331],[-126.54952267544186,52.985727870134994],[-126.54940106209246,52.98555754921213],[-126.5492692968815,52.985396248795354],[-126.54914033136458,52.98523437042173],[-126.54900020888385,52.985075340746306],[-126.54888892611741,52.98490946228239],[-126.54882694651435,52.98473326025814],[-126.54875100376958,52.984559929042526],[-126.54861275073083,52.98440089912051],[-126.54848472373018,52.98423845083487],[-126.54836226534607,52.98407486490898],[-126.54824167389107,52.9839101406486],[-126.54813505371783,52.98374423969794],[-126.54801637253713,52.983583988489954],[-126.54781224312866,52.9834515922264],[-126.54758679743871,52.98333050011662],[-126.54734020140886,52.98323360205299],[-126.54705583055379,52.983172727372875],[-126.5468508379122,52.98304593618073],[-126.54668658676185,52.98289542415841],[-126.54652138990262,52.98274323994427],[-126.54639620997159,52.98258413773219],[-126.54632961603322,52.982411326214006],[-126.54631889611053,52.98222984707348],[-126.54632124170519,52.982049983692086],[-126.5463366682177,52.98187062441317],[-126.54632782780043,52.98169137760041],[-126.54621469153994,52.98152494020048],[-126.5460532393275,52.981374414224796],[-126.54582415780988,52.98125950301401],[-126.54560155663323,52.98114007019647],[-126.54542247952025,52.980996348222476],[-126.54518972098411,52.98088537022605],[-126.54490071303691,52.980897912248594],[-126.54462096786726,52.98090537277048],[-126.54431965491817,52.98083112319255],[-126.54410544032496,52.98071109302323],[-126.54402394191088,52.98053890466498],[-126.54403563951287,52.980359006987136],[-126.54403239827349,52.98017916928303],[-126.54402450100021,52.97999936201639],[-126.54411558708829,52.979828053220835],[-126.54432855006226,52.97970492989691],[-126.5445744012453,52.97960014776776],[-126.54484860532546,52.979525479927325],[-126.54503434393374,52.97938847875076],[-126.54517780732291,52.979228697068805],[-126.54530158186651,52.97906171823265],[-126.5454638913168,52.978916980874445],[-126.54572578481907,52.97882780075398],[-126.54596128114912,52.978716896074694],[-126.54621662942431,52.97862606881928],[-126.54648707201413,52.97854973817013],[-126.5467718140677,52.97849687212146],[-126.54706820188314,52.97847925316022],[-126.54736672877246,52.97848290502268],[-126.54766126528828,52.97846641371764],[-126.54793266602279,52.97839175161922],[-126.54822537964321,52.97837862902836],[-126.54852200446504,52.97837948991403],[-126.54882053806755,52.97838370281809],[-126.5491254054541,52.978372197736014],[-126.54943319358928,52.97837076321008],[-126.5497827806378,52.97842795736012],[-126.54992161787878,52.97856177576023],[-126.55006083328288,52.978723606005445],[-126.55031844914122,52.97880980633473],[-126.55060453031227,52.9788605802368],[-126.55089604858435,52.97889899300358],[-126.55119114574796,52.97892562700713],[-126.55148251246595,52.97895227772946],[-126.55175673999301,52.97902327423039],[-126.55202269019897,52.97910382906837],[-126.5522886559661,52.97918550378529],[-126.55255551154423,52.97926436787087],[-126.55282422666687,52.97934154628609],[-126.55309570429523,52.979416470022926],[-126.55336439920346,52.97949309151013],[-126.55363036262959,52.97957419845698],[-126.55389539457346,52.97965475338893],[-126.55417966407043,52.979708888801376],[-126.55446029831867,52.97977031973175],[-126.55474995361512,52.979808175961665],[-126.55504756493463,52.97981293327332],[-126.55533793445915,52.979833420637355],[-126.55564215575325,52.97984374805803],[-126.55591630780398,52.979909132502435],[-126.55618228608668,52.979990798393125],[-126.55644920558075,52.98007245924054],[-126.55684088411961,52.980137277625936],[-126.55705026396457,52.98009875419784],[-126.55707917945304,52.97995686331642],[-126.55740562612283,52.97988304875064],[-126.55769418988265,52.979837417360855],[-126.55797514433247,52.97978062473576],[-126.55827152162107,52.97976184816778],[-126.55856120238987,52.97980138023571],[-126.55880507207661,52.97990387073236],[-126.55904801760077,52.980007494623294],[-126.55930480788201,52.98009928203919],[-126.55957810824194,52.98016970003137],[-126.55985417822042,52.98023729837399],[-126.56012932376083,52.98030602998065],[-126.56038609596911,52.98039612982053],[-126.56064011536228,52.98049016860817],[-126.56088215821177,52.98059491356437],[-126.5611048069215,52.98071375276491],[-126.56127372735837,52.980861981752724],[-126.56146769266907,52.980998885671895],[-126.56172903948695,52.98108111693168],[-126.56202147881484,52.98111726572072],[-126.5623159981333,52.98109848789298],[-126.56261264968093,52.98109987803496],[-126.56284716297606,52.98112789266359],[-126.56303383910567,52.981136521233594],[-126.5631448979668,52.98121106756552],[-126.56328758422437,52.9813498988101],[-126.56353910708725,52.98146523375531],[-126.56379404285917,52.98155645550773],[-126.56407012866259,52.98162405288263],[-126.56431589510335,52.98172708765795],[-126.56459099786257,52.98179131790468],[-126.56488078764986,52.98183755726963],[-126.5652917557452,52.98187704727487],[-126.56560458162329,52.98197191386125],[-126.56582402239415,52.98184927631983],[-126.56606897475349,52.98175061216204],[-126.56630859803568,52.98167214301224],[-126.56654562334087,52.981538778839145],[-126.56681892837109,52.98146799058191],[-126.56711430608091,52.981443038090134],[-126.56741069845498,52.981424803280554],[-126.56770711307551,52.98140825292662],[-126.56800052702859,52.98137714015107],[-126.56828623142256,52.98132645864267],[-126.56857105485362,52.981280262894046],[-126.56887040116733,52.98127433622355],[-126.5691762691299,52.98126725674594],[-126.5694455697614,52.981315824958145],[-126.56964798073757,52.98145379526016],[-126.56990479506355,52.98154499477891],[-126.570182696025,52.98160920745],[-126.5704715427416,52.98165375234992],[-126.57073478421819,52.98173763985058],[-126.57097869435057,52.98184010503765],[-126.57122260577894,52.98194257867751],[-126.5714425222604,52.98206420856513],[-126.57166658544398,52.982216637577665],[-126.57190133693324,52.98226144134913],[-126.57214751203036,52.98218573438444],[-126.57239688161711,52.98206910676287],[-126.57265091369602,52.981953011739364],[-126.57291753102902,52.981871601053655],[-126.57317191552767,52.98178184062332],[-126.57338194525383,52.98165363189211],[-126.5735788096066,52.98151877249243],[-126.57379072505819,52.98139223913397],[-126.57399792264648,52.98126236669807],[-126.57418914122407,52.98112416310263],[-126.57431850967107,52.980963858496075],[-126.57445979840789,52.98078891947503],[-126.57458284016633,52.98064433311549],[-126.57474309950632,52.98049283283906],[-126.57489211195931,52.98033746973256],[-126.57498026124192,52.980165595062225],[-126.5751208922607,52.98001083727489],[-126.57528770684304,52.97986211005679],[-126.57544233408812,52.97970839511629],[-126.57559883328892,52.97955523556986],[-126.57576847282678,52.97940817912992],[-126.57591841790182,52.97925281003189],[-126.57603558067983,52.97908807176511],[-126.57612654349501,52.97891730287605],[-126.57619411243581,52.978741610260144],[-126.57628320848747,52.978570850334805],[-126.57641720960189,52.978409955690154],[-126.57656620098197,52.97825402555097],[-126.57668709688633,52.97808983300811],[-126.5767780549497,52.9779190635141],[-126.57687184816977,52.97775052116129],[-126.57693193560732,52.97757374404173],[-126.57697801713502,52.9773953501273],[-126.577136413242,52.97724554063786],[-126.57735581895247,52.97712344593007],[-126.57761294852287,52.977033097265824],[-126.57788239184997,52.97695614328403],[-126.5781661513008,52.97690264115421],[-126.57845274638926,52.976852495049854],[-126.57871841825565,52.97677275177476],[-126.57888144644703,52.97662179653912],[-126.57912263832371,52.97652536423286],[-126.57939109702234,52.976444485157984],[-126.57961801471257,52.976327951977595],[-126.57983458020212,52.97620418118197],[-126.58002859312813,52.97606820381769],[-126.58022541776124,52.97593276806919],[-126.58042973315277,52.975800656751254],[-126.58056707425068,52.97574955514539],[-126.58095465053225,52.975718510603194],[-126.58123185256241,52.9755955587713],[-126.58136115499944,52.97543468125491],[-126.58153449625426,52.97528815350789],[-126.58175764036588,52.97516827301659],[-126.58194701788327,52.97503567691275],[-126.58206880859807,52.974870353408264],[-126.58221214825899,52.974712767198646],[-126.58235361391591,52.97455462529446],[-126.58246147432652,52.97439441715708],[-126.58256168883175,52.97422079103617],[-126.58256575362088,52.974041481595826],[-126.58254930872786,52.97386171773242],[-126.58254967389281,52.97368466766093],[-126.58257297730691,52.973479490198606],[-126.58253920512354,52.97332893750525],[-126.58261054530898,52.97315770404009],[-126.582629530903,52.97297832070857],[-126.58263451996262,52.97279788600066],[-126.58269180145385,52.97262223073528],[-126.5827817909984,52.972450904862455],[-126.58292043427193,52.97229222017648],[-126.58297677345138,52.9721154488117],[-126.58299389194215,52.97193607453657],[-126.58301941837489,52.97175722340029],[-126.58311500762309,52.971586425259424],[-126.58324433684702,52.97142890674216],[-126.58338485504758,52.971270212106674],[-126.58353099082319,52.971114286382864],[-126.58375881646822,52.970998304925494],[-126.58395938200667,52.970866205502325],[-126.58415428233094,52.970730207361655],[-126.58437835099323,52.97061255796298],[-126.58460054574688,52.97049436162263],[-126.58480015091543,52.97036114490717],[-126.58499224852572,52.97022460342624],[-126.5851580573883,52.97007530123371],[-126.58534920444565,52.96993708749569],[-126.58554692422815,52.96980275825041],[-126.58567058997917,52.96964133852574],[-126.58578204737726,52.969473264939],[-126.58585615026657,52.9693014505167],[-126.58588170926373,52.96912595096951],[-126.58616548374597,52.96907804071875],[-126.58641307444172,52.96897707867691],[-126.58670954935111,52.968971676301244],[-126.58702237882895,52.96900205866233],[-126.58712463827386,52.9690469274422],[-126.58749922139681,52.96909212391557],[-126.5877986574261,52.96909903919022],[-126.58809456433272,52.96911940910477],[-126.58839220537543,52.9691313698808],[-126.58868974524948,52.96913493067413],[-126.58882920678757,52.96910453440973],[-126.58894042216784,52.96905467380425],[-126.58906826676831,52.968993524326926],[-126.58918718207518,52.96896099819108],[-126.58947542756128,52.968967956195534],[-126.58973957576792,52.969052361907465],[-126.59002893289345,52.969071639187845],[-126.5903280419613,52.969053897290934],[-126.59062005715653,52.969063639501236],[-126.59089336171266,52.96913566158192],[-126.59116575786726,52.96920881711521],[-126.5914408357659,52.96927410565461],[-126.5917392005272,52.969270366471804],[-126.59202013326187,52.96922021524261],[-126.59227243531544,52.96912313464769],[-126.59255627345661,52.96908136726415],[-126.59285549086974,52.96907146234371],[-126.59313265967072,52.96901907729051],[-126.59341833784612,52.96897562219452],[-126.5937136444553,52.96895284382504],[-126.59396031489433,52.96885354682336],[-126.59421453803867,52.96876094354949],[-126.59448864767208,52.96869064168801],[-126.59474003173099,52.96859468989425],[-126.59496310425614,52.96847590447748],[-126.59518618255207,52.96835655383031],[-126.5954026700504,52.96823331855982],[-126.59563140427315,52.96811955024331],[-126.5958971306628,52.968049852189516],[-126.5960625170242,52.96820589460831],[-126.59609943690135,52.968378830500754],[-126.59616153346518,52.96855108317958],[-126.59632592788908,52.968703212723916],[-126.59659274355774,52.96877693980643],[-126.59688967179892,52.9688040058591],[-126.59718496043749,52.96878121886285],[-126.59746175248947,52.96883528803242],[-126.59774504843148,52.96888707346604],[-126.5980391891601,52.968915280297665],[-126.59832161739362,52.968972115772935],[-126.59862009764645,52.968976758313154],[-126.59889976863651,52.96903584754303],[-126.59917764740129,52.96910111280922],[-126.59945373218142,52.96917030404064],[-126.59972706034247,52.96924287034991],[-126.59999760816173,52.9693171265486],[-126.60002107804078,52.96932765687167],[-126.6002313784366,52.969427436496346],[-126.60047713817738,52.96952871140248],[-126.60071090378868,52.96963957622056],[-126.6009483760083,52.96974762474172],[-126.6011867743468,52.969855659093675],[-126.60137339756477,52.96999534197382],[-126.6015442727715,52.970142939932714],[-126.60174849671418,52.97027356784118],[-126.60197119848931,52.970392886393185],[-126.60224632449366,52.97045983486473],[-126.60254416055702,52.97048352935279],[-126.60283473919675,52.97045627009602],[-126.60311452001571,52.97039152202606],[-126.60340576737903,52.970345208348434],[-126.60369601695166,52.97036109483013],[-126.60392144220017,52.97047423714834],[-126.60412670348184,52.97061213481911],[-126.60432074403242,52.970747848549514],[-126.60450924637317,52.97088750785871],[-126.60469959116695,52.97102548104279],[-126.60490384497552,52.97115722389462],[-126.60513034621299,52.97128044343025],[-126.60535592369065,52.97140366727391],[-126.60555643512525,52.97153429868285],[-126.6057021679944,52.97168258455243],[-126.60576990352834,52.97185480306183],[-126.60579956541322,52.97203898765872],[-126.60584504035808,52.972219720274175],[-126.60594628541385,52.9723872840894],[-126.60608382071293,52.972548502539496],[-126.6062445437596,52.97270119282268],[-126.60642193421958,52.97284538840308],[-126.60661320310528,52.972982233092424],[-126.60681561503003,52.973114537835094],[-126.60702450884257,52.973244011911945],[-126.60723430497916,52.97337179563977],[-126.60745336305482,52.973493928434934],[-126.60767980406925,52.973611540499036],[-126.60789977376501,52.97373254719656],[-126.60808920114498,52.97386939896219],[-126.60823786936204,52.97402663092222],[-126.60844486665728,52.97415330635806],[-126.60867502715121,52.97426865616699],[-126.6088922699547,52.97439471312685],[-126.60908446981082,52.97452987258403],[-126.60917179967922,52.97470086709689],[-126.6092247045121,52.97487819811495],[-126.60940288683163,52.9750117441737],[-126.60967550678559,52.97496551158378],[-126.60989197796484,52.974841694426324],[-126.61015380761137,52.97475909382607],[-126.61045010272198,52.974738509757344],[-126.61074764453464,52.97474032971586],[-126.611045281795,52.9747477512372],[-126.61134120010607,52.974766386543216],[-126.61163648361406,52.97480519451545],[-126.61194603033812,52.97486242143475],[-126.61225644841315,52.97478628718688],[-126.61247675047079,52.97473528185196],[-126.6127691362732,52.974702386081425],[-126.61306249399378,52.97467172565034],[-126.61333675600179,52.97461146449674],[-126.61362335066492,52.97456514999086],[-126.6139217667585,52.97456247512781],[-126.61420865175505,52.974536327802184],[-126.61446850892831,52.974447013417546],[-126.6146915637963,52.9743276262742],[-126.61492027102167,52.97421325621248],[-126.61520307424058,52.97416304012802],[-126.61550158471687,52.97416708413252],[-126.61579690735516,52.97414368576805],[-126.61609453458003,52.97415165933818],[-126.61639211174497,52.97415514120277],[-126.6166894304382,52.97414182418878],[-126.61698683695553,52.974133544015174],[-126.61728434228543,52.97413310651404],[-126.61758113401606,52.97414723932197],[-126.61787880087645,52.97415688454225],[-126.61817637151154,52.97416092670024],[-126.61847393261601,52.974163282830126],[-126.61877236188727,52.974161716160836],[-126.61906985930537,52.97416071839515],[-126.6193648600093,52.97417989417651],[-126.61965554847184,52.974222632691074],[-126.61995250496109,52.97424796430049],[-126.62020789843376,52.97417378377968],[-126.62044508884253,52.97406608163519],[-126.62071348609169,52.973987349277564],[-126.62098853388,52.97391754576232],[-126.6212702732054,52.973859467756164],[-126.62155679690592,52.97380921674606],[-126.62184334444015,52.97376064127213],[-126.62213179739614,52.9737148519646],[-126.62241451492167,52.97365957192835],[-126.62267434123362,52.9735696746818],[-126.62295449660697,52.97353009477497],[-126.6232486614528,52.97355655339598],[-126.62354724243157,52.97356562365151],[-126.6238395164988,52.97358928491241],[-126.62412199378993,52.97364493790465],[-126.62440176532745,52.97370732794517],[-126.62468154444345,52.97376916148346],[-126.62491630356321,52.973877732053296],[-126.62519790172152,52.973937304629466],[-126.625484971096,52.97398732717947],[-126.62575097985852,52.97406435441389],[-126.62599684377811,52.97416670524462],[-126.6262390278782,52.974272427846294],[-126.62647381857805,52.97438268047706],[-126.62670400596387,52.97449743041283],[-126.62693972265367,52.97460655662473],[-126.6272222189558,52.97466275790758],[-126.62750107659534,52.974725145475965],[-126.62777722082143,52.97479371442631],[-126.62805517974545,52.97485778183913],[-126.6283358719882,52.974917916532064],[-126.62861927257234,52.9749724332907],[-126.62890542124018,52.97502301721171],[-126.62919337771845,52.97506966433099],[-126.62948758024291,52.97509666302958],[-126.62976644405096,52.97515904522097],[-126.6300453004431,52.97522087099447],[-126.63030128309245,52.975313064722734],[-126.63053333290462,52.97542556507145],[-126.6307321103248,52.975559524802094],[-126.63090682207601,52.975704827641444],[-126.63104164062074,52.97586490221112],[-126.63113372559275,52.976036420092186],[-126.63114943489724,52.97621506137895],[-126.6311222763345,52.97639618232344],[-126.6292865224097,52.979787855742714],[-126.62913771889556,52.979943843380575],[-126.62905819261195,52.98011683423556],[-126.6290384595171,52.98029622925875],[-126.62900563490237,52.980473453007995],[-126.62892237616092,52.98064646362832],[-126.62894274245146,52.98082564458641],[-126.62901338413829,52.980997278054744],[-126.62921316454167,52.98113404054287],[-126.62935348266818,52.98128680806284],[-126.62930669305186,52.98146634748346],[-126.62918320819942,52.98163116427883],[-126.62905079799086,52.981760735416266],[-126.6288316162817,52.981889648820136],[-126.62857076058856,52.9819750822446],[-126.62823360586601,52.98201106139448],[-126.62795493549804,52.98209098559882],[-126.62770630276331,52.98218363111273],[-126.62742171950846,52.98224229490591],[-126.62720518739172,52.982361106073604],[-126.62705216524827,52.9824851817551],[-126.62680675690906,52.982607507460436],[-126.62655053265763,52.982691791142905],[-126.62628871903175,52.98277666872047],[-126.62613603923685,52.982924273066814],[-126.62611729044428,52.983107579469696],[-126.62606284965823,52.983275396589114],[-126.62599111342976,52.983471875269785],[-126.62589346433992,52.983618622177886],[-126.62574931631791,52.98377626563992],[-126.62561080377893,52.98393556431213],[-126.62548725784266,52.98409870084769],[-126.62537028924346,52.98426459924692],[-126.62523269074194,52.98442332780199],[-126.62508385626309,52.984579318852596],[-126.62493502056033,52.98473530073681],[-126.6247861755983,52.98489072666582],[-126.62463732954801,52.98504615239237],[-126.6244922384947,52.98520324333358],[-126.62433965063708,52.985358123707606],[-126.62417111228459,52.98550637395458],[-126.62399880988234,52.985653514347014],[-126.62381241425854,52.98579344992158],[-126.62359589512288,52.985915059860766],[-126.6233605697287,52.986026674875774],[-126.62315255794756,52.986155518110586],[-126.6229445135619,52.98628324057832],[-126.62270921737485,52.986397104169974],[-126.62245490991043,52.98648697124601],[-126.62216825263735,52.986533862651605],[-126.62187007270336,52.98655841200328],[-126.62157359420043,52.986571737109124],[-126.62127511066909,52.98657555179842],[-126.62097738738078,52.98656703561912],[-126.62068183406956,52.98658036257052],[-126.62040571304773,52.98664568783494],[-126.62018169230137,52.9867656455345],[-126.6199557799753,52.98688392742711],[-126.61966994481637,52.98692409402929],[-126.61937077809425,52.986944715794806],[-126.61907065443042,52.986964221270306],[-126.61877434352428,52.9869893087387],[-126.6184961324115,52.987040629042035],[-126.61826082011905,52.98715448370248],[-126.61804808292618,52.9872811014084],[-126.61786074323767,52.987421588039915],[-126.61770998095592,52.9875758940939],[-126.61757329304403,52.98773629372823],[-126.61742723307643,52.98789281585222],[-126.61727273596527,52.98804714084892],[-126.61712665069894,52.988203097933535],[-126.61699839468577,52.98836569378293],[-126.61687669982595,52.98852993148467],[-126.61674468578055,52.988690861370145],[-126.61658266303607,52.98884129831601],[-126.61637460201509,52.98897012945116],[-126.61614585179262,52.989086742261264],[-126.6159029691568,52.989194464029644],[-126.61571360347202,52.9893260021356],[-126.61561815269526,52.98949906574589],[-126.61550767000779,52.98966604022395],[-126.61539907542577,52.98983356947912],[-126.6152942049919,52.99000164393321],[-126.61519308847075,52.99017025447657],[-126.61504982700508,52.9903284350796],[-126.61487653192465,52.99047445503819],[-126.61474449610205,52.99063481778149],[-126.61469855067935,52.990812669273964],[-126.61472072780846,52.99099184186848],[-126.61471025881119,52.99117118467425],[-126.61469513234431,52.991350551744475],[-126.61466879514691,52.99152997724604],[-126.61463778410538,52.991708306538484],[-126.6146208721842,52.991893285602],[-126.61459984867507,52.99205306920465],[-126.61451761105836,52.99223726820758],[-126.61452395095942,52.992417643789146],[-126.61454239620448,52.99259683569921],[-126.61462235354644,52.9927701041645],[-126.61476735577443,52.99292566934927],[-126.61492527386633,52.99306995251399],[-126.61494001342317,52.993250848938246],[-126.61492767876545,52.99343020125529],[-126.61491721808059,52.9936100995696],[-126.6148619155631,52.993786314295455],[-126.61483745854169,52.99396572976446],[-126.61481205278072,52.99414459436335],[-126.61472214641763,52.99431594245646],[-126.6146135368601,52.99448347052399],[-126.61450293204334,52.99464316502733],[-126.61441501790374,52.99482235524579],[-126.6142970198752,52.99498712603084],[-126.61421042244358,52.99506433926964],[-126.61418741783815,52.99515129714678],[-126.61415176866683,52.99533133536936],[-126.61412820900618,52.99550906052704],[-126.61435754383851,52.995623282200334],[-126.6147118727936,52.9956051918553],[-126.61503475267239,52.995671296666615],[-126.6152449265492,52.99568588777221],[-126.61554190054667,52.99570226646159],[-126.61583881801747,52.99571472726212],[-126.61614875789954,52.99572431340792],[-126.61642483329598,52.995780018286666],[-126.61671827123186,52.99580985908733],[-126.6170143210607,52.99582623890858],[-126.6173121815749,52.99583980265338],[-126.6176178555814,52.995876300443975],[-126.61790260494688,52.995886578699526],[-126.61819168011357,52.99593660857993],[-126.61840340645932,52.9960587585885],[-126.61858651778935,52.99620178401461],[-126.618769622261,52.99634425339454],[-126.61896753494649,52.996478245114815],[-126.61917933821387,52.99660431074955],[-126.6194077765368,52.996720212639865],[-126.61965190626093,52.99682369662544],[-126.6198941874647,52.99692831933669],[-126.62011802038867,52.99704759674129],[-126.62030389957563,52.99718725223159],[-126.62043408971937,52.997348481927595],[-126.62055502206864,52.99751368659497],[-126.62068894672433,52.99767490529771],[-126.62084885886931,52.9978253373161],[-126.6210356776282,52.99796554246304],[-126.62123083907105,52.99810234171033],[-126.62143342425001,52.998235175105144],[-126.62164526969359,52.99836404189169],[-126.62184228332109,52.998498589254595],[-126.62200217131922,52.99864789925316],[-126.62214166955422,52.998805725201144],[-126.62226817189618,52.99896921333264],[-126.62238445923441,52.999135561087336],[-126.62249331516419,52.99930418904296],[-126.62259565567086,52.99947341604425],[-126.62267748546084,52.99964498338957],[-126.62272001575982,52.99999997206702],[-126.62287253609333,53.00015436664925],[-126.6230148344027,53.00031216771069],[-126.6231552757126,53.00047054316044],[-126.62337543676252,53.00059208373906],[-126.62366889635908,53.0006207866965],[-126.62392411719378,53.00071468294624],[-126.6240942603446,53.000861694638516],[-126.62420869364782,53.00102805028539],[-126.62424956342824,53.00120600073803],[-126.62428018411039,53.001384561212056],[-126.62429962333621,53.001564310370064],[-126.62430693034743,53.001743558985396],[-126.62429743305341,53.00192345234079],[-126.62425524822038,53.00210128660004],[-126.62411197210442,53.00225892134527],[-126.62396964376195,53.00241710667129],[-126.6237822256803,53.00255649003277],[-126.62357318530145,53.0026847730081],[-126.62342897078096,53.0028418560172],[-126.62333533971395,53.00301267378036],[-126.62326136244253,53.00318674920516],[-126.62320982313905,53.00336350286044],[-126.6231601581591,53.003540811321834],[-126.62311610048233,53.003718654866475],[-126.62309167259303,53.00389807098849],[-126.62310082647335,53.004077309647315],[-126.62319665697021,53.00424768169892],[-126.62336404417249,53.00439639406057],[-126.62358513537582,53.00451679965073],[-126.6238550566727,53.00459325427586],[-126.62412862956838,53.00466407727638],[-126.62437374898681,53.00476699027205],[-126.62461054509033,53.004875549561696],[-126.6248427263315,53.00498805921184],[-126.625064757364,53.005107901255094],[-126.6253181498662,53.00520235987753],[-126.62557339367996,53.00529569655653],[-126.62582493838207,53.00539128443692],[-126.62605068271058,53.00550942858248],[-126.62627086982475,53.0056303986826],[-126.62653988540443,53.005707407774736],[-126.62680155296918,53.005793419656264],[-126.62700880159991,53.00592285673708],[-126.6271734179401,53.00607269892505],[-126.62738714341548,53.006197618715596],[-126.62753133711294,53.00635484808546],[-126.6276309072948,53.0065240849476],[-126.62777325294714,53.00668244437995],[-126.62793786658047,53.00683172072448],[-126.62808949783027,53.00698666868811],[-126.62823369680403,53.007143897125836],[-126.62842428102401,53.007281828995374],[-126.62864355986949,53.007403920005714],[-126.62887393869978,53.00751810762041],[-126.62910522803769,53.00763116938467],[-126.6293586529321,53.00772618389299],[-126.6295834703264,53.00784376142471],[-126.62976850352186,53.007984517611696],[-126.62993313758052,53.008134355764845],[-126.63011168890004,53.00827795186091],[-126.63030970117502,53.008412479338],[-126.63051881508214,53.00854022387568],[-126.63072608843325,53.00866965421354],[-126.63097951489284,53.008764109436065],[-126.63123294234593,53.00885855514508],[-126.63151930566816,53.00890801124577],[-126.63181018727622,53.00894791336043],[-126.63208745994665,53.00901366016006],[-126.63236930767054,53.00907265852802],[-126.63262916599908,53.00916034351361],[-126.63272225367893,53.00933073125403],[-126.63288225404463,53.0094822664439],[-126.63293902632871,53.00965900735404],[-126.63293237139688,53.00983888549362],[-126.63290797316033,53.010017747253805],[-126.63293304470645,53.01019689930845],[-126.6329189143094,53.01037626171779],[-126.6329542375079,53.010554793964644],[-126.63312631808759,53.01070178174916],[-126.63322219544138,53.010871589241034],[-126.63337571889164,53.01102596427152],[-126.63358578732696,53.011153133414076],[-126.63377827371349,53.01129104627617],[-126.63400496400205,53.01140692890609],[-126.63426487164313,53.01149573053729],[-126.63452933969202,53.01157779278394],[-126.63479932540172,53.0116542130759],[-126.6349537749193,53.011808016290495],[-126.63505991210124,53.011976090668846],[-126.63506819225428,53.01215533252572],[-126.63504006134086,53.01233477040924],[-126.63508006139753,53.01251272090128],[-126.63513218716493,53.01268948552899],[-126.63514047606988,53.012869283048346],[-126.63515715869929,53.013049044313036],[-126.63520555165758,53.01322582895859],[-126.63537579225489,53.013373379026106],[-126.63563385816309,53.01346387283006],[-126.63590293199269,53.01354030446448],[-126.63611394641293,53.01366746392335],[-126.63625540668828,53.01382581752321],[-126.63640616723697,53.013980759147934],[-126.63655227933228,53.01413741094887],[-126.63666584776986,53.014303193570285],[-126.63675617180952,53.014474713213566],[-126.63681017391389,53.01465146681666],[-126.63679232447535,53.014830849377056],[-126.63672866776285,53.01500655282672],[-126.63663787976076,53.01517792946918],[-126.63656206036426,53.015351457354456],[-126.6365030853349,53.0155277001052],[-126.63640667751766,53.0156979862929],[-126.6362812201407,53.015860576351955],[-126.6362054065259,53.01603466864361],[-126.63614081121618,53.016209820904095],[-126.63604720179988,53.01638064740847],[-126.63590487072308,53.01653885478133],[-126.63576909086524,53.016698702976804],[-126.6357147791595,53.01687547581839],[-126.63566701763676,53.01705277806741],[-126.63567438372402,53.017232589040916],[-126.63579448247938,53.01739721649756],[-126.6359971736242,53.017528911949825],[-126.63617300192443,53.01767418940083],[-126.63631354968207,53.017832547551485],[-126.63637406482383,53.018008145348944],[-126.63643552995029,53.01818430272486],[-126.63662248121344,53.01832391678059],[-126.63684092298753,53.01844656145623],[-126.63704177192231,53.01857937659407],[-126.63722965961597,53.01871842883234],[-126.63741940074344,53.01885747075189],[-126.63761100837952,53.018995381737014],[-126.6378044526527,53.01913216194046],[-126.6380053229133,53.01926498426711],[-126.63821451338275,53.01939271434185],[-126.63842741412348,53.01951873867763],[-126.63864770909242,53.019639684667865],[-126.638893851002,53.019740885373274],[-126.63913261800094,53.0198482839857],[-126.63933071277452,53.019982795398654],[-126.63949170939978,53.0201337508664],[-126.63963320379948,53.020292099812295],[-126.63978214928233,53.020448167100085],[-126.63992177859478,53.02060652579694],[-126.64000467716627,53.02077920327362],[-126.64003538669125,53.02095832229223],[-126.64005862751327,53.02113748180693],[-126.64016294082063,53.02130555183672],[-126.64036289601522,53.021438930825795],[-126.64056377024556,53.02157174869695],[-126.6407451905094,53.02171419194579],[-126.64086160394625,53.02187995453529],[-126.64103560813578,53.02202579921309],[-126.6412068369744,53.02217277924709],[-126.64138362009939,53.02231748776136],[-126.64159561885715,53.02244352016162],[-126.64186656172788,53.022516557423955],[-126.64215729323894,53.02247744188493],[-126.64239787485326,53.02257977708068],[-126.64254405557256,53.02273754110856],[-126.64274217462305,53.02287204656463],[-126.64293195032717,53.02300995875487],[-126.64308369402079,53.02316488595982],[-126.64320569718534,53.02332893937876],[-126.64333328635176,53.023491841667045],[-126.64344318011895,53.02365820191768],[-126.64348790190786,53.02383612287013],[-126.64353168291896,53.02401404892059],[-126.64362203821865,53.0241844329217],[-126.64378771015446,53.02433424524981],[-126.64394688028743,53.024485769143325],[-126.64403539641371,53.02465784811534],[-126.64410807323006,53.02483168979805],[-126.64422170831676,53.02499802880323],[-126.64435115681215,53.025159799194526],[-126.64444897909925,53.02532958591503],[-126.6445374905848,53.025501108687074],[-126.64463345539883,53.02567146116016],[-126.64473221274962,53.02584068671445],[-126.64486539209007,53.02600187135084],[-126.6450292080407,53.02615169198257],[-126.64521901426696,53.026290155966464],[-126.64543473862841,53.026414475690764],[-126.64561712867359,53.02655635015631],[-126.64572332138042,53.026723848860115],[-126.64574567152313,53.02690356745469],[-126.64574280326417,53.02708343301128],[-126.64574832271299,53.027262687895934],[-126.64576412946789,53.027442442243434],[-126.6457687313476,53.02762226685994],[-126.64575372306297,53.02780163403536],[-126.6457489786514,53.0279809450175],[-126.64577411496575,53.02816009244683],[-126.64579365727533,53.028339826253585],[-126.64586631574578,53.02851255508567],[-126.64603575397139,53.028661778649436],[-126.64623111993014,53.028797413595726],[-126.64640888041458,53.028941544162116],[-126.64655230401662,53.02909931794064],[-126.64669381188862,53.02925485201031],[-126.64690952796752,53.02937637212965],[-126.6470204177808,53.02954439948744],[-126.64713315054605,53.029710740308616],[-126.64724216602434,53.029878221931185],[-126.64735397633751,53.03004568810844],[-126.6475149969869,53.03019383512594],[-126.64778239029789,53.03027416620339],[-126.64807794772928,53.03030336235901],[-126.64836716647976,53.030346030002626],[-126.64865189543947,53.03039993588602],[-126.64892476667302,53.03047182581343],[-126.64914604045309,53.03059050545533],[-126.64927367422071,53.03075340062586],[-126.64933613766222,53.03092954486299],[-126.64938181816396,53.03110745772522],[-126.64944707430024,53.03128245700988],[-126.64953841244582,53.031453960054314],[-126.64963998822782,53.031622600848245],[-126.64979547964938,53.031774692504584],[-126.65003527469173,53.03188150737286],[-126.65031640925343,53.03194382854809],[-126.65060657423903,53.03198592973874],[-126.65089578129755,53.03202691497254],[-126.65119230291904,53.03205665384097],[-126.65146031472956,53.03211568312799],[-126.65160939030498,53.03227565152101],[-126.65173331178336,53.03243912919631],[-126.65181908189527,53.03261121695827],[-126.65187128706268,53.03278797218027],[-126.65188993089922,53.032967709607576],[-126.65190481588871,53.03314691199682],[-126.65192998122954,53.033326057572786],[-126.65196634493904,53.03350458547573],[-126.65202416145678,53.03368074479948],[-126.65211551516855,53.03385224560876],[-126.65223199772586,53.03401744006322],[-126.65243415940759,53.034288046162914],[-126.65257275917452,53.03412928533744],[-126.65270664648608,53.03396830933661],[-126.65283678864988,53.03380679809954],[-126.65302420855292,53.03366569505089],[-126.65328348825773,53.033580776116096],[-126.65355691445234,53.03350530723269],[-126.65380756408038,53.033406432793264],[-126.654032679528,53.03328752980818],[-126.65421448755127,53.033145335365255],[-126.65436521859081,53.03298706976281],[-126.6544597604283,53.03281902185652],[-126.65449064297049,53.03264125114187],[-126.65449622558393,53.03245857385878],[-126.65451307255438,53.032278630920615],[-126.65452898675537,53.0320992578811],[-126.65452232430385,53.03190936949392],[-126.65453279920611,53.031740667137974],[-126.6546750514464,53.03157852166733],[-126.65490410387345,53.03147248556433],[-126.65519178167133,53.03141429735152],[-126.65546519924207,53.03133938865014],[-126.65573198249072,53.03125778402581],[-126.65598926434018,53.03116671158032],[-126.6562248060223,53.03105839572084],[-126.65643672229184,53.03093171756604],[-126.65664577636096,53.03080169334876],[-126.65684262992913,53.03066837506508],[-126.65691838506733,53.03049427101287],[-126.65693709737104,53.0303148818237],[-126.65689510400507,53.03013583057558],[-126.65692114175047,53.029947992100524],[-126.65711933925394,53.029841002757856],[-126.65742622314974,53.02981688270679],[-126.65770462635413,53.029763786779085],[-126.6578432349733,53.029607815950634],[-126.65787967771625,53.029428327644254],[-126.65790677357809,53.02924833563769],[-126.65797878665082,53.02907425158633],[-126.65815589562088,53.02893263253428],[-126.65842261765431,53.02884934562375],[-126.6587066883469,53.02874018900059],[-126.6589153633972,53.028646584410446],[-126.65908687354495,53.02850555991244],[-126.6591129963036,53.02832388765376],[-126.65912248238264,53.0281523931029],[-126.65915136137822,53.027967343799546],[-126.65915323167849,53.02778748327147],[-126.65914859926512,53.02760934433389],[-126.65915232599971,53.02742779707887],[-126.65914954374496,53.027248527234406],[-126.65916823025512,53.027069137434026],[-126.6592196746932,53.02689404672861],[-126.65925883102395,53.026708939833775],[-126.65941670138535,53.02659264261045],[-126.65968020361966,53.02648304256801],[-126.65987324666042,53.026345813678816],[-126.66004370744078,53.0261986349412],[-126.66019914650737,53.02604537257077],[-126.66033295323254,53.02588270201947],[-126.66046396786997,53.025721176424],[-126.66067593201001,53.02560009244786],[-126.6609311795127,53.02550117632047],[-126.66118747165974,53.02540897698574],[-126.66144567366537,53.02531956323229],[-126.66167077471778,53.025202885906126],[-126.6618760148308,53.02507063205696],[-126.66208217123437,53.02493781690585],[-126.66234709538567,53.02486013351348],[-126.66264397681229,53.024856225401095],[-126.66291051139379,53.0249421299213],[-126.66314477982425,53.02505510806093],[-126.66341209151597,53.02513035751114],[-126.66370336809108,53.02518643140543],[-126.66383051844623,53.02519635667718],[-126.66397851233819,53.02516526943835],[-126.66418559496864,53.02503188062241],[-126.66442580403542,53.02492743881444],[-126.66470003459247,53.0248480213821],[-126.66498481394994,53.02484697241699],[-126.66526787032245,53.0249142941517],[-126.66554897226395,53.02497601458973],[-126.66583910474098,53.02501807849602],[-126.66613614510148,53.02502424553041],[-126.66641627414586,53.02496383991327],[-126.66668583397279,53.024885000015594],[-126.66694874388368,53.024799473865535],[-126.66721453169488,53.02471841299066],[-126.66749080788911,53.02465073860949],[-126.66777184988867,53.02458975982033],[-126.66804908582513,53.02452431975867],[-126.66831584003825,53.02444604775623],[-126.66857496248144,53.024356621983294],[-126.6688312222368,53.02426384128324],[-126.66909033629885,53.02417497019042],[-126.6693645973482,53.02409833849278],[-126.66964453287197,53.02402727662806],[-126.66990653188522,53.02394343423879],[-126.67012510332502,53.02382957445395],[-126.67029929456373,53.02368403556064],[-126.67045457528336,53.02352460161639],[-126.67061837129413,53.023371833307266],[-126.67082279898653,53.023249097219384],[-126.6711037117904,53.02318082311804],[-126.67139039396804,53.023123165103264],[-126.67168471302888,53.023076112503006],[-126.671974311294,53.023026280223995],[-126.67223835296666,53.022954182083545],[-126.67245210156331,53.022830825241826],[-126.6726092471836,53.0226719334756],[-126.67272145837626,53.02250488918747],[-126.67278212460448,53.02232637755136],[-126.67276254185178,53.022151129345225],[-126.67267479631768,53.021976260828275],[-126.67261132324644,53.02180014227419],[-126.67254505994975,53.021625151152435],[-126.6724610865075,53.021452510973134],[-126.6723892315946,53.02127811635948],[-126.67231924450282,53.021103711043004],[-126.67225297470061,53.020928163947936],[-126.67221002644422,53.02075079862281],[-126.67217259445508,53.020568928639356],[-126.67203108420874,53.02041734139781],[-126.67179848385251,53.020292600953475],[-126.67168584788402,53.02013693144405],[-126.67165226534506,53.01996119781776],[-126.67164842769759,53.01977800682259],[-126.67162944633351,53.01958089975102],[-126.67159792925649,53.019418600785045],[-126.67163059748617,53.019240813563755],[-126.67164165891973,53.01905417604128],[-126.67166857463098,53.01886689243908],[-126.67164510438043,53.0186815809899],[-126.67165576496491,53.01852912667885],[-126.67166298836885,53.0183369082198],[-126.67168913689349,53.018159713773244],[-126.67168161835109,53.01797991413357],[-126.6716713154984,53.01780068611719],[-126.67169369406979,53.017621271993576],[-126.67170858923434,53.01744190045858],[-126.67171602203076,53.017262006642525],[-126.67172251391051,53.017082127128994],[-126.67172807353121,53.01690280869353],[-126.67172803799592,53.01672295734716],[-126.67173079568079,53.01654309903989],[-126.67173256800088,53.016360440485606],[-126.67187204286604,53.01620668756427],[-126.67204993088416,53.01606112416553],[-126.6722343713913,53.015917208433784],[-126.67240567953141,53.01576944087159],[-126.67257226712003,53.015618894116315],[-126.67274076213212,53.01547002152449],[-126.67288206164913,53.0153734135729],[-126.67316358773984,53.01522949821818],[-126.67343117960016,53.01514896796789],[-126.67367591386889,53.01503999826167],[-126.67381540409342,53.01488792806865],[-126.67388171797226,53.014713309103065],[-126.67393113981596,53.01453317490762],[-126.67399555899718,53.014356881362396],[-126.67407870919983,53.01418440710555],[-126.6741655746435,53.01401078202497],[-126.67433317012308,53.013865273724974],[-126.67452986024448,53.01372912790148],[-126.67472931522572,53.01359128061588],[-126.67491563828476,53.01344958172614],[-126.6750578939111,53.01329637349687],[-126.67512048424446,53.01312289548396],[-126.675148392987,53.012940086822745],[-126.67520437854064,53.01276272013786],[-126.67527067441867,53.012587535468995],[-126.67530421832545,53.01240693553682],[-126.67537621164611,53.01223787666665],[-126.67556249996042,53.01209450045752],[-126.67579694512139,53.0119861497102],[-126.67606264473775,53.01190562403271],[-126.67627439747912,53.01177835309134],[-126.67650219666031,53.0116627509731],[-126.67676590117601,53.01157439129336],[-126.67701923156321,53.011479932037304],[-126.67721881078165,53.01135104391452],[-126.6773863228634,53.01120161397438],[-126.67754628613933,53.01104718019762],[-126.67772039054606,53.010901064549316],[-126.67795661888277,53.010788216927494],[-126.67819293229341,53.01067984155437],[-126.6783033156321,53.01051953323048],[-126.67835828736081,53.010337688340954],[-126.6784226818126,53.010161391941956],[-126.6784795997488,53.00998457374058],[-126.67852808873634,53.00980557185215],[-126.67843384580385,53.00963242904264],[-126.67832107531237,53.00941008857943],[-126.67847194537825,53.00927139330325],[-126.67857081516729,53.009149805246835],[-126.67867902676157,53.00902871913013],[-126.67885654821113,53.008863541531674],[-126.67905883938545,53.00873070797965],[-126.67925456770253,53.00859567972817],[-126.67943147567938,53.0084512304095],[-126.67959617587138,53.00830180419933],[-126.67975709094574,53.00815016742159],[-126.67991894552146,53.007998516023214],[-126.68008740250947,53.00785075271494],[-126.68025485482964,53.0076990774993],[-126.68042133818662,53.007545722308784],[-126.6805991606594,53.0074001452745],[-126.68079870080966,53.00727068607863],[-126.68103319579336,53.007167926847764],[-126.68130173460428,53.007091854713856],[-126.68158631103722,53.00702690374006],[-126.68186519673611,53.00695637325828],[-126.68212040881826,53.006865253335775],[-126.68235477828544,53.00675408353451],[-126.68258438258475,53.00663733807982],[-126.68282347167317,53.006530066411074],[-126.68307961989848,53.00643893894277],[-126.68334335947364,53.00635561077731],[-126.68360992646377,53.00627450672461],[-126.68387459564296,53.00619060720448],[-126.68413073956792,53.00609947743499],[-126.68438777211884,53.00600610083766],[-126.68464196610671,53.005909943251005],[-126.68488765841023,53.00580710220449],[-126.68511731393346,53.00569427779924],[-126.68532622835242,53.005568682638845],[-126.6855200465407,53.00543308987932],[-126.68570255581197,53.00529083922764],[-126.68588128552376,53.0051458043939],[-126.68606000504325,53.005000213535084],[-126.68624344555825,53.004858521329275],[-126.68644097249711,53.004721784828256],[-126.68665257681296,53.004589448220564],[-126.68686978247749,53.0044581991424],[-126.6870860700068,53.00432751078988],[-126.68729110307937,53.004193534922145],[-126.68747740656036,53.00405574145324],[-126.68763745130948,53.00391025692128],[-126.68776002058564,53.003756026298774],[-126.6878263776015,53.00358867677808],[-126.68784868947968,53.00340981383103],[-126.68784570620495,53.003225504606256],[-126.6878380039952,53.003038417020015],[-126.6878452844576,53.00285348312615],[-126.68788532851119,53.002675081414786],[-126.68794408159738,53.00249936742521],[-126.6880121844926,53.00232472835193],[-126.6880858858661,53.00215004758491],[-126.68816520408254,53.00197646348987],[-126.68824732275444,53.0018034187696],[-126.68833132206001,53.001630362992444],[-126.68841531475306,53.00145786296775],[-126.68850868077772,53.00128699344622],[-126.68861045531094,53.001117195280266],[-126.6887141045238,53.00094795081499],[-126.68881026926992,53.000777620438384],[-126.68889053483481,53.00060570649927],[-126.68894089008111,53.00043004978374],[-126.68895290527256,53.00025012586065],[-126.68896097827637,53.00000019467036],[-126.6889541858398,52.99986857347877],[-126.6889428739297,52.999689350553794],[-126.68892596004791,52.99950903978381],[-126.68889971819011,52.99932990404952],[-126.68885950521091,52.99915197047219],[-126.68880251443521,52.99897525543509],[-126.68873341915007,52.99879973161771],[-126.68865497830883,52.998624262328924],[-126.68857096335381,52.99844938132229],[-126.6884850680815,52.998274520185795],[-126.68840198016028,52.99809963361743],[-126.6883235660547,52.99792472865561],[-126.68825447766993,52.997750324986875],[-126.68819751843054,52.997575285706205],[-126.68815735547741,52.99740015731573],[-126.68813867036576,52.99722545934018],[-126.68815822529352,52.99704997339709],[-126.68821512160117,52.99687539899385],[-126.68829626831176,52.99670011821367],[-126.68838767069852,52.996524777476864],[-126.6884772211207,52.996349447460815],[-126.688551808669,52.99617308418075],[-126.68859746899142,52.995996325022396],[-126.6885917638898,52.995816513122286],[-126.68857017115519,52.99563566446907],[-126.68857752299401,52.99545633207047],[-126.68860995656419,52.99526957400645],[-126.68868925965575,52.995095979886045],[-126.68886633361058,52.99496720160906],[-126.68913551622074,52.99487934539914],[-126.68941037778396,52.994796502356955],[-126.68967973083046,52.99471928472256],[-126.6899596356999,52.9946593778736],[-126.69024041993198,52.99459666828728],[-126.69051343868615,52.994515509783135],[-126.69079660611337,52.994484716381486],[-126.69108999606841,52.99450876982562],[-126.69138733717867,52.994546246093265],[-126.69168530345726,52.99456522421882],[-126.69198593077405,52.99457523045605],[-126.69228254317706,52.99456788633526],[-126.69257501250799,52.994535348714194],[-126.69286816632803,52.99448712745923],[-126.69314604708127,52.99441881621087],[-126.6933917804807,52.99432380888291],[-126.69360627661585,52.99420208238743],[-126.69380747164165,52.99406587543529],[-126.694008674452,52.99393022387351],[-126.69422593103346,52.99380680359066],[-126.69445545109514,52.99369115458236],[-126.69468216003584,52.99357440111497],[-126.69489377817646,52.99344877165422],[-126.69510340649457,52.99331474483448],[-126.69529330489263,52.99317299901821],[-126.69543261844576,52.993019216136645],[-126.69545297534196,52.99283812978019],[-126.69543589901335,52.99264941132387],[-126.69553596089985,52.992491942312164],[-126.69571372705813,52.99235082309579],[-126.69592333827786,52.992216238985286],[-126.69615082328136,52.99209107820253],[-126.69638687964844,52.99197706299437],[-126.69663269260964,52.99188820679069],[-126.69694353900434,52.99189701934749],[-126.69723522315529,52.99193170840109],[-126.6975261570154,52.99197705100421],[-126.69781621551067,52.992026324525796],[-126.69810620092528,52.992071106552785],[-126.6983978596794,52.9921041165271],[-126.6986919972629,52.99211806152004],[-126.69898680839452,52.992115758104866],[-126.6992823847511,52.99210279958166],[-126.69957876650294,52.99208254739409],[-126.69987600898817,52.99205837186066],[-126.7001732384528,52.992032519290085],[-126.70047048940813,52.992008898002105],[-126.70076688855849,52.991989772243784],[-126.70106436639944,52.991979039067395],[-126.70136205100943,52.99198175067133],[-126.70165995403096,52.99199678642274],[-126.70195885678422,52.99201629772402],[-126.7022567730236,52.992033008254175],[-126.70255266262453,52.99203908923798],[-126.7028463472979,52.9920255772429],[-126.70313962962055,52.99198684974781],[-126.70342510815921,52.991928553733636],[-126.70369729828424,52.99185577797603],[-126.7039571008614,52.99176794345594],[-126.70421208157713,52.99167117264288],[-126.70446519156468,52.99157329188048],[-126.70472211939344,52.99148154636112],[-126.7049877011445,52.99140488062091],[-126.70527056787921,52.991357810308024],[-126.70557170682385,52.991343117359854],[-126.70587379903719,52.991330103262335],[-126.70616048918528,52.99128861073337],[-126.70643899815721,52.991204020301645],[-126.70664973739258,52.99108397737659],[-126.70672715838248,52.990914307950106],[-126.70675392032557,52.99072813369898],[-126.70676678285717,52.990548201379866],[-126.70680113829332,52.990369825506725],[-126.70685505521887,52.990189091178735],[-126.70693804345468,52.99001771175975],[-126.7071431964842,52.989898821889724],[-126.70739437110561,52.989798705109195],[-126.7076408780003,52.98969805103535],[-126.70775858332146,52.98953822401586],[-126.70774628808691,52.98936012781024],[-126.70771621364375,52.98917934139279],[-126.70768708907725,52.98899910504826],[-126.70766078957877,52.98881997228561],[-126.70765034210636,52.988640744338156],[-126.70765760284745,52.98846084529987],[-126.70766021593965,52.988281538908524],[-126.70768056131202,52.98810212604348],[-126.70770089158657,52.987922713245304],[-126.70771377358842,52.98774334514172],[-126.70772663130371,52.98756342136136],[-126.70773670701365,52.987384070064465],[-126.7077439821005,52.98720417079634],[-126.70774659475116,52.98702486426869],[-126.7077417352583,52.986845046784346],[-126.7077331442384,52.98666524272093],[-126.70772455344041,52.98648544760126],[-126.7077206193373,52.986305615538356],[-126.70772043171375,52.986125769926524],[-126.70772304439745,52.98594646328386],[-126.70772378198834,52.985766603113696],[-126.70772171376638,52.985586768735395],[-126.70771779468366,52.985406936486264],[-126.70771293549754,52.985227118826955],[-126.70770808560367,52.98504785689494],[-126.7076938702955,52.98486641003634],[-126.70766469282766,52.98468281184995],[-126.70764861221221,52.984501376147215],[-126.7076783527851,52.984326944540896],[-126.70777075677196,52.98416166596556],[-126.70790525526684,52.98400285790431],[-126.70806405583055,52.98384783015672],[-126.70822940148233,52.983693318648754],[-126.70838165885014,52.98353720021245],[-126.70852080953809,52.98337836340353],[-126.70866277439825,52.98322007425624],[-126.70881317234348,52.98306453114604],[-126.70899175788088,52.98292114454572],[-126.70922497543273,52.98280936071447],[-126.70949982257687,52.98273262828413],[-126.70979071531096,52.98272303283732],[-126.71008768178031,52.982741979123894],[-126.71050149912753,52.982775899351154],[-126.71049425139017,52.98295579917537],[-126.71048512296343,52.98313570135161],[-126.71041713382932,52.983309799643095],[-126.71048903381225,52.98348137833209],[-126.71052000389147,52.98365991816381],[-126.71048849404296,52.983839399379185],[-126.71034651534123,52.9839965791729],[-126.7102822273083,52.984168969642326],[-126.71032252520506,52.984347462204],[-126.71037958581681,52.98452416837142],[-126.71042546245415,52.98470149770757],[-126.7104629704739,52.984880006986295],[-126.7105079169989,52.98505790663037],[-126.71056778526616,52.98523459571779],[-126.71063511100998,52.98541179560089],[-126.71069962770476,52.98558790076275],[-126.71074830350022,52.985764657195745],[-126.71076617912776,52.98594103455443],[-126.71078871180228,52.986117392774545],[-126.71072854710373,52.98631329034027],[-126.71063212065235,52.98651613884474],[-126.71064290622,52.98665950659715],[-126.71061311055294,52.98683001263222],[-126.71060025034967,52.9870099368961],[-126.71059113657664,52.987189847518486],[-126.7105941331319,52.98736912034971],[-126.71060741187905,52.987550007546616],[-126.71062726595532,52.98773310518381],[-126.71066757796963,52.98791215299306],[-126.71074227398391,52.98808258471988],[-126.71088849596168,52.98823466494084],[-126.71109602732065,52.98837067823542],[-126.71130812342835,52.988501069744515],[-126.71155518879607,52.98860155027308],[-126.71184297126072,52.98862670639876],[-126.71214619292397,52.98862711606815],[-126.71244753548301,52.988625850981116],[-126.71275607273726,52.98860941844173],[-126.71306185611544,52.98859524288683],[-126.7133457950316,52.98861369519307],[-126.71359444021557,52.98869679759783],[-126.71380483965268,52.98883671525863],[-126.71396418281857,52.98899150916058],[-126.71404732030112,52.989164128782186],[-126.71411191329206,52.98934359304149],[-126.71427468042762,52.989479871912124],[-126.71446652735001,52.98962494781041],[-126.71462673533757,52.98977580906805],[-126.7147702892661,52.989934059250004],[-126.71493420302102,52.99008322123806],[-126.71512593232146,52.99022100858772],[-126.7153278234107,52.99035313112601],[-126.71552972526034,52.99048581801617],[-126.71571871797393,52.99062753850281],[-126.71592428799866,52.99075627597471],[-126.71617497161321,52.990849445656984],[-126.71644868517419,52.990924536816266],[-126.71672780862701,52.990988397750044],[-126.71701873791207,52.99103257182179],[-126.71735623413265,52.991072535355016],[-126.71763514369925,52.99117841221697],[-126.71782403150745,52.991258507773125],[-126.7180793943406,52.99135163596453],[-126.71833569886597,52.9914447668309],[-126.71859472956118,52.99153395405908],[-126.71885559876935,52.991621444176964],[-126.71911555713216,52.9917106246078],[-126.71936905973051,52.99180377032643],[-126.71960417904116,52.9919132714475],[-126.71980800538634,52.99204817143445],[-126.72005953168758,52.99213460433973],[-126.72034960779261,52.99218325770715],[-126.72063782803302,52.992232477509],[-126.72092419256595,52.99228227272238],[-126.72120410100489,52.99233603320355],[-126.72150946240954,52.99235097322405],[-126.72180554722938,52.992368210385905],[-126.7221030549747,52.99236022086044],[-126.72240073002367,52.992361203055495],[-126.72269686694652,52.99238235516305],[-126.72299297152396,52.99240070979234],[-126.72329084166913,52.99241401477905],[-126.72358776725964,52.99242619528045],[-126.72388471225408,52.99243950444719],[-126.72418260734592,52.992453362831874],[-126.72447694675232,52.99247844798437],[-126.72475698507634,52.99253947846342],[-126.72502245414519,52.992622444452735],[-126.72528425511004,52.99270823831271],[-126.72559654150989,52.99274553650233],[-126.72575138920396,52.992633647218106],[-126.72583130829888,52.992451067538354],[-126.7259516677667,52.99228672363678],[-126.72608984628566,52.99212730791364],[-126.7262486683061,52.99197561777235],[-126.72642252715295,52.991829428614594],[-126.72660859211372,52.991688210985096],[-126.7268125278645,52.99155584740769],[-126.72706286509413,52.99146298193491],[-126.72733588924149,52.991387340270315],[-126.72760219741676,52.99130053373402],[-126.72788035650481,52.9912528733014],[-126.728168636671,52.99125052822455],[-126.72847297122738,52.99125985368624],[-126.72876776508568,52.99125691109141],[-126.7289063800417,52.99128743001633],[-126.72902215396863,52.99134666900729],[-126.72917226112497,52.99150317600419],[-126.72932237907555,52.991660247501606],[-126.72949655339755,52.99180540845815],[-126.72972896507031,52.99191826800634],[-126.72999533236765,52.99199842036643],[-126.73027626245884,52.99205719112403],[-126.73048647341143,52.99218194818752],[-126.73069124720315,52.99231514731678],[-126.7309236306405,52.99242688411955],[-126.73116340741966,52.9925335365372],[-126.7314068636919,52.992637915539746],[-126.73165031695582,52.9927411824559],[-126.73189289839777,52.99284837178778],[-126.73214826300129,52.99293922851887],[-126.73242914436695,52.99299463276969],[-126.7327218872244,52.99303483944976],[-126.73300918271016,52.993082914285594],[-126.73329466566187,52.993134926167905],[-126.73358638808818,52.99316953421689],[-126.73388415604116,52.993175524948754],[-126.73417636924319,52.99318491122542],[-126.73438954842769,52.993155569254],[-126.73471830667448,52.993119903807234],[-126.73508010431499,52.99310587803376],[-126.73532787809815,52.993134588195005],[-126.73561531755752,52.99319162931197],[-126.73590487133153,52.99326209438687],[-126.73620415179228,52.99324846436159],[-126.73644605979791,52.993153946295635],[-126.7367220055557,52.993086108662645],[-126.73702411815032,52.99301978316147],[-126.73731327716825,52.99301405756185],[-126.73761344001997,52.99305139981518],[-126.73788830338563,52.99308217624785],[-126.73800599336491,52.99303493148195],[-126.73804888317034,52.99297975511544],[-126.73805874475745,52.9927953642923],[-126.73807710767369,52.99261651410399],[-126.73815807954473,52.9924434395014],[-126.73826138374352,52.99226686326344],[-126.73841841369321,52.99212189111226],[-126.73868893214504,52.99206360312499],[-126.73905769636822,52.992021516145385],[-126.73927412527895,52.99196580702281],[-126.73956050433864,52.99190798232143],[-126.73985070231146,52.991855179996904],[-126.74009643334516,52.99176678892111],[-126.74026646775755,52.991618926664586],[-126.7404326963435,52.99146604996299],[-126.74063473175723,52.99133422992174],[-126.74085183505098,52.99120960301341],[-126.74101537081977,52.991063465775575],[-126.74101507614083,52.99088641747876],[-126.74098203840822,52.990703972124905],[-126.74094342287982,52.9905226823729],[-126.7409422322532,52.99034731602627],[-126.74109249822315,52.990189491509604],[-126.74125219985409,52.99003777507227],[-126.74140161628829,52.98988443774571],[-126.74146466064451,52.989701388080114],[-126.74170318424274,52.98968251421323],[-126.74192458798586,52.9898049485912],[-126.74212745641317,52.98993533427794],[-126.74230909165924,52.990078188569974],[-126.74251571907169,52.99020911468055],[-126.7427527060109,52.990315752379324],[-126.7430254542003,52.990386870691275],[-126.7433092175052,52.990446713207675],[-126.74359015574339,52.99050545229252],[-126.74387383716133,52.990561376454885],[-126.74415660358147,52.99061786151678],[-126.7444393608635,52.990673781193024],[-126.7447230594489,52.99072970321195],[-126.74501393229569,52.99076988224751],[-126.74530976023145,52.99077249458067],[-126.74560017914284,52.99073312343488],[-126.74588568928316,52.990680326805],[-126.74617217860705,52.99062977338741],[-126.74646671108009,52.99061222072098],[-126.74676616141507,52.990608638828725],[-126.7470637605165,52.99060675324716],[-126.74736147301375,52.990610469054694],[-126.74765922975685,52.990617545545646],[-126.74795784813955,52.990620133530534],[-126.74825545241303,52.99061768910438],[-126.74853728462857,52.99067416962589],[-126.74882006778469,52.99073119923975],[-126.74911712729218,52.99075116754483],[-126.74941416716749,52.9907700056912],[-126.74970049625026,52.99081636970661],[-126.7499816039075,52.990884057118286],[-126.75023974249085,52.99097150453724],[-126.75041589070604,52.99111885469481],[-126.75065170506033,52.99121092560692],[-126.75093812745484,52.99126232412948],[-126.75116599022718,52.9913790972525],[-126.7513772589596,52.99150717245649],[-126.75159317158051,52.99163354129758],[-126.7518026067476,52.99176331276606],[-126.75199165674962,52.99190105789872],[-126.75214362722134,52.99205248616278],[-126.75225573136673,52.99221873605049],[-126.75235208244875,52.99239068921281],[-126.75245865502642,52.99255978009709],[-126.75259305411141,52.992720284470074],[-126.7527404714036,52.99287734384596],[-126.75290270343997,52.99302870556198],[-126.75308344257668,52.99317041949145],[-126.7533067086086,52.99329057952386],[-126.75352535795079,52.99341300081855],[-126.75369965181888,52.99355980204167],[-126.75382665941017,52.99372315812635],[-126.7538922633037,52.99389754767667],[-126.75393091724999,52.99407771237616],[-126.75399374039606,52.994252675425095],[-126.75411977094723,52.99441379625483],[-126.75427649020652,52.99456855298436],[-126.75439606351082,52.99473418812991],[-126.75448684080193,52.994906739814645],[-126.7547320202018,52.99499817784862],[-126.75502635542536,52.99502094580462],[-126.75529651195063,52.99510045224226],[-126.75551790340056,52.995218378923106],[-126.75570332833819,52.99536062350656],[-126.75590351373593,52.995493243831326],[-126.75615531318832,52.995589683517785],[-126.75640527752114,52.99568781081457],[-126.75662394811914,52.995810226188134],[-126.75682137194885,52.99594511277775],[-126.75699105962684,52.996093614993754],[-126.7571459544076,52.99625062071496],[-126.75731192225479,52.99639971111267],[-126.75751388400703,52.99652672339135],[-126.7577509338861,52.99663277479753],[-126.75800737210636,52.996727495383745],[-126.75826841424482,52.99681825932928],[-126.75852207306188,52.996913561442405],[-126.75877388670975,52.997009986491555],[-126.75902478597266,52.997106981658256],[-126.75927382530965,52.99720510883996],[-126.75951738235202,52.99730887366079],[-126.75976003015916,52.99741432917515],[-126.76000722685872,52.997513587255455],[-126.76026820802691,52.99760042967213],[-126.76054298346429,52.997675412074],[-126.76082050161602,52.99774757919897],[-126.76109063622944,52.99782427561308],[-126.76134141023073,52.99791454326077],[-126.76152673600664,52.99804950008138],[-126.76167706683111,52.99821044680882],[-126.76188559938362,52.998337964956775],[-126.76210520511097,52.998459252514294],[-126.7623008272879,52.99859525315783],[-126.7625010586378,52.99872842672658],[-126.76270867573174,52.99885706990122],[-126.76290890959302,52.9989902427567],[-126.76310545246288,52.999125680295535],[-126.7632992501193,52.99926449698191],[-126.76348850165941,52.999409510393846],[-126.76369702539618,52.99953590480914],[-126.76394498282201,52.99962394403451],[-126.76422321336108,52.99968320754951],[-126.76451704339934,52.99972724607178],[-126.7648118046451,52.99977072202236],[-126.76509559582696,52.99982770628198],[-126.76537214955569,52.99989650729467],[-126.7656585071416,52.9999400356863],[-126.76595818838227,52.99994648910052],[-126.76625642255942,52.99997537149872],[-126.76641831284402,53.000000092411746],[-126.76665548516185,53.000110607445464],[-126.76685753274297,53.000239835349554],[-126.76701801201354,53.00039230945453],[-126.7671960732574,53.00053682495915],[-126.76739168628718,53.00067170561239],[-126.76763444358402,53.00078106175774],[-126.76784939960552,53.000901239366684],[-126.76797271037658,53.00106236293015],[-126.76806917539062,53.00123597851235],[-126.76818606983076,53.001403867035954],[-126.76832704523416,53.00156150444852],[-126.76855123776933,53.001676026700665],[-126.76880223276918,53.001776362197326],[-126.76899604555794,53.00191348406914],[-126.76915842075817,53.00206762817073],[-126.76926218608867,53.002231674756565],[-126.76926085383155,53.00241545656303],[-126.76934882975345,53.002584088321136],[-126.7695518887536,53.002716110851246],[-126.76978724833855,53.00282830775899],[-126.77004733138874,53.00291457866092],[-126.77031568970665,53.00299350676233],[-126.77056297875791,53.00309386272004],[-126.7708065821794,53.003197603955165],[-126.77106119695793,53.0032900670132],[-126.77132680318701,53.00337180775563],[-126.77159425127307,53.00345130368032],[-126.77186722350872,53.00352739217556],[-126.77214112730748,53.00360291814072],[-126.77240027375767,53.00368806944124],[-126.77261990106129,53.00380653136499],[-126.77276930271456,53.003964672959384],[-126.77284341678634,53.00413955154319],[-126.77294352960888,53.004306980453315],[-126.77312998311618,53.00444863495778],[-126.77329882102964,53.004597119118095],[-126.77345096388748,53.0047513243321],[-126.77356319500166,53.004918108432484],[-126.77365965097287,53.00508948714184],[-126.77375147943984,53.00526257249029],[-126.77377336807054,53.00543947838379],[-126.7737542137732,53.005617774124325],[-126.77371919645286,53.005796729720466],[-126.77367765358015,53.005975737061426],[-126.77363892776201,53.00615528168672],[-126.7736113860135,53.00633475291151],[-126.7736034401268,53.006513530799474],[-126.7736169673644,53.006692176771054],[-126.77364541224725,53.006870715897136],[-126.77368320539621,53.007049202634974],[-126.77372658354894,53.00722764373747],[-126.77377184376385,53.0074060814235],[-126.77383376684483,53.00768021356994],[-126.7738940278845,53.00750388942561],[-126.77395336259121,53.00732757130814],[-126.77402392223605,53.0071534205973],[-126.77411883317572,53.0069830274762],[-126.77423152976547,53.00681588815382],[-126.7743423587369,53.00664875199996],[-126.77443071671452,53.00647784578797],[-126.77449190967499,53.00630207983076],[-126.77453813355926,53.00612360623817],[-126.77457967295177,53.00594459860979],[-126.77462870883191,53.00576722703555],[-126.77470210108932,53.0055947424484],[-126.77489842636926,53.005458984563475],[-126.77513633950205,53.00535096714999],[-126.7753865398091,53.005251832986865],[-126.77563960273442,53.00515659695337],[-126.77589551281869,53.00506359172968],[-126.7761552364671,53.004975034142575],[-126.77641878421895,53.004891497828964],[-126.77669948778433,53.00482746233356],[-126.77698120283313,53.0047673370015],[-126.77722959039878,53.00467157248954],[-126.77746656266143,53.00456411225953],[-126.77770065486607,53.00445275302728],[-126.77793190241407,53.00433861514342],[-126.77815935408184,53.00422113117017],[-126.77838398157179,53.00410198901346],[-126.77860480872997,53.00398007456626],[-126.77882189596454,53.00385705485608],[-126.77903613390171,53.003731821379944],[-126.77924845269611,53.003603794275215],[-126.7794541480443,53.003471328275964],[-126.77964951222825,53.00333500373207],[-126.77983171780933,53.00319372778841],[-126.77999794177755,53.00304583384239],[-126.78014627211775,53.00288965823849],[-126.78027767001117,53.0027263062875],[-126.78039309225998,53.002557457048994],[-126.78049262588146,53.002387027504994],[-126.78057351572946,53.00221785080582],[-126.780534762015,53.00203881615882],[-126.78044755529743,53.00186401969877],[-126.78033714063831,53.001695544365376],[-126.78025278936325,53.00152409951418],[-126.78024205321057,53.00134599988285],[-126.78025366155016,53.001164946469736],[-126.78022609784863,53.00098528177515],[-126.78020322802575,53.00080669760459],[-126.78023815786058,53.00062549878415],[-126.78028246457407,53.00044591425518],[-126.78025832050878,53.00030039979867],[-126.78011122262309,53.00016690457259],[-126.78002509111224,52.99999994452755],[-126.78003478241212,52.99981610673108],[-126.7800248236842,52.999629037193905],[-126.78001954376884,52.99944305725503],[-126.78007150586723,52.99927462774997],[-126.78023418689665,52.999137962177976],[-126.78048317181853,52.99902649826781],[-126.7807350343616,52.998918941245925],[-126.78099274120571,52.99882478286088],[-126.78117686136542,52.9986874181066],[-126.78133927902971,52.99853674103175],[-126.7814941437725,52.99838219625195],[-126.78165182453431,52.9982281973473],[-126.78182175512926,52.998080275650985],[-126.78200391034748,52.99793787547446],[-126.78219074294441,52.99779656453941],[-126.78237290594062,52.9976547195053],[-126.78254378837794,52.99750847571232],[-126.78269016181545,52.99734893850872],[-126.78277658010705,52.99717691705442],[-126.78275741343158,52.996997196722916],[-126.782634947446,52.99683328538133],[-126.78244669142066,52.996695018961645],[-126.78223619219325,52.99656418802903],[-126.78203219759322,52.99643219300039],[-126.78189029865128,52.99637879077375],[-126.78182544923594,52.9963030217948],[-126.78183782242715,52.99616398856764],[-126.78195788500346,52.99604496727706],[-126.78220132125216,52.99593746267716],[-126.78245242103554,52.995839982904656],[-126.78271682534842,52.99575642592101],[-126.78300131511087,52.995699072926264],[-126.78330268489775,52.99569650628336],[-126.7835790094734,52.99575350474929],[-126.783774822279,52.99589675730242],[-126.78402811924208,52.99596958688253],[-126.7843342831395,52.995974273952115],[-126.78463210425606,52.99598237747329],[-126.78492991972301,52.99598935970583],[-126.78522687757354,52.99600082919761],[-126.78552220770526,52.99602519987977],[-126.78581580664229,52.99605686061681],[-126.786111054443,52.99607673911285],[-126.7864124119566,52.99607417358486],[-126.78670399016994,52.996097436800106],[-126.78698686074101,52.99615438363407],[-126.78726165319165,52.996228183393306],[-126.78752451718579,52.99631327690708],[-126.78777476584047,52.99642254200852],[-126.78790915462044,52.99657459798053],[-126.78797024488486,52.99674899937979],[-126.78801281969194,52.99693136850664],[-126.78807582906137,52.99710856291259],[-126.78818625662947,52.99727591092226],[-126.78833937352162,52.997431202878765],[-126.78854619921542,52.99756316814482],[-126.78844951128895,52.99773414203996],[-126.7884412865483,52.99789443913839],[-126.78866862206317,52.99802514644415],[-126.78879293935468,52.99818679804763],[-126.78888016236652,52.99836102401704],[-126.78893477207052,52.998538274051214],[-126.78895581559185,52.998716304456075],[-126.78895262505088,52.99889673814561],[-126.78893825202258,52.99907724663938],[-126.78892197690396,52.9992566472649],[-126.78888517737379,52.99943562042189],[-126.78885677869931,52.99961510211076],[-126.788820015728,52.99979688087519],[-126.78878419304299,52.99997865331636],[-126.788781796213,52.999999960232174],[-126.78883921449781,53.00017719136116],[-126.78891707906418,53.00034979439328],[-126.78905257074737,53.000509694410304],[-126.78920292095533,53.000665568328984],[-126.78935326177748,53.000820877343344],[-126.78950360386497,53.00097619511515],[-126.78964373710616,53.00113493380692],[-126.78975608928258,53.001304508313176],[-126.78987675010536,53.00146954475677],[-126.7900538696278,53.00160955021684],[-126.79026801968963,53.001732498658036],[-126.79049881785207,53.00184805586923],[-126.7907342487674,53.00196133145445],[-126.79096506437115,53.00207688763733],[-126.79117366796717,53.00220323335273],[-126.79127299565233,53.00237457012896],[-126.79129124382747,53.00255261854793],[-126.79121515899206,53.002727382425924],[-126.7911446874922,53.002902099607056],[-126.79107139799203,53.00307627982562],[-126.79099342404538,53.00324993559628],[-126.7909098441069,53.003422499358074],[-126.79081688521782,53.003593449563326],[-126.79070056088845,53.003762315206615],[-126.79064685237175,53.00393524318231],[-126.79066141788974,53.00411612212051],[-126.7907216729891,53.00429500934264],[-126.79083115759013,53.004460675342344],[-126.79097966182606,53.00461655914757],[-126.7911448925552,53.0047684130308],[-126.79130364078618,53.00492254235131],[-126.79143075968743,53.005083051345736],[-126.79151890664573,53.00525502747803],[-126.79157356743944,53.00543395172798],[-126.79160025637636,53.00561362847208],[-126.79159145609597,53.00579297865361],[-126.79153878914572,53.00597205849178],[-126.79144770868308,53.00614299630767],[-126.7913341096409,53.00630848229396],[-126.7912074066825,53.0064712591261],[-126.79107505676008,53.00663238834437],[-126.7909408645409,53.00679408555021],[-126.79081040003169,53.006956322350725],[-126.79068557006096,53.00711964177541],[-126.79055885760638,53.00728297366514],[-126.79043496204699,53.007446851282694],[-126.7903204297384,53.00761234237027],[-126.7902349301976,53.00778267686079],[-126.7902168219367,53.00796377437111],[-126.7902098968929,53.008143111592695],[-126.79022910011594,53.008322829524545],[-126.79031355732157,53.00849707209849],[-126.79040173359192,53.008671289673686],[-126.79042084875044,53.00884541424433],[-126.79036529275231,53.00902059503704],[-126.79028175109396,53.00919596331426],[-126.79021314811777,53.00937235198401],[-126.79018846095705,53.00955068749584],[-126.79018808235256,53.00973110125059],[-126.79017930052748,53.009911006521705],[-126.79015742635397,53.01009044368687],[-126.79013088232061,53.01026935631233],[-126.79010433789702,53.01044825994961],[-126.79008153722793,53.01062770324646],[-126.79006807009908,53.01080708399545],[-126.79006676506195,53.010987503818434],[-126.79007943242968,53.01116670945841],[-126.79014616339433,53.0113416354018],[-126.79022220779115,53.011515369363636],[-126.79029917890205,53.01168910601769],[-126.79037057553637,53.01186343576414],[-126.79043637826553,53.012038923507326],[-126.79050312240963,53.01221440488963],[-126.79057079747258,53.012389315215295],[-126.79063845832496,53.012564234547526],[-126.79070613450224,53.01273914475945],[-126.79077288086047,53.012914625916714],[-126.79083682003274,53.01309012584371],[-126.79089797743141,53.0132662091389],[-126.79095447548238,53.01344231466819],[-126.79100632038734,53.013619580889376],[-126.79105256492512,53.013796875667595],[-126.7910913633373,53.01397534988134],[-126.79111150349088,53.01415450500975],[-126.79111671895333,53.01433431601929],[-126.79111165915899,53.01451420489148],[-126.79110286990769,53.014693553993546],[-126.79109407599518,53.01487345890608],[-126.79109088739375,53.0150527704056],[-126.79109983692751,53.015232565241725],[-126.79111625416449,53.01541230100888],[-126.79113826206071,53.01559144345951],[-126.7911425370297,53.0157712695901],[-126.79114401887743,53.01595110547095],[-126.79114644186261,53.016130943985],[-126.79115630736824,53.016310167798814],[-126.79119977295207,53.01648804566421],[-126.79125440511699,53.01666472803123],[-126.79123439308626,53.01684303163551],[-126.79119197207015,53.017022041321866],[-126.79116917246697,53.01720148413344],[-126.79115665934906,53.01738142269283],[-126.79114039693583,53.01756137741239],[-126.7911073042988,53.0177392128245],[-126.79104528520377,53.017918353786264],[-126.79092601018645,53.0180816349482],[-126.7907192659551,53.01821020912805],[-126.79048904336078,53.01833108737139],[-126.79032647824648,53.01847617317987],[-126.7902194361655,53.01864440962744],[-126.79014524181667,53.018821399389054],[-126.79009252144218,53.01899880105534],[-126.79008467388824,53.019179263825976],[-126.79011508430439,53.01935890557534],[-126.79017161855869,53.019536695960056],[-126.79026536654807,53.0197080784145],[-126.79040739447319,53.0198640052659],[-126.7905819137883,53.02001018495637],[-126.79076386138512,53.02015408243614],[-126.7909531952508,53.0202934389053],[-126.79118866716581,53.02040336005404],[-126.79144253012221,53.02049802531489],[-126.79169912485833,53.02058931001977],[-126.7919456466771,53.02069074682661],[-126.79216269171737,53.020813671690405],[-126.79234647333594,53.02095530432176],[-126.79250616037281,53.02110662776569],[-126.7926519565176,53.02126364711848],[-126.7927596671578,53.021431572016105],[-126.7928757213023,53.02159663484913],[-126.79299458465825,53.02176167867508],[-126.7931143794801,53.02192615134766],[-126.79323601715502,53.022090055700744],[-126.79336510839411,53.022252233438614],[-126.79353870660312,53.02239841487852],[-126.79370491487612,53.02254801641678],[-126.79393118517764,53.02266415257382],[-126.79418228033138,53.022759951130155],[-126.79442143539868,53.02286591458408],[-126.79459049437916,53.02301829258504],[-126.79471509602273,53.02319001931372],[-126.79486651977248,53.02334755372898],[-126.79502714056075,53.023498311581015],[-126.79521459405744,53.02363543268672],[-126.79543531430274,53.02375384447728],[-126.79568006963689,53.02385921182171],[-126.79593130613034,53.02396116429709],[-126.79617140910358,53.02406768257031],[-126.79637923099459,53.024195144105015],[-126.79647583321328,53.02436705792347],[-126.79648102019617,53.02454407105708],[-126.79646571874586,53.02472401939925],[-126.79644109093366,53.02490459543906],[-126.79641553669542,53.02508517770682],[-126.79639462221216,53.0252646080724],[-126.79636997277626,53.02544406362468],[-126.79634810633657,53.02562294457098],[-126.79633747991349,53.0258028612216],[-126.79634363474642,53.025982108790664],[-126.79635356041761,53.026162451446176],[-126.79634669598194,53.02634459272575],[-126.79633147734393,53.02652902251952],[-126.79632277066979,53.0267117319874],[-126.79633639537876,53.02689092904574],[-126.79638631707678,53.02706315775806],[-126.79648556642177,53.02722608900771],[-126.79662855816515,53.02738144570259],[-126.79679946847686,53.02753156669794],[-126.79697968580582,53.027679939259215],[-126.79715524939066,53.02782947250256],[-126.79730851373068,53.02798419418551],[-126.7974032291831,53.028154434380376],[-126.79743742261304,53.02833461274143],[-126.79745293500842,53.02851379677811],[-126.79746003617728,53.02869303764289],[-126.79746248212852,53.02887343050675],[-126.79746212381598,53.02905328650895],[-126.7974617653321,53.02923313352897],[-126.79745767188918,53.029413014736996],[-126.79744610796291,53.0295929374493],[-126.79742239128235,53.02977183068056],[-126.79738090366102,53.029949714459946],[-126.79732725842955,53.030127124561034],[-126.79726801445345,53.030304016650426],[-126.7973198536216,53.0304784728288],[-126.79730913101795,53.03065390750873],[-126.79712688679977,53.03079632857985],[-126.79692015192444,53.030927709215135],[-126.79677357948934,53.031079973765046],[-126.79678814879428,53.031259163957145],[-126.79682791796391,53.031437063410024],[-126.796873275503,53.03161492509446],[-126.79693262736902,53.03179157168119],[-126.79687709375203,53.03196731776417],[-126.79682812054418,53.032144695846924],[-126.79681513759817,53.03234872413653],[-126.79663382125341,53.03249169377337],[-126.79655301136341,53.03266480438908],[-126.7964909305665,53.03284059437686],[-126.79648495435102,53.03301992309121],[-126.79652938575074,53.03319779099605],[-126.7965691660764,53.033376246057955],[-126.79659959323975,53.03355477319336],[-126.79663750644241,53.033733240803315],[-126.79661748360299,53.033910987913096],[-126.79651889258942,53.03408197727099],[-126.79638082082805,53.034240342142944],[-126.79620140926367,53.03438498334783],[-126.79601347894624,53.034524078965745],[-126.79582179081244,53.034662079055295],[-126.79562913906871,53.03479896475976],[-126.79532128760513,53.035018426775515],[-126.79505427324126,53.035224166214455],[-126.79487106500255,53.03536603393977],[-126.79469255941565,53.03551010182945],[-126.79452630147817,53.03566025447972],[-126.79440701551894,53.03582410204901],[-126.79435146162882,53.036000402352784],[-126.79429219689447,53.03617728337772],[-126.79421792146853,53.0363514684798],[-126.79413428964844,53.03652404013175],[-126.79402348139166,53.03669230339023],[-126.79390142318263,53.03685841006789],[-126.79385048021608,53.037031317340634],[-126.79386222989673,53.03721052616816],[-126.79389549949897,53.03739126655643],[-126.79391849289387,53.03757152025553],[-126.79389566243955,53.03774928530357],[-126.79381952508923,53.03792403828285],[-126.79374058227741,53.03809825426709],[-126.79370561657169,53.038276100831766],[-126.79369308249252,53.03845547285402],[-126.79369270796523,53.03863531887471],[-126.79369607994421,53.03881570443739],[-126.79369664705831,53.03899555305226],[-126.79370187651938,53.03917536132973],[-126.79370897419287,53.039355165988916],[-126.79371233574192,53.03953498679054],[-126.79370821486525,53.03971430210131],[-126.79369942697714,53.039894213534026],[-126.79368878575902,53.04007412844548],[-126.79367532453004,53.040253506508755],[-126.79365905364313,53.0404329034445],[-126.79363998800709,53.04061231915084],[-126.7936125130074,53.040791235587896],[-126.79357475574217,53.04097021216881],[-126.7935360462598,53.04114863932788],[-126.7935057503177,53.04132700988953],[-126.79349415601351,53.04150637524209],[-126.79350871505572,53.041685564748896],[-126.79353449344146,53.041865243562384],[-126.79355092089591,53.04204442046703],[-126.7935617544959,53.04222419075177],[-126.79356885208566,53.04240399510031],[-126.79357221328263,53.04258381558677],[-126.79356810207332,53.042763695258365],[-126.79355931735051,53.04294304157697],[-126.79354773321865,53.04312296248676],[-126.79353706521582,53.0433023214265],[-126.7935282908052,53.043482232370366],[-126.79352043238784,53.04366157238156],[-126.79351351091744,53.04384146186463],[-126.79350753113167,53.04402135396174],[-126.7935193275742,53.04420223811762],[-126.79352268887133,53.044382067380745],[-126.79346896739919,53.04455723342759],[-126.79338717405413,53.044729226483774],[-126.7932885299616,53.04490021216568],[-126.79318144354528,53.04506901338491],[-126.79307152988117,53.045236148182425],[-126.79295784311132,53.045402196622895],[-126.79284042330377,53.045567705251734],[-126.7927201717636,53.04573211221519],[-126.79259709884288,53.04589597322487],[-126.79247216124848,53.046059290813275],[-126.79234628106799,53.046222614574525],[-126.79222324726724,53.046388724915914],[-126.7920917705683,53.04655264171057],[-126.7919414007547,53.046705488628035],[-126.7917391356439,53.046830660888354],[-126.79147077346363,53.04691930704193],[-126.79119936437534,53.04699451752432],[-126.79092125577357,53.04706081688824],[-126.79065463340064,53.04714271727988],[-126.79039388048875,53.04723803322624],[-126.79017832715408,53.04735320682236],[-126.79014996445645,53.04753604498117],[-126.79016736318898,53.04771745626713],[-126.78993347865365,53.04790166984632],[-126.78992935151088,53.04808154883534],[-126.78992148737913,53.04826144384696],[-126.78989959235481,53.048440876936205],[-126.78987023845501,53.04862035990917],[-126.78985487962278,53.04879919342801],[-126.78987688899741,53.048977767935725],[-126.78993250966792,53.049155005941934],[-126.79001142662452,53.04932928217459],[-126.79006606934966,53.04950372079979],[-126.79002735819044,53.04968326632418],[-126.78998489336256,53.04986115164145],[-126.78992640325204,53.0500318651251],[-126.7897291762895,53.050178299065344],[-126.78962120405637,53.05035158443866],[-126.78960203353188,53.050526516857865],[-126.7896212891453,53.05070735073063],[-126.789672232268,53.05088461997565],[-126.78975302433007,53.05105831892636],[-126.7898625945739,53.05122230516939],[-126.79005401616907,53.05136613861556],[-126.79025089848835,53.05150208245711],[-126.79045422068361,53.05163294490641],[-126.79066598094111,53.051764871031516],[-126.79086084203215,53.05189242782634],[-126.7909834777522,53.05205520492958],[-126.7910940702514,53.05222310950304],[-126.79120279046091,53.052391582297325],[-126.79133790588233,53.052571639235104],[-126.79144067755699,53.0527216672564],[-126.7915475258768,53.05288903171233],[-126.79165158555568,53.0530575352983],[-126.79175470428052,53.05322604509193],[-126.79185876560808,53.05339454846252],[-126.79196376954955,53.05356304540741],[-126.79207340698802,53.05372982587359],[-126.79219794221972,53.05389370940341],[-126.7923224680391,53.05405703706915],[-126.79242467537796,53.054226108117355],[-126.79248869415467,53.05440216759422],[-126.79248343060598,53.05457028356489],[-126.79238311087092,53.05475303974473],[-126.79232753874832,53.054929337056926],[-126.79230472358354,53.05510877611924],[-126.79230808059833,53.05528860428004],[-126.79235064909562,53.055466483995886],[-126.79239321794975,53.05564436367808],[-126.79243579753657,53.055822799043256],[-126.7924811627303,53.056000659894124],[-126.79253305545197,53.05617735636039],[-126.79259335507338,53.056353440568785],[-126.7926685379013,53.05652661899223],[-126.79276145060199,53.05669799302761],[-126.79286090184718,53.0568687672857],[-126.79295566408675,53.05703901715315],[-126.79303644541602,53.05721159294342],[-126.79304258487683,53.05738971691265],[-126.79304129703736,53.057571252356034],[-126.79308481277761,53.05774912524657],[-126.79321118025814,53.057910198268914],[-126.79335345756338,53.058072840571576],[-126.79350941393406,53.058216897452745],[-126.79369996288585,53.05836128635058],[-126.79388490221646,53.058506277403374],[-126.79403359621237,53.05866158775846],[-126.79413861142085,53.058829526540826],[-126.7941839869648,53.05900738642859],[-126.79419390061524,53.05918716112293],[-126.79419464986502,53.05942695052775],[-126.79416901896394,53.059605852674],[-126.79416864626687,53.05978569649059],[-126.79418135608769,53.05996546126438],[-126.79416884296441,53.06014538669587],[-126.79413951560655,53.06032655468679],[-126.79416710344837,53.0605022929957],[-126.79424232540052,53.06067602561666],[-126.79433991859901,53.060847375586036],[-126.79445520162702,53.061014680099866],[-126.79458904930262,53.06117513636995],[-126.79475731350469,53.06132639658125],[-126.7949376462192,53.06147364895532],[-126.79510028054206,53.0616243907829],[-126.79521545311924,53.06178552784208],[-126.7952719812723,53.061958829823325],[-126.79529033483921,53.06214023259763],[-126.79529095706268,53.0623234400496],[-126.7952924791134,53.06250439139223],[-126.79528182856468,53.0626837483768],[-126.79526182838177,53.062863733054165],[-126.79524649753006,53.06304312151573],[-126.79527601318337,53.06322164319986],[-126.79542381232557,53.063377522302275],[-126.79549718167362,53.063552395879945],[-126.79550802900943,53.0637321637481],[-126.79541588813042,53.0639025494966],[-126.79530407598051,53.06407026181834],[-126.79523710628528,53.06423767205395],[-126.79518361266172,53.064425161061706],[-126.79511668391974,53.06459481197505],[-126.79508344513847,53.06476591233044],[-126.79519316594407,53.064934938564356],[-126.79529731163792,53.0651056785453],[-126.7952641422258,53.06528126056078],[-126.79520486156608,53.06545926839591],[-126.79521389157118,53.06564185413489],[-126.7952825669505,53.06581507396698],[-126.79542761633965,53.06597376825451],[-126.7956255213515,53.066110260418526],[-126.79590850033804,53.06619687559241],[-126.79617082039631,53.0662791472435],[-126.79619991128534,53.06643470487538],[-126.79610911922752,53.066626927646496],[-126.79614403857094,53.066794216022075],[-126.79633541494263,53.06693075098417],[-126.79656774710877,53.06705804516237],[-126.79678599088676,53.06718207234253],[-126.79703639713233,53.06727618353836],[-126.79731524828892,53.06734153313992],[-126.7975620447082,53.06744239974196],[-126.79781711983439,53.06753647776104],[-126.79807768188124,53.06762323919064],[-126.79829589082024,53.067745022765095],[-126.79850860317174,53.0678718899666],[-126.79875081971748,53.06797782296136],[-126.79899206812115,53.06808152095085],[-126.79915197731651,53.06823395164232],[-126.79925889511505,53.06840130762148],[-126.79934534220713,53.068574404690196],[-126.79942246896508,53.06874812055247],[-126.7994370941409,53.06892899156672],[-126.79945256200567,53.06910536577539],[-126.79960032316878,53.06925732225215],[-126.79977042829594,53.06940520090363],[-126.79995729949681,53.06954903941497],[-126.8000008962085,53.069580683688685],[-126.80015063328788,53.06968891647577],[-126.80035038740877,53.06982259128341],[-126.8005760219535,53.06993983817753],[-126.80080720854643,53.07005480593948],[-126.80102176686725,53.07017940603754],[-126.80123262575275,53.07030683664613],[-126.80144256936578,53.0704348378347],[-126.80164974933471,53.07056453371793],[-126.8018550567403,53.07069479773172],[-126.80205668412506,53.07082733639888],[-126.80225182581682,53.070963271394945],[-126.80244602675317,53.07109922142201],[-126.8026393334205,53.07123685351545],[-126.80283263065644,53.07137392060795],[-126.80303240542763,53.07150702597505],[-126.80324236040939,53.07163502387642],[-126.80345415417064,53.07176132362118],[-126.8036696561322,53.07188591248001],[-126.80389529586724,53.07200315299611],[-126.8041310988311,53.07211360072157],[-126.80438451098772,53.072215528578475],[-126.80461103290708,53.07232940013819],[-126.80474392747077,53.07248536873753],[-126.80483141123706,53.072661816115186],[-126.80490859985886,53.0728372130433],[-126.80499225032553,53.07300863953986],[-126.80516700668677,53.07315311704905],[-126.8053501482036,53.07329641659753],[-126.80547391814868,53.07346309603545],[-126.80557727957247,53.07363886977812],[-126.80570561132313,53.073799915204646],[-126.80590153979055,53.07392631874427],[-126.80613169678504,53.074033995182276],[-126.8063794164925,53.074131475497076],[-126.80663826280087,53.074223267712114],[-126.80690359293635,53.07431221823499],[-126.80716985147617,53.074401161820916],[-126.80742963918135,53.07449351062354],[-126.80768112918659,53.07459151823133],[-126.80792893030606,53.0746929121191],[-126.8081712136861,53.07479826956795],[-126.80840333613429,53.07491041025989],[-126.80860959562148,53.07503897966946],[-126.8087964640992,53.07518057203384],[-126.80900276882396,53.07531138149872],[-126.80919515649838,53.075447323828705],[-126.80932725724007,53.07560889524791],[-126.80945841670993,53.07577047296143],[-126.80964156698872,53.07591208944996],[-126.80987094108366,53.076027051891195],[-126.81013251786963,53.07611433565362],[-126.81038491903915,53.07621065496584],[-126.8106198455711,53.07632165154136],[-126.81083907754694,53.0764434048665],[-126.81107765597542,53.07655045810566],[-126.81133923864294,53.07663774813291],[-126.81159070752106,53.07673350653802],[-126.8118164163714,53.07685185197599],[-126.81204030387215,53.0769718858114],[-126.81222530120503,53.0771123650681],[-126.8123555811058,53.07727562188884],[-126.81241502922188,53.07745057993317],[-126.81243906102453,53.07763137517796],[-126.81243034886246,53.07781071928802],[-126.8123860653406,53.0779886316972],[-126.81233805682514,53.07816656071977],[-126.8123125017608,53.07834602058029],[-126.81229819057054,53.07852596784725],[-126.81228199440163,53.07870591908991],[-126.81225362019649,53.07888427773701],[-126.81220371908714,53.0790611080547],[-126.81213975468526,53.07923634974103],[-126.8120682892695,53.07941052240841],[-126.81199121396686,53.07958473356965],[-126.8119131848564,53.07975838646956],[-126.81183705065483,53.07993259101909],[-126.81176652104547,53.08010732173167],[-126.8117016258402,53.08028256944855],[-126.81163766815563,53.08045836644779],[-126.81157559055816,53.080634715219745],[-126.81151725208628,53.08081103825354],[-126.81146359102455,53.08098789385458],[-126.81141556461421,53.081165266490494],[-126.8113768826955,53.08134313069028],[-126.81134757547362,53.08152149522061],[-126.81132762377787,53.08170091600018],[-126.81131517714559,53.08188084996232],[-126.81130552757077,53.08206075573214],[-126.81129867543194,53.08224065123643],[-126.81128996813078,53.0824205504965],[-126.8112803076969,53.082599900502515],[-126.81127345536403,53.082779795949946],[-126.81126661776086,53.08295968231287],[-126.81126350515898,53.08313955204292],[-126.81126132417543,53.08331885061402],[-126.8112628936816,53.08349867919317],[-126.81127008384404,53.08367903390289],[-126.81129221227904,53.083858165497006],[-126.81133956082031,53.08403544758458],[-126.81141210384375,53.08421030660676],[-126.81150419981529,53.08438111393184],[-126.81160562934339,53.084550180759436],[-126.81171077389932,53.08471865722389],[-126.81181778280553,53.08488600025316],[-126.81192759008776,53.08505332394529],[-126.81204018496744,53.08522006362425],[-126.81215371258217,53.085386240996236],[-126.81227654831895,53.08555011321689],[-126.81241334273066,53.08570997198258],[-126.81255756028476,53.085867529527256],[-126.81271107988532,53.0860216703085],[-126.81287480318969,53.08617181438159],[-126.81305247038634,53.086317935968744],[-126.81325418554871,53.0864493339636],[-126.8134983827669,53.086553537674625],[-126.81376459646155,53.08663462306181],[-126.81404448521296,53.08669768530726],[-126.8143262018536,53.08675849325403],[-126.8146088146699,53.086817618055086],[-126.81489141085719,53.08687505703508],[-126.81517310835511,53.086934742584305],[-126.81545206933994,53.08699836369193],[-126.81572648201455,53.0870681828911],[-126.81599911172262,53.08714249585292],[-126.81626898784226,53.08721906825335],[-126.81653704458452,53.08729901417603],[-126.81680327964342,53.08738065735014],[-126.8170667569556,53.0874651158173],[-126.81732931437108,53.0875507005841],[-126.81758825556399,53.087641912396485],[-126.81783981044333,53.08773877737257],[-126.81808033356084,53.08784468236021],[-126.8183088890976,53.08796075442729],[-126.81852175846494,53.088088139921766],[-126.81871333531497,53.08822631302879],[-126.81888171724236,53.08837361969822],[-126.81903711319153,53.0885271745163],[-126.819186958015,53.08868300864964],[-126.81933959080796,53.08883825851291],[-126.8195024167941,53.08898896436378],[-126.81967731008913,53.089134539454896],[-126.8198587034996,53.08927726340166],[-126.82004287445525,53.089418856235284],[-126.82022981187403,53.089558744313884],[-126.82041770386274,53.089699181244654],[-126.82060281017925,53.089840201961216],[-126.82078604347195,53.08998180013702],[-126.82096466403546,53.090126226890256],[-126.82113680162325,53.09027349523733],[-126.82129407217884,53.09042647822241],[-126.82143091613759,53.09058631714063],[-126.82155752159095,53.090749032856486],[-126.82167947752745,53.0909134660198],[-126.82179866896684,53.09107959457074],[-126.82191414249995,53.091246869370984],[-126.82202868928262,53.09141415049558],[-126.82214230511549,53.09158199375378],[-126.82225683874101,53.09174927472941],[-126.8223732585398,53.09191654245847],[-126.82249150209931,53.09208212107359],[-126.8226144079595,53.09224653762361],[-126.82274195477443,53.092408689653055],[-126.8228750549529,53.09256855286602],[-126.82301466649962,53.092726138501014],[-126.82316263771688,53.09288029521467],[-126.82331988174184,53.09303103454326],[-126.82348549651633,53.093178909549984],[-126.82365576311906,53.09332506663894],[-126.8238325371639,53.093469501818916],[-126.824013031404,53.093612790273106],[-126.82419909447307,53.09375379857411],[-126.82438887778513,53.093893660109615],[-126.82458238136154,53.09403237486218],[-126.82477958343048,53.09416882244789],[-126.82497956310657,53.094304129795155],[-126.82518233536356,53.09443829678565],[-126.82538788939439,53.09457076770394],[-126.82559526736627,53.0947015402632],[-126.82580452101818,53.09483173461026],[-126.82601558795517,53.09495968384115],[-126.82622666012642,53.09508706791732],[-126.8264386284669,53.0952127600908],[-126.8266514931339,53.09533676932008],[-126.82687357337991,53.095452870065955],[-126.82712697885151,53.095545220295364],[-126.82739975964608,53.095623432352106],[-126.82767899708,53.0956965517538],[-126.82795085884882,53.095775880535484],[-126.8282033846071,53.095870475667965],[-126.82844032632495,53.095980866750196],[-126.82866437984961,53.096102552901726],[-126.82887271814774,53.09623331298631],[-126.82906062469861,53.09637150387719],[-126.82920865252848,53.096526773065015],[-126.82932608447194,53.09669626770794],[-126.82944905230097,53.09686180604511],[-126.82961556543003,53.097006304538716],[-126.82983952201923,53.09712182180823],[-126.83009218073498,53.09722257931089],[-126.83033931661095,53.097327848181365],[-126.83054943797124,53.0974535549268],[-126.83072999382088,53.097597953160914],[-126.83088735900134,53.09775259880397],[-126.8310242518757,53.097911870247664],[-126.83113697795791,53.09807971086734],[-126.83122360869005,53.09825166118937],[-126.83124394754246,53.09843024501256],[-126.83126430835677,53.09860994021312],[-126.83135559882798,53.09878130184913],[-126.83146371449648,53.09895198030169],[-126.83160521655354,53.09910785703379],[-126.83185872012233,53.09920355801073],[-126.83207345121555,53.09932473853828],[-126.83224657075165,53.099470872002],[-126.83241230780511,53.09962209504132],[-126.83258822804035,53.09976819930808],[-126.8327826731336,53.0999040971098],[-126.83292393339497,53.10000002186413],[-126.83298081272602,53.10003828329732],[-126.83318082810906,53.1001718911888],[-126.83338453818844,53.10030379639833],[-126.83359011315164,53.100434567587996],[-126.83379845496479,53.10056364261],[-126.83400864652108,53.10069157473272],[-126.83422159399274,53.100817254963594],[-126.83444290203633,53.10093950527745],[-126.83468177015176,53.10105043498445],[-126.83493798438465,53.10113994292437],[-126.83521984901633,53.10120182091696],[-126.83551707814833,53.10123669726316],[-126.83581160172572,53.101228456630736],[-126.8361070859752,53.101174823103776],[-126.83639101459234,53.10119858618379],[-126.83667108831798,53.101264390726996],[-126.83694217435442,53.101348751241375],[-126.83730536854752,53.101549557061446],[-126.83749768714881,53.10171906870053],[-126.83760460441911,53.101875183270195],[-126.83765587985815,53.102055222888104],[-126.83772572666793,53.102228972497805],[-126.83790248603391,53.102368339807654],[-126.83808490334509,53.102509916728636],[-126.83821905811126,53.10267087541483],[-126.83834579740497,53.10283525704428],[-126.83846228896273,53.103001387511135],[-126.83856571520045,53.10316985157262],[-126.8386355492079,53.10334191541155],[-126.83863540908287,53.103523995557644],[-126.83865019138405,53.10370373774887],[-126.83866964322526,53.103883437826724],[-126.83864887987389,53.104063432172275],[-126.83860662009329,53.10424413477535],[-126.8386381403818,53.10441871135451],[-126.83875191233042,53.104589342776755],[-126.83892127913228,53.10473268720564],[-126.83917753574856,53.10482275042934],[-126.83931722588802,53.10497918638896],[-126.83943376772962,53.105148121175596],[-126.83953724022084,53.10531770443259],[-126.83963696777832,53.105487869963405],[-126.83972832909845,53.10566034482123],[-126.839802874938,53.105834050608266],[-126.83984289456521,53.106011927911524],[-126.83982601019518,53.10619861779619],[-126.8398628722191,53.10635914505766],[-126.8401754078391,53.106361406244986],[-126.84047484691936,53.1063637597211],[-126.84077172777772,53.10637902101781],[-126.8410702500553,53.10638193528206],[-126.84136951143104,53.106375323651086],[-126.84166785200556,53.106369838331325],[-126.84196637445807,53.106372759295475],[-126.84226419869177,53.1063880011652],[-126.84256168928408,53.10638644592507],[-126.84285518542106,53.10641964537358],[-126.84314693764347,53.10645846806652],[-126.84343947340025,53.106489996631325],[-126.84373862366888,53.106477777230644],[-126.84403628205725,53.10648461645752],[-126.8443235739394,53.10653466427619],[-126.84460543242027,53.10659372329492],[-126.84488093667079,53.106662902719506],[-126.84515097813055,53.106738852608046],[-126.84543012566584,53.10680296688321],[-126.84568365437063,53.10689527662288],[-126.84594267031349,53.106981943986646],[-126.8461436873104,53.107115522776034],[-126.84641637629404,53.10718360724519],[-126.84666526925145,53.107278189110666],[-126.84688560698237,53.10739482056014],[-126.84708940569699,53.10752726626828],[-126.8473548311856,53.1072317894244],[-126.84747823832522,53.10703985267551],[-126.84767626981252,53.10693030770135],[-126.84789954347306,53.10691301927671],[-126.84827300809773,53.106967486227866],[-126.84859022127019,53.107016188500204],[-126.84886307939064,53.10699910705094],[-126.84916019230708,53.10697848023855],[-126.84945826669876,53.106959531022156],[-126.8497559182518,53.10696580015073],[-126.85005043440005,53.10700233600599],[-126.85031163802324,53.10710354481928],[-126.85052991927748,53.10721122919345],[-126.85078899566646,53.10729956186356],[-126.85107700428385,53.10733839200459],[-126.85135884367352,53.107395749884596],[-126.85164792015446,53.10744072929899],[-126.85194396328714,53.107459885967266],[-126.85227560849378,53.10743452041688],[-126.85253208305467,53.10748702054261],[-126.85283145178413,53.107485417004646],[-126.85313077557369,53.10748158096713],[-126.85342771752482,53.10749848641005],[-126.85372461080793,53.107513706205715],[-126.85401643685168,53.10755529844801],[-126.8542654280638,53.10765379000532],[-126.85451074601686,53.10775566017333],[-126.85475607653534,53.10785809448363],[-126.85499953723459,53.1079605418108],[-126.85518112653249,53.10810377476401],[-126.8553987685928,53.108224901015916],[-126.85564516004602,53.10833292838674],[-126.85570090171531,53.108359973056416],[-126.85573816315255,53.108397800844536],[-126.85580336197238,53.108429823807796],[-126.85594889426473,53.10845454203075],[-126.85613876926732,53.108544493552046],[-126.8564250933901,53.1085452164655],[-126.8567231225848,53.10852288778778],[-126.85702161219332,53.10852408583238],[-126.8573201282076,53.108525847671466],[-126.85761422967083,53.10849513688133],[-126.85790235854324,53.10844598468061],[-126.85819655192803,53.10846570391523],[-126.85847023092767,53.108535429835676],[-126.85875749709028,53.10858264612419],[-126.85904482056637,53.10863265810777],[-126.85932474016583,53.10868664950021],[-126.85958571511857,53.10877495818102],[-126.85986179189896,53.10882392944984],[-126.86015672762244,53.108880050694964],[-126.86045116377937,53.108911523506634],[-126.86074468011698,53.108944122800075],[-126.86103993508202,53.10896942983635],[-126.86133523225632,53.10899753263654],[-126.86163223364566,53.10901665815657],[-126.86192394891496,53.10905262920575],[-126.86221995088009,53.109068954769036],[-126.8625192622015,53.10906397461517],[-126.86281774794567,53.10906403756703],[-126.86311597908862,53.10905233172647],[-126.86340748648898,53.10903171907567],[-126.863701560848,53.10904525820313],[-126.86398147298178,53.10905217700611],[-126.86430451862252,53.10906438238835],[-126.86459091495192,53.10906844657204],[-126.86489128540256,53.10902366986057],[-126.86517154801429,53.10895607343629],[-126.86540702062969,53.10884902141099],[-126.86552902875268,53.1086839680736],[-126.86569198788915,53.108554480215446],[-126.86591791874663,53.10843853286066],[-126.86617256601349,53.108354304906776],[-126.86640411907165,53.10823888013949],[-126.86662341363102,53.108118497957435],[-126.8667803303199,53.107968318763405],[-126.86704235400553,53.10787899695005],[-126.86730271190532,53.10779977142086],[-126.86760560929493,53.10774152294571],[-126.86800725404673,53.10761699391248],[-126.86806600121969,53.10742495401868],[-126.86803867428266,53.10732375230077],[-126.86807078122428,53.10715543885834],[-126.8681204709676,53.106978032125475],[-126.86813272176397,53.10679921503873],[-126.8681655723564,53.10662193190776],[-126.86815627687673,53.1064421614616],[-126.86812641267342,53.106263097827906],[-126.86806481194697,53.106087628780585],[-126.86803963313872,53.10590853068747],[-126.86804436244886,53.10572864821451],[-126.86805474249446,53.105549853711004],[-126.8680678981726,53.105369909322114],[-126.86807263886571,53.10519059145004],[-126.86805120229826,53.10501146579108],[-126.86809246683224,53.104833564929166],[-126.86811126919869,53.104655264253125],[-126.86807767612981,53.10447678359959],[-126.86798529362903,53.104306022481595],[-126.86785196358491,53.10414509081728],[-126.86770468742492,53.10398873448446],[-126.86752492929651,53.10384550681672],[-126.86740569482859,53.103687832740555],[-126.86728956135829,53.10354413780295],[-126.8669961344425,53.10342358893404],[-126.86674990655115,53.10332287158264],[-126.86697859379066,53.1032063366792],[-126.86715625660608,53.10306441264526],[-126.86735555068347,53.10292848797988],[-126.86754544376451,53.10279039091625],[-126.86775895340978,53.10266388113937],[-126.86797058323062,53.10253627320554],[-126.8681548257795,53.10239653133374],[-126.86831825958582,53.10224574577306],[-126.86846659997249,53.102088903514364],[-126.86862420111278,53.101927510907664],[-126.86870308120022,53.101759408777724],[-126.86880062211996,53.10158893733438],[-126.86894050977257,53.10143103600107],[-126.86913219278489,53.10128956146005],[-126.86931708184709,53.10113581081366],[-126.86942702342763,53.10097756433879],[-126.86956691029766,53.10081910640439],[-126.86970206579429,53.10065843308762],[-126.86983439537639,53.10049722461166],[-126.869962031786,53.10033492998624],[-126.87009061002927,53.10017262826766],[-126.87022765531025,53.10001306983674],[-126.87023954249113,53.10000009181978],[-126.87036471096779,53.09985406692793],[-126.87045566293287,53.099682512886496],[-126.87052411277418,53.099507771883346],[-126.87056160874293,53.09932933250313],[-126.87059442038586,53.0991509275951],[-126.87062536451892,53.09897197167051],[-126.8706562936101,53.09879302479269],[-126.87069004721565,53.09861461285898],[-126.8707247317127,53.09843562929342],[-126.87075848474574,53.09825721730413],[-126.87078848495409,53.098078277154805],[-126.87080912053263,53.097898841232244],[-126.87083163789801,53.0977199472014],[-126.87086913099152,53.097541507542985],[-126.87092255042285,53.0973646357613],[-126.87099380431839,53.09719042933214],[-126.87107912842048,53.097017795441715],[-126.87114935787793,53.09683967907046],[-126.87122818404946,53.09666989871974],[-126.87141764504369,53.096512748902065],[-126.87160644163694,53.09636848521699],[-126.87174832191695,53.09621785309298],[-126.87192211780602,53.09607202320255],[-126.87215147560292,53.095944831960054],[-126.87233629239839,53.0957899558806],[-126.87248225821281,53.0956555357823],[-126.87266536349982,53.095508515463365],[-126.87289592387377,53.09539419538725],[-126.8731226812055,53.09527767085293],[-126.87334468782764,53.09515725464902],[-126.87356384886344,53.09503461799109],[-126.87379815321002,53.094921388939284],[-126.87397602396193,53.0947923336052],[-126.87414473018471,53.09462748890863],[-126.87431178424957,53.0944733056596],[-126.87438594445106,53.0943052336777],[-126.87454141577635,53.09413376310135],[-126.87467111650508,53.09398265253044],[-126.87478460201133,53.0938159744411],[-126.87487835947654,53.093645524906265],[-126.87496177530917,53.09347290182351],[-126.87503958290316,53.09329976440476],[-126.87511359962078,53.09312497867531],[-126.87520111596972,53.092969132917254],[-126.87525042403301,53.09277548106689],[-126.87531226605172,53.09259965582599],[-126.87537784836826,53.09242381178903],[-126.8754528277419,53.09225013017216],[-126.87553813540987,53.09207805723948],[-126.87563093171771,53.09190704926319],[-126.8757340329726,53.091736529571925],[-126.8758221710146,53.09156611170447],[-126.87588496317697,53.091390843717285],[-126.87593273149844,53.091213445981495],[-126.8759730102331,53.091034983195456],[-126.87599924284217,53.09085606871885],[-126.87603296765204,53.090677654456634],[-126.87607511220226,53.09049973352524],[-126.87613411500556,53.09032225231337],[-126.87616223985411,53.09014444422028],[-126.87613889155723,53.089965332480354],[-126.87609218496566,53.089786949685426],[-126.87600727476746,53.0896150174829],[-126.87592048011516,53.08944309917654],[-126.87581600807484,53.08927523815841],[-126.87579172245508,53.08909556847559],[-126.87577773057563,53.088915831442456],[-126.87576280773501,53.088736657073426],[-126.87572078361379,53.088558804072036],[-126.87561896511082,53.08838307046798],[-126.8756180847302,53.088204912503265],[-126.87563586276607,53.088023819405926],[-126.87570424582569,53.087848509696656],[-126.8758271539265,53.08768624216747],[-126.87598386985687,53.087531567579305],[-126.8761960953238,53.08739272438068],[-126.8763530438166,53.08724869707237],[-126.87656266247483,53.087119957298505],[-126.8767590655243,53.08698460096749],[-126.87694127198823,53.086841496963466],[-126.87713766907268,53.086706695791634],[-126.87734921422548,53.086580190273615],[-126.87754851408677,53.086449848957834],[-126.87780157675057,53.08634207433031],[-126.87798957278781,53.086207898828285],[-126.87810678770713,53.08604230938132],[-126.87821831858865,53.085873956228376],[-126.87836941250457,53.08571876420498],[-126.87851379016298,53.085555769204376],[-126.87866298614347,53.08544484747597],[-126.8790073231159,53.08536441363937],[-126.87933758133575,53.08532665489442],[-126.87961112208258,53.08530501392052],[-126.87987661624136,53.085390994542855],[-126.88015412295024,53.08546960609931],[-126.88045734521761,53.08557100081379],[-126.88072694909799,53.08553985758177],[-126.88099741352566,53.085459403808564],[-126.8812071256362,53.08533625746858],[-126.88146646818323,53.08517072492367],[-126.88169166567683,53.08511750004938],[-126.88196977695034,53.085045951211285],[-126.88213511039406,53.084992051796725],[-126.88219282224317,53.08493391783956],[-126.88240461811557,53.08477601715014],[-126.8826303085899,53.084702061352665],[-126.88290081071062,53.08462384390612],[-126.8831617486624,53.084536168289006],[-126.88342461731371,53.08445072768207],[-126.88369513632952,53.08437418457766],[-126.88395558411595,53.08426242380452],[-126.8840574856506,53.08421628415762],[-126.88413835026142,53.0841478821676],[-126.88439634530852,53.084053511531046],[-126.88464028364845,53.083958116067855],[-126.88482248567274,53.08381668468809],[-126.88498289771161,53.083661414006016],[-126.88524506027609,53.08358773567614],[-126.88553866447893,53.08354239029291],[-126.88582757753171,53.08349596777482],[-126.8862844511864,53.08334294529921],[-126.88653127322583,53.08329571624215],[-126.8868438671656,53.08312977186016],[-126.88706551817074,53.08308664800377],[-126.88732783916817,53.082976541848275],[-126.88758673293526,53.08297011501088],[-126.88789258185997,53.082973984322116],[-126.88818054438529,53.08301607660879],[-126.88847921104147,53.082989179140235],[-126.88873737719217,53.082903761849614],[-126.88896964552056,53.08278771958652],[-126.8892768138236,53.0827204167584],[-126.88953215394915,53.082722976692885],[-126.8898541964592,53.08274072122935],[-126.89015019012446,53.08276481963001],[-126.89044014971002,53.08281362356515],[-126.89071862253296,53.08275997969753],[-126.89104555532772,53.082699246465616],[-126.89128759246456,53.082602730834545],[-126.89154431404596,53.08244896539714],[-126.89174048525388,53.08243964111409],[-126.89203804143618,53.082449155989444],[-126.89233411690023,53.082477174665804],[-126.89262930938249,53.08250800510214],[-126.89292363371,53.082541638229216],[-126.89321346816506,53.08258370412756],[-126.89349517639562,53.08263984198857],[-126.89376513693773,53.08271568195971],[-126.89425189764414,53.08287279142712],[-126.89437655165978,53.082709369749594],[-126.89446048085622,53.082653827967285],[-126.89462828530827,53.08262959085976],[-126.89492719644157,53.08265925791108],[-126.89521249358616,53.08270808549039],[-126.89550821434764,53.08267446928737],[-126.89561139355605,53.082645673697584],[-126.89573403220561,53.08256350039824],[-126.89591236878147,53.08241816338224],[-126.89610207704848,53.082280018847015],[-126.89632293695735,53.08215620466403],[-126.89656760243798,53.082052379107026],[-126.89684119089986,53.08198979343885],[-126.8971369171167,53.08195672884393],[-126.89743653372686,53.081931486695325],[-126.89773250815749,53.08191018886689],[-126.8980294689399,53.08189167966471],[-126.89832134418347,53.08185416816754],[-126.8986092566407,53.081805471721175],[-126.89890707270322,53.08178360114203],[-126.89918824209884,53.08172599025763],[-126.89945466993672,53.08163431893136],[-126.89971829263632,53.081587489971746],[-126.90001864505686,53.08159640763782],[-126.90031064430475,53.08165301565244],[-126.90058247156355,53.08172769640396],[-126.9008606345566,53.081792808110734],[-126.90114690774895,53.0818438550305],[-126.90143410002808,53.08189376474287],[-126.90171862679709,53.08194986156083],[-126.9019951005638,53.082067648914304],[-126.90223963448493,53.0821341346807],[-126.90239347817845,53.082288714844715],[-126.90245312219078,53.08232356077212],[-126.9026331435519,53.08238997374538],[-126.9029194824388,53.08244381276731],[-126.90324377125634,53.082522577613126],[-126.90361395746989,53.08256176265835],[-126.90371756767887,53.08264052854573],[-126.90382869002407,53.082677221084055],[-126.90408466452605,53.08275370039987],[-126.90425827476808,53.08291428537923],[-126.90443808917945,53.08305914400256],[-126.9046215876921,53.083200603555866],[-126.90480416908997,53.08334319935026],[-126.90495804731788,53.083499452237234],[-126.90518568639028,53.08360584501823],[-126.90544122878114,53.08370585607212],[-126.90567752845583,53.08382394272927],[-126.90586530701816,53.08394688310647],[-126.9061534168182,53.084038799143464],[-126.9063702250509,53.08416319240032],[-126.90660714601424,53.08426670541909],[-126.90687188085838,53.08435824329125],[-126.9071191561575,53.084464472681475],[-126.90732559336408,53.08458502641033],[-126.90745116035835,53.08472861172741],[-126.90766670558084,53.08488103477621],[-126.90784744636979,53.08502419579313],[-126.9080365238558,53.085163930841816],[-126.90825238898874,53.085287772112096],[-126.90852146505951,53.08536357641802],[-126.90880242853862,53.085426406955044],[-126.90907518652342,53.08549938482052],[-126.90933060536389,53.085592665224404],[-126.90955201439148,53.08571309984971],[-126.90977629735285,53.085836317763956],[-126.90998905284421,53.08585876649322],[-126.91023781904481,53.08577225402364],[-126.91054175663471,53.08568530689197],[-126.91080579347984,53.085613242539615],[-126.911081446437,53.08555957244698],[-126.91123910401276,53.08558524960484],[-126.91133092657272,53.08559350572246],[-126.91141466376361,53.085617511701784],[-126.91154329604917,53.08564117126846],[-126.91179152114793,53.08570368255358],[-126.91189853007003,53.08576617172255],[-126.91208126069279,53.08578324571536],[-126.9121997095294,53.0857688848123],[-126.91250088922013,53.08577160609738],[-126.91279508521129,53.08575364608776],[-126.91307131424017,53.08568371457475],[-126.91335240589403,53.085622153353796],[-126.91364518745851,53.085582356087514],[-126.91397097845442,53.08555518448806],[-126.91421066242104,53.085481615556475],[-126.9143927240577,53.08533789800448],[-126.9145824093455,53.08520084438515],[-126.91480613961588,53.08508145550801],[-126.91502034957247,53.08495429612998],[-126.91508720593438,53.08488934272864],[-126.91514022589227,53.08478920388105],[-126.91507655220242,53.08452524923385],[-126.9151391447696,53.084349404133775],[-126.91519143528203,53.08417250927361],[-126.91520710020605,53.08398806325544],[-126.9152435003776,53.083811856173384],[-126.91543988535531,53.08368202812679],[-126.91571701497102,53.08361097165179],[-126.91601277120064,53.08358010066849],[-126.91625456310193,53.083474580069435],[-126.91649100745524,53.083381982201175],[-126.91667725027821,53.08321581753596],[-126.91685643308395,53.08306987711242],[-126.91712054496513,53.08304541634799],[-126.91740855012424,53.08300227601632],[-126.91774695967493,53.082954270240975],[-126.91802594771677,53.08296946668802],[-126.91825080877146,53.08290329247623],[-126.91857097591176,53.082877272222454],[-126.91886600389897,53.08285592879248],[-126.91916270240246,53.08286818793436],[-126.91945975043461,53.082897251766546],[-126.919754871067,53.08292296822833],[-126.9200500134561,53.082950360119256],[-126.92034603796571,53.082974947526786],[-126.92064290796283,53.082995045431225],[-126.9209363154388,53.08302861610793],[-126.92122622984411,53.08307286294497],[-126.92150349091357,53.08313793334704],[-126.92177081680025,53.08321876823137],[-126.92203540713585,53.083302420741475],[-126.92229541393579,53.08339059958392],[-126.92255817025624,53.083476506336304],[-126.92283003626828,53.0835505801256],[-126.92310186388633,53.08362353304979],[-126.9233655659141,53.083709439594706],[-126.92363739813372,53.083781826505245],[-126.92402221712331,53.08389031610578],[-126.92431310464598,53.08393622414096],[-126.92460380951874,53.083973724330995],[-126.92490022431389,53.083972524822975],[-126.9251979808175,53.08394778263785],[-126.92549390645969,53.08392417458535],[-126.92579089385617,53.08390672494476],[-126.92609087391989,53.08389820648842],[-126.9263858342371,53.08391606390451],[-126.92667751743933,53.0839558013884],[-126.92696570882508,53.08400620624195],[-126.92724390274925,53.08407013539196],[-126.92751941979719,53.08414024341849],[-126.92781289245765,53.08417548188871],[-126.92810909747665,53.08416531163172],[-126.92840692963476,53.084143357643974],[-126.92870472218877,53.084120291633425],[-126.92899519917019,53.08414714215346],[-126.92928247671249,53.08419866911287],[-126.92956885202095,53.08425132302117],[-126.92986052813072,53.084290487982436],[-126.93014772159869,53.08433808712212],[-126.93042509331802,53.084406497477495],[-126.93069244420131,53.08448731211726],[-126.93093051632499,53.084597491021874],[-126.93114480923035,53.08473195305354],[-126.93138520148793,53.0848202576551],[-126.93168428419763,53.084812861627356],[-126.93198259118607,53.08477016931106],[-126.93226071632974,53.084702418734544],[-126.93254645342913,53.08464133964913],[-126.93283304229486,53.08461834271505],[-126.9331141082471,53.08468504129271],[-126.93341321416182,53.08467875227598],[-126.93371193777531,53.084655101550446],[-126.9338760371295,53.084633078989185],[-126.9339806727549,53.08458574476495],[-126.93422626835927,53.08440059833124],[-126.9343934703558,53.084434568828236],[-126.9346549213476,53.084543999619555],[-126.93493170499272,53.084628091747916],[-126.9352245668499,53.084635858854476],[-126.93552810732456,53.08461832391799],[-126.9358213153165,53.08464177444785],[-126.93607877162071,53.084739463541204],[-126.93635817392466,53.08477255124726],[-126.93666072296574,53.08475278017185],[-126.93696117729566,53.08476552973119],[-126.93711816670758,53.08476035826914],[-126.93725339922457,53.08474359793936],[-126.93753417710406,53.08466965531522],[-126.93781786339002,53.084685332632795],[-126.9381016509092,53.0847475156216],[-126.9383882514756,53.08480966662681],[-126.93850735806119,53.084825528780044],[-126.93868041089004,53.084827515678384],[-126.93898105217757,53.08480607747598],[-126.93927516871501,53.08482783589981],[-126.93956689488022,53.08486865292953],[-126.93986121077444,53.08489937268695],[-126.94015381846637,53.08493738437757],[-126.94051386131721,53.08502192152327],[-126.94053373615975,53.08520160655749],[-126.94053585403773,53.08538144188938],[-126.94051646202819,53.08556088367217],[-126.94047269525745,53.08573827835996],[-126.94041020567913,53.085914136729954],[-126.94035332317706,53.086090515175414],[-126.9403217551437,53.086269497958625],[-126.94031268772335,53.086408517794275],[-126.94027933907759,53.08646536626306],[-126.94024852983833,53.08650987747436],[-126.94023045567768,53.0866226316524],[-126.94020071941645,53.086799914465075],[-126.94013187337683,53.08698479646662],[-126.94001564191066,53.08714147701043],[-126.93991184562381,53.087310384496945],[-126.93982211623342,53.08748142107286],[-126.93973896106101,53.08765408160732],[-126.93964079750579,53.087824064534146],[-126.9395322782038,53.087991332820515],[-126.93934215925796,53.08827465681335],[-126.93938017005266,53.08834439313313],[-126.93948342697294,53.08844609751078],[-126.93961363579396,53.08858233331283],[-126.93988524703006,53.08876898036982],[-126.94013570555967,53.08892946679784],[-126.94042827811121,53.08913331874406],[-126.94066553804609,53.08928887112694],[-126.94093835740607,53.08944525145849],[-126.94105417676873,53.08964883286897],[-126.94134159088226,53.08995693419051],[-126.94159777475267,53.090164434732436],[-126.94169479734684,53.090616361132504],[-126.94167817109752,53.09083667589492],[-126.94185951643739,53.090916474477545],[-126.94217695328885,53.0908489524048],[-126.94246094670036,53.09079233688602],[-126.94274596921784,53.090739638850955],[-126.94303687573262,53.09069921914304],[-126.94334063650643,53.090648055414945],[-126.94363374331785,53.09066419963638],[-126.94376614690438,53.09068835895754],[-126.94401167611646,53.09075194506025],[-126.94411359067811,53.090792590962465],[-126.9443801028365,53.090875066865095],[-126.94446973173793,53.090909643174484],[-126.94462485534413,53.09102998670439],[-126.94482515477476,53.09116228584693],[-126.94505776527663,53.091275841758815],[-126.9453077871989,53.091373570321785],[-126.94556791684455,53.091462817885215],[-126.9458012267692,53.09152370119795],[-126.94602114133549,53.091487203994745],[-126.9461220097125,53.091480793717786],[-126.94641675111714,53.09152829322104],[-126.94670761521054,53.09156966454754],[-126.94700800627828,53.09161880261972],[-126.9471400000144,53.09166592813746],[-126.94724414040341,53.09172224113331],[-126.94745282797665,53.09176931626016],[-126.94781318227746,53.09182300948203],[-126.9481021670666,53.091863836679906],[-126.94837208977502,53.091805078782635],[-126.94858809084496,53.09167728835027],[-126.94877661590468,53.09153346573648],[-126.9490061571892,53.09142572661861],[-126.9493222028999,53.09138060737283],[-126.94948933315733,53.09132604321648],[-126.94940611753786,53.09111829053708],[-126.94937405084576,53.090939261018924],[-126.94937096758441,53.09075943386836],[-126.94938842921546,53.090578885846924],[-126.94944812814508,53.09040472171108],[-126.94969096634077,53.09030640340801],[-126.94998161227977,53.09025476315879],[-126.9502523644969,53.0901915209239],[-126.95044900943188,53.090035304123255],[-126.9507060880973,53.0899469540459],[-126.95097653557546,53.089870257054685],[-126.95124985544682,53.08979690691189],[-126.95152122858781,53.08972020120003],[-126.95178780480131,53.0896384955171],[-126.95205153192276,53.0895545710835],[-126.95230856897804,53.08946397668822],[-126.95254552056322,53.08935393855623],[-126.95282066668118,53.08927888468613],[-126.95307973186156,53.08919611604502],[-126.9532663981969,53.08905397718447],[-126.95337955928059,53.08888778803381],[-126.95343075580263,53.08871032852733],[-126.9534753611297,53.088531236860725],[-126.95356032973758,53.08835910746862],[-126.95365564107023,53.088189135613284],[-126.95375470452161,53.08801969812821],[-126.95385657958667,53.08785022887588],[-126.95396127687599,53.087681866239535],[-126.95406878345942,53.08751403659562],[-126.95417817421442,53.08734619161548],[-126.9542903869155,53.087179444268],[-126.95440449399464,53.08701380203744],[-126.95452422280943,53.086848670050834],[-126.95465053896665,53.08668573475849],[-126.95478438694887,53.08652441478631],[-126.95492389197337,53.086365845809276],[-126.95507466893004,53.08620887083676],[-126.95525560223435,53.08606285733413],[-126.95548958217002,53.08598812971367],[-126.95578817217311,53.08591680538662],[-126.95605471626047,53.08583508990133],[-126.9563125992125,53.08574223840973],[-126.95654861717038,53.0856333109074],[-126.95675316537114,53.085497753521615],[-126.95694725551287,53.085354992407524],[-126.95716247246918,53.0852361471464],[-126.95742660429093,53.08517182103011],[-126.95772817858371,53.08515088330746],[-126.95803355828261,53.08513216402117],[-126.95832929426606,53.08510118714591],[-126.95862210594254,53.08506463946502],[-126.95889458057356,53.08499687172822],[-126.95915354450277,53.08491129318853],[-126.95942485951768,53.08483401342251],[-126.95971840783822,53.084788483643436],[-126.96001196613184,53.08474408256312],[-126.96029118952406,53.08468578588826],[-126.96054165258165,53.08459634693432],[-126.96075480802719,53.08446966786642],[-126.9609593243786,53.08433353845574],[-126.96118770116618,53.08421906979485],[-126.96145136318798,53.084134559471075],[-126.96172934825177,53.084062822784524],[-126.96200352676917,53.0839888753241],[-126.9622548610886,53.08389662864832],[-126.96241120948571,53.083740154218454],[-126.96241187491627,53.0835631015544],[-126.96227666120855,53.083373709031875],[-126.9621977991449,53.0831950629439],[-126.96225887090438,53.083043290963964],[-126.96253230691661,53.082936296398884],[-126.96277776760398,53.08283344661442],[-126.963036800599,53.08271031571991],[-126.9632420899077,53.08260891293583],[-126.9635206202417,53.082520914918064],[-126.96378541332956,53.08244536334603],[-126.96404989756351,53.0823569228441],[-126.96429625530506,53.08225237718119],[-126.96445314026293,53.082119436002195],[-126.96457369261405,53.08195204511139],[-126.9647131356829,53.081792352659896],[-126.96489601420988,53.081651910489896],[-126.96510343047964,53.081520787794695],[-126.96532506564373,53.081398521931646],[-126.96555913888685,53.081289035870945],[-126.96581413782313,53.081194501263596],[-126.96606912086871,53.08109997518572],[-126.96631733611079,53.080995409943796],[-126.96656640323897,53.080886919734404],[-126.96677588257353,53.080765306293166],[-126.96684124613739,53.08059725288352],[-126.96680712904272,53.08041319629105],[-126.96674884612172,53.08023550496635],[-126.9667766226237,53.08005935046898],[-126.96685399258602,53.079884475386386],[-126.96682936516703,53.07970650860131],[-126.96677198496603,53.079527689279836],[-126.96675860186289,53.079350750983934],[-126.96684699970787,53.079208837496395],[-126.96685785586966,53.0789874343442],[-126.96689219304524,53.07881234654394],[-126.96693180655126,53.07874535369376],[-126.96709628435279,53.07870030560996],[-126.96738981813701,53.07865699742989],[-126.96768999221226,53.07861756055036],[-126.96797865379149,53.078565335318025],[-126.96825771037729,53.078501973568],[-126.96853476876339,53.0784330337127],[-126.96880701873683,53.0783579650865],[-126.96906969974121,53.07827400986293],[-126.96930747473748,53.07816336503607],[-126.96954238532922,53.078050502108084],[-126.96980711191961,53.07797437231563],[-126.97009109968705,53.0779221712509],[-126.97038369789331,53.07787887219101],[-126.97068011148359,53.077838893757985],[-126.97095731547141,53.07777667027761],[-126.97123245652122,53.07770605443252],[-126.97149605804836,53.07762152138064],[-126.97176253268468,53.07754033473168],[-126.97204735271752,53.0774842045898],[-126.97233703328854,53.07743587765359],[-126.97248228551904,53.07740946492641],[-126.97260172533979,53.07735862122521],[-126.97273497009664,53.07721633372309],[-126.97267992232426,53.07697642270459],[-126.97273190796531,53.07683816591274],[-126.97288752154469,53.07669289706276],[-126.97303351622031,53.07653593686844],[-126.97333213149368,53.07638835983822],[-126.97364693197194,53.07633534036338],[-126.97390239422747,53.07630409990644],[-126.97412097078063,53.07621377342569],[-126.97451140078772,53.07619710638535],[-126.97478185363053,53.07624866175334],[-126.9750719430909,53.07630061917853],[-126.97528374513072,53.07636274256196],[-126.9754776246133,53.07637795006812],[-126.9757324419423,53.07635903712825],[-126.97587138377298,53.07630241718011],[-126.9759900307803,53.0762577351084],[-126.97607231811904,53.07617693964567],[-126.9762516029015,53.07608581327571],[-126.97639188416179,53.0760062146239],[-126.97658776165461,53.07598610165926],[-126.97680108285802,53.07595240636494],[-126.97706336055359,53.07589252389844],[-126.97732656502279,53.0757917372001],[-126.9775880019766,53.07569544676937],[-126.97786472976648,53.07561359645235],[-126.97809029466694,53.07550247874791],[-126.97830522153744,53.07537575188425],[-126.97855165887358,53.07527790712656],[-126.97882286390335,53.07520001774091],[-126.9790940050867,53.07516023629693],[-126.97942153046435,53.075132303934154],[-126.97969188557839,53.07509868623129],[-126.98000673571076,53.075089351110975],[-126.9802856398119,53.07506126392264],[-126.9805825166394,53.075042556130235],[-126.98089711995111,53.07502257086187],[-126.98113883460547,53.074963414738676],[-126.98139213182567,53.07483916929068],[-126.98161467920741,53.074719105270596],[-126.98182392936461,53.0745907426417],[-126.98202086540584,53.0744551938617],[-126.98220834924818,53.07431525004573],[-126.98238354497026,53.07416924053354],[-126.98252291927726,53.07401120252003],[-126.98262085496341,53.07383949753375],[-126.98276876420118,53.07368643519741],[-126.9829675755529,53.07355143386949],[-126.9831838206535,53.07344261582645],[-126.98340691928429,53.073306855755064],[-126.98363690258721,53.07318616103184],[-126.9837840603064,53.0730409385567],[-126.98396935084178,53.0728875632349],[-126.98405238583742,53.072719342703024],[-126.98402952095746,53.072539687164344],[-126.98400018574262,53.072362882436394],[-126.98398934774751,53.07217807963952],[-126.98394969792642,53.07200024023101],[-126.98376837196898,53.07171936841559],[-126.98398839636363,53.0716127583414],[-126.9842307870127,53.071503164535294],[-126.98449536839291,53.07142364050037],[-126.9847631073543,53.07139899721512],[-126.98510632042895,53.07140454387269],[-126.9854123990725,53.07138069989877],[-126.98568935380902,53.071350374792736],[-126.98588072481319,53.07129835213218],[-126.98608995810838,53.071170537387566],[-126.98645406894451,53.07106945192454],[-126.98673695044049,53.07109341777992],[-126.98702407929989,53.07113920297666],[-126.98731243772575,53.071197303422835],[-126.98759811585494,53.071261028409396],[-126.98787821289928,53.07132591995552],[-126.98814292283234,53.07141279508691],[-126.98840758344507,53.07149686414622],[-126.98869565698698,53.071543193202174],[-126.98899921240147,53.07153113147143],[-126.98924285644722,53.07143608412398],[-126.98943299693174,53.071291059008814],[-126.9895610018185,53.07112806034521],[-126.98963828771296,53.07095428980356],[-126.98964066755333,53.070776099819135],[-126.98963504923799,53.070575000737726],[-126.98966682888127,53.07041449343445],[-126.98965889582955,53.070234713440016],[-126.98962105404382,53.070055175071055],[-126.98958512115998,53.069877306012636],[-126.98961269153814,53.06969666371811],[-126.9896804694986,53.06951680504746],[-126.9898180647657,53.069363819592674],[-126.99005559003827,53.06924753082965],[-126.9903034937613,53.06913507205216],[-126.99044968569704,53.0689904134912],[-126.9905083240483,53.06881903962096],[-126.99053022982322,53.06863620333554],[-126.990546475448,53.06845117336172],[-126.99059181696383,53.06827150216583],[-126.99065676601472,53.06809054589317],[-126.9907688235584,53.06792543813186],[-126.99095641967526,53.06779275769588],[-126.99118647126014,53.067676529163464],[-126.99143448071938,53.06756911396316],[-126.99167882913626,53.06746509067338],[-126.99192891481918,53.06736662151955],[-126.99218473782635,53.06727370646634],[-126.99244151302194,53.067181903412234],[-126.9926973207916,53.067088431545635],[-126.99295217390647,53.06699383760296],[-126.99321084112074,53.066903137495174],[-126.99347629280093,53.06682246486215],[-126.99375235932183,53.06675571390641],[-126.99403995283424,53.066702867914834],[-126.99433047485357,53.06665503464169],[-126.99462005610138,53.06660665276745],[-126.9949000528884,53.06654883055503],[-126.99515513434426,53.06646431497052],[-126.99538457404789,53.06632343061989],[-126.9955326476236,53.06618043478509],[-126.99570777694758,53.06603496052542],[-126.99588383235533,53.06588948713875],[-126.99606744162615,53.0657473025035],[-126.99624899665133,53.06559729985673],[-126.99644292852884,53.06545726865309],[-126.99667231315155,53.065353925727216],[-126.9969457117332,53.0652939041089],[-126.99724496837965,53.06526000140826],[-126.99754911374026,53.06523558599103],[-126.99784572956331,53.065208983301055],[-126.99814467540321,53.06520197465869],[-126.99843087434004,53.06524942524853],[-126.99871955526952,53.06528284252741],[-126.99901819803041,53.065262943180194],[-126.99931779582181,53.0652435997621],[-126.99960960849764,53.06525121521079],[-126.99986539467713,53.06535662474914],[-127.00000125343196,53.065370041835536],[-127.00043683648254,53.065410054904184],[-127.00073374258521,53.06539577775936],[-127.00103750159114,53.06539432387725],[-127.00128992750366,53.06547566205427],[-127.00141250689991,53.0656399115775],[-127.0014382396636,53.065818984927176],[-127.00149566624175,53.06599498357138],[-127.00159038490331,53.06616619257732],[-127.0017759486667,53.066305810712656],[-127.0020278116269,53.066402284306804],[-127.00231581251522,53.06644633958516],[-127.00261176935473,53.06647072109359],[-127.00290341880465,53.066510270647434],[-127.0031743872939,53.06658472393072],[-127.00340791973329,53.06669703832242],[-127.00361291324138,53.06682752393893],[-127.00377450752235,53.0669802337145],[-127.00380951551406,53.06715642175462],[-127.00377544613121,53.067336002816745],[-127.00379760899655,53.067522394110696],[-127.00405955877082,53.06757059309138],[-127.00435919639239,53.06759213307567],[-127.00465086675395,53.067632798762176],[-127.00491183782957,53.06771853886058],[-127.00512052618387,53.06784674928252],[-127.00530243700317,53.067989198903724],[-127.00548806245776,53.068129931278335],[-127.00567368736179,53.06827121916856],[-127.0057851312315,53.06843723529869],[-127.00593834707328,53.06859113401434],[-127.00610083022762,53.06874158290242],[-127.00627627967312,53.06888688299994],[-127.00644804500232,53.06903445537231],[-127.00656971410632,53.06919814245355],[-127.00669789246396,53.06936065334808],[-127.00682885657919,53.069522019777715],[-127.00698116615834,53.06967648063922],[-127.00716123499082,53.06981949887594],[-127.00722620959905,53.069996559746215],[-127.00740712951907,53.070135643862415],[-127.00763797607809,53.07025133454438],[-127.00786972445076,53.070365896512],[-127.00807840814363,53.07049298116913],[-127.00824184851307,53.070643427869065],[-127.00839416551553,53.07079844262692],[-127.00853536278048,53.0709569228116],[-127.0086608640135,53.07112393666279],[-127.00880297712084,53.07128184392695],[-127.00900873661494,53.07140390486329],[-127.00927262962145,53.07149353693042],[-127.0095346678326,53.07158374903392],[-127.00979296824312,53.0716739835525],[-127.01005943603137,53.07175350673074],[-127.01029667382451,53.07186241416861],[-127.0105192265058,53.07198209667348],[-127.01075096542,53.072095532532224],[-127.01098913560901,53.07220386584322],[-127.01124471316979,53.072296926427825],[-127.01153011407712,53.07234714939075],[-127.0118261440928,53.07237262806794],[-127.01212217446404,53.07239810600272],[-127.0124031100423,53.07245732969478],[-127.01268854014359,53.07250867019542],[-127.0129843847212,53.07252630357968],[-127.01328008806975,53.07249855881179],[-127.01358330693493,53.07247298098331],[-127.01379269254944,53.072588843896796],[-127.01389768271494,53.07275714886353],[-127.01401199395642,53.072924253136954],[-127.01421980673281,53.073053019837296],[-127.01450072423603,53.07311055339791],[-127.01479241545405,53.07315007357024],[-127.0150873404139,53.07312904546167],[-127.01542830336574,53.07307849496716],[-127.01542981838797,53.07314178970225],[-127.01518091956244,53.073289047560074],[-127.0150114232874,53.073433372459306],[-127.01499704466839,53.07361390783435],[-127.01489515322837,53.07377110737512],[-127.01478829078289,53.073876238527724],[-127.01502926467995,53.073983983865936],[-127.01515002702585,53.074146549271276],[-127.01530051238217,53.074301570877715],[-127.01547601632814,53.07444685684486],[-127.01567555644057,53.07458073017547],[-127.01586585771582,53.07471916490507],[-127.01603489678294,53.07486731154426],[-127.01617425146567,53.0750257894736],[-127.01627740113433,53.07519467282347],[-127.01640285132237,53.07535775237608],[-127.01652826231174,53.07551915575407],[-127.01668432761532,53.07567189536775],[-127.01676140131977,53.075844920205085],[-127.01675169570235,53.076025415378204],[-127.01670918630201,53.07620226640681],[-127.01664121690321,53.07636981616988],[-127.01654873976022,53.07652973279988],[-127.01663980355356,53.07670096087544],[-127.01674945480258,53.07686810241207],[-127.01681909278335,53.07704286748566],[-127.0168868619603,53.07721765755742],[-127.01700768081405,53.07738189678686],[-127.01714147897592,53.07754210662179],[-127.01729201215379,53.077697689910835],[-127.01743136750216,53.07785561041346],[-127.0175112736864,53.0780291749764],[-127.01764694542672,53.078189368075456],[-127.01777519479602,53.07835130133123],[-127.01786533848147,53.07852309208884],[-127.01795264404612,53.07869378665587],[-127.01793359614209,53.07887380637098],[-127.01785077583314,53.07904652261711],[-127.01771154349733,53.07920572217348],[-127.01750509562281,53.07933076291907],[-127.01720703452048,53.0793400531964],[-127.01692428440887,53.079285338601146],[-127.01667632574951,53.07935639218384],[-127.01665170321911,53.079538135918646],[-127.01666349181619,53.07971788094808],[-127.01664252646022,53.07989679623338],[-127.01666086661177,53.08007648484586],[-127.01666891615925,53.080256270963105],[-127.0166591418976,53.080433960354114],[-127.01655472492922,53.08060294382094],[-127.01643808069385,53.08076867067616],[-127.0163993182772,53.080946053588406],[-127.01643628706111,53.081123349684255],[-127.01633092657069,53.08129177621729],[-127.01615581830481,53.081437835465486],[-127.01598544444818,53.081586094847324],[-127.01581315946784,53.08173269402753],[-127.01562952015533,53.081873778755174],[-127.01540609081655,53.0819933586371],[-127.01518548592561,53.08211347857186],[-127.01493437129454,53.082209763559575],[-127.01472708039684,53.082339288540695],[-127.01452165639135,53.082469352906266],[-127.01427438664237,53.0825695298811],[-127.01399441620022,53.08263244360586],[-127.01371054605765,53.08268810196972],[-127.01342473704904,53.08274154411128],[-127.01314086542878,53.082797201102935],[-127.01286280188451,53.08286178108619],[-127.01259154342901,53.08293694295337],[-127.01232601378724,53.08301709315279],[-127.01210637576749,53.08313943998992],[-127.01190948209634,53.08327447359288],[-127.011701220876,53.08340343660971],[-127.01149581086354,53.08353406015562],[-127.01128468159973,53.083660814790456],[-127.01106121713762,53.08377982168528],[-127.0108148857421,53.08388110374227],[-127.01053098983037,53.08393619874143],[-127.01023520494367,53.08396393644577],[-127.00994341473583,53.084001733285135],[-127.00965558866493,53.08404957161882],[-127.0093736534473,53.08410857350386],[-127.00913584305019,53.08421481723994],[-127.0089843191782,53.084370748914914],[-127.00886198516507,53.08453483085725],[-127.0087593837447,53.0847032353853],[-127.00868686009777,53.084878097424834],[-127.00864620499621,53.08505605798916],[-127.00862428890262,53.085235534909145],[-127.00865186571072,53.085412348173925],[-127.0087792001946,53.08557598355421],[-127.00887210858266,53.08574663611811],[-127.00898547912976,53.08591318741442],[-127.00912858547328,53.086071084903374],[-127.00929020464756,53.08622154491179],[-127.00945833733694,53.08637026372394],[-127.00952793420616,53.08654391181373],[-127.00948451016373,53.08672301673281],[-127.00945040746488,53.086901477216195],[-127.00944907737829,53.08708133404349],[-127.00966674478572,53.087189289146394],[-127.00993332326595,53.08726937655169],[-127.01021527010893,53.087327476555814],[-127.01042945412024,53.087446100889416],[-127.01050846060292,53.087621917962124],[-127.01062361931088,53.08778453483556],[-127.01065393859558,53.08795796232485],[-127.0108212220476,53.088109483332154],[-127.01096154349466,53.088267967111825],[-127.01110836364583,53.08842470978749],[-127.01127558387807,53.088573433764594],[-127.01145576068089,53.088716999593714],[-127.01165997128274,53.088848042186136],[-127.01188444515151,53.08896657578107],[-127.01209787517672,53.08909193586992],[-127.0123553718811,53.0891832922867],[-127.01262468542193,53.08925998856858],[-127.0128867600459,53.089346822366544],[-127.01310938502499,53.089465378466045],[-127.01326087332258,53.08962095788047],[-127.01344383394277,53.089762820459796],[-127.01362958003904,53.089904094098806],[-127.01376899031979,53.09006258233992],[-127.01388890462928,53.09022739628832],[-127.0139473584983,53.09040337833146],[-127.01399928673675,53.0905805458535],[-127.01410246536388,53.09074942064132],[-127.01422609651017,53.0909130817542],[-127.01436551233724,53.09107156920065],[-127.01448635944305,53.091236374485526],[-127.01461927745949,53.091397149558325],[-127.01476799385287,53.09155331553837],[-127.01493614007622,53.09170090577634],[-127.01516892764313,53.09181375894962],[-127.0154209576028,53.0919102027034],[-127.01568580019799,53.09199420965358],[-127.0159496879238,53.092077668427514],[-127.016212674248,53.09216281072459],[-127.01649643837624,53.09221695386809],[-127.01679559838186,53.092211018452325],[-127.01709084257996,53.09223649162878],[-127.01738433631635,53.09226758193498],[-127.01768540725003,53.09226331313754],[-127.01791812453742,53.09237279987746],[-127.0181334060076,53.0924958920577],[-127.01825707114666,53.09266010447306],[-127.01827820825508,53.092839211736866],[-127.01827223243691,53.093019117372066],[-127.01826906927876,53.093198989787666],[-127.0182836681223,53.09337815333664],[-127.01828050520109,53.09355803467852],[-127.01826329380994,53.09373747229115],[-127.0182395436058,53.09391696622271],[-127.01812568069623,53.094083225061034],[-127.01788121689584,53.094186181150036],[-127.01763007874283,53.09428359140286],[-127.01742081152727,53.094411460446985],[-127.017301292795,53.09457609074399],[-127.01733737619753,53.0947545045318],[-127.01734637406788,53.09493428098588],[-127.01734133645806,53.09511416928241],[-127.01736713941328,53.095293236271125],[-127.01742841444405,53.09546863618787],[-127.01749622891639,53.095643979757234],[-127.01749493289822,53.095823844743215],[-127.01749550707449,53.096003684644664],[-127.01753065002829,53.0961821153078],[-127.01759472519234,53.09635749095803],[-127.01776015590958,53.096507341518134],[-127.01795702079244,53.09664235386296],[-127.01817237764558,53.09676767736029],[-127.01820658277182,53.096945551094535],[-127.01832559107937,53.09711036801858],[-127.01854462517045,53.09723286224209],[-127.01869613424408,53.09738731367862],[-127.0188012052771,53.09755561190808],[-127.01898699000589,53.09769632082051],[-127.01914873036823,53.09784788654423],[-127.01931137250855,53.09799831474615],[-127.019523954156,53.09812478923337],[-127.01971714501803,53.09826207144025],[-127.01982687912161,53.098429207940065],[-127.01987044520143,53.09860700032243],[-127.01994385946685,53.09878117342919],[-127.02005638056424,53.098947720875216],[-127.02019491521487,53.09910676453853],[-127.02023848353421,53.099284556717],[-127.02023251512544,53.09946446179401],[-127.0201993901903,53.09964291594875],[-127.0201559706382,53.09982089417114],[-127.02013408226378,53.09999981603925],[-127.02024621736396,53.1001893424046],[-127.020485562842,53.100222013315175],[-127.02078799520532,53.10023340416291],[-127.02108328428314,53.100258311569696],[-127.02136535976902,53.10031750486199],[-127.02161562414705,53.10041562710516],[-127.02182823818194,53.10054265295421],[-127.02205114940872,53.100669589381326],[-127.02227963188069,53.10079535664971],[-127.02249603171973,53.100924033874236],[-127.0226826511457,53.10105912694967],[-127.02281903457427,53.10120586000696],[-127.02283073381629,53.10138056524612],[-127.02278196842138,53.10156924034585],[-127.02278820414728,53.101750151394526],[-127.02291566929182,53.10191489034044],[-127.02310054550821,53.10205504479075],[-127.0233094849182,53.10218434088186],[-127.02349346124402,53.10232617885722],[-127.02367611855595,53.10245177545643],[-127.0239018168738,53.10257756369971],[-127.02410170544194,53.10271926288903],[-127.02432630272035,53.10283778074859],[-127.02454261067534,53.10296196383896],[-127.0247644374091,53.10308218123443],[-127.02495951147942,53.103218317950024],[-127.02517212249602,53.10334421726437],[-127.0253718292358,53.103478072014816],[-127.02556783649442,53.1036136438392],[-127.02577677744762,53.10374237081485],[-127.02597556007285,53.103876232567565],[-127.0261734282051,53.1040112224793],[-127.0263508954764,53.104153677278994],[-127.02645041477035,53.104322572472114],[-127.02669967833029,53.10441621947834],[-127.02696382768843,53.10450636601302],[-127.02718015210034,53.10463055312246],[-127.02738541566005,53.10476155032888],[-127.02758234952603,53.10489654600991],[-127.02775617856727,53.105042947783225],[-127.02784819530862,53.105210795423844],[-127.02780387295815,53.10538934873289],[-127.02782123357751,53.10556512458136],[-127.0278209509174,53.1057460918249],[-127.02779817608837,53.10592614302715],[-127.02782400390558,53.10610352155022],[-127.02786841292316,53.10631436401987],[-127.02777465888853,53.10646085099159],[-127.0277761098133,53.10663676506705],[-127.02772051945384,53.106813730843044],[-127.02772767932595,53.10699295690501],[-127.02771424428805,53.107172361997854],[-127.02773731319796,53.10735201447153],[-127.02771265381281,53.10753095235189],[-127.02770578798058,53.10771086503482],[-127.02768018529932,53.10788981106978],[-127.027724722031,53.10806759153867],[-127.0277515333862,53.10824721138814],[-127.02769591364917,53.10842305667703],[-127.02758393352569,53.108589871636376],[-127.02740307183466,53.10873263300631],[-127.02717476774995,53.10884891309248],[-127.02691875709688,53.10894134604715],[-127.02663860540223,53.109002603708504],[-127.02637779916651,53.10909059491059],[-127.02609473690812,53.10914795908893],[-127.02580277382596,53.109185229914445],[-127.02550882928325,53.10921859079532],[-127.02531536340352,53.10930487488801],[-127.02531228865162,53.10952620565714],[-127.02537363079267,53.10970216468144],[-127.02542188815384,53.10987934874153],[-127.0254841592955,53.11005529962389],[-127.0255529597723,53.110230064306144],[-127.02562920316679,53.110403652780946],[-127.02571479012755,53.110576030615924],[-127.02568729279471,53.11075443648838],[-127.025768236305,53.11092853985004],[-127.0259305861433,53.11106383807989],[-127.02614364625327,53.11120653979226],[-127.02629058854279,53.11136270589135],[-127.02643477333578,53.111520572085055],[-127.02664282782936,53.111649305013884],[-127.02689497469146,53.11174460290251],[-127.02716448503634,53.11182238538074],[-127.02742672894519,53.11190918582315],[-127.02767250065871,53.11201126076252],[-127.02790175945879,53.11212692534907],[-127.02812457325635,53.11224657194384],[-127.02835013295187,53.11236394417612],[-127.02858957055564,53.11247503670835],[-127.02876514214242,53.11261469822218],[-127.02886850133687,53.11278636327146],[-127.02908931415455,53.112900422728615],[-127.02933782675217,53.112999664523855],[-127.0295973377761,53.11308873405092],[-127.02982933876947,53.11320156519277],[-127.03000689754069,53.11334568975186],[-127.03014644616053,53.113504156568084],[-127.03021992845657,53.113678321826924],[-127.03031577036185,53.113848365780065],[-127.03044603248954,53.1140102747919],[-127.0306004454847,53.1141641203403],[-127.03081215781962,53.114288896644155],[-127.03106711682797,53.11438304064683],[-127.0312834899331,53.114506654920284],[-127.03144069362544,53.11465991923743],[-127.03155328852921,53.11482589857179],[-127.03158570687629,53.11500434758094],[-127.03153480708713,53.115181273435525],[-127.03144633040178,53.11535293328594],[-127.03133057691356,53.11551866348242],[-127.03100354673056,53.11542402796747],[-127.03070847633245,53.11537393484641],[-127.03041391044924,53.115344562238626],[-127.03011512247039,53.11533428395082],[-127.02981655367373,53.115332402621284],[-127.0295059774626,53.115337348371845],[-127.02922258151686,53.11534429780434],[-127.02892644144917,53.11536535981425],[-127.02861591438034,53.115411207236136],[-127.0283573298122,53.115476207163944],[-127.02808300913385,53.1155480666248],[-127.02782600317424,53.11563994476008],[-127.02761113018117,53.11577067527015],[-127.02738931860985,53.115885778012824],[-127.02711399620046,53.11595540278386],[-127.02698484292965,53.11599405845661],[-127.02691601392985,53.11608878212975],[-127.02687726306323,53.11626616493062],[-127.02683852555356,53.11644411233734],[-127.02676600872263,53.11661842665506],[-127.02666529903415,53.116787938767416],[-127.0266125054369,53.11696488753658],[-127.0266018770275,53.117144267060304],[-127.02657913149427,53.117325992856216],[-127.02648534756923,53.11739516030167],[-127.02634494899766,53.11743279227837],[-127.02604988407147,53.11746056982183],[-127.02576579517853,53.11751682081771],[-127.02565169558305,53.11759736926508],[-127.02559339774832,53.117663422315026],[-127.02554434134731,53.117840338057135],[-127.0255215366824,53.11801982296008],[-127.02543868576831,53.11819254056675],[-127.0252814185342,53.11834574253683],[-127.02510237733259,53.11848903918085],[-127.02486640821263,53.11859977739193],[-127.02463421990537,53.11871272344027],[-127.02443531602164,53.11884723574108],[-127.02430350390439,53.11900805060815],[-127.02415471111692,53.119163974415024],[-127.02394536912722,53.119292408761154],[-127.02371604336226,53.11940756920741],[-127.02346763660904,53.119507771494376],[-127.02313957219927,53.1195649523675],[-127.02288757521085,53.11947805381664],[-127.02260001243542,53.11942955180298],[-127.02230163134112,53.119436613975175],[-127.02203788452847,53.11952181403816],[-127.02179804931318,53.119628661941604],[-127.02156870228129,53.119743253566135],[-127.02135936320214,53.11987224792837],[-127.02114048828663,53.11999459202907],[-127.020870932291,53.12007199578291],[-127.02059169409301,53.12013603597231],[-127.02031440746471,53.120203420279395],[-127.02004289623599,53.12027747735763],[-127.01977333643617,53.120354878597304],[-127.0195028204346,53.12043116691302],[-127.01922745553844,53.12050077314348],[-127.01895789282885,53.12057817251473],[-127.01868835606733,53.12065669157741],[-127.01840812719652,53.12071905873301],[-127.01813468398208,53.12079088690818],[-127.01788243193577,53.12088773972207],[-127.01764354866592,53.12099569130794],[-127.01741515315133,53.121111386981],[-127.01719531882854,53.12123317600803],[-127.01700488795021,53.121371519841034],[-127.01693314519748,53.12150211949795],[-127.01696374231099,53.12172372333414],[-127.01696790993515,53.121897371207325],[-127.0169478413807,53.122075153858844],[-127.01693431490176,53.122291534370554],[-127.01696118407718,53.12243640872279],[-127.01692250683534,53.122618833497555],[-127.01693525185406,53.12279856600998],[-127.0169320810129,53.12297844433376],[-127.016866082315,53.123153815982086],[-127.01675496393099,53.12332061119214],[-127.01660424304418,53.123475976577986],[-127.01642043900604,53.12361762384268],[-127.01625932199887,53.12376860490464],[-127.0161510264763,53.123936495736224],[-127.01603141953284,53.12410112201165],[-127.01590711311364,53.12426466797476],[-127.01581478372768,53.12443521813762],[-127.01572436732735,53.12460688127816],[-127.01561888091241,53.12477530316741],[-127.01548418854236,53.12493557617164],[-127.01536363450546,53.125099653978914],[-127.0152778999713,53.12527183227681],[-127.01522223296642,53.125448790322054],[-127.0151458961658,53.125622573095],[-127.0150121410064,53.1257833931891],[-127.01484251488735,53.12593108344172],[-127.0146976522386,53.12605782655301],[-127.01462571290014,53.126259019843246],[-127.0145136341841,53.12642582075111],[-127.01435344140641,53.12657734668783],[-127.01419798805094,53.1267310728157],[-127.01396575502194,53.12684455294557],[-127.0137038306333,53.12693028265456],[-127.01341674096837,53.12698148182497],[-127.01312763158136,53.127026539127094],[-127.01283032479154,53.127041976198164],[-127.01253163252348,53.1270389310586],[-127.01223362929677,53.12702522969596],[-127.01193649601197,53.12704794203244],[-127.01164027904244,53.127069525246085],[-127.01134155992321,53.12706535679433],[-127.01104276237288,53.1270572708672],[-127.01074482642248,53.12704637100222],[-127.01044683718766,53.12703322977256],[-127.01014962952956,53.12701391369195],[-127.00985164070764,53.12700077096255],[-127.00955311084907,53.127003884344084],[-127.00926100844721,53.127041669746184],[-127.00897814628968,53.12707378188156],[-127.00872166915971,53.127192505273214],[-127.00851325916015,53.12728504592341],[-127.00821098745209,53.12721030616256],[-127.00799368838686,53.12708665846726],[-127.00773415048498,53.12699810686196],[-127.00744035655669,53.126964187947536],[-127.00714173191034,53.126963934447154],[-127.00684292245904,53.12695527327459],[-127.0065448950457,53.12694043727069],[-127.00624774324618,53.12692336096286],[-127.00594922686214,53.126927020921315],[-127.00565058908438,53.12692619902081],[-127.00536032822598,53.126883280640634],[-127.0050691779409,53.1268426191433],[-127.00477081963965,53.126853553778275],[-127.00449118051183,53.12690355633198],[-127.00441486336975,53.127080128325325],[-127.00441821103334,53.12726050585238],[-127.00439622864131,53.12743885740759],[-127.00425865675183,53.12759857665972],[-127.00405870466815,53.12773249726131],[-127.00386348988313,53.12786918311093],[-127.00368434938619,53.12801301119265],[-127.00348627853779,53.128147470583556],[-127.00327206281473,53.1282725465264],[-127.00303213074926,53.12837935584464],[-127.00279223875415,53.128487275888304],[-127.00259980335535,53.128623371217024],[-127.00250181047147,53.128793967007056],[-127.00241413095362,53.12896558685328],[-127.00227749027854,53.12912530463168],[-127.00221047953039,53.129300110728494],[-127.00221653884479,53.12947710344351],[-127.0019975857493,53.129600540722706],[-127.00172407053837,53.12967288626729],[-127.00151841879173,53.12980405369348],[-127.00134211714214,53.1299495302132],[-127.00118564761993,53.130102691261776],[-127.00104522808398,53.130261309936124],[-127.00083467229491,53.13038355334468],[-127.00053360670583,53.130399546829004],[-127.00023716470962,53.13037347605299],[-127.00000079725996,53.1303541845816],[-126.99970197868322,53.13034607002004],[-126.99940881025441,53.13037935763813],[-126.99913237781439,53.1304478043525],[-126.99886753455688,53.13053071943864],[-126.99860076382537,53.13061197387865],[-126.99831753328526,53.130669826529505],[-126.99802014275403,53.130682985726764],[-126.99772165194027,53.130688865527446],[-126.99742339654182,53.13070538314309],[-126.99713421837225,53.130749280949814],[-126.99685389271838,53.130811031915016],[-126.99657940436607,53.13088281779318],[-126.99630685472566,53.130956827753046],[-126.99606593505821,53.131062510293425],[-126.99584694257672,53.13118537144284],[-126.99565451391896,53.13132257544845],[-126.99548385445067,53.131470236455094],[-126.99532168948589,53.13162119626616],[-126.9951500860853,53.13176830890736],[-126.9949557522715,53.13190496297233],[-126.99474624577518,53.13203278903175],[-126.99451868306556,53.13214955226529],[-126.99430828312822,53.13227962607906],[-126.99404291756112,53.132341800236716],[-126.99374006858041,53.13236227337439],[-126.99344721002956,53.13240955450401],[-126.99317273376212,53.132481896922215],[-126.99295932845513,53.132604140838346],[-126.99279632663908,53.1327595861163],[-126.99270105885009,53.132929020616444],[-126.9926557095835,53.13311092666649],[-126.99259146668524,53.13328626805655],[-126.99242057887066,53.13342497098816],[-126.99217892985125,53.13354017138549],[-126.99203655385571,53.13369711878404],[-126.99195922902577,53.13387368998241],[-126.99197177980325,53.134049507452744],[-126.99205082262195,53.134226443593555],[-126.99212422369553,53.13440231542546],[-126.99221157995458,53.134574699603],[-126.99236207998142,53.13472415243932],[-126.99256834973077,53.134856885026196],[-126.99275143641941,53.13499877602757],[-126.99298991422314,53.1351071417778],[-126.99321454361669,53.13522347597438],[-126.99338467327738,53.13537163319943],[-126.99355757883347,53.13551865530071],[-126.99374809460552,53.13565767656449],[-126.99393955542025,53.13579669854512],[-126.99411893267121,53.13593973912202],[-126.99426220325766,53.13610044657473],[-126.99425411737872,53.13627419606487],[-126.99417303961566,53.136450244256785],[-126.99415285524883,53.136627456954734],[-126.99418235795049,53.13680704890041],[-126.9941828339215,53.13698689373159],[-126.99422536211475,53.1371635793359],[-126.99421834904356,53.13734347810868],[-126.99427769048698,53.137517781309896],[-126.99438375854292,53.13768889488372],[-126.99444027198915,53.13786265700594],[-126.99441542809919,53.138040473525706],[-126.99436721219199,53.1382201627775],[-126.99434988135721,53.138399592399054],[-126.9943456845632,53.13857946738753],[-126.99432273653882,53.138758944179926],[-126.99428947172227,53.138937387132025],[-126.99425527794831,53.13911583786192],[-126.9942117204571,53.139294931997114],[-126.99418501546202,53.13947331973204],[-126.9942088488925,53.13965128274312],[-126.99425985234171,53.139829573177224],[-126.99430245128941,53.14000849895436],[-126.9943300698314,53.140188115350625],[-126.99427517375031,53.140362257854015],[-126.99417901693775,53.14053450599638],[-126.99411665646863,53.140709831631575],[-126.99411432914042,53.14089025540613],[-126.99415501657045,53.14106751193014],[-126.99421161269174,53.141244643703935],[-126.99423641723705,53.141423718906054],[-126.99424905666822,53.141603452097975],[-126.9942635838475,53.14178317837153],[-126.9942808990929,53.14196231645283],[-126.99427575792971,53.14214219901431],[-126.99427434862706,53.14232149441675],[-126.99428245953153,53.14250743292893],[-126.99453428328937,53.14258431769241],[-126.99481767884615,53.14264916650167],[-126.99509363602537,53.14271687402145],[-126.99538995647389,53.142773769108956],[-126.99550207676054,53.14292241997067],[-126.99553913056478,53.14310475328835],[-126.9955705031108,53.14328377281795],[-126.99558313569577,53.14346295001317],[-126.99557145350737,53.14364288756559],[-126.99552317039546,53.14381978046177],[-126.99546551086695,53.14399618746279],[-126.99543224675175,53.14417463021828],[-126.99541491799245,53.144354059403696],[-126.99539760406688,53.14453348844278],[-126.99537934621434,53.14471292540108],[-126.99536014442276,53.14489237027819],[-126.99534001366092,53.14507182294761],[-126.99531332283534,53.14525076603474],[-126.9952772406856,53.145429232313916],[-126.99523742797354,53.14560772994046],[-126.99518352334417,53.145784669758186],[-126.9950938933032,53.14595574263987],[-126.99497695685507,53.1461208777084],[-126.99485344660363,53.14628495635418],[-126.99473652329013,53.14645009102908],[-126.99463089921858,53.14661850110951],[-126.99452810385547,53.14678744307558],[-126.99442812418224,53.14695636126647],[-126.99433285729084,53.14712691604474],[-126.99423946253721,53.14729746395748],[-126.99416112734157,53.14747123784194],[-126.99412691115474,53.14764968781747],[-126.99413208934358,53.147830047839925],[-126.9942044998776,53.14800256409147],[-126.99429376732682,53.14817437390385],[-126.9942895149918,53.148352572077705],[-126.99421402096732,53.1485274425264],[-126.99408293081676,53.148688222196675],[-126.9939027401456,53.14883204160395],[-126.99370074101824,53.14896483867428],[-126.99349304518246,53.149093756913274],[-126.99328915770727,53.14922601331769],[-126.9931127732063,53.149372596300566],[-126.9930512191226,53.149543431533466],[-126.99306951582012,53.14972424602866],[-126.99308122386218,53.14990398631553],[-126.99305544957413,53.15008292958234],[-126.99300340274701,53.15025984329084],[-126.99298886491779,53.15043869221431],[-126.99301180986697,53.15061833814489],[-126.99303379806297,53.15079743630723],[-126.9930689114324,53.15097642430682],[-126.99307027225862,53.15115457501147],[-126.99301073289237,53.15133156044704],[-126.99287961625247,53.15149177390643],[-126.99313705873105,53.15156580877483],[-126.9934326127122,53.15162775325696],[-126.99370773677813,53.15169715639573],[-126.99394353378942,53.15180722779899],[-126.99415171394001,53.151937144256486],[-126.99436999143191,53.15205856715292],[-126.9946196096497,53.15215843643942],[-126.99486921577832,53.15225774056536],[-126.99508748392132,53.15237860645085],[-126.99525675837752,53.1525273321424],[-126.99544272102857,53.15266807360641],[-126.99566104540075,53.152791170033254],[-126.99589041117702,53.1529057737567],[-126.99610965398566,53.153028305856374],[-126.99634363304679,53.153139508329474],[-126.9965959851279,53.15323598891669],[-126.9968401021562,53.15334038194724],[-126.99708970737404,53.15343912565958],[-126.99735030098239,53.153527135827446],[-126.99761635600437,53.15360836732895],[-126.99783556962505,53.153728655470964],[-126.99802246202567,53.15386882928988],[-126.99824540914284,53.153989085192016],[-126.99848670616142,53.15409237812437],[-126.99875461348556,53.15417247094664],[-126.99898953482435,53.1542836602787],[-126.99922166683396,53.154395993214386],[-126.99948046376124,53.15448681070964],[-127.00000131758074,53.15464769141089],[-127.00030316190208,53.15469668429486],[-127.00059537520436,53.15473510845709],[-127.00088759088534,53.154772976105484],[-127.0011753688071,53.154821529961346],[-127.00148369747399,53.15486765922545],[-127.00174927858724,53.154928160459875],[-127.00190446404602,53.15511341722232],[-127.00188425012045,53.15528838882642],[-127.00180437656086,53.15547562635584],[-127.00193634682093,53.15562914036701],[-127.00214595105547,53.155738861517335],[-127.00226872039775,53.15582017532297],[-127.00220326569043,53.15590421250192],[-127.00205429102195,53.15602144278818],[-127.00188542761775,53.1561691041144],[-127.00183811195171,53.156347101827684],[-127.00182839227034,53.15652982807042],[-127.00179038869672,53.156705514834364],[-127.0017393142776,53.156882423747426],[-127.00162427341017,53.15704867778798],[-127.00154015893168,53.15721522577192],[-127.00165190021899,53.15738459837118],[-127.00175892553573,53.15755289025773],[-127.00189224201692,53.15772375629263],[-127.0019365372934,53.157893699504356],[-127.00194914998576,53.15807007820511],[-127.00188397860836,53.15824543008486],[-127.00181872716004,53.15841742104325],[-127.00181740227953,53.15859895550337],[-127.00175410274184,53.15877429140583],[-127.00165976788153,53.15894484310749],[-127.00148326607719,53.15908696558643],[-127.00141183392466,53.159274695698365],[-127.0014092981632,53.15944503516628],[-127.00157911515106,53.15961391630969],[-127.00170663210625,53.15977698789232],[-127.00179219333732,53.15994882276646],[-127.00188803916731,53.1601194500027],[-127.00203875686344,53.160272804945926],[-127.00224136868165,53.16040275426966],[-127.00227173215882,53.16057729715624],[-127.00219375014365,53.160765638829936],[-127.00219333126198,53.160945489115655],[-127.00222285687651,53.16112452110785],[-127.00224115785986,53.161303648118434],[-127.00228751727401,53.16148141701594],[-127.00234883878383,53.161657373933096],[-127.00246953497772,53.161848524109146],[-127.00244436696028,53.161933331422084],[-127.002393772944,53.161972422021016],[-127.0025632041849,53.16212505300095],[-127.00258296635612,53.16236579564293],[-127.00264763747037,53.162525481034926],[-127.00280297617884,53.162675998960275],[-127.00303549785566,53.162801767210276],[-127.00327519400695,53.16291458383509],[-127.003581963343,53.16301058840732],[-127.00375546928052,53.163097637681346],[-127.0039766494479,53.163219018222065],[-127.00424916824338,53.16329346607801],[-127.0045325578022,53.16335156916315],[-127.00480869206116,53.16342037353838],[-127.00506479352993,53.163512887072045],[-127.00531221860342,53.163595380174556],[-127.00557233340486,53.16369961942487],[-127.00579259113849,53.16382156917723],[-127.00597308459997,53.163965137205295],[-127.0061322271191,53.16411729474819],[-127.00626720247183,53.16427750109052],[-127.0063928782988,53.164440592094856],[-127.00650815025347,53.16459984514809],[-127.00672962582065,53.16473297895236],[-127.00706504759044,53.164811923239945],[-127.00729546319762,53.164887842834865],[-127.00756227128036,53.16495784072102],[-127.00782867124309,53.16504969593569],[-127.008017120016,53.16517303288899],[-127.00823278284315,53.16529781405003],[-127.00843826869587,53.1654282840707],[-127.00864192225443,53.16556044563257],[-127.00884275954981,53.165692639809826],[-127.00902513159728,53.16583563141067],[-127.00916661977143,53.16599353790229],[-127.00927836132023,53.16616066191904],[-127.00938821523224,53.166327801917504],[-127.00949808500006,53.166494941671004],[-127.00960143070704,53.166663813237484],[-127.00969077175773,53.16683505413627],[-127.00977080069819,53.16700805067037],[-127.00988439241866,53.167174593547145],[-127.01002963715291,53.167331911138625],[-127.01014230146396,53.167498461666916],[-127.0102213892147,53.167671465890926],[-127.010293023439,53.167846218905815],[-127.01035717709712,53.16802159148064],[-127.0104390696288,53.16819457158871],[-127.01053868947919,53.168364038784325],[-127.01070874545384,53.16850096557105],[-127.01077885726069,53.16869029786424],[-127.0108793837119,53.168858071762216],[-127.01093802741629,53.169037973043935],[-127.01105721011436,53.16920279067265],[-127.0112163906021,53.169354940944494],[-127.01141821155052,53.16948767807165],[-127.0116375869027,53.169609624501845],[-127.01183571658929,53.169744633480015],[-127.01202828005401,53.16988193072654],[-127.01225042195354,53.17000216713304],[-127.01251298244199,53.17008844219306],[-127.01279371802758,53.1701510305058],[-127.0130130186488,53.170270169290916],[-127.01318614971473,53.1704171507812],[-127.01334718931642,53.17056816177299],[-127.01349338793361,53.170725466868674],[-127.01364329474528,53.17088105478652],[-127.01379134223164,53.17103721420411],[-127.01399518722356,53.17117553216719],[-127.0141383170958,53.17132221341955],[-127.0143365701754,53.17146169920148],[-127.01456979503546,53.17157455750438],[-127.01479196636213,53.17169534468954],[-127.01499010254796,53.17182979257723],[-127.01510837949209,53.171994613843765],[-127.01508035408848,53.17215452210466],[-127.01501217041695,53.17231982138778],[-127.01488988630899,53.172496233668404],[-127.01470493424162,53.172637882398405],[-127.01457291617737,53.17279924638307],[-127.01451715685843,53.1729750791755],[-127.0145167902233,53.173154928300754],[-127.0145473208994,53.17333394792824],[-127.0145722302928,53.17351301570055],[-127.01458309181108,53.17369275959892],[-127.01456397328452,53.17387220460099],[-127.01457856928015,53.17405136069403],[-127.01462500946981,53.17422912338936],[-127.01470786257185,53.174401536207974],[-127.01483174041978,53.17456518906649],[-127.01499838296571,53.17471446439237],[-127.01519189543075,53.17485119249658],[-127.01539839357281,53.1749816416577],[-127.01560117038264,53.175113798657165],[-127.01578729992826,53.175254506406894],[-127.01596322418354,53.17539978345431],[-127.01612802718526,53.1755502024392],[-127.01627143472308,53.1757075189011],[-127.0163822855054,53.1758746434318],[-127.01647728339516,53.17604470968742],[-127.01656949030045,53.17621591136109],[-127.01664489958335,53.176390062922074],[-127.0166913226771,53.17656726905275],[-127.01671438240663,53.1767469078054],[-127.01672152106595,53.17692669220529],[-127.01670145208159,53.177105580727485],[-127.01667106857427,53.177284566749904],[-127.01664444762902,53.17746351147743],[-127.01662064357095,53.177642996730775],[-127.0166052649815,53.17782240962679],[-127.01659832696033,53.17800175004021],[-127.01659702460377,53.17818160678797],[-127.01662381958477,53.17836065756724],[-127.0166936509749,53.17853653309066],[-127.01688067490517,53.178674990331366],[-127.01712405916894,53.178779348048934],[-127.0173435110729,53.17890240369138],[-127.01749160027639,53.179058557799564],[-127.01753429663736,53.179235795419224],[-127.01747194733308,53.17941056513997],[-127.01730211483768,53.179558254555154],[-127.0170762598512,53.17967616229657],[-127.01682365458298,53.1797730186679],[-127.01658439571972,53.179879279716864],[-127.01652763703856,53.180052880340945],[-127.01651320174746,53.18023228488182],[-127.01651752141576,53.180412093148426],[-127.01651716300275,53.18059193258944],[-127.01649052454798,53.18077088605146],[-127.0164779630302,53.18095027443107],[-127.01647573026095,53.181130129906144],[-127.01648285365222,53.18130991402062],[-127.01646279514392,53.181489366693185],[-127.01643522607206,53.18166831907224],[-127.01643299329852,53.181848183438525],[-127.01643636796709,53.18202799069554],[-127.01643317700314,53.182207298517234],[-127.01641782451748,53.182387275431985],[-127.01640338796437,53.18256667973202],[-127.01641519086151,53.18274585881522],[-127.01644947145158,53.182924280230026],[-127.01638997160983,53.18310070972484],[-127.01635489071695,53.18327917061541],[-127.0163207391744,53.18345762350055],[-127.01627437167,53.183634504912355],[-127.01626836237972,53.183813272017645],[-127.01631107033032,53.18399163001994],[-127.01635940302693,53.184169374990184],[-127.01635340593678,53.184349262446986],[-127.01627169717412,53.1844984345131],[-127.01630043628748,53.184680264862145],[-127.0163181462022,53.184832501037675],[-127.01654640559741,53.184969484203584],[-127.01680419781668,53.1851258266377],[-127.01676474664856,53.18531777098419],[-127.01667667145117,53.18547539717591],[-127.01655936173448,53.18562543070506],[-127.01626729956689,53.185798253216035],[-127.0162598744256,53.18595742798318],[-127.01635903175206,53.18614425644229],[-127.01622789564762,53.186304492711386],[-127.01598669703229,53.18640964798977],[-127.01569520230377,53.18645024509753],[-127.01540475155966,53.18641687954231],[-127.01512002423641,53.18646638120904],[-127.01491161855397,53.18657069742541],[-127.01471574649293,53.186729245627404],[-127.01447839802543,53.18683884676964],[-127.01422285909624,53.18693235146555],[-127.01394511124421,53.18699916270616],[-127.0136722155029,53.187073210521284],[-127.01341187240698,53.1871622725484],[-127.01320026007517,53.18728957883],[-127.0130076175312,53.187426806960346],[-127.01283015893154,53.18757119263931],[-127.01280064241438,53.18774791907266],[-127.01335004283528,53.18771184596176],[-127.01364770876725,53.18769361190717],[-127.01394556239111,53.187683218986926],[-127.01424291585185,53.1876907575807],[-127.01453802792318,53.187722409835786],[-127.01483316709437,53.18775517266155],[-127.01513161224749,53.18776942267002],[-127.015430826008,53.1877769423446],[-127.01572927151595,53.187791190847],[-127.0160208516779,53.187831833703136],[-127.01627802804542,53.1879231845421],[-127.01651967028985,53.188030919866236],[-127.01674283664069,53.18815058302523],[-127.01695585001015,53.18827649120276],[-127.01716241911798,53.18840693633675],[-127.01736527936256,53.188539653966856],[-127.01755612569167,53.188679197455585],[-127.01773404026954,53.1888266952444],[-127.01795156511834,53.188944719383315],[-127.01822806361285,53.189020777715314],[-127.0185036467096,53.18909739904595],[-127.01871650822389,53.189216582391175],[-127.01890450377671,53.18935390724121],[-127.01908141375863,53.1894986148939],[-127.01925096306243,53.18964842338277],[-127.01941866439014,53.189799923797665],[-127.01958821609573,53.18994973177939],[-127.01976514430253,53.19009499401635],[-127.01994951964647,53.1902373950983],[-127.02014774544686,53.19037126838703],[-127.0203617099312,53.19049716228077],[-127.02058399716738,53.19061793735613],[-127.02080811983829,53.19073701993428],[-127.02103962065154,53.19085100073233],[-127.02125835176538,53.19097964869414],[-127.02142405726426,53.191125005216456],[-127.02147047586088,53.19130052317835],[-127.02148052280513,53.191483642482844],[-127.02148957227229,53.191663964643666],[-127.02149483045437,53.19184319898303],[-127.02164736339668,53.19198642775763],[-127.02180944514485,53.192137417450326],[-127.02198455751584,53.19228381250662],[-127.02220497066483,53.19240404494649],[-127.02244661152247,53.19251064778377],[-127.022668888207,53.192630298551585],[-127.02287364858364,53.19276186986697],[-127.02309225989536,53.192884921953215],[-127.02334304879253,53.19298191525535],[-127.02361305649303,53.19305913773368],[-127.02389396093822,53.193121698946136],[-127.0241757568221,53.19318201079491],[-127.02444758777484,53.19325697462784],[-127.02470941342688,53.19334491459832],[-127.02494552454237,53.19345435698141],[-127.02519541856687,53.19355248360283],[-127.02545178613168,53.193647183206565],[-127.02566485309903,53.19377307534787],[-127.02579437280151,53.193933305533236],[-127.0259081151197,53.19409983942799],[-127.02599010802948,53.19427224171324],[-127.02603192394754,53.19445003864113],[-127.02602034371822,53.19462941851904],[-127.02605839706578,53.19480669222871],[-127.02627049960319,53.19493147112424],[-127.02647335315132,53.19506081177249],[-127.02649171561804,53.195238246973446],[-127.02629994335624,53.195372127158166],[-127.02606546418221,53.19548453171161],[-127.02591345459689,53.19563430954957],[-127.02590094232086,53.19581426209579],[-127.02589217939813,53.19599417319004],[-127.02588433284777,53.19617352056389],[-127.02587556999734,53.19635344058409],[-127.02586587692319,53.1965333596768],[-127.02585428042043,53.19671273946684],[-127.02584364245203,53.196892675667364],[-127.02583486558557,53.197072031003614],[-127.02581956118442,53.197252563337955],[-127.02581172756915,53.197432466234524],[-127.02583293554326,53.19761100611667],[-127.02587014212708,53.19779163947247],[-127.02592138999769,53.19797159544561],[-127.02599593160367,53.19814574718184],[-127.02610397968377,53.19830896844265],[-127.02628381233758,53.198455316124004],[-127.02650904480343,53.198579416043266],[-127.02676891174896,53.19866176602804],[-127.02705726258347,53.19872032916425],[-127.02730991593123,53.19881506595324],[-127.02754607802842,53.19892506744125],[-127.02777951656812,53.19903900934032],[-127.02801661112588,53.1991490018095],[-127.02826291841056,53.199252190880735],[-127.02852388635692,53.19934125046663],[-127.0288047852851,53.19940155930595],[-127.02910746243847,53.19943198071476],[-127.02941456107742,53.19945172271438],[-127.0297060342266,53.19944527256917],[-127.02995144578448,53.19935741701739],[-127.03011351376973,53.199197462377306],[-127.0302134483624,53.19902683387267],[-127.03030485565994,53.198852926894695],[-127.03044075264806,53.198696551849835],[-127.03064373573994,53.198560891431555],[-127.03088775981618,53.198454562203175],[-127.03115497707795,53.19837716349437],[-127.03143850654831,53.19831474437568],[-127.03172791971134,53.198262922529004],[-127.03201755084613,53.19822006204139],[-127.03231414774073,53.19819339182667],[-127.03261178341222,53.19817118483473],[-127.03291245632754,53.19815847931633],[-127.03319900698841,53.19810443781016],[-127.03348053361533,53.19803699346572],[-127.0337276262223,53.197941836472786],[-127.03390690473917,53.197796292642444],[-127.03409477714582,53.19765683175953],[-127.03436860796238,53.19758160894182],[-127.03465816313478,53.19753593685669],[-127.03495583417758,53.19751540883676],[-127.03525495726866,53.19751560106718],[-127.03555351918867,53.19753147545235],[-127.035850357438,53.197553531377814],[-127.03614376190308,53.1975885068013],[-127.03643722153728,53.19762571305093],[-127.03673237821837,53.197655624972136],[-127.03703003803837,53.197673188772114],[-127.03732252798115,53.197708725062135],[-127.03760709598758,53.19776561948043],[-127.03783844209464,53.1978319434515],[-127.03815720010485,53.19790646501268],[-127.03843228593988,53.19795895856234],[-127.03857509637689,53.19797059692781],[-127.03876731496659,53.198008684914576],[-127.0390182576281,53.19803225584346],[-127.03935239333236,53.198045576671426],[-127.03969071315072,53.19803868190482],[-127.03991111417241,53.198002576784994],[-127.04016198992376,53.19794714625385],[-127.04036284176448,53.19787871745937],[-127.04048749659445,53.197838405282745],[-127.04071338306748,53.19772044509714],[-127.04095555611457,53.19761691681114],[-127.04121301773661,53.19752444967422],[-127.041500428273,53.19746813938598],[-127.04166239261816,53.1974583161539],[-127.04179009247625,53.19746559253898],[-127.04208543983749,53.19754087417687],[-127.04236819343491,53.197600014169694],[-127.04265451801724,53.19765183433715],[-127.04294621962731,53.197693530951376],[-127.04324453699871,53.197699303648314],[-127.04354323182605,53.19768267124367],[-127.04383381961067,53.19764089379063],[-127.04412335124901,53.197594642928216],[-127.04441899094918,53.197567941768675],[-127.0447162245518,53.19756812677341],[-127.04481759085574,53.197609811845446],[-127.0447704580239,53.19771386926013],[-127.04454824972606,53.19782844335209],[-127.04433681607141,53.19796140579185],[-127.04410232760766,53.198072716797206],[-127.04388124018887,53.19819455846871],[-127.04378790483196,53.19836402043737],[-127.04382885463497,53.19854181901138],[-127.04392401356057,53.19871185218693],[-127.0439687141923,53.19888961763744],[-127.04395251389793,53.1990690402034],[-127.04383469162124,53.19923423588435],[-127.04367246816463,53.19938581185519],[-127.04350168803516,53.199532980952064],[-127.04329579728406,53.19966365149167],[-127.043067061082,53.19977995630885],[-127.04295005264593,53.19994065287802],[-127.04295526683394,53.199999993372465],[-127.04296666788764,53.200119786290855],[-127.0430095185886,53.20029868872896],[-127.04310750272886,53.20043116534127],[-127.04331194883399,53.20054646169579],[-127.04355460677601,53.200651892429555],[-127.0437751385542,53.2007726398351],[-127.04396703085771,53.2009104556166],[-127.044140379899,53.20105738952322],[-127.04429793814751,53.201210073808255],[-127.0444471499995,53.20136618398565],[-127.0445842506879,53.201525771205084],[-127.04470460107848,53.20169054371183],[-127.04479696442066,53.20186116537188],[-127.04484074200086,53.202038938393585],[-127.04482454419957,53.20221836077478],[-127.04476042635022,53.202394279466276],[-127.04465486283222,53.202562164279975],[-127.04450017040338,53.20271591562066],[-127.04430665676675,53.202854321950404],[-127.04406635101262,53.20295840487865],[-127.043801472573,53.203055425032716],[-127.04352373979386,53.203087004276206],[-127.04320554945328,53.20307579549003],[-127.04290627779388,53.20307058654343],[-127.04260646171691,53.20308163330696],[-127.04232169536694,53.20313287581114],[-127.0420776052335,53.203235867428596],[-127.04186599769024,53.20336378854694],[-127.04166009823719,53.20349445584321],[-127.04145133576182,53.203623462700705],[-127.04124350232107,53.20375246997007],[-127.04103569629233,53.203882032379724],[-127.04082883275952,53.20401214189127],[-127.04062289827073,53.204142251826205],[-127.04041699118692,53.20427291690789],[-127.0402120266007,53.204404129102706],[-127.04000800473332,53.20453589737759],[-127.03981821850368,53.20467426332398],[-127.03963319555649,53.204815392870785],[-127.03944817003061,53.20495707789484],[-127.03927831147834,53.20510478781807],[-127.03913589690329,53.20526290598123],[-127.03902463561374,53.2054297147344],[-127.0389303622222,53.20560030062545],[-127.03883703185282,53.205771433916844],[-127.0387257680465,53.205938242343784],[-127.038578626515,53.206094715938015],[-127.03838313408771,53.20623033262982],[-127.03815623665066,53.206347731506675],[-127.03792745016106,53.20646402598417],[-127.03773865766449,53.20656707961159],[-127.0376073087942,53.20675647260743],[-127.0375188176029,53.206933729502744],[-127.03739534956611,53.20710007863016],[-127.03736951745479,53.207232522875465],[-127.03751150171419,53.20743857090298],[-127.03762997987954,53.20760393109781],[-127.03767838782156,53.20777998024005],[-127.03767436729129,53.207960414663624],[-127.03767315365133,53.20814026872646],[-127.03769162514173,53.20831938566824],[-127.03769509231446,53.208499189744764],[-127.0376760561269,53.208678635093875],[-127.03765418553394,53.208857549476505],[-127.03763983004059,53.2090369537969],[-127.0376357953708,53.209216823491495],[-127.0376383323872,53.20939664459026],[-127.03764181442509,53.20957644843334],[-127.03764435148868,53.20975626949746],[-127.0376468883539,53.209936081582185],[-127.03764471545253,53.210115379125014],[-127.0376256783236,53.210294824310736],[-127.03760662602933,53.210474269607566],[-127.03758946406121,53.21065369833225],[-127.03757230079873,53.210833691774226],[-127.03755606878707,53.211013112315136],[-127.03754171214564,53.21119251641671],[-127.03752923089829,53.21137190407981],[-127.03752238975146,53.21155179810941],[-127.03752681559249,53.211732158210076],[-127.03755934707864,53.21191115174617],[-127.03766752995634,53.21207660175199],[-127.03782789786074,53.21222870456555],[-127.03800962334236,53.212371656184786],[-127.03820061785171,53.212510044370184],[-127.03839532337552,53.21264671451753],[-127.03860207767363,53.212777120548395],[-127.03882453435257,53.212897868908264],[-127.03906722445768,53.213002187885834],[-127.0393355818597,53.2130821862805],[-127.0396211036964,53.21313570649097],[-127.03991552326578,53.2131689791371],[-127.04021167997148,53.21319719808819],[-127.04050856159455,53.213216437058215],[-127.04080733298423,53.213236223417574],[-127.04109819608759,53.213277367798426],[-127.04138014973522,53.21333820280582],[-127.04165123806558,53.21341425477233],[-127.04190405320931,53.21351063558235],[-127.0421255926514,53.213631376915565],[-127.0423193709339,53.213768057808736],[-127.04248998864884,53.21391613804115],[-127.04262249631479,53.214078008129505],[-127.04268125490813,53.214254528536785],[-127.04262461248723,53.21443037893376],[-127.0424641883437,53.214581379873515],[-127.04225729077807,53.214712055737564],[-127.04201121535732,53.214813942960205],[-127.04174207971465,53.214893057844805],[-127.0414699979776,53.21496716027718],[-127.04120279010276,53.21504906267706],[-127.04093943030814,53.215134292130685],[-127.04068952905256,53.21523341339908],[-127.04047213469217,53.215356890537315],[-127.04026806078295,53.215488658487665],[-127.04006779346383,53.2156220778764],[-127.03987226154028,53.2157576873717],[-127.03967960341714,53.215896077016176],[-127.03949262763165,53.216036101703914],[-127.0393094419181,53.21617832485228],[-127.03912911749028,53.216322207823474],[-127.03897909288582,53.216477594495274],[-127.03888951773013,53.2166498141931],[-127.03888359936995,53.21682857926234],[-127.0388983271225,53.217008292801594],[-127.03891588981838,53.217188537235565],[-127.03892404622654,53.217367743612805],[-127.0388768193633,53.21754519443526],[-127.03880983367505,53.21772057741746],[-127.03872022767084,53.217891676628135],[-127.03860426313022,53.218059080531994],[-127.0385626054339,53.21823480609922],[-127.03855485103381,53.21841527228517],[-127.0385592681271,53.218595067083214],[-127.038581498492,53.218774714749],[-127.03861684727212,53.21895311799892],[-127.03867184419671,53.21912967280813],[-127.03873620726456,53.219305589741225],[-127.03875654900578,53.2194846891418],[-127.03877409825184,53.21966436875598],[-127.03876724740647,53.219843706420605],[-127.0387341202601,53.22002271857026],[-127.0386423219587,53.22033389728298],[-127.03853857891981,53.220502314240555],[-127.03840083341076,53.22066207404261],[-127.03823185242742,53.2208103376782],[-127.03806003634107,53.22095750539408],[-127.03792228732028,53.22111725563943],[-127.03784962299719,53.22129101113858],[-127.03784078198463,53.221465884046495],[-127.03793083563913,53.22165613359691],[-127.03801064262873,53.221811746760025],[-127.0379921057787,53.2219738144931],[-127.03791273039822,53.22214146156417],[-127.03786141074171,53.22230606620457],[-127.03780416126125,53.2224578326785],[-127.0377715011107,53.22257968655904],[-127.03766093735841,53.2227005461277],[-127.03750604644806,53.222811709196506],[-127.0373114324253,53.22294787027511],[-127.03718028906431,53.223109246811525],[-127.03710386617801,53.223283034497435],[-127.0370707154397,53.22346148125276],[-127.03705351706321,53.2236403441868],[-127.03698181785346,53.22381521089122],[-127.03687049923273,53.223982015969895],[-127.03670718280945,53.22413246842666],[-127.0365163672521,53.224270835774895],[-127.03632081139511,53.22440755902904],[-127.03610431531786,53.224532148622124],[-127.03590394932758,53.22466443126101],[-127.03581804161632,53.22483437461659],[-127.03580257763115,53.225007063867814],[-127.03581057146678,53.225180112867186],[-127.03581518360389,53.225368313411174],[-127.0358175214505,53.225540282350686],[-127.03581038257468,53.225708416873466],[-127.03574550828928,53.2258944277402],[-127.0356429698884,53.226037059865455],[-127.03546771436265,53.226198263685816],[-127.03523592255222,53.22631177129887],[-127.03496575564328,53.22639088753186],[-127.03468063102993,53.22643426934988],[-127.03438713914296,53.22648052916324],[-127.03409134570357,53.22650944535965],[-127.03379756483362,53.226543936700644],[-127.03350782360421,53.22659016161364],[-127.03323563855608,53.226663689043214],[-127.03301146632347,53.22678217243849],[-127.03285382229969,53.22693536644064],[-127.03274910817758,53.22710435058007],[-127.03271403246116,53.22728169185772],[-127.03277278182559,53.22745878053652],[-127.03282775160888,53.22763477265722],[-127.03275035822931,53.22780800062495],[-127.03262956280425,53.2279720869665],[-127.03247854211101,53.22812746359146],[-127.03229528061163,53.228269683946756],[-127.03207207022292,53.22838927747171],[-127.03180081528963,53.228463349075206],[-127.03152284944272,53.228531311322435],[-127.03125646863236,53.22861262684169],[-127.03099881065363,53.22870506171371],[-127.03076410295566,53.22881578885265],[-127.03056849391436,53.22895194664923],[-127.03040230158969,53.229101294181895],[-127.03022187816208,53.229244606974056],[-127.03003197625117,53.22938407566356],[-127.02985249455749,53.229527935426155],[-127.02968820106291,53.22967838585444],[-127.02953620424964,53.229833211164824],[-127.02939839408492,53.229992950752006],[-127.0292728687425,53.2301559539054],[-127.02915962789892,53.23032220273963],[-127.02903881134772,53.230486285204265],[-127.02888776847021,53.23064165704846],[-127.02873198522883,53.230795393574695],[-127.02857620085409,53.23094912988378],[-127.02842513982876,53.23110451019275],[-127.02828354274885,53.23126260491887],[-127.0281598992633,53.23142614615019],[-127.02805233311574,53.2315951502109],[-127.02794856121736,53.23176524173247],[-127.02783529584103,53.23193148929039],[-127.02769743314988,53.23208899507671],[-127.02751616452812,53.23223734831683],[-127.02729393207669,53.232360285246884],[-127.02703206779246,53.23243538460606],[-127.02673552664841,53.23247436374133],[-127.02644009416679,53.232520064344286],[-127.02617361032152,53.23259856319364],[-127.02591298593765,53.23268653028653],[-127.02565623586798,53.232779509896915],[-127.0254023749508,53.23287526961965],[-127.0251475806167,53.23297159260931],[-127.02489178503589,53.233065682742854],[-127.0246330996044,53.23315643586038],[-127.0243696070321,53.233242183315014],[-127.02410512702332,53.23332626247054],[-127.02383970020657,53.233410349198714],[-127.02357714886259,53.23349665144488],[-127.02332520968939,53.23359463096424],[-127.02307895156639,53.23369535761787],[-127.02278913592156,53.23374099156093],[-127.0224902730658,53.2337614966421],[-127.02219102919813,53.23376688234808],[-127.02189184079249,53.23377394304776],[-127.02158657441925,53.233763127790446],[-127.02130420679117,53.233767236422246],[-127.02099678447762,53.23382254610934],[-127.02071946846536,53.23388040149801],[-127.02042713790716,53.23393894119575],[-127.02013036303593,53.23392972533495],[-127.01982644497724,53.23385783267718],[-127.019559841864,53.23377664566026],[-127.01926976399915,53.2337337648651],[-127.0189709658468,53.233718405392494],[-127.01867300565745,53.233698556080796],[-127.01837670466767,53.23367028374914],[-127.01807886665316,53.23365547850661],[-127.01777967672004,53.23366308459972],[-127.01748479438993,53.233693071377786],[-127.01719991278426,53.233749298235495],[-127.0169218886956,53.23381722606154],[-127.01664966857048,53.2338923910114],[-127.01638612848458,53.233977009413934],[-127.01613990547057,53.234079962117725],[-127.01590610170106,53.23419177166385],[-127.01564737651239,53.23428194052319],[-127.01537031933496,53.23435098579404],[-127.01509323267727,53.23441946594233],[-127.01488130806723,53.23454341128774],[-127.01474627639892,53.23470422952902],[-127.01460458773444,53.234861752105985],[-127.01437639633973,53.234933729310185],[-127.01406366778916,53.234963860127344],[-127.01380106340604,53.23501035967732],[-127.01353829891602,53.235049581433024],[-127.01327766974356,53.23506077259947],[-127.0130034345394,53.23505247568064],[-127.01274697623768,53.23496390820572],[-127.01248578141353,53.23487313968385],[-127.01225591225084,53.234758008590894],[-127.0120426652895,53.23463153945125],[-127.01182850213888,53.23450563350184],[-127.01158297359177,53.2344029599087],[-127.01130375665956,53.234343159965796],[-127.0110091868291,53.234308131652995],[-127.01071214369912,53.23428769876886],[-127.01041331795702,53.23427119749612],[-127.01011385450879,53.234267581827496],[-127.00981462049732,53.234272936172474],[-127.00951546495753,53.23428220625609],[-127.00921632429883,53.234291475457134],[-127.00895855136851,53.23434352551771],[-127.00873923975969,53.234395256789995],[-127.00849293879509,53.2344561719887],[-127.00822988198566,53.234522840449614],[-127.0079921813654,53.234629620706805],[-127.00776416970386,53.2347492080053],[-127.00757090341848,53.23483040366992],[-127.00736223669348,53.23489548752361],[-127.00722694620447,53.23500699848727],[-127.0069186609262,53.23510597701988],[-127.00667523065682,53.23520888604309],[-127.00649126617294,53.235325855919264],[-127.00620503211675,53.23544425805529],[-127.0060226095153,53.23558698485744],[-127.0058354333219,53.235727510742485],[-127.0056025255532,53.23583872725097],[-127.00534480592472,53.235933355589225],[-127.00524540284002,53.23609442519718],[-127.00525906323,53.23627413998774],[-127.00526239649618,53.236453386555],[-127.00520840452978,53.23662975765016],[-127.00509128355885,53.236796023825],[-127.00496374073515,53.236957887351245],[-127.00480595729738,53.237111052186165],[-127.0046434484698,53.23726257163977],[-127.00447903335728,53.23741354228061],[-127.00431652219422,53.237565061262146],[-127.00415683082336,53.237717120837],[-127.00400471156114,53.23787191275127],[-127.00386202797242,53.23802886550714],[-127.0037581012845,53.238197815157086],[-127.00368444248925,53.2383760280035],[-127.00359655381453,53.23854820312629],[-127.00345092419458,53.23870014261643],[-127.00325986737467,53.23883565027477],[-127.00304514305252,53.23896295877836],[-127.00282283063603,53.239086969643516],[-127.00260904799286,53.239214834070246],[-127.00240097571752,53.239345446506384],[-127.00219005291252,53.23947496218158],[-127.00198671564209,53.23960777476708],[-127.00180044073124,53.23974772139229],[-127.00164069211593,53.23989809256257],[-127.00149989626033,53.24005614669782],[-127.00137143723865,53.24022026351267],[-127.00125336010383,53.2403865244807],[-127.00114092589303,53.2405533023872],[-127.00109158453151,53.24072851131413],[-127.00105544525621,53.240906970156615],[-127.00103716978741,53.24108639865111],[-127.00106113094716,53.241265470618906],[-127.0011468545603,53.24143729843025],[-127.00132856837254,53.241579748417884],[-127.00155475740165,53.24169772809475],[-127.00178832240807,53.24181004272162],[-127.00198952887756,53.24194279862482],[-127.00209113903706,53.24211113012657],[-127.00213570957835,53.242288907222665],[-127.00213809728588,53.242468716941076],[-127.00212545649237,53.242648097877776],[-127.00212033668625,53.24282797996057],[-127.00209642071597,53.243006891413636],[-127.00207909473811,53.243186311877714],[-127.00213109444526,53.24336066472638],[-127.00240673718979,53.24342612786214],[-127.00270386713503,53.243447701689966],[-127.003002794765,53.24346590714787],[-127.00328570773617,53.24352121364119],[-127.00344219925576,53.24366779086542],[-127.0034811462127,53.24384561494995],[-127.00345256390084,53.2440251308182],[-127.00345210792861,53.24420385295401],[-127.00353209821289,53.24437012510181],[-127.00376335253094,53.24450317947651],[-127.00391906305461,53.24465648542506],[-127.0040001467667,53.24482947075962],[-127.00406252759373,53.24500541999504],[-127.00414173553352,53.24517842109098],[-127.00424432128419,53.245347298090074],[-127.00436650299486,53.245511536173716],[-127.00443823155574,53.24568572083997],[-127.00449125659645,53.24586286052326],[-127.00449442595212,53.24603594951639],[-127.00447270171317,53.24622773244638],[-127.00447211844522,53.246400288473275],[-127.00446229451427,53.24657964550755],[-127.00444966235906,53.24675902630445],[-127.00443139877419,53.24693845476984],[-127.00443191939969,53.24711827989826],[-127.00443807161304,53.2472980662848],[-127.00443108374563,53.247477954961674],[-127.00438851028574,53.24766151529683],[-127.00433343611616,53.24783229166156],[-127.00421343236988,53.24799689493349],[-127.00413492485487,53.24816954576014],[-127.00408657134528,53.24834698781977],[-127.00405231538254,53.248525430970716],[-127.00402371912531,53.24870439089923],[-127.00399510739526,53.24888334196926],[-127.00396556454362,53.24906230985796],[-127.00393696734245,53.249241260753266],[-127.00390742399419,53.24942022859386],[-127.00387975740854,53.24959917156188],[-127.00381350671957,53.249774523895674],[-127.00378582630054,53.24995291117234],[-127.00377790431367,53.25013281640145],[-127.00374930399096,53.25031233187598],[-127.00363681318522,53.25047742644742],[-127.00350359187799,53.25063934384987],[-127.00343262569403,53.25081361528036],[-127.00342749705246,53.25099293205105],[-127.00346461503565,53.25117189144369],[-127.00346041762916,53.251351200305606],[-127.00349376802987,53.25152962681835],[-127.00352243131715,53.251708657668935],[-127.00352294834494,53.25188849131364],[-127.0034651747166,53.25206489194668],[-127.00335081420175,53.25223056657298],[-127.00322231193898,53.25239411974644],[-127.00311360825735,53.25256086671896],[-127.00304922871999,53.252735637755215],[-127.00300841492523,53.25291470028583],[-127.00298332657701,53.25304432074551],[-127.0030657261005,53.253272197341246],[-127.00307179358569,53.25344862252259],[-127.00297359101764,53.25362312365534],[-127.00278145257133,53.253755841382045],[-127.0025275598799,53.25385770786846],[-127.00225710218191,53.253934498987846],[-127.00197407409443,53.253996273967445],[-127.00172093663002,53.25409085382271],[-127.00147650620634,53.25419599947472],[-127.001209945456,53.25427892225296],[-127.00095007992228,53.25436739021137],[-127.0007428325473,53.254496870611064],[-127.00070008990306,53.25467426319077],[-127.00072030242056,53.254853365624164],[-127.00070203265854,53.25503334838955],[-127.00069594566439,53.25521267262792],[-127.00067766247888,53.25539209972097],[-127.00068286868141,53.25557189337791],[-127.0006824271943,53.25575172569122],[-127.00067540876915,53.25593105771587],[-127.00064584692232,53.25611002411774],[-127.00049094839629,53.25623009870333],[-127.00025119431373,53.256136881640884],[-127.0000010278834,53.2560403904988],[-126.99969875945175,53.25592472543375],[-126.99940155641923,53.25590369985385],[-126.99910544016446,53.255928603025524],[-126.99882817412293,53.25599592403344],[-126.9985202489851,53.25599796031648],[-126.99841320430069,53.25599774074717],[-126.99823494007464,53.256043494271324],[-126.99796277987605,53.256049145281146],[-126.99780993368047,53.25601793770329],[-126.99770132766734,53.25595162381207],[-126.99760720770983,53.255901994830054],[-126.99745580340162,53.25585229165943],[-126.997170613133,53.255823316325596],[-126.99686354279036,53.255821415062485],[-126.99656409963629,53.25582505120822],[-126.99626681959312,53.25580065707833],[-126.99596727257597,53.25579924606535],[-126.99567422786271,53.25583531941903],[-126.9953911265351,53.25589428240683],[-126.99509615037336,53.25592812961846],[-126.99481984866543,53.25599710931627],[-126.99455229276985,53.25607834899898],[-126.99429147097156,53.25616681009591],[-126.99403737010188,53.256261937015324],[-126.9937601068689,53.25632980180325],[-126.99346504730792,53.256360284254406],[-126.99318966025395,53.256428140945594],[-126.99296746019796,53.2565224337602],[-126.99278272500449,53.25669204770297],[-126.99260109654884,53.25683474447196],[-126.99238809983582,53.256960896537],[-126.99216844588811,53.25708318677114],[-126.9919877203974,53.25722418982894],[-126.99182601948141,53.25737568233117],[-126.99165578186341,53.257523884587094],[-126.99149028408767,53.25767373212722],[-126.99133993717032,53.25782904611855],[-126.99121704549002,53.25799365884931],[-126.9910846446224,53.258153869057566],[-126.99088593662702,53.25828886249966],[-126.99071285682616,53.25843596655898],[-126.99048257991943,53.25854657295498],[-126.99019943815065,53.258605523596806],[-126.98993183037649,53.258685623555614],[-126.98964473464827,53.25873619798054],[-126.98928786555197,53.25873413655981],[-126.98898988703834,53.258720369723854],[-126.98870501334834,53.25866504522007],[-126.98843554197406,53.25858605329198],[-126.98816517972578,53.25850875333479],[-126.98790760818679,53.258416224661765],[-126.98766385225493,53.258311811212664],[-126.9874320849817,53.25819833388533],[-126.98719845433241,53.25808542735692],[-126.98694732070892,53.25798724079631],[-126.98668244079455,53.257903169181105],[-126.98640387992023,53.25783601748534],[-126.9861154564572,53.25778911522836],[-126.98581659163321,53.257777588748596],[-126.98551735596085,53.257790723475985],[-126.98521803038439,53.25779936742775],[-126.98491995344058,53.25778167415245],[-126.98463323993595,53.257727475666194],[-126.98435289716552,53.2576642510688],[-126.98407540336484,53.25760268734104],[-126.98380937901054,53.257671000109326],[-126.98367142470387,53.25783517395367],[-126.98355698386783,53.258001384629715],[-126.9834226894535,53.25816216644951],[-126.98323548345401,53.25830825603644],[-126.98299377104401,53.258372439368884],[-126.98272958223708,53.25827714876812],[-126.98245996836546,53.25819143081191],[-126.98217871863417,53.25812989376083],[-126.98189835082258,53.25806554314318],[-126.98160823544538,53.25802648711376],[-126.98130776597112,53.25802673175339],[-126.98100952548927,53.25804208775226],[-126.98071347435022,53.25807086133254],[-126.98042446814618,53.25812030874987],[-126.98015585969837,53.2581987186291],[-126.97991036662215,53.258302151566575],[-126.97968781942923,53.25842331273509],[-126.97950614142394,53.25856543356678],[-126.97938317336661,53.258729469501304],[-126.97930551692481,53.25890322430054],[-126.97924951021437,53.25907959698644],[-126.97920573920027,53.259257544836686],[-126.97916386071874,53.259435485996576],[-126.97914829324063,53.25961488618688],[-126.97912990351864,53.25979374494108],[-126.97912091521168,53.25997309079945],[-126.97913070387004,53.260152281690964],[-126.97909729235036,53.260331273311614],[-126.97906009892876,53.260509166699016],[-126.9790257423855,53.260687601353695],[-126.97896313967364,53.260863472393524],[-126.97888640873295,53.26103721007912],[-126.97880497741524,53.26121043072671],[-126.97869898973099,53.26137825161174],[-126.97855240311772,53.26153632318398],[-126.97832880001107,53.261653017310934],[-126.97812327342366,53.261780201751954],[-126.97805121144418,53.26195334454321],[-126.97808917578082,53.262132858798026],[-126.97822434513047,53.26229253307577],[-126.97831751880506,53.26246319320797],[-126.97840134104557,53.262636171258045],[-126.97853001311243,53.2627986953755],[-126.97873859984057,53.262925261680635],[-126.97895569772628,53.26305400725946],[-126.97901596725008,53.26322325311935],[-126.97907353209534,53.26339701200149],[-126.97921713895904,53.26355605078463],[-126.97933366819568,53.26372147083874],[-126.97941375637795,53.263894478933004],[-126.9794705332274,53.2640749667609],[-126.97966497449237,53.26419828685069],[-126.9799409392734,53.264273318961],[-126.98020948459043,53.264352337764336],[-126.98045973305973,53.26445223090705],[-126.98070626583583,53.264553830421825],[-126.98097150097142,53.26465192244921],[-126.98101276751694,53.264811240320654],[-126.98098505900153,53.26499298155909],[-126.98098360228992,53.265172829571384],[-126.98097651155355,53.26535271517787],[-126.98097221725091,53.26553202190897],[-126.98097831120195,53.265713483637796],[-126.98088552072207,53.265882882113544],[-126.98064945241727,53.26598959027956],[-126.98037214100611,53.26605967298253],[-126.9801073808068,53.26614420818167],[-126.97987717717174,53.266260959295245],[-126.97974374988998,53.26642004361882],[-126.97973850566069,53.266598793300474],[-126.97972388449433,53.26677818508328],[-126.97967258471421,53.266955083018864],[-126.97962599781,53.26713305348839],[-126.97960855143508,53.26731246852362],[-126.9796005100879,53.267491805903575],[-126.97959341327808,53.26767170017267],[-126.97959758447799,53.26785149244876],[-126.97958577184852,53.26803086090629],[-126.97955705869187,53.268209813105685],[-126.97953680198596,53.26838925122066],[-126.97953814838597,53.26856906674603],[-126.97950758256296,53.26874915461335],[-126.97958286118835,53.26891715544753],[-126.97952115607265,53.269091333393256],[-126.97937069870213,53.269245520027376],[-126.97924108116104,53.26940736863115],[-126.97912846985301,53.26957356750037],[-126.97902335708906,53.26973913968052],[-126.97886626244834,53.26989113049415],[-126.9787536612552,53.27005788459904],[-126.9787022624364,53.27023085653609],[-126.97866223408475,53.27040878113981],[-126.97858929282505,53.2705847272517],[-126.97871780806196,53.270739408902294],[-126.97890515489966,53.27087960413697],[-126.97914805612399,53.270985162809254],[-126.979434761761,53.27103545786188],[-126.97972236056711,53.271084059709025],[-126.97999464007019,53.27116024266211],[-126.98027686800548,53.27121953620093],[-126.98055550743045,53.271286701813445],[-126.980818620042,53.271372486863584],[-126.98109358492742,53.27144247821237],[-126.98137130865501,53.271510214197015],[-126.98164993861188,53.27157681263601],[-126.98191086440067,53.27164916807117],[-126.98200409967919,53.271820944705645],[-126.98207298187849,53.27199628409662],[-126.98220633256,53.272156524194386],[-126.98230137021336,53.27232492432927],[-126.98233276762176,53.272503935097916],[-126.98235480194977,53.27268357907955],[-126.98237493024203,53.27286268307925],[-126.98238308882345,53.27293040672375],[-126.98240416400607,53.273109502860244],[-126.98243275251615,53.273288536787696],[-126.98250162575063,53.27346331120332],[-126.98258643363675,53.27363627747341],[-126.98267122928465,53.27380868803589],[-126.98271330661565,53.27400217589468],[-126.98275563985808,53.274165965448105],[-126.98284693861179,53.2743355164245],[-126.98294857648813,53.27450498169961],[-126.98302725764134,53.27465670996627],[-126.98303038757822,53.27487180856924],[-126.98306432808762,53.27503847304685],[-126.98313415369984,53.2752132480582],[-126.98320585806174,53.27538799849153],[-126.98327849678317,53.275562185392204],[-126.98333895826306,53.27573815826195],[-126.98339098580354,53.275915312439835],[-126.9834007962821,53.27609450149659],[-126.9833654725835,53.27627182358512],[-126.98347273953961,53.276440685925046],[-126.98360146004818,53.27660263878766],[-126.98366568124833,53.27677858026501],[-126.98369239914291,53.27695762911622],[-126.98372653962437,53.27713269041409],[-126.98371893668113,53.277290179580255],[-126.98380161080233,53.27749229383805],[-126.98383396517004,53.27767129588473],[-126.98386913190147,53.27784970989692],[-126.98387707952067,53.27802947889719],[-126.98385267466273,53.2781915800546],[-126.98375440046892,53.27836886806592],[-126.98356886696862,53.27850989560011],[-126.98344961386391,53.278673911883196],[-126.98343315184927,53.27885443878677],[-126.98356462471433,53.27901357213204],[-126.98376595118869,53.279146356372166],[-126.98399876832922,53.27926038753344],[-126.98419637951248,53.279394886983326],[-126.98434003397496,53.27955279802801],[-126.98442767383385,53.27972517441868],[-126.98447033112124,53.279902970243654],[-126.98445948263254,53.28008233021595],[-126.98437707767506,53.28025500520006],[-126.98421242471767,53.28040538860017],[-126.98401452179482,53.28054036125174],[-126.98386120143162,53.280694011495],[-126.98378729321325,53.2808682917386],[-126.9837792649575,53.28104818389825],[-126.98375714139861,53.28122763711078],[-126.98370207050696,53.28140400201115],[-126.983614942561,53.281576150738026],[-126.98348341182165,53.281737462880024],[-126.983323478307,53.28188949089585],[-126.98315785521693,53.28203931595875],[-126.98304052328753,53.28220499169832],[-126.9829439324195,53.28237442157658],[-126.98290205970048,53.282552917553645],[-126.98289683998858,53.282732230474416],[-126.98294511686399,53.282909415317725],[-126.98303275820429,53.28308180140197],[-126.98329234881214,53.283335666605126],[-126.98356590320816,53.283624158002674],[-126.98375682068232,53.28383377368907],[-126.9840025050251,53.28409560455575],[-126.98419417789533,53.28429681448206],[-126.98443988060596,53.284559200009575],[-126.9847002265945,53.28480409234504],[-126.98490598955011,53.285005184237775],[-126.98509711612704,53.285223203734],[-126.98524682252248,53.285397869703615],[-126.9853225557645,53.28562301323841],[-126.98533710958408,53.28588450940233],[-126.9853751004881,53.28606290784818],[-126.98542341978987,53.28624065584483],[-126.98544544643912,53.28641974247734],[-126.98543649227092,53.286599641970184],[-126.98540214144683,53.28677807606225],[-126.98543148779709,53.28694870312734],[-126.98543477999188,53.28712962136],[-126.98550279564623,53.28730608532775],[-126.98557924650758,53.28748192348986],[-126.9856669210782,53.28765486285161],[-126.98577044193154,53.28782262414411],[-126.98589450131355,53.28798462159496],[-126.98604377586045,53.28814024264263],[-126.98621640186175,53.288289502675674],[-126.98640671663478,53.2884313371699],[-126.98660996090867,53.288564100458366],[-126.98681692704749,53.28869459160151],[-126.98702390563393,53.28882620271524],[-126.98723279273324,53.28895836229965],[-126.98744353188717,53.28908994141797],[-126.98765799294236,53.28921924833917],[-126.98787520063443,53.28934572645956],[-126.98809795494952,53.289468240994],[-126.9883252693952,53.28958511499228],[-126.98855902494992,53.28969577703376],[-126.98880012709762,53.28979909014398],[-126.98904948351827,53.289893370550715],[-126.98930802409794,53.28997916618925],[-126.98957484521888,53.29005705819237],[-126.98984902559899,53.2901281566906],[-126.99012965984423,53.290193607542584],[-126.99041486663019,53.29025397316624],[-126.99070374016695,53.29031038151872],[-126.99099440155447,53.290362857218184],[-126.99128690334562,53.290413640678366],[-126.99157936625319,53.29046273861602],[-126.99186992446175,53.290510731315315],[-126.9921576572367,53.290558746916886],[-126.99244897939447,53.2905988887923],[-126.9927438870699,53.29063227738003],[-126.99304057057373,53.290660603955565],[-126.99333812067297,53.2906861259415],[-126.99363565804953,53.290711091556105],[-126.99393416726227,53.290737724461124],[-126.9942299316517,53.29076717620365],[-126.99452396269697,53.290802808596624],[-126.9948144473723,53.2908474334454],[-126.99510315925725,53.290896554179334],[-126.99539187181426,53.29094567420986],[-126.99567886455696,53.29100153056627],[-126.99596920651587,53.29103999590059],[-126.9962699769506,53.29104251018674],[-126.99657077408713,53.29104615288452],[-126.99687615728561,53.29104470988455],[-126.99717973889973,53.29104719826595],[-126.9974735096028,53.29107162123375],[-126.99775205763387,53.29112754354548],[-126.99802443286247,53.291200888301425],[-126.99829144993836,53.29128603756195],[-126.99855208247216,53.29137963869234],[-126.99880720019156,53.2914777763444],[-126.99905577442391,53.291577644677915],[-126.99928960883422,53.29168996131675],[-126.99951236875108,53.291810769492855],[-126.99973422278613,53.29193327001407],[-126.9999755642679,53.292044966373616],[-127.00000023168258,53.29205484254464],[-127.00024205686532,53.292146922216666],[-127.00042372018326,53.29227815877607],[-127.00051783590457,53.2924426342997],[-127.00059239959263,53.29261510856987],[-127.00065113167798,53.2927933273275],[-127.00069678964717,53.29297500856079],[-127.00073119980021,53.29315791395124],[-127.00075804021373,53.293338633282225],[-127.00077827149595,53.29351773212468],[-127.00078440151805,53.29369694979244],[-127.0007802018839,53.2938768191984],[-127.00076756648708,53.29405731541566],[-127.00074834786439,53.29423730239556],[-127.00072628955255,53.29441675755028],[-127.00070045941871,53.29459568873318],[-127.00065956839423,53.29477361740833],[-127.00060832048679,53.29495107758417],[-127.00055614003904,53.295128545575416],[-127.00051524810219,53.295306483114175],[-127.000492256123,53.295485945980545],[-127.00049088128485,53.295665782437524],[-127.00050829949231,53.29584546951019],[-127.00054355022166,53.29602444162424],[-127.00060505997173,53.29620038690245],[-127.00070959352483,53.29636813554035],[-127.00083846754288,53.296531188257376],[-127.00091906315346,53.296719861938115],[-127.00107281092107,53.296861981240085],[-127.00120441980799,53.297021658158634],[-127.00134822614436,53.29718010268542],[-127.00139399841976,53.29736627303334],[-127.00147209381166,53.29752863275961],[-127.00164205465973,53.29768014273046],[-127.00175448877256,53.297823730001845],[-127.0017085860159,53.29802803564053],[-127.00179366818253,53.29820714265328],[-127.00186174350571,53.29838247603847],[-127.00193636319213,53.298556633731465],[-127.00205118554146,53.29872148872044],[-127.00210060159718,53.298902581526335],[-127.00219113942784,53.29907380811935],[-127.00228637068703,53.29924443032824],[-127.00240391466446,53.2994053359891],[-127.00249177623219,53.299582187068246],[-127.00262623704933,53.299742949700196],[-127.00271082094655,53.29990078095844],[-127.00272915997586,53.299999779708784],[-127.00274424659378,53.30008088799494],[-127.00286515392925,53.300264173367836],[-127.00297533157769,53.300431307469005],[-127.00307893938371,53.300598496948545],[-127.00322097878417,53.300760879989845],[-127.00337405495586,53.300913650446375],[-127.00357833337009,53.301045255632594],[-127.00374315634241,53.301177749655196],[-127.00393924017787,53.301320072040056],[-127.00413821689015,53.301465721969706],[-127.0042540014509,53.30163113128564],[-127.00436514869017,53.30179881159266],[-127.00445362223475,53.30196164609271],[-127.00456670426152,53.302131559656395],[-127.00468729203581,53.30230084491887],[-127.00473579132759,53.30248194418387],[-127.00472407587286,53.30266131193948],[-127.00470279063916,53.30283291762494],[-127.00460999853149,53.303002322572546],[-127.00444452839909,53.303158905885034],[-127.00428223043563,53.3033300187302],[-127.00427352643912,53.30351720388198],[-127.00432824986204,53.30368368500337],[-127.00459787716754,53.303756473533],[-127.00484109875268,53.303864782824114],[-127.00511792798623,53.303923499419575],[-127.0054205104819,53.30391926235292],[-127.00572144016385,53.30392455767066],[-127.00602008957885,53.3039130651112],[-127.00631957750183,53.30389763871321],[-127.00661920063125,53.303887256823366],[-127.00691767585323,53.3038684851732],[-127.00721717661104,53.30385362109371],[-127.00751758425875,53.30383706343938],[-127.00781723342409,53.30382779872944],[-127.00811537604005,53.30383479675312],[-127.00841953408724,53.30385686427039],[-127.00871385582995,53.30390030270169],[-127.00892734390052,53.3039836420834],[-127.00920073246526,53.304095038614776],[-127.00941537678209,53.30422599002618],[-127.00963369958339,53.30435410423006],[-127.00986371274136,53.304459710061074],[-127.01012836081821,53.30455885406878],[-127.01038894084186,53.30464571633982],[-127.01067152929511,53.30470885280451],[-127.0109666037037,53.304744436296644],[-127.01126331832891,53.30476936549835],[-127.01156679819383,53.30476342005763],[-127.01186639931082,53.30475190473637],[-127.01216682507548,53.3047358999126],[-127.0124661283959,53.304712616620584],[-127.01276047100747,53.30467817953516],[-127.01315204063661,53.304660274616054],[-127.01341291524015,53.304602583382675],[-127.01362397742786,53.304505545881916],[-127.01387364494013,53.3044115397605],[-127.01414721704288,53.30433470015119],[-127.01442280394743,53.30426288014742],[-127.01470237667446,53.304201109316985],[-127.01499075130724,53.304153263504425],[-127.01528986188364,53.30412157594154],[-127.01559224241021,53.304108906982954],[-127.01589037470484,53.30411532091009],[-127.0161869528971,53.30413463682123],[-127.01648370504694,53.30416178455764],[-127.01677966048419,53.30419454949363],[-127.01707479188605,53.304231793511946],[-127.01736904410899,53.304271849890284],[-127.01766144425825,53.30431304184273],[-127.01795330308815,53.30437104418447],[-127.01828436681545,53.30441694967308],[-127.01852524722145,53.30450451885423],[-127.0188484951904,53.304499505702395],[-127.01901549883439,53.30436977921568],[-127.01926674910483,53.30426398801616],[-127.0195442335532,53.30419326019745],[-127.01982748980366,53.304128640055396],[-127.0201030793436,53.30405737144633],[-127.0203556093318,53.303966123546985],[-127.02055631937876,53.30383051204345],[-127.02074844022039,53.30368992756933],[-127.02095287823072,53.3035537186188],[-127.02114027786014,53.30341205361849],[-127.02126810855069,53.30325633488923],[-127.02130618877351,53.30308234042043],[-127.02149611568204,53.30296754344872],[-127.0216407477562,53.3027685386175],[-127.02178516913749,53.302637890762206],[-127.02191993229403,53.30249723295421],[-127.02206271244567,53.302338023322775],[-127.022232076763,53.30218978903143],[-127.0224261455454,53.30205254614877],[-127.0226401458943,53.30192297435044],[-127.02279948741763,53.301788270688256],[-127.02291455440503,53.301610251203606],[-127.02301497663157,53.3014491642336],[-127.02316448446308,53.301296062046426],[-127.02334806540695,53.30115330571271],[-127.02353163296814,53.301009428755236],[-127.02368095903165,53.30084959585092],[-127.02382656741844,53.300690924182234],[-127.02405237572339,53.30058421228991],[-127.02435925160113,53.30052554416746],[-127.02461976039565,53.30045383005061],[-127.02486143985975,53.300342506878415],[-127.02508881026384,53.300222898957294],[-127.025329690853,53.30011717490454],[-127.02560634049554,53.30005260653522],[-127.0259227573509,53.30000000982583],[-127.02616845476649,53.2999385041044],[-127.02646705023652,53.29988718930867],[-127.02676510644075,53.29985267598778],[-127.02706730305134,53.2998338211719],[-127.02736473847334,53.29981275693589],[-127.02766214781519,53.29979001600578],[-127.0279775543055,53.29977328543312],[-127.0282463603151,53.29973453980523],[-127.02853901308677,53.29967094641424],[-127.02883848996755,53.29965658340715],[-127.02912687237185,53.299610952527416],[-127.029409192087,53.29954800224445],[-127.02969254021217,53.29948840367432],[-127.02996906945127,53.29941933536289],[-127.03023780675305,53.29933913858662],[-127.03050360671755,53.2992544759666],[-127.0307762923687,53.29918208674606],[-127.03106752323728,53.29913753784787],[-127.03136177058171,53.29910136979358],[-127.03165803379223,53.29907078568017],[-127.03195651858276,53.29905419146755],[-127.0322550715457,53.29904039252164],[-127.03254533905347,53.29899529261083],[-127.03283058443482,53.298937346146296],[-127.03310034273574,53.29886049523322],[-127.03335939893492,53.2987691621621],[-127.03363683602782,53.29869952155622],[-127.03389211767272,53.298607664411364],[-127.03412525744892,53.29849415544766],[-127.03436796987519,53.29838839673833],[-127.03464058836009,53.29831375821582],[-127.0348938074032,53.29821462949833],[-127.03514537959846,53.29812504278941],[-127.03540088825525,53.298042708547506],[-127.0356614838613,53.29793791164331],[-127.0359013504331,53.29783106305142],[-127.03617359111067,53.29774129382091],[-127.03645046988304,53.297687337525545],[-127.03671159751764,53.297604386659614],[-127.03693807000985,53.29748812462435],[-127.03713112330371,53.29735030094858],[-127.03734036267977,53.297221308034615],[-127.03758882177891,53.29712053880352],[-127.03784788513421,53.297030316060386],[-127.03809617789872,53.296922268813574],[-127.03835338720519,53.296833181585555],[-127.03859909919733,53.296735239781576],[-127.03872770972454,53.296690973498166],[-127.03886998547519,53.296667320156544],[-127.03903608979056,53.296657468145725],[-127.0391867377394,53.29666847482021],[-127.03948682576457,53.29667929376668],[-127.03960622311034,53.29668104522253],[-127.03977536931608,53.29664146939355],[-127.04004696455732,53.29656458629037],[-127.04031956099237,53.296489925701636],[-127.04059894882026,53.29642361275372],[-127.04087836229711,53.29635898405679],[-127.0411616588746,53.29629879344904],[-127.04142844809392,53.29621746750328],[-127.04170005131137,53.29614113622164],[-127.04196877287846,53.296062024006446],[-127.04222686080185,53.29597068860435],[-127.04249106833758,53.295899457889824],[-127.04264550671883,53.295873452318716],[-127.04279541928155,53.29585477363926],[-127.04309283275511,53.2958342345542],[-127.04323140002904,53.29581284938814],[-127.04336068700094,53.29575793234163],[-127.04354702962745,53.29561623975645],[-127.04373433082037,53.295475658874764],[-127.04383814162445,53.295417039167226],[-127.04398090015854,53.29537489256676],[-127.04411828260955,53.295343988519136],[-127.04427008563465,53.295325847068476],[-127.04456970795985,53.29531817438505],[-127.04486285202775,53.2953531257931],[-127.04515516169957,53.2953920098552],[-127.04544926789492,53.29542751605846],[-127.04559728231018,53.29544582512707],[-127.04574500397261,53.29545292320122],[-127.04604142552992,53.2954301445399],[-127.04632864766563,53.29537719423913],[-127.04661389144655,53.29532089934373],[-127.04690015119756,53.29526740038724],[-127.0471943717673,53.29523174865639],[-127.04746452514243,53.295172788140896],[-127.04773785087363,53.29509082544522],[-127.04801531072711,53.29502339138592],[-127.04829080574783,53.2949531684229],[-127.04859042469533,53.294945485594006],[-127.04888973663137,53.29496356595845],[-127.04917852572333,53.295011999482924],[-127.04947260479375,53.295046375531946],[-127.04976580677166,53.295083555237284],[-127.05004832048154,53.29514380231182],[-127.05033352096913,53.295198987440365],[-127.05062761611794,53.29523391624369],[-127.0509208764393,53.295273342449434],[-127.05120960010203,53.29531896605408],[-127.05148308412096,53.295393855443464],[-127.05176652039378,53.29545352558862],[-127.05205261532268,53.2955070135488],[-127.05221288228094,53.29552688203487],[-127.05234743790437,53.295532977086054],[-127.05244035538766,53.29552822760577],[-127.05251584395282,53.29550235305441],[-127.0526095089473,53.29545222330973],[-127.0528177313145,53.29532208211009],[-127.05301833678034,53.29518865569826],[-127.0532256653764,53.29506076255769],[-127.05345781438099,53.29494834404015],[-127.05369280236873,53.29483645560136],[-127.05390378780359,53.29470461169708],[-127.05411896397794,53.294590092612765],[-127.05438326428302,53.294485785665],[-127.0546327117914,53.294388897399315],[-127.05491389936817,53.29432141395324],[-127.05519916760375,53.29426621847042],[-127.05549434840142,53.29423222265195],[-127.05579271939426,53.29421276352402],[-127.0560924156021,53.2942084133931],[-127.05639072254631,53.294224251851325],[-127.0566883359671,53.29424961504117],[-127.05698749221631,53.29426151840475],[-127.05728746932844,53.29426836721913],[-127.05758734750073,53.29427186378329],[-127.05788695969105,53.29426414853586],[-127.05818640234473,53.29425027607022],[-127.05847769678003,53.294210705214425],[-127.05876691386287,53.29416387374087],[-127.0590652968082,53.294144962007245],[-127.0594226796432,53.294155219476835],[-127.05971939045479,53.29418170358266],[-127.06001689301362,53.29420257764945],[-127.06032290841299,53.29415111063054],[-127.06044292293318,53.293990370788194],[-127.06058651839083,53.29383279049754],[-127.06069035348091,53.29366435173784],[-127.06085480057475,53.293513863246176],[-127.06102493944371,53.29336612924747],[-127.0611363456083,53.293199307534586],[-127.06119675962705,53.29302341312564],[-127.06137260409193,53.29287786846874],[-127.06146508863509,53.29270673371693],[-127.0615311671537,53.29253135314471],[-127.06157462446329,53.29235393385718],[-127.06161901426898,53.29217594149148],[-127.06173041494331,53.29200911911966],[-127.06184085369841,53.29184174948071],[-127.06197116928466,53.291680359933295],[-127.06212516289311,53.29152603685935],[-127.06229529012114,53.29137773617677],[-127.0624246565373,53.29121579881397],[-127.06251430790289,53.29104412367235],[-127.06259545315011,53.29087084837125],[-127.06263607925416,53.29069289808281],[-127.06265848088901,53.290499980316795],[-127.06272736199898,53.290324573723105],[-127.06282110680108,53.29016630700108],[-127.06286831425176,53.28998885338685],[-127.06291176435965,53.28981087762648],[-127.06297876430848,53.28963548764558],[-127.06306935625743,53.28946436818172],[-127.06310715385048,53.289285878191585],[-127.06312423931017,53.28910645317549],[-127.06311970996767,53.28892665697023],[-127.06313681026009,53.288747231784626],[-127.06317083402175,53.288568775491385],[-127.06323312711878,53.288392871631366],[-127.06332087627953,53.288220656839684],[-127.06340297375928,53.28804792787336],[-127.06351530265121,53.287881659707196],[-127.06368539527344,53.28773335689056],[-127.06389259844302,53.28760320424408],[-127.06409218604462,53.28746920237131],[-127.0642623042459,53.28732146314223],[-127.0644571138931,53.28718469783209],[-127.06469012236569,53.28707168383555],[-127.064943260122,53.286974739848084],[-127.06519064681702,53.286873356131025],[-127.06542651893179,53.286762555850686],[-127.06563467238644,53.286633520896586],[-127.0658781988264,53.28652825324274],[-127.06614003330816,53.286440747911264],[-127.06641054039223,53.28636212771168],[-127.06668591995239,53.286290741567996],[-127.06696425189303,53.28622437476187],[-127.0672385703622,53.28614795929426],[-127.06747127039515,53.28606071285487],[-127.06774008977192,53.28595241721345],[-127.06797496049313,53.28583993555592],[-127.06819648081245,53.2857191746158],[-127.06840460636116,53.2855895701567],[-127.06855762256987,53.2854352556071],[-127.0686189557522,53.28525991278006],[-127.06856564025277,53.28508391669823],[-127.06846737671054,53.28491393634539],[-127.06834669627857,53.28474919519229],[-127.0682418936494,53.284580949681995],[-127.0681342953082,53.2844132849707],[-127.06804164294259,53.284242133297745],[-127.06801273779432,53.284027821853044],[-127.06804296562885,53.283848841915294],[-127.06812694234716,53.28367721259287],[-127.06826572710294,53.28351797972911],[-127.06843200065317,53.28336802763749],[-127.06859034593171,53.28320245132161],[-127.06872948204585,53.28305722485513],[-127.06888911226835,53.28290508198841],[-127.0690781947243,53.28276556337764],[-127.0692663150054,53.282625497364805],[-127.06941352416544,53.28246562241437],[-127.06954766773278,53.282308670593906],[-127.06967981737768,53.28214781945308],[-127.06985557297641,53.28200169684265],[-127.07003703342791,53.28185888389673],[-127.07023466733077,53.281723768036834],[-127.07038575557975,53.28156833859909],[-127.07051400043152,53.281401919344674],[-127.07068510283335,53.28125807827078],[-127.07085059668444,53.28111540797906],[-127.07096457152929,53.28094182944382],[-127.07113842474546,53.28079515721044],[-127.07133223611739,53.280657832950034],[-127.07151083290809,53.28051336719549],[-127.07166191143143,53.28035850075353],[-127.07179972584046,53.28019870731742],[-127.07194893796225,53.280044422027544],[-127.07208954645255,53.27988404723177],[-127.07226529839906,53.27973847650322],[-127.07242394243181,53.27958578155643],[-127.0725664830428,53.27942762958865],[-127.0727355780574,53.27927932158267],[-127.07290857127128,53.27913658037184],[-127.07309303369347,53.279001578415695],[-127.07324503363908,53.278846145659735],[-127.0734433761677,53.278702609699025],[-127.07364002350236,53.278566940892475],[-127.0738509649444,53.27843897667687],[-127.07406190533567,53.278311021039656],[-127.07427665817566,53.278185262459125],[-127.07449812030106,53.278064489286294],[-127.07476583842619,53.2779528252587],[-127.07492082390002,53.27780464165655],[-127.07496608887195,53.27762663440007],[-127.0749839803631,53.277443837425395],[-127.07500400686985,53.277271105233105],[-127.07500873495317,53.27708787168465],[-127.07500695224144,53.276907493752915],[-127.07502401129304,53.276728621368186],[-127.07507681614199,53.276552230840835],[-127.07519276818523,53.276383676215076],[-127.07532582425142,53.27622280076147],[-127.0754816197993,53.27606957128906],[-127.07562888321706,53.27591304856272],[-127.07572505807093,53.275742987373924],[-127.07579292915156,53.27556758031566],[-127.07584101243958,53.275390111633314],[-127.07587497173604,53.2752116504753],[-127.07588135990778,53.27501999367045],[-127.07596171625248,53.27485567787679],[-127.07613350618425,53.27470342284284],[-127.07621931012802,53.27453176995828],[-127.07625609209569,53.27435328299699],[-127.076281589845,53.27417434258137],[-127.07628935018914,53.27400003587225],[-127.076189892719,53.27381998755889],[-127.07598564816173,53.27369354192005],[-127.07572505244192,53.273604590898124],[-127.07546428230846,53.27354532865746],[-127.07518015628402,53.2734907592771],[-127.0749463776755,53.27338474773111],[-127.07469109275951,53.2732828565656],[-127.0744867556169,53.273152492079056],[-127.0743250776386,53.27300045232863],[-127.07414111854739,53.2728586981685],[-127.07392659076295,53.27273347151271],[-127.07370826406458,53.27260714941405],[-127.07345870783625,53.272508009438695],[-127.07323400268726,53.27238903165345],[-127.07301575113297,53.27226551325161],[-127.0727892272506,53.272148792000124],[-127.07253964720374,53.27204852090205],[-127.07228823225405,53.2719505157512],[-127.07203590099833,53.27185307409948],[-127.07179095556097,53.2717505186557],[-127.07156624504066,53.27163098204462],[-127.07136933862742,53.27149661904817],[-127.07127674401481,53.27132714458704],[-127.07126651919438,53.27114628666086],[-127.0712422583725,53.27096723162253],[-127.07119829817684,53.27078947483311],[-127.0711580802953,53.27061111952456],[-127.07114038616909,53.27043200515411],[-127.0711405127052,53.27025217417679],[-127.07113877592779,53.27007235103629],[-127.07112387765402,53.2698926556321],[-127.07109867159794,53.26971360899127],[-127.07107436957112,53.269532868994375],[-127.0710219954494,53.26935687314126],[-127.07094896369402,53.269180498958185],[-127.07087793764626,53.26900970893963],[-127.07079461277914,53.26883510373505],[-127.07071039981412,53.268662191652794],[-127.07059629430276,53.26849627195902],[-127.07046353798664,53.26833500224148],[-127.07032612281654,53.26817545956775],[-127.07018683043881,53.268015924695995],[-127.07005314498694,53.26785522759978],[-127.06992037773662,53.26769395735643],[-127.06979694544292,53.26752979716528],[-127.06977082829836,53.267351878764245],[-127.06988971428004,53.267187783889156],[-127.07003126172498,53.26702907789906],[-127.07016526878417,53.26686876350197],[-127.07027844617883,53.26670247872042],[-127.07037274436142,53.266531873273905],[-127.07047363570497,53.266362337684384],[-127.07054152689938,53.26618805312159],[-127.07056985402514,53.26600852311076],[-127.07055844552325,53.26581814690348],[-127.07027625574867,53.265763548624264],[-127.07001617934127,53.26561854833083],[-127.06994300655944,53.26547354759091],[-127.06989808365272,53.265294122377846],[-127.06986163227636,53.26511573225876],[-127.06981206464108,53.26493858979432],[-127.06970638798838,53.26477090787518],[-127.06954292411635,53.26462056267474],[-127.0693478638837,53.26448338286529],[-127.0691639586017,53.264341620365414],[-127.06902376518363,53.26418321254914],[-127.06893675876465,53.26401088882088],[-127.06887876763096,53.26383437754419],[-127.06887328436582,53.26365515232366],[-127.0688950510765,53.26347623737158],[-127.06889050014048,53.26329644796833],[-127.06889252883289,53.26311659031479],[-127.06891334900337,53.262937692796314],[-127.06894262631684,53.262758710105295],[-127.06893995303322,53.26257890372058],[-127.06892976846713,53.262399156021715],[-127.06894683333343,53.262219727540554],[-127.06898363531377,53.26204124169382],[-127.06903079972403,53.26186434763882],[-127.06909772992412,53.26168895167345],[-127.06916842909585,53.261514077439884],[-127.06922594119473,53.26133764575683],[-127.06929006068886,53.261162274948255],[-127.06936924301485,53.26098900926597],[-127.0694267535598,53.26081257743732],[-127.0694503943786,53.260633654156415],[-127.06945898493815,53.26045373707634],[-127.06947322274704,53.26027433379206],[-127.06949686306768,53.26009541045176],[-127.06949876147623,53.259910516010464],[-127.06958109074225,53.25975010258825],[-127.06979163858347,53.259609830954396],[-127.07003366922595,53.259489434479505],[-127.07023215909881,53.259354873110766],[-127.07043444450119,53.25922250912096],[-127.07064529926757,53.259094558279635],[-127.07088770881487,53.258988722667304],[-127.07113491754266,53.25888733405892],[-127.07141806102862,53.258833235906586],[-127.071717646707,53.258834447329114],[-127.07200471491632,53.25878703513373],[-127.07226646438464,53.258703440262565],[-127.07248860481866,53.25857649554868],[-127.07274057912687,53.2584784218493],[-127.07299355526395,53.2583825705162],[-127.07324749090324,53.25828727466613],[-127.07349947584702,53.25818975496613],[-127.07374379345967,53.2580855812812],[-127.07396893468174,53.25796645878795],[-127.07421611566913,53.257864499118774],[-127.07447099084159,53.25776974781836],[-127.07476662482509,53.25768975757959],[-127.07497982108826,53.257580825548],[-127.07515260377492,53.25743359860789],[-127.07525629128925,53.25726514394752],[-127.07531189464144,53.25708872594083],[-127.07534301853761,53.256909733070515],[-127.07534338448353,53.256739418021674],[-127.07536579476428,53.256550410875995],[-127.07533870118982,53.25637138091121],[-127.07528818961048,53.25619424836838],[-127.0752181426243,53.25602457143083],[-127.07513663173194,53.25584715502536],[-127.0750673745843,53.25567186845833],[-127.07501686475123,53.25549472677362],[-127.07499258200143,53.25531567118037],[-127.07498425110225,53.25513591527077],[-127.07499095390592,53.254956578874676],[-127.07500986744651,53.25477713181385],[-127.07504286811151,53.25459811283214],[-127.07509469987643,53.25442117308062],[-127.07516064689106,53.25424578159008],[-127.0752256621692,53.254070398486604],[-127.07528031588566,53.25389342405168],[-127.07532932221018,53.25371650972542],[-127.07537080490167,53.25353853412189],[-127.07540192593235,53.253359540904164],[-127.07542364553835,53.25318006816769],[-127.07544725645603,53.253001134018206],[-127.07548026825553,53.25282267933727],[-127.0755320960098,53.25264573923042],[-127.07560180723661,53.252470868917655],[-127.07567717923615,53.25229651193181],[-127.07574878097502,53.25212218906666],[-127.07582132828324,53.25194785756172],[-127.07590682679091,53.25180254087801],[-127.0759899946853,53.251602906694664],[-127.07607573813553,53.25143069622361],[-127.07614921403353,53.25125635600846],[-127.07621513820597,53.25107984328872],[-127.07631410609909,53.25091087402738],[-127.07641116740577,53.25074080148634],[-127.07654849544863,53.250567001985964],[-127.07662605144657,53.250404949572456],[-127.07672500172364,53.2502354153193],[-127.07685229521798,53.250072911240245],[-127.0770127741613,53.249923551416785],[-127.07723216036192,53.24980111256781],[-127.07745249055475,53.24967922047571],[-127.07767281947609,53.2495573279665],[-127.0779084504956,53.24944650074638],[-127.07812973656218,53.24932571912998],[-127.07837493675856,53.249222082591544],[-127.07862013598071,53.249118454502344],[-127.07887593763287,53.24902536951008],[-127.07916655659338,53.24897286013945],[-127.07962508991248,53.248877928909465],[-127.0797750197743,53.248867044617036],[-127.07969063725011,53.248687971569616],[-127.07969660284066,53.24851704888777],[-127.07961518771526,53.24834355114225],[-127.07951419921818,53.24817584282267],[-127.07934632252248,53.24803506983375],[-127.07918381992408,53.24788471916698],[-127.07908001165326,53.24771647139694],[-127.07895380781012,53.247553473882775],[-127.0788354994332,53.24740552639209],[-127.07869021166502,53.24723036793715],[-127.07855191722615,53.247071397127314],[-127.07841545729201,53.24691128899483],[-127.07829858658174,53.24674596494569],[-127.07817425130592,53.24658238486449],[-127.07800247395811,53.246435478296746],[-127.07780655276619,53.24629943990572],[-127.07761249632175,53.246162263772305],[-127.07741556093208,53.246022872517],[-127.07735019316513,53.24585259774775],[-127.0773379999549,53.24566894996239],[-127.07737008120958,53.24549105815532],[-127.0774087100396,53.24531255108593],[-127.07744922994135,53.24513459152703],[-127.07749255725165,53.24495659746664],[-127.07753589944127,53.24477861219898],[-127.07757641806666,53.24460064358502],[-127.07761981584312,53.24442545445936],[-127.07758044204607,53.24424317398927],[-127.07748316818959,53.244073189032626],[-127.07735417325192,53.24391020605225],[-127.07720844346308,53.24375410676564],[-127.0770256907985,53.243617947425626],[-127.07694869532676,53.24343320265253],[-127.07693680450376,53.24326132139365],[-127.07699047694541,53.24308379812801],[-127.07710078425414,53.24291864153136],[-127.0772602043489,53.242765372973444],[-127.0773657679315,53.24259801821199],[-127.07739969443165,53.24241955356663],[-127.07739605551764,53.24223975391725],[-127.07738301707973,53.24206003067569],[-127.07736250074726,53.24188094007003],[-127.07733540811894,53.241701909184705],[-127.07730456204324,53.24152291237384],[-127.07726527737974,53.24134455691536],[-127.0772092450688,53.241171391235945],[-127.07718206786421,53.24098899958196],[-127.07713155170298,53.240811857569994],[-127.07706887306362,53.240635955429546],[-127.07702398902367,53.240458206436784],[-127.0770250790475,53.240280039900796],[-127.07701096283056,53.24016811989158],[-127.0766933262097,53.240042704433286],[-127.07695096832335,53.239950170701256],[-127.07712940217418,53.239806804691604],[-127.07732302046784,53.2396700323109],[-127.07751662310977,53.23953269501173],[-127.07769502470582,53.2393882078965],[-127.07786868298089,53.23924208736065],[-127.07806324216638,53.23910530513372],[-127.07827301316918,53.23897678339524],[-127.07850954366376,53.238866501395336],[-127.07876912213293,53.238777307394734],[-127.07905101859345,53.2387164775862],[-127.0793443461997,53.23866226595851],[-127.07961393547876,53.238597064873765],[-127.07988703327962,53.23852286734699],[-127.08017686280685,53.238478769841734],[-127.08047368293433,53.238450850464865],[-127.08077061671175,53.23842797596537],[-127.08108511413644,53.23839430048717],[-127.08137020099646,53.238421389544506],[-127.08163349965143,53.23851422945937],[-127.08193112167173,53.23851823739871],[-127.08222400112948,53.23848307091977],[-127.08250099050373,53.238414434228794],[-127.08276538607672,53.23833022508471],[-127.08301145718151,53.23822657868945],[-127.08315479244499,53.23807007795095],[-127.08330663686496,53.237915749218025],[-127.08349925246819,53.237777290306994],[-127.08364298959833,53.23767289228285],[-127.08401798629951,53.2375831875738],[-127.08431577165656,53.23755693487388],[-127.08467386851326,53.23754021415013],[-127.0851226055225,53.237544507954176],[-127.08540743596839,53.2374892384197],[-127.08570621295529,53.23750163437862],[-127.08599734431974,53.23754490848361],[-127.08625770998471,53.23763328313483],[-127.08648799768493,53.23775610313619],[-127.08664996875679,53.237886280604776],[-127.08685451866138,53.238030069211455],[-127.0870656308515,53.238173797312],[-127.08725086896082,53.23829647303685],[-127.08746859733654,53.23840483998437],[-127.08764192873072,53.238502417843804],[-127.08795085274714,53.23858081484096],[-127.08827785321455,53.23863159773685],[-127.08852542537673,53.23873297493651],[-127.088772082194,53.23883491578954],[-127.08899829145109,53.2389807428492],[-127.08901018693805,53.23915094743388],[-127.08900168372553,53.23933085896893],[-127.08909336230786,53.23950145133616],[-127.0892698059721,53.23964661440142],[-127.0895082053459,53.2397553524971],[-127.08978500617543,53.239825084974804],[-127.09007436766863,53.239871726924086],[-127.09035747162321,53.239930751045776],[-127.09063786937914,53.23999428132687],[-127.09091103623254,53.240067961836665],[-127.09116776096721,53.240159720776994],[-127.09143184966432,53.240245244243134],[-127.09165164881799,53.240360872170996],[-127.09174892782158,53.24052916998904],[-127.09193926528741,53.24066692255028],[-127.09213890154744,53.24080066299426],[-127.0923376221229,53.24093553202385],[-127.09253078583241,53.241073248645435],[-127.0926961028437,53.24122299110436],[-127.09285398628053,53.24137560752701],[-127.09303602322471,53.241518472524774],[-127.09319948130674,53.2416687871728],[-127.0933796728276,53.24181278913931],[-127.09355519493637,53.241957954372964],[-127.09372238151366,53.24210712239788],[-127.09392018236358,53.242241997268074],[-127.09413462920281,53.24236775436426],[-127.09431704038674,53.24248820424955],[-127.09459673048093,53.2425959865006],[-127.09482039199615,53.24271437865283],[-127.0950863368905,53.24279875646233],[-127.0953449067003,53.242887692698815],[-127.09559988285893,53.24298337552073],[-127.09584835687524,53.243081367812934],[-127.09616005208437,53.24311938062161],[-127.09643557868245,53.24310226746105],[-127.0967424307525,53.2430624542811],[-127.09704205040026,53.24306976758218],[-127.09734021548083,53.24305692484939],[-127.09763744947566,53.243080510240475],[-127.0979369970859,53.2430844604936],[-127.09823645682094,53.24308560510872],[-127.09853594626777,53.24308731341745],[-127.09883542072365,53.24308902110905],[-127.09913499764983,53.243094088552525],[-127.09943461793583,53.243101395809575],[-127.09973339486176,53.24311207158861],[-127.10003057224542,53.24313341055079],[-127.10034202104505,53.24312603949032],[-127.10064508956174,53.243120986354626],[-127.10093902121616,53.24312610163495],[-127.10122936015262,53.24313685197789],[-127.10152892268967,53.24314191351415],[-127.10182852952875,53.243148094369346],[-127.10212781448158,53.243142507869884],[-127.1024258471066,53.24312461586695],[-127.10272377702641,53.24310279788241],[-127.10301768962502,53.243070932128035],[-127.1032985756132,53.24300724846667],[-127.10356295846455,53.242922993164576],[-127.10382827119697,53.242838728605115],[-127.10410627327126,53.24277283782806],[-127.10440010920725,53.242738163625106],[-127.1046959534665,53.24270851665758],[-127.1049887991769,53.242671618198834],[-127.10528369661125,53.24264197857771],[-127.10556264083105,53.242576066602936],[-127.10583568944334,53.24250068926941],[-127.10606931580848,53.2423892675853],[-127.10629143033427,53.242268424176636],[-127.106492854068,53.24214608816064],[-127.10673373459159,53.24202506880031],[-127.10695299363731,53.241902574490254],[-127.10715782991683,53.24176732429931],[-127.10739149266534,53.24165757580898],[-127.10761358476223,53.24153616528965],[-127.10783376962351,53.241413660625746],[-127.10805110086356,53.2412900527421],[-127.1082627568831,53.24116426546061],[-127.10843290097912,53.24103101338645],[-127.10860322592153,53.24086863559764],[-127.10883968782345,53.24075829322784],[-127.10909532784689,53.240664022597095],[-127.10936163491073,53.24058254173179],[-127.10963082222925,53.24050326532194],[-127.1098999789276,53.24042343281179],[-127.11016628292347,53.24034195012944],[-127.11043059112335,53.240255994598776],[-127.11069486903537,53.24016892722225],[-127.11095338291146,53.24007686655051],[-127.11119565612749,53.239973752569426],[-127.11140534525927,53.239845727927495],[-127.11158073649112,53.23969786451057],[-127.11172490217731,53.23954076488389],[-127.11185390556588,53.239378204760264],[-127.11202079618798,53.23922873510296],[-127.11223811880407,53.23910568399338],[-127.11246306512456,53.238986478187286],[-127.11268801003025,53.238867836676185],[-127.11290342301997,53.238743125950315],[-127.11309785122805,53.2386062774097],[-127.1133075281843,53.238477693544944],[-127.11354684586473,53.238370120312496],[-127.1137880538879,53.23826309355325],[-127.11403791961158,53.2381643841638],[-127.11431682061692,53.23809845144596],[-127.11461485670883,53.23808220460982],[-127.1148994606914,53.238126034143505],[-127.11507229302039,53.23827343463405],[-127.11522653710598,53.2384277326382],[-127.11538914587932,53.238579146052004],[-127.11559528911165,53.23870830458676],[-127.11583281997088,53.23881756329946],[-127.11607864188476,53.238920576321576],[-127.11632628218167,53.23902188650217],[-127.116579421047,53.23911755090134],[-127.11682802448921,53.23921941570552],[-127.11706968494613,53.239342634751054],[-127.1172560370949,53.23950390640375],[-127.11738728407947,53.23963993462989],[-127.11757773050213,53.239778757352845],[-127.11779315148257,53.23990334270303],[-127.11805485540793,53.24000340522786],[-127.11847513686108,53.240243144759454],[-127.11872188967571,53.24034558782072],[-127.11896861378183,53.240446901189046],[-127.11921811729398,53.24054707629111],[-127.11948040334353,53.24063311957694],[-127.11975362430947,53.240707289391665],[-127.12004036565963,53.240760050502566],[-127.12033238140744,53.240799306227075],[-127.120627027382,53.240831257664446],[-127.12092594219564,53.24084748113035],[-127.12122543139417,53.240850252503776],[-127.12152466802516,53.240842941075954],[-127.12182054647782,53.240815491789114],[-127.1221173554326,53.240788032955926],[-127.12241120753411,53.24075499889606],[-127.1227019240722,53.240709668363664],[-127.12298479032941,53.240652086023445],[-127.12326564514329,53.24058891958502],[-127.12354064525564,53.24051796448514],[-127.12378472247636,53.24041313119693],[-127.12397984563096,53.24026785887193],[-127.1242225798496,53.240183762025296],[-127.1245166348044,53.24015856421664],[-127.1248233579684,53.24015060869355],[-127.1251263275226,53.240143252717004],[-127.12542675789044,53.24014600450854],[-127.12572326511574,53.240177369861335],[-127.126015666161,53.2401605832511],[-127.12629448715018,53.240092391118516],[-127.12657599534373,53.24001912608524],[-127.12686450165064,53.239926745468225],[-127.12706223122491,53.23984419084701],[-127.12723891058558,53.23964137830652],[-127.12738429257253,53.23949713770098],[-127.1276111199292,53.23937957014665],[-127.12784941546016,53.23927029230298],[-127.12809445037675,53.23916711705941],[-127.12836068144566,53.23908447326214],[-127.1286464414474,53.239030211145796],[-127.12893824985977,53.238991577691486],[-127.12923196438012,53.23895404585851],[-127.12952476238833,53.23891707778793],[-127.12981957158064,53.238885701271265],[-127.1301174574468,53.23886381443101],[-127.13041439537484,53.23887667125323],[-127.13067397608945,53.2389666330201],[-127.13084219772259,53.239114619707586],[-127.13099741819774,53.23926832366614],[-127.1311869919168,53.23940769802365],[-127.13141998757598,53.239520886410475],[-127.13169766671825,53.23958546661658],[-127.13199581116807,53.239608392477855],[-127.13228152429306,53.2396572076951],[-127.13253048419213,53.239736070853716],[-127.1327628398687,53.23989520308447],[-127.13288618058601,53.240049773836986],[-127.13299297683987,53.24021682797444],[-127.1330259194832,53.24039522785419],[-127.13301949534707,53.2405756890471],[-127.13299706606786,53.24075462686873],[-127.13295585344127,53.240932614651165],[-127.13290521167013,53.24110958094264],[-127.13285647619226,53.2412870847481],[-127.13280867120412,53.24146457962519],[-127.13277308767678,53.24164307822453],[-127.1327670226841,53.24183698178155],[-127.13267462287679,53.24199640983207],[-127.1325806759756,53.242168742735544],[-127.13241940208837,53.24231539128527],[-127.13222877287279,53.24245222643181],[-127.13211025892153,53.24261863518977],[-127.13204545226468,53.24279236567012],[-127.13201803283695,53.24296014573812],[-127.1320119041594,53.24315180870731],[-127.13200640610108,53.24333169597024],[-127.13201496238192,53.24351089330688],[-127.13199725709346,53.24369090601221],[-127.13198422131921,53.243870309400315],[-127.13197025447795,53.24404972165527],[-127.13195723349382,53.24422912486331],[-127.13194233532667,53.24440910173219],[-127.13193024508146,53.24458849601827],[-127.13194257034117,53.244768221999514],[-127.1319417418022,53.244947508772405],[-127.13189957464395,53.24512550482373],[-127.13183953839334,53.2453019951057],[-127.13178983271283,53.24547895148675],[-127.13177586451428,53.24565836356727],[-127.13178631218166,53.245838098412825],[-127.1318080071456,53.24601717015178],[-127.1318607257002,53.246198186808584],[-127.13187390711575,53.24637454300063],[-127.13185223561254,53.24654674083799],[-127.13199108906117,53.246719091970846],[-127.13220573208933,53.246846464565046],[-127.1324092189225,53.24697841628909],[-127.13261733222916,53.24710752674178],[-127.1328346819541,53.24723094615968],[-127.13306036710773,53.247349803591604],[-127.13328324555005,53.24746925214344],[-127.13347377949525,53.24760804876618],[-127.13365134061854,53.24775258049558],[-127.13381313542509,53.247904541382205],[-127.13394231510497,53.2480657777814],[-127.13400432565925,53.24824222260634],[-127.13404196412642,53.24842057665834],[-127.13410863085741,53.24859585639768],[-127.1341837226894,53.24876993503889],[-127.13427281113773,53.24894108303518],[-127.13437965041703,53.249109255490616],[-127.1344911608684,53.249276262676],[-127.13458772996839,53.249446209410905],[-127.13466001718119,53.24962087925983],[-127.13472855038661,53.24979557600199],[-127.13481205665708,53.249968453196665],[-127.13488904619382,53.250143077889504],[-127.13496136570281,53.250318858732],[-127.13503183894193,53.25049578664028],[-127.13510509075053,53.2506715584534],[-127.13518392990377,53.25084504472516],[-127.1352730116065,53.251015627202385],[-127.13537511429385,53.251181603017734],[-127.13552003318263,53.25133372301016],[-127.13573660241545,53.25146218232101],[-127.13596428597889,53.25158437659579],[-127.1361973465817,53.25169755501709],[-127.13643042345147,53.25181073283003],[-127.13663023817712,53.251944397720756],[-127.13678372512732,53.2521003602775],[-127.13694457154769,53.25225120541286],[-127.13715644912688,53.25237915135937],[-127.1374070121579,53.25247926953582],[-127.13768116692428,53.2525489166761],[-127.13796352133237,53.25260895588615],[-127.13825042634018,53.25266390407976],[-127.13853640114827,53.25271942523976],[-127.13881697120647,53.252782841031305],[-127.13907573955238,53.25287392199636],[-127.13927836095642,53.25300643504136],[-127.13935810731626,53.253178224603985],[-127.13938359282571,53.25335725820629],[-127.1393555664563,53.25353624101658],[-127.13926722299394,53.253707403881315],[-127.1391108254302,53.253861292311115],[-127.13891163472977,53.25399542254373],[-127.13868668313617,53.254114677567046],[-127.13848652851934,53.25424769580681],[-127.13833296487041,53.254402676413825],[-127.13822759816134,53.25456951975833],[-127.13820052746783,53.25474961344704],[-127.13817625022077,53.25492856878553],[-127.13815572755497,53.255108043841844],[-127.13814272943348,53.25528744668875],[-127.13814479601805,53.255468945968595],[-127.13814497001202,53.25564934290004],[-127.13812063159259,53.25582661350858],[-127.1379747215968,53.25598712247155],[-127.13793615789031,53.2561589270118],[-127.13796010867712,53.256350856447526],[-127.13809111698768,53.256508153250735],[-127.13834850724815,53.256581877008045],[-127.13865115926527,53.25659297426681],[-127.13894953339022,53.25661980761644],[-127.13920475163933,53.256717080628206],[-127.13943793405443,53.256798313180965],[-127.13962142273239,53.25691700769751],[-127.13974043907228,53.257082252350166],[-127.13984644993496,53.257252668506],[-127.13994682909612,53.25742313867182],[-127.14002107488619,53.257599462299595],[-127.14011112162737,53.257770031592926],[-127.14026728493543,53.25791979661357],[-127.14059033746703,53.258129583937134],[-127.14087722311264,53.25818229418852],[-127.14116502525079,53.25823386548525],[-127.1414553949463,53.2582764564514],[-127.14175208665245,53.25831001300879],[-127.14204871824079,53.258340772669925],[-127.14234170132102,53.25837604867273],[-127.14260749128266,53.25844688568741],[-127.1428434161384,53.258559458872334],[-127.14308573960844,53.258665811746],[-127.14330959176338,53.25878299124345],[-127.14348262280198,53.258930904340275],[-127.14367232597338,53.25907025730269],[-127.14380655200233,53.25924151845287],[-127.1439475612995,53.25938582234651],[-127.14413914565891,53.2595251564263],[-127.14427954459752,53.259681791170905],[-127.1443369138183,53.259858274864555],[-127.1444755280027,53.260017732281426],[-127.14466894894278,53.260155362576114],[-127.14487159245986,53.26028674537025],[-127.14500930917013,53.260447887069496],[-127.14518290470879,53.26058179062797],[-127.14547781394673,53.2606176051558],[-127.14574548567225,53.26068840811463],[-127.1459454326182,53.26082374132159],[-127.14611190187907,53.26097171397097],[-127.14621323111574,53.26114104916958],[-127.14629859329706,53.26131053853337],[-127.14620934569808,53.261482279447115],[-127.1461991584677,53.26166053525014],[-127.146335892622,53.26181999966626],[-127.14645665962595,53.26197906243861],[-127.14656525673482,53.26217409825059],[-127.14666063820715,53.26233172985431],[-127.14675005261388,53.2624776494556],[-127.14686663806118,53.26265523574399],[-127.14686486529244,53.262832289703546],[-127.1469194708864,53.263009919202275],[-127.1469721690538,53.263187011340584],[-127.14702959980914,53.26336516921709],[-127.14706153651991,53.26353798004008],[-127.1471003423235,53.26372192033018],[-127.14700906294581,53.26388807882566],[-127.14686224288864,53.26404972738255],[-127.1468105174927,53.264219976360145],[-127.14698825495935,53.264366727252614],[-127.14714460387204,53.26452151908584],[-127.14723565591507,53.264692637783426],[-127.1472883572648,53.264869720664684],[-127.1473176391603,53.265048715158436],[-127.14734035629563,53.265227773104584],[-127.14736589825927,53.265407368442524],[-127.14740359335946,53.26558516103954],[-127.14745724298211,53.26576223461221],[-127.14751089329823,53.26593931710602],[-127.1475401919787,53.26611886705951],[-127.14755072714873,53.26629916316739],[-127.1476883214518,53.266454700304074],[-127.14787811810274,53.26659573076198],[-127.14806971768397,53.266733937783115],[-127.14827606783086,53.266861917408434],[-127.14852671268781,53.26696089115398],[-127.1487746256304,53.267062696515175],[-127.1489893618151,53.2671883527651],[-127.14898950610062,53.26736595258603],[-127.1489559231944,53.26754723142796],[-127.14892980619763,53.26772620595444],[-127.14894877574265,53.26790585546647],[-127.14898466261963,53.26808535013091],[-127.14908502808562,53.26825300665176],[-127.14922648188373,53.26841186604345],[-127.14938283885402,53.26856609898927],[-127.1495504040721,53.26871798219084],[-127.14975858541635,53.26884370053907],[-127.15004018045232,53.268905960042936],[-127.15031824928006,53.26897666117271],[-127.15059963214495,53.26906581302257],[-127.15087408417367,53.26914158562386],[-127.15102212833968,53.26930037898486],[-127.15114246087484,53.26944206898748],[-127.151223248795,53.269649139475504],[-127.15128255379628,53.26982615629054],[-127.15127516502265,53.27000326431347],[-127.15113857021608,53.270160901197016],[-127.15120906787394,53.27033501271427],[-127.15122241387446,53.270514160515255],[-127.15119460993331,53.27070043035966],[-127.15114185553816,53.270866773501794],[-127.15104408706453,53.271036349913636],[-127.1510355517477,53.271205625542116],[-127.1510750079062,53.27130889196649],[-127.15131055212508,53.271197355691825],[-127.15154995840224,53.27108970762869],[-127.15179218852363,53.270982596382666],[-127.1520411968799,53.27088269748375],[-127.15232327828627,53.27082449055448],[-127.15262146954416,53.27080590811622],[-127.15292037951968,53.270813653778866],[-127.15321751650639,53.27079059814879],[-127.15351589296831,53.27081346953802],[-127.15380060459901,53.27085159507277],[-127.15410316656254,53.270889555308024],[-127.15440320791221,53.2709045649027],[-127.15468848469133,53.27092868126079],[-127.15500324498623,53.270932341299265],[-127.15529949640802,53.27091153004122],[-127.15558163483563,53.27085555573952],[-127.15585963307798,53.2707856195147],[-127.15614253268053,53.27072292250721],[-127.15643349632927,53.27068087071133],[-127.15673035424675,53.2706477246194],[-127.15702331768331,53.27061013381086],[-127.1573054211058,53.27055303521785],[-127.15757261657978,53.27046583723881],[-127.1578369553412,53.270377537065436],[-127.15811539236743,53.270323842702325],[-127.15841399234027,53.27032036372154],[-127.15871871865343,53.27033476089626],[-127.1590185884464,53.2703435933311],[-127.15931760385513,53.27035523905024],[-127.15953713859405,53.27041416521749],[-127.15974630459321,53.270539856686405],[-127.15996750184708,53.27072761263261],[-127.16005892026635,53.27080739399249],[-127.1601765933101,53.27098776226837],[-127.16038283178544,53.2710412144507],[-127.16073207653493,53.27106860808059],[-127.16105551307383,53.27108001062203],[-127.1615071909278,53.27100724136735],[-127.16182558733506,53.27107415963792],[-127.16201171762717,53.27118214491315],[-127.16222837646728,53.271306638218796],[-127.16245651199407,53.271404682837726],[-127.16260760502469,53.27146819095875],[-127.16267408373247,53.2715627809537],[-127.16293402691814,53.27165604007804],[-127.1631791927376,53.27175839838875],[-127.16335095302368,53.27178753270023],[-127.16346939980247,53.271790853536885],[-127.16376920332031,53.27179631326753],[-127.1640674272863,53.271778822265034],[-127.16436692240052,53.27177364338035],[-127.16466638623697,53.27176678779966],[-127.16496609756221,53.27176944867939],[-127.16528492993137,53.271783681681555],[-127.1654846212676,53.27190609475257],[-127.16557757986779,53.272074939908244],[-127.16563409244948,53.27225030112826],[-127.16572893033245,53.272419118727605],[-127.16595833653629,53.272528913796805],[-127.16625320745715,53.27255963117034],[-127.16653930751828,53.27261340845996],[-127.16677995447509,53.27272140626619],[-127.16716412008861,53.272856569159856],[-127.16738838411862,53.27288181988615],[-127.16756051748204,53.272754067527806],[-127.1677263651844,53.272603411266644],[-127.16791889304766,53.272465938037286],[-127.168135245825,53.27234112005327],[-127.16835727819314,53.272217921990006],[-127.16860541644144,53.272121913878514],[-127.16889620625211,53.272073110327106],[-127.16917819493653,53.27201206740553],[-127.16942996149457,53.271979333767845],[-127.16972450624905,53.27186270619402],[-127.16996965898682,53.27176056639022],[-127.17021283925227,53.27165508405046],[-127.17045219992409,53.271547397889734],[-127.17069151265822,53.27143802648829],[-127.17092891520934,53.27132756190853],[-127.17116633193099,53.27121765245737],[-127.17139992902848,53.27110553923816],[-127.17164842540812,53.2709887964986],[-127.17184410021127,53.27086416665088],[-127.17207168608725,53.270738665549665],[-127.17227390886282,53.27061341452315],[-127.17249695995166,53.27049355979946],[-127.17271903210693,53.270372593821634],[-127.17294014100419,53.270251081166016],[-127.17316030141876,53.27012901272794],[-127.17337951335008,53.270006388512655],[-127.17359489084086,53.269881569776935],[-127.17380644799509,53.2697539827114],[-127.17401131405077,53.26962253524586],[-127.1742142698858,53.26948999478005],[-127.17441627766793,53.26935745436358],[-127.17463262647514,53.26923374451711],[-127.17483744080467,53.26910061979889],[-127.17503756631208,53.26896754113141],[-127.17520906885376,53.26881905869766],[-127.17536723636877,53.268663420398994],[-127.17552541913109,53.26850891116853],[-127.17569699550276,53.268362668208596],[-127.17590112080147,53.268239068033914],[-127.17617895906044,53.268165167970125],[-127.17644714103383,53.26808183431753],[-127.17667106716067,53.26796084217669],[-127.17693203599627,53.26782098963737],[-127.17697343226394,53.26765474638607],[-127.17699567470395,53.267475811909215],[-127.17706882352661,53.26730308646827],[-127.17728040470914,53.2671777335524],[-127.17756442970419,53.26712393758397],[-127.17786360817838,53.26710807827514],[-127.17816295919434,53.26709894841173],[-127.17847208320163,53.26706954292004],[-127.17874608181435,53.26702648386047],[-127.17905311569133,53.26702343365325],[-127.17940766873849,53.26700646447467],[-127.17964611892677,53.26693518855111],[-127.17987790133063,53.266826993219695],[-127.18012293765503,53.266722591816624],[-127.18037186963053,53.26662319783924],[-127.18065220789236,53.26650499824213],[-127.18090063765341,53.2664549008415],[-127.18118449649289,53.266395495283355],[-127.18145860447194,53.26632329596481],[-127.18168206126938,53.266219661859964],[-127.18188269117697,53.26607256439261],[-127.18214731237161,53.26599709644424],[-127.18244565479698,53.26601933058991],[-127.1827426740149,53.266027575488124],[-127.18303659144516,53.265992151311224],[-127.18332339406895,53.2659371931891],[-127.18358488909487,53.26585110399507],[-127.18377831319647,53.265715280024764],[-127.18393080391743,53.26555968626393],[-127.18409752722815,53.26540956169824],[-127.18424910065039,53.26525509712888],[-127.18435611215229,53.265085954922654],[-127.18447456192843,53.26492230089488],[-127.1846669382072,53.264783124314356],[-127.1849033980007,53.26467487210362],[-127.1851871290742,53.264611531801954],[-127.18540340616296,53.264487237446986],[-127.18560920511656,53.26435800962375],[-127.18585716299478,53.26425804875371],[-127.18600601188719,53.26410753518738],[-127.18612145514521,53.26393774218291],[-127.18622649864682,53.26376525625061],[-127.18641919422242,53.263637834169806],[-127.18667006540423,53.263541768591715],[-127.18693240657889,53.263452866477095],[-127.18719853366756,53.2633650463847],[-127.1875114461032,53.26327115498277],[-127.18769821668467,53.26316675572728],[-127.18789439200039,53.263029211837946],[-127.18812316600491,53.26291599212187],[-127.188334423706,53.26278053743181],[-127.1886572078547,53.262670857085254],[-127.18887589230262,53.26266586940081],[-127.18918112566257,53.26269978711148],[-127.18948037962093,53.26268837935684],[-127.18977800754581,53.26268539536353],[-127.19008848047378,53.26270525647313],[-127.19037605763558,53.262712456265795],[-127.19068441629294,53.26272392881688],[-127.19097732661872,53.26272042442645],[-127.19127997342288,53.26272915600077],[-127.19158254120232,53.262735081871234],[-127.19188010673346,53.26273040800503],[-127.19216951242242,53.262702293880736],[-127.19243174190916,53.262610019028926],[-127.19270285543489,53.26253334125774],[-127.19300420347761,53.26249613208075],[-127.19331183320267,53.26248183365966],[-127.1935924527296,53.26250870882912],[-127.1938147616599,53.26263196817874],[-127.1940507672716,53.26274164330269],[-127.19435193303967,53.26276438370522],[-127.19464855574095,53.26279277158073],[-127.19495955006298,53.26279748351054],[-127.19524797582383,53.26276824226931],[-127.19550830553536,53.26267542392796],[-127.19567007238922,53.262551094806504],[-127.19590640791728,53.26240697437696],[-127.1961140420491,53.26227770031119],[-127.19632547732874,53.26214951699911],[-127.19646655912805,53.26205788975868],[-127.19663832245388,53.26192169765747],[-127.19672925957295,53.26175046453074],[-127.19684099341481,53.26158406826933],[-127.19693573182649,53.261414472863045],[-127.19688104493909,53.26124134699618],[-127.19670507197975,53.261095780679526],[-127.19654954868086,53.26094327591092],[-127.19640237246547,53.26078676950107],[-127.19623754194946,53.26063660813532],[-127.19606897379617,53.26048759575531],[-127.19592274727196,53.260331079173774],[-127.19581000270502,53.260163584689316],[-127.1956387241886,53.2600179605142],[-127.19548320800143,53.25986489850112],[-127.1954209395469,53.25968905152373],[-127.19540647820821,53.25950991710277],[-127.19542202655585,53.25932935980292],[-127.19539939316465,53.25915982746371],[-127.19527606508974,53.258982910313954],[-127.19516894337877,53.25881479378485],[-127.19505811414089,53.258647834998904],[-127.1949053822122,53.258493623644924],[-127.19474179468598,53.25832103762009],[-127.19470520235481,53.258156127665465],[-127.19462238104983,53.25798328390441],[-127.19451247168568,53.25781575954889],[-127.19434502553388,53.25767233588684],[-127.19422653512167,53.257500415636265],[-127.19413530822446,53.25732933238965],[-127.19406463962564,53.257154689613124],[-127.1939874393718,53.25698122405744],[-127.19389433734958,53.256810168435635],[-127.19380696687517,53.25667602266327],[-127.19370537494673,53.256470316744156],[-127.19359925945281,53.25630386485158],[-127.19338832742417,53.256182731595686],[-127.19318640494909,53.256048626061926],[-127.19303345180553,53.25588600622803],[-127.19286866808358,53.25573639541031],[-127.19271035406763,53.25558335781267],[-127.19258368839247,53.255420482070654],[-127.19251678394811,53.25524579149109],[-127.19248731731668,53.255066807272286],[-127.1924625211969,53.25488722031611],[-127.19242463005214,53.25470887650309],[-127.19240172746245,53.254529826242106],[-127.19238447216429,53.254350719200055],[-127.19236250043889,53.25417110377577],[-127.19234991536511,53.25399138502379],[-127.19236175169901,53.25381198552865],[-127.19238202839725,53.2536325011779],[-127.1924023358803,53.25345358122946],[-127.19241792646417,53.2532741439383],[-127.1924429034339,53.25309461227558],[-127.1925027132178,53.25291864771789],[-127.19256723917296,53.252743200430956],[-127.19264495312466,53.25256930573681],[-127.19276612814681,53.25240504955692],[-127.1929460828804,53.25226093594459],[-127.19307580619787,53.25209996391304],[-127.19315258643283,53.25192663395611],[-127.19320940933336,53.25174454063687],[-127.19325345489207,53.25157545712277],[-127.19329727106972,53.251497701519654],[-127.19342707913567,53.251439814615345],[-127.19365015003349,53.25139330572927],[-127.19397525486896,53.25136874429694],[-127.19426508876823,53.251359103643075],[-127.19460471985035,53.25131703087956],[-127.19495112346576,53.251315782882095],[-127.19520336872861,53.25133789273087],[-127.19534696791891,53.2513358810508],[-127.19549544312795,53.25134055205353],[-127.19566947954775,53.25138585920165],[-127.19575888251107,53.25142641673247],[-127.19603950897313,53.25155580726397],[-127.19614983738118,53.25153956349895],[-127.19629405671698,53.251460238492555],[-127.1963644713251,53.25142703368316],[-127.19648734207341,53.25132326364357],[-127.19659201640533,53.251272905537526],[-127.19674430416141,53.25124671812027],[-127.19698679703292,53.25115631618938],[-127.19697576895443,53.25096594141688],[-127.1969486343094,53.250770682389536],[-127.19714242260623,53.25065163836348],[-127.19740163113248,53.25055489954591],[-127.19762753559303,53.25044280930418],[-127.19786476545855,53.250332845259884],[-127.19809528938224,53.25021846642683],[-127.19830378723864,53.250088622538726],[-127.19845525374164,53.24993413859305],[-127.198626691304,53.24978842564923],[-127.19885432237115,53.24967126873906],[-127.19905619011627,53.24953981417058],[-127.19923800409639,53.249396227435696],[-127.19939325102011,53.24924283342784],[-127.19955892367607,53.24909268631877],[-127.1997626793614,53.24896176713748],[-127.1999797637226,53.24883688002255],[-127.20000104055337,53.248826015461304],[-127.20033159136507,53.2485974487001],[-127.20042907898215,53.248427265324445],[-127.20055701227494,53.24827078453349],[-127.20082304724134,53.248184053378274],[-127.20104682992411,53.248064134183075],[-127.20120966896825,53.24791401326205],[-127.20139339361029,53.24777208885288],[-127.20159519645716,53.2476389450722],[-127.20178937736948,53.24750139611446],[-127.20190864132108,53.247337713754426],[-127.20197405070002,53.24716225140549],[-127.20208903016096,53.24707873317833],[-127.20238381424656,53.24711215733392],[-127.20266157201853,53.24717377511652],[-127.20292047438336,53.247265272517076],[-127.20319568194407,53.2473364347792],[-127.2034790094294,53.24739574418384],[-127.20376588444753,53.247447738080766],[-127.2040383504095,53.24752116725196],[-127.20433206452194,53.247549559652605],[-127.20463292001241,53.247564997414834],[-127.20492482167916,53.24759564778244],[-127.20519650327712,53.24767412010057],[-127.2054333858962,53.24778376398207],[-127.20567487400382,53.2478899990518],[-127.20591082804755,53.24799965143119],[-127.20614959057399,53.24810871901553],[-127.20641025618707,53.24819626469094],[-127.20670168046442,53.248242602735544],[-127.20694218045188,53.248347169027774],[-127.20718827977197,53.248449992604286],[-127.20745174077365,53.248536387058415],[-127.207682215986,53.24865113851234],[-127.20792369856245,53.24875680438277],[-127.20817893301816,53.24885113355556],[-127.2084414836512,53.24893809984948],[-127.20871038928652,53.24901771301055],[-127.20897655302824,53.249100159274064],[-127.20924637496195,53.24917865034849],[-127.20952523159222,53.24924527884657],[-127.20980225907377,53.24931304586243],[-127.21007848564605,53.249385858224734],[-127.21031531042155,53.24949269628136],[-127.2105356904002,53.24961482411034],[-127.21080826225008,53.249691033624806],[-127.21107988925802,53.24976726113075],[-127.2113542279183,53.24983953405999],[-127.21163039634529,53.24991010242317],[-127.21191543751085,53.24996266028889],[-127.2122135687671,53.24998033890011],[-127.21251333758592,53.24999016541249],[-127.21280887118075,53.250015712662766],[-127.21309758829011,53.25006542436301],[-127.21338972266044,53.25010333952469],[-127.21364943636107,53.25018920293284],[-127.21384030993107,53.2503295547827],[-127.21404867225891,53.25045795748652],[-127.2143075884217,53.250548874418804],[-127.21459271762528,53.25060422180689],[-127.21488663733545,53.250638744544965],[-127.21518145541737,53.25067158107099],[-127.21547879212326,53.25069430645804],[-127.21577821210607,53.25069180272446],[-127.21607307020051,53.250660767475324],[-127.21635089981052,53.25059292921654],[-127.21660539579133,53.250497316819796],[-127.21683397642686,53.25038235626924],[-127.21699104024204,53.25022892005879],[-127.21707715202791,53.25005659818943],[-127.21709356761522,53.249877147794244],[-127.21707149290214,53.249697527574895],[-127.21707290632212,53.24951823107651],[-127.21711752714639,53.24934017647135],[-127.2172225206322,53.24917157795862],[-127.2173862377656,53.249021434329734],[-127.2175870651271,53.24888827298989],[-127.21782134529177,53.248775492843414],[-127.21808651511306,53.248692657827306],[-127.21836726464727,53.24862870193954],[-127.21864803088967,53.248565874682384],[-127.21893977401113,53.24852533525488],[-127.21923679903203,53.24850491902168],[-127.21953477084138,53.248485048082],[-127.21983158592961,53.248457900464096],[-127.22011729160825,53.248403418265205],[-127.22039705799392,53.24833835607566],[-127.22064772840133,53.24824108876763],[-127.22089931158135,53.24814269996745],[-127.22118386517784,53.248113434107054],[-127.2214769891148,53.24815356016849],[-127.22177360724918,53.24818412066255],[-127.22206759461254,53.24815644076078],[-127.22234345623048,53.24808636735666],[-127.22262124249997,53.248017949750626],[-127.2229079699149,53.24796681176362],[-127.22319663749633,53.24791733832164],[-127.22348027955027,53.24785670189072],[-127.22371080185106,53.247745078072796],[-127.2239730804188,53.247660009501686],[-127.22426691673249,53.247627287809735],[-127.22456378660789,53.24760181293569],[-127.22486289154801,53.24758919568344],[-127.22516181278854,53.24760236040162],[-127.22546735999661,53.24761713220235],[-127.22569256117777,53.2477106048928],[-127.22593029706019,53.247815161731566],[-127.22620647659546,53.24788569623525],[-127.22648535031618,53.24795172914425],[-127.22677044540964,53.248005927158296],[-127.22705474148931,53.24806517059937],[-127.2273493883309,53.248092376032645],[-127.22764599526609,53.24812292199922],[-127.22791032826083,53.248205345089126],[-127.22818466940892,53.2482770235451],[-127.22847331114959,53.24832389294041],[-127.22875666456444,53.24838258632664],[-127.22903030655762,53.248462669480936],[-127.22917925864033,53.248612960459795],[-127.22926223413657,53.248786336378856],[-127.22936664291807,53.24895445225061],[-127.22947111773826,53.249124808372116],[-127.22945193183502,53.24930428981032],[-127.22926339889545,53.249439585194],[-127.229074113087,53.2495810553759],[-127.2290584514139,53.24975265656137],[-127.22921604196374,53.24990901628669],[-127.22938372229339,53.25005742762097],[-127.2294909264973,53.250224949596905],[-127.22957762842614,53.250397175019074],[-127.2296820586189,53.25056584607932],[-127.2297808745372,53.250735139986524],[-127.22985822652308,53.25090913840504],[-127.22992999518948,53.25108431517001],[-127.23005672685879,53.25124491999561],[-127.23029090189048,53.25135509875527],[-127.2305761553746,53.251413768232695],[-127.23086309100987,53.25146569648519],[-127.23112472581234,53.251551502092894],[-127.2313654030475,53.251659379211084],[-127.23161065117628,53.25176271736536],[-127.23186321367464,53.2518592649356],[-127.23211760541751,53.25195410772035],[-127.23237292795893,53.252048375557045],[-127.23260899099105,53.2521585391536],[-127.23281097228106,53.252291457827624],[-127.23297589902195,53.25244101326051],[-127.23311575448179,53.252600357944324],[-127.23326676001174,53.25275566025775],[-127.23344561490873,53.25290002343627],[-127.23366696171124,53.253020422606276],[-127.23391862274026,53.25311808678999],[-127.23417945754056,53.253207820363684],[-127.23444479897866,53.25329133916006],[-127.23469368772865,53.25339015108476],[-127.23493797539773,53.25349238090191],[-127.23522049032974,53.25355274416326],[-127.23550932351023,53.253604641572345],[-127.23580109263827,53.25362849481837],[-127.23609174444057,53.25358233126564],[-127.23638059864126,53.2535384177951],[-127.23667959462246,53.25352073448584],[-127.23696941200029,53.25347793900833],[-127.23725312096822,53.25341895456408],[-127.23754809705073,53.253391782111585],[-127.23784867796432,53.25339593384778],[-127.23814521466731,53.25342252838976],[-127.2384241107563,53.25348741286646],[-127.23868221593989,53.25357996195081],[-127.23891277036836,53.253693523279594],[-127.23911850086283,53.25382528068436],[-127.23935547158341,53.25393317156398],[-127.23964325133564,53.25398115266002],[-127.23994390215647,53.253987530470184],[-127.24023986110055,53.25396202634],[-127.24053059116638,53.25391809210874],[-127.24082434286667,53.25388140442757],[-127.24112258917512,53.253869876130764],[-127.24142247447607,53.253882425521226],[-127.24171810229238,53.253909585437114],[-127.2420095554046,53.25395416082009],[-127.24227757709171,53.254032587407224],[-127.24251002124748,53.254146131020676],[-127.24268706924532,53.254291619995215],[-127.24283068918477,53.25444979356826],[-127.24300677542863,53.2545941716266],[-127.2432263633076,53.2547173684718],[-127.24346615831539,53.254825230619126],[-127.24371783639096,53.254922318318584],[-127.24398505182846,53.255004675849484],[-127.24425584141025,53.255080827975085],[-127.24452031636645,53.25516545409163],[-127.24477568761552,53.25526025979969],[-127.24501731737884,53.25536641434642],[-127.24524512331202,53.25548112186951],[-127.24552766790282,53.25554202524665],[-127.24582078212764,53.25557872136719],[-127.24609428839418,53.255651488231706],[-127.24633962878752,53.255755915889395],[-127.24656102730599,53.25587629082109],[-127.24672320950435,53.25602641213302],[-127.24684358868473,53.256191548257604],[-127.24697977043417,53.25635147134921],[-127.24712618874636,53.256508480900074],[-127.24724469343849,53.256673636312016],[-127.247341716591,53.256842934783606],[-127.24738828089484,53.25702060733175],[-127.2474095418544,53.25720022219325],[-127.2474373652351,53.257379212259146],[-127.24747175111914,53.25755757752495],[-127.24748925773423,53.257737231804356],[-127.24753485931856,53.25791379383572],[-127.24762723499337,53.25808482613147],[-127.24771867990769,53.258255859172486],[-127.24784000058195,53.25842098430033],[-127.24799103127441,53.258574582664856],[-127.24823998310971,53.258673374858546],[-127.24852526113656,53.25873031621999],[-127.24880962537188,53.2587878312603],[-127.24909043578317,53.25885267087601],[-127.24938164896714,53.25888770213299],[-127.24967956366885,53.25886383051882],[-127.24997345799282,53.25883104534468],[-127.25027504298687,53.25883626698036],[-127.25055921129415,53.25888705682422],[-127.25075840635891,53.259017742705375],[-127.25084245531683,53.25919221292762],[-127.2508871761042,53.259370468243105],[-127.25090655910527,53.259549546450444],[-127.2509109531747,53.25972933844851],[-127.25091249048607,53.259908048997815],[-127.25086517708465,53.26008614508251],[-127.25084606066326,53.2602650733423],[-127.25085419473604,53.26044482584444],[-127.25086046655274,53.26062460692708],[-127.25095372485502,53.26079282152023],[-127.25115680140438,53.26092738310806],[-127.25136722380208,53.26105626430178],[-127.25158949587811,53.26117325023835],[-127.25187396388621,53.2612335627547],[-127.25214931167417,53.26130349074258],[-127.25238733891729,53.26141303006937],[-127.25260881729022,53.26153450456349],[-127.25281366415514,53.26166512734625],[-127.25300744547252,53.2618025807645],[-127.25322616867886,53.261925768472544],[-127.25344753591231,53.26204332527529],[-127.2535128419476,53.26221855625018],[-127.25347120350786,53.2623977227741],[-127.25343423468915,53.262576275194576],[-127.25339821192125,53.26275481759015],[-127.25335748531981,53.26293284490248],[-127.25331297142067,53.26311035640932],[-127.25328823081445,53.263289344281716],[-127.25326255837504,53.26346833300793],[-127.25323876519667,53.26364786660038],[-127.25321874234388,53.26382736034836],[-127.25320340621211,53.26400680457575],[-127.25318054238524,53.26418577251019],[-127.25316520596098,53.264365216699275],[-127.25315174719127,53.26454464103839],[-127.25312230280227,53.26472366943838],[-127.25310791234679,53.26490310357518],[-127.25314419109431,53.265081446825974],[-127.25313167842663,53.26526086110124],[-127.25308812403638,53.26543891791469],[-127.25303326930768,53.26561598247071],[-127.2529896976489,53.265793483614836],[-127.2529800098624,53.26597342374459],[-127.25304435710783,53.26614810901243],[-127.25332892736141,53.266179274884195],[-127.25362712414345,53.26619461790499],[-127.2539105991498,53.266252130495744],[-127.25417614461409,53.26633840051441],[-127.25426161778284,53.26649660994608],[-127.25423290703978,53.26666835187],[-127.25439806737882,53.26682180159783],[-127.25450918418016,53.26698925962996],[-127.25465739561932,53.26714120292151],[-127.25489461419784,53.26725355161675],[-127.25513814933565,53.26735742470826],[-127.25540744356415,53.267443096597745],[-127.25560159168494,53.26756037262872],[-127.25561273863187,53.267745703999715],[-127.25562558026073,53.2679248501212],[-127.25564877471426,53.26810444245679],[-127.2556672504549,53.268283528928535],[-127.25567636987675,53.268463834895904],[-127.25570044647466,53.26864174155644],[-127.25579384171633,53.26881331212266],[-127.25592915156703,53.2689732339067],[-127.25612478816493,53.269108430479996],[-127.25634538616949,53.269229907373756],[-127.25648438876937,53.269387548409156],[-127.2565825081764,53.26955963305927],[-127.25651481447039,53.269715536203854],[-127.25638341620305,53.2698766047454],[-127.25624254484359,53.270035523408986],[-127.25609123423611,53.27019063506552],[-127.25592948430642,53.270341939676214],[-127.25577531354797,53.270495960639025],[-127.25563254148788,53.27065377808269],[-127.25550589120199,53.27081703629468],[-127.25540855888352,53.270987263054],[-127.25535744604684,53.271163723881386],[-127.25535998219125,53.27134353449538],[-127.25539253631797,53.27152247179302],[-127.25543072352983,53.27170079370687],[-127.2554510945514,53.27188041560957],[-127.25541221437483,53.27205786747725],[-127.25528933179582,53.27222164120383],[-127.25511141628212,53.27236694812337],[-127.25491631340738,53.272502916638985],[-127.25472411710149,53.27264165087419],[-127.25456232108056,53.27279238902909],[-127.25445646963263,53.27296046377927],[-127.2543987843582,53.27313699341475],[-127.25437592038782,53.27331595177072],[-127.2543953413635,53.27349559267037],[-127.25446253046076,53.27367023767152],[-127.25456151658868,53.27384007345049],[-127.25465117880331,53.27401223975835],[-127.25472776111216,53.27418679424985],[-127.25490671357389,53.27432888314611],[-127.25517129714471,53.2744123645167],[-127.25545487953322,53.274471557888944],[-127.25574195234216,53.274521740627925],[-127.25603264924625,53.274567411255596],[-127.25632241668536,53.27461364678754],[-127.25660952483516,53.274664947580526],[-127.25689219587382,53.274724702971746],[-127.2571604774,53.27480646451722],[-127.25737554015132,53.274930239131976],[-127.25758327662231,53.275060823005965],[-127.25782960473137,53.275161855354554],[-127.25807779751963,53.275262876398195],[-127.25832600625462,53.27536388779721],[-127.25857877101554,53.27546037730159],[-127.25883610805326,53.27555289151864],[-127.25909437603097,53.27564483057328],[-127.25934164305794,53.275745858831996],[-127.25955307753107,53.275873594319854],[-127.25974787763911,53.27601102583098],[-127.25985525008427,53.27617740673829],[-127.25992715428964,53.27635199864054],[-127.26003270001446,53.27652007504632],[-127.26014576169311,53.276688636294146],[-127.26034608372333,53.276821526167026],[-127.26063894237915,53.27684475255289],[-127.26086818246391,53.27693923712674],[-127.26106226116387,53.27708340618223],[-127.261268141021,53.27721399445697],[-127.26153278872815,53.27729858167587],[-127.26182344404857,53.277341997750675],[-127.26211848663766,53.277375272925426],[-127.26241176713313,53.277411936602896],[-127.26270157770146,53.27745871208991],[-127.26299223532628,53.27750212529923],[-127.26328980329791,53.277525286129226],[-127.26358940880085,53.277522097043985],[-127.26388538427614,53.277492053634],[-127.26415744369041,53.277416323315926],[-127.2644314644946,53.27734337722248],[-127.26473068442043,53.27732786374435],[-127.26503045625903,53.2773302717815],[-127.26505887842009,53.27715012257535],[-127.26515327722676,53.27697712265834],[-127.26534286713655,53.276845678311815],[-127.26561663017237,53.27676432383978],[-127.2658965309833,53.27669971091502],[-127.26616756781502,53.27662174575151],[-127.26642603246808,53.276531588481944],[-127.26667092784892,53.27642757354236],[-127.26689756530679,53.276309742094284],[-127.26709166690026,53.27617264410834],[-127.26725341445844,53.27602133354489],[-127.26743035692522,53.27587601881067],[-127.2676292422239,53.275741674553174],[-127.26786355462248,53.27562936173908],[-127.26812392149483,53.275540300814754],[-127.26839792299955,53.275467336533545],[-127.26868374871702,53.27541273814481],[-127.26898181974494,53.27539050298207],[-127.26927834540858,53.27541086304776],[-127.2695759697337,53.27543625740978],[-127.26987606537858,53.27544985472937],[-127.27016704905589,53.27541088473201],[-127.2704459516118,53.27534458629674],[-127.27072082900415,53.27526993092776],[-127.27093120652945,53.27514330150197],[-127.27104836848385,53.27497845202414],[-127.27112392183564,53.2748045281545],[-127.2711429421718,53.2746250423902],[-127.27108690113242,53.27444860152549],[-127.27107869494976,53.2742694073196],[-127.27111558436074,53.27409085065169],[-127.2711862789586,53.27391136714825],[-127.27139035403339,53.27379433308136],[-127.27168058058209,53.273730151276006],[-127.27196987015768,53.27376011090516],[-127.2722572785876,53.2738208996433],[-127.27254703992283,53.273865975272265],[-127.2728431005184,53.27387119992016],[-127.27314234155054,53.27385678520209],[-127.2734432598342,53.27383619338613],[-127.27374346579191,53.273822887308455],[-127.27404422921569,53.273828058487815],[-127.27433013797192,53.27377680691093],[-127.27462208505902,53.27376975458996],[-127.27492169747991,53.27379903144789],[-127.27521122641157,53.2738368152724],[-127.27547688014917,53.27392360184297],[-127.27576023369275,53.27397434110523],[-127.27605526195771,53.27400702594195],[-127.27634941180223,53.27404196052578],[-127.27664769131674,53.27405836595224],[-127.27694767779548,53.274068584952246],[-127.27724592356874,53.27408385976364],[-127.2775442865503,53.27410250307544],[-127.2778433269475,53.274112730000965],[-127.27814390654353,53.27411173444678],[-127.2784641318488,53.274108285483074],[-127.2787321323023,53.274024156489276],[-127.2789521420197,53.2739063727875],[-127.27914045523796,53.2737653994429],[-127.27932113763225,53.27362114648225],[-127.27949516797213,53.27347416812797],[-127.27966919682869,53.27332718054624],[-127.27985660955319,53.273187900935405],[-127.2801005037657,53.273083303602185],[-127.28036275809112,53.27299587120404],[-127.28061047628465,53.27289403730718],[-127.28085629591254,53.27279109388407],[-127.28110015347127,53.27268593904306],[-127.28133732474788,53.272576929578456],[-127.28155144726125,53.272451360751326],[-127.28175311304875,53.27231751768706],[-127.2819662695708,53.27219140272313],[-127.28218329784322,53.27206859811405],[-127.2823725407622,53.27192817399958],[-127.28258770741199,53.27180650924008],[-127.28287042521909,53.27174351030759],[-127.28315157236494,53.271691168111865],[-127.28343150793809,53.27159849968912],[-127.2836967649048,53.27145612181331],[-127.28383261877539,53.27132075479247],[-127.28382946272843,53.2711863267131],[-127.28395578772043,53.270954133250925],[-127.28412412244532,53.270806079751075],[-127.28430286115518,53.270660163400244],[-127.28448161741254,53.270515358120846],[-127.28465559980924,53.27036780740889],[-127.28486975252255,53.27024391715809],[-127.2851173733477,53.2701392686913],[-127.28534017143255,53.2700219980833],[-127.28549228638535,53.269865718735005],[-127.28564917310945,53.269712193253966],[-127.28579847822277,53.26955649968205],[-127.28594018513685,53.26939809141387],[-127.2861208597346,53.269254947927465],[-127.28633879257855,53.26913213439976],[-127.28660397045041,53.26904913801987],[-127.28681076960584,53.268930926376406],[-127.28694435374223,53.268783810081615],[-127.28702237418577,53.26863169363038],[-127.28705355523681,53.268452627874495],[-127.28708568468902,53.268274116547325],[-127.28712250117437,53.268095554354936],[-127.28716310541989,53.26791751578924],[-127.28720464049354,53.26773945812865],[-127.28724805339289,53.26756138902766],[-127.28729148286537,53.26738387548921],[-127.28733015837827,53.26720472822238],[-127.28736318106921,53.267024530690406],[-127.2874056289043,53.266845907177014],[-127.28747077932302,53.26667207518324],[-127.28757272788127,53.26650401121328],[-127.28770773542927,53.2663423115249],[-127.28785409234385,53.26618272952928],[-127.2879900614368,53.266021583777665],[-127.28809490087916,53.265856284709635],[-127.28811563757625,53.26567397911502],[-127.28804737341397,53.265498798012445],[-127.28790733633652,53.26534175950824],[-127.28774111390378,53.265188375545215],[-127.28759076085348,53.265032013361306],[-127.28744133810586,53.264875076148954],[-127.28730125426223,53.26471636113008],[-127.28716910951277,53.26457157084799],[-127.28710965941279,53.26437724465665],[-127.28708242392494,53.26419265370582],[-127.2870950119205,53.26401995652868],[-127.28711564932654,53.26383428151345],[-127.2871584023088,53.263665739173724],[-127.28716466652493,53.263501518947784],[-127.28715045380277,53.26331230456492],[-127.28709060548542,53.26313591096352],[-127.28707856317682,53.26295675771606],[-127.28710691575368,53.26277772205163],[-127.28721829612739,53.26261124091522],[-127.28740749686388,53.26247136368056],[-127.28761770922216,53.262343019131926],[-127.287823148384,53.26221192916566],[-127.28801518847175,53.262073140599036],[-127.28814554493557,53.26191317562739],[-127.2882492886192,53.261742849967],[-127.28835497745247,53.26157474412125],[-127.28845877059021,53.261406093998666],[-127.28856048899418,53.261261562078055],[-127.28868339487182,53.26119635726002],[-127.28882922284615,53.26114322910259],[-127.28900254188504,53.26109876630765],[-127.28872618813273,53.26102893411562],[-127.28842868828444,53.26100471669641],[-127.28813475761278,53.261035921325536],[-127.28784516247673,53.26108612709739],[-127.2875634528129,53.26114857236186],[-127.28729247147899,53.26122434685334],[-127.2870351596654,53.261316780313145],[-127.28678559808691,53.261417528601385],[-127.28658580749712,53.261548555582394],[-127.28648674417971,53.26171882899068],[-127.2864084516168,53.26189223867332],[-127.28626487706262,53.26205011287668],[-127.28606516918842,53.26218449956445],[-127.28582617361899,53.26229297485407],[-127.28555912270048,53.262374305256024],[-127.28527635243225,53.26243339483828],[-127.28499482642192,53.26247118030634],[-127.284704948401,53.26245078829051],[-127.28441285227012,53.26241921434218],[-127.2841159867528,53.262385450248374],[-127.28382809953385,53.26233758620692],[-127.28356710291845,53.26224796223728],[-127.28329991782653,53.26217073935824],[-127.28300232782694,53.26214370347967],[-127.28270328573184,53.26213068461819],[-127.2824041248947,53.26211374893851],[-127.28211103347498,53.26207993907308],[-127.28182660175183,53.262022503946355],[-127.28169087781842,53.261975231851146],[-127.28163773326332,53.26189512823678],[-127.28157041625848,53.261719368446606],[-127.2815784398672,53.26151982860486],[-127.28157420758016,53.26138037361755],[-127.28152466614074,53.26129518418133],[-127.2813758523575,53.26124972942195],[-127.28099685776677,53.26123253188851],[-127.2806986674203,53.26121614624338],[-127.28041426028174,53.261159263303206],[-127.28015605132963,53.26106792554664],[-127.27993818350824,53.26094422162344],[-127.27974712530487,53.26080621711419],[-127.27954444832103,53.260657132368415],[-127.27947901959254,53.260481351029775],[-127.27942199727637,53.26030380269162],[-127.27930991877952,53.260138053210596],[-127.27914941469106,53.25998571622177],[-127.27895004255154,53.259852282164196],[-127.27873676889234,53.259725156003604],[-127.27853550491294,53.25959118586888],[-127.27837410807075,53.25943996902055],[-127.27826107288197,53.2592736730717],[-127.27818257672922,53.25910027280746],[-127.2781312113834,53.25892322759938],[-127.27812389249105,53.2587434578444],[-127.27814287584683,53.258563969462564],[-127.27814401528966,53.2583846732962],[-127.27814515292742,53.25820482135218],[-127.27818106720156,53.258026271032065],[-127.27824712248793,53.25785075751415],[-127.27833675659605,53.25767890723316],[-127.27848134316538,53.25752271678661],[-127.27869059495711,53.25739384231999],[-127.27893920583386,53.2572931210464],[-127.27919268602098,53.257197940394065],[-127.27933544318512,53.257044009592],[-127.27938452739109,53.25686643723988],[-127.27939410059979,53.256686494113836],[-127.27938865413508,53.256506703980676],[-127.27938508539525,53.25632690254536],[-127.27938998932207,53.2561475655031],[-127.27939956207311,53.25596761334781],[-127.27940631142991,53.25578770058718],[-127.2794065142567,53.25560841419118],[-127.27940294524528,53.25542860371077],[-127.27940595480212,53.2552487312306],[-127.27941554438364,53.25506934355065],[-127.27942699412459,53.254889371045024],[-127.27944409287588,53.25470990234083],[-127.27947529786043,53.25453140200225],[-127.27951872976904,53.25435333450474],[-127.27954994919325,53.25417483395124],[-127.27955294274491,53.253994952550194],[-127.27953342401659,53.25381532291763],[-127.27950078308682,53.253636946365],[-127.2794484727105,53.253459911427235],[-127.27936531391711,53.25328712651788],[-127.27925135989608,53.25312083205886],[-127.27910946854848,53.252962126642764],[-127.27892951123248,53.252817842540544],[-127.278687912588,53.25271511741605],[-127.27840968568526,53.25264304080331],[-127.278195637721,53.25251984827541],[-127.27800545274063,53.25237846983416],[-127.27772284862806,53.252316523542866],[-127.27744968421867,53.25225671598582],[-127.27730332024834,53.25210477977421],[-127.27721709539273,53.25192361793325],[-127.27719858639064,53.251746218023435],[-127.2772353625196,53.2515654170351],[-127.27732317618296,53.251395271731845],[-127.27751712945921,53.25125815492356],[-127.27773594056711,53.25113534585268],[-127.2779432519313,53.25100537233044],[-127.27814770280094,53.250873743970395],[-127.27834168310976,53.2507371901772],[-127.27849661372291,53.25058257268765],[-127.27868015802588,53.25044276918729],[-127.2789248378014,53.25033759843197],[-127.27916190631774,53.250229156608256],[-127.2793873883758,53.25011018974839],[-127.2796282423433,53.2500028176894],[-127.27989038857493,53.24991651440905],[-127.28017205151666,53.249854642596134],[-127.2804577397879,53.24980169985517],[-127.28074339310751,53.24974762729999],[-127.28103396903853,53.2497013535606],[-127.28132166794691,53.249652860154846],[-127.28160038320894,53.24958654358409],[-127.28186445078497,53.249501891405735],[-127.28209188330995,53.24938569500235],[-127.28226170995232,53.24922754968176],[-127.28228450970437,53.24914381917007],[-127.28228794175064,53.2490401374323],[-127.28208009871854,53.24896674382529],[-127.28182665336062,53.24893698760339],[-127.2815440347944,53.248874494864054],[-127.28127052850067,53.24880237403312],[-127.28101306933681,53.24870262178464],[-127.28079899978154,53.24857831353551],[-127.28070759459163,53.24841234140086],[-127.28067011508254,53.24822897899347],[-127.28064306899788,53.248048865504835],[-127.28052082286779,53.24788770830941],[-127.28040503606316,53.247722563878625],[-127.28026505236849,53.24756439473496],[-127.28014647628014,53.24739983593491],[-127.27998874057629,53.24724466386676],[-127.27997328257574,53.2470750746467],[-127.28003549143276,53.24689735930826],[-127.28013740474154,53.24672873542831],[-127.28027430558498,53.24656870699835],[-127.28042070682238,53.246411928456496],[-127.28055286960715,53.24625026552526],[-127.28072965875644,53.246105493279515],[-127.28092357486135,53.24596781475749],[-127.28112222536437,53.245831761072864],[-127.28132182267098,53.245696261551934],[-127.28151384118577,53.24555804671027],[-127.28169539165513,53.24541545356141],[-127.28186079280816,53.24526687620268],[-127.28200818285276,53.24511233482579],[-127.28214320921553,53.24495231526738],[-127.28226875020994,53.24478960123071],[-127.28238858972286,53.244624151832454],[-127.28250367744876,53.24445706838972],[-127.28261969519225,53.24428997475309],[-127.28273763790835,53.244123980692585],[-127.28286222608794,53.24396071146161],[-127.28297262765037,53.243794242904166],[-127.28301885627806,53.24361613362611],[-127.2830303047124,53.24343672425657],[-127.28302577565981,53.24325693193309],[-127.28301843865599,53.24307716100572],[-127.28300171794372,53.2428975005409],[-127.28300941265485,53.242718131712934],[-127.28305565709584,53.24254058688389],[-127.28311979113865,53.24236508953448],[-127.28320183144507,53.24219219523908],[-127.28330464978374,53.24202300238362],[-127.28343301740301,53.241860820884376],[-127.28357937559372,53.24170403821884],[-127.2837304832668,53.241548889222315],[-127.28388062492614,53.24139262993081],[-127.28403364115803,53.24123858037256],[-127.28418946385858,53.24108450020206],[-127.2843443717316,53.24093099446004],[-127.2845011720847,53.24077802377893],[-127.2846579541361,53.240624488313806],[-127.28481475221655,53.24047151719358],[-127.28496774480936,53.24031691075229],[-127.2851179115878,53.24016176996092],[-127.28528960031547,53.24000471040884],[-127.2854020631268,53.2398449399117],[-127.28552852223677,53.239682211735634],[-127.28564928222946,53.23951730411155],[-127.28576816462976,53.23935241669762],[-127.28588515227764,53.239186984934825],[-127.28600213928226,53.23902156200363],[-127.28612196473127,53.23885666393503],[-127.28624934891502,53.238693924810505],[-127.28637864065921,53.23853172061883],[-127.28648995999374,53.238365238051955],[-127.2865663148426,53.23819128197343],[-127.28659842334415,53.238012767952895],[-127.2865891957429,53.23783302607215],[-127.28654248776576,53.23765536714726],[-127.28650609161193,53.23747703156575],[-127.28649216561867,53.23729734060606],[-127.2865185587,53.237116082695955],[-127.2864982257223,53.23694149916036],[-127.28648974910766,53.23678640089814],[-127.2863788484469,53.236596547566265],[-127.28625181056788,53.236431530004495],[-127.28619479224814,53.23625398268289],[-127.2862137312207,53.23607449089323],[-127.2863071420351,53.2359059524293],[-127.28643353485381,53.23574154717573],[-127.28656465923342,53.23557820200034],[-127.28669203182997,53.23541546211894],[-127.28682413623291,53.23525379126499],[-127.28696004385696,53.235093764253556],[-127.28709972028139,53.2349342519402],[-127.28729878420464,53.234783059035486],[-127.28738855454385,53.234618485425614],[-127.28752824470916,53.23445952817201],[-127.28765755299781,53.234298451355606],[-127.28771786845242,53.23412187134184],[-127.28780930733365,53.23395055595297],[-127.28789888408339,53.23377926069642],[-127.28792530307544,53.23359912230749],[-127.28797532293025,53.23342377444881],[-127.28810175291781,53.23326104297776],[-127.28824329534683,53.2331015087785],[-127.28835553871978,53.23293501370841],[-127.28843943287016,53.23276265910872],[-127.28851482196252,53.23258815576953],[-127.28859776689424,53.23241524657367],[-127.28868733719416,53.23224395058238],[-127.28876744180714,53.2320705163034],[-127.28882776666346,53.23189450008373],[-127.28886268279817,53.231715954181055],[-127.28890042253069,53.231537933342416],[-127.28889473414888,53.23135142920052],[-127.28890066212305,53.231176559983666],[-127.28906790961683,53.23102962684085],[-127.28932897102963,53.23094274739312],[-127.28960643378016,53.230870820782144],[-127.28984319447062,53.23075674668056],[-127.2900540016128,53.230622793656046],[-127.29017876111807,53.2304673567832],[-127.29021837071112,53.23028932395149],[-127.29021553246756,53.230103900251954],[-127.29020159313286,53.22992420902787],[-127.29016985428328,53.22974526727404],[-127.29013062781104,53.229566962767066],[-127.29009138470893,53.22938810262457],[-127.29005871613458,53.229209170916484],[-127.29005698049757,53.22902934680743],[-127.29006760324717,53.22885498196606],[-127.29017382346838,53.22867622414219],[-127.29023997103813,53.22850685771405],[-127.29021386156491,53.22832785458248],[-127.29018024771182,53.22814893309801],[-127.2900501123586,53.22803605358382],[-127.29000827388019,53.22792557482015],[-127.28996485654048,53.22788682814537],[-127.28993032212848,53.22783117661744],[-127.28985079700429,53.227777699883895],[-127.2896903608671,53.22777832476312],[-127.28938690558218,53.22779731317416],[-127.28923110080356,53.22779620175981],[-127.2890988660386,53.22776794972399],[-127.28900909892349,53.227716815930435],[-127.28897506045813,53.22761633691822],[-127.28898816762835,53.22743074858261],[-127.28899394078945,53.22725083373264],[-127.28901570271928,53.227071874529074],[-127.28901958267338,53.22689142443605],[-127.28901693989582,53.22671272158512],[-127.28905628944361,53.226618167843576],[-127.28913670174221,53.226547263790884],[-127.28934485411509,53.22641893416083],[-127.28955680876474,53.226292248084306],[-127.28976110420341,53.226160606957926],[-127.28995775711502,53.2260245574656],[-127.2901773831251,53.22590338947174],[-127.29042187527756,53.22579763803706],[-127.29065499037247,53.22568809251122],[-127.29076440060494,53.22561462150005],[-127.29082209044837,53.22553724033541],[-127.29091449487896,53.22536758725973],[-127.29098986056417,53.22519308166338],[-127.29110489560401,53.22502710833668],[-127.29115767941468,53.22485060743456],[-127.29120762207424,53.22467301688599],[-127.29128489552158,53.224499610779326],[-127.29139424837317,53.224332022633035],[-127.2915319965311,53.22417252462699],[-127.29166972639628,53.22401246187883],[-127.29182833069632,53.22386002427049],[-127.29193810759666,53.223706433280576],[-127.29197877191196,53.223624745817],[-127.29203076049745,53.22354518496856],[-127.29208773325739,53.223505900563254],[-127.29217795559244,53.22348026503432],[-127.29237126338148,53.22348096354215],[-127.29265962179987,53.22349070124666],[-127.29295063270014,53.22349537133065],[-127.29310664951167,53.22347349963299],[-127.29323871030397,53.22343508084246],[-127.29334120445142,53.223380741008995],[-127.29341344810527,53.22328862350851],[-127.29341902018238,53.22319500130989],[-127.29337049664409,53.22311148953697],[-127.2932757800175,53.22305201326285],[-127.29321825942102,53.2229506707909],[-127.2932054302046,53.22286844587197],[-127.2932309298865,53.22278188535371],[-127.29325663510629,53.22270204588101],[-127.29335392103435,53.22260069972395],[-127.29350729736494,53.22246175430821],[-127.29373164348684,53.22234221298858],[-127.29397806763089,53.22223922950605],[-127.29423898105992,53.222150098654986],[-127.29449799821161,53.222059867371584],[-127.29475605179803,53.22196909023768],[-127.2950150174104,53.22187773780398],[-127.29525663355798,53.22177088665621],[-127.29547212724573,53.22163854781733],[-127.29562530441531,53.22149344310347],[-127.29575161762767,53.22132901770307],[-127.29589312557786,53.22117059354026],[-127.29604220448249,53.22101432750645],[-127.29620838811417,53.220865162282884],[-127.29644058478596,53.22072703612187],[-127.29664707100012,53.22057686466103],[-127.29678359860611,53.22043978427929],[-127.29695006936767,53.22030013498786],[-127.29716293299724,53.220173980165555],[-127.29738915180332,53.22005553159164],[-127.29761152934788,53.21993375399437],[-127.2977977352496,53.219795572682195],[-127.29785858911289,53.21960777403921],[-127.29791555366798,53.219446346444016],[-127.29787816277667,53.21926746737849],[-127.2978211381653,53.21909104437471],[-127.29773423774712,53.21891887485851],[-127.29765947105646,53.21874488711645],[-127.29761457898351,53.21856609004427],[-127.29757448569724,53.218482487460136],[-127.2974756265661,53.21841016894616],[-127.29731984346277,53.2182555614223],[-127.29727486508251,53.21816584467502],[-127.2972741111223,53.218080135054144],[-127.29731162722658,53.21798783902407],[-127.29738724349623,53.21791473114234],[-127.29754296389551,53.217761195932404],[-127.29767591903043,53.217600056900764],[-127.29779938957392,53.217435104091415],[-127.29791059105166,53.217268044375416],[-127.29799820086625,53.21709676067903],[-127.29802542587792,53.2169138121297],[-127.29803098744327,53.216728303906336],[-127.29809526094466,53.2165606373109],[-127.29816600268138,53.21648142365228],[-127.29828167388332,53.2164297316676],[-127.29853250818083,53.21631884570004],[-127.29874906620074,53.21619209121849],[-127.2989199178523,53.216042870345504],[-127.29906322006885,53.21588273664862],[-127.29916880303735,53.21571630185812],[-127.29921402186405,53.21553931416464],[-127.29927427964236,53.215363291086405],[-127.29971945772797,53.21513597501863],[-127.30024453948072,53.21485343809356],[-127.30054130759447,53.214437261205745],[-127.30111710864779,53.214034819740284],[-127.30159359495813,53.21378923252698],[-127.30200676063956,53.213589717086684],[-127.30256416663143,53.213260871262605],[-127.30369224543502,53.21266969411378],[-127.3040825288852,53.212245755193656],[-127.30506443544063,53.21202595726134],[-127.30541635500457,53.211970535485605],[-127.30616025853976,53.211850282709825],[-127.30643456059708,53.21180243669275],[-127.306717172862,53.21175058092201],[-127.30695473272098,53.21166728088651],[-127.30715782420322,53.21156138458944],[-127.3072884495666,53.21147814276547],[-127.30743601501655,53.211366144080635],[-127.30788919359138,53.21121826745343],[-127.30805808503551,53.21106848930693],[-127.30814854825012,53.210899971336744],[-127.30820685191821,53.2107228348444],[-127.3082500657004,53.21054306796969],[-127.30828393701537,53.21036452476147],[-127.30830184045574,53.21018503725284],[-127.30831879857458,53.210005560159445],[-127.30834418802624,53.20982598995684],[-127.30837241521469,53.20964695316083],[-127.30839596110664,53.20946795906152],[-127.30840916792923,53.20928852329795],[-127.30841298096314,53.20910863543761],[-127.30841116782138,53.20892880071683],[-127.308405604411,53.20874901635217],[-127.30839909563319,53.208569233444365],[-127.30838978179197,53.20838949045619],[-127.30837578711174,53.20820979016962],[-127.30841668920489,53.20801604592582],[-127.30842344582781,53.20784059872587],[-127.30841332311022,53.20766478209056],[-127.30841180480168,53.20749447324587],[-127.30843345938693,53.2073155087659],[-127.30842602060761,53.20713573599185],[-127.30839516684746,53.20695678651415],[-127.30839307790306,53.20691983098129],[-127.30847776667596,53.206746893778906],[-127.3085984124527,53.206584200271735],[-127.30877682965206,53.20643935335218],[-127.30896283562083,53.20629779296403],[-127.30914983731088,53.20615789762232],[-127.30933778284388,53.206017991531745],[-127.30952282003736,53.20587531136752],[-127.30974622660364,53.20576022985556],[-127.31002947908144,53.205699949732455],[-127.31031479666925,53.20564580470938],[-127.31059116461094,53.205575514269626],[-127.31085202466218,53.20548858626052],[-127.31108869040415,53.20537783770413],[-127.31129851234353,53.20524832715824],[-127.31141922998383,53.20508843558226],[-127.31147088958481,53.204909693862795],[-127.31162663243526,53.204760055240214],[-127.31187285855569,53.204655357805336],[-127.31213753224168,53.204571181540274],[-127.31240999864198,53.20449589184735],[-127.3126863903602,53.20442671665903],[-127.3129647928525,53.20436143603209],[-127.313249065779,53.20430449840554],[-127.3135404301557,53.20426428997126],[-127.31383280862481,53.204226310702424],[-127.31412406747353,53.20418274028865],[-127.31441744452957,53.20414698962227],[-127.31471528532697,53.204134164802284],[-127.31501231319687,53.20415552107208],[-127.31530607901598,53.20419260075449],[-127.3155971470721,53.20423362717171],[-127.31588477697002,53.20428422036823],[-127.31617149738106,53.2043359435432],[-127.31645644803024,53.20439104739658],[-127.31673962897897,53.20444953194081],[-127.31702013013165,53.20451252787258],[-127.31729072805786,53.204588524258725],[-127.31754229151299,53.20468545771454],[-127.3177710033137,53.204801694444825],[-127.31797302594607,53.20493447136452],[-127.31814826991979,53.20508043686358],[-127.31830868876209,53.205232169890074],[-127.31845798038142,53.2053879529848],[-127.3185859085449,53.20555013227125],[-127.31869058292243,53.2057187288526],[-127.31878872282951,53.20588852759591],[-127.31889152369705,53.206057144839484],[-127.318993412914,53.206226336901636],[-127.31909435786005,53.206395539382044],[-127.31919623370244,53.206564731406225],[-127.31929903811823,53.20673335719657],[-127.31941488218297,53.206899031796674],[-127.31952888691183,53.207065847328415],[-127.31959155891519,53.20724051361886],[-127.31960654604408,53.20742020214677],[-127.31960371088982,53.20760008016968],[-127.31959526529637,53.20778002961881],[-127.3195839816504,53.20795944588873],[-127.31956425179114,53.20813895619586],[-127.31954453676639,53.208318466315426],[-127.31953418289248,53.20849787217122],[-127.31954915260394,53.20867699601651],[-127.3195884834613,53.20885528379768],[-127.31962781493002,53.20903358051021],[-127.31964937360496,53.209213186722494],[-127.31965964829722,53.209392362778416],[-127.31966525991993,53.20957215551189],[-127.31967181647174,53.20975192874084],[-127.31968492950419,53.20993163790149],[-127.31971020720573,53.2101106468074],[-127.3197542185925,53.2102883264939],[-127.31982532788116,53.210462898457536],[-127.3199300196415,53.210631502461744],[-127.32006168741599,53.210793073521614],[-127.32020823454815,53.21095000537438],[-127.32035846591046,53.211105210666894],[-127.32050687297894,53.211261556660936],[-127.32065805174233,53.21141675101544],[-127.32081941619049,53.2115679051938],[-127.32098451288856,53.211717905950096],[-127.32114682486103,53.2118690491222],[-127.32129892098943,53.21202367663234],[-127.32143152617908,53.21218467990508],[-127.32153622832708,53.212353273373864],[-127.32161108196104,53.212527246639624],[-127.32166725175327,53.21270366934854],[-127.3217159552046,53.21288129585416],[-127.32176839262509,53.21305832488223],[-127.32183858465365,53.21323290575437],[-127.3219377172585,53.21340324626975],[-127.32210918898386,53.21354700674364],[-127.32236541055657,53.21364108132064],[-127.3226388469248,53.2137159046822],[-127.32290953123542,53.213792443468826],[-127.32318565034055,53.21386276234732],[-127.32345451353744,53.21394099660094],[-127.32368234400798,53.21405667612879],[-127.32384932081105,53.21420664295337],[-127.32396239739953,53.21437234378715],[-127.32401390080777,53.21454938224054],[-127.32401299214986,53.21472980312862],[-127.32398575806951,53.214908832766575],[-127.32394725063794,53.21508687671528],[-127.32390969056041,53.21526546584771],[-127.32389558468768,53.21544434875419],[-127.32389558839277,53.215624203558605],[-127.32388056973011,53.21580366138692],[-127.3238965231414,53.21598332902884],[-127.32391338958685,53.216162430654734],[-127.32392839824631,53.21634211777884],[-127.3239387102058,53.216521848385526],[-127.32393871409444,53.216701703086564],[-127.32392369523207,53.21688116081721],[-127.32390587028222,53.21706064987189],[-127.3238992840738,53.21724001336825],[-127.32391429277523,53.21741969142958],[-127.32394335919771,53.217598656646075],[-127.32397241086092,53.21777762200599],[-127.32400521173638,53.21795598966454],[-127.32404176666415,53.218134871162164],[-127.32408485925727,53.21831255903943],[-127.3241345069984,53.21848960889344],[-127.32419257095547,53.218666008889414],[-127.3242618546284,53.21884116293104],[-127.32437769881595,53.219005155834985],[-127.32457800453794,53.21914018178209],[-127.32476993101385,53.21927698637294],[-127.32489513940548,53.21944030934356],[-127.32497001941026,53.21961427983013],[-127.32500284333562,53.21979320264158],[-127.32501973368508,53.21997286831124],[-127.32503099656219,53.220152587906966],[-127.32504413560228,53.220332295476624],[-127.32509186381697,53.220508245708274],[-127.32523383653295,53.22066746337727],[-127.32538785237723,53.220821499209976],[-127.32554555313422,53.220973808311854],[-127.32567728987048,53.22113538103462],[-127.32578203111947,53.22130396994776],[-127.32586717510908,53.221476148613945],[-127.3259598027554,53.22164711397291],[-127.32607852006635,53.221812749347734],[-127.32626394068207,53.221950744856905],[-127.32651932959301,53.22204649638033],[-127.32678740862482,53.22212753804152],[-127.32705270254709,53.22220973084466],[-127.32729073880007,53.22232024227684],[-127.32749927251015,53.22244733624324],[-127.32763752648563,53.22260714848745],[-127.32774135148327,53.22277631069015],[-127.32781905273033,53.22294968290289],[-127.32787806863983,53.22312607025233],[-127.32793240275386,53.223302510008914],[-127.3280026375311,53.22347709523849],[-127.3280607244806,53.22365349287151],[-127.32811881191488,53.223829890459506],[-127.3281927849445,53.224004424698705],[-127.32829380916725,53.22417361773624],[-127.32841254026457,53.2243386947814],[-127.32854426569227,53.22449969963441],[-127.32868810529847,53.22465776267836],[-127.32884306128842,53.22481122766442],[-127.32901842520025,53.2249571755385],[-127.32920488763034,53.22509795171443],[-127.32939597862598,53.22523644354153],[-127.32960458577034,53.22536520937259],[-127.32987264151035,53.22544512391903],[-127.33016821503541,53.225474859747024],[-127.33046735840817,53.22546870585293],[-127.33076188790456,53.22543570061333],[-127.33105768023027,53.22541277445471],[-127.33132491437145,53.22549605665278],[-127.33156383744333,53.22560374380539],[-127.33178167442134,53.225727364167035],[-127.33201053922733,53.22584357210719],[-127.33224762807566,53.225952963834395],[-127.33240912226482,53.22610466545431],[-127.3325362386435,53.226267394113236],[-127.33269121450549,53.22642085393838],[-127.33290997171139,53.22654389715093],[-127.33314892255275,53.22665214561097],[-127.3334224093047,53.2267252678144],[-127.33368958570584,53.226806304301206],[-127.33394133652789,53.22690375739251],[-127.33418669182703,53.22700689369476],[-127.3344448269289,53.227098671086864],[-127.33473431916252,53.22714359615776],[-127.33503456330601,53.227142456512524],[-127.33532916913695,53.227111124509285],[-127.3356046877196,53.22704023142528],[-127.33585009164796,53.226937171833576],[-127.33609165129603,53.226830802325765],[-127.33632551308727,53.226718907314556],[-127.33656321189936,53.2266092186463],[-127.33679803460458,53.226497876590635],[-127.33703764500184,53.22638984173317],[-127.33728886201953,53.2262923162861],[-127.33755653089035,53.22621085727854],[-127.3378330234286,53.22614162424417],[-127.33811154796443,53.22607684985983],[-127.33839294913517,53.22601428345436],[-127.33867833229293,53.22595895953349],[-127.3389688052329,53.225916459400324],[-127.3392542045821,53.22586168969001],[-127.33954365686817,53.22581639377668],[-127.33982903718375,53.22576106708026],[-127.34012573657695,53.225736978494126],[-127.34042022515642,53.22570283806707],[-127.34071804988635,53.22568490283822],[-127.34101469506781,53.225659136266906],[-127.34131403616749,53.22565966717437],[-127.34161358799183,53.22566636251586],[-127.3419125026483,53.22565345895544],[-127.34219793198031,53.225599802311244],[-127.34246465650487,53.22551834272848],[-127.34273038097257,53.22543520853152],[-127.34301279065943,53.225375425480195],[-127.34331178875917,53.22536474957779],[-127.34360901584829,53.22538715408401],[-127.3439053869352,53.225412373442545],[-127.34420184435079,53.22543982324682],[-127.34444910986674,53.22554347271777],[-127.3447139386853,53.22546202951876],[-127.34497771136688,53.22537668020593],[-127.34522506306085,53.225276384543264],[-127.34546846829424,53.22517053031926],[-127.34574695675317,53.2251051734047],[-127.34603639718547,53.22505987058331],[-127.34633298404778,53.22503297070837],[-127.34663085494037,53.22501669637782],[-127.34692988557195,53.22500714046872],[-127.3472300247993,53.22500316506211],[-127.34752936161618,53.225003689238505],[-127.34782805344143,53.22501317554423],[-127.34812613676597,53.225032762064814],[-127.34842331032243,53.22505346978759],[-127.34871978917766,53.22508203759006],[-127.34901915931302,53.22508311343274],[-127.34931483168955,53.2250567722859],[-127.34960827031188,53.225019259142314],[-127.34989667093882,53.22497115278384],[-127.35017515123687,53.2249057854608],[-127.35043592675542,53.22481541092451],[-127.35073427795876,53.224814252891974],[-127.35102809346715,53.22484732753391],[-127.3513261590542,53.22486634145131],[-127.35162335106237,53.22488760571405],[-127.35191377383616,53.22493191355048],[-127.3522025007149,53.22498185181989],[-127.35249926233207,53.22496053730373],[-127.3527767394082,53.22489349890205],[-127.35305024850098,53.224819781731625],[-127.3533316550527,53.22475829998623],[-127.35361904743215,53.224707954875235],[-127.35391249761044,53.22467098666934],[-127.35420499870924,53.22463346380697],[-127.35449440875203,53.22458757576682],[-127.35478278306309,53.224538901913974],[-127.3550671681269,53.224482420018646],[-127.35534556846416,53.224415364951504],[-127.35561812169242,53.22434109687943],[-127.35588867491838,53.2242634803763],[-127.35615927838764,53.22418699219845],[-127.35643474267701,53.224116041641565],[-127.35671710604139,53.224055661346796],[-127.35701271262987,53.22402762523432],[-127.35731044656421,53.22400740799739],[-127.3576019229134,53.223967656215805],[-127.35789125273483,53.2239195195554],[-127.35817362771333,53.22385913561345],[-127.35842960722344,53.22376599222163],[-127.35866255262593,53.223656868508016],[-127.35892626772359,53.22357092352351],[-127.35918707047215,53.22348221438962],[-127.35943241124382,53.223379105626044],[-127.35969129981197,53.223289296731195],[-127.35995501052489,53.223203349441555],[-127.36021973771211,53.223119631023856],[-127.3604863786712,53.22303756640653],[-127.36075110376787,53.222953846794915],[-127.36100800284184,53.22286069607145],[-127.36125814415982,53.222761454761766],[-127.36151802448522,53.22267330674403],[-127.3617846751155,53.22259123901483],[-127.36205423958197,53.22251250786428],[-127.36232675345829,53.2224382155059],[-127.3626080584395,53.2223744713538],[-127.3628984976807,53.22233191234215],[-127.36319589171576,53.222301598907876],[-127.36348438494831,53.22225738445215],[-127.3637480271552,53.222169743964656],[-127.36395405580419,53.22204131366349],[-127.36412932857154,53.22189026073744],[-127.36424244465223,53.221732078919146],[-127.36417304468283,53.221558624294985],[-127.3640633410178,53.22138619820427],[-127.36395471323077,53.221218241913135],[-127.3638284032862,53.2210549712556],[-127.36366592139996,53.22090444290013],[-127.36347096532948,53.22076493779299],[-127.36332154403044,53.220612017588714],[-127.36324089504755,53.22043869176402],[-127.36317977233055,53.220260103220326],[-127.36308613908297,53.2200914178532],[-127.36289592457864,53.21995353365296],[-127.36270102945699,53.21981570296383],[-127.3625468631455,53.21966115098833],[-127.36237881828457,53.219512370161134],[-127.362167352036,53.2193842494569],[-127.3619577298821,53.21925555138778],[-127.36180921076452,53.21910094253573],[-127.36172948331641,53.21892704925599],[-127.3617105255971,53.21874629013231],[-127.36173951416698,53.21856835082638],[-127.36178911969691,53.218390165652714],[-127.36182373471298,53.21821216164044],[-127.36182071256715,53.21803121936579],[-127.36186758360465,53.21785531562676],[-127.3619520573327,53.217681776710165],[-127.36199049425974,53.21750596083145],[-127.36206844884491,53.2173341820425],[-127.3621199964572,53.217157659604325],[-127.36214612490056,53.21697862334822],[-127.36216473277617,53.21679911769699],[-127.36217112366955,53.216619196632124],[-127.36216345476043,53.21643942817712],[-127.36215673150106,53.216259657801245],[-127.3621612646706,53.21608031384054],[-127.36216484932713,53.21590041599424],[-127.36214780304864,53.215720764213145],[-127.36211391272276,53.215542417614145],[-127.36206598177036,53.215364797126306],[-127.3619900113906,53.21519086056521],[-127.36187026281979,53.215026391612156],[-127.36171148996218,53.214873576670136],[-127.3615333035204,53.214729393340996],[-127.36135140622623,53.21458692875272],[-127.36116672228832,53.214445051699386],[-127.36097559131076,53.21430661908739],[-127.36077985534074,53.21417103600145],[-127.36058410245661,53.21403488802134],[-127.36039204787573,53.21389702088981],[-127.36020830069533,53.2137551405739],[-127.36003657234296,53.21360751020925],[-127.35989540178561,53.21344721159399],[-127.359884994505,53.213269715377905],[-127.35995535494727,53.213094663014694],[-127.36007955344937,53.212931310087534],[-127.36024546116708,53.212781489950174],[-127.36044184313006,53.212645887207806],[-127.36067747377498,53.21253505091814],[-127.36094602781087,53.2124557679843],[-127.36122142581819,53.21238537042361],[-127.361493713704,53.2123060433312],[-127.3617854559754,53.21230605296684],[-127.36207926390298,53.21228306184353],[-127.36236345168999,53.21222376632668],[-127.36263787952241,53.2121522559981],[-127.3628966021236,53.212059634681694],[-127.36308916741534,53.21192239487528],[-127.3631360443179,53.21174704566132],[-127.36311336916361,53.211567449375245],[-127.36309165759035,53.21138840675719],[-127.36306337493087,53.2112094397025],[-127.3630126243684,53.21103185162897],[-127.36294133583753,53.21085730566296],[-127.36285699244739,53.210685141975226],[-127.36276982953403,53.21051301960851],[-127.36268361220478,53.21034087733181],[-127.36260019814773,53.21016814694433],[-127.3625644532495,53.209990386070594],[-127.36255955350988,53.2098094735447],[-127.36247808849453,53.20963896178537],[-127.36236201394095,53.20947164482923],[-127.36234132713955,53.20929539606838],[-127.36237775627163,53.209116240518],[-127.36239244690164,53.20893174094168],[-127.3625514251861,53.20880048171623],[-127.36284430598411,53.20874949352457],[-127.36313709564763,53.208695699718334],[-127.3632872784579,53.20855333484138],[-127.36341048771546,53.20838943329956],[-127.363603853159,53.20824825645946],[-127.36365746026804,53.20807843207112],[-127.36364317679153,53.20789706257075],[-127.36363082589463,53.20771791197175],[-127.3636119014872,53.2075382811952],[-127.3635752062577,53.20735996651671],[-127.36351790572776,53.20718301846896],[-127.36341213685638,53.207015027953375],[-127.36323210547037,53.20687142392271],[-127.36310037512358,53.20671269644516],[-127.3630515049574,53.206535086389074],[-127.36303260145002,53.206356011008054],[-127.36302961108758,53.20617618778272],[-127.36304633532855,53.205996702526626],[-127.36308843540202,53.20581861068306],[-127.36315971815583,53.20564410062234],[-127.36326684405505,53.20547590159117],[-127.36335793281106,53.2053050810336],[-127.363400978844,53.205127533913675],[-127.36341677105216,53.2049480592062],[-127.36342972509651,53.204768061328636],[-127.36344550204791,53.20458858675539],[-127.36345941880514,53.20440913356727],[-127.36347426547046,53.204229669657934],[-127.36349098705453,53.2040501841517],[-127.36351522655913,53.2038711679162],[-127.36354321620523,53.20369211746282],[-127.36356745528353,53.20351310118219],[-127.36358510619526,53.20333360489051],[-127.36360277195718,53.2031541084062],[-127.36362324256466,53.20297457961865],[-127.36364183800936,53.20279507239041],[-127.36365105839072,53.20261567304361],[-127.36363681611336,53.202435987914875],[-127.36357394793117,53.20226021519995],[-127.36344492725357,53.20209809492849],[-127.36325199077594,53.20196080698883],[-127.36300853085311,53.201856032123764],[-127.36279263661447,53.20173356617474],[-127.36263476520256,53.201577944573025],[-127.36255808564515,53.201410174230894],[-127.36261609434082,53.20123133435168],[-127.36261028334069,53.201050987277185],[-127.36252696327651,53.20088106105143],[-127.36231741064846,53.20075124200316],[-127.36207761945184,53.20064361713681],[-127.36184788165194,53.20052804111092],[-127.3616062901625,53.20042267716725],[-127.36135464823654,53.2003252812756],[-127.36114055148657,53.200199994729616],[-127.36088184882439,53.200000141106514],[-127.36082496178668,53.19995148887934],[-127.36067547942092,53.19979408295886],[-127.36055949321634,53.19962844808857],[-127.36049009070967,53.19945331348359],[-127.36046836329918,53.1992737048283],[-127.36048507780612,53.19909366366401],[-127.3605375036703,53.19891600934038],[-127.36062860432035,53.19874519010658],[-127.36074417009358,53.198577460488],[-127.36084867385637,53.1983863165651],[-127.36088210440231,53.198230171300004],[-127.36087253376952,53.198049311317455],[-127.3608255756173,53.19787223358519],[-127.36075521213284,53.197696554219156],[-127.36066715436984,53.197524430825865],[-127.36056606431144,53.19735526298074],[-127.36045751212613,53.19718730132464],[-127.36034246091877,53.197021099553446],[-127.36021903860694,53.19685722599073],[-127.36008447728443,53.19669685090506],[-127.35991185589788,53.19654867425153],[-127.3596839276402,53.196429702605016],[-127.35948206963596,53.19630539319287],[-127.35939780563325,53.19613435483191],[-127.35934883708312,53.19595281715565],[-127.3593252747787,53.19577379385919],[-127.35931105318039,53.19559410754947],[-127.35924817714285,53.19541721171978],[-127.3592415084714,53.1952391151025],[-127.35928075838616,53.19505993576077],[-127.35926373246679,53.1948802725954],[-127.35918596890563,53.19470691823178],[-127.35903379971268,53.194552902665606],[-127.35887323932766,53.194400103750205],[-127.35874518730759,53.19423740226981],[-127.35864131151978,53.19406882939035],[-127.35854953884889,53.193897311656386],[-127.35845310579073,53.19372640310103],[-127.3583362361085,53.193561896522],[-127.35818776633745,53.19340559626117],[-127.35802350018997,53.193253959261554],[-127.3578610919461,53.1931017449266],[-127.35771916086954,53.19294480434677],[-127.3576237531419,53.19277668928862],[-127.35757113703613,53.19259799843652],[-127.3575232183268,53.19241981848948],[-127.35746969115637,53.192241693820584],[-127.35742835941423,53.19206399413273],[-127.35745074348489,53.19188500842629],[-127.35740778930105,53.191715171407246],[-127.357217613069,53.19157391547111],[-127.35694617194433,53.19150082548232],[-127.35666748218303,53.19143509723905],[-127.35638699374913,53.19137219489539],[-127.35610559450525,53.19130986709897],[-127.35582506873183,53.19124527850405],[-127.35554907920984,53.191176163954125],[-127.35527932045437,53.19109688322735],[-127.35501957493489,53.19100796683631],[-127.35479087127125,53.190892921327595],[-127.35462387681743,53.19074299622901],[-127.3544624557551,53.190591877611],[-127.35433259393146,53.19043032160036],[-127.35423804525487,53.1902593880327],[-127.35416591599959,53.19008540107794],[-127.35412363774611,53.189907155223004],[-127.35405895329313,53.18973139770394],[-127.35399802126778,53.18955616201857],[-127.35398851788153,53.189376420812145],[-127.3539733911153,53.18919673490796],[-127.353972330137,53.189016897156485],[-127.35396750513516,53.188837093451916],[-127.35395987640752,53.188657330746054],[-127.35395224745785,53.18847755906073],[-127.35395118658747,53.188297721239124],[-127.35395387720138,53.18811839632606],[-127.35395843905295,53.187938485227],[-127.35396298615794,53.187758583243145],[-127.35396662134464,53.18757924747816],[-127.35395336962567,53.187399539969505],[-127.35393449539482,53.18721990568355],[-127.35391936962907,53.187040219562725],[-127.3539248614447,53.18686030669388],[-127.35400846571304,53.18668957714516],[-127.35413259187868,53.18652567252089],[-127.35424820367231,53.186359623921255],[-127.35436097480651,53.18619248707849],[-127.3543683747463,53.18601367285282],[-127.35425434303885,53.185848564754316],[-127.35408924463204,53.185698617060915],[-127.35391672496343,53.185551550972406],[-127.35384551660218,53.18537698818075],[-127.35381541622618,53.18519803783975],[-127.35378345996466,53.18501967346908],[-127.35378332921401,53.18483981572123],[-127.35383680764974,53.18457755097428],[-127.35383552184133,53.18444925355865],[-127.3537970191269,53.18430065513606],[-127.35387351435023,53.184113206761566],[-127.3538370986274,53.18394217264775],[-127.35383235904969,53.18373547329271],[-127.35378969664059,53.18357404005438],[-127.35377118296377,53.18340559822429],[-127.35383964491227,53.18323056810192],[-127.3538239450462,53.183003823318394],[-127.35386558494216,53.18286944106307],[-127.35390963116322,53.18269356040821],[-127.35383717577162,53.18250893529119],[-127.35382960236207,53.18233084775296],[-127.35389717141994,53.1821575040863],[-127.35399479677032,53.18198605789],[-127.35410281067172,53.18181728979712],[-127.35422404688117,53.18165117633726],[-127.35438614044448,53.18150252492299],[-127.35462630613601,53.18139164513379],[-127.3548092447251,53.18125003400937],[-127.35491637793177,53.181082960496326],[-127.35494719242848,53.18090387779354],[-127.35495547951697,53.180723367455926],[-127.35495346979056,53.180543530732926],[-127.35494958636866,53.180363724396614],[-127.35495225416737,53.180183834117074],[-127.35497839039434,53.18000480484002],[-127.35502144584888,53.179827258339536],[-127.35507483305538,53.179650149385495],[-127.35513669909787,53.17947462872638],[-127.35520324201205,53.179299054486975],[-127.35525288018955,53.17912199725694],[-127.35529404157393,53.178943907447135],[-127.35534930354677,53.17876734158026],[-127.35539986995417,53.17859027359861],[-127.35543537258036,53.17841112785389],[-127.35555857536683,53.17824835182245],[-127.35567226725222,53.17808176692777],[-127.35575955901687,53.17790987223657],[-127.35582329355793,53.17773432959703],[-127.35586068563903,53.17755572675766],[-127.35590748263392,53.177378136783986],[-127.3559702713356,53.17720260482937],[-127.35602365154728,53.177025504156184],[-127.35612320208868,53.17685627463717],[-127.35618598912133,53.17668074251829],[-127.35625066445176,53.17650518871419],[-127.35632472926169,53.17633064789197],[-127.35641483608542,53.176159285016105],[-127.35650683379583,53.17598845620018],[-127.35658375074794,53.17581500306502],[-127.3566324165732,53.175637391167825],[-127.35666418204246,53.17545885227927],[-127.3566950000384,53.17527976840218],[-127.35674555636112,53.17510269054829],[-127.35685030785072,53.17492051817042],[-127.35698093912308,53.17475653444362],[-127.35718400811407,53.17462982055548],[-127.3574715045368,53.174593462590686],[-127.35774651686121,53.17466483344611],[-127.35801159119066,53.1747475146713],[-127.35826945947817,53.174839251726176],[-127.35851819370966,53.17493837243577],[-127.35876423386574,53.175040885341964],[-127.35902208744037,53.175132056169964],[-127.35926263757173,53.17523911346348],[-127.35948761107338,53.175356990326335],[-127.35963045196203,53.1755144750513],[-127.35974358625772,53.17568126554194],[-127.35981851423034,53.17585466248254],[-127.35997034888894,53.17600027273942],[-127.36025338208319,53.176058098571275],[-127.36053554339689,53.17611816598306],[-127.36081326278035,53.176185572149315],[-127.36109895429432,53.17623831825676],[-127.36139253060192,53.17627416405415],[-127.36168858620884,53.1762998952335],[-127.36197604523839,53.176349257121736],[-127.3622465616475,53.17642570760082],[-127.36250894606165,53.17651178061374],[-127.36277950054894,53.17658935005179],[-127.36306872839451,53.17663532716401],[-127.36335086146077,53.176694267665894],[-127.36362230906703,53.176770148503],[-127.36389643439331,53.17684207130502],[-127.36415250838209,53.176935492821016],[-127.36439490126608,53.17704083324081],[-127.36461167263442,53.17716496281407],[-127.36478785574596,53.17730973060502],[-127.36498345227406,53.17744587433767],[-127.36524747387837,53.17749493378667],[-127.36554951457084,53.177472965459096],[-127.36583056988961,53.17741088790984],[-127.36611260821152,53.17735048372117],[-127.36639366218022,53.1772884137929],[-127.36667775039459,53.17723302279332],[-127.36696880516006,53.17719044204789],[-127.36726195036523,53.17715456003614],[-127.36755831483802,53.17713153148567],[-127.3678571831333,53.17712751449063],[-127.3681524461221,53.17715716534934],[-127.36843462597388,53.17721721390325],[-127.36870108045716,53.17731219111959],[-127.3689963428987,53.17737096652526],[-127.36925883933445,53.17743068489429],[-127.36953117716493,53.177504856656974],[-127.36977631448693,53.177607357461426],[-127.37002694782154,53.17770587655895],[-127.37029570411424,53.177785126244686],[-127.37058700359799,53.177836664178194],[-127.37086271321668,53.17789903207435],[-127.37115541917937,53.17793654035835],[-127.37145316338093,53.17795550415163],[-127.37175163770749,53.1779682999225],[-127.37205031490667,53.1779586716233],[-127.37234786284803,53.17794289683796],[-127.37262796420848,53.17790939394267],[-127.37294490464072,53.17791356365454],[-127.37324385094712,53.17791178238599],[-127.37354260013313,53.17790439068086],[-127.37384111110137,53.17791830136468],[-127.3741402753834,53.17792322994464],[-127.37443860474895,53.17793153822874],[-127.37474443128932,53.177968885381766],[-127.37502192862026,53.177999281301844],[-127.37529875732841,53.178067228962966],[-127.3755827694349,53.17812499815857],[-127.37586227250343,53.178188431044326],[-127.37614357715,53.17824959217273],[-127.37642754049465,53.1783062482943],[-127.37671151929922,53.17836289459761],[-127.37699548416454,53.1784195493539],[-127.37727320840011,53.178485796654066],[-127.37753474286374,53.178572958302496],[-127.37780981148367,53.17864371766074],[-127.37809368834827,53.17869756485159],[-127.37839182309807,53.17869969771904],[-127.37868495096481,53.178663231852546],[-127.37897600348094,53.17862062162969],[-127.3792630701035,53.178570768716305],[-127.37954807982575,53.17851534501594],[-127.37983015744365,53.17845602819652],[-127.38012022639856,53.178412305985795],[-127.38041777451932,53.17839651092813],[-127.38071559921123,53.17841769178157],[-127.38115133747615,53.17847200200925],[-127.38145006765271,53.1784634700071],[-127.38174026316152,53.17842366892558],[-127.38202716069327,53.17836877299504],[-127.3823216116835,53.178344044464865],[-127.38262094798633,53.178354552674215],[-127.38291539180275,53.17838697351532],[-127.38318856115527,53.178457186840475],[-127.38344199401195,53.178553959832676],[-127.38369355729698,53.178651309957345],[-127.38395150502973,53.1787429908844],[-127.3842265303673,53.17881205058809],[-127.38452183475172,53.17884221621156],[-127.38482037412525,53.17885665481934],[-127.38510676816762,53.178900935226565],[-127.38527280286624,53.17904803321939],[-127.38534412991896,53.179222568738275],[-127.38548431357475,53.17943889046594],[-127.38553523378681,53.17956268164594],[-127.38564287732979,53.17973006840079],[-127.3857876860748,53.17988694365315],[-127.3859686086813,53.18003050462278],[-127.38614580276742,53.18017466478403],[-127.38631841601364,53.18032224908642],[-127.38652513760987,53.18045205993951],[-127.38674384684812,53.18057556225372],[-127.3869780752157,53.180686564730465],[-127.38723882746625,53.180777640991884],[-127.38749133898405,53.180874416260885],[-127.3877034866913,53.1809979937143],[-127.38789368039727,53.1811380813328],[-127.38807094095195,53.18128392326611],[-127.38822782745281,53.18143729218777],[-127.38833643093061,53.18160466525121],[-127.38841527140382,53.1817791197544],[-127.3885572235728,53.18193433975352],[-127.38872337394207,53.182084228614734],[-127.38887840994893,53.182238174190225],[-127.38904363340362,53.18238808244061],[-127.38923558298808,53.182524220735885],[-127.38952920847247,53.18255944104859],[-127.38982634327387,53.18258733105114],[-127.39010758692746,53.18264509834938],[-127.39034270975772,53.18275439839835],[-127.3905633346872,53.18287843606758],[-127.39077377490318,53.1830065195364],[-127.39097408517456,53.18314031567183],[-127.39119462202801,53.18326155619425],[-127.391411488877,53.183385636458056],[-127.39163477652875,53.183505158467504],[-127.39185071635092,53.18362924883425],[-127.39204182474325,53.18376763375422],[-127.39222738928434,53.18390888953409],[-127.39242401229352,53.184043856171485],[-127.39262247712895,53.18417823604476],[-127.39282005052264,53.18431374667761],[-127.39305704190029,53.184421898851696],[-127.39331688207585,53.18451240791563],[-127.39357668675947,53.184601805197836],[-127.39376305705107,53.184738566718394],[-127.39389307054375,53.18490064454054],[-127.39403048604264,53.185059273280146],[-127.39426477665775,53.18517081667839],[-127.39452278674436,53.1852624652929],[-127.39479611192667,53.185335447519265],[-127.3950694530455,53.18540842893536],[-127.39528168285914,53.18553312163823],[-127.39544412275325,53.18568304493962],[-127.39558156856758,53.18584279215629],[-127.39575607148711,53.185988655254384],[-127.39596561661212,53.18611729601752],[-127.39617057748124,53.186248796447934],[-127.39645983365779,53.18629245142664],[-127.39675873055661,53.18628780608552],[-127.39705825742301,53.186273622951006],[-127.39734848815617,53.186233219051346],[-127.39763148487718,53.186172728946524],[-127.39791555846806,53.186116707856236],[-127.39820775424127,53.186079084621696],[-127.39850601992069,53.18605539204381],[-127.39880381848128,53.18604570729018],[-127.39910317292974,53.18605449784856],[-127.39940174978366,53.1860683440395],[-127.39972883233602,53.18606559933904],[-127.39996715307481,53.18609976233962],[-127.40000025955808,53.1861088916374],[-127.40026899572275,53.18618415683243],[-127.40053144010096,53.18626734005834],[-127.40081014521758,53.186332400716616],[-127.40110465848174,53.186364776191944],[-127.40140381513379,53.186367960285814],[-127.40170012917316,53.18634148573662],[-127.40198215707069,53.18628043185753],[-127.40220613439078,53.18616459917213],[-127.40237557353066,53.186015793713445],[-127.40255729781668,53.18587020431039],[-127.4027659249706,53.18574391102048],[-127.40302942556899,53.185661226693085],[-127.40330637899173,53.1855884678059],[-127.40357936007013,53.1855090317032],[-127.40384655010737,53.18542461639471],[-127.4040658248131,53.185308835769064],[-127.40424386623665,53.185165528492576],[-127.40440750448082,53.18501175045281],[-127.40458071679862,53.18486401746104],[-127.40477207474396,53.18472615440614],[-127.4049681649995,53.18458991130223],[-127.40515664605502,53.18445040527873],[-127.40533748013696,53.1843064982836],[-127.40548222081706,53.184148460426],[-127.40557307475221,53.183977049881996],[-127.40552876383768,53.1837999551012],[-127.40546384176035,53.18362366969309],[-127.40537750583893,53.18345156497438],[-127.40512859768049,53.183182766860625],[-127.40510392300877,53.18300432724078],[-127.40515144513078,53.18282614260521],[-127.40511932992665,53.18264946767112],[-127.40498089549737,53.182489186850624],[-127.40480364600359,53.18234561065922],[-127.40463188956709,53.18219804244075],[-127.4045474524306,53.18202647035754],[-127.40450686249429,53.18184877512675],[-127.40451870515331,53.181668781568106],[-127.40455684312829,53.181490708355284],[-127.40462885836978,53.181316159885284],[-127.4047442764918,53.18115062613571],[-127.40484458636473,53.18098134487428],[-127.40489964422949,53.18080475612421],[-127.40499522300306,53.180634410207794],[-127.40509363792141,53.180464586358326],[-127.40521664064468,53.18030175906486],[-127.40537845699592,53.18015024185133],[-127.40559942528574,53.18002995514355],[-127.40588145770401,53.17997001176075],[-127.40616557195023,53.17991677559578],[-127.40629066251635,53.179760081148395],[-127.40629218284687,53.179580209700504],[-127.40630307251845,53.17940021799693],[-127.40638261369706,53.17922726415087],[-127.4065368885663,53.179074705163316],[-127.4067101063902,53.17892808874925],[-127.40689189358199,53.17878529685875],[-127.40707557540514,53.178643593795286],[-127.40724403785835,53.17849479180974],[-127.40742960990387,53.17835363046914],[-127.4076525113917,53.17823555787618],[-127.40790419062972,53.17813731367331],[-127.40816070998389,53.17804349380137],[-127.4083672996142,53.17791440767105],[-127.40851015175511,53.17775694345613],[-127.40859346200895,53.177584498815044],[-127.40868335982465,53.17741309633073],[-127.40875722874578,53.17723908741378],[-127.40882450857085,53.17706402724934],[-127.4088691904333,53.176885883040526],[-127.40890732078222,53.1767078077858],[-127.40895202042014,53.176530219114966],[-127.40900046727091,53.176352585813916],[-127.40906963726663,53.1761780676926],[-127.40916988455858,53.17600822688486],[-127.40929096255768,53.17584429691865],[-127.40941579066264,53.17568087798693],[-127.40950662547735,53.17550946345856],[-127.40957482913066,53.17533440060031],[-127.40960824475769,53.17515582522258],[-127.40960319995445,53.17497602230827],[-127.40958036611994,53.17479699595191],[-127.40953321147116,53.17461937973162],[-127.40946179242445,53.17444485835438],[-127.40935034273971,53.17427864877178],[-127.40919062199018,53.174125905168594],[-127.40901243040248,53.17398179025849],[-127.40882776392122,53.17383998439344],[-127.4086329876878,53.17370391056277],[-127.4084317404204,53.17357071044921],[-127.40822682164271,53.173439794897554],[-127.40802184807676,53.173307194244735],[-127.40788574965244,53.17324493772185],[-127.40741101621651,53.172891429686544],[-127.40678469910308,53.172432133103186],[-127.40637237234756,53.17195349118976],[-127.40605862471763,53.17173421551354],[-127.40570787457939,53.171557396940976],[-127.40563287557947,53.17155661098311],[-127.4055826324021,53.1714826821554],[-127.40542024829753,53.171333891774864],[-127.40513554401545,53.171170299639684],[-127.40490579733849,53.17113772240128],[-127.40463859847426,53.17110615387365],[-127.40452126658391,53.17107225104415],[-127.40441284144867,53.17079842196012],[-127.40434052413381,53.17062446393866],[-127.40424210441493,53.170454177324416],[-127.40413719497786,53.17028620882404],[-127.4040127371298,53.17012239869885],[-127.4038521626637,53.169971334528135],[-127.40366662043365,53.16983009589155],[-127.4034607902594,53.1696991830207],[-127.40323388805491,53.169582531741376],[-127.4029923330789,53.16947613025883],[-127.40275172385236,53.169369726050085],[-127.40250926418896,53.16926445493324],[-127.40226500306171,53.16916089007165],[-127.40200280789567,53.16905361943825],[-127.40182866849943,53.168917281211804],[-127.40179192025911,53.16874122397882],[-127.40186394732733,53.16856779633099],[-127.40199823907855,53.16840651381779],[-127.40216762656796,53.16825827178695],[-127.40238848607673,53.16813630554585],[-127.40264993012296,53.16805140311183],[-127.40294396681817,53.16801710633084],[-127.40324267466153,53.16801020405202],[-127.40354127440138,53.16800049627744],[-127.40383732833035,53.1679700910213],[-127.40406215163192,53.16785480722096],[-127.4042182483947,53.167701672480526],[-127.40433172012771,53.16753503099022],[-127.40445279262688,53.167371105213185],[-127.40456154968861,53.16720340773471],[-127.4046476762791,53.16703148723084],[-127.40471119168342,53.16685591727983],[-127.40474742369399,53.16667730919093],[-127.40477241178456,53.16649827867685],[-127.40481053502413,53.166320203909734],[-127.40488910980417,53.16614669629094],[-127.40499407813306,53.165977922592695],[-127.40510663176234,53.16581185579993],[-127.40522578581943,53.165646831137856],[-127.40535627543085,53.165485033605535],[-127.4054934025093,53.16532539832985],[-127.40561160954596,53.165160384445926],[-127.40571469895809,53.16499162330089],[-127.40582722868389,53.16482500012557],[-127.40593127930471,53.16465679211709],[-127.40597974369844,53.16447971450796],[-127.40597935432989,53.16429874363765],[-127.40582717988737,53.164146461448425],[-127.40569351235195,53.163986679742145],[-127.40564265832089,53.163809669985],[-127.40572782950684,53.1636377595875],[-127.40584321011819,53.163472222992276],[-127.40596423140627,53.16330773091334],[-127.40606355002339,53.16313845818549],[-127.40606033924377,53.16295695590137],[-127.40607677108555,53.16277466443493],[-127.40607590221252,53.162607702357015],[-127.40613944226835,53.16243325139269],[-127.40626427673617,53.1622703989773],[-127.40640895707553,53.162112913696426],[-127.40656120341586,53.16195757954316],[-127.40671821694204,53.1618049855799],[-127.40689516576194,53.161660007736245],[-127.40708259053619,53.1615199433766],[-127.40726999908523,53.16137987888759],[-127.40743553773244,53.16122998854308],[-127.4075925603936,53.16107739318106],[-127.40774481744275,53.16092262198732],[-127.40788284979676,53.16076297249471],[-127.4080057622762,53.16059902019552],[-127.40810412233888,53.16042975673463],[-127.40816666567532,53.1602536307776],[-127.40820285897446,53.16007446537625],[-127.40829003088308,53.15990645542681],[-127.40852232845799,53.159792184716714],[-127.40879928961176,53.15972501285468],[-127.40907821630891,53.15966062297078],[-127.40935808968965,53.15959677697332],[-127.40963797721062,53.159532930133466],[-127.40991586392917,53.15946574458423],[-127.41017913088638,53.1593813584168],[-127.4104520793828,53.15930638605423],[-127.41074317229533,53.159269862774494],[-127.41104241012636,53.159252848101545],[-127.411342207918,53.159252635350384],[-127.4116363167279,53.15927826404539],[-127.41192728116202,53.1593224153392],[-127.41222002241653,53.159363191815395],[-127.41251678508388,53.15938430417382],[-127.41281506577387,53.159394747257586],[-127.41311512631783,53.159402371262104],[-127.41341257577379,53.1594161936064],[-127.41370945163597,53.15944066350742],[-127.41400734669031,53.15946736174043],[-127.41430354121759,53.15949968267209],[-127.4145953231044,53.15953989998123],[-127.41487809583867,53.159590865730394],[-127.41512685436528,53.15968931271795],[-127.41537487198228,53.15979336221077],[-127.41564982934692,53.15986291439481],[-127.41594921927364,53.15985036803046],[-127.4162473730737,53.159856886324626],[-127.41654662092785,53.15986787327537],[-127.41684501879696,53.159881675692326],[-127.41714260394052,53.15989940479658],[-127.41742997867237,53.15994751232178],[-127.41772258310682,53.159984350257616],[-127.41802027798424,53.16000487293457],[-127.41831932469971,53.16001025470258],[-127.41861559383308,53.15998821815989],[-127.41890647772759,53.15994550937134],[-127.41918342340576,53.15987831321921],[-127.4194494389834,53.15979275267841],[-127.41973254686106,53.159741734872945],[-127.42002753086815,53.159709615575046],[-127.42032463192916,53.159684758685124],[-127.42062288356802,53.159666055163285],[-127.42092348151448,53.159661881899886],[-127.42121589530285,53.15969255454333],[-127.42149279093388,53.159763746449116],[-127.42175430103042,53.159850820276674],[-127.42198403815019,53.15996796740334],[-127.42220556605709,53.1600919364974],[-127.42241504438805,53.16021996770796],[-127.42263822207426,53.16033719241825],[-127.42288325686538,53.16043566809301],[-127.42312386220965,53.160541476120244],[-127.42335138219319,53.160620545984756],[-127.42368605197248,53.160682073030564],[-127.4239457178461,53.160769720109776],[-127.42418638442703,53.160877210698935],[-127.42442336612123,53.160986977442995],[-127.42459314513462,53.16107626965486],[-127.42461041726307,53.161227346400665],[-127.42483736033859,53.16112207278062],[-127.42513830914197,53.16109996364384],[-127.42543554883208,53.16107901007006],[-127.42572855183639,53.16104354758963],[-127.42599968587427,53.16097080235514],[-127.42622426037516,53.160850986380794],[-127.42645176802101,53.16073506128678],[-127.42670331861503,53.16063734076198],[-127.42695876495925,53.16054404626222],[-127.42722588314473,53.160463502154194],[-127.42750775488382,53.16040351559251],[-127.42779560759428,53.16035465351655],[-127.42808548011712,53.16030969304294],[-127.42837641351325,53.160268645730746],[-127.42867041279806,53.1602353961246],[-127.42896665905764,53.16021276911061],[-127.42926390968582,53.160192370480544],[-127.42955998902424,53.160165261472855],[-127.42986607276708,53.16015652572176],[-127.43013496387215,53.160212105497806],[-127.43035182295644,53.1603355602151],[-127.43062408203426,53.16040735180162],[-127.43091670112223,53.160444157113],[-127.43120322691236,53.160494482941495],[-127.4314800650144,53.16056285532388],[-127.43177676990732,53.16058167903888],[-127.4320744007361,53.160572475067916],[-127.43232499305007,53.160474745049356],[-127.43257077648204,53.16037315496451],[-127.43283788291166,53.16029259818531],[-127.433132936961,53.160262695542364],[-127.43349138093743,53.16011267280237],[-127.43363322639573,53.15995742835363],[-127.43391336824749,53.15990248568108],[-127.43421303752316,53.15989828992567],[-127.4345116070359,53.159889068383855],[-127.43480987786072,53.159898900435024],[-127.43510928149276,53.1598868701771],[-127.43539925073034,53.159928179076665],[-127.43569587693388,53.15994475263405],[-127.43599079338983,53.15991091778484],[-127.43628322367488,53.159942108988716],[-127.43654214446664,53.15997930935778],[-127.43687278797503,53.15997697218255],[-127.43716594475397,53.15994651765552],[-127.43746428573223,53.159930567646995],[-127.43775977851055,53.15994154664864],[-127.43804381137392,53.160000851329656],[-127.43833020957128,53.16004724380634],[-127.43864746026891,53.16006411518166],[-127.43892305523339,53.1600960693326],[-127.43920873531471,53.16014862742623],[-127.43948823381598,53.16021246634278],[-127.43977208433166,53.160266721809094],[-127.44006733695234,53.16029786938942],[-127.44035821975297,53.16033803447706],[-127.44064561396773,53.16041354572666],[-127.4405405276617,53.160243923846764],[-127.44052281789291,53.16008164766022],[-127.4407165582183,53.15993808973705],[-127.44093156814506,53.15981388808209],[-127.44116568826121,53.15970065068278],[-127.44140862500409,53.15959852072113],[-127.44168248674478,53.15952458521541],[-127.44194860330258,53.15944289898886],[-127.44220595819009,53.15935178904493],[-127.44245553376908,53.15925237306412],[-127.44268202118445,53.159135307831754],[-127.44287978238283,53.15900010637679],[-127.44304991776951,53.158851784829174],[-127.44315668418523,53.1586857497479],[-127.4432228443392,53.15851012400886],[-127.4433399412985,53.15834508337158],[-127.44349302074835,53.158190810076604],[-127.44367075750387,53.158045765662216],[-127.44385043813972,53.15790237370962],[-127.44406237073059,53.15774345487534],[-127.44422403041075,53.15762157425842],[-127.44441702831539,53.15748418683228],[-127.44461192083737,53.157347887609994],[-127.44480873855198,53.15721269413903],[-127.4450074319129,53.15707803324949],[-127.44520805014963,53.156944469131346],[-127.44540963432978,53.1568120134868],[-127.44561405736397,53.1566806434334],[-127.44582135319996,53.15655091437754],[-127.44602963027134,53.156422302546254],[-127.44623406848086,53.15629148699785],[-127.44643466013815,53.156157365138974],[-127.44663052226385,53.15602217112589],[-127.44682538194259,53.155885312545394],[-127.44699745571594,53.15573921129],[-127.447118294999,53.155574676468426],[-127.44723347249912,53.15540853426211],[-127.44737419300968,53.15524992398362],[-127.44752969823057,53.15511298959277],[-127.4477088170811,53.1549539091771],[-127.44790515807715,53.15480582413091],[-127.44811655250669,53.15465923099935],[-127.44824782162365,53.154525954053014],[-127.44838003864783,53.15436520520772],[-127.44848575231232,53.15419693612311],[-127.44858769622151,53.154027592425095],[-127.44872653429218,53.15386900334309],[-127.44889140409187,53.153759403479555],[-127.44906855944309,53.15370792617994],[-127.44923137972599,53.15367511023357],[-127.44952130315029,53.15363402236323],[-127.44980230708374,53.1535784657706],[-127.4500583355526,53.153477277274355],[-127.45026950108291,53.153351974982606],[-127.45041209547446,53.153193902526894],[-127.45047161649991,53.15301723246622],[-127.45050970442418,53.15295344494666],[-127.45062395616608,53.152870237690784],[-127.45093588483357,53.15281542881079],[-127.4512206653294,53.152760943071264],[-127.45145477668869,53.152649369618985],[-127.45171012060236,53.152556030263604],[-127.4519519124665,53.152449964767165],[-127.45220632491085,53.15235662676672],[-127.45251123960836,53.15228845202728],[-127.45263446241465,53.15222137743066],[-127.45270480535348,53.152169529189294],[-127.4528350869688,53.15200767797893],[-127.45285984779643,53.15182862713665],[-127.45271179695244,53.15166346915767],[-127.45261544536119,53.15150327956183],[-127.45255135904004,53.151328125473846],[-127.45251540151239,53.1511537467026],[-127.45244838439098,53.15097526658601],[-127.45240854797076,53.15079701760373],[-127.45235189631356,53.1506200866612],[-127.45230848813327,53.15044691986732],[-127.45225824563417,53.1502654365879],[-127.45221559397127,53.150087213075885],[-127.45217110441028,53.14990957689506],[-127.45212567143567,53.14973195226247],[-127.45207836625701,53.149554350575066],[-127.45203293405251,53.1493767258721],[-127.4519856296596,53.149199124112855],[-127.45192247822105,53.14902395806418],[-127.45185278085577,53.14884887229107],[-127.45179522470109,53.14867251685486],[-127.45173672526634,53.14849617295281],[-127.45167355685724,53.14832045109782],[-127.4516076067252,53.14814531916472],[-127.45152047629729,53.14798053281212],[-127.45146308935252,53.14786412504602],[-127.45143750181279,53.14780056223401],[-127.45135198086417,53.14762847629654],[-127.45132700793896,53.14758283621966],[-127.45128228815415,53.147453390052554],[-127.45127874869372,53.14737722967495],[-127.4512929976952,53.14727395564612],[-127.45133924734631,53.1471747716593],[-127.45141674688048,53.14711330621174],[-127.45156673073386,53.147034697647136],[-127.45163646388005,53.14699237827846],[-127.45189443991379,53.14689507877891],[-127.45217396548975,53.146852425798805],[-127.45230486534773,53.14684578071086],[-127.4524689122367,53.14682247473865],[-127.45276076897373,53.1467841515592],[-127.45305262926861,53.14674638344896],[-127.45332256167153,53.14666967034548],[-127.4535643734148,53.1465652769888],[-127.45378115021254,53.14644102807687],[-127.45398839029444,53.14631184855291],[-127.4541946469362,53.14618156008282],[-127.45439520366266,53.146048535197366],[-127.45447644155287,53.14598702167404],[-127.45457003158262,53.145902943313416],[-127.45471540506229,53.14574538619179],[-127.4548589200313,53.14558785171781],[-127.4550213933039,53.14543737258013],[-127.45519428625788,53.14529011801105],[-127.45537862423834,53.14514889041646],[-127.45558010136558,53.14501586098416],[-127.45579020265184,53.14488831933643],[-127.45600600124932,53.14476351327787],[-127.4562314259233,53.14464587700998],[-127.45645970803298,53.14452988160213],[-127.45666977016856,53.14440178293696],[-127.45689038678724,53.14428083363318],[-127.45715348512692,53.1441969068688],[-127.4574422145352,53.1441502099523],[-127.45773094299832,53.1441035033688],[-127.45800872510895,53.14403788891563],[-127.45813168526126,53.14399154760071],[-127.45823711479453,53.14392525055885],[-127.45840240479953,53.14377528753763],[-127.45859434965395,53.14363787861909],[-127.45870041855719,53.14359062427843],[-127.45883852645566,53.14357603839961],[-127.45900795881813,53.143627740187526],[-127.4591314155791,53.143677202668975],[-127.45925468220169,53.1436941775165],[-127.4594148118343,53.14369332297257],[-127.45971515505006,53.1436576746848],[-127.4599871043339,53.143613419798235],[-127.4602747668024,53.14356335812078],[-127.46056883351562,53.14353563862504],[-127.4608650082013,53.14351517210345],[-127.46102540879443,53.14349526098213],[-127.46119505483983,53.14347187350434],[-127.4612711420271,53.143478213485935],[-127.46145744900898,53.14347647699502],[-127.46175609013308,53.143472787511904],[-127.46205342000226,53.143458462821734],[-127.46222142922801,53.14346927839916],[-127.46248876715492,53.14353545425577],[-127.46275657444376,53.14361562735678],[-127.46302880044536,53.14368790963232],[-127.46332381894665,53.1437150744062],[-127.46363668534454,53.14368935604834],[-127.46380804237316,53.14360710502163],[-127.46407513191933,53.14344971510029],[-127.4642894867224,53.14333779431192],[-127.4645613118473,53.143263272782605],[-127.46484400282259,53.143204861034285],[-127.46513271667708,53.14315813636543],[-127.46542998520542,53.14314212741194],[-127.4657284493112,53.14313339161298],[-127.46602813263779,53.14313304035467],[-127.46632474998495,53.14315233325737],[-127.46662152309115,53.14317611506055],[-127.46692049589102,53.143182494264366],[-127.46722168578874,53.14319836627575],[-127.46751535249425,53.14321377499973],[-127.46781123686607,53.143238685507804],[-127.46810639137911,53.14326976344065],[-127.46839722692734,53.14331153596054],[-127.4686931901999,53.1433386846019],[-127.46897011709682,53.14341145080875],[-127.4692370267921,53.14349218534387],[-127.46950129201194,53.143577434742234],[-127.46976008188427,53.14366723419002],[-127.47001616892145,53.14375986381276],[-127.47027225738992,53.143852501837785],[-127.47055773047612,53.14390105966614],[-127.47085297421438,53.1438805796917],[-127.4711314101006,53.14380763730072],[-127.47140444230044,53.143740929518664],[-127.4716763157298,53.14366806743372],[-127.47181497697807,53.14358845263134],[-127.47196105950927,53.14353396450173],[-127.4721037644354,53.14340948186653],[-127.47221396669828,53.14337337031417],[-127.47232581464642,53.14327727873504],[-127.47243875906223,53.14323945634047],[-127.47261554513442,53.14317898196191],[-127.47282432615062,53.143150043151905],[-127.47297638450593,53.14313302570967],[-127.47308956795762,53.14312881035141],[-127.47323082106038,53.143124254312426],[-127.47334799583463,53.14310038204339],[-127.47350125882251,53.143063732992545],[-127.47365574239637,53.14303546895781],[-127.47395361131599,53.14303680568138],[-127.47424140933822,53.14299119070805],[-127.47452112820027,53.14292831006116],[-127.47481384743575,53.142889365231966],[-127.47510886730363,53.142862709221156],[-127.47540601290471,53.14284331469776],[-127.47570426269338,53.14282895308079],[-127.47599632448988,53.14279784912213],[-127.47611685089305,53.142762725710824],[-127.47623441146983,53.142696260839266],[-127.47642436289009,53.1425571705107],[-127.47664203917314,53.14243454363228],[-127.47683749654061,53.14231891763141],[-127.47719312397143,53.14207017472411],[-127.47718123620947,53.14189046237825],[-127.4771282374348,53.141713495680705],[-127.47713977962731,53.14153404659539],[-127.47716630410805,53.14135497522619],[-127.47718251905533,53.141175467751346],[-127.47716036139572,53.1409964394],[-127.47709244510467,53.14082134434854],[-127.47695297027175,53.140662267048135],[-127.476856200467,53.14049201470202],[-127.47674549990438,53.14032529814156],[-127.47668131134365,53.14014960044375],[-127.47669001960766,53.13996962182903],[-127.47671000000855,53.13979063210716],[-127.4767205998944,53.13961119464979],[-127.47669188508215,53.139432247944455],[-127.47663794788102,53.139255292564364],[-127.4764781363057,53.139103201416034],[-127.47641769459764,53.13892744776191],[-127.47634604050516,53.138752398811675],[-127.47624928220503,53.138582710541606],[-127.47608115952211,53.13843407557575],[-127.47591218785428,53.13828770124676],[-127.47591337170327,53.13810669576195],[-127.47598031210946,53.1379316027168],[-127.47595814625133,53.137752574005084],[-127.47593130796245,53.1375736035724],[-127.47592691464169,53.137393788259814],[-127.4759262657237,53.137213935175346],[-127.47593030403367,53.13703401462394],[-127.47594652256466,53.136854506888085],[-127.47596556114837,53.136675528754786],[-127.47603155089287,53.13649988256065],[-127.47610507146557,53.13632581883485],[-127.47612503294346,53.136146264282864],[-127.4761459574018,53.135967262502334],[-127.47617622621263,53.135788135118176],[-127.47622154410575,53.13561050536287],[-127.47629882592778,53.1354369592727],[-127.4763921238662,53.13526601933183],[-127.47650807917435,53.135100390801796],[-127.47668185742879,53.134954776962026],[-127.4769176949155,53.13484369324555],[-127.47714779790837,53.13472930970428],[-127.47730254550765,53.134575532064595],[-127.47747531667251,53.13442824406047],[-127.47768531921434,53.134301227360275],[-127.47794727337319,53.134214469735156],[-127.47824288124339,53.134179397179764],[-127.4780521447634,53.13405346062287],[-127.47778627994643,53.13397441850295],[-127.47760153835199,53.13383216123125],[-127.47740394871327,53.133697343972024],[-127.477213711216,53.13355851673519],[-127.47702530776311,53.133418545633326],[-127.47683509244266,53.13328028233348],[-127.47663565565192,53.133146051689224],[-127.47641605936501,53.133024399632056],[-127.47616183635496,53.13293007520582],[-127.47590489666034,53.13283858131234],[-127.47566249906384,53.13273402231918],[-127.47537950077374,53.13267367507744],[-127.47510030560719,53.13261496520999],[-127.47491372648874,53.13247328258455],[-127.47475950814587,53.13231999852817],[-127.47468974388373,53.13214492459267],[-127.47457627345088,53.13197824014333],[-127.47448048078029,53.131808529064664],[-127.4743827977574,53.13163828561877],[-127.47441966892528,53.13146020562941],[-127.4743928411217,53.131281234221476],[-127.47432122766533,53.131106738907974],[-127.47432151404796,53.13092687361293],[-127.47425269724774,53.130751787524396],[-127.47421465952947,53.13057351159954],[-127.47421588971089,53.13039363449268],[-127.47426306679736,53.13021598181035],[-127.47424747070569,53.13003687025625],[-127.47425902191881,53.12985742028738],[-127.47427150139458,53.12967795872704],[-127.47428208942976,53.12949795591015],[-127.47428708198734,53.12931858763878],[-127.47428362516143,53.12913876882816],[-127.47426988139433,53.12895906926851],[-127.47425426640085,53.12877940198199],[-127.4742461378156,53.12859963238952],[-127.47425113041953,53.12842026402983],[-127.47426359016985,53.12824024671842],[-127.47430985566956,53.12806316098459],[-127.47428488276043,53.12788361027285],[-127.47423006164318,53.127707228800254],[-127.47421351865464,53.12752756399358],[-127.47421100556922,53.12734773324245],[-127.47421410694437,53.12716782351987],[-127.47425097493102,53.12698974313924],[-127.47425781924595,53.12680978671699],[-127.47427029782918,53.12663032485161],[-127.47427903320276,53.1264509096304],[-127.47431211822204,53.12627175564404],[-127.4743414792249,53.126093203904645],[-127.47436707727613,53.125914134236425],[-127.47438984100836,53.12573454402935],[-127.47440702463075,53.12555558818501],[-127.47441199654686,53.12537565494338],[-127.47440386825727,53.12519589398166],[-127.47438731054038,53.12501622913396],[-127.47436984435672,53.1248371404097],[-127.47435797340384,53.124657426056984],[-127.47435453131716,53.12447759763237],[-127.47435668897046,53.124297708338865],[-127.47436449525871,53.124118304450725],[-127.47438164371422,53.12393878406426],[-127.47440631206338,53.1237597257452],[-127.47444408485623,53.1235810688208],[-127.47451477055809,53.12340648412847],[-127.47464204648817,53.123244085821796],[-127.47477782791306,53.123083813641564],[-127.47484662067441,53.12290869643241],[-127.47485535284063,53.12272928079546],[-127.474796793258,53.12255294575936],[-127.47460292991074,53.12241583593136],[-127.47435783923473,53.12231299350751],[-127.4740838988351,53.12224187994768],[-127.4737948831857,53.12219505248121],[-127.47350158682696,53.12215948432822],[-127.4732075381935,53.122128972309504],[-127.47291266333119,53.12210182289135],[-127.47261520823577,53.1220814378418],[-127.47231638345531,53.122075072952335],[-127.4720193042366,53.12209221957693],[-127.4717267457064,53.122131722515434],[-127.47143401141346,53.12216617942864],[-127.47113777200812,53.12215362020287],[-127.47089539343641,53.12204793082177],[-127.47071257872727,53.1219050739954],[-127.47047206967414,53.12179880465991],[-127.47020614471309,53.1217158200294],[-127.4699520226458,53.12162203727352],[-127.46971695610584,53.12151065129064],[-127.46950016178754,53.121386710442614],[-127.46927790584321,53.12126676388364],[-127.46904010625595,53.121157651872316],[-127.46879684927147,53.12105308984664],[-127.46855268917145,53.120949659211874],[-127.46831035815798,53.12084451988697],[-127.4680662004471,53.12074108823587],[-127.46779046783048,53.12067166802648],[-127.467499749463,53.12062877330424],[-127.46721254580967,53.12057966611612],[-127.46694939097803,53.120494954425425],[-127.46667815362632,53.12041987255664],[-127.46640780662587,53.120343658366764],[-127.46614371205195,53.12025896552995],[-127.46589140148218,53.12016291039867],[-127.46564090536465,53.120065155731446],[-127.4653913147823,53.11996626865427],[-127.46514354292671,53.11986623785749],[-127.46489488282242,53.11976733822074],[-127.46459661647047,53.119749740459305],[-127.46430593845756,53.11978920191336],[-127.46415214535251,53.11994351689934],[-127.46394986698974,53.120076018662495],[-127.46370732755696,53.12018156664069],[-127.46344639784174,53.120269402109756],[-127.46321922817422,53.120385965465715],[-127.46300641309863,53.12051187192111],[-127.46275516526077,53.12060911614273],[-127.46246042772205,53.12063965785203],[-127.4621622913832,53.12062597013012],[-127.46187160270512,53.12058418194261],[-127.46158355499472,53.120537312930914],[-127.46129290162781,53.12049607874624],[-127.46099596405541,53.12051711386737],[-127.46070940620079,53.120567722087316],[-127.46043675759559,53.12064169174565],[-127.46015023683371,53.120693418793856],[-127.45986061161447,53.120736782973225],[-127.45958402487756,53.12080519593141],[-127.45931038658259,53.12087748967917],[-127.45903177242727,53.12094144368737],[-127.45874015735141,53.120981467646075],[-127.45844641515833,53.12101366350955],[-127.45815171025156,53.121045314660606],[-127.45785688927646,53.12107360451462],[-127.45756519511148,53.121111385198354],[-127.45727363067083,53.12115251657839],[-127.45698295563196,53.121192524575775],[-127.45669233765825,53.12123420765847],[-127.45641078720605,53.12129482958867],[-127.45614884973698,53.121380984532514],[-127.45589179361943,53.12147323793416],[-127.45563664652141,53.12156659688477],[-127.45538925274018,53.1216676955018],[-127.45517258830634,53.12179139345887],[-127.45495208387031,53.1219123410737],[-127.45468431825113,53.121992961067306],[-127.45440670985518,53.122059132911694],[-127.45412906624497,53.12212473971145],[-127.45383647175726,53.1221636427783],[-127.45354164012127,53.12219192185677],[-127.45326007440491,53.12225197149457],[-127.45296165892731,53.122257879954404],[-127.45266681550844,53.122231244633916],[-127.4523721362167,53.122264001548984],[-127.45208958710347,53.122322948755304],[-127.45181592622333,53.122395225100085],[-127.45154712758817,53.122473053374684],[-127.45127740381548,53.12255144822424],[-127.45100468762163,53.1226242758656],[-127.45072608780352,53.122689330431854],[-127.45043234701187,53.12272207093363],[-127.45013373612949,53.122722371312626],[-127.44983429270512,53.122725478309825],[-127.44953608000803,53.122736978885435],[-127.44923756495844,53.122740081954944],[-127.44893871975373,53.12273309342305],[-127.44864217666274,53.12271151633901],[-127.44834492013811,53.122696662238525],[-127.44804675490309,53.12268238333308],[-127.44774866642291,53.122670344054995],[-127.44744987951228,53.12266503652598],[-127.44715119248869,53.12266308899467],[-127.44685242498369,53.12265834453187],[-127.44655352753249,53.122650229965835],[-127.44625288878588,53.12264550688149],[-127.44597121456323,53.122593474543514],[-127.44573896706254,53.122480886542526],[-127.44554423196116,53.12234262920623],[-127.44530035047079,53.122245871788905],[-127.44502458791304,53.122174713794294],[-127.44474978870633,53.12210410820629],[-127.44447049544556,53.12203916017427],[-127.44418581802164,53.12198100119454],[-127.44389261662542,53.12197506067745],[-127.44359401768803,53.12200279608459],[-127.44332503457314,53.122075560346346],[-127.44310071393052,53.122195411335625],[-127.44284933414639,53.122290372788214],[-127.44255649902198,53.12232251783319],[-127.4422575626892,53.12231271641909],[-127.4419602733828,53.12229673503767],[-127.44166087048463,53.12230094153272],[-127.4413645816737,53.12228662296162],[-127.44107824517033,53.12223464485714],[-127.44078686630645,53.122199528384655],[-127.4404879693353,53.122190842689065],[-127.44018982949942,53.12217710854803],[-127.43989184182739,53.12216784546369],[-127.43959447830792,53.12214961774895],[-127.43929709165786,53.12213025994981],[-127.43900090805867,53.12214675671601],[-127.43870057772149,53.122150967012615],[-127.43842688869766,53.12208538078761],[-127.43819454995642,53.121969417360546],[-127.43792099579389,53.12190774615353],[-127.4376249649448,53.121928711287445],[-127.43734145020457,53.12198706997573],[-127.43705071264063,53.12202590876785],[-127.43675261922921,53.12204129349201],[-127.43645419907587,53.122046604501264],[-127.43615583951281,53.1220541463654],[-127.43585791270081,53.12207401838874],[-127.43557123840515,53.12212232526092],[-127.43527745574544,53.12215446373559],[-127.43497922430485,53.12216537199255],[-127.43468107241559,53.1221790756837],[-127.43438405312786,53.12219836815311],[-127.4340891324491,53.122224358346635],[-127.43379328319995,53.12225035905895],[-127.43349531982813,53.12226966073191],[-127.4332065615654,53.1223118190029],[-127.4329170263583,53.122358477555736],[-127.43262223608285,53.12238838028904],[-127.43232582086841,53.122398139167395],[-127.43202781381716,53.12241575218723],[-127.43173500777705,53.12244899959092],[-127.43144335626346,53.122488947241116],[-127.43114962104369,53.122522204430425],[-127.43085271123395,53.12254484861247],[-127.43055568763991,53.12256413146308],[-127.43025787184531,53.122587905756895],[-127.42997007043732,53.12263060928829],[-127.42970519951771,53.12271505485458],[-127.42943265322035,53.12279399829668],[-127.42915823418677,53.122872954763494],[-127.42891438039265,53.122970036477916],[-127.42875267799542,53.12311599860388],[-127.42862447226244,53.12328395987526],[-127.42847053655102,53.12343822813626],[-127.42832134262848,53.1235941243557],[-127.42814320774515,53.12375260222274],[-127.42792689336429,53.12380620857902],[-127.42778578394147,53.12364653865043],[-127.42793569670444,53.123483910548586],[-127.42804991898156,53.123317795448244],[-127.42817164511914,53.12315215439232],[-127.42831900437558,53.12299740112345],[-127.42853673431428,53.122874861257266],[-127.42876110004337,53.12275504690223],[-127.42893021110297,53.12260675388738],[-127.429115485186,53.12246611879631],[-127.42931787978131,53.12233311205039],[-127.42956335485422,53.12222873005347],[-127.42983128692724,53.12215208333831],[-127.43012700164947,53.12212161157218],[-127.43042629096611,53.12211407368977],[-127.43072503402482,53.12211830403347],[-127.43102388654869,53.12212532944884],[-127.43132257313442,53.12212788247079],[-127.4316235621607,53.12214272508551],[-127.43183793624836,53.12206000722708],[-127.4320165420804,53.12191607722102],[-127.43219892760351,53.121773230758585],[-127.43239274820178,53.12163640458312],[-127.43256751311783,53.121489723041186],[-127.43263462514967,53.121315208549376],[-127.43280188344727,53.121168052747244],[-127.43300237426935,53.12103507141767],[-127.43323635831642,53.12092353204109],[-127.43344157000777,53.120791604385985],[-127.43356823769147,53.120634297722695],[-127.43354338478547,53.120453052918975],[-127.43351112268394,53.12027413923005],[-127.4336094200725,53.120108775967736],[-127.43384332159343,53.119994994940704],[-127.43408894243376,53.11989563981439],[-127.43427700164234,53.119754953328155],[-127.4344660597595,53.11961593986449],[-127.43467129952256,53.11948513913636],[-127.43489566759102,53.119366424150556],[-127.43513154663752,53.119255978407345],[-127.43538284982105,53.11915879280717],[-127.43564774397802,53.11907601017003],[-127.43589520767598,53.118976072903266],[-127.43612049775447,53.118857344288514],[-127.43634007423275,53.11873533162362],[-127.43656539976274,53.11861772234104],[-127.43680416057536,53.11850947941331],[-127.43705059916411,53.118407310765775],[-127.43727408388628,53.11829028725081],[-127.43745834498557,53.11814852087552],[-127.43765029883197,53.11801282875099],[-127.43776255908357,53.11784560631902],[-127.43787954609485,53.117680011741044],[-127.43800788796399,53.117517631929516],[-127.43816840426267,53.11736607614534],[-127.4383450596254,53.11722103876798],[-127.43852267600849,53.11707655421962],[-127.43869267751022,53.116928800061636],[-127.43880685912588,53.11676323854309],[-127.43885792670224,53.11658555292633],[-127.43889306260944,53.116407496344365],[-127.43893005047434,53.11622886134407],[-127.43895953471265,53.11604976178885],[-127.43898620425713,53.11587068749804],[-127.43901383578067,53.11569216628425],[-127.43904144820343,53.115513089428525],[-127.43906906008849,53.115334003586824],[-127.43909387292037,53.11515496075372],[-127.43911678033665,53.1149753762757],[-127.43913034724505,53.11479590547174],[-127.4391046259195,53.1146174687356],[-127.43903970430638,53.11444175941658],[-127.439005571413,53.11426342501613],[-127.43898353608205,53.11408326683697],[-127.43899619831419,53.11390492763415],[-127.4391283617486,53.11374530569121],[-127.43935168704331,53.1136249175314],[-127.43959039373986,53.1135161130566],[-127.43977564964577,53.11337713636632],[-127.4398756400056,53.1132072545338],[-127.43991918105854,53.11302910381764],[-127.43993178179446,53.11284907963071],[-127.43993411879843,53.11266974524994],[-127.43995327940303,53.11249020593595],[-127.43999591028278,53.11231262204152],[-127.44002912916996,53.11213347624675],[-127.44002863265926,53.11195361148775],[-127.43994137440485,53.11178153647462],[-127.43992598707099,53.111604094385385],[-127.44001658426158,53.11143377076889],[-127.44014866001656,53.11127190706512],[-127.44030819785796,53.11111979456884],[-127.44050479967528,53.11098460496071],[-127.44073006852578,53.110866431429585],[-127.44098034701385,53.11076868038775],[-127.44123931772374,53.11067867643532],[-127.4414983062319,53.110589227529935],[-127.44175628948257,53.11049754897169],[-127.44197868115965,53.1103777225666],[-127.44213537639898,53.11022508623192],[-127.44222030686288,53.11005314430204],[-127.44227229919446,53.109876009800374],[-127.44231208478838,53.109697894558586],[-127.44235094242529,53.1095197995692],[-127.44241984682557,53.10934469094581],[-127.442516075768,53.10917486111205],[-127.44262831232999,53.109008188849884],[-127.44275186824285,53.10884418444829],[-127.44288581943849,53.10868341500069],[-127.44303586940745,53.10852805217749],[-127.44319634865418,53.108376488619925],[-127.44335588358307,53.108224927382615],[-127.44351159985808,53.108071180168714],[-127.44366542502266,53.107916891002915],[-127.44382115797063,53.10776369897388],[-127.44398257833065,53.107612678569566],[-127.44415726425522,53.10746653436633],[-127.44436145320503,53.10733516286642],[-127.44460306293958,53.10723079449217],[-127.44486395112727,53.10714299099808],[-127.44513557401179,53.10706794782774],[-127.44541400333962,53.10700066546034],[-127.44565464648481,53.10689574186544],[-127.44583127111764,53.10675182161285],[-127.4459642568998,53.10659049525634],[-127.4460793058313,53.10642434963896],[-127.44619811846833,53.10625927850245],[-127.4463207247066,53.10609528146944],[-127.4464480566608,53.10593291193849],[-127.44659334222048,53.10577591689803],[-127.44675948674308,53.105626519988526],[-127.44694938772062,53.10548802972828],[-127.44713358009218,53.105346811838665],[-127.44731679018996,53.10520448499415],[-127.44749430667277,53.10505943037459],[-127.44768707766958,53.10492314501617],[-127.4478988173653,53.104793915791745],[-127.44809067732257,53.104658205701675],[-127.44815202976179,53.10448207368872],[-127.44821430919693,53.1043059212969],[-127.44828038282111,53.104130851992785],[-127.44835490396582,53.10395679081808],[-127.4484897612355,53.103796003025934],[-127.44863030572458,53.10363738668967],[-127.44878978440222,53.10348526209505],[-127.44894548255374,53.10333206293316],[-127.44907561347472,53.10317021163386],[-127.44918312051146,53.103003034206296],[-127.44927362383072,53.102831582470436],[-127.44937168104921,53.1026617234972],[-127.44947726185265,53.10249344867375],[-127.4495989017833,53.102329459453934],[-127.4497574443005,53.102177344820454],[-127.44994633899299,53.10203774083811],[-127.45014573849207,53.10190417581719],[-127.45036038814544,53.10177883281789],[-127.45049052386113,53.10161697963533],[-127.45066990799091,53.101473008421785],[-127.45087500992723,53.10134217823869],[-127.45111647345368,53.10123499121409],[-127.45127321268966,53.101085137823354],[-127.4513910430744,53.100919507780624],[-127.4514919045751,53.10075016812257],[-127.4515889860669,53.10057975410586],[-127.45165118810345,53.100401923692225],[-127.45154448984067,53.10023681865583],[-127.4511340694745,53.09999979322472],[-127.45108509713386,53.09996284747517],[-127.45099141821369,53.09979534073659],[-127.45092917212075,53.099616797137614],[-127.45087622075262,53.09943645389369],[-127.45081310968152,53.09926016217683],[-127.45075651453034,53.09908266975387],[-127.45072330669602,53.09890489020496],[-127.45074615607494,53.09872530183093],[-127.45076902022294,53.098545713250644],[-127.45072648450166,53.098369168836115],[-127.45065313470806,53.09819412331577],[-127.45057606421827,53.098019688229556],[-127.45050080702075,53.09784354533269],[-127.45035892867362,53.09768894802143],[-127.45015415156972,53.09755530350114],[-127.44992015982359,53.097442745074794],[-127.4496605982724,53.0973484306561],[-127.44945697812456,53.097220929986165],[-127.44927706403286,53.09707576330532],[-127.44910999025278,53.09692260314268],[-127.44896517334703,53.096764122331685],[-127.44885203256842,53.09660132614318],[-127.44882261775712,53.09642518492388],[-127.44883409499488,53.0962406886515],[-127.44879432519232,53.096062432996895],[-127.448698640304,53.09589045721384],[-127.4485973841445,53.09571967928155],[-127.44853997523202,53.0955455576155],[-127.4485367215498,53.09536796591745],[-127.44855959757346,53.095188942190575],[-127.44859459846292,53.0950086401645],[-127.44860405334794,53.09481969482588],[-127.44863803463173,53.09463716388971],[-127.44868002807911,53.09446966831068],[-127.44869914342885,53.09429012573524],[-127.44869862964248,53.09411082378558],[-127.44867567429249,53.093931796943764],[-127.44864149839954,53.09375290763857],[-127.44860919290986,53.09357399537946],[-127.44857501758574,53.09339510601868],[-127.44852501174651,53.0932180961913],[-127.44846564060032,53.09304119216561],[-127.4483839972785,53.09286905277437],[-127.44827904740548,53.09269943136821],[-127.44814265184404,53.092540290311085],[-127.4479793248898,53.09238707354056],[-127.4477884225442,53.09224765151346],[-127.44755924874762,53.092138391509984],[-127.4472844487777,53.09206218957077],[-127.4470088219814,53.09198935915901],[-127.44672872361393,53.091922742104344],[-127.44646134952373,53.09184477082344],[-127.44623393673177,53.09173212470425],[-127.44603656659328,53.09159501145391],[-127.44582637526074,53.09146590846901],[-127.44560334317784,53.091344242135264],[-127.44539321153384,53.0912168141959],[-127.4452152981556,53.09107385820045],[-127.44505304474231,53.09092399532386],[-127.44489815762573,53.09077067114915],[-127.44474693557031,53.09061506956831],[-127.44459939718446,53.0904577372577],[-127.44443247315593,53.090335382755065],[-127.4442888409114,53.090210501958914],[-127.44418462798583,53.08997923065646],[-127.44404256306727,53.08979045176581],[-127.44391707603819,53.0896485385821],[-127.44375631305465,53.08951490105983],[-127.44356085865903,53.089350873011185],[-127.44337304852851,53.08921924195656],[-127.44323762896109,53.08906063921908],[-127.44313191520871,53.088894949428806],[-127.44316402648367,53.0887118866668],[-127.443227406888,53.088512752426226],[-127.4432612224324,53.08835208234198],[-127.44328149102353,53.0881781295716],[-127.44328485434312,53.08800214193177],[-127.4433105797503,53.087823639743895],[-127.44330538779218,53.08764383868346],[-127.44333281101318,53.0874602681714],[-127.44330810754482,53.08728406746778],[-127.4433150767488,53.08710410882484],[-127.44331737911656,53.08692421613923],[-127.44331779638466,53.086744337498494],[-127.44331849580398,53.086572309115574],[-127.44334108378273,53.08638431483063],[-127.44338988283066,53.086196565120986],[-127.44346826571409,53.086026384800554],[-127.44364936341691,53.08587904844231],[-127.44395335665554,53.08574252833055],[-127.44425126935393,53.08561953886693],[-127.4444030067787,53.085516257761796],[-127.44431889872806,53.08543604115959],[-127.44410443793556,53.085372542630694],[-127.44380709032328,53.0853195780015],[-127.44346596855429,53.085272195018604],[-127.44311644115257,53.0852249137348],[-127.44272616118107,53.085189335897674],[-127.44235704852815,53.08514341223334],[-127.44201879918192,53.08509767553931],[-127.44174280776029,53.08501251018869],[-127.44152907077182,53.084942829987035],[-127.44138533222865,53.08481402900489],[-127.44115748631509,53.08474172306088],[-127.44086704510318,53.084699317807434],[-127.4405740165018,53.084663102653394],[-127.44027921394138,53.08462971458728],[-127.43998378876206,53.08460529881845],[-127.43968842502444,53.08458312292561],[-127.43939624566934,53.08454409730464],[-127.43910106472227,53.084499504132054],[-127.43882985306364,53.08455492361065],[-127.4386438344581,53.08469558840568],[-127.43847872399063,53.084846093385835],[-127.43828888747369,53.08498456269729],[-127.43807328796119,53.085108220595565],[-127.43783764446982,53.08521979455461],[-127.43758731962896,53.085311939275414],[-127.43729094889069,53.08528752825008],[-127.43700413589202,53.08526915948069],[-127.43669668892616,53.08530427764858],[-127.43640316245308,53.08533642854949],[-127.43610872695027,53.08536914562132],[-127.43581268088667,53.0853817093227],[-127.4354909856085,53.085355360205746],[-127.43523003949207,53.08527223834131],[-127.43495970886192,53.08521556134102],[-127.43483966559738,53.085205812549844],[-127.4346784298736,53.08516742624894],[-127.43438424889003,53.08512449467223],[-127.43409915589767,53.085074163165075],[-127.43385526464644,53.08496953840324],[-127.43358877154148,53.0848881568198],[-127.43332826721223,53.08479045664392],[-127.43306315407048,53.084721949425045],[-127.43278146418751,53.08466148740116],[-127.4325006796107,53.084599893058744],[-127.4321951354391,53.08452515008649],[-127.4319294799264,53.08449587063811],[-127.43164086277432,53.08445174419067],[-127.43134457708858,53.08442955867657],[-127.43104592917464,53.08442028434093],[-127.43075918158796,53.08440358521346],[-127.43064527904902,53.08435397827646],[-127.43054729700557,53.08427727323857],[-127.43050750339225,53.08420659658062],[-127.43039426200154,53.084121110768706],[-127.43032073853892,53.08404860107862],[-127.43026166275719,53.08396078280718],[-127.43013104763334,53.08385926174502],[-127.43000742285739,53.08377110405184],[-127.42978951690539,53.08371546628548],[-127.42955648565275,53.08368298054854],[-127.42927569351131,53.08362082287873],[-127.42899144577093,53.08356710694313],[-127.42871509521481,53.08349816120381],[-127.42844238697843,53.08342581772048],[-127.42814224110023,53.08334427507251],[-127.42797036802949,53.083239323573586],[-127.42772612937276,53.0831240486135],[-127.42745992356109,53.083050494669706],[-127.42717373688689,53.08299455649257],[-127.42690511300367,53.08296026317752],[-127.42660565190315,53.082870863672184],[-127.42634219025989,53.082795597571206],[-127.42615648802797,53.082612927905394],[-127.42589559132578,53.082557802041514],[-127.42562895934351,53.082471365875435],[-127.42536999417521,53.08241845690899],[-127.42510859136532,53.082348201818704],[-127.42482517186245,53.08229110396689],[-127.42454441453248,53.08222949063451],[-127.4242610304998,53.08217295583739],[-127.42396979032479,53.08213331624432],[-127.42367579533972,53.08209539463543],[-127.42337898527983,53.08205695036366],[-127.42308225063486,53.082020736830266],[-127.42278564818021,53.08198844781359],[-127.42249019526638,53.0819623124155],[-127.4221968789656,53.08194455114639],[-127.42187585271455,53.08193664393896],[-127.42163133531412,53.08200739210574],[-127.42134520085128,53.082148113398084],[-127.42106485095313,53.0821542923062],[-127.42074069257816,53.08213689841881],[-127.42043055781666,53.082063301266935],[-127.42014792830771,53.08197368320565],[-127.4198870330687,53.081890527298775],[-127.41967088295814,53.0817748893804],[-127.41949441704405,53.08164364959766],[-127.4192814500782,53.08151172742162],[-127.41905413713023,53.081425924882666],[-127.41876980462276,53.08136882361464],[-127.41850009239958,53.08130146003751],[-127.41825820582959,53.08119902085975],[-127.41801806268977,53.08109319824189],[-127.41778154393985,53.080983413764685],[-127.41754680584656,53.080871357138676],[-127.41731478738308,53.08075647021912],[-127.41708552600296,53.08063987324754],[-127.41685900645541,53.080521557457345],[-127.41660668177119,53.080442774325796],[-127.41636953403093,53.08031393417007],[-127.41616559452838,53.08017181215795],[-127.41602428197884,53.08000036636],[-127.4158334318349,53.079858086874836],[-127.41563275676104,53.07972937292966],[-127.4153816429875,53.079658417444456],[-127.41508917570604,53.07963726653496],[-127.41478678869014,53.07962687564199],[-127.4144892178767,53.07962091797112],[-127.41419299151738,53.0796552787836],[-127.4139367817444,53.079740155050274],[-127.41369228228584,53.07981144250785],[-127.41336084734344,53.079911786494186],[-127.41314730687525,53.07995804754199],[-127.41285801990392,53.08000409350559],[-127.41257073612408,53.080054597494126],[-127.41229720633929,53.080124552613576],[-127.41202860280416,53.0802022839521],[-127.41174433372585,53.0802589180495],[-127.41146495367057,53.0803222081112],[-127.41120862713562,53.08043173452466],[-127.4109618023388,53.08048959590128],[-127.41068534349492,53.08055622017214],[-127.41039086532878,53.08058718842256],[-127.41009753398764,53.08062431042731],[-127.40980368462697,53.08064631327936],[-127.40950641643182,53.08062127897216],[-127.40923650034422,53.08054717284815],[-127.40895150518807,53.080497900764726],[-127.4086576430924,53.08046274662556],[-127.40836470848645,53.08042757173753],[-127.40807193186687,53.080453475371534],[-127.40779843276172,53.080525096100075],[-127.40751711640287,53.080586167422304],[-127.4072307645842,53.080636647181976],[-127.406936097532,53.08066200567404],[-127.40666068843937,53.08073252579763],[-127.40639208944829,53.08081080888977],[-127.40612643145015,53.08089298318162],[-127.40586856969743,53.08098514115412],[-127.40559304189591,53.081051742276166],[-127.40531064653274,53.08110889425408],[-127.4050263065951,53.08116382733248],[-127.40474002212008,53.081216541497696],[-127.4044536998373,53.08126813473782],[-127.40416735816532,53.0813191626868],[-127.40387792596545,53.081361826114325],[-127.40358654600259,53.08140171477403],[-127.40329618533153,53.08144438779236],[-127.40301084251871,53.081497642377386],[-127.40272547719191,53.08154978482576],[-127.40243193231511,53.08158128680539],[-127.40213632850477,53.081606644321546],[-127.40183967126981,53.081628660550564],[-127.40154297641108,53.081649546842286],[-127.4012452652466,53.08166821206672],[-127.40094736510737,53.081680710614805],[-127.40064915386718,53.081684246744416],[-127.40035075395127,53.081681616194395],[-127.40005237639159,53.08168011426062],[-127.40000098776132,53.08168127913287],[-127.39951509088631,53.08169320468306],[-127.39921673160602,53.081692256273314],[-127.3989206113645,53.08167390574867],[-127.39862593630316,53.08164265416821],[-127.39833216702677,53.081610270467145],[-127.39803591864369,53.08158800139538],[-127.39773698368701,53.08159770690301],[-127.39746142388825,53.08166428025294],[-127.39718600749528,53.08173477807221],[-127.39689240202736,53.081764590418736],[-127.39659438926209,53.08177371729538],[-127.39629614012455,53.08177612220585],[-127.3959970187827,53.081780213188864],[-127.39569900571503,53.08178933780701],[-127.3954010512773,53.08180070231433],[-127.39510305650974,53.081810390026234],[-127.39480491755532,53.08181615186893],[-127.39450653563927,53.08181407115579],[-127.3942087310916,53.08180133205498],[-127.39391248353947,53.081779052646546],[-127.39361703494245,53.08175284522156],[-127.39332160137309,53.08172662791918],[-127.39302537335324,53.08170491088273],[-127.39272835020127,53.08168767618282],[-127.3924298039327,53.08168055365699],[-127.39213197793539,53.081695826255974],[-127.39183636746665,53.08172116696177],[-127.39154177572001,53.08174929210666],[-127.39124823938737,53.0817813219317],[-127.39095575541776,53.08181670959425],[-127.3906643966217,53.08185767764557],[-127.39037598142434,53.08190310195498],[-127.39009457888172,53.08196300272307],[-127.38982693904207,53.082042921841285],[-127.38956607288738,53.082130040505035],[-127.38929747020161,53.082209404902365],[-127.38901206798313,53.08226150542049],[-127.38871399515756,53.08226893654757],[-127.38841778390014,53.082247763601536],[-127.38812235362042,53.08222209807952],[-127.38782541711258,53.08220709135141],[-127.38752753880678,53.08219210390628],[-127.38722971552804,53.082178791580816],[-127.38693122474518,53.08217388684557],[-127.38663333530253,53.082186913896464],[-127.38634188159477,53.08222563098598],[-127.38606150519433,53.08228831614655],[-127.38580353341503,53.08237819856585],[-127.38557633819777,53.08249460641091],[-127.38534343821054,53.08260772766854],[-127.38506688846151,53.082673162711096],[-127.38476885181497,53.08268225993009],[-127.38447339910495,53.082655464880155],[-127.3841918472648,53.082596571793445],[-127.38391740584117,53.082525823298205],[-127.3836483216465,53.082447722632594],[-127.38339368094584,53.08235320708943],[-127.38311287383583,53.08228813461033],[-127.38282893165287,53.08232788467028],[-127.38254061413197,53.082376641585405],[-127.382243630866,53.08238908211556],[-127.38194433973618,53.08238810093899],[-127.38164600932075,53.08238767258261],[-127.38134760907778,53.082385558812625],[-127.3810491873428,53.08238232387794],[-127.3807507506961,53.082379088364306],[-127.3804523106747,53.0823752873229],[-127.38015383766768,53.08237093006516],[-127.37985537967923,53.08236657187855],[-127.3795569067949,53.08236221311286],[-127.37925844892915,53.08235785341835],[-127.3789599581013,53.082352937507125],[-127.37866146394626,53.082347456067644],[-127.37836295491111,53.08234197404872],[-127.37806449731056,53.082337611338176],[-127.37776607925697,53.08233492392311],[-127.3774677492583,53.082334485016574],[-127.37716867688385,53.08234021316677],[-127.37687069529224,53.08235096633962],[-127.37657274683261,53.082362283186264],[-127.3762744924335,53.08236463755417],[-127.37597592585337,53.082356908854685],[-127.37567587447418,53.082361523963705],[-127.37540499335563,53.082429120521304],[-127.37517400862853,53.08254443148213],[-127.37492563616301,53.08264314339285],[-127.37464914273508,53.08271079452493],[-127.37435974093054,53.08275507026649],[-127.37406513042374,53.0827831518178],[-127.37376848640999,53.082806208822916],[-127.37347378460336,53.082831492784386],[-127.3731782486501,53.082860138716654],[-127.3728846877434,53.0828915670846],[-127.37259827917842,53.08294196283249],[-127.37233644806155,53.08302961895581],[-127.37205757090138,53.083081602388916],[-127.37175763762998,53.083089568087374],[-127.3714607548923,53.083105342224385],[-127.37116305651745,53.08312505186907],[-127.37086535842465,53.08311561465598],[-127.37058568883323,53.08305610269273],[-127.37031028861706,53.08298421330408],[-127.37002183629161,53.082942732437125],[-127.36972386852429,53.08292489503326],[-127.36942610010097,53.082913222675856],[-127.36912831361458,53.08290098496709],[-127.36883121652427,53.08288089391163],[-127.36853668165087,53.082853483667584],[-127.36824294817153,53.08282214558965],[-127.3679491398947,53.08278801048875],[-127.367656241245,53.08275329931961],[-127.36736506828208,53.08271408482235],[-127.36707738244019,53.082666984652455],[-127.36678966113456,53.08261876354047],[-127.36649932687271,53.0825767310953],[-127.36620385036194,53.082548770118656],[-127.36590650031488,53.08254996717537],[-127.3656129754626,53.0825830624965],[-127.36532460036219,53.08263065715076],[-127.36503321152652,53.082671570935],[-127.36473618502143,53.08268284721505],[-127.36444252761343,53.082653740168126],[-127.36415649890372,53.08259988984338],[-127.36387230456793,53.08254489699784],[-127.36358291601734,53.0825028465055],[-127.36328916757421,53.082470375691805],[-127.36299458527442,53.08244127574429],[-127.36269833182409,53.08241836243953],[-127.3624005867409,53.082407228012805],[-127.36210197145888,53.08239834418473],[-127.3618082608441,53.08236698992923],[-127.36152318260385,53.082313678170834],[-127.36124342354248,53.082250783340584],[-127.36096541216713,53.08218450575132],[-127.36068747067313,53.08211991217802],[-127.36040415735549,53.08206321544921],[-127.36011384846981,53.082021176089434],[-127.35981500277477,53.08200500041947],[-127.35952733413154,53.082045292994934],[-127.35927509896321,53.08214120997588],[-127.35904403634947,53.082255378137575],[-127.3588072046772,53.08236512059308],[-127.35854527372781,53.082449940921244],[-127.35826188149196,53.082507555823675],[-127.35797445905324,53.08255568630828],[-127.35768303061249,53.08259601753626],[-127.35739054862222,53.0826324333672],[-127.35709803056986,53.08266773719191],[-127.35680552980668,53.082703595932486],[-127.35651195785985,53.08273498362269],[-127.35621412961952,53.08275073027247],[-127.35591476492942,53.08274744267252],[-127.35562812327731,53.08270309993932],[-127.35539635224218,53.08259089667729],[-127.35521130290103,53.08244845517181],[-127.3550327703243,53.082304817976436],[-127.35485145969449,53.0821617682188],[-127.35467661532198,53.08201641169109],[-127.35450451533205,53.081869337974965],[-127.35433243149275,53.08172226382427],[-127.35415664812815,53.08157690833157],[-127.35397441929601,53.081434432573495],[-127.35378298660494,53.08129654463198],[-127.35357868235263,53.08116552779871],[-127.35338550780843,53.081031585954456],[-127.35325871067158,53.080867737431674],[-127.35310700436999,53.08071426894961],[-127.3529073000438,53.08058095696839],[-127.35270205662066,53.080449384581975],[-127.35253185741983,53.080302851056516],[-127.3524134148733,53.08013666465374],[-127.35224601175118,53.07998953389448],[-127.35203618128033,53.079860818993055],[-127.35180639395091,53.079751383244755],[-127.3516814408739,53.07958640023022],[-127.35149924661188,53.07944447613514],[-127.35132259108158,53.07930025605522],[-127.35120228957338,53.079134654505516],[-127.35096962217311,53.07902244397612],[-127.3506891009267,53.078964015804004],[-127.3504040598191,53.07891068607574],[-127.3501377650637,53.07882911605105],[-127.3498652030509,53.07875602645107],[-127.34959349796411,53.07868068512866],[-127.34932004921069,53.07860928988318],[-127.34902792583465,53.078568356013484],[-127.34876629943815,53.078486173776874],[-127.34848941692456,53.07842433692544],[-127.34820003641684,53.07838113737081],[-127.34793734580776,53.07829503869152],[-127.34766742774612,53.07821687544494],[-127.34739044183256,53.07815167526103],[-127.34710099286177,53.07810622354708],[-127.34681859587621,53.078047251830114],[-127.34652352221782,53.07803099987347],[-127.34623159854199,53.077995669115175],[-127.3459331599004,53.07799122539801],[-127.34563384722631,53.0779884673839],[-127.345365055241,53.077915889379184],[-127.34507993891496,53.07785974166749],[-127.3447864675185,53.07783450191152],[-127.34448804805902,53.07783061914952],[-127.34418871900336,53.07782730182958],[-127.34389108200048,53.07781836122982],[-127.34359297918093,53.077823993684646],[-127.34329480796741,53.077827940700296],[-127.34299665193794,53.07783189575528],[-127.34269810840074,53.077824083113285],[-127.34241851323323,53.077764504302195],[-127.3421335436142,53.077712830478724],[-127.34183594328728,53.07770500495173],[-127.34153935272951,53.07772910135442],[-127.34126080937526,53.07779165911707],[-127.34099114575255,53.07786868389883],[-127.34071952589231,53.07794348894767],[-127.34060285015319,53.07765400812466],[-127.34048738250621,53.077491703137504],[-127.34026842977732,53.07736867448834],[-127.3400928542185,53.07722777872002],[-127.33996521038723,53.07706449070374],[-127.33984406770247,53.07690000814934],[-127.3397479788567,53.076729638033335],[-127.33961763238109,53.076569742242484],[-127.33944097601338,53.07642381930108],[-127.3392459450965,53.07628819031605],[-127.33903711456045,53.07615944137445],[-127.33883010437674,53.076029550781676],[-127.33865165428284,53.0758858883102],[-127.33848055936116,53.07573822441775],[-127.33825259268696,53.07562538010749],[-127.33800719365753,53.07552281872157],[-127.33777451316264,53.07540890624553],[-127.33751380213447,53.07532500357869],[-127.337233182611,53.07526206231726],[-127.33695085358616,53.07520418717117],[-127.33666410623003,53.07515419696909],[-127.3363871397217,53.07508841522718],[-127.33614358492282,53.07498526434911],[-127.33586838383704,53.07491609947409],[-127.33557668432624,53.074886899244476],[-127.33527865657686,53.0748947514074],[-127.33498000105473,53.07491213098438],[-127.33468849618971,53.0748890944451],[-127.3344313217042,53.074798421172474],[-127.3341904616345,53.074691318074166],[-127.33394689698318,53.07458760699691],[-127.33370696400694,53.07447993661274],[-127.33347894635996,53.07436484249781],[-127.33325821344573,53.0742434976433],[-127.33303931618909,53.074121019976516],[-127.33280854349276,53.07400763217758],[-127.33257960364502,53.07389254675795],[-127.33234881596806,53.07377860239876],[-127.33209437683375,53.07368509610632],[-127.3318462805685,53.07358535863926],[-127.3315990949142,53.073485045583],[-127.33133919196932,53.07339608189976],[-127.33109565915976,53.07329292051428],[-127.33086580341336,53.073178406953275],[-127.33063320504598,53.07306560034752],[-127.33040061038763,53.07295334909271],[-127.33017166533783,53.072837703289096],[-127.32995004284449,53.07271748301486],[-127.32973942396033,53.07258985868139],[-127.3295453337193,53.07245308268799],[-127.32936693010974,53.07230940589792],[-127.32919682402111,53.07216171765426],[-127.32902853801224,53.072012879066875],[-127.32885750960914,53.07186575655895],[-127.3286818696058,53.07172037114747],[-127.32851267770882,53.07157210682807],[-127.32833237702198,53.071427329169374],[-127.32818556509903,53.071277127209264],[-127.32821165936028,53.07109528783095],[-127.3282481316276,53.07091669367236],[-127.3282602842468,53.07073725234208],[-127.32824810529681,53.070557528794794],[-127.32823499906857,53.0703778066922],[-127.32821724523771,53.07019870164954],[-127.3282088049027,53.07001893600032],[-127.32823311670354,53.06983991367655],[-127.32828177965399,53.069662302915596],[-127.32834728191459,53.069485067520226],[-127.32834188016311,53.069312547400635],[-127.32817266398399,53.06916316212861],[-127.32792633193519,53.06905890514427],[-127.32766817527565,53.06896487544848],[-127.32747447620841,53.068839854028205],[-127.32744177359453,53.068660916784964],[-127.32743602511405,53.06847719392856],[-127.32743324805891,53.06829904093089],[-127.32728714709656,53.06814099412694],[-127.32704926145796,53.06803776106863],[-127.32678582111544,53.067953874753485],[-127.32654046156817,53.067850724653134],[-127.32627438745698,53.06777247007464],[-127.3260037716148,53.06769818371165],[-127.32577670334136,53.06758194361055],[-127.32558727618235,53.06744342330537],[-127.32533738004354,53.0673442484406],[-127.32506580923302,53.06726941483163],[-127.32478801984477,53.06720472730009],[-127.32449351765655,53.06717385519421],[-127.32419824845877,53.06714858527],[-127.32390166938607,53.06717096162315],[-127.32360604959956,53.06719389128622],[-127.32331050175563,53.06721961655414],[-127.32301910814479,53.067258177585735],[-127.32272872849464,53.06729953265409],[-127.32243731913346,53.06733810137805],[-127.3221418194396,53.0673649438154],[-127.32184939466079,53.06740071632606],[-127.32155267300585,53.06741860572263],[-127.32125602087581,53.067438734901295],[-127.32095778105966,53.06743814450714],[-127.32065758283873,53.067434222264104],[-127.32037891926217,53.06749168548853],[-127.3201257551092,53.067587530039496],[-127.31985608574466,53.06766395154084],[-127.31956772593144,53.06771031464645],[-127.31927323610356,53.067739944683915],[-127.31898181797628,53.067777940092135],[-127.3186893876874,53.06781370477027],[-127.31839700898487,53.06785114463937],[-127.31811952783586,53.06791699863394],[-127.31786246147654,53.068007843323805],[-127.31762946030703,53.06812082302668],[-127.31743074736242,53.068254721113604],[-127.31724249417296,53.0683940964721],[-127.31703617825637,53.06852359603963],[-127.31682034409474,53.068648153937225],[-127.31660258499717,53.06877049157333],[-127.31638294059586,53.06889284980004],[-127.3161651962195,53.06901574226367],[-127.31595124361735,53.069140842320635],[-127.31574491985073,53.0692703306149],[-127.31553955692343,53.069400937438566],[-127.31532561776166,53.069526591985706],[-127.31509543244039,53.06964065571273],[-127.31488625800942,53.0697690624712],[-127.31471419736795,53.069918339085305],[-127.31443931741273,53.06997799608916],[-127.31415694260737,53.07003717103293],[-127.31394870769066,53.07016612143676],[-127.31384265251295,53.07033371338343],[-127.31377796356055,53.070509254416685],[-127.31372459094653,53.07068747562142],[-127.31346531677308,53.07076824005026],[-127.31317076678302,53.07079673455585],[-127.3128762825107,53.07076694484846],[-127.31257795037334,53.070764101728855],[-127.31228125313125,53.0707836437136],[-127.31198568837236,53.070809340423146],[-127.31170229326692,53.07086627940666],[-127.31152159061295,53.07100893215335],[-127.31136836105205,53.07116304188715],[-127.31121607467779,53.07131769676666],[-127.31104866067135,53.071466925073246],[-127.31087647828477,53.07161339993767],[-127.31069293842359,53.07175495316618],[-127.31047516536538,53.07187839971685],[-127.31026311750259,53.072005144273206],[-127.31010230149566,53.07215653921099],[-127.30994242616569,53.072307914505686],[-127.30972274204271,53.07242970428113],[-127.30950592195748,53.072553694200884],[-127.30932045493525,53.072694154809426],[-127.30911220723203,53.072823096323994],[-127.30890678926856,53.07295312673557],[-127.30867945108561,53.073069951884555],[-127.30845403044749,53.07318787597814],[-127.30826003176105,53.07332450257038],[-127.30810393601497,53.07347751874148],[-127.30794216213636,53.07362835626619],[-127.30773389070407,53.07375729544733],[-127.3075265772699,53.07388677947315],[-127.3072742880631,53.07398258569427],[-127.30698685065526,53.074030592529816],[-127.30668832098456,53.07402156844237],[-127.30639020787925,53.07402655154708],[-127.30609226473696,53.07403657044142],[-127.30579423753004,53.07404434822121],[-127.30549815976107,53.074024087567544],[-127.30522035599117,53.07395935426615],[-127.30498597173768,53.07384763830305],[-127.30479656740233,53.07370852950566],[-127.30463669423085,53.073556767117324],[-127.30448330333084,53.073402691627884],[-127.30431695131921,53.07325324165203],[-127.30412664202234,53.07311470658559],[-127.30392345773127,53.07298359306792],[-127.30370832109949,53.072858770204334],[-127.30347668944708,53.07274477961246],[-127.30321868487995,53.0726546131313],[-127.3029534476022,53.07257293520802],[-127.30267829896441,53.07250312830913],[-127.30241575452027,53.07241749275101],[-127.30219330307133,53.07229779521798],[-127.30199748307578,53.07216211465809],[-127.3018025741496,53.072025858929536],[-127.30159295347819,53.07189761849735],[-127.30136134980225,53.07178417934705],[-127.30116553720177,53.07164906214736],[-127.30097893215645,53.0715087958144],[-127.30078310473229,53.071373113344734],[-127.30057993675834,53.07124142916559],[-127.30037217555203,53.0711126013106],[-127.30014971968095,53.070992344186735],[-127.2998998791416,53.07089367136195],[-127.29961764717304,53.070836262505864],[-127.29931989710924,53.070821608238184],[-127.29902219884323,53.07080863810321],[-127.29872417573092,53.07081583344477],[-127.2984265289817,53.07080453772985],[-127.29812706475954,53.0707949466936],[-127.29785474684796,53.070725097588344],[-127.2975580793421,53.07071546541814],[-127.29726139279428,53.07073553429026],[-127.29696328237792,53.07073937318077],[-127.29666630680582,53.07071965635096],[-127.29637185191834,53.07069039011052],[-127.29607911274263,53.070656065892805],[-127.29578467567346,53.070627353841026],[-127.29548850693496,53.07060315159774],[-127.2951899696279,53.07059297816458],[-127.29489304345822,53.07060519920304],[-127.29459637337747,53.070625817036124],[-127.2942983852512,53.0706341304434],[-127.29400001886404,53.070629555351395],[-127.2937041900241,53.07064736459206],[-127.29346987777734,53.070750788963565],[-127.29317897529772,53.070715307856155],[-127.29290382064983,53.070644357845275],[-127.29261533822014,53.070595965946794],[-127.2923372020427,53.07064215901434],[-127.29208585907374,53.07073904309803],[-127.29183451495692,53.07083592664149],[-127.29160537200437,53.07095553554483],[-127.29132219174504,53.07098945426239],[-127.29101835390533,53.07098996985016],[-127.29072180357979,53.070983690121224],[-127.29047201909735,53.07088611762582],[-127.29028360269173,53.07074697519448],[-127.29003195169767,53.07064943113814],[-127.28978031875404,53.07055244219465],[-127.28952868696082,53.070455452709666],[-127.28927525523608,53.070360723630785],[-127.28900743278759,53.07028463720696],[-127.28870709816833,53.07027670833022],[-127.28841205001247,53.07025863523465],[-127.288141399741,53.07018146603835],[-127.287905280191,53.07007197687569],[-127.28770490380593,53.06993856403469],[-127.28748343177672,53.069818263742974],[-127.2872610192263,53.069697982257956],[-127.28706620293482,53.06956282229592],[-127.28696291724138,53.0693941749453],[-127.28692383564422,53.069215297939984],[-127.28688571326576,53.06903696629372],[-127.28681219938947,53.06886351179164],[-127.28664414122235,53.06871629729206],[-127.28639614665883,53.06861533486762],[-127.28619579901515,53.06848248397257],[-127.28605542623582,53.06832376068507],[-127.28596143973218,53.068152760896275],[-127.28582756735031,53.06799229006309],[-127.28561623055974,53.067866837538396],[-127.28534194910095,53.06779305453817],[-127.28507500722297,53.067714152628646],[-127.2848544476559,53.06759272585382],[-127.28467158649855,53.067450708035366],[-127.28452660872203,53.067293718478645],[-127.28439087517222,53.06713325730537],[-127.28421544105998,53.066988925682345],[-127.28398662207668,53.06687262553566],[-127.28375800559759,53.066762481808084],[-127.28366118719688,53.06659039927999],[-127.28359696769502,53.06641459143898],[-127.28354582982742,53.066238085527154],[-127.28351516850488,53.06605911573662],[-127.28349945741176,53.06587942759309],[-127.28351085585834,53.065700000621554],[-127.28351381932029,53.06552010050459],[-127.28344684025096,53.06534545210156],[-127.28331020709548,53.065185564201],[-127.28314396187575,53.06503608370893],[-127.2829721937231,53.06488890427665],[-127.2828142836991,53.064736526667055],[-127.28268228584896,53.064575467031524],[-127.2825697528751,53.064409157412825],[-127.28248043708408,53.06423754814575],[-127.28242742051997,53.06406049720614],[-127.28240890396079,53.06388083923692],[-127.28239693796753,53.063701665949054],[-127.28239337242465,53.06352183660833],[-127.282406643782,53.06334238920376],[-127.28242833236965,53.06316285036364],[-127.28244813697157,53.0629833319602],[-127.28246608751309,53.06280383366982],[-127.28247654760965,53.06262441671018],[-127.28248045740158,53.06244451503305],[-127.2824787604302,53.06226466526725],[-127.28246773647886,53.062085481589776],[-127.28244644167381,53.06190640944494],[-127.2824737378621,53.06172737433993],[-127.28254416607116,53.06155234434485],[-127.28254438857229,53.061374159088786],[-127.28247274062878,53.061199560543514],[-127.28247946065719,53.061019619229285],[-127.28245815138744,53.06084054713897],[-127.2824583403882,53.060661241530326],[-127.28241930288375,53.060482926756904],[-127.28244755690581,53.06030443694041],[-127.28243277908051,53.06012472902993],[-127.28244978664418,53.05994524067567],[-127.28247426890297,53.0597656711112],[-127.28246137691792,53.05958650747233],[-127.28238974728343,53.05941190853437],[-127.28232372613964,53.05923780447203],[-127.2823369625985,53.05905723635162],[-127.282364289157,53.05887875647463],[-127.28239439394264,53.058699681588465],[-127.2824132868154,53.058520737417375],[-127.28235746722746,53.05834371638872],[-127.28222460010885,53.05818435077981],[-127.28198679335625,53.058077665383045],[-127.28169571693205,53.05803320244684],[-127.28145602877761,53.05792653641916],[-127.28124746397162,53.05779768400185],[-127.28116948060172,53.05762931226636],[-127.28120608864573,53.05744905534659],[-127.28120439727428,53.057269205044214],[-127.28120177936586,53.05708937374294],[-127.28120663764489,53.05691001713607],[-127.28119371805707,53.05672973278091],[-127.28124821911899,53.05655375520712],[-127.28146983714821,53.05643368174745],[-127.28104874771145,53.05638558099604],[-127.28075699373488,53.05634896773792],[-127.28046692459264,53.056306723277714],[-127.28018304874615,53.056252648618205],[-127.27990089027176,53.05619351622471],[-127.2796160891021,53.05613945024586],[-127.27932864721772,53.056091015447876],[-127.27903773900509,53.056051582702935],[-127.27874508079802,53.05601608599026],[-127.27845247383797,53.05598227345811],[-127.27815722575693,53.05595409204391],[-127.27786377736221,53.055923093276135],[-127.27757283793653,53.055882536634265],[-127.27728021583758,53.055848156571365],[-127.27698422820954,53.05582614829261],[-127.27668657429021,53.05581087222119],[-127.27638988134322,53.05579671462621],[-127.27609722710825,53.05576121134539],[-127.27581958800981,53.055696417187406],[-127.27554191784056,53.05563105791219],[-127.2752484396568,53.05559892339174],[-127.27495242116487,53.0555757897316],[-127.27466413066824,53.05553014996397],[-127.27437430693206,53.055495176689554],[-127.27407669017488,53.055481023283455],[-127.27378208735473,53.055474116341685],[-127.27348637062443,53.055491874938845],[-127.27318784578985,53.0554788407737],[-127.27289103687497,53.05546019308085],[-127.2725957455949,53.055430312842034],[-127.27232633001823,53.05535925385019],[-127.27208481028912,53.05525203295013],[-127.27183605471878,53.055153298854044],[-127.27157548122446,53.055065333198996],[-127.27132948768924,53.05496488284647],[-127.27111820815618,53.05483771852942],[-127.27091979140675,53.05470313564121],[-127.27070667972832,53.05457711993209],[-127.27050466268918,53.05444705769607],[-127.27034399087061,53.05429301662909],[-127.27026141208171,53.0541258079817],[-127.27030274178199,53.05394549477622],[-127.27031230772651,53.05376553228858],[-127.27016119920447,53.05361866777482],[-127.26992510098938,53.05350522510095],[-127.26972581764825,53.053372326022235],[-127.26954582836011,53.05322857744887],[-127.26936030203764,53.05308712943532],[-127.26915368470203,53.05295935565725],[-127.26892499757044,53.05284302523066],[-127.26871464592165,53.05271529083219],[-127.26855780779785,53.05256401222361],[-127.26848996877426,53.05238935519272],[-127.26844726079018,53.05221107510374],[-127.26836637597273,53.05203712295885],[-127.26821790804291,53.05188462433397],[-127.26799928038233,53.05176090432684],[-127.26777334760816,53.051642856651014],[-127.26753009445622,53.05153957192398],[-127.26726234626071,53.051460639128216],[-127.26698377342207,53.05139470488939],[-127.26672153188689,53.0513123498333],[-127.26647733964333,53.05120850823509],[-127.26623133052493,53.05110637108269],[-127.2659889921559,53.05100194379532],[-127.26574663840842,53.05089696033996],[-127.26550064942134,53.050795377310834],[-127.26524919023866,53.0506983350015],[-127.26499774903377,53.05060185677776],[-127.26476270634909,53.05049118973897],[-127.26456803329786,53.050355435512955],[-127.26437613803984,53.05021853056725],[-127.26413746260928,53.050111263155706],[-127.26387693602048,53.0500232802545],[-127.26362184860882,53.04992963531728],[-127.26339688122864,53.04981213384893],[-127.26320772046073,53.04967295646327],[-127.26304069666219,53.04952401192053],[-127.26288569214692,53.049370464923214],[-127.26273345006733,53.049215758556116],[-127.26258767411049,53.04905875049611],[-127.26245395004337,53.04889824244726],[-127.26232300376078,53.048736592853594],[-127.26217817228738,53.0485795652127],[-127.26204630297656,53.0484184810157],[-127.26200369266502,53.048242438773244],[-127.26203197428248,53.04806226766371],[-127.26203224950268,53.04788296077002],[-127.26193658877303,53.047714209538434],[-127.26176770895844,53.04756528299793],[-127.26158408496511,53.047423246666064],[-127.26139956861316,53.047282331270765],[-127.26122609786844,53.04713625912494],[-127.2610581313809,53.04698621012685],[-127.26094402773124,53.046825490687574],[-127.26090506004118,53.0466460470879],[-127.26083726039957,53.04647082923573],[-127.2607666849284,53.04629676163253],[-127.26072588336051,53.04611844920543],[-127.2606981424129,53.04593944140956],[-127.26065920984608,53.04576111793193],[-127.260589546093,53.045586475625846],[-127.26048549734632,53.04541781269375],[-127.2603629013977,53.045253821351935],[-127.2602236270282,53.04509449952331],[-127.26002811642317,53.04496042324228],[-127.25977128310632,53.04486959487393],[-127.25949813666283,53.044795740831745],[-127.25921965311476,53.04473091727722],[-127.25892651349206,53.04470770451678],[-127.25862836637967,53.04470416030218],[-127.25833239970869,53.0446798645322],[-127.25804686136063,53.044629117097074],[-127.25780368852483,53.044526367577944],[-127.25761365955616,53.0443877463438],[-127.25745773520556,53.044233637164155],[-127.25728709999977,53.04408752903935],[-127.25706125456857,53.04397002496986],[-127.25684646939025,53.04384736425028],[-127.2566794743782,53.04369785453687],[-127.25653649936768,53.043539123660636],[-127.25635484433606,53.0433992906097],[-127.25610075654973,53.04330618382969],[-127.25582761011202,53.043231765559135],[-127.2555863168849,53.0431284267233],[-127.25537972321317,53.04299838750749],[-127.25515848359953,53.04287803370576],[-127.25491893126603,53.042770757213184],[-127.25468122994646,53.04266233991197],[-127.25444716793501,53.04255107734692],[-127.25421494053985,53.042438118333386],[-127.25397904638727,53.04232800393768],[-127.253733118531,53.0422258312548],[-127.25350641608863,53.04211001502939],[-127.25334501041661,53.04195932063037],[-127.25326703450575,53.041786447734296],[-127.25325329672513,53.04160616875217],[-127.25325919605818,53.04142623707076],[-127.25324550644214,53.04124707819172],[-127.25320748621998,53.04106705700067],[-127.25307868199,53.04091265405751],[-127.2528868020554,53.040774053876206],[-127.25274758683129,53.0406152784821],[-127.25263429150087,53.04044838324894],[-127.25253215454906,53.04027968401575],[-127.25243838180347,53.040109219427514],[-127.25235014898401,53.039937019472795],[-127.25227403202672,53.0397635612642],[-127.25222117224835,53.03958650323361],[-127.25219813352257,53.03940744329361],[-127.25218349100001,53.0392277294371],[-127.25217260087885,53.03904854055618],[-127.25216823924768,53.038868726543406],[-127.25215265566804,53.03868902261491],[-127.2521324268722,53.03850993276256],[-127.25211872656304,53.03833021777846],[-127.25211621780012,53.03815037506736],[-127.25212960918286,53.037970928443826],[-127.25215233923731,53.03779138271152],[-127.25216573035416,53.037611936046325],[-127.25214923749871,53.037432806448315],[-127.25212524081017,53.03725263579562],[-127.25205378998248,53.03707857188035],[-127.2518584595318,53.036948971778614],[-127.25159341035037,53.03686213085541],[-127.25134755290865,53.03676107318072],[-127.25113361503401,53.03663391051238],[-127.25100936153575,53.03647497427069],[-127.25099655973897,53.036294119855704],[-127.25099965746959,53.03611366167938],[-127.25093661024403,53.035939507953124],[-127.25080665749883,53.03577726991524],[-127.25065173246178,53.03562370578781],[-127.25048480796681,53.0354747422664],[-127.25031880957539,53.035325212850935],[-127.2501592922864,53.03517393803967],[-127.25000250389162,53.0350203838298],[-127.24986796188074,53.0348604346625],[-127.24977232923435,53.03468998735751],[-127.24967206876252,53.03452070963121],[-127.24951718370558,53.034367699415355],[-127.24932904720934,53.03422793306328],[-127.24913633269514,53.034091012030494],[-127.24894269309917,53.0339541004765],[-127.24876102183882,53.03381145867381],[-127.2486209199476,53.033653243401154],[-127.24852532656782,53.03348335944203],[-127.24845199773449,53.0333087482474],[-127.24840195578672,53.033131658279956],[-127.24836401123942,53.032952754826304],[-127.24827865125845,53.03278163273831],[-127.24813113396208,53.03262518075724],[-127.24797254291504,53.0324727724881],[-127.24782687874497,53.03231573571173],[-127.24770808819873,53.032151134806114],[-127.24763572283742,53.03197707765077],[-127.24758940426474,53.03179938307292],[-127.2475375002047,53.03162231232824],[-127.24748931494989,53.03144463741899],[-127.2474085884429,53.0312717891301],[-127.24722979334909,53.03113135582868],[-127.24698391367107,53.031028048108034],[-127.24675087740992,53.03091676854245],[-127.24654805426806,53.03078443270315],[-127.2463792957432,53.03063548268295],[-127.24629117293361,53.03046551786603],[-127.24629898421693,53.03028613027457],[-127.24635543047015,53.03010902608737],[-127.24641096658794,53.02993249627558],[-127.24645149886136,53.02975444841579],[-127.24648080819698,53.02957538946244],[-127.24650730899339,53.02939636911742],[-127.24653194192078,53.02921735951416],[-127.24653600089734,53.02903745555984],[-127.24652885537614,53.028857660997865],[-127.24654226743633,53.02867821403466],[-127.24657717933496,53.02849966055156],[-127.24663552254715,53.02832366558879],[-127.24673421753053,53.02815395916831],[-127.24682068452505,53.02798158469982],[-127.24681264631562,53.02780348493727],[-127.2467142648966,53.02763362860882],[-127.24658061908251,53.02747142459355],[-127.24652794618142,53.027299399662446],[-127.24653377336838,53.02711610588013],[-127.24640417692905,53.02696450959964],[-127.2461573165261,53.02685896922355],[-127.24590514996235,53.026763014456726],[-127.24565381212457,53.02666368843069],[-127.24546492772302,53.026528406316054],[-127.24539537455094,53.0263543177248],[-127.24539195251317,53.02617392771432],[-127.24540723577053,53.02599446088711],[-127.24542061881219,53.02581389343774],[-127.24537993419905,53.02563669389235],[-127.2452408460561,53.02547959319143],[-127.24506196607626,53.0253346747192],[-127.24488956568075,53.02518800213092],[-127.24471624195553,53.025041903844986],[-127.24454108371259,53.02489638946974],[-127.24436868689472,53.024749716082674],[-127.24419997653027,53.024601327057425],[-127.24403956371307,53.02444948831227],[-127.24385890716026,53.024307392884474],[-127.24366899922458,53.024168747724886],[-127.24352342744409,53.02401283399245],[-127.24341112221653,53.023845353887396],[-127.24333042674765,53.02367250203936],[-127.24330184926478,53.02349406237157],[-127.24328351561853,53.0233143850957],[-127.24325959730567,53.0231353314686],[-127.24324782287006,53.02295614983908],[-127.24324629385497,53.02277630436878],[-127.24324849877644,53.02259641056288],[-127.2432478958456,53.02241655529474],[-127.24323237097673,53.022236848302946],[-127.24324111973088,53.02205745028916],[-127.24320978337748,53.02188016018247],[-127.24307803610169,53.02171793197625],[-127.2428615858143,53.02159693988416],[-127.2425921886447,53.02151740479649],[-127.24234277314811,53.021418616384544],[-127.24222145408552,53.02126131589699],[-127.24209156328148,53.02109851119234],[-127.24194402732017,53.02093924513312],[-127.24182532413788,53.02077575752575],[-127.24176797106048,53.020602658692056],[-127.24175339565346,53.02042350620591],[-127.24175742476794,53.020241916531006],[-127.24175771988357,53.02006036614365],[-127.2417328838148,53.019881321612864],[-127.2416791680061,53.019704822385485],[-127.24161428363824,53.01952956134104],[-127.24154287451243,53.01935493373718],[-127.24146682232315,53.01918091079373],[-127.24139075425524,53.019006323143124],[-127.24131655400289,53.01883172474136],[-127.24124889578894,53.01865704847512],[-127.24118959929886,53.018481172474594],[-127.2411684526878,53.01830096820798],[-127.24116780782751,53.01811886271763],[-127.24113739251112,53.0179409972657],[-127.24105304920884,53.01777042318606],[-127.24095474678244,53.01760168137466],[-127.24084806923149,53.01743413927644],[-127.24073397300185,53.01726780473977],[-127.24061614525445,53.01710206518307],[-127.24049646651562,53.01693634496903],[-127.24037771466227,53.016770614880144],[-127.24026175651474,53.016604855289295],[-127.24014766454619,53.016438511141786],[-127.24003264907823,53.01627274140089],[-127.23991576769849,53.01610699115587],[-127.23979426193476,53.01594297487606],[-127.23966720409055,53.01578012851818],[-127.23953459756365,53.01561959062453],[-127.23939921554681,53.01545963759184],[-127.23926104185524,53.01529971373138],[-127.2391191696227,53.01514150507533],[-127.23897546308855,53.014983880328785],[-127.23882804185037,53.01482741508542],[-127.23867695226905,53.01467267366049],[-127.2385221477753,53.01451908274887],[-127.2383654602042,53.014364399703645],[-127.23820135697952,53.01421202666447],[-127.23802808331591,53.01406479713193],[-127.23784010716753,53.01392613112335],[-127.23762737963524,53.013802849044964],[-127.23735292555382,53.01370766600106],[-127.23705825054972,53.01362391003585],[-127.23680344081099,53.013530205164585],[-127.2366438612394,53.01340412265504],[-127.23657947998299,53.013245098400034],[-127.2365705780551,53.01306757074961],[-127.23659775886058,53.01287901395546],[-127.236643539306,53.01268745596187],[-127.23668669139305,53.01250209362986],[-127.23673570394564,53.012325635131816],[-127.23682120589069,53.01215215593007],[-127.23691704630167,53.011980809545676],[-127.23700446098746,53.01180843076643],[-127.23709745987362,53.01163599332219],[-127.23721121780643,53.011470626824405],[-127.237364566249,53.01131884867392],[-127.23755659402624,53.01118066827849],[-127.23774858817623,53.0110413761971],[-127.23791884524306,53.01089278179233],[-127.23807113266079,53.010736531090664],[-127.2381764282726,53.01056956686242],[-127.23826740606457,53.01039210202317],[-127.23833775180665,53.01021093587834],[-127.23836437279874,53.010035276300265],[-127.23828048206751,53.00987981950877],[-127.23805155635606,53.0097443808312],[-127.2379478807091,53.00958241645318],[-127.23791185279198,53.00940348772877],[-127.23790744017556,53.00921974444351],[-127.23791896685312,53.009038631011634],[-127.23793229490018,53.008855266276974],[-127.23796055443971,53.00867173581101],[-127.23801702318723,53.00849519800709],[-127.23812155244735,53.008334409758234],[-127.23829764150685,53.00819415374712],[-127.23851891776862,53.00806743573066],[-127.23874398966993,53.00794236289181],[-127.23896066997919,53.00781793361694],[-127.23917168435067,53.007691322120195],[-127.23938628314296,53.007559625054],[-127.23960461372292,53.00742789731076],[-127.23980507344724,53.00729186538019],[-127.23996988900605,53.00714949283123],[-127.24003242057502,53.0069891352824],[-127.23994949719784,53.006802855267836],[-127.23997346426373,53.00663226132152],[-127.24016336735654,53.00648626259853],[-127.2402601726401,53.006317143842644],[-127.24034941200212,53.006144177732864],[-127.24021223992285,53.00598592934176],[-127.24001322475202,53.00585185625601],[-127.23980044974233,53.005725781171364],[-127.23956299422039,53.00561733107045],[-127.23932644914804,53.00550830611006],[-127.23911184422855,53.00538336970043],[-127.2389404548109,53.005236121285364],[-127.23881250808563,53.00507384750564],[-127.23870401904247,53.004906321679684],[-127.23860387293185,53.0047370315878],[-127.23850559392221,53.0045677217916],[-127.23839988316442,53.00439961062776],[-127.23828119097529,53.004234441847146],[-127.23814860925904,53.0040733366548],[-127.23800956933395,53.00391454045853],[-127.23786960477919,53.003755753801045],[-127.23773517604215,53.00359522337372],[-127.23761187932865,53.00343177875062],[-127.2375312312805,53.003258921012595],[-127.23751760408352,53.00307920061438],[-127.23755439910005,53.00290062752332],[-127.2376080699975,53.002724118614616],[-127.23765984285893,53.002547064762126],[-127.23771724528581,53.00237051658896],[-127.23777745551692,53.00219450370828],[-127.23786767104153,53.002023214314285],[-127.23790073130532,53.0018446801876],[-127.23804925401352,53.00168846786284],[-127.23832644283246,53.0016233551698],[-127.23861342035372,53.001574393235444],[-127.23890856273603,53.00154887895188],[-127.23920564316897,53.00155808444567],[-127.2394906223563,53.0015046586659],[-127.23969778989999,53.00137528864515],[-127.23982559674592,53.00121312357055],[-127.2400384745885,53.00108761073515],[-127.24028856590958,53.000989722903306],[-127.24054055647878,53.00089350003503],[-127.24077535658579,53.00078344459745],[-127.24097586314483,53.00065021544947],[-127.24121924721516,53.000546792788164],[-127.24149929740629,53.00048444851147],[-127.24179131270019,53.00044830892753],[-127.24203087966872,53.00034212754198],[-127.2420995065961,53.00016713507096],[-127.24220941798372,53.00000011712874],[-127.24226585820914,52.99988745489799],[-127.24236981767459,52.99974011578657],[-127.2425060074131,52.99960980290724],[-127.24269513317716,52.999438587572484],[-127.24293107295907,52.99927248177385],[-127.24321729622254,52.9991024832303],[-127.24349755076165,52.99895159840764],[-127.24365076874363,52.99886144885048],[-127.24384464400312,52.99875685721124],[-127.24397845507488,52.99867308015074],[-127.24412000842082,52.99859874250275],[-127.24418183366564,52.99844735451509],[-127.24417658580069,52.998268101522555],[-127.24418813212354,52.9980886712821],[-127.24420620057256,52.99790861633458],[-127.24423267467382,52.997729028510605],[-127.24426757085331,52.99755047245176],[-127.24431184439139,52.99737293806739],[-127.2443616677587,52.997194224388686],[-127.24441989503012,52.99701542195988],[-127.24449410463329,52.996840368661935],[-127.24459276947812,52.99667234601772],[-127.2447234320513,52.996512950867505],[-127.24487755822713,52.9963583553264],[-127.24505237238247,52.996209135505865],[-127.24524235904329,52.99606816471715],[-127.24544380261159,52.99593603799814],[-127.24566624625079,52.99581994335717],[-127.24591624584612,52.99572092310878],[-127.24617864293191,52.99563073670186],[-127.24644017912944,52.995542800155995],[-127.24671342053188,52.99547267010943],[-127.2469129413763,52.99533887558579],[-127.24705671810302,52.995181580240484],[-127.24716565533771,52.995014011289015],[-127.24734524467,52.99486922001086],[-127.24751923379495,52.99472393183875],[-127.2476131916975,52.99455483540631],[-127.24768925135437,52.99438032490062],[-127.24780477116545,52.994214362100976],[-127.24790055974853,52.99404412530568],[-127.24798320465199,52.99387123033069],[-127.24801717277917,52.99369323823523],[-127.24802308789073,52.993513310704465],[-127.2480243307123,52.99333342365305],[-127.24801718516088,52.99315363435411],[-127.24793215608378,52.99295897103473],[-127.24798211645462,52.992849180121794],[-127.24799921162442,52.992795762259185],[-127.24814403275113,52.99264293688845],[-127.24841812723832,52.99257055214586],[-127.24870600527778,52.99252267576182],[-127.24899487252944,52.992476473692165],[-127.24928078472996,52.99242525466877],[-127.24957079006965,52.99238631906621],[-127.24986695221709,52.99236636907453],[-127.25016420426529,52.992352010192015],[-127.25046051408357,52.99233709572855],[-127.25085771818111,52.9924208597277],[-127.25115076043178,52.99239028863943],[-127.2514268788565,52.99232347875489],[-127.2517129026136,52.99224423551487],[-127.25184723854488,52.99221142986535],[-127.2519949961402,52.9922221881728],[-127.25223673571378,52.992192168188716],[-127.25254623584303,52.9920863329533],[-127.25280037486282,52.99200238721759],[-127.2530508297101,52.99188821264491],[-127.25330988597987,52.9918126141571],[-127.25358304091243,52.99174022720995],[-127.25385040116349,52.991661741971214],[-127.25412357060196,52.991589909450326],[-127.25440123275632,52.99154436904882],[-127.25470305008133,52.991526588002316],[-127.25500688186479,52.991513832298146],[-127.2552944308693,52.9914552921537],[-127.25544649447278,52.99145367273081],[-127.25559268247683,52.99147452939827],[-127.25589012496853,52.991466878066795],[-127.25615744436969,52.99138670244414],[-127.2564374621072,52.99132600733139],[-127.25671452382564,52.99126029548948],[-127.2569158922532,52.991127584146085],[-127.25709452326807,52.99098335219887],[-127.25730351792724,52.99085617121068],[-127.25752294553483,52.990734472995065],[-127.25777003023715,52.990633216423944],[-127.25797235119649,52.99050162264767],[-127.25817235247082,52.990322975458064],[-127.25820627854766,52.99017636820945],[-127.25836152665617,52.98993600468784],[-127.25844694493306,52.98976418353174],[-127.25853891642718,52.98959285714661],[-127.25861216454695,52.989419489213184],[-127.25862455463714,52.98923892624461],[-127.2587024915429,52.98906662882949],[-127.2588217018517,52.988901179515814],[-127.25888462947235,52.98872623602062],[-127.25892695072967,52.98854815945901],[-127.25896739085988,52.988370093986134],[-127.25898349382655,52.988188935328786],[-127.259031644647,52.98801919707571],[-127.25921269616639,52.98786260800662],[-127.2593790061515,52.98771290027135],[-127.25953684434528,52.98756047660054],[-127.25965885449708,52.98739555215433],[-127.25975652277994,52.987196146359494],[-127.25978099874902,52.987046277233915],[-127.25977562011727,52.986864783054024],[-127.25970968637895,52.98668617744346],[-127.25977307188032,52.98652691792929],[-127.25999040560457,52.986398521699535],[-127.26022788254724,52.98628895243417],[-127.2604539495638,52.986172224687714],[-127.26063157433039,52.98602687667457],[-127.2608358445938,52.985898618515016],[-127.26107523201848,52.98579071253784],[-127.2613146014746,52.9856822414187],[-127.2615586261598,52.98557372893102],[-127.26173929954561,52.98543674719683],[-127.26184055914123,52.98526476225645],[-127.26188382281819,52.985087785731814],[-127.26189184277737,52.98491791962995],[-127.26193455728836,52.98472246199833],[-127.26192451368642,52.9845410175177],[-127.26192030074817,52.98436791129305],[-127.26192990301503,52.98418849780772],[-127.26192179145997,52.98400927396742],[-127.26190245626452,52.98382961441737],[-127.26188033036694,52.98364997576077],[-127.26186566638681,52.98347026615521],[-127.26185554010841,52.98328601621077],[-127.2618820169574,52.98304646937336],[-127.26207871275535,52.98300962170457],[-127.26236160698741,52.98295391936655],[-127.2626464140154,52.982899316539786],[-127.2629244344254,52.982836376060696],[-127.26304303683588,52.98268325563776],[-127.2630096649854,52.98250206099078],[-127.2629772018415,52.98232029175013],[-127.26291054631045,52.9821176046857],[-127.26277255055668,52.98199468640077],[-127.262570736296,52.981859003350245],[-127.26238643651347,52.98171640818739],[-127.26223996781523,52.981559394401366],[-127.26201894213494,52.98134210553567],[-127.26197114940094,52.98124063419393],[-127.26173199207217,52.98113505245496],[-127.26147552389357,52.981043659724804],[-127.26121724128056,52.980953962419264],[-127.26095983521361,52.98086257861784],[-127.2606970487551,52.98077797598077],[-127.2604216734341,52.98070976194773],[-127.26013099965628,52.98066019782492],[-127.25984214186771,52.98060892805417],[-127.25957594417282,52.98053501048412],[-127.25933869671691,52.98043108009481],[-127.25911686428573,52.980311850690256],[-127.2589031689468,52.98018357736527],[-127.25869314052726,52.9800535789682],[-127.25848134587324,52.97992639631336],[-127.25828148664168,52.97979292651135],[-127.25807700806115,52.979661191211115],[-127.25791493125233,52.979511627721415],[-127.25778693967683,52.97934768705631],[-127.2576377738707,52.97919350260169],[-127.25744344998834,52.97905773092331],[-127.2572233793905,52.978934561244294],[-127.25697779395426,52.978831835807945],[-127.25674259158322,52.97873292604752],[-127.2566081949032,52.97866767347904],[-127.25650930306469,52.97860429254373],[-127.25647772808053,52.97841971469486],[-127.25644536218863,52.97824018389402],[-127.25642420254408,52.97806054255265],[-127.25639373538023,52.9778821121544],[-127.25634370890151,52.97770445509379],[-127.25629181773279,52.97752681787717],[-127.25623434837955,52.97734980492044],[-127.25616760355766,52.97717456735898],[-127.25608509613248,52.97700229502308],[-127.25597849417832,52.97683589187489],[-127.25584594576213,52.97667480379436],[-127.255704107607,52.97651549111453],[-127.25556690779979,52.976355017108055],[-127.25544083290578,52.97619217405519],[-127.25533606572031,52.9760240652197],[-127.25527117531105,52.97584825145205],[-127.25524538459786,52.97566977077094],[-127.25524284990418,52.97548936577046],[-127.25521889173118,52.97530975379682],[-127.25518841344405,52.97513020228994],[-127.25514029330347,52.97495364490254],[-127.25501239253991,52.97479195042681],[-127.25488846981962,52.97460723468624],[-127.25473188617389,52.97445312540367],[-127.25459106565526,52.974296041851474],[-127.2545466458037,52.974118324074375],[-127.2545310761653,52.97393862253846],[-127.25451738625719,52.97375889200332],[-127.25449623846058,52.973579805682796],[-127.25448160915597,52.9734000940749],[-127.25436665421411,52.97323433406963],[-127.25421294990325,52.973082990651335],[-127.25401861544971,52.97294553679159],[-127.25383901965134,52.97280175745691],[-127.25365117261158,52.97266254843024],[-127.25343855598557,52.972537606841904],[-127.25320758917415,52.97242295529156],[-127.25296663976233,52.972317930894455],[-127.2527211191865,52.97221575187208],[-127.25250967867409,52.97209864996861],[-127.25226657102905,52.97198356082495],[-127.25204475314081,52.97186264146702],[-127.25183671589197,52.97173428626645],[-127.2516608459287,52.971589908188186],[-127.2514996978167,52.97143864032417],[-127.25134313981316,52.97128509105901],[-127.25118199398612,52.97113382273287],[-127.25101340662232,52.97098319803003],[-127.25089857059511,52.97082079544415],[-127.25085878998478,52.97064135028947],[-127.25079021303868,52.97046612877514],[-127.2507160752275,52.97029208693821],[-127.25063822479352,52.970118640318475],[-127.25055664570166,52.969945242178575],[-127.2504713870162,52.96977355958972],[-127.25036385067976,52.96960547545295],[-127.25025446677391,52.96943796668265],[-127.2501952345994,52.96926321040797],[-127.25019739101873,52.969082755056455],[-127.2502191525891,52.96890321234147],[-127.25018408026189,52.9687253934037],[-127.24999626318841,52.9685861782095],[-127.24983973744297,52.96843318237679],[-127.24975484683318,52.96827382296079],[-127.2497621874953,52.968079299312215],[-127.24976530208812,52.9678993985268],[-127.2497372466327,52.96770637101631],[-127.24970773840404,52.967527372117075],[-127.24965682883114,52.96735028573909],[-127.24960118307145,52.9671704433288],[-127.24953537182907,52.96699350596404],[-127.2494455199465,52.966824112551464],[-127.24928919871634,52.96667728207859],[-127.24904713635085,52.96656441665386],[-127.24879530581137,52.96646846478324],[-127.24853169271147,52.9663838442531],[-127.24825462958162,52.96631729685234],[-127.24799643140055,52.966226449430806],[-127.2477912565249,52.966099186417054],[-127.24763469843337,52.96594450241665],[-127.2474873153416,52.965784126514386],[-127.24731523022236,52.96564025763834],[-127.24705908354933,52.96555555480265],[-127.24678364788973,52.96548114186237],[-127.24657744034617,52.96534996074994],[-127.24633667869318,52.96524940376022],[-127.24605149093985,52.96519190280421],[-127.24576123529222,52.96515238595677],[-127.24546835482649,52.96511849964965],[-127.24517899224712,52.96507785123545],[-127.24489217218964,52.96502820964837],[-127.24460975938987,52.96496955520686],[-127.24433632747945,52.96489959823378],[-127.24406553691053,52.96482400923987],[-127.24379925232985,52.96474276855604],[-127.24353747514847,52.96465643206522],[-127.24328664081446,52.96456157874433],[-127.24305302213499,52.964449732741265],[-127.24282121866197,52.96433562573032],[-127.24235303071013,52.96417470065454],[-127.24209487462932,52.96408440484158],[-127.24184401417415,52.963988428061775],[-127.24159944296468,52.963883983701734],[-127.24137223489817,52.96376758404008],[-127.24119465049077,52.963626005704405],[-127.24106858675097,52.96346034962478],[-127.24093033196965,52.9632925804285],[-127.24086764622344,52.9631256916285],[-127.24099066374059,52.96296301490474],[-127.24112386205796,52.96279798936118],[-127.24123180004307,52.962630432541964],[-127.24133879592931,52.962462320692566],[-127.24144956878234,52.962295845483304],[-127.24156877116909,52.96213041096372],[-127.24170958589704,52.96197090785181],[-127.24190810758431,52.9618399343893],[-127.2421454450507,52.96172872388804],[-127.24238573248448,52.96162252044848],[-127.24262123580677,52.961512448994554],[-127.242842436542,52.96139188577281],[-127.24303237325023,52.96125427667328],[-127.2432090287531,52.96110896250147],[-127.2433743657256,52.960959284705034],[-127.24351800658816,52.9608008700769],[-127.243654108459,52.96064029343963],[-127.24382236058271,52.960494502134246],[-127.24405491887615,52.96037997592108],[-127.24431335694905,52.96028927543854],[-127.24458236660516,52.96020910486914],[-127.24482753881965,52.9601112543403],[-127.24502021965534,52.95997249209716],[-127.24517516825962,52.95981843854599],[-127.24529715452171,52.95965352621989],[-127.24536662707905,52.95947851780655],[-127.24539766009154,52.95929663567105],[-127.24548600459956,52.95912928149339],[-127.24565043398188,52.95898073045851],[-127.24583926345113,52.95883808048036],[-127.24600832745756,52.958688924004306],[-127.24613223717067,52.95852623169422],[-127.24624761633281,52.95835858183271],[-127.24635451600396,52.958188224279326],[-127.24644922403374,52.95801575421037],[-127.2465299240506,52.95784231158454],[-127.24659295339924,52.95767017660748],[-127.24658291758583,52.95748705197435],[-127.24646051385471,52.95731912087281],[-127.24621557150002,52.95723317704692],[-127.24592010972448,52.957172978524035],[-127.2456567076995,52.957093397180614],[-127.24554641866415,52.95692533701401],[-127.24552348397916,52.95674682252125],[-127.24551818653303,52.95656588904946],[-127.24547197517535,52.95638874136508],[-127.24541180846745,52.95621287088569],[-127.24535164064044,52.95603643553819],[-127.2453137134405,52.955855838035205],[-127.24527119948347,52.95567753937812],[-127.24514720432056,52.95551858931536],[-127.24496861880729,52.95537366465818],[-127.24478355162017,52.95523048481246],[-127.24512992664168,52.955183115894016],[-127.24541763753487,52.95513805184572],[-127.24568682564478,52.95506515636264],[-127.24593557921466,52.954963347011926],[-127.24617487946313,52.95485714534827],[-127.24641028642971,52.95474538981088],[-127.24664765449728,52.95463696618056],[-127.24689460483383,52.95453741522965],[-127.24715595401439,52.95445227150285],[-127.24742690061512,52.95437600015606],[-127.2476978476292,52.954300284039014],[-127.24796112217696,52.95421680362845],[-127.24820809960974,52.95411836129527],[-127.24844164937473,52.954007177102916],[-127.24867227938964,52.953892105386515],[-127.2489077236595,52.9537820208509],[-127.24915080376792,52.953678014250265],[-127.2493957799144,52.953575116689066],[-127.24964555384456,52.9534766415617],[-127.24990110161761,52.95338483782977],[-127.25016535659034,52.95330358335332],[-127.25044115704759,52.95323453348822],[-127.25072081644136,52.953169924821296],[-127.25099663147088,52.95310142934842],[-127.25126089919844,52.9530207370614],[-127.25152115758843,52.952930556256355],[-127.25178316339628,52.952836429318026],[-127.25203753074253,52.95273622356268],[-127.2522767375437,52.95262777760274],[-127.2524913644987,52.95250782060787],[-127.2526606932777,52.95236929294984],[-127.2527628666925,52.952197858091296],[-127.25284234291841,52.95201601334262],[-127.2529502386815,52.95184900023571],[-127.25314798500344,52.951725859388944],[-127.25342233585219,52.951640007071965],[-127.25365303687727,52.9515277216982],[-127.25383807877914,52.951385106902755],[-127.25401650371737,52.95123919115087],[-127.25422160084331,52.95111260798165],[-127.25449345441491,52.95103686607771],[-127.25477211926457,52.950970581495035],[-127.2550508341678,52.950906528166655],[-127.25530165273932,52.950813077134974],[-127.25552939232377,52.95069578077266],[-127.25578583345417,52.95060338944113],[-127.25605952824284,52.95052705936116],[-127.25629320318534,52.95042146115943],[-127.25649160792116,52.95028934168923],[-127.25667472124736,52.95014505719578],[-127.25684935394536,52.9499975007643],[-127.2570155227454,52.94984723709308],[-127.25716456917057,52.94968593985144],[-127.25731560926523,52.94952854808847],[-127.25749045257038,52.94938827747567],[-127.25772626294822,52.94929217503714],[-127.25802601165533,52.94924638605276],[-127.25832044810048,52.949209618776834],[-127.25861216377086,52.94917568610734],[-127.25890585872735,52.94914564956831],[-127.2591996028716,52.949117288354934],[-127.25949427136419,52.94908892548369],[-127.25978794838046,52.94905832208171],[-127.26008068404398,52.949027172140696],[-127.26037340436811,52.94899602163114],[-127.2606670636461,52.948964860336794],[-127.26095978155446,52.94893315251035],[-127.26125348965219,52.94890366581088],[-127.26154912789498,52.948876408092936],[-127.26184181288092,52.94884413357108],[-127.26212949617614,52.94880013992687],[-127.26241222781877,52.94874612117939],[-127.26269291348414,52.9486865111369],[-127.26297257439855,52.948623558222984],[-127.26325129325872,52.94856004989872],[-127.26353098552002,52.948498207050484],[-127.26381265740247,52.94844026927126],[-127.26409918034055,52.94838900303229],[-127.26438670854121,52.94833996672675],[-127.26467324502289,52.94828869892794],[-127.2649539745981,52.9482307685002],[-127.26522691338025,52.94816115805543],[-127.26549303710017,52.94808208962688],[-127.26575526557004,52.94799745886622],[-127.2660145396919,52.94790781155774],[-127.26627000027064,52.94781485148361],[-127.26652349752162,52.94771910567783],[-127.26677417204344,52.94762226895697],[-127.26702293146083,52.9475237667311],[-127.26727069882119,52.947423042167514],[-127.26751557831612,52.94731954187085],[-127.26775473177581,52.94721161981983],[-127.26798627857352,52.94709873145702],[-127.26820738246323,52.94697979561978],[-127.26841233348449,52.94685039099736],[-127.26860210575684,52.94671217480678],[-127.26878522778115,52.9465695560322],[-127.26897115330385,52.94642746261145],[-127.2691665967497,52.946291990600194],[-127.26937340500146,52.946162555200104],[-127.26959159515853,52.94603972997665],[-127.26982699187653,52.945931279162],[-127.27008238391161,52.94583719050781],[-127.27031675351932,52.94572538759358],[-127.27053676896207,52.945601420120646],[-127.27081114122795,52.94554970343523],[-127.27111574825055,52.945543053378834],[-127.27141309954084,52.94554264932497],[-127.27171067003083,52.9455500782317],[-127.2720082892933,52.94555863554712],[-127.2723050695996,52.94557055437352],[-127.27260269083457,52.9455796660457],[-127.27289997533728,52.94557701751998],[-127.27319887366765,52.94556649678006],[-127.27349447862434,52.9455700243962],[-127.27378340219668,52.94559996498061],[-127.27409106357976,52.94560167511243],[-127.27437212833816,52.94561768579454],[-127.27467047163675,52.94561950422747],[-127.27498483209337,52.94565812331628],[-127.27525673201951,52.94567983473863],[-127.27554417820967,52.94572211496104],[-127.27579233830909,52.94582253283465],[-127.27590561843385,52.94555905651824],[-127.27588907798598,52.94538047612169],[-127.27578799965663,52.94521122159837],[-127.27568042540085,52.94504315807933],[-127.27554474598357,52.94487036015307],[-127.27550884985494,52.94469927850462],[-127.27546437354437,52.94452156544018],[-127.27547669571666,52.9443415515187],[-127.27546668974087,52.944163465013865],[-127.2753971297867,52.94398826503677],[-127.27533405204883,52.943811874071486],[-127.27531670889134,52.94373081399532],[-127.27540770698072,52.943594776724936],[-127.27560677743872,52.94336399266708],[-127.27570727548223,52.94320264040071],[-127.27575132975471,52.9430245328868],[-127.27579632263352,52.94284640619686],[-127.27581519181904,52.94266745078382],[-127.27581633059117,52.94248755778342],[-127.27583704615982,52.94230801747284],[-127.27583660819411,52.94216905243182],[-127.27599836491659,52.941968375425965],[-127.27611272643718,52.94180351020302],[-127.27622987490649,52.94163861463331],[-127.27635833596182,52.94147751433763],[-127.27655749379511,52.94134310960912],[-127.27675859804364,52.94121148970716],[-127.27694266032987,52.94107107950621],[-127.27715225792026,52.94094328482087],[-127.27736091328165,52.94081494408173],[-127.27756864282776,52.94068660402962],[-127.27777920947713,52.94055991836764],[-127.27799449338907,52.940435422551985],[-127.27821170502612,52.94031259096275],[-127.2784326944673,52.94019195041452],[-127.27865561164674,52.940072974064925],[-127.27888042675924,52.93995566222735],[-127.27910904950903,52.93984054105787],[-127.27934050938329,52.93972707416635],[-127.2795710288519,52.939613617019326],[-127.27980345912107,52.93950125935544],[-127.28003682940574,52.93938945583782],[-127.28026440571206,52.93927098151364],[-127.28049095745176,52.93914972053502],[-127.28073500152222,52.93905180408785],[-127.28101004135596,52.93899334017677],[-127.28130354903898,52.93895988651509],[-127.28160387227226,52.93893587962716],[-127.28189942823492,52.93890857065942],[-127.28219500056028,52.93888181664808],[-127.28249079183043,52.93886233975627],[-127.28278695456498,52.938855195048816],[-127.28308370816872,52.93886765142107],[-127.2833806646573,52.93888682920662],[-127.28367731727626,52.93889592300181],[-127.28398320239663,52.93890210905469],[-127.28429076519318,52.93890211648702],[-127.28457693455933,52.938872661715095],[-127.28483373168434,52.93879644721596],[-127.2850688467946,52.938681252260835],[-127.28527716241057,52.9385428051146],[-127.28544981879415,52.938396345947645],[-127.28560456143259,52.93824335774633],[-127.28574699545196,52.938083779365115],[-127.28587341126816,52.93791821621351],[-127.28598295626675,52.93775003088074],[-127.28607285797237,52.93757925370238],[-127.28614776776219,52.937405842874654],[-127.28621047118632,52.93722920314527],[-127.2862609705412,52.93704989935733],[-127.28629839215294,52.93686960872072],[-127.28632278738283,52.936690025233354],[-127.28633135399883,52.936511179524736],[-127.28632130229059,52.93633252826908],[-127.28628511623822,52.93615305078876],[-127.28622658584896,52.93597380845297],[-127.2861486028439,52.93579870564703],[-127.28605308134232,52.93562939803929],[-127.28592063219511,52.93547114516659],[-127.2857566967704,52.9353199514697],[-127.28558535857441,52.93516996808533],[-127.28543250338221,52.935015290733176],[-127.28530178634735,52.93485253530964],[-127.28519322781727,52.93468336931094],[-127.2851255571382,52.93450982978961],[-127.28512328740963,52.93434230960368],[-127.28514067313223,52.9341773721654],[-127.28515984610966,52.93397879322218],[-127.28516749265886,52.9337999484284],[-127.28523178951681,52.933614890408585],[-127.28530285725778,52.93346841919548],[-127.2854406449216,52.93331001202319],[-127.28558875401448,52.93315373340536],[-127.28574434843497,52.93299849354753],[-127.28590462380178,52.9328437582053],[-127.28606676328876,52.93268956710075],[-127.28622703659138,52.93253484025331],[-127.28638167034687,52.93237904509148],[-127.28653072881983,52.932223319601114],[-127.28668445330257,52.93206809877555],[-127.28684379982035,52.93191393699424],[-127.28700596623911,52.93176086487258],[-127.28716812932122,52.93160722768654],[-127.28732748943949,52.93145362987067],[-127.28748120823775,52.93129840793148],[-127.28762650079739,52.93114215720639],[-127.28775960502021,52.93098323330034],[-127.28787865824198,52.930821665601314],[-127.28797988571728,52.93065637472192],[-127.28805016124198,52.93048468906184],[-127.28809327737191,52.93030826172735],[-127.2881167033114,52.93012756689497],[-127.288127005283,52.929944774190545],[-127.2881335792535,52.929761466377606],[-127.28814297383578,52.9295792394447],[-127.28815990516927,52.92939973633002],[-127.28817124743014,52.92922029436063],[-127.28817790790548,52.92904034772379],[-127.28818085703519,52.9288604327192],[-127.28818474725207,52.92868107224617],[-127.28819048356516,52.9285011356621],[-127.2881943566213,52.92832121048469],[-127.28819729099952,52.92814130452643],[-127.28820023998504,52.92796138942229],[-127.28820411322206,52.92778147314787],[-127.28821265305523,52.92760206166242],[-127.28822585751281,52.9274225991002],[-127.28824465052925,52.92724307534608],[-127.28826438227982,52.92706354129224],[-127.28828314107065,52.92688289712532],[-127.2883028405009,52.926702798523486],[-127.28832440070876,52.92652212364157],[-127.2883487646467,52.92634198289453],[-127.28837967451189,52.92616288223534],[-127.2884152657449,52.925984295149576],[-127.28845929785076,52.92580730121366],[-127.28851267951379,52.92563188150313],[-127.28858012391892,52.925459105139986],[-127.28868126809365,52.925291572377745],[-127.28880583928388,52.92512825695161],[-127.288943485163,52.92496648376532],[-127.28908116199608,52.9248052749044],[-127.28920944087905,52.92464191835841],[-127.28932836907723,52.92447698745962],[-127.28945197973948,52.92431312585059],[-127.2895944206129,52.92415578219112],[-127.28975943415585,52.9240054802521],[-127.28991880725697,52.92385355428397],[-127.29005646162531,52.923692335372465],[-127.29018456171482,52.92352281994141],[-127.29025018434257,52.92335174785351],[-127.29021978461031,52.9231789311032],[-127.29012598308665,52.923004003059916],[-127.29000255086564,52.92283555933084],[-127.2898580797895,52.92267968318523],[-127.28968313735359,52.92253254187702],[-127.28951558089706,52.922383633780925],[-127.2893710281772,52.92222495158793],[-127.28924124213526,52.92206162447329],[-127.28915040324293,52.92189226685598],[-127.28910779039117,52.921715656433946],[-127.28909580031451,52.92153479242118],[-127.28909867939812,52.921353200653286],[-127.28909776317049,52.92116884410129],[-127.28908157508828,52.92097289150859],[-127.28907476610644,52.920778521747685],[-127.28910100300753,52.920598915509785],[-127.28918678586214,52.920447796228544],[-127.28936712016473,52.92034214726433],[-127.28964387277948,52.92028307743965],[-127.28996595248482,52.920243683465245],[-127.29028037976929,52.92019821290297],[-127.29055971062847,52.920131823309966],[-127.29083900692191,52.920064321643316],[-127.29111633756514,52.91999346967086],[-127.29138698611455,52.919917095608774],[-127.29164430866844,52.91983189226388],[-127.29187960658523,52.919726765709136],[-127.29205764963226,52.919576872706656],[-127.29217656951742,52.919412494120586],[-127.29225330216829,52.91923962169176],[-127.29230842048618,52.91906081798411],[-127.29235890635225,52.91888262099209],[-127.29241222729645,52.91870552252699],[-127.2924636532503,52.918527879972075],[-127.29251229247659,52.91835026798026],[-127.292556265378,52.91817214234648],[-127.29259184955853,52.91799411778822],[-127.29261991524407,52.917813925331444],[-127.29262354767455,52.91762672088909],[-127.29252545900432,52.917464169487005],[-127.29234976012133,52.91732264384327],[-127.29214262191586,52.91718875251857],[-127.29192714742449,52.917056628997],[-127.29172462426682,52.9169210006701],[-127.291558157347,52.91677656615523],[-127.2914526081533,52.916613539839815],[-127.29140891646408,52.91643245848616],[-127.29140607710202,52.916246445755355],[-127.29142674815863,52.91606802019267],[-127.29147257073672,52.915889874436004],[-127.29153986890579,52.91571317851453],[-127.29162308925964,52.91553911409776],[-127.29172042205067,52.91536993354675],[-127.29183931659126,52.91520555503887],[-127.29197320906589,52.91504381805286],[-127.29211463700257,52.914885360378044],[-127.29226738882869,52.914731261127216],[-127.29244648650041,52.91458640309602],[-127.29258138332055,52.914427451664196],[-127.29269276977566,52.91426092208482],[-127.29279568233407,52.9140916791284],[-127.2928986109464,52.91392299177006],[-127.29299115285623,52.91374994441115],[-127.29307808775006,52.913575828860374],[-127.29317725568163,52.91340607072649],[-127.29330280063279,52.91324610031912],[-127.29347354980632,52.9131024530023],[-127.2936847883717,52.91297348584997],[-127.29391023832912,52.91285220725184],[-127.29413486546741,52.91273429949803],[-127.29437280151414,52.912625766766375],[-127.29460979578214,52.912516688003855],[-127.29483156744695,52.91239713363299],[-127.29504954498759,52.912275370118415],[-127.29526747030319,52.91215193010958],[-127.29548163583108,52.912027410322516],[-127.29569482545259,52.91190122422692],[-127.29590331647158,52.911773959758335],[-127.2961098761164,52.9116444836377],[-127.29630307499869,52.9115045027237],[-127.29644643958557,52.91134938010508],[-127.2964969161884,52.91117174516002],[-127.29651190871243,52.910991138957606],[-127.29652131460725,52.91081059429766],[-127.29652419312212,52.910629556690864],[-127.29652801243037,52.91044907355453],[-127.29653463466387,52.91026912436708],[-127.29655153987277,52.91009017362004],[-127.29658153113631,52.90991276424036],[-127.29666574549944,52.90974204658482],[-127.29681362910478,52.909582390451924],[-127.29697953306037,52.90943317810956],[-127.29716231662945,52.90928827136973],[-127.29734982962346,52.909145544704636],[-127.29752984194549,52.90900122379471],[-127.29768925080688,52.90885321170098],[-127.29777646376056,52.90868917554481],[-127.29775123741986,52.90850340873725],[-127.29774111055724,52.908323643968785],[-127.29772538246003,52.908143932002666],[-127.29771804140734,52.90796413646355],[-127.29772747565924,52.90778471174682],[-127.29774157234638,52.90760523557521],[-127.29775005075659,52.90742525649904],[-127.29773155459037,52.90724613983348],[-127.29771025609114,52.90706649816621],[-127.29771875173145,52.90688708370287],[-127.29773471014569,52.90670758689193],[-127.29775251550915,52.90652806968215],[-127.29776474970323,52.90634861390923],[-127.29776297747998,52.90616819187842],[-127.29775469791018,52.9059883975114],[-127.29776320804385,52.90580898276081],[-127.29780530361684,52.905632003833986],[-127.29787071431174,52.905455879422504],[-127.29793800359793,52.9052802990826],[-127.2980005939062,52.90510309387805],[-127.29810510381532,52.904957363097374],[-127.29831524479752,52.9048244713646],[-127.29856316798576,52.904739363645795],[-127.29879020031377,52.90467185329384],[-127.29905522156474,52.904628579618986],[-127.29932061894088,52.90456736907676],[-127.299614232788,52.9044845518059],[-127.29987188808809,52.90441333871809],[-127.29997569062665,52.904305719684935],[-127.29955932756813,52.90421112882349],[-127.29927082073716,52.90409495969122],[-127.29901265085215,52.9040266384361],[-127.29872319007164,52.90400125983305],[-127.29842848529266,52.903987137009324],[-127.29813033041037,52.90398202654475],[-127.29783045000879,52.90398140842423],[-127.29753063814827,52.90398303926269],[-127.29723173255425,52.90398409448119],[-127.29693369709935,52.9039828978333],[-127.29663678749053,52.90398784769758],[-127.29633991420171,52.903994482029056],[-127.29604208324241,52.90400000540559],[-127.29574432037133,52.90400776878956],[-127.29544720627416,52.90400600233034],[-127.29515318756623,52.90398401846592],[-127.29486067154414,52.90394969797907],[-127.29456738759852,52.903920980034],[-127.29426976548848,52.90390296075714],[-127.29397215852515,52.90388494056337],[-127.29368161006761,52.90385451367848],[-127.29339965492399,52.903799899829906],[-127.29312735478206,52.90372611736155],[-127.29286132685849,52.9036444290093],[-127.29260163675168,52.903556501779036],[-127.29234736329745,52.903462910694024],[-127.29209218434289,52.903369884907455],[-127.29183073759435,52.90328533755886],[-127.29156473175998,52.90320420196194],[-127.2912969479298,52.90312532679996],[-127.29102557948151,52.903051538261295],[-127.29075068980471,52.90298394741462],[-127.2904704721752,52.90292538042763],[-127.2901849222904,52.90287471655354],[-127.28989674254524,52.90282968460761],[-127.28960678625464,52.90278746884344],[-127.28931686472265,52.90274638170996],[-127.28901980135544,52.902715449961576],[-127.28872183423258,52.902685657089805],[-127.28843201564388,52.90264791996108],[-127.2881620169436,52.902588114832746],[-127.28788940931784,52.902380398002165],[-127.28793374227331,52.90227568236978],[-127.28800532506311,52.90208717654593],[-127.2879110147047,52.90198622048984],[-127.2878433171469,52.90181043826713],[-127.2877478312493,52.90164000810629],[-127.28762998598272,52.901468701874855],[-127.28746446609868,52.90132257398436],[-127.28723495209627,52.90121525190856],[-127.2869826000051,52.901122749102846],[-127.28671646475007,52.90103656518213],[-127.28644945776658,52.90095206685113],[-127.28618972964841,52.900861884549265],[-127.28593910836442,52.90076487758369],[-127.2856902990923,52.90066616466786],[-127.28544149124363,52.900567460182685],[-127.28519000055017,52.90047213779286],[-127.28493217353655,52.900383052731556],[-127.2846545953335,52.90031828356456],[-127.28438147887695,52.90024729638986],[-127.28413544247013,52.90014742919122],[-127.28389567962485,52.900039656681884],[-127.28383395125478,52.899999983277404],[-127.28327087680742,52.899637955345746],[-127.28283959872883,52.89932380953856],[-127.28241754825153,52.899099213039925],[-127.28167335427374,52.89878230579247],[-127.28098495512982,52.89846310957532],[-127.28052640531499,52.898324646192265],[-127.28011096446417,52.89822605905592],[-127.27974943241776,52.89815545868567],[-127.27936356948521,52.89792598355091],[-127.2788705143561,52.897568221007035],[-127.2781511247014,52.89720731255851],[-127.2775914876805,52.89677125049133],[-127.27650723079886,52.89597832097553],[-127.27566576846993,52.89570614137785],[-127.2750585296109,52.8955132318668],[-127.27443710806847,52.89534400882594],[-127.27383587635117,52.895351643292315],[-127.27326604517302,52.89522612965445],[-127.2724422133977,52.89513754030504],[-127.27250971775572,52.894810105129565],[-127.27254815094423,52.894632053932135],[-127.27259218282728,52.89445393314947],[-127.27263988916314,52.8942746607733],[-127.2727579255069,52.894111994466385],[-127.27293322761908,52.89396495466741],[-127.27311788803642,52.89382006375045],[-127.27327163988643,52.893668773661354],[-127.27334197892377,52.89349877777588],[-127.27334857910975,52.89331490214827],[-127.27337952634865,52.89313524589829],[-127.27342541659404,52.89295766932233],[-127.27345731998686,52.89277912340944],[-127.27346126888642,52.892599759427576],[-127.27345310965309,52.89241997064764],[-127.27343935122937,52.892240233514535],[-127.27342466995555,52.892060515320225],[-127.27341464936089,52.89188073767024],[-127.27341762675397,52.89170026335246],[-127.27346817607916,52.89152263613028],[-127.27358616814784,52.89135884831744],[-127.27372285638734,52.891197664233346],[-127.2738793124347,52.891043546272144],[-127.27405374384385,52.890899320156194],[-127.27424323201872,52.89076053439685],[-127.27444029818936,52.89062614921588],[-127.27464016423114,52.89049228922756],[-127.2748371943874,52.890356782962854],[-127.27502575440438,52.89021800590432],[-127.27519543423652,52.8900710320459],[-127.27534715314518,52.889914721772215],[-127.275496069596,52.88975787681035],[-127.27565917195443,52.889608732028194],[-127.27585059414247,52.8894727198857],[-127.27606094638826,52.8893471536914],[-127.27628261594678,52.88922651216908],[-127.27650807356868,52.88910806163996],[-127.27673163541169,52.88898851944496],[-127.27694568818413,52.88886234653304],[-127.27714542068261,52.88872456523277],[-127.27735091832929,52.88859232474853],[-127.27758042822339,52.88848504461123],[-127.2778454029633,52.888412113256145],[-127.2781315372333,52.88836137549974],[-127.27842533573856,52.888318390079355],[-127.27871430332935,52.8882692967432],[-127.27900120728636,52.88821350056082],[-127.27929188345432,52.88815934825477],[-127.2795729835392,52.888096324361726],[-127.27982844284331,52.8880162115304],[-127.28002373546926,52.887885762890846],[-127.28014702318937,52.88771349988677],[-127.28021533124323,52.88753960277824],[-127.28025268459747,52.88735763243785],[-127.28031631230462,52.88718265645164],[-127.28044558448549,52.88702378598984],[-127.2806049028593,52.88687354526879],[-127.28078016509328,52.88672705779139],[-127.2809601051482,52.88658163982902],[-127.28113345527778,52.88643405183883],[-127.28128802291305,52.88628050852272],[-127.28143315100833,52.8861231406943],[-127.28157168729095,52.88596303811352],[-127.2817017879808,52.88580079473355],[-127.28182062195471,52.88563586761562],[-127.28192451395114,52.88546886173029],[-127.2819983940631,52.88529489350658],[-127.28204326644584,52.885115646650526],[-127.28207232675395,52.88493656320564],[-127.28208366609407,52.88475656116768],[-127.28206984003883,52.884575703787654],[-127.28202912115461,52.88439794602575],[-127.28194660468098,52.884222885504194],[-127.28180598227216,52.8840658347631],[-127.28161647474906,52.88392387772811],[-127.28138418614431,52.88381377706853],[-127.28112921613356,52.8837229671625],[-127.28086331909624,52.88364068598095],[-127.28059559395795,52.88355898898271],[-127.28033424092101,52.88347272996123],[-127.2800864855867,52.88337455875867],[-127.279847781957,52.88326732237862],[-127.27961632361328,52.88315384693406],[-127.27939125250028,52.883035809504086],[-127.27917255222567,52.882912663368955],[-127.27896302553295,52.88278549884052],[-127.27876084095973,52.88265432692055],[-127.27856504569411,52.88251915800769],[-127.27837475058487,52.88238113153309],[-127.2781890343767,52.88224081343846],[-127.2780051449366,52.882098798527544],[-127.27782217946739,52.88195676432114],[-127.27764013849743,52.88181472874991],[-127.27746267434786,52.881669836767486],[-127.27729257090944,52.8815220581482],[-127.27712429623455,52.88137314761569],[-127.27695146176076,52.8812270838015],[-127.27676944345743,52.881085602536835],[-127.27657004064962,52.88095383179448],[-127.27634866112784,52.88083407184395],[-127.27611722329225,52.88072002449438],[-127.2758875991239,52.880604836244565],[-127.27566558534278,52.880339382215624],[-127.27552674223243,52.88017837749976],[-127.27536318871405,52.880031089889926],[-127.27515932018292,52.87990553391665],[-127.27492431988286,52.879796570817675],[-127.27467193688565,52.87969787366684],[-127.27441499635384,52.87960259665371],[-127.27416088885741,52.87950840018165],[-127.27389870108703,52.87942382172862],[-127.27363557651229,52.87933925284699],[-127.27338784402957,52.879240511555956],[-127.27314825916514,52.879133827177405],[-127.27289060325931,52.87904527922256],[-127.27262300577104,52.878966360367606],[-127.27238798538832,52.87885682761221],[-127.27216563867687,52.87873482880784],[-127.27194059494663,52.87861622106927],[-127.27169570235101,52.878518557330324],[-127.27141463196412,52.87845603710704],[-127.27112048459809,52.87842335345787],[-127.27082234452398,52.87841256271001],[-127.27052301209014,52.87842420839604],[-127.27024055515392,52.87847097064328],[-127.26997220979838,52.87855456505461],[-127.26969276875396,52.87860913875076],[-127.26939338444292,52.87861909646885],[-127.26909782532093,52.87860099297258],[-127.26880553950319,52.87856828344682],[-127.26851489636454,52.878527710110355],[-127.26827475066936,52.878464175958854],[-127.26796565738711,52.87839802270341],[-127.2676953744705,52.878322484006176],[-127.2674233317064,52.87825032596581],[-127.26714765149468,52.878181003942586],[-127.26687577707673,52.87811444666388],[-127.2665687195018,52.878116634553585],[-127.26627954045352,52.878156735098464],[-127.26600225757039,52.87822136365767],[-127.26572601337298,52.878289907530295],[-127.26560575313019,52.87806368688331],[-127.2655048917674,52.87789497221906],[-127.26536435081613,52.87773790119732],[-127.26517864764901,52.877595877053984],[-127.2649292971979,52.87744109727308],[-127.26481597334161,52.877322950564206],[-127.26472236210124,52.877147997465656],[-127.26461129859231,52.87698052149177],[-127.26436778556763,52.87689684188984],[-127.26411376638292,52.876804308639116],[-127.26387601267004,52.87669534437732],[-127.26362463000206,52.87659774277135],[-127.26340429694426,52.876479624174905],[-127.26322046673214,52.87633758579206],[-127.26300732996006,52.87621098786352],[-127.2627768426196,52.876095783601],[-127.2626071753636,52.87602307066209],[-127.26251753162992,52.87601282581919],[-127.26221723486329,52.875991393806316],[-127.26192245404127,52.875967660283216],[-127.2615412045078,52.875915158208635],[-127.26149920696352,52.875785600052666],[-127.26140113432537,52.87561629603182],[-127.26133439493388,52.87543656881515],[-127.26124561020131,52.875266600114955],[-127.26105654019477,52.87513525739201],[-127.26081411173402,52.875025225357795],[-127.26058541437723,52.87490719124723],[-127.26041547939568,52.87476219309898],[-127.26027582231933,52.874602300120976],[-127.26012325972567,52.87444702838864],[-127.25995051158971,52.87430093895374],[-127.2597703903347,52.87415773468381],[-127.25958845744053,52.87401566135179],[-127.25945068470263,52.87385686795279],[-127.25933225774465,52.873691142523946],[-127.2592443895159,52.8735200506307],[-127.25924652620783,52.87327737717556],[-127.25927004487805,52.87309724655274],[-127.25924434936618,52.87292044058387],[-127.25906242350541,52.87277836632723],[-127.25883925869765,52.87265803700285],[-127.25858417366655,52.872559899534856],[-127.25837773926646,52.87243882533425],[-127.25828143133896,52.87226557250775],[-127.25821011629051,52.872087577953835],[-127.25802940142498,52.871955020145364],[-127.25777881582084,52.87185122895494],[-127.2575365133887,52.87174454221395],[-127.25739707528946,52.8715913679988],[-127.25731466987158,52.87141628895604],[-127.25723694037072,52.87124172469503],[-127.25713336319144,52.87107415247212],[-127.25698452740173,52.87091771595114],[-127.25680258635026,52.87077508245178],[-127.25661789633878,52.87063359882945],[-127.25648200452255,52.870474225838215],[-127.25640146543864,52.870299126143905],[-127.25639809177652,52.87012151590594],[-127.25643467481162,52.8699418018506],[-127.25646938226178,52.869762107810864],[-127.25646691323475,52.8695833760386],[-127.25643095892345,52.8694055581117],[-127.25637919920743,52.86922790911227],[-127.25631909211059,52.86905090520342],[-127.25626178524416,52.868874436186346],[-127.2561970541034,52.86869861134731],[-127.25612861919214,52.86852338194542],[-127.25606946986503,52.86834748838566],[-127.25603536220441,52.868169094590684],[-127.25601980659081,52.867988252000146],[-127.25598757610629,52.86781039399692],[-127.25591639347856,52.867636314532234],[-127.2558220163328,52.8674647243963],[-127.25570638785382,52.867298409184244],[-127.25556958886065,52.86713960054843],[-127.25540694502973,52.86698779244799],[-127.25522502428164,52.86684459130437],[-127.255027565587,52.86671108684049],[-127.25481634663751,52.86658445359034],[-127.25459508648264,52.86646409587792],[-127.25436745575713,52.86634827986496],[-127.25411887113599,52.86624782190846],[-127.25386485539119,52.8661524693286],[-127.25363912321392,52.86603831730466],[-127.25343984593295,52.865905950368365],[-127.253255188171,52.86576446102907],[-127.2530815116688,52.86561668558983],[-127.25291983664515,52.86546542859731],[-127.25276461651619,52.865312416932206],[-127.25261397470976,52.86515711471849],[-127.25246794240714,52.865000077543],[-127.25232651983849,52.864841314385636],[-127.2521906310561,52.86468137131891],[-127.25206030577158,52.86452024804453],[-127.25194845316929,52.86435500961114],[-127.25187077482731,52.86418099675497],[-127.25179586188068,52.86400583360651],[-127.25175199938506,52.86371602093863],[-127.25165861950248,52.86354609335922],[-127.25153470400294,52.86338153885827],[-127.25139233647056,52.863222228669784],[-127.2511986101883,52.863088113160224],[-127.25096374724576,52.86297853633127],[-127.25071884474617,52.86287579052379],[-127.25047664410394,52.8627702180138],[-127.25024446889456,52.86265724884691],[-127.25000859104487,52.86254487451491],[-127.24977452538411,52.862430803766664],[-127.2495523947041,52.862311001788356],[-127.2493486212441,52.86218315882313],[-127.24918343277123,52.8620380937611],[-127.24907610756547,52.861867756436645],[-127.24897428143353,52.861694563109765],[-127.24882101485858,52.861543766950824],[-127.2486291315107,52.861408506872756],[-127.2484271595478,52.86127840162474],[-127.24821598572068,52.86115120019151],[-127.24800023752665,52.86102684441263],[-127.24778170939743,52.8609030736636],[-127.24756504116239,52.860778726862584],[-127.2473520302778,52.86065266416681],[-127.24714543949905,52.86052316166553],[-127.2469443319075,52.86039024726608],[-127.24674414648992,52.860256757870786],[-127.24654213646967,52.86012496416877],[-127.2463337399899,52.85999716504852],[-127.24611622514638,52.859875630994104],[-127.24588957515965,52.859759788298064],[-127.24565746122373,52.85964793028081],[-127.24542077151428,52.859538361854305],[-127.24518227363096,52.859431053663535],[-127.24494287090299,52.85932431945031],[-127.24470439029879,52.859217010117455],[-127.2444640196005,52.85910915545408],[-127.24421918767605,52.85900751627865],[-127.24396265086402,52.85891889388802],[-127.24369526723407,52.85884158451519],[-127.24342065606673,52.85877108462701],[-127.24314158430064,52.85870734696713],[-127.24286078434359,52.85864811898839],[-127.24257830469624,52.85859506787524],[-127.2422895859515,52.8585516041378],[-127.241999137116,52.85851208517109],[-127.24170957870636,52.85847143530876],[-127.24124566271186,52.858448882398356],[-127.2409503382952,52.85843406935488],[-127.24065414033832,52.85842094147034],[-127.24035710165879,52.85841062812988],[-127.2400577871569,52.858418270415534],[-127.2397644535726,52.85840791647694],[-127.23947977763099,52.85834311751288],[-127.2392092776371,52.8583179512922],[-127.23892564562084,52.85838482622588],[-127.23863274054787,52.85842097250249],[-127.23832835040854,52.858446040329824],[-127.23804351946904,52.85840812909882],[-127.23752920967168,52.858379923772596],[-127.23723244849016,52.8583791306637],[-127.23693618705745,52.85836375254887],[-127.23664159104237,52.85834164049923],[-127.23634783650083,52.85831671244842],[-127.23606830182817,52.85833253775036],[-127.23579199212612,52.858395965725876],[-127.23551186316777,52.85845551498378],[-127.2352309255975,52.85851954618151],[-127.23494914739317,52.85858695680974],[-127.23466480928076,52.85862972772708],[-127.23437362737626,52.85862942465886],[-127.23407683033243,52.858595556725945],[-127.23378960628067,52.85853861621836],[-127.23352052955029,52.85846634962378],[-127.23325945797579,52.85838110505687],[-127.23300375670087,52.85828852303826],[-127.23274892914358,52.85819368976205],[-127.23249413654644,52.85810054121167],[-127.23223756454557,52.858009643350336],[-127.23198190008705,52.85791817951748],[-127.23172895438397,52.85782444509369],[-127.23147689876588,52.85772902413028],[-127.23123299444272,52.857625662859306],[-127.23099268308935,52.857518345232194],[-127.23074700225203,52.857417807984696],[-127.23048602359714,52.85733536276098],[-127.23021063589475,52.85726932348167],[-127.22992801954003,52.8572106397543],[-127.2296463101679,52.8571513809932],[-127.22937349606197,52.85707746744466],[-127.2290843306825,52.85704966692801],[-127.22878656070732,52.85704605673214],[-127.22849969434007,52.85700142815353],[-127.22821620790822,52.85694442611167],[-127.2279398888836,52.856878391292746],[-127.2276778674483,52.85679146771323],[-127.22741853264792,52.85670115318002],[-127.22714072726038,52.85664801640057],[-127.22684700481915,52.85662306441827],[-127.22654888351553,52.856607123783846],[-127.22625241271419,52.85658387568285],[-127.22596642503926,52.8565369902571],[-127.22568121542102,52.85648504807726],[-127.22538838523425,52.85645896238967],[-127.22509129954136,52.85644636958162],[-127.22479588184893,52.85642758992126],[-127.22449116420947,52.85640835053878],[-127.22419173816837,52.85637953317916],[-127.2239321177364,52.856311064527475],[-127.22372490709282,52.85618938227533],[-127.22354483787758,52.85604050959252],[-127.22336017751375,52.855893934941236],[-127.22315735416908,52.85576267498905],[-127.22294995535327,52.855634259754176],[-127.22274161939748,52.855505298006605],[-127.22253423822026,52.855376890825546],[-127.22232682722763,52.855247918723336],[-127.22213227402838,52.85511264379814],[-127.2219762488038,52.8549590444996],[-127.22178527322605,52.85481869281005],[-127.22157854776844,52.85468074610532],[-127.22135218458357,52.854571578329235],[-127.22107337500144,52.854547577812646],[-127.22076630006885,52.85457542573461],[-127.22047141802143,52.85460707337056],[-127.22017694478696,52.85462077473664],[-127.2198834167877,52.854601972199724],[-127.21959055488502,52.85457418689616],[-127.21929756548063,52.854541928077936],[-127.2190036550933,52.854510233990126],[-127.21870899868827,52.85448470665716],[-127.21841369243002,52.85446871634896],[-127.21811762523174,52.854458901903094],[-127.21782070072126,52.8544518930384],[-127.21752377506424,52.85444431856873],[-127.21722675481163,52.854433946890595],[-127.2169296536636,52.85442021299457],[-127.21662886642017,52.85440820215516],[-127.21632985783948,52.85439280086166],[-127.21603615848231,52.85436838667616],[-127.21575316949502,52.85432760530606],[-127.21547820332165,52.85424246542056],[-127.21527630162737,52.854109505856385],[-127.21520653364492,52.85394603040217],[-127.21516672585832,52.853757032212435],[-127.21512006911777,52.85358827866589],[-127.21508734968504,52.85338687864307],[-127.21499952509815,52.85320958462381],[-127.21498650472628,52.85304665183629],[-127.21527184532698,52.85277807830438],[-127.21544439483696,52.852631714056514],[-127.21562260185264,52.85248808843312],[-127.21580645076374,52.852346654634566],[-127.21599123668543,52.85220576672684],[-127.21617319131073,52.85206322217369],[-127.21634575094123,52.85191742123741],[-127.21651168004165,52.85176719663113],[-127.21667285584869,52.85161366764381],[-127.21681904157482,52.851456366486794],[-127.21694186168139,52.851295379974474],[-127.21697778545753,52.85112016755836],[-127.21696326033342,52.85093707640675],[-127.21698607072626,52.85075863746834],[-127.21704896514447,52.850583145570624],[-127.21708291627792,52.85040402628415],[-127.21712619715328,52.85022594004373],[-127.21720871985436,52.85005416284776],[-127.21731740368448,52.849886606542796],[-127.21740269096352,52.84971424460891],[-127.21745903435429,52.849537699456505],[-127.21755275961932,52.84936749146108],[-127.21767642829467,52.849203697633],[-127.217820726429,52.8490458495611],[-127.21796127275445,52.84888692837634],[-127.21807187388835,52.84872158388974],[-127.21815807709798,52.848548655823585],[-127.21822280678496,52.84837257906672],[-127.21826703514054,52.84819560305366],[-127.21826188266934,52.84801521192652],[-127.21824652655216,52.84783548249982],[-127.2182330153917,52.84765574288524],[-127.21821114405131,52.847476080981075],[-127.21815213239816,52.84729848984244],[-127.2181555314886,52.84712417867728],[-127.21826040516902,52.846953854163864],[-127.21834661991616,52.846781481504856],[-127.21840111200045,52.84660551059649],[-127.21843133576027,52.84642643800326],[-127.21845316846351,52.84624688754632],[-127.21847035997676,52.84606738520525],[-127.21848197323635,52.845887940702895],[-127.21852060246583,52.84570989261525],[-127.21857038875517,52.84553229362152],[-127.21860993978545,52.84535424486059],[-127.21864947435215,52.84517563136252],[-127.21869835313136,52.84499859756224],[-127.21876027903585,52.84482255808864],[-127.218837142727,52.84464859614575],[-127.21893927423031,52.84447998476845],[-127.21907789388499,52.84431939593291],[-127.21919598007317,52.84415621361016],[-127.21921402577473,52.84397446046065],[-127.21910518265648,52.843810280056886],[-127.218970390489,52.843649166297304],[-127.21882361759727,52.84349153902674],[-127.2186713171614,52.8433362104723],[-127.21850341366542,52.84318776824442],[-127.21832817035802,52.84304276423799],[-127.21817039034832,52.84289028932159],[-127.21803010703113,52.84273203783143],[-127.21789626037285,52.842571468906975],[-127.21824509740436,52.84241318404587],[-127.2184345517201,52.84227448401239],[-127.21862398892809,52.842135227919975],[-127.21877301111832,52.84198069100634],[-127.21889195038538,52.84181526724886],[-127.21902499988624,52.841655291825795],[-127.21920403811816,52.841509973856155],[-127.21944090959182,52.841403847291645],[-127.21968539262838,52.841303800990104],[-127.21985034781983,52.84115414509102],[-127.22000681593487,52.84100064988068],[-127.22016423608709,52.840847709417645],[-127.2203470976457,52.84070627704798],[-127.22056681256208,52.84058574723944],[-127.22080834797424,52.840480690078245],[-127.22103184282058,52.84036236162771],[-127.22125913498958,52.840246799678745],[-127.22152751136714,52.8401694813873],[-127.22177576484466,52.84007163287855],[-127.22200683585913,52.83995827167585],[-127.22221323960062,52.83982779011097],[-127.22238572910277,52.839681979170535],[-127.22243738346467,52.83950547895453],[-127.22249836360714,52.839329437528995],[-127.2225723901865,52.8391549458958],[-127.22264644721689,52.838981018747056],[-127.22271955049276,52.838806536581586],[-127.22278798192,52.83863153811175],[-127.22287325565966,52.83845973552374],[-127.22302971920719,52.83830680072887],[-127.22322765724853,52.838173042940255],[-127.22343122077194,52.8380414767236],[-127.22362324196556,52.83789601612386],[-127.22368266240578,52.83773119790369],[-127.22363007519597,52.837550743906455],[-127.22358033350115,52.83737249282287],[-127.22349452755911,52.83720135108254],[-127.22356594194412,52.83703304554251],[-127.22369192495172,52.83688715190293],[-127.22370390433957,52.83668864844975],[-127.22370432334472,52.83650876283638],[-127.22370474208927,52.836328868238716],[-127.2236698249755,52.8361487859019],[-127.2236201171405,52.835971664088206],[-127.2235324387336,52.83579997688486],[-127.2234836525771,52.83562228050651],[-127.22341810555173,52.835444193826234],[-127.22331570117736,52.83527714296895],[-127.22327900810946,52.83509988536488],[-127.22323209995088,52.834923290044046],[-127.22316201164418,52.834748612820036],[-127.22314144874571,52.83458239496371],[-127.22312381772873,52.83438923875027],[-127.22312892585909,52.83421042484563],[-127.22319267642261,52.83403435350085],[-127.22329193748507,52.83386464586843],[-127.2233510164,52.83368806714127],[-127.2233635585496,52.83350916672492],[-127.22332681848752,52.833330223777324],[-127.2232567326667,52.83315555539559],[-127.22316422920875,52.832977193230946],[-127.22308510733355,52.83281157616157],[-127.2230372646031,52.832634434363435],[-127.22302095708133,52.832454713556864],[-127.22305486898037,52.83227559944084],[-127.22314854994183,52.83210594085423],[-127.22325435297189,52.83193784155349],[-127.2233545616572,52.831768679626016],[-127.22345475467812,52.83159951774968],[-127.2235558837083,52.83143034600818],[-127.22365235660922,52.83126066676255],[-127.2237217089067,52.83108565714335],[-127.22383127291211,52.83091920363315],[-127.22398206364521,52.830763519180685],[-127.22416097634233,52.83061651660343],[-127.2241876558601,52.83054170158965],[-127.22418449541004,52.8304963471136],[-127.22413750343532,52.83044640155926],[-127.22380927594945,52.83015224919861],[-127.22364785499049,52.83000150429026],[-127.2234873411369,52.82985019379471],[-127.22331121483178,52.829705761493734],[-127.22312775038351,52.82956421182035],[-127.22295161054815,52.82941922320851],[-127.22278927481729,52.82926905151453],[-127.22263337250659,52.829116006151345],[-127.22248206217832,52.82896122710367],[-127.22233996595577,52.82880355444947],[-127.22221813918898,52.82863951077882],[-127.22209815579538,52.82847488291068],[-127.22197725250635,52.82831082039692],[-127.22184621564116,52.82814966965777],[-127.22169951751103,52.82799316487593],[-127.22153534893691,52.827843566395536],[-127.22135556859882,52.8277008548124],[-127.22115745923739,52.82756674398466],[-127.2209694534586,52.82742860051449],[-127.22076795101754,52.82730628811971],[-127.22051809400202,52.82718279236956],[-127.2203944041175,52.82708320702665],[-127.22022637489947,52.826961110662296],[-127.22015612697854,52.826812210834035],[-127.22011979008725,52.82671171739159],[-127.21999540682722,52.826555543439184],[-127.21979246090292,52.82641474686126],[-127.21958796213346,52.826284618048376],[-127.2193807324325,52.826156202911434],[-127.21917166236057,52.82602891834452],[-127.21896167197636,52.82590165192907],[-127.21876450004545,52.8257675183756],[-127.21855638651792,52.825640787669066],[-127.21832714915102,52.825522686201644],[-127.21810165607103,52.825373154361785],[-127.21802718055834,52.825238876309015],[-127.21819909180091,52.82504207525832],[-127.21835460111477,52.82488915494345],[-127.21855789109303,52.824749187980565],[-127.21859217177378,52.82468046395981],[-127.2186516054057,52.82458065262224],[-127.21873764538856,52.82440379537942],[-127.21879407784024,52.82423172857026],[-127.21888211908066,52.82405989843621],[-127.21898324837045,52.82389072981563],[-127.21911247696262,52.82372911484435],[-127.21923983004606,52.823566954302194],[-127.21932974238825,52.82339566020743],[-127.21941590523039,52.82322328417032],[-127.21954139753315,52.8230611515143],[-127.21964906659825,52.82289359093145],[-127.21977725594901,52.82272806757421],[-127.21991294278982,52.82256526364088],[-127.22007417213408,52.82241788517363],[-127.22028829887547,52.82230021804518],[-127.22054876218935,52.8222100885972],[-127.22081105171648,52.82211937468484],[-127.22105062241107,52.822013770242435],[-127.22128539452409,52.82190317612416],[-127.22152019723259,52.82179369302459],[-127.22176259262314,52.821689743352934],[-127.22200975324212,52.82159021776827],[-127.22226072453329,52.82149345843875],[-127.22251649347835,52.82140225256466],[-127.22277707632549,52.82131716482721],[-127.22305198781298,52.821245367784435],[-127.22332885327049,52.82117692107304],[-127.22359618535211,52.8211001626191],[-127.2238406066122,52.82100234728918],[-127.2240583519602,52.82088182880259],[-127.22426181318667,52.820749139075254],[-127.22446522587981,52.82061531971555],[-127.224676310515,52.82048927447727],[-127.22488737878025,52.82036322004079],[-127.22509180476237,52.82023219542195],[-127.22529435529164,52.82010063408348],[-127.22551205976315,52.81997899237101],[-127.22575538763704,52.81987558030618],[-127.22601981587152,52.819795484071086],[-127.22629383884127,52.819725374164996],[-127.22656786227368,52.819655828483164],[-127.22684288551193,52.81958850432714],[-127.22711398218743,52.819513939865246],[-127.22737071389976,52.81942439868259],[-127.22751689484194,52.81927211857157],[-127.2275824472102,52.81909546797983],[-127.22763497571601,52.81891839761058],[-127.22783916867515,52.81910287028509],[-127.2280368954398,52.81912714523347],[-127.2283231737005,52.81909613017953],[-127.22862283089563,52.819045355962245],[-127.2289218077993,52.81900299855666],[-127.22921580777069,52.81898198764984],[-127.22951193872036,52.8189699200653],[-127.22980905573375,52.81896008299721],[-127.23010630177784,52.81895472701478],[-127.23040251432013,52.8189460187177],[-127.23069651201122,52.81892444819854],[-127.2310008841309,52.81887642491176],[-127.23126660408771,52.81884113502304],[-127.23156467274286,52.818799901163736],[-127.23185351458807,52.81876100496086],[-127.23209979405266,52.818664273250455],[-127.23235930606943,52.81857524768151],[-127.23261788048627,52.81848623136749],[-127.23289190026624,52.81841666175037],[-127.23318322677311,52.818367648939535],[-127.23348072480205,52.81833874493425],[-127.2337639267679,52.818362112071945],[-127.23400413645547,52.818441405556165],[-127.23430817093534,52.8185104961994],[-127.23457725640507,52.81859172649952],[-127.23484619836911,52.81866847450188],[-127.23512917859051,52.8187159334078],[-127.23538852594088,52.818814076318226],[-127.23566637244014,52.81887727915872],[-127.23594778877734,52.81893483976572],[-127.2362317749129,52.81898509192839],[-127.23652110881032,52.81902743251674],[-127.23680945818033,52.81906810605357],[-127.23710239606805,52.819106488932576],[-127.23739887234568,52.81913867387283],[-127.23769269891234,52.81917536023761],[-127.23797573579037,52.81922505333785],[-127.23823901447282,52.819297935050244],[-127.23847082452845,52.819407569683314],[-127.23868648079618,52.819536983827064],[-127.23890755066883,52.81966074541288],[-127.23916130525016,52.81975781830518],[-127.23946480430321,52.81980784777849],[-127.23970177102407,52.81974258079146],[-127.23988883873318,52.81959153875446],[-127.24007505009675,52.819443311920516],[-127.24027455906398,52.81930446659096],[-127.2404375639796,52.819157040225775],[-127.24049107474158,52.81898387149138],[-127.2404856526436,52.81879731098673],[-127.24059630037608,52.81863922957551],[-127.24078654562905,52.818501601948256],[-127.2409992356027,52.81836934071711],[-127.2411903838376,52.818231146921626],[-127.24137398405597,52.81808910532116],[-127.24156327141984,52.81795092157976],[-127.24176955798984,52.81782208898351],[-127.24198521560615,52.817695963341315],[-127.24220943633503,52.817576462509244],[-127.2424451322498,52.817468612677935],[-127.24269907369049,52.817380743643184],[-127.24297790382577,52.817317833043944],[-127.2432634395154,52.81726156660054],[-127.2435412989106,52.81719754411988],[-127.2438172486695,52.81713129063248],[-127.24409610818518,52.81706949782429],[-127.24438091671124,52.817020526031065],[-127.24466860231661,52.81697488544179],[-127.24494828154786,52.81690915459248],[-127.24522493653701,52.816835609521945],[-127.24550855422495,52.816809619578855],[-127.24579844472747,52.816839611523896],[-127.24609258978533,52.816887481485864],[-127.24638519387685,52.81691463669183],[-127.246679416432,52.816901989929654],[-127.24697303148776,52.81686804463988],[-127.24726258788567,52.81682294266086],[-127.24754053503094,52.816761707197585],[-127.2478048210712,52.816678756117554],[-127.2480652902543,52.816591926677056],[-127.24833445648852,52.816516777084125],[-127.24861034676687,52.81644939200329],[-127.2488921368204,52.81639259562092],[-127.2491809958976,52.81635534189435],[-127.24947677639054,52.81633257527561],[-127.24977071362792,52.81630983649949],[-127.25006562124226,52.81628876337438],[-127.25035949363632,52.81626433811619],[-127.25065234560722,52.81623656057406],[-127.25094504930011,52.81620373576886],[-127.2512366341413,52.81616420628714],[-127.25148740433545,52.81625455981008],[-127.2517129989346,52.81637320140784],[-127.25199446989947,52.816496285761964],[-127.25227595880563,52.81658799566597],[-127.25245765524515,52.8166359285142],[-127.25275049122162,52.81657564256029],[-127.25299778163392,52.81680052672039],[-127.25368023104144,52.817064475046244],[-127.25390096951237,52.81720726615709],[-127.254290829569,52.81728659659792],[-127.25467690981996,52.81739511607208],[-127.25526978753248,52.81755129445637],[-127.25568165407618,52.817620297740916],[-127.25579434017031,52.817596676166374],[-127.2558612415404,52.8175012568182],[-127.25590937855618,52.817368486696445],[-127.25615548333519,52.81729972579766],[-127.25630141106683,52.81720569311447],[-127.25649807883987,52.81706741463657],[-127.25668917080256,52.816929186530274],[-127.25688596801832,52.816795389192286],[-127.25712402109662,52.816674034472946],[-127.25735536664169,52.81657740885106],[-127.25761964733117,52.816494435507344],[-127.25787914258025,52.816407038571185],[-127.25810145575882,52.81628809206965],[-127.25836196767504,52.81620348066998],[-127.25862815336005,52.81612272618365],[-127.25887606639735,52.81602088066357],[-127.25912884549963,52.81592626317246],[-127.25940706884157,52.81587563956606],[-127.25970379367288,52.815853401834424],[-127.26000045204674,52.81582892244576],[-127.26028817753459,52.815784928548375],[-127.26057086924756,52.815728094214556],[-127.26083716375808,52.815651260763154],[-127.26108321049375,52.81554942154543],[-127.26133118056207,52.815449811709755],[-127.26157437913052,52.815345760411496],[-127.26178634905008,52.81522299949833],[-127.26196513239807,52.81507816982354],[-127.26214677549166,52.81493555968545],[-127.26233126136565,52.81479459539929],[-127.26252612322651,52.814659123242485],[-127.26273512660244,52.81453077938728],[-127.26298124536349,52.81443174173371],[-127.26325129142288,52.81435598305183],[-127.26352716090108,52.81428912753131],[-127.26382232071283,52.81424560067094],[-127.264101513855,52.814196640963225],[-127.2641965189639,52.814141262917175],[-127.26423434128799,52.81403774095201],[-127.2642522488752,52.813858218322636],[-127.26427761941795,52.813679171205344],[-127.26455734667469,52.81349178888511],[-127.2647512407941,52.81335520239554],[-127.2649169179164,52.81320771153691],[-127.26504875103568,52.813046570562435],[-127.2651683667435,52.81288108682387],[-127.2653001830419,52.81271994569324],[-127.26546110237202,52.81256858688956],[-127.26563415397524,52.812418773750125],[-127.26581945577608,52.81227498819912],[-127.26602000161904,52.81214393172958],[-127.26613701157201,52.8120787832138],[-127.26624541325859,52.812036708592366],[-127.2665347003084,52.81198427150502],[-127.26683004062139,52.81194745974334],[-127.26712680079963,52.81192744410143],[-127.2674127029512,52.81188624950337],[-127.26768275831843,52.8118116009572],[-127.26794889898851,52.811730825108675],[-127.26822378936382,52.81166284793872],[-127.26849966529578,52.811596545164946],[-127.26876777761558,52.81151967344035],[-127.26903103515205,52.811435563805794],[-127.26929819069959,52.811357580371165],[-127.26957603732335,52.81129517206974],[-127.26985681257352,52.8112377795618],[-127.27013954464634,52.811183718672815],[-127.27042326444266,52.81113189699768],[-127.27070887278481,52.81108061010496],[-127.27099357745477,52.81103045310908],[-127.27127826463916,52.810979730712496],[-127.27156490935835,52.810932357820505],[-127.27185444944247,52.810888871214615],[-127.27215192393598,52.8107993444527],[-127.27245903996896,52.81069065852216],[-127.27266226251196,52.810681730162905],[-127.27300592138417,52.81070770033267],[-127.27329672900436,52.810675404540845],[-127.2735882570976,52.810636375309166],[-127.27388440128172,52.810627001353254],[-127.27417187488182,52.810669834247165],[-127.27444264558322,52.81074478659132],[-127.27468273592551,52.81084977764202],[-127.27489554755604,52.81097523921408],[-127.2750892122016,52.81111268147133],[-127.27530018336537,52.81123816231055],[-127.27552576927718,52.811355638233955],[-127.27575496965306,52.81146914710123],[-127.2759859976227,52.81158207973245],[-127.27622157839042,52.81169159996118],[-127.2764662486393,52.81179429597332],[-127.2767191037069,52.811890742444874],[-127.2769843465445,52.811966869946176],[-127.27728055169123,52.81199054644947],[-127.27756644826948,52.81204235481973],[-127.2778544550949,52.81210255012872],[-127.27812525621061,52.812177493746645],[-127.27835140550438,52.81228207326972],[-127.2785055881482,52.812435066506126],[-127.27864803864432,52.81259939550769],[-127.27883526082421,52.81273801368535],[-127.27904173312625,52.81286802015665],[-127.27926005754402,52.81299061627063],[-127.27948748587917,52.813106378879255],[-127.27972676628715,52.81321473100933],[-127.27998144659563,52.81331002982053],[-127.28024939757698,52.81338275805345],[-127.28054193211676,52.81340758728509],[-127.28084162975142,52.81342337109589],[-127.28112474410544,52.81347464533961],[-127.28140267382294,52.8135394163351],[-127.28167973344503,52.81360588188767],[-127.28196112667487,52.813661656191094],[-127.28225351253214,52.81368143465211],[-127.28255204067052,52.81368938118307],[-127.28284640291682,52.813713063916786],[-127.28314079916952,52.81373786636024],[-127.28343434160108,52.81376491903793],[-127.28372703237514,52.81379478682438],[-127.2840179834415,52.8138285912915],[-127.28430592700145,52.813885965100326],[-127.28446810041254,52.81402541340967],[-127.2845754969877,52.8141973997786],[-127.28468366437043,52.8143643384124],[-127.28474022888346,52.81454529155972],[-127.28480133022552,52.81472283255578],[-127.28494973473695,52.814868034969294],[-127.28518453627099,52.81498090840593],[-127.28542399361343,52.81509429528349],[-127.28560939287665,52.815233487648186],[-127.28575631300423,52.815390469386735],[-127.28586924176159,52.815560717176034],[-127.28600317696379,52.815718970623124],[-127.28622133122651,52.81583426602099],[-127.28647977447592,52.81593006559409],[-127.28670631861934,52.8160463889648],[-127.28692469589627,52.81616896144516],[-127.2871448670662,52.81628983711238],[-127.28737593232466,52.816401626365696],[-127.28762330085512,52.81649978654364],[-127.28788427535139,52.81658658876986],[-127.2881488150125,52.81666831211127],[-127.28841337246153,52.81675059059282],[-127.28867789710273,52.81683174802933],[-127.28894424698986,52.81691176401845],[-127.28921235442827,52.81698839765959],[-127.2894831558365,52.81706163865396],[-127.28976676355211,52.81712856935027],[-127.2900545560585,52.817148943998035],[-127.29034900920287,52.817113203921934],[-127.29062277588355,52.8170390268713],[-127.29086033786324,52.816934976305454],[-127.29108346444505,52.81681483665648],[-127.29131035687992,52.81669634084114],[-127.29155923537245,52.816598333282634],[-127.2918385515006,52.816522962468724],[-127.29211130528401,52.816445986469894],[-127.29233762960553,52.81633982383139],[-127.29250714040198,52.81619841120996],[-127.29264636401075,52.81603940774207],[-127.29277419863452,52.81587211889871],[-127.29290958522493,52.81570922997604],[-127.29307326315066,52.81555947902684],[-127.29326707738261,52.81542340153323],[-127.29347222328728,52.815292811882145],[-127.29366886342034,52.815157823352536],[-127.2938532312861,52.81501680972583],[-127.29403384601616,52.814874160414995],[-127.29421631950252,52.81473204623134],[-127.29440637442703,52.81459433140786],[-127.29461151485374,52.81446429560046],[-127.29482890813664,52.814339728341075],[-127.29504255024928,52.81421408122337],[-127.2952383100382,52.81408078528732],[-127.29540008360948,52.81393048689924],[-127.29552234446234,52.813763821055154],[-127.2955998460749,52.813592600951075],[-127.29559713131741,52.813411058040245],[-127.29561301483979,52.81323043063505],[-127.29562792556104,52.81304812822935],[-127.29564844412089,52.812866893682546],[-127.29569512583551,52.81269040950088],[-127.29578482736173,52.8125229728382],[-127.29592412653993,52.81236676157493],[-127.29609238429481,52.81221583444675],[-127.29626156235881,52.81206489688559],[-127.29640639783193,52.811907503001926],[-127.29652406497561,52.81174312817337],[-127.29663048181042,52.81157550605556],[-127.2967321948836,52.811406259033404],[-127.29683765481582,52.81123753538974],[-127.2969543649567,52.81107260569991],[-127.29707950985711,52.81090982429493],[-127.29720840345499,52.810748122118646],[-127.29734010708972,52.81058694463956],[-127.29747366981911,52.810426311327575],[-127.29760724640573,52.81026567768254],[-127.29774174344332,52.81010503368002],[-127.2978743817015,52.80994441005086],[-127.29800514430435,52.80978325105989],[-127.29812932794059,52.8096199140503],[-127.29825444720315,52.80945657549837],[-127.29838708151807,52.809295951222666],[-127.29852627531082,52.80913693094649],[-127.29867768936091,52.80898282344605],[-127.29884316412642,52.80883304341041],[-127.29901620290012,52.80868710676105],[-127.29919394524545,52.808543350443664],[-127.29937543616704,52.808400682118815],[-127.29955598932564,52.80825801490445],[-127.2997403228157,52.808116991240134],[-127.29991899895353,52.80797378827286],[-127.30007130600028,52.80781854804053],[-127.30015435157846,52.80764726253572],[-127.30016557696275,52.80746668521139],[-127.30011176755929,52.80728627242871],[-127.30019494609215,52.80711890375842],[-127.30031631765293,52.80695503920083],[-127.30045539658322,52.806793219922085],[-127.30059830696102,52.806634720467294],[-127.30075435847199,52.80648112335866],[-127.30093583514135,52.80633844346738],[-127.30113053590165,52.80620290650979],[-127.30133750520513,52.806073402190435],[-127.3015615352283,52.80595547246613],[-127.30180645645304,52.80585188130231],[-127.30206269492369,52.80575432410802],[-127.30231519802369,52.80565569592742],[-127.302547880081,52.80554719077198],[-127.30274843555273,52.805421117501815],[-127.30290742239312,52.8052725239329],[-127.30303712986112,52.80510856364059],[-127.30315180258981,52.804938601095564],[-127.30326467068107,52.80477090907583],[-127.30334859951591,52.80459849012717],[-127.30342598232319,52.80442445807405],[-127.30352299809893,52.8042547001413],[-127.30362466641529,52.80408544634695],[-127.30372822325721,52.80391672738691],[-127.30383084337713,52.803748027682424],[-127.30393065177955,52.80357879420607],[-127.30402578890103,52.80340849169831],[-127.30411253984533,52.80323716145613],[-127.30418153407565,52.80306266598422],[-127.3042318504956,52.80288501555276],[-127.30427749819393,52.80270685206919],[-127.30433623118988,52.80253079372088],[-127.30441449328355,52.80235563009192],[-127.30452647951667,52.802189623013696],[-127.30469754817676,52.80204201301917],[-127.3049272548602,52.801927940499326],[-127.30519051900752,52.8018482310592],[-127.30546806512953,52.80178013533591],[-127.30574085449794,52.80170817344794],[-127.30599630919552,52.801616219908226],[-127.3062307490078,52.80150545455754],[-127.3064422645645,52.80137420407633],[-127.30668273679446,52.80127849736595],[-127.3069743222331,52.80124386661824],[-127.30727399064543,52.80123099683868],[-127.30757064546398,52.80124058549251],[-127.30783443207548,52.800935576766705],[-127.30799522485965,52.800786399429064],[-127.30820226926859,52.8006613555547],[-127.3084470926581,52.80055607398443],[-127.30869866554502,52.80045911837128],[-127.30895889703343,52.80037215311139],[-127.3092220066502,52.80028795274491],[-127.30947749703412,52.80019767670053],[-127.30972889363694,52.800095116603735],[-127.30991271019819,52.80000003542396],[-127.30995479300734,52.799978834662305],[-127.3100072828355,52.79981236517065],[-127.30996199793852,52.79963857652149],[-127.3101897119569,52.7993698402856],[-127.31033821906496,52.79921406263873],[-127.31051878286385,52.79907418332299],[-127.31072282701194,52.798942452153966],[-127.31094198595798,52.798818953511194],[-127.31117445416854,52.79870539322532],[-127.31141755645717,52.7986051636274],[-127.31168267968741,52.79852653914424],[-127.31196019386965,52.79845842792051],[-127.31223197809658,52.79838477593144],[-127.31248648023897,52.798293383242495],[-127.31273138282396,52.79819145392567],[-127.31297245126729,52.79808619550751],[-127.31321544244219,52.797982600791734],[-127.31346612222363,52.797887886175445],[-127.3137379346927,52.79781535112214],[-127.31400969690354,52.79774169515131],[-127.31427670198636,52.797664173378095],[-127.31454368871638,52.79758608628625],[-127.31480873086933,52.7975052137865],[-127.31506986795219,52.79741822431919],[-127.31533492546085,52.79733791532933],[-127.31562054303987,52.79729156522003],[-127.3159164321708,52.79727759453807],[-127.31621259511273,52.79727203080444],[-127.31650976564597,52.79726926159502],[-127.31681129505034,52.797257467039316],[-127.31711198964766,52.7972484876573],[-127.31738554685506,52.797293056517816],[-127.31763016441434,52.79739342676641],[-127.31786962641334,52.79750730448058],[-127.31812516472178,52.79760026111181],[-127.31838606854136,52.79768644083965],[-127.31865148781979,52.79776864182813],[-127.31892044696824,52.79784463333652],[-127.31919465267518,52.79791048666665],[-127.31948658064618,52.797948110131344],[-127.31978023044822,52.797981795055136],[-127.32003907488509,52.79806126928357],[-127.32026571954842,52.79818089056809],[-127.32054504818923,52.798231547325564],[-127.32084041939613,52.798260726892366],[-127.32113051143241,52.79829893187266],[-127.32140565924156,52.79836476051333],[-127.32167016734853,52.79844696501216],[-127.32194889299333,52.79850827770193],[-127.32222577938562,52.79857016639921],[-127.32247954567033,52.798665375308964],[-127.32273501431325,52.79875552519381],[-127.32301367407216,52.79881459444712],[-127.32330387834405,52.79885671129245],[-127.32359309279913,52.798896605879975],[-127.32388411282574,52.7989347936452],[-127.32417662569028,52.79896119055169],[-127.32447337278631,52.798974097831994],[-127.32477071090833,52.79897634523397],[-127.32506673054387,52.798966277539655],[-127.32535950194195,52.798941109971715],[-127.32565103901408,52.79890587702509],[-127.32594160447076,52.79886952452151],[-127.32623423577348,52.798839881946854],[-127.32653105095613,52.798825318191],[-127.32682692987285,52.79881076426966],[-127.3271166596707,52.79877722486918],[-127.32740317773434,52.79873027099957],[-127.32768671010342,52.79867718110168],[-127.32797020449891,52.798622414161215],[-127.32825172149738,52.79856430638899],[-127.328530302552,52.79850119187397],[-127.32881389929561,52.798449784227294],[-127.32910769076207,52.798427958204705],[-127.3294085481175,52.79842399380748],[-127.3297034496033,52.79840775791637],[-127.32998432080734,52.79835861998588],[-127.33026199407861,52.7982960675346],[-127.33053662886698,52.798225702980304],[-127.33080640271677,52.79814866785462],[-127.33107325747017,52.79806718184284],[-127.33133441739126,52.7979818413641],[-127.33159925550399,52.797895328734086],[-127.33187053064064,52.797806509701054],[-127.33213040153184,52.79770996464197],[-127.33236386588604,52.797600277715794],[-127.33255492241769,52.79747145272826],[-127.33269798230606,52.797322997427464],[-127.33280804051783,52.79715866011547],[-127.33289645053999,52.796985045927286],[-127.33297540184876,52.79680649979678],[-127.33305809904458,52.796628466962396],[-127.33315489173732,52.79645587809439],[-127.33327983818722,52.796292491870425],[-127.3334376088622,52.79613938492979],[-127.33362080716277,52.79599719715642],[-127.33380662240283,52.79584937509784],[-127.3339971067533,52.795702620471474],[-127.33419814659622,52.79556695391573],[-127.33441845404808,52.79545292879728],[-127.33466298203273,52.79537112324596],[-127.33494204049616,52.79532423537189],[-127.33524327109141,52.79530343882902],[-127.33555339114585,52.79529934402581],[-127.3358572466327,52.79530260971023],[-127.33615195964204,52.795311027017775],[-127.33644613706032,52.795331770020425],[-127.33674057794079,52.79536092011138],[-127.33703332010471,52.795395137114795],[-127.33732515901092,52.79542991962795],[-127.33761344477179,52.7954703461584],[-127.33790011683821,52.79551807140164],[-127.33818590636055,52.795567491768594],[-127.33847343089892,52.7956129731746],[-127.33876550348327,52.79565559538608],[-127.33905757380074,52.795697651995475],[-127.33934786069833,52.79574253484105],[-127.33963183141418,52.795793093324754],[-127.33990769921536,52.79585158959061],[-127.34016285391033,52.79593106195452],[-127.34035674806822,52.796071194435335],[-127.34057045647579,52.79619148090873],[-127.34068583220147,52.79637510213577],[-127.34077533840428,52.79653380432677],[-127.3408866358971,52.79667600064815],[-127.3410611799188,52.79685053441994],[-127.34118652029437,52.797026195303296],[-127.34126072597253,52.79720019892708],[-127.34131365227898,52.797376687454424],[-127.34135269547367,52.79755502041337],[-127.34139366631868,52.79773556402766],[-127.34117288277453,52.79798187626584],[-127.34112453011105,52.7981578367015],[-127.34108274062123,52.79833597273185],[-127.34104655484039,52.79851460061339],[-127.34101221115557,52.79869320740585],[-127.34099183928247,52.79887277532459],[-127.34100211966148,52.799051992893226],[-127.34102540368238,52.79923161775856],[-127.34105627689054,52.7995047508018],[-127.34110462490882,52.79968353319682],[-127.3410542897115,52.799855597575025],[-127.34096592815767,52.80000007541473],[-127.34095000415493,52.80002548086089],[-127.34088583326383,52.80020050085987],[-127.34086174547991,52.800380111030655],[-127.34087851892943,52.8005592542333],[-127.34093608375406,52.80073568956877],[-127.3410241471999,52.80090729293237],[-127.34109835896044,52.801081296220886],[-127.34114295901131,52.801259000433944],[-127.34116254521632,52.80143867626712],[-127.34116539999042,52.80161853434905],[-127.3411543143246,52.8017979958077],[-127.34110786759112,52.801975619713374],[-127.34097354186652,52.8021357584833],[-127.34092058275934,52.80231289178193],[-127.34085920474689,52.80248844445496],[-127.3407351904529,52.80265182756593],[-127.34061868989167,52.80281735739093],[-127.34056569615935,52.80299393488313],[-127.34058529817989,52.80317416634843],[-127.34077814971738,52.803309826414115],[-127.34104180443748,52.803391997507575],[-127.34130903718942,52.803470208657345],[-127.34154036517758,52.8036177569263],[-127.3417359976516,52.80375281874003],[-127.34189957316772,52.80390226181298],[-127.34203560733694,52.80406267210795],[-127.34213119735186,52.80423643000365],[-127.34230919857313,52.8043722574172],[-127.34254586322618,52.80448219002542],[-127.3427862117847,52.80459152407156],[-127.34301926986055,52.80470486849505],[-127.34322032608102,52.804834826477574],[-127.34334444239845,52.80499984606026],[-127.34336315612272,52.805181207981434],[-127.34343629013146,52.8053501825439],[-127.34362202729399,52.80549488612885],[-127.34385778311525,52.8056053914308],[-127.3441300739358,52.80569585861493],[-127.34437657198441,52.805793354668275],[-127.34450181216668,52.80593482249007],[-127.34449298510182,52.80612658727367],[-127.34459711787619,52.806305849422316],[-127.34473899552026,52.806385489115485],[-127.3450293442267,52.80640009510863],[-127.34524151879317,52.806381406433935],[-127.34566654318391,52.806512155170935],[-127.34595896557998,52.8065043182948],[-127.34625759670976,52.80648688680443],[-127.34655100534005,52.806509855762314],[-127.34684293091647,52.8065451792219],[-127.34709754360877,52.80660502386639],[-127.34738180789994,52.806662285845775],[-127.34769314106536,52.806694012891214],[-127.34799072886106,52.80670236831688],[-127.34828421067172,52.80672757380726],[-127.34857351931433,52.806767962357135],[-127.34885202098923,52.80684882468253],[-127.34915091795244,52.806868926479034],[-127.3493805885298,52.80684498989001],[-127.34974422120725,52.80688508584799],[-127.35004009456325,52.80689793021266],[-127.35035171519327,52.8069094807619],[-127.35063100905796,52.80686815809411],[-127.3509365037123,52.80683269328794],[-127.35128453217234,52.80684942644668],[-127.35152018282761,52.80686744387379],[-127.35225193133685,52.80697166341709],[-127.35287392732808,52.80692582109715],[-127.35323978059307,52.80685995661054],[-127.35385145820167,52.80681087449924],[-127.35451101394597,52.806806626216655],[-127.35487186319635,52.806905013315394],[-127.35528906016565,52.80687610233393],[-127.35555790469525,52.80679845668388],[-127.35570829300602,52.806648212238706],[-127.3558367914067,52.806481398866936],[-127.35599644480176,52.80632992610923],[-127.35617301363334,52.8061849737195],[-127.35632233388876,52.80603025734644],[-127.35645470348352,52.80586844672011],[-127.35657392679522,52.80570230451191],[-127.35667262701733,52.805533592827224],[-127.35672092396106,52.80535762682968],[-127.35673746417169,52.805176414759934],[-127.35680440688793,52.805002474792474],[-127.35690586267731,52.80483261010093],[-127.35699051428773,52.80466070689278],[-127.3570592767684,52.804485615845415],[-127.357146720743,52.80431368017847],[-127.35726130073654,52.804147590724874],[-127.3574040121235,52.803990142486924],[-127.35755705285794,52.803835937085346],[-127.35769509025148,52.80367742166429],[-127.35782183934543,52.803514553289254],[-127.35795419545991,52.803352740708384],[-127.35810052446813,52.803191887078654],[-127.35817129799145,52.80302182015006],[-127.35818144759621,52.80284460893471],[-127.35816923368189,52.802664849944605],[-127.35814488593972,52.802483554587845],[-127.35811960227208,52.80230227003946],[-127.358100880738,52.802122595270916],[-127.35807754099291,52.801943529871075],[-127.35805232920272,52.80176448611458],[-127.35802897189683,52.801584855964286],[-127.35800561788825,52.80140579065968],[-127.35798040390169,52.80122619091751],[-127.35795519294224,52.80104714705688],[-127.35793461502219,52.8008674846475],[-127.35792056333561,52.800688311595806],[-127.35791576587162,52.800508475484605],[-127.35791466202929,52.80032746679183],[-127.35791909759935,52.800145838029486],[-127.35793211740453,52.79999997705131],[-127.35793566662362,52.79996575457905],[-127.35796810093058,52.79978772021805],[-127.35802482534703,52.79961445299462],[-127.35813657829138,52.79944783877499],[-127.35828480382428,52.79928863918349],[-127.35843966411822,52.79913385492417],[-127.35859627332124,52.798975678666096],[-127.35877460684073,52.798829023993385],[-127.35899109736238,52.79871331086585],[-127.35924666935706,52.798629093279544],[-127.35952320478712,52.79856143599996],[-127.3598073646742,52.79849985885094],[-127.36008763083692,52.7984327218864],[-127.36034878839027,52.798348993033805],[-127.36060019468005,52.79825080560586],[-127.3608428421128,52.79814038985126],[-127.361061869954,52.798017362269555],[-127.36124608094238,52.797880158174536],[-127.36138318508267,52.797722769100666],[-127.36149010579848,52.797550603086336],[-127.361587599668,52.797374618881165],[-127.36170113629946,52.79720629433495],[-127.36185242296106,52.79705658595747],[-127.36204996709137,52.79692987825025],[-127.36227581730445,52.796817412603254],[-127.36251960276326,52.79671370503403],[-127.3627728515917,52.796615491279454],[-127.36302891014866,52.7965178002592],[-127.36327923844865,52.79641570080048],[-127.3635144725641,52.79630592127233],[-127.36373167969269,52.796184586318226],[-127.36393558163725,52.79605388284873],[-127.36413001747154,52.79591767582991],[-127.36431686265634,52.79577651737526],[-127.3644999565821,52.79563428137063],[-127.36467931731794,52.79549153253373],[-127.36485301589109,52.79534604264777],[-127.36502294523197,52.79519891056751],[-127.36519002676127,52.79505013455365],[-127.36535616824742,52.794900813270324],[-127.36552326230645,52.79475203658032],[-127.36569410808022,52.79460489275019],[-127.36586590669586,52.79445830246103],[-127.36603674719444,52.794310602193676],[-127.36620290062211,52.794161835376855],[-127.36636155303539,52.79401091394839],[-127.36649388319725,52.793850211178395],[-127.3665868562794,52.793678758139244],[-127.36665181213685,52.7935025920154],[-127.36665063881375,52.79332102701874],[-127.36660563603616,52.793133803387065],[-127.36661037143573,52.792962257224126],[-127.36681078621821,52.79283943482036],[-127.36710050435568,52.79277889531389],[-127.36739407592196,52.79275193586531],[-127.36769047590259,52.79272606355958],[-127.36797596957504,52.79267845648469],[-127.36825737512365,52.79261969678376],[-127.36853203629968,52.792553160107154],[-127.36877396116752,52.792450581357954],[-127.36882967504079,52.79227619839639],[-127.36880811674472,52.7920959918824],[-127.36883669947257,52.791915765203306],[-127.36891289246239,52.791742819972754],[-127.369015225844,52.791574062009154],[-127.36912595764102,52.791406317802064],[-127.36924698413777,52.79124125993119],[-127.36938304461079,52.79108163070426],[-127.36953509589628,52.790928539757374],[-127.36970309899246,52.79078031067977],[-127.36988146471505,52.79063643479178],[-127.37006731409429,52.790494721886816],[-127.37025416971292,52.79035522965796],[-127.37046932675518,52.79022942169487],[-127.3706817227775,52.79010421048687],[-127.37082255283728,52.789949007075414],[-127.3709417296331,52.789784524736945],[-127.37105243138639,52.7896162227782],[-127.37116501022189,52.78944901960561],[-127.37129449438602,52.78928722297475],[-127.37144096195632,52.789134194498594],[-127.37170515350387,52.78885818033381],[-127.37184871425062,52.7887012577662],[-127.37201013720299,52.788550860206215],[-127.3721922387171,52.78840862247654],[-127.37237339990769,52.78826583052414],[-127.37253761497001,52.78811595543552],[-127.37266710804253,52.787954721851335],[-127.37274136782315,52.78778011923792],[-127.37282685743398,52.787608182793136],[-127.3729393520035,52.78743873681779],[-127.37308005400875,52.78727961319206],[-127.37327553996118,52.78714954636824],[-127.37351540382696,52.78704193275388],[-127.37376377362271,52.7869387114261],[-127.37398474345824,52.786821230324264],[-127.37411880729856,52.786658255572505],[-127.37417447392075,52.786483313677046],[-127.37420115538468,52.7863025420828],[-127.37421022334033,52.78612253276526],[-127.37421651390608,52.78594256493168],[-127.37421905804216,52.78576207605394],[-127.37421511123829,52.785581663202905],[-127.37420099629804,52.78540249032505],[-127.37417296701925,52.78522403639267],[-127.37411797341463,52.78504478643807],[-127.37402510651363,52.78487157547477],[-127.37386363340484,52.78473056122488],[-127.37365430628269,52.784603548613404],[-127.37342758422365,52.78448402942506],[-127.37322189778939,52.784354175741605],[-127.37304828185928,52.78421106081339],[-127.37306919797263,52.783995045015665],[-127.37335189160564,52.783920564823546],[-127.37357383687228,52.78380475845447],[-127.37374174374912,52.78365483775902],[-127.37389553749071,52.78349947778834],[-127.37403436610012,52.78334036539358],[-127.3741722582547,52.78318127274452],[-127.3743374043637,52.78303250429424],[-127.3745232746709,52.78289245963795],[-127.3747109854541,52.7827523930879],[-127.37488365905186,52.78260633323723],[-127.37505253170605,52.78245808490093],[-127.3752157760303,52.78230765158831],[-127.37536963170969,52.78215453043599],[-127.37551034333843,52.78199652379108],[-127.3756369601942,52.78183363388453],[-127.37575326755963,52.78166805809431],[-127.37586302974299,52.781500882125854],[-127.3759643903243,52.78133212777749],[-127.37605448782931,52.78116013389314],[-127.37614741312082,52.78098923656602],[-127.37625626911634,52.780822626700555],[-127.37640542800132,52.780667882231654],[-127.37657048441193,52.78051686950394],[-127.37669995714334,52.78035618640965],[-127.37679940401928,52.7801863237717],[-127.37689416243973,52.78001483924607],[-127.37700955739992,52.779849837528204],[-127.37715308660037,52.77969347225208],[-127.37730973616364,52.77954088021164],[-127.37747294347628,52.7793898877301],[-127.37763615270511,52.77923945092188],[-127.37779373449716,52.779086847199046],[-127.37793911464392,52.77893045907345],[-127.37806385678262,52.77876758803276],[-127.37817079228549,52.7785998776913],[-127.37827397500965,52.77843053450718],[-127.37838463976337,52.77826334500404],[-127.37851689415392,52.77810319173102],[-127.37866976596447,52.777948956206785],[-127.3788357573952,52.7777984847651],[-127.37900645028179,52.77764964356536],[-127.37917152201011,52.77749974732554],[-127.37932440753013,52.777346075592106],[-127.37945391441778,52.77718706531233],[-127.37954961243497,52.77701668792098],[-127.3796107045828,52.77683831549317],[-127.37964202309526,52.77665804258124],[-127.37964093666513,52.77648040159305],[-127.37960081737847,52.776302089956914],[-127.37954584528141,52.77612339706945],[-127.37950295006823,52.775945126990315],[-127.37946463398201,52.775765117219386],[-127.37946538631267,52.77558688958424],[-127.37950229142955,52.775407115759116],[-127.37956527357969,52.7752298328145],[-127.37966662599547,52.77506219519733],[-127.37981102873434,52.77490469472412],[-127.37997783466844,52.774751413894876],[-127.38014188049736,52.77459872123808],[-127.38028072961242,52.77444185038469],[-127.3803626308418,52.77427555288927],[-127.3803586953587,52.774096259339366],[-127.3803267547666,52.773912255981436],[-127.38032554183147,52.773731244545914],[-127.38033924734897,52.7735517432705],[-127.3803594418043,52.77337216558411],[-127.38041519212067,52.77320113629787],[-127.3804407372609,52.77301477030891],[-127.3804442804616,52.77283707436273],[-127.38040879097716,52.77265815211807],[-127.38035290266913,52.77248002593804],[-127.38027766352373,52.77230661997528],[-127.38014612936462,52.77214339954106],[-127.38000726222775,52.771983062963635],[-127.3799794349089,52.771811340516656],[-127.38004042720839,52.7716301616496],[-127.3799738067493,52.771349605831475],[-127.37997635849722,52.77116967067556],[-127.37999840938492,52.77099007092661],[-127.3800204783251,52.77081103585955],[-127.38002211264921,52.77063167635605],[-127.38000794521497,52.770451937892645],[-127.37998636902944,52.770272295573065],[-127.37996385731478,52.770092655274034],[-127.37994507599853,52.76991353596962],[-127.37993555678624,52.76973375167966],[-127.37993811198713,52.769554381216125],[-127.37994996182937,52.76937490133804],[-127.37996920230894,52.76919476952833],[-127.37999498233921,52.76901569056679],[-127.38002542737374,52.76883711262294],[-127.3800660903033,52.7686589703313],[-127.38011979878746,52.768482360240164],[-127.38017813919528,52.76830569557291],[-127.38023182882256,52.76812852964505],[-127.38027436435854,52.76795093005814],[-127.38031037514698,52.76777228636837],[-127.38034080313088,52.76759370837157],[-127.38036843622653,52.76741459832599],[-127.3803802836684,52.76723511815218],[-127.38037818667027,52.767055246179],[-127.380377009904,52.76687535438301],[-127.38037028074454,52.766695536906205],[-127.38035333681617,52.76651583070829],[-127.38032898794675,52.76633677659514],[-127.38030183017335,52.76615719957227],[-127.38027005846256,52.76597823280214],[-127.38023181706335,52.7657998981296],[-127.38018525393588,52.765622791243665],[-127.38011372088998,52.765448775990585],[-127.38001539551159,52.76527843870517],[-127.3799124930185,52.76510983203972],[-127.37980035204592,52.764943019812364],[-127.37969010078903,52.764776750154375],[-127.37959361617152,52.76460582589069],[-127.37951187010293,52.764431374430636],[-127.37943194398828,52.764255771638574],[-127.37934654188147,52.764083039896406],[-127.37924465588931,52.7639172273042],[-127.37908216481682,52.76377174748136],[-127.37882107476058,52.76367730189197],[-127.37853820946069,52.76362738212278],[-127.37824725476293,52.763585411918456],[-127.37795891070724,52.76353779693804],[-127.37768215272497,52.763475482607696],[-127.37742133826478,52.76338943282781],[-127.37716847122,52.76329096838627],[-127.37694293204845,52.76317592516494],[-127.37675382517435,52.763039712870416],[-127.37658749019127,52.76288979126265],[-127.37642295778,52.76273816244753],[-127.37623655537305,52.762599119847394],[-127.37599172870566,52.76249046161047],[-127.37576625117046,52.76237710123405],[-127.37567739060053,52.762211688658795],[-127.37561315994907,52.76203310133036],[-127.37547805422916,52.761872723737554],[-127.37531543923963,52.76172274769998],[-127.37513448571343,52.76157972081831],[-127.37495996311445,52.76143436749766],[-127.37479639850432,52.76128384591855],[-127.37462096119883,52.76113906774478],[-127.37442725731121,52.76100347053849],[-127.37422715769544,52.76087075468138],[-127.3740197480401,52.760742042773714],[-127.3738041588414,52.76061846585028],[-127.37357949117641,52.76050116424964],[-127.3733475464497,52.76038843100911],[-127.37311106157414,52.760278557187206],[-127.3728764004978,52.7601680966099],[-127.37264631499468,52.76005534022533],[-127.37238491993517,52.75995023121164],[-127.37222071965392,52.759808124607865],[-127.37204347755056,52.75966448461932],[-127.37187807116207,52.759513415625875],[-127.3716693592885,52.759372385138214],[-127.371500136319,52.75924714953673],[-127.37131614557958,52.75909574123409],[-127.37109419344215,52.75897559646816],[-127.37085597745022,52.75886965700855],[-127.37060873363097,52.75877111285271],[-127.37035605300044,52.75867710630591],[-127.37009974944486,52.75858539230051],[-127.36984348586482,52.758495354115254],[-127.3695835990281,52.758407599476946],[-127.36931106894315,52.75833120079266],[-127.36907757887141,52.75822744432512],[-127.36891309104307,52.75807580450621],[-127.36876874532364,52.75791551814664],[-127.36860988014249,52.75776549804744],[-127.36837273760266,52.75766345968021],[-127.36811464257363,52.757573439148544],[-127.36784925539943,52.75748798668362],[-127.36759026323462,52.75739909636411],[-127.36733491135388,52.75730792124954],[-127.3670804779306,52.75721617891606],[-127.36682601269824,52.757123871483614],[-127.36657156340823,52.75703156332012],[-127.36631981931001,52.75693698131261],[-127.36607344551263,52.756836166844714],[-127.36582168590927,52.756741028004434],[-127.36554926251569,52.75666741717289],[-127.36526330777414,52.756605737077585],[-127.36499373055874,52.75653377762519],[-127.36476202689963,52.756427194149246],[-127.36456340460342,52.756280985238405],[-127.36444581626435,52.75611534262657],[-127.36443574889279,52.75594508564563],[-127.36448574170768,52.755766848220134],[-127.36456349286851,52.75558603685126],[-127.36463484977054,52.75540867146566],[-127.36470723046605,52.755234091813406],[-127.36478706774096,52.75506054614752],[-127.3648659660874,52.75488644640805],[-127.36493557256415,52.75471246376441],[-127.36498467710402,52.7545353482014],[-127.3649872225677,52.754353735337624],[-127.36498140878722,52.75417166384601],[-127.36506868192431,52.75399858718975],[-127.365142154691,52.75382904280269],[-127.36529788857204,52.75367870707671],[-127.36549504310496,52.75354638763004],[-127.365733749413,52.75343712222804],[-127.36592319397836,52.75329592477191],[-127.36607782421726,52.75314000530457],[-127.36614385534648,52.75297053790056],[-127.36614830169228,52.75279002349347],[-127.36613780184668,52.752606885553035],[-127.36615894528899,52.752426176472],[-127.36626031397275,52.7522591036807],[-127.36643950462994,52.752116903848155],[-127.36663464993562,52.75198012210325],[-127.3668147044828,52.751836225755625],[-127.36697217001301,52.7516819486387],[-127.36712868161605,52.751527126449034],[-127.36730415594037,52.75138496850793],[-127.36753365910177,52.751278604194475],[-127.36780960643189,52.75120252625246],[-127.36805408924167,52.75109991364098],[-127.36827287313982,52.750977424560894],[-127.3684229486913,52.7508249174029],[-127.36854195392867,52.75065819234073],[-127.36872584732986,52.7505181755553],[-127.3689673008176,52.75040831501067],[-127.36920893220442,52.7503040473427],[-127.36930956131984,52.75014314949338],[-127.36938901151011,52.74995839541563],[-127.3694789975703,52.74978416209564],[-127.3695676095394,52.74962452526106],[-127.36961831393872,52.74944066283697],[-127.36975229531015,52.74927825379065],[-127.36992027732572,52.74913449326554],[-127.37013711891974,52.74900978129189],[-127.37039183313928,52.7489087296401],[-127.37066343501506,52.748842218517616],[-127.37095491945344,52.74881751201839],[-127.3712581778955,52.74881228708239],[-127.37155544268089,52.748794236787326],[-127.37183487590501,52.74874052598244],[-127.37210988208375,52.74866500448638],[-127.37236950427305,52.74857229316645],[-127.3726016980881,52.74846365408335],[-127.37276115041384,52.74831494963957],[-127.37288933501624,52.748145870295374],[-127.37308184964802,52.7480152772087],[-127.37331493728699,52.74790549628435],[-127.37356504627515,52.74780616832],[-127.3738246960989,52.74771457419365],[-127.37408636504668,52.74762856025758],[-127.37434995697085,52.74754420898922],[-127.3746173148053,52.747462045753366],[-127.37488947884677,52.7473848740013],[-127.37516380338839,52.74731720831806],[-127.37544034223954,52.747260715948386],[-127.37572647928525,52.74724278551767],[-127.37602643320541,52.747279615890704],[-127.37631543794309,52.74732217856124],[-127.37660194193518,52.7473737370445],[-127.37688671469883,52.74742867785375],[-127.37717220992143,52.74747744905963],[-127.37745997522067,52.7475104914229],[-127.37775238236283,52.74751434425656],[-127.37804858874928,52.747492362172906],[-127.37834459630245,52.747464221245686],[-127.37863892910501,52.74744170373568],[-127.3789322364724,52.747416399798496],[-127.37922555804354,52.7473910859885],[-127.37951895495463,52.74736857727102],[-127.37981445659375,52.747353333326544],[-127.38011015990408,52.747344802655974],[-127.38040591440216,52.747337400496136],[-127.38070844308237,52.74733887596004],[-127.38100805532683,52.74733646636663],[-127.38128493061839,52.74729060913309],[-127.38154299542171,52.74720798348412],[-127.38179216113744,52.74710864876502],[-127.38203833673025,52.74700318832267],[-127.38229045287059,52.74690885725036],[-127.38263982474146,52.7470106646498],[-127.38292099734475,52.747040408728125],[-127.38321787924774,52.747010568231964],[-127.3835068543053,52.746966239722404],[-127.38378899936222,52.74691134712232],[-127.3840720423345,52.74685532233153],[-127.38435728749997,52.746810479787634],[-127.38465544974605,52.746791829447176],[-127.3849503465564,52.74675808035963],[-127.38522051423057,52.74670612357977],[-127.385500225413,52.746661908572094],[-127.38573869689918,52.74654812006989],[-127.38594047593968,52.7464185075498],[-127.38608099458531,52.746259364043645],[-127.38623181568119,52.746103452188116],[-127.38640711354932,52.74595846845724],[-127.38658713084858,52.745816226351025],[-127.38677088967681,52.74567449562684],[-127.3869565420372,52.7455344280045],[-127.38714312806026,52.745394349008365],[-127.38734759644281,52.74526190425496],[-127.38755491122289,52.745131667209186],[-127.3877115241904,52.744982974959534],[-127.38781464591223,52.744815860744964],[-127.38789056940284,52.74463954540632],[-127.38795815244617,52.74446331981578],[-127.38800526210922,52.7442856598117],[-127.38802726541306,52.74410605536885],[-127.3880316367936,52.74392610379664],[-127.38802949042297,52.74374566447709],[-127.38803107178884,52.743565736944085],[-127.38804567362212,52.743386785016256],[-127.38807687766204,52.74320482965775],[-127.38812929526641,52.74301926025554],[-127.3882409646066,52.742858204575434],[-127.3884496364314,52.74274140029053],[-127.38872226515073,52.742651860116055],[-127.38899209990244,52.742561796442544],[-127.38917651035734,52.74244079479732],[-127.3891740680168,52.74225139156896],[-127.38917651002257,52.742069776713144],[-127.38917055823471,52.74188657551766],[-127.38916745080022,52.74170502641235],[-127.3891811488505,52.74152720567454],[-127.38925654105994,52.74136321617595],[-127.389481534876,52.741235572208325],[-127.3897049056522,52.74111466347491],[-127.3899188777273,52.74099051204703],[-127.39008483182353,52.74084450289951],[-127.39022348008791,52.74068593159587],[-127.39034991859347,52.74052302137789],[-127.39047536686219,52.74035844587629],[-127.39060929508027,52.74019768823969],[-127.3907760875453,52.740048870248266],[-127.39096261875623,52.739908219944155],[-127.39108537925375,52.73974647335577],[-127.39116318945626,52.73957180950704],[-127.39121117871137,52.73939301606795],[-127.39123860253935,52.739209427205935],[-127.39126136374018,52.73902532874432],[-127.39129726782512,52.738845557796765],[-127.39136130424306,52.73867554086207],[-127.39148815160584,52.73852551013402],[-127.39172191459143,52.738411208068406],[-127.39197818663713,52.738304475448],[-127.39222874797105,52.73819333545498],[-127.39246906025579,52.73808063087493],[-127.39256635634597,52.737934877726296],[-127.3924982000392,52.73775073851578],[-127.3924273609346,52.737569428914355],[-127.39240677848578,52.73739313546206],[-127.3924781319487,52.73721966799518],[-127.39256803363041,52.737046535956885],[-127.3926532875389,52.73687290310087],[-127.39270972984635,52.73669737085081],[-127.39271412052115,52.73651909462123],[-127.39268505350515,52.736338418325374],[-127.39265876079742,52.73615770005683],[-127.3926761515709,52.735979834164056],[-127.39278848303407,52.73581148369558],[-127.39295716346054,52.73566488123995],[-127.39313803191845,52.73552205226765],[-127.39332829948599,52.735383038859425],[-127.39352708281245,52.73524897238481],[-127.39373251228939,52.7351198660768],[-127.39394833337676,52.73499679624324],[-127.39416984130499,52.73487703],[-127.39439322385044,52.73475835294137],[-127.3946241292762,52.734642392629105],[-127.39473811843477,52.734383226715266],[-127.39482433298325,52.73421126621263],[-127.39491987003724,52.73404030655395],[-127.39498652771434,52.73386577199057],[-127.39500568918888,52.73368564245122],[-127.39501553837552,52.7335039379323],[-127.39505709815842,52.733328016277],[-127.39520851997717,52.7331642460469],[-127.39547829105915,52.733131324162834],[-127.39577681004094,52.733126646800265],[-127.39608507634095,52.733136424336195],[-127.3963851003912,52.73314966204033],[-127.39667773867461,52.73319213068768],[-127.39696779118876,52.73321221125075],[-127.3972580510996,52.73318184768254],[-127.3975468966915,52.733136372461644],[-127.39783556189407,52.733085850093225],[-127.39812438776305,52.733039808727185],[-127.39841271803556,52.73300722348062],[-127.39870045754466,52.7330133114989],[-127.39898632122238,52.733075475705185],[-127.39927503286958,52.733111259322],[-127.39957171510294,52.73310715019475],[-127.39986784746169,52.73308624219277],[-127.40000092255809,52.7330712009566],[-127.4001598487906,52.73305248785569],[-127.40044773732764,52.73300645193192],[-127.40072670421047,52.73294314336476],[-127.40098447987175,52.73285543647818],[-127.40121396354755,52.732725463822696],[-127.40144506346704,52.73261677764145],[-127.40170834542684,52.7326125066654],[-127.4019975504018,52.73269142828853],[-127.40229063330125,52.732719305783995],[-127.40259127620845,52.73269440917525],[-127.4028559518757,52.732619501481736],[-127.40309064547982,52.73250740621695],[-127.4033175491356,52.73238362971601],[-127.40355139372834,52.73227377650921],[-127.40381277951435,52.73221180097863],[-127.4041174609782,52.73222551899984],[-127.40441641420111,52.73223426528269],[-127.40471448830695,52.73224470719911],[-127.40501055727005,52.7322501238165],[-127.40530322977517,52.732237080882996],[-127.40558721449973,52.73218547443935],[-127.40587215511918,52.732134976738465],[-127.40616541134222,52.732111280438126],[-127.40646078322875,52.73209596933306],[-127.40675626172514,52.732083454000836],[-127.40705172521395,52.732070938101444],[-127.4073482337194,52.7320617716415],[-127.40764400673467,52.732058217837356],[-127.40793993069938,52.73205970110118],[-127.4082359618977,52.73206398909759],[-127.408532052121,52.73207051746542],[-127.4088274627359,52.73208434368618],[-127.40912302090898,52.73210264207937],[-127.40941769346934,52.73209405740514],[-127.40971085497206,52.73206754657206],[-127.41000067341955,52.73202427048658],[-127.41028974113578,52.73198659832096],[-127.41058274310679,52.73198363539056],[-127.41087918062031,52.73200024187768],[-127.41117549262147,52.73201348638406],[-127.41147450112193,52.732023890880654],[-127.4117658251844,52.7319979619642],[-127.41194108965811,52.73185630009916],[-127.4120504899487,52.73168627913642],[-127.41209750411986,52.731509172665],[-127.4121146787406,52.731326812320475],[-127.41212271521177,52.73114905474257],[-127.41217821464897,52.73100378750066],[-127.41221498081089,52.730825118573826],[-127.4122387111616,52.73064492091541],[-127.41225038151347,52.73046487759585],[-127.41223987094253,52.7302867785663],[-127.41214147982454,52.7301158995552],[-127.4121222300452,52.72992614069171],[-127.412258508757,52.729783818140305],[-127.41249800850181,52.72967780595012],[-127.41276479291783,52.7295837942622],[-127.41303388940023,52.72950320506638],[-127.41329175235238,52.72941995296455],[-127.41348291719245,52.72928257121654],[-127.41362697064076,52.729123348309564],[-127.41372154237179,52.72895406921245],[-127.41380017502638,52.72877937780634],[-127.41392087031198,52.72861482282385],[-127.41400145198591,52.728443470454714],[-127.41404751618315,52.72826580920198],[-127.41408983464721,52.72808707220794],[-127.41412846313466,52.72790894466594],[-127.41417267209023,52.72773130568599],[-127.41425515710173,52.72756105094819],[-127.4144436147128,52.72742650679493],[-127.41473133883797,52.727377074184496],[-127.41500359921828,52.72730877203604],[-127.41523933300239,52.727201678392724],[-127.41546351440576,52.72708182879642],[-127.41568677877429,52.72696255477415],[-127.41592794157539,52.726851475319314],[-127.4161700559873,52.72674093981538],[-127.41637648139877,52.726617384320896],[-127.41650959066695,52.72646388532954],[-127.41656287308871,52.7262805307987],[-127.41656152688397,52.726100078774074],[-127.41646945794346,52.725924086702086],[-127.41646640650255,52.725748138946926],[-127.41657657790772,52.72557418459071],[-127.41680859011825,52.72546713251376],[-127.4170741900129,52.72539442216111],[-127.41734727580348,52.72532330646909],[-127.41762231098332,52.72525552033037],[-127.41789447896805,52.72518497042071],[-127.41815986721994,52.725105534576514],[-127.4184267964478,52.72501711207158],[-127.41868138361376,52.72491987105646],[-127.41888945756752,52.724790130227895],[-127.4189257019367,52.72462491544862],[-127.41891419343408,52.724445707171604],[-127.41889154238068,52.72426606891905],[-127.4188680926415,52.72406234494779],[-127.41910196362575,52.723955830478246],[-127.41930821452678,52.72382722279589],[-127.41951349290842,52.723697514554964],[-127.41973380606294,52.723573784272205],[-127.41996164531957,52.723453325074026],[-127.42017824803114,52.723329638890604],[-127.42036582684881,52.72319789286213],[-127.4203849099779,52.72301831347571],[-127.42054072836844,52.7228796707747],[-127.42076397148573,52.72276038656101],[-127.4209939179534,52.72264774611491],[-127.42122669264477,52.72253675674452],[-127.42144049485432,52.72241253708903],[-127.42162971502118,52.722274608330636],[-127.42180855878028,52.72213120058406],[-127.42200533739498,52.72199710712488],[-127.42221342794987,52.72186903654723],[-127.42242248886687,52.72174207471443],[-127.42262774750517,52.7216123518711],[-127.42283395802774,52.72148318202395],[-127.42304393473155,52.72135620787755],[-127.42325956112913,52.721231406521824],[-127.42350098871975,52.72112983059861],[-127.42376439815591,52.721048163607406],[-127.42403454501964,52.72097370459387],[-127.42430562497866,52.7208992246263],[-127.42457964537674,52.72082975690573],[-127.42487319090569,52.720817783237315],[-127.42516340274878,52.7207890265139],[-127.4254450791794,52.720726754083906],[-127.42569029958298,52.72062792518701],[-127.42592596980869,52.72052080956095],[-127.42615967298411,52.72041035460798],[-127.4263905269376,52.72029769201223],[-127.42661947367633,52.720183931243234],[-127.42684931614339,52.720069038160474],[-127.4270791762133,52.719954709336626],[-127.42731002528733,52.719842044894165],[-127.42754372118257,52.719731587129324],[-127.4277821736339,52.71962498965273],[-127.42802541664919,52.719522825937865],[-127.4282753222953,52.719425620137486],[-127.42852809342362,52.71933117667031],[-127.42878281089708,52.7192395157004],[-127.42903848416961,52.71914896342427],[-127.42929701927264,52.719060617503025],[-127.42955845366792,52.71897559839179],[-127.42982282888838,52.71889559144509],[-127.4300930262254,52.718823350334354],[-127.43037000331228,52.718760002190784],[-127.4306518458474,52.71870331055878],[-127.43093473464405,52.718649977214206],[-127.43121854188769,52.71859662298317],[-127.43150425853992,52.718544930594085],[-127.43179431941853,52.71851224022198],[-127.43208801565204,52.71850528610089],[-127.43238393687248,52.71850895736391],[-127.4326809838078,52.71851877474989],[-127.43297717165667,52.718530843761],[-127.43327329942979,52.718540670895834],[-127.43357021523471,52.71854655988972],[-127.43386634734907,52.71855695042479],[-127.43415751526614,52.718584770978744],[-127.43444284535451,52.7186322741585],[-127.43472561380557,52.71868654259684],[-127.43501191706913,52.71873515341252],[-127.43530161321637,52.71877476345529],[-127.43558868679145,52.718818879700976],[-127.43586608059859,52.71887825101388],[-127.43613473713422,52.71895398683858],[-127.4363972335186,52.719039321060585],[-127.43665256034876,52.719132024239016],[-127.43689996804096,52.71923716326713],[-127.43714814556036,52.719337799633706],[-127.43740210873047,52.71941763169212],[-127.43769076206509,52.71937037190089],[-127.43791967379562,52.71925658897364],[-127.4381628715265,52.719153839463395],[-127.43841561952448,52.719059383604545],[-127.43867222430919,52.718969354565516],[-127.43893367720148,52.7188854349934],[-127.43919977499617,52.718802022685495],[-127.43946873903666,52.71872137237449],[-127.43974081042327,52.71865020668257],[-127.44001617818785,52.71859413690615],[-127.44053390557815,52.718631485724266],[-127.4407351795581,52.71849561838382],[-127.44094986241748,52.71837248090767],[-127.44118928365212,52.718268085484794],[-127.44143913333751,52.71817029576299],[-127.44168997652947,52.71807472615925],[-127.44194557776096,52.71798302516743],[-127.442203140999,52.71789410625754],[-127.44245111735879,52.717796328401164],[-127.44268762650273,52.71768804686945],[-127.44292127093337,52.71757755826473],[-127.44315111246635,52.71746431818145],[-127.44337807020709,52.717348306344604],[-127.44359936712529,52.71722900102086],[-127.44381495450189,52.717105837890074],[-127.44402109840159,52.71697719507435],[-127.44422059427943,52.71684414114681],[-127.44441817868298,52.71670943350857],[-127.44461671907918,52.71657583465286],[-127.44482096654495,52.71644609278083],[-127.4450346549908,52.71632182974074],[-127.44525399389072,52.71619974738808],[-127.44547994412152,52.716081501785645],[-127.4457106899367,52.71596823625246],[-127.4459491100679,52.715862166057924],[-127.4462067510101,52.7157765998125],[-127.44650656742805,52.71573142176037],[-127.44675984479372,52.71565374577523],[-127.44692563940232,52.71551157983443],[-127.44705813527213,52.71534460850031],[-127.44721137506798,52.71518746008859],[-127.44739669726162,52.7150472939218],[-127.44759517876521,52.71491201345992],[-127.44780411126838,52.71478444102216],[-127.44802924565745,52.71467012807053],[-127.44829443688567,52.7145883824582],[-127.44856436735468,52.71450994041895],[-127.44882294793057,52.714424912536934],[-127.44902618112509,52.71429348951463],[-127.44917297223192,52.714138103988084],[-127.44924671581025,52.71396120357838],[-127.4493917082394,52.713807516909405],[-127.44960338401917,52.713679351089354],[-127.44983977638039,52.71356881387321],[-127.45010625638893,52.71349825742662],[-127.4504050391104,52.71347830754718],[-127.4506993088755,52.71346176667385],[-127.4509244242515,52.71334688315374],[-127.45117141615394,52.71324854217423],[-127.45143846923779,52.71316788704726],[-127.45171541179477,52.713105043755995],[-127.45200234770009,52.71306393873017],[-127.45229531437569,52.713036200533246],[-127.4525892572058,52.713010135385666],[-127.45288010768668,52.71297514032506],[-127.45316984810546,52.71293455359793],[-127.4534497688872,52.712877838852236],[-127.45371893094274,52.71280443388966],[-127.45398412298654,52.712723795945635],[-127.45424930997079,52.71264260145909],[-127.45451837817308,52.712566953890544],[-127.45479527422376,52.712502982819785],[-127.45508113141217,52.712457399774344],[-127.45537421064827,52.71243358017594],[-127.45567091584547,52.712406907915636],[-127.4559625413459,52.71236741169039],[-127.45614623612714,52.71223509775245],[-127.45632110096652,52.712088321050594],[-127.45656816870743,52.71199277426316],[-127.45683516123724,52.7119104213896],[-127.45709932733652,52.71182699108723],[-127.45736253904744,52.711743007094654],[-127.45764653469877,52.71169743186977],[-127.45794038872144,52.71166911232667],[-127.45823332305977,52.71164080349517],[-127.45852920173652,52.71161750598628],[-127.45881911860077,52.711582507594095],[-127.4590816161203,52.711504689279934],[-127.4593265152237,52.71140019597388],[-127.45957626822972,52.71130235833307],[-127.45981554728317,52.71119624811827],[-127.46001508209993,52.71106653714586],[-127.46018522637641,52.710917571306204],[-127.46038179906031,52.71078284785244],[-127.46058494121756,52.710650283980705],[-127.46079186535206,52.71051991443625],[-127.46100641192656,52.71039561010734],[-127.4612305876735,52.71028183866604],[-127.46149303486897,52.71020290337203],[-127.4617804164031,52.710148308043834],[-127.46206219918048,52.71009266993538],[-127.46234697910027,52.71004315443285],[-127.46263275421492,52.709995867691525],[-127.462919543565,52.70995136545716],[-127.46320736233652,52.70990965650112],[-127.46349823620835,52.709875755279874],[-127.4637480284244,52.709779593827484],[-127.46397870704259,52.7096663006032],[-127.46420554764248,52.709549683085534],[-127.46444104141696,52.70944193342803],[-127.46470135546039,52.70935516182965],[-127.46498171131651,52.709284962061744],[-127.46525740623032,52.70921425498282],[-127.46550277567545,52.709124305739394],[-127.46566926779988,52.70897818397603],[-127.4657530964386,52.70880002439234],[-127.4657868899396,52.708623047166014],[-127.46579457957617,52.70844135694169],[-127.4658032460901,52.70826134037253],[-127.46580356514154,52.70808141932646],[-127.46581689112402,52.70790190036408],[-127.4658403833894,52.70772169809549],[-127.46586662855529,52.70754089636908],[-127.46590780995277,52.70736270548302],[-127.46597696671579,52.70718977797234],[-127.46608437056284,52.707023653127784],[-127.46621884442861,52.70686279388347],[-127.46636075364968,52.706702962274534],[-127.4664886741348,52.70654049883314],[-127.46658856578338,52.70637166961496],[-127.46666883273424,52.70619803738027],[-127.46673139034638,52.706021820078014],[-127.46677815005391,52.70584468866937],[-127.4668044623835,52.705665562544105],[-127.46681868352901,52.70548547590482],[-127.4668282639872,52.70530543842074],[-127.46683787854502,52.70512596544616],[-127.46684283375278,52.70494599483806],[-127.46684687399646,52.70476659166518],[-127.46685738814159,52.70458654238852],[-127.46687814037267,52.70440749471939],[-127.46690164530085,52.7042278475681],[-127.46691865682305,52.70404828175805],[-127.46691900533494,52.70386892473087],[-127.46690359534384,52.703689765155],[-127.46688075388099,52.70351013371989],[-127.46686161902433,52.703330464781615],[-127.46685452140701,52.70315063601636],[-127.46685670417116,52.70297069990556],[-127.46686815629143,52.70279120361141],[-127.46688978799675,52.70261101476835],[-127.46690858995966,52.702429184409176],[-127.4669338698743,52.70224727284233],[-127.4669769186228,52.702070187346635],[-127.4670498982337,52.701900564414544],[-127.46722577554839,52.70175880550734],[-127.46742870002402,52.70162174705947],[-127.46757725290135,52.70146686966904],[-127.46771640554873,52.701308191064996],[-127.46785085532728,52.70114732932645],[-127.46798437020782,52.700986479128105],[-127.46812071389311,52.700827279186676],[-127.46825799013737,52.7006680583913],[-127.468396199545,52.70050883466627],[-127.46853347374342,52.70034961351362],[-127.46867166627501,52.700190389615145],[-127.46883290287647,52.700000045530494],[-127.46891847768117,52.69990088335127],[-127.46893468374549,52.699752157532565],[-127.46895818619286,52.69970758025751],[-127.46896212981451,52.699660450528164],[-127.46933478026533,52.69944615400001],[-127.46953690705018,52.69931358530912],[-127.46973719453365,52.699181039337255],[-127.46993557460856,52.69904739599062],[-127.47013020497458,52.69891212242242],[-127.47031918343869,52.69877466861502],[-127.47047515157949,52.69864716183184],[-127.47054276915152,52.69856504725062],[-127.47057131762938,52.698452027661965],[-127.47076165039955,52.69819181543487],[-127.47078607402197,52.69801271992231],[-127.47074476815952,52.69783556233004],[-127.47066739823114,52.69766054378506],[-127.47055788640486,52.697494340704516],[-127.47039783931548,52.69734109399001],[-127.47030213628317,52.697171910292795],[-127.47023399934132,52.69699621943735],[-127.47017972735416,52.69681922444043],[-127.470143887388,52.696639199962455],[-127.47016651325904,52.69646124795502],[-127.47023832537732,52.696285475977355],[-127.47031569512362,52.69610963410928],[-127.47035597111557,52.695933137213736],[-127.47033784007428,52.6957562530926],[-127.47028542194596,52.69557923472066],[-127.4702200162029,52.695401823463364],[-127.47016478918141,52.695223728297755],[-127.47013827164649,52.69504526349537],[-127.47013396747288,52.6948659636421],[-127.4701435319214,52.694685933559704],[-127.47015866881269,52.69450582448652],[-127.47017287214278,52.694325736082874],[-127.47019912928243,52.69414605223],[-127.47026635166041,52.693971458529354],[-127.47038000919281,52.69380020025496],[-127.47041869952172,52.69363156969514],[-127.47026952887309,52.69347034816307],[-127.4700839844518,52.69332975172057],[-127.46990928335572,52.693180616053716],[-127.4697593939076,52.69302556370882],[-127.46963333946667,52.69286293007982],[-127.46952103824209,52.69269619575729],[-127.46943268247574,52.692524676805206],[-127.46935997061493,52.69235015446552],[-127.4693325439016,52.692172265579],[-127.46932631391616,52.69199074764463],[-127.46925368061223,52.69181847510217],[-127.46909277899321,52.69166635803241],[-127.46886376148176,52.69155433843433],[-127.46862468317661,52.69144636354407],[-127.46841281760355,52.69132123225448],[-127.46820546189863,52.69119268111269],[-127.46797583097094,52.691035819960575],[-127.46777758264372,52.69090211396959],[-127.46758936300009,52.690763789052994],[-127.46742028151299,52.69061626510729],[-127.46727680504493,52.6904583222285],[-127.4671562866611,52.690294495484316],[-127.46706603962565,52.69012187739451],[-127.46702475676649,52.689944717543476],[-127.46700102265457,52.68976566070479],[-127.46698559835284,52.68958594367122],[-127.46697294514017,52.689406182909146],[-127.46695658292434,52.689225912622305],[-127.46692633952006,52.689046381291206],[-127.46691742996161,52.6888676944984],[-127.46696046079703,52.68869004249586],[-127.46702299193811,52.68851383191602],[-127.46708366985266,52.68833763554192],[-127.4671415615699,52.68816148300977],[-127.46720038610792,52.6879853097581],[-127.4672592104691,52.687809145419784],[-127.46712476264774,52.687454919808076],[-127.46706589242413,52.68727798915652],[-127.46704038827556,52.687101752143626],[-127.46705836438616,52.68692329301394],[-127.46711331027471,52.68674212840098],[-127.46720276154818,52.68656725688574],[-127.46732884347338,52.6864070634763],[-127.46751315236551,52.68626967101195],[-127.4677396292512,52.68614633085042],[-127.46796331442388,52.68602246027963],[-127.468136428997,52.68588296525336],[-127.46820280946679,52.685711189170874],[-127.4682270206517,52.68552536060967],[-127.46828673677341,52.685348619207126],[-127.4683529621122,52.685172361030496],[-127.46843134897422,52.68499930410327],[-127.46853588279701,52.68483265371639],[-127.46868337785023,52.68467554371838],[-127.46885436363875,52.68452823630662],[-127.46903651915537,52.684382465348776],[-127.46925572624811,52.68426368809998],[-127.46950938303993,52.684176429885554],[-127.4697772691864,52.68409908109178],[-127.47005281342919,52.68402892624308],[-127.4703303625773,52.68396322045063],[-127.47060802663002,52.68390088442138],[-127.47088869141025,52.6838452268542],[-127.47117322898805,52.68379401275872],[-127.47145784717593,52.68374559489074],[-127.47174341733185,52.68369772034815],[-127.47203171493129,52.68364813381212],[-127.47232185520978,52.68362542668061],[-127.47261050669955,52.683667197903766],[-127.47289313083972,52.68372248698522],[-127.47317222062648,52.68378231274496],[-127.47345570264912,52.68383534773758],[-127.47374508253064,52.6838715021572],[-127.47403864542513,52.68386723921971],[-127.47433447792821,52.683848383280655],[-127.47462935721086,52.683828973633986],[-127.47492442456992,52.68381460076007],[-127.4752194963694,52.683800792053596],[-127.47551448642295,52.683784185684495],[-127.47580737720652,52.683760870245514],[-127.47609397283,52.68371577900727],[-127.47638343547665,52.68367345779692],[-127.47667480755447,52.683632788739054],[-127.47696369197398,52.68362745651145],[-127.47724899151707,52.68367934741872],[-127.47753845056505,52.683717724467364],[-127.47783604528959,52.683722933825905],[-127.47813270657808,52.683728154220766],[-127.47841311867649,52.68377281324648],[-127.47867825013915,52.68385746375552],[-127.47896613037607,52.68390370406535],[-127.47925828607448,52.68391234149536],[-127.47954170619695,52.683856072196534],[-127.4798066703371,52.6837753742011],[-127.48009703285292,52.68370556404161],[-127.48033293141778,52.6837485396288],[-127.48049779928793,52.683907873850494],[-127.48065961143556,52.68405939969104],[-127.4807508387168,52.68423256110321],[-127.48088371837724,52.68437772693251],[-127.48116332715811,52.684452090922974],[-127.48144241843337,52.68451189711636],[-127.48173100693299,52.684551395887425],[-127.4820245712466,52.684574025288846],[-127.48232063055195,52.684588210561],[-127.48261603491962,52.68458390283054],[-127.4829106564938,52.68458353216784],[-127.48320416327627,52.6846044734043],[-127.48350050150374,52.684600160571506],[-127.48379847819287,52.68458965636661],[-127.48409553602833,52.68457916305569],[-127.4843918736801,52.68457483900175],[-127.48468495375798,52.68458345122459],[-127.48497405657078,52.684611169763],[-127.48525825932877,52.684657450360454],[-127.48554094520293,52.684713829338754],[-127.48582370511735,52.68477189264768],[-127.4861080894882,52.68482377377003],[-127.486396723289,52.6848643815077],[-127.4866861358626,52.68490050371165],[-127.48697640911512,52.684934928320686],[-127.48726662429921,52.684967667006106],[-127.48755773933469,52.68499983753289],[-127.48784974940678,52.685030874983745],[-127.48814082186983,52.68506136763172],[-127.48843283278407,52.68509240362634],[-127.48872392990874,52.68512400652739],[-127.48901508155836,52.6851567379588],[-127.48930631611213,52.685192265570926],[-127.4895976632634,52.6852305889859],[-127.48988809704755,52.68526948828311],[-127.49017939174259,52.68530669892091],[-127.49047062344226,52.68534165872162],[-127.49076166540384,52.68537158031168],[-127.49105344621793,52.685395886886184],[-127.49134495417593,52.685412349380854],[-127.49163879942525,52.68541589461173],[-127.49193484944354,52.68540315235051],[-127.49223131035937,52.68537583140196],[-127.49252460933819,52.685337340262606],[-127.4928102056094,52.685290534842714],[-127.49308386751508,52.68522034945631],[-127.49334426515261,52.685115017440346],[-127.49360010165537,52.68501198499866],[-127.4938610096348,52.68494812143793],[-127.49414171467407,52.68494733523263],[-127.49444344027255,52.68499112795045],[-127.49473159988206,52.68507095551643],[-127.49496889527198,52.68518002168212],[-127.49514865541225,52.685312807107145],[-127.49530034465691,52.68546444263656],[-127.49543575587248,52.68562749578471],[-127.4955648734214,52.68579623410126],[-127.49569669954437,52.68596269569168],[-127.49584305129474,52.68612055962268],[-127.49602116154442,52.68625896968549],[-127.49628816094737,52.68634299193809],[-127.49654433652704,52.68643499886492],[-127.4967234276942,52.686575072311406],[-127.49687805474613,52.68673115212479],[-127.49704816086039,52.68687918685593],[-127.49722824772464,52.68702092377531],[-127.4974120062001,52.68716205742934],[-127.49759578070555,52.68730319059169],[-127.49777138998364,52.68744947686174],[-127.49794335439543,52.68759748650961],[-127.49812528478651,52.68773919845665],[-127.49833259593524,52.687864335457036],[-127.49857247158113,52.687967200497134],[-127.49883137394453,52.68805748163373],[-127.49908846456641,52.688148915360706],[-127.49933563048303,52.688247757562486],[-127.49958461532941,52.688346010968225],[-127.49984069221945,52.6884346491328],[-127.50010850904037,52.68851473340291],[-127.50038671466586,52.68857394130857],[-127.50067965740043,52.688604370170324],[-127.5009804921724,52.68862181032063],[-127.50127772077263,52.688642102892885],[-127.50156079819102,52.688681623946145],[-127.50182844274782,52.688756657657045],[-127.50208067452597,52.68886775988054],[-127.5022890985757,52.688997924590815],[-127.50236111294542,52.689148887969175],[-127.50228893884409,52.68933646172082],[-127.50227855761518,52.68951595129522],[-127.50228763905396,52.68969574699389],[-127.502303211875,52.68987546830306],[-127.5023243418912,52.69005510927899],[-127.502352862452,52.6902340993461],[-127.502384208694,52.69041417408652],[-127.50241012071187,52.69059824646781],[-127.50245995304745,52.69077696283853],[-127.50256848055345,52.690938666917276],[-127.5027220291789,52.691089147990496],[-127.50289488031761,52.691234897066494],[-127.5030851667729,52.691375938045425],[-127.50328729174299,52.69151122176501],[-127.50349849869744,52.691640783580304],[-127.50371316103879,52.69176357476657],[-127.5039395784591,52.69187781166495],[-127.50417593742827,52.691984629526104],[-127.50442048865621,52.69208741370521],[-127.50466775355935,52.69218848551111],[-127.5049140812261,52.69228901285107],[-127.50515682279989,52.692392939762414],[-127.50527247305999,52.69265096258992],[-127.50534274221201,52.692831091780626],[-127.5054185060447,52.693008917251014],[-127.5055125054724,52.69317865227867],[-127.50563481473468,52.69333625725588],[-127.50580005782611,52.69347593906449],[-127.50601369881963,52.69359537629849],[-127.50626113389107,52.69370092650567],[-127.5065221962191,52.693798453953605],[-127.5067795150513,52.693894908050375],[-127.50702852519505,52.6939920245852],[-127.50728020953369,52.69408630820334],[-127.50753548187598,52.69417718214549],[-127.5077934479191,52.69426577888492],[-127.5080541224598,52.69435209821341],[-127.50831471909342,52.694436176023686],[-127.50857714981484,52.69451967361693],[-127.50883954175097,52.694602041187416],[-127.50910376776089,52.694683828524916],[-127.50936705626572,52.69476507136157],[-127.50963216369635,52.69484572518055],[-127.50989724742617,52.69492525773805],[-127.51016325106491,52.695004777833695],[-127.51042923576613,52.69508373260614],[-127.51069520183552,52.69516213101926],[-127.51096206819149,52.69523996120976],[-127.51122893040285,52.69531722588226],[-127.51149581831918,52.695395610598204],[-127.51176364096796,52.69547398264013],[-127.51203148422762,52.69555290981543],[-127.51229932879151,52.69563184533725],[-127.51256713443478,52.695709650814436],[-127.51283583553128,52.695786332104845],[-127.51310541660938,52.69586187146672],[-127.51337491972984,52.695935178240696],[-127.51364617727556,52.69600565478934],[-127.5139173564599,52.69607388977974],[-127.51419025034605,52.69613817406671],[-127.51447984902285,52.696150685643744],[-127.51478116775719,52.69612772959106],[-127.515148833725,52.69606804262424],[-127.5154364088742,52.69602339927006],[-127.51572306479761,52.69597877607273],[-127.51600968530221,52.69593358765093],[-127.51629528687846,52.69588560479322],[-127.51657893602977,52.69583484857037],[-127.51685965405436,52.695779645730504],[-127.51713637316212,52.695716647203774],[-127.51740816940506,52.69564530899],[-127.51767793313014,52.69556894760443],[-127.51794580347462,52.6954914891601],[-127.5182156247213,52.69541680273905],[-127.51848938918044,52.69534879935371],[-127.51876719586807,52.69529026668722],[-127.51905193093573,52.69524397418273],[-127.51934160780553,52.69520658464851],[-127.51963331567339,52.69517420793764],[-127.51992600185889,52.69514350373964],[-127.52021772890977,52.69511169028369],[-127.5205074038664,52.69507429786116],[-127.52079402808675,52.69502909750432],[-127.52107959851912,52.69498054719526],[-127.52136508866167,52.69492975526492],[-127.52164862605747,52.69487619005229],[-127.5219301705043,52.69481872214631],[-127.52220784951912,52.694756819908754],[-127.52248162318236,52.694689362905066],[-127.52274864508202,52.69461470224224],[-127.5230077323025,52.6945250154656],[-127.52325514970512,52.69442035123717],[-127.52348558770271,52.69430693068381],[-127.52368124512073,52.69417995470307],[-127.52376199723714,52.69400123239694],[-127.52355868083366,52.69373091611875],[-127.52344295725999,52.693551944678845],[-127.52346209340476,52.69338635536264],[-127.52359834597698,52.69323100717567],[-127.52377744087704,52.69308126189597],[-127.52398098223209,52.692941851774464],[-127.52419342472369,52.692818019083944],[-127.52442954910445,52.692708450264725],[-127.52468468201009,52.69261265005652],[-127.52494863630692,52.69253017714174],[-127.52521954015873,52.692460508821675],[-127.52550011043965,52.692402488654544],[-127.52578655176528,52.692352794142785],[-127.5260750298587,52.692308677273374],[-127.52636591387758,52.692279657088804],[-127.52666387366389,52.692267367582474],[-127.52694975855967,52.69222832230464],[-127.52722841231942,52.692168636982714],[-127.52750307537057,52.69210060018254],[-127.52777676356723,52.69203144549851],[-127.52805336239794,52.69196618008154],[-127.52832900153258,52.69189980554646],[-127.52860768621568,52.691840681446635],[-127.52889639804317,52.69180328037672],[-127.52919136213207,52.691784853619936],[-127.52948647126954,52.69177090815784],[-127.52978165493232,52.69175863796752],[-127.53007676369685,52.69174469101678],[-127.53037188708925,52.69173074312806],[-127.53066693553723,52.691715118479564],[-127.53096092452016,52.691695579013576],[-127.53125267983143,52.69166541419092],[-127.5315403692705,52.69162522194784],[-127.53182693854545,52.691579429757866],[-127.53211357290658,52.69153588694343],[-127.53240532631763,52.69150571924426],[-127.53269195419952,52.691461610105065],[-127.53297450057364,52.691407464848965],[-127.53325508816803,52.69134998160552],[-127.53352782893924,52.691280834635236],[-127.53379759646559,52.691206112085],[-127.53407618878128,52.6911447340166],[-127.53432670681723,52.69105008480081],[-127.53456666654874,52.69094549357108],[-127.53480751826518,52.690839760173006],[-127.53504826851473,52.69073122960349],[-127.53530571534654,52.69064882714359],[-127.53559548743033,52.69061531439805],[-127.53589209736934,52.69059180903795],[-127.53587517035545,52.690791566946594],[-127.53585633937499,52.690963881143716],[-127.53585751502932,52.69115163552967],[-127.53592005821378,52.69131951872732],[-127.53599439519722,52.69150574784699],[-127.53608004308586,52.69167165067774],[-127.5362242797789,52.691843510261094],[-127.53636514308853,52.691998599151354],[-127.5365537109078,52.69214017466063],[-127.5367458238412,52.69227721040251],[-127.53694341550016,52.692411940874486],[-127.53714733848113,52.6925420949425],[-127.53735759855768,52.69266824644366],[-127.53757604828503,52.692790371005124],[-127.53780260138574,52.69290565379815],[-127.53803389533623,52.69302368080368],[-127.53826704860627,52.69314224789725],[-127.53850899733817,52.69324723810274],[-127.5387628736601,52.693323490320175],[-127.53904946728635,52.6933298105809],[-127.53935497411183,52.69329552585185],[-127.53965147417007,52.69326808473236],[-127.53994693954658,52.693237858488146],[-127.54023194757016,52.693252043621335],[-127.54050440792801,52.69332916850251],[-127.54076693461725,52.69341370547239],[-127.54102229432334,52.69350507112507],[-127.54126867422666,52.693604392432945],[-127.5415069736002,52.693711110565296],[-127.54173987257938,52.693821827302415],[-127.54196375709013,52.69393994428664],[-127.5421822005769,52.694060930532025],[-127.54239250329361,52.694187637567865],[-127.54257841511841,52.69433203653729],[-127.54275707367563,52.69448044979848],[-127.54296860664132,52.69458975981583],[-127.54327439220066,52.694588534887046],[-127.54356948600511,52.69459921605467],[-127.54386572095419,52.694616042371855],[-127.5441520476193,52.694666072279496],[-127.54439107165186,52.69476661412943],[-127.54452673963961,52.6949307298611],[-127.54454059826497,52.69510933991382],[-127.54433856754683,52.6952381215006],[-127.5441741692873,52.6953820910373],[-127.54417499740154,52.695559195989404],[-127.54441593962854,52.69566138948147],[-127.5447066355677,52.69570407851199],[-127.54497898344945,52.695777831686236],[-127.54520907543784,52.695887448732464],[-127.5454094764547,52.69602156308556],[-127.54560709226745,52.69615571388149],[-127.54580106476344,52.69629159843158],[-127.54598237285387,52.696436052865685],[-127.54616091575491,52.696581099560426],[-127.54638272605006,52.69669195369742],[-127.54666394187976,52.696754375990615],[-127.5469415689657,52.69681964303219],[-127.54721565902608,52.69689000510511],[-127.54749402466955,52.69695022113403],[-127.54778662762254,52.69696821571344],[-127.5480786208965,52.6969951765549],[-127.54836972161371,52.69702327843506],[-127.54866646308767,52.69702775526445],[-127.5489615954844,52.69703898752776],[-127.54925784414137,52.69705524423115],[-127.54955261151132,52.697056381987686],[-127.54984115780657,52.69701389184295],[-127.55008312245644,52.69691316158996],[-127.55030864052918,52.696793591877444],[-127.55053234520943,52.69667516671585],[-127.55074941451049,52.69655290107702],[-127.55095418366287,52.69642351606805],[-127.55113814570123,52.69628264054406],[-127.55130702086576,52.69613467376634],[-127.55146274313677,52.695981832139246],[-127.55161752522142,52.69582844672854],[-127.55177980378205,52.69567776864377],[-127.5519439483652,52.695527056591324],[-127.55209406786653,52.69537317627587],[-127.55220389955957,52.695207490218635],[-127.55227817958003,52.695032195631875],[-127.5523655342171,52.69486008154666],[-127.55245569498982,52.69468849512225],[-127.55256271168851,52.69452173392858],[-127.55271469821673,52.69436838387932],[-127.55288447361308,52.694219837538775],[-127.5530289255521,52.694063224024234],[-127.55316773733684,52.69390444317203],[-127.55330652792665,52.6937451063942],[-127.5535539894819,52.69356694703658],[-127.55379774317709,52.6934656197669],[-127.55405490580544,52.69337588880448],[-127.55431882871434,52.693293914413424],[-127.55458568480776,52.69321638441318],[-127.55484866666082,52.69313386528067],[-127.5551077644258,52.69304690421538],[-127.55537467308076,52.69297049265778],[-127.5556611706408,52.69292353086564],[-127.55594619876834,52.69286145001479],[-127.55620547039923,52.692778968111476],[-127.55642105889405,52.69266792974394],[-127.5565504888878,52.69250646231019],[-127.5566609447858,52.69233292513496],[-127.55679690483947,52.69217249149829],[-127.55699613851243,52.69204485462792],[-127.55724445310919,52.69194178216403],[-127.55750241613207,52.69184922569727],[-127.55776534859815,52.69176613542487],[-127.55803503641651,52.691690245551584],[-127.55830282967256,52.69161325030591],[-127.55856099271082,52.69152630270591],[-127.55880571795217,52.69142663759147],[-127.55904466002276,52.69132087903394],[-127.55927977385494,52.69121181695754],[-127.5595129520587,52.69110052922168],[-127.55974612937695,52.69098924997647],[-127.559981198447,52.69087905705164],[-127.56021919548567,52.690772752561585],[-127.56046289724341,52.690670855476505],[-127.56071233339382,52.690573365366404],[-127.56096655552312,52.69048029484703],[-127.56122466546147,52.690392220853674],[-127.561487602027,52.690309677881466],[-127.5617592900031,52.69023823643867],[-127.56204365877505,52.69018399604749],[-127.562331513447,52.690149321376055],[-127.56262857713166,52.69016385585506],[-127.56320975805299,52.69019364255005],[-127.56349398559264,52.6902374922391],[-127.56378736571658,52.690252629019476],[-127.56407342023203,52.69029532293287],[-127.56436379209897,52.69032955544092],[-127.56464565996902,52.690384643877174],[-127.56490543017901,52.690469164122284],[-127.56515457279731,52.690566721899806],[-127.56542535755322,52.69064829567955],[-127.56566717453693,52.69074819237539],[-127.5658491991013,52.69088588158556],[-127.56601042072228,52.69103730087495],[-127.56616531086841,52.69119273265382],[-127.56633021905974,52.69134353718026],[-127.56652146971234,52.691479980865715],[-127.56673189310966,52.69160832057623],[-127.56692678401636,52.69174247287722],[-127.56709992348429,52.69189036810393],[-127.56724841151829,52.69204812617934],[-127.56734071382252,52.69221503957272],[-127.56736303670745,52.692394656139825],[-127.56737248925164,52.69257669602136],[-127.56762260101449,52.692852474154726],[-127.56781367217215,52.69298331315557],[-127.56807366961051,52.69307342845432],[-127.56831562961409,52.69317668085413],[-127.56851877963787,52.693308477849286],[-127.56870741846866,52.69344888097021],[-127.5688576265226,52.69360268596164],[-127.56892146239882,52.69377670564553],[-127.56895219856018,52.693957895008786],[-127.56894504100413,52.69411660745524],[-127.56874742986719,52.694262744001946],[-127.56849342815482,52.69436199811595],[-127.56823626364275,52.69445064009469],[-127.56797429495246,52.6945348618718],[-127.56824657268011,52.69460575536874],[-127.5685170959464,52.694678922714104],[-127.56878953973705,52.6947542967225],[-127.56902681054369,52.694855933532544],[-127.56918991098847,52.69500732319742],[-127.569331047711,52.69516628913933],[-127.56947218581024,52.69532526385746],[-127.56960416422162,52.695487159251485],[-127.56971588759482,52.6956526891465],[-127.56980556452257,52.695823554633414],[-127.56988054434399,52.695997989136806],[-127.56994263783315,52.6961748294604],[-127.5699927174491,52.69635239587816],[-127.57002518940672,52.696530198460536],[-127.57002156749243,52.69670960619984],[-127.57000224596071,52.69689034551226],[-127.56999124855484,52.69707041712308],[-127.56997198821092,52.69725283256902],[-127.56995087529103,52.6974352818051],[-127.569938964127,52.69761592160964],[-127.56994916265126,52.69779290184009],[-127.57001276262982,52.697960197780894],[-127.57019516065067,52.69810684309835],[-127.57036660179759,52.69825755413635],[-127.57053171677559,52.69841284275316],[-127.57069962511746,52.69856864966339],[-127.57085276825684,52.69872577549119],[-127.5709707766939,52.698885614685835],[-127.57102405514392,52.699049120603206],[-127.57094609848728,52.699223364861766],[-127.57081438264478,52.69939720056434],[-127.57067287296233,52.69955715958515],[-127.57051260198361,52.69971064418476],[-127.57044197120541,52.699882547703965],[-127.57040735718961,52.70000015133338],[-127.57038925753429,52.70006261372507],[-127.5703459103346,52.70024535202883],[-127.57031928003028,52.70042899597781],[-127.5703166132584,52.70060894646352],[-127.5703452195852,52.70078231640087],[-127.57043368256811,52.700944794325665],[-127.57059402442776,52.701096218800124],[-127.57078297150126,52.701243896213164],[-127.57095538777955,52.70139572313951],[-127.57107368595308,52.701562840117326],[-127.57115450695748,52.70174447689133],[-127.5712516144534,52.70191525004607],[-127.57141869566317,52.70204808207799],[-127.5716711122607,52.70213157446644],[-127.57196349761587,52.70219322177053],[-127.57224417667024,52.70226400248756],[-127.57250588132823,52.70234792435934],[-127.5727658220025,52.70243466735055],[-127.57302128304025,52.702525397925896],[-127.57326774822523,52.70262353978854],[-127.57348817744918,52.7027444419836],[-127.57372658757099,52.7028505381137],[-127.57397938392357,52.702944100452754],[-127.57423483013241,52.70303427261211],[-127.57449210962713,52.70312385458454],[-127.57474847674098,52.70321400428656],[-127.57500127780352,52.70330757335954],[-127.57525050332892,52.70340510899795],[-127.57550530381398,52.70350256908013],[-127.5757501745026,52.70360744424576],[-127.5759623319027,52.703730139184614],[-127.57613815249309,52.70387294484181],[-127.57630941649563,52.704018044610585],[-127.57647797160291,52.70416486658272],[-127.57664473691247,52.704313398390276],[-127.57680783824887,52.70446309133824],[-127.5769691292948,52.70461393840536],[-127.57712863019354,52.704766486371],[-127.57728538053297,52.704919627191586],[-127.57744121886273,52.70507334507059],[-127.57759431259197,52.70522822071984],[-127.57774648830134,52.705383108540595],[-127.5778977668017,52.70553857323503],[-127.57804717815237,52.70569405393421],[-127.57819475264382,52.70584956817261],[-127.57834326784473,52.70600562555115],[-127.57849180462676,52.70616223845983],[-127.57863945018491,52.706319993154764],[-127.57878527903162,52.70647832817332],[-127.5789265100494,52.70663784601124],[-127.57906316370439,52.70679910241941],[-127.57919244146255,52.70696102314174],[-127.57931343578055,52.70712474143472],[-127.57942520623793,52.707289696063235],[-127.57952592074278,52.70745648571797],[-127.57960727383146,52.70762634348041],[-127.57965824340222,52.707801651123766],[-127.57968620050718,52.707981188230384],[-127.57970031364616,52.708162598085224],[-127.57970797462792,52.7083452159698],[-127.57971748320064,52.70852725289118],[-127.5797343068654,52.70870694013736],[-127.57974835856938,52.70888667373337],[-127.57975778437746,52.70906646076054],[-127.57976534252354,52.70924628193598],[-127.5797719606719,52.70942555079598],[-127.57978230591563,52.70960532535225],[-127.57980566582827,52.709786054224736],[-127.57982435846156,52.709965716097805],[-127.57981332198197,52.71014410211555],[-127.57975303595677,52.71031923368653],[-127.57967044762671,52.71049298015099],[-127.57960274696325,52.710668202662816],[-127.5795490565878,52.71084604304194],[-127.57949632637241,52.711024991402965],[-127.57945656903384,52.711203764702844],[-127.57943995017247,52.71138166981105],[-127.5794650385518,52.71155900328366],[-127.57953366785996,52.71173519332115],[-127.57961523592239,52.71191065273182],[-127.57967922557629,52.712086905254516],[-127.57969410868445,52.71226382029335],[-127.5796682026286,52.7124412856416],[-127.57961823760117,52.7126196315614],[-127.57955896981449,52.71279754692639],[-127.57950434246816,52.7129753996325],[-127.57945340098482,52.71315264655525],[-127.57939873138886,52.71332937874218],[-127.57934218706689,52.71350557118776],[-127.57928566312225,52.71368232828057],[-127.57923286644542,52.713859600022936],[-127.57918100314116,52.71403685015778],[-127.57912725060764,52.714213569714126],[-127.57906980551925,52.714390339017214],[-127.57900580351543,52.714565519695974],[-127.57893339070746,52.71473912777103],[-127.57884047969328,52.71490964922139],[-127.57872887325509,52.715076494713664],[-127.57861353275334,52.71524227839602],[-127.57849821753517,52.71540917360892],[-127.57836707156737,52.71557404907477],[-127.57823777778658,52.71573889042902],[-127.57812986823689,52.715905129360394],[-127.57806476063253,52.716075840233806],[-127.5780712487359,52.71625174709003],[-127.57812424115474,52.7164315111071],[-127.57817727534758,52.71661239550396],[-127.57819688349865,52.716792044421936],[-127.57819895236283,52.71697361566818],[-127.57819177979758,52.71715643242886],[-127.57818183418905,52.717339286539946],[-127.5781718884955,52.71752214062767],[-127.57816746222768,52.71770379932206],[-127.57817409582015,52.717883631947984],[-127.57819549633865,52.7180615795762],[-127.57823624363772,52.71823590348754],[-127.57830280345287,52.7184065165191],[-127.5783924383458,52.71857401153677],[-127.57850144158257,52.718738447426205],[-127.57862798621169,52.718900969747075],[-127.57876740397371,52.719060511434705],[-127.57891790349645,52.719218782554485],[-127.57907482241865,52.71937528096124],[-127.57923446856789,52.719530065390686],[-127.57939594905424,52.71968426885553],[-127.5795536815955,52.71983739270344],[-127.57971135337286,52.719988840171325],[-127.57987635838472,52.72013794653203],[-127.58004684295659,52.720284736766786],[-127.58022282797573,52.72042977554486],[-127.58040062620245,52.720573659642234],[-127.58057933937896,52.7207169751167],[-127.58075899407781,52.720860842585836],[-127.58102392950055,52.721079220139416],[-127.58175814213739,52.721273323880666],[-127.58350517684023,52.72152154718082],[-127.58419666530192,52.72198861183208],[-127.5849329409051,52.72208738469133],[-127.58534275645184,52.72261094052856],[-127.58585983471227,52.72307531645117],[-127.58669903479483,52.72359809224681],[-127.58718427517194,52.72380394729837],[-127.58760930257831,52.723886178853625],[-127.5882958933253,52.72411956616567],[-127.58884035571234,52.72447089476067],[-127.58966096106433,52.72486611021573],[-127.59032399237492,52.72511325739075],[-127.59110041956849,52.7254171424239],[-127.59142100493172,52.725533296613264],[-127.59188947897258,52.72573598842333],[-127.59232702426436,52.72602934230466],[-127.59301098116568,52.72656371702067],[-127.59357559083512,52.726856458980095],[-127.59390381955255,52.72695344584036],[-127.59451691032596,52.72692940708671],[-127.59504001105182,52.72690490472396],[-127.59587857563008,52.72700782178688],[-127.59701608163321,52.72729218399329],[-127.59794089005553,52.727568218564684],[-127.59913091845394,52.72801662821657],[-127.60000118006805,52.7281230023096],[-127.60029755866621,52.72813633296156],[-127.60057871529486,52.72816443467674],[-127.60086536277268,52.728240106886105],[-127.60113165854936,52.72831717759689],[-127.60139270787602,52.728402731290615],[-127.6016510952598,52.72849167479063],[-127.60191128984616,52.72857891602466],[-127.60217863514393,52.72865933298463],[-127.60245228940816,52.72873462309473],[-127.60272506665953,52.728811036589775],[-127.60298601704243,52.728893781204384],[-127.60322707743869,52.728990249283136],[-127.603406160585,52.72914081644534],[-127.60345814577794,52.72931497799165],[-127.60340357553409,52.72949227518413],[-127.6033361311874,52.729672555489294],[-127.60333726806479,52.72985134097228],[-127.60338974303293,52.730038947546625],[-127.60350364634935,52.73020721248568],[-127.6036982402494,52.73032561437415],[-127.60395101873685,52.73041295271667],[-127.60423381084429,52.730484185725864],[-127.60452114178452,52.730552557918315],[-127.60479204448121,52.730628436388464],[-127.60506308911206,52.730707675241064],[-127.60533817398674,52.73077116436252],[-127.60562874825153,52.73080248806477],[-127.60593262090121,52.73079271737935],[-127.60620024845156,52.73073187775645],[-127.60642949619935,52.730612151829504],[-127.6066703938428,52.73050628239146],[-127.60691704199212,52.730405373481226],[-127.607163731079,52.73030558444974],[-127.60741425361377,52.73020910521773],[-127.60766964922935,52.73011871946563],[-127.60793346451275,52.73003046848887],[-127.60821473787,52.72993804927438],[-127.60849614375927,52.72987365212597],[-127.60876415618735,52.72987221331801],[-127.60901905655211,52.729941575977755],[-127.60926624687391,52.730052520408975],[-127.6095065488007,52.73017756679129],[-127.60973814281787,52.73029320848633],[-127.60995698477666,52.7304146299239],[-127.61016947883361,52.730540066147455],[-127.61038649647652,52.73066263285821],[-127.61061256877679,52.73077890477782],[-127.6108431862449,52.730892880764415],[-127.6110774076029,52.73100399979444],[-127.61131606808111,52.73111000839034],[-127.6115705459576,52.731192267205245],[-127.61183536301168,52.731278302162714],[-127.61211854462664,52.73133493821106],[-127.6123998241105,52.73138991380722],[-127.61268377273494,52.73144205401269],[-127.61296770109341,52.73149363780882],[-127.61325246495419,52.73154295848216],[-127.61353291859149,52.73160074970652],[-127.61380560741888,52.73167378501235],[-127.6140875572783,52.7317220214648],[-127.6143854662287,52.731726327886065],[-127.61467864516737,52.731703230155546],[-127.6149729550069,52.73168572101638],[-127.61526949963593,52.731678269177195],[-127.61556542689699,52.73167922800103],[-127.61586266999896,52.731690265755574],[-127.61614726298852,52.7317345418601],[-127.61642083413257,52.73180642901948],[-127.61671352012254,52.731819769485035],[-127.61701076674235,52.73180613365746],[-127.61730846714273,52.73178016893964],[-127.61760222330314,52.73177274970044],[-127.61788744164075,52.73180916607491],[-127.6181680728487,52.73187142779255],[-127.61844520845283,52.731939342071485],[-127.61871426284492,52.73201409329119],[-127.61898334575623,52.73208996449359],[-127.61926118511597,52.73215169723875],[-127.61954248569859,52.73220722054197],[-127.6198229946227,52.732266117082155],[-127.62009642696626,52.732334078718964],[-127.62036638536786,52.73240825768709],[-127.6206337192065,52.73248639132021],[-127.62089125155725,52.73257530486171],[-127.62113983248945,52.73267275360782],[-127.62138575320482,52.732773601614966],[-127.62163073430278,52.732873906113994],[-127.62187933972965,52.73297190898879],[-127.622142716747,52.73306802979559],[-127.62239428935753,52.733146377738166],[-127.62262676273187,52.7332591842686],[-127.62285111278861,52.733377698847804],[-127.62306451514145,52.733501413613986],[-127.62321653080271,52.7336450354045],[-127.62333367221656,52.73382276985914],[-127.62343805381153,52.73400685092915],[-127.62346242359725,52.73416008822187],[-127.62349853084892,52.734353518301766],[-127.62355134588417,52.7344009886949],[-127.62372513154428,52.73445799220844],[-127.62402858056764,52.73446106763422],[-127.62425808325045,52.73454420157121],[-127.62439396636591,52.73472672400829],[-127.6245809888513,52.73486368870022],[-127.62487283908534,52.73500088508224],[-127.62471173780895,52.735155573547104],[-127.62454786126132,52.7353103002452],[-127.6244352902524,52.73547272712451],[-127.62439642610872,52.73564645371075],[-127.62438741699361,52.73582425919453],[-127.62439706409272,52.736005159951546],[-127.62441510633164,52.7361870742302],[-127.62443131543867,52.73636956991323],[-127.62443539336378,52.7365499918216],[-127.62443199628599,52.73672939637513],[-127.62442584607965,52.73690939509014],[-127.62441782028573,52.73708886378152],[-127.62441075050931,52.737268884169694],[-127.62440178994599,52.73744836577662],[-127.62439098969357,52.73762787286891],[-127.62437369133222,52.73780747003655],[-127.62435360371015,52.73798710585181],[-127.62434094864658,52.73816663858762],[-127.62434867792804,52.738345888671574],[-127.62438147139542,52.73852534722385],[-127.62443093449262,52.73870401860884],[-127.62446089056799,52.738881839457015],[-127.62442963317572,52.739060509049416],[-127.62437891048717,52.73923944849598],[-127.62430390828418,52.739414240586136],[-127.6241951408359,52.73957941186584],[-127.62404329256664,52.73973397039041],[-127.62387835516404,52.73988591213995],[-127.6237349637672,52.74004315095567],[-127.62363184129245,52.740210485318265],[-127.62354839627118,52.74038315178632],[-127.6234771192617,52.74055845649222],[-127.62341330220372,52.74073476977244],[-127.6233578591421,52.74091153193686],[-127.62333591119486,52.74109119290366],[-127.62336497220332,52.74127014709174],[-127.62337452487078,52.741448250577264],[-127.6233405079855,52.74162752269379],[-127.62328880042605,52.74180535392388],[-127.62320152886859,52.74197470997649],[-127.62306192892714,52.742134702024785],[-127.62295048134854,52.742302706779654],[-127.62286416987246,52.74247317017289],[-127.6228682269306,52.74265359160924],[-127.62290376473578,52.74283189999862],[-127.62282504083548,52.743006742103944],[-127.62269123388229,52.74317281419767],[-127.62253141733878,52.743313472750316],[-127.62232757509324,52.743442965892775],[-127.62211239707705,52.74356756670232],[-127.62189442207465,52.74369164980078],[-127.62168401358737,52.74381955564831],[-127.62149935097044,52.74396559644556],[-127.62129250054971,52.744089524387874],[-127.62102602817507,52.74415822794493],[-127.62050756536621,52.7442371421074],[-127.62022373988037,52.74428870417503],[-127.6199389578644,52.74433972276394],[-127.61965806926784,52.74439517073743],[-127.61938227618283,52.74446287834315],[-127.61913355190197,52.74455935662184],[-127.61890311804325,52.744673517261305],[-127.61868796007363,52.74479867615271],[-127.61849827831432,52.744935257453385],[-127.61833038399988,52.74508385926836],[-127.61817569919916,52.74523789223385],[-127.6180313340731,52.745395136420754],[-127.6179095225733,52.7455599247817],[-127.61776886498976,52.74571711739088],[-127.6175981268584,52.74586408028695],[-127.61741700909813,52.746006702278954],[-127.61722458548589,52.746144440099464],[-127.61702449324478,52.74627611355857],[-127.61681117654744,52.74640124327489],[-127.6165902335944,52.74652142892172],[-127.61636643017296,52.746639420603245],[-127.61614070696767,52.74675575236496],[-127.61590926958505,52.74686823457477],[-127.61567876617313,52.746980712392514],[-127.61545210444324,52.74709705569142],[-127.61522362244337,52.74721397961954],[-127.61499510336272,52.74733034758456],[-127.61477420799964,52.74745165888149],[-127.61457120024784,52.74758000510895],[-127.61440876196554,52.74772628359401],[-127.61430291546716,52.74789645257718],[-127.61418110345512,52.74806179250245],[-127.61402162099368,52.74821251353102],[-127.61385275723451,52.7483605655675],[-127.61367449079775,52.74850538389621],[-127.6134895543244,52.748645809877694],[-127.61329231326559,52.74877967911137],[-127.61307144785845,52.74890210747146],[-127.61284675060506,52.74902178121622],[-127.61264093329783,52.74914959748388],[-127.61247664878503,52.74929646334181],[-127.6123557819245,52.74946235302835],[-127.61226487436107,52.74963566820203],[-127.61219999328216,52.74980975515658],[-127.61216221256899,52.749989065109034],[-127.61213558283777,52.750168786590756],[-127.61211172797549,52.750348469869415],[-127.6120971841288,52.750528590002176],[-127.61208448000556,52.75070867583463],[-127.61206622585753,52.7508888469567],[-127.61203674163949,52.751066921624734],[-127.61198397105062,52.751242518633404],[-127.61188183726034,52.75141318971313],[-127.61174212190318,52.75157204688641],[-127.61158261808828,52.75172277320911],[-127.61141279061657,52.75187026936403],[-127.61123542140214,52.7520150709947],[-127.6110533362379,52.75215769522121],[-127.6108702875122,52.752299211411646],[-127.61068534669498,52.75244019729082],[-127.61049568955387,52.75257899675825],[-127.61029844224754,52.752713425280156],[-127.61009168584022,52.752841814281005],[-127.60986968618596,52.75295975861275],[-127.60963436223814,52.75306892673717],[-127.60939526338062,52.75317646027024],[-127.60916187618143,52.753287833765896],[-127.60894276737655,52.753408543446646],[-127.60873223015962,52.7535353048282],[-127.60852740454882,52.75366590630877],[-127.60832449591062,52.75379815806066],[-127.60812156511085,52.753929853737844],[-127.60791577983407,52.75405991123323],[-127.6077052151265,52.754186106040606],[-127.60748701777604,52.75430680030596],[-127.60725830695353,52.75441922660003],[-127.60701525268429,52.75452064841958],[-127.6067616911173,52.75461435804475],[-127.60650238835996,52.75470310594166],[-127.60624119359744,52.75479132317666],[-127.60598476914664,52.75488282836723],[-127.6057369311308,52.754980385121186],[-127.6054996882078,52.75508844982963],[-127.60526098841491,52.75520717865551],[-127.60504126028592,52.7553368567924],[-127.60486183161099,52.755477192305115],[-127.60481978860169,52.75561788835671],[-127.60481451537309,52.7557989915689],[-127.60480155303271,52.755997579444404],[-127.60479167013688,52.75617931069013],[-127.60475566626857,52.75635748067342],[-127.60471040655615,52.7565363333432],[-127.60465580675826,52.756713627915985],[-127.6045899909426,52.75688884303057],[-127.60451110300349,52.75706198614048],[-127.60443048561822,52.75723852469492],[-127.60434619864515,52.757416225387175],[-127.60424971175021,52.7575901740897],[-127.60413248534351,52.75775600380102],[-127.60398689581636,52.75790764005002],[-127.60380632243475,52.75804238437538],[-127.60359837548265,52.75816517233854],[-127.6033696761565,52.758278720107434],[-127.60312494513455,52.75838575194582],[-127.60287258167084,52.75848729179043],[-127.6026182984535,52.75858717139348],[-127.60236772480032,52.75868699970999],[-127.60212083957161,52.7587862120895],[-127.60186913968616,52.75888101485584],[-127.60161268134516,52.75897251023538],[-127.60135523883326,52.75906234152409],[-127.60109873666958,52.75915272434589],[-127.60084319532862,52.75924420545505],[-127.60059244584842,52.75933954839144],[-127.60035028291577,52.759440943292276],[-127.60000053521846,52.759668788623046],[-127.599778703089,52.759792879912496],[-127.59969493462476,52.759960480931156],[-127.59964501874326,52.760139394422964],[-127.59961653768143,52.760320822233446],[-127.59961025878997,52.76050026111207],[-127.59962995634598,52.76067934548068],[-127.59965989367605,52.760859411044386],[-127.59967775692557,52.76103907639468],[-127.59968261111152,52.76121836326239],[-127.5996828551572,52.7613982779854],[-127.59968216369583,52.761578196486084],[-127.59968147256413,52.761758123928644],[-127.59968449212887,52.761937991743444],[-127.59969305749851,52.762117227861225],[-127.59970256442138,52.762297016070974],[-127.59971486182428,52.762476757211154],[-127.59972809486332,52.762656494529345],[-127.59974316839157,52.7628361977419],[-127.59976009165473,52.76301531969552],[-127.59978444364653,52.763194905208785],[-127.59983297484877,52.76337527270381],[-127.59985165556138,52.76355212869372],[-127.59976239114994,52.76372149017125],[-127.59961894238606,52.76388206730298],[-127.59939965781432,52.764049839688745],[-127.59937769390528,52.76420707300047],[-127.59939618423957,52.76437888276398],[-127.59943639964536,52.764560493655544],[-127.59944594167588,52.764740837104014],[-127.59949528893863,52.764918395524326],[-127.59962198703495,52.76507920511811],[-127.59980920990759,52.765220132408665],[-127.60000070062905,52.76532625158275],[-127.60002818764164,52.76534156978531],[-127.60008950227724,52.76551615772295],[-127.60007211166032,52.765696312652295],[-127.6000099742653,52.765871464539785],[-127.60000130423911,52.76588784117973],[-127.59991608011329,52.766041453966054],[-127.59989047850735,52.76615109182508],[-127.59982583353893,52.76620970759759],[-127.59970002103854,52.76629605190832],[-127.59969029423935,52.76635840201576],[-127.5997729003481,52.76653157852166],[-127.59985179601034,52.76670481456126],[-127.59987979886942,52.766882663918345],[-127.59987078587656,52.767063260301974],[-127.59987658281351,52.76724308959862],[-127.59989816149137,52.76742271247456],[-127.59992622180808,52.767601681913874],[-127.5999838340218,52.767776885172104],[-127.6000005592238,52.76780187385654],[-127.60009963832985,52.76794400351072],[-127.6001241352648,52.7681269493069],[-127.6001059550807,52.76831103354343],[-127.60015036229328,52.768480247165805],[-127.60026081185465,52.76865305211245],[-127.60042272131395,52.768811694108905],[-127.60066127586902,52.7689345489643],[-127.60080181760742,52.769092926174956],[-127.6009359563386,52.769253632550736],[-127.60107472195065,52.769413710625365],[-127.60119137183044,52.769578583342955],[-127.60126471096001,52.76975188515809],[-127.6013233089026,52.76992819511372],[-127.60137638169999,52.7701057014421],[-127.60143036947468,52.77028263924269],[-127.60149360112435,52.770458885780286],[-127.60157248984675,52.77063155554515],[-127.60166338683422,52.770802375296554],[-127.60176167250907,52.77097253803701],[-127.6018627294329,52.77114210683408],[-127.60196284544948,52.771311123432845],[-127.60205742162307,52.77148133658374],[-127.60214371709496,52.77165333974256],[-127.60221525004889,52.77182779542658],[-127.60227295504518,52.77200467295315],[-127.60231953107468,52.772182267482734],[-127.60235871963619,52.772360527894875],[-127.6023895700424,52.772539458220265],[-127.60241208219009,52.77271905846533],[-127.60242622914024,52.772898217019595],[-127.60242279364313,52.77307873679155],[-127.60240266036666,52.773260049695345],[-127.60238437660698,52.773440772338326],[-127.6023836543063,52.77361956905685],[-127.6024217829539,52.773794480940346],[-127.60252282799128,52.77396348418614],[-127.6026561579337,52.77412699731909],[-127.60278942002137,52.774288278295074],[-127.60293092270933,52.77444663961106],[-127.60307883118044,52.77460267128135],[-127.60322582011926,52.77475871533648],[-127.60336549075663,52.77491765716182],[-127.6035042841996,52.77507774072976],[-127.60365676050075,52.775231467304486],[-127.60383572334574,52.7753736219298],[-127.60403482494904,52.77550765416668],[-127.60424214666963,52.77563821076757],[-127.6044466780577,52.775768805187596],[-127.60463750760347,52.77590519149769],[-127.60476233820495,52.77606433473766],[-127.60485334400933,52.7762374011145],[-127.60499580232467,52.77639630284111],[-127.60505803201575,52.77656976290428],[-127.6050843058843,52.77674987581293],[-127.60511425624334,52.7769293734161],[-127.60515715195068,52.7771070168569],[-127.60520098989743,52.77728521232558],[-127.60523461140446,52.77746353864696],[-127.60524516477719,52.777645552530565],[-127.60530919018763,52.777817301872226],[-127.60544424546755,52.77797630432796],[-127.60559863741756,52.77813112304389],[-127.60575760062554,52.77828420202557],[-127.60593935379096,52.778425750262485],[-127.60611383080457,52.77857132567227],[-127.6062809895156,52.77871980791669],[-127.60644364224166,52.77887170552247],[-127.60659624816151,52.779028233298],[-127.60663433550874,52.77920145815752],[-127.60662072126016,52.779382672983864],[-127.60660712813223,52.77956445245287],[-127.60661758236316,52.779743660560165],[-127.60663454752857,52.77992334440336],[-127.60664967104638,52.78010304448817],[-127.60666571575896,52.78028274089872],[-127.60668822906086,52.78046178370974],[-127.60673036782796,52.780643920453805],[-127.60677340040635,52.78082492397493],[-127.60678377136067,52.78100189118471],[-127.6067138558019,52.781167627960286],[-127.60644835776928,52.78139264713389],[-127.60670783746995,52.78130390070887],[-127.60696533969325,52.78121238290793],[-127.6072248172253,52.78112363532878],[-127.60749020604888,52.7810443296795],[-127.60776460860005,52.780982278975486],[-127.60805658214494,52.78094297055092],[-127.60835588214576,52.780925414867035],[-127.60864949983153,52.78092979031564],[-127.60894131745988,52.78096053643348],[-127.60923009202938,52.78100870273005],[-127.60951551929098,52.781066993807336],[-127.60979881198242,52.78116679746355],[-127.61006470634089,52.78119957358657],[-127.61032414996238,52.78113492435092],[-127.61058906235048,52.78104273175718],[-127.61084295360678,52.78092939194498],[-127.61106648710889,52.78079908944608],[-127.61124129028808,52.78065713456597],[-127.61137011890145,52.78050291573411],[-127.61146877425416,52.780336215976746],[-127.6115466355613,52.78016027829102],[-127.61161600255743,52.77998053842622],[-127.61168536863181,52.77980078953634],[-127.61176601991613,52.77962481327444],[-127.61187301783599,52.77945800733946],[-127.61206551805091,52.77931748468646],[-127.61231467630031,52.77927594711151],[-127.61256388089954,52.77928485103307],[-127.61286208854804,52.77931269259094],[-127.6131605194007,52.779322039160064],[-127.61345063057985,52.779307403527916],[-127.61374394731871,52.77935324532201],[-127.61396393031877,52.7794735223047],[-127.61417648944935,52.77959390106844],[-127.61448949095242,52.77954644030107],[-127.61470359771154,52.779412897433616],[-127.61491234644572,52.77928504164291],[-127.61510624353186,52.77915738103151],[-127.61532832248196,52.7790383084479],[-127.6155590146068,52.77892583348822],[-127.6157980091453,52.77881213167231],[-127.61604760674838,52.778708927766075],[-127.61631333951979,52.77863912941629],[-127.61659895419376,52.778604361816406],[-127.61689736253591,52.77858848223762],[-127.6172010544985,52.778589334320635],[-127.61750062888748,52.77860425877719],[-127.6177886821061,52.778633913771465],[-127.61807198813472,52.77868493162782],[-127.61835024197639,52.77875003489747],[-127.61862684612878,52.77882020008068],[-127.6189042231173,52.778886426140254],[-127.61917626594986,52.7789588949171],[-127.61944653839845,52.77903362942247],[-127.61972383342552,52.77909762176875],[-127.6200088162988,52.77914412804102],[-127.62029731468523,52.77918498029939],[-127.62058660682274,52.77922245803209],[-127.6208776707081,52.77925766866613],[-127.62116963434958,52.77929230118579],[-127.62146072062349,52.7793280750346],[-127.62175097140249,52.779366092656474],[-127.62203857993579,52.77940807392719],[-127.62232127988692,52.779467501638884],[-127.62259879446698,52.779537080021996],[-127.62287946953141,52.779592050615946],[-127.62316998441993,52.779612690837695],[-127.62346647819228,52.77961979615057],[-127.62376644394779,52.779620126929075],[-127.62406707486063,52.779613722015974],[-127.62436653564728,52.77960116281778],[-127.62466210699863,52.77958361693453],[-127.62495096065867,52.77956055862365],[-127.62517725939847,52.7794554160265],[-127.62539421599656,52.779324620539796],[-127.62562953786365,52.779212626239605],[-127.62590752576719,52.77917234585985],[-127.62620717500904,52.77916482806871],[-127.6265093777521,52.77917520934783],[-127.62680273233858,52.77919747812254],[-127.62709213711624,52.77923774519448],[-127.62738249916117,52.77927855426757],[-127.62767436166901,52.77931037417303],[-127.6279662394616,52.7793421931454],[-127.62825895298792,52.77937175788525],[-127.62855239525649,52.77939626300284],[-127.62884736756853,52.77941178747415],[-127.62914537534225,52.7794098897642],[-127.62944324820029,52.77940406534763],[-127.62973707162716,52.779413998778274],[-127.63001943998954,52.77946443608945],[-127.63029869542167,52.77953061833499],[-127.63058959835097,52.7795613234206],[-127.63088619433574,52.77954654546894],[-127.63117852179677,52.77951726269276],[-127.63146967780128,52.77948182574323],[-127.63175877794,52.77944081189444],[-127.63204487170186,52.77939423438793],[-127.63232889453748,52.77934208022279],[-127.63260988921242,52.779283797777104],[-127.63288791363463,52.77922051618717],[-127.63315814835494,52.779147818767775],[-127.63341852246069,52.779060120667204],[-127.63367795320985,52.77897187014871],[-127.63394820626766,52.778899726595455],[-127.6342317736467,52.77883580851491],[-127.63452289334977,52.77877513836986],[-127.63481461280448,52.77873016148893],[-127.63510179178213,52.7787121411785],[-127.6353805339101,52.778740762015566],[-127.6356529256445,52.77882159975317],[-127.63592227076968,52.7789198497187],[-127.6361918232015,52.77899903991496],[-127.6364626708829,52.77901543782992],[-127.63673249026941,52.77893208428072],[-127.63700979775246,52.778850302513725],[-127.6373030730897,52.77882154709791],[-127.63760457409138,52.77881397427074],[-127.637896989981,52.7788356724621],[-127.6381829264187,52.77888212151603],[-127.63846577424668,52.778944871407205],[-127.63873623058359,52.77902347823065],[-127.63898499347916,52.779117525052385],[-127.63919783626635,52.7792434602777],[-127.63939540420212,52.779382504162605],[-127.63960639326098,52.77950846457458],[-127.63985947139973,52.779594037576466],[-127.64015104853029,52.77964208895367],[-127.64044571484771,52.77967383802464],[-127.64074304433562,52.77970218622567],[-127.64104197875209,52.77972434146493],[-127.6413376846915,52.77973477555363],[-127.64162134905023,52.77972183733621],[-127.64185635085008,52.77960253268004],[-127.64206399070672,52.779471836110545],[-127.6422937009342,52.77935988636669],[-127.64257822231265,52.779297046626],[-127.64285130244042,52.77934702735273],[-127.64310690395052,52.77944938144009],[-127.64331157234129,52.7795799077366],[-127.64355680843796,52.77967847827181],[-127.6437652280701,52.77980950721368],[-127.64397542590385,52.77993883390912],[-127.64422145040199,52.78003347315626],[-127.6444871684398,52.78010933542706],[-127.64476006859107,52.78017837061938],[-127.64503832931557,52.78024228118953],[-127.64530843934732,52.780311354262786],[-127.64557516152402,52.780388885941505],[-127.64584841053902,52.7804668814194],[-127.64612257362292,52.780520758326226],[-127.64641291233973,52.78058450511321],[-127.64668238657407,52.78066086574851],[-127.64696058869738,52.780723095689886],[-127.6471807359037,52.78079679401379],[-127.64747324327865,52.78084424935199],[-127.64791764731021,52.78078532035514],[-127.6481325900401,52.78077221116014],[-127.64843746541523,52.78080323188315],[-127.64873177852047,52.78082544159846],[-127.64902447331619,52.78085383413308],[-127.64931465760137,52.78088954300889],[-127.64960144778877,52.780933154606295],[-127.64988747571834,52.78098125110814],[-127.65017177815744,52.781032743049266],[-127.65045610275193,52.78108478999401],[-127.6507395139267,52.781137405111224],[-127.65102468889354,52.7811871968022],[-127.65131067716337,52.78123417843711],[-127.65159409038144,52.781286791484284],[-127.6518822395428,52.781341588036405],[-127.65215966292499,52.78140717964004],[-127.652391361521,52.78151489042339],[-127.65248890976346,52.781683902033535],[-127.6524985995167,52.78186255429225],[-127.65248615824876,52.78204489021881],[-127.65251039562627,52.782215490728085],[-127.6525186993288,52.78240593702564],[-127.65252034681075,52.78259255821263],[-127.65253766126303,52.78275204660606],[-127.65251691993221,52.78296028146431],[-127.65248744551346,52.783134445575016],[-127.65248945716911,52.783354681368415],[-127.65263218894901,52.78346700808819],[-127.65296133588154,52.7835010471442],[-127.65326771056527,52.78349840564973],[-127.65355411162682,52.7834596182454],[-127.65371884187714,52.783324466277136],[-127.65381543692544,52.78310900075529],[-127.65395416332811,52.78295010994678],[-127.65406650876794,52.78278150236763],[-127.65420817685451,52.78262648858752],[-127.65441084150534,52.782487993541935],[-127.65464429173792,52.7823770878064],[-127.65479866233514,52.782358660271456],[-127.65522740994689,52.782374464091866],[-127.65550292383898,52.78243839790243],[-127.65572022636343,52.78255807106288],[-127.65592778361481,52.78268965600887],[-127.65615513278165,52.78280471164562],[-127.65640773381324,52.782900344890614],[-127.65667542632545,52.783001934195234],[-127.65687995893059,52.78310329425197],[-127.65708952304098,52.7832623168746],[-127.65725823359656,52.78339781126744],[-127.6574638778598,52.783527734653404],[-127.65768040141361,52.7836507871143],[-127.65790061716281,52.78377322202558],[-127.65812446006785,52.783893363328154],[-127.65835365607583,52.784007823712514],[-127.65859180910022,52.78411374529421],[-127.65884239318528,52.784204927045934],[-127.65912340626797,52.7842665238486],[-127.65941658872569,52.78430665850123],[-127.65971254852234,52.7843226479627],[-127.660016071435,52.784318352318735],[-127.66030228554001,52.78434624385293],[-127.66051572442453,52.784461488122346],[-127.66075265961136,52.784559575905696],[-127.66104477423696,52.78464399516994],[-127.66131692516709,52.784716365920325],[-127.66159434136475,52.78478081471977],[-127.66184954080101,52.78487080380516],[-127.6620781215325,52.784993112508324],[-127.6624015285948,52.78518918121242],[-127.66256026598064,52.785186931167004],[-127.66285223639267,52.78519567861279],[-127.66315818672618,52.78518181681218],[-127.66345494391032,52.78519442273336],[-127.66374852681098,52.785220524486526],[-127.6640413269881,52.78525055550054],[-127.66433325756068,52.78528228405712],[-127.6646252470812,52.78531513201889],[-127.66491658540659,52.785355279246716],[-127.66520783657464,52.78539317610139],[-127.66549955056115,52.78541930003803],[-127.66579329262531,52.78542578207653],[-127.6660891273898,52.785414289271955],[-127.6663854897901,52.78539270851846],[-127.6666817861416,52.785369442021114],[-127.6670139903617,52.78529073718297],[-127.66728973257148,52.78533557510555],[-127.66756172582137,52.7853799096912],[-127.66784974807602,52.78543018550189],[-127.6681377052016,52.785478775609604],[-127.66842378442422,52.785526826766],[-127.66872540788452,52.7855208587571],[-127.66902141911925,52.785490299650846],[-127.66920328287543,52.78560485679676],[-127.66933832164204,52.78578060323943],[-127.66953307224188,52.785915709819946],[-127.66976870560022,52.78602725877833],[-127.67001323546059,52.786129147919276],[-127.67026403063622,52.78622477755058],[-127.67051666173603,52.78631982450878],[-127.67078755257377,52.78640676407244],[-127.67106023548313,52.786492000526216],[-127.67129096383296,52.78659688161592],[-127.67143865272644,52.78673938147322],[-127.67151696232581,52.78691313593573],[-127.6715697121826,52.78709790824678],[-127.67163891548721,52.7872762762382],[-127.67171997533607,52.78744887036955],[-127.67180105759098,52.787622020113595],[-127.671882118751,52.787794614093976],[-127.67195951121211,52.78796838126768],[-127.67203229230137,52.78814277908091],[-127.67210599451795,52.7883171547386],[-127.67218153220811,52.7884909481741],[-127.67226445319002,52.78866351532409],[-127.67235749121545,52.78883369623463],[-127.6724625400045,52.789002028847726],[-127.67257309360664,52.78916859693667],[-127.67268550473565,52.78933513842698],[-127.67279424727836,52.78950285308514],[-127.67288645609662,52.78967528729018],[-127.6729722624541,52.78985005465496],[-127.67309097025819,52.79001145710876],[-127.6732805551947,52.790156163885605],[-127.67352340691932,52.790261432718715],[-127.67381164323677,52.790292625913594],[-127.67411301264774,52.79025581720398],[-127.67436395506861,52.790164800345444],[-127.6745999243377,52.79004709357639],[-127.67483687930232,52.78993105815989],[-127.6750879940385,52.78984452107776],[-127.67536734267752,52.78981474932357],[-127.67566699385796,52.78982896045127],[-127.67597241330853,52.78984813721984],[-127.67627022789618,52.78983939777724],[-127.67656639595006,52.789812189687844],[-127.67686330127266,52.789779921482314],[-127.6771594681844,52.78975270293206],[-127.67745155798981,52.78974012343982],[-127.67773729166842,52.78975452831276],[-127.67801279880109,52.78981616827143],[-127.67828451590684,52.78989971614611],[-127.67855952198147,52.78997200668964],[-127.67883878877335,52.790034702932694],[-127.67911897765757,52.79009739428832],[-127.67939909375572,52.79015783512855],[-127.67968181237129,52.790213763149886],[-127.67996516602109,52.79026239064703],[-127.68025658451327,52.79027951492004],[-127.68055664246668,52.79025671594501],[-127.68083352859044,52.79030599898876],[-127.6810987851606,52.79039018901673],[-127.68136138295893,52.79047778842964],[-127.68162094461216,52.79058223630514],[-127.68189571067205,52.790554200652835],[-127.68217515655644,52.79050311295907],[-127.68245606829953,52.79044247086999],[-127.68273675149108,52.79037567054414],[-127.68301634367988,52.79030496628737],[-127.68329219929367,52.790233750002194],[-127.68355343664179,52.79014536339997],[-127.68379912788097,52.79003927285943],[-127.68407648250117,52.79000614602677],[-127.68437524633416,52.79002146867798],[-127.68467370852004,52.790052497408695],[-127.68496406639004,52.79008980263712],[-127.68525203017795,52.79013723025326],[-127.68554069444583,52.79017904226898],[-127.6858330574587,52.79019669514266],[-127.68612975267199,52.79018290689825],[-127.68642640310071,52.790167988609255],[-127.68672670051176,52.790151340156875],[-127.68701718518281,52.79016846109428],[-127.68729653224081,52.790232822174524],[-127.68757090786107,52.79031239167249],[-127.68784678663769,52.7903829621993],[-127.68812872068911,52.79041870390305],[-127.68842214586316,52.790416157649226],[-127.68872195694573,52.790387180456115],[-127.68901539999474,52.790338116754434],[-127.68929059078522,52.790273621610275],[-127.68954054320982,52.79018203008593],[-127.68977378893288,52.79006712936797],[-127.68999744002436,52.789944528580946],[-127.69022779496659,52.78982687061665],[-127.69045229771152,52.7897025706964],[-127.69059578005512,52.789549171908824],[-127.69069690262526,52.789381810884315],[-127.69079706629857,52.789213898596536],[-127.69089626429026,52.789044888112166],[-127.69099360450882,52.788875895328935],[-127.69108997906572,52.78870580435502],[-127.6911854167646,52.7885357178122],[-127.6912789750877,52.78836510225954],[-127.69137251065752,52.78819393092914],[-127.69146416651984,52.78802222163186],[-127.69155488592476,52.787850525738435],[-127.69164468373631,52.787678843036886],[-127.69173351559016,52.78750605319788],[-127.69182049731845,52.78733384595019],[-127.6919065354802,52.78716109621744],[-127.69199165209697,52.78698835968607],[-127.69207581031331,52.786815080887784],[-127.69215905416844,52.78664237119365],[-127.69224135414116,52.786469110059585],[-127.69232181929833,52.78629644028299],[-127.69240136297469,52.78612378371882],[-127.69244024798311,52.78595676264185],[-127.69246510863984,52.7857635965545],[-127.6924997249933,52.78558262035958],[-127.69253433353053,52.7854010792711],[-127.69257319498614,52.7852334934236],[-127.69260697843676,52.78505477108875],[-127.69264820981448,52.78487650620133],[-127.69269411142197,52.78469872987364],[-127.69274744558967,52.78452140223099],[-127.69280922985503,52.78434620348819],[-127.6928717492669,52.784165945205714],[-127.69293031844437,52.783980139009444],[-127.69300869769167,52.78380189360986],[-127.69312876092076,52.7836443448824],[-127.69331233001068,52.783518943388],[-127.69355275225617,52.78342243094385],[-127.69382731411052,52.783343360528576],[-127.69411322059014,52.78326973045544],[-127.69438778042587,52.78319065872043],[-127.69464809783399,52.7831039452936],[-127.69490747857179,52.78301724480556],[-127.69516779386848,52.7829305302156],[-127.69542815257603,52.78284493537647],[-127.69569423517257,52.78276318508072],[-127.69596889985289,52.782686905971104],[-127.6962435490575,52.78261063539201],[-127.69650870752699,52.78252888759083],[-127.69675573306247,52.782435079738875],[-127.69697223241606,52.78232097049473],[-127.69713636057391,52.78217454539772],[-127.69727472266648,52.78201056626986],[-127.69741967693699,52.7818487245198],[-127.69759502905444,52.781704387156566],[-127.69778455447197,52.781566005209754],[-127.69797978117661,52.781430903314025],[-127.6981797214493,52.781297409792685],[-127.69837966807208,52.78116448078209],[-127.69860402733437,52.78103792367883],[-127.69886213994319,52.780919844987714],[-127.6990612956447,52.78079028912117],[-127.6991236945972,52.78063132698348],[-127.69912338095453,52.78045982168479],[-127.6990903305188,52.78028262977823],[-127.6990385392916,52.780101216481874],[-127.69897827678736,52.779917127912256],[-127.69892268526115,52.77973353660082],[-127.69888292373234,52.7795508279305],[-127.69887022635746,52.77937165506756],[-127.69890136531656,52.77919745201984],[-127.69898753669307,52.77902917751689],[-127.69911002215807,52.778863183698434],[-127.69924552932966,52.7786981130432],[-127.699370767225,52.77853151402972],[-127.69946520646741,52.7783608772785],[-127.69954374889164,52.7781876728491],[-127.69961198489568,52.778012366787685],[-127.69967276637907,52.77783605669385],[-127.6997279416246,52.77765926282847],[-127.69977846103988,52.77748197142375],[-127.69979635005028,52.77732477464354],[-127.6997538172987,52.777119130480415],[-127.69977887024567,52.77693212827428],[-127.6997932472328,52.7767800222806],[-127.69988520073092,52.77659372719248],[-127.69983245302286,52.77641177168328],[-127.6997903892226,52.77621789542648],[-127.69974832603732,52.77604755079986],[-127.69975045246736,52.77586760669319],[-127.69975908975557,52.77568812419194],[-127.69977650927581,52.775495618567966],[-127.69995177586578,52.775373132522326],[-127.70021762494005,52.77528689021741],[-127.70051135868495,52.7752248955712],[-127.70080378712888,52.77519992054552],[-127.70109482110402,52.775209706553106],[-127.70138847735463,52.775239075497346],[-127.70168433974895,52.775276823560425],[-127.70198003142886,52.77531064543286],[-127.70224074152745,52.7753517003119],[-127.70255917863426,52.77535044001578],[-127.70284807598853,52.77528346975368],[-127.70315385290972,52.77519719684683],[-127.70343668904648,52.77518803938038],[-127.7037330284564,52.77516804015409],[-127.70402802561708,52.77516095549465],[-127.7043237152396,52.77517123081481],[-127.70462557637481,52.77519654449148],[-127.70493492923502,52.77522343442686],[-127.70523949303829,52.775292990649376],[-127.7054094467897,52.77543344906403],[-127.7054884736357,52.775598761514],[-127.7053891373344,52.77578516887748],[-127.70537798194353,52.77594787397094],[-127.70562521888536,52.7760468525826],[-127.70586654933686,52.77616048044935],[-127.70604225578845,52.776305338198554],[-127.70619975283765,52.77645886355125],[-127.70634806740546,52.77661532029396],[-127.7064872072804,52.77677416130585],[-127.70661349707154,52.776937108134625],[-127.70672600868576,52.777103618318506],[-127.70679804463614,52.77727968541368],[-127.70688660727437,52.777451027951656],[-127.7070322631202,52.777610329460124],[-127.70719386118985,52.777773317652894],[-127.70737623924803,52.77792199524514],[-127.70758608286751,52.778037764063264],[-127.70783894754418,52.77809125181814],[-127.70814315538135,52.77808178099134],[-127.70845912151353,52.77806428220282],[-127.70876230171605,52.77807555847303],[-127.709073198203,52.77809401238693],[-127.7093446714575,52.77814834669803],[-127.7095462658901,52.778266474302285],[-127.70969493544335,52.778431333593524],[-127.7098030990284,52.77860463019702],[-127.70985929776884,52.77877924041339],[-127.70987682347709,52.778961705374975],[-127.70988679776357,52.779141482445205],[-127.7098828576533,52.77932145341385],[-127.7100037997586,52.77951249920014],[-127.71007984743628,52.77960275495183],[-127.71039420275258,52.779683921231346],[-127.71062031403383,52.779764696950785],[-127.71084201842893,52.779828165761224],[-127.71107247885756,52.779948111628315],[-127.71135734139924,52.780011769944906],[-127.71161863499202,52.78008978837344],[-127.71180143515204,52.78022500125412],[-127.71195805442194,52.78037909678202],[-127.71211020600406,52.780537732297695],[-127.7122777854909,52.7806871834484],[-127.71245084477839,52.780834303407936],[-127.71263119597333,52.7809779626407],[-127.7128250959092,52.781111890865915],[-127.7130928209105,52.78118812619764],[-127.71338662214175,52.78115020452664],[-127.71361445559543,52.781042068032846],[-127.71376708439304,52.78088793978063],[-127.71388017664184,52.78072094626575],[-127.71400552055292,52.780558248516485],[-127.71412054935006,52.78039290339716],[-127.71420274858292,52.780219635120126],[-127.71428499174854,52.78004747813155],[-127.71440091647689,52.779881563540165],[-127.71459702592801,52.77974697606502],[-127.71481695157556,52.77962717776557],[-127.71507899472432,52.77953871564485],[-127.71536677491632,52.779536183425876],[-127.71565760590131,52.77949381533209],[-127.7158844215669,52.77938400302539],[-127.71614218799232,52.77930456893337],[-127.716408298565,52.7792250031581],[-127.71663618145489,52.77911853666984],[-127.71681507977075,52.77897187532066],[-127.71701218068132,52.77883895500472],[-127.7171866459968,52.77869739789451],[-127.71734298856755,52.77854377503653],[-127.71748900092057,52.77838749628368],[-127.71758495443251,52.778279597023136],[-127.71764806631681,52.77811725030498],[-127.71768327082059,52.77797661109889],[-127.71777971845228,52.77788103526446],[-127.71789752491561,52.77771621012074],[-127.7180598125057,52.77757202294474],[-127.71833557253714,52.77750184400764],[-127.71862151365707,52.77745393497169],[-127.71891609570463,52.777436165271986],[-127.71919308968101,52.777373813116505],[-127.71944260173406,52.77727431460561],[-127.71972500826728,52.77723093861908],[-127.71999637663475,52.77728244300393],[-127.72030445786906,52.77730034345773],[-127.72059504908306,52.77732186270994],[-127.72088768302892,52.77730187463587],[-127.72118050760061,52.77726339117484],[-127.72145539257245,52.77719489462978],[-127.72174350030562,52.777154793017964],[-127.7220868572133,52.777149195008086],[-127.72234659866776,52.77714257322484],[-127.72264177386198,52.77711638244979],[-127.72295576559422,52.777096631428186],[-127.72324886831103,52.777134366059904],[-127.72353235185466,52.77716382943316],[-127.72382621247932,52.77715109791863],[-127.72412045135015,52.77712491717431],[-127.72441459080461,52.77711947100821],[-127.72472152762357,52.77708581108305],[-127.72500840877754,52.77706141331903],[-127.72533496979608,52.77700784123991],[-127.72564313419642,52.77702741242566],[-127.72588485608568,52.777080460552135],[-127.72617747860042,52.77708344420968],[-127.72647147371042,52.777074067044424],[-127.72675944007148,52.77703059213046],[-127.72704853045775,52.776992148895715],[-127.7273324664098,52.776940884966905],[-127.72761527700517,52.77688458796678],[-127.7278852220846,52.776808866955996],[-127.72813098358577,52.77670940484483],[-127.72829014686621,52.77655796692566],[-127.72843294186603,52.77636921226202],[-127.72852256736664,52.776197500068164],[-127.72852273906341,52.776018138514345],[-127.7285219676787,52.77583823482852],[-127.72858263441498,52.775662465417156],[-127.72873407952301,52.77548087364147],[-127.72893972395775,52.77539992800087],[-127.72921164936793,52.775327537474894],[-127.72951968290722,52.77525237172315],[-127.72976856685682,52.775207223610934],[-127.73007243578253,52.775235814348335],[-127.73032807552504,52.775311632842055],[-127.73033009565101,52.775132243792555],[-127.73032831300438,52.774950668848426],[-127.73025194496881,52.77478476745985],[-127.73002141319354,52.77466373855027],[-127.72988988882943,52.77451153767784],[-127.7298628143562,52.774370135651324],[-127.73030085649435,52.774295847567046],[-127.73059731326494,52.77427914142907],[-127.73088032924628,52.77422844705163],[-127.73116301157715,52.774169900963535],[-127.7314397997445,52.77410303822846],[-127.73170495980338,52.77402458058034],[-127.7319639979761,52.77393219579833],[-127.73220847203586,52.7738243316268],[-127.7324141407556,52.77369853934637],[-127.73253955268912,52.773539746671396],[-127.73262425074736,52.7733613775185],[-127.73275990651553,52.77320355416872],[-127.73295954075807,52.77306608399884],[-127.73319555741409,52.772956100603366],[-127.73346193778328,52.772884902736045],[-127.73375062233289,52.7728369154038],[-127.7340412382328,52.772791140783134],[-127.73432987602153,52.772742031696],[-127.73462522880527,52.77269842753632],[-127.73490711219756,52.77264325592366],[-127.73515999600264,52.77255992283053],[-127.73539009506013,52.77244161045335],[-127.73559045576305,52.77229964080825],[-127.73574301994626,52.77214661237383],[-127.73577699918826,52.77197739439893],[-127.73573040268354,52.77179032124841],[-127.73578741334259,52.77161684324619],[-127.73590506462229,52.77145031437319],[-127.73600495536618,52.771280685325905],[-127.73606274006626,52.77110326765856],[-127.73608797182868,52.770924654951905],[-127.73606208479359,52.77074455716188],[-127.73597158621774,52.77057382803931],[-127.73588106542535,52.770402534183035],[-127.7358107315368,52.77022533636901],[-127.73577570369547,52.770048736793996],[-127.73586157487898,52.76987707323181],[-127.73593704104664,52.76970051465092],[-127.73609335949185,52.76954910677392],[-127.73633149242181,52.76944581107933],[-127.73662629488341,52.769412298585976],[-127.73690730169194,52.769358811690964],[-127.7371569156368,52.769264312187104],[-127.7373986192433,52.76915759832928],[-127.73764227662112,52.76905366198068],[-127.73788888314303,52.768953600409795],[-127.73813551111414,52.768854093996154],[-127.73838406221671,52.76875624451296],[-127.73863646038708,52.768661700437185],[-127.73889567903117,52.76857490165642],[-127.739163627701,52.76849750579007],[-127.73943851867391,52.76843120735993],[-127.73971335540195,52.768363232052835],[-127.73998125564361,52.7682847139803],[-127.7402541743888,52.768215644834314],[-127.74054634869718,52.76818608033094],[-127.74083343470997,52.768145389572275],[-127.74109247096006,52.76805466050103],[-127.741206540348,52.76789210666452],[-127.74119550167994,52.76771234484049],[-127.74110306468785,52.76753996192781],[-127.7411088192102,52.76736220163302],[-127.74113035384488,52.76718419798457],[-127.74104346257216,52.767011176602274],[-127.74088773083963,52.76685766955209],[-127.74073946026178,52.76670460752634],[-127.74071894052346,52.76651994629172],[-127.74056923495542,52.76637755938926],[-127.7403324453599,52.766262248262464],[-127.7402070019506,52.76609988760279],[-127.74018304733235,52.765922003263874],[-127.74016832527722,52.76574286084634],[-127.74015912449163,52.76556251544279],[-127.74015363494676,52.76538211492782],[-127.74014908065736,52.765201700508776],[-127.7401473249611,52.76502180054487],[-127.74015487006312,52.76484232748246],[-127.74016331282658,52.764662285052744],[-127.74016251527897,52.764482935788756],[-127.74014126901922,52.76430332506894],[-127.74012095848856,52.76412370940446],[-127.74010346145637,52.76394460797303],[-127.74009520429195,52.763764804373146],[-127.7400934492464,52.76358491320097],[-127.74005277405655,52.76340671178721],[-127.74007996916058,52.76323087486325],[-127.74024845418718,52.763082642652144],[-127.74037264258435,52.76291825272336],[-127.7405553908334,52.76277821131866],[-127.74076363591375,52.76264901001657],[-127.74098720243236,52.76253134686378],[-127.74123568723486,52.76243292628261],[-127.74149578312958,52.762346107727744],[-127.74176662342153,52.76227258103433],[-127.74203752329292,52.762200173821725],[-127.74230936556434,52.762128316947276],[-127.7425802030768,52.76205478836378],[-127.7428510771626,52.761981814614394],[-127.74312099252225,52.761908298457975],[-127.74339185027874,52.761835332635464],[-127.74366364187759,52.76176234331058],[-127.74393455834314,52.76169049633693],[-127.7442073828733,52.761620297359904],[-127.74448024403324,52.76155065320765],[-127.74476099153333,52.761492666115664],[-127.74504580720517,52.76144302984084],[-127.74532460632041,52.761382828357],[-127.74560033134502,52.761315380917814],[-127.7458711959553,52.76124240911786],[-127.74613618089873,52.76116223320282],[-127.74639724000552,52.76107651010163],[-127.74665832900969,52.76099190696524],[-127.7469213330007,52.760908395699374],[-127.74718342357035,52.76082545346106],[-127.74744544459423,52.76074083461917],[-127.7477055633946,52.76065512252156],[-127.74796565842442,52.760568854158535],[-127.74824188183528,52.76049130378051],[-127.74851148076388,52.76041049748101],[-127.7487014803343,52.760289956638594],[-127.74876638965942,52.760106819063544],[-127.74883326404347,52.759903482824136],[-127.74893926949447,52.759749443266784],[-127.7491738665647,52.759766120808074],[-127.74945447899483,52.75984095983718],[-127.74974444345466,52.75994032987596],[-127.75001093443707,52.76003331462619],[-127.7502474862306,52.760143005034244],[-127.75047501503806,52.76025899978783],[-127.75069438659712,52.76037959103447],[-127.75083475004925,52.76004455324338],[-127.75092512567869,52.7598716880218],[-127.75104162771207,52.759701795439994],[-127.7512303146683,52.75957230177943],[-127.7514759603563,52.75947334509001],[-127.75174447391544,52.75938918428745],[-127.75201215766818,52.759307268315695],[-127.75228100550201,52.75923094835607],[-127.75255577059671,52.759163498442994],[-127.75284053853981,52.759113278510455],[-127.75312434794955,52.75906251618755],[-127.75340009166209,52.7589961706308],[-127.75366596082583,52.75891540790733],[-127.75394385706706,52.75885631992379],[-127.75423575118961,52.758821684131746],[-127.75453002884332,52.7587998991342],[-127.75482836194661,52.75878646478655],[-127.75512214116138,52.75879776024269],[-127.75541480997359,52.75887241354499],[-127.75567510247284,52.75885954676755],[-127.7559023875478,52.75874347531193],[-127.75612437331878,52.75861123251762],[-127.75625998298183,52.758319978038145],[-127.75636157148841,52.758149182064926],[-127.75651216355386,52.75799670889935],[-127.75673188301157,52.75787739496203],[-127.75696387478146,52.75776293671772],[-127.7571730577804,52.75763592374547],[-127.75737650480188,52.757504521269176],[-127.75758093968372,52.75737478064019],[-127.75778725139487,52.75724556750255],[-127.75799450526821,52.757116904833914],[-127.75820367402697,52.756989334063164],[-127.75840904734379,52.756860142787495],[-127.75859634116908,52.75672000323458],[-127.7587931866773,52.7565864551031],[-127.75904832702344,52.75649350047786],[-127.75926123121441,52.75636699263081],[-127.75939767191895,52.75629936928644],[-127.7594803036106,52.756299805859236],[-127.75964031535098,52.75655692432224],[-127.75970877807765,52.75673189662613],[-127.75977172188871,52.756908072763615],[-127.75973529197204,52.757105354293955],[-127.75989219623119,52.75724144884226],[-127.76005251007962,52.75741559769316],[-127.76018088371335,52.757557725396275],[-127.7603118745916,52.75771830599344],[-127.76047311620897,52.757869463911064],[-127.7606325811771,52.758022890336775],[-127.76074976048831,52.75818591995251],[-127.7608191505755,52.75836087759599],[-127.76086643129348,52.75853953040643],[-127.76088309288477,52.758718643194335],[-127.76086915785926,52.758898771654074],[-127.76084591529803,52.759077927866414],[-127.76088014880473,52.75925565558937],[-127.7609237201475,52.759434364016776],[-127.76094876999639,52.75961447169543],[-127.76089270538246,52.75978570881292],[-127.7608923926161,52.75995835035814],[-127.7609091933496,52.760140823949214],[-127.76095185351662,52.760320101991155],[-127.7610018435091,52.76049703681136],[-127.7610740288464,52.76067195211385],[-127.76114898198422,52.76084626078139],[-127.76124785650069,52.76101573485129],[-127.76137691425173,52.76117410112302],[-127.76155835108582,52.76131934889635],[-127.76170946767446,52.76147233422901],[-127.76180275636857,52.76164132677557],[-127.7618713055558,52.761817982196106],[-127.76194443181352,52.76199288275472],[-127.76201935306267,52.76216663525701],[-127.76209706549555,52.76234034574215],[-127.76217754586318,52.76251344956172],[-127.76225615695847,52.76268659038668],[-127.76232647238365,52.76286096791785],[-127.76237278302315,52.76303851332827],[-127.76241909404739,52.76321605869976],[-127.76246357326262,52.763394196572136],[-127.76251265241622,52.76357113526463],[-127.7625626755907,52.763748624719966],[-127.76261453176477,52.76392553055368],[-127.76266824350976,52.76410239948027],[-127.76271918828958,52.76427987496797],[-127.7627719809414,52.76445676660765],[-127.76282754953982,52.76463360749681],[-127.76288955972548,52.76480923942715],[-127.76297834428185,52.76498109663655],[-127.76310040756297,52.765194495821326],[-127.76307690025703,52.76532208910015],[-127.76292172859496,52.76547631583546],[-127.76275709343645,52.765626209544386],[-127.76267136174359,52.76579844894767],[-127.7626388301758,52.76597774442945],[-127.7626943539874,52.76615346488518],[-127.76278778736287,52.766325261184335],[-127.76288761591272,52.76649471023479],[-127.76298834271691,52.766663589661526],[-127.7630807969276,52.76683427941521],[-127.76319074879935,52.76700133390976],[-127.76331635169045,52.76716535483495],[-127.76339678537369,52.76733734613556],[-127.76344037547841,52.76751605267708],[-127.76345057203199,52.76769581752704],[-127.76337414065586,52.76786848228316],[-127.76323213587764,52.768027004020425],[-127.76308923255266,52.76818609508906],[-127.76298656468249,52.768352984010555],[-127.76296614821132,52.768533218099066],[-127.7630004672602,52.768712620092394],[-127.76305878748276,52.76888830705143],[-127.7631272839588,52.76906327593832],[-127.76320132489774,52.76923759639733],[-127.76327907829354,52.76941186993113],[-127.76335497620457,52.769586162342684],[-127.76343186472987,52.769762125796674],[-127.76355091973556,52.769924567763056],[-127.76372125164322,52.77006997906545],[-127.763915400895,52.77020718470389],[-127.7641159233823,52.77034148711575],[-127.76431546592276,52.77047469189476],[-127.76451862028848,52.77060503496832],[-127.7647254263715,52.77073420172002],[-127.76493133617957,52.77086393762899],[-127.76513184198498,52.77099768256945],[-127.76535754354613,52.77111199059539],[-127.76563115998276,52.77119475328484],[-127.76588645890392,52.77128395232382],[-127.76605102000566,52.77142384217119],[-127.76612813114508,52.77160484057827],[-127.7661586998159,52.771782620982925],[-127.7661559645505,52.77196371006248],[-127.76615785299053,52.77214416448047],[-127.76616443484623,52.77232566918856],[-127.7662622730156,52.772491226037765],[-127.76640896112427,52.77264819977417],[-127.76641463173051,52.77283027417553],[-127.76640916738077,52.773012525278155],[-127.76654253374835,52.77316128746049],[-127.76679840226467,52.77326392815432],[-127.76707239976996,52.77333322973969],[-127.76735342770816,52.77339289164444],[-127.76763000947224,52.77345710395946],[-127.76789249460083,52.77354002038226],[-127.76815327913899,52.773626333875434],[-127.76841400314069,52.77371151773339],[-127.76867476640403,52.77379726542009],[-127.7689275196708,52.77389154545156],[-127.76917040673162,52.77399437691942],[-127.76941509596695,52.77409549469764],[-127.76966615891776,52.77419371773403],[-127.76993391887461,52.77426926797282],[-127.77021728411817,52.774317677734345],[-127.77050681342178,52.77435814666091],[-127.77079712452222,52.774395240037805],[-127.77108844137709,52.77443400351246],[-127.77137709818969,52.77447560450257],[-127.771666606247,52.7745155059254],[-127.77195613826349,52.77455597126868],[-127.77224304230434,52.77460040365191],[-127.77252566287567,52.77465330320229],[-127.77280134822041,52.774718073082035],[-127.77306917834817,52.77479473622145],[-127.77333445056406,52.774877042507406],[-127.77359878839016,52.77495936233801],[-127.77386850088375,52.77503656020177],[-127.77413645964367,52.77511658203852],[-127.77437743200448,52.77521718987998],[-127.77456426965539,52.77535616597331],[-127.77474395552997,52.77550142007474],[-127.77496162642336,52.7756225576509],[-127.77519383560777,52.775735627643606],[-127.77541515134652,52.775855032181255],[-127.7756074849421,52.77599168140717],[-127.77578892507738,52.776134665352096],[-127.77598215861826,52.7762707443245],[-127.7762007492801,52.77639130969936],[-127.77643113298616,52.77650496097249],[-127.77666512235152,52.776616324114606],[-127.7768945965415,52.7767305532685],[-127.77710412137866,52.776856294449274],[-127.77726643833594,52.77700796908393],[-127.77741980275482,52.77716763525312],[-127.77761520818562,52.77728854052133],[-127.77788956354169,52.77734323872202],[-127.77815591505637,52.77736162027328],[-127.77846479316163,52.77737542821066],[-127.77875288181095,52.77738059156652],[-127.77904823373883,52.77735929573464],[-127.77934046720151,52.77733019938421],[-127.77963253673595,52.777297176757074],[-127.77992346049835,52.777259130711634],[-127.78021040634427,52.77721441824736],[-127.78049332129562,52.777162484172685],[-127.78077118215595,52.77710052806658],[-127.78104505022407,52.77703191481888],[-127.78131785629415,52.77695994503837],[-127.78159165231578,52.77688964557008],[-127.78186845772716,52.77682490478664],[-127.78214732013605,52.7767646161292],[-127.78242813999782,52.776707104059945],[-127.78270991773714,52.77665013276514],[-127.78298979192779,52.77659206870971],[-127.78326954826052,52.7765311987432],[-127.78354443765151,52.776464806015305],[-127.78381534180967,52.776392303185084],[-127.78408715690671,52.77631922085975],[-127.78436199687118,52.77625170590263],[-127.7846408371728,52.77619141151975],[-127.78492465180862,52.77613888785071],[-127.78521262233158,52.776096945379685],[-127.78550359462332,52.77606000554033],[-127.78579471565529,52.77602699074703],[-127.78608789407271,52.775998418983],[-127.78638220366989,52.77597487830579],[-127.78667677082053,52.775957503036885],[-127.78697244537953,52.77594458524758],[-127.78726921941474,52.77593557799525],[-127.78756514324624,52.775928268961216],[-127.78786205769468,52.77592262111656],[-127.78815941734749,52.77592761091166],[-127.78844526252324,52.77596809211666],[-127.78872194833797,52.77603393973788],[-127.7890046689669,52.77608847549719],[-127.78928908229665,52.776139065675956],[-127.78957610003549,52.77618513135363],[-127.78986392182526,52.77622838600273],[-127.79015172053782,52.77627107531239],[-127.79043956677728,52.776314884215815],[-127.79072565150062,52.77636096135842],[-127.7910092271776,52.77641380224451],[-127.79129195323891,52.77646833247642],[-127.79157726026284,52.77651778250267],[-127.79186584226015,52.77655709263059],[-127.79215791671962,52.776590743584094],[-127.79244985946669,52.776621597767296],[-127.79274269068904,52.77665130765889],[-127.79303469614068,52.776683280458066],[-127.79332499555179,52.77671919771051],[-127.79361747188321,52.776762363091954],[-127.79388890827087,52.776835561126404],[-127.79408929747758,52.776963654523755],[-127.79424908705717,52.77711983828235],[-127.79435695794331,52.77725607298291],[-127.79408419998781,52.77741718915925],[-127.79390750033379,52.77756562496104],[-127.79388977470455,52.777740775023275],[-127.79389915784618,52.77791999441955],[-127.79389240071087,52.77811291293108],[-127.79390647868205,52.778293181480606],[-127.79392100695004,52.778462232940946],[-127.79393577056327,52.77863688587125],[-127.79395937325957,52.7788231697593],[-127.79400115267028,52.77899965137821],[-127.79401704935259,52.7791793359729],[-127.7940320251402,52.7793590256669],[-127.7940451452691,52.77953875269748],[-127.79405548830336,52.77971851322576],[-127.79406116022112,52.77989778917211],[-127.79405571879342,52.78007780011192],[-127.79403820426876,52.7802579867636],[-127.7940197692975,52.780438196438624],[-127.79405278706236,52.780627143099345],[-127.79407685637976,52.780802209444566],[-127.79411112807527,52.780977128650626],[-127.79414447898435,52.781152052950134],[-127.79418781200233,52.781321228392095],[-127.79420671369296,52.78150590682585],[-127.79426614707795,52.781682674021994],[-127.79432647831885,52.78185887141363],[-127.79438499235725,52.78203566155837],[-127.79443611360853,52.78221367682751],[-127.79447996656707,52.7823951752908],[-127.79453480122939,52.78257313366683],[-127.79462083213103,52.78274165546992],[-127.7947710427204,52.782890693789284],[-127.79497996503524,52.78302201808855],[-127.79518254870321,52.78315735812021],[-127.79534852553623,52.78330559834985],[-127.79550907543162,52.78345727551093],[-127.79566412829024,52.78361072262761],[-127.7958146048185,52.78376592562225],[-127.79596326430479,52.78392171227385],[-127.79607245311468,52.78408874837552],[-127.79605120935564,52.78426843604889],[-127.79541357010096,52.78445531955581],[-127.7950356257912,52.7847665855817],[-127.79458766803148,52.78513552826472],[-127.79403960922862,52.78566461910912],[-127.79368369575852,52.7861913335963],[-127.79358833151214,52.78666306100649],[-127.79357427604978,52.78716885218311],[-127.79361586338361,52.78765025106216],[-127.7936311846674,52.78808160597496],[-127.79341361056947,52.78851876404651],[-127.79324424822526,52.78873265945765],[-127.79294066318302,52.788824739267625],[-127.79214288151748,52.78898266275691],[-127.79163460733866,52.789111496691156],[-127.7914029051037,52.78927870300168],[-127.79117033466069,52.78953616775648],[-127.79119390589385,52.78985473027407],[-127.79114587942647,52.79041484680138],[-127.79088314566518,52.79099450047257],[-127.7905854801292,52.79127257056335],[-127.79046888470485,52.79143857340563],[-127.79035886484608,52.79160616173163],[-127.7902591573028,52.791775834549036],[-127.79017348440432,52.791948100064666],[-127.79011117644241,52.792123927962415],[-127.790088085037,52.79230419738645],[-127.79004065368024,52.79248036315574],[-127.78994467958994,52.79265053460556],[-127.78982434114285,52.792816037659165],[-127.7896794800023,52.792972390632656],[-127.7895044250393,52.79311798498927],[-127.78934073572583,52.79326845469221],[-127.78919604417864,52.793429288405875],[-127.7891409605856,52.793599956329246],[-127.78918570004133,52.793780876752976],[-127.78917553995458,52.793959836461816],[-127.78914027311323,52.79413804909901],[-127.78909665815085,52.794316397988446],[-127.78904555340166,52.79449373108846],[-127.78898793349899,52.794670607479006],[-127.78891813400993,52.79484487152185],[-127.78883901125737,52.795018712678015],[-127.7887617359083,52.79519196059623],[-127.78869756054982,52.79536781568586],[-127.7886501818363,52.795545100603654],[-127.78858978942307,52.79572257492125],[-127.78856568358658,52.795901181942256],[-127.78871130820156,52.79605086203119],[-127.78896343351546,52.79614790778994],[-127.78920480259195,52.796254641109414],[-127.78941450639579,52.79638147898321],[-127.78961701860152,52.796514031213306],[-127.78982312867176,52.796643730186986],[-127.79004456116435,52.79676197601299],[-127.79030104674396,52.796852226413804],[-127.7905611532916,52.796940178993],[-127.79080243724594,52.797044677361406],[-127.79103017839155,52.79715834105696],[-127.79130086593048,52.797232678454925],[-127.79156621862931,52.79731270172525],[-127.79183338224942,52.797391575744165],[-127.79210402564587,52.79746479099292],[-127.7923738196528,52.79753970459429],[-127.79264186019745,52.79761744240425],[-127.79290721779945,52.79769746262203],[-127.79316462723982,52.79778712778239],[-127.79340956549896,52.797889879058616],[-127.79367217193489,52.797970504622405],[-127.79395511489065,52.798026712575826],[-127.79417826688587,52.79814156147493],[-127.79448759144302,52.79829489202718],[-127.794634533811,52.79838680864612],[-127.79463575809449,52.79848207522762],[-127.7945897010435,52.79864644626766],[-127.79453500932463,52.798826087371936],[-127.79454367556683,52.79901035536351],[-127.79451867169546,52.79918897731468],[-127.79449555686493,52.79936869134578],[-127.79447429037326,52.799547821060266],[-127.79445300847027,52.79972694201514],[-127.79442897197738,52.79990667005848],[-127.7944152452798,52.79999992320653],[-127.79440303114636,52.800085306196266],[-127.79437525676568,52.80026453533194],[-127.79434653731664,52.800443213905375],[-127.79431782612255,52.80062244833812],[-127.79428910619254,52.800801126855994],[-127.79420623300533,52.800973907479],[-127.7941261759524,52.80114720993534],[-127.79406106888416,52.80132251674226],[-127.79401001494763,52.80150041559271],[-127.79398127828229,52.80167909416085],[-127.79399076121389,52.80186055131934],[-127.79405748601516,52.80203328619434],[-127.79420925848333,52.80210719343713],[-127.79408124214585,52.80235521512394],[-127.79393735580372,52.802513234241104],[-127.79375082749797,52.80265172705954],[-127.79353297948327,52.802774439323244],[-127.79331127507002,52.80289385606361],[-127.79312013088034,52.80303297435402],[-127.7929049786039,52.803153411135945],[-127.792640906575,52.803237592966326],[-127.79236091790669,52.80329679932491],[-127.79207188197817,52.80333989318154],[-127.79183070479876,52.8034382964391],[-127.79168778952669,52.80359741867364],[-127.7915476985949,52.80375761857603],[-127.7915254108069,52.80393507663681],[-127.79159222290231,52.80411005324235],[-127.79170239112172,52.80427764177585],[-127.79179045287327,52.80444949575819],[-127.79185369341391,52.80462788971896],[-127.79186326176247,52.80476730336471],[-127.79189457696172,52.80498205673477],[-127.7919484619985,52.805158916458176],[-127.7920153010668,52.80533444834288],[-127.79209780285107,52.80550694295655],[-127.7921895596233,52.805678175150014],[-127.79227022917394,52.80585126259196],[-127.79231673426622,52.80602934683795],[-127.79229259116707,52.806206833153034],[-127.79224618362066,52.80638522448495],[-127.7922155938085,52.80656393019719],[-127.79219058424367,52.806743106663724],[-127.79216841533444,52.80692336968048],[-127.79217779766402,52.80710258581358],[-127.79229067531513,52.80726789025037],[-127.79244587344196,52.80742301518372],[-127.79263746798875,52.807559656933925],[-127.79283554832928,52.80769563430463],[-127.79302721573983,52.807833951329336],[-127.79313354322984,52.80799823404597],[-127.79315693822498,52.80817891292889],[-127.79314686175583,52.80835954724592],[-127.7931711549456,52.80853965634891],[-127.79320675781997,52.80872352057438],[-127.79328550016844,52.80889438561944],[-127.79345035191055,52.80903591870641],[-127.79367933558449,52.80915516345105],[-127.79390289828095,52.8092784185969],[-127.79406800382935,52.80942555193262],[-127.7942021071241,52.809587167001915],[-127.7943426258416,52.809746441832125],[-127.79449148796567,52.8099050239288],[-127.79469922863028,52.81002739854063],[-127.79495319850288,52.81012216182135],[-127.7952090418568,52.810216895904304],[-127.79542099211403,52.810306696007764],[-127.79564682157732,52.81046130109895],[-127.79579975787946,52.8105620924623],[-127.79602277062207,52.81073803885932],[-127.79620623716043,52.810879839281604],[-127.79640693454623,52.811011286706325],[-127.79662312332931,52.81113521464961],[-127.79684742869009,52.811253403986186],[-127.79707799381742,52.81136590103983],[-127.79732207427868,52.81146809273768],[-127.79757692417044,52.81156115998716],[-127.79782906685949,52.8116559451765],[-127.79808039224797,52.81175354036226],[-127.79834048779743,52.81183867864926],[-127.79862002591364,52.81189996852306],[-127.79890833370135,52.811948801332726],[-127.79918865304616,52.812006714909714],[-127.79942712265324,52.81210787631265],[-127.79960526086175,52.81225479325463],[-127.79974491952855,52.812415195970296],[-127.7999328680855,52.812552437998775],[-127.79999993043573,52.81257775732604],[-127.80018685602107,52.81264663391852],[-127.80046372657561,52.81271076738251],[-127.80074956999341,52.81276691555576],[-127.80103445410685,52.81282251278236],[-127.80131311395438,52.812884939803915],[-127.80157841701791,52.812961014195636],[-127.80182232858529,52.813058724312704],[-127.80204573706638,52.8131769177146],[-127.8022575143672,52.813305943261525],[-127.80246564884133,52.81343671036055],[-127.8026664009865,52.81356870251908],[-127.80286412540669,52.813716999776894],[-127.8025703566779,52.81369348725006],[-127.80227655583029,52.813668853490135],[-127.80198198479626,52.81364815879375],[-127.8016856271526,52.813629167798574],[-127.8013882151338,52.81360738527025],[-127.80109096047474,52.81358897153162],[-127.80079498175472,52.81357894044557],[-127.80050246723337,52.81358510541346],[-127.80021195217446,52.81361646585047],[-127.79999993000972,52.81365783167909],[-127.79992619128947,52.813672414532945],[-127.79964840361801,52.81374113616606],[-127.79938890752236,52.81382470562298],[-127.79914613745517,52.81393043796586],[-127.7988945505619,52.81402565099462],[-127.79862743178384,52.81410485156491],[-127.79837389101486,52.81419786035759],[-127.79813776717386,52.81430685165875],[-127.79790072926507,52.81441641247417],[-127.79764614550753,52.81450662863425],[-127.79735096914389,52.814559917088346],[-127.7971549344773,52.81460607278645],[-127.79714389235909,52.81471890613794],[-127.7973857329784,52.81498816000457],[-127.79754474065737,52.815144349756],[-127.79769171373857,52.815301835651525],[-127.79784648918289,52.81544575890324],[-127.79801781983643,52.81558550037884],[-127.79824403396117,52.815704222863914],[-127.79842841831515,52.8158448847443],[-127.79860278256895,52.81599018386308],[-127.79880264568803,52.81612331702925],[-127.79901430994033,52.81624955199124],[-127.7992177880616,52.81637983105948],[-127.79941311240422,52.81651527477192],[-127.7995920490797,52.81665882534729],[-127.79977279711693,52.816801217919384],[-127.80000063760268,52.81698044575047],[-127.80034459358117,52.817267749385],[-127.80049063939013,52.81742469004248],[-127.80063482846214,52.81758165900336],[-127.80083265885101,52.81771034497192],[-127.80111226282344,52.817772193293386],[-127.80139873146996,52.81782048369555],[-127.80167736821114,52.81788122454261],[-127.80196042983897,52.81793684785614],[-127.8022484510672,52.81797783040818],[-127.80254225770877,52.81800189955606],[-127.80283781925449,52.818023143020525],[-127.80313249207927,52.8180455203907],[-127.80342625272527,52.818068476021494],[-127.80372181517188,52.818089717259554],[-127.80402088929625,52.81810641981146],[-127.80429574473533,52.81816552666255],[-127.80455417601655,52.81825404018357],[-127.80480205332042,52.81835672336163],[-127.80503540071676,52.818467476426946],[-127.8052570210747,52.81858681236899],[-127.80546962910248,52.8187124564769],[-127.80568137330685,52.818839799471654],[-127.80589577944397,52.81896429417115],[-127.80610747837952,52.8190905071508],[-127.80630010539406,52.81922711116017],[-127.80648819986,52.81936658261719],[-127.80667357223612,52.819507772683295],[-127.80685440376854,52.819651283315814],[-127.80696694453633,52.81980648993082],[-127.80712050245741,52.819964427942374],[-127.80729099606813,52.82012714498352],[-127.80745585759668,52.82026641661923],[-127.80756798772546,52.82043395990088],[-127.8076764412595,52.820602115702805],[-127.8077821016787,52.820770323383975],[-127.80787301777013,52.82094155604867],[-127.80796398205209,52.82111390888576],[-127.8080613711361,52.82128447671075],[-127.80818443168927,52.82144624604809],[-127.80833597607378,52.82160029449063],[-127.80850678522583,52.8217484320056],[-127.80869876717722,52.82186934819457],[-127.80889228872621,52.82200480428455],[-127.80912803696657,52.822149707180046],[-127.80928437739496,52.822285179647686],[-127.80949457732487,52.8224192567088],[-127.80971631698554,52.822540268571565],[-127.80994800847118,52.82265496560937],[-127.81019213677709,52.822756009541926],[-127.81045839145584,52.82283093787177],[-127.81074685773315,52.82288141716853],[-127.8110282013883,52.82293928761881],[-127.81127853556832,52.823032951628726],[-127.81150663653526,52.82315049905879],[-127.8117301577328,52.82326980271125],[-127.81195362350162,52.82338742083101],[-127.81221915353495,52.823466831433976],[-127.8125064282135,52.82351116390518],[-127.81279456837623,52.82355379634298],[-127.81307683209592,52.823611091750095],[-127.81336656954792,52.82364752818545],[-127.81366039901171,52.823627295025325],[-127.8139542362412,52.82358520612109],[-127.8141176104995,52.82355745465093],[-127.81416689539334,52.823667115327595],[-127.81415731009096,52.82376982985709],[-127.81411000560307,52.82394712179301],[-127.81409253411596,52.82412675066541],[-127.81408157324503,52.824306278902526],[-127.81404266911919,52.824484552948675],[-127.81398042685738,52.82466038958734],[-127.8139340422741,52.82483766710988],[-127.8138856083157,52.82501048331682],[-127.81385508089646,52.82518919274713],[-127.81384311873168,52.82534519546039],[-127.81383247297737,52.82555386443074],[-127.81385773727132,52.825732832755634],[-127.81390804680886,52.825910293091695],[-127.81392683946254,52.82608992634225],[-127.81395304099229,52.826268880114796],[-127.81399128077025,52.82644652686314],[-127.81392344598339,52.82662244961607],[-127.81383875880935,52.8267952697029],[-127.81378952856683,52.82697146088788],[-127.81373127708031,52.82713210649666],[-127.81371850331126,52.827312783316685],[-127.81372879792752,52.827489175780954],[-127.81371604804123,52.82767041716761],[-127.81362522758106,52.827852299611195],[-127.81345693224952,52.828005111966085],[-127.81325625952607,52.828139923297364],[-127.81303245347279,52.82825547866747],[-127.8127962032246,52.828362822795775],[-127.81255234280721,52.828465790989334],[-127.81230467859963,52.82856714036919],[-127.81205893394478,52.82866958056377],[-127.81181893839839,52.82877641545214],[-127.81159232151248,52.82889145528587],[-127.8113887487256,52.829024065965925],[-127.81119375867803,52.82916159278904],[-127.81098528368099,52.829288117383165],[-127.81073252114987,52.82937889700417],[-127.81044407860837,52.829439394617566],[-127.81019976373535,52.82953227579301],[-127.81002170656197,52.829674588382474],[-127.80986947956956,52.829833873310854],[-127.80972457492004,52.82999080316807],[-127.80959100029126,52.83015147715763],[-127.80944797584337,52.830308942607445],[-127.80927661427793,52.8304556256966],[-127.80909109274542,52.83059748673211],[-127.80892724281495,52.830746304445974],[-127.80881815429107,52.83091444704157],[-127.808715609722,52.831083618648975],[-127.80855552052311,52.83123348983281],[-127.80836149536881,52.831372117585126],[-127.80814446490817,52.83149484946609],[-127.80789464427843,52.83158949621476],[-127.8076922048188,52.83168341293738],[-127.80744919997204,52.83180765536991],[-127.80718373037519,52.831950187758416],[-127.8069991400092,52.83204831242507],[-127.806773793699,52.83217228160304],[-127.80655509735689,52.83227765624949],[-127.80629965487344,52.83237182992333],[-127.80604707732454,52.83246763594251],[-127.80579640451802,52.8325645330846],[-127.8055524557892,52.832666366210326],[-127.80532295880953,52.83278031638638],[-127.80509826506325,52.83289811120112],[-127.80539373795209,52.83311271608229],[-127.80534394687932,52.833298443825605],[-127.8053041001276,52.83347729272971],[-127.80525487471964,52.83365460879764],[-127.8051756901366,52.833826771528614],[-127.80507688857274,52.833997002752106],[-127.80499304887682,52.83416923686363],[-127.80491391869721,52.83434308445113],[-127.80484600140745,52.834517880588024],[-127.80478929128992,52.83469419035829],[-127.80474381783537,52.834872004358445],[-127.80471420529847,52.83505125153132],[-127.8047032495544,52.83523189788877],[-127.80470165791644,52.835414086260315],[-127.80469815990187,52.83559517396092],[-127.80468155725211,52.835774230050355],[-127.80464065000814,52.835950287731336],[-127.80456134941984,52.8361202184819],[-127.80443992842507,52.836283505550256],[-127.8042960607981,52.83644377442325],[-127.80414559954018,52.836601902431674],[-127.80400634503202,52.83676153503425],[-127.80386719947221,52.83692341669285],[-127.80371189138565,52.83707713458336],[-127.8035231955943,52.837211187397806],[-127.80328783209461,52.83731905303899],[-127.80302864936324,52.83741326718935],[-127.80277112030184,52.83750298041037],[-127.8025028776298,52.83758108273637],[-127.8022375475699,52.837661937692175],[-127.80197513944685,52.837746119094234],[-127.80170291598301,52.83781811075734],[-127.80141687688393,52.83787126605144],[-127.80116298792385,52.8379592338353],[-127.8009432406812,52.83808479068968],[-127.8007039354321,52.8381876624878],[-127.8004265241062,52.838246843892406],[-127.80013537702663,52.83828942053012],[-127.80000054186213,52.83831166495378],[-127.79984726120864,52.83833755486144],[-127.79957589647402,52.83840785131208],[-127.79931454219825,52.83849537335961],[-127.79905891926107,52.83858616096236],[-127.7988052573861,52.838679724872634],[-127.79855356247069,52.838775500039716],[-127.79830185155537,52.83887127488927],[-127.79804724096684,52.83896429561808],[-127.79779262889043,52.83905730682744],[-127.79754961687804,52.83916079365325],[-127.79730422438634,52.83927384915779],[-127.7971371885564,52.839414841421686],[-127.79705032216823,52.83958263999921],[-127.79699836869064,52.83976222600938],[-127.79696050506968,52.839944968265534],[-127.79692060209734,52.84012381379284],[-127.7968890942449,52.84030308683278],[-127.79687158221095,52.84048327563842],[-127.79687539143671,52.840662008251606],[-127.7969358878335,52.84083988245613],[-127.79707456646328,52.84099693876181],[-127.79725460541809,52.841142152210146],[-127.79734446760936,52.84131060002197],[-127.79739108011775,52.841489807417766],[-127.79746171621977,52.84166527520925],[-127.79754251349257,52.84183891044678],[-127.79764999821452,52.84200597625714],[-127.79777497028896,52.84216884638443],[-127.79790915819962,52.84232933334736],[-127.79805346916986,52.84248742322684],[-127.79820597335198,52.84264145959214],[-127.79837583889102,52.84278794807407],[-127.79855946595075,52.84292974167799],[-127.79874399282379,52.84307096521709],[-127.79891850180562,52.8432173818119],[-127.79905176041282,52.843377881712954],[-127.79909089894856,52.843556072888354],[-127.7990677707739,52.84373522682675],[-127.79897932734882,52.84390976737584],[-127.79894864433494,52.844086230043985],[-127.79896661026997,52.844269794339745],[-127.79901788771677,52.84444892945351],[-127.79912602294259,52.84460924906001],[-127.79934253167085,52.84473653007251],[-127.7995816334524,52.844848326917],[-127.7998141514388,52.84495853823417],[-127.79999042769033,52.84510212820717],[-127.80000102303711,52.845110933605916],[-127.80015584331042,52.84525316621518],[-127.80030292118121,52.84541008993657],[-127.80043066204748,52.845571793781964],[-127.80054736770575,52.84573646460227],[-127.80065859210453,52.84590347024732],[-127.800766122732,52.84607108841653],[-127.80087184244856,52.84623985522003],[-127.80097753915952,52.84640805730615],[-127.80108783002062,52.846575076840374],[-127.80120364270195,52.84674032564754],[-127.80132223747546,52.846905531670444],[-127.8014408804862,52.847071857801964],[-127.80155861090648,52.84723875380937],[-127.80167723229238,52.847404524025244],[-127.80179865033222,52.847570242249795],[-127.80192277975517,52.84773424177798],[-127.80205145585055,52.8478959294758],[-127.8021856305272,52.848055290724204],[-127.80232618760486,52.848211755942515],[-127.8024813344541,52.84836126231425],[-127.80270875166437,52.84848220004564],[-127.80297301165281,52.848572305618134],[-127.80325144907304,52.84862352394333],[-127.80355271450541,52.84864299494898],[-127.80385308194967,52.848663043946125],[-127.80414815653624,52.8486898993032],[-127.8043865821038,52.84878488243712],[-127.80459588064612,52.8489167486405],[-127.80480786661582,52.84904632227709],[-127.80503067744971,52.849167891365035],[-127.80528023887896,52.84926213663467],[-127.8055539448547,52.849333599795365],[-127.80583905591901,52.849388628421224],[-127.80612982833844,52.849423391826434],[-127.80643295992843,52.8494428268493],[-127.80673226669263,52.84943766751254],[-127.80700841987249,52.84939082266812],[-127.80725815683047,52.849291697911156],[-127.80750663811092,52.84918474511529],[-127.8077771122475,52.84911388041506],[-127.8080692477325,52.84907127093457],[-127.80836614604335,52.849053248793254],[-127.80865383697089,52.84908132755907],[-127.8089416754671,52.84913462972819],[-127.80924106435273,52.849153559133335],[-127.8094752196287,52.84925700071487],[-127.80970703162394,52.84937113167062],[-127.80996747484258,52.849458482626346],[-127.81023671562059,52.84953392273462],[-127.8105168507767,52.849603024481034],[-127.8108045427561,52.8496748159929],[-127.81106311831385,52.849630474499904],[-127.81130522014928,52.84952697485647],[-127.8115448102806,52.84940781979234],[-127.81179344825458,52.84930478325904],[-127.81205692545872,52.84922280679582],[-127.81232618486419,52.84914523337322],[-127.81259159084391,52.84906491185807],[-127.81285991087745,52.84898734270209],[-127.81313514948265,52.84891919888927],[-127.813423607586,52.84887775372559],[-127.81371942233872,52.8488563718016],[-127.81401679327425,52.84884953777252],[-127.81431144661887,52.84886628544703],[-127.81460159538244,52.84890832840528],[-127.81488758059314,52.84896163577241],[-127.81517117580921,52.849024512161975],[-127.8154222128185,52.84910918961839],[-127.81558209741914,52.849259736081564],[-127.81583728428974,52.84935443730953],[-127.81609061310505,52.849449166722486],[-127.81634661979791,52.849541047269604],[-127.81660872191557,52.849623309193504],[-127.81688848654426,52.84968344280426],[-127.81717432173168,52.84973338409633],[-127.81745063186534,52.84979973071253],[-127.81772694285854,52.849866076676236],[-127.81800497064901,52.84992903250138],[-127.81824327603661,52.8500419255001],[-127.81835059959867,52.85020280570854],[-127.81839361531505,52.85038261694784],[-127.81859753943756,52.85051846099174],[-127.81887579311385,52.85056459667955],[-127.81917591864068,52.85057844965965],[-127.8194765837914,52.85058331674035],[-127.819778286739,52.850568554373744],[-127.82006803592137,52.85057920290007],[-127.82033608776052,52.85066976731669],[-127.82045452844794,52.8508293524313],[-127.82051450234549,52.851013949035405],[-127.82060101267243,52.85118803656387],[-127.82077608864351,52.851323203054456],[-127.82099321144088,52.85144090284571],[-127.82123132693671,52.851549308967876],[-127.82148313270373,52.851651341451735],[-127.82173853841182,52.851750510655044],[-127.82198932826236,52.85185030691299],[-127.82224089826792,52.85194673658425],[-127.8225049574569,52.852030632256145],[-127.82277600017305,52.85210377419152],[-127.82305600508785,52.852168929590675],[-127.82334249008595,52.85221156421953],[-127.82363782923181,52.85222211735244],[-127.82393688968405,52.85221074843322],[-127.82423194383375,52.85219271510353],[-127.82452564414496,52.85216461326231],[-127.82481928125651,52.852135390684914],[-127.82511378294119,52.85210446798422],[-127.82540934136034,52.85207633504494],[-127.82569979946929,52.85208135394884],[-127.82598331124996,52.85214139905319],[-127.82626226447415,52.852203765276926],[-127.82653507807096,52.85227462916311],[-127.82680175217283,52.85235399075324],[-127.82706927768085,52.8524316615244],[-127.82735269809154,52.852489471810195],[-127.82761921614659,52.85256547107195],[-127.82785459741774,52.852674471565095],[-127.8280819561524,52.852791434322754],[-127.828306616146,52.852910689577676],[-127.82854731468929,52.8530134360961],[-127.82882545083899,52.853078042054115],[-127.82911127508132,52.85312684292872],[-127.82940428769837,52.853169361307636],[-127.82967675199616,52.85323181165052],[-127.82978984897467,52.85339595489176],[-127.82980973901101,52.853577808543164],[-127.82999508791846,52.85371280168418],[-127.83025647296867,52.85379896386268],[-127.83050283166705,52.853903304234905],[-127.83070557612682,52.85403185536026],[-127.83078936189649,52.854206543227455],[-127.83075605465892,52.854384176842565],[-127.83064615117173,52.854554601199276],[-127.83046143686114,52.85469423875172],[-127.83026250364577,52.854827927648536],[-127.83015890525108,52.854993769312465],[-127.83008647446408,52.85517032613423],[-127.82999897566135,52.85534264266026],[-127.8298823733799,52.85550867758593],[-127.82977886799846,52.85567675929934],[-127.82969892473099,52.85585175578999],[-127.8296358359821,52.85602928766512],[-127.82961551499142,52.85620616240492],[-127.82959359853483,52.85638922285061],[-127.82966243616875,52.85654060355459],[-127.82975202614159,52.856698942864064],[-127.82969535630023,52.85687414170423],[-127.82969883953001,52.85710725042337],[-127.82972633663972,52.8572710406327],[-127.8297422836647,52.85744735040463],[-127.82977789278883,52.85764857139362],[-127.82978401323615,52.85781269447045],[-127.82979989775004,52.85798788417936],[-127.82983270137832,52.85816672928802],[-127.82986270849304,52.85834561792701],[-127.829865768434,52.858525482247785],[-127.82986044387047,52.85870492113211],[-127.82984775320956,52.858886160664944],[-127.82984336576274,52.85906558491057],[-127.82991597602248,52.85923988202366],[-127.83001640914529,52.85941206874356],[-127.83014983538632,52.859572531703776],[-127.83033799342617,52.859707480456926],[-127.8305691493361,52.859825509359396],[-127.83077109597889,52.85995631471033],[-127.83091274339769,52.86011328579511],[-127.83103433547095,52.86027953704988],[-127.83117417338964,52.86043765699261],[-127.83137629339971,52.86057238651791],[-127.83158378631352,52.860702548051684],[-127.83170777972565,52.860859793390055],[-127.83176290976198,52.86103828973182],[-127.83181988507316,52.86121675726605],[-127.83190180595152,52.861390916909045],[-127.83201314544311,52.86155676201155],[-127.8322070659622,52.861695545873964],[-127.8324838364802,52.861748399343284],[-127.83278655479533,52.861777306978226],[-127.83300978180523,52.861861816706195],[-127.83304564912915,52.862046782780446],[-127.83304968434288,52.862227196567005],[-127.83303239717522,52.86240961994893],[-127.83314574619497,52.86255694105749],[-127.83340640997316,52.86247328496178],[-127.8335777929096,52.86232600506453],[-127.83384709589134,52.86224838296773],[-127.83413657035045,52.86220742853428],[-127.83443347697487,52.862187664819416],[-127.83472014439143,52.862146196753265],[-127.83499881491959,52.86207010266245],[-127.83521544469454,52.86195798477126],[-127.8353215574296,52.861785939185694],[-127.83547404454833,52.86163222561794],[-127.83567962995018,52.86150122273935],[-127.83591692858418,52.861393820428475],[-127.83620465733344,52.86124752531315],[-127.83641577285405,52.86124534681954],[-127.83668866116567,52.86131618672431],[-127.83695978722437,52.86138929550927],[-127.83723274958008,52.86146180999487],[-127.83750566496828,52.86153321258425],[-127.83777770676039,52.86160574022292],[-127.83804794753156,52.86167998136484],[-127.8383164410188,52.8617564911859],[-127.83858137044638,52.86183698407478],[-127.83884643635295,52.86192027219848],[-127.83911170568568,52.86200859646063],[-127.83936614699951,52.862104380472296],[-127.83960156261067,52.86221223655446],[-127.83980512742349,52.86233684057405],[-127.83997250445256,52.86248498646362],[-127.84011534923165,52.86264697699254],[-127.84024798299154,52.862809683274534],[-127.8403547894139,52.86297727783399],[-127.84044595027059,52.86314903628455],[-127.84056653012291,52.863312495973425],[-127.8407284888858,52.86346465356791],[-127.84090599820343,52.86361039746321],[-127.8411023427202,52.863739596312755],[-127.84126352493627,52.86385197519892],[-127.84152804046985,52.86396553241603],[-127.84182230773521,52.86405675919738],[-127.84213934766363,52.864136427454625],[-127.84239248213117,52.86415879717264],[-127.8427372866883,52.86410575332742],[-127.84303000318226,52.86411797711382],[-127.84326029745203,52.86421468764661],[-127.84345368328414,52.86436130870197],[-127.84367748545391,52.864479983809204],[-127.84391480894874,52.864588357535595],[-127.84415304658232,52.8646961514757],[-127.84438853707745,52.86480511800812],[-127.8446231395003,52.864915210029714],[-127.84485686951699,52.86502644523551],[-127.84509148924558,52.86513653607322],[-127.84532971842584,52.865244336786205],[-127.84557158602853,52.86534982896221],[-127.8458052964556,52.865460497663165],[-127.84602186549603,52.86558376594052],[-127.84620756049297,52.86572433355122],[-127.84635848628137,52.86587889890989],[-127.8464911202738,52.866040477366376],[-127.8465823127866,52.86621223968655],[-127.84674215294488,52.86635769666095],[-127.84695435366896,52.866487192800186],[-127.84712443310818,52.866632488330985],[-127.84723772988539,52.86679885380962],[-127.84735568481383,52.86696514594661],[-127.84750120946667,52.86712372266009],[-127.84771858359885,52.86724361230639],[-127.84794778876365,52.86735714566059],[-127.84818154084029,52.867468374083444],[-127.84841894099274,52.867577858722825],[-127.84865810516177,52.867685073191765],[-127.84889997996555,52.867790558590045],[-127.84914182263962,52.867894931999786],[-127.84940347912394,52.86798441144473],[-127.84967751539902,52.86805856676787],[-127.84984997989707,52.868194297101404],[-127.84992330911324,52.868361289196194],[-127.84998913660029,52.86854857690031],[-127.85002588403096,52.86873071747692],[-127.8500773809057,52.86890926289851],[-127.85027330059353,52.86902779975076],[-127.85054580137691,52.86910926813277],[-127.8508238691669,52.869276398387],[-127.85107719946912,52.869366570319976],[-127.85134847417753,52.86944132137121],[-127.85159033220951,52.869545689634585],[-127.85170631442863,52.86964475003243],[-127.85201530519416,52.86979513165911],[-127.85225719101054,52.869900054150726],[-127.85250710004628,52.86999700285202],[-127.85276148270816,52.87008996157312],[-127.85301769233827,52.87018176100504],[-127.85327115462047,52.8702747331595],[-127.85352469088284,52.87036938059292],[-127.85377011823708,52.870470316286195],[-127.85401379939242,52.87057352994713],[-127.85426282761892,52.87067160987177],[-127.85453049351435,52.87074865262957],[-127.85480528409242,52.87081830048124],[-127.85509030980869,52.87086648758799],[-127.85538696731503,52.87088254702813],[-127.8557183988622,52.87082070027289],[-127.85597140919687,52.87073207560611],[-127.85618149610292,52.87059815930107],[-127.85644299325836,52.87053349605347],[-127.85674923758815,52.870534827884676],[-127.85704333016106,52.87055596356013],[-127.85733694907674,52.87058775079318],[-127.85763315622039,52.87061502144468],[-127.85792501355616,52.87064907702142],[-127.85820296778944,52.87070578023588],[-127.8584547551589,52.87080268683191],[-127.85856410184918,52.87087718410884],[-127.85865894753032,52.87089641773576],[-127.85898810195634,52.87091083317915],[-127.85930742405404,52.87093436211809],[-127.85961113301731,52.87094133154297],[-127.85991129277743,52.870952275295046],[-127.86020455008689,52.87097565830217],[-127.86048295761388,52.8710211302668],[-127.86074860587392,52.87109427206052],[-127.86100132393656,52.87119115857039],[-127.86124083351565,52.87130506841598],[-127.86146404364028,52.87142932476289],[-127.86167068541978,52.87155777106233],[-127.86186638768889,52.87169143023634],[-127.86205484640902,52.87182968777386],[-127.8622369744131,52.871971964270934],[-127.86241640426336,52.872116534174666],[-127.86259399945997,52.872261688892394],[-127.86277065834648,52.87240685818801],[-127.8629510046821,52.87255084779479],[-127.86311776058207,52.87270345543089],[-127.8633277174019,52.87282231353827],[-127.86359174219568,52.872900523705816],[-127.86386745940594,52.87296957106658],[-127.86414771311891,52.87303574787448],[-127.86442255884594,52.873105937724944],[-127.86469836732266,52.87317666767486],[-127.86497599732125,52.87324680311125],[-127.86524191228003,52.87332553565333],[-127.86547264044346,52.87342948764743],[-127.86562755558649,52.873587893639204],[-127.86566252297577,52.87379135672836],[-127.8657003037662,52.87397403253668],[-127.86571745089189,52.874153116920695],[-127.86568501502703,52.87432626249757],[-127.86559003271948,52.87449536093943],[-127.86538925103346,52.874650435825835],[-127.86524054575139,52.87480412789059],[-127.86506958119755,52.874938560329504],[-127.86486012902932,52.87506574735265],[-127.86464214045994,52.875189150462994],[-127.86441559077484,52.875308205033306],[-127.86418421036157,52.87542341682092],[-127.86394891174704,52.875534197387154],[-127.86371150706933,52.87563941493462],[-127.86344795071864,52.875721497121354],[-127.86316494835454,52.87578427435161],[-127.86288357043466,52.87584198522932],[-127.86259913926494,52.87589357395219],[-127.8623117039072,52.875940160698896],[-127.86202320816155,52.8759839655748],[-127.86173360314604,52.87602386837189],[-127.86144198071035,52.87605987449807],[-127.86115031824383,52.87609531555466],[-127.8608596664586,52.87613242582453],[-127.86057104585322,52.876173431110615],[-127.86028360639207,52.87622001289056],[-127.85999718719627,52.87626882872824],[-127.85971071807107,52.87631651470391],[-127.8594232375804,52.876362538991884],[-127.85913282680609,52.87640524599215],[-127.85883948020117,52.87642333726422],[-127.85854133793438,52.87641684220293],[-127.85824533450486,52.87639518390914],[-127.85794892541364,52.876364554529026],[-127.85766545167344,52.876310188487736],[-127.85743005897469,52.87620573015609],[-127.85721958955581,52.87607510412464],[-127.85696134320109,52.87597997377816],[-127.85669234078438,52.875915844045316],[-127.85639811381766,52.87589246715728],[-127.8561072153429,52.875923964668615],[-127.85586243159842,52.87600966101309],[-127.85555947422297,52.876085065499296],[-127.85530757152112,52.87613556687408],[-127.8550063129401,52.87618571671511],[-127.85473337318848,52.87624495165647],[-127.85447088004065,52.876330368462085],[-127.85450165831942,52.87663142438801],[-127.85450694250514,52.87681685741265],[-127.85442858026471,52.876983997613834],[-127.8542383481654,52.87712599925427],[-127.8539956706651,52.877239126538825],[-127.85372472932009,52.877301690363616],[-127.85343690957535,52.87733985832983],[-127.85313926086627,52.87736640586519],[-127.85283974213057,52.877392426117034],[-127.8525471410355,52.87742786930749],[-127.85226508273189,52.877491725891154],[-127.85205999482477,52.8776132154776],[-127.85193090393747,52.87776994335174],[-127.85187908685437,52.877948438004466],[-127.8518701317024,52.87812793430436],[-127.85182950061014,52.87830680865227],[-127.8517085054051,52.87847853723237],[-127.85160003000578,52.8785099562085],[-127.8514415039545,52.87850348550703],[-127.85113849510815,52.878492564245185],[-127.85085610034959,52.87852727735851],[-127.8506455925871,52.87865277747376],[-127.85056395287013,52.87883061093743],[-127.85031462863718,52.87891972952507],[-127.85006304018901,52.879021213854394],[-127.84987290922406,52.87912285142081],[-127.84968245791362,52.879260364686345],[-127.84949704276737,52.87938491172284],[-127.84929160802845,52.87952041810893],[-127.84909548928479,52.87965577755798],[-127.84889742082439,52.87978948138043],[-127.8486831314743,52.879913916206384],[-127.8484506390609,52.88002630621698],[-127.84822293499695,52.88014198335479],[-127.84802486192875,52.880275694628146],[-127.84783062029756,52.88041157827436],[-127.84763838404031,52.88052950355106],[-127.84742594782233,52.88065390678451],[-127.8471869619907,52.88081011386112],[-127.84704421286577,52.88093173533096],[-127.84689691613265,52.881076977306165],[-127.84669467615197,52.881200653935274],[-127.84647157134518,52.88131513420478],[-127.84626517077129,52.881450094013786],[-127.84603586730732,52.88161511418749],[-127.84580707383797,52.881641682201064],[-127.84550838784425,52.88162339645787],[-127.84521631937636,52.88158594071565],[-127.84493635429126,52.88152700493655],[-127.84466066050697,52.88145902478952],[-127.84463335944022,52.88164553332637],[-127.84459748410904,52.88182769251729],[-127.84457643552815,52.88200794205948],[-127.844594323001,52.88218477372732],[-127.84466502688132,52.88235572777546],[-127.8447672166272,52.882522833753335],[-127.84488890222666,52.88268850374587],[-127.84501890603057,52.88285293106232],[-127.84514523769084,52.883018527867115],[-127.84525579634723,52.88318550204956],[-127.84534141417242,52.88335678651897],[-127.84539467272181,52.88353306274201],[-127.84542387375377,52.88371307947238],[-127.84543639239463,52.88389447902182],[-127.8454385729327,52.88407379891085],[-127.84539039346518,52.8842511024182],[-127.84534412319341,52.88442950584196],[-127.84533724242954,52.88461457271434],[-127.845332635636,52.88478782927879],[-127.84535800962185,52.884965108042785],[-127.84546847673714,52.885129832458695],[-127.84559476876011,52.88529431730565],[-127.84573492730526,52.88545633342172],[-127.84588884133746,52.88561365851442],[-127.846054600895,52.88576518362619],[-127.84623396091577,52.885908092196104],[-127.84642958357571,52.88603953546442],[-127.84665163790922,52.886157676665015],[-127.84688916232409,52.88626771872972],[-127.84713307203253,52.88637486208294],[-127.8473742722854,52.88648373344437],[-127.84760273932586,52.88659952123613],[-127.84780752760341,52.8867274553445],[-127.84798322453993,52.88687153985101],[-127.84814075192453,52.88702599838241],[-127.84829460742064,52.887181635393695],[-127.84845936185474,52.88733094004238],[-127.84870375750158,52.88742741895976],[-127.84899903146687,52.88745192061763],[-127.84929690912813,52.88745059844943],[-127.84959185610583,52.88742466045575],[-127.84988125853057,52.8873780756305],[-127.85015287616666,52.88730822076946],[-127.85041556740717,52.88722561916581],[-127.85067419540985,52.8871352341731],[-127.85093091284678,52.88704375770477],[-127.85119152132475,52.88695614724256],[-127.85145316353825,52.88687075286164],[-127.85171476566948,52.886784802510796],[-127.85197640617206,52.88669941591805],[-127.85223901688381,52.88661512543329],[-127.85250264730321,52.88653306917026],[-127.85276919690097,52.8864537642192],[-127.853038641548,52.88637665494315],[-127.85331285132281,52.886302267841664],[-127.8535921923347,52.88623901779929],[-127.85387602421328,52.886193066738706],[-127.85417362133822,52.88616426836487],[-127.85447580789818,52.88615501821715],[-127.8547708813097,52.88617502461635],[-127.85504873752272,52.88622725395259],[-127.85531911572066,52.886300334034615],[-127.85558715020026,52.8863835391899],[-127.85585516113495,52.8864661791514],[-127.85612920567141,52.886537522565476],[-127.85641264786558,52.886589651572294],[-127.85670198605754,52.88662767919974],[-127.8569965560279,52.88665722072337],[-127.8572919024732,52.88668337738187],[-127.85758720083327,52.886708422065055],[-127.85788489211551,52.88672445149754],[-127.85818337528637,52.886737113731826],[-127.85847842984191,52.88675654624248],[-127.85876319998174,52.886796326985994],[-127.8590622234466,52.88688519523924],[-127.85928423785269,52.88698032947091],[-127.85947461068359,52.887097262116],[-127.85963012417083,52.88724725388919],[-127.85969671686568,52.8874289181364],[-127.85988820203114,52.88754976040151],[-127.86017442136287,52.88762257892443],[-127.8604448903791,52.88769732296575],[-127.86071801265751,52.88776867047172],[-127.86099023714637,52.887840587565236],[-127.86125914175965,52.887922080332956],[-127.86152888776878,52.88800132620943],[-127.86180869824278,52.88805518585726],[-127.86212504086454,52.888092772705484],[-127.86240789644731,52.88806699403166],[-127.86271121358607,52.888062188878266],[-127.86298088904557,52.88809714988666],[-127.86320186508034,52.88816818805331],[-127.86341461585701,52.88826402643481],[-127.86371868918073,52.88838306917594],[-127.86390171885117,52.888523095567464],[-127.86407204203607,52.88867060494487],[-127.86423417127334,52.88882216290685],[-127.86439355231282,52.888974894163624],[-127.86455288507815,52.88912649603809],[-127.86470214841867,52.889282185269906],[-127.86484775497004,52.88943905328208],[-127.86499247373298,52.889597056165364],[-127.86513168458556,52.88975683218043],[-127.86528460032599,52.889910776806644],[-127.86546860393892,52.89005134136061],[-127.86568288992753,52.89018190138521],[-127.8659158261255,52.890291978678164],[-127.86619668395076,52.89032675506775],[-127.86649852408235,52.89033037558491],[-127.86679497739873,52.890338555758625],[-127.86664883842832,52.89002084414447],[-127.86670727622007,52.88984560137403],[-127.86683477333717,52.889674310899984],[-127.86701997675483,52.88954470072144],[-127.86730318776219,52.8894847197044],[-127.86758810169457,52.889420783066576],[-127.86782924625052,52.88931437928396],[-127.86806558298264,52.88920469743031],[-127.86829908510236,52.88909393018133],[-127.86854513170942,52.88899306076977],[-127.86879790367827,52.88889712379949],[-127.86905159750002,52.88880117160747],[-127.86930723945751,52.88870686484142],[-127.86956588552731,52.888617558575504],[-127.86982949496303,52.888535463572836],[-127.87009725771865,52.88846282566049],[-127.87038102254013,52.88841571487564],[-127.87067692561514,52.888390264708036],[-127.87097571094445,52.8883670188323],[-127.87126435491881,52.88832486812826],[-127.87154462040104,52.88826156059498],[-127.87183566530229,52.88823170093033],[-127.8721322652677,52.88822249453744],[-127.8724311102575,52.888221663410356],[-127.8727284485975,52.88822925832565],[-127.87302418731868,52.88824248283294],[-127.87331919900222,52.88821816114234],[-127.87359970703515,52.8881604496427],[-127.87387609809787,52.88809382633198],[-127.87416315930277,52.88803712998441],[-127.87436902397236,52.887912218165475],[-127.87448566458195,52.887748938497694],[-127.87443138231231,52.8875732552194],[-127.87435538816979,52.88739062724295],[-127.87436288256632,52.88722236181931],[-127.87459625888366,52.88710934155552],[-127.87481415656842,52.88698312492241],[-127.8750111651642,52.88684770824603],[-127.87520532460304,52.88671121567895],[-127.87539565268625,52.886571976958315],[-127.87557936119136,52.88643061052254],[-127.8757526292276,52.8862849174807],[-127.87590698310653,52.88613224410366],[-127.87603093280525,52.88596604797044],[-127.87614353432963,52.885795539907114],[-127.87626755592169,52.88563101929031],[-127.87642398849857,52.88548336080151],[-127.87662505183341,52.88535572321128],[-127.87685556408147,52.88524162281609],[-127.87710422823572,52.88513788586506],[-127.87736065498771,52.88504131522709],[-127.87761633024577,52.884948674939906],[-127.8779082958036,52.88489805147676],[-127.87816283409477,52.884822242766376],[-127.87828386395913,52.884653283643445],[-127.87836936702202,52.884480964110615],[-127.87850847395704,52.88432068366954],[-127.87858097572119,52.884149136644375],[-127.87859344217078,52.88396733915719],[-127.87865651649822,52.88379314472415],[-127.8787785876409,52.883626966224526],[-127.8789424217859,52.88347862068076],[-127.87916998637257,52.883361208501015],[-127.87941109262707,52.883255345142985],[-127.87965998604501,52.88315720359901],[-127.87992036302174,52.883066159737915],[-127.88019217458083,52.88298110225812],[-127.8804449590238,52.88288682465713],[-127.88064910268355,52.88276641219503],[-127.88079861902924,52.882610446031435],[-127.88090355289256,52.88243558033466],[-127.88096753796138,52.882261360767906],[-127.88096986689702,52.8820819668107],[-127.88094970587329,52.88189956975584],[-127.88094826431437,52.881719115111146],[-127.88094590997467,52.881539240025454],[-127.88091106280568,52.88136156182005],[-127.88081602793802,52.88119100751454],[-127.88068048279263,52.88103063406808],[-127.88067796951842,52.88076276003449],[-127.88072115667576,52.8805810352448],[-127.88093468200704,52.88048345640591],[-127.8812306326544,52.88046078474909],[-127.8815081543381,52.88052639982486],[-127.88176015162645,52.88062549627714],[-127.88193108156386,52.88076512441822],[-127.88206198672222,52.88092557080109],[-127.88226787292554,52.881055670937755],[-127.88248831308105,52.88117769078914],[-127.88273754320491,52.88127739449259],[-127.88292968458174,52.88141219756499],[-127.88309825871146,52.88156138563891],[-127.8832914146865,52.88169785783679],[-127.88349822113753,52.88182737615864],[-127.88370321820106,52.88195805306906],[-127.88391092544211,52.88208700024339],[-127.8841231442174,52.8822125118089],[-127.88434441943983,52.882332272927556],[-127.88457561431626,52.88244458375585],[-127.88481404006717,52.8825523032502],[-127.88505695229631,52.882656022413826],[-127.88530256491619,52.882757455818606],[-127.8855499748494,52.88285773891359],[-127.88580182160564,52.882952901428325],[-127.8860563690695,52.88304578709246],[-127.88630911633379,52.88314037809132],[-127.88656463808663,52.88323435905959],[-127.88678492840303,52.88335245452246],[-127.88697813862537,52.883490031973025],[-127.88715216859838,52.8836357728505],[-127.88743473144635,52.883730438864575],[-127.88769827766134,52.883816450696465],[-127.88797372234126,52.88387647933019],[-127.88827906596234,52.883876059072094],[-127.88857114242673,52.8838915448969],[-127.88880114622575,52.883997705842944],[-127.889007480017,52.88413675515597],[-127.8892500391713,52.88423206866034],[-127.88954196531525,52.884264925259856],[-127.88984198436656,52.88429149012821],[-127.89012289308732,52.88434862799938],[-127.8903995907476,52.884415921760564],[-127.89067535150639,52.884483229949666],[-127.89095628766354,52.884540930395026],[-127.89125095107825,52.884572617789615],[-127.89153865975537,52.88461507016746],[-127.89182846089692,52.88468383574126],[-127.89202012390106,52.88480685728187],[-127.89212159206642,52.88497449251363],[-127.89219387710764,52.88515549314509],[-127.89226775943851,52.88533085413441],[-127.89232958028661,52.88550697418913],[-127.89239787184421,52.88568186906055],[-127.89247827630223,52.88585713387068],[-127.89257622633714,52.88602930922818],[-127.89273269070027,52.8861770018509],[-127.89294125901965,52.886303112702315],[-127.89317359542896,52.88641931659603],[-127.89340494550602,52.886534414946134],[-127.89362813000825,52.88665412830181],[-127.89385672398133,52.88676983515352],[-127.89409963245753,52.886872415182374],[-127.89435859177267,52.886959042352544],[-127.89462655713822,52.88703879793996],[-127.89489183942268,52.88712083813702],[-127.89515630926203,52.887205688814795],[-127.89541904415319,52.88729337381967],[-127.89564744705876,52.88740459643068],[-127.89584330351789,52.88753763312769],[-127.89602557182495,52.88767930049105],[-127.89620247322776,52.88782553806587],[-127.89637843799456,52.88797179048852],[-127.89656167292237,52.88811400642457],[-127.8967576603701,52.88824984646372],[-127.89696734848131,52.888379860221264],[-127.89719860943073,52.888492145803575],[-127.89745833345339,52.888574835028344],[-127.89774045307765,52.88863754053602],[-127.89801812847884,52.888704801051055],[-127.89827445790968,52.88879482520853],[-127.89852116018444,52.88889845606114],[-127.89874712024674,52.88901699415554],[-127.89893748629521,52.88915180046561],[-127.89910515926748,52.889299859837436],[-127.89925915913102,52.88945430973303],[-127.89941321005217,52.889609879587205],[-127.89957817770761,52.88975966795914],[-127.89976324194633,52.88990072850787],[-127.89997105138059,52.89002964642847],[-127.90018795186825,52.89015393314054],[-127.9004183430009,52.890267347598915],[-127.90067460183808,52.89035512584805],[-127.9009505672056,52.89042577021223],[-127.9014773257556,52.89056578713604],[-127.90175309380216,52.89063194891364],[-127.90203071331551,52.89069751512971],[-127.90230737096448,52.89076254025656],[-127.90258497769422,52.890828114361156],[-127.90286078886223,52.89089482889536],[-127.90313573824166,52.89096324270073],[-127.90341068850394,52.891031655860324],[-127.9036865126225,52.891098933257595],[-127.9039640884908,52.891163383679725],[-127.90424414835886,52.891221058363364],[-127.90453291321347,52.891265148560436],[-127.90482247628454,52.89130641818409],[-127.90519761605901,52.891303703125836],[-127.90549435522325,52.89129720855586],[-127.9057854222907,52.891267829495455],[-127.90606977864982,52.89121334084773],[-127.90635204757068,52.891153836432416],[-127.90663972749873,52.891111058339646],[-127.90693382717777,52.89108723214397],[-127.907229140058,52.89106954645716],[-127.90752556635447,52.89105576989032],[-127.907822990932,52.89104366233577],[-127.90812041493916,52.89103154506747],[-127.90841680090652,52.89101721089115],[-127.90875409159256,52.89100108197324],[-127.90900707325613,52.890973999097476],[-127.90930073372787,52.890940085208285],[-127.90958829394451,52.8908950597989],[-127.90986442066375,52.890823315743205],[-127.91013202272656,52.89072760383459],[-127.91040103046603,52.89066326502448],[-127.91068429238365,52.89066763010147],[-127.91097670642537,52.890709959275036],[-127.91126553151817,52.890775886779146],[-127.9115371738565,52.89085330280138],[-127.9117818582933,52.89095245527915],[-127.91201243542041,52.8910692074728],[-127.91224748294366,52.89118196755366],[-127.91250648039043,52.89126799892062],[-127.9127885896878,52.891329548053044],[-127.91306263477664,52.89139795364735],[-127.91331192052684,52.89149590716483],[-127.91354165742418,52.89161435607315],[-127.9137348658818,52.89174909290075],[-127.91388805490249,52.89190465859159],[-127.9139925505256,52.89207502457922],[-127.91404603872864,52.89225014874097],[-127.91407738666817,52.89242956121879],[-127.91409760388999,52.89261026688584],[-127.9141196722184,52.89279038638896],[-127.91415651333486,52.89296802341136],[-127.91435951991176,52.893092510853016],[-127.91463286765942,52.8931659732128],[-127.91491052349684,52.893231508920266],[-127.9151934212574,52.89328967667841],[-127.91547185113599,52.89335184448478],[-127.91573997157239,52.89343322740733],[-127.9159867431726,52.893536821317994],[-127.91615515368412,52.8936786842598],[-127.91624596459144,52.893854885177056],[-127.91628194279478,52.89403365662373],[-127.91629755028784,52.894215001997324],[-127.91637682840613,52.894383534861404],[-127.91654839541843,52.89453319269884],[-127.91669603195663,52.8946894102685],[-127.91684911614364,52.894842166926615],[-127.91678575722871,52.895048340110165],[-127.91669648949764,52.895216822033895],[-127.91649190365108,52.89534739289078],[-127.91634408244548,52.8954977720327],[-127.91644278671345,52.89566319019719],[-127.91668944672946,52.89576397760015],[-127.91694156552194,52.89586187753258],[-127.91719289870302,52.89596315270117],[-127.91734002783441,52.896107602888804],[-127.91736408420853,52.896290496175155],[-127.91734703326112,52.89647013176749],[-127.917333493003,52.89662448345529],[-127.91740736621259,52.89690016214535],[-127.91755596794896,52.896973966008844],[-127.91783097527752,52.897000868847236],[-127.91805892877402,52.89712045928417],[-127.91824678452487,52.897259204114214],[-127.91838614420588,52.89741723155965],[-127.91850633288549,52.89758397450543],[-127.91860249323983,52.89775448127477],[-127.91874185586023,52.89791250825015],[-127.91890965756033,52.898061103133124],[-127.9190875028474,52.8982050499434],[-127.91926628740659,52.89834898116219],[-127.9194395754696,52.89849524379817],[-127.91961568910183,52.89864201607037],[-127.91978720911038,52.89878999302736],[-127.91994211500867,52.89894159496858],[-127.92001038996587,52.89911311184775],[-127.92007050965107,52.89928981074136],[-127.92019159780088,52.89945541629543],[-127.92037662088688,52.89959308307156],[-127.92059549089251,52.89971730100667],[-127.92073665266946,52.8998736103093],[-127.92082152489978,52.90000001626921],[-127.92084848937215,52.90004049624585],[-127.92095940332683,52.90020738817756],[-127.92104538513831,52.90037918016969],[-127.92104227526276,52.90055802336704],[-127.92102899645616,52.90073871860858],[-127.92104176643241,52.90091843232493],[-127.92112686200254,52.901091350702345],[-127.92134109590246,52.901215643027825],[-127.92160470705261,52.90129877280135],[-127.92188241213219,52.90136430092288],[-127.92215839775466,52.90143265447741],[-127.92241933851486,52.901518624081376],[-127.92266428671877,52.90162167828906],[-127.92288028802253,52.90174369702673],[-127.923065531641,52.90188583104268],[-127.92324705408306,52.902028034594714],[-127.92342039586958,52.90217484662935],[-127.92356070388551,52.90233229652115],[-127.92365499336789,52.9025022647863],[-127.92387920857188,52.90262021946887],[-127.92414189520174,52.90270335883081],[-127.92441172493619,52.90277965483901],[-127.92468155563715,52.902855950224605],[-127.92495225995383,52.90293110972145],[-127.92522204194655,52.90300628370537],[-127.92548921760984,52.903085427679166],[-127.92574129865473,52.903181067994616],[-127.92598892235713,52.90328126471029],[-127.92622753322925,52.903387769454746],[-127.92646362452444,52.903500484892746],[-127.92668887780626,52.903620668292625],[-127.92687026729081,52.9037594966786],[-127.92700962954216,52.90391639311499],[-127.92712706037372,52.904082616608775],[-127.92723533667797,52.90425235294042],[-127.92734723547923,52.90441978784026],[-127.9274591607111,52.90458778717321],[-127.9275229402683,52.90476217137823],[-127.92755059066553,52.90494107556839],[-127.92755969148075,52.905121404718685],[-127.92755385994512,52.90530142255832],[-127.92753496125263,52.90548052457207],[-127.92750487852888,52.905659818809376],[-127.92747012351606,52.905838624606325],[-127.92743630644772,52.906017414998274],[-127.92740247420281,52.90619620560477],[-127.92736213353565,52.906375102825834],[-127.92731903271556,52.90655460124206],[-127.92727405543357,52.90673413933096],[-127.92723092873527,52.90691308208002],[-127.92718964840867,52.907091994535755],[-127.92715489090405,52.90727080008094],[-127.92712665630374,52.90744949872161],[-127.92710862754987,52.90762746514949],[-127.92710269238324,52.90780524238629],[-127.92711350150654,52.907982180299456],[-127.92715502088946,52.90815861504814],[-127.92722260415552,52.90833462273389],[-127.92730781588168,52.908509220550535],[-127.92740319883146,52.90868196568138],[-127.92750133226062,52.90885355364582],[-127.92759845191725,52.909023472181424],[-127.92770389192708,52.90919213329757],[-127.92781945272901,52.9093578215119],[-127.92794424722446,52.90952168128483],[-127.92807730136228,52.9096826075743],[-127.9282167633208,52.90984117774794],[-127.92836082293337,52.90999856037502],[-127.92851043264828,52.910154721888816],[-127.92866551280233,52.91030856053116],[-127.92882701584547,52.91046004272863],[-127.92899489188737,52.910608066229976],[-127.92917098703305,52.9107525827976],[-127.92935711317257,52.91089245963455],[-127.92955147338785,52.9110288292141],[-127.92975406852217,52.91116170941867],[-127.92996022092728,52.91129115901478],[-127.93017184818599,52.91141772046205],[-127.93039340457099,52.911537392723666],[-127.93062220634586,52.911652461749654],[-127.93085282039173,52.911766379616765],[-127.93107981360457,52.9118825984425],[-127.93129596746726,52.91200628565141],[-127.93150125598355,52.912136867786884],[-127.93171195365142,52.912263441805266],[-127.9319434213682,52.912375666589796],[-127.93219202587694,52.91247526971425],[-127.93245129476149,52.912563496309325],[-127.93271851818562,52.912642058843346],[-127.93289592767509,52.91287679178983],[-127.93297718298803,52.91304528067371],[-127.93291939032797,52.913208772359525],[-127.93276547344597,52.91336880337279],[-127.93259083473596,52.9135235607019],[-127.93240054763685,52.91366232506448],[-127.93221119770377,52.913801073694586],[-127.93208244465049,52.91396124637727],[-127.93197926637272,52.914130531694084],[-127.93187892315267,52.91430088234412],[-127.93176348068044,52.91446700586908],[-127.93161687547331,52.914624108119135],[-127.93138926328734,52.914741063894915],[-127.93115394796777,52.91485254075964],[-127.93102878449068,52.915009846216634],[-127.9309605210335,52.91518920212924],[-127.93092952232831,52.915368511324644],[-127.93095445918074,52.915548579404245],[-127.93096541307374,52.9157283119952],[-127.93093625040262,52.91590702601912],[-127.93089589018439,52.91608536778719],[-127.9308583404147,52.916264219395586],[-127.93085998391987,52.91644410471493],[-127.93080646138567,52.91661985547256],[-127.93071458137813,52.9167923167222],[-127.93058961375044,52.9169541020948],[-127.93043921044047,52.917109587769495],[-127.9302878671429,52.917265079673506],[-127.93014310893587,52.917422149265825],[-127.9300087764977,52.917582975518606],[-127.92988293104705,52.9177458953553],[-127.92979283060482,52.917916640527146],[-127.92973470477096,52.9180935870148],[-127.92965495361335,52.91826640422634],[-127.92955456616893,52.91843619686946],[-127.92947856348256,52.91860951739849],[-127.9294278942263,52.91878689734242],[-127.92939311139519,52.9189651466676],[-127.92936865350218,52.91914490362516],[-127.92935535346717,52.919324477587544],[-127.92936720003836,52.91950363917305],[-127.9293827962405,52.91968329525531],[-127.92938629623431,52.91986315864123],[-127.92939536752911,52.9200429216811],[-127.92940631640371,52.92022266288062],[-127.92942281150874,52.92040174814194],[-127.92944865790678,52.92058123604086],[-127.92946517891605,52.92076088580762],[-127.92945855634555,52.920943713021025],[-127.92947040380143,52.92112287441757],[-127.92953248035539,52.92127934865536],[-127.92969370798154,52.921403374538215],[-127.92982459677842,52.921515567102205],[-127.93006708822679,52.92170551800417],[-127.93025345764794,52.92184930824254],[-127.93035710325643,52.92201856074718],[-127.93043670819668,52.9222123039998],[-127.93055325356416,52.9223779728003],[-127.9306634271513,52.922547117916274],[-127.93076720289706,52.92271916585355],[-127.93087464259513,52.92288946762873],[-127.93099576386257,52.923053383917505],[-127.93114148669987,52.92320513060508],[-127.93132723980486,52.92331473515701],[-127.93158613372746,52.92343435750034],[-127.93185038515756,52.92352810000191],[-127.93211097462539,52.92362358799503],[-127.93238617387088,52.92371210966821],[-127.93258977028077,52.92382479114219],[-127.93260994330907,52.92400212945544],[-127.93260736360939,52.92419161612851],[-127.9326857370488,52.92435791873019],[-127.93292910606398,52.924463776559975],[-127.9331525748332,52.92458284752346],[-127.9333188986754,52.92473649508948],[-127.93342337475079,52.92490292435094],[-127.93339434310138,52.92508443383445],[-127.9334004431526,52.925259770183075],[-127.9335436755692,52.9254177157338],[-127.93372913431571,52.925561515563764],[-127.93395354975112,52.925680569501395],[-127.9341896580698,52.92579047202627],[-127.93443738224124,52.925889529425774],[-127.93468780686308,52.92598629997577],[-127.93491036476527,52.92610538267806],[-127.93512843875503,52.92622846659222],[-127.93535095899463,52.926346993102186],[-127.93558436456482,52.9264586143283],[-127.9358204814078,52.92656851352933],[-127.93605206299507,52.926681284829804],[-127.93627567972783,52.92680315451618],[-127.93644535530946,52.92694776589055],[-127.93655819753627,52.92711349876434],[-127.9366582471612,52.927284481945215],[-127.93676654381242,52.927452522395164],[-127.93687300449042,52.92762115792964],[-127.93698130325348,52.92778920710833],[-127.9370996860078,52.9279537183148],[-127.93724105338529,52.92811113417761],[-127.93744837702037,52.92824335866115],[-127.9377238271235,52.928316170545905],[-127.93801889918207,52.92836960214559],[-127.93821043321063,52.92848246386298],[-127.93827563981651,52.92866579422025],[-127.93836190160083,52.928840921967044],[-127.93846005974788,52.92901137877385],[-127.93858319225806,52.92917749621994],[-127.9387396993133,52.92933970081871],[-127.93898339255169,52.929410791071525],[-127.93928401006988,52.929422087336036],[-127.9395936601787,52.92942707310874],[-127.93988596073378,52.929460368344614],[-127.94017333774082,52.92950831666451],[-127.94045986835208,52.929557964189385],[-127.94074117978784,52.92961609990062],[-127.94101230183834,52.92969570147313],[-127.94114708603956,52.929851535444946],[-127.94125285056741,52.930024662524865],[-127.9414419016381,52.93016446341523],[-127.94172365018964,52.93019120241928],[-127.94202217884406,52.93015657536371],[-127.94231894247389,52.930144387150015],[-127.94261148035439,52.93018272066264],[-127.94288731323805,52.93024318371566],[-127.94308649494359,52.9303800168591],[-127.94331344158763,52.93049228582386],[-127.94358425221725,52.93056516090857],[-127.94386669260874,52.93062719853884],[-127.94414739888826,52.93069206209687],[-127.94441108355925,52.93077177886719],[-127.94466349878954,52.93087017283938],[-127.94490532808896,52.930981636894906],[-127.94512259416429,52.931106402108384],[-127.9452958374998,52.93124645826558],[-127.94540588780997,52.93141110815158],[-127.94548669883974,52.93158856300301],[-127.94558494305574,52.93176013370702],[-127.94571637269009,52.931923299926375],[-127.94588888776556,52.932067860125436],[-127.94611695417797,52.932184033214135],[-127.9463386888677,52.932304229503195],[-127.94653141556495,52.932442284708316],[-127.94669122924313,52.93259433566918],[-127.9468216248059,52.93275528481065],[-127.94694558586733,52.93291801722396],[-127.94706498604462,52.933083066902476],[-127.94718161098173,52.93324871837465],[-127.94729641479624,52.93341496482999],[-127.9474102806709,52.93358122669036],[-127.94752231049142,52.933748083789105],[-127.9476159438088,52.933920285086806],[-127.94772514784998,52.93408662377571],[-127.94790231712332,52.934230539101684],[-127.94810235500752,52.934365107886144],[-127.94822556606529,52.93453177028117],[-127.94825979884745,52.9347094381527],[-127.94812645554474,52.9348713882037],[-127.9478937206701,52.934979490421455],[-127.94760859676818,52.935043055227865],[-127.94732448797308,52.93510828847306],[-127.94703841297037,52.935171311599134],[-127.94679181390711,52.935261705356346],[-127.94661446465017,52.93539915504509],[-127.94648039388434,52.93556559893662],[-127.94635374771308,52.93573135489892],[-127.94622436492466,52.93589827691156],[-127.94617353996655,52.93607118168784],[-127.94619005002342,52.936248586903865],[-127.94623555552451,52.93642831061092],[-127.94628941120726,52.93660733124703],[-127.94633761686812,52.93678476830212],[-127.94638674693901,52.936962190039104],[-127.94644052728614,52.93713953484502],[-127.9464989216345,52.93731568234527],[-127.94656474282267,52.93749115098636],[-127.94664441582586,52.93766358359719],[-127.94673890116198,52.93783408523646],[-127.94684080318227,52.93800335212694],[-127.94694362963725,52.93817259466724],[-127.94704275678183,52.938342463271894],[-127.94714923415549,52.93850996826602],[-127.94727692431306,52.9386726383707],[-127.94742673004788,52.938829337617236],[-127.94757649655345,52.93898548132506],[-127.94770410213404,52.939145910432245],[-127.94775230166344,52.93932334687975],[-127.94776435921479,52.9395053002307],[-127.94772679786873,52.939682478702146],[-127.94757538619909,52.939836870562324],[-127.9474155313936,52.939990289873606],[-127.94734979139417,52.94016288546848],[-127.94733201296464,52.94034477630992],[-127.94730944088452,52.940523939521846],[-127.94728502084638,52.94070314224341],[-127.94725032031674,52.94088195002615],[-127.94721373056224,52.9410602240572],[-127.9471846445953,52.94123950386746],[-127.94716207142031,52.94141866695343],[-127.94714980434735,52.94159878947897],[-127.94716080791221,52.94177796210854],[-127.94718121487291,52.94195922111403],[-127.9472007491478,52.94214161549986],[-127.9472286493986,52.9423233065178],[-127.94727131232291,52.94250195539092],[-127.94733890535579,52.94267515198948],[-127.94743872726737,52.942839403672394],[-127.94758281542627,52.94299339025871],[-127.9477564233148,52.94314017144358],[-127.94794387050415,52.94328391648892],[-127.94812950704498,52.94342881217261],[-127.9482948547303,52.94357852720552],[-127.94841801647905,52.94374351276766],[-127.94862325411366,52.94386846190344],[-127.94880687837531,52.9440100269589],[-127.94899142802186,52.94415157641609],[-127.9491859775834,52.944287355198895],[-127.94937506716097,52.94442603097553],[-127.94954958537949,52.94457222954755],[-127.94968124989144,52.944719137565976],[-127.94983351369248,52.94488812358449],[-127.94998236029429,52.945043714423726],[-127.95013945672052,52.945196361527174],[-127.95030021893409,52.945347270734835],[-127.95046374430031,52.9454975779519],[-127.95062910823547,52.94564728951847],[-127.95079720947597,52.9457958345367],[-127.95096622511038,52.94594379920184],[-127.95113799338903,52.94609060601476],[-127.95131161085736,52.946237372967374],[-127.9514732798876,52.94638770958387],[-127.95158994786743,52.94655279952097],[-127.951698481179,52.94672362901558],[-127.95185068209811,52.94687075021306],[-127.95213080005131,52.94694065464936],[-127.9516842382211,52.946982243050655],[-127.95153578438635,52.947059252497645],[-127.95145311143223,52.947248944875845],[-127.95143315004167,52.94742358122253],[-127.95137903205486,52.947605518415806],[-127.95135184803519,52.94778532323289],[-127.95134774329645,52.94796026165901],[-127.95136445915256,52.948141580776706],[-127.95145073741683,52.94831502115931],[-127.95156190819176,52.94848244405668],[-127.95169607181742,52.94864275992977],[-127.95184131427669,52.948800650065046],[-127.95197639322961,52.94896038548249],[-127.95208386676697,52.94912843414401],[-127.95217476465713,52.94930067642003],[-127.95226748593151,52.949472323421354],[-127.95238317485484,52.949636307724624],[-127.95253932156508,52.94978785537663],[-127.952723035814,52.94993053392627],[-127.95290858886793,52.95007261673343],[-127.95307856844455,52.95022057136561],[-127.95325399601954,52.950365628490914],[-127.95345588731652,52.950497915722565],[-127.95367771265387,52.95061754127174],[-127.9539122751732,52.95073022927155],[-127.95412582566178,52.95083205590383],[-127.95436405117964,52.950902641629156],[-127.95464912341258,52.95097806299861],[-127.95493284970051,52.95108488404718],[-127.95511282496547,52.951227065062504],[-127.95526807354487,52.95137918011921],[-127.95541238832764,52.95153651640221],[-127.95555122753126,52.95169675034085],[-127.95568914345229,52.951856999452495],[-127.95583254812836,52.95201491530909],[-127.95598514320804,52.95216988040483],[-127.95614235389611,52.95232363869882],[-127.95629308761953,52.95247863432555],[-127.95638278398805,52.95262454625208],[-127.95650879421989,52.95280965340749],[-127.95656549118127,52.952988065412136],[-127.95665082459472,52.95316039672688],[-127.95674722251269,52.95333030218534],[-127.95684823621714,52.953499009891786],[-127.95695114033774,52.9536682510561],[-127.95705215565305,52.95383695855315],[-127.95715043527385,52.95400683239069],[-127.95725240212504,52.9541760798903],[-127.95735530949085,52.954345320632],[-127.9574609946712,52.95451395013967],[-127.95757676886842,52.95467904894462],[-127.95772468718359,52.95483352458144],[-127.95790754178527,52.95497676554698],[-127.95806654145187,52.95512881459503],[-127.95829985937378,52.95545673955932],[-127.95841844243844,52.95562179082895],[-127.95854162673022,52.955785644490376],[-127.95868132775189,52.95594361849612],[-127.95883027138504,52.956099761638725],[-127.9589388581217,52.95627058347003],[-127.95909939452318,52.95641531484872],[-127.95934571252499,52.95651882914247],[-127.95958839248195,52.95662464539584],[-127.95982560045107,52.95673279415194],[-127.96008428257898,52.95682152867199],[-127.960347452219,52.9569062690531],[-127.96061151021102,52.95698986413986],[-127.96087376820518,52.95707517454614],[-127.9611324695113,52.9571639064977],[-127.96138222559843,52.95726119857817],[-127.96162130547869,52.95736931263459],[-127.96185133658011,52.95748373777138],[-127.96203503799104,52.95762472545689],[-127.96219223902636,52.95777735506574],[-127.96234482626072,52.9579311912794],[-127.96249468871102,52.95808674966528],[-127.96264456716794,52.95824230759735],[-127.96279626960434,52.9583972699778],[-127.96311333756188,52.95867951629687],[-127.96328338660162,52.95882744646683],[-127.96344882181299,52.95897658324942],[-127.96360418019039,52.95912980670236],[-127.96374487604167,52.959288314289154],[-127.96386625364015,52.959452757627375],[-127.96397007243775,52.95962084757257],[-127.96406098914393,52.95979195947823],[-127.96414358931241,52.95996489593402],[-127.96422062404618,52.96013848114299],[-127.96429395720975,52.96031268402807],[-127.96433111802695,52.960491418028575],[-127.9644173968043,52.9606631719441],[-127.96448053913613,52.96083866562498],[-127.96453812735204,52.961015381836184],[-127.96459570488031,52.96119153322234],[-127.9646560713922,52.96136763804566],[-127.9647210648252,52.96154310067816],[-127.96480180708703,52.961716067584085],[-127.96483615664144,52.96189428326405],[-127.9648575106064,52.9620738456509],[-127.96487607577305,52.962253445574696],[-127.96489462659832,52.96243305468566],[-127.96489172261482,52.96261245674197],[-127.96485894225872,52.96279123623433],[-127.96481870544629,52.962970140083094],[-127.96479338071985,52.96314879513388],[-127.96483710345053,52.96332797527679],[-127.96496298307795,52.9634884144015],[-127.96514591043076,52.96363220815711],[-127.96533151339352,52.96377315907658],[-127.9655153309469,52.96391581646171],[-127.96568175895528,52.96406548953923],[-127.9657280422835,52.96423958676409],[-127.96574020988272,52.96442210004596],[-127.9658310921933,52.9645920899945],[-127.96592012187766,52.964762666784935],[-127.96593405101878,52.964942908686425],[-127.96594143756518,52.96512270377408],[-127.96594135226029,52.965302614585575],[-127.96591416670596,52.96548130073965],[-127.9658682875196,52.965659177902545],[-127.96586635306167,52.96583912848031],[-127.96592022503506,52.96601589674703],[-127.96599078688513,52.96619015346426],[-127.96607062926446,52.96636369026376],[-127.96615602802129,52.96653601329702],[-127.96624138645345,52.96670777197242],[-127.96632030617593,52.96688132398338],[-127.96638903256847,52.96705616705722],[-127.96638708533631,52.96723611774097],[-127.96623186305263,52.96738947315653],[-127.96601747592106,52.96751411495407],[-127.96582603522063,52.96779194448974],[-127.96587071784812,52.96797167284258],[-127.96598014740165,52.96813911099918],[-127.9661715466905,52.96828388271185],[-127.9663748765833,52.96842453609998],[-127.96650217517784,52.968574861138954],[-127.96645435290941,52.96875108470303],[-127.96635642730108,52.96893319338231],[-127.96635394222463,52.9690004922458],[-127.96646651922725,52.969074838011515],[-127.96667494368266,52.96920419628454],[-127.96671280285724,52.96937731243157],[-127.96671660489463,52.96956052080387],[-127.96671764402227,52.96974434024646],[-127.96673256961489,52.96992568591598],[-127.96680118408572,52.97009828849638],[-127.96692628126361,52.97026154526397],[-127.96707075506052,52.97041998555542],[-127.9672445011169,52.97056617129035],[-127.96740445455785,52.97071651495474],[-127.96751300938955,52.97088508719408],[-127.96758821325722,52.97105870019646],[-127.96761803214393,52.97123923196603],[-127.96757486549349,52.97141538693691],[-127.96749332940408,52.97158881086083],[-127.9674099286357,52.971762274807965],[-127.9673236857491,52.971934656206905],[-127.96726281241301,52.97211110665204],[-127.96726270697854,52.972290461143324],[-127.9672822376546,52.97247060866454],[-127.96725594101814,52.97264815857641],[-127.96717910681878,52.97282262453137],[-127.96714555889416,52.97300477926846],[-127.96726022218886,52.97316428196027],[-127.96743777584837,52.97331152473921],[-127.967607935771,52.97346057665965],[-127.96778365307514,52.97360840559489],[-127.96795197659742,52.97375804369832],[-127.96809444643846,52.97391316224475],[-127.96815103845245,52.97408764161144],[-127.96814081909326,52.974269971781766],[-127.96810894209254,52.97444817094979],[-127.96806684336939,52.974627105800124],[-127.96802096332028,52.97480498282237],[-127.96800963672801,52.974983403566945],[-127.96806541990384,52.97516070325765],[-127.96815915001066,52.97533120823924],[-127.96826212583817,52.975499872767166],[-127.9683632636051,52.97566912390283],[-127.96846624106044,52.97583778821822],[-127.96857383646136,52.97600525432777],[-127.96868882440945,52.97617147585744],[-127.96880288840086,52.976337712713175],[-127.96890400458335,52.97650640773729],[-127.9689829533574,52.976679956942185],[-127.96905633497046,52.97685416408788],[-127.96901987819538,52.97721515497719],[-127.96894073757043,52.97738013652356],[-127.9687460763583,52.977508379997204],[-127.96849651907245,52.97762016107175],[-127.96827181252495,52.97774441290431],[-127.96808705230276,52.97788537625326],[-127.96802215881125,52.97805572380856],[-127.96799977292365,52.97823713577506],[-127.96799330707749,52.9784199587482],[-127.9679913656992,52.9785998992689],[-127.96800435752442,52.97877959931281],[-127.96801454447001,52.97895933721947],[-127.9680343667989,52.97914564883815],[-127.96803817540376,52.97932885609319],[-127.96791606633727,52.97947270025647],[-127.9676404727487,52.97956641385012],[-127.96737076435943,52.97964602112236],[-127.96708778618809,52.97970118840352],[-127.96678913702253,52.97970001311759],[-127.96649727351796,52.979724496688995],[-127.96621851562672,52.97979024491736],[-127.96593052867742,52.97983820230515],[-127.96564040656246,52.979880033862436],[-127.96537443320003,52.97996013910506],[-127.96519717962752,52.98010209315346],[-127.96510900545111,52.98027394785741],[-127.9650818068271,52.9804526322121],[-127.96507429959163,52.98063323003897],[-127.96508820425002,52.980812905799084],[-127.96517444944169,52.98098297245423],[-127.96554412891642,52.98078456832296],[-127.96576145160232,52.980661557484204],[-127.9659855149623,52.98054292650852],[-127.96621049082488,52.9804237148926],[-127.96643151364685,52.98030008499432],[-127.9666881374414,52.98021957744808],[-127.96698833612697,52.98019382440599],[-127.96728406154647,52.98017207308497],[-127.96758090817968,52.98015423010047],[-127.96788359940747,52.98012170744113],[-127.9681655464083,52.98012484489893],[-127.96839167784945,52.98023260645407],[-127.96860049980396,52.98036923651464],[-127.96879732385159,52.98050886457808],[-127.96896104982058,52.980659142914774],[-127.96912664135591,52.98080938088598],[-127.96929673342511,52.98095618953269],[-127.96946870600911,52.98110295754177],[-127.96964160515766,52.98124971878635],[-127.96981447934031,52.981395915243056],[-127.96998738045836,52.98154266699397],[-127.97015476626122,52.98169119662163],[-127.9703221794,52.98184029051942],[-127.97049414418049,52.981987057203945],[-127.9706780058692,52.98212858489154],[-127.9708619726466,52.98227235244187],[-127.97105413239652,52.98241149887088],[-127.97126249119952,52.98253804356169],[-127.97149614362178,52.98264622952384],[-127.97175048305041,52.982737819599265],[-127.97201660006371,52.98282192138385],[-127.97228273304904,52.98290602231366],[-127.97254829101242,52.98299797892917],[-127.97264693218756,52.98309272933978],[-127.9726365128264,52.98333054506538],[-127.97265510521432,52.98351014171799],[-127.97267560382555,52.9836902713984],[-127.97265681965678,52.983868816769146],[-127.97261002381602,52.984046710077735],[-127.9725481889346,52.984222613186354],[-127.97246851396511,52.98439601696351],[-127.97238226596147,52.984568400758825],[-127.97231289164918,52.98474275291315],[-127.97227733539295,52.98492157878884],[-127.9722614059553,52.98510119709797],[-127.9722594823359,52.98528113696924],[-127.97226036411485,52.9854610388368],[-127.9722500295045,52.98564056344604],[-127.97222568826083,52.98581975748857],[-127.9721929208511,52.98599853652927],[-127.97215732234184,52.986176806925776],[-127.97210865680547,52.98635473100182],[-127.97207210637585,52.98653245229643],[-127.97207298697208,52.98671234507033],[-127.97205718613165,52.986894767832894],[-127.97192159250262,52.987050041505796],[-127.9717149470405,52.987182407907035],[-127.97146670125746,52.987282962399185],[-127.97128566658306,52.98742443207536],[-127.97112285007094,52.98757624123408],[-127.97097518693691,52.98773283647696],[-127.97085402433267,52.987897399905],[-127.97075925862444,52.98806769144369],[-127.97067866979768,52.988241664640874],[-127.97058387644563,52.988411391485016],[-127.97044563810086,52.988570070205206],[-127.97028284037152,52.98872244261837],[-127.97015303765104,52.98888210084767],[-127.97010438679735,52.989060588327455],[-127.97001253541025,52.98923362821438],[-127.96982186461781,52.98936852169794],[-127.96959214408751,52.98948669729671],[-127.96943278453332,52.98963284120974],[-127.96940844036591,52.98981259901133],[-127.96937100242477,52.98999145463723],[-127.96930837604062,52.9901707311095],[-127.96909872648169,52.99027904668861],[-127.96882987801757,52.99035864133329],[-127.96860773987326,52.990479486017605],[-127.96839329513864,52.99060525048985],[-127.96819032620029,52.99073699256934],[-127.96802641597458,52.990886008179395],[-127.96787683893865,52.991042074820484],[-127.96773390047017,52.99120027228924],[-127.96758905500636,52.991357945400644],[-127.96744514816187,52.99151559366547],[-127.96730977140321,52.991675906178536],[-127.9671979617651,52.991841429862184],[-127.96713049719841,52.992017422709665],[-127.96709394721701,52.99219570637818],[-127.967036774164,52.992372083343746],[-127.96697397890071,52.992547998094715],[-127.96694678026267,52.99272668156995],[-127.96694671449491,52.99290659811802],[-127.96702207746814,52.99310318194594],[-127.96695451346213,52.99325675736824],[-127.96694806696449,52.99344014316169],[-127.96687394851301,52.993653793680856],[-127.96681022544549,52.99382972364987],[-127.96674742709124,52.99400563812749],[-127.96668741887437,52.99418150599011],[-127.96663307318082,52.9943584002567],[-127.96658617382407,52.99453517023484],[-127.96655153666458,52.99471454241893],[-127.9665374966391,52.994895247856505],[-127.96654670414591,52.995073879523396],[-127.96658684027312,52.9952553669439],[-127.96667508990852,52.99542764005961],[-127.96683225124906,52.99557634448624],[-127.96704367508923,52.995707329119696],[-127.9672739693239,52.995822305303754],[-127.9675249064113,52.995919557451806],[-127.9677812597935,52.99601279985802],[-127.96802949762419,52.99611234686571],[-127.96828041241947,52.996209041832984],[-127.96854825363064,52.996288074566344],[-127.96882222863904,52.99635860169478],[-127.9690551663122,52.996470167524855],[-127.969250944723,52.996605893423755],[-127.96943486550954,52.99674742181671],[-127.96964169875362,52.99687959956842],[-127.96989946077801,52.99696272550051],[-127.9701858779324,52.99701959034394],[-127.9704465627714,52.997105473085355],[-127.97068681513474,52.99721355069113],[-127.97091833822626,52.99733466009346],[-127.97111138765793,52.997471549567216],[-127.97115743277398,52.99763892050473],[-127.97115701612597,52.99783117302482],[-127.97114636209308,52.99800397579354],[-127.97117998320252,52.99818556168256],[-127.97116858590834,52.99836230461506],[-127.97102745956254,52.998519909926614],[-127.97087888508337,52.99867764853106],[-127.97082445802579,52.99885285992141],[-127.97080018133944,52.99903373684426],[-127.9707411492538,52.999210155039506],[-127.97058866884578,52.999364586672606],[-127.97057172378743,52.99954254305313],[-127.9705660610549,52.99972254372226],[-127.97055385015916,52.99990209784459],[-127.97055839563126,53.00000010837264],[-127.97076347975127,53.00059750242299],[-127.9709577952534,53.00080162718149],[-127.97120300518398,53.001156783109856],[-127.97144599085007,53.001826402942854],[-127.97183222635005,53.00238377450923],[-127.97170221352205,53.002921756476866],[-127.9717923398302,53.00309343822051],[-127.97218171753795,53.00353697647831],[-127.97273858954634,53.00386786820493],[-127.97310859235121,53.0041553616257],[-127.97340568589372,53.004541595721406],[-127.97360644318115,53.004903660240636],[-127.97378838510372,53.005282853420525],[-127.97387345901055,53.00566703087326],[-127.97414922587078,53.00593535695657],[-127.97453228378254,53.00618171778094],[-127.97475186937224,53.00634618041457],[-127.97494411273662,53.0064645773629],[-127.9752690221495,53.006584679256385],[-127.97550825860353,53.00668940174782],[-127.97597709850791,53.006792517906284],[-127.97633918281318,53.00682848869269],[-127.97654710869084,53.0069023477645],[-127.97675398828207,53.00699415898843],[-127.97704890766113,53.00713157292464],[-127.97738615145155,53.007396062986366],[-127.9777941283274,53.00757529547711],[-127.9781129866892,53.00804634405264],[-127.97834252321398,53.0083036709044],[-127.9789947129601,53.00859369297619],[-127.97927178459805,53.00880874563109],[-127.97978183025383,53.009153842400856],[-127.98033995601553,53.009428622569786],[-127.98090345953362,53.00951836442259],[-127.98156260199933,53.00949607973399],[-127.98200950808926,53.00952835718411],[-127.98243158556141,53.00958851781554],[-127.98273852133715,53.00956262413371],[-127.98318814484752,53.00945305744352],[-127.98389464279805,53.00944509135655],[-127.98462729230575,53.00933748239049],[-127.98561452987936,53.00940269002085],[-127.98662175637007,53.00959590456378],[-127.98773307443844,53.009917940789435],[-127.98831486582517,53.01017827793626],[-127.98853870973016,53.0106912557903],[-127.98856943103884,53.011387396218275],[-127.98829628737833,53.01199563155997],[-127.98811747624332,53.01260450843603],[-127.98812725964372,53.013172658365995],[-127.98813514387204,53.013840047452234],[-127.98811506674984,53.014209173845224],[-127.98810311724793,53.01469193359338],[-127.98809233773332,53.01516011028503],[-127.98801059920397,53.01562835316435],[-127.9880719038505,53.016040388605155],[-127.98799676156982,53.016749520834956],[-127.98801045539281,53.017161793672],[-127.98809992769283,53.01723762983164],[-127.98812672982595,53.017730388790746],[-127.9883538659011,53.018073492941106],[-127.98886098716571,53.0185318062761],[-127.98897230638119,53.01863529669698],[-127.98898617626732,53.01873202799136],[-127.98902052198616,53.019285745640346],[-127.99007069411782,53.01969230776547],[-127.99034871786832,53.019865279619125],[-127.99158121313242,53.020135916574915],[-127.99258522041539,53.02027421233104],[-127.99336004333679,53.02038497821014],[-127.99421707381498,53.02063503083463],[-127.99461786482652,53.020716807287464],[-127.99494658695927,53.020814938522946],[-127.99514583952758,53.02092085475006],[-127.99531610158051,53.021026149132574],[-127.99576462268854,53.02138790390558],[-127.99556638545056,53.0218401967584],[-127.99477359478021,53.02250094209023],[-127.9941282960737,53.022921559195254],[-127.99343397713096,53.023412489750555],[-127.99369855204861,53.02365630895097],[-127.99432168745254,53.02421520818594],[-127.99445184672673,53.02469949183476],[-127.99446746482154,53.02501196766278],[-127.99474123539727,53.02541142957443],[-127.99525242501105,53.02571440280347],[-127.99561861880073,53.026171717681315],[-127.9959902868818,53.02638792963541],[-127.996455554473,53.02664740255692],[-127.99680186213756,53.026920087815846],[-127.99705752126329,53.02709231100201],[-127.99752386076504,53.02729515018253],[-127.99758655405113,53.02739664927593],[-127.99799956991245,53.027597591765904],[-127.99851543437869,53.0277009463312],[-127.99886536940974,53.02783177092533],[-127.99941947209852,53.02829092992949],[-127.99971769483902,53.02857338935867],[-127.99973097413067,53.028577647977436],[-128.00000045260055,53.028666116845876],[-128.00021018237703,53.02873542144624],[-128.00050665090643,53.02872254769134],[-128.00079951975334,53.02869292026377],[-128.00108651432407,53.02863761031202],[-128.00137532037024,53.028600768779896],[-128.00167645473138,53.02862760151749],[-128.00194345691477,53.02856422617774],[-128.00219944500532,53.02846572329595],[-128.00247991094307,53.02839089989162],[-128.00276941996376,53.02830976162251],[-128.00305845123626,53.02823816314859],[-128.00333929437457,53.02819135456946],[-128.00360165118934,53.02818801972077],[-128.00383146552957,53.02828724203552],[-128.00403331318094,53.02844691345336],[-128.00421133114602,53.028596336048686],[-128.00435975557176,53.02875242186096],[-128.00450549436755,53.02891080395969],[-128.00467410182307,53.029058699897625],[-128.0048582811648,53.0292001703084],[-128.00505067053513,53.0293375821155],[-128.0052405589371,53.02948119678061],[-128.0054457164982,53.02961165636039],[-128.00570083352284,53.02969251007768],[-128.00600475999462,53.02971872847578],[-128.0063020424694,53.02970302856294],[-128.00657628518493,53.02963502693423],[-128.00683644130177,53.02954541055795],[-128.00708973691852,53.029449184703225],[-128.00736195137122,53.029377861862024],[-128.00765325843565,53.02933479279179],[-128.00794856432861,53.02931687147325],[-128.00824732530003,53.029312906761895],[-128.00854648380516,53.02931734602056],[-128.0088439869903,53.02932628748282],[-128.00914172901005,53.02934027282146],[-128.00943855701098,53.02935483793281],[-128.00973629942663,53.02936882177098],[-128.01003396229177,53.029381120329546],[-128.01033165205686,53.029393982633216],[-128.01062841600637,53.02940685996837],[-128.01092613286735,53.0294202852681],[-128.01122224783623,53.02943933284317],[-128.01151787337977,53.029467920466224],[-128.0118139626234,53.02948641102036],[-128.01211400749776,53.02947008433713],[-128.01236668321954,53.02938058313239],[-128.0126003935803,53.02926562338039],[-128.01284004875944,53.02915785227556],[-128.01307878813893,53.02905065226926],[-128.01331946126226,53.02894453968698],[-128.01356495231158,53.0288417071621],[-128.01381420231132,53.02873936591537],[-128.0140755029376,53.02865476234413],[-128.01436156539964,53.02859999170421],[-128.01466166727965,53.02856516644098],[-128.01495284848488,53.02855907222294],[-128.01520149294026,53.02866074908316],[-128.0154784556657,53.02872887841108],[-128.01577296725375,53.02875355558106],[-128.01607448960044,53.02874895883186],[-128.01636428894537,53.028713740355784],[-128.01662836532338,53.02862851864168],[-128.01688258607265,53.0285328203804],[-128.01713201270934,53.028434396690926],[-128.01738043218398,53.02833430377975],[-128.0176298565011,53.02823587902646],[-128.01788420550182,53.02814297417884],[-128.01815230201333,53.028063849798784],[-128.01842532299224,53.02799023626229],[-128.01868636998873,53.02790057783143],[-128.01893648395526,53.02777747770002],[-128.0191795730204,53.027683641712436],[-128.019438642324,53.027729093261634],[-128.0195873596183,53.027890204605335],[-128.0195725814651,53.02807036412747],[-128.01953091277463,53.02825491176781],[-128.0194983117548,53.02843369943131],[-128.01946290266454,53.028612535134165],[-128.01943776865778,53.02879119490543],[-128.0194565942074,53.028970788010085],[-128.01948284576886,53.029149689015505],[-128.01951097940383,53.029328557780524],[-128.01953259799475,53.029508094043884],[-128.01955511634296,53.02968705889805],[-128.01958233655103,53.02986650819196],[-128.0196355872875,53.030043260978125],[-128.01966464816797,53.030222113759685],[-128.01966296513228,53.03040261380171],[-128.0196115603198,53.03057892530891],[-128.01953291615456,53.03075233129333],[-128.01954798214987,53.03093142360481],[-128.01954444350997,53.031112520280125],[-128.01953805810052,53.03129253576243],[-128.01965046914876,53.031455954308925],[-128.01978427909424,53.03161732049563],[-128.01979472470853,53.03179761275011],[-128.01985357984964,53.03197426934423],[-128.01990399989842,53.03215051433477],[-128.01989204156735,53.032331190119024],[-128.0198912321878,53.03251055406083],[-128.0199519826403,53.03268774305881],[-128.0200434147425,53.03286160881843],[-128.02017426263856,53.033019662435315],[-128.02039313258825,53.03314258041859],[-128.020601094242,53.033271845508516],[-128.02070537176448,53.0334410070105],[-128.02077148814416,53.033613054962515],[-128.0210173833539,53.03371477606906],[-128.02129208661376,53.033793575404275],[-128.02156765213326,53.033870682416214],[-128.02185214682595,53.033919612329804],[-128.0221449035184,53.03392636926658],[-128.022442209047,53.033910619770275],[-128.0227419609084,53.03388754596377],[-128.0230411719196,53.03387289218662],[-128.02333854992656,53.03387843701092],[-128.02363751011274,53.03389741418163],[-128.02393240914066,53.03392934658128],[-128.0242196198414,53.033976538354295],[-128.02449726425127,53.034038474767364],[-128.024769868773,53.03411226241005],[-128.02503903361176,53.03419226915712],[-128.02530635926433,53.03427287182947],[-128.025573659426,53.03435291836159],[-128.02583917341414,53.03443467189727],[-128.02610381577634,53.034517560757195],[-128.02636757159158,53.03460158520351],[-128.02663222760808,53.03468502865753],[-128.0268968730785,53.03476791572692],[-128.02716147811796,53.03485024692515],[-128.02742612565103,53.034933132799715],[-128.02768826001946,53.03502222197183],[-128.02795031544775,53.03510963500677],[-128.02823356368074,53.03515184555446],[-128.02843594334752,53.035007127849205],[-128.02868803077948,53.034964125585084],[-128.02899919404436,53.03500361241888],[-128.02928644462403,53.035051356321],[-128.02957384443653,53.03510189483446],[-128.02986106976473,53.03514908180547],[-128.03015169664266,53.03518891895705],[-128.03044566848422,53.035220851249406],[-128.0307396021288,53.03525166253278],[-128.03103302382002,53.03529144943355],[-128.0313267140212,53.03533683569686],[-128.03160817460582,53.03532190098899],[-128.03185525736436,53.03521339855437],[-128.03208526634805,53.035099584936184],[-128.0323132726842,53.03498299849871],[-128.03254225792762,53.034867524636866],[-128.0327751516132,53.03475533682068],[-128.03301094501066,53.03464534940228],[-128.03324865753484,53.03453644038639],[-128.03348444849044,53.03442645200794],[-128.0337098132337,53.03433289204401],[-128.03395213108732,53.03420316917921],[-128.03419084552542,53.034095926779244],[-128.03443239351364,53.033989190995555],[-128.0346758881259,53.03388410701801],[-128.03495343073675,53.03382663583294],[-128.03524898481837,53.033794078993964],[-128.0355455451833,53.033801849069455],[-128.0358408824784,53.03378442274242],[-128.03609838234286,53.033698715075495],[-128.03630028569316,53.03356407990287],[-128.03649172307476,53.03342569722059],[-128.0366774509432,53.033285179837094],[-128.03687080664577,53.0331478843033],[-128.03707087666666,53.033014400279086],[-128.03728925451583,53.03289237414804],[-128.0375221248284,53.03278017683477],[-128.03776076849354,53.03267180710705],[-128.03800137378425,53.03256508888527],[-128.03824004168806,53.032457273703436],[-128.03853521873626,53.032378191150336],[-128.03872337088785,53.03232730410815],[-128.03894935380512,53.03214965193716],[-128.0391406957028,53.0320095892976],[-128.03935609261896,53.03188423879323],[-128.03959967058975,53.031781384562],[-128.03985888298203,53.03169283178827],[-128.0401229578479,53.03160812213569],[-128.04038801108678,53.031524506928704],[-128.04067246152812,53.03147531393438],[-128.04096079462005,53.031428850957454],[-128.04124911214515,53.03138238753321],[-128.0415364491567,53.0313348194118],[-128.04182277848838,53.03128558211194],[-128.0421079778625,53.031232444826806],[-128.04239975736763,53.03118031386835],[-128.04267676015237,53.03111218875396],[-128.04290698738015,53.031003953854515],[-128.04311197269917,53.03087597854762],[-128.04330716359138,53.03073863994151],[-128.04349845802153,53.03059801459273],[-128.04369458732842,53.03046065902419],[-128.04390522239737,53.030333705286374],[-128.0442678757394,53.030162641764065],[-128.0445611131351,53.030199035099464],[-128.044852538038,53.03023658008223],[-128.04513895608758,53.03028654161344],[-128.04542106586368,53.03034386782451],[-128.04570242412282,53.030405125249395],[-128.04597937821995,53.030472063153795],[-128.04625194318095,53.030544681309124],[-128.04651032925943,53.03063323813818],[-128.04676173452444,53.03073200409384],[-128.04702014958974,53.030821115324116],[-128.04729095962065,53.03089600348871],[-128.04756704742155,53.03096407373203],[-128.04784578196424,53.03102873454274],[-128.04812536254587,53.031091703075184],[-128.04840662158557,53.031150713998144],[-128.0486896943398,53.0312085718135],[-128.0489718537174,53.03126700081726],[-128.04925311509422,53.03132600971656],[-128.04953613610277,53.031382745482446],[-128.0498252403684,53.03142985127073],[-128.05011584557386,53.03146963960287],[-128.05037864983518,53.03155250661029],[-128.05062923676527,53.031653520651766],[-128.05088157134878,53.031751696928794],[-128.05114857916786,53.03182496557454],[-128.0514415901887,53.03185629724287],[-128.0517431520548,53.031871230145356],[-128.05204020155492,53.03188960362831],[-128.05233792157358,53.03190235993731],[-128.05263488367547,53.031899435339405],[-128.05293205579707,53.031881377951194],[-128.05322899563546,53.031858831070906],[-128.05352544294382,53.03184526860846],[-128.05382361643808,53.03184792469361],[-128.05412210016667,53.03185730034829],[-128.0544204090577,53.031862750471575],[-128.05471693710282,53.03185086055144],[-128.05501267912038,53.031822734219915],[-128.05532357318017,53.03179881801331],[-128.05558803256946,53.03174209040363],[-128.05568477522067,53.03157898720008],[-128.05571006054592,53.03138741929108],[-128.05565830804832,53.03120617037339],[-128.05562089062175,53.03103138840021],[-128.05574027926744,53.030872939230214],[-128.0559283724913,53.03072505812656],[-128.0561330460211,53.03059146012955],[-128.0563683213901,53.03047245673752],[-128.05660082985057,53.030354066043685],[-128.05678586235462,53.030220253232514],[-128.05688643929923,53.03005932381962],[-128.0569253715703,53.02987929194822],[-128.05695188985834,53.02969387171481],[-128.05701244614758,53.029516825581865],[-128.05712089837178,53.02934510495932],[-128.05731457727956,53.02921618017949],[-128.05758299026965,53.029125750014686],[-128.0577814226307,53.028998418451444],[-128.0579184979045,53.028839093158396],[-128.05804592705894,53.028673210216084],[-128.05820580992196,53.02852189827933],[-128.0583857079987,53.02837863954426],[-128.0585465289947,53.02822730174165],[-128.05870631472044,53.028073748804694],[-128.058893034119,53.02793653093755],[-128.05914033008597,53.0278346909826],[-128.05938765224548,53.02773341498859],[-128.05962814782598,53.0276260878835],[-128.05987162488887,53.027522627070915],[-128.0601298281441,53.02743404598264],[-128.06040277270523,53.02736034426338],[-128.0606708119783,53.02728167878078],[-128.06092989860247,53.02719195948249],[-128.0611898282875,53.027100538935656],[-128.06144680145346,53.02700581554575],[-128.06169518988082,53.02690731376948],[-128.06193203524776,53.02680228745362],[-128.06208992662073,53.02661008497102],[-128.06198813056295,53.02643755054122],[-128.0618938027679,53.02626489444313],[-128.0618759847746,53.026090335938804],[-128.06200516022597,53.02592273158815],[-128.0622826956259,53.025866880362194],[-128.0625526975278,53.02579041792018],[-128.06281867802173,53.02570842035649],[-128.0630965801774,53.02564078616498],[-128.06333920543327,53.02553957455339],[-128.06355835576198,53.02541636281737],[-128.063774587988,53.025290950806266],[-128.0640299225093,53.02520128991747],[-128.06430479410844,53.02512922194649],[-128.06454735954372,53.02502689676993],[-128.0647674836249,53.0249047775955],[-128.0649953459392,53.02478813629275],[-128.06523294871673,53.02467972671936],[-128.06547538786717,53.02457459484119],[-128.06571669410076,53.02446555441985],[-128.06595992068588,53.02435760977282],[-128.06622705712635,53.024299680191504],[-128.06646466799594,53.024229945628214],[-128.0667300594123,53.0241552309769],[-128.0669943739787,53.02409679305676],[-128.06724176575932,53.02401679678808],[-128.06756161434296,53.02394785155299],[-128.06792618140489,53.02393417867182],[-128.0682543286815,53.023920578318574],[-128.06853627324415,53.023917311057616],[-128.06885437940463,53.023908368987925],[-128.06910964556542,53.02389436759885],[-128.06942815853694,53.02387476317684],[-128.06971855605224,53.02394925642604],[-128.06999211511317,53.02402292351904],[-128.07026495275062,53.02410108651976],[-128.07056657538953,53.02411821140272],[-128.07078071044444,53.024007960328674],[-128.07106574298354,53.02395307730259],[-128.0713430075319,53.02389216018521],[-128.07164156038831,53.023884674931885],[-128.07193706592167,53.023910306507055],[-128.0722200131474,53.02396586810427],[-128.07249617805013,53.024035564784924],[-128.07276525952807,53.0241132231167],[-128.07303788413705,53.02418689967322],[-128.0733156450457,53.024250961585885],[-128.07361270526474,53.024270400853375],[-128.07389908931955,53.024319728264075],[-128.07419270545003,53.02434483148088],[-128.07449116851348,53.024354720137886],[-128.07478950961956,53.02436180328264],[-128.0750875893785,53.024363841429754],[-128.0753858211682,53.024368683055215],[-128.07568190254807,53.02438701339672],[-128.0759774814331,53.02441431959542],[-128.0762713732627,53.024445017664156],[-128.0765499570583,53.02450681564483],[-128.0768462590181,53.02452962308265],[-128.07714245172312,53.0245501897669],[-128.07744054785007,53.024552221706315],[-128.0777378346592,53.02453801757239],[-128.0780303614921,53.02450259811801],[-128.07831219680784,53.02443990703243],[-128.0786068330275,53.024447601827376],[-128.07889541622583,53.02444644377833],[-128.07915219652435,53.024348877193894],[-128.07939365853952,53.024243733281395],[-128.0796109161706,53.02412108006858],[-128.07982135756973,53.02399294176066],[-128.0800240840797,53.02385989024213],[-128.0802151434272,53.023717520337954],[-128.08041987140595,53.02358723968666],[-128.0806627456955,53.02349215683401],[-128.08094172308643,53.023428388686334],[-128.0812335259979,53.02337840121987],[-128.0815205444405,53.02332625550871],[-128.08180667631817,53.023275245705825],[-128.08209287735679,53.023225354947044],[-128.08238005847878,53.023176567150024],[-128.0826672112562,53.02312721417103],[-128.08295336810468,53.02307676606275],[-128.08323848811403,53.0230240846457],[-128.08351946231375,53.022963072943895],[-128.08379939996007,53.02289983692226],[-128.08408248668746,53.02284383538962],[-128.08437194161678,53.02280340529036],[-128.08466871902272,53.02277910365637],[-128.0849671244459,53.022768789152686],[-128.08526429540743,53.02277138243824],[-128.08556190645507,53.02278293499036],[-128.08585886691182,53.02280010317327],[-128.08615592271988,53.02281951087592],[-128.08645562104695,53.0228355081647],[-128.08675715844163,53.02285090718717],[-128.0870535371167,53.02287537349483],[-128.087336859694,53.02291911773342],[-128.08761064797673,53.022997224286094],[-128.08785524294498,53.02310835527584],[-128.0880375865118,53.02324524929059],[-128.08813701873123,53.02342453099623],[-128.0881202935751,53.023597457280225],[-128.0879826002674,53.023760750307574],[-128.0878059320801,53.02391016932867],[-128.08758777334353,53.024032854032754],[-128.08745323196797,53.02418432480564],[-128.08742286369514,53.02432666103055],[-128.0874384184441,53.024453055850785],[-128.08754527967218,53.02461258492599],[-128.08771236031097,53.02476208026191],[-128.08789406000074,53.024904590750566],[-128.08809216053243,53.025038963810445],[-128.08832829351854,53.02514856673913],[-128.08855675301885,53.02525437718761],[-128.08871918048013,53.02540395354095],[-128.08893549929775,53.02552846985895],[-128.08914631499343,53.025655334178616],[-128.0893444379219,53.02578970481218],[-128.08951790514712,53.02593572163357],[-128.08965837889772,53.026094653429475],[-128.08977765446934,53.02625956549355],[-128.08986922049093,53.02643057324867],[-128.0899422424797,53.02660470744079],[-128.09001807310173,53.026778800783994],[-128.0901105393366,53.026949227415635],[-128.09021877146165,53.027117141621716],[-128.0903205179664,53.02728628266328],[-128.0904397721055,53.02745063842453],[-128.0905220919171,53.02762348648017],[-128.09059882487202,53.027796998458456],[-128.09068114644342,53.02796985532794],[-128.09079950531475,53.02813478258868],[-128.09092430854517,53.028297909558276],[-128.09104915546865,53.02846160059334],[-128.09116657625648,53.02862654411679],[-128.09128493884293,53.02879147082713],[-128.0913977847847,53.028958181168235],[-128.09150783835904,53.02912493194183],[-128.09163542761047,53.02928745276587],[-128.09174086395478,53.02945541513025],[-128.0918666155864,53.02961852429323],[-128.09194706403161,53.02979141346492],[-128.09203589378794,53.02996358897067],[-128.09209966637346,53.03013900673423],[-128.09212995845905,53.03031782514385],[-128.0921360788745,53.03049875815498],[-128.09204541057346,53.03066851196207],[-128.09194161786732,53.03083737743271],[-128.0918274383591,53.031004185014886],[-128.09170569476032,53.03116888462833],[-128.0915620865957,53.03132612493185],[-128.09140048531884,53.03147863515609],[-128.09126536675322,53.03163741046834],[-128.09117018314268,53.03181060634058],[-128.09114623471666,53.03198814428751],[-128.0911578264336,53.0321667292105],[-128.09118351114768,53.032346750245736],[-128.0912176050597,53.03252662219845],[-128.09125257012863,53.03270535771463],[-128.09132657736282,53.03288003820674],[-128.09134198711223,53.03306024129448],[-128.0913379387547,53.033243596204635],[-128.09134032169177,53.033424586180644],[-128.0913759933789,53.033598825182104],[-128.0917238805567,53.033870658295214],[-128.09219178021857,53.033866289477494],[-128.09248094395736,53.03381856428005],[-128.09277018964121,53.03377251387965],[-128.09305932470318,53.03372423174653],[-128.09334985436328,53.033685447916405],[-128.09364599755594,53.03366562025166],[-128.09395029896956,53.03365965469788],[-128.09424818227905,53.03367510971278],[-128.09451650834558,53.033735362621044],[-128.09475309266693,53.03385278310649],[-128.09501689737704,53.033934978612784],[-128.0953010056152,53.03399326357955],[-128.09559003992334,53.034037452710976],[-128.09589116195676,53.03406181388066],[-128.09619130252656,53.034085061786094],[-128.09647209503294,53.03413275813564],[-128.09671962643014,53.0342258838389],[-128.0969398588861,53.0343525674131],[-128.09714635825026,53.03448509059752],[-128.09731532329002,53.03463341829252],[-128.0974678325889,53.03478876414039],[-128.09761023248257,53.03494765245165],[-128.09776997611874,53.03509838541038],[-128.09797266466458,53.03522929798563],[-128.09818908856454,53.03535436109545],[-128.09838088156695,53.035491636590876],[-128.09855902449613,53.035636436415764],[-128.09872614684858,53.03578479493622],[-128.09888598043563,53.03593720181132],[-128.0990402844695,53.036090836792496],[-128.0991835928118,53.036249142134935],[-128.09932505043605,53.0364074892057],[-128.09949581459995,53.03655409592989],[-128.0996977554855,53.036688381869794],[-128.09989416448173,53.036824451874004],[-128.10004652486433,53.03697643423313],[-128.1001584579608,53.03714258767486],[-128.10025293800868,53.03731465654641],[-128.10035201098054,53.03748495763653],[-128.1004575575766,53.03765403139184],[-128.10055385178183,53.03782494674536],[-128.1006222490711,53.03799860062615],[-128.10065536305547,53.0381768015549],[-128.10066618159172,53.03835765031516],[-128.1006657407937,53.03853756957565],[-128.10065131595042,53.03871830275144],[-128.10062846822296,53.038898629856995],[-128.1006075150753,53.039079479208254],[-128.10059954943125,53.03925841138081],[-128.10061580362859,53.03943580035096],[-128.1006759746351,53.03961296345029],[-128.1007797988492,53.03978486543118],[-128.1009147861021,53.03994443778676],[-128.10113103394727,53.0400655799618],[-128.1013702160755,53.04017790155913],[-128.1015874905023,53.04030070161539],[-128.10180479369285,53.04042405677434],[-128.10202841991898,53.04054282399174],[-128.10226109142303,53.04065581582606],[-128.10249915971173,53.040764236140475],[-128.10274075458696,53.040868665263766],[-128.1029914249662,53.04096732730731],[-128.10324386547376,53.0410642713421],[-128.10349085893418,53.04116411886478],[-128.1037262077195,53.041274262230495],[-128.10394527890276,53.04139534908372],[-128.10415537506043,53.04152387741392],[-128.10436090758944,53.041654728711286],[-128.10456551515517,53.04178559616044],[-128.10476738588198,53.041917633055405],[-128.10496837223252,53.042050806364294],[-128.10516841866604,53.04218399611162],[-128.10536850884884,53.04231774075293],[-128.10556855779527,53.04245092980131],[-128.10585683031357,53.04249735032272],[-128.10614513147198,53.04254433460848],[-128.10643337724127,53.04259018924976],[-128.10672429350245,53.04263319757534],[-128.10701859669865,53.042669418887975],[-128.10728317067668,53.04274652536098],[-128.10752232857152,53.042857714337224],[-128.10772782231723,53.04298743969175],[-128.1079014230263,53.04313342801494],[-128.10806958942183,53.04328287608733],[-128.10825598663737,53.043423030446874],[-128.10846064277223,53.04355445547796],[-128.10866529972898,53.0436858711843],[-128.10885167307904,53.04382546906153],[-128.1090097487802,53.04397845908557],[-128.1091530933138,53.04413619608507],[-128.1092863420793,53.044297476284456],[-128.10940943933156,53.04446117974056],[-128.10950216130496,53.04463439383192],[-128.10962878541542,53.04479410613001],[-128.10985918008444,53.04491665692837],[-128.11008210593081,53.04503934084009],[-128.11017691679945,53.04519794443598],[-128.11019243909766,53.04537870823025],[-128.11018210859535,53.04556553017851],[-128.11017705972318,53.04574609680547],[-128.1101580114496,53.045926913735755],[-128.11014453814946,53.04610707495517],[-128.1101693297966,53.046285986978],[-128.11030629630272,53.04644663456887],[-128.11058219628558,53.0465067169132],[-128.11088586192972,53.046523705095524],[-128.11118339595637,53.04653015745132],[-128.1114825743473,53.04653208678556],[-128.11178169748246,53.04653290434732],[-128.11208007421274,53.04653765342578],[-128.1123785774396,53.04654464143028],[-128.11267809050128,53.0465532875771],[-128.11297515747498,53.046569267563164],[-128.11326817658178,53.04659764998222],[-128.11356105060946,53.046641727887675],[-128.1138408313644,53.04670454012594],[-128.11408680158667,53.04680157759517],[-128.11430883638994,53.04692483471834],[-128.11457545703402,53.047004686646886],[-128.11486160346215,53.0470640195456],[-128.11512170998787,53.04714455197297],[-128.11529928354443,53.04729437753955],[-128.11555289119218,53.04737559050169],[-128.11585035060503,53.04741789470558],[-128.11610329797364,53.04750472321285],[-128.11630997697895,53.047638331817254],[-128.1165562379839,53.04774097290391],[-128.11682967662188,53.047826302458574],[-128.11709846789978,53.04791227973434],[-128.11733171463374,53.048016273683466],[-128.1175086572173,53.04815322067148],[-128.11764308702058,53.04831838958696],[-128.11773332145927,53.0484972470763],[-128.11777679568567,53.048675266607475],[-128.11779309709814,53.048852087771145],[-128.1177927010589,53.04903145048778],[-128.11777928689727,53.04921216775777],[-128.117757460394,53.04939303595549],[-128.11773004545157,53.04957400440357],[-128.1177006917047,53.04975388663852],[-128.11766472400743,53.04993220157465],[-128.11757994310244,53.05010635240671],[-128.11751480864956,53.05028071563356],[-128.11752185433818,53.05045937969492],[-128.11755700081872,53.05063922550835],[-128.1175697064382,53.05081891792484],[-128.11755815855688,53.05099960147122],[-128.11754564103776,53.051179737423034],[-128.11755549663917,53.0513583599486],[-128.11754473504652,53.051536222415734],[-128.11759624583817,53.051706806763484],[-128.1176286552779,53.051887822526794],[-128.117606179756,53.052074306876655],[-128.11756150919135,53.052228125260974],[-128.1174833369096,53.052403834108695],[-128.11745051108625,53.05258882707129],[-128.11742840201612,53.05276409501782],[-128.11739749899343,53.05295016542567],[-128.11735539296998,53.053117945254826],[-128.11735221389193,53.05329792238564],[-128.11735747554434,53.053478304082546],[-128.11737109443004,53.0536574148738],[-128.11739596189085,53.05383744482982],[-128.1174376835732,53.054017728416824],[-128.1175154879833,53.054190647821066],[-128.11764208265967,53.05436716675259],[-128.11782184321888,53.05452256317551],[-128.11806365187982,53.05457258686361],[-128.1183543535709,53.05455336245711],[-128.11866202868273,53.05449963862061],[-128.11895801972926,53.05443659099302],[-128.11922919549065,53.05436334341789],[-128.11948718654082,53.05426959849178],[-128.1197267389845,53.05416216749756],[-128.11993112857857,53.05402453636254],[-128.12013972856104,53.05389636194436],[-128.12040153149002,53.05382272390962],[-128.12069283527603,53.05377825648295],[-128.12099437371285,53.053751539950575],[-128.12129281959827,53.05373776490395],[-128.12158932181848,53.053759904083364],[-128.12188682133325,53.05378313659872],[-128.12218251427117,53.0537705387312],[-128.12247839196078,53.053742799196286],[-128.12277415720723,53.05371281899124],[-128.1230705384318,53.05369515764932],[-128.12336853336146,53.05369091819451],[-128.12366779102453,53.05369338110082],[-128.12396738508036,53.05370256303043],[-128.12426447807854,53.05371795007915],[-128.12455676801,53.05374912542256],[-128.12484357833682,53.05380168820842],[-128.12513364865606,53.05384466782883],[-128.12543904504042,53.05383916893122],[-128.12573545336411,53.05384055695265],[-128.12598726506246,53.053922336600856],[-128.12621753202683,53.05404037497],[-128.12644344684276,53.05416466114798],[-128.12668085132518,53.054275844218274],[-128.12691912740925,53.054385890147394],[-128.12713375402896,53.054508692511],[-128.12729818501094,53.054655939599755],[-128.12749803555653,53.05489446788059],[-128.12769477159867,53.05508933401455],[-128.12785750729665,53.0552399738288],[-128.12805678905167,53.05537369596234],[-128.12827243496625,53.05549816390277],[-128.1284961863453,53.05561631546693],[-128.12875314086,53.0557069644688],[-128.12904231456307,53.05575050691809],[-128.12933870740727,53.055732829862485],[-128.12963470652136,53.055707312345305],[-128.12992654787624,53.05567346628246],[-128.13020459539467,53.055606795202316],[-128.13050087428206,53.05558687530915],[-128.13079590186905,53.055560807412],[-128.1310921522578,53.05554033053484],[-128.13139077621486,53.055529889854924],[-128.1316888678167,53.05552731382304],[-128.1319805713876,53.05556519855037],[-128.13226295131608,53.055622316534375],[-128.13253588149576,53.05569585423489],[-128.13280170634755,53.05577680155761],[-128.13307376823104,53.05585147470728],[-128.13334403281934,53.055927865674],[-128.13362300545802,53.055991202931956],[-128.1339129585909,53.05603135655527],[-128.13420631073419,53.056064731133354],[-128.13450286388624,53.056087393352094],[-128.13479700231477,53.05611794533477],[-128.135090327348,53.05615075325663],[-128.13537696989704,53.05619937501278],[-128.13566455458042,53.05624797903793],[-128.13594440294153,53.05631017407958],[-128.1362120218044,53.056389404439486],[-128.13646281826226,53.056487430312764],[-128.13671003599745,53.05658832737405],[-128.1369437168914,53.05669900178163],[-128.13716304682706,53.056821701340056],[-128.13737326349957,53.05694904942524],[-128.13757439488197,53.057081601582446],[-128.1377746429026,53.05721529935205],[-128.1379821531715,53.057344372387185],[-128.1382131728555,53.05745789052681],[-128.1384460203401,53.057570254140735],[-128.13874100048054,53.05759853930793],[-128.13903779262074,53.05762566993301],[-128.13933469310788,53.057636548169924],[-128.13965791116573,53.057575762089414],[-128.13992031977116,53.05755138379637],[-128.1400152648171,53.057691470714694],[-128.14002942291827,53.057898029890865],[-128.14003400947442,53.05808178701632],[-128.14007059071218,53.05830644024346],[-128.1400357064275,53.05843038013534],[-128.13994790826848,53.058598997336816],[-128.14000487332092,53.05878292583697],[-128.1400852867771,53.05898717175804],[-128.14014667098337,53.0591474795461],[-128.1402088596698,53.059324022386186],[-128.14025514904316,53.0595002974393],[-128.1403913459139,53.05966093463987],[-128.14052934007807,53.05982040915381],[-128.1406673506768,53.059979892180415],[-128.1408044202988,53.060139383146264],[-128.14094793757795,53.0602970800439],[-128.14109788902698,53.0604524181239],[-128.14126160639856,53.06060246642178],[-128.14143082957577,53.06075072867948],[-128.14160096702037,53.060898409145835],[-128.14177020750898,53.06104667062079],[-128.1419558809374,53.06118735184518],[-128.14215614857946,53.061320477141166],[-128.142355503939,53.06145417466956],[-128.14254939746004,53.061590777923826],[-128.14274329222937,53.061727380848964],[-128.14294267986207,53.06186164180938],[-128.14307000131282,53.061938919921005],[-128.14314109909228,53.06199536402132],[-128.1433368939435,53.06213248751914],[-128.1435335470134,53.06226791814162],[-128.14376549336654,53.062380288050385],[-128.14402908147602,53.062471349303394],[-128.14429262860227,53.0625612807841],[-128.14451687896567,53.06266930514022],[-128.1445949794229,53.06284556566753],[-128.14465258537027,53.06302331044877],[-128.14469524577314,53.06320133566511],[-128.144701494946,53.06338057831697],[-128.1446834708827,53.063560261899575],[-128.14466076835907,53.063740030445544],[-128.1446558074157,53.06391947668092],[-128.14468728671977,53.06409826093817],[-128.14470292080887,53.06427788901933],[-128.14475392623166,53.06445464154364],[-128.14481428843771,53.06463121508747],[-128.144896858799,53.064803466204246],[-128.14498965680826,53.06497441046849],[-128.1450815288411,53.06514537148039],[-128.14521127185512,53.06530724149225],[-128.1453769321513,53.065458360974475],[-128.14551214066003,53.06561732442999],[-128.14559107907002,53.06579132699589],[-128.14562066672192,53.06596958031348],[-128.14561013281028,53.06614969267494],[-128.1456126924328,53.06632955810443],[-128.1456180477388,53.06650938167881],[-128.14562806632028,53.06668911152366],[-128.145641837329,53.06686878212707],[-128.14556580003838,53.06702934222874],[-128.14544650379437,53.067185083445025],[-128.14530563438677,53.06735803109443],[-128.14529481513566,53.067532534601916],[-128.14524870000653,53.067693115694446],[-128.14511586803948,53.06784013460323],[-128.14498261017604,53.067978749287676],[-128.1449139937383,53.06815655354128],[-128.14481688025043,53.068325898627336],[-128.14473401449715,53.068499477663764],[-128.1446939544051,53.06866890722144],[-128.144673429422,53.06885480547334],[-128.1445556042225,53.069021163507735],[-128.14444629290122,53.06918961767978],[-128.14434451120286,53.0693590469812],[-128.1442476476878,53.069533435708564],[-128.14414289920813,53.069736556767204],[-128.14407772265432,53.069927184465136],[-128.1441165299979,53.070047544716395],[-128.1443806629321,53.0700371433585],[-128.14472026826513,53.06994745857117],[-128.14495709157708,53.06984114835456],[-128.1451694308997,53.06971286300341],[-128.1453652702926,53.06957254633147],[-128.14554790005542,53.069430227383855],[-128.14570189168967,53.06927609783747],[-128.14585012012967,53.069119274844816],[-128.1460135371173,53.06896665050816],[-128.1461466729886,53.06880729446319],[-128.14631051141907,53.06862608164847],[-128.14642620648547,53.06849170366668],[-128.14661563245767,53.06839130028379],[-128.1468054320026,53.068279671076105],[-128.14695833166934,53.068122761533594],[-128.14709251645516,53.06796562710827],[-128.14724813002616,53.067788481264145],[-128.14749427747978,53.06768199592619],[-128.14777202999528,53.067627064954884],[-128.14806611905797,53.06759929551058],[-128.14836844725468,53.067586504092205],[-128.14866837755775,53.0675816113278],[-128.1489678481132,53.067586249974916],[-128.14926615932973,53.067604916677276],[-128.14955693498726,53.06764109942569],[-128.1498302280899,53.06771964085922],[-128.15011141692418,53.06776944852672],[-128.15040916731687,53.06775842120677],[-128.15070957065146,53.06774453788536],[-128.15101625638022,53.06776249165226],[-128.15130321103914,53.06774156995951],[-128.15156558936363,53.06766000666889],[-128.15181158297682,53.06755070799221],[-128.15203363029295,53.06743007945963],[-128.15221912412937,53.067289383193675],[-128.15240165055462,53.06714536879812],[-128.15261502295115,53.06701985730235],[-128.15285258133076,53.06691015408368],[-128.15310478472546,53.066812514050596],[-128.15337566768272,53.06673302442554],[-128.15366690851835,53.06670473678256],[-128.15396991107673,53.066705370311574],[-128.15426570792567,53.06672968405353],[-128.1545580492792,53.0667781566731],[-128.15482853545691,53.066856728900625],[-128.15504851303223,53.06697153774607],[-128.15523623868626,53.067114403383776],[-128.15542211161699,53.06725729358869],[-128.1556026786412,53.06740645024788],[-128.15578939570838,53.06754764750146],[-128.15602508614606,53.06764031310319],[-128.1563311594954,53.067664425179736],[-128.15661569202555,53.06772481021487],[-128.15689742963087,53.067785236666076],[-128.15718881521698,53.067796172072825],[-128.15748747739192,53.06776660957686],[-128.1577847131085,53.067745484216736],[-128.1580847273406,53.06776074364118],[-128.15837959050603,53.067803555990594],[-128.1586335736673,53.06788802628152],[-128.15884497910278,53.06801812270311],[-128.15906180658584,53.0681441917007],[-128.15934340815576,53.068201816938725],[-128.15960678030098,53.06828723446911],[-128.15986911312066,53.06837043744685],[-128.16016633675014,53.06838573375211],[-128.1604487125473,53.06833012321901],[-128.160728635243,53.06826279107454],[-128.1610066160724,53.06819436383966],[-128.16128466847354,53.068127064570156],[-128.16156821109752,53.068075913860284],[-128.1618655461584,53.06805701838024],[-128.16216466559425,53.06807283989566],[-128.16245047795633,53.068121412835886],[-128.1627314710261,53.06818520213755],[-128.16301836952886,53.06823656076965],[-128.16331823366716,53.06828543023159],[-128.16361508792218,53.06831194342595],[-128.163889058582,53.06827497031324],[-128.16414067329734,53.0681661074403],[-128.16434133517674,53.068030153443644],[-128.16448374177077,53.067870605394276],[-128.16462038531034,53.067707799845095],[-128.16480799288783,53.06757264925305],[-128.16504759115494,53.06746680257711],[-128.16530544625724,53.067370718393654],[-128.1655537152591,53.067269760531346],[-128.16589528690173,53.06712841217486],[-128.16619038836032,53.06710226470134],[-128.16648762851125,53.067081673193165],[-128.1667852270238,53.0670678092285],[-128.16708301041896,53.067057860078634],[-128.16738115196122,53.06705462950864],[-128.16768007690817,53.06704857685652],[-128.16797785995854,53.06703862545047],[-128.1682758868039,53.06703315275395],[-128.16857648299688,53.06704164891207],[-128.16887496788706,53.067045134172815],[-128.16916217679946,53.067011268343414],[-128.16943397309666,53.06693173355744],[-128.16970287206976,53.0668505654037],[-128.16997493737455,53.06677662034686],[-128.17026331494174,53.066747223219124],[-128.17056567782805,53.06675343087118],[-128.17086408859174,53.06675579144743],[-128.1711624285816,53.066756475575716],[-128.1714604665226,53.06675155060394],[-128.17175903584553,53.0667567129548],[-128.17205670119813,53.06674451139847],[-128.17235148051287,53.066712184418726],[-128.17263796760824,53.06666431546015],[-128.17280714627034,53.06648015822387],[-128.17298722854215,53.06632663167122],[-128.17320095728465,53.06622741390949],[-128.17338834641882,53.06614325344731],[-128.17362021247646,53.066033056101766],[-128.17385083347534,53.066008067350744],[-128.17409758084722,53.066060694378784],[-128.174294924326,53.06620727277206],[-128.17437710075876,53.06636942372517],[-128.17441775464235,53.0661590501645],[-128.17443755123924,53.065979892363266],[-128.1744573336824,53.06580016981938],[-128.17447243750306,53.06562053341921],[-128.17447446250335,53.065441137877535],[-128.17449143450045,53.065261467026566],[-128.1745553736876,53.06508597106683],[-128.17460330943993,53.06490853680101],[-128.17465312763215,53.06473105884901],[-128.17471706581068,53.06455557170763],[-128.17481590426914,53.064386158584],[-128.17489021044057,53.06421215730346],[-128.1749795914146,53.06404068519242],[-128.17507936925648,53.063871254450845],[-128.17518577921774,53.063703387370886],[-128.17531301183033,53.06354074144996],[-128.175448802067,53.0633807446307],[-128.1755455517946,53.06320688520207],[-128.17565001758567,53.06303793241041],[-128.17581186672146,53.06289370473094],[-128.17606454689326,53.062788723286666],[-128.1763449388882,53.062731989075026],[-128.176648108003,53.06271798794182],[-128.17692493463724,53.062664681039536],[-128.17715932349233,53.062549380536765],[-128.17740271451027,53.06244568840907],[-128.1776450473076,53.062339764318146],[-128.17791019397046,53.062259210632824],[-128.17819336084966,53.06220185573315],[-128.17848492052224,53.06216229012469],[-128.17878236511746,53.062146147067885],[-128.1790800826272,53.062135612155345],[-128.17937624184154,53.062149202135444],[-128.17965888787668,53.062209001613475],[-128.17994533461209,53.06225191533909],[-128.1802231875154,53.06218232271106],[-128.1805032395122,53.06211885874392],[-128.18076936358088,53.06203940144464],[-128.1810019854638,53.06192636764651],[-128.18121233653528,53.061798606931916],[-128.18136333257294,53.061643926663],[-128.1815133569099,53.061488699141556],[-128.18164436756385,53.06132709680201],[-128.1817687444578,53.061163930907455],[-128.18188645954677,53.06099865495212],[-128.18201746726714,53.06083705215303],[-128.18213141511154,53.06067128053808],[-128.18226431762287,53.06051019838815],[-128.18241433465647,53.060354969620604],[-128.18255198465036,53.06019548529001],[-128.18266967990886,53.060029643739895],[-128.18276154221505,53.05985251372034],[-128.18295911799237,53.05973115564012],[-128.1832698025594,53.05968224716038],[-128.1835692161593,53.059650370258545],[-128.1838619540087,53.05961580911107],[-128.18405532808313,53.05948555885137],[-128.18413430824202,53.05931258492664],[-128.18422271450842,53.059141113521584],[-128.18433566495221,53.058974236830885],[-128.18443634916187,53.05880534499042],[-128.18455409086684,53.0586406213605],[-128.1846151402897,53.058464615794925],[-128.18468466062305,53.05828957439568],[-128.18474665049854,53.05811355130171],[-128.18481547384746,53.057943006664935],[-128.18509303123363,53.0578683671936],[-128.18536910973435,53.057801045407196],[-128.18564614252074,53.05773426130308],[-128.18592314535456,53.05766691210111],[-128.18619914857683,53.057598468711795],[-128.1864834745877,53.0575461205131],[-128.18673658691975,53.05745063084624],[-128.18697204867274,53.05733920863635],[-128.18722552840816,53.05719662903334],[-128.18736973288725,53.057074009847305],[-128.18756173894909,53.05693593158389],[-128.18779144755788,53.056821816214224],[-128.18803767560865,53.05671972517131],[-128.18830072616484,53.05663582272979],[-128.1885818293084,53.05657568201753],[-128.18885983333467,53.05650999307838],[-128.18914406186602,53.05645595406465],[-128.18942927444195,53.0564030260695],[-128.18971549928662,53.056351755611765],[-128.1900103950498,53.05632329964041],[-128.19030426247207,53.05629318498636],[-128.19058944336552,53.05623968973908],[-128.19085673728682,53.05622015587434],[-128.191170733529,53.05616332634093],[-128.1914624126864,53.056127079384446],[-128.19177787995102,53.05613523910281],[-128.19204120378754,53.056147164354925],[-128.1923638533564,53.056149575144936],[-128.19268023639225,53.05608485018871],[-128.1929707273393,53.05602564544054],[-128.19328684778114,53.055955874694554],[-128.19351705491104,53.055942063899785],[-128.19384823252955,53.05592862702937],[-128.19413095941925,53.05586395865023],[-128.19438941688858,53.05578180468286],[-128.19468071437285,53.05573827471401],[-128.194920171314,53.055632366724254],[-128.195198159923,53.05558459890543],[-128.1954994472914,53.055571713224545],[-128.19579362414805,53.05554774001935],[-128.19606958339938,53.05547870875377],[-128.19633747539328,53.055398616872075],[-128.1966033686843,53.05531576352313],[-128.1968712874032,53.05523622590686],[-128.1971454041907,53.055167791323655],[-128.19743920054844,53.05513653896485],[-128.19773167776304,53.05509801939751],[-128.19801174408332,53.05503619802224],[-128.1982425148553,53.05492540472543],[-128.19839048470783,53.05476794982015],[-128.19858497948263,53.05464269334127],[-128.19883315288496,53.054542784720255],[-128.1990823096302,53.05444397823747],[-128.19934032758027,53.05435397415573],[-128.199601269828,53.054266157006374],[-128.19986025626577,53.054176698678525],[-128.2000007749107,53.05412811826855],[-128.20011927041435,53.05408779526158],[-128.20038325098076,53.05400440371203],[-128.2006521538217,53.053925959832966],[-128.2009251691945,53.05385472967907],[-128.20119407055049,53.053776293518496],[-128.2014640131082,53.0537000703549],[-128.20175450811115,53.05365934445723],[-128.2020529850639,53.05364648520514],[-128.202350869675,53.05364037127795],[-128.20264903052092,53.05363929150601],[-128.20294537780728,53.053621429669285],[-128.2032425349904,53.05360130994405],[-128.20309519280784,53.05339218920404],[-128.20289924865202,53.05327309128484],[-128.20263377852027,53.05316538861846],[-128.2023924633024,53.053072919833],[-128.2021515678843,53.0529703626082],[-128.202020570528,53.05278783988964],[-128.2018801316067,53.05267555185721],[-128.20168218965196,53.052517818876915],[-128.20148409242893,53.05237522660351],[-128.20130245436357,53.05220765582812],[-128.20111195021724,53.052085099530935],[-128.20096337715384,53.05196007500732],[-128.2007987011641,53.05181293035785],[-128.20065067862996,53.05168060413598],[-128.200494559772,53.05151817036251],[-128.2002861448231,53.05135670237361],[-128.20014149603654,53.05119909438133],[-128.2000011063443,53.051051495924376],[-128.19999320018937,53.051043240200514],[-128.19989489828458,53.05087804191706],[-128.1997302401637,53.05069502314755],[-128.1995059994583,53.05058877833693],[-128.1992894759753,53.05046894614429],[-128.1990322285577,53.050375090626325],[-128.19878759192724,53.050272031533126],[-128.19856817581214,53.0501505659545],[-128.1983586776544,53.05002218917741],[-128.19815462471252,53.04989034759174],[-128.1979569571824,53.0497555797365],[-128.19776474914423,53.049617911853176],[-128.19757438124998,53.04947965338325],[-128.19738036603528,53.049343139559866],[-128.19716816819272,53.04921648804868],[-128.19694692374182,53.049095618598486],[-128.1968031921879,53.048937424619886],[-128.19668229331032,53.048768725353646],[-128.1964977382811,53.04863427607259],[-128.19626590139305,53.048525368670234],[-128.19601679442422,53.04842575027291],[-128.19575945073083,53.04832964764801],[-128.1955048442077,53.04823237254667],[-128.19526198022837,53.04812703141029],[-128.19503436233734,53.04800907510412],[-128.19483022734187,53.04787554351732],[-128.19467107538762,53.047726045905726],[-128.19454955168078,53.04756296123094],[-128.1944491218907,53.047392193141015],[-128.19435607608108,53.04721960166422],[-128.19426866288939,53.04704747036964],[-128.19419236909206,53.04687345523127],[-128.1941151633971,53.046700013013485],[-128.194024045897,53.04652850641781],[-128.19385311771532,53.046368016565225],[-128.1936542055949,53.046298848548105],[-128.1934450154407,53.04621193507026],[-128.19322711168547,53.046119022102296],[-128.19300360587582,53.04602620388183],[-128.1927420856171,53.04592120447197],[-128.1925092603421,53.04581063130871],[-128.19226139365287,53.04571658729928],[-128.19198969761004,53.04564988966743],[-128.191728904902,53.04555888271162],[-128.19147933466434,53.04544973958964],[-128.1912615714305,53.045323181217576],[-128.19109520297178,53.04517829701894],[-128.19097293253583,53.045018585707886],[-128.19087534555422,53.04484831794416],[-128.19079148416682,53.04467219919528],[-128.19071037384882,53.044494899330616],[-128.19062005680442,53.044320577328456],[-128.19050867709214,53.0441544933173],[-128.1903643203363,53.04400135244019],[-128.19017689678915,53.0438647048858],[-128.189961013447,53.04373811829743],[-128.1897368647928,53.04361448274905],[-128.18952276454695,53.04348617630014],[-128.18933983370258,53.04334608107384],[-128.18923894164132,53.04318372038072],[-128.18906900035043,53.04302377055467],[-128.1888987981079,53.04287671247338],[-128.18871202169439,53.042734445625136],[-128.18852808369664,53.04259268187021],[-128.1883634007558,53.04244384364803],[-128.18823262196526,53.04228203638461],[-128.18813958398786,53.042108884005884],[-128.18809221767634,53.04193320761268],[-128.1881306472235,53.04175425422685],[-128.18815125750862,53.041573945248224],[-128.18814666679324,53.04139411254796],[-128.18813920948858,53.04121320300881],[-128.1881215328285,53.04103361294085],[-128.18809269614272,53.04085478582848],[-128.18804249393193,53.040678596915875],[-128.18795506207263,53.04050534035115],[-128.1878343950796,53.04033998206341],[-128.1876916686796,53.04018176769745],[-128.18754056185264,53.040024264557],[-128.1873766311991,53.03987148301127],[-128.18719637190136,53.039728528048045],[-128.18699628205547,53.039599401498734],[-128.1867599010184,53.03949168146246],[-128.18649636396998,53.039400714391384],[-128.18622677582883,53.03931939195238],[-128.18595489949846,53.0392482004106],[-128.185671558033,53.03919011675744],[-128.18538731980212,53.03913260506794],[-128.18510125784064,53.03907624749217],[-128.18481300833085,53.03903169587658],[-128.18451821900703,53.03904163817368],[-128.18421918242416,53.03907800659889],[-128.18392823240325,53.03907161719972],[-128.1836314551387,53.03904292368392],[-128.18331589016407,53.0389579615664],[-128.18308970797318,53.03886629582325],[-128.18282344142014,53.03879499340535],[-128.18255497798512,53.038717004976036],[-128.18227756764855,53.03864702850229],[-128.18200288036442,53.0385753240009],[-128.18175683124886,53.038478983117564],[-128.18156461166865,53.03833904806836],[-128.18132479075643,53.03823642111666],[-128.18105979430334,53.03815332521908],[-128.18079568194545,53.03806908242263],[-128.1805119526936,53.038003146717905],[-128.18023180887516,53.0379522732385],[-128.1799394143512,53.0379178756078],[-128.1796437614211,53.037892514499624],[-128.17934984561515,53.03786486958355],[-128.179057410313,53.03782935850229],[-128.17876906064186,53.037782552198834],[-128.1784790173331,53.03773914846762],[-128.1781843496408,53.03771487758961],[-128.17788663795181,53.03770412324398],[-128.17759441253156,53.03769101590801],[-128.17733714678872,53.03766718259444],[-128.1769928779557,53.03767801934197],[-128.17669435511428,53.03766951001406],[-128.1763967300232,53.03766042735305],[-128.17609761881235,53.03764072626212],[-128.17579792574176,53.03762775222704],[-128.17539616309298,53.03764693558945],[-128.1749159583459,53.03764906247617],[-128.17476122767025,53.037437802230826],[-128.17460543188793,53.03727868377929],[-128.17448499862246,53.03711668034589],[-128.17445657157037,53.036963061241764],[-128.17443010633127,53.03679315583737],[-128.1743311255147,53.03663019187943],[-128.17418461816595,53.03648828180673],[-128.1741284475479,53.036303794601196],[-128.17393367028802,53.036167813767435],[-128.17373339322188,53.0360341849389],[-128.17352218765393,53.03590579716706],[-128.17332288256634,53.035772705781454],[-128.1732161095784,53.0356037144263],[-128.17308568273035,53.03544693372751],[-128.17284291906938,53.03534099019451],[-128.17261004516797,53.03522757302132],[-128.17243450196582,53.03508395353935],[-128.17227434994143,53.03493051736622],[-128.17210601961366,53.034781724555124],[-128.1718898063562,53.03464670012386],[-128.1717117128198,53.03454460384746],[-128.171519978965,53.03437661891941],[-128.17128989300653,53.03426258293586],[-128.17105345349998,53.03415203543151],[-128.17081791239573,53.03404090595007],[-128.17058961147703,53.033925158773584],[-128.17037202686453,53.033799680975385],[-128.17015002645326,53.033679333037846],[-128.16990132568256,53.03358470295457],[-128.16962238892995,53.03352033064035],[-128.1693381243182,53.03346109569937],[-128.16904777683578,53.033410948951264],[-128.16879124292532,53.033327661710615],[-128.1685791248069,53.03319928218829],[-128.16835982612542,53.03307663931441],[-128.16809500163578,53.032995753970084],[-128.16782826848507,53.03291377314409],[-128.1675847058414,53.03281007584125],[-128.16734564724516,53.03270292331558],[-128.16729452921322,53.03252506630523],[-128.16724526315113,53.032347166271634],[-128.16719790817825,53.03216979608613],[-128.167165416847,53.03199103181187],[-128.16712829479246,53.031812917570335],[-128.16710791755327,53.03163336572515],[-128.16709127473436,53.031453754227144],[-128.16704858115222,53.03127629828861],[-128.166965016415,53.03110351214248],[-128.16687036590199,53.03093318054519],[-128.1667572185121,53.03076654266848],[-128.16663120427157,53.03060406901583],[-128.16649410418816,53.03044404084415],[-128.16635151889744,53.030286355265545],[-128.16621442089354,53.03012632673912],[-128.16607183770793,53.029968640793285],[-128.16591000420087,53.029818034181616],[-128.16578302680304,53.02965502130855],[-128.16568191456193,53.02948591943633],[-128.16560022616702,53.02931310682964],[-128.16553985607368,53.02913709579769],[-128.16549343772868,53.02895970759696],[-128.165460087226,53.02878207947536],[-128.16546025297808,53.02860215006326],[-128.16551385789595,53.02842573260854],[-128.16557019745488,53.028248134921796],[-128.16558444179284,53.02806963297714],[-128.16554727267385,53.0278903978692],[-128.16546101398222,53.02771934600538],[-128.16532847273518,53.02755699075126],[-128.16527937861886,53.02738189348799],[-128.16525804217167,53.027201802627204],[-128.1652265319513,53.02702357553007],[-128.16520056542365,53.02684413460871],[-128.16513651038252,53.02666874687303],[-128.1650631651066,53.0264946595956],[-128.16499073245322,53.02631999052614],[-128.16494245281675,53.026142636077836],[-128.16494264953147,53.02596327084916],[-128.164968053457,53.02578344293613],[-128.16506503104182,53.025615188382716],[-128.16521400472107,53.025458875353245],[-128.16538496500206,53.02531224756296],[-128.16540942588964,53.025132436757495],[-128.16556419658738,53.02497994478427],[-128.16573875776388,53.02483100824728],[-128.16579353942853,53.024659608627395],[-128.16577127634028,53.02447953457238],[-128.16573973765318,53.0243007518263],[-128.16569889469253,53.02412269592078],[-128.16565058626543,53.02394478603203],[-128.1655948974564,53.02376868865623],[-128.16552711232268,53.023593369359304],[-128.16543616028497,53.023421847357625],[-128.16538604387412,53.02324508256028],[-128.16535450772503,53.02306629958176],[-128.16532946886988,53.022886841275415],[-128.165311910751,53.02270723664304],[-128.1653018326491,53.02252805965773],[-128.16530013300738,53.022348172812684],[-128.16530310661088,53.022168191184576],[-128.16530700642042,53.0219882015006],[-128.16530812734715,53.021808818837584],[-128.1653147195939,53.021626528688564],[-128.16532579959457,53.021440802053675],[-128.1652492431623,53.021276853617564],[-128.16505648723142,53.02114195159614],[-128.16483594894228,53.02101203432187],[-128.16466405236673,53.020864973671074],[-128.16448450762897,53.02073262631808],[-128.16440822429445,53.02053729292969],[-128.1643554375758,53.02036281856933],[-128.16432489071897,53.02018513799005],[-128.16430917604748,53.02000494316856],[-128.1643018244722,53.01982403882961],[-128.16429631057082,53.01964253575693],[-128.16428898742356,53.019462186882144],[-128.16431132614005,53.019277365607095],[-128.16429495660532,53.019102787784654],[-128.16421377872678,53.01893948840516],[-128.1641207939605,53.01881956917051],[-128.16401669069265,53.01860960773097],[-128.16382255318115,53.01846575204288],[-128.16361310300198,53.01833283110301],[-128.16339768508638,53.0182112294262],[-128.16316951820787,53.01809603128556],[-128.16293317442484,53.01798545777915],[-128.16269322872114,53.01787720086647],[-128.16245420946782,53.017768917525096],[-128.1622187816959,53.017657769813816],[-128.16199146091603,53.01754086795143],[-128.16183060137675,53.01740817415292],[-128.16174671482048,53.017228107585275],[-128.16174391882436,53.01704487746245],[-128.1617150667145,53.01686323700277],[-128.16174536504903,53.01668780331232],[-128.1618365936102,53.01651685770074],[-128.16196077308462,53.01635091297037],[-128.16210877177002,53.01619406447589],[-128.1622994073947,53.01604932115997],[-128.16250519954943,53.01590878362169],[-128.16268179976456,53.015763732005716],[-128.16278862322307,53.01560539562],[-128.1628312671627,53.0154342190598],[-128.1628418865902,53.01525745976014],[-128.16283078098132,53.0150760588154],[-128.16280742382543,53.01489264052629],[-128.16278124680375,53.01470871791131],[-128.16276261994634,53.01452633383933],[-128.1627590364855,53.01434591587253],[-128.16275921362038,53.01416598493846],[-128.16276128562808,53.01398658422371],[-128.16276332933154,53.01380662798429],[-128.16276723867696,53.013626628538965],[-128.16277211725028,53.01344717628952],[-128.16278071305305,53.013267655840444],[-128.16279584756887,53.01308801543892],[-128.1628100280923,53.01290783648732],[-128.16281396590009,53.01272840141087],[-128.16280573802487,53.012548624466454],[-128.16279565954378,53.012368890415914],[-128.162783699711,53.012189181886825],[-128.16276894883313,53.01200953350085],[-128.16275419762374,53.011829876134236],[-128.16273944699532,53.011650227706525],[-128.16272469603544,53.011470570298144],[-128.162710886127,53.01129090457867],[-128.1626989556965,53.011111760393],[-128.16268887755177,53.010932017221116],[-128.16268251699918,53.010752214811475],[-128.16270517198362,53.01057355722515],[-128.16275027548508,53.01039560886963],[-128.16278225982308,53.010216780096485],[-128.16281237793405,53.010037985523596],[-128.1628462276914,53.00985912246757],[-128.16287533400356,53.0096786603774],[-128.16295815372862,53.009507867084146],[-128.16308903146137,53.00934572520013],[-128.16324647354605,53.00919149892412],[-128.1634259924771,53.00904919854512],[-128.16362077974046,53.008913343800955],[-128.16382317176408,53.00878014720414],[-128.1640246508636,53.00864753197709],[-128.16421162844807,53.00850509336842],[-128.16442007131064,53.008380761717135],[-128.16467996327822,53.008294711868125],[-128.16495251740997,53.008219083109644],[-128.16522803317838,53.008146762377066],[-128.16550683980697,53.00808391371041],[-128.165797056924,53.008043266243135],[-128.166089438756,53.008008748388654],[-128.166380609058,53.00796864694744],[-128.16666853048244,53.00791963629749],[-128.16696523125015,53.00791474846719],[-128.16725821953997,53.00794691292931],[-128.16754050184946,53.00800730804402],[-128.16783225405857,53.00805182507987],[-128.16812664993964,53.00805650093803],[-128.1684181045012,53.008021994329596],[-128.16870810358688,53.007977424549004],[-128.16899811699102,53.00793285377952],[-128.16931752224355,53.00793370348739],[-128.1696150622385,53.007927107525255],[-128.16990137146678,53.00788316766993],[-128.17016765788043,53.0077947457071],[-128.17037511060337,53.0076698563232],[-128.17055548238986,53.007526407682384],[-128.17072613708507,53.00737585545874],[-128.17089887142012,53.00722918376493],[-128.1710677719051,53.00708089635988],[-128.17123000544288,53.00692993337714],[-128.17137607129357,53.006773106745804],[-128.17148709558398,53.00660682711081],[-128.1715895441754,53.00643735118762],[-128.17169296070378,53.006268413342795],[-128.1718096658846,53.006103714687086],[-128.1719509687449,53.00594528889205],[-128.17207802686778,53.00578207623108],[-128.17220128076687,53.00561782143308],[-128.17231229880994,53.00545154090772],[-128.17239122634092,53.00527856937696],[-128.1724409270503,53.005099975167866],[-128.1725340107096,53.0049301057077],[-128.17272205557697,53.00479099588339],[-128.17294280368245,53.004670896463246],[-128.17317122904979,53.00455458316207],[-128.17340159012005,53.00443991972821],[-128.17363102410238,53.004325263938995],[-128.17386430331007,53.00421278779399],[-128.1740503887613,53.00407202575704],[-128.17424423626034,53.00393729038171],[-128.17450084546678,53.00384287510514],[-128.1747005033157,53.003711959829936],[-128.17487795151172,53.00356687156615],[-128.17512205033253,53.0034654034375],[-128.17536895347348,53.00336387406035],[-128.17561005797458,53.003258532029626],[-128.17586875513686,53.003168559196055],[-128.17613218013773,53.003079619527576],[-128.17641461747237,53.00303404844976],[-128.1767102713462,53.00302746873585],[-128.17700920417388,53.00303036097621],[-128.17730920566592,53.003036030816176],[-128.17760825294832,53.003041152520616],[-128.1779057796097,53.00305303671868],[-128.17820307628912,53.0030604313231],[-128.17850065313803,53.003054932619996],[-128.17879847368513,53.003054477788616],[-128.17909413355716,53.003029955467944],[-128.17938537237706,53.00299206174326],[-128.17967559890232,53.002952499972785],[-128.17996761858453,53.00291179225351],[-128.18026329956558,53.002905759136226],[-128.1805619523389,53.002921534934174],[-128.18084633618102,53.00296840684318],[-128.1811208488606,53.003041235506394],[-128.18142606025995,53.00303895125853],[-128.18163977270592,53.002927942238436],[-128.1818245413976,53.00278046541315],[-128.18203649184636,53.002653228749224],[-128.1822824488646,53.00255171093632],[-128.18256651156003,53.00250161069775],[-128.18286664007357,53.00250950606282],[-128.1831615838427,53.0025438365113],[-128.18345167905974,53.00253846378847],[-128.18373940031108,53.00248661586568],[-128.18403643932342,53.00247102375173],[-128.18432967923857,53.002435878680785],[-128.18461097052077,53.00234995167637],[-128.18442909274276,53.002244581617994],[-128.1841864328918,53.00213753938312],[-128.183952871459,53.00202583499619],[-128.18375657008886,53.00189439130769],[-128.1836120643863,53.001735074065024],[-128.18346764633586,53.00157744106377],[-128.18332603516322,53.001419755904095],[-128.18318251601568,53.001261549881335],[-128.1830344851629,53.001106225345005],[-128.18285066019106,53.00096277380187],[-128.1827164715777,53.00080438548393],[-128.18262182541608,53.00063406348516],[-128.18253360127457,53.00046137146483],[-128.1824425725773,53.000288740266534],[-128.18230844513937,53.00013147139159],[-128.18210190480846,53.000000214612655],[-128.18201946991695,52.999922147041275],[-128.18185577130626,52.999770474196715],[-128.18171693391494,52.99961217081435],[-128.18160008120532,52.99944562211216],[-128.18150077094603,52.99927537656757],[-128.1814228072229,52.99910250279417],[-128.1814061451677,52.998923445382204],[-128.18140808022173,52.99874292275629],[-128.1814128493999,52.99856290369569],[-128.18141481338935,52.99838294549706],[-128.18141680588224,52.998203542785404],[-128.1814440025241,52.998024229644145],[-128.18148152410052,52.997845855393685],[-128.1814453405563,52.997668280182374],[-128.1813858609725,52.99749169211154],[-128.18133938253592,52.99731375133155],[-128.18130409628728,52.99713559443176],[-128.18125297621646,52.996958295526326],[-128.18115469976848,52.996789716480805],[-128.18108330672692,52.99661727678255],[-128.18110957900902,52.99643798962976],[-128.18107335432018,52.99625984996498],[-128.18100277272953,52.99608515309515],[-128.18090724725508,52.99591540186998],[-128.18078860004562,52.9957500064865],[-128.1806893591488,52.995580879859254],[-128.1806549886666,52.99540214968066],[-128.18062527424493,52.995223333336526],[-128.1806141844181,52.995043616362615],[-128.18061804541102,52.99486417879867],[-128.1806246678472,52.994684125121296],[-128.18069039874132,52.994509713017685],[-128.1808297647043,52.9943513100066],[-128.18092749038985,52.9941819019256],[-128.18094627189586,52.994002188140385],[-128.18089793388359,52.993824281332195],[-128.18072892549597,52.9936777453269],[-128.18057725705447,52.99352360600499],[-128.18044206077502,52.99336300052309],[-128.18031883799506,52.99319936630574],[-128.18022424687476,52.99302959712117],[-128.18011490736825,52.99286346378925],[-128.17999910549304,52.99269857092851],[-128.17996945317486,52.99252087410827],[-128.18006152512163,52.992350450082085],[-128.1801970126076,52.99218932115457],[-128.18032744927848,52.99203893087391],[-128.180587818385,52.991946672628735],[-128.18080359226389,52.991822163805665],[-128.18094501553716,52.99166765029176],[-128.18102571850636,52.99149407258421],[-128.1811432435538,52.99132879061991],[-128.18129495805718,52.99117464216102],[-128.18143999216383,52.991017810038215],[-128.18160500422655,52.99086846414497],[-128.18174879504372,52.99070549334288],[-128.18196757941243,52.990585410553095],[-128.18218040863175,52.99045815530448],[-128.18244527570857,52.99036301120841],[-128.1826626663741,52.9902519211844],[-128.18279315056594,52.990084711211026],[-128.18268756299594,52.98993701212369],[-128.1825916554061,52.98981435264507],[-128.18274241926886,52.989660219593084],[-128.18287226390555,52.98949862649451],[-128.18302782435092,52.989347202286815],[-128.1830502963573,52.98916686304403],[-128.18309161947911,52.98899009373073],[-128.18310013944955,52.988810568927775],[-128.18314892202534,52.98863366135994],[-128.18323905027776,52.98846214902927],[-128.18333787946975,52.988296645621865],[-128.18354788819732,52.98816943969841],[-128.18381958489806,52.98809826348911],[-128.18410983482303,52.98806149515627],[-128.18437485134797,52.987987643313886],[-128.1845455372792,52.98783986453702],[-128.18466592956526,52.98767620219161],[-128.18488663510996,52.987394091133126],[-128.18498240611896,52.987223593588325],[-128.18521456393987,52.98710999129793],[-128.1854477175745,52.98699748212921],[-128.18563659489442,52.98685889754487],[-128.18583486005582,52.98675768905691],[-128.18593085624266,52.98659167058879],[-128.18620113484857,52.98652948324146],[-128.1864325620586,52.98641981110893],[-128.18664172759148,52.98629485692648],[-128.18682110056739,52.98615308347832],[-128.18698037939242,52.98600158425966],[-128.18717786232097,52.98586732142536],[-128.18737162871759,52.98573311824644],[-128.18757694308982,52.98560599163107],[-128.18778115831142,52.98547552188817],[-128.18796329971184,52.98533313009013],[-128.18816657255417,52.985202677109875],[-128.1883515880254,52.98506191732975],[-128.18849086540922,52.98490293990243],[-128.18860552436854,52.98473713719417],[-128.18868431854946,52.98456359712328],[-128.18879615701252,52.9843972815449],[-128.18887995954782,52.984158062366596],[-128.18885477247997,52.983976920201876],[-128.18879172519232,52.98380377260268],[-128.1885584544462,52.98369600052339],[-128.18827445306712,52.98363625422252],[-128.18798442305356,52.98358614363119],[-128.18778304709105,52.98346320416806],[-128.18758842472562,52.98332668639588],[-128.18735434999863,52.98322116903338],[-128.1871174142094,52.98311458327736],[-128.18695380483203,52.98296403624862],[-128.18673844175035,52.98284135466974],[-128.18644721699505,52.98280415913014],[-128.18615432985243,52.98277092187909],[-128.18586398832335,52.982732587479184],[-128.18557859313916,52.98268182908628],[-128.18531922681615,52.982592471609465],[-128.1850987943276,52.98247997058967],[-128.1849133935622,52.98234103545288],[-128.18464198480572,52.98227151370675],[-128.1843694649096,52.982198657770574],[-128.18409437115116,52.98213032415446],[-128.18380400731323,52.98209142915454],[-128.18351105523737,52.982111431965855],[-128.18321446978214,52.9820967488727],[-128.18292027151804,52.982074173474494],[-128.18263568007623,52.98202058608827],[-128.18235752235364,52.98196520177578],[-128.182060002621,52.98198697164174],[-128.18176672893756,52.98201874258781],[-128.18147999761192,52.98206889343472],[-128.18099391319774,52.982126096912566],[-128.18073571464097,52.98204119213388],[-128.18048711999577,52.98194322152079],[-128.18026346805289,52.98182235895604],[-128.17999046422028,52.98175790538956],[-128.17969446274336,52.98173647641924],[-128.1794185124829,52.981669277925],[-128.17913820946274,52.98160832057206],[-128.17889676380867,52.98150404423682],[-128.17871952755468,52.98135989955367],[-128.17847869374975,52.98124944980654],[-128.1782205922265,52.9812026534472],[-128.17792416557523,52.98124568364421],[-128.1776285991282,52.98126908336431],[-128.17734433550993,52.9812216475769],[-128.17708055569935,52.98113683811995],[-128.17683190249002,52.9810377400341],[-128.17659230149718,52.980932860019415],[-128.1763516761094,52.980826321370294],[-128.17612457072394,52.980710564175844],[-128.17587858312194,52.980608607810474],[-128.17563531537863,52.98050492364027],[-128.17540279167386,52.980392628287795],[-128.1751524111651,52.980295791781536],[-128.1749127467324,52.98018979755356],[-128.17472273511487,52.98005093210979],[-128.17450098905474,52.9799300237818],[-128.17422388153454,52.979876287322696],[-128.17392451557404,52.979880125251505],[-128.1736290709595,52.97990575493746],[-128.1733356051425,52.97993358946482],[-128.1730424252168,52.97996702320431],[-128.17274680772476,52.9799892907115],[-128.17244843830716,52.97999423650903],[-128.1721485711887,52.97998798975097],[-128.17184662455597,52.97997786139375],[-128.17155586179408,52.97994903339719],[-128.1713004424946,52.97986293616225],[-128.17106047526073,52.97975076965037],[-128.17077731164872,52.97970609615919],[-128.17048471521576,52.97967785538478],[-128.17018692557264,52.97965755685061],[-128.16988656051447,52.97964178917341],[-128.16958897171102,52.97962541357456],[-128.1693205238773,52.97963147758701],[-128.16921576921646,52.97959024164251],[-128.16905514072815,52.979661026468186],[-128.1688731466648,52.97980674922471],[-128.1686734405012,52.97993486100047],[-128.16837723888057,52.97996385451615],[-128.1680827205111,52.97993452210829],[-128.16779383576122,52.97988770468141],[-128.16752588604396,52.979811919335106],[-128.16735186493756,52.979729921423626],[-128.16699112926685,52.979774672113926],[-128.1667066315825,52.97983203721923],[-128.166428097823,52.97989657424686],[-128.16615251008514,52.979963854554846],[-128.16587693531957,52.980031698966],[-128.1655973887701,52.98009457551585],[-128.16531366907105,52.98014911578825],[-128.16502893798463,52.980201987901935],[-128.16475034221835,52.98026540095789],[-128.16448579644705,52.9803481779198],[-128.16421828859214,52.98042763658484],[-128.16394092882646,52.980497195169825],[-128.1636655042873,52.98056782961634],[-128.16334139964266,52.98067243236332],[-128.1631694135977,52.98075854694605],[-128.1629673808715,52.980896224612906],[-128.16273970956672,52.98100690257117],[-128.16246177336893,52.9810652487619],[-128.1621661293407,52.98110542657869],[-128.1618825411304,52.98116276302112],[-128.1616171727605,52.98124778149608],[-128.16134223750208,52.981309998043955],[-128.1610441421986,52.981320514933856],[-128.16074504955054,52.98132991935066],[-128.16044698219457,52.98134099024709],[-128.16015139190253,52.98132735214905],[-128.15986008697624,52.98128785089887],[-128.1595664482194,52.98125736001138],[-128.15926980519578,52.98124149693822],[-128.15895125603794,52.98123500281157],[-128.15842592323204,52.981254716764624],[-128.15812897994184,52.98126968931859],[-128.15783227833018,52.981289131871804],[-128.15753559018123,52.98130913842865],[-128.15723860427443,52.981322988470474],[-128.1569409494517,52.98132395360809],[-128.1566410909351,52.98129973053931],[-128.15638710179934,52.98122310857146],[-128.1561671528414,52.981099891719374],[-128.15592123948173,52.98099845820683],[-128.15567354758164,52.98089873380524],[-128.1554419574576,52.980785261912615],[-128.15519872317608,52.980681526888866],[-128.15492979433554,52.98060461013618],[-128.15463619244588,52.980574671431704],[-128.15433966955166,52.98056103593802],[-128.15404284938307,52.9805412349594],[-128.15375023017924,52.98051239713571],[-128.1534892346425,52.98042636386029],[-128.153254037067,52.98031519579404],[-128.1529869501288,52.980237676035195],[-128.15269332355425,52.98020716800522],[-128.15239892774946,52.98018003640668],[-128.15211697876106,52.98012240880117],[-128.15183760818562,52.98006024930533],[-128.1515472027599,52.98001959031711],[-128.15125018519683,52.98001436840777],[-128.1509714848789,52.980076064420594],[-128.15070502025034,52.98015828001968],[-128.15041173623402,52.980189981938956],[-128.15013713519153,52.98012997346955],[-128.14988497768272,52.98003368178393],[-128.14964804033352,52.97992478051929],[-128.14941291220777,52.979814724754675],[-128.14917060987844,52.9797104045661],[-128.14891245568936,52.97964336710914],[-128.14864326172747,52.97956083596156],[-128.14840153434392,52.97944921255271],[-128.14817812846596,52.979331093419034],[-128.14792420062798,52.979236515970904],[-128.14768190524583,52.9791321926856],[-128.14742110019657,52.97904950590632],[-128.14726403893746,52.97889597987447],[-128.14709785404852,52.978746548005645],[-128.14699702225155,52.97857910951235],[-128.1470392966521,52.97840009488305],[-128.14704581929337,52.97821500553923],[-128.146911787996,52.97807395571983],[-128.14669726382826,52.97794670377588],[-128.14647580660474,52.97782966706664],[-128.1462164525781,52.977738548044584],[-128.146043156949,52.97759597046744],[-128.1459144204636,52.97743016037967],[-128.1458264071258,52.97725800328163],[-128.14576606614338,52.977079171949505],[-128.14564147061893,52.9769216983754],[-128.14542967528158,52.97679270847909],[-128.14523613112777,52.97665554761959],[-128.14507807726193,52.97650035976703],[-128.14494018000426,52.97633807853057],[-128.1448449558723,52.97617053611707],[-128.1448295226442,52.97599424980571],[-128.14486698035856,52.97581196038697],[-128.1449026863057,52.97563194489197],[-128.14494687444355,52.97545346096285],[-128.1449043860026,52.975277111138475],[-128.14483310465909,52.975103527563064],[-128.14494689764396,52.974936098729565],[-128.14505412875988,52.97476823319897],[-128.1452309281165,52.9745923745381],[-128.14535908986093,52.97443253976346],[-128.14550419937808,52.97427575030051],[-128.14567688624626,52.974129112664315],[-128.14585428197057,52.97398351000342],[-128.14592955843682,52.97381118535289],[-128.14595974965837,52.973632946734554],[-128.14609416895786,52.97346794782977],[-128.14624153306792,52.973318972407114],[-128.14642494040126,52.9731816624834],[-128.14669741505728,52.973108314344735],[-128.14695902017496,52.973022832249455],[-128.1472000230159,52.97291754640696],[-128.1474482778139,52.97282670132785],[-128.1476684090226,52.97269601108847],[-128.1479240622527,52.97260390903298],[-128.14819354375194,52.972526692722624],[-128.1484512289385,52.97243791553403],[-128.14869612321124,52.97233591860899],[-128.148925422512,52.97222075317424],[-128.14916260217976,52.97211384679632],[-128.14940882884164,52.97201967126685],[-128.14957284171493,52.97186814538802],[-128.14971133785733,52.97171034970026],[-128.1498035997107,52.97154219616966],[-128.1500068252987,52.971409567653296],[-128.15019285980722,52.971269405270725],[-128.15032277195604,52.971107846261454],[-128.15049833156883,52.970963390382096],[-128.15059609622392,52.97079344956531],[-128.15068823882928,52.97062304627761],[-128.1507785735748,52.97045380590447],[-128.15083492642535,52.97027677362904],[-128.15085947383287,52.970098079971145],[-128.15088026406397,52.96991888988555],[-128.1508963729757,52.96973922921792],[-128.150887279607,52.96955947268361],[-128.15093241716193,52.969382080022],[-128.15101974604,52.9692089660316],[-128.15104540157893,52.969033615083006],[-128.1510148905325,52.96885480562794],[-128.15100470225354,52.96867170587096],[-128.15114533013625,52.96851947418774],[-128.1513302536355,52.9683759666304],[-128.1515047324868,52.96822873036382],[-128.15163371895693,52.968067742298295],[-128.15175057157722,52.967887926965304],[-128.1520366950105,52.967937630813324],[-128.15232371514332,52.96798675258668],[-128.1526123319236,52.96803024824663],[-128.1529075116656,52.968056242604085],[-128.15319934686255,52.96808957966281],[-128.15347253455317,52.96816026032284],[-128.15374754501073,52.96822977702262],[-128.1540378153025,52.96826931087141],[-128.15433405402015,52.96827903168569],[-128.15463081974715,52.96828088584386],[-128.15487342735707,52.96837397855494],[-128.155034233669,52.96852798272693],[-128.1551947005258,52.968675266635756],[-128.1554645225657,52.96875273062478],[-128.1557352415903,52.968829612588074],[-128.15600765537746,52.96890309979175],[-128.1562738502495,52.968982861480164],[-128.15653573445255,52.969069436734074],[-128.156811481804,52.9691350137825],[-128.15709853044427,52.969184123615804],[-128.15739273947824,52.96920900364748],[-128.15769072109234,52.969216442140194],[-128.15798840485343,52.969217715108556],[-128.158286130571,52.96922010760116],[-128.15858338657262,52.969231476308885],[-128.15888115553972,52.969234422546116],[-128.1591782275829,52.96922393723289],[-128.1594619960356,52.96917165137784],[-128.15975267914564,52.96912708536083],[-128.16002315203622,52.96919891296417],[-128.16030491059811,52.96925428230306],[-128.16051926089844,52.96937815013382],[-128.16070737119122,52.969518193560525],[-128.1609638172384,52.969607657054446],[-128.161290861317,52.969672847722684],[-128.16165030666605,52.969567599935196],[-128.16190088774783,52.96948677002796],[-128.16208445580563,52.96935391542327],[-128.16230209080786,52.969230533527146],[-128.1625391632096,52.96912248003346],[-128.16281478655807,52.96905688298448],[-128.16310360121253,52.969012342926206],[-128.16339348257674,52.96897058965889],[-128.16361319562566,52.96894301212073],[-128.16384889100536,52.968753144692585],[-128.16402722735077,52.9686091814303],[-128.16423908902573,52.96848252968226],[-128.16448096431768,52.96839569270447],[-128.1647779881245,52.96840256578771],[-128.16507384438714,52.9684049753901],[-128.1653575143436,52.96835099083058],[-128.1656211017806,52.96826935754965],[-128.16590872658477,52.96821978311322],[-128.16618119290243,52.96814750970684],[-128.16646710885644,52.96810133741977],[-128.16676475630814,52.96810202373632],[-128.16706178972757,52.96809095405985],[-128.16735458739257,52.9681063107281],[-128.16764804401737,52.96815303497745],[-128.16798986688107,52.96801390398505],[-128.16827575118828,52.967967162825914],[-128.16856902350904,52.96793710069984],[-128.1688589354276,52.96789588920425],[-128.16914662495216,52.96784799160551],[-128.169433360435,52.96779954585307],[-128.1697212350274,52.96775500656981],[-128.1700079408782,52.967706003896964],[-128.17028550703841,52.96764259524584],[-128.17054502432725,52.96755429934361],[-128.1708155572392,52.96748092954432],[-128.17110989173685,52.96745363956035],[-128.17140722038545,52.96744815864027],[-128.1717054735421,52.96744265992264],[-128.17200195283814,52.96745737210532],[-128.17229853330886,52.96747376774312],[-128.172595437486,52.96747838112841],[-128.1728921788601,52.96746169676306],[-128.17318810595933,52.96748369851895],[-128.1734819439722,52.96746482412588],[-128.17372875701864,52.967365544952834],[-128.17392716314117,52.96723184099988],[-128.17411596136142,52.96709270875588],[-128.1744645043689,52.967103646576746],[-128.17475776636053,52.967073569031086],[-128.1750555925861,52.967078159146986],[-128.1753527807935,52.96708836556688],[-128.17565008375647,52.967100811229365],[-128.17594815443871,52.967109878797764],[-128.17624798864568,52.96711723593273],[-128.176536969184,52.96709451541663],[-128.1768092097813,52.96701830188026],[-128.17709691285833,52.966970940362216],[-128.1773825656504,52.96691969682009],[-128.17766212336275,52.96685904077092],[-128.17794361614634,52.96679946034757],[-128.1782241691212,52.96673990558368],[-128.1785046060893,52.96667810119979],[-128.17879117978282,52.96662683713299],[-128.17908874369024,52.966589942763626],[-128.17935511972635,52.966526719345076],[-128.17945486379622,52.966452570047664],[-128.1794894159409,52.96636224613678],[-128.17953824519617,52.96618645767696],[-128.17954528646507,52.96605067946394],[-128.17957866451215,52.96601025978585],[-128.17976144491266,52.965863381910324],[-128.18003066136777,52.96580122532439],[-128.1803251427394,52.96575877945351],[-128.18060752056672,52.96569861999398],[-128.18086612255445,52.965611438643904],[-128.18105782279756,52.965475039014144],[-128.18125267040944,52.965345316069616],[-128.18150719576147,52.965251473407235],[-128.1817877620395,52.9651924656196],[-128.182060124506,52.96511903536929],[-128.18230888284313,52.96502194353848],[-128.18249368598097,52.96487838678257],[-128.18273576197902,52.96479654763963],[-128.1830369465375,52.96477582673985],[-128.1833259984647,52.96473683697047],[-128.18360947723315,52.964680012846046],[-128.18389099033405,52.96462154736577],[-128.18417882827444,52.96457697267442],[-128.18446033945057,52.96451849687013],[-128.18475200031938,52.96449402894077],[-128.1850462915688,52.96446614830021],[-128.18529704686955,52.96437181104493],[-128.1855310006237,52.96425929198222],[-128.185799583531,52.96416686490491],[-128.18600331608678,52.964083488303],[-128.18606038818675,52.9638688622398],[-128.18616124348358,52.96370779939979],[-128.18626507406483,52.96355004439966],[-128.1862816676971,52.96336476109886],[-128.1864308926794,52.96321905991554],[-128.18664360018948,52.96309235003724],[-128.18686767657957,52.96296935684363],[-128.18707653906176,52.96284048435618],[-128.18730468624233,52.96272414104803],[-128.1875127506141,52.96259808071818],[-128.18765476081342,52.96243905006599],[-128.187700979073,52.9622677898533],[-128.18765936365438,52.96211161396054],[-128.18768732397217,52.96191154520146],[-128.18769112354437,52.96173154832657],[-128.18773045026362,52.961553124628246],[-128.18777070156025,52.961374692684124],[-128.1879081550086,52.96121798829464],[-128.1880578161966,52.96106274297991],[-128.18809253193783,52.960885534751725],[-128.18812999241788,52.96070714545753],[-128.18816931681044,52.96052873046222],[-128.18817967341013,52.960349167594906],[-128.18818349934264,52.96016972605151],[-128.1881779774886,52.959989893162216],[-128.1881538473826,52.95981097102924],[-128.1880934826068,52.95963496426744],[-128.18802200854844,52.95946028494052],[-128.18798578686213,52.959282152411205],[-128.18803359086425,52.959105256859964],[-128.18802996251878,52.958925953697815],[-128.18801698672436,52.95874625917662],[-128.1880021478207,52.95856660822189],[-128.18797341024586,52.95838889260072],[-128.18789454173273,52.95821547156832],[-128.18781473457955,52.95804206791569],[-128.18770804150242,52.95787196187294],[-128.1876699737502,52.95769386342105],[-128.18756617167273,52.957525389617224],[-128.18746604006762,52.95735572647006],[-128.1874298220401,52.95717758458308],[-128.1873044856452,52.95698933134692],[-128.18748556742887,52.95684695529443],[-128.1876030151521,52.956682218693594],[-128.18776976457312,52.956533381989296],[-128.18798246370886,52.95640723366023],[-128.18821063153658,52.95629200814251],[-128.18846812117474,52.95620258679366],[-128.1887207990269,52.95611044713996],[-128.18900112208902,52.956048061857246],[-128.1892725029224,52.95597518750698],[-128.18951522565695,52.955870899406314],[-128.18975306511663,52.955762217310905],[-128.18999188535088,52.955654637534074],[-128.19022976515035,52.95554707473593],[-128.1904685543619,52.95543893846026],[-128.19070739958514,52.955331912730024],[-128.1909481939083,52.955226536309446],[-128.19119087964555,52.95512168919037],[-128.1914345606456,52.95501793512158],[-128.19168212618067,52.95491748039774],[-128.19193567093205,52.95482419629794],[-128.19220207035386,52.95474524622886],[-128.19248040034478,52.95468064731562],[-128.19275468468427,52.95460995268865],[-128.19302096575132,52.95452876076468],[-128.19328432759818,52.95444538044825],[-128.19354761691113,52.954360323746975],[-128.19380996551178,52.9542752749915],[-128.19407329558746,52.95419133738],[-128.19433765025792,52.95410905718651],[-128.1946040407449,52.95403010165064],[-128.19488044114294,52.953964411774436],[-128.1951690619493,52.953918672720704],[-128.19545561610073,52.953869043240225],[-128.19574217004623,52.953819422021056],[-128.1960277699018,52.95376925286393],[-128.19631013246564,52.95371073084751],[-128.1965916420608,52.953653910145206],[-128.19688631334836,52.95363495970627],[-128.19718426410296,52.953625480944496],[-128.19748201197294,52.95361207696823],[-128.19778056818703,52.953596414998444],[-128.19806336151066,52.953546293210984],[-128.198334667886,52.953472277599545],[-128.19860486092767,52.95339492787432],[-128.19888122184096,52.95332866410737],[-128.19916464682018,52.95327292243681],[-128.19945116323615,52.95322272769933],[-128.19973879191215,52.953175874698694],[-128.2000004067208,52.95314913035529],[-128.20003194002211,52.953145733993026],[-128.20032049179954,52.95309886230007],[-128.20064216863756,52.952971218307844],[-128.2008798906054,52.952861393840784],[-128.20116177988527,52.95281183738495],[-128.20145995578915,52.952806827775596],[-128.20175791690946,52.95281583040544],[-128.20204639404096,52.95285752089229],[-128.202314322219,52.952934904486604],[-128.2025872658301,52.953018929097404],[-128.20285106740673,52.952962424423525],[-128.20311223249342,52.95287289219957],[-128.2033917192334,52.9528132945819],[-128.2036772160449,52.95276142237802],[-128.2039596198943,52.95270401094016],[-128.204255379691,52.95268838472991],[-128.2045526192573,52.95270131308452],[-128.20484602216905,52.952676204831114],[-128.2052779603635,52.95262494958945],[-128.20557461457008,52.95260874723916],[-128.20587206733836,52.95260765926198],[-128.206167680305,52.9525892237912],[-128.20639205160867,52.952474032621986],[-128.20660863442467,52.95235226048038],[-128.20687487492165,52.952271037127225],[-128.2071117400553,52.95216290182561],[-128.20738105663074,52.95208722501797],[-128.20759955614915,52.951966536082345],[-128.2077852865726,52.95182571669767],[-128.20800066158137,52.95169892408005],[-128.20824061341108,52.95159632490862],[-128.20853566612183,52.9515672480525],[-128.2088324839204,52.95159027210494],[-128.2091118089074,52.95165341753602],[-128.20940380168298,52.95167315848104],[-128.20970107326664,52.95166870086327],[-128.20999938539396,52.95166646512662],[-128.21029119657047,52.95170079032456],[-128.21057719189918,52.95174866801758],[-128.21086158669675,52.95180162443503],[-128.21115442604219,52.95180173071876],[-128.21143795613037,52.951748199161855],[-128.21170823086914,52.95167305927598],[-128.21198097931494,52.95160963916151],[-128.21229437055325,52.951502853579434],[-128.2125089090697,52.95145005065818],[-128.2127965990074,52.951404850183216],[-128.21308963802213,52.951372992483854],[-128.21338282252722,52.95134393850524],[-128.2136665943739,52.9512954462758],[-128.21396400194746,52.95131171085447],[-128.21426188292654,52.95131900607776],[-128.2145163619724,52.95124526876063],[-128.2146599805203,52.95108393841115],[-128.21489200746575,52.950973070699334],[-128.21514846924683,52.950883599452254],[-128.21542106190938,52.95081737585157],[-128.2157158507714,52.95080117376202],[-128.21600219670333,52.95085576719203],[-128.21626137163943,52.950908064201684],[-128.21653153334182,52.95092035079068],[-128.21679434944016,52.95091708883548],[-128.21705250905927,52.95093184238253],[-128.2173464178286,52.95091678284327],[-128.21763865717028,52.95088773594891],[-128.2178718163384,52.950959577936544],[-128.21814950413022,52.95091959302185],[-128.2184956011681,52.95095735056906],[-128.21879331925172,52.95096183016922],[-128.21908961678534,52.95095681103769],[-128.21935682226936,52.95087666168722],[-128.21960148080115,52.95077563611013],[-128.21979878472382,52.950642991288014],[-128.22006793765053,52.95056448067672],[-128.2202718560547,52.95043339639073],[-128.22046427167243,52.950296358188595],[-128.2206498937604,52.95015439839127],[-128.22088075334418,52.950056993507985],[-128.2210926428043,52.949953784520275],[-128.22124476683842,52.949813020661765],[-128.22179180521167,52.94944899054926],[-128.22218772846128,52.949137702994314],[-128.22245281978473,52.94885691101294],[-128.22255959462535,52.94866935941856],[-128.22269363130076,52.94845045853234],[-128.22280155232065,52.94823148548849],[-128.22282960871925,52.94809026337276],[-128.22285861809956,52.94794957930244],[-128.22275157214986,52.94770327429416],[-128.22275020726354,52.94760576514978],[-128.2226287884528,52.947441579989416],[-128.22253131349058,52.94727132825596],[-128.22242015125485,52.947106949249616],[-128.22230153683927,52.94694270184326],[-128.22219215149508,52.94677660295828],[-128.22208799347843,52.94658574129457],[-128.2220645592989,52.94644044173473],[-128.22199493621028,52.94625004921083],[-128.22195870055904,52.94607416569625],[-128.22200623150422,52.94589501498664],[-128.2220127881974,52.94571719368633],[-128.22200153648748,52.94553747528379],[-128.2220188770087,52.94535160275327],[-128.22199955562135,52.945178198151986],[-128.22198179085973,52.94499860262708],[-128.22201629326685,52.94482025374774],[-128.22213080158548,52.944656098900445],[-128.22233751635054,52.944525513189255],[-128.22255388115883,52.944401471445566],[-128.22274338706384,52.94426279717549],[-128.22285594004953,52.944096992281935],[-128.22298833891904,52.94393641794668],[-128.22312639922794,52.94377685760393],[-128.22329870937418,52.94363066835737],[-128.22351898332127,52.943509914084984],[-128.22375572789204,52.94340118026372],[-128.22403411141374,52.94333986631551],[-128.22430868010565,52.94327693764878],[-128.22457686870192,52.943198998597595],[-128.22483716539273,52.94311280434296],[-128.22505549584898,52.94299096266222],[-128.22550093800055,52.94295058633998],[-128.22580502492215,52.94297062212337],[-128.2260981723939,52.942942100818016],[-128.22639338733356,52.942917459023676],[-128.22666795903245,52.94296159383211],[-128.2269490016833,52.94296916547961],[-128.22723409213623,52.94301814940613],[-128.22754550004277,52.943035800008346],[-128.22772726345627,52.94305254006112],[-128.22798624422597,52.94310145127437],[-128.22819169690453,52.94319677508714],[-128.22845172076703,52.94322997019931],[-128.22884056901108,52.943248393573555],[-128.22912702732648,52.94323456564665],[-128.2293648866402,52.94325416027756],[-128.22970327353127,52.943252800650924],[-128.22999027348712,52.94321373117968],[-128.23027039234648,52.943150127218416],[-128.23053758647498,52.943071072107436],[-128.23078111720852,52.94296780064901],[-128.23099472123457,52.942844916080354],[-128.23121736085156,52.942734191910425],[-128.23139531569234,52.9425895602881],[-128.23149196208303,52.94247673942421],[-128.23173535043287,52.94229947600702],[-128.23184780444274,52.94213254233667],[-128.23193105152808,52.941959991789275],[-128.23199832401102,52.941784945792925],[-128.2320910172004,52.941614467124964],[-128.23218463317232,52.94144396188452],[-128.23224439349153,52.94126793701354],[-128.23239901477228,52.94110525238889],[-128.232583938696,52.940933580039044],[-128.23269135527676,52.94077738680916],[-128.23271951916135,52.94062101959922],[-128.23277500504244,52.94041704786341],[-128.2328038460374,52.940291502506824],[-128.2330149032639,52.94012045466646],[-128.23309359277204,52.94007411776826],[-128.23338361929297,52.94004002253805],[-128.23368403321794,52.94002591826318],[-128.23398457881854,52.94001460898889],[-128.23427683482672,52.939987195833595],[-128.23454356299527,52.93991767365952],[-128.2347857890516,52.9398076913476],[-128.23504303650085,52.939717603119554],[-128.23532852454593,52.93966789375657],[-128.23562108359843,52.93962870434652],[-128.2359054257594,52.93957509594593],[-128.23620020257368,52.93956052721471],[-128.2364985461649,52.9395604643133],[-128.23678811080626,52.939517409485056],[-128.2370608320609,52.93945560632265],[-128.23735394777682,52.93942705693526],[-128.23764251242292,52.9393828889039],[-128.23791883982324,52.93931878191399],[-128.238157387081,52.93920998344517],[-128.23842206401923,52.939137118960986],[-128.23863233652474,52.93905800590977],[-128.23894550952332,52.93895002861984],[-128.23931047283796,52.93890496815136],[-128.23959607320074,52.93887543494677],[-128.23993495636606,52.93883086875418],[-128.24016923344712,52.938800624691815],[-128.2404817954343,52.93878738378217],[-128.24071623932764,52.938777880389],[-128.24100868432222,52.93878968537713],[-128.24128965879663,52.938849359564095],[-128.24159782216537,52.93884124891387],[-128.24188311227903,52.93885880250553],[-128.24222071647392,52.93886077549029],[-128.24258466895165,52.93883198458057],[-128.24279252840407,52.938848760051016],[-128.24310391225006,52.93886636955228],[-128.24336413064668,52.93886813682884],[-128.24362465537277,52.93882281118035],[-128.24394298683956,52.938742193600106],[-128.24429786679983,52.93857678618358],[-128.24455365205014,52.93865374956666],[-128.24485445120746,52.938647456933545],[-128.2451513916785,52.938638429879155],[-128.24544772607413,52.93861820255088],[-128.24574203499486,52.93859464979136],[-128.24604159155925,52.93856482556856],[-128.24625183983343,52.93850308069438],[-128.2464206485949,52.93832776424277],[-128.24658238251666,52.93817725591826],[-128.24675360589666,52.93802992055385],[-128.2469219529766,52.9378809626338],[-128.2470826854712,52.93772935152247],[-128.24720086213392,52.93756621149358],[-128.2472736529857,52.93739104961181],[-128.24735681382364,52.93721793186864],[-128.24747670305146,52.93705196047241],[-128.2476836729982,52.93692861431218],[-128.24794659701968,52.93684063069671],[-128.24812741952653,52.9366987152377],[-128.24819479460902,52.93652701937375],[-128.24816945740366,52.93634756946934],[-128.24810147141227,52.93617228855612],[-128.2480752402895,52.93599341175039],[-128.24805735444235,52.93581381945006],[-128.2480061632243,52.93563878269237],[-128.24798088603652,52.935460443671985],[-128.24798070306522,52.935280513178625],[-128.24797493181313,52.93510068043576],[-128.24797757955804,52.93492125190663],[-128.2480035613378,52.93474249877034],[-128.24811877717187,52.934576615554384],[-128.2482358994039,52.934411260814436],[-128.2483209573459,52.93423922676135],[-128.24840481788172,52.93407954773544],[-128.2486666065392,52.933988220345285],[-128.24891979775015,52.9338931282546],[-128.2491352848049,52.933772414475534],[-128.24939265791392,52.93368565422868],[-128.2498170434065,52.933478548813156],[-128.25006513624572,52.93337514771438],[-128.25024114029927,52.93323052211459],[-128.25042004793175,52.933088082922716],[-128.25069738687947,52.93302672350797],[-128.25096747293972,52.9329514837246],[-128.2512295752676,52.93286631495361],[-128.2514623757317,52.93275591153331],[-128.25172163031337,52.93266967497989],[-128.2519196590346,52.93253639246495],[-128.2521013742779,52.93239446181219],[-128.25229460383898,52.93225847213156],[-128.2524117179754,52.932093668799325],[-128.2525486909004,52.93193409078707],[-128.25268089554345,52.931772361621384],[-128.2527172989178,52.93159732661877],[-128.25272998455623,52.93141434170937],[-128.25287121257196,52.93126477179197],[-128.25315124849163,52.93120167741056],[-128.25334461730273,52.93106848138276],[-128.253540682355,52.93093355617876],[-128.2537319640664,52.93079647998527],[-128.25393376237932,52.93066425153575],[-128.25408878114382,52.930511052466024],[-128.2542626745218,52.93036253214166],[-128.2545499803495,52.93033124238098],[-128.25481719750638,52.93025493599759],[-128.25503244147754,52.930130286739036],[-128.25521885880528,52.929989381683214],[-128.25533692345073,52.929825112734754],[-128.25533151238136,52.929494486158426],[-128.2555027303912,52.92934826623121],[-128.25564821902955,52.929191319045536],[-128.25582895392824,52.929048835583515],[-128.25604418931422,52.928924193342816],[-128.25626146341196,52.92880286597777],[-128.25644216515673,52.92865982602924],[-128.25659812075523,52.92850716126562],[-128.25670010189805,52.92833872353556],[-128.25686275904184,52.92818929319339],[-128.25706264305038,52.92805653041534],[-128.25721570448275,52.92790224300712],[-128.25723245062835,52.92772590564712],[-128.25713488291453,52.927555689486006],[-128.2570928119699,52.927377673035615],[-128.25701747382723,52.92720478811957],[-128.2569329284924,52.92703431302237],[-128.25691033097485,52.92685424576518],[-128.25682574275052,52.92668265924518],[-128.25672357496416,52.92651364309274],[-128.2566205292903,52.9263457737774],[-128.2565812329955,52.926167147786586],[-128.2565160444044,52.9259923816861],[-128.25637810861582,52.92583414125518],[-128.2562542519991,52.925677881910474],[-128.25618347897046,52.925503222696825],[-128.25601895264697,52.925353339577704],[-128.2558526251531,52.925204620861],[-128.25567899834274,52.92505884017387],[-128.25545531735662,52.92484787247673],[-128.25522841431805,52.924734503825285],[-128.25504385608932,52.924593416251064],[-128.25486476681243,52.924449981345894],[-128.25470665542971,52.92429773127995],[-128.25452488655282,52.924156589471686],[-128.2543421658511,52.92401490955348],[-128.25407185053044,52.923943852067566],[-128.25377647477094,52.92389233309864],[-128.25363261993385,52.92376279606768],[-128.25362550267013,52.923575704872654],[-128.25360853664603,52.92339608511409],[-128.2536075053442,52.92323578426477],[-128.26602678661072,52.91986761839431],[-128.266146215693,52.91981766541371],[-128.26629885992767,52.919726720689624],[-128.26635293878766,52.91958721463697],[-128.2662984751347,52.91942178017257],[-128.26626799527511,52.919322021502126],[-128.26628311287757,52.919290903632096],[-128.2662891895276,52.919282373597596],[-128.26629510245314,52.919271048370355],[-128.26630794121104,52.91924949953449],[-128.266313854127,52.919238174306145],[-128.26635538027662,52.91919533636766],[-128.26647811189048,52.91910271633024],[-128.2666481938825,52.91898901245152],[-128.2667942779076,52.91886230813525],[-128.26687524149332,52.91875536160127],[-128.2669000982839,52.91869714877375],[-128.26691944274285,52.918622781242156],[-128.26695857954635,52.91850037967003],[-128.26699691316205,52.91839761786552],[-128.26700683102587,52.91835650986758],[-128.26702693638728,52.918314075449295],[-128.2671241194428,52.91821410797253],[-128.26723335134807,52.9181127780914],[-128.26729282284128,52.91805726143625],[-128.26734794481288,52.91800742527483],[-128.26740043071965,52.9179604472092],[-128.2674536314277,52.91790953585548],[-128.2675453759714,52.91781247114185],[-128.26765223565127,52.91768427931439],[-128.26772760938272,52.91757743978145],[-128.26777928758173,52.91749796419218],[-128.26784734764092,52.917393507812875],[-128.2679437493845,52.917261597768714],[-128.2680513958954,52.91713059196442],[-128.26815683709822,52.91699346680068],[-128.268260072204,52.91684964827589],[-128.26834454321894,52.91673871333682],[-128.26840485992614,52.91668149352283],[-128.268514418222,52.916639020014635],[-128.26862925628407,52.91652076345895],[-128.2686724466567,52.91633438709875],[-128.26877752528793,52.916190532444155],[-128.2689628229085,52.916047937771154],[-128.26917267640488,52.91587684069525],[-128.26939043307777,52.915801452368],[-128.26954508780872,52.91576595577824],[-128.26962252617446,52.91568037650837],[-128.2696522757171,52.91560917092844],[-128.26966685166386,52.91556796373197],[-128.26959727500608,52.915503724121876],[-128.26947969018738,52.91539555624719],[-128.26948420369908,52.915270466919196],[-128.26954166969463,52.91519479815776],[-128.26955365707542,52.915174951473844],[-128.26961455624672,52.91516368628334],[-128.26977220234733,52.91513205111266],[-128.26994418776405,52.91507211956922],[-128.27009241134422,52.914968356915864],[-128.27022314733514,52.914851477902936],[-128.27031385344205,52.91477012656452],[-128.27038243032376,52.91471050386642],[-128.27045069347497,52.91464528148981],[-128.2705126271523,52.914583544649695],[-128.27059910080254,52.91449274059422],[-128.27068834442017,52.91440132690914],[-128.27072068727657,52.91436146275444],[-128.27074108621028,52.914324636481375],[-128.27079467624785,52.91424624345619],[-128.2708512424501,52.914153774233526],[-128.27088721110567,52.91405946930612],[-128.27092324856943,52.913931519911856],[-128.27099718853353,52.913797798107595],[-128.27108337895004,52.91371934056302],[-128.27111950639264,52.91369789749831],[-128.27112566869533,52.913673678525306],[-128.27112928203408,52.9136366111863],[-128.2711337112248,52.91357990368273],[-128.27113306355858,52.91353282836176],[-128.27114437486387,52.9134827237791],[-128.2711806109235,52.9133934541768],[-128.27122588587966,52.91329896041996],[-128.27124427263047,52.91325936553724],[-128.27126473033198,52.91322365913361],[-128.27130378353056,52.9131522732998],[-128.27135971068282,52.91308280389766],[-128.27142175723836,52.91300592440649],[-128.27145376399525,52.912924584318496],[-128.27145290708924,52.912873593510994],[-128.27145354352743,52.9128505933799],[-128.27147606211003,52.912853521950744],[-128.2715682549479,52.91288761806819],[-128.27174535025887,52.9129060646705],[-128.27198295511346,52.91283644948046],[-128.27221670985043,52.91272934549712],[-128.27237304186383,52.9126556937041],[-128.27246487498974,52.9125956203165],[-128.272533789151,52.91254271648363],[-128.27262399934585,52.91248715887424],[-128.27275078705011,52.912435944070054],[-128.27288098693904,52.91239643067837],[-128.27300242479367,52.91233242136302],[-128.27323934805855,52.91223254588232],[-128.27355534209124,52.91216533190062],[-128.27369716217333,52.91215137920758],[-128.2737335865074,52.91213554420372],[-128.27381757038725,52.912085711679886],[-128.2740976423735,52.911956406687864],[-128.2745676289556,52.91178923833548],[-128.2748685906682,52.91171951302114],[-128.2749740307741,52.911722523377165],[-128.27503474807096,52.91172526854202],[-128.27508816671894,52.91166145138118],[-128.27516229937478,52.911531651198466],[-128.27519428708496,52.91146768344784],[-128.27521293271516,52.911467887840196],[-128.27531720900643,52.911466426851106],[-128.27553687146494,52.91146217749222],[-128.27577451044002,52.91146318562825],[-128.27594060709626,52.9114678198866],[-128.27606382835677,52.9114721624309],[-128.2761602442931,52.91148038699228],[-128.27620322958103,52.9115003007933],[-128.2762129911399,52.91152589817401],[-128.27622802760231,52.91156316098895],[-128.27625698322998,52.91163435377511],[-128.27641956148412,52.911729868016835],[-128.27674676633413,52.91178519793218],[-128.27711049376865,52.91175685533418],[-128.27740399987343,52.91166989454763],[-128.27753560003018,52.91160456245037],[-128.27756674672705,52.911577051918044],[-128.27757926807976,52.911567275262016],[-128.27761569047092,52.91155143905074],[-128.27768949333196,52.91153767736597],[-128.2777903410463,52.91152451305617],[-128.27786171844798,52.91151752509154],[-128.2779188476953,52.91152314559479],[-128.27801309329547,52.911543178201185],[-128.27812394911425,52.91157747286703],[-128.2782518772707,52.91158284311125],[-128.2784390581934,52.91152876599714],[-128.27864935639042,52.91148881561191],[-128.27878927194598,52.91149171075552],[-128.2788800345802,52.91151629472805],[-128.278942280746,52.911547601914066],[-128.27896617233594,52.911558915513915],[-128.27898457774822,52.911554630418465],[-128.27903994455855,52.91154458851095],[-128.27916424850463,52.9115343319663],[-128.27936955819519,52.91154044385906],[-128.27961342710645,52.91155310002642],[-128.27981599715662,52.911560385383325],[-128.27995327784907,52.911566128595105],[-128.28006172738193,52.91157299558048],[-128.28012159678204,52.911577440760475],[-128.280196268842,52.91157992172217],[-128.28031958059685,52.91158593530231],[-128.28056019382782,52.91157286630163],[-128.2809653891132,52.91153585967333],[-128.28126698250298,52.91151319359788],[-128.28140758822278,52.911528960934454],[-128.28153514063024,52.91156180744901],[-128.28165833153855,52.91160033519042],[-128.28183274534373,52.911655816422815],[-128.2820171803485,52.911707174489685],[-128.28219886018775,52.91179389733248],[-128.28242210265847,52.911943162630315],[-128.28258819423922,52.91203468092299],[-128.2826975758842,52.91205890069303],[-128.28280135084822,52.91210005532889],[-128.28283905493626,52.91212566602364],[-128.28292109162837,52.912074187351614],[-128.28313273128524,52.911937784353825],[-128.28337251080066,52.91182213645601],[-128.28359905696186,52.91178970978103],[-128.28387888262074,52.91177810603265],[-128.28419729847587,52.91177360921823],[-128.28444668770013,52.911802400361495],[-128.28461879343647,52.91184950928458],[-128.28476618820557,52.911887563722836],[-128.2848944638404,52.911899090821144],[-128.28502917885183,52.91189198927795],[-128.2851330951764,52.911883799714786],[-128.285245666663,52.91188049155066],[-128.28539605553803,52.911887659980465],[-128.28558266839363,52.91187506484816],[-128.28581949948088,52.91177404403142],[-128.28598158566618,52.911617296846536],[-128.2860351442445,52.911538896751374],[-128.28608072960537,52.91153745469431],[-128.2861359079768,52.91154142293966],[-128.28624625029445,52.911548812513324],[-128.2864226482726,52.911571726232154],[-128.28659019623373,52.91158585151887],[-128.28669821655177,52.911567490438244],[-128.28673820801018,52.91154877459708],[-128.28676646220114,52.91155439609893],[-128.28686690755873,52.911602894924464],[-128.2870484128896,52.911651494824476],[-128.2871963082212,52.9116469418566],[-128.2872762039629,52.91164258090221],[-128.28735650056916,52.91166288632966],[-128.28747770223166,52.911647075557276],[-128.2876057288731,52.91158459977722],[-128.28766072344357,52.911550460805636],[-128.28773890810618,52.9115489401671],[-128.28788666158377,52.91155895504505],[-128.2879654481062,52.91156863403611],[-128.28801886548393,52.911591704153516],[-128.28815186579757,52.91169114148727],[-128.28824778542486,52.91184623632878],[-128.28824632818163,52.91195781447719],[-128.28822840948587,52.91200581635875],[-128.28829155573166,52.912088674057635],[-128.28844383529045,52.912252197564435],[-128.2885996287018,52.912411732978036],[-128.2887294468382,52.912538704219216],[-128.28892995036247,52.91269792534076],[-128.2891854704682,52.91285776165731],[-128.2892987073879,52.91291890723119],[-128.28925652271215,52.91293149580718],[-128.28916611247197,52.91296576863037],[-128.28909563302798,52.91305851828583],[-128.2890296592143,52.91321788403589],[-128.28894133529914,52.913360302359656],[-128.28882891022394,52.913470120181096],[-128.28870496901052,52.91357400011803],[-128.28863418604513,52.913661140621805],[-128.28860157963607,52.91373073007388],[-128.28855082292884,52.9138090767576],[-128.28846447362383,52.91391894292821],[-128.28835853377242,52.91404545124917],[-128.2882629154764,52.91417344487426],[-128.28820427912657,52.91427885217209],[-128.28817372819933,52.91435175594382],[-128.2881258101703,52.91444855057275],[-128.28803464098516,52.91457252890937],[-128.28794261884275,52.914663445439125],[-128.2878907368204,52.91470369465582],[-128.28785349812378,52.91472180117704],[-128.2878308364555,52.91473345338899],[-128.28788969058246,52.91480573932938],[-128.2880103351718,52.914952505273],[-128.28806796048042,52.915036591548194],[-128.28807336926735,52.915067878439515],[-128.288092636443,52.91516616454767],[-128.28811460308694,52.91529747643759],[-128.28812572177765,52.915365650081405],[-128.28813470333506,52.91539406012089],[-128.28816326560505,52.91544003659452],[-128.28830584708686,52.9155790835923],[-128.28863844466747,52.915872524315084],[-128.2889665703842,52.91615203233749],[-128.28910634647013,52.91627319465288],[-128.28915466181394,52.916322706041484],[-128.2892090592093,52.916381068222826],[-128.28938536989838,52.916523386085736],[-128.28978539726478,52.91682279436503],[-128.29019186380054,52.91712039874735],[-128.29036479303764,52.91725156957133],[-128.29041608106849,52.91728700377697],[-128.29047507275675,52.91732678152265],[-128.29059385670803,52.91747358112873],[-128.2907854625452,52.917743965881606],[-128.29095310209553,52.91798455507961],[-128.29104319347624,52.91811733809929],[-128.2910737990493,52.91818401080414],[-128.29107967333815,52.91824107483205],[-128.29108799734863,52.91830930260573],[-128.29109672784125,52.91838480542186],[-128.29110553412764,52.91846199296113],[-128.2911084385274,52.918533133620926],[-128.29111187436436,52.91859697199813],[-128.2911109794332,52.91866705652979],[-128.29109624910248,52.91873966176109],[-128.29106738094902,52.918809169910155],[-128.2910376047046,52.918879260788934],[-128.29102737044715,52.91894897109319],[-128.2910409333367,52.91901036994827],[-128.29106791031245,52.91906141726351],[-128.29111554491007,52.91913280793844],[-128.29116908109535,52.91920968041538],[-128.29118847967118,52.91924125973978],[-128.29120937539147,52.9192139453047],[-128.29131599765054,52.919099754211715],[-128.2914652089481,52.91894604946813],[-128.29153741559614,52.91886784903612],[-128.29154510782377,52.91885480154512],[-128.29175400187032,52.91877113105685],[-128.292172767289,52.91862170819988],[-128.2924254915936,52.918555685856006],[-128.29248210052958,52.91856859258967],[-128.29250191408292,52.91857325612929],[-128.29251792021765,52.91854155212583],[-128.2925757658897,52.91857742269601],[-128.2927250391562,52.91868438596824],[-128.29288233032557,52.91881922144467],[-128.29301849332532,52.91894213592429],[-128.293137707443,52.91904463493396],[-128.2932177845117,52.91911258510197],[-128.29326202211038,52.919155447482936],[-128.2932934714714,52.91918567043776],[-128.29332564443874,52.91922932406315],[-128.29336863577274,52.919300804409694],[-128.29348150337202,52.91935466143174],[-128.29365793757754,52.919377564193454],[-128.2937399294141,52.919411842303845],[-128.29373443409588,52.91949996390524],[-128.29372906512342,52.91964245413732],[-128.2937273048771,52.919834760506795],[-128.2936921271045,52.919994649060996],[-128.29360750260489,52.920032740618566],[-128.2935309738445,52.920082441830466],[-128.29348593042891,52.920215050059454],[-128.2934763119848,52.92033071554978],[-128.29349630941377,52.920407684745584],[-128.2935252999254,52.92047887289202],[-128.2935593148722,52.92055668995107],[-128.29360228632814,52.920662361021854],[-128.29364757556976,52.920759017725864],[-128.29369098255452,52.92080358233964],[-128.2937293076327,52.920823015764086],[-128.29374747141665,52.920831630798716],[-128.29375555261765,52.92084324078442],[-128.29376502511465,52.9208632367178],[-128.2937710638139,52.92087153205764],[-128.29383724559074,52.92087191895322],[-128.29397035193938,52.92086876759454],[-128.29417264579726,52.920904619214014],[-128.29450923353153,52.920993917702084],[-128.29488533556852,52.9211592384823],[-128.29534388269926,52.921418803116936],[-128.29583183955248,52.92163631871961],[-128.29603077286214,52.92171315911351],[-128.29604201593065,52.921748816365124],[-128.29605969073387,52.92180004413669],[-128.29606752929982,52.92182455636836],[-128.29612685372663,52.92183573120053],[-128.29624924171094,52.92185856388754],[-128.29630858178828,52.921870303381766],[-128.296511784847,52.92195714996689],[-128.29706355193838,52.922113429282284],[-128.29756796429857,52.92216916261948],[-128.2978671970233,52.92220480115625],[-128.29826921467918,52.92229729584311],[-128.29866551368414,52.922352894103874],[-128.29883643806107,52.92237702712109],[-128.2989602065233,52.92240824315291],[-128.2991231959976,52.92247512542029],[-128.2991901029911,52.922557903962634],[-128.29920856937284,52.92260631746497],[-128.29927447924533,52.92265323874796],[-128.29939320479042,52.92274621596847],[-128.2995675026869,52.92286725674479],[-128.29977581808538,52.92297978432153],[-128.29996798234913,52.92306908318643],[-128.3000787941862,52.9231190458025],[-128.30010931299503,52.9231319029437],[-128.3001236644432,52.92313891431969],[-128.30017413514202,52.92317604662477],[-128.30026644815638,52.92322861301436],[-128.30041300323134,52.92326723010309],[-128.30056435780568,52.923308560520084],[-128.30066118264503,52.92337561330165],[-128.3007321053225,52.92348073542511],[-128.3007564469563,52.923586212305985],[-128.3007445011331,52.923692954857664],[-128.30072984476317,52.92383562709959],[-128.3007137959184,52.92395254018079],[-128.30070562026486,52.92399081903481],[-128.30094652379117,52.924016379096955],[-128.3015027686319,52.924047538304926],[-128.30198707388757,52.92400667175604],[-128.30235453650988,52.923942303253746],[-128.30264966694057,52.92393652772558],[-128.30276128568516,52.92394948319823],[-128.30282535320222,52.92396223913869],[-128.3029433005976,52.92398908043835],[-128.3030134397154,52.92401069558944],[-128.30302588367914,52.92401661384246],[-128.30304318771803,52.92402636546526],[-128.303097764342,52.92405332586712],[-128.30316190871338,52.9240845835481],[-128.30325283460346,52.92412877070535],[-128.3033735094047,52.92418863654165],[-128.3034789542905,52.92424262962645],[-128.30359979671476,52.924322663650436],[-128.3037293622533,52.92444345314303],[-128.3037984493182,52.9245833650561],[-128.30381701897113,52.924737163761954],[-128.30382659573098,52.92489673530517],[-128.30389969538757,52.925024801008476],[-128.3041434105514,52.925101872401235],[-128.30441887140117,52.92514580827966],[-128.3045862373708,52.92517280126543],[-128.3047112887442,52.92519277483106],[-128.30477426883263,52.92520275266392],[-128.30484572667973,52.925214241632595],[-128.30512687703788,52.925208177825205],[-128.30548318902748,52.92516139148028],[-128.30574394121527,52.92510583028367],[-128.30597317303327,52.925053128544725],[-128.30617109758333,52.92500776686918],[-128.30631744370774,52.92497350621035],[-128.30638461434083,52.92495761461905],[-128.30640738254598,52.92494764303448],[-128.3064547656504,52.92492765468226],[-128.30647938054875,52.92491763791383],[-128.30649415602974,52.92491510597448],[-128.30653206381575,52.92490932217987],[-128.30656436988713,52.924903639217],[-128.30663101147357,52.92489504980515],[-128.30673589387558,52.92488682283109],[-128.3067869122557,52.92488245915868],[-128.30680454901335,52.92488099223238],[-128.306903800025,52.924872319423734],[-128.30712570486975,52.924839383633824],[-128.30739214779763,52.924802766650124],[-128.30759190617314,52.92479100105287],[-128.30766383251924,52.92479407498861],[-128.3077248741761,52.92480240305621],[-128.30787166691061,52.9248281176602],[-128.30805481102936,52.92487104844137],[-128.30820172834228,52.92491637583544],[-128.30827776167126,52.92494347803962],[-128.30829206874716,52.924949359201506],[-128.30833306845523,52.92496649325324],[-128.30846189674807,52.92502170946914],[-128.3086418557538,52.92510899175883],[-128.3088101903031,52.92520547108415],[-128.30896583957423,52.92530836095159],[-128.30913105900734,52.925416112466095],[-128.30923161781502,52.92551728474859],[-128.30928296849083,52.92558747444264],[-128.30942966457235,52.92564569344053],[-128.30960096787476,52.92572810351989],[-128.30972964304604,52.92583208694753],[-128.3098285814117,52.92592039284088],[-128.30989249761342,52.92598192249951],[-128.30997403927026,52.9260588022037],[-128.31009361855627,52.9261668923286],[-128.31022897699887,52.92629092471944],[-128.31035634039236,52.926405023594505],[-128.3104557186437,52.92648435114464],[-128.3105556565873,52.92655694969323],[-128.3106493274193,52.926634146861296],[-128.31074717553577,52.926702301693005],[-128.3108844793299,52.92677639949953],[-128.3110117884489,52.92683780471162],[-128.31111889915954,52.926887838925],[-128.3112296430349,52.926936115471364],[-128.31134200606772,52.92697987551146],[-128.31146798678907,52.927051396691986],[-128.3115596820325,52.92721216213771],[-128.31172662870003,52.92745441422371],[-128.31212771506424,52.9276825313201],[-128.31253506567313,52.92782027589602],[-128.3126781666508,52.92786343061581],[-128.31269181584784,52.92789175616564],[-128.31274274282785,52.927988295286575],[-128.31281068324577,52.92812374023617],[-128.31286814572152,52.92825490649387],[-128.31291769210367,52.928394632457774],[-128.3129586490798,52.92851379044287],[-128.31297955444154,52.92855542712524],[-128.31321452921526,52.928539596647646],[-128.31381347167638,52.928600695671655],[-128.31432114028843,52.92878298489503],[-128.31454545201848,52.92889685885578],[-128.3147740145517,52.92890021097839],[-128.31506038388713,52.92890410263027],[-128.3152903231992,52.928950030394624],[-128.31546469931365,52.92900265681696],[-128.3157270171927,52.92888986433294],[-128.31618411674344,52.92860506469925],[-128.31674085511705,52.92842144740535],[-128.31723163858317,52.928361896859435],[-128.31771259077317,52.92829300360176],[-128.31817479697384,52.92822223535011],[-128.31836889847247,52.92819205968215],[-128.31840096190493,52.92818190263813],[-128.31847804704972,52.92815963801959],[-128.31863749922036,52.92810940775168],[-128.31881459479658,52.928109281468736],[-128.3189523372784,52.92817383620367],[-128.31901329397553,52.92821468262502],[-128.31907365655985,52.92821068562741],[-128.31918107936613,52.92818053962243],[-128.31928851788288,52.928150958267366],[-128.319402939052,52.92812964334112],[-128.3194953794984,52.928115488507345],[-128.3195880332808,52.92810524894711],[-128.3197661364405,52.928089405218614],[-128.3200040062255,52.92809256362452],[-128.32025169134792,52.92813925301016],[-128.32046471184816,52.92819952323647],[-128.32065056937333,52.92818913102473],[-128.32081494157717,52.92810965071906],[-128.32091662293956,52.92804261824715],[-128.32098335705015,52.92800149649545],[-128.32108175733143,52.927977132453194],[-128.32126485862764,52.92796735867778],[-128.3215058567949,52.92795979687008],[-128.3217442527637,52.92795565834523],[-128.32194979195043,52.9279471180194],[-128.32211183601402,52.9279444763994],[-128.3223049357075,52.92794739248572],[-128.32254106489628,52.92795282241583],[-128.3227267157494,52.927955884836045],[-128.322848668736,52.92795292138701],[-128.3229675147822,52.927944404400726],[-128.32305193296557,52.92793713204571],[-128.32314912673772,52.92792456668507],[-128.32329475371623,52.927911601062995],[-128.32344250229394,52.92790307798956],[-128.3236156344358,52.92788172076647],[-128.32384702972553,52.92786873799632],[-128.3240357257165,52.92787622283217],[-128.3242268650622,52.927809106705574],[-128.32445839929397,52.92766214627749],[-128.32456909448788,52.92758988274557],[-128.32459760291854,52.92761679236703],[-128.3247446328085,52.92768059194388],[-128.32505139179315,52.92771657882557],[-128.32545537828528,52.927774743855565],[-128.32579522730717,52.927904243081315],[-128.3259165869276,52.927975840628456],[-128.3259842254491,52.92788313381151],[-128.3261807147401,52.9276751989804],[-128.32636587002645,52.927532514973734],[-128.32642420534847,52.92750837341733],[-128.32643788918642,52.927503062146705],[-128.32649349979312,52.927480095582666],[-128.32668837803985,52.927396084040005],[-128.32701348612292,52.92725623727676],[-128.3272376006455,52.92717836456202],[-128.3273274452799,52.92718500072959],[-128.32740069360815,52.92721213697816],[-128.32750021677603,52.92722530852718],[-128.3276453036745,52.927202257701495],[-128.32792095659076,52.92712953498099],[-128.32825998868412,52.927039861302994],[-128.32843997036736,52.92699033235031],[-128.32851149244988,52.92696873614767],[-128.32865481189998,52.92693057889003],[-128.3288986108197,52.926957146212],[-128.32910698473128,52.92710270103593],[-128.32919795415668,52.92723207596268],[-128.32924324750286,52.92729339922598],[-128.3292887940105,52.92732501122823],[-128.32933654857507,52.92732911558801],[-128.32935691011383,52.927326470190316],[-128.3293837045854,52.9273220112167],[-128.32944848315708,52.92731344576389],[-128.3294905821474,52.927282341022845],[-128.32951580594323,52.92721512819165],[-128.32958096749442,52.92714544740754],[-128.32967910829998,52.927082405647994],[-128.32979314560922,52.92702016123823],[-128.3299167043206,52.92697847411424],[-128.3301555536064,52.92698271366464],[-128.33061656635567,52.92701002543853],[-128.3311069940092,52.92701264324542],[-128.33144015811865,52.92698586149151],[-128.33166313176952,52.92695565656726],[-128.33182229707472,52.92693456386929],[-128.3318971089571,52.926921869663964],[-128.33200514862367,52.926903467167385],[-128.33223644729043,52.92687197498483],[-128.332447384502,52.92684312828375],[-128.3325447262061,52.926833350538274],[-128.33261448872355,52.9268308464156],[-128.33269083765612,52.92682933283863],[-128.33276253860973,52.92682791136019],[-128.33285309189915,52.92683060071516],[-128.33301760761378,52.926839115562686],[-128.33324488141218,52.926853103736995],[-128.33346013873935,52.92685219858092],[-128.333663797519,52.92680948398449],[-128.33412178447176,52.926662496865426],[-128.3349065945203,52.926407553227314],[-128.33549749606613,52.926219803380874],[-128.33565142691154,52.92617134528677],[-128.33573396287812,52.92614671856258],[-128.3359117626211,52.926091615407124],[-128.33603368149798,52.926054438875134],[-128.33607118647416,52.926041361461344],[-128.33615104322072,52.92603585637679],[-128.33631571142584,52.926030344512384],[-128.33648696597578,52.9260258227926],[-128.336651710482,52.92602143010529],[-128.33689748065433,52.92601598406445],[-128.33721010340707,52.92600585507064],[-128.33745468887548,52.925995946738325],[-128.33761827960868,52.92598765602341],[-128.33774261156796,52.92597733769034],[-128.33779255042015,52.92597017459691],[-128.33782019135666,52.925930384647934],[-128.33787895124456,52.925846250959964],[-128.33801850538885,52.925756592237775],[-128.33822858806656,52.92567842069242],[-128.33832831196986,52.92564448120504],[-128.33831543462531,52.92551188354455],[-128.33847342783685,52.92519818080993],[-128.3388410476677,52.924967761910146],[-128.3390569569996,52.92491077507092],[-128.33909835394834,52.92490098277074],[-128.33919947570843,52.924875427919176],[-128.3393411321462,52.924841218899495],[-128.33941606122298,52.92483075978359],[-128.33948264973213,52.924855222610994],[-128.33961681213387,52.92490524972854],[-128.33968346243938,52.92493083238319],[-128.3398043283367,52.924976073963556],[-128.3400878744338,52.92508143044314],[-128.34031377322955,52.92513860158203],[-128.3404215122008,52.92511460029587],[-128.34047235734803,52.9250900444087],[-128.34051136853125,52.92508758216479],[-128.3406851894729,52.92509590109995],[-128.3410051147203,52.925100182794424],[-128.34127323893142,52.92507747419647],[-128.34144844243363,52.92504315117804],[-128.34155530364822,52.92502028746982],[-128.34158574304323,52.92501463195303],[-128.34160601053745,52.92501030900106],[-128.34170279138763,52.924990444202486],[-128.3418363674981,52.92496199880359],[-128.3418898131962,52.92495084453029],[-128.341958080521,52.924971909070244],[-128.34211439013035,52.92501756400115],[-128.3423446318233,52.925085856518365],[-128.342691571429,52.92517424847611],[-128.34304462064273,52.925238417148776],[-128.34340829738687,52.92539374381478],[-128.34384705931578,52.925677064112485],[-128.34421284464878,52.925904666197965],[-128.3444656981239,52.92607845007953],[-128.3446751238171,52.926242452223015],[-128.34488028641078,52.92639644845602],[-128.34503835966174,52.92655867491982],[-128.3450989607979,52.92676207577959],[-128.34513644743387,52.92696874468573],[-128.3452309759365,52.92711093517209],[-128.34534227272897,52.92720232984346],[-128.3453871088144,52.92723787858543],[-128.34547103963223,52.927306274091386],[-128.34564652604968,52.92747992043412],[-128.34582362687087,52.92763223215648],[-128.34599074111722,52.92768776621776],[-128.3460732639449,52.92769676749855],[-128.34609524227434,52.92770641979748],[-128.3461448941322,52.927727853163546],[-128.34618017105007,52.92774229002791],[-128.34622420528086,52.92776327030336],[-128.34629034195274,52.92779615165663],[-128.34633725500785,52.92781876072387],[-128.34636866795339,52.92783046717877],[-128.34640360518486,52.92783873984481],[-128.34643657163318,52.92784480946498],[-128.3464609318194,52.927830304608975],[-128.346506819935,52.92780023916227],[-128.34652833296764,52.92778467886988],[-128.3465855854595,52.92779194139994],[-128.34685574944763,52.9278229957879],[-128.34740157181446,52.92788329790921],[-128.34800609375705,52.92794299129048],[-128.34839884472802,52.92798280763467],[-128.34852081511963,52.92799719083798],[-128.34868806889858,52.928038134207505],[-128.34901654368204,52.92811230146922],[-128.34928204849712,52.928143443369166],[-128.3494827034316,52.92813102381503],[-128.34965179366222,52.92812092045655],[-128.34999814508043,52.92809663021252],[-128.35059143672515,52.928088143370424],[-128.35100138826172,52.92815226426544],[-128.3511952568299,52.92825322451495],[-128.35134871981055,52.9283314383393],[-128.35142760777876,52.92837582988551],[-128.35143360141586,52.928399819752016],[-128.35144153495517,52.9284254481224],[-128.35147965025888,52.928457200369174],[-128.35152426561453,52.928505640256034],[-128.35162327188397,52.9285597201577],[-128.35177240460342,52.92855953808937],[-128.351876720564,52.92855801822828],[-128.3519167543093,52.92872594967612],[-128.35190980753038,52.92907253002715],[-128.3518685774985,52.92933851520569],[-128.3518407562666,52.92940858376884],[-128.35184503781522,52.929418588721724],[-128.35185366280967,52.92943971855924],[-128.35187483324248,52.92946844584151],[-128.35191827884964,52.929512424280496],[-128.35197385729322,52.92957353384237],[-128.3520273572329,52.92963076531531],[-128.35207414620513,52.92968476739717],[-128.35212218337827,52.92974435035847],[-128.35215191745854,52.92979308746608],[-128.35216032627946,52.92981030199359],[-128.35213312472712,52.92984111729443],[-128.35206881076314,52.92990855181938],[-128.35201963300076,52.92994653336565],[-128.35202494583623,52.929958194966794],[-128.35204190780203,52.93001223712718],[-128.352059926339,52.93010212660987],[-128.35207093966505,52.93018319572317],[-128.35208466652045,52.93027989799158],[-128.35210597652784,52.930412335057554],[-128.35213655694022,52.93056083927575],[-128.35217299803017,52.93069744957294],[-128.35220461102674,52.93079716676067],[-128.35222908387237,52.93090262353554],[-128.35225122525583,52.93103335768395],[-128.35226855900896,52.931144571956324],[-128.35227327381605,52.93121286899182],[-128.35227142692642,52.93126391459159],[-128.35227231959433,52.93131379322917],[-128.35226048484031,52.93136952314762],[-128.35221279082384,52.93148483566602],[-128.3521513786056,52.931638542069955],[-128.35212152935512,52.93172267020171],[-128.35212053361045,52.931738386457496],[-128.3521245107417,52.93175960915709],[-128.35213254272253,52.93180373026937],[-128.35213659806772,52.93182663764137],[-128.35217111118777,52.93184388648452],[-128.3522719884164,52.93189792850482],[-128.35240093606802,52.93198784279612],[-128.35252849142714,52.932103015551206],[-128.35264152478183,52.93219157046405],[-128.35272887136563,52.932236913267346],[-128.35281769410233,52.93227549948667],[-128.3529118713803,52.93230949390963],[-128.3529943953613,52.932335316989395],[-128.35306160120945,52.932353589159376],[-128.35314273690125,52.932371026651346],[-128.3532841198213,52.93239903607572],[-128.35347875907692,52.93242933481343],[-128.3536681618528,52.93244909135145],[-128.35380473626324,52.932457571401095],[-128.35389153100945,52.93245919883628],[-128.3539746266702,52.932444647741306],[-128.3540729563753,52.93241913625987],[-128.354147523434,52.932401948238805],[-128.35424874666563,52.93237805599032],[-128.35442669441977,52.93234254709994],[-128.35469910255293,52.93231243099692],[-128.35503781544918,52.93231798595279],[-128.35527324825787,52.93236091939888],[-128.3553902574072,52.93240342427193],[-128.35554964331652,52.93245349406079],[-128.3557215453671,52.93251059620998],[-128.35580826098928,52.93254473773427],[-128.3558540125778,52.93256288172164],[-128.355954079251,52.93265281434035],[-128.3561713270009,52.932788045997924],[-128.35652946217166,52.93289187080139],[-128.35682492177182,52.932991908989834],[-128.3570209429723,52.933114110207484],[-128.3572171990464,52.93324080005585],[-128.357385248377,52.93334618732732],[-128.35749625454923,52.933414597332074],[-128.35758931227204,52.93347888212611],[-128.35768344892477,52.933545943674055],[-128.35778309527362,52.933611217493635],[-128.35788903609307,52.93367244550834],[-128.35795446923584,52.933709254258474],[-128.35800546097755,52.93373793907516],[-128.3581084608009,52.933796418418986],[-128.3582653946439,52.93388633083544],[-128.35854367590034,52.933995678461784],[-128.35888605814168,52.934084115664554],[-128.3590502342201,52.93411950067598],[-128.35907200174842,52.934125235254164],[-128.3590904948668,52.93413943975781],[-128.35910107976565,52.934162207076994],[-128.3591062956294,52.93432355100602],[-128.35911781408834,52.9346322068962],[-128.35924453507582,52.93488305097223],[-128.35949315003325,52.935062494728335],[-128.35965351373028,52.93516354830975],[-128.35971087958137,52.93518930617904],[-128.35977537792476,52.935226132704514],[-128.35984528543455,52.93527630477008],[-128.35989784064623,52.93531617811933],[-128.35995452447847,52.93536325177519],[-128.3600126748715,52.93541982145397],[-128.36009750751214,52.935487076696745],[-128.36024623401906,52.935613584706836],[-128.36036113370702,52.93575199163253],[-128.36062657531332,52.93591539924841],[-128.36110591197274,52.93611937108688],[-128.36138163757585,52.936215865627894],[-128.36167714605457,52.936315882176736],[-128.3622014734042,52.936523987656784],[-128.36246667580852,52.93664928527054],[-128.3624739792781,52.936663148808066],[-128.36247189329896,52.93667608862211],[-128.36246361504195,52.93671156716838],[-128.3624501787727,52.9367718239616],[-128.36244428297314,52.93679997155986],[-128.36247265693055,52.9368072501959],[-128.36258224114312,52.93683307968535],[-128.36277859230557,52.936876783181575],[-128.36301834356362,52.936929714486915],[-128.363218047585,52.93696662292548],[-128.36336646731024,52.93698663111331],[-128.36350336925415,52.937000699494035],[-128.3635624374138,52.93700679640034],[-128.36359001227876,52.937016333161395],[-128.36364707194622,52.937036489477954],[-128.36367339703844,52.93704044546676],[-128.36367034304658,52.93700238700252],[-128.36367990275184,52.93692259189914],[-128.36382729022364,52.936940933998386],[-128.36409732462636,52.93705211188723],[-128.36425626590403,52.93711058352858],[-128.36435560647783,52.937069346925355],[-128.36451447326138,52.93697534047006],[-128.3646571053949,52.936891194404794],[-128.36490307118828,52.93680440674746],[-128.36536057486782,52.93669879205163],[-128.3657489027661,52.936623716533724],[-128.36586596879792,52.936599495968565],[-128.36587676590372,52.936609369470375],[-128.36599124503135,52.936706296329895],[-128.36621235509404,52.93687675393639],[-128.36635510635335,52.93696245642336],[-128.3663823081089,52.93696527301244],[-128.36654954152237,52.93698825348702],[-128.36688294605094,52.93703200172196],[-128.3670501804953,52.93705499044381],[-128.3673196050931,52.93702097706826],[-128.3679096559983,52.93693510967871],[-128.36831831431144,52.93685681816292],[-128.36856400294138,52.936781796113884],[-128.3689141118469,52.93667328790789],[-128.3692286856736,52.93657950416131],[-128.36961777971374,52.936467957653086],[-128.37037862211858,52.93631866038025],[-128.37136530543978,52.93629037042579],[-128.37207336760417,52.9363983095857],[-128.37229586307222,52.936459418211356],[-128.37236605742265,52.93648098289988],[-128.37257439381855,52.93650537762896],[-128.37281646573916,52.936482558566844],[-128.37296657214847,52.9364324427339],[-128.37303010613255,52.93640144605525],[-128.37307110069892,52.93638436689867],[-128.37312395892027,52.93636255483492],[-128.37324235189237,52.93632877456393],[-128.37346213938622,52.93627445447132],[-128.3737659426283,52.93622179398362],[-128.37419080941268,52.93618351713732],[-128.37457349300118,52.936157857730194],[-128.37481508591364,52.936210163018664],[-128.3750688986968,52.93631435146789],[-128.37531512902103,52.936332926854256],[-128.37552788476773,52.93628602794016],[-128.37574528895294,52.93623903479559],[-128.37596702888257,52.93618634781918],[-128.37614653916992,52.93614516870378],[-128.37627687100314,52.93612515451004],[-128.37642160414688,52.936062253583074],[-128.37652656929868,52.93593848175076],[-128.37655363508216,52.93585553309394],[-128.3765600843753,52.935837464009204],[-128.3765753314237,52.93579343016621],[-128.3766914850665,52.935686249881826],[-128.37697878464124,52.93562214631517],[-128.37742786759895,52.93570052719157],[-128.37786925073323,52.93582447418813],[-128.3780728903049,52.93588145931456],[-128.3781202986735,52.93589564175565],[-128.37813731177457,52.93589978269079],[-128.37820699211704,52.935878749528676],[-128.37847846698864,52.93589849440267],[-128.37880982486206,52.936005592475084],[-128.37894026525944,52.93607079170154],[-128.37900961596884,52.93599370575867],[-128.37914919498724,52.935838968847506],[-128.37930525307752,52.935711919105024],[-128.37966411848743,52.935443993531415],[-128.38012598802726,52.934983939002954],[-128.3803093137496,52.93467806850128],[-128.380304631124,52.93461089235142],[-128.3802971930697,52.93451125767864],[-128.38026847611334,52.93414801968692],[-128.3802368138689,52.93371531896075],[-128.3802212662308,52.93353736553944],[-128.38021682124122,52.933524566337624],[-128.38018100884744,52.933417657216715],[-128.38011274941974,52.9332138615049],[-128.3800809129095,52.93311135665903],[-128.380107909346,52.93309399292944],[-128.380160070823,52.933059858596955],[-128.3801852363668,52.93304309695413],[-128.3801832318313,52.933007259671676],[-128.3801647246833,52.9327598527375],[-128.38012916312653,52.93220726399188],[-128.3800897347152,52.931568987263994],[-128.38005724661818,52.93110491842291],[-128.3800701620909,52.930785676031924],[-128.38014741397518,52.93048363629861],[-128.38025548102442,52.930265626998505],[-128.38036553798761,52.930133343398104],[-128.3804656735652,52.93002368406149],[-128.38053313450015,52.929946634910195],[-128.38058006421562,52.92988570662403],[-128.38062184391111,52.9298159040589],[-128.38066294983616,52.92971752938268],[-128.38070033107329,52.929619230039336],[-128.38071253508843,52.92957077218848],[-128.38071347188222,52.9295208649999],[-128.3807190533563,52.92940414885839],[-128.38073638465448,52.929247388433446],[-128.3807629182565,52.92910502617794],[-128.38078804606582,52.92902098500159],[-128.3807941481918,52.92899676054277],[-128.38079807554905,52.92898378296707],[-128.38082619368197,52.92891987157387],[-128.3809019272204,52.92879052409603],[-128.38102678177825,52.928656253962636],[-128.38116002612642,52.92855545843164],[-128.38125499411245,52.92848682156876],[-128.381343688903,52.9284558757859],[-128.38150263075954,52.92841453872497],[-128.38175276901683,52.92832034605967],[-128.38197431495408,52.92821495469957],[-128.38202895294722,52.92812527491169],[-128.38197839957522,52.92802146287837],[-128.38191942646858,52.92790044735635],[-128.38189292537066,52.92779334990815],[-128.38191448279574,52.927712188088925],[-128.38196254915545,52.92763833793727],[-128.3820349304528,52.92753260229739],[-128.38213045372467,52.92740733791395],[-128.38224370585883,52.927282279572744],[-128.3823556296387,52.92718359140996],[-128.38241382217464,52.9271409292411],[-128.38244907555946,52.92712115525737],[-128.38251606224037,52.927085598202915],[-128.3826223880953,52.92703692042834],[-128.3828061852268,52.92697321048938],[-128.3830178993392,52.926908943825936],[-128.38316769458697,52.92687058805676],[-128.38346494488962,52.92685223408066],[-128.38392786372393,52.926846219563394],[-128.38415513728705,52.9268433009217],[-128.38430415828196,52.926757869448984],[-128.38458284337287,52.926474732155086],[-128.38476643600845,52.92610830210015],[-128.3848203424092,52.925889142665746],[-128.38486292322034,52.92580082682437],[-128.38490349183166,52.925759641707586],[-128.38491879325628,52.925749796959956],[-128.38497027268676,52.92573698547914],[-128.38512843393528,52.92569845748887],[-128.3852903195432,52.925659862746066],[-128.38534458390947,52.92564698566861],[-128.38536758504532,52.92564147849014],[-128.38542660639288,52.92563019120303],[-128.38548734319824,52.925582991026374],[-128.38555566371815,52.92550479984257],[-128.38563076650405,52.925464600530105],[-128.38567661395427,52.925467590612136],[-128.38597680417897,52.92550186639172],[-128.38656028689152,52.92540202372317],[-128.3868982285621,52.92507899268718],[-128.38715983064614,52.924724429763685],[-128.38777537700997,52.924332420289346],[-128.3883611159812,52.923990900943565],[-128.3886337296532,52.923832884437545],[-128.388897270456,52.92369578905096],[-128.3891996452134,52.92355342862939],[-128.38933898158163,52.92349509548051],[-128.3894768496213,52.92344408422092],[-128.3897313518871,52.92334529995701],[-128.38994072406572,52.92317342409559],[-128.39006829878588,52.92290567459521],[-128.39011277936973,52.92271865271024],[-128.39010309885808,52.92267904248354],[-128.39004082599047,52.922681993824256],[-128.38993828288665,52.92258204820958],[-128.38992371868144,52.922355862771454],[-128.38995647449894,52.92220887698595],[-128.3900015202879,52.92214798247803],[-128.39008636923953,52.92208235067601],[-128.3901572808776,52.92203381987895],[-128.39021428349548,52.92198669281156],[-128.39027978926237,52.92190855560518],[-128.39035693995368,52.92178870650354],[-128.3904067902562,52.921680615015156],[-128.39042227123466,52.921591169923055],[-128.39046258679983,52.92146253448856],[-128.39051407844588,52.92135048986982],[-128.39053077863196,52.92131594958198],[-128.39061107095085,52.9213019849083],[-128.390979703378,52.9212277870046],[-128.3915341175812,52.92110943944786],[-128.3920544175517,52.920981135958655],[-128.39249527825237,52.920848839643014],[-128.39271025562167,52.92076037780166],[-128.3927519871345,52.920723650737976],[-128.39276805127722,52.9207109908449],[-128.39284820982968,52.92067796696821],[-128.39301798264475,52.920630787060205],[-128.39326126938616,52.920565293462644],[-128.39353623212736,52.92048290200453],[-128.3937377593458,52.920420499386694],[-128.39383905783092,52.92039881275785],[-128.3939181302401,52.92039608256649],[-128.39399362179483,52.920396232669866],[-128.3940367901517,52.920401516319686],[-128.39407838038562,52.92041188194519],[-128.39412655749902,52.92042323470873],[-128.39415947886323,52.92042873581429],[-128.39418667189386,52.920431546007784],[-128.39422129737474,52.92043420493559],[-128.39423994697208,52.92043438150588],[-128.39427272551785,52.92043707800641],[-128.39439282792932,52.92045145163276],[-128.39470450760868,52.92049164191609],[-128.39504333437554,52.920534077233974],[-128.39520436602683,52.92054705170568],[-128.39529599909383,52.920535660356826],[-128.395455780189,52.9205099830739],[-128.39560254313224,52.92048457065875],[-128.395650446634,52.920474625599475],[-128.39568926839385,52.92048560315489],[-128.3958278837087,52.92054725377891],[-128.39605282217536,52.92061947037581],[-128.39625803480334,52.92062258296365],[-128.39637885798751,52.920599940329936],[-128.3966860738247,52.92051126944319],[-128.39719284637175,52.920341733914114],[-128.3974369612465,52.92025771931795],[-128.3974712083233,52.92025365780203],[-128.39755461194454,52.92024523089042],[-128.39764546282728,52.920236652140574],[-128.3977112177973,52.92022914091854],[-128.39775962520022,52.92022815431543],[-128.39783100534757,52.92023791146557],[-128.3979232128345,52.92025341514131],[-128.39796470898153,52.92026209504316],[-128.3979764879386,52.92025624894823],[-128.39799838818828,52.92024795414462],[-128.39803243790058,52.920223714880045],[-128.39813050755666,52.92016117098352],[-128.39830656091155,52.92007685562248],[-128.3985050815243,52.91999432432286],[-128.39862235281907,52.91990896448076],[-128.39860770283164,52.91983077911073],[-128.3985641875914,52.91978626217421],[-128.39866819598,52.91974657683142],[-128.39891865567762,52.91969270206841],[-128.39909281240477,52.919640938951005],[-128.3992005747879,52.91956866171865],[-128.39933894591104,52.91947726476628],[-128.39945725598398,52.919410387129204],[-128.39957873630922,52.919366424850786],[-128.3997061025098,52.91932794838774],[-128.39982516105414,52.919290762455454],[-128.39994746913592,52.9192450966048],[-128.40004843762597,52.91920099615223],[-128.40013502445157,52.9191498967263],[-128.40023850084123,52.9190844331181],[-128.40033801617145,52.91901457439103],[-128.4004154590414,52.918950206880396],[-128.40048260627833,52.91888492819438],[-128.40055586614267,52.91881223242711],[-128.40063804119376,52.918732636429475],[-128.40067865097302,52.91869256561167],[-128.40071657906947,52.91867104486681],[-128.40082465256415,52.91860437463353],[-128.40096616429858,52.918519073616416],[-128.4011175383232,52.91844367091451],[-128.4012919306576,52.91837956629757],[-128.40150425922624,52.91831075827821],[-128.40171971055673,52.91823123915325],[-128.4019556400974,52.918151301487754],[-128.40229490917653,52.918053000090374],[-128.40261959847624,52.917960592506624],[-128.40282776729802,52.91790084555965],[-128.4029698132755,52.917858136833026],[-128.40320845712975,52.91774394883801],[-128.40355145726613,52.91756315438062],[-128.40376894829762,52.91745387320905],[-128.403880431437,52.91739834234127],[-128.4039640351762,52.917343937215044],[-128.4040075202041,52.91730548368918],[-128.40419988789426,52.91722979512917],[-128.40460209981168,52.91710777621929],[-128.40490844509577,52.91702078690339],[-128.40498543336972,52.91699791002095],[-128.404983819723,52.9169693477638],[-128.4050260483346,52.91687542427821],[-128.40511947129772,52.916764201061184],[-128.40516707351821,52.91668305702699],[-128.40516812845974,52.916619126675265],[-128.40517064486662,52.916564701181706],[-128.40517177956534,52.91650244651972],[-128.40517586792768,52.916409867847754],[-128.4051928560264,52.91628170291072],[-128.4052035944686,52.91614188858543],[-128.40519812145985,52.916045020560865],[-128.40518984150702,52.916013796058934],[-128.4051995982257,52.916005183026925],[-128.40523152571464,52.91597650002695],[-128.4052701403621,52.91593422579482],[-128.4053031333664,52.915858430278014],[-128.40533533553418,52.91576864030948],[-128.4053617044402,52.91570755591085],[-128.40539738135075,52.91564628116638],[-128.4054673101798,52.915547862251394],[-128.4055643257251,52.91543432262542],[-128.40564615146764,52.915348558656014],[-128.405725156202,52.91527910534336],[-128.4058368934359,52.91519497189216],[-128.40593731384382,52.915125089378115],[-128.40604077153492,52.91505962050609],[-128.40620318734224,52.91496548038852],[-128.40641309153386,52.91488718666184],[-128.40664280855606,52.91484605215678],[-128.4068896388497,52.91482754732373],[-128.40709135940386,52.91481893475266],[-128.4071520199715,52.91478742076496],[-128.40713194103984,52.914728963698074],[-128.40719061722328,52.914629661623835],[-128.40730481126738,52.91450679016694],[-128.40737234592478,52.91441571126641],[-128.40740195946532,52.91434615529112],[-128.40741857987737,52.91431049254557],[-128.40744848497238,52.914279051709855],[-128.40752560671132,52.91420907946082],[-128.40761965724408,52.91414212427932],[-128.40772647976837,52.914086675799936],[-128.40785215941636,52.91401851686536],[-128.4079967799172,52.91392305202453],[-128.40812776295854,52.913833481205856],[-128.4082225548871,52.913779399746275],[-128.40830479622457,52.91371773566631],[-128.40835681385303,52.91363257984064],[-128.40836035131886,52.913546730320135],[-128.4083806550489,52.913477364633536],[-128.40847120108555,52.91341440018845],[-128.40857630562627,52.91334497537941],[-128.40867154906326,52.91326622659184],[-128.4087712265512,52.91319971126464],[-128.40882690553343,52.91316269226975],[-128.40884410738633,52.91315393539187],[-128.4089011360783,52.913124172104915],[-128.4090495019617,52.91304545624172],[-128.40923853884314,52.912944595144864],[-128.40942604564316,52.91284938009022],[-128.40956489264536,52.912783747962656],[-128.40965142305888,52.91273207689697],[-128.40972049442257,52.91263535884736],[-128.40979810829091,52.91254127324441],[-128.40996203606838,52.91250707681538],[-128.41014887610672,52.912466248483845],[-128.41024776628532,52.91241881750008],[-128.41027126797465,52.91240600257558],[-128.41028840531476,52.91239611660992],[-128.41036985740894,52.91235352770354],[-128.41052181349616,52.91227248486803],[-128.41071030116603,52.912178368718905],[-128.4108791678833,52.912099786308865],[-128.4109985004266,52.91205137054701],[-128.41108440317,52.91202157934455],[-128.41113011496205,52.912006066525514],[-128.4111464874781,52.91199900362114],[-128.41120311422196,52.911978782169435],[-128.4112972269253,52.911946014982526],[-128.41140400442555,52.91190626975825],[-128.41155164132587,52.91184773831733],[-128.41170013816387,52.911788076804584],[-128.41179587262846,52.91175079109096],[-128.41187518828312,52.91172001313645],[-128.41199830494975,52.911672639921775],[-128.41216714941945,52.91161031809253],[-128.4123624199712,52.911537354116774],[-128.412582829885,52.91144762102457],[-128.41279910374152,52.91135068893234],[-128.4129688380062,52.91127096432552],[-128.41311325552718,52.91122146657742],[-128.41329935408467,52.91118401189051],[-128.41353900300552,52.91115442777123],[-128.41375927033485,52.91114430156594],[-128.4138682824618,52.9111443067936],[-128.41393999704857,52.911061551352276],[-128.41406377497137,52.91091101047923],[-128.41412447889954,52.910831279442775],[-128.41411320337272,52.91079675319328],[-128.41407884625994,52.91073298399513],[-128.41404776473715,52.91069437939223],[-128.41407053433696,52.91066868918328],[-128.4141810918194,52.91062997595064],[-128.41434074639255,52.910586335019374],[-128.4145022376424,52.91047650441575],[-128.41467976970793,52.91032093947352],[-128.41487854999716,52.91021146395044],[-128.41504684186222,52.9101558674029],[-128.415131958894,52.91012889673379],[-128.41520040144516,52.91010338065606],[-128.4152627984272,52.910086402294624],[-128.4153115709843,52.91014146155733],[-128.41536259708516,52.910252535354005],[-128.41547519866884,52.91028273818276],[-128.41566807123962,52.91021711006174],[-128.4158212174886,52.910157347559505],[-128.4158969465214,52.91012888284658],[-128.41592518628173,52.91011764673103],[-128.41596621678184,52.9101016719715],[-128.41605101485948,52.91006909211881],[-128.41609490978107,52.91003791755397],[-128.41607713422806,52.909905422951496],[-128.41603368720848,52.909681506892575],[-128.4160109614515,52.9095765792887],[-128.41606085473464,52.90953631175882],[-128.41616073805142,52.90944119881009],[-128.41627993632542,52.90930868876309],[-128.41640559237584,52.90917492467301],[-128.41652561726767,52.909040719998615],[-128.41662187215923,52.90891428702566],[-128.4166737716906,52.908827442923304],[-128.416686118269,52.90879860264221],[-128.4167202296304,52.90874296201182],[-128.4167952449918,52.908636582126],[-128.41686596407706,52.90853646165262],[-128.4169006471327,52.908490900171735],[-128.41690941349617,52.90848119414785],[-128.41699380954367,52.90844133832646],[-128.41725261439387,52.908322776251936],[-128.41740072965715,52.90812519591417],[-128.41725880516813,52.907922929905304],[-128.41716169195072,52.90780439928821],[-128.41720776583063,52.90771318969533],[-128.41725158240345,52.90761530812368],[-128.4172694843481,52.907503939440865],[-128.41726979284996,52.90736153820829],[-128.41726604271958,52.90727920115516],[-128.4172661542596,52.907264623006135],[-128.417286423054,52.907227771246184],[-128.41731940534504,52.907119456220286],[-128.4173338387692,52.90701264365858],[-128.41731602427694,52.90696143370747],[-128.4172907805605,52.90692719475475],[-128.41728281140925,52.90690157049419],[-128.41730004053045,52.90689336782328],[-128.41732164378303,52.9068800252668],[-128.4173397811588,52.90682191411296],[-128.41737548379655,52.906712421898625],[-128.41742518334047,52.906619460253935],[-128.4174460234243,52.90659267871244],[-128.4174606281851,52.90657107531488],[-128.41748185023206,52.90655102220563],[-128.41752788899998,52.90650859066951],[-128.41759376505667,52.90645453911437],[-128.417665224549,52.906400372734886],[-128.41778222790663,52.90632788658963],[-128.4179456012234,52.90626791057447],[-128.41808797517933,52.90626498326752],[-128.4181981981437,52.906286262528056],[-128.4184178684077,52.90623353290763],[-128.41879138133768,52.90605149694496],[-128.4191577489524,52.90584214124619],[-128.41944236521678,52.9056697891943],[-128.41963056454475,52.90553865399537],[-128.41969425707433,52.90547903996012],[-128.41971092788472,52.90544450415549],[-128.41974639960424,52.90536360241697],[-128.41980514414573,52.90524971530979],[-128.41991320070986,52.90515106669985],[-128.4200713012479,52.905064277718274],[-128.42021175996757,52.90499467888987],[-128.42026169228498,52.90497178293995],[-128.42026776851696,52.90494755607944],[-128.42027362169705,52.904919405043415],[-128.42028542326136,52.904864778358736],[-128.42031920849425,52.90480353698451],[-128.42036147188108,52.90474380742372],[-128.4204182735888,52.90466134518303],[-128.42049055246395,52.904556148849906],[-128.42055422517848,52.90446345408903],[-128.4205937524494,52.90440490196002],[-128.42060178476035,52.9043823121556],[-128.4205930349948,52.90435950268968],[-128.42060318331727,52.90432510096656],[-128.42064426988483,52.90429398220972],[-128.42067870751882,52.904277011111546],[-128.420699926908,52.90425695739343],[-128.42071887109594,52.9042296580659],[-128.42072567885708,52.90421830569284],[-128.42074109180476,52.90419444272148],[-128.42080726120298,52.904112908624796],[-128.4209389487705,52.903987428157464],[-128.4211106409778,52.90386111492995],[-128.42124966103097,52.903750059013845],[-128.42131323562384,52.90365568840551],[-128.4213514060454,52.903540537570585],[-128.42139086419465,52.90341526917368],[-128.42140920228772,52.90336107279173],[-128.42144752045277,52.90334682907952],[-128.42155417114435,52.90330539008325],[-128.42165455522584,52.90326856493386],[-128.4217259901625,52.90324691179405],[-128.42181414245204,52.90322434922706],[-128.42189652090215,52.90319855080002],[-128.421973092892,52.90316894312942],[-128.4220822082675,52.90312184674164],[-128.42218842857244,52.90307312355555],[-128.42223317117165,52.90304080763924],[-128.4222482142774,52.90297770915612],[-128.42227209904144,52.902889761581925],[-128.42229040457073,52.902851262845324],[-128.42243136617725,52.90283995442021],[-128.42268883425922,52.90273149753369],[-128.42281694330893,52.90254329075445],[-128.42281742897654,52.9024535826639],[-128.42281874865571,52.90244402953707],[-128.42269868743074,52.902429684761],[-128.42245867819636,52.90241948825616],[-128.4223426536882,52.90236133215327],[-128.4223642296299,52.90223306794098],[-128.42242407333165,52.90208943945273],[-128.42250583806174,52.901971147523085],[-128.42256988578598,52.901901433251986],[-128.42261045888938,52.901861354451064],[-128.42262316244322,52.901789899339704],[-128.4226136417188,52.9016718016084],[-128.42262078897917,52.901535429816605],[-128.4226530663305,52.90139853130052],[-128.42268472461566,52.901267260618155],[-128.42271539937542,52.90116796065917],[-128.42273233367243,52.901105379176336],[-128.42274836317168,52.901059643704755],[-128.42275884191503,52.90103083203094],[-128.4227778464966,52.90098839893566],[-128.4228083939869,52.90090311240348],[-128.4228454305291,52.90081713602417],[-128.4229252538507,52.90073027800287],[-128.42302401912133,52.900632382421946],[-128.42309720912996,52.900559671805695],[-128.42319217384977,52.90047698646267],[-128.4233208539038,52.900364454282574],[-128.42346800019908,52.900249298894856],[-128.42359965537028,52.90015633102396],[-128.4236645122607,52.900101175273804],[-128.42368111350163,52.90006550991765],[-128.42369203661266,52.90002828423864],[-128.42369974777014,52.900000094588826],[-128.42370225859605,52.89997873949802],[-128.42370763197138,52.8999584466315],[-128.42371589765688,52.89990726485303],[-128.4237251439176,52.8998078410688],[-128.42373165558425,52.899709603842204],[-128.42374222208406,52.899616880200554],[-128.42376506863638,52.89952727607991],[-128.42378483018499,52.89944893885673],[-128.42379965789098,52.89933314664898],[-128.42379091324787,52.89921223419189],[-128.4237515410522,52.89914240835858],[-128.42368785155844,52.89908710360137],[-128.42362193567962,52.89902567345747],[-128.42356758111703,52.89895447005141],[-128.4234885388331,52.89884229895885],[-128.42337210215453,52.89871127252654],[-128.42326603963033,52.89861534640953],[-128.423203274538,52.89856002234985],[-128.42316279353318,52.89851992725872],[-128.42309279016453,52.89845185369261],[-128.4229984667782,52.898349523151914],[-128.42294194896317,52.89825650456248],[-128.42290704682236,52.898166969314595],[-128.4228644277149,52.8980400274086],[-128.4228457625638,52.89792492541304],[-128.42284287200948,52.89779211481912],[-128.4228428415648,52.89761159751227],[-128.4228414663133,52.89752192749096],[-128.4228407976047,52.897510172845216],[-128.4228410656428,52.897482136583264],[-128.4228410467276,52.8974490562159],[-128.42285016817885,52.89736365480706],[-128.42288001938834,52.89715169236203],[-128.42288847355553,52.89689082771247],[-128.42284553201358,52.89669269874525],[-128.42280946462276,52.896533662183],[-128.422811443055,52.89642094226052],[-128.42281600490915,52.896386646248196],[-128.42282099600223,52.89635963387178],[-128.4228313128395,52.89629551114719],[-128.42282491557057,52.8962485512966],[-128.42277254187405,52.89622832715034],[-128.42272214150384,52.89621030478055],[-128.42270006285273,52.896165910509765],[-128.4226137306815,52.89608920327424],[-128.4224756165161,52.896019169043264],[-128.42242119100183,52.89597936997539],[-128.42237171533537,52.895993844090064],[-128.42217429928112,52.895962031889354],[-128.42176870309788,52.89592217405834],[-128.42142958847472,52.895953825624275],[-128.42114807556678,52.8959663503809],[-128.42079147653428,52.89585427765504],[-128.42053931838626,52.89571146689311],[-128.42033498633202,52.89565624821847],[-128.42016647084122,52.895624958992386],[-128.42012394391048,52.895597803635525],[-128.41996478146228,52.895681808221724],[-128.41936798020808,52.895801172219116],[-128.4186274560797,52.89571886105012],[-128.41827145539258,52.89553500991878],[-128.41797708223078,52.89545248723226],[-128.41751273088823,52.895411024635436],[-128.41720485546904,52.89535287960489],[-128.41702856893983,52.89528306783668],[-128.41690463548258,52.89523291784971],[-128.41677217743344,52.89518013541039],[-128.4165167894433,52.8950951304331],[-128.41627385176622,52.895032284631036],[-128.41608032668685,52.894986927671695],[-128.41586194754038,52.89489723200142],[-128.4157058973279,52.89479000198762],[-128.41563430702752,52.89471017942777],[-128.41556820236718,52.89464482904873],[-128.41549217374904,52.89458527969039],[-128.4154048547241,52.89452372875339],[-128.41526502560671,52.894439701738236],[-128.4150734963497,52.89434721062654],[-128.41492092782389,52.894284757197816],[-128.41481368230504,52.8942331410832],[-128.414669052605,52.89414641340532],[-128.41453822694925,52.89405659450879],[-128.4144876276569,52.89401839070189],[-128.41447182206602,52.894002461982716],[-128.41445501472055,52.8939854236367],[-128.41443222789616,52.893961224591216],[-128.41438182189734,52.8939101271402],[-128.41431840846394,52.89384303449834],[-128.41424801403983,52.89376767148586],[-128.41416655415827,52.89367796866518],[-128.41410048706962,52.893596910571695],[-128.41404542565044,52.893512827877025],[-128.41399604182374,52.89343031490606],[-128.41397515046648,52.89339037966925],[-128.41397549006683,52.89334720094779],[-128.4139768193728,52.89327205139972],[-128.41397720584513,52.893229436811325],[-128.41397786051672,52.89320812004219],[-128.41397882101936,52.893159331397804],[-128.4139664592567,52.893072685579575],[-128.4139331749632,52.89294554901739],[-128.41388368742153,52.892812017760996],[-128.4138521171963,52.89271511912763],[-128.41382727132014,52.89263826452523],[-128.413805065465,52.8925585571266],[-128.41377640312055,52.89248009454083],[-128.41372039183258,52.89237921275789],[-128.41366235003449,52.89224249333135],[-128.41362724111633,52.892099696912986],[-128.41361203642347,52.89199573483271],[-128.4136087365087,52.89193749870352],[-128.413604914759,52.89185348503084],[-128.41359909673668,52.89171793582416],[-128.41361888233746,52.89157401235263],[-128.41370534213945,52.89145619456147],[-128.41380818838195,52.89139745640255],[-128.41385040982237,52.89138649843405],[-128.41387348655354,52.89136640758471],[-128.4138169396506,52.89123974853322],[-128.41362689315707,52.89100874852513],[-128.41350679631145,52.89081220047907],[-128.41347925807247,52.89067149095612],[-128.41343367187844,52.890524424558635],[-128.4133809471587,52.890366292390134],[-128.41334065734495,52.89021406719419],[-128.41331989300193,52.8900777034581],[-128.41331086579294,52.88993493648353],[-128.41329883304365,52.889788302407545],[-128.4132720544647,52.88967728528482],[-128.41324903733963,52.88961609014908],[-128.41322870862695,52.889553162459734],[-128.41320626830202,52.889469530874216],[-128.41319157004514,52.88939078140312],[-128.41318697054106,52.88930959113074],[-128.41318076387014,52.88923290979686],[-128.41316315523395,52.88916880501903],[-128.41313652653258,52.88912617980112],[-128.4131141237108,52.88910869999386],[-128.41313257245932,52.88908926037388],[-128.4131929727124,52.88903756512518],[-128.41323259070356,52.88898069032034],[-128.41327834689642,52.88891696210507],[-128.4133833252604,52.8888138962218],[-128.41349153124887,52.888701794116834],[-128.41356247882857,52.888606154101105],[-128.41362658989098,52.88850504824451],[-128.41368344695027,52.8884237173107],[-128.4137290773325,52.88834148665861],[-128.41376932306895,52.88821340504108],[-128.41378878917382,52.888063881585424],[-128.4137958693015,52.88790956241627],[-128.41379824003516,52.887770481042736],[-128.4137989377527,52.8876678785202],[-128.41382084407286,52.88757773016898],[-128.41388389134906,52.88744132262312],[-128.413906710959,52.88730182128299],[-128.41384666580976,52.887211678391225],[-128.41384530982302,52.88712200768444],[-128.41389494735427,52.88702848226041],[-128.41388230222634,52.8869368009016],[-128.41388815144316,52.88682624390892],[-128.41393891653215,52.886736058982024],[-128.41397759377543,52.88667920309899],[-128.4140105463745,52.88661966616636],[-128.41405658921266,52.88652845691203],[-128.4141113142572,52.88642586596625],[-128.41417368462805,52.886343291182676],[-128.41426254626018,52.88625176750453],[-128.41435221817042,52.88615798463774],[-128.41443458775353,52.88609967500398],[-128.41454306241752,52.88605820370804],[-128.41463256743893,52.886027213078954],[-128.41481722346856,52.885949974484305],[-128.4151216269182,52.88581646505641],[-128.41527163387067,52.88575227117358],[-128.41522513053377,52.88570389241044],[-128.41511543248362,52.885592345607456],[-128.41500954816772,52.88549865112087],[-128.41493132744566,52.885432984148785],[-128.41487597024562,52.885376382385495],[-128.41483953292487,52.88532498910698],[-128.414810219916,52.88526785225836],[-128.41478181454667,52.885193869279355],[-128.41475671745943,52.88511253479385],[-128.41473866130113,52.88505684403596],[-128.4147132890696,52.88501980841307],[-128.41467616858495,52.88497291405275],[-128.41464596482996,52.88491635159056],[-128.41463415847406,52.88485604749134],[-128.41464413344275,52.88480202334993],[-128.41467371453777,52.88473246426581],[-128.4146939544988,52.884580116769705],[-128.41472510687632,52.88439055331205],[-128.41480221586767,52.88427236082051],[-128.41486542433802,52.884188090881736],[-128.41488766062758,52.88410409757884],[-128.4149095948081,52.88401451326905],[-128.41494609708087,52.88388649868648],[-128.41501145957287,52.88372538426914],[-128.41509909914555,52.88353016603868],[-128.41514808488776,52.88335929686407],[-128.41515742397812,52.88329407332069],[-128.4151907675243,52.88325806478348],[-128.41525292402147,52.88318839221303],[-128.41526960867878,52.883121340339805],[-128.41521762916358,52.88300916365694],[-128.4152707887784,52.88291220117112],[-128.41547802868405,52.882937659671995],[-128.41562744592895,52.88294523621304],[-128.41570768000443,52.88284940340776],[-128.41581357716356,52.88273006221483],[-128.4158970206387,52.88264144683585],[-128.41595949262026,52.8825773735195],[-128.41602554109465,52.882510428040966],[-128.41609437164712,52.8824434163598],[-128.4161804702469,52.882352512657796],[-128.41628312066715,52.882241642485404],[-128.4163153855949,52.88213726030269],[-128.41632030556752,52.882043540370006],[-128.4164223800043,52.881955106612054],[-128.41652804854428,52.88184809396024],[-128.41656889827985,52.881747463973404],[-128.41659920616502,52.88167452550899],[-128.4166501345894,52.88157088067093],[-128.41671771172912,52.88143270021333],[-128.41678334816913,52.88129288223024],[-128.41682996885132,52.88117923471006],[-128.41685116429304,52.881126100692406],[-128.41686202498636,52.881087755276795],[-128.4168864185149,52.880992513550055],[-128.41690388156812,52.880857040791014],[-128.41689959698778,52.88071585290806],[-128.41686615620708,52.88056965838294],[-128.41683172834234,52.880438625338606],[-128.4168171552616,52.880345862234996],[-128.41681687439646,52.88025896755629],[-128.41686279387227,52.880149263163204],[-128.41698998242174,52.88004405877108],[-128.41716324180283,52.87994686765637],[-128.41727787011786,52.87985032603809],[-128.41724611013055,52.879766330205626],[-128.4171437795548,52.879702281726125],[-128.41701892066712,52.8796678486777],[-128.4168969241662,52.87961821542792],[-128.41685484740657,52.879549563894024],[-128.416860604317,52.879519737163356],[-128.41669883125883,52.87949110397799],[-128.416176856599,52.87936616617571],[-128.41554778686304,52.87920811276516],[-128.41491807550645,52.87915377929501],[-128.41421942791914,52.879147950563734],[-128.41378462264382,52.879082314658675],[-128.41364597565203,52.87900163441812],[-128.41356008932007,52.87894845759607],[-128.41347776189141,52.87890866247959],[-128.41341857930723,52.87888296811512],[-128.41336289452636,52.87885327307984],[-128.41320809088126,52.87881608726946],[-128.41295279096002,52.878730508931945],[-128.41272241464677,52.87857546678684],[-128.4125732979924,52.87847425289095],[-128.41245591778423,52.87844021773031],[-128.41231483719875,52.87839882923985],[-128.41220170293522,52.878357423123376],[-128.4121350819644,52.878331880808226],[-128.41207925411337,52.87831620807357],[-128.41198199299657,52.878324931641004],[-128.41184679844542,52.87835461586887],[-128.41177668966694,52.87836614575157],[-128.41176743971002,52.87835063825578],[-128.41173799031174,52.87830751435099],[-128.41166349438328,52.878224950292214],[-128.41156054204168,52.87814969752888],[-128.4114905539298,52.8781141328196],[-128.41141040692153,52.87807989775196],[-128.4112351982844,52.87802743077835],[-128.4109903606633,52.87797863447502],[-128.41073972168473,52.87792602786043],[-128.4105389540748,52.877866235500825],[-128.41040385578182,52.87781518707992],[-128.41029867576006,52.877766332492584],[-128.41018653474833,52.87770976294604],[-128.41002645368425,52.877628396934945],[-128.40987827761802,52.87756023246351],[-128.40982871550898,52.8775399452614],[-128.40979069315713,52.877526148837084],[-128.4097450096176,52.87750858964731],[-128.40972413826654,52.8775017250803],[-128.40969275990307,52.87749003486747],[-128.40961956121163,52.87746350480516],[-128.40952305742522,52.87743633128072],[-128.40940189527157,52.877417511872835],[-128.4093022417696,52.877400493872415],[-128.4092159564663,52.877389373025146],[-128.40904966181284,52.877379327122725],[-128.40884054914477,52.87733652154747],[-128.40868360246034,52.87726125183845],[-128.4085688453209,52.877191279588914],[-128.4084759558462,52.87714553524312],[-128.40842680609404,52.87713252256665],[-128.4083897340688,52.87713552476691],[-128.40816349175358,52.877135676021815],[-128.40775367386692,52.87713286061713],[-128.4075193425509,52.87712140786951],[-128.40742706694132,52.877103115928634],[-128.40724192628937,52.877072706217234],[-128.40699259442445,52.87704305482302],[-128.4067074445512,52.877021985070805],[-128.40643318664823,52.876996206662966],[-128.40621055306397,52.876944703473505],[-128.40601751509365,52.876856714446085],[-128.40583430414614,52.876761240397336],[-128.4056372109691,52.87668398103061],[-128.40541933228297,52.87663406539028],[-128.40523098101352,52.87661268816668],[-128.40506721422548,52.876614362419026],[-128.40485783401954,52.87663265816638],[-128.4046127679227,52.87664552141545],[-128.40439382499443,52.876642717513946],[-128.40424332971273,52.87664859505489],[-128.4041316189199,52.87666545643192],[-128.40402030861483,52.87667278350469],[-128.40386866559345,52.876641683322724],[-128.40362538840432,52.87658723388753],[-128.40339872850373,52.87656328253372],[-128.40324240097294,52.87656479313688],[-128.4030607363811,52.876562901795594],[-128.40282801962553,52.876579993735135],[-128.4025149039695,52.87662451722644],[-128.40217945900554,52.876652677798674],[-128.40197281206085,52.876669800246006],[-128.4018898415317,52.8766843857213],[-128.40183982055672,52.87667251834806],[-128.40176195399127,52.87664551380743],[-128.40163138112925,52.87664145484923],[-128.40149989515973,52.876654232894886],[-128.40141767305198,52.87666544801281],[-128.40131359011158,52.876685514517895],[-128.40118462623968,52.87671000912704],[-128.40099761881376,52.87674522441755],[-128.40073231410747,52.8767954936806],[-128.40060331827343,52.8768194321585],[-128.40054718007323,52.87676508238033],[-128.40043210424233,52.876655865855994],[-128.4003566415489,52.876589012050296],[-128.4003126017553,52.87656748691451],[-128.40025560570132,52.876547347616345],[-128.40019018445142,52.87652625913278],[-128.4001208393169,52.87650188705554],[-128.40005693142191,52.876474605301695],[-128.39997961039026,52.87644086107487],[-128.3998549241278,52.8763923957687],[-128.39970499534897,52.87634219434508],[-128.3995586610981,52.87628968584794],[-128.39942455796006,52.87622290756688],[-128.39931100844606,52.87615738687388],[-128.3991621615362,52.87610997025712],[-128.3990233859374,52.87607580264328],[-128.39896595817567,52.87606464140575],[-128.39894835968124,52.87606612188164],[-128.3989305889323,52.87606480727681],[-128.39880136531357,52.876034929346815],[-128.39855437828078,52.87598054532589],[-128.39842737903885,52.875858115511186],[-128.39844776818543,52.87567438250645],[-128.39843942366912,52.87557588442178],[-128.3983357982171,52.87557070679546],[-128.3981716882456,52.87556620726482],[-128.39805149068204,52.875547921764785],[-128.39793035627275,52.87549657444576],[-128.39776627949772,52.87542647715344],[-128.39764960417105,52.875421009062826],[-128.39749278357058,52.87546345159092],[-128.39727627410699,52.87547067600084],[-128.39715066251767,52.87547211709413],[-128.3971030619449,52.87548654282605],[-128.397077307023,52.875492109222904],[-128.39702531779727,52.875478037533796],[-128.39688394651728,52.87543102176105],[-128.39668201327825,52.87534992666851],[-128.3964479206705,52.87524314260986],[-128.39624243618414,52.87514866443606],[-128.39616791779784,52.875114860636984],[-128.39610484044252,52.87511895433308],[-128.3959663829228,52.87512345469517],[-128.39585126082684,52.875129165479194],[-128.39566088984895,52.87518743065169],[-128.39539422943872,52.87527975727604],[-128.39523346038968,52.87530153896764],[-128.39510291323626,52.8751489048427],[-128.3949692066585,52.87490664551104],[-128.39491991529474,52.87479159822987],[-128.3949154720175,52.87477879911717],[-128.39490897957037,52.87476266910447],[-128.39490142438729,52.87474432725834],[-128.39488780053188,52.8747171302741],[-128.3948649193085,52.87467443368964],[-128.3948301550553,52.874619080629024],[-128.39478930788198,52.87455488167563],[-128.39474534895874,52.87448513996739],[-128.3947227821871,52.87444803412939],[-128.39471802431754,52.87442963526669],[-128.39467987706345,52.874396775711084],[-128.39463210120013,52.87435850619688],[-128.39461362217497,52.87434430675201],[-128.39449053776312,52.874324390193784],[-128.39422051080598,52.874306902289476],[-128.39373325341387,52.87418452344134],[-128.39306625465557,52.873928456855765],[-128.39266160023425,52.873751693707504],[-128.39256526675044,52.87371048326619],[-128.39251131194393,52.87369476332933],[-128.3924885542532,52.873687378055855],[-128.39250009543568,52.87366079866609],[-128.39254334590348,52.87358535182224],[-128.39263780084755,52.87347691183089],[-128.3927504129321,52.87336025342384],[-128.39277734453,52.87327617787316],[-128.39270951667157,52.87322878096766],[-128.39261480938842,52.87318361764343],[-128.39252142202395,52.87311208294541],[-128.3924217058714,52.8729941414828],[-128.39234369931276,52.872881364115216],[-128.39228132609685,52.87283161346375],[-128.3920963036791,52.87278604588726],[-128.39182918057634,52.872720845781465],[-128.3917149446262,52.872692341572915],[-128.39170457731643,52.872673491669005],[-128.39166450176182,52.872606468419846],[-128.39168755263205,52.87250284608253],[-128.39183152371402,52.87241414608412],[-128.3920362370006,52.87236288739491],[-128.39224029945294,52.87233294497038],[-128.39232903213244,52.87232160357269],[-128.39236784087427,52.8723331470076],[-128.3924799175639,52.872356097355784],[-128.3926069138997,52.87236303761815],[-128.3927488560091,52.87233772281783],[-128.39300831162737,52.87228310524665],[-128.39329860219442,52.872230666637925],[-128.3934535615601,52.87220508584327],[-128.39354669879873,52.87218916887372],[-128.39366932561632,52.872168175166706],[-128.39380962665354,52.87214681231121],[-128.39391969040864,52.872133922886505],[-128.39399943817503,52.8721283694116],[-128.394076452314,52.872124001778076],[-128.39430017912218,52.872112716026066],[-128.39473807386702,52.872102671595506],[-128.39518894223784,52.87214113021163],[-128.39553266219642,52.87221093251669],[-128.3956967250822,52.87224795217755],[-128.39584395852467,52.872250556533096],[-128.39621528594503,52.87218243848162],[-128.39660302877,52.87205847890652],[-128.396742125565,52.87196594324108],[-128.39673664435662,52.87190158860387],[-128.39673299863458,52.87185344992662],[-128.39673305547186,52.87180467062708],[-128.39674298893573,52.87171645567326],[-128.39676808448908,52.87159989164402],[-128.39679391204336,52.871513029845794],[-128.3968019195259,52.871489885709224],[-128.39680919305144,52.87147011127368],[-128.3968343575351,52.87140456642361],[-128.3968667959184,52.87131925608407],[-128.3968916047295,52.871263809572305],[-128.39690234558364,52.87123947946372],[-128.39692097538472,52.87120658366197],[-128.39698140286885,52.871122379702506],[-128.3970610030539,52.87103162228436],[-128.39710260227318,52.87099320783489],[-128.39713506846257,52.8709746057704],[-128.39720432750715,52.87093170717242],[-128.39730944905068,52.87084771243353],[-128.3973922782095,52.870747918996855],[-128.39742379985856,52.87067943668897],[-128.3974255121792,52.870627268826084],[-128.39745797874147,52.8705755857429],[-128.39753797638974,52.87054143769262],[-128.39758127639072,52.87053327065107],[-128.39763470226168,52.87052321063993],[-128.3977340205531,52.87050155793104],[-128.397787383336,52.87049037790116],[-128.3978517467109,52.87047617475876],[-128.3980680963238,52.87048297193308],[-128.39833900552463,52.87053293942435],[-128.39870000701166,52.870513236948966],[-128.3991575425097,52.87030655848484],[-128.39932717674498,52.87004577560953],[-128.39930122682446,52.869931939404616],[-128.399378794686,52.86988774852137],[-128.39950304960013,52.869796633502105],[-128.39957434366556,52.86970715603288],[-128.3995855953384,52.86967553163182],[-128.39961471080946,52.869679987086],[-128.3997566485212,52.8696714821528],[-128.40009934438248,52.86965719014758],[-128.4007747338441,52.869715716825496],[-128.40151540291427,52.869809341209525],[-128.4018117833405,52.86979935453254],[-128.4018118302024,52.86968443120012],[-128.4018102090647,52.869490490204576],[-128.4018069564286,52.869284248917396],[-128.4018084205763,52.86916143894086],[-128.4018091489223,52.869091907291384],[-128.40180908372776,52.869057715346194],[-128.40183521233885,52.86905885861846],[-128.40206832347363,52.86906587077774],[-128.4025172409907,52.86907014743095],[-128.4029878203089,52.86916143598622],[-128.4033883159795,52.8693634725348],[-128.40368185314276,52.86946791456159],[-128.40391691670484,52.86944347950295],[-128.40408970784458,52.869420883203645],[-128.40429098078457,52.86944087604838],[-128.4046455545872,52.86935681082601],[-128.40498442720857,52.86902752333273],[-128.40511124032795,52.868701445396],[-128.4051155195053,52.86859596122482],[-128.40510570527576,52.868570373590835],[-128.40504209243272,52.86844946050196],[-128.40495503815148,52.86827577275199],[-128.4049489501212,52.86818451178508],[-128.4050207982285,52.86815445400996],[-128.40512344712474,52.86812599921852],[-128.40524689870247,52.86810328979615],[-128.40538393579695,52.86809039328579],[-128.4055749999932,52.86806181436362],[-128.40573611063797,52.868013666091294],[-128.40583585630637,52.867966774109554],[-128.40593814560066,52.867915344987374],[-128.4060050833966,52.867880902164565],[-128.40605749234572,52.86785291916341],[-128.40614491015782,52.86778553189743],[-128.4062228461361,52.86769872149936],[-128.4064602725471,52.867600795865656],[-128.40693584744307,52.867483980330576],[-128.40727878019896,52.867408558896],[-128.4073971241495,52.867278868656136],[-128.4075163997918,52.86700116412663],[-128.4076561862052,52.86674041387038],[-128.40781067081085,52.86654215177112],[-128.40808888579866,52.86637554695238],[-128.40838660661487,52.86630721998561],[-128.40850179788882,52.86630317233443],[-128.40858960408713,52.866308664892216],[-128.40884369311254,52.866324759376496],[-128.4091280678944,52.86630042366968],[-128.4092859156383,52.866227669793496],[-128.40938885314938,52.866154920507704],[-128.4095692984603,52.86608675289583],[-128.4097671554566,52.866046815124676],[-128.4098734792403,52.866033978029506],[-128.40989922677815,52.866028408796346],[-128.41010994072377,52.86598539912176],[-128.41052949186582,52.86589886994717],[-128.4109528510075,52.86583019204858],[-128.41139986013803,52.8657520661996],[-128.41169951526913,52.86565228706151],[-128.41185432102913,52.865575107025855],[-128.41197594870602,52.86547114185775],[-128.41199952772112,52.86531199696682],[-128.41201865124773,52.86518938851515],[-128.41211001993986,52.865077074393504],[-128.4122500429028,52.86490320493154],[-128.41230545569422,52.864731081529555],[-128.41222754137857,52.8646042940398],[-128.41207830601437,52.86446720219106],[-128.41196153088217,52.864196580476666],[-128.41198283229298,52.86388219395251],[-128.41203255006346,52.86374101730282],[-128.4120418682029,52.863708309818655],[-128.41208378505675,52.86364297300643],[-128.41213679791335,52.86356003350149],[-128.4121322980185,52.863480517312034],[-128.41205760867874,52.86337777476257],[-128.41199246981603,52.8632793210797],[-128.41198816388982,52.86318691103005],[-128.4119960457804,52.86309592813712],[-128.41199735617855,52.86305329381526],[-128.41200484328286,52.863037442628276],[-128.4120136992546,52.863013149492204],[-128.41202916555886,52.86299040699432],[-128.41204293122885,52.86297050701464],[-128.41206422893444,52.862952129776644],[-128.41211422957977,52.862914658134834],[-128.41220490315516,52.86283935913391],[-128.41228478674972,52.86275418140448],[-128.41232762792217,52.8626725718441],[-128.41235150031625,52.86255155193523],[-128.41237039949752,52.862425018918564],[-128.412380808384,52.862329499051796],[-128.41238638342813,52.86224697728274],[-128.41238772824218,52.86218864473684],[-128.41237680506325,52.86212720036052],[-128.41240428195755,52.86202067363785],[-128.4125025032307,52.8619306430881],[-128.41257260580508,52.86188659600114],[-128.4126004027202,52.86186808516745],[-128.41264327874165,52.86185262839628],[-128.41271820865964,52.861828099450506],[-128.41277588040455,52.86181121751022],[-128.41279884356234,52.86180570475259],[-128.4128515890055,52.861783873845],[-128.41297632748436,52.86171852184654],[-128.41313557024614,52.861621631074435],[-128.41326054997006,52.86152767744322],[-128.41331164676544,52.86147673665865],[-128.41331841771606,52.86146481995737],[-128.4133439892188,52.86143962714857],[-128.41337778448232,52.86136268789915],[-128.4134133387056,52.86120161875478],[-128.41344054767694,52.86105753977475],[-128.41349260352027,52.86095780031155],[-128.41357562924583,52.86086247464191],[-128.41361424912645,52.860821316165264],[-128.41358668039211,52.86081122621822],[-128.4135613321466,52.86070859197656],[-128.41358165421343,52.86049233822338],[-128.4135850182174,52.86028875763738],[-128.41354553484854,52.860133714995705],[-128.41350503399707,52.85999383460736],[-128.41347590467572,52.859890156740384],[-128.41344912406578,52.85981165426998],[-128.41340815961482,52.85969645087945],[-128.41336467354108,52.859536440262424],[-128.41333663468356,52.85936994987574],[-128.41332156070038,52.85921889063778],[-128.4133053085424,52.859079633214606],[-128.4132881619153,52.858974022728866],[-128.41327961863863,52.8589383181936],[-128.41327005534026,52.858917210881515],[-128.4132407625862,52.85886007269332],[-128.41320405342427,52.85877056158981],[-128.4131691432359,52.85866363860176],[-128.41313418469784,52.85855559534141],[-128.41309781673974,52.858422913481675],[-128.4130525693711,52.85826462521524],[-128.41297308033506,52.85810984792024],[-128.41289666875647,52.857993120950496],[-128.41289840795446,52.85794150763573],[-128.41291112538613,52.85790312383803],[-128.4128415705162,52.85784176244357],[-128.4127761958414,52.85777191024305],[-128.41275210095193,52.85770792867426],[-128.41273235865452,52.85765507918921],[-128.41271368291302,52.85758818765689],[-128.41266045262446,52.85748612577939],[-128.4125367743775,52.857356358216855],[-128.4124081683432,52.85723790425424],[-128.41233693559911,52.85714685936238],[-128.412297174458,52.857085450901955],[-128.4122339594188,52.85703741399154],[-128.41214517926647,52.85698148815629],[-128.41205069598,52.85692344583238],[-128.41195138217702,52.85686212989644],[-128.41189449185416,52.856810599185984],[-128.41177702547893,52.85670817847242],[-128.41156849201363,52.85655884836561],[-128.41146613037066,52.856493109601594],[-128.4114645151796,52.8564645553137],[-128.41146098940345,52.85636932125255],[-128.41146498492506,52.85624253770948],[-128.4114800492999,52.85614692198401],[-128.4114935809405,52.856090016444256],[-128.41152707341664,52.85600747740157],[-128.41157720521517,52.85590665668224],[-128.41159906010463,52.85586528674257],[-128.41147518422915,52.85581400984196],[-128.41122563772058,52.85571261375757],[-128.41100928788558,52.8556716395488],[-128.41075895159227,52.855638655116316],[-128.4103937804284,52.85548356771512],[-128.40998885497956,52.855201472122616],[-128.40971154700986,52.85493806093866],[-128.40962842562615,52.854768214557645],[-128.40959353838718,52.854611954905515],[-128.40947160615974,52.854496168566726],[-128.40935338792107,52.85439655960047],[-128.4092670574733,52.85423574880412],[-128.4090267488067,52.85396821336761],[-128.40874805050206,52.853663342154306],[-128.40864347824464,52.85352533005778],[-128.4086287697841,52.85351217664907],[-128.40861798381948,52.853502306559356],[-128.4085934114361,52.85347926414765],[-128.40856713051312,52.853359829021535],[-128.4085527996841,52.85310615461143],[-128.40842039180689,52.852854345296436],[-128.40814182921972,52.85268346412619],[-128.40784208106504,52.85254945288259],[-128.40722831484808,52.852424119769076],[-128.4064354304505,52.85237309246377],[-128.4060727643698,52.852377158708926],[-128.40604944107497,52.85237595013554],[-128.40606056814826,52.852358903408515],[-128.40610104102632,52.852284636752664],[-128.40615149729928,52.85218941789863],[-128.40616893683801,52.85215205929364],[-128.40618453398312,52.8521152945703],[-128.40624125041043,52.85201546239889],[-128.4063345281371,52.851904233707295],[-128.40645051628437,52.85181607694904],[-128.40657956806587,52.85171196381331],[-128.40667860985272,52.85160397147713],[-128.4067198077017,52.851542579606935],[-128.40673661428607,52.85149402132471],[-128.40675688469778,52.85139157189938],[-128.40678631666376,52.85125361972393],[-128.4068476003893,52.851119490840254],[-128.40693806742541,52.85099150032757],[-128.40703040707015,52.85086346237547],[-128.40710190583462,52.85072913291529],[-128.4071518773437,52.85059243698876],[-128.40719670946206,52.850479948840764],[-128.40725180743794,52.850417715660576],[-128.40732273822806,52.85037196776538],[-128.40736907930398,52.850319440189104],[-128.40736487449925,52.85024496744329],[-128.4071747438075,52.850123840178725],[-128.40673694358804,52.8499999484271],[-128.40643362814185,52.849917584635364],[-128.40640306034882,52.849870553174895],[-128.4064206996647,52.849853372936465],[-128.40651380024548,52.84983801023255],[-128.4068592928447,52.84976085643882],[-128.40730236155179,52.84961553857481],[-128.407527467416,52.849466282358165],[-128.40753363061222,52.8492951690888],[-128.40745817835113,52.84909601111529],[-128.40741845967347,52.848820996475546],[-128.40745367598822,52.84848893905132],[-128.4075155481266,52.84833238124969],[-128.40754711375286,52.84833116903984],[-128.40764010610312,52.848346646594926],[-128.40786000591208,52.84838530210268],[-128.40803006298276,52.84839807802791],[-128.40811558660593,52.8483638079681],[-128.40823001904036,52.84828128716382],[-128.40837585147642,52.848161685959106],[-128.40850986713434,52.848030558183126],[-128.40861179038086,52.847907928256696],[-128.4086819489541,52.84781566751498],[-128.40871751327052,52.84777008780436],[-128.40872345659017,52.84775987459158],[-128.408827047122,52.84776559865219],[-128.4091613274339,52.84778677305743],[-128.40970781951725,52.84784228023377],[-128.41023216717417,52.84790103803278],[-128.4104741402723,52.84790223413458],[-128.41051921375472,52.84787664130509],[-128.41054531718538,52.84786097301397],[-128.4105688779348,52.84784983296947],[-128.41063678819398,52.84778397116508],[-128.41077022183111,52.84765901499408],[-128.41088883969138,52.847584819422345],[-128.41107160071525,52.84752612571304],[-128.41144425240103,52.84741980359207],[-128.411778469448,52.84734117978634],[-128.41191672635543,52.84731815769794],[-128.41212366411597,52.84734137380658],[-128.41247446259305,52.84737509844366],[-128.41270544677653,52.847329987851325],[-128.41278150210238,52.84726002846945],[-128.41280355483948,52.84723882760067],[-128.41281330966592,52.847230222220844],[-128.4128317718723,52.84721133763448],[-128.4128415581198,52.84720328775103],[-128.4128796098419,52.84716886815118],[-128.4129609235675,52.8470931942953],[-128.41306539623972,52.84703218600156],[-128.41319466130332,52.84699813453369],[-128.41349611413946,52.84693251281533],[-128.41396678488815,52.846815753991415],[-128.41425190801883,52.84672467694676],[-128.4143006951886,52.846699006228626],[-128.41433656483483,52.846691541230946],[-128.41441185025099,52.846657476861736],[-128.41450831465943,52.84658654050121],[-128.4145891144879,52.84651815968554],[-128.4146711680967,52.84647218721787],[-128.4147746656263,52.84642688603577],[-128.414864453226,52.84638579558101],[-128.41492583770682,52.846352581823055],[-128.4149579602323,52.846328374761676],[-128.41496661886794,52.846316984088865],[-128.41502511008008,52.84629839720048],[-128.4152239847338,52.846228717876606],[-128.4154942194731,52.84610486214354],[-128.41566952235317,52.84599697884689],[-128.41572707810343,52.84594533808836],[-128.4157357364559,52.84593394735607],[-128.41575429223283,52.845916746709946],[-128.41580829110762,52.84585172392869],[-128.41590076694112,52.84574330158499],[-128.4160018370692,52.84562236844985],[-128.416086831126,52.845496724766214],[-128.41615261936144,52.845377073505006],[-128.41620321910383,52.84530147291953],[-128.41621893058877,52.84528320944346],[-128.41623300537898,52.84526889957561],[-128.41625918677107,52.84522183294978],[-128.41630581333723,52.84515808283254],[-128.41635199552903,52.84508649299426],[-128.416410218551,52.845014090246984],[-128.41656179506055,52.84494705910444],[-128.41675775483716,52.84485893159693],[-128.41688577569457,52.8447705246373],[-128.41693649871246,52.84471341749192],[-128.41698129555385,52.844666523667506],[-128.41706863262627,52.844615390426554],[-128.4171810667206,52.84456374051664],[-128.41731086191723,52.84452294574895],[-128.4174634347858,52.844490086914256],[-128.4176167235265,52.84443703935347],[-128.41773991069184,52.84436162094627],[-128.41784308234148,52.84431071721545],[-128.41794944630223,52.84428330317805],[-128.41804318246287,52.84424661383569],[-128.41816719461653,52.84416949157454],[-128.41831103164165,52.84404824054182],[-128.4184046879337,52.84394427664039],[-128.41846560603543,52.843870139800515],[-128.41854517266978,52.843780477270876],[-128.41861474742282,52.84369494938981],[-128.41867131267293,52.84360968941869],[-128.41868500733295,52.84345748037458],[-128.41863600721055,52.84328245097089],[-128.41859545621125,52.84319077731038],[-128.4185859893439,52.84317135463589],[-128.4186086722678,52.84316135219533],[-128.41872286309726,52.843124240914825],[-128.41889703285196,52.84307861025488],[-128.41901354299029,52.84304985591243],[-128.41907339386344,52.843006014833186],[-128.4191367396823,52.84294191893021],[-128.41920056206718,52.842886227148796],[-128.4192770115464,52.84282353860649],[-128.41934926767888,52.84275253139316],[-128.41942192058985,52.84265572682549],[-128.41950454857133,52.84252171487018],[-128.41958188635977,52.84240911590902],[-128.4196475492388,52.842336566912],[-128.41968883108822,52.84229366425096],[-128.41973470325092,52.842249554683036],[-128.41980314527822,52.84217693934099],[-128.41986499505668,52.842102782390285],[-128.41993491421593,52.84202341788154],[-128.42000877207158,52.84194789209731],[-128.42003783916726,52.84191926135342],[-128.4200563427759,52.84190093972012],[-128.42022442367102,52.84191205193218],[-128.420608840187,52.84193215962731],[-128.42088537519055,52.84193655003307],[-128.4209845834736,52.84193057568953],[-128.42108274554653,52.841939208284614],[-128.4211935347781,52.841973360621544],[-128.42128043666574,52.8420130556152],[-128.42144313749137,52.84209323949786],[-128.42170274753244,52.84222523645139],[-128.42186076446941,52.84230495125834],[-128.4220072608774,52.84231258618737],[-128.42241180112165,52.842261067968096],[-128.4229584061806,52.84222120243761],[-128.4235048638073,52.84230971818625],[-128.42403534972505,52.842444533180846],[-128.42454474359042,52.84243738014987],[-128.42523697472075,52.84230815031029],[-128.42594626525653,52.842200998222694],[-128.4264603084482,52.84209562510299],[-128.42682567426783,52.84196081469125],[-128.42697171216417,52.84189500516616],[-128.42697655407704,52.84188200598719],[-128.4269838385224,52.84184653987226],[-128.42685194353135,52.841768534428674],[-128.42662407622012,52.84167120810297],[-128.42670529135773,52.84159440451682],[-128.42701609451498,52.841563312831454],[-128.42719768196318,52.84151750721405],[-128.42723953944562,52.84145217334574],[-128.4272851916124,52.841387873315625],[-128.42739893129792,52.84129414289797],[-128.42753914030789,52.8411589342208],[-128.42768243295274,52.84104496575918],[-128.42782673256966,52.840965170593535],[-128.4279671849151,52.84086695828134],[-128.4281191722826,52.84079149781646],[-128.42825635576315,52.84071745559475],[-128.4283432639764,52.84054466866539],[-128.42838734337568,52.84033856411246],[-128.42841035709753,52.84018727244753],[-128.4284740562141,52.84008055533293],[-128.4285917815513,52.84000804531387],[-128.4286457736896,52.83989423609318],[-128.42864059908132,52.83968915008916],[-128.42863672367437,52.83947394572324],[-128.42863459909103,52.839273281673066],[-128.4286354403494,52.839124699972956],[-128.42863224826186,52.83905243934663],[-128.42853161024416,52.83895136374756],[-128.428301171858,52.838808686803006],[-128.42814474416207,52.83872446253941],[-128.42811125041385,52.83865900004056],[-128.4280991746825,52.838561133811076],[-128.42809546479856,52.83851243959718],[-128.42837590678602,52.838471315048515],[-128.42912262880628,52.83832019428698],[-128.42980559989883,52.83812777953343],[-128.43010607876846,52.83801391831054],[-128.43049621515496,52.83785727823458],[-128.43107047860136,52.83761832609876],[-128.4313546377602,52.83749582920376],[-128.43138706352332,52.83747721728638],[-128.4316131748463,52.837364335865026],[-128.43208025872536,52.83713825480059],[-128.43238673048705,52.83698277599322],[-128.4324373811988,52.83694136063478],[-128.43248830217152,52.836904424762196],[-128.43270059608443,52.83681032395601],[-128.43296891626747,52.836703848963786],[-128.43308282176739,52.83666224375571],[-128.43308241160628,52.83662244239837],[-128.4330816610578,52.8365114514161],[-128.4330932418667,52.83637217291657],[-128.4331341524592,52.836225002742886],[-128.43319830847346,52.836061643908586],[-128.4332723127618,52.83590761625534],[-128.43332691181214,52.8358050133991],[-128.43335979760965,52.83574546017395],[-128.4333926367584,52.835685351748005],[-128.4334247458858,52.8356286222768],[-128.43342331821052,52.83558716454462],[-128.43339326455782,52.8355659270085],[-128.4333753644895,52.83556181290229],[-128.4333971821803,52.83555294661461],[-128.4334492778669,52.835520471009396],[-128.43349317938507,52.835442192779816],[-128.4335325072184,52.83531635944657],[-128.43356516877722,52.8352041106495],[-128.43358426608063,52.83513139675288],[-128.43359898065287,52.83506324984512],[-128.43361508442436,52.834970414954476],[-128.4336273976718,52.83484401126905],[-128.43362925351374,52.834697085154346],[-128.4336560627522,52.834514882078075],[-128.4337526736064,52.834300957405794],[-128.43385254794805,52.83416041329371],[-128.43393361278012,52.83409761841182],[-128.43404451931644,52.8340364562899],[-128.4341506649718,52.8339894042888],[-128.4342185171887,52.83397229948934],[-128.43424336915987,52.833967855222795],[-128.43427925682758,52.83396094853337],[-128.4344192523404,52.833936741286166],[-128.43464545586104,52.8338911191911],[-128.43485599068254,52.83381555600226],[-128.43501801107334,52.83370455256693],[-128.43511874275273,52.83357912224032],[-128.43516238345657,52.833496363468825],[-128.43517039470666,52.83347377166201],[-128.43518032789058,52.83345226126885],[-128.43521024944857,52.83337370704544],[-128.43526623364315,52.83326266012721],[-128.43531919592093,52.833180273027274],[-128.43531928990177,52.8331331772418],[-128.43530061752068,52.833099361007555],[-128.43531091517298,52.83303523432319],[-128.43533431263387,52.83292374204187],[-128.43533684736158,52.83282165279593],[-128.43533294323973,52.83278585275969],[-128.43533183351528,52.832749994753684],[-128.43531518136976,52.83263765582723],[-128.43527500153326,52.832503935472765],[-128.4352215794278,52.832415341088556],[-128.4351731748435,52.832365887479085],[-128.43512689315133,52.83230461186553],[-128.4350526601765,52.83219346728516],[-128.4349921024115,52.83204502771534],[-128.43497049257817,52.831878404860106],[-128.43500959265535,52.83171612913995],[-128.43509187407759,52.83160958693562],[-128.4351364997502,52.831576700199406],[-128.43513317513245,52.83151846245544],[-128.43512482232174,52.83138856690405],[-128.43511651664787,52.83125923549117],[-128.43510758853606,52.831119260304604],[-128.435007638451,52.830981173197216],[-128.43482424874463,52.830945732171216],[-128.43473767230645,52.83094416399883],[-128.43474574722606,52.83092269214141],[-128.43474891940446,52.83091309095681],[-128.43476013477974,52.8308814624143],[-128.43479838638652,52.83078592509492],[-128.435003284978,52.830628059254295],[-128.4354097950742,52.830450312467605],[-128.43571171082752,52.830330233556325],[-128.43587826379067,52.83015242239129],[-128.43575632675126,52.82982472988953],[-128.43510806733426,52.829498430249586],[-128.434538008292,52.82927086475935],[-128.43440294337876,52.829185640599285],[-128.4344568566429,52.82915257038687],[-128.4346394965262,52.82911009366805],[-128.43485334265117,52.829125285127766],[-128.4351210521701,52.82918813022456],[-128.43554113001335,52.82923211545845],[-128.43586349520734,52.82920972850303],[-128.4359702663849,52.82917387429145],[-128.43602407298025,52.829155373282916],[-128.43607510074986,52.829136938887565],[-128.43609303933124,52.82912535375781],[-128.43607909072563,52.82894623760453],[-128.43604537029464,52.82859989509992],[-128.4360281864025,52.828429260156916],[-128.43599336229929,52.828422133851554],[-128.43554564683384,52.82833387240265],[-128.44419584379034,52.823032009883896],[-128.44421717499463,52.82304726377097],[-128.44430301962512,52.823182273854194],[-128.44437554433057,52.823344472334675],[-128.44449165620685,52.82348837842469],[-128.44459518925134,52.82362358501963],[-128.44469682360884,52.8237420026975],[-128.44482997367564,52.82385865149361],[-128.44500649016672,52.823985600727084],[-128.44512260642796,52.82412951509362],[-128.44524050724397,52.82425600763376],[-128.44538772769485,52.82437459630529],[-128.44545963923187,52.82450989585011],[-128.44557563514968,52.82463530646081],[-128.44569278232746,52.824797139495814],[-128.44573679884178,52.824932454982275],[-128.44579306826603,52.82508658608054],[-128.4459551810868,52.825221683145045],[-128.44605736416847,52.8253658869626],[-128.44615853484515,52.82549216212955],[-128.44617287346315,52.825644924306886],[-128.44605216644536,52.82576181175413],[-128.44605198774823,52.82580722335778],[-128.44619724720934,52.82592417446669],[-128.44634584753769,52.826050591248524],[-128.4464462819054,52.82621276288207],[-128.4464469613249,52.82625704427404],[-128.44659281631175,52.826384074137394],[-128.44691547459698,52.8266105771543],[-128.44704797997622,52.8267642306656],[-128.44716411068143,52.82690814275683],[-128.44728161777422,52.82704361185859],[-128.44732532588347,52.827205844161554],[-128.44730768044596,52.82736824332503],[-128.44724664913463,52.82752032512919],[-128.44716922895827,52.82764584651409],[-128.44718446098003,52.827798024690466],[-128.4472119044283,52.82795219084811],[-128.44723829813117,52.828104136290065],[-128.44723738889564,52.82826674256983],[-128.44721916394417,52.82841905307968],[-128.4471431450999,52.82855295032592],[-128.44712827766043,52.828715291381904],[-128.44718613714963,52.82883237691327],[-128.44721434104312,52.828886176039354],[-128.44727263442178,52.828913549171354],[-128.44749608942675,52.82895037805121],[-128.4477152521781,52.82912297229028],[-128.44769855648855,52.829302170893484],[-128.44769676994792,52.82948161474964],[-128.44766559073508,52.82963531664259],[-128.44763470555566,52.82977780843729],[-128.44761749951218,52.82993178405383],[-128.44755593455918,52.83007435035677],[-128.44743504155693,52.83023665037097],[-128.4473297441943,52.83037900698879],[-128.4473112846507,52.830559919571904],[-128.44732559671414,52.83071211665754],[-128.44733880007993,52.83074772267667],[-128.44750183381637,52.83086598808577],[-128.44763329445126,52.831001165818634],[-128.4477350572592,52.831153782002055],[-128.4478219894841,52.83130726350482],[-128.44789529656035,52.83143412707279],[-128.44801131845767,52.83155953472114],[-128.44817390259374,52.83168621380403],[-128.44828908576724,52.83181331613013],[-128.44836381335938,52.83194855497425],[-128.4484200691243,52.832102119666665],[-128.44843296737773,52.832245940860666],[-128.44840176723775,52.83241534117982],[-128.448356222044,52.83257775675081],[-128.44829378361206,52.832721462677384],[-128.44820381830166,52.83285565100731],[-128.44812779464337,52.83298954851085],[-128.4481407070437,52.83313336934531],[-128.4481686073356,52.833295374390936],[-128.4481802251185,52.83344930482293],[-128.44817881587096,52.83361921391391],[-128.44819041675953,52.83377258850891],[-128.4482493469417,52.833908156756166],[-128.4483211591032,52.8340249505774],[-128.44840781655782,52.83420591330752],[-128.44842073027004,52.834349733999495],[-128.44856862886948,52.83451203491954],[-128.4487284462779,52.83463877096934],[-128.4488320198018,52.83477397286305],[-128.44887424142271,52.83492614348999],[-128.44897611474224,52.8350804426148],[-128.4490632779521,52.835205329900326],[-128.4491651202101,52.83535906438073],[-128.44923805880077,52.83551171534534],[-128.4493557360049,52.83566568444087],[-128.4494286156318,52.835800961039546],[-128.4495289452714,52.83594463517314],[-128.44966100688254,52.836089889706855],[-128.44977854718866,52.83622535551446],[-128.4498650752363,52.83638781410955],[-128.4499362681453,52.83655845062404],[-128.4500101480436,52.836711081450105],[-128.4501115150443,52.836856419856694],[-128.4501980285927,52.83701832233834],[-128.45027234956882,52.8371625386177],[-128.45034417274513,52.83727933095926],[-128.4504600936756,52.83745127620598],[-128.45050373149036,52.83759556759722],[-128.45053157932392,52.837756451675986],[-128.45057301380191,52.83792714373599],[-128.45067611825098,52.8380539396633],[-128.4507936671907,52.83818940428519],[-128.45084906466252,52.83836036989918],[-128.45086198734631,52.83850418098172],[-128.45086105977768,52.838666230716846],[-128.45084470154274,52.838818501988314],[-128.45093027401313,52.83896416934852],[-128.45103420691146,52.83908926124424],[-128.4510903735456,52.839224885637776],[-128.45113504568775,52.8393871046677],[-128.45114840884315,52.83952250129668],[-128.45123486736261,52.839683282797324],[-128.45136669401512,52.839872826638484],[-128.45142309691516,52.84004489218637],[-128.45143514697813,52.84020610573289],[-128.45144879215232,52.84031402041444],[-128.45146171796443,52.840457840211435],[-128.4514739085434,52.8406375475055],[-128.45150197026916,52.840737321135414],[-128.45166533439308,52.840828098176246],[-128.4517828941172,52.840963561568635],[-128.4518849760654,52.84108869135529],[-128.45195652977745,52.84123296424666],[-128.45205883588588,52.84137828130588],[-128.4521314652137,52.84155729145963],[-128.45221832581527,52.84169283039834],[-128.45224521679563,52.84183691455181],[-128.4523038411976,52.841998841632346],[-128.45236110752,52.84216975834726],[-128.45244798548035,52.842305305712244],[-128.4525345360246,52.842467761710985],[-128.45260885731201,52.84261142021046],[-128.4526358760873,52.8427739982683],[-128.45272316260755,52.84290056661311],[-128.45281132135,52.84302598641965],[-128.4528522102364,52.84317089925924],[-128.45294177509908,52.84330470371027],[-128.45305806708853,52.843450283879704],[-128.45312973775475,52.843612494107134],[-128.4533355662162,52.8438105902323],[-128.45336352517674,52.84397314842946],[-128.45343461797472,52.84412527897798],[-128.4534769621792,52.84427913142893],[-128.4535052020132,52.84441421672766],[-128.4535485458039,52.84458543263203],[-128.45365005027875,52.84476495968901],[-128.4536944063518,52.84479206495569],[-128.45391529624115,52.8448474333946],[-128.45403273280914,52.844964400448745],[-128.4540628139766,52.845018149577804],[-128.45426916885484,52.845128207874396],[-128.45440100631276,52.84523645948577],[-128.45453297168262,52.84536321394672],[-128.4545629121533,52.84539846919999],[-128.45456145027487,52.84555099431709],[-128.45451339816563,52.84568598758496],[-128.45454178166517,52.84575884286095],[-128.45457189652544,52.84581315628017],[-128.45485376777788,52.84587733994555],[-128.45493945873102,52.8460566403356],[-128.45505744925748,52.8461831212461],[-128.4551434067362,52.846318676894846],[-128.45521774351863,52.84646233339186],[-128.45525936475065,52.846652081328905],[-128.4553626405886,52.84673289698114],[-128.45537664111353,52.84681445791392],[-128.45562662744143,52.846922480394184],[-128.45577398576847,52.84705787292852],[-128.45584590568663,52.84717579006322],[-128.45587661172235,52.84717570408004],[-128.45614452429487,52.84715888818856],[-128.45638110133544,52.84711469504512],[-128.45665007821563,52.847116361389006],[-128.45684126073866,52.84718860912423],[-128.45703291403342,52.84725299772365],[-128.45725660144507,52.847308301619535],[-128.45746320346367,52.84738976112783],[-128.45768266090778,52.84759764734613],[-128.45775484053468,52.847768258298785],[-128.45784187520567,52.84792229520354],[-128.45783950308982,52.84807483941044],[-128.45786730642234,52.84821833795194],[-128.45786493438095,52.84837088213072],[-128.45786469270945,52.84856038405246],[-128.45781702994648,52.84876657636848],[-128.45791790318398,52.848902383021525],[-128.4581835022679,52.84903867074819],[-128.4583313605577,52.84918246385818],[-128.45852154933692,52.84931807782338],[-128.4587294906632,52.849390536953706],[-128.45898084254762,52.84947329066967],[-128.45918676191485,52.84959119883416],[-128.4593637364639,52.84969121610436],[-128.45961494753746,52.849755474770916],[-128.45974821908354,52.84987209575162],[-128.45974591828568,52.850025759738145],[-128.45981879078835,52.850159908721906],[-128.45992007870612,52.850286734788575],[-128.460052704996,52.8504403802621],[-128.46017001002198,52.8506027516712],[-128.4602566068133,52.850765201122776],[-128.46035931923075,52.85090041108551],[-128.46037360580772,52.850954489528945],[-128.46056337204004,52.85109852329614],[-128.46063582841265,52.851306128997344],[-128.46084379737562,52.85137857502323],[-128.4610650059999,52.85148718943791],[-128.46127231499526,52.851596659865436],[-128.4614770861642,52.85167814208676],[-128.46163935024228,52.85181322416302],[-128.46183179150933,52.85192299629133],[-128.46196379964917,52.85204974186624],[-128.46215472390844,52.85214945374198],[-128.46228889730435,52.85218476452907],[-128.46242063327597,52.85233898226895],[-128.4625076620403,52.852492459786454],[-128.46256472236013,52.852626373524124],[-128.462755651123,52.85272609334636],[-128.4629476628935,52.852844286842945],[-128.4631416946541,52.852917021232436],[-128.46333262606706,52.85301674009871],[-128.46353786457465,52.853170536319105],[-128.4635222934563,52.85336820871389],[-128.4633718625722,52.85350255392988],[-128.46338523638227,52.85363738350783],[-128.46344496261815,52.85365631392066],[-128.46359103755614,52.853656057768454],[-128.4638274277101,52.85380135111563],[-128.4639439935979,52.85391831797738],[-128.46425359661106,52.85409067181952],[-128.4643727048801,52.85423561700305],[-128.46438358069594,52.85442376429536],[-128.4644272508701,52.85456749347195],[-128.464500210598,52.85470275908964],[-128.46451423121326,52.85478431852034],[-128.46460157756306,52.854910877072115],[-128.46465923040225,52.85505486890101],[-128.46477541572338,52.855181378334706],[-128.46480378041224,52.85533384262212],[-128.4648461767578,52.85548768987869],[-128.46487501241302,52.8556485493755],[-128.4648441414823,52.85569404847618],[-128.46465044922994,52.85583658670996],[-128.4645745336194,52.855972177263155],[-128.4646154101409,52.856115964892595],[-128.46468934433594,52.85626802910318],[-128.46468833023843,52.85633084214104],[-128.46477632947983,52.85648485372418],[-128.46484791999643,52.85662855290932],[-128.46508387992984,52.85678226701348],[-128.4652156075693,52.8569359167299],[-128.4652431292929,52.857025606744905],[-128.46540576234048,52.85713432150228],[-128.4655685105101,52.857260974127534],[-128.46569868674155,52.85738774513911],[-128.46581558153053,52.85755853375381],[-128.46590162030103,52.85777481228085],[-128.46597471300132,52.85784784752006],[-128.46601946074856,52.85801005000811],[-128.46616503184782,52.85814547654335],[-128.46635601824997,52.858325912908015],[-128.46641366727562,52.858469912836505],[-128.46669423593934,52.8586865912568],[-128.4668095150883,52.85881311775174],[-128.46697227383373,52.858939768298406],[-128.46713461509705,52.85907539764429],[-128.46738696300199,52.8591581224611],[-128.46759359423118,52.85923899941504],[-128.46778550082726,52.85933868200452],[-128.46805217298206,52.859411569140775],[-128.46827239029346,52.85942151878184],[-128.46849617149792,52.85947680949745],[-128.46873361884812,52.85955927949902],[-128.4688938924321,52.85965906897998],[-128.4689528266425,52.85979294024667],[-128.4689961793895,52.8599467658783],[-128.4690685909493,52.86013642683801],[-128.46906436647774,52.860288444727125],[-128.46903314138953,52.86042421986084],[-128.46900208817195,52.860530829087466],[-128.46898612403845,52.86057658097215],[-128.46906258000246,52.86059515708383],[-128.4691072319002,52.86059477472809],[-128.469255808928,52.860540637959794],[-128.4693153666844,52.86054050732916],[-128.46953682639236,52.86058798703706],[-128.4698170103845,52.860669000382465],[-128.46998052203438,52.86076030627969],[-128.47008347417952,52.86093081886898],[-128.47018543624293,52.86100380073238],[-128.47049721090283,52.86106788517749],[-128.47074922470358,52.86109622345161],[-128.47089684637302,52.86110601775491],[-128.47111928464457,52.861170293202726],[-128.4712954499886,52.86128712961013],[-128.4714875760569,52.86148659583936],[-128.47154634764166,52.86150498627577],[-128.4717829066929,52.8615235560095],[-128.47208031259527,52.86151617666136],[-128.47221555903337,52.86148921848718],[-128.47233443627331,52.8613723459383],[-128.4723955610798,52.86123874821919],[-128.47245715587874,52.86104907644124],[-128.47251965205706,52.8609070446159],[-128.47271354331025,52.86073589241743],[-128.47293801624318,52.86067453795084],[-128.47323456430757,52.86068455797943],[-128.47344087674333,52.86077552322236],[-128.473661810065,52.86082973405461],[-128.4738092214519,52.86094829359355],[-128.47386833128525,52.861020488378635],[-128.4739873168994,52.861066197786045],[-128.47405867976985,52.86123737247314],[-128.47423660186575,52.86141639437025],[-128.47444295274596,52.861507922248585],[-128.4746946730312,52.86156316914387],[-128.47494460537658,52.861635828585825],[-128.47518237565032,52.86169136835631],[-128.4752724474469,52.86165583202514],[-128.47534599092418,52.86165596880978],[-128.47559942114498,52.86169267211003],[-128.4757459294681,52.86174733519453],[-128.47575930215416,52.86180143114231],[-128.47580502881434,52.86181952928258],[-128.4759089762676,52.861846491917746],[-128.47613073053782,52.861866486282594],[-128.47619036175544,52.86188373504244],[-128.4763377658981,52.86200172658141],[-128.4765001486054,52.86213734272586],[-128.47675078641828,52.8621741024795],[-128.47687094136813,52.86217549818245],[-128.47713622135325,52.86223998051197],[-128.477224413985,52.862284093484696],[-128.4773303205848,52.86231269999678],[-128.47752045878684,52.8624292238199],[-128.47763829751065,52.862583162249074],[-128.47772318025667,52.86276245491749],[-128.47782663559715,52.86284493433964],[-128.4780359961213,52.86290779542677],[-128.47836032260975,52.86296318059786],[-128.47843400549718,52.86298180926227],[-128.47868737532897,52.86308130826418],[-128.4788934471993,52.86319973634526],[-128.4791142020197,52.863282538260606],[-128.47921785923677,52.86333641501571],[-128.47927783911393,52.863407476559026],[-128.47958696100665,52.8634732708765],[-128.47970724735995,52.863508855680294],[-128.4798226466516,52.86371666519205],[-128.47996872918227,52.86384365055932],[-128.48010067486587,52.86395187235348],[-128.48024865877096,52.86409563651711],[-128.48042544725448,52.86422252924008],[-128.4805724232023,52.864348938871025],[-128.48089686907545,52.86456577975209],[-128.4809975260777,52.864727926802644],[-128.48115925609085,52.86489998785109],[-128.48129237215286,52.86504406475239],[-128.48140868177603,52.865171121057],[-128.48142140626075,52.86534184367666],[-128.48149414386117,52.8655040148584],[-128.48152342570222,52.86557515856278],[-128.4816559675624,52.86569345765442],[-128.48177469514178,52.8657660757648],[-128.48181523850525,52.865918835251236],[-128.4818756592277,52.86598147209312],[-128.48188723660135,52.86611634673537],[-128.4819297053079,52.86627018677604],[-128.4819590604523,52.866422617408126],[-128.48198707126136,52.86650387939009],[-128.48207723522543,52.86654963366068],[-128.48217790087818,52.86671177053834],[-128.48228016653744,52.86683743629077],[-128.48239867786495,52.867018266735776],[-128.4823949335537,52.86716187014495],[-128.48243798316818,52.86734148720662],[-128.48248172743334,52.86748520849594],[-128.48249347840942,52.86763913217658],[-128.48270085570934,52.867747443768614],[-128.48296923699826,52.867784381133056],[-128.48307120462164,52.867856787068206],[-128.48308444933937,52.86789238822443],[-128.48308432791754,52.86793836340891],[-128.4830386482295,52.86800099937296],[-128.48308396945046,52.86802807365075],[-128.4833064447139,52.868091769963115],[-128.4835123993901,52.86819169614001],[-128.48352470061795,52.86837084146056],[-128.48353855938038,52.86856061051475],[-128.48344644373387,52.86872121463875],[-128.48344553238493,52.868865323246304],[-128.48348884849216,52.8690174583135],[-128.4835451577858,52.869153064602955],[-128.48360303379053,52.869315548529094],[-128.4837804836931,52.869469342230204],[-128.4839864281125,52.86956870274435],[-128.48414818720966,52.86967685504001],[-128.4842811943646,52.869722814230244],[-128.48441289140555,52.86985794744154],[-128.48453063521282,52.86999337555625],[-128.48463410074774,52.87015546011422],[-128.48473507709855,52.870290677466784],[-128.48488354636692,52.87042602061781],[-128.4849404496732,52.87057170523235],[-128.48510315170202,52.870679827365606],[-128.48529558351007,52.87077106635148],[-128.48551664554432,52.8709059945677],[-128.4857669617231,52.871095802518525],[-128.4858671015635,52.871312334108474],[-128.4859400777966,52.87136628920838],[-128.48601382590476,52.871465644361415],[-128.4860135671708,52.87149312574156],[-128.48608654389872,52.8715470807444],[-128.48617592344618,52.871690956371225],[-128.48621831543716,52.87184311895197],[-128.4863059918804,52.872005527183454],[-128.48642247607836,52.872151071665485],[-128.48651050360775,52.872303389744445],[-128.48664092929832,52.872448639000716],[-128.48677434570675,52.872565227645794],[-128.48689274609944,52.872584026241036],[-128.4870557522939,52.87266523756164],[-128.4870697890255,52.872746228943875],[-128.487096973715,52.872908804602055],[-128.4871393116333,52.873044139773555],[-128.48715192045682,52.87319636724362],[-128.48721101148047,52.87333135675039],[-128.48722424136292,52.873494218738436],[-128.487250649986,52.87362765741074],[-128.48738309118943,52.87372744680863],[-128.48763697759745,52.8738185026041],[-128.48787150216066,52.87392847342783],[-128.48821077959406,52.874126484467084],[-128.48843410109953,52.87423612630551],[-128.4884780777617,52.87427163221203],[-128.48851963265037,52.8743615760447],[-128.48875720163605,52.874444004811856],[-128.4889351379349,52.87458936668033],[-128.48905247762264,52.87473321310241],[-128.48916814415654,52.87491241074494],[-128.48928562741193,52.875074750563854],[-128.48931458031913,52.87515599081674],[-128.48950539742253,52.87528257336852],[-128.48968391851403,52.87537410024164],[-128.48974022345544,52.8755091475529],[-128.48978345455967,52.87570725463129],[-128.48994574220592,52.87582379326507],[-128.49015190747443,52.87594220961392],[-128.49037402088183,52.87601487125277],[-128.49052185602847,52.876043134143245],[-128.49068316505367,52.876142873317384],[-128.49074420558878,52.876151671116816],[-128.49100901645252,52.87626995532731],[-128.49108307975052,52.87642200098989],[-128.49121426858338,52.876531913324676],[-128.49124386261553,52.87657613723649],[-128.49145000212582,52.87669398682674],[-128.49162671840824,52.876802368373674],[-128.4918318854794,52.87698302972599],[-128.49195138079247,52.87702029693133],[-128.4920093377173,52.87705607025448],[-128.49217242981672,52.877218005296896],[-128.49225950526431,52.87735351123622],[-128.49237729470477,52.87748893085267],[-128.49237646466793,52.877570245870025],[-128.49255212018244,52.8777240560161],[-128.49266895657686,52.87785893940821],[-128.4927726481451,52.87797615203121],[-128.49287338198823,52.87813828754169],[-128.49294788600346,52.87828190861585],[-128.49305027669843,52.87840868397406],[-128.49309239964737,52.87857149749169],[-128.4930901194746,52.87872348397565],[-128.4931031820263,52.87886728703129],[-128.49314657579424,52.8790199820076],[-128.49333906247028,52.87911120734787],[-128.49342654424743,52.87923774252319],[-128.4934987938813,52.87939038130771],[-128.49360106113636,52.87956257517583],[-128.49367278758388,52.879706254700324],[-128.4937467894333,52.879777567762304],[-128.49377600790737,52.879958595288535],[-128.4937730336908,52.880066866481066],[-128.49371336635332,52.88012923784723],[-128.49381620646,52.88032720880402],[-128.49387184560624,52.88049814026788],[-128.4938722392931,52.88063212941603],[-128.49386961378846,52.880794205655896],[-128.49395533383972,52.88093815315239],[-128.49404377628485,52.88106522361178],[-128.4941045054287,52.88110038098242],[-128.49416148630465,52.881119354818296],[-128.49443015415056,52.88111196655957],[-128.49453489271863,52.881103581001604],[-128.49478634192337,52.88116776318767],[-128.49509742577362,52.88116900841449],[-128.49532113041266,52.88120462517761],[-128.49554226304306,52.88125991406549],[-128.4956884376502,52.8813868788072],[-128.49585095577478,52.88152246655752],[-128.49596873560532,52.88165732675776],[-128.49616080948655,52.881756961596956],[-128.49627906909575,52.881883962345235],[-128.4966469731121,52.88209198990136],[-128.49691249041413,52.88223716621408],[-128.49701455197822,52.8823897347122],[-128.49707341990828,52.88255219105271],[-128.49736381056712,52.88308984237852],[-128.52106662429836,52.883035131025814],[-128.522311207318,52.88161185982663],[-128.52299281931914,52.88052639163561],[-128.5236150240117,52.87920896369735],[-128.5239880260515,52.87802358980457],[-128.52416727238187,52.877057099764095],[-128.5246614783619,52.87595378061838],[-128.5247415349893,52.87458631538666],[-128.52500203411512,52.873027713926],[-128.52522500425985,52.87149570649921],[-128.52586873383808,52.869649657141515],[-128.52624094776647,52.867479774772384],[-128.52647831893486,52.86561105561556],[-128.52715039914258,52.86369597964238],[-128.52755327901306,52.86158989374639],[-128.5279997886685,52.85927879358106],[-128.52863408426816,52.85720023369838],[-128.52938977386648,52.85509831226366],[-128.52967875087396,52.85308324972785],[-128.52993805098598,52.85063149816221],[-128.53043668226732,52.848042277555976],[-128.53086764767414,52.84548982495511],[-128.5310741783156,52.84342044542736],[-128.5312726372496,52.84077655951502],[-128.53158254709697,52.83769126821505],[-128.5320497473452,52.834655270425],[-128.532518731632,52.83208907404937],[-128.53272424584313,52.829691705756524],[-128.53314724601495,52.82661907774527],[-128.53364510238313,52.82363341102252],[-128.53400816886793,52.82146362086957],[-128.53418391366498,52.8188022356917],[-128.5340666988133,52.81607708329023],[-128.53419705560393,52.81338751339944],[-128.53449280512228,52.810712307368306],[-128.5345877813182,52.8090714016284],[-128.53492928866032,52.80726144045321],[-128.5351279068042,52.80520618724915],[-128.53512474230433,52.80333751674897],[-128.53518920123219,52.801746592215586],[-128.5352111664333,52.80095836635368],[-128.53531501328425,52.800515983276256],[-128.53573655127704,52.79980489914421],[-128.5365519454712,52.79846462639959],[-128.5373277084832,52.79631781136306],[-128.5383964327787,52.793879262644175],[-128.53943539300215,52.79128603693443],[-128.5403312106297,52.78813183646378],[-128.54122697895264,52.785228817977384],[-128.54203271602046,52.78251668420032],[-128.5433123092333,52.77912086577076],[-128.5449593592876,52.77508290620315],[-128.54617836540294,52.77147304792439],[-128.54715574434601,52.76808203584404],[-128.54809603454058,52.76477255147224],[-128.54854915753984,52.761486536324],[-128.5490084395758,52.75841400795507],[-128.54949757150928,52.75599852737438],[-128.5501140338751,52.753026285875556],[-128.55071641400542,52.74927497105632],[-128.55124355457136,52.74661303896735],[-128.55209320489922,52.74279351207952],[-128.55285243395483,52.73923385362942],[-128.5534838792782,52.735774537638825],[-128.55407794059073,52.7322190159068],[-128.55503244383118,52.72898307249383],[-128.5562867812733,52.72502228616784],[-128.55742000678023,52.721631004911856],[-128.55844831171856,52.71876851222709],[-128.55930420888745,52.71510401413275],[-128.56011535869558,52.71225968429807],[-128.5606179708853,52.70889557849862],[-128.56107671407497,52.70668975313149],[-128.56216431366644,52.70450212121968],[-128.5614744043291,52.702628705609975],[-128.56052247884324,52.70086923384128],[-128.55998883048434,52.69980768250489],[-128.55954792758902,52.69927286809453],[-128.55881889249406,52.69829239991021],[-128.55823978003195,52.69712025474324],[-128.55754860584724,52.695701584845],[-128.5567366995727,52.693704645516874],[-128.55631535526666,52.692067559370074],[-128.55573607875553,52.689896744081494],[-128.5553749369221,52.68793142779504],[-128.55514078423568,52.686120903984786],[-128.5549225135796,52.68445190001659],[-128.55471901570627,52.68348067548767],[-128.55464365323544,52.68297878620311],[-128.55439648046683,52.68259559409658],[-128.5553790023112,52.68209919910421],[-128.55726142019114,52.68110537180779],[-128.55922632824303,52.67991121646411],[-128.5610107180691,52.67828864788215],[-128.5626224692282,52.67632329639498],[-128.56435331971664,52.673811391408364],[-128.5657685774989,52.67113927740094],[-128.56672661851792,52.66861791594861],[-128.5677807413045,52.665243791418774],[-128.56844623910015,52.66242098252954],[-128.56926800666494,52.65947136463626],[-128.5705023937013,52.655928363843984],[-128.57144440625314,52.65352055600222],[-128.572746343606,52.65083060218419],[-128.57344217563266,52.64926201180569],[-128.57381634746378,52.64861451916289],[-128.57550757237834,52.64584248184332],[-128.57643487900236,52.64372203470361],[-128.57780409570682,52.64160639772159],[-128.579075433592,52.63931290170612],[-128.58017389512818,52.63654936964893],[-128.58138482845575,52.633503511850655],[-128.5825272277637,52.629937641326435],[-128.58366973382772,52.626622399428996],[-128.58487186543036,52.623316474222186],[-128.58593080645875,52.6200793092668],[-128.5864893533969,52.61711059411217],[-128.58679315631153,52.614506958060666],[-128.58704341123564,52.611583752523934],[-128.5875349757273,52.609363437504285],[-128.5881162236078,52.60726561849775],[-128.58886914786117,52.60483986056005],[-128.59064971239488,52.60349937518793],[-128.5946410089049,52.60288809671879],[-128.59832580596563,52.60317513110208],[-128.60064113978504,52.603626029396445],[-128.60105870076285,52.603814119256356],[-128.60167197561748,52.604162713860795],[-128.60229462600836,52.604314825522515],[-128.60274421544406,52.604313775564876],[-128.60306511750827,52.60435709056523],[-128.60362554506804,52.60442926587713],[-128.60417221433397,52.60444231231515],[-128.60507878747336,52.60444003127576],[-128.60595274903008,52.60455566862642],[-128.6082752947463,52.604955231537616],[-128.61086077432432,52.60531129289928],[-128.6114430980612,52.60543846288554],[-128.6132604173218,52.60563836742556],[-128.61442481778013,52.60584278196539],[-128.61576186801435,52.60607134694717],[-128.61729337629527,52.60628713056816],[-128.61845791427942,52.606523462401874],[-128.61994723124877,52.60663866169646],[-128.62138950128613,52.60683172069037],[-128.62218052602805,52.606996771294476],[-128.6233984123339,52.60719708831875],[-128.62551825831252,52.60759020955259],[-128.62655596392526,52.60783940835512],[-128.6276148826337,52.60810213577221],[-128.62848001593844,52.60831314757259],[-128.62922515004934,52.60852853329109],[-128.63121227038667,52.60889818106292],[-128.63375112953474,52.60892449927119],[-128.63628163533403,52.60901038491059],[-128.63731441025405,52.60907230010201],[-128.639038005298,52.6090675671228],[-128.64008980477414,52.60909257249341],[-128.64244507959307,52.60915762173688],[-128.64363097284777,52.60900123105641],[-128.64477880733628,52.60891803594647],[-128.64633253666366,52.6087095523521],[-128.64701504365266,52.608673327476886],[-128.648017963407,52.60871620205414],[-128.64895371185185,52.60874993264049],[-128.65073480541506,52.608867086257284],[-128.65361368241176,52.609228454794945],[-128.65448273320192,52.60921598587342],[-128.65588394265956,52.609175148277885],[-128.65596641267223,52.60916205653924],[-128.65712026004672,52.60916104329642],[-128.66647553443883,52.60878962009134],[-128.66716607065405,52.608748607416594],[-128.66763869524877,52.60871537814405],[-128.6698001370801,52.60846016697725],[-128.6705051108171,52.60842834217784],[-128.67164382475264,52.608422479535484],[-128.672281290226,52.608376486512014],[-128.67331052512012,52.60817290557465],[-128.6742491632152,52.608074585514004],[-128.67506071271072,52.607897284842984],[-128.67614912968264,52.607767477676624],[-128.67625338663376,52.60777742537343],[-128.67698950586424,52.607681472831565],[-128.6781975318082,52.60757077025657],[-128.67922526869654,52.6074770952547],[-128.68093536710134,52.60736044930556],[-128.68188677506305,52.60734869271897],[-128.68247208468296,52.60729766824286],[-128.68325926328274,52.607234159271215],[-128.68424916995264,52.60717214840162],[-128.68509567921672,52.607154926115115],[-128.6858320621533,52.60700451815681],[-128.68676186590753,52.60698761067093],[-128.68809835506167,52.606786363663424],[-128.68887904959723,52.60666407733353],[-128.68944294754908,52.60656696881224],[-128.6901944779483,52.60640776728961],[-128.69104983248184,52.60628094620891],[-128.69172632028005,52.60619412504125],[-128.6924619406309,52.606061637451916],[-128.69298867274094,52.60593284211931],[-128.69368023333223,52.60579126855172],[-128.69413964587562,52.60560738470962],[-128.69518599223284,52.60528095718036],[-128.69598819974644,52.605222056812856],[-128.69638628183904,52.605151740306646],[-128.6973460811074,52.605112178966195],[-128.69881676111922,52.60495705662116],[-128.6996271541392,52.6048665368155],[-128.70004059405932,52.60480538164041],[-128.70188150621044,52.60438817365869],[-128.70240276922792,52.604158516496284],[-128.7031013998388,52.604012800787864],[-128.7038594052061,52.60389878856043],[-128.70491107517785,52.603731981372796],[-128.70673581212878,52.60345582685477],[-128.7074406600865,52.60336489930502],[-128.70788403948498,52.60329460476467],[-128.70881441646316,52.60320011508981],[-128.70951279267376,52.60309474402618],[-128.71432073858367,52.60261852608351],[-128.71477584954755,52.60257317297497],[-128.71514106806913,52.60252542242897],[-128.71558872073388,52.60249369898007],[-128.71629367193418,52.60243411104873],[-128.71720191282634,52.60231202826806],[-128.71785516075826,52.60222503746666],[-128.71834989731678,52.60219165075556],[-128.71904119070214,52.60207740472306],[-128.71979751735464,52.602054742722565],[-128.72095140524786,52.60205701470026],[-128.7215739056597,52.60201053255874],[-128.7226616418831,52.60190328933903],[-128.72370476294898,52.60176399347985],[-128.7246655258971,52.60160977716241],[-128.72512318317388,52.60159012110022],[-128.72614341359122,52.601454702318044],[-128.72668423663805,52.60138991079058],[-128.72712009500532,52.60126028045564],[-128.72853249492232,52.600963127698165],[-128.72959121059122,52.60083687319414],[-128.73041515922608,52.60080133525806],[-128.73143517840612,52.60070680921873],[-128.73332676870655,52.60039502741078],[-128.73400996528594,52.60035771674572],[-128.7347513624569,52.60034820092003],[-128.73563575411865,52.60030335831649],[-128.73658236541604,52.60013143656379],[-128.73721202225448,52.60005274015737],[-128.7378648128871,52.59998863524553],[-128.73871300707023,52.5998840588802],[-128.7392465574508,52.59983620333476],[-128.73944739579773,52.599808501082244],[-128.73948133305637,52.59980377440781],[-128.74175529923755,52.59968589482959],[-128.74238976671228,52.59959584075594],[-128.74315958918012,52.599351181425895],[-128.7440474364482,52.59921590591904],[-128.74609276866983,52.599010210515196],[-128.74750273730578,52.59896693601606],[-128.7489363819301,52.598860274999474],[-128.7496603946645,52.59865198651909],[-128.75062431795408,52.59827539302051],[-128.75160303023063,52.5979853742086],[-128.752476635867,52.59784532602209],[-128.75323079871035,52.59773275583545],[-128.75433477176466,52.59769381550548],[-128.75493129492975,52.597676372509405],[-128.7550467669257,52.592862904326914],[-128.76599980456504,52.59285675524154],[-128.773922550294,52.59285210914261],[-128.77949482916188,52.59284852305203],[-128.79224889010317,52.592839071004946],[-128.8016803061475,52.59283119861739],[-128.85690719705872,52.59291013792722],[-128.8572571601811,52.592206108145476],[-128.85802757456165,52.58945418915675],[-128.85822891858032,52.588019625273624],[-128.8584430273515,52.58616578911189],[-128.85871735556918,52.58448041940818],[-128.85878259024423,52.582836056086656],[-128.85923393663748,52.57928315898203],[-128.85943330107716,52.577597927751775],[-128.85978254715815,52.57581703787113],[-128.86015208273258,52.57373053602501],[-128.86035063511162,52.57188154221145],[-128.86046271630448,52.570441854890596],[-128.86064177093417,52.56774585877816],[-128.86084202547607,52.56626979515419],[-128.8609615310876,52.56481701425674],[-128.8612859633807,52.56148758580768],[-128.86130083736933,52.56019890596853],[-128.86155855235629,52.55818521968989],[-128.8617953149073,52.55652315869593],[-128.86249495195935,52.55333368632255],[-128.86308130594466,52.55130181927236],[-128.86356654387143,52.54993034035064],[-128.86382019031927,52.54849556343428],[-128.86448097432333,52.54510172720228],[-128.86469643486984,52.54356635686412],[-128.8648140651811,52.54194981309348],[-128.86488187558749,52.54084714469569],[-128.86488853591393,52.539353918688825],[-128.86477684672502,52.53821975492851],[-128.86512372186232,52.53105100629074],[-128.86531583672368,52.529374848168445],[-128.86570691134312,52.52728883511284],[-128.86610280669726,52.52594026787561],[-128.86643037456426,52.52455074203174],[-128.8666770887807,52.52332026020828],[-128.86705703476068,52.52181670621122],[-128.86805379316218,52.51855472136358],[-128.8683961726758,52.51696009447519],[-128.86960039177143,52.51223071966337],[-128.86983414822245,52.51127873848671],[-128.87026498544213,52.509738560791504],[-128.87061547192343,52.508253648996096],[-128.87121256249773,52.50570649243962],[-128.87152753698595,52.504672286471866],[-128.8718654627094,52.503788389276735],[-128.8722727257554,52.50312714789545],[-128.87258273779017,52.502489052226906],[-128.87269577879093,52.50152825011146],[-128.87275353727003,52.50119084273828],[-128.87282536270703,52.500607980057524],[-128.87284495757098,52.50029339343721],[-128.8728900397086,52.499807664676716],[-128.87289933147537,52.49969806463778],[-128.87294750011327,52.49960376696997],[-128.87308499580817,52.499271687628486],[-128.87332651174768,52.498962842543],[-128.87373106973237,52.497889392971004],[-128.8742617746824,52.495900236779356],[-128.87485739234538,52.49433071294723],[-128.87531992403694,52.49339380260041],[-128.8756488516199,52.49248823456345],[-128.8759493832758,52.49126870390471],[-128.87620652548856,52.48999414361118],[-128.8766619243775,52.48900691791759],[-128.87792117526317,52.484683742631425],[-128.88039876115047,52.474555819913974],[-128.88076063831866,52.47315411316792],[-128.8810442717905,52.471314593657326],[-128.88148610745554,52.4692894075709],[-128.88210130854887,52.46788366799557],[-128.88289558440925,52.46554459991529],[-128.88323219369133,52.46453894921073],[-128.88386823125362,52.46242759795925],[-128.884275723297,52.4609529430424],[-128.88487773009962,52.458349368989445],[-128.88572877281908,52.45550009810635],[-128.88627086159417,52.45391663268198],[-128.8866333288515,52.452377997464346],[-128.88721479965554,52.45055795676075],[-128.8890406563618,52.444983568505435],[-128.88948920614,52.44386459749867],[-128.88981813752676,52.44279066115],[-128.89030956503603,52.44095149898758],[-128.8906836662795,52.43985063122111],[-128.89110899487056,52.43890891305825],[-128.89151188837158,52.43792175386847],[-128.89194492698994,52.436807071875705],[-128.89231921662133,52.43573760099882],[-128.89341076172374,52.43338144934746],[-128.89368598987284,52.432525911582495],[-128.8941425747615,52.431310781799446],[-128.8948096713099,52.429909785426275],[-128.89551678451346,52.4280354779768],[-128.89680779689468,52.42492376826041],[-128.89735237885662,52.42393696267672],[-128.89807211083786,52.42243140948442],[-128.89946939894122,52.41904213710549],[-128.90035644028444,52.41704044426483],[-128.90143510191152,52.41434230758998],[-128.90231056289954,52.41281430549108],[-128.90270006420116,52.411594622565126],[-128.90322408153736,52.41025264615116],[-128.90354472364217,52.40932412576346],[-128.9039544443717,52.408282300630134],[-128.90452414545047,52.406894860773875],[-128.9051450572958,52.405516232262],[-128.9055033937668,52.40443754618624],[-128.90571558597858,52.403950944666214],[-128.9065216025321,52.402709589501015],[-128.9071013374667,52.40189628981706],[-128.90756124978256,52.40112300813717],[-128.90797664054904,52.40041366489172],[-128.90842541577754,52.39980333302506],[-128.90874984316838,52.39917928410661],[-128.9092064246179,52.39846665917651],[-128.9096191332789,52.39792286017349],[-128.90980290357163,52.39756204690262],[-128.91005846752014,52.396927941913695],[-128.9104042386007,52.39637515326427],[-128.9107739763521,52.39595919186112],[-128.91129070010055,52.39530619665248],[-128.91172637625291,52.39480331346405],[-128.91213258416568,52.39434156482912],[-128.91321229159442,52.39329915780438],[-128.91399775444805,52.39263154396733],[-128.91547486439794,52.390917775681935],[-128.91815935195095,52.38748235174638],[-128.91993270622027,52.38549852740858],[-128.9209976085986,52.3844883824024],[-128.92195879783324,52.38361938896105],[-128.92289015196255,52.38269110942193],[-128.92368772028564,52.38175890152651],[-128.92765507693196,52.377631192965644],[-128.92963590787434,52.37565149306827],[-128.93040609862896,52.37506547536098],[-128.93141297894556,52.37429228638305],[-128.9322179477675,52.37344676454046],[-128.93392435935556,52.37175495818318],[-128.93476091378253,52.37106401028182],[-128.93863812784693,52.367911974301656],[-128.94200587407886,52.365339846339516],[-128.9431957805596,52.36430160487256],[-128.94705708079698,52.36116310764871],[-128.95200822243,52.35750138749574],[-128.9528298667091,52.35686957475345],[-128.95515332613883,52.355194222038726],[-128.9563537154437,52.35445175675288],[-128.9574341193696,52.353650618229445],[-128.95897311423536,52.352561211080285],[-128.96214281483503,52.35059597138537],[-128.96325449051196,52.34994488386951],[-128.96558706864082,52.34853384927774],[-128.9699428517159,52.34598097668286],[-128.97114913640146,52.34519779746835],[-128.9752515063529,52.342727488361476],[-128.9800010980401,52.34024655790885],[-128.9826245055809,52.33890677638553],[-128.9841062896663,52.33816348668521],[-128.98637334773383,52.33699378349214],[-128.9930582666909,52.33378080406584],[-128.99374004154558,52.33342772372428],[-129.00168771616853,52.32941358139882],[-129.63158949604681,51.98934621540206],[-129.63165632846273,51.98932669673295],[-129.7033826955361,51.95010107803019],[-129.84802516851366,51.22938080102334],[-129.7084518691872,51.1497920793792],[-128.51015794216093,51.162322942706254],[-127.78919233803991,51.163730139475156],[-127.7041998503823,51.18444434253508],[-127.6897745383358,51.18483796850796],[-127.67696577675903,51.185347749934536],[-127.66983517412928,51.18758677723008],[-127.66327389110688,51.191011853894366],[-127.66161060275392,51.18982459606671],[-127.65683118779057,51.18764084276041],[-127.65026508656587,51.18672619713108],[-127.64388975817577,51.18626524443072],[-127.63853715713557,51.18682797295972],[-127.6325590659448,51.18779180829999],[-127.62722230740354,51.18903904296601],[-127.62207104125947,51.190567910221525],[-127.61898854201951,51.19098987141146],[-127.61679940220485,51.19067045695579],[-127.61397960386986,51.19063615721728],[-127.6112653242897,51.19128835518365],[-127.6083332490932,51.19028175741856],[-127.605026226241,51.18870739120069],[-127.60172379147848,51.18725352640495],[-127.59925796533811,51.18670029890265],[-127.59802416383734,51.188536191536926],[-127.59441666007943,51.18999646080576],[-127.58789737224518,51.19136066086164],[-127.58418399153375,51.19207788044313],[-127.58101771688072,51.192849618536165],[-127.57731448633159,51.194135566181124],[-127.57381359125625,51.19633561274263],[-127.56894453393737,51.19837216078536],[-127.56721780623533,51.19844160001704],[-127.56439769138319,51.19840998478873],[-127.56011919287417,51.19815937165803],[-127.5554841404271,51.19836249082219],[-127.55186018235938,51.19908132835135],[-127.54923659624977,51.19972851868387],[-127.5453262569349,51.199815764019306],[-127.54178015305374,51.199845146983186],[-127.53705005655799,51.1997670689793],[-127.53406131615873,51.200246580823055],[-127.53008434306558,51.20164914954096],[-127.52844664238634,51.201656166336456],[-127.5242623865372,51.201517973726155],[-127.52097865678826,51.20102796042187],[-127.5169701616416,51.20065814507168],[-127.51395446541186,51.199883162158756],[-127.51158307327248,51.19961747910735],[-127.51013226866506,51.19979851832343],[-127.50787994495492,51.200901095438745],[-127.50581572293474,51.20240351423769],[-127.50339685466746,51.204306273293774],[-127.5019614870117,51.20539841125806],[-127.49972348750917,51.20736264550547],[-127.49737985107295,51.20840560622185],[-127.49484576324998,51.20916929922173],[-127.49239743922641,51.20952941743815],[-127.48885148218135,51.209612124424645],[-127.48556859660775,51.20917943796423],[-127.48327379791161,51.20805294458861],[-127.48098238266154,51.20715813561393],[-127.47731400033271,51.20552309825296],[-127.47410206628645,51.20400546176587],[-127.47181940916892,51.20344371304527],[-127.46719370344213,51.20417116736471],[-127.46483459786583,51.20435612291834],[-127.46282985295728,51.2043703136165],[-127.46147189031316,51.2046067631443],[-127.45892443689077,51.20456730347914],[-127.45647021024469,51.20458438423531],[-127.45512049272588,51.205455936562785],[-127.45513886835809,51.20647989677295],[-127.4564392922543,51.20789757922771],[-127.46038805395706,51.20998703604118],[-127.46287120712162,51.21162505325486],[-127.46417129332899,51.213047703826746],[-127.46602769814514,51.215091659180366],[-127.46649042347498,51.21548579597557],[-127.46869403524603,51.216727734682394],[-127.47063021224058,51.21808703096134],[-127.47502250640714,51.21953773153236],[-127.47932757342934,51.2209972527366],[-127.48262430015801,51.222114609887676],[-127.48391947632125,51.2234153091609],[-127.48368544933973,51.22541794214012],[-127.47979071139227,51.22636411538057],[-127.47733151480507,51.226268902058564],[-127.47359148992368,51.225891220968606],[-127.46796645925195,51.22673494551137],[-127.46316668147298,51.22791059984426],[-127.4581741516177,51.22862779753912],[-127.45935973185708,51.228902627422016],[-127.45281789560225,51.2293522496411],[-127.44754503157993,51.22967187641658],[-127.44226660365851,51.229712420208855],[-127.43826000967375,51.22962374529765],[-127.43170358200388,51.22926981840978],[-127.42642757879815,51.22930061330087],[-127.42206302419761,51.22961488181281],[-127.41669417344055,51.229657056990085],[-127.41531947851914,51.22903620695219],[-127.41321360305761,51.22824547152606],[-127.41129367887595,51.22769256301585],[-127.40901178912601,51.227364120508064],[-127.40594019802381,51.22863585845923],[-127.40368665000989,51.22996693917148],[-127.40069096014834,51.23044631647034],[-127.39506023310688,51.23111080919459],[-127.38978514262949,51.231319457340135],[-127.38705609284258,51.23116330175432],[-127.38338749953328,51.229585894796394],[-127.3840057572978,51.228436882992305],[-127.3839854318419,51.22718288567037],[-127.38395165454476,51.22506763948545],[-127.3832819327626,51.22301517100427],[-127.37870582420402,51.221499220567395],[-127.3754109264736,51.220264917729416],[-127.37138615013396,51.21903265487048],[-127.36681367620191,51.217403936279695],[-127.36279209891082,51.216288614254225],[-127.36097229181375,51.216069804974175],[-127.35779774844832,51.21671800210533],[-127.35589849618835,51.21747483824238],[-127.35063982428552,51.218702835112126],[-127.34746329123541,51.21911956204985],[-127.3449152762818,51.219082576367086],[-127.3410640317183,51.21715748130884],[-127.3366646234225,51.215133795795694],[-127.33372763356715,51.213205487339536],[-127.33080796811686,51.21271128200443],[-127.32596189718949,51.21108527893198],[-127.32176513798788,51.21013723118878],[-127.31967140765236,51.21014823981222],[-127.3178662409058,51.21106889168619],[-127.31598188401381,51.21285521055819],[-127.31381571830015,51.213841717915884],[-127.31009185273557,51.21431706726126],[-127.30709706921064,51.21473167542383],[-127.30536770661263,51.214743246624096],[-127.30309376065027,51.21475547071938],[-127.29999566502566,51.21449092528916],[-127.29689700702538,51.214052902515974],[-127.29215500019846,51.21316165669167],[-127.28778047740532,51.21267343034968],[-127.28432070027306,51.212344681440705],[-127.28159436213036,51.212474407882965],[-127.27858841059248,51.21231991127548],[-127.2735045468857,51.2129783534997],[-127.27068149256257,51.21270486060878],[-127.2671259033833,51.212152751320446],[-127.26568409119496,51.21313413118708],[-127.2664247235751,51.21410227270014],[-127.26742718989082,51.21432672427687],[-127.26870153881482,51.214379762569784],[-127.26962682343894,51.21556803346943],[-127.2703664857624,51.21624771663904],[-127.27048493559204,51.21825594398225],[-127.26785976133854,51.219180492044124],[-127.26369886664251,51.22091790750502],[-127.25714742974448,51.220950577830145],[-127.24922718999701,51.22047724611878],[-127.24149237393715,51.22028470806732],[-127.23675439585728,51.21996966091018],[-127.23502696487803,51.21986397533197],[-127.2321891392742,51.218678350250556],[-127.22897054866215,51.215836310660166],[-127.22758445598564,51.21430255852276],[-127.22574458296643,51.212485828351994],[-127.22054466520173,51.211363114881],[-127.21899196698064,51.21092084338673],[-127.21605775966162,51.20922070014846],[-127.21422166263709,51.20774549588225],[-127.21374510708917,51.20597451064325],[-127.21344834681148,51.20403100210756],[-127.21315664205748,51.20266431084902],[-127.21222392236537,51.200777561566824],[-127.21075357658047,51.19953013593497],[-127.20674763840805,51.19920767923934],[-127.20413153855941,51.20070362735419],[-127.20124466548293,51.202722034537935],[-127.1999051994304,51.2047811735566],[-127.19728641392172,51.206164743317586],[-127.19465388850841,51.20657869742091],[-127.18946354281073,51.20609025878061],[-127.1811783565195,51.20550155052081],[-127.17698992687662,51.20506266609196],[-127.17125233476683,51.20428448722938],[-127.16742849116837,51.203909365529874],[-127.16754407704971,51.20602151683532],[-127.1674651841174,51.207107066039526],[-127.16447625970429,51.208148565059],[-127.15748229572787,51.20892525948612],[-127.15348969724563,51.209854416962],[-127.14868835904304,51.211413411083115],[-127.14434110079262,51.21308825018079],[-127.14116496166504,51.21385212228648],[-127.13663627510796,51.21552793089903],[-127.13191392559125,51.216227397520626],[-127.12648525608752,51.21917101539832],[-127.12230806218805,51.21969910185366],[-127.11731336109233,51.220459569295954],[-127.1114035864951,51.2208876481304],[-127.10021824560398,51.221502690582895],[-127.09469254564999,51.22363764387879],[-127.0893284886212,51.22416869182708],[-127.08514376154305,51.224132069332356],[-127.08196955527872,51.225231483227894],[-127.0822559773902,51.22643126251782],[-127.08626688699749,51.22755603414916],[-127.08954907216895,51.22800477823862],[-127.09083157276997,51.22896598279101],[-127.08875207913967,51.23028395439185],[-127.08248292133723,51.231286314566425],[-127.0773884381632,51.23119133672951],[-127.07411560857967,51.23154008839235],[-127.07112025745013,51.23247194202348],[-127.06684592875237,51.232653213735595],[-127.06266273923633,51.232899115011094],[-127.05648153545614,51.23360797057624],[-127.0525755393496,51.234476564771306],[-127.04757672128852,51.23518009005165],[-127.04330585312265,51.23605567263232],[-127.03939096744908,51.23572419036263],[-127.03893531780194,51.23555330615573],[-127.0357304891619,51.23339205965736],[-127.03380792974268,51.23202647377085],[-127.03016118945543,51.23118495829745],[-127.02425248980492,51.231830652207584],[-127.01981364085783,51.234017104397914],[-127.01681819526338,51.23488353690307],[-127.01173054016078,51.23615693226481],[-127.00946481924719,51.23736228605576],[-127.00602359236606,51.239256462729536],[-126.99975400473684,51.24053308346887],[-126.99375758869864,51.24169752771628],[-126.99039190429984,51.24216417815907],[-126.98747598619376,51.24166110684224],[-126.98410008131192,51.240297838529656],[-126.98272815518256,51.23961790444238],[-126.97907431911575,51.23791012776559],[-126.97479026056223,51.23695283943184],[-126.9723287021403,51.23638598148244],[-126.96677207093566,51.235204222867246],[-126.96240880397173,51.23618693954692],[-126.9587639011064,51.235173668112864],[-126.95611451326056,51.23415185484562],[-126.95011764740333,51.2351389329798],[-126.94576878627448,51.237946765780656],[-126.94204563841451,51.23927011054877],[-126.9371318368563,51.239393427771724],[-126.93258566208326,51.240038147605624],[-126.92932320099074,51.24215909355685],[-126.92386669010405,51.242920357965055],[-126.92077910050962,51.24378215949624],[-126.92052140222823,51.24686588396983],[-126.92008977857456,51.25029609931205],[-126.9202991363653,51.254635680814495],[-126.9193126141421,51.25703625796568],[-126.91486767381194,51.25990419297799],[-126.91333564161602,51.26230742422888],[-126.91335275932259,51.26487712564269],[-126.91528969592187,51.2688738914058],[-126.91740572869412,51.272580746139525],[-126.91606153088627,51.276014312692276],[-126.91380539956016,51.27973351801054],[-126.91172460942116,51.282139988113265],[-126.90919499370086,51.28493715998722],[-126.9034780052409,51.28929825511755],[-126.90003118543177,51.29164466746915],[-126.89713034590797,51.29434013060587],[-126.8947762425217,51.297198947317305],[-126.8933261826985,51.298401006856906],[-126.89152777176025,51.303029475711554],[-126.88998872955246,51.304863953024274],[-126.88580796776529,51.30664559577951],[-126.88043781633024,51.30785170474991],[-126.87560330929725,51.30729276658849],[-126.87305255544757,51.30729562898772],[-126.86948780633385,51.30548274354341],[-126.8645603117464,51.304002213419274],[-126.86174508835538,51.30617594204793],[-126.86049355814168,51.311094811528505],[-126.85868978937395,51.31532604001258],[-126.85569366633665,51.3176675876455],[-126.84694238504957,51.31757177630016],[-126.84129252466076,51.31797801504314],[-126.83546536539814,51.319934918584174],[-126.8267161199408,51.32006419469949],[-126.81814271021359,51.31921752739717],[-126.81622640667375,51.31904732508303],[-126.81302088069779,51.31477041803517],[-126.81191570745935,51.31231809615156],[-126.81298669120665,51.30597263348216],[-126.81477693859945,51.297914601647356],[-126.81339952697081,51.29488798710277],[-126.8119369906707,51.29317711486001],[-126.80956148840727,51.29158048067969],[-126.80791548000713,51.28992921627296],[-126.80518188775648,51.289984602926815],[-126.80045987714226,51.29399497822265],[-126.79591527645326,51.297139840088114],[-126.78598560408408,51.29795375470102],[-126.77587476232985,51.29950975796892],[-126.7726838559538,51.29905523898194],[-126.76712776004342,51.29866100056573],[-126.76448550055822,51.29946548689637],[-126.76403838758388,51.302830959426565],[-126.76495973229856,51.305979598049014],[-126.76816023623692,51.309342251951264],[-126.76761565525888,51.311114960457765],[-126.76543119551096,51.3118075043625],[-126.76188105062884,51.31357520944626],[-126.75960340017009,51.31392321935145],[-126.7554142873387,51.314779912652334],[-126.75423027829395,51.31541281920998],[-126.75159000190284,51.31735759702101],[-126.75104995374126,51.319125687581675],[-126.75069616287801,51.32330057819363],[-126.75006776248584,51.327753859775115],[-126.74961843747984,51.33112367079372],[-126.74807503962475,51.33352897679736],[-126.74634652823936,51.335353102567076],[-126.74115076306786,51.33662037581626],[-126.73504348964828,51.33747984062288],[-126.73294914931128,51.338678323177255],[-126.73030930761043,51.34068087949022],[-126.72885448521713,51.343366960910096],[-126.72721907544212,51.346170860272075],[-126.72503565261304,51.34931541876434],[-126.72430897981026,51.35091227539059],[-126.72221675703805,51.35411115974096],[-126.72413721491051,51.35622184591335],[-126.7265099980348,51.35713966152156],[-126.72824619206091,51.358789723759884],[-126.72697387395192,51.36125070019535],[-126.72469475882477,51.36227850301845],[-126.7216873637327,51.364335326892636],[-126.71932149535881,51.36656472408467],[-126.7161307908761,51.36960040621382],[-126.71239884460309,51.373768722270256],[-126.71030463309766,51.379257378073866],[-126.7115916923829,51.383481599924544],[-126.71333248293736,51.388338002306185],[-126.71133036803661,51.39176375028226],[-126.7081380985529,51.39462409983289],[-126.70531224316245,51.397365939630504],[-126.70157234854041,51.40062329989818],[-126.69956893176146,51.40434276059478],[-126.69920648534567,51.40570934453731],[-126.70176804935298,51.41027633272666],[-126.70460631709041,51.414728764004174],[-126.70872145365202,51.41746884925942],[-126.71229259664561,51.42204046118924],[-126.71531104318377,51.42483765754505],[-126.71915398657264,51.42883399545984],[-126.72336028042015,51.43123354675422],[-126.72839154381829,51.433798756920844],[-126.72921762074661,51.43580066058814],[-126.72748905305944,51.43905703806182],[-126.72639844755128,51.44236371014747],[-126.72521504703197,51.44425335383723],[-126.72211250110009,51.448427162423215],[-126.72047174085452,51.45116784343446],[-126.7167304127561,51.45488158957541],[-126.7108852840003,51.45779553234968],[-126.7075034484085,51.45986248864427],[-126.70851403052906,51.46328707518386],[-126.70961734857924,51.46608278155527],[-126.70980408255308,51.46962466992829],[-126.70907508247286,51.471570152539606],[-126.70460060054243,51.476141202018006],[-126.70167642047184,51.47831168174194],[-126.69893297755934,51.47917001611702],[-126.69463247113643,51.4788867215363],[-126.69334956333945,51.4761458566278],[-126.69389743827891,51.473633902293884],[-126.69197328619423,51.470431322657234],[-126.68776061668753,51.46723303968377],[-126.68163318273274,51.46586697430169],[-126.67733345444752,51.46489752765298],[-126.67468148544116,51.463644964430046],[-126.67120399669257,51.46004227409776],[-126.67047230474708,51.45912885181207],[-126.66855075078739,51.4570713248585],[-126.66681060274185,51.454671628861256],[-126.6642506489564,51.45187504219121],[-126.66223838191726,51.45039236191124],[-126.65757583413925,51.44844930981581],[-126.65163345208336,51.446508924827285],[-126.64779152782641,51.445823513350554],[-126.64194271479623,51.44530920210825],[-126.63490341299972,51.445140633060966],[-126.63006035118336,51.44461728574469],[-126.62530796189932,51.442161800749545],[-126.62430355602817,51.44141786476417],[-126.61973590395013,51.43873673724823],[-126.61680919194329,51.43730366456562],[-126.61470946734835,51.43467846103841],[-126.61242703792652,51.43119253623301],[-126.61051122120506,51.42868013341412],[-126.60868519318021,51.42541997615349],[-126.60832156660352,51.42182435000949],[-126.60960303902341,51.41805382860577],[-126.61143087528681,51.41594142379198],[-126.61444498159617,51.41445985227095],[-126.61800864294734,51.41343185197294],[-126.61792031388019,51.41245677750512],[-126.61362569782995,51.41228260405205],[-126.60951648228304,51.412112317421595],[-126.60476624207199,51.409999232026365],[-126.60184433021921,51.40874243592099],[-126.59654907081773,51.40731462221616],[-126.59298974158055,51.406052525822794],[-126.59098112067342,51.40531239532174],[-126.58787571394294,51.40467777154235],[-126.58468115859047,51.404505222707265],[-126.57737451304203,51.40421556345375],[-126.57454517711435,51.40438475420892],[-126.57052233066727,51.40484206241506],[-126.56824095712432,51.40523946787966],[-126.5660511755444,51.405978008541226],[-126.56412573669694,51.408262964270726],[-126.5618373543153,51.41003581410877],[-126.55991597769446,51.412600603203174],[-126.558544997542,51.41431275031572],[-126.55598415966001,51.41614121961056],[-126.55278687012495,51.41688274339844],[-126.54912952131353,51.41739247713204],[-126.54346955336428,51.41624669297691],[-126.54018243396307,51.415841087074405],[-126.53561317238736,51.41572024574524],[-126.53058820884387,51.41623357304709],[-126.52793935955714,51.41742903445955],[-126.5239137772482,51.41908293353013],[-126.52016388057977,51.42056320727466],[-126.51532012957807,51.4214761262645],[-126.5126686199488,51.4220401302876],[-126.51056761435927,51.422437236165635],[-126.50837155414393,51.42317860244657],[-126.50461775776489,51.42620272925392],[-126.50178676420201,51.425739567398495],[-126.5003282196888,51.42528151597867],[-126.4979509718365,51.42522521344648],[-126.49475241065105,51.4256761882868],[-126.49200758282372,51.42647179829459],[-126.49091006939935,51.427153638116664],[-126.49227384722381,51.42904326548021],[-126.48879841139879,51.43012243525948],[-126.48724370681228,51.430572848376976],[-126.48449385813876,51.43291824776021],[-126.48375324547801,51.4360499213984],[-126.48054634759704,51.43805104386413],[-126.47862063904678,51.439933355900784],[-126.47842721150562,51.44284894136417],[-126.4779640220985,51.445298932684175],[-126.47822326549216,51.44861648820519],[-126.47547148788928,51.451349811529724],[-126.47317943366875,51.45340350978498],[-126.46997342402155,51.45522926977143],[-126.4673226022092,51.45550777311922],[-126.46274730307296,51.456812205209985],[-126.45824113012388,51.463148480848055],[-126.4556633420928,51.46679996575201],[-126.45290552183316,51.470680969817124],[-126.45115768767222,51.473649147465764],[-126.45086392428496,51.478045310563125],[-126.45048630395416,51.48050148815652],[-126.45010807009936,51.4836964134962],[-126.4480875879455,51.48517853978089],[-126.4430447763051,51.487399981630794],[-126.43947376765186,51.48842183517912],[-126.43646002366823,51.48767337697011],[-126.43436228601023,51.48595427964902],[-126.43217272717006,51.484409946520266],[-126.42870529929237,51.48246427455337],[-126.42459667305808,51.480800238291714],[-126.42369860743561,51.4778266821769],[-126.42361156788473,51.476739336463126],[-126.4208780685152,51.47484677203135],[-126.41657969486805,51.47444526146388],[-126.41145980732453,51.47443249313671],[-126.40624085705429,51.47510644137755],[-126.40303845251418,51.47573038697037],[-126.39873304251458,51.47663409806185],[-126.39552740395987,51.477424445445365],[-126.39077234918709,51.477645625851416],[-126.38666127471674,51.47671898894934],[-126.38236207880753,51.47631113581853],[-126.37669375838324,51.47624255028436],[-126.37404172268113,51.47606395194309],[-126.37084345156396,51.47531323753585],[-126.3712280441948,51.47262787527193],[-126.37297730218594,51.47068858607383],[-126.37509721644352,51.467442721080815],[-126.37667155532695,51.4644717908216],[-126.37713726503881,51.46247776245484],[-126.37550344526598,51.46099105019274],[-126.37148465176303,51.4598913346639],[-126.3691092583083,51.45971957035751],[-126.36728383368698,51.458970446739805],[-126.36500951328887,51.45696733020439],[-126.36319715441489,51.454502152685656],[-126.36265810779251,51.452790726806484],[-126.3614793166525,51.45112957452385],[-126.35955499140253,51.452437647128754],[-126.3563368581113,51.45500348022954],[-126.35229257842354,51.45870040794604],[-126.34953287672293,51.46126741694245],[-126.34669130896668,51.462511881366865],[-126.3422174204123,51.461648119409766],[-126.33874880247231,51.46066844351975],[-126.33610397477665,51.45952017861106],[-126.32961958350973,51.45852778560503],[-126.32596808186055,51.45783207931487],[-126.32103483764062,51.45695926707374],[-126.3162770793817,51.457924531983465],[-126.3137963669766,51.45923225007221],[-126.30884521420057,51.46144527817743],[-126.3073756311719,51.462124640235565],[-126.30565279791513,51.46057546711159],[-126.30283437872484,51.458282009000214],[-126.30119552541952,51.45724973330367],[-126.29554354275895,51.455063411637205],[-126.29353209236395,51.45482853891053],[-126.28796220414145,51.454352520174965],[-126.28586223681022,51.45406445031492],[-126.28249248422425,51.45262618443927],[-126.28031270992427,51.45067274443778],[-126.27794068423512,51.4500407746617],[-126.27255020788576,51.449623021950764],[-126.26889077999948,51.450014865647546],[-126.26375923955761,51.451478075724154],[-126.2576306412435,51.45202728178526],[-126.25443824304445,51.45133272265555],[-126.2496030993276,51.45022940027164],[-126.24640447693197,51.44982633154285],[-126.24192829492283,51.44975124219018],[-126.23908469527927,51.450708631837394],[-126.2369597559456,51.45338880820795],[-126.23457509604798,51.454354098061174],[-126.23210684856595,51.45434402514226],[-126.22845693302814,51.45358684566115],[-126.22571988468698,51.45294779084682],[-126.22371559735211,51.45225617882821],[-126.22125236268381,51.451785317453854],[-126.21668054519482,51.45188667919412],[-126.21302791470279,51.451588429656844],[-126.21103094799538,51.449927259954016],[-126.20568047251253,51.445393373010184],[-126.20177860985407,51.44263263086898],[-126.1977003212021,51.43896106449866],[-126.19370101694092,51.43672413182785],[-126.19033083009441,51.435847448831574],[-126.1864827388974,51.43686355284824],[-126.18327177326161,51.43788186477485],[-126.17999020998795,51.437299230439734],[-126.17853770340105,51.436035440571445],[-126.17826957076485,51.435834482849],[-126.1767827882168,51.43655146469163],[-126.17586333672102,51.437117213464184],[-126.17457706701116,51.437798510115826],[-126.1721002964412,51.43904929662237],[-126.16870880568831,51.44006746725292],[-126.16429756798682,51.44262682559873],[-126.158792156716,51.4452335468267],[-126.15567139986976,51.44665538261195],[-126.15456851721892,51.44716623072172],[-126.14962115585453,51.44846303646472],[-126.14366505149506,51.449474821103635],[-126.14046118899562,51.450208624460615],[-126.12854840856319,51.45274081153638],[-126.12121944257574,51.4542550092764],[-126.11076917881635,51.45696886184911],[-126.1056174378828,51.46003371247955],[-126.10358233632431,51.46242462867718],[-126.1019092600112,51.465276835699584],[-126.09911115673289,51.470635138187276],[-126.09743305557215,51.473937694331774],[-126.09704558710636,51.4759366265006],[-126.09838826283293,51.47891065537065],[-126.09883385669823,51.48034288589551],[-126.10000504932202,51.482286044428236],[-126.10198586839306,51.485548331623335],[-126.10296177025447,51.488633670299144],[-126.10277448989473,51.48909267682491],[-126.10292051151224,51.492575320513296],[-126.10288592285227,51.49628865877946],[-126.10349551610794,51.49948535318163],[-126.1062163653211,51.50229585841471],[-126.10964932264115,51.50710190304629],[-126.11170953348365,51.511794751688605],[-126.11102406480614,51.516359000404165],[-126.10862281988851,51.518578589690975],[-126.10503378993135,51.52011211756016],[-126.09843194352096,51.52105978750395],[-126.09100854554102,51.52171717433506],[-126.08725043303393,51.52210546488721],[-126.08229589078645,51.52271324712994],[-126.07881140539581,51.5233888008515],[-126.06966739243508,51.52175411735039],[-126.02980966965389,51.51532052005944],[-126.00006220311604,51.509830853323486],[-125.3275214399127,51.38924948897171],[-125.32550962238986,51.389096173566564],[-125.32036426665728,51.38782845264813],[-125.32000459675356,51.38782909812466],[-125.31532542286567,51.38713280111982],[-125.3115600495445,51.3859655570411],[-125.30862213548876,51.38525147373671],[-125.30523300460676,51.38487845486784],[-125.30231503069618,51.38473432464558],[-125.29837922638279,51.38436895723279],[-125.29060052042362,51.38323950777682],[-125.28711373736746,51.382696473806675],[-125.28455840183767,51.38237799634351],[-125.2818082786497,51.3816559853445],[-125.28033391404433,51.38121185983969],[-125.27729987802212,51.38026801824495],[-125.27463812225749,51.37943531207339],[-125.27196683652166,51.37831411828013],[-125.27020003485038,51.377300787717644],[-125.26799025729231,51.376117943161496],[-125.266705096887,51.37555872146182],[-125.26486372943066,51.3747187374156],[-125.26256315760344,51.37382187960916],[-125.26236456677414,51.37365677029126],[-125.26059632390115,51.37189431437459],[-125.25874652987572,51.370715313756726],[-125.25598227516524,51.36919198365195],[-125.25440979974954,51.36863634127172],[-124.77208784980488,51.24185863850983],[-124.66792288856557,51.21303640219291],[-124.55405983507882,51.181294095442006],[-124.5351398902135,51.17654636241061],[-124.52275617730206,51.1742932753365],[-124.50993931533691,51.17260948024239],[-124.49503565969668,51.17042047959774],[-124.4949650312945,51.17039204172015],[-124.4727196688849,51.16315232131888],[-124.45586439823552,51.15959080789837],[-124.44136326126889,51.1493904249909],[-124.42532400486984,51.15249257045238],[-124.41864907212465,51.16107511592966],[-124.41415226211015,51.1683352370825],[-124.41309712122194,51.175822058724876],[-124.40929971890785,51.177887875241545],[-124.4093060070086,51.179310726225395],[-124.4064842280151,51.18091705626812],[-124.40032457680472,51.184522374039794],[-124.39731607280406,51.18572791238904],[-124.3945141827541,51.18715687370062],[-124.39078887335226,51.18915855533969],[-124.38889118408696,51.19013442959988],[-124.3850656363164,51.190940169362975],[-124.38016553660664,51.19174495443059],[-124.37680263619563,51.19203565337266],[-124.37561356518617,51.192035957167],[-124.37334579635592,51.19215203634311],[-124.37115890078827,51.190845363084186],[-124.37024782951785,51.189128274054035],[-124.3703320170793,51.18644617060112],[-124.37195388769092,51.18284445888212],[-124.37330915967398,51.17947572958226],[-124.37185267247327,51.176624329405435],[-124.37057489824272,51.1735908305702],[-124.36902051533244,51.17068576472747],[-124.36838695984007,51.16805440691773],[-124.36811140760776,51.16737074172144],[-124.36873387935572,51.164458375136064],[-124.37145879473806,51.16159937720684],[-124.37318453590628,51.159433100232626],[-124.37562468548235,51.156516007016684],[-124.37679958427069,51.15531104678099],[-124.37770436308912,51.15405391181685],[-124.37823775539155,51.15159874209531],[-124.37805544555056,51.14914450114258],[-124.37460405874984,51.14646583152189],[-124.36961004239576,51.14566859290309],[-124.36324087725154,51.14607644857415],[-124.3616110985545,51.146418171903214],[-124.35271970483353,51.147684000697886],[-124.34418062446248,51.14946675534477],[-124.34227436678918,51.14992257690956],[-124.33701222212584,51.15055625601306],[-124.33247057263546,51.15067555528522],[-124.32802416250411,51.1501652078677],[-124.32621018266249,51.14930649235558],[-124.32394019018224,51.14839719122681],[-124.3218371753369,51.14685889031835],[-124.3195657692517,51.144857776371154],[-124.31448247933349,51.142293193055885],[-124.31131116777772,51.14064104173134],[-124.30775485669899,51.13858393780491],[-124.30603357707201,51.13681753296084],[-124.30476161459461,51.135278444028],[-124.30294659213865,51.13447431579884],[-124.29895706487594,51.135160165630985],[-124.29586985378192,51.136192357024335],[-124.29359490107167,51.13768017933664],[-124.28896761069086,51.14042381701837],[-124.28452031247991,51.14145638747539],[-124.27770533412631,51.14191156741135],[-124.27081398922246,51.14248640603905],[-124.26518412431574,51.143001655679],[-124.2609995391881,51.14351646784111],[-124.25728833992575,51.145459082179705],[-124.25374666055356,51.14854193675932],[-124.2500141814717,51.149915946225114],[-124.24483821087469,51.15014256070315],[-124.23747884878566,51.15020293580942],[-124.2299482551726,51.149171785386486],[-124.22740437231751,51.14871760027237],[-124.22469062696483,51.147859359226565],[-124.22050680405188,51.14654453433848],[-124.21659903325913,51.14477645685914],[-124.21452229492942,51.14374729157153],[-124.21015766875317,51.14231918785255],[-124.20435589676246,51.14140296556879],[-124.2019969969093,51.141345175636744],[-124.19527067419193,51.141001988334935],[-124.18909301660607,51.14054147616305],[-124.18446988423148,51.13951291468298],[-124.1829311271503,51.13899866710647],[-124.17930664021779,51.136654536465024],[-124.17893717682989,51.13379933134314],[-124.17967746258049,51.12900191214069],[-124.18049582029178,51.126835521167],[-124.18049330798836,51.12654751861838],[-124.17877586452761,51.12237722802215],[-124.17679169874836,51.11844057572089],[-124.1755218593812,51.115924932552446],[-124.17480702753787,51.112783386629935],[-124.17309320505139,51.10889870283651],[-124.17155153961333,51.105702726392025],[-124.17046511827027,51.101873050550516],[-124.16974175835523,51.09964738292295],[-124.16766224515334,51.096333672510895],[-124.16441345144428,51.09364920776361],[-124.15834173816816,51.090105120456954],[-124.15789150926354,51.08993159947997],[-124.15262863549643,51.08827362972573],[-124.14746374797326,51.08633129273689],[-124.14438838804045,51.08501705706821],[-124.14384781343409,51.08461352221201],[-124.14357138412497,51.08336051417131],[-124.14385273521941,51.08141331495451],[-124.14403622370843,51.07941341947636],[-124.14359084111103,51.076730646409565],[-124.143507529248,51.07393314518517],[-124.14486952763828,51.07176853159196],[-124.1478604503799,51.070970673720154],[-124.15439490010154,51.07120035438402],[-124.15774799284856,51.07200244220666],[-124.16136564647562,51.07297490082091],[-124.16164158597826,51.07252133879198],[-124.16545066540536,51.069547643928075],[-124.16908941106236,51.06584015814982],[-124.17054530708427,51.063787359071654],[-124.17136250016452,51.06058795797782],[-124.17054867740771,51.057450747655444],[-124.16720507969684,51.05505208503595],[-124.1633936643262,51.05361572327356],[-124.16177482361557,51.05304307687298],[-124.15860851223118,51.051901699229624],[-124.15316191707953,51.04996047617776],[-124.15099345586893,51.0481857305366],[-124.14856288898007,51.044476610605756],[-124.14739198037748,51.04138771897591],[-124.1470371936604,51.038590692022034],[-124.14577112472642,51.03367906132495],[-124.14289239061122,51.02944980799342],[-124.13646944915384,51.02602014606013],[-124.12795445075224,51.02246995057627],[-124.11962986502408,51.02086413215758],[-124.11121472104928,51.02006122136955],[-124.10269466582528,51.02005253086527],[-124.09690041680346,51.0200472483414],[-124.09617510272557,51.01998725633648],[-124.09455830059605,51.01941474428977],[-124.09329176419796,51.018328852291916],[-124.0927528190278,51.015583418032406],[-124.09258422242716,51.01318840330197],[-124.09150135053846,51.01181758790473],[-124.08815282680632,51.01004277954308],[-124.0849039485546,51.00861146613917],[-124.08363054712143,51.007697675819955],[-124.08183035437298,51.0060961354172],[-124.07975886051426,51.003178456276956],[-124.07803958822961,51.001692753511854],[-124.07773892645567,51.0007253394263],[-124.08116885063525,50.99561438485762],[-124.08464650602008,50.993357278585634],[-124.08935999331463,50.99054394047651],[-124.09006368487108,50.98843428584908],[-124.09108344541913,50.98593586308376],[-124.09144639479173,50.98478661327623],[-124.09093267603595,50.982463124934874],[-124.09004758907771,50.981486916422924],[-124.08764412194121,50.98067181584182],[-124.08488798037344,50.98043398158634],[-124.08087929050177,50.98113754960013],[-124.07440304102282,50.98218159937648],[-124.07134763770422,50.98193830436804],[-124.06984813085728,50.9813303516599],[-124.06836771561048,50.9799535319537],[-124.06814370081261,50.97821259947198],[-124.06760615656486,50.97646851579144],[-124.06403918209236,50.97389634747737],[-124.06067668099105,50.97384396024804],[-124.05763898092883,50.973208698864276],[-124.05590223261225,50.97085877412662],[-124.04087902398027,50.950338842840324],[-124.03898906584216,50.94470638666277],[-124.03680328215833,50.93868464595095],[-124.03078116221049,50.9366538640399],[-124.02737937507496,50.937553681848925],[-123.99981479540835,50.95849206524224],[-123.99911841545969,50.95876488177187],[-123.99771466570334,50.96050734481203],[-123.99835239806687,50.96376564928804],[-123.9983086361717,50.963787884650564],[-123.9947538054329,50.96549363262791],[-123.99067128737052,50.96498328140762],[-123.9862306760413,50.963565781892676],[-123.98188646431566,50.9619140076917],[-123.97527088347175,50.95786801490397],[-123.97036801855488,50.954732398966954],[-123.96003205049784,50.94794772641249],[-123.9524998469395,50.94315983656207],[-123.94489591467999,50.93779848636789],[-123.94099386786029,50.93591223017454],[-123.93267373538372,50.93438304773564],[-123.92552463497506,50.93525451681699],[-123.92028811377465,50.936348524567684],[-123.91540928666842,50.9370991285095],[-123.90402310967235,50.93837839680277],[-123.89624236465546,50.93992798832311],[-123.89291723756895,50.943362058683036],[-123.88984842999554,50.94588504972316],[-123.88532374839511,50.947547845857926],[-123.87900346805445,50.94950333391833],[-123.87699828799879,50.94372523018924],[-123.87382536797912,50.939442103754175],[-123.86947359729723,50.93658854904306],[-123.86593899138457,50.93453252735847],[-123.85834808294405,50.93448505281553],[-123.84695332137161,50.93443995696843],[-123.84062790709602,50.934441951982784],[-123.83962525292638,50.9307278726212],[-123.8378225137443,50.92500888383088],[-123.83383573697783,50.92175263081372],[-123.8275934876016,50.91832565072078],[-123.81936903084151,50.91410113702231],[-123.813302982463,50.91089965044195],[-123.80662497963432,50.9114784695725],[-123.79071957897668,50.91205914231136],[-123.78619670555263,50.910229740776686],[-123.77752209165891,50.90857624912334],[-123.76406461846881,50.905491449404664],[-123.763968400337,50.90400084881232],[-123.7639720448351,50.90080005962185],[-123.76432822792853,50.898803529186374],[-123.76478785308981,50.894739150555516],[-123.76478435759057,50.88655936873921],[-123.76243325419564,50.885480868746065],[-123.75485698780588,50.88501994102562],[-123.74907060556149,50.88490782240891],[-123.74744829870713,50.88490723603936],[-123.73931971296032,50.88467844019241],[-123.73136758901481,50.88433863000838],[-123.72740823915733,50.88216205192268],[-123.72433583291445,50.87850335971254],[-123.72207387584295,50.873469432119414],[-123.72208834404536,50.873185564795556],[-123.71937272586797,50.87398618132257],[-123.71395552596826,50.87558526076773],[-123.70464358854386,50.8798696213592],[-123.69624474152502,50.883245948446095],[-123.69127560844706,50.881643141238264],[-123.6870415083248,50.87986713916745],[-123.67809863439746,50.87780200485891],[-123.67530570177904,50.877058401192585],[-123.6709712803902,50.8772272916764],[-123.66735676461896,50.878596534325574],[-123.66490425581013,50.88168814049419],[-123.66290887201949,50.885284545790135],[-123.66245737773363,50.88711377978723],[-123.66244473907945,50.889803530542345],[-123.66244122831166,50.89449495742425],[-123.66116194859468,50.899353504525344],[-123.65817105364299,50.902093373255774],[-123.65410064297386,50.90369303502094],[-123.65075125420024,50.902948446578726],[-123.64408325962837,50.9008817486704],[-123.63632394262513,50.89738933895648],[-123.63072298394795,50.895898016451774],[-123.6236857158817,50.89411932257448],[-123.62124057335733,50.894058480242],[-123.61355619073683,50.89427986114647],[-123.6095825783972,50.89644664925076],[-123.60785468922451,50.898673601318734],[-123.60621583063454,50.901361245439205],[-123.60394509068654,50.90467670263029],[-123.60104325575753,50.90913099888491],[-123.59731197823244,50.914961868801626],[-123.59704539387315,50.91541666147666],[-123.59430840223756,50.918900496540516],[-123.58939973775084,50.925927274437726],[-123.5855782426111,50.931527774431935],[-123.57994404708799,50.93900684350619],[-123.57489296092811,50.93677221267984],[-123.56876077245005,50.93372995455808],[-123.56035224305246,50.931948043960894],[-123.55149548519604,50.93107671630048],[-123.54661894891606,50.93140935740863],[-123.53783916074478,50.933797002799565],[-123.53376016162939,50.93567525136626],[-123.52578303981166,50.93897759882886],[-123.51553811212335,50.94485186713646],[-123.51452775593174,50.94559214122749],[-123.5113373192582,50.95015514199552],[-123.50587230660452,50.956379822353874],[-123.49824944529574,50.96139480570555],[-123.49242842819048,50.96527132404069],[-123.48881027291485,50.966981931241065],[-123.48345424321447,50.96890845371025],[-123.47802186267197,50.96889890230399],[-123.47224614840341,50.9673993261691],[-123.46908896027306,50.96624714184793],[-123.46266762176782,50.965830981023736],[-123.45875693968358,50.96764860108477],[-123.45711892437204,50.96936706650811],[-123.45366431558094,50.971928839343306],[-123.45057423722469,50.97409444471563],[-123.44638305057677,50.97705260771431],[-123.43958322341854,50.97898019424196],[-123.43232321883931,50.98096200531409],[-123.426797370833,50.98180262255237],[-123.42482482609694,50.98088582138205],[-123.41967501851123,50.97892391598538],[-123.41415721548215,50.978396038454534],[-123.41017234718561,50.97947179387559],[-123.4050781905163,50.98220266939028],[-123.40151112909078,50.98613397946442],[-123.39778598374086,50.98909667620091],[-123.39522886400286,50.99086318322363],[-123.39004134533938,50.99490592671236],[-123.38368215496865,50.99677137320732],[-123.37617532623827,50.997033818519455],[-123.36792572396607,50.997065525476415],[-123.36313201102014,50.9970514214135],[-123.35425671656927,50.99656479797193],[-123.34928541146068,50.99545864480949],[-123.34332918218553,50.994123421971956],[-123.34106090919822,50.99411581907337],[-123.33281735730438,50.99500604114952],[-123.33000762119799,50.99522292075524],[-123.3259733148203,50.99206728918151],[-123.32410474164037,50.987543314428876],[-123.31962961695412,50.982721792847464],[-123.3165708558871,50.98139970256801],[-123.31167903315857,50.98138270001094],[-123.30931539597647,50.98320138217208],[-123.30701815016468,50.98627909769725],[-123.30425538973905,50.99044301249217],[-123.3011414909311,50.99379923098185],[-123.29659374670673,50.99561402997481],[-123.29134064218752,50.99588008979418],[-123.28591317922994,50.99643037996825],[-123.27557788444537,50.99696035864114],[-123.26770289061609,50.99739087365076],[-123.25102973621894,50.99840233409775],[-123.24685365880548,50.999240840490444],[-123.24376134332996,51.000090613947584],[-123.24376198472181,51.00054162096628],[-123.2430947099364,51.00163841929981],[-123.24422091482509,51.00465844313977],[-123.24525739299767,51.007054518597116],[-123.24892552219436,51.01006204003611],[-123.2509693439603,51.0125646871889],[-123.25148238511593,51.01651142832836],[-123.253229890431,51.018501299168854],[-123.25621573279706,51.02380009892541],[-123.25574109739662,51.02872121717513],[-123.25433599881313,51.03159103292922],[-123.25231747202622,51.035603332532474],[-123.25056261429724,51.03950353704558],[-123.24618587441213,51.044677295574324],[-123.24325097880046,51.048239026186664],[-123.23959001970364,51.05198111802893],[-123.23688580633345,51.05388261167188],[-123.23060074065903,51.05798338673577],[-123.22537244666775,51.060244790623535],[-123.21887830185474,51.063314290617335],[-123.20857648441287,51.06646089461566],[-123.20605253081018,51.0672771880658],[-123.20126901238257,51.06901951177199],[-123.1949272103532,51.069625427041586],[-123.19466849436337,51.07146106117023],[-123.19041749528006,51.072226651148505],[-123.18643417369418,51.07327789120583],[-123.18111265858386,51.07536536577086],[-123.17388729703195,51.0783820227967],[-123.16866682226048,51.08200691158822],[-123.16234774742546,51.08513157250752],[-123.15768587056507,51.089386127589286],[-123.1538715956403,51.09535461487363],[-123.15155387453682,51.099829313451046],[-123.15107677009371,51.10526424568005],[-123.15185201224088,51.10834682602554],[-123.15210508232889,51.11355082923804],[-123.15046335343399,51.120185574490186],[-123.14858316834616,51.12294654005013],[-123.14428121657919,51.127085497964465],[-123.14248152310746,51.12880721669991],[-123.13923734481519,51.13139640647971],[-123.13418210299879,51.1334278703557],[-123.13019549730512,51.13464393844498],[-123.12275000141642,51.13577051342644],[-123.11785389997046,51.13665350402371],[-123.11596798201177,51.13791715585895],[-123.11061568141217,51.139204305704816],[-123.10307330419997,51.14003958763983],[-123.09935225668055,51.14045496245399],[-123.09451386664055,51.13825188120296],[-123.08738164502392,51.134795365403654],[-123.0805183406617,51.13031307417866],[-123.07705378256905,51.12901468954778],[-123.07241928446551,51.12983341944278],[-123.06826585238099,51.13225272106245],[-123.06974633785268,51.134765125665844],[-123.06977782856639,51.13710841815889],[-123.06707690864872,51.139634506135664],[-123.0645565018831,51.141591257548406],[-123.05983009190098,51.14161186575318],[-123.05401248099301,51.142324876998146],[-123.0493156089728,51.144915758953],[-123.04371842063121,51.148545420583396],[-123.04092337378609,51.15073147369066],[-123.03902885996497,51.15251034892002],[-123.04204432058421,51.1543271064752],[-123.04589288460937,51.156542432501254],[-123.05093784222915,51.16080618695564],[-123.0541675213375,51.165022269841124],[-123.05377054492301,51.17057002996794],[-123.05170870943917,51.172921472429834],[-123.0502722764338,51.17556160641255],[-123.0499493928016,51.178477938528694],[-123.05206943494255,51.18172542364921],[-123.05927506969138,51.183068052810704],[-123.06511161680827,51.184530732124735],[-123.06768810636838,51.18674856496651],[-123.06672314469012,51.190069949857765],[-123.06572923223605,51.19967627775731],[-123.06463383297674,51.20734358207308],[-123.06430916806025,51.210947150721786],[-123.05838325276817,51.21034705063561],[-123.05282473816293,51.2093996220876],[-123.04816849883048,51.20804197725037],[-123.0427735326851,51.205724695944966],[-123.03784041414131,51.20465811017063],[-123.0309865597728,51.20251479056419],[-123.02269071068554,51.19986295901613],[-123.01227470710305,51.19698760123611],[-123.00656070476002,51.198380607004026],[-122.99782349523761,51.19910273964078],[-122.9914440489583,51.19866950810596],[-122.98096275702855,51.19699466006434],[-122.97275853799997,51.195365871100904],[-122.96766545562338,51.19458050174594],[-122.96274008726402,51.19448851219844],[-122.953911054415,51.193831627110114],[-122.94580837949806,51.192830896157496],[-122.93904927744792,51.190853977180396],[-122.93731674497708,51.18937146867228],[-122.9324623484815,51.18618887861706],[-122.9275422135033,51.184999735009335],[-122.92262508425944,51.184390610960534],[-122.91732851318375,51.18326206380345],[-122.91077211119612,51.182939540933],[-122.90258027731858,51.18079192274414],[-122.89554181940201,51.177328601003886],[-122.89152701504685,51.17510795715073],[-122.8866013046547,51.1730086051871],[-122.8813946045614,51.170224455776385],[-122.8773686272663,51.16634886041285],[-122.87615790377538,51.164008607925176],[-122.8755106562543,51.16200969915388],[-122.86979455742154,51.16322559197802],[-122.86251969900046,51.16399007588501],[-122.85916070569941,51.164283013274336],[-122.8559527505998,51.16143247901001],[-122.85131533330053,51.160361188190144],[-122.8461211875149,51.15866021799481],[-122.84009828611681,51.15633141084787],[-122.83562905909062,51.15331511946225],[-122.83105842383347,51.15052382669076],[-122.8255858633882,51.14773500859345],[-122.82266343954983,51.14534302166333],[-122.81512297043008,51.1452448364981],[-122.81148047561207,51.14571030866479],[-122.80458406530462,51.146412637995454],[-122.79804533130591,51.147513971063425],[-122.79322696609789,51.149182878371654],[-122.78943797806303,51.153249586346966],[-122.78841851238815,51.15130348409453],[-122.78477578142888,51.14839902739957],[-122.78092317216087,51.14326014857831],[-122.77553264837377,51.13801475413773],[-122.77153738422398,51.13762178048563],[-122.76845724288994,51.13842832829588],[-122.76573514636503,51.13923270188955],[-122.75974491846051,51.14164736590877],[-122.75601372692698,51.142341057642405],[-122.75421038305204,51.14565550166009],[-122.75221822868976,51.14880607985904],[-122.7479781382969,51.154871683076124],[-122.74016508165127,51.158655017641514],[-122.73453235618875,51.15946550322991],[-122.72934272652483,51.158732048162605],[-122.72697775185873,51.15719229055955],[-122.7243314324434,51.15422596621024],[-122.72268404409132,51.15131556371121],[-122.72166932730002,51.14856901184736],[-122.71892711726863,51.14400497038018],[-122.7179212120814,51.1411445723864],[-122.71526706497588,51.13617569264165],[-122.71381053421764,51.13360542470033],[-122.70888946294008,51.13064526626222],[-122.69923353986623,51.12648288982566],[-122.69796012171514,51.12396939881102],[-122.6962254706705,51.11957565651345],[-122.69329049910183,51.11477531355584],[-122.68819860452516,51.11146415587918],[-122.68283139589455,51.109358599825335],[-122.67764558424393,51.10387684142185],[-122.67071955358307,51.09834052282772],[-122.6633475635964,51.09285958232891],[-122.65689615040448,51.09075814458836],[-122.65271895155898,51.09075762056401],[-122.64309488311108,51.09070926857649],[-122.63411056150736,51.090146643179665],[-122.62810216010679,51.08392416193689],[-122.6224636870278,51.08038430772428],[-122.61411836912345,51.07822118146577],[-122.61247913961718,51.080964602854806],[-122.61248884423352,51.086280689978224],[-122.60777101856874,51.08999427362531],[-122.60042145256445,51.09200406528107],[-122.59425124225076,51.09280411288906],[-122.58743823552723,51.09451919532845],[-122.57872473782606,51.098239109996186],[-122.57600135647544,51.101271562508494],[-122.57526820499571,51.1059566406868],[-122.57800054229607,51.10801499756058],[-122.58308409022777,51.110583399240994],[-122.5883600990048,51.11400792552271],[-122.59217170039928,51.1167524950465],[-122.59291190957296,51.12035236849101],[-122.59336398172064,51.127150184112864],[-122.59346632910217,51.133095267097005],[-122.59110444336345,51.140357885451806],[-122.59219492932559,51.142011026720375],[-122.59501026426966,51.14526676482059],[-122.59765352299388,51.148530140866676],[-122.59947799560354,51.15126650903453],[-122.59857010465241,51.1539535844339],[-122.59547862801051,51.159329638813034],[-122.5925792807528,51.16350024347859],[-122.59067176136773,51.16613288305565],[-122.58594938972621,51.17219132416688],[-122.57939927434289,51.17293664173573],[-122.57338986712841,51.17391541957693],[-122.56228591381256,51.17774363190497],[-122.55992763778546,51.180426647464394],[-122.55610291081953,51.185743915417206],[-122.55365463065411,51.18957454583412],[-122.55192445122279,51.192832162633124],[-122.5506376909531,51.19757567084036],[-122.54836682714262,51.2016919071808],[-122.5438163030341,51.20431820498586],[-122.53899107356095,51.20494446683022],[-122.53179875895765,51.2064898963089],[-122.52487856723228,51.207119152597265],[-122.51905207191932,51.20751825685317],[-122.51494754602034,51.206083821062954],[-122.50759086891225,51.20059826400439],[-122.50431358283127,51.1970519944147],[-122.50048594185397,51.197396278055976],[-122.49029265597403,51.19916283559818],[-122.48446616747334,51.20047359733543],[-122.48119369117285,51.20104520422999],[-122.47171707473743,51.20315661533988],[-122.46634347880422,51.205609262398475],[-122.46278263491558,51.207089844084976],[-122.45923898583167,51.20817254521872],[-122.45121467588721,51.21056660791135],[-122.4480228023082,51.211190936807114],[-122.4396399563307,51.21392517436137],[-122.43808855779707,51.21626891268227],[-122.43753477013085,51.21940927721908],[-122.43624238717197,51.22495156209024],[-122.43250325535098,51.22843512530242],[-122.43031588470059,51.22957610117728],[-122.41581006503883,51.23590313348321],[-122.39117069817073,51.24690286689373],[-122.36990960666981,51.255783593379455],[-122.36653226134902,51.25703685209779],[-122.36250910913368,51.2586310283421],[-122.35548591793712,51.26124522396721],[-122.3479927215999,51.26414831406005],[-122.34487435637546,51.26677225180464],[-122.34177792630767,51.267909736422574],[-122.33568023572809,51.26538579851172],[-122.3319542616369,51.26389076648897],[-122.32675953235379,51.26365352328019],[-122.31828114856437,51.26386419655524],[-122.312086173607,51.264253262066724],[-122.31059867772238,51.26744976185947],[-122.308401697302,51.26950393899086],[-122.30421657064545,51.26818007451042],[-122.30002693098979,51.266569360800936],[-122.29841290758971,51.26370966075552],[-122.29279212618724,51.25861283885363],[-122.2897764608687,51.25826217410776],[-122.28468313598654,51.25870780211904],[-122.27492711646471,51.25908612285839],[-122.26480190016429,51.2600919097353],[-122.26226685689029,51.25762252587447],[-122.26018631463997,51.25470683510872],[-122.25792399557614,51.25224579019432],[-122.25357582460698,51.24948966904223],[-122.24656534994921,51.248161947951004],[-122.23746461794218,51.24676417377108],[-122.2324545395627,51.24640730000344],[-122.21933290044159,51.24586051409547],[-122.21103855027835,51.24646364658424],[-122.2031974448451,51.24763934464566],[-122.19880712033282,51.24842779393202],[-122.19451551997471,51.25007064552477],[-122.19096152287044,51.251316238905474],[-122.18656309436837,51.25335861874409],[-122.18466990136321,51.25482694583358],[-122.18400155593199,51.25408236283749],[-122.18328353147874,51.253247886403315],[-122.18144262249685,51.25111180164555],[-122.17916796213842,51.249344201397896],[-122.17324470684116,51.24609326681938],[-122.16987365379623,51.24306226603301],[-122.16760008558721,51.23780789655003],[-122.16642327260574,51.234152737205655],[-122.16532239731757,51.230617564579155],[-122.16305079287642,51.22684535601189],[-122.16004788014708,51.2243939594232],[-122.15422838440348,51.22496121383772],[-122.15140420065119,51.22376365083619],[-122.14967642597904,51.220852495979294],[-122.1496670864904,51.217822355067334],[-122.15176155553347,51.21337150096527],[-122.15313306081777,51.21079748347758],[-122.15249302777944,51.20891404878899],[-122.15195137375409,51.20606352336105],[-122.14986678279203,51.198183978115466],[-122.14477455921694,51.193725988274416],[-122.14159133166814,51.191899919206755],[-122.13730985834991,51.18835989829592],[-122.13322574754842,51.1847022598355],[-122.13014041219613,51.18258864870767],[-122.1251288896536,51.18053127827481],[-122.11950108845771,51.17716448630118],[-122.1157728553807,51.176019575909656],[-122.1075788036333,51.17527851529753],[-122.0960395798113,51.174589130792846],[-122.08868011551687,51.172356569685505],[-122.08076909461721,51.170694964040344],[-122.07330607687844,51.16835153422724],[-122.07049106359557,51.166466384331464],[-122.06123098528334,51.16257975881871],[-122.05324692690651,51.15806258544744],[-122.0478899975213,51.153031647774895],[-122.0437226427172,51.14897676050155],[-122.03945635675778,51.14491481710129],[-122.03783003355242,51.13937696702392],[-122.04112156629732,51.134922414728074],[-122.04549156352121,51.13121825805472],[-122.04749388106214,51.12739267586427],[-122.04632927612167,51.12293832740225],[-122.03670034037891,51.12041929200425],[-122.03327115242455,51.11744405489664],[-122.03064563484565,51.112531615938316],[-122.02710217167956,51.109564475228055],[-122.0189396593329,51.10829879333536],[-122.01022872963217,51.105492198437155],[-122.00569686211568,51.10302993864934],[-121.99972818631892,51.10206206545997],[-121.99443255764636,51.101570819268325],[-121.98880469394538,51.101430577361974],[-121.9867984295714,51.10129443323607],[-121.98315447246809,51.10106274256119],[-121.97917791712851,51.09912837452106],[-121.97796046990234,51.09565688262554],[-121.9756250310232,51.0895182869044],[-121.97298313458793,51.086926522320006],[-121.96790026624231,51.08695136255805],[-121.96717820830614,51.08702272311236],[-121.96309373834976,51.087084811820084],[-121.95995104236471,51.085760756525126],[-121.95885776694512,51.08314719049617],[-121.9581616737703,51.07915728474438],[-121.9561425677409,51.07650028212393],[-121.95557623904712,51.07564804199231],[-121.95242398591071,51.071926085378536],[-121.95036376649949,51.06784311816712],[-121.95021843081203,51.066297755939324],[-121.94863894153846,51.063066172829224],[-121.94838684990064,51.06112348489076],[-121.94726636123318,51.05788085040046],[-121.94869169659039,51.05416727071185],[-121.94845959709205,51.05184867474672],[-121.94775318457565,51.0479874288918],[-121.94746253102456,51.04741090920934],[-121.94704468731061,51.04681800339177],[-121.94633414489562,51.04598520285392],[-121.94600889586032,51.04563171454185],[-121.9455429226435,51.0452534807445],[-121.94514009319373,51.04481006020094],[-121.94434293583762,51.04398705167617],[-121.94412687318686,51.04369089081136],[-121.9438069717985,51.0432791276334],[-121.94343885630916,51.04292577353812],[-121.94301875221129,51.04251544596751],[-121.94230650506331,51.0418596186066],[-121.94188852693665,51.04126948687643],[-121.94154522332377,51.040801225446636],[-121.9411138201546,51.04035844463869],[-121.94073369906013,51.03998047009745],[-121.94013207949091,51.039053175045495],[-121.93993197090936,51.03858276610837],[-121.93962104280263,51.03807350229738],[-121.93924048088942,51.03738746599639],[-121.9389677840589,51.03677277846951],[-121.9386299166742,51.03624567326009],[-121.93806131021223,51.03511438483852],[-121.93748902341588,51.03418026573852],[-121.93715610328607,51.033912463819156],[-121.93683462040161,51.03367599514532],[-121.93609525719619,51.033163035738674],[-121.93489627354218,51.03236137238278],[-121.93446810506467,51.03204121579542],[-121.93399300281972,51.031765453130774],[-121.93282305837673,51.03111602946266],[-121.93137861290887,51.03034254819471],[-121.93060723550613,51.02971202354904],[-121.93004936850323,51.02940401433649],[-121.92935760378569,51.029153543282845],[-121.92903327445464,51.028948990817064],[-121.92793392989994,51.02846676468887],[-121.92723677538308,51.02796313649641],[-121.92674030843598,51.027453277564625],[-121.92636548356464,51.027176057858945],[-121.92539312023632,51.026400478843385],[-121.9248931178357,51.025773567618245],[-121.92443925183986,51.025111217073274],[-121.92391240099138,51.02430962327055],[-121.92363842715108,51.02355599119494],[-121.92353021522581,51.0231771200162],[-121.92342287721911,51.0227887284884],[-121.92315143636723,51.02200763628667],[-121.9228815185908,51.02105402764307],[-121.9227474495296,51.02064555167442],[-121.92231520031427,51.019904147309035],[-121.9219797113515,51.01935457149158],[-121.92177923750833,51.01904711546394],[-121.92137811294896,51.01859015954922],[-121.92089549488703,51.01808695405074],[-121.92049173556369,51.017814836183526],[-121.9199094240535,51.01715228920227],[-121.91908935453695,51.01612190102708],[-121.91873585037591,51.01576952868668],[-121.91828059403049,51.015280235880006],[-121.91787357960122,51.01488824807062],[-121.91718990747246,51.014241120570404],[-121.91654784876505,51.013607858443116],[-121.91555795742855,51.012716860981726],[-121.91519705354644,51.01244571108781],[-121.91495799705223,51.01209243007594],[-121.91418502201627,51.011018167423934],[-121.91342234902132,51.010298988484855],[-121.91268023606065,51.009200541683825],[-121.91225092887419,51.008585673244504],[-121.91179649886054,51.007933352981205],[-121.91122318681145,51.00670892575971],[-121.9110064591445,51.00626874979115],[-121.91086106794616,51.00598518948756],[-121.9104738457031,51.00553486499252],[-121.91007995861463,51.00500166471077],[-121.90981082815806,51.00451009858112],[-121.90977195050554,51.00384478975567],[-121.90982940555982,51.00353038784706],[-121.90996924936819,51.00325215751576],[-121.91017400517326,51.00257828911848],[-121.91034206109444,51.00230390083273],[-121.91052342687648,51.00204010664144],[-121.9109277819393,51.00152585154091],[-121.91210916970935,51.00017191344924],[-121.91311204867154,50.995782038056745],[-121.91304987687923,50.991790733476265],[-121.91109165692671,50.98620861278771],[-121.91133102649214,50.98468993870348],[-121.91095300539698,50.98445243040201],[-121.91029812155155,50.98411995291889],[-121.91009395841154,50.98401075930826],[-121.90992504976599,50.98382865346199],[-121.90948038328067,50.98338408439224],[-121.90891482581237,50.98301211907056],[-121.90860129779792,50.98285003292445],[-121.90840244515987,50.98268313101958],[-121.90801979896045,50.98234088023076],[-121.90739935024347,50.98194498508902],[-121.90713161676867,50.98175083393625],[-121.90657881643793,50.98124046975287],[-121.90613680257026,50.980923030000824],[-121.90600046967197,50.98085284666423],[-121.90582129059902,50.980782791395434],[-121.90527757813732,50.98063984031426],[-121.90475391970051,50.98043409785921],[-121.90450724991243,50.98032165974704],[-121.90412116262877,50.98017265259645],[-121.9035733923247,50.98007396028778],[-121.90330615908083,50.98002991986397],[-121.90306754192888,50.979985232238846],[-121.90252065278436,50.97987700543161],[-121.90201898205352,50.979742884999865],[-121.90174009943736,50.97967030702748],[-121.90121425238141,50.97948863566107],[-121.90079559836084,50.97922824209132],[-121.90068547046445,50.97918374408361],[-121.9005112562488,50.979059892807875],[-121.9001753082327,50.978831749889835],[-121.89974754243613,50.97851535971132],[-121.8995712194209,50.978414474109755],[-121.89939701130461,50.978290621000376],[-121.89906850192082,50.97798179345179],[-121.89879072541711,50.97774227882741],[-121.8986605524758,50.97760540787394],[-121.89828627840386,50.97717347628636],[-121.89803817438793,50.976611799691135],[-121.89793038734683,50.97638692255993],[-121.89785718829641,50.97625157480786],[-121.8976202065656,50.97603435203555],[-121.89728914625395,50.97575353281773],[-121.89713160925065,50.97560385801772],[-121.8968223563578,50.97539635000945],[-121.8963692344655,50.975045852987144],[-121.89614928189863,50.974798891601424],[-121.8958956278861,50.974452870066905],[-121.89541398143058,50.97394728942727],[-121.89508429268055,50.97365189561009],[-121.89496162807072,50.973433782692354],[-121.8945762731926,50.97312285865426],[-121.89404908106631,50.97264708606317],[-121.8937243682013,50.972297900303175],[-121.8934462679455,50.97190769351989],[-121.89307454456193,50.9716040078528],[-121.89247606571573,50.97128246896522],[-121.89217850896364,50.971103482244615],[-121.89189254682655,50.97095359460557],[-121.89134188203884,50.970578138979704],[-121.89081149874622,50.97013765239799],[-121.89052387796762,50.969851086013875],[-121.88984213415566,50.96934939071486],[-121.88973369547944,50.9692869523103],[-121.88948142654577,50.96908151591025],[-121.8888584318984,50.968716888620136],[-121.88826432265789,50.96850341354246],[-121.88803209023033,50.96839033846495],[-121.88739323021007,50.96788851499314],[-121.8868027043195,50.967481772014494],[-121.88662774681151,50.96736686218169],[-121.88642195969169,50.9672766732702],[-121.88604349460692,50.96704692059042],[-121.88541145098871,50.9667808837837],[-121.88503087354651,50.966574103787245],[-121.88439516896888,50.96634783696771],[-121.88399670025001,50.96618030743926],[-121.88374581410775,50.966114885990855],[-121.88338842164823,50.965966293124985],[-121.88268875065991,50.96566008758182],[-121.88203103968235,50.965363296722934],[-121.88172320826094,50.965296338250255],[-121.88132144471028,50.965164657309124],[-121.88058283544814,50.964971136505866],[-121.87985617840975,50.96480278567484],[-121.87960359606092,50.964755848759246],[-121.8791877743802,50.96462195240296],[-121.87745401427638,50.96376839583782],[-121.873593288027,50.96106906690694],[-121.87117500738967,50.95897981398207],[-121.86979880650902,50.95796780437737],[-121.8694291722814,50.95779847188852],[-121.86819073786873,50.958841838227634],[-121.86659011110602,50.95994269431047],[-121.86382540257343,50.96159036052581],[-121.86354136483284,50.96142134963549],[-121.86323036386767,50.961389077522306],[-121.86200621753322,50.961661015219505],[-121.8607904518927,50.961996215362866],[-121.8592725368255,50.96251084211084],[-121.85825566823517,50.963009080579205],[-121.85671815808405,50.96388725587137],[-121.85547847875135,50.96447843863011],[-121.85401001408285,50.96522700836811],[-121.8527411747119,50.96597731649142],[-121.8510451312698,50.96702271690127],[-121.84995402908869,50.96785602632747],[-121.84893654570483,50.96851157882484],[-121.84760023622229,50.969064815947526],[-121.84632920744248,50.96952994475874],[-121.84480913717576,50.97052216851639],[-121.84337624141727,50.971497371810194],[-121.841971058013,50.972480888955474],[-121.84096925832188,50.97373063812845],[-121.84056727720268,50.97482496438231],[-121.84023756933615,50.975909589935256],[-121.83979585020866,50.97681747170807],[-121.8395495561206,50.97746723830264],[-121.83962188658616,50.978221582069104],[-121.83930046799924,50.978605454608754],[-121.83868723076037,50.979209008500696],[-121.83624970210883,50.983289547685644],[-121.8336401060426,50.987372650434565],[-121.82998792212105,50.98946727522235],[-121.82439299624369,50.99049503232222],[-121.81852397651275,50.99078819901062],[-121.81405703986468,50.98968736298602],[-121.80786379374625,50.988266091420506],[-121.80206065262614,50.987861464655204],[-121.79602388037655,50.9887223146393],[-121.7951384025614,50.989478497621924],[-121.79284405915328,50.99184322615537],[-121.78982402708596,50.99432686748948],[-121.78678952345102,50.99590304889067],[-121.7827382417009,50.997202034752014],[-121.7788975382458,50.998838812272275],[-121.77631340876388,50.99942472849545],[-121.77303052441302,51.00375843344189],[-121.77227917766498,51.0056523601396],[-121.77154334107493,51.00783358278299],[-121.77016133559084,51.00974647565459],[-121.76675955703016,51.011108734303775],[-121.76300378168568,51.01258461234618],[-121.76210362461764,51.01288348407989],[-121.75691148387624,51.01473224157925],[-121.75235986228735,51.01645376169837],[-121.7499434031459,51.01751378174162],[-121.74433186427196,51.02044863215185],[-121.73759470599252,51.02214412399099],[-121.73569997773241,51.02222739690607],[-121.7296346627611,51.0224265576504],[-121.71933626935518,51.023538040265734],[-121.71236664875589,51.02392109058709],[-121.7111049150623,51.024109069452365],[-121.70666815728588,51.0241656329887],[-121.70214784179522,51.0243470149781],[-121.69881218199261,51.024842323028786],[-121.69249937757023,51.0256709771918],[-121.68670938451942,51.02906686682533],[-121.68532278628504,51.03068685360794],[-121.68260588390662,51.03363826034474],[-121.67869327032113,51.03608878972835],[-121.6757725186332,51.03818716658294],[-121.67350337993021,51.04078733605419],[-121.67135057797255,51.044246542556095],[-121.66926776722993,51.04713042596393],[-121.66788069526312,51.04903637563244],[-121.66473644563781,51.052679326507096],[-121.66091867789832,51.05530274094617],[-121.65783076852762,51.057625878603154],[-121.6521099671459,51.06038915835702],[-121.64627863102476,51.06252043039969],[-121.64127172245969,51.06470136598947],[-121.6388004069891,51.0668477616423],[-121.6365853967441,51.06842157256311],[-121.63274925665718,51.07047215550663],[-121.63046435038424,51.07289831114781],[-121.62689005179992,51.07460804435208],[-121.62432237229251,51.076411932812334],[-121.61958256148056,51.07846910710551],[-121.61554387376071,51.08023407805941],[-121.61249236189397,51.081131073923565],[-121.6075077048456,51.08130988804006],[-121.60030348366406,51.0829422591976],[-121.59645282992904,51.08481963857312],[-121.59134911561605,51.086769805847176],[-121.5887296986077,51.08748633065119],[-121.58938341175443,51.090851717849944],[-121.58500739995404,51.0932490249073],[-121.57942030098866,51.09457361988398],[-121.57114046737121,51.09690695157427],[-121.56892156672646,51.098479379309026],[-121.56336525574272,51.101060505402906],[-121.55970927325096,51.1031068756624],[-121.55334611933041,51.10586711559781],[-121.54553923207563,51.10858958089504],[-121.54188127444004,51.110926018523],[-121.5341063875127,51.11787101579173],[-121.52223650300705,51.125044094639485],[-121.51095823557495,51.13100487461105],[-121.50186146969406,51.13351341896393],[-121.49604165928908,51.1335220481169],[-121.49491767217093,51.13513466365786],[-121.49557587833544,51.13924023833981],[-121.49726975680926,51.14133491759413],[-121.49937277045247,51.144626662580066],[-121.50066060708116,51.1483254699223],[-121.50140518507361,51.15540362950908],[-121.50446622352122,51.16976694339044],[-121.50806581894857,51.17812754538012],[-121.50923829655444,51.180857233409306],[-121.51248566873903,51.1829352137787],[-121.51975533760827,51.18610569728407],[-121.52481565299725,51.190843747471774],[-121.53318898409859,51.19732348313394],[-121.53647808379631,51.2038538555926],[-121.53322614170598,51.207775286429126],[-121.52305138286849,51.21469984465456],[-121.51319213889192,51.222871836075385],[-121.50196268465528,51.23134546011741],[-121.49098323257772,51.239013961811054],[-121.4812643197345,51.24597914011953],[-121.46791683466226,51.25733167575076],[-121.45725559304367,51.26373767436741],[-121.4467681387265,51.26968143423264],[-121.43242971901226,51.28183634321777],[-121.42284616229708,51.291199126546594],[-121.41527040290912,51.294481311272136],[-121.41110569957354,51.29538279825927],[-121.39894134989586,51.29739645381357],[-121.39502536081338,51.30115177613354],[-121.39471822960711,51.30478975643286],[-121.39474308463474,51.30593207221761],[-121.39246688842222,51.306233471139436],[-121.38918008876884,51.30642839723777],[-121.38463021398644,51.30645418476463],[-121.3821667701049,51.306756166769276],[-121.37825773526342,51.30780862936692],[-121.37508068892124,51.308740224939015],[-121.370991042137,51.308765746348975],[-121.36724573929364,51.308389167388846],[-121.36623764962734,51.308396216837096],[-121.3618794377684,51.31002063938538],[-121.35698577603317,51.312217758207474],[-121.35392727702546,51.31475152513109],[-121.34776023527353,51.31673010387151],[-121.3436963086356,51.31978112405626],[-121.34363416438025,51.322009518568336],[-121.34267797745044,51.324524951977466],[-121.34059303931653,51.326138739614706],[-121.33807208779766,51.328608230564726],[-121.33600706687739,51.33084796725989],[-121.33338954568303,51.33286359560313],[-121.33104369266685,51.334077954216085],[-121.32604186761087,51.335079140862646],[-121.32323154595011,51.336460825375426],[-121.32279757563762,51.33851866917275],[-121.32237548428674,51.34046399471463],[-121.32028816134464,51.34167814862595],[-121.31757929663027,51.34386284629166],[-121.31377157579998,51.345541516918125],[-121.31058114127906,51.34601659178607],[-121.30694399382267,51.34649273177435],[-121.30220136427644,51.347204567938626],[-121.28872723128467,51.3499612240278],[-121.28627228724952,51.35082721075777],[-121.28109509155954,51.35222684179409],[-121.27234216509821,51.35324645377222],[-121.26714044085905,51.35338949169777],[-121.2599208457083,51.35313801299874],[-121.25316823764626,51.3524294203366],[-121.2507871598113,51.35193089368543],[-121.24794322926725,51.351316182749486],[-121.24048137155363,51.352780010597684],[-121.23593707137707,51.35457199140796],[-121.23211691305566,51.35619244235008],[-121.22839378997152,51.35757901646542],[-121.22340136652936,51.35937468819862],[-121.2220402204597,51.360234889005625],[-121.21914008991138,51.362132163948495],[-121.21403767690987,51.36267454595807],[-121.20874622274819,51.36309849626546],[-121.20391349509752,51.363808726463226],[-121.19870638362475,51.36411714303784],[-121.18492877605546,51.36412133788748],[-121.17541727522199,51.363593852806986],[-121.17231767006,51.36360455349191],[-121.16856578929807,51.36259655538142],[-121.15858940763428,51.360924297783484],[-121.1540245353567,51.3599754907686],[-121.15153720740051,51.35861221894105],[-121.14674716768806,51.354866027034525],[-121.13897655003818,51.353072791791014],[-121.13167102646261,51.35281561181818],[-121.13120954194756,51.35281937991887],[-121.12829347025043,51.35300037417395],[-121.12419333999891,51.35398673538686],[-121.11725873340201,51.35350110986684],[-121.11130434978082,51.35249224516413],[-121.10491267205633,51.352180563229496],[-121.09880679295628,51.353058461642675],[-121.09415662246363,51.35393052811813],[-121.08677372414857,51.35527261462865],[-121.08049114785919,51.35643487174608],[-121.07356539076923,51.35754630925056],[-121.06800278737849,51.35922286359155],[-121.06208754016254,51.36147088762303],[-121.06036062647935,51.362220542778545],[-121.05545783741744,51.36520131273361],[-121.04964672247496,51.369847843911224],[-121.04539220327017,51.37345998715653],[-121.04303162212686,51.375351399241914],[-121.03822031893434,51.37890461952925],[-121.03366640155149,51.38029314275427],[-121.02727444693757,51.38173915088153],[-121.02189638842114,51.3830134309668],[-121.01953231437166,51.38415572315382],[-121.01433125576553,51.38526255213327],[-121.00439401419855,51.38705679511014],[-120.99992948727528,51.38827476440624],[-120.99692279892155,51.38947992286051],[-120.99418896518557,51.39120207832316],[-120.98991091410745,51.39343796572325],[-120.98681066656476,51.39419163727506],[-120.98316715208507,51.39642275057585],[-120.97933631061717,51.39763540529486],[-120.97396130260731,51.399990283595905],[-120.97122782827402,51.40182162295226],[-120.96657173834194,51.40229425453044],[-120.96310867483959,51.402299517444625],[-120.960821012084,51.402876052270315],[-120.95999540587685,51.40328306874693],[-120.95581075303754,51.40455010043803],[-120.95205907285107,51.40455400080064],[-120.94721073342984,51.40342624751812],[-120.94509532327476,51.40149170121699],[-120.94225130240473,51.400125233790476],[-120.93932183109688,51.39950456802496],[-120.9349428535601,51.39894444405433],[-120.9292727940098,51.39907438417383],[-120.92480512681581,51.399536304011555],[-120.91768115332312,51.40063820787361],[-120.91083623447754,51.40219371408719],[-120.90645591614584,51.40414198387652],[-120.90280987548772,51.40535203596405],[-120.89668952091937,51.40661986705435],[-120.89230702108586,51.40783018581483],[-120.88912068657496,51.4095493045733],[-120.88683849999536,51.41006559092779],[-120.87998324139886,51.41081683207095],[-120.87441368961342,51.41180243394979],[-120.869666766334,51.41414900787715],[-120.86530389672342,51.41814951225785],[-120.86265700913614,51.419930075766814],[-120.85334391221423,51.424280521305896],[-120.84676404876757,51.42697101032608],[-120.84403520091357,51.42857702960513],[-120.84148655638869,51.43086162986173],[-120.83910208507358,51.432235733601175],[-120.83683752987687,51.43566482294312],[-120.83354647466592,51.43823942926221],[-120.8323603528857,51.439610073665946],[-120.82917453003543,51.44263650744486],[-120.82817582951584,51.445606267233494],[-120.82846524251447,51.44965952506176],[-120.82773321040929,51.45183318754923],[-120.8239901080187,51.452462813787264],[-120.82014727864293,51.453325112138565],[-120.81722584145614,51.45458092410387],[-120.81410752872632,51.454072815551655],[-120.81109731823467,51.453506010036946],[-120.8054221537443,51.45385540058354],[-120.80066178302918,51.454775725189435],[-120.7974653150413,51.45615231697059],[-120.7923549949234,51.45758441896155],[-120.78549406306563,51.45964342612359],[-120.78101451581792,51.461475826692414],[-120.77295889039566,51.46336385758021],[-120.76692944201561,51.46291042349161],[-120.7631648053314,51.46297520949512],[-120.75795656582936,51.46217895757108],[-120.7519995877525,51.460756090230255],[-120.74971501482509,51.46052720520926],[-120.74569441791094,51.461042482663416],[-120.7439552710701,51.462417087490294],[-120.74076034924126,51.46424336998058],[-120.73992388640819,51.464471213708734],[-120.73709148780912,51.46555934629952],[-120.73188374487877,51.466932021334394],[-120.72784951656021,51.46876005819285],[-120.72547658081197,51.470471140978646],[-120.72283078084382,51.47578127856134],[-120.72236790780867,51.48012188643056],[-120.7200818148896,51.48086155083558],[-120.71550551747981,51.4818916882177],[-120.70863656795093,51.482749544729835],[-120.69884310007765,51.48303901295548],[-120.69307942961942,51.48383787412372],[-120.68566281161058,51.48515252867596],[-120.68237260900766,51.48498100416701],[-120.67852482526436,51.484638105892124],[-120.67468137101265,51.48509574546683],[-120.67082676989243,51.486241259575664],[-120.66662657071466,51.48749248556274],[-120.66451034167589,51.4892037904649],[-120.6602126464698,51.494112237438166],[-120.65608997948604,51.49947653892675],[-120.65096007535831,51.501816412149516],[-120.64995023577481,51.502270040946804],[-120.64435753146988,51.50329740194145],[-120.64087762791843,51.50455247619428],[-120.63831197497674,51.50495170967057],[-120.631168161691,51.50540791519946],[-120.62320294765165,51.50489041986656],[-120.62045497272982,51.50488628153334],[-120.6114715479663,51.50642194688169],[-120.6033239920769,51.50727095842774],[-120.59956385647115,51.50584784290313],[-120.59864927397851,51.50481425205494],[-120.59471550932494,51.50127648448422],[-120.58859769236412,51.49938909788402],[-120.58154255946117,51.49818682682708],[-120.5733950989554,51.49669674599667],[-120.56543143478433,51.49348941772516],[-120.56187809600704,51.49017835142679],[-120.56161146428654,51.48812452219791],[-120.56115895821884,51.48441677711876],[-120.55989551129508,51.48025214268191],[-120.55687506925395,51.47813767125371],[-120.55773533570282,51.67305372090504],[-120.55912583551252,51.87575393809824],[-120.55920031182822,51.8843736757376],[-120.56030957325369,51.88371437543922],[-120.5605701416977,51.88358502710081],[-120.56132421376391,51.88327215032187],[-120.56205023164236,51.88306703837676],[-120.56244671411767,51.882944703621966],[-120.56272198661036,51.882828978788055],[-120.56318751557885,51.88253333252663],[-120.56334624635295,51.88245988252398],[-120.56371273556398,51.88225625432268],[-120.56391114623827,51.88215713446379],[-120.56471203511622,51.88174635596129],[-120.5650414804683,51.88153253549671],[-120.56536018308434,51.88134632334164],[-120.56596376012827,51.88108420017541],[-120.56677158911879,51.880822204608414],[-120.56716232097408,51.88073107512671],[-120.56760319531811,51.88069124390873],[-120.56803060485171,51.88056922404844],[-120.56851205422957,51.88040871589818],[-120.56879349649407,51.88024322358228],[-120.5691151656513,51.87998910002527],[-120.56966429257773,51.879578161049146],[-120.5704411642865,51.87919826777003],[-120.57083926110742,51.879062476967675],[-120.57108283315168,51.878995854122905],[-120.5712123889361,51.87892213647751],[-120.57159380131546,51.8787006389987],[-120.57177669266744,51.87856477070088],[-120.57192241312515,51.8784198346567],[-120.5720898778866,51.87820282034475],[-120.57226583964817,51.8779322206986],[-120.57241844284538,51.877688074892134],[-120.57260018337179,51.877385688887],[-120.57273835131485,51.87715491363388],[-120.57279934139369,51.87701665213301],[-120.57286744241668,51.87686522154665],[-120.57302098969869,51.876481651494316],[-120.57323501690436,51.87586136669617],[-120.57364676091855,51.87546921451486],[-120.57389892357995,51.87524552935564],[-120.5740743172184,51.87503788609573],[-120.57431855774287,51.874628799962935],[-120.574560781948,51.87426516553784],[-120.57476076365907,51.87397714643854],[-120.57487597207191,51.873754837414154],[-120.57510451121215,51.87335457104699],[-120.57536296395907,51.87297764890532],[-120.57563882724763,51.87253406603263],[-120.57592737282931,51.87179808249343],[-120.57610998998801,51.87129778694622],[-120.57621072538764,51.87097188164477],[-120.57597374313008,51.870971340637254],[-120.57568398110735,51.87096999135197],[-120.57568331601274,51.869656822049365],[-120.5756919848216,51.86888396369627],[-120.57569841660062,51.863748654505244],[-120.58741836708133,51.863742470345464],[-120.58842497494284,51.86374055060043],[-120.59907466845488,51.86373377033149],[-120.599998880954,51.863734611748995],[-120.60791070078895,51.86363500307547],[-120.61175570394924,51.86366356334524],[-120.62223845725313,51.8637367559736],[-120.62222336309225,51.870966702447966],[-120.62939392956056,51.870972461569174],[-120.62912749128421,51.87109268174677],[-120.62885184379418,51.8712580236551],[-120.62861589873941,51.871397100635065],[-120.62841745545607,51.871483393178345],[-120.62779161250616,51.87181225976112],[-120.62750980764474,51.871968303564536],[-120.62726574775319,51.87214355416066],[-120.6270137998987,51.872264449546364],[-120.62668550011192,51.87238345453462],[-120.62634396999394,51.87256537813669],[-120.62613645219722,51.87265124142176],[-120.62599196106109,51.87268438479473],[-120.62566365533195,51.8728033868155],[-120.62547362436936,51.8728805050878],[-120.62509230056143,51.87313366278215],[-120.625015015151,51.87321326315389],[-120.62479487892273,51.87325354478245],[-120.62451896409465,51.87334688500509],[-120.62417654989866,51.87340279656116],[-120.62375629537806,51.87343930839517],[-120.62348881319257,51.873479048120736],[-120.62322967491215,51.873554610988265],[-120.62281800832562,51.87365450501977],[-120.62263489429547,51.873749380762504],[-120.62205515959681,51.874043826483394],[-120.62200961588475,51.87408780056059],[-120.62179553931364,51.87418234620936],[-120.62154427347386,51.87431226014992],[-120.62127739794165,51.874450438188866],[-120.62101659901607,51.8745984653374],[-120.62070386105964,51.87475360842468],[-120.62043084645353,51.874838069231814],[-120.62033022364733,51.874944130325666],[-120.62022328821337,51.875130863455816],[-120.62005568814534,51.87526245408281],[-120.61988131383316,51.87533074380597],[-120.61966745586118,51.875497276217054],[-120.61945351272,51.87570879182502],[-120.61922436869938,51.8758661749175],[-120.6189799271319,51.876058820119496],[-120.61882728913714,51.876172559092815],[-120.61854511216468,51.87630157308703],[-120.61825640463633,51.8763948564547],[-120.61767503143845,51.87659867239459],[-120.61733154919733,51.87678103793899],[-120.617096641551,51.876911153894106],[-120.61679886137027,51.877004007592284],[-120.61642503332169,51.877121962092254],[-120.61621857960435,51.877198861504624],[-120.61611210435835,51.87732263944411],[-120.6160206005749,51.87742855898241],[-120.6157224169975,51.87753938622108],[-120.6154246296092,51.87763223630207],[-120.61514276132284,51.87774382896517],[-120.61471547038116,51.878013915103956],[-120.61471456752858,51.87887706893617],[-120.6146614679392,51.878849271939345],[-120.61460136011503,51.878789645132045],[-120.61456354569086,51.8787119554552],[-120.61454016820159,51.87863550223216],[-120.61453214186407,51.87856764344439],[-120.61459322360471,51.87850134164352],[-120.61465430405427,51.87843504875181],[-120.61464620902939,51.87836774458488],[-120.61461635506512,51.878299426606354],[-120.61457918003909,51.87823132232046],[-120.61454019197996,51.8781631327877],[-120.61448607751547,51.87809928879298],[-120.61444165028955,51.87803084352368],[-120.61438815750091,51.87796197206745],[-120.61432623702818,51.877902268781256],[-120.61425045056592,51.877851469001314],[-120.61416615145268,51.87779577020375],[-120.61408855223077,51.87774488507543],[-120.6140055138042,51.87769374417471],[-120.61393035059872,51.8776379078215],[-120.61385275193223,51.877587022526605],[-120.61378539335992,51.877527063203544],[-120.61370834794114,51.877471705024405],[-120.61364043796296,51.87741620944598],[-120.61357907218023,51.87735203294633],[-120.61350983267592,51.8772925428278],[-120.61345704956112,51.877232701701864],[-120.61339568541169,51.87716851614806],[-120.61334944773981,51.877099985150345],[-120.61330440072759,51.87703657573153],[-120.6132654157264,51.87696838569317],[-120.61323611890832,51.87689558554347],[-120.61322802524924,51.8768282901298],[-120.61323512857858,51.876756076801584],[-120.61325122764211,51.876684853295465],[-120.61327471721083,51.87661285259062],[-120.61328175076075,51.87654120281631],[-120.61325057145856,51.8764688809625],[-120.6132279732697,51.87640090351197],[-120.61330307417693,51.87633920244017],[-120.61335028771668,51.87628181355377],[-120.6133202142971,51.87620054613293],[-120.6132499408149,51.87614943779505],[-120.61314372983198,51.876138262313205],[-120.61302869354928,51.87615422229364],[-120.61289915267788,51.87616950010467],[-120.61278529181635,51.87617595070515],[-120.61267782079616,51.87616021675189],[-120.61257981512688,51.87612692367566],[-120.61247928836322,51.87608452337183],[-120.61238844975522,51.876037512952415],[-120.61229754276992,51.87599105708394],[-120.61220489149977,51.87594396124889],[-120.6121218587048,51.87589281890342],[-120.61203882610437,51.87584167649553],[-120.61195342761279,51.87579492153287],[-120.61187094844384,51.875739306219394],[-120.61179335555194,51.87568841944614],[-120.61171819752164,51.8756325904902],[-120.61164841021098,51.875577571936795],[-120.61157979891375,51.87551304421073],[-120.61151969878499,51.87545342455798],[-120.61144998169976,51.875397842305006],[-120.61138256122106,51.87533843607943],[-120.6113050381952,51.87528699433333],[-120.61121413392532,51.87524053757564],[-120.61113055051175,51.8751938672593],[-120.61103065012433,51.87514642930332],[-120.61093138700139,51.87510858567085],[-120.61083157201084,51.8750752057827],[-120.6107257638742,51.87504605165524],[-120.61061940381816,51.87502136126001],[-120.61051248959835,51.875001152486966],[-120.61039699502734,51.87497659898093],[-120.61028283009622,51.874956039861516],[-120.61016804235562,51.87494051697196],[-120.61006238832545,51.874924865852634],[-120.60994822368717,51.87490430639942],[-120.60983398944741,51.87488431040174],[-120.6097174576561,51.8748681471314],[-120.60961235833719,51.874848013878776],[-120.6094968646775,51.87482345946362],[-120.60939121117116,51.874807807724764],[-120.6092757874582,51.87478268951704],[-120.60916155384459,51.87476269284795],[-120.60905464093297,51.874742482712215],[-120.60894047724608,51.87472192225339],[-120.60883411788255,51.874697239142186],[-120.60871933133741,51.87468171480037],[-120.60860516796734,51.87466115400687],[-120.60849770218226,51.87464541611851],[-120.60849695105769,51.87606643748543],[-120.60849788943656,51.87630941714006],[-120.60849785264111,51.876412887916985],[-120.60798672141823,51.87640232835651],[-120.60765958011851,51.8763638786135],[-120.60734684895874,51.876371085332515],[-120.60665878600496,51.87647872475947],[-120.60593418300546,51.8765132165485],[-120.60534742943956,51.87646534346292],[-120.60450004935754,51.876210051887114],[-120.60357022754232,51.87584009088769],[-120.6028441017538,51.87547466161941],[-120.60216445940712,51.87514627433937],[-120.60179877056692,51.875021637543796],[-120.6013953256222,51.87493682550571],[-120.60127998697024,51.874925766459405],[-120.60024279482619,51.87476047883551],[-120.59999953182633,51.8746927764397],[-120.59949543269161,51.87455204267922],[-120.59886871765592,51.874179457732005],[-120.59828149102138,51.87354722976134],[-120.5975723315429,51.87338388699539],[-120.5972587808184,51.87310366573234],[-120.596641343666,51.8730683527029],[-120.59648883038618,51.87303360749181],[-120.59643619796545,51.87304630396675],[-120.59539740470744,51.87289439042946],[-120.59485635025572,51.87269902889369],[-120.59465871636282,51.87264583909113],[-120.59429825172528,51.87255290586494],[-120.59382626288001,51.87240353770645],[-120.59308600031571,51.87206492309468],[-120.59262097731073,51.87166843876211],[-120.59193371109001,51.871079253787585],[-120.59175796197533,51.87042368002148],[-120.59174295857602,51.86994214602677],[-120.59162171900569,51.869831821789575],[-120.59136873044572,51.86975464183224],[-120.59105741325816,51.869721387624516],[-120.59078896144254,51.86966597067964],[-120.59030873284738,51.86953924897719],[-120.58972221981969,51.869225865326435],[-120.5896602924558,51.868946256282335],[-120.5896520939985,51.868747916260475],[-120.58946273504266,51.868613568477805],[-120.58891280641707,51.868490295994405],[-120.58869836073364,51.86849928531033],[-120.58803583129537,51.868489919417634],[-120.58740947969865,51.868468195617325],[-120.58616687707618,51.86840215349877],[-120.58605255281093,51.86842711760085],[-120.5857080237346,51.8684558214831],[-120.58557849615157,51.86847106856453],[-120.58530501483209,51.86851494403328],[-120.58478528582457,51.86854491842571],[-120.58445769389377,51.86856936257445],[-120.58422829150636,51.86865467650789],[-120.58400671893504,51.86879435670237],[-120.58393033288328,51.869012876111555],[-120.58382301476168,51.86928955293335],[-120.58380808192203,51.86958577768279],[-120.58399145885126,51.86978283775182],[-120.5845497353731,51.87001506083698],[-120.58452553028998,51.8704593120793],[-120.58427362733106,51.87093103876482],[-120.5840378820694,51.87121401541161],[-120.58385559037666,51.87144833913862],[-120.5835032826738,51.8717741579735],[-120.58293870055986,51.872193980078734],[-120.58284108228257,51.872524535043965],[-120.58314552614006,51.87293596381187],[-120.58319859716698,51.87330120501676],[-120.58310600610763,51.873649993381605],[-120.58265624745097,51.874099421635144],[-120.58229063879546,51.874370630117625],[-120.5818096626914,51.874733666119546],[-120.58120699176027,51.87506338343006],[-120.58066664162858,51.875375809885504],[-120.58027601186915,51.875745363713676],[-120.58017739173673,51.87587847363218],[-120.58005592129356,51.8760779955573],[-120.57993382442916,51.876282544546534],[-120.57986463726584,51.876442915701695],[-120.57976518844008,51.876611986655206],[-120.57952101953137,51.876903545761444],[-120.57942246347316,51.87703610028914],[-120.57923183140876,51.877293084728414],[-120.57899492586051,51.87764347282921],[-120.57885032922223,51.87795549764825],[-120.57873626218536,51.87822734277103],[-120.57865995771195,51.878400882303666],[-120.57850641751169,51.878667485083604],[-120.57832973890416,51.878988113721235],[-120.57820853947655,51.87921463141845],[-120.57804070536939,51.87950811771145],[-120.57784294519041,51.87977825965504],[-120.57766755043203,51.87998590779567],[-120.57741534235309,51.880327137832964],[-120.57707924550348,51.88069757195153],[-120.57670581146856,51.88098694854316],[-120.5761635573186,51.881357753264936],[-120.5757743352308,51.881583394613166],[-120.5753178840244,51.88182159803956],[-120.57507361650094,51.88193768560869],[-120.57442462455617,51.88225731491808],[-120.57368497870323,51.882660368086],[-120.57322593039451,51.88293387477189],[-120.57289093286677,51.88313395721907],[-120.57243285808276,51.88344348981922],[-120.57200622004832,51.88369096687666],[-120.57188417877427,51.88373354903553],[-120.57154190721535,51.88387479697713],[-120.57118268613269,51.884020306736055],[-120.57064108872538,51.88418022637702],[-120.5700383870843,51.884288884092996],[-120.56945046488933,51.88436674651274],[-120.5691062927688,51.88444996898532],[-120.56884002324209,51.88455207162153],[-120.56846565418635,51.884701912303036],[-120.56838168552902,51.884731674120644],[-120.56753482107734,51.885262337374904],[-120.56709258600749,51.88553211118353],[-120.5667279005063,51.88579432227951],[-120.56609267106174,51.88616348340173],[-120.56549188495602,51.88646116664125],[-120.56502598091335,51.88661340434015],[-120.56443843626167,51.88673175154856],[-120.56394930108199,51.88686544510803],[-120.56350660956254,51.88709470305792],[-120.56302708701877,51.88734132359522],[-120.56249189870675,51.887595432578806],[-120.56201927662585,51.88774284122163],[-120.56163787979526,51.887919322030534],[-120.56131792729667,51.88811502232102],[-120.56069999961424,51.888344951247845],[-120.55922880202529,51.888717134259544],[-120.5592969013895,51.91598113092819],[-120.55847653054127,51.91611878412022],[-120.5580290718513,51.916193717209076],[-120.55758217187058,51.91626416724991],[-120.55713415097759,51.91634356919914],[-120.5566872480162,51.91641401574971],[-120.55622575612392,51.916484334883],[-120.55577828981757,51.91655925918184],[-120.55533124261564,51.91663081853081],[-120.55488377327006,51.91670573933618],[-120.5544364433706,51.91677953136457],[-120.55398939059077,51.91685109442326],[-120.55352740067622,51.916925311512166],[-120.55307985582098,51.91700077984175],[-120.55263293845941,51.917071219525965],[-120.5521853211576,51.91714723893005],[-120.55173840085081,51.91721767512553],[-120.55127654317066,51.917290765059015],[-120.55082892013223,51.91736678810859],[-120.55038199650535,51.917437210069764],[-120.54993444095592,51.91751266611307],[-120.54948695329497,51.91758756584125],[-120.54903946521722,51.91766245487719],[-120.54859239453444,51.91773399688039],[-120.54813052611574,51.91780707413412],[-120.54768345245984,51.91787861259142],[-120.54723539808883,51.91795796688256],[-120.54678783175287,51.9180334106342],[-120.54634089365102,51.91810382577918],[-120.54589325478763,51.91817982060082],[-120.54544519294483,51.91825917683428],[-120.54498331369243,51.91833224140289],[-120.54453566899853,51.91840823986457],[-120.5440881640009,51.918483109562324],[-120.54364051619893,51.91855910452632],[-120.54319244748268,51.91863844300387],[-120.54274486717172,51.918713870961305],[-120.54229728531271,51.91878929717035],[-120.54184970190569,51.918864721630776],[-120.54140218649259,51.918939589781466],[-120.54095354892759,51.919023391767354],[-120.54050589011932,51.91909937448271],[-120.54005837111393,51.91917422843964],[-120.53961084945043,51.91924908959311],[-120.53916276631657,51.91932841230786],[-120.53871510125812,51.91940438802571],[-120.53826645374956,51.919488179485235],[-120.53781885620083,51.91956358819727],[-120.53737125710435,51.91963899516069],[-120.53692309516924,51.91971887261669],[-120.53647556253645,51.91979372152275],[-120.53602676637452,51.91987862226794],[-120.53557923056435,51.91995346767231],[-120.5351315539715,51.92002942044204],[-120.53468345355219,51.92010873457851],[-120.53423591419886,51.92018356579119],[-120.53378767016228,51.920263994479974],[-120.53333956601251,51.92034329441479],[-120.53289145910982,51.920422601540814],[-120.53244391346138,51.92049742575307],[-120.5319956628947,51.92057784742899],[-120.53154811411646,51.92065266814197],[-120.53109986030252,51.920733086312225],[-120.53065174644648,51.92081237573218],[-120.53020356014977,51.92089222689668],[-120.52975593425397,51.92096760410609],[-120.52930774472203,51.92104745176555],[-120.52885962325387,51.92112674311891],[-120.52841136073496,51.92120714182313],[-120.52797775416651,51.92128712242802],[-120.52753005064899,51.92136304549175],[-120.52708192270642,51.921442329890176],[-120.5266343566285,51.92151713140724],[-120.52618608487039,51.92159753034708],[-120.5257379532003,51.9216768005434],[-120.52528981877617,51.92175607793089],[-120.52484224640502,51.921830872446904],[-120.52439453072257,51.92190679220184],[-120.5239463926186,51.92198605538961],[-120.52349818198581,51.92206588031715],[-120.52304996971232,51.9221457034907],[-120.52260231858988,51.922221052748995],[-120.52215473571263,51.92229584571064],[-120.52170644881915,51.92237621817519],[-120.52125886281316,51.92245100763721],[-120.52081057267384,51.922531376595785],[-120.52036242051285,51.92261063470682],[-120.51991483092247,51.922685409973894],[-120.51946723867108,51.92276019243692],[-120.51901908284393,51.92283943634868],[-120.51900407096376,51.92284266005497],[-120.51855626489417,51.92291911154001],[-120.51812318762315,51.92299457375417],[-120.51767551927657,51.92306990376267],[-120.51721333076574,51.92314453790657],[-120.51677961454224,51.92322503066157],[-120.51631749272207,51.92329910664818],[-120.51586918476,51.923379456269146],[-120.51542157844898,51.9234542229279],[-120.51497340813953,51.92353345101294],[-120.51452565780286,51.92360933220146],[-120.51407804795663,51.92368408466764],[-120.51362987171684,51.92376331644094],[-120.51318225875477,51.923838065407644],[-120.51273400939078,51.92391784821772],[-120.51228632225926,51.923993157169804],[-120.51183863358156,51.92406846437276],[-120.51139044932329,51.92414768738513],[-120.51094268757464,51.924223545627676],[-120.51049506415524,51.924298293041026],[-120.51004687622257,51.92437750185315],[-120.50959910864907,51.92445336378921],[-120.50915105854573,51.92453145107447],[-120.50870328783327,51.924607309509724],[-120.50825509347061,51.92468651131201],[-120.50780731960762,51.92476236624566],[-120.50735968641283,51.92483709246639],[-120.50691141612964,51.92491685249357],[-120.50646314420675,51.924996610766556],[-120.50601543517368,51.92507189521646],[-120.50556779460229,51.925146623380954],[-120.50511944784698,51.92522693093246],[-120.50467180414891,51.925301655596535],[-120.50422359532907,51.925380841626705],[-120.50377524256093,51.92546115286144],[-120.5033277364878,51.925534745316405],[-120.5028799453456,51.925610580993634],[-120.50243173009714,51.92568976001362],[-120.50198344203714,51.925769500757646],[-120.50153515233772,51.92584923974731],[-120.50108742604485,51.925924504941484],[-120.5006396982065,51.92599976838622],[-120.50019140368302,51.92607950211784],[-120.4997431776034,51.92615867956303],[-120.4992948097182,51.92623896431814],[-120.49884714565242,51.92631366622643],[-120.498398915856,51.926392829468185],[-120.49795110733243,51.926468645882395],[-120.49750287431647,51.926547805618384],[-120.49705463854232,51.92662697254475],[-120.49660640227172,51.926706128773155],[-120.4961585874146,51.9267819381816],[-120.49571034792469,51.926861090904325],[-120.49526252991855,51.926936896810794],[-120.49481372150606,51.92702051803384],[-120.49436597158866,51.92709575696332],[-120.49391772448779,51.92717491161628],[-120.49346990127455,51.92725070157245],[-120.49302165095453,51.92732985271954],[-120.4925738245928,51.927405639173664],[-120.4921250050685,51.927489258805835],[-120.4916773170195,51.92756392375813],[-120.49122891870643,51.927644185888084],[-120.49078122753262,51.92771884733954],[-120.49033353369347,51.92779351598599],[-120.48988470701376,51.92787711789646],[-120.48943686844788,51.927952901034075],[-120.48898860472264,51.928032027457654],[-120.48854083437004,51.928107243624666],[-120.48809249606495,51.928186930010526],[-120.4876447225761,51.92826214267589],[-120.48719645128715,51.92834127103157],[-120.48674803786723,51.92842150667959],[-120.48630032990862,51.928496159568276],[-120.48585191324712,51.92857639170888],[-120.48540420216418,51.928651041096444],[-120.48495592394535,51.92873015174193],[-120.48450820974992,51.92880479762891],[-120.48405992832494,51.92888390476885],[-120.48361206929779,51.928959665141136],[-120.48316435157933,51.929034296834075],[-120.48271599391877,51.92911396218044],[-120.48226763461996,51.92919362577208],[-120.48181984074819,51.929268815675776],[-120.48137211565404,51.92934344931036],[-120.48092424837184,51.929419190234086],[-120.4804759529949,51.92949829229555],[-120.48002765712603,51.929577383659],[-120.47957992579626,51.92965201029153],[-120.47913162672185,51.92973109814927],[-120.47868375043187,51.929806839259896],[-120.47823601558103,51.9298814516981],[-120.47778764020687,51.92996109775847],[-120.47733990110373,51.93003571563935],[-120.47689201970803,51.930111440803685],[-120.47644427752856,51.93018605518564],[-120.47598201462401,51.93025995955406],[-120.47553483708603,51.930330098483076],[-120.47508765924496,51.93040022672406],[-120.47464040842061,51.930470916679425],[-120.47417870616867,51.93054035082725],[-120.47373223388055,51.93060488391891],[-120.47328554671842,51.930671096701374],[-120.4728238401895,51.93074052539433],[-120.4723777898868,51.93080169930092],[-120.4719172167329,51.930862180583176],[-120.47145614573859,51.930926568435744],[-120.47101023366302,51.93098661905612],[-120.47054958619678,51.931047649360316],[-120.47008957620146,51.93110365143528],[-120.46962970824619,51.93115852475611],[-120.46917033590442,51.931209487826074],[-120.46871153092432,51.93125597719699],[-120.46825222697466,51.931306382082276],[-120.46779455705763,51.93134392407282],[-120.46733638941527,51.93138537263949],[-120.46687942866252,51.93141732116686],[-120.46640823100698,51.9314463314229],[-120.46595240637791,51.9314693325661],[-120.4654831982374,51.93148268756715],[-120.4650145586272,51.93149156881121],[-120.46454648769188,51.931495976305186],[-120.46407898557564,51.93149591005622],[-120.46361262138379,51.931486898236706],[-120.46314739540266,51.93146894086024],[-120.462682738861,51.93144650977033],[-120.46221865190093,51.931419604973634],[-120.46175513466423,51.931388226476656],[-120.46129325396838,51.93134399408872],[-120.46083187286747,51.93129584252723],[-120.46037120439897,51.93124209933736],[-120.4599118180743,51.931178292709426],[-120.45945342951451,51.93110665856489],[-120.45899603896147,51.93102719691419],[-120.45855551999794,51.93092998426688],[-120.45811592789353,51.93082550770361],[-120.45769256675884,51.93070831565779],[-120.45730024176554,51.93057687408383],[-120.45692514498064,51.93042489180954],[-120.45655325463174,51.9302477588631],[-120.45621268714523,51.93005413217116],[-120.45587361766476,51.929848770427036],[-120.45556565578664,51.92962860564214],[-120.45525841039665,51.92940284129427],[-120.45495095393605,51.92917875747722],[-120.4546574503393,51.92895984661084],[-120.45436487516467,51.928733672750454],[-120.45408860392241,51.92849422134622],[-120.45382657005707,51.928257707249365],[-120.45356575074032,51.92801168546268],[-120.45331938168367,51.92776692866451],[-120.45305792635283,51.92752594086506],[-120.45281149106903,51.927281746320176],[-120.45254961392554,51.92704411111026],[-120.45227265077608,51.92681024473274],[-120.45197967596505,51.926587409277666],[-120.45168506448982,51.9263774339159],[-120.45134490461925,51.92618100174049],[-120.4509882336661,51.92599951732111],[-120.45058444646371,51.925843872877905],[-120.45016336314164,51.92570932886059],[-120.44972576913383,51.92558972296186],[-120.44928340025622,51.92550757107234],[-120.44883996298033,51.92543380654299],[-120.44838051210856,51.9253710714459],[-120.44793436906951,51.925318535440155],[-120.44747263857461,51.92527368383192],[-120.44701033844733,51.9252333021435],[-120.4465474685471,51.925197390368474],[-120.44606893990435,51.92516971716996],[-120.44560493000425,51.92514274514143],[-120.445139849909,51.92512416027525],[-120.44467527024848,51.9251016562599],[-120.44421004941253,51.92508417662806],[-120.44374432882812,51.925070612375336],[-120.44327803757079,51.92506151799395],[-120.44281231751827,51.92504794996386],[-120.44234488458159,51.92504779530922],[-120.44187745164821,51.925047638753234],[-120.44142510790714,51.92504371223772],[-120.44095653261994,51.9250524954353],[-120.4404878143318,51.925062394658504],[-120.44001923865513,51.925071174034166],[-120.43955051995353,51.925081069434135],[-120.43909589050864,51.92509502071134],[-120.43862674276114,51.92510826614679],[-120.4381575947287,51.925121509666766],[-120.43768901794803,51.92513027954035],[-120.43721929780904,51.92514799096031],[-120.43674900565499,51.925170172185894],[-120.4362775696581,51.925201294933636],[-120.43582057895794,51.92523368358267],[-120.43536115866965,51.92528506627452],[-120.43491503962883,51.925346658509575],[-120.43448000615602,51.92543578385994],[-120.43405405579296,51.92556809343397],[-120.43366615157598,51.92574556009698],[-120.43334726138148,51.92595448821532],[-120.43311233052228,51.92619224719604],[-120.43291880816268,51.92644887988603],[-120.4327521740396,51.92672369958424],[-120.4326135028226,51.92700830854522],[-120.43247568794493,51.92728620972312],[-120.43233801434002,51.927562992744186],[-120.43222844747991,51.92784844726709],[-120.43213261082657,51.928140759524574],[-120.43202318306604,51.928425104727694],[-120.43185832438557,51.928685944153735],[-120.4316378910053,51.92892439550192],[-120.43134650361274,51.9291464699749],[-120.43101255681604,51.92935860322217],[-120.43066551818936,51.9295588512171],[-120.43027692135117,51.929741331983145],[-120.42987802266855,51.929890132142084],[-120.42946753610697,51.93001530391569],[-120.42903058433114,51.930118941199666],[-120.42859484768991,51.930213070051956],[-120.42815968060405,51.93030273452464],[-120.42769733473386,51.930376444663025],[-120.4272356309911,51.930445126793316],[-120.4267757149912,51.93049983761315],[-120.4263157268132,51.930555101074944],[-120.42585759914024,51.930595829829166],[-120.42538545280797,51.93063193387964],[-120.42492904221254,51.93065924398629],[-120.4244596870627,51.93067354943152],[-120.42400542425055,51.930684087207645],[-120.42353850403882,51.93067938441698],[-120.42307273014441,51.93066573645684],[-120.42260752969727,51.93064761497485],[-120.42214175643367,51.93063396324142],[-120.42166203714157,51.930615131807926],[-120.42119683782073,51.930597004615215],[-120.4207316388867,51.930578875539275],[-120.42026472015527,51.93057415944819],[-120.41979722808206,51.930573913080586],[-120.41934368204411,51.93057884290693],[-120.4188738957755,51.93059647925562],[-120.41840410912688,51.93061411368368],[-120.41793374846358,51.93063621780211],[-120.41746338732341,51.93065831999514],[-120.416977358723,51.930688656699964],[-120.41651979470936,51.930724876622165],[-120.41604656274738,51.93076933103133],[-120.4156010053675,51.93082582191006],[-120.41515372621168,51.93089571690321],[-120.41471902747816,51.93098141331221],[-120.41429640708057,51.93108681944654],[-120.41389966660692,51.9312182320843],[-120.41351514703587,51.93136823689419],[-120.41315578886568,51.931549838104125],[-120.41279470517344,51.93174485290393],[-120.41244749154818,51.93194560888102],[-120.41210027587408,51.93214635483054],[-120.41175305585423,51.932347108638986],[-120.41140705366105,51.932538354803796],[-120.41103265496832,51.93272314986223],[-120.41067341889405,51.93290362520276],[-120.41032798199625,51.93309039646096],[-120.4099674473849,51.933280930552364],[-120.40960798628417,51.933463083781206],[-120.40926261278503,51.93364928832946],[-120.4089027871505,51.93383422954429],[-120.40854338944516,51.93401581593971],[-120.40817018655505,51.93419110386219],[-120.40779712434501,51.934365272659576],[-120.40741111911265,51.93452643549553],[-120.40702539843002,51.9346853612422],[-120.40662630389987,51.93483463451695],[-120.4062279252526,51.934978316967324],[-120.40580222716501,51.935107167055236],[-120.40539061617059,51.93524007743689],[-120.40496620686346,51.935358863457445],[-120.40454251408363,51.935472058492444],[-120.40410487328091,51.935580072034405],[-120.40366945849594,51.93567076123248],[-120.40321980967029,51.93575849556298],[-120.40277303417574,51.935823879497654],[-120.40231180881652,51.93588798965741],[-120.40186503178401,51.93595336111241],[-120.4010909497594,51.93606406688431],[-120.4002925911248,51.93590923120845],[-120.39978888886674,51.93584921069426],[-120.39904708394849,51.93593616394043],[-120.39449692818383,51.93575383415224],[-120.39373215039267,51.935678769089975],[-120.39278668410687,51.93575854498194],[-120.39133795688365,51.93577490194644],[-120.39034820040405,51.93608478224069],[-120.38965753158283,51.936454846874156],[-120.38864596592506,51.93716018328717],[-120.38759632705005,51.93770728621289],[-120.38673820179848,51.93801571310693],[-120.38567303797079,51.93811657408536],[-120.3830867728182,51.938453989408515],[-120.38163045879725,51.93864140289239],[-120.38051811304189,51.938994138718776],[-120.37990601350789,51.93965992060143],[-120.37978670935073,51.940357151320605],[-120.3799574792461,51.94095835051727],[-120.38004356556634,51.94142321791863],[-120.37975122169082,51.942215463262855],[-120.3792811692369,51.942573224096066],[-120.3786260674599,51.94289265925767],[-120.37773721410046,51.94321132718841],[-120.3768904721415,51.94354330204738],[-120.37588778959795,51.94395087103873],[-120.37429646601791,51.94484140956766],[-120.37337760924554,51.94539143482043],[-120.37247895492301,51.94601106491587],[-120.37193284332604,51.94650399250924],[-120.37190609499062,51.947275503409436],[-120.37197201408561,51.947782702682815],[-120.37190100487389,51.948218506559556],[-120.37176732702594,51.948799717057454],[-120.37171241795463,51.949336986389206],[-120.3717381746926,51.94970272451831],[-120.37169246294158,51.95005595751995],[-120.37156868556266,51.95056060029738],[-120.37140053236003,51.95106925767198],[-120.37109867831045,51.95159441253884],[-120.37090595023713,51.95206698215632],[-120.37063250002413,51.95248553697595],[-120.3702053170776,51.95296236139669],[-120.36968868873981,51.953226676535415],[-120.36914423113271,51.953480066695604],[-120.36808017347906,51.95390763258144],[-120.36652532552333,51.95451244915503],[-120.35647563757425,51.95816628492406],[-120.35632230820667,51.95822118310465],[-120.35613651409817,51.9583009159795],[-120.35594999385935,51.958386237537646],[-120.35576296563735,51.95847546660693],[-120.35556249651762,51.95855560184208],[-120.35537611917034,51.95863980465352],[-120.35519017643492,51.95872065376721],[-120.35500379766223,51.95880485596315],[-120.354816692565,51.95889464683032],[-120.35463081968658,51.95897494059503],[-120.35442976566165,51.95905954500284],[-120.35424323883363,51.959144863736554],[-120.35405685641663,51.95922906436688],[-120.35387040128667,51.95931381911489],[-120.35368387227494,51.95939913692259],[-120.35349734253276,51.959484454421386],[-120.35329700976656,51.959563467843594],[-120.35311047856347,51.95964878470279],[-120.35292351111323,51.95973745463108],[-120.35273755914316,51.95981829970214],[-120.35255102575377,51.95990361563505],[-120.35235061616984,51.959983190747046],[-120.35216408131694,51.960068506040216],[-120.35197769093146,51.96015270323331],[-120.351791227805,51.96023745454244],[-120.35160527160035,51.96031829774762],[-120.3514043507159,51.96040177897715],[-120.35121839309215,51.96048262154523],[-120.35103141821371,51.96057128833332],[-120.35084545917465,51.960652130286505],[-120.35064504303324,51.960731702374744],[-120.35045850163647,51.96081701484604],[-120.35027217795641,51.96090064585495],[-120.35007168758123,51.96098077134975],[-120.34988587026851,51.96106049393495],[-120.34970005227584,51.96114021621432],[-120.34949897868611,51.96122481184275],[-120.34931308606866,51.96130509685008],[-120.34911273734427,51.9613841028586],[-120.34892626337567,51.96146884943209],[-120.34872576791098,51.961548972541095],[-120.3485400910035,51.961627575127025],[-120.34833901291263,51.961712168691676],[-120.34815369728445,51.961787980651636],[-120.34795334423742,51.96186698460736],[-120.34776686594722,51.96195172926556],[-120.34756709271502,51.96202626140144],[-120.34738126636107,51.962105979867616],[-120.34718083720608,51.962185545818656],[-120.34697989923441,51.96226901918314],[-120.34679458003573,51.962344819974305],[-120.34659407662029,51.9624249393064],[-120.34640839213439,51.96250353839106],[-120.346207959374,51.962583102619234],[-120.34602198279943,51.962663936632005],[-120.34582169512294,51.962742373452755],[-120.34562118808905,51.96282249106108],[-120.34543608165333,51.96289661742741],[-120.34523506378807,51.962980651053265],[-120.34504966525289,51.96305701234702],[-120.34484879245622,51.963139918564394],[-120.34464886338841,51.963215563333776],[-120.34446317202399,51.96329415922405],[-120.34426273207443,51.96337372000782],[-120.34406221926848,51.963453834854455],[-120.34387703537142,51.9635285130889],[-120.34367608487675,51.96361198058417],[-120.34347629703451,51.96368650550712],[-120.34329096454802,51.96376230950188],[-120.3430900118523,51.96384577595619],[-120.34289014979552,51.96392085426293],[-120.34270430680404,51.964000565041346],[-120.34250393370172,51.964079559352314],[-120.34230406839892,51.96415464556769],[-120.34211822333793,51.964234355382935],[-120.34191777594475,51.96431390307293],[-120.34173192949774,51.96439361225312],[-120.34153155282479,51.96447260484315],[-120.34133110210048,51.96455216043653],[-120.34114590885397,51.9646268342026],[-120.34094538454984,51.96470694352843],[-120.3407451505113,51.96478481695444],[-120.3405597364298,51.96486117089114],[-120.34035870009549,51.96494519585096],[-120.34015897380608,51.96501915156862],[-120.33997297561064,51.96509997562923],[-120.3397727380277,51.965177847335845],[-120.33957286297974,51.96525292873369],[-120.33938686269896,51.96533375183005],[-120.33918655080437,51.96541217691442],[-120.33900069467569,51.96549188160558],[-120.33880089021577,51.96556639828569],[-120.33859984723522,51.96565042011996],[-120.33841457127468,51.96572565277256],[-120.3382141102582,51.965805193905226],[-120.33802766837434,51.96588936806925],[-120.33782786042727,51.96596388303345],[-120.33762681373595,51.96604790313811],[-120.33744138881409,51.966124251964274],[-120.337241069783,51.96620267360682],[-120.33705506112175,51.96628349286591],[-120.33685481288393,51.966361359413],[-120.33666880282864,51.96644217803644],[-120.33646833416307,51.96652172501921],[-120.33628188583992,51.966605896301225],[-120.33608141687957,51.96668543365629],[-120.3358955496385,51.966765133242035],[-120.3356945689247,51.96684858655781],[-120.33550862687576,51.96692884886],[-120.33530808161086,51.96700894819789],[-120.33512221157481,51.967088646511705],[-120.33492173827594,51.96716818181237],[-120.3347358668538,51.967247879490785],[-120.33453546436886,51.9673268596972],[-120.33434886319122,51.96741214554917],[-120.33414838582645,51.96749168842191],[-120.33396251160933,51.967571384828304],[-120.33376145121085,51.967655389117596],[-120.33357557558746,51.96773508488749],[-120.33338969928398,51.967814780351496],[-120.33318914604507,51.967894875933574],[-120.33300261207147,51.967979605150795],[-120.33280278594319,51.968054111250865],[-120.33261683458713,51.968134359852485],[-120.33241584127607,51.96821780734042],[-120.33221543012341,51.968296783438475],[-120.33203005843214,51.96837256898439],[-120.33182906289812,51.9684560154298],[-120.33164369102315,51.96853179140057],[-120.33144327702627,51.96861076613184],[-120.33124286230277,51.968689740508594],[-120.33105690419401,51.96876999548627],[-120.33085648803757,51.968848969178964],[-120.33065658194722,51.9689240259015],[-120.33047142412704,51.96899812779023],[-120.33027093238428,51.96907766379572],[-120.33007109654748,51.96915216507946],[-120.3298711877127,51.96922722041746],[-120.32967091310405,51.969305074259054],[-120.32948553269586,51.96938085563822],[-120.32928569412512,51.96945535553803],[-120.32908578254586,51.9695304094914],[-120.3288860884273,51.969603790934435],[-120.32868675762079,51.96967438211628],[-120.32847245874683,51.969747599332],[-120.3282733459529,51.9698165086898],[-120.32807357564911,51.969890452050976],[-120.32787438923013,51.96995991511439],[-120.32766059749446,51.97002922314214],[-120.32746199205587,51.97009422342256],[-120.32724783492395,51.97016632057993],[-120.32704849888881,51.97023690888864],[-120.32684989275707,51.97030189915865],[-120.32663631595284,51.97036953310922],[-120.32643712505156,51.970438993655165],[-120.32622464171683,51.97049823924725],[-120.32601091708037,51.970566989773644],[-120.32581245380001,51.97063086048591],[-120.32559931150192,51.97069513924885],[-120.3253861697421,51.97075940867131],[-120.32517302618604,51.97082368663727],[-120.32497514421381,51.9708830849039],[-120.3247619994461,51.970947362101434],[-120.3245490011548,51.97101051221278],[-120.3243358551348,51.97107478861366],[-120.32413782493161,51.97113530317254],[-120.32392540746686,51.97119399008049],[-120.32371240675688,51.97125713862928],[-120.3234998421591,51.97131694248971],[-120.32328800800273,51.97137114829309],[-120.3230755882431,51.9714298336198],[-120.32284922143323,51.97148331999689],[-120.3226373120799,51.971538087936786],[-120.32242547460692,51.971592301083454],[-120.32219983615596,51.9716401974627],[-120.3219885092465,51.97169049323134],[-120.3217627226266,51.971739515433015],[-120.32153766675539,51.97178293954134],[-120.32131253683956,51.97182692654918],[-120.32108740646908,51.971870913114834],[-120.3208773178705,51.97191171050858],[-120.32065284439106,51.97195066191858],[-120.3204281508557,51.97199129396972],[-120.32020425960722,51.972025782485154],[-120.31998029555915,51.972060824962476],[-120.31975647721521,51.97209474926403],[-120.31951863861772,51.97212403751395],[-120.31929525781905,51.97215460770143],[-120.31907246103617,51.97218070650348],[-120.31883527832339,51.972204967989754],[-120.31861196909293,51.97223498245061],[-120.31837405532562,51.97226483167022],[-120.31815140353342,51.972289810949306],[-120.31792867901424,51.972315344194065],[-120.31769091045818,51.97234407426271],[-120.31746752724854,51.9723746408955],[-120.3172296119343,51.97240448774478],[-120.31700637422736,51.97243393574539],[-120.31678174728462,51.97247400626119],[-120.3165572672458,51.972512949660825],[-120.3163322746824,51.97255580916078],[-120.31610757399586,51.972596432752],[-120.3158831652216,51.972634820436404],[-120.31564531990205,51.97266410960696],[-120.31542251832671,51.972690201328916],[-120.31518642777058,51.97270606781663],[-120.31496552616991,51.97271762813325],[-120.31473126215847,51.97271952650766],[-120.31449758293266,51.97271695347955],[-120.31426331890445,51.972718850901124],[-120.31402963970993,51.97271627692246],[-120.31379537566497,51.97271817339117],[-120.31356228140373,51.9727111275412],[-120.31332918721792,51.97270408121897],[-120.3130960931075,51.97269703442437],[-120.31286358404586,51.97268551624011],[-120.31263049011014,51.97267846850211],[-120.31239856629152,51.972662478461565],[-120.31216664264318,51.97264648795327],[-120.31193413409713,51.9726349678901],[-120.3117027958573,51.972614505533436],[-120.3114714578348,51.97259404271128],[-120.31124012002967,51.972573579423454],[-120.31100936760375,51.97254864476172],[-120.31077861544196,51.97252370963656],[-120.31054771724226,51.97249989177464],[-120.31033208253373,51.972471205039255],[-120.31010191642343,51.972441797649715],[-120.30987175062393,51.97241238979894],[-120.30964202411009,51.97237962831028],[-120.30941302959546,51.97234127773565],[-120.30918345013815,51.972307397603934],[-120.3089550417758,51.97226457521489],[-120.30874109169305,51.97222303612708],[-120.30851253785467,51.972181330581],[-120.30828413081294,51.972138506855174],[-120.30807076861737,51.97209248667808],[-120.30784353343577,51.9720407202833],[-120.30763068391262,51.971990791724295],[-120.3074178348774,51.97194086276922],[-120.30719096664265,51.971886305241654],[-120.30697936353495,51.97182687035479],[-120.30678221862662,51.97176871907867],[-120.3065709082796,51.97170705693121],[-120.30636047814225,51.97163867911791],[-120.30616494543821,51.97156823183079],[-120.30597058469627,51.9714888424332],[-120.30577563897911,51.97141392358799],[-120.30558127963516,51.971334533521954],[-120.30538743292013,51.971251235568765],[-120.30519300237773,51.971172399225374],[-120.30499974288561,51.97108462972272],[-120.30480531378845,51.971005792712646],[-120.30461103067262,51.97092584658992],[-120.30441718880313,51.97084253803058],[-120.30422283448425,51.970763145630194],[-120.30402789502052,51.97068822377629],[-120.30381849790403,51.97061202615395],[-120.30362290126843,51.97054212887268],[-120.30341291964918,51.970470401381505],[-120.30321703133387,51.970402738840654],[-120.3030220213829,51.970328378589436],[-120.3028120429553,51.97025664104627],[-120.30260140539119,51.97018993732061],[-120.30240595793464,51.97011892916763],[-120.30219554200654,51.97005054364207],[-120.30200002316651,51.96998008917921],[-120.30179004692855,51.96990835869086],[-120.30157948646111,51.96984108974406],[-120.30138345612306,51.969774550703605],[-120.30117289693021,51.96970728100476],[-120.30096226453229,51.96964057424612],[-120.30075126583414,51.969576665861105],[-120.30055523912337,51.96951011645242],[-120.30034402240992,51.96944787941762],[-120.30013302555203,51.96938396988801],[-120.29992195661745,51.96932061435504],[-120.29971022932125,51.96926228368215],[-120.299498575293,51.969203398229645],[-120.29928684796073,51.96914507571335],[-120.29907468261298,51.96909009700855],[-120.29886303028042,51.96903121037787],[-120.29863567541426,51.9689805433739],[-120.29842351051681,51.968925572402],[-120.29821127343801,51.96887115542251],[-120.29799852433479,51.968820645577615],[-120.2977717580426,51.968765506000175],[-120.29755893606712,51.968715558665565],[-120.29734604067916,51.968666174262594],[-120.29711942265048,51.96860991567824],[-120.29690667608901,51.968559403802615],[-120.2966932695355,51.968513925709935],[-120.29646591989258,51.968463254395026],[-120.29625317363181,51.96841275024619],[-120.29602523838548,51.968366548905465],[-120.29581249428118,51.96831603499555],[-120.29559982341925,51.968264966305135],[-120.29537232967034,51.96821541052968],[-120.29515848635641,51.96817328271052],[-120.2949312130337,51.96812205396274],[-120.29471781068486,51.96807657218801],[-120.29450506951265,51.96802605584753],[-120.29427728484787,51.967978733317395],[-120.2940493539679,51.96793252804417],[-120.29383654032968,51.96788257378695],[-120.29360817025704,51.96783972076513],[-120.29339484344881,51.96779368214111],[-120.29316691447295,51.96774747511199],[-120.2929535897566,51.967701426724204],[-120.29272580847454,51.96765410110861],[-120.29251182372674,51.96761308605752],[-120.29228389663233,51.96756687727158],[-120.29207064652635,51.967520272856],[-120.29184279318098,51.96747350880909],[-120.29162881015155,51.96743249210913],[-120.29140103171476,51.96738516385915],[-120.29118712351305,51.967343583009885],[-120.29095875887205,51.9673007247084],[-120.2907308350592,51.967254512832575],[-120.2905174413454,51.967209023231526],[-120.29028900407936,51.96716672691933],[-120.29007517082898,51.96712458961232],[-120.28984666161479,51.967082846800686],[-120.2896188869422,51.967035515007424],[-120.28940498215827,51.96699393083163],[-120.28917706159865,51.966947715864926],[-120.28896264315028,51.96691004730097],[-120.28873472349875,51.96686383145452],[-120.28852081922695,51.966822254569934],[-120.28829231308787,51.96678050865969],[-120.28806454168472,51.966733173776255],[-120.28785012525418,51.96669550313158],[-120.28762169444542,51.96665319256201],[-120.28740786629557,51.96661105027795],[-120.28717936233073,51.96656930214913],[-120.28695027125396,51.96653202437412],[-120.28673644434829,51.96648988083752],[-120.2865080145241,51.96644757699042],[-120.28627951227898,51.96640582706819],[-120.28606568664154,51.96636368228015],[-120.28583674451431,51.96632528457945],[-120.28560772991777,51.96628744080143],[-120.28539390551124,51.966245294760185],[-120.28516481766601,51.96620801341887],[-120.2849358771508,51.96616961392001],[-120.28472131925598,51.9661330551249],[-120.28449237952556,51.966094654740814],[-120.28426336613353,51.96605681722025],[-120.28403442720739,51.96601841592219],[-120.28381987081364,51.9659818554409],[-120.28359093267234,51.96594345325769],[-120.28336140702486,51.96590952141077],[-120.2831318088312,51.96587614348317],[-120.28291740088419,51.965838463615924],[-120.28268846429187,51.96580005963176],[-120.2824587931026,51.96576724367719],[-120.2822286812415,51.965737780354296],[-120.28201412774523,51.96570121649588],[-120.28178460460205,51.96566728149552],[-120.28155449372487,51.965637816821435],[-120.2813249712737,51.965603880902144],[-120.28109537507476,51.96557050784241],[-120.28088038223383,51.965537294951446],[-120.28064953742641,51.96551341694129],[-120.28042001633551,51.96547947921254],[-120.28018990737317,51.965450011803775],[-120.27995979872213,51.965420543933945],[-120.27974414626699,51.96539235406929],[-120.27951403822196,51.96536288530614],[-120.27928334216767,51.96533788685666],[-120.27905323472203,51.9653084171704],[-120.27882253922056,51.96528341779553],[-120.27859184398385,51.965258417957465],[-120.27836159032223,51.96523006457843],[-120.27813089563253,51.965205063814665],[-120.27789961274715,51.96518453335596],[-120.27768388864456,51.96515690293978],[-120.27745319473114,51.96513190081525],[-120.2772219125535,51.965111368992616],[-120.27699121914634,51.965086365940664],[-120.27676052600394,51.96506136242549],[-120.2765292445272,51.96504082920877],[-120.27629855189106,51.96501582476613],[-120.27606785951971,51.96499081986015],[-120.2758365787439,51.96497028524951],[-120.27560588687882,51.964945279416106],[-120.27537512110037,51.964920836434786],[-120.27514384102255,51.96490030042998],[-120.27491314992567,51.96487529320572],[-120.2746818703074,51.964854756271215],[-120.27446511946432,51.96483494362849],[-120.27423428189518,51.96481105272932],[-120.27400359179293,51.96478604367895],[-120.27377231307719,51.96476550491408],[-120.27354103457954,51.96474496568379],[-120.27331034522516,51.96471995524159],[-120.27307906718707,51.9646994150817],[-120.27284837833908,51.96467440371204],[-120.27261768975598,51.964649391879156],[-120.27238641241901,51.96462885032525],[-120.2721557243423,51.96460383756493],[-120.27192496348634,51.9645793787131],[-120.27156432962266,51.964541696200286],[-120.27878046741992,51.991049734228575],[-120.23830173679931,51.99096674699033],[-120.23819911274113,51.991188858874956],[-120.2381967411873,51.99120674072975],[-120.23819496252064,51.99122015212059],[-120.23817812772045,51.99123675031542],[-120.23817575615539,51.99125463216895],[-120.2381733845884,51.99127251402225],[-120.23815603157038,51.99129301939795],[-120.23815373469787,51.991310337971875],[-120.2381513631188,51.99132821982375],[-120.2381346029652,51.99134425473243],[-120.2381323796008,51.99136101896773],[-120.23813000801017,51.99137890081849],[-120.23811309960426,51.99139605333893],[-120.23811020862307,51.99141785131375],[-120.23809389309659,51.99143053336842],[-120.23809166971208,51.991447297601816],[-120.23808937280587,51.991464616172195],[-120.23807246435064,51.99148176868534],[-120.23807024095527,51.99149853291754],[-120.23805288779859,51.991519038273665],[-120.23805051616672,51.991536920120346],[-120.23804814453293,51.99155480196667],[-120.23803130954735,51.99157140013521],[-120.23802893790379,51.99158928198063],[-120.23802671448615,51.99160604621035],[-120.23801047357192,51.99161816497315],[-120.23800750900325,51.99164051727843],[-120.2379906004475,51.991657669776934],[-120.23798837701162,51.99167443400499],[-120.23798615357403,51.99169119823273],[-120.23796924499015,51.99170835072746],[-120.23796687331362,51.991726232569384],[-120.23796457515722,51.99174356007394],[-120.23794707362264,51.99176518302499],[-120.2379447019339,51.991783064865615],[-120.23794247847395,51.99179982909096],[-120.2379401814898,51.991817147653045],[-120.2379232728389,51.99183430013913],[-120.23792149406238,51.99184771151844],[-120.23791912235865,51.99186559335734],[-120.23791689888465,51.99188235758097],[-120.23789999019925,51.99189951006269],[-120.23789776671615,51.99191627428547],[-120.23789480206932,51.99193862658201],[-120.2378924303497,51.99195650841901],[-120.23789005862811,51.991974390255564],[-120.23788768690457,51.99199227209183],[-120.2378853887026,51.992009599590844],[-120.2378684799554,51.992026752066025],[-120.23786610822012,51.99204463390104],[-120.23786373648294,51.9920625157358],[-120.2378613647438,51.99208039757009],[-120.23785899300269,51.99209827940422],[-120.23785662125962,51.99211616123788],[-120.23785424951463,51.992134043071204],[-120.2378518777677,51.99215192490431],[-120.23784950601882,51.99216980673704],[-120.2378616713412,51.99218841793248],[-120.23785929959435,51.992206299764845],[-120.23785692784553,51.9922241815969],[-120.23785448257048,51.99224261776541],[-120.2378527037561,51.992256029139035],[-120.23786486910393,51.992274640332745],[-120.23786249735369,51.992292522163844],[-120.23786012560151,51.9923104039947],[-120.23785775384736,51.99232828582509],[-120.23785538209127,51.99234616765527],[-120.23786799216914,51.99236142600417],[-120.23786547218077,51.99238042544833],[-120.23786310042502,51.99239830727782],[-120.23787526581707,51.992416918468194],[-120.23787289406334,51.99243480029733],[-120.23787044759733,51.99245324540378],[-120.23788261300787,51.99247185659244],[-120.23788009301951,51.99249085603516],[-120.23787772126373,51.992508737863204],[-120.23788988669287,51.99252734905028],[-120.23788744141476,51.99254578521463],[-120.23788506965901,51.99256366704202],[-120.23789782804477,51.99257780777058],[-120.23789545629155,51.992595689597835],[-120.23789293630162,51.99261468903867],[-120.23790510176687,51.99263330022238],[-120.23790258177897,51.992652299662964],[-120.23790021002365,51.992670181489025],[-120.23791237550752,51.99268879267112],[-120.23790992904397,51.992707237774276],[-120.2379074090539,51.99272623721376],[-120.23791957455651,51.99274484839415],[-120.23791720280312,51.99276273021917],[-120.23791542398682,51.99277614158765],[-120.23792751598248,51.99279530710303],[-120.23792514422959,51.99281318892736],[-120.23792277247478,51.99283107075144],[-120.23792040071801,51.992848952575144],[-120.2379180289593,51.99286683439851],[-120.237930046271,51.99288656318955],[-120.2379276745142,51.99290444501259],[-120.23792530275544,51.99292232683528],[-120.23792278275963,51.99294132627155],[-120.2379205592321,51.992958090479725],[-120.2379325765701,51.99297781926882],[-120.23793020480939,51.992995701090514],[-120.23792783304671,51.99301358291188],[-120.23792546128207,51.9930314647329],[-120.23792308951548,51.99304934655361],[-120.23792071774697,51.99306722837395],[-120.23791834597648,51.99308511019401],[-120.23791597420406,51.9931029920137],[-120.23791360242967,51.99312087383312],[-120.23791123065335,51.993138755652204],[-120.23790900711128,51.993155519857275],[-120.23790663533119,51.99317340167574],[-120.23790426354914,51.99319128349382],[-120.23790189176516,51.9932091653117],[-120.23789951997921,51.993227047129146],[-120.23788275900192,51.99324308197485],[-120.23788038720629,51.9932609637914],[-120.23787801540868,51.99327884560764],[-120.23787564360916,51.99329672742351],[-120.23787327180764,51.99331460923918],[-120.23787090000421,51.993332491054375],[-120.23786793524718,51.99335484332299],[-120.23786556343934,51.993372725137526],[-120.23786326515572,51.9933900526155],[-120.23786089334406,51.993407934429364],[-120.23784398404412,51.99342508688026],[-120.23784161222264,51.99344296869324],[-120.23783924039921,51.99346085050588],[-120.23783686857384,51.993478732318195],[-120.23783464498577,51.99349549651696],[-120.2378322731566,51.99351337832861],[-120.2378299013255,51.99353126013993],[-120.2378276042052,51.99354857867396],[-120.23782523237026,51.99356646048465],[-120.23780832299472,51.99358361292798],[-120.23780654411134,51.99359702428533],[-120.23780357930325,51.99361937654717],[-120.23780135569518,51.99363614074326],[-120.2377989838447,51.99365402255211],[-120.23779661199224,51.993671904360646],[-120.23777985080581,51.993687939185165],[-120.23777747894364,51.993705820992794],[-120.23777510707957,51.99372370280002],[-120.23777273521351,51.99374158460691],[-120.23777043687345,51.99375891207749],[-120.23775352740158,51.993776064509966],[-120.23775115552382,51.993793946315655],[-120.23774878364412,51.99381182812097],[-120.23774596703444,51.99383306276447],[-120.23774359515046,51.993850944569076],[-120.2377267603469,51.99386753371938],[-120.23772438845316,51.99388541552313],[-120.23772201655748,51.993903297326526],[-120.23771964465985,51.993921179129565],[-120.23771742100405,51.993937943319644],[-120.23770051144176,51.99395509574168],[-120.23769828777685,51.99397185993087],[-120.23769591586573,51.99398974173242],[-120.23769354395267,51.99400762353365],[-120.23769057905861,51.99402997578461],[-120.23767374297965,51.99404657386549],[-120.23767137105438,51.99406445566538],[-120.23766899912718,51.994082337464974],[-120.23765223773573,51.99409837226522],[-120.2376498657988,51.99411625406386],[-120.23764756857604,51.99413357258551],[-120.23764519663527,51.994151454383534],[-120.23764341767846,51.994164865731825],[-120.23762650799885,51.99418201813962],[-120.23762369130559,51.99420325277323],[-120.23762131935123,51.99422113456969],[-120.23761909564226,51.99423789875354],[-120.23760218592473,51.99425505115664],[-120.23759981395872,51.994272932951866],[-120.2375975155218,51.99429026041101],[-120.23759514355196,51.994308142205576],[-120.23757823379768,51.99432529460413],[-120.23757586181802,51.99434317639773],[-120.23757304508963,51.99436441102724],[-120.2375707478232,51.99438172954364],[-120.23755383803076,51.99439888193756],[-120.23755146603705,51.994416763729525],[-120.2375490940414,51.994434645521146],[-120.23754687029373,51.99445140970052],[-120.23754449829428,51.99446929149154],[-120.237527736708,51.994485326268375],[-120.23752595770134,51.994498737611046],[-120.23752358569072,51.99451661940089],[-120.23750615635501,51.99453768789761],[-120.23750378433418,51.9945555696865],[-120.23750141231137,51.994573451475],[-120.23749918853822,51.99459021565147],[-120.23748235335567,51.994606804755456],[-120.23747998132127,51.99462468654273],[-120.23747760928494,51.99464256832973],[-120.23746084760732,51.994658603094365],[-120.2374580308024,51.99467983771535],[-120.23745565875406,51.99469771950095],[-120.23743874879354,51.99471487187333],[-120.2374370432839,51.99472772887657],[-120.2374201333044,51.994744881245715],[-120.2374179094912,51.994761645418116],[-120.2374155374219,51.994779527201636],[-120.23739810911466,51.994800586736446],[-120.23739573703513,51.99481846851901],[-120.23739351320879,51.99483523268984],[-120.237376751426,51.99485126743966],[-120.23737437933494,51.99486914922101],[-120.23737200724189,51.99488703100206],[-120.23735457768453,51.99490809946915],[-120.23735279860725,51.99492151080419],[-120.23733603677627,51.99493754554685],[-120.23733373938532,51.994954864049994],[-120.23733136727093,51.99497274582886],[-120.23731460541234,51.99498878056771],[-120.23731223328822,51.99500666234561],[-120.23729487837625,51.99502716752557],[-120.23729250624194,51.995045049302504],[-120.23729020764195,51.995062376744116],[-120.23727329747464,51.995079529086716],[-120.23727166662447,51.99509182280757],[-120.23725483116124,51.995108411871044],[-120.23725245900607,51.99512629364596],[-120.23724949380937,51.99514864586411],[-120.23723273185288,51.995164680588566],[-120.2372305079461,51.99518144475126],[-120.237213597709,51.99519859708344],[-120.23721129906949,51.9952159245211],[-120.23720892689059,51.99523380629344],[-120.23719157183939,51.9952543114537],[-120.23718979269776,51.99526772278223],[-120.23718749523121,51.99528504127753],[-120.23717058493693,51.99530219360183],[-120.23716836099919,51.99531895776132],[-120.23716598879703,51.99533683953118],[-120.23714922673734,51.99535287424097],[-120.23714685452546,51.99537075600985],[-120.23714396279658,51.99539255388577],[-120.23712705244337,51.99540970620197],[-120.23712468021931,51.995427587969616],[-120.23712245625747,51.99544435212647],[-120.23710562060108,51.99546094116315],[-120.23710384142451,51.99547435248794],[-120.23710146918738,51.99549223425407],[-120.23708470704409,51.99550826895227],[-120.23708174173527,51.99553062115876],[-120.23707951775164,51.99554738531326],[-120.23707714550052,51.99556526707774],[-120.23706023505393,51.99558241938166],[-120.23705793633313,51.995599746810605],[-120.23705556407032,51.99561762857377],[-120.23705319180554,51.995635510336726],[-120.23705081953884,51.99565339209932],[-120.23703405731484,51.995669426787906],[-120.23703168503842,51.99568730854958],[-120.23702938748686,51.995704627035536],[-120.23702701520662,51.99572250879657],[-120.23702464292438,51.9957403905573],[-120.2370077323891,51.995757542850846],[-120.23700536009704,51.99577542461062],[-120.2370029878031,51.99579330637006],[-120.2370007637757,51.995810070519255],[-120.23699839147795,51.99582795227815],[-120.23699601917824,51.99584583403659],[-120.23699364687657,51.99586371579478],[-120.23699142284201,51.995880479942834],[-120.23698905053658,51.995898361700384],[-120.2369866782292,51.995916243457565],[-120.23698430591988,51.995934125214525],[-120.23698193360859,51.995952006971144],[-120.23697956129537,51.99596988872735],[-120.23697718898019,51.99598777048329],[-120.2369602783301,51.99600492276624],[-120.2369579060051,51.99602280452123],[-120.23695553367814,51.99604068627593],[-120.23695256826672,51.99606303846879],[-120.23695019593538,51.99608092022275],[-120.23694789714445,51.99609824764202],[-120.2369599896369,51.99611741320412],[-120.23695761730565,51.99613529495737],[-120.23695531851482,51.99615262237602],[-120.23695294617971,51.9961705041286],[-120.23695050030021,51.99618894021521],[-120.23694820150371,51.99620626763289],[-120.23694575562016,51.99622470371881],[-120.23694338327722,51.99624258547011],[-120.23694101093233,51.996260467221134],[-120.23693863858547,51.99627834897178],[-120.23693626623667,51.996296230722166],[-120.23693389388595,51.99631411247213],[-120.23693152153326,51.99633199422178],[-120.23692914917862,51.99634987597119],[-120.23692677682205,51.99636775772024],[-120.236938942923,51.99638636894586],[-120.23693657056846,51.996404250694575],[-120.23693479130125,51.996417662005875],[-120.23693241894328,51.996435543754004],[-120.23693004658337,51.99645342550177],[-120.23692767422152,51.996471307249266],[-120.23692515358489,51.996490306605544],[-120.23692278121904,51.99650818835238],[-120.23693494735754,51.996526799576195],[-120.23693257499369,51.99654468132264],[-120.2369302026279,51.99656256306871],[-120.2369276819871,51.996581562423685],[-120.23692530961728,51.99659944416912],[-120.23692293724551,51.99661732591426],[-120.23693510341458,51.99663593713626],[-120.23693273104485,51.99665381888109],[-120.23693035867319,51.99667170062545],[-120.23692798629956,51.99668958236958],[-120.23692561392397,51.996707464113406],[-120.23693770538965,51.99672663860865],[-120.23693533301605,51.99674452035205],[-120.2369329606405,51.99676240209513],[-120.23693043998934,51.99678140144678],[-120.23692806760975,51.996799283189226],[-120.23692569522824,51.99681716493134],[-120.23693786145434,51.996835776149915],[-120.23693548907485,51.996853657891634],[-120.23693311669342,51.996871539633034],[-120.23693067076611,51.996889975708136],[-120.23692837192469,51.996907303114945],[-120.23694105772881,51.996921998230604],[-120.23693868534593,51.99693987997106],[-120.2369363129611,51.99695776171122],[-120.23693394057436,51.99697564345104],[-120.23693156818564,51.996993525190526],[-120.23694358618941,51.99701325401439],[-120.23694121380261,51.99703113575348],[-120.23693884141386,51.99704901749236],[-120.23693632074865,51.997068016839485],[-120.2369484870494,51.99708662805285],[-120.23694611466061,51.997104509790965],[-120.23694374226986,51.99712239152876],[-120.23694136987717,51.997140273266226],[-120.23695346147,51.997159447752644],[-120.23695108907928,51.99717732948975],[-120.23694871668663,51.99719521122649],[-120.23694619601727,51.99721421057144],[-120.23694382362059,51.997232092307506],[-120.23695658306875,51.99724623308352],[-120.2369542106746,51.997264114819345],[-120.23695176473416,51.99728255088866],[-120.23696393110146,51.99730116209693],[-120.23696155870732,51.99731904383208],[-120.23695918631122,51.997336925566906],[-120.23695666563826,51.99735592490971],[-120.23696883202814,51.997374536116446],[-120.23696631135721,51.99739353545893],[-120.23696393895901,51.99741141719259],[-120.23696156655886,51.997429298926015],[-120.23697373297136,51.997447910131015],[-120.23697136057326,51.99746579186407],[-120.23696891344255,51.99748423687141],[-120.23698167297277,51.99749837764153],[-120.23697915230026,51.99751737698223],[-120.23697677990059,51.997535258714315],[-120.23698894634921,51.997553869916025],[-120.23698650040723,51.99757230598137],[-120.23698412800756,51.99759018771285],[-120.23698175560598,51.99760806944392],[-120.23699392207708,51.99762668064389],[-120.23699140140248,51.9976456799828],[-120.23698902900084,51.997663561713146],[-120.23700104721564,51.99768329051962],[-120.23699867481591,51.99770117224959],[-120.23699689551485,51.99771458354687],[-120.23700906202217,51.99773319474353],[-120.23700661489244,51.99775163974735],[-120.23700424249128,51.997769521476435],[-120.23701626074221,51.99778925027951],[-120.23701388834297,51.99780713200818],[-120.23701151594179,51.99782501373657],[-120.23702360894185,51.997844179263474],[-120.23702123654266,51.997862060991494],[-120.23701945724196,51.997875472287184],[-120.23703162380392,51.99789408347896],[-120.23702969623015,51.99790861238248],[-120.23702717555484,51.9979276117175],[-120.23703934213465,51.997946222907586],[-120.23703696973632,51.997964104634356],[-120.23703452260544,51.99798254963517],[-120.23704668920374,51.99800116082349],[-120.23704416853049,51.998020160157395],[-120.23704179613011,51.99803804188311],[-120.23705396274704,51.99805665306991],[-120.23705151680433,51.99807508912866],[-120.23704973750426,51.9980885004224],[-120.23706190413868,51.99810711160756],[-120.23705938346595,51.998126110940035],[-120.23707155011499,51.99814472212355],[-120.2370690294443,51.998163721455654],[-120.23706665704631,51.99818160317962],[-120.237078823714,51.99820021436146],[-120.23707637658754,51.998218659359395],[-120.23707385591464,51.998237658690414],[-120.23708602260108,51.99825626987056],[-120.23708424330421,51.9982696811628],[-120.23709633645986,51.99828884667465],[-120.23709396406629,51.9983067283974],[-120.23709159167075,51.99832461011971],[-120.23710420321261,51.998339868473685],[-120.2371018308195,51.998357750195694],[-120.23711384927704,51.998377478978554],[-120.23711147688583,51.998395360700194],[-120.23710910449266,51.99841324242156],[-120.23712178961043,51.998427946439094],[-120.23711926894525,51.998446945767604],[-120.23713143570956,51.998465556939614],[-120.23712906332076,51.998483438660244],[-120.2371266173859,51.998501874713924],[-120.23713878416872,51.99852048588428],[-120.23713626350559,51.99853948521176],[-120.23714843030304,51.99855809638045],[-120.23714650273887,51.998572625277674],[-120.23715866954996,51.99859123644474],[-120.23715622243537,51.998609681438154],[-120.23716824098712,51.998629410211066],[-120.23716646170035,51.99864282150026],[-120.23717855499584,51.998661986997405],[-120.2371761826157,51.99867986871604],[-120.23718879429012,51.99869512705604],[-120.23718627363871,51.99871412638173],[-120.23719844050636,51.99873273754238],[-120.23719599340066,51.99875118253439],[-120.2372080120095,51.998770911300795],[-120.23722077199452,51.998785052028765],[-120.23721891917408,51.99879901765019],[-120.23723093780654,51.99881874641338],[-120.23724295644988,51.99883847517497],[-120.23724058408655,51.99885635689215],[-120.23725267628784,51.99887553131887],[-120.2372507487444,51.99889006021384],[-120.23726284214568,51.99890922569805],[-120.23727500910057,51.99892783684748],[-120.23727308156228,51.9989423657422],[-120.23728510025884,51.998962094497294],[-120.23728272790612,51.99897997621341],[-120.23729541324765,51.99899468020463],[-120.23730743196877,51.999014408956604],[-120.23730505962239,51.99903229067236],[-120.23731715308708,51.9990514561485],[-120.23731463247105,51.999070455471205],[-120.23732783739241,51.99908124336204],[-120.23734000442317,51.99909985450191],[-120.23733755735682,51.999118299491094],[-120.23734957613118,51.99913802823648],[-120.23734720379534,51.99915590995127],[-120.23735929731292,51.99917507542101],[-120.23735751806272,51.99918848670684],[-120.2373695368655,51.999208215448895],[-120.23736760934634,51.999222744341694],[-120.23737977643367,51.999241355475014],[-120.23737740410459,51.99925923718882],[-120.23738949647803,51.999278411594545],[-120.23738697588043,51.99929741091505],[-120.2373997360779,51.99931155161681],[-120.23739729021112,51.99932998766307],[-120.23739491788442,51.99934786937591],[-120.23740708501839,51.999366480504335],[-120.23740456442336,51.99938547982382],[-120.23740219209662,51.99940336153592],[-120.23741435924923,51.99942197266273],[-120.23741183865417,51.99944097198145],[-120.23740946632742,51.99945885369283],[-120.2374070939987,51.99947673540393],[-120.23741926117387,51.999495346529024],[-120.23741688884719,51.9995132282398],[-120.23741451651857,51.9995311099502],[-120.237412144188,51.999548991660205],[-120.23740977185547,51.999566873370085],[-120.23740739952098,51.99958475507946],[-120.23740502718455,51.99960263678862],[-120.23740258011749,51.99962108177113],[-120.23740028250585,51.99963840020588],[-120.2373979101636,51.999656281913985],[-120.23739553781937,51.999674163621755],[-120.2373931654732,51.99969204532928],[-120.23739079312509,51.99970992703647],[-120.23738842077502,51.999727808743316],[-120.237386048423,51.999745690449785],[-120.23738367606902,51.99976357215601],[-120.23738130371311,51.99978145386187],[-120.23737893135525,51.99979933556746],[-120.23737655899545,51.999817217272664],[-120.23737418663367,51.99983509897754],[-120.23737181426995,51.99985298068216],[-120.23736944190429,51.999870862386395],[-120.23736706953669,51.999888744090335],[-120.23706804255107,52.00390758999832],[-120.23921359731277,52.00472678473348],[-120.242503559746,52.00817680790828],[-120.24304199834219,52.00853229792919],[-120.24377026792786,52.00933324851675],[-120.2510514096021,52.011725641664],[-120.25750809869626,52.013826021539316],[-120.26430085142017,52.016268469355346],[-120.27083865083189,52.01865107222902],[-120.27473653146458,52.01884982518196],[-120.27947193292488,52.01824865712342],[-120.28093532448547,52.018032374442534],[-120.28569650824778,52.016232460791464],[-120.2936646007253,52.0154269467454],[-120.2954338927041,52.015443918594116],[-120.30247420177643,52.0182472633814],[-120.30996611163921,52.021074725679085],[-120.31300912389248,52.02165337722631],[-120.31392976524887,52.02211458275351],[-120.35149189421563,52.00913620259688],[-120.37413610340134,52.02303389270675],[-120.37255298319128,52.02485514053275],[-120.3715123347809,52.025879544398045],[-120.3697382963267,52.02781626976083],[-120.36813268098295,52.02992095192346],[-120.3659924684116,52.03162990103515],[-120.36338540855483,52.03298523175311],[-120.36057887991187,52.034859965185625],[-120.35943090906017,52.03862196097289],[-120.35819663461524,52.041018082699274],[-120.35679484786642,52.04312420241821],[-120.35676040178177,52.04575465871179],[-120.35730093178016,52.04666756043522],[-120.35903748697771,52.049875312665264],[-120.35974511473884,52.051983094663235],[-120.35990109387625,52.054728028427796],[-120.3600637352287,52.058098130002264],[-120.35955131169841,52.06237717446976],[-120.35702813736864,52.06453628379509],[-120.35440303928068,52.06601263903269],[-120.35262816051817,52.06748680550777],[-120.34954731778065,52.06987093218405],[-120.35037339005946,52.07050597188932],[-120.35072052704093,52.073129805219324],[-120.3503095482774,52.07707184058046],[-120.34842431139903,52.07848823132864],[-120.34638661773299,52.07893651198794],[-120.34637598036474,52.08036732956121],[-120.34673226459347,52.081682880134686],[-120.34753444353437,52.083739653833405],[-120.34982972722699,52.08637924519465],[-120.34952531801402,52.088489650473015],[-120.34811458639417,52.0905367376625],[-120.34679940702999,52.09218751000898],[-120.32341911401663,52.09243357611721],[-120.32457996700705,52.15424149108595],[-120.32826908047772,52.15466934997582],[-120.33725491237908,52.155924225808796],[-120.34581184402501,52.155856000890886],[-120.35152669038003,52.15246827714677],[-120.35595067756495,52.148612205791615],[-120.35980209288724,52.14474934829066],[-120.36451105916123,52.14083495955352],[-120.37077374567738,52.13704523497755],[-120.37943075839935,52.135835170647894],[-120.38719626536309,52.13742156170624],[-120.39412461790644,52.14026179912007],[-120.40049031716735,52.142577680420985],[-120.40678941620934,52.14564123578848],[-120.40805790229201,52.14718791898022],[-120.40631534262032,52.15215098127752],[-120.4028998516931,52.15766827451923],[-120.40078134112981,52.16314498833823],[-120.39784828286277,52.168214335412536],[-120.39698932988712,52.16951548337836],[-120.39064381541073,52.17324694975084],[-120.39039096299545,52.17531026486077],[-120.39130744556614,52.176740992268286],[-120.3935234101942,52.17857620787623],[-120.3962341740296,52.185440749051565],[-120.40045842366843,52.188229159958745],[-120.40067554387664,52.188368464116266],[-120.40373004506468,52.1902053044745],[-120.40369913819964,52.192147763503286],[-120.40192863584419,52.192653465098424],[-120.40015790791699,52.19282005128961],[-120.39829076541412,52.194071157622325],[-120.3971663479404,52.19492136090468],[-120.39325810174508,52.19490701880058],[-120.38758595124885,52.19557155877917],[-120.38532815044766,52.197676224084596],[-120.38504798415623,52.198475173904804],[-120.38520848400564,52.2000693220711],[-120.38350816050949,52.20240688976219],[-120.38331593470052,52.20354694739656],[-120.38459936981545,52.205438090066934],[-120.386058839136,52.20767291892942],[-120.3864168740939,52.20967141884407],[-120.3888112481055,52.21116326138498],[-120.39244153879456,52.21129126871007],[-120.39580142119644,52.2096487741184],[-120.39823523520099,52.208228937619864],[-120.4011069380819,52.20989774494813],[-120.40406784703768,52.21133349367428],[-120.4058323006975,52.211221059321275],[-120.40863936134117,52.21043763827065],[-120.41188798421203,52.21021872864031],[-120.41487918833909,52.20971567696418],[-120.41536873929319,52.20979614581929],[-120.4202282842702,52.2111079146876],[-120.42459256219664,52.212271277149],[-120.42513452634944,52.212629761616306],[-120.42661021510854,52.21315983747487],[-120.42910139687437,52.21493883716195],[-120.42852802816783,52.215850215214516],[-120.42730781394458,52.21664547526894],[-120.42655131415043,52.21795004787049],[-120.43134173306335,52.22209022348583],[-120.43432552000216,52.22758706799799],[-120.43632443263323,52.232740584986544],[-120.43981730780908,52.236807625289934],[-120.44364819769619,52.24088289810559],[-120.45077412247608,52.24440106096325],[-120.45706894016814,52.24752350801294],[-120.46279906207839,52.25058027488927],[-120.46750100907329,52.2545455907276],[-120.47015171507968,52.25878758418367],[-120.47542298440389,52.26291745432371],[-120.47564523658232,52.265667349109336],[-120.47629469031712,52.26680488102182],[-120.48175679280978,52.27002983913544],[-120.4874846661302,52.273716393931224],[-120.48960483053115,52.2751021426885],[-120.48904039245704,52.2764088682157],[-120.48631306101414,52.2789686096014],[-120.48639611611235,52.28039334130506],[-120.48756668837842,52.28114461565187],[-120.49462173315243,52.28448743508623],[-120.4933946732719,52.28579299307771],[-120.48490427142234,52.28826376343206],[-120.48274842677068,52.28945691654906],[-120.48145859350672,52.294819247724796],[-120.48052478043921,52.29613024899721],[-120.47349044486494,52.29940345337974],[-120.46741160221964,52.3024560258792],[-120.46627115525382,52.303764925015045],[-120.46633032896602,52.30514129388821],[-120.46782656932216,52.306458183773685],[-120.47310082927547,52.30876850426535],[-120.47724359276064,52.31312843027184],[-120.48326476121545,52.31744443409222],[-120.489735656703,52.32044226349477],[-120.49614691962111,52.32287463767185],[-120.50225781256607,52.32581801412572],[-120.50865785339197,52.3289282198648],[-120.51080990660456,52.329279312801184],[-120.51305618343568,52.32923790889235],[-120.52191512563432,52.32681601825389],[-120.5261354912362,52.32666817084152],[-120.53263296559614,52.32972085436557],[-120.53659838352367,52.33391242667719],[-120.53686480137343,52.334486049979766],[-120.52972592440098,52.33822209252032],[-120.5230840117425,52.340474594427846],[-120.51689250132814,52.34335409584496],[-120.5164291253499,52.34386624030519],[-120.51779897187596,52.34735760998022],[-120.52427120559213,52.351441562501286],[-120.53115338216132,52.353816307689485],[-120.53180262038501,52.35427982351029],[-120.53104686721228,52.35558493668085],[-120.52953834223155,52.35689274714939],[-120.52844413552658,52.36213901428213],[-120.5285065373346,52.367455041932644],[-120.52730886039656,52.37281557050943],[-120.52315179755831,52.37799977656454],[-120.52002772870804,52.383294516251894],[-120.51660731192923,52.38847567485202],[-120.51152306388808,52.39199270394468],[-120.50476236276644,52.39568029333545],[-120.49923301440097,52.3987367000178],[-120.49142270509235,52.40218435792321],[-120.48254589535466,52.4031117131441],[-120.47402988615174,52.404101137622895],[-120.46736831840738,52.40720567013114],[-120.46133276064569,52.411176857439344],[-120.45839718158422,52.41378244020073],[-120.45808117154587,52.41875794300641],[-120.45879934053532,52.420408535404675],[-120.4600840349909,52.42167633222297],[-120.4622261201832,52.42271236871135],[-120.47034126118429,52.42464250265957],[-120.47170963392873,52.427331951096555],[-120.47567849384814,52.43140725379036],[-120.48019524648976,52.435480307521],[-120.47980500185379,52.436792974138406],[-120.48092203588446,52.437993477167545],[-120.48296863820273,52.43863155720918],[-120.49156692810641,52.43970430163598],[-120.49592527584745,52.44064517846062],[-120.50150155440947,52.44524023380682],[-120.5030702087633,52.44661475777636],[-120.50938412820256,52.44938242139472],[-120.50937946386038,52.45069200455595],[-120.51003079969429,52.4520747633427],[-120.51455951528025,52.455747608430805],[-120.51511449819499,52.45614932794732],[-120.5188408400265,52.45754001943054],[-120.52754607898707,52.457458603895276],[-120.53613441118466,52.458295744394],[-120.54187770829597,52.461975035706466],[-120.5427766201174,52.46735629073441],[-120.54170200804248,52.472205801332244],[-120.5353768119665,52.47646281495497],[-120.5334950404477,52.47776499958578],[-120.53327167497118,52.48044986592182],[-120.53250781184562,52.48249883246095],[-120.52706561478232,52.485613178928425],[-120.52129754611958,52.48918749956401],[-120.5159293230941,52.493331316347145],[-120.51001707414414,52.49616533492059],[-120.50332019815959,52.498647200045],[-120.49665931124417,52.50061100350435],[-120.48803516671875,52.50125818865206],[-120.47906312276093,52.50173027092587],[-120.47051382178944,52.50385987095548],[-120.46169727248787,52.50438189221177],[-120.4530867464421,52.50525486842897],[-120.45064592223564,52.50604124077885],[-120.4461933394087,52.51001678048087],[-120.44321981255194,52.51434225156286],[-120.43960224586988,52.519633019180766],[-120.4345998756147,52.52303211674853],[-120.42783535603148,52.52482429442012],[-120.41901281618219,52.52660453685909],[-120.41093702048683,52.52821819401343],[-120.40368955128322,52.5297227490059],[-120.39487992620843,52.531273620100414],[-120.38615311816321,52.531620273779815],[-120.37850152377682,52.53009158515012],[-120.37180021563225,52.527307965843875],[-120.36478567337697,52.52590020719078],[-120.3638037092447,52.52852593385892],[-120.35999830175929,52.53358184726598],[-120.35628880417984,52.53778944939265],[-120.35199266756908,52.54284497351565],[-120.34609181049589,52.54949668013877],[-120.33947144577748,52.55327568716938],[-120.33527797633094,52.5571904712021],[-120.33211840107384,52.561689569330404],[-120.32923343077124,52.56623739732703],[-120.32531505348886,52.57152922016092],[-120.32303394628718,52.57408349772511],[-120.32049878750212,52.57486000559646],[-120.31957230058586,52.57435323742253],[-120.31962066408467,52.5737647117348],[-120.31934809728762,52.57380707202595],[-120.31881540785776,52.573686077791436],[-120.31867153710135,52.57365263077897],[-120.31855308193798,52.57320382516013],[-120.31851601708203,52.57247675672848],[-120.31828688472363,52.57174425737302],[-120.31808284703048,52.57126991041866],[-120.31787222178522,52.570845274246395],[-120.31784269925366,52.57050875150381],[-120.31782368224499,52.57031666925166],[-120.31767556871984,52.56964434161711],[-120.31733916738627,52.56916184170411],[-120.31696971354206,52.569152249722926],[-120.31674803212275,52.56925837257008],[-120.31668167940417,52.569423233462615],[-120.31653728517738,52.56961746092361],[-120.31617554190025,52.570220495912615],[-120.31568591010556,52.57089319178728],[-120.31475473379348,52.571093421460866],[-120.31373788484888,52.57126866322243],[-120.31350716483331,52.57267194487124],[-120.31375868223752,52.57323520163944],[-120.3139102806488,52.573545644489656],[-120.31403719658273,52.57404209655844],[-120.31406620647171,52.574158763401016],[-120.31398119477963,52.57468759702881],[-120.31390737462759,52.57513208628333],[-120.3135969476557,52.575683080552935],[-120.31348705183507,52.57617584115891],[-120.31337615215607,52.576452660487],[-120.31313189856334,52.57751064181821],[-120.31326953190802,52.578149853260136],[-120.31329872725854,52.57848860972837],[-120.31307698565199,52.57904169283102],[-120.31273018823973,52.57941943733163],[-120.3126262264899,52.579755623136194],[-120.31207943112297,52.580299012588576],[-120.31164728134311,52.580760859351116],[-120.31140334870736,52.58103398695369],[-120.31083725854839,52.58127564683816],[-120.31041619267687,52.58143049294895],[-120.3097765326986,52.581444224614025],[-120.30849773161448,52.581467762802205],[-120.30796919466074,52.58187316414874],[-120.30768780616867,52.581981410989755],[-120.30724801541176,52.582277011067305],[-120.30664936600236,52.58254010773045],[-120.3058330896311,52.58265482387586],[-120.30530478013345,52.582723450593036],[-120.30451760226067,52.58284238702905],[-120.30418455673662,52.58300432259579],[-120.3040329297723,52.58325215740277],[-120.30400038469494,52.583720026123395],[-120.30412945559824,52.583976521614645],[-120.3041630074464,52.584170442070445],[-120.30427351068205,52.58456659375761],[-120.30428850510796,52.58467695562057],[-120.30429978464744,52.584815255908964],[-120.30429959469544,52.584928248654165],[-120.30436628852031,52.58543076211442],[-120.30401512823184,52.58584032309023],[-120.30382268952685,52.58606030000087],[-120.30366733536043,52.58633606325126],[-120.3035111323771,52.586506644937415],[-120.3032168785024,52.58682284226116],[-120.3026025376594,52.587203220880305],[-120.30208900692655,52.587383320803795],[-120.30171194572532,52.587652735985664],[-120.30142678766526,52.58778889664987],[-120.30085901537063,52.588153554037476],[-120.30075679709685,52.58847576700217],[-120.3007695990732,52.58882553782247],[-120.30077076085689,52.58903979681408],[-120.30073686093576,52.58962903833421],[-120.300747216487,52.58966271150975],[-120.30055026134954,52.589804876521676],[-120.30010145150997,52.58994428210682],[-120.29959008898851,52.58999628315891],[-120.29931732441517,52.59003915923734],[-120.29891330641993,52.59006493429875],[-120.2984777259292,52.590104896649876],[-120.29793234137033,52.59018952579662],[-120.29717314855912,52.59031990945882],[-120.29608732839723,52.59022909039526],[-120.29499723150379,52.58961349067306],[-120.2947285279938,52.589180345197526],[-120.29470358593043,52.58914483246861],[-120.29402002075697,52.588930318447765],[-120.2933372739807,52.58848700922194],[-120.29243128884893,52.58827170979075],[-120.291474168349,52.58821751019168],[-120.290679471458,52.588725611311546],[-120.29026971102559,52.58923964713806],[-120.28929097292632,52.58934741766586],[-120.28833175697625,52.58919750251018],[-120.28720855647552,52.588942276653455],[-120.28678377994282,52.58890120614825],[-120.2866187954849,52.589025801795486],[-120.28636547625334,52.58947890598346],[-120.28582000065488,52.58956404163436],[-120.28475058637416,52.589572863523856],[-120.28387294129156,52.58958996931806],[-120.28384358141886,52.590143447961076],[-120.28424266444958,52.590710641938514],[-120.28490306610719,52.591321013128685],[-120.28503526795306,52.59144219316689],[-120.28508107746484,52.59176603645005],[-120.28527344323537,52.59232590060283],[-120.28523380794394,52.593957231623264],[-120.28518372171074,52.59477732207061],[-120.28489870976559,52.59568989766781],[-120.28560039458634,52.5966587365284],[-120.28621512868465,52.597167333854486],[-120.28664582709727,52.59816560426084],[-120.2870825322524,52.59889654583577],[-120.28753917073267,52.599255710133356],[-120.28764698453602,52.59933745804486],[-120.28798305556217,52.59993302474136],[-120.28800635902908,52.59998082725588],[-120.28836990664901,52.60070424409471],[-120.28804903589675,52.601552095458665],[-120.28766162711278,52.6018974284879],[-120.28725849929161,52.60224929434218],[-120.28688891426394,52.60290584752348],[-120.28650938970269,52.60374801364833],[-120.28624326623607,52.60463002968101],[-120.286149428037,52.60522194562822],[-120.28610434154625,52.60600460132014],[-120.28596403790681,52.60649979405804],[-120.28568103627401,52.60750804379002],[-120.28608610528923,52.60814297579626],[-120.28635299522227,52.60903481039827],[-120.28712870393913,52.609673286951015],[-120.28742362287939,52.60991038138299],[-120.28770045362144,52.61083924600956],[-120.28602210300396,52.611625056435756],[-120.28538732727972,52.61226579916084],[-120.28509108743317,52.61281687208186],[-120.2846829136297,52.61320559175057],[-120.28438563342928,52.61365316325592],[-120.28402485705547,52.61424267424669],[-120.28300448397913,52.61510231451188],[-120.28114616617673,52.615455321998496],[-120.27918493869493,52.61557836103313],[-120.27740240498262,52.61569721302971],[-120.27583934653408,52.61572897868563],[-120.27398663908825,52.61581734660549],[-120.27221056148298,52.61577675538297],[-120.27074188095396,52.616101519191005],[-120.26798899632077,52.61603815870739],[-120.26596594761128,52.616289501901605],[-120.26439851665445,52.616353519497274],[-120.26302049848694,52.61677653938093],[-120.2618658652988,52.61708348335969],[-120.26048719948278,52.61751094154851],[-120.25977966476994,52.61769425356785],[-120.25897974118685,52.61779149193227],[-120.25804309819375,52.61791178531397],[-120.2522571787399,52.617879106609855],[-120.25192219167948,52.617941304097975],[-120.25089326493368,52.61786414631371],[-120.2496941467307,52.61783817347953],[-120.24793632146434,52.61788189556265],[-120.24675478803765,52.618277328755596],[-120.2458880349228,52.61876081325271],[-120.24432830808567,52.619428791550874],[-120.24316505215448,52.620129265266534],[-120.24273045966031,52.62049013286669],[-120.2415337401793,52.62121817692793],[-120.24057774753248,52.621591516569175],[-120.24014083091973,52.62174872728975],[-120.23659310040512,52.62218175928463],[-120.2356995160989,52.622752685735996],[-120.23496081083124,52.6240475721871],[-120.23489325188959,52.62510013838043],[-120.23471941860676,52.62628014031776],[-120.2343387386405,52.62712155995037],[-120.23435139993217,52.628570541204354],[-120.23396730498065,52.62954729737981],[-120.23400991196829,52.63066378172816],[-120.23394555639545,52.63158212071056],[-120.2337835647486,52.63256366816737],[-120.23374810766506,52.63315734024909],[-120.23379620888568,52.63401264400877],[-120.23386463636585,52.63460695385611],[-120.23538233116753,52.636350727648505],[-120.23656821155393,52.63802241091399],[-120.23856502280657,52.63885760306696],[-120.23973824811775,52.63908029142343],[-120.24101224410629,52.639437249338116],[-120.24229452975882,52.6397327640431],[-120.24358615440872,52.63995899801619],[-120.24507872377893,52.64012710522303],[-120.24604734245902,52.640214814869964],[-120.24745131397209,52.64037907801461],[-120.24829287478265,52.64052797052409],[-120.24871959153965,52.64066876300831],[-120.24943722382385,52.64140806278389],[-120.249260866547,52.64238834339413],[-120.25041908898699,52.64294470128453],[-120.25182589710468,52.642978050496964],[-120.25319516153759,52.643401403939144],[-120.25501959963654,52.643643639178656],[-120.25651598421639,52.64400574383228],[-120.25862592063481,52.64477753483313],[-120.25967525343623,52.6452609646151],[-120.2611535963627,52.645758184569644],[-120.26330131057072,52.6461387413739],[-120.26565965547553,52.64638906370712],[-120.26648704066059,52.64686657176791],[-120.26772634242408,52.6478180296027],[-120.26832350967095,52.64868339494126],[-120.26860300744929,52.649480292856175],[-120.26940761499925,52.650350217592226],[-120.27130156435943,52.651185353674364],[-120.27396883850192,52.65190492001966],[-120.2753585371897,52.65206813116915],[-120.27584476135111,52.652320802546484],[-120.27642019821269,52.65246204099558],[-120.27728182889149,52.65290740616008],[-120.2782508068991,52.6532169174743],[-120.27925269471777,52.65372480727055],[-120.28060298387975,52.654072106728556],[-120.28158087924517,52.654093049430685],[-120.28320405400734,52.65384425697694],[-120.28422272271828,52.65389360367572],[-120.28515914805153,52.6540024382189],[-120.28701125714277,52.653819335925036],[-120.28834615832373,52.65350351211653],[-120.28994660372945,52.65331310998676],[-120.29056519718446,52.65335406669769],[-120.29157558712156,52.65346534444086],[-120.29227113125167,52.65382038320884],[-120.29261716083661,52.65434498197345],[-120.29251458050918,52.65511355403292],[-120.2917835233433,52.65546964408828],[-120.29042406386273,52.65552401147725],[-120.28751428140066,52.65617149165034],[-120.2871976171585,52.656873361985596],[-120.28639029755644,52.65768838689132],[-120.28543343438935,52.65806543532671],[-120.28407144918548,52.658804933771734],[-120.2831045692106,52.65981226950849],[-120.28195464688343,52.66018770587718],[-120.28070498438001,52.6606420171694],[-120.2801970865417,52.661216995760086],[-120.280093906991,52.66221041838777],[-120.2795318206043,52.66285695927506],[-120.27885240960315,52.66326948166943],[-120.27850649690558,52.66363314318652],[-120.27783450057707,52.6638790528644],[-120.27715950586102,52.664147300313296],[-120.27605457668649,52.66440738590463],[-120.27514969827438,52.66472731559686],[-120.27419651484067,52.664963910942646],[-120.27321296968556,52.665538026394835],[-120.27206300810072,52.66580093178158],[-120.2712981740587,52.666184485781876],[-120.27038204947654,52.66647684365494],[-120.26994802168677,52.666720900444616],[-120.26954205836884,52.66719908935117],[-120.26912060208936,52.66790364998794],[-120.26898126334916,52.66849949943484],[-120.26871892907758,52.66979094930868],[-120.26901933211307,52.67109822581561],[-120.26919742426567,52.6719873905269],[-120.2688728550166,52.673299395958374],[-120.26741385714486,52.67420206414738],[-120.26646541887574,52.6750662676483],[-120.26528302796414,52.67590098198686],[-120.26439493030382,52.67653650457893],[-120.26383467061372,52.677276959131845],[-120.26358538336743,52.677472728858454],[-120.2630785552409,52.67814721610142],[-120.26296234165176,52.6784591595409],[-120.26288698997234,52.67879896356595],[-120.26300005536743,52.679285772431584],[-120.26270688440947,52.68025130494538],[-120.26247368926076,52.680991517361925],[-120.26234921355984,52.68147564842548],[-120.26227047397906,52.68195134936766],[-120.26215326825942,52.68238129848031],[-120.26413841048416,52.68365441846714],[-120.26513635159536,52.68430668095866],[-120.26573326544059,52.684623288669314],[-120.26684545401189,52.68520018646475],[-120.26709443839388,52.68545022861521],[-120.26748290171281,52.68565820101713],[-120.26780604544824,52.68579887401356],[-120.26819712421951,52.68587654041304],[-120.26846305324808,52.68600034332774],[-120.26905469719338,52.68635658473854],[-120.26958690018793,52.68682347091802],[-120.2699862666895,52.687061203252036],[-120.27029928103947,52.68749933911687],[-120.2706025262686,52.68778857278657],[-120.27126822097614,52.688480133030446],[-120.27127308854132,52.689220230019124],[-120.2712185699633,52.68962683871387],[-120.2713227069073,52.68984839936137],[-120.27138758282246,52.69025186941735],[-120.2716527686683,52.69060332254585],[-120.27201536949548,52.690893770693826],[-120.27275368751913,52.69170975696125],[-120.27307549779485,52.691971781539124],[-120.2738077266119,52.69227866525526],[-120.27485914340016,52.69275635776706],[-120.27544307633099,52.693171206359274],[-120.27602709481194,52.693585497859964],[-120.2763296331884,52.69399161384022],[-120.2763748766436,52.694764040780875],[-120.27634733246697,52.69519165154673],[-120.27633475545856,52.695507547375165],[-120.27642987320284,52.69601875190461],[-120.27701872717519,52.6966193545049],[-120.2788651352884,52.698047830471424],[-120.28144716490331,52.699982277216726]]]}' - )), 4326)))); - -INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Thompson','3','3- Thompson','AR10100000','WHSE Admin Boundary',4 - , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.30072273684466,50.44604624584945],[-122.3007472211895,50.445790632605345],[-122.30076549816461,50.44561072453175],[-122.30078548691259,50.445431440378236],[-122.30081246219477,50.44525295613449],[-122.300874464762,50.44507732305143],[-122.30093119210666,50.44490151391104],[-122.30096876228131,50.44472281618044],[-122.30102895967062,50.44454768056163],[-122.30113778888564,50.44438148238164],[-122.30126910637728,50.4442205331061],[-122.3014021811475,50.44405964229717],[-122.30150915766407,50.44389450662676],[-122.30157087984075,50.44372223774512],[-122.3016014137241,50.44354330493209],[-122.30161274483721,50.44336204895562],[-122.3016170438722,50.443180549361244],[-122.30161944642728,50.44300067800673],[-122.3016112536277,50.44282102000878],[-122.30159075451137,50.44264094243915],[-122.30155776388219,50.44246270649848],[-122.30150705451886,50.442285561944196],[-122.30145454181324,50.442108915003374],[-122.30142159844739,50.44193011360203],[-122.30137264834092,50.4417530275229],[-122.30129871720513,50.44157960673041],[-122.30121761591099,50.44140763815708],[-122.30113480347015,50.4412350455264],[-122.30105731229547,50.44106206347385],[-122.30100133219618,50.440884742400335],[-122.3009651511933,50.440702458371405],[-122.30090186374977,50.44052826742205],[-122.3007734472587,50.44037439716361],[-122.30059798825025,50.44023526955883],[-122.30040092820055,50.440101602107326],[-122.3002147398843,50.43996435612075],[-122.3000449725606,50.439820351753305],[-122.29987349389587,50.43967573209151],[-122.29970927878263,50.43952853829398],[-122.29955954325747,50.43937676185949],[-122.299433306191,50.43921790564839],[-122.2993377849036,50.43904994327179],[-122.29926039561064,50.4388758468332],[-122.29919017727626,50.4387002981236],[-122.2991181095025,50.43852581227492],[-122.2990549705856,50.438349932862195],[-122.29899543938058,50.43817305809878],[-122.29893225507021,50.43799774384299],[-122.29885468589089,50.43782588119066],[-122.29875565303918,50.437657809605184],[-122.29864399361017,50.43749324824595],[-122.2985197997173,50.437331075441676],[-122.29838658662491,50.43717141752953],[-122.29824782464318,50.43701494821905],[-122.29809625168437,50.43686424123939],[-122.29792284926357,50.436721793622944],[-122.2977494935779,50.436578789378736],[-122.2975979237454,50.436428081636535],[-122.29746647448093,50.43626848115509],[-122.2973530196377,50.43610441582671],[-122.29725228463806,50.43593571851564],[-122.29715326189294,50.43576764510446],[-122.29703444377122,50.43560452481848],[-122.29683630087142,50.435462940084285],[-122.29670913637378,50.4353585923554],[-122.27429796083754,50.42436458013047],[-122.27309052008168,50.42391963669415],[-122.27278442109431,50.42380642270858],[-122.26986182444726,50.42272786753377],[-122.27198744831755,50.420376117353385],[-122.27436926948091,50.421151889624475],[-122.27458043018599,50.42102739335619],[-122.2748001897081,50.42092680554296],[-122.27500811247967,50.42077745513855],[-122.27524965371627,50.42062641807001],[-122.27566526044373,50.42033052363334],[-122.27580908211733,50.42023188053272],[-122.27617954520963,50.42005593102128],[-122.27631263755714,50.41991643570585],[-122.27664078373326,50.41971938399934],[-122.27691172411691,50.419532223613885],[-122.27719709057733,50.419362409548604],[-122.27737322914344,50.41923504891267],[-122.27758696221849,50.41914325138906],[-122.27783717980111,50.41901499545026],[-122.27802727992193,50.418846487064236],[-122.27814524239373,50.41871941155201],[-122.27834051886005,50.41853083100917],[-122.27842874494839,50.41835833323671],[-122.27859650566583,50.41818288293742],[-122.27883093969302,50.41781846389891],[-122.27896410837435,50.417635102766646],[-122.27906587803282,50.417426500348135],[-122.27915063227641,50.41729606802529],[-122.27926876997888,50.417102636837114],[-122.2793430718254,50.41694935830732],[-122.27941293619939,50.41682853952104],[-122.27957712275634,50.41656805339598],[-122.2796230313827,50.41639581618279],[-122.27968281392086,50.41629041419819],[-122.27978680173773,50.416183113220555],[-122.27997434383435,50.41608818246418],[-122.28023013207846,50.41595617633569],[-122.28042765631874,50.415804217593255],[-122.28058795816229,50.41567632038801],[-122.28076666068029,50.4155175385736],[-122.2809099891632,50.41536038544307],[-122.28095377054932,50.41527806547411],[-122.28107476599041,50.41513534213298],[-122.28127075205677,50.41491641199591],[-122.28137954218808,50.414814894529265],[-122.28149147567332,50.41471799047149],[-122.28173272561995,50.41450563561291],[-122.28188747169693,50.414380915405346],[-122.28206385258223,50.41422881117505],[-122.2823606341559,50.4140694903262],[-122.28252716548286,50.41392998505264],[-122.28271575652391,50.413843525247756],[-122.28296020003816,50.41374205872513],[-122.28317764292834,50.413668938447806],[-122.28359092731509,50.413464033752874],[-122.28384655725375,50.41337644665],[-122.28410103578946,50.413324245590715],[-122.2843828013847,50.413325822511055],[-122.28473645901796,50.41328875164506],[-122.28508294216897,50.41321039012886],[-122.28531669621775,50.41311025181521],[-122.28550445178811,50.413055252527926],[-122.28572822741432,50.413012141196745],[-122.28603993609751,50.41292811192722],[-122.28624919755975,50.41291150706125],[-122.28705333992464,50.41270956866372],[-122.28736713738691,50.412685784488424],[-122.28769031439872,50.41263362807711],[-122.28837963294336,50.4125852978276],[-122.28855999634061,50.41257728539697],[-122.28886806095846,50.41255891972662],[-122.28899515103568,50.41251313002585],[-122.2890656552732,50.41249130504441],[-122.2890991298966,50.412491301562795],[-122.28923085071061,50.412474910216964],[-122.2894871445135,50.41233615216528],[-122.28966816971278,50.41221286875605],[-122.28978488975368,50.41212173188322],[-122.28995920767174,50.41199429126722],[-122.29005812630497,50.411905374349246],[-122.29026401589367,50.411758178156184],[-122.29036902753245,50.41163797199309],[-122.29062626243287,50.411423317801976],[-122.29079246328784,50.4112230532416],[-122.29109038493239,50.41102776527343],[-122.29139555577032,50.41080853258292],[-122.29147301105402,50.410702024670385],[-122.29159590880245,50.41057847500267],[-122.29171960859311,50.41050950696502],[-122.29194789071349,50.410304012423424],[-122.29204940129443,50.41024779833047],[-122.2922058355755,50.41018779868445],[-122.29238377386072,50.41014482291431],[-122.29274426032688,50.41002416654274],[-122.29298530656865,50.40998499334691],[-122.29326810272848,50.40995228248371],[-122.29351428857305,50.409936333013555],[-122.29381327186935,50.40992103361805],[-122.29490677812161,50.40992724356253],[-122.2951025825724,50.409945597513094],[-122.29528951001879,50.40996478799499],[-122.29564186127267,50.409986126597374],[-122.29603983670077,50.409988186189],[-122.296273814855,50.40997070670265],[-122.29654468807527,50.409954451160026],[-122.29673996884846,50.40993623489344],[-122.29699150607722,50.40989797068945],[-122.2971994339134,50.409832936992714],[-122.29761456153678,50.40973321231118],[-122.29790803231917,50.4096991549064],[-122.29834040439562,50.40960393598076],[-122.298577801467,50.40958769070873],[-122.29877487300642,50.40954759371272],[-122.29898968586262,50.4094844784219],[-122.29916220607187,50.409443002650725],[-122.29944859039952,50.409387892219385],[-122.29963986290986,50.40931105027308],[-122.29979959272214,50.40921065951749],[-122.29991772668113,50.408951414767806],[-122.2999638144449,50.408754440908446],[-122.29999476623873,50.40861318978138],[-122.3000496480919,50.40843787974258],[-122.3001313171078,50.408301138856515],[-122.30022055357628,50.40813653197038],[-122.30026502871642,50.40804522124029],[-122.30037086456174,50.407979021618196],[-122.30056262369312,50.40787464264191],[-122.30069094054038,50.40783506268359],[-122.30081634117226,50.40778806984431],[-122.30109643120916,50.407745126484585],[-122.30129980781386,50.40767093550571],[-122.3013898413709,50.407625577519696],[-122.30163944553858,50.407460133297135],[-122.30197080101084,50.40724287199806],[-122.30222657734627,50.407045023902974],[-122.30228853493408,50.40697679093754],[-122.30245912326635,50.40680814942769],[-122.30258008550936,50.406686215354064],[-122.30275641088897,50.40644747268563],[-122.30290825653016,50.40624951935652],[-122.30296559584495,50.40619463784465],[-122.30306925109777,50.4060473811645],[-122.30322393060291,50.40587933228942],[-122.30349062660305,50.40572007823508],[-122.30367076082703,50.40560686610409],[-122.3040076464975,50.405321740787706],[-122.30424143830703,50.40511246506737],[-122.3044564095034,50.404896370347736],[-122.30457311358172,50.40478329007848],[-122.30483799542043,50.40462453928766],[-122.30507219891574,50.404496257488084],[-122.30534195400419,50.40429942667273],[-122.30541028673265,50.40423928689237],[-122.3057266758636,50.40403219629094],[-122.30594944840679,50.403892850871074],[-122.30616534447539,50.40377295430218],[-122.30642675611537,50.403699565038636],[-122.30685292967152,50.40357149032773],[-122.30703958259214,50.40348605115869],[-122.30720660930153,50.403360582190714],[-122.30729197231302,50.403264450276474],[-122.30741111305322,50.40307833976871],[-122.30751648913369,50.40290976622699],[-122.30753859451255,50.40285483260129],[-122.30756492962075,50.402834340303244],[-122.3078713239062,50.40264153240929],[-122.30816902351097,50.402447318153975],[-122.30836138370485,50.40233506414653],[-122.30866367645686,50.40217080305044],[-122.30893770792844,50.40205058931253],[-122.30907259949208,50.40199491490873],[-122.3092549347795,50.40189751396217],[-122.30953553106563,50.401783141307],[-122.30981634016572,50.40164458847662],[-122.30994188138172,50.401573979809335],[-122.31014903454019,50.401474587920305],[-122.31033799308132,50.401274495955924],[-122.3106348186365,50.40111229711171],[-122.31071346581123,50.40107667538256],[-122.3110560981309,50.4009789871484],[-122.31117900905413,50.40091897015032],[-122.31147173907681,50.40084998685812],[-122.3116782897844,50.40075788754133],[-122.31176683358744,50.40073046789889],[-122.31201566427534,50.400681391569854],[-122.31213513889823,50.40066343267869],[-122.31248738843708,50.400577307875494],[-122.31285414211646,50.400421372624066],[-122.31313006289932,50.40032089046066],[-122.31326077328146,50.40025157503172],[-122.31346640871995,50.4000627137837],[-122.3135155402477,50.40000023852209],[-122.3135371053425,50.39997339549787],[-122.31375460447838,50.39976862426871],[-122.31396533929181,50.39960355154711],[-122.31434897015517,50.399413297109795],[-122.31463487053375,50.39931990097154],[-122.31494728314381,50.399203757561736],[-122.31530447518871,50.39907842250052],[-122.31565448371173,50.39893316878781],[-122.31579900964459,50.398867117469464],[-122.31601379408754,50.39880340301551],[-122.31614993916176,50.39877531388636],[-122.31641169934238,50.39867547766106],[-122.31651248536784,50.39864902843227],[-122.31684022078065,50.39851764306701],[-122.31695743599165,50.3984624963983],[-122.31716396461516,50.39837038658523],[-122.31733960785243,50.398268251446176],[-122.31747000500158,50.398224223175575],[-122.31764823795986,50.398176719396325],[-122.31782856571682,50.39814672305748],[-122.318095069858,50.398139836824846],[-122.31841873996042,50.398123044942096],[-122.31874636107804,50.3980793805508],[-122.31886329229383,50.398070894965414],[-122.31919182595843,50.39801602115468],[-122.31950380051232,50.3979482148995],[-122.31967733471198,50.39787187528917],[-122.31984432486556,50.3977677662018],[-122.32003559589474,50.397581790383846],[-122.32012814932017,50.3975050087568],[-122.32030028495085,50.39746742097082],[-122.32052000080188,50.397451101258866],[-122.32075411295641,50.397409390243546],[-122.32091231249328,50.39734828577845],[-122.32099845229777,50.39728535421998],[-122.321196936712,50.39720534218195],[-122.32144999427857,50.39701747533738],[-122.32158362627305,50.396933625905056],[-122.32187919217277,50.39682927639517],[-122.32208412564546,50.39677816252147],[-122.32228794228831,50.3967191289811],[-122.32263268086972,50.39665971762681],[-122.32294486881966,50.39658910177758],[-122.3232238424926,50.39653706990035],[-122.32329551385568,50.39652201131087],[-122.3234905885032,50.39650543468254],[-122.32383550645501,50.396443776144736],[-122.32410266262784,50.39640708725162],[-122.32431368234292,50.39634604869604],[-122.32463971327452,50.39621345988375],[-122.32491010690308,50.39613695264709],[-122.32518798141027,50.39605506929],[-122.32538234676213,50.39598222870997],[-122.3256262098567,50.395950387089854],[-122.32589228920729,50.395905227204466],[-122.32620446685591,50.395834602108124],[-122.3262848719873,50.39582039824051],[-122.3264870139693,50.39580348403244],[-122.32676112044928,50.395746216208316],[-122.32704181750138,50.39567286204118],[-122.3273219436339,50.395584857604874],[-122.32748804172398,50.39549138853781],[-122.32764271060876,50.3953868596813],[-122.32775114721606,50.39535277209077],[-122.32798061278699,50.39534632608221],[-122.32829725576464,50.395307336112594],[-122.32837311964381,50.395283982274286],[-122.32869843139521,50.39526833129174],[-122.32902289471329,50.39519810577687],[-122.32924163232786,50.39510694597233],[-122.32951885463545,50.39503290369346],[-122.32982773612234,50.39495934310308],[-122.33017878452192,50.39482195303733],[-122.33039628817781,50.394745929661816],[-122.33060373378306,50.394685318982106],[-122.33076635943482,50.39463447032669],[-122.33095284444454,50.39459340986228],[-122.33114986708219,50.394552698200705],[-122.33169890379112,50.39449271223846],[-122.33207298936044,50.39441849807614],[-122.33241732654993,50.39432024480551],[-122.33253057060648,50.39429193561151],[-122.33282952826366,50.39427540898805],[-122.33312858972911,50.394192516376364],[-122.33327140971356,50.39412526200759],[-122.33345972304548,50.39399652830404],[-122.33370287493256,50.393777948074174],[-122.33377149233678,50.39369192321478],[-122.33399158957457,50.39351869343779],[-122.3340392291326,50.39347415618965],[-122.33436118944357,50.3933042887706],[-122.33442285967304,50.39328215272455],[-122.33475560808088,50.39323973688401],[-122.33502295441701,50.393156923421714],[-122.33534946789122,50.393082806793274],[-122.33563365564889,50.392944312277926],[-122.33623149923727,50.392586181161796],[-122.33641179986896,50.392490919759915],[-122.33672982207598,50.392325981315814],[-122.3367991064072,50.39229678058002],[-122.33695843176298,50.392242997680775],[-122.33705490619535,50.39222594359508],[-122.33737827774368,50.39212529044201],[-122.33751169542884,50.39208696308855],[-122.33765572383571,50.39206979867201],[-122.33798094009622,50.39196808009291],[-122.33821890596218,50.39183479012591],[-122.33837568151354,50.391812422629464],[-122.33869467141008,50.39172230140901],[-122.33878245385138,50.3917038337403],[-122.3391455906302,50.391590435629176],[-122.33950385355011,50.391428502522906],[-122.34000285321645,50.39124648479562],[-122.34025257100521,50.39116363442755],[-122.34050925318434,50.3910382736365],[-122.34077370030361,50.39094746887804],[-122.34111078566399,50.39085119950712],[-122.34161124139085,50.39069452503711],[-122.34184787277091,50.39064273151252],[-122.34200826091116,50.3905974167722],[-122.34213959645528,50.39056294735208],[-122.34215756666842,50.390558484146375],[-122.34243655745499,50.390527209184626],[-122.34273295889567,50.3905201280442],[-122.34305648928749,50.39048244942682],[-122.34320903373766,50.39044699658855],[-122.34333921621148,50.39038324455835],[-122.34361278332338,50.390310172343504],[-122.34386090029925,50.390246948661854],[-122.34415217755617,50.39015084045081],[-122.34445519807312,50.38999663290464],[-122.34473383025797,50.38988266787231],[-122.34485076253159,50.38983029097899],[-122.34503154662585,50.38970691374624],[-122.3451889820784,50.38954564928779],[-122.34531030066084,50.38946079936181],[-122.34560998179002,50.38930422911715],[-122.34583821580384,50.38926902127699],[-122.34627654364077,50.389030986871795],[-122.34659558169153,50.388874485935666],[-122.346853082377,50.38876038546675],[-122.34708810711155,50.3885758093213],[-122.34726913940517,50.38847099944182],[-122.34738860440244,50.3883872109391],[-122.34771847889847,50.38816189762396],[-122.34782754204005,50.388076073964655],[-122.34801424729297,50.38796638422896],[-122.34826605104621,50.38787908640214],[-122.34866557112665,50.38766338256558],[-122.34880748653954,50.387606759733345],[-122.34899785781197,50.38753880453413],[-122.34912972228702,50.3874976051907],[-122.34936254482417,50.38736187335051],[-122.34942552519091,50.3873015314795],[-122.34967535106581,50.387107873343446],[-122.34983674845255,50.386897244831125],[-122.34997581513248,50.386766860947766],[-122.35019206594562,50.386531046495925],[-122.3502518944305,50.38646610132435],[-122.35028113465259,50.386431073602715],[-122.35036299833469,50.386333103620785],[-122.35044489763257,50.38634367631749],[-122.3510226752706,50.38627498973002],[-122.35131272328282,50.38621538146877],[-122.35162016029697,50.386136658079685],[-122.35186372075302,50.386020395560806],[-122.35213764521247,50.38596418603423],[-122.35264570784048,50.38590838274252],[-122.35318598311108,50.38591155749058],[-122.35356797335193,50.38584708958608],[-122.3539085232171,50.385816131514574],[-122.35425465782804,50.38578141523333],[-122.3545630561273,50.38575613591487],[-122.35492422432475,50.38573147727876],[-122.35534022803549,50.38572548454259],[-122.35565668086657,50.385709474208426],[-122.35602904677854,50.38572060515181],[-122.35635011888861,50.38575647356514],[-122.35674422002118,50.38580375091122],[-122.35711298449037,50.38581588440371],[-122.35713049984851,50.385817018549425],[-122.35713201942228,50.39090815449026],[-122.39999960894586,50.39665751253361],[-122.40869813242419,50.39782222722476],[-122.40904036759196,50.39774840660314],[-122.40931940058427,50.397716407174435],[-122.40959821062651,50.39768720700933],[-122.4098782419111,50.39766479377252],[-122.41015738141067,50.397653597650205],[-122.41043469367959,50.3976653928782],[-122.41071373574104,50.397699745890186],[-122.41099075499586,50.397737397651476],[-122.41127649356034,50.39775397148238],[-122.41150950321592,50.3978357495524],[-122.41167726559922,50.39798514274846],[-122.41181080807368,50.39814410686655],[-122.41195349008598,50.398298877164194],[-122.41210346742967,50.39845050053933],[-122.41226429680427,50.39859854333587],[-122.41243980365958,50.39873918857854],[-122.41262629666402,50.39887456597661],[-122.41282215252104,50.39900294039876],[-122.41303079606884,50.39912553838431],[-122.41325663133027,50.39923125580857],[-122.41350150314932,50.39931903664609],[-122.41375402586004,50.39939919196303],[-122.41400843932281,50.39947772538276],[-122.4142711717977,50.39954021534773],[-122.41454667092162,50.3995750012968],[-122.4148261289248,50.39960429136366],[-122.41510383065808,50.39963352386925],[-122.41537937585998,50.3996677423661],[-122.41565667740224,50.39970202599754],[-122.41593213442854,50.39973736490109],[-122.41620754702711,50.39977326849784],[-122.41648287106507,50.39981029319294],[-122.41675999633605,50.39984681762692],[-122.41703541025888,50.39988271916191],[-122.41731051355302,50.39992254177074],[-122.41757959077763,50.399971732904945],[-122.41771118289186,50.40000017373914],[-122.41784795687116,50.40002989766365],[-122.41811394429492,50.40009585745702],[-122.41837039276474,50.4001710722498],[-122.4186006036933,50.40026623978418],[-122.4187231035847,50.40043158502867],[-122.41877422527037,50.40060868502761],[-122.41882886071951,50.400785898556975],[-122.41891573956879,50.40095628184585],[-122.41896150357796,50.4011343330408],[-122.4189825403539,50.40131327622566],[-122.41899466069798,50.401493613585984],[-122.41901038351018,50.40167294270799],[-122.41903493488806,50.40185199037512],[-122.41906826939959,50.402031330934776],[-122.4191068302741,50.40221139822484],[-122.41915435305076,50.40238950585216],[-122.41921979945604,50.40256369419308],[-122.41931393291631,50.402731495007956],[-122.41945638830548,50.40288962010435],[-122.41963369096679,50.403030309986846],[-122.41985798224471,50.40313371309702],[-122.42011378434647,50.403217332450005],[-122.42036629574807,50.4032980376908],[-122.4205978838805,50.40339830101022],[-122.42081039317087,50.40351707546285],[-122.42104422875714,50.403611229271156],[-122.42132071472913,50.403656151011944],[-122.42155653145312,50.40374755153642],[-122.42176346378275,50.40387007560289],[-122.42196468245291,50.40399803793845],[-122.4221771981541,50.40411680968192],[-122.42238782521721,50.40423720244754],[-122.42256523114409,50.40437676562138],[-122.42274461748302,50.40451357627741],[-122.42297788439664,50.404615021963544],[-122.42321866869455,50.40471051976063],[-122.42342952374219,50.40482810151392],[-122.42361400666466,50.40496733339544],[-122.42375859702115,50.4051210131366],[-122.4238455916106,50.40529026985384],[-122.4239001190076,50.405469167004654],[-122.42395126667414,50.40564626349827],[-122.42399174055913,50.40582469782868],[-122.42401982699475,50.40600386586332],[-122.4239951626653,50.4061818888367],[-122.4238763806913,50.40634730950398],[-122.42381860079225,50.40652088940658],[-122.42379204487,50.406700542660374],[-122.42377945601261,50.406881762415786],[-122.42378281233042,50.4070618144058],[-122.42381103230815,50.40723929505916],[-122.42390488129423,50.40741102170854],[-122.42400967207035,50.4075780450059],[-122.424121669814,50.407743042485585],[-122.42423907214749,50.407906531767665],[-122.42436543782516,50.408068060876026],[-122.42450999589282,50.4082223044172],[-122.42469656417458,50.40835765989911],[-122.42492809832099,50.408459044290716],[-122.42517695673227,50.40854185922928],[-122.42543153029494,50.40861924375389],[-122.42568606069092,50.40869718408895],[-122.42593856862078,50.4087784324866],[-122.42618905412905,50.40886298895967],[-122.42640200362493,50.40897669938786],[-122.42656287325764,50.40912527588732],[-122.42676259343948,50.40925037203868],[-122.42695488757354,50.409380284661566],[-122.42712863622125,50.409521969858105],[-122.42730234193883,50.409664211159715],[-122.42748158540283,50.40980326577759],[-122.42767933258033,50.409931103472836],[-122.42788991265985,50.41005260668785],[-122.42807496374233,50.41018509058837],[-122.42819598957723,50.410347566700764],[-122.4283115228996,50.41051268164525],[-122.42843975621906,50.41067314045022],[-122.42856974753326,50.410833655716225],[-122.42869257868769,50.4109956224201],[-122.42880464599861,50.41116005806156],[-122.42889698642266,50.41132892304689],[-122.42897667362872,50.41150186961261],[-122.42904564061071,50.41167672881032],[-122.42910929275361,50.411851974429936],[-122.42917290139141,50.412027776376085],[-122.42922943726299,50.412203917099234],[-122.42927705443645,50.412381461756546],[-122.42931408507312,50.412559222978025],[-122.42932629436584,50.412738991293004],[-122.42934026021227,50.41291882516959],[-122.4293612108655,50.41309944192028],[-122.42942680082264,50.413272500123234],[-122.42954058964217,50.41343754758114],[-122.42963460596414,50.4136075898726],[-122.42972150620574,50.413778518357304],[-122.42981381141318,50.41394793842666],[-122.42992219831284,50.41411450263823],[-122.43002707157129,50.41428095347284],[-122.43011397388261,50.414451890480294],[-122.43019367125278,50.41462483549601],[-122.43027521444914,50.41479672423122],[-122.43033267318413,50.414983572762594],[-122.43047855925654,50.41512154595341],[-122.4307183675259,50.41520799540505],[-122.43098775626852,50.415276836217686],[-122.43125363059657,50.415345572146954],[-122.43151616922185,50.41541194172083],[-122.43178059850625,50.41547668908325],[-122.43202594889799,50.41555994011637],[-122.43225696059645,50.4156685953374],[-122.43249575554869,50.4157679457805],[-122.43258197704097,50.41592535368914],[-122.4325935351617,50.416113538682154],[-122.43266076587535,50.41628833804563],[-122.4327261958415,50.416463637154784],[-122.43278094983856,50.4166402749147],[-122.43281795308073,50.4168185993935],[-122.43279814636156,50.41700240050323],[-122.43277315609966,50.41718491007104],[-122.4328359154211,50.41734943444227],[-122.43300246184232,50.41749369164702],[-122.43320319733597,50.41762891843746],[-122.43340257507707,50.41775904478743],[-122.43360933785996,50.41788490991216],[-122.43374543784479,50.41803549139464],[-122.43381632388943,50.418208715610156],[-122.4338672590281,50.41838917002232],[-122.43393265206129,50.41856503333259],[-122.43401061390239,50.41873791816004],[-122.43409393644536,50.41890985975843],[-122.43417550291927,50.41908173573093],[-122.43425878278052,50.419254233530054],[-122.43434751274076,50.41942465733556],[-122.43444520771382,50.41959312023134],[-122.43455547125356,50.419758613516144],[-122.43468010486013,50.419920637300386],[-122.43481388165924,50.42007844756537],[-122.43497850983819,50.420224888309654],[-122.43515425995616,50.420364372007654],[-122.43522866999497,50.42053770788951],[-122.43524613276396,50.420718208737725],[-122.43519861340953,50.42089605236645],[-122.43519498630702,50.42107587471094],[-122.43512873918428,50.42126774484419],[-122.43522184266064,50.42127129765523],[-122.43549781156743,50.42121269760547],[-122.43577801970892,50.421189663205716],[-122.43606014929044,50.42118692402709],[-122.43634183539376,50.421189801955975],[-122.43662312345639,50.4211977226492],[-122.43690577107049,50.42121074261828],[-122.43718423954813,50.421232066626544],[-122.4374554883555,50.42127789939676],[-122.4377261620244,50.42133102750026],[-122.4380026844936,50.4213770284135],[-122.43827538311493,50.42142683737364],[-122.43853071575475,50.42149577280401],[-122.43875689873641,50.421599200746016],[-122.43896009048139,50.421726064103765],[-122.43917255798112,50.421847035202624],[-122.4394081957384,50.421942326361716],[-122.43966075776981,50.42202410753626],[-122.43991147542613,50.42210694446395],[-122.44014685073323,50.42220559933771],[-122.44037813670504,50.422311436796775],[-122.44060920300514,50.42242007370219],[-122.44083284258053,50.42253352781276],[-122.44104193606837,50.422652704145385],[-122.44123112231054,50.42277855523175],[-122.44134187233374,50.42309475357571],[-122.4414001386496,50.42327206386538],[-122.4414656126353,50.42344735628816],[-122.44157789030042,50.42361008931626],[-122.44173521374634,50.42376021535733],[-122.44184191052095,50.42392670944303],[-122.44186660831903,50.424105190664356],[-122.4418788699675,50.42428496397595],[-122.44188757259727,50.424465180784765],[-122.44190335041019,50.42464505789775],[-122.44193688092273,50.42482326469167],[-122.4419988000816,50.42499900000064],[-122.44205184230765,50.42517558384578],[-122.44208001309663,50.425354733992556],[-122.44209051826051,50.4255344505741],[-122.44208867589602,50.42571432852844],[-122.44207272816888,50.425894311428536],[-122.44204627800573,50.42607339932811],[-122.44200405218135,50.426251422937945],[-122.44192869554567,50.42642500007522],[-122.44183936433326,50.42659701289067],[-122.4417833414146,50.426771210583965],[-122.44179389029291,50.426950361505746],[-122.4418219720356,50.42713064206183],[-122.44183599277655,50.42731046215593],[-122.44184473967583,50.4274901218922],[-122.44182356094137,50.42766937867214],[-122.44181117085154,50.427848917560674],[-122.44183578224829,50.42802851968074],[-122.44188887195932,50.42820453756723],[-122.44198467941361,50.42837517907499],[-122.4420734564317,50.42854559475882],[-122.442039929675,50.42872501275453],[-122.44226330474852,50.42881990204211],[-122.44253599807138,50.428892757139565],[-122.44280290527584,50.42883778803848],[-122.44306537853613,50.428771987805824],[-122.44333088084521,50.428712464981324],[-122.44360099262794,50.428661528451805],[-122.4438742213517,50.4286157564899],[-122.44414876618352,50.4285756401023],[-122.44442462580918,50.42854119722808],[-122.44470202227468,50.42850960998047],[-122.4449794628791,50.4284774566674],[-122.44525857183203,50.42844648977637],[-122.4455354816546,50.42842106567327],[-122.44581497896647,50.42840753665955],[-122.44609754150272,50.428422220225706],[-122.44637887630425,50.428430116105474],[-122.44666425661738,50.428431393369124],[-122.44694783465279,50.42843317892079],[-122.44722908138014,50.42844219441265],[-122.44750214935206,50.42846556682646],[-122.44776452325084,50.42853526215187],[-122.44799203526954,50.428644891929416],[-122.44818451677406,50.42877420818565],[-122.4483638565457,50.4289137821201],[-122.44854869188062,50.42905071580192],[-122.44876139530491,50.42916943286256],[-122.44901946534989,50.4292491084373],[-122.44921547507155,50.42935604374647],[-122.44929487441442,50.429534024257585],[-122.44944499251665,50.42968671294048],[-122.44962627412274,50.42982409744738],[-122.44983898402015,50.42994281232732],[-122.45006870713848,50.4300468851137],[-122.45031575178093,50.43013239400267],[-122.45057435933676,50.430205335252246],[-122.45084101320475,50.430265605184864],[-122.45109588577967,50.43034124154154],[-122.4513447355944,50.43042624799338],[-122.45158985047479,50.43051394126351],[-122.45183483438824,50.430603312149415],[-122.45207788432955,50.43069487872987],[-122.45231724384313,50.43078856680454],[-122.45254513091336,50.43089369985847],[-122.45277099667032,50.43100214148267],[-122.45299136906598,50.431113222783964],[-122.45316893134353,50.43125328868737],[-122.45333005576647,50.431400709414206],[-122.45348564375789,50.43155131747818],[-122.45364303443048,50.4317014251409],[-122.45380781041936,50.431847270436194],[-122.45399487214199,50.43197865091171],[-122.4542244833533,50.43208439299456],[-122.4544335238431,50.43220522980106],[-122.4546314453411,50.43233301584653],[-122.45482743378025,50.43246298883281],[-122.45502355585799,50.43259127431113],[-122.45522701892516,50.432715862588026],[-122.45543237287991,50.43283882852009],[-122.45563957472712,50.432960719520985],[-122.4558485793669,50.43308210992663],[-122.4560539810715,50.43320450928047],[-122.45625749342865,50.43332853917483],[-122.45645542500817,50.43345632178738],[-122.45664039152517,50.43359211944191],[-122.45681801854063,50.4337316226747],[-122.45699358007818,50.43387500008746],[-122.45719371442777,50.433997228641694],[-122.45744650847654,50.43407728094463],[-122.45770497404614,50.43415244875053],[-122.4579273080493,50.43426133245092],[-122.45810129389825,50.43440239932969],[-122.45825145724216,50.43455508414226],[-122.45839256797673,50.43471084421891],[-122.45852110851561,50.43486958521047],[-122.45848421429366,50.43504777265874],[-122.45834350739962,50.43520128540416],[-122.45829685349854,50.435391531322495],[-122.45831371246179,50.43555850780685],[-122.45860410396502,50.43556385352148],[-122.45887608335691,50.43553430615086],[-122.4591390121532,50.43546285959663],[-122.4594072567395,50.435413507019454],[-122.45968903485827,50.43539383407772],[-122.45997274580598,50.435394455574645],[-122.4602474001709,50.435420661463766],[-122.46051603176338,50.4354787203478],[-122.4607807523701,50.43554170979447],[-122.46104951695885,50.4355980892109],[-122.46130052508246,50.43567863284518],[-122.46151461157231,50.43580298943955],[-122.46173344738418,50.43591174407893],[-122.4620037989346,50.43592543779293],[-122.46228988687672,50.43591825708403],[-122.46256880929852,50.43595752139556],[-122.46283168884541,50.43602158055467],[-122.46305430884904,50.436127079441675],[-122.46325939229273,50.43625395207197],[-122.46351053950302,50.43633281247191],[-122.4637201082806,50.43644745691516],[-122.46386119948632,50.43660377504117],[-122.46399495115104,50.436763799327835],[-122.46413433044816,50.43691949559454],[-122.46435453980388,50.437010861962506],[-122.46463738087576,50.43700020672801],[-122.46490277481209,50.437054777428585],[-122.46516544475017,50.437121630910056],[-122.46542605016515,50.43719234941976],[-122.46568872167776,50.437259201651024],[-122.46595148181132,50.43732493148369],[-122.46621230887128,50.43739284818815],[-122.46646918122696,50.43746626105256],[-122.46673163596401,50.4375359197073],[-122.4669583593625,50.437634235604875],[-122.46711928880828,50.43778499146999],[-122.46733225778762,50.43790142808452],[-122.4675545463487,50.43801140478002],[-122.46778052727825,50.438119258482814],[-122.46800466399617,50.43822816849351],[-122.46822488998657,50.43834201847347],[-122.46844335887872,50.438455811992476],[-122.46866749816283,50.438564729592834],[-122.46890113249992,50.43866494358119],[-122.46914993037853,50.43875158737903],[-122.46940901226256,50.438819440451525],[-122.46968905535631,50.438844669061],[-122.46993644849779,50.43892676800047],[-122.47017373525067,50.43902541306112],[-122.47040526613064,50.43913005493258],[-122.47062761173552,50.439239468904205],[-122.4708441573241,50.43935544513996],[-122.4710721307364,50.43946053901062],[-122.47132462909985,50.43954504623413],[-122.47156794207939,50.43963432554664],[-122.47176444945275,50.439758658565864],[-122.47193274218627,50.43990570915497],[-122.47211773744807,50.440042045285274],[-122.47232132542459,50.4401660356794],[-122.47254741620264,50.440272757612085],[-122.47280225042034,50.440350021324015],[-122.47299111741196,50.440481980711105],[-122.47312139631049,50.440641881351155],[-122.4732390180159,50.4408058684003],[-122.47340964723772,50.44094568545917],[-122.47361504463049,50.441069172870264],[-122.47382593760055,50.441190018731966],[-122.47407365753084,50.44126818649271],[-122.47431891954433,50.44135526298164],[-122.47455635973401,50.44145222020076],[-122.4747881319388,50.44155405266744],[-122.47499353586743,50.44167753743339],[-122.47516391164511,50.44182070798504],[-122.47523494970586,50.44199446593595],[-122.47532568147106,50.442164342626704],[-122.47546872014641,50.44231902260619],[-122.47561716669344,50.442472182908524],[-122.47580773469949,50.44249229282451],[-122.47606557729813,50.442418395561866],[-122.47632359424405,50.44234225414848],[-122.47656002124809,50.44224912448843],[-122.47674843333277,50.44211622466813],[-122.4769235649768,50.44197279053591],[-122.4771001918338,50.44183276831879],[-122.47727681689501,50.441692754770564],[-122.47745854145067,50.44155514308529],[-122.4776436057469,50.441419895326],[-122.47783381294171,50.44128649298711],[-122.47802406313858,50.44115252492527],[-122.47822591938326,50.44102793066309],[-122.4784512095021,50.44091925739203],[-122.47869637282024,50.44082695866098],[-122.47895363260864,50.4407603415944],[-122.4792393542835,50.440758169706086],[-122.4795065462537,50.44081276105519],[-122.47978230315383,50.440847948455705],[-122.4800572653659,50.44087073082076],[-122.4802920820625,50.44097883777338],[-122.48055768469519,50.44100863583522],[-122.4808463909152,50.440990810739],[-122.48112403098172,50.44100187208784],[-122.4813850336374,50.44106806565827],[-122.48163356223532,50.44115861191392],[-122.48184091632903,50.44127989630729],[-122.48208065601204,50.44137015358706],[-122.48234135579324,50.441440275588405],[-122.48261044469933,50.44149323702401],[-122.48288379444347,50.44153676975533],[-122.48316127338076,50.441572560907844],[-122.4834393646794,50.44160049891174],[-122.48371978319045,50.44162119593136],[-122.48400076973161,50.44163460516275],[-122.48428377698137,50.441644704100135],[-122.4845667403134,50.44165536769255],[-122.48484763993606,50.44166989655873],[-122.48512445543757,50.44169160031157],[-122.485398463723,50.44172671797338],[-122.48566514469265,50.4417880251086],[-122.48592181158877,50.4418647578745],[-122.48617087846596,50.44194855422074],[-122.4864082598712,50.44204660778676],[-122.48664366593489,50.442147405078785],[-122.48688904428785,50.442233331906706],[-122.48715107826571,50.44230910715143],[-122.48742052726789,50.44235756974166],[-122.48769668090021,50.442365193576165],[-122.48797994320849,50.44234942640511],[-122.48826197072891,50.44232687212659],[-122.48854360550311,50.442309360662684],[-122.4888236555475,50.44228955820878],[-122.48910225278583,50.44226576864154],[-122.4893797022462,50.442234070218674],[-122.48964984290659,50.44218302243187],[-122.48990920166763,50.4421119486171],[-122.49015245844019,50.44202125620767],[-122.49037271143935,50.4419090265256],[-122.49055887333803,50.44175916511865],[-122.49079610770794,50.44174587438651],[-122.49104550171528,50.44184822938767],[-122.491239572904,50.441982002601186],[-122.49148908568755,50.44206018704964],[-122.49173442882991,50.4421466685515],[-122.49196795845535,50.44224907708693],[-122.49220363958555,50.44234649720406],[-122.4924565856422,50.44242591248814],[-122.49271748200249,50.442493766449104],[-122.49297644638347,50.44256380774254],[-122.49322548626726,50.44264815356074],[-122.4934723767576,50.44273748674715],[-122.49371948578691,50.442824019397946],[-122.49397072269817,50.44290281019673],[-122.49423535845159,50.44296797177818],[-122.49451426501273,50.44300827721777],[-122.49478764800622,50.44300623254451],[-122.49505698720064,50.44294277640672],[-122.49533607994721,50.44293529718198],[-122.49559724493048,50.44299977896995],[-122.49585191582817,50.443079798433054],[-122.49608941199944,50.44317670038902],[-122.49635444471177,50.443236804367366],[-122.49663203185774,50.44327143997145],[-122.4969114914304,50.44328196094105],[-122.49719392936778,50.44327682275957],[-122.49747539175995,50.44326154119661],[-122.49775438257527,50.44323267740358],[-122.49803426018815,50.44321509530331],[-122.49831621845122,50.44321612858739],[-122.49859963085281,50.443221138457815],[-122.49888243336265,50.44323400910079],[-122.49916089273071,50.44325742049066],[-122.49943272857003,50.44329804787809],[-122.4996959209888,50.443359210139384],[-122.49995639856319,50.44343265594776],[-122.50021503153617,50.44350716742358],[-122.50046984362585,50.44358549804101],[-122.50072057459668,50.44367100421984],[-122.50097981909607,50.44373766136395],[-122.50125864944978,50.44377907160317],[-122.5015511379324,50.44380347728495],[-122.50182680497097,50.44379474898778],[-122.50206338086323,50.44372180389697],[-122.5022611242591,50.44358129482059],[-122.50244312806826,50.44343915538511],[-122.50260947797294,50.443294281824095],[-122.50277252764126,50.443146488093575],[-122.50294397751966,50.44300401497873],[-122.50312901523218,50.44286815958396],[-122.50332078091586,50.44273645643983],[-122.50351927526005,50.44260889653911],[-122.50372946893872,50.44248957695782],[-122.50395307727216,50.44237910948782],[-122.50416489643253,50.442261531670916],[-122.50436008710766,50.44213105033433],[-122.50461004475379,50.44204446978301],[-122.50486312688693,50.44196305208621],[-122.5050494354482,50.4418334141319],[-122.50512474893159,50.44165755392237],[-122.50513873636683,50.44147694475095],[-122.50511584182635,50.44129460620326],[-122.50504983431743,50.441122720710716],[-122.50491579363039,50.44096443399267],[-122.50477111692808,50.44080693628755],[-122.50467671737144,50.44063752894562],[-122.50461092936976,50.44046284304536],[-122.50455050443566,50.44028719260291],[-122.50448832095898,50.4401114956271],[-122.50442253514736,50.439936800526546],[-122.50434787073677,50.4397629589282],[-122.50426076882651,50.43959040737231],[-122.5041465549396,50.439426554884314],[-122.50395571236588,50.43929628010644],[-122.5037777878989,50.43915853155121],[-122.50365096441219,50.43899822111222],[-122.50353152254428,50.43883364510867],[-122.50339745016589,50.438675921492376],[-122.50324892190345,50.43852279764229],[-122.50311309388229,50.43836500919087],[-122.50297357578066,50.438209362193604],[-122.5028286977013,50.43805466142712],[-122.50267832824848,50.437902603031354],[-122.5025041897283,50.437761606701436],[-122.50234103699866,50.437615324926405],[-122.50220710315642,50.437455912446],[-122.50211263327489,50.437287624016214],[-122.50205942829157,50.437109958794686],[-122.50203628755618,50.436930984021686],[-122.5020220241731,50.4367511737569],[-122.50199892689528,50.4365716424829],[-122.50196343566721,50.43639284462858],[-122.50189762121481,50.436218712610426],[-122.50179788060585,50.43605025722008],[-122.50168192645526,50.435886345993836],[-122.50155516272466,50.43572547609286],[-122.50144461478821,50.43556005278653],[-122.50134663545289,50.435391652337415],[-122.50124689872499,50.43522319627828],[-122.50114536148992,50.435055241018226],[-122.50104022112731,50.43488830542387],[-122.50091526441928,50.43472692469494],[-122.50079909908908,50.434565821269594],[-122.50077420656069,50.434386790171],[-122.50074408311934,50.434207036124356],[-122.50068912907125,50.43402931406803],[-122.500641164592,50.43385237035128],[-122.50063033757925,50.433673783043304],[-122.50067422744921,50.43349411610296],[-122.50076660272003,50.43332554282325],[-122.50090566243423,50.433168555036985],[-122.50104647852301,50.43301163151169],[-122.50117520516504,50.432851510351384],[-122.50130045867127,50.43269071264497],[-122.50142232533071,50.43252812557231],[-122.50153214587745,50.43236178452852],[-122.50159313237461,50.432188846190336],[-122.50157188408105,50.432008247483544],[-122.50155230700011,50.43182882602259],[-122.50153273007466,50.431649404517984],[-122.50151315330476,50.43146998296988],[-122.50149181871997,50.43129050589361],[-122.50147769005648,50.43110900709683],[-122.50144387618984,50.430931385152654],[-122.50130065386313,50.43077842367371],[-122.50119547975083,50.43061204375413],[-122.50106860246338,50.43045285046589],[-122.50093460738546,50.4302945568361],[-122.50079881218772,50.43013676393467],[-122.50066301724291,50.42997897981048],[-122.50052902499168,50.429820685597214],[-122.50039868029839,50.42966081499422],[-122.50027549824058,50.42949948799562],[-122.5001541619339,50.429337094524406],[-122.50003818713952,50.42917374560152],[-122.49992230016748,50.42900927471449],[-122.4998081719124,50.428844859184125],[-122.49969584550102,50.42867994259813],[-122.49958352060568,50.428515016889975],[-122.49946939483215,50.42835060090977],[-122.49935531303942,50.428185628360474],[-122.49923938793671,50.428021712975486],[-122.49910540647869,50.42786341665644],[-122.4990469947885,50.42768501594409],[-122.49892343107132,50.42752873968324],[-122.49874736926473,50.42739048014992],[-122.49855505317768,50.427257329587],[-122.49835909243512,50.42712574582885],[-122.4981685364184,50.42699265008634],[-122.49797978248384,50.42685905311653],[-122.49779103036188,50.42672544682888],[-122.49760223548982,50.42659240559062],[-122.49741168395227,50.426459308459386],[-122.49722289130943,50.42632626653125],[-122.49703045332201,50.426194800352754],[-122.49685268862102,50.42605591663361],[-122.49669144057879,50.425908567139224],[-122.49653208227816,50.42575958574249],[-122.49637812920379,50.425609083582636],[-122.4962278660697,50.42545645766886],[-122.49608480971433,50.42530180120716],[-122.49596525746813,50.42513945787503],[-122.49585299818322,50.42497397124269],[-122.49573533561968,50.42481000493949],[-122.49562145126231,50.42464277522274],[-122.495494740657,50.42448189614364],[-122.49533684456495,50.42433689020157],[-122.49514437734052,50.42420597684378],[-122.4949335505331,50.4240846035554],[-122.49471156907317,50.42397074898121],[-122.49448357494104,50.423866267051785],[-122.49424043193022,50.4237753580096],[-122.49399535799144,50.423686636444955],[-122.49375410562922,50.42359409471422],[-122.49351105268309,50.42350206222981],[-122.49326589452072,50.423414460835446],[-122.49299241145091,50.42335126985516],[-122.4927972389283,50.4232326365781],[-122.49263794683144,50.423083083696184],[-122.49249881740135,50.42292348973434],[-122.49237937149167,50.42276002024323],[-122.49230649619233,50.422586778872294],[-122.49224622946416,50.42241000498098],[-122.49215547444975,50.422240128975176],[-122.49204683868811,50.4220736273453],[-122.49192370713574,50.421912289546775],[-122.49179161418297,50.42175291701169],[-122.49165943498748,50.42159466610096],[-122.49152369763085,50.42143686910918],[-122.49137724214714,50.421280972700515],[-122.49123970591285,50.42112367607353],[-122.49118441317638,50.42095099008721],[-122.49120732484995,50.420769534443735],[-122.49124236476335,50.420590711917974],[-122.49128263306365,50.42041262167725],[-122.49133516049962,50.420235477326955],[-122.49140328761648,50.42006163377157],[-122.49149755863935,50.419891433821654],[-122.49159204653492,50.41971843370267],[-122.49170521280021,50.419554454647475],[-122.49197197597773,50.419522415002625],[-122.49225192721862,50.41950203793831],[-122.49253170390934,50.41948390380096],[-122.49281169857869,50.41946295992688],[-122.4930890486424,50.41943069490695],[-122.49335785796829,50.41937228472134],[-122.49362495231667,50.419313261848124],[-122.4938984813408,50.419284805454325],[-122.49417879401395,50.41928242822114],[-122.49445994924766,50.419291889461675],[-122.49474247052196,50.41930644928025],[-122.49502499197833,50.419321008378894],[-122.49530601735808,50.41933214571579],[-122.49558673847014,50.419347204222035],[-122.49586776415121,50.41935834013515],[-122.49614974761755,50.419357135314954],[-122.4964295218464,50.419338991341526],[-122.4967083217552,50.41931069471538],[-122.49697026908255,50.4192498188538],[-122.4971770743405,50.41912758805744],[-122.4973906466512,50.41900895349781],[-122.49761239680174,50.4188984400227],[-122.49783581563521,50.41878911242914],[-122.49806424548058,50.41868330748296],[-122.49829913827033,50.41858502053246],[-122.49854225154851,50.41849430707158],[-122.49879824954351,50.41841917742324],[-122.49906053752143,50.418353800287896],[-122.49931803038612,50.41828209042215],[-122.49957569637658,50.41820813630339],[-122.49983164720177,50.41813356964233],[-122.5000875978779,50.41805899340902],[-122.50034526133676,50.41798503748169],[-122.50060450751026,50.417913380099634],[-122.50084418459491,50.417821428691745],[-122.50106429308279,50.417709174403335],[-122.50127446434978,50.417588733942964],[-122.50148125036297,50.41746649486726],[-122.50167822914132,50.41733439144792],[-122.50188325477994,50.41721210507583],[-122.5021195414103,50.4171183526436],[-122.50237565635986,50.417041527379105],[-122.50263827804294,50.416971663331246],[-122.50289751476656,50.416900000498295],[-122.50314874554026,50.416817963294626],[-122.50337843223126,50.41671837715019],[-122.50359008951752,50.41660135309698],[-122.50379189623234,50.41647502128743],[-122.50417732442784,50.416229654893705],[-122.5045521671256,50.41628027318249],[-122.5048274464571,50.416319886737725],[-122.50510470108922,50.41635674597048],[-122.50538067665677,50.416387374523794],[-122.50565927747112,50.41640684846654],[-122.50594263121596,50.41638766943562],[-122.50622672289171,50.41635894961914],[-122.50650052943172,50.41637208065318],[-122.50676804407456,50.416420998849354],[-122.50703139327513,50.4164782238342],[-122.50729598058064,50.41654222560507],[-122.50755666300903,50.41661116869632],[-122.50781884335085,50.416683532053064],[-122.50807737922277,50.41675747125806],[-122.50833595966338,50.41683084444967],[-122.50859462768882,50.41690309519824],[-122.50884947845714,50.41697915652883],[-122.50910226874578,50.417059092806056],[-122.50935124117913,50.417142848681955],[-122.50959828435438,50.41722878332577],[-122.50983764801197,50.41732291423728],[-122.51006551421442,50.417429052694736],[-122.51029526864266,50.41753356775269],[-122.51052506782979,50.41763751691679],[-122.51075868675562,50.41773764536288],[-122.5110018735009,50.41782796244831],[-122.51124690605505,50.41791720351251],[-122.5114958442004,50.4180015109136],[-122.5117713571208,50.418038298074656],[-122.51201485117359,50.41812468199828],[-122.51223521966928,50.41823676919127],[-122.51246700135094,50.418337960482674],[-122.51271006511908,50.41842995201857],[-122.51295493033795,50.418521441885055],[-122.51319242073845,50.41861718836402],[-122.51335931488647,50.41876020273697],[-122.51357085762264,50.418712879567664],[-122.5137526820314,50.418571282584004],[-122.51398393852091,50.41847397365482],[-122.51424188507134,50.418396054569456],[-122.5145041069181,50.4183312063148],[-122.51478371157938,50.41829221126092],[-122.51505187996594,50.41824160126771],[-122.51525023359257,50.4181140164898],[-122.5154664464667,50.41800611047332],[-122.51573478483786,50.417953264111134],[-122.51601460285188,50.41791145685456],[-122.5162814858465,50.417854622988415],[-122.51651611866846,50.417759097464106],[-122.51673486317999,50.41764114762833],[-122.51696790886508,50.41754333117595],[-122.5172303385271,50.41747566732133],[-122.5175020135366,50.41742517079876],[-122.51778313568356,50.41741207193752],[-122.51803972834767,50.4173515369207],[-122.51827663062602,50.41724934076856],[-122.51853356770066,50.41718431723503],[-122.51881781337573,50.41717637894826],[-122.51910260560717,50.417184200914996],[-122.51938093061396,50.41718450488648],[-122.51964168291711,50.41711566722679],[-122.51987849456255,50.41701458048965],[-122.52010425642656,50.41689684467493],[-122.52033108291515,50.4167881383112],[-122.52057228401517,50.416721491490115],[-122.52085100848782,50.416762297456884],[-122.52113450195841,50.416786941855385],[-122.52139349255978,50.41671803589362],[-122.52165423910543,50.41664919346176],[-122.52192718669738,50.41660490686703],[-122.5222070634737,50.4165850105515],[-122.52248934507755,50.416556759334824],[-122.52250406236945,50.41638853777467],[-122.52249050161714,50.41619862893583],[-122.52256026019103,50.41602482053466],[-122.52266301962854,50.41585711270184],[-122.52277786370787,50.41569259988005],[-122.52290646400886,50.41553245005144],[-122.5230419201415,50.41537476431182],[-122.52318251821978,50.41521892208464],[-122.5233300148826,50.41506498746591],[-122.52348595185488,50.41491581569825],[-122.52365212929534,50.41477090544642],[-122.52381667821038,50.414624252527574],[-122.5239676854594,50.414470427209984],[-122.52412537561324,50.41432130956184],[-122.52435808630597,50.414227399159145],[-122.52445439767527,50.41407466440137],[-122.52453297485467,50.41390057346925],[-122.52462882204455,50.41373096459919],[-122.5247778072236,50.41358044843898],[-122.5249660870938,50.41344578373619],[-122.52514078258882,50.41330450313446],[-122.52529846480374,50.41315538360081],[-122.52544933227703,50.41300324324833],[-122.52559672767224,50.41285042704055],[-122.52574768012516,50.41269715539689],[-122.52587103237504,50.41253627978745],[-122.52596331431407,50.412367115714645],[-122.5260435536668,50.41219420029197],[-122.52612726410246,50.41202195140431],[-122.52622652951642,50.411853572799906],[-122.5263344084825,50.411687704266605],[-122.52643885779432,50.411520612532975],[-122.52653464998505,50.411351557950915],[-122.52661137091121,50.4111785317196],[-122.52668290589823,50.41100421828197],[-122.52675615474267,50.41083051628636],[-122.5268189454219,50.41065537081602],[-122.52684505062807,50.41047625938082],[-122.52687466999707,50.410297258066954],[-122.52690424633776,50.41011881314619],[-122.52693035089598,50.409939701570806],[-122.52695469808319,50.40976053486654],[-122.52697913135209,50.40958024625882],[-122.52697004881715,50.40940059832129],[-122.52683923810686,50.409246364012446],[-122.52666517811824,50.409104835153066],[-122.52652206868942,50.408950223777005],[-122.52638624829736,50.40879245800237],[-122.52625767271326,50.40863211224579],[-122.5261453000332,50.40846721829066],[-122.52604913080408,50.408297767208545],[-122.52598686496535,50.40812263171855],[-122.52593175777021,50.4079460292743],[-122.5258373475362,50.40777663299691],[-122.52572677909171,50.407611228124075],[-122.52560365303485,50.40744880295835],[-122.52546603979467,50.407291546073445],[-122.52530292205459,50.407145301483354],[-122.52511970161757,50.4070085381646],[-122.52492910811974,50.40687605047597],[-122.52470568107631,50.40675826737873],[-122.52458358391308,50.40660543632547],[-122.5245376145258,50.406424621012285],[-122.52453042919218,50.40624334000802],[-122.52455649740929,50.406064793540736],[-122.5245949515122,50.40588550203316],[-122.52462457678364,50.40570650029197],[-122.52462608987312,50.40552661659102],[-122.52462057499189,50.405346512370556],[-122.5246396579122,50.40516717978513],[-122.5246657685842,50.40498806763283],[-122.52461945452575,50.40481174841351],[-122.52457147088224,50.404634243177426],[-122.52455361413534,50.40445431832622],[-122.52449667373772,50.404278781100125],[-122.52441123390373,50.40410741471225],[-122.52432228084858,50.40393593797247],[-122.52424395636609,50.40376367001642],[-122.52417107590922,50.403589323620864],[-122.5241088238325,50.4034141860437],[-122.52404665857357,50.403237926528725],[-122.52399687843636,50.40306093098488],[-122.52397015379621,50.40288185190048],[-122.52397197191742,50.40269803655636],[-122.52398266006279,50.40251338393006],[-122.52398061903392,50.402333945703624],[-122.52393445289658,50.40213288942948],[-122.52270526553671,50.401994780820644],[-122.52154364691455,50.39896692835016],[-122.52332821061083,50.3953658138715],[-122.52447590365608,50.39216639917863],[-122.52448067262209,50.38679436963926],[-122.52232417565399,50.382972745636344],[-122.51830049543689,50.377436915317],[-122.51427691566332,50.37446838839585],[-122.50783606400249,50.37236083693765],[-122.49988790208111,50.371907926606376],[-122.49005181303585,50.371110065492964],[-122.4833544106203,50.36996683578354],[-122.4809487488396,50.369400029453374],[-122.47460246922354,50.36466287532608],[-122.47021825034498,50.359692089929695],[-122.46120887137074,50.35358520157945],[-122.45655352008123,50.35084939963096],[-122.44994855621657,50.34696210872527],[-122.4450455159772,50.343992863067136],[-122.44173906835523,50.34148414186268],[-122.44004532223664,50.33708143382539],[-122.43941647125922,50.332915976111494],[-122.4387080526177,50.32869055545839],[-122.4381735395656,50.32869021074909],[-122.4324539558276,50.330402725163594],[-122.42477462289786,50.33234179052925],[-122.41433161704524,50.33399506914899],[-122.40299478646423,50.333077457579144],[-122.396657864558,50.33068066095843],[-122.39122178254293,50.32599243134667],[-122.38695341777672,50.32113789141202],[-122.38382317640226,50.319827509890935],[-122.37963615732151,50.31942276804661],[-122.37678034256649,50.31890459618879],[-122.37000367971024,50.31519252887787],[-122.3669784213522,50.31170910462229],[-122.36342249743936,50.30696065297457],[-122.36004423009943,50.29913748700035],[-122.35933046539687,50.295426136189256],[-122.35747984200735,50.289947795126444],[-122.35809903226061,50.2874918049268],[-122.36292577283355,50.282692965372696],[-122.3668622875966,50.276015894561326],[-122.36767856594867,50.26899027489369],[-122.37081509528795,50.26368380615801],[-122.36484268749598,50.25950966711437],[-122.35825594949648,50.25722611305571],[-122.35255477917029,50.254766667591106],[-122.3456043427169,50.2521322453316],[-122.3426714515004,50.25018908139197],[-122.34232104364918,50.24722225183456],[-122.34616386195358,50.24379810443671],[-122.35489719974862,50.24083472087326],[-122.35962888918645,50.238036264006666],[-122.36088602778248,50.234443042158105],[-122.35786033886421,50.232613029978175],[-122.34984231741021,50.230375430824814],[-122.34307964713042,50.22911592891395],[-122.33434879281022,50.22894034829993],[-122.3242803389211,50.22916162327423],[-122.31412728518745,50.228694603631745],[-122.3108331128642,50.22812098882657],[-122.30450300405062,50.22811385836097],[-122.29569746081182,50.227307202396325],[-122.28919923021355,50.22575283047224],[-122.28322499616884,50.22483167149648],[-122.27486039925921,50.22430648941258],[-122.26693534212748,50.22338827968665],[-122.26649697181176,50.22052933601064],[-122.27257898766598,50.216542591015234],[-122.27535867201527,50.20935238324139],[-122.27563040165859,50.20775160995888],[-122.27947968120382,50.20187601789808],[-122.28830769452068,50.20028744624547],[-122.29738787844819,50.1990385367391],[-122.29989258239164,50.195331217106805],[-122.30168634800192,50.19122083917898],[-122.30846735581463,50.18769048522007],[-122.31327143865597,50.18535086883591],[-122.31524974360363,50.18032895259807],[-122.31526082201482,50.17621890204676],[-122.31135231545319,50.17341662736076],[-122.30369274340043,50.17278413192315],[-122.29639847273369,50.17317540015225],[-122.29364598743777,50.172028624028044],[-122.29011258639888,50.165856088239046],[-122.28870517978935,50.16043572172916],[-122.28800444147613,50.15597576894878],[-122.28259979857711,50.151117983826744],[-122.27558498818678,50.14779749533908],[-122.27220928411283,50.144024271485236],[-122.27409697746282,50.14031216084663],[-122.27286961374148,50.136145210968564],[-122.26648408287654,50.13116877391493],[-122.26108446899087,50.12665295016858],[-122.25894745910372,50.12487903735436],[-122.25745006307302,50.12282302641535],[-122.25647574847969,50.12121910905336],[-122.25266885873611,50.117622772436434],[-122.25098042868754,50.11653118602762],[-122.2458347121342,50.113557877217694],[-122.24106550127976,50.10823979565891],[-122.2396706773887,50.10292771141473],[-122.24030556532287,50.09761857181999],[-122.24743821470823,50.09277158010166],[-122.26201263274932,50.089307141871075],[-122.26850600518975,50.08726147198499],[-122.2722421936646,50.08572680206191],[-122.27883301229261,50.07888413825868],[-122.27901981565267,50.074717492688556],[-122.27975277554287,50.071056539281926],[-122.28199532153327,50.06535255152002],[-122.28502066138694,50.06101739518603],[-122.28680572001981,50.05627903795684],[-122.28681504995731,50.05410701217036],[-122.28052278225519,50.051192366348424],[-122.27351859145259,50.0489564808391],[-122.27183641320808,50.048326070175456],[-122.26483839850785,50.04432025694857],[-122.25961605344345,50.04134726318488],[-122.25616925149512,50.039060207699514],[-122.25138379500022,50.033340090964515],[-122.25035398056089,50.027341756973584],[-122.25126295895612,50.019691731716705],[-122.25323500880235,50.01593115597896],[-122.25323117190405,50.01478822682216],[-122.25270741728663,50.01147246492584],[-122.25165641210349,50.00930287692429],[-122.25166625019266,50.00884350361462],[-122.25166276417436,50.00650766931929],[-122.2526470796921,50.0038803397268],[-122.25296238227372,49.99970469175916],[-122.25225139135306,49.99713984561839],[-122.25064727628549,49.99473747375627],[-122.24664535276419,49.991946944995235],[-122.24317911344882,49.98977893405338],[-122.24077367957923,49.98812827385471],[-122.24228324676939,49.98641591007562],[-122.24660683724804,49.982066236376824],[-122.25254008068728,49.97680579304081],[-122.26040731014197,49.972796645861784],[-122.26466621343093,49.97022224086819],[-122.26465304816541,49.968848780569],[-122.26419907253523,49.96416561109433],[-122.26046092569032,49.95886060730925],[-122.25387736776,49.95304346027714],[-122.246597016421,49.947915499008445],[-122.2404658633403,49.94392824184361],[-122.23744537382377,49.94164619423407],[-122.23530911223962,49.93862516245959],[-122.23317829937197,49.935372401693506],[-122.23272652124459,49.931888640055234],[-122.23448713993574,49.92897333716321],[-122.24075798981994,49.92513520895525],[-122.24491162663719,49.92227483552817],[-122.24472804878405,49.919250488513114],[-122.24223880371011,49.91679870155867],[-122.23834510757209,49.91549110332204],[-122.23320085945818,49.914811729948404],[-122.22133695095839,49.913626922836585],[-122.21256405015276,49.91249543277175],[-122.1999079046829,49.910622969036496],[-122.1937001428618,49.91017097510936],[-122.19113546442856,49.90983191105874],[-122.1808681239556,49.90858279502304],[-122.17307469205556,49.908592630795795],[-122.1657170108706,49.909057272871],[-122.16015319123638,49.90957310576807],[-122.158466927088,49.9092348048497],[-122.15545205121256,49.90729086650044],[-122.15119272154699,49.903409801653645],[-122.14356775998648,49.895652072339196],[-122.14100120245055,49.89039716483969],[-122.14020481379532,49.88959688554962],[-122.13391159358079,49.88492108417286],[-122.1286924947447,49.87892810356348],[-122.12487424342706,49.87384443336611],[-122.12019221392661,49.86893705797913],[-122.1136319248584,49.86385461924451],[-122.11071657109665,49.861287918988474],[-122.1057608440284,49.85586567994659],[-122.10213573842455,49.85118121772516],[-122.10089001753225,49.84815414510501],[-122.09814896319368,49.84650169218454],[-122.09319540498781,49.84467610801606],[-122.08860523349298,49.841535446339975],[-122.08090492044293,49.8387970079849],[-122.0772842497536,49.83816446235906],[-122.07038445336927,49.83616714000032],[-122.06216787074707,49.832171467333126],[-122.05686878474509,49.830512341499094],[-122.05014772801381,49.82936896700102],[-122.04687728567572,49.82840014333442],[-122.04282281788295,49.825716339113086],[-122.04149314813193,49.824517005952494],[-122.0376026489484,49.820750218774364],[-122.03582202515405,49.819459010151114],[-122.0325764068774,49.817091181542224],[-122.02895532201208,49.81520608473866],[-122.02550757700408,49.81389178624887],[-122.02055539853579,49.812921131857806],[-122.01463775247886,49.81377384831757],[-122.01162953704014,49.81508548225935],[-122.00800417202258,49.816451605227336],[-122.00340648801793,49.81747693333498],[-122.000136424423,49.817478849139654],[-121.99948994865456,49.817870628792484],[-121.99606765427264,49.81881709740672],[-121.9908762692211,49.81978299935657],[-121.98976851843499,49.8216265128755],[-121.9870172370499,49.8284052119661],[-121.98281262981682,49.8336532425879],[-121.97735624097666,49.835077178772515],[-121.96998586594462,49.83720715124428],[-121.96750475395115,49.84071845272081],[-121.96971932726608,49.84481611796218],[-121.97253585674474,49.84856547016907],[-121.97129351458285,49.85223672256578],[-121.96652211559847,49.85628557457485],[-121.95789290263603,49.8578009396777],[-121.95471489650375,49.85783034325338],[-121.94710027508992,49.857161070377835],[-121.94028938457784,49.85716678948978],[-121.93334977165937,49.85940273899983],[-121.92727563631941,49.86426790775236],[-121.9226678827763,49.86814036717472],[-121.91803484719136,49.870414648258986],[-121.9106408828219,49.872086782534865],[-121.90321511825083,49.87255255412418],[-121.89763682916666,49.87214644646867],[-121.89004159456773,49.872325183302664],[-121.88507142422091,49.87197448872691],[-121.87868822958987,49.871225811649545],[-121.8721915425946,49.86911291811211],[-121.8671280919327,49.868411650731026],[-121.85763178923278,49.86666522534736],[-121.85228905216111,49.86505472589259],[-121.84758679656308,49.86406503396406],[-121.84241511299388,49.86211203752087],[-121.83121195487608,49.858483795228395],[-121.82418946548884,49.85683142966641],[-121.81865435943823,49.854302028431775],[-121.81624296072171,49.85295260447558],[-121.80810479164947,49.847988186371225],[-121.80300195761292,49.845169312660516],[-121.79826872998494,49.84257776289456],[-121.79411288177874,49.84204126489111],[-121.78760696647248,49.84449601824362],[-121.78399032180421,49.849439510507636],[-121.78330592063651,49.85082065435351],[-121.78253114755745,49.851973100214444],[-121.78154875596316,49.85597989318693],[-121.78056381739187,49.86016334880711],[-121.7771198614961,49.864421873206716],[-121.77057060983383,49.869106925148444],[-121.7654014290663,49.87166507229089],[-121.76070279412087,49.871246582134674],[-121.75751352590522,49.86612559468638],[-121.75531898230159,49.86185156937345],[-121.75525606523918,49.85847774914521],[-121.75324289067808,49.85540652699608],[-121.74389690772695,49.85136254096283],[-121.7380254281916,49.84980331902056],[-121.73333655406137,49.84915645655956],[-121.72789831599377,49.847140055278956],[-121.72509121399638,49.84275395488725],[-121.72526765031267,49.838183801587235],[-121.72405177551882,49.83435869630732],[-121.71886421987729,49.831024955908724],[-121.71659950042232,49.827556112840085],[-121.71174892274024,49.823016677187],[-121.71073133546827,49.820507654191566],[-121.71884069853684,49.81981956282539],[-121.72595890731536,49.81707350362573],[-121.72922669561832,49.81247998319671],[-121.73000830828717,49.806637116555216],[-121.72814931297482,49.801507960394275],[-121.72416111693745,49.795646674071406],[-121.7180133245238,49.792661776644756],[-121.7125201914551,49.791903905321924],[-121.70881537926878,49.792102948441254],[-121.70729786924075,49.79137489128534],[-121.70407183498196,49.788249459921026],[-121.70347423612938,49.78453760223118],[-121.7064788401993,49.77948764498696],[-121.70669355808026,49.776454740486706],[-121.70937421263339,49.77351824851569],[-121.71373049684962,49.77005513639889],[-121.71428505811778,49.76650452663303],[-121.71157043117651,49.76297860234795],[-121.70959088402847,49.76110778909935],[-121.6994593708611,49.756492686595344],[-121.69085772362995,49.75410451136866],[-121.68988669435772,49.75393662077747],[-121.67821234981206,49.7523078067367],[-121.67139677461714,49.75103961193715],[-121.66389751509155,49.75097879028337],[-121.65673738524315,49.750858866564386],[-121.64996850797655,49.7515954468381],[-121.64250786255256,49.75405033434285],[-121.63817271000954,49.753450723176634],[-121.62707827333735,49.7499833473512],[-121.61715488542048,49.747075453937214],[-121.61087763633459,49.74557721011285],[-121.60813217591908,49.74536754330716],[-121.59965776410276,49.74519258352166],[-121.58879280422028,49.743431191610085],[-121.58143748815888,49.74159695569207],[-121.57931218664339,49.74086762694031],[-121.57389349466706,49.738556034302206],[-121.56853514762479,49.73447530104774],[-121.56442622073237,49.73027048721833],[-121.55745981433026,49.72430835389333],[-121.54990558853534,49.7204146226279],[-121.54590226829623,49.717869705225155],[-121.53919274389925,49.711165259394726],[-121.53381644689799,49.70490639330848],[-121.53015508637625,49.70172420478018],[-121.52608441502127,49.700039659695086],[-121.51619926104745,49.69946475788674],[-121.50827665870578,49.70026035083271],[-121.49956260938002,49.70105252895068],[-121.48960987961922,49.70088136129581],[-121.4793334220711,49.697512718100725],[-121.47217039721322,49.69595168988268],[-121.46288979092115,49.69348575003975],[-121.45402475482388,49.68907601815096],[-121.44721017527382,49.6865414353755],[-121.44232979692464,49.68382599451448],[-121.43472020393283,49.68106461025554],[-121.43154150068584,49.68050877111472],[-121.42563743905718,49.680142547500935],[-121.42104753879522,49.6798211446272],[-121.41735219358155,49.67943750173305],[-121.4150558238821,49.67922193984943],[-121.41377033079654,49.67500079626063],[-121.39643997657333,49.677315785541154],[-121.37119957669951,49.680695339562796],[-121.3620732455428,49.675541419069994],[-121.35277877610302,49.67151968767494],[-121.33824405724114,49.67101526935323],[-121.32967804070024,49.66968237159779],[-121.32675854972615,49.66809674271248],[-121.32541128262254,49.66524558845265],[-121.32328384210507,49.6547966851167],[-121.32217643783683,49.650685808492064],[-121.32076169924514,49.64932180783495],[-121.31622767180302,49.644539938070935],[-121.31352767331863,49.63837478742444],[-121.31101686076036,49.63376002176533],[-121.30929821193772,49.629539919391895],[-121.30828661445642,49.624915854943495],[-121.30622668729596,49.620920919869064],[-121.29667240285941,49.61593080731514],[-121.28544311532491,49.610263334576146],[-121.27732974319298,49.60720813335048],[-121.26637719494664,49.60239425949653],[-121.257882115052,49.596883205728595],[-121.2536421632974,49.59473261292385],[-121.24737489759313,49.59115316875991],[-121.24319668062807,49.58694127924933],[-121.23638164693256,49.58171249505519],[-121.23125366621225,49.57772769884433],[-121.22771365215297,49.57540011484576],[-121.21817496436225,49.58068779453108],[-121.21165027244652,49.58854199985969],[-121.20878795480225,49.59380832368261],[-121.20825351930958,49.59255403992454],[-121.20118288765376,49.587545543759695],[-121.19000134776363,49.585697343831306],[-121.18054772487079,49.59195947488704],[-121.17724212123626,49.59745169933438],[-121.17657319562798,49.60277237600336],[-121.17657104344617,49.60305714284527],[-121.17104050532994,49.603589702579605],[-121.16325718776649,49.60774889862493],[-121.16059985909558,49.60863225320333],[-121.15880067196537,49.61110656776328],[-121.156876923408,49.61186641621179],[-121.15547990925447,49.61302080294366],[-121.15454588039154,49.61476356023185],[-121.15476032010783,49.617480563462614],[-121.15071745323574,49.61847943572027],[-121.14777359008403,49.61865376069181],[-121.1436894625913,49.61951556389309],[-121.14126748942527,49.619604845471194],[-121.13865543942467,49.6209667467176],[-121.13742763265243,49.62208734495184],[-121.13419356468215,49.62277326090614],[-121.12749078744199,49.61994640121285],[-121.12538378058831,49.61967976254056],[-121.12338424084399,49.61578674885095],[-121.12363431547445,49.61133837927621],[-121.12294037693577,49.6108231483613],[-121.1200441701002,49.610551400359256],[-121.1165021718153,49.61126971851656],[-121.11642038016757,49.61151766451781],[-121.11218917962158,49.61376196176884],[-121.11108411933475,49.614897120568344],[-121.10986279834796,49.615300051978664],[-121.10374814075577,49.62259347473009],[-121.09813841416388,49.62578503657162],[-121.09723943738688,49.626022327160854],[-121.09382762271828,49.62550602679025],[-121.09247953190284,49.62592306311381],[-121.09088705437873,49.62693993473232],[-121.09008059500991,49.62708948348127],[-121.0856252983647,49.62686393030866],[-121.08186710491383,49.62556741223635],[-121.07927665098556,49.625670532448964],[-121.07375730657661,49.62489360665839],[-121.07160088816681,49.624958161766145],[-121.06787075284637,49.62573069188257],[-121.06395115946614,49.62568352200117],[-121.06259815106863,49.62601431546308],[-121.06107087982573,49.62719209998694],[-121.06042561696654,49.62855027832947],[-121.06065269621476,49.63134065929032],[-121.05998900432469,49.63209554080945],[-121.05580380097103,49.632449129864426],[-121.05261732642846,49.631384428570485],[-121.05134117473567,49.63164307034179],[-121.04972172258354,49.63315690631105],[-121.04774361674556,49.633750430983675],[-121.04448574255616,49.63399140482796],[-121.04177724347335,49.6346681857836],[-121.03858898304402,49.63413500064468],[-121.03522817418273,49.63494247624254],[-121.03224359034552,49.634963376753525],[-121.02959383122483,49.63637689238689],[-121.02857194429366,49.63659054359729],[-121.02847610891347,49.63657883051055],[-121.02433642536528,49.6394508132238],[-121.01775041277932,49.6419761424871],[-121.01772008881251,49.644174398031254],[-121.0172370122994,49.644151136765785],[-121.01405623125568,49.64418399205633],[-121.01020294195332,49.64644811414702],[-121.00118266468125,49.64913862415656],[-120.99335432379216,49.65399617671553],[-120.97648287347221,49.664363750094914],[-120.97121693759509,49.66745124962257],[-120.96365819192576,49.673461679353224],[-120.95644712272217,49.67767975523308],[-120.96044769025661,49.67905594288858],[-120.96314208922655,49.68056876947719],[-120.96716594833993,49.682749418312795],[-120.97254449402946,49.68587783704203],[-120.97309405070446,49.68643916727129],[-120.97198725360026,49.690456435630274],[-120.96959966112533,49.6932315807559],[-120.96365593751588,49.69524597495102],[-120.95822179492738,49.69931756883573],[-120.95774963818437,49.70121182460761],[-120.95662874589769,49.70774231830427],[-120.95287713675008,49.71241512324143],[-120.94747518654404,49.71465333433627],[-120.94425231811941,49.71577742741229],[-120.9381076928956,49.71705592641238],[-120.93308377439338,49.72026288994234],[-120.93169843456808,49.723994038253736],[-120.93153140614615,49.724624777028225],[-120.92990841948445,49.72949674832505],[-120.92784266135568,49.73095432396124],[-120.92365840862377,49.73283560819388],[-120.91763278719652,49.73827992203926],[-120.9166420496404,49.740693633749416],[-120.916662610886,49.74126040307209],[-120.91678620909299,49.74566188920105],[-120.91693807776241,49.75068626362955],[-120.91678942333164,49.7517754275848],[-120.91798296921704,49.756563168345615],[-120.91692649277623,49.75994193783825],[-120.9161598722897,49.76058244332816],[-120.91275816074425,49.762277828544654],[-120.9025322814999,49.76566109039895],[-120.89989326522182,49.76649627671958],[-120.8928526077516,49.77348947526115],[-120.8911492234701,49.77865459409305],[-120.88572963097421,49.78369170539509],[-120.87902812918084,49.787484978172415],[-120.87684144281218,49.79122791448258],[-120.87775653300882,49.792753544357026],[-120.8791248349677,49.79719700755026],[-120.878913452035,49.80256993838353],[-120.87850120399911,49.803889537557204],[-120.87785868343646,49.80589766007013],[-120.8757682035369,49.81026491709708],[-120.8711308860332,49.815232121492734],[-120.86879886942154,49.81714839743051],[-120.86320431745932,49.822811323013156],[-120.8628713067746,49.826644504546444],[-120.86412252176373,49.83051386677959],[-120.86833286230336,49.83595358115209],[-120.87072143745796,49.84260977448344],[-120.87076943275812,49.843921039050265],[-120.87040336176125,49.85004035841264],[-120.86652484468539,49.85379535089563],[-120.86418348062745,49.85565135778008],[-120.85842779202649,49.8618315900211],[-120.85110832928623,49.866035524025264],[-120.8464559662264,49.867228371627725],[-120.83853024767832,49.868633342306815],[-120.83190221430728,49.86916370004503],[-120.823543704072,49.86748785692226],[-120.81069467937309,49.86643447621576],[-120.80693926747922,49.86819009957265],[-120.80198862395156,49.87150043675765],[-120.79607470675036,49.872363551931],[-120.78956204509906,49.87346041182547],[-120.78762275773666,49.873710576528204],[-120.78447122479729,49.87517193822451],[-120.77958334535478,49.87791123490611],[-120.7773452262307,49.88016269433483],[-120.77699716816066,49.8804007806946],[-120.77641673721789,49.88206081839727],[-120.77643709255219,49.8828586176973],[-120.77672178474153,49.88720008780725],[-120.77833660345013,49.89186765155492],[-120.77845801228717,49.896662770012355],[-120.7744516143001,49.898992583596225],[-120.77084867491006,49.90023312137099],[-120.76344084509502,49.90094092921074],[-120.75448858519029,49.90063366922443],[-120.7472736830732,49.899054397501565],[-120.74370802401194,49.89766078725374],[-120.73592178905167,49.89414454153265],[-120.72557584725087,49.89105481960709],[-120.71767260283704,49.88953549589549],[-120.71181930966614,49.88959576669701],[-120.69881125966651,49.8927524706271],[-120.69695610164706,49.893346685747936],[-120.68674279127683,49.89573299867432],[-120.68232780629917,49.89949100387691],[-120.68137029752063,49.90435537486903],[-120.68041782159023,49.912648110330146],[-120.67772771938398,49.9152449031898],[-120.67469779768179,49.918477698283795],[-120.67372399630506,49.92179642851992],[-120.67173800405595,49.92804144038958],[-120.66962430596385,49.92892021960447],[-120.66745033002366,49.93031392628212],[-120.66248517408825,49.93407538820654],[-120.66213065074554,49.93447907872134],[-120.65842640761888,49.93879721953162],[-120.65465850864524,49.94448664363905],[-120.6539546786179,49.94500850589786],[-120.6516970527607,49.95091638993626],[-120.65228891750739,49.96159571864494],[-120.65235858941634,49.96421844871828],[-120.65249449104792,49.97044651363995],[-120.65041071315908,49.97629003278808],[-120.64565238970785,49.977878918879256],[-120.6402498439997,49.97792864081801],[-120.63116198280586,49.975674710857895],[-120.62590086802699,49.97440800897516],[-120.62109490102911,49.97331441910926],[-120.61467142138522,49.97203965888654],[-120.61463146730202,49.97191934819964],[-120.61455600675026,49.971404498563686],[-120.61455037258492,49.970890259112494],[-120.6145943006133,49.96986787418407],[-120.61464319230119,49.969173154011116],[-120.61480973758579,49.968784039048074],[-120.61496793679567,49.9685246906359],[-120.61546425689659,49.96800638015188],[-120.61601828942753,49.96748753212278],[-120.61650642927428,49.96708265380856],[-120.61706047216467,49.96653392846548],[-120.61745235068975,49.965923129928406],[-120.61781463420877,49.96514857103142],[-120.61784498143625,49.96469921585061],[-120.6177977680421,49.963382676666846],[-120.61777185935262,49.96037649916314],[-120.61781910665988,49.95911813741617],[-120.61785099505119,49.95827097903073],[-120.61789174348421,49.95786664810093],[-120.61796228708889,49.95706196483046],[-120.6180004816144,49.956531278381945],[-120.61822458927557,49.95590546489444],[-120.61848921801851,49.954921519503614],[-120.6185184190481,49.95470373219015],[-120.61854421591343,49.95454437932206],[-120.61850447734874,49.95431869525187],[-120.61848855907658,49.954127986718646],[-120.61843106015269,49.95396398091804],[-120.6183456253528,49.953785076431075],[-120.61820699863385,49.95358326902569],[-120.6180243119599,49.95339958410129],[-120.61771804236619,49.953197425612274],[-120.61731346454779,49.95299945045974],[-120.61686615228189,49.952808389712985],[-120.61630434062572,49.95265509644775],[-120.61572602639211,49.95255282790313],[-120.6150765439858,49.95247637074351],[-120.61441217850368,49.95240762661745],[-120.61372740051746,49.9524229688031],[-120.61308277784472,49.95245324895607],[-120.61242354764161,49.95250366323684],[-120.61124086475458,49.95266751065296],[-120.61018440321631,49.95282741467927],[-120.60920620620571,49.953049205570665],[-120.60778563643805,49.953407572414065],[-120.60661895476551,49.95373108749294],[-120.60511162696551,49.95414320067493],[-120.6033601616345,49.954654840935504],[-120.60280775022017,49.95477639766439],[-120.60208748473346,49.95489926253271],[-120.60122715200545,49.95502479329922],[-120.60024231415585,49.95515432223482],[-120.59942847632617,49.95521168054501],[-120.59860478098526,49.955219519959606],[-120.59739352540481,49.95519583327214],[-120.59646403999817,49.955123485529576],[-120.59586958726533,49.95503947728961],[-120.59549677694704,49.95498670338218],[-120.59475142567996,49.95487890158869],[-120.59392489211709,49.95471917763894],[-120.5933620139495,49.95458994146062],[-120.59265426098091,49.954341958762704],[-120.59180290340132,49.953964585414994],[-120.59081086160265,49.95340384860146],[-120.58874122301565,49.951885291258954],[-120.58646577401045,49.95012995533986],[-120.58437295141351,49.948367803853365],[-120.58347748526067,49.94762803218994],[-120.58257653357076,49.94696406919142],[-120.5812508370654,49.945979800640366],[-120.57977786174672,49.94492735146492],[-120.57851043106955,49.944115005498126],[-120.57753598332546,49.94351216031903],[-120.57634369659992,49.943008409322815],[-120.57480713019407,49.942448138361584],[-120.57337219159916,49.94203208716357],[-120.57251892222187,49.941879317068235],[-120.57156736769188,49.94173068361827],[-120.57066530929285,49.941665087545275],[-120.56979885324414,49.94169650385895],[-120.5690527941773,49.941787433928845],[-120.56882676817813,49.941837648027],[-120.56771085824539,49.94221850586602],[-120.56704191616214,49.94240962198641],[-120.56677221337613,49.94247458149581],[-120.56644702042908,49.94255087164698],[-120.56585132066355,49.942684178809564],[-120.56499091756915,49.942825766623194],[-120.56323076804001,49.94305792125243],[-120.56079695301624,49.943359163020546],[-120.55960451420563,49.943458275985165],[-120.55847264626219,49.943488813151696],[-120.55761330903493,49.94341622556562],[-120.55587182401659,49.943184217203566],[-120.55379035701188,49.94285974131788],[-120.55233916034203,49.942478668783686],[-120.55171106436237,49.942283391840256],[-120.55069172899256,49.94191308561907],[-120.54876200799377,49.94119645350406],[-120.54700282595572,49.940456157978076],[-120.54501199601485,49.93943374763669],[-120.54284397347321,49.938156161537385],[-120.5405979578013,49.93662662913913],[-120.53776990403931,49.934432226838204],[-120.53642536714328,49.93335338949142],[-120.53517282799726,49.932163025462145],[-120.53323709521813,49.93019056515101],[-120.53107334627839,49.927703894962185],[-120.52858039818358,49.92474696345543],[-120.5272357064423,49.92309136173153],[-120.5249735159075,49.92044120876846],[-120.52304938788018,49.918117911430336],[-120.52238368338489,49.91730899549681],[-120.52174673981159,49.91666779615001],[-120.521153440284,49.91618659179849],[-120.52044097672714,49.91562219806079],[-120.51981409996903,49.91504292175766],[-120.5185968357444,49.91394424438456],[-120.51746499813277,49.91302117407475],[-120.51648283086276,49.91233444707979],[-120.51469735513275,49.91120158180811],[-120.51283459068638,49.910160635902294],[-120.51081589601488,49.90918340820386],[-120.5089708930321,49.908271783954106],[-120.5068920956387,49.907360223364954],[-120.50525160830934,49.90670795037474],[-120.50416603244575,49.906302800564944],[-120.50293142398232,49.905845613363034],[-120.50126068748594,49.9052424840482],[-120.49810489743393,49.90398797841281],[-120.49340474068403,49.90173681424764],[-120.49270583116459,49.9013972291744],[-120.48224691408784,49.895935428175434],[-120.48087742640033,49.89524116627969],[-120.47066154668522,49.8905028647071],[-120.46745836649556,49.888977203258875],[-120.4627501543231,49.8868594072076],[-120.4579703666104,49.885162226744924],[-120.4555288198337,49.88445271238618],[-120.45290159427273,49.88380755941587],[-120.44954024160104,49.88330432707106],[-120.44737783731262,49.88315559757822],[-120.4458784902467,49.883277852574416],[-120.44370038983216,49.88354485180345],[-120.44137386224749,49.88411375265221],[-120.43847379637202,49.88509425458622],[-120.4359319682104,49.885925496578665],[-120.43386210112084,49.886619489196626],[-120.43181776835296,49.88674594412287],[-120.42816811836312,49.88693204025912],[-120.4259463067285,49.887225785466704],[-120.42413728328764,49.88793910078785],[-120.42199092385225,49.888714108153614],[-120.41811488957296,49.88969390639345],[-120.41518132177114,49.89054133822537],[-120.41304337074712,49.89083178444304],[-120.41076225258233,49.89076648654121],[-120.40825932649766,49.89051784885463],[-120.40592670628452,49.89023219957142],[-120.40339680222249,49.8897627736163],[-120.39986665197353,49.88946866817999],[-120.39768968674184,49.88950764949787],[-120.39455550410052,49.88969763650568],[-120.39333811293729,49.88994978037052],[-120.39140155086417,49.89050270125933],[-120.3877039107945,49.8918829984123],[-120.38350256015588,49.893299307269295],[-120.37933844964931,49.89458095930716],[-120.37471105279143,49.89607990775226],[-120.37138814956448,49.89710181057869],[-120.36960387893693,49.89747617685201],[-120.36766648969024,49.89766278214298],[-120.36623671154364,49.89776614055615],[-120.36525003389025,49.897743483120095],[-120.36299888356923,49.89746056722704],[-120.36033104150067,49.8971747101525],[-120.35673946949048,49.89676670195944],[-120.35405783500143,49.89647997583579],[-120.35146424699056,49.89614474524718],[-120.34895663269089,49.895763714274196],[-120.34705899351421,49.895431637736614],[-120.34159325435604,49.89436353800629],[-120.33577645424727,49.8931732157515],[-120.3314392041247,49.89211286285655],[-120.3287236673229,49.8913574809373],[-120.32704125879712,49.89077010191355],[-120.32587221816097,49.89019411621295],[-120.32457256366307,49.88933563251543],[-120.31931300329215,49.885021077824234],[-120.31871381404004,49.88449435269805],[-120.31797093650717,49.8838045334196],[-120.31642223666653,49.88220229256577],[-120.31411856837542,49.87988303255367],[-120.31138810938734,49.87715471920808],[-120.30893483068442,49.874626239534756],[-120.30691978532107,49.87272606263585],[-120.30566168456716,49.871708769246126],[-120.30369784640757,49.870239120814354],[-120.3019449159837,49.86912098921703],[-120.30017456007126,49.86824096957667],[-120.29873185671697,49.867614834233876],[-120.29810003790783,49.86749277576502],[-120.29764341962372,49.867462177759236],[-120.29679246939102,49.86748880249904],[-120.29643973953877,49.86753409731901],[-120.29184824648446,49.86893788588637],[-120.28035206215932,49.87228353854052],[-120.27245386502129,49.87553760181174],[-120.26311223241045,49.87781548077244],[-120.25269505739782,49.87959284747202],[-120.2440346744223,49.88186215378908],[-120.23987720742176,49.8830217315092],[-120.2336820191489,49.883845874142644],[-120.22528575281491,49.884494746189226],[-120.21707610941863,49.88384694297242],[-120.21044919493411,49.88307542337407],[-120.20565947918325,49.88339221976721],[-120.20295223366502,49.884155368173786],[-120.20011872539897,49.88510121761388],[-120.1937188993924,49.88816895042449],[-120.18892994293485,49.89094137713142],[-120.18612615337095,49.892223422061186],[-120.18350745022798,49.89325698994669],[-120.18042499344965,49.894531966560145],[-120.17307618330499,49.89706764440947],[-120.16542335684915,49.898670305719705],[-120.15843599664096,49.89943340670159],[-120.15071608952833,49.89939956320101],[-120.14161494833752,49.899409585473975],[-120.12999066263195,49.90116124190235],[-120.10935651337479,49.90452555595854],[-120.10821151095556,49.90471255470433],[-120.09983145786802,49.905601665182466],[-120.09616308556855,49.905994072905294],[-120.09478197178409,49.90616987319818],[-120.09195078652758,49.906527847802224],[-120.07717530232105,49.9084167567957],[-120.06246635335287,49.910319746012526],[-120.04895274440202,49.911548791266846],[-120.04006123295986,49.91186533466854],[-120.03675676812585,49.91168178415299],[-120.03526825849318,49.91147313671314],[-120.03094707000916,49.9106254148382],[-120.0297329458164,49.91030872083592],[-120.02838603296273,49.910072740426415],[-120.02452742156868,49.90912141696691],[-120.02419999313581,49.912967349343816],[-120.01926055818703,49.9151568048527],[-120.0137087765127,49.91774962788135],[-120.0110660658308,49.91936004325218],[-120.0091122022378,49.919767377182396],[-119.99939970441949,49.92423519531283],[-119.99805163021723,49.92608949874235],[-119.99652478399891,49.92760234251739],[-119.99426941945639,49.92912762526843],[-119.99102163152607,49.929697670825526],[-119.98599566586516,49.93029055894697],[-119.9815119500333,49.93122156829602],[-119.97657083237466,49.93169858088292],[-119.96950863403661,49.93003426765435],[-119.96715650072545,49.9285853541917],[-119.95989933527021,49.92417810129316],[-119.95502540583655,49.92162116071816],[-119.94788650467086,49.92012985371654],[-119.94145922100839,49.92085858631419],[-119.94420504822398,49.92333333000044],[-119.94446678570199,49.925677238732796],[-119.94190391410955,49.92834639926301],[-119.9391540109326,49.930737797173556],[-119.93811848972932,49.933900408675434],[-119.93563060943154,49.93599942160944],[-119.93325196495866,49.936435508613194],[-119.92648090297125,49.93762609067203],[-119.92226085495524,49.941071434630764],[-119.92078450178056,49.94406899017415],[-119.91854848880251,49.94856634565751],[-119.91829857079891,49.948972088624615],[-119.91491887792816,49.95113843508942],[-119.90978509116853,49.95345131387368],[-119.9067992480775,49.95423548962939],[-119.89916013884455,49.956241999748656],[-119.89485878954122,49.959742796287806],[-119.8936156142397,49.962339052058404],[-119.89222122938669,49.9629318900787],[-119.88987223531385,49.96427968084089],[-119.8873605973174,49.96569166861849],[-119.88238093462473,49.9677705794102],[-119.8767734097468,49.96733523429035],[-119.87129021656861,49.967536026869965],[-119.86540283790504,49.96876358913387],[-119.85928540545586,49.97148732637623],[-119.85789504447011,49.97225201676736],[-119.85455319513785,49.97360941163882],[-119.85473320238161,49.97361049076812],[-119.85478218612931,49.973610415447524],[-119.85480497895395,49.97361000715796],[-119.85492664566134,49.97360273042296],[-119.85504129255585,49.97359562811523],[-119.85506438749397,49.97359298054042],[-119.85538168749194,49.9735487438836],[-119.85541753916648,49.97354229079168],[-119.85544878610548,49.97353107590567],[-119.85563023370221,49.97345665214081],[-119.85586971430507,49.973457682881126],[-119.85601402007536,49.97347706206886],[-119.85630338679572,49.97352319032047],[-119.85653758187948,49.973563406216414],[-119.85685872408762,49.97360737214384],[-119.85705170981014,49.97365486790925],[-119.85708771101633,49.973660272143455],[-119.85712431627634,49.97366119789187],[-119.8571594127408,49.97366034232434],[-119.85724296258306,49.973676310958986],[-119.85742183573711,49.97372470184755],[-119.85761761316752,49.9738163487058],[-119.85769715711136,49.97399171247141],[-119.85779043695999,49.97416898381448],[-119.85780960733626,49.974195436790616],[-119.85788462659306,49.97427466785043],[-119.85791934445135,49.97430256156456],[-119.85800500776844,49.9743547469404],[-119.85802795207461,49.974366186883245],[-119.85823045139313,49.974459897052846],[-119.85827717126116,49.97447661445407],[-119.85853122271864,49.97453824511714],[-119.85884648534243,49.974651816297396],[-119.85890407309003,49.97466576775043],[-119.85901570267048,49.974681053689274],[-119.85905555485998,49.974683848479344],[-119.8595585306452,49.974689496762956],[-119.85960260835964,49.97468689692887],[-119.85984994491554,49.974655644710346],[-119.86005003370909,49.97465050400737],[-119.86024559276255,49.97465301454825],[-119.86028272734649,49.974662993560784],[-119.86031246528961,49.97467594203454],[-119.86051459459082,49.97483731195621],[-119.86055671115595,49.974862235328104],[-119.86081046732187,49.974977991877786],[-119.86098150090824,49.97504567375782],[-119.86101003093928,49.975054610501495],[-119.8611770634582,49.9751000745807],[-119.86119397050966,49.97510440678347],[-119.86121087756432,49.97510873898365],[-119.86130235681142,49.97513078927257],[-119.86133134090487,49.97513635810881],[-119.86149965623977,49.97515933192135],[-119.8615255450762,49.975161911471574],[-119.86172344719583,49.97517300672263],[-119.8618066995992,49.97519121109559],[-119.86164344902728,49.975351271111556],[-119.86162873168436,49.975369623401384],[-119.86157703192836,49.97544174689225],[-119.86142925487293,49.97564271655309],[-119.86137061058795,49.97570147314766],[-119.86116033523632,49.97591191590311],[-119.86095118928458,49.97611396552423],[-119.86093458447277,49.97613333998479],[-119.86085676922023,49.97624347274548],[-119.86084499446638,49.97626594273289],[-119.86077329438021,49.97644748748861],[-119.86076778414497,49.97646241214684],[-119.86072363366247,49.976673144083165],[-119.86070265359768,49.97678984774199],[-119.86066989810496,49.97694199875843],[-119.86066906915266,49.97697409808642],[-119.8606917165759,49.97711750617914],[-119.8607074923226,49.97715618595836],[-119.86075980296314,49.977235259961724],[-119.8609042029027,49.977422721110734],[-119.86102512927077,49.97762861178459],[-119.86104898235192,49.97765927921965],[-119.86124056109915,49.97783415121682],[-119.86128887055044,49.97786506162545],[-119.86156846079302,49.97799692828651],[-119.86184103218238,49.97811599179722],[-119.86215512063366,49.97825148727801],[-119.8625061995809,49.97841104811286],[-119.86285358333521,49.9785850655294],[-119.86293148504878,49.978630042510666],[-119.86327774111345,49.97881245119498],[-119.86333526273184,49.97885290141529],[-119.86352194687859,49.97901226957511],[-119.86355742836979,49.97906050906368],[-119.86368803125656,49.979246632391195],[-119.863739293943,49.979346519473076],[-119.86374133592973,49.97938329178101],[-119.86373666135084,49.97944394578501],[-119.86367937582581,49.979531549945],[-119.86367265866309,49.97954245424966],[-119.86366428138123,49.979552696972064],[-119.86365129965154,49.97957114672284],[-119.86351135824087,49.97966201525396],[-119.86348380711331,49.97967175198726],[-119.8634552741947,49.97967579332587],[-119.86320021142372,49.979673339147396],[-119.86289887477962,49.979663787611095],[-119.86285139497515,49.97966563880774],[-119.86256349811138,49.97969913789244],[-119.86228012947667,49.97972499353763],[-119.86218411333543,49.979736532688435],[-119.86216093964482,49.979739746025835],[-119.86189863269914,49.97979103039884],[-119.8618805165258,49.979795655257924],[-119.86161926531494,49.979865056410745],[-119.86158076906155,49.979878122880756],[-119.86132223664877,49.979992230269154],[-119.86130155345303,49.980002920059555],[-119.86107215760364,49.9801344534],[-119.86104868276531,49.980152874147414],[-119.86100859987708,49.980151755044254],[-119.86076470539784,49.980131312734414],[-119.86061162053439,49.98012498596058],[-119.86033556921507,49.980122485590385],[-119.86030212913779,49.980123994841165],[-119.86005219669093,49.980148335469664],[-119.86003445819608,49.98015015651176],[-119.8596896394479,49.980203586670555],[-119.85962781727254,49.98022098487049],[-119.8593687496882,49.98032603335314],[-119.85933885718498,49.980340150121336],[-119.8593077568241,49.980363223771924],[-119.85915157424088,49.98050958039076],[-119.85895342102117,49.98068177596694],[-119.85892299908598,49.98069981572975],[-119.8588763482812,49.98070848023495],[-119.85871216487483,49.980719577732636],[-119.858462305091,49.98071740466521],[-119.85824067614075,49.98071343923432],[-119.85798734403984,49.98071107032669],[-119.85794325920882,49.9807136784478],[-119.85768343317332,49.980746483613174],[-119.8574510849435,49.98077010829018],[-119.85738805295499,49.98078349367331],[-119.8573589146855,49.980792011853495],[-119.85721775278337,49.98082696017408],[-119.85716257030472,49.98084699472592],[-119.85701415961242,49.98092270658307],[-119.85696773265633,49.98095564110782],[-119.85684838051777,49.9810752904622],[-119.85684030350913,49.981083293428824],[-119.85670071712384,49.981249186865846],[-119.85659955922343,49.981311765079205],[-119.85638184693838,49.98140840593924],[-119.85633323152854,49.9814186558336],[-119.85631519027814,49.98142271548282],[-119.85629903508348,49.98142576189046],[-119.85600462817234,49.98149440937888],[-119.85594778427907,49.981513781606324],[-119.85568356492807,49.98164391937901],[-119.8554368609602,49.98174795643415],[-119.85528489898877,49.98178512116922],[-119.85487243045965,49.981795249076505],[-119.85485129361858,49.981796319088446],[-119.85471141241919,49.9818087746458],[-119.85466121108504,49.981817806755956],[-119.8544506682584,49.98187423546139],[-119.85439631498382,49.98188810630311],[-119.85425975166285,49.98192782149764],[-119.85422487391517,49.98193996959095],[-119.85420079188349,49.981949898850104],[-119.85413194322707,49.98198043680621],[-119.85392970173986,49.982040155204146],[-119.85359256100708,49.982101326242386],[-119.85329037010105,49.982162770476855],[-119.85325405916161,49.98217257264277],[-119.85317146959927,49.98220121967734],[-119.85311703812548,49.98222862253999],[-119.852983711475,49.982322097407675],[-119.85295585170972,49.9823470479996],[-119.85285052650232,49.98246635288544],[-119.85283089556425,49.98249514060416],[-119.85276874721092,49.98263153425257],[-119.85276119116034,49.982674545821496],[-119.85277459517899,49.98289921832475],[-119.85278244065701,49.982931813619615],[-119.8528795655384,49.98314539250729],[-119.85289692439146,49.98317231283416],[-119.8530010080233,49.98329547599221],[-119.8530087063531,49.98330324516915],[-119.853207068318,49.983505584974594],[-119.85321884262413,49.983522039018794],[-119.85323453201111,49.98361316620403],[-119.85322659656583,49.98367194957813],[-119.85322516133988,49.98368258128036],[-119.85322294369192,49.983880439590386],[-119.85322125926997,49.9840484291221],[-119.85320034257371,49.98408673790116],[-119.85318795989507,49.98410070791232],[-119.85315474154052,49.984113508409344],[-119.85311261677423,49.98411452816381],[-119.85301432564553,49.98411690752825],[-119.85292125105471,49.98406768788387],[-119.85278469939783,49.983977672841164],[-119.8526319945626,49.983877726165865],[-119.85244849327667,49.98375968869349],[-119.85228174845138,49.98366008133151],[-119.85206594785156,49.98348326612627],[-119.85187997230287,49.98327992273881],[-119.85180494745974,49.983200697495974],[-119.8516066675513,49.98301075916535],[-119.85141563545776,49.98281898014029],[-119.85140310607363,49.98280812387089],[-119.85124233644724,49.98267726357549],[-119.8510040496035,49.982498614399205],[-119.85096510130303,49.98247612180137],[-119.8508017556493,49.982403216999366],[-119.85078024295815,49.982394112360744],[-119.8507369914112,49.98237757798669],[-119.85063002979943,49.98234055363613],[-119.85061493350793,49.98233575307194],[-119.8502827993292,49.98224321599021],[-119.85014338533108,49.98217446976816],[-119.84994314213144,49.9820380059915],[-119.84985928821735,49.981972379715245],[-119.8497237324009,49.98187507875817],[-119.84963444303219,49.98181084362554],[-119.84962161190391,49.98180222632982],[-119.84933200249786,49.9816280271976],[-119.84931902024897,49.98162052946006],[-119.84930437802167,49.981612369923965],[-119.84925101534785,49.981580042237475],[-119.84917879031701,49.98150604376393],[-119.84915690922364,49.98146081916529],[-119.84914423785541,49.98141216806976],[-119.84916028396373,49.981228622044654],[-119.84916544963721,49.9810867727431],[-119.8491965126317,49.98092156008631],[-119.84921466607071,49.980761262712754],[-119.84921451719823,49.9807494139019],[-119.84921452904308,49.98069752235555],[-119.84921706279968,49.980510401450864],[-119.84922035031684,49.98033065092644],[-119.84921358062239,49.98022535808443],[-119.84921162059442,49.98021396706308],[-119.84917068052194,49.979999026446876],[-119.8491687205144,49.97998763542134],[-119.8491003028044,49.97978186356753],[-119.84909638045427,49.97977204993201],[-119.84901655701766,49.97959892050112],[-119.84895319526645,49.979407529054335],[-119.8488849995304,49.979226027811436],[-119.84872173455624,49.97888068386994],[-119.84862538560041,49.978700416366976],[-119.84853681415153,49.978514376594475],[-119.84848590714897,49.97833440553801],[-119.84841703748269,49.97814496900856],[-119.8483656814504,49.97795537919311],[-119.84835007874142,49.9778636952944],[-119.84836491688007,49.977689105308116],[-119.84839228470733,49.97751240350642],[-119.84842415757143,49.977431843081035],[-119.84849674070418,49.97724414435131],[-119.84854258021716,49.977150831384776],[-119.84862972176475,49.976997793411385],[-119.84872011352367,49.97682068837056],[-119.84879669270086,49.9766422386986],[-119.84879986595836,49.97663169552584],[-119.84882192265609,49.9765590487397],[-119.84882577580669,49.97654347183139],[-119.84883386936737,49.97647060012422],[-119.84883591149422,49.97645548100777],[-119.84884138008188,49.97631139160072],[-119.84883649293937,49.97623102202034],[-119.8488142643264,49.97607183933555],[-119.84880709907786,49.97604718716514],[-119.84872562718964,49.97586041739172],[-119.84871868575725,49.97584705877519],[-119.84415611817411,49.977314932789],[-119.83991705572495,49.98041064779114],[-119.83851295188258,49.980548244879],[-119.83603056663799,49.98058733487571],[-119.83000508528065,49.98095362200749],[-119.8284262486511,49.98165714728749],[-119.82652168246096,49.98249176920076],[-119.82567402501897,49.98399514320121],[-119.82573275651264,49.98541988349346],[-119.82772542665414,49.98682728647958],[-119.83132579821434,49.98814696922474],[-119.83467551230962,49.990388731004145],[-119.83075818976413,49.99233579788422],[-119.82731468934907,49.99295402212915],[-119.82532967465609,49.99458449014123],[-119.82540479245509,49.996817294438095],[-119.8254477472719,49.99784233327164],[-119.82353779917987,49.99902069341319],[-119.82120743587784,49.99999481618963],[-119.81620233712816,50.001383694414784],[-119.81186767627479,50.00195849822345],[-119.80680815825565,50.00158233894158],[-119.80208835037455,50.00107681777217],[-119.79447277039475,50.0014771215047],[-119.78503431655525,50.00281760075216],[-119.77906251502753,50.00450538453772],[-119.7743644508044,50.00732006889899],[-119.77128596635892,50.01067848617545],[-119.77318305782418,50.01390677501852],[-119.774439320157,50.0143476269336],[-119.77961148880377,50.01524151803197],[-119.78657467082616,50.0164578292464],[-119.79355596069847,50.01846776467675],[-119.79707261740691,50.01989988284573],[-119.79761317668182,50.02035294637247],[-119.79968413128485,50.02386344475199],[-119.8034367018772,50.02706452998201],[-119.80544402138734,50.031150511390905],[-119.80208465472128,50.0340053178664],[-119.79790696141565,50.03617863826212],[-119.79184332133947,50.03810065202606],[-119.78629687541878,50.03920785471873],[-119.78123978853039,50.039398898451054],[-119.77966270337328,50.039761238002036],[-119.77268567983111,50.0411791942993],[-119.76059271309634,50.045353918423274],[-119.75857875803906,50.049099726470246],[-119.7587046509392,50.052470921290535],[-119.75685494992983,50.055527736956854],[-119.75727768721573,50.06020748075353],[-119.76216997266131,50.06327894009455],[-119.76218659995037,50.06356641991337],[-119.75944133961188,50.06640367983204],[-119.75358850087014,50.069401295328184],[-119.74510622976871,50.073359389190706],[-119.74150015633822,50.0772403151021],[-119.74479836446348,50.07987406543912],[-119.75202955614384,50.08114670866496],[-119.7584531698271,50.081969640167],[-119.75957878219243,50.08378271341169],[-119.75871664354246,50.08464629316453],[-119.75392778438034,50.087234649289115],[-119.74663255142548,50.089680624459575],[-119.74293600342847,50.090645430820956],[-119.7411489068289,50.09312684272463],[-119.74180377951753,50.09672380570182],[-119.7400312995121,50.09960592444697],[-119.73985711651117,50.10229432093311],[-119.7377730749997,50.106211686892046],[-119.73709302821021,50.107478635890814],[-119.73649066491798,50.1133705079749],[-119.7384485914291,50.11871514044642],[-119.74492146878717,50.123598289378414],[-119.74600293248609,50.12369765433551],[-119.74988830993182,50.12301184944333],[-119.75554251823951,50.12202039028501],[-119.75838303803819,50.122089881478566],[-119.76214098646322,50.12283913356041],[-119.76409611634399,50.122813085325994],[-119.76602764440992,50.12203892176791],[-119.76928835280076,50.12119518242395],[-119.77284796243647,50.12113928074746],[-119.7757331695787,50.12241779985542],[-119.77755524202861,50.126331320915725],[-119.77677468864779,50.12680146612684],[-119.77652374395308,50.1300645754515],[-119.7760977551072,50.133272630169316],[-119.77620267720673,50.13875256314793],[-119.77622953106734,50.142242284275355],[-119.78051424847318,50.147666023586126],[-119.78417663867775,50.14841233550573],[-119.79116523045407,50.149797606252385],[-119.7958655339355,50.15179038199871],[-119.79900087906105,50.155059420790735],[-119.80222543672049,50.161071313734496],[-119.80457332317015,50.16692310078923],[-119.80836402085403,50.173843435391376],[-119.81105737948435,50.17717556209179],[-119.81597167071737,50.18030481455093],[-119.82045894078459,50.181209425771456],[-119.82449700564484,50.18200741614931],[-119.82511662022564,50.18199933863206],[-119.82781716878522,50.18281348116748],[-119.82674581356345,50.18551878037225],[-119.82244388047981,50.18706660185834],[-119.81645980069733,50.1889878036132],[-119.81322956045959,50.19091920369979],[-119.8102229710972,50.19399036875884],[-119.80675175606206,50.19644546204274],[-119.80426576639954,50.199508564338274],[-119.80259923864966,50.202850093866026],[-119.7982727739882,50.203941748716524],[-119.79400872148517,50.20406288287047],[-119.78723688559015,50.204214880285846],[-119.77919339968547,50.20307708392519],[-119.77483837133421,50.20078941341987],[-119.77124840925279,50.20010018176041],[-119.76805395051359,50.200319175511524],[-119.76159600253435,50.20166598664557],[-119.74971141411105,50.20309408898796],[-119.73931660671055,50.20381165410423],[-119.7381614245568,50.20657192446624],[-119.74145400003194,50.21155220236246],[-119.74467337176186,50.217678601327876],[-119.74757977461572,50.221695952925835],[-119.75234104450256,50.22563402960143],[-119.75697171305312,50.22848394992912],[-119.76033080361245,50.23300749627709],[-119.7604183704509,50.23808997457914],[-119.75956458557822,50.2390758307873],[-119.75744842375025,50.242478146598174],[-119.7538312343109,50.249103253111414],[-119.75345394472234,50.25642567270231],[-119.74768246640845,50.25987599718243],[-119.7386447519753,50.261377759728724],[-119.7367667289902,50.26151521781483],[-119.73213829128868,50.261580853228246],[-119.72114743079388,50.263448334759936],[-119.71561086235201,50.26609452701013],[-119.71040782501179,50.270794155766445],[-119.70797509634808,50.272484706364516],[-119.7039445652532,50.277454004680806],[-119.69913568934446,50.28335090870773],[-119.69463435241005,50.287639980058444],[-119.68980304746214,50.29004623685998],[-119.68767466678379,50.29327810928891],[-119.68712277892598,50.29551407619095],[-119.68367322573329,50.29921951560623],[-119.68127341494909,50.30519276619394],[-119.68457564390353,50.307892434247734],[-119.68814689545599,50.30796259748977],[-119.694379994416,50.30764853813271],[-119.6995851287166,50.30843707464118],[-119.70149432569023,50.3096084858812],[-119.70234391918171,50.31079607220129],[-119.70464417509818,50.313108516524686],[-119.71096473677848,50.315309505990825],[-119.71804062651744,50.316240360278634],[-119.71953535337387,50.31816709978184],[-119.71380324422111,50.3202440237407],[-119.70396515705114,50.32283761989152],[-119.69717178550194,50.32492932979621],[-119.69088495298158,50.32672197742989],[-119.6834768649339,50.32956891952731],[-119.68231813593853,50.329583807009435],[-119.67166232638093,50.331439375349035],[-119.66427601526338,50.335020593857244],[-119.66430729616734,50.33902053169143],[-119.66563354915517,50.341232723733846],[-119.66875959449337,50.34439621527481],[-119.6682154581972,50.34696799395395],[-119.66641131631356,50.34916582244964],[-119.66407403145624,50.35154111442029],[-119.66259599661319,50.355735755621154],[-119.66098377057963,50.358271012270684],[-119.65833401320273,50.35944915425455],[-119.653537251049,50.36053603865507],[-119.6465975794455,50.36120062006124],[-119.64448950826916,50.36253761569567],[-119.64544752766469,50.36475644044164],[-119.6461472262959,50.36720625960506],[-119.64447517949829,50.37065759731012],[-119.64031883171612,50.37219810869413],[-119.63578924181655,50.37327938711817],[-119.6338433427797,50.37656257737838],[-119.63487793172709,50.37843738560622],[-119.63824416966912,50.383305969863116],[-119.6404378921185,50.387680058565614],[-119.64036976140072,50.388363520330984],[-119.63825756479793,50.39222249646679],[-119.63702119538468,50.39898230607723],[-119.63727900461978,50.4040630995732],[-119.6400084108209,50.411857879873075],[-119.65001944511292,50.41161667790066],[-119.6673370319992,50.410363268519085],[-119.67962643357676,50.40888309116496],[-119.68994746162312,50.40692223345828],[-119.6919834996987,50.4066093079145],[-119.68825912339689,50.41020105473179],[-119.6794589510338,50.41763571601773],[-119.67285483476189,50.424006255259634],[-119.67060542224011,50.426435180145646],[-119.66516282784211,50.42965447268143],[-119.6560749142435,50.433654701824686],[-119.65228365360868,50.43547615320797],[-119.64668526951108,50.436974970153045],[-119.63196886255894,50.4414541490495],[-119.62554374483659,50.44198867573527],[-119.61609370230926,50.44330978935385],[-119.60846845005898,50.445520437281566],[-119.60509834792622,50.44664467120368],[-119.60182385907501,50.447891056799534],[-119.59244533512246,50.45177554598287],[-119.5874299969184,50.45481089758469],[-119.58437885065851,50.45775802969308],[-119.58354335237885,50.46262780166283],[-119.58199798227521,50.46493247393417],[-119.58038652044672,50.46472289199496],[-119.57678315841599,50.46419361874836],[-119.57449904278792,50.46245174579986],[-119.56773464064626,50.45750887709558],[-119.56427838525067,50.45268907222034],[-119.56052362499345,50.44976393862401],[-119.55651644923707,50.44415775860459],[-119.54945912762994,50.43852695001423],[-119.54511917373992,50.43703546974259],[-119.54235978820924,50.43438470376958],[-119.53829047296392,50.429630537910974],[-119.52992789644597,50.4279016379467],[-119.52571767904878,50.4277810586715],[-119.523544312955,50.42706451023621],[-119.50617868307552,50.4235542241526],[-119.48902999130951,50.42129796740224],[-119.47839160546413,50.421247556868316],[-119.46922438164422,50.419922651029246],[-119.46125600375642,50.41949692710677],[-119.45055341160308,50.417165363631845],[-119.44710530878352,50.41200396042388],[-119.44654059240685,50.41063827950843],[-119.44148079411049,50.402184133513224],[-119.430427324653,50.39676615922214],[-119.42207001716524,50.395256640019724],[-119.42441229127918,50.39905835556958],[-119.42742962418369,50.40530856889121],[-119.42623427238743,50.407205416285684],[-119.42062501396124,50.40835290879484],[-119.40721137607301,50.411925207639506],[-119.3974210263458,50.41728667801739],[-119.39663158863226,50.41775338459049],[-119.39021549519612,50.42216846909383],[-119.3860557232339,50.42392046826092],[-119.37976843826306,50.423019151235096],[-119.37140201712337,50.42145021810411],[-119.36522704427796,50.42122995803372],[-119.34958633335991,50.42986347098634],[-119.34687596945334,50.43136112148791],[-119.3272566445986,50.44149547892236],[-119.30289341709117,50.455965925970965],[-119.29693150411926,50.461504310651705],[-119.29542471101949,50.46591847773099],[-119.29625446197423,50.47070596686396],[-119.2981616208691,50.47605558499065],[-119.30054243225315,50.481745704404126],[-119.30694310397998,50.49516273985227],[-119.30703356412201,50.495506644010575],[-119.30968339519268,50.5010213420848],[-119.3107596399646,50.50540417196044],[-119.31141455683635,50.51042992856597],[-119.31058909029264,50.51312082346434],[-119.30919279590064,50.51479072302284],[-119.30805750302653,50.51651528278263],[-119.3052015276749,50.52094318195947],[-119.30217517402303,50.525369188264655],[-119.30077808158633,50.52732491774934],[-119.29890109089126,50.53116713429903],[-119.29599379484667,50.53754162128345],[-119.29260623161001,50.54579739564898],[-119.2911147476911,50.547808235019836],[-119.29018580934029,50.55421647697314],[-119.28947529036289,50.56210381210546],[-119.28969835036895,50.57181181235336],[-119.28979314026857,50.57620846648669],[-119.2940653192991,50.58256539065699],[-119.30141135274457,50.58992253665215],[-119.30543689298864,50.59319459978863],[-119.30464030243783,50.59320577999384],[-119.30217792615153,50.59591279388882],[-119.29834726332747,50.600744671991],[-119.29396883426753,50.606100604086535],[-119.29183396422961,50.61069120794484],[-119.2908849709554,50.61618077659323],[-119.2905553622708,50.621611284628685],[-119.29140600616877,50.627318317510316],[-119.29248332380472,50.631701778948425],[-119.29196230296878,50.63205045258578],[-119.28559301170226,50.63274300313571],[-119.2817457962043,50.633575293582204],[-119.2772333261766,50.63647371726661],[-119.27472064681979,50.640435439684566],[-119.27139758155192,50.64515343724901],[-119.26964809479301,50.647055324965116],[-119.26643618480553,50.648283765325665],[-119.25964049485745,50.64971280265216],[-119.25176090645462,50.65144564449735],[-119.24217465586234,50.65261400792449],[-119.23603837274877,50.651359283436776],[-119.23023926812188,50.64975643402036],[-119.22718534068417,50.649554061606004],[-119.22341806422696,50.65021505844743],[-119.21781045776521,50.65260917172248],[-119.21304016101752,50.656416268151034],[-119.20776577583739,50.661948210226015],[-119.20121990787975,50.66760358287517],[-119.19874526265637,50.66985277133371],[-119.19215209166656,50.67224866717154],[-119.17904785306088,50.678073787999644],[-119.16655572110992,50.68303380670401],[-119.16156409370781,50.68581635243614],[-119.15793886296774,50.6888705722878],[-119.15276521347228,50.69525318207605],[-119.14946577920598,50.70156202547374],[-119.14634171786804,50.70792782227211],[-119.14306540318665,50.715373895377766],[-119.14188365037617,50.71955339094582],[-119.13940475358152,50.72123379899377],[-119.135785951693,50.72514461696127],[-119.13280244816767,50.72899467674779],[-119.13214359219353,50.732821090980735],[-119.1323234934659,50.73693553636536],[-119.13399994293246,50.74011737393014],[-119.13774112103572,50.74265703488418],[-119.13785143490118,50.74351607732078],[-119.13626742868915,50.74603895663274],[-119.13481704878053,50.75010249896918],[-119.13558966303408,50.753235868600164],[-119.13912623188205,50.75869394935693],[-119.1401456374967,50.760686756096504],[-119.13304596683727,50.76153773617661],[-119.124257475763,50.76326607249518],[-119.1113740021008,50.763538208840885],[-119.10488147803801,50.76358682450443],[-119.09138992329983,50.764838287023785],[-119.08789116160571,50.7649733199031],[-119.08292124564802,50.76466723614769],[-119.07182788851726,50.76349759551051],[-119.06190258500366,50.7633449264369],[-119.05388879234745,50.76345718967964],[-119.03435096917536,50.76434289231883],[-119.02606773108492,50.764625312648704],[-119.01661482321981,50.765549683184915],[-119.0147328376099,50.7656427150954],[-119.00986339752183,50.76587837638342],[-119.00157742725004,50.765536612173484],[-118.99824631828385,50.76596144776577],[-118.99008296682283,50.768471979730364],[-118.98605370015193,50.76952725351104],[-118.97942711832751,50.77213885859585],[-118.97109069316176,50.77528089589953],[-118.97037504802725,50.77556973452633],[-118.96166079221875,50.778023889570086],[-118.95574631598241,50.77971900948963],[-118.953249538553,50.78144319974018],[-118.94984013601625,50.78289412958713],[-118.94505636972052,50.782299843898315],[-118.94022874323143,50.7791869903761],[-118.9351514443431,50.77693531915369],[-118.93170734825324,50.77599033167264],[-118.92791384587503,50.774641120699016],[-118.92175299689127,50.77239503756043],[-118.91866723636646,50.77144189495369],[-118.91322061661494,50.767934562465754],[-118.90809309769132,50.76197322223958],[-118.90799143331084,50.7618053920072],[-118.90692280081079,50.75587536227107],[-118.90170610895534,50.75030954115281],[-118.89882796636238,50.75021411841745],[-118.89114432510574,50.74843084587795],[-118.88813435859132,50.7487166050563],[-118.88476131064837,50.74904453410547],[-118.8811926577037,50.752031464600655],[-118.8766514928819,50.7561082659423],[-118.87440660757434,50.75606175183105],[-118.86676007270628,50.757080035537655],[-118.85733434297227,50.760218142190844],[-118.85261996176179,50.765090444087456],[-118.85011677105695,50.76647642442869],[-118.84669087206008,50.76569852137634],[-118.83973916768116,50.764767903396866],[-118.83397917648546,50.76565363663553],[-118.82950526902592,50.76767531175935],[-118.82819263700222,50.77087705136117],[-118.82698367120807,50.775563225691265],[-118.8261144685908,50.77751149893787],[-118.8241539715404,50.779859530504666],[-118.8232484056665,50.7804907419405],[-118.82943496420455,50.777828422720155],[-118.83481617078955,50.79259188613031],[-118.81504771948849,50.800007999001714],[-118.81205189479232,50.80113188716468],[-118.80263569886165,50.807465419964664],[-118.80000331765802,50.80862037991776],[-118.79571762930155,50.81049965091788],[-118.7869060326564,50.8134962850453],[-118.78615560940636,50.813369889482416],[-118.78499084029757,50.81522093797787],[-118.78197270591411,50.8201328060924],[-118.78121695684725,50.82617053929654],[-118.77607224217344,50.825545858898614],[-118.77500949053427,50.826343750812455],[-118.76878172038951,50.82688376558429],[-118.76163937129516,50.82549073981192],[-118.75775263800182,50.824539952245324],[-118.74918495949036,50.8249794406734],[-118.7404395109337,50.825193425669305],[-118.73592446539155,50.82520935113393],[-118.72437509267836,50.8247519413574],[-118.72021567429121,50.824250945030656],[-118.72011535328717,50.823115786502335],[-118.71626215486968,50.81610608658737],[-118.70748262836831,50.81260531379181],[-118.70494810962244,50.81256428340692],[-118.69413338813152,50.81260867347277],[-118.68494021419325,50.81373355630922],[-118.68250859800757,50.814195960729876],[-118.67333218020318,50.816170379330806],[-118.6695494843171,50.81772777507126],[-118.66389876303349,50.82083045514597],[-118.66214644438021,50.827402237402836],[-118.66416761254308,50.83195907236518],[-118.66831589652114,50.84113080825014],[-118.66364298199531,50.84400323184011],[-118.6588042701965,50.847444729562305],[-118.65205960433018,50.85117427350607],[-118.64971974813473,50.85193165603626],[-118.6464580995627,50.85091321735707],[-118.63886698518891,50.84946082331593],[-118.6319242991559,50.850225747534196],[-118.63184661197768,50.85233810382926],[-118.63323097575613,50.856326357651874],[-118.63506673816522,50.85922805429545],[-118.63853238161775,50.86463788989651],[-118.6409141671169,50.86856526797239],[-118.64167338186516,50.87227786751302],[-118.64042279455549,50.87370338390908],[-118.635568514957,50.87668876513266],[-118.62746206935647,50.88065748257115],[-118.62072017072602,50.88518537123781],[-118.61588558120829,50.89045074597415],[-118.61367928059323,50.89650824214517],[-118.61272319159204,50.90313254369413],[-118.61305705420808,50.91112197953593],[-118.61288769451512,50.912487213574416],[-118.61364100634935,50.91648451651555],[-118.6134841413061,50.921050896592625],[-118.61168161695016,50.92207965614384],[-118.60617884608966,50.9235821777848],[-118.59977394656765,50.92491187529277],[-118.596432410048,50.92555130995347],[-118.59354813075991,50.92453974712603],[-118.59375446475404,50.92571878346785],[-118.58830854801721,50.925465744345956],[-118.5834508481028,50.9364114863281],[-118.57793587567457,50.93648923539032],[-118.57829103272843,50.939348660146905],[-118.57177116863457,50.93804563021919],[-118.56636582856476,50.93901840942456],[-118.56152003126654,50.93744675253212],[-118.55945562469016,50.94045691268998],[-118.54931190048151,50.936381899744944],[-118.54480560658577,50.93717819805167],[-118.54208329673779,50.939279631543094],[-118.53584130791567,50.93631448559261],[-118.53102513776413,50.9316313282183],[-118.53767631522766,50.927852585996575],[-118.53730721110048,50.9277805443668],[-118.53342128072767,50.92704873183857],[-118.53097297753898,50.92602620694713],[-118.5249069301072,50.92387118619771],[-118.51792972221388,50.92041255291857],[-118.5105813239506,50.917294268023475],[-118.50750479027546,50.91609811101052],[-118.50379408889161,50.91348438303628],[-118.49563507126781,50.908140320048574],[-118.48611692140486,50.90365296773257],[-118.48330727090394,50.902749419733816],[-118.47544341744656,50.90254022428636],[-118.46469757191288,50.90261766528539],[-118.45855615447007,50.9026306741288],[-118.45394662418003,50.902639544854885],[-118.44788617073134,50.902596473155675],[-118.44154973665431,50.90089173227059],[-118.43965312295416,50.8995887178093],[-118.43547646146921,50.89486230641884],[-118.42923301333376,50.890936631896935],[-118.42398204665032,50.889171621142516],[-118.41612085256905,50.88593470020635],[-118.40689418289517,50.88349683390168],[-118.39938892411664,50.882879635082745],[-118.39297742195582,50.88289476036476],[-118.3865695778383,50.88347375721372],[-118.38422562126497,50.88404616724699],[-118.38187533183503,50.88490603040607],[-118.37392419109888,50.887141596961655],[-118.3672445296476,50.88754742514167],[-118.36245305300953,50.88578645150227],[-118.35521871028565,50.88317323144917],[-118.35376939462067,50.883115233294475],[-118.34980589527422,50.88511680192549],[-118.34348377581733,50.885522547237976],[-118.33904617246215,50.88495344902819],[-118.3342600399615,50.88325139279758],[-118.32576490021653,50.88240202429775],[-118.32025606599615,50.88331797569517],[-118.31692405635448,50.885547098551065],[-118.31340072389605,50.88531877264689],[-118.31168730655239,50.88538094908215],[-118.30951285171837,50.885378596989],[-118.30535179910544,50.885611436053466],[-118.30209849720381,50.88771065854389],[-118.30355437458711,50.887897374401255],[-118.30626322482337,50.88977616075115],[-118.30924539409055,50.893138838284145],[-118.311421328951,50.89553745218843],[-118.31413652489181,50.899124329367815],[-118.31512343132097,50.9011175044658],[-118.31467629975451,50.90345806199164],[-118.31233123486805,50.90642687009023],[-118.3120607840536,50.908820791812175],[-118.31359589236033,50.911784931507036],[-118.31558680999244,50.91418360048863],[-118.3178519272061,50.91640515310757],[-118.31821251328512,50.91771662422846],[-118.31967277792235,50.92136707600775],[-118.32084577631302,50.92518970106483],[-118.32084658238354,50.92792231237717],[-118.3199494851176,50.930546384255045],[-118.32040706754967,50.933287774142514],[-118.32130368590904,50.93448244668184],[-118.32393270224631,50.93676089978297],[-118.32583592708832,50.93984308375562],[-118.32719107562787,50.94286502345701],[-118.32854679279161,50.94588470471372],[-118.32910433472527,50.94713731375083],[-118.33172667797761,50.94804879480973],[-118.33634273971217,50.94953039849138],[-118.33878255657751,50.95083734987497],[-118.34121890375054,50.951749387336065],[-118.34439815171936,50.95317400249151],[-118.3460295034621,50.95385243027728],[-118.34782819743329,50.956305887580235],[-118.34884038658409,50.9594998139993],[-118.34920564218736,50.96212332492496],[-118.34939439684771,50.966854563689914],[-118.3503941745031,50.968790364429495],[-118.3509339811546,50.96981800753146],[-118.35347034789945,50.972155144753195],[-118.3564562448835,50.97546395404024],[-118.35890087962895,50.97717086632072],[-118.35999724739536,50.97779836751852],[-118.36334768921701,50.9788246488727],[-118.36506615676602,50.97950356419257],[-118.36833155595224,50.98035848319838],[-118.36896185318732,50.980695553902414],[-118.37132108927354,50.9822359947402],[-118.37394933097438,50.98479949885215],[-118.37576459508558,50.98758979976025],[-118.3770341622007,50.99038579738267],[-118.37876748612402,50.99340525140303],[-118.3823052769842,50.996023578340306],[-118.38402734532532,50.99819202441043],[-118.38692721689021,50.999933599822185],[-118.38720225095066,51.00033726685881],[-118.38782628776048,51.00113156175236],[-118.38955177883366,51.00227842093148],[-118.3912782393656,51.002331940871066],[-118.39317265710886,51.002158627185324],[-118.39472369069372,51.00147766264925],[-118.39589356135241,51.00050944839307],[-118.39643657460529,50.999934994688886],[-118.3973355247408,50.99828682068694],[-118.39859473052736,50.997717517296564],[-118.40113599769911,50.99703143573189],[-118.40358455708908,50.996970641177825],[-118.407029302557,50.99771000859873],[-118.40883873400696,50.99878716542599],[-118.40902779800965,50.999526999399535],[-118.4089633152444,50.9999042005841],[-118.40907939772221,51.00157439193495],[-118.41099040104795,51.00340119765426],[-118.41343713027992,51.00511579774953],[-118.41833271168667,51.00836769913394],[-118.4209584935721,51.01122139414765],[-118.42240951254674,51.01373082124854],[-118.42277393236175,51.01630275465511],[-118.4222297463798,51.017557373608405],[-118.42078188627967,51.020070510585434],[-118.41887517537249,51.02241261136641],[-118.41823644456517,51.024639544069686],[-118.41904824237065,51.02669198873482],[-118.42294616326164,51.03000292769615],[-118.42485809681655,51.03183446654389],[-118.42666580864183,51.03394112616002],[-118.42703540125689,51.036400995606186],[-118.42693490417582,51.03959670283727],[-118.42820821766375,51.042565735708955],[-118.43147232985811,51.04564826011967],[-118.43383254062435,51.0487294765436],[-118.43229112355411,51.05187303342643],[-118.43147308242055,51.05649841469207],[-118.43065548204851,51.05792309349899],[-118.42821733667913,51.05832460180767],[-118.42567501185738,51.0583267677677],[-118.42105335653584,51.057638644673425],[-118.41778253566832,51.058037850271944],[-118.41678882512058,51.05998561321655],[-118.41732307192721,51.06232057138643],[-118.41931752654213,51.06426431700228],[-118.4216773931905,51.06592001072089],[-118.42476450672703,51.0678601124181],[-118.4275795982538,51.07122603806383],[-118.42903209028401,51.07374023126323],[-118.42985078499662,51.07374129352881],[-118.43183845968967,51.073627061084565],[-118.43510679700019,51.07282707157003],[-118.43765042493163,51.07282190726718],[-118.43974292627274,51.074198363990554],[-118.44290876374329,51.076021257558125],[-118.44781565983342,51.07664963406592],[-118.45335603540082,51.07710198876138],[-118.45797915755372,51.07847045275887],[-118.46025538413978,51.07995418970091],[-118.4602492026525,51.08446695886746],[-118.45953142750308,51.08834779583238],[-118.4608934402732,51.091660631452505],[-118.46470808071564,51.09331411465475],[-118.47088357522674,51.09536961545055],[-118.47206731899675,51.09770749884989],[-118.47414970770718,51.10084826745187],[-118.47569462112666,51.10233105295577],[-118.47579409844798,51.102676320364615],[-118.47825424066514,51.10689701335749],[-118.47843371498088,51.11049646764836],[-118.47625613808553,51.113413207080065],[-118.47534396536773,51.11683568000382],[-118.47552991475835,51.11717996166099],[-118.47681098264275,51.11911902030475],[-118.47653015581899,51.12288794347586],[-118.47262250054335,51.12557136121163],[-118.4720912529941,51.12945723415988],[-118.47536557175526,51.13202584622552],[-118.4800807386613,51.133905241130186],[-118.48508719631253,51.136189316081506],[-118.48881523529309,51.140753801222395],[-118.48882431920417,51.14103937540884],[-118.48818155780715,51.14618288883525],[-118.48610178872373,51.150466263665216],[-118.48228924507438,51.15240984654663],[-118.47727996236446,51.1530949753113],[-118.47047337248732,51.155038124657935],[-118.46829328031666,51.15795344545478],[-118.46911380142703,51.16006644188886],[-118.47120733531563,51.164003283096214],[-118.47175481087206,51.16628415699849],[-118.47111092879364,51.168798449256784],[-118.47093646746706,51.17176851632837],[-118.47183949089967,51.17365277265952],[-118.47621146302336,51.175881986960384],[-118.48239214475628,51.17712986107699],[-118.48712298214338,51.1779295483671],[-118.49258040186207,51.17826686022047],[-118.49521577338797,51.17826441995501],[-118.49867946254035,51.17906595238034],[-118.50413625923986,51.179407722378144],[-118.51395418295905,51.178824153566886],[-118.52113951993643,51.178820822531996],[-118.52923271020758,51.17881245147555],[-118.53351927105227,51.178751194976236],[-118.53760358306778,51.17954697021572],[-118.54079418123985,51.18086166108581],[-118.54698069062253,51.184222057474024],[-118.55135747767716,51.18696120651225],[-118.55418511256974,51.189581277409445],[-118.55555245459665,51.19095421785287],[-118.55964790588949,51.193403514045244],[-118.56375278136224,51.196998021213325],[-118.56430992455391,51.20036475260926],[-118.56385349336135,51.20316349445997],[-118.56304636126136,51.20453590160294],[-118.56232039808977,51.204826451574476],[-118.55686486510415,51.20591299261506],[-118.5513023213802,51.20643590553109],[-118.54575945144327,51.2080369316673],[-118.54240022842595,51.21129504944543],[-118.54322897588247,51.215520032966005],[-118.54486642731763,51.21717383543185],[-118.54815532417268,51.21997336106594],[-118.55663400227071,51.22499018309906],[-118.56154931363923,51.22892351272344],[-118.56602313478122,51.23342939973906],[-118.57041074119292,51.23776741977114],[-118.57361221798777,51.24136184976526],[-118.57361264096653,51.24238810359566],[-118.57288699401775,51.2454166660735],[-118.57289226655604,51.24821414664083],[-118.57417171914861,51.25003779760599],[-118.57508474978096,51.253011852707004],[-118.57382572580542,51.2558670342186],[-118.56936348336424,51.25872881718191],[-118.56336218154982,51.261304435819504],[-118.55935596146331,51.264790606779876],[-118.55535333964177,51.26867914936252],[-118.55472323150396,51.26959210512374],[-118.55281792265468,51.27250429877669],[-118.54926561666751,51.27576911610538],[-118.54554517858092,51.2818193186069],[-118.54673616479856,51.28587428824998],[-118.54855420923026,51.28707311234134],[-118.55074741400587,51.28998238833721],[-118.55112527838288,51.29364221631334],[-118.55313180862004,51.29723240519182],[-118.55468058231777,51.2983196489736],[-118.55678879048853,51.299685234754016],[-118.5611632777162,51.30054018498705],[-118.56381117015492,51.30059064766439],[-118.56891241836284,51.300132486737205],[-118.57703227766224,51.29983666601544],[-118.58305368024843,51.300514777489205],[-118.58633720671622,51.30262324100778],[-118.58871580678168,51.305135280752445],[-118.58999227949253,51.30690413369108],[-118.59337732718926,51.30970212784276],[-118.59648826435505,51.31095326951854],[-118.59822277290476,51.313007021702546],[-118.59841876159456,51.31751634495908],[-118.59879671726355,51.32180235123429],[-118.6005328986964,51.32470959400041],[-118.60721090363705,51.32933044028501],[-118.61234028876873,51.333717464835516],[-118.6120691778401,51.33714400264035],[-118.6097020040368,51.34023143043242],[-118.6083508992575,51.34389244240116],[-118.60927446459966,51.34760359613401],[-118.61101358062116,51.35239862780614],[-118.61194398591552,51.35719147277856],[-118.61286237526504,51.359988943425186],[-118.61269281060437,51.364618981052566],[-118.60805474789447,51.368392709472495],[-118.6006576818361,51.37171491264302],[-118.59263690653238,51.373666296414406],[-118.58788950040764,51.376870352461744],[-118.58717196640768,51.380358355850944],[-118.58717793427039,51.382298037767086],[-118.58618076175286,51.38555616389397],[-118.58298078963486,51.38806508907417],[-118.57925287841564,51.39190096869529],[-118.58116398098548,51.394466014854935],[-118.5851920619358,51.39554532672749],[-118.5875648916604,51.39605965608644],[-118.59150158783949,51.39742548460244],[-118.59369745556697,51.39942170916004],[-118.59471159911493,51.40199254490969],[-118.59489597830022,51.4031321723481],[-118.59975019665113,51.405241912641635],[-118.60705593511743,51.40688841966004],[-118.6109993174705,51.408998423724604],[-118.61118354393638,51.40962470193804],[-118.61439004459446,51.41276428226534],[-118.61384709952479,51.41556649102049],[-118.61074697637027,51.41825357926383],[-118.60828378637811,51.42093822988516],[-118.60601427390596,51.42487974851659],[-118.6073007581354,51.428765957599516],[-118.60886358492748,51.432473879953115],[-118.60952274096879,51.43578772197675],[-118.61008758665999,51.441041254112626],[-118.6108233367213,51.442867080560035],[-118.61429046905245,51.44343571611641],[-118.6190525261953,51.44422798643311],[-118.62518117657733,51.44490378396954],[-118.6301381180435,51.44729930682106],[-118.62812781742005,51.44987224927792],[-118.62767691726596,51.45204193639584],[-118.62759036391381,51.45609766076709],[-118.6272421525967,51.45981316893955],[-118.62899255687655,51.46414636314918],[-118.63127876500077,51.46546033889153],[-118.63201826816925,51.4654571215974],[-118.63293488126659,51.464829808404765],[-118.63723241907955,51.46322161009814],[-118.64463147281252,51.462816368711074],[-118.6493904955362,51.463035111242846],[-118.65672129937002,51.46199640744175],[-118.65862865024694,51.461766450066406],[-118.66577322818823,51.461753370666194],[-118.67154857168126,51.46317393861287],[-118.67493353556038,51.46442157006836],[-118.67787393245304,51.46607741517237],[-118.68245408872372,51.46989412253988],[-118.68631137089847,51.47222587397322],[-118.69071277498684,51.47398971749121],[-118.69584708935011,51.47518254972815],[-118.70272515559752,51.47739480820339],[-118.70732158233703,51.48087070604706],[-118.71034832461059,51.48446418382015],[-118.7116423202477,51.487147055051416],[-118.71267524608841,51.49131648974362],[-118.71048374061849,51.49360206851101],[-118.70454209863472,51.496467922587875],[-118.69668521789501,51.49985976265492],[-118.69065590826483,51.503066713050266],[-118.69066626344635,51.50500726494476],[-118.69351540767335,51.50723060033934],[-118.69755215442905,51.508593681803895],[-118.70277798724922,51.509784456383144],[-118.70809253086988,51.51131562475629],[-118.71360690996136,51.513304846580766],[-118.71912035942843,51.51792480460251],[-118.72400171535732,51.523738763635194],[-118.72713241988683,51.52550543312611],[-118.73126386362833,51.526925067717535],[-118.73759881171411,51.528794622638394],[-118.74117109650899,51.52947604852689],[-118.74565192521476,51.52826110598385],[-118.75031383367224,51.525509787252616],[-118.75808424383965,51.52246513664009],[-118.76549699947067,51.52175860282082],[-118.76845458573641,51.52467170593722],[-118.76975873891237,51.52740885238252],[-118.77243558179055,51.5320298039098],[-118.77649011727665,51.536129981588296],[-118.77933362538326,51.536925545587586],[-118.7812647422092,51.53691761080028],[-118.78583281340073,51.53410992589866],[-118.78746127102995,51.53073578573789],[-118.7906467611101,51.527242383357425],[-118.7927300965965,51.52489224937452],[-118.79851281494234,51.524480869804094],[-118.80483369431086,51.525032515907164],[-118.81172042331968,51.52655782625758],[-118.81621438817277,51.52825821159838],[-118.8215322983778,51.52847135107676],[-118.82777157641605,51.52908246295808],[-118.83072403895171,51.532497338696494],[-118.83093549869304,51.53644087300077],[-118.83095439353237,51.53889960782583],[-118.82987930710443,51.54210333732447],[-118.82780062837654,51.54656232750816],[-118.82599914499517,51.55056635602948],[-118.82484218047874,51.55577417816649],[-118.82534413834267,51.561310647179084],[-118.82564381764571,51.5654226030953],[-118.82529010415593,51.56793836983484],[-118.82529320727998,51.56845160057634],[-118.82523619070648,51.57199300474214],[-118.82526201635329,51.57662489251333],[-118.82529010182412,51.58142038537033],[-118.8253039781973,51.58399654693149],[-118.8243243316621,51.58714024162261],[-118.82039141342085,51.588802932795765],[-118.81525728429087,51.59070187783355],[-118.81390330792708,51.592933913965965],[-118.81437431073458,51.59590770325423],[-118.81531449015463,51.599387519868195],[-118.81478337387199,51.60076504911531],[-118.81277210347162,51.6032813606489],[-118.81243482396523,51.607284182274135],[-118.81521683019714,51.61167418512308],[-118.81597490881792,51.61458316246726],[-118.81609972639826,51.61966879810962],[-118.81510985258103,51.6230428901966],[-118.81504148365113,51.62647069195851],[-118.81717415614884,51.63075066110406],[-118.81865490011074,51.632005491027435],[-118.82114719052268,51.63445163369207],[-118.82777413725267,51.63500727835871],[-118.83006786900683,51.63494162916018],[-118.83355937822313,51.63493167619026],[-118.84119148831653,51.63645462904277],[-118.84395845939376,51.63838587041403],[-118.84609258965804,51.64152078154863],[-118.84905342817478,51.64351478193034],[-118.8506178888577,51.6439090561105],[-118.85438332726675,51.64498612516489],[-118.85963252619523,51.64588447540406],[-118.86560717451422,51.646437992556656],[-118.8675421817599,51.64643417546797],[-118.87185457359651,51.64567513401665],[-118.87533666158485,51.64492312752615],[-118.88066696702523,51.644788386448475],[-118.88397204650639,51.64512311250435],[-118.88858150356913,51.64664917152554],[-118.89088933941446,51.647841280902604],[-118.89422263786064,51.65069031566568],[-118.89570362711999,51.65285597857618],[-118.8971076788559,51.65513800000692],[-118.89950765358141,51.657469163086326],[-118.90396136733024,51.661400604188934],[-118.90470481100567,51.66345413985066],[-118.90566955101141,51.66916662359796],[-118.90607333267378,51.67241814177681],[-118.90811111913854,51.67429918259507],[-118.91061263459314,51.67646268958795],[-118.91579370135774,51.67987505754561],[-118.91744802495442,51.68089331933335],[-118.92078234820326,51.68385120311646],[-118.92265813316806,51.68727914222788],[-118.92315180931843,51.6907034352164],[-118.9232640751142,51.69441570548926],[-118.92291409097933,51.695677905203034],[-118.92285675219912,51.69944838485922],[-118.92003027847461,51.70242456085098],[-118.91700268860392,51.70403378827819],[-118.91482022913874,51.706446816581334],[-118.91476163706338,51.71022060213631],[-118.91549898080159,51.7112420777666],[-118.91727551992074,51.713579950572665],[-118.91822860637079,51.7180331672418],[-118.91456441738293,51.72050630125719],[-118.90768323283424,51.72349839885273],[-118.89989611330164,51.726320983020656],[-118.89502308122617,51.72851086570749],[-118.88870535435848,51.73115775275593],[-118.88642548324938,51.73459742409851],[-118.88653484572974,51.73625175865934],[-118.88654523955628,51.73842408641405],[-118.88721096604814,51.74042086369071],[-118.89009349364058,51.744468253540106],[-118.89028781509924,51.74640740572604],[-118.89022317865319,51.749667897863695],[-118.8918302068363,51.754748800569914],[-118.89342782291916,51.75971067867566],[-118.89540269256555,51.7638804371354],[-118.89560678308769,51.76576152715433],[-118.89443636779713,51.76936621092722],[-118.89012384833715,51.773096989004046],[-118.88581030403691,51.775219584728944],[-118.88334596063339,51.77825430939593],[-118.88384313026096,51.7819127323089],[-118.88764277009682,51.785271956422044],[-118.8925337614328,51.786683513281766],[-118.89603951053368,51.78701670835567],[-118.8998217514188,51.787175366643346],[-118.90479974893906,51.787786400278584],[-118.90831284146373,51.78852375442879],[-118.91357632313058,51.790162627242765],[-118.91590400542273,51.792270608724934],[-118.9201531800669,51.79413925167377],[-118.92532023265139,51.79520964986478],[-118.92891481665234,51.79490987961193],[-118.93251055653064,51.79415246276011],[-118.93536070536184,51.79340290292462],[-118.93912596607697,51.7925881533322],[-118.94152547950503,51.792637891790925],[-118.94282528625939,51.79389270005282],[-118.94406023569,51.7966307142147],[-118.94545526799718,51.79919204686259],[-118.94621351049177,51.80199184322126],[-118.94900366944552,51.80432141730053],[-118.95234797650232,51.80665579097078],[-118.9540162449289,51.80762206968672],[-118.95845852038029,51.81012031901656],[-118.96097652692495,51.812515011874304],[-118.96192999758765,51.81565009233708],[-118.96138251281012,51.81650899969782],[-118.96093240323609,51.81857254495384],[-118.9599366332639,51.82039845809282],[-118.96041750150503,51.821940607792854],[-118.96115798104348,51.822508625435056],[-118.96366111049319,51.82364446827382],[-118.96598213752512,51.82500459128283],[-118.96554098806527,51.82701344782893],[-118.96268487719966,51.82788068506256],[-118.95881036188851,51.82863325825027],[-118.95532593006996,51.830133339803005],[-118.9513716381879,51.83191823339116],[-118.94889635214345,51.83403771303246],[-118.94863115707382,51.83558572353041],[-118.94912259155022,51.83832438210672],[-118.94940420749228,51.83884047526671],[-118.94979397628299,51.84112484475134],[-118.94889227556672,51.843356034184836],[-118.94936495001286,51.845579571119075],[-118.95085724680139,51.847009969970834],[-118.951045693548,51.84728982788385],[-118.9517915727711,51.84854852098769],[-118.95246316741522,51.850717788783534],[-118.95413654235394,51.8520240461973],[-118.95607188068108,51.85270511562407],[-118.96571268458554,51.85724207153464],[-118.96951744582599,51.85865547428417],[-118.97451457384223,51.8609218658556],[-118.97905613789719,51.862391438431466],[-118.9827596355249,51.863350143823645],[-118.98720888021383,51.86476071702848],[-118.99044670235503,51.86589063870393],[-118.99001186422979,51.86840924888734],[-118.984664872206,51.86957355901051],[-118.98125035087644,51.86981038424817],[-118.97618363257378,51.870231369284134],[-118.97137285017925,51.87087691588131],[-118.967617851255,51.872948028618936],[-118.96643133095759,51.87495327319684],[-118.96630131359439,51.881184337461185],[-118.96533382998508,51.885812025224354],[-118.96545243400229,51.88987140979467],[-118.96753670584364,51.89552227127603],[-118.97081845555218,51.899740381946216],[-118.97118560308338,51.90036472729037],[-118.97353012284495,51.90332606692431],[-118.97355514150455,51.90715475445102],[-118.97322034421362,51.9112182932127],[-118.97528093269828,51.91394910789002],[-118.97760732316864,51.914854740016004],[-118.98309044060153,51.917869015989645],[-118.9872753244496,51.92167854099822],[-118.9875130702887,51.9277339335306],[-118.98497108966986,51.932602079456494],[-118.98166146065007,51.93478730777021],[-118.9764009534997,51.935092624036926],[-118.9704764183663,51.93488703148317],[-118.96491824118694,51.93404606062951],[-118.95779109358553,51.93259052929604],[-118.95287838662293,51.93174353202419],[-118.94825020839481,51.93004606722416],[-118.94407036783093,51.92829373089497],[-118.93935233700559,51.92733357018134],[-118.93888735813202,51.92722263630771],[-118.92779556695793,51.927026311677814],[-118.92261129852312,51.927044197229364],[-118.91502214415637,51.926729977779615],[-118.90837003340992,51.926862660597315],[-118.90404660461434,51.92967566778665],[-118.90166914401578,51.93293937411028],[-118.90104666788325,51.93585365924789],[-118.89884287830802,51.93831998509158],[-118.89729267319841,51.94198145949258],[-118.89693859253012,51.94432630021474],[-118.89695209649108,51.94540797021587],[-118.89539569524945,51.946955835895935],[-118.89116615205045,51.95034065001666],[-118.88978915710672,51.95240056164158],[-118.89018553222448,51.95525797212715],[-118.8915805351196,51.95702604263651],[-118.89417929397764,51.9583311228874],[-118.89752398352202,51.95946483939611],[-118.90113434693986,51.96076648867389],[-118.90502329295475,51.96206777927147],[-118.90865289937473,51.96343345658132],[-118.91236749350195,51.965536247056264],[-118.91458882621465,51.966557117791254],[-118.91812361437522,51.96751989964679],[-118.92145083038537,51.96751011952751],[-118.92700550404336,51.967316494431685],[-118.93181028577364,51.96695917115216],[-118.93551593246048,51.96786429939994],[-118.94060817525931,51.96853181397997],[-118.94562952284275,51.9699971122422],[-118.94888707736486,51.97222089815833],[-118.95481305147904,51.97317170669273],[-118.959722417227,51.97406823937576],[-118.96500676097698,51.97427929947911],[-118.96908338283005,51.97597681479273],[-118.97132451006962,51.978424323606134],[-118.97116041612254,51.97979978207779],[-118.96944079571362,51.98426504399274],[-118.96806995694656,51.98729910964562],[-118.96706510122164,51.98861624741486],[-118.96524974375197,51.99176840286037],[-118.96286245880484,51.994287648768164],[-118.96139319089245,51.99674879450412],[-118.961037872339,51.997493280111165],[-118.96077031580604,51.99932326592808],[-118.96015400803256,51.9999593329084],[-118.95869390537875,52.001548804864555],[-118.9568450005998,52.00309411546178],[-118.95341134547748,52.0042851686742],[-118.94887378094576,52.00514010389552],[-118.94691846739443,52.00787776550727],[-118.94608702969806,52.01010525682023],[-118.94616948426433,52.015640006458035],[-118.94523680529466,52.020201822039525],[-118.94346503826276,52.0273946159645],[-118.93881700629025,52.030532913265574],[-118.93399343733769,52.03366364430592],[-118.92778812763888,52.03725453569004],[-118.9205529942001,52.03941698981961],[-118.91583146249955,52.03741911613209],[-118.90795598045275,52.03523924056538],[-118.90462305943535,52.03552075836534],[-118.9008191383437,52.036885920634205],[-118.8961823570933,52.03813803078056],[-118.8911777788996,52.040020280373554],[-118.88579917733874,52.04149600029252],[-118.8812514941816,52.04228877747319],[-118.8757799895364,52.04245044184961],[-118.87197985997756,52.04324697194372],[-118.87068030992106,52.04347397812779],[-118.86511508173942,52.04438160444701],[-118.85723936251352,52.045680639808204],[-118.85102082245422,52.047786147617494],[-118.84850399142354,52.05102911751295],[-118.84727350889007,52.05759400612623],[-118.85021955438883,52.06216200212303],[-118.85428538512328,52.06421868022847],[-118.8604916482151,52.0659427568276],[-118.8678937567079,52.068522797423384],[-118.87030164677316,52.070577904663494],[-118.87195873228184,52.07451911343601],[-118.87008203044506,52.07913818493668],[-118.86961972565338,52.07953719295173],[-118.86552235058983,52.08176057758201],[-118.86144386654865,52.08386668933543],[-118.85521297607049,52.08619336113173],[-118.85316065924233,52.089102994202],[-118.85491727793591,52.09029969757101],[-118.8581656495721,52.09207362715842],[-118.85972344776926,52.093675422956444],[-118.86176813063518,52.09624617373325],[-118.86240360566775,52.09836314676103],[-118.8642528416118,52.10007140604906],[-118.86610081056796,52.10241232686371],[-118.86367157659777,52.10537930338488],[-118.86124894603124,52.10857148121834],[-118.86021632092616,52.11171185480204],[-118.85992632314863,52.11364740147487],[-118.85778138390658,52.11666687868258],[-118.85377973427423,52.119175456782784],[-118.85069283466612,52.12219605499265],[-118.85031734361682,52.12464580106089],[-118.85030007343387,52.129554254790705],[-118.84980418917675,52.13388807918592],[-118.84916130120095,52.13457388670226],[-118.8467277260768,52.13799337049762],[-118.8434687569593,52.140442492565604],[-118.83936502754645,52.14266038252933],[-118.83620189287298,52.144881452256804],[-118.83469950687339,52.1477326737099],[-118.83404443009358,52.15035319502567],[-118.83429474430731,52.1553228184225],[-118.83446729896495,52.15783254094839],[-118.83406357090213,52.163995429319996],[-118.8314459693597,52.16655466332102],[-118.82604439518687,52.16814769520719],[-118.81879899854401,52.17046908636536],[-118.81357684244298,52.17274726394159],[-118.81142894659308,52.173534540551884],[-118.80547286563605,52.17614807124124],[-118.80221732914413,52.17810231869261],[-118.80593013466373,52.180917213175796],[-118.80894479986769,52.18324041594672],[-118.81290018696764,52.18699200055162],[-118.81563554657772,52.19011346275732],[-118.81902771744521,52.1939817693639],[-118.82392307581125,52.19846978737596],[-118.82757401847464,52.20078855994275],[-118.83217009183895,52.202652088423875],[-118.84038118804813,52.20483912451904],[-118.84581447699766,52.20743466213362],[-118.84937401145133,52.20987145305185],[-118.85060947239367,52.2117527401029],[-118.85048001010473,52.215292075240306],[-118.84585270372993,52.21724982368312],[-118.8405496953425,52.21768137348067],[-118.83323570984976,52.220282632889706],[-118.83288996225096,52.22325189540518],[-118.83500803639096,52.228781223729136],[-118.83710889632908,52.23219763983221],[-118.84160762430648,52.234225752519585],[-118.84636099798104,52.23472060028706],[-118.85826899106485,52.2348317963213],[-118.86985197881401,52.23699782349651],[-118.87303012797487,52.23783870551521],[-118.87976006029848,52.24002775923205],[-118.88903192598691,52.243973056507826],[-118.88982685342464,52.24773756266722],[-118.88726608716584,52.25083670372092],[-118.88565847397197,52.2557545731973],[-118.88476914462123,52.258552168482076],[-118.88230205797042,52.26188180291404],[-118.87703423933525,52.264928229614064],[-118.87063671277691,52.267307515569094],[-118.85857790967628,52.27170503125825],[-118.84903051029396,52.274379695505246],[-118.84422824999774,52.27788580269644],[-118.84397859601286,52.28045580387652],[-118.84398035272272,52.280800717317376],[-118.84366206643821,52.285027947440106],[-118.83783616073664,52.288821441831445],[-118.83039841177019,52.29005256810682],[-118.82284621317069,52.29054988990602],[-118.81710714365802,52.29354049158277],[-118.81342879132873,52.29727149052806],[-118.80862187795366,52.29997547422975],[-118.80823848177482,52.299972463903536],[-118.80117559791472,52.302122748476904],[-118.79038635484544,52.30376921181692],[-118.78435795913325,52.307050822276885],[-118.78478632029879,52.31092869526066],[-118.7881839014017,52.31445262988454],[-118.79334257694664,52.317166137223765],[-118.80196837491611,52.32043955400404],[-118.81132432003322,52.32359425034565],[-118.82022524355355,52.32709282002346],[-118.82903610353377,52.330075712451674],[-118.83700900944285,52.33295074202797],[-118.84526393116451,52.33662401208554],[-118.85454986484446,52.34068197459156],[-118.86128878241155,52.342196069154035],[-118.87213664943421,52.34362104649766],[-118.88353950055601,52.34419577946147],[-118.8880161403358,52.344114493407844],[-118.89417360395687,52.343967283116584],[-118.9020047755412,52.344155116321865],[-118.90969020795116,52.34576545724294],[-118.9172789190809,52.34823571391216],[-118.92399291918518,52.353512985273944],[-118.92477671843693,52.35647659994977],[-118.92483722290413,52.360243191988424],[-118.9260003528859,52.363778050628234],[-118.92762394424396,52.366222304073375],[-118.93234581975334,52.369339033098946],[-118.93463970843163,52.37337706010308],[-118.93382787455636,52.37480784547217],[-118.93305601866203,52.37995428967498],[-118.93741801741885,52.38455268393679],[-118.94511152418285,52.386794287293625],[-118.94534666913093,52.3900485873608],[-118.94109573161367,52.39332358923473],[-118.93399132417271,52.39856153014824],[-118.92785769564627,52.40184632969813],[-118.92517684651861,52.4037487783135],[-118.92594112183673,52.404140180424946],[-118.92811120909997,52.40561103248318],[-118.9304154405328,52.40959549455138],[-118.92765855829812,52.413665955483374],[-118.92267733394624,52.41757688479297],[-118.92084075648849,52.42072669558031],[-118.92087039661506,52.421984060576435],[-118.92329264681442,52.427679734363274],[-118.92849840758113,52.43284270613452],[-118.93609590818907,52.434457752898176],[-118.94110045563993,52.43734512106119],[-118.9389016616577,52.44026917907266],[-118.93613403860515,52.443137721938655],[-118.93402560608624,52.44577883625222],[-118.9330407249915,52.448522178546725],[-118.93243184654636,52.4519502641765],[-118.93002665458793,52.453960417012404],[-118.92574837431499,52.455467649569144],[-118.92447124058586,52.45827142055239],[-118.92274426607263,52.46182504589456],[-118.91884953987416,52.463785254125824],[-118.91203116528307,52.4649606955036],[-118.90905511713551,52.4669170303571],[-118.90629001131664,52.46938864090722],[-118.90498879272627,52.469907848673444],[-118.90039823892103,52.47033058995095],[-118.89462189828005,52.47155815433941],[-118.88707115587296,52.47365117807049],[-118.88411759412782,52.4769799630629],[-118.88437039568936,52.482515689886355],[-118.88660714720355,52.488159463662655],[-118.8891710698382,52.49093974334798],[-118.89257745701805,52.494007536168844],[-118.89870785481426,52.49728689082278],[-118.90541677929055,52.50164662182685],[-118.9083637180755,52.504544363441106],[-118.90750308705118,52.50974588004118],[-118.90427221205043,52.51375889413249],[-118.90246619431774,52.51839288700663],[-118.90270162299822,52.521988459315175],[-118.90446136968262,52.52740235892115],[-118.90636339985791,52.52944988612961],[-118.91044143201782,52.53296897622899],[-118.91423669694122,52.53631686491571],[-118.91849616743436,52.539374645698736],[-118.92313595668094,52.54238047768415],[-118.93013354253851,52.54639685769045],[-118.93307346030322,52.549635036212976],[-118.93162444538665,52.55283615890499],[-118.93091576839277,52.55586938433207],[-118.93121853341532,52.55718376372504],[-118.93116628726814,52.559748865482284],[-118.92902071746944,52.56095944093838],[-118.9245516636616,52.562926984478516],[-118.92338122495666,52.56641308127989],[-118.92527005989591,52.56828636703204],[-118.92819263791999,52.56929878966922],[-118.9301743721516,52.56980224916407],[-118.935350981521,52.571200396885914],[-118.93884731873376,52.57260951605629],[-118.94206438698691,52.57436201270943],[-118.94510170785988,52.57657547318412],[-118.94698628622554,52.577761507820405],[-118.95055187281434,52.57740259937621],[-118.95475332421518,52.57652001945561],[-118.95880559987188,52.57735557636526],[-118.96389797656877,52.579727749570985],[-118.96890995831338,52.58186896495024],[-118.97050997375753,52.58225962141137],[-118.97530313373451,52.58320294236154],[-118.98171365362728,52.584252068710256],[-118.9885896974659,52.586270481690136],[-118.98971764240017,52.58700466252535],[-118.99315175964838,52.59035334189878],[-118.99410788846772,52.596856774929705],[-119.00035816571199,52.600988446600425],[-119.00766919313261,52.60054875855969],[-119.01223826498394,52.59823944237244],[-119.01546900433569,52.59456571854813],[-119.01864425317916,52.593687386529],[-119.02174038573045,52.59383983833268],[-119.0296373019404,52.59453715458915],[-119.03643351109473,52.59752360318266],[-119.03848448413906,52.60145127066382],[-119.03687244217858,52.60642291362524],[-119.0384410773553,52.61030252942301],[-119.04159520671766,52.61376048130561],[-119.04383317163783,52.61837426780412],[-119.04469415482272,52.61957161380751],[-119.04849622200778,52.62188714927187],[-119.05082717111321,52.626667868464445],[-119.05087194719898,52.62986892819917],[-119.05318138937376,52.633047372741686],[-119.05337426695058,52.6330504224999],[-119.0560368862108,52.63369115804836],[-119.05868181326501,52.633433778741946],[-119.06346129687165,52.637529389713166],[-119.06768506892392,52.64111249718081],[-119.07182432522505,52.6410917722273],[-119.07554807152037,52.64574673076185],[-119.0812932578708,52.65630136405985],[-119.08884065527558,52.658772119154065],[-119.09314878200057,52.663147283603394],[-119.09894937496784,52.66474015352758],[-119.1036494079247,52.66826529769781],[-119.10527868298544,52.67062111148327],[-119.11257822594057,52.66846701389888],[-119.1213458824183,52.667173841302464],[-119.13061641460834,52.66543392086534],[-119.14067059884535,52.66158925927566],[-119.15206965336672,52.656955235237625],[-119.15969993105328,52.652517453331896],[-119.16549996100238,52.64937325867842],[-119.16970524240396,52.64661391262618],[-119.17045616529869,52.64508039854332],[-119.17110229383883,52.64364377386424],[-119.17316989814667,52.6411306413983],[-119.17425837478018,52.64046250430508],[-119.1743768684819,52.63953431252049],[-119.17596926750397,52.63747973865359],[-119.17729387178409,52.63617008089698],[-119.17916245118052,52.63508592561476],[-119.17960206677449,52.63354259769162],[-119.18226247546413,52.633553600057844],[-119.18462989158614,52.62999211806835],[-119.18854286301872,52.6231672437774],[-119.18970203511644,52.61990379184266],[-119.19305164767128,52.61399226048396],[-119.19175243220982,52.6095474866967],[-119.18983337960968,52.6033965655722],[-119.19304344505682,52.59966131181612],[-119.20002638421008,52.60097916129182],[-119.20532886481301,52.603335747031856],[-119.21062361328352,52.60518266772518],[-119.21598772518843,52.6059389324502],[-119.21627358384954,52.6058232908486],[-119.2232946763101,52.60531501778357],[-119.22898865406576,52.60361280818869],[-119.23598341203048,52.60110544188167],[-119.24308865558754,52.59968049055268],[-119.25029629474504,52.59911000422459],[-119.25797153942496,52.59830495432788],[-119.26003975246005,52.59828678257157],[-119.27206350137463,52.59836071582027],[-119.28239884785074,52.599250763507776],[-119.28804864579773,52.60017498229932],[-119.29315040669114,52.60156327651944],[-119.29989436463619,52.6008172420649],[-119.30669477451801,52.59818889065134],[-119.3145350908084,52.59669618216905],[-119.32147046472473,52.595952642499746],[-119.33757386296217,52.59032938422831],[-119.34558959722447,52.58769028102237],[-119.3537583818719,52.58778883260286],[-119.35860284943189,52.59054929787285],[-119.35997030584042,52.592649703860374],[-119.361765729806,52.597259007320446],[-119.36344383111958,52.60090299146166],[-119.36542074048182,52.60482567726178],[-119.36822752350484,52.608286169297735],[-119.3725317352699,52.611676423057375],[-119.37458348265923,52.61502843690994],[-119.37363832355817,52.61863492067955],[-119.36726270203187,52.62275075036387],[-119.36346079581025,52.62483521475726],[-119.36162542367033,52.62679466911157],[-119.36171502564517,52.63033508363366],[-119.36215193615534,52.633075194154884],[-119.36226906567255,52.637875142161576],[-119.36158701675151,52.64073499633437],[-119.36097873164205,52.64331086645644],[-119.35900683288239,52.647100243118174],[-119.3595053950761,52.64829487463164],[-119.35830581375059,52.65362091522903],[-119.36109323889013,52.65588246883768],[-119.36664145544025,52.65617459668925],[-119.37066895958378,52.65533762630966],[-119.37541320960729,52.653522512946495],[-119.38372178574802,52.651164359052686],[-119.39139630167195,52.64972597221449],[-119.39947465273261,52.64971364394283],[-119.40715912532127,52.64878304856653],[-119.41280254825128,52.645073994130854],[-119.42299352786866,52.63915347012546],[-119.42681481519537,52.63809088998416],[-119.4379898523315,52.63832659988336],[-119.44597417636894,52.64133483995616],[-119.45039325535261,52.64529591758343],[-119.45288663008502,52.64727008904992],[-119.45820130885461,52.649274770387024],[-119.46672050786276,52.64822171439592],[-119.47258417320926,52.64605200893277],[-119.47789092375672,52.64411707647774],[-119.47981851504393,52.642496086251626],[-119.48881996574225,52.638067738345384],[-119.498762900154,52.634082975633234],[-119.50499417844031,52.63162113051732],[-119.51741186575389,52.62903731946674],[-119.52681486011441,52.62917506508981],[-119.52968296771039,52.63114408674298],[-119.53050239283877,52.633587940870854],[-119.5307630779561,52.63638455327035],[-119.53187010606392,52.63889386076912],[-119.5330958347311,52.642191921337805],[-119.53374058488545,52.64549824635435],[-119.53513747109722,52.64806014069885],[-119.5372993984319,52.65146458837799],[-119.54011852609774,52.65514791172323],[-119.54107732800455,52.659136649320494],[-119.54005395015552,52.663151211855414],[-119.53778850605345,52.66603229941502],[-119.53761388048743,52.666203260778985],[-119.54295770015777,52.66569057174819],[-119.55062727418158,52.664354730571425],[-119.55433829130524,52.66282955144946],[-119.5615931031916,52.65989624172051],[-119.56353731005868,52.65913474565148],[-119.56974670771741,52.65552939475432],[-119.57490614714689,52.65227330562062],[-119.5784792328137,52.651949637106526],[-119.58041420248416,52.6542152052854],[-119.58192663508075,52.657513081407494],[-119.58481472242647,52.66016972285181],[-119.58816572533098,52.66242014561023],[-119.59677358558793,52.667412380763786],[-119.60351970666835,52.67282845382329],[-119.60768218901238,52.67712574137197],[-119.61077378682228,52.682917123853215],[-119.61286334495476,52.68695544377212],[-119.61364561368934,52.69117874319418],[-119.61371048052278,52.696318148076735],[-119.61330621896687,52.69872216752554],[-119.61531567084218,52.703103677207196],[-119.61892543279195,52.70455176837856],[-119.62419654393433,52.704547700827824],[-119.6282062824048,52.70341850963046],[-119.63157403043817,52.702699223530004],[-119.63719005996457,52.70137771576999],[-119.64476500839692,52.70009453026467],[-119.65238434404932,52.700011111174796],[-119.66357622182461,52.699827448007014],[-119.672832249224,52.69783877191969],[-119.67718008746625,52.69561799891055],[-119.68522106922426,52.69106522858227],[-119.69230300830476,52.68584018000174],[-119.70003869574438,52.68020562292849],[-119.70977946097364,52.67609421564945],[-119.71626422426434,52.676306879543596],[-119.7203495498021,52.67745955132529],[-119.72510229204347,52.6788302304395],[-119.72813444344732,52.67976170044456],[-119.73491347524173,52.679797278343386],[-119.74009195879223,52.68019611563377],[-119.74566779592404,52.680929912431026],[-119.74981834292758,52.678593752704685],[-119.75312970751598,52.67609272711487],[-119.75539185718549,52.6734398368933],[-119.75875889365226,52.667395873579224],[-119.76227550816166,52.66266384023801],[-119.76503580745342,52.660766522555654],[-119.765317187728,52.660570599425974],[-119.76673012696375,52.66067085914925],[-119.7694849804231,52.661664671281606],[-119.77367565121897,52.66321545735544],[-119.77813061423204,52.66458722277988],[-119.78485979840755,52.666275736845236],[-119.78817813972708,52.666978991339015],[-119.79452565104057,52.66833044334926],[-119.8031498762186,52.67039423800446],[-119.80837570190927,52.67210214144959],[-119.81420136174225,52.67460097002434],[-119.81846255343115,52.67815007523167],[-119.82300730264093,52.68169767793615],[-119.82720429970554,52.68364152920766],[-119.83236979364226,52.68609313993286],[-119.83817200305285,52.687847972935046],[-119.84794502664563,52.69023874038626],[-119.85403691339356,52.689988121026516],[-119.85916975840206,52.68843861346347],[-119.86068233303682,52.68629975956775],[-119.86154908556014,52.68389181516964],[-119.86196483332456,52.682344364993064],[-119.86311845466282,52.68301249854961],[-119.86647250416316,52.6851405743954],[-119.86974581923046,52.68721142172374],[-119.8736970745797,52.68984813753252],[-119.87881429542576,52.69338502743674],[-119.882839978187,52.69841852877015],[-119.88456792046625,52.70474553657678],[-119.88692508653254,52.709800513094756],[-119.88894495285359,52.71388777351292],[-119.8913777553538,52.71602857119547],[-119.89660881130948,52.717447115730586],[-119.9039771457121,52.72089484871625],[-119.90749080367189,52.72193864363583],[-119.91373826120103,52.722711377561474],[-119.9195752009905,52.72291796985863],[-119.9206194841147,52.72290369317011],[-119.92511660240291,52.722272032506645],[-119.93140065165483,52.72184662970604],[-119.93611916456288,52.72206461100802],[-119.94099932014974,52.721773365953524],[-119.94452225247308,52.720238975484776],[-119.94669014890304,52.71786491180043],[-119.94918790703787,52.716627655335316],[-119.9527850598161,52.71698094193398],[-119.95666202888317,52.71767139771619],[-119.95963520169269,52.71917378038409],[-119.96305280470148,52.722272058962794],[-119.9645643274568,52.72516491057959],[-119.96453122773111,52.72676770742509],[-119.9646926245348,52.73099621716756],[-119.9648192719333,52.73431240874841],[-119.96672324986497,52.73748808224129],[-119.9689311395192,52.73883195986618],[-119.96950419742556,52.73899255601471],[-119.9716018444983,52.73953660408868],[-119.9747359503072,52.74012447394202],[-119.97927222196907,52.740803601120035],[-119.98478745246148,52.74204073862163],[-119.98795665377243,52.743544452672175],[-119.99224748732533,52.74491225682997],[-119.99328713014042,52.745357081883114],[-119.99578552679488,52.74623280040638],[-119.99853247540169,52.746824850034386],[-119.99978595340423,52.74786824793471],[-120.00127217921671,52.74884597342927],[-120.00358215240863,52.75074656335924],[-120.00579734600123,52.75321697030153],[-120.00707541769019,52.754830069821466],[-120.01039302959946,52.7587897032798],[-120.01230503344532,52.761833176960245],[-120.01272844101923,52.764230196099],[-120.01386761072682,52.76800446257575],[-120.01543355880936,52.770013981117344],[-120.01663162456626,52.77082260858559],[-120.01933951862452,52.77255586129154],[-120.02061624713691,52.77450494474123],[-120.02132121549492,52.777024239210725],[-120.02124666250249,52.78010651466182],[-120.0214140225748,52.78135782020748],[-120.02333791080417,52.784116487627834],[-120.0251654764872,52.78692585430671],[-120.02604479760332,52.79001292821645],[-120.02678053212257,52.79093388688892],[-120.02936151992002,52.79369106462287],[-120.03203562343087,52.79685046619148],[-120.033680728768,52.79937309153517],[-120.03361972992951,52.80193864621254],[-120.0336607823142,52.8046274835669],[-120.03391427444576,52.80622557096088],[-120.0355562840242,52.80909323282275],[-120.03725038713229,52.81361501670178],[-120.03869549024328,52.81693367121737],[-120.04181984617014,52.82083591515055],[-120.04656334473985,52.82383463031896],[-120.04741628782065,52.82424459579513],[-120.05116453248068,52.82518623278929],[-120.05663346274198,52.825454832439235],[-120.06068185640311,52.825423438182284],[-120.06321958960781,52.82584502225465],[-120.06444531530971,52.82636540177006],[-120.06678176212652,52.827696603576726],[-120.07004742423774,52.82942903376204],[-120.07444002653317,52.831001310271354],[-120.07639031898367,52.833180922482455],[-120.08019167276515,52.83600391547025],[-120.08338541369746,52.837402782183446],[-120.08768831689027,52.83919993166028],[-120.09113990898447,52.8411102921731],[-120.0947435942125,52.845584790068244],[-120.09538432376375,52.84666962002144],[-120.09680775084006,52.85050731940795],[-120.09842071036434,52.85502585232139],[-120.09999248463099,52.85715156574349],[-120.10186346999986,52.85830498826479],[-120.1041829754482,52.86031755603251],[-120.1061294408649,52.86232930567639],[-120.10910317664053,52.864689488543355],[-120.1107611627952,52.866414517059866],[-120.11104960999941,52.86670450129802],[-120.11516348739404,52.868385210714486],[-120.11976197131413,52.87012828917],[-120.12265917466732,52.871970335253174],[-120.12507564452,52.87415816347889],[-120.12656704737547,52.8753657521457],[-120.12769034496897,52.87588582914477],[-120.13069310692529,52.87642687444432],[-120.13446982954682,52.87644768581487],[-120.1349396777323,52.876507162425675],[-120.14709528325966,52.873719121783125],[-120.1481905614669,52.87314127657074],[-120.14897734416684,52.87263405632304],[-120.15020274257616,52.87176134827239],[-120.15121605004937,52.87058401059423],[-120.1526560422527,52.86858405433791],[-120.15416050311288,52.866440007554985],[-120.15523792126018,52.86533780222359],[-120.15609003994102,52.86457068425537],[-120.1571248631098,52.86399537953415],[-120.15838654584115,52.86372540963486],[-120.15988668453116,52.863458874616796],[-120.16136919727808,52.86277652399305],[-120.1637468979167,52.861446641873876],[-120.16491676224767,52.86064750147244],[-120.16612929509127,52.859210115047865],[-120.16662476813639,52.85842799409702],[-120.1672501778233,52.85724249077404],[-120.16773395485575,52.85665431734459],[-120.16881250638855,52.85630205142659],[-120.17059726642802,52.85646220059233],[-120.1717572311076,52.85682345985377],[-120.17295443350828,52.85745810637779],[-120.1742330170867,52.857825791503586],[-120.17558737822712,52.85796728973118],[-120.17622770784965,52.85787091511526],[-120.17752817002233,52.85786073463595],[-120.17893523292544,52.85816278447559],[-120.18051077137429,52.85930749022414],[-120.18198715299931,52.860413509044],[-120.18333526531588,52.86125678963697],[-120.18461779211604,52.86192475845396],[-120.186155521844,52.86269250876893],[-120.1874205551773,52.86337982267376],[-120.18852414144756,52.86404674253874],[-120.18961422402081,52.864922124834145],[-120.19028419238614,52.86559339935719],[-120.19075961216973,52.86593964796982],[-120.19162539019983,52.86648962672554],[-120.19263662246203,52.866849477277164],[-120.19391009316242,52.86725771472156],[-120.19502518246479,52.86773230613001],[-120.19560123320875,52.868107682027755],[-120.19596653356436,52.86860474284256],[-120.1964531705147,52.869197755769086],[-120.19681321417401,52.86984296912915],[-120.19749264780539,52.87055570326119],[-120.19836402950924,52.870956358503825],[-120.1995691320251,52.87131954149876],[-120.19977727036508,52.8715457124676],[-120.19992767643737,52.87164759684005],[-120.20007656041531,52.87176064933503],[-120.20021060888477,52.87187296799897],[-120.20035995122429,52.87198266962251],[-120.2005099034172,52.87208790371893],[-120.20066031315324,52.87218978711939],[-120.20080958101872,52.8723000510334],[-120.20095839409268,52.87241365631411],[-120.20109252245844,52.872525419977244],[-120.20122589147361,52.87264275870988],[-120.20137539137328,52.872751342157336],[-120.20150921739919,52.872865338987424],[-120.20165925226486,52.87297000867543],[-120.2018256457956,52.873064252196976],[-120.20200680132919,52.8731597828359],[-120.2022051546764,52.87323873118216],[-120.20238912738141,52.8733136042635],[-120.20260582010172,52.87336759810242],[-120.20283894790084,52.87341060254875],[-120.2030578481106,52.87344840591784],[-120.20327750972697,52.8734806247031],[-120.20351368277407,52.873501291107104],[-120.20374065020927,52.87347990092814],[-120.20396936694057,52.87344567116419],[-120.20418454053859,52.87340121024622],[-120.20441386640256,52.873362503335706],[-120.20464281082312,52.87332659253663],[-120.2048572977821,52.873287160617686],[-120.20509651363078,52.873285487099174],[-120.2053190667904,52.87329648215946],[-120.20555645695384,52.87330820975919],[-120.20579263015043,52.873328871587],[-120.2060139666644,52.873348800038784],[-120.206248466928,52.87338174617587],[-120.20643138372165,52.87346442186218],[-120.20661376820863,52.87355101066458],[-120.20679554498835,52.87364206653753],[-120.2069453667956,52.87374840915405],[-120.20706361320859,52.873867251001464],[-120.20718117642497,52.873991114032684],[-120.20729988168692,52.874106596170485],[-120.20746576039414,52.87420473611305],[-120.20766351912953,52.8742881514918],[-120.20784590964341,52.874374738337806],[-120.20802822546521,52.87446187884911],[-120.20821221367572,52.87453674275962],[-120.20841012870176,52.874619031089665],[-120.20857646816665,52.87471381891082],[-120.20872645024897,52.874819042344846],[-120.20887590024596,52.874928178992505],[-120.20900929820192,52.87504550871687],[-120.20914330389964,52.87515837984994],[-120.20927731152342,52.8752712418876],[-120.20941147069013,52.87538299585756],[-120.20954487154344,52.875500324940646],[-120.20967842395832,52.875616545956696],[-120.20979607622536,52.87573984334848],[-120.20989835857625,52.87586632161753],[-120.21001654368683,52.87598571429019],[-120.21015055500723,52.87609858420854],[-120.21030054584722,52.87620380554282],[-120.21044985391954,52.876314048002165],[-120.21061514038122,52.87641665073405],[-120.21078103571024,52.87651478585633],[-120.21096290942853,52.87660528116173],[-120.2111464572337,52.876683481972904],[-120.21136538161639,52.876721269794814],[-120.21160096854884,52.876746387282274],[-120.21178997031062,52.876674760739114],[-120.21195377816775,52.87656872715508],[-120.21210229237684,52.87646530280288],[-120.21222340820927,52.876343670290446],[-120.21233029445148,52.876216829226884],[-120.21245133354894,52.87609575041576],[-120.21258584217887,52.87598545515143],[-120.21273480749993,52.87587868836083],[-120.21288331741,52.875775262977236],[-120.21304658785448,52.87567313230427],[-120.21319562751356,52.87556580201829],[-120.21335889640756,52.87546367089813],[-120.21350740214206,52.87536025363408],[-120.2136841397733,52.87526890562743],[-120.2138480906648,52.875161743528366],[-120.21399644223222,52.875059442474594],[-120.21418725556799,52.874974409826955],[-120.21439024778473,52.8749096490907],[-120.2146067851072,52.87485511750104],[-120.21482332187568,52.87480058551073],[-120.21503978153257,52.874746616011734],[-120.21522861675506,52.87467610070013],[-120.21541935057991,52.8745916199898],[-120.21563649250497,52.874532619092435],[-120.21586467436539,52.87450227071698],[-120.21609164092911,52.87448085670576],[-120.21631602555046,52.874478428727194],[-120.21655403275594,52.87448566670498],[-120.21679143262936,52.87449737160818],[-120.21701520990834,52.87449940970248],[-120.21725572212043,52.87448822266679],[-120.21746952060226,52.87445378913442],[-120.21769959920763,52.87440947206887],[-120.21790318947784,52.87434024676624],[-120.21805183330801,52.87423569790048],[-120.21817277401429,52.87411517594287],[-120.21827902971701,52.873992796709835],[-120.21840065283888,52.87386724418811],[-120.21850683075941,52.87374542762471],[-120.21864260601271,52.87362563647109],[-120.21877762272905,52.87351142049234],[-120.21889795215229,52.873395365154614],[-120.2189460698905,52.873261125300964],[-120.21899547693867,52.87311739661055],[-120.21907303978342,52.8729862989567],[-120.21917913708891,52.87286504461409],[-120.21931437702317,52.87274915714747],[-120.21940654804428,52.8726204612835],[-120.21948471582286,52.87248489589053],[-120.2195908107096,52.872363641138186],[-120.21969720974514,52.872240143631565],[-120.21981943075194,52.87211012207476],[-120.21992575200433,52.87198718723781],[-120.22003207264356,52.87186425229515],[-120.22013816442896,52.87174299700158],[-120.22024440857744,52.87162061580964],[-120.22036617089265,52.871493944208986],[-120.22048641503149,52.87137844106005],[-120.22060734074962,52.87125791638157],[-120.22072834226007,52.871136828672455],[-120.22084926782286,52.871016294791886],[-120.22095558337776,52.870893358938986],[-120.22104766896128,52.87076522453548],[-120.22112537294207,52.870633008473774],[-120.22118945405043,52.87049112647955],[-120.22123740835977,52.87035801123825],[-120.22125622182858,52.870219520530405],[-120.22121508414847,52.87008257332472],[-120.22117455362141,52.869941158650086],[-120.22116392342565,52.86979952617759],[-120.22119734458754,52.86966344618024],[-120.22126089359149,52.86952546860671],[-120.22135305055386,52.869396779890586],[-120.22147472797491,52.86927066092768],[-120.22160911526689,52.86916091776559],[-120.22177226423301,52.86905932851416],[-120.22198929273378,52.86900087857623],[-120.22217884947409,52.86892476753386],[-120.2222984747014,52.868813729796],[-120.22240607051849,52.86868129465761],[-120.22249882892979,52.8685481375217],[-120.22260505834076,52.86842575395042],[-120.22272604613974,52.868304663969205],[-120.22281751411981,52.868180995426364],[-120.22286629554567,52.868041732106725],[-120.22292907717326,52.86790934674696],[-120.22300783178007,52.86776931115184],[-120.22307068900585,52.86763636279397],[-120.22317706616477,52.86751286177054],[-120.22333944559304,52.86741686349875],[-120.2235153709727,52.86733108458344],[-120.22372035924343,52.86725123420793],[-120.2239104364638,52.867171206791014],[-120.22403336287877,52.867145779644176],[-120.22414031622722,52.86712800271841],[-120.2242478008036,52.867106312194316],[-120.22436905891875,52.86709317022884],[-120.224475936789,52.867075946962935],[-120.22459651305365,52.867067826196376],[-120.22470278429061,52.8670550701926],[-120.22482389050352,52.86704304462468],[-120.22493091967782,52.86702470407714],[-120.22503976808586,52.86699296101899],[-120.2251209172056,52.866945237592674],[-120.22518935363479,52.866881147472256],[-120.22521320854564,52.86681542877325],[-120.22522298767511,52.866743386310866],[-120.22520256571357,52.86667379638753],[-120.22518221901497,52.86660365249092],[-120.22514620428855,52.86653891640574],[-120.22509527962785,52.866474003777526],[-120.22504382388688,52.866413004630566],[-120.22500780953165,52.86634826849529],[-120.22495696050795,52.86628280183259],[-120.22490596002922,52.86621845201333],[-120.22486994604763,52.86615371582785],[-120.2248183394025,52.866093833438036],[-120.22476749097316,52.86602836668295],[-120.22471664269995,52.86596289990305],[-120.22466640104821,52.86589296562637],[-120.22464552555256,52.86582672617318],[-120.22463986314708,52.865758429566675],[-120.22464911174028,52.86569030061005],[-120.22464405702381,52.86561752759003],[-120.22465376042602,52.865546048022274],[-120.22466346379571,52.86547456845038],[-120.2246725606752,52.8654075563482],[-120.22466742953863,52.865335346217954],[-120.22467713283744,52.86526386663542],[-120.22468622965053,52.86519685452328],[-120.22471076725697,52.86512610548021],[-120.22472039402311,52.86505518878658],[-120.22474417343614,52.86499002407407],[-120.2247683324084,52.864922062714335],[-120.22482162862366,52.86485947592416],[-120.22490413838332,52.86480170076218],[-120.22498596509566,52.86474895591946],[-120.22506665520015,52.864704583071045],[-120.2251486343371,52.86465071230746],[-120.22522977887735,52.864602988735584],[-120.22532583260958,52.86455544160865],[-120.22540644680456,52.86451162248903],[-120.22550234854465,52.86446519208508],[-120.22559719018174,52.86442657075861],[-120.2256918788503,52.86438907516002],[-120.22578596223893,52.86435603803167],[-120.22589556109067,52.864318709774444],[-120.2259900976814,52.86428233080386],[-120.22608478689669,52.8642448259504],[-120.22619377891976,52.86421196489683],[-120.22628770874844,52.86418005316926],[-120.22639662527341,52.86414774589443],[-120.22650485899887,52.864120468907984],[-120.2266112738782,52.86410659428326],[-120.22673237117854,52.86409456672657],[-120.2268534684106,52.86408253904502],[-120.22695912533302,52.864074248465826],[-120.22707961625703,52.864066688040246],[-120.22720078847745,52.864054106031865],[-120.22730644526189,52.86404581514022],[-120.22741331430733,52.86402858917037],[-120.22753516883236,52.864010976421355],[-120.22764332632264,52.86398425235328],[-120.22775095272102,52.86396144170945],[-120.22785857900423,52.8639386309668],[-120.22797967547572,52.863926602123655],[-120.22808661910415,52.86390882157087],[-120.22820771542665,52.863896792492525],[-120.22831518978879,52.86387509820495],[-120.22842289191361,52.86385172403969],[-120.2285311235914,52.86382444518213],[-120.2286399611498,52.863792698725916],[-120.22873403972633,52.863759668160185],[-120.22882811936911,52.86372662858348],[-120.22893824357186,52.863685392879255],[-120.22903292886842,52.863647885636524],[-120.2291276891381,52.8636098243464],[-120.22922297884314,52.86356785838196],[-120.22931842105852,52.86352476652848],[-120.22939895285407,52.86348150754735],[-120.22949492427632,52.86343451095008],[-120.2295760616376,52.863386784340996],[-120.22965681952009,52.86334185433264],[-120.22975286668661,52.86329429461495],[-120.22983400349239,52.863246567823566],[-120.22991582112222,52.86319381949701],[-120.22999718536066,52.863144412807316],[-120.2300784730724,52.86309556896572],[-120.23014553270802,52.86304152769756],[-120.23022750101939,52.86298766227001],[-120.23029456029643,52.86293362091314],[-120.23036237668552,52.86287399512851],[-120.2304295870673,52.86281883681313],[-120.23049679727525,52.86276367845743],[-120.23057937162082,52.86270533632877],[-120.23063182296359,52.862648894112866],[-120.23070024421436,52.862584800610314],[-120.23075262013218,52.86252891230767],[-120.23082043523713,52.862469286243524],[-120.23087356806232,52.862407813490876],[-120.23094145913099,52.86234762444552],[-120.23099519738102,52.8622816841183],[-120.23104832972052,52.862220211279265],[-120.23110138558387,52.86215930132079],[-120.23115451761781,52.86209782842897],[-120.23119334670798,52.86203171223752],[-120.23124662988037,52.86196912241987],[-120.23129968514806,52.86190821236223],[-120.23135281658327,52.86184673937104],[-120.23140647845909,52.86178135280727],[-120.23145976100582,52.8617187628831],[-120.23149873948844,52.86165153863013],[-120.2315378704806,52.86158318854637],[-120.23156148611898,52.86151913919209],[-120.2315857824676,52.861450068337575],[-120.23162491313532,52.86138171821613],[-120.23164920930293,52.86131264734247],[-120.23168773407939,52.86124876471554],[-120.23172656035838,52.861182657247504],[-120.23177976658636,52.861120621127284],[-120.23183365340522,52.86105356348511],[-120.23187187363969,52.86099192348381],[-120.2319250794183,52.86092988729041],[-120.23199819437981,52.86072098567574],[-120.23203202806626,52.86058155117685],[-120.23209492286902,52.86044803448316],[-120.23218702751846,52.86031933653796],[-120.23233740419569,52.86020136610689],[-120.23252690334975,52.86012523795516],[-120.23276604426074,52.86012350811747],[-120.23296469544484,52.86020018037343],[-120.2331471533578,52.860286165818614],[-120.23331424874101,52.860375335072675],[-120.2334948154306,52.86047528547393],[-120.23366115547292,52.86057003864002],[-120.23384240430298,52.86066496698742],[-120.23402539510417,52.860747046419114],[-120.2342087655861,52.86082632888436],[-120.23444125130047,52.86087373853011],[-120.2346631418838,52.86088914565841],[-120.23489691147599,52.86081688138043],[-120.23492846703611,52.86069419039469],[-120.23487185636226,52.860560985429096],[-120.23481547243337,52.86042610956514],[-120.23472972701643,52.860287532393414],[-120.23464375454957,52.86015063494203],[-120.23458744815781,52.86001519602361],[-120.23454673151876,52.85987490194976],[-120.23453605820926,52.85973327872519],[-120.23455542914165,52.85959031742277],[-120.23466235829441,52.85946233783818],[-120.23482354686367,52.85937469538878],[-120.2350417950204,52.85930672299828],[-120.23524467976824,52.85924193455106],[-120.23541994223098,52.859160604922174],[-120.23562418866602,52.85908575489826],[-120.23582760163147,52.85901705186348],[-120.23603184545311,52.85894221005943],[-120.23622178628268,52.85886272522616],[-120.2363976504586,52.858776926567806],[-120.2365884975411,52.85869073980413],[-120.2367785874863,52.85861013716978],[-120.23696852544498,52.85853065111299],[-120.23717216109551,52.85846026592549],[-120.237277197043,52.858456433598775],[-120.23739767026393,52.85844886256843],[-120.23751874845493,52.85843682385514],[-120.23762567433833,52.85841903456102],[-120.2377325251138,52.85840179914693],[-120.23785375432092,52.858388643197884],[-120.23796060492805,52.85837140757609],[-120.23808115401151,52.85836327293182],[-120.23818800446317,52.85834603710302],[-120.2383096870676,52.85832953001072],[-120.23841668857159,52.858311177082584],[-120.2385236899835,52.85829282405685],[-120.23863242976813,52.858261631149674],[-120.23874003584498,52.858238810360625],[-120.23884817167314,52.85821207588405],[-120.23895713844135,52.85817920286962],[-120.23903765036444,52.858135937138265],[-120.2391342789726,52.858083910964666],[-120.23920018579838,52.85803823658347],[-120.23928190685241,52.8579860355422],[-120.23936385390618,52.85793216357096],[-120.23944572575736,52.85787884551955],[-120.23951223672807,52.85782870338639],[-120.23959395699859,52.857776502121176],[-120.23967590325559,52.857722629925235],[-120.2397565647794,52.85767824679565],[-120.23985183198002,52.85763626312164],[-120.2399614012484,52.85759892159021],[-120.24005530620786,52.85756699872688],[-120.2401641954117,52.857534678559105],[-120.24025832744981,52.8575010757239],[-120.24036706394689,52.85746988119594],[-120.24046172539086,52.857432364598935],[-120.24055646164857,52.85739429394514],[-120.24065119773712,52.857356223214],[-120.24074653831535,52.85731368482634],[-120.24084248335146,52.857266678780306],[-120.24092306661431,52.857222857752326],[-120.24103255890884,52.857186069192316],[-120.24112729410984,52.857147998072406],[-120.24122240641586,52.857107139103775],[-120.24131721745108,52.85706850491338],[-120.24141248054407,52.85702652889319],[-120.24150789580224,52.85698342696334],[-120.24158908241132,52.856935137886595],[-120.24166966548968,52.856891307402286],[-120.24175092791315,52.85684245529513],[-120.24183271851625,52.856789698459835],[-120.24192881230803,52.85674157461462],[-120.24199531858561,52.85669143103993],[-120.24206310868875,52.85663179826931],[-120.24213014297324,52.856577749942886],[-120.24219793270719,52.85651811709011],[-120.24227979830056,52.85646479701659],[-120.24236098304833,52.856416507390676],[-120.24244292440571,52.856362624283676],[-120.24252403382147,52.856314888523286],[-120.24260536911963,52.856265481826114],[-120.24268662927878,52.8562166290525],[-120.2427685698407,52.85616274571162],[-120.24283545138817,52.856109813865025],[-120.24291678593448,52.85606040694592],[-120.24301219751085,52.85601730376827],[-120.2431074565875,52.85597532634598],[-120.24320286778082,52.85593222301132],[-120.24328329500374,52.85588951722681],[-120.2433787058274,52.85584641374699],[-120.24347335980991,52.85580890362067],[-120.24358148650961,52.85578216474736],[-120.24370255538392,52.855770119642386],[-120.24380954814552,52.855751761774236],[-120.2439312211719,52.85573524883391],[-120.2440370051648,52.85572582595849],[-120.24415746947176,52.85571824798505],[-120.24427672520348,52.855719605092],[-120.24438175376224,52.855715766408494],[-120.24450161373692,52.85571265568474],[-120.24461966100333,52.85572294764986],[-120.24473770832668,52.85573323949623],[-120.24485575570704,52.85574353122399],[-120.24495897168715,52.85575309483908],[-120.24507588572808,52.855771767573145],[-120.24517547678757,52.855808136632696],[-120.24537564176966,52.8558736101671],[-120.24551285519405,52.85596298625593],[-120.24559557717741,52.85601370073654],[-120.2456787512425,52.8560610733865],[-120.2457619267006,52.85610843704094],[-120.24584510113523,52.85615580957021],[-120.24592797491273,52.856205406908536],[-120.24599518600061,52.856260423754335],[-120.246061868081,52.856319354185636],[-120.24612930665585,52.856372691129614],[-120.24621134998,52.8564284356919],[-120.24627863668928,52.856482898384215],[-120.2463613605917,52.856533612309086],[-120.24644393246986,52.85658545201191],[-120.24652710980047,52.8566328151091],[-120.24662579805765,52.85667588433584],[-120.24672780864464,52.85669438161412],[-120.246845934063,52.85670411735237],[-120.24696511774117,52.85670602571405],[-120.2470702233816,52.856701630645944],[-120.24719189785529,52.85668511433932],[-120.24729889141025,52.8566667533046],[-120.24740762183765,52.85663554331036],[-120.24751597403976,52.85660712994253],[-120.24761047508932,52.85657073340583],[-120.24771935602321,52.85653840621715],[-120.2478127250252,52.8565103818311],[-120.2479216044439,52.85647806338891],[-120.24803101269943,52.856441831210795],[-120.24813853427445,52.85641955577434],[-120.2482461306158,52.856396726254175],[-120.24835493453875,52.856364961393076],[-120.24844837761928,52.856336382514],[-120.2485571063632,52.85630517144965],[-120.24865183288985,52.85626709424249],[-120.2487599562966,52.85624035954723],[-120.24886883551574,52.85620803128665],[-120.24896280682104,52.85617553835681],[-120.24907168451337,52.8561432188421],[-120.24918048717468,52.85611145321152],[-120.24928861106294,52.85608470909202],[-120.24939560220892,52.85606634614126],[-120.24950183860824,52.85605356762764],[-120.24962185008627,52.85604933477481],[-120.24974231431429,52.856041751077534],[-120.24986338218501,52.85602969962696],[-120.24996901467864,52.856021388320585],[-120.25009008242749,52.85600933663631],[-120.25019639332933,52.85599600350805],[-120.25031746094187,52.85598395158934],[-120.2504230932337,52.85597563987443],[-120.25054491524084,52.855958003180206],[-120.25065115102588,52.8559452236267],[-120.25077108723988,52.85594154358645],[-120.25089215453544,52.855929491075194],[-120.25099778658036,52.855921178843396],[-120.25111885375402,52.855909126098446],[-120.2512252401306,52.85589522911631],[-120.2513463071663,52.85588317613684],[-120.25145269340402,52.855869278948546],[-120.25157376030178,52.85585722573449],[-120.25168059902002,52.855839977610394],[-120.25180174060168,52.85582737017389],[-120.2519079756847,52.85581458948302],[-120.25203024920911,52.855793600516385],[-120.25213663500051,52.855779702708176],[-120.25225838091391,52.85576261822293],[-120.25236521911825,52.85574536947532],[-120.25247281149602,52.85572253607533],[-120.25257980036231,52.85570417022119],[-120.25270214805904,52.85568262656602],[-120.25280958925525,52.855660909768055],[-120.25291786056536,52.855633045389965],[-120.25302605571213,52.85560574383516],[-120.25311941918498,52.85557771521618],[-120.25322889552714,52.85554092418962],[-120.2533241446895,52.85549892953752],[-120.25341878915275,52.855461411392014],[-120.25351403795054,52.85541941658391],[-120.25360883289129,52.85538078137091],[-120.25370347804842,52.855343254058006],[-120.25379880110664,52.85530070502713],[-120.25389352072224,52.85526262357038],[-120.25398884341062,52.85522007438317],[-120.25408348667032,52.85518255569568],[-120.25417888499607,52.85513944342774],[-120.25427413111996,52.85509745693024],[-120.25435530088957,52.85504915004124],[-120.25445062264014,52.85500660047365],[-120.25453179083057,52.854958302395225],[-120.25462718820154,52.85491518975722],[-120.2547224333833,52.85487320289035],[-120.25481647328444,52.85484014232704],[-120.25499364050252,52.85474426339146],[-120.25515597567738,52.85464765747556],[-120.25530498663781,52.85453915548581],[-120.25544067336084,52.85441875747051],[-120.2555882499232,52.854320870273796],[-120.25570902927393,52.85420029926738],[-120.25575768730437,52.85406102108265],[-120.255806345017,52.853921742865516],[-120.25586907958883,52.85378877581925],[-120.25596109811373,52.85366005870642],[-120.25602375704563,52.85352764554636],[-120.25608709335626,52.853390210681596],[-120.256149826271,52.853257243440694],[-120.25619848178613,52.85311796499025],[-120.25626166618234,52.852981646913484],[-120.25638191164595,52.85286498879336],[-120.25654491422762,52.852763359179704],[-120.25669459396192,52.852649824697785],[-120.25688401607884,52.85257365691073],[-120.25710015895243,52.85252072613795],[-120.25731404179034,52.85248453982335],[-120.25754192529287,52.85245522705429],[-120.25776950707898,52.852428147683014],[-120.25800679545021,52.85243976951554],[-120.25822330056623,52.85249478738324],[-120.25844214245187,52.852532488108096],[-120.25866158743936,52.85256572073979],[-120.25889367921417,52.85261587009246],[-120.25909377433301,52.852681883318446],[-120.25927602614979,52.85276950844964],[-120.25944133878804,52.85287204403378],[-120.25957548417897,52.852984296300875],[-120.25966204890686,52.853117271365875],[-120.25970314301323,52.853255323484966],[-120.25971389826903,52.85339694499524],[-120.25972510435396,52.85353522466168],[-120.25976589775966,52.85367551056581],[-120.25982182377588,52.85381428872051],[-120.25983303152559,52.85395255940478],[-120.25984438879588,52.85408972208951],[-120.25985499407777,52.8542324604336],[-120.25988110799946,52.85437090319797],[-120.25990699550864,52.85451102579425],[-120.25996307373156,52.85464868688697],[-120.2600195295466,52.85478355116988],[-120.2600760604411,52.85491786142116],[-120.26013191316854,52.855057202247394],[-120.26018859542768,52.855190395500045],[-120.26022924129369,52.855331798017446],[-120.26027049001664,52.85546873282328],[-120.26031113641945,52.855610135287385],[-120.26035238567457,52.855747070040444],[-120.26039303261415,52.85588847245129],[-120.26046507646377,52.85601847785517],[-120.26055262989867,52.85614418755453],[-120.26068558339674,52.85626537368959],[-120.26083502658656,52.856374999522835],[-120.26098447054467,52.856484625158366],[-120.26113504437987,52.85658587815263],[-120.26131754361208,52.85667182005073],[-120.26149981704857,52.856759441511215],[-120.26169699806144,52.85684723457345],[-120.26188055381343,52.856925357129015],[-120.26206335600652,52.8570090729414],[-120.26226189594242,52.857086803805444],[-120.26244417309275,52.8571744237781],[-120.26261063925988,52.85726858216459],[-120.2627930684911,52.85735508466316],[-120.26297497202428,52.85744549163743],[-120.26314151631321,52.85753908632649],[-120.26332274318223,52.8576345233746],[-120.26348974068412,52.85772476678844],[-120.2636716460665,52.857815181598525],[-120.26383804276611,52.85790989220235],[-120.26418649962999,52.85809389070252],[-120.26435124251519,52.85820088673013],[-120.2645023579168,52.858298221596364],[-120.26466777922084,52.85840019547366],[-120.26481724012815,52.85850981609421],[-120.26496662713848,52.8586199905119],[-120.2650855953846,52.858734307390286],[-120.26518739877739,52.85886520657225],[-120.26528980490653,52.858991637954645],[-120.26539221164286,52.85911806923781],[-120.26550990357669,52.859241875046166],[-120.26564401032041,52.859354673926866],[-120.26577766501927,52.859470832358255],[-120.26591177319125,52.859583630917164],[-120.26604603137913,52.859695321324665],[-120.2661641036759,52.85981632965128],[-120.26629776123838,52.85993248745719],[-120.26641553390195,52.86005572936434],[-120.26651854853054,52.860177691877944],[-120.26663624665883,52.86030149647535],[-120.26675394547053,52.86042530094528],[-120.26687277305261,52.86054073280986],[-120.26700688748599,52.86065353004273],[-120.26715591084832,52.86076649831093],[-120.26730591252924,52.86087221082833],[-120.26745644222905,52.86097400943664],[-120.267620753023,52.86108435146522],[-120.26777075817806,52.86119005443269],[-120.26793672575089,52.86128810981076],[-120.2681197089971,52.8613706990438],[-120.26831873165072,52.861445068678876],[-120.26851820515147,52.86151609612633],[-120.26871888409767,52.86157817887505],[-120.26891783294174,52.86165311041742],[-120.26910014328648,52.861740719812325],[-120.26926566475818,52.86184212406356],[-120.26936854142257,52.861965200869356],[-120.2694398695485,52.86210079384661],[-120.26954169434467,52.862231688977865],[-120.26962891183071,52.86236017927273],[-120.26973186540357,52.862482701723884],[-120.26986554224557,52.86259884634089],[-120.26999966986521,52.86271164894711],[-120.27014968664186,52.86281734876946],[-120.27031446273826,52.86292433611764],[-120.2704810445348,52.86301792008025],[-120.27066238571432,52.86311279148168],[-120.27084658644985,52.86318643200586],[-120.2710625611274,52.8632458935578],[-120.27128041683552,52.863291388620816],[-120.27149879994188,52.86333296955591],[-120.27173194224927,52.86337583763008],[-120.27195100228731,52.863412396004286],[-120.27216946124756,52.86345342169247],[-120.27238604055373,52.86350841307922],[-120.27260209478644,52.86356730885671],[-120.27280263898446,52.863630501482874],[-120.27301884475315,52.863688279558346],[-120.27321999028266,52.863747012676335],[-120.27343672396887,52.86380087624942],[-120.27367167468756,52.863830337277285],[-120.27389359479716,52.863845670303874],[-120.27412734356976,52.86388406588162],[-120.27434475488397,52.86393290604491],[-120.27456246730134,52.863979511937664],[-120.27477965355388,52.86403003116147],[-120.27499811839985,52.864071051575856],[-120.27523367282753,52.86409604174025],[-120.27545379152569,52.864124775029275],[-120.27567338516243,52.86415741270954],[-120.2758569967841,52.864235522006666],[-120.27583896438331,52.86436955419473],[-120.27576053985763,52.8645085085142],[-120.27565514964695,52.86462590972006],[-120.27551956326758,52.86474576736157],[-120.27539948694658,52.86486132725216],[-120.27526397364267,52.86498063058195],[-120.2752017339575,52.86511025623724],[-120.27510869555722,52.86524681495018],[-120.27510662349613,52.86537318965762],[-120.27527247393154,52.86547235134995],[-120.27550923852611,52.865488405473386],[-120.27575021104951,52.865473184969446],[-120.27596534398907,52.86542803846489],[-120.27618167979577,52.865373947153294],[-120.27638332879137,52.86531802341898],[-120.27660026452436,52.8652594635935],[-120.27681667319321,52.8652048171075],[-120.27703225437554,52.86515631783587],[-120.27726161987948,52.86511635169894],[-120.2774879046421,52.865099286778396],[-120.27772586978858,52.86510640094891],[-120.27794960061125,52.8651083230639],[-120.27818936842367,52.86510203305171],[-120.27841565273897,52.86508496634471],[-120.27864178667363,52.86506901613994],[-120.27886859570918,52.865048043745496],[-120.27911016529293,52.865028348595715],[-120.27933689939195,52.86500792929856],[-120.2795668626371,52.8649634909037],[-120.2797139697881,52.86486892488232],[-120.27982122711843,52.864737553841564],[-120.27992795761249,52.86461009644948],[-120.27997587207904,52.864475839858166],[-120.2800097776898,52.86433471203113],[-120.28005829342797,52.86419597868626],[-120.2800623785006,52.86405452063406],[-120.28003619312594,52.86391608320774],[-120.28006942178227,52.86377998601427],[-120.28016154016657,52.86365012489361],[-120.28023889770627,52.86351898614998],[-120.28031625477011,52.86338784734457],[-120.28042275458583,52.86326206927433],[-120.280557647424,52.86314722763464],[-120.28072123343487,52.86304108844596],[-120.28089702527112,52.862955223436806],[-120.28111409171034,52.86289554718601],[-120.2813286066812,52.86285484962635],[-120.28155607873732,52.86282884130553],[-120.28195093337547,52.86277951478567],[-120.2823262996425,52.862764088936764],[-120.28256740442441,52.86274773748558],[-120.282792473833,52.862739597883426],[-120.28301799338561,52.86272810701468],[-120.28325834734737,52.86271733887154],[-120.28348326639919,52.862710314891885],[-120.28372369457193,52.86269899179185],[-120.28394981386722,52.862683031350265],[-120.28417593299324,52.86266707047358],[-120.28441568615936,52.862660767749986],[-120.28464075475598,52.86265262460782],[-120.28488050777217,52.86264632093594],[-120.28510550179304,52.86263873090977],[-120.28534465460093,52.86263689408252],[-120.28556957288465,52.862629866109764],[-120.28579509110837,52.862618369911225],[-120.28603559374727,52.86260647913887],[-120.28626051175668,52.862599449843614],[-120.28650101415907,52.86258755811862],[-120.28672593199194,52.8625805279326],[-120.28695084975065,52.862573497316056],[-120.28719060198031,52.86256718893127],[-120.28743095398087,52.862556412253674],[-120.2876559458736,52.86254882627998],[-120.2878820629004,52.86253285827136],[-120.28810892947061,52.862511305068395],[-120.288336321189,52.862485837627],[-120.28857847160272,52.86246165517642],[-120.28879185223342,52.862429325594974],[-120.28901916754792,52.86240441977524],[-120.2892471566024,52.86237449169319],[-120.28947582051408,52.86233953240878],[-120.2896915239085,52.862289883941045],[-120.28989501488255,52.862219970523974],[-120.2900855437591,52.862135376991425],[-120.29027554788466,52.86205468801976],[-120.29046555129118,52.861973998736865],[-120.29065540410494,52.86189442609811],[-120.29083117120875,52.861808546168675],[-120.29100776245512,52.861716518245295],[-120.29119836240342,52.86163135993586],[-120.29138828665145,52.861551232085624],[-120.29157753646902,52.86147612576307],[-120.29178169535797,52.86140117826888],[-120.29197169300262,52.86132048651769],[-120.29216154009629,52.86124091141307],[-120.29235138648144,52.861161335997934],[-120.29254198126503,52.86107617547959],[-120.29269024476673,52.86097265731775],[-120.29282509732344,52.860857801433646],[-120.29294526495518,52.86074110649248],[-120.29306655607377,52.86061602975601],[-120.29318732157321,52.86049486671119],[-120.29330808638639,52.86037370353305],[-120.29364446325464,52.860203447381224],[-120.29383437654683,52.8601233155058],[-120.29402361571918,52.860048205176504],[-120.29421420218821,52.85996304188636],[-120.29440411453733,52.85988290014227],[-120.2946083351132,52.85980739364924],[-120.29479682273245,52.85973786687022],[-120.29500096644342,52.85966292263707],[-120.29520443617702,52.859592999911015],[-120.2954078309719,52.85952363084345],[-120.29561070043259,52.85945817526101],[-120.29581341954072,52.85939383628943],[-120.29603037271045,52.859334686370175],[-120.29624552866186,52.85928893962176],[-120.2964610578335,52.85924040453411],[-120.29667673741864,52.859190743148815],[-120.29689316380689,52.85913550547478],[-120.2971088423583,52.859085843293194],[-120.29732459465309,52.85903562669904],[-120.29754012131635,52.85898708962452],[-120.29776943441001,52.8589470833125],[-120.29798398785546,52.85890580123679],[-120.2982131492332,52.858866919959645],[-120.29842822625199,52.858821723217325],[-120.2986445742706,52.85876703632087],[-120.29886009807404,52.858718496817254],[-120.2990757722258,52.858668831012615],[-120.29930575492918,52.85862379980419],[-120.29952082836677,52.85857860999098],[-120.29973650104155,52.85852894296935],[-120.29996633267504,52.85848502743356],[-120.30018207856523,52.85843480557424],[-120.30038418748568,52.858374926556984],[-120.30058689424239,52.858310579307286],[-120.30080331109882,52.85825533440142],[-120.30101830689493,52.8582106958546],[-120.30124686463478,52.85817626759413],[-120.30147504746454,52.85814463578597],[-120.30170352909784,52.85811076958965],[-120.30193148629279,52.8580808168202],[-120.30216019215815,52.85804526980784],[-120.30237383949742,52.85801068153136],[-120.30260261879323,52.85797457963768],[-120.30281693775692,52.85793496864105],[-120.30304624024241,52.85789495200573],[-120.30327546693499,52.85785549787705],[-120.30348926194216,52.857819790593915],[-120.30371781439595,52.85778536645481],[-120.30394584379025,52.857754846816285],[-120.30417320068388,52.857729348657266],[-120.30440122945276,52.85769882813397],[-120.30462865992394,52.85767277507272],[-120.30485661272301,52.85764281662071],[-120.30508329521354,52.857622347561716],[-120.30531132275895,52.857591825270326],[-120.30544526928416,52.857594957648665],[-120.30556453216938,52.85759625255336],[-120.30566836407117,52.85760129491755],[-120.30578762698089,52.85760258959584],[-120.30590688989787,52.85760388415315],[-120.30602555499797,52.85760964650172],[-120.30614481794188,52.85761094081757],[-120.30624924774888,52.85761151475539],[-120.30636731512799,52.85762174467249],[-120.3064871758921,52.857618570726665],[-120.30660584111149,52.85762433248921],[-120.30672570186513,52.85762115830015],[-120.30683072944491,52.857617263805324],[-120.30694939470706,52.85762302522099],[-120.3070688071452,52.85762320161968],[-120.30718747245605,52.85762896279499],[-120.30730554010852,52.85763919176928],[-120.30740937232065,52.857644232594865],[-120.30752923307041,52.857641057586235],[-120.30764789849314,52.857646818296544],[-120.30776716159022,52.85764811096573],[-120.30787166681156,52.85764812050372],[-120.30799033230016,52.85765388086814],[-120.3081095954274,52.85765517318981],[-120.30822885856182,52.85765646539049],[-120.30833209334189,52.85766597332427],[-120.30845135651329,52.85766726529911],[-120.30857002213347,52.85767302507816],[-120.30868749269321,52.85768772058871],[-120.30880556086812,52.85769794805552],[-120.30890819835365,52.85771192340915],[-120.30902566913706,52.857726618581445],[-120.30914314000142,52.85774131363608],[-120.30926016283124,52.8577593595194],[-120.30936220313666,52.85777780240449],[-120.30947982362417,52.85779138013989],[-120.30959669737064,52.857810542669945],[-120.30969993282862,52.85782004940122],[-120.30981740418268,52.85783474378087],[-120.30993487561769,52.8578494380431],[-120.31005234713365,52.85786413218772],[-120.31016981873056,52.857878826214765],[-120.31027126233182,52.85790173624166],[-120.31037098799636,52.857937495957785],[-120.31047026700018,52.857976597603106],[-120.31055478690094,52.85801442542641],[-120.31065331837574,52.858059120768836],[-120.31075200058572,52.85810269010754],[-120.31083532633086,52.85814945359589],[-120.31091917431614,52.858192312048175],[-120.31101890239809,52.858228062271984],[-120.31110170544461,52.8582787394796],[-120.31118436055905,52.85833052467562],[-120.31126768722343,52.85837728785077],[-120.3113510140706,52.85842405096538],[-120.31144917463108,52.85847153362157],[-120.31153287455157,52.85851550861138],[-120.3116162772133,52.85856170857373],[-120.3117143631335,52.85860975396443],[-120.31179821410169,52.85865260284111],[-120.31188213929438,52.85869489763223],[-120.31198067373253,52.858739591842394],[-120.31206392801565,52.858786908465284],[-120.31214733058908,52.858833116978595],[-120.31224601611648,52.8588766850415],[-120.31234462660078,52.8589208159809],[-120.3124290007424,52.85895975941879],[-120.31251233000113,52.85900652169271],[-120.31259506228646,52.859057751847935],[-120.31267779477056,52.85910898194318],[-120.31276112459368,52.859155744036315],[-120.31285921316999,52.859203788453435],[-120.31295954236423,52.85923506906482],[-120.31306039358012,52.85926244460741],[-120.31317682514322,52.859284954516546],[-120.31329489881671,52.859295177462364],[-120.31339933284376,52.8592957450455],[-120.31350749852311,52.85926838787513],[-120.3135604329011,52.85920744061869],[-120.31355477943836,52.85913802214176],[-120.31351915872321,52.85906940789542],[-120.31343739613669,52.859010913510794],[-120.3133695707005,52.858959849281185],[-120.31328616655487,52.85891364163898],[-120.31320291066827,52.858866325885735],[-120.31313650444305,52.85880464567851],[-120.31305325012947,52.858757320880066],[-120.31297044264045,52.858706653998745],[-120.31288718870248,52.858659329079856],[-120.31280393375502,52.85861201303636],[-120.31272068018657,52.85856468799667],[-120.31263735156273,52.85851792585746],[-120.3125392636196,52.858469890170205],[-120.31245586133186,52.858423681924386],[-120.31237260732301,52.85837636556832],[-120.3122898025767,52.85832568925926],[-120.31222197960449,52.85827462434521],[-120.31213917523473,52.858223947926824],[-120.31205704231478,52.85816824948217],[-120.31197371519325,52.858121486860554],[-120.311889865093,52.8580786380949],[-120.31180765872271,52.85802349349545],[-120.31175608918666,52.857962532030385],[-120.31170511703128,52.857897102599765],[-120.31166890309255,52.85783295567946],[-120.31160257594763,52.857770711604445],[-120.31155160425705,52.8577052820994],[-120.31149943822061,52.85764878844979],[-120.31144846683398,52.85758335889493],[-120.31141210423307,52.85752032886781],[-120.31139236789065,52.85744460568047],[-120.31138604567668,52.85738021792279],[-120.3113808427452,52.85730745724165],[-120.31137579034058,52.85723357063589],[-120.31136991612652,52.85716583191309],[-120.31136434055995,52.85709585921649],[-120.3113733734703,52.85702828607478],[-120.31136809654372,52.856956079401634],[-120.3113630442028,52.85688219277891],[-120.31135672211651,52.856817804996695],[-120.31135159455768,52.85674448132768],[-120.31134579450887,52.85667618855788],[-120.31132531210632,52.85660605024669],[-120.31131973668613,52.856536077523316],[-120.3112992531992,52.85646594813732],[-120.31129345446661,52.85639764641699],[-120.31127364360006,52.856322486116746],[-120.31126724647744,52.85625866126771],[-120.31126219439388,52.85618477460808],[-120.31125646981852,52.856115918848836],[-120.31126617519939,52.856043314769074],[-120.31126089857615,52.855971108046134],[-120.31128454067586,52.855905925499286],[-120.31129394733748,52.85583555537968],[-120.31131766336975,52.85576981879537],[-120.31134190251161,52.85570016828387],[-120.31136606751691,52.855631071789546],[-120.31140506376761,52.85556270383203],[-120.31144406108773,52.85549432692277],[-120.31148231056099,52.85543154386635],[-120.31152115833308,52.855364283912444],[-120.31156000478825,52.85529703287867],[-120.31159915091875,52.855227538919564],[-120.3116226427884,52.855163473260866],[-120.31164680584038,52.855094385621264],[-120.31168580234471,52.85502600861148],[-120.31170996521651,52.85495692095279],[-120.31173360606768,52.854891738273714],[-120.31177245295179,52.8548244782137],[-120.31181137376345,52.85475666411222],[-120.31186430496551,52.85469571744587],[-120.31191798366712,52.85462917687891],[-120.31195630690902,52.85456583067199],[-120.31200923766716,52.854504883932925],[-120.31204823305143,52.85443650677733],[-120.31208707783044,52.854369255529804],[-120.31212592368122,52.85430199533072],[-120.31216424632031,52.85423864904285],[-120.31221777350261,52.854173234243966],[-120.31227085387435,52.85411116144755],[-120.31230917612667,52.85404781510478],[-120.31236270284721,52.853982400231935],[-120.31241555825977,52.85392200731377],[-120.31246863803098,52.85385993441815],[-120.3125216424143,52.8537984244586],[-120.31258873219527,52.853743218878925],[-120.31265701595154,52.85367907734454],[-120.31272335903623,52.85362945663055],[-120.31280520491156,52.85357553332562],[-120.312886976546,52.85352216398866],[-120.31296822616383,52.853472699589595],[-120.31304984813971,52.85342044712579],[-120.31313169320119,52.85336652358627],[-120.31319803524744,52.85331690259447],[-120.31326572040022,52.8532572286502],[-120.31331872288506,52.853195718307624],[-120.31337165119,52.853134761966075],[-120.3134106419434,52.85306639323494],[-120.31344888753843,52.853003600505865],[-120.31347304640859,52.85293451239622],[-120.31351263498374,52.8528616667229],[-120.31355087905108,52.852798882888415],[-120.31360395577228,52.85273680943585],[-120.31367096726622,52.85268216616466],[-120.31375273610458,52.85262879619502],[-120.31379098080357,52.85256600333729],[-120.31382989634496,52.85249818847015],[-120.31386881176259,52.85243037358725],[-120.3139225585045,52.85236327798119],[-120.31397481278483,52.852307352267204],[-120.31404249524877,52.8522476778373],[-120.31411017752333,52.85218800336619],[-120.31417726271509,52.8521327968232],[-120.31424494461879,52.85207312227005],[-120.31431128335814,52.852023500608944],[-120.31437881568338,52.85196494296729],[-120.31444590017661,52.85190973626302],[-120.3145135813505,52.85185006154669],[-120.31458066548859,52.85179485476154],[-120.314647749453,52.851739647936185],[-120.31471602690533,52.8516755051238],[-120.31476902533309,52.85161399406529],[-120.31482202360796,52.85155248298051],[-120.31487494653176,52.851491534834274],[-120.31492779530049,52.851431140690686],[-120.31499562424004,52.85137034868479],[-120.31504914467398,52.85130492354123],[-120.31510214216087,52.851243412318],[-120.31516997055338,52.85118262020422],[-120.31522281852163,52.85112222591621],[-120.31527574033888,52.85106127757276],[-120.3153440157609,52.850997134367866],[-120.31541109748267,52.85094192707865],[-120.31547758229097,52.850891187728855],[-120.31555942062344,52.85083725347586],[-120.31564043766039,52.850789467105365],[-120.3157209317958,52.85074559462898],[-120.31581610868601,52.85070354921008],[-120.31592559357864,52.850666136706046],[-120.31602024739871,52.850628005072295],[-120.31611490104956,52.85058987336136],[-120.31620992684604,52.85054895355116],[-120.31630525197743,52.8505057907347],[-120.3164005757226,52.850462636775696],[-120.31648106965262,52.85041875483355],[-120.31657624387101,52.85037671772611],[-120.31667156824676,52.85033355460774],[-120.31675191131174,52.85029079840918],[-120.31684723531771,52.850247635145976],[-120.3169424839621,52.850205034770696],[-120.31703832898242,52.850157966327735],[-120.31713357723572,52.85011536579514],[-120.31721399459146,52.850072046308],[-120.31732340147367,52.85003519545318],[-120.31741797867504,52.84999761670915],[-120.31751195800294,52.84996451481646],[-120.31762069388375,52.84993268570592],[-120.31772950476004,52.84990029352689],[-120.31782340966825,52.84986774541428],[-120.31793221903199,52.84983536198212],[-120.3180408803094,52.84980408651154],[-120.31813493387968,52.84977042114903],[-120.31824299721602,52.8497436224223],[-120.31833697653691,52.84971051092843],[-120.31844571115458,52.849678681049234],[-120.31855451956356,52.84964629703689],[-120.31864842328307,52.84961374825965],[-120.31875723256528,52.84958135512221],[-120.3188659665401,52.8495495248515],[-120.31895919831207,52.84952200679247],[-120.3190686034684,52.849485145363744],[-120.31917748604864,52.849452197802215],[-120.31927071740692,52.84942467949437],[-120.31937952573425,52.84939228577674],[-120.3194882587627,52.84936045492628],[-120.3195821611404,52.84932790539689],[-120.31969037151552,52.84929998833018],[-120.31979962640443,52.84926424321685],[-120.31989367739627,52.849230576434934],[-120.32000173825998,52.84920377608149],[-120.32009631125821,52.84916619516162],[-120.3202051922305,52.84913324664109],[-120.3202990184385,52.84910125950303],[-120.3204078251599,52.849068864826464],[-120.32051730182917,52.849031448004894],[-120.32061112757921,52.84899946061554],[-120.3207199338039,52.84896706564785],[-120.3208139834141,52.848933398122774],[-120.3209232352302,52.848897660892305],[-120.32101721060664,52.8488645472367],[-120.32112609009758,52.84883159785642],[-120.32121991495153,52.848799609976794],[-120.32132872020406,52.84876721444125],[-120.32142261987137,52.84873466342852],[-120.32153075362362,52.84870729869034],[-120.32163940819665,52.84867602880526],[-120.32174702071185,52.84865256891392],[-120.32185500503782,52.8486263208803],[-120.32196328724513,52.848597838737504],[-120.3220707491887,52.8485755044893],[-120.32217932912552,52.84854478813664],[-120.3222869410127,52.848521327748905],[-120.32239507366961,52.84849396221152],[-120.32248897192167,52.84846141034084],[-120.32259702920615,52.84843460758727],[-120.3227058324818,52.84840221076886],[-120.32281470948827,52.848369259813985],[-120.3229085320589,52.848337270576444],[-120.32301733484971,52.84830487346754],[-120.32311197709015,52.848266736063664],[-120.32320699099863,52.84822581053415],[-120.32330170797529,52.84818711000418],[-120.32339701946036,52.84814395030542],[-120.3234498520154,52.84808355220086],[-120.32351758959979,52.84802330918189],[-120.32359807041315,52.84797943123224],[-120.3236932333665,52.84793737935874],[-120.32380270424989,52.84789995944891],[-120.3239119509151,52.84786421941579],[-120.32400465501547,52.84784060238261],[-120.32412694521399,52.84781897532703],[-120.32423254284708,52.847810597222825],[-120.3243535662438,52.847798468968335],[-120.32447295124751,52.84779862768244],[-120.32457854876228,52.84779024926705],[-120.32469838054183,52.84778705672622],[-120.3248164251487,52.84779726817018],[-120.32493506551822,52.84780301145924],[-120.32505251453199,52.84781769070205],[-120.32515572924783,52.84782718391513],[-120.32527690134675,52.84781393770029],[-120.3253830944007,52.847801090523944],[-120.32550538259575,52.847779470969044],[-120.32561217112975,52.84776215554616],[-120.32572029972887,52.84773478693497],[-120.32581501333499,52.8476960843667],[-120.32590942777702,52.847659624678066],[-120.32601822656012,52.84762722477601],[-120.32611346019374,52.84758461689552],[-120.32620742745702,52.84755150799689],[-120.32630273577298,52.847508336987424],[-120.32639714938261,52.847471876902375],[-120.32649305286634,52.84742423769162],[-120.32657420005384,52.84737532666742],[-120.32665527201983,52.847326978559465],[-120.32672292884143,52.84726729663751],[-120.32678998997021,52.84721208272158],[-120.32684296544127,52.84715056604353],[-120.32689661128201,52.847084018316906],[-120.3269207450192,52.847014927184006],[-120.32694435822546,52.846949741117704],[-120.32696923735047,52.84687505597153],[-120.32699270153606,52.84681098690217],[-120.32700215411775,52.8467400610828],[-120.3269964804331,52.846670642705305],[-120.32694445630746,52.84661303850578],[-120.32689347441854,52.846547615194034],[-120.32682706757566,52.846485942242694],[-120.3267915111098,52.846416768496105],[-120.3267245091196,52.84635956353137],[-120.32665653901823,52.84630962357434],[-120.32655786903862,52.84626605833082],[-120.3264592731056,52.84622193896518],[-120.32637483631424,52.846183568261274],[-120.3262756452187,52.84614391678743],[-120.32617652934718,52.84610370225491],[-120.32604849800349,52.846056475991084],[-120.32594819139919,52.84602519735755],[-120.32584736320933,52.84599783264599],[-120.32573140792574,52.845971984067276],[-120.32563058000068,52.84594461916876],[-120.32551551842158,52.84591206830836],[-120.32541402009824,52.84588973424113],[-120.32529702299912,52.84587170430909],[-120.32519500428673,52.8458532751222],[-120.32507756063245,52.84583859600351],[-120.32496011705896,52.84582391676736],[-120.32484088650199,52.84582264153774],[-120.32473529390937,52.84583102019937],[-120.32461546762724,52.84583421278181],[-120.32449504560245,52.84584187328166],[-120.32437514540042,52.84584561965587],[-120.32427014840798,52.84584952986036],[-120.32415091780004,52.84584825393054],[-120.32403228297257,52.845842509842505],[-120.3239877949205,52.84584035577857],[-120.32391364817701,52.8458367656346],[-120.32381043855351,52.84582727131828],[-120.32369299544727,52.84581259081525],[-120.32357495660129,52.84580237822958],[-120.32345751364463,52.845787697490934],[-120.32335653865316,52.84576144764612],[-120.32327329726638,52.84571413863358],[-120.32320637617573,52.84565636866453],[-120.3231859534501,52.845585677895365],[-120.32318073183077,52.84551291719343],[-120.32327544280776,52.845474216617916],[-120.32338416294233,52.845442382082716],[-120.32349161619311,52.84542004649001],[-120.3235997402161,52.84539267978991],[-120.32369355684311,52.84536068092894],[-120.32380302111395,52.84532326095756],[-120.32389825181662,52.84528065481036],[-120.32399229079103,52.84524698466214],[-120.32410153050337,52.84521124439251],[-120.32419489954475,52.84518259615707],[-120.32430436291887,52.84514517571424],[-120.32438468856162,52.84510241415559],[-120.32448058896586,52.8450547765159],[-120.32457581839243,52.84501216981211],[-120.32467045193457,52.844974031072994],[-120.32476560593514,52.84493198718664],[-120.32484608082417,52.84488809935969],[-120.32494130951366,52.84484549235515],[-120.3250365380129,52.84480288527227],[-120.32513117067887,52.8447647461569],[-120.32522624990013,52.84472325592946],[-120.3253344449012,52.844695333582905],[-120.32542833254914,52.84466277928451],[-120.32553771965323,52.844625911718055],[-120.32563227643442,52.84458833516878],[-120.3257410675951,52.84455593546018],[-120.32583629464922,52.8445133277212],[-120.32591669260682,52.844470002123465],[-120.32599775979669,52.844421654379985],[-120.32607897687848,52.844372180630046],[-120.32617479871266,52.844325104559765],[-120.32625586533463,52.844276756633626],[-120.32633693296387,52.844228399714076],[-120.32643290306513,52.844180206415544],[-120.32649914032095,52.84413114060003],[-120.32656679229257,52.84407145864665],[-120.32663384859967,52.84401624470768],[-120.32670150020063,52.843956562672375],[-120.32676915161228,52.84389688059594],[-120.32680736932346,52.84383408315433],[-120.32686108488484,52.84376698126449],[-120.32691398094966,52.84370602739493],[-120.32695279371336,52.84363876184025],[-120.32700576451238,52.84357724494899],[-120.32704457582335,52.84350998829456],[-120.3270976213529,52.8434479083814],[-120.32713635857009,52.84338120573058],[-120.3271893287846,52.843319688746476],[-120.32725705233342,52.84325945232534],[-120.32730927798131,52.84320352035872],[-120.32737752273378,52.84313936984186],[-120.32745880960093,52.843089341057826],[-120.32752638475229,52.843030212552115],[-120.32759343818078,52.84297499802885],[-120.3276462583934,52.842914597838714],[-120.3276993011164,52.84285252656646],[-120.32775219604048,52.8427915633479],[-120.32780531346852,52.84272892904677],[-120.32785813307649,52.84266852875195],[-120.32791162167665,52.84260310632471],[-120.32797926924914,52.84254342349986],[-120.32804632132641,52.84248820870101],[-120.3281139685283,52.84242852579429],[-120.32816678732738,52.84236812534907],[-120.32822042508941,52.84230157681561],[-120.32824395869554,52.842236953269435],[-120.32828291684493,52.84216857019514],[-120.32829169716408,52.842102666172565],[-120.32831664491746,52.84202742647012],[-120.32832594542091,52.841957617345926],[-120.32834970249743,52.84189131377004],[-120.32835915292364,52.84182037868331],[-120.32836815568139,52.84175280358195],[-120.32834824772213,52.84167819950457],[-120.32832722311672,52.84161197752158],[-120.32832214203141,52.841538099846595],[-120.3283010437227,52.841472431893884],[-120.32829529362176,52.84140357632347],[-120.32828961735217,52.841334166708954],[-120.3282997368298,52.84125820948919],[-120.32832327093075,52.841193576947965],[-120.32834687877211,52.84112839035848],[-120.32837160204373,52.84105483059298],[-120.32840981485033,52.84099203251645],[-120.32846344931276,52.840925492749776],[-120.32850166186834,52.840862694638076],[-120.32853994812004,52.840799342470305],[-120.3285647458667,52.84072521967137],[-120.32858835307995,52.84066003301379],[-120.3286124804436,52.84059094125098],[-120.32863675772374,52.840520723525096],[-120.32867556368306,52.84045346620092],[-120.32871392430536,52.84038955098219],[-120.32875273002375,52.84032229362697],[-120.32879168560937,52.840253910300575],[-120.32883049108179,52.84018665291375],[-120.32886914882553,52.840120503594655],[-120.32889290403493,52.84005419983123],[-120.32887247456905,52.83998350979884],[-120.3288209024565,52.83992255512616],[-120.32875353535171,52.83986814809935],[-120.32867074707181,52.83981748273901],[-120.32860278511467,52.839767543700155],[-120.32852118764428,52.83970794207549],[-120.32846902114458,52.83965145531517],[-120.32841864046303,52.83958156429801],[-120.32841303923368,52.83951159163109],[-120.32845124940665,52.839448802415426],[-120.32848990706985,52.839382653190015],[-120.3285430191709,52.83932001841929],[-120.32858167538468,52.83925387809434],[-120.32862063026896,52.8391854947781],[-120.32865958383798,52.83911712038203],[-120.3286979432827,52.839053205114254],[-120.32872199575715,52.83898466730007],[-120.32877570220194,52.838917564327545],[-120.32881376251548,52.83885589199041],[-120.32885197270187,52.83879309368207],[-120.32890508353749,52.83873045872402],[-120.32895916075236,52.838660567573335],[-120.32901197369033,52.83860016660312],[-120.32907976216262,52.8385393659716],[-120.32911797167402,52.83847656756389],[-120.3291567750156,52.838409309993175],[-120.32918045502922,52.838343560141816],[-120.32918997708425,52.83827207078532],[-120.32921358198493,52.838206883900256],[-120.3292383770546,52.838132760836615],[-120.3292478239806,52.83806183444471],[-120.32927142867658,52.83799664753928],[-120.32929570339614,52.83792642956103],[-120.3293339108506,52.83786363999478],[-120.32937286325995,52.83779525636846],[-120.3294262696364,52.83773038709132],[-120.32947855946396,52.83767389992031],[-120.32954619702949,52.83761421600569],[-120.32962799211035,52.83756027149888],[-120.32970837311592,52.837516943114345],[-120.32980424933655,52.837469309834844],[-120.32988530000999,52.83742095025682],[-120.3299804320272,52.83737890194444],[-120.33007571380236,52.83733572759455],[-120.33018381311526,52.837308354693725],[-120.33029124232135,52.837286012766015],[-120.33039874638325,52.83726310775994],[-120.330506771528,52.83723628860424],[-120.33061368038535,52.837217851495254],[-120.33072177905444,52.837190478097234],[-120.33082920768204,52.837168135675775],[-120.33093790101556,52.837136293981644],[-120.33104652041715,52.837105006230296],[-120.33114053573111,52.837071330184834],[-120.33124915362896,52.83704005118105],[-120.33134368975846,52.83700246091691],[-120.33145253100408,52.83696950171825],[-120.33154706560839,52.836931920224934],[-120.33164160123587,52.83689432971844],[-120.3317509618653,52.83685746512039],[-120.3318454971482,52.83681987444799],[-120.33194010602202,52.83678172965377],[-120.33203463978083,52.8367441477636],[-120.33214400087536,52.836707273859844],[-120.33219636079467,52.83665022246097],[-120.33220632350968,52.83657538170413],[-120.33219997297894,52.836510994215196],[-120.33214906885644,52.83644501871852],[-120.33212856196968,52.83637488313476],[-120.33210812890484,52.836304193499245],[-120.3321177193538,52.8362321497675],[-120.33212656747187,52.836165682227666],[-120.33215076150799,52.836096026558735],[-120.33215953460343,52.836030121991975],[-120.33218439704343,52.8359554441584],[-120.33222274836582,52.83589152761055],[-120.33226154446254,52.835824268903174],[-120.33230049031816,52.835755884217],[-120.33233928616899,52.83568862547815],[-120.33236281107915,52.83562399189825],[-120.33240168165075,52.835556170151406],[-120.33244003109928,52.835492262452526],[-120.33247882767996,52.83542499472007],[-120.3325176978859,52.83535717292629],[-120.33257057544458,52.83529621618298],[-120.33260937164123,52.83522894839904],[-120.33266247252497,52.835166311599735],[-120.33270111859031,52.83510016974392],[-120.33275414543519,52.835038086943854],[-120.3327865887412,52.834906440501165],[-120.33281145061846,52.834831753545075],[-120.33284972505997,52.834768399728944],[-120.33290267634554,52.83470687983092],[-120.33295622216092,52.83464089179243],[-120.33300902446568,52.83458048887011],[-120.33307613126021,52.83452471687369],[-120.33312893325149,52.83446431389297],[-120.33319715527742,52.834400159637795],[-120.33326418780634,52.83434494157399],[-120.33333114642662,52.834290277516416],[-120.33341166616928,52.83424582947775],[-120.33350753090592,52.83419819307595],[-120.33360339661773,52.83415054765818],[-120.33368436176218,52.834102748339255],[-120.33376540045435,52.8340543949162],[-120.33383243170476,52.833999176515746],[-120.33390005735558,52.83393948995403],[-120.33396708825124,52.83388427147271],[-120.3340198881888,52.833823868066844],[-120.3340441527206,52.8337536489203],[-120.33405366560291,52.833682158960336],[-120.33404842690908,52.83360939819028],[-120.33404274350727,52.83353997957258],[-120.3340369852103,52.83347112393512],[-120.33403182148443,52.83339780017089],[-120.33402539375851,52.83333397563363],[-120.33402030498266,52.83326008887892],[-120.33401454675966,52.83319123322804],[-120.33400878855524,52.83312237757381],[-120.33400355000666,52.83304961677568],[-120.33399779183908,52.83298076111467],[-120.3339772835786,52.83291062569855],[-120.33395677419644,52.83284049921198],[-120.33395064513195,52.83277443164933],[-120.33393065668778,52.832700391074596],[-120.33393957497404,52.83263336920072],[-120.33397903486181,52.83256107867709],[-120.3340167109917,52.83250219251429],[-120.33407032604019,52.83243564982725],[-120.33412319894984,52.83237468333499],[-120.33416206376376,52.832306860864826],[-120.3341866981795,52.832233853509294],[-120.3341815343461,52.83216052969381],[-120.3341283291628,52.832111864398506],[-120.33401374430268,52.83207597047894],[-120.33391338981038,52.83204526135174],[-120.33381370374353,52.83200952996432],[-120.3337145386833,52.83196988441336],[-120.33363131390622,52.83192257338847],[-120.33353207429997,52.831883490665035],[-120.33343231520068,52.831848312997685],[-120.33333203658228,52.83181704038558],[-120.3332312372291,52.83178968176365],[-120.33311605936325,52.83175825508478],[-120.33304810503928,52.8317083183611],[-120.33298074670192,52.83165390453729],[-120.33289908370602,52.83159486862873],[-120.33283231920068,52.831535995529066],[-120.33274954224298,52.83148533277409],[-120.33266453428644,52.8314514343529],[-120.33256485184184,52.83141569295565],[-120.33245041883863,52.83137868046442],[-120.33234947241114,52.831352438108354],[-120.33224912081803,52.831321727544804],[-120.33213230945299,52.831302587222545],[-120.33201549819272,52.83128344678395],[-120.33191403126189,52.831261118124345],[-120.33179722021303,52.83124197746808],[-120.3316956797439,52.83122020266595],[-120.331578868905,52.83120106179197],[-120.33146265296149,52.83117745268494],[-120.33136126151682,52.83115456056363],[-120.33124437725081,52.831135973402525],[-120.3311429860218,52.83111308109212],[-120.33102558088888,52.83109840778186],[-120.33090817583671,52.83108373435402],[-120.33079017600583,52.83107352892221],[-120.33068759542898,52.83105957244486],[-120.33057123164342,52.83103707948177],[-120.33045501670398,52.83101346937519],[-120.33035407236748,52.83098722529776],[-120.33025327688372,52.830959864105346],[-120.3301381772215,52.83092788044348],[-120.33003782821824,52.83089716798202],[-120.32993874421408,52.83085695623272],[-120.32985426092185,52.8308191416993],[-120.3297556223047,52.830775587647466],[-120.32967195801716,52.83073162486258],[-120.32957384099213,52.83068415659215],[-120.3294905483446,52.830637405575644],[-120.32940725587953,52.83059065449865],[-120.32932403737767,52.830543349315874],[-120.32922540112918,52.83049978587479],[-120.32914158798266,52.830456948667326],[-120.32905837122608,52.830409634356066],[-120.32895966058265,52.83036663366947],[-120.3288758479644,52.83032379626876],[-120.3287773614457,52.830279115418634],[-120.32869347539399,52.8302368319305],[-120.3285948393075,52.83019327688739],[-120.32851117735741,52.83014931325914],[-120.32842840702943,52.83009865634975],[-120.32834519176227,52.830051341522186],[-120.32826242182134,52.83000068449263],[-120.32817980204645,52.829948901440964],[-120.32811230272266,52.82989561072574],[-120.3280459200307,52.82983393780834],[-120.32799391501375,52.82977633345499],[-120.32794295162995,52.82971090989622],[-120.32789198840243,52.82964548631256],[-120.32783983503599,52.82958899890979],[-120.32778887211212,52.8295235752763],[-120.3277379093445,52.82945815161791],[-120.32770221679971,52.8293900944214],[-120.32766600419698,52.829325942332886],[-120.3276002182044,52.82925980103819],[-120.32754813949691,52.82920275944714],[-120.3274807921272,52.82914834238166],[-120.32739914153453,52.82908930255415],[-120.32731473779619,52.829050932106306],[-120.32721618085363,52.82900681289141],[-120.32713237384647,52.82896396527286],[-120.32703433751797,52.82891594078244],[-120.32695053087185,52.82887309303168],[-120.32686724463285,52.828826340100434],[-120.32676920891885,52.82877831538437],[-120.32668540280918,52.82873546744059],[-120.32658677224222,52.828691910669086],[-120.3265029664854,52.82864906259273],[-120.32640322074135,52.82861387888183],[-120.32628478234456,52.82860701998081],[-120.32616619515855,52.82860127798442],[-120.32604805449554,52.828592184795895],[-120.3259436954377,52.8285916284425],[-120.32582570368496,52.82858141800629],[-120.32570830734534,52.82856673935638],[-120.32559076224432,52.82855317761252],[-120.32548878480547,52.82853474847719],[-120.32542211032903,52.82847530806989],[-120.32533979345945,52.82842129785885],[-120.32527304553827,52.828362411406275],[-120.32522089720631,52.828305922794016],[-120.32515526542808,52.828238663063125],[-120.3251032662569,52.82818105737084],[-120.32505171379046,52.82812010058369],[-120.3249853382832,52.8280584258662],[-120.32493385996665,52.827996914979025],[-120.32488290339886,52.82793149001775],[-120.32490658418317,52.82786574058773],[-120.32494538451401,52.827798483952286],[-120.32499826471364,52.82773752138774],[-120.3250652973854,52.827682307768434],[-120.32514692905316,52.82762949199958],[-120.32516346446711,52.82761735964383],[-120.32522811516489,52.82758001830749],[-120.32532330485228,52.827537410522574],[-120.32540367135046,52.827494084806446],[-120.3254988606709,52.82745147687685],[-120.32559345444878,52.82741333696654],[-120.32570264717212,52.8273775948012],[-120.32579657145293,52.82734447686819],[-120.3259059876697,52.82730705450689],[-120.3259997616198,52.82727506237105],[-120.32609442956652,52.82723635907223],[-120.32619013790335,52.827189845454996],[-120.32627191724713,52.8271359029259],[-120.32633894732615,52.827080688558276],[-120.32640597723174,52.827025474150396],[-120.32645885319673,52.82696451983414],[-120.32652647801258,52.82690483724985],[-120.32659350739937,52.826849622728716],[-120.32666113184489,52.82678994006246],[-120.3267280870692,52.82673527950545],[-120.32679511592887,52.82668006486327],[-120.32687726494042,52.82662333379671],[-120.32694369823184,52.8265725871723],[-120.3270260694401,52.82651418492569],[-120.32709309756703,52.82645897010554],[-120.32714530287102,52.826403037611676],[-120.32719817819927,52.82634207400204],[-120.32725187113061,52.82627497118395],[-120.3272906663193,52.82620771370495],[-120.32734368998581,52.82614563299461],[-120.32738248491228,52.826078375479774],[-120.32742128090672,52.826011109013024],[-120.32747497307089,52.82594400607858],[-120.32751302369448,52.8258823336514],[-120.32756664175707,52.825815784715516],[-120.32761884565376,52.82575985198803],[-120.3276858718291,52.825704636802826],[-120.32776764524633,52.82565070211688],[-120.32784934466558,52.82559732141833],[-120.32793052377896,52.82554784579345],[-120.3279972516811,52.82549486448047],[-120.32809325157059,52.82544611520257],[-120.32815953281985,52.82539648488102],[-120.32824130623817,52.82534254091833],[-120.32832359951222,52.825284691762036],[-120.32838988024295,52.825235061305385],[-120.3284715031158,52.82518224314255],[-120.32855268071846,52.82513276707445],[-120.3286337831627,52.825083853931666],[-120.3287006582149,52.82502975517331],[-120.32878242905669,52.824975819757235],[-120.32886353093939,52.824926906450926],[-120.32893048042041,52.82487224457278],[-120.32901277185356,52.82481439491607],[-120.3290790510525,52.82476476405539],[-120.32916149081237,52.82470579725964],[-120.32922784344152,52.82465561226421],[-120.32932369249684,52.8246079700488],[-120.32940464433182,52.824560173388406],[-120.32948626465817,52.82450735449731],[-120.32956743980088,52.82445787770616],[-120.32964794491356,52.82441343196824],[-120.32972956465822,52.82436061290308],[-120.3298112591542,52.824307230795284],[-120.32989243353956,52.82425775377318],[-120.329959305702,52.82420365426927],[-120.33004159445157,52.82414580386668],[-120.33010802012436,52.82409505537142],[-120.33017563529091,52.82403537057584],[-120.33022842841032,52.82397496849363],[-120.33028211359967,52.823907864188065],[-120.33033557497302,52.82384243987269],[-120.33035924508886,52.82377668917101],[-120.33036801841837,52.82371078421845],[-120.33037768391952,52.82363817706338],[-120.33037185792645,52.82356988379446],[-120.33035188000115,52.82349584217412],[-120.33033093618846,52.8234290567952],[-120.33030991749624,52.82336283439449],[-120.33027415100206,52.82329534069861],[-120.33023912932042,52.82322225288621],[-120.33018698069627,52.82316576629327],[-120.33010489168983,52.823110079220676],[-120.33002168699988,52.82306277430557],[-120.32992143152157,52.82303149860503],[-120.32980568487682,52.82300453663544],[-120.32970475988097,52.82297829186523],[-120.3295879724911,52.82295914890989],[-120.32948719645704,52.822931786919156],[-120.32937092922965,52.82290873860142],[-120.32926955854924,52.822885844552836],[-120.3291532177949,52.822863350066896],[-120.32903702589525,52.82283973843337],[-120.32892023918397,52.82282059481214],[-120.32880285762522,52.82280591920176],[-120.3287020086809,52.82277911058213],[-120.32861754247324,52.82274129496328],[-120.32853493512947,52.82268952085683],[-120.32846759677871,52.822635104129965],[-120.3283853622879,52.82258053286777],[-120.32831802310977,52.822526124987654],[-120.32825180033338,52.822463334863805],[-120.32818431394756,52.82241003499804],[-120.3281176452847,52.822350595887926],[-120.32805075307857,52.82229283675251],[-120.32798341597092,52.822238419734155],[-120.32790192666089,52.82217826296348],[-120.3278344399726,52.82212497182306],[-120.32775124090942,52.82207765633278],[-120.32766685071975,52.822039285965595],[-120.32755289340619,52.82199891738695],[-120.32745264223574,52.82196763955717],[-120.3273529113226,52.821932456502246],[-120.32725377567571,52.8218928052399],[-120.3271687911886,52.8218589026322],[-120.3270703259886,52.821814220108074],[-120.3269710420964,52.82177568563429],[-120.32687198096565,52.82173547999865],[-120.3267722510736,52.821700296445215],[-120.32668801248984,52.821660799399],[-120.32658872929966,52.821622264598076],[-120.32647365756316,52.82159027715321],[-120.32635992636851,52.82154822739245],[-120.32626012234078,52.821513606382624],[-120.32617692621449,52.82146628975834],[-120.32610899639442,52.82141634869012],[-120.32601112854934,52.82136719714737],[-120.3259277829858,52.821321006307514],[-120.3258445876033,52.82127368944172],[-120.32574590132539,52.821230685801936],[-120.32566270513006,52.821183377740766],[-120.32558010557604,52.82113159256737],[-120.32549735621335,52.821080933299164],[-120.32541356649351,52.82103808423619],[-120.32531383943305,52.821002899428265],[-120.32521463283123,52.82096380940299],[-120.32513143893549,52.82091649202101],[-120.32504764871514,52.82087365162853],[-120.32494911299709,52.820829530279504],[-120.32484946181935,52.82079378209013],[-120.32476730932468,52.820738654183394],[-120.32469938350259,52.820688703340124],[-120.32460181543925,52.820637325479616],[-120.32451862285919,52.82059000765348],[-120.3244506963739,52.820540065597726],[-120.32436854607334,52.82048492846678],[-120.32430129034056,52.82042995522774],[-120.32424974838078,52.82036899778544],[-120.32419880196765,52.82030357220714],[-120.32414726030689,52.82024261471483],[-120.32406451436809,52.82019195440783],[-120.32402824001376,52.820128363801075],[-120.32400849857929,52.8200526409286],[-120.32397222442678,52.81998905029878],[-120.32392179929231,52.81991971945526],[-120.32388612080779,52.81985166068251],[-120.32386504004273,52.81978599102197],[-120.32384410700882,52.819719213263284],[-120.32380850384008,52.81965059147618],[-120.32378801753525,52.81958046261841],[-120.32376708591347,52.819513675901],[-120.32373125915593,52.81944673409128],[-120.3236650479041,52.819383941256376],[-120.32359764594983,52.819330084603095],[-120.32353076459331,52.81927232278068],[-120.323464033474,52.81921343495413],[-120.32339737637673,52.819153993041816],[-120.32332870914627,52.81910963542877],[-120.32321253068643,52.81908601797443],[-120.32309575685767,52.81906686851381],[-120.32299320765088,52.81905290520795],[-120.32287643401108,52.81903375552869],[-120.32275727834688,52.81903247816247],[-120.32263812268984,52.81903120067533],[-120.32253371320233,52.819031195333395],[-120.32241396198712,52.81903438572499],[-120.32229540191592,52.81902863978436],[-120.3221762462834,52.81902736182854],[-120.322057090658,52.81902608375174],[-120.32195335065619,52.819021055744905],[-120.32183419505508,52.8190197774418],[-120.32171444381962,52.81902296711994],[-120.32159647952813,52.819012752371385],[-120.32149452660605,52.81899431965456],[-120.32137760487981,52.818976285508974],[-120.32125964079795,52.81896607042174],[-120.32114227247301,52.8189513871165],[-120.32104017096592,52.8189340710292],[-120.3209228028045,52.818919387504216],[-120.32080543472381,52.81890470386181],[-120.3207034824014,52.818886270456694],[-120.32058551872959,52.818876054691486],[-120.32049756671296,52.8188644876735],[-120.32046874665377,52.81885690261528],[-120.32035137890107,52.81884221851832],[-120.32024883113179,52.81882825281338],[-120.32013317587466,52.818800727192276],[-120.32003167095164,52.8187789421314],[-120.31991668686818,52.81874638522194],[-120.31981644893234,52.81871510080677],[-120.31971673191278,52.818679911192206],[-120.31961701505762,52.818644721492156],[-120.31951662742193,52.818614562778265],[-120.31941705985334,52.81857825588389],[-120.3193174185643,52.81854250294752],[-120.3192175533854,52.81850842992789],[-120.31911954997474,52.818460398507895],[-120.31903532486598,52.81842089588892],[-120.31893501325402,52.81839017369398],[-120.31881988207036,52.81835873272468],[-120.31871912380052,52.818331361411126],[-120.31860347087607,52.81830383427426],[-120.31850152093966,52.81828539894985],[-120.31838519839928,52.81826289372802],[-120.31828384464471,52.818239990126635],[-120.3181682673447,52.81821189958048],[-120.31806683992217,52.81818954983375],[-120.31795185892489,52.818156990987546],[-120.31785035664586,52.81813520403177],[-120.3177500465581,52.81810448081879],[-120.31763387392081,52.818080857828726],[-120.31753304196306,52.81805404847092],[-120.3174168695831,52.8180304252654],[-120.31729995221991,52.818012387047794],[-120.31719800354254,52.817993950587926],[-120.3170812353997,52.81797479513152],[-120.31697980910967,52.81795244444223],[-120.3168630411783,52.81793328876827],[-120.31674746564367,52.81790519681787],[-120.3166459645781,52.81788340881726],[-120.31652979315344,52.81785978473133],[-120.31642769612856,52.81784246462049],[-120.31631152493611,52.81781884031798],[-120.31619416146779,52.817804152055395],[-120.31609161755252,52.81779018270981],[-120.3159759677887,52.817762652974935],[-120.31587506369073,52.81773639622922],[-120.31577550126782,52.81770008622596],[-120.31567526882398,52.817668798254026],[-120.31557540859633,52.81763472211717],[-120.31547644294007,52.81759394378291],[-120.3153766569855,52.817559313434124],[-120.31527761775344,52.81751908897144],[-120.31517895080175,52.81747607634637],[-120.31509517732337,52.81743322875681],[-120.31499613864904,52.817393004053436],[-120.31489642869167,52.81735781031479],[-120.31476916752963,52.817305539841115],[-120.31442261481023,52.81710828238357],[-120.31410384038047,52.81692642070051],[-120.31375617607989,52.81673753439064],[-120.31337499974516,52.816576250712885],[-120.31297334040747,52.81645669297331],[-120.3125227523497,52.81636848587885],[-120.31206813901673,52.81631043646129],[-120.3116111402787,52.81627025751593],[-120.31113626601267,52.81625225145272],[-120.31068931355793,52.81624853302798],[-120.31021093308676,52.816256777507064],[-120.30974662519732,52.816271324934476],[-120.3092830631221,52.81628028546687],[-120.30881756075414,52.8163037653131],[-120.30835332590722,52.81631775319193],[-120.30788976303548,52.81632670822227],[-120.3074272448933,52.816327842356884],[-120.30696427886572,52.816332325695456],[-120.30652322382446,52.81628446509623],[-120.30628731770828,52.81626400491724],[-120.30606563334415,52.81624873259546],[-120.30582778653238,52.81624279259202],[-120.30560371328764,52.816245391515224],[-120.30536362663096,52.8162562056771],[-120.30513880661519,52.816264388746546],[-120.30489991446014,52.816266265908354],[-120.30467584103572,52.81626886306046],[-120.30443694883526,52.81627073928013],[-120.30421287535921,52.81627333554856],[-120.30397398311341,52.81627521082615],[-120.30373628581646,52.8162681495804],[-120.30351333204176,52.81626237144661],[-120.30327682995795,52.81624637323541],[-120.30305499737372,52.81623221223228],[-120.30282028836866,52.81620280905504],[-120.30260099597297,52.81616965813317],[-120.30238222743712,52.816132592822264],[-120.30214931238896,52.816089784264896],[-120.3019306187658,52.81605216407716],[-120.30171237379787,52.81601119247434],[-120.30147931065461,52.815969499586586],[-120.3012623361401,52.81591903709565],[-120.30106070432757,52.8158653811616],[-120.3008443298138,52.815810440952276],[-120.30062788053377,52.81575606331086],[-120.30041255212878,52.81569331223009],[-120.30022910437408,52.815615238884476],[-120.30006383806918,52.81551275826387],[-120.29991436187666,52.81540374244722],[-120.29977978011219,52.8152948845592],[-120.29961503988747,52.815188489316334],[-120.29946519287735,52.81508226093752],[-120.29929993046957,52.81497977920639],[-120.29911693508181,52.81489836202282],[-120.29891658206941,52.814835203404535],[-120.29869939270064,52.814786407171106],[-120.29846768472024,52.81473465527736],[-120.29825012200506,52.81468865517528],[-120.29803248559944,52.81464320870001],[-120.29781559725853,52.814592176828214],[-120.2976149485578,52.814531249972674],[-120.29743278131807,52.81444368218246],[-120.29731624121317,52.814311531802396],[-120.29724610066768,52.81416701563881],[-120.29732032543238,52.8140582014779],[-120.29753592408075,52.814007429021316],[-120.29777831821703,52.81397931290442],[-120.29800537030556,52.81395438893358],[-120.29823130022805,52.81393784648616],[-120.29847197365535,52.81392257889612],[-120.29869977251062,52.81389206858292],[-120.29891462243094,52.813846869652714],[-120.29913006863282,52.81379721126168],[-120.29934611343833,52.81374307553408],[-120.2995622318337,52.813688385374405],[-120.29976472764827,52.813624037707],[-120.29996804428635,52.8135535506457],[-120.30015706623506,52.8134784282073],[-120.30036157832343,52.813398995504464],[-120.30055074833962,52.813322755422206],[-120.30074021655821,52.81324428102542],[-120.30094420282529,52.81316876127421],[-120.30111974861993,52.81308286328781],[-120.30128197038896,52.812985074090506],[-120.30144538676933,52.81287834862945],[-120.30159338718657,52.81277537008611],[-120.30174138688983,52.81267239134933],[-120.30191961834487,52.81256638605323],[-120.30205294855193,52.812461569078586],[-120.3021301460905,52.81233041165016],[-120.30216393705062,52.81218927274538],[-120.30219765249142,52.812048696789006],[-120.30223151830063,52.81190699486818],[-120.30226456162076,52.81177144092581],[-120.30231301940391,52.8116321397145],[-120.30239081220269,52.81149651401926],[-120.30248267458444,52.81136719404909],[-120.30257431173614,52.81123955397442],[-120.30270912999349,52.811123566096036],[-120.30285719656501,52.81102002287112],[-120.30303340124759,52.810929099838745],[-120.30322375047434,52.810843919266155],[-120.30341342741733,52.81076376044918],[-120.30360243095238,52.81068863232787],[-120.30380684799492,52.81060975645209],[-120.30399659687762,52.81052904264418],[-120.30418686713222,52.81044442346039],[-120.30438881852074,52.810383972747005],[-120.30460364356965,52.81033877223836],[-120.30483194214415,52.810304335951635],[-120.30506106098869,52.810263760129544],[-120.30527394369354,52.81023307952962],[-120.30550216591313,52.81019920491047],[-120.30573061231429,52.810163649861494],[-120.30594551007718,52.810117883916725],[-120.30616212357191,52.81005927640477],[-120.30637888694632,52.809999542542236],[-120.30658008555935,52.80994468204034],[-120.30678389646265,52.809870268993734],[-120.30696001400275,52.80977989403807],[-120.30713635528316,52.80968783882426],[-120.30729914739057,52.809585573042426],[-120.30746126649609,52.80948833806046],[-120.3076232368117,52.8093922109269],[-120.30780024604628,52.80929513259483],[-120.30796161672818,52.80920348197814],[-120.30813914731627,52.80910248910197],[-120.3083013378846,52.809004689953554],[-120.30847752265618,52.80891375863064],[-120.30863956251567,52.80881707601902],[-120.3088170898935,52.808716082092246],[-120.30899275074829,52.80862905506914],[-120.309181735016,52.808553917860685],[-120.30938493796154,52.80848396829967],[-120.30958866181167,52.80841011328958],[-120.30977712250944,52.80833888020623],[-120.30999499034183,52.808270766431804],[-120.3101827026816,52.80820512671903],[-120.31040079353374,52.808135332189266],[-120.31058902732228,52.80806577778618],[-120.3107929714274,52.80799024066884],[-120.3109557483042,52.80788796970356],[-120.31113065565225,52.807806524533994],[-120.31134725030324,52.80774790736592],[-120.31156324900692,52.80769374894278],[-120.31179160179344,52.80765874501859],[-120.31201928254983,52.80762877171382],[-120.31224509960461,52.80761275627018],[-120.31247106560232,52.807595623369956],[-120.31271117690935,52.8075842316329],[-120.31293758986924,52.807563746767165],[-120.31316221348278,52.80755666573949],[-120.31340239833388,52.80754471854472],[-120.31362642544254,52.807542104721456],[-120.31386407579522,52.807549145981625],[-120.3141005336696,52.807565122953314],[-120.31432292114084,52.807574795065875],[-120.3145617642512,52.807572898718206],[-120.31478698385013,52.80756134648226],[-120.3150134696193,52.807540303567365],[-120.31524107355855,52.807510878055105],[-120.31546949746455,52.80747530399027],[-120.31569724977047,52.80744476056629],[-120.31592500175054,52.80741421669965],[-120.31615141226678,52.80739372563203],[-120.31638965824646,52.80739629367177],[-120.31661495032482,52.8073841838814],[-120.31684255232815,52.807354755260576],[-120.31706911107989,52.80733314539416],[-120.31730623998553,52.80734408481562],[-120.31752728621834,52.807363804112974],[-120.31776314854405,52.80738424182216],[-120.31789507575681,52.80740132743855],[-120.31798300345585,52.807412896491634],[-120.31821886627088,52.80743333328443],[-120.31844661638604,52.80740278452457],[-120.31859403489156,52.80730369825801],[-120.31858324609414,52.80716095204256],[-120.31844961032475,52.80704485875535],[-120.31828262104455,52.80695524459781],[-120.31808331851097,52.806884308097345],[-120.31786696761174,52.80682939894689],[-120.31762991650402,52.80681789767202],[-120.31740648936261,52.80681605102265],[-120.31716988541301,52.80680119773196],[-120.31695063016569,52.806768073414894],[-120.31671760260025,52.806726410532214],[-120.31650184908007,52.806667039683674],[-120.31631796366638,52.806592342110804],[-120.31613668602219,52.80649810073398],[-120.3159708207634,52.80640011001724],[-120.31582096390832,52.806293901916824],[-120.31568674226975,52.80618227352782],[-120.31556897720729,52.80605906784994],[-120.31546595306196,52.805937144144714],[-120.31534841226278,52.805812267153335],[-120.3151988570877,52.80570382416408],[-120.31504840844458,52.80560208313699],[-120.31488307021442,52.805500185700694],[-120.31473307017772,52.80539509317596],[-120.31456721242458,52.805297100405916],[-120.31421911965299,52.80511211917431],[-120.31405266793057,52.80501859376352],[-120.31387110383426,52.80492658284338],[-120.31368872003442,52.804840719745535],[-120.31350641210204,52.80475429337874],[-120.31330712896872,52.80468333973084],[-120.31309131656708,52.804624516578926],[-120.31287431203022,52.80457462922565],[-120.31265618917811,52.80453312362102],[-120.31243978202328,52.80447876736336],[-120.31225807459103,52.80438787093999],[-120.31215454264625,52.80426984931284],[-120.31217362853701,52.804126870231045],[-120.31225070477215,52.80399626842212],[-120.31234244720285,52.803867494154304],[-120.31244892846875,52.803740002285615],[-120.3125548127138,52.80361697840969],[-120.31266129272099,52.80348948632759],[-120.31276717573304,52.80336646224007],[-120.31288817067771,52.803241923441824],[-120.31299338095221,52.80312393021467],[-120.31311385336811,52.80300329628704],[-120.31322040411783,52.80287524960195],[-120.3133402037673,52.802759646509806],[-120.3134748169403,52.802644762658566],[-120.31360935545281,52.80253043268986],[-120.31377210477264,52.80242815745766],[-120.3139342570902,52.80233035010369],[-120.31411092460363,52.80223549586729],[-120.31428647289238,52.80214902353921],[-120.31444854904743,52.802051769503045],[-120.31461136845533,52.80194893902904],[-120.31474590173278,52.80183460770588],[-120.31486636436841,52.80171398081484],[-120.31498690143239,52.80159279080771],[-120.31509329521631,52.801465850398706],[-120.31620242987793,52.80022060855412],[-120.31842062693174,52.79954632839427],[-120.32016183067142,52.79632604090371],[-120.32139160369707,52.79615914735961],[-120.32519703847422,52.793554366151405],[-120.32946310719878,52.79151705480249],[-120.33409882265306,52.790283912513864],[-120.33759421132042,52.789554189085884],[-120.34129851106611,52.78803569692282],[-120.34029936281834,52.78545784898121],[-120.33881419371782,52.7835107888517],[-120.33855823815112,52.78162260562137],[-120.33772853935741,52.77945426411749],[-120.33662328607828,52.77790271575189],[-120.33161832564346,52.77833722268069],[-120.32660358271652,52.779740163875296],[-120.3199062642525,52.78079425229202],[-120.31339589050344,52.78144950002766],[-120.31019439662825,52.781429949378904],[-120.30690286448622,52.780968583010896],[-120.30642044020901,52.78089845366951],[-120.3018303083873,52.779449589198244],[-120.30062931294853,52.77795482227044],[-120.29725538462382,52.77577233903188],[-120.29285421750008,52.773808355134584],[-120.28930911091484,52.77201919262032],[-120.28828691787076,52.77052904712322],[-120.28786263808905,52.76824619834096],[-120.28809988342852,52.764361437383684],[-120.28850931084419,52.76219404417509],[-120.2897655068513,52.7604884921862],[-120.29232447862232,52.75873068819226],[-120.29308747389803,52.75514308945989],[-120.29260513698544,52.75496327362673],[-120.29193320492449,52.75486471632208],[-120.29104806773003,52.75446735399589],[-120.29044288940646,52.75420395377302],[-120.28961405205266,52.75383124731745],[-120.28899768370732,52.753540308339076],[-120.28861770390756,52.75315241522759],[-120.28823429244889,52.75279020356582],[-120.28771360676014,52.75245220963747],[-120.28740932687744,52.75227769263884],[-120.28706664413683,52.752056325443014],[-120.28649095311154,52.75190677561694],[-120.28621341709879,52.75186623335329],[-120.28598026991307,52.751827859037306],[-120.28576057268968,52.75180026040944],[-120.28553788332327,52.75179500193869],[-120.28530995705452,52.75182883903064],[-120.28507321967881,52.75181727158521],[-120.28485359731644,52.751789117211395],[-120.28463569675779,52.75174811214306],[-120.2844202664457,52.75168867125321],[-120.28420461165047,52.7516309099735],[-120.28398746082654,52.75158431856126],[-120.28375311983875,52.75155487602128],[-120.28353514609428,52.75151443188198],[-120.28333571183893,52.75144677595388],[-120.28313657638267,52.751376894568175],[-120.28293878996331,52.75129695067522],[-120.28275564922902,52.751218855679824],[-120.28255831334386,52.751135560060334],[-120.28235813269416,52.75107349651407],[-120.28214323232456,52.75101014629334],[-120.28192661149357,52.75095963698929],[-120.28170811909598,52.750923094554025],[-120.28148064361814,52.75095357314649],[-120.28124091751131,52.750964338432254],[-120.28100238918006,52.7509661670414],[-120.28077865654386,52.75096871868881],[-120.28055911684174,52.75093999327311],[-120.28035946474596,52.75087401225751],[-120.28017737884025,52.75078809405374],[-120.28001301023347,52.75068111278173],[-120.27986456185208,52.75056647277718],[-120.27976177325121,52.75044451331934],[-120.27966018339524,52.75031361758533],[-120.27955747027214,52.750191103885],[-120.27940827593577,52.750082048375866],[-120.27925855753453,52.74997690671317],[-120.2791093635097,52.749867859744214],[-120.27897616499634,52.74975059122059],[-120.27890439370991,52.74961947120505],[-120.27886378657566,52.74947806547338],[-120.2787763234321,52.749352914783664],[-120.27867473918647,52.749222018101],[-120.27855663730048,52.749103247731554],[-120.27845385594776,52.7489812870088],[-120.27836759340775,52.74884719980027],[-120.278295901003,52.748715516354814],[-120.27820948849448,52.74858255496404],[-120.27812262831156,52.74845293562608],[-120.2780050550039,52.74833025059697],[-120.27790235138748,52.74820773528532],[-120.27776961078996,52.74808711419738],[-120.27765114061688,52.74797113091161],[-120.2775178009955,52.74785498654088],[-120.2773840138364,52.74774218413646],[-120.27723535737174,52.74762922057867],[-120.27708520342006,52.747527427032246],[-120.27692077956884,52.74742100417152],[-120.27680208939213,52.74730669103944],[-120.27673107805091,52.74716998437735],[-120.2766898810864,52.747033045746214],[-120.27664928373164,52.74689163900525],[-120.27663790102596,52.74675446841954],[-120.27662786571906,52.746607253568364],[-120.27666041592197,52.746475606160566],[-120.2767815048654,52.74634998294319],[-120.27694270447184,52.74625837120834],[-120.27716053360842,52.74618863562351],[-120.27736334273281,52.74611985567672],[-120.27756562627206,52.74605498942275],[-120.27782442623524,52.7459018067311],[-120.27798622110875,52.745805725441635],[-120.27814966417779,52.74569734772758],[-120.2782693984368,52.74558177612087],[-120.27841797066608,52.74547323715341],[-120.27856631687045,52.74536637799452],[-120.27871563648141,52.74525225351226],[-120.2788347688717,52.745141149392445],[-120.27896989242771,52.745021832697724],[-120.27910434188463,52.74490753798379],[-120.2792530594132,52.74479788088386],[-120.27938728217435,52.74468526583489],[-120.27952240274819,52.74456594846703],[-120.2796430286275,52.74444367321295],[-120.27977739899568,52.74432994066428],[-120.27995090781603,52.74425747479309],[-120.28016722330582,52.74419891273304],[-120.28039653600052,52.74415446924085],[-120.2806115783111,52.744105396623056],[-120.28082729325746,52.74405130145031],[-120.28104315856727,52.74399607991392],[-120.28124527677237,52.74393232424607],[-120.28144829377537,52.74386185711611],[-120.28165198313764,52.74378636746684],[-120.28181376140745,52.74369028075849],[-120.28196224382471,52.74358229120874],[-120.28209660531817,52.74346855593593],[-120.2822312654534,52.743352586439535],[-120.28235173048999,52.7432314253297],[-120.28247144648833,52.7431158492408],[-120.28260595482922,52.74300099631786],[-120.2827404624476,52.74288614323175],[-120.28287541832165,52.74276793888733],[-120.28299528126303,52.74265124519605],[-120.28310162216219,52.74252433783469],[-120.28319332048613,52.74239558117631],[-120.28328449389507,52.7422707385175],[-120.28337686392445,52.74213695951473],[-120.28345459035839,52.74200134020577],[-120.28351692512892,52.74186946578541],[-120.28357940915238,52.74173647428704],[-120.28361320555634,52.74159533420679],[-120.28363288202392,52.74144844875393],[-120.28373757328752,52.7413338191494],[-120.28392750154481,52.74124978302589],[-120.28411817716218,52.74116016141728],[-120.28426664377909,52.74105217770264],[-120.28441451239202,52.7409486529962],[-120.28459046756917,52.74085775348203],[-120.2847934644648,52.74078728041323],[-120.28499563731049,52.74072295515544],[-120.28519982843193,52.74064355402443],[-120.28534769337305,52.740540028112314],[-120.2854821858882,52.74042517169166],[-120.28564469073017,52.74032349429609],[-120.28581996823772,52.7402376150972],[-120.28602348305364,52.74016323470566],[-120.28622647429127,52.740092759121914],[-120.28636021524687,52.73998348684981],[-120.28648110776106,52.739858970109076],[-120.28661499688609,52.73974858049065],[-120.28673543935182,52.739627414584604],[-120.28682719469862,52.739498100783685],[-120.28689026313428,52.73936063915329],[-120.2869384640395,52.73922301771431],[-120.28698980615032,52.739061929472385],[-120.28719489351067,52.738197208590854],[-120.28829489653417,52.7375426125683],[-120.29051539952746,52.73685840538675],[-120.29144918109127,52.73633283569501],[-120.29232429684427,52.73557784504068],[-120.2925471109942,52.73457962086514],[-120.2921249137554,52.7340631734056],[-120.29181350123712,52.73305236637745],[-120.29177055322471,52.732371722606295],[-120.29280042041259,52.73157200038862],[-120.29452889990687,52.730556765287005],[-120.29569119237547,52.72999060173554],[-120.2961182592231,52.7291338963917],[-120.29678383489107,52.7280515817626],[-120.29751974760514,52.72711099869403],[-120.2979963988474,52.726662585439655],[-120.29888095500658,52.725723058148695],[-120.29961374458527,52.72491666656982],[-120.29834025516872,52.724756734146396],[-120.29654608888399,52.724483682500015],[-120.29498540604138,52.72435692048751],[-120.29348358054588,52.72423525953055],[-120.2924367140561,52.72416165650734],[-120.29094147552749,52.72399081239386],[-120.28924567727223,52.72353917983902],[-120.28718246354575,52.72271932955358],[-120.28512865746933,52.72194093332705],[-120.28365914405965,52.72135635842112],[-120.2820285784541,52.7208633853572],[-120.27596892965518,52.71921750517063],[-120.27338131166643,52.71842735221519],[-120.27230740808518,52.717447108578234],[-120.27147408511172,52.716559601479396],[-120.27062374477461,52.71557737021681],[-120.26953134658105,52.71495767180443],[-120.2683216362544,52.71388189379666],[-120.26803297434833,52.71270680574982],[-120.26813200110911,52.71252332358602],[-120.26825114423333,52.712411673749315],[-120.26845088458002,52.712364685404424],[-120.26869099737041,52.71234947785639],[-120.26892976073758,52.712344323145466],[-120.26916687502872,52.712351455353655],[-120.26938800798413,52.71236679840094],[-120.26962632166737,52.71236499338135],[-120.26985375036311,52.712333419974286],[-120.27006677067553,52.712298333104975],[-120.27028114077055,52.712253183565494],[-120.27051036689257,52.712208204419625],[-120.27072518447761,52.71215971188456],[-120.27095373584665,52.71211975407567],[-120.27118146197438,52.712085944006105],[-120.27139410593674,52.712053642847486],[-120.27162190568818,52.71201927786795],[-120.27184918123481,52.711988817618526],[-120.27206339806516,52.71194478184764],[-120.27227971084793,52.71188511604265],[-120.27248259058557,52.71181466293728],[-120.27268456955544,52.711750920664564],[-120.27290088169079,52.711691244768055],[-120.27310428320678,52.71161688539678],[-120.2732649104536,52.71152862772448],[-120.2734140518401,52.7114150614727],[-120.27353430214654,52.71129502388634],[-120.27366873445949,52.71118017878129],[-120.2738037651921,52.71106086533794],[-120.27392341428335,52.71094529549888],[-120.27408568486955,52.710844749175585],[-120.27427444836745,52.71076854629712],[-120.27447672046252,52.71070255786268],[-120.27469347288381,52.71063953641421],[-120.27489559396797,52.71057466429583],[-120.27511174612788,52.710516110250055],[-120.27532744966409,52.71046089800538],[-120.2755282201043,52.71040608713984],[-120.27575870413729,52.71035159830088],[-120.27597350645614,52.7103030960774],[-120.27618786032522,52.71025793566452],[-120.27640168914233,52.71021668899316],[-120.27663007392854,52.710177846037546],[-120.27684382766677,52.71013715261249],[-120.27707228707438,52.71009774579993],[-120.27730014729923,52.7100628067367],[-120.27751509610646,52.71001318462698],[-120.27773019529164,52.70996243613495],[-120.27794499342299,52.70991393028236],[-120.27815994193219,52.709864298047606],[-120.2783755628213,52.70980964315706],[-120.27859118315975,52.70975498786757],[-120.27880620434767,52.70970480038374],[-120.27900764078449,52.709644952325824],[-120.27922385804065,52.70958582765892],[-120.27942529333349,52.70952597887767],[-120.27964278064515,52.70945736295711],[-120.27978935429807,52.709362778321],[-120.27979267736787,52.709226891266205],[-120.27978189189712,52.70908525826075],[-120.27977185580527,52.708938031039374],[-120.28083291217072,52.70745857213733],[-120.28109902884427,52.70691559824003],[-120.28430391282484,52.70597954066127],[-120.28599549824204,52.705567562471295],[-120.28939316354857,52.70541324522477],[-120.29252745630977,52.70567097398517],[-120.29240122405507,52.70539101976941],[-120.28965042825898,52.70482428295139],[-120.28751046571567,52.70414004606085],[-120.28522032845889,52.70335566367774],[-120.28407887503646,52.70254761120022],[-120.2828756256696,52.701201315825905],[-120.28166686600646,52.70011896334786],[-120.28144716490331,52.699982277216726],[-120.2788651352884,52.698047830471424],[-120.27701872717519,52.6966193545049],[-120.27642987320284,52.69601875190461],[-120.27633475545856,52.695507547375165],[-120.27634733246697,52.69519165154673],[-120.2763748766436,52.694764040780875],[-120.2763296331884,52.69399161384022],[-120.27602709481194,52.693585497859964],[-120.27544307633099,52.693171206359274],[-120.27485914340016,52.69275635776706],[-120.2738077266119,52.69227866525526],[-120.27307549779485,52.691971781539124],[-120.27275368751913,52.69170975696125],[-120.27201536949548,52.690893770693826],[-120.2716527686683,52.69060332254585],[-120.27138758282246,52.69025186941735],[-120.2713227069073,52.68984839936137],[-120.2712185699633,52.68962683871387],[-120.27127308854132,52.689220230019124],[-120.27126822097614,52.688480133030446],[-120.2706025262686,52.68778857278657],[-120.27029928103947,52.68749933911687],[-120.2699862666895,52.687061203252036],[-120.26958690018793,52.68682347091802],[-120.26905469719338,52.68635658473854],[-120.26846305324808,52.68600034332774],[-120.26819712421951,52.68587654041304],[-120.26780604544824,52.68579887401356],[-120.26748290171281,52.68565820101713],[-120.26709443839388,52.68545022861521],[-120.26684545401189,52.68520018646475],[-120.26573326544059,52.684623288669314],[-120.26513635159536,52.68430668095866],[-120.26413841048416,52.68365441846714],[-120.26215326825942,52.68238129848031],[-120.26227047397906,52.68195134936766],[-120.26234921355984,52.68147564842548],[-120.26247368926076,52.680991517361925],[-120.26270688440947,52.68025130494538],[-120.26300005536743,52.679285772431584],[-120.26288698997234,52.67879896356595],[-120.26296234165176,52.6784591595409],[-120.2630785552409,52.67814721610142],[-120.26358538336743,52.677472728858454],[-120.26383467061372,52.677276959131845],[-120.26439493030382,52.67653650457893],[-120.26528302796414,52.67590098198686],[-120.26646541887574,52.6750662676483],[-120.26741385714486,52.67420206414738],[-120.2688728550166,52.673299395958374],[-120.26919742426567,52.6719873905269],[-120.26901933211307,52.67109822581561],[-120.26871892907758,52.66979094930868],[-120.26898126334916,52.66849949943484],[-120.26912060208936,52.66790364998794],[-120.26954205836884,52.66719908935117],[-120.26994802168677,52.666720900444616],[-120.27038204947654,52.66647684365494],[-120.2712981740587,52.666184485781876],[-120.27206300810072,52.66580093178158],[-120.27321296968556,52.665538026394835],[-120.27419651484067,52.664963910942646],[-120.27514969827438,52.66472731559686],[-120.27605457668649,52.66440738590463],[-120.27715950586102,52.664147300313296],[-120.27783450057707,52.6638790528644],[-120.27850649690558,52.66363314318652],[-120.27885240960315,52.66326948166943],[-120.2795318206043,52.66285695927506],[-120.280093906991,52.66221041838777],[-120.2801970865417,52.661216995760086],[-120.28070498438001,52.6606420171694],[-120.28195464688343,52.66018770587718],[-120.2831045692106,52.65981226950849],[-120.28407144918548,52.658804933771734],[-120.28543343438935,52.65806543532671],[-120.28639029755644,52.65768838689132],[-120.2871976171585,52.656873361985596],[-120.28751428140066,52.65617149165034],[-120.29042406386273,52.65552401147725],[-120.2917835233433,52.65546964408828],[-120.29251458050918,52.65511355403292],[-120.29261716083661,52.65434498197345],[-120.29227113125167,52.65382038320884],[-120.29157558712156,52.65346534444086],[-120.29056519718446,52.65335406669769],[-120.28994660372945,52.65331310998676],[-120.28834615832373,52.65350351211653],[-120.28701125714277,52.653819335925036],[-120.28515914805153,52.6540024382189],[-120.28422272271828,52.65389360367572],[-120.28320405400734,52.65384425697694],[-120.28158087924517,52.654093049430685],[-120.28060298387975,52.654072106728556],[-120.27925269471777,52.65372480727055],[-120.2782508068991,52.6532169174743],[-120.27728182889149,52.65290740616008],[-120.27642019821269,52.65246204099558],[-120.27584476135111,52.652320802546484],[-120.2753585371897,52.65206813116915],[-120.27396883850192,52.65190492001966],[-120.27130156435943,52.651185353674364],[-120.26940761499925,52.650350217592226],[-120.26860300744929,52.649480292856175],[-120.26832350967095,52.64868339494126],[-120.26772634242408,52.6478180296027],[-120.26648704066059,52.64686657176791],[-120.26565965547553,52.64638906370712],[-120.26330131057072,52.6461387413739],[-120.2611535963627,52.645758184569644],[-120.25967525343623,52.6452609646151],[-120.25862592063481,52.64477753483313],[-120.25651598421639,52.64400574383228],[-120.25501959963654,52.643643639178656],[-120.25319516153759,52.643401403939144],[-120.25182589710468,52.642978050496964],[-120.25041908898699,52.64294470128453],[-120.249260866547,52.64238834339413],[-120.24943722382385,52.64140806278389],[-120.24871959153965,52.64066876300831],[-120.24829287478265,52.64052797052409],[-120.24745131397209,52.64037907801461],[-120.24604734245902,52.640214814869964],[-120.24507872377893,52.64012710522303],[-120.24358615440872,52.63995899801619],[-120.24229452975882,52.6397327640431],[-120.24101224410629,52.639437249338116],[-120.23973824811775,52.63908029142343],[-120.23856502280657,52.63885760306696],[-120.23656821155393,52.63802241091399],[-120.23538233116753,52.636350727648505],[-120.23386463636585,52.63460695385611],[-120.23379620888568,52.63401264400877],[-120.23374810766506,52.63315734024909],[-120.2337835647486,52.63256366816737],[-120.23394555639545,52.63158212071056],[-120.23400991196829,52.63066378172816],[-120.23396730498065,52.62954729737981],[-120.23435139993217,52.628570541204354],[-120.2343387386405,52.62712155995037],[-120.23471941860676,52.62628014031776],[-120.23489325188959,52.62510013838043],[-120.23496081083124,52.6240475721871],[-120.2356995160989,52.622752685735996],[-120.23659310040512,52.62218175928463],[-120.24014083091973,52.62174872728975],[-120.24057774753248,52.621591516569175],[-120.2415337401793,52.62121817692793],[-120.24273045966031,52.62049013286669],[-120.24316505215448,52.620129265266534],[-120.24432830808567,52.619428791550874],[-120.2458880349228,52.61876081325271],[-120.24675478803765,52.618277328755596],[-120.24793632146434,52.61788189556265],[-120.2496941467307,52.61783817347953],[-120.25089326493368,52.61786414631371],[-120.25192219167948,52.617941304097975],[-120.2522571787399,52.617879106609855],[-120.25804309819375,52.61791178531397],[-120.25897974118685,52.61779149193227],[-120.25977966476994,52.61769425356785],[-120.26048719948278,52.61751094154851],[-120.2618658652988,52.61708348335969],[-120.26302049848694,52.61677653938093],[-120.26439851665445,52.616353519497274],[-120.26596594761128,52.616289501901605],[-120.26798899632077,52.61603815870739],[-120.27074188095396,52.616101519191005],[-120.27221056148298,52.61577675538297],[-120.27398663908825,52.61581734660549],[-120.27583934653408,52.61572897868563],[-120.27740240498262,52.61569721302971],[-120.27918493869493,52.61557836103313],[-120.28114616617673,52.615455321998496],[-120.28300448397913,52.61510231451188],[-120.28402485705547,52.61424267424669],[-120.28438563342928,52.61365316325592],[-120.2846829136297,52.61320559175057],[-120.28509108743317,52.61281687208186],[-120.28538732727972,52.61226579916084],[-120.28602210300396,52.611625056435756],[-120.28770045362144,52.61083924600956],[-120.28742362287939,52.60991038138299],[-120.28712870393913,52.609673286951015],[-120.28635299522227,52.60903481039827],[-120.28608610528923,52.60814297579626],[-120.28568103627401,52.60750804379002],[-120.28596403790681,52.60649979405804],[-120.28610434154625,52.60600460132014],[-120.286149428037,52.60522194562822],[-120.28624326623607,52.60463002968101],[-120.28650938970269,52.60374801364833],[-120.28688891426394,52.60290584752348],[-120.28725849929161,52.60224929434218],[-120.28766162711278,52.6018974284879],[-120.28804903589675,52.601552095458665],[-120.28836990664901,52.60070424409471],[-120.28800635902908,52.59998082725588],[-120.28798305556217,52.59993302474136],[-120.28764698453602,52.59933745804486],[-120.28753917073267,52.599255710133356],[-120.2870825322524,52.59889654583577],[-120.28664582709727,52.59816560426084],[-120.28621512868465,52.597167333854486],[-120.28560039458634,52.5966587365284],[-120.28489870976559,52.59568989766781],[-120.28518372171074,52.59477732207061],[-120.28523380794394,52.593957231623264],[-120.28527344323537,52.59232590060283],[-120.28508107746484,52.59176603645005],[-120.28503526795306,52.59144219316689],[-120.28490306610719,52.591321013128685],[-120.28424266444958,52.590710641938514],[-120.28384358141886,52.590143447961076],[-120.28387294129156,52.58958996931806],[-120.28475058637416,52.589572863523856],[-120.28582000065488,52.58956404163436],[-120.28636547625334,52.58947890598346],[-120.2866187954849,52.589025801795486],[-120.28678377994282,52.58890120614825],[-120.28720855647552,52.588942276653455],[-120.28833175697625,52.58919750251018],[-120.28929097292632,52.58934741766586],[-120.29026971102559,52.58923964713806],[-120.290679471458,52.588725611311546],[-120.291474168349,52.58821751019168],[-120.29243128884893,52.58827170979075],[-120.2933372739807,52.58848700922194],[-120.29402002075697,52.588930318447765],[-120.29470358593043,52.58914483246861],[-120.2947285279938,52.589180345197526],[-120.29499723150379,52.58961349067306],[-120.29608732839723,52.59022909039526],[-120.29717314855912,52.59031990945882],[-120.29793234137033,52.59018952579662],[-120.2984777259292,52.590104896649876],[-120.29891330641993,52.59006493429875],[-120.29931732441517,52.59003915923734],[-120.29959008898851,52.58999628315891],[-120.30010145150997,52.58994428210682],[-120.30055026134954,52.589804876521676],[-120.300747216487,52.58966271150975],[-120.30073686093576,52.58962903833421],[-120.30077076085689,52.58903979681408],[-120.3007695990732,52.58882553782247],[-120.30075679709685,52.58847576700217],[-120.30085901537063,52.588153554037476],[-120.30142678766526,52.58778889664987],[-120.30171194572532,52.587652735985664],[-120.30208900692655,52.587383320803795],[-120.3026025376594,52.587203220880305],[-120.3032168785024,52.58682284226116],[-120.3035111323771,52.586506644937415],[-120.30366733536043,52.58633606325126],[-120.30382268952685,52.58606030000087],[-120.30401512823184,52.58584032309023],[-120.30436628852031,52.58543076211442],[-120.30429959469544,52.584928248654165],[-120.30429978464744,52.584815255908964],[-120.30428850510796,52.58467695562057],[-120.30427351068205,52.58456659375761],[-120.3041630074464,52.584170442070445],[-120.30412945559824,52.583976521614645],[-120.30400038469494,52.583720026123395],[-120.3040329297723,52.58325215740277],[-120.30418455673662,52.58300432259579],[-120.30451760226067,52.58284238702905],[-120.30530478013345,52.582723450593036],[-120.3058330896311,52.58265482387586],[-120.30664936600236,52.58254010773045],[-120.30724801541176,52.582277011067305],[-120.30768780616867,52.581981410989755],[-120.30796919466074,52.58187316414874],[-120.30849773161448,52.581467762802205],[-120.3097765326986,52.581444224614025],[-120.31041619267687,52.58143049294895],[-120.31083725854839,52.58127564683816],[-120.31140334870736,52.58103398695369],[-120.31164728134311,52.580760859351116],[-120.31207943112297,52.580299012588576],[-120.3126262264899,52.579755623136194],[-120.31273018823973,52.57941943733163],[-120.31307698565199,52.57904169283102],[-120.31329872725854,52.57848860972837],[-120.31326953190802,52.578149853260136],[-120.31313189856334,52.57751064181821],[-120.31337615215607,52.576452660487],[-120.31348705183507,52.57617584115891],[-120.3135969476557,52.575683080552935],[-120.31390737462759,52.57513208628333],[-120.31398119477963,52.57468759702881],[-120.31406620647171,52.574158763401016],[-120.31403719658273,52.57404209655844],[-120.3139102806488,52.573545644489656],[-120.31375868223752,52.57323520163944],[-120.31350716483331,52.57267194487124],[-120.31373788484888,52.57126866322243],[-120.31475473379348,52.571093421460866],[-120.31568591010556,52.57089319178728],[-120.31617554190025,52.570220495912615],[-120.31653728517738,52.56961746092361],[-120.31668167940417,52.569423233462615],[-120.31674803212275,52.56925837257008],[-120.31696971354206,52.569152249722926],[-120.31733916738627,52.56916184170411],[-120.31767556871984,52.56964434161711],[-120.31782368224499,52.57031666925166],[-120.31784269925366,52.57050875150381],[-120.31787222178522,52.570845274246395],[-120.31808284703048,52.57126991041866],[-120.31828688472363,52.57174425737302],[-120.31851601708203,52.57247675672848],[-120.31855308193798,52.57320382516013],[-120.31867153710135,52.57365263077897],[-120.31881540785776,52.573686077791436],[-120.31934809728762,52.57380707202595],[-120.31962066408467,52.5737647117348],[-120.31957230058586,52.57435323742253],[-120.32049878750212,52.57486000559646],[-120.32303394628718,52.57408349772511],[-120.32531505348886,52.57152922016092],[-120.32923343077124,52.56623739732703],[-120.33211840107384,52.561689569330404],[-120.33527797633094,52.5571904712021],[-120.33947144577748,52.55327568716938],[-120.34609181049589,52.54949668013877],[-120.35199266756908,52.54284497351565],[-120.35628880417984,52.53778944939265],[-120.35999830175929,52.53358184726598],[-120.3638037092447,52.52852593385892],[-120.36478567337697,52.52590020719078],[-120.37180021563225,52.527307965843875],[-120.37850152377682,52.53009158515012],[-120.38615311816321,52.531620273779815],[-120.39487992620843,52.531273620100414],[-120.40368955128322,52.5297227490059],[-120.41093702048683,52.52821819401343],[-120.41901281618219,52.52660453685909],[-120.42783535603148,52.52482429442012],[-120.4345998756147,52.52303211674853],[-120.43960224586988,52.519633019180766],[-120.44321981255194,52.51434225156286],[-120.4461933394087,52.51001678048087],[-120.45064592223564,52.50604124077885],[-120.4530867464421,52.50525486842897],[-120.46169727248787,52.50438189221177],[-120.47051382178944,52.50385987095548],[-120.47906312276093,52.50173027092587],[-120.48803516671875,52.50125818865206],[-120.49665931124417,52.50061100350435],[-120.50332019815959,52.498647200045],[-120.51001707414414,52.49616533492059],[-120.5159293230941,52.493331316347145],[-120.52129754611958,52.48918749956401],[-120.52706561478232,52.485613178928425],[-120.53250781184562,52.48249883246095],[-120.53327167497118,52.48044986592182],[-120.5334950404477,52.47776499958578],[-120.5353768119665,52.47646281495497],[-120.54170200804248,52.472205801332244],[-120.5427766201174,52.46735629073441],[-120.54187770829597,52.461975035706466],[-120.53613441118466,52.458295744394],[-120.52754607898707,52.457458603895276],[-120.5188408400265,52.45754001943054],[-120.51511449819499,52.45614932794732],[-120.51455951528025,52.455747608430805],[-120.51003079969429,52.4520747633427],[-120.50937946386038,52.45069200455595],[-120.50938412820256,52.44938242139472],[-120.5030702087633,52.44661475777636],[-120.50150155440947,52.44524023380682],[-120.49592527584745,52.44064517846062],[-120.49156692810641,52.43970430163598],[-120.48296863820273,52.43863155720918],[-120.48092203588446,52.437993477167545],[-120.47980500185379,52.436792974138406],[-120.48019524648976,52.435480307521],[-120.47567849384814,52.43140725379036],[-120.47170963392873,52.427331951096555],[-120.47034126118429,52.42464250265957],[-120.4622261201832,52.42271236871135],[-120.4600840349909,52.42167633222297],[-120.45879934053532,52.420408535404675],[-120.45808117154587,52.41875794300641],[-120.45839718158422,52.41378244020073],[-120.46133276064569,52.411176857439344],[-120.46736831840738,52.40720567013114],[-120.47402988615174,52.404101137622895],[-120.48254589535466,52.4031117131441],[-120.49142270509235,52.40218435792321],[-120.49923301440097,52.3987367000178],[-120.50476236276644,52.39568029333545],[-120.51152306388808,52.39199270394468],[-120.51660731192923,52.38847567485202],[-120.52002772870804,52.383294516251894],[-120.52315179755831,52.37799977656454],[-120.52730886039656,52.37281557050943],[-120.5285065373346,52.367455041932644],[-120.52844413552658,52.36213901428213],[-120.52953834223155,52.35689274714939],[-120.53104686721228,52.35558493668085],[-120.53180262038501,52.35427982351029],[-120.53115338216132,52.353816307689485],[-120.52427120559213,52.351441562501286],[-120.51779897187596,52.34735760998022],[-120.5164291253499,52.34386624030519],[-120.51689250132814,52.34335409584496],[-120.5230840117425,52.340474594427846],[-120.52972592440098,52.33822209252032],[-120.53686480137343,52.334486049979766],[-120.53659838352367,52.33391242667719],[-120.53263296559614,52.32972085436557],[-120.5261354912362,52.32666817084152],[-120.52191512563432,52.32681601825389],[-120.51305618343568,52.32923790889235],[-120.51080990660456,52.329279312801184],[-120.50865785339197,52.3289282198648],[-120.50225781256607,52.32581801412572],[-120.49614691962111,52.32287463767185],[-120.489735656703,52.32044226349477],[-120.48326476121545,52.31744443409222],[-120.47724359276064,52.31312843027184],[-120.47310082927547,52.30876850426535],[-120.46782656932216,52.306458183773685],[-120.46633032896602,52.30514129388821],[-120.46627115525382,52.303764925015045],[-120.46741160221964,52.3024560258792],[-120.47349044486494,52.29940345337974],[-120.48052478043921,52.29613024899721],[-120.48145859350672,52.294819247724796],[-120.48274842677068,52.28945691654906],[-120.48490427142234,52.28826376343206],[-120.4933946732719,52.28579299307771],[-120.49462173315243,52.28448743508623],[-120.48756668837842,52.28114461565187],[-120.48639611611235,52.28039334130506],[-120.48631306101414,52.2789686096014],[-120.48904039245704,52.2764088682157],[-120.48960483053115,52.2751021426885],[-120.4874846661302,52.273716393931224],[-120.48175679280978,52.27002983913544],[-120.47629469031712,52.26680488102182],[-120.47564523658232,52.265667349109336],[-120.47542298440389,52.26291745432371],[-120.47015171507968,52.25878758418367],[-120.46750100907329,52.2545455907276],[-120.46279906207839,52.25058027488927],[-120.45706894016814,52.24752350801294],[-120.45077412247608,52.24440106096325],[-120.44364819769619,52.24088289810559],[-120.43981730780908,52.236807625289934],[-120.43632443263323,52.232740584986544],[-120.43432552000216,52.22758706799799],[-120.43134173306335,52.22209022348583],[-120.42655131415043,52.21795004787049],[-120.42730781394458,52.21664547526894],[-120.42852802816783,52.215850215214516],[-120.42910139687437,52.21493883716195],[-120.42661021510854,52.21315983747487],[-120.42513452634944,52.212629761616306],[-120.42459256219664,52.212271277149],[-120.4202282842702,52.2111079146876],[-120.41536873929319,52.20979614581929],[-120.41487918833909,52.20971567696418],[-120.41188798421203,52.21021872864031],[-120.40863936134117,52.21043763827065],[-120.4058323006975,52.211221059321275],[-120.40406784703768,52.21133349367428],[-120.4011069380819,52.20989774494813],[-120.39823523520099,52.208228937619864],[-120.39580142119644,52.2096487741184],[-120.39244153879456,52.21129126871007],[-120.3888112481055,52.21116326138498],[-120.3864168740939,52.20967141884407],[-120.386058839136,52.20767291892942],[-120.38459936981545,52.205438090066934],[-120.38331593470052,52.20354694739656],[-120.38350816050949,52.20240688976219],[-120.38520848400564,52.2000693220711],[-120.38504798415623,52.198475173904804],[-120.38532815044766,52.197676224084596],[-120.38758595124885,52.19557155877917],[-120.39325810174508,52.19490701880058],[-120.3971663479404,52.19492136090468],[-120.39829076541412,52.194071157622325],[-120.40015790791699,52.19282005128961],[-120.40192863584419,52.192653465098424],[-120.40369913819964,52.192147763503286],[-120.40373004506468,52.1902053044745],[-120.40067554387664,52.188368464116266],[-120.40045842366843,52.188229159958745],[-120.3962341740296,52.185440749051565],[-120.3935234101942,52.17857620787623],[-120.39130744556614,52.176740992268286],[-120.39039096299545,52.17531026486077],[-120.39064381541073,52.17324694975084],[-120.39698932988712,52.16951548337836],[-120.39784828286277,52.168214335412536],[-120.40078134112981,52.16314498833823],[-120.4028998516931,52.15766827451923],[-120.40631534262032,52.15215098127752],[-120.40805790229201,52.14718791898022],[-120.40678941620934,52.14564123578848],[-120.40049031716735,52.142577680420985],[-120.39412461790644,52.14026179912007],[-120.38719626536309,52.13742156170624],[-120.37943075839935,52.135835170647894],[-120.37077374567738,52.13704523497755],[-120.36451105916123,52.14083495955352],[-120.35980209288724,52.14474934829066],[-120.35595067756495,52.148612205791615],[-120.35152669038003,52.15246827714677],[-120.34581184402501,52.155856000890886],[-120.33725491237908,52.155924225808796],[-120.32826908047772,52.15466934997582],[-120.32457996700705,52.15424149108595],[-120.32341911401663,52.09243357611721],[-120.34679940702999,52.09218751000898],[-120.34811458639417,52.0905367376625],[-120.34952531801402,52.088489650473015],[-120.34982972722699,52.08637924519465],[-120.34753444353437,52.083739653833405],[-120.34673226459347,52.081682880134686],[-120.34637598036474,52.08036732956121],[-120.34638661773299,52.07893651198794],[-120.34842431139903,52.07848823132864],[-120.3503095482774,52.07707184058046],[-120.35072052704093,52.073129805219324],[-120.35037339005946,52.07050597188932],[-120.34954731778065,52.06987093218405],[-120.35262816051817,52.06748680550777],[-120.35440303928068,52.06601263903269],[-120.35702813736864,52.06453628379509],[-120.35955131169841,52.06237717446976],[-120.3600637352287,52.058098130002264],[-120.35990109387625,52.054728028427796],[-120.35974511473884,52.051983094663235],[-120.35903748697771,52.049875312665264],[-120.35730093178016,52.04666756043522],[-120.35676040178177,52.04575465871179],[-120.35679484786642,52.04312420241821],[-120.35819663461524,52.041018082699274],[-120.35943090906017,52.03862196097289],[-120.36057887991187,52.034859965185625],[-120.36338540855483,52.03298523175311],[-120.3659924684116,52.03162990103515],[-120.36813268098295,52.02992095192346],[-120.3697382963267,52.02781626976083],[-120.3715123347809,52.025879544398045],[-120.37255298319128,52.02485514053275],[-120.37413610340134,52.02303389270675],[-120.35149189421563,52.00913620259688],[-120.31392976524887,52.02211458275351],[-120.31300912389248,52.02165337722631],[-120.30996611163921,52.021074725679085],[-120.30247420177643,52.0182472633814],[-120.2954338927041,52.015443918594116],[-120.2936646007253,52.0154269467454],[-120.28569650824778,52.016232460791464],[-120.28093532448547,52.018032374442534],[-120.27947193292488,52.01824865712342],[-120.27473653146458,52.01884982518196],[-120.27083865083189,52.01865107222902],[-120.26430085142017,52.016268469355346],[-120.25750809869626,52.013826021539316],[-120.2510514096021,52.011725641664],[-120.24377026792786,52.00933324851675],[-120.24304199834219,52.00853229792919],[-120.242503559746,52.00817680790828],[-120.23921359731277,52.00472678473348],[-120.23706804255107,52.00390758999832],[-120.23736706953669,51.999888744090335],[-120.23736944190429,51.999870862386395],[-120.23737181426995,51.99985298068216],[-120.23737418663367,51.99983509897754],[-120.23737655899545,51.999817217272664],[-120.23737893135525,51.99979933556746],[-120.23738130371311,51.99978145386187],[-120.23738367606902,51.99976357215601],[-120.237386048423,51.999745690449785],[-120.23738842077502,51.999727808743316],[-120.23739079312509,51.99970992703647],[-120.2373931654732,51.99969204532928],[-120.23739553781937,51.999674163621755],[-120.2373979101636,51.999656281913985],[-120.23740028250585,51.99963840020588],[-120.23740258011749,51.99962108177113],[-120.23740502718455,51.99960263678862],[-120.23740739952098,51.99958475507946],[-120.23740977185547,51.999566873370085],[-120.237412144188,51.999548991660205],[-120.23741451651857,51.9995311099502],[-120.23741688884719,51.9995132282398],[-120.23741926117387,51.999495346529024],[-120.2374070939987,51.99947673540393],[-120.23740946632742,51.99945885369283],[-120.23741183865417,51.99944097198145],[-120.23741435924923,51.99942197266273],[-120.23740219209662,51.99940336153592],[-120.23740456442336,51.99938547982382],[-120.23740708501839,51.999366480504335],[-120.23739491788442,51.99934786937591],[-120.23739729021112,51.99932998766307],[-120.2373997360779,51.99931155161681],[-120.23738697588043,51.99929741091505],[-120.23738949647803,51.999278411594545],[-120.23737740410459,51.99925923718882],[-120.23737977643367,51.999241355475014],[-120.23736760934634,51.999222744341694],[-120.2373695368655,51.999208215448895],[-120.23735751806272,51.99918848670684],[-120.23735929731292,51.99917507542101],[-120.23734720379534,51.99915590995127],[-120.23734957613118,51.99913802823648],[-120.23733755735682,51.999118299491094],[-120.23734000442317,51.99909985450191],[-120.23732783739241,51.99908124336204],[-120.23731463247105,51.999070455471205],[-120.23731715308708,51.9990514561485],[-120.23730505962239,51.99903229067236],[-120.23730743196877,51.999014408956604],[-120.23729541324765,51.99899468020463],[-120.23728272790612,51.99897997621341],[-120.23728510025884,51.998962094497294],[-120.23727308156228,51.9989423657422],[-120.23727500910057,51.99892783684748],[-120.23726284214568,51.99890922569805],[-120.2372507487444,51.99889006021384],[-120.23725267628784,51.99887553131887],[-120.23724058408655,51.99885635689215],[-120.23724295644988,51.99883847517497],[-120.23723093780654,51.99881874641338],[-120.23721891917408,51.99879901765019],[-120.23722077199452,51.998785052028765],[-120.2372080120095,51.998770911300795],[-120.23719599340066,51.99875118253439],[-120.23719844050636,51.99873273754238],[-120.23718627363871,51.99871412638173],[-120.23718879429012,51.99869512705604],[-120.2371761826157,51.99867986871604],[-120.23717855499584,51.998661986997405],[-120.23716646170035,51.99864282150026],[-120.23716824098712,51.998629410211066],[-120.23715622243537,51.998609681438154],[-120.23715866954996,51.99859123644474],[-120.23714650273887,51.998572625277674],[-120.23714843030304,51.99855809638045],[-120.23713626350559,51.99853948521176],[-120.23713878416872,51.99852048588428],[-120.2371266173859,51.998501874713924],[-120.23712906332076,51.998483438660244],[-120.23713143570956,51.998465556939614],[-120.23711926894525,51.998446945767604],[-120.23712178961043,51.998427946439094],[-120.23710910449266,51.99841324242156],[-120.23711147688583,51.998395360700194],[-120.23711384927704,51.998377478978554],[-120.2371018308195,51.998357750195694],[-120.23710420321261,51.998339868473685],[-120.23709159167075,51.99832461011971],[-120.23709396406629,51.9983067283974],[-120.23709633645986,51.99828884667465],[-120.23708424330421,51.9982696811628],[-120.23708602260108,51.99825626987056],[-120.23707385591464,51.998237658690414],[-120.23707637658754,51.998218659359395],[-120.237078823714,51.99820021436146],[-120.23706665704631,51.99818160317962],[-120.2370690294443,51.998163721455654],[-120.23707155011499,51.99814472212355],[-120.23705938346595,51.998126110940035],[-120.23706190413868,51.99810711160756],[-120.23704973750426,51.9980885004224],[-120.23705151680433,51.99807508912866],[-120.23705396274704,51.99805665306991],[-120.23704179613011,51.99803804188311],[-120.23704416853049,51.998020160157395],[-120.23704668920374,51.99800116082349],[-120.23703452260544,51.99798254963517],[-120.23703696973632,51.997964104634356],[-120.23703934213465,51.997946222907586],[-120.23702717555484,51.9979276117175],[-120.23702969623015,51.99790861238248],[-120.23703162380392,51.99789408347896],[-120.23701945724196,51.997875472287184],[-120.23702123654266,51.997862060991494],[-120.23702360894185,51.997844179263474],[-120.23701151594179,51.99782501373657],[-120.23701388834297,51.99780713200818],[-120.23701626074221,51.99778925027951],[-120.23700424249128,51.997769521476435],[-120.23700661489244,51.99775163974735],[-120.23700906202217,51.99773319474353],[-120.23699689551485,51.99771458354687],[-120.23699867481591,51.99770117224959],[-120.23700104721564,51.99768329051962],[-120.23698902900084,51.997663561713146],[-120.23699140140248,51.9976456799828],[-120.23699392207708,51.99762668064389],[-120.23698175560598,51.99760806944392],[-120.23698412800756,51.99759018771285],[-120.23698650040723,51.99757230598137],[-120.23698894634921,51.997553869916025],[-120.23697677990059,51.997535258714315],[-120.23697915230026,51.99751737698223],[-120.23698167297277,51.99749837764153],[-120.23696891344255,51.99748423687141],[-120.23697136057326,51.99746579186407],[-120.23697373297136,51.997447910131015],[-120.23696156655886,51.997429298926015],[-120.23696393895901,51.99741141719259],[-120.23696631135721,51.99739353545893],[-120.23696883202814,51.997374536116446],[-120.23695666563826,51.99735592490971],[-120.23695918631122,51.997336925566906],[-120.23696155870732,51.99731904383208],[-120.23696393110146,51.99730116209693],[-120.23695176473416,51.99728255088866],[-120.2369542106746,51.997264114819345],[-120.23695658306875,51.99724623308352],[-120.23694382362059,51.997232092307506],[-120.23694619601727,51.99721421057144],[-120.23694871668663,51.99719521122649],[-120.23695108907928,51.99717732948975],[-120.23695346147,51.997159447752644],[-120.23694136987717,51.997140273266226],[-120.23694374226986,51.99712239152876],[-120.23694611466061,51.997104509790965],[-120.2369484870494,51.99708662805285],[-120.23693632074865,51.997068016839485],[-120.23693884141386,51.99704901749236],[-120.23694121380261,51.99703113575348],[-120.23694358618941,51.99701325401439],[-120.23693156818564,51.996993525190526],[-120.23693394057436,51.99697564345104],[-120.2369363129611,51.99695776171122],[-120.23693868534593,51.99693987997106],[-120.23694105772881,51.996921998230604],[-120.23692837192469,51.996907303114945],[-120.23693067076611,51.996889975708136],[-120.23693311669342,51.996871539633034],[-120.23693548907485,51.996853657891634],[-120.23693786145434,51.996835776149915],[-120.23692569522824,51.99681716493134],[-120.23692806760975,51.996799283189226],[-120.23693043998934,51.99678140144678],[-120.2369329606405,51.99676240209513],[-120.23693533301605,51.99674452035205],[-120.23693770538965,51.99672663860865],[-120.23692561392397,51.996707464113406],[-120.23692798629956,51.99668958236958],[-120.23693035867319,51.99667170062545],[-120.23693273104485,51.99665381888109],[-120.23693510341458,51.99663593713626],[-120.23692293724551,51.99661732591426],[-120.23692530961728,51.99659944416912],[-120.2369276819871,51.996581562423685],[-120.2369302026279,51.99656256306871],[-120.23693257499369,51.99654468132264],[-120.23693494735754,51.996526799576195],[-120.23692278121904,51.99650818835238],[-120.23692515358489,51.996490306605544],[-120.23692767422152,51.996471307249266],[-120.23693004658337,51.99645342550177],[-120.23693241894328,51.996435543754004],[-120.23693479130125,51.996417662005875],[-120.23693657056846,51.996404250694575],[-120.236938942923,51.99638636894586],[-120.23692677682205,51.99636775772024],[-120.23692914917862,51.99634987597119],[-120.23693152153326,51.99633199422178],[-120.23693389388595,51.99631411247213],[-120.23693626623667,51.996296230722166],[-120.23693863858547,51.99627834897178],[-120.23694101093233,51.996260467221134],[-120.23694338327722,51.99624258547011],[-120.23694575562016,51.99622470371881],[-120.23694820150371,51.99620626763289],[-120.23695050030021,51.99618894021521],[-120.23695294617971,51.9961705041286],[-120.23695531851482,51.99615262237602],[-120.23695761730565,51.99613529495737],[-120.2369599896369,51.99611741320412],[-120.23694789714445,51.99609824764202],[-120.23695019593538,51.99608092022275],[-120.23695256826672,51.99606303846879],[-120.23695553367814,51.99604068627593],[-120.2369579060051,51.99602280452123],[-120.2369602783301,51.99600492276624],[-120.23697718898019,51.99598777048329],[-120.23697956129537,51.99596988872735],[-120.23698193360859,51.995952006971144],[-120.23698430591988,51.995934125214525],[-120.2369866782292,51.995916243457565],[-120.23698905053658,51.995898361700384],[-120.23699142284201,51.995880479942834],[-120.23699364687657,51.99586371579478],[-120.23699601917824,51.99584583403659],[-120.23699839147795,51.99582795227815],[-120.2370007637757,51.995810070519255],[-120.2370029878031,51.99579330637006],[-120.23700536009704,51.99577542461062],[-120.2370077323891,51.995757542850846],[-120.23702464292438,51.9957403905573],[-120.23702701520662,51.99572250879657],[-120.23702938748686,51.995704627035536],[-120.23703168503842,51.99568730854958],[-120.23703405731484,51.995669426787906],[-120.23705081953884,51.99565339209932],[-120.23705319180554,51.995635510336726],[-120.23705556407032,51.99561762857377],[-120.23705793633313,51.995599746810605],[-120.23706023505393,51.99558241938166],[-120.23707714550052,51.99556526707774],[-120.23707951775164,51.99554738531326],[-120.23708174173527,51.99553062115876],[-120.23708470704409,51.99550826895227],[-120.23710146918738,51.99549223425407],[-120.23710384142451,51.99547435248794],[-120.23710562060108,51.99546094116315],[-120.23712245625747,51.99544435212647],[-120.23712468021931,51.995427587969616],[-120.23712705244337,51.99540970620197],[-120.23714396279658,51.99539255388577],[-120.23714685452546,51.99537075600985],[-120.23714922673734,51.99535287424097],[-120.23716598879703,51.99533683953118],[-120.23716836099919,51.99531895776132],[-120.23717058493693,51.99530219360183],[-120.23718749523121,51.99528504127753],[-120.23718979269776,51.99526772278223],[-120.23719157183939,51.9952543114537],[-120.23720892689059,51.99523380629344],[-120.23721129906949,51.9952159245211],[-120.237213597709,51.99519859708344],[-120.2372305079461,51.99518144475126],[-120.23723273185288,51.995164680588566],[-120.23724949380937,51.99514864586411],[-120.23725245900607,51.99512629364596],[-120.23725483116124,51.995108411871044],[-120.23727166662447,51.99509182280757],[-120.23727329747464,51.995079529086716],[-120.23729020764195,51.995062376744116],[-120.23729250624194,51.995045049302504],[-120.23729487837625,51.99502716752557],[-120.23731223328822,51.99500666234561],[-120.23731460541234,51.99498878056771],[-120.23733136727093,51.99497274582886],[-120.23733373938532,51.994954864049994],[-120.23733603677627,51.99493754554685],[-120.23735279860725,51.99492151080419],[-120.23735457768453,51.99490809946915],[-120.23737200724189,51.99488703100206],[-120.23737437933494,51.99486914922101],[-120.237376751426,51.99485126743966],[-120.23739351320879,51.99483523268984],[-120.23739573703513,51.99481846851901],[-120.23739810911466,51.994800586736446],[-120.2374155374219,51.994779527201636],[-120.2374179094912,51.994761645418116],[-120.2374201333044,51.994744881245715],[-120.2374370432839,51.99472772887657],[-120.23743874879354,51.99471487187333],[-120.23745565875406,51.99469771950095],[-120.2374580308024,51.99467983771535],[-120.23746084760732,51.994658603094365],[-120.23747760928494,51.99464256832973],[-120.23747998132127,51.99462468654273],[-120.23748235335567,51.994606804755456],[-120.23749918853822,51.99459021565147],[-120.23750141231137,51.994573451475],[-120.23750378433418,51.9945555696865],[-120.23750615635501,51.99453768789761],[-120.23752358569072,51.99451661940089],[-120.23752595770134,51.994498737611046],[-120.237527736708,51.994485326268375],[-120.23754449829428,51.99446929149154],[-120.23754687029373,51.99445140970052],[-120.2375490940414,51.994434645521146],[-120.23755146603705,51.994416763729525],[-120.23755383803076,51.99439888193756],[-120.2375707478232,51.99438172954364],[-120.23757304508963,51.99436441102724],[-120.23757586181802,51.99434317639773],[-120.23757823379768,51.99432529460413],[-120.23759514355196,51.994308142205576],[-120.2375975155218,51.99429026041101],[-120.23759981395872,51.994272932951866],[-120.23760218592473,51.99425505115664],[-120.23761909564226,51.99423789875354],[-120.23762131935123,51.99422113456969],[-120.23762369130559,51.99420325277323],[-120.23762650799885,51.99418201813962],[-120.23764341767846,51.994164865731825],[-120.23764519663527,51.994151454383534],[-120.23764756857604,51.99413357258551],[-120.2376498657988,51.99411625406386],[-120.23765223773573,51.99409837226522],[-120.23766899912718,51.994082337464974],[-120.23767137105438,51.99406445566538],[-120.23767374297965,51.99404657386549],[-120.23769057905861,51.99402997578461],[-120.23769354395267,51.99400762353365],[-120.23769591586573,51.99398974173242],[-120.23769828777685,51.99397185993087],[-120.23770051144176,51.99395509574168],[-120.23771742100405,51.993937943319644],[-120.23771964465985,51.993921179129565],[-120.23772201655748,51.993903297326526],[-120.23772438845316,51.99388541552313],[-120.2377267603469,51.99386753371938],[-120.23774359515046,51.993850944569076],[-120.23774596703444,51.99383306276447],[-120.23774878364412,51.99381182812097],[-120.23775115552382,51.993793946315655],[-120.23775352740158,51.993776064509966],[-120.23777043687345,51.99375891207749],[-120.23777273521351,51.99374158460691],[-120.23777510707957,51.99372370280002],[-120.23777747894364,51.993705820992794],[-120.23777985080581,51.993687939185165],[-120.23779661199224,51.993671904360646],[-120.2377989838447,51.99365402255211],[-120.23780135569518,51.99363614074326],[-120.23780357930325,51.99361937654717],[-120.23780654411134,51.99359702428533],[-120.23780832299472,51.99358361292798],[-120.23782523237026,51.99356646048465],[-120.2378276042052,51.99354857867396],[-120.2378299013255,51.99353126013993],[-120.2378322731566,51.99351337832861],[-120.23783464498577,51.99349549651696],[-120.23783686857384,51.993478732318195],[-120.23783924039921,51.99346085050588],[-120.23784161222264,51.99344296869324],[-120.23784398404412,51.99342508688026],[-120.23786089334406,51.993407934429364],[-120.23786326515572,51.9933900526155],[-120.23786556343934,51.993372725137526],[-120.23786793524718,51.99335484332299],[-120.23787090000421,51.993332491054375],[-120.23787327180764,51.99331460923918],[-120.23787564360916,51.99329672742351],[-120.23787801540868,51.99327884560764],[-120.23788038720629,51.9932609637914],[-120.23788275900192,51.99324308197485],[-120.23789951997921,51.993227047129146],[-120.23790189176516,51.9932091653117],[-120.23790426354914,51.99319128349382],[-120.23790663533119,51.99317340167574],[-120.23790900711128,51.993155519857275],[-120.23791123065335,51.993138755652204],[-120.23791360242967,51.99312087383312],[-120.23791597420406,51.9931029920137],[-120.23791834597648,51.99308511019401],[-120.23792071774697,51.99306722837395],[-120.23792308951548,51.99304934655361],[-120.23792546128207,51.9930314647329],[-120.23792783304671,51.99301358291188],[-120.23793020480939,51.992995701090514],[-120.2379325765701,51.99297781926882],[-120.2379205592321,51.992958090479725],[-120.23792278275963,51.99294132627155],[-120.23792530275544,51.99292232683528],[-120.2379276745142,51.99290444501259],[-120.237930046271,51.99288656318955],[-120.2379180289593,51.99286683439851],[-120.23792040071801,51.992848952575144],[-120.23792277247478,51.99283107075144],[-120.23792514422959,51.99281318892736],[-120.23792751598248,51.99279530710303],[-120.23791542398682,51.99277614158765],[-120.23791720280312,51.99276273021917],[-120.23791957455651,51.99274484839415],[-120.2379074090539,51.99272623721376],[-120.23790992904397,51.992707237774276],[-120.23791237550752,51.99268879267112],[-120.23790021002365,51.992670181489025],[-120.23790258177897,51.992652299662964],[-120.23790510176687,51.99263330022238],[-120.23789293630162,51.99261468903867],[-120.23789545629155,51.992595689597835],[-120.23789782804477,51.99257780777058],[-120.23788506965901,51.99256366704202],[-120.23788744141476,51.99254578521463],[-120.23788988669287,51.99252734905028],[-120.23787772126373,51.992508737863204],[-120.23788009301951,51.99249085603516],[-120.23788261300787,51.99247185659244],[-120.23787044759733,51.99245324540378],[-120.23787289406334,51.99243480029733],[-120.23787526581707,51.992416918468194],[-120.23786310042502,51.99239830727782],[-120.23786547218077,51.99238042544833],[-120.23786799216914,51.99236142600417],[-120.23785538209127,51.99234616765527],[-120.23785775384736,51.99232828582509],[-120.23786012560151,51.9923104039947],[-120.23786249735369,51.992292522163844],[-120.23786486910393,51.992274640332745],[-120.2378527037561,51.992256029139035],[-120.23785448257048,51.99224261776541],[-120.23785692784553,51.9922241815969],[-120.23785929959435,51.992206299764845],[-120.2378616713412,51.99218841793248],[-120.23784950601882,51.99216980673704],[-120.2378518777677,51.99215192490431],[-120.23785424951463,51.992134043071204],[-120.23785662125962,51.99211616123788],[-120.23785899300269,51.99209827940422],[-120.2378613647438,51.99208039757009],[-120.23786373648294,51.9920625157358],[-120.23786610822012,51.99204463390104],[-120.2378684799554,51.992026752066025],[-120.2378853887026,51.992009599590844],[-120.23788768690457,51.99199227209183],[-120.23789005862811,51.991974390255564],[-120.2378924303497,51.99195650841901],[-120.23789480206932,51.99193862658201],[-120.23789776671615,51.99191627428547],[-120.23789999019925,51.99189951006269],[-120.23791689888465,51.99188235758097],[-120.23791912235865,51.99186559335734],[-120.23792149406238,51.99184771151844],[-120.2379232728389,51.99183430013913],[-120.2379401814898,51.991817147653045],[-120.23794247847395,51.99179982909096],[-120.2379447019339,51.991783064865615],[-120.23794707362264,51.99176518302499],[-120.23796457515722,51.99174356007394],[-120.23796687331362,51.991726232569384],[-120.23796924499015,51.99170835072746],[-120.23798615357403,51.99169119823273],[-120.23798837701162,51.99167443400499],[-120.2379906004475,51.991657669776934],[-120.23800750900325,51.99164051727843],[-120.23801047357192,51.99161816497315],[-120.23802671448615,51.99160604621035],[-120.23802893790379,51.99158928198063],[-120.23803130954735,51.99157140013521],[-120.23804814453293,51.99155480196667],[-120.23805051616672,51.991536920120346],[-120.23805288779859,51.991519038273665],[-120.23807024095527,51.99149853291754],[-120.23807246435064,51.99148176868534],[-120.23808937280587,51.991464616172195],[-120.23809166971208,51.991447297601816],[-120.23809389309659,51.99143053336842],[-120.23811020862307,51.99141785131375],[-120.23811309960426,51.99139605333893],[-120.23813000801017,51.99137890081849],[-120.2381323796008,51.99136101896773],[-120.2381346029652,51.99134425473243],[-120.2381513631188,51.99132821982375],[-120.23815373469787,51.991310337971875],[-120.23815603157038,51.99129301939795],[-120.2381733845884,51.99127251402225],[-120.23817575615539,51.99125463216895],[-120.23817812772045,51.99123675031542],[-120.23819496252064,51.99122015212059],[-120.2381967411873,51.99120674072975],[-120.23819911274113,51.991188858874956],[-120.23830173679931,51.99096674699033],[-120.27878046741992,51.991049734228575],[-120.27156432962266,51.964541696200286],[-120.27192496348634,51.9645793787131],[-120.2721557243423,51.96460383756493],[-120.27238641241901,51.96462885032525],[-120.27261768975598,51.964649391879156],[-120.27284837833908,51.96467440371204],[-120.27307906718707,51.9646994150817],[-120.27331034522516,51.96471995524159],[-120.27354103457954,51.96474496568379],[-120.27377231307719,51.96476550491408],[-120.27400359179293,51.96478604367895],[-120.27423428189518,51.96481105272932],[-120.27446511946432,51.96483494362849],[-120.2746818703074,51.964854756271215],[-120.27491314992567,51.96487529320572],[-120.27514384102255,51.96490030042998],[-120.27537512110037,51.964920836434786],[-120.27560588687882,51.964945279416106],[-120.2758365787439,51.96497028524951],[-120.27606785951971,51.96499081986015],[-120.27629855189106,51.96501582476613],[-120.2765292445272,51.96504082920877],[-120.27676052600394,51.96506136242549],[-120.27699121914634,51.965086365940664],[-120.2772219125535,51.965111368992616],[-120.27745319473114,51.96513190081525],[-120.27768388864456,51.96515690293978],[-120.27789961274715,51.96518453335596],[-120.27813089563253,51.965205063814665],[-120.27836159032223,51.96523006457843],[-120.27859184398385,51.965258417957465],[-120.27882253922056,51.96528341779553],[-120.27905323472203,51.9653084171704],[-120.27928334216767,51.96533788685666],[-120.27951403822196,51.96536288530614],[-120.27974414626699,51.96539235406929],[-120.27995979872213,51.965420543933945],[-120.28018990737317,51.965450011803775],[-120.28042001633551,51.96547947921254],[-120.28064953742641,51.96551341694129],[-120.28088038223383,51.965537294951446],[-120.28109537507476,51.96557050784241],[-120.2813249712737,51.965603880902144],[-120.28155449372487,51.965637816821435],[-120.28178460460205,51.96566728149552],[-120.28201412774523,51.96570121649588],[-120.2822286812415,51.965737780354296],[-120.2824587931026,51.96576724367719],[-120.28268846429187,51.96580005963176],[-120.28291740088419,51.965838463615924],[-120.2831318088312,51.96587614348317],[-120.28336140702486,51.96590952141077],[-120.28359093267234,51.96594345325769],[-120.28381987081364,51.9659818554409],[-120.28403442720739,51.96601841592219],[-120.28426336613353,51.96605681722025],[-120.28449237952556,51.966094654740814],[-120.28472131925598,51.9661330551249],[-120.2849358771508,51.96616961392001],[-120.28516481766601,51.96620801341887],[-120.28539390551124,51.966245294760185],[-120.28560772991777,51.96628744080143],[-120.28583674451431,51.96632528457945],[-120.28606568664154,51.96636368228015],[-120.28627951227898,51.96640582706819],[-120.2865080145241,51.96644757699042],[-120.28673644434829,51.96648988083752],[-120.28695027125396,51.96653202437412],[-120.28717936233073,51.96656930214913],[-120.28740786629557,51.96661105027795],[-120.28762169444542,51.96665319256201],[-120.28785012525418,51.96669550313158],[-120.28806454168472,51.966733173776255],[-120.28829231308787,51.96678050865969],[-120.28852081922695,51.966822254569934],[-120.28873472349875,51.96686383145452],[-120.28896264315028,51.96691004730097],[-120.28917706159865,51.966947715864926],[-120.28940498215827,51.96699393083163],[-120.2896188869422,51.967035515007424],[-120.28984666161479,51.967082846800686],[-120.29007517082898,51.96712458961232],[-120.29028900407936,51.96716672691933],[-120.2905174413454,51.967209023231526],[-120.2907308350592,51.967254512832575],[-120.29095875887205,51.9673007247084],[-120.29118712351305,51.967343583009885],[-120.29140103171476,51.96738516385915],[-120.29162881015155,51.96743249210913],[-120.29184279318098,51.96747350880909],[-120.29207064652635,51.967520272856],[-120.29228389663233,51.96756687727158],[-120.29251182372674,51.96761308605752],[-120.29272580847454,51.96765410110861],[-120.2929535897566,51.967701426724204],[-120.29316691447295,51.96774747511199],[-120.29339484344881,51.96779368214111],[-120.29360817025704,51.96783972076513],[-120.29383654032968,51.96788257378695],[-120.2940493539679,51.96793252804417],[-120.29427728484787,51.967978733317395],[-120.29450506951265,51.96802605584753],[-120.29471781068486,51.96807657218801],[-120.2949312130337,51.96812205396274],[-120.29515848635641,51.96817328271052],[-120.29537232967034,51.96821541052968],[-120.29559982341925,51.968264966305135],[-120.29581249428118,51.96831603499555],[-120.29602523838548,51.968366548905465],[-120.29625317363181,51.96841275024619],[-120.29646591989258,51.968463254395026],[-120.2966932695355,51.968513925709935],[-120.29690667608901,51.968559403802615],[-120.29711942265048,51.96860991567824],[-120.29734604067916,51.968666174262594],[-120.29755893606712,51.968715558665565],[-120.2977717580426,51.968765506000175],[-120.29799852433479,51.968820645577615],[-120.29821127343801,51.96887115542251],[-120.29842351051681,51.968925572402],[-120.29863567541426,51.9689805433739],[-120.29886303028042,51.96903121037787],[-120.29907468261298,51.96909009700855],[-120.29928684796073,51.96914507571335],[-120.299498575293,51.969203398229645],[-120.29971022932125,51.96926228368215],[-120.29992195661745,51.96932061435504],[-120.30013302555203,51.96938396988801],[-120.30034402240992,51.96944787941762],[-120.30055523912337,51.96951011645242],[-120.30075126583414,51.969576665861105],[-120.30096226453229,51.96964057424612],[-120.30117289693021,51.96970728100476],[-120.30138345612306,51.969774550703605],[-120.30157948646111,51.96984108974406],[-120.30179004692855,51.96990835869086],[-120.30200002316651,51.96998008917921],[-120.30219554200654,51.97005054364207],[-120.30240595793464,51.97011892916763],[-120.30260140539119,51.97018993732061],[-120.3028120429553,51.97025664104627],[-120.3030220213829,51.970328378589436],[-120.30321703133387,51.970402738840654],[-120.30341291964918,51.970470401381505],[-120.30362290126843,51.97054212887268],[-120.30381849790403,51.97061202615395],[-120.30402789502052,51.97068822377629],[-120.30422283448425,51.970763145630194],[-120.30441718880313,51.97084253803058],[-120.30461103067262,51.97092584658992],[-120.30480531378845,51.971005792712646],[-120.30499974288561,51.97108462972272],[-120.30519300237773,51.971172399225374],[-120.30538743292013,51.971251235568765],[-120.30558127963516,51.971334533521954],[-120.30577563897911,51.97141392358799],[-120.30597058469627,51.9714888424332],[-120.30616494543821,51.97156823183079],[-120.30636047814225,51.97163867911791],[-120.3065709082796,51.97170705693121],[-120.30678221862662,51.97176871907867],[-120.30697936353495,51.97182687035479],[-120.30719096664265,51.971886305241654],[-120.3074178348774,51.97194086276922],[-120.30763068391262,51.971990791724295],[-120.30784353343577,51.9720407202833],[-120.30807076861737,51.97209248667808],[-120.30828413081294,51.972138506855174],[-120.30851253785467,51.972181330581],[-120.30874109169305,51.97222303612708],[-120.3089550417758,51.97226457521489],[-120.30918345013815,51.972307397603934],[-120.30941302959546,51.97234127773565],[-120.30964202411009,51.97237962831028],[-120.30987175062393,51.97241238979894],[-120.31010191642343,51.972441797649715],[-120.31033208253373,51.972471205039255],[-120.31054771724226,51.97249989177464],[-120.31077861544196,51.97252370963656],[-120.31100936760375,51.97254864476172],[-120.31124012002967,51.972573579423454],[-120.3114714578348,51.97259404271128],[-120.3117027958573,51.972614505533436],[-120.31193413409713,51.9726349678901],[-120.31216664264318,51.97264648795327],[-120.31239856629152,51.972662478461565],[-120.31263049011014,51.97267846850211],[-120.31286358404586,51.97268551624011],[-120.3130960931075,51.97269703442437],[-120.31332918721792,51.97270408121897],[-120.31356228140373,51.9727111275412],[-120.31379537566497,51.97271817339117],[-120.31402963970993,51.97271627692246],[-120.31426331890445,51.972718850901124],[-120.31449758293266,51.97271695347955],[-120.31473126215847,51.97271952650766],[-120.31496552616991,51.97271762813325],[-120.31518642777058,51.97270606781663],[-120.31542251832671,51.972690201328916],[-120.31564531990205,51.97266410960696],[-120.3158831652216,51.972634820436404],[-120.31610757399586,51.972596432752],[-120.3163322746824,51.97255580916078],[-120.3165572672458,51.972512949660825],[-120.31678174728462,51.97247400626119],[-120.31700637422736,51.97243393574539],[-120.3172296119343,51.97240448774478],[-120.31746752724854,51.9723746408955],[-120.31769091045818,51.97234407426271],[-120.31792867901424,51.972315344194065],[-120.31815140353342,51.972289810949306],[-120.31837405532562,51.97226483167022],[-120.31861196909293,51.97223498245061],[-120.31883527832339,51.972204967989754],[-120.31907246103617,51.97218070650348],[-120.31929525781905,51.97215460770143],[-120.31951863861772,51.97212403751395],[-120.31975647721521,51.97209474926403],[-120.31998029555915,51.972060824962476],[-120.32020425960722,51.972025782485154],[-120.3204281508557,51.97199129396972],[-120.32065284439106,51.97195066191858],[-120.3208773178705,51.97191171050858],[-120.32108740646908,51.971870913114834],[-120.32131253683956,51.97182692654918],[-120.32153766675539,51.97178293954134],[-120.3217627226266,51.971739515433015],[-120.3219885092465,51.97169049323134],[-120.32219983615596,51.9716401974627],[-120.32242547460692,51.971592301083454],[-120.3226373120799,51.971538087936786],[-120.32284922143323,51.97148331999689],[-120.3230755882431,51.9714298336198],[-120.32328800800273,51.97137114829309],[-120.3234998421591,51.97131694248971],[-120.32371240675688,51.97125713862928],[-120.32392540746686,51.97119399008049],[-120.32413782493161,51.97113530317254],[-120.3243358551348,51.97107478861366],[-120.3245490011548,51.97101051221278],[-120.3247619994461,51.970947362101434],[-120.32497514421381,51.9708830849039],[-120.32517302618604,51.97082368663727],[-120.3253861697421,51.97075940867131],[-120.32559931150192,51.97069513924885],[-120.32581245380001,51.97063086048591],[-120.32601091708037,51.970566989773644],[-120.32622464171683,51.97049823924725],[-120.32643712505156,51.970438993655165],[-120.32663631595284,51.97036953310922],[-120.32684989275707,51.97030189915865],[-120.32704849888881,51.97023690888864],[-120.32724783492395,51.97016632057993],[-120.32746199205587,51.97009422342256],[-120.32766059749446,51.97002922314214],[-120.32787438923013,51.96995991511439],[-120.32807357564911,51.969890452050976],[-120.3282733459529,51.9698165086898],[-120.32847245874683,51.969747599332],[-120.32868675762079,51.96967438211628],[-120.3288860884273,51.969603790934435],[-120.32908578254586,51.9695304094914],[-120.32928569412512,51.96945535553803],[-120.32948553269586,51.96938085563822],[-120.32967091310405,51.969305074259054],[-120.3298711877127,51.96922722041746],[-120.33007109654748,51.96915216507946],[-120.33027093238428,51.96907766379572],[-120.33047142412704,51.96899812779023],[-120.33065658194722,51.9689240259015],[-120.33085648803757,51.968848969178964],[-120.33105690419401,51.96876999548627],[-120.33124286230277,51.968689740508594],[-120.33144327702627,51.96861076613184],[-120.33164369102315,51.96853179140057],[-120.33182906289812,51.9684560154298],[-120.33203005843214,51.96837256898439],[-120.33221543012341,51.968296783438475],[-120.33241584127607,51.96821780734042],[-120.33261683458713,51.968134359852485],[-120.33280278594319,51.968054111250865],[-120.33300261207147,51.967979605150795],[-120.33318914604507,51.967894875933574],[-120.33338969928398,51.967814780351496],[-120.33357557558746,51.96773508488749],[-120.33376145121085,51.967655389117596],[-120.33396251160933,51.967571384828304],[-120.33414838582645,51.96749168842191],[-120.33434886319122,51.96741214554917],[-120.33453546436886,51.9673268596972],[-120.3347358668538,51.967247879490785],[-120.33492173827594,51.96716818181237],[-120.33512221157481,51.967088646511705],[-120.33530808161086,51.96700894819789],[-120.33550862687576,51.96692884886],[-120.3356945689247,51.96684858655781],[-120.3358955496385,51.966765133242035],[-120.33608141687957,51.96668543365629],[-120.33628188583992,51.966605896301225],[-120.33646833416307,51.96652172501921],[-120.33666880282864,51.96644217803644],[-120.33685481288393,51.966361359413],[-120.33705506112175,51.96628349286591],[-120.337241069783,51.96620267360682],[-120.33744138881409,51.966124251964274],[-120.33762681373595,51.96604790313811],[-120.33782786042727,51.96596388303345],[-120.33802766837434,51.96588936806925],[-120.3382141102582,51.965805193905226],[-120.33841457127468,51.96572565277256],[-120.33859984723522,51.96565042011996],[-120.33880089021577,51.96556639828569],[-120.33900069467569,51.96549188160558],[-120.33918655080437,51.96541217691442],[-120.33938686269896,51.96533375183005],[-120.33957286297974,51.96525292873369],[-120.3397727380277,51.965177847335845],[-120.33997297561064,51.96509997562923],[-120.34015897380608,51.96501915156862],[-120.34035870009549,51.96494519585096],[-120.3405597364298,51.96486117089114],[-120.3407451505113,51.96478481695444],[-120.34094538454984,51.96470694352843],[-120.34114590885397,51.9646268342026],[-120.34133110210048,51.96455216043653],[-120.34153155282479,51.96447260484315],[-120.34173192949774,51.96439361225312],[-120.34191777594475,51.96431390307293],[-120.34211822333793,51.964234355382935],[-120.34230406839892,51.96415464556769],[-120.34250393370172,51.964079559352314],[-120.34270430680404,51.964000565041346],[-120.34289014979552,51.96392085426293],[-120.3430900118523,51.96384577595619],[-120.34329096454802,51.96376230950188],[-120.34347629703451,51.96368650550712],[-120.34367608487675,51.96361198058417],[-120.34387703537142,51.9635285130889],[-120.34406221926848,51.963453834854455],[-120.34426273207443,51.96337372000782],[-120.34446317202399,51.96329415922405],[-120.34464886338841,51.963215563333776],[-120.34484879245622,51.963139918564394],[-120.34504966525289,51.96305701234702],[-120.34523506378807,51.962980651053265],[-120.34543608165333,51.96289661742741],[-120.34562118808905,51.96282249106108],[-120.34582169512294,51.962742373452755],[-120.34602198279943,51.962663936632005],[-120.346207959374,51.962583102619234],[-120.34640839213439,51.96250353839106],[-120.34659407662029,51.9624249393064],[-120.34679458003573,51.962344819974305],[-120.34697989923441,51.96226901918314],[-120.34718083720608,51.962185545818656],[-120.34738126636107,51.962105979867616],[-120.34756709271502,51.96202626140144],[-120.34776686594722,51.96195172926556],[-120.34795334423742,51.96186698460736],[-120.34815369728445,51.961787980651636],[-120.34833901291263,51.961712168691676],[-120.3485400910035,51.961627575127025],[-120.34872576791098,51.961548972541095],[-120.34892626337567,51.96146884943209],[-120.34911273734427,51.9613841028586],[-120.34931308606866,51.96130509685008],[-120.34949897868611,51.96122481184275],[-120.34970005227584,51.96114021621432],[-120.34988587026851,51.96106049393495],[-120.35007168758123,51.96098077134975],[-120.35027217795641,51.96090064585495],[-120.35045850163647,51.96081701484604],[-120.35064504303324,51.960731702374744],[-120.35084545917465,51.960652130286505],[-120.35103141821371,51.96057128833332],[-120.35121839309215,51.96048262154523],[-120.3514043507159,51.96040177897715],[-120.35160527160035,51.96031829774762],[-120.351791227805,51.96023745454244],[-120.35197769093146,51.96015270323331],[-120.35216408131694,51.960068506040216],[-120.35235061616984,51.959983190747046],[-120.35255102575377,51.95990361563505],[-120.35273755914316,51.95981829970214],[-120.35292351111323,51.95973745463108],[-120.35311047856347,51.95964878470279],[-120.35329700976656,51.959563467843594],[-120.35349734253276,51.959484454421386],[-120.35368387227494,51.95939913692259],[-120.35387040128667,51.95931381911489],[-120.35405685641663,51.95922906436688],[-120.35424323883363,51.959144863736554],[-120.35442976566165,51.95905954500284],[-120.35463081968658,51.95897494059503],[-120.354816692565,51.95889464683032],[-120.35500379766223,51.95880485596315],[-120.35519017643492,51.95872065376721],[-120.35537611917034,51.95863980465352],[-120.35556249651762,51.95855560184208],[-120.35576296563735,51.95847546660693],[-120.35594999385935,51.958386237537646],[-120.35613651409817,51.9583009159795],[-120.35632230820667,51.95822118310465],[-120.35647563757425,51.95816628492406],[-120.36652532552333,51.95451244915503],[-120.36808017347906,51.95390763258144],[-120.36914423113271,51.953480066695604],[-120.36968868873981,51.953226676535415],[-120.3702053170776,51.95296236139669],[-120.37063250002413,51.95248553697595],[-120.37090595023713,51.95206698215632],[-120.37109867831045,51.95159441253884],[-120.37140053236003,51.95106925767198],[-120.37156868556266,51.95056060029738],[-120.37169246294158,51.95005595751995],[-120.3717381746926,51.94970272451831],[-120.37171241795463,51.949336986389206],[-120.37176732702594,51.948799717057454],[-120.37190100487389,51.948218506559556],[-120.37197201408561,51.947782702682815],[-120.37190609499062,51.947275503409436],[-120.37193284332604,51.94650399250924],[-120.37247895492301,51.94601106491587],[-120.37337760924554,51.94539143482043],[-120.37429646601791,51.94484140956766],[-120.37588778959795,51.94395087103873],[-120.3768904721415,51.94354330204738],[-120.37773721410046,51.94321132718841],[-120.3786260674599,51.94289265925767],[-120.3792811692369,51.942573224096066],[-120.37975122169082,51.942215463262855],[-120.38004356556634,51.94142321791863],[-120.3799574792461,51.94095835051727],[-120.37978670935073,51.940357151320605],[-120.37990601350789,51.93965992060143],[-120.38051811304189,51.938994138718776],[-120.38163045879725,51.93864140289239],[-120.3830867728182,51.938453989408515],[-120.38567303797079,51.93811657408536],[-120.38673820179848,51.93801571310693],[-120.38759632705005,51.93770728621289],[-120.38864596592506,51.93716018328717],[-120.38965753158283,51.936454846874156],[-120.39034820040405,51.93608478224069],[-120.39133795688365,51.93577490194644],[-120.39278668410687,51.93575854498194],[-120.39373215039267,51.935678769089975],[-120.39449692818383,51.93575383415224],[-120.39904708394849,51.93593616394043],[-120.39978888886674,51.93584921069426],[-120.4002925911248,51.93590923120845],[-120.4010909497594,51.93606406688431],[-120.40186503178401,51.93595336111241],[-120.40231180881652,51.93588798965741],[-120.40277303417574,51.935823879497654],[-120.40321980967029,51.93575849556298],[-120.40366945849594,51.93567076123248],[-120.40410487328091,51.935580072034405],[-120.40454251408363,51.935472058492444],[-120.40496620686346,51.935358863457445],[-120.40539061617059,51.93524007743689],[-120.40580222716501,51.935107167055236],[-120.4062279252526,51.934978316967324],[-120.40662630389987,51.93483463451695],[-120.40702539843002,51.9346853612422],[-120.40741111911265,51.93452643549553],[-120.40779712434501,51.934365272659576],[-120.40817018655505,51.93419110386219],[-120.40854338944516,51.93401581593971],[-120.4089027871505,51.93383422954429],[-120.40926261278503,51.93364928832946],[-120.40960798628417,51.933463083781206],[-120.4099674473849,51.933280930552364],[-120.41032798199625,51.93309039646096],[-120.41067341889405,51.93290362520276],[-120.41103265496832,51.93272314986223],[-120.41140705366105,51.932538354803796],[-120.41175305585423,51.932347108638986],[-120.41210027587408,51.93214635483054],[-120.41244749154818,51.93194560888102],[-120.41279470517344,51.93174485290393],[-120.41315578886568,51.931549838104125],[-120.41351514703587,51.93136823689419],[-120.41389966660692,51.9312182320843],[-120.41429640708057,51.93108681944654],[-120.41471902747816,51.93098141331221],[-120.41515372621168,51.93089571690321],[-120.4156010053675,51.93082582191006],[-120.41604656274738,51.93076933103133],[-120.41651979470936,51.930724876622165],[-120.416977358723,51.930688656699964],[-120.41746338732341,51.93065831999514],[-120.41793374846358,51.93063621780211],[-120.41840410912688,51.93061411368368],[-120.4188738957755,51.93059647925562],[-120.41934368204411,51.93057884290693],[-120.41979722808206,51.930573913080586],[-120.42026472015527,51.93057415944819],[-120.4207316388867,51.930578875539275],[-120.42119683782073,51.930597004615215],[-120.42166203714157,51.930615131807926],[-120.42214175643367,51.93063396324142],[-120.42260752969727,51.93064761497485],[-120.42307273014441,51.93066573645684],[-120.42353850403882,51.93067938441698],[-120.42400542425055,51.930684087207645],[-120.4244596870627,51.93067354943152],[-120.42492904221254,51.93065924398629],[-120.42538545280797,51.93063193387964],[-120.42585759914024,51.930595829829166],[-120.4263157268132,51.930555101074944],[-120.4267757149912,51.93049983761315],[-120.4272356309911,51.930445126793316],[-120.42769733473386,51.930376444663025],[-120.42815968060405,51.93030273452464],[-120.42859484768991,51.930213070051956],[-120.42903058433114,51.930118941199666],[-120.42946753610697,51.93001530391569],[-120.42987802266855,51.929890132142084],[-120.43027692135117,51.929741331983145],[-120.43066551818936,51.9295588512171],[-120.43101255681604,51.92935860322217],[-120.43134650361274,51.9291464699749],[-120.4316378910053,51.92892439550192],[-120.43185832438557,51.928685944153735],[-120.43202318306604,51.928425104727694],[-120.43213261082657,51.928140759524574],[-120.43222844747991,51.92784844726709],[-120.43233801434002,51.927562992744186],[-120.43247568794493,51.92728620972312],[-120.4326135028226,51.92700830854522],[-120.4327521740396,51.92672369958424],[-120.43291880816268,51.92644887988603],[-120.43311233052228,51.92619224719604],[-120.43334726138148,51.92595448821532],[-120.43366615157598,51.92574556009698],[-120.43405405579296,51.92556809343397],[-120.43448000615602,51.92543578385994],[-120.43491503962883,51.925346658509575],[-120.43536115866965,51.92528506627452],[-120.43582057895794,51.92523368358267],[-120.4362775696581,51.925201294933636],[-120.43674900565499,51.925170172185894],[-120.43721929780904,51.92514799096031],[-120.43768901794803,51.92513027954035],[-120.4381575947287,51.925121509666766],[-120.43862674276114,51.92510826614679],[-120.43909589050864,51.92509502071134],[-120.43955051995353,51.925081069434135],[-120.44001923865513,51.925071174034166],[-120.4404878143318,51.925062394658504],[-120.44095653261994,51.9250524954353],[-120.44142510790714,51.92504371223772],[-120.44187745164821,51.925047638753234],[-120.44234488458159,51.92504779530922],[-120.44281231751827,51.92504794996386],[-120.44327803757079,51.92506151799395],[-120.44374432882812,51.925070612375336],[-120.44421004941253,51.92508417662806],[-120.44467527024848,51.9251016562599],[-120.445139849909,51.92512416027525],[-120.44560493000425,51.92514274514143],[-120.44606893990435,51.92516971716996],[-120.4465474685471,51.925197390368474],[-120.44701033844733,51.9252333021435],[-120.44747263857461,51.92527368383192],[-120.44793436906951,51.925318535440155],[-120.44838051210856,51.9253710714459],[-120.44883996298033,51.92543380654299],[-120.44928340025622,51.92550757107234],[-120.44972576913383,51.92558972296186],[-120.45016336314164,51.92570932886059],[-120.45058444646371,51.925843872877905],[-120.4509882336661,51.92599951732111],[-120.45134490461925,51.92618100174049],[-120.45168506448982,51.9263774339159],[-120.45197967596505,51.926587409277666],[-120.45227265077608,51.92681024473274],[-120.45254961392554,51.92704411111026],[-120.45281149106903,51.927281746320176],[-120.45305792635283,51.92752594086506],[-120.45331938168367,51.92776692866451],[-120.45356575074032,51.92801168546268],[-120.45382657005707,51.928257707249365],[-120.45408860392241,51.92849422134622],[-120.45436487516467,51.928733672750454],[-120.4546574503393,51.92895984661084],[-120.45495095393605,51.92917875747722],[-120.45525841039665,51.92940284129427],[-120.45556565578664,51.92962860564214],[-120.45587361766476,51.929848770427036],[-120.45621268714523,51.93005413217116],[-120.45655325463174,51.9302477588631],[-120.45692514498064,51.93042489180954],[-120.45730024176554,51.93057687408383],[-120.45769256675884,51.93070831565779],[-120.45811592789353,51.93082550770361],[-120.45855551999794,51.93092998426688],[-120.45899603896147,51.93102719691419],[-120.45945342951451,51.93110665856489],[-120.4599118180743,51.931178292709426],[-120.46037120439897,51.93124209933736],[-120.46083187286747,51.93129584252723],[-120.46129325396838,51.93134399408872],[-120.46175513466423,51.931388226476656],[-120.46221865190093,51.931419604973634],[-120.462682738861,51.93144650977033],[-120.46314739540266,51.93146894086024],[-120.46361262138379,51.931486898236706],[-120.46407898557564,51.93149591005622],[-120.46454648769188,51.931495976305186],[-120.4650145586272,51.93149156881121],[-120.4654831982374,51.93148268756715],[-120.46595240637791,51.9314693325661],[-120.46640823100698,51.9314463314229],[-120.46687942866252,51.93141732116686],[-120.46733638941527,51.93138537263949],[-120.46779455705763,51.93134392407282],[-120.46825222697466,51.931306382082276],[-120.46871153092432,51.93125597719699],[-120.46917033590442,51.931209487826074],[-120.46962970824619,51.93115852475611],[-120.47008957620146,51.93110365143528],[-120.47054958619678,51.931047649360316],[-120.47101023366302,51.93098661905612],[-120.47145614573859,51.930926568435744],[-120.4719172167329,51.930862180583176],[-120.4723777898868,51.93080169930092],[-120.4728238401895,51.93074052539433],[-120.47328554671842,51.930671096701374],[-120.47373223388055,51.93060488391891],[-120.47417870616867,51.93054035082725],[-120.47464040842061,51.930470916679425],[-120.47508765924496,51.93040022672406],[-120.47553483708603,51.930330098483076],[-120.47598201462401,51.93025995955406],[-120.47644427752856,51.93018605518564],[-120.47689201970803,51.930111440803685],[-120.47733990110373,51.93003571563935],[-120.47778764020687,51.92996109775847],[-120.47823601558103,51.9298814516981],[-120.47868375043187,51.929806839259896],[-120.47913162672185,51.92973109814927],[-120.47957992579626,51.92965201029153],[-120.48002765712603,51.929577383659],[-120.4804759529949,51.92949829229555],[-120.48092424837184,51.929419190234086],[-120.48137211565404,51.92934344931036],[-120.48181984074819,51.929268815675776],[-120.48226763461996,51.92919362577208],[-120.48271599391877,51.92911396218044],[-120.48316435157933,51.929034296834075],[-120.48361206929779,51.928959665141136],[-120.48405992832494,51.92888390476885],[-120.48450820974992,51.92880479762891],[-120.48495592394535,51.92873015174193],[-120.48540420216418,51.928651041096444],[-120.48585191324712,51.92857639170888],[-120.48630032990862,51.928496159568276],[-120.48674803786723,51.92842150667959],[-120.48719645128715,51.92834127103157],[-120.4876447225761,51.92826214267589],[-120.48809249606495,51.928186930010526],[-120.48854083437004,51.928107243624666],[-120.48898860472264,51.928032027457654],[-120.48943686844788,51.927952901034075],[-120.48988470701376,51.92787711789646],[-120.49033353369347,51.92779351598599],[-120.49078122753262,51.92771884733954],[-120.49122891870643,51.927644185888084],[-120.4916773170195,51.92756392375813],[-120.4921250050685,51.927489258805835],[-120.4925738245928,51.927405639173664],[-120.49302165095453,51.92732985271954],[-120.49346990127455,51.92725070157245],[-120.49391772448779,51.92717491161628],[-120.49436597158866,51.92709575696332],[-120.49481372150606,51.92702051803384],[-120.49526252991855,51.926936896810794],[-120.49571034792469,51.926861090904325],[-120.4961585874146,51.9267819381816],[-120.49660640227172,51.926706128773155],[-120.49705463854232,51.92662697254475],[-120.49750287431647,51.926547805618384],[-120.49795110733243,51.926468645882395],[-120.498398915856,51.926392829468185],[-120.49884714565242,51.92631366622643],[-120.4992948097182,51.92623896431814],[-120.4997431776034,51.92615867956303],[-120.50019140368302,51.92607950211784],[-120.5006396982065,51.92599976838622],[-120.50108742604485,51.925924504941484],[-120.50153515233772,51.92584923974731],[-120.50198344203714,51.925769500757646],[-120.50243173009714,51.92568976001362],[-120.5028799453456,51.925610580993634],[-120.5033277364878,51.925534745316405],[-120.50377524256093,51.92546115286144],[-120.50422359532907,51.925380841626705],[-120.50467180414891,51.925301655596535],[-120.50511944784698,51.92522693093246],[-120.50556779460229,51.925146623380954],[-120.50601543517368,51.92507189521646],[-120.50646314420675,51.924996610766556],[-120.50691141612964,51.92491685249357],[-120.50735968641283,51.92483709246639],[-120.50780731960762,51.92476236624566],[-120.50825509347061,51.92468651131201],[-120.50870328783327,51.924607309509724],[-120.50915105854573,51.92453145107447],[-120.50959910864907,51.92445336378921],[-120.51004687622257,51.92437750185315],[-120.51049506415524,51.924298293041026],[-120.51094268757464,51.924223545627676],[-120.51139044932329,51.92414768738513],[-120.51183863358156,51.92406846437276],[-120.51228632225926,51.923993157169804],[-120.51273400939078,51.92391784821772],[-120.51318225875477,51.923838065407644],[-120.51362987171684,51.92376331644094],[-120.51407804795663,51.92368408466764],[-120.51452565780286,51.92360933220146],[-120.51497340813953,51.92353345101294],[-120.51542157844898,51.9234542229279],[-120.51586918476,51.923379456269146],[-120.51631749272207,51.92329910664818],[-120.51677961454224,51.92322503066157],[-120.51721333076574,51.92314453790657],[-120.51767551927657,51.92306990376267],[-120.51812318762315,51.92299457375417],[-120.51855626489417,51.92291911154001],[-120.51900407096376,51.92284266005497],[-120.51901908284393,51.92283943634868],[-120.51946723867108,51.92276019243692],[-120.51991483092247,51.922685409973894],[-120.52036242051285,51.92261063470682],[-120.52081057267384,51.922531376595785],[-120.52125886281316,51.92245100763721],[-120.52170644881915,51.92237621817519],[-120.52215473571263,51.92229584571064],[-120.52260231858988,51.922221052748995],[-120.52304996971232,51.9221457034907],[-120.52349818198581,51.92206588031715],[-120.5239463926186,51.92198605538961],[-120.52439453072257,51.92190679220184],[-120.52484224640502,51.921830872446904],[-120.52528981877617,51.92175607793089],[-120.5257379532003,51.9216768005434],[-120.52618608487039,51.92159753034708],[-120.5266343566285,51.92151713140724],[-120.52708192270642,51.921442329890176],[-120.52753005064899,51.92136304549175],[-120.52797775416651,51.92128712242802],[-120.52841136073496,51.92120714182313],[-120.52885962325387,51.92112674311891],[-120.52930774472203,51.92104745176555],[-120.52975593425397,51.92096760410609],[-120.53020356014977,51.92089222689668],[-120.53065174644648,51.92081237573218],[-120.53109986030252,51.920733086312225],[-120.53154811411646,51.92065266814197],[-120.5319956628947,51.92057784742899],[-120.53244391346138,51.92049742575307],[-120.53289145910982,51.920422601540814],[-120.53333956601251,51.92034329441479],[-120.53378767016228,51.920263994479974],[-120.53423591419886,51.92018356579119],[-120.53468345355219,51.92010873457851],[-120.5351315539715,51.92002942044204],[-120.53557923056435,51.91995346767231],[-120.53602676637452,51.91987862226794],[-120.53647556253645,51.91979372152275],[-120.53692309516924,51.91971887261669],[-120.53737125710435,51.91963899516069],[-120.53781885620083,51.91956358819727],[-120.53826645374956,51.919488179485235],[-120.53871510125812,51.91940438802571],[-120.53916276631657,51.91932841230786],[-120.53961084945043,51.91924908959311],[-120.54005837111393,51.91917422843964],[-120.54050589011932,51.91909937448271],[-120.54095354892759,51.919023391767354],[-120.54140218649259,51.918939589781466],[-120.54184970190569,51.918864721630776],[-120.54229728531271,51.91878929717035],[-120.54274486717172,51.918713870961305],[-120.54319244748268,51.91863844300387],[-120.54364051619893,51.91855910452632],[-120.5440881640009,51.918483109562324],[-120.54453566899853,51.91840823986457],[-120.54498331369243,51.91833224140289],[-120.54544519294483,51.91825917683428],[-120.54589325478763,51.91817982060082],[-120.54634089365102,51.91810382577918],[-120.54678783175287,51.9180334106342],[-120.54723539808883,51.91795796688256],[-120.54768345245984,51.91787861259142],[-120.54813052611574,51.91780707413412],[-120.54859239453444,51.91773399688039],[-120.54903946521722,51.91766245487719],[-120.54948695329497,51.91758756584125],[-120.54993444095592,51.91751266611307],[-120.55038199650535,51.917437210069764],[-120.55082892013223,51.91736678810859],[-120.55127654317066,51.917290765059015],[-120.55173840085081,51.91721767512553],[-120.5521853211576,51.91714723893005],[-120.55263293845941,51.917071219525965],[-120.55307985582098,51.91700077984175],[-120.55352740067622,51.916925311512166],[-120.55398939059077,51.91685109442326],[-120.5544364433706,51.91677953136457],[-120.55488377327006,51.91670573933618],[-120.55533124261564,51.91663081853081],[-120.55577828981757,51.91655925918184],[-120.55622575612392,51.916484334883],[-120.5566872480162,51.91641401574971],[-120.55713415097759,51.91634356919914],[-120.55758217187058,51.91626416724991],[-120.5580290718513,51.916193717209076],[-120.55847653054127,51.91611878412022],[-120.5592969013895,51.91598113092819],[-120.55922880202529,51.888717134259544],[-120.56069999961424,51.888344951247845],[-120.56131792729667,51.88811502232102],[-120.56163787979526,51.887919322030534],[-120.56201927662585,51.88774284122163],[-120.56249189870675,51.887595432578806],[-120.56302708701877,51.88734132359522],[-120.56350660956254,51.88709470305792],[-120.56394930108199,51.88686544510803],[-120.56443843626167,51.88673175154856],[-120.56502598091335,51.88661340434015],[-120.56549188495602,51.88646116664125],[-120.56609267106174,51.88616348340173],[-120.5667279005063,51.88579432227951],[-120.56709258600749,51.88553211118353],[-120.56753482107734,51.885262337374904],[-120.56838168552902,51.884731674120644],[-120.56846565418635,51.884701912303036],[-120.56884002324209,51.88455207162153],[-120.5691062927688,51.88444996898532],[-120.56945046488933,51.88436674651274],[-120.5700383870843,51.884288884092996],[-120.57064108872538,51.88418022637702],[-120.57118268613269,51.884020306736055],[-120.57154190721535,51.88387479697713],[-120.57188417877427,51.88373354903553],[-120.57200622004832,51.88369096687666],[-120.57243285808276,51.88344348981922],[-120.57289093286677,51.88313395721907],[-120.57322593039451,51.88293387477189],[-120.57368497870323,51.882660368086],[-120.57442462455617,51.88225731491808],[-120.57507361650094,51.88193768560869],[-120.5753178840244,51.88182159803956],[-120.5757743352308,51.881583394613166],[-120.5761635573186,51.881357753264936],[-120.57670581146856,51.88098694854316],[-120.57707924550348,51.88069757195153],[-120.57741534235309,51.880327137832964],[-120.57766755043203,51.87998590779567],[-120.57784294519041,51.87977825965504],[-120.57804070536939,51.87950811771145],[-120.57820853947655,51.87921463141845],[-120.57832973890416,51.878988113721235],[-120.57850641751169,51.878667485083604],[-120.57865995771195,51.878400882303666],[-120.57873626218536,51.87822734277103],[-120.57885032922223,51.87795549764825],[-120.57899492586051,51.87764347282921],[-120.57923183140876,51.877293084728414],[-120.57942246347316,51.87703610028914],[-120.57952101953137,51.876903545761444],[-120.57976518844008,51.876611986655206],[-120.57986463726584,51.876442915701695],[-120.57993382442916,51.876282544546534],[-120.58005592129356,51.8760779955573],[-120.58017739173673,51.87587847363218],[-120.58027601186915,51.875745363713676],[-120.58066664162858,51.875375809885504],[-120.58120699176027,51.87506338343006],[-120.5818096626914,51.874733666119546],[-120.58229063879546,51.874370630117625],[-120.58265624745097,51.874099421635144],[-120.58310600610763,51.873649993381605],[-120.58319859716698,51.87330120501676],[-120.58314552614006,51.87293596381187],[-120.58284108228257,51.872524535043965],[-120.58293870055986,51.872193980078734],[-120.5835032826738,51.8717741579735],[-120.58385559037666,51.87144833913862],[-120.5840378820694,51.87121401541161],[-120.58427362733106,51.87093103876482],[-120.58452553028998,51.8704593120793],[-120.5845497353731,51.87001506083698],[-120.58399145885126,51.86978283775182],[-120.58380808192203,51.86958577768279],[-120.58382301476168,51.86928955293335],[-120.58393033288328,51.869012876111555],[-120.58400671893504,51.86879435670237],[-120.58422829150636,51.86865467650789],[-120.58445769389377,51.86856936257445],[-120.58478528582457,51.86854491842571],[-120.58530501483209,51.86851494403328],[-120.58557849615157,51.86847106856453],[-120.5857080237346,51.8684558214831],[-120.58605255281093,51.86842711760085],[-120.58616687707618,51.86840215349877],[-120.58740947969865,51.868468195617325],[-120.58803583129537,51.868489919417634],[-120.58869836073364,51.86849928531033],[-120.58891280641707,51.868490295994405],[-120.58946273504266,51.868613568477805],[-120.5896520939985,51.868747916260475],[-120.5896602924558,51.868946256282335],[-120.58972221981969,51.869225865326435],[-120.59030873284738,51.86953924897719],[-120.59078896144254,51.86966597067964],[-120.59105741325816,51.869721387624516],[-120.59136873044572,51.86975464183224],[-120.59162171900569,51.869831821789575],[-120.59174295857602,51.86994214602677],[-120.59175796197533,51.87042368002148],[-120.59193371109001,51.871079253787585],[-120.59262097731073,51.87166843876211],[-120.59308600031571,51.87206492309468],[-120.59382626288001,51.87240353770645],[-120.59429825172528,51.87255290586494],[-120.59465871636282,51.87264583909113],[-120.59485635025572,51.87269902889369],[-120.59539740470744,51.87289439042946],[-120.59643619796545,51.87304630396675],[-120.59648883038618,51.87303360749181],[-120.596641343666,51.8730683527029],[-120.5972587808184,51.87310366573234],[-120.5975723315429,51.87338388699539],[-120.59828149102138,51.87354722976134],[-120.59886871765592,51.874179457732005],[-120.59949543269161,51.87455204267922],[-120.59999953182633,51.8746927764397],[-120.60024279482619,51.87476047883551],[-120.60127998697024,51.874925766459405],[-120.6013953256222,51.87493682550571],[-120.60179877056692,51.875021637543796],[-120.60216445940712,51.87514627433937],[-120.6028441017538,51.87547466161941],[-120.60357022754232,51.87584009088769],[-120.60450004935754,51.876210051887114],[-120.60534742943956,51.87646534346292],[-120.60593418300546,51.8765132165485],[-120.60665878600496,51.87647872475947],[-120.60734684895874,51.876371085332515],[-120.60765958011851,51.8763638786135],[-120.60798672141823,51.87640232835651],[-120.60849785264111,51.876412887916985],[-120.60849788943656,51.87630941714006],[-120.60849695105769,51.87606643748543],[-120.60849770218226,51.87464541611851],[-120.60860516796734,51.87466115400687],[-120.60871933133741,51.87468171480037],[-120.60883411788255,51.874697239142186],[-120.60894047724608,51.87472192225339],[-120.60905464093297,51.874742482712215],[-120.60916155384459,51.87476269284795],[-120.6092757874582,51.87478268951704],[-120.60939121117116,51.874807807724764],[-120.6094968646775,51.87482345946362],[-120.60961235833719,51.874848013878776],[-120.6097174576561,51.8748681471314],[-120.60983398944741,51.87488431040174],[-120.60994822368717,51.87490430639942],[-120.61006238832545,51.874924865852634],[-120.61016804235562,51.87494051697196],[-120.61028283009622,51.874956039861516],[-120.61039699502734,51.87497659898093],[-120.61051248959835,51.875001152486966],[-120.61061940381816,51.87502136126001],[-120.6107257638742,51.87504605165524],[-120.61083157201084,51.8750752057827],[-120.61093138700139,51.87510858567085],[-120.61103065012433,51.87514642930332],[-120.61113055051175,51.8751938672593],[-120.61121413392532,51.87524053757564],[-120.6113050381952,51.87528699433333],[-120.61138256122106,51.87533843607943],[-120.61144998169976,51.875397842305006],[-120.61151969878499,51.87545342455798],[-120.61157979891375,51.87551304421073],[-120.61164841021098,51.875577571936795],[-120.61171819752164,51.8756325904902],[-120.61179335555194,51.87568841944614],[-120.61187094844384,51.875739306219394],[-120.61195342761279,51.87579492153287],[-120.61203882610437,51.87584167649553],[-120.6121218587048,51.87589281890342],[-120.61220489149977,51.87594396124889],[-120.61229754276992,51.87599105708394],[-120.61238844975522,51.876037512952415],[-120.61247928836322,51.87608452337183],[-120.61257981512688,51.87612692367566],[-120.61267782079616,51.87616021675189],[-120.61278529181635,51.87617595070515],[-120.61289915267788,51.87616950010467],[-120.61302869354928,51.87615422229364],[-120.61314372983198,51.876138262313205],[-120.6132499408149,51.87614943779505],[-120.6133202142971,51.87620054613293],[-120.61335028771668,51.87628181355377],[-120.61330307417693,51.87633920244017],[-120.6132279732697,51.87640090351197],[-120.61325057145856,51.8764688809625],[-120.61328175076075,51.87654120281631],[-120.61327471721083,51.87661285259062],[-120.61325122764211,51.876684853295465],[-120.61323512857858,51.876756076801584],[-120.61322802524924,51.8768282901298],[-120.61323611890832,51.87689558554347],[-120.6132654157264,51.87696838569317],[-120.61330440072759,51.87703657573153],[-120.61334944773981,51.877099985150345],[-120.61339568541169,51.87716851614806],[-120.61345704956112,51.877232701701864],[-120.61350983267592,51.8772925428278],[-120.61357907218023,51.87735203294633],[-120.61364043796296,51.87741620944598],[-120.61370834794114,51.877471705024405],[-120.61378539335992,51.877527063203544],[-120.61385275193223,51.877587022526605],[-120.61393035059872,51.8776379078215],[-120.6140055138042,51.87769374417471],[-120.61408855223077,51.87774488507543],[-120.61416615145268,51.87779577020375],[-120.61425045056592,51.877851469001314],[-120.61432623702818,51.877902268781256],[-120.61438815750091,51.87796197206745],[-120.61444165028955,51.87803084352368],[-120.61448607751547,51.87809928879298],[-120.61454019197996,51.8781631327877],[-120.61457918003909,51.87823132232046],[-120.61461635506512,51.878299426606354],[-120.61464620902939,51.87836774458488],[-120.61465430405427,51.87843504875181],[-120.61459322360471,51.87850134164352],[-120.61453214186407,51.87856764344439],[-120.61454016820159,51.87863550223216],[-120.61456354569086,51.8787119554552],[-120.61460136011503,51.878789645132045],[-120.6146614679392,51.878849271939345],[-120.61471456752858,51.87887706893617],[-120.61471547038116,51.878013915103956],[-120.61514276132284,51.87774382896517],[-120.6154246296092,51.87763223630207],[-120.6157224169975,51.87753938622108],[-120.6160206005749,51.87742855898241],[-120.61611210435835,51.87732263944411],[-120.61621857960435,51.877198861504624],[-120.61642503332169,51.877121962092254],[-120.61679886137027,51.877004007592284],[-120.617096641551,51.876911153894106],[-120.61733154919733,51.87678103793899],[-120.61767503143845,51.87659867239459],[-120.61825640463633,51.8763948564547],[-120.61854511216468,51.87630157308703],[-120.61882728913714,51.876172559092815],[-120.6189799271319,51.876058820119496],[-120.61922436869938,51.8758661749175],[-120.61945351272,51.87570879182502],[-120.61966745586118,51.875497276217054],[-120.61988131383316,51.87533074380597],[-120.62005568814534,51.87526245408281],[-120.62022328821337,51.875130863455816],[-120.62033022364733,51.874944130325666],[-120.62043084645353,51.874838069231814],[-120.62070386105964,51.87475360842468],[-120.62101659901607,51.8745984653374],[-120.62127739794165,51.874450438188866],[-120.62154427347386,51.87431226014992],[-120.62179553931364,51.87418234620936],[-120.62200961588475,51.87408780056059],[-120.62205515959681,51.874043826483394],[-120.62263489429547,51.873749380762504],[-120.62281800832562,51.87365450501977],[-120.62322967491215,51.873554610988265],[-120.62348881319257,51.873479048120736],[-120.62375629537806,51.87343930839517],[-120.62417654989866,51.87340279656116],[-120.62451896409465,51.87334688500509],[-120.62479487892273,51.87325354478245],[-120.625015015151,51.87321326315389],[-120.62509230056143,51.87313366278215],[-120.62547362436936,51.8728805050878],[-120.62566365533195,51.8728033868155],[-120.62599196106109,51.87268438479473],[-120.62613645219722,51.87265124142176],[-120.62634396999394,51.87256537813669],[-120.62668550011192,51.87238345453462],[-120.6270137998987,51.872264449546364],[-120.62726574775319,51.87214355416066],[-120.62750980764474,51.871968303564536],[-120.62779161250616,51.87181225976112],[-120.62841745545607,51.871483393178345],[-120.62861589873941,51.871397100635065],[-120.62885184379418,51.8712580236551],[-120.62912749128421,51.87109268174677],[-120.62939392956056,51.870972461569174],[-120.62222336309225,51.870966702447966],[-120.62223845725313,51.8637367559736],[-120.61175570394924,51.86366356334524],[-120.60791070078895,51.86363500307547],[-120.599998880954,51.863734611748995],[-120.59907466845488,51.86373377033149],[-120.58842497494284,51.86374055060043],[-120.58741836708133,51.863742470345464],[-120.57569841660062,51.863748654505244],[-120.5756919848216,51.86888396369627],[-120.57568331601274,51.869656822049365],[-120.57568398110735,51.87096999135197],[-120.57597374313008,51.870971340637254],[-120.57621072538764,51.87097188164477],[-120.57610998998801,51.87129778694622],[-120.57592737282931,51.87179808249343],[-120.57563882724763,51.87253406603263],[-120.57536296395907,51.87297764890532],[-120.57510451121215,51.87335457104699],[-120.57487597207191,51.873754837414154],[-120.57476076365907,51.87397714643854],[-120.574560781948,51.87426516553784],[-120.57431855774287,51.874628799962935],[-120.5740743172184,51.87503788609573],[-120.57389892357995,51.87524552935564],[-120.57364676091855,51.87546921451486],[-120.57323501690436,51.87586136669617],[-120.57302098969869,51.876481651494316],[-120.57286744241668,51.87686522154665],[-120.57279934139369,51.87701665213301],[-120.57273835131485,51.87715491363388],[-120.57260018337179,51.877385688887],[-120.57241844284538,51.877688074892134],[-120.57226583964817,51.8779322206986],[-120.5720898778866,51.87820282034475],[-120.57192241312515,51.8784198346567],[-120.57177669266744,51.87856477070088],[-120.57159380131546,51.8787006389987],[-120.5712123889361,51.87892213647751],[-120.57108283315168,51.878995854122905],[-120.57083926110742,51.879062476967675],[-120.5704411642865,51.87919826777003],[-120.56966429257773,51.879578161049146],[-120.5691151656513,51.87998910002527],[-120.56879349649407,51.88024322358228],[-120.56851205422957,51.88040871589818],[-120.56803060485171,51.88056922404844],[-120.56760319531811,51.88069124390873],[-120.56716232097408,51.88073107512671],[-120.56677158911879,51.880822204608414],[-120.56596376012827,51.88108420017541],[-120.56536018308434,51.88134632334164],[-120.5650414804683,51.88153253549671],[-120.56471203511622,51.88174635596129],[-120.56391114623827,51.88215713446379],[-120.56371273556398,51.88225625432268],[-120.56334624635295,51.88245988252398],[-120.56318751557885,51.88253333252663],[-120.56272198661036,51.882828978788055],[-120.56244671411767,51.882944703621966],[-120.56205023164236,51.88306703837676],[-120.56132421376391,51.88327215032187],[-120.5605701416977,51.88358502710081],[-120.56030957325369,51.88371437543922],[-120.55920031182822,51.8843736757376],[-120.55912583551252,51.87575393809824],[-120.55773533570282,51.67305372090504],[-120.55687506925395,51.47813767125371],[-120.55989551129508,51.48025214268191],[-120.56115895821884,51.48441677711876],[-120.56161146428654,51.48812452219791],[-120.56187809600704,51.49017835142679],[-120.56543143478433,51.49348941772516],[-120.5733950989554,51.49669674599667],[-120.58154255946117,51.49818682682708],[-120.58859769236412,51.49938909788402],[-120.59471550932494,51.50127648448422],[-120.59864927397851,51.50481425205494],[-120.59956385647115,51.50584784290313],[-120.6033239920769,51.50727095842774],[-120.6114715479663,51.50642194688169],[-120.62045497272982,51.50488628153334],[-120.62320294765165,51.50489041986656],[-120.631168161691,51.50540791519946],[-120.63831197497674,51.50495170967057],[-120.64087762791843,51.50455247619428],[-120.64435753146988,51.50329740194145],[-120.64995023577481,51.502270040946804],[-120.65096007535831,51.501816412149516],[-120.65608997948604,51.49947653892675],[-120.6602126464698,51.494112237438166],[-120.66451034167589,51.4892037904649],[-120.66662657071466,51.48749248556274],[-120.67082676989243,51.486241259575664],[-120.67468137101265,51.48509574546683],[-120.67852482526436,51.484638105892124],[-120.68237260900766,51.48498100416701],[-120.68566281161058,51.48515252867596],[-120.69307942961942,51.48383787412372],[-120.69884310007765,51.48303901295548],[-120.70863656795093,51.482749544729835],[-120.71550551747981,51.4818916882177],[-120.7200818148896,51.48086155083558],[-120.72236790780867,51.48012188643056],[-120.72283078084382,51.47578127856134],[-120.72547658081197,51.470471140978646],[-120.72784951656021,51.46876005819285],[-120.73188374487877,51.466932021334394],[-120.73709148780912,51.46555934629952],[-120.73992388640819,51.464471213708734],[-120.74076034924126,51.46424336998058],[-120.7439552710701,51.462417087490294],[-120.74569441791094,51.461042482663416],[-120.74971501482509,51.46052720520926],[-120.7519995877525,51.460756090230255],[-120.75795656582936,51.46217895757108],[-120.7631648053314,51.46297520949512],[-120.76692944201561,51.46291042349161],[-120.77295889039566,51.46336385758021],[-120.78101451581792,51.461475826692414],[-120.78549406306563,51.45964342612359],[-120.7923549949234,51.45758441896155],[-120.7974653150413,51.45615231697059],[-120.80066178302918,51.454775725189435],[-120.8054221537443,51.45385540058354],[-120.81109731823467,51.453506010036946],[-120.81410752872632,51.454072815551655],[-120.81722584145614,51.45458092410387],[-120.82014727864293,51.453325112138565],[-120.8239901080187,51.452462813787264],[-120.82773321040929,51.45183318754923],[-120.82846524251447,51.44965952506176],[-120.82817582951584,51.445606267233494],[-120.82917453003543,51.44263650744486],[-120.8323603528857,51.439610073665946],[-120.83354647466592,51.43823942926221],[-120.83683752987687,51.43566482294312],[-120.83910208507358,51.432235733601175],[-120.84148655638869,51.43086162986173],[-120.84403520091357,51.42857702960513],[-120.84676404876757,51.42697101032608],[-120.85334391221423,51.424280521305896],[-120.86265700913614,51.419930075766814],[-120.86530389672342,51.41814951225785],[-120.869666766334,51.41414900787715],[-120.87441368961342,51.41180243394979],[-120.87998324139886,51.41081683207095],[-120.88683849999536,51.41006559092779],[-120.88912068657496,51.4095493045733],[-120.89230702108586,51.40783018581483],[-120.89668952091937,51.40661986705435],[-120.90280987548772,51.40535203596405],[-120.90645591614584,51.40414198387652],[-120.91083623447754,51.40219371408719],[-120.91768115332312,51.40063820787361],[-120.92480512681581,51.399536304011555],[-120.9292727940098,51.39907438417383],[-120.9349428535601,51.39894444405433],[-120.93932183109688,51.39950456802496],[-120.94225130240473,51.400125233790476],[-120.94509532327476,51.40149170121699],[-120.94721073342984,51.40342624751812],[-120.95205907285107,51.40455400080064],[-120.95581075303754,51.40455010043803],[-120.95999540587685,51.40328306874693],[-120.960821012084,51.402876052270315],[-120.96310867483959,51.402299517444625],[-120.96657173834194,51.40229425453044],[-120.97122782827402,51.40182162295226],[-120.97396130260731,51.399990283595905],[-120.97933631061717,51.39763540529486],[-120.98316715208507,51.39642275057585],[-120.98681066656476,51.39419163727506],[-120.98991091410745,51.39343796572325],[-120.99418896518557,51.39120207832316],[-120.99692279892155,51.38947992286051],[-120.99992948727528,51.38827476440624],[-121.00439401419855,51.38705679511014],[-121.01433125576553,51.38526255213327],[-121.01953231437166,51.38415572315382],[-121.02189638842114,51.3830134309668],[-121.02727444693757,51.38173915088153],[-121.03366640155149,51.38029314275427],[-121.03822031893434,51.37890461952925],[-121.04303162212686,51.375351399241914],[-121.04539220327017,51.37345998715653],[-121.04964672247496,51.369847843911224],[-121.05545783741744,51.36520131273361],[-121.06036062647935,51.362220542778545],[-121.06208754016254,51.36147088762303],[-121.06800278737849,51.35922286359155],[-121.07356539076923,51.35754630925056],[-121.08049114785919,51.35643487174608],[-121.08677372414857,51.35527261462865],[-121.09415662246363,51.35393052811813],[-121.09880679295628,51.353058461642675],[-121.10491267205633,51.352180563229496],[-121.11130434978082,51.35249224516413],[-121.11725873340201,51.35350110986684],[-121.12419333999891,51.35398673538686],[-121.12829347025043,51.35300037417395],[-121.13120954194756,51.35281937991887],[-121.13167102646261,51.35281561181818],[-121.13897655003818,51.353072791791014],[-121.14674716768806,51.354866027034525],[-121.15153720740051,51.35861221894105],[-121.1540245353567,51.3599754907686],[-121.15858940763428,51.360924297783484],[-121.16856578929807,51.36259655538142],[-121.17231767006,51.36360455349191],[-121.17541727522199,51.363593852806986],[-121.18492877605546,51.36412133788748],[-121.19870638362475,51.36411714303784],[-121.20391349509752,51.363808726463226],[-121.20874622274819,51.36309849626546],[-121.21403767690987,51.36267454595807],[-121.21914008991138,51.362132163948495],[-121.2220402204597,51.360234889005625],[-121.22340136652936,51.35937468819862],[-121.22839378997152,51.35757901646542],[-121.23211691305566,51.35619244235008],[-121.23593707137707,51.35457199140796],[-121.24048137155363,51.352780010597684],[-121.24794322926725,51.351316182749486],[-121.2507871598113,51.35193089368543],[-121.25316823764626,51.3524294203366],[-121.2599208457083,51.35313801299874],[-121.26714044085905,51.35338949169777],[-121.27234216509821,51.35324645377222],[-121.28109509155954,51.35222684179409],[-121.28627228724952,51.35082721075777],[-121.28872723128467,51.3499612240278],[-121.30220136427644,51.347204567938626],[-121.30694399382267,51.34649273177435],[-121.31058114127906,51.34601659178607],[-121.31377157579998,51.345541516918125],[-121.31757929663027,51.34386284629166],[-121.32028816134464,51.34167814862595],[-121.32237548428674,51.34046399471463],[-121.32279757563762,51.33851866917275],[-121.32323154595011,51.336460825375426],[-121.32604186761087,51.335079140862646],[-121.33104369266685,51.334077954216085],[-121.33338954568303,51.33286359560313],[-121.33600706687739,51.33084796725989],[-121.33807208779766,51.328608230564726],[-121.34059303931653,51.326138739614706],[-121.34267797745044,51.324524951977466],[-121.34363416438025,51.322009518568336],[-121.3436963086356,51.31978112405626],[-121.34776023527353,51.31673010387151],[-121.35392727702546,51.31475152513109],[-121.35698577603317,51.312217758207474],[-121.3618794377684,51.31002063938538],[-121.36623764962734,51.308396216837096],[-121.36724573929364,51.308389167388846],[-121.370991042137,51.308765746348975],[-121.37508068892124,51.308740224939015],[-121.37825773526342,51.30780862936692],[-121.3821667701049,51.306756166769276],[-121.38463021398644,51.30645418476463],[-121.38918008876884,51.30642839723777],[-121.39246688842222,51.306233471139436],[-121.39474308463474,51.30593207221761],[-121.39471822960711,51.30478975643286],[-121.39502536081338,51.30115177613354],[-121.39894134989586,51.29739645381357],[-121.41110569957354,51.29538279825927],[-121.41527040290912,51.294481311272136],[-121.42284616229708,51.291199126546594],[-121.43242971901226,51.28183634321777],[-121.4467681387265,51.26968143423264],[-121.45725559304367,51.26373767436741],[-121.46791683466226,51.25733167575076],[-121.4812643197345,51.24597914011953],[-121.49098323257772,51.239013961811054],[-121.50196268465528,51.23134546011741],[-121.51319213889192,51.222871836075385],[-121.52305138286849,51.21469984465456],[-121.53322614170598,51.207775286429126],[-121.53647808379631,51.2038538555926],[-121.53318898409859,51.19732348313394],[-121.52481565299725,51.190843747471774],[-121.51975533760827,51.18610569728407],[-121.51248566873903,51.1829352137787],[-121.50923829655444,51.180857233409306],[-121.50806581894857,51.17812754538012],[-121.50446622352122,51.16976694339044],[-121.50140518507361,51.15540362950908],[-121.50066060708116,51.1483254699223],[-121.49937277045247,51.144626662580066],[-121.49726975680926,51.14133491759413],[-121.49557587833544,51.13924023833981],[-121.49491767217093,51.13513466365786],[-121.49604165928908,51.1335220481169],[-121.50186146969406,51.13351341896393],[-121.51095823557495,51.13100487461105],[-121.52223650300705,51.125044094639485],[-121.5341063875127,51.11787101579173],[-121.54188127444004,51.110926018523],[-121.54553923207563,51.10858958089504],[-121.55334611933041,51.10586711559781],[-121.55970927325096,51.1031068756624],[-121.56336525574272,51.101060505402906],[-121.56892156672646,51.098479379309026],[-121.57114046737121,51.09690695157427],[-121.57942030098866,51.09457361988398],[-121.58500739995404,51.0932490249073],[-121.58938341175443,51.090851717849944],[-121.5887296986077,51.08748633065119],[-121.59134911561605,51.086769805847176],[-121.59645282992904,51.08481963857312],[-121.60030348366406,51.0829422591976],[-121.6075077048456,51.08130988804006],[-121.61249236189397,51.081131073923565],[-121.61554387376071,51.08023407805941],[-121.61958256148056,51.07846910710551],[-121.62432237229251,51.076411932812334],[-121.62689005179992,51.07460804435208],[-121.63046435038424,51.07289831114781],[-121.63274925665718,51.07047215550663],[-121.6365853967441,51.06842157256311],[-121.6388004069891,51.0668477616423],[-121.64127172245969,51.06470136598947],[-121.64627863102476,51.06252043039969],[-121.6521099671459,51.06038915835702],[-121.65783076852762,51.057625878603154],[-121.66091867789832,51.05530274094617],[-121.66473644563781,51.052679326507096],[-121.66788069526312,51.04903637563244],[-121.66926776722993,51.04713042596393],[-121.67135057797255,51.044246542556095],[-121.67350337993021,51.04078733605419],[-121.6757725186332,51.03818716658294],[-121.67869327032113,51.03608878972835],[-121.68260588390662,51.03363826034474],[-121.68532278628504,51.03068685360794],[-121.68670938451942,51.02906686682533],[-121.69249937757023,51.0256709771918],[-121.69881218199261,51.024842323028786],[-121.70214784179522,51.0243470149781],[-121.70666815728588,51.0241656329887],[-121.7111049150623,51.024109069452365],[-121.71236664875589,51.02392109058709],[-121.71933626935518,51.023538040265734],[-121.7296346627611,51.0224265576504],[-121.73569997773241,51.02222739690607],[-121.73759470599252,51.02214412399099],[-121.74433186427196,51.02044863215185],[-121.7499434031459,51.01751378174162],[-121.75235986228735,51.01645376169837],[-121.75691148387624,51.01473224157925],[-121.76210362461764,51.01288348407989],[-121.76300378168568,51.01258461234618],[-121.76675955703016,51.011108734303775],[-121.77016133559084,51.00974647565459],[-121.77154334107493,51.00783358278299],[-121.77227917766498,51.0056523601396],[-121.77303052441302,51.00375843344189],[-121.77631340876388,50.99942472849545],[-121.7788975382458,50.998838812272275],[-121.7827382417009,50.997202034752014],[-121.78678952345102,50.99590304889067],[-121.78982402708596,50.99432686748948],[-121.79284405915328,50.99184322615537],[-121.7951384025614,50.989478497621924],[-121.79602388037655,50.9887223146393],[-121.80206065262614,50.987861464655204],[-121.80786379374625,50.988266091420506],[-121.81405703986468,50.98968736298602],[-121.81852397651275,50.99078819901062],[-121.82439299624369,50.99049503232222],[-121.82998792212105,50.98946727522235],[-121.8336401060426,50.987372650434565],[-121.83624970210883,50.983289547685644],[-121.83868723076037,50.979209008500696],[-121.83930046799924,50.978605454608754],[-121.83962188658616,50.978221582069104],[-121.8395495561206,50.97746723830264],[-121.83979585020866,50.97681747170807],[-121.84023756933615,50.975909589935256],[-121.84056727720268,50.97482496438231],[-121.84096925832188,50.97373063812845],[-121.841971058013,50.972480888955474],[-121.84337624141727,50.971497371810194],[-121.84480913717576,50.97052216851639],[-121.84632920744248,50.96952994475874],[-121.84760023622229,50.969064815947526],[-121.84893654570483,50.96851157882484],[-121.84995402908869,50.96785602632747],[-121.8510451312698,50.96702271690127],[-121.8527411747119,50.96597731649142],[-121.85401001408285,50.96522700836811],[-121.85547847875135,50.96447843863011],[-121.85671815808405,50.96388725587137],[-121.85825566823517,50.963009080579205],[-121.8592725368255,50.96251084211084],[-121.8607904518927,50.961996215362866],[-121.86200621753322,50.961661015219505],[-121.86323036386767,50.961389077522306],[-121.86354136483284,50.96142134963549],[-121.86382540257343,50.96159036052581],[-121.86659011110602,50.95994269431047],[-121.86819073786873,50.958841838227634],[-121.8694291722814,50.95779847188852],[-121.86979880650902,50.95796780437737],[-121.87117500738967,50.95897981398207],[-121.873593288027,50.96106906690694],[-121.87745401427638,50.96376839583782],[-121.8791877743802,50.96462195240296],[-121.87960359606092,50.964755848759246],[-121.87985617840975,50.96480278567484],[-121.88058283544814,50.964971136505866],[-121.88132144471028,50.965164657309124],[-121.88172320826094,50.965296338250255],[-121.88203103968235,50.965363296722934],[-121.88268875065991,50.96566008758182],[-121.88338842164823,50.965966293124985],[-121.88374581410775,50.966114885990855],[-121.88399670025001,50.96618030743926],[-121.88439516896888,50.96634783696771],[-121.88503087354651,50.966574103787245],[-121.88541145098871,50.9667808837837],[-121.88604349460692,50.96704692059042],[-121.88642195969169,50.9672766732702],[-121.88662774681151,50.96736686218169],[-121.8868027043195,50.967481772014494],[-121.88739323021007,50.96788851499314],[-121.88803209023033,50.96839033846495],[-121.88826432265789,50.96850341354246],[-121.8888584318984,50.968716888620136],[-121.88948142654577,50.96908151591025],[-121.88973369547944,50.9692869523103],[-121.88984213415566,50.96934939071486],[-121.89052387796762,50.969851086013875],[-121.89081149874622,50.97013765239799],[-121.89134188203884,50.970578138979704],[-121.89189254682655,50.97095359460557],[-121.89217850896364,50.971103482244615],[-121.89247606571573,50.97128246896522],[-121.89307454456193,50.9716040078528],[-121.8934462679455,50.97190769351989],[-121.8937243682013,50.972297900303175],[-121.89404908106631,50.97264708606317],[-121.8945762731926,50.97312285865426],[-121.89496162807072,50.973433782692354],[-121.89508429268055,50.97365189561009],[-121.89541398143058,50.97394728942727],[-121.8958956278861,50.974452870066905],[-121.89614928189863,50.974798891601424],[-121.8963692344655,50.975045852987144],[-121.8968223563578,50.97539635000945],[-121.89713160925065,50.97560385801772],[-121.89728914625395,50.97575353281773],[-121.8976202065656,50.97603435203555],[-121.89785718829641,50.97625157480786],[-121.89793038734683,50.97638692255993],[-121.89803817438793,50.976611799691135],[-121.89828627840386,50.97717347628636],[-121.8986605524758,50.97760540787394],[-121.89879072541711,50.97774227882741],[-121.89906850192082,50.97798179345179],[-121.89939701130461,50.978290621000376],[-121.8995712194209,50.978414474109755],[-121.89974754243613,50.97851535971132],[-121.9001753082327,50.978831749889835],[-121.9005112562488,50.979059892807875],[-121.90068547046445,50.97918374408361],[-121.90079559836084,50.97922824209132],[-121.90121425238141,50.97948863566107],[-121.90174009943736,50.97967030702748],[-121.90201898205352,50.979742884999865],[-121.90252065278436,50.97987700543161],[-121.90306754192888,50.979985232238846],[-121.90330615908083,50.98002991986397],[-121.9035733923247,50.98007396028778],[-121.90412116262877,50.98017265259645],[-121.90450724991243,50.98032165974704],[-121.90475391970051,50.98043409785921],[-121.90527757813732,50.98063984031426],[-121.90582129059902,50.980782791395434],[-121.90600046967197,50.98085284666423],[-121.90613680257026,50.980923030000824],[-121.90657881643793,50.98124046975287],[-121.90713161676867,50.98175083393625],[-121.90739935024347,50.98194498508902],[-121.90801979896045,50.98234088023076],[-121.90840244515987,50.98268313101958],[-121.90860129779792,50.98285003292445],[-121.90891482581237,50.98301211907056],[-121.90948038328067,50.98338408439224],[-121.90992504976599,50.98382865346199],[-121.91009395841154,50.98401075930826],[-121.91029812155155,50.98411995291889],[-121.91095300539698,50.98445243040201],[-121.91133102649214,50.98468993870348],[-121.91109165692671,50.98620861278771],[-121.91304987687923,50.991790733476265],[-121.91311204867154,50.995782038056745],[-121.91210916970935,51.00017191344924],[-121.9109277819393,51.00152585154091],[-121.91052342687648,51.00204010664144],[-121.91034206109444,51.00230390083273],[-121.91017400517326,51.00257828911848],[-121.90996924936819,51.00325215751576],[-121.90982940555982,51.00353038784706],[-121.90977195050554,51.00384478975567],[-121.90981082815806,51.00451009858112],[-121.91007995861463,51.00500166471077],[-121.9104738457031,51.00553486499252],[-121.91086106794616,51.00598518948756],[-121.9110064591445,51.00626874979115],[-121.91122318681145,51.00670892575971],[-121.91179649886054,51.007933352981205],[-121.91225092887419,51.008585673244504],[-121.91268023606065,51.009200541683825],[-121.91342234902132,51.010298988484855],[-121.91418502201627,51.011018167423934],[-121.91495799705223,51.01209243007594],[-121.91519705354644,51.01244571108781],[-121.91555795742855,51.012716860981726],[-121.91654784876505,51.013607858443116],[-121.91718990747246,51.014241120570404],[-121.91787357960122,51.01488824807062],[-121.91828059403049,51.015280235880006],[-121.91873585037591,51.01576952868668],[-121.91908935453695,51.01612190102708],[-121.9199094240535,51.01715228920227],[-121.92049173556369,51.017814836183526],[-121.92089549488703,51.01808695405074],[-121.92137811294896,51.01859015954922],[-121.92177923750833,51.01904711546394],[-121.9219797113515,51.01935457149158],[-121.92231520031427,51.019904147309035],[-121.9227474495296,51.02064555167442],[-121.9228815185908,51.02105402764307],[-121.92315143636723,51.02200763628667],[-121.92342287721911,51.0227887284884],[-121.92353021522581,51.0231771200162],[-121.92363842715108,51.02355599119494],[-121.92391240099138,51.02430962327055],[-121.92443925183986,51.025111217073274],[-121.9248931178357,51.025773567618245],[-121.92539312023632,51.026400478843385],[-121.92636548356464,51.027176057858945],[-121.92674030843598,51.027453277564625],[-121.92723677538308,51.02796313649641],[-121.92793392989994,51.02846676468887],[-121.92903327445464,51.028948990817064],[-121.92935760378569,51.029153543282845],[-121.93004936850323,51.02940401433649],[-121.93060723550613,51.02971202354904],[-121.93137861290887,51.03034254819471],[-121.93282305837673,51.03111602946266],[-121.93399300281972,51.031765453130774],[-121.93446810506467,51.03204121579542],[-121.93489627354218,51.03236137238278],[-121.93609525719619,51.033163035738674],[-121.93683462040161,51.03367599514532],[-121.93715610328607,51.033912463819156],[-121.93748902341588,51.03418026573852],[-121.93806131021223,51.03511438483852],[-121.9386299166742,51.03624567326009],[-121.9389677840589,51.03677277846951],[-121.93924048088942,51.03738746599639],[-121.93962104280263,51.03807350229738],[-121.93993197090936,51.03858276610837],[-121.94013207949091,51.039053175045495],[-121.94073369906013,51.03998047009745],[-121.9411138201546,51.04035844463869],[-121.94154522332377,51.040801225446636],[-121.94188852693665,51.04126948687643],[-121.94230650506331,51.0418596186066],[-121.94301875221129,51.04251544596751],[-121.94343885630916,51.04292577353812],[-121.9438069717985,51.0432791276334],[-121.94412687318686,51.04369089081136],[-121.94434293583762,51.04398705167617],[-121.94514009319373,51.04481006020094],[-121.9455429226435,51.0452534807445],[-121.94600889586032,51.04563171454185],[-121.94633414489562,51.04598520285392],[-121.94704468731061,51.04681800339177],[-121.94746253102456,51.04741090920934],[-121.94775318457565,51.0479874288918],[-121.94845959709205,51.05184867474672],[-121.94869169659039,51.05416727071185],[-121.94726636123318,51.05788085040046],[-121.94838684990064,51.06112348489076],[-121.94863894153846,51.063066172829224],[-121.95021843081203,51.066297755939324],[-121.95036376649949,51.06784311816712],[-121.95242398591071,51.071926085378536],[-121.95557623904712,51.07564804199231],[-121.9561425677409,51.07650028212393],[-121.9581616737703,51.07915728474438],[-121.95885776694512,51.08314719049617],[-121.95995104236471,51.085760756525126],[-121.96309373834976,51.087084811820084],[-121.96717820830614,51.08702272311236],[-121.96790026624231,51.08695136255805],[-121.97298313458793,51.086926522320006],[-121.9756250310232,51.0895182869044],[-121.97796046990234,51.09565688262554],[-121.97917791712851,51.09912837452106],[-121.98315447246809,51.10106274256119],[-121.9867984295714,51.10129443323607],[-121.98880469394538,51.101430577361974],[-121.99443255764636,51.101570819268325],[-121.99972818631892,51.10206206545997],[-122.00569686211568,51.10302993864934],[-122.01022872963217,51.105492198437155],[-122.0189396593329,51.10829879333536],[-122.02710217167956,51.109564475228055],[-122.03064563484565,51.112531615938316],[-122.03327115242455,51.11744405489664],[-122.03670034037891,51.12041929200425],[-122.04632927612167,51.12293832740225],[-122.04749388106214,51.12739267586427],[-122.04549156352121,51.13121825805472],[-122.04112156629732,51.134922414728074],[-122.03783003355242,51.13937696702392],[-122.03945635675778,51.14491481710129],[-122.0437226427172,51.14897676050155],[-122.0478899975213,51.153031647774895],[-122.05324692690651,51.15806258544744],[-122.06123098528334,51.16257975881871],[-122.07049106359557,51.166466384331464],[-122.07330607687844,51.16835153422724],[-122.08076909461721,51.170694964040344],[-122.08868011551687,51.172356569685505],[-122.0960395798113,51.174589130792846],[-122.1075788036333,51.17527851529753],[-122.1157728553807,51.176019575909656],[-122.11950108845771,51.17716448630118],[-122.1251288896536,51.18053127827481],[-122.13014041219613,51.18258864870767],[-122.13322574754842,51.1847022598355],[-122.13730985834991,51.18835989829592],[-122.14159133166814,51.191899919206755],[-122.14477455921694,51.193725988274416],[-122.14986678279203,51.198183978115466],[-122.15195137375409,51.20606352336105],[-122.15249302777944,51.20891404878899],[-122.15313306081777,51.21079748347758],[-122.15176155553347,51.21337150096527],[-122.1496670864904,51.217822355067334],[-122.14967642597904,51.220852495979294],[-122.15140420065119,51.22376365083619],[-122.15422838440348,51.22496121383772],[-122.16004788014708,51.2243939594232],[-122.16305079287642,51.22684535601189],[-122.16532239731757,51.230617564579155],[-122.16642327260574,51.234152737205655],[-122.16760008558721,51.23780789655003],[-122.16987365379623,51.24306226603301],[-122.17324470684116,51.24609326681938],[-122.17916796213842,51.249344201397896],[-122.18144262249685,51.25111180164555],[-122.18328353147874,51.253247886403315],[-122.18400155593199,51.25408236283749],[-122.18466990136321,51.25482694583358],[-122.18656309436837,51.25335861874409],[-122.19096152287044,51.251316238905474],[-122.19451551997471,51.25007064552477],[-122.19880712033282,51.24842779393202],[-122.2031974448451,51.24763934464566],[-122.21103855027835,51.24646364658424],[-122.21933290044159,51.24586051409547],[-122.2324545395627,51.24640730000344],[-122.23746461794218,51.24676417377108],[-122.24656534994921,51.248161947951004],[-122.25357582460698,51.24948966904223],[-122.25792399557614,51.25224579019432],[-122.26018631463997,51.25470683510872],[-122.26226685689029,51.25762252587447],[-122.26480190016429,51.2600919097353],[-122.27492711646471,51.25908612285839],[-122.28468313598654,51.25870780211904],[-122.2897764608687,51.25826217410776],[-122.29279212618724,51.25861283885363],[-122.29841290758971,51.26370966075552],[-122.30002693098979,51.266569360800936],[-122.30421657064545,51.26818007451042],[-122.308401697302,51.26950393899086],[-122.31059867772238,51.26744976185947],[-122.312086173607,51.264253262066724],[-122.31828114856437,51.26386419655524],[-122.32675953235379,51.26365352328019],[-122.3319542616369,51.26389076648897],[-122.33568023572809,51.26538579851172],[-122.34177792630767,51.267909736422574],[-122.34487435637546,51.26677225180464],[-122.3479927215999,51.26414831406005],[-122.35548591793712,51.26124522396721],[-122.36250910913368,51.2586310283421],[-122.36653226134902,51.25703685209779],[-122.36990960666981,51.255783593379455],[-122.39117069817073,51.24690286689373],[-122.41581006503883,51.23590313348321],[-122.43031588470059,51.22957610117728],[-122.43250325535098,51.22843512530242],[-122.43624238717197,51.22495156209024],[-122.43753477013085,51.21940927721908],[-122.43808855779707,51.21626891268227],[-122.4396399563307,51.21392517436137],[-122.4480228023082,51.211190936807114],[-122.45121467588721,51.21056660791135],[-122.45923898583167,51.20817254521872],[-122.46278263491558,51.207089844084976],[-122.46634347880422,51.205609262398475],[-122.47171707473743,51.20315661533988],[-122.48119369117285,51.20104520422999],[-122.48446616747334,51.20047359733543],[-122.49029265597403,51.19916283559818],[-122.50048594185397,51.197396278055976],[-122.50431358283127,51.1970519944147],[-122.50759086891225,51.20059826400439],[-122.51494754602034,51.206083821062954],[-122.51905207191932,51.20751825685317],[-122.52487856723228,51.207119152597265],[-122.53179875895765,51.2064898963089],[-122.53899107356095,51.20494446683022],[-122.5438163030341,51.20431820498586],[-122.54836682714262,51.2016919071808],[-122.5506376909531,51.19757567084036],[-122.55192445122279,51.192832162633124],[-122.55365463065411,51.18957454583412],[-122.55610291081953,51.185743915417206],[-122.55992763778546,51.180426647464394],[-122.56228591381256,51.17774363190497],[-122.57338986712841,51.17391541957693],[-122.57939927434289,51.17293664173573],[-122.58594938972621,51.17219132416688],[-122.59067176136773,51.16613288305565],[-122.5925792807528,51.16350024347859],[-122.59547862801051,51.159329638813034],[-122.59857010465241,51.1539535844339],[-122.59947799560354,51.15126650903453],[-122.59765352299388,51.148530140866676],[-122.59501026426966,51.14526676482059],[-122.59219492932559,51.142011026720375],[-122.59110444336345,51.140357885451806],[-122.59346632910217,51.133095267097005],[-122.59336398172064,51.127150184112864],[-122.59291190957296,51.12035236849101],[-122.59217170039928,51.1167524950465],[-122.5883600990048,51.11400792552271],[-122.58308409022777,51.110583399240994],[-122.57800054229607,51.10801499756058],[-122.57526820499571,51.1059566406868],[-122.57600135647544,51.101271562508494],[-122.57872473782606,51.098239109996186],[-122.58743823552723,51.09451919532845],[-122.59425124225076,51.09280411288906],[-122.60042145256445,51.09200406528107],[-122.60777101856874,51.08999427362531],[-122.61248884423352,51.086280689978224],[-122.61247913961718,51.080964602854806],[-122.61411836912345,51.07822118146577],[-122.6224636870278,51.08038430772428],[-122.62810216010679,51.08392416193689],[-122.63411056150736,51.090146643179665],[-122.64309488311108,51.09070926857649],[-122.65271895155898,51.09075762056401],[-122.65689615040448,51.09075814458836],[-122.6633475635964,51.09285958232891],[-122.67071955358307,51.09834052282772],[-122.67764558424393,51.10387684142185],[-122.68283139589455,51.109358599825335],[-122.68819860452516,51.11146415587918],[-122.69329049910183,51.11477531355584],[-122.6962254706705,51.11957565651345],[-122.69796012171514,51.12396939881102],[-122.69923353986623,51.12648288982566],[-122.70888946294008,51.13064526626222],[-122.71381053421764,51.13360542470033],[-122.71526706497588,51.13617569264165],[-122.7179212120814,51.1411445723864],[-122.71892711726863,51.14400497038018],[-122.72166932730002,51.14856901184736],[-122.72268404409132,51.15131556371121],[-122.7243314324434,51.15422596621024],[-122.72697775185873,51.15719229055955],[-122.72934272652483,51.158732048162605],[-122.73453235618875,51.15946550322991],[-122.74016508165127,51.158655017641514],[-122.7479781382969,51.154871683076124],[-122.75221822868976,51.14880607985904],[-122.75421038305204,51.14565550166009],[-122.75601372692698,51.142341057642405],[-122.75974491846051,51.14164736590877],[-122.76573514636503,51.13923270188955],[-122.76845724288994,51.13842832829588],[-122.77153738422398,51.13762178048563],[-122.77553264837377,51.13801475413773],[-122.78092317216087,51.14326014857831],[-122.78477578142888,51.14839902739957],[-122.78841851238815,51.15130348409453],[-122.78943797806303,51.153249586346966],[-122.79322696609789,51.149182878371654],[-122.79804533130591,51.147513971063425],[-122.80458406530462,51.146412637995454],[-122.81148047561207,51.14571030866479],[-122.81512297043008,51.1452448364981],[-122.82266343954983,51.14534302166333],[-122.8255858633882,51.14773500859345],[-122.83105842383347,51.15052382669076],[-122.83562905909062,51.15331511946225],[-122.84009828611681,51.15633141084787],[-122.8461211875149,51.15866021799481],[-122.85131533330053,51.160361188190144],[-122.8559527505998,51.16143247901001],[-122.85916070569941,51.164283013274336],[-122.86251969900046,51.16399007588501],[-122.86979455742154,51.16322559197802],[-122.8755106562543,51.16200969915388],[-122.87615790377538,51.164008607925176],[-122.8773686272663,51.16634886041285],[-122.8813946045614,51.170224455776385],[-122.8866013046547,51.1730086051871],[-122.89152701504685,51.17510795715073],[-122.89554181940201,51.177328601003886],[-122.90258027731858,51.18079192274414],[-122.91077211119612,51.182939540933],[-122.91732851318375,51.18326206380345],[-122.92262508425944,51.184390610960534],[-122.9275422135033,51.184999735009335],[-122.9324623484815,51.18618887861706],[-122.93731674497708,51.18937146867228],[-122.93904927744792,51.190853977180396],[-122.94580837949806,51.192830896157496],[-122.953911054415,51.193831627110114],[-122.96274008726402,51.19448851219844],[-122.96766545562338,51.19458050174594],[-122.97275853799997,51.195365871100904],[-122.98096275702855,51.19699466006434],[-122.9914440489583,51.19866950810596],[-122.99782349523761,51.19910273964078],[-123.00656070476002,51.198380607004026],[-123.01227470710305,51.19698760123611],[-123.02269071068554,51.19986295901613],[-123.0309865597728,51.20251479056419],[-123.03784041414131,51.20465811017063],[-123.0427735326851,51.205724695944966],[-123.04816849883048,51.20804197725037],[-123.05282473816293,51.2093996220876],[-123.05838325276817,51.21034705063561],[-123.06430916806025,51.210947150721786],[-123.06463383297674,51.20734358207308],[-123.06572923223605,51.19967627775731],[-123.06672314469012,51.190069949857765],[-123.06768810636838,51.18674856496651],[-123.06511161680827,51.184530732124735],[-123.05927506969138,51.183068052810704],[-123.05206943494255,51.18172542364921],[-123.0499493928016,51.178477938528694],[-123.0502722764338,51.17556160641255],[-123.05170870943917,51.172921472429834],[-123.05377054492301,51.17057002996794],[-123.0541675213375,51.165022269841124],[-123.05093784222915,51.16080618695564],[-123.04589288460937,51.156542432501254],[-123.04204432058421,51.1543271064752],[-123.03902885996497,51.15251034892002],[-123.04092337378609,51.15073147369066],[-123.04371842063121,51.148545420583396],[-123.0493156089728,51.144915758953],[-123.05401248099301,51.142324876998146],[-123.05983009190098,51.14161186575318],[-123.0645565018831,51.141591257548406],[-123.06707690864872,51.139634506135664],[-123.06977782856639,51.13710841815889],[-123.06974633785268,51.134765125665844],[-123.06826585238099,51.13225272106245],[-123.07241928446551,51.12983341944278],[-123.07705378256905,51.12901468954778],[-123.0805183406617,51.13031307417866],[-123.08738164502392,51.134795365403654],[-123.09451386664055,51.13825188120296],[-123.09935225668055,51.14045496245399],[-123.10307330419997,51.14003958763983],[-123.11061568141217,51.139204305704816],[-123.11596798201177,51.13791715585895],[-123.11785389997046,51.13665350402371],[-123.12275000141642,51.13577051342644],[-123.13019549730512,51.13464393844498],[-123.13418210299879,51.1334278703557],[-123.13923734481519,51.13139640647971],[-123.14248152310746,51.12880721669991],[-123.14428121657919,51.127085497964465],[-123.14858316834616,51.12294654005013],[-123.15046335343399,51.120185574490186],[-123.15210508232889,51.11355082923804],[-123.15185201224088,51.10834682602554],[-123.15107677009371,51.10526424568005],[-123.15155387453682,51.099829313451046],[-123.1538715956403,51.09535461487363],[-123.15768587056507,51.089386127589286],[-123.16234774742546,51.08513157250752],[-123.16866682226048,51.08200691158822],[-123.17388729703195,51.0783820227967],[-123.18111265858386,51.07536536577086],[-123.18643417369418,51.07327789120583],[-123.19041749528006,51.072226651148505],[-123.19466849436337,51.07146106117023],[-123.1949272103532,51.069625427041586],[-123.20126901238257,51.06901951177199],[-123.20605253081018,51.0672771880658],[-123.20857648441287,51.06646089461566],[-123.21887830185474,51.063314290617335],[-123.22537244666775,51.060244790623535],[-123.23060074065903,51.05798338673577],[-123.23688580633345,51.05388261167188],[-123.23959001970364,51.05198111802893],[-123.24325097880046,51.048239026186664],[-123.24618587441213,51.044677295574324],[-123.25056261429724,51.03950353704558],[-123.25231747202622,51.035603332532474],[-123.25433599881313,51.03159103292922],[-123.25574109739662,51.02872121717513],[-123.25621573279706,51.02380009892541],[-123.253229890431,51.018501299168854],[-123.25148238511593,51.01651142832836],[-123.2509693439603,51.0125646871889],[-123.24892552219436,51.01006204003611],[-123.24525739299767,51.007054518597116],[-123.24422091482509,51.00465844313977],[-123.2430947099364,51.00163841929981],[-123.24376198472181,51.00054162096628],[-123.24376134332996,51.000090613947584],[-123.24685365880548,50.999240840490444],[-123.25102973621894,50.99840233409775],[-123.26770289061609,50.99739087365076],[-123.27557788444537,50.99696035864114],[-123.28591317922994,50.99643037996825],[-123.29134064218752,50.99588008979418],[-123.29659374670673,50.99561402997481],[-123.3011414909311,50.99379923098185],[-123.30425538973905,50.99044301249217],[-123.30701815016468,50.98627909769725],[-123.30931539597647,50.98320138217208],[-123.31167903315857,50.98138270001094],[-123.3165708558871,50.98139970256801],[-123.31962961695412,50.982721792847464],[-123.32410474164037,50.987543314428876],[-123.3259733148203,50.99206728918151],[-123.33000762119799,50.99522292075524],[-123.33281735730438,50.99500604114952],[-123.34106090919822,50.99411581907337],[-123.34332918218553,50.994123421971956],[-123.34928541146068,50.99545864480949],[-123.35425671656927,50.99656479797193],[-123.36313201102014,50.9970514214135],[-123.36792572396607,50.997065525476415],[-123.37617532623827,50.997033818519455],[-123.38368215496865,50.99677137320732],[-123.39004134533938,50.99490592671236],[-123.39522886400286,50.99086318322363],[-123.39778598374086,50.98909667620091],[-123.40151112909078,50.98613397946442],[-123.4050781905163,50.98220266939028],[-123.41017234718561,50.97947179387559],[-123.41415721548215,50.978396038454534],[-123.41967501851123,50.97892391598538],[-123.42482482609694,50.98088582138205],[-123.426797370833,50.98180262255237],[-123.43232321883931,50.98096200531409],[-123.43958322341854,50.97898019424196],[-123.44638305057677,50.97705260771431],[-123.45057423722469,50.97409444471563],[-123.45366431558094,50.971928839343306],[-123.45711892437204,50.96936706650811],[-123.45875693968358,50.96764860108477],[-123.46266762176782,50.965830981023736],[-123.46908896027306,50.96624714184793],[-123.47224614840341,50.9673993261691],[-123.47802186267197,50.96889890230399],[-123.48345424321447,50.96890845371025],[-123.48881027291485,50.966981931241065],[-123.49242842819048,50.96527132404069],[-123.49824944529574,50.96139480570555],[-123.50587230660452,50.956379822353874],[-123.5113373192582,50.95015514199552],[-123.51452775593174,50.94559214122749],[-123.51553811212335,50.94485186713646],[-123.52578303981166,50.93897759882886],[-123.53376016162939,50.93567525136626],[-123.53783916074478,50.933797002799565],[-123.54661894891606,50.93140935740863],[-123.55149548519604,50.93107671630048],[-123.56035224305246,50.931948043960894],[-123.56876077245005,50.93372995455808],[-123.57489296092811,50.93677221267984],[-123.57994404708799,50.93900684350619],[-123.5855782426111,50.931527774431935],[-123.58939973775084,50.925927274437726],[-123.59430840223756,50.918900496540516],[-123.59704539387315,50.91541666147666],[-123.59731197823244,50.914961868801626],[-123.60104325575753,50.90913099888491],[-123.60394509068654,50.90467670263029],[-123.60621583063454,50.901361245439205],[-123.60785468922451,50.898673601318734],[-123.6095825783972,50.89644664925076],[-123.61355619073683,50.89427986114647],[-123.62124057335733,50.894058480242],[-123.6236857158817,50.89411932257448],[-123.63072298394795,50.895898016451774],[-123.63632394262513,50.89738933895648],[-123.64408325962837,50.9008817486704],[-123.65075125420024,50.902948446578726],[-123.65410064297386,50.90369303502094],[-123.65817105364299,50.902093373255774],[-123.66116194859468,50.899353504525344],[-123.66244122831166,50.89449495742425],[-123.66244473907945,50.889803530542345],[-123.66245737773363,50.88711377978723],[-123.66290887201949,50.885284545790135],[-123.66490425581013,50.88168814049419],[-123.66735676461896,50.878596534325574],[-123.6709712803902,50.8772272916764],[-123.67530570177904,50.877058401192585],[-123.67809863439746,50.87780200485891],[-123.6870415083248,50.87986713916745],[-123.69127560844706,50.881643141238264],[-123.69624474152502,50.883245948446095],[-123.70464358854386,50.8798696213592],[-123.71395552596826,50.87558526076773],[-123.71937272586797,50.87398618132257],[-123.72208834404536,50.873185564795556],[-123.71983076905026,50.86947024697695],[-123.71660066267242,50.85583921143249],[-123.71651847048076,50.84909441571455],[-123.71796883663396,50.83878541922383],[-123.7197805578779,50.832249261892194],[-123.713818843894,50.83208554347996],[-123.69900134098619,50.83109678056663],[-123.69357821102524,50.83069088693171],[-123.69328926665857,50.829954271382],[-123.694544757432,50.81524481241226],[-123.69310521618462,50.80485527778944],[-123.68466823142647,50.799335863428304],[-123.67877177717703,50.797450654567825],[-123.66323040186613,50.796409829575836],[-123.65206402942643,50.79320596227602],[-123.64824335064964,50.79158730870173],[-123.6348636373437,50.789999853090826],[-123.62346979906363,50.78873944421169],[-123.61875148050044,50.78746968383539],[-123.61352799341658,50.78369287781314],[-123.60886620854014,50.777389603025846],[-123.60431009902587,50.774974581771865],[-123.59240387559552,50.77857697480685],[-123.57747968468315,50.783859613359105],[-123.56504264538425,50.79243705485555],[-123.54258246159297,50.791499234039065],[-123.5224316807129,50.78939201447843],[-123.50999561817612,50.78138290835501],[-123.49781507454212,50.78463564886787],[-123.48066448220143,50.78809652844132],[-123.47185816194438,50.78937224808005],[-123.45210564667484,50.793307516526625],[-123.44591804935592,50.794957104947294],[-123.43661485925374,50.79395111894197],[-123.42753137292868,50.790363824915886],[-123.42341878534677,50.78753861738128],[-123.41516039227972,50.784458507082235],[-123.40175034224985,50.78599408937495],[-123.3877731589168,50.78993026588609],[-123.3755771002372,50.79397059445467],[-123.36455573937214,50.797081803376315],[-123.3627654338043,50.788406858378934],[-123.35802878343341,50.78010090878216],[-123.34899018100627,50.77422338417249],[-123.3387948316255,50.77304018674018],[-123.32555750203481,50.77358990806233],[-123.32187275112237,50.77418703032432],[-123.31933468703936,50.77317906335906],[-123.31478330657114,50.77046773068469],[-123.3101292376759,50.76758406583991],[-123.30900484226464,50.76479534463515],[-123.31391643297486,50.761957479429334],[-123.31765750624058,50.75993059592484],[-123.32491916444992,50.757650871207446],[-123.3336023844318,50.754842852359054],[-123.34084043841325,50.751018939827595],[-123.34018514168221,50.750104509438565],[-123.33402487840124,50.74249281855787],[-123.33154451159615,50.73982638156133],[-123.3245884411303,50.73347473801676],[-123.318463820689,50.72843184363485],[-123.3068951449093,50.72502871062462],[-123.29988347178467,50.72581947748415],[-123.28411886871571,50.730843889709945],[-123.28322163277599,50.73113667112746],[-123.27424749893451,50.72708253317814],[-123.26222889612413,50.72413561403633],[-123.25184824229333,50.722488398932576],[-123.24374287514917,50.72259982758247],[-123.2373437873085,50.72217985032765],[-123.23073436632173,50.71965531783838],[-123.2236219333309,50.71358452608106],[-123.21795815012388,50.70773358536318],[-123.21393028219933,50.703414269023725],[-123.20935366255219,50.69767361936468],[-123.2066815381109,50.69391710324491],[-123.20678561372475,50.6888293548851],[-123.20252577530287,50.686684204266584],[-123.19890741297259,50.68493929634749],[-123.19928857838738,50.68087484558909],[-123.19978577883977,50.678129158120704],[-123.19586162459376,50.67358004416397],[-123.1917497360299,50.669780038062484],[-123.18838942400897,50.666883196915954],[-123.18850184081833,50.662825373375355],[-123.18791947370165,50.659684410777736],[-123.18509492108124,50.65639018700938],[-123.18263115698309,50.65434956198502],[-123.17522121193059,50.651247510362815],[-123.17416955471941,50.647255047234744],[-123.17337810969572,50.641830149454385],[-123.17276955553314,50.63777637006099],[-123.17184775714294,50.6355525868535],[-123.16766586153591,50.63272507293829],[-123.16164145978915,50.63218515308167],[-123.15213777609524,50.63361202039032],[-123.14300040791153,50.63572402997191],[-123.14335854912896,50.635434836737545],[-123.14456590658975,50.63091545810623],[-123.14287185332776,50.62572322841341],[-123.13841924939769,50.621632236871555],[-123.13291114067295,50.620125109495106],[-123.12426477546641,50.61857154182437],[-123.11580253731435,50.61724457742275],[-123.10473497805145,50.61485125412139],[-123.09932584593572,50.61293533011162],[-123.096430924484,50.61175061294383],[-123.09388690063317,50.60907964723677],[-123.09457049956067,50.60616415469118],[-123.09449703781921,50.600732732831446],[-123.09012905981426,50.5965310194703],[-123.08424668026419,50.593012667162085],[-123.08046549623961,50.59178007108451],[-123.07135721009446,50.587653676440674],[-123.06357338159289,50.58340856864811],[-123.05916253749321,50.58166180656239],[-123.05114518074993,50.57907076766654],[-123.04476688266303,50.57887680106001],[-123.03957704462454,50.580391041644916],[-123.03764072678297,50.58274027186443],[-123.03836139792016,50.59091032663689],[-123.03994431917208,50.59673004506638],[-123.03758789239203,50.60222519161003],[-123.03588027388163,50.60194763872653],[-123.03020940388988,50.60020387535601],[-123.02362801686641,50.59811738837198],[-123.01768316961945,50.596892758352695],[-123.00543292537525,50.60072191049088],[-122.996680009038,50.60447668491762],[-122.99628341118579,50.60173028049362],[-122.99439945460189,50.593511590495716],[-122.99496520983027,50.57911635114277],[-122.99374716948668,50.57449081577109],[-122.98877184225735,50.570455409225346],[-122.9848916948135,50.567387971217],[-122.98155408339775,50.566144771988306],[-122.97607554376931,50.566683284752266],[-122.97221912511074,50.56601186179204],[-122.96546752474391,50.564044590135005],[-122.96148923933727,50.56057735820477],[-122.95821722165685,50.556706635029244],[-122.95324941690635,50.552843280239124],[-122.94747697978774,50.54898005328519],[-122.94594149480781,50.54870126298518],[-122.94300326097968,50.55076803397412],[-122.94307419151308,50.5582561991438],[-122.94267780855716,50.56242731982886],[-122.93982911010747,50.56586442401895],[-122.93949722929159,50.56866595259481],[-122.94047408177053,50.57654701519802],[-122.9418677056177,50.582254907194475],[-122.94361853653469,50.58687381923502],[-122.94407125410355,50.58687164120145],[-122.93818137648009,50.5904987767033],[-122.93578769448874,50.59324685535736],[-122.93339519340864,50.596803065251535],[-122.92516887630013,50.59980874969844],[-122.91117027645004,50.601972110063926],[-122.90248024090872,50.60366224547367],[-122.9030267051785,50.60394496646859],[-122.89801617804825,50.60704936837301],[-122.89472785145342,50.61020384997123],[-122.8833418596509,50.61298573288173],[-122.8741128578004,50.61484860228239],[-122.86165021954565,50.61699954250603],[-122.85745435302111,50.62033253634282],[-122.85772224594147,50.621359587287714],[-122.85623119625531,50.625475822306775],[-122.84826588245788,50.62864299299298],[-122.84198618845097,50.63117738449877],[-122.83554450277512,50.63519728697983],[-122.83333644071872,50.63920461781419],[-122.83254433054579,50.64240577837038],[-122.82879372087919,50.64618705107328],[-122.82539014981342,50.64785482984424],[-122.82467178756544,50.64739824387387],[-122.81748174686219,50.64633211444683],[-122.80130290633224,50.64540853604655],[-122.79240700124754,50.64543435601106],[-122.7856825394796,50.64836427600618],[-122.78092699685547,50.65009514815404],[-122.77886212433681,50.65084198192553],[-122.7740324111164,50.65359780040971],[-122.7670217151622,50.65515601010034],[-122.75993193112103,50.65642878853964],[-122.75237105599892,50.65559048315319],[-122.74346860761375,50.65235361755662],[-122.73850506267814,50.6504818809631],[-122.73284840318885,50.65054997554238],[-122.72729415030585,50.652905475015906],[-122.72154355440443,50.65309108966114],[-122.7164059735269,50.65264137226723],[-122.71028379240467,50.64997038276438],[-122.7074794487908,50.64552268079104],[-122.70413769571283,50.642616417578985],[-122.69318083610078,50.64177969785346],[-122.68770510032657,50.64401532919584],[-122.67969084377775,50.64168814497925],[-122.67511967306154,50.64106955750187],[-122.66749607570615,50.64570870222914],[-122.66031703557042,50.649491153421934],[-122.6582458503453,50.650294068885614],[-122.65151806760592,50.6504737393106],[-122.64136038528923,50.65048727714497],[-122.63686545815222,50.65243811049651],[-122.62995079774129,50.656045110804804],[-122.62645071836447,50.6566204411642],[-122.62446920257473,50.65565212590124],[-122.62231229350184,50.65268477365972],[-122.62104328784031,50.64902819155884],[-122.62156953701398,50.646175287477746],[-122.62407477335121,50.64337336729484],[-122.62928805249446,50.64033859831564],[-122.63521516160334,50.63816266415012],[-122.63440235824874,50.6380481757495],[-122.62622818336949,50.637143257686866],[-122.61740607665271,50.63544349366414],[-122.60986801856576,50.633624712198504],[-122.60725185253746,50.632827815785504],[-122.60285130936958,50.629974809637325],[-122.60202973064047,50.62454962441113],[-122.60389337759133,50.61843625099538],[-122.60685469333708,50.614837422591386],[-122.61284669017056,50.608202632989716],[-122.6136441189922,50.60362881701047],[-122.60959830149523,50.60060794203594],[-122.60708033661939,50.5994727321826],[-122.60572841704658,50.59770017701267],[-122.60043422524136,50.59473694765061],[-122.59396932537332,50.59360387186383],[-122.58668982574379,50.59332796989687],[-122.58588238406904,50.593154795715],[-122.57618458568852,50.59007930525544],[-122.5712437311646,50.5880838926155],[-122.57049473394582,50.587517221461624],[-122.56989287317322,50.58706187873278],[-122.57024849249864,50.586410081491856],[-122.57002389494656,50.58631771168352],[-122.56985534280787,50.58627878648618],[-122.56958790558639,50.586214883952834],[-122.56935113277925,50.58611988870501],[-122.56919823688564,50.58596845904691],[-122.56913572857528,50.58579114280895],[-122.56902456383759,50.585625817368715],[-122.56881798862963,50.58550589348578],[-122.56854493237469,50.58546936442309],[-122.56825630907707,50.58545146736086],[-122.56797706304317,50.58542654646229],[-122.56770890563791,50.585372177835595],[-122.56744921725257,50.585299523592795],[-122.56718953039045,50.58522685976468],[-122.56695857370639,50.58512529273451],[-122.56675045595425,50.58500251087597],[-122.56655894391753,50.58487068011751],[-122.56635837319459,50.58478803811809],[-122.5661410532824,50.58478582759297],[-122.56587041026246,50.58474092955428],[-122.56559431227893,50.584721163460934],[-122.56537299533522,50.58460921421939],[-122.56513645436038,50.584511401222386],[-122.56487483973393,50.584440929725695],[-122.5646048854282,50.584387055424614],[-122.56432706138101,50.58434362267103],[-122.5640486883739,50.58433052813017],[-122.56377597199105,50.584382258897996],[-122.5634997132518,50.584387774616985],[-122.56283406250982,50.58432898436299],[-122.56094089855964,50.58348909102284],[-122.55992992047253,50.58272086083368],[-122.55908623140253,50.58207752772149],[-122.55687596611075,50.58108608664871],[-122.55550316856188,50.57991871624142],[-122.55402266830552,50.579073479837135],[-122.55283776012278,50.57877817458435],[-122.55181880970078,50.57883203949453],[-122.55077194080073,50.579019388897514],[-122.55060717676433,50.579023831737466],[-122.55041685852983,50.57901568109189],[-122.5502893915346,50.57899486333912],[-122.55014286698487,50.57896895713367],[-122.54998085582466,50.57896055935499],[-122.54951555808937,50.57898772610229],[-122.54922466023399,50.57902311673004],[-122.54903485867064,50.5790312777499],[-122.5487302808198,50.57901452438702],[-122.54833454421856,50.579056769596654],[-122.54807070448562,50.57908512670461],[-122.54794771125661,50.57909817442281],[-122.54766761165934,50.579084984102465],[-122.54754853626173,50.57902394840475],[-122.54747368411489,50.57898564713525],[-122.54722318736502,50.57888623580873],[-122.54689529842027,50.57880466795047],[-122.54652989981902,50.57870506081973],[-122.54623982454346,50.57866064297348],[-122.54590199900713,50.5786164235383],[-122.54567894678405,50.578597129385294],[-122.54547546275641,50.578645334695075],[-122.54529232674675,50.57868181316652],[-122.54511723659573,50.57870560714068],[-122.54503279088532,50.57870016892834],[-122.54501166826147,50.57869895517825],[-122.54498245936345,50.57868792908527],[-122.54491552459619,50.57866167272305],[-122.54483503662759,50.5786507447149],[-122.54458656196702,50.578617166895356],[-122.54439319550018,50.578579678981114],[-122.54422022213849,50.57852989018115],[-122.54413431981754,50.5784743784903],[-122.54408545371858,50.578443070392716],[-122.54397967668775,50.57839312030128],[-122.54373021854627,50.578326347122534],[-122.54354016036869,50.57833786369437],[-122.54348126667952,50.57834502810632],[-122.5433952270002,50.57836034343164],[-122.54331568173407,50.57838317306769],[-122.54314351944953,50.578391872166236],[-122.54285353269064,50.57836936773536],[-122.54267784911228,50.578331868688664],[-122.54262132636875,50.578308183141054],[-122.54255546693445,50.57829096223989],[-122.54250496481104,50.57828095557142],[-122.54246143084649,50.578272298791674],[-122.54216624423016,50.57822545358409],[-122.54136353570956,50.57811111804273],[-122.5404168085944,50.57798441802704],[-122.53988868667108,50.57790896832365],[-122.53973692390385,50.57788231848478],[-122.53952412001229,50.57784478382764],[-122.53911523994502,50.577805078663374],[-122.53877349555711,50.57783492033602],[-122.53859405228287,50.577892298228626],[-122.53846713276018,50.57795636536905],[-122.53829472607123,50.5780831119768],[-122.53807783102475,50.57823657269729],[-122.53782996310473,50.5783789590676],[-122.5376055904786,50.57849171063191],[-122.5374972116936,50.57854455298388],[-122.53737085548575,50.57857828881152],[-122.53712254683654,50.578588547811414],[-122.53685043473729,50.57849462764054],[-122.53659567262707,50.578359080446766],[-122.53640313402971,50.578310927621615],[-122.53628327874152,50.578329115165296],[-122.53616793014008,50.578380614908184],[-122.53604401437958,50.578451527861915],[-122.53596841804628,50.578491897830474],[-122.53593726840185,50.57850610158563],[-122.53590624795628,50.57851862737103],[-122.53588791933176,50.578527051129164],[-122.53587023156197,50.578550111022714],[-122.53573116817834,50.57863404375018],[-122.53538374267094,50.57878343407486],[-122.53506299418737,50.57890780396341],[-122.53496102595405,50.578946227453685],[-122.53474589594937,50.57891591487636],[-122.53424371136565,50.57884798349611],[-122.53367226835294,50.57889876070962],[-122.53313741576244,50.579117075279825],[-122.53285088880563,50.57927904160814],[-122.53279963544377,50.5793246655801],[-122.53278625145673,50.579337740266375],[-122.53279089406557,50.57934632189835],[-122.53281566539573,50.57936901383217],[-122.53279443158259,50.57955274088095],[-122.53270114977998,50.579937166751066],[-122.53242346921145,50.58023657506373],[-122.53193690299679,50.58035575810571],[-122.5316357795672,50.580408773765136],[-122.53158143796897,50.58042562618479],[-122.53153402157648,50.58044438549599],[-122.53148806986657,50.580673438706846],[-122.53119928006308,50.581070880345756],[-122.53053874219424,50.581244788051826],[-122.53006313874445,50.581244569350304],[-122.52989913293595,50.58126193970417],[-122.52973172942596,50.58127751284138],[-122.52954953244046,50.58127857466105],[-122.52943811652466,50.581255985111795],[-122.5294074055521,50.58124153506662],[-122.52938718058085,50.581251589615135],[-122.52933003472064,50.5812818453585],[-122.52927692510028,50.58132853418727],[-122.52926635415248,50.58139678805662],[-122.5292406336508,50.581478061110865],[-122.5291743540436,50.581535024534055],[-122.52909745887865,50.58156916124176],[-122.5290604622989,50.58165907699111],[-122.52906061561858,50.58179456713305],[-122.5289497087353,50.581879927979244],[-122.52868762647964,50.581953825350666],[-122.52845083337995,50.582043685204404],[-122.5283224589355,50.58212625168578],[-122.52822526054246,50.58224014773201],[-122.5281567922882,50.58237124754157],[-122.52799222844709,50.58255612182202],[-122.52771314876169,50.58280431409873],[-122.52757586268876,50.58297936264991],[-122.52756849147,50.58309774401752],[-122.52754922612941,50.58325567200867],[-122.52743125482327,50.58343244757709],[-122.52718840030325,50.583577774103375],[-122.52698158285436,50.58366856679074],[-122.52672093610519,50.58376948833196],[-122.52637327929544,50.58389804910226],[-122.52621315597395,50.58395657778729],[-122.52621924735642,50.5839921796347],[-122.52625102552962,50.584107295082084],[-122.52632326560372,50.584270886439725],[-122.52639392694243,50.58440913568335],[-122.526456170376,50.58451901398802],[-122.52630471928568,50.58469417630064],[-122.5256305668915,50.58492891124139],[-122.52485468387022,50.585107054697666],[-122.52451740468727,50.58519264326107],[-122.52442990251028,50.58524949861087],[-122.52436371114356,50.58528228462499],[-122.52430471864011,50.585290560444506],[-122.52410431034423,50.58520672076835],[-122.52379114575504,50.58502603867436],[-122.52364258908706,50.5849348237233],[-122.52358956886079,50.58495734431153],[-122.52341983854538,50.58502567882901],[-122.52317538500408,50.585145654266746],[-122.52298557145708,50.585267894622014],[-122.5229704512655,50.58537198402402],[-122.52306056513048,50.58548723268297],[-122.52309373747873,50.5855613503691],[-122.52307969884603,50.58558283139274],[-122.52306224799928,50.58562557688058],[-122.5229019598246,50.585800458668025],[-122.52258882445452,50.586076806583236],[-122.52240703086466,50.58623246865472],[-122.52236118158541,50.586276565961874],[-122.5222933393279,50.586330661301716],[-122.52221909084062,50.58637612842453],[-122.52214747429174,50.5864104255684],[-122.52205752249976,50.58645315303756],[-122.52196770099196,50.586494193530676],[-122.52193301327743,50.586508282930126],[-122.52193541377862,50.58652297415752],[-122.52190383523316,50.586588321876306],[-122.52182750500769,50.58672929098603],[-122.52178722259359,50.586884312244365],[-122.5217807029536,50.58699147657885],[-122.5217601712311,50.58707403442047],[-122.52175599292723,50.587150924265096],[-122.52176828475085,50.58724350286094],[-122.52174442737659,50.58734619447561],[-122.52169551101456,50.58740706042274],[-122.52166709745681,50.58743147378695],[-122.52165661487669,50.587475552211004],[-122.52164335562303,50.587555531066144],[-122.52163125387264,50.58764340735015],[-122.5216193109629,50.587752093010586],[-122.5215835524287,50.58789433031162],[-122.52152360258448,50.58805210936596],[-122.52146538740963,50.58818745621507],[-122.52143302621556,50.58826289813232],[-122.521421646643,50.58829570526236],[-122.52142073536048,50.5883074866219],[-122.52141800289814,50.588342812753716],[-122.52141424365004,50.58843713804448],[-122.52140643557485,50.58853808264766],[-122.5214025895293,50.588633529522255],[-122.52142118580798,50.5887589103662],[-122.52148768886829,50.58892795546986],[-122.52157393124229,50.58911616438074],[-122.52165454942445,50.58928564158278],[-122.52171891380357,50.589436630442556],[-122.52175176981466,50.58960630525419],[-122.52175149727945,50.58976988041405],[-122.52173206358401,50.5898839532213],[-122.52169693942886,50.58997224285076],[-122.52164213481062,50.59008633414165],[-122.5215945463001,50.590221446362996],[-122.52155334818727,50.59031966488473],[-122.52150503563878,50.590372679299605],[-122.52144075763098,50.59042632784951],[-122.52134414598521,50.59050931299108],[-122.52121421561634,50.59061150298277],[-122.52111751638743,50.590695609512636],[-122.52108677256882,50.5907272534049],[-122.52106688855329,50.59073281991279],[-122.5210394707571,50.5907443300936],[-122.52101747611772,50.59075431886918],[-122.5209960739346,50.59077950893561],[-122.52094401450647,50.59083522124271],[-122.52089669823859,50.59087534141149],[-122.52086854238155,50.590896389660486],[-122.52083581743011,50.59093077783007],[-122.52079495045297,50.590978969839725],[-122.52070001319106,50.59106314011032],[-122.52038701710522,50.59124561008809],[-122.51966687605264,50.59159298648292],[-122.51885573210656,50.591973489387726],[-122.51847877415008,50.5921595746361],[-122.51843434745852,50.59218516810665],[-122.51841829530292,50.592186914457876],[-122.5183682446412,50.59219377620407],[-122.51828621954644,50.59220245268178],[-122.51818341355595,50.5922054238817],[-122.51813211963326,50.592205500717654],[-122.5180598273995,50.592202680773575],[-122.51789446352778,50.592191317527735],[-122.51771783516531,50.592165552022294],[-122.51743209876035,50.592109954281895],[-122.51703823839846,50.592034664101526],[-122.51677862082595,50.59198437050314],[-122.51666210888068,50.591958803256816],[-122.51654990824701,50.59192324300088],[-122.5163793299919,50.59186505948287],[-122.51622036305294,50.59181680045247],[-122.51615109613026,50.591797766848494],[-122.51610080161477,50.59178494885671],[-122.51601071130756,50.591760765864464],[-122.51594492996809,50.59174239893075],[-122.51592578386028,50.59173842644414],[-122.5158580376026,50.59169976917639],[-122.51573576492116,50.59161161629523],[-122.51560854760773,50.59151881112833],[-122.51551779760632,50.59145750449142],[-122.51545479804736,50.59140324612118],[-122.51537053198793,50.591303915521046],[-122.5152635222716,50.59117857979718],[-122.51517198319787,50.59108182750737],[-122.51509815572715,50.591007558626046],[-122.51504974879893,50.59094757775595],[-122.51501987922204,50.59089942069917],[-122.51498441248059,50.59085502793313],[-122.51495147499043,50.59082363957077],[-122.51492781901005,50.59080940674021],[-122.51486005762872,50.590793792366405],[-122.51468707001062,50.59074395841739],[-122.51448055477185,50.59064754332978],[-122.51431278368088,50.59053042185429],[-122.51416720942632,50.59042354775934],[-122.51407733302428,50.590351023882114],[-122.51405269586094,50.59032664119694],[-122.51404350177371,50.59030836397266],[-122.51401885784297,50.59023844150134],[-122.51400557414128,50.59011322547251],[-122.51402136157567,50.58995519058747],[-122.51405228713077,50.589807191222974],[-122.51406786414611,50.589697495594564],[-122.51405471807341,50.5896161324183],[-122.51401879396334,50.58955485103571],[-122.51394438756662,50.58951091971608],[-122.51383219448718,50.5894753655894],[-122.51367258693506,50.58943551029249],[-122.51346913653197,50.58939090787555],[-122.51344834510694,50.58929412209889],[-122.51356891468618,50.589130376051855],[-122.51355826623882,50.58899399908545],[-122.51345383883064,50.588881109438354],[-122.51337380583897,50.58877291479219],[-122.51333280797724,50.5887086677551],[-122.51332374529812,50.588688703549025],[-122.51328525051896,50.58861498265886],[-122.51322279160696,50.588485409757496],[-122.51317691177259,50.58839290147804],[-122.5131444304122,50.58833286087343],[-122.5130958988674,50.58827455687445],[-122.51299246217545,50.58821734731076],[-122.51286049523333,50.58816318303894],[-122.51277747035651,50.5881392184997],[-122.51274619506951,50.588132049895705],[-122.5127295106655,50.58811915933419],[-122.51271678934974,50.58810077135995],[-122.51270772637052,50.58808081606198],[-122.51266032631926,50.58800793104809],[-122.51256901034357,50.587862845797005],[-122.51252654913411,50.58774908206331],[-122.51251449925738,50.58769923393581],[-122.51247182648788,50.58763380959813],[-122.51240671807598,50.58753844940325],[-122.51230734761462,50.587406036577825],[-122.51215618627997,50.58725738369137],[-122.51201624906089,50.587169229515965],[-122.51191654266161,50.5871323736197],[-122.51180281087582,50.58709395354791],[-122.51163084098361,50.58703122070113],[-122.51147045611098,50.586955925554165],[-122.51135308604641,50.58689602864652],[-122.51124754265467,50.58684324845307],[-122.51119150396266,50.58681338287408],[-122.51117473348454,50.58680161366012],[-122.51112631701888,50.586764674435514],[-122.511031029804,50.58669366870281],[-122.51089994053312,50.58662827702369],[-122.51075759421065,50.586594022349985],[-122.5106198009059,50.58656946260216],[-122.5105122575841,50.586542478512456],[-122.51041819403983,50.58650130083597],[-122.51024696845016,50.58642902771259],[-122.5100017402092,50.58635331747235],[-122.5097584947809,50.586274853540054],[-122.50954486744065,50.586179329006264],[-122.5093150604429,50.586087227017764],[-122.50905095374723,50.58600417619614],[-122.50878094720528,50.58592880089385],[-122.5084981142116,50.58585921067706],[-122.50820765967391,50.5857966931525],[-122.50791646604911,50.585743703978245],[-122.50763938517147,50.58569115705281],[-122.50744830571215,50.58564693106858],[-122.50739126972671,50.58562995744381],[-122.50729912720783,50.585609641928386],[-122.50706924038309,50.58556419687815],[-122.50683406202263,50.58551858518278],[-122.50675039221177,50.58550302358181],[-122.50672674206297,50.58539771780451],[-122.50666080066557,50.58515391509943],[-122.50659185474335,50.584903271897005],[-122.50653824016501,50.584728440522554],[-122.50647626334239,50.584570211510574],[-122.50643669479211,50.58446497228225],[-122.50639869442735,50.584385075345416],[-122.50634157575503,50.58418708027469],[-122.50628391504891,50.58383672487761],[-122.50625445547512,50.58351030840359],[-122.50624087077031,50.58327545276857],[-122.50623029056966,50.58304744644962],[-122.50622066807084,50.58289816486452],[-122.50621161010949,50.582832668726674],[-122.50620963103259,50.58265327899896],[-122.50622128965531,50.58216174217135],[-122.50623924433644,50.581429802915814],[-122.50625554247515,50.58081023616772],[-122.50621822400562,50.5805167351733],[-122.50609776488587,50.58038309456901],[-122.5059920486897,50.58026452434445],[-122.50594806428522,50.58019343348556],[-122.5058980045167,50.580132270842974],[-122.50582980625911,50.58005423991234],[-122.50578915360296,50.5800085468395],[-122.50574220733921,50.579975590483954],[-122.5056479664876,50.57991416413359],[-122.50553713375253,50.57983872432456],[-122.505409034428,50.579735200001636],[-122.50531536259548,50.57962094703552],[-122.50527040243844,50.57949416561366],[-122.50524166421684,50.57936340543749],[-122.5052342850036,50.57929908596149],[-122.50523417694178,50.579277720021764],[-122.50520310561548,50.579245262144944],[-122.50516511039419,50.57921089569701],[-122.50512798597491,50.579165322141385],[-122.50507474955216,50.57909956179174],[-122.50502477933294,50.57903727706874],[-122.50497683443577,50.578971682917455],[-122.50492875930405,50.57890776666423],[-122.50489873424425,50.578861849405264],[-122.50487837623535,50.57882804602001],[-122.50486548645213,50.57881190015595],[-122.50476987803422,50.578745365836724],[-122.50459035341318,50.57862111042574],[-122.50448451209773,50.578549756865016],[-122.50447453986808,50.57854157305321],[-122.50445344181435,50.57851729875036],[-122.50440140396934,50.57845888838707],[-122.50428021520736,50.578334774657904],[-122.50416825864878,50.57822837379586],[-122.50412175126442,50.57818980864986],[-122.50406770935258,50.57815719507393],[-122.50395579429977,50.5780957691345],[-122.50382186639644,50.57802185000232],[-122.50366618739699,50.57793207277334],[-122.50350909474827,50.57783774447273],[-122.50341473029401,50.57777800297008],[-122.50335261235941,50.577735573662146],[-122.50328413728347,50.57768394967522],[-122.50322258667647,50.57763422535625],[-122.50315075891547,50.57758024717205],[-122.50305374003851,50.577509178374974],[-122.50296149003279,50.57744499651184],[-122.50283916989983,50.57738100244664],[-122.50259224448247,50.57725967911177],[-122.50234893493754,50.577137344526065],[-122.5022656549201,50.57709424904444],[-122.50222001803137,50.57708999851004],[-122.5020981314404,50.57706592709988],[-122.50196873495106,50.57702475411455],[-122.5018014536829,50.576970588262846],[-122.50153297146268,50.576899180140394],[-122.5012940610287,50.57681126961987],[-122.50118614096603,50.576721299782946],[-122.50108143595206,50.57652181119353],[-122.50066162269707,50.57605492320187],[-122.49999644059555,50.575560640214185],[-122.49961264136384,50.57533550124955],[-122.49955362118577,50.57529878874303],[-122.49953067643929,50.57527557951384],[-122.49947190019871,50.57521301448049],[-122.49940482987203,50.57514344222699],[-122.49934265808491,50.57507907920179],[-122.49926496269399,50.57500973908985],[-122.49916954519576,50.57494095643879],[-122.49908370528642,50.57488540975329],[-122.49900637758866,50.574834070682336],[-122.49894117717923,50.574785919694115],[-122.49890993890882,50.574755703099854],[-122.49889400574496,50.57473327210411],[-122.49887326164985,50.574704510200355],[-122.49884598707146,50.57466879657831],[-122.49880578213173,50.57461750159069],[-122.49875935268076,50.57455532475172],[-122.4987012591587,50.574461298714205],[-122.4986211823423,50.57433172550352],[-122.4985533810941,50.57422615015882],[-122.4984951753785,50.57415628958975],[-122.49844179749002,50.57411525657464],[-122.49839385842732,50.5740951998669],[-122.49824283154888,50.57405952047296],[-122.49795216213117,50.57400089644371],[-122.4977225619638,50.57395263192217],[-122.49765394158825,50.573925735145394],[-122.49760410891197,50.57390730048276],[-122.49750842442317,50.57388742182088],[-122.49745970079358,50.57387745020323],[-122.49740957225305,50.573817404883755],[-122.49717678921022,50.57369651332745],[-122.49685795048951,50.57363644140291],[-122.49672348610639,50.57363782769355],[-122.49668534405025,50.573628189035595],[-122.49666139682549,50.5736178821415],[-122.49663466535142,50.57359792598804],[-122.49659099747352,50.573568441443896],[-122.49654552281079,50.57353945764569],[-122.49651006119689,50.57351810208651],[-122.49648319847702,50.573499832792116],[-122.49646806964503,50.5734897946526],[-122.49643582906403,50.573472480290285],[-122.49627936746094,50.57341583073068],[-122.49602748566019,50.57333593617667],[-122.49590992582132,50.57330187453662],[-122.4958630973827,50.57329027985155],[-122.49579426106395,50.57326618143884],[-122.49571858886591,50.57323906118578],[-122.4956620091645,50.573216482233484],[-122.49558967329521,50.57316922852606],[-122.4954684957651,50.57306814844399],[-122.49535591746104,50.57297015458338],[-122.49529914757056,50.57292733093325],[-122.49523928839712,50.57287877909409],[-122.49516693762503,50.57280903736834],[-122.49500604341458,50.57265049594456],[-122.49338428151913,50.57170662821985],[-122.49206558483435,50.570980301625454],[-122.48974777587487,50.570032406546304],[-122.48735828963673,50.569233985215554],[-122.48504188556065,50.56824779977255],[-122.48164760491943,50.56730335385317],[-122.47971960258452,50.56670994472576],[-122.47874301753198,50.56635969903919],[-122.47860130236664,50.56636363962801],[-122.45703986356538,50.56275302960728],[-122.45704062960972,50.56263106055453],[-122.45703985689285,50.56248373883074],[-122.45704558733398,50.56122121314824],[-122.45704553997751,50.56092999013015],[-122.45704653024319,50.560782724281694],[-122.45668911906452,50.56056331870001],[-122.45569011631545,50.560142430300445],[-122.45448042555289,50.559681638737395],[-122.45337623399656,50.55918316196883],[-122.45213319096663,50.55887701468014],[-122.45077904036569,50.5584784769748],[-122.45017291776486,50.5583208217369],[-122.44906330178124,50.558228040412],[-122.44803317420661,50.558068640285285],[-122.44739522307859,50.55797854200842],[-122.44510671190753,50.55808866808371],[-122.44442220196449,50.55816291147469],[-122.44282564025198,50.55819392107282],[-122.44190764992702,50.558136434037095],[-122.44089047779224,50.5579475797799],[-122.43997952492168,50.557845891574615],[-122.43951733164637,50.55779061065672],[-122.43901938321102,50.55751716819174],[-122.43852227685844,50.55716616469744],[-122.43805255290553,50.556960520471435],[-122.43759706712342,50.556909943777065],[-122.43686823456838,50.55689670598005],[-122.4358349892616,50.55691137704347],[-122.4348320526002,50.55694499242159],[-122.43250173862549,50.556735303618765],[-122.43087691016521,50.556543719790604],[-122.42949799817124,50.556304355322254],[-122.42825464535507,50.55602715787041],[-122.42774696559196,50.55585510602463],[-122.42717338366813,50.555600540784965],[-122.42623518495621,50.555286466888646],[-122.4255528089697,50.55508911478641],[-122.42491817848749,50.55482470285532],[-122.42407164656812,50.554491626304035],[-122.42338980263273,50.55426559935903],[-122.42288230298745,50.554180678427144],[-122.42186499105205,50.554039990540026],[-122.41966890931583,50.55354480544753],[-122.41833600083231,50.55315103792264],[-122.41759476989786,50.55282804842909],[-122.41721813795418,50.552564590437875],[-122.41688818557151,50.55229195787125],[-122.41647824256911,50.552202846658496],[-122.416158545716,50.55220096851133],[-122.41571653092109,50.55231490400276],[-122.4153377296791,50.55232292891337],[-122.41513942986131,50.552283366943705],[-122.4149297421181,50.55209837385267],[-122.41479426197452,50.55191353387368],[-122.4146140698664,50.55175760270793],[-122.41439035890009,50.551504697723054],[-122.41407408982451,50.55119369884926],[-122.41366899821774,50.55075558509747],[-122.4135198242573,50.550609657112666],[-122.41326355130782,50.55036637629933],[-122.4131476694436,50.55020183946046],[-122.41266298173264,50.54952107590744],[-122.41232420791219,50.54887201522688],[-122.41170157903736,50.547661111482995],[-122.41119793813851,50.54695273881306],[-122.41010099308403,50.546173483845386],[-122.4090650869492,50.545449029276604],[-122.40784157688245,50.54457400994607],[-122.40700141005715,50.54363378048492],[-122.40531131437422,50.5426070231511],[-122.4041456178757,50.5420717259192],[-122.4025067490573,50.541665598307354],[-122.40244837358654,50.54166652422446],[-122.40217904976045,50.541610010258324],[-122.40190439498768,50.541553889746055],[-122.40162915783098,50.54150506328046],[-122.4013560253301,50.54149621876858],[-122.40108160659867,50.54152556421476],[-122.40080724596046,50.54157627598047],[-122.40053731959702,50.54163780876935],[-122.40027254406913,50.54170119898854],[-122.40002020543464,50.54178579885781],[-122.39999852144882,50.54179184328406],[-122.39976646319164,50.54186584578944],[-122.39949629572193,50.541908261161105],[-122.39921273565203,50.54191931424784],[-122.39892940009112,50.54192755819278],[-122.39864805053296,50.54193305907645],[-122.39836493874775,50.5419385021377],[-122.3980831848779,50.54194905315517],[-122.39780940197966,50.54199246279391],[-122.39754783036862,50.542059890726655],[-122.39730203996731,50.542150877044605],[-122.39706262438577,50.54225049863227],[-122.39680424864012,50.54230003679073],[-122.39651750903924,50.54228455019416],[-122.39626913334654,50.54236364792078],[-122.39602519067067,50.542453566957334],[-122.39576994477831,50.54253018284873],[-122.39549675015004,50.5425882332929],[-122.39522334286016,50.54258273844072],[-122.39495000392033,50.542532265828726],[-122.39467458939781,50.54248565637729],[-122.39439827643156,50.542450270900254],[-122.39412205445434,50.54241375419412],[-122.39384610173545,50.54237388106823],[-122.39357204680685,50.542332377603955],[-122.39329812752746,50.54228918662417],[-122.39302836142389,50.54223826735623],[-122.39276297437357,50.54217680245082],[-122.39249379410296,50.54211858720265],[-122.39223012606014,50.5420577345183],[-122.39200692426665,50.54195490679877],[-122.39189660787872,50.54178827464283],[-122.39184362421264,50.54161170123894],[-122.39179963211686,50.541433161738375],[-122.39172871374798,50.541259937054605],[-122.39162553845313,50.54109241178418],[-122.39150984935881,50.54092672898451],[-122.39139411580523,50.54076161130134],[-122.39129266040031,50.5405946991399],[-122.39125188063728,50.540420203624635],[-122.39126816176316,50.54023913193992],[-122.39117018684145,50.54007289927807],[-122.39105075349005,50.53990990078202],[-122.3909223754612,50.53974830282144],[-122.39079585032339,50.53958564034213],[-122.39068184028247,50.53942113517722],[-122.390612781338,50.539246845019335],[-122.39059902007652,50.53906592176293],[-122.3904583208041,50.53892584583143],[-122.39019697506235,50.5388583248769],[-122.38993174704065,50.53879516612097],[-122.38969533311938,50.538703148341064],[-122.38949902522116,50.5385736426614],[-122.38929531133608,50.53844838490319],[-122.38909521182757,50.538322128671226],[-122.38889890803367,50.53819261289951],[-122.38870635390349,50.538060411850395],[-122.38851185898015,50.53793039631943],[-122.38830620809964,50.53780733149684],[-122.38808953730349,50.53768952150986],[-122.38785159556664,50.537594642973346],[-122.3875960426675,50.53752111450855],[-122.38733087079981,50.53745739314827],[-122.38706375771184,50.53739585699977],[-122.38679858733396,50.537332134360604],[-122.38654123103414,50.537259102452495],[-122.386293630212,50.53717458446378],[-122.3860500043579,50.53708457268171],[-122.38581026350472,50.5369901886996],[-122.38557070373213,50.536893561051684],[-122.38533484895602,50.536794804373635],[-122.38509718789223,50.536696555132835],[-122.38486124512976,50.5365989189957],[-122.38462168947217,50.53650228925738],[-122.3843838520931,50.53640627262241],[-122.38414615047591,50.536308577600856],[-122.38391021180539,50.53621093939981],[-122.38367440892262,50.53611162281984],[-122.38344045979697,50.53601123253451],[-122.38321405448843,50.53590490700966],[-122.3830325933825,50.535766875734],[-122.3828916523662,50.535608230913205],[-122.38272451415241,50.53546784952727],[-122.38244997079163,50.535433047721924],[-122.38217128234571,50.53544983738239],[-122.38189015621654,50.53547497624605],[-122.38160880407828,50.53550292280407],[-122.3813277667241,50.535526947649146],[-122.38104709038365,50.53554647654165],[-122.38076763403525,50.53557280049015],[-122.38052833336195,50.53556106520391],[-122.38031196347791,50.53543988401324],[-122.38012324056548,50.5353044177536],[-122.37999130093161,50.53514381303485],[-122.37980605922228,50.5350090172902],[-122.37958782580264,50.53477925444954],[-122.37945765146254,50.5346187064034],[-122.37932747804994,50.534458158173486],[-122.3792188083517,50.53429381246876],[-122.37916217913124,50.53411935971679],[-122.37914851086292,50.53393786864261],[-122.37912942233534,50.533757883144176],[-122.37911205031027,50.53357852028974],[-122.37909648495878,50.533398658512034],[-122.37907382782461,50.53321912332246],[-122.37905324869186,50.533035715528285],[-122.37894200988876,50.532881405973946],[-122.37873844055672,50.532755015412015],[-122.37864798146364,50.53258394834302],[-122.37855250766518,50.53240935315227],[-122.3783328636374,50.53230716793155],[-122.37808164622771,50.53222420313166],[-122.37782089994688,50.53214991415313],[-122.37755767023413,50.53208454864143],[-122.3772836481262,50.53204356082063],[-122.37700321290788,50.53201642406973],[-122.37673379745789,50.531962099936145],[-122.37648235964072,50.531881930924115],[-122.37623110323888,50.53179951819848],[-122.3759816997526,50.531716040794706],[-122.37573234268756,50.53163199755259],[-122.37548312160916,50.53154627587659],[-122.37523579826369,50.53145893324501],[-122.37499231568516,50.531367775043464],[-122.37479820620202,50.53125573704301],[-122.37454284636036,50.53118049117669],[-122.37428748664891,50.53110525368959],[-122.37403208299455,50.531030571906726],[-122.37377311199265,50.530956330825475],[-122.37351405079518,50.53088321967454],[-122.37325485530081,50.53081178577836],[-122.37299380860101,50.53074141532548],[-122.37273258202605,50.53067328738821],[-122.37246941385528,50.53060734444378],[-122.3722060657386,50.530543644005206],[-122.37194082150428,50.53048156327162],[-122.37167363486164,50.53042167647198],[-122.37140631372417,50.53036346688958],[-122.37113885806261,50.5303069345237],[-122.37086945990106,50.53025259606843],[-122.3705971711193,50.53021221449559],[-122.37031309116712,50.53020855614923],[-122.3700306825131,50.53020607620325],[-122.36974877155366,50.53019742244392],[-122.3694670864045,50.530185968542895],[-122.3692015760288,50.53012725491645],[-122.3689600105242,50.53003445409768],[-122.36875083532408,50.52991235834115],[-122.36853402712606,50.529797317522075],[-122.36828257110777,50.52971768605355],[-122.36801950548872,50.52965061093548],[-122.36775192224344,50.52959575720731],[-122.36747024136224,50.529584298239335],[-122.36718851502188,50.52957340382589],[-122.36690669905363,50.52956362129011],[-122.36662497297876,50.5295527254486],[-122.36634541629341,50.529536834989834],[-122.36606337410267,50.52952985871143],[-122.36578128710336,50.52952343801286],[-122.36549974259749,50.529510296193486],[-122.36522127292918,50.52948094415202],[-122.36494293979065,50.529449904582016],[-122.3646585970845,50.52942767284842],[-122.36442174061818,50.52934232967083],[-122.36421655765545,50.52921472379558],[-122.36402411429164,50.529082478569386],[-122.36379593743024,50.52897717652178],[-122.36354106099698,50.52889630634184],[-122.36326874205024,50.528856463051355],[-122.36298756477967,50.52883882861228],[-122.36270236664039,50.52882724221063],[-122.36242100930241,50.5288118404889],[-122.36213928901167,50.52880093327207],[-122.36185905364506,50.52881537135662],[-122.36158256820673,50.52882711573583],[-122.3612907263157,50.5288321760397],[-122.36110202581929,50.52876302158234],[-122.36100658313256,50.52858896681071],[-122.36090359600028,50.52842085416899],[-122.36083643064433,50.528246600899614],[-122.36078358531027,50.52807000082264],[-122.3607361149872,50.52789246121785],[-122.36071701190828,50.527713592796],[-122.36071566004772,50.5275336235606],[-122.36070193173542,50.52735381559314],[-122.36068287397691,50.527174390752684],[-122.36066386205174,50.5269944006021],[-122.3606341448442,50.52681575098096],[-122.36058663147361,50.52663876733517],[-122.36053022031041,50.52646261663718],[-122.36045953631951,50.52628824729977],[-122.36038700074097,50.526114941729915],[-122.36037151268756,50.525935075695834],[-122.36034712745327,50.52575603364003],[-122.36036492633156,50.52557950722212],[-122.36042152295157,50.52540368519181],[-122.36046597021175,50.52522521597855],[-122.36050165555298,50.52504589288047],[-122.36052491914879,50.524867296288825],[-122.360514760962,50.52468703786572],[-122.3604459318826,50.524511604286744],[-122.36029747106166,50.52435998349529],[-122.36010144644158,50.52422873682992],[-122.35988843674862,50.52411099436208],[-122.3596699176665,50.52399587772175],[-122.3594626027499,50.523873256047096],[-122.35926274291303,50.52374581336215],[-122.35905913438125,50.523621063228966],[-122.35884233547851,50.523506567897215],[-122.35860448521127,50.52341218144436],[-122.35835344510868,50.52332804063685],[-122.3581119376516,50.52323522445218],[-122.35787820300013,50.523133657250966],[-122.35764821853684,50.523029405633025],[-122.35741828012986,50.52292459722961],[-122.35718640072685,50.522821964730824],[-122.35695063605776,50.52272371143236],[-122.35671130471496,50.52262589837416],[-122.35646447535802,50.52253346151074],[-122.35621095688258,50.52245823052072],[-122.35594302198326,50.522408399421565],[-122.35565918262772,50.522380527685556],[-122.35537334616747,50.52237733861526],[-122.35509784296103,50.52239921883532],[-122.35482282926104,50.52243686704191],[-122.35455043069952,50.52248583684337],[-122.35427762263672,50.52253985749593],[-122.35400829085057,50.52259455837321],[-122.35373891337314,50.522649814889476],[-122.353474365241,50.52271085203212],[-122.35320796422577,50.52277295227514],[-122.35294178989461,50.522832243484146],[-122.35267259134692,50.52288525427708],[-122.35240172164468,50.52293708501307],[-122.35212913501879,50.52298830094674],[-122.35185524138686,50.523033841583896],[-122.35157841468133,50.52307198018047],[-122.3513025870031,50.52309778092433],[-122.35102306478734,50.523103784584194],[-122.35073984912786,50.52308998216021],[-122.35045754248388,50.52306496341955],[-122.35017912243366,50.52303557347535],[-122.34990106633813,50.523001696596246],[-122.34962536325921,50.52296058228527],[-122.34935187586522,50.52291392635565],[-122.34908431024012,50.52285958354662],[-122.3488371766478,50.522771059717954],[-122.34858579462959,50.522691383024195],[-122.34832053748038,50.52263037588409],[-122.34804940627194,50.522576480020675],[-122.34777574166746,50.52253205433597],[-122.34749999755739,50.52249149999589],[-122.34723451601003,50.52243328965832],[-122.34697938826686,50.5223563018354],[-122.34673022731803,50.52227108001548],[-122.34648870433261,50.52217879475536],[-122.34625129674619,50.52207933022659],[-122.34600385488416,50.521994720980395],[-122.34573449157838,50.52194087737117],[-122.34546304872383,50.521890905091325],[-122.34520774505133,50.521816156265906],[-122.34496057964735,50.521728179999116],[-122.34471341520813,50.52164020317333],[-122.34445811419852,50.52156545260352],[-122.34417758188123,50.521540475835856],[-122.3438970498748,50.52151549835959],[-122.34361624502563,50.521493884842876],[-122.34333615492926,50.521485222006675],[-122.34305550370301,50.5215052206076],[-122.3427749433,50.521524096944276],[-122.34249526266952,50.52151038947692],[-122.3422151872129,50.52147979997986],[-122.34193732888622,50.52144366000863],[-122.34166662203165,50.5213847059901],[-122.34139752563229,50.5214146352095],[-122.34112939955101,50.52147609230124],[-122.34085383383125,50.521520426345745],[-122.34057219421311,50.52153083193259],[-122.34029360781805,50.521503660283926],[-122.34001714760569,50.52147205976034],[-122.33973924587987,50.52143647058529],[-122.33946319629825,50.52139982617925],[-122.33918723905587,50.52136205056097],[-122.33890947505076,50.52132478146412],[-122.33863758759995,50.52128040024398],[-122.3384226138306,50.52116591385554],[-122.33824324764832,50.52102617828099],[-122.33805642683242,50.520891261593775],[-122.33784340003535,50.5207745889935],[-122.33761930488998,50.52066374054404],[-122.33738581143142,50.520559895811516],[-122.33714449916584,50.520465346953756],[-122.33689685558174,50.52038351666552],[-122.33663121769779,50.520327523962024],[-122.33635174619731,50.5202896340471],[-122.33607607206743,50.520248485999325],[-122.33580256989836,50.52020235287414],[-122.33552902229923,50.520156784335306],[-122.33525737372719,50.520109586420205],[-122.33498812578709,50.520054595098436],[-122.33471647839716,50.520007395855664],[-122.33443491185989,50.519995287804186],[-122.33427113977369,50.51985943339961],[-122.33414722909653,50.51968947510273],[-122.33402805596855,50.51952641136078],[-122.33392875854993,50.51935782288246],[-122.33384201803942,50.51918684183272],[-122.33375889256814,50.5190148464277],[-122.33367752817364,50.518842918034245],[-122.3335944492463,50.51867036614415],[-122.33352017675085,50.51849810485527],[-122.33349219728314,50.51832118211602],[-122.33341806233574,50.51814724284281],[-122.33335287096716,50.5179719073814],[-122.33328944123716,50.5177966299877],[-122.33322601200037,50.51762135252024],[-122.33315901573512,50.517446514977664],[-122.33308845175054,50.51727212632672],[-122.3330534756101,50.51709441433311],[-122.33304162190122,50.5169146588126],[-122.3330333364839,50.51673445428361],[-122.3330073037143,50.51655534607914],[-122.33294929714208,50.51637856478595],[-122.3328589073434,50.516209143892084],[-122.33267957812623,50.51606939849243],[-122.33246130485267,50.515952540429275],[-122.33227772520866,50.51582165046131],[-122.33216069467977,50.51565416485744],[-122.33208019095443,50.51549349932499],[-122.33221878585078,50.51533108237952],[-122.33234324623345,50.51516875625122],[-122.33245899192845,50.51500501761102],[-122.33248565553431,50.51482934042107],[-122.33253011163623,50.51465200163401],[-122.33245516533194,50.5144881459733],[-122.33232837416408,50.51433214134623],[-122.33236917107872,50.51415637301877],[-122.33246085423835,50.51398452534475],[-122.3325987586667,50.51383051481965],[-122.33277282077411,50.513687819314846],[-122.33286960099842,50.51351839774978],[-122.33297676437108,50.51335155910355],[-122.33305778584578,50.51318049240492],[-122.33302754804714,50.51300968330855],[-122.33286476460371,50.512862044810326],[-122.33269304024228,50.512715802105184],[-122.33254294994349,50.51256409289038],[-122.33248453979812,50.51239235302071],[-122.33245688740307,50.51221150772347],[-122.33234315947404,50.512046937297946],[-122.33224569174868,50.511877838662755],[-122.3321554049329,50.5117072947013],[-122.33206687968556,50.511536808794254],[-122.33197298115131,50.51136726984695],[-122.3318774137737,50.51119655105785],[-122.33172682934935,50.51105100455637],[-122.3314991845138,50.510941147671616],[-122.33126385800158,50.5108389085255],[-122.33108039399448,50.51070689419825],[-122.33093966810337,50.5105487439746],[-122.3308114978063,50.51038819243804],[-122.33069416746676,50.510224625151196],[-122.33054964945467,50.51006971368055],[-122.33036280569759,50.509935903813286],[-122.33010601666253,50.50985881789962],[-122.32987525044254,50.50976572275019],[-122.32971262572569,50.50961640119226],[-122.32951101494761,50.5094905314334],[-122.32930384875587,50.50936785135049],[-122.32908918358395,50.50925054582516],[-122.3288569820304,50.509153460331014],[-122.3285750943304,50.50912446461995],[-122.32831305467805,50.509068567704674],[-122.32811158773912,50.50894100849515],[-122.32799061192713,50.50877900843859],[-122.32785694668517,50.50862107787762],[-122.3276812760894,50.508480318012815],[-122.32757818486925,50.50831553506216],[-122.32750223774404,50.50814264406308],[-122.32734865864929,50.50799081051088],[-122.32714502670211,50.50786824265477],[-122.32692287416793,50.507756307569636],[-122.32670826894932,50.50763843194656],[-122.32652320738613,50.50750467347371],[-122.32636593015945,50.50735495609186],[-122.32620323430203,50.50720675051858],[-122.32603502839152,50.5070611782924],[-122.32583126738238,50.50694028574541],[-122.32559583702954,50.50683972092494],[-122.32536415815997,50.50673646374365],[-122.3251592339879,50.50660822598248],[-122.32496949422782,50.50646699529692],[-122.32476356601792,50.506351093941284],[-122.32451012218775,50.506298278683836],[-122.3242205940474,50.50629825756976],[-122.32393106663939,50.50629822672884],[-122.32365009157824,50.506279927058976],[-122.32336916214108,50.50626107038432],[-122.32308759295408,50.50625005494795],[-122.32280631923108,50.506257051040194],[-122.32252701122275,50.50628322059261],[-122.32224900506645,50.50631506453091],[-122.32196928399358,50.50634628418298],[-122.32169123163793,50.506378683016905],[-122.32141471098818,50.50641393889654],[-122.32113949194667,50.50645486918746],[-122.32086900564042,50.506502694194005],[-122.32060459936713,50.50656253276311],[-122.3203462275061,50.50663494122813],[-122.3200925872208,50.506714253489015],[-122.31983894604332,50.506793565163186],[-122.31958052545296,50.50686653709203],[-122.31932173825494,50.50694398566552],[-122.31906507665775,50.50701701474794],[-122.31879743196238,50.506986774298205],[-122.31852540260145,50.50692377458119],[-122.3182545847708,50.50686756190816],[-122.31798118200017,50.50682138418108],[-122.31770759645774,50.5067774488888],[-122.3174340114484,50.50673351292077],[-122.31716047317856,50.50668901101322],[-122.31688675134305,50.50664676051138],[-122.31661085709669,50.506609493433025],[-122.31633256073737,50.50658001813408],[-122.316051495299,50.506562820813286],[-122.31576983430332,50.50655290839439],[-122.31548935552755,50.506571716214566],[-122.31521055526616,50.506548411135086],[-122.31493258163647,50.50651500240538],[-122.31465886294468,50.50647274640714],[-122.31439175746345,50.506414398062844],[-122.31411623371842,50.506372638569445],[-122.31383434456562,50.50636552961063],[-122.31355251881291,50.50637922262222],[-122.3132704916776,50.50637379904752],[-122.3130227852538,50.50629415726948],[-122.3128618059439,50.50614711199197],[-122.31272120444163,50.50598837255787],[-122.31260042989543,50.50582466835068],[-122.31245589561566,50.50567086304526],[-122.31228019279065,50.50553119988219],[-122.31209360639396,50.50539510648306],[-122.31191244030926,50.505257510355136],[-122.31174966143959,50.505110970058645],[-122.31163083699832,50.50494508000164],[-122.31149335196069,50.50479149825618],[-122.31125801108239,50.504690337535635],[-122.3110072091435,50.504605531612185],[-122.31103145496894,50.50443877125812],[-122.31116629507265,50.504279626029955],[-122.3112091103195,50.50410166972358],[-122.31121152340842,50.50392125541767],[-122.31124729591981,50.503743065040425],[-122.31132499955349,50.5035702083687],[-122.31142179309538,50.503401359672615],[-122.31152034644707,50.5032325693468],[-122.3116084732401,50.50306175012377],[-122.31168793483695,50.50288895154157],[-122.31179163027768,50.50272201417656],[-122.31193151495773,50.50256584254339],[-122.31207690930398,50.502407046741766],[-122.31222410938716,50.502247743932784],[-122.31233424632966,50.50208833444994],[-122.31225040827769,50.501926413374996],[-122.31216947835662,50.501750535703046],[-122.3120879982963,50.50158138727948],[-122.3118902226963,50.501452801870165],[-122.31171824258327,50.50131101094653],[-122.31160484770541,50.50114360872342],[-122.31137036794284,50.50105372185436],[-122.31111560603425,50.50097440660116],[-122.31094566608685,50.500829308221185],[-122.31082305954266,50.50066666410333],[-122.310720323261,50.50049849926338],[-122.3105703938215,50.50034619284237],[-122.31044511119882,50.50019470528824],[-122.31045665095374,50.50001065272515],[-122.31046104454327,50.50000011044755],[-122.31053597421018,50.49983953217007],[-122.31064327878518,50.49967159967507],[-122.3107694884462,50.49950990938588],[-122.31092299066488,50.49935981421583],[-122.31109701922196,50.49921771539206],[-122.31126428136038,50.49907200864225],[-122.31142166839946,50.49891754344786],[-122.3114778715211,50.49874846998818],[-122.31144855136961,50.49856755794995],[-122.3114121438022,50.49838697716449],[-122.31135049541629,50.49821286309794],[-122.31118788187933,50.49806463388026],[-122.31096428681784,50.49794979866251],[-122.3108645259333,50.4977884797625],[-122.31083530068413,50.497606445786666],[-122.31081288772018,50.497427445186524],[-122.31079760721826,50.49724756595834],[-122.31078936874485,50.497067911722105],[-122.31079706399439,50.49688767136909],[-122.31079929544562,50.496709489625346],[-122.31083983932801,50.496537646388255],[-122.31077476696497,50.49636229304068],[-122.3106082279111,50.49621899715693],[-122.31037871992476,50.49611183593358],[-122.3101641207842,50.495995057214714],[-122.30995887573567,50.49587183228444],[-122.30980326988147,50.495724399940514],[-122.3097022633375,50.495556847949786],[-122.30959949731793,50.49538923731215],[-122.30948589520587,50.49522464010399],[-122.30933992158397,50.49506739655303],[-122.30922423917131,50.49490667044929],[-122.30923018084134,50.49472636222635],[-122.30924844307735,50.49454647261927],[-122.3092667059025,50.494366573996736],[-122.30927607510411,50.49418751324105],[-122.30928363850232,50.49400895021609],[-122.30929476846194,50.49382993893311],[-122.30927773507487,50.49365000017381],[-122.30922684600596,50.49347399193504],[-122.30916002418897,50.493298578453874],[-122.30909496302856,50.49312322342324],[-122.30899753149504,50.49295522204275],[-122.30884591838159,50.4928022970534],[-122.30873204995315,50.49264106325177],[-122.30869380680713,50.492461534318664],[-122.30864833909328,50.49228402329732],[-122.30851303035499,50.49212600773714],[-122.30829863874557,50.49200698170635],[-122.30807471356454,50.49189662608844],[-122.3079549723616,50.49174251035256],[-122.30790274435292,50.49156139100489],[-122.30784685844195,50.49138184133355],[-122.3077128095553,50.49123005628381],[-122.30752972357996,50.491095200469786],[-122.30732839568965,50.49096760077017],[-122.30711979864782,50.49084257485232],[-122.30692027866766,50.4907144766356],[-122.30672812126326,50.49058269130318],[-122.30653420568756,50.4904508380751],[-122.30633080139349,50.490327107872815],[-122.30611045499676,50.4902163089147],[-122.30587321202816,50.49011788480724],[-122.30563208307937,50.49002382031394],[-122.30539285268266,50.48992813600802],[-122.30515200084503,50.48983071471847],[-122.30491277249061,50.48973502935591],[-122.3046696573397,50.48964371254044],[-122.30442409384075,50.4895607438521],[-122.30414745292303,50.4895554728211],[-122.3038985084826,50.48947070788192],[-122.30364808093394,50.489382519058594],[-122.30338243729649,50.489329244209145],[-122.30309171807315,50.489323501591095],[-122.30281391715823,50.48931087394164],[-122.30265391803005,50.48917451983454],[-122.30243173431423,50.48906477635841],[-122.30220228141215,50.48895760627386],[-122.30196528400995,50.48885636526454],[-122.30172213391533,50.48876559819681],[-122.30146875815495,50.488691926106206],[-122.30119701221074,50.48864857310784],[-122.30091341917428,50.488620560445725],[-122.30063334565186,50.48859267335736],[-122.30035244466896,50.48857487068153],[-122.3000914336352,50.4885082554263],[-122.29972488375796,50.4884589221066],[-122.29955615811043,50.488257043166016],[-122.29942089256073,50.48809902472171],[-122.29928391444781,50.48794038212827],[-122.2991544838159,50.48777580098263],[-122.29901199729646,50.48761979033248],[-122.29883052843057,50.48748721243129],[-122.29861739170518,50.487374955126946],[-122.29838944077059,50.48727119136471],[-122.29815042455691,50.487173248005845],[-122.2979075668264,50.48707911667478],[-122.29766290453321,50.48698548238843],[-122.29742194727244,50.48688972184904],[-122.29718663919981,50.48678965066674],[-122.29698151718078,50.48666584407091],[-122.29680607486526,50.486524466342956],[-122.29667253829447,50.48636705923512],[-122.29655002251107,50.486204396474704],[-122.29644010297775,50.486038779956885],[-122.29635000323559,50.485868201509376],[-122.29625990417472,50.48569762295297],[-122.29614994049308,50.48553257131396],[-122.29601830757593,50.48537353512508],[-122.29588310951343,50.48521494654155],[-122.29574244865127,50.485058424673774],[-122.29561438386757,50.48489894909757],[-122.29552966107117,50.484727424406074],[-122.29546651720658,50.48455099672181],[-122.29537813743787,50.484381041188314],[-122.29525928989297,50.48421680726127],[-122.29511863430673,50.48406028441082],[-122.29495043063085,50.483916904137324],[-122.29475824569012,50.48378620959291],[-122.29455508812708,50.483660213678405],[-122.29435748752702,50.4835310289581],[-122.29416169352979,50.48340134633389],[-122.293969605278,50.483269528773796],[-122.29379038877752,50.48313140182913],[-122.29364108175868,50.48297289619994],[-122.29348029456995,50.48282526233189],[-122.29326117698837,50.482721781347635],[-122.29301187529984,50.4826420428411],[-122.29274572328835,50.4825741029454],[-122.29247744266434,50.48251059885672],[-122.29221282093673,50.48244552487132],[-122.29194602549079,50.482385434016166],[-122.29167899972835,50.48232815092012],[-122.2914102607192,50.48227025207106],[-122.2911472635828,50.482206912201924],[-122.29089033027128,50.48213421932692],[-122.29064122059609,50.482052232307694],[-122.2903942414198,50.481965808307976],[-122.29015110521877,50.481875580412336],[-122.28990820038624,50.481782552544374],[-122.28966895472362,50.48168795497323],[-122.28942799693074,50.48159273276507],[-122.28918875328137,50.481498134137276],[-122.28894585246492,50.481405104121436],[-122.2887046665015,50.48131268871298],[-122.28846357386695,50.48121915120422],[-122.28822257457867,50.48112449159527],[-122.28798523447495,50.48102826234512],[-122.28779090640533,50.480902547949924],[-122.2877100171805,50.48072776948467],[-122.28759449513466,50.480566452755944],[-122.28741174384619,50.48042875361537],[-122.28719936202093,50.480308057191785],[-122.28696188946,50.48021351249382],[-122.28670733395931,50.48013358294892],[-122.2864671298218,50.480029381604396],[-122.28623623255054,50.47991931005936],[-122.2859691561683,50.47996997786156],[-122.28575833966731,50.480023095080625],[-122.2856932076393,50.479871335263915],[-122.28566770327167,50.479666918241236],[-122.28563025557845,50.47947897124572],[-122.28558308627808,50.47930194534714],[-122.28553596392214,50.479124354120266],[-122.28548347012794,50.4789477166626],[-122.28543449657656,50.47877118797823],[-122.28539983038266,50.47859233104402],[-122.28536868352805,50.47841359187083],[-122.285339342282,50.47823435525801],[-122.28530287152265,50.478055995566535],[-122.28524681502381,50.4778797962482],[-122.28517830343989,50.477704871341565],[-122.28509548573469,50.47753227451038],[-122.28498914834901,50.47736676271049],[-122.28483586365533,50.477214299408885],[-122.28464748621397,50.477080904682516],[-122.28444262759683,50.476954830312756],[-122.28425605845774,50.47682092852936],[-122.28411537165185,50.4766655118868],[-122.28402181830275,50.47649480361712],[-122.2839781773288,50.47631789423862],[-122.2839507414437,50.47613702888244],[-122.28389460016439,50.47596195003353],[-122.28379377991281,50.47579381411723],[-122.28369296115211,50.47562566910183],[-122.28361547704216,50.475452691221896],[-122.28349864013339,50.47528625869584],[-122.2834874598809,50.47512224960596],[-122.28375020320694,50.47505962969512],[-122.28397275016441,50.474949560525914],[-122.28416705094637,50.47481829191822],[-122.28435621071574,50.47468516831209],[-122.28458357037461,50.474580882493036],[-122.2848375086783,50.4744965965861],[-122.28504801181896,50.474382748066816],[-122.28520165308963,50.474230996945195],[-122.28535191283639,50.47407744989637],[-122.28552254465701,50.473933582049334],[-122.28569312882289,50.473790279187796],[-122.28585366433916,50.47364044950389],[-122.28602077422522,50.473496463016865],[-122.28623807648383,50.47338564713438],[-122.2864769099551,50.47329185472112],[-122.28664596062958,50.473145682968386],[-122.28673574395964,50.472976613909935],[-122.28678922754786,50.47279845716045],[-122.28692382806247,50.47264213460655],[-122.2870912079091,50.472494781600304],[-122.2872769688755,50.472359856999596],[-122.28750778285671,50.47225623894806],[-122.28772873295455,50.47214385086993],[-122.28784596588724,50.471984138923816],[-122.28789064752702,50.47180568709061],[-122.28794056082873,50.47162796809949],[-122.28800274205129,50.47145122637439],[-122.28809256272334,50.47128159956123],[-122.28823590466537,50.47112612574199],[-122.28842837081015,50.47099535547359],[-122.28865264555999,50.4708853352307],[-122.28883334866497,50.470747422757],[-122.2890291918413,50.47061844697387],[-122.28926480908659,50.47052060949856],[-122.28951038039482,50.47043041932429],[-122.28974956057371,50.470332133201445],[-122.28990965468316,50.470187348620925],[-122.29003756887205,50.47002630011946],[-122.29016210251987,50.46986344691675],[-122.29030529405232,50.46970965701504],[-122.29050460040622,50.46958136139842],[-122.29074354290093,50.469485881477716],[-122.29100332424782,50.469415840515765],[-122.29126328928247,50.469343555770095],[-122.2915230690036,50.4692735135797],[-122.291793594219,50.46922294936116],[-122.29208218552856,50.469210102411814],[-122.29231964719564,50.46913256442954],[-122.2925122309609,50.469000108867284],[-122.29269846886386,50.46885900140173],[-122.29289262584167,50.46872883812623],[-122.29308682743088,50.46859811818298],[-122.29328436181487,50.46846975861631],[-122.29348532118588,50.46834263782157],[-122.29371114520555,50.46823490895508],[-122.29398097078482,50.468192746769915],[-122.29426510698029,50.46816962352182],[-122.29454396545277,50.46814632326299],[-122.2948114230245,50.46809002615262],[-122.29507114358096,50.46802054083376],[-122.29533438234962,50.467951163425745],[-122.29561438169907,50.467892476117115],[-122.29587437700764,50.46781961515787],[-122.29607412857601,50.46770707025843],[-122.29622025864796,50.467560119340774],[-122.29633966932893,50.46739484829895],[-122.2964525039983,50.46722372523841],[-122.29657719025153,50.46705863006476],[-122.29673062929959,50.46690854849481],[-122.29690462383316,50.466765900930255],[-122.29708875772758,50.466628648077624],[-122.29727784506173,50.466495501114565],[-122.29748396954474,50.46636967051963],[-122.29773001820743,50.466294657455336],[-122.29801099067502,50.4662669207676],[-122.29828797449949,50.46622330493196],[-122.29856575982213,50.46621289734592],[-122.29884448643854,50.46623400215251],[-122.29912405120166,50.46626638987709],[-122.29940416933333,50.46629203834835],[-122.29968691031354,50.46628572510976],[-122.29994629126296,50.46622014933263],[-122.30019681899111,50.466133475861604],[-122.30042919288844,50.466031566735474],[-122.30063155795244,50.465908421368454],[-122.30081743607542,50.46577122085117],[-122.30100326670174,50.4656345852849],[-122.3011565941989,50.4654856189324],[-122.30128098247553,50.465323882917666],[-122.30145986569165,50.46518589029428],[-122.30165240653113,50.465053409260086],[-122.30185166007142,50.46492509253812],[-122.30205595925662,50.464799759851665],[-122.3022449323126,50.46466772572863],[-122.30236913124911,50.464508222559566],[-122.3024780492647,50.46434147086683],[-122.30263502380194,50.46419093261689],[-122.3028357994979,50.46406548111522],[-122.30305671693789,50.46395250508656],[-122.30328749803718,50.46384828787188],[-122.30352944145662,50.46375850501929],[-122.3038086355895,50.463730694953696],[-122.30409192397558,50.46373900993195],[-122.30443047627975,50.463740168117944],[-122.30464244790325,50.46369324629663],[-122.30457057413054,50.46355870803604],[-122.30439911631143,50.46339104365537],[-122.30423154534454,50.4632190097745],[-122.30413785187827,50.46304943722282],[-122.304053184029,50.462877349112844],[-122.3039432937702,50.46271173524601],[-122.30383344991044,50.46254556492043],[-122.30374151826842,50.46237605050701],[-122.30368365034653,50.46219979846763],[-122.3036221731172,50.462024550729616],[-122.30355893745492,50.46184924430091],[-122.30348677024331,50.461675322621566],[-122.30340562451107,50.461503359937254],[-122.30331735264222,50.46133227530029],[-122.30322722989094,50.46116226251204],[-122.30313720048888,50.46099111903554],[-122.30305068877296,50.46082010167617],[-122.30297135143881,50.46064763182922],[-122.3028938655067,50.460474098911085],[-122.3028217030557,50.460300176503054],[-122.3027548632906,50.46012587358812],[-122.30271481994743,50.45994740733386],[-122.30275577569462,50.45977050752459],[-122.30282130828319,50.459594993781444],[-122.30289554249823,50.45942089471675],[-122.30298880088976,50.45925137058971],[-122.30310640674703,50.4590860229696],[-122.30330354890818,50.45896157418563],[-122.3035244865297,50.45884803122048],[-122.303723661035,50.45872027544369],[-122.30392112195211,50.458591895384565],[-122.3041268705307,50.458469972375674],[-122.30434761914147,50.45835867989766],[-122.30457674736664,50.458252722744014],[-122.30480407017234,50.458147262823765],[-122.30502819560758,50.45803776407742],[-122.30524569799273,50.457922987725944],[-122.30545981993494,50.45780640684889],[-122.30567898772902,50.457692800844264],[-122.30591801892122,50.45759504363856],[-122.30611019244823,50.4574664837617],[-122.3061789042749,50.457295014827615],[-122.30618480686482,50.45711526368175],[-122.30619075570056,50.45693494720181],[-122.30618786462006,50.45675490308871],[-122.30617076575395,50.45657607722392],[-122.30613247149238,50.456397661021974],[-122.30608885515744,50.4562196343247],[-122.30605407816154,50.45604134414762],[-122.30605641816547,50.45586203189155],[-122.30610614974593,50.45568543182049],[-122.30616647922889,50.45550861786105],[-122.30622148670382,50.455332184421295],[-122.3062764930141,50.455155759888626],[-122.30632974098297,50.454979267741905],[-122.30637081545531,50.454800687569424],[-122.30624821225558,50.45463971606976],[-122.30610395605969,50.4544847621925],[-122.3059599756729,50.454326452217096],[-122.3058085488613,50.45417295048448],[-122.30563288329495,50.45403551116732],[-122.30541419874068,50.45392812929685],[-122.30516193116318,50.453843246274566],[-122.30490961896362,50.45375891899252],[-122.3046577208092,50.4536695483346],[-122.30439129549478,50.45358531633596],[-122.30412306627346,50.4535015903739],[-122.30386941252961,50.45341215928811],[-122.303644908016,50.453311327711255],[-122.30346408084755,50.45319395669598],[-122.30336153853906,50.45304657925129],[-122.30334098147533,50.45286706958775],[-122.30336039951845,50.45267314692861],[-122.30337967989504,50.45248090216049],[-122.30337152469482,50.45230068111258],[-122.30337040368389,50.452120694513326],[-122.30337631677807,50.45194094236309],[-122.30338755096373,50.45176080971561],[-122.30340757834536,50.45158096116315],[-122.30342940965701,50.451400614864745],[-122.30344763189476,50.45122127289975],[-122.30345877371016,50.451042261704565],[-122.30343974625518,50.45086560979903],[-122.30334085155617,50.45069530178885],[-122.303277679175,50.450519427439716],[-122.3032001631226,50.45034645785233],[-122.30308665207487,50.450182401259156],[-122.30295514337091,50.4500228100101],[-122.3028145212958,50.44986685557936],[-122.30266298261468,50.449715026651994],[-122.30250223875983,50.44956795609221],[-122.30233978312538,50.44942027030954],[-122.30217908770766,50.449272633930434],[-122.30202019735486,50.44912449961107],[-122.30186320399665,50.44897474573692],[-122.3017027412193,50.4488243090174],[-122.30159446827835,50.44866099183246],[-122.3015525437458,50.44848414191686],[-122.30152329599946,50.448303216019816],[-122.3014743849285,50.44812556609035],[-122.30142010645766,50.44794887073564],[-122.30135333672892,50.447773999007524],[-122.30126505312892,50.44760347512288],[-122.30115530222197,50.447436733734946],[-122.30103657651152,50.44727194215328],[-122.30092146029459,50.44710614611012],[-122.30082411211063,50.446938693297454],[-122.3007553575838,50.446766570874075],[-122.30072579189668,50.44658957455276],[-122.30072121131275,50.44640890402216],[-122.30072555983553,50.44622684882376],[-122.30072273684466,50.44604624584945]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":40,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"3","REGION_NUMBER":3,"REGION_NAME":"Thompson","REGION_NUMBER_NAME":"3- Thompson","FEATURE_AREA_SQM":57656090840.3855,"FEATURE_LENGTH_M":1825939.0951,"OBJECTID":4,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-122.30072273684466,50.44604624584945],[-122.3007472211895,50.445790632605345],[-122.30076549816461,50.44561072453175],[-122.30078548691259,50.445431440378236],[-122.30081246219477,50.44525295613449],[-122.300874464762,50.44507732305143],[-122.30093119210666,50.44490151391104],[-122.30096876228131,50.44472281618044],[-122.30102895967062,50.44454768056163],[-122.30113778888564,50.44438148238164],[-122.30126910637728,50.4442205331061],[-122.3014021811475,50.44405964229717],[-122.30150915766407,50.44389450662676],[-122.30157087984075,50.44372223774512],[-122.3016014137241,50.44354330493209],[-122.30161274483721,50.44336204895562],[-122.3016170438722,50.443180549361244],[-122.30161944642728,50.44300067800673],[-122.3016112536277,50.44282102000878],[-122.30159075451137,50.44264094243915],[-122.30155776388219,50.44246270649848],[-122.30150705451886,50.442285561944196],[-122.30145454181324,50.442108915003374],[-122.30142159844739,50.44193011360203],[-122.30137264834092,50.4417530275229],[-122.30129871720513,50.44157960673041],[-122.30121761591099,50.44140763815708],[-122.30113480347015,50.4412350455264],[-122.30105731229547,50.44106206347385],[-122.30100133219618,50.440884742400335],[-122.3009651511933,50.440702458371405],[-122.30090186374977,50.44052826742205],[-122.3007734472587,50.44037439716361],[-122.30059798825025,50.44023526955883],[-122.30040092820055,50.440101602107326],[-122.3002147398843,50.43996435612075],[-122.3000449725606,50.439820351753305],[-122.29987349389587,50.43967573209151],[-122.29970927878263,50.43952853829398],[-122.29955954325747,50.43937676185949],[-122.299433306191,50.43921790564839],[-122.2993377849036,50.43904994327179],[-122.29926039561064,50.4388758468332],[-122.29919017727626,50.4387002981236],[-122.2991181095025,50.43852581227492],[-122.2990549705856,50.438349932862195],[-122.29899543938058,50.43817305809878],[-122.29893225507021,50.43799774384299],[-122.29885468589089,50.43782588119066],[-122.29875565303918,50.437657809605184],[-122.29864399361017,50.43749324824595],[-122.2985197997173,50.437331075441676],[-122.29838658662491,50.43717141752953],[-122.29824782464318,50.43701494821905],[-122.29809625168437,50.43686424123939],[-122.29792284926357,50.436721793622944],[-122.2977494935779,50.436578789378736],[-122.2975979237454,50.436428081636535],[-122.29746647448093,50.43626848115509],[-122.2973530196377,50.43610441582671],[-122.29725228463806,50.43593571851564],[-122.29715326189294,50.43576764510446],[-122.29703444377122,50.43560452481848],[-122.29683630087142,50.435462940084285],[-122.29670913637378,50.4353585923554],[-122.27429796083754,50.42436458013047],[-122.27309052008168,50.42391963669415],[-122.27278442109431,50.42380642270858],[-122.26986182444726,50.42272786753377],[-122.27198744831755,50.420376117353385],[-122.27436926948091,50.421151889624475],[-122.27458043018599,50.42102739335619],[-122.2748001897081,50.42092680554296],[-122.27500811247967,50.42077745513855],[-122.27524965371627,50.42062641807001],[-122.27566526044373,50.42033052363334],[-122.27580908211733,50.42023188053272],[-122.27617954520963,50.42005593102128],[-122.27631263755714,50.41991643570585],[-122.27664078373326,50.41971938399934],[-122.27691172411691,50.419532223613885],[-122.27719709057733,50.419362409548604],[-122.27737322914344,50.41923504891267],[-122.27758696221849,50.41914325138906],[-122.27783717980111,50.41901499545026],[-122.27802727992193,50.418846487064236],[-122.27814524239373,50.41871941155201],[-122.27834051886005,50.41853083100917],[-122.27842874494839,50.41835833323671],[-122.27859650566583,50.41818288293742],[-122.27883093969302,50.41781846389891],[-122.27896410837435,50.417635102766646],[-122.27906587803282,50.417426500348135],[-122.27915063227641,50.41729606802529],[-122.27926876997888,50.417102636837114],[-122.2793430718254,50.41694935830732],[-122.27941293619939,50.41682853952104],[-122.27957712275634,50.41656805339598],[-122.2796230313827,50.41639581618279],[-122.27968281392086,50.41629041419819],[-122.27978680173773,50.416183113220555],[-122.27997434383435,50.41608818246418],[-122.28023013207846,50.41595617633569],[-122.28042765631874,50.415804217593255],[-122.28058795816229,50.41567632038801],[-122.28076666068029,50.4155175385736],[-122.2809099891632,50.41536038544307],[-122.28095377054932,50.41527806547411],[-122.28107476599041,50.41513534213298],[-122.28127075205677,50.41491641199591],[-122.28137954218808,50.414814894529265],[-122.28149147567332,50.41471799047149],[-122.28173272561995,50.41450563561291],[-122.28188747169693,50.414380915405346],[-122.28206385258223,50.41422881117505],[-122.2823606341559,50.4140694903262],[-122.28252716548286,50.41392998505264],[-122.28271575652391,50.413843525247756],[-122.28296020003816,50.41374205872513],[-122.28317764292834,50.413668938447806],[-122.28359092731509,50.413464033752874],[-122.28384655725375,50.41337644665],[-122.28410103578946,50.413324245590715],[-122.2843828013847,50.413325822511055],[-122.28473645901796,50.41328875164506],[-122.28508294216897,50.41321039012886],[-122.28531669621775,50.41311025181521],[-122.28550445178811,50.413055252527926],[-122.28572822741432,50.413012141196745],[-122.28603993609751,50.41292811192722],[-122.28624919755975,50.41291150706125],[-122.28705333992464,50.41270956866372],[-122.28736713738691,50.412685784488424],[-122.28769031439872,50.41263362807711],[-122.28837963294336,50.4125852978276],[-122.28855999634061,50.41257728539697],[-122.28886806095846,50.41255891972662],[-122.28899515103568,50.41251313002585],[-122.2890656552732,50.41249130504441],[-122.2890991298966,50.412491301562795],[-122.28923085071061,50.412474910216964],[-122.2894871445135,50.41233615216528],[-122.28966816971278,50.41221286875605],[-122.28978488975368,50.41212173188322],[-122.28995920767174,50.41199429126722],[-122.29005812630497,50.411905374349246],[-122.29026401589367,50.411758178156184],[-122.29036902753245,50.41163797199309],[-122.29062626243287,50.411423317801976],[-122.29079246328784,50.4112230532416],[-122.29109038493239,50.41102776527343],[-122.29139555577032,50.41080853258292],[-122.29147301105402,50.410702024670385],[-122.29159590880245,50.41057847500267],[-122.29171960859311,50.41050950696502],[-122.29194789071349,50.410304012423424],[-122.29204940129443,50.41024779833047],[-122.2922058355755,50.41018779868445],[-122.29238377386072,50.41014482291431],[-122.29274426032688,50.41002416654274],[-122.29298530656865,50.40998499334691],[-122.29326810272848,50.40995228248371],[-122.29351428857305,50.409936333013555],[-122.29381327186935,50.40992103361805],[-122.29490677812161,50.40992724356253],[-122.2951025825724,50.409945597513094],[-122.29528951001879,50.40996478799499],[-122.29564186127267,50.409986126597374],[-122.29603983670077,50.409988186189],[-122.296273814855,50.40997070670265],[-122.29654468807527,50.409954451160026],[-122.29673996884846,50.40993623489344],[-122.29699150607722,50.40989797068945],[-122.2971994339134,50.409832936992714],[-122.29761456153678,50.40973321231118],[-122.29790803231917,50.4096991549064],[-122.29834040439562,50.40960393598076],[-122.298577801467,50.40958769070873],[-122.29877487300642,50.40954759371272],[-122.29898968586262,50.4094844784219],[-122.29916220607187,50.409443002650725],[-122.29944859039952,50.409387892219385],[-122.29963986290986,50.40931105027308],[-122.29979959272214,50.40921065951749],[-122.29991772668113,50.408951414767806],[-122.2999638144449,50.408754440908446],[-122.29999476623873,50.40861318978138],[-122.3000496480919,50.40843787974258],[-122.3001313171078,50.408301138856515],[-122.30022055357628,50.40813653197038],[-122.30026502871642,50.40804522124029],[-122.30037086456174,50.407979021618196],[-122.30056262369312,50.40787464264191],[-122.30069094054038,50.40783506268359],[-122.30081634117226,50.40778806984431],[-122.30109643120916,50.407745126484585],[-122.30129980781386,50.40767093550571],[-122.3013898413709,50.407625577519696],[-122.30163944553858,50.407460133297135],[-122.30197080101084,50.40724287199806],[-122.30222657734627,50.407045023902974],[-122.30228853493408,50.40697679093754],[-122.30245912326635,50.40680814942769],[-122.30258008550936,50.406686215354064],[-122.30275641088897,50.40644747268563],[-122.30290825653016,50.40624951935652],[-122.30296559584495,50.40619463784465],[-122.30306925109777,50.4060473811645],[-122.30322393060291,50.40587933228942],[-122.30349062660305,50.40572007823508],[-122.30367076082703,50.40560686610409],[-122.3040076464975,50.405321740787706],[-122.30424143830703,50.40511246506737],[-122.3044564095034,50.404896370347736],[-122.30457311358172,50.40478329007848],[-122.30483799542043,50.40462453928766],[-122.30507219891574,50.404496257488084],[-122.30534195400419,50.40429942667273],[-122.30541028673265,50.40423928689237],[-122.3057266758636,50.40403219629094],[-122.30594944840679,50.403892850871074],[-122.30616534447539,50.40377295430218],[-122.30642675611537,50.403699565038636],[-122.30685292967152,50.40357149032773],[-122.30703958259214,50.40348605115869],[-122.30720660930153,50.403360582190714],[-122.30729197231302,50.403264450276474],[-122.30741111305322,50.40307833976871],[-122.30751648913369,50.40290976622699],[-122.30753859451255,50.40285483260129],[-122.30756492962075,50.402834340303244],[-122.3078713239062,50.40264153240929],[-122.30816902351097,50.402447318153975],[-122.30836138370485,50.40233506414653],[-122.30866367645686,50.40217080305044],[-122.30893770792844,50.40205058931253],[-122.30907259949208,50.40199491490873],[-122.3092549347795,50.40189751396217],[-122.30953553106563,50.401783141307],[-122.30981634016572,50.40164458847662],[-122.30994188138172,50.401573979809335],[-122.31014903454019,50.401474587920305],[-122.31033799308132,50.401274495955924],[-122.3106348186365,50.40111229711171],[-122.31071346581123,50.40107667538256],[-122.3110560981309,50.4009789871484],[-122.31117900905413,50.40091897015032],[-122.31147173907681,50.40084998685812],[-122.3116782897844,50.40075788754133],[-122.31176683358744,50.40073046789889],[-122.31201566427534,50.400681391569854],[-122.31213513889823,50.40066343267869],[-122.31248738843708,50.400577307875494],[-122.31285414211646,50.400421372624066],[-122.31313006289932,50.40032089046066],[-122.31326077328146,50.40025157503172],[-122.31346640871995,50.4000627137837],[-122.3135155402477,50.40000023852209],[-122.3135371053425,50.39997339549787],[-122.31375460447838,50.39976862426871],[-122.31396533929181,50.39960355154711],[-122.31434897015517,50.399413297109795],[-122.31463487053375,50.39931990097154],[-122.31494728314381,50.399203757561736],[-122.31530447518871,50.39907842250052],[-122.31565448371173,50.39893316878781],[-122.31579900964459,50.398867117469464],[-122.31601379408754,50.39880340301551],[-122.31614993916176,50.39877531388636],[-122.31641169934238,50.39867547766106],[-122.31651248536784,50.39864902843227],[-122.31684022078065,50.39851764306701],[-122.31695743599165,50.3984624963983],[-122.31716396461516,50.39837038658523],[-122.31733960785243,50.398268251446176],[-122.31747000500158,50.398224223175575],[-122.31764823795986,50.398176719396325],[-122.31782856571682,50.39814672305748],[-122.318095069858,50.398139836824846],[-122.31841873996042,50.398123044942096],[-122.31874636107804,50.3980793805508],[-122.31886329229383,50.398070894965414],[-122.31919182595843,50.39801602115468],[-122.31950380051232,50.3979482148995],[-122.31967733471198,50.39787187528917],[-122.31984432486556,50.3977677662018],[-122.32003559589474,50.397581790383846],[-122.32012814932017,50.3975050087568],[-122.32030028495085,50.39746742097082],[-122.32052000080188,50.397451101258866],[-122.32075411295641,50.397409390243546],[-122.32091231249328,50.39734828577845],[-122.32099845229777,50.39728535421998],[-122.321196936712,50.39720534218195],[-122.32144999427857,50.39701747533738],[-122.32158362627305,50.396933625905056],[-122.32187919217277,50.39682927639517],[-122.32208412564546,50.39677816252147],[-122.32228794228831,50.3967191289811],[-122.32263268086972,50.39665971762681],[-122.32294486881966,50.39658910177758],[-122.3232238424926,50.39653706990035],[-122.32329551385568,50.39652201131087],[-122.3234905885032,50.39650543468254],[-122.32383550645501,50.396443776144736],[-122.32410266262784,50.39640708725162],[-122.32431368234292,50.39634604869604],[-122.32463971327452,50.39621345988375],[-122.32491010690308,50.39613695264709],[-122.32518798141027,50.39605506929],[-122.32538234676213,50.39598222870997],[-122.3256262098567,50.395950387089854],[-122.32589228920729,50.395905227204466],[-122.32620446685591,50.395834602108124],[-122.3262848719873,50.39582039824051],[-122.3264870139693,50.39580348403244],[-122.32676112044928,50.395746216208316],[-122.32704181750138,50.39567286204118],[-122.3273219436339,50.395584857604874],[-122.32748804172398,50.39549138853781],[-122.32764271060876,50.3953868596813],[-122.32775114721606,50.39535277209077],[-122.32798061278699,50.39534632608221],[-122.32829725576464,50.395307336112594],[-122.32837311964381,50.395283982274286],[-122.32869843139521,50.39526833129174],[-122.32902289471329,50.39519810577687],[-122.32924163232786,50.39510694597233],[-122.32951885463545,50.39503290369346],[-122.32982773612234,50.39495934310308],[-122.33017878452192,50.39482195303733],[-122.33039628817781,50.394745929661816],[-122.33060373378306,50.394685318982106],[-122.33076635943482,50.39463447032669],[-122.33095284444454,50.39459340986228],[-122.33114986708219,50.394552698200705],[-122.33169890379112,50.39449271223846],[-122.33207298936044,50.39441849807614],[-122.33241732654993,50.39432024480551],[-122.33253057060648,50.39429193561151],[-122.33282952826366,50.39427540898805],[-122.33312858972911,50.394192516376364],[-122.33327140971356,50.39412526200759],[-122.33345972304548,50.39399652830404],[-122.33370287493256,50.393777948074174],[-122.33377149233678,50.39369192321478],[-122.33399158957457,50.39351869343779],[-122.3340392291326,50.39347415618965],[-122.33436118944357,50.3933042887706],[-122.33442285967304,50.39328215272455],[-122.33475560808088,50.39323973688401],[-122.33502295441701,50.393156923421714],[-122.33534946789122,50.393082806793274],[-122.33563365564889,50.392944312277926],[-122.33623149923727,50.392586181161796],[-122.33641179986896,50.392490919759915],[-122.33672982207598,50.392325981315814],[-122.3367991064072,50.39229678058002],[-122.33695843176298,50.392242997680775],[-122.33705490619535,50.39222594359508],[-122.33737827774368,50.39212529044201],[-122.33751169542884,50.39208696308855],[-122.33765572383571,50.39206979867201],[-122.33798094009622,50.39196808009291],[-122.33821890596218,50.39183479012591],[-122.33837568151354,50.391812422629464],[-122.33869467141008,50.39172230140901],[-122.33878245385138,50.3917038337403],[-122.3391455906302,50.391590435629176],[-122.33950385355011,50.391428502522906],[-122.34000285321645,50.39124648479562],[-122.34025257100521,50.39116363442755],[-122.34050925318434,50.3910382736365],[-122.34077370030361,50.39094746887804],[-122.34111078566399,50.39085119950712],[-122.34161124139085,50.39069452503711],[-122.34184787277091,50.39064273151252],[-122.34200826091116,50.3905974167722],[-122.34213959645528,50.39056294735208],[-122.34215756666842,50.390558484146375],[-122.34243655745499,50.390527209184626],[-122.34273295889567,50.3905201280442],[-122.34305648928749,50.39048244942682],[-122.34320903373766,50.39044699658855],[-122.34333921621148,50.39038324455835],[-122.34361278332338,50.390310172343504],[-122.34386090029925,50.390246948661854],[-122.34415217755617,50.39015084045081],[-122.34445519807312,50.38999663290464],[-122.34473383025797,50.38988266787231],[-122.34485076253159,50.38983029097899],[-122.34503154662585,50.38970691374624],[-122.3451889820784,50.38954564928779],[-122.34531030066084,50.38946079936181],[-122.34560998179002,50.38930422911715],[-122.34583821580384,50.38926902127699],[-122.34627654364077,50.389030986871795],[-122.34659558169153,50.388874485935666],[-122.346853082377,50.38876038546675],[-122.34708810711155,50.3885758093213],[-122.34726913940517,50.38847099944182],[-122.34738860440244,50.3883872109391],[-122.34771847889847,50.38816189762396],[-122.34782754204005,50.388076073964655],[-122.34801424729297,50.38796638422896],[-122.34826605104621,50.38787908640214],[-122.34866557112665,50.38766338256558],[-122.34880748653954,50.387606759733345],[-122.34899785781197,50.38753880453413],[-122.34912972228702,50.3874976051907],[-122.34936254482417,50.38736187335051],[-122.34942552519091,50.3873015314795],[-122.34967535106581,50.387107873343446],[-122.34983674845255,50.386897244831125],[-122.34997581513248,50.386766860947766],[-122.35019206594562,50.386531046495925],[-122.3502518944305,50.38646610132435],[-122.35028113465259,50.386431073602715],[-122.35036299833469,50.386333103620785],[-122.35044489763257,50.38634367631749],[-122.3510226752706,50.38627498973002],[-122.35131272328282,50.38621538146877],[-122.35162016029697,50.386136658079685],[-122.35186372075302,50.386020395560806],[-122.35213764521247,50.38596418603423],[-122.35264570784048,50.38590838274252],[-122.35318598311108,50.38591155749058],[-122.35356797335193,50.38584708958608],[-122.3539085232171,50.385816131514574],[-122.35425465782804,50.38578141523333],[-122.3545630561273,50.38575613591487],[-122.35492422432475,50.38573147727876],[-122.35534022803549,50.38572548454259],[-122.35565668086657,50.385709474208426],[-122.35602904677854,50.38572060515181],[-122.35635011888861,50.38575647356514],[-122.35674422002118,50.38580375091122],[-122.35711298449037,50.38581588440371],[-122.35713049984851,50.385817018549425],[-122.35713201942228,50.39090815449026],[-122.39999960894586,50.39665751253361],[-122.40869813242419,50.39782222722476],[-122.40904036759196,50.39774840660314],[-122.40931940058427,50.397716407174435],[-122.40959821062651,50.39768720700933],[-122.4098782419111,50.39766479377252],[-122.41015738141067,50.397653597650205],[-122.41043469367959,50.3976653928782],[-122.41071373574104,50.397699745890186],[-122.41099075499586,50.397737397651476],[-122.41127649356034,50.39775397148238],[-122.41150950321592,50.3978357495524],[-122.41167726559922,50.39798514274846],[-122.41181080807368,50.39814410686655],[-122.41195349008598,50.398298877164194],[-122.41210346742967,50.39845050053933],[-122.41226429680427,50.39859854333587],[-122.41243980365958,50.39873918857854],[-122.41262629666402,50.39887456597661],[-122.41282215252104,50.39900294039876],[-122.41303079606884,50.39912553838431],[-122.41325663133027,50.39923125580857],[-122.41350150314932,50.39931903664609],[-122.41375402586004,50.39939919196303],[-122.41400843932281,50.39947772538276],[-122.4142711717977,50.39954021534773],[-122.41454667092162,50.3995750012968],[-122.4148261289248,50.39960429136366],[-122.41510383065808,50.39963352386925],[-122.41537937585998,50.3996677423661],[-122.41565667740224,50.39970202599754],[-122.41593213442854,50.39973736490109],[-122.41620754702711,50.39977326849784],[-122.41648287106507,50.39981029319294],[-122.41675999633605,50.39984681762692],[-122.41703541025888,50.39988271916191],[-122.41731051355302,50.39992254177074],[-122.41757959077763,50.399971732904945],[-122.41771118289186,50.40000017373914],[-122.41784795687116,50.40002989766365],[-122.41811394429492,50.40009585745702],[-122.41837039276474,50.4001710722498],[-122.4186006036933,50.40026623978418],[-122.4187231035847,50.40043158502867],[-122.41877422527037,50.40060868502761],[-122.41882886071951,50.400785898556975],[-122.41891573956879,50.40095628184585],[-122.41896150357796,50.4011343330408],[-122.4189825403539,50.40131327622566],[-122.41899466069798,50.401493613585984],[-122.41901038351018,50.40167294270799],[-122.41903493488806,50.40185199037512],[-122.41906826939959,50.402031330934776],[-122.4191068302741,50.40221139822484],[-122.41915435305076,50.40238950585216],[-122.41921979945604,50.40256369419308],[-122.41931393291631,50.402731495007956],[-122.41945638830548,50.40288962010435],[-122.41963369096679,50.403030309986846],[-122.41985798224471,50.40313371309702],[-122.42011378434647,50.403217332450005],[-122.42036629574807,50.4032980376908],[-122.4205978838805,50.40339830101022],[-122.42081039317087,50.40351707546285],[-122.42104422875714,50.403611229271156],[-122.42132071472913,50.403656151011944],[-122.42155653145312,50.40374755153642],[-122.42176346378275,50.40387007560289],[-122.42196468245291,50.40399803793845],[-122.4221771981541,50.40411680968192],[-122.42238782521721,50.40423720244754],[-122.42256523114409,50.40437676562138],[-122.42274461748302,50.40451357627741],[-122.42297788439664,50.404615021963544],[-122.42321866869455,50.40471051976063],[-122.42342952374219,50.40482810151392],[-122.42361400666466,50.40496733339544],[-122.42375859702115,50.4051210131366],[-122.4238455916106,50.40529026985384],[-122.4239001190076,50.405469167004654],[-122.42395126667414,50.40564626349827],[-122.42399174055913,50.40582469782868],[-122.42401982699475,50.40600386586332],[-122.4239951626653,50.4061818888367],[-122.4238763806913,50.40634730950398],[-122.42381860079225,50.40652088940658],[-122.42379204487,50.406700542660374],[-122.42377945601261,50.406881762415786],[-122.42378281233042,50.4070618144058],[-122.42381103230815,50.40723929505916],[-122.42390488129423,50.40741102170854],[-122.42400967207035,50.4075780450059],[-122.424121669814,50.407743042485585],[-122.42423907214749,50.407906531767665],[-122.42436543782516,50.408068060876026],[-122.42450999589282,50.4082223044172],[-122.42469656417458,50.40835765989911],[-122.42492809832099,50.408459044290716],[-122.42517695673227,50.40854185922928],[-122.42543153029494,50.40861924375389],[-122.42568606069092,50.40869718408895],[-122.42593856862078,50.4087784324866],[-122.42618905412905,50.40886298895967],[-122.42640200362493,50.40897669938786],[-122.42656287325764,50.40912527588732],[-122.42676259343948,50.40925037203868],[-122.42695488757354,50.409380284661566],[-122.42712863622125,50.409521969858105],[-122.42730234193883,50.409664211159715],[-122.42748158540283,50.40980326577759],[-122.42767933258033,50.409931103472836],[-122.42788991265985,50.41005260668785],[-122.42807496374233,50.41018509058837],[-122.42819598957723,50.410347566700764],[-122.4283115228996,50.41051268164525],[-122.42843975621906,50.41067314045022],[-122.42856974753326,50.410833655716225],[-122.42869257868769,50.4109956224201],[-122.42880464599861,50.41116005806156],[-122.42889698642266,50.41132892304689],[-122.42897667362872,50.41150186961261],[-122.42904564061071,50.41167672881032],[-122.42910929275361,50.411851974429936],[-122.42917290139141,50.412027776376085],[-122.42922943726299,50.412203917099234],[-122.42927705443645,50.412381461756546],[-122.42931408507312,50.412559222978025],[-122.42932629436584,50.412738991293004],[-122.42934026021227,50.41291882516959],[-122.4293612108655,50.41309944192028],[-122.42942680082264,50.413272500123234],[-122.42954058964217,50.41343754758114],[-122.42963460596414,50.4136075898726],[-122.42972150620574,50.413778518357304],[-122.42981381141318,50.41394793842666],[-122.42992219831284,50.41411450263823],[-122.43002707157129,50.41428095347284],[-122.43011397388261,50.414451890480294],[-122.43019367125278,50.41462483549601],[-122.43027521444914,50.41479672423122],[-122.43033267318413,50.414983572762594],[-122.43047855925654,50.41512154595341],[-122.4307183675259,50.41520799540505],[-122.43098775626852,50.415276836217686],[-122.43125363059657,50.415345572146954],[-122.43151616922185,50.41541194172083],[-122.43178059850625,50.41547668908325],[-122.43202594889799,50.41555994011637],[-122.43225696059645,50.4156685953374],[-122.43249575554869,50.4157679457805],[-122.43258197704097,50.41592535368914],[-122.4325935351617,50.416113538682154],[-122.43266076587535,50.41628833804563],[-122.4327261958415,50.416463637154784],[-122.43278094983856,50.4166402749147],[-122.43281795308073,50.4168185993935],[-122.43279814636156,50.41700240050323],[-122.43277315609966,50.41718491007104],[-122.4328359154211,50.41734943444227],[-122.43300246184232,50.41749369164702],[-122.43320319733597,50.41762891843746],[-122.43340257507707,50.41775904478743],[-122.43360933785996,50.41788490991216],[-122.43374543784479,50.41803549139464],[-122.43381632388943,50.418208715610156],[-122.4338672590281,50.41838917002232],[-122.43393265206129,50.41856503333259],[-122.43401061390239,50.41873791816004],[-122.43409393644536,50.41890985975843],[-122.43417550291927,50.41908173573093],[-122.43425878278052,50.419254233530054],[-122.43434751274076,50.41942465733556],[-122.43444520771382,50.41959312023134],[-122.43455547125356,50.419758613516144],[-122.43468010486013,50.419920637300386],[-122.43481388165924,50.42007844756537],[-122.43497850983819,50.420224888309654],[-122.43515425995616,50.420364372007654],[-122.43522866999497,50.42053770788951],[-122.43524613276396,50.420718208737725],[-122.43519861340953,50.42089605236645],[-122.43519498630702,50.42107587471094],[-122.43512873918428,50.42126774484419],[-122.43522184266064,50.42127129765523],[-122.43549781156743,50.42121269760547],[-122.43577801970892,50.421189663205716],[-122.43606014929044,50.42118692402709],[-122.43634183539376,50.421189801955975],[-122.43662312345639,50.4211977226492],[-122.43690577107049,50.42121074261828],[-122.43718423954813,50.421232066626544],[-122.4374554883555,50.42127789939676],[-122.4377261620244,50.42133102750026],[-122.4380026844936,50.4213770284135],[-122.43827538311493,50.42142683737364],[-122.43853071575475,50.42149577280401],[-122.43875689873641,50.421599200746016],[-122.43896009048139,50.421726064103765],[-122.43917255798112,50.421847035202624],[-122.4394081957384,50.421942326361716],[-122.43966075776981,50.42202410753626],[-122.43991147542613,50.42210694446395],[-122.44014685073323,50.42220559933771],[-122.44037813670504,50.422311436796775],[-122.44060920300514,50.42242007370219],[-122.44083284258053,50.42253352781276],[-122.44104193606837,50.422652704145385],[-122.44123112231054,50.42277855523175],[-122.44134187233374,50.42309475357571],[-122.4414001386496,50.42327206386538],[-122.4414656126353,50.42344735628816],[-122.44157789030042,50.42361008931626],[-122.44173521374634,50.42376021535733],[-122.44184191052095,50.42392670944303],[-122.44186660831903,50.424105190664356],[-122.4418788699675,50.42428496397595],[-122.44188757259727,50.424465180784765],[-122.44190335041019,50.42464505789775],[-122.44193688092273,50.42482326469167],[-122.4419988000816,50.42499900000064],[-122.44205184230765,50.42517558384578],[-122.44208001309663,50.425354733992556],[-122.44209051826051,50.4255344505741],[-122.44208867589602,50.42571432852844],[-122.44207272816888,50.425894311428536],[-122.44204627800573,50.42607339932811],[-122.44200405218135,50.426251422937945],[-122.44192869554567,50.42642500007522],[-122.44183936433326,50.42659701289067],[-122.4417833414146,50.426771210583965],[-122.44179389029291,50.426950361505746],[-122.4418219720356,50.42713064206183],[-122.44183599277655,50.42731046215593],[-122.44184473967583,50.4274901218922],[-122.44182356094137,50.42766937867214],[-122.44181117085154,50.427848917560674],[-122.44183578224829,50.42802851968074],[-122.44188887195932,50.42820453756723],[-122.44198467941361,50.42837517907499],[-122.4420734564317,50.42854559475882],[-122.442039929675,50.42872501275453],[-122.44226330474852,50.42881990204211],[-122.44253599807138,50.428892757139565],[-122.44280290527584,50.42883778803848],[-122.44306537853613,50.428771987805824],[-122.44333088084521,50.428712464981324],[-122.44360099262794,50.428661528451805],[-122.4438742213517,50.4286157564899],[-122.44414876618352,50.4285756401023],[-122.44442462580918,50.42854119722808],[-122.44470202227468,50.42850960998047],[-122.4449794628791,50.4284774566674],[-122.44525857183203,50.42844648977637],[-122.4455354816546,50.42842106567327],[-122.44581497896647,50.42840753665955],[-122.44609754150272,50.428422220225706],[-122.44637887630425,50.428430116105474],[-122.44666425661738,50.428431393369124],[-122.44694783465279,50.42843317892079],[-122.44722908138014,50.42844219441265],[-122.44750214935206,50.42846556682646],[-122.44776452325084,50.42853526215187],[-122.44799203526954,50.428644891929416],[-122.44818451677406,50.42877420818565],[-122.4483638565457,50.4289137821201],[-122.44854869188062,50.42905071580192],[-122.44876139530491,50.42916943286256],[-122.44901946534989,50.4292491084373],[-122.44921547507155,50.42935604374647],[-122.44929487441442,50.429534024257585],[-122.44944499251665,50.42968671294048],[-122.44962627412274,50.42982409744738],[-122.44983898402015,50.42994281232732],[-122.45006870713848,50.4300468851137],[-122.45031575178093,50.43013239400267],[-122.45057435933676,50.430205335252246],[-122.45084101320475,50.430265605184864],[-122.45109588577967,50.43034124154154],[-122.4513447355944,50.43042624799338],[-122.45158985047479,50.43051394126351],[-122.45183483438824,50.430603312149415],[-122.45207788432955,50.43069487872987],[-122.45231724384313,50.43078856680454],[-122.45254513091336,50.43089369985847],[-122.45277099667032,50.43100214148267],[-122.45299136906598,50.431113222783964],[-122.45316893134353,50.43125328868737],[-122.45333005576647,50.431400709414206],[-122.45348564375789,50.43155131747818],[-122.45364303443048,50.4317014251409],[-122.45380781041936,50.431847270436194],[-122.45399487214199,50.43197865091171],[-122.4542244833533,50.43208439299456],[-122.4544335238431,50.43220522980106],[-122.4546314453411,50.43233301584653],[-122.45482743378025,50.43246298883281],[-122.45502355585799,50.43259127431113],[-122.45522701892516,50.432715862588026],[-122.45543237287991,50.43283882852009],[-122.45563957472712,50.432960719520985],[-122.4558485793669,50.43308210992663],[-122.4560539810715,50.43320450928047],[-122.45625749342865,50.43332853917483],[-122.45645542500817,50.43345632178738],[-122.45664039152517,50.43359211944191],[-122.45681801854063,50.4337316226747],[-122.45699358007818,50.43387500008746],[-122.45719371442777,50.433997228641694],[-122.45744650847654,50.43407728094463],[-122.45770497404614,50.43415244875053],[-122.4579273080493,50.43426133245092],[-122.45810129389825,50.43440239932969],[-122.45825145724216,50.43455508414226],[-122.45839256797673,50.43471084421891],[-122.45852110851561,50.43486958521047],[-122.45848421429366,50.43504777265874],[-122.45834350739962,50.43520128540416],[-122.45829685349854,50.435391531322495],[-122.45831371246179,50.43555850780685],[-122.45860410396502,50.43556385352148],[-122.45887608335691,50.43553430615086],[-122.4591390121532,50.43546285959663],[-122.4594072567395,50.435413507019454],[-122.45968903485827,50.43539383407772],[-122.45997274580598,50.435394455574645],[-122.4602474001709,50.435420661463766],[-122.46051603176338,50.4354787203478],[-122.4607807523701,50.43554170979447],[-122.46104951695885,50.4355980892109],[-122.46130052508246,50.43567863284518],[-122.46151461157231,50.43580298943955],[-122.46173344738418,50.43591174407893],[-122.4620037989346,50.43592543779293],[-122.46228988687672,50.43591825708403],[-122.46256880929852,50.43595752139556],[-122.46283168884541,50.43602158055467],[-122.46305430884904,50.436127079441675],[-122.46325939229273,50.43625395207197],[-122.46351053950302,50.43633281247191],[-122.4637201082806,50.43644745691516],[-122.46386119948632,50.43660377504117],[-122.46399495115104,50.436763799327835],[-122.46413433044816,50.43691949559454],[-122.46435453980388,50.437010861962506],[-122.46463738087576,50.43700020672801],[-122.46490277481209,50.437054777428585],[-122.46516544475017,50.437121630910056],[-122.46542605016515,50.43719234941976],[-122.46568872167776,50.437259201651024],[-122.46595148181132,50.43732493148369],[-122.46621230887128,50.43739284818815],[-122.46646918122696,50.43746626105256],[-122.46673163596401,50.4375359197073],[-122.4669583593625,50.437634235604875],[-122.46711928880828,50.43778499146999],[-122.46733225778762,50.43790142808452],[-122.4675545463487,50.43801140478002],[-122.46778052727825,50.438119258482814],[-122.46800466399617,50.43822816849351],[-122.46822488998657,50.43834201847347],[-122.46844335887872,50.438455811992476],[-122.46866749816283,50.438564729592834],[-122.46890113249992,50.43866494358119],[-122.46914993037853,50.43875158737903],[-122.46940901226256,50.438819440451525],[-122.46968905535631,50.438844669061],[-122.46993644849779,50.43892676800047],[-122.47017373525067,50.43902541306112],[-122.47040526613064,50.43913005493258],[-122.47062761173552,50.439239468904205],[-122.4708441573241,50.43935544513996],[-122.4710721307364,50.43946053901062],[-122.47132462909985,50.43954504623413],[-122.47156794207939,50.43963432554664],[-122.47176444945275,50.439758658565864],[-122.47193274218627,50.43990570915497],[-122.47211773744807,50.440042045285274],[-122.47232132542459,50.4401660356794],[-122.47254741620264,50.440272757612085],[-122.47280225042034,50.440350021324015],[-122.47299111741196,50.440481980711105],[-122.47312139631049,50.440641881351155],[-122.4732390180159,50.4408058684003],[-122.47340964723772,50.44094568545917],[-122.47361504463049,50.441069172870264],[-122.47382593760055,50.441190018731966],[-122.47407365753084,50.44126818649271],[-122.47431891954433,50.44135526298164],[-122.47455635973401,50.44145222020076],[-122.4747881319388,50.44155405266744],[-122.47499353586743,50.44167753743339],[-122.47516391164511,50.44182070798504],[-122.47523494970586,50.44199446593595],[-122.47532568147106,50.442164342626704],[-122.47546872014641,50.44231902260619],[-122.47561716669344,50.442472182908524],[-122.47580773469949,50.44249229282451],[-122.47606557729813,50.442418395561866],[-122.47632359424405,50.44234225414848],[-122.47656002124809,50.44224912448843],[-122.47674843333277,50.44211622466813],[-122.4769235649768,50.44197279053591],[-122.4771001918338,50.44183276831879],[-122.47727681689501,50.441692754770564],[-122.47745854145067,50.44155514308529],[-122.4776436057469,50.441419895326],[-122.47783381294171,50.44128649298711],[-122.47802406313858,50.44115252492527],[-122.47822591938326,50.44102793066309],[-122.4784512095021,50.44091925739203],[-122.47869637282024,50.44082695866098],[-122.47895363260864,50.4407603415944],[-122.4792393542835,50.440758169706086],[-122.4795065462537,50.44081276105519],[-122.47978230315383,50.440847948455705],[-122.4800572653659,50.44087073082076],[-122.4802920820625,50.44097883777338],[-122.48055768469519,50.44100863583522],[-122.4808463909152,50.440990810739],[-122.48112403098172,50.44100187208784],[-122.4813850336374,50.44106806565827],[-122.48163356223532,50.44115861191392],[-122.48184091632903,50.44127989630729],[-122.48208065601204,50.44137015358706],[-122.48234135579324,50.441440275588405],[-122.48261044469933,50.44149323702401],[-122.48288379444347,50.44153676975533],[-122.48316127338076,50.441572560907844],[-122.4834393646794,50.44160049891174],[-122.48371978319045,50.44162119593136],[-122.48400076973161,50.44163460516275],[-122.48428377698137,50.441644704100135],[-122.4845667403134,50.44165536769255],[-122.48484763993606,50.44166989655873],[-122.48512445543757,50.44169160031157],[-122.485398463723,50.44172671797338],[-122.48566514469265,50.4417880251086],[-122.48592181158877,50.4418647578745],[-122.48617087846596,50.44194855422074],[-122.4864082598712,50.44204660778676],[-122.48664366593489,50.442147405078785],[-122.48688904428785,50.442233331906706],[-122.48715107826571,50.44230910715143],[-122.48742052726789,50.44235756974166],[-122.48769668090021,50.442365193576165],[-122.48797994320849,50.44234942640511],[-122.48826197072891,50.44232687212659],[-122.48854360550311,50.442309360662684],[-122.4888236555475,50.44228955820878],[-122.48910225278583,50.44226576864154],[-122.4893797022462,50.442234070218674],[-122.48964984290659,50.44218302243187],[-122.48990920166763,50.4421119486171],[-122.49015245844019,50.44202125620767],[-122.49037271143935,50.4419090265256],[-122.49055887333803,50.44175916511865],[-122.49079610770794,50.44174587438651],[-122.49104550171528,50.44184822938767],[-122.491239572904,50.441982002601186],[-122.49148908568755,50.44206018704964],[-122.49173442882991,50.4421466685515],[-122.49196795845535,50.44224907708693],[-122.49220363958555,50.44234649720406],[-122.4924565856422,50.44242591248814],[-122.49271748200249,50.442493766449104],[-122.49297644638347,50.44256380774254],[-122.49322548626726,50.44264815356074],[-122.4934723767576,50.44273748674715],[-122.49371948578691,50.442824019397946],[-122.49397072269817,50.44290281019673],[-122.49423535845159,50.44296797177818],[-122.49451426501273,50.44300827721777],[-122.49478764800622,50.44300623254451],[-122.49505698720064,50.44294277640672],[-122.49533607994721,50.44293529718198],[-122.49559724493048,50.44299977896995],[-122.49585191582817,50.443079798433054],[-122.49608941199944,50.44317670038902],[-122.49635444471177,50.443236804367366],[-122.49663203185774,50.44327143997145],[-122.4969114914304,50.44328196094105],[-122.49719392936778,50.44327682275957],[-122.49747539175995,50.44326154119661],[-122.49775438257527,50.44323267740358],[-122.49803426018815,50.44321509530331],[-122.49831621845122,50.44321612858739],[-122.49859963085281,50.443221138457815],[-122.49888243336265,50.44323400910079],[-122.49916089273071,50.44325742049066],[-122.49943272857003,50.44329804787809],[-122.4996959209888,50.443359210139384],[-122.49995639856319,50.44343265594776],[-122.50021503153617,50.44350716742358],[-122.50046984362585,50.44358549804101],[-122.50072057459668,50.44367100421984],[-122.50097981909607,50.44373766136395],[-122.50125864944978,50.44377907160317],[-122.5015511379324,50.44380347728495],[-122.50182680497097,50.44379474898778],[-122.50206338086323,50.44372180389697],[-122.5022611242591,50.44358129482059],[-122.50244312806826,50.44343915538511],[-122.50260947797294,50.443294281824095],[-122.50277252764126,50.443146488093575],[-122.50294397751966,50.44300401497873],[-122.50312901523218,50.44286815958396],[-122.50332078091586,50.44273645643983],[-122.50351927526005,50.44260889653911],[-122.50372946893872,50.44248957695782],[-122.50395307727216,50.44237910948782],[-122.50416489643253,50.442261531670916],[-122.50436008710766,50.44213105033433],[-122.50461004475379,50.44204446978301],[-122.50486312688693,50.44196305208621],[-122.5050494354482,50.4418334141319],[-122.50512474893159,50.44165755392237],[-122.50513873636683,50.44147694475095],[-122.50511584182635,50.44129460620326],[-122.50504983431743,50.441122720710716],[-122.50491579363039,50.44096443399267],[-122.50477111692808,50.44080693628755],[-122.50467671737144,50.44063752894562],[-122.50461092936976,50.44046284304536],[-122.50455050443566,50.44028719260291],[-122.50448832095898,50.4401114956271],[-122.50442253514736,50.439936800526546],[-122.50434787073677,50.4397629589282],[-122.50426076882651,50.43959040737231],[-122.5041465549396,50.439426554884314],[-122.50395571236588,50.43929628010644],[-122.5037777878989,50.43915853155121],[-122.50365096441219,50.43899822111222],[-122.50353152254428,50.43883364510867],[-122.50339745016589,50.438675921492376],[-122.50324892190345,50.43852279764229],[-122.50311309388229,50.43836500919087],[-122.50297357578066,50.438209362193604],[-122.5028286977013,50.43805466142712],[-122.50267832824848,50.437902603031354],[-122.5025041897283,50.437761606701436],[-122.50234103699866,50.437615324926405],[-122.50220710315642,50.437455912446],[-122.50211263327489,50.437287624016214],[-122.50205942829157,50.437109958794686],[-122.50203628755618,50.436930984021686],[-122.5020220241731,50.4367511737569],[-122.50199892689528,50.4365716424829],[-122.50196343566721,50.43639284462858],[-122.50189762121481,50.436218712610426],[-122.50179788060585,50.43605025722008],[-122.50168192645526,50.435886345993836],[-122.50155516272466,50.43572547609286],[-122.50144461478821,50.43556005278653],[-122.50134663545289,50.435391652337415],[-122.50124689872499,50.43522319627828],[-122.50114536148992,50.435055241018226],[-122.50104022112731,50.43488830542387],[-122.50091526441928,50.43472692469494],[-122.50079909908908,50.434565821269594],[-122.50077420656069,50.434386790171],[-122.50074408311934,50.434207036124356],[-122.50068912907125,50.43402931406803],[-122.500641164592,50.43385237035128],[-122.50063033757925,50.433673783043304],[-122.50067422744921,50.43349411610296],[-122.50076660272003,50.43332554282325],[-122.50090566243423,50.433168555036985],[-122.50104647852301,50.43301163151169],[-122.50117520516504,50.432851510351384],[-122.50130045867127,50.43269071264497],[-122.50142232533071,50.43252812557231],[-122.50153214587745,50.43236178452852],[-122.50159313237461,50.432188846190336],[-122.50157188408105,50.432008247483544],[-122.50155230700011,50.43182882602259],[-122.50153273007466,50.431649404517984],[-122.50151315330476,50.43146998296988],[-122.50149181871997,50.43129050589361],[-122.50147769005648,50.43110900709683],[-122.50144387618984,50.430931385152654],[-122.50130065386313,50.43077842367371],[-122.50119547975083,50.43061204375413],[-122.50106860246338,50.43045285046589],[-122.50093460738546,50.4302945568361],[-122.50079881218772,50.43013676393467],[-122.50066301724291,50.42997897981048],[-122.50052902499168,50.429820685597214],[-122.50039868029839,50.42966081499422],[-122.50027549824058,50.42949948799562],[-122.5001541619339,50.429337094524406],[-122.50003818713952,50.42917374560152],[-122.49992230016748,50.42900927471449],[-122.4998081719124,50.428844859184125],[-122.49969584550102,50.42867994259813],[-122.49958352060568,50.428515016889975],[-122.49946939483215,50.42835060090977],[-122.49935531303942,50.428185628360474],[-122.49923938793671,50.428021712975486],[-122.49910540647869,50.42786341665644],[-122.4990469947885,50.42768501594409],[-122.49892343107132,50.42752873968324],[-122.49874736926473,50.42739048014992],[-122.49855505317768,50.427257329587],[-122.49835909243512,50.42712574582885],[-122.4981685364184,50.42699265008634],[-122.49797978248384,50.42685905311653],[-122.49779103036188,50.42672544682888],[-122.49760223548982,50.42659240559062],[-122.49741168395227,50.426459308459386],[-122.49722289130943,50.42632626653125],[-122.49703045332201,50.426194800352754],[-122.49685268862102,50.42605591663361],[-122.49669144057879,50.425908567139224],[-122.49653208227816,50.42575958574249],[-122.49637812920379,50.425609083582636],[-122.4962278660697,50.42545645766886],[-122.49608480971433,50.42530180120716],[-122.49596525746813,50.42513945787503],[-122.49585299818322,50.42497397124269],[-122.49573533561968,50.42481000493949],[-122.49562145126231,50.42464277522274],[-122.495494740657,50.42448189614364],[-122.49533684456495,50.42433689020157],[-122.49514437734052,50.42420597684378],[-122.4949335505331,50.4240846035554],[-122.49471156907317,50.42397074898121],[-122.49448357494104,50.423866267051785],[-122.49424043193022,50.4237753580096],[-122.49399535799144,50.423686636444955],[-122.49375410562922,50.42359409471422],[-122.49351105268309,50.42350206222981],[-122.49326589452072,50.423414460835446],[-122.49299241145091,50.42335126985516],[-122.4927972389283,50.4232326365781],[-122.49263794683144,50.423083083696184],[-122.49249881740135,50.42292348973434],[-122.49237937149167,50.42276002024323],[-122.49230649619233,50.422586778872294],[-122.49224622946416,50.42241000498098],[-122.49215547444975,50.422240128975176],[-122.49204683868811,50.4220736273453],[-122.49192370713574,50.421912289546775],[-122.49179161418297,50.42175291701169],[-122.49165943498748,50.42159466610096],[-122.49152369763085,50.42143686910918],[-122.49137724214714,50.421280972700515],[-122.49123970591285,50.42112367607353],[-122.49118441317638,50.42095099008721],[-122.49120732484995,50.420769534443735],[-122.49124236476335,50.420590711917974],[-122.49128263306365,50.42041262167725],[-122.49133516049962,50.420235477326955],[-122.49140328761648,50.42006163377157],[-122.49149755863935,50.419891433821654],[-122.49159204653492,50.41971843370267],[-122.49170521280021,50.419554454647475],[-122.49197197597773,50.419522415002625],[-122.49225192721862,50.41950203793831],[-122.49253170390934,50.41948390380096],[-122.49281169857869,50.41946295992688],[-122.4930890486424,50.41943069490695],[-122.49335785796829,50.41937228472134],[-122.49362495231667,50.419313261848124],[-122.4938984813408,50.419284805454325],[-122.49417879401395,50.41928242822114],[-122.49445994924766,50.419291889461675],[-122.49474247052196,50.41930644928025],[-122.49502499197833,50.419321008378894],[-122.49530601735808,50.41933214571579],[-122.49558673847014,50.419347204222035],[-122.49586776415121,50.41935834013515],[-122.49614974761755,50.419357135314954],[-122.4964295218464,50.419338991341526],[-122.4967083217552,50.41931069471538],[-122.49697026908255,50.4192498188538],[-122.4971770743405,50.41912758805744],[-122.4973906466512,50.41900895349781],[-122.49761239680174,50.4188984400227],[-122.49783581563521,50.41878911242914],[-122.49806424548058,50.41868330748296],[-122.49829913827033,50.41858502053246],[-122.49854225154851,50.41849430707158],[-122.49879824954351,50.41841917742324],[-122.49906053752143,50.418353800287896],[-122.49931803038612,50.41828209042215],[-122.49957569637658,50.41820813630339],[-122.49983164720177,50.41813356964233],[-122.5000875978779,50.41805899340902],[-122.50034526133676,50.41798503748169],[-122.50060450751026,50.417913380099634],[-122.50084418459491,50.417821428691745],[-122.50106429308279,50.417709174403335],[-122.50127446434978,50.417588733942964],[-122.50148125036297,50.41746649486726],[-122.50167822914132,50.41733439144792],[-122.50188325477994,50.41721210507583],[-122.5021195414103,50.4171183526436],[-122.50237565635986,50.417041527379105],[-122.50263827804294,50.416971663331246],[-122.50289751476656,50.416900000498295],[-122.50314874554026,50.416817963294626],[-122.50337843223126,50.41671837715019],[-122.50359008951752,50.41660135309698],[-122.50379189623234,50.41647502128743],[-122.50417732442784,50.416229654893705],[-122.5045521671256,50.41628027318249],[-122.5048274464571,50.416319886737725],[-122.50510470108922,50.41635674597048],[-122.50538067665677,50.416387374523794],[-122.50565927747112,50.41640684846654],[-122.50594263121596,50.41638766943562],[-122.50622672289171,50.41635894961914],[-122.50650052943172,50.41637208065318],[-122.50676804407456,50.416420998849354],[-122.50703139327513,50.4164782238342],[-122.50729598058064,50.41654222560507],[-122.50755666300903,50.41661116869632],[-122.50781884335085,50.416683532053064],[-122.50807737922277,50.41675747125806],[-122.50833595966338,50.41683084444967],[-122.50859462768882,50.41690309519824],[-122.50884947845714,50.41697915652883],[-122.50910226874578,50.417059092806056],[-122.50935124117913,50.417142848681955],[-122.50959828435438,50.41722878332577],[-122.50983764801197,50.41732291423728],[-122.51006551421442,50.417429052694736],[-122.51029526864266,50.41753356775269],[-122.51052506782979,50.41763751691679],[-122.51075868675562,50.41773764536288],[-122.5110018735009,50.41782796244831],[-122.51124690605505,50.41791720351251],[-122.5114958442004,50.4180015109136],[-122.5117713571208,50.418038298074656],[-122.51201485117359,50.41812468199828],[-122.51223521966928,50.41823676919127],[-122.51246700135094,50.418337960482674],[-122.51271006511908,50.41842995201857],[-122.51295493033795,50.418521441885055],[-122.51319242073845,50.41861718836402],[-122.51335931488647,50.41876020273697],[-122.51357085762264,50.418712879567664],[-122.5137526820314,50.418571282584004],[-122.51398393852091,50.41847397365482],[-122.51424188507134,50.418396054569456],[-122.5145041069181,50.4183312063148],[-122.51478371157938,50.41829221126092],[-122.51505187996594,50.41824160126771],[-122.51525023359257,50.4181140164898],[-122.5154664464667,50.41800611047332],[-122.51573478483786,50.417953264111134],[-122.51601460285188,50.41791145685456],[-122.5162814858465,50.417854622988415],[-122.51651611866846,50.417759097464106],[-122.51673486317999,50.41764114762833],[-122.51696790886508,50.41754333117595],[-122.5172303385271,50.41747566732133],[-122.5175020135366,50.41742517079876],[-122.51778313568356,50.41741207193752],[-122.51803972834767,50.4173515369207],[-122.51827663062602,50.41724934076856],[-122.51853356770066,50.41718431723503],[-122.51881781337573,50.41717637894826],[-122.51910260560717,50.417184200914996],[-122.51938093061396,50.41718450488648],[-122.51964168291711,50.41711566722679],[-122.51987849456255,50.41701458048965],[-122.52010425642656,50.41689684467493],[-122.52033108291515,50.4167881383112],[-122.52057228401517,50.416721491490115],[-122.52085100848782,50.416762297456884],[-122.52113450195841,50.416786941855385],[-122.52139349255978,50.41671803589362],[-122.52165423910543,50.41664919346176],[-122.52192718669738,50.41660490686703],[-122.5222070634737,50.4165850105515],[-122.52248934507755,50.416556759334824],[-122.52250406236945,50.41638853777467],[-122.52249050161714,50.41619862893583],[-122.52256026019103,50.41602482053466],[-122.52266301962854,50.41585711270184],[-122.52277786370787,50.41569259988005],[-122.52290646400886,50.41553245005144],[-122.5230419201415,50.41537476431182],[-122.52318251821978,50.41521892208464],[-122.5233300148826,50.41506498746591],[-122.52348595185488,50.41491581569825],[-122.52365212929534,50.41477090544642],[-122.52381667821038,50.414624252527574],[-122.5239676854594,50.414470427209984],[-122.52412537561324,50.41432130956184],[-122.52435808630597,50.414227399159145],[-122.52445439767527,50.41407466440137],[-122.52453297485467,50.41390057346925],[-122.52462882204455,50.41373096459919],[-122.5247778072236,50.41358044843898],[-122.5249660870938,50.41344578373619],[-122.52514078258882,50.41330450313446],[-122.52529846480374,50.41315538360081],[-122.52544933227703,50.41300324324833],[-122.52559672767224,50.41285042704055],[-122.52574768012516,50.41269715539689],[-122.52587103237504,50.41253627978745],[-122.52596331431407,50.412367115714645],[-122.5260435536668,50.41219420029197],[-122.52612726410246,50.41202195140431],[-122.52622652951642,50.411853572799906],[-122.5263344084825,50.411687704266605],[-122.52643885779432,50.411520612532975],[-122.52653464998505,50.411351557950915],[-122.52661137091121,50.4111785317196],[-122.52668290589823,50.41100421828197],[-122.52675615474267,50.41083051628636],[-122.5268189454219,50.41065537081602],[-122.52684505062807,50.41047625938082],[-122.52687466999707,50.410297258066954],[-122.52690424633776,50.41011881314619],[-122.52693035089598,50.409939701570806],[-122.52695469808319,50.40976053486654],[-122.52697913135209,50.40958024625882],[-122.52697004881715,50.40940059832129],[-122.52683923810686,50.409246364012446],[-122.52666517811824,50.409104835153066],[-122.52652206868942,50.408950223777005],[-122.52638624829736,50.40879245800237],[-122.52625767271326,50.40863211224579],[-122.5261453000332,50.40846721829066],[-122.52604913080408,50.408297767208545],[-122.52598686496535,50.40812263171855],[-122.52593175777021,50.4079460292743],[-122.5258373475362,50.40777663299691],[-122.52572677909171,50.407611228124075],[-122.52560365303485,50.40744880295835],[-122.52546603979467,50.407291546073445],[-122.52530292205459,50.407145301483354],[-122.52511970161757,50.4070085381646],[-122.52492910811974,50.40687605047597],[-122.52470568107631,50.40675826737873],[-122.52458358391308,50.40660543632547],[-122.5245376145258,50.406424621012285],[-122.52453042919218,50.40624334000802],[-122.52455649740929,50.406064793540736],[-122.5245949515122,50.40588550203316],[-122.52462457678364,50.40570650029197],[-122.52462608987312,50.40552661659102],[-122.52462057499189,50.405346512370556],[-122.5246396579122,50.40516717978513],[-122.5246657685842,50.40498806763283],[-122.52461945452575,50.40481174841351],[-122.52457147088224,50.404634243177426],[-122.52455361413534,50.40445431832622],[-122.52449667373772,50.404278781100125],[-122.52441123390373,50.40410741471225],[-122.52432228084858,50.40393593797247],[-122.52424395636609,50.40376367001642],[-122.52417107590922,50.403589323620864],[-122.5241088238325,50.4034141860437],[-122.52404665857357,50.403237926528725],[-122.52399687843636,50.40306093098488],[-122.52397015379621,50.40288185190048],[-122.52397197191742,50.40269803655636],[-122.52398266006279,50.40251338393006],[-122.52398061903392,50.402333945703624],[-122.52393445289658,50.40213288942948],[-122.52270526553671,50.401994780820644],[-122.52154364691455,50.39896692835016],[-122.52332821061083,50.3953658138715],[-122.52447590365608,50.39216639917863],[-122.52448067262209,50.38679436963926],[-122.52232417565399,50.382972745636344],[-122.51830049543689,50.377436915317],[-122.51427691566332,50.37446838839585],[-122.50783606400249,50.37236083693765],[-122.49988790208111,50.371907926606376],[-122.49005181303585,50.371110065492964],[-122.4833544106203,50.36996683578354],[-122.4809487488396,50.369400029453374],[-122.47460246922354,50.36466287532608],[-122.47021825034498,50.359692089929695],[-122.46120887137074,50.35358520157945],[-122.45655352008123,50.35084939963096],[-122.44994855621657,50.34696210872527],[-122.4450455159772,50.343992863067136],[-122.44173906835523,50.34148414186268],[-122.44004532223664,50.33708143382539],[-122.43941647125922,50.332915976111494],[-122.4387080526177,50.32869055545839],[-122.4381735395656,50.32869021074909],[-122.4324539558276,50.330402725163594],[-122.42477462289786,50.33234179052925],[-122.41433161704524,50.33399506914899],[-122.40299478646423,50.333077457579144],[-122.396657864558,50.33068066095843],[-122.39122178254293,50.32599243134667],[-122.38695341777672,50.32113789141202],[-122.38382317640226,50.319827509890935],[-122.37963615732151,50.31942276804661],[-122.37678034256649,50.31890459618879],[-122.37000367971024,50.31519252887787],[-122.3669784213522,50.31170910462229],[-122.36342249743936,50.30696065297457],[-122.36004423009943,50.29913748700035],[-122.35933046539687,50.295426136189256],[-122.35747984200735,50.289947795126444],[-122.35809903226061,50.2874918049268],[-122.36292577283355,50.282692965372696],[-122.3668622875966,50.276015894561326],[-122.36767856594867,50.26899027489369],[-122.37081509528795,50.26368380615801],[-122.36484268749598,50.25950966711437],[-122.35825594949648,50.25722611305571],[-122.35255477917029,50.254766667591106],[-122.3456043427169,50.2521322453316],[-122.3426714515004,50.25018908139197],[-122.34232104364918,50.24722225183456],[-122.34616386195358,50.24379810443671],[-122.35489719974862,50.24083472087326],[-122.35962888918645,50.238036264006666],[-122.36088602778248,50.234443042158105],[-122.35786033886421,50.232613029978175],[-122.34984231741021,50.230375430824814],[-122.34307964713042,50.22911592891395],[-122.33434879281022,50.22894034829993],[-122.3242803389211,50.22916162327423],[-122.31412728518745,50.228694603631745],[-122.3108331128642,50.22812098882657],[-122.30450300405062,50.22811385836097],[-122.29569746081182,50.227307202396325],[-122.28919923021355,50.22575283047224],[-122.28322499616884,50.22483167149648],[-122.27486039925921,50.22430648941258],[-122.26693534212748,50.22338827968665],[-122.26649697181176,50.22052933601064],[-122.27257898766598,50.216542591015234],[-122.27535867201527,50.20935238324139],[-122.27563040165859,50.20775160995888],[-122.27947968120382,50.20187601789808],[-122.28830769452068,50.20028744624547],[-122.29738787844819,50.1990385367391],[-122.29989258239164,50.195331217106805],[-122.30168634800192,50.19122083917898],[-122.30846735581463,50.18769048522007],[-122.31327143865597,50.18535086883591],[-122.31524974360363,50.18032895259807],[-122.31526082201482,50.17621890204676],[-122.31135231545319,50.17341662736076],[-122.30369274340043,50.17278413192315],[-122.29639847273369,50.17317540015225],[-122.29364598743777,50.172028624028044],[-122.29011258639888,50.165856088239046],[-122.28870517978935,50.16043572172916],[-122.28800444147613,50.15597576894878],[-122.28259979857711,50.151117983826744],[-122.27558498818678,50.14779749533908],[-122.27220928411283,50.144024271485236],[-122.27409697746282,50.14031216084663],[-122.27286961374148,50.136145210968564],[-122.26648408287654,50.13116877391493],[-122.26108446899087,50.12665295016858],[-122.25894745910372,50.12487903735436],[-122.25745006307302,50.12282302641535],[-122.25647574847969,50.12121910905336],[-122.25266885873611,50.117622772436434],[-122.25098042868754,50.11653118602762],[-122.2458347121342,50.113557877217694],[-122.24106550127976,50.10823979565891],[-122.2396706773887,50.10292771141473],[-122.24030556532287,50.09761857181999],[-122.24743821470823,50.09277158010166],[-122.26201263274932,50.089307141871075],[-122.26850600518975,50.08726147198499],[-122.2722421936646,50.08572680206191],[-122.27883301229261,50.07888413825868],[-122.27901981565267,50.074717492688556],[-122.27975277554287,50.071056539281926],[-122.28199532153327,50.06535255152002],[-122.28502066138694,50.06101739518603],[-122.28680572001981,50.05627903795684],[-122.28681504995731,50.05410701217036],[-122.28052278225519,50.051192366348424],[-122.27351859145259,50.0489564808391],[-122.27183641320808,50.048326070175456],[-122.26483839850785,50.04432025694857],[-122.25961605344345,50.04134726318488],[-122.25616925149512,50.039060207699514],[-122.25138379500022,50.033340090964515],[-122.25035398056089,50.027341756973584],[-122.25126295895612,50.019691731716705],[-122.25323500880235,50.01593115597896],[-122.25323117190405,50.01478822682216],[-122.25270741728663,50.01147246492584],[-122.25165641210349,50.00930287692429],[-122.25166625019266,50.00884350361462],[-122.25166276417436,50.00650766931929],[-122.2526470796921,50.0038803397268],[-122.25296238227372,49.99970469175916],[-122.25225139135306,49.99713984561839],[-122.25064727628549,49.99473747375627],[-122.24664535276419,49.991946944995235],[-122.24317911344882,49.98977893405338],[-122.24077367957923,49.98812827385471],[-122.24228324676939,49.98641591007562],[-122.24660683724804,49.982066236376824],[-122.25254008068728,49.97680579304081],[-122.26040731014197,49.972796645861784],[-122.26466621343093,49.97022224086819],[-122.26465304816541,49.968848780569],[-122.26419907253523,49.96416561109433],[-122.26046092569032,49.95886060730925],[-122.25387736776,49.95304346027714],[-122.246597016421,49.947915499008445],[-122.2404658633403,49.94392824184361],[-122.23744537382377,49.94164619423407],[-122.23530911223962,49.93862516245959],[-122.23317829937197,49.935372401693506],[-122.23272652124459,49.931888640055234],[-122.23448713993574,49.92897333716321],[-122.24075798981994,49.92513520895525],[-122.24491162663719,49.92227483552817],[-122.24472804878405,49.919250488513114],[-122.24223880371011,49.91679870155867],[-122.23834510757209,49.91549110332204],[-122.23320085945818,49.914811729948404],[-122.22133695095839,49.913626922836585],[-122.21256405015276,49.91249543277175],[-122.1999079046829,49.910622969036496],[-122.1937001428618,49.91017097510936],[-122.19113546442856,49.90983191105874],[-122.1808681239556,49.90858279502304],[-122.17307469205556,49.908592630795795],[-122.1657170108706,49.909057272871],[-122.16015319123638,49.90957310576807],[-122.158466927088,49.9092348048497],[-122.15545205121256,49.90729086650044],[-122.15119272154699,49.903409801653645],[-122.14356775998648,49.895652072339196],[-122.14100120245055,49.89039716483969],[-122.14020481379532,49.88959688554962],[-122.13391159358079,49.88492108417286],[-122.1286924947447,49.87892810356348],[-122.12487424342706,49.87384443336611],[-122.12019221392661,49.86893705797913],[-122.1136319248584,49.86385461924451],[-122.11071657109665,49.861287918988474],[-122.1057608440284,49.85586567994659],[-122.10213573842455,49.85118121772516],[-122.10089001753225,49.84815414510501],[-122.09814896319368,49.84650169218454],[-122.09319540498781,49.84467610801606],[-122.08860523349298,49.841535446339975],[-122.08090492044293,49.8387970079849],[-122.0772842497536,49.83816446235906],[-122.07038445336927,49.83616714000032],[-122.06216787074707,49.832171467333126],[-122.05686878474509,49.830512341499094],[-122.05014772801381,49.82936896700102],[-122.04687728567572,49.82840014333442],[-122.04282281788295,49.825716339113086],[-122.04149314813193,49.824517005952494],[-122.0376026489484,49.820750218774364],[-122.03582202515405,49.819459010151114],[-122.0325764068774,49.817091181542224],[-122.02895532201208,49.81520608473866],[-122.02550757700408,49.81389178624887],[-122.02055539853579,49.812921131857806],[-122.01463775247886,49.81377384831757],[-122.01162953704014,49.81508548225935],[-122.00800417202258,49.816451605227336],[-122.00340648801793,49.81747693333498],[-122.000136424423,49.817478849139654],[-121.99948994865456,49.817870628792484],[-121.99606765427264,49.81881709740672],[-121.9908762692211,49.81978299935657],[-121.98976851843499,49.8216265128755],[-121.9870172370499,49.8284052119661],[-121.98281262981682,49.8336532425879],[-121.97735624097666,49.835077178772515],[-121.96998586594462,49.83720715124428],[-121.96750475395115,49.84071845272081],[-121.96971932726608,49.84481611796218],[-121.97253585674474,49.84856547016907],[-121.97129351458285,49.85223672256578],[-121.96652211559847,49.85628557457485],[-121.95789290263603,49.8578009396777],[-121.95471489650375,49.85783034325338],[-121.94710027508992,49.857161070377835],[-121.94028938457784,49.85716678948978],[-121.93334977165937,49.85940273899983],[-121.92727563631941,49.86426790775236],[-121.9226678827763,49.86814036717472],[-121.91803484719136,49.870414648258986],[-121.9106408828219,49.872086782534865],[-121.90321511825083,49.87255255412418],[-121.89763682916666,49.87214644646867],[-121.89004159456773,49.872325183302664],[-121.88507142422091,49.87197448872691],[-121.87868822958987,49.871225811649545],[-121.8721915425946,49.86911291811211],[-121.8671280919327,49.868411650731026],[-121.85763178923278,49.86666522534736],[-121.85228905216111,49.86505472589259],[-121.84758679656308,49.86406503396406],[-121.84241511299388,49.86211203752087],[-121.83121195487608,49.858483795228395],[-121.82418946548884,49.85683142966641],[-121.81865435943823,49.854302028431775],[-121.81624296072171,49.85295260447558],[-121.80810479164947,49.847988186371225],[-121.80300195761292,49.845169312660516],[-121.79826872998494,49.84257776289456],[-121.79411288177874,49.84204126489111],[-121.78760696647248,49.84449601824362],[-121.78399032180421,49.849439510507636],[-121.78330592063651,49.85082065435351],[-121.78253114755745,49.851973100214444],[-121.78154875596316,49.85597989318693],[-121.78056381739187,49.86016334880711],[-121.7771198614961,49.864421873206716],[-121.77057060983383,49.869106925148444],[-121.7654014290663,49.87166507229089],[-121.76070279412087,49.871246582134674],[-121.75751352590522,49.86612559468638],[-121.75531898230159,49.86185156937345],[-121.75525606523918,49.85847774914521],[-121.75324289067808,49.85540652699608],[-121.74389690772695,49.85136254096283],[-121.7380254281916,49.84980331902056],[-121.73333655406137,49.84915645655956],[-121.72789831599377,49.847140055278956],[-121.72509121399638,49.84275395488725],[-121.72526765031267,49.838183801587235],[-121.72405177551882,49.83435869630732],[-121.71886421987729,49.831024955908724],[-121.71659950042232,49.827556112840085],[-121.71174892274024,49.823016677187],[-121.71073133546827,49.820507654191566],[-121.71884069853684,49.81981956282539],[-121.72595890731536,49.81707350362573],[-121.72922669561832,49.81247998319671],[-121.73000830828717,49.806637116555216],[-121.72814931297482,49.801507960394275],[-121.72416111693745,49.795646674071406],[-121.7180133245238,49.792661776644756],[-121.7125201914551,49.791903905321924],[-121.70881537926878,49.792102948441254],[-121.70729786924075,49.79137489128534],[-121.70407183498196,49.788249459921026],[-121.70347423612938,49.78453760223118],[-121.7064788401993,49.77948764498696],[-121.70669355808026,49.776454740486706],[-121.70937421263339,49.77351824851569],[-121.71373049684962,49.77005513639889],[-121.71428505811778,49.76650452663303],[-121.71157043117651,49.76297860234795],[-121.70959088402847,49.76110778909935],[-121.6994593708611,49.756492686595344],[-121.69085772362995,49.75410451136866],[-121.68988669435772,49.75393662077747],[-121.67821234981206,49.7523078067367],[-121.67139677461714,49.75103961193715],[-121.66389751509155,49.75097879028337],[-121.65673738524315,49.750858866564386],[-121.64996850797655,49.7515954468381],[-121.64250786255256,49.75405033434285],[-121.63817271000954,49.753450723176634],[-121.62707827333735,49.7499833473512],[-121.61715488542048,49.747075453937214],[-121.61087763633459,49.74557721011285],[-121.60813217591908,49.74536754330716],[-121.59965776410276,49.74519258352166],[-121.58879280422028,49.743431191610085],[-121.58143748815888,49.74159695569207],[-121.57931218664339,49.74086762694031],[-121.57389349466706,49.738556034302206],[-121.56853514762479,49.73447530104774],[-121.56442622073237,49.73027048721833],[-121.55745981433026,49.72430835389333],[-121.54990558853534,49.7204146226279],[-121.54590226829623,49.717869705225155],[-121.53919274389925,49.711165259394726],[-121.53381644689799,49.70490639330848],[-121.53015508637625,49.70172420478018],[-121.52608441502127,49.700039659695086],[-121.51619926104745,49.69946475788674],[-121.50827665870578,49.70026035083271],[-121.49956260938002,49.70105252895068],[-121.48960987961922,49.70088136129581],[-121.4793334220711,49.697512718100725],[-121.47217039721322,49.69595168988268],[-121.46288979092115,49.69348575003975],[-121.45402475482388,49.68907601815096],[-121.44721017527382,49.6865414353755],[-121.44232979692464,49.68382599451448],[-121.43472020393283,49.68106461025554],[-121.43154150068584,49.68050877111472],[-121.42563743905718,49.680142547500935],[-121.42104753879522,49.6798211446272],[-121.41735219358155,49.67943750173305],[-121.4150558238821,49.67922193984943],[-121.41377033079654,49.67500079626063],[-121.39643997657333,49.677315785541154],[-121.37119957669951,49.680695339562796],[-121.3620732455428,49.675541419069994],[-121.35277877610302,49.67151968767494],[-121.33824405724114,49.67101526935323],[-121.32967804070024,49.66968237159779],[-121.32675854972615,49.66809674271248],[-121.32541128262254,49.66524558845265],[-121.32328384210507,49.6547966851167],[-121.32217643783683,49.650685808492064],[-121.32076169924514,49.64932180783495],[-121.31622767180302,49.644539938070935],[-121.31352767331863,49.63837478742444],[-121.31101686076036,49.63376002176533],[-121.30929821193772,49.629539919391895],[-121.30828661445642,49.624915854943495],[-121.30622668729596,49.620920919869064],[-121.29667240285941,49.61593080731514],[-121.28544311532491,49.610263334576146],[-121.27732974319298,49.60720813335048],[-121.26637719494664,49.60239425949653],[-121.257882115052,49.596883205728595],[-121.2536421632974,49.59473261292385],[-121.24737489759313,49.59115316875991],[-121.24319668062807,49.58694127924933],[-121.23638164693256,49.58171249505519],[-121.23125366621225,49.57772769884433],[-121.22771365215297,49.57540011484576],[-121.21817496436225,49.58068779453108],[-121.21165027244652,49.58854199985969],[-121.20878795480225,49.59380832368261],[-121.20825351930958,49.59255403992454],[-121.20118288765376,49.587545543759695],[-121.19000134776363,49.585697343831306],[-121.18054772487079,49.59195947488704],[-121.17724212123626,49.59745169933438],[-121.17657319562798,49.60277237600336],[-121.17657104344617,49.60305714284527],[-121.17104050532994,49.603589702579605],[-121.16325718776649,49.60774889862493],[-121.16059985909558,49.60863225320333],[-121.15880067196537,49.61110656776328],[-121.156876923408,49.61186641621179],[-121.15547990925447,49.61302080294366],[-121.15454588039154,49.61476356023185],[-121.15476032010783,49.617480563462614],[-121.15071745323574,49.61847943572027],[-121.14777359008403,49.61865376069181],[-121.1436894625913,49.61951556389309],[-121.14126748942527,49.619604845471194],[-121.13865543942467,49.6209667467176],[-121.13742763265243,49.62208734495184],[-121.13419356468215,49.62277326090614],[-121.12749078744199,49.61994640121285],[-121.12538378058831,49.61967976254056],[-121.12338424084399,49.61578674885095],[-121.12363431547445,49.61133837927621],[-121.12294037693577,49.6108231483613],[-121.1200441701002,49.610551400359256],[-121.1165021718153,49.61126971851656],[-121.11642038016757,49.61151766451781],[-121.11218917962158,49.61376196176884],[-121.11108411933475,49.614897120568344],[-121.10986279834796,49.615300051978664],[-121.10374814075577,49.62259347473009],[-121.09813841416388,49.62578503657162],[-121.09723943738688,49.626022327160854],[-121.09382762271828,49.62550602679025],[-121.09247953190284,49.62592306311381],[-121.09088705437873,49.62693993473232],[-121.09008059500991,49.62708948348127],[-121.0856252983647,49.62686393030866],[-121.08186710491383,49.62556741223635],[-121.07927665098556,49.625670532448964],[-121.07375730657661,49.62489360665839],[-121.07160088816681,49.624958161766145],[-121.06787075284637,49.62573069188257],[-121.06395115946614,49.62568352200117],[-121.06259815106863,49.62601431546308],[-121.06107087982573,49.62719209998694],[-121.06042561696654,49.62855027832947],[-121.06065269621476,49.63134065929032],[-121.05998900432469,49.63209554080945],[-121.05580380097103,49.632449129864426],[-121.05261732642846,49.631384428570485],[-121.05134117473567,49.63164307034179],[-121.04972172258354,49.63315690631105],[-121.04774361674556,49.633750430983675],[-121.04448574255616,49.63399140482796],[-121.04177724347335,49.6346681857836],[-121.03858898304402,49.63413500064468],[-121.03522817418273,49.63494247624254],[-121.03224359034552,49.634963376753525],[-121.02959383122483,49.63637689238689],[-121.02857194429366,49.63659054359729],[-121.02847610891347,49.63657883051055],[-121.02433642536528,49.6394508132238],[-121.01775041277932,49.6419761424871],[-121.01772008881251,49.644174398031254],[-121.0172370122994,49.644151136765785],[-121.01405623125568,49.64418399205633],[-121.01020294195332,49.64644811414702],[-121.00118266468125,49.64913862415656],[-120.99335432379216,49.65399617671553],[-120.97648287347221,49.664363750094914],[-120.97121693759509,49.66745124962257],[-120.96365819192576,49.673461679353224],[-120.95644712272217,49.67767975523308],[-120.96044769025661,49.67905594288858],[-120.96314208922655,49.68056876947719],[-120.96716594833993,49.682749418312795],[-120.97254449402946,49.68587783704203],[-120.97309405070446,49.68643916727129],[-120.97198725360026,49.690456435630274],[-120.96959966112533,49.6932315807559],[-120.96365593751588,49.69524597495102],[-120.95822179492738,49.69931756883573],[-120.95774963818437,49.70121182460761],[-120.95662874589769,49.70774231830427],[-120.95287713675008,49.71241512324143],[-120.94747518654404,49.71465333433627],[-120.94425231811941,49.71577742741229],[-120.9381076928956,49.71705592641238],[-120.93308377439338,49.72026288994234],[-120.93169843456808,49.723994038253736],[-120.93153140614615,49.724624777028225],[-120.92990841948445,49.72949674832505],[-120.92784266135568,49.73095432396124],[-120.92365840862377,49.73283560819388],[-120.91763278719652,49.73827992203926],[-120.9166420496404,49.740693633749416],[-120.916662610886,49.74126040307209],[-120.91678620909299,49.74566188920105],[-120.91693807776241,49.75068626362955],[-120.91678942333164,49.7517754275848],[-120.91798296921704,49.756563168345615],[-120.91692649277623,49.75994193783825],[-120.9161598722897,49.76058244332816],[-120.91275816074425,49.762277828544654],[-120.9025322814999,49.76566109039895],[-120.89989326522182,49.76649627671958],[-120.8928526077516,49.77348947526115],[-120.8911492234701,49.77865459409305],[-120.88572963097421,49.78369170539509],[-120.87902812918084,49.787484978172415],[-120.87684144281218,49.79122791448258],[-120.87775653300882,49.792753544357026],[-120.8791248349677,49.79719700755026],[-120.878913452035,49.80256993838353],[-120.87850120399911,49.803889537557204],[-120.87785868343646,49.80589766007013],[-120.8757682035369,49.81026491709708],[-120.8711308860332,49.815232121492734],[-120.86879886942154,49.81714839743051],[-120.86320431745932,49.822811323013156],[-120.8628713067746,49.826644504546444],[-120.86412252176373,49.83051386677959],[-120.86833286230336,49.83595358115209],[-120.87072143745796,49.84260977448344],[-120.87076943275812,49.843921039050265],[-120.87040336176125,49.85004035841264],[-120.86652484468539,49.85379535089563],[-120.86418348062745,49.85565135778008],[-120.85842779202649,49.8618315900211],[-120.85110832928623,49.866035524025264],[-120.8464559662264,49.867228371627725],[-120.83853024767832,49.868633342306815],[-120.83190221430728,49.86916370004503],[-120.823543704072,49.86748785692226],[-120.81069467937309,49.86643447621576],[-120.80693926747922,49.86819009957265],[-120.80198862395156,49.87150043675765],[-120.79607470675036,49.872363551931],[-120.78956204509906,49.87346041182547],[-120.78762275773666,49.873710576528204],[-120.78447122479729,49.87517193822451],[-120.77958334535478,49.87791123490611],[-120.7773452262307,49.88016269433483],[-120.77699716816066,49.8804007806946],[-120.77641673721789,49.88206081839727],[-120.77643709255219,49.8828586176973],[-120.77672178474153,49.88720008780725],[-120.77833660345013,49.89186765155492],[-120.77845801228717,49.896662770012355],[-120.7744516143001,49.898992583596225],[-120.77084867491006,49.90023312137099],[-120.76344084509502,49.90094092921074],[-120.75448858519029,49.90063366922443],[-120.7472736830732,49.899054397501565],[-120.74370802401194,49.89766078725374],[-120.73592178905167,49.89414454153265],[-120.72557584725087,49.89105481960709],[-120.71767260283704,49.88953549589549],[-120.71181930966614,49.88959576669701],[-120.69881125966651,49.8927524706271],[-120.69695610164706,49.893346685747936],[-120.68674279127683,49.89573299867432],[-120.68232780629917,49.89949100387691],[-120.68137029752063,49.90435537486903],[-120.68041782159023,49.912648110330146],[-120.67772771938398,49.9152449031898],[-120.67469779768179,49.918477698283795],[-120.67372399630506,49.92179642851992],[-120.67173800405595,49.92804144038958],[-120.66962430596385,49.92892021960447],[-120.66745033002366,49.93031392628212],[-120.66248517408825,49.93407538820654],[-120.66213065074554,49.93447907872134],[-120.65842640761888,49.93879721953162],[-120.65465850864524,49.94448664363905],[-120.6539546786179,49.94500850589786],[-120.6516970527607,49.95091638993626],[-120.65228891750739,49.96159571864494],[-120.65235858941634,49.96421844871828],[-120.65249449104792,49.97044651363995],[-120.65041071315908,49.97629003278808],[-120.64565238970785,49.977878918879256],[-120.6402498439997,49.97792864081801],[-120.63116198280586,49.975674710857895],[-120.62590086802699,49.97440800897516],[-120.62109490102911,49.97331441910926],[-120.61467142138522,49.97203965888654],[-120.61463146730202,49.97191934819964],[-120.61455600675026,49.971404498563686],[-120.61455037258492,49.970890259112494],[-120.6145943006133,49.96986787418407],[-120.61464319230119,49.969173154011116],[-120.61480973758579,49.968784039048074],[-120.61496793679567,49.9685246906359],[-120.61546425689659,49.96800638015188],[-120.61601828942753,49.96748753212278],[-120.61650642927428,49.96708265380856],[-120.61706047216467,49.96653392846548],[-120.61745235068975,49.965923129928406],[-120.61781463420877,49.96514857103142],[-120.61784498143625,49.96469921585061],[-120.6177977680421,49.963382676666846],[-120.61777185935262,49.96037649916314],[-120.61781910665988,49.95911813741617],[-120.61785099505119,49.95827097903073],[-120.61789174348421,49.95786664810093],[-120.61796228708889,49.95706196483046],[-120.6180004816144,49.956531278381945],[-120.61822458927557,49.95590546489444],[-120.61848921801851,49.954921519503614],[-120.6185184190481,49.95470373219015],[-120.61854421591343,49.95454437932206],[-120.61850447734874,49.95431869525187],[-120.61848855907658,49.954127986718646],[-120.61843106015269,49.95396398091804],[-120.6183456253528,49.953785076431075],[-120.61820699863385,49.95358326902569],[-120.6180243119599,49.95339958410129],[-120.61771804236619,49.953197425612274],[-120.61731346454779,49.95299945045974],[-120.61686615228189,49.952808389712985],[-120.61630434062572,49.95265509644775],[-120.61572602639211,49.95255282790313],[-120.6150765439858,49.95247637074351],[-120.61441217850368,49.95240762661745],[-120.61372740051746,49.9524229688031],[-120.61308277784472,49.95245324895607],[-120.61242354764161,49.95250366323684],[-120.61124086475458,49.95266751065296],[-120.61018440321631,49.95282741467927],[-120.60920620620571,49.953049205570665],[-120.60778563643805,49.953407572414065],[-120.60661895476551,49.95373108749294],[-120.60511162696551,49.95414320067493],[-120.6033601616345,49.954654840935504],[-120.60280775022017,49.95477639766439],[-120.60208748473346,49.95489926253271],[-120.60122715200545,49.95502479329922],[-120.60024231415585,49.95515432223482],[-120.59942847632617,49.95521168054501],[-120.59860478098526,49.955219519959606],[-120.59739352540481,49.95519583327214],[-120.59646403999817,49.955123485529576],[-120.59586958726533,49.95503947728961],[-120.59549677694704,49.95498670338218],[-120.59475142567996,49.95487890158869],[-120.59392489211709,49.95471917763894],[-120.5933620139495,49.95458994146062],[-120.59265426098091,49.954341958762704],[-120.59180290340132,49.953964585414994],[-120.59081086160265,49.95340384860146],[-120.58874122301565,49.951885291258954],[-120.58646577401045,49.95012995533986],[-120.58437295141351,49.948367803853365],[-120.58347748526067,49.94762803218994],[-120.58257653357076,49.94696406919142],[-120.5812508370654,49.945979800640366],[-120.57977786174672,49.94492735146492],[-120.57851043106955,49.944115005498126],[-120.57753598332546,49.94351216031903],[-120.57634369659992,49.943008409322815],[-120.57480713019407,49.942448138361584],[-120.57337219159916,49.94203208716357],[-120.57251892222187,49.941879317068235],[-120.57156736769188,49.94173068361827],[-120.57066530929285,49.941665087545275],[-120.56979885324414,49.94169650385895],[-120.5690527941773,49.941787433928845],[-120.56882676817813,49.941837648027],[-120.56771085824539,49.94221850586602],[-120.56704191616214,49.94240962198641],[-120.56677221337613,49.94247458149581],[-120.56644702042908,49.94255087164698],[-120.56585132066355,49.942684178809564],[-120.56499091756915,49.942825766623194],[-120.56323076804001,49.94305792125243],[-120.56079695301624,49.943359163020546],[-120.55960451420563,49.943458275985165],[-120.55847264626219,49.943488813151696],[-120.55761330903493,49.94341622556562],[-120.55587182401659,49.943184217203566],[-120.55379035701188,49.94285974131788],[-120.55233916034203,49.942478668783686],[-120.55171106436237,49.942283391840256],[-120.55069172899256,49.94191308561907],[-120.54876200799377,49.94119645350406],[-120.54700282595572,49.940456157978076],[-120.54501199601485,49.93943374763669],[-120.54284397347321,49.938156161537385],[-120.5405979578013,49.93662662913913],[-120.53776990403931,49.934432226838204],[-120.53642536714328,49.93335338949142],[-120.53517282799726,49.932163025462145],[-120.53323709521813,49.93019056515101],[-120.53107334627839,49.927703894962185],[-120.52858039818358,49.92474696345543],[-120.5272357064423,49.92309136173153],[-120.5249735159075,49.92044120876846],[-120.52304938788018,49.918117911430336],[-120.52238368338489,49.91730899549681],[-120.52174673981159,49.91666779615001],[-120.521153440284,49.91618659179849],[-120.52044097672714,49.91562219806079],[-120.51981409996903,49.91504292175766],[-120.5185968357444,49.91394424438456],[-120.51746499813277,49.91302117407475],[-120.51648283086276,49.91233444707979],[-120.51469735513275,49.91120158180811],[-120.51283459068638,49.910160635902294],[-120.51081589601488,49.90918340820386],[-120.5089708930321,49.908271783954106],[-120.5068920956387,49.907360223364954],[-120.50525160830934,49.90670795037474],[-120.50416603244575,49.906302800564944],[-120.50293142398232,49.905845613363034],[-120.50126068748594,49.9052424840482],[-120.49810489743393,49.90398797841281],[-120.49340474068403,49.90173681424764],[-120.49270583116459,49.9013972291744],[-120.48224691408784,49.895935428175434],[-120.48087742640033,49.89524116627969],[-120.47066154668522,49.8905028647071],[-120.46745836649556,49.888977203258875],[-120.4627501543231,49.8868594072076],[-120.4579703666104,49.885162226744924],[-120.4555288198337,49.88445271238618],[-120.45290159427273,49.88380755941587],[-120.44954024160104,49.88330432707106],[-120.44737783731262,49.88315559757822],[-120.4458784902467,49.883277852574416],[-120.44370038983216,49.88354485180345],[-120.44137386224749,49.88411375265221],[-120.43847379637202,49.88509425458622],[-120.4359319682104,49.885925496578665],[-120.43386210112084,49.886619489196626],[-120.43181776835296,49.88674594412287],[-120.42816811836312,49.88693204025912],[-120.4259463067285,49.887225785466704],[-120.42413728328764,49.88793910078785],[-120.42199092385225,49.888714108153614],[-120.41811488957296,49.88969390639345],[-120.41518132177114,49.89054133822537],[-120.41304337074712,49.89083178444304],[-120.41076225258233,49.89076648654121],[-120.40825932649766,49.89051784885463],[-120.40592670628452,49.89023219957142],[-120.40339680222249,49.8897627736163],[-120.39986665197353,49.88946866817999],[-120.39768968674184,49.88950764949787],[-120.39455550410052,49.88969763650568],[-120.39333811293729,49.88994978037052],[-120.39140155086417,49.89050270125933],[-120.3877039107945,49.8918829984123],[-120.38350256015588,49.893299307269295],[-120.37933844964931,49.89458095930716],[-120.37471105279143,49.89607990775226],[-120.37138814956448,49.89710181057869],[-120.36960387893693,49.89747617685201],[-120.36766648969024,49.89766278214298],[-120.36623671154364,49.89776614055615],[-120.36525003389025,49.897743483120095],[-120.36299888356923,49.89746056722704],[-120.36033104150067,49.8971747101525],[-120.35673946949048,49.89676670195944],[-120.35405783500143,49.89647997583579],[-120.35146424699056,49.89614474524718],[-120.34895663269089,49.895763714274196],[-120.34705899351421,49.895431637736614],[-120.34159325435604,49.89436353800629],[-120.33577645424727,49.8931732157515],[-120.3314392041247,49.89211286285655],[-120.3287236673229,49.8913574809373],[-120.32704125879712,49.89077010191355],[-120.32587221816097,49.89019411621295],[-120.32457256366307,49.88933563251543],[-120.31931300329215,49.885021077824234],[-120.31871381404004,49.88449435269805],[-120.31797093650717,49.8838045334196],[-120.31642223666653,49.88220229256577],[-120.31411856837542,49.87988303255367],[-120.31138810938734,49.87715471920808],[-120.30893483068442,49.874626239534756],[-120.30691978532107,49.87272606263585],[-120.30566168456716,49.871708769246126],[-120.30369784640757,49.870239120814354],[-120.3019449159837,49.86912098921703],[-120.30017456007126,49.86824096957667],[-120.29873185671697,49.867614834233876],[-120.29810003790783,49.86749277576502],[-120.29764341962372,49.867462177759236],[-120.29679246939102,49.86748880249904],[-120.29643973953877,49.86753409731901],[-120.29184824648446,49.86893788588637],[-120.28035206215932,49.87228353854052],[-120.27245386502129,49.87553760181174],[-120.26311223241045,49.87781548077244],[-120.25269505739782,49.87959284747202],[-120.2440346744223,49.88186215378908],[-120.23987720742176,49.8830217315092],[-120.2336820191489,49.883845874142644],[-120.22528575281491,49.884494746189226],[-120.21707610941863,49.88384694297242],[-120.21044919493411,49.88307542337407],[-120.20565947918325,49.88339221976721],[-120.20295223366502,49.884155368173786],[-120.20011872539897,49.88510121761388],[-120.1937188993924,49.88816895042449],[-120.18892994293485,49.89094137713142],[-120.18612615337095,49.892223422061186],[-120.18350745022798,49.89325698994669],[-120.18042499344965,49.894531966560145],[-120.17307618330499,49.89706764440947],[-120.16542335684915,49.898670305719705],[-120.15843599664096,49.89943340670159],[-120.15071608952833,49.89939956320101],[-120.14161494833752,49.899409585473975],[-120.12999066263195,49.90116124190235],[-120.10935651337479,49.90452555595854],[-120.10821151095556,49.90471255470433],[-120.09983145786802,49.905601665182466],[-120.09616308556855,49.905994072905294],[-120.09478197178409,49.90616987319818],[-120.09195078652758,49.906527847802224],[-120.07717530232105,49.9084167567957],[-120.06246635335287,49.910319746012526],[-120.04895274440202,49.911548791266846],[-120.04006123295986,49.91186533466854],[-120.03675676812585,49.91168178415299],[-120.03526825849318,49.91147313671314],[-120.03094707000916,49.9106254148382],[-120.0297329458164,49.91030872083592],[-120.02838603296273,49.910072740426415],[-120.02452742156868,49.90912141696691],[-120.02419999313581,49.912967349343816],[-120.01926055818703,49.9151568048527],[-120.0137087765127,49.91774962788135],[-120.0110660658308,49.91936004325218],[-120.0091122022378,49.919767377182396],[-119.99939970441949,49.92423519531283],[-119.99805163021723,49.92608949874235],[-119.99652478399891,49.92760234251739],[-119.99426941945639,49.92912762526843],[-119.99102163152607,49.929697670825526],[-119.98599566586516,49.93029055894697],[-119.9815119500333,49.93122156829602],[-119.97657083237466,49.93169858088292],[-119.96950863403661,49.93003426765435],[-119.96715650072545,49.9285853541917],[-119.95989933527021,49.92417810129316],[-119.95502540583655,49.92162116071816],[-119.94788650467086,49.92012985371654],[-119.94145922100839,49.92085858631419],[-119.94420504822398,49.92333333000044],[-119.94446678570199,49.925677238732796],[-119.94190391410955,49.92834639926301],[-119.9391540109326,49.930737797173556],[-119.93811848972932,49.933900408675434],[-119.93563060943154,49.93599942160944],[-119.93325196495866,49.936435508613194],[-119.92648090297125,49.93762609067203],[-119.92226085495524,49.941071434630764],[-119.92078450178056,49.94406899017415],[-119.91854848880251,49.94856634565751],[-119.91829857079891,49.948972088624615],[-119.91491887792816,49.95113843508942],[-119.90978509116853,49.95345131387368],[-119.9067992480775,49.95423548962939],[-119.89916013884455,49.956241999748656],[-119.89485878954122,49.959742796287806],[-119.8936156142397,49.962339052058404],[-119.89222122938669,49.9629318900787],[-119.88987223531385,49.96427968084089],[-119.8873605973174,49.96569166861849],[-119.88238093462473,49.9677705794102],[-119.8767734097468,49.96733523429035],[-119.87129021656861,49.967536026869965],[-119.86540283790504,49.96876358913387],[-119.85928540545586,49.97148732637623],[-119.85789504447011,49.97225201676736],[-119.85455319513785,49.97360941163882],[-119.85473320238161,49.97361049076812],[-119.85478218612931,49.973610415447524],[-119.85480497895395,49.97361000715796],[-119.85492664566134,49.97360273042296],[-119.85504129255585,49.97359562811523],[-119.85506438749397,49.97359298054042],[-119.85538168749194,49.9735487438836],[-119.85541753916648,49.97354229079168],[-119.85544878610548,49.97353107590567],[-119.85563023370221,49.97345665214081],[-119.85586971430507,49.973457682881126],[-119.85601402007536,49.97347706206886],[-119.85630338679572,49.97352319032047],[-119.85653758187948,49.973563406216414],[-119.85685872408762,49.97360737214384],[-119.85705170981014,49.97365486790925],[-119.85708771101633,49.973660272143455],[-119.85712431627634,49.97366119789187],[-119.8571594127408,49.97366034232434],[-119.85724296258306,49.973676310958986],[-119.85742183573711,49.97372470184755],[-119.85761761316752,49.9738163487058],[-119.85769715711136,49.97399171247141],[-119.85779043695999,49.97416898381448],[-119.85780960733626,49.974195436790616],[-119.85788462659306,49.97427466785043],[-119.85791934445135,49.97430256156456],[-119.85800500776844,49.9743547469404],[-119.85802795207461,49.974366186883245],[-119.85823045139313,49.974459897052846],[-119.85827717126116,49.97447661445407],[-119.85853122271864,49.97453824511714],[-119.85884648534243,49.974651816297396],[-119.85890407309003,49.97466576775043],[-119.85901570267048,49.974681053689274],[-119.85905555485998,49.974683848479344],[-119.8595585306452,49.974689496762956],[-119.85960260835964,49.97468689692887],[-119.85984994491554,49.974655644710346],[-119.86005003370909,49.97465050400737],[-119.86024559276255,49.97465301454825],[-119.86028272734649,49.974662993560784],[-119.86031246528961,49.97467594203454],[-119.86051459459082,49.97483731195621],[-119.86055671115595,49.974862235328104],[-119.86081046732187,49.974977991877786],[-119.86098150090824,49.97504567375782],[-119.86101003093928,49.975054610501495],[-119.8611770634582,49.9751000745807],[-119.86119397050966,49.97510440678347],[-119.86121087756432,49.97510873898365],[-119.86130235681142,49.97513078927257],[-119.86133134090487,49.97513635810881],[-119.86149965623977,49.97515933192135],[-119.8615255450762,49.975161911471574],[-119.86172344719583,49.97517300672263],[-119.8618066995992,49.97519121109559],[-119.86164344902728,49.975351271111556],[-119.86162873168436,49.975369623401384],[-119.86157703192836,49.97544174689225],[-119.86142925487293,49.97564271655309],[-119.86137061058795,49.97570147314766],[-119.86116033523632,49.97591191590311],[-119.86095118928458,49.97611396552423],[-119.86093458447277,49.97613333998479],[-119.86085676922023,49.97624347274548],[-119.86084499446638,49.97626594273289],[-119.86077329438021,49.97644748748861],[-119.86076778414497,49.97646241214684],[-119.86072363366247,49.976673144083165],[-119.86070265359768,49.97678984774199],[-119.86066989810496,49.97694199875843],[-119.86066906915266,49.97697409808642],[-119.8606917165759,49.97711750617914],[-119.8607074923226,49.97715618595836],[-119.86075980296314,49.977235259961724],[-119.8609042029027,49.977422721110734],[-119.86102512927077,49.97762861178459],[-119.86104898235192,49.97765927921965],[-119.86124056109915,49.97783415121682],[-119.86128887055044,49.97786506162545],[-119.86156846079302,49.97799692828651],[-119.86184103218238,49.97811599179722],[-119.86215512063366,49.97825148727801],[-119.8625061995809,49.97841104811286],[-119.86285358333521,49.9785850655294],[-119.86293148504878,49.978630042510666],[-119.86327774111345,49.97881245119498],[-119.86333526273184,49.97885290141529],[-119.86352194687859,49.97901226957511],[-119.86355742836979,49.97906050906368],[-119.86368803125656,49.979246632391195],[-119.863739293943,49.979346519473076],[-119.86374133592973,49.97938329178101],[-119.86373666135084,49.97944394578501],[-119.86367937582581,49.979531549945],[-119.86367265866309,49.97954245424966],[-119.86366428138123,49.979552696972064],[-119.86365129965154,49.97957114672284],[-119.86351135824087,49.97966201525396],[-119.86348380711331,49.97967175198726],[-119.8634552741947,49.97967579332587],[-119.86320021142372,49.979673339147396],[-119.86289887477962,49.979663787611095],[-119.86285139497515,49.97966563880774],[-119.86256349811138,49.97969913789244],[-119.86228012947667,49.97972499353763],[-119.86218411333543,49.979736532688435],[-119.86216093964482,49.979739746025835],[-119.86189863269914,49.97979103039884],[-119.8618805165258,49.979795655257924],[-119.86161926531494,49.979865056410745],[-119.86158076906155,49.979878122880756],[-119.86132223664877,49.979992230269154],[-119.86130155345303,49.980002920059555],[-119.86107215760364,49.9801344534],[-119.86104868276531,49.980152874147414],[-119.86100859987708,49.980151755044254],[-119.86076470539784,49.980131312734414],[-119.86061162053439,49.98012498596058],[-119.86033556921507,49.980122485590385],[-119.86030212913779,49.980123994841165],[-119.86005219669093,49.980148335469664],[-119.86003445819608,49.98015015651176],[-119.8596896394479,49.980203586670555],[-119.85962781727254,49.98022098487049],[-119.8593687496882,49.98032603335314],[-119.85933885718498,49.980340150121336],[-119.8593077568241,49.980363223771924],[-119.85915157424088,49.98050958039076],[-119.85895342102117,49.98068177596694],[-119.85892299908598,49.98069981572975],[-119.8588763482812,49.98070848023495],[-119.85871216487483,49.980719577732636],[-119.858462305091,49.98071740466521],[-119.85824067614075,49.98071343923432],[-119.85798734403984,49.98071107032669],[-119.85794325920882,49.9807136784478],[-119.85768343317332,49.980746483613174],[-119.8574510849435,49.98077010829018],[-119.85738805295499,49.98078349367331],[-119.8573589146855,49.980792011853495],[-119.85721775278337,49.98082696017408],[-119.85716257030472,49.98084699472592],[-119.85701415961242,49.98092270658307],[-119.85696773265633,49.98095564110782],[-119.85684838051777,49.9810752904622],[-119.85684030350913,49.981083293428824],[-119.85670071712384,49.981249186865846],[-119.85659955922343,49.981311765079205],[-119.85638184693838,49.98140840593924],[-119.85633323152854,49.9814186558336],[-119.85631519027814,49.98142271548282],[-119.85629903508348,49.98142576189046],[-119.85600462817234,49.98149440937888],[-119.85594778427907,49.981513781606324],[-119.85568356492807,49.98164391937901],[-119.8554368609602,49.98174795643415],[-119.85528489898877,49.98178512116922],[-119.85487243045965,49.981795249076505],[-119.85485129361858,49.981796319088446],[-119.85471141241919,49.9818087746458],[-119.85466121108504,49.981817806755956],[-119.8544506682584,49.98187423546139],[-119.85439631498382,49.98188810630311],[-119.85425975166285,49.98192782149764],[-119.85422487391517,49.98193996959095],[-119.85420079188349,49.981949898850104],[-119.85413194322707,49.98198043680621],[-119.85392970173986,49.982040155204146],[-119.85359256100708,49.982101326242386],[-119.85329037010105,49.982162770476855],[-119.85325405916161,49.98217257264277],[-119.85317146959927,49.98220121967734],[-119.85311703812548,49.98222862253999],[-119.852983711475,49.982322097407675],[-119.85295585170972,49.9823470479996],[-119.85285052650232,49.98246635288544],[-119.85283089556425,49.98249514060416],[-119.85276874721092,49.98263153425257],[-119.85276119116034,49.982674545821496],[-119.85277459517899,49.98289921832475],[-119.85278244065701,49.982931813619615],[-119.8528795655384,49.98314539250729],[-119.85289692439146,49.98317231283416],[-119.8530010080233,49.98329547599221],[-119.8530087063531,49.98330324516915],[-119.853207068318,49.983505584974594],[-119.85321884262413,49.983522039018794],[-119.85323453201111,49.98361316620403],[-119.85322659656583,49.98367194957813],[-119.85322516133988,49.98368258128036],[-119.85322294369192,49.983880439590386],[-119.85322125926997,49.9840484291221],[-119.85320034257371,49.98408673790116],[-119.85318795989507,49.98410070791232],[-119.85315474154052,49.984113508409344],[-119.85311261677423,49.98411452816381],[-119.85301432564553,49.98411690752825],[-119.85292125105471,49.98406768788387],[-119.85278469939783,49.983977672841164],[-119.8526319945626,49.983877726165865],[-119.85244849327667,49.98375968869349],[-119.85228174845138,49.98366008133151],[-119.85206594785156,49.98348326612627],[-119.85187997230287,49.98327992273881],[-119.85180494745974,49.983200697495974],[-119.8516066675513,49.98301075916535],[-119.85141563545776,49.98281898014029],[-119.85140310607363,49.98280812387089],[-119.85124233644724,49.98267726357549],[-119.8510040496035,49.982498614399205],[-119.85096510130303,49.98247612180137],[-119.8508017556493,49.982403216999366],[-119.85078024295815,49.982394112360744],[-119.8507369914112,49.98237757798669],[-119.85063002979943,49.98234055363613],[-119.85061493350793,49.98233575307194],[-119.8502827993292,49.98224321599021],[-119.85014338533108,49.98217446976816],[-119.84994314213144,49.9820380059915],[-119.84985928821735,49.981972379715245],[-119.8497237324009,49.98187507875817],[-119.84963444303219,49.98181084362554],[-119.84962161190391,49.98180222632982],[-119.84933200249786,49.9816280271976],[-119.84931902024897,49.98162052946006],[-119.84930437802167,49.981612369923965],[-119.84925101534785,49.981580042237475],[-119.84917879031701,49.98150604376393],[-119.84915690922364,49.98146081916529],[-119.84914423785541,49.98141216806976],[-119.84916028396373,49.981228622044654],[-119.84916544963721,49.9810867727431],[-119.8491965126317,49.98092156008631],[-119.84921466607071,49.980761262712754],[-119.84921451719823,49.9807494139019],[-119.84921452904308,49.98069752235555],[-119.84921706279968,49.980510401450864],[-119.84922035031684,49.98033065092644],[-119.84921358062239,49.98022535808443],[-119.84921162059442,49.98021396706308],[-119.84917068052194,49.979999026446876],[-119.8491687205144,49.97998763542134],[-119.8491003028044,49.97978186356753],[-119.84909638045427,49.97977204993201],[-119.84901655701766,49.97959892050112],[-119.84895319526645,49.979407529054335],[-119.8488849995304,49.979226027811436],[-119.84872173455624,49.97888068386994],[-119.84862538560041,49.978700416366976],[-119.84853681415153,49.978514376594475],[-119.84848590714897,49.97833440553801],[-119.84841703748269,49.97814496900856],[-119.8483656814504,49.97795537919311],[-119.84835007874142,49.9778636952944],[-119.84836491688007,49.977689105308116],[-119.84839228470733,49.97751240350642],[-119.84842415757143,49.977431843081035],[-119.84849674070418,49.97724414435131],[-119.84854258021716,49.977150831384776],[-119.84862972176475,49.976997793411385],[-119.84872011352367,49.97682068837056],[-119.84879669270086,49.9766422386986],[-119.84879986595836,49.97663169552584],[-119.84882192265609,49.9765590487397],[-119.84882577580669,49.97654347183139],[-119.84883386936737,49.97647060012422],[-119.84883591149422,49.97645548100777],[-119.84884138008188,49.97631139160072],[-119.84883649293937,49.97623102202034],[-119.8488142643264,49.97607183933555],[-119.84880709907786,49.97604718716514],[-119.84872562718964,49.97586041739172],[-119.84871868575725,49.97584705877519],[-119.84415611817411,49.977314932789],[-119.83991705572495,49.98041064779114],[-119.83851295188258,49.980548244879],[-119.83603056663799,49.98058733487571],[-119.83000508528065,49.98095362200749],[-119.8284262486511,49.98165714728749],[-119.82652168246096,49.98249176920076],[-119.82567402501897,49.98399514320121],[-119.82573275651264,49.98541988349346],[-119.82772542665414,49.98682728647958],[-119.83132579821434,49.98814696922474],[-119.83467551230962,49.990388731004145],[-119.83075818976413,49.99233579788422],[-119.82731468934907,49.99295402212915],[-119.82532967465609,49.99458449014123],[-119.82540479245509,49.996817294438095],[-119.8254477472719,49.99784233327164],[-119.82353779917987,49.99902069341319],[-119.82120743587784,49.99999481618963],[-119.81620233712816,50.001383694414784],[-119.81186767627479,50.00195849822345],[-119.80680815825565,50.00158233894158],[-119.80208835037455,50.00107681777217],[-119.79447277039475,50.0014771215047],[-119.78503431655525,50.00281760075216],[-119.77906251502753,50.00450538453772],[-119.7743644508044,50.00732006889899],[-119.77128596635892,50.01067848617545],[-119.77318305782418,50.01390677501852],[-119.774439320157,50.0143476269336],[-119.77961148880377,50.01524151803197],[-119.78657467082616,50.0164578292464],[-119.79355596069847,50.01846776467675],[-119.79707261740691,50.01989988284573],[-119.79761317668182,50.02035294637247],[-119.79968413128485,50.02386344475199],[-119.8034367018772,50.02706452998201],[-119.80544402138734,50.031150511390905],[-119.80208465472128,50.0340053178664],[-119.79790696141565,50.03617863826212],[-119.79184332133947,50.03810065202606],[-119.78629687541878,50.03920785471873],[-119.78123978853039,50.039398898451054],[-119.77966270337328,50.039761238002036],[-119.77268567983111,50.0411791942993],[-119.76059271309634,50.045353918423274],[-119.75857875803906,50.049099726470246],[-119.7587046509392,50.052470921290535],[-119.75685494992983,50.055527736956854],[-119.75727768721573,50.06020748075353],[-119.76216997266131,50.06327894009455],[-119.76218659995037,50.06356641991337],[-119.75944133961188,50.06640367983204],[-119.75358850087014,50.069401295328184],[-119.74510622976871,50.073359389190706],[-119.74150015633822,50.0772403151021],[-119.74479836446348,50.07987406543912],[-119.75202955614384,50.08114670866496],[-119.7584531698271,50.081969640167],[-119.75957878219243,50.08378271341169],[-119.75871664354246,50.08464629316453],[-119.75392778438034,50.087234649289115],[-119.74663255142548,50.089680624459575],[-119.74293600342847,50.090645430820956],[-119.7411489068289,50.09312684272463],[-119.74180377951753,50.09672380570182],[-119.7400312995121,50.09960592444697],[-119.73985711651117,50.10229432093311],[-119.7377730749997,50.106211686892046],[-119.73709302821021,50.107478635890814],[-119.73649066491798,50.1133705079749],[-119.7384485914291,50.11871514044642],[-119.74492146878717,50.123598289378414],[-119.74600293248609,50.12369765433551],[-119.74988830993182,50.12301184944333],[-119.75554251823951,50.12202039028501],[-119.75838303803819,50.122089881478566],[-119.76214098646322,50.12283913356041],[-119.76409611634399,50.122813085325994],[-119.76602764440992,50.12203892176791],[-119.76928835280076,50.12119518242395],[-119.77284796243647,50.12113928074746],[-119.7757331695787,50.12241779985542],[-119.77755524202861,50.126331320915725],[-119.77677468864779,50.12680146612684],[-119.77652374395308,50.1300645754515],[-119.7760977551072,50.133272630169316],[-119.77620267720673,50.13875256314793],[-119.77622953106734,50.142242284275355],[-119.78051424847318,50.147666023586126],[-119.78417663867775,50.14841233550573],[-119.79116523045407,50.149797606252385],[-119.7958655339355,50.15179038199871],[-119.79900087906105,50.155059420790735],[-119.80222543672049,50.161071313734496],[-119.80457332317015,50.16692310078923],[-119.80836402085403,50.173843435391376],[-119.81105737948435,50.17717556209179],[-119.81597167071737,50.18030481455093],[-119.82045894078459,50.181209425771456],[-119.82449700564484,50.18200741614931],[-119.82511662022564,50.18199933863206],[-119.82781716878522,50.18281348116748],[-119.82674581356345,50.18551878037225],[-119.82244388047981,50.18706660185834],[-119.81645980069733,50.1889878036132],[-119.81322956045959,50.19091920369979],[-119.8102229710972,50.19399036875884],[-119.80675175606206,50.19644546204274],[-119.80426576639954,50.199508564338274],[-119.80259923864966,50.202850093866026],[-119.7982727739882,50.203941748716524],[-119.79400872148517,50.20406288287047],[-119.78723688559015,50.204214880285846],[-119.77919339968547,50.20307708392519],[-119.77483837133421,50.20078941341987],[-119.77124840925279,50.20010018176041],[-119.76805395051359,50.200319175511524],[-119.76159600253435,50.20166598664557],[-119.74971141411105,50.20309408898796],[-119.73931660671055,50.20381165410423],[-119.7381614245568,50.20657192446624],[-119.74145400003194,50.21155220236246],[-119.74467337176186,50.217678601327876],[-119.74757977461572,50.221695952925835],[-119.75234104450256,50.22563402960143],[-119.75697171305312,50.22848394992912],[-119.76033080361245,50.23300749627709],[-119.7604183704509,50.23808997457914],[-119.75956458557822,50.2390758307873],[-119.75744842375025,50.242478146598174],[-119.7538312343109,50.249103253111414],[-119.75345394472234,50.25642567270231],[-119.74768246640845,50.25987599718243],[-119.7386447519753,50.261377759728724],[-119.7367667289902,50.26151521781483],[-119.73213829128868,50.261580853228246],[-119.72114743079388,50.263448334759936],[-119.71561086235201,50.26609452701013],[-119.71040782501179,50.270794155766445],[-119.70797509634808,50.272484706364516],[-119.7039445652532,50.277454004680806],[-119.69913568934446,50.28335090870773],[-119.69463435241005,50.287639980058444],[-119.68980304746214,50.29004623685998],[-119.68767466678379,50.29327810928891],[-119.68712277892598,50.29551407619095],[-119.68367322573329,50.29921951560623],[-119.68127341494909,50.30519276619394],[-119.68457564390353,50.307892434247734],[-119.68814689545599,50.30796259748977],[-119.694379994416,50.30764853813271],[-119.6995851287166,50.30843707464118],[-119.70149432569023,50.3096084858812],[-119.70234391918171,50.31079607220129],[-119.70464417509818,50.313108516524686],[-119.71096473677848,50.315309505990825],[-119.71804062651744,50.316240360278634],[-119.71953535337387,50.31816709978184],[-119.71380324422111,50.3202440237407],[-119.70396515705114,50.32283761989152],[-119.69717178550194,50.32492932979621],[-119.69088495298158,50.32672197742989],[-119.6834768649339,50.32956891952731],[-119.68231813593853,50.329583807009435],[-119.67166232638093,50.331439375349035],[-119.66427601526338,50.335020593857244],[-119.66430729616734,50.33902053169143],[-119.66563354915517,50.341232723733846],[-119.66875959449337,50.34439621527481],[-119.6682154581972,50.34696799395395],[-119.66641131631356,50.34916582244964],[-119.66407403145624,50.35154111442029],[-119.66259599661319,50.355735755621154],[-119.66098377057963,50.358271012270684],[-119.65833401320273,50.35944915425455],[-119.653537251049,50.36053603865507],[-119.6465975794455,50.36120062006124],[-119.64448950826916,50.36253761569567],[-119.64544752766469,50.36475644044164],[-119.6461472262959,50.36720625960506],[-119.64447517949829,50.37065759731012],[-119.64031883171612,50.37219810869413],[-119.63578924181655,50.37327938711817],[-119.6338433427797,50.37656257737838],[-119.63487793172709,50.37843738560622],[-119.63824416966912,50.383305969863116],[-119.6404378921185,50.387680058565614],[-119.64036976140072,50.388363520330984],[-119.63825756479793,50.39222249646679],[-119.63702119538468,50.39898230607723],[-119.63727900461978,50.4040630995732],[-119.6400084108209,50.411857879873075],[-119.65001944511292,50.41161667790066],[-119.6673370319992,50.410363268519085],[-119.67962643357676,50.40888309116496],[-119.68994746162312,50.40692223345828],[-119.6919834996987,50.4066093079145],[-119.68825912339689,50.41020105473179],[-119.6794589510338,50.41763571601773],[-119.67285483476189,50.424006255259634],[-119.67060542224011,50.426435180145646],[-119.66516282784211,50.42965447268143],[-119.6560749142435,50.433654701824686],[-119.65228365360868,50.43547615320797],[-119.64668526951108,50.436974970153045],[-119.63196886255894,50.4414541490495],[-119.62554374483659,50.44198867573527],[-119.61609370230926,50.44330978935385],[-119.60846845005898,50.445520437281566],[-119.60509834792622,50.44664467120368],[-119.60182385907501,50.447891056799534],[-119.59244533512246,50.45177554598287],[-119.5874299969184,50.45481089758469],[-119.58437885065851,50.45775802969308],[-119.58354335237885,50.46262780166283],[-119.58199798227521,50.46493247393417],[-119.58038652044672,50.46472289199496],[-119.57678315841599,50.46419361874836],[-119.57449904278792,50.46245174579986],[-119.56773464064626,50.45750887709558],[-119.56427838525067,50.45268907222034],[-119.56052362499345,50.44976393862401],[-119.55651644923707,50.44415775860459],[-119.54945912762994,50.43852695001423],[-119.54511917373992,50.43703546974259],[-119.54235978820924,50.43438470376958],[-119.53829047296392,50.429630537910974],[-119.52992789644597,50.4279016379467],[-119.52571767904878,50.4277810586715],[-119.523544312955,50.42706451023621],[-119.50617868307552,50.4235542241526],[-119.48902999130951,50.42129796740224],[-119.47839160546413,50.421247556868316],[-119.46922438164422,50.419922651029246],[-119.46125600375642,50.41949692710677],[-119.45055341160308,50.417165363631845],[-119.44710530878352,50.41200396042388],[-119.44654059240685,50.41063827950843],[-119.44148079411049,50.402184133513224],[-119.430427324653,50.39676615922214],[-119.42207001716524,50.395256640019724],[-119.42441229127918,50.39905835556958],[-119.42742962418369,50.40530856889121],[-119.42623427238743,50.407205416285684],[-119.42062501396124,50.40835290879484],[-119.40721137607301,50.411925207639506],[-119.3974210263458,50.41728667801739],[-119.39663158863226,50.41775338459049],[-119.39021549519612,50.42216846909383],[-119.3860557232339,50.42392046826092],[-119.37976843826306,50.423019151235096],[-119.37140201712337,50.42145021810411],[-119.36522704427796,50.42122995803372],[-119.34958633335991,50.42986347098634],[-119.34687596945334,50.43136112148791],[-119.3272566445986,50.44149547892236],[-119.30289341709117,50.455965925970965],[-119.29693150411926,50.461504310651705],[-119.29542471101949,50.46591847773099],[-119.29625446197423,50.47070596686396],[-119.2981616208691,50.47605558499065],[-119.30054243225315,50.481745704404126],[-119.30694310397998,50.49516273985227],[-119.30703356412201,50.495506644010575],[-119.30968339519268,50.5010213420848],[-119.3107596399646,50.50540417196044],[-119.31141455683635,50.51042992856597],[-119.31058909029264,50.51312082346434],[-119.30919279590064,50.51479072302284],[-119.30805750302653,50.51651528278263],[-119.3052015276749,50.52094318195947],[-119.30217517402303,50.525369188264655],[-119.30077808158633,50.52732491774934],[-119.29890109089126,50.53116713429903],[-119.29599379484667,50.53754162128345],[-119.29260623161001,50.54579739564898],[-119.2911147476911,50.547808235019836],[-119.29018580934029,50.55421647697314],[-119.28947529036289,50.56210381210546],[-119.28969835036895,50.57181181235336],[-119.28979314026857,50.57620846648669],[-119.2940653192991,50.58256539065699],[-119.30141135274457,50.58992253665215],[-119.30543689298864,50.59319459978863],[-119.30464030243783,50.59320577999384],[-119.30217792615153,50.59591279388882],[-119.29834726332747,50.600744671991],[-119.29396883426753,50.606100604086535],[-119.29183396422961,50.61069120794484],[-119.2908849709554,50.61618077659323],[-119.2905553622708,50.621611284628685],[-119.29140600616877,50.627318317510316],[-119.29248332380472,50.631701778948425],[-119.29196230296878,50.63205045258578],[-119.28559301170226,50.63274300313571],[-119.2817457962043,50.633575293582204],[-119.2772333261766,50.63647371726661],[-119.27472064681979,50.640435439684566],[-119.27139758155192,50.64515343724901],[-119.26964809479301,50.647055324965116],[-119.26643618480553,50.648283765325665],[-119.25964049485745,50.64971280265216],[-119.25176090645462,50.65144564449735],[-119.24217465586234,50.65261400792449],[-119.23603837274877,50.651359283436776],[-119.23023926812188,50.64975643402036],[-119.22718534068417,50.649554061606004],[-119.22341806422696,50.65021505844743],[-119.21781045776521,50.65260917172248],[-119.21304016101752,50.656416268151034],[-119.20776577583739,50.661948210226015],[-119.20121990787975,50.66760358287517],[-119.19874526265637,50.66985277133371],[-119.19215209166656,50.67224866717154],[-119.17904785306088,50.678073787999644],[-119.16655572110992,50.68303380670401],[-119.16156409370781,50.68581635243614],[-119.15793886296774,50.6888705722878],[-119.15276521347228,50.69525318207605],[-119.14946577920598,50.70156202547374],[-119.14634171786804,50.70792782227211],[-119.14306540318665,50.715373895377766],[-119.14188365037617,50.71955339094582],[-119.13940475358152,50.72123379899377],[-119.135785951693,50.72514461696127],[-119.13280244816767,50.72899467674779],[-119.13214359219353,50.732821090980735],[-119.1323234934659,50.73693553636536],[-119.13399994293246,50.74011737393014],[-119.13774112103572,50.74265703488418],[-119.13785143490118,50.74351607732078],[-119.13626742868915,50.74603895663274],[-119.13481704878053,50.75010249896918],[-119.13558966303408,50.753235868600164],[-119.13912623188205,50.75869394935693],[-119.1401456374967,50.760686756096504],[-119.13304596683727,50.76153773617661],[-119.124257475763,50.76326607249518],[-119.1113740021008,50.763538208840885],[-119.10488147803801,50.76358682450443],[-119.09138992329983,50.764838287023785],[-119.08789116160571,50.7649733199031],[-119.08292124564802,50.76466723614769],[-119.07182788851726,50.76349759551051],[-119.06190258500366,50.7633449264369],[-119.05388879234745,50.76345718967964],[-119.03435096917536,50.76434289231883],[-119.02606773108492,50.764625312648704],[-119.01661482321981,50.765549683184915],[-119.0147328376099,50.7656427150954],[-119.00986339752183,50.76587837638342],[-119.00157742725004,50.765536612173484],[-118.99824631828385,50.76596144776577],[-118.99008296682283,50.768471979730364],[-118.98605370015193,50.76952725351104],[-118.97942711832751,50.77213885859585],[-118.97109069316176,50.77528089589953],[-118.97037504802725,50.77556973452633],[-118.96166079221875,50.778023889570086],[-118.95574631598241,50.77971900948963],[-118.953249538553,50.78144319974018],[-118.94984013601625,50.78289412958713],[-118.94505636972052,50.782299843898315],[-118.94022874323143,50.7791869903761],[-118.9351514443431,50.77693531915369],[-118.93170734825324,50.77599033167264],[-118.92791384587503,50.774641120699016],[-118.92175299689127,50.77239503756043],[-118.91866723636646,50.77144189495369],[-118.91322061661494,50.767934562465754],[-118.90809309769132,50.76197322223958],[-118.90799143331084,50.7618053920072],[-118.90692280081079,50.75587536227107],[-118.90170610895534,50.75030954115281],[-118.89882796636238,50.75021411841745],[-118.89114432510574,50.74843084587795],[-118.88813435859132,50.7487166050563],[-118.88476131064837,50.74904453410547],[-118.8811926577037,50.752031464600655],[-118.8766514928819,50.7561082659423],[-118.87440660757434,50.75606175183105],[-118.86676007270628,50.757080035537655],[-118.85733434297227,50.760218142190844],[-118.85261996176179,50.765090444087456],[-118.85011677105695,50.76647642442869],[-118.84669087206008,50.76569852137634],[-118.83973916768116,50.764767903396866],[-118.83397917648546,50.76565363663553],[-118.82950526902592,50.76767531175935],[-118.82819263700222,50.77087705136117],[-118.82698367120807,50.775563225691265],[-118.8261144685908,50.77751149893787],[-118.8241539715404,50.779859530504666],[-118.8232484056665,50.7804907419405],[-118.82943496420455,50.777828422720155],[-118.83481617078955,50.79259188613031],[-118.81504771948849,50.800007999001714],[-118.81205189479232,50.80113188716468],[-118.80263569886165,50.807465419964664],[-118.80000331765802,50.80862037991776],[-118.79571762930155,50.81049965091788],[-118.7869060326564,50.8134962850453],[-118.78615560940636,50.813369889482416],[-118.78499084029757,50.81522093797787],[-118.78197270591411,50.8201328060924],[-118.78121695684725,50.82617053929654],[-118.77607224217344,50.825545858898614],[-118.77500949053427,50.826343750812455],[-118.76878172038951,50.82688376558429],[-118.76163937129516,50.82549073981192],[-118.75775263800182,50.824539952245324],[-118.74918495949036,50.8249794406734],[-118.7404395109337,50.825193425669305],[-118.73592446539155,50.82520935113393],[-118.72437509267836,50.8247519413574],[-118.72021567429121,50.824250945030656],[-118.72011535328717,50.823115786502335],[-118.71626215486968,50.81610608658737],[-118.70748262836831,50.81260531379181],[-118.70494810962244,50.81256428340692],[-118.69413338813152,50.81260867347277],[-118.68494021419325,50.81373355630922],[-118.68250859800757,50.814195960729876],[-118.67333218020318,50.816170379330806],[-118.6695494843171,50.81772777507126],[-118.66389876303349,50.82083045514597],[-118.66214644438021,50.827402237402836],[-118.66416761254308,50.83195907236518],[-118.66831589652114,50.84113080825014],[-118.66364298199531,50.84400323184011],[-118.6588042701965,50.847444729562305],[-118.65205960433018,50.85117427350607],[-118.64971974813473,50.85193165603626],[-118.6464580995627,50.85091321735707],[-118.63886698518891,50.84946082331593],[-118.6319242991559,50.850225747534196],[-118.63184661197768,50.85233810382926],[-118.63323097575613,50.856326357651874],[-118.63506673816522,50.85922805429545],[-118.63853238161775,50.86463788989651],[-118.6409141671169,50.86856526797239],[-118.64167338186516,50.87227786751302],[-118.64042279455549,50.87370338390908],[-118.635568514957,50.87668876513266],[-118.62746206935647,50.88065748257115],[-118.62072017072602,50.88518537123781],[-118.61588558120829,50.89045074597415],[-118.61367928059323,50.89650824214517],[-118.61272319159204,50.90313254369413],[-118.61305705420808,50.91112197953593],[-118.61288769451512,50.912487213574416],[-118.61364100634935,50.91648451651555],[-118.6134841413061,50.921050896592625],[-118.61168161695016,50.92207965614384],[-118.60617884608966,50.9235821777848],[-118.59977394656765,50.92491187529277],[-118.596432410048,50.92555130995347],[-118.59354813075991,50.92453974712603],[-118.59375446475404,50.92571878346785],[-118.58830854801721,50.925465744345956],[-118.5834508481028,50.9364114863281],[-118.57793587567457,50.93648923539032],[-118.57829103272843,50.939348660146905],[-118.57177116863457,50.93804563021919],[-118.56636582856476,50.93901840942456],[-118.56152003126654,50.93744675253212],[-118.55945562469016,50.94045691268998],[-118.54931190048151,50.936381899744944],[-118.54480560658577,50.93717819805167],[-118.54208329673779,50.939279631543094],[-118.53584130791567,50.93631448559261],[-118.53102513776413,50.9316313282183],[-118.53767631522766,50.927852585996575],[-118.53730721110048,50.9277805443668],[-118.53342128072767,50.92704873183857],[-118.53097297753898,50.92602620694713],[-118.5249069301072,50.92387118619771],[-118.51792972221388,50.92041255291857],[-118.5105813239506,50.917294268023475],[-118.50750479027546,50.91609811101052],[-118.50379408889161,50.91348438303628],[-118.49563507126781,50.908140320048574],[-118.48611692140486,50.90365296773257],[-118.48330727090394,50.902749419733816],[-118.47544341744656,50.90254022428636],[-118.46469757191288,50.90261766528539],[-118.45855615447007,50.9026306741288],[-118.45394662418003,50.902639544854885],[-118.44788617073134,50.902596473155675],[-118.44154973665431,50.90089173227059],[-118.43965312295416,50.8995887178093],[-118.43547646146921,50.89486230641884],[-118.42923301333376,50.890936631896935],[-118.42398204665032,50.889171621142516],[-118.41612085256905,50.88593470020635],[-118.40689418289517,50.88349683390168],[-118.39938892411664,50.882879635082745],[-118.39297742195582,50.88289476036476],[-118.3865695778383,50.88347375721372],[-118.38422562126497,50.88404616724699],[-118.38187533183503,50.88490603040607],[-118.37392419109888,50.887141596961655],[-118.3672445296476,50.88754742514167],[-118.36245305300953,50.88578645150227],[-118.35521871028565,50.88317323144917],[-118.35376939462067,50.883115233294475],[-118.34980589527422,50.88511680192549],[-118.34348377581733,50.885522547237976],[-118.33904617246215,50.88495344902819],[-118.3342600399615,50.88325139279758],[-118.32576490021653,50.88240202429775],[-118.32025606599615,50.88331797569517],[-118.31692405635448,50.885547098551065],[-118.31340072389605,50.88531877264689],[-118.31168730655239,50.88538094908215],[-118.30951285171837,50.885378596989],[-118.30535179910544,50.885611436053466],[-118.30209849720381,50.88771065854389],[-118.30355437458711,50.887897374401255],[-118.30626322482337,50.88977616075115],[-118.30924539409055,50.893138838284145],[-118.311421328951,50.89553745218843],[-118.31413652489181,50.899124329367815],[-118.31512343132097,50.9011175044658],[-118.31467629975451,50.90345806199164],[-118.31233123486805,50.90642687009023],[-118.3120607840536,50.908820791812175],[-118.31359589236033,50.911784931507036],[-118.31558680999244,50.91418360048863],[-118.3178519272061,50.91640515310757],[-118.31821251328512,50.91771662422846],[-118.31967277792235,50.92136707600775],[-118.32084577631302,50.92518970106483],[-118.32084658238354,50.92792231237717],[-118.3199494851176,50.930546384255045],[-118.32040706754967,50.933287774142514],[-118.32130368590904,50.93448244668184],[-118.32393270224631,50.93676089978297],[-118.32583592708832,50.93984308375562],[-118.32719107562787,50.94286502345701],[-118.32854679279161,50.94588470471372],[-118.32910433472527,50.94713731375083],[-118.33172667797761,50.94804879480973],[-118.33634273971217,50.94953039849138],[-118.33878255657751,50.95083734987497],[-118.34121890375054,50.951749387336065],[-118.34439815171936,50.95317400249151],[-118.3460295034621,50.95385243027728],[-118.34782819743329,50.956305887580235],[-118.34884038658409,50.9594998139993],[-118.34920564218736,50.96212332492496],[-118.34939439684771,50.966854563689914],[-118.3503941745031,50.968790364429495],[-118.3509339811546,50.96981800753146],[-118.35347034789945,50.972155144753195],[-118.3564562448835,50.97546395404024],[-118.35890087962895,50.97717086632072],[-118.35999724739536,50.97779836751852],[-118.36334768921701,50.9788246488727],[-118.36506615676602,50.97950356419257],[-118.36833155595224,50.98035848319838],[-118.36896185318732,50.980695553902414],[-118.37132108927354,50.9822359947402],[-118.37394933097438,50.98479949885215],[-118.37576459508558,50.98758979976025],[-118.3770341622007,50.99038579738267],[-118.37876748612402,50.99340525140303],[-118.3823052769842,50.996023578340306],[-118.38402734532532,50.99819202441043],[-118.38692721689021,50.999933599822185],[-118.38720225095066,51.00033726685881],[-118.38782628776048,51.00113156175236],[-118.38955177883366,51.00227842093148],[-118.3912782393656,51.002331940871066],[-118.39317265710886,51.002158627185324],[-118.39472369069372,51.00147766264925],[-118.39589356135241,51.00050944839307],[-118.39643657460529,50.999934994688886],[-118.3973355247408,50.99828682068694],[-118.39859473052736,50.997717517296564],[-118.40113599769911,50.99703143573189],[-118.40358455708908,50.996970641177825],[-118.407029302557,50.99771000859873],[-118.40883873400696,50.99878716542599],[-118.40902779800965,50.999526999399535],[-118.4089633152444,50.9999042005841],[-118.40907939772221,51.00157439193495],[-118.41099040104795,51.00340119765426],[-118.41343713027992,51.00511579774953],[-118.41833271168667,51.00836769913394],[-118.4209584935721,51.01122139414765],[-118.42240951254674,51.01373082124854],[-118.42277393236175,51.01630275465511],[-118.4222297463798,51.017557373608405],[-118.42078188627967,51.020070510585434],[-118.41887517537249,51.02241261136641],[-118.41823644456517,51.024639544069686],[-118.41904824237065,51.02669198873482],[-118.42294616326164,51.03000292769615],[-118.42485809681655,51.03183446654389],[-118.42666580864183,51.03394112616002],[-118.42703540125689,51.036400995606186],[-118.42693490417582,51.03959670283727],[-118.42820821766375,51.042565735708955],[-118.43147232985811,51.04564826011967],[-118.43383254062435,51.0487294765436],[-118.43229112355411,51.05187303342643],[-118.43147308242055,51.05649841469207],[-118.43065548204851,51.05792309349899],[-118.42821733667913,51.05832460180767],[-118.42567501185738,51.0583267677677],[-118.42105335653584,51.057638644673425],[-118.41778253566832,51.058037850271944],[-118.41678882512058,51.05998561321655],[-118.41732307192721,51.06232057138643],[-118.41931752654213,51.06426431700228],[-118.4216773931905,51.06592001072089],[-118.42476450672703,51.0678601124181],[-118.4275795982538,51.07122603806383],[-118.42903209028401,51.07374023126323],[-118.42985078499662,51.07374129352881],[-118.43183845968967,51.073627061084565],[-118.43510679700019,51.07282707157003],[-118.43765042493163,51.07282190726718],[-118.43974292627274,51.074198363990554],[-118.44290876374329,51.076021257558125],[-118.44781565983342,51.07664963406592],[-118.45335603540082,51.07710198876138],[-118.45797915755372,51.07847045275887],[-118.46025538413978,51.07995418970091],[-118.4602492026525,51.08446695886746],[-118.45953142750308,51.08834779583238],[-118.4608934402732,51.091660631452505],[-118.46470808071564,51.09331411465475],[-118.47088357522674,51.09536961545055],[-118.47206731899675,51.09770749884989],[-118.47414970770718,51.10084826745187],[-118.47569462112666,51.10233105295577],[-118.47579409844798,51.102676320364615],[-118.47825424066514,51.10689701335749],[-118.47843371498088,51.11049646764836],[-118.47625613808553,51.113413207080065],[-118.47534396536773,51.11683568000382],[-118.47552991475835,51.11717996166099],[-118.47681098264275,51.11911902030475],[-118.47653015581899,51.12288794347586],[-118.47262250054335,51.12557136121163],[-118.4720912529941,51.12945723415988],[-118.47536557175526,51.13202584622552],[-118.4800807386613,51.133905241130186],[-118.48508719631253,51.136189316081506],[-118.48881523529309,51.140753801222395],[-118.48882431920417,51.14103937540884],[-118.48818155780715,51.14618288883525],[-118.48610178872373,51.150466263665216],[-118.48228924507438,51.15240984654663],[-118.47727996236446,51.1530949753113],[-118.47047337248732,51.155038124657935],[-118.46829328031666,51.15795344545478],[-118.46911380142703,51.16006644188886],[-118.47120733531563,51.164003283096214],[-118.47175481087206,51.16628415699849],[-118.47111092879364,51.168798449256784],[-118.47093646746706,51.17176851632837],[-118.47183949089967,51.17365277265952],[-118.47621146302336,51.175881986960384],[-118.48239214475628,51.17712986107699],[-118.48712298214338,51.1779295483671],[-118.49258040186207,51.17826686022047],[-118.49521577338797,51.17826441995501],[-118.49867946254035,51.17906595238034],[-118.50413625923986,51.179407722378144],[-118.51395418295905,51.178824153566886],[-118.52113951993643,51.178820822531996],[-118.52923271020758,51.17881245147555],[-118.53351927105227,51.178751194976236],[-118.53760358306778,51.17954697021572],[-118.54079418123985,51.18086166108581],[-118.54698069062253,51.184222057474024],[-118.55135747767716,51.18696120651225],[-118.55418511256974,51.189581277409445],[-118.55555245459665,51.19095421785287],[-118.55964790588949,51.193403514045244],[-118.56375278136224,51.196998021213325],[-118.56430992455391,51.20036475260926],[-118.56385349336135,51.20316349445997],[-118.56304636126136,51.20453590160294],[-118.56232039808977,51.204826451574476],[-118.55686486510415,51.20591299261506],[-118.5513023213802,51.20643590553109],[-118.54575945144327,51.2080369316673],[-118.54240022842595,51.21129504944543],[-118.54322897588247,51.215520032966005],[-118.54486642731763,51.21717383543185],[-118.54815532417268,51.21997336106594],[-118.55663400227071,51.22499018309906],[-118.56154931363923,51.22892351272344],[-118.56602313478122,51.23342939973906],[-118.57041074119292,51.23776741977114],[-118.57361221798777,51.24136184976526],[-118.57361264096653,51.24238810359566],[-118.57288699401775,51.2454166660735],[-118.57289226655604,51.24821414664083],[-118.57417171914861,51.25003779760599],[-118.57508474978096,51.253011852707004],[-118.57382572580542,51.2558670342186],[-118.56936348336424,51.25872881718191],[-118.56336218154982,51.261304435819504],[-118.55935596146331,51.264790606779876],[-118.55535333964177,51.26867914936252],[-118.55472323150396,51.26959210512374],[-118.55281792265468,51.27250429877669],[-118.54926561666751,51.27576911610538],[-118.54554517858092,51.2818193186069],[-118.54673616479856,51.28587428824998],[-118.54855420923026,51.28707311234134],[-118.55074741400587,51.28998238833721],[-118.55112527838288,51.29364221631334],[-118.55313180862004,51.29723240519182],[-118.55468058231777,51.2983196489736],[-118.55678879048853,51.299685234754016],[-118.5611632777162,51.30054018498705],[-118.56381117015492,51.30059064766439],[-118.56891241836284,51.300132486737205],[-118.57703227766224,51.29983666601544],[-118.58305368024843,51.300514777489205],[-118.58633720671622,51.30262324100778],[-118.58871580678168,51.305135280752445],[-118.58999227949253,51.30690413369108],[-118.59337732718926,51.30970212784276],[-118.59648826435505,51.31095326951854],[-118.59822277290476,51.313007021702546],[-118.59841876159456,51.31751634495908],[-118.59879671726355,51.32180235123429],[-118.6005328986964,51.32470959400041],[-118.60721090363705,51.32933044028501],[-118.61234028876873,51.333717464835516],[-118.6120691778401,51.33714400264035],[-118.6097020040368,51.34023143043242],[-118.6083508992575,51.34389244240116],[-118.60927446459966,51.34760359613401],[-118.61101358062116,51.35239862780614],[-118.61194398591552,51.35719147277856],[-118.61286237526504,51.359988943425186],[-118.61269281060437,51.364618981052566],[-118.60805474789447,51.368392709472495],[-118.6006576818361,51.37171491264302],[-118.59263690653238,51.373666296414406],[-118.58788950040764,51.376870352461744],[-118.58717196640768,51.380358355850944],[-118.58717793427039,51.382298037767086],[-118.58618076175286,51.38555616389397],[-118.58298078963486,51.38806508907417],[-118.57925287841564,51.39190096869529],[-118.58116398098548,51.394466014854935],[-118.5851920619358,51.39554532672749],[-118.5875648916604,51.39605965608644],[-118.59150158783949,51.39742548460244],[-118.59369745556697,51.39942170916004],[-118.59471159911493,51.40199254490969],[-118.59489597830022,51.4031321723481],[-118.59975019665113,51.405241912641635],[-118.60705593511743,51.40688841966004],[-118.6109993174705,51.408998423724604],[-118.61118354393638,51.40962470193804],[-118.61439004459446,51.41276428226534],[-118.61384709952479,51.41556649102049],[-118.61074697637027,51.41825357926383],[-118.60828378637811,51.42093822988516],[-118.60601427390596,51.42487974851659],[-118.6073007581354,51.428765957599516],[-118.60886358492748,51.432473879953115],[-118.60952274096879,51.43578772197675],[-118.61008758665999,51.441041254112626],[-118.6108233367213,51.442867080560035],[-118.61429046905245,51.44343571611641],[-118.6190525261953,51.44422798643311],[-118.62518117657733,51.44490378396954],[-118.6301381180435,51.44729930682106],[-118.62812781742005,51.44987224927792],[-118.62767691726596,51.45204193639584],[-118.62759036391381,51.45609766076709],[-118.6272421525967,51.45981316893955],[-118.62899255687655,51.46414636314918],[-118.63127876500077,51.46546033889153],[-118.63201826816925,51.4654571215974],[-118.63293488126659,51.464829808404765],[-118.63723241907955,51.46322161009814],[-118.64463147281252,51.462816368711074],[-118.6493904955362,51.463035111242846],[-118.65672129937002,51.46199640744175],[-118.65862865024694,51.461766450066406],[-118.66577322818823,51.461753370666194],[-118.67154857168126,51.46317393861287],[-118.67493353556038,51.46442157006836],[-118.67787393245304,51.46607741517237],[-118.68245408872372,51.46989412253988],[-118.68631137089847,51.47222587397322],[-118.69071277498684,51.47398971749121],[-118.69584708935011,51.47518254972815],[-118.70272515559752,51.47739480820339],[-118.70732158233703,51.48087070604706],[-118.71034832461059,51.48446418382015],[-118.7116423202477,51.487147055051416],[-118.71267524608841,51.49131648974362],[-118.71048374061849,51.49360206851101],[-118.70454209863472,51.496467922587875],[-118.69668521789501,51.49985976265492],[-118.69065590826483,51.503066713050266],[-118.69066626344635,51.50500726494476],[-118.69351540767335,51.50723060033934],[-118.69755215442905,51.508593681803895],[-118.70277798724922,51.509784456383144],[-118.70809253086988,51.51131562475629],[-118.71360690996136,51.513304846580766],[-118.71912035942843,51.51792480460251],[-118.72400171535732,51.523738763635194],[-118.72713241988683,51.52550543312611],[-118.73126386362833,51.526925067717535],[-118.73759881171411,51.528794622638394],[-118.74117109650899,51.52947604852689],[-118.74565192521476,51.52826110598385],[-118.75031383367224,51.525509787252616],[-118.75808424383965,51.52246513664009],[-118.76549699947067,51.52175860282082],[-118.76845458573641,51.52467170593722],[-118.76975873891237,51.52740885238252],[-118.77243558179055,51.5320298039098],[-118.77649011727665,51.536129981588296],[-118.77933362538326,51.536925545587586],[-118.7812647422092,51.53691761080028],[-118.78583281340073,51.53410992589866],[-118.78746127102995,51.53073578573789],[-118.7906467611101,51.527242383357425],[-118.7927300965965,51.52489224937452],[-118.79851281494234,51.524480869804094],[-118.80483369431086,51.525032515907164],[-118.81172042331968,51.52655782625758],[-118.81621438817277,51.52825821159838],[-118.8215322983778,51.52847135107676],[-118.82777157641605,51.52908246295808],[-118.83072403895171,51.532497338696494],[-118.83093549869304,51.53644087300077],[-118.83095439353237,51.53889960782583],[-118.82987930710443,51.54210333732447],[-118.82780062837654,51.54656232750816],[-118.82599914499517,51.55056635602948],[-118.82484218047874,51.55577417816649],[-118.82534413834267,51.561310647179084],[-118.82564381764571,51.5654226030953],[-118.82529010415593,51.56793836983484],[-118.82529320727998,51.56845160057634],[-118.82523619070648,51.57199300474214],[-118.82526201635329,51.57662489251333],[-118.82529010182412,51.58142038537033],[-118.8253039781973,51.58399654693149],[-118.8243243316621,51.58714024162261],[-118.82039141342085,51.588802932795765],[-118.81525728429087,51.59070187783355],[-118.81390330792708,51.592933913965965],[-118.81437431073458,51.59590770325423],[-118.81531449015463,51.599387519868195],[-118.81478337387199,51.60076504911531],[-118.81277210347162,51.6032813606489],[-118.81243482396523,51.607284182274135],[-118.81521683019714,51.61167418512308],[-118.81597490881792,51.61458316246726],[-118.81609972639826,51.61966879810962],[-118.81510985258103,51.6230428901966],[-118.81504148365113,51.62647069195851],[-118.81717415614884,51.63075066110406],[-118.81865490011074,51.632005491027435],[-118.82114719052268,51.63445163369207],[-118.82777413725267,51.63500727835871],[-118.83006786900683,51.63494162916018],[-118.83355937822313,51.63493167619026],[-118.84119148831653,51.63645462904277],[-118.84395845939376,51.63838587041403],[-118.84609258965804,51.64152078154863],[-118.84905342817478,51.64351478193034],[-118.8506178888577,51.6439090561105],[-118.85438332726675,51.64498612516489],[-118.85963252619523,51.64588447540406],[-118.86560717451422,51.646437992556656],[-118.8675421817599,51.64643417546797],[-118.87185457359651,51.64567513401665],[-118.87533666158485,51.64492312752615],[-118.88066696702523,51.644788386448475],[-118.88397204650639,51.64512311250435],[-118.88858150356913,51.64664917152554],[-118.89088933941446,51.647841280902604],[-118.89422263786064,51.65069031566568],[-118.89570362711999,51.65285597857618],[-118.8971076788559,51.65513800000692],[-118.89950765358141,51.657469163086326],[-118.90396136733024,51.661400604188934],[-118.90470481100567,51.66345413985066],[-118.90566955101141,51.66916662359796],[-118.90607333267378,51.67241814177681],[-118.90811111913854,51.67429918259507],[-118.91061263459314,51.67646268958795],[-118.91579370135774,51.67987505754561],[-118.91744802495442,51.68089331933335],[-118.92078234820326,51.68385120311646],[-118.92265813316806,51.68727914222788],[-118.92315180931843,51.6907034352164],[-118.9232640751142,51.69441570548926],[-118.92291409097933,51.695677905203034],[-118.92285675219912,51.69944838485922],[-118.92003027847461,51.70242456085098],[-118.91700268860392,51.70403378827819],[-118.91482022913874,51.706446816581334],[-118.91476163706338,51.71022060213631],[-118.91549898080159,51.7112420777666],[-118.91727551992074,51.713579950572665],[-118.91822860637079,51.7180331672418],[-118.91456441738293,51.72050630125719],[-118.90768323283424,51.72349839885273],[-118.89989611330164,51.726320983020656],[-118.89502308122617,51.72851086570749],[-118.88870535435848,51.73115775275593],[-118.88642548324938,51.73459742409851],[-118.88653484572974,51.73625175865934],[-118.88654523955628,51.73842408641405],[-118.88721096604814,51.74042086369071],[-118.89009349364058,51.744468253540106],[-118.89028781509924,51.74640740572604],[-118.89022317865319,51.749667897863695],[-118.8918302068363,51.754748800569914],[-118.89342782291916,51.75971067867566],[-118.89540269256555,51.7638804371354],[-118.89560678308769,51.76576152715433],[-118.89443636779713,51.76936621092722],[-118.89012384833715,51.773096989004046],[-118.88581030403691,51.775219584728944],[-118.88334596063339,51.77825430939593],[-118.88384313026096,51.7819127323089],[-118.88764277009682,51.785271956422044],[-118.8925337614328,51.786683513281766],[-118.89603951053368,51.78701670835567],[-118.8998217514188,51.787175366643346],[-118.90479974893906,51.787786400278584],[-118.90831284146373,51.78852375442879],[-118.91357632313058,51.790162627242765],[-118.91590400542273,51.792270608724934],[-118.9201531800669,51.79413925167377],[-118.92532023265139,51.79520964986478],[-118.92891481665234,51.79490987961193],[-118.93251055653064,51.79415246276011],[-118.93536070536184,51.79340290292462],[-118.93912596607697,51.7925881533322],[-118.94152547950503,51.792637891790925],[-118.94282528625939,51.79389270005282],[-118.94406023569,51.7966307142147],[-118.94545526799718,51.79919204686259],[-118.94621351049177,51.80199184322126],[-118.94900366944552,51.80432141730053],[-118.95234797650232,51.80665579097078],[-118.9540162449289,51.80762206968672],[-118.95845852038029,51.81012031901656],[-118.96097652692495,51.812515011874304],[-118.96192999758765,51.81565009233708],[-118.96138251281012,51.81650899969782],[-118.96093240323609,51.81857254495384],[-118.9599366332639,51.82039845809282],[-118.96041750150503,51.821940607792854],[-118.96115798104348,51.822508625435056],[-118.96366111049319,51.82364446827382],[-118.96598213752512,51.82500459128283],[-118.96554098806527,51.82701344782893],[-118.96268487719966,51.82788068506256],[-118.95881036188851,51.82863325825027],[-118.95532593006996,51.830133339803005],[-118.9513716381879,51.83191823339116],[-118.94889635214345,51.83403771303246],[-118.94863115707382,51.83558572353041],[-118.94912259155022,51.83832438210672],[-118.94940420749228,51.83884047526671],[-118.94979397628299,51.84112484475134],[-118.94889227556672,51.843356034184836],[-118.94936495001286,51.845579571119075],[-118.95085724680139,51.847009969970834],[-118.951045693548,51.84728982788385],[-118.9517915727711,51.84854852098769],[-118.95246316741522,51.850717788783534],[-118.95413654235394,51.8520240461973],[-118.95607188068108,51.85270511562407],[-118.96571268458554,51.85724207153464],[-118.96951744582599,51.85865547428417],[-118.97451457384223,51.8609218658556],[-118.97905613789719,51.862391438431466],[-118.9827596355249,51.863350143823645],[-118.98720888021383,51.86476071702848],[-118.99044670235503,51.86589063870393],[-118.99001186422979,51.86840924888734],[-118.984664872206,51.86957355901051],[-118.98125035087644,51.86981038424817],[-118.97618363257378,51.870231369284134],[-118.97137285017925,51.87087691588131],[-118.967617851255,51.872948028618936],[-118.96643133095759,51.87495327319684],[-118.96630131359439,51.881184337461185],[-118.96533382998508,51.885812025224354],[-118.96545243400229,51.88987140979467],[-118.96753670584364,51.89552227127603],[-118.97081845555218,51.899740381946216],[-118.97118560308338,51.90036472729037],[-118.97353012284495,51.90332606692431],[-118.97355514150455,51.90715475445102],[-118.97322034421362,51.9112182932127],[-118.97528093269828,51.91394910789002],[-118.97760732316864,51.914854740016004],[-118.98309044060153,51.917869015989645],[-118.9872753244496,51.92167854099822],[-118.9875130702887,51.9277339335306],[-118.98497108966986,51.932602079456494],[-118.98166146065007,51.93478730777021],[-118.9764009534997,51.935092624036926],[-118.9704764183663,51.93488703148317],[-118.96491824118694,51.93404606062951],[-118.95779109358553,51.93259052929604],[-118.95287838662293,51.93174353202419],[-118.94825020839481,51.93004606722416],[-118.94407036783093,51.92829373089497],[-118.93935233700559,51.92733357018134],[-118.93888735813202,51.92722263630771],[-118.92779556695793,51.927026311677814],[-118.92261129852312,51.927044197229364],[-118.91502214415637,51.926729977779615],[-118.90837003340992,51.926862660597315],[-118.90404660461434,51.92967566778665],[-118.90166914401578,51.93293937411028],[-118.90104666788325,51.93585365924789],[-118.89884287830802,51.93831998509158],[-118.89729267319841,51.94198145949258],[-118.89693859253012,51.94432630021474],[-118.89695209649108,51.94540797021587],[-118.89539569524945,51.946955835895935],[-118.89116615205045,51.95034065001666],[-118.88978915710672,51.95240056164158],[-118.89018553222448,51.95525797212715],[-118.8915805351196,51.95702604263651],[-118.89417929397764,51.9583311228874],[-118.89752398352202,51.95946483939611],[-118.90113434693986,51.96076648867389],[-118.90502329295475,51.96206777927147],[-118.90865289937473,51.96343345658132],[-118.91236749350195,51.965536247056264],[-118.91458882621465,51.966557117791254],[-118.91812361437522,51.96751989964679],[-118.92145083038537,51.96751011952751],[-118.92700550404336,51.967316494431685],[-118.93181028577364,51.96695917115216],[-118.93551593246048,51.96786429939994],[-118.94060817525931,51.96853181397997],[-118.94562952284275,51.9699971122422],[-118.94888707736486,51.97222089815833],[-118.95481305147904,51.97317170669273],[-118.959722417227,51.97406823937576],[-118.96500676097698,51.97427929947911],[-118.96908338283005,51.97597681479273],[-118.97132451006962,51.978424323606134],[-118.97116041612254,51.97979978207779],[-118.96944079571362,51.98426504399274],[-118.96806995694656,51.98729910964562],[-118.96706510122164,51.98861624741486],[-118.96524974375197,51.99176840286037],[-118.96286245880484,51.994287648768164],[-118.96139319089245,51.99674879450412],[-118.961037872339,51.997493280111165],[-118.96077031580604,51.99932326592808],[-118.96015400803256,51.9999593329084],[-118.95869390537875,52.001548804864555],[-118.9568450005998,52.00309411546178],[-118.95341134547748,52.0042851686742],[-118.94887378094576,52.00514010389552],[-118.94691846739443,52.00787776550727],[-118.94608702969806,52.01010525682023],[-118.94616948426433,52.015640006458035],[-118.94523680529466,52.020201822039525],[-118.94346503826276,52.0273946159645],[-118.93881700629025,52.030532913265574],[-118.93399343733769,52.03366364430592],[-118.92778812763888,52.03725453569004],[-118.9205529942001,52.03941698981961],[-118.91583146249955,52.03741911613209],[-118.90795598045275,52.03523924056538],[-118.90462305943535,52.03552075836534],[-118.9008191383437,52.036885920634205],[-118.8961823570933,52.03813803078056],[-118.8911777788996,52.040020280373554],[-118.88579917733874,52.04149600029252],[-118.8812514941816,52.04228877747319],[-118.8757799895364,52.04245044184961],[-118.87197985997756,52.04324697194372],[-118.87068030992106,52.04347397812779],[-118.86511508173942,52.04438160444701],[-118.85723936251352,52.045680639808204],[-118.85102082245422,52.047786147617494],[-118.84850399142354,52.05102911751295],[-118.84727350889007,52.05759400612623],[-118.85021955438883,52.06216200212303],[-118.85428538512328,52.06421868022847],[-118.8604916482151,52.0659427568276],[-118.8678937567079,52.068522797423384],[-118.87030164677316,52.070577904663494],[-118.87195873228184,52.07451911343601],[-118.87008203044506,52.07913818493668],[-118.86961972565338,52.07953719295173],[-118.86552235058983,52.08176057758201],[-118.86144386654865,52.08386668933543],[-118.85521297607049,52.08619336113173],[-118.85316065924233,52.089102994202],[-118.85491727793591,52.09029969757101],[-118.8581656495721,52.09207362715842],[-118.85972344776926,52.093675422956444],[-118.86176813063518,52.09624617373325],[-118.86240360566775,52.09836314676103],[-118.8642528416118,52.10007140604906],[-118.86610081056796,52.10241232686371],[-118.86367157659777,52.10537930338488],[-118.86124894603124,52.10857148121834],[-118.86021632092616,52.11171185480204],[-118.85992632314863,52.11364740147487],[-118.85778138390658,52.11666687868258],[-118.85377973427423,52.119175456782784],[-118.85069283466612,52.12219605499265],[-118.85031734361682,52.12464580106089],[-118.85030007343387,52.129554254790705],[-118.84980418917675,52.13388807918592],[-118.84916130120095,52.13457388670226],[-118.8467277260768,52.13799337049762],[-118.8434687569593,52.140442492565604],[-118.83936502754645,52.14266038252933],[-118.83620189287298,52.144881452256804],[-118.83469950687339,52.1477326737099],[-118.83404443009358,52.15035319502567],[-118.83429474430731,52.1553228184225],[-118.83446729896495,52.15783254094839],[-118.83406357090213,52.163995429319996],[-118.8314459693597,52.16655466332102],[-118.82604439518687,52.16814769520719],[-118.81879899854401,52.17046908636536],[-118.81357684244298,52.17274726394159],[-118.81142894659308,52.173534540551884],[-118.80547286563605,52.17614807124124],[-118.80221732914413,52.17810231869261],[-118.80593013466373,52.180917213175796],[-118.80894479986769,52.18324041594672],[-118.81290018696764,52.18699200055162],[-118.81563554657772,52.19011346275732],[-118.81902771744521,52.1939817693639],[-118.82392307581125,52.19846978737596],[-118.82757401847464,52.20078855994275],[-118.83217009183895,52.202652088423875],[-118.84038118804813,52.20483912451904],[-118.84581447699766,52.20743466213362],[-118.84937401145133,52.20987145305185],[-118.85060947239367,52.2117527401029],[-118.85048001010473,52.215292075240306],[-118.84585270372993,52.21724982368312],[-118.8405496953425,52.21768137348067],[-118.83323570984976,52.220282632889706],[-118.83288996225096,52.22325189540518],[-118.83500803639096,52.228781223729136],[-118.83710889632908,52.23219763983221],[-118.84160762430648,52.234225752519585],[-118.84636099798104,52.23472060028706],[-118.85826899106485,52.2348317963213],[-118.86985197881401,52.23699782349651],[-118.87303012797487,52.23783870551521],[-118.87976006029848,52.24002775923205],[-118.88903192598691,52.243973056507826],[-118.88982685342464,52.24773756266722],[-118.88726608716584,52.25083670372092],[-118.88565847397197,52.2557545731973],[-118.88476914462123,52.258552168482076],[-118.88230205797042,52.26188180291404],[-118.87703423933525,52.264928229614064],[-118.87063671277691,52.267307515569094],[-118.85857790967628,52.27170503125825],[-118.84903051029396,52.274379695505246],[-118.84422824999774,52.27788580269644],[-118.84397859601286,52.28045580387652],[-118.84398035272272,52.280800717317376],[-118.84366206643821,52.285027947440106],[-118.83783616073664,52.288821441831445],[-118.83039841177019,52.29005256810682],[-118.82284621317069,52.29054988990602],[-118.81710714365802,52.29354049158277],[-118.81342879132873,52.29727149052806],[-118.80862187795366,52.29997547422975],[-118.80823848177482,52.299972463903536],[-118.80117559791472,52.302122748476904],[-118.79038635484544,52.30376921181692],[-118.78435795913325,52.307050822276885],[-118.78478632029879,52.31092869526066],[-118.7881839014017,52.31445262988454],[-118.79334257694664,52.317166137223765],[-118.80196837491611,52.32043955400404],[-118.81132432003322,52.32359425034565],[-118.82022524355355,52.32709282002346],[-118.82903610353377,52.330075712451674],[-118.83700900944285,52.33295074202797],[-118.84526393116451,52.33662401208554],[-118.85454986484446,52.34068197459156],[-118.86128878241155,52.342196069154035],[-118.87213664943421,52.34362104649766],[-118.88353950055601,52.34419577946147],[-118.8880161403358,52.344114493407844],[-118.89417360395687,52.343967283116584],[-118.9020047755412,52.344155116321865],[-118.90969020795116,52.34576545724294],[-118.9172789190809,52.34823571391216],[-118.92399291918518,52.353512985273944],[-118.92477671843693,52.35647659994977],[-118.92483722290413,52.360243191988424],[-118.9260003528859,52.363778050628234],[-118.92762394424396,52.366222304073375],[-118.93234581975334,52.369339033098946],[-118.93463970843163,52.37337706010308],[-118.93382787455636,52.37480784547217],[-118.93305601866203,52.37995428967498],[-118.93741801741885,52.38455268393679],[-118.94511152418285,52.386794287293625],[-118.94534666913093,52.3900485873608],[-118.94109573161367,52.39332358923473],[-118.93399132417271,52.39856153014824],[-118.92785769564627,52.40184632969813],[-118.92517684651861,52.4037487783135],[-118.92594112183673,52.404140180424946],[-118.92811120909997,52.40561103248318],[-118.9304154405328,52.40959549455138],[-118.92765855829812,52.413665955483374],[-118.92267733394624,52.41757688479297],[-118.92084075648849,52.42072669558031],[-118.92087039661506,52.421984060576435],[-118.92329264681442,52.427679734363274],[-118.92849840758113,52.43284270613452],[-118.93609590818907,52.434457752898176],[-118.94110045563993,52.43734512106119],[-118.9389016616577,52.44026917907266],[-118.93613403860515,52.443137721938655],[-118.93402560608624,52.44577883625222],[-118.9330407249915,52.448522178546725],[-118.93243184654636,52.4519502641765],[-118.93002665458793,52.453960417012404],[-118.92574837431499,52.455467649569144],[-118.92447124058586,52.45827142055239],[-118.92274426607263,52.46182504589456],[-118.91884953987416,52.463785254125824],[-118.91203116528307,52.4649606955036],[-118.90905511713551,52.4669170303571],[-118.90629001131664,52.46938864090722],[-118.90498879272627,52.469907848673444],[-118.90039823892103,52.47033058995095],[-118.89462189828005,52.47155815433941],[-118.88707115587296,52.47365117807049],[-118.88411759412782,52.4769799630629],[-118.88437039568936,52.482515689886355],[-118.88660714720355,52.488159463662655],[-118.8891710698382,52.49093974334798],[-118.89257745701805,52.494007536168844],[-118.89870785481426,52.49728689082278],[-118.90541677929055,52.50164662182685],[-118.9083637180755,52.504544363441106],[-118.90750308705118,52.50974588004118],[-118.90427221205043,52.51375889413249],[-118.90246619431774,52.51839288700663],[-118.90270162299822,52.521988459315175],[-118.90446136968262,52.52740235892115],[-118.90636339985791,52.52944988612961],[-118.91044143201782,52.53296897622899],[-118.91423669694122,52.53631686491571],[-118.91849616743436,52.539374645698736],[-118.92313595668094,52.54238047768415],[-118.93013354253851,52.54639685769045],[-118.93307346030322,52.549635036212976],[-118.93162444538665,52.55283615890499],[-118.93091576839277,52.55586938433207],[-118.93121853341532,52.55718376372504],[-118.93116628726814,52.559748865482284],[-118.92902071746944,52.56095944093838],[-118.9245516636616,52.562926984478516],[-118.92338122495666,52.56641308127989],[-118.92527005989591,52.56828636703204],[-118.92819263791999,52.56929878966922],[-118.9301743721516,52.56980224916407],[-118.935350981521,52.571200396885914],[-118.93884731873376,52.57260951605629],[-118.94206438698691,52.57436201270943],[-118.94510170785988,52.57657547318412],[-118.94698628622554,52.577761507820405],[-118.95055187281434,52.57740259937621],[-118.95475332421518,52.57652001945561],[-118.95880559987188,52.57735557636526],[-118.96389797656877,52.579727749570985],[-118.96890995831338,52.58186896495024],[-118.97050997375753,52.58225962141137],[-118.97530313373451,52.58320294236154],[-118.98171365362728,52.584252068710256],[-118.9885896974659,52.586270481690136],[-118.98971764240017,52.58700466252535],[-118.99315175964838,52.59035334189878],[-118.99410788846772,52.596856774929705],[-119.00035816571199,52.600988446600425],[-119.00766919313261,52.60054875855969],[-119.01223826498394,52.59823944237244],[-119.01546900433569,52.59456571854813],[-119.01864425317916,52.593687386529],[-119.02174038573045,52.59383983833268],[-119.0296373019404,52.59453715458915],[-119.03643351109473,52.59752360318266],[-119.03848448413906,52.60145127066382],[-119.03687244217858,52.60642291362524],[-119.0384410773553,52.61030252942301],[-119.04159520671766,52.61376048130561],[-119.04383317163783,52.61837426780412],[-119.04469415482272,52.61957161380751],[-119.04849622200778,52.62188714927187],[-119.05082717111321,52.626667868464445],[-119.05087194719898,52.62986892819917],[-119.05318138937376,52.633047372741686],[-119.05337426695058,52.6330504224999],[-119.0560368862108,52.63369115804836],[-119.05868181326501,52.633433778741946],[-119.06346129687165,52.637529389713166],[-119.06768506892392,52.64111249718081],[-119.07182432522505,52.6410917722273],[-119.07554807152037,52.64574673076185],[-119.0812932578708,52.65630136405985],[-119.08884065527558,52.658772119154065],[-119.09314878200057,52.663147283603394],[-119.09894937496784,52.66474015352758],[-119.1036494079247,52.66826529769781],[-119.10527868298544,52.67062111148327],[-119.11257822594057,52.66846701389888],[-119.1213458824183,52.667173841302464],[-119.13061641460834,52.66543392086534],[-119.14067059884535,52.66158925927566],[-119.15206965336672,52.656955235237625],[-119.15969993105328,52.652517453331896],[-119.16549996100238,52.64937325867842],[-119.16970524240396,52.64661391262618],[-119.17045616529869,52.64508039854332],[-119.17110229383883,52.64364377386424],[-119.17316989814667,52.6411306413983],[-119.17425837478018,52.64046250430508],[-119.1743768684819,52.63953431252049],[-119.17596926750397,52.63747973865359],[-119.17729387178409,52.63617008089698],[-119.17916245118052,52.63508592561476],[-119.17960206677449,52.63354259769162],[-119.18226247546413,52.633553600057844],[-119.18462989158614,52.62999211806835],[-119.18854286301872,52.6231672437774],[-119.18970203511644,52.61990379184266],[-119.19305164767128,52.61399226048396],[-119.19175243220982,52.6095474866967],[-119.18983337960968,52.6033965655722],[-119.19304344505682,52.59966131181612],[-119.20002638421008,52.60097916129182],[-119.20532886481301,52.603335747031856],[-119.21062361328352,52.60518266772518],[-119.21598772518843,52.6059389324502],[-119.21627358384954,52.6058232908486],[-119.2232946763101,52.60531501778357],[-119.22898865406576,52.60361280818869],[-119.23598341203048,52.60110544188167],[-119.24308865558754,52.59968049055268],[-119.25029629474504,52.59911000422459],[-119.25797153942496,52.59830495432788],[-119.26003975246005,52.59828678257157],[-119.27206350137463,52.59836071582027],[-119.28239884785074,52.599250763507776],[-119.28804864579773,52.60017498229932],[-119.29315040669114,52.60156327651944],[-119.29989436463619,52.6008172420649],[-119.30669477451801,52.59818889065134],[-119.3145350908084,52.59669618216905],[-119.32147046472473,52.595952642499746],[-119.33757386296217,52.59032938422831],[-119.34558959722447,52.58769028102237],[-119.3537583818719,52.58778883260286],[-119.35860284943189,52.59054929787285],[-119.35997030584042,52.592649703860374],[-119.361765729806,52.597259007320446],[-119.36344383111958,52.60090299146166],[-119.36542074048182,52.60482567726178],[-119.36822752350484,52.608286169297735],[-119.3725317352699,52.611676423057375],[-119.37458348265923,52.61502843690994],[-119.37363832355817,52.61863492067955],[-119.36726270203187,52.62275075036387],[-119.36346079581025,52.62483521475726],[-119.36162542367033,52.62679466911157],[-119.36171502564517,52.63033508363366],[-119.36215193615534,52.633075194154884],[-119.36226906567255,52.637875142161576],[-119.36158701675151,52.64073499633437],[-119.36097873164205,52.64331086645644],[-119.35900683288239,52.647100243118174],[-119.3595053950761,52.64829487463164],[-119.35830581375059,52.65362091522903],[-119.36109323889013,52.65588246883768],[-119.36664145544025,52.65617459668925],[-119.37066895958378,52.65533762630966],[-119.37541320960729,52.653522512946495],[-119.38372178574802,52.651164359052686],[-119.39139630167195,52.64972597221449],[-119.39947465273261,52.64971364394283],[-119.40715912532127,52.64878304856653],[-119.41280254825128,52.645073994130854],[-119.42299352786866,52.63915347012546],[-119.42681481519537,52.63809088998416],[-119.4379898523315,52.63832659988336],[-119.44597417636894,52.64133483995616],[-119.45039325535261,52.64529591758343],[-119.45288663008502,52.64727008904992],[-119.45820130885461,52.649274770387024],[-119.46672050786276,52.64822171439592],[-119.47258417320926,52.64605200893277],[-119.47789092375672,52.64411707647774],[-119.47981851504393,52.642496086251626],[-119.48881996574225,52.638067738345384],[-119.498762900154,52.634082975633234],[-119.50499417844031,52.63162113051732],[-119.51741186575389,52.62903731946674],[-119.52681486011441,52.62917506508981],[-119.52968296771039,52.63114408674298],[-119.53050239283877,52.633587940870854],[-119.5307630779561,52.63638455327035],[-119.53187010606392,52.63889386076912],[-119.5330958347311,52.642191921337805],[-119.53374058488545,52.64549824635435],[-119.53513747109722,52.64806014069885],[-119.5372993984319,52.65146458837799],[-119.54011852609774,52.65514791172323],[-119.54107732800455,52.659136649320494],[-119.54005395015552,52.663151211855414],[-119.53778850605345,52.66603229941502],[-119.53761388048743,52.666203260778985],[-119.54295770015777,52.66569057174819],[-119.55062727418158,52.664354730571425],[-119.55433829130524,52.66282955144946],[-119.5615931031916,52.65989624172051],[-119.56353731005868,52.65913474565148],[-119.56974670771741,52.65552939475432],[-119.57490614714689,52.65227330562062],[-119.5784792328137,52.651949637106526],[-119.58041420248416,52.6542152052854],[-119.58192663508075,52.657513081407494],[-119.58481472242647,52.66016972285181],[-119.58816572533098,52.66242014561023],[-119.59677358558793,52.667412380763786],[-119.60351970666835,52.67282845382329],[-119.60768218901238,52.67712574137197],[-119.61077378682228,52.682917123853215],[-119.61286334495476,52.68695544377212],[-119.61364561368934,52.69117874319418],[-119.61371048052278,52.696318148076735],[-119.61330621896687,52.69872216752554],[-119.61531567084218,52.703103677207196],[-119.61892543279195,52.70455176837856],[-119.62419654393433,52.704547700827824],[-119.6282062824048,52.70341850963046],[-119.63157403043817,52.702699223530004],[-119.63719005996457,52.70137771576999],[-119.64476500839692,52.70009453026467],[-119.65238434404932,52.700011111174796],[-119.66357622182461,52.699827448007014],[-119.672832249224,52.69783877191969],[-119.67718008746625,52.69561799891055],[-119.68522106922426,52.69106522858227],[-119.69230300830476,52.68584018000174],[-119.70003869574438,52.68020562292849],[-119.70977946097364,52.67609421564945],[-119.71626422426434,52.676306879543596],[-119.7203495498021,52.67745955132529],[-119.72510229204347,52.6788302304395],[-119.72813444344732,52.67976170044456],[-119.73491347524173,52.679797278343386],[-119.74009195879223,52.68019611563377],[-119.74566779592404,52.680929912431026],[-119.74981834292758,52.678593752704685],[-119.75312970751598,52.67609272711487],[-119.75539185718549,52.6734398368933],[-119.75875889365226,52.667395873579224],[-119.76227550816166,52.66266384023801],[-119.76503580745342,52.660766522555654],[-119.765317187728,52.660570599425974],[-119.76673012696375,52.66067085914925],[-119.7694849804231,52.661664671281606],[-119.77367565121897,52.66321545735544],[-119.77813061423204,52.66458722277988],[-119.78485979840755,52.666275736845236],[-119.78817813972708,52.666978991339015],[-119.79452565104057,52.66833044334926],[-119.8031498762186,52.67039423800446],[-119.80837570190927,52.67210214144959],[-119.81420136174225,52.67460097002434],[-119.81846255343115,52.67815007523167],[-119.82300730264093,52.68169767793615],[-119.82720429970554,52.68364152920766],[-119.83236979364226,52.68609313993286],[-119.83817200305285,52.687847972935046],[-119.84794502664563,52.69023874038626],[-119.85403691339356,52.689988121026516],[-119.85916975840206,52.68843861346347],[-119.86068233303682,52.68629975956775],[-119.86154908556014,52.68389181516964],[-119.86196483332456,52.682344364993064],[-119.86311845466282,52.68301249854961],[-119.86647250416316,52.6851405743954],[-119.86974581923046,52.68721142172374],[-119.8736970745797,52.68984813753252],[-119.87881429542576,52.69338502743674],[-119.882839978187,52.69841852877015],[-119.88456792046625,52.70474553657678],[-119.88692508653254,52.709800513094756],[-119.88894495285359,52.71388777351292],[-119.8913777553538,52.71602857119547],[-119.89660881130948,52.717447115730586],[-119.9039771457121,52.72089484871625],[-119.90749080367189,52.72193864363583],[-119.91373826120103,52.722711377561474],[-119.9195752009905,52.72291796985863],[-119.9206194841147,52.72290369317011],[-119.92511660240291,52.722272032506645],[-119.93140065165483,52.72184662970604],[-119.93611916456288,52.72206461100802],[-119.94099932014974,52.721773365953524],[-119.94452225247308,52.720238975484776],[-119.94669014890304,52.71786491180043],[-119.94918790703787,52.716627655335316],[-119.9527850598161,52.71698094193398],[-119.95666202888317,52.71767139771619],[-119.95963520169269,52.71917378038409],[-119.96305280470148,52.722272058962794],[-119.9645643274568,52.72516491057959],[-119.96453122773111,52.72676770742509],[-119.9646926245348,52.73099621716756],[-119.9648192719333,52.73431240874841],[-119.96672324986497,52.73748808224129],[-119.9689311395192,52.73883195986618],[-119.96950419742556,52.73899255601471],[-119.9716018444983,52.73953660408868],[-119.9747359503072,52.74012447394202],[-119.97927222196907,52.740803601120035],[-119.98478745246148,52.74204073862163],[-119.98795665377243,52.743544452672175],[-119.99224748732533,52.74491225682997],[-119.99328713014042,52.745357081883114],[-119.99578552679488,52.74623280040638],[-119.99853247540169,52.746824850034386],[-119.99978595340423,52.74786824793471],[-120.00127217921671,52.74884597342927],[-120.00358215240863,52.75074656335924],[-120.00579734600123,52.75321697030153],[-120.00707541769019,52.754830069821466],[-120.01039302959946,52.7587897032798],[-120.01230503344532,52.761833176960245],[-120.01272844101923,52.764230196099],[-120.01386761072682,52.76800446257575],[-120.01543355880936,52.770013981117344],[-120.01663162456626,52.77082260858559],[-120.01933951862452,52.77255586129154],[-120.02061624713691,52.77450494474123],[-120.02132121549492,52.777024239210725],[-120.02124666250249,52.78010651466182],[-120.0214140225748,52.78135782020748],[-120.02333791080417,52.784116487627834],[-120.0251654764872,52.78692585430671],[-120.02604479760332,52.79001292821645],[-120.02678053212257,52.79093388688892],[-120.02936151992002,52.79369106462287],[-120.03203562343087,52.79685046619148],[-120.033680728768,52.79937309153517],[-120.03361972992951,52.80193864621254],[-120.0336607823142,52.8046274835669],[-120.03391427444576,52.80622557096088],[-120.0355562840242,52.80909323282275],[-120.03725038713229,52.81361501670178],[-120.03869549024328,52.81693367121737],[-120.04181984617014,52.82083591515055],[-120.04656334473985,52.82383463031896],[-120.04741628782065,52.82424459579513],[-120.05116453248068,52.82518623278929],[-120.05663346274198,52.825454832439235],[-120.06068185640311,52.825423438182284],[-120.06321958960781,52.82584502225465],[-120.06444531530971,52.82636540177006],[-120.06678176212652,52.827696603576726],[-120.07004742423774,52.82942903376204],[-120.07444002653317,52.831001310271354],[-120.07639031898367,52.833180922482455],[-120.08019167276515,52.83600391547025],[-120.08338541369746,52.837402782183446],[-120.08768831689027,52.83919993166028],[-120.09113990898447,52.8411102921731],[-120.0947435942125,52.845584790068244],[-120.09538432376375,52.84666962002144],[-120.09680775084006,52.85050731940795],[-120.09842071036434,52.85502585232139],[-120.09999248463099,52.85715156574349],[-120.10186346999986,52.85830498826479],[-120.1041829754482,52.86031755603251],[-120.1061294408649,52.86232930567639],[-120.10910317664053,52.864689488543355],[-120.1107611627952,52.866414517059866],[-120.11104960999941,52.86670450129802],[-120.11516348739404,52.868385210714486],[-120.11976197131413,52.87012828917],[-120.12265917466732,52.871970335253174],[-120.12507564452,52.87415816347889],[-120.12656704737547,52.8753657521457],[-120.12769034496897,52.87588582914477],[-120.13069310692529,52.87642687444432],[-120.13446982954682,52.87644768581487],[-120.1349396777323,52.876507162425675],[-120.14709528325966,52.873719121783125],[-120.1481905614669,52.87314127657074],[-120.14897734416684,52.87263405632304],[-120.15020274257616,52.87176134827239],[-120.15121605004937,52.87058401059423],[-120.1526560422527,52.86858405433791],[-120.15416050311288,52.866440007554985],[-120.15523792126018,52.86533780222359],[-120.15609003994102,52.86457068425537],[-120.1571248631098,52.86399537953415],[-120.15838654584115,52.86372540963486],[-120.15988668453116,52.863458874616796],[-120.16136919727808,52.86277652399305],[-120.1637468979167,52.861446641873876],[-120.16491676224767,52.86064750147244],[-120.16612929509127,52.859210115047865],[-120.16662476813639,52.85842799409702],[-120.1672501778233,52.85724249077404],[-120.16773395485575,52.85665431734459],[-120.16881250638855,52.85630205142659],[-120.17059726642802,52.85646220059233],[-120.1717572311076,52.85682345985377],[-120.17295443350828,52.85745810637779],[-120.1742330170867,52.857825791503586],[-120.17558737822712,52.85796728973118],[-120.17622770784965,52.85787091511526],[-120.17752817002233,52.85786073463595],[-120.17893523292544,52.85816278447559],[-120.18051077137429,52.85930749022414],[-120.18198715299931,52.860413509044],[-120.18333526531588,52.86125678963697],[-120.18461779211604,52.86192475845396],[-120.186155521844,52.86269250876893],[-120.1874205551773,52.86337982267376],[-120.18852414144756,52.86404674253874],[-120.18961422402081,52.864922124834145],[-120.19028419238614,52.86559339935719],[-120.19075961216973,52.86593964796982],[-120.19162539019983,52.86648962672554],[-120.19263662246203,52.866849477277164],[-120.19391009316242,52.86725771472156],[-120.19502518246479,52.86773230613001],[-120.19560123320875,52.868107682027755],[-120.19596653356436,52.86860474284256],[-120.1964531705147,52.869197755769086],[-120.19681321417401,52.86984296912915],[-120.19749264780539,52.87055570326119],[-120.19836402950924,52.870956358503825],[-120.1995691320251,52.87131954149876],[-120.19977727036508,52.8715457124676],[-120.19992767643737,52.87164759684005],[-120.20007656041531,52.87176064933503],[-120.20021060888477,52.87187296799897],[-120.20035995122429,52.87198266962251],[-120.2005099034172,52.87208790371893],[-120.20066031315324,52.87218978711939],[-120.20080958101872,52.8723000510334],[-120.20095839409268,52.87241365631411],[-120.20109252245844,52.872525419977244],[-120.20122589147361,52.87264275870988],[-120.20137539137328,52.872751342157336],[-120.20150921739919,52.872865338987424],[-120.20165925226486,52.87297000867543],[-120.2018256457956,52.873064252196976],[-120.20200680132919,52.8731597828359],[-120.2022051546764,52.87323873118216],[-120.20238912738141,52.8733136042635],[-120.20260582010172,52.87336759810242],[-120.20283894790084,52.87341060254875],[-120.2030578481106,52.87344840591784],[-120.20327750972697,52.8734806247031],[-120.20351368277407,52.873501291107104],[-120.20374065020927,52.87347990092814],[-120.20396936694057,52.87344567116419],[-120.20418454053859,52.87340121024622],[-120.20441386640256,52.873362503335706],[-120.20464281082312,52.87332659253663],[-120.2048572977821,52.873287160617686],[-120.20509651363078,52.873285487099174],[-120.2053190667904,52.87329648215946],[-120.20555645695384,52.87330820975919],[-120.20579263015043,52.873328871587],[-120.2060139666644,52.873348800038784],[-120.206248466928,52.87338174617587],[-120.20643138372165,52.87346442186218],[-120.20661376820863,52.87355101066458],[-120.20679554498835,52.87364206653753],[-120.2069453667956,52.87374840915405],[-120.20706361320859,52.873867251001464],[-120.20718117642497,52.873991114032684],[-120.20729988168692,52.874106596170485],[-120.20746576039414,52.87420473611305],[-120.20766351912953,52.8742881514918],[-120.20784590964341,52.874374738337806],[-120.20802822546521,52.87446187884911],[-120.20821221367572,52.87453674275962],[-120.20841012870176,52.874619031089665],[-120.20857646816665,52.87471381891082],[-120.20872645024897,52.874819042344846],[-120.20887590024596,52.874928178992505],[-120.20900929820192,52.87504550871687],[-120.20914330389964,52.87515837984994],[-120.20927731152342,52.8752712418876],[-120.20941147069013,52.87538299585756],[-120.20954487154344,52.875500324940646],[-120.20967842395832,52.875616545956696],[-120.20979607622536,52.87573984334848],[-120.20989835857625,52.87586632161753],[-120.21001654368683,52.87598571429019],[-120.21015055500723,52.87609858420854],[-120.21030054584722,52.87620380554282],[-120.21044985391954,52.876314048002165],[-120.21061514038122,52.87641665073405],[-120.21078103571024,52.87651478585633],[-120.21096290942853,52.87660528116173],[-120.2111464572337,52.876683481972904],[-120.21136538161639,52.876721269794814],[-120.21160096854884,52.876746387282274],[-120.21178997031062,52.876674760739114],[-120.21195377816775,52.87656872715508],[-120.21210229237684,52.87646530280288],[-120.21222340820927,52.876343670290446],[-120.21233029445148,52.876216829226884],[-120.21245133354894,52.87609575041576],[-120.21258584217887,52.87598545515143],[-120.21273480749993,52.87587868836083],[-120.21288331741,52.875775262977236],[-120.21304658785448,52.87567313230427],[-120.21319562751356,52.87556580201829],[-120.21335889640756,52.87546367089813],[-120.21350740214206,52.87536025363408],[-120.2136841397733,52.87526890562743],[-120.2138480906648,52.875161743528366],[-120.21399644223222,52.875059442474594],[-120.21418725556799,52.874974409826955],[-120.21439024778473,52.8749096490907],[-120.2146067851072,52.87485511750104],[-120.21482332187568,52.87480058551073],[-120.21503978153257,52.874746616011734],[-120.21522861675506,52.87467610070013],[-120.21541935057991,52.8745916199898],[-120.21563649250497,52.874532619092435],[-120.21586467436539,52.87450227071698],[-120.21609164092911,52.87448085670576],[-120.21631602555046,52.874478428727194],[-120.21655403275594,52.87448566670498],[-120.21679143262936,52.87449737160818],[-120.21701520990834,52.87449940970248],[-120.21725572212043,52.87448822266679],[-120.21746952060226,52.87445378913442],[-120.21769959920763,52.87440947206887],[-120.21790318947784,52.87434024676624],[-120.21805183330801,52.87423569790048],[-120.21817277401429,52.87411517594287],[-120.21827902971701,52.873992796709835],[-120.21840065283888,52.87386724418811],[-120.21850683075941,52.87374542762471],[-120.21864260601271,52.87362563647109],[-120.21877762272905,52.87351142049234],[-120.21889795215229,52.873395365154614],[-120.2189460698905,52.873261125300964],[-120.21899547693867,52.87311739661055],[-120.21907303978342,52.8729862989567],[-120.21917913708891,52.87286504461409],[-120.21931437702317,52.87274915714747],[-120.21940654804428,52.8726204612835],[-120.21948471582286,52.87248489589053],[-120.2195908107096,52.872363641138186],[-120.21969720974514,52.872240143631565],[-120.21981943075194,52.87211012207476],[-120.21992575200433,52.87198718723781],[-120.22003207264356,52.87186425229515],[-120.22013816442896,52.87174299700158],[-120.22024440857744,52.87162061580964],[-120.22036617089265,52.871493944208986],[-120.22048641503149,52.87137844106005],[-120.22060734074962,52.87125791638157],[-120.22072834226007,52.871136828672455],[-120.22084926782286,52.871016294791886],[-120.22095558337776,52.870893358938986],[-120.22104766896128,52.87076522453548],[-120.22112537294207,52.870633008473774],[-120.22118945405043,52.87049112647955],[-120.22123740835977,52.87035801123825],[-120.22125622182858,52.870219520530405],[-120.22121508414847,52.87008257332472],[-120.22117455362141,52.869941158650086],[-120.22116392342565,52.86979952617759],[-120.22119734458754,52.86966344618024],[-120.22126089359149,52.86952546860671],[-120.22135305055386,52.869396779890586],[-120.22147472797491,52.86927066092768],[-120.22160911526689,52.86916091776559],[-120.22177226423301,52.86905932851416],[-120.22198929273378,52.86900087857623],[-120.22217884947409,52.86892476753386],[-120.2222984747014,52.868813729796],[-120.22240607051849,52.86868129465761],[-120.22249882892979,52.8685481375217],[-120.22260505834076,52.86842575395042],[-120.22272604613974,52.868304663969205],[-120.22281751411981,52.868180995426364],[-120.22286629554567,52.868041732106725],[-120.22292907717326,52.86790934674696],[-120.22300783178007,52.86776931115184],[-120.22307068900585,52.86763636279397],[-120.22317706616477,52.86751286177054],[-120.22333944559304,52.86741686349875],[-120.2235153709727,52.86733108458344],[-120.22372035924343,52.86725123420793],[-120.2239104364638,52.867171206791014],[-120.22403336287877,52.867145779644176],[-120.22414031622722,52.86712800271841],[-120.2242478008036,52.867106312194316],[-120.22436905891875,52.86709317022884],[-120.224475936789,52.867075946962935],[-120.22459651305365,52.867067826196376],[-120.22470278429061,52.8670550701926],[-120.22482389050352,52.86704304462468],[-120.22493091967782,52.86702470407714],[-120.22503976808586,52.86699296101899],[-120.2251209172056,52.866945237592674],[-120.22518935363479,52.866881147472256],[-120.22521320854564,52.86681542877325],[-120.22522298767511,52.866743386310866],[-120.22520256571357,52.86667379638753],[-120.22518221901497,52.86660365249092],[-120.22514620428855,52.86653891640574],[-120.22509527962785,52.866474003777526],[-120.22504382388688,52.866413004630566],[-120.22500780953165,52.86634826849529],[-120.22495696050795,52.86628280183259],[-120.22490596002922,52.86621845201333],[-120.22486994604763,52.86615371582785],[-120.2248183394025,52.866093833438036],[-120.22476749097316,52.86602836668295],[-120.22471664269995,52.86596289990305],[-120.22466640104821,52.86589296562637],[-120.22464552555256,52.86582672617318],[-120.22463986314708,52.865758429566675],[-120.22464911174028,52.86569030061005],[-120.22464405702381,52.86561752759003],[-120.22465376042602,52.865546048022274],[-120.22466346379571,52.86547456845038],[-120.2246725606752,52.8654075563482],[-120.22466742953863,52.865335346217954],[-120.22467713283744,52.86526386663542],[-120.22468622965053,52.86519685452328],[-120.22471076725697,52.86512610548021],[-120.22472039402311,52.86505518878658],[-120.22474417343614,52.86499002407407],[-120.2247683324084,52.864922062714335],[-120.22482162862366,52.86485947592416],[-120.22490413838332,52.86480170076218],[-120.22498596509566,52.86474895591946],[-120.22506665520015,52.864704583071045],[-120.2251486343371,52.86465071230746],[-120.22522977887735,52.864602988735584],[-120.22532583260958,52.86455544160865],[-120.22540644680456,52.86451162248903],[-120.22550234854465,52.86446519208508],[-120.22559719018174,52.86442657075861],[-120.2256918788503,52.86438907516002],[-120.22578596223893,52.86435603803167],[-120.22589556109067,52.864318709774444],[-120.2259900976814,52.86428233080386],[-120.22608478689669,52.8642448259504],[-120.22619377891976,52.86421196489683],[-120.22628770874844,52.86418005316926],[-120.22639662527341,52.86414774589443],[-120.22650485899887,52.864120468907984],[-120.2266112738782,52.86410659428326],[-120.22673237117854,52.86409456672657],[-120.2268534684106,52.86408253904502],[-120.22695912533302,52.864074248465826],[-120.22707961625703,52.864066688040246],[-120.22720078847745,52.864054106031865],[-120.22730644526189,52.86404581514022],[-120.22741331430733,52.86402858917037],[-120.22753516883236,52.864010976421355],[-120.22764332632264,52.86398425235328],[-120.22775095272102,52.86396144170945],[-120.22785857900423,52.8639386309668],[-120.22797967547572,52.863926602123655],[-120.22808661910415,52.86390882157087],[-120.22820771542665,52.863896792492525],[-120.22831518978879,52.86387509820495],[-120.22842289191361,52.86385172403969],[-120.2285311235914,52.86382444518213],[-120.2286399611498,52.863792698725916],[-120.22873403972633,52.863759668160185],[-120.22882811936911,52.86372662858348],[-120.22893824357186,52.863685392879255],[-120.22903292886842,52.863647885636524],[-120.2291276891381,52.8636098243464],[-120.22922297884314,52.86356785838196],[-120.22931842105852,52.86352476652848],[-120.22939895285407,52.86348150754735],[-120.22949492427632,52.86343451095008],[-120.2295760616376,52.863386784340996],[-120.22965681952009,52.86334185433264],[-120.22975286668661,52.86329429461495],[-120.22983400349239,52.863246567823566],[-120.22991582112222,52.86319381949701],[-120.22999718536066,52.863144412807316],[-120.2300784730724,52.86309556896572],[-120.23014553270802,52.86304152769756],[-120.23022750101939,52.86298766227001],[-120.23029456029643,52.86293362091314],[-120.23036237668552,52.86287399512851],[-120.2304295870673,52.86281883681313],[-120.23049679727525,52.86276367845743],[-120.23057937162082,52.86270533632877],[-120.23063182296359,52.862648894112866],[-120.23070024421436,52.862584800610314],[-120.23075262013218,52.86252891230767],[-120.23082043523713,52.862469286243524],[-120.23087356806232,52.862407813490876],[-120.23094145913099,52.86234762444552],[-120.23099519738102,52.8622816841183],[-120.23104832972052,52.862220211279265],[-120.23110138558387,52.86215930132079],[-120.23115451761781,52.86209782842897],[-120.23119334670798,52.86203171223752],[-120.23124662988037,52.86196912241987],[-120.23129968514806,52.86190821236223],[-120.23135281658327,52.86184673937104],[-120.23140647845909,52.86178135280727],[-120.23145976100582,52.8617187628831],[-120.23149873948844,52.86165153863013],[-120.2315378704806,52.86158318854637],[-120.23156148611898,52.86151913919209],[-120.2315857824676,52.861450068337575],[-120.23162491313532,52.86138171821613],[-120.23164920930293,52.86131264734247],[-120.23168773407939,52.86124876471554],[-120.23172656035838,52.861182657247504],[-120.23177976658636,52.861120621127284],[-120.23183365340522,52.86105356348511],[-120.23187187363969,52.86099192348381],[-120.2319250794183,52.86092988729041],[-120.23199819437981,52.86072098567574],[-120.23203202806626,52.86058155117685],[-120.23209492286902,52.86044803448316],[-120.23218702751846,52.86031933653796],[-120.23233740419569,52.86020136610689],[-120.23252690334975,52.86012523795516],[-120.23276604426074,52.86012350811747],[-120.23296469544484,52.86020018037343],[-120.2331471533578,52.860286165818614],[-120.23331424874101,52.860375335072675],[-120.2334948154306,52.86047528547393],[-120.23366115547292,52.86057003864002],[-120.23384240430298,52.86066496698742],[-120.23402539510417,52.860747046419114],[-120.2342087655861,52.86082632888436],[-120.23444125130047,52.86087373853011],[-120.2346631418838,52.86088914565841],[-120.23489691147599,52.86081688138043],[-120.23492846703611,52.86069419039469],[-120.23487185636226,52.860560985429096],[-120.23481547243337,52.86042610956514],[-120.23472972701643,52.860287532393414],[-120.23464375454957,52.86015063494203],[-120.23458744815781,52.86001519602361],[-120.23454673151876,52.85987490194976],[-120.23453605820926,52.85973327872519],[-120.23455542914165,52.85959031742277],[-120.23466235829441,52.85946233783818],[-120.23482354686367,52.85937469538878],[-120.2350417950204,52.85930672299828],[-120.23524467976824,52.85924193455106],[-120.23541994223098,52.859160604922174],[-120.23562418866602,52.85908575489826],[-120.23582760163147,52.85901705186348],[-120.23603184545311,52.85894221005943],[-120.23622178628268,52.85886272522616],[-120.2363976504586,52.858776926567806],[-120.2365884975411,52.85869073980413],[-120.2367785874863,52.85861013716978],[-120.23696852544498,52.85853065111299],[-120.23717216109551,52.85846026592549],[-120.237277197043,52.858456433598775],[-120.23739767026393,52.85844886256843],[-120.23751874845493,52.85843682385514],[-120.23762567433833,52.85841903456102],[-120.2377325251138,52.85840179914693],[-120.23785375432092,52.858388643197884],[-120.23796060492805,52.85837140757609],[-120.23808115401151,52.85836327293182],[-120.23818800446317,52.85834603710302],[-120.2383096870676,52.85832953001072],[-120.23841668857159,52.858311177082584],[-120.2385236899835,52.85829282405685],[-120.23863242976813,52.858261631149674],[-120.23874003584498,52.858238810360625],[-120.23884817167314,52.85821207588405],[-120.23895713844135,52.85817920286962],[-120.23903765036444,52.858135937138265],[-120.2391342789726,52.858083910964666],[-120.23920018579838,52.85803823658347],[-120.23928190685241,52.8579860355422],[-120.23936385390618,52.85793216357096],[-120.23944572575736,52.85787884551955],[-120.23951223672807,52.85782870338639],[-120.23959395699859,52.857776502121176],[-120.23967590325559,52.857722629925235],[-120.2397565647794,52.85767824679565],[-120.23985183198002,52.85763626312164],[-120.2399614012484,52.85759892159021],[-120.24005530620786,52.85756699872688],[-120.2401641954117,52.857534678559105],[-120.24025832744981,52.8575010757239],[-120.24036706394689,52.85746988119594],[-120.24046172539086,52.857432364598935],[-120.24055646164857,52.85739429394514],[-120.24065119773712,52.857356223214],[-120.24074653831535,52.85731368482634],[-120.24084248335146,52.857266678780306],[-120.24092306661431,52.857222857752326],[-120.24103255890884,52.857186069192316],[-120.24112729410984,52.857147998072406],[-120.24122240641586,52.857107139103775],[-120.24131721745108,52.85706850491338],[-120.24141248054407,52.85702652889319],[-120.24150789580224,52.85698342696334],[-120.24158908241132,52.856935137886595],[-120.24166966548968,52.856891307402286],[-120.24175092791315,52.85684245529513],[-120.24183271851625,52.856789698459835],[-120.24192881230803,52.85674157461462],[-120.24199531858561,52.85669143103993],[-120.24206310868875,52.85663179826931],[-120.24213014297324,52.856577749942886],[-120.24219793270719,52.85651811709011],[-120.24227979830056,52.85646479701659],[-120.24236098304833,52.856416507390676],[-120.24244292440571,52.856362624283676],[-120.24252403382147,52.856314888523286],[-120.24260536911963,52.856265481826114],[-120.24268662927878,52.8562166290525],[-120.2427685698407,52.85616274571162],[-120.24283545138817,52.856109813865025],[-120.24291678593448,52.85606040694592],[-120.24301219751085,52.85601730376827],[-120.2431074565875,52.85597532634598],[-120.24320286778082,52.85593222301132],[-120.24328329500374,52.85588951722681],[-120.2433787058274,52.85584641374699],[-120.24347335980991,52.85580890362067],[-120.24358148650961,52.85578216474736],[-120.24370255538392,52.855770119642386],[-120.24380954814552,52.855751761774236],[-120.2439312211719,52.85573524883391],[-120.2440370051648,52.85572582595849],[-120.24415746947176,52.85571824798505],[-120.24427672520348,52.855719605092],[-120.24438175376224,52.855715766408494],[-120.24450161373692,52.85571265568474],[-120.24461966100333,52.85572294764986],[-120.24473770832668,52.85573323949623],[-120.24485575570704,52.85574353122399],[-120.24495897168715,52.85575309483908],[-120.24507588572808,52.855771767573145],[-120.24517547678757,52.855808136632696],[-120.24537564176966,52.8558736101671],[-120.24551285519405,52.85596298625593],[-120.24559557717741,52.85601370073654],[-120.2456787512425,52.8560610733865],[-120.2457619267006,52.85610843704094],[-120.24584510113523,52.85615580957021],[-120.24592797491273,52.856205406908536],[-120.24599518600061,52.856260423754335],[-120.246061868081,52.856319354185636],[-120.24612930665585,52.856372691129614],[-120.24621134998,52.8564284356919],[-120.24627863668928,52.856482898384215],[-120.2463613605917,52.856533612309086],[-120.24644393246986,52.85658545201191],[-120.24652710980047,52.8566328151091],[-120.24662579805765,52.85667588433584],[-120.24672780864464,52.85669438161412],[-120.246845934063,52.85670411735237],[-120.24696511774117,52.85670602571405],[-120.2470702233816,52.856701630645944],[-120.24719189785529,52.85668511433932],[-120.24729889141025,52.8566667533046],[-120.24740762183765,52.85663554331036],[-120.24751597403976,52.85660712994253],[-120.24761047508932,52.85657073340583],[-120.24771935602321,52.85653840621715],[-120.2478127250252,52.8565103818311],[-120.2479216044439,52.85647806338891],[-120.24803101269943,52.856441831210795],[-120.24813853427445,52.85641955577434],[-120.2482461306158,52.856396726254175],[-120.24835493453875,52.856364961393076],[-120.24844837761928,52.856336382514],[-120.2485571063632,52.85630517144965],[-120.24865183288985,52.85626709424249],[-120.2487599562966,52.85624035954723],[-120.24886883551574,52.85620803128665],[-120.24896280682104,52.85617553835681],[-120.24907168451337,52.8561432188421],[-120.24918048717468,52.85611145321152],[-120.24928861106294,52.85608470909202],[-120.24939560220892,52.85606634614126],[-120.24950183860824,52.85605356762764],[-120.24962185008627,52.85604933477481],[-120.24974231431429,52.856041751077534],[-120.24986338218501,52.85602969962696],[-120.24996901467864,52.856021388320585],[-120.25009008242749,52.85600933663631],[-120.25019639332933,52.85599600350805],[-120.25031746094187,52.85598395158934],[-120.2504230932337,52.85597563987443],[-120.25054491524084,52.855958003180206],[-120.25065115102588,52.8559452236267],[-120.25077108723988,52.85594154358645],[-120.25089215453544,52.855929491075194],[-120.25099778658036,52.855921178843396],[-120.25111885375402,52.855909126098446],[-120.2512252401306,52.85589522911631],[-120.2513463071663,52.85588317613684],[-120.25145269340402,52.855869278948546],[-120.25157376030178,52.85585722573449],[-120.25168059902002,52.855839977610394],[-120.25180174060168,52.85582737017389],[-120.2519079756847,52.85581458948302],[-120.25203024920911,52.855793600516385],[-120.25213663500051,52.855779702708176],[-120.25225838091391,52.85576261822293],[-120.25236521911825,52.85574536947532],[-120.25247281149602,52.85572253607533],[-120.25257980036231,52.85570417022119],[-120.25270214805904,52.85568262656602],[-120.25280958925525,52.855660909768055],[-120.25291786056536,52.855633045389965],[-120.25302605571213,52.85560574383516],[-120.25311941918498,52.85557771521618],[-120.25322889552714,52.85554092418962],[-120.2533241446895,52.85549892953752],[-120.25341878915275,52.855461411392014],[-120.25351403795054,52.85541941658391],[-120.25360883289129,52.85538078137091],[-120.25370347804842,52.855343254058006],[-120.25379880110664,52.85530070502713],[-120.25389352072224,52.85526262357038],[-120.25398884341062,52.85522007438317],[-120.25408348667032,52.85518255569568],[-120.25417888499607,52.85513944342774],[-120.25427413111996,52.85509745693024],[-120.25435530088957,52.85504915004124],[-120.25445062264014,52.85500660047365],[-120.25453179083057,52.854958302395225],[-120.25462718820154,52.85491518975722],[-120.2547224333833,52.85487320289035],[-120.25481647328444,52.85484014232704],[-120.25499364050252,52.85474426339146],[-120.25515597567738,52.85464765747556],[-120.25530498663781,52.85453915548581],[-120.25544067336084,52.85441875747051],[-120.2555882499232,52.854320870273796],[-120.25570902927393,52.85420029926738],[-120.25575768730437,52.85406102108265],[-120.255806345017,52.853921742865516],[-120.25586907958883,52.85378877581925],[-120.25596109811373,52.85366005870642],[-120.25602375704563,52.85352764554636],[-120.25608709335626,52.853390210681596],[-120.256149826271,52.853257243440694],[-120.25619848178613,52.85311796499025],[-120.25626166618234,52.852981646913484],[-120.25638191164595,52.85286498879336],[-120.25654491422762,52.852763359179704],[-120.25669459396192,52.852649824697785],[-120.25688401607884,52.85257365691073],[-120.25710015895243,52.85252072613795],[-120.25731404179034,52.85248453982335],[-120.25754192529287,52.85245522705429],[-120.25776950707898,52.852428147683014],[-120.25800679545021,52.85243976951554],[-120.25822330056623,52.85249478738324],[-120.25844214245187,52.852532488108096],[-120.25866158743936,52.85256572073979],[-120.25889367921417,52.85261587009246],[-120.25909377433301,52.852681883318446],[-120.25927602614979,52.85276950844964],[-120.25944133878804,52.85287204403378],[-120.25957548417897,52.852984296300875],[-120.25966204890686,52.853117271365875],[-120.25970314301323,52.853255323484966],[-120.25971389826903,52.85339694499524],[-120.25972510435396,52.85353522466168],[-120.25976589775966,52.85367551056581],[-120.25982182377588,52.85381428872051],[-120.25983303152559,52.85395255940478],[-120.25984438879588,52.85408972208951],[-120.25985499407777,52.8542324604336],[-120.25988110799946,52.85437090319797],[-120.25990699550864,52.85451102579425],[-120.25996307373156,52.85464868688697],[-120.2600195295466,52.85478355116988],[-120.2600760604411,52.85491786142116],[-120.26013191316854,52.855057202247394],[-120.26018859542768,52.855190395500045],[-120.26022924129369,52.855331798017446],[-120.26027049001664,52.85546873282328],[-120.26031113641945,52.855610135287385],[-120.26035238567457,52.855747070040444],[-120.26039303261415,52.85588847245129],[-120.26046507646377,52.85601847785517],[-120.26055262989867,52.85614418755453],[-120.26068558339674,52.85626537368959],[-120.26083502658656,52.856374999522835],[-120.26098447054467,52.856484625158366],[-120.26113504437987,52.85658587815263],[-120.26131754361208,52.85667182005073],[-120.26149981704857,52.856759441511215],[-120.26169699806144,52.85684723457345],[-120.26188055381343,52.856925357129015],[-120.26206335600652,52.8570090729414],[-120.26226189594242,52.857086803805444],[-120.26244417309275,52.8571744237781],[-120.26261063925988,52.85726858216459],[-120.2627930684911,52.85735508466316],[-120.26297497202428,52.85744549163743],[-120.26314151631321,52.85753908632649],[-120.26332274318223,52.8576345233746],[-120.26348974068412,52.85772476678844],[-120.2636716460665,52.857815181598525],[-120.26383804276611,52.85790989220235],[-120.26418649962999,52.85809389070252],[-120.26435124251519,52.85820088673013],[-120.2645023579168,52.858298221596364],[-120.26466777922084,52.85840019547366],[-120.26481724012815,52.85850981609421],[-120.26496662713848,52.8586199905119],[-120.2650855953846,52.858734307390286],[-120.26518739877739,52.85886520657225],[-120.26528980490653,52.858991637954645],[-120.26539221164286,52.85911806923781],[-120.26550990357669,52.859241875046166],[-120.26564401032041,52.859354673926866],[-120.26577766501927,52.859470832358255],[-120.26591177319125,52.859583630917164],[-120.26604603137913,52.859695321324665],[-120.2661641036759,52.85981632965128],[-120.26629776123838,52.85993248745719],[-120.26641553390195,52.86005572936434],[-120.26651854853054,52.860177691877944],[-120.26663624665883,52.86030149647535],[-120.26675394547053,52.86042530094528],[-120.26687277305261,52.86054073280986],[-120.26700688748599,52.86065353004273],[-120.26715591084832,52.86076649831093],[-120.26730591252924,52.86087221082833],[-120.26745644222905,52.86097400943664],[-120.267620753023,52.86108435146522],[-120.26777075817806,52.86119005443269],[-120.26793672575089,52.86128810981076],[-120.2681197089971,52.8613706990438],[-120.26831873165072,52.861445068678876],[-120.26851820515147,52.86151609612633],[-120.26871888409767,52.86157817887505],[-120.26891783294174,52.86165311041742],[-120.26910014328648,52.861740719812325],[-120.26926566475818,52.86184212406356],[-120.26936854142257,52.861965200869356],[-120.2694398695485,52.86210079384661],[-120.26954169434467,52.862231688977865],[-120.26962891183071,52.86236017927273],[-120.26973186540357,52.862482701723884],[-120.26986554224557,52.86259884634089],[-120.26999966986521,52.86271164894711],[-120.27014968664186,52.86281734876946],[-120.27031446273826,52.86292433611764],[-120.2704810445348,52.86301792008025],[-120.27066238571432,52.86311279148168],[-120.27084658644985,52.86318643200586],[-120.2710625611274,52.8632458935578],[-120.27128041683552,52.863291388620816],[-120.27149879994188,52.86333296955591],[-120.27173194224927,52.86337583763008],[-120.27195100228731,52.863412396004286],[-120.27216946124756,52.86345342169247],[-120.27238604055373,52.86350841307922],[-120.27260209478644,52.86356730885671],[-120.27280263898446,52.863630501482874],[-120.27301884475315,52.863688279558346],[-120.27321999028266,52.863747012676335],[-120.27343672396887,52.86380087624942],[-120.27367167468756,52.863830337277285],[-120.27389359479716,52.863845670303874],[-120.27412734356976,52.86388406588162],[-120.27434475488397,52.86393290604491],[-120.27456246730134,52.863979511937664],[-120.27477965355388,52.86403003116147],[-120.27499811839985,52.864071051575856],[-120.27523367282753,52.86409604174025],[-120.27545379152569,52.864124775029275],[-120.27567338516243,52.86415741270954],[-120.2758569967841,52.864235522006666],[-120.27583896438331,52.86436955419473],[-120.27576053985763,52.8645085085142],[-120.27565514964695,52.86462590972006],[-120.27551956326758,52.86474576736157],[-120.27539948694658,52.86486132725216],[-120.27526397364267,52.86498063058195],[-120.2752017339575,52.86511025623724],[-120.27510869555722,52.86524681495018],[-120.27510662349613,52.86537318965762],[-120.27527247393154,52.86547235134995],[-120.27550923852611,52.865488405473386],[-120.27575021104951,52.865473184969446],[-120.27596534398907,52.86542803846489],[-120.27618167979577,52.865373947153294],[-120.27638332879137,52.86531802341898],[-120.27660026452436,52.8652594635935],[-120.27681667319321,52.8652048171075],[-120.27703225437554,52.86515631783587],[-120.27726161987948,52.86511635169894],[-120.2774879046421,52.865099286778396],[-120.27772586978858,52.86510640094891],[-120.27794960061125,52.8651083230639],[-120.27818936842367,52.86510203305171],[-120.27841565273897,52.86508496634471],[-120.27864178667363,52.86506901613994],[-120.27886859570918,52.865048043745496],[-120.27911016529293,52.865028348595715],[-120.27933689939195,52.86500792929856],[-120.2795668626371,52.8649634909037],[-120.2797139697881,52.86486892488232],[-120.27982122711843,52.864737553841564],[-120.27992795761249,52.86461009644948],[-120.27997587207904,52.864475839858166],[-120.2800097776898,52.86433471203113],[-120.28005829342797,52.86419597868626],[-120.2800623785006,52.86405452063406],[-120.28003619312594,52.86391608320774],[-120.28006942178227,52.86377998601427],[-120.28016154016657,52.86365012489361],[-120.28023889770627,52.86351898614998],[-120.28031625477011,52.86338784734457],[-120.28042275458583,52.86326206927433],[-120.280557647424,52.86314722763464],[-120.28072123343487,52.86304108844596],[-120.28089702527112,52.862955223436806],[-120.28111409171034,52.86289554718601],[-120.2813286066812,52.86285484962635],[-120.28155607873732,52.86282884130553],[-120.28195093337547,52.86277951478567],[-120.2823262996425,52.862764088936764],[-120.28256740442441,52.86274773748558],[-120.282792473833,52.862739597883426],[-120.28301799338561,52.86272810701468],[-120.28325834734737,52.86271733887154],[-120.28348326639919,52.862710314891885],[-120.28372369457193,52.86269899179185],[-120.28394981386722,52.862683031350265],[-120.28417593299324,52.86266707047358],[-120.28441568615936,52.862660767749986],[-120.28464075475598,52.86265262460782],[-120.28488050777217,52.86264632093594],[-120.28510550179304,52.86263873090977],[-120.28534465460093,52.86263689408252],[-120.28556957288465,52.862629866109764],[-120.28579509110837,52.862618369911225],[-120.28603559374727,52.86260647913887],[-120.28626051175668,52.862599449843614],[-120.28650101415907,52.86258755811862],[-120.28672593199194,52.8625805279326],[-120.28695084975065,52.862573497316056],[-120.28719060198031,52.86256718893127],[-120.28743095398087,52.862556412253674],[-120.2876559458736,52.86254882627998],[-120.2878820629004,52.86253285827136],[-120.28810892947061,52.862511305068395],[-120.288336321189,52.862485837627],[-120.28857847160272,52.86246165517642],[-120.28879185223342,52.862429325594974],[-120.28901916754792,52.86240441977524],[-120.2892471566024,52.86237449169319],[-120.28947582051408,52.86233953240878],[-120.2896915239085,52.862289883941045],[-120.28989501488255,52.862219970523974],[-120.2900855437591,52.862135376991425],[-120.29027554788466,52.86205468801976],[-120.29046555129118,52.861973998736865],[-120.29065540410494,52.86189442609811],[-120.29083117120875,52.861808546168675],[-120.29100776245512,52.861716518245295],[-120.29119836240342,52.86163135993586],[-120.29138828665145,52.861551232085624],[-120.29157753646902,52.86147612576307],[-120.29178169535797,52.86140117826888],[-120.29197169300262,52.86132048651769],[-120.29216154009629,52.86124091141307],[-120.29235138648144,52.861161335997934],[-120.29254198126503,52.86107617547959],[-120.29269024476673,52.86097265731775],[-120.29282509732344,52.860857801433646],[-120.29294526495518,52.86074110649248],[-120.29306655607377,52.86061602975601],[-120.29318732157321,52.86049486671119],[-120.29330808638639,52.86037370353305],[-120.29364446325464,52.860203447381224],[-120.29383437654683,52.8601233155058],[-120.29402361571918,52.860048205176504],[-120.29421420218821,52.85996304188636],[-120.29440411453733,52.85988290014227],[-120.2946083351132,52.85980739364924],[-120.29479682273245,52.85973786687022],[-120.29500096644342,52.85966292263707],[-120.29520443617702,52.859592999911015],[-120.2954078309719,52.85952363084345],[-120.29561070043259,52.85945817526101],[-120.29581341954072,52.85939383628943],[-120.29603037271045,52.859334686370175],[-120.29624552866186,52.85928893962176],[-120.2964610578335,52.85924040453411],[-120.29667673741864,52.859190743148815],[-120.29689316380689,52.85913550547478],[-120.2971088423583,52.859085843293194],[-120.29732459465309,52.85903562669904],[-120.29754012131635,52.85898708962452],[-120.29776943441001,52.8589470833125],[-120.29798398785546,52.85890580123679],[-120.2982131492332,52.858866919959645],[-120.29842822625199,52.858821723217325],[-120.2986445742706,52.85876703632087],[-120.29886009807404,52.858718496817254],[-120.2990757722258,52.858668831012615],[-120.29930575492918,52.85862379980419],[-120.29952082836677,52.85857860999098],[-120.29973650104155,52.85852894296935],[-120.29996633267504,52.85848502743356],[-120.30018207856523,52.85843480557424],[-120.30038418748568,52.858374926556984],[-120.30058689424239,52.858310579307286],[-120.30080331109882,52.85825533440142],[-120.30101830689493,52.8582106958546],[-120.30124686463478,52.85817626759413],[-120.30147504746454,52.85814463578597],[-120.30170352909784,52.85811076958965],[-120.30193148629279,52.8580808168202],[-120.30216019215815,52.85804526980784],[-120.30237383949742,52.85801068153136],[-120.30260261879323,52.85797457963768],[-120.30281693775692,52.85793496864105],[-120.30304624024241,52.85789495200573],[-120.30327546693499,52.85785549787705],[-120.30348926194216,52.857819790593915],[-120.30371781439595,52.85778536645481],[-120.30394584379025,52.857754846816285],[-120.30417320068388,52.857729348657266],[-120.30440122945276,52.85769882813397],[-120.30462865992394,52.85767277507272],[-120.30485661272301,52.85764281662071],[-120.30508329521354,52.857622347561716],[-120.30531132275895,52.857591825270326],[-120.30544526928416,52.857594957648665],[-120.30556453216938,52.85759625255336],[-120.30566836407117,52.85760129491755],[-120.30578762698089,52.85760258959584],[-120.30590688989787,52.85760388415315],[-120.30602555499797,52.85760964650172],[-120.30614481794188,52.85761094081757],[-120.30624924774888,52.85761151475539],[-120.30636731512799,52.85762174467249],[-120.3064871758921,52.857618570726665],[-120.30660584111149,52.85762433248921],[-120.30672570186513,52.85762115830015],[-120.30683072944491,52.857617263805324],[-120.30694939470706,52.85762302522099],[-120.3070688071452,52.85762320161968],[-120.30718747245605,52.85762896279499],[-120.30730554010852,52.85763919176928],[-120.30740937232065,52.857644232594865],[-120.30752923307041,52.857641057586235],[-120.30764789849314,52.857646818296544],[-120.30776716159022,52.85764811096573],[-120.30787166681156,52.85764812050372],[-120.30799033230016,52.85765388086814],[-120.3081095954274,52.85765517318981],[-120.30822885856182,52.85765646539049],[-120.30833209334189,52.85766597332427],[-120.30845135651329,52.85766726529911],[-120.30857002213347,52.85767302507816],[-120.30868749269321,52.85768772058871],[-120.30880556086812,52.85769794805552],[-120.30890819835365,52.85771192340915],[-120.30902566913706,52.857726618581445],[-120.30914314000142,52.85774131363608],[-120.30926016283124,52.8577593595194],[-120.30936220313666,52.85777780240449],[-120.30947982362417,52.85779138013989],[-120.30959669737064,52.857810542669945],[-120.30969993282862,52.85782004940122],[-120.30981740418268,52.85783474378087],[-120.30993487561769,52.8578494380431],[-120.31005234713365,52.85786413218772],[-120.31016981873056,52.857878826214765],[-120.31027126233182,52.85790173624166],[-120.31037098799636,52.857937495957785],[-120.31047026700018,52.857976597603106],[-120.31055478690094,52.85801442542641],[-120.31065331837574,52.858059120768836],[-120.31075200058572,52.85810269010754],[-120.31083532633086,52.85814945359589],[-120.31091917431614,52.858192312048175],[-120.31101890239809,52.858228062271984],[-120.31110170544461,52.8582787394796],[-120.31118436055905,52.85833052467562],[-120.31126768722343,52.85837728785077],[-120.3113510140706,52.85842405096538],[-120.31144917463108,52.85847153362157],[-120.31153287455157,52.85851550861138],[-120.3116162772133,52.85856170857373],[-120.3117143631335,52.85860975396443],[-120.31179821410169,52.85865260284111],[-120.31188213929438,52.85869489763223],[-120.31198067373253,52.858739591842394],[-120.31206392801565,52.858786908465284],[-120.31214733058908,52.858833116978595],[-120.31224601611648,52.8588766850415],[-120.31234462660078,52.8589208159809],[-120.3124290007424,52.85895975941879],[-120.31251233000113,52.85900652169271],[-120.31259506228646,52.859057751847935],[-120.31267779477056,52.85910898194318],[-120.31276112459368,52.859155744036315],[-120.31285921316999,52.859203788453435],[-120.31295954236423,52.85923506906482],[-120.31306039358012,52.85926244460741],[-120.31317682514322,52.859284954516546],[-120.31329489881671,52.859295177462364],[-120.31339933284376,52.8592957450455],[-120.31350749852311,52.85926838787513],[-120.3135604329011,52.85920744061869],[-120.31355477943836,52.85913802214176],[-120.31351915872321,52.85906940789542],[-120.31343739613669,52.859010913510794],[-120.3133695707005,52.858959849281185],[-120.31328616655487,52.85891364163898],[-120.31320291066827,52.858866325885735],[-120.31313650444305,52.85880464567851],[-120.31305325012947,52.858757320880066],[-120.31297044264045,52.858706653998745],[-120.31288718870248,52.858659329079856],[-120.31280393375502,52.85861201303636],[-120.31272068018657,52.85856468799667],[-120.31263735156273,52.85851792585746],[-120.3125392636196,52.858469890170205],[-120.31245586133186,52.858423681924386],[-120.31237260732301,52.85837636556832],[-120.3122898025767,52.85832568925926],[-120.31222197960449,52.85827462434521],[-120.31213917523473,52.858223947926824],[-120.31205704231478,52.85816824948217],[-120.31197371519325,52.858121486860554],[-120.311889865093,52.8580786380949],[-120.31180765872271,52.85802349349545],[-120.31175608918666,52.857962532030385],[-120.31170511703128,52.857897102599765],[-120.31166890309255,52.85783295567946],[-120.31160257594763,52.857770711604445],[-120.31155160425705,52.8577052820994],[-120.31149943822061,52.85764878844979],[-120.31144846683398,52.85758335889493],[-120.31141210423307,52.85752032886781],[-120.31139236789065,52.85744460568047],[-120.31138604567668,52.85738021792279],[-120.3113808427452,52.85730745724165],[-120.31137579034058,52.85723357063589],[-120.31136991612652,52.85716583191309],[-120.31136434055995,52.85709585921649],[-120.3113733734703,52.85702828607478],[-120.31136809654372,52.856956079401634],[-120.3113630442028,52.85688219277891],[-120.31135672211651,52.856817804996695],[-120.31135159455768,52.85674448132768],[-120.31134579450887,52.85667618855788],[-120.31132531210632,52.85660605024669],[-120.31131973668613,52.856536077523316],[-120.3112992531992,52.85646594813732],[-120.31129345446661,52.85639764641699],[-120.31127364360006,52.856322486116746],[-120.31126724647744,52.85625866126771],[-120.31126219439388,52.85618477460808],[-120.31125646981852,52.856115918848836],[-120.31126617519939,52.856043314769074],[-120.31126089857615,52.855971108046134],[-120.31128454067586,52.855905925499286],[-120.31129394733748,52.85583555537968],[-120.31131766336975,52.85576981879537],[-120.31134190251161,52.85570016828387],[-120.31136606751691,52.855631071789546],[-120.31140506376761,52.85556270383203],[-120.31144406108773,52.85549432692277],[-120.31148231056099,52.85543154386635],[-120.31152115833308,52.855364283912444],[-120.31156000478825,52.85529703287867],[-120.31159915091875,52.855227538919564],[-120.3116226427884,52.855163473260866],[-120.31164680584038,52.855094385621264],[-120.31168580234471,52.85502600861148],[-120.31170996521651,52.85495692095279],[-120.31173360606768,52.854891738273714],[-120.31177245295179,52.8548244782137],[-120.31181137376345,52.85475666411222],[-120.31186430496551,52.85469571744587],[-120.31191798366712,52.85462917687891],[-120.31195630690902,52.85456583067199],[-120.31200923766716,52.854504883932925],[-120.31204823305143,52.85443650677733],[-120.31208707783044,52.854369255529804],[-120.31212592368122,52.85430199533072],[-120.31216424632031,52.85423864904285],[-120.31221777350261,52.854173234243966],[-120.31227085387435,52.85411116144755],[-120.31230917612667,52.85404781510478],[-120.31236270284721,52.853982400231935],[-120.31241555825977,52.85392200731377],[-120.31246863803098,52.85385993441815],[-120.3125216424143,52.8537984244586],[-120.31258873219527,52.853743218878925],[-120.31265701595154,52.85367907734454],[-120.31272335903623,52.85362945663055],[-120.31280520491156,52.85357553332562],[-120.312886976546,52.85352216398866],[-120.31296822616383,52.853472699589595],[-120.31304984813971,52.85342044712579],[-120.31313169320119,52.85336652358627],[-120.31319803524744,52.85331690259447],[-120.31326572040022,52.8532572286502],[-120.31331872288506,52.853195718307624],[-120.31337165119,52.853134761966075],[-120.3134106419434,52.85306639323494],[-120.31344888753843,52.853003600505865],[-120.31347304640859,52.85293451239622],[-120.31351263498374,52.8528616667229],[-120.31355087905108,52.852798882888415],[-120.31360395577228,52.85273680943585],[-120.31367096726622,52.85268216616466],[-120.31375273610458,52.85262879619502],[-120.31379098080357,52.85256600333729],[-120.31382989634496,52.85249818847015],[-120.31386881176259,52.85243037358725],[-120.3139225585045,52.85236327798119],[-120.31397481278483,52.852307352267204],[-120.31404249524877,52.8522476778373],[-120.31411017752333,52.85218800336619],[-120.31417726271509,52.8521327968232],[-120.31424494461879,52.85207312227005],[-120.31431128335814,52.852023500608944],[-120.31437881568338,52.85196494296729],[-120.31444590017661,52.85190973626302],[-120.3145135813505,52.85185006154669],[-120.31458066548859,52.85179485476154],[-120.314647749453,52.851739647936185],[-120.31471602690533,52.8516755051238],[-120.31476902533309,52.85161399406529],[-120.31482202360796,52.85155248298051],[-120.31487494653176,52.851491534834274],[-120.31492779530049,52.851431140690686],[-120.31499562424004,52.85137034868479],[-120.31504914467398,52.85130492354123],[-120.31510214216087,52.851243412318],[-120.31516997055338,52.85118262020422],[-120.31522281852163,52.85112222591621],[-120.31527574033888,52.85106127757276],[-120.3153440157609,52.850997134367866],[-120.31541109748267,52.85094192707865],[-120.31547758229097,52.850891187728855],[-120.31555942062344,52.85083725347586],[-120.31564043766039,52.850789467105365],[-120.3157209317958,52.85074559462898],[-120.31581610868601,52.85070354921008],[-120.31592559357864,52.850666136706046],[-120.31602024739871,52.850628005072295],[-120.31611490104956,52.85058987336136],[-120.31620992684604,52.85054895355116],[-120.31630525197743,52.8505057907347],[-120.3164005757226,52.850462636775696],[-120.31648106965262,52.85041875483355],[-120.31657624387101,52.85037671772611],[-120.31667156824676,52.85033355460774],[-120.31675191131174,52.85029079840918],[-120.31684723531771,52.850247635145976],[-120.3169424839621,52.850205034770696],[-120.31703832898242,52.850157966327735],[-120.31713357723572,52.85011536579514],[-120.31721399459146,52.850072046308],[-120.31732340147367,52.85003519545318],[-120.31741797867504,52.84999761670915],[-120.31751195800294,52.84996451481646],[-120.31762069388375,52.84993268570592],[-120.31772950476004,52.84990029352689],[-120.31782340966825,52.84986774541428],[-120.31793221903199,52.84983536198212],[-120.3180408803094,52.84980408651154],[-120.31813493387968,52.84977042114903],[-120.31824299721602,52.8497436224223],[-120.31833697653691,52.84971051092843],[-120.31844571115458,52.849678681049234],[-120.31855451956356,52.84964629703689],[-120.31864842328307,52.84961374825965],[-120.31875723256528,52.84958135512221],[-120.3188659665401,52.8495495248515],[-120.31895919831207,52.84952200679247],[-120.3190686034684,52.849485145363744],[-120.31917748604864,52.849452197802215],[-120.31927071740692,52.84942467949437],[-120.31937952573425,52.84939228577674],[-120.3194882587627,52.84936045492628],[-120.3195821611404,52.84932790539689],[-120.31969037151552,52.84929998833018],[-120.31979962640443,52.84926424321685],[-120.31989367739627,52.849230576434934],[-120.32000173825998,52.84920377608149],[-120.32009631125821,52.84916619516162],[-120.3202051922305,52.84913324664109],[-120.3202990184385,52.84910125950303],[-120.3204078251599,52.849068864826464],[-120.32051730182917,52.849031448004894],[-120.32061112757921,52.84899946061554],[-120.3207199338039,52.84896706564785],[-120.3208139834141,52.848933398122774],[-120.3209232352302,52.848897660892305],[-120.32101721060664,52.8488645472367],[-120.32112609009758,52.84883159785642],[-120.32121991495153,52.848799609976794],[-120.32132872020406,52.84876721444125],[-120.32142261987137,52.84873466342852],[-120.32153075362362,52.84870729869034],[-120.32163940819665,52.84867602880526],[-120.32174702071185,52.84865256891392],[-120.32185500503782,52.8486263208803],[-120.32196328724513,52.848597838737504],[-120.3220707491887,52.8485755044893],[-120.32217932912552,52.84854478813664],[-120.3222869410127,52.848521327748905],[-120.32239507366961,52.84849396221152],[-120.32248897192167,52.84846141034084],[-120.32259702920615,52.84843460758727],[-120.3227058324818,52.84840221076886],[-120.32281470948827,52.848369259813985],[-120.3229085320589,52.848337270576444],[-120.32301733484971,52.84830487346754],[-120.32311197709015,52.848266736063664],[-120.32320699099863,52.84822581053415],[-120.32330170797529,52.84818711000418],[-120.32339701946036,52.84814395030542],[-120.3234498520154,52.84808355220086],[-120.32351758959979,52.84802330918189],[-120.32359807041315,52.84797943123224],[-120.3236932333665,52.84793737935874],[-120.32380270424989,52.84789995944891],[-120.3239119509151,52.84786421941579],[-120.32400465501547,52.84784060238261],[-120.32412694521399,52.84781897532703],[-120.32423254284708,52.847810597222825],[-120.3243535662438,52.847798468968335],[-120.32447295124751,52.84779862768244],[-120.32457854876228,52.84779024926705],[-120.32469838054183,52.84778705672622],[-120.3248164251487,52.84779726817018],[-120.32493506551822,52.84780301145924],[-120.32505251453199,52.84781769070205],[-120.32515572924783,52.84782718391513],[-120.32527690134675,52.84781393770029],[-120.3253830944007,52.847801090523944],[-120.32550538259575,52.847779470969044],[-120.32561217112975,52.84776215554616],[-120.32572029972887,52.84773478693497],[-120.32581501333499,52.8476960843667],[-120.32590942777702,52.847659624678066],[-120.32601822656012,52.84762722477601],[-120.32611346019374,52.84758461689552],[-120.32620742745702,52.84755150799689],[-120.32630273577298,52.847508336987424],[-120.32639714938261,52.847471876902375],[-120.32649305286634,52.84742423769162],[-120.32657420005384,52.84737532666742],[-120.32665527201983,52.847326978559465],[-120.32672292884143,52.84726729663751],[-120.32678998997021,52.84721208272158],[-120.32684296544127,52.84715056604353],[-120.32689661128201,52.847084018316906],[-120.3269207450192,52.847014927184006],[-120.32694435822546,52.846949741117704],[-120.32696923735047,52.84687505597153],[-120.32699270153606,52.84681098690217],[-120.32700215411775,52.8467400610828],[-120.3269964804331,52.846670642705305],[-120.32694445630746,52.84661303850578],[-120.32689347441854,52.846547615194034],[-120.32682706757566,52.846485942242694],[-120.3267915111098,52.846416768496105],[-120.3267245091196,52.84635956353137],[-120.32665653901823,52.84630962357434],[-120.32655786903862,52.84626605833082],[-120.3264592731056,52.84622193896518],[-120.32637483631424,52.846183568261274],[-120.3262756452187,52.84614391678743],[-120.32617652934718,52.84610370225491],[-120.32604849800349,52.846056475991084],[-120.32594819139919,52.84602519735755],[-120.32584736320933,52.84599783264599],[-120.32573140792574,52.845971984067276],[-120.32563058000068,52.84594461916876],[-120.32551551842158,52.84591206830836],[-120.32541402009824,52.84588973424113],[-120.32529702299912,52.84587170430909],[-120.32519500428673,52.8458532751222],[-120.32507756063245,52.84583859600351],[-120.32496011705896,52.84582391676736],[-120.32484088650199,52.84582264153774],[-120.32473529390937,52.84583102019937],[-120.32461546762724,52.84583421278181],[-120.32449504560245,52.84584187328166],[-120.32437514540042,52.84584561965587],[-120.32427014840798,52.84584952986036],[-120.32415091780004,52.84584825393054],[-120.32403228297257,52.845842509842505],[-120.3239877949205,52.84584035577857],[-120.32391364817701,52.8458367656346],[-120.32381043855351,52.84582727131828],[-120.32369299544727,52.84581259081525],[-120.32357495660129,52.84580237822958],[-120.32345751364463,52.845787697490934],[-120.32335653865316,52.84576144764612],[-120.32327329726638,52.84571413863358],[-120.32320637617573,52.84565636866453],[-120.3231859534501,52.845585677895365],[-120.32318073183077,52.84551291719343],[-120.32327544280776,52.845474216617916],[-120.32338416294233,52.845442382082716],[-120.32349161619311,52.84542004649001],[-120.3235997402161,52.84539267978991],[-120.32369355684311,52.84536068092894],[-120.32380302111395,52.84532326095756],[-120.32389825181662,52.84528065481036],[-120.32399229079103,52.84524698466214],[-120.32410153050337,52.84521124439251],[-120.32419489954475,52.84518259615707],[-120.32430436291887,52.84514517571424],[-120.32438468856162,52.84510241415559],[-120.32448058896586,52.8450547765159],[-120.32457581839243,52.84501216981211],[-120.32467045193457,52.844974031072994],[-120.32476560593514,52.84493198718664],[-120.32484608082417,52.84488809935969],[-120.32494130951366,52.84484549235515],[-120.3250365380129,52.84480288527227],[-120.32513117067887,52.8447647461569],[-120.32522624990013,52.84472325592946],[-120.3253344449012,52.844695333582905],[-120.32542833254914,52.84466277928451],[-120.32553771965323,52.844625911718055],[-120.32563227643442,52.84458833516878],[-120.3257410675951,52.84455593546018],[-120.32583629464922,52.8445133277212],[-120.32591669260682,52.844470002123465],[-120.32599775979669,52.844421654379985],[-120.32607897687848,52.844372180630046],[-120.32617479871266,52.844325104559765],[-120.32625586533463,52.844276756633626],[-120.32633693296387,52.844228399714076],[-120.32643290306513,52.844180206415544],[-120.32649914032095,52.84413114060003],[-120.32656679229257,52.84407145864665],[-120.32663384859967,52.84401624470768],[-120.32670150020063,52.843956562672375],[-120.32676915161228,52.84389688059594],[-120.32680736932346,52.84383408315433],[-120.32686108488484,52.84376698126449],[-120.32691398094966,52.84370602739493],[-120.32695279371336,52.84363876184025],[-120.32700576451238,52.84357724494899],[-120.32704457582335,52.84350998829456],[-120.3270976213529,52.8434479083814],[-120.32713635857009,52.84338120573058],[-120.3271893287846,52.843319688746476],[-120.32725705233342,52.84325945232534],[-120.32730927798131,52.84320352035872],[-120.32737752273378,52.84313936984186],[-120.32745880960093,52.843089341057826],[-120.32752638475229,52.843030212552115],[-120.32759343818078,52.84297499802885],[-120.3276462583934,52.842914597838714],[-120.3276993011164,52.84285252656646],[-120.32775219604048,52.8427915633479],[-120.32780531346852,52.84272892904677],[-120.32785813307649,52.84266852875195],[-120.32791162167665,52.84260310632471],[-120.32797926924914,52.84254342349986],[-120.32804632132641,52.84248820870101],[-120.3281139685283,52.84242852579429],[-120.32816678732738,52.84236812534907],[-120.32822042508941,52.84230157681561],[-120.32824395869554,52.842236953269435],[-120.32828291684493,52.84216857019514],[-120.32829169716408,52.842102666172565],[-120.32831664491746,52.84202742647012],[-120.32832594542091,52.841957617345926],[-120.32834970249743,52.84189131377004],[-120.32835915292364,52.84182037868331],[-120.32836815568139,52.84175280358195],[-120.32834824772213,52.84167819950457],[-120.32832722311672,52.84161197752158],[-120.32832214203141,52.841538099846595],[-120.3283010437227,52.841472431893884],[-120.32829529362176,52.84140357632347],[-120.32828961735217,52.841334166708954],[-120.3282997368298,52.84125820948919],[-120.32832327093075,52.841193576947965],[-120.32834687877211,52.84112839035848],[-120.32837160204373,52.84105483059298],[-120.32840981485033,52.84099203251645],[-120.32846344931276,52.840925492749776],[-120.32850166186834,52.840862694638076],[-120.32853994812004,52.840799342470305],[-120.3285647458667,52.84072521967137],[-120.32858835307995,52.84066003301379],[-120.3286124804436,52.84059094125098],[-120.32863675772374,52.840520723525096],[-120.32867556368306,52.84045346620092],[-120.32871392430536,52.84038955098219],[-120.32875273002375,52.84032229362697],[-120.32879168560937,52.840253910300575],[-120.32883049108179,52.84018665291375],[-120.32886914882553,52.840120503594655],[-120.32889290403493,52.84005419983123],[-120.32887247456905,52.83998350979884],[-120.3288209024565,52.83992255512616],[-120.32875353535171,52.83986814809935],[-120.32867074707181,52.83981748273901],[-120.32860278511467,52.839767543700155],[-120.32852118764428,52.83970794207549],[-120.32846902114458,52.83965145531517],[-120.32841864046303,52.83958156429801],[-120.32841303923368,52.83951159163109],[-120.32845124940665,52.839448802415426],[-120.32848990706985,52.839382653190015],[-120.3285430191709,52.83932001841929],[-120.32858167538468,52.83925387809434],[-120.32862063026896,52.8391854947781],[-120.32865958383798,52.83911712038203],[-120.3286979432827,52.839053205114254],[-120.32872199575715,52.83898466730007],[-120.32877570220194,52.838917564327545],[-120.32881376251548,52.83885589199041],[-120.32885197270187,52.83879309368207],[-120.32890508353749,52.83873045872402],[-120.32895916075236,52.838660567573335],[-120.32901197369033,52.83860016660312],[-120.32907976216262,52.8385393659716],[-120.32911797167402,52.83847656756389],[-120.3291567750156,52.838409309993175],[-120.32918045502922,52.838343560141816],[-120.32918997708425,52.83827207078532],[-120.32921358198493,52.838206883900256],[-120.3292383770546,52.838132760836615],[-120.3292478239806,52.83806183444471],[-120.32927142867658,52.83799664753928],[-120.32929570339614,52.83792642956103],[-120.3293339108506,52.83786363999478],[-120.32937286325995,52.83779525636846],[-120.3294262696364,52.83773038709132],[-120.32947855946396,52.83767389992031],[-120.32954619702949,52.83761421600569],[-120.32962799211035,52.83756027149888],[-120.32970837311592,52.837516943114345],[-120.32980424933655,52.837469309834844],[-120.32988530000999,52.83742095025682],[-120.3299804320272,52.83737890194444],[-120.33007571380236,52.83733572759455],[-120.33018381311526,52.837308354693725],[-120.33029124232135,52.837286012766015],[-120.33039874638325,52.83726310775994],[-120.330506771528,52.83723628860424],[-120.33061368038535,52.837217851495254],[-120.33072177905444,52.837190478097234],[-120.33082920768204,52.837168135675775],[-120.33093790101556,52.837136293981644],[-120.33104652041715,52.837105006230296],[-120.33114053573111,52.837071330184834],[-120.33124915362896,52.83704005118105],[-120.33134368975846,52.83700246091691],[-120.33145253100408,52.83696950171825],[-120.33154706560839,52.836931920224934],[-120.33164160123587,52.83689432971844],[-120.3317509618653,52.83685746512039],[-120.3318454971482,52.83681987444799],[-120.33194010602202,52.83678172965377],[-120.33203463978083,52.8367441477636],[-120.33214400087536,52.836707273859844],[-120.33219636079467,52.83665022246097],[-120.33220632350968,52.83657538170413],[-120.33219997297894,52.836510994215196],[-120.33214906885644,52.83644501871852],[-120.33212856196968,52.83637488313476],[-120.33210812890484,52.836304193499245],[-120.3321177193538,52.8362321497675],[-120.33212656747187,52.836165682227666],[-120.33215076150799,52.836096026558735],[-120.33215953460343,52.836030121991975],[-120.33218439704343,52.8359554441584],[-120.33222274836582,52.83589152761055],[-120.33226154446254,52.835824268903174],[-120.33230049031816,52.835755884217],[-120.33233928616899,52.83568862547815],[-120.33236281107915,52.83562399189825],[-120.33240168165075,52.835556170151406],[-120.33244003109928,52.835492262452526],[-120.33247882767996,52.83542499472007],[-120.3325176978859,52.83535717292629],[-120.33257057544458,52.83529621618298],[-120.33260937164123,52.83522894839904],[-120.33266247252497,52.835166311599735],[-120.33270111859031,52.83510016974392],[-120.33275414543519,52.835038086943854],[-120.3327865887412,52.834906440501165],[-120.33281145061846,52.834831753545075],[-120.33284972505997,52.834768399728944],[-120.33290267634554,52.83470687983092],[-120.33295622216092,52.83464089179243],[-120.33300902446568,52.83458048887011],[-120.33307613126021,52.83452471687369],[-120.33312893325149,52.83446431389297],[-120.33319715527742,52.834400159637795],[-120.33326418780634,52.83434494157399],[-120.33333114642662,52.834290277516416],[-120.33341166616928,52.83424582947775],[-120.33350753090592,52.83419819307595],[-120.33360339661773,52.83415054765818],[-120.33368436176218,52.834102748339255],[-120.33376540045435,52.8340543949162],[-120.33383243170476,52.833999176515746],[-120.33390005735558,52.83393948995403],[-120.33396708825124,52.83388427147271],[-120.3340198881888,52.833823868066844],[-120.3340441527206,52.8337536489203],[-120.33405366560291,52.833682158960336],[-120.33404842690908,52.83360939819028],[-120.33404274350727,52.83353997957258],[-120.3340369852103,52.83347112393512],[-120.33403182148443,52.83339780017089],[-120.33402539375851,52.83333397563363],[-120.33402030498266,52.83326008887892],[-120.33401454675966,52.83319123322804],[-120.33400878855524,52.83312237757381],[-120.33400355000666,52.83304961677568],[-120.33399779183908,52.83298076111467],[-120.3339772835786,52.83291062569855],[-120.33395677419644,52.83284049921198],[-120.33395064513195,52.83277443164933],[-120.33393065668778,52.832700391074596],[-120.33393957497404,52.83263336920072],[-120.33397903486181,52.83256107867709],[-120.3340167109917,52.83250219251429],[-120.33407032604019,52.83243564982725],[-120.33412319894984,52.83237468333499],[-120.33416206376376,52.832306860864826],[-120.3341866981795,52.832233853509294],[-120.3341815343461,52.83216052969381],[-120.3341283291628,52.832111864398506],[-120.33401374430268,52.83207597047894],[-120.33391338981038,52.83204526135174],[-120.33381370374353,52.83200952996432],[-120.3337145386833,52.83196988441336],[-120.33363131390622,52.83192257338847],[-120.33353207429997,52.831883490665035],[-120.33343231520068,52.831848312997685],[-120.33333203658228,52.83181704038558],[-120.3332312372291,52.83178968176365],[-120.33311605936325,52.83175825508478],[-120.33304810503928,52.8317083183611],[-120.33298074670192,52.83165390453729],[-120.33289908370602,52.83159486862873],[-120.33283231920068,52.831535995529066],[-120.33274954224298,52.83148533277409],[-120.33266453428644,52.8314514343529],[-120.33256485184184,52.83141569295565],[-120.33245041883863,52.83137868046442],[-120.33234947241114,52.831352438108354],[-120.33224912081803,52.831321727544804],[-120.33213230945299,52.831302587222545],[-120.33201549819272,52.83128344678395],[-120.33191403126189,52.831261118124345],[-120.33179722021303,52.83124197746808],[-120.3316956797439,52.83122020266595],[-120.331578868905,52.83120106179197],[-120.33146265296149,52.83117745268494],[-120.33136126151682,52.83115456056363],[-120.33124437725081,52.831135973402525],[-120.3311429860218,52.83111308109212],[-120.33102558088888,52.83109840778186],[-120.33090817583671,52.83108373435402],[-120.33079017600583,52.83107352892221],[-120.33068759542898,52.83105957244486],[-120.33057123164342,52.83103707948177],[-120.33045501670398,52.83101346937519],[-120.33035407236748,52.83098722529776],[-120.33025327688372,52.830959864105346],[-120.3301381772215,52.83092788044348],[-120.33003782821824,52.83089716798202],[-120.32993874421408,52.83085695623272],[-120.32985426092185,52.8308191416993],[-120.3297556223047,52.830775587647466],[-120.32967195801716,52.83073162486258],[-120.32957384099213,52.83068415659215],[-120.3294905483446,52.830637405575644],[-120.32940725587953,52.83059065449865],[-120.32932403737767,52.830543349315874],[-120.32922540112918,52.83049978587479],[-120.32914158798266,52.830456948667326],[-120.32905837122608,52.830409634356066],[-120.32895966058265,52.83036663366947],[-120.3288758479644,52.83032379626876],[-120.3287773614457,52.830279115418634],[-120.32869347539399,52.8302368319305],[-120.3285948393075,52.83019327688739],[-120.32851117735741,52.83014931325914],[-120.32842840702943,52.83009865634975],[-120.32834519176227,52.830051341522186],[-120.32826242182134,52.83000068449263],[-120.32817980204645,52.829948901440964],[-120.32811230272266,52.82989561072574],[-120.3280459200307,52.82983393780834],[-120.32799391501375,52.82977633345499],[-120.32794295162995,52.82971090989622],[-120.32789198840243,52.82964548631256],[-120.32783983503599,52.82958899890979],[-120.32778887211212,52.8295235752763],[-120.3277379093445,52.82945815161791],[-120.32770221679971,52.8293900944214],[-120.32766600419698,52.829325942332886],[-120.3276002182044,52.82925980103819],[-120.32754813949691,52.82920275944714],[-120.3274807921272,52.82914834238166],[-120.32739914153453,52.82908930255415],[-120.32731473779619,52.829050932106306],[-120.32721618085363,52.82900681289141],[-120.32713237384647,52.82896396527286],[-120.32703433751797,52.82891594078244],[-120.32695053087185,52.82887309303168],[-120.32686724463285,52.828826340100434],[-120.32676920891885,52.82877831538437],[-120.32668540280918,52.82873546744059],[-120.32658677224222,52.828691910669086],[-120.3265029664854,52.82864906259273],[-120.32640322074135,52.82861387888183],[-120.32628478234456,52.82860701998081],[-120.32616619515855,52.82860127798442],[-120.32604805449554,52.828592184795895],[-120.3259436954377,52.8285916284425],[-120.32582570368496,52.82858141800629],[-120.32570830734534,52.82856673935638],[-120.32559076224432,52.82855317761252],[-120.32548878480547,52.82853474847719],[-120.32542211032903,52.82847530806989],[-120.32533979345945,52.82842129785885],[-120.32527304553827,52.828362411406275],[-120.32522089720631,52.828305922794016],[-120.32515526542808,52.828238663063125],[-120.3251032662569,52.82818105737084],[-120.32505171379046,52.82812010058369],[-120.3249853382832,52.8280584258662],[-120.32493385996665,52.827996914979025],[-120.32488290339886,52.82793149001775],[-120.32490658418317,52.82786574058773],[-120.32494538451401,52.827798483952286],[-120.32499826471364,52.82773752138774],[-120.3250652973854,52.827682307768434],[-120.32514692905316,52.82762949199958],[-120.32516346446711,52.82761735964383],[-120.32522811516489,52.82758001830749],[-120.32532330485228,52.827537410522574],[-120.32540367135046,52.827494084806446],[-120.3254988606709,52.82745147687685],[-120.32559345444878,52.82741333696654],[-120.32570264717212,52.8273775948012],[-120.32579657145293,52.82734447686819],[-120.3259059876697,52.82730705450689],[-120.3259997616198,52.82727506237105],[-120.32609442956652,52.82723635907223],[-120.32619013790335,52.827189845454996],[-120.32627191724713,52.8271359029259],[-120.32633894732615,52.827080688558276],[-120.32640597723174,52.827025474150396],[-120.32645885319673,52.82696451983414],[-120.32652647801258,52.82690483724985],[-120.32659350739937,52.826849622728716],[-120.32666113184489,52.82678994006246],[-120.3267280870692,52.82673527950545],[-120.32679511592887,52.82668006486327],[-120.32687726494042,52.82662333379671],[-120.32694369823184,52.8265725871723],[-120.3270260694401,52.82651418492569],[-120.32709309756703,52.82645897010554],[-120.32714530287102,52.826403037611676],[-120.32719817819927,52.82634207400204],[-120.32725187113061,52.82627497118395],[-120.3272906663193,52.82620771370495],[-120.32734368998581,52.82614563299461],[-120.32738248491228,52.826078375479774],[-120.32742128090672,52.826011109013024],[-120.32747497307089,52.82594400607858],[-120.32751302369448,52.8258823336514],[-120.32756664175707,52.825815784715516],[-120.32761884565376,52.82575985198803],[-120.3276858718291,52.825704636802826],[-120.32776764524633,52.82565070211688],[-120.32784934466558,52.82559732141833],[-120.32793052377896,52.82554784579345],[-120.3279972516811,52.82549486448047],[-120.32809325157059,52.82544611520257],[-120.32815953281985,52.82539648488102],[-120.32824130623817,52.82534254091833],[-120.32832359951222,52.825284691762036],[-120.32838988024295,52.825235061305385],[-120.3284715031158,52.82518224314255],[-120.32855268071846,52.82513276707445],[-120.3286337831627,52.825083853931666],[-120.3287006582149,52.82502975517331],[-120.32878242905669,52.824975819757235],[-120.32886353093939,52.824926906450926],[-120.32893048042041,52.82487224457278],[-120.32901277185356,52.82481439491607],[-120.3290790510525,52.82476476405539],[-120.32916149081237,52.82470579725964],[-120.32922784344152,52.82465561226421],[-120.32932369249684,52.8246079700488],[-120.32940464433182,52.824560173388406],[-120.32948626465817,52.82450735449731],[-120.32956743980088,52.82445787770616],[-120.32964794491356,52.82441343196824],[-120.32972956465822,52.82436061290308],[-120.3298112591542,52.824307230795284],[-120.32989243353956,52.82425775377318],[-120.329959305702,52.82420365426927],[-120.33004159445157,52.82414580386668],[-120.33010802012436,52.82409505537142],[-120.33017563529091,52.82403537057584],[-120.33022842841032,52.82397496849363],[-120.33028211359967,52.823907864188065],[-120.33033557497302,52.82384243987269],[-120.33035924508886,52.82377668917101],[-120.33036801841837,52.82371078421845],[-120.33037768391952,52.82363817706338],[-120.33037185792645,52.82356988379446],[-120.33035188000115,52.82349584217412],[-120.33033093618846,52.8234290567952],[-120.33030991749624,52.82336283439449],[-120.33027415100206,52.82329534069861],[-120.33023912932042,52.82322225288621],[-120.33018698069627,52.82316576629327],[-120.33010489168983,52.823110079220676],[-120.33002168699988,52.82306277430557],[-120.32992143152157,52.82303149860503],[-120.32980568487682,52.82300453663544],[-120.32970475988097,52.82297829186523],[-120.3295879724911,52.82295914890989],[-120.32948719645704,52.822931786919156],[-120.32937092922965,52.82290873860142],[-120.32926955854924,52.822885844552836],[-120.3291532177949,52.822863350066896],[-120.32903702589525,52.82283973843337],[-120.32892023918397,52.82282059481214],[-120.32880285762522,52.82280591920176],[-120.3287020086809,52.82277911058213],[-120.32861754247324,52.82274129496328],[-120.32853493512947,52.82268952085683],[-120.32846759677871,52.822635104129965],[-120.3283853622879,52.82258053286777],[-120.32831802310977,52.822526124987654],[-120.32825180033338,52.822463334863805],[-120.32818431394756,52.82241003499804],[-120.3281176452847,52.822350595887926],[-120.32805075307857,52.82229283675251],[-120.32798341597092,52.822238419734155],[-120.32790192666089,52.82217826296348],[-120.3278344399726,52.82212497182306],[-120.32775124090942,52.82207765633278],[-120.32766685071975,52.822039285965595],[-120.32755289340619,52.82199891738695],[-120.32745264223574,52.82196763955717],[-120.3273529113226,52.821932456502246],[-120.32725377567571,52.8218928052399],[-120.3271687911886,52.8218589026322],[-120.3270703259886,52.821814220108074],[-120.3269710420964,52.82177568563429],[-120.32687198096565,52.82173547999865],[-120.3267722510736,52.821700296445215],[-120.32668801248984,52.821660799399],[-120.32658872929966,52.821622264598076],[-120.32647365756316,52.82159027715321],[-120.32635992636851,52.82154822739245],[-120.32626012234078,52.821513606382624],[-120.32617692621449,52.82146628975834],[-120.32610899639442,52.82141634869012],[-120.32601112854934,52.82136719714737],[-120.3259277829858,52.821321006307514],[-120.3258445876033,52.82127368944172],[-120.32574590132539,52.821230685801936],[-120.32566270513006,52.821183377740766],[-120.32558010557604,52.82113159256737],[-120.32549735621335,52.821080933299164],[-120.32541356649351,52.82103808423619],[-120.32531383943305,52.821002899428265],[-120.32521463283123,52.82096380940299],[-120.32513143893549,52.82091649202101],[-120.32504764871514,52.82087365162853],[-120.32494911299709,52.820829530279504],[-120.32484946181935,52.82079378209013],[-120.32476730932468,52.820738654183394],[-120.32469938350259,52.820688703340124],[-120.32460181543925,52.820637325479616],[-120.32451862285919,52.82059000765348],[-120.3244506963739,52.820540065597726],[-120.32436854607334,52.82048492846678],[-120.32430129034056,52.82042995522774],[-120.32424974838078,52.82036899778544],[-120.32419880196765,52.82030357220714],[-120.32414726030689,52.82024261471483],[-120.32406451436809,52.82019195440783],[-120.32402824001376,52.820128363801075],[-120.32400849857929,52.8200526409286],[-120.32397222442678,52.81998905029878],[-120.32392179929231,52.81991971945526],[-120.32388612080779,52.81985166068251],[-120.32386504004273,52.81978599102197],[-120.32384410700882,52.819719213263284],[-120.32380850384008,52.81965059147618],[-120.32378801753525,52.81958046261841],[-120.32376708591347,52.819513675901],[-120.32373125915593,52.81944673409128],[-120.3236650479041,52.819383941256376],[-120.32359764594983,52.819330084603095],[-120.32353076459331,52.81927232278068],[-120.323464033474,52.81921343495413],[-120.32339737637673,52.819153993041816],[-120.32332870914627,52.81910963542877],[-120.32321253068643,52.81908601797443],[-120.32309575685767,52.81906686851381],[-120.32299320765088,52.81905290520795],[-120.32287643401108,52.81903375552869],[-120.32275727834688,52.81903247816247],[-120.32263812268984,52.81903120067533],[-120.32253371320233,52.819031195333395],[-120.32241396198712,52.81903438572499],[-120.32229540191592,52.81902863978436],[-120.3221762462834,52.81902736182854],[-120.322057090658,52.81902608375174],[-120.32195335065619,52.819021055744905],[-120.32183419505508,52.8190197774418],[-120.32171444381962,52.81902296711994],[-120.32159647952813,52.819012752371385],[-120.32149452660605,52.81899431965456],[-120.32137760487981,52.818976285508974],[-120.32125964079795,52.81896607042174],[-120.32114227247301,52.8189513871165],[-120.32104017096592,52.8189340710292],[-120.3209228028045,52.818919387504216],[-120.32080543472381,52.81890470386181],[-120.3207034824014,52.818886270456694],[-120.32058551872959,52.818876054691486],[-120.32049756671296,52.8188644876735],[-120.32046874665377,52.81885690261528],[-120.32035137890107,52.81884221851832],[-120.32024883113179,52.81882825281338],[-120.32013317587466,52.818800727192276],[-120.32003167095164,52.8187789421314],[-120.31991668686818,52.81874638522194],[-120.31981644893234,52.81871510080677],[-120.31971673191278,52.818679911192206],[-120.31961701505762,52.818644721492156],[-120.31951662742193,52.818614562778265],[-120.31941705985334,52.81857825588389],[-120.3193174185643,52.81854250294752],[-120.3192175533854,52.81850842992789],[-120.31911954997474,52.818460398507895],[-120.31903532486598,52.81842089588892],[-120.31893501325402,52.81839017369398],[-120.31881988207036,52.81835873272468],[-120.31871912380052,52.818331361411126],[-120.31860347087607,52.81830383427426],[-120.31850152093966,52.81828539894985],[-120.31838519839928,52.81826289372802],[-120.31828384464471,52.818239990126635],[-120.3181682673447,52.81821189958048],[-120.31806683992217,52.81818954983375],[-120.31795185892489,52.818156990987546],[-120.31785035664586,52.81813520403177],[-120.3177500465581,52.81810448081879],[-120.31763387392081,52.818080857828726],[-120.31753304196306,52.81805404847092],[-120.3174168695831,52.8180304252654],[-120.31729995221991,52.818012387047794],[-120.31719800354254,52.817993950587926],[-120.3170812353997,52.81797479513152],[-120.31697980910967,52.81795244444223],[-120.3168630411783,52.81793328876827],[-120.31674746564367,52.81790519681787],[-120.3166459645781,52.81788340881726],[-120.31652979315344,52.81785978473133],[-120.31642769612856,52.81784246462049],[-120.31631152493611,52.81781884031798],[-120.31619416146779,52.817804152055395],[-120.31609161755252,52.81779018270981],[-120.3159759677887,52.817762652974935],[-120.31587506369073,52.81773639622922],[-120.31577550126782,52.81770008622596],[-120.31567526882398,52.817668798254026],[-120.31557540859633,52.81763472211717],[-120.31547644294007,52.81759394378291],[-120.3153766569855,52.817559313434124],[-120.31527761775344,52.81751908897144],[-120.31517895080175,52.81747607634637],[-120.31509517732337,52.81743322875681],[-120.31499613864904,52.817393004053436],[-120.31489642869167,52.81735781031479],[-120.31476916752963,52.817305539841115],[-120.31442261481023,52.81710828238357],[-120.31410384038047,52.81692642070051],[-120.31375617607989,52.81673753439064],[-120.31337499974516,52.816576250712885],[-120.31297334040747,52.81645669297331],[-120.3125227523497,52.81636848587885],[-120.31206813901673,52.81631043646129],[-120.3116111402787,52.81627025751593],[-120.31113626601267,52.81625225145272],[-120.31068931355793,52.81624853302798],[-120.31021093308676,52.816256777507064],[-120.30974662519732,52.816271324934476],[-120.3092830631221,52.81628028546687],[-120.30881756075414,52.8163037653131],[-120.30835332590722,52.81631775319193],[-120.30788976303548,52.81632670822227],[-120.3074272448933,52.816327842356884],[-120.30696427886572,52.816332325695456],[-120.30652322382446,52.81628446509623],[-120.30628731770828,52.81626400491724],[-120.30606563334415,52.81624873259546],[-120.30582778653238,52.81624279259202],[-120.30560371328764,52.816245391515224],[-120.30536362663096,52.8162562056771],[-120.30513880661519,52.816264388746546],[-120.30489991446014,52.816266265908354],[-120.30467584103572,52.81626886306046],[-120.30443694883526,52.81627073928013],[-120.30421287535921,52.81627333554856],[-120.30397398311341,52.81627521082615],[-120.30373628581646,52.8162681495804],[-120.30351333204176,52.81626237144661],[-120.30327682995795,52.81624637323541],[-120.30305499737372,52.81623221223228],[-120.30282028836866,52.81620280905504],[-120.30260099597297,52.81616965813317],[-120.30238222743712,52.816132592822264],[-120.30214931238896,52.816089784264896],[-120.3019306187658,52.81605216407716],[-120.30171237379787,52.81601119247434],[-120.30147931065461,52.815969499586586],[-120.3012623361401,52.81591903709565],[-120.30106070432757,52.8158653811616],[-120.3008443298138,52.815810440952276],[-120.30062788053377,52.81575606331086],[-120.30041255212878,52.81569331223009],[-120.30022910437408,52.815615238884476],[-120.30006383806918,52.81551275826387],[-120.29991436187666,52.81540374244722],[-120.29977978011219,52.8152948845592],[-120.29961503988747,52.815188489316334],[-120.29946519287735,52.81508226093752],[-120.29929993046957,52.81497977920639],[-120.29911693508181,52.81489836202282],[-120.29891658206941,52.814835203404535],[-120.29869939270064,52.814786407171106],[-120.29846768472024,52.81473465527736],[-120.29825012200506,52.81468865517528],[-120.29803248559944,52.81464320870001],[-120.29781559725853,52.814592176828214],[-120.2976149485578,52.814531249972674],[-120.29743278131807,52.81444368218246],[-120.29731624121317,52.814311531802396],[-120.29724610066768,52.81416701563881],[-120.29732032543238,52.8140582014779],[-120.29753592408075,52.814007429021316],[-120.29777831821703,52.81397931290442],[-120.29800537030556,52.81395438893358],[-120.29823130022805,52.81393784648616],[-120.29847197365535,52.81392257889612],[-120.29869977251062,52.81389206858292],[-120.29891462243094,52.813846869652714],[-120.29913006863282,52.81379721126168],[-120.29934611343833,52.81374307553408],[-120.2995622318337,52.813688385374405],[-120.29976472764827,52.813624037707],[-120.29996804428635,52.8135535506457],[-120.30015706623506,52.8134784282073],[-120.30036157832343,52.813398995504464],[-120.30055074833962,52.813322755422206],[-120.30074021655821,52.81324428102542],[-120.30094420282529,52.81316876127421],[-120.30111974861993,52.81308286328781],[-120.30128197038896,52.812985074090506],[-120.30144538676933,52.81287834862945],[-120.30159338718657,52.81277537008611],[-120.30174138688983,52.81267239134933],[-120.30191961834487,52.81256638605323],[-120.30205294855193,52.812461569078586],[-120.3021301460905,52.81233041165016],[-120.30216393705062,52.81218927274538],[-120.30219765249142,52.812048696789006],[-120.30223151830063,52.81190699486818],[-120.30226456162076,52.81177144092581],[-120.30231301940391,52.8116321397145],[-120.30239081220269,52.81149651401926],[-120.30248267458444,52.81136719404909],[-120.30257431173614,52.81123955397442],[-120.30270912999349,52.811123566096036],[-120.30285719656501,52.81102002287112],[-120.30303340124759,52.810929099838745],[-120.30322375047434,52.810843919266155],[-120.30341342741733,52.81076376044918],[-120.30360243095238,52.81068863232787],[-120.30380684799492,52.81060975645209],[-120.30399659687762,52.81052904264418],[-120.30418686713222,52.81044442346039],[-120.30438881852074,52.810383972747005],[-120.30460364356965,52.81033877223836],[-120.30483194214415,52.810304335951635],[-120.30506106098869,52.810263760129544],[-120.30527394369354,52.81023307952962],[-120.30550216591313,52.81019920491047],[-120.30573061231429,52.810163649861494],[-120.30594551007718,52.810117883916725],[-120.30616212357191,52.81005927640477],[-120.30637888694632,52.809999542542236],[-120.30658008555935,52.80994468204034],[-120.30678389646265,52.809870268993734],[-120.30696001400275,52.80977989403807],[-120.30713635528316,52.80968783882426],[-120.30729914739057,52.809585573042426],[-120.30746126649609,52.80948833806046],[-120.3076232368117,52.8093922109269],[-120.30780024604628,52.80929513259483],[-120.30796161672818,52.80920348197814],[-120.30813914731627,52.80910248910197],[-120.3083013378846,52.809004689953554],[-120.30847752265618,52.80891375863064],[-120.30863956251567,52.80881707601902],[-120.3088170898935,52.808716082092246],[-120.30899275074829,52.80862905506914],[-120.309181735016,52.808553917860685],[-120.30938493796154,52.80848396829967],[-120.30958866181167,52.80841011328958],[-120.30977712250944,52.80833888020623],[-120.30999499034183,52.808270766431804],[-120.3101827026816,52.80820512671903],[-120.31040079353374,52.808135332189266],[-120.31058902732228,52.80806577778618],[-120.3107929714274,52.80799024066884],[-120.3109557483042,52.80788796970356],[-120.31113065565225,52.807806524533994],[-120.31134725030324,52.80774790736592],[-120.31156324900692,52.80769374894278],[-120.31179160179344,52.80765874501859],[-120.31201928254983,52.80762877171382],[-120.31224509960461,52.80761275627018],[-120.31247106560232,52.807595623369956],[-120.31271117690935,52.8075842316329],[-120.31293758986924,52.807563746767165],[-120.31316221348278,52.80755666573949],[-120.31340239833388,52.80754471854472],[-120.31362642544254,52.807542104721456],[-120.31386407579522,52.807549145981625],[-120.3141005336696,52.807565122953314],[-120.31432292114084,52.807574795065875],[-120.3145617642512,52.807572898718206],[-120.31478698385013,52.80756134648226],[-120.3150134696193,52.807540303567365],[-120.31524107355855,52.807510878055105],[-120.31546949746455,52.80747530399027],[-120.31569724977047,52.80744476056629],[-120.31592500175054,52.80741421669965],[-120.31615141226678,52.80739372563203],[-120.31638965824646,52.80739629367177],[-120.31661495032482,52.8073841838814],[-120.31684255232815,52.807354755260576],[-120.31706911107989,52.80733314539416],[-120.31730623998553,52.80734408481562],[-120.31752728621834,52.807363804112974],[-120.31776314854405,52.80738424182216],[-120.31789507575681,52.80740132743855],[-120.31798300345585,52.807412896491634],[-120.31821886627088,52.80743333328443],[-120.31844661638604,52.80740278452457],[-120.31859403489156,52.80730369825801],[-120.31858324609414,52.80716095204256],[-120.31844961032475,52.80704485875535],[-120.31828262104455,52.80695524459781],[-120.31808331851097,52.806884308097345],[-120.31786696761174,52.80682939894689],[-120.31762991650402,52.80681789767202],[-120.31740648936261,52.80681605102265],[-120.31716988541301,52.80680119773196],[-120.31695063016569,52.806768073414894],[-120.31671760260025,52.806726410532214],[-120.31650184908007,52.806667039683674],[-120.31631796366638,52.806592342110804],[-120.31613668602219,52.80649810073398],[-120.3159708207634,52.80640011001724],[-120.31582096390832,52.806293901916824],[-120.31568674226975,52.80618227352782],[-120.31556897720729,52.80605906784994],[-120.31546595306196,52.805937144144714],[-120.31534841226278,52.805812267153335],[-120.3151988570877,52.80570382416408],[-120.31504840844458,52.80560208313699],[-120.31488307021442,52.805500185700694],[-120.31473307017772,52.80539509317596],[-120.31456721242458,52.805297100405916],[-120.31421911965299,52.80511211917431],[-120.31405266793057,52.80501859376352],[-120.31387110383426,52.80492658284338],[-120.31368872003442,52.804840719745535],[-120.31350641210204,52.80475429337874],[-120.31330712896872,52.80468333973084],[-120.31309131656708,52.804624516578926],[-120.31287431203022,52.80457462922565],[-120.31265618917811,52.80453312362102],[-120.31243978202328,52.80447876736336],[-120.31225807459103,52.80438787093999],[-120.31215454264625,52.80426984931284],[-120.31217362853701,52.804126870231045],[-120.31225070477215,52.80399626842212],[-120.31234244720285,52.803867494154304],[-120.31244892846875,52.803740002285615],[-120.3125548127138,52.80361697840969],[-120.31266129272099,52.80348948632759],[-120.31276717573304,52.80336646224007],[-120.31288817067771,52.803241923441824],[-120.31299338095221,52.80312393021467],[-120.31311385336811,52.80300329628704],[-120.31322040411783,52.80287524960195],[-120.3133402037673,52.802759646509806],[-120.3134748169403,52.802644762658566],[-120.31360935545281,52.80253043268986],[-120.31377210477264,52.80242815745766],[-120.3139342570902,52.80233035010369],[-120.31411092460363,52.80223549586729],[-120.31428647289238,52.80214902353921],[-120.31444854904743,52.802051769503045],[-120.31461136845533,52.80194893902904],[-120.31474590173278,52.80183460770588],[-120.31486636436841,52.80171398081484],[-120.31498690143239,52.80159279080771],[-120.31509329521631,52.801465850398706],[-120.31620242987793,52.80022060855412],[-120.31842062693174,52.79954632839427],[-120.32016183067142,52.79632604090371],[-120.32139160369707,52.79615914735961],[-120.32519703847422,52.793554366151405],[-120.32946310719878,52.79151705480249],[-120.33409882265306,52.790283912513864],[-120.33759421132042,52.789554189085884],[-120.34129851106611,52.78803569692282],[-120.34029936281834,52.78545784898121],[-120.33881419371782,52.7835107888517],[-120.33855823815112,52.78162260562137],[-120.33772853935741,52.77945426411749],[-120.33662328607828,52.77790271575189],[-120.33161832564346,52.77833722268069],[-120.32660358271652,52.779740163875296],[-120.3199062642525,52.78079425229202],[-120.31339589050344,52.78144950002766],[-120.31019439662825,52.781429949378904],[-120.30690286448622,52.780968583010896],[-120.30642044020901,52.78089845366951],[-120.3018303083873,52.779449589198244],[-120.30062931294853,52.77795482227044],[-120.29725538462382,52.77577233903188],[-120.29285421750008,52.773808355134584],[-120.28930911091484,52.77201919262032],[-120.28828691787076,52.77052904712322],[-120.28786263808905,52.76824619834096],[-120.28809988342852,52.764361437383684],[-120.28850931084419,52.76219404417509],[-120.2897655068513,52.7604884921862],[-120.29232447862232,52.75873068819226],[-120.29308747389803,52.75514308945989],[-120.29260513698544,52.75496327362673],[-120.29193320492449,52.75486471632208],[-120.29104806773003,52.75446735399589],[-120.29044288940646,52.75420395377302],[-120.28961405205266,52.75383124731745],[-120.28899768370732,52.753540308339076],[-120.28861770390756,52.75315241522759],[-120.28823429244889,52.75279020356582],[-120.28771360676014,52.75245220963747],[-120.28740932687744,52.75227769263884],[-120.28706664413683,52.752056325443014],[-120.28649095311154,52.75190677561694],[-120.28621341709879,52.75186623335329],[-120.28598026991307,52.751827859037306],[-120.28576057268968,52.75180026040944],[-120.28553788332327,52.75179500193869],[-120.28530995705452,52.75182883903064],[-120.28507321967881,52.75181727158521],[-120.28485359731644,52.751789117211395],[-120.28463569675779,52.75174811214306],[-120.2844202664457,52.75168867125321],[-120.28420461165047,52.7516309099735],[-120.28398746082654,52.75158431856126],[-120.28375311983875,52.75155487602128],[-120.28353514609428,52.75151443188198],[-120.28333571183893,52.75144677595388],[-120.28313657638267,52.751376894568175],[-120.28293878996331,52.75129695067522],[-120.28275564922902,52.751218855679824],[-120.28255831334386,52.751135560060334],[-120.28235813269416,52.75107349651407],[-120.28214323232456,52.75101014629334],[-120.28192661149357,52.75095963698929],[-120.28170811909598,52.750923094554025],[-120.28148064361814,52.75095357314649],[-120.28124091751131,52.750964338432254],[-120.28100238918006,52.7509661670414],[-120.28077865654386,52.75096871868881],[-120.28055911684174,52.75093999327311],[-120.28035946474596,52.75087401225751],[-120.28017737884025,52.75078809405374],[-120.28001301023347,52.75068111278173],[-120.27986456185208,52.75056647277718],[-120.27976177325121,52.75044451331934],[-120.27966018339524,52.75031361758533],[-120.27955747027214,52.750191103885],[-120.27940827593577,52.750082048375866],[-120.27925855753453,52.74997690671317],[-120.2791093635097,52.749867859744214],[-120.27897616499634,52.74975059122059],[-120.27890439370991,52.74961947120505],[-120.27886378657566,52.74947806547338],[-120.2787763234321,52.749352914783664],[-120.27867473918647,52.749222018101],[-120.27855663730048,52.749103247731554],[-120.27845385594776,52.7489812870088],[-120.27836759340775,52.74884719980027],[-120.278295901003,52.748715516354814],[-120.27820948849448,52.74858255496404],[-120.27812262831156,52.74845293562608],[-120.2780050550039,52.74833025059697],[-120.27790235138748,52.74820773528532],[-120.27776961078996,52.74808711419738],[-120.27765114061688,52.74797113091161],[-120.2775178009955,52.74785498654088],[-120.2773840138364,52.74774218413646],[-120.27723535737174,52.74762922057867],[-120.27708520342006,52.747527427032246],[-120.27692077956884,52.74742100417152],[-120.27680208939213,52.74730669103944],[-120.27673107805091,52.74716998437735],[-120.2766898810864,52.747033045746214],[-120.27664928373164,52.74689163900525],[-120.27663790102596,52.74675446841954],[-120.27662786571906,52.746607253568364],[-120.27666041592197,52.746475606160566],[-120.2767815048654,52.74634998294319],[-120.27694270447184,52.74625837120834],[-120.27716053360842,52.74618863562351],[-120.27736334273281,52.74611985567672],[-120.27756562627206,52.74605498942275],[-120.27782442623524,52.7459018067311],[-120.27798622110875,52.745805725441635],[-120.27814966417779,52.74569734772758],[-120.2782693984368,52.74558177612087],[-120.27841797066608,52.74547323715341],[-120.27856631687045,52.74536637799452],[-120.27871563648141,52.74525225351226],[-120.2788347688717,52.745141149392445],[-120.27896989242771,52.745021832697724],[-120.27910434188463,52.74490753798379],[-120.2792530594132,52.74479788088386],[-120.27938728217435,52.74468526583489],[-120.27952240274819,52.74456594846703],[-120.2796430286275,52.74444367321295],[-120.27977739899568,52.74432994066428],[-120.27995090781603,52.74425747479309],[-120.28016722330582,52.74419891273304],[-120.28039653600052,52.74415446924085],[-120.2806115783111,52.744105396623056],[-120.28082729325746,52.74405130145031],[-120.28104315856727,52.74399607991392],[-120.28124527677237,52.74393232424607],[-120.28144829377537,52.74386185711611],[-120.28165198313764,52.74378636746684],[-120.28181376140745,52.74369028075849],[-120.28196224382471,52.74358229120874],[-120.28209660531817,52.74346855593593],[-120.2822312654534,52.743352586439535],[-120.28235173048999,52.7432314253297],[-120.28247144648833,52.7431158492408],[-120.28260595482922,52.74300099631786],[-120.2827404624476,52.74288614323175],[-120.28287541832165,52.74276793888733],[-120.28299528126303,52.74265124519605],[-120.28310162216219,52.74252433783469],[-120.28319332048613,52.74239558117631],[-120.28328449389507,52.7422707385175],[-120.28337686392445,52.74213695951473],[-120.28345459035839,52.74200134020577],[-120.28351692512892,52.74186946578541],[-120.28357940915238,52.74173647428704],[-120.28361320555634,52.74159533420679],[-120.28363288202392,52.74144844875393],[-120.28373757328752,52.7413338191494],[-120.28392750154481,52.74124978302589],[-120.28411817716218,52.74116016141728],[-120.28426664377909,52.74105217770264],[-120.28441451239202,52.7409486529962],[-120.28459046756917,52.74085775348203],[-120.2847934644648,52.74078728041323],[-120.28499563731049,52.74072295515544],[-120.28519982843193,52.74064355402443],[-120.28534769337305,52.740540028112314],[-120.2854821858882,52.74042517169166],[-120.28564469073017,52.74032349429609],[-120.28581996823772,52.7402376150972],[-120.28602348305364,52.74016323470566],[-120.28622647429127,52.740092759121914],[-120.28636021524687,52.73998348684981],[-120.28648110776106,52.739858970109076],[-120.28661499688609,52.73974858049065],[-120.28673543935182,52.739627414584604],[-120.28682719469862,52.739498100783685],[-120.28689026313428,52.73936063915329],[-120.2869384640395,52.73922301771431],[-120.28698980615032,52.739061929472385],[-120.28719489351067,52.738197208590854],[-120.28829489653417,52.7375426125683],[-120.29051539952746,52.73685840538675],[-120.29144918109127,52.73633283569501],[-120.29232429684427,52.73557784504068],[-120.2925471109942,52.73457962086514],[-120.2921249137554,52.7340631734056],[-120.29181350123712,52.73305236637745],[-120.29177055322471,52.732371722606295],[-120.29280042041259,52.73157200038862],[-120.29452889990687,52.730556765287005],[-120.29569119237547,52.72999060173554],[-120.2961182592231,52.7291338963917],[-120.29678383489107,52.7280515817626],[-120.29751974760514,52.72711099869403],[-120.2979963988474,52.726662585439655],[-120.29888095500658,52.725723058148695],[-120.29961374458527,52.72491666656982],[-120.29834025516872,52.724756734146396],[-120.29654608888399,52.724483682500015],[-120.29498540604138,52.72435692048751],[-120.29348358054588,52.72423525953055],[-120.2924367140561,52.72416165650734],[-120.29094147552749,52.72399081239386],[-120.28924567727223,52.72353917983902],[-120.28718246354575,52.72271932955358],[-120.28512865746933,52.72194093332705],[-120.28365914405965,52.72135635842112],[-120.2820285784541,52.7208633853572],[-120.27596892965518,52.71921750517063],[-120.27338131166643,52.71842735221519],[-120.27230740808518,52.717447108578234],[-120.27147408511172,52.716559601479396],[-120.27062374477461,52.71557737021681],[-120.26953134658105,52.71495767180443],[-120.2683216362544,52.71388189379666],[-120.26803297434833,52.71270680574982],[-120.26813200110911,52.71252332358602],[-120.26825114423333,52.712411673749315],[-120.26845088458002,52.712364685404424],[-120.26869099737041,52.71234947785639],[-120.26892976073758,52.712344323145466],[-120.26916687502872,52.712351455353655],[-120.26938800798413,52.71236679840094],[-120.26962632166737,52.71236499338135],[-120.26985375036311,52.712333419974286],[-120.27006677067553,52.712298333104975],[-120.27028114077055,52.712253183565494],[-120.27051036689257,52.712208204419625],[-120.27072518447761,52.71215971188456],[-120.27095373584665,52.71211975407567],[-120.27118146197438,52.712085944006105],[-120.27139410593674,52.712053642847486],[-120.27162190568818,52.71201927786795],[-120.27184918123481,52.711988817618526],[-120.27206339806516,52.71194478184764],[-120.27227971084793,52.71188511604265],[-120.27248259058557,52.71181466293728],[-120.27268456955544,52.711750920664564],[-120.27290088169079,52.711691244768055],[-120.27310428320678,52.71161688539678],[-120.2732649104536,52.71152862772448],[-120.2734140518401,52.7114150614727],[-120.27353430214654,52.71129502388634],[-120.27366873445949,52.71118017878129],[-120.2738037651921,52.71106086533794],[-120.27392341428335,52.71094529549888],[-120.27408568486955,52.710844749175585],[-120.27427444836745,52.71076854629712],[-120.27447672046252,52.71070255786268],[-120.27469347288381,52.71063953641421],[-120.27489559396797,52.71057466429583],[-120.27511174612788,52.710516110250055],[-120.27532744966409,52.71046089800538],[-120.2755282201043,52.71040608713984],[-120.27575870413729,52.71035159830088],[-120.27597350645614,52.7103030960774],[-120.27618786032522,52.71025793566452],[-120.27640168914233,52.71021668899316],[-120.27663007392854,52.710177846037546],[-120.27684382766677,52.71013715261249],[-120.27707228707438,52.71009774579993],[-120.27730014729923,52.7100628067367],[-120.27751509610646,52.71001318462698],[-120.27773019529164,52.70996243613495],[-120.27794499342299,52.70991393028236],[-120.27815994193219,52.709864298047606],[-120.2783755628213,52.70980964315706],[-120.27859118315975,52.70975498786757],[-120.27880620434767,52.70970480038374],[-120.27900764078449,52.709644952325824],[-120.27922385804065,52.70958582765892],[-120.27942529333349,52.70952597887767],[-120.27964278064515,52.70945736295711],[-120.27978935429807,52.709362778321],[-120.27979267736787,52.709226891266205],[-120.27978189189712,52.70908525826075],[-120.27977185580527,52.708938031039374],[-120.28083291217072,52.70745857213733],[-120.28109902884427,52.70691559824003],[-120.28430391282484,52.70597954066127],[-120.28599549824204,52.705567562471295],[-120.28939316354857,52.70541324522477],[-120.29252745630977,52.70567097398517],[-120.29240122405507,52.70539101976941],[-120.28965042825898,52.70482428295139],[-120.28751046571567,52.70414004606085],[-120.28522032845889,52.70335566367774],[-120.28407887503646,52.70254761120022],[-120.2828756256696,52.701201315825905],[-120.28166686600646,52.70011896334786],[-120.28144716490331,52.699982277216726],[-120.2788651352884,52.698047830471424],[-120.27701872717519,52.6966193545049],[-120.27642987320284,52.69601875190461],[-120.27633475545856,52.695507547375165],[-120.27634733246697,52.69519165154673],[-120.2763748766436,52.694764040780875],[-120.2763296331884,52.69399161384022],[-120.27602709481194,52.693585497859964],[-120.27544307633099,52.693171206359274],[-120.27485914340016,52.69275635776706],[-120.2738077266119,52.69227866525526],[-120.27307549779485,52.691971781539124],[-120.27275368751913,52.69170975696125],[-120.27201536949548,52.690893770693826],[-120.2716527686683,52.69060332254585],[-120.27138758282246,52.69025186941735],[-120.2713227069073,52.68984839936137],[-120.2712185699633,52.68962683871387],[-120.27127308854132,52.689220230019124],[-120.27126822097614,52.688480133030446],[-120.2706025262686,52.68778857278657],[-120.27029928103947,52.68749933911687],[-120.2699862666895,52.687061203252036],[-120.26958690018793,52.68682347091802],[-120.26905469719338,52.68635658473854],[-120.26846305324808,52.68600034332774],[-120.26819712421951,52.68587654041304],[-120.26780604544824,52.68579887401356],[-120.26748290171281,52.68565820101713],[-120.26709443839388,52.68545022861521],[-120.26684545401189,52.68520018646475],[-120.26573326544059,52.684623288669314],[-120.26513635159536,52.68430668095866],[-120.26413841048416,52.68365441846714],[-120.26215326825942,52.68238129848031],[-120.26227047397906,52.68195134936766],[-120.26234921355984,52.68147564842548],[-120.26247368926076,52.680991517361925],[-120.26270688440947,52.68025130494538],[-120.26300005536743,52.679285772431584],[-120.26288698997234,52.67879896356595],[-120.26296234165176,52.6784591595409],[-120.2630785552409,52.67814721610142],[-120.26358538336743,52.677472728858454],[-120.26383467061372,52.677276959131845],[-120.26439493030382,52.67653650457893],[-120.26528302796414,52.67590098198686],[-120.26646541887574,52.6750662676483],[-120.26741385714486,52.67420206414738],[-120.2688728550166,52.673299395958374],[-120.26919742426567,52.6719873905269],[-120.26901933211307,52.67109822581561],[-120.26871892907758,52.66979094930868],[-120.26898126334916,52.66849949943484],[-120.26912060208936,52.66790364998794],[-120.26954205836884,52.66719908935117],[-120.26994802168677,52.666720900444616],[-120.27038204947654,52.66647684365494],[-120.2712981740587,52.666184485781876],[-120.27206300810072,52.66580093178158],[-120.27321296968556,52.665538026394835],[-120.27419651484067,52.664963910942646],[-120.27514969827438,52.66472731559686],[-120.27605457668649,52.66440738590463],[-120.27715950586102,52.664147300313296],[-120.27783450057707,52.6638790528644],[-120.27850649690558,52.66363314318652],[-120.27885240960315,52.66326948166943],[-120.2795318206043,52.66285695927506],[-120.280093906991,52.66221041838777],[-120.2801970865417,52.661216995760086],[-120.28070498438001,52.6606420171694],[-120.28195464688343,52.66018770587718],[-120.2831045692106,52.65981226950849],[-120.28407144918548,52.658804933771734],[-120.28543343438935,52.65806543532671],[-120.28639029755644,52.65768838689132],[-120.2871976171585,52.656873361985596],[-120.28751428140066,52.65617149165034],[-120.29042406386273,52.65552401147725],[-120.2917835233433,52.65546964408828],[-120.29251458050918,52.65511355403292],[-120.29261716083661,52.65434498197345],[-120.29227113125167,52.65382038320884],[-120.29157558712156,52.65346534444086],[-120.29056519718446,52.65335406669769],[-120.28994660372945,52.65331310998676],[-120.28834615832373,52.65350351211653],[-120.28701125714277,52.653819335925036],[-120.28515914805153,52.6540024382189],[-120.28422272271828,52.65389360367572],[-120.28320405400734,52.65384425697694],[-120.28158087924517,52.654093049430685],[-120.28060298387975,52.654072106728556],[-120.27925269471777,52.65372480727055],[-120.2782508068991,52.6532169174743],[-120.27728182889149,52.65290740616008],[-120.27642019821269,52.65246204099558],[-120.27584476135111,52.652320802546484],[-120.2753585371897,52.65206813116915],[-120.27396883850192,52.65190492001966],[-120.27130156435943,52.651185353674364],[-120.26940761499925,52.650350217592226],[-120.26860300744929,52.649480292856175],[-120.26832350967095,52.64868339494126],[-120.26772634242408,52.6478180296027],[-120.26648704066059,52.64686657176791],[-120.26565965547553,52.64638906370712],[-120.26330131057072,52.6461387413739],[-120.2611535963627,52.645758184569644],[-120.25967525343623,52.6452609646151],[-120.25862592063481,52.64477753483313],[-120.25651598421639,52.64400574383228],[-120.25501959963654,52.643643639178656],[-120.25319516153759,52.643401403939144],[-120.25182589710468,52.642978050496964],[-120.25041908898699,52.64294470128453],[-120.249260866547,52.64238834339413],[-120.24943722382385,52.64140806278389],[-120.24871959153965,52.64066876300831],[-120.24829287478265,52.64052797052409],[-120.24745131397209,52.64037907801461],[-120.24604734245902,52.640214814869964],[-120.24507872377893,52.64012710522303],[-120.24358615440872,52.63995899801619],[-120.24229452975882,52.6397327640431],[-120.24101224410629,52.639437249338116],[-120.23973824811775,52.63908029142343],[-120.23856502280657,52.63885760306696],[-120.23656821155393,52.63802241091399],[-120.23538233116753,52.636350727648505],[-120.23386463636585,52.63460695385611],[-120.23379620888568,52.63401264400877],[-120.23374810766506,52.63315734024909],[-120.2337835647486,52.63256366816737],[-120.23394555639545,52.63158212071056],[-120.23400991196829,52.63066378172816],[-120.23396730498065,52.62954729737981],[-120.23435139993217,52.628570541204354],[-120.2343387386405,52.62712155995037],[-120.23471941860676,52.62628014031776],[-120.23489325188959,52.62510013838043],[-120.23496081083124,52.6240475721871],[-120.2356995160989,52.622752685735996],[-120.23659310040512,52.62218175928463],[-120.24014083091973,52.62174872728975],[-120.24057774753248,52.621591516569175],[-120.2415337401793,52.62121817692793],[-120.24273045966031,52.62049013286669],[-120.24316505215448,52.620129265266534],[-120.24432830808567,52.619428791550874],[-120.2458880349228,52.61876081325271],[-120.24675478803765,52.618277328755596],[-120.24793632146434,52.61788189556265],[-120.2496941467307,52.61783817347953],[-120.25089326493368,52.61786414631371],[-120.25192219167948,52.617941304097975],[-120.2522571787399,52.617879106609855],[-120.25804309819375,52.61791178531397],[-120.25897974118685,52.61779149193227],[-120.25977966476994,52.61769425356785],[-120.26048719948278,52.61751094154851],[-120.2618658652988,52.61708348335969],[-120.26302049848694,52.61677653938093],[-120.26439851665445,52.616353519497274],[-120.26596594761128,52.616289501901605],[-120.26798899632077,52.61603815870739],[-120.27074188095396,52.616101519191005],[-120.27221056148298,52.61577675538297],[-120.27398663908825,52.61581734660549],[-120.27583934653408,52.61572897868563],[-120.27740240498262,52.61569721302971],[-120.27918493869493,52.61557836103313],[-120.28114616617673,52.615455321998496],[-120.28300448397913,52.61510231451188],[-120.28402485705547,52.61424267424669],[-120.28438563342928,52.61365316325592],[-120.2846829136297,52.61320559175057],[-120.28509108743317,52.61281687208186],[-120.28538732727972,52.61226579916084],[-120.28602210300396,52.611625056435756],[-120.28770045362144,52.61083924600956],[-120.28742362287939,52.60991038138299],[-120.28712870393913,52.609673286951015],[-120.28635299522227,52.60903481039827],[-120.28608610528923,52.60814297579626],[-120.28568103627401,52.60750804379002],[-120.28596403790681,52.60649979405804],[-120.28610434154625,52.60600460132014],[-120.286149428037,52.60522194562822],[-120.28624326623607,52.60463002968101],[-120.28650938970269,52.60374801364833],[-120.28688891426394,52.60290584752348],[-120.28725849929161,52.60224929434218],[-120.28766162711278,52.6018974284879],[-120.28804903589675,52.601552095458665],[-120.28836990664901,52.60070424409471],[-120.28800635902908,52.59998082725588],[-120.28798305556217,52.59993302474136],[-120.28764698453602,52.59933745804486],[-120.28753917073267,52.599255710133356],[-120.2870825322524,52.59889654583577],[-120.28664582709727,52.59816560426084],[-120.28621512868465,52.597167333854486],[-120.28560039458634,52.5966587365284],[-120.28489870976559,52.59568989766781],[-120.28518372171074,52.59477732207061],[-120.28523380794394,52.593957231623264],[-120.28527344323537,52.59232590060283],[-120.28508107746484,52.59176603645005],[-120.28503526795306,52.59144219316689],[-120.28490306610719,52.591321013128685],[-120.28424266444958,52.590710641938514],[-120.28384358141886,52.590143447961076],[-120.28387294129156,52.58958996931806],[-120.28475058637416,52.589572863523856],[-120.28582000065488,52.58956404163436],[-120.28636547625334,52.58947890598346],[-120.2866187954849,52.589025801795486],[-120.28678377994282,52.58890120614825],[-120.28720855647552,52.588942276653455],[-120.28833175697625,52.58919750251018],[-120.28929097292632,52.58934741766586],[-120.29026971102559,52.58923964713806],[-120.290679471458,52.588725611311546],[-120.291474168349,52.58821751019168],[-120.29243128884893,52.58827170979075],[-120.2933372739807,52.58848700922194],[-120.29402002075697,52.588930318447765],[-120.29470358593043,52.58914483246861],[-120.2947285279938,52.589180345197526],[-120.29499723150379,52.58961349067306],[-120.29608732839723,52.59022909039526],[-120.29717314855912,52.59031990945882],[-120.29793234137033,52.59018952579662],[-120.2984777259292,52.590104896649876],[-120.29891330641993,52.59006493429875],[-120.29931732441517,52.59003915923734],[-120.29959008898851,52.58999628315891],[-120.30010145150997,52.58994428210682],[-120.30055026134954,52.589804876521676],[-120.300747216487,52.58966271150975],[-120.30073686093576,52.58962903833421],[-120.30077076085689,52.58903979681408],[-120.3007695990732,52.58882553782247],[-120.30075679709685,52.58847576700217],[-120.30085901537063,52.588153554037476],[-120.30142678766526,52.58778889664987],[-120.30171194572532,52.587652735985664],[-120.30208900692655,52.587383320803795],[-120.3026025376594,52.587203220880305],[-120.3032168785024,52.58682284226116],[-120.3035111323771,52.586506644937415],[-120.30366733536043,52.58633606325126],[-120.30382268952685,52.58606030000087],[-120.30401512823184,52.58584032309023],[-120.30436628852031,52.58543076211442],[-120.30429959469544,52.584928248654165],[-120.30429978464744,52.584815255908964],[-120.30428850510796,52.58467695562057],[-120.30427351068205,52.58456659375761],[-120.3041630074464,52.584170442070445],[-120.30412945559824,52.583976521614645],[-120.30400038469494,52.583720026123395],[-120.3040329297723,52.58325215740277],[-120.30418455673662,52.58300432259579],[-120.30451760226067,52.58284238702905],[-120.30530478013345,52.582723450593036],[-120.3058330896311,52.58265482387586],[-120.30664936600236,52.58254010773045],[-120.30724801541176,52.582277011067305],[-120.30768780616867,52.581981410989755],[-120.30796919466074,52.58187316414874],[-120.30849773161448,52.581467762802205],[-120.3097765326986,52.581444224614025],[-120.31041619267687,52.58143049294895],[-120.31083725854839,52.58127564683816],[-120.31140334870736,52.58103398695369],[-120.31164728134311,52.580760859351116],[-120.31207943112297,52.580299012588576],[-120.3126262264899,52.579755623136194],[-120.31273018823973,52.57941943733163],[-120.31307698565199,52.57904169283102],[-120.31329872725854,52.57848860972837],[-120.31326953190802,52.578149853260136],[-120.31313189856334,52.57751064181821],[-120.31337615215607,52.576452660487],[-120.31348705183507,52.57617584115891],[-120.3135969476557,52.575683080552935],[-120.31390737462759,52.57513208628333],[-120.31398119477963,52.57468759702881],[-120.31406620647171,52.574158763401016],[-120.31403719658273,52.57404209655844],[-120.3139102806488,52.573545644489656],[-120.31375868223752,52.57323520163944],[-120.31350716483331,52.57267194487124],[-120.31373788484888,52.57126866322243],[-120.31475473379348,52.571093421460866],[-120.31568591010556,52.57089319178728],[-120.31617554190025,52.570220495912615],[-120.31653728517738,52.56961746092361],[-120.31668167940417,52.569423233462615],[-120.31674803212275,52.56925837257008],[-120.31696971354206,52.569152249722926],[-120.31733916738627,52.56916184170411],[-120.31767556871984,52.56964434161711],[-120.31782368224499,52.57031666925166],[-120.31784269925366,52.57050875150381],[-120.31787222178522,52.570845274246395],[-120.31808284703048,52.57126991041866],[-120.31828688472363,52.57174425737302],[-120.31851601708203,52.57247675672848],[-120.31855308193798,52.57320382516013],[-120.31867153710135,52.57365263077897],[-120.31881540785776,52.573686077791436],[-120.31934809728762,52.57380707202595],[-120.31962066408467,52.5737647117348],[-120.31957230058586,52.57435323742253],[-120.32049878750212,52.57486000559646],[-120.32303394628718,52.57408349772511],[-120.32531505348886,52.57152922016092],[-120.32923343077124,52.56623739732703],[-120.33211840107384,52.561689569330404],[-120.33527797633094,52.5571904712021],[-120.33947144577748,52.55327568716938],[-120.34609181049589,52.54949668013877],[-120.35199266756908,52.54284497351565],[-120.35628880417984,52.53778944939265],[-120.35999830175929,52.53358184726598],[-120.3638037092447,52.52852593385892],[-120.36478567337697,52.52590020719078],[-120.37180021563225,52.527307965843875],[-120.37850152377682,52.53009158515012],[-120.38615311816321,52.531620273779815],[-120.39487992620843,52.531273620100414],[-120.40368955128322,52.5297227490059],[-120.41093702048683,52.52821819401343],[-120.41901281618219,52.52660453685909],[-120.42783535603148,52.52482429442012],[-120.4345998756147,52.52303211674853],[-120.43960224586988,52.519633019180766],[-120.44321981255194,52.51434225156286],[-120.4461933394087,52.51001678048087],[-120.45064592223564,52.50604124077885],[-120.4530867464421,52.50525486842897],[-120.46169727248787,52.50438189221177],[-120.47051382178944,52.50385987095548],[-120.47906312276093,52.50173027092587],[-120.48803516671875,52.50125818865206],[-120.49665931124417,52.50061100350435],[-120.50332019815959,52.498647200045],[-120.51001707414414,52.49616533492059],[-120.5159293230941,52.493331316347145],[-120.52129754611958,52.48918749956401],[-120.52706561478232,52.485613178928425],[-120.53250781184562,52.48249883246095],[-120.53327167497118,52.48044986592182],[-120.5334950404477,52.47776499958578],[-120.5353768119665,52.47646281495497],[-120.54170200804248,52.472205801332244],[-120.5427766201174,52.46735629073441],[-120.54187770829597,52.461975035706466],[-120.53613441118466,52.458295744394],[-120.52754607898707,52.457458603895276],[-120.5188408400265,52.45754001943054],[-120.51511449819499,52.45614932794732],[-120.51455951528025,52.455747608430805],[-120.51003079969429,52.4520747633427],[-120.50937946386038,52.45069200455595],[-120.50938412820256,52.44938242139472],[-120.5030702087633,52.44661475777636],[-120.50150155440947,52.44524023380682],[-120.49592527584745,52.44064517846062],[-120.49156692810641,52.43970430163598],[-120.48296863820273,52.43863155720918],[-120.48092203588446,52.437993477167545],[-120.47980500185379,52.436792974138406],[-120.48019524648976,52.435480307521],[-120.47567849384814,52.43140725379036],[-120.47170963392873,52.427331951096555],[-120.47034126118429,52.42464250265957],[-120.4622261201832,52.42271236871135],[-120.4600840349909,52.42167633222297],[-120.45879934053532,52.420408535404675],[-120.45808117154587,52.41875794300641],[-120.45839718158422,52.41378244020073],[-120.46133276064569,52.411176857439344],[-120.46736831840738,52.40720567013114],[-120.47402988615174,52.404101137622895],[-120.48254589535466,52.4031117131441],[-120.49142270509235,52.40218435792321],[-120.49923301440097,52.3987367000178],[-120.50476236276644,52.39568029333545],[-120.51152306388808,52.39199270394468],[-120.51660731192923,52.38847567485202],[-120.52002772870804,52.383294516251894],[-120.52315179755831,52.37799977656454],[-120.52730886039656,52.37281557050943],[-120.5285065373346,52.367455041932644],[-120.52844413552658,52.36213901428213],[-120.52953834223155,52.35689274714939],[-120.53104686721228,52.35558493668085],[-120.53180262038501,52.35427982351029],[-120.53115338216132,52.353816307689485],[-120.52427120559213,52.351441562501286],[-120.51779897187596,52.34735760998022],[-120.5164291253499,52.34386624030519],[-120.51689250132814,52.34335409584496],[-120.5230840117425,52.340474594427846],[-120.52972592440098,52.33822209252032],[-120.53686480137343,52.334486049979766],[-120.53659838352367,52.33391242667719],[-120.53263296559614,52.32972085436557],[-120.5261354912362,52.32666817084152],[-120.52191512563432,52.32681601825389],[-120.51305618343568,52.32923790889235],[-120.51080990660456,52.329279312801184],[-120.50865785339197,52.3289282198648],[-120.50225781256607,52.32581801412572],[-120.49614691962111,52.32287463767185],[-120.489735656703,52.32044226349477],[-120.48326476121545,52.31744443409222],[-120.47724359276064,52.31312843027184],[-120.47310082927547,52.30876850426535],[-120.46782656932216,52.306458183773685],[-120.46633032896602,52.30514129388821],[-120.46627115525382,52.303764925015045],[-120.46741160221964,52.3024560258792],[-120.47349044486494,52.29940345337974],[-120.48052478043921,52.29613024899721],[-120.48145859350672,52.294819247724796],[-120.48274842677068,52.28945691654906],[-120.48490427142234,52.28826376343206],[-120.4933946732719,52.28579299307771],[-120.49462173315243,52.28448743508623],[-120.48756668837842,52.28114461565187],[-120.48639611611235,52.28039334130506],[-120.48631306101414,52.2789686096014],[-120.48904039245704,52.2764088682157],[-120.48960483053115,52.2751021426885],[-120.4874846661302,52.273716393931224],[-120.48175679280978,52.27002983913544],[-120.47629469031712,52.26680488102182],[-120.47564523658232,52.265667349109336],[-120.47542298440389,52.26291745432371],[-120.47015171507968,52.25878758418367],[-120.46750100907329,52.2545455907276],[-120.46279906207839,52.25058027488927],[-120.45706894016814,52.24752350801294],[-120.45077412247608,52.24440106096325],[-120.44364819769619,52.24088289810559],[-120.43981730780908,52.236807625289934],[-120.43632443263323,52.232740584986544],[-120.43432552000216,52.22758706799799],[-120.43134173306335,52.22209022348583],[-120.42655131415043,52.21795004787049],[-120.42730781394458,52.21664547526894],[-120.42852802816783,52.215850215214516],[-120.42910139687437,52.21493883716195],[-120.42661021510854,52.21315983747487],[-120.42513452634944,52.212629761616306],[-120.42459256219664,52.212271277149],[-120.4202282842702,52.2111079146876],[-120.41536873929319,52.20979614581929],[-120.41487918833909,52.20971567696418],[-120.41188798421203,52.21021872864031],[-120.40863936134117,52.21043763827065],[-120.4058323006975,52.211221059321275],[-120.40406784703768,52.21133349367428],[-120.4011069380819,52.20989774494813],[-120.39823523520099,52.208228937619864],[-120.39580142119644,52.2096487741184],[-120.39244153879456,52.21129126871007],[-120.3888112481055,52.21116326138498],[-120.3864168740939,52.20967141884407],[-120.386058839136,52.20767291892942],[-120.38459936981545,52.205438090066934],[-120.38331593470052,52.20354694739656],[-120.38350816050949,52.20240688976219],[-120.38520848400564,52.2000693220711],[-120.38504798415623,52.198475173904804],[-120.38532815044766,52.197676224084596],[-120.38758595124885,52.19557155877917],[-120.39325810174508,52.19490701880058],[-120.3971663479404,52.19492136090468],[-120.39829076541412,52.194071157622325],[-120.40015790791699,52.19282005128961],[-120.40192863584419,52.192653465098424],[-120.40369913819964,52.192147763503286],[-120.40373004506468,52.1902053044745],[-120.40067554387664,52.188368464116266],[-120.40045842366843,52.188229159958745],[-120.3962341740296,52.185440749051565],[-120.3935234101942,52.17857620787623],[-120.39130744556614,52.176740992268286],[-120.39039096299545,52.17531026486077],[-120.39064381541073,52.17324694975084],[-120.39698932988712,52.16951548337836],[-120.39784828286277,52.168214335412536],[-120.40078134112981,52.16314498833823],[-120.4028998516931,52.15766827451923],[-120.40631534262032,52.15215098127752],[-120.40805790229201,52.14718791898022],[-120.40678941620934,52.14564123578848],[-120.40049031716735,52.142577680420985],[-120.39412461790644,52.14026179912007],[-120.38719626536309,52.13742156170624],[-120.37943075839935,52.135835170647894],[-120.37077374567738,52.13704523497755],[-120.36451105916123,52.14083495955352],[-120.35980209288724,52.14474934829066],[-120.35595067756495,52.148612205791615],[-120.35152669038003,52.15246827714677],[-120.34581184402501,52.155856000890886],[-120.33725491237908,52.155924225808796],[-120.32826908047772,52.15466934997582],[-120.32457996700705,52.15424149108595],[-120.32341911401663,52.09243357611721],[-120.34679940702999,52.09218751000898],[-120.34811458639417,52.0905367376625],[-120.34952531801402,52.088489650473015],[-120.34982972722699,52.08637924519465],[-120.34753444353437,52.083739653833405],[-120.34673226459347,52.081682880134686],[-120.34637598036474,52.08036732956121],[-120.34638661773299,52.07893651198794],[-120.34842431139903,52.07848823132864],[-120.3503095482774,52.07707184058046],[-120.35072052704093,52.073129805219324],[-120.35037339005946,52.07050597188932],[-120.34954731778065,52.06987093218405],[-120.35262816051817,52.06748680550777],[-120.35440303928068,52.06601263903269],[-120.35702813736864,52.06453628379509],[-120.35955131169841,52.06237717446976],[-120.3600637352287,52.058098130002264],[-120.35990109387625,52.054728028427796],[-120.35974511473884,52.051983094663235],[-120.35903748697771,52.049875312665264],[-120.35730093178016,52.04666756043522],[-120.35676040178177,52.04575465871179],[-120.35679484786642,52.04312420241821],[-120.35819663461524,52.041018082699274],[-120.35943090906017,52.03862196097289],[-120.36057887991187,52.034859965185625],[-120.36338540855483,52.03298523175311],[-120.3659924684116,52.03162990103515],[-120.36813268098295,52.02992095192346],[-120.3697382963267,52.02781626976083],[-120.3715123347809,52.025879544398045],[-120.37255298319128,52.02485514053275],[-120.37413610340134,52.02303389270675],[-120.35149189421563,52.00913620259688],[-120.31392976524887,52.02211458275351],[-120.31300912389248,52.02165337722631],[-120.30996611163921,52.021074725679085],[-120.30247420177643,52.0182472633814],[-120.2954338927041,52.015443918594116],[-120.2936646007253,52.0154269467454],[-120.28569650824778,52.016232460791464],[-120.28093532448547,52.018032374442534],[-120.27947193292488,52.01824865712342],[-120.27473653146458,52.01884982518196],[-120.27083865083189,52.01865107222902],[-120.26430085142017,52.016268469355346],[-120.25750809869626,52.013826021539316],[-120.2510514096021,52.011725641664],[-120.24377026792786,52.00933324851675],[-120.24304199834219,52.00853229792919],[-120.242503559746,52.00817680790828],[-120.23921359731277,52.00472678473348],[-120.23706804255107,52.00390758999832],[-120.23736706953669,51.999888744090335],[-120.23736944190429,51.999870862386395],[-120.23737181426995,51.99985298068216],[-120.23737418663367,51.99983509897754],[-120.23737655899545,51.999817217272664],[-120.23737893135525,51.99979933556746],[-120.23738130371311,51.99978145386187],[-120.23738367606902,51.99976357215601],[-120.237386048423,51.999745690449785],[-120.23738842077502,51.999727808743316],[-120.23739079312509,51.99970992703647],[-120.2373931654732,51.99969204532928],[-120.23739553781937,51.999674163621755],[-120.2373979101636,51.999656281913985],[-120.23740028250585,51.99963840020588],[-120.23740258011749,51.99962108177113],[-120.23740502718455,51.99960263678862],[-120.23740739952098,51.99958475507946],[-120.23740977185547,51.999566873370085],[-120.237412144188,51.999548991660205],[-120.23741451651857,51.9995311099502],[-120.23741688884719,51.9995132282398],[-120.23741926117387,51.999495346529024],[-120.2374070939987,51.99947673540393],[-120.23740946632742,51.99945885369283],[-120.23741183865417,51.99944097198145],[-120.23741435924923,51.99942197266273],[-120.23740219209662,51.99940336153592],[-120.23740456442336,51.99938547982382],[-120.23740708501839,51.999366480504335],[-120.23739491788442,51.99934786937591],[-120.23739729021112,51.99932998766307],[-120.2373997360779,51.99931155161681],[-120.23738697588043,51.99929741091505],[-120.23738949647803,51.999278411594545],[-120.23737740410459,51.99925923718882],[-120.23737977643367,51.999241355475014],[-120.23736760934634,51.999222744341694],[-120.2373695368655,51.999208215448895],[-120.23735751806272,51.99918848670684],[-120.23735929731292,51.99917507542101],[-120.23734720379534,51.99915590995127],[-120.23734957613118,51.99913802823648],[-120.23733755735682,51.999118299491094],[-120.23734000442317,51.99909985450191],[-120.23732783739241,51.99908124336204],[-120.23731463247105,51.999070455471205],[-120.23731715308708,51.9990514561485],[-120.23730505962239,51.99903229067236],[-120.23730743196877,51.999014408956604],[-120.23729541324765,51.99899468020463],[-120.23728272790612,51.99897997621341],[-120.23728510025884,51.998962094497294],[-120.23727308156228,51.9989423657422],[-120.23727500910057,51.99892783684748],[-120.23726284214568,51.99890922569805],[-120.2372507487444,51.99889006021384],[-120.23725267628784,51.99887553131887],[-120.23724058408655,51.99885635689215],[-120.23724295644988,51.99883847517497],[-120.23723093780654,51.99881874641338],[-120.23721891917408,51.99879901765019],[-120.23722077199452,51.998785052028765],[-120.2372080120095,51.998770911300795],[-120.23719599340066,51.99875118253439],[-120.23719844050636,51.99873273754238],[-120.23718627363871,51.99871412638173],[-120.23718879429012,51.99869512705604],[-120.2371761826157,51.99867986871604],[-120.23717855499584,51.998661986997405],[-120.23716646170035,51.99864282150026],[-120.23716824098712,51.998629410211066],[-120.23715622243537,51.998609681438154],[-120.23715866954996,51.99859123644474],[-120.23714650273887,51.998572625277674],[-120.23714843030304,51.99855809638045],[-120.23713626350559,51.99853948521176],[-120.23713878416872,51.99852048588428],[-120.2371266173859,51.998501874713924],[-120.23712906332076,51.998483438660244],[-120.23713143570956,51.998465556939614],[-120.23711926894525,51.998446945767604],[-120.23712178961043,51.998427946439094],[-120.23710910449266,51.99841324242156],[-120.23711147688583,51.998395360700194],[-120.23711384927704,51.998377478978554],[-120.2371018308195,51.998357750195694],[-120.23710420321261,51.998339868473685],[-120.23709159167075,51.99832461011971],[-120.23709396406629,51.9983067283974],[-120.23709633645986,51.99828884667465],[-120.23708424330421,51.9982696811628],[-120.23708602260108,51.99825626987056],[-120.23707385591464,51.998237658690414],[-120.23707637658754,51.998218659359395],[-120.237078823714,51.99820021436146],[-120.23706665704631,51.99818160317962],[-120.2370690294443,51.998163721455654],[-120.23707155011499,51.99814472212355],[-120.23705938346595,51.998126110940035],[-120.23706190413868,51.99810711160756],[-120.23704973750426,51.9980885004224],[-120.23705151680433,51.99807508912866],[-120.23705396274704,51.99805665306991],[-120.23704179613011,51.99803804188311],[-120.23704416853049,51.998020160157395],[-120.23704668920374,51.99800116082349],[-120.23703452260544,51.99798254963517],[-120.23703696973632,51.997964104634356],[-120.23703934213465,51.997946222907586],[-120.23702717555484,51.9979276117175],[-120.23702969623015,51.99790861238248],[-120.23703162380392,51.99789408347896],[-120.23701945724196,51.997875472287184],[-120.23702123654266,51.997862060991494],[-120.23702360894185,51.997844179263474],[-120.23701151594179,51.99782501373657],[-120.23701388834297,51.99780713200818],[-120.23701626074221,51.99778925027951],[-120.23700424249128,51.997769521476435],[-120.23700661489244,51.99775163974735],[-120.23700906202217,51.99773319474353],[-120.23699689551485,51.99771458354687],[-120.23699867481591,51.99770117224959],[-120.23700104721564,51.99768329051962],[-120.23698902900084,51.997663561713146],[-120.23699140140248,51.9976456799828],[-120.23699392207708,51.99762668064389],[-120.23698175560598,51.99760806944392],[-120.23698412800756,51.99759018771285],[-120.23698650040723,51.99757230598137],[-120.23698894634921,51.997553869916025],[-120.23697677990059,51.997535258714315],[-120.23697915230026,51.99751737698223],[-120.23698167297277,51.99749837764153],[-120.23696891344255,51.99748423687141],[-120.23697136057326,51.99746579186407],[-120.23697373297136,51.997447910131015],[-120.23696156655886,51.997429298926015],[-120.23696393895901,51.99741141719259],[-120.23696631135721,51.99739353545893],[-120.23696883202814,51.997374536116446],[-120.23695666563826,51.99735592490971],[-120.23695918631122,51.997336925566906],[-120.23696155870732,51.99731904383208],[-120.23696393110146,51.99730116209693],[-120.23695176473416,51.99728255088866],[-120.2369542106746,51.997264114819345],[-120.23695658306875,51.99724623308352],[-120.23694382362059,51.997232092307506],[-120.23694619601727,51.99721421057144],[-120.23694871668663,51.99719521122649],[-120.23695108907928,51.99717732948975],[-120.23695346147,51.997159447752644],[-120.23694136987717,51.997140273266226],[-120.23694374226986,51.99712239152876],[-120.23694611466061,51.997104509790965],[-120.2369484870494,51.99708662805285],[-120.23693632074865,51.997068016839485],[-120.23693884141386,51.99704901749236],[-120.23694121380261,51.99703113575348],[-120.23694358618941,51.99701325401439],[-120.23693156818564,51.996993525190526],[-120.23693394057436,51.99697564345104],[-120.2369363129611,51.99695776171122],[-120.23693868534593,51.99693987997106],[-120.23694105772881,51.996921998230604],[-120.23692837192469,51.996907303114945],[-120.23693067076611,51.996889975708136],[-120.23693311669342,51.996871539633034],[-120.23693548907485,51.996853657891634],[-120.23693786145434,51.996835776149915],[-120.23692569522824,51.99681716493134],[-120.23692806760975,51.996799283189226],[-120.23693043998934,51.99678140144678],[-120.2369329606405,51.99676240209513],[-120.23693533301605,51.99674452035205],[-120.23693770538965,51.99672663860865],[-120.23692561392397,51.996707464113406],[-120.23692798629956,51.99668958236958],[-120.23693035867319,51.99667170062545],[-120.23693273104485,51.99665381888109],[-120.23693510341458,51.99663593713626],[-120.23692293724551,51.99661732591426],[-120.23692530961728,51.99659944416912],[-120.2369276819871,51.996581562423685],[-120.2369302026279,51.99656256306871],[-120.23693257499369,51.99654468132264],[-120.23693494735754,51.996526799576195],[-120.23692278121904,51.99650818835238],[-120.23692515358489,51.996490306605544],[-120.23692767422152,51.996471307249266],[-120.23693004658337,51.99645342550177],[-120.23693241894328,51.996435543754004],[-120.23693479130125,51.996417662005875],[-120.23693657056846,51.996404250694575],[-120.236938942923,51.99638636894586],[-120.23692677682205,51.99636775772024],[-120.23692914917862,51.99634987597119],[-120.23693152153326,51.99633199422178],[-120.23693389388595,51.99631411247213],[-120.23693626623667,51.996296230722166],[-120.23693863858547,51.99627834897178],[-120.23694101093233,51.996260467221134],[-120.23694338327722,51.99624258547011],[-120.23694575562016,51.99622470371881],[-120.23694820150371,51.99620626763289],[-120.23695050030021,51.99618894021521],[-120.23695294617971,51.9961705041286],[-120.23695531851482,51.99615262237602],[-120.23695761730565,51.99613529495737],[-120.2369599896369,51.99611741320412],[-120.23694789714445,51.99609824764202],[-120.23695019593538,51.99608092022275],[-120.23695256826672,51.99606303846879],[-120.23695553367814,51.99604068627593],[-120.2369579060051,51.99602280452123],[-120.2369602783301,51.99600492276624],[-120.23697718898019,51.99598777048329],[-120.23697956129537,51.99596988872735],[-120.23698193360859,51.995952006971144],[-120.23698430591988,51.995934125214525],[-120.2369866782292,51.995916243457565],[-120.23698905053658,51.995898361700384],[-120.23699142284201,51.995880479942834],[-120.23699364687657,51.99586371579478],[-120.23699601917824,51.99584583403659],[-120.23699839147795,51.99582795227815],[-120.2370007637757,51.995810070519255],[-120.2370029878031,51.99579330637006],[-120.23700536009704,51.99577542461062],[-120.2370077323891,51.995757542850846],[-120.23702464292438,51.9957403905573],[-120.23702701520662,51.99572250879657],[-120.23702938748686,51.995704627035536],[-120.23703168503842,51.99568730854958],[-120.23703405731484,51.995669426787906],[-120.23705081953884,51.99565339209932],[-120.23705319180554,51.995635510336726],[-120.23705556407032,51.99561762857377],[-120.23705793633313,51.995599746810605],[-120.23706023505393,51.99558241938166],[-120.23707714550052,51.99556526707774],[-120.23707951775164,51.99554738531326],[-120.23708174173527,51.99553062115876],[-120.23708470704409,51.99550826895227],[-120.23710146918738,51.99549223425407],[-120.23710384142451,51.99547435248794],[-120.23710562060108,51.99546094116315],[-120.23712245625747,51.99544435212647],[-120.23712468021931,51.995427587969616],[-120.23712705244337,51.99540970620197],[-120.23714396279658,51.99539255388577],[-120.23714685452546,51.99537075600985],[-120.23714922673734,51.99535287424097],[-120.23716598879703,51.99533683953118],[-120.23716836099919,51.99531895776132],[-120.23717058493693,51.99530219360183],[-120.23718749523121,51.99528504127753],[-120.23718979269776,51.99526772278223],[-120.23719157183939,51.9952543114537],[-120.23720892689059,51.99523380629344],[-120.23721129906949,51.9952159245211],[-120.237213597709,51.99519859708344],[-120.2372305079461,51.99518144475126],[-120.23723273185288,51.995164680588566],[-120.23724949380937,51.99514864586411],[-120.23725245900607,51.99512629364596],[-120.23725483116124,51.995108411871044],[-120.23727166662447,51.99509182280757],[-120.23727329747464,51.995079529086716],[-120.23729020764195,51.995062376744116],[-120.23729250624194,51.995045049302504],[-120.23729487837625,51.99502716752557],[-120.23731223328822,51.99500666234561],[-120.23731460541234,51.99498878056771],[-120.23733136727093,51.99497274582886],[-120.23733373938532,51.994954864049994],[-120.23733603677627,51.99493754554685],[-120.23735279860725,51.99492151080419],[-120.23735457768453,51.99490809946915],[-120.23737200724189,51.99488703100206],[-120.23737437933494,51.99486914922101],[-120.237376751426,51.99485126743966],[-120.23739351320879,51.99483523268984],[-120.23739573703513,51.99481846851901],[-120.23739810911466,51.994800586736446],[-120.2374155374219,51.994779527201636],[-120.2374179094912,51.994761645418116],[-120.2374201333044,51.994744881245715],[-120.2374370432839,51.99472772887657],[-120.23743874879354,51.99471487187333],[-120.23745565875406,51.99469771950095],[-120.2374580308024,51.99467983771535],[-120.23746084760732,51.994658603094365],[-120.23747760928494,51.99464256832973],[-120.23747998132127,51.99462468654273],[-120.23748235335567,51.994606804755456],[-120.23749918853822,51.99459021565147],[-120.23750141231137,51.994573451475],[-120.23750378433418,51.9945555696865],[-120.23750615635501,51.99453768789761],[-120.23752358569072,51.99451661940089],[-120.23752595770134,51.994498737611046],[-120.237527736708,51.994485326268375],[-120.23754449829428,51.99446929149154],[-120.23754687029373,51.99445140970052],[-120.2375490940414,51.994434645521146],[-120.23755146603705,51.994416763729525],[-120.23755383803076,51.99439888193756],[-120.2375707478232,51.99438172954364],[-120.23757304508963,51.99436441102724],[-120.23757586181802,51.99434317639773],[-120.23757823379768,51.99432529460413],[-120.23759514355196,51.994308142205576],[-120.2375975155218,51.99429026041101],[-120.23759981395872,51.994272932951866],[-120.23760218592473,51.99425505115664],[-120.23761909564226,51.99423789875354],[-120.23762131935123,51.99422113456969],[-120.23762369130559,51.99420325277323],[-120.23762650799885,51.99418201813962],[-120.23764341767846,51.994164865731825],[-120.23764519663527,51.994151454383534],[-120.23764756857604,51.99413357258551],[-120.2376498657988,51.99411625406386],[-120.23765223773573,51.99409837226522],[-120.23766899912718,51.994082337464974],[-120.23767137105438,51.99406445566538],[-120.23767374297965,51.99404657386549],[-120.23769057905861,51.99402997578461],[-120.23769354395267,51.99400762353365],[-120.23769591586573,51.99398974173242],[-120.23769828777685,51.99397185993087],[-120.23770051144176,51.99395509574168],[-120.23771742100405,51.993937943319644],[-120.23771964465985,51.993921179129565],[-120.23772201655748,51.993903297326526],[-120.23772438845316,51.99388541552313],[-120.2377267603469,51.99386753371938],[-120.23774359515046,51.993850944569076],[-120.23774596703444,51.99383306276447],[-120.23774878364412,51.99381182812097],[-120.23775115552382,51.993793946315655],[-120.23775352740158,51.993776064509966],[-120.23777043687345,51.99375891207749],[-120.23777273521351,51.99374158460691],[-120.23777510707957,51.99372370280002],[-120.23777747894364,51.993705820992794],[-120.23777985080581,51.993687939185165],[-120.23779661199224,51.993671904360646],[-120.2377989838447,51.99365402255211],[-120.23780135569518,51.99363614074326],[-120.23780357930325,51.99361937654717],[-120.23780654411134,51.99359702428533],[-120.23780832299472,51.99358361292798],[-120.23782523237026,51.99356646048465],[-120.2378276042052,51.99354857867396],[-120.2378299013255,51.99353126013993],[-120.2378322731566,51.99351337832861],[-120.23783464498577,51.99349549651696],[-120.23783686857384,51.993478732318195],[-120.23783924039921,51.99346085050588],[-120.23784161222264,51.99344296869324],[-120.23784398404412,51.99342508688026],[-120.23786089334406,51.993407934429364],[-120.23786326515572,51.9933900526155],[-120.23786556343934,51.993372725137526],[-120.23786793524718,51.99335484332299],[-120.23787090000421,51.993332491054375],[-120.23787327180764,51.99331460923918],[-120.23787564360916,51.99329672742351],[-120.23787801540868,51.99327884560764],[-120.23788038720629,51.9932609637914],[-120.23788275900192,51.99324308197485],[-120.23789951997921,51.993227047129146],[-120.23790189176516,51.9932091653117],[-120.23790426354914,51.99319128349382],[-120.23790663533119,51.99317340167574],[-120.23790900711128,51.993155519857275],[-120.23791123065335,51.993138755652204],[-120.23791360242967,51.99312087383312],[-120.23791597420406,51.9931029920137],[-120.23791834597648,51.99308511019401],[-120.23792071774697,51.99306722837395],[-120.23792308951548,51.99304934655361],[-120.23792546128207,51.9930314647329],[-120.23792783304671,51.99301358291188],[-120.23793020480939,51.992995701090514],[-120.2379325765701,51.99297781926882],[-120.2379205592321,51.992958090479725],[-120.23792278275963,51.99294132627155],[-120.23792530275544,51.99292232683528],[-120.2379276745142,51.99290444501259],[-120.237930046271,51.99288656318955],[-120.2379180289593,51.99286683439851],[-120.23792040071801,51.992848952575144],[-120.23792277247478,51.99283107075144],[-120.23792514422959,51.99281318892736],[-120.23792751598248,51.99279530710303],[-120.23791542398682,51.99277614158765],[-120.23791720280312,51.99276273021917],[-120.23791957455651,51.99274484839415],[-120.2379074090539,51.99272623721376],[-120.23790992904397,51.992707237774276],[-120.23791237550752,51.99268879267112],[-120.23790021002365,51.992670181489025],[-120.23790258177897,51.992652299662964],[-120.23790510176687,51.99263330022238],[-120.23789293630162,51.99261468903867],[-120.23789545629155,51.992595689597835],[-120.23789782804477,51.99257780777058],[-120.23788506965901,51.99256366704202],[-120.23788744141476,51.99254578521463],[-120.23788988669287,51.99252734905028],[-120.23787772126373,51.992508737863204],[-120.23788009301951,51.99249085603516],[-120.23788261300787,51.99247185659244],[-120.23787044759733,51.99245324540378],[-120.23787289406334,51.99243480029733],[-120.23787526581707,51.992416918468194],[-120.23786310042502,51.99239830727782],[-120.23786547218077,51.99238042544833],[-120.23786799216914,51.99236142600417],[-120.23785538209127,51.99234616765527],[-120.23785775384736,51.99232828582509],[-120.23786012560151,51.9923104039947],[-120.23786249735369,51.992292522163844],[-120.23786486910393,51.992274640332745],[-120.2378527037561,51.992256029139035],[-120.23785448257048,51.99224261776541],[-120.23785692784553,51.9922241815969],[-120.23785929959435,51.992206299764845],[-120.2378616713412,51.99218841793248],[-120.23784950601882,51.99216980673704],[-120.2378518777677,51.99215192490431],[-120.23785424951463,51.992134043071204],[-120.23785662125962,51.99211616123788],[-120.23785899300269,51.99209827940422],[-120.2378613647438,51.99208039757009],[-120.23786373648294,51.9920625157358],[-120.23786610822012,51.99204463390104],[-120.2378684799554,51.992026752066025],[-120.2378853887026,51.992009599590844],[-120.23788768690457,51.99199227209183],[-120.23789005862811,51.991974390255564],[-120.2378924303497,51.99195650841901],[-120.23789480206932,51.99193862658201],[-120.23789776671615,51.99191627428547],[-120.23789999019925,51.99189951006269],[-120.23791689888465,51.99188235758097],[-120.23791912235865,51.99186559335734],[-120.23792149406238,51.99184771151844],[-120.2379232728389,51.99183430013913],[-120.2379401814898,51.991817147653045],[-120.23794247847395,51.99179982909096],[-120.2379447019339,51.991783064865615],[-120.23794707362264,51.99176518302499],[-120.23796457515722,51.99174356007394],[-120.23796687331362,51.991726232569384],[-120.23796924499015,51.99170835072746],[-120.23798615357403,51.99169119823273],[-120.23798837701162,51.99167443400499],[-120.2379906004475,51.991657669776934],[-120.23800750900325,51.99164051727843],[-120.23801047357192,51.99161816497315],[-120.23802671448615,51.99160604621035],[-120.23802893790379,51.99158928198063],[-120.23803130954735,51.99157140013521],[-120.23804814453293,51.99155480196667],[-120.23805051616672,51.991536920120346],[-120.23805288779859,51.991519038273665],[-120.23807024095527,51.99149853291754],[-120.23807246435064,51.99148176868534],[-120.23808937280587,51.991464616172195],[-120.23809166971208,51.991447297601816],[-120.23809389309659,51.99143053336842],[-120.23811020862307,51.99141785131375],[-120.23811309960426,51.99139605333893],[-120.23813000801017,51.99137890081849],[-120.2381323796008,51.99136101896773],[-120.2381346029652,51.99134425473243],[-120.2381513631188,51.99132821982375],[-120.23815373469787,51.991310337971875],[-120.23815603157038,51.99129301939795],[-120.2381733845884,51.99127251402225],[-120.23817575615539,51.99125463216895],[-120.23817812772045,51.99123675031542],[-120.23819496252064,51.99122015212059],[-120.2381967411873,51.99120674072975],[-120.23819911274113,51.991188858874956],[-120.23830173679931,51.99096674699033],[-120.27878046741992,51.991049734228575],[-120.27156432962266,51.964541696200286],[-120.27192496348634,51.9645793787131],[-120.2721557243423,51.96460383756493],[-120.27238641241901,51.96462885032525],[-120.27261768975598,51.964649391879156],[-120.27284837833908,51.96467440371204],[-120.27307906718707,51.9646994150817],[-120.27331034522516,51.96471995524159],[-120.27354103457954,51.96474496568379],[-120.27377231307719,51.96476550491408],[-120.27400359179293,51.96478604367895],[-120.27423428189518,51.96481105272932],[-120.27446511946432,51.96483494362849],[-120.2746818703074,51.964854756271215],[-120.27491314992567,51.96487529320572],[-120.27514384102255,51.96490030042998],[-120.27537512110037,51.964920836434786],[-120.27560588687882,51.964945279416106],[-120.2758365787439,51.96497028524951],[-120.27606785951971,51.96499081986015],[-120.27629855189106,51.96501582476613],[-120.2765292445272,51.96504082920877],[-120.27676052600394,51.96506136242549],[-120.27699121914634,51.965086365940664],[-120.2772219125535,51.965111368992616],[-120.27745319473114,51.96513190081525],[-120.27768388864456,51.96515690293978],[-120.27789961274715,51.96518453335596],[-120.27813089563253,51.965205063814665],[-120.27836159032223,51.96523006457843],[-120.27859184398385,51.965258417957465],[-120.27882253922056,51.96528341779553],[-120.27905323472203,51.9653084171704],[-120.27928334216767,51.96533788685666],[-120.27951403822196,51.96536288530614],[-120.27974414626699,51.96539235406929],[-120.27995979872213,51.965420543933945],[-120.28018990737317,51.965450011803775],[-120.28042001633551,51.96547947921254],[-120.28064953742641,51.96551341694129],[-120.28088038223383,51.965537294951446],[-120.28109537507476,51.96557050784241],[-120.2813249712737,51.965603880902144],[-120.28155449372487,51.965637816821435],[-120.28178460460205,51.96566728149552],[-120.28201412774523,51.96570121649588],[-120.2822286812415,51.965737780354296],[-120.2824587931026,51.96576724367719],[-120.28268846429187,51.96580005963176],[-120.28291740088419,51.965838463615924],[-120.2831318088312,51.96587614348317],[-120.28336140702486,51.96590952141077],[-120.28359093267234,51.96594345325769],[-120.28381987081364,51.9659818554409],[-120.28403442720739,51.96601841592219],[-120.28426336613353,51.96605681722025],[-120.28449237952556,51.966094654740814],[-120.28472131925598,51.9661330551249],[-120.2849358771508,51.96616961392001],[-120.28516481766601,51.96620801341887],[-120.28539390551124,51.966245294760185],[-120.28560772991777,51.96628744080143],[-120.28583674451431,51.96632528457945],[-120.28606568664154,51.96636368228015],[-120.28627951227898,51.96640582706819],[-120.2865080145241,51.96644757699042],[-120.28673644434829,51.96648988083752],[-120.28695027125396,51.96653202437412],[-120.28717936233073,51.96656930214913],[-120.28740786629557,51.96661105027795],[-120.28762169444542,51.96665319256201],[-120.28785012525418,51.96669550313158],[-120.28806454168472,51.966733173776255],[-120.28829231308787,51.96678050865969],[-120.28852081922695,51.966822254569934],[-120.28873472349875,51.96686383145452],[-120.28896264315028,51.96691004730097],[-120.28917706159865,51.966947715864926],[-120.28940498215827,51.96699393083163],[-120.2896188869422,51.967035515007424],[-120.28984666161479,51.967082846800686],[-120.29007517082898,51.96712458961232],[-120.29028900407936,51.96716672691933],[-120.2905174413454,51.967209023231526],[-120.2907308350592,51.967254512832575],[-120.29095875887205,51.9673007247084],[-120.29118712351305,51.967343583009885],[-120.29140103171476,51.96738516385915],[-120.29162881015155,51.96743249210913],[-120.29184279318098,51.96747350880909],[-120.29207064652635,51.967520272856],[-120.29228389663233,51.96756687727158],[-120.29251182372674,51.96761308605752],[-120.29272580847454,51.96765410110861],[-120.2929535897566,51.967701426724204],[-120.29316691447295,51.96774747511199],[-120.29339484344881,51.96779368214111],[-120.29360817025704,51.96783972076513],[-120.29383654032968,51.96788257378695],[-120.2940493539679,51.96793252804417],[-120.29427728484787,51.967978733317395],[-120.29450506951265,51.96802605584753],[-120.29471781068486,51.96807657218801],[-120.2949312130337,51.96812205396274],[-120.29515848635641,51.96817328271052],[-120.29537232967034,51.96821541052968],[-120.29559982341925,51.968264966305135],[-120.29581249428118,51.96831603499555],[-120.29602523838548,51.968366548905465],[-120.29625317363181,51.96841275024619],[-120.29646591989258,51.968463254395026],[-120.2966932695355,51.968513925709935],[-120.29690667608901,51.968559403802615],[-120.29711942265048,51.96860991567824],[-120.29734604067916,51.968666174262594],[-120.29755893606712,51.968715558665565],[-120.2977717580426,51.968765506000175],[-120.29799852433479,51.968820645577615],[-120.29821127343801,51.96887115542251],[-120.29842351051681,51.968925572402],[-120.29863567541426,51.9689805433739],[-120.29886303028042,51.96903121037787],[-120.29907468261298,51.96909009700855],[-120.29928684796073,51.96914507571335],[-120.299498575293,51.969203398229645],[-120.29971022932125,51.96926228368215],[-120.29992195661745,51.96932061435504],[-120.30013302555203,51.96938396988801],[-120.30034402240992,51.96944787941762],[-120.30055523912337,51.96951011645242],[-120.30075126583414,51.969576665861105],[-120.30096226453229,51.96964057424612],[-120.30117289693021,51.96970728100476],[-120.30138345612306,51.969774550703605],[-120.30157948646111,51.96984108974406],[-120.30179004692855,51.96990835869086],[-120.30200002316651,51.96998008917921],[-120.30219554200654,51.97005054364207],[-120.30240595793464,51.97011892916763],[-120.30260140539119,51.97018993732061],[-120.3028120429553,51.97025664104627],[-120.3030220213829,51.970328378589436],[-120.30321703133387,51.970402738840654],[-120.30341291964918,51.970470401381505],[-120.30362290126843,51.97054212887268],[-120.30381849790403,51.97061202615395],[-120.30402789502052,51.97068822377629],[-120.30422283448425,51.970763145630194],[-120.30441718880313,51.97084253803058],[-120.30461103067262,51.97092584658992],[-120.30480531378845,51.971005792712646],[-120.30499974288561,51.97108462972272],[-120.30519300237773,51.971172399225374],[-120.30538743292013,51.971251235568765],[-120.30558127963516,51.971334533521954],[-120.30577563897911,51.97141392358799],[-120.30597058469627,51.9714888424332],[-120.30616494543821,51.97156823183079],[-120.30636047814225,51.97163867911791],[-120.3065709082796,51.97170705693121],[-120.30678221862662,51.97176871907867],[-120.30697936353495,51.97182687035479],[-120.30719096664265,51.971886305241654],[-120.3074178348774,51.97194086276922],[-120.30763068391262,51.971990791724295],[-120.30784353343577,51.9720407202833],[-120.30807076861737,51.97209248667808],[-120.30828413081294,51.972138506855174],[-120.30851253785467,51.972181330581],[-120.30874109169305,51.97222303612708],[-120.3089550417758,51.97226457521489],[-120.30918345013815,51.972307397603934],[-120.30941302959546,51.97234127773565],[-120.30964202411009,51.97237962831028],[-120.30987175062393,51.97241238979894],[-120.31010191642343,51.972441797649715],[-120.31033208253373,51.972471205039255],[-120.31054771724226,51.97249989177464],[-120.31077861544196,51.97252370963656],[-120.31100936760375,51.97254864476172],[-120.31124012002967,51.972573579423454],[-120.3114714578348,51.97259404271128],[-120.3117027958573,51.972614505533436],[-120.31193413409713,51.9726349678901],[-120.31216664264318,51.97264648795327],[-120.31239856629152,51.972662478461565],[-120.31263049011014,51.97267846850211],[-120.31286358404586,51.97268551624011],[-120.3130960931075,51.97269703442437],[-120.31332918721792,51.97270408121897],[-120.31356228140373,51.9727111275412],[-120.31379537566497,51.97271817339117],[-120.31402963970993,51.97271627692246],[-120.31426331890445,51.972718850901124],[-120.31449758293266,51.97271695347955],[-120.31473126215847,51.97271952650766],[-120.31496552616991,51.97271762813325],[-120.31518642777058,51.97270606781663],[-120.31542251832671,51.972690201328916],[-120.31564531990205,51.97266410960696],[-120.3158831652216,51.972634820436404],[-120.31610757399586,51.972596432752],[-120.3163322746824,51.97255580916078],[-120.3165572672458,51.972512949660825],[-120.31678174728462,51.97247400626119],[-120.31700637422736,51.97243393574539],[-120.3172296119343,51.97240448774478],[-120.31746752724854,51.9723746408955],[-120.31769091045818,51.97234407426271],[-120.31792867901424,51.972315344194065],[-120.31815140353342,51.972289810949306],[-120.31837405532562,51.97226483167022],[-120.31861196909293,51.97223498245061],[-120.31883527832339,51.972204967989754],[-120.31907246103617,51.97218070650348],[-120.31929525781905,51.97215460770143],[-120.31951863861772,51.97212403751395],[-120.31975647721521,51.97209474926403],[-120.31998029555915,51.972060824962476],[-120.32020425960722,51.972025782485154],[-120.3204281508557,51.97199129396972],[-120.32065284439106,51.97195066191858],[-120.3208773178705,51.97191171050858],[-120.32108740646908,51.971870913114834],[-120.32131253683956,51.97182692654918],[-120.32153766675539,51.97178293954134],[-120.3217627226266,51.971739515433015],[-120.3219885092465,51.97169049323134],[-120.32219983615596,51.9716401974627],[-120.32242547460692,51.971592301083454],[-120.3226373120799,51.971538087936786],[-120.32284922143323,51.97148331999689],[-120.3230755882431,51.9714298336198],[-120.32328800800273,51.97137114829309],[-120.3234998421591,51.97131694248971],[-120.32371240675688,51.97125713862928],[-120.32392540746686,51.97119399008049],[-120.32413782493161,51.97113530317254],[-120.3243358551348,51.97107478861366],[-120.3245490011548,51.97101051221278],[-120.3247619994461,51.970947362101434],[-120.32497514421381,51.9708830849039],[-120.32517302618604,51.97082368663727],[-120.3253861697421,51.97075940867131],[-120.32559931150192,51.97069513924885],[-120.32581245380001,51.97063086048591],[-120.32601091708037,51.970566989773644],[-120.32622464171683,51.97049823924725],[-120.32643712505156,51.970438993655165],[-120.32663631595284,51.97036953310922],[-120.32684989275707,51.97030189915865],[-120.32704849888881,51.97023690888864],[-120.32724783492395,51.97016632057993],[-120.32746199205587,51.97009422342256],[-120.32766059749446,51.97002922314214],[-120.32787438923013,51.96995991511439],[-120.32807357564911,51.969890452050976],[-120.3282733459529,51.9698165086898],[-120.32847245874683,51.969747599332],[-120.32868675762079,51.96967438211628],[-120.3288860884273,51.969603790934435],[-120.32908578254586,51.9695304094914],[-120.32928569412512,51.96945535553803],[-120.32948553269586,51.96938085563822],[-120.32967091310405,51.969305074259054],[-120.3298711877127,51.96922722041746],[-120.33007109654748,51.96915216507946],[-120.33027093238428,51.96907766379572],[-120.33047142412704,51.96899812779023],[-120.33065658194722,51.9689240259015],[-120.33085648803757,51.968848969178964],[-120.33105690419401,51.96876999548627],[-120.33124286230277,51.968689740508594],[-120.33144327702627,51.96861076613184],[-120.33164369102315,51.96853179140057],[-120.33182906289812,51.9684560154298],[-120.33203005843214,51.96837256898439],[-120.33221543012341,51.968296783438475],[-120.33241584127607,51.96821780734042],[-120.33261683458713,51.968134359852485],[-120.33280278594319,51.968054111250865],[-120.33300261207147,51.967979605150795],[-120.33318914604507,51.967894875933574],[-120.33338969928398,51.967814780351496],[-120.33357557558746,51.96773508488749],[-120.33376145121085,51.967655389117596],[-120.33396251160933,51.967571384828304],[-120.33414838582645,51.96749168842191],[-120.33434886319122,51.96741214554917],[-120.33453546436886,51.9673268596972],[-120.3347358668538,51.967247879490785],[-120.33492173827594,51.96716818181237],[-120.33512221157481,51.967088646511705],[-120.33530808161086,51.96700894819789],[-120.33550862687576,51.96692884886],[-120.3356945689247,51.96684858655781],[-120.3358955496385,51.966765133242035],[-120.33608141687957,51.96668543365629],[-120.33628188583992,51.966605896301225],[-120.33646833416307,51.96652172501921],[-120.33666880282864,51.96644217803644],[-120.33685481288393,51.966361359413],[-120.33705506112175,51.96628349286591],[-120.337241069783,51.96620267360682],[-120.33744138881409,51.966124251964274],[-120.33762681373595,51.96604790313811],[-120.33782786042727,51.96596388303345],[-120.33802766837434,51.96588936806925],[-120.3382141102582,51.965805193905226],[-120.33841457127468,51.96572565277256],[-120.33859984723522,51.96565042011996],[-120.33880089021577,51.96556639828569],[-120.33900069467569,51.96549188160558],[-120.33918655080437,51.96541217691442],[-120.33938686269896,51.96533375183005],[-120.33957286297974,51.96525292873369],[-120.3397727380277,51.965177847335845],[-120.33997297561064,51.96509997562923],[-120.34015897380608,51.96501915156862],[-120.34035870009549,51.96494519585096],[-120.3405597364298,51.96486117089114],[-120.3407451505113,51.96478481695444],[-120.34094538454984,51.96470694352843],[-120.34114590885397,51.9646268342026],[-120.34133110210048,51.96455216043653],[-120.34153155282479,51.96447260484315],[-120.34173192949774,51.96439361225312],[-120.34191777594475,51.96431390307293],[-120.34211822333793,51.964234355382935],[-120.34230406839892,51.96415464556769],[-120.34250393370172,51.964079559352314],[-120.34270430680404,51.964000565041346],[-120.34289014979552,51.96392085426293],[-120.3430900118523,51.96384577595619],[-120.34329096454802,51.96376230950188],[-120.34347629703451,51.96368650550712],[-120.34367608487675,51.96361198058417],[-120.34387703537142,51.9635285130889],[-120.34406221926848,51.963453834854455],[-120.34426273207443,51.96337372000782],[-120.34446317202399,51.96329415922405],[-120.34464886338841,51.963215563333776],[-120.34484879245622,51.963139918564394],[-120.34504966525289,51.96305701234702],[-120.34523506378807,51.962980651053265],[-120.34543608165333,51.96289661742741],[-120.34562118808905,51.96282249106108],[-120.34582169512294,51.962742373452755],[-120.34602198279943,51.962663936632005],[-120.346207959374,51.962583102619234],[-120.34640839213439,51.96250353839106],[-120.34659407662029,51.9624249393064],[-120.34679458003573,51.962344819974305],[-120.34697989923441,51.96226901918314],[-120.34718083720608,51.962185545818656],[-120.34738126636107,51.962105979867616],[-120.34756709271502,51.96202626140144],[-120.34776686594722,51.96195172926556],[-120.34795334423742,51.96186698460736],[-120.34815369728445,51.961787980651636],[-120.34833901291263,51.961712168691676],[-120.3485400910035,51.961627575127025],[-120.34872576791098,51.961548972541095],[-120.34892626337567,51.96146884943209],[-120.34911273734427,51.9613841028586],[-120.34931308606866,51.96130509685008],[-120.34949897868611,51.96122481184275],[-120.34970005227584,51.96114021621432],[-120.34988587026851,51.96106049393495],[-120.35007168758123,51.96098077134975],[-120.35027217795641,51.96090064585495],[-120.35045850163647,51.96081701484604],[-120.35064504303324,51.960731702374744],[-120.35084545917465,51.960652130286505],[-120.35103141821371,51.96057128833332],[-120.35121839309215,51.96048262154523],[-120.3514043507159,51.96040177897715],[-120.35160527160035,51.96031829774762],[-120.351791227805,51.96023745454244],[-120.35197769093146,51.96015270323331],[-120.35216408131694,51.960068506040216],[-120.35235061616984,51.959983190747046],[-120.35255102575377,51.95990361563505],[-120.35273755914316,51.95981829970214],[-120.35292351111323,51.95973745463108],[-120.35311047856347,51.95964878470279],[-120.35329700976656,51.959563467843594],[-120.35349734253276,51.959484454421386],[-120.35368387227494,51.95939913692259],[-120.35387040128667,51.95931381911489],[-120.35405685641663,51.95922906436688],[-120.35424323883363,51.959144863736554],[-120.35442976566165,51.95905954500284],[-120.35463081968658,51.95897494059503],[-120.354816692565,51.95889464683032],[-120.35500379766223,51.95880485596315],[-120.35519017643492,51.95872065376721],[-120.35537611917034,51.95863980465352],[-120.35556249651762,51.95855560184208],[-120.35576296563735,51.95847546660693],[-120.35594999385935,51.958386237537646],[-120.35613651409817,51.9583009159795],[-120.35632230820667,51.95822118310465],[-120.35647563757425,51.95816628492406],[-120.36652532552333,51.95451244915503],[-120.36808017347906,51.95390763258144],[-120.36914423113271,51.953480066695604],[-120.36968868873981,51.953226676535415],[-120.3702053170776,51.95296236139669],[-120.37063250002413,51.95248553697595],[-120.37090595023713,51.95206698215632],[-120.37109867831045,51.95159441253884],[-120.37140053236003,51.95106925767198],[-120.37156868556266,51.95056060029738],[-120.37169246294158,51.95005595751995],[-120.3717381746926,51.94970272451831],[-120.37171241795463,51.949336986389206],[-120.37176732702594,51.948799717057454],[-120.37190100487389,51.948218506559556],[-120.37197201408561,51.947782702682815],[-120.37190609499062,51.947275503409436],[-120.37193284332604,51.94650399250924],[-120.37247895492301,51.94601106491587],[-120.37337760924554,51.94539143482043],[-120.37429646601791,51.94484140956766],[-120.37588778959795,51.94395087103873],[-120.3768904721415,51.94354330204738],[-120.37773721410046,51.94321132718841],[-120.3786260674599,51.94289265925767],[-120.3792811692369,51.942573224096066],[-120.37975122169082,51.942215463262855],[-120.38004356556634,51.94142321791863],[-120.3799574792461,51.94095835051727],[-120.37978670935073,51.940357151320605],[-120.37990601350789,51.93965992060143],[-120.38051811304189,51.938994138718776],[-120.38163045879725,51.93864140289239],[-120.3830867728182,51.938453989408515],[-120.38567303797079,51.93811657408536],[-120.38673820179848,51.93801571310693],[-120.38759632705005,51.93770728621289],[-120.38864596592506,51.93716018328717],[-120.38965753158283,51.936454846874156],[-120.39034820040405,51.93608478224069],[-120.39133795688365,51.93577490194644],[-120.39278668410687,51.93575854498194],[-120.39373215039267,51.935678769089975],[-120.39449692818383,51.93575383415224],[-120.39904708394849,51.93593616394043],[-120.39978888886674,51.93584921069426],[-120.4002925911248,51.93590923120845],[-120.4010909497594,51.93606406688431],[-120.40186503178401,51.93595336111241],[-120.40231180881652,51.93588798965741],[-120.40277303417574,51.935823879497654],[-120.40321980967029,51.93575849556298],[-120.40366945849594,51.93567076123248],[-120.40410487328091,51.935580072034405],[-120.40454251408363,51.935472058492444],[-120.40496620686346,51.935358863457445],[-120.40539061617059,51.93524007743689],[-120.40580222716501,51.935107167055236],[-120.4062279252526,51.934978316967324],[-120.40662630389987,51.93483463451695],[-120.40702539843002,51.9346853612422],[-120.40741111911265,51.93452643549553],[-120.40779712434501,51.934365272659576],[-120.40817018655505,51.93419110386219],[-120.40854338944516,51.93401581593971],[-120.4089027871505,51.93383422954429],[-120.40926261278503,51.93364928832946],[-120.40960798628417,51.933463083781206],[-120.4099674473849,51.933280930552364],[-120.41032798199625,51.93309039646096],[-120.41067341889405,51.93290362520276],[-120.41103265496832,51.93272314986223],[-120.41140705366105,51.932538354803796],[-120.41175305585423,51.932347108638986],[-120.41210027587408,51.93214635483054],[-120.41244749154818,51.93194560888102],[-120.41279470517344,51.93174485290393],[-120.41315578886568,51.931549838104125],[-120.41351514703587,51.93136823689419],[-120.41389966660692,51.9312182320843],[-120.41429640708057,51.93108681944654],[-120.41471902747816,51.93098141331221],[-120.41515372621168,51.93089571690321],[-120.4156010053675,51.93082582191006],[-120.41604656274738,51.93076933103133],[-120.41651979470936,51.930724876622165],[-120.416977358723,51.930688656699964],[-120.41746338732341,51.93065831999514],[-120.41793374846358,51.93063621780211],[-120.41840410912688,51.93061411368368],[-120.4188738957755,51.93059647925562],[-120.41934368204411,51.93057884290693],[-120.41979722808206,51.930573913080586],[-120.42026472015527,51.93057415944819],[-120.4207316388867,51.930578875539275],[-120.42119683782073,51.930597004615215],[-120.42166203714157,51.930615131807926],[-120.42214175643367,51.93063396324142],[-120.42260752969727,51.93064761497485],[-120.42307273014441,51.93066573645684],[-120.42353850403882,51.93067938441698],[-120.42400542425055,51.930684087207645],[-120.4244596870627,51.93067354943152],[-120.42492904221254,51.93065924398629],[-120.42538545280797,51.93063193387964],[-120.42585759914024,51.930595829829166],[-120.4263157268132,51.930555101074944],[-120.4267757149912,51.93049983761315],[-120.4272356309911,51.930445126793316],[-120.42769733473386,51.930376444663025],[-120.42815968060405,51.93030273452464],[-120.42859484768991,51.930213070051956],[-120.42903058433114,51.930118941199666],[-120.42946753610697,51.93001530391569],[-120.42987802266855,51.929890132142084],[-120.43027692135117,51.929741331983145],[-120.43066551818936,51.9295588512171],[-120.43101255681604,51.92935860322217],[-120.43134650361274,51.9291464699749],[-120.4316378910053,51.92892439550192],[-120.43185832438557,51.928685944153735],[-120.43202318306604,51.928425104727694],[-120.43213261082657,51.928140759524574],[-120.43222844747991,51.92784844726709],[-120.43233801434002,51.927562992744186],[-120.43247568794493,51.92728620972312],[-120.4326135028226,51.92700830854522],[-120.4327521740396,51.92672369958424],[-120.43291880816268,51.92644887988603],[-120.43311233052228,51.92619224719604],[-120.43334726138148,51.92595448821532],[-120.43366615157598,51.92574556009698],[-120.43405405579296,51.92556809343397],[-120.43448000615602,51.92543578385994],[-120.43491503962883,51.925346658509575],[-120.43536115866965,51.92528506627452],[-120.43582057895794,51.92523368358267],[-120.4362775696581,51.925201294933636],[-120.43674900565499,51.925170172185894],[-120.43721929780904,51.92514799096031],[-120.43768901794803,51.92513027954035],[-120.4381575947287,51.925121509666766],[-120.43862674276114,51.92510826614679],[-120.43909589050864,51.92509502071134],[-120.43955051995353,51.925081069434135],[-120.44001923865513,51.925071174034166],[-120.4404878143318,51.925062394658504],[-120.44095653261994,51.9250524954353],[-120.44142510790714,51.92504371223772],[-120.44187745164821,51.925047638753234],[-120.44234488458159,51.92504779530922],[-120.44281231751827,51.92504794996386],[-120.44327803757079,51.92506151799395],[-120.44374432882812,51.925070612375336],[-120.44421004941253,51.92508417662806],[-120.44467527024848,51.9251016562599],[-120.445139849909,51.92512416027525],[-120.44560493000425,51.92514274514143],[-120.44606893990435,51.92516971716996],[-120.4465474685471,51.925197390368474],[-120.44701033844733,51.9252333021435],[-120.44747263857461,51.92527368383192],[-120.44793436906951,51.925318535440155],[-120.44838051210856,51.9253710714459],[-120.44883996298033,51.92543380654299],[-120.44928340025622,51.92550757107234],[-120.44972576913383,51.92558972296186],[-120.45016336314164,51.92570932886059],[-120.45058444646371,51.925843872877905],[-120.4509882336661,51.92599951732111],[-120.45134490461925,51.92618100174049],[-120.45168506448982,51.9263774339159],[-120.45197967596505,51.926587409277666],[-120.45227265077608,51.92681024473274],[-120.45254961392554,51.92704411111026],[-120.45281149106903,51.927281746320176],[-120.45305792635283,51.92752594086506],[-120.45331938168367,51.92776692866451],[-120.45356575074032,51.92801168546268],[-120.45382657005707,51.928257707249365],[-120.45408860392241,51.92849422134622],[-120.45436487516467,51.928733672750454],[-120.4546574503393,51.92895984661084],[-120.45495095393605,51.92917875747722],[-120.45525841039665,51.92940284129427],[-120.45556565578664,51.92962860564214],[-120.45587361766476,51.929848770427036],[-120.45621268714523,51.93005413217116],[-120.45655325463174,51.9302477588631],[-120.45692514498064,51.93042489180954],[-120.45730024176554,51.93057687408383],[-120.45769256675884,51.93070831565779],[-120.45811592789353,51.93082550770361],[-120.45855551999794,51.93092998426688],[-120.45899603896147,51.93102719691419],[-120.45945342951451,51.93110665856489],[-120.4599118180743,51.931178292709426],[-120.46037120439897,51.93124209933736],[-120.46083187286747,51.93129584252723],[-120.46129325396838,51.93134399408872],[-120.46175513466423,51.931388226476656],[-120.46221865190093,51.931419604973634],[-120.462682738861,51.93144650977033],[-120.46314739540266,51.93146894086024],[-120.46361262138379,51.931486898236706],[-120.46407898557564,51.93149591005622],[-120.46454648769188,51.931495976305186],[-120.4650145586272,51.93149156881121],[-120.4654831982374,51.93148268756715],[-120.46595240637791,51.9314693325661],[-120.46640823100698,51.9314463314229],[-120.46687942866252,51.93141732116686],[-120.46733638941527,51.93138537263949],[-120.46779455705763,51.93134392407282],[-120.46825222697466,51.931306382082276],[-120.46871153092432,51.93125597719699],[-120.46917033590442,51.931209487826074],[-120.46962970824619,51.93115852475611],[-120.47008957620146,51.93110365143528],[-120.47054958619678,51.931047649360316],[-120.47101023366302,51.93098661905612],[-120.47145614573859,51.930926568435744],[-120.4719172167329,51.930862180583176],[-120.4723777898868,51.93080169930092],[-120.4728238401895,51.93074052539433],[-120.47328554671842,51.930671096701374],[-120.47373223388055,51.93060488391891],[-120.47417870616867,51.93054035082725],[-120.47464040842061,51.930470916679425],[-120.47508765924496,51.93040022672406],[-120.47553483708603,51.930330098483076],[-120.47598201462401,51.93025995955406],[-120.47644427752856,51.93018605518564],[-120.47689201970803,51.930111440803685],[-120.47733990110373,51.93003571563935],[-120.47778764020687,51.92996109775847],[-120.47823601558103,51.9298814516981],[-120.47868375043187,51.929806839259896],[-120.47913162672185,51.92973109814927],[-120.47957992579626,51.92965201029153],[-120.48002765712603,51.929577383659],[-120.4804759529949,51.92949829229555],[-120.48092424837184,51.929419190234086],[-120.48137211565404,51.92934344931036],[-120.48181984074819,51.929268815675776],[-120.48226763461996,51.92919362577208],[-120.48271599391877,51.92911396218044],[-120.48316435157933,51.929034296834075],[-120.48361206929779,51.928959665141136],[-120.48405992832494,51.92888390476885],[-120.48450820974992,51.92880479762891],[-120.48495592394535,51.92873015174193],[-120.48540420216418,51.928651041096444],[-120.48585191324712,51.92857639170888],[-120.48630032990862,51.928496159568276],[-120.48674803786723,51.92842150667959],[-120.48719645128715,51.92834127103157],[-120.4876447225761,51.92826214267589],[-120.48809249606495,51.928186930010526],[-120.48854083437004,51.928107243624666],[-120.48898860472264,51.928032027457654],[-120.48943686844788,51.927952901034075],[-120.48988470701376,51.92787711789646],[-120.49033353369347,51.92779351598599],[-120.49078122753262,51.92771884733954],[-120.49122891870643,51.927644185888084],[-120.4916773170195,51.92756392375813],[-120.4921250050685,51.927489258805835],[-120.4925738245928,51.927405639173664],[-120.49302165095453,51.92732985271954],[-120.49346990127455,51.92725070157245],[-120.49391772448779,51.92717491161628],[-120.49436597158866,51.92709575696332],[-120.49481372150606,51.92702051803384],[-120.49526252991855,51.926936896810794],[-120.49571034792469,51.926861090904325],[-120.4961585874146,51.9267819381816],[-120.49660640227172,51.926706128773155],[-120.49705463854232,51.92662697254475],[-120.49750287431647,51.926547805618384],[-120.49795110733243,51.926468645882395],[-120.498398915856,51.926392829468185],[-120.49884714565242,51.92631366622643],[-120.4992948097182,51.92623896431814],[-120.4997431776034,51.92615867956303],[-120.50019140368302,51.92607950211784],[-120.5006396982065,51.92599976838622],[-120.50108742604485,51.925924504941484],[-120.50153515233772,51.92584923974731],[-120.50198344203714,51.925769500757646],[-120.50243173009714,51.92568976001362],[-120.5028799453456,51.925610580993634],[-120.5033277364878,51.925534745316405],[-120.50377524256093,51.92546115286144],[-120.50422359532907,51.925380841626705],[-120.50467180414891,51.925301655596535],[-120.50511944784698,51.92522693093246],[-120.50556779460229,51.925146623380954],[-120.50601543517368,51.92507189521646],[-120.50646314420675,51.924996610766556],[-120.50691141612964,51.92491685249357],[-120.50735968641283,51.92483709246639],[-120.50780731960762,51.92476236624566],[-120.50825509347061,51.92468651131201],[-120.50870328783327,51.924607309509724],[-120.50915105854573,51.92453145107447],[-120.50959910864907,51.92445336378921],[-120.51004687622257,51.92437750185315],[-120.51049506415524,51.924298293041026],[-120.51094268757464,51.924223545627676],[-120.51139044932329,51.92414768738513],[-120.51183863358156,51.92406846437276],[-120.51228632225926,51.923993157169804],[-120.51273400939078,51.92391784821772],[-120.51318225875477,51.923838065407644],[-120.51362987171684,51.92376331644094],[-120.51407804795663,51.92368408466764],[-120.51452565780286,51.92360933220146],[-120.51497340813953,51.92353345101294],[-120.51542157844898,51.9234542229279],[-120.51586918476,51.923379456269146],[-120.51631749272207,51.92329910664818],[-120.51677961454224,51.92322503066157],[-120.51721333076574,51.92314453790657],[-120.51767551927657,51.92306990376267],[-120.51812318762315,51.92299457375417],[-120.51855626489417,51.92291911154001],[-120.51900407096376,51.92284266005497],[-120.51901908284393,51.92283943634868],[-120.51946723867108,51.92276019243692],[-120.51991483092247,51.922685409973894],[-120.52036242051285,51.92261063470682],[-120.52081057267384,51.922531376595785],[-120.52125886281316,51.92245100763721],[-120.52170644881915,51.92237621817519],[-120.52215473571263,51.92229584571064],[-120.52260231858988,51.922221052748995],[-120.52304996971232,51.9221457034907],[-120.52349818198581,51.92206588031715],[-120.5239463926186,51.92198605538961],[-120.52439453072257,51.92190679220184],[-120.52484224640502,51.921830872446904],[-120.52528981877617,51.92175607793089],[-120.5257379532003,51.9216768005434],[-120.52618608487039,51.92159753034708],[-120.5266343566285,51.92151713140724],[-120.52708192270642,51.921442329890176],[-120.52753005064899,51.92136304549175],[-120.52797775416651,51.92128712242802],[-120.52841136073496,51.92120714182313],[-120.52885962325387,51.92112674311891],[-120.52930774472203,51.92104745176555],[-120.52975593425397,51.92096760410609],[-120.53020356014977,51.92089222689668],[-120.53065174644648,51.92081237573218],[-120.53109986030252,51.920733086312225],[-120.53154811411646,51.92065266814197],[-120.5319956628947,51.92057784742899],[-120.53244391346138,51.92049742575307],[-120.53289145910982,51.920422601540814],[-120.53333956601251,51.92034329441479],[-120.53378767016228,51.920263994479974],[-120.53423591419886,51.92018356579119],[-120.53468345355219,51.92010873457851],[-120.5351315539715,51.92002942044204],[-120.53557923056435,51.91995346767231],[-120.53602676637452,51.91987862226794],[-120.53647556253645,51.91979372152275],[-120.53692309516924,51.91971887261669],[-120.53737125710435,51.91963899516069],[-120.53781885620083,51.91956358819727],[-120.53826645374956,51.919488179485235],[-120.53871510125812,51.91940438802571],[-120.53916276631657,51.91932841230786],[-120.53961084945043,51.91924908959311],[-120.54005837111393,51.91917422843964],[-120.54050589011932,51.91909937448271],[-120.54095354892759,51.919023391767354],[-120.54140218649259,51.918939589781466],[-120.54184970190569,51.918864721630776],[-120.54229728531271,51.91878929717035],[-120.54274486717172,51.918713870961305],[-120.54319244748268,51.91863844300387],[-120.54364051619893,51.91855910452632],[-120.5440881640009,51.918483109562324],[-120.54453566899853,51.91840823986457],[-120.54498331369243,51.91833224140289],[-120.54544519294483,51.91825917683428],[-120.54589325478763,51.91817982060082],[-120.54634089365102,51.91810382577918],[-120.54678783175287,51.9180334106342],[-120.54723539808883,51.91795796688256],[-120.54768345245984,51.91787861259142],[-120.54813052611574,51.91780707413412],[-120.54859239453444,51.91773399688039],[-120.54903946521722,51.91766245487719],[-120.54948695329497,51.91758756584125],[-120.54993444095592,51.91751266611307],[-120.55038199650535,51.917437210069764],[-120.55082892013223,51.91736678810859],[-120.55127654317066,51.917290765059015],[-120.55173840085081,51.91721767512553],[-120.5521853211576,51.91714723893005],[-120.55263293845941,51.917071219525965],[-120.55307985582098,51.91700077984175],[-120.55352740067622,51.916925311512166],[-120.55398939059077,51.91685109442326],[-120.5544364433706,51.91677953136457],[-120.55488377327006,51.91670573933618],[-120.55533124261564,51.91663081853081],[-120.55577828981757,51.91655925918184],[-120.55622575612392,51.916484334883],[-120.5566872480162,51.91641401574971],[-120.55713415097759,51.91634356919914],[-120.55758217187058,51.91626416724991],[-120.5580290718513,51.916193717209076],[-120.55847653054127,51.91611878412022],[-120.5592969013895,51.91598113092819],[-120.55922880202529,51.888717134259544],[-120.56069999961424,51.888344951247845],[-120.56131792729667,51.88811502232102],[-120.56163787979526,51.887919322030534],[-120.56201927662585,51.88774284122163],[-120.56249189870675,51.887595432578806],[-120.56302708701877,51.88734132359522],[-120.56350660956254,51.88709470305792],[-120.56394930108199,51.88686544510803],[-120.56443843626167,51.88673175154856],[-120.56502598091335,51.88661340434015],[-120.56549188495602,51.88646116664125],[-120.56609267106174,51.88616348340173],[-120.5667279005063,51.88579432227951],[-120.56709258600749,51.88553211118353],[-120.56753482107734,51.885262337374904],[-120.56838168552902,51.884731674120644],[-120.56846565418635,51.884701912303036],[-120.56884002324209,51.88455207162153],[-120.5691062927688,51.88444996898532],[-120.56945046488933,51.88436674651274],[-120.5700383870843,51.884288884092996],[-120.57064108872538,51.88418022637702],[-120.57118268613269,51.884020306736055],[-120.57154190721535,51.88387479697713],[-120.57188417877427,51.88373354903553],[-120.57200622004832,51.88369096687666],[-120.57243285808276,51.88344348981922],[-120.57289093286677,51.88313395721907],[-120.57322593039451,51.88293387477189],[-120.57368497870323,51.882660368086],[-120.57442462455617,51.88225731491808],[-120.57507361650094,51.88193768560869],[-120.5753178840244,51.88182159803956],[-120.5757743352308,51.881583394613166],[-120.5761635573186,51.881357753264936],[-120.57670581146856,51.88098694854316],[-120.57707924550348,51.88069757195153],[-120.57741534235309,51.880327137832964],[-120.57766755043203,51.87998590779567],[-120.57784294519041,51.87977825965504],[-120.57804070536939,51.87950811771145],[-120.57820853947655,51.87921463141845],[-120.57832973890416,51.878988113721235],[-120.57850641751169,51.878667485083604],[-120.57865995771195,51.878400882303666],[-120.57873626218536,51.87822734277103],[-120.57885032922223,51.87795549764825],[-120.57899492586051,51.87764347282921],[-120.57923183140876,51.877293084728414],[-120.57942246347316,51.87703610028914],[-120.57952101953137,51.876903545761444],[-120.57976518844008,51.876611986655206],[-120.57986463726584,51.876442915701695],[-120.57993382442916,51.876282544546534],[-120.58005592129356,51.8760779955573],[-120.58017739173673,51.87587847363218],[-120.58027601186915,51.875745363713676],[-120.58066664162858,51.875375809885504],[-120.58120699176027,51.87506338343006],[-120.5818096626914,51.874733666119546],[-120.58229063879546,51.874370630117625],[-120.58265624745097,51.874099421635144],[-120.58310600610763,51.873649993381605],[-120.58319859716698,51.87330120501676],[-120.58314552614006,51.87293596381187],[-120.58284108228257,51.872524535043965],[-120.58293870055986,51.872193980078734],[-120.5835032826738,51.8717741579735],[-120.58385559037666,51.87144833913862],[-120.5840378820694,51.87121401541161],[-120.58427362733106,51.87093103876482],[-120.58452553028998,51.8704593120793],[-120.5845497353731,51.87001506083698],[-120.58399145885126,51.86978283775182],[-120.58380808192203,51.86958577768279],[-120.58382301476168,51.86928955293335],[-120.58393033288328,51.869012876111555],[-120.58400671893504,51.86879435670237],[-120.58422829150636,51.86865467650789],[-120.58445769389377,51.86856936257445],[-120.58478528582457,51.86854491842571],[-120.58530501483209,51.86851494403328],[-120.58557849615157,51.86847106856453],[-120.5857080237346,51.8684558214831],[-120.58605255281093,51.86842711760085],[-120.58616687707618,51.86840215349877],[-120.58740947969865,51.868468195617325],[-120.58803583129537,51.868489919417634],[-120.58869836073364,51.86849928531033],[-120.58891280641707,51.868490295994405],[-120.58946273504266,51.868613568477805],[-120.5896520939985,51.868747916260475],[-120.5896602924558,51.868946256282335],[-120.58972221981969,51.869225865326435],[-120.59030873284738,51.86953924897719],[-120.59078896144254,51.86966597067964],[-120.59105741325816,51.869721387624516],[-120.59136873044572,51.86975464183224],[-120.59162171900569,51.869831821789575],[-120.59174295857602,51.86994214602677],[-120.59175796197533,51.87042368002148],[-120.59193371109001,51.871079253787585],[-120.59262097731073,51.87166843876211],[-120.59308600031571,51.87206492309468],[-120.59382626288001,51.87240353770645],[-120.59429825172528,51.87255290586494],[-120.59465871636282,51.87264583909113],[-120.59485635025572,51.87269902889369],[-120.59539740470744,51.87289439042946],[-120.59643619796545,51.87304630396675],[-120.59648883038618,51.87303360749181],[-120.596641343666,51.8730683527029],[-120.5972587808184,51.87310366573234],[-120.5975723315429,51.87338388699539],[-120.59828149102138,51.87354722976134],[-120.59886871765592,51.874179457732005],[-120.59949543269161,51.87455204267922],[-120.59999953182633,51.8746927764397],[-120.60024279482619,51.87476047883551],[-120.60127998697024,51.874925766459405],[-120.6013953256222,51.87493682550571],[-120.60179877056692,51.875021637543796],[-120.60216445940712,51.87514627433937],[-120.6028441017538,51.87547466161941],[-120.60357022754232,51.87584009088769],[-120.60450004935754,51.876210051887114],[-120.60534742943956,51.87646534346292],[-120.60593418300546,51.8765132165485],[-120.60665878600496,51.87647872475947],[-120.60734684895874,51.876371085332515],[-120.60765958011851,51.8763638786135],[-120.60798672141823,51.87640232835651],[-120.60849785264111,51.876412887916985],[-120.60849788943656,51.87630941714006],[-120.60849695105769,51.87606643748543],[-120.60849770218226,51.87464541611851],[-120.60860516796734,51.87466115400687],[-120.60871933133741,51.87468171480037],[-120.60883411788255,51.874697239142186],[-120.60894047724608,51.87472192225339],[-120.60905464093297,51.874742482712215],[-120.60916155384459,51.87476269284795],[-120.6092757874582,51.87478268951704],[-120.60939121117116,51.874807807724764],[-120.6094968646775,51.87482345946362],[-120.60961235833719,51.874848013878776],[-120.6097174576561,51.8748681471314],[-120.60983398944741,51.87488431040174],[-120.60994822368717,51.87490430639942],[-120.61006238832545,51.874924865852634],[-120.61016804235562,51.87494051697196],[-120.61028283009622,51.874956039861516],[-120.61039699502734,51.87497659898093],[-120.61051248959835,51.875001152486966],[-120.61061940381816,51.87502136126001],[-120.6107257638742,51.87504605165524],[-120.61083157201084,51.8750752057827],[-120.61093138700139,51.87510858567085],[-120.61103065012433,51.87514642930332],[-120.61113055051175,51.8751938672593],[-120.61121413392532,51.87524053757564],[-120.6113050381952,51.87528699433333],[-120.61138256122106,51.87533843607943],[-120.61144998169976,51.875397842305006],[-120.61151969878499,51.87545342455798],[-120.61157979891375,51.87551304421073],[-120.61164841021098,51.875577571936795],[-120.61171819752164,51.8756325904902],[-120.61179335555194,51.87568841944614],[-120.61187094844384,51.875739306219394],[-120.61195342761279,51.87579492153287],[-120.61203882610437,51.87584167649553],[-120.6121218587048,51.87589281890342],[-120.61220489149977,51.87594396124889],[-120.61229754276992,51.87599105708394],[-120.61238844975522,51.876037512952415],[-120.61247928836322,51.87608452337183],[-120.61257981512688,51.87612692367566],[-120.61267782079616,51.87616021675189],[-120.61278529181635,51.87617595070515],[-120.61289915267788,51.87616950010467],[-120.61302869354928,51.87615422229364],[-120.61314372983198,51.876138262313205],[-120.6132499408149,51.87614943779505],[-120.6133202142971,51.87620054613293],[-120.61335028771668,51.87628181355377],[-120.61330307417693,51.87633920244017],[-120.6132279732697,51.87640090351197],[-120.61325057145856,51.8764688809625],[-120.61328175076075,51.87654120281631],[-120.61327471721083,51.87661285259062],[-120.61325122764211,51.876684853295465],[-120.61323512857858,51.876756076801584],[-120.61322802524924,51.8768282901298],[-120.61323611890832,51.87689558554347],[-120.6132654157264,51.87696838569317],[-120.61330440072759,51.87703657573153],[-120.61334944773981,51.877099985150345],[-120.61339568541169,51.87716851614806],[-120.61345704956112,51.877232701701864],[-120.61350983267592,51.8772925428278],[-120.61357907218023,51.87735203294633],[-120.61364043796296,51.87741620944598],[-120.61370834794114,51.877471705024405],[-120.61378539335992,51.877527063203544],[-120.61385275193223,51.877587022526605],[-120.61393035059872,51.8776379078215],[-120.6140055138042,51.87769374417471],[-120.61408855223077,51.87774488507543],[-120.61416615145268,51.87779577020375],[-120.61425045056592,51.877851469001314],[-120.61432623702818,51.877902268781256],[-120.61438815750091,51.87796197206745],[-120.61444165028955,51.87803084352368],[-120.61448607751547,51.87809928879298],[-120.61454019197996,51.8781631327877],[-120.61457918003909,51.87823132232046],[-120.61461635506512,51.878299426606354],[-120.61464620902939,51.87836774458488],[-120.61465430405427,51.87843504875181],[-120.61459322360471,51.87850134164352],[-120.61453214186407,51.87856764344439],[-120.61454016820159,51.87863550223216],[-120.61456354569086,51.8787119554552],[-120.61460136011503,51.878789645132045],[-120.6146614679392,51.878849271939345],[-120.61471456752858,51.87887706893617],[-120.61471547038116,51.878013915103956],[-120.61514276132284,51.87774382896517],[-120.6154246296092,51.87763223630207],[-120.6157224169975,51.87753938622108],[-120.6160206005749,51.87742855898241],[-120.61611210435835,51.87732263944411],[-120.61621857960435,51.877198861504624],[-120.61642503332169,51.877121962092254],[-120.61679886137027,51.877004007592284],[-120.617096641551,51.876911153894106],[-120.61733154919733,51.87678103793899],[-120.61767503143845,51.87659867239459],[-120.61825640463633,51.8763948564547],[-120.61854511216468,51.87630157308703],[-120.61882728913714,51.876172559092815],[-120.6189799271319,51.876058820119496],[-120.61922436869938,51.8758661749175],[-120.61945351272,51.87570879182502],[-120.61966745586118,51.875497276217054],[-120.61988131383316,51.87533074380597],[-120.62005568814534,51.87526245408281],[-120.62022328821337,51.875130863455816],[-120.62033022364733,51.874944130325666],[-120.62043084645353,51.874838069231814],[-120.62070386105964,51.87475360842468],[-120.62101659901607,51.8745984653374],[-120.62127739794165,51.874450438188866],[-120.62154427347386,51.87431226014992],[-120.62179553931364,51.87418234620936],[-120.62200961588475,51.87408780056059],[-120.62205515959681,51.874043826483394],[-120.62263489429547,51.873749380762504],[-120.62281800832562,51.87365450501977],[-120.62322967491215,51.873554610988265],[-120.62348881319257,51.873479048120736],[-120.62375629537806,51.87343930839517],[-120.62417654989866,51.87340279656116],[-120.62451896409465,51.87334688500509],[-120.62479487892273,51.87325354478245],[-120.625015015151,51.87321326315389],[-120.62509230056143,51.87313366278215],[-120.62547362436936,51.8728805050878],[-120.62566365533195,51.8728033868155],[-120.62599196106109,51.87268438479473],[-120.62613645219722,51.87265124142176],[-120.62634396999394,51.87256537813669],[-120.62668550011192,51.87238345453462],[-120.6270137998987,51.872264449546364],[-120.62726574775319,51.87214355416066],[-120.62750980764474,51.871968303564536],[-120.62779161250616,51.87181225976112],[-120.62841745545607,51.871483393178345],[-120.62861589873941,51.871397100635065],[-120.62885184379418,51.8712580236551],[-120.62912749128421,51.87109268174677],[-120.62939392956056,51.870972461569174],[-120.62222336309225,51.870966702447966],[-120.62223845725313,51.8637367559736],[-120.61175570394924,51.86366356334524],[-120.60791070078895,51.86363500307547],[-120.599998880954,51.863734611748995],[-120.59907466845488,51.86373377033149],[-120.58842497494284,51.86374055060043],[-120.58741836708133,51.863742470345464],[-120.57569841660062,51.863748654505244],[-120.5756919848216,51.86888396369627],[-120.57568331601274,51.869656822049365],[-120.57568398110735,51.87096999135197],[-120.57597374313008,51.870971340637254],[-120.57621072538764,51.87097188164477],[-120.57610998998801,51.87129778694622],[-120.57592737282931,51.87179808249343],[-120.57563882724763,51.87253406603263],[-120.57536296395907,51.87297764890532],[-120.57510451121215,51.87335457104699],[-120.57487597207191,51.873754837414154],[-120.57476076365907,51.87397714643854],[-120.574560781948,51.87426516553784],[-120.57431855774287,51.874628799962935],[-120.5740743172184,51.87503788609573],[-120.57389892357995,51.87524552935564],[-120.57364676091855,51.87546921451486],[-120.57323501690436,51.87586136669617],[-120.57302098969869,51.876481651494316],[-120.57286744241668,51.87686522154665],[-120.57279934139369,51.87701665213301],[-120.57273835131485,51.87715491363388],[-120.57260018337179,51.877385688887],[-120.57241844284538,51.877688074892134],[-120.57226583964817,51.8779322206986],[-120.5720898778866,51.87820282034475],[-120.57192241312515,51.8784198346567],[-120.57177669266744,51.87856477070088],[-120.57159380131546,51.8787006389987],[-120.5712123889361,51.87892213647751],[-120.57108283315168,51.878995854122905],[-120.57083926110742,51.879062476967675],[-120.5704411642865,51.87919826777003],[-120.56966429257773,51.879578161049146],[-120.5691151656513,51.87998910002527],[-120.56879349649407,51.88024322358228],[-120.56851205422957,51.88040871589818],[-120.56803060485171,51.88056922404844],[-120.56760319531811,51.88069124390873],[-120.56716232097408,51.88073107512671],[-120.56677158911879,51.880822204608414],[-120.56596376012827,51.88108420017541],[-120.56536018308434,51.88134632334164],[-120.5650414804683,51.88153253549671],[-120.56471203511622,51.88174635596129],[-120.56391114623827,51.88215713446379],[-120.56371273556398,51.88225625432268],[-120.56334624635295,51.88245988252398],[-120.56318751557885,51.88253333252663],[-120.56272198661036,51.882828978788055],[-120.56244671411767,51.882944703621966],[-120.56205023164236,51.88306703837676],[-120.56132421376391,51.88327215032187],[-120.5605701416977,51.88358502710081],[-120.56030957325369,51.88371437543922],[-120.55920031182822,51.8843736757376],[-120.55912583551252,51.87575393809824],[-120.55773533570282,51.67305372090504],[-120.55687506925395,51.47813767125371],[-120.55989551129508,51.48025214268191],[-120.56115895821884,51.48441677711876],[-120.56161146428654,51.48812452219791],[-120.56187809600704,51.49017835142679],[-120.56543143478433,51.49348941772516],[-120.5733950989554,51.49669674599667],[-120.58154255946117,51.49818682682708],[-120.58859769236412,51.49938909788402],[-120.59471550932494,51.50127648448422],[-120.59864927397851,51.50481425205494],[-120.59956385647115,51.50584784290313],[-120.6033239920769,51.50727095842774],[-120.6114715479663,51.50642194688169],[-120.62045497272982,51.50488628153334],[-120.62320294765165,51.50489041986656],[-120.631168161691,51.50540791519946],[-120.63831197497674,51.50495170967057],[-120.64087762791843,51.50455247619428],[-120.64435753146988,51.50329740194145],[-120.64995023577481,51.502270040946804],[-120.65096007535831,51.501816412149516],[-120.65608997948604,51.49947653892675],[-120.6602126464698,51.494112237438166],[-120.66451034167589,51.4892037904649],[-120.66662657071466,51.48749248556274],[-120.67082676989243,51.486241259575664],[-120.67468137101265,51.48509574546683],[-120.67852482526436,51.484638105892124],[-120.68237260900766,51.48498100416701],[-120.68566281161058,51.48515252867596],[-120.69307942961942,51.48383787412372],[-120.69884310007765,51.48303901295548],[-120.70863656795093,51.482749544729835],[-120.71550551747981,51.4818916882177],[-120.7200818148896,51.48086155083558],[-120.72236790780867,51.48012188643056],[-120.72283078084382,51.47578127856134],[-120.72547658081197,51.470471140978646],[-120.72784951656021,51.46876005819285],[-120.73188374487877,51.466932021334394],[-120.73709148780912,51.46555934629952],[-120.73992388640819,51.464471213708734],[-120.74076034924126,51.46424336998058],[-120.7439552710701,51.462417087490294],[-120.74569441791094,51.461042482663416],[-120.74971501482509,51.46052720520926],[-120.7519995877525,51.460756090230255],[-120.75795656582936,51.46217895757108],[-120.7631648053314,51.46297520949512],[-120.76692944201561,51.46291042349161],[-120.77295889039566,51.46336385758021],[-120.78101451581792,51.461475826692414],[-120.78549406306563,51.45964342612359],[-120.7923549949234,51.45758441896155],[-120.7974653150413,51.45615231697059],[-120.80066178302918,51.454775725189435],[-120.8054221537443,51.45385540058354],[-120.81109731823467,51.453506010036946],[-120.81410752872632,51.454072815551655],[-120.81722584145614,51.45458092410387],[-120.82014727864293,51.453325112138565],[-120.8239901080187,51.452462813787264],[-120.82773321040929,51.45183318754923],[-120.82846524251447,51.44965952506176],[-120.82817582951584,51.445606267233494],[-120.82917453003543,51.44263650744486],[-120.8323603528857,51.439610073665946],[-120.83354647466592,51.43823942926221],[-120.83683752987687,51.43566482294312],[-120.83910208507358,51.432235733601175],[-120.84148655638869,51.43086162986173],[-120.84403520091357,51.42857702960513],[-120.84676404876757,51.42697101032608],[-120.85334391221423,51.424280521305896],[-120.86265700913614,51.419930075766814],[-120.86530389672342,51.41814951225785],[-120.869666766334,51.41414900787715],[-120.87441368961342,51.41180243394979],[-120.87998324139886,51.41081683207095],[-120.88683849999536,51.41006559092779],[-120.88912068657496,51.4095493045733],[-120.89230702108586,51.40783018581483],[-120.89668952091937,51.40661986705435],[-120.90280987548772,51.40535203596405],[-120.90645591614584,51.40414198387652],[-120.91083623447754,51.40219371408719],[-120.91768115332312,51.40063820787361],[-120.92480512681581,51.399536304011555],[-120.9292727940098,51.39907438417383],[-120.9349428535601,51.39894444405433],[-120.93932183109688,51.39950456802496],[-120.94225130240473,51.400125233790476],[-120.94509532327476,51.40149170121699],[-120.94721073342984,51.40342624751812],[-120.95205907285107,51.40455400080064],[-120.95581075303754,51.40455010043803],[-120.95999540587685,51.40328306874693],[-120.960821012084,51.402876052270315],[-120.96310867483959,51.402299517444625],[-120.96657173834194,51.40229425453044],[-120.97122782827402,51.40182162295226],[-120.97396130260731,51.399990283595905],[-120.97933631061717,51.39763540529486],[-120.98316715208507,51.39642275057585],[-120.98681066656476,51.39419163727506],[-120.98991091410745,51.39343796572325],[-120.99418896518557,51.39120207832316],[-120.99692279892155,51.38947992286051],[-120.99992948727528,51.38827476440624],[-121.00439401419855,51.38705679511014],[-121.01433125576553,51.38526255213327],[-121.01953231437166,51.38415572315382],[-121.02189638842114,51.3830134309668],[-121.02727444693757,51.38173915088153],[-121.03366640155149,51.38029314275427],[-121.03822031893434,51.37890461952925],[-121.04303162212686,51.375351399241914],[-121.04539220327017,51.37345998715653],[-121.04964672247496,51.369847843911224],[-121.05545783741744,51.36520131273361],[-121.06036062647935,51.362220542778545],[-121.06208754016254,51.36147088762303],[-121.06800278737849,51.35922286359155],[-121.07356539076923,51.35754630925056],[-121.08049114785919,51.35643487174608],[-121.08677372414857,51.35527261462865],[-121.09415662246363,51.35393052811813],[-121.09880679295628,51.353058461642675],[-121.10491267205633,51.352180563229496],[-121.11130434978082,51.35249224516413],[-121.11725873340201,51.35350110986684],[-121.12419333999891,51.35398673538686],[-121.12829347025043,51.35300037417395],[-121.13120954194756,51.35281937991887],[-121.13167102646261,51.35281561181818],[-121.13897655003818,51.353072791791014],[-121.14674716768806,51.354866027034525],[-121.15153720740051,51.35861221894105],[-121.1540245353567,51.3599754907686],[-121.15858940763428,51.360924297783484],[-121.16856578929807,51.36259655538142],[-121.17231767006,51.36360455349191],[-121.17541727522199,51.363593852806986],[-121.18492877605546,51.36412133788748],[-121.19870638362475,51.36411714303784],[-121.20391349509752,51.363808726463226],[-121.20874622274819,51.36309849626546],[-121.21403767690987,51.36267454595807],[-121.21914008991138,51.362132163948495],[-121.2220402204597,51.360234889005625],[-121.22340136652936,51.35937468819862],[-121.22839378997152,51.35757901646542],[-121.23211691305566,51.35619244235008],[-121.23593707137707,51.35457199140796],[-121.24048137155363,51.352780010597684],[-121.24794322926725,51.351316182749486],[-121.2507871598113,51.35193089368543],[-121.25316823764626,51.3524294203366],[-121.2599208457083,51.35313801299874],[-121.26714044085905,51.35338949169777],[-121.27234216509821,51.35324645377222],[-121.28109509155954,51.35222684179409],[-121.28627228724952,51.35082721075777],[-121.28872723128467,51.3499612240278],[-121.30220136427644,51.347204567938626],[-121.30694399382267,51.34649273177435],[-121.31058114127906,51.34601659178607],[-121.31377157579998,51.345541516918125],[-121.31757929663027,51.34386284629166],[-121.32028816134464,51.34167814862595],[-121.32237548428674,51.34046399471463],[-121.32279757563762,51.33851866917275],[-121.32323154595011,51.336460825375426],[-121.32604186761087,51.335079140862646],[-121.33104369266685,51.334077954216085],[-121.33338954568303,51.33286359560313],[-121.33600706687739,51.33084796725989],[-121.33807208779766,51.328608230564726],[-121.34059303931653,51.326138739614706],[-121.34267797745044,51.324524951977466],[-121.34363416438025,51.322009518568336],[-121.3436963086356,51.31978112405626],[-121.34776023527353,51.31673010387151],[-121.35392727702546,51.31475152513109],[-121.35698577603317,51.312217758207474],[-121.3618794377684,51.31002063938538],[-121.36623764962734,51.308396216837096],[-121.36724573929364,51.308389167388846],[-121.370991042137,51.308765746348975],[-121.37508068892124,51.308740224939015],[-121.37825773526342,51.30780862936692],[-121.3821667701049,51.306756166769276],[-121.38463021398644,51.30645418476463],[-121.38918008876884,51.30642839723777],[-121.39246688842222,51.306233471139436],[-121.39474308463474,51.30593207221761],[-121.39471822960711,51.30478975643286],[-121.39502536081338,51.30115177613354],[-121.39894134989586,51.29739645381357],[-121.41110569957354,51.29538279825927],[-121.41527040290912,51.294481311272136],[-121.42284616229708,51.291199126546594],[-121.43242971901226,51.28183634321777],[-121.4467681387265,51.26968143423264],[-121.45725559304367,51.26373767436741],[-121.46791683466226,51.25733167575076],[-121.4812643197345,51.24597914011953],[-121.49098323257772,51.239013961811054],[-121.50196268465528,51.23134546011741],[-121.51319213889192,51.222871836075385],[-121.52305138286849,51.21469984465456],[-121.53322614170598,51.207775286429126],[-121.53647808379631,51.2038538555926],[-121.53318898409859,51.19732348313394],[-121.52481565299725,51.190843747471774],[-121.51975533760827,51.18610569728407],[-121.51248566873903,51.1829352137787],[-121.50923829655444,51.180857233409306],[-121.50806581894857,51.17812754538012],[-121.50446622352122,51.16976694339044],[-121.50140518507361,51.15540362950908],[-121.50066060708116,51.1483254699223],[-121.49937277045247,51.144626662580066],[-121.49726975680926,51.14133491759413],[-121.49557587833544,51.13924023833981],[-121.49491767217093,51.13513466365786],[-121.49604165928908,51.1335220481169],[-121.50186146969406,51.13351341896393],[-121.51095823557495,51.13100487461105],[-121.52223650300705,51.125044094639485],[-121.5341063875127,51.11787101579173],[-121.54188127444004,51.110926018523],[-121.54553923207563,51.10858958089504],[-121.55334611933041,51.10586711559781],[-121.55970927325096,51.1031068756624],[-121.56336525574272,51.101060505402906],[-121.56892156672646,51.098479379309026],[-121.57114046737121,51.09690695157427],[-121.57942030098866,51.09457361988398],[-121.58500739995404,51.0932490249073],[-121.58938341175443,51.090851717849944],[-121.5887296986077,51.08748633065119],[-121.59134911561605,51.086769805847176],[-121.59645282992904,51.08481963857312],[-121.60030348366406,51.0829422591976],[-121.6075077048456,51.08130988804006],[-121.61249236189397,51.081131073923565],[-121.61554387376071,51.08023407805941],[-121.61958256148056,51.07846910710551],[-121.62432237229251,51.076411932812334],[-121.62689005179992,51.07460804435208],[-121.63046435038424,51.07289831114781],[-121.63274925665718,51.07047215550663],[-121.6365853967441,51.06842157256311],[-121.6388004069891,51.0668477616423],[-121.64127172245969,51.06470136598947],[-121.64627863102476,51.06252043039969],[-121.6521099671459,51.06038915835702],[-121.65783076852762,51.057625878603154],[-121.66091867789832,51.05530274094617],[-121.66473644563781,51.052679326507096],[-121.66788069526312,51.04903637563244],[-121.66926776722993,51.04713042596393],[-121.67135057797255,51.044246542556095],[-121.67350337993021,51.04078733605419],[-121.6757725186332,51.03818716658294],[-121.67869327032113,51.03608878972835],[-121.68260588390662,51.03363826034474],[-121.68532278628504,51.03068685360794],[-121.68670938451942,51.02906686682533],[-121.69249937757023,51.0256709771918],[-121.69881218199261,51.024842323028786],[-121.70214784179522,51.0243470149781],[-121.70666815728588,51.0241656329887],[-121.7111049150623,51.024109069452365],[-121.71236664875589,51.02392109058709],[-121.71933626935518,51.023538040265734],[-121.7296346627611,51.0224265576504],[-121.73569997773241,51.02222739690607],[-121.73759470599252,51.02214412399099],[-121.74433186427196,51.02044863215185],[-121.7499434031459,51.01751378174162],[-121.75235986228735,51.01645376169837],[-121.75691148387624,51.01473224157925],[-121.76210362461764,51.01288348407989],[-121.76300378168568,51.01258461234618],[-121.76675955703016,51.011108734303775],[-121.77016133559084,51.00974647565459],[-121.77154334107493,51.00783358278299],[-121.77227917766498,51.0056523601396],[-121.77303052441302,51.00375843344189],[-121.77631340876388,50.99942472849545],[-121.7788975382458,50.998838812272275],[-121.7827382417009,50.997202034752014],[-121.78678952345102,50.99590304889067],[-121.78982402708596,50.99432686748948],[-121.79284405915328,50.99184322615537],[-121.7951384025614,50.989478497621924],[-121.79602388037655,50.9887223146393],[-121.80206065262614,50.987861464655204],[-121.80786379374625,50.988266091420506],[-121.81405703986468,50.98968736298602],[-121.81852397651275,50.99078819901062],[-121.82439299624369,50.99049503232222],[-121.82998792212105,50.98946727522235],[-121.8336401060426,50.987372650434565],[-121.83624970210883,50.983289547685644],[-121.83868723076037,50.979209008500696],[-121.83930046799924,50.978605454608754],[-121.83962188658616,50.978221582069104],[-121.8395495561206,50.97746723830264],[-121.83979585020866,50.97681747170807],[-121.84023756933615,50.975909589935256],[-121.84056727720268,50.97482496438231],[-121.84096925832188,50.97373063812845],[-121.841971058013,50.972480888955474],[-121.84337624141727,50.971497371810194],[-121.84480913717576,50.97052216851639],[-121.84632920744248,50.96952994475874],[-121.84760023622229,50.969064815947526],[-121.84893654570483,50.96851157882484],[-121.84995402908869,50.96785602632747],[-121.8510451312698,50.96702271690127],[-121.8527411747119,50.96597731649142],[-121.85401001408285,50.96522700836811],[-121.85547847875135,50.96447843863011],[-121.85671815808405,50.96388725587137],[-121.85825566823517,50.963009080579205],[-121.8592725368255,50.96251084211084],[-121.8607904518927,50.961996215362866],[-121.86200621753322,50.961661015219505],[-121.86323036386767,50.961389077522306],[-121.86354136483284,50.96142134963549],[-121.86382540257343,50.96159036052581],[-121.86659011110602,50.95994269431047],[-121.86819073786873,50.958841838227634],[-121.8694291722814,50.95779847188852],[-121.86979880650902,50.95796780437737],[-121.87117500738967,50.95897981398207],[-121.873593288027,50.96106906690694],[-121.87745401427638,50.96376839583782],[-121.8791877743802,50.96462195240296],[-121.87960359606092,50.964755848759246],[-121.87985617840975,50.96480278567484],[-121.88058283544814,50.964971136505866],[-121.88132144471028,50.965164657309124],[-121.88172320826094,50.965296338250255],[-121.88203103968235,50.965363296722934],[-121.88268875065991,50.96566008758182],[-121.88338842164823,50.965966293124985],[-121.88374581410775,50.966114885990855],[-121.88399670025001,50.96618030743926],[-121.88439516896888,50.96634783696771],[-121.88503087354651,50.966574103787245],[-121.88541145098871,50.9667808837837],[-121.88604349460692,50.96704692059042],[-121.88642195969169,50.9672766732702],[-121.88662774681151,50.96736686218169],[-121.8868027043195,50.967481772014494],[-121.88739323021007,50.96788851499314],[-121.88803209023033,50.96839033846495],[-121.88826432265789,50.96850341354246],[-121.8888584318984,50.968716888620136],[-121.88948142654577,50.96908151591025],[-121.88973369547944,50.9692869523103],[-121.88984213415566,50.96934939071486],[-121.89052387796762,50.969851086013875],[-121.89081149874622,50.97013765239799],[-121.89134188203884,50.970578138979704],[-121.89189254682655,50.97095359460557],[-121.89217850896364,50.971103482244615],[-121.89247606571573,50.97128246896522],[-121.89307454456193,50.9716040078528],[-121.8934462679455,50.97190769351989],[-121.8937243682013,50.972297900303175],[-121.89404908106631,50.97264708606317],[-121.8945762731926,50.97312285865426],[-121.89496162807072,50.973433782692354],[-121.89508429268055,50.97365189561009],[-121.89541398143058,50.97394728942727],[-121.8958956278861,50.974452870066905],[-121.89614928189863,50.974798891601424],[-121.8963692344655,50.975045852987144],[-121.8968223563578,50.97539635000945],[-121.89713160925065,50.97560385801772],[-121.89728914625395,50.97575353281773],[-121.8976202065656,50.97603435203555],[-121.89785718829641,50.97625157480786],[-121.89793038734683,50.97638692255993],[-121.89803817438793,50.976611799691135],[-121.89828627840386,50.97717347628636],[-121.8986605524758,50.97760540787394],[-121.89879072541711,50.97774227882741],[-121.89906850192082,50.97798179345179],[-121.89939701130461,50.978290621000376],[-121.8995712194209,50.978414474109755],[-121.89974754243613,50.97851535971132],[-121.9001753082327,50.978831749889835],[-121.9005112562488,50.979059892807875],[-121.90068547046445,50.97918374408361],[-121.90079559836084,50.97922824209132],[-121.90121425238141,50.97948863566107],[-121.90174009943736,50.97967030702748],[-121.90201898205352,50.979742884999865],[-121.90252065278436,50.97987700543161],[-121.90306754192888,50.979985232238846],[-121.90330615908083,50.98002991986397],[-121.9035733923247,50.98007396028778],[-121.90412116262877,50.98017265259645],[-121.90450724991243,50.98032165974704],[-121.90475391970051,50.98043409785921],[-121.90527757813732,50.98063984031426],[-121.90582129059902,50.980782791395434],[-121.90600046967197,50.98085284666423],[-121.90613680257026,50.980923030000824],[-121.90657881643793,50.98124046975287],[-121.90713161676867,50.98175083393625],[-121.90739935024347,50.98194498508902],[-121.90801979896045,50.98234088023076],[-121.90840244515987,50.98268313101958],[-121.90860129779792,50.98285003292445],[-121.90891482581237,50.98301211907056],[-121.90948038328067,50.98338408439224],[-121.90992504976599,50.98382865346199],[-121.91009395841154,50.98401075930826],[-121.91029812155155,50.98411995291889],[-121.91095300539698,50.98445243040201],[-121.91133102649214,50.98468993870348],[-121.91109165692671,50.98620861278771],[-121.91304987687923,50.991790733476265],[-121.91311204867154,50.995782038056745],[-121.91210916970935,51.00017191344924],[-121.9109277819393,51.00152585154091],[-121.91052342687648,51.00204010664144],[-121.91034206109444,51.00230390083273],[-121.91017400517326,51.00257828911848],[-121.90996924936819,51.00325215751576],[-121.90982940555982,51.00353038784706],[-121.90977195050554,51.00384478975567],[-121.90981082815806,51.00451009858112],[-121.91007995861463,51.00500166471077],[-121.9104738457031,51.00553486499252],[-121.91086106794616,51.00598518948756],[-121.9110064591445,51.00626874979115],[-121.91122318681145,51.00670892575971],[-121.91179649886054,51.007933352981205],[-121.91225092887419,51.008585673244504],[-121.91268023606065,51.009200541683825],[-121.91342234902132,51.010298988484855],[-121.91418502201627,51.011018167423934],[-121.91495799705223,51.01209243007594],[-121.91519705354644,51.01244571108781],[-121.91555795742855,51.012716860981726],[-121.91654784876505,51.013607858443116],[-121.91718990747246,51.014241120570404],[-121.91787357960122,51.01488824807062],[-121.91828059403049,51.015280235880006],[-121.91873585037591,51.01576952868668],[-121.91908935453695,51.01612190102708],[-121.9199094240535,51.01715228920227],[-121.92049173556369,51.017814836183526],[-121.92089549488703,51.01808695405074],[-121.92137811294896,51.01859015954922],[-121.92177923750833,51.01904711546394],[-121.9219797113515,51.01935457149158],[-121.92231520031427,51.019904147309035],[-121.9227474495296,51.02064555167442],[-121.9228815185908,51.02105402764307],[-121.92315143636723,51.02200763628667],[-121.92342287721911,51.0227887284884],[-121.92353021522581,51.0231771200162],[-121.92363842715108,51.02355599119494],[-121.92391240099138,51.02430962327055],[-121.92443925183986,51.025111217073274],[-121.9248931178357,51.025773567618245],[-121.92539312023632,51.026400478843385],[-121.92636548356464,51.027176057858945],[-121.92674030843598,51.027453277564625],[-121.92723677538308,51.02796313649641],[-121.92793392989994,51.02846676468887],[-121.92903327445464,51.028948990817064],[-121.92935760378569,51.029153543282845],[-121.93004936850323,51.02940401433649],[-121.93060723550613,51.02971202354904],[-121.93137861290887,51.03034254819471],[-121.93282305837673,51.03111602946266],[-121.93399300281972,51.031765453130774],[-121.93446810506467,51.03204121579542],[-121.93489627354218,51.03236137238278],[-121.93609525719619,51.033163035738674],[-121.93683462040161,51.03367599514532],[-121.93715610328607,51.033912463819156],[-121.93748902341588,51.03418026573852],[-121.93806131021223,51.03511438483852],[-121.9386299166742,51.03624567326009],[-121.9389677840589,51.03677277846951],[-121.93924048088942,51.03738746599639],[-121.93962104280263,51.03807350229738],[-121.93993197090936,51.03858276610837],[-121.94013207949091,51.039053175045495],[-121.94073369906013,51.03998047009745],[-121.9411138201546,51.04035844463869],[-121.94154522332377,51.040801225446636],[-121.94188852693665,51.04126948687643],[-121.94230650506331,51.0418596186066],[-121.94301875221129,51.04251544596751],[-121.94343885630916,51.04292577353812],[-121.9438069717985,51.0432791276334],[-121.94412687318686,51.04369089081136],[-121.94434293583762,51.04398705167617],[-121.94514009319373,51.04481006020094],[-121.9455429226435,51.0452534807445],[-121.94600889586032,51.04563171454185],[-121.94633414489562,51.04598520285392],[-121.94704468731061,51.04681800339177],[-121.94746253102456,51.04741090920934],[-121.94775318457565,51.0479874288918],[-121.94845959709205,51.05184867474672],[-121.94869169659039,51.05416727071185],[-121.94726636123318,51.05788085040046],[-121.94838684990064,51.06112348489076],[-121.94863894153846,51.063066172829224],[-121.95021843081203,51.066297755939324],[-121.95036376649949,51.06784311816712],[-121.95242398591071,51.071926085378536],[-121.95557623904712,51.07564804199231],[-121.9561425677409,51.07650028212393],[-121.9581616737703,51.07915728474438],[-121.95885776694512,51.08314719049617],[-121.95995104236471,51.085760756525126],[-121.96309373834976,51.087084811820084],[-121.96717820830614,51.08702272311236],[-121.96790026624231,51.08695136255805],[-121.97298313458793,51.086926522320006],[-121.9756250310232,51.0895182869044],[-121.97796046990234,51.09565688262554],[-121.97917791712851,51.09912837452106],[-121.98315447246809,51.10106274256119],[-121.9867984295714,51.10129443323607],[-121.98880469394538,51.101430577361974],[-121.99443255764636,51.101570819268325],[-121.99972818631892,51.10206206545997],[-122.00569686211568,51.10302993864934],[-122.01022872963217,51.105492198437155],[-122.0189396593329,51.10829879333536],[-122.02710217167956,51.109564475228055],[-122.03064563484565,51.112531615938316],[-122.03327115242455,51.11744405489664],[-122.03670034037891,51.12041929200425],[-122.04632927612167,51.12293832740225],[-122.04749388106214,51.12739267586427],[-122.04549156352121,51.13121825805472],[-122.04112156629732,51.134922414728074],[-122.03783003355242,51.13937696702392],[-122.03945635675778,51.14491481710129],[-122.0437226427172,51.14897676050155],[-122.0478899975213,51.153031647774895],[-122.05324692690651,51.15806258544744],[-122.06123098528334,51.16257975881871],[-122.07049106359557,51.166466384331464],[-122.07330607687844,51.16835153422724],[-122.08076909461721,51.170694964040344],[-122.08868011551687,51.172356569685505],[-122.0960395798113,51.174589130792846],[-122.1075788036333,51.17527851529753],[-122.1157728553807,51.176019575909656],[-122.11950108845771,51.17716448630118],[-122.1251288896536,51.18053127827481],[-122.13014041219613,51.18258864870767],[-122.13322574754842,51.1847022598355],[-122.13730985834991,51.18835989829592],[-122.14159133166814,51.191899919206755],[-122.14477455921694,51.193725988274416],[-122.14986678279203,51.198183978115466],[-122.15195137375409,51.20606352336105],[-122.15249302777944,51.20891404878899],[-122.15313306081777,51.21079748347758],[-122.15176155553347,51.21337150096527],[-122.1496670864904,51.217822355067334],[-122.14967642597904,51.220852495979294],[-122.15140420065119,51.22376365083619],[-122.15422838440348,51.22496121383772],[-122.16004788014708,51.2243939594232],[-122.16305079287642,51.22684535601189],[-122.16532239731757,51.230617564579155],[-122.16642327260574,51.234152737205655],[-122.16760008558721,51.23780789655003],[-122.16987365379623,51.24306226603301],[-122.17324470684116,51.24609326681938],[-122.17916796213842,51.249344201397896],[-122.18144262249685,51.25111180164555],[-122.18328353147874,51.253247886403315],[-122.18400155593199,51.25408236283749],[-122.18466990136321,51.25482694583358],[-122.18656309436837,51.25335861874409],[-122.19096152287044,51.251316238905474],[-122.19451551997471,51.25007064552477],[-122.19880712033282,51.24842779393202],[-122.2031974448451,51.24763934464566],[-122.21103855027835,51.24646364658424],[-122.21933290044159,51.24586051409547],[-122.2324545395627,51.24640730000344],[-122.23746461794218,51.24676417377108],[-122.24656534994921,51.248161947951004],[-122.25357582460698,51.24948966904223],[-122.25792399557614,51.25224579019432],[-122.26018631463997,51.25470683510872],[-122.26226685689029,51.25762252587447],[-122.26480190016429,51.2600919097353],[-122.27492711646471,51.25908612285839],[-122.28468313598654,51.25870780211904],[-122.2897764608687,51.25826217410776],[-122.29279212618724,51.25861283885363],[-122.29841290758971,51.26370966075552],[-122.30002693098979,51.266569360800936],[-122.30421657064545,51.26818007451042],[-122.308401697302,51.26950393899086],[-122.31059867772238,51.26744976185947],[-122.312086173607,51.264253262066724],[-122.31828114856437,51.26386419655524],[-122.32675953235379,51.26365352328019],[-122.3319542616369,51.26389076648897],[-122.33568023572809,51.26538579851172],[-122.34177792630767,51.267909736422574],[-122.34487435637546,51.26677225180464],[-122.3479927215999,51.26414831406005],[-122.35548591793712,51.26124522396721],[-122.36250910913368,51.2586310283421],[-122.36653226134902,51.25703685209779],[-122.36990960666981,51.255783593379455],[-122.39117069817073,51.24690286689373],[-122.41581006503883,51.23590313348321],[-122.43031588470059,51.22957610117728],[-122.43250325535098,51.22843512530242],[-122.43624238717197,51.22495156209024],[-122.43753477013085,51.21940927721908],[-122.43808855779707,51.21626891268227],[-122.4396399563307,51.21392517436137],[-122.4480228023082,51.211190936807114],[-122.45121467588721,51.21056660791135],[-122.45923898583167,51.20817254521872],[-122.46278263491558,51.207089844084976],[-122.46634347880422,51.205609262398475],[-122.47171707473743,51.20315661533988],[-122.48119369117285,51.20104520422999],[-122.48446616747334,51.20047359733543],[-122.49029265597403,51.19916283559818],[-122.50048594185397,51.197396278055976],[-122.50431358283127,51.1970519944147],[-122.50759086891225,51.20059826400439],[-122.51494754602034,51.206083821062954],[-122.51905207191932,51.20751825685317],[-122.52487856723228,51.207119152597265],[-122.53179875895765,51.2064898963089],[-122.53899107356095,51.20494446683022],[-122.5438163030341,51.20431820498586],[-122.54836682714262,51.2016919071808],[-122.5506376909531,51.19757567084036],[-122.55192445122279,51.192832162633124],[-122.55365463065411,51.18957454583412],[-122.55610291081953,51.185743915417206],[-122.55992763778546,51.180426647464394],[-122.56228591381256,51.17774363190497],[-122.57338986712841,51.17391541957693],[-122.57939927434289,51.17293664173573],[-122.58594938972621,51.17219132416688],[-122.59067176136773,51.16613288305565],[-122.5925792807528,51.16350024347859],[-122.59547862801051,51.159329638813034],[-122.59857010465241,51.1539535844339],[-122.59947799560354,51.15126650903453],[-122.59765352299388,51.148530140866676],[-122.59501026426966,51.14526676482059],[-122.59219492932559,51.142011026720375],[-122.59110444336345,51.140357885451806],[-122.59346632910217,51.133095267097005],[-122.59336398172064,51.127150184112864],[-122.59291190957296,51.12035236849101],[-122.59217170039928,51.1167524950465],[-122.5883600990048,51.11400792552271],[-122.58308409022777,51.110583399240994],[-122.57800054229607,51.10801499756058],[-122.57526820499571,51.1059566406868],[-122.57600135647544,51.101271562508494],[-122.57872473782606,51.098239109996186],[-122.58743823552723,51.09451919532845],[-122.59425124225076,51.09280411288906],[-122.60042145256445,51.09200406528107],[-122.60777101856874,51.08999427362531],[-122.61248884423352,51.086280689978224],[-122.61247913961718,51.080964602854806],[-122.61411836912345,51.07822118146577],[-122.6224636870278,51.08038430772428],[-122.62810216010679,51.08392416193689],[-122.63411056150736,51.090146643179665],[-122.64309488311108,51.09070926857649],[-122.65271895155898,51.09075762056401],[-122.65689615040448,51.09075814458836],[-122.6633475635964,51.09285958232891],[-122.67071955358307,51.09834052282772],[-122.67764558424393,51.10387684142185],[-122.68283139589455,51.109358599825335],[-122.68819860452516,51.11146415587918],[-122.69329049910183,51.11477531355584],[-122.6962254706705,51.11957565651345],[-122.69796012171514,51.12396939881102],[-122.69923353986623,51.12648288982566],[-122.70888946294008,51.13064526626222],[-122.71381053421764,51.13360542470033],[-122.71526706497588,51.13617569264165],[-122.7179212120814,51.1411445723864],[-122.71892711726863,51.14400497038018],[-122.72166932730002,51.14856901184736],[-122.72268404409132,51.15131556371121],[-122.7243314324434,51.15422596621024],[-122.72697775185873,51.15719229055955],[-122.72934272652483,51.158732048162605],[-122.73453235618875,51.15946550322991],[-122.74016508165127,51.158655017641514],[-122.7479781382969,51.154871683076124],[-122.75221822868976,51.14880607985904],[-122.75421038305204,51.14565550166009],[-122.75601372692698,51.142341057642405],[-122.75974491846051,51.14164736590877],[-122.76573514636503,51.13923270188955],[-122.76845724288994,51.13842832829588],[-122.77153738422398,51.13762178048563],[-122.77553264837377,51.13801475413773],[-122.78092317216087,51.14326014857831],[-122.78477578142888,51.14839902739957],[-122.78841851238815,51.15130348409453],[-122.78943797806303,51.153249586346966],[-122.79322696609789,51.149182878371654],[-122.79804533130591,51.147513971063425],[-122.80458406530462,51.146412637995454],[-122.81148047561207,51.14571030866479],[-122.81512297043008,51.1452448364981],[-122.82266343954983,51.14534302166333],[-122.8255858633882,51.14773500859345],[-122.83105842383347,51.15052382669076],[-122.83562905909062,51.15331511946225],[-122.84009828611681,51.15633141084787],[-122.8461211875149,51.15866021799481],[-122.85131533330053,51.160361188190144],[-122.8559527505998,51.16143247901001],[-122.85916070569941,51.164283013274336],[-122.86251969900046,51.16399007588501],[-122.86979455742154,51.16322559197802],[-122.8755106562543,51.16200969915388],[-122.87615790377538,51.164008607925176],[-122.8773686272663,51.16634886041285],[-122.8813946045614,51.170224455776385],[-122.8866013046547,51.1730086051871],[-122.89152701504685,51.17510795715073],[-122.89554181940201,51.177328601003886],[-122.90258027731858,51.18079192274414],[-122.91077211119612,51.182939540933],[-122.91732851318375,51.18326206380345],[-122.92262508425944,51.184390610960534],[-122.9275422135033,51.184999735009335],[-122.9324623484815,51.18618887861706],[-122.93731674497708,51.18937146867228],[-122.93904927744792,51.190853977180396],[-122.94580837949806,51.192830896157496],[-122.953911054415,51.193831627110114],[-122.96274008726402,51.19448851219844],[-122.96766545562338,51.19458050174594],[-122.97275853799997,51.195365871100904],[-122.98096275702855,51.19699466006434],[-122.9914440489583,51.19866950810596],[-122.99782349523761,51.19910273964078],[-123.00656070476002,51.198380607004026],[-123.01227470710305,51.19698760123611],[-123.02269071068554,51.19986295901613],[-123.0309865597728,51.20251479056419],[-123.03784041414131,51.20465811017063],[-123.0427735326851,51.205724695944966],[-123.04816849883048,51.20804197725037],[-123.05282473816293,51.2093996220876],[-123.05838325276817,51.21034705063561],[-123.06430916806025,51.210947150721786],[-123.06463383297674,51.20734358207308],[-123.06572923223605,51.19967627775731],[-123.06672314469012,51.190069949857765],[-123.06768810636838,51.18674856496651],[-123.06511161680827,51.184530732124735],[-123.05927506969138,51.183068052810704],[-123.05206943494255,51.18172542364921],[-123.0499493928016,51.178477938528694],[-123.0502722764338,51.17556160641255],[-123.05170870943917,51.172921472429834],[-123.05377054492301,51.17057002996794],[-123.0541675213375,51.165022269841124],[-123.05093784222915,51.16080618695564],[-123.04589288460937,51.156542432501254],[-123.04204432058421,51.1543271064752],[-123.03902885996497,51.15251034892002],[-123.04092337378609,51.15073147369066],[-123.04371842063121,51.148545420583396],[-123.0493156089728,51.144915758953],[-123.05401248099301,51.142324876998146],[-123.05983009190098,51.14161186575318],[-123.0645565018831,51.141591257548406],[-123.06707690864872,51.139634506135664],[-123.06977782856639,51.13710841815889],[-123.06974633785268,51.134765125665844],[-123.06826585238099,51.13225272106245],[-123.07241928446551,51.12983341944278],[-123.07705378256905,51.12901468954778],[-123.0805183406617,51.13031307417866],[-123.08738164502392,51.134795365403654],[-123.09451386664055,51.13825188120296],[-123.09935225668055,51.14045496245399],[-123.10307330419997,51.14003958763983],[-123.11061568141217,51.139204305704816],[-123.11596798201177,51.13791715585895],[-123.11785389997046,51.13665350402371],[-123.12275000141642,51.13577051342644],[-123.13019549730512,51.13464393844498],[-123.13418210299879,51.1334278703557],[-123.13923734481519,51.13139640647971],[-123.14248152310746,51.12880721669991],[-123.14428121657919,51.127085497964465],[-123.14858316834616,51.12294654005013],[-123.15046335343399,51.120185574490186],[-123.15210508232889,51.11355082923804],[-123.15185201224088,51.10834682602554],[-123.15107677009371,51.10526424568005],[-123.15155387453682,51.099829313451046],[-123.1538715956403,51.09535461487363],[-123.15768587056507,51.089386127589286],[-123.16234774742546,51.08513157250752],[-123.16866682226048,51.08200691158822],[-123.17388729703195,51.0783820227967],[-123.18111265858386,51.07536536577086],[-123.18643417369418,51.07327789120583],[-123.19041749528006,51.072226651148505],[-123.19466849436337,51.07146106117023],[-123.1949272103532,51.069625427041586],[-123.20126901238257,51.06901951177199],[-123.20605253081018,51.0672771880658],[-123.20857648441287,51.06646089461566],[-123.21887830185474,51.063314290617335],[-123.22537244666775,51.060244790623535],[-123.23060074065903,51.05798338673577],[-123.23688580633345,51.05388261167188],[-123.23959001970364,51.05198111802893],[-123.24325097880046,51.048239026186664],[-123.24618587441213,51.044677295574324],[-123.25056261429724,51.03950353704558],[-123.25231747202622,51.035603332532474],[-123.25433599881313,51.03159103292922],[-123.25574109739662,51.02872121717513],[-123.25621573279706,51.02380009892541],[-123.253229890431,51.018501299168854],[-123.25148238511593,51.01651142832836],[-123.2509693439603,51.0125646871889],[-123.24892552219436,51.01006204003611],[-123.24525739299767,51.007054518597116],[-123.24422091482509,51.00465844313977],[-123.2430947099364,51.00163841929981],[-123.24376198472181,51.00054162096628],[-123.24376134332996,51.000090613947584],[-123.24685365880548,50.999240840490444],[-123.25102973621894,50.99840233409775],[-123.26770289061609,50.99739087365076],[-123.27557788444537,50.99696035864114],[-123.28591317922994,50.99643037996825],[-123.29134064218752,50.99588008979418],[-123.29659374670673,50.99561402997481],[-123.3011414909311,50.99379923098185],[-123.30425538973905,50.99044301249217],[-123.30701815016468,50.98627909769725],[-123.30931539597647,50.98320138217208],[-123.31167903315857,50.98138270001094],[-123.3165708558871,50.98139970256801],[-123.31962961695412,50.982721792847464],[-123.32410474164037,50.987543314428876],[-123.3259733148203,50.99206728918151],[-123.33000762119799,50.99522292075524],[-123.33281735730438,50.99500604114952],[-123.34106090919822,50.99411581907337],[-123.34332918218553,50.994123421971956],[-123.34928541146068,50.99545864480949],[-123.35425671656927,50.99656479797193],[-123.36313201102014,50.9970514214135],[-123.36792572396607,50.997065525476415],[-123.37617532623827,50.997033818519455],[-123.38368215496865,50.99677137320732],[-123.39004134533938,50.99490592671236],[-123.39522886400286,50.99086318322363],[-123.39778598374086,50.98909667620091],[-123.40151112909078,50.98613397946442],[-123.4050781905163,50.98220266939028],[-123.41017234718561,50.97947179387559],[-123.41415721548215,50.978396038454534],[-123.41967501851123,50.97892391598538],[-123.42482482609694,50.98088582138205],[-123.426797370833,50.98180262255237],[-123.43232321883931,50.98096200531409],[-123.43958322341854,50.97898019424196],[-123.44638305057677,50.97705260771431],[-123.45057423722469,50.97409444471563],[-123.45366431558094,50.971928839343306],[-123.45711892437204,50.96936706650811],[-123.45875693968358,50.96764860108477],[-123.46266762176782,50.965830981023736],[-123.46908896027306,50.96624714184793],[-123.47224614840341,50.9673993261691],[-123.47802186267197,50.96889890230399],[-123.48345424321447,50.96890845371025],[-123.48881027291485,50.966981931241065],[-123.49242842819048,50.96527132404069],[-123.49824944529574,50.96139480570555],[-123.50587230660452,50.956379822353874],[-123.5113373192582,50.95015514199552],[-123.51452775593174,50.94559214122749],[-123.51553811212335,50.94485186713646],[-123.52578303981166,50.93897759882886],[-123.53376016162939,50.93567525136626],[-123.53783916074478,50.933797002799565],[-123.54661894891606,50.93140935740863],[-123.55149548519604,50.93107671630048],[-123.56035224305246,50.931948043960894],[-123.56876077245005,50.93372995455808],[-123.57489296092811,50.93677221267984],[-123.57994404708799,50.93900684350619],[-123.5855782426111,50.931527774431935],[-123.58939973775084,50.925927274437726],[-123.59430840223756,50.918900496540516],[-123.59704539387315,50.91541666147666],[-123.59731197823244,50.914961868801626],[-123.60104325575753,50.90913099888491],[-123.60394509068654,50.90467670263029],[-123.60621583063454,50.901361245439205],[-123.60785468922451,50.898673601318734],[-123.6095825783972,50.89644664925076],[-123.61355619073683,50.89427986114647],[-123.62124057335733,50.894058480242],[-123.6236857158817,50.89411932257448],[-123.63072298394795,50.895898016451774],[-123.63632394262513,50.89738933895648],[-123.64408325962837,50.9008817486704],[-123.65075125420024,50.902948446578726],[-123.65410064297386,50.90369303502094],[-123.65817105364299,50.902093373255774],[-123.66116194859468,50.899353504525344],[-123.66244122831166,50.89449495742425],[-123.66244473907945,50.889803530542345],[-123.66245737773363,50.88711377978723],[-123.66290887201949,50.885284545790135],[-123.66490425581013,50.88168814049419],[-123.66735676461896,50.878596534325574],[-123.6709712803902,50.8772272916764],[-123.67530570177904,50.877058401192585],[-123.67809863439746,50.87780200485891],[-123.6870415083248,50.87986713916745],[-123.69127560844706,50.881643141238264],[-123.69624474152502,50.883245948446095],[-123.70464358854386,50.8798696213592],[-123.71395552596826,50.87558526076773],[-123.71937272586797,50.87398618132257],[-123.72208834404536,50.873185564795556],[-123.71983076905026,50.86947024697695],[-123.71660066267242,50.85583921143249],[-123.71651847048076,50.84909441571455],[-123.71796883663396,50.83878541922383],[-123.7197805578779,50.832249261892194],[-123.713818843894,50.83208554347996],[-123.69900134098619,50.83109678056663],[-123.69357821102524,50.83069088693171],[-123.69328926665857,50.829954271382],[-123.694544757432,50.81524481241226],[-123.69310521618462,50.80485527778944],[-123.68466823142647,50.799335863428304],[-123.67877177717703,50.797450654567825],[-123.66323040186613,50.796409829575836],[-123.65206402942643,50.79320596227602],[-123.64824335064964,50.79158730870173],[-123.6348636373437,50.789999853090826],[-123.62346979906363,50.78873944421169],[-123.61875148050044,50.78746968383539],[-123.61352799341658,50.78369287781314],[-123.60886620854014,50.777389603025846],[-123.60431009902587,50.774974581771865],[-123.59240387559552,50.77857697480685],[-123.57747968468315,50.783859613359105],[-123.56504264538425,50.79243705485555],[-123.54258246159297,50.791499234039065],[-123.5224316807129,50.78939201447843],[-123.50999561817612,50.78138290835501],[-123.49781507454212,50.78463564886787],[-123.48066448220143,50.78809652844132],[-123.47185816194438,50.78937224808005],[-123.45210564667484,50.793307516526625],[-123.44591804935592,50.794957104947294],[-123.43661485925374,50.79395111894197],[-123.42753137292868,50.790363824915886],[-123.42341878534677,50.78753861738128],[-123.41516039227972,50.784458507082235],[-123.40175034224985,50.78599408937495],[-123.3877731589168,50.78993026588609],[-123.3755771002372,50.79397059445467],[-123.36455573937214,50.797081803376315],[-123.3627654338043,50.788406858378934],[-123.35802878343341,50.78010090878216],[-123.34899018100627,50.77422338417249],[-123.3387948316255,50.77304018674018],[-123.32555750203481,50.77358990806233],[-123.32187275112237,50.77418703032432],[-123.31933468703936,50.77317906335906],[-123.31478330657114,50.77046773068469],[-123.3101292376759,50.76758406583991],[-123.30900484226464,50.76479534463515],[-123.31391643297486,50.761957479429334],[-123.31765750624058,50.75993059592484],[-123.32491916444992,50.757650871207446],[-123.3336023844318,50.754842852359054],[-123.34084043841325,50.751018939827595],[-123.34018514168221,50.750104509438565],[-123.33402487840124,50.74249281855787],[-123.33154451159615,50.73982638156133],[-123.3245884411303,50.73347473801676],[-123.318463820689,50.72843184363485],[-123.3068951449093,50.72502871062462],[-123.29988347178467,50.72581947748415],[-123.28411886871571,50.730843889709945],[-123.28322163277599,50.73113667112746],[-123.27424749893451,50.72708253317814],[-123.26222889612413,50.72413561403633],[-123.25184824229333,50.722488398932576],[-123.24374287514917,50.72259982758247],[-123.2373437873085,50.72217985032765],[-123.23073436632173,50.71965531783838],[-123.2236219333309,50.71358452608106],[-123.21795815012388,50.70773358536318],[-123.21393028219933,50.703414269023725],[-123.20935366255219,50.69767361936468],[-123.2066815381109,50.69391710324491],[-123.20678561372475,50.6888293548851],[-123.20252577530287,50.686684204266584],[-123.19890741297259,50.68493929634749],[-123.19928857838738,50.68087484558909],[-123.19978577883977,50.678129158120704],[-123.19586162459376,50.67358004416397],[-123.1917497360299,50.669780038062484],[-123.18838942400897,50.666883196915954],[-123.18850184081833,50.662825373375355],[-123.18791947370165,50.659684410777736],[-123.18509492108124,50.65639018700938],[-123.18263115698309,50.65434956198502],[-123.17522121193059,50.651247510362815],[-123.17416955471941,50.647255047234744],[-123.17337810969572,50.641830149454385],[-123.17276955553314,50.63777637006099],[-123.17184775714294,50.6355525868535],[-123.16766586153591,50.63272507293829],[-123.16164145978915,50.63218515308167],[-123.15213777609524,50.63361202039032],[-123.14300040791153,50.63572402997191],[-123.14335854912896,50.635434836737545],[-123.14456590658975,50.63091545810623],[-123.14287185332776,50.62572322841341],[-123.13841924939769,50.621632236871555],[-123.13291114067295,50.620125109495106],[-123.12426477546641,50.61857154182437],[-123.11580253731435,50.61724457742275],[-123.10473497805145,50.61485125412139],[-123.09932584593572,50.61293533011162],[-123.096430924484,50.61175061294383],[-123.09388690063317,50.60907964723677],[-123.09457049956067,50.60616415469118],[-123.09449703781921,50.600732732831446],[-123.09012905981426,50.5965310194703],[-123.08424668026419,50.593012667162085],[-123.08046549623961,50.59178007108451],[-123.07135721009446,50.587653676440674],[-123.06357338159289,50.58340856864811],[-123.05916253749321,50.58166180656239],[-123.05114518074993,50.57907076766654],[-123.04476688266303,50.57887680106001],[-123.03957704462454,50.580391041644916],[-123.03764072678297,50.58274027186443],[-123.03836139792016,50.59091032663689],[-123.03994431917208,50.59673004506638],[-123.03758789239203,50.60222519161003],[-123.03588027388163,50.60194763872653],[-123.03020940388988,50.60020387535601],[-123.02362801686641,50.59811738837198],[-123.01768316961945,50.596892758352695],[-123.00543292537525,50.60072191049088],[-122.996680009038,50.60447668491762],[-122.99628341118579,50.60173028049362],[-122.99439945460189,50.593511590495716],[-122.99496520983027,50.57911635114277],[-122.99374716948668,50.57449081577109],[-122.98877184225735,50.570455409225346],[-122.9848916948135,50.567387971217],[-122.98155408339775,50.566144771988306],[-122.97607554376931,50.566683284752266],[-122.97221912511074,50.56601186179204],[-122.96546752474391,50.564044590135005],[-122.96148923933727,50.56057735820477],[-122.95821722165685,50.556706635029244],[-122.95324941690635,50.552843280239124],[-122.94747697978774,50.54898005328519],[-122.94594149480781,50.54870126298518],[-122.94300326097968,50.55076803397412],[-122.94307419151308,50.5582561991438],[-122.94267780855716,50.56242731982886],[-122.93982911010747,50.56586442401895],[-122.93949722929159,50.56866595259481],[-122.94047408177053,50.57654701519802],[-122.9418677056177,50.582254907194475],[-122.94361853653469,50.58687381923502],[-122.94407125410355,50.58687164120145],[-122.93818137648009,50.5904987767033],[-122.93578769448874,50.59324685535736],[-122.93339519340864,50.596803065251535],[-122.92516887630013,50.59980874969844],[-122.91117027645004,50.601972110063926],[-122.90248024090872,50.60366224547367],[-122.9030267051785,50.60394496646859],[-122.89801617804825,50.60704936837301],[-122.89472785145342,50.61020384997123],[-122.8833418596509,50.61298573288173],[-122.8741128578004,50.61484860228239],[-122.86165021954565,50.61699954250603],[-122.85745435302111,50.62033253634282],[-122.85772224594147,50.621359587287714],[-122.85623119625531,50.625475822306775],[-122.84826588245788,50.62864299299298],[-122.84198618845097,50.63117738449877],[-122.83554450277512,50.63519728697983],[-122.83333644071872,50.63920461781419],[-122.83254433054579,50.64240577837038],[-122.82879372087919,50.64618705107328],[-122.82539014981342,50.64785482984424],[-122.82467178756544,50.64739824387387],[-122.81748174686219,50.64633211444683],[-122.80130290633224,50.64540853604655],[-122.79240700124754,50.64543435601106],[-122.7856825394796,50.64836427600618],[-122.78092699685547,50.65009514815404],[-122.77886212433681,50.65084198192553],[-122.7740324111164,50.65359780040971],[-122.7670217151622,50.65515601010034],[-122.75993193112103,50.65642878853964],[-122.75237105599892,50.65559048315319],[-122.74346860761375,50.65235361755662],[-122.73850506267814,50.6504818809631],[-122.73284840318885,50.65054997554238],[-122.72729415030585,50.652905475015906],[-122.72154355440443,50.65309108966114],[-122.7164059735269,50.65264137226723],[-122.71028379240467,50.64997038276438],[-122.7074794487908,50.64552268079104],[-122.70413769571283,50.642616417578985],[-122.69318083610078,50.64177969785346],[-122.68770510032657,50.64401532919584],[-122.67969084377775,50.64168814497925],[-122.67511967306154,50.64106955750187],[-122.66749607570615,50.64570870222914],[-122.66031703557042,50.649491153421934],[-122.6582458503453,50.650294068885614],[-122.65151806760592,50.6504737393106],[-122.64136038528923,50.65048727714497],[-122.63686545815222,50.65243811049651],[-122.62995079774129,50.656045110804804],[-122.62645071836447,50.6566204411642],[-122.62446920257473,50.65565212590124],[-122.62231229350184,50.65268477365972],[-122.62104328784031,50.64902819155884],[-122.62156953701398,50.646175287477746],[-122.62407477335121,50.64337336729484],[-122.62928805249446,50.64033859831564],[-122.63521516160334,50.63816266415012],[-122.63440235824874,50.6380481757495],[-122.62622818336949,50.637143257686866],[-122.61740607665271,50.63544349366414],[-122.60986801856576,50.633624712198504],[-122.60725185253746,50.632827815785504],[-122.60285130936958,50.629974809637325],[-122.60202973064047,50.62454962441113],[-122.60389337759133,50.61843625099538],[-122.60685469333708,50.614837422591386],[-122.61284669017056,50.608202632989716],[-122.6136441189922,50.60362881701047],[-122.60959830149523,50.60060794203594],[-122.60708033661939,50.5994727321826],[-122.60572841704658,50.59770017701267],[-122.60043422524136,50.59473694765061],[-122.59396932537332,50.59360387186383],[-122.58668982574379,50.59332796989687],[-122.58588238406904,50.593154795715],[-122.57618458568852,50.59007930525544],[-122.5712437311646,50.5880838926155],[-122.57049473394582,50.587517221461624],[-122.56989287317322,50.58706187873278],[-122.57024849249864,50.586410081491856],[-122.57002389494656,50.58631771168352],[-122.56985534280787,50.58627878648618],[-122.56958790558639,50.586214883952834],[-122.56935113277925,50.58611988870501],[-122.56919823688564,50.58596845904691],[-122.56913572857528,50.58579114280895],[-122.56902456383759,50.585625817368715],[-122.56881798862963,50.58550589348578],[-122.56854493237469,50.58546936442309],[-122.56825630907707,50.58545146736086],[-122.56797706304317,50.58542654646229],[-122.56770890563791,50.585372177835595],[-122.56744921725257,50.585299523592795],[-122.56718953039045,50.58522685976468],[-122.56695857370639,50.58512529273451],[-122.56675045595425,50.58500251087597],[-122.56655894391753,50.58487068011751],[-122.56635837319459,50.58478803811809],[-122.5661410532824,50.58478582759297],[-122.56587041026246,50.58474092955428],[-122.56559431227893,50.584721163460934],[-122.56537299533522,50.58460921421939],[-122.56513645436038,50.584511401222386],[-122.56487483973393,50.584440929725695],[-122.5646048854282,50.584387055424614],[-122.56432706138101,50.58434362267103],[-122.5640486883739,50.58433052813017],[-122.56377597199105,50.584382258897996],[-122.5634997132518,50.584387774616985],[-122.56283406250982,50.58432898436299],[-122.56094089855964,50.58348909102284],[-122.55992992047253,50.58272086083368],[-122.55908623140253,50.58207752772149],[-122.55687596611075,50.58108608664871],[-122.55550316856188,50.57991871624142],[-122.55402266830552,50.579073479837135],[-122.55283776012278,50.57877817458435],[-122.55181880970078,50.57883203949453],[-122.55077194080073,50.579019388897514],[-122.55060717676433,50.579023831737466],[-122.55041685852983,50.57901568109189],[-122.5502893915346,50.57899486333912],[-122.55014286698487,50.57896895713367],[-122.54998085582466,50.57896055935499],[-122.54951555808937,50.57898772610229],[-122.54922466023399,50.57902311673004],[-122.54903485867064,50.5790312777499],[-122.5487302808198,50.57901452438702],[-122.54833454421856,50.579056769596654],[-122.54807070448562,50.57908512670461],[-122.54794771125661,50.57909817442281],[-122.54766761165934,50.579084984102465],[-122.54754853626173,50.57902394840475],[-122.54747368411489,50.57898564713525],[-122.54722318736502,50.57888623580873],[-122.54689529842027,50.57880466795047],[-122.54652989981902,50.57870506081973],[-122.54623982454346,50.57866064297348],[-122.54590199900713,50.5786164235383],[-122.54567894678405,50.578597129385294],[-122.54547546275641,50.578645334695075],[-122.54529232674675,50.57868181316652],[-122.54511723659573,50.57870560714068],[-122.54503279088532,50.57870016892834],[-122.54501166826147,50.57869895517825],[-122.54498245936345,50.57868792908527],[-122.54491552459619,50.57866167272305],[-122.54483503662759,50.5786507447149],[-122.54458656196702,50.578617166895356],[-122.54439319550018,50.578579678981114],[-122.54422022213849,50.57852989018115],[-122.54413431981754,50.5784743784903],[-122.54408545371858,50.578443070392716],[-122.54397967668775,50.57839312030128],[-122.54373021854627,50.578326347122534],[-122.54354016036869,50.57833786369437],[-122.54348126667952,50.57834502810632],[-122.5433952270002,50.57836034343164],[-122.54331568173407,50.57838317306769],[-122.54314351944953,50.578391872166236],[-122.54285353269064,50.57836936773536],[-122.54267784911228,50.578331868688664],[-122.54262132636875,50.578308183141054],[-122.54255546693445,50.57829096223989],[-122.54250496481104,50.57828095557142],[-122.54246143084649,50.578272298791674],[-122.54216624423016,50.57822545358409],[-122.54136353570956,50.57811111804273],[-122.5404168085944,50.57798441802704],[-122.53988868667108,50.57790896832365],[-122.53973692390385,50.57788231848478],[-122.53952412001229,50.57784478382764],[-122.53911523994502,50.577805078663374],[-122.53877349555711,50.57783492033602],[-122.53859405228287,50.577892298228626],[-122.53846713276018,50.57795636536905],[-122.53829472607123,50.5780831119768],[-122.53807783102475,50.57823657269729],[-122.53782996310473,50.5783789590676],[-122.5376055904786,50.57849171063191],[-122.5374972116936,50.57854455298388],[-122.53737085548575,50.57857828881152],[-122.53712254683654,50.578588547811414],[-122.53685043473729,50.57849462764054],[-122.53659567262707,50.578359080446766],[-122.53640313402971,50.578310927621615],[-122.53628327874152,50.578329115165296],[-122.53616793014008,50.578380614908184],[-122.53604401437958,50.578451527861915],[-122.53596841804628,50.578491897830474],[-122.53593726840185,50.57850610158563],[-122.53590624795628,50.57851862737103],[-122.53588791933176,50.578527051129164],[-122.53587023156197,50.578550111022714],[-122.53573116817834,50.57863404375018],[-122.53538374267094,50.57878343407486],[-122.53506299418737,50.57890780396341],[-122.53496102595405,50.578946227453685],[-122.53474589594937,50.57891591487636],[-122.53424371136565,50.57884798349611],[-122.53367226835294,50.57889876070962],[-122.53313741576244,50.579117075279825],[-122.53285088880563,50.57927904160814],[-122.53279963544377,50.5793246655801],[-122.53278625145673,50.579337740266375],[-122.53279089406557,50.57934632189835],[-122.53281566539573,50.57936901383217],[-122.53279443158259,50.57955274088095],[-122.53270114977998,50.579937166751066],[-122.53242346921145,50.58023657506373],[-122.53193690299679,50.58035575810571],[-122.5316357795672,50.580408773765136],[-122.53158143796897,50.58042562618479],[-122.53153402157648,50.58044438549599],[-122.53148806986657,50.580673438706846],[-122.53119928006308,50.581070880345756],[-122.53053874219424,50.581244788051826],[-122.53006313874445,50.581244569350304],[-122.52989913293595,50.58126193970417],[-122.52973172942596,50.58127751284138],[-122.52954953244046,50.58127857466105],[-122.52943811652466,50.581255985111795],[-122.5294074055521,50.58124153506662],[-122.52938718058085,50.581251589615135],[-122.52933003472064,50.5812818453585],[-122.52927692510028,50.58132853418727],[-122.52926635415248,50.58139678805662],[-122.5292406336508,50.581478061110865],[-122.5291743540436,50.581535024534055],[-122.52909745887865,50.58156916124176],[-122.5290604622989,50.58165907699111],[-122.52906061561858,50.58179456713305],[-122.5289497087353,50.581879927979244],[-122.52868762647964,50.581953825350666],[-122.52845083337995,50.582043685204404],[-122.5283224589355,50.58212625168578],[-122.52822526054246,50.58224014773201],[-122.5281567922882,50.58237124754157],[-122.52799222844709,50.58255612182202],[-122.52771314876169,50.58280431409873],[-122.52757586268876,50.58297936264991],[-122.52756849147,50.58309774401752],[-122.52754922612941,50.58325567200867],[-122.52743125482327,50.58343244757709],[-122.52718840030325,50.583577774103375],[-122.52698158285436,50.58366856679074],[-122.52672093610519,50.58376948833196],[-122.52637327929544,50.58389804910226],[-122.52621315597395,50.58395657778729],[-122.52621924735642,50.5839921796347],[-122.52625102552962,50.584107295082084],[-122.52632326560372,50.584270886439725],[-122.52639392694243,50.58440913568335],[-122.526456170376,50.58451901398802],[-122.52630471928568,50.58469417630064],[-122.5256305668915,50.58492891124139],[-122.52485468387022,50.585107054697666],[-122.52451740468727,50.58519264326107],[-122.52442990251028,50.58524949861087],[-122.52436371114356,50.58528228462499],[-122.52430471864011,50.585290560444506],[-122.52410431034423,50.58520672076835],[-122.52379114575504,50.58502603867436],[-122.52364258908706,50.5849348237233],[-122.52358956886079,50.58495734431153],[-122.52341983854538,50.58502567882901],[-122.52317538500408,50.585145654266746],[-122.52298557145708,50.585267894622014],[-122.5229704512655,50.58537198402402],[-122.52306056513048,50.58548723268297],[-122.52309373747873,50.5855613503691],[-122.52307969884603,50.58558283139274],[-122.52306224799928,50.58562557688058],[-122.5229019598246,50.585800458668025],[-122.52258882445452,50.586076806583236],[-122.52240703086466,50.58623246865472],[-122.52236118158541,50.586276565961874],[-122.5222933393279,50.586330661301716],[-122.52221909084062,50.58637612842453],[-122.52214747429174,50.5864104255684],[-122.52205752249976,50.58645315303756],[-122.52196770099196,50.586494193530676],[-122.52193301327743,50.586508282930126],[-122.52193541377862,50.58652297415752],[-122.52190383523316,50.586588321876306],[-122.52182750500769,50.58672929098603],[-122.52178722259359,50.586884312244365],[-122.5217807029536,50.58699147657885],[-122.5217601712311,50.58707403442047],[-122.52175599292723,50.587150924265096],[-122.52176828475085,50.58724350286094],[-122.52174442737659,50.58734619447561],[-122.52169551101456,50.58740706042274],[-122.52166709745681,50.58743147378695],[-122.52165661487669,50.587475552211004],[-122.52164335562303,50.587555531066144],[-122.52163125387264,50.58764340735015],[-122.5216193109629,50.587752093010586],[-122.5215835524287,50.58789433031162],[-122.52152360258448,50.58805210936596],[-122.52146538740963,50.58818745621507],[-122.52143302621556,50.58826289813232],[-122.521421646643,50.58829570526236],[-122.52142073536048,50.5883074866219],[-122.52141800289814,50.588342812753716],[-122.52141424365004,50.58843713804448],[-122.52140643557485,50.58853808264766],[-122.5214025895293,50.588633529522255],[-122.52142118580798,50.5887589103662],[-122.52148768886829,50.58892795546986],[-122.52157393124229,50.58911616438074],[-122.52165454942445,50.58928564158278],[-122.52171891380357,50.589436630442556],[-122.52175176981466,50.58960630525419],[-122.52175149727945,50.58976988041405],[-122.52173206358401,50.5898839532213],[-122.52169693942886,50.58997224285076],[-122.52164213481062,50.59008633414165],[-122.5215945463001,50.590221446362996],[-122.52155334818727,50.59031966488473],[-122.52150503563878,50.590372679299605],[-122.52144075763098,50.59042632784951],[-122.52134414598521,50.59050931299108],[-122.52121421561634,50.59061150298277],[-122.52111751638743,50.590695609512636],[-122.52108677256882,50.5907272534049],[-122.52106688855329,50.59073281991279],[-122.5210394707571,50.5907443300936],[-122.52101747611772,50.59075431886918],[-122.5209960739346,50.59077950893561],[-122.52094401450647,50.59083522124271],[-122.52089669823859,50.59087534141149],[-122.52086854238155,50.590896389660486],[-122.52083581743011,50.59093077783007],[-122.52079495045297,50.590978969839725],[-122.52070001319106,50.59106314011032],[-122.52038701710522,50.59124561008809],[-122.51966687605264,50.59159298648292],[-122.51885573210656,50.591973489387726],[-122.51847877415008,50.5921595746361],[-122.51843434745852,50.59218516810665],[-122.51841829530292,50.592186914457876],[-122.5183682446412,50.59219377620407],[-122.51828621954644,50.59220245268178],[-122.51818341355595,50.5922054238817],[-122.51813211963326,50.592205500717654],[-122.5180598273995,50.592202680773575],[-122.51789446352778,50.592191317527735],[-122.51771783516531,50.592165552022294],[-122.51743209876035,50.592109954281895],[-122.51703823839846,50.592034664101526],[-122.51677862082595,50.59198437050314],[-122.51666210888068,50.591958803256816],[-122.51654990824701,50.59192324300088],[-122.5163793299919,50.59186505948287],[-122.51622036305294,50.59181680045247],[-122.51615109613026,50.591797766848494],[-122.51610080161477,50.59178494885671],[-122.51601071130756,50.591760765864464],[-122.51594492996809,50.59174239893075],[-122.51592578386028,50.59173842644414],[-122.5158580376026,50.59169976917639],[-122.51573576492116,50.59161161629523],[-122.51560854760773,50.59151881112833],[-122.51551779760632,50.59145750449142],[-122.51545479804736,50.59140324612118],[-122.51537053198793,50.591303915521046],[-122.5152635222716,50.59117857979718],[-122.51517198319787,50.59108182750737],[-122.51509815572715,50.591007558626046],[-122.51504974879893,50.59094757775595],[-122.51501987922204,50.59089942069917],[-122.51498441248059,50.59085502793313],[-122.51495147499043,50.59082363957077],[-122.51492781901005,50.59080940674021],[-122.51486005762872,50.590793792366405],[-122.51468707001062,50.59074395841739],[-122.51448055477185,50.59064754332978],[-122.51431278368088,50.59053042185429],[-122.51416720942632,50.59042354775934],[-122.51407733302428,50.590351023882114],[-122.51405269586094,50.59032664119694],[-122.51404350177371,50.59030836397266],[-122.51401885784297,50.59023844150134],[-122.51400557414128,50.59011322547251],[-122.51402136157567,50.58995519058747],[-122.51405228713077,50.589807191222974],[-122.51406786414611,50.589697495594564],[-122.51405471807341,50.5896161324183],[-122.51401879396334,50.58955485103571],[-122.51394438756662,50.58951091971608],[-122.51383219448718,50.5894753655894],[-122.51367258693506,50.58943551029249],[-122.51346913653197,50.58939090787555],[-122.51344834510694,50.58929412209889],[-122.51356891468618,50.589130376051855],[-122.51355826623882,50.58899399908545],[-122.51345383883064,50.588881109438354],[-122.51337380583897,50.58877291479219],[-122.51333280797724,50.5887086677551],[-122.51332374529812,50.588688703549025],[-122.51328525051896,50.58861498265886],[-122.51322279160696,50.588485409757496],[-122.51317691177259,50.58839290147804],[-122.5131444304122,50.58833286087343],[-122.5130958988674,50.58827455687445],[-122.51299246217545,50.58821734731076],[-122.51286049523333,50.58816318303894],[-122.51277747035651,50.5881392184997],[-122.51274619506951,50.588132049895705],[-122.5127295106655,50.58811915933419],[-122.51271678934974,50.58810077135995],[-122.51270772637052,50.58808081606198],[-122.51266032631926,50.58800793104809],[-122.51256901034357,50.587862845797005],[-122.51252654913411,50.58774908206331],[-122.51251449925738,50.58769923393581],[-122.51247182648788,50.58763380959813],[-122.51240671807598,50.58753844940325],[-122.51230734761462,50.587406036577825],[-122.51215618627997,50.58725738369137],[-122.51201624906089,50.587169229515965],[-122.51191654266161,50.5871323736197],[-122.51180281087582,50.58709395354791],[-122.51163084098361,50.58703122070113],[-122.51147045611098,50.586955925554165],[-122.51135308604641,50.58689602864652],[-122.51124754265467,50.58684324845307],[-122.51119150396266,50.58681338287408],[-122.51117473348454,50.58680161366012],[-122.51112631701888,50.586764674435514],[-122.511031029804,50.58669366870281],[-122.51089994053312,50.58662827702369],[-122.51075759421065,50.586594022349985],[-122.5106198009059,50.58656946260216],[-122.5105122575841,50.586542478512456],[-122.51041819403983,50.58650130083597],[-122.51024696845016,50.58642902771259],[-122.5100017402092,50.58635331747235],[-122.5097584947809,50.586274853540054],[-122.50954486744065,50.586179329006264],[-122.5093150604429,50.586087227017764],[-122.50905095374723,50.58600417619614],[-122.50878094720528,50.58592880089385],[-122.5084981142116,50.58585921067706],[-122.50820765967391,50.5857966931525],[-122.50791646604911,50.585743703978245],[-122.50763938517147,50.58569115705281],[-122.50744830571215,50.58564693106858],[-122.50739126972671,50.58562995744381],[-122.50729912720783,50.585609641928386],[-122.50706924038309,50.58556419687815],[-122.50683406202263,50.58551858518278],[-122.50675039221177,50.58550302358181],[-122.50672674206297,50.58539771780451],[-122.50666080066557,50.58515391509943],[-122.50659185474335,50.584903271897005],[-122.50653824016501,50.584728440522554],[-122.50647626334239,50.584570211510574],[-122.50643669479211,50.58446497228225],[-122.50639869442735,50.584385075345416],[-122.50634157575503,50.58418708027469],[-122.50628391504891,50.58383672487761],[-122.50625445547512,50.58351030840359],[-122.50624087077031,50.58327545276857],[-122.50623029056966,50.58304744644962],[-122.50622066807084,50.58289816486452],[-122.50621161010949,50.582832668726674],[-122.50620963103259,50.58265327899896],[-122.50622128965531,50.58216174217135],[-122.50623924433644,50.581429802915814],[-122.50625554247515,50.58081023616772],[-122.50621822400562,50.5805167351733],[-122.50609776488587,50.58038309456901],[-122.5059920486897,50.58026452434445],[-122.50594806428522,50.58019343348556],[-122.5058980045167,50.580132270842974],[-122.50582980625911,50.58005423991234],[-122.50578915360296,50.5800085468395],[-122.50574220733921,50.579975590483954],[-122.5056479664876,50.57991416413359],[-122.50553713375253,50.57983872432456],[-122.505409034428,50.579735200001636],[-122.50531536259548,50.57962094703552],[-122.50527040243844,50.57949416561366],[-122.50524166421684,50.57936340543749],[-122.5052342850036,50.57929908596149],[-122.50523417694178,50.579277720021764],[-122.50520310561548,50.579245262144944],[-122.50516511039419,50.57921089569701],[-122.50512798597491,50.579165322141385],[-122.50507474955216,50.57909956179174],[-122.50502477933294,50.57903727706874],[-122.50497683443577,50.578971682917455],[-122.50492875930405,50.57890776666423],[-122.50489873424425,50.578861849405264],[-122.50487837623535,50.57882804602001],[-122.50486548645213,50.57881190015595],[-122.50476987803422,50.578745365836724],[-122.50459035341318,50.57862111042574],[-122.50448451209773,50.578549756865016],[-122.50447453986808,50.57854157305321],[-122.50445344181435,50.57851729875036],[-122.50440140396934,50.57845888838707],[-122.50428021520736,50.578334774657904],[-122.50416825864878,50.57822837379586],[-122.50412175126442,50.57818980864986],[-122.50406770935258,50.57815719507393],[-122.50395579429977,50.5780957691345],[-122.50382186639644,50.57802185000232],[-122.50366618739699,50.57793207277334],[-122.50350909474827,50.57783774447273],[-122.50341473029401,50.57777800297008],[-122.50335261235941,50.577735573662146],[-122.50328413728347,50.57768394967522],[-122.50322258667647,50.57763422535625],[-122.50315075891547,50.57758024717205],[-122.50305374003851,50.577509178374974],[-122.50296149003279,50.57744499651184],[-122.50283916989983,50.57738100244664],[-122.50259224448247,50.57725967911177],[-122.50234893493754,50.577137344526065],[-122.5022656549201,50.57709424904444],[-122.50222001803137,50.57708999851004],[-122.5020981314404,50.57706592709988],[-122.50196873495106,50.57702475411455],[-122.5018014536829,50.576970588262846],[-122.50153297146268,50.576899180140394],[-122.5012940610287,50.57681126961987],[-122.50118614096603,50.576721299782946],[-122.50108143595206,50.57652181119353],[-122.50066162269707,50.57605492320187],[-122.49999644059555,50.575560640214185],[-122.49961264136384,50.57533550124955],[-122.49955362118577,50.57529878874303],[-122.49953067643929,50.57527557951384],[-122.49947190019871,50.57521301448049],[-122.49940482987203,50.57514344222699],[-122.49934265808491,50.57507907920179],[-122.49926496269399,50.57500973908985],[-122.49916954519576,50.57494095643879],[-122.49908370528642,50.57488540975329],[-122.49900637758866,50.574834070682336],[-122.49894117717923,50.574785919694115],[-122.49890993890882,50.574755703099854],[-122.49889400574496,50.57473327210411],[-122.49887326164985,50.574704510200355],[-122.49884598707146,50.57466879657831],[-122.49880578213173,50.57461750159069],[-122.49875935268076,50.57455532475172],[-122.4987012591587,50.574461298714205],[-122.4986211823423,50.57433172550352],[-122.4985533810941,50.57422615015882],[-122.4984951753785,50.57415628958975],[-122.49844179749002,50.57411525657464],[-122.49839385842732,50.5740951998669],[-122.49824283154888,50.57405952047296],[-122.49795216213117,50.57400089644371],[-122.4977225619638,50.57395263192217],[-122.49765394158825,50.573925735145394],[-122.49760410891197,50.57390730048276],[-122.49750842442317,50.57388742182088],[-122.49745970079358,50.57387745020323],[-122.49740957225305,50.573817404883755],[-122.49717678921022,50.57369651332745],[-122.49685795048951,50.57363644140291],[-122.49672348610639,50.57363782769355],[-122.49668534405025,50.573628189035595],[-122.49666139682549,50.5736178821415],[-122.49663466535142,50.57359792598804],[-122.49659099747352,50.573568441443896],[-122.49654552281079,50.57353945764569],[-122.49651006119689,50.57351810208651],[-122.49648319847702,50.573499832792116],[-122.49646806964503,50.5734897946526],[-122.49643582906403,50.573472480290285],[-122.49627936746094,50.57341583073068],[-122.49602748566019,50.57333593617667],[-122.49590992582132,50.57330187453662],[-122.4958630973827,50.57329027985155],[-122.49579426106395,50.57326618143884],[-122.49571858886591,50.57323906118578],[-122.4956620091645,50.573216482233484],[-122.49558967329521,50.57316922852606],[-122.4954684957651,50.57306814844399],[-122.49535591746104,50.57297015458338],[-122.49529914757056,50.57292733093325],[-122.49523928839712,50.57287877909409],[-122.49516693762503,50.57280903736834],[-122.49500604341458,50.57265049594456],[-122.49338428151913,50.57170662821985],[-122.49206558483435,50.570980301625454],[-122.48974777587487,50.570032406546304],[-122.48735828963673,50.569233985215554],[-122.48504188556065,50.56824779977255],[-122.48164760491943,50.56730335385317],[-122.47971960258452,50.56670994472576],[-122.47874301753198,50.56635969903919],[-122.47860130236664,50.56636363962801],[-122.45703986356538,50.56275302960728],[-122.45704062960972,50.56263106055453],[-122.45703985689285,50.56248373883074],[-122.45704558733398,50.56122121314824],[-122.45704553997751,50.56092999013015],[-122.45704653024319,50.560782724281694],[-122.45668911906452,50.56056331870001],[-122.45569011631545,50.560142430300445],[-122.45448042555289,50.559681638737395],[-122.45337623399656,50.55918316196883],[-122.45213319096663,50.55887701468014],[-122.45077904036569,50.5584784769748],[-122.45017291776486,50.5583208217369],[-122.44906330178124,50.558228040412],[-122.44803317420661,50.558068640285285],[-122.44739522307859,50.55797854200842],[-122.44510671190753,50.55808866808371],[-122.44442220196449,50.55816291147469],[-122.44282564025198,50.55819392107282],[-122.44190764992702,50.558136434037095],[-122.44089047779224,50.5579475797799],[-122.43997952492168,50.557845891574615],[-122.43951733164637,50.55779061065672],[-122.43901938321102,50.55751716819174],[-122.43852227685844,50.55716616469744],[-122.43805255290553,50.556960520471435],[-122.43759706712342,50.556909943777065],[-122.43686823456838,50.55689670598005],[-122.4358349892616,50.55691137704347],[-122.4348320526002,50.55694499242159],[-122.43250173862549,50.556735303618765],[-122.43087691016521,50.556543719790604],[-122.42949799817124,50.556304355322254],[-122.42825464535507,50.55602715787041],[-122.42774696559196,50.55585510602463],[-122.42717338366813,50.555600540784965],[-122.42623518495621,50.555286466888646],[-122.4255528089697,50.55508911478641],[-122.42491817848749,50.55482470285532],[-122.42407164656812,50.554491626304035],[-122.42338980263273,50.55426559935903],[-122.42288230298745,50.554180678427144],[-122.42186499105205,50.554039990540026],[-122.41966890931583,50.55354480544753],[-122.41833600083231,50.55315103792264],[-122.41759476989786,50.55282804842909],[-122.41721813795418,50.552564590437875],[-122.41688818557151,50.55229195787125],[-122.41647824256911,50.552202846658496],[-122.416158545716,50.55220096851133],[-122.41571653092109,50.55231490400276],[-122.4153377296791,50.55232292891337],[-122.41513942986131,50.552283366943705],[-122.4149297421181,50.55209837385267],[-122.41479426197452,50.55191353387368],[-122.4146140698664,50.55175760270793],[-122.41439035890009,50.551504697723054],[-122.41407408982451,50.55119369884926],[-122.41366899821774,50.55075558509747],[-122.4135198242573,50.550609657112666],[-122.41326355130782,50.55036637629933],[-122.4131476694436,50.55020183946046],[-122.41266298173264,50.54952107590744],[-122.41232420791219,50.54887201522688],[-122.41170157903736,50.547661111482995],[-122.41119793813851,50.54695273881306],[-122.41010099308403,50.546173483845386],[-122.4090650869492,50.545449029276604],[-122.40784157688245,50.54457400994607],[-122.40700141005715,50.54363378048492],[-122.40531131437422,50.5426070231511],[-122.4041456178757,50.5420717259192],[-122.4025067490573,50.541665598307354],[-122.40244837358654,50.54166652422446],[-122.40217904976045,50.541610010258324],[-122.40190439498768,50.541553889746055],[-122.40162915783098,50.54150506328046],[-122.4013560253301,50.54149621876858],[-122.40108160659867,50.54152556421476],[-122.40080724596046,50.54157627598047],[-122.40053731959702,50.54163780876935],[-122.40027254406913,50.54170119898854],[-122.40002020543464,50.54178579885781],[-122.39999852144882,50.54179184328406],[-122.39976646319164,50.54186584578944],[-122.39949629572193,50.541908261161105],[-122.39921273565203,50.54191931424784],[-122.39892940009112,50.54192755819278],[-122.39864805053296,50.54193305907645],[-122.39836493874775,50.5419385021377],[-122.3980831848779,50.54194905315517],[-122.39780940197966,50.54199246279391],[-122.39754783036862,50.542059890726655],[-122.39730203996731,50.542150877044605],[-122.39706262438577,50.54225049863227],[-122.39680424864012,50.54230003679073],[-122.39651750903924,50.54228455019416],[-122.39626913334654,50.54236364792078],[-122.39602519067067,50.542453566957334],[-122.39576994477831,50.54253018284873],[-122.39549675015004,50.5425882332929],[-122.39522334286016,50.54258273844072],[-122.39495000392033,50.542532265828726],[-122.39467458939781,50.54248565637729],[-122.39439827643156,50.542450270900254],[-122.39412205445434,50.54241375419412],[-122.39384610173545,50.54237388106823],[-122.39357204680685,50.542332377603955],[-122.39329812752746,50.54228918662417],[-122.39302836142389,50.54223826735623],[-122.39276297437357,50.54217680245082],[-122.39249379410296,50.54211858720265],[-122.39223012606014,50.5420577345183],[-122.39200692426665,50.54195490679877],[-122.39189660787872,50.54178827464283],[-122.39184362421264,50.54161170123894],[-122.39179963211686,50.541433161738375],[-122.39172871374798,50.541259937054605],[-122.39162553845313,50.54109241178418],[-122.39150984935881,50.54092672898451],[-122.39139411580523,50.54076161130134],[-122.39129266040031,50.5405946991399],[-122.39125188063728,50.540420203624635],[-122.39126816176316,50.54023913193992],[-122.39117018684145,50.54007289927807],[-122.39105075349005,50.53990990078202],[-122.3909223754612,50.53974830282144],[-122.39079585032339,50.53958564034213],[-122.39068184028247,50.53942113517722],[-122.390612781338,50.539246845019335],[-122.39059902007652,50.53906592176293],[-122.3904583208041,50.53892584583143],[-122.39019697506235,50.5388583248769],[-122.38993174704065,50.53879516612097],[-122.38969533311938,50.538703148341064],[-122.38949902522116,50.5385736426614],[-122.38929531133608,50.53844838490319],[-122.38909521182757,50.538322128671226],[-122.38889890803367,50.53819261289951],[-122.38870635390349,50.538060411850395],[-122.38851185898015,50.53793039631943],[-122.38830620809964,50.53780733149684],[-122.38808953730349,50.53768952150986],[-122.38785159556664,50.537594642973346],[-122.3875960426675,50.53752111450855],[-122.38733087079981,50.53745739314827],[-122.38706375771184,50.53739585699977],[-122.38679858733396,50.537332134360604],[-122.38654123103414,50.537259102452495],[-122.386293630212,50.53717458446378],[-122.3860500043579,50.53708457268171],[-122.38581026350472,50.5369901886996],[-122.38557070373213,50.536893561051684],[-122.38533484895602,50.536794804373635],[-122.38509718789223,50.536696555132835],[-122.38486124512976,50.5365989189957],[-122.38462168947217,50.53650228925738],[-122.3843838520931,50.53640627262241],[-122.38414615047591,50.536308577600856],[-122.38391021180539,50.53621093939981],[-122.38367440892262,50.53611162281984],[-122.38344045979697,50.53601123253451],[-122.38321405448843,50.53590490700966],[-122.3830325933825,50.535766875734],[-122.3828916523662,50.535608230913205],[-122.38272451415241,50.53546784952727],[-122.38244997079163,50.535433047721924],[-122.38217128234571,50.53544983738239],[-122.38189015621654,50.53547497624605],[-122.38160880407828,50.53550292280407],[-122.3813277667241,50.535526947649146],[-122.38104709038365,50.53554647654165],[-122.38076763403525,50.53557280049015],[-122.38052833336195,50.53556106520391],[-122.38031196347791,50.53543988401324],[-122.38012324056548,50.5353044177536],[-122.37999130093161,50.53514381303485],[-122.37980605922228,50.5350090172902],[-122.37958782580264,50.53477925444954],[-122.37945765146254,50.5346187064034],[-122.37932747804994,50.534458158173486],[-122.3792188083517,50.53429381246876],[-122.37916217913124,50.53411935971679],[-122.37914851086292,50.53393786864261],[-122.37912942233534,50.533757883144176],[-122.37911205031027,50.53357852028974],[-122.37909648495878,50.533398658512034],[-122.37907382782461,50.53321912332246],[-122.37905324869186,50.533035715528285],[-122.37894200988876,50.532881405973946],[-122.37873844055672,50.532755015412015],[-122.37864798146364,50.53258394834302],[-122.37855250766518,50.53240935315227],[-122.3783328636374,50.53230716793155],[-122.37808164622771,50.53222420313166],[-122.37782089994688,50.53214991415313],[-122.37755767023413,50.53208454864143],[-122.3772836481262,50.53204356082063],[-122.37700321290788,50.53201642406973],[-122.37673379745789,50.531962099936145],[-122.37648235964072,50.531881930924115],[-122.37623110323888,50.53179951819848],[-122.3759816997526,50.531716040794706],[-122.37573234268756,50.53163199755259],[-122.37548312160916,50.53154627587659],[-122.37523579826369,50.53145893324501],[-122.37499231568516,50.531367775043464],[-122.37479820620202,50.53125573704301],[-122.37454284636036,50.53118049117669],[-122.37428748664891,50.53110525368959],[-122.37403208299455,50.531030571906726],[-122.37377311199265,50.530956330825475],[-122.37351405079518,50.53088321967454],[-122.37325485530081,50.53081178577836],[-122.37299380860101,50.53074141532548],[-122.37273258202605,50.53067328738821],[-122.37246941385528,50.53060734444378],[-122.3722060657386,50.530543644005206],[-122.37194082150428,50.53048156327162],[-122.37167363486164,50.53042167647198],[-122.37140631372417,50.53036346688958],[-122.37113885806261,50.5303069345237],[-122.37086945990106,50.53025259606843],[-122.3705971711193,50.53021221449559],[-122.37031309116712,50.53020855614923],[-122.3700306825131,50.53020607620325],[-122.36974877155366,50.53019742244392],[-122.3694670864045,50.530185968542895],[-122.3692015760288,50.53012725491645],[-122.3689600105242,50.53003445409768],[-122.36875083532408,50.52991235834115],[-122.36853402712606,50.529797317522075],[-122.36828257110777,50.52971768605355],[-122.36801950548872,50.52965061093548],[-122.36775192224344,50.52959575720731],[-122.36747024136224,50.529584298239335],[-122.36718851502188,50.52957340382589],[-122.36690669905363,50.52956362129011],[-122.36662497297876,50.5295527254486],[-122.36634541629341,50.529536834989834],[-122.36606337410267,50.52952985871143],[-122.36578128710336,50.52952343801286],[-122.36549974259749,50.529510296193486],[-122.36522127292918,50.52948094415202],[-122.36494293979065,50.529449904582016],[-122.3646585970845,50.52942767284842],[-122.36442174061818,50.52934232967083],[-122.36421655765545,50.52921472379558],[-122.36402411429164,50.529082478569386],[-122.36379593743024,50.52897717652178],[-122.36354106099698,50.52889630634184],[-122.36326874205024,50.528856463051355],[-122.36298756477967,50.52883882861228],[-122.36270236664039,50.52882724221063],[-122.36242100930241,50.5288118404889],[-122.36213928901167,50.52880093327207],[-122.36185905364506,50.52881537135662],[-122.36158256820673,50.52882711573583],[-122.3612907263157,50.5288321760397],[-122.36110202581929,50.52876302158234],[-122.36100658313256,50.52858896681071],[-122.36090359600028,50.52842085416899],[-122.36083643064433,50.528246600899614],[-122.36078358531027,50.52807000082264],[-122.3607361149872,50.52789246121785],[-122.36071701190828,50.527713592796],[-122.36071566004772,50.5275336235606],[-122.36070193173542,50.52735381559314],[-122.36068287397691,50.527174390752684],[-122.36066386205174,50.5269944006021],[-122.3606341448442,50.52681575098096],[-122.36058663147361,50.52663876733517],[-122.36053022031041,50.52646261663718],[-122.36045953631951,50.52628824729977],[-122.36038700074097,50.526114941729915],[-122.36037151268756,50.525935075695834],[-122.36034712745327,50.52575603364003],[-122.36036492633156,50.52557950722212],[-122.36042152295157,50.52540368519181],[-122.36046597021175,50.52522521597855],[-122.36050165555298,50.52504589288047],[-122.36052491914879,50.524867296288825],[-122.360514760962,50.52468703786572],[-122.3604459318826,50.524511604286744],[-122.36029747106166,50.52435998349529],[-122.36010144644158,50.52422873682992],[-122.35988843674862,50.52411099436208],[-122.3596699176665,50.52399587772175],[-122.3594626027499,50.523873256047096],[-122.35926274291303,50.52374581336215],[-122.35905913438125,50.523621063228966],[-122.35884233547851,50.523506567897215],[-122.35860448521127,50.52341218144436],[-122.35835344510868,50.52332804063685],[-122.3581119376516,50.52323522445218],[-122.35787820300013,50.523133657250966],[-122.35764821853684,50.523029405633025],[-122.35741828012986,50.52292459722961],[-122.35718640072685,50.522821964730824],[-122.35695063605776,50.52272371143236],[-122.35671130471496,50.52262589837416],[-122.35646447535802,50.52253346151074],[-122.35621095688258,50.52245823052072],[-122.35594302198326,50.522408399421565],[-122.35565918262772,50.522380527685556],[-122.35537334616747,50.52237733861526],[-122.35509784296103,50.52239921883532],[-122.35482282926104,50.52243686704191],[-122.35455043069952,50.52248583684337],[-122.35427762263672,50.52253985749593],[-122.35400829085057,50.52259455837321],[-122.35373891337314,50.522649814889476],[-122.353474365241,50.52271085203212],[-122.35320796422577,50.52277295227514],[-122.35294178989461,50.522832243484146],[-122.35267259134692,50.52288525427708],[-122.35240172164468,50.52293708501307],[-122.35212913501879,50.52298830094674],[-122.35185524138686,50.523033841583896],[-122.35157841468133,50.52307198018047],[-122.3513025870031,50.52309778092433],[-122.35102306478734,50.523103784584194],[-122.35073984912786,50.52308998216021],[-122.35045754248388,50.52306496341955],[-122.35017912243366,50.52303557347535],[-122.34990106633813,50.523001696596246],[-122.34962536325921,50.52296058228527],[-122.34935187586522,50.52291392635565],[-122.34908431024012,50.52285958354662],[-122.3488371766478,50.522771059717954],[-122.34858579462959,50.522691383024195],[-122.34832053748038,50.52263037588409],[-122.34804940627194,50.522576480020675],[-122.34777574166746,50.52253205433597],[-122.34749999755739,50.52249149999589],[-122.34723451601003,50.52243328965832],[-122.34697938826686,50.5223563018354],[-122.34673022731803,50.52227108001548],[-122.34648870433261,50.52217879475536],[-122.34625129674619,50.52207933022659],[-122.34600385488416,50.521994720980395],[-122.34573449157838,50.52194087737117],[-122.34546304872383,50.521890905091325],[-122.34520774505133,50.521816156265906],[-122.34496057964735,50.521728179999116],[-122.34471341520813,50.52164020317333],[-122.34445811419852,50.52156545260352],[-122.34417758188123,50.521540475835856],[-122.3438970498748,50.52151549835959],[-122.34361624502563,50.521493884842876],[-122.34333615492926,50.521485222006675],[-122.34305550370301,50.5215052206076],[-122.3427749433,50.521524096944276],[-122.34249526266952,50.52151038947692],[-122.3422151872129,50.52147979997986],[-122.34193732888622,50.52144366000863],[-122.34166662203165,50.5213847059901],[-122.34139752563229,50.5214146352095],[-122.34112939955101,50.52147609230124],[-122.34085383383125,50.521520426345745],[-122.34057219421311,50.52153083193259],[-122.34029360781805,50.521503660283926],[-122.34001714760569,50.52147205976034],[-122.33973924587987,50.52143647058529],[-122.33946319629825,50.52139982617925],[-122.33918723905587,50.52136205056097],[-122.33890947505076,50.52132478146412],[-122.33863758759995,50.52128040024398],[-122.3384226138306,50.52116591385554],[-122.33824324764832,50.52102617828099],[-122.33805642683242,50.520891261593775],[-122.33784340003535,50.5207745889935],[-122.33761930488998,50.52066374054404],[-122.33738581143142,50.520559895811516],[-122.33714449916584,50.520465346953756],[-122.33689685558174,50.52038351666552],[-122.33663121769779,50.520327523962024],[-122.33635174619731,50.5202896340471],[-122.33607607206743,50.520248485999325],[-122.33580256989836,50.52020235287414],[-122.33552902229923,50.520156784335306],[-122.33525737372719,50.520109586420205],[-122.33498812578709,50.520054595098436],[-122.33471647839716,50.520007395855664],[-122.33443491185989,50.519995287804186],[-122.33427113977369,50.51985943339961],[-122.33414722909653,50.51968947510273],[-122.33402805596855,50.51952641136078],[-122.33392875854993,50.51935782288246],[-122.33384201803942,50.51918684183272],[-122.33375889256814,50.5190148464277],[-122.33367752817364,50.518842918034245],[-122.3335944492463,50.51867036614415],[-122.33352017675085,50.51849810485527],[-122.33349219728314,50.51832118211602],[-122.33341806233574,50.51814724284281],[-122.33335287096716,50.5179719073814],[-122.33328944123716,50.5177966299877],[-122.33322601200037,50.51762135252024],[-122.33315901573512,50.517446514977664],[-122.33308845175054,50.51727212632672],[-122.3330534756101,50.51709441433311],[-122.33304162190122,50.5169146588126],[-122.3330333364839,50.51673445428361],[-122.3330073037143,50.51655534607914],[-122.33294929714208,50.51637856478595],[-122.3328589073434,50.516209143892084],[-122.33267957812623,50.51606939849243],[-122.33246130485267,50.515952540429275],[-122.33227772520866,50.51582165046131],[-122.33216069467977,50.51565416485744],[-122.33208019095443,50.51549349932499],[-122.33221878585078,50.51533108237952],[-122.33234324623345,50.51516875625122],[-122.33245899192845,50.51500501761102],[-122.33248565553431,50.51482934042107],[-122.33253011163623,50.51465200163401],[-122.33245516533194,50.5144881459733],[-122.33232837416408,50.51433214134623],[-122.33236917107872,50.51415637301877],[-122.33246085423835,50.51398452534475],[-122.3325987586667,50.51383051481965],[-122.33277282077411,50.513687819314846],[-122.33286960099842,50.51351839774978],[-122.33297676437108,50.51335155910355],[-122.33305778584578,50.51318049240492],[-122.33302754804714,50.51300968330855],[-122.33286476460371,50.512862044810326],[-122.33269304024228,50.512715802105184],[-122.33254294994349,50.51256409289038],[-122.33248453979812,50.51239235302071],[-122.33245688740307,50.51221150772347],[-122.33234315947404,50.512046937297946],[-122.33224569174868,50.511877838662755],[-122.3321554049329,50.5117072947013],[-122.33206687968556,50.511536808794254],[-122.33197298115131,50.51136726984695],[-122.3318774137737,50.51119655105785],[-122.33172682934935,50.51105100455637],[-122.3314991845138,50.510941147671616],[-122.33126385800158,50.5108389085255],[-122.33108039399448,50.51070689419825],[-122.33093966810337,50.5105487439746],[-122.3308114978063,50.51038819243804],[-122.33069416746676,50.510224625151196],[-122.33054964945467,50.51006971368055],[-122.33036280569759,50.509935903813286],[-122.33010601666253,50.50985881789962],[-122.32987525044254,50.50976572275019],[-122.32971262572569,50.50961640119226],[-122.32951101494761,50.5094905314334],[-122.32930384875587,50.50936785135049],[-122.32908918358395,50.50925054582516],[-122.3288569820304,50.509153460331014],[-122.3285750943304,50.50912446461995],[-122.32831305467805,50.509068567704674],[-122.32811158773912,50.50894100849515],[-122.32799061192713,50.50877900843859],[-122.32785694668517,50.50862107787762],[-122.3276812760894,50.508480318012815],[-122.32757818486925,50.50831553506216],[-122.32750223774404,50.50814264406308],[-122.32734865864929,50.50799081051088],[-122.32714502670211,50.50786824265477],[-122.32692287416793,50.507756307569636],[-122.32670826894932,50.50763843194656],[-122.32652320738613,50.50750467347371],[-122.32636593015945,50.50735495609186],[-122.32620323430203,50.50720675051858],[-122.32603502839152,50.5070611782924],[-122.32583126738238,50.50694028574541],[-122.32559583702954,50.50683972092494],[-122.32536415815997,50.50673646374365],[-122.3251592339879,50.50660822598248],[-122.32496949422782,50.50646699529692],[-122.32476356601792,50.506351093941284],[-122.32451012218775,50.506298278683836],[-122.3242205940474,50.50629825756976],[-122.32393106663939,50.50629822672884],[-122.32365009157824,50.506279927058976],[-122.32336916214108,50.50626107038432],[-122.32308759295408,50.50625005494795],[-122.32280631923108,50.506257051040194],[-122.32252701122275,50.50628322059261],[-122.32224900506645,50.50631506453091],[-122.32196928399358,50.50634628418298],[-122.32169123163793,50.506378683016905],[-122.32141471098818,50.50641393889654],[-122.32113949194667,50.50645486918746],[-122.32086900564042,50.506502694194005],[-122.32060459936713,50.50656253276311],[-122.3203462275061,50.50663494122813],[-122.3200925872208,50.506714253489015],[-122.31983894604332,50.506793565163186],[-122.31958052545296,50.50686653709203],[-122.31932173825494,50.50694398566552],[-122.31906507665775,50.50701701474794],[-122.31879743196238,50.506986774298205],[-122.31852540260145,50.50692377458119],[-122.3182545847708,50.50686756190816],[-122.31798118200017,50.50682138418108],[-122.31770759645774,50.5067774488888],[-122.3174340114484,50.50673351292077],[-122.31716047317856,50.50668901101322],[-122.31688675134305,50.50664676051138],[-122.31661085709669,50.506609493433025],[-122.31633256073737,50.50658001813408],[-122.316051495299,50.506562820813286],[-122.31576983430332,50.50655290839439],[-122.31548935552755,50.506571716214566],[-122.31521055526616,50.506548411135086],[-122.31493258163647,50.50651500240538],[-122.31465886294468,50.50647274640714],[-122.31439175746345,50.506414398062844],[-122.31411623371842,50.506372638569445],[-122.31383434456562,50.50636552961063],[-122.31355251881291,50.50637922262222],[-122.3132704916776,50.50637379904752],[-122.3130227852538,50.50629415726948],[-122.3128618059439,50.50614711199197],[-122.31272120444163,50.50598837255787],[-122.31260042989543,50.50582466835068],[-122.31245589561566,50.50567086304526],[-122.31228019279065,50.50553119988219],[-122.31209360639396,50.50539510648306],[-122.31191244030926,50.505257510355136],[-122.31174966143959,50.505110970058645],[-122.31163083699832,50.50494508000164],[-122.31149335196069,50.50479149825618],[-122.31125801108239,50.504690337535635],[-122.3110072091435,50.504605531612185],[-122.31103145496894,50.50443877125812],[-122.31116629507265,50.504279626029955],[-122.3112091103195,50.50410166972358],[-122.31121152340842,50.50392125541767],[-122.31124729591981,50.503743065040425],[-122.31132499955349,50.5035702083687],[-122.31142179309538,50.503401359672615],[-122.31152034644707,50.5032325693468],[-122.3116084732401,50.50306175012377],[-122.31168793483695,50.50288895154157],[-122.31179163027768,50.50272201417656],[-122.31193151495773,50.50256584254339],[-122.31207690930398,50.502407046741766],[-122.31222410938716,50.502247743932784],[-122.31233424632966,50.50208833444994],[-122.31225040827769,50.501926413374996],[-122.31216947835662,50.501750535703046],[-122.3120879982963,50.50158138727948],[-122.3118902226963,50.501452801870165],[-122.31171824258327,50.50131101094653],[-122.31160484770541,50.50114360872342],[-122.31137036794284,50.50105372185436],[-122.31111560603425,50.50097440660116],[-122.31094566608685,50.500829308221185],[-122.31082305954266,50.50066666410333],[-122.310720323261,50.50049849926338],[-122.3105703938215,50.50034619284237],[-122.31044511119882,50.50019470528824],[-122.31045665095374,50.50001065272515],[-122.31046104454327,50.50000011044755],[-122.31053597421018,50.49983953217007],[-122.31064327878518,50.49967159967507],[-122.3107694884462,50.49950990938588],[-122.31092299066488,50.49935981421583],[-122.31109701922196,50.49921771539206],[-122.31126428136038,50.49907200864225],[-122.31142166839946,50.49891754344786],[-122.3114778715211,50.49874846998818],[-122.31144855136961,50.49856755794995],[-122.3114121438022,50.49838697716449],[-122.31135049541629,50.49821286309794],[-122.31118788187933,50.49806463388026],[-122.31096428681784,50.49794979866251],[-122.3108645259333,50.4977884797625],[-122.31083530068413,50.497606445786666],[-122.31081288772018,50.497427445186524],[-122.31079760721826,50.49724756595834],[-122.31078936874485,50.497067911722105],[-122.31079706399439,50.49688767136909],[-122.31079929544562,50.496709489625346],[-122.31083983932801,50.496537646388255],[-122.31077476696497,50.49636229304068],[-122.3106082279111,50.49621899715693],[-122.31037871992476,50.49611183593358],[-122.3101641207842,50.495995057214714],[-122.30995887573567,50.49587183228444],[-122.30980326988147,50.495724399940514],[-122.3097022633375,50.495556847949786],[-122.30959949731793,50.49538923731215],[-122.30948589520587,50.49522464010399],[-122.30933992158397,50.49506739655303],[-122.30922423917131,50.49490667044929],[-122.30923018084134,50.49472636222635],[-122.30924844307735,50.49454647261927],[-122.3092667059025,50.494366573996736],[-122.30927607510411,50.49418751324105],[-122.30928363850232,50.49400895021609],[-122.30929476846194,50.49382993893311],[-122.30927773507487,50.49365000017381],[-122.30922684600596,50.49347399193504],[-122.30916002418897,50.493298578453874],[-122.30909496302856,50.49312322342324],[-122.30899753149504,50.49295522204275],[-122.30884591838159,50.4928022970534],[-122.30873204995315,50.49264106325177],[-122.30869380680713,50.492461534318664],[-122.30864833909328,50.49228402329732],[-122.30851303035499,50.49212600773714],[-122.30829863874557,50.49200698170635],[-122.30807471356454,50.49189662608844],[-122.3079549723616,50.49174251035256],[-122.30790274435292,50.49156139100489],[-122.30784685844195,50.49138184133355],[-122.3077128095553,50.49123005628381],[-122.30752972357996,50.491095200469786],[-122.30732839568965,50.49096760077017],[-122.30711979864782,50.49084257485232],[-122.30692027866766,50.4907144766356],[-122.30672812126326,50.49058269130318],[-122.30653420568756,50.4904508380751],[-122.30633080139349,50.490327107872815],[-122.30611045499676,50.4902163089147],[-122.30587321202816,50.49011788480724],[-122.30563208307937,50.49002382031394],[-122.30539285268266,50.48992813600802],[-122.30515200084503,50.48983071471847],[-122.30491277249061,50.48973502935591],[-122.3046696573397,50.48964371254044],[-122.30442409384075,50.4895607438521],[-122.30414745292303,50.4895554728211],[-122.3038985084826,50.48947070788192],[-122.30364808093394,50.489382519058594],[-122.30338243729649,50.489329244209145],[-122.30309171807315,50.489323501591095],[-122.30281391715823,50.48931087394164],[-122.30265391803005,50.48917451983454],[-122.30243173431423,50.48906477635841],[-122.30220228141215,50.48895760627386],[-122.30196528400995,50.48885636526454],[-122.30172213391533,50.48876559819681],[-122.30146875815495,50.488691926106206],[-122.30119701221074,50.48864857310784],[-122.30091341917428,50.488620560445725],[-122.30063334565186,50.48859267335736],[-122.30035244466896,50.48857487068153],[-122.3000914336352,50.4885082554263],[-122.29972488375796,50.4884589221066],[-122.29955615811043,50.488257043166016],[-122.29942089256073,50.48809902472171],[-122.29928391444781,50.48794038212827],[-122.2991544838159,50.48777580098263],[-122.29901199729646,50.48761979033248],[-122.29883052843057,50.48748721243129],[-122.29861739170518,50.487374955126946],[-122.29838944077059,50.48727119136471],[-122.29815042455691,50.487173248005845],[-122.2979075668264,50.48707911667478],[-122.29766290453321,50.48698548238843],[-122.29742194727244,50.48688972184904],[-122.29718663919981,50.48678965066674],[-122.29698151718078,50.48666584407091],[-122.29680607486526,50.486524466342956],[-122.29667253829447,50.48636705923512],[-122.29655002251107,50.486204396474704],[-122.29644010297775,50.486038779956885],[-122.29635000323559,50.485868201509376],[-122.29625990417472,50.48569762295297],[-122.29614994049308,50.48553257131396],[-122.29601830757593,50.48537353512508],[-122.29588310951343,50.48521494654155],[-122.29574244865127,50.485058424673774],[-122.29561438386757,50.48489894909757],[-122.29552966107117,50.484727424406074],[-122.29546651720658,50.48455099672181],[-122.29537813743787,50.484381041188314],[-122.29525928989297,50.48421680726127],[-122.29511863430673,50.48406028441082],[-122.29495043063085,50.483916904137324],[-122.29475824569012,50.48378620959291],[-122.29455508812708,50.483660213678405],[-122.29435748752702,50.4835310289581],[-122.29416169352979,50.48340134633389],[-122.293969605278,50.483269528773796],[-122.29379038877752,50.48313140182913],[-122.29364108175868,50.48297289619994],[-122.29348029456995,50.48282526233189],[-122.29326117698837,50.482721781347635],[-122.29301187529984,50.4826420428411],[-122.29274572328835,50.4825741029454],[-122.29247744266434,50.48251059885672],[-122.29221282093673,50.48244552487132],[-122.29194602549079,50.482385434016166],[-122.29167899972835,50.48232815092012],[-122.2914102607192,50.48227025207106],[-122.2911472635828,50.482206912201924],[-122.29089033027128,50.48213421932692],[-122.29064122059609,50.482052232307694],[-122.2903942414198,50.481965808307976],[-122.29015110521877,50.481875580412336],[-122.28990820038624,50.481782552544374],[-122.28966895472362,50.48168795497323],[-122.28942799693074,50.48159273276507],[-122.28918875328137,50.481498134137276],[-122.28894585246492,50.481405104121436],[-122.2887046665015,50.48131268871298],[-122.28846357386695,50.48121915120422],[-122.28822257457867,50.48112449159527],[-122.28798523447495,50.48102826234512],[-122.28779090640533,50.480902547949924],[-122.2877100171805,50.48072776948467],[-122.28759449513466,50.480566452755944],[-122.28741174384619,50.48042875361537],[-122.28719936202093,50.480308057191785],[-122.28696188946,50.48021351249382],[-122.28670733395931,50.48013358294892],[-122.2864671298218,50.480029381604396],[-122.28623623255054,50.47991931005936],[-122.2859691561683,50.47996997786156],[-122.28575833966731,50.480023095080625],[-122.2856932076393,50.479871335263915],[-122.28566770327167,50.479666918241236],[-122.28563025557845,50.47947897124572],[-122.28558308627808,50.47930194534714],[-122.28553596392214,50.479124354120266],[-122.28548347012794,50.4789477166626],[-122.28543449657656,50.47877118797823],[-122.28539983038266,50.47859233104402],[-122.28536868352805,50.47841359187083],[-122.285339342282,50.47823435525801],[-122.28530287152265,50.478055995566535],[-122.28524681502381,50.4778797962482],[-122.28517830343989,50.477704871341565],[-122.28509548573469,50.47753227451038],[-122.28498914834901,50.47736676271049],[-122.28483586365533,50.477214299408885],[-122.28464748621397,50.477080904682516],[-122.28444262759683,50.476954830312756],[-122.28425605845774,50.47682092852936],[-122.28411537165185,50.4766655118868],[-122.28402181830275,50.47649480361712],[-122.2839781773288,50.47631789423862],[-122.2839507414437,50.47613702888244],[-122.28389460016439,50.47596195003353],[-122.28379377991281,50.47579381411723],[-122.28369296115211,50.47562566910183],[-122.28361547704216,50.475452691221896],[-122.28349864013339,50.47528625869584],[-122.2834874598809,50.47512224960596],[-122.28375020320694,50.47505962969512],[-122.28397275016441,50.474949560525914],[-122.28416705094637,50.47481829191822],[-122.28435621071574,50.47468516831209],[-122.28458357037461,50.474580882493036],[-122.2848375086783,50.4744965965861],[-122.28504801181896,50.474382748066816],[-122.28520165308963,50.474230996945195],[-122.28535191283639,50.47407744989637],[-122.28552254465701,50.473933582049334],[-122.28569312882289,50.473790279187796],[-122.28585366433916,50.47364044950389],[-122.28602077422522,50.473496463016865],[-122.28623807648383,50.47338564713438],[-122.2864769099551,50.47329185472112],[-122.28664596062958,50.473145682968386],[-122.28673574395964,50.472976613909935],[-122.28678922754786,50.47279845716045],[-122.28692382806247,50.47264213460655],[-122.2870912079091,50.472494781600304],[-122.2872769688755,50.472359856999596],[-122.28750778285671,50.47225623894806],[-122.28772873295455,50.47214385086993],[-122.28784596588724,50.471984138923816],[-122.28789064752702,50.47180568709061],[-122.28794056082873,50.47162796809949],[-122.28800274205129,50.47145122637439],[-122.28809256272334,50.47128159956123],[-122.28823590466537,50.47112612574199],[-122.28842837081015,50.47099535547359],[-122.28865264555999,50.4708853352307],[-122.28883334866497,50.470747422757],[-122.2890291918413,50.47061844697387],[-122.28926480908659,50.47052060949856],[-122.28951038039482,50.47043041932429],[-122.28974956057371,50.470332133201445],[-122.28990965468316,50.470187348620925],[-122.29003756887205,50.47002630011946],[-122.29016210251987,50.46986344691675],[-122.29030529405232,50.46970965701504],[-122.29050460040622,50.46958136139842],[-122.29074354290093,50.469485881477716],[-122.29100332424782,50.469415840515765],[-122.29126328928247,50.469343555770095],[-122.2915230690036,50.4692735135797],[-122.291793594219,50.46922294936116],[-122.29208218552856,50.469210102411814],[-122.29231964719564,50.46913256442954],[-122.2925122309609,50.469000108867284],[-122.29269846886386,50.46885900140173],[-122.29289262584167,50.46872883812623],[-122.29308682743088,50.46859811818298],[-122.29328436181487,50.46846975861631],[-122.29348532118588,50.46834263782157],[-122.29371114520555,50.46823490895508],[-122.29398097078482,50.468192746769915],[-122.29426510698029,50.46816962352182],[-122.29454396545277,50.46814632326299],[-122.2948114230245,50.46809002615262],[-122.29507114358096,50.46802054083376],[-122.29533438234962,50.467951163425745],[-122.29561438169907,50.467892476117115],[-122.29587437700764,50.46781961515787],[-122.29607412857601,50.46770707025843],[-122.29622025864796,50.467560119340774],[-122.29633966932893,50.46739484829895],[-122.2964525039983,50.46722372523841],[-122.29657719025153,50.46705863006476],[-122.29673062929959,50.46690854849481],[-122.29690462383316,50.466765900930255],[-122.29708875772758,50.466628648077624],[-122.29727784506173,50.466495501114565],[-122.29748396954474,50.46636967051963],[-122.29773001820743,50.466294657455336],[-122.29801099067502,50.4662669207676],[-122.29828797449949,50.46622330493196],[-122.29856575982213,50.46621289734592],[-122.29884448643854,50.46623400215251],[-122.29912405120166,50.46626638987709],[-122.29940416933333,50.46629203834835],[-122.29968691031354,50.46628572510976],[-122.29994629126296,50.46622014933263],[-122.30019681899111,50.466133475861604],[-122.30042919288844,50.466031566735474],[-122.30063155795244,50.465908421368454],[-122.30081743607542,50.46577122085117],[-122.30100326670174,50.4656345852849],[-122.3011565941989,50.4654856189324],[-122.30128098247553,50.465323882917666],[-122.30145986569165,50.46518589029428],[-122.30165240653113,50.465053409260086],[-122.30185166007142,50.46492509253812],[-122.30205595925662,50.464799759851665],[-122.3022449323126,50.46466772572863],[-122.30236913124911,50.464508222559566],[-122.3024780492647,50.46434147086683],[-122.30263502380194,50.46419093261689],[-122.3028357994979,50.46406548111522],[-122.30305671693789,50.46395250508656],[-122.30328749803718,50.46384828787188],[-122.30352944145662,50.46375850501929],[-122.3038086355895,50.463730694953696],[-122.30409192397558,50.46373900993195],[-122.30443047627975,50.463740168117944],[-122.30464244790325,50.46369324629663],[-122.30457057413054,50.46355870803604],[-122.30439911631143,50.46339104365537],[-122.30423154534454,50.4632190097745],[-122.30413785187827,50.46304943722282],[-122.304053184029,50.462877349112844],[-122.3039432937702,50.46271173524601],[-122.30383344991044,50.46254556492043],[-122.30374151826842,50.46237605050701],[-122.30368365034653,50.46219979846763],[-122.3036221731172,50.462024550729616],[-122.30355893745492,50.46184924430091],[-122.30348677024331,50.461675322621566],[-122.30340562451107,50.461503359937254],[-122.30331735264222,50.46133227530029],[-122.30322722989094,50.46116226251204],[-122.30313720048888,50.46099111903554],[-122.30305068877296,50.46082010167617],[-122.30297135143881,50.46064763182922],[-122.3028938655067,50.460474098911085],[-122.3028217030557,50.460300176503054],[-122.3027548632906,50.46012587358812],[-122.30271481994743,50.45994740733386],[-122.30275577569462,50.45977050752459],[-122.30282130828319,50.459594993781444],[-122.30289554249823,50.45942089471675],[-122.30298880088976,50.45925137058971],[-122.30310640674703,50.4590860229696],[-122.30330354890818,50.45896157418563],[-122.3035244865297,50.45884803122048],[-122.303723661035,50.45872027544369],[-122.30392112195211,50.458591895384565],[-122.3041268705307,50.458469972375674],[-122.30434761914147,50.45835867989766],[-122.30457674736664,50.458252722744014],[-122.30480407017234,50.458147262823765],[-122.30502819560758,50.45803776407742],[-122.30524569799273,50.457922987725944],[-122.30545981993494,50.45780640684889],[-122.30567898772902,50.457692800844264],[-122.30591801892122,50.45759504363856],[-122.30611019244823,50.4574664837617],[-122.3061789042749,50.457295014827615],[-122.30618480686482,50.45711526368175],[-122.30619075570056,50.45693494720181],[-122.30618786462006,50.45675490308871],[-122.30617076575395,50.45657607722392],[-122.30613247149238,50.456397661021974],[-122.30608885515744,50.4562196343247],[-122.30605407816154,50.45604134414762],[-122.30605641816547,50.45586203189155],[-122.30610614974593,50.45568543182049],[-122.30616647922889,50.45550861786105],[-122.30622148670382,50.455332184421295],[-122.3062764930141,50.455155759888626],[-122.30632974098297,50.454979267741905],[-122.30637081545531,50.454800687569424],[-122.30624821225558,50.45463971606976],[-122.30610395605969,50.4544847621925],[-122.3059599756729,50.454326452217096],[-122.3058085488613,50.45417295048448],[-122.30563288329495,50.45403551116732],[-122.30541419874068,50.45392812929685],[-122.30516193116318,50.453843246274566],[-122.30490961896362,50.45375891899252],[-122.3046577208092,50.4536695483346],[-122.30439129549478,50.45358531633596],[-122.30412306627346,50.4535015903739],[-122.30386941252961,50.45341215928811],[-122.303644908016,50.453311327711255],[-122.30346408084755,50.45319395669598],[-122.30336153853906,50.45304657925129],[-122.30334098147533,50.45286706958775],[-122.30336039951845,50.45267314692861],[-122.30337967989504,50.45248090216049],[-122.30337152469482,50.45230068111258],[-122.30337040368389,50.452120694513326],[-122.30337631677807,50.45194094236309],[-122.30338755096373,50.45176080971561],[-122.30340757834536,50.45158096116315],[-122.30342940965701,50.451400614864745],[-122.30344763189476,50.45122127289975],[-122.30345877371016,50.451042261704565],[-122.30343974625518,50.45086560979903],[-122.30334085155617,50.45069530178885],[-122.303277679175,50.450519427439716],[-122.3032001631226,50.45034645785233],[-122.30308665207487,50.450182401259156],[-122.30295514337091,50.4500228100101],[-122.3028145212958,50.44986685557936],[-122.30266298261468,50.449715026651994],[-122.30250223875983,50.44956795609221],[-122.30233978312538,50.44942027030954],[-122.30217908770766,50.449272633930434],[-122.30202019735486,50.44912449961107],[-122.30186320399665,50.44897474573692],[-122.3017027412193,50.4488243090174],[-122.30159446827835,50.44866099183246],[-122.3015525437458,50.44848414191686],[-122.30152329599946,50.448303216019816],[-122.3014743849285,50.44812556609035],[-122.30142010645766,50.44794887073564],[-122.30135333672892,50.447773999007524],[-122.30126505312892,50.44760347512288],[-122.30115530222197,50.447436733734946],[-122.30103657651152,50.44727194215328],[-122.30092146029459,50.44710614611012],[-122.30082411211063,50.446938693297454],[-122.3007553575838,50.446766570874075],[-122.30072579189668,50.44658957455276],[-122.30072121131275,50.44640890402216],[-122.30072555983553,50.44622684882376],[-122.30072273684466,50.44604624584945]]]}' - )), 4326)))); - -INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Omineca','7','7- Omineca','AR10100000','WHSE Admin Boundary',5 - , '{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.59999999804931,55.34223720563551],[-122.59996943594632,55.34227112800909],[-122.59990550357475,55.342325442600675],[-122.59989017503788,55.3423429630522],[-122.59984166586817,55.342378638609496],[-122.59981091384569,55.34241479804551],[-122.59977788560788,55.342477802680655],[-122.59974591914948,55.342504959931986],[-122.5997152617859,55.342540000794735],[-122.59952370781487,55.34263007701746],[-122.59947595676371,55.34265680403301],[-122.59938197209692,55.34269236120949],[-122.59915975859005,55.3428174776498],[-122.59909637440003,55.34288862385469],[-122.59898423287399,55.34295171425648],[-122.59892191079271,55.34298701300299],[-122.5987942880668,55.343022774018756],[-122.59862012704899,55.3430942637741],[-122.59862058212639,55.343112214350626],[-122.59855825947602,55.343147512916296],[-122.59827250633002,55.343182326064934],[-122.59786125177851,55.34329780196843],[-122.59778350343298,55.3433517388995],[-122.59773499117122,55.343387413642326],[-122.59767120410231,55.34348657664829],[-122.59765511493333,55.34351304521806],[-122.5976225370437,55.34359399987168],[-122.59759056823773,55.34362115657459],[-122.5974635467489,55.343719716367374],[-122.59732149919668,55.34380889719965],[-122.59717717303145,55.343924923034585],[-122.59711423799149,55.34401401882556],[-122.59711231945508,55.34405993312042],[-122.59711231348945,55.34417653120346],[-122.59715747917801,55.34432014730813],[-122.59717417299554,55.34435647894103],[-122.59722070816031,55.34443734869148],[-122.59723512410824,55.34450052548271],[-122.59725115366365,55.34454468694616],[-122.5972963804706,55.34461767302318],[-122.59737382195794,55.344707233451444],[-122.59742066266166,55.34476120415641],[-122.59746795807273,55.34483312542817],[-122.59749937358161,55.34490573481035],[-122.5975620947781,55.344959017335704],[-122.59759260127674,55.34499572552703],[-122.5975583488735,55.34516632549589],[-122.59755925812586,55.34520222666496],[-122.59751165263917,55.34527380249771],[-122.5974466481468,55.34536396321564],[-122.59735159124435,55.345435366241745],[-122.59722441381271,55.34548907624859],[-122.59711387574376,55.34553314966066],[-122.59706611963331,55.34555987576317],[-122.59701866222672,55.34567630097401],[-122.59698501686253,55.345793102845526],[-122.59697004516977,55.345829692081686],[-122.59690543857216,55.34589183499831],[-122.59682571072067,55.345945717536246],[-122.59671501478991,55.34606153913945],[-122.59669882902344,55.34608912614197],[-122.59665091569371,55.34618760063013],[-122.59663376000847,55.346249916439895],[-122.59663350875898,55.34632278353222],[-122.59664801939633,55.34638484185578],[-122.5966944609175,55.3464668303689],[-122.59674175703725,55.34653875192922],[-122.5967867749297,55.34663751863655],[-122.59686335810615,55.3468537444555],[-122.59689410958626,55.34693418384632],[-122.59692369522257,55.347168187269666],[-122.59701783569827,55.34729407961982],[-122.59703179793802,55.3473393058635],[-122.59703179173795,55.34745590398879],[-122.59699875498755,55.347518907923735],[-122.59682304549848,55.34772489011733],[-122.59674498197444,55.34780572541002],[-122.59669646340485,55.34784139976684],[-122.59656988057615,55.347957909289555],[-122.59653638848629,55.34800296251196],[-122.59650318621857,55.348254313013335],[-122.59650196473044,55.34836190894377],[-122.59651759471377,55.348434088051775],[-122.59653140028227,55.34855106291859],[-122.59651545716325,55.34862238093487],[-122.59649784603548,55.34866674614739],[-122.59643511252271,55.34873006120736],[-122.59627649863825,55.34882775873044],[-122.59626000591571,55.34888224466815],[-122.59624406218276,55.348953562652405],[-122.59624153130993,55.34905327492723],[-122.59622634711435,55.349115644523415],[-122.59614706598535,55.34918747724466],[-122.5960198750495,55.34924118604708],[-122.59598754165202,55.34924927321005],[-122.59594129977788,55.34925810212176],[-122.59589308452576,55.34926687718812],[-122.59579938705303,55.349275532709996],[-122.59567204748018,55.349284391575715],[-122.59556210927158,55.349274665665746],[-122.59551465371653,55.34927449220271],[-122.59538852761386,55.349292352996535],[-122.59527697476486,55.34930164214769],[-122.59516749020773,55.34930986649124],[-122.59507333891698,55.34930057086707],[-122.59496188096259,55.34930874118923],[-122.5948359014642,55.3493714510092],[-122.59470794820777,55.349434106855604],[-122.59456694099694,55.349487437250794],[-122.59440883813429,55.34953245299404],[-122.59425113681876,55.349549451009544],[-122.59417201202405,55.34954953391334],[-122.59410831606486,55.349530978466404],[-122.59401523168812,55.34948583468932],[-122.59396656267316,55.34947665840619],[-122.59390408012669,55.34946710508764],[-122.59376247299562,55.349457634382155],[-122.59369837508528,55.34946709625223],[-122.5935245794273,55.34951056142552],[-122.59339783677166,55.34958221816754],[-122.59330321544483,55.3496715687539],[-122.59327047856543,55.349707672738994],[-122.59320560249807,55.349842680882006],[-122.5931899605597,55.349887099504784],[-122.59309412501509,55.34996744769527],[-122.59298347502548,55.35001263601932],[-122.59288901478439,55.3500302377268],[-122.59279410191071,55.350029888751386],[-122.5927474059056,55.35002076586978],[-122.59260579709364,55.35001129385219],[-122.59257488826769,55.35000260194615],[-122.59252773991419,55.349975528370166],[-122.59243237478593,55.349957228507584],[-122.592290005741,55.34995670449684],[-122.59218006651028,55.349946975608965],[-122.59214915782607,55.34993828359766],[-122.59211834422646,55.34992847303317],[-122.59210272157448,55.349856293362784],[-122.59210379047845,55.34982044602357],[-122.59208821671149,55.34979423448728],[-122.59205695102037,55.34976647329437],[-122.59203985613807,55.349758158476874],[-122.59194584824937,55.34979371008426],[-122.5918830572103,55.349811054730125],[-122.5918195054827,55.34983734770553],[-122.59180286272326,55.349846983470165],[-122.59170702449696,55.349927330595996],[-122.59169168947642,55.34994485005578],[-122.59161130729173,55.350169125400384],[-122.59154552090762,55.350268231455416],[-122.5915135426714,55.35029538662262],[-122.59143577223479,55.350349319642945],[-122.59140251060079,55.350438102549155],[-122.59140103715292,55.35050196740634],[-122.59141630194704,55.35055507800718],[-122.59143254121336,55.35057345981507],[-122.59146466292029,55.35059115426228],[-122.59149471614765,55.35060991334848],[-122.59152638592205,55.35060965716254],[-122.59158963038205,55.35061026331135],[-122.59185706446709,55.35062877835685],[-122.59203186627951,55.35062009818401],[-122.59231584853538,55.35063009499653],[-122.5923777162047,55.350693447069986],[-122.59240922215568,55.35076493923397],[-122.59239027789019,55.35091801834437],[-122.59235858809758,55.35103487292068],[-122.5922786798024,55.35116050116335],[-122.5921978664129,55.35125022812444],[-122.5920882114478,55.35133019834857],[-122.59208669024154,55.35134809507688],[-122.59203636166906,55.351591129668975],[-122.59202592628674,55.351690626330814],[-122.59200281982696,55.35186937805639],[-122.59195457962085,55.35199474978861],[-122.59192122268902,55.35208465139479],[-122.59189045608984,55.35212080891885],[-122.59179385192282,55.352210104495654],[-122.59173150913547,55.35224539968953],[-122.59163673442454,55.3522898994371],[-122.5915248636337,55.35232608422269],[-122.5915092188665,55.35237050264723],[-122.59149317020857,55.352442938597946],[-122.5914928614465,55.35246983758068],[-122.59150758001438,55.35250611610613],[-122.59156999642352,55.352586300669124],[-122.59161714719863,55.35261337461446],[-122.59169587432402,55.352641310858466],[-122.59169556569636,55.352668209842335],[-122.59167752197243,55.35285719011959],[-122.59166142509198,55.3528836579445],[-122.59162837543958,55.35294666049676],[-122.59159725096104,55.352963748785086],[-122.59150176178785,55.353063164948814],[-122.59142134674237,55.35312487389647],[-122.59134357069739,55.35317880687661],[-122.59129580164314,55.35320553079511],[-122.59126382089686,55.35323268590725],[-122.5912002633438,55.353258978577564],[-122.59116904333509,55.35327718530485],[-122.59115102014826,55.35334956731611],[-122.59121419799443,55.35342080370393],[-122.5912930694364,55.353493589813645],[-122.59137113235955,55.3535293560814],[-122.59141707134083,55.35354742784351],[-122.59148077243161,55.35356598467131],[-122.59152716352702,55.353602007016384],[-122.59160567892832,55.353655723761364],[-122.59179295816057,55.353872733892004],[-122.59185483000438,55.35393608624757],[-122.59187130958868,55.353998199070844],[-122.59185236174423,55.354151278155285],[-122.5918379295096,55.35420469888783],[-122.59180380975661,55.3543035488506],[-122.59178700012959,55.35438493322035],[-122.59180338470256,55.354448164601436],[-122.59181819936734,55.354483324552724],[-122.59184916002988,55.354537984810065],[-122.5919273692067,55.35461860034873],[-122.5919593992837,55.354637413222456],[-122.59202167607965,55.35467274796436],[-122.5921162915688,55.35469999651796],[-122.59214634817863,55.35471875545612],[-122.5921947148271,55.354754831445376],[-122.59225668374455,55.35481706506216],[-122.59225642449181,55.35488993221531],[-122.59222242906631,55.3551502301414],[-122.59217434992406,55.35520385339469],[-122.5921423681795,55.35523100873789],[-122.59203148926493,55.355301976692125],[-122.59190351271519,55.35536462970714],[-122.59179263300882,55.35543559745033],[-122.59158566247493,55.355543181106015],[-122.59144325117617,55.355659254361704],[-122.59136349657894,55.355713133471106],[-122.59129998308266,55.355785394365924],[-122.59128433671756,55.35582981277957],[-122.59126583770136,55.356000842435826],[-122.5912807954767,55.356080852079415],[-122.59131220859528,55.35615346310908],[-122.59132692835122,55.356189741671045],[-122.59137377432633,55.356243714713024],[-122.59140590054723,55.35626140918666],[-122.59145167705353,55.35635122955947],[-122.59150004504542,55.35638730582434],[-122.59153055468731,55.35642401554325],[-122.5916241044647,55.356487111836266],[-122.59163968052651,55.356513323450315],[-122.59170186485436,55.356549776905],[-122.59181317861575,55.35661335810588],[-122.59184333161203,55.35663099857505],[-122.59184392745085,55.35669379882818],[-122.59182573899476,55.356837929587115],[-122.59177810947206,55.3569095033271],[-122.59172926683796,55.35697207478786],[-122.59166651281262,55.35703538751154],[-122.59163376845143,55.357071491097614],[-122.59157065714113,55.35711573459791],[-122.59142809703951,55.357186958229086],[-122.5914115462453,55.357195475403906],[-122.59131604653965,55.357294891473245],[-122.59126948541468,55.3573306176603],[-122.59122049852884,55.35734833929597],[-122.59111023024546,55.357365508455324],[-122.59104809282505,55.35737502287742],[-122.59085899335014,55.3573653736931],[-122.59062242887347,55.35735554890046],[-122.59054217112184,55.35734550868668],[-122.59043287801717,55.35732794843693],[-122.59030698714346,55.35727293694555],[-122.59026028327342,55.357263813126536],[-122.59021236681524,55.35724568701347],[-122.59016490185468,55.357245511517554],[-122.58988163451417,55.357226561450105],[-122.58980249456924,55.35722664158572],[-122.58972304463848,55.35725362066407],[-122.58969115475695,55.3572796568415],[-122.58959534051542,55.35740597058969],[-122.58938827977505,55.35758418070948],[-122.58929367626962,55.35771949651584],[-122.58924527982357,55.357800017650945],[-122.58922796694941,55.35781748289042],[-122.58921329402673,55.35782717225223],[-122.58915017885829,55.357871414533335],[-122.58905341421936,55.35791585841427],[-122.58891160824312,55.35797813082766],[-122.58886428273537,55.35802280447251],[-122.58884822704064,55.35809524012973],[-122.58884715500719,55.358131087474455],[-122.58886232414164,55.358185316977234],[-122.58890885859192,55.35826618994986],[-122.58894067482697,55.35831078405578],[-122.58898523578357,55.358391603063104],[-122.58901664655666,55.3584642146891],[-122.58903150558702,55.35854534316856],[-122.58906377315672,55.35860788788691],[-122.58906270130217,55.35864373523564],[-122.58909366142112,55.358698396201795],[-122.58909335100203,55.3587252951977],[-122.5891090668694,55.35879635677275],[-122.5891245470088,55.358823687251395],[-122.58918673263237,55.35886014196778],[-122.5892655654961,55.35888696121913],[-122.58935897658432,55.35890520958677],[-122.58940765598376,55.35891438767521],[-122.58950151837713,55.35895058657817],[-122.5895327894576,55.35897834843957],[-122.589547913922,55.35898660968042],[-122.58962617315412,55.35911319488514],[-122.58970167024833,55.359365272755],[-122.58977912324899,55.35945483804081],[-122.58980977502509,55.35953639783469],[-122.58980929650971,55.359635045477596],[-122.58976166006843,55.35970661847157],[-122.58971433346821,55.35975129244731],[-122.5896488367394,55.359823498609884],[-122.58963349703704,55.359841017836445],[-122.58966424397543,55.35992145912492],[-122.58972688308022,55.359975864220054],[-122.59002455337517,55.36017459066961],[-122.5900395832384,55.36018397039708],[-122.59018151094227,55.3602831446253],[-122.59030648223558,55.360418853274226],[-122.5903352313975,55.36061583878403],[-122.59066308757393,55.36099477105727],[-122.59069369509137,55.36103036245437],[-122.59077243809239,55.36105829930713],[-122.59081914649667,55.36106742293859],[-122.59089950689564,55.361076344432895],[-122.59100947631713,55.3610860744603],[-122.5910403933438,55.3610947667647],[-122.59108679275049,55.36113078930428],[-122.5911964533389,55.36116741817549],[-122.59121355290844,55.361175733119225],[-122.59126040455365,55.36122970623466],[-122.59132304786603,55.36128411053755],[-122.59133807844859,55.36129349011005],[-122.5913702086979,55.36131118460295],[-122.59147865702094,55.3613388109576],[-122.59152733985854,55.36134798822257],[-122.59171645826821,55.36135763639952],[-122.59177850659144,55.36134924018714],[-122.59187344623845,55.36134958993478],[-122.59200037262781,55.36132278429264],[-122.59204860322185,55.361314010717095],[-122.59222071684714,55.36131422475436],[-122.59239404369598,55.361323440814374],[-122.59252101898153,55.361342602838405],[-122.5925983375942,55.36138731674826],[-122.59264519134973,55.361441289345656],[-122.5926779878744,55.36145115367203],[-122.59273982322699,55.36146853744811],[-122.59280308482546,55.36146914298331],[-122.59286710704714,55.36146080010722],[-122.59293077157847,55.3614333880167],[-122.59296123653606,55.361424129211905],[-122.59299358035692,55.36141604282117],[-122.5930885201726,55.361416391645484],[-122.59323016935991,55.36142586312789],[-122.59337181861412,55.36143533444984],[-122.5934344147374,55.36144376949977],[-122.59359124088664,55.36150746953919],[-122.59368511312256,55.36154366530951],[-122.59371724460753,55.36156135919941],[-122.59377943864865,55.361597811640976],[-122.59381071475335,55.3616255724399],[-122.59392121937638,55.361768730301925],[-122.59398234638076,55.36184103004675],[-122.59402950966219,55.36186810311],[-122.59412459676543,55.36191330079604],[-122.5942021302425,55.36193223324631],[-122.59429569706776,55.36199532757825],[-122.59440672316933,55.36208580552693],[-122.5945002906746,55.36214889970671],[-122.59455299651093,55.36218060831896],[-122.59460974544689,55.3622113060574],[-122.5946672547041,55.362233055379164],[-122.5949086827127,55.36230242483664],[-122.5950191101515,55.3623301019648],[-122.59508161299946,55.3623396547395],[-122.59520868779995,55.362357695484754],[-122.59541329765729,55.362394667800686],[-122.59552336679333,55.362403275306605],[-122.59571249113907,55.36241291743556],[-122.5958074333377,55.36241326419357],[-122.59585414446477,55.36242238594398],[-122.59594756678267,55.36244062939235],[-122.59599625197978,55.36244980491697],[-122.59602631621087,55.36246856293807],[-122.59604632044618,55.362489288923065],[-122.59539159385274,55.36248713055361],[-122.59224101578636,55.36247179839962],[-122.59222101038449,55.36466196604719],[-122.59099318676465,55.36660502222968],[-122.59279021725779,55.3704188767168],[-122.59931932054776,55.370436548922434],[-122.59947734989292,55.37057987403457],[-122.5999170579317,55.37073871750139],[-122.5999998701613,55.37076563754496],[-122.60024257402961,55.370843998959785],[-122.60029522254598,55.37096987877686],[-122.60029302496005,55.37113574736654],[-122.60030851748381,55.37116307649823],[-122.60032355723675,55.37128905344438],[-122.60035281956777,55.371503987525536],[-122.60054053232089,55.37169408592288],[-122.60061833612811,55.371756745551195],[-122.60072849082326,55.37181131672866],[-122.60078187845286,55.37183519286569],[-122.6007469659727,55.371873482260916],[-122.60072841855187,55.37190549033451],[-122.60057859664445,55.37220187655119],[-122.60056804180184,55.37223298106438],[-122.60051791000755,55.37249732595269],[-122.60043736413026,55.372816899730005],[-122.60043622540891,55.372830322385816],[-122.60040029333267,55.373090569321924],[-122.60040036996676,55.37311299417214],[-122.60042984574962,55.373418746240496],[-122.60043387150742,55.37344127860481],[-122.60050870436305,55.37370229880125],[-122.60051715379505,55.37371934590025],[-122.60104177377342,55.37479085995952],[-122.60162751389319,55.37602884173037],[-122.60207371318126,55.377045522606714],[-122.60262045937851,55.378067178994115],[-122.60343719664775,55.379803612819806],[-122.60429045509274,55.38146031088537],[-122.60512730291816,55.383007805308786],[-122.60580505015041,55.3844478248739],[-122.60628576405948,55.38533985704143],[-122.60667029806389,55.386199003436545],[-122.60707135095083,55.3871438032457],[-122.60774250430731,55.38835940320468],[-122.60786257446499,55.38860146544644],[-122.6080484792444,55.389024696706976],[-122.60806041218056,55.38904744341359],[-122.60837075479934,55.38949759668902],[-122.60854606121255,55.38971873508159],[-122.60870039803946,55.3899303348434],[-122.60870923318821,55.38994290716919],[-122.60874890340673,55.38998882946386],[-122.60877240520685,55.390015253546416],[-122.60878866841728,55.39003363318283],[-122.60879938429804,55.3900473776905],[-122.60882524035041,55.39006938113441],[-122.60885259831844,55.39009703101366],[-122.60897181282458,55.39020901714471],[-122.60920093496847,55.39042600959771],[-122.60958571730235,55.390862483892086],[-122.60960198122945,55.39088086342465],[-122.61000901343779,55.3912417029736],[-122.61025198776007,55.39143552530665],[-122.61027417858647,55.39145406555766],[-122.61058808286354,55.39165205399579],[-122.61085620000374,55.39180619638289],[-122.6111089765921,55.391977860128456],[-122.61137181023565,55.39217109761636],[-122.61140745189539,55.3921944870167],[-122.61154391492599,55.39226657744386],[-122.61158557788966,55.39228900897131],[-122.61161021844185,55.392302009738835],[-122.61163673988102,55.392316182646994],[-122.61166730696281,55.39232934414221],[-122.61170934856123,55.392347301365284],[-122.6117473445719,55.392366269984336],[-122.61198613363635,55.392492707129485],[-122.6123367491187,55.3926782327392],[-122.61237324325913,55.392691554768156],[-122.612791135788,55.39285423837453],[-122.61322294429816,55.393039720367454],[-122.61324984513078,55.39304941866634],[-122.61363831141598,55.39318551553305],[-122.61399912262806,55.39332086160503],[-122.61421996550455,55.393425506286576],[-122.61424103472419,55.39343392518789],[-122.6142755546282,55.393447193124324],[-122.61429060264189,55.393456569971235],[-122.61434571907587,55.39348384961784],[-122.61477031091613,55.39363773869129],[-122.61513771847461,55.39376541209682],[-122.6151587880657,55.39377383084391],[-122.61522058849934,55.39379232212846],[-122.61528643467197,55.39380980185792],[-122.61531173905578,55.39381497191694],[-122.6153679909959,55.39382882828853],[-122.61558161826476,55.39387833957318],[-122.61591611637063,55.39397372744552],[-122.61594339652497,55.39397895088889],[-122.61613586086457,55.39402116118175],[-122.61647196791955,55.39409753188778],[-122.61695463125295,55.39422047311225],[-122.61727059924768,55.39432432446336],[-122.61728800179279,55.39432928015971],[-122.61800574444351,55.39452921287387],[-122.61858151729604,55.39476902293961],[-122.61922701100052,55.3950039900414],[-122.61973261854574,55.395230684529295],[-122.62012676508657,55.3953938208167],[-122.62042909664945,55.395542139879566],[-122.62072718329046,55.395740794006265],[-122.62108312798517,55.3959578289564],[-122.62110956082165,55.395973118434966],[-122.62163464780228,55.396274325700475],[-122.62195032739102,55.39652278182138],[-122.62220053964863,55.396725743319934],[-122.62254680050762,55.39698735686934],[-122.62425351574389,55.39832949904323],[-122.6279889891824,55.39676998435903],[-122.63019205685073,55.39619262584839],[-122.63461314275584,55.396177253581286],[-122.6394302327854,55.39672844842455],[-122.6408246540399,55.39559102136814],[-122.64032029393648,55.395182829055514],[-122.63868046502597,55.39188301350071],[-122.64083376445944,55.386227755242274],[-122.64294580309615,55.37784483930885],[-122.64556364365119,55.368704190271515],[-122.64912263734186,55.35472770906412],[-122.6566480476412,55.34494730359009],[-122.65952072029329,55.34236949654849],[-122.66919511290196,55.336744678458984],[-122.67889146654592,55.334832768552246],[-122.6823058196613,55.335049174938526],[-122.68763509505318,55.335827550673194],[-122.69356667688137,55.33716873632243],[-122.69899673574804,55.33903447075501],[-122.6997094456599,55.339600401711614],[-122.70305417376606,55.342208963515105],[-122.70657160686078,55.34368299133624],[-122.70987892920826,55.34367158467361],[-122.71579103064074,55.34198880622724],[-122.72058579351366,55.34100283622475],[-122.7232834276955,55.34070600489808],[-122.72890093272218,55.34068300012921],[-122.73343287053882,55.341752362956356],[-122.74008377530991,55.34497549891532],[-122.74563574396768,55.34654635563302],[-122.74832521208752,55.34596178300831],[-122.75204390160597,55.345951004898126],[-122.75187751225707,55.34937251808561],[-122.75100420377518,55.350973028093435],[-122.7521401625747,55.3529666252887],[-122.75419033386478,55.35637405243451],[-122.75392687940104,55.35923701794519],[-122.75257316238752,55.3626635302409],[-122.75499715064548,55.36419733901284],[-122.75700784162677,55.36458140489391],[-122.76063616834871,55.36610153172678],[-122.76417153956172,55.36740390235817],[-122.76717473618413,55.36784938773468],[-122.77050054989242,55.36782783504698],[-122.7762293974518,55.36843324731353],[-122.77845068853327,55.37014069737317],[-122.78141169680104,55.373086823683956],[-122.7839264719178,55.37410222291444],[-122.78795299117073,55.37443005150171],[-122.7936612898141,55.37411937315061],[-122.79761227654375,55.37598743517092],[-122.79995024501203,55.378827421474995],[-122.80512145002321,55.381883343566244],[-122.8120839125084,55.38452739720534],[-122.82173765497998,55.38499758503947],[-122.82730852520305,55.382637186978506],[-122.83060306960016,55.38062236710484],[-122.83477902030211,55.37786755177824],[-122.83916618241211,55.37664246814806],[-122.84558268645131,55.37597966725805],[-122.85262628957793,55.37680303884493],[-122.85124514865933,55.378463110061084],[-122.84919503406185,55.38178324718918],[-122.84845785359067,55.38612293377263],[-122.84639795721922,55.389559376938024],[-122.84626240739449,55.393896313989636],[-122.84879657135211,55.39530540258063],[-122.85091788722963,55.39592384528392],[-122.85704786817415,55.396526563059524],[-122.86358944365217,55.39733659428982],[-122.8714483658318,55.39912982503197],[-122.87650056478623,55.4003592116713],[-122.88106235475348,55.4034144860589],[-122.87981777596904,55.40678210679162],[-122.87482900368026,55.40858549049214],[-122.86793801049006,55.41181172198511],[-122.86897067296069,55.41339795057226],[-122.87220565093246,55.41417840297707],[-122.87955539065989,55.415231926325404],[-122.88680195468082,55.41598651216825],[-122.89472618535542,55.415771086844366],[-122.90134983634434,55.41454548586308],[-122.9067532302044,55.413316258668786],[-122.91424952560713,55.411448002103086],[-122.92405396302988,55.40922363854749],[-122.93199811862414,55.40975962761196],[-122.93853341198705,55.409659808502134],[-122.94462933747926,55.408257639662885],[-122.95442099454027,55.40512496778402],[-122.96182273630643,55.40319784763949],[-122.9719165850451,55.400851345716696],[-122.97940135785711,55.39801060822429],[-122.98793071307972,55.39790263871768],[-122.99042947601973,55.402168315830394],[-122.98900436030146,55.40679678367412],[-122.98666033755985,55.41057814157719],[-122.98559783948512,55.412695622930976],[-122.98168729477985,55.41790970940558],[-122.98259495699855,55.42394845081194],[-122.98755405192108,55.42523371763382],[-122.99389121906401,55.4261125356259],[-122.99916306853585,55.42767385148371],[-123.00071404975263,55.430454922047105],[-123.00218907727701,55.434041167563976],[-123.00055418523908,55.43787566788734],[-122.99822123195686,55.44171134268918],[-122.99753553811516,55.443030957673386],[-122.99619275574945,55.44634338629312],[-122.99666958820106,55.44970846194327],[-122.99775912541426,55.4542091019752],[-122.99625427788914,55.45946348288535],[-122.99188385752439,55.46252385715433],[-122.9830615093581,55.46423046263731],[-122.9770161818151,55.46403080853991],[-122.97095725936293,55.462754482498134],[-122.96106029397488,55.46042524308743],[-122.95884175606645,55.45997680204384],[-122.94515151884177,55.45976894058196],[-122.93634081561297,55.4613021939444],[-122.9313625963861,55.464982373435014],[-122.93285913458311,55.46987932603675],[-122.93562749328451,55.47288839023706],[-122.94030601732965,55.47582750338037],[-122.94598188360442,55.47756224391674],[-122.95385517514586,55.47900047042953],[-122.95955242490317,55.48192772522166],[-122.95958662515024,55.483982037416375],[-122.959009701765,55.48593184097312],[-122.95821764458422,55.491750243788005],[-122.96080136990965,55.49556124134818],[-122.96296296124021,55.49845625891343],[-122.9637412347879,55.50221443419486],[-122.95894700664603,55.50407094418946],[-122.9534248679934,55.505470191375466],[-122.94854609895786,55.50800578241337],[-122.94598266675752,55.51161991783008],[-122.94293066135457,55.515177261330926],[-122.9407968998519,55.5198061379668],[-122.94128281927686,55.52424785575454],[-122.94205151497445,55.52852609058526],[-122.94540542031899,55.535575458117236],[-122.94647153749807,55.53888346383701],[-122.94742454931436,55.5407629008903],[-122.9497720209528,55.54290940161837],[-122.95415304459719,55.54528459929813],[-122.9543055601703,55.548077131119626],[-122.95040381000497,55.55003584573558],[-122.94692196498029,55.552112277537994],[-122.94486198162394,55.555550426204405],[-122.94168474622961,55.55841431281577],[-122.9352699206976,55.560562406993526],[-122.92996222078978,55.56298837260658],[-122.92909077177768,55.565217880307685],[-122.93107233905232,55.56840496668585],[-122.93455503792613,55.57152108053841],[-122.93994709673564,55.57422631278706],[-122.94206954004564,55.574556030052726],[-122.94774900520898,55.576012474878084],[-122.9534247817832,55.577522367757396],[-122.95578173693136,55.579785515595454],[-122.95864788813313,55.582051983355804],[-122.96179237413783,55.58254958690793],[-122.96783448542381,55.58177203649841],[-122.97133605009964,55.58050250593973],[-122.97332778086191,55.57962691662653],[-122.97759379614442,55.575613748056305],[-122.98276607406223,55.57159534676726],[-122.98746597297752,55.56939472011826],[-122.99143834031607,55.5662887460861],[-122.99823180360522,55.56288253027874],[-123.00697132788277,55.56128891886497],[-123.01535933665429,55.561408016362535],[-123.02080865763901,55.56212036912072],[-123.02404656691657,55.562206169859174],[-123.02543006829234,55.560714595319446],[-123.02631055055753,55.55956976476309],[-123.02758609385606,55.558030778019514],[-123.03170573482123,55.55737508834592],[-123.03688536020196,55.558717015844834],[-123.03965536586159,55.561033082660266],[-123.04151478443441,55.56340831829414],[-123.04233349334079,55.56437810370363],[-123.04448195910683,55.56521780487409],[-123.04823733942274,55.566911254874974],[-123.05089148533956,55.56865941427465],[-123.054679290373,55.57142943585719],[-123.0562130284086,55.57198549190772],[-123.05956581413324,55.573113195957156],[-123.06324407436917,55.57565620239879],[-123.06603479470554,55.57837561915467],[-123.06931442499005,55.58137538266616],[-123.07371018562701,55.583916867112514],[-123.07648801720391,55.586178423351534],[-123.07531099819523,55.588123688690516],[-123.07129560465562,55.58906127056402],[-123.06668907275782,55.5904601594596],[-123.06440398394007,55.592531885532736],[-123.06546319202431,55.59457416650442],[-123.06793009102775,55.59673897686703],[-123.07080610832296,55.59962164945654],[-123.07257931336324,55.60235301639518],[-123.07479850102112,55.606385952043844],[-123.07555646857686,55.609290892440015],[-123.07570014025475,55.61145522381504],[-123.07475457600206,55.61414117308287],[-123.07122889542634,55.61964534696923],[-123.07000936434301,55.624100318532356],[-123.0728863986586,55.62613108780618],[-123.07894825655282,55.626442488907415],[-123.08662984575099,55.62638764876163],[-123.09440881578246,55.62696225898986],[-123.0991904413427,55.62801420789993],[-123.10455494933167,55.62872073256082],[-123.11073006664034,55.629015262805424],[-123.11667804648765,55.6289276816165],[-123.12547470460575,55.62931745956678],[-123.13159354577871,55.63150160381208],[-123.13496408262608,55.63358696351438],[-123.13676608299102,55.637107014315454],[-123.13814264555118,55.63990003305231],[-123.13906621720335,55.64035144304454],[-123.13966813457078,55.640401003861555],[-123.14583711390182,55.64058602698916],[-123.14860808146501,55.64216422554665],[-123.150089214979,55.64529122277839],[-123.14915818107015,55.648946358172225],[-123.1460062762292,55.65245248500399],[-123.14072971831625,55.65579370291212],[-123.13431625811765,55.65875016515121],[-123.12971782619314,55.66084212738718],[-123.12768004970764,55.66433741250013],[-123.12774468650865,55.66763859127001],[-123.12841239968739,55.67031690909279],[-123.12778604899118,55.67369198594566],[-123.12684227927024,55.676602520885886],[-123.12690258207992,55.679742212030675],[-123.12743372796317,55.68100069580096],[-123.12999976228018,55.682574592944675],[-123.13227311601308,55.68467079492908],[-123.13019846275999,55.68645269841967],[-123.12718426552867,55.68732543758685],[-123.12277392890769,55.68941256896609],[-123.12113720129467,55.69306941598925],[-123.12168550731859,55.69541328764146],[-123.12373484037576,55.69641955499397],[-123.12759992691196,55.69725202394335],[-123.13035840967339,55.698606119661015],[-123.13234485978276,55.70115306599935],[-123.13371191372131,55.70388314583208],[-123.13680492437443,55.706141362480636],[-123.13949025169212,55.70852473661515],[-123.14056299413708,55.71114044605684],[-123.14021877343932,55.71370604897851],[-123.13934842569405,55.71559617632755],[-123.13640843847027,55.71984233145519],[-123.13337197115244,55.724310408224824],[-123.13452916678253,55.72664116594805],[-123.13667544488911,55.727658357318965],[-123.1389226481656,55.728606068282616],[-123.14252872664633,55.73086678830544],[-123.14450562802675,55.73313532556574],[-123.14686326943323,55.73477581747269],[-123.15117092879447,55.73662175382606],[-123.15352227108583,55.73768810693829],[-123.1624839964521,55.73990765988713],[-123.1670494845633,55.74039591723626],[-123.17319312748971,55.73868674993941],[-123.17894668239724,55.737739681490226],[-123.18338995360827,55.73724726969653],[-123.18804876271273,55.736867109963114],[-123.1910261999472,55.73428841447507],[-123.1955946111678,55.73088430234233],[-123.19672360369553,55.727331843597426],[-123.19359511509222,55.72324527075048],[-123.19097365967131,55.71944787392395],[-123.19396152482231,55.71760462637245],[-123.20104173418274,55.71703586403216],[-123.2093154412117,55.716062772928886],[-123.22299572770163,55.71241099923671],[-123.23482347882269,55.707820527857365],[-123.24245582172598,55.70546839526348],[-123.25305736137187,55.69985422788448],[-123.2647875635443,55.69958954447233],[-123.27017736210502,55.7010334624816],[-123.2797605968773,55.70346438367885],[-123.2887259740731,55.70584538895303],[-123.29840262720066,55.707873394691575],[-123.31825826386952,55.712332304063175],[-123.32811635882798,55.713841817953394],[-123.3308226941693,55.71656199765307],[-123.331709132169,55.71928841072023],[-123.33546378894827,55.72662110251065],[-123.3394507076151,55.72812191901599],[-123.34235755008548,55.73049639560327],[-123.34142395499917,55.733471234620644],[-123.338066847356,55.73686112709229],[-123.33390929690253,55.74026988055694],[-123.32768394421245,55.7459119995243],[-123.32531709038591,55.74856050385054],[-123.32380041095581,55.75233877781489],[-123.32102870612991,55.7545841310439],[-123.31524068728643,55.75771562889232],[-123.31277231489744,55.760424537933275],[-123.31214041998909,55.76362085235097],[-123.3124737213727,55.76436315622666],[-123.31510551735948,55.76822073266875],[-123.31551020151345,55.77169017093103],[-123.3126322134043,55.773825536891906],[-123.30832241242666,55.77632480595311],[-123.30817891584326,55.77820458764452],[-123.31039735822885,55.78132720696451],[-123.31217091073921,55.78370510192393],[-123.31481992796748,55.78756304331836],[-123.31508586863731,55.790249509641775],[-123.31621149385322,55.79394051015507],[-123.31881035030302,55.7999760069685],[-123.32120666985199,55.80262699414764],[-123.32563042441801,55.80487259731184],[-123.33022226550027,55.805579458848044],[-123.33615004261392,55.80712126978842],[-123.33947067491566,55.80961206103339],[-123.34167241475589,55.81233025226167],[-123.34141431190295,55.81427040697544],[-123.33941866386547,55.81897131959582],[-123.3376746347018,55.82206366075343],[-123.33834183737126,55.824283329357215],[-123.34193788861337,55.8257935906603],[-123.34564848703427,55.827987556688],[-123.35010166307866,55.83057354966624],[-123.35405793405441,55.83053991372841],[-123.357279715802,55.82999767265637],[-123.36527298940577,55.82895424507151],[-123.36846496301332,55.83030287774661],[-123.37498772331357,55.831155832624646],[-123.3796083641266,55.832937305865904],[-123.3801958014994,55.835675064400135],[-123.37844001678009,55.838256640558306],[-123.37580914077003,55.84244283090659],[-123.3749726370716,55.84467586385176],[-123.37450630058498,55.84639656997338],[-123.37275794395326,55.849094801890544],[-123.36850640431204,55.849929837017434],[-123.36462600274992,55.852646329802944],[-123.36387637897879,55.854764568510554],[-123.36393186486389,55.85681890341301],[-123.36471531081895,55.85948912700087],[-123.3649617237693,55.86132329617121],[-123.36740709039924,55.861410099828504],[-123.37726571664041,55.86131911619345],[-123.38579638498793,55.8609578397191],[-123.38755291461,55.86225831620283],[-123.39173752016455,55.86610135008689],[-123.39636170849356,55.86765805879866],[-123.39901343895227,55.86826850192336],[-123.4058344985668,55.86882999941683],[-123.41452475440568,55.870460402800184],[-123.42194345148732,55.87341808953761],[-123.42720462613056,55.876053520590915],[-123.42840189142751,55.87883927213502],[-123.4322230777366,55.88417073448772],[-123.43571515934781,55.88544295304884],[-123.44026129693442,55.884548803841724],[-123.44694091790092,55.88362584495862],[-123.45263921317704,55.88374967827678],[-123.45836592759888,55.884429684863484],[-123.46045143965456,55.883153642077886],[-123.46541352693589,55.88225799046752],[-123.46936116246759,55.88193357716261],[-123.47441950977915,55.88103054008264],[-123.47603160845551,55.88038134543429],[-123.47831807729727,55.87870559311092],[-123.4810050631477,55.877028815569744],[-123.48486162888236,55.87636143569689],[-123.48740544519264,55.87668095223833],[-123.49078296191183,55.8775010848422],[-123.49493275062365,55.87700955729906],[-123.49728801577712,55.8772713468402],[-123.49763470581792,55.87863196371962],[-123.49859680162922,55.88039922278275],[-123.4993259443814,55.880781215190694],[-123.50300820307385,55.88160703425256],[-123.50526569680066,55.88215362767091],[-123.5078279712263,55.882697218857096],[-123.51064726282785,55.88170379363562],[-123.51233157808196,55.880661098826195],[-123.51482712871304,55.8792039934667],[-123.51755136439708,55.87844165133483],[-123.5207967142066,55.87805703981353],[-123.52156795898142,55.87674530729535],[-123.51874690014702,55.87419767950059],[-123.51693359660864,55.87193872827416],[-123.51850583177409,55.86986277036535],[-123.52261696963727,55.86817723531224],[-123.52741995938605,55.86618235930199],[-123.53443276146517,55.865996540296],[-123.54126744613714,55.86661372618286],[-123.55116258829288,55.86748706977303],[-123.56147038874082,55.86869032799143],[-123.56985908217945,55.87036687544282],[-123.57553922515912,55.87311157830509],[-123.57767584169333,55.87616473005742],[-123.57859349540557,55.87923933989477],[-123.57966853694985,55.881052898805784],[-123.58192322678059,55.88166080563927],[-123.5846009279184,55.8824291516429],[-123.58787779686243,55.8833612677147],[-123.5931211517263,55.884904474618786],[-123.59553815010102,55.88443046950963],[-123.59724445466051,55.88378155663214],[-123.60099090671135,55.88305478153755],[-123.60456914041222,55.88404596039857],[-123.60574421091535,55.88528741988962],[-123.60956335910541,55.887071914639705],[-123.61569404955642,55.88774340855127],[-123.62157698451517,55.890140145880615],[-123.62550704220573,55.89249996920433],[-123.630038357704,55.893929625948644],[-123.63305824921406,55.89275797661456],[-123.63539350010632,55.89284645778828],[-123.63767900013723,55.894305568368075],[-123.64081876677524,55.89649773952445],[-123.6449395162069,55.89810745053285],[-123.64779674502415,55.898590889893065],[-123.64924252042296,55.899083914722176],[-123.65260193057358,55.90218528890904],[-123.65555537351992,55.90483978013262],[-123.6588887864821,55.90731296674595],[-123.66068109393625,55.9090045611766],[-123.66210180196524,55.91155883864057],[-123.66461837869738,55.91375680105784],[-123.66809004273452,55.9141793739124],[-123.67461865918973,55.91444287912127],[-123.6808994511364,55.916198594238],[-123.68205542804736,55.92001178438037],[-123.68072572305059,55.9229905820859],[-123.67940527787738,55.92580817857803],[-123.6801244104564,55.9285914227305],[-123.68104151823127,55.93155758052802],[-123.67886038894248,55.93591031028071],[-123.67732359496956,55.938849448025856],[-123.67436886337632,55.941332250404095],[-123.67039714619067,55.94445072302776],[-123.664588325807,55.946862885805615],[-123.65730642672294,55.948655898276755],[-123.64912741201435,55.95040497249721],[-123.6470262398172,55.951450721910376],[-123.63967530874673,55.954102100489315],[-123.63478054955989,55.957014088937264],[-123.63027581795265,55.962246148785475],[-123.62944015642998,55.96734054282145],[-123.62944276394481,55.967564715383936],[-123.62235619933139,55.96895606056144],[-123.61262450514553,55.970252416171135],[-123.60746109203808,55.97116813822531],[-123.60513139906799,55.9717068855522],[-123.59869584413,55.97451675580988],[-123.59840947691353,55.97816909746555],[-123.59903134573075,55.98141728023997],[-123.59976810835546,55.98489176396863],[-123.59815625981695,55.9886714363834],[-123.59311776284363,55.99329161519988],[-123.59215712550841,55.995075388951484],[-123.58662051980997,55.9973011447235],[-123.58589701045116,55.99993212283362],[-123.58158591727376,56.0033913020438],[-123.58019077568177,56.00700460591155],[-123.57798508479705,56.0104589933211],[-123.57336466324307,56.015256837259095],[-123.56905606662963,56.019934998783334],[-123.56373151496459,56.024638376764436],[-123.56275285205365,56.02824162005109],[-123.56139604467465,56.03015210090539],[-123.55940244221316,56.03143171797115],[-123.55519406563866,56.03599487531039],[-123.5508523598695,56.04009810731203],[-123.54679711225175,56.04346260741886],[-123.54210610529802,56.04642917639804],[-123.53896748220052,56.049784295333446],[-123.53711192337889,56.051918010758946],[-123.53343021855665,56.05441971854067],[-123.5261393651187,56.055936614819274],[-123.51705357332013,56.05603732326322],[-123.5093975962836,56.05618334999235],[-123.50949640480393,56.058695694955674],[-123.51095683152352,56.0623375068172],[-123.51554972945819,56.065081241456745],[-123.5158572605884,56.06531139656433],[-123.52031333786415,56.066913626957955],[-123.52084242248674,56.07027713103474],[-123.51635797631747,56.07039579495824],[-123.51249030712971,56.07094776476708],[-123.51020468273722,56.07526038726224],[-123.51034928520708,56.07628532033242],[-123.50823737309197,56.0801351052019],[-123.50584147442616,56.08159438444323],[-123.50104471165673,56.081536056391926],[-123.48546648276623,56.080287482296555],[-123.47927461801166,56.078873768120765],[-123.47689068259822,56.07786711965309],[-123.47302862182293,56.078310435715046],[-123.47190532106211,56.08100479504479],[-123.47255343201412,56.08471166894017],[-123.4712058020843,56.08713259310946],[-123.47274133189788,56.09031915643729],[-123.47399366184806,56.09063991706757],[-123.4764831932769,56.09478680799388],[-123.47486375184343,56.10069017475632],[-123.4734760808143,56.104984255557426],[-123.47318749752237,56.10847528895431],[-123.47456752837908,56.10982966842189],[-123.4762134806093,56.1130721812711],[-123.47449477919591,56.11623897118043],[-123.4745869015394,56.11857198383144],[-123.47098299629681,56.12095712858279],[-123.47055952518107,56.12353095731428],[-123.47082635298825,56.12489911233793],[-123.47320553138151,56.128532820632756],[-123.47421121793276,56.13120675719628],[-123.47672724152525,56.13271813459628],[-123.48036080187694,56.13416192133461],[-123.4820898351993,56.13688596686859],[-123.48215234574509,56.13842937702152],[-123.4839060375871,56.141781512990676],[-123.48659820695848,56.14534940487226],[-123.49103143044326,56.14895154732528],[-123.48980045785298,56.15205647173044],[-123.48768809309135,56.15556541977528],[-123.48681108176216,56.15969049123553],[-123.48837914720325,56.163442382688906],[-123.49439872263282,56.165999710558964],[-123.49896550117329,56.167550921735284],[-123.50019627220873,56.17028285344702],[-123.50168121806682,56.17460676728238],[-123.50263404105807,56.175620687665486],[-123.5077067767721,56.1771097476621],[-123.51254736816146,56.18048592314467],[-123.51158632955998,56.184950238964916],[-123.5057268951506,56.18718485898443],[-123.50056186969312,56.18890383419777],[-123.49806754867134,56.19053159127455],[-123.4976310910192,56.19281838368217],[-123.49904726436343,56.19772381248562],[-123.4934386155894,56.198519276154244],[-123.4886790058847,56.200183022017974],[-123.48862247596645,56.2043512489763],[-123.49022549339028,56.205817418465394],[-123.49464259670884,56.20902454436653],[-123.50081595343805,56.21232869368814],[-123.50891214485091,56.21515004728427],[-123.51621866601691,56.218717627802626],[-123.52622382397603,56.223350304875034],[-123.52683368561729,56.223164870484744],[-123.53831070273179,56.22292954268992],[-123.5420314219899,56.22624702657147],[-123.54152162728063,56.22922294348794],[-123.54255226583487,56.232129906970684],[-123.54608952008718,56.233229081221516],[-123.54925680571876,56.23559424700891],[-123.55105376249965,56.239968367676646],[-123.55246053202653,56.244639833684516],[-123.55249493291385,56.24538468746959],[-123.54983381066619,56.25095546133008],[-123.54496440491691,56.25250275031259],[-123.54145180617215,56.25459603727561],[-123.54283046107717,56.25841531089332],[-123.54764642455818,56.26109913653198],[-123.5510511493528,56.261514152700265],[-123.56058964341922,56.26140081181533],[-123.56436561216783,56.26079144681977],[-123.56350353409195,56.26216476557971],[-123.5619670595789,56.26527362326276],[-123.56033167038237,56.268147459587865],[-123.56000891721061,56.27021249946564],[-123.55865752373592,56.272679302275186],[-123.55564733707845,56.27448672990994],[-123.55209891783936,56.27583546634526],[-123.55328351006577,56.27708654220096],[-123.55925668365039,56.28307371488653],[-123.55922765657468,56.28483952422122],[-123.55637757673823,56.288479186894484],[-123.55435588028978,56.291811866058715],[-123.55501527651124,56.29551862586594],[-123.55833155682845,56.29662211381921],[-123.56055628751699,56.29809024062005],[-123.5625168554061,56.30120310067977],[-123.56579892119063,56.30391071043849],[-123.56498524890135,56.30683618594394],[-123.56278370742,56.31097258025444],[-123.56242067531433,56.314982613290155],[-123.56295984627194,56.31543224349159],[-123.56451959035874,56.31849260602467],[-123.56078331062052,56.320716814039756],[-123.55278820398345,56.321317278020906],[-123.54770059238486,56.32543409999659],[-123.54732286889819,56.33172136949731],[-123.55064817329017,56.33505786286057],[-123.55682492307807,56.33817974216379],[-123.56388463133764,56.342501701145345],[-123.56582297457541,56.3447084820898],[-123.5666427548484,56.350301254074736],[-123.56856423132481,56.35461480909885],[-123.57670095126086,56.354975324117326],[-123.58800385627511,56.354498366058706],[-123.60547794485083,56.353893904652985],[-123.61477192511296,56.354695056933885],[-123.616391254519,56.359531185240776],[-123.61790915737458,56.363908124156175],[-123.61745278530105,56.36820349964933],[-123.61231277733884,56.37106668716699],[-123.6108075691276,56.374454830842225],[-123.61227430230105,56.37780873636299],[-123.61525309135642,56.38006100931145],[-123.61966174380096,56.38229495307748],[-123.61891118408543,56.38395773129669],[-123.61530530309611,56.386921330394024],[-123.61559321862904,56.388854483613166],[-123.61284905240487,56.39231825753341],[-123.60700107676327,56.39581373110601],[-123.604345253123,56.398875510901114],[-123.60587546191839,56.40119955004305],[-123.60594578554692,56.40296728135046],[-123.60363040602999,56.406824487473315],[-123.60143060941638,56.40879186915207],[-123.59561465744987,56.41012654724974],[-123.58749485546986,56.41061959875738],[-123.57923052676527,56.410033402488025],[-123.56946513799019,56.410601832148934],[-123.55987570343204,56.41328904480079],[-123.55949159289854,56.41361911055576],[-123.55904949405114,56.41399963061758],[-123.55797238666723,56.41586439866645],[-123.55788242657924,56.41610142766533],[-123.55753818820264,56.41679988950488],[-123.55705780429733,56.41772665370823],[-123.55696453566368,56.418113814444396],[-123.55677611211695,56.41878834364817],[-123.55671829089236,56.41932301248514],[-123.55682679910466,56.4200233754245],[-123.5568511670201,56.420607807602266],[-123.55697905246609,56.42138812099192],[-123.55718412159574,56.421908744353125],[-123.55720132710059,56.42195838997403],[-123.55748174088298,56.422540974629484],[-123.55761413416934,56.42311961866556],[-123.55764593625581,56.423617886588204],[-123.55761890947447,56.42401751925346],[-123.5575646403386,56.424885153284684],[-123.55738626265078,56.425658513189425],[-123.55709550742807,56.426572082248896],[-123.55712047582065,56.42669249018896],[-123.55716398276725,56.426841272825826],[-123.55735797224995,56.42714984250784],[-123.55750922603976,56.427297314570964],[-123.55756778025899,56.42740042826157],[-123.55809445273832,56.42787897811139],[-123.55849457425963,56.42820492094769],[-123.55899636050185,56.42869196000642],[-123.5593638221346,56.42908565098998],[-123.55939824505182,56.429184941986954],[-123.55953132243638,56.42936344979196],[-123.55959492155426,56.42964599659104],[-123.5595891827606,56.42983531327689],[-123.55959016197451,56.4298846498929],[-123.55939101623903,56.43099051552714],[-123.55931481283177,56.43133204988037],[-123.55924489733754,56.43219042249397],[-123.55922894084344,56.432348160785786],[-123.55937432717485,56.43382486493433],[-123.55937089432035,56.43413976285278],[-123.55957493957332,56.43506835942789],[-123.55965506192182,56.435606778652925],[-123.55941782546451,56.43615148980344],[-123.55937856511753,56.43625946691301],[-123.55938905866978,56.43654660849359],[-123.55970194185169,56.43706703895113],[-123.55992056602074,56.43734020580607],[-123.559979981328,56.437397379312664],[-123.5603797975775,56.43782755044275],[-123.56060549698549,56.43798764303267],[-123.56085660447035,56.438228920737714],[-123.56124726343205,56.43844819187299],[-123.5622770517264,56.43904052742376],[-123.56252670599228,56.439272807110335],[-123.56259515979146,56.43938059006768],[-123.56270442054442,56.43955079594582],[-123.56272403185822,56.43975740803346],[-123.5626945104283,56.439937306751744],[-123.56287993087724,56.44025467210088],[-123.5630716423586,56.44043877348654],[-123.56321239595873,56.44052775383906],[-123.56334594298207,56.44063453102607],[-123.56349727162022,56.440781996986956],[-123.5635488612851,56.440867041789716],[-123.56355097923566,56.44106099202247],[-123.56336185401996,56.44168172329995],[-123.56325693249947,56.4424183824507],[-123.56306919405381,56.44301672288737],[-123.56300098399007,56.44342566519562],[-123.56285984827952,56.443961001418664],[-123.56252371486713,56.44468990639205],[-123.56232375846723,56.44502797285622],[-123.56169872145259,56.44566395938399],[-123.56160927056312,56.4457945222134],[-123.56128659643532,56.44620983715904],[-123.56107906539177,56.44666881244318],[-123.561099724217,56.44695614825958],[-123.56115740681227,56.44704131003437],[-123.56187566856168,56.44826438066222],[-123.56207197536185,56.44863575654469],[-123.56212456457864,56.4489326659358],[-123.56202863181841,56.44968743222488],[-123.56191329099471,56.45019972145686],[-123.56180080388181,56.45043857190797],[-123.56158183761441,56.45072247571583],[-123.56128928985436,56.45098032168724],[-123.56041427948092,56.45145127014423],[-123.56011352738344,56.45167757331236],[-123.55954960850127,56.45201656329925],[-123.5582882352808,56.45261913891823],[-123.55686529414466,56.453399088560495],[-123.55662164170423,56.45355697703994],[-123.55651430892934,56.45361546084383],[-123.55589312698321,56.453991455776965],[-123.55549346149247,56.45430329399399],[-123.55529054189988,56.45449221982693],[-123.55521841478824,56.45460517549646],[-123.5546782242706,56.4554075215192],[-123.55426499523445,56.455902922520536],[-123.55419713872418,56.45598009101018],[-123.55341183910038,56.456832684963416],[-123.55326854233948,56.45707542627165],[-123.5532384672489,56.45729566659445],[-123.55351010582442,56.457924055042845],[-123.55367540063135,56.45849773461634],[-123.55386249569538,56.459404731590936],[-123.55402453706354,56.459803491215915],[-123.55411167169312,56.46009994381739],[-123.55418462041911,56.46068755562359],[-123.55429855546275,56.461140321599004],[-123.55431828274072,56.461279686998104],[-123.55472154240117,56.462468781012774],[-123.55483438288456,56.462809437455526],[-123.55502811979845,56.463059722221494],[-123.55529503954793,56.46331027958999],[-123.5559948591634,56.46382351989871],[-123.55606117318013,56.46386849692532],[-123.55670996789576,56.46428772830105],[-123.55748573475884,56.464855087075506],[-123.55774400516549,56.46498441905483],[-123.55811733539082,56.46522466491888],[-123.55865320951577,56.46569441940101],[-123.558877800246,56.46593968032279],[-123.55949766372568,56.466529841801666],[-123.55976540607035,56.46686559208084],[-123.56012518013443,56.467160497352296],[-123.56069093955904,56.467575887512965],[-123.56089019661704,56.4676738276258],[-123.56118183748957,56.4678878525487],[-123.56171476495685,56.46817819620823],[-123.56186457970477,56.46825389890324],[-123.56214621084084,56.4684004784384],[-123.56320781604177,56.468821909049005],[-123.56369635303183,56.46897689563378],[-123.56413537009811,56.4690782592827],[-123.56506159543868,56.46925835745464],[-123.56628479905936,56.46943735352453],[-123.56651657290539,56.4695033953968],[-123.56673048029971,56.46952986738059],[-123.56680501093402,56.46957387341481],[-123.56709576051699,56.46963991104826],[-123.56745244192408,56.46982264797157],[-123.56763830294815,56.47003801584973],[-123.5677469101404,56.47025304079559],[-123.56776449947829,56.47029708837396],[-123.56780614375272,56.47083590019216],[-123.56775715655635,56.471393171086476],[-123.56762002937039,56.47218976199167],[-123.5676598388154,56.47266016578216],[-123.56769942670752,56.47306891691774],[-123.56777900147061,56.473423502333304],[-123.56778228571554,56.47372956552639],[-123.56773602848014,56.473949503204985],[-123.56735070504106,56.4751056804735],[-123.5673364647237,56.47536657662589],[-123.56744013319052,56.47569359698742],[-123.56773639779732,56.4761285078186],[-123.56819087770782,56.47670092045564],[-123.56861461499919,56.476951055527],[-123.56892126392961,56.47705662015963],[-123.5692204318787,56.47721696573308],[-123.56931116285416,56.477262397703015],[-123.56945262177918,56.477342416314066],[-123.56962015929722,56.47749354402968],[-123.56974553116028,56.47766853295557],[-123.57000379153254,56.478354917883365],[-123.57020212279609,56.4788933325703],[-123.57028701586111,56.47962015112153],[-123.5704129044711,56.480374646667634],[-123.57063027993566,56.48106474074123],[-123.57078561694856,56.48160794593512],[-123.57107713794122,56.482316255171824],[-123.57108781339426,56.482406127941225],[-123.57143662585996,56.48323993829721],[-123.57172458578272,56.48367916614357],[-123.57177533378842,56.48374625792777],[-123.57204250267176,56.48399678304731],[-123.57250903584955,56.48431272464116],[-123.57283257719764,56.48444213691738],[-123.57326374506948,56.48457470287061],[-123.57369447480514,56.484648972997356],[-123.57408294087907,56.48468321237157],[-123.57542971536803,56.48487901829609],[-123.57628915945874,56.48502750426264],[-123.57723382937334,56.48521233947477],[-123.5791795475057,56.48575566728001],[-123.57956099307984,56.485870461074796],[-123.58125688198194,56.48624427838042],[-123.58222486024074,56.4864149434785],[-123.58324326296342,56.48652714322255],[-123.58335839728392,56.486540518378185],[-123.58486905615655,56.48665411993347],[-123.58535763081662,56.48671486641403],[-123.58554735105949,56.48677223520928],[-123.58581269689589,56.4868568054483],[-123.58646155064116,56.48715482410973],[-123.58699213665287,56.487358705400496],[-123.58736549238357,56.48747332341031],[-123.58744700834995,56.48750399742721],[-123.5879766793672,56.487591285835045],[-123.58907562911077,56.48768477525619],[-123.58969626829179,56.487781610076986],[-123.59151798601032,56.48816325444692],[-123.59203040724856,56.48829952100686],[-123.59234591770071,56.48842873201012],[-123.59247923931343,56.488477186957454],[-123.59346601518892,56.488872293384745],[-123.59432291531137,56.489295223295],[-123.595031173984,56.48968734240007],[-123.59578557692421,56.49002427725566],[-123.5959186621428,56.49010971299819],[-123.59628486908834,56.4902421044954],[-123.59645811867387,56.49033613737209],[-123.59681520336652,56.49045154346198],[-123.5969748501909,56.49053523323384],[-123.59771995854469,56.49079240017195],[-123.59918980898357,56.49137359253663],[-123.60000094636065,56.49168241921417],[-123.60111636735155,56.492105648128586],[-123.6014786494733,56.49226933548248],[-123.60161922966832,56.49233248748421],[-123.60188602685739,56.492460764622535],[-123.60220132816352,56.49259443005179],[-123.60260761081089,56.49280377036647],[-123.60283121850871,56.492972711788916],[-123.6029573399174,56.493138712916654],[-123.60306080359018,56.49347466411426],[-123.60314876650739,56.4937979964203],[-123.60328349586496,56.494452859360074],[-123.60327726331055,56.49514992759258],[-123.60328497614523,56.49571947637493],[-123.60335191006423,56.49628564659159],[-123.60331294608964,56.49691933576486],[-123.6033387038616,56.49795662738024],[-123.60336557555217,56.49917440161021],[-123.60338491127486,56.499919025306745],[-123.6034785574288,56.49991853029772],[-123.60344107600011,56.499998534412086],[-123.60324374517396,56.50042751264047],[-123.60309994274128,56.50064788496142],[-123.60296365031856,56.500878485193354],[-123.6028198446394,56.50109885725118],[-123.60265657078197,56.501337920917514],[-123.60246049337115,56.5015808558702],[-123.60228501794728,56.50181969152816],[-123.60212246030167,56.50201393288038],[-123.6019391923995,56.50218088643111],[-123.6016172704121,56.50228584510374],[-123.60161620352781,56.502402396769426],[-123.60140271297367,56.5024981700469],[-123.60127935940112,56.50258441690678],[-123.60113753654079,56.50270618704943],[-123.60102062513546,56.50278694955736],[-123.6009375494078,56.50291317896068],[-123.60042778852424,56.50332511187786],[-123.60029288651441,56.50343355989366],[-123.60000116457516,56.50367582647868],[-123.59979537893398,56.50384459861625],[-123.59966526473632,56.50390830019926],[-123.59938525677016,56.504026366413626],[-123.59896903174587,56.50420801895663],[-123.59887467753269,56.504351970686535],[-123.59880640299498,56.504568146244196],[-123.59890101834107,56.50468424433627],[-123.59902864211554,56.50485924504515],[-123.59919917150883,56.504965552473216],[-123.59951445130855,56.50533236695252],[-123.59960166377965,56.50540349087351],[-123.59970848200844,56.505519816285464],[-123.59991119204378,56.505896856719374],[-123.60000009078384,56.506105880523535],[-123.60002138525155,56.50615671798813],[-123.60013571693345,56.506349403436545],[-123.60031035434501,56.50655442377115],[-123.60043247519963,56.50681899095759],[-123.60051634735316,56.507043612924825],[-123.6006068704984,56.5073255241074],[-123.60070022216868,56.50749539964909],[-123.60066065237889,56.508138048390165],[-123.60086479752057,56.508591334335485],[-123.60106401938823,56.50902547303124],[-123.60108548906368,56.50910657749661],[-123.60161531507164,56.50949420453813],[-123.60161566106154,56.509620870963474],[-123.60219885127671,56.51013390954334],[-123.60244820089753,56.510415420033624],[-123.60270486093012,56.510710516993534],[-123.60296845148241,56.510992292057146],[-123.60325737794341,56.51129247318962],[-123.60351970444962,56.51162802595749],[-123.60378947620733,56.51190879361576],[-123.60407231548199,56.512208859322286],[-123.60429578126734,56.51258067518438],[-123.6043264260699,56.51264513684184],[-123.60479773704455,56.512992428290836],[-123.60589859686957,56.5129344771417],[-123.60609745627734,56.512878774344095],[-123.60622837668166,56.51276912436773],[-123.60654841983569,56.51249710553889],[-123.60684809455527,56.5122583332725],[-123.6070762518422,56.512023833287635],[-123.60729841444497,56.51182060609572],[-123.60752074123334,56.511581513395],[-123.60780102016383,56.5112605537864],[-123.60797771287018,56.51103518253418],[-123.60823104095371,56.51075519323057],[-123.6084597872626,56.51044448230604],[-123.60866237147486,56.51012880076818],[-123.60885774017558,56.50976478689317],[-123.6090400943844,56.50948011325381],[-123.60916279379236,56.50920553846733],[-123.60932615684055,56.5089317200862],[-123.60952141834827,56.5087683411653],[-123.60955118898322,56.50874759820783],[-123.61001942938765,56.50801652654347],[-123.61169340709576,56.507206988845496],[-123.61383991659831,56.50645776638126],[-123.61548602447834,56.50606799332207],[-123.61712566412238,56.50578344210531],[-123.61979717646072,56.50583295277322],[-123.62313352673473,56.50589470662933],[-123.62484634529241,56.50597793619808],[-123.62645596345469,56.50621840016232],[-123.62823553692675,56.506776944643406],[-123.62973168027729,56.5072775555221],[-123.63066605531537,56.50761087085181],[-123.63207832551831,56.507951864768955],[-123.63337599267318,56.50702975735372],[-123.63494872590584,56.50626962219082],[-123.63593093873604,56.50581469050827],[-123.63719022536988,56.50552288848905],[-123.64010493060034,56.50468200074503],[-123.64174114782736,56.504449757742144],[-123.64393482826164,56.50448999774953],[-123.64576218986764,56.50426008781364],[-123.64895050585329,56.50363585957895],[-123.6498045591174,56.50354724324451],[-123.65154335168774,56.50336719204494],[-123.65384830551362,56.50314701770833],[-123.6551618982143,56.503538634866885],[-123.65567000568555,56.504599265832205],[-123.65602064275323,56.505131342364265],[-123.65702234154658,56.505938690591904],[-123.65766714423523,56.506318085099174],[-123.65838935559398,56.50669664503388],[-123.65846431485883,56.50670249429187],[-123.65921076831245,56.50671160975465],[-123.6600366168062,56.50678829685131],[-123.66069811459727,56.50685638268777],[-123.66126146553034,56.50689802020886],[-123.6619875240726,56.50690786915171],[-123.66257075089965,56.506855711031925],[-123.66330343640178,56.50672108338263],[-123.66392424345389,56.506619164283244],[-123.66460414412849,56.50651607448244],[-123.66539608884976,56.506445279640566],[-123.66555434252442,56.50645375878677],[-123.66846501696098,56.50614680842824],[-123.67031111983195,56.50560193280822],[-123.67185484851191,56.50531383163653],[-123.67428355705233,56.50462253670383],[-123.67633316631957,56.50387054257758],[-123.67770959109822,56.50321171206302],[-123.67905259818565,56.50307905905034],[-123.68002488492175,56.502780540265086],[-123.68127748166133,56.502593552653394],[-123.68294341665872,56.50346423235352],[-123.68418045312785,56.50353921167119],[-123.685383181922,56.504191913076674],[-123.68667635121936,56.504898910211764],[-123.68807346978248,56.50550128442097],[-123.68947470562425,56.50600059993214],[-123.69049895043388,56.50643932496858],[-123.69160014353322,56.50719437863208],[-123.69202504164159,56.50809643733547],[-123.69262666335001,56.50921126410759],[-123.69325629058807,56.50985359762792],[-123.69505566346992,56.51009547740412],[-123.697067905346,56.50997351230525],[-123.69718888133039,56.51095753139197],[-123.69724439305817,56.51105155532907],[-123.69714273978775,56.51139383043615],[-123.69710523024287,56.51175294657954],[-123.69730411974655,56.51214207755646],[-123.69748772387692,56.51241100496124],[-123.69786373827012,56.51279994550558],[-123.69828550781114,56.51313814582686],[-123.69869979514326,56.5134997482801],[-123.69906025676487,56.513807706488905],[-123.69941029151153,56.51411996035005],[-123.69977898066657,56.514392196951796],[-123.70048035662103,56.51478807242512],[-123.700659259856,56.5149302565122],[-123.70098102137872,56.51513552070961],[-123.70143986017005,56.51543290224352],[-123.70177047755112,56.51566073944305],[-123.70200703290328,56.51586111495559],[-123.70252019158085,56.51620429696559],[-123.70287566340784,56.51649422136426],[-123.70326279790584,56.516868773123704],[-123.70366572411022,56.51732094341207],[-123.70390259370295,56.517619954394185],[-123.70428478089285,56.51794061444014],[-123.70467839698621,56.51824018148838],[-123.70500188934471,56.51852056198881],[-123.70520040734401,56.518779656506624],[-123.70528724083384,56.51910288640878],[-123.7053337036843,56.519281928676655],[-123.70557211470992,56.51955518473297],[-123.70581537805107,56.519849822802975],[-123.70582272252166,56.51986340390445],[-123.7045997259369,56.51988640570023],[-123.702750322747,56.52048440155578],[-123.70119697158692,56.52092962796866],[-123.69887879979791,56.52136114866945],[-123.69599206271815,56.52173088137898],[-123.69378184749628,56.52195352844138],[-123.69194777026951,56.52228825078404],[-123.6905833255708,56.522737865038955],[-123.68970316890359,56.52308968876446],[-123.68759358380848,56.524839513656154],[-123.68696274064845,56.52582684207619],[-123.68687958457393,56.526266960625804],[-123.68643481957527,56.52665798067276],[-123.68419814513324,56.527354113550075],[-123.68119654749874,56.52803529587776],[-123.67896393812039,56.52862605429743],[-123.67936342599224,56.529953632092784],[-123.67944173269375,56.53021172119687],[-123.68004223553886,56.53137927983708],[-123.6803726055762,56.53222700260752],[-123.67988321362202,56.53268108742047],[-123.67926019213101,56.53325829516284],[-123.67823707376849,56.534396552606296],[-123.67875272750068,56.53504026722184],[-123.6793043891219,56.535729463808984],[-123.68145920409432,56.53645205354551],[-123.68363914225766,56.536753616214774],[-123.6847701804412,56.53698470365261],[-123.68595525446135,56.53795203497516],[-123.68713726152174,56.53897197991179],[-123.68880794061302,56.53979109544638],[-123.69003059857491,56.54012802077613],[-123.69096315656986,56.54051352751649],[-123.69129078776149,56.54141273078971],[-123.6917316514327,56.542051685156316],[-123.69235867574139,56.54274665818575],[-123.69315838459255,56.543759685646755],[-123.69310550882196,56.544652059999414],[-123.69264708584447,56.545958603533705],[-123.69288537867348,56.546750840656614],[-123.69358220267704,56.547920061701205],[-123.6952410048758,56.54894847573986],[-123.69692162284352,56.54960961656421],[-123.69825893138548,56.5496335502141],[-123.69979797961061,56.54945035617603],[-123.70153138790761,56.549219057331705],[-123.70267735242041,56.54923952648402],[-123.70373385977041,56.54915302842582],[-123.70535815684718,56.54918201072243],[-123.70818494240959,56.5498634396143],[-123.70921984239327,56.55014415080426],[-123.71127211499316,56.550969756582646],[-123.71394684471366,56.55101731177503],[-123.7161442740463,56.55100365926687],[-123.71778099904499,56.55082198449933],[-123.72028077436255,56.55055134658074],[-123.72218703967621,56.550637791123],[-123.72362007009045,56.55066315507639],[-123.72487713869384,56.55042199309935],[-123.72405036803166,56.55145872181838],[-123.7244673369977,56.55251745002525],[-123.72450770286905,56.553465278447376],[-123.72397097676125,56.554454459039626],[-123.72325105014355,56.555335037169485],[-123.72220406480912,56.55689354070309],[-123.72076498927801,56.55860313406185],[-123.71964702539529,56.5613697655781],[-123.71977379755099,56.562476052363124],[-123.7226325330453,56.56263203343287],[-123.72517251605782,56.56335955495111],[-123.72740193104504,56.56445030103877],[-123.72964879440585,56.5652790357772],[-123.7312534027466,56.56562229065736],[-123.7326533252114,56.56622531888504],[-123.73374776689012,56.56713903222647],[-123.73608253948387,56.568073437493446],[-123.73777385595682,56.56857617324678],[-123.74035105550487,56.5686741238782],[-123.74128791565639,56.569005525681035],[-123.74181443148296,56.56980384004524],[-123.74175958143645,56.570748872633075],[-123.7396089346301,56.57155288103771],[-123.73734627717587,56.57266872476163],[-123.73528809732768,56.57352697060777],[-123.73329809081665,56.574858265460065],[-123.73159611733907,56.57614304917138],[-123.72932778908803,56.57731246470816],[-123.72792712955832,56.57839179830248],[-123.72735030648364,56.58006290665393],[-123.7269822123664,56.58147653917717],[-123.72693621207085,56.58226369267902],[-123.72708883504693,56.582897432207325],[-123.72515026448744,56.58333620093181],[-123.72298683604538,56.5833999589875],[-123.7217978674308,56.58343497066572],[-123.71971385443616,56.583083116911084],[-123.7185668841888,56.5830627990953],[-123.71695246722798,56.582876141155765],[-123.7147573848618,56.58278451966187],[-123.71259010118503,56.58222034766602],[-123.71099426406609,56.58171897972607],[-123.70800456859311,56.580509054878334],[-123.70592963855964,56.581079612532534],[-123.70573079229744,56.58106261889365],[-123.70512014975887,56.581147010257716],[-123.70451678278123,56.58128084688452],[-123.70385506149279,56.58140131049521],[-123.70316731596927,56.581513460425064],[-123.70253258559208,56.58166017899025],[-123.70200825425616,56.58180213973481],[-123.70142568724052,56.5819632345253],[-123.70093412669647,56.58213716059729],[-123.7003126810847,56.58236929234475],[-123.69971646914621,56.582588421560104],[-123.69932456806966,56.582801111158965],[-123.69878714207456,56.58306051741613],[-123.69826325760872,56.583297746130654],[-123.69766064302834,56.5835212354525],[-123.69670618348489,56.5838314615266],[-123.69579422629297,56.58414692496614],[-123.69504178051623,56.584420402606696],[-123.69429588030064,56.584720894407724],[-123.69358247829271,56.58505783243328],[-123.69300540994801,56.58533107749637],[-123.69256104974822,56.58567058856293],[-123.69216340855469,56.586013177398776],[-123.6916534378793,56.586358235101066],[-123.6911898332769,56.58664359469529],[-123.69063210615823,56.586830868868255],[-123.69044627833958,56.58686900873626],[-123.68951223017721,56.587485551960484],[-123.68909064145488,56.58816172637199],[-123.68867012831406,56.588785237610566],[-123.68587725329222,56.589102730016535],[-123.68552191303195,56.58904142055022],[-123.68284707620583,56.58857522677959],[-123.68105670135868,56.58812266511742],[-123.67808164703045,56.58827978319677],[-123.67597896810328,56.58824185242209],[-123.67435509968467,56.58821253549719],[-123.67395467057574,56.58853036195368],[-123.67345134364807,56.588931516226694],[-123.67224765980423,56.58985579854795],[-123.67209986590622,56.59232470095018],[-123.67223798805888,56.59322055177941],[-123.67257816310142,56.593910446583614],[-123.6732203154493,56.59439506782063],[-123.67395937182076,56.59482875369236],[-123.6732374988287,56.59571019046387],[-123.67314951918453,56.59718034000748],[-123.67343949356133,56.598710000363944],[-123.67357137114021,56.599711103659864],[-123.67358221593759,56.6000072170616],[-123.6736043143622,56.600763102814504],[-123.67375503002833,56.601449573938574],[-123.67553020048545,56.602165367947514],[-123.67731172480497,56.60277588660012],[-123.67850490366703,56.60363806908414],[-123.6791076159085,56.60475301506938],[-123.6790699784044,56.60538340373681],[-123.67604024407817,56.60643287403319],[-123.67359575871745,56.60728211593472],[-123.67172287578057,56.60819432732449],[-123.67079653168942,56.60928167662078],[-123.6696407086447,56.61099594197107],[-123.66954624731638,56.61257135260443],[-123.66986340838847,56.61368118462776],[-123.672310958768,56.61435649312925],[-123.67351061592052,56.615114595345794],[-123.67364255097995,56.61611570749933],[-123.67260139549113,56.61751598020361],[-123.67225098360272,56.618561066178316],[-123.67162446927179,56.6194442363006],[-123.6708969598131,56.62037714117077],[-123.672454993098,56.62156207146064],[-123.67277657530252,56.622566612871665],[-123.67348360696943,56.62357811197105],[-123.67456685069422,56.62464907819603],[-123.67469884532538,56.62565019450363],[-123.67434211608833,56.62680054325714],[-123.67400000837257,56.627740423642905],[-123.67338395285338,56.62841306497597],[-123.67325664145925,56.62893647736451],[-123.673292752829,56.62993586712866],[-123.67247126038643,56.63086709276266],[-123.66990292184452,56.63218821867178],[-123.66773797727868,56.633147812150256],[-123.66535594126735,56.63452378752957],[-123.6638977041031,56.63649598448584],[-123.66275026763307,56.63805233484493],[-123.66219819761812,56.639250688038466],[-123.66259225251557,56.6406780506237],[-123.66382214903537,56.640909953641376],[-123.66514043299416,56.6413026172068],[-123.6659509493134,56.64215798816501],[-123.66620391101466,56.642740966498145],[-123.66710721688152,56.64365069290817],[-123.66764270183698,56.644291462912356],[-123.66821308047274,56.64598429448347],[-123.66748499203767,56.64691719379492],[-123.66627930210828,56.64784256942717],[-123.66507249815211,56.648819478120686],[-123.66435377797035,56.6495944812936],[-123.66429059906389,56.650644774708475],[-123.66443501242075,56.65143652893664],[-123.66439392579358,56.65211955623426],[-123.66478199075878,56.65297064831201],[-123.66500173053907,56.65298583586692],[-123.6657046842724,56.653017615592574],[-123.66628991807217,56.65310442934958],[-123.66718438109076,56.653247275677806],[-123.66846553985552,56.65331303609119],[-123.66964802570298,56.65342295935248],[-123.67051574973917,56.65353503393215],[-123.6715304093736,56.65371813217345],[-123.67281262804973,56.65397106405761],[-123.6738844172992,56.6541899230828],[-123.67478601524363,56.65441915634052],[-123.67561510244651,56.65449462968685],[-123.6764217177193,56.65446768803124],[-123.67741302231249,56.65442725307794],[-123.67816897805011,56.6544274116257],[-123.67930528812239,56.654353702489665],[-123.68017894778914,56.654298799489155],[-123.68118212078765,56.65423052594805],[-123.68183227425868,56.65415477972548],[-123.68237582855397,56.654084961454984],[-123.68293373426286,56.65401427780837],[-123.68368348551432,56.65394703706237],[-123.68432059035207,56.65395287187189],[-123.68507739470154,56.65410993515933],[-123.68553894499685,56.65431886370401],[-123.68598867673212,56.654657606057775],[-123.68639894269918,56.655041596918025],[-123.68667138931755,56.65537267310735],[-123.6868773935694,56.655721613019885],[-123.68705672170013,56.65600393956582],[-123.68727658002614,56.65632622499225],[-123.6875737891483,56.65658488288501],[-123.68793158235023,56.656924211813255],[-123.688163058971,56.65722316443032],[-123.6884683682684,56.657586211605654],[-123.68873490148293,56.657948563291356],[-123.68904107947269,56.658400177930275],[-123.68926824114907,56.65877191152536],[-123.6894752616518,56.65913880026972],[-123.68966029902498,56.6594974484964],[-123.68992657863132,56.65969277481133],[-123.69031982366293,56.65978052279851],[-123.69074111508658,56.65987773902875],[-123.69129446773078,56.66002215440669],[-123.69197345096343,56.66018450801788],[-123.69236830307716,56.66034850143154],[-123.69253491188155,56.660536434574325],[-123.69279422507721,56.660849327485764],[-123.6930665007866,56.661184870202206],[-123.6932926526584,56.6615745131016],[-123.69349794795562,56.66183375510611],[-123.69380340615015,56.66209254543356],[-123.6940732084894,56.6622980141079],[-123.69437139363669,56.66250735220836],[-123.69484008892714,56.662804926765574],[-123.69542741290978,56.66306650707606],[-123.69596125917704,56.66323072983786],[-123.69665875743661,56.663392267460175],[-123.69721787724747,56.66347510841691],[-123.69764550069746,56.66353542372032],[-123.69813275832452,56.663658452515875],[-123.69844292617728,56.66380410176769],[-123.69879376010725,56.66402221486704],[-123.69915019144052,56.66424939420025],[-123.69962510382706,56.66461543802282],[-123.70006229775073,56.66496287283491],[-123.70056444579532,56.665283440549615],[-123.70119153526453,56.665599506777035],[-123.701904500144,56.66594960625223],[-123.70234621051412,56.66611776523998],[-123.7029005311947,56.66631707160849],[-123.70345443546158,56.66659259105034],[-123.70401465941123,56.66689960638894],[-123.70459609211585,56.667228294073915],[-123.70512517960516,56.667543717876626],[-123.70548878785631,56.667788941371946],[-123.7058856993274,56.66812779271278],[-123.7062511316754,56.668480655228734],[-123.70657627479271,56.66878908449178],[-123.70682044252592,56.66898061853851],[-123.70717099130752,56.669135930945004],[-123.70767816324962,56.66930411316646],[-123.70814635565378,56.669440215117],[-123.70866539743365,56.6695805810402],[-123.70939117105603,56.6698198933479],[-123.71000987410146,56.66996874834273],[-123.71061568226287,56.67005908346494],[-123.71122892341575,56.67023137498701],[-123.71187483443357,56.67043899145227],[-123.71246681924765,56.670555974757164],[-123.7126868091584,56.67056884174245],[-123.71309826971681,56.67059294823687],[-123.7134964341177,56.6705305067405],[-123.71427877523729,56.67067775657374],[-123.71563265618516,56.67049099742719],[-123.71662427056424,56.66993015239669],[-123.71743624466987,56.66915651080465],[-123.71854232257549,56.668281578079565],[-123.72095264666217,56.6680618777411],[-123.7224126103282,56.66766731215354],[-123.72415739949916,56.6673293168206],[-123.7259918836383,56.66709936617312],[-123.72705462822547,56.66696004248615],[-123.72812654131461,56.666663943784584],[-123.7292076752233,56.66620995015913],[-123.73077778967543,56.66560650031159],[-123.73252849692913,56.665164254584425],[-123.7334146246385,56.664758362358945],[-123.73455787257367,56.664883806402415],[-123.7365289733323,56.6656021543734],[-123.73801729618,56.66636469132451],[-123.74054290751477,56.66746035337155],[-123.74314122485309,56.6689248932791],[-123.74514457300883,56.67074776207575],[-123.74592696333266,56.672127816689425],[-123.74624475253282,56.67323746125219],[-123.74675961178923,56.674297863609944],[-123.74835816939823,56.67648127067433],[-123.74932360299921,56.678022546598115],[-123.75009706832296,56.67956159010648],[-123.75169344124274,56.68016667559039],[-123.75541677074273,56.68044220807499],[-123.75844294267237,56.68117854997619],[-123.75992020338576,56.68215024071047],[-123.761000397131,56.68337844034717],[-123.76188568167929,56.68465481323114],[-123.76302566120431,56.686515103085355],[-123.76444270996717,56.688537108288344],[-123.76570919366816,56.68987385850598],[-123.76622276262384,56.690934157918974],[-123.76703654323278,56.691788916829374],[-123.76767268334633,56.69406079251585],[-123.76855231074501,56.6954435082557],[-123.76953415233427,56.69672149702828],[-123.76966278942034,56.697827817040434],[-123.77026557598008,56.69904769108399],[-123.7708065542349,56.69963542162694],[-123.77078492662271,56.70001167501191],[-123.77074012523425,56.70079105727219],[-123.77155421215625,56.7016457925697],[-123.76994300859695,56.70298549673116],[-123.76839925019351,56.70311575922733],[-123.76747306209465,56.70332057271067],[-123.76732596729428,56.703352778327826],[-123.76597086813436,56.70365216934065],[-123.76497303834783,56.704318665506904],[-123.76395399400745,56.70535244921172],[-123.7631400818368,56.70612748370444],[-123.76314154419408,56.706137597317365],[-123.76302330006595,56.70627230178691],[-123.76302344079475,56.70644716789791],[-123.76305062042776,56.70668527390418],[-123.7631496036576,56.70709724534849],[-123.76315334484231,56.70713878423096],[-123.76319071591274,56.707519423820074],[-123.76313058803504,56.70785241722826],[-123.76284897067043,56.70815915624108],[-123.7627000206092,56.70825858027435],[-123.7625596975963,56.70835030713654],[-123.76231734998596,56.70847277318822],[-123.76214629406394,56.70867157582091],[-123.76204758852695,56.70889292937507],[-123.76210217494106,56.70911693883161],[-123.76227973649924,56.709408092302105],[-123.7624507405985,56.709671108855055],[-123.76258430967525,56.70994468600022],[-123.76260450993149,56.71030373145869],[-123.76259198997953,56.710591592032806],[-123.76256614789068,56.71093302626535],[-123.76254848143466,56.71127460217835],[-123.76255468021432,56.711557182523705],[-123.76254977073225,56.71192588172205],[-123.76258956512217,56.71240632687383],[-123.76260835923736,56.71257703301751],[-123.76257102684328,56.712904817549926],[-123.76252519417271,56.713238059546605],[-123.76252652926303,56.713534007084405],[-123.76257278790442,56.71390247201175],[-123.76257401083735,56.71427127792653],[-123.76259663326174,56.715120211191426],[-123.76246367893904,56.71533200556361],[-123.76220195166144,56.71561218776362],[-123.76188077387411,56.71603593931908],[-123.76164452917422,56.7164062363721],[-123.76100787463,56.717367049615284],[-123.76066686004323,56.71788573431181],[-123.76043039838748,56.71825938897104],[-123.76009086871849,56.7188229356504],[-123.75974830237114,56.71933262444796],[-123.75927068389096,56.71998344981839],[-123.75892279461391,56.72040785397647],[-123.7586675211784,56.72085852457941],[-123.75830608279857,56.721269241316044],[-123.75795716325916,56.72167569076676],[-123.75764331831095,56.722077143526874],[-123.75732033818474,56.72238876242977],[-123.75684014716435,56.7227290377317],[-123.75629604004918,56.72300655018674],[-123.75584182040437,56.72321612368941],[-123.75580200831395,56.72337348416845],[-123.75586248384363,56.7235662145028],[-123.75595405851394,56.72385812727149],[-123.75614725591775,56.72419776309032],[-123.75623912336555,56.724449327082006],[-123.75635956411735,56.72484374606486],[-123.75649119215252,56.72508030716238],[-123.75679462308243,56.72542521867306],[-123.75694056917412,56.72566202786312],[-123.75696694719086,56.72591357555868],[-123.75700591841155,56.726159737181035],[-123.75725751495904,56.72637484013],[-123.75761345747988,56.726520013311166],[-123.7581656415139,56.72666971099796],[-123.75873218092045,56.72685440427404],[-123.75936485704909,56.727134400393155],[-123.75997099735167,56.727448682362464],[-123.76050566694155,56.72772473194368],[-123.76116421692772,56.72805336756095],[-123.76175831068043,56.72836406931211],[-123.7622314474168,56.728571789575795],[-123.76254125224517,56.728772196577594],[-123.76289714825278,56.728954344767324],[-123.76334569407355,56.72916275604806],[-123.76373358333682,56.729393655784236],[-123.76393970879795,56.72965279572664],[-123.7638558454976,56.730183789277454],[-123.76386149432706,56.73054707037215],[-123.7638627300463,56.730915879869215],[-123.76382412097888,56.73123019507277],[-123.76373216385423,56.731617569117766],[-123.76353598708081,56.73207263794263],[-123.76331940082454,56.73245561344322],[-123.76312974403895,56.73279758009803],[-123.76282836856272,56.73323065079143],[-123.762611728118,56.733578875552574],[-123.76242130770596,56.733898409592236],[-123.76221849949505,56.73429059006891],[-123.76215888784428,56.73454289036755],[-123.76217329289993,56.73478974656628],[-123.76226065704287,56.735084945432256],[-123.76233892805458,56.73550216935033],[-123.76238083766094,56.735910917244276],[-123.76245991174314,56.73627883374351],[-123.76258047652577,56.73663737997456],[-123.76275069077792,56.73702256712998],[-123.76304907505033,56.737492921885206],[-123.76329308564473,56.73784127342363],[-123.76349730910877,56.73824049942787],[-123.7639015520188,56.738934630207844],[-123.76417948742208,56.73944049880718],[-123.76431770978824,56.739919289875495],[-123.76436582633953,56.740256404769916],[-123.76432658574178,56.74065253985205],[-123.76436658553902,56.74098839355908],[-123.76458485840577,56.74114461641682],[-123.76486157299937,56.74128167238394],[-123.76531619341074,56.74142292414971],[-123.76597430452922,56.74165736641431],[-123.76663507048828,56.74184589244685],[-123.76739864761765,56.74213371258003],[-123.76792650593605,56.74235468564905],[-123.7689072493624,56.74267651138638],[-123.76991047743213,56.743070457596964],[-123.77042404280768,56.74329117357287],[-123.77114850150106,56.743548030778754],[-123.77152459584129,56.74370247845829],[-123.77211140536099,56.74386055637492],[-123.77244808729965,56.74395267033689],[-123.77280263859622,56.74412579898706],[-123.77316664944996,56.74431254085393],[-123.77324549116557,56.74443720232453],[-123.77335238947575,56.74475066505417],[-123.77339907370882,56.74504291377457],[-123.77347213354327,56.745410719823845],[-123.7734665790363,56.74572112497908],[-123.77345902904207,56.74606624502626],[-123.77344782381198,56.7464393257519],[-123.77341617324097,56.7467761843115],[-123.7732925199895,56.74711033754464],[-123.77330648565429,56.74736615301095],[-123.7732993423923,56.74781104435753],[-123.77332834657284,56.748197148338406],[-123.77337455619838,56.74856897641886],[-123.7736586473017,56.74886419279503],[-123.77400173168839,56.74905953922504],[-123.77452870545491,56.74926253365659],[-123.77511628191583,56.74951589018506],[-123.77550367330517,56.74976019542374],[-123.77578327055569,56.74999143582934],[-123.77599290675369,56.75026406814923],[-123.77623808990919,56.75055973033053],[-123.77675338509187,56.751216496615136],[-123.77663593825446,56.751585509649715],[-123.776569259829,56.751748020976535],[-123.77674824000819,56.75194838454577],[-123.77697939460262,56.75216757993126],[-123.77747491815065,56.752312852915985],[-123.77792876977787,56.75239911878508],[-123.77840302129741,56.752486854452876],[-123.77920107363667,56.752642922565364],[-123.77997068565058,56.75275926438748],[-123.78040658122804,56.75283736652917],[-123.78088678993826,56.75292855800614],[-123.78149474010033,56.753149726733945],[-123.78212757297997,56.75336571457026],[-123.78253604475421,56.753457911272946],[-123.78386610975924,56.75355245249338],[-123.78460449389455,56.75357070918582],[-123.785052249972,56.753513364705306],[-123.78540652241237,56.75337146813898],[-123.78576200620198,56.75324416362827],[-123.78609804717046,56.75313446036683],[-123.78646790865935,56.753113889473155],[-123.78709898217942,56.75321772840944],[-123.78778485915377,56.75340208848326],[-123.7883060813233,56.753564572840695],[-123.7889443301865,56.75375820045828],[-123.78962459898986,56.75396935717335],[-123.79016400081588,56.754208368429346],[-123.79079792355392,56.75444226650842],[-123.7914507873962,56.754739257437095],[-123.79207187386324,56.75498301829224],[-123.79267021055202,56.75530261157906],[-123.79309364820038,56.755564291424186],[-123.79332465712153,56.755752067356774],[-123.79328010531567,56.755922810748],[-123.7931553687247,56.75617065157321],[-123.7930445003661,56.75635483548079],[-123.79299118649872,56.75653551779279],[-123.79298482113202,56.75679098332257],[-123.79282804254566,56.757061816956586],[-123.79278221049066,56.757254957319326],[-123.79287464139074,56.75743028047098],[-123.79311365490209,56.75762155624455],[-123.7934679085584,56.75776771829783],[-123.79393644549575,56.757885563443764],[-123.79437192210338,56.75800844773216],[-123.79476072570137,56.75819554917694],[-123.79495389445775,56.75836474183413],[-123.79521059651535,56.75867737661511],[-123.79544913214554,56.758949347392075],[-123.79565325507073,56.75917813548629],[-123.79588591207593,56.759445521480735],[-123.79615669304408,56.75972700795268],[-123.79639472462455,56.75997206578873],[-123.79658503435279,56.760155779424544],[-123.79685095973133,56.76041476287293],[-123.7971878847132,56.76068616439634],[-123.79722763995932,56.760851619651575],[-123.79724176865584,56.76110743461785],[-123.79722256893652,56.761336900383746],[-123.79723537617275,56.76168797286308],[-123.7972894760337,56.76192541267701],[-123.79731563115105,56.76218591635886],[-123.79698776982889,56.76247514005481],[-123.79680986045348,56.76261334835788],[-123.79900830920279,56.76394434258315],[-123.80000693269874,56.764470238392896],[-123.80096777363035,56.76497642789434],[-123.8026148887699,56.7664235297183],[-123.80370774457343,56.76749353199466],[-123.8057676458836,56.7684218783354],[-123.80745277852873,56.76923959210444],[-123.80751030610158,56.76992434100048],[-123.80699350859204,56.77054667157465],[-123.80711457996796,56.77180978371614],[-123.80697667797322,56.77254390568062],[-123.806556061385,56.77316786649332],[-123.80593315686716,56.77399801276247],[-123.8048081886384,56.77518843084508],[-123.80380028841574,56.77601203668139],[-123.80353328414692,56.777322375880935],[-123.8033595760916,56.77868586335918],[-123.80311936341162,56.77952361833328],[-123.80239107490618,56.78051001862835],[-123.80109724159819,56.78127606843581],[-123.80009801592905,56.781942866503385],[-123.80000565360277,56.78208926212256],[-123.79957101610573,56.782775742558954],[-123.7985060452408,56.78459711682562],[-123.79815752084426,56.785642644339816],[-123.79694470665962,56.78667346274342],[-123.7962884064006,56.7880825438018],[-123.79622558413772,56.78918561908505],[-123.79587395856872,56.79028377747476],[-123.79562457969686,56.791278306939546],[-123.79520862410337,56.79184963870989],[-123.79002654642493,56.79333846467504],[-123.78581082057403,56.79473825310972],[-123.7810582720733,56.79544603843134],[-123.77755013841778,56.79622658746569],[-123.77807656085982,56.797129040131566],[-123.77969700029158,56.799050167454986],[-123.77981829812106,56.80000956026207],[-123.77982928897931,56.80010391066559],[-123.78046494088308,56.80242850374014],[-123.77912165214978,56.804035370879184],[-123.77728977109516,56.805790778659926],[-123.77608182231123,56.80671614591377],[-123.77498704172673,56.80724213618018],[-123.77482728990037,56.807380634899786],[-123.77440805847151,56.80771532994488],[-123.77377630614328,56.807822173599206],[-123.7731888859742,56.80787148544004],[-123.77280773234472,56.80790080182613],[-123.77226728087003,56.80802490234039],[-123.77174268743771,56.8081941129461],[-123.77118985294256,56.808354988549326],[-123.77069624604276,56.808520244496194],[-123.77025068677321,56.80863476063462],[-123.7699464234189,56.808682207523155],[-123.76984276772798,56.80877234326739],[-123.76967409630231,56.8090295071429],[-123.76992781342268,56.80943182695424],[-123.77006231346776,56.80966058243934],[-123.77010964934422,56.80990689367181],[-123.77015278876807,56.81022599681686],[-123.77021495349197,56.81053533869918],[-123.77036999970784,56.81079919830385],[-123.77058276788118,56.81102257490957],[-123.7707896651891,56.8112054945453],[-123.77110116051635,56.811495586962195],[-123.77118310187004,56.811711105867],[-123.77120579065003,56.81195811364595],[-123.77114900637521,56.8121959067928],[-123.77099853109792,56.81242199853478],[-123.77077187116075,56.81272412701228],[-123.77056239429774,56.81297722750344],[-123.7703942258673,56.813225433964156],[-123.77022502210227,56.81349155828613],[-123.77008124885675,56.81374354747266],[-123.77001874162708,56.81400926675823],[-123.77004728023424,56.81433260324012],[-123.77011000140631,56.81456124414731],[-123.77037665688634,56.814775460156746],[-123.77068777541083,56.81496577915419],[-123.77101140396815,56.8151170780222],[-123.77158798325553,56.81536464968355],[-123.77192577186186,56.815519552788686],[-123.77243666315506,56.815732360794],[-123.77296585578924,56.8158412293678],[-123.77357948420858,56.81590894962503],[-123.7743593098859,56.81601203167047],[-123.77505216793689,56.81609343720457],[-123.77576018979472,56.81623226981072],[-123.77625600293597,56.81642238361916],[-123.77671972472169,56.81663548536198],[-123.77713777017283,56.816893762005975],[-123.777523789376,56.81717390747493],[-123.77784999809919,56.81742387993031],[-123.77812904009332,56.817780657315296],[-123.77821921360317,56.81806805618745],[-123.77833354377553,56.818327844652686],[-123.77838913240652,56.81861016628981],[-123.77845138577614,56.81888363433473],[-123.77854154582664,56.819242776170995],[-123.77867661838165,56.819570179521364],[-123.77886409567829,56.81987830357027],[-123.77920390390992,56.820177829231504],[-123.77951535828096,56.820399519641605],[-123.77988087516137,56.820644555671265],[-123.78035773050287,56.820880288629205],[-123.78090082943885,56.82110594472811],[-123.78144317009277,56.82130916570243],[-123.78179597739711,56.82145421039975],[-123.78225338346051,56.82167166725119],[-123.78260356372022,56.82186262524637],[-123.78307557528117,56.822147588439584],[-123.7833215989206,56.822365907548864],[-123.78355577064806,56.82261204811233],[-123.78376746895769,56.82278493946548],[-123.7840577813245,56.82287510108509],[-123.7837875734111,56.82340070653802],[-123.78359842658071,56.82369341175741],[-123.78335789850514,56.8239874796062],[-123.78309090924877,56.82427773132615],[-123.78291490342244,56.82444847276373],[-123.78354746645864,56.8249402020139],[-123.78383034742717,56.825160271768],[-123.78712628757728,56.82666044772529],[-123.79294635194624,56.82852640510064],[-123.79978896871346,56.83003281069683],[-123.8019155035488,56.83103743658402],[-123.8039256962769,56.83438067419722],[-123.80557670536466,56.8362470633816],[-123.8077089403563,56.8394757268875],[-123.81216226167376,56.8460975608505],[-123.81489555524065,56.85149752570379],[-123.81466293657796,56.855609900112185],[-123.81252149091905,56.85890091225832],[-123.8109485089138,56.861143272985146],[-123.81268968100004,56.862894515804555],[-123.81438403087837,56.86344323003999],[-123.82011949039008,56.86576383745596],[-123.8237828057708,56.86812117296778],[-123.82440761676146,56.870741348761],[-123.82568431755544,56.873462134268664],[-123.82908403277281,56.87497189990427],[-123.83458796273526,56.87677678917889],[-123.83803581604191,56.87890590947005],[-123.84936522289318,56.89183777120348],[-123.84942439471052,56.895497720294564],[-123.84316717115095,56.89563602055563],[-123.83815075150163,56.89564223677738],[-123.83297386125332,56.89674866081975],[-123.83120585660173,56.89894323053483],[-123.83123667890449,56.90219919145624],[-123.83273240555181,56.905147801355604],[-123.83232061934636,56.9074995623291],[-123.82894753847164,56.90926374569873],[-123.82547984120131,56.91124150208346],[-123.82245233190422,56.91357632055779],[-123.81922791967783,56.91618578890097],[-123.81837006475276,56.91826099667244],[-123.81896007740485,56.921795462575545],[-123.81890789466269,56.925337085865806],[-123.81896241292472,56.9267011933303],[-123.82018270492894,56.92840773325555],[-123.82356685074383,56.93144198280654],[-123.82750957511337,56.93333753104212],[-123.82992171084166,56.93347650069318],[-123.83426283688189,56.93239203004733],[-123.84136267933684,56.92995423652808],[-123.84307047640611,56.9285566476089],[-123.8454585676851,56.928237550902836],[-123.85000665575124,56.92932632713584],[-123.85350495195263,56.93064870868847],[-123.85672441634021,56.93254932983796],[-123.86067363858233,56.93643490576348],[-123.86489217178554,56.939634227386634],[-123.86636570779494,56.93978398968187],[-123.87101955181782,56.938694458756494],[-123.87788602598383,56.93808036853829],[-123.88378752414341,56.93914519304888],[-123.88654756570014,56.9422572418688],[-123.88908828318543,56.94547328722648],[-123.89049146978415,56.946312180937774],[-123.8955255585551,56.948815218092186],[-123.89800359380844,56.952899986762745],[-123.89854230925809,56.95751837213117],[-123.89828668466876,56.96129884645344],[-123.89834324538256,56.96237595422416],[-123.89642864607775,56.96395031256678],[-123.89227611812589,56.966977127871395],[-123.89080088921692,56.9689441766087],[-123.89082890044894,56.97174275862974],[-123.89203236733633,56.97504469774871],[-123.89322264449419,56.975880108891744],[-123.89564564151283,56.976475378559854],[-123.9003778601906,56.97703615729569],[-123.90159239052952,56.978338235567065],[-123.90016323761958,56.98127473407975],[-123.89963522391109,56.983400687086764],[-123.89747371735676,56.98645987100976],[-123.89581971824468,56.98927612395387],[-123.89702437174299,56.99046150229],[-123.89837736073702,56.99255508023374],[-123.89664802660967,56.99372890920858],[-123.89515099217799,56.99517553087942],[-123.89635629934813,56.99635195961919],[-123.89995604128111,56.99716346207984],[-123.9047964344876,56.99790516129944],[-123.90787943370009,56.99882470883451],[-123.95479489043407,56.99908626218126],[-123.95449680106418,57.000041184784635],[-123.9541801215501,57.00134557943446],[-123.95285306311982,57.00273273630527],[-123.95109748349005,57.00411313669076],[-123.94842901132809,57.00590961067948],[-123.94898475724725,57.00693179493328],[-123.95079396714316,57.00857459883757],[-123.95307759631197,57.011534221386405],[-123.95637371674043,57.01345143432589],[-123.9614127922856,57.013925055013885],[-123.96736777741124,57.01330070927204],[-123.97185937682184,57.01320933796688],[-123.97752257874338,57.013736896707094],[-123.98151603712623,57.01433697810373],[-123.9853941188522,57.01430737019356],[-123.9887503752629,57.01416196641525],[-123.99242433491804,57.01488232899778],[-123.99444745308024,57.01594486238433],[-123.9967016010988,57.01827544322341],[-123.9972009668762,57.02135924316283],[-123.99654182464133,57.0238781601827],[-123.99341125591751,57.02853832390834],[-123.99151534660642,57.03197985027801],[-123.98761931995183,57.03515729638669],[-123.98181600925956,57.037551756429174],[-123.98152490741937,57.038695206225675],[-123.97773670798229,57.04199065604421],[-123.9742218270481,57.043846333797575],[-123.96977756753239,57.04609999719283],[-123.96170184951168,57.04988419775931],[-123.95589184337966,57.05233129482079],[-123.95215468548845,57.053671722163664],[-123.94421943640332,57.05476651164356],[-123.93614684483238,57.054719623893604],[-123.9277236273807,57.05351866162359],[-123.92364949228279,57.05435068029197],[-123.9225729743945,57.05715868455591],[-123.92323507981764,57.05835311681957],[-123.92433608357905,57.06028997792632],[-123.92434643305955,57.06132155420745],[-123.92422314395225,57.06452145547864],[-123.91966774391086,57.06689732111111],[-123.91764343286837,57.07011172814874],[-123.9175583566002,57.075034292842666],[-123.91941364633031,57.07799674881875],[-123.9224206065427,57.08105825532656],[-123.92418973379758,57.08470988171029],[-123.92459576248766,57.08790032433403],[-123.92520057656027,57.09138991092539],[-123.92767166724195,57.09399432717529],[-123.92942954738552,57.09695510663529],[-123.93075559814332,57.09934396733448],[-123.9330023425042,57.101218233946824],[-123.93631025906107,57.10365636110821],[-123.9371741053634,57.10450414159158],[-123.941204188832,57.106128406401616],[-123.94355153689982,57.107376241738166],[-123.94629871831071,57.10826259724504],[-123.95073449732084,57.10942655558935],[-123.95476060776272,57.1108350719194],[-123.95508086936776,57.11134235539891],[-123.95795300358611,57.11268783676993],[-123.96145247773003,57.113747076961],[-123.96705774054462,57.115646249675464],[-123.97067750718492,57.117568133401534],[-123.974584363332,57.11844499761099],[-123.98030192161892,57.120121105551256],[-123.98484638818779,57.12146493846859],[-123.98738050066093,57.12171929119412],[-123.99098078474857,57.122779275784886],[-123.99343041562292,57.1240187935375],[-123.99422711552323,57.12618358720539],[-123.99333687763084,57.12865431219821],[-123.99578897845008,57.13017186058539],[-123.99987394464169,57.13115830927956],[-124.00337564322315,57.13413579148958],[-124.00586854924545,57.13551923448319],[-124.00738280931003,57.13758727972523],[-124.007951419813,57.140340468905855],[-124.00774426834651,57.14432852388662],[-124.00669142343027,57.14802564704904],[-124.00684543843721,57.150476553917116],[-124.00768509057644,57.15088400245071],[-124.01153010432462,57.152395578931944],[-124.01559650610504,57.15379380452479],[-124.02079706534897,57.15599836537052],[-124.02430374486582,57.15831164639741],[-124.02628159137264,57.159130817686496],[-124.03095306978844,57.16166779447398],[-124.03790738008551,57.16491157699387],[-124.04300953293031,57.16682674268263],[-124.04614628081664,57.16799481042834],[-124.05310110032853,57.16736314452157],[-124.06421523728716,57.16372539992367],[-124.07561874025743,57.161866857576854],[-124.08115893554564,57.163329543688285],[-124.08454463818315,57.16649142710894],[-124.08844845114612,57.17056666281292],[-124.08988708667958,57.17194200468897],[-124.09193924952739,57.1743039029295],[-124.09423649949179,57.17973672775041],[-124.0943260568215,57.18493107804288],[-124.09429987760788,57.18612357491547],[-124.09399358152035,57.18994888555365],[-124.09261763394959,57.19461964172822],[-124.09164798338946,57.200776238420204],[-124.09196814046975,57.204996403813844],[-124.09496195492149,57.207129849973086],[-124.09715928473486,57.20828297450184],[-124.1021415798644,57.211117847108966],[-124.10848100200674,57.214689684949505],[-124.1132696426012,57.21677688359947],[-124.12092155863584,57.21831308656928],[-124.1275217284986,57.22000420353295],[-124.13027503653267,57.22372988749992],[-124.13240120886641,57.227401723710095],[-124.13560664212206,57.23003951231532],[-124.1370679770985,57.230347332245906],[-124.14405511340307,57.23369342524564],[-124.14735840180634,57.23673592059905],[-124.14811013470417,57.24142847826278],[-124.14727299695627,57.245694959331864],[-124.14759932189804,57.25026493079151],[-124.1537720643013,57.252352242396896],[-124.15882437533463,57.252557904555765],[-124.16690295789375,57.254034548017785],[-124.17211471579867,57.25646629524506],[-124.17492318706518,57.25813785905931],[-124.18053391352824,57.262673626829546],[-124.18357660175566,57.26816916493005],[-124.18231861070267,57.27227759930804],[-124.18089977766039,57.27382754288936],[-124.17886921301363,57.27601476849197],[-124.17687152892803,57.27833472542815],[-124.17649874891951,57.27844614110204],[-124.17586804017311,57.27843736398086],[-124.1753635223,57.278611970869946],[-124.17541480167387,57.278625017704044],[-124.17067760051914,57.284038176099926],[-124.17121815446234,57.28610644967959],[-124.17104377388354,57.28658276146723],[-124.17179171854137,57.28752938248898],[-124.17536168220624,57.28987081966732],[-124.17607121843342,57.290146413894234],[-124.17661183979953,57.290523924977975],[-124.17982522073129,57.29220999165414],[-124.17931279076802,57.29259080598374],[-124.1785125117881,57.2946964881577],[-124.1774529401334,57.295269265593475],[-124.17538406688281,57.29614304747684],[-124.17470476550928,57.29662355232742],[-124.17262338413455,57.29740854525432],[-124.1672066827415,57.29783299444233],[-124.16597073442296,57.297660987781875],[-124.16333808666317,57.29768019713809],[-124.16194214471166,57.29798466172336],[-124.15900466136308,57.29915658724794],[-124.15812719462741,57.299347201657],[-124.15554000676474,57.30126172446327],[-124.15486072032392,57.301562741077895],[-124.15331348559857,57.3027148612459],[-124.15298501754,57.30319235319494],[-124.1524742488357,57.30357309520734],[-124.15194680720803,57.30395472173966],[-124.15057402680311,57.30454642668255],[-124.15004655275712,57.30492804587222],[-124.14918467522592,57.30522197487647],[-124.14762184092962,57.30561812050725],[-124.14585130859942,57.305541524878684],[-124.14584328223027,57.30506489735481],[-124.14142591293896,57.304050460758226],[-124.13827478095786,57.30408424854857],[-124.13740480095964,57.30428716775538],[-124.13497164617176,57.30506098197699],[-124.13409473363669,57.30536244823455],[-124.13131648405012,57.30605280179035],[-124.12554087567335,57.30685389951724],[-124.12152955047354,57.307178842366675],[-124.11854536200902,57.30748700839549],[-124.11451691776914,57.30790343364039],[-124.11168665629951,57.30786944177124],[-124.11071865165064,57.30790707739201],[-124.10183818894953,57.31133988331436],[-124.098937727037,57.31229353322379],[-124.08963684815633,57.3126225938222],[-124.08386349177668,57.31317412598469],[-124.0837716191312,57.313182875046515],[-124.08329866303657,57.31333181762855],[-124.08311909174952,57.3131419459289],[-124.07841866057638,57.31479203996684],[-124.07494677958768,57.318365012943374],[-124.07022266841864,57.3259739713104],[-124.06959649828237,57.331162935174916],[-124.06961300480931,57.33116542051996],[-124.06969357331661,57.331175575791754],[-124.06977200772435,57.331186820888355],[-124.0698504421783,57.33119806593814],[-124.06992882002378,57.331210431373236],[-124.0700072545724,57.33122167632955],[-124.07008563251716,57.33123404167117],[-124.07016395386484,57.331247527398155],[-124.07024025442577,57.331259862096296],[-124.07031857588106,57.33127334773128],[-124.07039481990245,57.33128680277199],[-124.07047100733871,57.33130137820071],[-124.07054719483311,57.331315953585396],[-124.0706233823857,57.33133052892609],[-124.0706995133642,57.331346224655036],[-124.07077356691173,57.33136188979839],[-124.0708496980145,57.33137758544057],[-124.07092363843297,57.33139549136456],[-124.0709976355444,57.33141227681456],[-124.07106944198041,57.331431272551306],[-124.07114332598653,57.33145029878484],[-124.0712151325665,57.331469294442435],[-124.07128688260272,57.331489410493795],[-124.07135857610137,57.33151064693902],[-124.0714302696798,57.33153188334547],[-124.07149982922434,57.33155420961575],[-124.07156938885021,57.33157653584958],[-124.07163889195239,57.33159998247999],[-124.07170833853687,57.331624549506955],[-124.07177784181178,57.33164799606475],[-124.07184515446255,57.331673652927634],[-124.07191252380096,57.331698189323454],[-124.07197983663075,57.331723846118344],[-124.07204709295769,57.33175062331257],[-124.07211434937895,57.33177740047276],[-124.07218160589458,57.331804177599224],[-124.07224672839668,57.3318320446069],[-124.07231185099386,57.33185991158285],[-124.07237905120958,57.331887809043444],[-124.07244411741658,57.33191679638873],[-124.07250918372235,57.33194578370227],[-124.07257217259856,57.331974740471146],[-124.07263718252395,57.3320048481564],[-124.07270011502014,57.33203492529908],[-124.0727651251489,57.332065032922436],[-124.07282805784509,57.33209511000524],[-124.07289099064042,57.33212518705852],[-124.07295386696762,57.3321563845165],[-124.07301674339757,57.33218758194514],[-124.07307961993028,57.33221877934443],[-124.07314249656575,57.33224997671437],[-124.07320537330399,57.332281174055026],[-124.07326819358669,57.33231349180067],[-124.07332899298311,57.332344658581434],[-124.07339181347491,57.33237697626954],[-124.07345261307337,57.33240814299475],[-124.0735133562198,57.33244043012698],[-124.07357617702523,57.33247274772945],[-124.07363697692671,57.332503914371564],[-124.07369772038142,57.332536201421156],[-124.07375846393887,57.332568488443314],[-124.07381920759909,57.33260077543837],[-124.07388208546801,57.33263197246376],[-124.07394282933376,57.33266425940319],[-124.07400357330225,57.33269654631541],[-124.07406437390904,57.33272771276527],[-124.07412517461509,57.33275887918775],[-124.07418591888836,57.332791166018076],[-124.07424671979467,57.33282233238581],[-124.07430752080029,57.332853498726294],[-124.074368378432,57.33288354460407],[-124.0744291796344,57.33291471088966],[-124.07449003745944,57.33294475671255],[-124.07455083885864,57.332975922943376],[-124.07460961929088,57.333005938230244],[-124.07467042088516,57.333037104407246],[-124.07472914498909,57.33306824007782],[-124.0747878691888,57.33309937572275],[-124.07484653697108,57.33313163177813],[-124.0749052048525,57.333163887808055],[-124.07496179523635,57.33319611333722],[-124.07501838571568,57.333228338842645],[-124.0750749197839,57.33326168476076],[-124.07513151045592,57.3332939102192],[-124.07518804472005,57.33332725609029],[-124.07524457908292,57.33336060193788],[-124.07529903593678,57.33339391729192],[-124.07535343638692,57.33342835306044],[-124.07540789343241,57.33346166837123],[-124.07546229407728,57.33349610409663],[-124.07551669482028,57.33353053980039],[-124.07557109566143,57.3335649754826],[-124.07562341898151,57.33359938067834],[-124.07567782001702,57.3336338163183],[-124.0757301435276,57.33366822147335],[-124.07578454475745,57.33370265707095],[-124.07583681197356,57.33373818262219],[-124.07588913577047,57.33377258771677],[-124.0759434808105,57.33380814368829],[-124.07599580479939,57.33384254874238],[-124.07604807240361,57.33387807421351],[-124.07610039658265,57.33391247922778],[-124.07615266437993,57.333948004659206],[-124.07620498874905,57.33398240963397],[-124.07625725673938,57.33401793502574],[-124.07630958129863,57.33405233996065],[-124.07636184948204,57.33408786531284],[-124.07641417423139,57.33412227020799],[-124.07646644260788,57.334157795520625],[-124.07651876754733,57.334192200375995],[-124.07657109258108,57.334226605211505],[-124.07662543890252,57.33426216091391],[-124.07668191944431,57.334296626605415],[-124.07674053420742,57.334330002283366],[-124.0768011702771,57.33436452882006],[-124.07686394057603,57.33439796533741],[-124.07692671098494,57.334431401825626],[-124.07698948150376,57.33446483828475],[-124.07705427335145,57.33449942559513],[-124.07711704409385,57.33453286199514],[-124.07718183617254,57.33456744924447],[-124.07724247301846,57.33460197558413],[-124.07730310997405,57.33463650189665],[-124.0773595916815,57.3346709673072],[-124.07741601705078,57.33470655313257],[-124.07746615303793,57.334743168065685],[-124.07751421143628,57.334779752545664],[-124.07755805811665,57.334817396578885],[-124.07759774950523,57.33485497973107],[-124.07763322915552,57.33489362244467],[-124.07766034167086,57.3349332638575],[-124.07768324241859,57.33497396483984],[-124.07769991012142,57.3350145745233],[-124.0777081541952,57.335057303355406],[-124.07771432058483,57.33510000175666],[-124.07771835285152,57.33514379016613],[-124.07772244155927,57.335186458138054],[-124.0777264738444,57.33523024655038],[-124.0777284848585,57.33527288409338],[-124.0777325171597,57.33531667250852],[-124.07773447175337,57.33536043049342],[-124.07773642635155,57.33540418847996],[-124.0777363596645,57.33544679559727],[-124.07773831426924,57.33549055358683],[-124.07773813472039,57.33553540158548],[-124.07773801160305,57.33557912914662],[-124.07773788848543,57.33562285670927],[-124.07773568763413,57.33566655384192],[-124.07773556451356,57.33571028140782],[-124.07773330722223,57.33575509898279],[-124.07773110635806,57.33579879612006],[-124.07772884905621,57.33584361369822],[-124.07772457043643,57.33588728040694],[-124.07772231312171,57.33593209798823],[-124.07771803448452,57.33597576469979],[-124.07771369940421,57.3360205518523],[-124.07770936431375,57.33606533900639],[-124.07770502921312,57.336110126161834],[-124.0777006941023,57.336154913318865],[-124.07769635898134,57.336199700477266],[-124.07768994608534,57.33624445720497],[-124.07768353317434,57.33628921393398],[-124.07767712024827,57.33633397066421],[-124.07767278507932,57.3363787578285],[-124.07766429435104,57.3364234841288],[-124.07765788137988,57.33646824086306],[-124.07765146839368,57.336512997598575],[-124.07764297761058,57.33655772390242],[-124.07763650815545,57.336603601080675],[-124.07762801733469,57.33664832738673],[-124.07761952649403,57.336693053694034],[-124.07761305698774,57.336738930876116],[-124.0776045661094,57.336783657185684],[-124.07759607521116,57.33682838349625],[-124.07758545005572,57.33687419981437],[-124.07757695911496,57.336918926127126],[-124.07756841171532,57.33696477288138],[-124.07755992073443,57.33700949919626],[-124.07754929548518,57.33705531551818],[-124.07754080446178,57.33710004183507],[-124.07753017916438,57.337145858158806],[-124.07752168809844,57.337190584477895],[-124.0775110627529,57.33723640080347],[-124.07750043738187,57.33728221712994],[-124.07748986842714,57.33732691301645],[-124.07748132083157,57.33737275978029],[-124.07747075182938,57.33741745566858],[-124.07746012635957,57.337463271998494],[-124.07744950086425,57.33750908832928],[-124.07743893178707,57.33755378421998],[-124.07742830624113,57.33759960055243],[-124.07741975851053,57.337645447322465],[-124.0774091893608,57.33769014321577],[-124.07739856374118,57.33773595955096],[-124.07738799454155,57.337780655445755],[-124.07737736887132,57.337826471782684],[-124.07736679962181,57.33787116767913],[-124.07735617390094,57.33791698401765],[-124.07734554815458,57.33796280035703],[-124.07733497883007,57.338007496255905],[-124.07732643089605,57.33805334303501],[-124.07731586152408,57.33809803893572],[-124.07730523567892,57.33814385527857],[-124.07729466625707,57.33818855118087],[-124.07728611823411,57.33823439796419],[-124.07727554876482,57.33827909386819],[-124.07726705714843,57.338323820212096],[-124.07725643118185,57.338369636559406],[-124.07724793952292,57.33841436290546],[-124.07723736995911,57.33845905881302],[-124.07722882180673,57.33850490560269],[-124.07722033008537,57.33854963195187],[-124.07720976045177,57.3385943278621],[-124.07720126868816,57.33863905421324],[-124.07719277690468,57.33868378056551],[-124.07718422864842,57.338729627360706],[-124.07717781472697,57.33877438415576],[-124.07716932288588,57.33881911051141],[-124.0771608310249,57.33886383686823],[-124.07715441705345,57.338908593666986],[-124.07714800306694,57.33895335046711],[-124.0771415890654,57.338998107268495],[-124.07713511859404,57.33904398451345],[-124.07712870456216,57.33908874131752],[-124.07712431198165,57.33913464900665],[-124.07711784146639,57.33918052625572],[-124.0771114273913,57.339225283063946],[-124.0771070347743,57.33927119075756],[-124.07710056421513,57.339317068011],[-124.0770961715745,57.339362975707694],[-124.07708975744336,57.339407732521515],[-124.07708328684026,57.339453609779234],[-124.07707681622163,57.339499487038324],[-124.07707040204487,57.3395442438562],[-124.07706185344892,57.33959009067564],[-124.07705336129052,57.33963481705364],[-124.07704481265384,57.33968066387543],[-124.0770363204553,57.33972539025557],[-124.07702575028067,57.33977008619391],[-124.07701518008128,57.339814782133026],[-124.07700253189606,57.33985944762961],[-124.07698994014156,57.33990299268371],[-124.07697521393176,57.33994762773737],[-124.07696054414882,57.339991142347934],[-124.07694379636187,57.34003462651433],[-124.07692704853679,57.34007811068006],[-124.0769082226983,57.34012156440027],[-124.07688737530303,57.340163867231254],[-124.07686652786158,57.340206170060334],[-124.07684360239179,57.34024844244172],[-124.07681865535277,57.340289563931215],[-124.07679163027345,57.34033065497067],[-124.07675842763749,57.34037053422133],[-124.07671899095969,57.340410322121464],[-124.07667343316164,57.34044777777899],[-124.07662371928457,57.340485172523394],[-124.07656984931646,57.34052250634967],[-124.07651401419469,57.34055756881741],[-124.07645396649221,57.34059369080178],[-124.07639397515494,57.340628692316415],[-124.07632982769906,57.340663632896714],[-124.07626781461457,57.34069748345835],[-124.0762036669276,57.34073242397897],[-124.07613957560976,57.34076624402589],[-124.07607750570143,57.34080121494388],[-124.07601757018301,57.340835095849094],[-124.07595965608142,57.340870127631156],[-124.07590584141413,57.34090634075336],[-124.075854161159,57.34094146387292],[-124.07580865837492,57.34097779880334],[-124.07576725505227,57.34101531508829],[-124.07573208572323,57.34105292275197],[-124.07570309390618,57.34109174224262],[-124.07568241414694,57.34113068358547],[-124.07566785543747,57.341171957206804],[-124.07566160883125,57.34121335268645],[-124.07565530570999,57.341255868610865],[-124.0756511371147,57.34129729455756],[-124.07564899004905,57.34133987141398],[-124.0756489210215,57.341382478736676],[-124.07565093003899,57.341425116525606],[-124.07565288255911,57.341468874759684],[-124.07565489158559,57.341511512551634],[-124.07566100021928,57.341555331717984],[-124.07566710886701,57.341599150885685],[-124.07567321752875,57.341642970054735],[-124.075681404264,57.341686819689315],[-124.07569166907993,57.341730699789096],[-124.07570193391946,57.341774579889645],[-124.07571427684928,57.341818490454756],[-124.07572656330721,57.341863521464425],[-124.07573890629413,57.34190743203032],[-124.07575327088374,57.341952493504245],[-124.07576971358372,57.341997585440964],[-124.07578413474253,57.34204152647038],[-124.07580057751733,57.34208661840666],[-124.07581909841481,57.34213174080453],[-124.07583554126981,57.342176832739746],[-124.07585406225239,57.34222195513604],[-124.07587258327877,57.34226707753147],[-124.07589110434894,57.342312199925914],[-124.07591170355909,57.34235735278012],[-124.07593230281795,57.342402505632656],[-124.07595290212555,57.34244765848372],[-124.0759735014819,57.342492811333244],[-124.07599410088697,57.34253796418112],[-124.07601470034079,57.34258311702754],[-124.07603529984334,57.34262826987232],[-124.07605595588646,57.34267230227049],[-124.07607863360187,57.34271748557009],[-124.07609923325258,57.34276263840991],[-124.07611983295202,57.34280779124803],[-124.07614043270021,57.342852944084655],[-124.07616316711196,57.342897006931196],[-124.07618376695956,57.34294215976421],[-124.07620234521316,57.34298616169432],[-124.07622294515522,57.3430313145246],[-124.07624360163292,57.34307534690776],[-124.07626218002035,57.343119348834215],[-124.07628075845064,57.34316335075961],[-124.07629933692373,57.343207352684004],[-124.0763158372945,57.343251324153],[-124.07633441585088,57.34329532607558],[-124.07635299445009,57.34333932799707],[-124.0763715730921,57.34338332991753],[-124.07639015177698,57.343427331836935],[-124.07640878698736,57.34347021330941],[-124.07642736575741,57.3435142152267],[-124.07644594457032,57.343558217142935],[-124.07646452342605,57.34360221905815],[-124.07648315880536,57.34364510052621],[-124.07650381591546,57.34368913289054],[-124.07652239490164,57.343733134802314],[-124.07654310858379,57.34377604671743],[-124.0765616876576,57.3438200486267],[-124.0765824014311,57.34386296053877],[-124.07660305877359,57.34390699289543],[-124.07662163798025,57.34395099480092],[-124.07664235189222,57.34399390670811],[-124.07666300937476,57.34403793905998],[-124.07668372338043,57.34408085096365],[-124.07670438095774,57.34412488331219],[-124.07672509505713,57.34416779521236],[-124.07674575272922,57.34421182755759],[-124.07676646692232,57.34425473945428],[-124.0767871246892,57.344298771796126],[-124.076807838976,57.34434168368935],[-124.07682849683768,57.34438571602782],[-124.07684921121817,57.34442862791753],[-124.07687194738675,57.34447269069809],[-124.0768926618633,57.34451560258414],[-124.07691331991695,57.3445596349155],[-124.07693611270645,57.344602577242455],[-124.07695677085734,57.34464660957009],[-124.07697748552363,57.34468952144885],[-124.07700022199573,57.344733584216605],[-124.07702093675807,57.34477649609157],[-124.07704165156703,57.34481940796474],[-124.07706438819058,57.344863470726025],[-124.07708510309558,57.344906382595404],[-124.07710783982111,57.34495044535231],[-124.07712855482218,57.34499335721789],[-124.07714921340659,57.345037389529324],[-124.0771720067468,57.34508033183223],[-124.0771927218905,57.34512324369228],[-124.07721545886946,57.345167306438434],[-124.07723617410925,57.34521021829458],[-124.07725683293519,57.34525425059695],[-124.077279626526,57.345297192888786],[-124.07730028544918,57.345341225187404],[-124.07732100087873,57.34538413703632],[-124.07734373816122,57.34542819976969],[-124.07736445368681,57.345471111614835],[-124.077385169259,57.34551402345811],[-124.07740582842133,57.345558055748015],[-124.07742862236123,57.34560099802463],[-124.07744928162074,57.34564503031076],[-124.07746999738269,57.345687942146874],[-124.07749065673703,57.34573197442977],[-124.07751137259271,57.345774886262305],[-124.07755072615556,57.34586067948756],[-124.07763385768763,57.34586189685332],[-124.0777190110658,57.345864265047354],[-124.07780214261103,57.345865482306586],[-124.07788521771874,57.345867819961974],[-124.07796834927701,57.34586903711609],[-124.07805355912976,57.34587028464447],[-124.0781366906988,57.34587150169187],[-124.0782219569955,57.34587162866207],[-124.07830716686232,57.34587287602582],[-124.07839237673471,57.34587412333423],[-124.07847764303813,57.34587425013843],[-124.07856290934211,57.345874376887195],[-124.07864817564668,57.34587450358058],[-124.07873344195181,57.34587463021867],[-124.07881870825749,57.34587475680135],[-124.07890605285384,57.345874913742016],[-124.07899131916072,57.345875040212654],[-124.07907664187606,57.34587404617866],[-124.07916398647183,57.34587420294776],[-124.07925138747106,57.34587323920949],[-124.07933671017561,57.345872245006504],[-124.07942411116599,57.3458712811532],[-124.07951151215197,57.34587031724185],[-124.07959891313354,57.34586935327216],[-124.07968631411069,57.345868389244444],[-124.0797737150834,57.34586742515843],[-124.07986111605173,57.34586646101431],[-124.0799485733979,57.34586437636243],[-124.08003597435481,57.345863412101934],[-124.08012343168441,57.345861327333544],[-124.0802129109203,57.345860393349334],[-124.08030036823332,57.345858308463086],[-124.0803878255368,57.34585622351858],[-124.08047736112096,57.34585416890444],[-124.08056476204113,57.34585320429195],[-124.08065429760866,57.34585114955718],[-124.0807417548764,57.34584906437695],[-124.08083129042471,57.34584700952147],[-124.08092088231706,57.345843834154884],[-124.08100833955345,57.34584174879718],[-124.08109787507024,57.34583969375989],[-124.08118741057737,57.34583763866155],[-124.08127492412832,57.34583443267619],[-124.08136445961358,57.345832377457086],[-124.08145399508919,57.34583032217706],[-124.08154358689055,57.345827146385645],[-124.08163312234421,57.34582509098347],[-124.0817227141184,57.34582191506983],[-124.08181224955017,57.34581985954549],[-124.08190184129715,57.34581668350965],[-124.08199143302924,57.34581350741269],[-124.08208096842681,57.34581145170511],[-124.08217056013169,57.34580827548593],[-124.08226015182166,57.34580509920575],[-124.08234968718504,57.34580304331497],[-124.08243927884781,57.345799866912515],[-124.08252887049566,57.34579669044897],[-124.08261840582485,57.34579463437495],[-124.08270799744552,57.34579145778921],[-124.08279758905128,57.34578828114231],[-124.08288718064213,57.34578510443425],[-124.08297671592483,57.345783048115976],[-124.08306630748848,57.34577987128575],[-124.08315589903721,57.34577669439441],[-124.08324549057102,57.345773517441934],[-124.08333502580722,57.34577146087936],[-124.08342461731385,57.3457682838047],[-124.08351420880557,57.34576510666888],[-124.08360374400755,57.34576304992303],[-124.08369333547205,57.34575987266508],[-124.08378292692166,57.34575669534601],[-124.08387246208942,57.34575463841695],[-124.08396205351183,57.345751460975656],[-124.08405158865764,57.345749403924486],[-124.08414118005284,57.34574622636095],[-124.08423077143311,57.345743048736374],[-124.08432030654474,57.34574099150201],[-124.08440984164669,57.345738934206565],[-124.08449735470053,57.34573572607382],[-124.08458688978058,57.34573366865766],[-124.08467642485103,57.34573161118046],[-124.08476601615241,57.34572843319072],[-124.08485347291415,57.34572634527214],[-124.08494300795302,57.345724287613294],[-124.08503046469559,57.34572219957678],[-124.08511999971516,57.34572014179716],[-124.08520953472511,57.34571808395649],[-124.08529699143888,57.345715995742616],[-124.08538444814306,57.345713907470454],[-124.0854739269043,57.34571296990129],[-124.08556138359187,57.34571088151136],[-124.08564884026985,57.3457087930631],[-124.08573831901262,57.345707855313776],[-124.085825775674,57.34570576674774],[-124.08591317611891,57.34570479857542],[-124.08600057655936,57.34570383034493],[-124.08608803319717,57.34570174160415],[-124.0861754336262,57.345700773257285],[-124.08626283405079,57.3456998048523],[-124.08635023447094,57.345698836389126],[-124.08643550040864,57.345698958025814],[-124.08652290082247,57.34569798944763],[-124.08661030123189,57.345697020811365],[-124.08669556716636,57.34569714227914],[-124.08678296756943,57.34569617352792],[-124.08686823350256,57.34569629488359],[-124.08695349943625,57.34569641618393],[-124.0870408436573,57.34569656771349],[-124.08712610959215,57.34569668890177],[-124.08721137552752,57.34569681003467],[-124.08729664146344,57.34569693111213],[-124.08738190739987,57.345697052134305],[-124.0874671171756,57.3456982935537],[-124.08755030482828,57.34569838418861],[-124.08763551461246,57.345699625498796],[-124.08772072440215,57.34570086675366],[-124.08780385590964,57.34570207768072],[-124.08788906571027,57.34570331882644],[-124.08797219722845,57.34570452964695],[-124.08805527260787,57.34570686086776],[-124.08813840413902,57.34570807158298],[-124.0882214795363,57.345710402698685],[-124.08830455494372,57.3457127337618],[-124.08838763036131,57.345715064772385],[-124.08846862749989,57.34571736546836],[-124.0885516468081,57.345720816828354],[-124.08863472225836,57.345723147682584],[-124.08871566330433,57.34572656867936],[-124.0887966604871,57.34572886917308],[-124.08887760155973,57.345732290070046],[-124.08895848652932,57.34573683137065],[-124.08903942763332,57.34574025216794],[-124.08912036875185,57.34574367291537],[-124.08920125377443,57.34574821406638],[-124.08928006052457,57.34575272491846],[-124.08936094558536,57.34575726597115],[-124.08943975237307,57.34576177672736],[-124.08951850307825,57.34576740788998],[-124.08959730990551,57.34577191855171],[-124.08967606065487,57.34577754961984],[-124.08975481142744,57.34578318064081],[-124.08983148392919,57.345788781374125],[-124.0899102347479,57.34579441230195],[-124.08998685120754,57.345801133398375],[-124.09006346769416,57.34580785445017],[-124.09014216250351,57.34581460569283],[-124.09021670074839,57.34582129641973],[-124.09029331731598,57.34582801733753],[-124.09036987783426,57.34583585866479],[-124.09044436008647,57.34584366971662],[-124.09052092066722,57.34585151095583],[-124.09059540298087,57.3458593219221],[-124.090669885325,57.34586713284625],[-124.0907443116343,57.345876064182306],[-124.09081873797842,57.345884995476396],[-124.09089108605673,57.34589389650468],[-124.09096551246999,57.34590282771559],[-124.09103780455958,57.3459128491175],[-124.0911100966871,57.345922870479654],[-124.09118238885259,57.34593289180217],[-124.09125468105606,57.34594291308494],[-124.0913248389449,57.34595402456574],[-124.09139707517947,57.34596516622479],[-124.09146723315065,57.345976277629816],[-124.09153739116269,57.34598738899738],[-124.09160749317539,57.34599962078219],[-124.09167765127117,57.34601073207506],[-124.09174567506336,57.346022933575206],[-124.09181572117397,57.346036285704066],[-124.09188374505585,57.34604848713296],[-124.09195171295104,57.346061808981645],[-124.09201968089369,57.34607513079521],[-124.09208551454535,57.34608954282406],[-124.09215348258407,57.34610286456877],[-124.09221931633408,57.34611727653088],[-124.09228509411332,57.34613280891522],[-124.09235092796469,57.34614722081168],[-124.09241670584908,57.34616275313055],[-124.09248040546966,57.34617825521815],[-124.09254618346026,57.34619378747254],[-124.09260982717413,57.34621040995296],[-124.09267347094347,57.34622703240297],[-124.09273503644708,57.34624362462778],[-124.09279862432074,57.346261367472934],[-124.0928579996033,57.34628017035799],[-124.09291945326864,57.346299003408134],[-124.09297663834298,57.346320016959694],[-124.09303382348031,57.34634103048677],[-124.09309095268343,57.34636316444491],[-124.09314600362363,57.34638526819073],[-124.09319886430903,57.346409582638316],[-124.0932517250618,57.346433897064955],[-124.0933045298909,57.34645933192681],[-124.09335525645561,57.34648473658327],[-124.09340384876344,57.346511231492684],[-124.09345238515196,57.34653884684066],[-124.0935008656253,57.34656758262742],[-124.09354726783062,57.346596288215345],[-124.0935915357803,57.3466260840628],[-124.0936378261619,57.34665703053238],[-124.09367995992638,57.3466879166275],[-124.09372411612776,57.346719953344994],[-124.09376613807571,57.34675308032661],[-124.09380608174507,57.346786177118176],[-124.09384596950802,57.34682039435494],[-124.09388585734254,57.34685461158051],[-124.09392361091784,57.346889919075785],[-124.09396130859058,57.346926347017906],[-124.09399900633527,57.34696277495013],[-124.0940346257886,57.3469991726988],[-124.09407018934048,57.347036690895564],[-124.09410361862633,57.34707529936783],[-124.09413704797983,57.34711390783278],[-124.09417047740097,57.347152516290464],[-124.09420177255005,57.347192215026446],[-124.09423301179936,57.347233034213275],[-124.09426425111549,57.34727385339409],[-124.09429549049842,57.34731467256878],[-124.09432459560284,57.347356582025206],[-124.09435370077118,57.347398491476625],[-124.09438275004264,57.34744152138024],[-124.09440972098956,57.34748452111101],[-124.09443663603786,57.34752864129508],[-124.09446360710706,57.347571641017765],[-124.09448838792386,57.34761685148461],[-124.09451530315646,57.34766097165732],[-124.09454008409251,57.347706182117705],[-124.0945648650873,57.347751392575056],[-124.09458751177829,57.347797693321915],[-124.09461223693401,57.347844024231435],[-124.09463488373741,57.347890324973605],[-124.09465753059578,57.347936625713665],[-124.09468012155624,57.34798404690939],[-124.09470271257283,57.348031468103095],[-124.09472322522288,57.34807885913171],[-124.09474581634916,57.348126280321765],[-124.09476627315307,57.348174791805285],[-124.09478673000899,57.34822330328775],[-124.09480718691691,57.348271814768815],[-124.09482764387685,57.3483203262487],[-124.09484596650168,57.34836992802444],[-124.09486642356349,57.34841843950211],[-124.09488474628583,57.348468041276504],[-124.0949051475025,57.34851767321054],[-124.09492347032278,57.34856727498351],[-124.09494179319071,57.348616876755905],[-124.09496006016062,57.34866759898646],[-124.09497838312426,57.34871720075782],[-124.09499670613553,57.34876680252873],[-124.09501497325019,57.34881752475791],[-124.09503324041339,57.34886824698654],[-124.0950515635685,57.348917848755924],[-124.09506775235695,57.34896854082601],[-124.0950860196626,57.34901926305365],[-124.0951043429588,57.349068864821824],[-124.0951226103611,57.34911958704851],[-124.09513879932952,57.3491702791183],[-124.09515706682615,57.349221001344375],[-124.09517539031155,57.34927060311082],[-124.09519365790486,57.34932132533606],[-124.09521192554672,57.349372047560784],[-124.09523024917596,57.34942164932573],[-124.09524643841551,57.34947234139478],[-124.09526476213779,57.349521943159],[-124.09528308590768,57.34957154492268],[-124.09530348823233,57.34962117683979],[-124.09532175616371,57.34967189906172],[-124.09534013601575,57.34972038036381],[-124.0953584599789,57.34976998212512],[-124.09537886250769,57.34981961403855],[-124.09539932102406,57.34986812549085],[-124.0954176451351,57.34991772724979],[-124.09543810375338,57.349966238700134],[-124.09545856242366,57.35001475014918],[-124.09547907707845,57.35006214113673],[-124.09550161438618,57.35011068273403],[-124.095522129146,57.35015807371869],[-124.09554472249593,57.350205494852034],[-124.09556523736025,57.350252885833726],[-124.09558788674951,57.35029918650303],[-124.09561261474053,57.350345517319255],[-124.09563526424222,57.3503918179839],[-124.0956579137989,57.35043811864643],[-124.09568269789209,57.350483328994216],[-124.09570748204399,57.35052853933893],[-124.09573226625463,57.35057374968071],[-124.09575918501089,57.35061786970547],[-124.09578610382938,57.350661989726326],[-124.09581307863374,57.35070498928237],[-124.09583999757602,57.3507491092953],[-124.09586702842483,57.350790988382485],[-124.0958960819852,57.35083401807112],[-124.09592519153169,57.35087592729381],[-124.09595216664398,57.350918926828776],[-124.0959791977362,57.350960805898765],[-124.09600617296935,57.35100380542575],[-124.09603106967796,57.35104677480627],[-124.09605596644265,57.351089744183575],[-124.0960808632634,57.35113271355772],[-124.09610570422448,57.35117680339005],[-124.09613060115802,57.3512197727578],[-124.09615544223328,57.3512638625838],[-124.09617826068,57.35130680180518],[-124.09620310186698,57.351350891625394],[-124.09622799902375,57.3513938609808],[-124.09625076171804,57.351437920655826],[-124.0962756589853,57.35148089000525],[-124.09630055630862,57.35152385935164],[-124.09632539777817,57.351567949156475],[-124.09635029521431,57.351610918496455],[-124.0963751927065,57.35165388783318],[-124.09640009025479,57.35169685716669],[-124.09642706648253,57.35173985663323],[-124.0964540427711,57.35178285609569],[-124.09648107502608,57.35182473509203],[-124.09650805143549,57.35186773454637],[-124.09653716244262,57.35190964366894],[-124.0965662735137,57.35195155278654],[-124.09659751918855,57.35199237157032],[-124.09662870902864,57.35203431081037],[-124.09666203347989,57.352075159714474],[-124.09669541390227,57.35211488814905],[-124.09672873849532,57.352155737038856],[-124.09676627635463,57.352195525720866],[-124.09680173564152,57.352235284263145],[-124.0968414082038,57.35227398259372],[-124.09688108084657,57.35231268091354],[-124.09692075356979,57.35235137922267],[-124.09696256092505,57.35238898718586],[-124.09700639113292,57.35242774572687],[-124.0970502773197,57.352465383791554],[-124.09709416359303,57.35250302184266],[-124.09713804995295,57.35254065988039],[-124.09718401506912,57.352578328028784],[-124.09723211483256,57.35261490582257],[-124.09727808013102,57.352652573940276],[-124.09732618007823,57.35268915170182],[-124.09737428011762,57.35272572944684],[-124.09742445892917,57.35276233729583],[-124.09747469371486,57.3527978246632],[-124.09752487271751,57.35283443247598],[-124.09757718637738,57.35286994992507],[-124.09762742144677,57.35290543723725],[-124.09767973529944,57.352940954647536],[-124.09773412794128,57.35297650215362],[-124.09778649785974,57.35301089905983],[-124.09784089070075,57.35304644652366],[-124.09789533950907,57.35308087350219],[-124.0979497884156,57.35311530045917],[-124.09800637198467,57.353148637041706],[-124.09806289979143,57.353183094064875],[-124.09811948355984,57.35321643060053],[-124.0981760674271,57.35324976711275],[-124.09823265139325,57.353283103601456],[-124.09828923545824,57.35331644006665],[-124.0983479541878,57.353348686150035],[-124.09840667301658,57.35338093220789],[-124.09846539194464,57.35341317824042],[-124.09852411097192,57.35344542424754],[-124.09858283009845,57.353477670229196],[-124.09864160516888,57.353508795720956],[-124.09870245905846,57.353539951287374],[-124.09876123432241,57.35357107672711],[-124.0988221442485,57.35360111177491],[-124.09888299843273,57.353632267260004],[-124.09894396438834,57.35366118178793],[-124.09900487460207,57.35369121675322],[-124.09906786364513,57.35372128178542],[-124.09912882988306,57.35375019622964],[-124.09919193077894,57.35377802027365],[-124.09925705467803,57.35380699484461],[-124.09932015576135,57.35383481882833],[-124.09938527985474,57.35386379333707],[-124.09945051568998,57.353890526883625],[-124.09951569579702,57.35391838086364],[-124.09958087599924,57.35394623481196],[-124.09964819086005,57.35397299834838],[-124.09971342706618,57.353999731766635],[-124.09978074211436,57.35402649523634],[-124.09984805725695,57.35405325867209],[-124.09991537249398,57.35408002207392],[-124.09998274363157,57.35410566497605],[-124.10005005905553,57.35413242831011],[-124.10011743037617,57.35415807114425],[-124.10018682474661,57.3541848644871],[-124.10025419625175,57.354210507252226],[-124.10032156784744,57.35423614998333],[-124.10039101829761,57.35426182275395],[-124.10046041304884,57.35428861595456],[-124.10052778492104,57.35431425858148],[-124.10059723565212,57.35433993124476],[-124.10066460770688,57.354365573802674],[-124.10073405862339,57.35439124639465],[-124.10080143086068,57.354416888883435],[-124.10087082618213,57.354443681870514],[-124.10093819860391,57.35446932429025],[-124.10100764989338,57.35449499673971],[-124.10107496672302,57.354521759556974],[-124.10114233941987,57.35454740187368],[-124.10120965643645,57.35457416462298],[-124.10127702931632,57.35459980687166],[-124.10134434651981,57.354626569553076],[-124.10141166381776,57.35465333220063],[-124.10147898121014,57.354680094814256],[-124.10154416414666,57.35470794780569],[-124.10161148172831,57.35473471035256],[-124.10167666485486,57.354762563279564],[-124.10174184807657,57.35479041617473],[-124.10180703139346,57.35481826903823],[-124.1018722148055,57.35484612186995],[-124.10193526376428,57.354875065088265],[-124.10200044736693,57.35490291785765],[-124.10206349651683,57.35493186101577],[-124.10212654576235,57.35496080414422],[-124.10218953936091,57.35499086771069],[-124.10225258879954,57.35501981078015],[-124.10231563833385,57.355048753819865],[-124.10237863222656,57.35507881729782],[-124.10243954740689,57.35510885070518],[-124.10250254149645,57.35513891412511],[-124.10256345687024,57.355168947476486],[-124.10262645115667,57.35519901083847],[-124.10268736672391,57.35522904413384],[-124.10274828238704,57.35525907740169],[-124.1028112769679,57.3552891406773],[-124.1028721928245,57.35531917388918],[-124.10293305305571,57.355350327541615],[-124.10299396910584,57.355380360698646],[-124.10305488525191,57.35541039382796],[-124.10311574577776,57.355441547398186],[-124.10317666211735,57.35547158047265],[-124.103239601674,57.355502764016364],[-124.1033005182088,57.35553279703487],[-124.1033614348395,57.355562830025875],[-124.10342229585879,57.355593983457936],[-124.10348321268303,57.35562401639396],[-124.10354412960318,57.35565404930237],[-124.10360712546317,57.35568411220608],[-124.10366804257677,57.35571414505869],[-124.10376958987838,57.35576382626211],[-124.10378820618644,57.355807824748446],[-124.10380687823381,57.3558507027648],[-124.10382757348285,57.35589473126819],[-124.10384618992161,57.35593872975114],[-124.10386688526377,57.35598275825151],[-124.10388550179083,57.35602675673198],[-124.10390625291986,57.356069664760184],[-124.10392694840235,57.35611369325591],[-124.10394764393256,57.35615772174988],[-124.1039662606381,57.35620172022526],[-124.10398701195314,57.356244628246905],[-124.10400978650088,57.35628868675245],[-124.10403048222163,57.356332715239745],[-124.10405123368011,57.35637562325581],[-124.10407192949582,57.35641965173982],[-124.1040926253593,57.35646368022208],[-124.10411540015976,57.3565077387173],[-124.10413615180893,57.35655064672617],[-124.10415892671158,57.356594705216985],[-124.10417962277039,57.3566387336919],[-124.10420239777578,57.35668279217839],[-124.10422314961802,57.356725700179645],[-124.10424592472559,57.3567697586618],[-124.1042686998858,57.35681381714147],[-124.10428939619013,57.35685784560706],[-124.10431222713618,57.3569007836123],[-124.10433500245112,57.356944842085255],[-124.10435777781869,57.35698890055595],[-124.10437853000214,57.357031808543525],[-124.10440130547185,57.357075867009875],[-124.10442408099418,57.35711992547373],[-124.10444685656911,57.35716398393529],[-124.10446968787556,57.35720692192399],[-124.10449246355508,57.35725098038074],[-124.10451316035476,57.35729500882695],[-124.10453593613707,57.3573390672794],[-124.10455876764856,57.35738200525879],[-124.10458154353543,57.35742606370649],[-124.10460431947494,57.35747012215189],[-124.10462709546704,57.35751418059483],[-124.10464784823907,57.35755708855844],[-124.10467062433335,57.357601146997034],[-124.10469340048023,57.35764520543332],[-124.1047162323521,57.357688143396224],[-124.10473900860357,57.35773220182765],[-124.10475970594882,57.357776230252405],[-124.1047824823031,57.357820288679626],[-124.10480531437997,57.35786322663319],[-124.10482601187282,57.35790725505223],[-124.10484878838187,57.35795131347267],[-124.10486948597266,57.35799534188803],[-124.10489231825223,57.358038279832655],[-124.10491301594041,57.35808230824442],[-124.10493579265444,57.35812636665604],[-124.10495654610662,57.35816927459257],[-124.10497724394,57.35821330299881],[-124.10500002080639,57.35825736140412],[-124.10502071873772,57.358301389806776],[-124.1050414723806,57.35834429773598],[-124.10506217040692,57.358388326135305],[-124.10508286848102,57.35843235453292],[-124.1051035666029,57.35847638292877],[-124.10512432043416,57.35851929085112],[-124.105142939649,57.35856328924533],[-124.1051636379112,57.358607317636505],[-124.1051843362212,57.358651346026086],[-124.10520301122925,57.35869422394439],[-124.1052216306202,57.35873822233374],[-124.10524232906813,57.35878225071897],[-124.10526094854738,57.35882624910586],[-124.10527956806958,57.358870247491815],[-124.1052982432918,57.35891312540434],[-124.10531686289941,57.35895712378814],[-124.10533548254996,57.3590011221708],[-124.10535410224345,57.359045120552636],[-124.10537069860423,57.35908796846595],[-124.10538931838073,57.359131966845766],[-124.10540585916452,57.35917593523036],[-124.10542239998647,57.3592199036145],[-124.10543894084651,57.35926387199807],[-124.10545553739772,57.359306719908346],[-124.10547207833362,57.359350688290995],[-124.10548861930762,57.359394656673075],[-124.10550516031975,57.35943862505468],[-124.105519677969,57.359481442970214],[-124.10553413999979,57.359525381358935],[-124.10555068112106,57.359569349739516],[-124.10556514322087,57.35961328812795],[-124.105579605354,57.359657226516354],[-124.10559198845606,57.359701134913465],[-124.10560650630262,57.35974395282872],[-124.10561888946378,57.359787861226444],[-124.10563335172498,57.359831799615215],[-124.10564573494555,57.359875708013504],[-124.1056581181946,57.35991961641233],[-124.10567050147218,57.35996352481152],[-124.10568086134454,57.36000628274759],[-124.10569324467642,57.36005019114781],[-124.10570354895088,57.360094069558905],[-124.10571385324907,57.36013794797075],[-124.10572415757096,57.360181826383304],[-124.10573446191655,57.36022570479676],[-124.10574274283638,57.360268432748114],[-124.10575304722673,57.36031231116316],[-124.10576127254056,57.36035615959035],[-124.10576949787333,57.36040000801867],[-124.10577564411996,57.36044382645958],[-124.10577971127331,57.36048761491347],[-124.10578169932624,57.360531373380475],[-124.10577952915938,57.36057507187228],[-124.10577735898754,57.36061877036573],[-124.1057710305769,57.36066240888368],[-124.10576262303249,57.36070601741432],[-124.10575421546886,57.36074962594604],[-124.10574164963796,57.3607931745008],[-124.10572908377837,57.3608367230559],[-124.10571443876138,57.360880241622056],[-124.10569771457982,57.36092373019835],[-124.10567891122673,57.36096718878423],[-124.10566010783076,57.36101064736897],[-124.10563916960363,57.361055196436446],[-124.10561828697847,57.36109862502779],[-124.10559532516281,57.361142023625916],[-124.10557028414969,57.36118539223002],[-124.10554524307962,57.36122876083082],[-124.10552014629863,57.36127324990313],[-124.10549302596152,57.36131658850467],[-124.10546590556284,57.361359927102086],[-124.1054387851025,57.36140326569551],[-124.10540958542121,57.361446574290696],[-124.10538033001518,57.36149100335569],[-124.10535320936448,57.36153434193614],[-124.10532400948571,57.36157765051692],[-124.1052947538795,57.361622079567624],[-124.10526555386721,57.36166538813856],[-124.10523635378863,57.36170869670454],[-124.10520923281958,57.36175203526304],[-124.105179976946,57.361796464294656],[-124.10515285585053,57.36183980284465],[-124.10512573469344,57.36188314139064],[-124.10510069266,57.36192650993167],[-124.10507351571388,57.361970968945016],[-124.10504847356344,57.36201433747932],[-124.10502551054846,57.36205773601075],[-124.1050024918108,57.362102255014875],[-124.10498160788771,57.36214568354247],[-124.10496072391706,57.36218911206823],[-124.1049419191007,57.36223257059402],[-124.10492305856847,57.36227714959402],[-124.10490425366582,57.36232060811749],[-124.10488336951136,57.362364036637295],[-124.10486456452065,57.36240749515819],[-124.1048457594871,57.362450953677936],[-124.10482689873457,57.362495532672185],[-124.1048060143963,57.36253896118595],[-124.10478720923125,57.36258241970205],[-124.10476632480021,57.3626258482126],[-124.10474751954713,57.362669306726204],[-124.10472657934393,57.362713855709224],[-124.10470777400218,57.36275731422026],[-124.10468896861758,57.36280077273013],[-124.10466808395519,57.362844201232896],[-124.10464927848255,57.36288765974023],[-124.10462833804476,57.36293220871567],[-124.10460953248348,57.36297566722053],[-124.10459072687931,57.36301912572418],[-124.10456984198554,57.36306255421918],[-124.10455098060821,57.36310713319622],[-124.10453217487255,57.363150591696225],[-124.10451336909404,57.363194050195084],[-124.10449248401642,57.363237478684084],[-124.10447362246221,57.36328205765649],[-124.10445481655219,57.36332551615171],[-124.10443601059931,57.363368974645724],[-124.10441928386935,57.3634124631487],[-124.10440042214307,57.36345704211705],[-124.1043816160634,57.36350050060806],[-124.10436488921374,57.363543989108905],[-124.10434602735887,57.363588568074235],[-124.10432930043001,57.363632056573614],[-124.10431251777007,57.36367666554883],[-124.1042957907644,57.36372015404709],[-124.10427906372057,57.36376364254479],[-124.10426228094398,57.36380825151847],[-124.10424555382335,57.363851740015086],[-124.10423085026076,57.363896379000664],[-124.10421412306567,57.36393986749641],[-124.10419941943235,57.363984506481756],[-124.10418471576462,57.36402914546706],[-124.10417006776021,57.36407266397569],[-124.10415536402414,57.36411730296096],[-124.10414279525872,57.36416085148391],[-124.10412809145674,57.364205490469345],[-124.10411546693153,57.364250159469734],[-124.10410284237673,57.36429482847045],[-124.10409027349284,57.364338376994695],[-124.104075569561,57.3643830159809],[-124.10406294491554,57.364427684982694],[-124.10404829661918,57.364471203492045],[-124.1040356719126,57.36451587249454],[-124.10402304717643,57.36456054149743],[-124.10400834308027,57.364605180484276],[-124.10399577398626,57.36464872901064],[-124.1039810698242,57.364693367997674],[-124.10396844496536,57.36473803700188],[-124.10395582007695,57.36478270600655],[-124.10394117152207,57.36482622451675],[-124.10392854657255,57.364870893521946],[-124.10391384224616,57.364915532509634],[-124.10390121723509,57.36496020151562],[-124.10388656854975,57.36500372002609],[-124.10387394347754,57.36504838903266],[-124.10385923901887,57.365093028020794],[-124.10384661388507,57.365137697028025],[-124.10383190936,57.3651823360164],[-124.1038193398744,57.36522588454674],[-124.1038046352834,57.36527052353527],[-124.10379201002694,57.36531519254387],[-124.10377730536955,57.365359831532665],[-124.10376468005154,57.36540450054186],[-124.1037499753277,57.365449139530895],[-124.10373740566068,57.36549268806295],[-124.10372270087095,57.36553732705221],[-124.10371007543024,57.365581996062794],[-124.10369744995997,57.36562666507373],[-124.10368274507185,57.3656713040635],[-124.10367011954,57.36571597307512],[-124.1036554703008,57.365759491587035],[-124.10364284470784,57.36580416059929],[-124.10362813968737,57.36584879958948],[-124.10361551403287,57.365893468602366],[-124.103600808946,57.36593810759283],[-124.1035881832299,57.365982776606415],[-124.1035756132023,57.366026325142144],[-124.10356090801754,57.366070964133016],[-124.10354828221074,57.36611563314774],[-124.10353565637438,57.3661603021628],[-124.10352095109121,57.366204941154116],[-124.10350832519329,57.36624961016999],[-124.1034956992658,57.36629427918617],[-124.10348099388422,57.366338918178016],[-124.10346842361687,57.36638246671636],[-124.10345579759868,57.36642713573358],[-124.10344317155092,57.366471804751384],[-124.10342846603943,57.36651644374381],[-124.1034158399301,57.36656111276221],[-124.1034032137912,57.3666057817811],[-124.10339058762273,57.366650450800414],[-124.10337796142467,57.366695119820136],[-124.10336539092232,57.36673866836145],[-124.10335276466559,57.36678333738202],[-124.10333805892819,57.36682797637583],[-124.10332543260986,57.36687264539708],[-124.10331280626197,57.36691731441872],[-124.10330017988453,57.36696198344088],[-124.10328755347749,57.36700665246342],[-124.10327700650406,57.36705135151456],[-124.1032643800403,57.36709602053821],[-124.10325180927617,57.36713956908313],[-124.1032391827537,57.36718423810756],[-124.10322655620169,57.36722890713253],[-124.10321392962008,57.36727357615777],[-124.10320338248657,57.36731827521286],[-124.10319075584825,57.36736294423929],[-124.10317812918035,57.36740761326622],[-124.10316550248287,57.367452282293485],[-124.10315501097575,57.36749586087189],[-124.10314238422202,57.36754052990018],[-124.10313183693086,57.367585228959456],[-124.10311921012038,57.367629897988806],[-124.10310866277736,57.36767459704949],[-124.10309603591016,57.367719266079945],[-124.10308548851526,57.36776396514213],[-124.10307286159134,57.36780863417366],[-124.10306236988038,57.36785221275753],[-124.1030518224093,57.367896911821816],[-124.10304127491347,57.36794161088703],[-124.10302864787897,57.36798627992086],[-124.10301810033127,57.36803097898752],[-124.10300755275885,57.3680756780549],[-124.10299700516171,57.36812037712308],[-124.10298651327837,57.3681639557121],[-124.10297596563215,57.36820865478193],[-124.10296541796123,57.368253353852545],[-124.1029548702656,57.368298052923876],[-124.10294432254524,57.368342751996074],[-124.10293377480015,57.368387451069154],[-124.10292536230922,57.36843105969646],[-124.10291481451749,57.36847575877118],[-124.10290426670106,57.36852045784677],[-124.10289579840531,57.368565186957426],[-124.10288525054186,57.368609886034726],[-124.10287678220395,57.3686546151475],[-124.10286629003629,57.36869819374622],[-124.10285782165654,57.36874292286086],[-124.10284727369945,57.36878762194176],[-124.10283880527756,57.36883235105863],[-124.10283033683581,57.36887708017656],[-124.10282192411862,57.36892068881497],[-124.10281345563746,57.36896541793507],[-124.10280498713642,57.36901014705633],[-124.10279651861555,57.36905487617864],[-124.1027880500748,57.36909960530215],[-124.1027796372602,57.369143213945875],[-124.10277116868004,57.369187943071466],[-124.10276270008,57.36923267219826],[-124.10275423146012,57.3692774013261],[-124.10274789815415,57.36932104001076],[-124.1027394294973,57.369365769140884],[-124.10273304041196,57.36941052830899],[-124.1027245717178,57.36945525744155],[-124.10271823834834,57.36949889613111],[-124.10270976961723,57.36954362526604],[-124.10270338046728,57.36958838443934],[-124.10269699130235,57.36963314361388],[-124.10269065787182,57.3696767823086],[-124.10268426867715,57.36972154148588],[-124.10267787946748,57.36976630066454],[-124.10257612355926,57.36984556351445],[-124.12892657609808,57.40001060593253],[-124.13353186575036,57.40527556108072],[-124.13348770908539,57.40532651433884],[-124.13345445426665,57.40536753059324],[-124.1334211993763,57.405408546840654],[-124.13338794441437,57.40544956308111],[-124.13335463448071,57.4054916998422],[-124.13332137937456,57.40553271606863],[-124.1332901508835,57.40557488236995],[-124.13325689563536,57.405615898583],[-124.13322566700475,57.40565806487195],[-124.13319449321018,57.40569911062709],[-124.13316326444233,57.40574127690412],[-124.13313203560537,57.40578344317532],[-124.1331008066993,57.40582560944055],[-124.13306957772413,57.4058677756999],[-124.13303834867985,57.40590994195325],[-124.13300711956646,57.40595210820078],[-124.13297797199546,57.405994304001354],[-124.13294674274611,57.40603647023747],[-124.13291759504374,57.406078666027646],[-124.13288631074366,57.40612195278058],[-124.13285716290896,57.40616414856044],[-124.13282593338675,57.40620631477394],[-124.13279678542071,57.40624851054341],[-124.13276758247156,57.406291826836096],[-124.13273635274557,57.406333993032895],[-124.13270720458267,57.40637618878703],[-124.13267800143383,57.406419505064534],[-124.13264885314089,57.406461700808755],[-124.13261762314433,57.40650386698326],[-124.13258841979584,57.406547183245586],[-124.13255927130602,57.40658937897453],[-124.13253012275169,57.40663157469846],[-124.13249883755752,57.40667486137938],[-124.13246968887087,57.40671705709299],[-124.13244054011967,57.40675925280163],[-124.13240925471892,57.40680253946583],[-124.13238010583541,57.40684473516418],[-124.13235095688735,57.40688693085754],[-124.13231967128,57.406930217505085],[-124.13229052219964,57.40697241318813],[-124.13225929138801,57.40701457929579],[-124.13223014217621,57.40705677496839],[-124.13219891122864,57.40709894106466],[-124.13216768021195,57.40714110715505],[-124.13213853080195,57.40718330281183],[-124.13210729964929,57.40722546889083],[-124.1320760684275,57.40726763496405],[-124.13204483713663,57.40730980103126],[-124.13201360577662,57.407351967092524],[-124.13198237434749,57.40739413314786],[-124.131949116104,57.40743514909305],[-124.13191788453534,57.40747731513605],[-124.13188462614985,57.40751833106779],[-124.13185339444163,57.40756049709843],[-124.13182013591414,57.40760151301675],[-124.1317868223657,57.4076436494572],[-124.13175356369395,57.407684665361614],[-124.1317203049506,57.40772568125895],[-124.1316870461357,57.40776669714928],[-124.13165378724915,57.40780771303263],[-124.13161844657924,57.407848699328476],[-124.1315851875473,57.40788971519736],[-124.13154990168428,57.40792958094835],[-124.13151456078963,57.407970567220445],[-124.13147921981893,57.40801155348451],[-124.13144185200952,57.40805138962767],[-124.13140656584682,57.408091255345745],[-124.13136919788327,57.40813109147106],[-124.13133182984164,57.408170927587115],[-124.13129446172182,57.40821076369385],[-124.1312570935239,57.408250599791224],[-124.13121972524786,57.40829043587946],[-124.1311803301241,57.4083291218414],[-124.13114087995098,57.40836892832231],[-124.13110148466602,57.40840761426321],[-124.13106208930105,57.40844630019355],[-124.13102269385612,57.40848498611331],[-124.13098121658302,57.40852364243189],[-124.13093973922581,57.40856229873868],[-124.13089831676123,57.408599834504074],[-124.13085481246084,57.408637340664846],[-124.1308133348516,57.40867599693547],[-124.13076983038059,57.408713503070615],[-124.13072632582391,57.40875100919256],[-124.13068079440275,57.408787365176124],[-124.13063728967413,57.40882487127091],[-124.13059175807972,57.408861227225955],[-124.13054622639845,57.40889758316635],[-124.13049861286011,57.40893390949377],[-124.13045099923099,57.40897023580506],[-124.13040338551109,57.40900656210026],[-124.13035582669383,57.40904176784947],[-124.1303082127938,57.40907809411241],[-124.13025857201954,57.40911327022722],[-124.13020893115362,57.40914844632438],[-124.13015726341196,57.409182472270246],[-124.13010762236237,57.409217648331214],[-124.13005589943384,57.409252794769216],[-124.13000423141403,57.40928682065796],[-124.12995256330196,57.40932084652737],[-124.1299008950976,57.40935487237748],[-124.12984714500642,57.40938886859971],[-124.12979339481933,57.40942286480083],[-124.1297396995485,57.40945574045105],[-124.12968594917122,57.40948973661031],[-124.12963017191178,57.409522582606435],[-124.12957647635957,57.40955545819279],[-124.12952069890956,57.409588304144364],[-124.12946492136336,57.40962115007318],[-124.12940914372102,57.40965399597919],[-124.12935128417207,57.40968681224604],[-124.12929550633565,57.40971965810571],[-124.12923770161647,57.40975135379434],[-124.12917984177204,57.40978416998848],[-124.12912203685876,57.40981586562807],[-124.12906423184936,57.40984756124302],[-124.12900642674376,57.409879256833435],[-124.12894653971964,57.4099109227764],[-124.12888873442002,57.40994261831678],[-124.1288288471985,57.40997428420789],[-124.12876895987743,57.410005950072446],[-124.12870907245686,57.41003761591076],[-124.12864923998183,57.41006816119248],[-124.12858935236396,57.41009982697779],[-124.12852951969528,57.41013037220669],[-124.12846755004442,57.41016200830874],[-124.12840771718045,57.410192553483775],[-124.12834580238159,57.410223069000004],[-124.12828596932414,57.4102536141213],[-124.12822399927065,57.41028525011185],[-124.12816208417404,57.41031576554397],[-124.12810016897825,57.41034628094774],[-124.1280382536833,57.41037679632316],[-124.12797633828916,57.410407311670134],[-124.12791442279588,57.41043782698886],[-124.1278525072034,57.41046834227915],[-124.12779059151175,57.41049885754119],[-124.12772867572095,57.41052937277476],[-124.12766473304892,57.41055873780664],[-124.12760281706,57.41058925298252],[-124.12754090097191,57.41061976813015],[-124.12747690292302,57.410650253603094],[-124.12741498663497,57.41068076869285],[-124.12735104346712,57.41071013357603],[-124.12728912698095,57.410740648608204],[-124.12722721039562,57.41077116361189],[-124.12716321184149,57.410801648936186],[-124.12710129505619,57.41083216388226],[-124.12703735139249,57.41086152861665],[-124.1269754344091,57.41089204350502],[-124.1269114354505,57.41092252870994],[-124.12684951826711,57.41095304354049],[-124.12678760098457,57.4109835583428],[-124.12672360172195,57.41101404345861],[-124.12666168423944,57.41104455820321],[-124.12659976665778,57.41107507291941],[-124.1265378489769,57.411105587607274],[-124.12647384930948,57.41113607260474],[-124.12641193142866,57.41116658723487],[-124.12635001344864,57.411197101836684],[-124.12628809536946,57.41122761641008],[-124.12622617719111,57.41125813095515],[-124.12616628568917,57.41128979566897],[-124.12610436731221,57.41132031015823],[-124.12604244883607,57.411350824619284],[-124.12598047513528,57.41138245958206],[-124.125920638361,57.411413003657074],[-124.1258607463617,57.411444668235966],[-124.12579877235738,57.41147630311572],[-124.1257388801573,57.411507967640745],[-124.12567904299225,57.41153851160916],[-124.12561915059489,57.41157017608139],[-124.12555925809795,57.41160184052722],[-124.12549936550148,57.411633504946515],[-124.1254414995792,57.411666319548196],[-124.12538160678352,57.41169798391566],[-124.12532379580719,57.411729677936954],[-124.12526592958763,57.41176249246401],[-124.1252080632684,57.41179530696655],[-124.12515025200005,57.411827000914116],[-124.12509238548323,57.41185981536762],[-124.12503451886673,57.411892629796434],[-124.12497873407989,57.4119254738865],[-124.12492294919689,57.411958317953804],[-124.1248671090586,57.41199228252878],[-124.12481132398156,57.41202512655055],[-124.12475548364584,57.41205909108006],[-124.12469964321056,57.412093055586666],[-124.12464593978166,57.41212592923134],[-124.12459009915078,57.41215989369341],[-124.12453634036402,57.4121938878256],[-124.12448258148132,57.41222788193672],[-124.12442674055539,57.412261846332406],[-124.12437298147904,57.41229584040071],[-124.12431922230675,57.412329834448066],[-124.12426546303851,57.41236382847433],[-124.12420962171981,57.41239779278172],[-124.1241558622579,57.41243178676516],[-124.12410210270009,57.41246578072767],[-124.12404834304633,57.41249977466914],[-124.12399458329664,57.41253376858968],[-124.12394076826382,57.41256888301962],[-124.12388700832065,57.41260287689812],[-124.12383324828153,57.41263687075559],[-124.1237794881465,57.412670864592215],[-124.12372775469282,57.412706008643745],[-124.1236739943661,57.41274000243919],[-124.12362017874653,57.412775116744015],[-124.12356641822635,57.4128091104974],[-124.12351473958854,57.41284313393886],[-124.12346092367652,57.41287824818158],[-124.1234071628687,57.41291224187288],[-124.12335542874386,57.41294738578526],[-124.12330161253777,57.41298249996595],[-124.12324993342831,57.41301652330824],[-124.12319611702735,57.41305163744782],[-124.12314443772992,57.41308566075076],[-124.12309062113405,57.41312077484925],[-124.12303888643407,57.4131559186433],[-124.12298715163867,57.41319106241798],[-124.12293338996672,57.413225055924606],[-124.1228816549801,57.41326019965994],[-124.12282991989807,57.413295343375935],[-124.12277610271616,57.413330457352],[-124.12272436744134,57.41336560102853],[-124.12267268729677,57.413399624155],[-124.12262095183263,57.41343476779299],[-124.12256921627305,57.413469911411674],[-124.12251539860429,57.41350502528622],[-124.12246366285196,57.413540168865346],[-124.1224119270042,57.413575312425344],[-124.12236019106096,57.41361045596589],[-124.12230845502229,57.41364559948715],[-124.12225671888818,57.4136807429892],[-124.1222049826586,57.413715886471856],[-124.12215324633361,57.41375102993514],[-124.12210150991316,57.41378617337927],[-124.1220497733973,57.41382131680403],[-124.12199803678594,57.413856460209516],[-124.12194630007914,57.413891603595665],[-124.12189450802761,57.41392786749335],[-124.12184277112836,57.413963010840895],[-124.12179311617379,57.4139981839055],[-124.12174137908553,57.41403332721527],[-124.12168964190184,57.41406847050565],[-124.1216379046227,57.414103613776874],[-124.12158611198937,57.41413987755963],[-124.12153437451776,57.41417502079212],[-124.12148471900217,57.41421019374663],[-124.12143298134156,57.41424533694139],[-124.12138118832053,57.41428160064784],[-124.12132945046743,57.414316743803916],[-124.12127979457793,57.41435191668524],[-124.12122805653584,57.41438705980357],[-124.1211762631271,57.41442332343368],[-124.12112452489252,57.414458466513494],[-124.12107486862914,57.41449363932159],[-124.12102313020553,57.41452878236356],[-124.12097133640908,57.41456504591735],[-124.12091959779302,57.4146001889207],[-124.12086994115572,57.41463536165569],[-124.12081814706856,57.41467162515244],[-124.12076640816645,57.41470676809865],[-124.12071675124882,57.41474194077907],[-124.12066495687097,57.41477820421866],[-124.1206132176828,57.414813347107916],[-124.12056356048485,57.41484851973354],[-124.12051176581627,57.414884783116136],[-124.12046002634209,57.41491992594828],[-124.12041036886377,57.41495509851925],[-124.12035857390451,57.41499136184483],[-124.12030683414426,57.415026504619775],[-124.1202571763856,57.41506167713614],[-124.12020538113562,57.41509794040472],[-124.12015364108936,57.41513308312265],[-124.12010398305033,57.41516825558428],[-124.12005224281504,57.415203398264445],[-124.12000044717733,57.41523966145668],[-124.11995078885796,57.415274833863634],[-124.11989904833662,57.41530997648661],[-124.11984725240818,57.415346239621776],[-124.11979551169432,57.41538138220626],[-124.11974585300108,57.41541655454014],[-124.11969405678194,57.41545281761814],[-124.11964231578203,57.415487960145526],[-124.11959265680841,57.41552313242472],[-124.11954091561948,57.415558274914176],[-124.1194891190126,57.41559453791598],[-124.11943737763117,57.41562968036694],[-124.11938563615429,57.415664822798604],[-124.11933597671319,57.41569999498612],[-124.1192842350473,57.415735137380025],[-124.11923243795562,57.41577140028611],[-124.11918069609725,57.415806542641405],[-124.1191289541434,57.4158416849773],[-124.1190772120941,57.41587682729392],[-124.1190275520919,57.415911999371325],[-124.11897580985355,57.41594714165027],[-124.11892401218009,57.415983404441306],[-124.11887226974926,57.416018546681634],[-124.11882052722298,57.41605368890253],[-124.11876878460124,57.41608883110417],[-124.11871704188407,57.41612397328653],[-124.1186652990714,57.41615911544954],[-124.1186135561633,57.41619425759324],[-124.11856181315972,57.416229399717636],[-124.1185100700607,57.416264541822706],[-124.11845832686622,57.41629968390854],[-124.11840658357626,57.41633482597505],[-124.11833982216207,57.416378723739996],[-124.11832511484177,57.41642336626294],[-124.11831046284543,57.41646688825416],[-124.11829367328195,57.416511500985514],[-124.11827693903868,57.41655499318451],[-124.11826223157665,57.41659963570711],[-124.11824544189817,57.416644248437414],[-124.11822870754155,57.41668774063519],[-124.11820983559826,57.41673232357142],[-124.11819310116229,57.41677581576791],[-124.11817631132521,57.41682042849592],[-124.11815749461837,57.416863890897616],[-124.11814070470078,57.4169085036244],[-124.11812183254514,57.41695308655637],[-124.11810509791172,57.41699657874972],[-124.1180862256708,57.417041161679904],[-124.11806949095804,57.41708465387206],[-124.1180506186318,57.41712923680043],[-124.11803180162903,57.41717269919545],[-124.11801501142814,57.41721731191782],[-124.11799619434126,57.41726077431097],[-124.11797732184199,57.41730535723552],[-124.11796053151885,57.41734996995601],[-124.11794171430428,57.41739343234622],[-124.11792492390063,57.417438045065545],[-124.11790610660192,57.41748150745393],[-124.11788931611775,57.41752612017194],[-124.11787258096716,57.41756961235696],[-124.11785370817024,57.417614195275355],[-124.11783697294031,57.41765768745905],[-124.11782018229754,57.417702300174874],[-124.11780339161541,57.41774691289031],[-124.11778873851401,57.417790434872224],[-124.11777194775621,57.41783504758702],[-124.11775521233594,57.417878539768445],[-124.11774050375152,57.41792318228268],[-124.11772585051048,57.41796670426403],[-124.11771114185763,57.41801134677829],[-124.1176964331703,57.418055989292725],[-124.11768177982779,57.41809951127409],[-124.1176691533355,57.418144183590236],[-124.11765658219377,57.41818773537368],[-124.11764395564269,57.41823240769068],[-124.11763132906201,57.41827708000819],[-124.11761875783318,57.41832063179287],[-124.11760821346924,57.41836533391388],[-124.11759766908054,57.41841003603576],[-124.11758718004968,57.41845361762509],[-124.11757871789466,57.418498349551705],[-124.11756817343455,57.41854305167634],[-124.11755976662093,57.41858666307153],[-124.11755338669418,57.418631424804865],[-124.11754700675243,57.41867618653964],[-124.11754068218006,57.41871982774208],[-124.11753430220861,57.41876458947959],[-124.11753000452188,57.41880938102237],[-124.11752784451215,57.41885308183685],[-124.11752562911245,57.41889790318671],[-124.11752549601452,57.41894275434207],[-124.1175253629163,57.41898760549917],[-124.11752736751491,57.419031365928056],[-124.11753139904725,57.41907627669626],[-124.11753543058907,57.419121187466054],[-124.1175394621404,57.419166098237426],[-124.11754563140789,57.41920991827993],[-124.11755174530477,57.41925485885792],[-124.11755994154264,57.41929982924071],[-124.11756605547082,57.41934476982141],[-124.1175763340764,57.41938977000988],[-124.11758458575645,57.41943361986203],[-124.1175948644079,57.419478620052416],[-124.11760514308368,57.41952362024372],[-124.11761542178371,57.419568620435996],[-124.11762570050801,57.41961362062914],[-124.11763597925663,57.41965862082322],[-124.11764839576087,57.4197025302856],[-124.11765867456027,57.41974753048139],[-124.11767103573757,57.41979256047956],[-124.11768131458801,57.41983756067681],[-124.11769367582126,57.4198825906765],[-124.11770395472274,57.41992759087548],[-124.117716316012,57.41997262087641],[-124.11772659496451,57.42001762107711],[-124.11773692932186,57.42006150074367],[-124.11774720832271,57.42010650094613],[-124.11775540497457,57.42015147134928],[-124.11776568402152,57.42019647155366],[-124.11777388071457,57.42024144195909],[-124.11778207742694,57.420286412365606],[-124.1177881917755,57.42033135297362],[-124.11779430613853,57.42037629358303],[-124.11780042051599,57.42042123419386],[-124.11780445251735,57.42046614500661],[-124.1178084845282,57.42051105582091],[-124.11781043415313,57.42055593683748],[-124.11781238378263,57.42060081785565],[-124.11781225101642,57.42064566907607],[-124.11781211824986,57.42069052029822],[-124.117811985483,57.42073537152205],[-124.11781185271583,57.42078022274766],[-124.1178138023585,57.420825103774284],[-124.11781366959316,57.420869955003305],[-124.11781348144798,57.42091592676974],[-124.11781543109953,57.42096080780161],[-124.11781524295603,57.4210067795716],[-124.11781511019174,57.4210516308075],[-124.11781700447246,57.421097632380466],[-124.11781687170995,57.42114248361988],[-124.11781668356728,57.421188455396965],[-124.1178185778567,57.421234456975164],[-124.11781844509557,57.42127930821975],[-124.11781825695412,57.4213252800021],[-124.11781806881223,57.42137125178642],[-124.11781788066988,57.421417223572455],[-124.1178177479073,57.42146207482396],[-124.11781755976409,57.421508046613546],[-124.11781737162048,57.42155401840495],[-124.11781510102385,57.421599960398765],[-124.11781491287682,57.421645932193755],[-124.11781269765244,57.42169075365446],[-124.11781250950203,57.421736725452966],[-124.11781023888867,57.421782667453726],[-124.11780802365085,57.42182748891966],[-124.11780575302669,57.421873430923945],[-124.11780139992706,57.42191934313045],[-124.11779918467089,57.42196416460141],[-124.11779483155298,57.4220100768111],[-124.11779053380644,57.42205486848562],[-124.11778618066774,57.42210078069861],[-124.11777980041848,57.42214554257624],[-124.11777550263898,57.422190334255404],[-124.11776912236218,57.42223509613608],[-124.11776274207034,57.422279858018015],[-124.11775630638031,57.422325740438495],[-124.11774784356368,57.42237047252283],[-124.11773943611105,57.422414084071214],[-124.11773097325496,57.42245881615778],[-124.11772042787717,57.42250351844469],[-124.11770993785959,57.422547100195004],[-124.11769939243267,57.422591802483545],[-124.11768890236668,57.422635384235534],[-124.11767627437919,57.42268005672405],[-124.11766370174864,57.42272360867578],[-124.11764904657312,57.42276713082565],[-124.11763444675168,57.42280953243809],[-124.1176197915097,57.42285305458796],[-124.11760305371097,57.42289654693502],[-124.11758637126319,57.422938918743945],[-124.11756963338858,57.42298241109004],[-124.11755086833583,57.423024753094055],[-124.11753210324132,57.4230670950972],[-124.11751131096192,57.42310828675704],[-124.11748421563416,57.423150509539],[-124.11745301056119,57.42319155216868],[-124.11741555779656,57.42323250537534],[-124.1173719127164,57.42327224861569],[-124.11732618499941,57.423311962035676],[-124.11727629209133,57.423351615825275],[-124.11722223397943,57.42339120997968],[-124.11716614860526,57.42342965376561],[-124.11710589800971,57.42346803790758],[-124.11704564729271,57.4235064220231],[-124.11698123133792,57.42354474648719],[-124.11691687066326,57.423581950382975],[-124.11685250986288,57.42361915424843],[-124.11678814893679,57.42365635808367],[-124.11672170531881,57.423693532071724],[-124.1166573995569,57.42372961530735],[-124.1165951208236,57.42376684886931],[-124.11653289738996,57.42380296186495],[-124.1164727564122,57.42383910465306],[-124.11641469789609,57.42387527723643],[-124.11635872184749,57.42391147961782],[-124.1163069662801,57.423946621085115],[-124.11625932035054,57.423982942719434],[-124.1162158949282,57.42401820344922],[-124.11617449657852,57.42405461452915],[-124.11614148393264,57.42409002436331],[-124.11611263640387,57.4241254938431],[-124.1160879540037,57.42416102297124],[-124.11607154649441,57.424197791942525],[-124.11606144217487,57.42423352985661],[-124.1160596682247,57.42426938708021],[-124.11606414206832,57.42430533378665],[-124.11607272568673,57.42434246068637],[-124.11608761256657,57.424378556529135],[-124.11610660924997,57.42441583256272],[-124.11612971575067,57.42445428878558],[-124.11615704295028,57.424491684118614],[-124.11618853542629,57.424529139097665],[-124.11622413775956,57.424567774258385],[-124.11626396082688,57.42460534852019],[-124.1163058111612,57.42464407313321],[-124.11635188224842,57.42468173684086],[-124.1163999806221,57.424720550894314],[-124.1164522997673,57.424758304034704],[-124.11650670164246,57.42479608697565],[-124.1165631862539,57.42483389971468],[-124.11662180902829,57.42487062171002],[-124.1166845971806,57.424907403315174],[-124.1167473854542,57.42494418489153],[-124.11681225648563,57.42498099625443],[-124.11687718305548,57.425016687047204],[-124.11694424779874,57.42505128708299],[-124.11701339530629,57.42508591689776],[-124.1170825429396,57.425120546677114],[-124.11715388415517,57.4251529651522],[-124.11722522549222,57.425185383589366],[-124.1172944843008,57.42521777218109],[-124.11736588127786,57.42524907000408],[-124.11743733376922,57.425279247249335],[-124.11750884176868,57.42530830391672],[-124.11757832261347,57.42533621020297],[-124.1176478589509,57.42536299591306],[-124.11771739538615,57.42538978158703],[-124.11778496003184,57.42541429634486],[-124.11785252476452,57.4254388110684],[-124.11792222763094,57.42546223501542],[-124.11799193058309,57.42548565892599],[-124.11806168899986,57.42550796225981],[-124.11813144749834,57.42553026555716],[-124.11820334412224,57.42555147807081],[-124.11827524082622,57.42557269054553],[-124.11834713761027,57.42559390298152],[-124.1184211725154,57.42561402462791],[-124.11849312482515,57.42563411644427],[-124.11856715988559,57.42565423800921],[-124.11864333306218,57.42567326877857],[-124.11871742363796,57.42569226971888],[-124.11879359696572,57.425711300401844],[-124.11886774304591,57.42572918071741],[-124.1189439718759,57.42574709077304],[-124.11902228345873,57.42576503056526],[-124.1190985124331,57.42578294053192],[-124.11917474147918,57.425800850454785],[-124.11925310862554,57.425817669569305],[-124.11933147584112,57.42583448863751],[-124.11940984312591,57.42585130765916],[-124.1194882104799,57.42586812663453],[-124.11956657790313,57.4258849455633],[-124.11964494539554,57.42590176444576],[-124.11972331295718,57.42591858328173],[-124.11980173591635,57.425934281529855],[-124.11988010361412,57.425951100272925],[-124.11996060939782,57.42596682819361],[-124.12003897723271,57.425983646842504],[-124.12011740045595,57.42599934490329],[-124.120195768427,57.42601616345922],[-124.12027627447857,57.426031891187705],[-124.12035464258672,57.426048709649585],[-124.12043306607403,57.42606440752312],[-124.12051143431833,57.42608122589207],[-124.12059188533244,57.426098073970024],[-124.12067025371614,57.42611489224487],[-124.12074862216906,57.42613171047319],[-124.12082699069119,57.42614852865513],[-124.1209032212817,57.42616643758207],[-124.12098158994353,57.42618325567245],[-124.12105990338287,57.42620119425847],[-124.12113613418832,57.426219103051295],[-124.12121236506546,57.426237011800225],[-124.12128854072925,57.42625604104757],[-124.12136471646915,57.42627507025118],[-124.12144089228514,57.42629409941095],[-124.12151498546417,57.42631309878606],[-124.12159110615505,57.42633324840196],[-124.12166514421106,57.42635336823561],[-124.1217391823453,57.42637348802809],[-124.12181108257012,57.426394698585625],[-124.12188506559404,57.42641593883936],[-124.12195691071462,57.426438269860654],[-124.12202875591942,57.42646060084319],[-124.12209851848564,57.4264829020552],[-124.1221703085982,57.426506353504315],[-124.12223996081617,57.42653089572823],[-124.12230758565245,57.42655428764425],[-124.12237718279307,57.42657995033956],[-124.1224447525492,57.42660446272925],[-124.12251221189311,57.42663121617113],[-124.12257764384671,57.42665681931171],[-124.1226451033767,57.42668357268666],[-124.12271042502184,57.426711416849],[-124.12277574676249,57.42673926097966],[-124.12283898585966,57.4267670753584],[-124.12290430778972,57.42679491942653],[-124.12296749183675,57.42682385428845],[-124.12303067597976,57.426852789120744],[-124.12309386021877,57.426881723923465],[-124.12315698932275,57.426911779240264],[-124.12322011852638,57.42694183452752],[-124.12328116507912,57.426971860072236],[-124.12334221172813,57.42700188558951],[-124.12340534122725,57.42703194079021],[-124.12346633284831,57.42706308679539],[-124.12352732456911,57.42709423277313],[-124.12358831638964,57.427125378723424],[-124.12364930830996,57.427156524646264],[-124.12371030033,57.42718767054156],[-124.12377129244983,57.42721881640953],[-124.12383020190326,57.42724993254566],[-124.12389119422083,57.427281078359734],[-124.12395213142995,57.42731334469071],[-124.12401312394877,57.427344490449926],[-124.12407203379416,57.42737560648104],[-124.1241329713077,57.42740787273094],[-124.12419396412582,57.42743901840886],[-124.12425495704365,57.42747016405926],[-124.12431595006127,57.42750130968211],[-124.12437694317862,57.42753245527764],[-124.12443793639575,57.427563600845694],[-124.12449898490516,57.42759362584141],[-124.12455997832005,57.427624771354466],[-124.12462310981262,57.42765482598687],[-124.12468410342701,57.42768597144401],[-124.12474723511897,57.4277160260184],[-124.12481042209419,57.42774496001804],[-124.12487355398362,57.427775014533374],[-124.12493674115264,57.42780394847377],[-124.12499992841767,57.42783288238457],[-124.12506311577872,57.427861816265725],[-124.12512844121241,57.427889659255605],[-124.1251937667416,57.42791750221362],[-124.12525914753702,57.427944224594235],[-124.12527345132231,57.42795003509373],[-124.12570784887504,57.42805938737777],[-124.12605373554828,57.42814617211676],[-124.12639754097593,57.42823292628923],[-124.12674337566924,57.428320829774734],[-124.12708926707644,57.42840761181103],[-124.12743307722297,57.428494363297155],[-124.12777897177777,57.42858114353321],[-124.12812486790885,57.428667922866474],[-124.12847082069358,57.42875358074917],[-124.1288167750345,57.42883923772853],[-124.12916273093157,57.42892489380464],[-124.12950874343201,57.42900942842895],[-124.12985908832285,57.429090659721524],[-124.13021612354974,57.42916301450621],[-124.13057771100566,57.429227583678255],[-124.13095481495708,57.429273309664545],[-124.13128806230067,57.42936326483165],[-124.1315796467557,57.429495238005146],[-124.13187106829582,57.429630572197325],[-124.13219072409706,57.42974275864426],[-124.1325147674521,57.429850521257364],[-124.13282357277988,57.429971522757675],[-124.1331237736427,57.430098008071646],[-124.1334195908915,57.43022891581397],[-124.13370263788194,57.43036524837507],[-124.1339493430999,57.430520127475],[-124.13418311325896,57.430683793306],[-124.13443190546515,57.430838701083815],[-124.13468486565397,57.430993667476926],[-124.13494002067043,57.43114642182752],[-124.13520159137211,57.43129590261774],[-124.13548032203938,57.43143553408927],[-124.13577188202214,57.43156861875945],[-124.13605067163508,57.43170712850181],[-124.13632710599552,57.4318512109331],[-124.13659077001856,57.432000718558506],[-124.13682258724654,57.43216210929564],[-124.13700775678456,57.432339659066365],[-124.1371674378321,57.432526939680486],[-124.13732498255223,57.43271531119506],[-124.13750999267046,57.432896222009056],[-124.1377181378446,57.4330729747011],[-124.13788643191795,57.43325476971863],[-124.13794766662984,57.433451869403015],[-124.13793741798415,57.43366141342727],[-124.13795024817473,57.43386792011145],[-124.1379839648136,57.43407360108027],[-124.13797815655187,57.43427760139478],[-124.13791199102984,57.43447962623435],[-124.13781676985873,57.43467899720028],[-124.13773190884777,57.43487963611147],[-124.13765735333602,57.43508266354627],[-124.13757868541533,57.4352845114425],[-124.13747934885417,57.435482702769306],[-124.13735112006009,57.435674878400334],[-124.13719191540893,57.43586100875483],[-124.13701204113534,57.43604348231424],[-124.1368157183706,57.43622123743174],[-124.13660716835878,57.43639321247773],[-124.13635974717496,57.43655005934536],[-124.13608359677025,57.43669752815527],[-124.13583216946805,57.43685095337464],[-124.13566297494266,57.43702797002338],[-124.13559048751402,57.437231026176924],[-124.1355241395445,57.43743641200236],[-124.13541025815897,57.43763327493531],[-124.1352859588269,57.43782999018697],[-124.135136987205,57.438019627692526],[-124.13494903389241,57.43819637786826],[-124.13470334809604,57.438359974749915],[-124.13440508460998,57.438490307011755],[-124.13406559440521,57.438568472487646],[-124.13369205850402,57.43861812078855],[-124.13331051773199,57.438660926458105],[-124.13294690229968,57.438720805454196],[-124.13259199865428,57.43881556860974],[-124.13231823051275,57.43895633601509],[-124.132182015159,57.43914054498326],[-124.13209903298774,57.43934457227713],[-124.13204911011363,57.43955467554906],[-124.13202237966057,57.439759501367746],[-124.13204981908922,57.439965096166304],[-124.13208975969043,57.44017086843944],[-124.13209844836362,57.44037619713346],[-124.13205510457378,57.440579665950835],[-124.13198670317571,57.440783900445695],[-124.1318954922688,57.44098556847364],[-124.13178580357162,57.44118136746073],[-124.13157534014341,57.4413488234388],[-124.13135681570847,57.44151055795663],[-124.1313031038604,57.44171275823438],[-124.13130115071861,57.44192242156556],[-124.13133280999564,57.44212695550522],[-124.13139161138594,57.442330753519414],[-124.13146297006446,57.442533608484645],[-124.13152807864537,57.44273637469797],[-124.13156812934741,57.44293990649229],[-124.13156014670527,57.443144999049636],[-124.13151668686857,57.44335070929806],[-124.13148364488319,57.44355656748681],[-124.13150494313233,57.44375983318959],[-124.13160569673308,57.443958620234156],[-124.13171900857365,57.44415646415142],[-124.13176536791858,57.44435896430896],[-124.13176977835258,57.444566475731314],[-124.13173876540714,57.44477348434218],[-124.13166432357762,57.44497314840556],[-124.1315646008843,57.4451780602991],[-124.13144804196298,57.44538609717507],[-124.13129671780538,57.44558018423671],[-124.1310946180668,57.44574663785832],[-124.13082375886125,57.445869503536834],[-124.1304921453744,57.44595562262195],[-124.13011984537289,57.44602097860991],[-124.12973328787554,57.44607940288069],[-124.12935895663286,57.44614360654735],[-124.12900880351458,57.44622497309977],[-124.12867246423168,57.44632223402939],[-124.12834807507556,57.446430877554384],[-124.12803377249612,57.446546391869404],[-124.12773147487142,57.44667216838574],[-124.12742720167904,57.44679567344441],[-124.12712495521392,57.446920328030295],[-124.12683882606295,57.447056424839836],[-124.12651053351021,57.4471594017673],[-124.12617609793601,57.447260047753275],[-124.12586786798362,57.44737900767625],[-124.1255595257244,57.447500208018646],[-124.12524109329097,57.44761453585251],[-124.12490478731426,57.44771066670747],[-124.12455258159116,57.44779087126404],[-124.12421035201395,57.44788018789259],[-124.12391620105409,57.44800943628009],[-124.1236482549547,57.44815699925662],[-124.12338853193859,57.44830692168296],[-124.1231104383891,57.44844873222064],[-124.12280821993573,57.44857225650791],[-124.12249179892699,57.44868772808246],[-124.12217948859524,57.44880437893438],[-124.12187923764687,57.44893017198667],[-124.12162147573012,57.449082361891094],[-124.12132324939336,57.44920930400977],[-124.12101685115753,57.44933276477622],[-124.18410018474952,57.45502531446185],[-124.18069062335044,57.489301688739175],[-124.1806537424767,57.48950526854269],[-124.18061263511719,57.48970991138621],[-124.18057569979955,57.489914611868954],[-124.18054710909782,57.490119427610765],[-124.180535208205,57.49032447385072],[-124.18055668759816,57.490529981058536],[-124.18057190836184,57.49073540187652],[-124.18054123072412,57.490940188956436],[-124.18047508549273,57.491144486312685],[-124.18040476690909,57.49134872605141],[-124.18035750449927,57.491551041454294],[-124.18037288551267,57.49175310058859],[-124.18049691800806,57.49195329597705],[-124.18062517817178,57.49215242826722],[-124.1806386890028,57.492349976146784],[-124.18054284970881,57.49256395617059],[-124.18034001854254,57.492745060341065],[-124.18003421232767,57.49285297424643],[-124.17970807689335,57.49294939292887],[-124.17937386250406,57.49304009235089],[-124.17903146189185,57.4931273137112],[-124.17868296151599,57.493211085783145],[-124.17833044785672,57.493291437360796],[-124.17797381355975,57.493370609672795],[-124.17761514506637,57.493448631540026],[-124.17725444239657,57.49352550294566],[-124.17689577096597,57.493603522865946],[-124.17653709806338,57.49368154181543],[-124.17618045637329,57.49376070930196],[-124.17573922569416,57.493862253718724],[-124.17566897438145,57.49389043690503],[-124.1755946038313,57.493917441651114],[-124.17552221206485,57.49394671650427],[-124.17544987397415,57.49397487068811],[-124.17537962223889,57.49400305372298],[-124.17530931660802,57.494032357351365],[-124.17523901086878,57.49406166094305],[-124.17517079148843,57.49409099339133],[-124.17510465847157,57.49412035469943],[-124.1750385253526,57.494149715975105],[-124.17497233832988,57.49418019784863],[-124.17490823767464,57.49421070858723],[-124.17484622339177,57.494241248194],[-124.17478420900926,57.49427178777246],[-124.17472422719652,57.49430347685332],[-124.17466429909472,57.494334045277306],[-124.17460431708382,57.494365734305276],[-124.17454224848939,57.49439739440352],[-124.17448023360804,57.49442793384305],[-124.17441816480874,57.494459593884706],[-124.17435614972628,57.49449013326743],[-124.1742941345442,57.49452067262201],[-124.17422997894671,57.49455230367026],[-124.17416587706843,57.494582814057765],[-124.17410177508728,57.494613324415056],[-124.17403767300323,57.49464383474191],[-124.17397351698457,57.49467546566865],[-124.17390941469283,57.4947059759349],[-124.17384531229823,57.494736486170716],[-124.17378115596321,57.49476811700638],[-124.1737170533609,57.49479862718143],[-124.17365295065574,57.49482913732614],[-124.17358879400436,57.49486076807089],[-124.17352463724622,57.494892398785304],[-124.17346053422854,57.49492290883893],[-124.17339846377212,57.49495456841398],[-124.1733363932123,57.49498622796078],[-124.17327432254913,57.49501788747912],[-124.1732122517826,57.49504954696919],[-124.17315012705613,57.49508232706134],[-124.17309014260276,57.49511401542094],[-124.17303010418921,57.495146824384705],[-124.1729721521973,57.4951796622502],[-124.17291420010531,57.49521250009113],[-124.17285624791323,57.49524533790761],[-124.17280038215162,57.49527820463035],[-124.17274446242456,57.49531219196085],[-124.17269062913174,57.49534620820134],[-124.17263679574259,57.49538022442088],[-124.1725849949213,57.49541539018429],[-124.17253324787946,57.49544943529791],[-124.17248353340976,57.49548462995859],[-124.17243590539158,57.495519853538426],[-124.17238822340543,57.495556197732654],[-124.1723426278756,57.49559257084894],[-124.17229911880798,57.49562897288954],[-124.17225560965706,57.495665374916875],[-124.17221413309113,57.49570292650184],[-124.17217474299878,57.49574050701591],[-124.17213738549862,57.4957792370915],[-124.17210002792237,57.4958179671579],[-124.17206684339352,57.49585675510003],[-124.17203360490632,57.49589666366593],[-124.17200245291545,57.49593660116842],[-124.17197130085914,57.49597653866494],[-124.17194014873736,57.496016476155496],[-124.17191311580096,57.49605759216093],[-124.17188405012651,57.496097558586044],[-124.17185701707179,57.49613867458288],[-124.17182998395857,57.49617979057571],[-124.17180498347064,57.49622205614221],[-124.17178003682574,57.49626320107442],[-124.17175503622741,57.49630546663446],[-124.17173212216197,57.4963477611392],[-124.17170920804553,57.4963900556415],[-124.17168838047118,57.49643237908993],[-124.17166749894821,57.49647582316785],[-124.17164667128044,57.49651814661291],[-124.17162578966273,57.49656159068748],[-124.17160699459976,57.49660506371026],[-124.17158819949381,57.49664853673199],[-124.17156940434487,57.49669200975271],[-124.17155264185656,57.49673663235452],[-124.17153593323545,57.49678013432453],[-124.17151917066899,57.4968247569255],[-124.17150246197086,57.49686825889459],[-124.17148778594556,57.49691291044651],[-124.17147310988578,57.496957561998556],[-124.17145843379153,57.49700221355066],[-124.1714437576628,57.497046865102945],[-124.17143116812865,57.49709154560796],[-124.17141857856492,57.497136226113476],[-124.17140384842664,57.49718199829834],[-124.17139125880084,57.49722667880483],[-124.1713807018725,57.49727250889723],[-124.17136811218951,57.49731718940503],[-124.17135755520815,57.49736301949917],[-124.171344965468,57.4974077000083],[-124.1713344084336,57.497453530104245],[-124.17132385137373,57.497499360201196],[-124.17131329428841,57.4975451902991],[-124.17130279109223,57.49758989976582],[-124.1712922339564,57.49763572986577],[-124.1712816767951,57.49768155996655],[-124.17127111960835,57.49772739006845],[-124.17126264906247,57.49777324912659],[-124.17125214574372,57.49781795859822],[-124.1712436751548,57.49786381765894],[-124.17123311787164,57.497909647765034],[-124.171222560563,57.497955477872225],[-124.17121408990775,57.49800133693638],[-124.17120353255073,57.49804716704576],[-124.17119511577057,57.49809190547985],[-124.17118455836552,57.49813773559134],[-124.17117608762383,57.498183594660524],[-124.17116558408989,57.49822830414136],[-124.17115502661139,57.498274134256],[-124.17114660972389,57.49831887269589],[-124.17113605219733,57.498364702812616],[-124.17112554856631,57.49840941229734],[-124.17111499098922,57.49845524241606],[-124.17110448730843,57.498499951902744],[-124.17109189689435,57.49854463243236],[-124.17108139316169,57.49858934192063],[-124.1710708894043,57.498634051409944],[-124.17105829890633,57.49867873194161],[-124.17104570837878,57.49872341247379],[-124.17103317174583,57.49876697237338],[-124.17102058115952,57.498811652906646],[-124.1710079905436,57.49885633344045],[-124.17099325924451,57.4989021056486],[-124.170978581836,57.4989467572235],[-124.17096390439302,57.49899140879862],[-124.17094917298849,57.499037181007196],[-124.17093444154851,57.49908295321596],[-124.17091976400107,57.499127604791525],[-124.17090503249064,57.49917337700067],[-124.17089030094472,57.499219149210035],[-124.17087556936335,57.499264921419645],[-124.17086083774647,57.49931069362931],[-124.17084824677754,57.49935537416749],[-124.17083351509274,57.49940114637777],[-124.17082087013031,57.49944694755071],[-124.17080822513745,57.49949274872417],[-124.17079766687696,57.49953857886107],[-124.1707850757583,57.499583259402115],[-124.17077451744478,57.499629089540754],[-124.17076604587615,57.49967494864358],[-124.17075762822077,57.49971968711367],[-124.17074915661158,57.49976554621916],[-124.17074282569398,57.499810313655374],[-124.1707385815417,57.49985511005672],[-124.17073433737941,57.49989990645967],[-124.17073217999226,57.49994473182806],[-124.1707300226,57.49998955719807],[-124.17073203878275,57.5000344404975],[-124.17073410890515,57.50007820316424],[-124.1707361790323,57.50012196583273],[-124.17074242275876,57.500165786429996],[-124.1707486664996,57.50020960702868],[-124.17075699705694,57.500253456592205],[-124.17076955517663,57.50029624344864],[-124.17078211332462,57.50033903030548],[-124.17079675831002,57.50038184612547],[-124.17081349013996,57.500424690907955],[-124.17083236275401,57.50046644401743],[-124.17085332222571,57.5005082260875],[-124.17087428174344,57.50055000815587],[-124.17089732812802,57.50059181918347],[-124.17092246138643,57.500633659169395],[-124.17094759470011,57.50067549915201],[-124.17097486882552,57.50071624745636],[-124.17100422983934,57.500757024715924],[-124.17103353698907,57.50079892260563],[-124.17106498496416,57.50083972881362],[-124.1710964330068,57.50088053501561],[-124.17112996795596,57.50092137016904],[-124.17116355690065,57.50096108467991],[-124.1711991788365,57.50100194877554],[-124.17123480084892,57.50104281286305],[-124.17127047685842,57.50108255630679],[-124.17130818587329,57.501123449332546],[-124.17134594888766,57.50116322171331],[-124.17138579883574,57.501203023038144],[-124.17142559495112,57.501243944988076],[-124.17146544506723,57.50128374629162],[-124.17150529526678,57.50132354758458],[-124.17154723241337,57.50136337781769],[-124.17158916964785,57.50140320803891],[-124.17162902010216,57.50144300929852],[-124.17167304438046,57.501482868445436],[-124.1717149818786,57.501522698630815],[-124.17175697337142,57.501561408168],[-124.171800997921,57.50160126727628],[-124.17184293568381,57.50164109742512],[-124.1718869604158,57.501680956507485],[-124.1719288983566,57.50172078663176],[-124.17197292327103,57.501760645688236],[-124.17201486138978,57.5018004757879],[-124.17205894038497,57.501839214181736],[-124.17210087868054,57.50187904425688],[-124.172142817064,57.50191887431999],[-124.17218684243213,57.50195873331199],[-124.17222669409455,57.50199853441051],[-124.17226863274166,57.502038364437745],[-124.17231057147666,57.50207819445312],[-124.17235042339388,57.50211799551838],[-124.17239027539453,57.50215779657295],[-124.17243007359076,57.50219871825399],[-124.17246992575944,57.502238519287346],[-124.172507691097,57.50227829137432],[-124.17255529836955,57.502330535137546],[-124.17263861342565,57.50233505442105],[-124.17272192850152,57.50233957365205],[-124.17280315667881,57.502344063899386],[-124.17288647179402,57.502348583026546],[-124.1729697330568,57.502354222738425],[-124.17305299434433,57.502359862397824],[-124.17313630952387,57.502364381366945],[-124.17321957085834,57.50237002092116],[-124.17330283221752,57.50237566042283],[-124.1733860936014,57.50238129987189],[-124.1734672680887,57.50238691034788],[-124.17355052952165,57.502392549693184],[-124.17363379097927,57.50239818898598],[-124.17371705246157,57.50240382822614],[-124.17380031396861,57.50240946741373],[-124.17388357550035,57.50241510654885],[-124.17396683705677,57.50242074563136],[-124.17405009863792,57.502426384661284],[-124.1741312733195,57.502431994728695],[-124.17421453494966,57.502437633654836],[-124.17429785043771,57.502442151890314],[-124.17438111211484,57.50244779071128],[-124.17446442764495,57.502452308841576],[-124.17454768936902,57.502457947557396],[-124.17463100494119,57.50246246558233],[-124.17471437435408,57.50246586291633],[-124.17479560303654,57.50247035193647],[-124.17487891866534,57.50247486980482],[-124.1749622881276,57.502478266982074],[-124.17504565760476,57.50248166410666],[-124.17512902709682,57.5024850611786],[-124.17521245041004,57.502487337559074],[-124.17529587373326,57.50248961388688],[-124.175377210138,57.5024918612716],[-124.175460633481,57.50249413749511],[-124.17554411063053,57.502495293027216],[-124.1756275877851,57.502496448506356],[-124.17571106494476,57.50249760393268],[-124.17579459589865,57.50249763866735],[-124.17587603992345,57.502497644466686],[-124.17595962466184,57.50249655845789],[-124.17604315561364,57.50249659303501],[-124.17612668656557,57.502496627559296],[-124.17621027129454,57.502495541391646],[-124.17629385601872,57.502494455170876],[-124.17637535380882,57.50249334002278],[-124.17645893852344,57.50249225369743],[-124.17654252323331,57.50249116731917],[-124.17662610793839,57.502490080887775],[-124.17670969263868,57.50248899440348],[-124.17679333109389,57.502486787227],[-124.17687696953935,57.50248457999738],[-124.17695846729116,57.50248346448883],[-124.17704210571975,57.50248125715445],[-124.17712574413862,57.50247904976702],[-124.17720938254777,57.50247684232666],[-124.1772930209472,57.502474634833085],[-124.17737665933694,57.50247242728654],[-124.17745826452811,57.50246907019009],[-124.177541902896,57.502466862538725],[-124.17762559498928,57.502463534194696],[-124.17770923333525,57.50246132643722],[-124.17779292540168,57.50245799798697],[-124.17787661745345,57.50245466948366],[-124.17796025576536,57.50245246156687],[-124.17804186086214,57.502449104109225],[-124.17812555287254,57.50244577544797],[-124.17820924486828,57.502442446733546],[-124.17829293684936,57.502439117965956],[-124.17837668252872,57.50243466850542],[-124.17845828755051,57.502431310790186],[-124.17854197948526,57.50242798186452],[-124.17862572511092,57.50242353224589],[-124.17870941701389,57.50242020321402],[-124.17879310890221,57.50241687412896],[-124.17887476754721,57.50241239551596],[-124.17895845940386,57.50240906632591],[-124.17904220493911,57.5024046164428],[-124.17912595045473,57.50240016650643],[-124.17920964226245,57.502396837157136],[-124.17929130081534,57.50239235828618],[-124.17937504627481,57.50238790819167],[-124.17945873803373,57.502384578684214],[-124.17954248345646,57.502380128483345],[-124.17962414193424,57.502375649406304],[-124.17970788731793,57.50237119910037],[-124.17979163268201,57.50236674874134],[-124.17987329110171,57.50236226951008],[-124.17995698276052,57.502358939686324],[-124.18004072806845,57.50235448916913],[-124.18012447335676,57.50235003859868],[-124.18020613170131,57.50234555916128],[-124.18028987695058,57.502341108485815],[-124.18037362218024,57.502336657757205],[-124.1804552804667,57.50233217816546],[-124.18053902565734,57.50232772733184],[-124.18062068390513,57.50232324763764],[-124.18070442905669,57.50231879669889],[-124.1807882278303,57.5023132250664],[-124.18086993965683,57.50230762457734],[-124.18095368474481,57.5023031734803],[-124.18103539652533,57.50229757288879],[-124.18111924883551,57.50229088040516],[-124.1812030474868,57.50228530850906],[-124.1812847591922,57.50227970776287],[-124.18136855779458,57.50227413576168],[-124.18145032307363,57.502267414272175],[-124.18153412162467,57.50226184216579],[-124.18161588684802,57.50225512057364],[-124.18169973896235,57.50224842772105],[-124.18178150412757,57.50224170602626],[-124.18186535618318,57.50223501306846],[-124.18194712129022,57.50222829127108],[-124.18203097328708,57.50222159820799],[-124.18211273833602,57.502214876307875],[-124.18219450335602,57.502208154357234],[-124.18227835526488,57.50220146113684],[-124.18236012022678,57.50219473908345],[-124.18244397207687,57.502188045757926],[-124.18252573698062,57.50218132360193],[-124.182609588772,57.50217463017109],[-124.18269140720292,57.5021667872712],[-124.18277525893305,57.502160093735036],[-124.18285702371807,57.50215337137378],[-124.18294087538945,57.502146677732334],[-124.18302264011632,57.50213995526836],[-124.18310440481427,57.50213323275373],[-124.1831883099683,57.50212541831364],[-124.1832700746057,57.50211869569644],[-124.18335392612786,57.50211200179245],[-124.18343569070713,57.50210527907261],[-124.18351948860966,57.502099705704985],[-124.1836012531332,57.502092982882424],[-124.1836851045403,57.50208628876799],[-124.1837668690057,57.50207956584288],[-124.183850666803,57.50207399226482],[-124.18393243121264,57.50206726923711],[-124.18401414204719,57.502061666800444],[-124.1840979397688,57.50205609306528],[-124.18417970409621,57.50204936988423],[-124.18426350176644,57.50204379604402],[-124.1843452125017,57.50203819340219],[-124.18442895658912,57.50203374009861],[-124.18451066727837,57.502028137354344],[-124.18459446485326,57.50202256330386],[-124.18467820887703,57.502018109842034],[-124.18475986597184,57.5020136275853],[-124.18484360995652,57.50200917401848],[-124.18492526701262,57.50200469165928],[-124.18500901095825,57.5020002379874],[-124.18509066797566,57.50199575552581],[-124.18517435837033,57.50199242239107],[-124.18525804875033,57.5019890892031],[-124.18533965220739,57.501985727229574],[-124.18542334255817,57.50198239393674],[-124.18550494598621,57.501979031860834],[-124.1855885828081,57.50197681910541],[-124.1856722196202,57.50197460629697],[-124.18575376951476,57.50197236470938],[-124.18583740630747,57.50197015179608],[-124.18592098960059,57.50196905947213],[-124.1860045728889,57.50196796709521],[-124.18608606926462,57.50196684594457],[-124.18616965254334,57.50196575346297],[-124.18625318233715,57.501965781570966],[-124.18633676560873,57.5019646889834],[-124.18641820849243,57.50196468826995],[-124.18650168481138,57.50196583686314],[-124.18658521460566,57.50196586476071],[-124.18666869093221,57.50196701324812],[-124.18675222072919,57.5019670410399],[-124.1868356970634,57.501968189421476],[-124.18691703303361,57.50197042968547],[-124.18700050938024,57.50197157796272],[-124.18708393227632,57.501973846830026],[-124.18716740863547,57.50197499500164],[-124.18725083154902,57.5019772637633],[-124.18733425447255,57.50197953247228],[-124.18741767740602,57.50198180112839],[-124.18750104690614,57.501985190374796],[-124.1875823829519,57.50198743022833],[-124.18766575247908,57.50199081937065],[-124.18774917545707,57.50199308781698],[-124.18783254501152,57.50199647685375],[-124.1879159145808,57.5019998658379],[-124.18799928416496,57.50200325476926],[-124.18808265376397,57.50200664364786],[-124.18816596995413,57.50201115311721],[-124.18824933958534,57.5020145418905],[-124.1883327092314,57.502017930611025],[-124.18841602547595,57.50202243992239],[-124.18849939515421,57.50202582853756],[-124.18858271143584,57.502030337743534],[-124.18866608114625,57.50203372625336],[-124.18874939746496,57.50203823535411],[-124.18883271380346,57.502042744402125],[-124.1889160301617,57.50204725339759],[-124.18899939993892,57.50205064169664],[-124.18908271633427,57.50205515058674],[-124.18916603274936,57.5020596594242],[-124.18924934918418,57.50206416820908],[-124.18933266563882,57.50206867694125],[-124.18941598211319,57.50207318562087],[-124.18949935199187,57.50207657360384],[-124.18958266850332,57.50208108217804],[-124.18966598503454,57.50208559069965],[-124.18974930158552,57.50209009916862],[-124.18983261815627,57.502094607585036],[-124.18991598811905,57.502097995304545],[-124.18999930472687,57.50210250361555],[-124.19008262135443,57.50210701187399],[-124.19016599136671,57.50211039943544],[-124.19024930803135,57.50211490758856],[-124.19033267807579,57.502118295044625],[-124.19041604813508,57.50212168244803],[-124.19049936485412,57.502126190443136],[-124.19058273494558,57.50212957774109],[-124.19066610505189,57.50213296498643],[-124.19074947517306,57.5021363521789],[-124.19083284530909,57.5021397393188],[-124.19091626880282,57.502142005761314],[-124.19099963896612,57.5021453927957],[-124.19108306248219,57.502147659132696],[-124.19116643267274,57.50215104606168],[-124.19124985621119,57.50215331229313],[-124.19133327975955,57.502155578471786],[-124.19141461639559,57.502157815961255],[-124.19149803996368,57.50216008203578],[-124.1915814635417,57.50216234805732],[-124.19166483380887,57.50216573467113],[-124.19174825740924,57.50216800058722],[-124.19183168101955,57.50217026645056],[-124.19191510463985,57.50217253226101],[-124.19199852827003,57.50217479801885],[-124.19208189860167,57.502178184368915],[-124.19216532225423,57.502180450021065],[-124.19224874591673,57.50218271562053],[-124.19233216958915,57.50218498116715],[-124.19241553997284,57.50218836730627],[-124.19249896366763,57.50219063274734],[-124.19258238737237,57.50219289813563],[-124.1926657577957,57.502196284116536],[-124.19274918152274,57.502198549399324],[-124.19283260525977,57.5022008146293],[-124.19291597572274,57.502204200452],[-124.1929993994821,57.502206465576435],[-124.1930828232514,57.50220873064816],[-124.19316624703063,57.502210995666964],[-124.19324961754566,57.5022143812787],[-124.19333304134722,57.50221664619205],[-124.19341646515875,57.50221891105263],[-124.1934998889802,57.50222117586046],[-124.19358325954727,57.50222456126119],[-124.19366668339106,57.50222682596337],[-124.1937501072448,57.50222909061285],[-124.19383353110847,57.5022313552095],[-124.19391695498207,57.50223361975342],[-124.19400032561356,57.502237004890425],[-124.19408374950952,57.502239269328804],[-124.1941671734154,57.50224153371433],[-124.19425059733122,57.5022437980471],[-124.19433193432766,57.50224603373687],[-124.19441535826316,57.50224829796535],[-124.19449878220863,57.50225056214115],[-124.19458220616403,57.50225282626405],[-124.19466563012934,57.50225509033424],[-124.1947490541046,57.50225735435159],[-124.19483253131736,57.50225849766987],[-124.19491595531004,57.50226076158161],[-124.19499937931265,57.50226302544057],[-124.19508280332522,57.50226528924673],[-124.19516628056543,57.50226643235375],[-124.19524970459541,57.50226869605426],[-124.19533318184811,57.50226983905558],[-124.19541660589549,57.502272102650544],[-124.19550008316072,57.50227324554608],[-124.19558350722549,57.502275509035435],[-124.19566698450322,57.502276651825376],[-124.19575040858543,57.50227891520914],[-124.19583388587564,57.502280057893394],[-124.19591736317086,57.502281200524706],[-124.19600084047111,57.5022823431033],[-124.1960843177764,57.502283485628915],[-124.19616779508665,57.50228462810179],[-124.19625127240197,57.502285770521645],[-124.19633474972227,57.50228691288886],[-124.19641822704763,57.50228805520302],[-124.19649961744464,57.50228916890854],[-124.1965830947799,57.502290311118365],[-124.19666662529367,57.50229033262822],[-124.19675010263651,57.502291474732324],[-124.19683363315295,57.502291496136465],[-124.19691711050334,57.50229263813484],[-124.19700064102243,57.502292659433046],[-124.19708417154162,57.5022926806784],[-124.19716770206088,57.50229270187078],[-124.19725123258026,57.50229272301031],[-124.19733476309972,57.50229274409686],[-124.1974182936193,57.502292765130484],[-124.19750182413894,57.50229278611123],[-124.19758326772435,57.5022927785003],[-124.19766685138818,57.50229167872896],[-124.19775038190555,57.50229169955216],[-124.19783396556217,57.50229059967489],[-124.1979174960773,57.50229062039221],[-124.19800107972671,57.50228952040904],[-124.19808466337126,57.50228842037289],[-124.19816824701098,57.502287320283706],[-124.19825183064586,57.50228622014155],[-124.19833332734144,57.502285091419445],[-124.19841691096667,57.502283991172675],[-124.19850054770649,57.50228177022496],[-124.19858413131956,57.50228066987212],[-124.19866771492778,57.50227956946627],[-124.19875135164322,57.502277348359584],[-124.1988349352393,57.502276247847675],[-124.19891648500337,57.50227399811713],[-124.19900012169202,57.5022717768527],[-124.19908375837089,57.50226955553506],[-124.19916739504,57.50226733416439],[-124.19925103169935,57.50226511274064],[-124.19933466834888,57.5022628912639],[-124.19941621805472,57.502260641224396],[-124.19949985468477,57.50225841964272],[-124.19958349130505,57.50225619800814],[-124.19966712791556,57.50225397632042],[-124.19975076451631,57.502251754579746],[-124.19983445418734,57.50224841213759],[-124.19991809076608,57.50224619029069],[-124.19999964040153,57.502243939890334],[-124.2000833300335,57.502240597290246],[-124.20016696658047,57.50223837528551],[-124.20025065618546,57.50223503257919],[-124.2003342927104,57.50223281046829],[-124.20041589535545,57.50222943916193],[-124.20049958491886,57.50222609629769],[-124.2005832214096,57.502223874028786],[-124.20066691094607,57.5022205310584],[-124.20075060046781,57.50221718803475],[-124.20083423692428,57.502214965606704],[-124.20091583948665,57.50221159399094],[-124.20099952896685,57.50220825080928],[-124.20108321843229,57.502204907574594],[-124.20116685484227,57.50220268493558],[-124.20125054428075,57.50219934159459],[-124.20133423370453,57.5021959982006],[-124.20141583618185,57.50219262627538],[-124.20149952557631,57.50218928277643],[-124.20158316192757,57.502187059873314],[-124.20166685129506,57.502183716268135],[-124.2017505406478,57.502180372609935],[-124.20183214305466,57.502177000427025],[-124.20191583237808,57.5021736566638],[-124.20199946867064,57.50217143349665],[-124.20208315796708,57.502168089627226],[-124.2021668472488,57.50216474570477],[-124.2022505365158,57.502161401729126],[-124.20233208583126,57.50215914988608],[-124.2024157750714,57.5021558058056],[-124.20249946429684,57.50215246167192],[-124.2025831005086,57.50215023813449],[-124.20266678970704,57.50214689389465],[-124.20274839196075,57.5021435211448],[-124.2028320281383,57.50214129744947],[-124.20291571729517,57.502137953051594],[-124.20299935345068,57.50213572925016],[-124.20308304258056,57.50213238474613],[-124.20316667871404,57.502130160838526],[-124.20324828088746,57.50212678777928],[-124.20333191699895,57.50212456376684],[-124.20341555310065,57.50212233970136],[-124.20349918919257,57.502120115582855],[-124.20359539981916,57.502116941423594],[-124.2036762603932,57.502129257195215],[-124.20375503408899,57.50214154447637],[-124.20383584180507,57.502154980800206],[-124.20391670253794,57.50216729642477],[-124.20399547639028,57.50217958356265],[-124.20407633722718,57.50219189908951],[-124.20415511118209,57.50220418613237],[-124.20423591917276,57.50221762221168],[-124.20431678016848,57.50222993759154],[-124.20439555427993,57.50224222449105],[-124.2044764153797,57.502254539773226],[-124.204557223591,57.502267975656245],[-124.20463599785897,57.50228026241246],[-124.20471685911754,57.50229257754759],[-124.20479772042853,57.50230489263328],[-124.2048764419192,57.502318299896615],[-124.20495730333658,57.50233061488474],[-124.20503816480635,57.50234292982333],[-124.2051169393851,57.502355216292955],[-124.20519780095893,57.50236753113403],[-124.20527652272042,57.502380938159114],[-124.20535738440067,57.502393252902515],[-124.2054382461333,57.50240556759646],[-124.20551702097117,57.50241785382773],[-124.2055978298974,57.50243128907476],[-124.20567869178883,57.5024436036216],[-124.20575746678321,57.50245588970957],[-124.20583832877868,57.5024682041588],[-124.20591913792552,57.5024816392095],[-124.20599791307644,57.502493925154184],[-124.20607877523071,57.50250623945643],[-124.20615963743737,57.50251855370898],[-124.20623841274254,57.50253083951051],[-124.20631922216391,57.502544274316655],[-124.20639799757394,57.502556560023066],[-124.20647885999105,57.50256887408035],[-124.20655972246054,57.50258118808832],[-124.20663844514483,57.5025945943028],[-124.20671930772073,57.502606908213124],[-124.20680017034901,57.50261922207396],[-124.2068789460698,57.50263150749378],[-124.20695980880215,57.50264382125692],[-124.20704061871864,57.50265725562233],[-124.20711939459596,57.50266954089885],[-124.20720025748707,57.50268185451496],[-124.20727903346696,57.502694139696416],[-124.20735984360324,57.50270757386666],[-124.20744070665316,57.50271988733566],[-124.20751948278956,57.502732172373875],[-124.20760034594352,57.50274448574531],[-124.2076811563004,57.50275791971916],[-124.20775993259332,57.5027702046141],[-124.20784079590604,57.50278251783838],[-124.20792165927118,57.50279483101324],[-124.20800043571832,57.5028071157649],[-124.2080812463497,57.50282054949418],[-124.20816210987363,57.502832862522006],[-124.2082408864773,57.50284514713029],[-124.20832175010523,57.50285746006041],[-124.20840047398305,57.50287086522596],[-124.20848133771739,57.50288317805847],[-124.20856220150412,57.50289549084155],[-124.20864097836686,57.50290777521148],[-124.20872178943863,57.50292120854944],[-124.20880265338413,57.502933521185405],[-124.20888143040338,57.50294580541202],[-124.20896229445293,57.502958117950314],[-124.20904315855486,57.50297043043927],[-124.20912188292104,57.502983835175364],[-124.20920274712935,57.50299614756664],[-124.20928361139006,57.50300845990847],[-124.20936238872005,57.50302074384847],[-124.20944320028687,57.503034176745544],[-124.20952197772175,57.50304646059055],[-124.20960284219288,57.50305877273707],[-124.20968370671638,57.503071084834126],[-124.20976243151688,57.50308448918884],[-124.20984329614679,57.50309680118842],[-124.20992416082909,57.50310911313845],[-124.21000293857466,57.503121396696756],[-124.21008380336097,57.50313370854908],[-124.21016461542287,57.50314714100526],[-124.21024339332496,57.5031594244204],[-124.21032425827003,57.503171736125594],[-124.21040303627468,57.503184019445584],[-124.21048384855635,57.50319745170676],[-124.21056471366022,57.50320976326495],[-124.21064349182134,57.50322204644161],[-124.21072435702925,57.50323435790217],[-124.21080522228951,57.50324666931326],[-124.2108839478491,57.503260073000334],[-124.21096481321578,57.503272384313824],[-124.21104567863482,57.5032846955778],[-124.21112445710665,57.50329697846788],[-124.2112052698834,57.50331041028814],[-124.21128613546121,57.503322721404984],[-124.21136491408954,57.503335004151886],[-124.21144577977137,57.50334731517111],[-124.21152450576527,57.50336071847696],[-124.21160537155349,57.50337302939855],[-124.21168623739409,57.503385340270725],[-124.21176501628148,57.50339762277912],[-124.2118458822261,57.503409933553705],[-124.2119266954979,57.503423364933084],[-124.21200547454175,57.50343564729824],[-124.21208634064516,57.50344795792563],[-124.21216720680094,57.50346026850364],[-124.21224593328311,57.50347367137994],[-124.21232679954527,57.50348598186031],[-124.2124055788482,57.503498263987034],[-124.21248644521437,57.50351057436976],[-124.21256725892644,57.50352400535767],[-124.21264603838587,57.503536287341106],[-124.21272690491081,57.50354859757669],[-124.2128077714881,57.503560907762854],[-124.21288655110173,57.50357318960303],[-124.21296736508828,57.50358662034638],[-124.21304823182432,57.503598930385465],[-124.21312701159445,57.50361121208234],[-124.21320787843452,57.50362352202378],[-124.21328869264161,57.50363695257073],[-124.21336747256821,57.50364923412432],[-124.21344833956704,57.503661543918724],[-124.2135271195962,57.50367382537718],[-124.213607934023,57.503687255729034],[-124.2136888011806,57.50369956537626],[-124.21376758136623,57.503711846691495],[-124.21384844862783,57.503724156241034],[-124.21392931594183,57.50373646574114],[-124.21400804361731,57.50374986756845],[-124.21408891103766,57.50376217697099],[-124.2141717602194,57.503776755911346],[-124.2142630628947,57.50378920658785],[-124.2143586976514,57.5037983517808],[-124.21445641948422,57.503807525176065],[-124.21455408871587,57.50381781915473],[-124.21464544426067,57.503829148911215],[-124.21473038083411,57.503843755770006],[-124.21480258470973,57.503862675601354],[-124.21482512095398,57.503871951774855],[-124.21485996885833,57.50388588016098],[-124.21490028832127,57.5039167031719],[-124.21492150868036,57.503953995730015],[-124.2149342756442,57.50399341654187],[-124.21494490295458,57.504033929746086],[-124.21495547765078,57.50407556360704],[-124.21496610500672,57.50411607681247],[-124.21497250564957,57.50415765414764],[-124.21498094072213,57.50420038040394],[-124.21498525434107,57.5042419294782],[-124.21498951533329,57.504284599210436],[-124.214993723699,57.50432838960043],[-124.2149958450129,57.5043721517289],[-124.2149979663317,57.50441591385898],[-124.21500008765535,57.50445967599075],[-124.2150001219152,57.50450340986105],[-124.21500010353894,57.50454826438969],[-124.21499799808902,57.50459309065701],[-124.21499589263411,57.50463791692609],[-124.21499373453769,57.50468386385369],[-124.21498954199164,57.50472866186303],[-124.21498738388237,57.504774608794136],[-124.21498313868179,57.50482052746377],[-124.21497889347094,57.504866446135125],[-124.21497464824985,57.504912364808206],[-124.21496868438858,57.50495041062003],[-124.22222861901946,57.50569667552179],[-124.22276292685713,57.50570388050508],[-124.23464875274736,57.505199750146296],[-124.23820304548755,57.50277134128228],[-124.23932599596267,57.49980802326926],[-124.24362228904975,57.497209985251814],[-124.25182669625889,57.494968729231786],[-124.2654290788327,57.49373109859831],[-124.28004960108898,57.49507098087021],[-124.28648895660768,57.496356934994395],[-124.2892302031252,57.49705637745799],[-124.29786579060148,57.50041556945511],[-124.30057636819838,57.50367998802205],[-124.29856609981195,57.50902750942174],[-124.29838182482557,57.513142703919044],[-124.30053321511633,57.51697406033768],[-124.30794489041966,57.518666176536016],[-124.30962993125755,57.51873264203019],[-124.31619955603247,57.51945361911208],[-124.32500382241732,57.52029237713099],[-124.33439410793133,57.5230217985976],[-124.34282189502429,57.526770085157594],[-124.35114603245299,57.53063314892255],[-124.35863197798777,57.53381244682536],[-124.36063966736478,57.53455507210331],[-124.36460888480087,57.53828234659238],[-124.36844783149013,57.543891760010716],[-124.37155797240332,57.54819131425279],[-124.37289838011904,57.55047746839854],[-124.37838352038011,57.5532452033308],[-124.38896422125839,57.55540218812428],[-124.40064809022765,57.555625020175846],[-124.40414600573287,57.556779737806956],[-124.40525153061618,57.561126003135065],[-124.4038934196274,57.56636651176807],[-124.4026521662937,57.57081003746923],[-124.40204884699108,57.5748037751803],[-124.4023160178972,57.57839539458228],[-124.40409603696953,57.58059686606645],[-124.40493738145489,57.58163757294442],[-124.40514712743607,57.581725330338806],[-124.40548038289134,57.58186167629],[-124.40581364074208,57.58199802141731],[-124.40614267094242,57.582135436049924],[-124.40646519364178,57.58227837821416],[-124.40671724009101,57.58245523207054],[-124.40695218028196,57.58264085012746],[-124.40716801674748,57.582832965642226],[-124.40736460812255,57.58303494113648],[-124.40765320800989,57.58318868508236],[-124.40799731938266,57.58331618447202],[-124.40834352461665,57.58344370818422],[-124.40868977920165,57.583570110194756],[-124.4090403132456,57.583694320079736],[-124.40939294115448,57.58381855423621],[-124.40974561836572,57.583941666655484],[-124.41010248103309,57.58406482849959],[-124.4104594399615,57.584185747772786],[-124.41081640116556,57.58430666609473],[-124.41105447189065,57.58441830365512],[-124.41111468454831,57.58447958226531],[-124.41116521631685,57.58457214292315],[-124.41117391598576,57.584664200389994],[-124.41115671804458,57.58477500974287],[-124.41128930790026,57.58515675109029],[-124.41159713662452,57.58565161609307],[-124.4117160573281,57.586060105906235],[-124.41179556651312,57.58646027223737],[-124.41189136219943,57.58682138622663],[-124.41211056746032,57.58743405113783],[-124.41240857240186,57.588164286416706],[-124.41292013615669,57.588792798965784],[-124.41420638637585,57.58936445006622],[-124.41503709390541,57.58966934227335],[-124.4159915801723,57.589917401673226],[-124.41698649396443,57.59009977714363],[-124.4183204271397,57.590383764474225],[-124.41916266716864,57.59071456016077],[-124.42029851061454,57.591483956741676],[-124.42078932401347,57.591308161246644],[-124.42167194696603,57.59107200563582],[-124.42244503693091,57.59080201641095],[-124.42309640467512,57.590590002991675],[-124.42389080473619,57.590411091590944],[-124.42489257802615,57.59022791995674],[-124.42570137472417,57.590004314522275],[-124.42669940914973,57.58986033308327],[-124.4277904556983,57.58969390233031],[-124.428716380686,57.58972398214068],[-124.42963315049391,57.58977300998413],[-124.43053630431585,57.58984766128767],[-124.43141924361824,57.58995570758527],[-124.43227541676094,57.590103799761245],[-124.43311528585288,57.590292062413035],[-124.43393708536647,57.59051262529685],[-124.43474318663012,57.590758788601704],[-124.43553177642289,57.59102380290095],[-124.43630317907277,57.59129982273411],[-124.43705344181986,57.59158119477457],[-124.43780143897337,57.591867021201125],[-124.43854693998705,57.59216290619816],[-124.4390136439713,57.59302851541859],[-124.43861020508977,57.5947439383659],[-124.43856960623128,57.595170703132744],[-124.43850956110123,57.59556135416499],[-124.4384255305398,57.59597527078173],[-124.43829914470156,57.5964010220668],[-124.43799874885427,57.59723962671036],[-124.43803049803338,57.59753604622209],[-124.43782674198987,57.598162731589966],[-124.43770169169846,57.59875894901427],[-124.43827501273651,57.598765726427004],[-124.43902506579606,57.59875104029516],[-124.43972924037588,57.598782906154455],[-124.44089344366488,57.598878508831966],[-124.44190776143144,57.59890280834633],[-124.44315355063391,57.59915298200124],[-124.4445745704695,57.599418663131075],[-124.44564366196482,57.599690281927984],[-124.4464255932246,57.59997085127883],[-124.44650996139843,57.60000660593148],[-124.44711914603774,57.600262712539674],[-124.44759882375732,57.60040964249917],[-124.44823024975776,57.600583023141695],[-124.44877818742665,57.60095502619898],[-124.44938857560423,57.60138719293011],[-124.45005242272029,57.60184353286302],[-124.45056381836494,57.60254702847924],[-124.45055861472788,57.60293047964519],[-124.45063576509527,57.60375784217601],[-124.45103156741108,57.604063012294475],[-124.45122157423435,57.60448575747504],[-124.45136973538575,57.6050616415748],[-124.45143294719934,57.60551317823636],[-124.45128209771713,57.60597678471482],[-124.451181775101,57.60633108775355],[-124.45092383089032,57.6067508265372],[-124.45102977820254,57.60697634525066],[-124.45110399479904,57.60710729570601],[-124.45125858448364,57.60732104910346],[-124.45138841390124,57.60757712486373],[-124.45140474248416,57.607946252027645],[-124.45150724272551,57.608153787970366],[-124.45155864331272,57.60838203153621],[-124.45146199916888,57.608748713964076],[-124.4514558421597,57.609155705213034],[-124.45144366171878,57.60945385147412],[-124.45151004125168,57.60982805119351],[-124.45153497314683,57.610191672933865],[-124.45138214525142,57.61049826416793],[-124.45131269909581,57.61071163569221],[-124.45135537675706,57.61089716486848],[-124.451871868592,57.61127439503394],[-124.45236343335536,57.61185206002051],[-124.45267304516398,57.61221901497774],[-124.45273854980731,57.612512464512825],[-124.45284084069301,57.612930818984495],[-124.45283173551798,57.61315386911952],[-124.45288192693965,57.613566007009226],[-124.45302725451825,57.61405887722276],[-124.45322560440137,57.61453554701691],[-124.45342180950662,57.61506489701234],[-124.45350440569176,57.61550432783136],[-124.45340205527917,57.61595953739155],[-124.4533208410456,57.616307340586374],[-124.45315771889554,57.61660932970479],[-124.452926872467,57.61692846850052],[-124.45273380728756,57.61719422228373],[-124.45263986400421,57.61744319380231],[-124.45234128467197,57.61777948144766],[-124.45210195045094,57.61794713149879],[-124.45104237859005,57.618095080646455],[-124.45060572704362,57.618170704347264],[-124.45006601874499,57.61830791665222],[-124.44974390811436,57.61855308998341],[-124.44961774347497,57.61887233014419],[-124.44963581464422,57.619454547602736],[-124.44953186383997,57.61989628094684],[-124.44964130553751,57.62039546553269],[-124.44988608914319,57.620658500428334],[-124.45005243321663,57.6211493808901],[-124.45024939176021,57.6215576365522],[-124.45051871743088,57.62198916816592],[-124.4506080468711,57.62221225236547],[-124.45072195483118,57.622602713305504],[-124.45073789966361,57.62287876485779],[-124.45072291357084,57.623245287585114],[-124.45080183007636,57.623774392643355],[-124.45095757537635,57.62416646546073],[-124.4512097966164,57.62465835177824],[-124.45148951967748,57.62514383142464],[-124.45182830432353,57.62556832493894],[-124.45216175543949,57.625867157970504],[-124.4524217072443,57.626119152401785],[-124.45325613812355,57.62656514208147],[-124.45386467252585,57.6272080953437],[-124.45433518722243,57.62769131457763],[-124.45448633985646,57.62809454442096],[-124.45458345229989,57.628281832738296],[-124.4550738671694,57.62858585717763],[-124.45521982492211,57.62880847930443],[-124.45561896401736,57.62919329808854],[-124.4560307458575,57.629730774626466],[-124.45593401375551,57.62999654003414],[-124.45594283463305,57.63039698541267],[-124.45607955272182,57.63069239044108],[-124.45615042506,57.6311126244038],[-124.45632621364874,57.63137484318216],[-124.45660043395772,57.631638210561135],[-124.45708892255632,57.63219676509786],[-124.45724629593519,57.63234550561897],[-124.45734236696224,57.63271332711124],[-124.45767390663775,57.63316463640465],[-124.45761305490133,57.633424093828694],[-124.45767823357728,57.63362446495647],[-124.45749231258347,57.63386788551171],[-124.45754952464914,57.63405807117142],[-124.45750828574481,57.634401863354746],[-124.45755155794748,57.634677113777954],[-124.45756496114792,57.63496547285003],[-124.45757323744445,57.63507098207169],[-124.45765311557105,57.635373573407826],[-124.4577761668447,57.63559368368714],[-124.4578327896958,57.63579844097418],[-124.45789036682014,57.63603124471153],[-124.45796851552896,57.63637642960365],[-124.45803743390076,57.636588058756715],[-124.45813700387565,57.63671593923107],[-124.45819745863258,57.636878127492636],[-124.4583032394365,57.637368296893804],[-124.45842206620702,57.63758947903531],[-124.45853037583562,57.637811659945235],[-124.45863035396772,57.63803262229327],[-124.45871986022964,57.638253462572926],[-124.45879679981785,57.63847415639903],[-124.4588612181192,57.63869358290971],[-124.45891311490962,57.63891174212241],[-124.45895039531175,57.63912860964697],[-124.45897305907074,57.639344185495055],[-124.4589811515396,57.63955734878879],[-124.45896624810047,57.63976912279907],[-124.45891559772295,57.639983844630024],[-124.45883143133263,57.64019817599273],[-124.4587178922028,57.640413286524094],[-124.45857712018272,57.640628079673334],[-124.45841334993641,57.640841483292924],[-124.45822662672217,57.641052376410826],[-124.45802318887786,57.64126195307087],[-124.45780522221581,57.64146799584513],[-124.45757696179982,57.64166943262528],[-124.45733840754897,57.64186626335541],[-124.4570937490231,57.64205853684441],[-124.45684517238702,57.64224403572018],[-124.45659896222595,57.64242283328146],[-124.45634259531572,57.64259366197895],[-124.4560594499295,57.64275296349004],[-124.45575562775771,57.64290529455046],[-124.45543326930311,57.64304955858744],[-124.45509647286696,57.64318804616716],[-124.4547535265157,57.643323096834266],[-124.45440228963977,57.64345580695035],[-124.45405105030261,57.64358851615057],[-124.4537039983171,57.64372127340948],[-124.45336104217317,57.64385632053439],[-124.45206142832973,57.6449367503798],[-124.45176786416606,57.645093678712215],[-124.45148650083917,57.645259720655595],[-124.45121333167454,57.64543034368629],[-124.45095250085171,57.645606717807304],[-124.45069171345732,57.645781970554886],[-124.45043711700268,57.64595953821146],[-124.4501783280853,57.64613705632132],[-124.44994640531564,57.64632386017505],[-124.44971243108762,57.64650951821568],[-124.44946811690988,57.64669169043669],[-124.44923204298694,57.64687732313735],[-124.44922105925833,57.64704316559978],[-124.4491901637777,57.64723456751306],[-124.44932468377571,57.64773742244339],[-124.4495289483763,57.64791924491247],[-124.44969505920147,57.64806024858257],[-124.44983559995066,57.648416266685516],[-124.44996852757231,57.64865108123551],[-124.45030868219442,57.648944394555414],[-124.45064120956492,57.64916808910507],[-124.45106770473443,57.6494007329567],[-124.45131626154811,57.64957634270037],[-124.45171280346808,57.64977274811228],[-124.45201615034199,57.64999273343257],[-124.45229627863212,57.65037056802609],[-124.45262965477586,57.650574081787376],[-124.45311775475986,57.65083883949743],[-124.45355602127457,57.65114338443432],[-124.45402233816904,57.651531241510334],[-124.45453850495048,57.65187930774274],[-124.45497848725803,57.652142375100766],[-124.4553570235156,57.65242154515081],[-124.45571775062122,57.65272629918645],[-124.45600812920995,57.6528541667214],[-124.45634118157204,57.65306663878875],[-124.45658446013518,57.65321862704296],[-124.4569059115771,57.65335582647834],[-124.45707298728055,57.65347440363353],[-124.45727109027597,57.653551849374125],[-124.45743953801224,57.65363679912238],[-124.45768378351498,57.65376524655697],[-124.4578525983701,57.653841228602865],[-124.45800798263616,57.65383518943171],[-124.45828608255401,57.65390459439574],[-124.45863957502404,57.653975998438234],[-124.45899352191854,57.65408777834128],[-124.45939557852742,57.65415077445459],[-124.4598016947152,57.65411400922563],[-124.46037047794844,57.65430454317324],[-124.46084569817002,57.65447604347783],[-124.4614224191965,57.65483263697537],[-124.4619434802766,57.65506298070865],[-124.46292702994842,57.65536598121829],[-124.46368576459632,57.655474599691885],[-124.46463369125483,57.655519244651224],[-124.4655478242631,57.655621805322404],[-124.46680090094975,57.65605238059444],[-124.46772413159754,57.65650043209487],[-124.46849501699386,57.65682784237783],[-124.4687302680662,57.6570245723291],[-124.46889268239237,57.657259709249814],[-124.46905467719019,57.65766081300041],[-124.46961399940335,57.65808781932967],[-124.47068985673351,57.658029606443186],[-124.4718136691978,57.658081838874985],[-124.47256306069822,57.658216090827786],[-124.47350786218132,57.65849613581866],[-124.47457560456785,57.659055706020375],[-124.4751683501499,57.65933168050848],[-124.47622530945118,57.65969149826893],[-124.47675482051052,57.65992412308382],[-124.47703227579014,57.66011571673536],[-124.4773147836295,57.66018176761932],[-124.47756339843882,57.660256399452884],[-124.47796003043037,57.660404504800574],[-124.47835342144901,57.660633314745766],[-124.4790464609129,57.66091939622234],[-124.47987004685261,57.661296688076895],[-124.4806772417834,57.6616648151348],[-124.48188255688312,57.662145161923064],[-124.48232341642068,57.66244627609018],[-124.48264781501497,57.663141919337974],[-124.48329769525076,57.663669713039525],[-124.4841203060287,57.664073881476554],[-124.48498257321226,57.664325983764634],[-124.48576136737223,57.66456815395486],[-124.4864452961918,57.664665691296015],[-124.4874813720659,57.6647672496737],[-124.48855099108212,57.66486918293252],[-124.48943830581683,57.66491519830771],[-124.49069560997916,57.664938512881285],[-124.49176056523838,57.66494728806886],[-124.4927101495068,57.6648515692413],[-124.49364403029766,57.6647814578533],[-124.49456189752173,57.66474480069485],[-124.49547954019579,57.66471374179139],[-124.49639499621574,57.6646848945637],[-124.49731245793281,57.66465830665148],[-124.49822982941511,57.664633954230155],[-124.50008966044265,57.6655925577748],[-124.50116189128434,57.66552396094877],[-124.50180147044969,57.66547176615464],[-124.50246075571854,57.66539848411048],[-124.50340087601369,57.665329495929875],[-124.50471943285054,57.665182912652135],[-124.50536178987637,57.6650600822689],[-124.50609438092063,57.66498873150743],[-124.50671881154007,57.66489484940468],[-124.50754532393042,57.66483464311325],[-124.5083946741398,57.66467376075229],[-124.50924042004702,57.66455096090904],[-124.5101586419855,57.66455793541689],[-124.51107682016973,57.664566024484294],[-124.51199508687674,57.66457186532541],[-124.51805258890512,57.664699261742406],[-124.51943657542232,57.66507584811544],[-124.51986397137316,57.665354255269605],[-124.52090809997546,57.66659388517133],[-124.521549131547,57.66720212974591],[-124.52179010239999,57.667314720537554],[-124.52207392379829,57.667350411076264],[-124.52265253855921,57.667301920430184],[-124.52335451885543,57.66737031016512],[-124.52409549836631,57.66751426636614],[-124.52490133564099,57.667769962068654],[-124.52541702150165,57.668152506033536],[-124.52595717763259,57.66871474834326],[-124.52625735637484,57.669138624730124],[-124.52661226423285,57.66950367418474],[-124.5273451935682,57.670017592472036],[-124.52774021729134,57.67043018512549],[-124.52843699965861,57.670741838844194],[-124.52917225971733,57.67092719529984],[-124.5299926550123,57.67113480010478],[-124.53071871753767,57.67134135282018],[-124.5315565981625,57.67153119908192],[-124.53226803496258,57.671682631130984],[-124.53324696345938,57.672075886827066],[-124.53450761414508,57.672019198421445],[-124.53553949444199,57.672020524470106],[-124.53636006280283,57.67217089865787],[-124.5372781448383,57.672240481207325],[-124.53827322112285,57.67227165767394],[-124.53917918619591,57.6722749292034],[-124.5402247116972,57.67230328338504],[-124.54133585705551,57.67226170269077],[-124.59097560177018,57.68301652905516],[-124.5937603226292,57.6836191746061],[-124.59386036338917,57.683637058185845],[-124.59499270259117,57.68370963350681],[-124.5961380278955,57.68371505172552],[-124.59693287013424,57.68372347558313],[-124.59793114215425,57.68373404865734],[-124.5991142818093,57.68379479089507],[-124.59989239014294,57.68380189852793],[-124.59999745833035,57.68379740226665],[-124.60033363489161,57.68378413464839],[-124.60070189132882,57.683754383919904],[-124.60112274327736,57.68372070211415],[-124.60148088535392,57.683680749649454],[-124.60197382788733,57.6836265195782],[-124.60242424520128,57.68358753871245],[-124.60278489582424,57.68353639507724],[-124.60319357414433,57.68349136414888],[-124.60367623262401,57.68343141225326],[-124.60395426221686,57.68340182256076],[-124.60446632039609,57.68334105633595],[-124.60485591321014,57.68330142626973],[-124.6053063236849,57.6832624356145],[-124.60575652668443,57.68322904832385],[-124.60644149839447,57.683144302446934],[-124.60662876694364,57.68312945182832],[-124.60690741113622,57.683083041258435],[-124.60731896082606,57.683016721078694],[-124.6077185035489,57.682934573618404],[-124.60813107516579,57.68289741843341],[-124.60854570191458,57.6828614049804],[-124.60896024544601,57.68282763218965],[-124.60937470583399,57.68279610006175],[-124.60978908315234,57.682766808597094],[-124.61020551581473,57.682738658826835],[-124.6106219066928,57.68271162872773],[-124.61103825582366,57.68268571830024],[-124.6114546043843,57.68265980656459],[-124.61187095237473,57.682633893520645],[-124.61228734091017,57.68260685818815],[-124.6127037288506,57.68257982154726],[-124.61312019837705,57.68255054163684],[-124.61638402882133,57.68256674155282],[-124.61661628040751,57.68258374636543],[-124.61697448467157,57.68259870205735],[-124.61734107785851,57.682613744369256],[-124.61760684378199,57.68263221877622],[-124.61799481862879,57.68263626838546],[-124.61840870584467,57.68267759371842],[-124.61898444405415,57.682710513085645],[-124.61958917553139,57.6827538248596],[-124.62021677287954,57.68280297915789],[-124.62109957357534,57.68287273064474],[-124.62192621762202,57.68298674817571],[-124.62373400244752,57.683178245509126],[-124.62462933900865,57.68330753824631],[-124.62570901245516,57.68350265829011],[-124.6263611216341,57.68339728339856],[-124.62715577839758,57.683352817799964],[-124.62775315709995,57.68336798071179],[-124.62843419676707,57.68333242272924],[-124.6291976759751,57.68327977215461],[-124.62976363686782,57.68329347936704],[-124.63037746868476,57.68331777193473],[-124.6310074705331,57.68335904990796],[-124.6316222772513,57.68335643302161],[-124.63213903165857,57.68339653533485],[-124.6325914217517,57.6834180285262],[-124.63313838081208,57.68349320238621],[-124.63381662466263,57.683534964874156],[-124.63450708263183,57.68364525555132],[-124.6349908082889,57.6837287409116],[-124.63568304706685,57.683848015005154],[-124.63616472107603,57.68393035349832],[-124.63685817890948,57.684015991796464],[-124.63717929781292,57.68407088147878],[-124.63774244803447,57.684163023878774],[-124.63814032074467,57.684242250243784],[-124.63848596469437,57.68437364447725],[-124.63882515788889,57.684509457116626],[-124.63915802134179,57.684646325241026],[-124.6394844340766,57.68478761187148],[-124.63980451704313,57.68492995408362],[-124.64011609230039,57.6850755723706],[-124.64041915983115,57.68522446679359],[-124.64071375988975,57.685375516420486],[-124.64099335881218,57.68553538269489],[-124.64125799686404,57.68570294472313],[-124.64151190897053,57.68587712463459],[-124.641750900387,57.686057879473346],[-124.64198130338976,57.686244152850925],[-124.64220315818586,57.686434823821784],[-124.64241856212037,57.68662991393111],[-124.64262545798181,57.68682828072218],[-124.64282808074402,57.68702884622917],[-124.643028527805,57.68723163196361],[-124.6432247419268,57.687435495454366],[-124.64342305561657,57.68763938017823],[-124.64361927397877,57.687843243163705],[-124.64381976978191,57.68804490686227],[-124.64402240539097,57.688245470774746],[-124.64422931849603,57.68844383536565],[-124.64444268697596,57.688637780088634],[-124.64466243052975,57.68882954690353],[-124.64489274427793,57.68901917869954],[-124.64512939310848,57.689207753503624],[-124.6453681418501,57.68939634937214],[-124.64560899053454,57.689584966294035],[-124.64585197932219,57.689772483259205],[-124.646090695108,57.68996219892549],[-124.64632521809916,57.69015187131948],[-124.64655341051844,57.690342600027876],[-124.64677317467334,57.69053436365288],[-124.64698233263499,57.690729382808364],[-124.64717886683633,57.6909253941219],[-124.6473605591921,57.69112573922889],[-124.64752539202966,57.691328154772876],[-124.64767122735734,57.69153374040158],[-124.64779592714555,57.691743595765764],[-124.64790162885039,57.6919566213397],[-124.64798833217745,57.69217281717083],[-124.64806023226204,57.692392226120155],[-124.64811946666119,57.69261374862176],[-124.6481659950991,57.692838505695995],[-124.64820199524311,57.693064276762215],[-124.6482337602162,57.6932911260539],[-124.6482591921627,57.693519032167195],[-124.64828042882597,57.693746895510564],[-124.64830162568465,57.69397587990361],[-124.64832496068017,57.69420376474632],[-124.64835249162255,57.69443169244698],[-124.64838425864637,57.69465854199886],[-124.64842445754114,57.694884356208384],[-124.64847526643794,57.6951069144621],[-124.6485366054012,57.69532845875571],[-124.6486127505066,57.6955467898677],[-124.64870575984764,57.695763050176815],[-124.64881567374557,57.695976118640395],[-124.64894447025766,57.69618937962962],[-124.64909210966573,57.69640395409585],[-124.64925657442089,57.69661757857172],[-124.64944000279195,57.6968291533762],[-124.64963827915899,57.69703639364299],[-124.64985567971236,57.69723710005295],[-124.6500880086434,57.697431229750705],[-124.65033534606869,57.697616540638],[-124.65059983005273,57.69779193298841],[-124.65087948256075,57.697954022302405],[-124.65117430349272,57.69810280847762],[-124.65150123696289,57.6982339782238],[-124.65186661696397,57.69834647433934],[-124.65226612734025,57.69844361684016],[-124.65269121587833,57.6985298041018],[-124.65313131220428,57.6986071712426],[-124.653580002162,57.69867901717097],[-124.65402663564441,57.69874971925786],[-124.65446689679177,57.69882259793675],[-124.65488811739702,57.698899767476746],[-124.65528594187408,57.69898566951147],[-124.655651858416,57.69908358212466],[-124.65597319883892,57.69919561989358],[-124.65624770567605,57.699326245912566],[-124.65646263084646,57.69947981686008],[-124.65662652580347,57.6996519340895],[-124.65675847241064,57.69983718419793],[-124.65684465919605,57.700010756108824],[-124.65685641200082,57.70003442500361],[-124.65692877658664,57.70024262065844],[-124.65697568523916,57.7004584081715],[-124.65700129411012,57.70068295112682],[-124.6570056824574,57.7009140075152],[-124.65699518433608,57.70115052013794],[-124.656969879085,57.70139024696724],[-124.6569361009401,57.70163213079368],[-124.65689384973311,57.701876171612525],[-124.65684534300428,57.702119027644585],[-124.65716257826347,57.702524832628086],[-124.65733542881085,57.70274077542379],[-124.65754930331748,57.702924612538226],[-124.65796363420489,57.703079080188104],[-124.65829711839271,57.70326412759171],[-124.65859033975171,57.70345998072102],[-124.6587029379148,57.7037179257202],[-124.65893380159586,57.70395576078556],[-124.65908659083888,57.704205140972064],[-124.65922958912657,57.704553106933375],[-124.65924461798637,57.704958091845704],[-124.65936792369025,57.705447157669965],[-124.65949791690352,57.705688457048794],[-124.65964152063997,57.70601960776341],[-124.65964699863902,57.70622039770389],[-124.65956828912361,57.70619044450922],[-124.65957828167792,57.70638230878133],[-124.6594876330279,57.706511476727925],[-124.65931636569829,57.7066645002538],[-124.65915123355127,57.70682207136969],[-124.65900486757208,57.706983196507366],[-124.65887303110992,57.70714895427184],[-124.65874748915222,57.707314775657395],[-124.65862400488737,57.70748173921525],[-124.65850257833144,57.70764984495205],[-124.65838119047217,57.70781682958325],[-124.65825350577009,57.70798375038096],[-124.65811960371119,57.70814836528364],[-124.65797738563047,57.7083106530173],[-124.65782059538962,57.708469428762385],[-124.65764717402216,57.70862355018428],[-124.65744266978399,57.70876614224529],[-124.65716626429246,57.70886426982014],[-124.65684124213243,57.70891256133094],[-124.65651249984947,57.70894735722725],[-124.65618957478567,57.70899566842089],[-124.65588260119505,57.7090676905914],[-124.6555696493643,57.709130680003206],[-124.65524042556576,57.70917892501567],[-124.65498080062379,57.70927721844995],[-124.65490936124593,57.7094559216121],[-124.65490084171113,57.70963638488919],[-124.65489655935683,57.70981576978044],[-124.65488170369738,57.70999729023251],[-124.65484453499118,57.710097841425856],[-124.65452722457206,57.71028301993942],[-124.65426699168171,57.71039812742515],[-124.65401918994294,57.71051784640628],[-124.65382087815905,57.71066273913467],[-124.65366817836441,57.710823795012246],[-124.65348443512931,57.71097219960595],[-124.65321196116,57.71107708793275],[-124.65290896281637,57.71115475113589],[-124.6526100009591,57.71123694042398],[-124.65231103780218,57.71131912904421],[-124.65202434625627,57.71141041327476],[-124.65176619677099,57.711525537323276],[-124.65154510423065,57.71166122371826],[-124.65131989248717,57.71179462499582],[-124.65106791465412,57.711913174876635],[-124.6508016036146,57.712021485504906],[-124.6505209194479,57.71212067781468],[-124.6502260223346,57.71220626761738],[-124.64991699256021,57.71227601276735],[-124.64960194545246,57.712337845875595],[-124.64928483853474,57.712398535823226],[-124.64896785077974,57.71245586194493],[-124.6486488433668,57.712510923862624],[-124.64832971478698,57.71256934808604],[-124.64801474281681,57.71262893539183],[-124.64770974281014,57.71270320234172],[-124.6474331228569,57.71280579408164],[-124.64728339550132,57.71288276616255],[-124.64693118650491,57.71304402128166],[-124.64666275678043,57.71315230228225],[-124.64637591728558,57.71324693752643],[-124.64610344735165,57.71335069044446],[-124.64587824649942,57.71348296166807],[-124.64571516762832,57.71363941749346],[-124.64561243357865,57.71381106851853],[-124.64545770768717,57.71396873090054],[-124.64520157948924,57.71408498492247],[-124.6448985004063,57.714163751060966],[-124.64458342936258,57.71422557235237],[-124.64427029541503,57.71429189846637],[-124.64394755033267,57.71433345393302],[-124.64360946100742,57.714334479897836],[-124.64327367175329,57.71432992136812],[-124.64293957910448,57.71433659371794],[-124.64260879868992,57.714367970742245],[-124.64228572904894,57.71441849035559],[-124.64196867347856,57.714476920872755],[-124.64165759152849,57.71454438336178],[-124.64135660032957,57.714623162948754],[-124.64107591236868,57.714721214480186],[-124.6408156885924,57.71483405399577],[-124.64056979322334,57.71495713293644],[-124.64029115939502,57.71505632539128],[-124.6399820476724,57.715127168591344],[-124.6396891618976,57.71521387775948],[-124.63942477296361,57.71532555048621],[-124.63918302750423,57.71544979103249],[-124.63897841671248,57.715592355532706],[-124.63880908388994,57.715746496464455],[-124.63862933533454,57.71589828735158],[-124.63847449103129,57.71605818394675],[-124.63835298772143,57.71622515157692],[-124.63823769971029,57.716394425872394],[-124.63811619427409,57.71656139333963],[-124.6379946473746,57.71672948174722],[-124.63787104071477,57.716896427472925],[-124.63773701834637,57.717061023186325],[-124.6375801068186,57.71721977631576],[-124.63738585467178,57.71736580956315],[-124.63716879375308,57.717503757948414],[-124.63697042117178,57.71764750540811],[-124.6368030892273,57.717803907721006],[-124.63657577061397,57.717935021090014],[-124.6363031995582,57.718039875355124],[-124.63602449136553,57.718140180161335],[-124.63574170477587,57.718237078101104],[-124.63545282161695,57.7183283054847],[-124.63515990065484,57.7184150049122],[-124.6348995933124,57.71852895424049],[-124.63460666952689,57.7186156524622],[-124.63430155438515,57.71869101001045],[-124.63400858746203,57.71877882795029],[-124.63373196691487,57.718879149641715],[-124.6334552638453,57.718981712817516],[-124.63318061793123,57.71908541809892],[-124.6329080291647,57.71919026549884],[-124.63263543888615,57.71929511234885],[-124.63245090198917,57.71934591640373],[-124.63208819514634,57.71950366170906],[-124.63181358226672,57.719606243184174],[-124.63152871527713,57.719701989578446],[-124.6312276619095,57.71978074655532],[-124.63092862531553,57.7198617665893],[-124.6306315648426,57.71994617072079],[-124.63033458428477,57.72002833214134],[-124.63003340394121,57.72011044950929],[-124.62974453333084,57.72020054359146],[-124.62948423801737,57.72031336145544],[-124.62925683827838,57.720445583616645],[-124.62903561278735,57.72058123362179],[-124.62884546825792,57.720728419278224],[-124.62868850416886,57.72088716244286],[-124.62854191322894,57.7210493771288],[-124.62839951964621,57.721211635123666],[-124.62826544074014,57.72137622194461],[-124.62813136066656,57.72154080865606],[-124.62795779899507,57.72169377212694],[-124.62775525211595,57.721835220861905],[-124.62765657224324,57.7220080238141],[-124.62752260939716,57.722169246927564],[-124.6272827582825,57.722296851408245],[-124.62705949693976,57.72243023456223],[-124.6268568612999,57.72257392408101],[-124.62666044082503,57.722719920616946],[-124.62642894015566,57.72284873164994],[-124.62612377454562,57.72292407068282],[-124.62582087015592,57.72299494667086],[-124.62560991065692,57.723136305251145],[-124.62543834933894,57.72329152948258],[-124.62527098547183,57.723446797059964],[-124.62511189564526,57.723605514634244],[-124.62495906204069,57.72376541840242],[-124.62482285963958,57.723929980370215],[-124.6246742224311,57.72408992741911],[-124.62446951015295,57.72423247070866],[-124.62421942388718,57.72435211377302],[-124.62393857842098,57.72445125096032],[-124.6236476014457,57.72454018931187],[-124.62335452360661,57.72462910522972],[-124.62307573247278,57.72472938344754],[-124.62285869959113,57.72486394629083],[-124.62268102485211,57.7250134966355],[-124.62239395359813,57.7251103231154],[-124.62208674390466,57.725183389144],[-124.62176964858757,57.72523952989042],[-124.62146037799548,57.72531145161982],[-124.62117346494485,57.72540379136822],[-124.62090693231106,57.72551316435738],[-124.62063628086742,57.72562025107255],[-124.62034125171068,57.72570465445932],[-124.62002003218302,57.72575850529012],[-124.61971902942659,57.72583387350309],[-124.61961227260697,57.72599649442932],[-124.61967458653456,57.726130596489746],[-124.61967895437137,57.72635605459515],[-124.61969129974614,57.72653561610643],[-124.6196973464134,57.72671511206602],[-124.61968865486647,57.72689557606173],[-124.61965694921527,57.727073557555094],[-124.61958749072855,57.72725002452255],[-124.61946376836339,57.72741695477479],[-124.61930673709625,57.72757568785645],[-124.61914138777396,57.7277320912368],[-124.61896566161734,57.72788502198037],[-124.61876506564434,57.72802872176069],[-124.61854375811518,57.72816435525039],[-124.61833076580832,57.72830231798098],[-124.61814049975833,57.72845061041197],[-124.61797720049822,57.72860815539011],[-124.61784099124755,57.72877158992395],[-124.61772141464462,57.728939683608395],[-124.61761019493007,57.729108985819785],[-124.61751354943192,57.729281804330085],[-124.61746717423236,57.729458511410755],[-124.61757235107342,57.72962670569457],[-124.6177878244132,57.72976577041325],[-124.61796072967118,57.72992009150455],[-124.61814215849688,57.73007113683554],[-124.61835767745407,57.730209079654685],[-124.6185839019336,57.73034152636611],[-124.61877809807781,57.73048821802313],[-124.61897871811347,57.730631611930846],[-124.6191985249119,57.73076735513405],[-124.61942903727301,57.730897602143536],[-124.61966811441037,57.73102345207503],[-124.61992650124742,57.73113828795701],[-124.62021078384646,57.73123432798489],[-124.62043702095721,57.73136677166637],[-124.62060570368409,57.7315221668855],[-124.62076590642549,57.73167971660998],[-124.62094731399796,57.73183187939637],[-124.62116499404154,57.731968718692976],[-124.62140836534897,57.73209236721996],[-124.62166676478213,57.73220719982986],[-124.62192306586454,57.73232201012342],[-124.62216211944154,57.73244897676921],[-124.62236914427604,57.73259018921063],[-124.62256122585825,57.73273797486581],[-124.62274482741178,57.73288791508945],[-124.62293481201509,57.7330356784337],[-124.6231375613155,57.73317908821295],[-124.62336806112123,57.73331044971777],[-124.62364158305866,57.733414220848374],[-124.62393894122394,57.7334980524598],[-124.62422979664902,57.73358742323903],[-124.62450114134174,57.73369341291352],[-124.62476170192616,57.733807140416566],[-124.62500723764701,57.73392968329995],[-124.62523140768386,57.734062097371044],[-124.62542350794082,57.73420987909128],[-124.6255709788307,57.734371776960174],[-124.62572487344197,57.73453037686565],[-124.6258999329663,57.734684710082234],[-124.62608141639915,57.73483574524772],[-124.62627994639885,57.73498022799443],[-124.62644871003415,57.73513449528403],[-124.62652215605551,57.73531020437129],[-124.6265639790187,57.73548895029497],[-124.62659740193882,57.735667609230276],[-124.62660768311089,57.735847149966624],[-124.62661376412134,57.73602664723084],[-124.62669149441557,57.73620015779422],[-124.62684321954389,57.73636097701885],[-124.62702895584783,57.73651093358604],[-124.62724030291355,57.736649940382684],[-124.6274069370276,57.73680530600498],[-124.62748463184202,57.736979937278356],[-124.62755174496677,57.737156701941444],[-124.62762099964215,57.73733236729224],[-124.62767127161098,57.73751007911519],[-124.62772578521508,57.737686713372966],[-124.62774661417737,57.737865241997056],[-124.62787290330526,57.738032525769356],[-124.62806507478567,57.73817918318813],[-124.62829138100606,57.73831161436163],[-124.62846020842849,57.73846475854549],[-124.6284767593455,57.738645485837154],[-124.628472348254,57.738824874894526],[-124.62853736898016,57.73900161765396],[-124.62861717384104,57.73917627035783],[-124.6287777931809,57.7393820382955],[-124.62848440881152,57.73947657206736],[-124.62811319744436,57.739399837038775],[-124.62805021961435,57.73957189154599],[-124.62778576151861,57.739911203119625],[-124.62764955394947,57.74007464952188],[-124.62752372484542,57.740241567637455],[-124.6274125157864,57.74041087992768],[-124.62732634739997,57.74058493722688],[-124.62726114141587,57.740760332960896],[-124.62718753321509,57.74093564172356],[-124.6270930016853,57.74110849094238],[-124.6269901490886,57.74127901104481],[-124.62689351536537,57.7414518384337],[-124.62680738296268,57.74162477452372],[-124.62673377097238,57.74180008318218],[-124.62666015829899,57.7419753918297],[-124.62656772222496,57.74214826259983],[-124.62645440279046,57.742317552648956],[-124.6262952792402,57.742475153500806],[-124.62598675344988,57.742580740229606],[-124.62578066103973,57.74270084535247],[-124.62547125514976,57.742772777657365],[-124.62516798641057,57.74284925876618],[-124.62487279203238,57.742934794698286],[-124.6245756590659,57.743015823999606],[-124.62424267510646,57.74304265007844],[-124.62391344251635,57.74308185045165],[-124.62358824690442,57.74312557780464],[-124.62326305053976,57.74316930436215],[-124.62293970875855,57.74321977822816],[-124.62261455170733,57.7432623821507],[-124.6222912491477,57.74331173339157],[-124.62196790484931,57.74336220489572],[-124.62164468239835,57.74340931246743],[-124.62132137731456,57.74345866135142],[-124.62100408655277,57.74351592231221],[-124.6206907093949,57.74358107354909],[-124.62038330527335,57.74365525799022],[-124.62007594089528,57.74372832067547],[-124.61975860502122,57.743786699720864],[-124.61943541715388,57.743832680879926],[-124.61910815031499,57.74387525436725],[-124.61878294231306,57.74391896997294],[-124.61845962913026,57.743968311906286],[-124.61814228874293,57.74402668709843],[-124.61782688387636,57.744089567619184],[-124.61751357853598,57.744152469289354],[-124.6171961120302,57.74421420537379],[-124.61687679018144,57.7442691925065],[-124.61655557209696,57.74431855172138],[-124.61622821567332,57.744363360220106],[-124.61590106384959,57.74440256267199],[-124.61557201618132,57.744436137151716],[-124.61523909550334,57.74446069856887],[-124.61490242536135,57.74447288374986],[-124.6145682256293,57.74447500058836],[-124.61423204864218,57.74447373149415],[-124.61389587167767,57.74447246154789],[-124.61355977702543,57.74446894865461],[-124.6132236412809,57.7444665559572],[-124.61288738208464,57.744467525549894],[-124.61255120522063,57.74446625219582],[-124.61221754081612,57.74445378949845],[-124.61189355600843,57.74440666144566],[-124.61158950734547,57.74433170434131],[-124.6112633825756,57.74428567381218],[-124.6109393179552,57.744240785529556],[-124.61061311229841,57.74419699549864],[-124.61028690739782,57.74415320466733],[-124.60996066200218,57.744110534081685],[-124.60963441734351,57.744067862695445],[-124.60930825596279,57.74402294841727],[-124.60898423719904,57.74397693432406],[-124.60866244365182,57.743927578341136],[-124.6083408161415,57.74387373739898],[-124.60801918954789,57.74381989567984],[-124.607699581784,57.74376831732446],[-124.60737564981835,57.743720057223776],[-124.60704722823338,57.74367959952382],[-124.60671633468776,57.743649208346085],[-124.60638280349549,57.7436333678486],[-124.6060465929077,57.74363319905487],[-124.60571194496524,57.74364762506557],[-124.60537898344214,57.74367328276083],[-124.60502897944433,57.743648293803005],[-124.60473047332708,57.74376515211233],[-124.60441702463197,57.743831385960306],[-124.60411168708244,57.743905554811256],[-124.60395890195632,57.744002636938],[-124.60351916748756,57.74407426826764],[-124.60325657027468,57.74418589407641],[-124.60303099418888,57.744319217469204],[-124.60284264654753,57.74446863342235],[-124.60265017916721,57.744615762779425],[-124.60240207243685,57.744733147093754],[-124.60206712295708,57.74475541123477],[-124.6017310683885,57.74475074732557],[-124.60141567167668,57.744812467822534],[-124.6011163730411,57.744893422565966],[-124.6008090443882,57.744964198603384],[-124.60056895834188,57.7450917575673],[-124.6003372731758,57.745219404783455],[-124.59999352339595,57.7453088598518],[-124.59973471162094,57.74537453817984],[-124.59942931084262,57.745449817407966],[-124.5991218497799,57.74552395270769],[-124.59881447067775,57.745595845211575],[-124.59850498975648,57.74566771481184],[-124.59819554925983,57.74573846265085],[-124.59788614921561,57.7458080887289],[-124.59757271319323,57.74587318549096],[-124.59724742145791,57.745917969425264],[-124.59692801454577,57.74597402966851],[-124.59661054075609,57.74603459554815],[-124.59629718397423,57.7460974472227],[-124.59598370114506,57.74616366129255],[-124.59567429354227,57.746233282240446],[-124.59536690210844,57.74630516680552],[-124.59505946780892,57.746378171707015],[-124.59475199061615,57.746452296945094],[-124.59445266471084,57.74653323678239],[-124.59417371867971,57.74663121426211],[-124.59379971094002,57.74679883702753],[-124.59999871000687,57.74981840667995],[-124.6785101433718,57.7879927934391],[-124.67817021691965,57.78802754109613],[-124.67799484205884,57.7881693479122],[-124.67787927640681,57.78834539526815],[-124.67778906449105,57.788518330514286],[-124.67772186787167,57.78869485945192],[-124.67766514683213,57.788872614222825],[-124.67761894080525,57.78905047372478],[-124.67757904370072,57.789228396078414],[-124.67753700379762,57.78940741862188],[-124.67747611383315,57.789584010428975],[-124.67737335681373,57.789754577689074],[-124.67722670766909,57.789916857117205],[-124.67706338916344,57.79007448431389],[-124.67691260971748,57.790234479304985],[-124.67684961231173,57.790411050013994],[-124.67683284528327,57.79058920290814],[-124.6769362359523,57.79076070252896],[-124.6770079221101,57.79093637225775],[-124.67707119603932,57.79111195816508],[-124.67714708996036,57.791287669787025],[-124.67724417424098,57.791459106430224],[-124.67731165665258,57.79163473421553],[-124.67736854477556,57.79181249949215],[-124.67743178255296,57.791989206499814],[-124.67748660779073,57.792165829721135],[-124.67757944999315,57.79233834549484],[-124.67767864224362,57.79250980294495],[-124.67777358948226,57.792682339585774],[-124.67784738651082,57.792858030139406],[-124.677929754694,57.793029319960006],[-124.67806069687505,57.793195485732994],[-124.67819798953703,57.79336059309042],[-124.67835440999954,57.79352028312647],[-124.67853217960987,57.793671213336765],[-124.6787375301027,57.793815688656565],[-124.67895565949388,57.79395580473434],[-124.67917382975448,57.794094799351186],[-124.67938350953861,57.794235952206506],[-124.67956989645853,57.79438135918967],[-124.67966517093699,57.79454492581691],[-124.67964183043217,57.79473086492156],[-124.67968821701591,57.794908525187374],[-124.67975147084587,57.79508523163466],[-124.67980837566601,57.79526299647614],[-124.67986532025257,57.79543964020077],[-124.67991591571345,57.79561734233085],[-124.6799517480163,57.795796019242815],[-124.67994967849036,57.79597544096362],[-124.67996864401188,57.796155071794765],[-124.68004245805402,57.79633076173559],[-124.68008253791166,57.79650835942703],[-124.68008046896861,57.7966877812771],[-124.68007415368734,57.79686828247281],[-124.68008470602402,57.797047829822795],[-124.68010145148558,57.79723080329862],[-124.68015843963789,57.79740632611768],[-124.68032361326436,57.797557129085284],[-124.68055236656639,57.79769510531943],[-124.6806771041016,57.79785896433556],[-124.68074032830272,57.79803679195806],[-124.68081414961982,57.7982124817994],[-124.6808289523226,57.79839094999183],[-124.68082474397913,57.79857147242358],[-124.68082053559537,57.798751994887695],[-124.68076178878778,57.79892748960913],[-124.68061083279736,57.79909197472137],[-124.68048928779402,57.79925787341326],[-124.68048317011876,57.79943276944802],[-124.68054421391466,57.79961281880071],[-124.6806222056094,57.799789671951004],[-124.68078098845511,57.80000321614654],[-124.68082750450571,57.800177513559234],[-124.6808548912854,57.8003572285923],[-124.68088862878582,57.800535885201775],[-124.68092026284432,57.80071452094176],[-124.6810305076751,57.800932069016724],[-124.68121464706705,57.80102249748571],[-124.68146937547395,57.80114054291934],[-124.68174136679927,57.80124642247674],[-124.68202423118979,57.80134231568489],[-124.68232221527137,57.801427143081185],[-124.68264237422925,57.80147966565971],[-124.68297134075432,57.80152105959459],[-124.68328701984692,57.80158138682542],[-124.68358068364527,57.801669533104004],[-124.68386129558951,57.80176988611845],[-124.68413333727541,57.801874639712445],[-124.68440319843377,57.80198161418791],[-124.68467738608544,57.802085266394805],[-124.6849580431253,57.80218449600131],[-124.68524084457063,57.80228262471592],[-124.68552368655654,57.802379631704746],[-124.68580434801243,57.80247885955235],[-124.68608501094482,57.802578086816915],[-124.68636138951634,57.802679514153],[-124.68663336663053,57.80278650499042],[-124.6868967736261,57.80289789662752],[-124.68715803926297,57.803010388095274],[-124.68742144937109,57.80312177871698],[-124.68769343268033,57.803228767431314],[-124.68797414515839,57.803326869643904],[-124.68827437917636,57.80340834123168],[-124.68859896596764,57.80345528543387],[-124.68893037193084,57.803487716380786],[-124.68925947974398,57.80352573141973],[-124.68957058831123,57.80359721367522],[-124.68966994256243,57.80376642181843],[-124.68964508626786,57.80387608561584],[-124.68964906341053,57.80412510240879],[-124.6896849498968,57.80430377820924],[-124.68973770748111,57.80448149892098],[-124.68979892045265,57.80465818151516],[-124.68991725342612,57.804826455283504],[-124.69000172867753,57.80500000268358],[-124.69006083971172,57.80517666449961],[-124.69012415935008,57.805353367814675],[-124.6902128837366,57.805525835527675],[-124.69031427213248,57.80569730653748],[-124.690400855215,57.80587087457884],[-124.69044516318033,57.806049633456034],[-124.69046207967368,57.806229243850346],[-124.69047268407512,57.80640879205026],[-124.69047697629446,57.80658827805738],[-124.6904791644503,57.80676774335525],[-124.69048135262695,57.806947208685244],[-124.69048354082443,57.80712667404741],[-124.69048993731151,57.807306180924364],[-124.6905405987437,57.807483881109384],[-124.69061238004319,57.8076595464203],[-124.69068626617529,57.80783523246141],[-124.69073907233708,57.80801183226179],[-124.69075809529392,57.80819146370833],[-124.69075186810456,57.808370846340914],[-124.69072459881671,57.80855002163139],[-124.69067422183984,57.80872784768642],[-124.69060077577775,57.80890320333676],[-124.69051267725565,57.80907617150691],[-124.69041409564288,57.80924791479412],[-124.69030923931008,57.809418474662706],[-124.6902001735058,57.80958899298596],[-124.69009114565654,57.8097583901058],[-124.68996119086003,57.809924216240404],[-124.68982079137328,57.810087696229786],[-124.68969921249371,57.81025472631375],[-124.6895922458212,57.810425265034496],[-124.68949993048375,57.81059819128562],[-124.68942647531982,57.81077354661519],[-124.68935512380989,57.810948922694216],[-124.6892900457102,57.81112548219124],[-124.6892459715997,57.811303370444115],[-124.68924394543804,57.81148279508702],[-124.68931362393248,57.81165844104172],[-124.6894341200531,57.81182561603397],[-124.68957153032267,57.81199071470281],[-124.68968988528785,57.812158989908305],[-124.68976171047653,57.81233353535541],[-124.68981658407952,57.81251127821674],[-124.68986724933097,57.81268897958464],[-124.68991581061556,57.81286666021445],[-124.6900024083235,57.81304022976115],[-124.6901059593717,57.81321060182216],[-124.6901439611415,57.81338929987064],[-124.69018398987028,57.81357026098112],[-124.69041759151938,57.813693689009035],[-124.6905976089964,57.81384462685111],[-124.69069687806935,57.81401719940519],[-124.6908896810012,57.81416377673644],[-124.69114885424268,57.81427848318497],[-124.69128211080071,57.814442417880294],[-124.69141532961042,57.814607473617635],[-124.69166811605461,57.8147243592218],[-124.6919597194482,57.81481470971121],[-124.69220385742324,57.814938238343366],[-124.69239452747334,57.81508591406191],[-124.69256812915472,57.815240150760516],[-124.69269500377891,57.815406264371404],[-124.69284732901001,57.815567020589135],[-124.6930444351525,57.81571139412924],[-124.69324360856336,57.81585690924647],[-124.69344921391844,57.815999122717564],[-124.69362921569181,57.81615117795273],[-124.6936845475489,57.816377150097516],[-124.6936275034033,57.81650444408239],[-124.69353519168838,57.81667737419097],[-124.69344708846391,57.81685034565464],[-124.69337991466028,57.81702688750479],[-124.69333795763379,57.81720479886326],[-124.69332121773684,57.81738407975469],[-124.69331921063866,57.81756350555385],[-124.69331720352142,57.81774293138524],[-124.6933004632869,57.81792221237097],[-124.69325846603377,57.81810124501763],[-124.69318922322852,57.81827664514192],[-124.69309273451103,57.81844841269981],[-124.69297527497285,57.81861773088992],[-124.69277034667651,57.81875927171546],[-124.69254464116048,57.81889275707971],[-124.69227149603954,57.81899773683212],[-124.6919536386558,57.81905629292673],[-124.69163979534876,57.81912049548084],[-124.69133401993804,57.81919487059566],[-124.69101405463549,57.81925340372656],[-124.69070219609428,57.81932098827424],[-124.69043726728036,57.81943165302423],[-124.69020122012951,57.8195594250163],[-124.69001288118636,57.81970785461628],[-124.6897644356374,57.81982877444757],[-124.68954908140807,57.819966843249695],[-124.68934409394514,57.82010950013808],[-124.68917862944694,57.820266005074004],[-124.68902150506923,57.820424835197144],[-124.68879990807717,57.82056059826398],[-124.68849610326455,57.82063835118964],[-124.6882086291404,57.820730844660446],[-124.68790688760579,57.82080973818508],[-124.68759298378762,57.820875052450425],[-124.68726719121865,57.82091893928527],[-124.6869316933995,57.82093917708807],[-124.68660176782895,57.82098077838946],[-124.68639060524559,57.82111888383962],[-124.68622305821583,57.8212742432932],[-124.68606591718708,57.82143307008311],[-124.68590253820322,57.821589591960084],[-124.68572247469616,57.82174146250483],[-124.68552783147643,57.82188870246769],[-124.68532698916248,57.82203251623139],[-124.6851219744957,57.82217516690381],[-124.6849148924167,57.82231667529513],[-124.68470363794427,57.82245702056202],[-124.68449242102012,57.82259624435716],[-124.68428116340883,57.822736588991944],[-124.68406990422481,57.82287693331081],[-124.68385868260832,57.823016156157685],[-124.68364745943198,57.82315537868838],[-124.68343412967305,57.82329458004964],[-124.68322079833885,57.82343378108795],[-124.68300746542951,57.823572981803395],[-124.68279623599064,57.823712203059394],[-124.68258289993847,57.82385140313249],[-124.6823716673721,57.82399062375277],[-124.68216039405391,57.82413096521374],[-124.6819491191629,57.824271306358646],[-124.68173994778324,57.82441166806774],[-124.68153077484617,57.82455202946756],[-124.68132366623402,57.824693532601955],[-124.68111651684359,57.824836156591154],[-124.68091147100137,57.8249788011713],[-124.68071683151639,57.825124913410455],[-124.68053883536857,57.82527679836902],[-124.68036079853985,57.82542980427014],[-124.68019316825412,57.82558627795385],[-124.68007149674303,57.825753301826936],[-124.67995816630524,57.82592265156704],[-124.6798031239505,57.826080371444995],[-124.67961463295721,57.82623102959877],[-124.67942621900852,57.82637944519103],[-124.67926064654242,57.82653705992403],[-124.67909507269195,57.826694674475824],[-124.67886938913111,57.826824774201924],[-124.67858149050882,57.826927337855075],[-124.67832481496703,57.827040305344234],[-124.6781866030854,57.82719819098811],[-124.67810658995083,57.82737796480975],[-124.67799741699804,57.82754847619037],[-124.67788192725752,57.82771892468669],[-124.67773934317333,57.82788125272965],[-124.67753438599158,57.8280205290582],[-124.67727126597639,57.82813679527659],[-124.67698955082312,57.82824278195042],[-124.67667210343454,57.82828672696052],[-124.67633724301253,57.828286757292176],[-124.67599646049274,57.82827551227033],[-124.67565754713493,57.82827101430878],[-124.67532073915386,57.82826653646516],[-124.67498381302407,57.828265421246044],[-124.67464871627271,57.828272174280166],[-124.67431497553694,57.82830024949122],[-124.67398906390991,57.82834522526408],[-124.67367515213826,57.8284082648337],[-124.673363147333,57.828476930474395],[-124.67304716757566,57.8285388263974],[-124.67272912094462,57.82859957939116],[-124.67241516546186,57.82866373716064],[-124.67210724840072,57.82873580540445],[-124.67180338279165,57.828812399651596],[-124.67149745013326,57.82888785100857],[-124.67119151625029,57.828963301667216],[-124.67089165995972,57.82904554173784],[-124.67059998648111,57.829134592320095],[-124.6702918643536,57.829212262188456],[-124.67008083325727,57.82934361591228],[-124.66991937986353,57.82950238276854],[-124.66972050324934,57.8296473162757],[-124.66959877223253,57.82981433124457],[-124.66946238156966,57.82997895628842],[-124.6693009624308,57.8301366013358],[-124.66911038295379,57.830284981811715],[-124.66883299800541,57.83038650894944],[-124.66853316485292,57.83046762265834],[-124.66827429006396,57.83058167121329],[-124.66800301886234,57.830688865730615],[-124.66771144473091,57.83077454664242],[-124.66738776782194,57.830815042805156],[-124.66715149198765,57.83094501763687],[-124.66688843849924,57.83105790016528],[-124.66659673999405,57.831146942144564],[-124.66629280408257,57.83122464514171],[-124.66598282830076,57.83129443593996],[-124.66569108613692,57.831384597113576],[-124.66543839377448,57.8315020671358],[-124.66519177804362,57.831626327080265],[-124.66492672758557,57.8317358211811],[-124.66463907129425,57.83182938586052],[-124.66445716498339,57.83196999640037],[-124.66464332340907,57.832125520274126],[-124.66486178095163,57.8322611802356],[-124.66500130331623,57.832425207684864],[-124.66510690014229,57.83259562368611],[-124.6651786107293,57.83277130716203],[-124.66522072514717,57.832950058130834],[-124.66523967878454,57.833128576561926],[-124.66523753717905,57.8333080047688],[-124.665218511193,57.83348838503518],[-124.66522256712531,57.833671240220696],[-124.66509051343563,57.833831419053155],[-124.665025282175,57.83400797072071],[-124.66499366080772,57.83418710304824],[-124.66496625040148,57.834366277692766],[-124.66493883973462,57.83454545236417],[-124.6649072572217,57.8347234636048],[-124.66487142337193,57.834902553738715],[-124.66483348351099,57.835081622747246],[-124.6647955830095,57.83525957061321],[-124.66475974811945,57.835438660814106],[-124.66472816401233,57.83561667217291],[-124.66470285701489,57.83579586817216],[-124.66467754977681,57.835975064199005],[-124.66464592510667,57.83615419680004],[-124.6646164058764,57.83633335057779],[-124.66458271459217,57.83651134091159],[-124.66453428266757,57.836689183199034],[-124.66447325539588,57.83686577741204],[-124.66439963260616,57.83704112353251],[-124.66431762570907,57.83721526385165],[-124.66422091719875,57.83738813487981],[-124.66411169217676,57.83755751541073],[-124.66399408264755,57.8377256900683],[-124.66387019433732,57.8378926799932],[-124.66374209325645,57.83805962749994],[-124.66360985886605,57.83822429024186],[-124.66347341161085,57.83838891054019],[-124.66333489706678,57.838552388386425],[-124.66319220934683,57.83871470259945],[-124.66304324252864,57.83887583198843],[-124.66289010243621,57.83903579771104],[-124.6627348949299,57.83919462093357],[-124.66257547429933,57.83935340163251],[-124.66241605232554,57.83951218216584],[-124.66225666880857,57.83966984136515],[-124.66209935008746,57.839828642758725],[-124.66194203004059,57.839987443991745],[-124.66178053657893,57.840145081502214],[-124.66162321386784,57.8403038824089],[-124.66146795597597,57.840463825525866],[-124.66132314700019,57.840626116845755],[-124.6613047010118,57.84073023716357],[-124.66149231399558,57.84096429110784],[-124.6616659083957,57.841118572188414],[-124.6618161389787,57.841278225762125],[-124.66194296570058,57.84144437308133],[-124.66204642812579,57.84161589304542],[-124.66210335949438,57.841792552606655],[-124.66218143154641,57.841967181738084],[-124.66231672625126,57.84213229240666],[-124.66252033174925,57.84227229395716],[-124.66285925009355,57.84228018899122],[-124.66316637656865,57.842352814679494],[-124.66343638852193,57.842462078445536],[-124.66368061208819,57.84258566291736],[-124.66394212331217,57.84269708336032],[-124.6642164714205,57.84280302438796],[-124.66444786440984,57.842932086407664],[-124.66466201273121,57.84307219056445],[-124.6648912233238,57.84320347304322],[-124.66512472721463,57.84333255508494],[-124.66536033884432,57.843461657873654],[-124.66559603149815,57.84358851791397],[-124.66584022974902,57.84371321973468],[-124.66609090685974,57.84383349981084],[-124.66635020865401,57.84394825805412],[-124.66662465199026,57.8440519518987],[-124.66691209090723,57.8441456813067],[-124.66720390225247,57.84423496762368],[-124.6675000859539,57.844319810819464],[-124.66779837718224,57.84440467446447],[-124.668096749017,57.8444872950962],[-124.66840163888101,57.844564372462095],[-124.66871535095244,57.84463032172269],[-124.66903804341439,57.84468065810842],[-124.66936741172077,57.8447209663569],[-124.6696969786524,57.8447556679089],[-124.67003135223644,57.844773593128906],[-124.67036814886846,57.844782569155775],[-124.67070518298598,57.84478481726915],[-124.67104217759956,57.84478818570502],[-124.67137873739793,57.84480388623417],[-124.6717083859555,57.84483634045041],[-124.67203775847865,57.84487664209157],[-124.672364946472,57.84491916424435],[-124.67269439941154,57.84495722190761],[-124.67302615667235,57.844989693886355],[-124.67335799345592,57.84501992268287],[-124.6736921737979,57.84504344459257],[-124.67402773550327,57.845027724430444],[-124.67434821389062,57.845081390482974],[-124.67462916395924,57.845180646206785],[-124.67489497748454,57.84529096621065],[-124.67515646179291,57.845404607262196],[-124.67542442411583,57.84551382603883],[-124.6757097503982,57.84560863676812],[-124.6760324605792,57.84565895623188],[-124.67632212020132,57.84575044406507],[-124.6765363680666,57.84588940831902],[-124.67672713332259,57.846037111128915],[-124.67691786070327,57.84618593486764],[-124.67712360928871,57.84632705676936],[-124.67741319798301,57.84642078464931],[-124.67771160685997,57.84650338387734],[-124.67802535136525,57.84656931130532],[-124.67834136060779,57.846630774207284],[-124.67864410379886,57.846710049685896],[-124.67894029339799,57.84679598879586],[-124.67921916200679,57.84689521407059],[-124.67947637920628,57.84701104733576],[-124.67972068485608,57.84713460291665],[-124.67995851590365,57.847262580067174],[-124.6801942421996,57.84739053590392],[-124.68043422211278,57.847517411959444],[-124.68068071908834,57.8476387443759],[-124.68094652841779,57.84775017374238],[-124.68126930317491,57.84779935942466],[-124.68156550732367,57.84788529278326],[-124.68182269926763,57.84800224281075],[-124.68206916466622,57.84812469389753],[-124.6823091947807,57.84825044548036],[-124.6825449352391,57.84837839727909],[-124.6827806772985,57.8485063486766],[-124.68300994487613,57.84863872183048],[-124.68323070990958,57.848773253548984],[-124.68345354379403,57.848908926958245],[-124.68368285535755,57.84904017782097],[-124.68392933359041,57.849162625589784],[-124.68419087201254,57.84927624932417],[-124.68445245116193,57.849388751371144],[-124.6847052927829,57.849510139072244],[-124.68472168539482,57.849764898402334],[-124.68449322092977,57.84997125141822],[-124.68431925736321,57.85012542930779],[-124.68410585570624,57.85026239317241],[-124.68386748739708,57.85039013705508],[-124.68365817816304,57.85053050549413],[-124.68349048907668,57.85068586612569],[-124.68342535404048,57.850861308646046],[-124.68335807264079,57.851037851498255],[-124.68328447086289,57.85121433177945],[-124.68323825409674,57.8513910831959],[-124.68325511740275,57.85157182391105],[-124.68321100667276,57.851748596239176],[-124.68311438674283,57.8519203623652],[-124.68300723277453,57.85209202414787],[-124.68292110504161,57.85226501568563],[-124.68296344301928,57.85244040099545],[-124.68309672054889,57.85260659260002],[-124.6832087757959,57.85277706028389],[-124.68337404764503,57.852932352629004],[-124.68358621649472,57.85307240687522],[-124.68371957735866,57.85323635558218],[-124.68385711362167,57.85340146706794],[-124.68401170064305,57.85356113924542],[-124.68418969790358,57.85371431338763],[-124.68433796742255,57.85387392271053],[-124.68444156593435,57.85404542740836],[-124.68454305863821,57.854216911219034],[-124.68469343839236,57.85437654106389],[-124.68485443155338,57.8545340325385],[-124.6849411017201,57.85470761269405],[-124.68501080096,57.85488438977012],[-124.68507418045802,57.85506110435759],[-124.68511856013747,57.85523875269499],[-124.6851311814132,57.85542057341908],[-124.68518832016085,57.85559498318039],[-124.68535778707708,57.855751436352655],[-124.68555499651742,57.85589806925774],[-124.68573094335876,57.85605009968791],[-124.68584520586307,57.85621834417802],[-124.6859424579505,57.85639090686344],[-124.68603549716245,57.85656342788256],[-124.68611792454612,57.856738087199666],[-124.6861939928797,57.85691380526109],[-124.6862551962209,57.85709274123199],[-124.68635678359325,57.85726198180042],[-124.6865114361483,57.85742053050529],[-124.68668520883631,57.857574781496126],[-124.68687388793548,57.857724693096856],[-124.6870732205641,57.85787134484596],[-124.68728121705392,57.858011352310434],[-124.68750201319979,57.85814699942028],[-124.68773350208333,57.858278265323946],[-124.68797143070638,57.85840622959687],[-124.68821365303013,57.858531992622446],[-124.6884559160116,57.85865663402539],[-124.68870239461367,57.85878131654434],[-124.68896182914722,57.858897153636036],[-124.68924089177008,57.858994116721874],[-124.68955690651482,57.85905891734687],[-124.68988189643918,57.85910810345042],[-124.69014952950137,57.859170182973166],[-124.69056812494752,57.859133927206365],[-124.69081941229707,57.859241829358474],[-124.69100545780297,57.85928628040511],[-124.6912825061672,57.85950210712922],[-124.69150956873266,57.85964005238277],[-124.69173234094076,57.85978019822317],[-124.69195511480648,57.85992034371056],[-124.69218007527401,57.86005826715952],[-124.69240726125201,57.86019284735712],[-124.69263885763627,57.860321862597104],[-124.69287915639886,57.86044311186083],[-124.69312612817144,57.86055433199491],[-124.69343447322302,57.86059773788171],[-124.6937934990076,57.86057771044206],[-124.69413968737797,57.86056316393565],[-124.69447346599605,57.86054176524268],[-124.69480919593128,57.86052487119426],[-124.69514676077199,57.86051584538124],[-124.6954824125079,57.860501192038264],[-124.69580830491186,57.86046401051635],[-124.69614965623461,57.860467356698294],[-124.69648694861601,57.8604661759006],[-124.69680273093066,57.860416555482175],[-124.69711105361935,57.8603388217084],[-124.6974332328876,57.8602870193077],[-124.69775498485184,57.86024754935596],[-124.69809297280847,57.86022618284373],[-124.69842556898709,57.86017784476262],[-124.69870551766995,57.86025012166325],[-124.69896276978669,57.860369282420876],[-124.69921756792311,57.86049851291933],[-124.69949003774565,57.86060436247687],[-124.69981111066294,57.86064563477848],[-124.70015414546899,57.86066132451947],[-124.70048368677453,57.860701556353746],[-124.70081108298416,57.860742887998356],[-124.70114530393887,57.86076970490816],[-124.70147063299278,57.8608098931549],[-124.70177786901114,57.860885794637355],[-124.70208522217898,57.86095833180263],[-124.70241878928965,57.86100420599602],[-124.70271760022345,57.86108002310923],[-124.70297896917089,57.86120258091396],[-124.70313171652396,57.86135772677052],[-124.70319733770053,57.86153333322158],[-124.70323533452125,57.86171539988155],[-124.70328390626678,57.86189644805809],[-124.70338136870205,57.86206563537124],[-124.7035553862782,57.8622153802275],[-124.70378040292591,57.862353284382664],[-124.70400327541505,57.86249228885519],[-124.7042091373861,57.86263561360206],[-124.70442561426724,57.86277679824592],[-124.70464420002004,57.86291800307626],[-124.7048543198274,57.8630602467161],[-124.70504739034567,57.863207931990466],[-124.70521080636084,57.86335981471271],[-124.70532326348192,57.863522417170756],[-124.70534663716136,57.86370097641884],[-124.70534234632093,57.86388711756592],[-124.70537196517262,57.86406798081566],[-124.70546304355712,57.86423934787759],[-124.70557948783816,57.864408718532445],[-124.70571080016134,57.86457486899622],[-124.70585062010687,57.86473885893594],[-124.70600534689233,57.86489850739378],[-124.70619413957144,57.86504839270872],[-124.70637017394724,57.86520151846551],[-124.70653770319137,57.86535680448197],[-124.70670308791752,57.865513191037444],[-124.7068748347285,57.8656685176503],[-124.7070487673575,57.865821622123434],[-124.7072247703326,57.8659758680823],[-124.70739655988919,57.86613007288338],[-124.70757041981199,57.86628541917125],[-124.70767423520552,57.86645466551494],[-124.70773774050973,57.86663137138398],[-124.70779703147342,57.866808036318005],[-124.70788172814336,57.866981583225545],[-124.70798761587457,57.86715197112562],[-124.70810197301707,57.86732131961241],[-124.70821418521997,57.8674917687821],[-124.70831160736589,57.8676631958799],[-124.70834335097314,57.86784407962746],[-124.7084366364566,57.868013223347184],[-124.70864649142149,57.868164431456485],[-124.70885224829478,57.868312234710245],[-124.70892894581125,57.868473366045755],[-124.70888926626886,57.86864682718491],[-124.70878616669167,57.86882528085201],[-124.7086558212462,57.868998983699186],[-124.7085132135344,57.869161351549955],[-124.70834972079594,57.86931790860011],[-124.70817158876864,57.86947095858958],[-124.70798717088604,57.869622825752295],[-124.70780692830876,57.86977585483594],[-124.70761204621259,57.86992537675151],[-124.70741298575514,57.87007373623898],[-124.70724956146758,57.87022804965054],[-124.70718676497195,57.87039904290969],[-124.70723314375425,57.87058343442657],[-124.70730504621594,57.870761344376426],[-124.70739377246126,57.87094053933745],[-124.70760711492508,57.87117478107386],[-124.7079934941494,57.87134340724438],[-124.70829603685526,57.87143607183473],[-124.70855994966595,57.871548549469146],[-124.70878944813481,57.871680881290025],[-124.70901247120163,57.871817636261284],[-124.70925707311176,57.87194001948424],[-124.70952976921691,57.87204248606127],[-124.70982185931871,57.872132802604575],[-124.71012042777689,57.87221869493151],[-124.71041688981984,57.87230456616922],[-124.7107111686486,57.87239265877192],[-124.71100763340817,57.87247852870886],[-124.71129976881126,57.87256772082838],[-124.71158535200787,57.87266357841338],[-124.71186442145763,57.872764980287144],[-124.71214567691958,57.87286415954385],[-124.712431302859,57.87295889412145],[-124.71272996048393,57.87304253822399],[-124.71303080390771,57.87312395960588],[-124.71332946417344,57.873207602377185],[-124.71362816407202,57.87329012326344],[-124.71392682698247,57.8733737647084],[-124.71422549121966,57.87345740549045],[-124.71452197237554,57.87354326769234],[-124.71481630875861,57.87363023010665],[-124.71510842385501,57.87372053519376],[-124.71539839423433,57.87381194052304],[-124.71568836602138,57.87390334522906],[-124.71598266967598,57.87399142631942],[-124.71628138160634,57.8740739413171],[-124.71658879391445,57.87414868840206],[-124.71689628386247,57.87422119233477],[-124.71720369859332,57.87429593801069],[-124.71750245380676,57.87437732906924],[-124.71779021260254,57.874472072607226],[-124.71807145824697,57.87457236073856],[-124.7183527817231,57.87467040583605],[-124.71864709760516,57.87475848110376],[-124.71895022805256,57.87483542464355],[-124.71926205843062,57.87490460006902],[-124.71957611227803,57.874970431373995],[-124.7198901291022,57.87503738316815],[-124.72019981682776,57.87510765735955],[-124.72050509930604,57.87518349643161],[-124.72080375441394,57.87526824383223],[-124.72109593466193,57.87535741470231],[-124.72138585602563,57.8754510495926],[-124.7216821027254,57.8755447446065],[-124.7219762048694,57.875639539953056],[-124.72225314027528,57.87574314256131],[-124.72249386106334,57.87585761287493],[-124.72258512197185,57.87602672782757],[-124.72263111085077,57.8761628820057],[-124.72280731810292,57.87637655430729],[-124.7230592312018,57.876472063945975],[-124.72340173553275,57.87650787610893],[-124.7236983376497,57.87659147567936],[-124.72398612895593,57.87668620603604],[-124.72427825175838,57.87677761250772],[-124.72457033799523,57.87687013957609],[-124.72486250161819,57.87696042355338],[-124.72516784647544,57.877035130844796],[-124.72548878397406,57.87708531170647],[-124.72582083181177,57.87711877426477],[-124.72615502623377,57.87715113494367],[-124.72648033386619,57.87719686885579],[-124.72680545270035,57.87724820812657],[-124.72712838853894,57.87730176890431],[-124.72744688176569,57.87736201597047],[-124.72775882445544,57.87742892920576],[-124.72805984906104,57.87750695328608],[-124.72835643151805,57.877591663792806],[-124.7286485340912,57.87768418198872],[-124.7289341623998,57.877781124077046],[-124.7292133164945,57.877882490100816],[-124.72948603426002,57.877987158870276],[-124.72973932656285,57.87810510078911],[-124.7299839610319,57.8782296891657],[-124.73023288900661,57.87835207487013],[-124.73049473206389,57.878466732150635],[-124.73075872265686,57.878580287801505],[-124.73101623922904,57.87869826757225],[-124.73124811949624,57.878826096795244],[-124.73145214187474,57.878967119215446],[-124.73164758200181,57.879112545915305],[-124.73183443984665,57.87926237693469],[-124.7320127153723,57.87941661231179],[-124.73218459225163,57.87957302969654],[-124.73234589178027,57.87973046772045],[-124.73250079251537,57.879890087812264],[-124.73264929440244,57.88005188999541],[-124.73279135964243,57.88021699552785],[-124.73292280944318,57.88038424305483],[-124.73304368142094,57.880552511372976],[-124.73315182945076,57.88072290168067],[-124.73324518283735,57.88089427270806],[-124.7332815380553,57.881067344428686],[-124.73321428556079,57.88124840286403],[-124.73322300669481,57.881427941222825],[-124.73327611561818,57.881604537278626],[-124.7333439455532,57.88178239503225],[-124.73341599278953,57.881960292909824],[-124.73348597009021,57.8821370494813],[-124.73354751464764,57.88231372580493],[-124.73359430126278,57.88249026171217],[-124.73361371722861,57.882665415621375],[-124.73352775211977,57.8828384453023],[-124.73338497289862,57.88300756954043],[-124.73324870624828,57.883171147657144],[-124.73310611319268,57.8833346654584],[-124.73295726913166,57.88349588044531],[-124.7328021740122,57.88365479259576],[-124.7326407900331,57.88381252312632],[-124.73246686731562,57.883966769300244],[-124.73228462265475,57.88411757122871],[-124.73210026807502,57.884268352847215],[-124.73191173285713,57.88441797282025],[-124.73172323391918,57.88456647130921],[-124.73154094559204,57.8847183935531],[-124.73137958955803,57.88487500148714],[-124.73124119893265,57.88503855776849],[-124.73110905704125,57.885204416713734],[-124.73096855550969,57.88536795266755],[-124.73082180278375,57.885529185706496],[-124.73061819390995,57.885687633241965],[-124.73040626259454,57.88584263632559],[-124.73033546085487,57.885940662000046],[-124.73058450756385,57.88612361517365],[-124.73087121709737,57.88625309006713],[-124.73112020101345,57.886375475123906],[-124.73137140850486,57.88649451609899],[-124.73159034639865,57.886632316361585],[-124.73181576280386,57.88676569157821],[-124.73207559837229,57.88687920541152],[-124.73234835151378,57.88698499052944],[-124.73262543668532,57.887087451521424],[-124.73290900021748,57.88718548718685],[-124.73320126390077,57.88727575381836],[-124.73348916080442,57.88737046466847],[-124.73375548239689,57.887479550503336],[-124.73400241286978,57.887600789022564],[-124.7342428304396,57.88772757317177],[-124.73448324962894,57.887854356903375],[-124.73473443993251,57.887974512959204],[-124.7350050998086,57.88808027271146],[-124.73528220027399,57.88818272828969],[-124.73556141093344,57.888285203331115],[-124.73583640573013,57.88838763774847],[-124.7361091803704,57.888493415325996],[-124.73637547985653,57.888603617292354],[-124.73663526658909,57.88871936493415],[-124.73689509254818,57.8888339908363],[-124.73715925040017,57.88894529251232],[-124.73744061816824,57.88904666245031],[-124.7377242090002,57.88914468805779],[-124.73798407880805,57.889258190637754],[-124.73819462198735,57.88939590046872],[-124.73838151935661,57.88954684513289],[-124.73857481968322,57.889695607006495],[-124.73878743867107,57.88983445719185],[-124.73901075340545,57.88996892193657],[-124.73924905662129,57.89009679862927],[-124.73950242345126,57.89021584468907],[-124.73975364553608,57.89033599156778],[-124.7399769666977,57.89047045476156],[-124.74017890101238,57.89061368803734],[-124.74037228897588,57.89076020496585],[-124.74056131068791,57.89091116673588],[-124.74073971466343,57.89106427102612],[-124.74090960965619,57.89121953782505],[-124.74107099559014,57.891376967166025],[-124.74122165100763,57.89153990289449],[-124.74134614761859,57.89179119801359],[-124.74145288495826,57.89187969232486],[-124.74148932602391,57.892051642513216],[-124.74140740601334,57.8922303250879],[-124.74135922794063,57.89240932664726],[-124.74134475478603,57.892589768480285],[-124.74134082619244,57.89277031003408],[-124.741353806662,57.892949889869605],[-124.74139431623425,57.89312636516044],[-124.74153646918738,57.89329146358587],[-124.74161934703149,57.8934627312892],[-124.74163654704677,57.893642351092346],[-124.74164105573942,57.893822972583415],[-124.74165403800458,57.89400255258534],[-124.74166912941286,57.89418215255184],[-124.74168422096517,57.89436175255015],[-124.74169931266152,57.89454135257995],[-124.74171862260086,57.894720992505206],[-124.74173797021513,57.89489951120593],[-124.74176360773146,57.895079210985195],[-124.74179982838004,57.89525788919021],[-124.7418445232191,57.8954355258821],[-124.74189554577877,57.895613222378536],[-124.74194656882025,57.89579091888823],[-124.7420039197022,57.89596867519281],[-124.74207189173742,57.89614428862355],[-124.74215892161982,57.896317838862494],[-124.74226930284918,57.89648712320339],[-124.74239452412522,57.89665430441623],[-124.7425197465138,57.896821485540286],[-124.74263224002061,57.89699078958764],[-124.74273833205334,57.897162276338754],[-124.74283384161006,57.89733478472383],[-124.74291029426958,57.89750935637307],[-124.74292964897033,57.89768787541633],[-124.74293416435407,57.897868497620365],[-124.74299792568904,57.898044071099115],[-124.74308496423554,57.89821762107448],[-124.74315716388972,57.89839327418088],[-124.74321878043817,57.89856994899995],[-124.74326137663296,57.89874756591781],[-124.7432870240455,57.89892726612023],[-124.74331056240683,57.899106946444704],[-124.74334890358348,57.89928564488083],[-124.74340845062258,57.899461178608824],[-124.7434848728245,57.89963687157406],[-124.74356766118845,57.89981150297401],[-124.74365421974895,57.8999996292936],[-124.74365602958694,57.900008619286204],[-124.7437239043195,57.900187596394204],[-124.74374748299144,57.900366155614485],[-124.74377524320556,57.90054587592431],[-124.74381784426362,57.90072349302829],[-124.74387099270878,57.90090120964046],[-124.74393898236737,57.90107682301626],[-124.7440238854235,57.90125147429029],[-124.74410246098813,57.90142606585962],[-124.744164086941,57.90160274079717],[-124.744227822919,57.9017794356308],[-124.74431276632204,57.90195296558412],[-124.74442739270293,57.90212228890689],[-124.74453565427498,57.90229267376349],[-124.74460368696252,57.902467165789204],[-124.74460399196491,57.90264774905972],[-124.74461066289943,57.9028272707577],[-124.74463421002113,57.9030069515754],[-124.74466412335603,57.903185570812965],[-124.74469399956395,57.903365311342625],[-124.74471965696597,57.90354501213043],[-124.74478554580706,57.903720605671886],[-124.74487404198486,57.903914358176884],[-124.74498593144014,57.904102723013075],[-124.74515461600059,57.904233298744785],[-124.74541764105315,57.904255965973725],[-124.74576363424137,57.904195292666216],[-124.74612250800543,57.90412801003569],[-124.74645893980497,57.90410089348744],[-124.746796995159,57.904088372413376],[-124.74712997233584,57.90410159993384],[-124.74746020557005,57.90413386832521],[-124.74779010349519,57.90417622730585],[-124.74811778064853,57.904221929443494],[-124.74844768008604,57.90426428679922],[-124.74877746839563,57.90431000714338],[-124.74910733206755,57.90435348413701],[-124.7494356086955,57.90438124275178],[-124.74975394829596,57.904327029150416],[-124.75002551731635,57.90421965978813],[-124.75029501245129,57.904111148819965],[-124.75059725385907,57.904033228220605],[-124.75090978129045,57.90396325475034],[-124.7512223075594,57.90389328055179],[-124.75151225999274,57.90380402652508],[-124.75176727856258,57.90368640404311],[-124.75202440508892,57.90356880085601],[-124.75228563754227,57.90345460051953],[-124.75255508350305,57.90334720633244],[-124.75283485258042,57.90324663799832],[-124.75312076294726,57.90315173467984],[-124.75341081661581,57.9030591127858],[-124.75369265363909,57.90295968369424],[-124.75397237966075,57.90286023427879],[-124.75428677783391,57.902797000312844],[-124.7546113513292,57.90274507692452],[-124.75493596103381,57.90269203148035],[-124.75524628556573,57.902624270744916],[-124.75553832816982,57.90253502778872],[-124.75582222805669,57.90243673522538],[-124.75611837559978,57.902350894234466],[-124.75643280297086,57.90228653396851],[-124.7567452679914,57.90221766820004],[-124.75706172856867,57.902155568687235],[-124.75739006726813,57.90211713315108],[-124.75772639892187,57.90209223073395],[-124.75805677183584,57.90205605577045],[-124.75838721811776,57.90201763745305],[-124.7587176267332,57.9019803395851],[-124.75904977433927,57.901954273236356],[-124.75938939807344,57.90195743763823],[-124.75970615303044,57.90201422558128],[-124.76000943914448,57.90209556282708],[-124.76030621341543,57.90218244682006],[-124.76060302599265,57.902268208890725],[-124.7609108304805,57.90234061321965],[-124.76122733253774,57.90240524645059],[-124.76154609280816,57.902465413474424],[-124.76187144087831,57.90251778969105],[-124.76219501235202,57.902560054082066],[-124.76253682507486,57.90256098752809],[-124.7628592756507,57.902509024450396],[-124.76316551285467,57.902436721003426],[-124.76346989734577,57.902356548382535],[-124.76377424369849,57.90227749634229],[-124.76408473305342,57.902204108694555],[-124.76440310676743,57.902147617664525],[-124.76473151152213,57.90210692149045],[-124.76506206184261,57.90206512280069],[-124.76538450468183,57.90201315363604],[-124.76570505786339,57.90195443652237],[-124.7660072868047,57.901875359860306],[-124.76628915520472,57.90177366169731],[-124.76656076888226,57.90166289509903],[-124.76683245445967,57.90154988542016],[-124.76711017279409,57.901445903946566],[-124.76739784904488,57.90135995984483],[-124.76770551658952,57.90130784842225],[-124.7680434296268,57.90129863726729],[-124.76839122900665,57.901309705659244],[-124.76873281036836,57.90131735082138],[-124.76906987954024,57.901333926270745],[-124.76940476622822,57.90135272391418],[-124.76974212931377,57.90136032750124],[-124.77007982240848,57.90135783880048],[-124.77041736888864,57.901359834325255],[-124.7707547688749,57.90136631407679],[-124.77108987642747,57.90137837986015],[-124.77142687395921,57.90139719188652],[-124.77175699446744,57.90143276375583],[-124.7720847865989,57.9014750429836],[-124.7724126526333,57.90151507886402],[-124.77274266538748,57.90155401210818],[-124.7730727519517,57.90159070199328],[-124.7734050217202,57.90162516794841],[-124.77373289046724,57.90166520058493],[-124.77405835817956,57.901714183171194],[-124.77438615534808,57.90175645674709],[-124.77471395325308,57.90179872951789],[-124.77503062047725,57.901858844819806],[-124.77534274130595,57.901929012026024],[-124.77565933765726,57.90199136838621],[-124.77598022696938,57.90205152023078],[-124.77630555507744,57.90210498243634],[-124.7766337592128,57.90213491649455],[-124.77696785945143,57.902113309926726],[-124.77730646977196,57.902082771072365],[-124.77763496593485,57.90210373247685],[-124.77796058819305,57.90214822045575],[-124.77828591995069,57.902201677829176],[-124.77860910674246,57.90225623633713],[-124.77893680457626,57.9023018625577],[-124.77927323222723,57.902338595130196],[-124.7796181712667,57.902373161632674],[-124.77995743690497,57.902387486327534],[-124.78027484324122,57.9023601104763],[-124.78056853416012,57.90228316600236],[-124.78084432845084,57.902172408850355],[-124.78110786379987,57.90204920127646],[-124.78134622900498,57.90192127645245],[-124.7815370189572,57.90176375417643],[-124.78178534732078,57.90165386549124],[-124.78209132341921,57.901588246236855],[-124.78241373864373,57.90153623587049],[-124.78274644630005,57.90149217005477],[-124.78308122636,57.901449243960656],[-124.78340978608459,57.9014028953904],[-124.78374441961212,57.90136445272923],[-124.7840831626337,57.901329411573],[-124.78441164762702,57.90128530308506],[-124.78471547049614,57.90122077984535],[-124.7849887732836,57.901121207723406],[-124.78523148306667,57.900988829465966],[-124.78543043632342,57.90083922765271],[-124.78558741700039,57.90068251318916],[-124.78570882609694,57.90051650138506],[-124.78581357611515,57.90034360799175],[-124.78591625197238,57.90016957404193],[-124.78602282003084,57.900005669963036],[-124.78615785782317,57.89980949887689],[-124.78623521845405,57.89963523403991],[-124.78628948415002,57.89945739388924],[-124.78634374933307,57.89927955374926],[-124.78646096809112,57.899112381778984],[-124.78663488406818,57.89895357760138],[-124.78667834730376,57.898783490218904],[-124.78662296272594,57.898603529348996],[-124.78659081691909,57.898422658652045],[-124.78657761869445,57.89824308224524],[-124.78657074837616,57.898063563534876],[-124.78656809662358,57.897884083300426],[-124.78656759029404,57.89770350105021],[-124.78659865010383,57.897525449692246],[-124.78666553020601,57.897348846372466],[-124.78674921105906,57.897174639340896],[-124.78685598389968,57.89700400748509],[-124.78698370310815,57.89683805280249],[-124.78712818622958,57.896675615535884],[-124.7872873239136,57.896516676418834],[-124.78745693381856,57.8963600757134],[-124.78763479831527,57.8962091579814],[-124.78786481221579,57.89607666037166],[-124.78809897056016,57.895946443315076],[-124.78833516421278,57.89581848759558],[-124.788581757517,57.895695112497265],[-124.78884693433386,57.895584243583166],[-124.78913684171921,57.8954915446239],[-124.78944100648363,57.895414677036335],[-124.78976339472167,57.895361527941965],[-124.79009775173967,57.89532979717051],[-124.79043338837555,57.89532387390494],[-124.79077066562157,57.89533254544508],[-124.79110565381185,57.89534680332723],[-124.7914427153569,57.895362200780156],[-124.79177977717774,57.895377597380154],[-124.79211694724485,57.89538962931896],[-124.79245418948778,57.895399417865065],[-124.79279150384635,57.89540696301786],[-124.79312688902559,57.89540888185015],[-124.7934647428543,57.895399606251786],[-124.79380070304244,57.89538358307017],[-124.79413662701457,57.895368680311094],[-124.79447265848046,57.89535041289486],[-124.79480686778864,57.8953231553793],[-124.79513507238593,57.89528574833785],[-124.79546956776132,57.89524951900017],[-124.79577182381787,57.89516589027044],[-124.79585527827342,57.89499728426191],[-124.79589058183086,57.89481702684623],[-124.7959090483439,57.894635495599154],[-124.79592533386457,57.89445618784922],[-124.79594165510524,57.89427575886141],[-124.79595583127232,57.89409643210166],[-124.79596578923928,57.89391706722879],[-124.79597367396246,57.89373656204752],[-124.79597730471204,57.89355714002342],[-124.79597671742236,57.89337767988792],[-124.79596769416925,57.89319814349618],[-124.79595230818205,57.89301967118706],[-124.7959306312982,57.89284002042273],[-124.79590259186027,57.892661433735285],[-124.79587247961177,57.892481706733896],[-124.79584022283262,57.89230308195162],[-124.79580796635965,57.89212445719452],[-124.79577785499261,57.891944730271575],[-124.79575192585841,57.891766162793175],[-124.79573025065291,57.891586512229246],[-124.79571275755858,57.8914080211137],[-124.7956974093915,57.89122842784002],[-124.79568627911422,57.89104887275164],[-124.79567725780475,57.89086933677279],[-124.79566612772979,57.89068978174932],[-124.79565714248257,57.89050912457113],[-124.79564386789846,57.89033067179991],[-124.79562852049936,57.89015107871828],[-124.79560895562417,57.88997144751225],[-124.79558513745181,57.889792899443655],[-124.79555502901391,57.8896131729036],[-124.7955206674183,57.88943452949459],[-124.79548205272252,57.88925696921293],[-124.79544136551493,57.88907826860899],[-124.79539856994255,57.88889954894415],[-124.79535788351764,57.88872084838073],[-124.7953235595603,57.88854108382325],[-124.79520861092767,57.88831011823042],[-124.79514679409172,57.88819852166343],[-124.7949830869708,57.88804113934233],[-124.7948109105404,57.88788480174465],[-124.7946557127429,57.88772525291189],[-124.79450691411182,57.887563518688935],[-124.79436022542608,57.8874018034245],[-124.7942177912356,57.88723900496506],[-124.79407746692544,57.88707622548286],[-124.79394354160151,57.88691126067322],[-124.7938202324622,57.886744148769225],[-124.79370968394153,57.886573787650114],[-124.7936033895795,57.88640234342922],[-124.79349495164467,57.88623200130154],[-124.79337804438306,57.886062703921404],[-124.79324619836433,57.885898878955004],[-124.79309312395895,57.885739347743026],[-124.79292725564098,57.885584186692384],[-124.79275077398998,57.88543117236022],[-124.79256789619906,57.885280342955724],[-124.7923808027968,57.88512947506532],[-124.79219367491622,57.884979728192796],[-124.7920086930291,57.88482887895833],[-124.79183007415143,57.88467696564685],[-124.7916813357015,57.88451410751794],[-124.79153249054743,57.88435461301972],[-124.79132181651457,57.88421586703479],[-124.79110263810027,57.88407928665147],[-124.7908791723018,57.88394491013253],[-124.79065359963502,57.8838105141007],[-124.79042588409347,57.883677219800525],[-124.79020242309728,57.8835428422013],[-124.78998114422181,57.88340624090266],[-124.78975346955554,57.88327182425312],[-124.78952372414535,57.88313626680388],[-124.78928761907432,57.883001772697476],[-124.78905151569026,57.88286727819102],[-124.78881119718844,57.88273274491321],[-124.7885729887989,57.88259823040959],[-124.78833478211158,57.882463715498375],[-124.78809868550587,57.88232921937638],[-124.78786680733056,57.8821947612555],[-124.78763707528644,57.88205920070071],[-124.78741581443933,57.881922595346786],[-124.78720088024342,57.8817860472776],[-124.78699230875854,57.88164843527176],[-124.78679431659823,57.881509797794685],[-124.78660686752099,57.88137125614572],[-124.78630367928336,57.88122492940413],[-124.78638406095591,57.88108658631932],[-124.78642674563699,57.88094004843316],[-124.7865396542028,57.880773962366284],[-124.78669813664706,57.88056791480927],[-124.78688843468417,57.880421600851484],[-124.78709752499093,57.88028106581204],[-124.78732119093964,57.88014627118165],[-124.78755321606131,57.88001379551708],[-124.78778313130802,57.87988130026431],[-124.78800890066198,57.87974652373546],[-124.78813201495302,57.879590623762965],[-124.78804899218066,57.87941826624884],[-124.78795546523384,57.87924469146899],[-124.78785557845744,57.87907218030209],[-124.7877535844092,57.87889964988851],[-124.78765580765062,57.878727157835186],[-124.7875579956781,57.87855578698929],[-124.78745386012147,57.8783843584809],[-124.78734122068721,57.87821509558294],[-124.78720306787727,57.87805232957814],[-124.78706284425547,57.877888422996335],[-124.78693748708373,57.87772128705853],[-124.78682485195438,57.87755202383901],[-124.78676110163421,57.87737086885695],[-124.78655655557003,57.87724002271144],[-124.78626885574968,57.8771375789056],[-124.78602404221367,57.877013094157356],[-124.7857705087105,57.87689750201095],[-124.78546290059857,57.87682403579645],[-124.78514010306729,57.87676388912396],[-124.78482900493925,57.87666795804934],[-124.78454109700363,57.87657223804328],[-124.78440231069432,57.8764296518243],[-124.78439974320453,57.87624793306454],[-124.78440378943095,57.87605730214484],[-124.78432289953152,57.87588496218851],[-124.78420817364132,57.87571567781773],[-124.78408498058215,57.87554743758089],[-124.78396604081382,57.87537811453943],[-124.78387036231193,57.875206760836214],[-124.78379165708701,57.875032197484025],[-124.78372352860627,57.8748566092036],[-124.78365754493205,57.87467991894399],[-124.78359788569374,57.87450328648777],[-124.78353822701516,57.87432665403692],[-124.78347649720433,57.874148881078995],[-124.78341047970046,57.87397331206751],[-124.78334660694215,57.873796641084915],[-124.78328062689388,57.8736199508308],[-124.7832125033511,57.87344436254352],[-124.78313380485936,57.87326979911828],[-124.78304663941913,57.873096279812415],[-124.78295736693211,57.87292274120233],[-124.78286387958723,57.87274916400421],[-124.78276399711879,57.87257777140895],[-124.7826577558466,57.87240744216078],[-124.78254086771848,57.872240380154835],[-124.78239647042615,57.87207643106652],[-124.78223074262478,57.87192013763214],[-124.7820437207464,57.87177037852889],[-124.78180124522073,57.87164029979623],[-124.78160132586181,57.87149827300839],[-124.78148019343793,57.87133229286618],[-124.78135913465644,57.871164070165136],[-124.7812423650205,57.870993643516854],[-124.7811277041731,57.870823236102964],[-124.78101733240148,57.87065062476206],[-124.78091542879038,57.87047696936445],[-124.78081984922622,57.8703033718556],[-124.78073059362116,57.87012983224914],[-124.78065394862884,57.869957529738436],[-124.78058577133994,57.869784183240014],[-124.7805850399111,57.869611454854486],[-124.78069397910451,57.8694374883941],[-124.78081556315666,57.86926363774802],[-124.78088470931968,57.86908145560867],[-124.7808713307872,57.86890861148331],[-124.7810749278207,57.86874111997875],[-124.78134945901,57.868661760208],[-124.78170295357816,57.86861789152604],[-124.78200491766631,57.868537660047274],[-124.78229870386566,57.86844950208658],[-124.78258227695034,57.86835115594547],[-124.78284927776578,57.8682436850885],[-124.78311017170411,57.86812942846802],[-124.7833669575817,57.86801176910016],[-124.78362163428582,57.86789408998333],[-124.78387423804503,57.86777526989459],[-124.7841248050576,57.86765418761078],[-124.7843691201999,57.86753080463306],[-124.7846030769657,57.867401718787754],[-124.78483081806387,57.86726921109837],[-124.78505648620553,57.86713556255755],[-124.78528008139224,57.86700077317638],[-124.78549742476118,57.866863683255495],[-124.7857147665479,57.866726592998916],[-124.78594453485708,57.86659634519823],[-124.78618887331479,57.86647183777869],[-124.78645385142387,57.86636097696643],[-124.78673325521983,57.866260341276096],[-124.78701269363683,57.86615858377509],[-124.78728177373398,57.86605112347962],[-124.78754474649894,57.865936877630936],[-124.78780778984893,57.865820388807556],[-124.78804997358203,57.86569698010227],[-124.7882254391507,57.86555053208489],[-124.78831961536845,57.86537530451028],[-124.78855143778182,57.865246192815],[-124.78880822306319,57.86512740206095],[-124.78905668524028,57.865005170400046],[-124.78932164458972,57.864894304043396],[-124.78961531317266,57.86480837272552],[-124.78992137260045,57.86473040440752],[-124.79021714592771,57.86464449094333],[-124.79050059766983,57.86454837077831],[-124.790759407423,57.86443183796856],[-124.79099539441572,57.86430388168172],[-124.7912106300428,57.864165642424176],[-124.79141547123123,57.864022822186335],[-124.79161613214426,57.86387884213958],[-124.79181682749207,57.86373374057865],[-124.79201541396121,57.86358861960198],[-124.79220774884094,57.86344119849124],[-124.79241051094314,57.86329723646349],[-124.79263274048641,57.86313774901838],[-124.79286464215447,57.863005266407406],[-124.79309797760463,57.863025328350034],[-124.7933352162167,57.86318674163565],[-124.79357992813314,57.863312332403595],[-124.79387672558289,57.8633912894807],[-124.79419731513381,57.8634513950397],[-124.79451797748435,57.863509257363404],[-124.79483649760869,57.863568221061314],[-124.79514840976536,57.863636096614734],[-124.79545153507775,57.86371510745945],[-124.79573930075517,57.863813045069776],[-124.79603371257784,57.86390094817277],[-124.79635266839578,57.86394645345414],[-124.79668527220497,57.8639606777733],[-124.79702884281507,57.86396154172309],[-124.7973680913175,57.86396573039011],[-124.79770498198222,57.863977747790685],[-124.79803976550404,57.86398974529925],[-124.79837879973032,57.86400065879828],[-124.79871783415305,57.86401157143339],[-124.79904936893087,57.86399325500058],[-124.79936933156766,57.86394118658132],[-124.79961128552108,57.863889535129275],[-124.79968347154814,57.86387336306487],[-124.79999968202051,57.86380667905458],[-124.80041572227553,57.863716220228554],[-124.80072982279205,57.86364951549235],[-124.80105385208554,57.86360196597353],[-124.80138363162422,57.86357241238945],[-124.80171758964083,57.86354401718578],[-124.8020557261568,57.863516780331025],[-124.80239168354399,57.863491766118244],[-124.80272953395345,57.863473497435386],[-124.80306720586675,57.86346083407263],[-124.80340459256392,57.8634571397379],[-124.80373958695488,57.86346239548461],[-124.80407001073749,57.863478824859094],[-124.8044022929839,57.86350312100309],[-124.80473221923432,57.86353524603717],[-124.80505986083737,57.86357295750739],[-124.80538946817806,57.86361517204013],[-124.80571686224944,57.863660730550265],[-124.80604636445885,57.863706307169004],[-124.80637376011693,57.863751864066884],[-124.80670333496998,57.86379519658939],[-124.8070330171293,57.86383516458633],[-124.80736494936902,57.863870665710756],[-124.8076971307084,57.86389831734752],[-124.8080317037856,57.86391701713738],[-124.8083707402489,57.863927905174805],[-124.8087098833067,57.863935428635685],[-124.8090469191392,57.86394293236742],[-124.80938602702129,57.86395157534264],[-124.80972070771826,57.863966907172994],[-124.81005089055044,57.86399117036814],[-124.8103782935276,57.86403671742546],[-124.81068770530385,57.86411799259629],[-124.81094551479381,57.864231330949224],[-124.8111496501979,57.86437559272538],[-124.81132796760375,57.86453644685335],[-124.81151278566252,57.86469175105],[-124.81173853050848,57.864819381655366],[-124.81201387930874,57.86491156504431],[-124.81231072799417,57.86499048112714],[-124.8126183978585,57.86506052067598],[-124.81293892549051,57.86512394489713],[-124.81326384572587,57.86518179974511],[-124.81359098036133,57.865236308874636],[-124.8139202586946,57.8652897147501],[-124.81424107289197,57.865344165924576],[-124.8145730958088,57.865377406639745],[-124.81491228843902,57.865383793061376],[-124.81524997337766,57.865371098755276],[-124.81556177765829,57.865309946331095],[-124.81589173702892,57.86527475053171],[-124.81621179299154,57.86521927782032],[-124.81653181277693,57.86516492558327],[-124.81686384217713,57.865130867365565],[-124.81719776711878,57.86510355450325],[-124.81752779356192,57.865066112171846],[-124.81784176943445,57.865002730672],[-124.81811704035877,57.86489638557482],[-124.81841461181826,57.86481827683032],[-124.81874877904075,57.86478311139629],[-124.81908642214228,57.86477152860273],[-124.81941858487936,57.86480027224198],[-124.81975064270843,57.86483237877739],[-124.8200883562,57.8648185509577],[-124.82040731371333,57.86486511985676],[-124.8207280985617,57.86492067660831],[-124.82105777034894,57.86496173114139],[-124.82138758321392,57.86499829989074],[-124.82171739671934,57.86503486782396],[-124.82205167121634,57.86506362356156],[-124.8223859812839,57.8650912572177],[-124.82271361903791,57.865130046516676],[-124.82303012458779,57.86518780292214],[-124.82333774593013,57.86526006018362],[-124.82364305086944,57.86533902556439],[-124.82394403714537,57.865421316723655],[-124.82424720220239,57.86550138334596],[-124.8245460836355,57.86558365453292],[-124.82484489639938,57.86566816754308],[-124.82514813531544,57.86574598964508],[-124.8254623674554,57.86580932791195],[-124.82578973494799,57.8658570796185],[-124.82611060608359,57.86591038096093],[-124.82641381462396,57.86598932144218],[-124.82668664627178,57.86609603216726],[-124.82693159305457,57.86621819821842],[-124.82717432916623,57.86634370899203],[-124.82741281696147,57.86647030343661],[-124.8276490941269,57.866600242637006],[-124.82787687302195,57.86673234966098],[-124.82809822623867,57.86686776436233],[-124.82831104622426,57.867006468214726],[-124.82850890565155,57.867151769330576],[-124.82869823174991,57.86730035970019],[-124.82887898959892,57.86745336060841],[-124.82905764134087,57.86760634274731],[-124.82923207936551,57.867759287580114],[-124.82940223391323,57.86791443761888],[-124.82957024741202,57.8680706901728],[-124.82973404708339,57.86822690546536],[-124.82989781327412,57.86838424182958],[-124.8300594732046,57.86854155948567],[-124.83021045697653,57.86870326931806],[-124.83035294180507,57.86886714739477],[-124.83053174552612,57.86901564277953],[-124.83080022137638,57.869127914598124],[-124.83109458252507,57.869221346834955],[-124.83123520908926,57.869377356790025],[-124.8313351992471,57.86955207615332],[-124.8314394753136,57.869724589992785],[-124.8315734689537,57.86989063539397],[-124.83172449942211,57.87005122248151],[-124.83190535233256,57.87020197720818],[-124.83210749265345,57.870346189203204],[-124.83232031229353,57.8704860083887],[-124.83254595380619,57.870620331952615],[-124.83276738142106,57.870754618174296],[-124.8329652429846,57.87090103447356],[-124.8331083505672,57.87097743381753],[-124.83320785567385,57.871236264471],[-124.83335457871037,57.8714001767234],[-124.8334082472115,57.87157336707358],[-124.83340483165718,57.87175166477564],[-124.83336969455516,57.871933049079445],[-124.83331354829627,57.872112006097254],[-124.8332385351753,57.8722874330292],[-124.83313836614857,57.872458153138034],[-124.83302762216955,57.87262990203043],[-124.83293163225899,57.87280178026779],[-124.83286715537565,57.87297729954715],[-124.83282790303362,57.87315528319717],[-124.83280122819363,57.873335620310066],[-124.83278298473131,57.87351603140717],[-124.83276056001664,57.873695284301505],[-124.83272970337511,57.87387446326605],[-124.8326757286424,57.87405119635011],[-124.83251884638626,57.8742146895074],[-124.83223971464358,57.874308694605546],[-124.83191911805565,57.874379903966286],[-124.83168759690557,57.87450236487086],[-124.83149954126857,57.874651002976165],[-124.8313322507164,57.87480991726409],[-124.83117957544415,57.87497344599386],[-124.8310500520143,57.87513829951502],[-124.83095193867457,57.87531015825079],[-124.83086007885652,57.875484315016415],[-124.830759855721,57.87565615515224],[-124.83066381292046,57.875829153545155],[-124.83056569601771,57.87600101211818],[-124.83046128888162,57.876171693814605],[-124.83036186325765,57.87631774484777],[-124.83014997741547,57.87648636015942],[-124.82997019874571,57.8766395555608],[-124.82979249185287,57.87679389053778],[-124.82962525428648,57.87695056051367],[-124.82949157075336,57.87711313325845],[-124.82939133703661,57.877284972651466],[-124.82931626047042,57.877461519563184],[-124.82926222970646,57.87763937317289],[-124.82922717175812,57.87781739370287],[-124.8292320987309,57.87799800914073],[-124.82927082616708,57.87817667881224],[-124.82934121149911,57.878354505402676],[-124.82951512441426,57.87859380710402],[-124.82971608172598,57.87864155852848],[-124.82998255042956,57.878752693308776],[-124.83028590534673,57.878830504746524],[-124.83062041335042,57.878855875582595],[-124.83095067057144,57.87888232980321],[-124.8312518507035,57.87896236305331],[-124.83154425124384,57.879053534204076],[-124.83184318661857,57.87913803266594],[-124.8321443011279,57.87922030644027],[-124.83245430193729,57.87928807711794],[-124.8327841123097,57.87932910320129],[-124.83311634442184,57.87936005559709],[-124.83344187018153,57.8794032856097],[-124.8337581995596,57.879471108699],[-124.83404214240382,57.87956332177758],[-124.83427634692062,57.87969547501163],[-124.83452354978041,57.879816525994556],[-124.83478572033941,57.87993097815845],[-124.83506524444239,57.880029879761224],[-124.83535984016218,57.88011881855668],[-124.83563065659017,57.8802266153046],[-124.83586473211716,57.88036325088841],[-124.83617167634668,57.880393974405244],[-124.83650675666823,57.88040139026838],[-124.83680367487139,57.88048361674861],[-124.83708949865971,57.88058369069684],[-124.83735818044282,57.88069258682516],[-124.83759243824585,57.88082361311337],[-124.8378117663113,57.880960116465964],[-124.8380247017428,57.88109880678828],[-124.83824185542966,57.88123753359511],[-124.83845901071685,57.88137626006762],[-124.83862933401463,57.881529157944975],[-124.83874010555233,57.88169835957753],[-124.83884234081336,57.88187085137368],[-124.83898283924367,57.882033582766354],[-124.83914456117054,57.882192012856784],[-124.83931907318288,57.88234606802345],[-124.8395106613382,57.88249354244506],[-124.83972357714129,57.88263335153608],[-124.8399407804935,57.88277095452326],[-124.84015369946282,57.882910762966155],[-124.84038372936621,57.883042869164406],[-124.84064172330433,57.883157273436574],[-124.84098616305955,57.8832040142526],[-124.84121747477678,57.88329463211972],[-124.84120739005166,57.88348521105847],[-124.84121030127979,57.88366468747992],[-124.84129350775677,57.88383925507859],[-124.84140426355474,57.88400957616616],[-124.8415745072094,57.884165834498184],[-124.8417618619259,57.88431439052606],[-124.84176283983952,57.88448824239217],[-124.84170450270899,57.88467055072378],[-124.84169476511505,57.88484991726627],[-124.84171033011643,57.88502950401678],[-124.8416920891802,57.885211039775655],[-124.84159413620085,57.885378423053105],[-124.84140388773893,57.885529301008795],[-124.84128062951581,57.885696463876656],[-124.84120344881146,57.88587412193751],[-124.84124237924178,57.88604830448638],[-124.84135314130785,57.88621862600469],[-124.84148295109901,57.88638687008034],[-124.84161497421532,57.88655176859112],[-124.84176611436723,57.88671234703263],[-124.84194487538495,57.88686643616875],[-124.84220936423397,57.88697640779456],[-124.84241204791614,57.88710715134706],[-124.84242336542066,57.8872878230324],[-124.84246856007434,57.88746430303336],[-124.84257507996792,57.88763570838591],[-124.84269224782791,57.88780384152321],[-124.84282213801626,57.88796984201998],[-124.84291172215212,57.888143343098655],[-124.84298651145085,57.88831783713035],[-124.84308456664566,57.8884902901904],[-124.84318476596307,57.88866164025829],[-124.8432786054193,57.888834056587584],[-124.84335550657224,57.88900856885944],[-124.84340274754028,57.889187309730346],[-124.84343097529111,57.88936700700935],[-124.84346552974523,57.88954675927616],[-124.84352767147341,57.889721143335755],[-124.84362559500123,57.889898081354026],[-124.84376175416064,57.890066378799396],[-124.84394724467832,57.89020818667848],[-124.84426582707245,57.89027488258632],[-124.84454548732332,57.890372644057535],[-124.84476714278048,57.8905046704861],[-124.84498012342446,57.89064447232483],[-124.84518456691019,57.89078756450648],[-124.8453889431525,57.890932898951974],[-124.84559549865703,57.891076008834744],[-124.84580845122396,57.89121693070985],[-124.84603426514995,57.89135123426787],[-124.8463202991207,57.89144792567891],[-124.84664380130093,57.891492226946895],[-124.84697960082215,57.89147943350333],[-124.84731598392939,57.89144757746252],[-124.84764427411714,57.89140443476281],[-124.84797249490755,57.89136353381456],[-124.84830625253909,57.8913484762192],[-124.84864544478559,57.891362625772814],[-124.84897800190592,57.89138681128253],[-124.84931246267722,57.89141774186922],[-124.84964726672374,57.891437458816306],[-124.84998220817133,57.891452689801476],[-124.8503280027717,57.89145791947974],[-124.8506782550054,57.89145533570948],[-124.85100656217243,57.89148060102336],[-124.85128465331826,57.89156151105198],[-124.85153413195793,57.89168142883697],[-124.85176401593625,57.8918213655307],[-124.85198539741457,57.89196347167007],[-124.85219412681141,57.89210546837159],[-124.85234325962321,57.89226489626117],[-124.8524307547031,57.89243949480565],[-124.85254583836878,57.892608723208056],[-124.85268429295026,57.89277254504597],[-124.85285254824447,57.89292765091055],[-124.85304631813042,57.89307624691335],[-124.85326152143223,57.893213811478255],[-124.8534935985415,57.89335152100626],[-124.8537449660543,57.89347930201559],[-124.85401889391653,57.89355904890255],[-124.85435780829953,57.89351373775296],[-124.8546955957748,57.89350542810484],[-124.8550330078473,57.89350945172167],[-124.85537038588801,57.893514595767584],[-124.85570786630255,57.893516375106586],[-124.85604544900049,57.89351478973803],[-124.85638129744213,57.893500851272414],[-124.85671724782634,57.893483548107234],[-124.85705472802609,57.89348532403247],[-124.85738979282523,57.89349717256252],[-124.85772686477435,57.893512402197224],[-124.85806393699626,57.89352763097887],[-124.85839883242107,57.89354508339338],[-124.85873121106668,57.89357597230541],[-124.85906134523536,57.893611327455446],[-124.85939144604,57.893647803073485],[-124.85972151351002,57.89368539915968],[-124.86005158163948,57.89372299442915],[-124.86038161647348,57.893761710167375],[-124.86070947503828,57.89380264961338],[-124.86103730038094,57.893844709539536],[-124.86136505860497,57.89388901123216],[-124.86169070853477,57.893933294088555],[-124.86201629141814,57.89397981872295],[-124.86234187510648,57.89402634256335],[-124.86266739182567,57.89407510818283],[-124.86299294326577,57.894122751722264],[-124.86331846166236,57.89417151575501],[-124.86364187181962,57.89422026099377],[-124.86396739190037,57.89426902344492],[-124.86429073605818,57.89432000968673],[-124.86461408109207,57.89437099514605],[-124.8649373931823,57.89442310111031],[-124.86525859706983,57.89447518831731],[-124.86558194474804,57.89452617143458],[-124.86590743619719,57.89457605044614],[-124.86623085318364,57.89462478941721],[-124.8665586243136,57.89466907836163],[-124.86688642997692,57.89471224521296],[-124.86721430389655,57.89475316868246],[-124.86754438887327,57.89479074541998],[-124.8678744745091,57.89482832134043],[-124.86820459452683,57.894864775155455],[-124.86853933798484,57.89488780853322],[-124.8688766628158,57.89489516094237],[-124.86921412254948,57.89489802734085],[-124.86955164969994,57.89489865030593],[-124.86988676468343,57.8949093461167],[-124.87022432560914,57.894908846087475],[-124.87056202113621,57.894903860045034],[-124.87089958200373,57.894903358303985],[-124.8712371764947,57.89490173441766],[-124.87157487182374,57.894896745806584],[-124.87190878577617,57.89487714383385],[-124.8722429009955,57.89485081328561],[-124.87257299906094,57.894817718442944],[-124.87289526456351,57.89476436815043],[-124.87321759629901,57.89470877450135],[-124.87354183481263,57.894659925658],[-124.87387383785007,57.89463357317964],[-124.87420972320535,57.894618468440356],[-124.87454199367923,57.894583143977734],[-124.87487412943423,57.89455230384753],[-124.87520813915339,57.894529329738035],[-124.87554218196864,57.8945052335011],[-124.87586839083693,57.89446088197545],[-124.8761946324207,57.894415408362484],[-124.87652298231347,57.89436995174895],[-124.87684915538863,57.89432671911706],[-124.87716528407967,57.89426657740188],[-124.87733353968245,57.89414238012607],[-124.87756312465712,57.89401309183887],[-124.87765795927956,57.89380415733959],[-124.87776970126613,57.89366490277256],[-124.87791659421099,57.89354949738473],[-124.87801996817929,57.893478587982614],[-124.8781697741556,57.89340694817373],[-124.87833186618641,57.89334774899412],[-124.87855150316206,57.89326884606072],[-124.87884502672004,57.893258980803125],[-124.87897295272678,57.89342605047428],[-124.87921810819743,57.89348194981283],[-124.87953303003813,57.89353282798339],[-124.87987342176544,57.89350765286214],[-124.88021093661952,57.89350824880728],[-124.88054584212492,57.893525645518466],[-124.88087368720926,57.893567656593795],[-124.88119042104942,57.89362864019093],[-124.88148740786374,57.89371525326581],[-124.88173261225529,57.89384068574226],[-124.88163283911689,57.89400359706742],[-124.88148017127384,57.89417167186171],[-124.8813864568217,57.89434360654371],[-124.88136636030478,57.894522889154665],[-124.88136728811818,57.894704591579426],[-124.8813514095741,57.89488390969479],[-124.88132287604776,57.8950631215189],[-124.88130488799227,57.89524242197456],[-124.8813248979522,57.89542092014306],[-124.88140195564408,57.89559653289558],[-124.8814388396801,57.895775172865534],[-124.88146517812395,57.895953724267336],[-124.88149781108532,57.89613345014388],[-124.88156221579248,57.8963089566261],[-124.88158865517163,57.89648414422018],[-124.88154324773565,57.89666321465674],[-124.88163942543049,57.89683450177255],[-124.88179717201712,57.896992847006395],[-124.88196128101355,57.89715012391593],[-124.8820299081533,57.89732566577758],[-124.88203512441731,57.897505161553354],[-124.88203401287389,57.897684604234506],[-124.88203501061565,57.89786406465827],[-124.8820423362845,57.89804357824323],[-124.88208977233828,57.89822230703145],[-124.88208233305637,57.89840169672083],[-124.88205805232889,57.89857982347631],[-124.88202319132759,57.898758983009735],[-124.88198411128236,57.89893810714726],[-124.88191559969555,57.89911361946141],[-124.88186613848933,57.89928704858697],[-124.88193051699373,57.8994636767622],[-124.88198642520473,57.89964135539632],[-124.88201273563702,57.899821028703315],[-124.88203466091302,57.900006273110904],[-124.88205695286754,57.900179183268136],[-124.88205158916286,57.90035971232758],[-124.88203989706928,57.90054018829296],[-124.88199247738197,57.90071587802946],[-124.88188612550188,57.900886586669394],[-124.88174826383603,57.90105254435253],[-124.88160417249082,57.90121508487461],[-124.8814432372952,57.90137636221979],[-124.88132860973748,57.90154139315717],[-124.88135495169435,57.901719945648374],[-124.88137278914131,57.90190066988874],[-124.88135690758683,57.90207998934255],[-124.88131119224572,57.90226915244514],[-124.88127612423006,57.90245504027414],[-124.88145605518291,57.90257768241498],[-124.88172749852296,57.902674174843014],[-124.88203724870696,57.902759772487386],[-124.88235979098378,57.90284099043882],[-124.88266311534227,57.90292989743451],[-124.8829558266272,57.90302095787794],[-124.88323986799182,57.903119796040386],[-124.88347248192258,57.90324512039353],[-124.88366428296993,57.903394777030485],[-124.88392670070286,57.90351137777168],[-124.88405274079875,57.90367282014376],[-124.88408324992423,57.903853650451666],[-124.88401919128131,57.90402135097369],[-124.88395031405061,57.904209199600075],[-124.88386067215089,57.90438565838659],[-124.88378583038222,57.90456111961376],[-124.88373848031723,57.90473456809728],[-124.88381583448093,57.904901210715224],[-124.88399468778628,57.90506085278656],[-124.88410998526966,57.90522893480069],[-124.88412780435561,57.905410780635755],[-124.88404890863528,57.90558060031897],[-124.883846169677,57.90572807207743],[-124.88366650324473,57.90588022329314],[-124.88352451145295,57.90604278439172],[-124.88338878116554,57.906207641042066],[-124.88324467716495,57.906370184209685],[-124.8830461836535,57.90651656894582],[-124.88290224346632,57.906673505264045],[-124.88285468688807,57.906853681652635],[-124.88279460418835,57.90702926664768],[-124.8825727975329,57.90717882002508],[-124.88246893955075,57.90733609229532],[-124.88251662250025,57.9075069735071],[-124.88260221650528,57.907680415960954],[-124.88270887655912,57.90785515668845],[-124.8828133944385,57.908031000972954],[-124.88290103428632,57.908206703642435],[-124.8829569600732,57.908384383483224],[-124.88298961094321,57.90856411131408],[-124.88297795409459,57.908743467592124],[-124.88291358252616,57.90892126021454],[-124.88296116961719,57.909095505476074],[-124.88306582529265,57.909266864552606],[-124.8831810649372,57.90943719072519],[-124.88327510621686,57.90961070386041],[-124.88329295662915,57.90979142932633],[-124.88334262326775,57.90996681360916],[-124.88347705585853,57.910130570985814],[-124.88363486593147,57.91028891622995],[-124.8838011173414,57.91044733203974],[-124.88395678682858,57.91060678058414],[-124.88408904783203,57.91077276239574],[-124.88419371331092,57.91094412088538],[-124.88427506953,57.911118648846],[-124.8843183458354,57.91129622260905],[-124.88432990513583,57.911475773920955],[-124.88430560817586,57.91172568517305],[-124.88447462876537,57.91179103143707],[-124.88478439377911,57.91187886612955],[-124.88504694063828,57.91199322306723],[-124.88524954242257,57.912136239213766],[-124.88543925254062,57.91228699833388],[-124.88564825417836,57.912427824257506],[-124.8858936940503,57.91254988756811],[-124.88615839229597,57.91266313872977],[-124.88642098200141,57.912776371738815],[-124.88667282345457,57.912896243949675],[-124.88692466651275,57.913016115699534],[-124.8871721581718,57.913140436991036],[-124.88740474766577,57.91326911972815],[-124.88761593860973,57.91340771770307],[-124.88781420480278,57.913555180179145],[-124.88799331512095,57.91370809042555],[-124.88815541274948,57.91386534481904],[-124.88828556038914,57.91403242673085],[-124.88853708485321,57.9141635087372],[-124.88859512320795,57.914342326236294],[-124.88875681860866,57.9145848176836],[-124.88888903478986,57.91461059558724],[-124.88925123416344,57.914639412764316],[-124.88959249719068,57.91466244647427],[-124.88992993726559,57.914671988334135],[-124.8902676421746,57.91467255880055],[-124.89060353450714,57.91466301898014],[-124.8909399226113,57.91463665855056],[-124.89127594666378,57.91462263176536],[-124.8916137502781,57.9146198348669],[-124.89195171900525,57.91461143052344],[-124.89228704898052,57.91462094886012],[-124.89261977369397,57.91464726857936],[-124.89295230085601,57.91468031537661],[-124.8932848286023,57.91471336134491],[-124.89361053144007,57.91476317368011],[-124.89391440718883,57.914837479014565],[-124.89415336102107,57.91496620276055],[-124.89444840292047,57.91505389264694],[-124.8947606578535,57.91513050876333],[-124.8950643082592,57.915212660737176],[-124.8953335698046,57.915315837114505],[-124.8955598368785,57.91544557472719],[-124.89576239846618,57.91559193935798],[-124.89595417970716,57.91574606549787],[-124.89606705813452,57.91592757738334],[-124.89633537335592,57.91606327010465],[-124.89673851615942,57.916136148127045],[-124.89693409167384,57.91623310305875],[-124.89757688875382,57.916267585311076],[-124.89787168598038,57.916364238304354],[-124.89820222921577,57.91646567265616],[-124.8982365119013,57.9166644781812],[-124.89829222709308,57.9168522450428],[-124.89845441416723,57.91700836609728],[-124.89863783778861,57.91716017615871],[-124.89882983578727,57.91730757047631],[-124.89902394569302,57.917454981980505],[-124.89921591389083,57.91760349711011],[-124.89940577318539,57.91775199455165],[-124.89959777721427,57.917899387853716],[-124.89978978274792,57.9180467809017],[-124.89997964654566,57.91819527759427],[-124.90017162229535,57.918343791461695],[-124.90036148909986,57.918492287656136],[-124.9005535006529,57.91863967969498],[-124.90073908395422,57.918790383213974],[-124.90089700302873,57.918948709433955],[-124.90105917718975,57.919105948984665],[-124.9012384005446,57.91925772098173],[-124.9014218463721,57.91940952756704],[-124.90159246680238,57.91956683615458],[-124.90175662608793,57.919728577662106],[-124.90195521021118,57.91986817077908],[-124.90222858022388,57.92012166105517],[-124.90249873092404,57.920268572616344],[-124.90302856095767,57.92005310313041],[-124.90324922040108,57.92008744602927],[-124.90365098143118,57.920209641830006],[-124.90396417477959,57.920111275019835],[-124.90423109778364,57.920006918977606],[-124.9044980519697,57.91990144108509],[-124.90476422093425,57.91982287451611],[-124.90501631221308,57.919647734545656],[-124.90529589214286,57.91954348049437],[-124.90558968942548,57.91945840977913],[-124.90590783291576,57.919407186206776],[-124.90624639584034,57.91937968300371],[-124.90658469746566,57.91936114955608],[-124.90692510926948,57.91934263256527],[-124.90726509719542,57.91933869195622],[-124.90758053401721,57.919380534537595],[-124.90786028208123,57.91948825787907],[-124.90816633467543,57.91956254837187],[-124.90849232701385,57.919604475283144],[-124.90882491194044,57.91963748263277],[-124.90915964050613,57.919669385105685],[-124.90948998600216,57.91970685882897],[-124.90981770154917,57.919762255715185],[-124.91014096951714,57.91982546656739],[-124.91046469336598,57.91987297804162],[-124.91078559339837,57.919872237096676],[-124.9111024993594,57.91979070797719],[-124.91142268377455,57.91974173112533],[-124.91174712235538,57.91976457025179],[-124.91207717933078,57.919812129522334],[-124.91240489960536,57.919867520051284],[-124.91273275051608,57.919918424461144],[-124.91305862139649,57.91996482553218],[-124.91338231773167,57.92001345125384],[-124.91370809307051,57.92006321472903],[-124.91403182347126,57.92011071754847],[-124.91435763288139,57.92015935811107],[-124.91468334605477,57.920211361868986],[-124.91500906012887,57.920263364833524],[-124.91533711205687,57.92030753487609],[-124.91566561738443,57.92033600548978],[-124.91599931397747,57.92033086972838],[-124.9163378455232,57.92030446218714],[-124.91667403992105,57.92028588593832],[-124.91701215081265,57.92027405398024],[-124.91734993868796,57.92027343446986],[-124.91768740384916,57.920284027409615],[-124.91802272636967,57.92029572368591],[-124.91836012741973,57.920308557583624],[-124.91869749645983,57.92032251195805],[-124.91903275517704,57.92033644835496],[-124.91937009249665,57.92035152235791],[-124.91970746229683,57.920365474175824],[-124.92004480014717,57.92038054647107],[-124.92038005988083,57.920394479478816],[-124.920717462621,57.92040730740864],[-124.92105486559133,57.92042013448425],[-124.92139022253212,57.92043070095591],[-124.9217277223917,57.920440162332845],[-124.92206528670091,57.92044738019119],[-124.92240102972765,57.92044448813625],[-124.92273728662094,57.920423653922505],[-124.9230736073614,57.9204005761964],[-124.9234095745914,57.92038983227569],[-124.9237471066818,57.92039816720512],[-124.9240863003863,57.92042221697605],[-124.92441436435729,57.920466364677246],[-124.9247206179046,57.920535010556506],[-124.92501356798095,57.920625980219896],[-124.92529996337608,57.920724747505844],[-124.92558210703287,57.92082460147985],[-124.92585347494943,57.92093221912273],[-124.9261012754228,57.92105198376746],[-124.926321159165,57.92118834686893],[-124.92652818866341,57.921331335601835],[-124.92673729837507,57.92147546237037],[-124.92697455200474,57.92159514045044],[-124.92729882410062,57.92162466975979],[-124.9276404295607,57.92163863549571],[-124.92798206723901,57.92165147902137],[-124.92831692583069,57.92167996942936],[-124.92864056081251,57.92173192217417],[-124.9289531324223,57.921801730665486],[-124.92926132423142,57.92187711118193],[-124.92956088309475,57.921959151176914],[-124.92984957080398,57.922052319100644],[-124.93011670652722,57.92216101563002],[-124.93037732037203,57.92227638882057],[-124.93064225286105,57.9223884313864],[-124.9309244550596,57.92248715288538],[-124.93120451616544,57.92258697820254],[-124.93146951702964,57.922696776486454],[-124.93173442388019,57.92280993826702],[-124.93199725344657,57.92292196127875],[-124.93226436971601,57.92303177493883],[-124.93254223220829,57.92313494459977],[-124.93282661938075,57.9232314363817],[-124.93311749931925,57.92332237157889],[-124.93342136321756,57.92340219414429],[-124.93371013515782,57.923493111168206],[-124.93394288429164,57.92362395669463],[-124.93408599731158,57.92378885417946],[-124.93426550336618,57.92393609712288],[-124.93457750010786,57.92402719802298],[-124.93466391184182,57.9241815471981],[-124.93462445251714,57.924381996930954],[-124.93433890805046,57.924325877087114],[-124.93399960900959,57.924304095996206],[-124.9336619124041,57.92430027236104],[-124.93332578594237,57.924315527532755],[-124.93299148365449,57.92434089081139],[-124.93265513376518,57.92436399366599],[-124.93232284588855,57.92439273619369],[-124.93199439695348,57.92443496779817],[-124.93167404010057,57.92448960101761],[-124.9313576808823,57.924552116699765],[-124.93103716272664,57.92461235508995],[-124.93071680297204,57.92466698601835],[-124.93038834983831,57.92470921367639],[-124.93005986406175,57.92475256186564],[-124.92975987595598,57.92483315078694],[-124.92948457813236,57.924936369319276],[-124.92922786128007,57.92505431736312],[-124.92899612169687,57.92518480325112],[-124.92878523352655,57.925324429162224],[-124.92858684923351,57.92546976329214],[-124.9283988899538,57.92561966738434],[-124.92821722986154,57.92577074350953],[-124.92804602686482,57.925925268335796],[-124.92791879968055,57.9260924843572],[-124.92776016352109,57.92625047478631],[-124.92752009573806,57.92637640496762],[-124.92725514313582,57.926486432049344],[-124.92700048763993,57.92660551432773],[-124.92675209932595,57.926726889819946],[-124.92650370940855,57.926848264864525],[-124.92625739681603,57.92697077781165],[-124.92601312951842,57.92709555001374],[-124.9257772083454,57.92722375387493],[-124.92555587010288,57.927358804524964],[-124.92534492491886,57.92749954665077],[-124.92513608914176,57.92764030549064],[-124.92493348860047,57.92778447913891],[-124.92475180412794,57.92793555088282],[-124.92459103587622,57.9280935208113],[-124.92444913715119,57.92825612928219],[-124.92432399711555,57.92842335931819],[-124.92421564802956,57.9285940896266],[-124.92415780270355,57.92877083562177],[-124.92416533549024,57.92895035264388],[-124.92417286834888,57.92912986969937],[-124.92416984588341,57.92930930157632],[-124.92422177587756,57.929486933895],[-124.92433307378192,57.92965607261061],[-124.92445284919748,57.9298241580719],[-124.92456414913941,57.92999329665435],[-124.92467967233729,57.930162469242795],[-124.92481221393564,57.930327292643845],[-124.92496388525795,57.930487783834685],[-124.9251198122422,57.930647187590274],[-124.92528213814549,57.930804399575116],[-124.92542741578262,57.93096708193415],[-124.92553446908111,57.93113730720914],[-124.92562031529887,57.93131072627175],[-124.92570613026771,57.93148526665623],[-124.92581532955272,57.93165438747051],[-124.92594788138838,57.93181921000049],[-124.92605916193038,57.93198946903505],[-124.92612383605292,57.932164960494084],[-124.92615674594062,57.93234356083282],[-124.92617273402922,57.93252314645869],[-124.92617816591732,57.93270264706331],[-124.92616456430262,57.93288311595208],[-124.92614047016124,57.933061257121985],[-124.92610789855829,57.93324045162183],[-124.9260542455685,57.93341835467403],[-124.92600273542544,57.93359515340312],[-124.92598916468009,57.93377450109465],[-124.92600937525839,57.93395412103753],[-124.92604439751933,57.93413273875323],[-124.9260857541958,57.93431140752994],[-124.92613347740891,57.934489006012555],[-124.92618331245382,57.9346666215219],[-124.92623103657864,57.934844220035956],[-124.92627453835253,57.935021784547565],[-124.92631167427872,57.935200419402776],[-124.92633822142751,57.93538009059088],[-124.92634998881196,57.935559642752146],[-124.92633641901404,57.93573899084955],[-124.9262954322471,57.93591699651529],[-124.92623125104828,57.936093693743],[-124.92615235301243,57.93626802919231],[-124.92606923128365,57.936442330601864],[-124.92599033176484,57.93661666601917],[-124.92591562247546,57.93679215680368],[-124.9258409124886,57.93696764757883],[-124.92576201080854,57.937141982957336],[-124.92568099686724,57.93731630130254],[-124.92559998217465,57.93749061963038],[-124.92552107827974,57.937664954962315],[-124.92544425315782,57.93784042865521],[-124.92537587359338,57.93801597043046],[-124.92531379606766,57.93819268463037],[-124.92525382954678,57.938369415859675],[-124.92519175086373,57.93854613006845],[-124.9251317832053,57.93872286130869],[-124.92507181498308,57.93889959255486],[-124.92501395782504,57.93907634083617],[-124.92495398848503,57.93925307209509],[-124.92496325893897,57.93937203788522],[-124.9250050282613,57.93961015683389],[-124.92505486476345,57.939787773722486],[-124.9250983346363,57.93996646089754],[-124.92509742740515,57.940145911868],[-124.9250479511058,57.940324971219816],[-124.92507033655173,57.94050236685972],[-124.9252370244264,57.94065625051687],[-124.92546124315514,57.94079265189583],[-124.92570056612821,57.940917958478316],[-124.92595272133855,57.94103775994956],[-124.92620705396976,57.94115533525477],[-124.92646132413877,57.941275152804394],[-124.9267134841696,57.941394952881815],[-124.9269721411633,57.94150919670302],[-124.9272350552773,57.94162235266639],[-124.9274915396497,57.94173882122947],[-124.92772866766067,57.94186747138132],[-124.92794227971993,57.942006026546835],[-124.92813451951615,57.94215338246441],[-124.92832247325424,57.94230294689226],[-124.92853180240787,57.94244370994151],[-124.9287625390292,57.942574550148095],[-124.92900185239984,57.94270097239915],[-124.9292432792209,57.94282741119995],[-124.92947830824635,57.94295604142505],[-124.9296983323718,57.94309240209092],[-124.92989909591604,57.94323758073203],[-124.9300764069722,57.94339042218034],[-124.93023880863741,57.94354763023648],[-124.93038844458343,57.94370810054001],[-124.93052102707043,57.943874041974524],[-124.93061329301814,57.94404638961026],[-124.9306885687468,57.944221965784685],[-124.93074691784054,57.94439852780396],[-124.93076715686725,57.944578149035074],[-124.93077050048866,57.94475763479272],[-124.93078865976207,57.944936117787606],[-124.9308237149673,57.945114736313535],[-124.93086510644564,57.94529340567406],[-124.9309086103075,57.94547209199166],[-124.9309542584794,57.94564967390023],[-124.93099776317744,57.945828360255845],[-124.93103918816304,57.94600590833289],[-124.93107424555657,57.94618452699463],[-124.93110507920292,57.94636311181514],[-124.93112532099914,57.94654273336446],[-124.9311075459019,57.946722050158264],[-124.93106023354335,57.94690000855085],[-124.93101503281713,57.94707798389444],[-124.93100359321178,57.9472573515788],[-124.93101749870307,57.94743692251039],[-124.93103140432724,57.947616493474555],[-124.93101362827413,57.94779581045934],[-124.93096420198859,57.947973752085254],[-124.93089371762935,57.9481492816317],[-124.93081270376305,57.94832360511906],[-124.93072957698521,57.94849791165042],[-124.93065067377584,57.948672252042485],[-124.93056965765494,57.94884657547861],[-124.93048441640394,57.94902086501201],[-124.93040551095943,57.949195205355345],[-124.93034135832676,57.94937078566853],[-124.93028981456813,57.94954871039563],[-124.93022985332753,57.94972544598085],[-124.93016144256838,57.94990211378067],[-124.93011415365166,57.9500789510669],[-124.93009637205733,57.950258268396155],[-124.93009545651708,57.950438842719215],[-124.9301030220097,57.95061836350308],[-124.93011692444153,57.95079793516679],[-124.9301308589316,57.9509763854932],[-124.93014264931979,57.951155940273736],[-124.93015655213983,57.951335512035406],[-124.93017045509275,57.95151508382972],[-124.93018647051794,57.95169467260429],[-124.9302024860962,57.95187426141111],[-124.93022061418714,57.9520538671971],[-124.93023666200493,57.95223233469672],[-124.93025267805217,57.9524119235997],[-124.9302686942525,57.95259151253482],[-124.9302847106059,57.9527711015023],[-124.93029861470231,57.95295067355616],[-124.93031463135176,57.95313026258825],[-124.9303517724571,57.953310021104],[-124.93043689359843,57.95351147544128],[-124.93007291507763,57.95353098809931],[-124.92975794656304,57.95368436700792],[-124.92959977664354,57.95382217950322],[-124.92942857932798,57.95397222517965],[-124.9293252035254,57.954114963823706],[-124.92915134802041,57.954284055580274],[-124.92898558933896,57.954465550118236],[-124.92886338977092,57.954601407534476],[-124.92858195172043,57.9547640263248],[-124.9284294709108,57.95492431599199],[-124.92827068319737,57.9550834332039],[-124.92811400667715,57.95524256723402],[-124.92795732882992,57.95540170110687],[-124.92780903588124,57.955563145513516],[-124.92766704734983,57.95572576212048],[-124.92753133129713,57.95589067232383],[-124.92739145290952,57.95605330568349],[-124.92724523553436,57.95621588794201],[-124.92709485573243,57.956376193324076],[-124.92694236203728,57.95653648156478],[-124.92678356121411,57.95669559727792],[-124.92662059786052,57.9568524360686],[-124.92644502140863,57.957006929893126],[-124.92626112111762,57.9571568699675],[-124.92607299405286,57.957306775786705],[-124.9258869781484,57.95745669838003],[-124.9257177338667,57.95761124239324],[-124.92557780915739,57.95777499552442],[-124.92540017556432,57.95792722834981],[-124.92517446179131,57.958061127315744],[-124.9249821646275,57.95820875493124],[-124.92490324644669,57.958381972337314],[-124.92489174213571,57.95856246302114],[-124.92484227269554,57.95874040440603],[-124.92466264719805,57.958888133860704],[-124.92440152194726,57.95900380000266],[-124.92413421738287,57.959113807626466],[-124.92386899189383,57.9592249531535],[-124.92359755504746,57.959331561497194],[-124.9233157456184,57.959431355748706],[-124.92302983771722,57.95952662977993],[-124.92275212226942,57.95963094249711],[-124.92253269503435,57.95976600980898],[-124.92244956885374,57.959938070532814],[-124.92244439070795,57.96011861251419],[-124.92245403441243,57.96029815264308],[-124.92245945254967,57.96047765866534],[-124.92243737165828,57.96065806418777],[-124.92231013056634,57.96082079546266],[-124.92211777585094,57.96096954076055],[-124.9219233711049,57.96111602596594],[-124.92173940047223,57.96126708183929],[-124.92163308999609,57.96143671166898],[-124.92162160122851,57.96161608127538],[-124.92165662841445,57.961794705365456],[-124.9217001075873,57.961973397809096],[-124.92174150643548,57.96215095180997],[-124.92179558327582,57.96232860831615],[-124.9218517735711,57.96250628191365],[-124.92182741470002,57.96269227755308],[-124.9215782265353,57.96261174805779],[-124.92129815023966,57.962502927242845],[-124.92100052792011,57.9624163967325],[-124.92068526251725,57.96235552054627],[-124.92034972490737,57.9623382235466],[-124.920009413711,57.962339954961095],[-124.91967605397764,57.96232043061429],[-124.9193432107024,57.962282963343384],[-124.9190075130236,57.9622712698722],[-124.9186728633425,57.962296598244095],[-124.91834208391761,57.9623342952335],[-124.91801533591735,57.962378753968295],[-124.91769057085503,57.96242771457231],[-124.91736378895513,57.96247329309604],[-124.9170349579725,57.96251661090441],[-124.9167081421682,57.96256330920664],[-124.9163915021416,57.962623549106915],[-124.91607677992165,57.96269053371294],[-124.915746091518,57.96272486013913],[-124.91541292483339,57.9626985968481],[-124.91507348453482,57.962670038404035],[-124.91485888568565,57.962782700295435],[-124.91481983082247,57.96296408885237],[-124.91479310450863,57.96323082270625],[-124.91466882362741,57.96350910095258],[-124.9145940079756,57.963684590381504],[-124.91451707860854,57.963860062605306],[-124.91445702032767,57.964036793775676],[-124.91443493132202,57.96421607727273],[-124.91441706819829,57.96439539519555],[-124.91434228201366,57.96456976326648],[-124.91422955718397,57.964740457575815],[-124.91414423647929,57.96491361821393],[-124.91408199684207,57.96509257497713],[-124.91403662895766,57.965272790758476],[-124.91403362000601,57.96544998648968],[-124.91410047350278,57.96562326442558],[-124.91422873789438,57.96579255565669],[-124.9143485509042,57.96596177800052],[-124.9143878386652,57.966138196452945],[-124.91431929110675,57.966315980581385],[-124.91421501358836,57.966486743992164],[-124.91409600774251,57.96665514416481],[-124.91398119477428,57.96682470005541],[-124.91388533465248,57.96699665350385],[-124.91380420121456,57.96717097013733],[-124.91372729344764,57.967345321171145],[-124.91365457897908,57.96752082799807],[-124.91358186383104,57.967696334818065],[-124.91351126124506,57.96787185884339],[-124.9134406255612,57.9680485042502],[-124.91337002165338,57.96822402826649],[-124.9132973038147,57.968399535062936],[-124.91322247201558,57.96857502463588],[-124.91314555867406,57.96874937559497],[-124.91306653131812,57.96892370932313],[-124.91298327660816,57.9690980085961],[-124.9128957944856,57.969272273405956],[-124.91279992314924,57.969444226522654],[-124.91269774337903,57.96961500653945],[-124.91258080170378,57.96978454453448],[-124.91244916287397,57.96995059769174],[-124.9122986649452,57.97011088872706],[-124.91212511347359,57.970264261717],[-124.91193686435193,57.97041414968229],[-124.91174653282664,57.97056289877716],[-124.91156247500203,57.97071394213073],[-124.91137633479049,57.97086384661999],[-124.91119016058535,57.9710148722626],[-124.9110060983088,57.971165914921386],[-124.91083042325063,57.97131926914784],[-124.91067152420518,57.97147724678383],[-124.91052306096917,57.971639796113536],[-124.91038285509707,57.97180914269229],[-124.91025945811964,57.971981991434376],[-124.91016564873952,57.97215508180844],[-124.91011635196287,57.972324049177175],[-124.91021308147104,57.97248747953287],[-124.91040927687207,57.972647235598025],[-124.91056099248355,57.97280999314729],[-124.9106957361437,57.972974855282715],[-124.91079224219779,57.973146135072994],[-124.9108674835874,57.97332172785398],[-124.91099163013146,57.97348762490222],[-124.91116468238187,57.97364382607609],[-124.91135061254879,57.973793402175126],[-124.91153869027877,57.97394187388953],[-124.9117225423146,57.97409031088152],[-124.91196635627558,57.97421231684544],[-124.9119062369494,57.97439017020995],[-124.91195394403657,57.97456778130762],[-124.91206532028184,57.974736938337365],[-124.91221285671888,57.97489853850727],[-124.91238598550032,57.97505249554391],[-124.91257615481159,57.975202104619925],[-124.91277916993089,57.97534620981818],[-124.91302728772821,57.97546600566473],[-124.91329690080079,57.9755736378761],[-124.91351276500446,57.97571223833157],[-124.91376514737392,57.9758309458816],[-124.91402393728254,57.97594746179018],[-124.9142655598113,57.97607281077819],[-124.9144964533325,57.97620368034401],[-124.91472087767994,57.97633898353537],[-124.91494318991822,57.976474269179306],[-124.91516550375809,57.976609554472354],[-124.91538355932872,57.97674592644657],[-124.91559088582792,57.976887819175055],[-124.91577463879575,57.977040736640106],[-124.91596057176864,57.97719142825517],[-124.91618725052443,57.97732226070483],[-124.91646329203263,57.97742769544451],[-124.91676102285871,57.9775142374631],[-124.91708245947993,57.97758526796066],[-124.91740765983702,57.97759912351261],[-124.9177348964778,57.97754233016087],[-124.91804368962701,57.9774651965742],[-124.9183380403531,57.97737560694652],[-124.91860965483386,57.97726788585946],[-124.91885472503651,57.97712742102479],[-124.91909537223013,57.97699364990298],[-124.9193571069308,57.97693520036069],[-124.91965393723089,57.977053135032214],[-124.91986550909756,57.97719505539495],[-124.92001728406,57.97735780298047],[-124.92006513002107,57.97753204754261],[-124.92004507690056,57.97771471585402],[-124.92002716964356,57.9778962799075],[-124.92002835108242,57.97807575517628],[-124.92013983859289,57.978242663299135],[-124.92028953738313,57.97840427224989],[-124.92045409886231,57.97856375797611],[-124.92063150603444,57.97871773912035],[-124.92083662047733,57.97886409250078],[-124.92102046891681,57.97901476026249],[-124.92113625582293,57.979179459104294],[-124.92118602988818,57.97936044910457],[-124.92117450128481,57.979540943501526],[-124.92111659538755,57.97971657631408],[-124.92102281672972,57.97988967575004],[-124.92091635362198,57.980062672583344],[-124.92079944874608,57.980231098270146],[-124.92065301199214,57.980397041695355],[-124.92051294805837,57.98056191489067],[-124.92042771710238,57.980731718260856],[-124.92040993922119,57.98090879733872],[-124.92042592050299,57.98108839290221],[-124.92046089568458,57.98126926382279],[-124.92048952917668,57.981450083464274],[-124.92050339705057,57.9816296620208],[-124.92051303699904,57.98180920640787],[-124.92052267703973,57.98198875082866],[-124.92053020312332,57.98216827818229],[-124.92053984333823,57.98234782267091],[-124.92054948364535,57.982527367193384],[-124.92055912404462,57.982706911749666],[-124.92057087862582,57.98288647344021],[-124.9205826333194,57.98306603516434],[-124.920607072785,57.98324569952176],[-124.9206569786331,57.98342220488192],[-124.92073228674259,57.98359779402739],[-124.92083306192622,57.98377022410136],[-124.92094873376355,57.983939409572145],[-124.9210347117456,57.98411171989476],[-124.92105069737882,57.98429131599952],[-124.92105608004445,57.984471948081],[-124.921074212347,57.98465043993712],[-124.92109019839847,57.98483003614079],[-124.92109346712182,57.98501065123279],[-124.92111794252102,57.9851891944626],[-124.92117627804986,57.98536688977195],[-124.92127497800026,57.985538181339194],[-124.92141833580166,57.985700860426924],[-124.92160222005056,57.9858515284902],[-124.9217903665108,57.98600110907724],[-124.92196358575443,57.9861550555144],[-124.92209842736952,57.98631990848548],[-124.92223115587561,57.98648474427527],[-124.92237448924645,57.98664854391173],[-124.92248806258468,57.98681771149848],[-124.92261019077412,57.98698358305923],[-124.92281756893837,57.987126587524926],[-124.92301213398129,57.987273974965895],[-124.92323454083868,57.98740924837875],[-124.92347197485917,57.98753679093994],[-124.92372225739359,57.98765882833963],[-124.92404879407819,57.9877029630356],[-124.9243845600694,57.98772025119812],[-124.92472039060627,57.98773529569133],[-124.92505833577786,57.987750356369425],[-124.92539628122057,57.98776541619191],[-124.92573204839064,57.98778270096588],[-124.92606989816075,57.98780112332177],[-124.92640563389226,57.987819527814956],[-124.92674124172106,57.987842417116134],[-124.92707230073215,57.9878764857112],[-124.92739201953952,57.987937382444734],[-124.92772304794968,57.987972570842494],[-124.92805631943703,57.98800328974839],[-124.92838494658616,57.988048552248],[-124.92871620090123,57.98807588829053],[-124.92905113755653,57.988048291195554],[-124.92938421517005,57.98801170498859],[-124.92971517775406,57.98797510099611],[-124.93004992102055,57.9879542298815],[-124.93038693803898,57.98792776780248],[-124.93071572065081,57.987893387215415],[-124.93101805151788,57.987970960957455],[-124.93131580372722,57.98806083571942],[-124.93161371692548,57.98814510275269],[-124.93192034427257,57.98822046549363],[-124.93222915103904,57.988293601622246],[-124.93253795900858,57.988366737042156],[-124.93284459002082,57.988442097677684],[-124.93314680223577,57.98852415230513],[-124.93344257694352,57.98860951981252],[-124.93374043556935,57.988696024980065],[-124.9340382955677,57.98878252949098],[-124.9343449329871,57.98885788671351],[-124.93467619878088,57.98888520798843],[-124.93501188479897,57.98890583368753],[-124.9353498128294,57.98892198974348],[-124.93568774115067,57.98893814494421],[-124.93602563798112,57.988955420706304],[-124.9363612935966,57.988977164430004],[-124.9366967907929,57.98900451439444],[-124.9370386953103,57.98902967120167],[-124.93738265124821,57.98905708680224],[-124.93772222014033,57.989090074945786],[-124.93805096361531,57.98913194944746],[-124.93836029721301,57.98918712878366],[-124.93861995299417,57.98927892746077],[-124.9387844815007,57.98944399952396],[-124.93897678489526,57.98959919717034],[-124.93921857857768,57.98972450279807],[-124.93946895855348,57.98984538953559],[-124.93972574697655,57.98996408337318],[-124.93998468319121,57.990081672106136],[-124.94024147486081,57.990200364981746],[-124.94048974678634,57.99032123307731],[-124.94072728947705,57.99044762391858],[-124.94093276779013,57.99058609830512],[-124.94106341625982,57.990753142178114],[-124.94119829499489,57.99092021950084],[-124.94136524120664,57.99107521266383],[-124.94153641793487,57.99123023918075],[-124.94170971065456,57.991385282269796],[-124.94188515100099,57.99153922050148],[-124.9420606243898,57.991692037106695],[-124.94223606760859,57.991845974927955],[-124.94241151226618,57.991999912544074],[-124.94258698995084,57.992152728533064],[-124.94276881295443,57.992305594563526],[-124.94294855437772,57.99245732220281],[-124.94310910756202,57.99261450604756],[-124.94325249228638,57.992780527179974],[-124.94336617825087,57.99294967810761],[-124.94335891833782,57.993132453368524],[-124.94332369423165,57.99325668027769],[-124.9453945837082,57.994154693116975],[-124.94564501311899,57.99427556884476],[-124.9459019143551,57.99439200851461],[-124.94616307817982,57.99450735966952],[-124.94640274974638,57.994634879100374],[-124.94659059844497,57.99480012609489],[-124.94680962896882,57.99490953512756],[-124.94714120154741,57.99485270198159],[-124.94747258445447,57.99480259657389],[-124.94779954832777,57.994759185566394],[-124.94812657429486,57.99471353090716],[-124.94844756932291,57.99465661120725],[-124.94875839784572,57.9945850289249],[-124.94906303789547,57.99450778884423],[-124.94936565610205,57.994427167151194],[-124.9496662523967,57.994343163860194],[-124.94996883661113,57.99426366224041],[-124.95026734686837,57.994178519549486],[-124.95058419865713,57.99411819720568],[-124.9509151630497,57.99408266183361],[-124.95123816919144,57.994029116361276],[-124.95155514344691,57.99396430601748],[-124.95185974139217,57.99388818103273],[-124.95216234859758,57.99380755305362],[-124.9524587981282,57.993720146051665],[-124.95275114200348,57.99362821951293],[-124.95303306731415,57.993530602280515],[-124.95327770834038,57.993404650330135],[-124.95335240237486,57.993229133653344],[-124.95352567271122,57.99308355326738],[-124.95376825700978,57.992955341048635],[-124.9540274757431,57.99283735380308],[-124.95429493280783,57.9927272823136],[-124.95457069076214,57.99262288367681],[-124.95484849938553,57.99252074389048],[-124.95512425428336,57.99241634413339],[-124.95538756947968,57.992302873122384],[-124.95561754820163,57.99217119408043],[-124.95592265358923,57.99207599574631],[-124.95630316656674,57.9920071847678],[-124.95661010297385,57.991922094238944],[-124.95669858338643,57.99178257727336],[-124.95669256068489,57.99161876660601],[-124.95667182941828,57.99145147599332],[-124.956636420957,57.99127958400602],[-124.9565883877457,57.991105350013264],[-124.95652984452785,57.990928790533786],[-124.95646290601117,57.99074992208698],[-124.95638968686632,57.99056876119481],[-124.95631223937187,57.990387567228844],[-124.95623059476843,57.99020521875912],[-124.95615106546555,57.990022886812135],[-124.95607153693511,57.989840554853394],[-124.95599409247826,57.98965936084467],[-124.95592296101128,57.98947933787014],[-124.95586022571395,57.989301623902215],[-124.95586916421605,57.98913232231644],[-124.9560153234485,57.988971945821234],[-124.95617416806796,57.98881166841351],[-124.95633929227299,57.9886536832885],[-124.9565044150884,57.98849569798607],[-124.9566611723572,57.988334282128655],[-124.95681170970782,57.988168330853526],[-124.95697266192221,57.98800806916034],[-124.95716069483088,57.9878626005392],[-124.9573945886138,57.98774104488696],[-124.95767639537885,57.987645661306104],[-124.95798528289068,57.987565070206706],[-124.95829625232678,57.98748561632258],[-124.95858856447283,57.98739255619623],[-124.95885811483373,57.987281371286294],[-124.95913170575459,57.98717694734446],[-124.9594381611349,57.987107550632196],[-124.95976936605766,57.98706077937785],[-124.96008897126084,57.986974658758854],[-124.96038755865898,57.98696016003231],[-124.96066637509266,57.98704869956539],[-124.96094025032053,57.98716299827045],[-124.96120324515842,57.987288428349196],[-124.96144721248753,57.98741370985092],[-124.96165896965752,57.9875566869185],[-124.96187075944886,57.98769854225081],[-124.96211700106313,57.98781823192289],[-124.96240406856126,57.98791468362757],[-124.96271703702023,57.98799226775195],[-124.9630412911762,57.98804414058402],[-124.96337076588482,57.98806015997167],[-124.96371363922087,57.988050484341656],[-124.964056605211,57.988037443564615],[-124.9643904637626,57.98804788614758],[-124.96471705158123,57.98809192136213],[-124.96503667866229,57.98815833504132],[-124.96534558029653,57.98823027311721],[-124.96564354028368,57.98831558562548],[-124.96593932542912,57.988403123940465],[-124.96623511195384,57.98849066160821],[-124.9665374283695,57.98857151920604],[-124.9668529264667,57.988634531554986],[-124.96717495404197,57.988690863707504],[-124.96749698258353,57.98874719508661],[-124.96781465987563,57.9888079786836],[-124.96812136526017,57.98888325830549],[-124.96842365808527,57.98896523308934],[-124.96871513349785,57.98905609690219],[-124.96898500372379,57.98916361812208],[-124.96925695917705,57.98927227656296],[-124.96947513078935,57.989414169077286],[-124.96967819487148,57.98956716125158],[-124.96992039848944,57.989681196994276],[-124.97022555442449,57.9897362698731],[-124.97056328978566,57.98976018677059],[-124.97091414294307,57.98976850067196],[-124.97125874494492,57.989773400480814],[-124.97159366541189,57.989745696586134],[-124.97193014710514,57.98973819380684],[-124.97226699706106,57.989717233066514],[-124.9726017628343,57.989695133774205],[-124.97294020497075,57.98969325185591],[-124.97327849372567,57.98969697621078],[-124.97361684386654,57.989698456855606],[-124.97395335538131,57.98968982755011],[-124.97429005057715,57.98967446883759],[-124.9746268680144,57.98965462356987],[-124.9749616624593,57.98963139693407],[-124.97530270814049,57.98961158243974],[-124.9756477682544,57.98959964951759],[-124.97591177760815,57.98969028670864],[-124.97604040289315,57.98985952279679],[-124.97613507473532,57.99003298497941],[-124.97622551839913,57.99020641468925],[-124.9763308258111,57.99037771503647],[-124.97646806639837,57.990541408566465],[-124.9766266065825,57.99069965697074],[-124.97677871271482,57.99086122086847],[-124.97692873614501,57.99102164698453],[-124.97707873030012,57.99118319438849],[-124.97722664170789,57.99134360401968],[-124.97737449328231,57.991506256373476],[-124.97751385715523,57.99166996522751],[-124.97766174179965,57.991831495890246],[-124.97783310237101,57.991985354537526],[-124.97801295342187,57.99213815632294],[-124.97819921092061,57.99228876359345],[-124.97839405060273,57.9924349496442],[-124.97864239908134,57.99255798991205],[-124.9789014445394,57.99267662489288],[-124.97917348463628,57.992784142107254],[-124.97947828303556,57.992853772624365],[-124.9798115486847,57.9928877267504],[-124.98014910523294,57.99291946949601],[-124.98046686876863,57.99297910182026],[-124.98076695459534,57.993066640017275],[-124.98107163648552,57.99314075264596],[-124.98140294357565,57.99316907950609],[-124.9817457068169,57.993164964663606],[-124.98208046734224,57.99314396294964],[-124.98241347759281,57.993109487086144],[-124.98274851075453,57.993078390806446],[-124.98308308767052,57.99306411517497],[-124.9834215292805,57.993063328106906],[-124.98376196413055,57.99306704201127],[-124.98410644633758,57.99307751583258],[-124.98443304939028,57.99304522951647],[-124.9846895723607,57.99294510956433],[-124.98466127569442,57.99313109048758],[-124.98470723608679,57.9933086629592],[-124.98477648910806,57.99348529093664],[-124.98487124078603,57.993657626164044],[-124.98499360617363,57.993825684664756],[-124.9851351266258,57.99398940204928],[-124.98530009247733,57.99414656753656],[-124.98548430472293,57.99429602745674],[-124.98568341272983,57.9944422353275],[-124.98588469765907,57.99458621612034],[-124.98608380876455,57.99473242343959],[-124.98629364681614,57.994873103605656],[-124.98652919712029,57.99500164034272],[-124.98678408501874,57.99511910679056],[-124.98704752455879,57.995233272649],[-124.98732582995676,57.99534530743218],[-124.98762114637121,57.995454105648605],[-124.98789314085558,57.99556496972355],[-124.98809936529216,57.99568318637223],[-124.98796600611263,57.99584369533927],[-124.98783657311132,57.99601545064306],[-124.9877367773264,57.9961863089328],[-124.98763695038704,57.9963582886169],[-124.98752660859354,57.99652794518304],[-124.98740363692694,57.99669526256165],[-124.98728486371968,57.99686373338305],[-124.98717234341238,57.9970356165814],[-124.98707033617549,57.99720982283041],[-124.98707199009836,57.997383693951015],[-124.98716041731971,57.997555980134536],[-124.98726781943195,57.99773065356853],[-124.98732017293909,57.997907152712514],[-124.9873089263999,57.99808877777722],[-124.98735070567312,57.99826519675934],[-124.98743699100166,57.99843858832052],[-124.98753176739812,57.998610922578195],[-124.98763291995688,57.99878218347537],[-124.98773618846299,57.99895346036439],[-124.98783731263528,57.99912584261096],[-124.98793209260506,57.99929817671195],[-124.98801623770308,57.99947267349948],[-124.98808977803073,57.999648211552945],[-124.98815485875222,57.99982368547884],[-124.98822202493416,58.000000296877396],[-124.98824465386224,58.000181057449325],[-124.98840687986753,58.00036287585186],[-124.98846776330741,58.00053719626526],[-124.9884989146863,58.00071577811326],[-124.98853218149564,58.000894376012496],[-124.98857179405381,58.00107302200863],[-124.98861140698904,58.001251668027486],[-124.9886552808495,58.00142922466964],[-124.9886991249066,58.001607902775525],[-124.98874722996707,58.001785491498815],[-124.98879533548278,58.00196308023861],[-124.98884978706677,58.0021407170529],[-124.9889021239518,58.002318337860586],[-124.98894811565894,58.00249591062901],[-124.98899199256681,58.002673467398964],[-124.98904221562327,58.00285107223691],[-124.9891136521148,58.00302659434988],[-124.98920409644876,58.00320338202763],[-124.9894313385092,58.003328486404236],[-124.98975585262879,58.003376930850365],[-124.99005425452363,58.00329506270804],[-124.99032585060337,58.00318719269509],[-124.99059539019,58.00307706325793],[-124.99086695298207,58.00297031361589],[-124.99113642913001,58.00286242600477],[-124.99138514313755,58.00273979927395],[-124.99165250090759,58.00263189466916],[-124.99195720830609,58.002551191710204],[-124.99224532384473,58.002458024434986],[-124.99251899268279,58.00235128746982],[-124.99279054475241,58.002244533999274],[-124.99307862578029,58.002152486402586],[-124.99338538126489,58.002074039069804],[-124.99369618544664,58.00200235159834],[-124.99401100841017,58.00193854540411],[-124.99433390041548,58.00188938099616],[-124.99467200080103,58.00190426563803],[-124.99500804632075,58.00191689061059],[-124.99534620726176,58.00192953065377],[-124.99568442845066,58.00193992694853],[-124.99602267982688,58.001949200940324],[-124.99635890614272,58.0019550938364],[-124.99669936295926,58.00196101767541],[-124.99703570936602,58.00196242308165],[-124.99737456047049,58.00194926471988],[-124.99770948043964,58.00192485927503],[-124.99804615589443,58.00191392622368],[-124.99838437769029,58.001924315679055],[-124.99872009552487,58.00194926722368],[-124.99904901956452,58.0019909920562],[-124.99937118012762,58.00204836878215],[-124.99968026185336,58.00212022846342],[-124.99999971165329,58.00220001677978],[-125.0004937647886,58.00239664368113],[-125.00069508946721,58.00254284626967],[-125.00086656350261,58.00269779856325],[-125.00101247684854,58.00285928943741],[-125.00115198597749,58.00302297560483],[-125.00130853784412,58.00318230243554],[-125.00147146671037,58.00334055511887],[-125.0016322816643,58.00349879181376],[-125.00179309797427,58.00365702834198],[-125.00194968503169,58.00381523308021],[-125.00209346224891,58.00397782860622],[-125.00222231418691,58.00414479915619],[-125.00233418498539,58.00431388606937],[-125.00240991710902,58.00448943295395],[-125.0024538600352,58.004666985679094],[-125.00248293622099,58.00484667070418],[-125.00251627323915,58.00502526591194],[-125.00256867882695,58.00520288191259],[-125.00267837933998,58.00537419583228],[-125.00290985066259,58.005501552065965],[-125.00318410831942,58.00561128052951],[-125.00346712703461,58.005709857069476],[-125.00371570509525,58.005830609537114],[-125.00394706368765,58.005962449846805],[-125.00418488924413,58.00608985129121],[-125.00441839627642,58.00622058514433],[-125.0046283672867,58.00636123822879],[-125.00486831313947,58.00648865428023],[-125.0051384122738,58.00659610440829],[-125.00546402040538,58.006684898952265],[-125.00574227577141,58.006644347452],[-125.00597466727426,58.00649801650111],[-125.00618581337507,58.006354892085845],[-125.00634657330924,58.00619681066123],[-125.00648841176726,58.006034101598914],[-125.00669949393058,58.00589321934999],[-125.00692112190964,58.00575353690719],[-125.00725788835975,58.00574033767701],[-125.00753463180419,58.00583661551981],[-125.007805534458,58.00591378093013],[-125.00814924112323,58.00587819753394],[-125.00848633419707,58.00585265921374],[-125.00882351567375,58.00582375568187],[-125.00914627364013,58.00578016251707],[-125.00942203403982,58.00567340622554],[-125.00967279273003,58.00555188220952],[-125.00986708499171,58.00540526224386],[-125.00999630162131,58.005239091116806],[-125.01002266232784,58.00504187219359],[-125.01011141880338,58.00488549609791],[-125.0104087532438,58.004842833187595],[-125.010781264574,58.00483774177105],[-125.01110827206456,58.004793053801016],[-125.01143342929085,58.00473825629366],[-125.01174621827894,58.0046710280761],[-125.01204464152552,58.004586867774165],[-125.01232658337685,58.00448575984163],[-125.01259600870402,58.004377828750094],[-125.01285089063092,58.00425969458046],[-125.01309328543049,58.00413361596031],[-125.01333359276592,58.00400639983345],[-125.01356761148845,58.00387689350388],[-125.01382457279168,58.003759894619456],[-125.01411490591629,58.003661088399845],[-125.01443537658342,58.00362307419554],[-125.01477799611264,58.00362784610957],[-125.01508865455966,58.00356059453476],[-125.015378923969,58.003464028492616],[-125.01566293427298,58.00336405068941],[-125.01593862897711,58.00325840267186],[-125.01618929163428,58.00313910964037],[-125.01638348716303,58.002994723479944],[-125.01654427791382,58.00283326599841],[-125.01669237580514,58.002671714883384],[-125.01682366804135,58.002505553219024],[-125.01697384929038,58.0023451388762],[-125.01717018228086,58.00219964581776],[-125.01739586245729,58.00206446349403],[-125.01763611260678,58.00193836135941],[-125.01787847633993,58.00181227436903],[-125.01808108992488,58.00166906963406],[-125.01825858379584,58.001515584920995],[-125.01845702264028,58.0013701056539],[-125.0186701194898,58.00123034219468],[-125.01889367327772,58.00109514193389],[-125.01911719614596,58.0009610627687],[-125.0193302882149,58.000821298317526],[-125.01953709188453,58.00067924404862],[-125.01974389398879,58.00053718948119],[-125.01996741049717,58.000403108973316],[-125.02023270069525,58.000289524649276],[-125.0205413529585,58.000216637861534],[-125.02085003327976,58.000142628916414],[-125.02115868313629,58.000069740713066],[-125.02138052508614,57.99999958052285],[-125.02200490611115,57.99990657107941],[-125.02233188648638,57.99986073441293],[-125.02266929548986,57.99982058161295],[-125.02295287638539,57.99989780869126],[-125.02323158617453,57.999999676122115],[-125.02385339693282,58.0001679868182],[-125.02434041266514,58.000232116573656],[-125.02466526560158,58.00026814005642],[-125.02498947823167,58.000328834664586],[-125.02530108855636,58.0003860714874],[-125.02563452069494,58.00041766858098],[-125.02596801160301,58.000447021940765],[-125.02629924243553,58.00048196629855],[-125.02662806791226,58.00052810892776],[-125.02692200536166,58.00061437634859],[-125.02717271119293,58.00073622134805],[-125.02732513366522,58.000895486448044],[-125.02742009939593,58.001067792818915],[-125.02748748161358,58.001243263222094],[-125.02755057598644,58.00142094571754],[-125.02754595581843,58.00159925669017],[-125.0276069649226,58.001775802368044],[-125.02767220502068,58.00195237886004],[-125.02778418393025,58.00212144404038],[-125.02793444130073,58.00228293618761],[-125.0280018571494,58.00245728510739],[-125.02803528442962,58.0026369949261],[-125.02806028003783,58.002815521725054],[-125.02808101630322,58.00299513921297],[-125.02809963748798,58.00317474133514],[-125.0281161726039,58.00335320663725],[-125.0281326788353,58.00353279342714],[-125.02815764646226,58.003712441835994],[-125.02818687400772,58.00389099961136],[-125.02822667847904,58.004069634392394],[-125.02827920440511,58.00424724010794],[-125.02834659634783,58.0044227106797],[-125.02841821963958,58.004598212035376],[-125.02849195897053,58.004773728777224],[-125.02856784340035,58.004948139444615],[-125.02864581489688,58.00512368694785],[-125.02872593154733,58.00529812836886],[-125.02880604894254,58.005472569774696],[-125.02889042694079,58.00564592047728],[-125.02897477670018,58.005820392617174],[-125.02906127169818,58.00599375866052],[-125.02914988294349,58.00616714006112],[-125.02924061046552,58.0063405368148],[-125.02933348330194,58.00651282745827],[-125.02942847246858,58.006685133445544],[-125.0295255779947,58.0068574547722],[-125.02962479990963,58.00702979143389],[-125.02972405173288,58.00720100659375],[-125.0298275354945,58.007372252451866],[-125.02993104919172,58.00754237680099],[-125.0300387659107,58.00771365329547],[-125.03014865712812,58.00788270217803],[-125.03025852035387,58.0080528724621],[-125.03037264468355,58.0082219519488],[-125.03049314573887,58.00838995598619],[-125.03061790801158,58.00855686919872],[-125.03075119170099,58.00872160082294],[-125.03089296793266,58.00888527229451],[-125.03104541033498,58.00904565601154],[-125.03120640338453,58.009202736587426],[-125.0313822940328,58.00935656002637],[-125.03157099572334,58.00950598946215],[-125.03177465312625,58.009649918714125],[-125.03199761335536,58.00978389252844],[-125.03225054151248,58.00990462307179],[-125.03252288820313,58.0100109120677],[-125.03280821954195,58.01010607781655],[-125.03310218842724,58.01019457545263],[-125.03340262130288,58.01027863253253],[-125.03370308440508,58.01036156747951],[-125.03400140427237,58.01044560791895],[-125.03429752319092,58.01053299679531],[-125.03459367234282,58.01061926355825],[-125.03489411195962,58.010703317321635],[-125.03519463943132,58.01078400602007],[-125.03549728391106,58.01086470932968],[-125.03580207423114,58.0109443057702],[-125.03610475011945,58.01102388625127],[-125.0364052539614,58.01110569371966],[-125.03670573032215,58.011188621985525],[-125.03700403470664,58.01127377725945],[-125.037298022635,58.01136226577147],[-125.03758117431298,58.01146077061043],[-125.0378492008543,58.011571504296555],[-125.03810439065089,58.01168775336072],[-125.03836166905587,58.011805138654324],[-125.03863401811573,58.01191253687386],[-125.03892369715295,58.01200435581033],[-125.03922856143157,58.012081701593445],[-125.03954209107992,58.0121512572753],[-125.03985790987278,58.01221409862792],[-125.0401780760718,58.01227248377676],[-125.04050044510423,58.01232751895727],[-125.04082287242096,58.0123803104255],[-125.04114967555559,58.01242752415603],[-125.04148088302865,58.012468038646674],[-125.0418121771365,58.01250518791059],[-125.04214132745744,58.01254344264835],[-125.04247033534827,58.01258730392292],[-125.04279499792968,58.01263561993754],[-125.04312174856757,58.01268507179452],[-125.04344635565127,58.012735629170095],[-125.04376873345609,58.01279065648939],[-125.0440889392315,58.012847910829684],[-125.04440688733679,58.01291075661709],[-125.0447205191708,58.01297693579413],[-125.04502977770608,58.01304869133293],[-125.04533457745022,58.01312938767676],[-125.04562645518263,58.013218964379135],[-125.04591178711026,58.01331634540268],[-125.04618634163202,58.013421500569926],[-125.04644800295739,58.01353441484308],[-125.04669459826522,58.01365731614067],[-125.04692401171926,58.0137901894509],[-125.04713847314014,58.01392856407494],[-125.04734009835806,58.014072455179864],[-125.04753100322402,58.01422187791631],[-125.04770701278746,58.01437455921398],[-125.0478723303067,58.01453165077478],[-125.04802489668086,58.014690894612755],[-125.048171031159,58.01485345748499],[-125.04830653023383,58.0150181877859],[-125.04843565416161,58.0151839942264],[-125.0485583744285,58.015351998299366],[-125.04867686382755,58.01551997214708],[-125.04879109386798,58.01568903725497],[-125.04889468806353,58.015860269905005],[-125.04897492178299,58.01603470119705],[-125.04904454770978,58.01621017862026],[-125.04911417428785,58.01638565604066],[-125.04920078670028,58.01655901101487],[-125.04931502226508,58.0167280758653],[-125.04944627259567,58.016893896697795],[-125.04957540801584,58.017059702373736],[-125.04970666065744,58.01722552300989],[-125.04984429113104,58.017390267230056],[-125.049990472406,58.01755170711051],[-125.0501494367691,58.01770987271858],[-125.0503275610788,58.01786368766596],[-125.05052710355139,58.01800755952837],[-125.05075870168861,58.01813932044321],[-125.0510333050901,58.01824446619663],[-125.0513448486987,58.01831173664444],[-125.0516739462817,58.0183544540426],[-125.05200978980854,58.01838151499135],[-125.0523458037968,58.018401846225544],[-125.05268184646867,58.01842105513636],[-125.0530203170374,58.01842794193975],[-125.05335737906242,58.01840677592003],[-125.05369037814869,58.018378850193336],[-125.05402721312109,58.018366654314285],[-125.0543631998002,58.01838810195226],[-125.05468784311348,58.01843975379706],[-125.05500365545514,58.01850592419934],[-125.05531077835009,58.01858100582818],[-125.05561138459272,58.01866277074875],[-125.05590979130784,58.0187478844819],[-125.05620819937697,58.018832997556245],[-125.05650011923694,58.01892367252878],[-125.05677906143131,58.01902547201458],[-125.05703430419885,58.01914392880456],[-125.05726381600553,58.0192756636635],[-125.0574804913031,58.01941291595823],[-125.05769070686073,58.019554609059334],[-125.05789025839886,58.01969959166688],[-125.05808129023669,58.01984675727145],[-125.05826586223961,58.019998363793874],[-125.0584397981947,58.020152138465214],[-125.05860733051621,58.02030811115699],[-125.05876631474818,58.02046738846484],[-125.05891680709325,58.020627727455945],[-125.05905451862424,58.02079134131045],[-125.05917518849402,58.02095932174217],[-125.0592724676033,58.02113162408804],[-125.05934215115751,58.0213070971127],[-125.05938000613875,58.02148571105666],[-125.05938820467915,58.021665237883326],[-125.05937735619797,58.021844630625694],[-125.05935169313109,58.02202391908468],[-125.05931335975507,58.02220199667021],[-125.05927079326591,58.0223800444715],[-125.05922399360338,58.02255806248434],[-125.05917930989136,58.02273609542058],[-125.0591367421599,58.02291414328251],[-125.05908359195077,58.02309211663126],[-125.05902623652129,58.023268938691935],[-125.05896464768188,58.02344573094444],[-125.0588988253728,58.02362249338305],[-125.0588372634919,58.02379816415835],[-125.05877778935735,58.02397497133728],[-125.05872251946765,58.02415292983596],[-125.05867783147576,58.02433096291339],[-125.05864160903755,58.02450905566632],[-125.05860115324637,58.02468711861474],[-125.05855434752752,58.02486513683981],[-125.05850754136438,58.0250431550828],[-125.05846920089535,58.02522123301083],[-125.05844988081172,58.02540056670488],[-125.05846230886578,58.0255801241866],[-125.05853834658853,58.02575564322958],[-125.05874228011412,58.02589616941718],[-125.05906479346002,58.02595116060072],[-125.05940333314764,58.025958031286784],[-125.05974020620805,58.02594694239043],[-125.06007724769336,58.02592912370903],[-125.06041426076453,58.0259124256671],[-125.06075310927142,58.025906956549875],[-125.06109181731122,58.02590709402069],[-125.06143066567115,58.02590162318509],[-125.06176959809237,58.02589278702138],[-125.06210635769385,58.02588617811811],[-125.06244503751773,58.02588743364796],[-125.0627834091105,58.0259010247073],[-125.06311712760066,58.0259314075727],[-125.06344638944836,58.025970731850364],[-125.06377336744383,58.02601676942666],[-125.06410023430661,58.026067292166246],[-125.06442281292638,58.02612002744517],[-125.06474319196836,58.026176111602645],[-125.06506563265246,58.02623445278907],[-125.06538598568733,58.02629165690299],[-125.06570633969935,58.0263488602524],[-125.06602886714572,58.02640383465187],[-125.06635145137112,58.026456565293465],[-125.06667835344581,58.02650596025859],[-125.0670075403783,58.026548640258845],[-125.06733901199966,58.02658460527643],[-125.06767059576664,58.02661608350627],[-125.06800646906282,58.026645347461724],[-125.06834022626255,58.026674595813596],[-125.06867392828768,58.02670608631666],[-125.06900537506041,58.02674316869842],[-125.06933245009519,58.026785828231596],[-125.06965278652744,58.026844143641426],[-125.06995783475936,58.026921420518505],[-125.07025199524399,58.02701095947599],[-125.07054612934112,58.027101619287436],[-125.07084466485962,58.02718557894322],[-125.07115843490631,58.02725281855165],[-125.07149000002153,58.02728540881864],[-125.07182899808085,58.027274304135936],[-125.07215810625823,58.027235087758626],[-125.07247919088753,58.02717786789895],[-125.07279208519485,58.02710937357835],[-125.0730988501543,58.027031862528375],[-125.0734014359821,58.02695207843383],[-125.07370404821995,58.02687117216768],[-125.07400866502915,58.026794765866825],[-125.07431949207943,58.02672401034088],[-125.07464065204387,58.02666342083916],[-125.074963678655,58.02661293866389],[-125.07529291599955,58.026568107127346],[-125.07562206963809,58.02652663926136],[-125.07595325627238,58.02648854970596],[-125.07628232562307,58.02645044469669],[-125.07661353852406,58.02641123201447],[-125.07694271692598,58.02636863940884],[-125.07726988833703,58.02632154540182],[-125.07759296362629,58.026268813901886],[-125.07790993635146,58.026205944357685],[-125.07822284019512,58.02613631589832],[-125.07852950331618,58.02606215694168],[-125.07883624785423,58.0259846328074],[-125.07913884056369,58.02590371431722],[-125.07943725386423,58.0258205229936],[-125.07973572087333,58.025735088024724],[-125.0800321249699,58.02564739483573],[-125.08032641111832,58.02555968642719],[-125.08062075086939,58.02546973439271],[-125.08091294517577,58.02538088865048],[-125.08120728211726,58.02529093534141],[-125.08150159018417,58.02520210288554],[-125.08179586940305,58.02511439128267],[-125.08209223633344,58.02502781507528],[-125.08239066355168,58.02494349574183],[-125.08269532929138,58.024863705318865],[-125.08300200058346,58.024788414706805],[-125.08331078716014,58.02471313792016],[-125.08361333256035,58.02463333090073],[-125.08390554065382,58.024543357202035],[-125.0841790821858,58.024437551395316],[-125.08442972398059,58.024315884590074],[-125.08466362382762,58.02418625087241],[-125.08489752205803,58.02405661676348],[-125.08513977514704,58.023931526208386],[-125.08540500694178,58.02381893103376],[-125.08570341709589,58.02373460441148],[-125.08603646668924,58.02370547639812],[-125.08637499102515,58.02371227872383],[-125.08671340625979,58.0237235661603],[-125.08705030574716,58.02371016544761],[-125.08737537939308,58.02366078938307],[-125.0876902517815,58.02359563937171],[-125.08800108104633,58.023522609280135],[-125.08830566879482,58.023445049171045],[-125.08860822058932,58.02336410945868],[-125.08891074383817,58.02328429056036],[-125.08921738974216,58.02320898581093],[-125.08952615084395,58.023133694788534],[-125.08983282149374,58.023057267146996],[-125.09013737447336,58.02298082439286],[-125.09044404262809,58.02290439536104],[-125.09075070953322,58.02282796563145],[-125.09105941007054,58.022754914080124],[-125.09137017147765,58.02268411920041],[-125.09168505588634,58.022617838351174],[-125.09200403624146,58.02255719299423],[-125.09232505054722,58.02249992573534],[-125.09264807175336,58.022447158050866],[-125.09297521635648,58.02239890429544],[-125.09330227879387,58.0223540142169],[-125.09363137553798,58.02231250217488],[-125.09396456887681,58.02227662549186],[-125.09428552363148,58.02222159652296],[-125.09460039900651,58.02215530883563],[-125.09491527326873,58.02208902041091],[-125.09521158601501,58.02200241538742],[-125.09550787035135,58.02191693120645],[-125.09582274100916,58.021850640660034],[-125.09615980957508,58.02182936656102],[-125.09649272608186,58.02180469850838],[-125.09682955083541,58.02179351614639],[-125.09716463692276,58.02176661774551],[-125.09749961460112,58.021744204472434],[-125.0978361148467,58.02174647747609],[-125.09815917573684,58.02169145352557],[-125.09848627970729,58.02164430780635],[-125.09882136327384,58.02161740525419],[-125.09915237526424,58.02158374436599],[-125.09947339724894,58.02152533849906],[-125.09977794505802,58.02144775240367],[-125.10008246470278,58.021371287112395],[-125.1003476335414,58.02125866258815],[-125.10062528360827,58.02115509497895],[-125.1009049946983,58.02105378403212],[-125.10118261483862,58.0209513367792],[-125.10145399200191,58.02084436028759],[-125.10171497411298,58.02072946165937],[-125.10195506019072,58.0206032053463],[-125.1021700445031,58.0204644415259],[-125.10237034747439,58.02031997037775],[-125.10257064890297,58.02017549895193],[-125.10277933335558,58.02003444857981],[-125.10301108047508,58.01990252615182],[-125.10326784558268,58.01978647469485],[-125.1035350830955,58.01967497973505],[-125.1037939344651,58.01956006298865],[-125.1040465427087,58.019440617209945],[-125.10430956978054,58.019327970863124],[-125.10460586579818,58.01924022377296],[-125.1049386467414,58.01922002070313],[-125.10526770622867,58.01926709205396],[-125.1055902574518,58.0193208490299],[-125.10592389855806,58.0193533677314],[-125.10625314748242,58.01939258622638],[-125.10655606753546,58.01947088623932],[-125.10680930080143,58.019591476776355],[-125.10703470419422,58.019725340834626],[-125.10723656353808,58.01987026386576],[-125.10743630818162,58.0200151724739],[-125.10764462615147,58.02015565138861],[-125.10785717823315,58.020296158268245],[-125.10806547267394,58.02043775806194],[-125.10826522354087,58.02058266551989],[-125.1085551398126,58.02067433424694],[-125.10888651938072,58.02071356043063],[-125.10922245181754,58.02073935610275],[-125.10955396576306,58.02077297316799],[-125.10987433993407,58.02083007025978],[-125.110185930613,58.02090056811872],[-125.11049746927704,58.02097330824335],[-125.11081131155412,58.02103821127862],[-125.11113825146181,58.021086375667345],[-125.11147429504081,58.02110767971166],[-125.11181277397124,58.02111553905451],[-125.11214903054442,58.021127869449934],[-125.1124826138043,58.02116373631617],[-125.11280296924532,58.02122194790271],[-125.11311459519743,58.021291317466115],[-125.11342402644668,58.021364036745666],[-125.11373785055909,58.0214300544277],[-125.11406260183362,58.02148156212344],[-125.11439859765954,58.02150510181051],[-125.11472956820676,58.02147252382464],[-125.11504440115637,58.02140618800768],[-125.11536335987647,58.02134436546397],[-125.11568647089989,58.02128593466825],[-125.11591847662588,58.02141085405102],[-125.11603726029662,58.02157989066681],[-125.1161943773438,58.02173908579108],[-125.11642839826588,58.021868504334996],[-125.11668387505087,58.021985725976165],[-125.11694578177905,58.02209962462586],[-125.11719906618644,58.02222019581013],[-125.11744166470258,58.02234518260505],[-125.11767783649061,58.02247349153106],[-125.1179075815473,58.02260512262378],[-125.11812232873059,58.02274450602053],[-125.1183221307273,58.022889398802334],[-125.11851981783317,58.02303427734273],[-125.11872816772436,58.023175860930344],[-125.11895149239292,58.02331081293625],[-125.1191791042543,58.02344354950192],[-125.1194109769853,58.02357519210268],[-125.11965356531314,58.023701296563665],[-125.11990477907295,58.023820727381704],[-125.12017102028177,58.023931283325005],[-125.12044800330546,58.02403517942971],[-125.1207336378778,58.0241312801969],[-125.1210235857606,58.02422404371599],[-125.12131570412899,58.024314577536686],[-125.12160779764423,58.024406232227484],[-125.12189560704108,58.02450010146543],[-125.12218947874348,58.024606348317946],[-125.12246861511049,58.02470913271639],[-125.12274777923666,58.02481079504242],[-125.12303125662311,58.024909120081574],[-125.12332121620022,58.02500187869265],[-125.1236111772114,58.02509463668368],[-125.12390547755268,58.02518293580946],[-125.12420625989829,58.02526566841379],[-125.1245157454319,58.02533836231507],[-125.12483837643501,58.025392073166536],[-125.12517211437462,58.0254234225042],[-125.12550836165614,58.0254379623339],[-125.12584727465371,58.025428963623916],[-125.12618030806398,58.025399735485195],[-125.12651736515627,58.02537950621136],[-125.12685583356418,58.02538957047928],[-125.12718957316748,58.02542091477727],[-125.12751670273308,58.0254634317982],[-125.12784150784182,58.02551490622271],[-125.12816409298908,58.025570852058635],[-125.12848236775432,58.02563013401243],[-125.12879183853212,58.02570393953986],[-125.12906671588578,58.02580892567574],[-125.12928366551269,58.02594718390997],[-125.12944725896521,58.0261041625781],[-125.12958741480585,58.026267718407176],[-125.12973609043264,58.02642908626132],[-125.1298762487468,58.02659264184534],[-125.13001429163468,58.02675618352811],[-125.13019490295818,58.02690990716999],[-125.13048489571642,58.02700265043505],[-125.13082139311976,58.02700708337435],[-125.13115828029547,58.02699469289124],[-125.13149725794115,58.02698343682372],[-125.13183613154644,58.02697666591662],[-125.13216999322917,58.027003511807074],[-125.13247300288981,58.027082875196825],[-125.13275869147607,58.02717895057182],[-125.1330725723368,58.027246044753866],[-125.13340186708011,58.027287439678304],[-125.13373555133087,58.02732213220645],[-125.1340693656625,58.0273512163726],[-125.13440325816006,58.02737693518748],[-125.13473924192957,58.02740378838321],[-125.13507310949164,58.02743062703177],[-125.13540922348531,58.027451871012765],[-125.13574541538775,58.02746974962937],[-125.13607923259141,58.02749882877873],[-125.13640182126292,58.027555876351684],[-125.13670698685407,58.02763412236212],[-125.13700998540325,58.02771459702389],[-125.13732609824223,58.02777720889651],[-125.13765537655668,58.02781971486884],[-125.1379915212751,58.027839830855456],[-125.1383266833341,58.02781058601977],[-125.13863117600455,58.0277340323373],[-125.13895012389311,58.027673274562325],[-125.1392831670143,58.02764401369089],[-125.13962227672198,58.02762712946479],[-125.13995911512319,58.02761695979735],[-125.14029791580212,58.02761353194614],[-125.1406364337572,58.027622439819126],[-125.14097268105212,58.0276380622709],[-125.14131101965407,58.02765481898872],[-125.14164719052113,58.027673804266904],[-125.1419833873848,58.02769166719162],[-125.14232182950661,58.027703935319025],[-125.1426603743942,58.02771171655706],[-125.1429989706742,58.027717253920976],[-125.14333761828586,58.02772054741039],[-125.14367634277414,58.02772047551666],[-125.14401310412693,58.02771366015266],[-125.14435012121295,58.027695628856016],[-125.14468713797494,58.02767759670968],[-125.14502586207269,58.02767752139468],[-125.1453619328018,58.02770098336089],[-125.14569343844317,58.02773899702542],[-125.1460227514377,58.02778036086602],[-125.14635214173585,58.027818359369974],[-125.14668821455643,58.02784181800366],[-125.14702673608805,58.02785070968835],[-125.14736556372621,58.027846142405465],[-125.14770054013145,58.027824724619435],[-125.1480337051458,58.027789834385786],[-125.14836281437638,58.02774706577312],[-125.14868988251496,58.0277009183366],[-125.14901284366688,58.027649135591226],[-125.14933590567271,58.027592866031235],[-125.1496548095902,58.0275332042218],[-125.14997164663154,58.02747128516967],[-125.15029057391183,58.02741050034156],[-125.15060536837248,58.02734520180551],[-125.15091401479202,58.02727089010313],[-125.15121235576332,58.02718417385722],[-125.15147947803233,58.027073703619855],[-125.15165861186217,58.02692229407655],[-125.15175353449813,58.02675015963448],[-125.15181892465868,58.02657335099729],[-125.15186317320068,58.0263952864844],[-125.15187993054269,58.02621592580713],[-125.15189245449261,58.026036538289624],[-125.15190921153436,58.025857177678745],[-125.15192173522449,58.02567779022855],[-125.15193637538039,58.02549841624818],[-125.1519700645753,58.02531916322121],[-125.15203330930103,58.02514346282584],[-125.15212401795561,58.02497018007846],[-125.15223369864326,58.02480038270365],[-125.15235391033329,58.024632895429434],[-125.15248256171948,58.02446658329297],[-125.15260912078303,58.0242991361316],[-125.15273986106952,58.024133958738716],[-125.1528979880621,58.0239745632465],[-125.15314419609373,58.023851619299734],[-125.15346507739622,58.02379644807684],[-125.15380396882973,58.0237873784655],[-125.15414008606513,58.02380745373622],[-125.15447159147126,58.02384432395425],[-125.15480536564655,58.02387447770742],[-125.15514150945863,58.02389342895475],[-125.1554776536103,58.02391237935678],[-125.1558136971406,58.02393581493731],[-125.15614518009558,58.02397380251368],[-125.1564699863431,58.02402632875762],[-125.15679489434432,58.024074368189694],[-125.1571286472329,58.02410563765226],[-125.15746479428992,58.0241245830588],[-125.15780320928322,58.024136811923334],[-125.1581418258635,58.024140067877504],[-125.15843798355603,58.02405444396211],[-125.15860029383833,58.02389618990717],[-125.15880039773725,58.02375163365242],[-125.15905704165752,58.023634353005335],[-125.15933661332826,58.023532919473624],[-125.159634854847,58.02344842778621],[-125.15994135996237,58.02337296072596],[-125.16024995520165,58.02329862777888],[-125.16055854921792,58.02322429412498],[-125.16087331576063,58.02315785018921],[-125.16119833743029,58.023106051540516],[-125.16152938166134,58.02306887153363],[-125.16186433237216,58.023046296843596],[-125.16220313984964,58.023040570451876],[-125.16254164676157,58.023048301274784],[-125.16287796227599,58.02305938249621],[-125.16321656957014,58.0230626255842],[-125.16355540199683,58.02305577425671],[-125.16389234283137,58.0230388152658],[-125.16422540029514,58.02300612785296],[-125.16455036606436,58.022956564070384],[-125.164867139857,58.022894610005615],[-125.1651715883604,58.02281575324137],[-125.16543448039957,58.02270186466015],[-125.16564294245272,58.02256071575126],[-125.1658388291341,58.02241387971536],[-125.16603259787374,58.02226703020321],[-125.16625365395447,58.022130445705606],[-125.16651235495563,58.02201428565884],[-125.16679811900576,58.02191848383428],[-125.16709839746349,58.021836231845334],[-125.1674110990703,58.021766394894314],[-125.16774404264224,58.02173818477643],[-125.16808258868683,58.02174365853755],[-125.16842123427772,58.02174464541798],[-125.1687601035521,58.02173553788843],[-125.1690969308081,58.02172305181822],[-125.16943198910467,58.021694850658925],[-125.1697569118131,58.02164639578807],[-125.17009393643123,58.02162493515899],[-125.17042999339643,58.02164721241008],[-125.1707638104256,58.021675083208756],[-125.17109752882344,58.02170743919854],[-125.17142913141655,58.02173978122872],[-125.17176287572575,58.02177101405246],[-125.17209671959878,58.02179776001786],[-125.17243270507538,58.02182339675437],[-125.17276871574317,58.02184791114002],[-125.17310261046163,58.02187241158069],[-125.17343859729421,58.02189804578938],[-125.1737746092879,58.02192255764695],[-125.17410850532768,58.02194705557545],[-125.17444451819807,58.02197156574947],[-125.17478053150752,58.02199607507878],[-125.1751166439036,58.02201609753479],[-125.17545278131031,58.02203499763821],[-125.17578663016292,58.022061734390135],[-125.17611366227588,58.02210973979293],[-125.17642324689888,58.02218119167614],[-125.17672193066268,58.022267157233465],[-125.17702283063282,58.0223486491376],[-125.17733894039164,58.022412287476065],[-125.17766488628378,58.02246140403907],[-125.17799306469185,58.0225060469034],[-125.17832236732878,58.02254733089501],[-125.17865274499675,58.02258749902249],[-125.17898212271488,58.022625416865765],[-125.17931359299725,58.02266446840942],[-125.17964398968968,58.022704634194646],[-125.17997003920894,58.022749259113276],[-125.18029812484843,58.02279838236525],[-125.18062743258822,58.022839660688106],[-125.18096129228924,58.022866384531774],[-125.18129863688286,58.02287854732333],[-125.18163743986558,58.02287277164597],[-125.18197337002773,58.022853517606855],[-125.18230842873558,58.022825284117886],[-125.18262726408545,58.02276442241587],[-125.18293371734043,58.02268890266505],[-125.18325255051667,58.022628039479805],[-125.1835875086117,58.022604288827466],[-125.18391799001483,58.022639957898235],[-125.1842417494328,58.022693531639504],[-125.18456220474724,58.02275269271858],[-125.18486743164847,58.02283082830432],[-125.18515108114795,58.022927899777024],[-125.18543040178311,58.02302943088876],[-125.18571831151395,58.023125405478005],[-125.18602792281065,58.02319683518169],[-125.1863550752287,58.02324032952942],[-125.18668874804102,58.023276011157904],[-125.18701923831051,58.02331167258281],[-125.18735186261674,58.02334734616924],[-125.18769037745821,58.023355013271605],[-125.18801735887152,58.02330876979286],[-125.18831033141592,58.023219695860895],[-125.18857629066261,58.02310802405908],[-125.18881191502541,58.022979342679555],[-125.18901401404244,58.02283475417948],[-125.18918351638942,58.022679872643074],[-125.18932780675898,58.022516986327275],[-125.18946996252285,58.022354086940474],[-125.18963422670551,58.022196929841],[-125.18982371680053,58.02204777716667],[-125.19004047637758,58.02191000616777],[-125.1902980282514,58.021794915239035],[-125.19061689027637,58.02173179151826],[-125.19095534283001,58.02174169335355],[-125.19127587313562,58.021797473737266],[-125.19158762461765,58.02186778175528],[-125.19188636479004,58.02195259186688],[-125.19216783694849,58.02205300007635],[-125.19246662819411,58.02213556588639],[-125.19280039352486,58.02216674616484],[-125.1931390918108,58.02216542736576],[-125.19347012016352,58.02212704674192],[-125.19377238588103,58.02204811209347],[-125.1940757241565,58.021968061590385],[-125.19439353156278,58.02190492251038],[-125.19471233947893,58.02184403202798],[-125.19502801144102,58.02178087858685],[-125.19533759068082,58.021706471155646],[-125.19563162403358,58.021616266238745],[-125.19589645942357,58.021505695146665],[-125.19613623328199,58.02137926957322],[-125.19634250414256,58.02123581722027],[-125.19648145852925,58.02107289155261],[-125.19663201910812,58.020911157231424],[-125.19685609071668,58.02077678447158],[-125.19711675592387,58.02066282108409],[-125.19739929653774,58.02056469180036],[-125.19769954500937,58.02048012813765],[-125.19800906026336,58.020407957639684],[-125.19832678296856,58.02034705222694],[-125.19865269931786,58.02029965506043],[-125.19898777054863,58.020269136799435],[-125.19932459848411,58.02025545302652],[-125.19966301608734,58.02026645429437],[-125.19999915016314,58.02028529259823],[-125.19700838658457,58.02246242593713],[-125.20840129239795,58.021821537598235],[-125.22076563882138,58.019229194598],[-125.22570620223684,58.016942847874546],[-125.2418072756247,58.01109501970823],[-125.2496349456916,58.0073705503253],[-125.25682571336631,58.004961131875035],[-125.26220465089587,58.00341171624479],[-125.27057805770538,58.002766803911584],[-125.27552325149148,58.00216113505465],[-125.27543522599468,58.00206307663518],[-125.27526877359314,58.00191860616185],[-125.275201972079,58.001872257221954],[-125.27523520074125,58.001850005245124],[-125.27530362638566,58.001812241657916],[-125.27537407545502,58.00172401623102],[-125.27558979738654,58.00161751155389],[-125.27594126938392,58.00154763453594],[-125.27613196246337,58.00147688502921],[-125.27618698548056,58.00136614324612],[-125.27623091282717,58.00128226011099],[-125.27626437182471,58.0011927121422],[-125.27630264503293,58.00107290662178],[-125.27635230081452,58.00096662219799],[-125.27640039293652,58.00088612646969],[-125.27644872267452,58.000793294241674],[-125.27655484500832,58.00071984264194],[-125.27668821254159,58.00071495714684],[-125.27678149873765,58.00070424633195],[-125.27684983430497,58.00067096799475],[-125.27690964403172,58.00064100829787],[-125.27702398360483,58.000581060237685],[-125.27733551787726,58.00049638242147],[-125.27770859468316,58.00045690146889],[-125.27786097648841,58.000453239288994],[-125.27792422525276,58.00040983836578],[-125.27804091965722,58.00033644281313],[-125.27815523492679,58.000277615302494],[-125.2782489509394,58.000244473494355],[-125.27832444191101,58.00022357087876],[-125.2784918015937,58.00021101602323],[-125.27884743559548,58.00019835642101],[-125.27928684358226,58.000174931970506],[-125.27970551256396,58.00012896189499],[-125.28005378170901,58.00005905700111],[-125.28025462222246,58.000010788813626],[-125.28029178013507,58.00000313782005],[-125.28030876617123,57.99999986454021],[-125.28036288400443,57.99999118333358],[-125.28058158690534,57.999948619012926],[-125.28089993936244,57.999894253336464],[-125.28113353328284,57.99984728186867],[-125.28131708933317,57.999816864868606],[-125.28148130336199,57.999803167739415],[-125.28157432832627,57.999805911570036],[-125.28167269718368,57.99980531924516],[-125.28181990376441,57.999796016650954],[-125.28202744876303,57.99978367354437],[-125.28226537644838,57.99978607443479],[-125.28240085509859,57.99978119460929],[-125.28246843361232,57.99978716588584],[-125.2826153612649,57.999792441899],[-125.28288264442655,57.99980845878693],[-125.28315308762942,57.99982561371971],[-125.28331569961406,57.99983994608373],[-125.28342547497218,57.999851751449555],[-125.28361462105262,57.999861739403094],[-125.28389369688952,57.99986996624204],[-125.28427188711859,57.99989442646094],[-125.28466462765859,57.999932422931835],[-125.28482918491717,57.99995573678174],[-125.2849037530117,57.99987201516175],[-125.28505228561147,57.9997370953843],[-125.28515231583934,57.999650145157126],[-125.28517387337689,57.999628949925274],[-125.28526345801521,57.99959017307238],[-125.28546899377962,57.99951612514672],[-125.28572988129837,57.99942442724678],[-125.28591069401342,57.9993715570404],[-125.2860468533366,57.99933078555589],[-125.2862201043724,57.99928572579318],[-125.28646744477756,57.999238818572245],[-125.2867837314737,57.999181063107926],[-125.28710399187166,57.99913678747128],[-125.28731610248558,57.99910651476157],[-125.28740620047786,57.9990957795606],[-125.28748785477649,57.999084999236885],[-125.28768603765556,57.9990636245119],[-125.28792025841415,57.99903907687409],[-125.28803379277157,57.99901949335274],[-125.28806761369607,57.9990207953192],[-125.2881376471988,57.999008831020376],[-125.28826271672695,57.99899491687137],[-125.28834118939659,57.998984119068055],[-125.28841448895281,57.99896768558657],[-125.28854598867319,57.998949318998285],[-125.28864366740018,57.99892965046897],[-125.28868391867658,57.99892650009352],[-125.2888006334523,57.9989069328713],[-125.2890972828571,57.99888047250246],[-125.28941632331568,57.99884403614805],[-125.28958798829568,57.998827003922756],[-125.28969087753975,57.998811848806994],[-125.2897660833825,57.998805519238374],[-125.28982618195268,57.998815933442216],[-125.2900120585097,57.99883038139507],[-125.29026196162461,57.998814885961096],[-125.29047015562446,57.99876776328058],[-125.2906617036584,57.99870597089158],[-125.29093851250856,57.998609861137545],[-125.29129490337559,57.99849959235951],[-125.29169474487092,57.99838506674154],[-125.29216036340502,57.99825967260913],[-125.29249186152555,57.99817955221372],[-125.29263544178289,57.998137691839794],[-125.29273766341042,57.99810122027011],[-125.29295847747393,57.99805752546976],[-125.29336988066497,57.998002501505695],[-125.2937337591212,57.99799994054764],[-125.29392809347085,57.9980144277922],[-125.2940608260654,57.99798596785353],[-125.29424813404387,57.99792414800319],[-125.29447650408953,57.99787263939017],[-125.29461044929482,57.99783633405448],[-125.29473172488989,57.99779884004772],[-125.29494836791432,57.99775175512897],[-125.29528358038908,57.99769856614301],[-125.2956291988618,57.9976544041009],[-125.295809484148,57.99762843654833],[-125.2959115540466,57.99759981305634],[-125.29605598804837,57.997568048046965],[-125.2962174053379,57.99753300758725],[-125.29638544078264,57.99748342089867],[-125.29655848172261,57.9974484412942],[-125.29671949878887,57.9974347086972],[-125.29690790635038,57.99742672820568],[-125.29712070836642,57.99741551105892],[-125.29723504703023,57.997409383338685],[-125.29731156671438,57.99738959716193],[-125.29753787687908,57.99739078814719],[-125.29782690422935,57.99743156493587],[-125.29798724956719,57.99745371875831],[-125.29807522548809,57.99744296525505],[-125.29824170580012,57.99742028668036],[-125.29847078099912,57.9973867207515],[-125.2986351917213,57.99736066598933],[-125.29884809759157,57.99734383859799],[-125.29916701082468,57.99731298649593],[-125.29935681817723,57.99728706417077],[-125.29939934929541,57.99727494968316],[-125.29944690835761,57.99727632086562],[-125.29956882474461,57.997261258049676],[-125.29989041567704,57.997257336873865],[-125.30050555830867,57.997221305087564],[-125.30104731685267,57.99715123805434],[-125.3012426308654,57.99711300420803],[-125.3013275453393,57.997096624511975],[-125.30143788186591,57.99707813457307],[-125.30151823220888,57.99707967659804],[-125.30156465857438,57.99708552753133],[-125.30172041990085,57.9971267202074],[-125.30216363897229,57.997179510066886],[-125.30257808221727,57.997187283820224],[-125.30270850278907,57.99716889774973],[-125.30267911410797,57.99710032618375],[-125.30264178293672,57.99694647096304],[-125.3026549072354,57.99686578379095],[-125.3028099419268,57.996775743343655],[-125.303079390617,57.996617882036084],[-125.30334860808651,57.99647235669023],[-125.3037701533345,57.9963814624582],[-125.30421216617424,57.996384888529306],[-125.30450184171423,57.99627648055709],[-125.30481680530933,57.996002205977476],[-125.30503402044059,57.995865379423115],[-125.30507744796114,57.99586224067511],[-125.3050812626512,57.995884692646456],[-125.30520902043115,57.99600985586525],[-125.3055640739775,57.9960834860413],[-125.30593069097333,57.99593173263034],[-125.30606830880778,57.99581019304376],[-125.30614384625831,57.99584311223143],[-125.30630185952192,57.99593366185662],[-125.30652648296943,57.99602567893695],[-125.30675624880656,57.996068371695564],[-125.30689789011421,57.996072471966144],[-125.30701150533196,57.99604838646555],[-125.307152411847,57.996034536962625],[-125.30727421762575,57.99602507462111],[-125.30733935741274,57.99599064284613],[-125.3073475132708,57.99595030736597],[-125.30739891402781,57.99591580428021],[-125.30754438085104,57.99588403234271],[-125.30768261898541,57.99584324991916],[-125.3078844504232,57.995794945833026],[-125.3082060536665,57.99573268130201],[-125.30845642450547,57.99569023591481],[-125.30867254243317,57.99567004478302],[-125.30900763428856,57.995621307450484],[-125.30948755271018,57.995518359851665],[-125.30996381586121,57.995383986736336],[-125.31034769674764,57.99526932360936],[-125.31074777517152,57.99513679737241],[-125.31126632773831,57.994945436266576],[-125.311952446414,57.99478522026758],[-125.31263658782102,57.99473266451585],[-125.3130331852668,57.99473134120653],[-125.3131971192346,57.99473106311549],[-125.31336076959924,57.99474536420402],[-125.31359704414609,57.994779105784],[-125.31378169684788,57.994802487168386],[-125.31386592415905,57.994823108962066],[-125.31395146701091,57.99482915662321],[-125.31405010563984,57.994813961063734],[-125.31414369434874,57.99478528025111],[-125.31431142749727,57.99475025061842],[-125.31456170296748,57.99471227981688],[-125.31476319191955,57.994681909352586],[-125.31493595721331,57.994660364007366],[-125.31519005206245,57.99464484369104],[-125.31544640476069,57.99462148325248],[-125.31557179715382,57.994588478127675],[-125.31562821838124,57.9945685785451],[-125.3156567609992,57.994568724869524],[-125.31578262613344,57.99456824844505],[-125.31596857337946,57.994578174203255],[-125.31605735811486,57.99458087231888],[-125.31611663648228,57.99457781120607],[-125.31626558515349,57.99458642539981],[-125.31641251760678,57.99459054269297],[-125.31653512032464,57.99459453526215],[-125.31663236472556,57.9945972763068],[-125.31669156141444,57.994598700930176],[-125.31673392058657,57.99459555293861],[-125.31686481966821,57.99460856048709],[-125.31715858639075,57.994621279498084],[-125.31746623443405,57.99462621761953],[-125.31761316717476,57.99463033359135],[-125.31770487143078,57.99464650476116],[-125.31798928260463,57.99470852462482],[-125.31839361313315,57.99480592590318],[-125.31883057258754,57.99491246527212],[-125.31927188980761,57.99501117421456],[-125.31965761943496,57.995084923157606],[-125.31986000198853,57.99512184570234],[-125.3199042325878,57.995132165466366],[-125.31992942885763,57.995142388249825],[-125.32003156440811,57.99516758377918],[-125.32022101447323,57.99521789913367],[-125.32037344521692,57.99526802575939],[-125.32042385851152,57.995287349648116],[-125.32050323799339,57.99528438890695],[-125.32075121318533,57.99525648920811],[-125.32101645232936,57.99520960961823],[-125.32111646262389,57.995176470178954],[-125.32114522882344,57.99516427883836],[-125.32119548569679,57.995134251132896],[-125.32128103586703,57.99508197080784],[-125.32138679074686,57.99502306352992],[-125.32147234039729,57.99497078308852],[-125.32155031363833,57.99492855850998],[-125.32163145061567,57.99488634996559],[-125.32172326329106,57.994838587608164],[-125.32182244919319,57.99479198425077],[-125.32192471437766,57.994751004473095],[-125.32203334430702,57.99470893534264],[-125.32209197845876,57.99468343627264],[-125.32216344702849,57.99464902953452],[-125.3223478521031,57.99456921044432],[-125.32254819058257,57.99448498556464],[-125.32264624459562,57.994442862283854],[-125.32266965003076,57.994435129833775],[-125.32271835318376,57.99443201213598],[-125.32284234895836,57.99441693875806],[-125.32303341969707,57.99431920694875],[-125.32327805206293,57.994182490384475],[-125.32350416378142,57.99413540760312],[-125.32367172364569,57.99410933822107],[-125.32380409815516,57.99404046958136],[-125.32394344159599,57.993995189722604],[-125.3242385787404,57.9939316312662],[-125.3246547661794,57.99384064462055],[-125.3249942926457,57.99377843067954],[-125.32525933462595,57.99374163621734],[-125.3255456051723,57.99370046209123],[-125.32591254132785,57.99364287072064],[-125.32626660615381,57.993595307786244],[-125.32651972062567,57.99357527463691],[-125.3268583567579,57.99356240188859],[-125.32723512008405,57.993546355643375],[-125.32746366349379,57.99353965606716],[-125.32767430256777,57.99352837952803],[-125.3280193626991,57.99351104979647],[-125.3284765490358,57.99349204007633],[-125.32900640454775,57.993490218075685],[-125.32952868510147,57.99343788396858],[-125.32987812544384,57.99335327550785],[-125.33008762857898,57.993287031128524],[-125.33029965143368,57.993257811826275],[-125.330493406399,57.993245324549065],[-125.3306539930752,57.993253981055695],[-125.33075318990893,57.99326569440147],[-125.3308102502153,57.99326822365794],[-125.3309210342072,57.99316334871519],[-125.33113167036325,57.99303429889753],[-125.33157186150697,57.99307800296668],[-125.3320846528265,57.99308393451832],[-125.33245308055153,57.99300053599594],[-125.33275520708087,57.992959425801516],[-125.33309073454123,57.99294203536017],[-125.33333413662878,57.992932035201434],[-125.33340398501876,57.99292901922634],[-125.33343886788585,57.99293031501332],[-125.3335339943997,57.99293303318119],[-125.33362497094232,57.992931244173235],[-125.33365562719214,57.992931397206284],[-125.33376205526619,57.992953238788594],[-125.33398442295594,57.9929958475569],[-125.33416892044502,57.99302817268508],[-125.33430391051455,57.993049034699155],[-125.33436715609015,57.993060566062994],[-125.33452319514421,57.99308714080198],[-125.33493801302575,57.99313070725616],[-125.33536235702691,57.993174319849125],[-125.33556612818901,57.99319327982972],[-125.33561263444294,57.993194632901705],[-125.33571497659754,57.99320747980512],[-125.33601953342075,57.993148428753564],[-125.33632680370212,57.99299517631343],[-125.33650026243278,57.99293322914229],[-125.33665689272229,57.99298672265512],[-125.33678366137639,57.99305352679515],[-125.33681911792989,57.993081742887924],[-125.33688449896103,57.993092162067114],[-125.33705607284165,57.99313787816432],[-125.33721179731094,57.99318239375051],[-125.33739252701317,57.993187777362245],[-125.33774912058274,57.99317608776135],[-125.33814344744198,57.9931825298601],[-125.3384982634196,57.99321120695218],[-125.33892767100099,57.99326829245185],[-125.33926104399966,57.99331368528074],[-125.33946908983154,57.99332929565915],[-125.33968798336488,57.993330378605776],[-125.33982953903372,57.99333892992391],[-125.33991717779318,57.99334609289552],[-125.34003539154338,57.99335901496076],[-125.3401029676413,57.99336495702267],[-125.34017370475893,57.993372036272234],[-125.34033071934581,57.9934030954164],[-125.34059068867032,57.99347391889712],[-125.3409857585518,57.993619434339436],[-125.34133997688383,57.99374231510708],[-125.34146082224403,57.9937866536259],[-125.34156067940584,57.99382079413511],[-125.34190765827469,57.99387522023277],[-125.34227438687306,57.99394880989882],[-125.34239403831008,57.994060437560975],[-125.34242938721624,57.99415594751454],[-125.34245546624179,57.99423683103244],[-125.34244527796471,57.99433548148322],[-125.34243927506112,57.99437582944998],[-125.34248254057486,57.994381650551546],[-125.34262214306888,57.99438121648938],[-125.34278686900966,57.99439548674796],[-125.34293762387689,57.994422025617524],[-125.34314289256137,57.994476872520096],[-125.34341105296689,57.99450286690039],[-125.3435849453325,57.99447680372089],[-125.34362224172347,57.994460163137084],[-125.34386853761355,57.9944669819203],[-125.34438172466372,57.99445043612448],[-125.34474249911135,57.994442113105706],[-125.34496543603089,57.9944533015959],[-125.34528970946569,57.994476202729864],[-125.34556828943637,57.994511216654644],[-125.34570244028603,57.99451972542657],[-125.34583872301656,57.994528244510306],[-125.34601841144296,57.99453361131129],[-125.34611670682149,57.99453633601698],[-125.34615589955976,57.994533163192855],[-125.346181122108,57.99454225951208],[-125.3462260678539,57.994633329070666],[-125.34636485144621,57.99486169309466],[-125.34659884514113,57.995089401468505],[-125.34686454143491,57.995196131929234],[-125.3469983217597,57.9952270695507],[-125.34704133794568,57.995246347135556],[-125.34716237042117,57.99528058703547],[-125.34738014725221,57.99534558297637],[-125.34755467426419,57.995404759199104],[-125.347608360583,57.99541960235582],[-125.34764714739751,57.99543885907808],[-125.3478654299942,57.99547581673157],[-125.34827464584377,57.99547893672892],[-125.34861921027041,57.995430146491834],[-125.34874236394762,57.99540270738368],[-125.348808956988,57.9954041538368],[-125.34906185652596,57.9954569807633],[-125.34945564259331,57.995557600980206],[-125.34975346084948,57.99564317184274],[-125.34992779900074,57.99577412635956],[-125.35010248391187,57.99600826945992],[-125.3503213546689,57.99619439864844],[-125.3504536096832,57.996252243769945],[-125.35047248942848,57.99626130842325],[-125.3506259529059,57.99619363743844],[-125.35094993385044,57.996050526684144],[-125.35118677168302,57.99593166685752],[-125.35138313281595,57.99582943395862],[-125.3516210362781,57.99570945698235],[-125.3517470008808,57.9956416512091],[-125.35177251603189,57.99563392391733],[-125.35178650416054,57.99562053265853],[-125.35183249028533,57.99559047278635],[-125.35192593241777,57.99550792816971],[-125.35202511768365,57.99539849301921],[-125.35212362490387,57.9953283104485],[-125.35222033039848,57.9953007397897],[-125.35227145679079,57.99527967750611],[-125.3522982116788,57.99526186175289],[-125.35236338622742,57.99522292202889],[-125.35241385037283,57.99517942452524],[-125.35244299333976,57.99514479636444],[-125.3524824957051,57.995123677619205],[-125.35248493757736,57.995042934434224],[-125.35262872223913,57.99486193299242],[-125.35300689583521,57.99470225637993],[-125.35332745909591,57.994572582790354],[-125.35349029724878,57.99445111746296],[-125.35355245977276,57.99440318984476],[-125.35360447869108,57.99439110417547],[-125.353824131712,57.994348425323004],[-125.35419056299644,57.994255984436215],[-125.35448165260705,57.99417888060682],[-125.35458170773111,57.994141230125976],[-125.35467597711747,57.994071025316394],[-125.35495695243208,57.99396695328047],[-125.35528969996776,57.993927061681326],[-125.35545669764633,57.99393235449041],[-125.35554179303347,57.99390360384241],[-125.35568988203669,57.9938403877351],[-125.35589437151971,57.993756133303634],[-125.35603912469581,57.99370187349253],[-125.35615844149983,57.9936508556355],[-125.35632024730822,57.99358882660841],[-125.35645557007862,57.99352891291265],[-125.3565334240734,57.9934911539818],[-125.35661046190648,57.99343881033835],[-125.35670878244788,57.993378718053286],[-125.35683781697661,57.99331540890228],[-125.35701964274556,57.993257961897505],[-125.35720682338483,57.993196054058004],[-125.35741573988727,57.99316116886618],[-125.35763907369902,57.993149906214],[-125.35777345265399,57.99314494481665],[-125.35792907347852,57.99313559907959],[-125.35818956135638,57.99311554145549],[-125.3584139436173,57.993104282550746],[-125.35856200046993,57.99310387247789],[-125.3586518337166,57.99310654730111],[-125.35873518616064,57.99311816368565],[-125.35899286926755,57.99313846841869],[-125.35944599350577,57.99316980497878],[-125.35991923973471,57.993138427206745],[-125.36040940792245,57.99304431957432],[-125.36083930859756,57.993011609271676],[-125.36103785348546,57.99302714050307],[-125.36127543794771,57.993047344618574],[-125.36171356639039,57.993090939254145],[-125.3620122147229,57.99312713633744],[-125.36213536884598,57.99316137269134],[-125.3621866211006,57.99319414380939],[-125.36220639653007,57.993213305392494],[-125.36232387551033,57.99320713707527],[-125.36251973437228,57.99319461341877],[-125.36268484345602,57.993186429046645],[-125.36281287738561,57.99318143228583],[-125.36289760380477,57.99317398552855],[-125.36298760669114,57.99316768549095],[-125.3632391572008,57.99317561521917],[-125.3635304332411,57.99321065213834],[-125.36364111123648,57.99323136848673],[-125.36376990695194,57.99324431993955],[-125.3640663275815,57.99328835295707],[-125.3643499669966,57.993336810829696],[-125.36456920785199,57.99337935359896],[-125.36474527417147,57.99341159621035],[-125.3649085589115,57.99344826415583],[-125.36515317922307,57.993490926707445],[-125.36537348777318,57.9935334732319],[-125.36550546789526,57.993545316551746],[-125.36562679600202,57.99356271709027],[-125.36579139445807,57.99358480947665],[-125.36602753830019,57.99362855174571],[-125.36630159868604,57.993681446348006],[-125.36651148876109,57.99371384718773],[-125.3666698194981,57.99373142236924],[-125.36679945686078,57.993757834013714],[-125.36687064344453,57.99380079223183],[-125.36691548044902,57.993838017482496],[-125.36703334574196,57.99387222422918],[-125.36721183383676,57.993886529561266],[-125.36729216111323,57.99388915349907],[-125.36729426861646,57.993826354222314],[-125.36730379613033,57.99370078086119],[-125.36735226979872,57.993585486441596],[-125.36745993999234,57.99347159412782],[-125.36753318633848,57.99339230804646],[-125.36755581829522,57.99336661862484],[-125.36760784029475,57.99329171832867],[-125.36772782890162,57.99313750684677],[-125.36787746373498,57.99298007089886],[-125.36798037229707,57.99289756030389],[-125.36805211437974,57.9928451850994],[-125.36817742683611,57.99275044291074],[-125.36836264933108,57.9926156067868],[-125.36848380611377,57.99251635830823],[-125.36851832195352,57.99247614427576],[-125.36854112051653,57.99244148276907],[-125.36857245558605,57.99240125367978],[-125.36860687691353,57.99236664714335],[-125.36865120038084,57.992309655594454],[-125.36869634632912,57.99226612702761],[-125.36871145153265,57.99224825299429],[-125.36876309252621,57.992195782390354],[-125.3688828297202,57.992055028001644],[-125.36898490062858,57.99189624455657],[-125.36902876031151,57.99180335980161],[-125.36905170878434,57.99175972621552],[-125.36908999010583,57.991683638955024],[-125.36915636405533,57.99157291513691],[-125.36921689585317,57.99149468982932],[-125.36926861047208,57.99143773306513],[-125.36930523921038,57.99139752886826],[-125.36936178587212,57.991304704004364],[-125.36947652217971,57.991147101758294],[-125.3695597194752,57.99104094364122],[-125.36958552915074,57.99101526896203],[-125.36962103291754,57.99097954574807],[-125.3696888051584,57.990910327199984],[-125.36975569770325,57.99083101015986],[-125.36982350517037,57.9907606701332],[-125.36993078332837,57.99066920619119],[-125.37015837888093,57.99052783842529],[-125.37038915318954,57.9903864852948],[-125.37045272932647,57.99031612503247],[-125.3704574852346,57.99028474296317],[-125.37047567712341,57.99027136969103],[-125.3704927260999,57.99026359897273],[-125.37054368495332,57.99025150181047],[-125.37081284353675,57.99028081055586],[-125.37123197990357,57.990256989046365],[-125.37141729365015,57.99011429846239],[-125.3714443969893,57.990011239919696],[-125.37152078734819,57.98999589737999],[-125.3717182758368,57.989947477198555],[-125.37203760835034,57.98988504936226],[-125.37229202221225,57.989846990439695],[-125.37249948229994,57.989834506841284],[-125.37279577599438,57.98982131878585],[-125.37313125680944,57.989803827765705],[-125.37338544439329,57.98977922476642],[-125.37355484022018,57.98976656083304],[-125.37372644411255,57.9897482991047],[-125.37393094540002,57.9897234619356],[-125.37406231471883,57.98970837581814],[-125.37411643516438,57.98969629213421],[-125.37416828960309,57.98969429209655],[-125.3742414417144,57.98968229759426],[-125.37438873504841,57.98966392104634],[-125.37456870318623,57.989651305384136],[-125.37476996695031,57.98962981653083],[-125.37503182506853,57.98958842252443],[-125.37520885116297,57.98949840267591],[-125.3752782733667,57.98939329838282],[-125.37554982139176,57.98934185444643],[-125.37602173842858,57.98938668173053],[-125.3763115399846,57.98944523714338],[-125.37639369359371,57.98946468797895],[-125.37652919714266,57.98945522669889],[-125.37682828981468,57.98940054406071],[-125.37713370686158,57.98934701185972],[-125.37726731840733,57.98932408195944],[-125.3773679571272,57.989313335579496],[-125.37760831079471,57.989293146395916],[-125.37793534310978,57.989275603948855],[-125.37815118231255,57.989267636995976],[-125.37820092298836,57.98926450396165],[-125.37825264660478,57.98927035284114],[-125.37848100629621,57.98927253795914],[-125.37889968126062,57.989275608410225],[-125.37926814327969,57.98924591802407],[-125.3794267300816,57.98918272499612],[-125.379547464913,57.98904308795397],[-125.37975267864346,57.98884664252138],[-125.379904314902,57.98875649859885],[-125.37993903731623,57.98870282377629],[-125.37993432351529,57.988604102311555],[-125.38006282449291,57.98869779084827],[-125.38031710323999,57.988731497629296],[-125.38062879236324,57.98874528179472],[-125.38083016488682,57.98884491565788],[-125.38093588237662,57.98897438843191],[-125.38097734222764,57.989025052099805],[-125.38101108338259,57.989030816509405],[-125.38110401488895,57.9890379769627],[-125.38128370053984,57.98904217476369],[-125.38152888345891,57.9890500405854],[-125.38177719144103,57.989061285189536],[-125.38198631557006,57.9890757126677],[-125.38218085909185,57.98907661329499],[-125.38251068192285,57.98908150429988],[-125.38289522647739,57.98910234970401],[-125.3831192272158,57.98911235783948],[-125.38328824830685,57.9891221115816],[-125.38359240179209,57.989144826682896],[-125.38390411395257,57.9891574817051],[-125.38402028862265,57.989165868994405],[-125.38402405779993,57.989129995636404],[-125.38411483982195,57.9890104048628],[-125.38432709067433,57.988963155879226],[-125.38450287831016,57.98907612518819],[-125.38468846837807,57.98917119408781],[-125.38500462934404,57.98917152960103],[-125.3852547225535,57.989137912520135],[-125.38539503939788,57.98909257368249],[-125.38551838401486,57.989050521324074],[-125.38563281115228,57.98903646745024],[-125.3858950034874,57.989038795610554],[-125.38624860426675,57.98907631275813],[-125.38646418675833,57.989149085363046],[-125.38658225669859,57.989170938159916],[-125.38665637797864,57.98916454926608],[-125.38672205911575,57.98915699996603],[-125.38682048988866,57.98915072267337],[-125.3869210521541,57.98914445509867],[-125.38705443728482,57.98913497342441],[-125.38719635400012,57.989121044444985],[-125.38731495503202,57.98911037304939],[-125.38745573260576,57.98910092490843],[-125.38756480793872,57.98909133116147],[-125.38759976364902,57.98908700520484],[-125.38762512062303,57.98908824312836],[-125.38769602324152,57.98908520364863],[-125.38777218561528,57.98908330984233],[-125.3877996571979,57.98908455743202],[-125.38781898123533,57.98906670069594],[-125.38802322635263,57.988991369501434],[-125.38836326156198,57.9888886206908],[-125.38854810800804,57.988835631522775],[-125.38867740853644,57.988817156845094],[-125.38885799982756,57.98870021743039],[-125.38895302264366,57.98851446942216],[-125.3889969019803,57.98841709244383],[-125.38907366514893,57.988378188367314],[-125.38916769134539,57.98831805315139],[-125.38929385520302,57.988232268487934],[-125.38941656461756,57.98816329167421],[-125.38946456999551,57.988137714837606],[-125.38949619710291,57.988143467424344],[-125.38964452574811,57.988125078870134],[-125.38984930057875,57.98808115176959],[-125.3899535148473,57.98804461586245],[-125.38997925385132,57.98802230182544],[-125.39000286005883,57.98800109962056],[-125.39002580005246,57.98795634110842],[-125.39003724732294,57.98790255740405],[-125.39006829017691,57.987814094158885],[-125.3901603171649,57.98768104623368],[-125.39028615630508,57.98755039589719],[-125.39040084061762,57.98745446359251],[-125.39056287260212,57.987373327983555],[-125.39084323175294,57.987233288398784],[-125.39110018514629,57.987100992556044],[-125.39120606127364,57.9870274510865],[-125.39123214432833,57.98698382834191],[-125.39124300770403,57.986965932572325],[-125.39131304031558,57.986950549823426],[-125.3915658091284,57.986881042660755],[-125.39208286054958,57.9866837571079],[-125.39277698470673,57.98638969775465],[-125.39327768736023,57.986156442757434],[-125.3934683707904,57.98606758296487],[-125.39361213614752,57.986004306112925],[-125.39375959202114,57.98584234676905],[-125.39378695832465,57.98565404553456],[-125.3937776356472,57.98557661413979],[-125.39383562997003,57.98552079853362],[-125.39400612414852,57.98537240260929],[-125.39435198352373,57.98523377505242],[-125.3947972889348,57.98515616292477],[-125.39517422774895,57.98512198112351],[-125.39539228020604,57.985106145424886],[-125.39556799066888,57.98509348235518],[-125.39586114902711,57.985074621277754],[-125.39615121612104,57.9850512592541],[-125.39628360777512,57.98503727766273],[-125.39634089436046,57.98502519941386],[-125.396398180909,57.985013121140646],[-125.39651394682707,57.984979997280526],[-125.39673519337765,57.984896879087465],[-125.39699055699761,57.98479596942847],[-125.39719680282711,57.98472512008599],[-125.39729973589134,57.984702031808446],[-125.3973952061164,57.98468227449303],[-125.39758381599184,57.98465620808508],[-125.39778017713975,57.98460774481534],[-125.39786039116272,57.98455090623475],[-125.39786512343444,57.98451952338542],[-125.39799135516817,57.984559348098024],[-125.39824486816038,57.98463900189869],[-125.39841022481708,57.98467900261966],[-125.39856269227357,57.98466510927529],[-125.39879772734305,57.98464485825556],[-125.39894701452383,57.984630950147704],[-125.399010222244,57.98457964218386],[-125.3990795148837,57.98447789056508],[-125.39916986085268,57.984381841597134],[-125.39948010807485,57.98421948755819],[-125.40000024328477,57.98402330770421],[-125.40004807589361,57.98400669907576],[-125.40048771952172,57.983951474280516],[-125.40080775389293,57.98403702984948],[-125.40114047569907,57.984122641584335],[-125.40131418417207,57.98416828404605],[-125.40142035854235,57.98420689393449],[-125.40160753343085,57.984270541656954],[-125.40176553700269,57.98430714049347],[-125.40186986680962,57.984327796513156],[-125.40205832300279,57.98437799041389],[-125.40242909111444,57.98446489097277],[-125.4028294440623,57.98455304446135],[-125.40311230399816,57.98458347084954],[-125.4033481709734,57.98457667448645],[-125.40356962838842,57.984546260177275],[-125.40381164411964,57.984485654743295],[-125.40403061485414,57.984411487040276],[-125.4041094686007,57.984372583926266],[-125.40425390237623,57.98433173036995],[-125.40453507578349,57.98426793370639],[-125.40472707193626,57.984228413428035],[-125.40476418881235,57.98422072793562],[-125.40484437366072,57.98416500667932],[-125.4050632877142,57.98402690718093],[-125.40525663210312,57.98390215232641],[-125.40531856898284,57.98386317314015],[-125.40543593959967,57.98379527990619],[-125.4057119887894,57.98365406921835],[-125.40609005345443,57.983480786308256],[-125.40636700390274,57.98334967252922],[-125.4065034172958,57.98328074153739],[-125.40665278168646,57.98319504435747],[-125.40688188278435,57.98308054045371],[-125.40704711097766,57.9829949133613],[-125.40718871050903,57.98293161262579],[-125.40738964966246,57.98286072423267],[-125.40761374353085,57.982862840717765],[-125.40780360246153,57.98289060114646],[-125.40788122435762,57.98286178460965],[-125.40786441113266,57.982788807623656],[-125.4077989532654,57.98271561478962],[-125.40785617430886,57.98264072316955],[-125.40812248816144,57.98251292344888],[-125.40846332838044,57.982351806348184],[-125.40876196951294,57.98218489359696],[-125.40896866657602,57.98201532990022],[-125.40908758452606,57.98191603642622],[-125.40917261159872,57.98188725197119],[-125.40922143241242,57.98187513079361],[-125.40927426989323,57.98187648626465],[-125.40942755894024,57.98187604314128],[-125.40965679227332,57.98181985712679],[-125.4098195338854,57.981689352826656],[-125.40993057334822,57.98155301188575],[-125.41011549406129,57.9813564325213],[-125.41030112684582,57.98118116598178],[-125.41047921752106,57.98108325442319],[-125.41081108535369,57.98095349606914],[-125.41117268962226,57.98081489555233],[-125.41135625796664,57.98077084251601],[-125.41142389297438,57.980772262412664],[-125.41149060240255,57.98076582718756],[-125.41158457363768,57.980705676674],[-125.41170038871334,57.980600759518204],[-125.4117861134799,57.98052711365878],[-125.41184613466848,57.980474664332405],[-125.41193355148678,57.98042794357049],[-125.41209318181409,57.98036023105412],[-125.41233141998964,57.98026818997668],[-125.41254105542227,57.98017938728926],[-125.41266362502859,57.980115997247566],[-125.41276555812577,57.98008728499689],[-125.4129009485241,57.98008227286672],[-125.41307432265751,57.98008191395176],[-125.41324774935657,57.9800781903293],[-125.41334101524963,57.98006289838652],[-125.41335806823848,57.98005400078574],[-125.41341773611794,57.98002398066028],[-125.41353691396198,57.979974033778696],[-125.4135955160664,57.979944008893725],[-125.41367244393109,57.97996004891425],[-125.4138665208639,57.979987819209015],[-125.41405734848011,57.98002006123768],[-125.4141998663627,57.98003302422366],[-125.41430447099593,57.98003572652074],[-125.41440316997173,57.980011485116975],[-125.41450545116284,57.97996034165727],[-125.41456628895305,57.9799224751634],[-125.41469296012978,57.97986695228299],[-125.41491750866705,57.97977036035113],[-125.41506748614906,57.97971157460128],[-125.41515638249665,57.97970523481357],[-125.41532467073027,57.97969139184741],[-125.41551593392677,57.97969671599926],[-125.41567618549475,57.97972433549498],[-125.41579855819867,57.979740573270185],[-125.41587639562017,57.97976558855987],[-125.41594633699339,57.979821973219416],[-125.41603708763938,57.979900880321196],[-125.41612486830473,57.97996631552315],[-125.41620026105021,57.980012629773924],[-125.41625477443515,57.980042029088764],[-125.41628627680048,57.98005562573875],[-125.41637313218868,57.980112084170976],[-125.41651860738725,57.98020693228293],[-125.41669065812407,57.98029180227172],[-125.41683767107159,57.98035525277963],[-125.41695948914081,57.98040737734024],[-125.41711537729027,57.980443948615424],[-125.41730002424836,57.98046606486368],[-125.41738448495505,57.98047316306507],[-125.41740172856237,57.980451928497146],[-125.41742885953605,57.980407184100336],[-125.41745476835035,57.98037252850399],[-125.41756064841302,57.980361774960656],[-125.41780247549663,57.980310116388964],[-125.41807071405034,57.98019127831888],[-125.41827721912573,57.98003067252583],[-125.41843435098627,57.97991920037597],[-125.41855091525665,57.979832225845506],[-125.41859698440524,57.979793171616386],[-125.41862692890997,57.97977087067594],[-125.41868685253354,57.97972402578743],[-125.4187242572077,57.97969727104525],[-125.41874447097896,57.979689508104144],[-125.41877532503686,57.97967618365509],[-125.41882744094997,57.97965622238051],[-125.41889258882098,57.97961276486956],[-125.41894379526192,57.97958270546255],[-125.41895782286271,57.979564821425335],[-125.41898986369587,57.97954365110821],[-125.41906585913537,57.979482295633744],[-125.41912672581242,57.97944330565979],[-125.41916517803836,57.97941767693413],[-125.41919171686125,57.97940994145937],[-125.41926215750519,57.97936650681969],[-125.41944648904266,57.9792730970619],[-125.41965505352319,57.97918427873202],[-125.41978732058003,57.979107465625866],[-125.41991704853179,57.97898914330565],[-125.4200741711671,57.97887766934922],[-125.42022363530535,57.978850279606135],[-125.42040425548892,57.97886003679537],[-125.42061607454536,57.978834039005015],[-125.42076878681459,57.97880217648342],[-125.42092565771836,57.978774818110516],[-125.42114400818097,57.97873651057749],[-125.42135849302281,57.97867463299072],[-125.42154865742233,57.97861264964172],[-125.4216815004873,57.978567241138435],[-125.42183448702123,57.97851743351247],[-125.42212756770641,57.97843122073297],[-125.42243767985575,57.97833723006626],[-125.42271123515843,57.978213919785574],[-125.42307036224328,57.978094343673185],[-125.42338454011188,57.97807999972682],[-125.42363811621975,57.978087824646416],[-125.42397388129753,57.97804329023515],[-125.42426217521647,57.977992942335774],[-125.42447962387092,57.97794453141572],[-125.42469676299159,57.9779151854522],[-125.42483016738845,57.9779011801726],[-125.4249692772289,57.97786028173902],[-125.42520380794669,57.97779960602889],[-125.42537046734662,57.97775433958753],[-125.42542469130952,57.97773326331555],[-125.42551696651014,57.97771347241525],[-125.42568269691272,57.97765922905851],[-125.42582383340103,57.97762282474157],[-125.42599824435383,57.97762357511442],[-125.42623690019518,57.97763918188564],[-125.42635614264752,57.97765203179306],[-125.426384621199,57.977656640485165],[-125.4264561879422,57.97767713631348],[-125.42655833043312,57.97770224977166],[-125.42674394931993,57.97772996493184],[-125.42699233283626,57.97773215334078],[-125.42714692680035,57.977714872045475],[-125.42724040351558,57.97768499101765],[-125.42734011939127,57.97766186610076],[-125.42742070681437,57.977645388429906],[-125.42748111750839,57.977634431975],[-125.4275055050114,57.977630050343244],[-125.42756283862896,57.97761347281807],[-125.42771349443237,57.97757710734999],[-125.42790232091238,57.97753305440967],[-125.42799646274722,57.97745943463432],[-125.42798428506235,57.97735619835365],[-125.4279627973637,57.97731012203302],[-125.42807148667437,57.977321803597455],[-125.4283216913053,57.97734306396876],[-125.42851603859503,57.97735286899481],[-125.42863893804683,57.977334328675724],[-125.42875776299813,57.9773056767087],[-125.42883938049881,57.97729032416883],[-125.428982643402,57.977253925646316],[-125.42922450293838,57.97719776057788],[-125.42945269785207,57.977135928822804],[-125.4296236281644,57.977087310701414],[-125.42963344650936,57.97699762743707],[-125.42955055849949,57.97688735970678],[-125.42972417316261,57.97687015677583],[-125.4300565808037,57.97690634553643],[-125.43033051335706,57.97689629966165],[-125.43066632785046,57.97684726249798],[-125.43099481915306,57.97679370700743],[-125.43112091187952,57.97677405647871],[-125.43123944443359,57.97676446769064],[-125.43146074835798,57.97673849325609],[-125.4315697765256,57.9767288636788],[-125.4315909836272,57.97672446776057],[-125.43175586942472,57.97672517004852],[-125.43202432037829,57.976727434573796],[-125.4321544028326,57.97672238039684],[-125.43225644744504,57.976684681423436],[-125.43245847069088,57.97667656833671],[-125.43259276176143,57.97674331177113],[-125.4327023958996,57.97683238154116],[-125.4328865600709,57.97688699950029],[-125.43302237523474,57.97692234517255],[-125.43317418902656,57.976948786150324],[-125.43337024338085,57.97698550891379],[-125.43354542938899,57.977004197762554],[-125.43374527250096,57.97700055972312],[-125.43390804561423,57.97700125038093],[-125.43394616408663,57.97699692583233],[-125.43404467337866,57.9769827633473],[-125.43423969608541,57.97694770031007],[-125.4343403528736,57.97693242514912],[-125.43445501189385,57.97689926422614],[-125.43460804222526,57.976844956073485],[-125.43478253205299,57.976769428928556],[-125.43503060091454,57.976650472117264],[-125.43535431062463,57.97649258023331],[-125.43563837964392,57.97637040998769],[-125.43579686772676,57.97630378640129],[-125.43587546939243,57.97627832277024],[-125.43595293824353,57.976258462123724],[-125.43604347763853,57.97621173914985],[-125.43617493843804,57.976115840245896],[-125.4363582812039,57.97601343101506],[-125.4365659240866,57.97591112416113],[-125.43676314794885,57.97579980051543],[-125.43688275216245,57.97571843123834],[-125.43695548104046,57.97566153845042],[-125.43703255509033,57.97559681302109],[-125.43708387600918,57.97555777484919],[-125.43713064976703,57.97554002716804],[-125.43717747389961,57.97551891499546],[-125.437195550843,57.97551114030665],[-125.43726696151818,57.97547218680579],[-125.43750233087455,57.97535317207329],[-125.43779524254604,57.975204117235705],[-125.43797837505666,57.97511516377449],[-125.43803908935294,57.97501335735871],[-125.4381435811584,57.97488145311181],[-125.43833535977228,57.974850856815415],[-125.43846405107253,57.97486822190599],[-125.43856746805632,57.974808092772214],[-125.43875502553183,57.97470569818016],[-125.43895810890628,57.974625799851616],[-125.43910048746406,57.974575928200565],[-125.43919203400493,57.97453257212531],[-125.43926447244863,57.97449474349374],[-125.4393198162285,57.97446918016338],[-125.43940460239412,57.97445383456743],[-125.43952743677652,57.97443864874968],[-125.43962470475236,57.97443681417794],[-125.43990395965811,57.97442228487219],[-125.44037352248203,57.974404067080435],[-125.44062721092688,57.97440288775843],[-125.44068644720436,57.97439977140385],[-125.4407891914226,57.97438450021006],[-125.44098392726683,57.97436737126625],[-125.441282605631,57.97432600300092],[-125.44151775303963,57.97429221908824],[-125.44165233701715,57.97426922957861],[-125.44180855707401,57.97428334194999],[-125.44197318240577,57.974300853973425],[-125.44205545347894,57.974312413636426],[-125.44209123792952,57.97432265731612],[-125.44217973385709,57.97434209385513],[-125.44249092662164,57.97438264913213],[-125.44295025222284,57.974413728169125],[-125.44330525311506,57.97442306073824],[-125.44353094717852,57.974456527468064],[-125.44386682707515,57.97454316647362],[-125.44428579745447,57.974658189745064],[-125.44458050318487,57.97474241234284],[-125.44467196499592,57.974776439864556],[-125.44478131963632,57.97481502802421],[-125.44509919689106,57.97490495370443],[-125.44551830753647,57.97501100121322],[-125.44587223919147,57.97509322395346],[-125.44604920560008,57.975134334974435],[-125.44608287808798,57.975144568816624],[-125.44613901203459,57.97506517100772],[-125.44631950016422,57.974867403825094],[-125.44661156427273,57.97462860152071],[-125.4469045578959,57.97439877498692],[-125.44714679226968,57.974099200864465],[-125.44738753563648,57.97375587942702],[-125.44764995933106,57.973520317105624],[-125.44803353172958,57.97331105143498],[-125.44845983537891,57.973070557743036],[-125.44874315372951,57.97284966011877],[-125.44891906571401,57.97260252254155],[-125.44912553302918,57.97236111875746],[-125.44944621782007,57.97211457831173],[-125.44972393530985,57.97191496534957],[-125.44984779207914,57.971829116269554],[-125.44990761481692,57.97178562223033],[-125.45001113636486,57.97171651251533],[-125.45018709631952,57.971609568350146],[-125.45039824992494,57.97148033782921],[-125.4507302236806,57.97125515065922],[-125.45108985111334,57.97101886095729],[-125.45125741534746,57.9709062731665],[-125.45158846247581,57.97074500886968],[-125.45221093112951,57.97045596187462],[-125.4525805210065,57.97026008528949],[-125.45274873094854,57.970102636228674],[-125.45304884149587,57.969814506004404],[-125.45334062392594,57.96951736865967],[-125.4535502898412,57.96927148590293],[-125.4537613274699,57.969003177452976],[-125.4539804899557,57.968757333061546],[-125.45423344869627,57.96851274820361],[-125.45459367238769,57.96815868945234],[-125.45497487708485,57.9678148095707],[-125.45523556104699,57.96761960291259],[-125.45557860755943,57.96735519580844],[-125.45604672474485,57.966773899302126],[-125.45624976419536,57.96610628361118],[-125.45624183118638,57.965705858361055],[-125.45624021112815,57.9655981831037],[-125.45636017283535,57.9655605394022],[-125.45675519238246,57.96542756288602],[-125.45729675473326,57.96524471184866],[-125.45766560231812,57.965093681465056],[-125.45789887512602,57.964965651699266],[-125.45804811413903,57.96487541277153],[-125.45798565480501,57.96481010925392],[-125.45775815156071,57.96475871502536],[-125.45760511035624,57.96474575580773],[-125.45761524727142,57.96462915612107],[-125.45766621981146,57.964392716964866],[-125.45771205801158,57.96421794203838],[-125.45771840916403,57.96399814475328],[-125.4576882113289,57.96367389515238],[-125.45765794231978,57.96350217557304],[-125.45759976087864,57.96343352471441],[-125.45749843752755,57.96320543891927],[-125.45741899662337,57.96285295060828],[-125.4573689749606,57.96258581945263],[-125.45733136870561,57.962409583961154],[-125.45728153774431,57.96220189551206],[-125.45724955873197,57.96207503090091],[-125.45723825224738,57.96205255401201],[-125.4572141058588,57.96204236185768],[-125.4571488752184,57.96202303014685],[-125.45707322501187,57.961993562096644],[-125.45699433199282,57.96196856697848],[-125.45672616938033,57.96188111613264],[-125.45630975729767,57.961742591073204],[-125.45598510570234,57.961688554787834],[-125.45566019506632,57.961652461354625],[-125.4553586832053,57.96153234689607],[-125.45523324860369,57.9614387465275],[-125.4551130406725,57.961349653573556],[-125.4549101564135,57.96120526704448],[-125.45478128560715,57.96112959692349],[-125.45458126234384,57.961079431238865],[-125.45417489459248,57.96097795156034],[-125.45389909702901,57.96090728696925],[-125.45384641785516,57.96089697738562],[-125.45384667869075,57.96087903376429],[-125.45385571769746,57.960838695226265],[-125.45386488709786,57.96078938487967],[-125.45389004303091,57.96073116764817],[-125.45390843540702,57.960700961295096],[-125.45399781301852,57.96058580829527],[-125.45417795617054,57.96033083391188],[-125.4543011608055,57.96006889716636],[-125.45435524387852,57.95983695925486],[-125.45438723581124,57.95967110196318],[-125.45437869042011,57.95953199586079],[-125.45425476356341,57.959335219106705],[-125.45397400251342,57.95909742482047],[-125.45366485949533,57.95885054140553],[-125.4534819852056,57.95856716395885],[-125.4534274896168,57.95824618014907],[-125.45341365356022,57.95803527395103],[-125.45339859795602,57.95798025680252],[-125.45338097330074,57.95795775377544],[-125.45336849186468,57.957944244143825],[-125.45323995816382,57.95777436479984],[-125.45291431351852,57.95735581679407],[-125.4526043013796,57.95695191231406],[-125.45246331014962,57.95676740124165],[-125.4525367004783,57.95673405637703],[-125.45287053934351,57.956734304820046],[-125.45354560343965,57.956734829464125],[-125.45460345281721,57.956639342825376],[-125.45582686414802,57.95627311139785],[-125.45692071885858,57.95580428162974],[-125.45761650545309,57.95554018752476],[-125.45793459667395,57.95545960868301],[-125.45822251246204,57.95534638196788],[-125.45857845600408,57.95513137109931],[-125.45886924091621,57.954892542727016],[-125.4589816523764,57.95471579624392],[-125.45899944348473,57.95458128421426],[-125.45900997540465,57.95450954870457],[-125.45901855527428,57.95450061123105],[-125.45893801690063,57.95444532928789],[-125.45869761188203,57.95426715121134],[-125.45839917012285,57.95401135116109],[-125.4581939115778,57.95381312735818],[-125.45810088057138,57.95367143606165],[-125.45806513704815,57.953440254837396],[-125.45810293339483,57.9531633896454],[-125.45822495775795,57.952905932809344],[-125.45838236079182,57.95268563021681],[-125.45852729667276,57.952450696952866],[-125.45866178108413,57.95220787044442],[-125.45880471389398,57.951965078157684],[-125.45893606503328,57.95179289528688],[-125.4590081661257,57.951700100695575],[-125.45903612932071,57.95166544666159],[-125.45912175987041,57.95158728681659],[-125.45926844409924,57.95145105488875],[-125.45938843833771,57.95133378064851],[-125.45950507721818,57.95122882955764],[-125.45966686825483,57.951143127370365],[-125.45991570650492,57.951101517283945],[-125.46014449938056,57.951057582523525],[-125.46021680705269,57.951024229324226],[-125.46023928487132,57.9509301117477],[-125.4602968988596,57.95074304937706],[-125.46034586920776,57.95056941040012],[-125.46038014969322,57.95046188225429],[-125.46041820482485,57.950386893750796],[-125.46054506062063,57.95023263591772],[-125.46079045002409,57.949988013491954],[-125.46104707695564,57.949770352807676],[-125.46124347660974,57.94962759078828],[-125.4613660572833,57.949550700525805],[-125.4614310394876,57.94951170950256],[-125.46160015629846,57.94943052087602],[-125.46186353817096,57.94933064653012],[-125.4619824418977,57.949288508271714],[-125.46193581998116,57.94922439303626],[-125.46169878784269,57.949033898078994],[-125.46166055642215,57.94875336176002],[-125.46213206169736,57.94850179935442],[-125.46244718025638,57.94840325420249],[-125.46244316411077,57.94838865815766],[-125.46242274657126,57.948339228646695],[-125.46239031283024,57.94824376807733],[-125.462365713116,57.948116936344384],[-125.46239258489945,57.94801049964592],[-125.46247642465478,57.94790877873087],[-125.4625952857313,57.947795983668],[-125.46279717253613,57.9477115612074],[-125.4631417738177,57.9476176194166],[-125.46349554379194,57.94747436649981],[-125.46370882034657,57.947331669189104],[-125.46373940026699,57.947261136061435],[-125.46369514617416,57.9471790866938],[-125.46373060657514,57.94706259066535],[-125.46385825401502,57.94699917705744],[-125.46402701843712,57.94694153624882],[-125.46423900897896,57.946740513718225],[-125.46442208122578,57.94649339222955],[-125.46448366140893,57.946396066933],[-125.46464973118901,57.94623074821926],[-125.46498068914185,57.94590683467757],[-125.46522964492395,57.94563081708066],[-125.46538362521855,57.94542395275836],[-125.46552714979757,57.945283216259405],[-125.46584455509546,57.94509495088981],[-125.46630483996228,57.944810805890924],[-125.4667603208802,57.94456701499891],[-125.46734695309524,57.9443091668921],[-125.46792698699046,57.94406923431625],[-125.46840477722117,57.9438894538104],[-125.46876983056755,57.94376529852994],[-125.46894367038291,57.943720008735916],[-125.46909327587977,57.943670136133214],[-125.46932237695329,57.9436003924451],[-125.46951936890733,57.94356080167096],[-125.46968561741842,57.94353006048811],[-125.46984820987866,57.94345780830373],[-125.4699251770675,57.943391944637675],[-125.46994176920539,57.943339299149656],[-125.46991786753925,57.94331116611126],[-125.46994530837843,57.94331239673361],[-125.46999399622636,57.94330473965581],[-125.47013161145654,57.94328173473988],[-125.47031567575793,57.94326003575471],[-125.47053869477914,57.943247463386435],[-125.47072995289906,57.943239250641795],[-125.4707944103408,57.94323726347688],[-125.47080944728077,57.943219378842905],[-125.47087790098503,57.9431579669389],[-125.47107378689765,57.94304659224044],[-125.47132245661271,57.94293654811635],[-125.47143083245231,57.94288987401263],[-125.4714656813904,57.94281487036308],[-125.47154415799947,57.942641345948864],[-125.47161347648307,57.94251825358643],[-125.47168993427462,57.94248827557837],[-125.47186571095934,57.94252934671711],[-125.47208975038389,57.94259416064567],[-125.47220338953768,57.94262377008256],[-125.47231005344783,57.942623070795534],[-125.47252487176965,57.94259251836505],[-125.4727238412283,57.94256190290904],[-125.47294707427227,57.94253250460215],[-125.47336772509387,57.94250837198684],[-125.47377360704246,57.94248305823376],[-125.4739374214079,57.94247473258483],[-125.47399572847127,57.942458139866055],[-125.47406882070452,57.942442726968615],[-125.47418775170921,57.942396092306446],[-125.47434487087766,57.94233727141432],[-125.47450197387644,57.94227957179732],[-125.47475614958755,57.94222786207708],[-125.47514159666845,57.94215311686487],[-125.47548046906685,57.942086037941756],[-125.47570271215419,57.942052145087864],[-125.47587497087702,57.94204272876219],[-125.47595420985644,57.942040797226255],[-125.47595395970437,57.942058740532225],[-125.47595873090971,57.942094647866554],[-125.47600145520137,57.942060048739606],[-125.47601339220134,57.942037665296006],[-125.47603554391208,57.94203887387754],[-125.47609361618372,57.94204022362101],[-125.47614857455595,57.94203707503128],[-125.47629114038864,57.94203651363445],[-125.4765508827096,57.9420397767697],[-125.47681275266508,57.942041926230424],[-125.47709355247393,57.94204975701651],[-125.47732821627113,57.94203385446418],[-125.4774034182922,57.94201844802559],[-125.47743210864954,57.94200510227389],[-125.47745881303163,57.94198389810733],[-125.47747271950666,57.9419704944002],[-125.47748919132614,57.941925698248774],[-125.47751166722186,57.94182821429843],[-125.47754670567193,57.94173863020988],[-125.47756608741518,57.941711789744204],[-125.4775978136027,57.94170854951631],[-125.47766237582788,57.9416975873167],[-125.47779142358372,57.94168239162864],[-125.47794163755712,57.9416639141523],[-125.47808446797599,57.94164540760191],[-125.47823795010929,57.941619091966956],[-125.47850802655157,57.94156295132945],[-125.47891251354035,57.9414849052498],[-125.47926609466542,57.94142236036108],[-125.47940146113288,57.941408309323236],[-125.47951566146833,57.941397540064074],[-125.4797446051829,57.94133675028411],[-125.47999466753843,57.941276042495176],[-125.48023118911028,57.94127808638272],[-125.48035443450028,57.94129987565718],[-125.4804274133688,57.94129230948624],[-125.48061997171573,57.941266143419696],[-125.48086970695027,57.94122898457385],[-125.48103369865684,57.94120607122003],[-125.4811449242087,57.941181830793894],[-125.4813058025152,57.94115554044142],[-125.48151326680797,57.94112045895798],[-125.48164863134824,57.94110640564288],[-125.48169961143543,57.94108529504605],[-125.48174232929586,57.94105069411629],[-125.48175729830851,57.941037294113436],[-125.48180759802527,57.94106552754555],[-125.4819102941589,57.94112312401912],[-125.48196157980385,57.941155847291675],[-125.48199214944714,57.94116045214334],[-125.48206175049506,57.94116745166831],[-125.48212074555391,57.941177774505185],[-125.48220283288619,57.94119828065712],[-125.48238277712674,57.9412438401044],[-125.48263881482437,57.941286330084296],[-125.48291308926328,57.941307581496815],[-125.48307987088377,57.941312714357956],[-125.48324250575125,57.941312223354686],[-125.48348331324748,57.941309792019],[-125.4836354500131,57.941304773796446],[-125.48374210996656,57.94130406536415],[-125.48399864222579,57.94131066612136],[-125.4843991572957,57.941367170042355],[-125.48474590269291,57.941416735853984],[-125.48496081156894,57.94137831322684],[-125.48518982315349,57.941311906813226],[-125.48538943922044,57.94130931296189],[-125.48552449601794,57.94131768484551],[-125.48563758541947,57.941311392128085],[-125.48568403278578,57.94131269284341],[-125.48578941508839,57.94132880058521],[-125.48603377173667,57.94137572503998],[-125.48622949288617,57.941426947687184],[-125.4863692700697,57.94147571148717],[-125.48654390329695,57.94152460939305],[-125.48670410549704,57.941547656634896],[-125.4867885530704,57.94155022478592],[-125.4868476112651,57.941556059706116],[-125.48694895451146,57.941558692789044],[-125.4870576980648,57.94156135426863],[-125.4871199617086,57.94156383685273],[-125.48724361136125,57.94155758339595],[-125.48756464390232,57.94155769625346],[-125.4879328574867,57.94150527831504],[-125.48814228129073,57.94140290308927],[-125.48819585868748,57.941345911479324],[-125.48832582800978,57.941340802801136],[-125.48856850317705,57.94135631370152],[-125.488697164,57.941369143894214],[-125.48875465934519,57.94133459740648],[-125.48887094122176,57.94124756506177],[-125.48894809925001,57.94116486871361],[-125.48900702433895,57.94110341123622],[-125.4890561932248,57.94105986059177],[-125.48907909166257,57.9410061156148],[-125.48916637042156,57.940878597344586],[-125.48932572612232,57.94073004637489],[-125.48941313696417,57.94066981938303],[-125.48942170644598,57.940660880085],[-125.48944518111126,57.94064302575216],[-125.48952689384228,57.94061417928429],[-125.48964622619414,57.940536130143265],[-125.48971019334246,57.940413008403894],[-125.48970832795001,57.94031767253133],[-125.48968625423277,57.94023235294096],[-125.48973185321314,57.94006205732303],[-125.48987517742894,57.939850639702584],[-125.49000608527535,57.939697493189996],[-125.49004899168249,57.939648310729],[-125.49003855414482,57.939639298692384],[-125.48988534794391,57.9395680571683],[-125.48961248304926,57.939443646262156],[-125.48948126149688,57.93938594661247],[-125.4894711896919,57.93935001961361],[-125.48945423755956,57.93927705632723],[-125.48944410488593,57.93924561514995],[-125.48971396195255,57.93928029380751],[-125.4903114268916,57.93929603766662],[-125.49071480061897,57.939217951896666],[-125.49080902726905,57.93912186173279],[-125.49084678238617,57.939063687272075],[-125.49086831063384,57.93903348865012],[-125.4908747675826,57.939024541208596],[-125.49089741918158,57.93898873930995],[-125.49092858043144,57.93894960536821],[-125.49094155501284,57.9389272246618],[-125.49096425204583,57.93888805839169],[-125.49102148361031,57.93879519138054],[-125.49111856406888,57.93864415783965],[-125.49124608898425,57.938428192749335],[-125.49138149587623,57.938175247778254],[-125.49152522833442,57.93793242810426],[-125.49164202298387,57.93772875850721],[-125.49169066596468,57.93764483066995],[-125.49169818679424,57.937635887259944],[-125.49174212089294,57.937587829807896],[-125.49184392223022,57.93747830985402],[-125.491933933346,57.93738108151784],[-125.49200964870951,57.93732529454692],[-125.49214051259557,57.93725289500056],[-125.4922911258798,57.93720300076484],[-125.4924003854269,57.937165285510424],[-125.49248325685399,57.93712746970285],[-125.49252620250164,57.937074922219594],[-125.49253779039282,57.93699870363794],[-125.49255643990817,57.93686867946052],[-125.49257168802667,57.936756586508956],[-125.49258520577614,57.936693833413734],[-125.4925984813083,57.93664902355577],[-125.4926253380575,57.9366143589815],[-125.49271808220878,57.93654966440196],[-125.49287432570362,57.936472874754905],[-125.49299874409009,57.936408300492694],[-125.4931009811314,57.936343641771565],[-125.49328966874722,57.93620977806477],[-125.49349637291708,57.936071496540244],[-125.49363808988913,57.93597670670871],[-125.49376613245477,57.935877378771345],[-125.49386854790309,57.935799262081815],[-125.49395507197613,57.935724449517664],[-125.49401495225433,57.9356686014111],[-125.49404131804734,57.93559243892078],[-125.49406159034729,57.93549830917081],[-125.4940762146841,57.935432195694354],[-125.49408818228895,57.935405324921774],[-125.49413635083637,57.93535728288649],[-125.49421820627049,57.93523759215594],[-125.49428475882681,57.935077469054114],[-125.49436959293577,57.93497236916966],[-125.49454903883753,57.93489678724641],[-125.49478642525207,57.93483151828043],[-125.49502054648573,57.93477408708009],[-125.49524918389842,57.934731214302275],[-125.4953826495563,57.93469919593802],[-125.49545577629104,57.934678164127305],[-125.49555780879533,57.934628082490626],[-125.49570953142704,57.93457370275768],[-125.49588012048952,57.93452836626837],[-125.49597366068038,57.93448161672626],[-125.4959703747567,57.93433356540946],[-125.49594482226271,57.93411253199344],[-125.49594087494526,57.93401382450713],[-125.49599171712181,57.93400168019839],[-125.4961070577658,57.9339819291762],[-125.49620769457324,57.93395763645496],[-125.49626692260614,57.93395000976306],[-125.49630063196732,57.933955744686195],[-125.49645153568211,57.9340404278336],[-125.49673227473714,57.93420634956424],[-125.49689044235244,57.934300031708005],[-125.49690725972044,57.93430570271759],[-125.49704868858343,57.934309600974586],[-125.49729250614502,57.934316128296125],[-125.49756679795988,57.934332863605185],[-125.49794298272589,57.93438811340363],[-125.4984100124202,57.934441461019226],[-125.49889950532632,57.93447246131748],[-125.49929195680522,57.934496366275106],[-125.4995438595913,57.93445020904349],[-125.49978322670555,57.934393910739836],[-125.50001024568817,57.93447214644871],[-125.50019100500225,57.934535628735375],[-125.50027239610759,57.934528083363155],[-125.50030511888248,57.93452932754836],[-125.50033999594667,57.93452609377557],[-125.50045833289907,57.93451980828827],[-125.50067494039483,57.934508283335575],[-125.50082499533536,57.93449875182059],[-125.50096413514387,57.93451609542296],[-125.50119609462386,57.93454051530215],[-125.50147859815345,57.93457521738362],[-125.5017486705866,57.93459192829667],[-125.50187004754787,57.93459462496995],[-125.50190904570746,57.934600378238244],[-125.50199428837601,57.93462088386541],[-125.50204378501583,57.9346311623439],[-125.5020556872598,57.93460877668198],[-125.50208255072438,57.934574110340165],[-125.50209551715605,57.93455172865159],[-125.50218441077985,57.93453635959475],[-125.50244700166186,57.93448014324955],[-125.50280504195742,57.934391758795776],[-125.50320635892825,57.93430353470102],[-125.50362445002759,57.934225465432775],[-125.50389542357006,57.934173763508035],[-125.50412017911249,57.93410394501209],[-125.5044857711822,57.934002126137486],[-125.50483004132504,57.93391704964641],[-125.50495770769002,57.933843504529825],[-125.50507156640435,57.933775515553336],[-125.50539987230455,57.933780098736],[-125.50584755931769,57.93377839472697],[-125.50626603842176,57.93374966490773],[-125.50655000012055,57.93375295948303],[-125.50664177144698,57.93376002822953],[-125.50668809249446,57.93377029321935],[-125.50679780338574,57.933777428253144],[-125.507004364988,57.933806230046436],[-125.50738373408707,57.93386146491568],[-125.50776081658108,57.9339301483182],[-125.50798198438181,57.93397246059418],[-125.50814007067272,57.93399435264773],[-125.50821059328739,57.93401031393885],[-125.5082619595252,57.93395779272268],[-125.50836154739001,57.93385161713755],[-125.50844209944735,57.93374649279502],[-125.5085505280914,57.933610069080636],[-125.50870239457133,57.93346146887333],[-125.50881227141852,57.933374396510835],[-125.50887717869139,57.93333650455227],[-125.50892415896456,57.9332963035077],[-125.50896666716436,57.93327515154079],[-125.50899433627882,57.93325843091275],[-125.50913334810978,57.93320398924605],[-125.50937616128557,57.933125256487614],[-125.50948961481102,57.9330875429337],[-125.50957147127728,57.93304522701255],[-125.50978625162877,57.932929380761315],[-125.51002406682974,57.932828198407655],[-125.51014432076099,57.932754621209206],[-125.51013927213302,57.932655910375125],[-125.51022757816914,57.93260464575596],[-125.51056800079428,57.93264963487205],[-125.51090590736365,57.93264526775106],[-125.51110923454941,57.932597789088184],[-125.51126367706125,57.93257480393766],[-125.51132923422749,57.93256719379128],[-125.51141736355909,57.93252938578131],[-125.51170155087316,57.932433977995714],[-125.51210927681652,57.93233677889092],[-125.51236713457291,57.93223678732419],[-125.51242434442763,57.93213942592033],[-125.51250597742428,57.9321139299745],[-125.512689846291,57.9321011443396],[-125.51291182245245,57.932080647207336],[-125.51301959246335,57.932074312002435],[-125.51302832866831,57.93205191388004],[-125.51316175099551,57.93193912959381],[-125.51350514810451,57.93175533567971],[-125.51385270992624,57.93165679023226],[-125.5140005807577,57.93165172200657],[-125.51409484866306,57.93162739268153],[-125.51433564575203,57.93153967173301],[-125.51459841469782,57.9314666098998],[-125.5147256483714,57.9314244561736],[-125.51476702916037,57.931407784317685],[-125.51480114426373,57.93138211399041],[-125.51484494265523,57.9313430208912],[-125.51487907211573,57.931316229097284],[-125.51488769128628,57.93130280245759],[-125.51495586322402,57.931255947531895],[-125.5150837321539,57.931164449751975],[-125.51515401497153,57.9311176024137],[-125.51517313302874,57.9311086999544],[-125.51529196272821,57.931063150636874],[-125.51549862228514,57.931001098019806],[-125.51561384478839,57.93099030182657],[-125.5156569893745,57.9310005521285],[-125.51582080217588,57.930987689326585],[-125.51623185879728,57.93095777997839],[-125.51680521850784,57.93095088789347],[-125.51724001593585,57.93096367852254],[-125.51752583867969,57.93098490052436],[-125.51777363084186,57.93100934881763],[-125.51787793387297,57.931025427168244],[-125.51798406335153,57.931065063550435],[-125.5181994934491,57.931142104526714],[-125.51832379173509,57.931163862311635],[-125.51834302399106,57.931145987809025],[-125.51837186642142,57.931120297529475],[-125.51845054746512,57.93107684331951],[-125.5185704777691,57.931026809070616],[-125.5186894897133,57.93096667789949],[-125.51882467503066,57.93088081051672],[-125.51898612848498,57.93080400981338],[-125.51905728086798,57.93077062159198],[-125.51910605720607,57.93075397509705],[-125.51915578289305,57.93074630400885],[-125.51922700671214,57.93070730845828],[-125.5193642438773,57.930625933959895],[-125.51943750693397,57.93059255315572],[-125.51947052788636,57.9305702422232],[-125.51956830889664,57.93051900575346],[-125.51966289844023,57.930387009752764],[-125.51964490967008,57.93022432751879],[-125.51967027279538,57.93014030649297],[-125.5198375397471,57.93010389975263],[-125.52006623496422,57.93005201304029],[-125.52029175413502,57.93000011450878],[-125.52046980524726,57.9299458018196],[-125.52055263252792,57.929907968851786],[-125.52061476120792,57.929837537922545],[-125.52071885464494,57.929705575471246],[-125.52079888774719,57.9295555824773],[-125.52084060277772,57.92943012466016],[-125.52085833614181,57.92936402002726],[-125.52090335883055,57.92931034997856],[-125.52099168258788,57.929254592561584],[-125.5210500224032,57.92923349377291],[-125.52118905901852,57.92917455397778],[-125.52147525035788,57.92908361906087],[-125.52166678453183,57.92904841871717],[-125.5217004363114,57.92905863297252],[-125.52179081250489,57.929007368403234],[-125.5222284913537,57.92887547997678],[-125.52284788792994,57.928730782906285],[-125.52324112438122,57.92860658257026],[-125.52347506571304,57.92847283964086],[-125.52362088402226,57.92837803373572],[-125.52365493350759,57.92835684700728],[-125.52374520861133,57.9283145527768],[-125.5238694164924,57.92825892176588],[-125.52400635076177,57.92819997160954],[-125.52416344617717,57.928132121334244],[-125.5243156234802,57.928119206640346],[-125.5244706895912,57.9281276105093],[-125.52461555687358,57.92810906190875],[-125.52471754688383,57.92805783685541],[-125.52476426268518,57.92803669502569],[-125.52481314632307,57.92801107492569],[-125.52489501428015,57.92796426397832],[-125.52502279117078,57.92787724276145],[-125.52519121817208,57.927747749429145],[-125.52529917235898,57.927642713416425],[-125.52531961651994,57.92761138436172],[-125.52534499314918,57.92760811026076],[-125.52542016078519,57.92759155552961],[-125.52549735188884,57.92758061543856],[-125.52552485381035,57.92757622737537],[-125.52553978770533,57.92756394409395],[-125.52557390611588,57.92753714966803],[-125.52559418295488,57.9275203994202],[-125.52562701090208,57.92751154431431],[-125.52574625828616,57.92751533321615],[-125.52599097080936,57.927530783282734],[-125.52619029891964,57.9275449500551],[-125.52635586522979,57.927558996540476],[-125.52650442650113,57.9275808328702],[-125.526610908295,57.927592426108696],[-125.52671221667784,57.92759502892617],[-125.52685567811714,57.9276033888077],[-125.52704239627236,57.927613023552425],[-125.52716797766348,57.927616833659776],[-125.52729466261553,57.92761616158168],[-125.52747188907483,57.927625762056316],[-125.52760808001135,57.927624001890116],[-125.52773377417097,57.92761883990132],[-125.52798316100858,57.927598415022366],[-125.52831285677689,57.92757154497727],[-125.52851996319363,57.92755545542319],[-125.5286172741803,57.92754009872819],[-125.52869019972832,57.927532506189486],[-125.5288159496416,57.92752285739904],[-125.52902729197078,57.927505660540604],[-125.52922589686325,57.927494025827734],[-125.52933981606385,57.92750115717565],[-125.52945579035121,57.927512781662145],[-125.52963524027157,57.92751341514957],[-125.52972931938822,57.9275025322181],[-125.52973793238216,57.92748910467215],[-125.52978864263275,57.92748591911999],[-125.5299827444947,57.92749669729022],[-125.53023579126197,57.92752114090923],[-125.53042869224716,57.92754425064018],[-125.53063394969888,57.92759095500525],[-125.53078658491337,57.927626258840945],[-125.53083707139177,57.927641016020814],[-125.53086966036598,57.92765122419993],[-125.53096325279111,57.92768071250255],[-125.53108317081674,57.92771477935203],[-125.53119474217131,57.92774096626719],[-125.53127998525284,57.92776145301644],[-125.5313337032452,57.92777173539425],[-125.53136320400645,57.92777632511735],[-125.53141501755555,57.92776865684393],[-125.53159491574505,57.92773340142333],[-125.53209223114251,57.9276398213743],[-125.53271957309491,57.92761622814105],[-125.53305342677287,57.92776431414647],[-125.533161186945,57.92784319632039],[-125.53322910711177,57.927814275358635],[-125.5332756507955,57.927806587904975],[-125.53347027010444,57.92777586749108],[-125.53395214984715,57.92773493672819],[-125.53457899253162,57.927751706801544],[-125.53516733528092,57.92780871345393],[-125.53558061670762,57.92785164962265],[-125.53576606965842,57.92787921164218],[-125.53585559330942,57.92789522439],[-125.53625939834447,57.92793700395241],[-125.53695966561958,57.92807738272176],[-125.53734425230502,57.928308624871086],[-125.53740224767151,57.92848490093875],[-125.5374455213207,57.92857140628114],[-125.53750528620868,57.928605258561184],[-125.53762014720085,57.92862135805386],[-125.53777505603512,57.92864432532448],[-125.53786353518728,57.92866033310429],[-125.53797107071487,57.92867192091029],[-125.53817674311395,57.92868609172921],[-125.5383845851031,57.92869690525896],[-125.53858509821704,57.92870208561312],[-125.53882664842196,57.92871750113575],[-125.53905437419475,57.92874184036966],[-125.53919773280823,57.928759158558435],[-125.53928210026234,57.92876617921506],[-125.53935803649318,57.92877204918129],[-125.53947084563308,57.92878477549887],[-125.53960781592988,57.92880655715235],[-125.53973202278856,57.92883614505399],[-125.53984154713405,57.928857831677014],[-125.53993107485024,57.92887384170352],[-125.5400806536796,57.928814918723695],[-125.54031241670374,57.92876749403436],[-125.54045135666244,57.9288879732078],[-125.54049475308604,57.9290507396949],[-125.54062133302452,57.92905902653469],[-125.54081545341506,57.92898343381059],[-125.54095208674129,57.928945773658974],[-125.5410282289204,57.92893482094987],[-125.54109799622542,57.928927210733264],[-125.54117514766203,57.928920747397754],[-125.54125540278568,57.92891878068278],[-125.54160254570344,57.92893231160435],[-125.54226753654186,57.92902655984392],[-125.54266020130544,57.92920398269093],[-125.54272615278465,57.92933654548324],[-125.54275599423809,57.9293994516327],[-125.54288726265091,57.929457098220354],[-125.54314092855253,57.92951852879953],[-125.5433432311258,57.92955062401853],[-125.54347277090922,57.92957686222343],[-125.54356547727106,57.929592880697705],[-125.54365390667894,57.9296133704467],[-125.54375565711464,57.92958007393408],[-125.54382745183166,57.929491721519234],[-125.54387870772878,57.9294436726302],[-125.54394118955543,57.929428185515405],[-125.54398552655877,57.92942833722794],[-125.54404055597861,57.92941731055018],[-125.54413896702265,57.92939746027789],[-125.54441851254613,57.92932776194398],[-125.54488955677296,57.92922395075509],[-125.54528944204766,57.929154661507475],[-125.5457611089255,57.92908561574602],[-125.54644879925571,57.92896122892206],[-125.5471470007852,57.92884023878272],[-125.54770756210952,57.92875242280397],[-125.54804084364562,57.92868962828184],[-125.54842506664467,57.928605697161636],[-125.5489455752695,57.92851213282761],[-125.54927553289927,57.92846278192681],[-125.54961345102745,57.928453830900715],[-125.55007410222647,57.92842174205364],[-125.55030801509481,57.92836982133526],[-125.55048534331975,57.92828406455312],[-125.55083715927913,57.92817197989566],[-125.55124832793116,57.92803990731816],[-125.55167368940002,57.927867507493616],[-125.55214377282927,57.92766385485493],[-125.55254486917235,57.92749024930605],[-125.55269767442779,57.92742347272237],[-125.55271277279616,57.927396607578885],[-125.55278023605678,57.92713776926969],[-125.55286150501564,57.92669505267904],[-125.5528929471804,57.92644843004906],[-125.55289083874794,57.92635870367342],[-125.5528971383216,57.926273491479975],[-125.55300563142642,57.926204322988404],[-125.5533024385589,57.92609989806982],[-125.55368884171172,57.92591726825858],[-125.55399309518285,57.9257186615911],[-125.55414278209038,57.92564626561916],[-125.55430929123425,57.925669252417414],[-125.55461184074584,57.92570390865702],[-125.5548880469561,57.92573399025991],[-125.5550932463397,57.92569878780996],[-125.55540713114232,57.92557759295562],[-125.55578881969672,57.92543531511173],[-125.55606488636953,57.92529829183195],[-125.5562884394518,57.925138663374014],[-125.55646082309958,57.92502148086331],[-125.55681752946835,57.92493743446889],[-125.55741189211905,57.92484071879977],[-125.55798393621433,57.92475738433668],[-125.55854646973253,57.924674015927586],[-125.55899921471509,57.9245914033599],[-125.55937586927767,57.924516388110014],[-125.5597756909249,57.92444593429561],[-125.56017106609451,57.92439452991484],[-125.56064053493613,57.92432542487255],[-125.56101285683854,57.9242593626544],[-125.56118210315128,57.92422851843479],[-125.56125402097501,57.924216418877016],[-125.56144859883486,57.924185657723385],[-125.56185905949535,57.92410738230635],[-125.562410125469,57.92400938066121],[-125.56296841602432,57.92392597978666],[-125.56323922065366,57.92387527924241],[-125.56329852336702,57.923858651292804],[-125.56338647586406,57.923829780832776],[-125.56368761349658,57.92371188954539],[-125.56414137537564,57.923539544047436],[-125.56435761554486,57.923460625612066],[-125.56438093996624,57.92345172997052],[-125.5644846104864,57.92343188207977],[-125.56468033252466,57.923392148101435],[-125.56489198553133,57.923344615453225],[-125.56517375302924,57.92325805926271],[-125.56544187136383,57.92316585054585],[-125.56567483871191,57.92310044240224],[-125.56599233308599,57.923027458791154],[-125.56639906697997,57.92290429798432],[-125.56685692519078,57.92274092867155],[-125.56717471108284,57.92264214907003],[-125.56749209550216,57.922578133468264],[-125.567868609874,57.922512065919506],[-125.56803351785378,57.92249017091058],[-125.56810230686953,57.922473571613246],[-125.5682619972367,57.92244717347133],[-125.56840580859937,57.922424088163886],[-125.56867444560429,57.92237673414686],[-125.56909959631805,57.92230297017859],[-125.56934073867411,57.922260011854426],[-125.56943807063021,57.92224013966761],[-125.56956619441111,57.92220354460978],[-125.56972193027259,57.92215358078098],[-125.56987996492131,57.922085680441775],[-125.57002746151267,57.92201774591762],[-125.5701338512339,57.921944071208486],[-125.57016912074567,57.92190493303398],[-125.57017456016037,57.92189149276894],[-125.57018641781558,57.92186910133289],[-125.57020682551412,57.921838887085464],[-125.570224225039,57.921794083839366],[-125.57022901062425,57.92174475397299],[-125.57022413511687,57.92170885075714],[-125.5702413295273,57.92168199059782],[-125.57034967499534,57.92162177986166],[-125.57051956770704,57.92153260885511],[-125.57062137491525,57.921490320576105],[-125.57065729769089,57.9214870718785],[-125.57069112241656,57.921482694927946],[-125.57070809877958,57.92147489923685],[-125.57076564193147,57.92142686081659],[-125.57091606401781,57.921287159846685],[-125.5710128167672,57.92113270666923],[-125.57097278577464,57.921032765773354],[-125.57111245963081,57.92090985228416],[-125.57151596712539,57.92069582576794],[-125.57176435691068,57.920477935197425],[-125.57165702258126,57.92026450854213],[-125.57144350042448,57.92001597440517],[-125.57132763676042,57.91981037051565],[-125.5713055561182,57.91971048760606],[-125.5713249490581,57.91967578407101],[-125.57135938554555,57.91961757781946],[-125.5713888305735,57.919533561433774],[-125.5713426894759,57.91941565745826],[-125.57123138064468,57.91927287119981],[-125.57117422649534,57.919195305070225],[-125.57117443107043,57.9191773620325],[-125.57117430064359,57.919095493503455],[-125.57117262619185,57.918965396338514],[-125.57117123150206,57.918902588929754],[-125.57120835208391,57.91888588618777],[-125.57127814576761,57.91887377449511],[-125.57133860308006,57.91884817496164],[-125.5713938134661,57.91881919408166],[-125.57145456038552,57.918766679897125],[-125.57152170719131,57.91870970034824],[-125.57154521859289,57.91868398190726],[-125.57157401100964,57.91865715896396],[-125.57171294620856,57.91859816718326],[-125.57192025264506,57.91855846011486],[-125.57206720447074,57.91853538109477],[-125.57244864952452,57.91849623239786],[-125.57305290162849,57.918445460488854],[-125.57349547378449,57.91841211206786],[-125.5738873551129,57.918383085991515],[-125.57429517165151,57.91834401636342],[-125.5746417399473,57.91830811440848],[-125.57488489765143,57.91827076016468],[-125.57497805838773,57.91824526334959],[-125.57508284453698,57.91821756058785],[-125.57524699920457,57.918167617435216],[-125.57532321086498,57.9181476737456],[-125.57541319657103,57.9181221665113],[-125.57568424626224,57.91804452645037],[-125.57599960581074,57.917968148344],[-125.57627910839187,57.91788941251364],[-125.57658914677847,57.9178175020249],[-125.57683025182294,57.91777453034889],[-125.57697076476208,57.91776039733805],[-125.5770553163463,57.91774945098155],[-125.57708069442135,57.91774504562529],[-125.57708829183674,57.91772712608139],[-125.57711004122126,57.9176699997028],[-125.57714129253436,57.91761178200339],[-125.57717455780272,57.917563663998706],[-125.57720672141527,57.917518906927945],[-125.57724409003943,57.91747977375964],[-125.57733186049045,57.91737014735172],[-125.57748726939272,57.91715868090897],[-125.57764583399258,57.91694722434102],[-125.57773562448875,57.91684545448288],[-125.57778565539566,57.91680636132562],[-125.57783765004065,57.91678185358194],[-125.57795540806532,57.916726152788364],[-125.57815043659949,57.91665050998703],[-125.57829965547806,57.916613973625104],[-125.57837690921563,57.91659403153463],[-125.57843946860287,57.91656843551949],[-125.57847020167493,57.91655619651035],[-125.57849778988236,57.91654282606775],[-125.57864248536524,57.91653319046976],[-125.57884484881731,57.91655625986044],[-125.57896280222474,57.916577940738634],[-125.57902911360998,57.91659272948464],[-125.57909125843352,57.91660414060276],[-125.57914189962761,57.91660542205893],[-125.57917776681612,57.916606656831256],[-125.57934265486242,57.91658362652453],[-125.57968622832396,57.91652975849141],[-125.57998545824304,57.916479114221204],[-125.58019283187973,57.91643154430756],[-125.58043099982034,57.91636612742719],[-125.58062462458399,57.916321877982],[-125.58083603020064,57.91629114192223],[-125.58108968401231,57.91625717394619],[-125.58141522091626,57.91621221658899],[-125.58179733040124,57.91620444475715],[-125.58197240640033,57.91621396601344],[-125.5819811477109,57.91618707800482],[-125.58206040932419,57.91608190789054],[-125.58219382954573,57.91594550626222],[-125.58227701222462,57.91586726377091],[-125.58234533370347,57.915796824979424],[-125.58242128674195,57.91570510203728],[-125.58251106135288,57.91560332909295],[-125.5826381840434,57.91546354293699],[-125.58275026305458,57.915349503502966],[-125.5828014499563,57.91530144036341],[-125.58283776375013,57.91526230243899],[-125.58289106091664,57.91521424587787],[-125.5829208565381,57.915191909655384],[-125.58296737443722,57.91518420495086],[-125.58307832849482,57.915169973043994],[-125.58317126473993,57.9151635349993],[-125.5833132966299,57.9152032309364],[-125.58359086395424,57.915296059756486],[-125.58384738963063,57.915383214901134],[-125.58400950164553,57.91541960839585],[-125.58418859721985,57.91544708289872],[-125.58443149154785,57.915431018641314],[-125.58469737949012,57.91533876530299],[-125.58499718706851,57.915234280886175],[-125.58541718756186,57.91513802021719],[-125.58580856695475,57.915054005484315],[-125.58606777641933,57.91499425146834],[-125.5862803155987,57.91495453857443],[-125.58642765596797,57.91489555789485],[-125.58651855089062,57.91478593553274],[-125.58664732343304,57.914591198610445],[-125.58681029297912,57.91435731608687],[-125.58698343571936,57.914254677385706],[-125.58723638114367,57.91428349817126],[-125.58761254598315,57.91433400795756],[-125.58816239036447,57.91442542675478],[-125.58866045381922,57.914524533732006],[-125.58887652214811,57.914547630165934],[-125.58893053111706,57.91453097471664],[-125.58898125562934,57.91452440237756],[-125.58906474502444,57.91451232371917],[-125.5891387825009,57.91449685143795],[-125.58918430047046,57.91448465559581],[-125.58935242826597,57.91445265119998],[-125.58964534622777,57.914397480084865],[-125.58993392775143,57.91435126677251],[-125.59020765459607,57.91431397893535],[-125.59052567113056,57.91427794814913],[-125.59092508166802,57.914229830354756],[-125.59131153613701,57.91420858698195],[-125.59154789327668,57.91421043332271],[-125.59161906411398,57.91416803552638],[-125.59161998939233,57.914082806402064],[-125.59162087814262,57.914000941592526],[-125.59161804495,57.91396953166348],[-125.59164653198143,57.91397074045867],[-125.59173303514643,57.91397324852795],[-125.59185330516004,57.91397585999581],[-125.59194359126535,57.9140187525455],[-125.5919897294922,57.914142255897254],[-125.59214637077831,57.91429413442549],[-125.59242395319016,57.91438694475396],[-125.59256196535277,57.914408674905104],[-125.59266193620671,57.91443365302533],[-125.59290279052547,57.91450840648313],[-125.59314157910367,57.914577545831875],[-125.59338657137253,57.914660161372886],[-125.59371344436516,57.91478115630632],[-125.59403878854899,57.914947004743176],[-125.59428486755995,57.91512494725541],[-125.59447647001465,57.9152645934055],[-125.59467844966295,57.91532352471527],[-125.59478068463204,57.915336171928665],[-125.5948443580657,57.91540028961862],[-125.59498116785294,57.91553416105882],[-125.59510871424307,57.91564557472937],[-125.59518188249592,57.9157108426054],[-125.59520382940654,57.91572997436041],[-125.59527462494431,57.91572233912256],[-125.59551425999118,57.91561652679415],[-125.5957967788072,57.91544804159984],[-125.59610266634796,57.91536261577969],[-125.59660447316917,57.915312548334676],[-125.5970233019085,57.91522521940154],[-125.59723846965207,57.915136152148335],[-125.59746567253009,57.91500786934395],[-125.59765283473263,57.91487385788712],[-125.59773177392906,57.91479447165098],[-125.59775412223131,57.914777717028656],[-125.59776375482039,57.91476428843174],[-125.59780638393852,57.91472516556603],[-125.5979085735864,57.9146424850093],[-125.59805019821856,57.91452403622996],[-125.59817793984497,57.91442012459241],[-125.59829044057281,57.91435990433012],[-125.59834356310114,57.91422660924337],[-125.5983826474763,57.914025983487086],[-125.59850176524917,57.913938867687435],[-125.59869260683227,57.91395290037049],[-125.59890685951065,57.913950181181676],[-125.5990919556615,57.91390924385295],[-125.59928439108928,57.91377524616039],[-125.59950126551168,57.913624499607295],[-125.59962253757051,57.913532903443055],[-125.59972121182415,57.913481612261975],[-125.59983688131261,57.91342140028949],[-125.59988569480245,57.91339575305941],[-125.59991411707284,57.91340144577827],[-125.599998461384,57.91340842788414],[-125.6000659344709,57.91341423781775],[-125.60028411878784,57.91343844354548],[-125.60037790395101,57.913449939623696],[-125.60043050907912,57.91346467654462],[-125.60057878871089,57.913513344480215],[-125.60081855352186,57.913591444674],[-125.60106454352652,57.913679656327716],[-125.60120235097885,57.91371932044064],[-125.60137805615389,57.91376919106115],[-125.60168221930144,57.91384411797187],[-125.60195387036671,57.91390100350124],[-125.60216774298769,57.913934165037375],[-125.60231313717267,57.913955907108964],[-125.60248169884383,57.913982204041176],[-125.60276082492841,57.91403013845464],[-125.60303885761154,57.91408255491397],[-125.60336086735573,57.914167624424714],[-125.6037536577793,57.9142461748702],[-125.60405692438061,57.91430763603702],[-125.60418643708931,57.91433381475288],[-125.6042126727582,57.91434847183788],[-125.60424490436048,57.91439342648248],[-125.60432116578643,57.91446767018155],[-125.60444878339217,57.91457458903541],[-125.60459942827619,57.914699519684916],[-125.60475631992578,57.914731386471914],[-125.60496568061973,57.91469163441417],[-125.60515040224885,57.91468769613008],[-125.60526429699458,57.914694762478504],[-125.60534897463508,57.91467034095008],[-125.60539558140665,57.91465365691737],[-125.60542464565735,57.91469972337685],[-125.60555739382258,57.914820114050926],[-125.60579739481685,57.914978952079196],[-125.60601537014989,57.9151242668848],[-125.6061635362096,57.915285075627054],[-125.60626081646973,57.91546816331741],[-125.6063355039489,57.91559174611225],[-125.60643153186534,57.91569296244958],[-125.606499352968,57.91576605857438],[-125.60654932534563,57.9158312516427],[-125.60661495944696,57.91591331305034],[-125.60665237451171,57.915968375744264],[-125.60667424532097,57.9159953556903],[-125.60671051991977,57.9160593867978],[-125.60674333898713,57.91615032307937],[-125.60677634578953,57.91622331632685],[-125.60683031765727,57.91630982913474],[-125.60691440403559,57.91644241123545],[-125.60705289081388,57.91662225569482],[-125.60720628839252,57.91678756482748],[-125.60747171798369,57.91693862474911],[-125.60792075543415,57.917090224612025],[-125.60825659514099,57.91726952707185],[-125.60833747393013,57.917509760609676],[-125.60833597922075,57.91765330510723],[-125.60833046063463,57.91767571840059],[-125.60841151847481,57.91769614322723],[-125.6085913628236,57.91775498843074],[-125.60872373831981,57.917812572522024],[-125.60875102506374,57.9178272318409],[-125.60869986788704,57.91787530507401],[-125.60855305433425,57.91798814290032],[-125.60840037494319,57.91805610428855],[-125.60828478019228,57.91811071682677],[-125.6081444366808,57.91821011554101],[-125.60801169340046,57.918288228425325],[-125.60792672878712,57.91833956635175],[-125.60784254710578,57.918417821973286],[-125.6077368670937,57.918531901517056],[-125.60761619449734,57.918668366381105],[-125.60747234494762,57.91879915549298],[-125.60736053481698,57.9188952730928],[-125.6072923950694,57.91895226762101],[-125.6072328502047,57.9189947082479],[-125.60719984465128,57.919021526408166],[-125.60715679876478,57.91910102440426],[-125.60709564856951,57.919297102695495],[-125.60705661036312,57.91949885360394],[-125.60703861135673,57.91960534094455],[-125.60702436751063,57.91965464397722],[-125.60701733222106,57.91972191192541],[-125.60701745864684,57.919811630569676],[-125.60702706334362,57.919902498655716],[-125.60702947114885,57.91997428038699],[-125.60703702372936,57.92005953504165],[-125.60705580741399,57.92018183162746],[-125.60708719218238,57.92030865130122],[-125.60711269511921,57.920393958911994],[-125.60713740375496,57.920453470161824],[-125.6071726196003,57.92051749830512],[-125.60720778871753,57.920586012222515],[-125.60722534731376,57.920621951322005],[-125.60723264987668,57.92063094468322],[-125.60724882194457,57.92069940259796],[-125.60728213125203,57.92084417163801],[-125.60723348692946,57.92095505474837],[-125.60716227399872,57.92100194696702],[-125.60723767810642,57.92105824324672],[-125.60732427893763,57.92115494576248],[-125.60734021723238,57.92124583261532],[-125.60734506439128,57.9212862201835],[-125.60734795810166,57.92131314423465],[-125.60735444780637,57.92139839585568],[-125.60736647915938,57.9215610459623],[-125.60736530839756,57.92167319056564],[-125.60734258561304,57.92172583319733],[-125.60735147241984,57.92178529786164],[-125.60742603555684,57.92192233821754],[-125.60755045298751,57.92213690758612],[-125.60770514390767,57.92238296749133],[-125.60786190618917,57.92263464077843],[-125.60796700278914,57.92288055453878],[-125.60812271666688,57.923131103072244],[-125.60826415821346,57.92333338577936],[-125.6082289459931,57.92347122461232],[-125.6082150651967,57.923587818002666],[-125.60825973002034,57.92365635976674],[-125.60826492244597,57.92366534689412],[-125.60828972850015,57.92371588654516],[-125.60835690199458,57.92385290491345],[-125.60842299389587,57.92399328453741],[-125.60844468903491,57.92403932910099],[-125.60844775367433,57.92404830997228],[-125.60850486886358,57.92413931793487],[-125.60863893094256,57.924340457276564],[-125.6087668182755,57.924528120587155],[-125.60882409305341,57.924602306664006],[-125.60884079463253,57.92462029943288],[-125.60885740291496,57.92464726379766],[-125.60888009938117,57.924697797194426],[-125.60890188878858,57.92473487011899],[-125.60891230400875,57.92474835849487],[-125.60896230416616,57.9248124298205],[-125.60912078482625,57.925001304129054],[-125.60928294157397,57.9252428988359],[-125.60936218207485,57.92543826948777],[-125.60936761057606,57.92562781635794],[-125.60933312114665,57.9257970595141],[-125.60930604185648,57.925864269245004],[-125.60930594864782,57.92587324085459],[-125.60928005618325,57.92592699624015],[-125.60925155147275,57.92602896784179],[-125.60937701802561,57.92614484868901],[-125.60961862022144,57.92625882671631],[-125.60973232937161,57.92638813064],[-125.60974125564891,57.92654516482321],[-125.60966208432575,57.9266469881923],[-125.60950011298544,57.926692494610634],[-125.60942494927032,57.926712461094525],[-125.60961742896833,57.92678031425968],[-125.61000561326313,57.92690817879598],[-125.61030012917325,57.92700997414426],[-125.61049036141381,57.92709127732865],[-125.6106227262348,57.92715334590709],[-125.61071513011906,57.927200718304505],[-125.61092180742732,57.92732356393569],[-125.61124807542892,57.927520776315184],[-125.61157957007715,57.927722489109414],[-125.61185549467692,57.92788703018766],[-125.6120569561605,57.92800537298339],[-125.61219129921784,57.928080903657374],[-125.61232055818347,57.92813847560654],[-125.61252043126373,57.92820634615079],[-125.61273089588101,57.9282708827124],[-125.6128447870069,57.92828242849787],[-125.61298114935977,57.92826375927208],[-125.61322508593638,57.92825661702951],[-125.61347928503389,57.92827641981265],[-125.61369025861735,57.92829161086889],[-125.61383916667435,57.92828643498517],[-125.61389504836008,57.92829220433389],[-125.61419949737225,57.92835476785197],[-125.61483134103935,57.92850575334593],[-125.61522337026526,57.92867398749651],[-125.61528041708836,57.928773964636896],[-125.61528114300822,57.92880536840391],[-125.61538993077481,57.92890325188436],[-125.61561064898014,57.92910239213417],[-125.61576538253416,57.92924975334779],[-125.61584356209498,57.92934642675909],[-125.61588840202468,57.929401508957035],[-125.6159165180745,57.92943859912343],[-125.6159654433824,57.9295071509424],[-125.61598838139302,57.92953525426375],[-125.61600306890551,57.92954426849566],[-125.61617165278959,57.92957615581527],[-125.6165088328529,57.92963880836188],[-125.61673536735798,57.92968095510884],[-125.61677860057138,57.929686686875286],[-125.61685023666803,57.92970147219919],[-125.6170820586698,57.92974363355813],[-125.61743598398456,57.929820911232476],[-125.6178445658608,57.92992189597923],[-125.61825847674409,57.930017287294426],[-125.61858922785343,57.93009000957657],[-125.61889021537893,57.93007965570798],[-125.61927125506506,57.92998205369599],[-125.61952321826989,57.92991211941462],[-125.61957617161956,57.92989544823738],[-125.61972007066073,57.92986333572041],[-125.62010061228683,57.92991825246796],[-125.6205085913858,57.93018520774286],[-125.62077100017841,57.930439411313415],[-125.6208579288112,57.930509190998286],[-125.62087360856874,57.930523814970016],[-125.62102593338284,57.93059938801139],[-125.62135932279821,57.93072482096557],[-125.62164018382455,57.93082655269302],[-125.62172434560843,57.93085595033296],[-125.62176004728333,57.93087511699019],[-125.62190286562392,57.93095066206887],[-125.62209083426447,57.931049886325454],[-125.62216637102514,57.93109720308082],[-125.62224508351548,57.9311445287963],[-125.6225353528702,57.93125525725644],[-125.62289303154182,57.93138187670776],[-125.62307115227644,57.93151695945465],[-125.62315217123745,57.931649524481934],[-125.62328526072224,57.93174747043756],[-125.62347320896409,57.93185117871307],[-125.62373994729829,57.931993239885124],[-125.6240380005907,57.93217127660236],[-125.62429905281672,57.93235369435203],[-125.62449508316249,57.9324944332479],[-125.62464815705552,57.93260140614755],[-125.6247970536158,57.932703881153465],[-125.62486837413167,57.932751184571785],[-125.62501672624381,57.9326966489137],[-125.62532085560449,57.932583112020644],[-125.62566959898051,57.93265586740223],[-125.62605252670353,57.93289918458404],[-125.62626568143037,57.933017539126304],[-125.62634496575349,57.93300654649223],[-125.62647727726004,57.93297327258029],[-125.62658546493336,57.93292310857289],[-125.62663258604624,57.93285595105081],[-125.62664806806333,57.93278534041957],[-125.6266811656739,57.93264188216019],[-125.62680574649322,57.932429147616766],[-125.62699033433846,57.93233994501056],[-125.62709372933368,57.932346963280686],[-125.62711918924481,57.93233469810473],[-125.62722500703535,57.93231032129126],[-125.6274101516101,57.93227046529406],[-125.62752556791827,57.93223714314613],[-125.627563874095,57.932206969926504],[-125.62764571202696,57.93215112402115],[-125.62778928714089,57.93204610488539],[-125.62790296252818,57.93197352537559],[-125.62799739621802,57.931926686361884],[-125.62818896111882,57.93187787529943],[-125.62856446994519,57.931806025407646],[-125.62904247283245,57.93172436635817],[-125.62946154161976,57.93162347643978],[-125.62976024626624,57.931523372408265],[-125.62995722625138,57.931461115997216],[-125.63006311697944,57.93142888673639],[-125.63023128571687,57.93139683018876],[-125.63055108955288,57.93129790444437],[-125.63078242212124,57.93117742458513],[-125.63077143457213,57.93111459072131],[-125.63069166416251,57.93106726714136],[-125.6307854243955,57.930980050722425],[-125.63101018900207,57.93088310359792],[-125.63118434539551,57.930779287136],[-125.63134265709867,57.930675426633954],[-125.6315039126203,57.930595125366224],[-125.63162578609447,57.93054835973611],[-125.6318619303851,57.930473872461604],[-125.63222316519183,57.93034814153968],[-125.63242699520863,57.930232069035334],[-125.63250425318131,57.93010443240472],[-125.632606539806,57.93000826641553],[-125.63269571974679,57.92995692376407],[-125.63281863688904,57.92991015996058],[-125.6329774681558,57.92986125197796],[-125.63305161626771,57.92983566192614],[-125.63306437176277,57.929826725141226],[-125.6330899155636,57.92980548719452],[-125.6331166925677,57.92976518734339],[-125.633158561035,57.929694648857],[-125.63320239249236,57.929637573618734],[-125.63333691767797,57.92959196279231],[-125.63361734629879,57.92952208028552],[-125.63387890915523,57.92943980900906],[-125.6340358986226,57.92936285755421],[-125.63413145261285,57.929307045539886],[-125.63417397308977,57.929276882105455],[-125.63421327447918,57.92925119577226],[-125.63428763868862,57.929203175904384],[-125.63436732208275,57.92915180612976],[-125.63443433157288,57.92909928006018],[-125.63449924648584,57.929046748216],[-125.63458221850888,57.928981929499486],[-125.63472042105711,57.92888249603629],[-125.63488835481422,57.9287652001112],[-125.63501260642325,57.928688157880956],[-125.63506994783653,57.92865354882719],[-125.63510385855753,57.928640183841274],[-125.63516164367907,57.928669500691164],[-125.6353476986402,57.92875075692392],[-125.63556960851177,57.92883771838407],[-125.63577599142909,57.9288921139326],[-125.63599313758357,57.92892523031359],[-125.63609643804459,57.92894121323123],[-125.63615998245004,57.928920078478164],[-125.63636840075662,57.92887242338086],[-125.63662204584423,57.92884283506827],[-125.63681641257334,57.92882990704476],[-125.63697380795031,57.92882024249512],[-125.63717910950237,57.92876809170379],[-125.63751896446324,57.92866471826525],[-125.63795381925333,57.928563845059706],[-125.63831114966786,57.92850986249047],[-125.63847385612921,57.92849572464701],[-125.6386342680063,57.928500645645244],[-125.63890875206185,57.92849914665566],[-125.63909033033217,57.928498517022575],[-125.63912836512054,57.92849525556071],[-125.63916740403681,57.92849648275043],[-125.63934357278107,57.9285104174429],[-125.63958076832812,57.928543582218445],[-125.6396988480404,57.92855960230436],[-125.6397408904596,57.9285787812215],[-125.63979028779062,57.92860246594882],[-125.63980821427924,57.92860363588588],[-125.64007081511639,57.928520233910355],[-125.64070290735658,57.928325679516824],[-125.64140349263313,57.92814252135134],[-125.6420846538099,57.928003045310284],[-125.64255456052024,57.92787645719561],[-125.64266492083665,57.92770404448828],[-125.64264223837691,57.92753688245861],[-125.64263865543593,57.92746958378173],[-125.64267359889388,57.92745734115034],[-125.64280372262316,57.92742853138871],[-125.6429698685422,57.92738411723109],[-125.64303762882682,57.92736299054519],[-125.64313367499011,57.92736549074294],[-125.64332671251869,57.92737946533446],[-125.64342064755525,57.927381959674996],[-125.6434597279878,57.92737869978262],[-125.6435357945346,57.927372174361864],[-125.64358962763106,57.9273734398282],[-125.64374712577413,57.92735030977917],[-125.64412672895293,57.927284034952066],[-125.64449385887296,57.92719529609869],[-125.644745968374,57.92710288523026],[-125.64505440150377,57.92697137199411],[-125.64532579415136,57.92684873136134],[-125.64544670115323,57.926788492982496],[-125.64548270708585,57.92677625245402],[-125.64556760776775,57.92672825449783],[-125.64579800079125,57.92658643868061],[-125.64613950952419,57.926415759029204],[-125.64654088497095,57.92627776033998],[-125.64688271856438,57.926183340530734],[-125.64701826191317,57.9261377188355],[-125.64705967925417,57.92611203443559],[-125.64717677975354,57.92600692517026],[-125.64732721380713,57.92583573658581],[-125.64744795038526,57.92568129153195],[-125.6476229094985,57.92548437347958],[-125.64781462931755,57.92530095731756],[-125.647932688278,57.92520482187355],[-125.648072115515,57.925082948701466],[-125.64837218667914,57.92482580018877],[-125.64869576840911,57.92453731160771],[-125.64884054358373,57.92440647998563],[-125.64892263640951,57.924205951329895],[-125.64914281494941,57.92379831256135],[-125.64945325443483,57.923446985049985],[-125.64965423686454,57.92328602062955],[-125.6497344716351,57.92317184070792],[-125.64981225157807,57.922980272274835],[-125.64988585062676,57.92278420693824],[-125.64985996421342,57.92261703865766],[-125.64971179136198,57.92243384829971],[-125.64955907421205,57.92228541166853],[-125.64950664653293,57.9222482650091],[-125.64948570475549,57.92223026627921],[-125.64937701484658,57.922114468123816],[-125.64918818823946,57.92187621789657],[-125.64897633931825,57.92161884169719],[-125.64872949870151,57.92137819513288],[-125.64845006059677,57.92112400444559],[-125.64812628439313,57.920873060578145],[-125.64773703953102,57.92062418586486],[-125.64734455794891,57.920384273304954],[-125.6470139158451,57.920191625447075],[-125.64669884666681,57.92002593350096],[-125.64634149112493,57.91986797892541],[-125.64602174170979,57.91975161790019],[-125.64590394034809,57.91970868883548],[-125.64589671318402,57.91969072602777],[-125.64591327022404,57.91961450972835],[-125.64602789682124,57.919433135372834],[-125.64621398923015,57.91917232604807],[-125.64637556125331,57.91893836684367],[-125.64648681514072,57.91877941275981],[-125.64655927465039,57.918705587716055],[-125.6466156528647,57.918657513884845],[-125.64666157862045,57.91860044052384],[-125.6467000240995,57.91855231910506],[-125.64676835616224,57.9184683897607],[-125.64693163653448,57.91827480763877],[-125.64718983713092,57.917976058281766],[-125.64744334983236,57.91772664091822],[-125.64765513249459,57.917538793774575],[-125.64797957795957,57.91726376923134],[-125.64859010930441,57.91686725846508],[-125.64922948965774,57.916542595204184],[-125.64951552566713,57.916424472047666],[-125.64956637795036,57.91640329786586],[-125.64968003314655,57.91632509380319],[-125.64986714109351,57.91617755152709],[-125.65008089188468,57.916115310750385],[-125.65040415101168,57.9160791508545],[-125.65069987167138,57.9158264742166],[-125.65082133076606,57.91547465104592],[-125.65096381557935,57.91524400167887],[-125.65129637443414,57.91500151369344],[-125.65163209666646,57.9147579117536],[-125.65176374587668,57.91467190284221],[-125.65188729368036,57.91466213250954],[-125.65218190009331,57.91464271554952],[-125.652473373493,57.91461880389217],[-125.6526528465462,57.9146103001937],[-125.65284907910171,57.91461529754889],[-125.65308316577463,57.91463497228401],[-125.65323179068265,57.914652181250176],[-125.65336114896803,57.914700741042644],[-125.65360289350146,57.91480566640863],[-125.65389445445226,57.9148860484575],[-125.65411634445057,57.91485522359574],[-125.65428694791541,57.91477940654313],[-125.65446883054247,57.914738384059234],[-125.65467796367419,57.91471761840039],[-125.65494631339658,57.91468354817773],[-125.65522499915687,57.914673055003384],[-125.65550870602479,57.914689489472586],[-125.65579238897736,57.91471040914927],[-125.65601807688233,57.91472557115028],[-125.65633875708015,57.91473873490453],[-125.65685030484116,57.91476584726636],[-125.6571910437012,57.91477906063207],[-125.65730494846868,57.9147860824895],[-125.65745255974161,57.91479991973052],[-125.65769943534029,57.91480616161038],[-125.658014040247,57.9147912690106],[-125.65840624956215,57.91471265098004],[-125.65875880237898,57.91458682857484],[-125.65888908627672,57.91453221028776],[-125.65889891724069,57.91449634848366],[-125.65894628294313,57.914393294702364],[-125.65903206351867,57.914243237597134],[-125.65907487223977,57.914177180565076],[-125.65908132555018,57.91416373946856],[-125.65910392398428,57.91411445272538],[-125.65913666799275,57.913994539494034],[-125.65917461824486,57.913765857276466],[-125.65920770682872,57.91349230399579],[-125.65934602362651,57.913249299499945],[-125.6595894890729,57.91304917936694],[-125.6598915287276,57.912904160224976],[-125.66025270367665,57.912755926855304],[-125.66047720246709,57.91266790341433],[-125.66056722856919,57.91263000299475],[-125.66061276156977,57.91261329701876],[-125.66067419471952,57.91258765980412],[-125.66087788114291,57.91246706019613],[-125.66111588744214,57.91228486701639],[-125.66123489477665,57.91219320956044],[-125.66125715596652,57.912180930052436],[-125.66132321249066,57.91211044570892],[-125.6615263722118,57.91193152767284],[-125.66184041382965,57.91174167623568],[-125.66221315810387,57.911594588610704],[-125.66248431344775,57.91147976508082],[-125.66257332821237,57.911437374946146],[-125.66259243151627,57.911425087228004],[-125.66261795620812,57.911402722594055],[-125.66264554087968,57.91138597049268],[-125.66266732761306,57.91130976611318],[-125.66265894915965,57.91118414094251],[-125.66266504783519,57.91109331782299],[-125.66272914034856,57.911006005946156],[-125.6628101649577,57.91091312959003],[-125.66283895668711,57.91087843709873],[-125.66287141463296,57.910788802176576],[-125.66288840567506,57.91065987690297],[-125.66289314872715,57.91060157282297],[-125.66285135580249,57.910555487067704],[-125.66276439540191,57.91048573623987],[-125.66272475321952,57.910435170042845],[-125.66275154178412,57.910390379350645],[-125.66277729688365,57.91034222165072],[-125.66279011912287,57.91032431070512],[-125.66281170392254,57.91027053513155],[-125.66286893309064,57.9101237683768],[-125.66286531412166,57.90993983937797],[-125.66276947077009,57.90980277837959],[-125.66271502772778,57.90975553912931],[-125.66265338089899,57.90957034178994],[-125.6626057333717,57.90923602552052],[-125.66286187999016,57.90902696078329],[-125.66338605277802,57.90893296221775],[-125.66367313019668,57.9088058408084],[-125.66368337527918,57.90860400372695],[-125.66366310521423,57.90839199649605],[-125.66365068114217,57.90824841819605],[-125.6636703138091,57.90817669431286],[-125.66398956189074,57.908107969488235],[-125.66458883242187,57.90787285179348],[-125.66509537623969,57.90750404470096],[-125.66557333998419,57.90726525333063],[-125.66594535819269,57.90719329201629],[-125.66604364664565,57.907173352221626],[-125.6660470192528,57.90715093150049],[-125.66608160625013,57.9070579371331],[-125.66611636225923,57.906945878393486],[-125.66611261986758,57.906892039001654],[-125.66620736390877,57.906795831034955],[-125.6663439278263,57.906624590073775],[-125.66644350404871,57.90646110659109],[-125.6665184579786,57.90633681244347],[-125.66659090390641,57.90625737030224],[-125.6666514479422,57.90621042061514],[-125.66671404917038,57.906171326254096],[-125.6667871833838,57.9061322582163],[-125.66688815150374,57.90604952291087],[-125.66705930753004,57.90590191847524],[-125.66721206965045,57.905806976375494],[-125.66726504727238,57.9057813152156],[-125.66722958427759,57.905735246878095],[-125.6671212049046,57.90558357936296],[-125.66701289587894,57.905424061759895],[-125.6669464294176,57.90530502116609],[-125.66703111083501,57.90515495771476],[-125.66708340657635,57.904967805233845],[-125.66683223419759,57.904857274478196],[-125.66663528236114,57.90482089507642],[-125.66662240398917,57.904725539080694],[-125.66660567051754,57.90459092248911],[-125.6665845514167,57.904473116770355],[-125.66652809786397,57.90429690691226],[-125.6664506583346,57.9041060655883],[-125.66641649990981,57.90403308545058],[-125.66637834362392,57.90393318037331],[-125.66630136008617,57.903692996161396],[-125.66622558318005,57.90343487171429],[-125.66614960831494,57.903199175878655],[-125.66604113274805,57.902939848031046],[-125.66593880584921,57.902702964656875],[-125.66587882636,57.90256711831457],[-125.66586542289093,57.90253119817665],[-125.66584899265739,57.90248069155022],[-125.66579972214168,57.90232692881817],[-125.66575593413802,57.90215075079015],[-125.66574281982606,57.902082309244264],[-125.66571810031452,57.9020149600265],[-125.66576470394249,57.90187601684646],[-125.66580491129179,57.90174266488337],[-125.66563931701808,57.90162113237857],[-125.66546293583963,57.90152648744056],[-125.66538905567559,57.90141303516007],[-125.66531070112788,57.90120873399287],[-125.66529168867098,57.90097430277893],[-125.66535132286913,57.900791656032716],[-125.66539576678609,57.90065831498815],[-125.66539701324798,57.900518136715164],[-125.66537735241046,57.900356598363125],[-125.66534532296627,57.90016250688217],[-125.66531605093675,57.90001328038359],[-125.66531301458005,57.89999981534595],[-125.66529471593037,57.899922389271886],[-125.66527628767997,57.89985954173074],[-125.66527227786491,57.89983598119423],[-125.66524537122126,57.8997775981449],[-125.66535712699978,57.89954686028153],[-125.66546343941789,57.89933405190536],[-125.6652442885779,57.89930546496046],[-125.66504684828149,57.899327397502525],[-125.66501577303667,57.89926339670234],[-125.66492748399145,57.89910841453801],[-125.66481089437025,57.898934296469854],[-125.6647335387191,57.89885560029205],[-125.66469471957116,57.89883307357117],[-125.66466949443316,57.89882291701209],[-125.6645981882004,57.89877563657283],[-125.6644639246054,57.898691189663566],[-125.66437590227508,57.89862592380672],[-125.66434250912252,57.89858546747835],[-125.66429759498538,57.89853488906027],[-125.66418048967385,57.89841908456803],[-125.66402676657152,57.89827066559515],[-125.66390417027311,57.89817839745323],[-125.66379210913325,57.898089520149526],[-125.66370302616521,57.89802425120439],[-125.66361922579522,57.89795899554722],[-125.66349717984875,57.897807291691954],[-125.66335171261674,57.89767795749862],[-125.66314096092611,57.897654995586166],[-125.66294076714642,57.89763093861576],[-125.66281998046232,57.89757456043819],[-125.662681264872,57.89751701529164],[-125.66245859167157,57.89741215641097],[-125.66229160179007,57.897330988792326],[-125.66225705500577,57.89730286498509],[-125.66220115479442,57.89730160174778],[-125.66208836522294,57.897294586901914],[-125.6619851405965,57.89727862465845],[-125.66185267525859,57.89723006610619],[-125.66162671238945,57.897138654871966],[-125.66136511809071,57.89702360225917],[-125.66114958389046,57.896945674116026],[-125.66095689791452,57.89690929735211],[-125.66069934911744,57.896929948867836],[-125.6604896596537,57.89690586402165],[-125.66047586455254,57.89679816991214],[-125.66044926094636,57.89670726485955],[-125.6603168805774,57.89664973343849],[-125.66022229882996,57.8966113629391],[-125.66017927589728,57.89658770276823],[-125.66009528226458,57.896544873412246],[-125.65997034859691,57.89647951053327],[-125.65983067620273,57.896412988443586],[-125.65963640543974,57.896317169053034],[-125.65944003295112,57.89622246545747],[-125.65932346818639,57.89616497351682],[-125.65924794467931,57.89611880097021],[-125.65915463164082,57.89605800404495],[-125.65904033980937,57.895982574539715],[-125.65894475541526,57.895939714799255],[-125.65888168607681,57.89591600287659],[-125.65878281761803,57.89588547051808],[-125.65857483929274,57.89579073593775],[-125.65838494645446,57.89567810430081],[-125.6583273329483,57.895635341534124],[-125.65834978889986,57.89560063432589],[-125.65840840657872,57.89553461939988],[-125.65844900429529,57.895477529799905],[-125.6584682738499,57.89544617874223],[-125.65849005981393,57.895369976307855],[-125.65852172633862,57.89525006283726],[-125.65855974785372,57.89512904422456],[-125.65860200151582,57.8950046721317],[-125.65862310689872,57.89488809594161],[-125.65862351377852,57.89484323918086],[-125.65861763325849,57.894793880522805],[-125.65858113985703,57.89463117744349],[-125.65852108294841,57.894391034276644],[-125.65840818838811,57.894164212933774],[-125.65825368671803,57.89398887119226],[-125.65815687843066,57.893847320745614],[-125.65810466831029,57.893674484343414],[-125.65805847419912,57.89353418526374],[-125.65803488807934,57.89346123086029],[-125.6580270215349,57.89339840982231],[-125.65806886749108,57.893318894807635],[-125.6581606054167,57.8932047431437],[-125.65820470547435,57.8929940250556],[-125.65823174023481,57.89268906201491],[-125.65827246591483,57.89238525564701],[-125.65828970205892,57.892228297981184],[-125.65829522788715,57.89220139755341],[-125.65826181642441,57.8921643042172],[-125.65818752154858,57.892099069877034],[-125.65809831636166,57.89205174028244],[-125.65794883772703,57.8920210774303],[-125.65780044628461,57.891985931437574],[-125.65775304860044,57.891980202404056],[-125.65773391031824,57.89188034489223],[-125.6576842526199,57.89165929324265],[-125.65762789408394,57.891477474835746],[-125.65764047202428,57.891370970266216],[-125.65772592999858,57.891251195787795],[-125.65766384844557,57.8911198275952],[-125.65740749087169,57.891013752776374],[-125.65722647160808,57.890972915006934],[-125.65718855801445,57.890967210190894],[-125.65716032123436,57.89094022290928],[-125.65708709369152,57.8908749907748],[-125.65701800293012,57.89081874078463],[-125.65692579365019,57.89075345966935],[-125.65680219311483,57.8906611830122],[-125.65671522493767,57.89060040103069],[-125.65662301671776,57.89053511972045],[-125.65642603866813,57.89039443154359],[-125.65617981742307,57.89021772985949],[-125.65600928658644,57.89006925931964],[-125.65592246820297,57.88999053420315],[-125.65583140786352,57.88991628382824],[-125.65569418760346,57.88981387804521],[-125.65557187163962,57.889698053415486],[-125.65544663075272,57.889555306574884],[-125.65533505019681,57.88941708075561],[-125.65523389906718,57.88929346057368],[-125.65512109931052,57.88917429590995],[-125.65506997414883,57.88911360577412],[-125.6550458930182,57.889095600363994],[-125.65502530619807,57.88904059652875],[-125.65502705115571,57.88896434322715],[-125.65503051091264,57.88893295191345],[-125.65498516853997,57.888931712981005],[-125.65483582823016,57.888887589791274],[-125.6546261701874,57.888751352030305],[-125.65447669079997,57.888608541519055],[-125.65439004373329,57.888511872940576],[-125.65430648666303,57.888424183841295],[-125.65428379228898,57.88836917445341],[-125.6543463252016,57.888335693684134],[-125.6544588639652,57.888252999420594],[-125.65443455463881,57.88814415686949],[-125.65411029587679,57.88808612150354],[-125.65374849936192,57.88798200878842],[-125.65346844938762,57.88781755028159],[-125.65322818940446,57.88768571653255],[-125.65302230696263,57.887598829448095],[-125.6527543270504,57.88749832285316],[-125.65240341603757,57.88735834893294],[-125.65212306181692,57.88722977285524],[-125.65199007930184,57.88712737456035],[-125.6518834260373,57.887029530737465],[-125.65173066757764,57.88690016601435],[-125.65155177519804,57.886747182569806],[-125.65139464544117,57.886634627593004],[-125.65129410366606,57.8865603494997],[-125.65115269019458,57.886457928343376],[-125.65094347495263,57.88627682878457],[-125.65078798402027,57.88610259847642],[-125.65067837317079,57.88598231730907],[-125.65055915666717,57.8858754680748],[-125.6505007436538,57.88580690718344],[-125.65052571188268,57.885730715138685],[-125.65053493849166,57.88564551029297],[-125.65043507215881,57.88561160504774],[-125.65028842200194,57.88562131280372],[-125.65022719250048,57.885629001989074],[-125.65016840530566,57.88560081164338],[-125.6499975268719,57.8854927047368],[-125.6497797620387,57.88532503823914],[-125.64954496154084,57.88517526951596],[-125.64926679439648,57.88504108623011],[-125.64899062706529,57.88491700055811],[-125.64876069416209,57.88481210070164],[-125.64851101372066,57.88467574816255],[-125.64827208856973,57.88451699490872],[-125.64812863462579,57.88440895815388],[-125.64805145902116,57.88431791800441],[-125.64801211580212,57.88424043506001],[-125.64802608287314,57.88421355758377],[-125.64800508956337,57.884203409173125],[-125.64796847132301,57.88417191220339],[-125.64796781337635,57.88413041742361],[-125.64807401682039,57.88404883359222],[-125.64824816097176,57.883918086163106],[-125.64839695709054,57.883791757310796],[-125.64852041595427,57.88366872571329],[-125.64858137538788,57.88357580772672],[-125.64860974142434,57.883473832228205],[-125.64864241963862,57.883249631975744],[-125.64863708210396,57.883029817159134],[-125.64863687348924,57.882940102039775],[-125.64870893541784,57.882901042108145],[-125.64883289231149,57.88283632611665],[-125.64895186782958,57.8827413182193],[-125.64908734571179,57.882573460673925],[-125.64920682131553,57.88242462518739],[-125.64926222129014,57.88236309244409],[-125.64933457393354,57.88229263289204],[-125.64949617894983,57.88214839389402],[-125.64966075985652,57.88202322688228],[-125.64973505281026,57.88197071514098],[-125.6497679016876,57.88195398011074],[-125.64979661026814,57.88192714130304],[-125.64987410552028,57.88187127362295],[-125.65005683464402,57.88172260385623],[-125.65025249532556,57.88154368922416],[-125.65036433495445,57.881420625707044],[-125.65042723466061,57.88134677651949],[-125.65048607702607,57.881253852345516],[-125.65053767235463,57.881147451971124],[-125.65056883829727,57.88108473372059],[-125.65061275327965,57.88100971320507],[-125.65068977576402,57.880889922384945],[-125.65076127469504,57.88079815277929],[-125.65083483378034,57.880709752836765],[-125.65091167818132,57.88060902575756],[-125.65095463964764,57.880523909806705],[-125.65098351909522,57.880480249800044],[-125.65104536369786,57.88040527620378],[-125.65111365840758,57.88031686234559],[-125.65119311539718,57.88027445629118],[-125.65130628425752,57.88023662422396],[-125.65137390309229,57.88022110134228],[-125.65139611744426,57.88021218809341],[-125.6514350820362,57.88021789727846],[-125.65151299438719,57.88022931556999],[-125.65157830739965,57.88023509369311],[-125.65163416504643,57.88023636132319],[-125.6517237244289,57.88024332425852],[-125.65185327750999,57.880255998888096],[-125.65200595864782,57.88027770528889],[-125.65214593035401,57.88030386401611],[-125.65228915636916,57.880321059667494],[-125.65241551410361,57.880338211117525],[-125.65247767305002,57.880343980562806],[-125.65251135812791,57.88034967564863],[-125.65257030445166,57.88035992237894],[-125.65265032599414,57.880371345510135],[-125.65276003282462,57.8803649031767],[-125.65289102158141,57.88033720910635],[-125.65299469201797,57.88029935083547],[-125.65306562999527,57.88026589288969],[-125.65310164062289,57.88024804388616],[-125.65311125117073,57.8802357332179],[-125.65312820219091,57.880226805963986],[-125.65316622832061,57.88021905505322],[-125.65327585200055,57.88022158350876],[-125.65342012405756,57.88023878066598],[-125.6535158442926,57.8802637012931],[-125.65357892530473,57.88028292976693],[-125.65366944847302,57.88029886532937],[-125.65384003476763,57.88032173763875],[-125.65408870981712,57.880336962684076],[-125.65436073357088,57.88033542646675],[-125.65458861146772,57.88031919657179],[-125.65483129014085,57.88029851895504],[-125.65515714506452,57.88028927069353],[-125.65549335421402,57.88030247700318],[-125.65574604183105,57.88034013790545],[-125.65587336504663,57.88036625999425],[-125.65593543233594,57.880382120443315],[-125.65601022635424,57.8803879208969],[-125.65611770119098,57.8803949271715],[-125.65625153120783,57.880403122852286],[-125.65637897780643,57.880415787633666],[-125.65648847949467,57.88043177026943],[-125.65667914874868,57.880450205049826],[-125.65694253461834,57.88047106984555],[-125.65711770846957,57.880453578346895],[-125.65724671849043,57.880411296327914],[-125.6575003369325,57.880346906307295],[-125.65776778673892,57.88038460135118],[-125.6578691595316,57.880599054797216],[-125.6579352785826,57.88074837474703],[-125.65809831811184,57.88078916506515],[-125.65834773504884,57.880840269777714],[-125.6586096957766,57.880901499056165],[-125.65879488528905,57.880942345330894],[-125.65887272008446,57.88096273054648],[-125.65903298288123,57.88096201973502],[-125.65937151090469,57.88095279360043],[-125.65965197323891,57.880951268152124],[-125.65989850568722,57.88097096257386],[-125.66018588428241,57.88101991797272],[-125.66039326521103,57.88105633295708],[-125.66050489928443,57.8810700748726],[-125.66049242974955,57.88104985734724],[-125.66069801429403,57.8809337529453],[-125.66120029867963,57.88076793946936],[-125.66173167213087,57.88065154091334],[-125.66230604819505,57.88055879935534],[-125.66279148023514,57.88050844430788],[-125.66311733501821,57.880499176557514],[-125.66363962333213,57.88045451883915],[-125.66443165256635,57.880308489438534],[-125.66512693201675,57.88013417630374],[-125.66549056767903,57.880026312185386],[-125.66567237974984,57.87997294045929],[-125.66577915087238,57.87993956577812],[-125.66614177673405,57.87982721166775],[-125.66683524840926,57.87961699954481],[-125.66747402996234,57.87939094728501],[-125.66810472576584,57.879124500527105],[-125.6687685957088,57.878920933282544],[-125.6694684227491,57.87882286609545],[-125.67003658498123,57.87883324719782],[-125.67027388945378,57.878942613563844],[-125.67032400191398,57.878998808985415],[-125.67061153010248,57.87891092820157],[-125.67135886412728,57.878684004714295],[-125.67217693801847,57.87844491567861],[-125.67273823079177,57.878274718921695],[-125.67304172792109,57.87816668659929],[-125.67331773333039,57.87806980037353],[-125.673723357968,57.87797771709426],[-125.6740612977049,57.877910138195084],[-125.67434868276895,57.87783682764276],[-125.674763636484,57.87776158541398],[-125.67509147369749,57.87776575037536],[-125.67531342874018,57.87782124178683],[-125.6755805982228,57.87789142155849],[-125.67571680510136,57.87798931739122],[-125.67572231908477,57.87808353047044],[-125.67573767024807,57.87825963151716],[-125.6759087676516,57.87859198997392],[-125.6762607128507,57.878857502789],[-125.67657473611096,57.8789962015162],[-125.67686751081492,57.879156155019025],[-125.67716233155814,57.87932171998928],[-125.67738807146807,57.8794310456188],[-125.67760244751241,57.87951230770213],[-125.67791359544924,57.87961959644556],[-125.6782499324095,57.87974040247322],[-125.67849930499384,57.87979707634355],[-125.6787428767531,57.87979430015976],[-125.67918159323409,57.87977853690768],[-125.6797415505282,57.879761942550836],[-125.6800716666981,57.87974815787782],[-125.6801433850368,57.87974496596033],[-125.6802288288951,57.879738442700905],[-125.68054940984248,57.879729119640416],[-125.68107132480698,57.8797247640723],[-125.68146014877219,57.87974812366683],[-125.68157282089354,57.87976521464744],[-125.6815917596693,57.87976974565676],[-125.6816729104351,57.87977218260818],[-125.68187631561986,57.87978164031067],[-125.68211975654484,57.87979231474657],[-125.68239587872984,57.87980418814775],[-125.68274688111063,57.879813996619276],[-125.68307889950333,57.87982263754007],[-125.68336037741533,57.879825550284274],[-125.68350376668327,57.87982476988328],[-125.68374853479467,57.879804044571586],[-125.6843107870355,57.87976500793407],[-125.68479392065129,57.87973251014314],[-125.68513446477971,57.879732194720845],[-125.6854748796166,57.87974533522909],[-125.68562666517197,57.8797490580845],[-125.68564688247264,57.8797277987464],[-125.68573180369849,57.8796584708925],[-125.68585602310527,57.879553350131644],[-125.685923039021,57.87948285848472],[-125.68592947680006,57.87946941657201],[-125.68592970130867,57.879442502895564],[-125.68596195558631,57.879367443509956],[-125.68605109241496,57.87929812542728],[-125.6860998776981,57.87926347631047],[-125.6859957512334,57.87923295223238],[-125.68576526328773,57.87918642986654],[-125.68552809961318,57.879054663040556],[-125.68533075136884,57.87882542599704],[-125.68521937229234,57.878655827541486],[-125.68519667614886,57.87859633837356],[-125.68523743997928,57.87851232795928],[-125.6853090676335,57.87839250494415],[-125.6853602982347,57.87831749064913],[-125.6854027200804,57.878287312477205],[-125.68549288056504,57.878222482964055],[-125.68568273813051,57.878083874901016],[-125.68589699926781,57.87792738140676],[-125.68598824122411,57.87785806844454],[-125.68599678711854,57.877844631525164],[-125.68597164511974,57.877825508011156],[-125.68591622398164,57.87764482809466],[-125.68584318452669,57.87730150028717],[-125.68572532103042,57.87689863133925],[-125.68558114418266,57.876490093179264],[-125.68547363686629,57.87623527643329],[-125.68541114598032,57.87614429359699],[-125.68534549386005,57.876052181844145],[-125.68527292132049,57.875906225482694],[-125.68523573530022,57.87568970327335],[-125.6852565096996,57.87547443960299],[-125.68534299253386,57.87534231646135],[-125.68546954873625,57.87521028799381],[-125.68554636417551,57.87510057031685],[-125.68556472546285,57.875046785527104],[-125.68561494275913,57.87496728332953],[-125.68573437150415,57.87480383807163],[-125.68582409676445,57.874662751014405],[-125.6858331285149,57.87459100147453],[-125.68574538753299,57.87449435223903],[-125.68556143659153,57.87430551928848],[-125.68536201419857,57.87407515703267],[-125.68522240493634,57.873878578577376],[-125.68515308278471,57.87372365880375],[-125.6851298523014,57.87360136921314],[-125.68513817702375,57.8734892470588],[-125.68514566421341,57.87335020889663],[-125.6850994318021,57.87320543656369],[-125.68504004247256,57.873123432505196],[-125.68501598727532,57.873099825794974],[-125.6850161373577,57.87308188346239],[-125.68506273714056,57.87293060233353],[-125.68517060058463,57.87263704613043],[-125.68524391714672,57.87244097152121],[-125.68526988932747,57.87236029091044],[-125.6853040970174,57.87230317953427],[-125.68537625045632,57.87224615786836],[-125.68544522372757,57.87219025006734],[-125.68551215238776,57.87212873031837],[-125.68560530184827,57.872081850906184],[-125.68566239823258,57.872060678863065],[-125.68575011895209,57.872031729197815],[-125.68597523756179,57.871960489929734],[-125.6861919715367,57.87188138060126],[-125.68626917723351,57.87185128438933],[-125.68634753115624,57.87180885525939],[-125.68653927462303,57.87169267974164],[-125.68677352154424,57.871537354448186],[-125.68701522017433,57.87137195355503],[-125.687303275048,57.87120890402072],[-125.68763344163963,57.871051559827755],[-125.68796405147947,57.87084038795649],[-125.68836893461042,57.87044099158264],[-125.6889037547909,57.87000601273592],[-125.68934304652878,57.869779391941705],[-125.68965175209067,57.86966572805246],[-125.68988536571025,57.86958216665513],[-125.69001746281641,57.869540982131944],[-125.69023531979565,57.86945177636225],[-125.69058224853163,57.86930343552543],[-125.69079595138055,57.86920636931475],[-125.69085514841946,57.86918520000419],[-125.69090903031746,57.86916850397448],[-125.69107252301801,57.86915430526096],[-125.69132992952696,57.86912574585509],[-125.69147756724242,57.869115995518854],[-125.69153337299123,57.86912173195771],[-125.69157444011621,57.86912743421329],[-125.69162494777514,57.86913764398581],[-125.69174707002055,57.869154748129894],[-125.69188601913203,57.86917637677651],[-125.69207765756391,57.86919924862402],[-125.69226508035943,57.86922211044675],[-125.69239461830952,57.86923362408079],[-125.69261161665112,57.8692487038877],[-125.69291494914268,57.86927519673185],[-125.69315826904804,57.86929482203854],[-125.69331844499841,57.869298555525056],[-125.69341539193371,57.869301021745464],[-125.69357105094983,57.86934175115184],[-125.69381584273707,57.869437634737686],[-125.69404230057776,57.86945721962858],[-125.69426003829079,57.86938146398323],[-125.69447166965287,57.8692787800585],[-125.69467696697252,57.86917720269038],[-125.6949507260377,57.8690802676292],[-125.69555548051258,57.868979604052406],[-125.69659153605588,57.868849643715116],[-125.6974675636744,57.86869688337402],[-125.6978446801608,57.868590084668746],[-125.69800423968964,57.86853998334807],[-125.69843506784295,57.86843891194],[-125.6991487266434,57.86829137962165],[-125.69951611571119,57.86821483235751],[-125.69955419172604,57.86819809716288],[-125.69992996588127,57.86812717475564],[-125.7008588646623,57.86794871903416],[-125.70178571782168,57.86776128101052],[-125.70250374350859,57.8675913124367],[-125.70321030258181,57.867403371894284],[-125.70363805633994,57.86728882004107],[-125.70374367707899,57.86725989857966],[-125.70409512392176,57.86719676022092],[-125.70477280746925,57.867061453529715],[-125.70515070338321,57.86698603557845],[-125.7055308809463,57.86688819342315],[-125.70654419173385,57.86668969978179],[-125.7075589988201,57.86656857899082],[-125.70810854665788,57.86651035097908],[-125.70846328817731,57.866429265850634],[-125.70881789351755,57.866228188773995],[-125.70924289902128,57.86591960947385],[-125.70955297341456,57.86575207548269],[-125.70960060491849,57.86572638706602],[-125.72355248267212,57.85991359252498],[-125.78133372115934,57.89997507086784],[-125.78137155182961,57.89999980473236],[-125.78225721923411,57.900614685452496],[-125.78140121337685,57.90143081622896],[-125.78151731600977,57.906506680343455],[-125.78474466804654,57.91185005567516],[-125.78720537773441,57.92154344581638],[-125.78676646643979,57.93045172976732],[-125.78595859512515,57.932908719481446],[-125.78790349437452,57.93849233734449],[-125.79409348805206,57.94655884551831],[-125.79428631143011,57.954553210576165],[-125.79738896860438,57.959043998197714],[-125.80015230354229,57.96707822742941],[-125.80324157303818,57.971227971954676],[-125.80956462023576,57.974781176307516],[-125.825443221706,57.97861610283516],[-125.83368426875244,57.98141700925473],[-125.83541032015276,57.98123073094513],[-125.84952747799365,57.978510850040166],[-125.86430028961831,57.97630157190169],[-125.87904639077203,57.9765938928821],[-125.88141336651918,57.976811351235554],[-125.89123366205128,57.978730806450415],[-125.9041843090342,57.980526214529064],[-125.91289419282248,57.98080135212639],[-125.92446704961412,57.978888339634295],[-125.92823769479996,57.97937492251408],[-125.9407767419334,57.986020570725955],[-125.95091947741258,57.99131837006445],[-125.95763379525857,57.993375345155044],[-125.96215137654536,57.99327800614815],[-125.96662304247494,57.98770736203044],[-125.96730524038172,57.98136411123625],[-125.97052259728575,57.97665442851161],[-125.97189301654194,57.97591002949529],[-125.97972546733254,57.97145226593887],[-125.98681208700978,57.96711063017866],[-125.98884215588942,57.96320794385906],[-125.9897053559767,57.95954740363465],[-125.99173407435902,57.95856061816082],[-125.99494583317427,57.958192924334284],[-125.99966192847839,57.95821096377341],[-126.00293921807175,57.95960160093064],[-126.00567373552343,57.9613420949453],[-126.00907059217471,57.96576515406249],[-126.0118497515366,57.96938070920235],[-126.01583610516295,57.972224474276196],[-126.02028063152832,57.97100365617328],[-126.02304388722624,57.968688389292744],[-126.03138835223594,57.96642570715231],[-126.03715785143515,57.967393215597646],[-126.04868354455402,57.96977610016713],[-126.05633367538893,57.969046344122646],[-126.06219759311648,57.967042949843396],[-126.06328891454285,57.96311264747128],[-126.06318510091528,57.95290249942366],[-126.06382253004752,57.946334710787426],[-126.06365938321986,57.94479161584103],[-126.05955645850186,57.942137824760344],[-126.04996192855522,57.94011411793937],[-126.04804775615658,57.93621206068033],[-126.04853224616035,57.93119663661426],[-126.05295118097105,57.92723839920539],[-126.05810565897485,57.92380007281273],[-126.05878566501202,57.92261550695885],[-126.06748179289443,57.91560449941811],[-126.07224783803893,57.91416653645946],[-126.08208482872782,57.91516566311105],[-126.08857637181677,57.916767432530335],[-126.09886239871105,57.917137007242985],[-126.10093339539533,57.91613062753203],[-126.1108388178951,57.91484877940408],[-126.12363933856652,57.9171701484123],[-126.1297821084823,57.919846842338785],[-126.13776836654353,57.925338496113746],[-126.14534910541508,57.93019314971692],[-126.15319747689291,57.93339627203989],[-126.17011797637453,57.94192595485137],[-126.18289263321701,57.94561445518917],[-126.1956353625483,57.946744779160454],[-126.20786793654447,57.94563168856505],[-126.20898163093622,57.94554022790114],[-126.21495000940382,57.94318008543188],[-126.21822540506149,57.941093273801705],[-126.22011003317867,57.93905354887176],[-126.22627258600049,57.93345374383211],[-126.23623209818074,57.926276941071364],[-126.24064813333639,57.921576798969596],[-126.24059763968123,57.91945955767919],[-126.2341233250747,57.90902804841136],[-126.22929793747494,57.9011683499856],[-126.22656974588313,57.89499163347716],[-126.23174506697822,57.886065091567126],[-126.23241464222563,57.88504118259883],[-126.24510532990017,57.87931261598352],[-126.25445334682182,57.874298033443495],[-126.25541814610803,57.870142470907574],[-126.25490020095108,57.865406636475456],[-126.25663414599205,57.86050501684915],[-126.26411525746894,57.85713515181062],[-126.2661739579712,57.85607245083126],[-126.2806563967353,57.85514556770923],[-126.29294439391396,57.85608796088376],[-126.29762135995888,57.85754885352344],[-126.30267344722428,57.86106314052443],[-126.30770127538791,57.86549237565202],[-126.30853674016336,57.866360654591],[-126.31069034135388,57.87024918651915],[-126.3103846454196,57.87395506008002],[-126.3117126711175,57.87648188019571],[-126.31434454970278,57.878323795157485],[-126.31816197764097,57.87994751983457],[-126.32118930937838,57.88321481960383],[-126.32161816561883,57.88750214246917],[-126.32285759592293,57.889392126937985],[-126.32529677148582,57.89048968482098],[-126.32967264686323,57.891259443592894],[-126.3359506071958,57.89313674444536],[-126.34187713510676,57.89631553471437],[-126.34470378981905,57.89907149704965],[-126.34987505738256,57.902530028594335],[-126.35284758648041,57.90374233020586],[-126.36030726361821,57.905732011480715],[-126.36560182439362,57.90849880767149],[-126.36820163698553,57.91206239173188],[-126.37099701791041,57.916361080891846],[-126.37308404247321,57.918768665205455],[-126.37784585170667,57.921599313532184],[-126.38146629512924,57.92276430924778],[-126.38221787553934,57.922771127387385],[-126.38877088167578,57.922411239333904],[-126.39595705579626,57.92245288216344],[-126.40022640821081,57.923337313433514],[-126.40533973446652,57.924847076459876],[-126.4111557327807,57.92396795785787],[-126.41338180997076,57.920219803618636],[-126.41347571397519,57.91599378203077],[-126.41172704442053,57.912616832931036],[-126.41182379791157,57.90834597906621],[-126.4133578738022,57.906807061858146],[-126.4192168113834,57.90843954940444],[-126.42183716509246,57.91131121035035],[-126.42484614250867,57.915949036718764],[-126.42819443976113,57.91973340355095],[-126.43155576870667,57.92312289806187],[-126.43642106216556,57.92634591038692],[-126.43791027686314,57.92687036863437],[-126.44654651387032,57.92938077070195],[-126.45464450548275,57.93216162041223],[-126.46146337276717,57.93437221557837],[-126.46979547670922,57.93636181611225],[-126.48007798400748,57.93721341307213],[-126.48480024684795,57.93723221051848],[-126.49865149347711,57.93674148349465],[-126.50435133780826,57.936199658970565],[-126.52442961282391,57.9355659074531],[-126.52962471005273,57.93895476643163],[-126.53364858283221,57.941827747218085],[-126.53851248164807,57.94579183443329],[-126.54550440650354,57.95068018937553],[-126.547980005232,57.950293204531974],[-126.55529570761023,57.94935674270258],[-126.56227491154705,57.94939030098281],[-126.56943147576209,57.95136971891668],[-126.5746558605783,57.953500657214505],[-126.58180985391473,57.95576655127334],[-126.59379597912982,57.957822224793354],[-126.59539983366535,57.9582278032641],[-126.60266826633823,57.9603126404463],[-126.60766439517502,57.96335853845145],[-126.60966727026616,57.96553867549068],[-126.61432844223584,57.9696087412338],[-126.62091034074666,57.974208094614994],[-126.6232474842667,57.975812258775996],[-126.63378065190953,57.982142168637985],[-126.64070316245466,57.986048113962575],[-126.65281762459924,57.987927513265134],[-126.65786220435537,57.988225762610945],[-126.66847037646278,57.99016500524892],[-126.67183756799106,57.99491264853101],[-126.67222595497053,57.997880697711466],[-126.67240746608532,58.00004223998401],[-126.67054579211653,58.00743629302699],[-126.66648682271136,58.0153707650976],[-126.66685806653199,58.023695894067124],[-126.69657645938202,58.02389419405995],[-126.71900325835567,58.02708647177474],[-126.73616066213503,58.025611163773924],[-126.75867143893727,58.021375503452845],[-126.76774327328927,58.01977131294894],[-126.77113845163365,58.018701894822144],[-126.77100363062247,58.01584921042869],[-126.77024556727717,58.01345775942961],[-126.7748487066344,58.010712281337895],[-126.78498380548947,58.00885847243895],[-126.79861800107405,58.00822129877998],[-126.8020563692145,58.00817377225594],[-126.81307589317124,58.009049310609676],[-126.8148694908863,58.00828463504929],[-126.82067726955476,58.006041680065664],[-126.82925971232565,58.00335056116091],[-126.8342983766373,58.00007988602245],[-126.83591990611436,57.9992262742384],[-126.83958509400411,57.99838672572402],[-126.84646272677338,57.99845994635489],[-126.85408685176549,57.999218967664504],[-126.86106732960955,57.99980224662611],[-126.86249297396442,58.00007121097294],[-126.87280534510221,58.00068615168433],[-126.88341550837578,58.00005105945351],[-126.88805876127452,57.99879093281755],[-126.8895671682493,57.9983950451947],[-126.89387595012896,57.99754073550025],[-126.90000906840415,57.996647080005815],[-126.9013002190891,57.99659350338409],[-126.90764397019633,57.99620057003158],[-126.91548926096104,57.996452086680556],[-126.91870976375884,57.99679786256547],[-126.92527229615325,57.99584624735599],[-126.93065636676657,57.99459744123216],[-126.93916845021523,57.99204328232298],[-126.93992117490757,57.99182262806876],[-126.94724287961621,57.989832666162414],[-126.94907428139929,57.989326132646966],[-126.9480324430932,57.98504437861248],[-126.9463553993201,57.979501942125786],[-126.94510398092916,57.974135966665926],[-126.94468171146225,57.973107062418784],[-126.94384102919705,57.970483929431595],[-126.9507293602328,57.96849685624794],[-126.95975778284438,57.96782204417191],[-126.96395058854277,57.96680478557509],[-126.96621123828736,57.96635772781892],[-126.97256774270426,57.96304537634954],[-126.97132314664836,57.95643243704645],[-126.96490837450132,57.952252792865245],[-126.9635194986303,57.951275825359474],[-126.95711939565652,57.945902358724574],[-126.95574210359685,57.94332808971446],[-126.95554740021356,57.94019800840604],[-126.95569734040166,57.93425702541164],[-126.95369515959392,57.9290044419444],[-126.94901091698027,57.92403119380604],[-126.94773138180622,57.922936679677086],[-126.94068510779681,57.91853625591488],[-126.93384716182103,57.9153183909134],[-126.92914990582054,57.91246212001094],[-126.92766735645118,57.909942241732686],[-126.92725295102895,57.90845571546314],[-126.92727093807459,57.905889500788696],[-126.92912468933376,57.901614733691325],[-126.93108768713387,57.89750966585122],[-126.93239592660714,57.89483575454411],[-126.93318801001529,57.892919121244326],[-126.93059781408398,57.892928278205176],[-126.92875024188913,57.89294117884732],[-126.92287849721039,57.89298200794562],[-126.91667201849843,57.89352732588056],[-126.9146413209347,57.89377456820995],[-126.90810131624471,57.89392699979645],[-126.90293546304565,57.892930332149],[-126.89912938069307,57.89021061140608],[-126.89765943679407,57.886506073957605],[-126.89735685885526,57.88217459942512],[-126.89534935492874,57.87841088956504],[-126.89120764987786,57.87501138315369],[-126.8850428697419,57.87219943980034],[-126.88017063105588,57.86976447411762],[-126.87645433336539,57.86602080797112],[-126.87520522883001,57.86243131471349],[-126.87661815640834,57.85802581820449],[-126.8819951128143,57.85382736403674],[-126.88644146631633,57.851456173949636],[-126.89078806465811,57.849211109848774],[-126.8917025549668,57.84680952781823],[-126.88951801279951,57.84459020115619],[-126.88435943105216,57.843592863038815],[-126.88264149983297,57.84337101328346],[-126.87736977223682,57.842158838681776],[-126.87316153685606,57.84046398245955],[-126.86922679408131,57.83631796228427],[-126.86741521679325,57.83141337339206],[-126.86945556840192,57.82637598854513],[-126.87132805879938,57.8235735917776],[-126.87280409764413,57.82271161621053],[-126.87306573025617,57.819507085340554],[-126.87107062490391,57.81598543389933],[-126.8689827149842,57.81330768437552],[-126.86386462599378,57.80872080789597],[-126.8638419715713,57.807455997392324],[-126.864631155146,57.80419427709238],[-126.86734338260574,57.80065088089219],[-126.8793625133619,57.79737808254279],[-126.89259778613241,57.79632986967173],[-126.90603602466611,57.794650959965466],[-126.9206763281814,57.79434393650617],[-126.93214428373456,57.79563655432506],[-126.94124161716714,57.796038903574875],[-126.95572778131996,57.79349524123354],[-126.96995422037915,57.78922939027641],[-126.9781049168145,57.78569769753126],[-126.98086577730963,57.78019586655324],[-126.97839300010789,57.7749031338923],[-126.97520089987832,57.77075501470497],[-126.97396470971007,57.76334495241089],[-126.97333210809246,57.759070381430256],[-126.97208645119164,57.7558768445478],[-126.96637676689238,57.7537385949421],[-126.95599642101601,57.752782134714536],[-126.95161738092126,57.75281361747386],[-126.94847107893841,57.75054855127466],[-126.94793289297473,57.74547484846903],[-126.94697091146654,57.74062846797187],[-126.94706543928272,57.73513763553553],[-126.94893280106785,57.72793868054682],[-126.94892258833403,57.72736462502619],[-126.9470906074885,57.721726164646974],[-126.9425944913628,57.71616051036088],[-126.93672341704516,57.71105299817011],[-126.93356465243878,57.708106026025874],[-126.93175611383248,57.70337333822553],[-126.93223297577956,57.70075059503003],[-126.92996836135342,57.699510641145956],[-126.91770792066322,57.69964098501333],[-126.90672457075725,57.699644844062576],[-126.90137577744508,57.69888297312128],[-126.89348343350055,57.69881981820064],[-126.89166754874525,57.69870646616307],[-126.88377525797439,57.69864273295929],[-126.87297417974689,57.697162467646365],[-126.86630017008143,57.6938334263937],[-126.86132634612038,57.69020597301933],[-126.85445884554684,57.68796303166427],[-126.84642342306662,57.68589764790492],[-126.84197145573032,57.68169208528309],[-126.84265860090825,57.67552969476124],[-126.84272910907359,57.67554045870075],[-126.84300783782763,57.67553083553783],[-126.84321297097185,57.67551271034112],[-126.84330708694696,57.675500898275715],[-126.84338544186882,57.675488065267366],[-126.84349531872103,57.675477273944686],[-126.84357882449572,57.67545992293731],[-126.84359866277508,57.67545643274235],[-126.84364288225991,57.675416906633835],[-126.84372842521356,57.675350206773494],[-126.84378816362981,57.67530161158738],[-126.843845929878,57.675258635282255],[-126.84393168889346,57.67520090405939],[-126.84399066994919,57.67516576882296],[-126.84400936791552,57.67515780076472],[-126.84407379974408,57.67513160088685],[-126.84419266353633,57.67514766211142],[-126.84440390363281,57.675168740488516],[-126.84461050563642,57.6751225720587],[-126.84471755840451,57.6750792809711],[-126.84474484433929,57.67508022816017],[-126.84477256978371,57.675054262117804],[-126.84488700899601,57.67496607306686],[-126.84508645585593,57.674834733225225],[-126.84527797572916,57.67477071973517],[-126.8454268359657,57.67476864806472],[-126.84550215176391,57.674760318272895],[-126.84557029990991,57.67471278985481],[-126.84574267466614,57.674589470788554],[-126.8458682592523,57.674484390705786],[-126.84593492357202,57.6744178100449],[-126.84601901915654,57.674333177702394],[-126.84611468102332,57.674249592665454],[-126.8462037340644,57.67415259459843],[-126.84631716441181,57.67401956012513],[-126.84639553117191,57.67391366011605],[-126.84641465804283,57.67387765731302],[-126.84641429403858,57.673814868711574],[-126.8464129439018,57.67370723575986],[-126.84643330206707,57.673586008846414],[-126.84647465420687,57.67346576899157],[-126.84649831254022,57.67339834176722],[-126.84650713839304,57.67337137495301],[-126.84650063769072,57.67326826003982],[-126.84647269546947,57.673096885003694],[-126.8464554096415,57.672980383879775],[-126.84645502050483,57.67291647422656],[-126.84645727155586,57.672876094274464],[-126.8464608635312,57.672849160937126],[-126.84645910465142,57.672817776747756],[-126.84648005195851,57.67276942841028],[-126.84654577244235,57.67270733861963],[-126.84656677803245,57.672662353695735],[-126.84648217654082,57.672630377920584],[-126.84638622637469,57.67260632349914],[-126.8463577850858,57.67260089898642],[-126.84636167795094,57.672587418918425],[-126.84640033982174,57.67253447230127],[-126.84650408279312,57.67243738024838],[-126.84661180151754,57.67233129257685],[-126.84666254221756,57.672255843355074],[-126.84667601625233,57.6722019364744],[-126.84668006290089,57.67214808988326],[-126.8467021248221,57.67210309820342],[-126.84672271688531,57.67208614754054],[-126.84668548735878,57.67206283907045],[-126.84666049120189,57.67197666153867],[-126.8467208125089,57.67186078552543],[-126.84675813213681,57.671794392242816],[-126.84673606046854,57.67174519776817],[-126.84670108198902,57.67168150939871],[-126.84666544810038,57.67163576544411],[-126.84664932922182,57.67161792829442],[-126.84665006829493,57.671604468397206],[-126.84666563891257,57.67155054814206],[-126.84669548576987,57.67147859636273],[-126.84671158295163,57.67144821928596],[-126.84669438226939,57.67142926779975],[-126.84665886571433,57.671388008161614],[-126.84664169016378,57.67137017777333],[-126.84661410593078,57.67135577773502],[-126.84655560843628,57.67131915008125],[-126.84652804934774,57.67130587112939],[-126.84642838530513,57.67130314454989],[-126.8461643660408,57.67131268106807],[-126.84592111403666,57.67131311426013],[-126.84581047331274,57.67128915333804],[-126.84573932549146,57.67120214928329],[-126.8456421149857,57.671074946186124],[-126.84552830633433,57.67095569788538],[-126.84547172370156,57.67091008744172],[-126.84545147052573,57.670895640355695],[-126.84541123140603,57.67087795710106],[-126.84539003843994,57.67086800106037],[-126.84542301063874,57.670842001459846],[-126.8454816997737,57.67079341235826],[-126.8455115183266,57.67076743287641],[-126.84552359796224,57.670744930468004],[-126.84553267922477,57.670682081737596],[-126.84549866033802,57.670613901953246],[-126.84543433059844,57.67055040078058],[-126.84537636640972,57.67049022272379],[-126.84535593822025,57.67046792790856],[-126.84533550179006,57.670444511880554],[-126.84528489313568,57.67038540808838],[-126.84520166854385,57.670320906196054],[-126.84510512428491,57.67026994443304],[-126.8450362464244,57.67023786747713],[-126.84499608328322,57.67022354741551],[-126.84496985759199,57.67022259353811],[-126.84493840673208,57.67022279426581],[-126.84490148044429,57.67021293856763],[-126.84488336638066,57.67019959901884],[-126.84491355480742,57.67009625022294],[-126.8449941002826,57.66989951526937],[-126.84503815037118,57.66980616935448],[-126.84504298326401,57.66978819831386],[-126.84505933682932,57.669721939471074],[-126.84508972464103,57.66962755949823],[-126.84510519654324,57.66956915511937],[-126.84509516909291,57.669542308846744],[-126.84507893495066,57.66951998724043],[-126.84505849920363,57.66949657119068],[-126.8450432217133,57.66946975842807],[-126.84502582253505,57.66944183794565],[-126.84506911564841,57.66936195202726],[-126.84517664615096,57.66924689691144],[-126.84523521621638,57.66919382369309],[-126.84524638074365,57.669176933490874],[-126.84531219716196,57.66911932892966],[-126.84541631743258,57.66904017577196],[-126.84548978054069,57.66899597742997],[-126.84553553131532,57.668978866315456],[-126.84557393537322,57.6689618021099],[-126.84561015933367,57.66894026677359],[-126.84565750569521,57.66890072020131],[-126.84570559131299,57.66884771375659],[-126.84578014832667,57.66875865782555],[-126.84584835269277,57.668620306964826],[-126.84583156412903,57.66843204241202],[-126.8458101566333,57.66822474597378],[-126.84581697765836,57.66810809130785],[-126.84581962992631,57.66808564915476],[-126.84582156397788,57.66803181630212],[-126.84594495920226,57.66787629393802],[-126.84619416086508,57.667673995714736],[-126.8463346350711,57.667532940229876],[-126.84634421554715,57.667492513625696],[-126.84634906429712,57.66747454246943],[-126.84639760217142,57.66739462270182],[-126.84648290021285,57.66727073874512],[-126.84652352768269,57.66721217345606],[-126.84663492100985,57.66722379494766],[-126.84686668252296,57.66722679756408],[-126.84699030722297,57.66717554997059],[-126.8469761224528,57.66710388011341],[-126.84692917058156,57.667067178941636],[-126.8468438005202,57.667047542415716],[-126.8467615369543,57.666978550552194],[-126.84683562284373,57.66682222160338],[-126.84701275029704,57.66663271685896],[-126.84712196223477,57.66649970947107],[-126.8471637532099,57.666446742865254],[-126.84718581123356,57.6664017513473],[-126.84719758738792,57.66636579570036],[-126.84719834293561,57.66635233575955],[-126.84721271739926,57.66633878865899],[-126.84724558403146,57.666308304323316],[-126.8472599584615,57.66629475721836],[-126.84727330133606,57.66628233797299],[-126.8473012110331,57.666264219196464],[-126.84732187493596,57.66625063182829],[-126.84732326878705,57.666219227663426],[-126.84732595610332,57.66615193494467],[-126.84732838980939,57.66612052412671],[-126.8473508740694,57.666094591259395],[-126.84744221880467,57.66600654836266],[-126.8475551661964,57.66590042696171],[-126.84760010901084,57.66584744005995],[-126.84759980777916,57.66583398688897],[-126.8476542766298,57.66578542400892],[-126.84771599096351,57.66573232967612],[-126.84778619144168,57.66568366600042],[-126.84790365628614,57.66559209174577],[-126.84813031403355,57.66546057380294],[-126.84837311233673,57.66534801342107],[-126.84847501887369,57.6652643871885],[-126.84848419443529,57.66520602296797],[-126.84849117301262,57.66514318780123],[-126.84850014748955,57.665075854813324],[-126.848480374935,57.66503561627646],[-126.84843582212605,57.665012355431486],[-126.84841253521454,57.665002413366636],[-126.84842792472048,57.66494064556522],[-126.84853583453135,57.66484352574345],[-126.84859335324953,57.66479045792571],[-126.84861485465315,57.66476789493846],[-126.84864791985599,57.664746379069605],[-126.84869136657525,57.664720311603844],[-126.84870793684091,57.66471123530563],[-126.84874968923728,57.66470311880122],[-126.84880937009224,57.664699372351855],[-126.84883874506474,57.664700305245105],[-126.84883175194034,57.664668954883325],[-126.84881784113992,57.664609617449486],[-126.84881094860026,57.66458275147325],[-126.84882485334987,57.664501931794284],[-126.84879041679362,57.6643216302303],[-126.84868283229434,57.66419898178733],[-126.84864785751206,57.66413529438616],[-126.84866505041977,57.66401408844048],[-126.84863121823267,57.66386069320459],[-126.84858839556931,57.66377463099723],[-126.84858675264017,57.66374773137846],[-126.84859557475554,57.66372076467111],[-126.8486116671141,57.66369038758595],[-126.84864126850708,57.66365431761021],[-126.84868021966477,57.66361482391466],[-126.84870151927878,57.66358329217847],[-126.8486970249653,57.663569865920785],[-126.84868919344318,57.66354749101109],[-126.84864548099115,57.663515254843375],[-126.84862527246247,57.6635019293311],[-126.84862633842218,57.66345595100062],[-126.84860031210371,57.663370902404395],[-126.84854507843855,57.663338740071765],[-126.84851276942706,57.66334679597608],[-126.84848728666944,57.66333238299911],[-126.84847440710013,57.66331901048771],[-126.84843624583525,57.66330019374679],[-126.84834848567104,57.66326711856135],[-126.84826096851519,57.66324413306357],[-126.84823023669836,57.66322975367746],[-126.84821020430104,57.66322427576825],[-126.84814648537898,57.6631876826282],[-126.84805109558337,57.66314120107257],[-126.84800864159699,57.66311792669463],[-126.84801756443011,57.663095444420165],[-126.84803441217122,57.66305160751956],[-126.84804323451782,57.66302464086664],[-126.84804558374249,57.66298874564275],[-126.8480140001728,57.66288915626462],[-126.84792663014258,57.662779832969136],[-126.8478293984397,57.662697482917324],[-126.84775331424656,57.66262396740218],[-126.84772020234624,57.66259614809511],[-126.8477405879456,57.66257022867328],[-126.84777711625654,57.66251617448701],[-126.84779740134881,57.66248577068237],[-126.84780442871676,57.662472270614344],[-126.84782638323509,57.66242279478257],[-126.84788329666048,57.662342821142],[-126.84796185252786,57.662245890016635],[-126.84799752458173,57.66220081130376],[-126.84797196745791,57.662183034962254],[-126.84791809389792,57.66216431875896],[-126.8478885200458,57.66215441691457],[-126.84786829573977,57.662141091411364],[-126.84781316491657,57.66211341318491],[-126.84776545482748,57.66208905117164],[-126.84772935170615,57.6620220071408],[-126.84768848102553,57.66188211211586],[-126.84765785542453,57.661778031617395],[-126.84764384712135,57.66171420984904],[-126.84765461732277,57.66163341059441],[-126.8476585442738,57.66157508024586],[-126.84765071377801,57.661552705316836],[-126.84763124517458,57.66152591990277],[-126.84757236030103,57.6614713555507],[-126.84750258454399,57.661397799599044],[-126.84743403781904,57.66123902048559],[-126.84736199027574,57.66101747359666],[-126.84733768830809,57.66091559514125],[-126.84733306933761,57.660896563409025],[-126.84515364817867,57.65680672085013],[-126.8489706182728,57.65562179871177],[-126.85098780122547,57.654996641808914],[-126.85848264577614,57.64787542062842],[-126.85902834659046,57.64735610792356],[-126.87631240547397,57.64297531727868],[-126.87644781709214,57.64289593349463],[-126.87653657983726,57.64279219138084],[-126.8766914812175,57.64260391799047],[-126.87681653765222,57.642439388272095],[-126.87686999188685,57.64234933484404],[-126.87694520409644,57.64220419645938],[-126.87699627701049,57.64210182515194],[-126.87708824104058,57.64191060487082],[-126.87718134717757,57.64172386193557],[-126.8772560370544,57.64160115167635],[-126.87736171182227,57.64145917484721],[-126.87747175781587,57.64132501762161],[-126.87755244532103,57.64123478335513],[-126.87763903733506,57.641128812540146],[-126.87772132554521,57.64101726404046],[-126.87789289651245,57.64082551515525],[-126.87809982211999,57.64062231902669],[-126.87831825997026,57.640419046165086],[-126.8784423677655,57.6403038558933],[-126.87858026626498,57.64019642258525],[-126.87876800290076,57.64006959705122],[-126.87892470293052,57.63995979602511],[-126.87910408313961,57.63983414678366],[-126.87928992938893,57.6397163029861],[-126.87944399609192,57.63962894360192],[-126.87955988540007,57.63956650509309],[-126.87970877379749,57.639481422308045],[-126.87994225462594,57.63933971485839],[-126.88014997143303,57.63921611820979],[-126.88031647379415,57.63912306890092],[-126.88046336799397,57.63904248349549],[-126.88061890211219,57.63897305277758],[-126.88083927569217,57.63889870520409],[-126.8810431793117,57.638881650012955],[-126.8812567971574,57.63878716448115],[-126.881400358924,57.63874360103717],[-126.88157782666636,57.638671780574846],[-126.88174357107292,57.63859106812775],[-126.88191552133944,57.63850695039222],[-126.88204908809165,57.63843878568309],[-126.88230334650649,57.6382902081423],[-126.88244167068784,57.63820182906163],[-126.88259360291023,57.63811335904649],[-126.88291272129035,57.63796098387665],[-126.8833243372959,57.637776595708836],[-126.88349747630848,57.63769919540885],[-126.88355187852082,57.63756092006911],[-126.88362062096482,57.63745394352271],[-126.88370413186247,57.63735135322888],[-126.8837709284359,57.6372062676221],[-126.88377598638365,57.63706383696843],[-126.88372669207487,57.63688140500701],[-126.88369959777557,57.636618095860584],[-126.88381298614956,57.63644915312646],[-126.88389335319329,57.63630173442498],[-126.88410097492319,57.635996492437975],[-126.88428526903891,57.635813620624766],[-126.88447779056459,57.635758514208185],[-126.8845883620061,57.63569386447676],[-126.88467875291776,57.635617016057054],[-126.88480520012486,57.6354692886771],[-126.88497339301088,57.63526970515813],[-126.88520803232377,57.63508985898397],[-126.88553001263625,57.63492736743763],[-126.88566759251837,57.634852444908674],[-126.88587482985339,57.63471090298137],[-126.88600362356377,57.63448467251484],[-126.88623070690372,57.63416135743621],[-126.88657462116417,57.63390677538772],[-126.88672794514437,57.63374429014428],[-126.88671713234287,57.633595238766056],[-126.88676380369779,57.633486166372876],[-126.88688804084238,57.63342366562831],[-126.88688523875027,57.63325886334615],[-126.88676425337866,57.633057852856226],[-126.88670042296403,57.632970824739346],[-126.88657525430052,57.63285954068138],[-126.88655792235241,57.632700442037326],[-126.88666792605129,57.63252255014899],[-126.886827637513,57.632454205524695],[-126.88679954760899,57.63237254401763],[-126.88704680667983,57.6321959739661],[-126.8872609587622,57.63199271603343],[-126.8874064767453,57.6318101004416],[-126.88747395838688,57.63169528217118],[-126.88752048441266,57.63157948326836],[-126.88757324438328,57.63137282290253],[-126.88761430830134,57.63115839243904],[-126.88763015052353,57.631074193897554],[-126.88744559447763,57.631065341320465],[-126.88726417195184,57.631056467464965],[-126.88708035675387,57.63103415465641],[-126.88679760937268,57.630992322848826],[-126.88642080885784,57.63095896944425],[-126.88621174855211,57.63097718888231],[-126.8859392201829,57.630879225324506],[-126.88547733680817,57.630612102342404],[-126.88506623421091,57.63041079050961],[-126.88486597318314,57.63035719033042],[-126.8846533289455,57.63031152128286],[-126.88449007134044,57.63027224899239],[-126.8843098581862,57.63022524128002],[-126.88405055912908,57.63024491444313],[-126.88370033349375,57.63022819415564],[-126.88346557341458,57.63004251752308],[-126.88336293109157,57.62990753460013],[-126.88320702498912,57.629869332885704],[-126.88299391522158,57.62980348223961],[-126.88274441664717,57.62970423733028],[-126.88257968452014,57.62960218386117],[-126.88248062930124,57.62953108633266],[-126.88235954819275,57.629459014463386],[-126.88220702467851,57.62938603100833],[-126.88202016987113,57.62932336739299],[-126.88175415627155,57.629234321877455],[-126.88150031139617,57.62921807444908],[-126.88131364530632,57.62920810623853],[-126.88112816526456,57.62920373599485],[-126.88097304628259,57.62919916325029],[-126.88081237012646,57.62918117262054],[-126.88057235336221,57.62912895208277],[-126.88041601044063,57.62907168921176],[-126.88012494734707,57.6289861709103],[-126.87978982455196,57.6288975814175],[-126.87952224521403,57.628830966431],[-126.87931173641753,57.628786395984285],[-126.87913083606611,57.62875396187014],[-126.87898137826096,57.62872243976293],[-126.87877210828962,57.62868570881347],[-126.87849486594054,57.62865391397316],[-126.87824942997989,57.628638725716534],[-126.87789829604033,57.62862760236344],[-126.87771088063687,57.628629967548676],[-126.87754379512249,57.62865125839682],[-126.8773154090382,57.628694258974974],[-126.87702242364861,57.62875114226471],[-126.87685763918155,57.628781386783096],[-126.87664046798467,57.62881085713214],[-126.87641541304863,57.62881683364308],[-126.8762042598763,57.628744231923676],[-126.8759940664818,57.62871310883689],[-126.8757499266837,57.628753968598005],[-126.8754569671267,57.62876712046697],[-126.87530345297961,57.62874122719816],[-126.87497289487992,57.62866829254129],[-126.87464088517763,57.628577427081204],[-126.87447281890232,57.628511265026596],[-126.87429962905827,57.62844962153502],[-126.87400687357847,57.628425768454804],[-126.87358096063284,57.62839606703059],[-126.8732677361898,57.62839365078298],[-126.87307983437415,57.628420679548995],[-126.87291584550796,57.628439701644126],[-126.87273158977041,57.628443160145515],[-126.87248556656137,57.62844814712411],[-126.87210772257045,57.62841363893402],[-126.87165031789151,57.628380775298204],[-126.87132501572603,57.628353767136865],[-126.87092909629656,57.62830704122725],[-126.87073719311293,57.62829709263466],[-126.87050124723629,57.62828407000313],[-126.87018468473445,57.62827269864795],[-126.86981897300899,57.62826501347521],[-126.86950202498535,57.62823682467839],[-126.86936183031463,57.62819738231843],[-126.86918119845531,57.62817614515184],[-126.8689177786902,57.6281532092639],[-126.86860060098154,57.62811492882483],[-126.86840316347974,57.62809155853457],[-126.86823832597884,57.62807358004319],[-126.86801682082434,57.62805148840937],[-126.86776825977348,57.62803630127583],[-126.86750413668696,57.62802794309367],[-126.86731780045213,57.62798655881369],[-126.86715958371825,57.62784632234097],[-126.86687711281067,57.62790535655341],[-126.86656260564165,57.6279836608603],[-126.86637995428444,57.62801176689733],[-126.86621434443431,57.628006124396755],[-126.86603407397203,57.628000577695595],[-126.86584126289996,57.62799623407621],[-126.86558458166279,57.62799230823098],[-126.8653697201128,57.62798586580259],[-126.86517264364045,57.62797818545439],[-126.86486753598955,57.627963362798546],[-126.86463750244549,57.62793459396668],[-126.86438916395151,57.62788351994856],[-126.864221697933,57.62784200799928],[-126.86405297220539,57.62779153430026],[-126.86384148432008,57.62784112843228],[-126.86357338712915,57.6277957880672],[-126.86335548755436,57.627747877025016],[-126.863172008952,57.6277389837147],[-126.86292747068548,57.627717033929876],[-126.86257234893124,57.62766777448499],[-126.86238117504882,57.62764323317893],[-126.86221003376386,57.627624167098666],[-126.8620594114127,57.62758702751161],[-126.86191932889737,57.627552061504836],[-126.86175629396467,57.627521729802],[-126.86141903691065,57.627474593319846],[-126.86109448290141,57.627434100596005],[-126.8609452745587,57.62741264763869],[-126.86070877732672,57.62737494434549],[-126.86010894956597,57.62729587658803],[-126.85946048812922,57.627195819029104],[-126.8592076134523,57.627083097780606],[-126.85921402127681,57.62694963099492],[-126.85920626048423,57.62683868067247],[-126.85905946834986,57.62678469455717],[-126.85878619101084,57.62674162070712],[-126.85856928287987,57.62669033180872],[-126.85842469676528,57.62664193677984],[-126.85853589586377,57.62646518350609],[-126.85866047257116,57.62632422230585],[-126.8587626464105,57.62621143695455],[-126.8588967811123,57.6260760195789],[-126.85903046605713,57.62592154428325],[-126.85910276220564,57.62583025592925],[-126.85917175573182,57.625732261687766],[-126.85924362769738,57.62562303653058],[-126.85931770835812,57.625472311916525],[-126.85936550406313,57.625363243163534],[-126.85943282167553,57.62523722925976],[-126.85951238228692,57.62509768114421],[-126.85958161514415,57.624963806217096],[-126.85966333245976,57.62478051653475],[-126.85975004718132,57.624587103380925],[-126.85983005444238,57.62446661293093],[-126.85988882708374,57.62437989704063],[-126.8598898231265,57.624285708326184],[-126.85985903753681,57.624128938134824],[-126.85983714591266,57.623902594694506],[-126.85977110362329,57.62371465972874],[-126.85967132688246,57.623609914089215],[-126.85963898662845,57.62352266946517],[-126.85959261943128,57.62341757656753],[-126.85946672288907,57.623269273180654],[-126.85937162021514,57.623092739182475],[-126.85924453442955,57.62293771607691],[-126.85913241332715,57.62279605023482],[-126.85901032765102,57.62263090353606],[-126.85889177364953,57.62248255204192],[-126.85882515503572,57.62240786334107],[-126.85859620115697,57.62228601655898],[-126.85844809277609,57.62221970529884],[-126.85826867557256,57.62215808196092],[-126.8580622032086,57.62205739145216],[-126.85796925068702,57.62197614596393],[-126.8578183804122,57.62183360939037],[-126.8577190453574,57.621747920300216],[-126.8575221082751,57.621605682245175],[-126.85736353309176,57.621493467959006],[-126.85725279266318,57.62141233736502],[-126.85714611396077,57.62132557429027],[-126.85712864145253,57.62120123286671],[-126.85714171699304,57.62103857218525],[-126.85719918664542,57.62080162367511],[-126.8572308950197,57.62058278160843],[-126.85721662158461,57.62041469225256],[-126.85721009980638,57.620265613277795],[-126.85720993701531,57.62016582643653],[-126.85718128515455,57.6200101636929],[-126.85715432274122,57.61988252031362],[-126.857111687973,57.619664160386876],[-126.85704820491424,57.6193113902634],[-126.85699220274536,57.618918208149466],[-126.85701018065299,57.618601910183465],[-126.85709927210014,57.61823581807381],[-126.85718151395791,57.617843982597805],[-126.85718238438173,57.61751209888823],[-126.85711578238677,57.61725241010187],[-126.85707273961049,57.61715514393795],[-126.85671557996082,57.6171036407327],[-126.85648458886705,57.617167925026884],[-126.85634370589018,57.617234988940396],[-126.85616898442771,57.617194635768975],[-126.85606020097448,57.61710676467079],[-126.85583254577836,57.61699387522734],[-126.85555028435735,57.61692058108561],[-126.85537034768993,57.616881381841736],[-126.85510336965264,57.616788927342],[-126.85498069216713,57.61673478152231],[-126.85484113854088,57.61667513867109],[-126.85466843917779,57.61663140686584],[-126.85436161605261,57.61653696606785],[-126.85418964467851,57.61647865324359],[-126.8540028998338,57.61641595080078],[-126.85378236946752,57.61634001179463],[-126.85363137099614,57.616283805240776],[-126.85340814751638,57.616228064752136],[-126.85319993410711,57.61618792393134],[-126.85298950126324,57.616142191069954],[-126.85273729119886,57.616054121473525],[-126.85253273737487,57.61599041066678],[-126.85222294722908,57.6159498020941],[-126.85222948203032,57.61586791186617],[-126.85205283075625,57.61574123289619],[-126.85196308073292,57.615661084411116],[-126.85181503211258,57.6155487965195],[-126.85170997788295,57.61539362566547],[-126.85166659295702,57.615186482017926],[-126.85165385756125,57.61508565551939],[-126.8514069553702,57.615093973046825],[-126.85121822492484,57.61512882452113],[-126.85096319278975,57.61519437506347],[-126.85073240487036,57.61526761754659],[-126.8505455402178,57.61529236519684],[-126.85038786000193,57.61526422818446],[-126.85020411797186,57.6152407434136],[-126.85006438758134,57.615359368550195],[-126.84979395000839,57.6153454102632],[-126.84958284765176,57.61531649446208],[-126.84921778421163,57.61533117319497],[-126.84893660252811,57.61530494890947],[-126.84866720521238,57.615243891010216],[-126.84844633977711,57.615199339201645],[-126.84830080947098,57.61529333313532],[-126.8478616647808,57.615459846190504],[-126.84729823286528,57.615500458154166],[-126.84701621319759,57.61548320479513],[-126.84668316190803,57.61552570155292],[-126.8464227051647,57.61553633896707],[-126.84618696815731,57.61557596899161],[-126.84593906876262,57.615633615703544],[-126.84575963558062,57.61566279383688],[-126.84553306731145,57.61578533324],[-126.84514379810933,57.61584164009907],[-126.8449398523591,57.61585191331761],[-126.84496769546286,57.61573849362337],[-126.84488586045754,57.61563698694384],[-126.84470183929707,57.61564825367297],[-126.84444288366328,57.61563308986977],[-126.84422202092574,57.615588530988326],[-126.84400928387532,57.61553270781936],[-126.84370749887499,57.61547408901118],[-126.84338324116067,57.61544140059386],[-126.84319571425013,57.61543586952137],[-126.84302723829582,57.61544030754637],[-126.84279057603516,57.61543845282074],[-126.84262906249445,57.615426027884936],[-126.8423077397067,57.615336136706595],[-126.84206197356201,57.61525473317535],[-126.84190670167823,57.615192934624176],[-126.84176929287712,57.61513438577441],[-126.84160446759455,57.61506704168872],[-126.84143170619772,57.61506702015296],[-126.8410639449963,57.61500769407657],[-126.84075419192226,57.61496705856241],[-126.84052119801436,57.61494163118843],[-126.84029226748797,57.614910571561595],[-126.83996178623248,57.614880156783194],[-126.83970289203998,57.61491431631491],[-126.83953133553005,57.61492101186825],[-126.8393269631255,57.614911097489134],[-126.83902983238615,57.614873741429456],[-126.8387563446455,57.614863143587044],[-126.83854685422776,57.61485886649245],[-126.83834554015077,57.6148455675926],[-126.8381544962117,57.614823233651705],[-126.83789697338507,57.614777775525816],[-126.83773753314586,57.614764210306596],[-126.8375629191697,57.61477428629002],[-126.83733523033938,57.61479927384829],[-126.83690945894948,57.614815424281154],[-126.83668045877906,57.614828085778555],[-126.83644994178125,57.6148676653432],[-126.83617486398613,57.614927708003194],[-126.8359914618215,57.614966988762845],[-126.83581898955957,57.61497929129868],[-126.83564278268315,57.615012920068494],[-126.83544262285575,57.615004094263185],[-126.83514111027009,57.61495778754908],[-126.83493791879114,57.614906374434106],[-126.83468446315364,57.614855278369134],[-126.83447336712634,57.61482521730427],[-126.83418631539763,57.61476984754045],[-126.83396955840267,57.61472076096065],[-126.83383356403829,57.61467789188468],[-126.83364171286092,57.61457146638576],[-126.83344364787813,57.61446732220295],[-126.83325655295772,57.61438665383454],[-126.83294442818776,57.61438077233156],[-126.8327303108789,57.61416572930732],[-126.83265432500565,57.61404287576584],[-126.83268375914244,57.613952994276715],[-126.83253870869355,57.61392699898308],[-126.83242648806937,57.61382231274472],[-126.83235518341847,57.61372185362224],[-126.8323209518226,57.61364134268396],[-126.83221826850544,57.61354220226259],[-126.83210986793311,57.61342067374943],[-126.83200571228727,57.613302482050806],[-126.83194410984224,57.613214294909085],[-126.83190426036784,57.61311588005996],[-126.83173658593974,57.612965573090406],[-126.8315491308291,57.6128198751624],[-126.83128879440855,57.61264436292377],[-126.83102540555348,57.61256865615107],[-126.83068817894699,57.61246762527886],[-126.83032701049682,57.61242056150705],[-126.83002894381045,57.612434766520686],[-126.82986278627904,57.61244814286828],[-126.82957669158681,57.61243536292816],[-126.82921285884827,57.6124096156237],[-126.82887216125894,57.61238932826048],[-126.82865728862764,57.61237722095294],[-126.82839237516566,57.61237551767043],[-126.82813358762562,57.612365927090956],[-126.82796157536477,57.61235130775541],[-126.82781054748371,57.61233879919208],[-126.82763644194281,57.61232419254341],[-126.82735434024322,57.612302413219204],[-126.82709540670008,57.61228609433613],[-126.82694125515913,57.61227472552573],[-126.82676399388393,57.61225901627492],[-126.82641120638154,57.61221188944207],[-126.82602133507083,57.612144811832074],[-126.82573546880005,57.61209390144599],[-126.82541196888606,57.61204546783034],[-126.82510112846826,57.61200143920724],[-126.82492158055312,57.61197677219324],[-126.82465689597822,57.61193693929651],[-126.82450974085879,57.61190982725676],[-126.82425961131433,57.61176899502294],[-126.8239610896696,57.61161725200951],[-126.82362737095002,57.61148366680869],[-126.82337115381198,57.611400051952245],[-126.82318878605369,57.611341764284404],[-126.82304735488462,57.61128882748513],[-126.82290684079005,57.61123027884793],[-126.8227664655375,57.611177335185495],[-126.82252629311907,57.61115752707036],[-126.82230970081102,57.61116223816153],[-126.82211293937385,57.61116458317684],[-126.82195472849828,57.611158839828214],[-126.82176698288285,57.61114206793243],[-126.8215665001828,57.61106931512303],[-126.82137612117236,57.61097968129982],[-126.82119701173622,57.61092697667242],[-126.82097182262123,57.61087343679721],[-126.8207893715179,57.61081178281666],[-126.82059252117348,57.610713218521994],[-126.82044483425412,57.6105156836268],[-126.82037649984466,57.610260475217856],[-126.82028266244888,57.610133241314685],[-126.82006778109832,57.61011999902728],[-126.81976898124117,57.61014763985343],[-126.81958923880806,57.61016220874097],[-126.8194197415411,57.61011841174578],[-126.81926645142302,57.610048726613535],[-126.81913958747319,57.609991210698],[-126.81898322257202,57.6099249078891],[-126.81881536038847,57.609859797315394],[-126.81865398937848,57.609803615890094],[-126.81851798902268,57.609759610315166],[-126.81832866439164,57.609718177115916],[-126.81807668378569,57.60968385859206],[-126.81782660353926,57.60964055828258],[-126.81751999391238,57.60954827459708],[-126.81714977040349,57.609419384089634],[-126.81696656050052,57.60941827414107],[-126.8167321029527,57.60941972297609],[-126.816451687797,57.60942594003495],[-126.81608645847848,57.609431558953176],[-126.81574619740331,57.6094291744271],[-126.81558062807109,57.609421226533335],[-126.81541960725578,57.60943006827422],[-126.81525327223402,57.60943557901384],[-126.81506168881867,57.60943451806795],[-126.81485300433042,57.609417865558555],[-126.81454431518065,57.609374920361],[-126.81431931324886,57.609329216542875],[-126.81417407639739,57.6092931118107],[-126.8139807165447,57.60925842445737],[-126.81381254957854,57.60922694530337],[-126.81365802216463,57.60919650317456],[-126.81350386316201,57.60918399768361],[-126.81319139954068,57.60916013286102],[-126.81284955720625,57.60913308438688],[-126.8125436387953,57.60912151090793],[-126.8121969102619,57.60915951994841],[-126.81185253848238,57.609209846718905],[-126.81157837921988,57.609165561363916],[-126.81139768505115,57.609087065992576],[-126.81123252545481,57.60904883796599],[-126.81103212224343,57.60902764386247],[-126.8108718693411,57.60902302104765],[-126.81066907797738,57.60903659799941],[-126.81042981218269,57.609058246613756],[-126.81026777736585,57.609068209487205],[-126.81000457400897,57.60904739876457],[-126.80985458087221,57.60898440986834],[-126.8096211760411,57.608838963537735],[-126.80950903376703,57.608734258343425],[-126.80941532330532,57.60865971237235],[-126.8093269099565,57.60858849748345],[-126.80925732966926,57.608516046052145],[-126.80918723039723,57.6084200527532],[-126.8091095500671,57.60831177273122],[-126.8089903653157,57.60817123216562],[-126.80886803312922,57.608030710776454],[-126.80882250777647,57.607859447192716],[-126.8088444080466,57.607659741289254],[-126.80875884810035,57.60747638963015],[-126.80855925971613,57.607345310263305],[-126.80836038981846,57.60724786191874],[-126.80812124739332,57.607127114533405],[-126.8078985896304,57.606993932897915],[-126.80775772554244,57.60691631055237],[-126.80760005167079,57.60683654839513],[-126.80751308736687,57.60673393031045],[-126.80746390854485,57.6065873549871],[-126.80725966548616,57.60643387848107],[-126.80694291616862,57.60630575474461],[-126.80668826768635,57.60619406910721],[-126.80651671551294,57.60610093618418],[-126.80635066779747,57.60602010254094],[-126.8061796356017,57.60600096444601],[-126.80609884179471,57.605991366516236],[-126.80598554762541,57.60597972434803],[-126.80579294063381,57.605930445238464],[-126.80566925904702,57.60587289742255],[-126.80552316237885,57.60579530472412],[-126.80528579795657,57.605658845019065],[-126.80505228075,57.605555997105505],[-126.80480504868191,57.605447626370896],[-126.80448831589888,57.60531949686883],[-126.80420348175058,57.605214717478134],[-126.80398446357664,57.60515326344675],[-126.80377308942833,57.605106338002855],[-126.80354262780337,57.604850987570074],[-126.80335228765618,57.60461108956212],[-126.80327797684153,57.60451287683595],[-126.8033390834914,57.60443290123214],[-126.8034669409877,57.60429197580078],[-126.80352057015135,57.6042053184659],[-126.80354077400743,57.60412110670457],[-126.80355596480682,57.6040974694495],[-126.80360867413093,57.60401642361194],[-126.8036546762894,57.60391523720198],[-126.80367508615323,57.60379178269808],[-126.80371075251793,57.60354826861361],[-126.80379614467996,57.603231575146324],[-126.80393299736282,57.602824873934736],[-126.80405977928383,57.602436172929586],[-126.80416188602815,57.6021182566424],[-126.80394314850928,57.601970469981744],[-126.80363865104592,57.60172678273812],[-126.80336444921252,57.601480668350064],[-126.80318505669102,57.601312460098875],[-126.80307079029635,57.601204399772755],[-126.80291551440548,57.60108761905768],[-126.80266162933283,57.60091089327436],[-126.8022420157942,57.600666781080996],[-126.8014743460407,57.60024538988941],[-126.80109552615355,57.599999905709666],[-126.80057456660687,57.599663344859394],[-126.80000011062484,57.59922171504544],[-126.7999533119236,57.5991861205787],[-126.79960891918338,57.598984150105345],[-126.79941870189135,57.59894605962657],[-126.79922371718277,57.59893042130144],[-126.79876130225826,57.598888369898646],[-126.79827181640967,57.59880275442017],[-126.79772470134425,57.59881278526558],[-126.79705044525473,57.59879891479842],[-126.79659753091804,57.598760162088944],[-126.79647485889724,57.59874968970194],[-126.79621248349102,57.59871427187867],[-126.79602768282447,57.5986851133518],[-126.79585969253651,57.59870854873203],[-126.79546735740047,57.59881405937668],[-126.79527108187962,57.59873675817662],[-126.79508061540052,57.598636998174534],[-126.79494194837729,57.59856159225205],[-126.79482971519656,57.59849948134638],[-126.79472463425073,57.59842947909136],[-126.79459316755498,57.59834842363356],[-126.79447159697179,57.598289732121366],[-126.79427883266894,57.5982303472516],[-126.79403170262592,57.59812307813363],[-126.79388803401861,57.59805891299449],[-126.79372320376628,57.59798366303446],[-126.79350109596864,57.59787175796382],[-126.7933053446639,57.59776866373779],[-126.79317193125267,57.59769434569712],[-126.79304764592989,57.59760651862493],[-126.79288181139705,57.59748306308502],[-126.79272566131161,57.59737188220712],[-126.7926110613905,57.59729632960498],[-126.79249648535429,57.597221897944856],[-126.79248478776286,57.59706276102744],[-126.79235679778914,57.596847141499296],[-126.79205798274447,57.5966695447252],[-126.79186471674484,57.596535040719836],[-126.79182214575002,57.59645120763618],[-126.79174646833829,57.596335058818106],[-126.79167297765419,57.59622338157293],[-126.7916152374132,57.596113852297215],[-126.7915853653515,57.59598621726692],[-126.79158500092832,57.595868496060966],[-126.79159940188649,57.595756292290254],[-126.79160858624236,57.595645240954866],[-126.79161174182948,57.59559589035857],[-126.79161695312153,57.595444500551885],[-126.79162693460624,57.595321111551],[-126.79152074701274,57.5951468444536],[-126.79126913222348,57.59502390106569],[-126.791136106645,57.594967517701036],[-126.79079023490146,57.59484065304226],[-126.79097642978148,57.594786843439614],[-126.79129627449882,57.59471990037652],[-126.791429263052,57.59467425696284],[-126.79156539849987,57.59462859456401],[-126.79171179245422,57.59457390117018],[-126.79180975425872,57.59445446977141],[-126.79186623903703,57.59435322565658],[-126.7919607650057,57.59421923949902],[-126.79205122897953,57.594092004675],[-126.79211389649647,57.593986238726735],[-126.79217444772559,57.59387936427146],[-126.79224938861522,57.59376007061684],[-126.79234288054967,57.59362721161449],[-126.79252132097369,57.59345348085367],[-126.79254315112073,57.59329638574135],[-126.79244617817857,57.59316242665603],[-126.79238171730971,57.59308208882372],[-126.79231077658886,57.59289191494764],[-126.79227631425785,57.592794579620914],[-126.79217699351061,57.59264830160002],[-126.79214288964398,57.59256890286288],[-126.79215898208057,57.592437629293734],[-126.79222348971574,57.592219735253586],[-126.79219698479966,57.59200238693297],[-126.79221733937968,57.59182511985434],[-126.79236381588409,57.59172445730289],[-126.79256214937506,57.59165151281291],[-126.79275564789874,57.591548325422025],[-126.79256155474644,57.591473250218435],[-126.79208551417786,57.59132474686461],[-126.79153511289482,57.59117220265699],[-126.79105652012133,57.59100128757337],[-126.79059823206879,57.59095133564944],[-126.79006099882466,57.591028546418976],[-126.78960195400875,57.59099204960584],[-126.78934748274212,57.590881453164265],[-126.78919129536851,57.59081735834605],[-126.78883768149159,57.59071856480007],[-126.78850409492095,57.59062637782256],[-126.78821731679642,57.590572030527156],[-126.78801401039966,57.590556425712855],[-126.78785746414285,57.590524845397496],[-126.78759308183201,57.59038963906046],[-126.78730867634306,57.59024782452925],[-126.78706973139327,57.59012816197723],[-126.78691331838223,57.59005285421317],[-126.78668179216946,57.589988084048684],[-126.7862691512773,57.58991766443675],[-126.7859072446729,57.58987272863426],[-126.78560108151129,57.589790461867366],[-126.78524764238003,57.589649053511245],[-126.78494490141429,57.58952976639554],[-126.78477817286279,57.58946124447443],[-126.78467748240745,57.589399057160826],[-126.78454696066918,57.58931013891168],[-126.78432822303863,57.58920604793223],[-126.78405652478985,57.589069757075535],[-126.78386728994928,57.58897558078398],[-126.78374111821591,57.58889448414969],[-126.78363522738017,57.58878299561954],[-126.78355791495966,57.58868703385827],[-126.78341732654874,57.58856678163151],[-126.78317625564593,57.58839330899863],[-126.78300367153032,57.58829454819252],[-126.78286980606892,57.588246010204294],[-126.78268522535618,57.588174228065604],[-126.78253735982908,57.588106712876],[-126.78232695082686,57.58799920594349],[-126.78217515396048,57.58789359402801],[-126.78208041852545,57.58781455214053],[-126.78192359446791,57.587769512633685],[-126.78164971754317,57.587729650197204],[-126.78143024432549,57.58769058658562],[-126.78121550242487,57.58762682901055],[-126.78091649717294,57.58753554008129],[-126.78073215499896,57.587525417944846],[-126.78051973806114,57.58747285716648],[-126.78027411738488,57.58738237257219],[-126.7799650302774,57.58736065326378],[-126.7794845870423,57.5873489136855],[-126.77903047361549,57.58729553403381],[-126.77876352607015,57.58723656502122],[-126.77859748389324,57.58725099765336],[-126.7783897618794,57.5872230714261],[-126.77805244098012,57.587099488105665],[-126.77760021515026,57.58698442846812],[-126.77709757604316,57.586911146901684],[-126.77661587699698,57.58683774034478],[-126.77619549942575,57.58674491200615],[-126.77586644414295,57.58666724233882],[-126.77568468097493,57.58662906898362],[-126.7754316775184,57.5865868289003],[-126.77527014857172,57.58656647481708],[-126.77524429462704,57.58637602889712],[-126.77520726966686,57.58620246599228],[-126.77517206164354,57.58606701195765],[-126.7751127574051,57.58592945698892],[-126.77506377656537,57.58578511447616],[-126.77507408494324,57.58562360670396],[-126.77512456093493,57.58548316534923],[-126.77515999594112,57.58537420476765],[-126.7751278826694,57.58528694260672],[-126.77505363772207,57.58513490028557],[-126.77497317008678,57.584934684529756],[-126.77497046755941,57.58480240339911],[-126.7750396724597,57.5847078198949],[-126.77511972651357,57.58463223243475],[-126.77523197665585,57.58439164539706],[-126.77523157863072,57.584167415666776],[-126.7752122086413,57.58398702255729],[-126.77519792239589,57.58385144603781],[-126.77517484986895,57.583694619057965],[-126.77512527546229,57.58357270355239],[-126.77506270757453,57.58348001442656],[-126.77500641583772,57.583387288459654],[-126.77496672251246,57.58328773814836],[-126.77495192653414,57.583177951346016],[-126.77494540676112,57.583063631365924],[-126.77492431225814,57.582952760374646],[-126.77488659702676,57.58284759268442],[-126.77482621442046,57.582759375334156],[-126.77470450282097,57.58263900405384],[-126.77462179810608,57.58253297900616],[-126.77456137840545,57.5823920673435],[-126.77454221706614,57.582273336925304],[-126.77453286677569,57.582173608678666],[-126.77451954492436,57.58208511530696],[-126.77487303442183,57.58197877451225],[-126.77498908074094,57.58187270488841],[-126.77499690636904,57.58174372583276],[-126.77481889238642,57.58173467970337],[-126.77446513961954,57.58172554264798],[-126.77422752244979,57.58171796631978],[-126.77405049444609,57.58170554990543],[-126.77393970534155,57.58160753721286],[-126.77387153123374,57.58154739413299],[-126.77381203054604,57.58145132318245],[-126.77381270709867,57.5813302342487],[-126.7737788829717,57.581210468590136],[-126.77367189975588,57.58104292171437],[-126.77357752804902,57.58092911644196],[-126.77358229751704,57.580803518975635],[-126.77379393256992,57.5806666194466],[-126.77397689239314,57.58055903767516],[-126.77417206489447,57.580435687890066],[-126.77433217312047,57.58033608765995],[-126.77445428372945,57.580271465868705],[-126.77462715331221,57.58018300202573],[-126.77480339705535,57.58010572972666],[-126.77500984160798,57.580021553062366],[-126.77516148663864,57.57996909004551],[-126.77547127984877,57.579875336868966],[-126.77580854527055,57.57974442346933],[-126.77609778387823,57.579617154875656],[-126.77623873773183,57.579553541883485],[-126.77635574251774,57.579495675285976],[-126.77655680494011,57.57940480091165],[-126.77674485236041,57.579342031658335],[-126.77689764455137,57.57929516568225],[-126.77706284494086,57.57913835329747],[-126.77734058880908,57.57896181879165],[-126.77766620301746,57.57877266917266],[-126.77782030203798,57.57868767516626],[-126.77796991512817,57.57863858436554],[-126.77826810267372,57.578540408375225],[-126.77863375357657,57.5784171686208],[-126.77890192412012,57.578284412346854],[-126.7789854036943,57.57817292570796],[-126.7789826399382,57.57808885540494],[-126.77905915801766,57.57799534826544],[-126.77944376299368,57.57792917336668],[-126.78017154046277,57.5779192707921],[-126.7805908146791,57.577912308955014],[-126.78070479461239,57.57791051413693],[-126.78077694798282,57.577910087633136],[-126.78104647010068,57.57789391910681],[-126.7812783885922,57.57788021477554],[-126.78135009543074,57.57780691553585],[-126.78144995347256,57.57767851312741],[-126.78182377997733,57.577445343010716],[-126.78246859960122,57.57711526858486],[-126.78280192405191,57.57694736262949],[-126.78295065474317,57.57690724064916],[-126.78336066082541,57.5768061479477],[-126.78335004938572,57.5766974589404],[-126.78336493878766,57.57650677446503],[-126.78347186466257,57.576214640269775],[-126.78353332710809,57.576101039157315],[-126.78386589681219,57.57589725816288],[-126.78625996786052,57.57443449794297],[-126.79334181451459,57.57240098037057],[-126.80636841678023,57.570043900864114],[-126.81762182924628,57.56947242753179],[-126.82080484418918,57.56917463503016],[-126.82439699761647,57.5681207970846],[-126.82734408895477,57.56650584396916],[-126.82983320559656,57.5634676025849],[-126.8336142880468,57.561102825996336],[-126.8421916425966,57.5596940419288],[-126.85077735687578,57.55873310361509],[-126.85681832976317,57.558012375686936],[-126.86498017132989,57.557107075978074],[-126.87515159889115,57.555963732383205],[-126.88311541084217,57.55574924911296],[-126.89232177936435,57.554099785622434],[-126.90054249343568,57.55107514771666],[-126.90337542864232,57.54928885655163],[-126.90532754471354,57.54625286625853],[-126.9128011147506,57.54312496121678],[-126.91798924229049,57.542461130834454],[-126.92549809307573,57.54098258382283],[-126.93088366916814,57.53969798699769],[-126.9357591613292,57.53926885801605],[-126.94667279942993,57.53828512193315],[-126.95539764760376,57.539199876980156],[-126.96542563647941,57.54125259179268],[-126.97268056460304,57.54291243955368],[-126.97800743202565,57.54361751695681],[-126.99147011307203,57.54267394162047],[-127.00182704853863,57.54060453480857],[-127.00970456374209,57.53701059105032],[-127.01265170953396,57.53139118780228],[-127.01552601529545,57.52737778808587],[-127.02169311181473,57.52344649975712],[-127.0283757945937,57.519008634172025],[-127.03081938471725,57.51476508593862],[-127.03071838580301,57.51054142046647],[-127.0354622480274,57.50936517443633],[-127.04234052322143,57.508629323844495],[-127.05032553859948,57.50983060072434],[-127.05958082654729,57.51073418430188],[-127.06694870770525,57.51279149501147],[-127.06982671245207,57.51739628894098],[-127.07155583658565,57.52275483347207],[-127.0745118692942,57.53055202445347],[-127.0771145889834,57.53270138317298],[-127.07788110254118,57.53360999848867],[-127.08373974903405,57.534360277317866],[-127.09041751431147,57.533973385732374],[-127.09762445770087,57.533572784096],[-127.10462339821142,57.53335291793936],[-127.11066544304457,57.532961350660834],[-127.12667737270188,57.53238607143942],[-127.13845467236796,57.53206072493108],[-127.1434812213006,57.53356000468341],[-127.14556546735196,57.53594575375775],[-127.14497525559315,57.53771787536399],[-127.14206755541638,57.54002134063379],[-127.13889133643818,57.54421964129771],[-127.13847060999296,57.548277529209976],[-127.14010010990627,57.54963581452819],[-127.14356211379764,57.552000757602784],[-127.14366825342624,57.555767098683276],[-127.14313454203077,57.5596017828053],[-127.14135564921276,57.564523616898136],[-127.13886494549097,57.57048311174493],[-127.14450062033478,57.574497715379735],[-127.14696473254982,57.57522083481158],[-127.15101885523241,57.579634621024645],[-127.1553657826858,57.58308596518248],[-127.15900833713809,57.58790680136121],[-127.1605803306986,57.59086206798423],[-127.16460493629317,57.594208352709806],[-127.16823412671393,57.5984550356495],[-127.17344184160922,57.60206869752562],[-127.17644834708496,57.603127353992676],[-127.18307783973911,57.60438678658981],[-127.18860349941998,57.604112952952825],[-127.19422113811814,57.59978354194542],[-127.19797729182146,57.597291724033724],[-127.20334746531591,57.59548478124855],[-127.20924057517949,57.593322998578216],[-127.21593096093832,57.592974552742476],[-127.22072205031414,57.593280209572804],[-127.22725368491116,57.59116553524993],[-127.23101914923461,57.589085309913195],[-127.23545108664239,57.588012371606446],[-127.23971070554921,57.58820569131386],[-127.24777322257529,57.587681277283096],[-127.25406544333285,57.58482300315107],[-127.25788853737288,57.58119859271968],[-127.26230670416086,57.57966739957952],[-127.26624911188222,57.58003331856003],[-127.26954826246188,57.58011826028694],[-127.2771991635435,57.58004449821779],[-127.28065882920401,57.57853091977954],[-127.28573920010098,57.57780879705128],[-127.2870607148257,57.57932982615537],[-127.2893002725742,57.57954120812669],[-127.29800288153275,57.57911510087698],[-127.30340059171144,57.57838020662638],[-127.31113957762554,57.577747450994565],[-127.31648242253952,57.578609266569785],[-127.32032337603644,57.57908222968634],[-127.323235337901,57.57706168941749],[-127.32177898227852,57.57146988137731],[-127.32168426898049,57.56851066614314],[-127.32921219323899,57.56478423457523],[-127.33064773032255,57.56322690588386],[-127.32665717039708,57.558073362438094],[-127.32209110893206,57.55485406252958],[-127.32035430509185,57.55373224968631],[-127.31952989314087,57.547909973630546],[-127.32175914567921,57.54126781521603],[-127.32473058133806,57.53136212637584],[-127.32688108986014,57.52568949469381],[-127.32668913648418,57.519744432824034],[-127.32525659674558,57.51817118377924],[-127.32335712710581,57.515212296363295],[-127.32333405109125,57.51122099375495],[-127.32342388492033,57.50744384449677],[-127.31848625997226,57.50560968657789],[-127.31381979387183,57.505656275728455],[-127.30658784753167,57.501718729137195],[-127.30184543602711,57.49599821429798],[-127.30051800469526,57.49429813673572],[-127.29942847846857,57.493447808737756],[-127.29851077259951,57.49117859688963],[-127.30469919859966,57.489063454750195],[-127.3134834128346,57.48858152950506],[-127.3206045645928,57.485774648197136],[-127.32252538881083,57.479584368297274],[-127.31709896535719,57.47570114480017],[-127.31166262630224,57.47146801468316],[-127.30424354990421,57.464796743078864],[-127.30182424310057,57.45864981246057],[-127.30265809448603,57.45151102290218],[-127.30423885486641,57.444580129703624],[-127.30594209855715,57.441540637666826],[-127.31099878513788,57.43743631630496],[-127.32491399026097,57.435539005019486],[-127.33331131167024,57.43653945947875],[-127.34154265099268,57.43577414589991],[-127.35482437789993,57.43080367949389],[-127.36304168596244,57.42963353891296],[-127.37068236389408,57.42698897353644],[-127.37201421014947,57.42566559064852],[-127.37553018356707,57.42008593296626],[-127.37810598068816,57.414919661450796],[-127.38878397828788,57.40847515094049],[-127.38982812150158,57.408006696154374],[-127.39524257294026,57.405563581125904],[-127.40678336769125,57.402642257721716],[-127.41528844232333,57.40090066794012],[-127.4252276582951,57.39777071008003],[-127.43362876801868,57.395751005092535],[-127.43466796058573,57.395506471212876],[-127.44410172791332,57.396093799621106],[-127.4544213449213,57.394840948651535],[-127.46476515292852,57.39130884512785],[-127.46977420894265,57.38663381893392],[-127.46681441090709,57.38072037207297],[-127.46088574674089,57.37472334474147],[-127.45895157123165,57.37377618342823],[-127.45414292351799,57.36942572498322],[-127.45503889442125,57.36490442429749],[-127.45680116303654,57.36095650473165],[-127.45710622209509,57.357751225598086],[-127.46081689965219,57.352283836168795],[-127.47032426889281,57.346410751378855],[-127.48355012292598,57.33838733073836],[-127.48945481112614,57.335297973523225],[-127.49142463450585,57.33378230006058],[-127.49279492736989,57.33272746266905],[-127.4912263200801,57.32862638535919],[-127.49161045576093,57.328882113836734],[-127.4918552080376,57.32900153112799],[-127.4921142262029,57.3291140592187],[-127.49231526665216,57.32925863680309],[-127.49254976650536,57.32938153275893],[-127.49287964259749,57.32939235488741],[-127.49320548539947,57.32935277275317],[-127.49351363721149,57.329286484827456],[-127.49380975510935,57.32920463780211],[-127.49410154094797,57.32911835503529],[-127.49438899465505,57.329027636556724],[-127.49467329492794,57.32893583225925],[-127.4949596548773,57.328844003874316],[-127.49524931381099,57.32875662165277],[-127.49554426166489,57.3286714207027],[-127.49584113750886,57.328582833815894],[-127.4960086738831,57.32853495911323],[-127.49614126850231,57.32849757242624],[-127.49644828995469,57.32842904821416],[-127.49676264157648,57.32838846708215],[-127.49708830353484,57.32837129919062],[-127.49742271528434,57.328365241614904],[-127.49776069132993,57.3283703534741],[-127.49809904660734,57.32838555000681],[-127.49843252425204,57.32840864904345],[-127.4987590908148,57.32844079494459],[-127.49906471441555,57.3284956012195],[-127.49933232505248,57.32861474365582],[-127.4996015914556,57.328722655679584],[-127.4999116904058,57.32873256498113],[-127.50024528583437,57.32867942346148],[-127.50051199436709,57.32845776011207],[-127.50072372527653,57.32831856507505],[-127.50093127195672,57.328178296453245],[-127.50113357069633,57.328036966434915],[-127.5013241683705,57.32788904338397],[-127.50149901458171,57.32773681589286],[-127.50167490650519,57.32758457620537],[-127.50186337815703,57.327435555607096],[-127.50205186495833,57.32728653456596],[-127.50224033366788,57.327137513462425],[-127.50243621297184,57.32699177053613],[-127.50264477661503,57.32685148755792],[-127.50287144727648,57.32672220784669],[-127.50311723880682,57.32660391969213],[-127.50337573125381,57.326491091049256],[-127.50364269219023,57.3263826492419],[-127.50391391155308,57.3262764002735],[-127.50418515693615,57.32617127153512],[-127.50445320455911,57.32606393669586],[-127.50471381106942,57.32595220223938],[-127.50496379109782,57.3258349836464],[-127.50519364415288,57.32570790556758],[-127.50539586984404,57.32556544867345],[-127.50571889676134,57.325429453053424],[-127.5060514247293,57.32532361719464],[-127.50643640320177,57.325151033643],[-127.50686979307395,57.3250204946993],[-127.50720126725925,57.32491466798588],[-127.50743146327552,57.324849242317235],[-127.50875141293213,57.32414347661353],[-127.50901657481822,57.3240428920798],[-127.50924671366818,57.323923651197696],[-127.50941695667603,57.32376137615461],[-127.5095146069013,57.3235763930043],[-127.50945635381512,57.323443652682606],[-127.50938022574375,57.32325282097913],[-127.50915098360085,57.32310523093805],[-127.50899606783136,57.32294557482357],[-127.50888850564989,57.32277416307158],[-127.50880676973988,57.322599091007966],[-127.50875302563516,57.322422575968055],[-127.50876970535573,57.32223964569275],[-127.5087978459661,57.32205770474641],[-127.50872377266859,57.32189263449267],[-127.50851028953113,57.32174934678835],[-127.50832251649464,57.32159903665724],[-127.50816043674105,57.32144170440316],[-127.50800341035952,57.32128095062371],[-127.50784133327058,57.32112361801602],[-127.50766701537592,57.32097203136711],[-127.5074702033578,57.32082967171002],[-127.50721823692167,57.32071148833657],[-127.50693253709878,57.32060714506319],[-127.50666430989712,57.320498116182854],[-127.50646261222893,57.32036365889041],[-127.50631305271317,57.32020730199708],[-127.50618495950557,57.3200417298053],[-127.50607735730468,57.31986919575884],[-127.50598418023097,57.31969313280945],[-127.50590237584407,57.31951581820534],[-127.50582896916076,57.31934064938486],[-127.50577316627292,57.31916415743005],[-127.50573810755056,57.31898630632025],[-127.50571437659157,57.318806083046546],[-127.50569480006118,57.31862581211948],[-127.50567209976845,57.31844557706709],[-127.50563699799321,57.31826660545046],[-127.50559046433658,57.31808776504426],[-127.50553868596909,57.317907863747806],[-127.50548904593758,57.31772905901491],[-127.50544977497441,57.31755013531136],[-127.50542925847974,57.31737211751413],[-127.50543474085188,57.317194922500555],[-127.50548189600454,57.3170206125799],[-127.50556963238736,57.31684807913728],[-127.50567922892878,57.31667641585583],[-127.50579085728639,57.31650360808605],[-127.50588794579211,57.31633096713092],[-127.5059485180292,57.316154260941595],[-127.50597251367913,57.315972369179896],[-127.50598918728434,57.315789440403414],[-127.50602682349046,57.31561075535665],[-127.50611468675481,57.3154415834876],[-127.50626855509238,57.315286227877124],[-127.50646739351612,57.315138203307434],[-127.50668300585555,57.31499447013958],[-127.50688816027417,57.31484861456663],[-127.507053570313,57.31469648873288],[-127.50714888120172,57.31453171501102],[-127.50715951144568,57.31435334000573],[-127.50712936919184,57.3141687069287],[-127.50710237841672,57.31398515875679],[-127.50708804243251,57.313805949573016],[-127.50706741525964,57.31362569160415],[-127.50704269547523,57.313446601763424],[-127.5070179150903,57.31326639155671],[-127.50699734937118,57.313087254042344],[-127.5069829976024,57.31290804516783],[-127.50698007657013,57.31272870500437],[-127.50698966040797,57.31255034229672],[-127.50700958374688,57.31237073974522],[-127.5070367396188,57.312189933038646],[-127.50707115552251,57.31200904294077],[-127.50711499652455,57.311830286739735],[-127.507170267395,57.31165139921999],[-127.50723605397624,57.311475754123066],[-127.50731438861887,57.311302206992416],[-127.50742215007772,57.31113729034358],[-127.50760213956467,57.31098611760376],[-127.50773669194798,57.3108948843568],[-127.50781461748835,57.310842418763706],[-127.50801874288985,57.310697694518076],[-127.50826163069013,57.310561492929935],[-127.5084920291857,57.3104243134323],[-127.50862726635374,57.31027141176915],[-127.50864852065047,57.31009964147569],[-127.5086144426066,57.309920660014406],[-127.50855211755878,57.309736398021975],[-127.50853684090738,57.30969173037572],[-127.50848874650217,57.309552148063645],[-127.5084493813845,57.30937098528981],[-127.50846013688621,57.30919597264331],[-127.50855230480968,57.3090312345499],[-127.50871652026566,57.30887575745776],[-127.50891938042483,57.30872544101945],[-127.50912543406041,57.30857732969008],[-127.50931482945336,57.3084282886408],[-127.50943393583835,57.30834059467422],[-127.5095116600841,57.30828364608072],[-127.50971801907825,57.30814337788222],[-127.50993598292406,57.30800746009458],[-127.51015821454762,57.30787485605147],[-127.51038568851376,57.30774331234331],[-127.51061740254795,57.307613961567746],[-127.51085128015355,57.307486827620664],[-127.51108939783623,57.307361886567094],[-127.51133920893075,57.30724353682894],[-127.51160074119117,57.30713289910031],[-127.51185901587166,57.30701893514569],[-127.51211505172179,57.30690051215759],[-127.51224787491674,57.30673978714093],[-127.51234174209402,57.306566058206705],[-127.51240633312729,57.306387061401686],[-127.51244500433147,57.306209484562345],[-127.51246597298758,57.30603099079314],[-127.51247648730215,57.30585037543947],[-127.51248702927563,57.30567088087237],[-127.51250692318344,57.30549127848122],[-127.51254762501681,57.305312557225115],[-127.51260395188068,57.30513477685538],[-127.51265092631819,57.30495710434666],[-127.51266671076742,57.304778670497974],[-127.51266271720384,57.30459934370462],[-127.51264934414476,57.30441900403684],[-127.51263809190004,57.30423976101472],[-127.51263614707167,57.304059289591365],[-127.51264045891197,57.30387986711178],[-127.51263954392883,57.30369938386278],[-127.51262783893321,57.30353472019889],[-127.51262621566525,57.30352016489055],[-127.51257872616426,57.303343582100496],[-127.51248658925753,57.30316751423642],[-127.51241733629413,57.302992303520114],[-127.51242385837296,57.30281621895831],[-127.51246980098776,57.30263855872148],[-127.51253653312537,57.30246177979728],[-127.51260846347444,57.302284940901515],[-127.51267309039166,57.30210706514688],[-127.51270534996719,57.301925078420126],[-127.51274388214823,57.30174414043128],[-127.51285994227493,57.30158024535356],[-127.51302627310208,57.301426980978064],[-127.51320099598283,57.30127586171677],[-127.51338302007879,57.30112577904556],[-127.51357133216342,57.30097674462723],[-127.51376491360156,57.300829891269125],[-127.51396371995858,57.3006840983825],[-127.51416573609906,57.300540510287234],[-127.51437087318456,57.300396885839575],[-127.51457717174597,57.30025661088638],[-127.51478661905449,57.300117420312226],[-127.51497511855261,57.29999977186624],[-127.515004519087,57.299981494979455],[-127.51522876251643,57.29984885921691],[-127.51545829176344,57.299718404135874],[-127.51568993996065,57.29958904523419],[-127.51592158658943,57.299459685936775],[-127.51615215746088,57.29932921758651],[-127.51637748387856,57.29919768839429],[-127.51659752139554,57.29906397782535],[-127.51680804561185,57.29892589261736],[-127.51700905655831,57.29878343281751],[-127.51720685468932,57.298638767728164],[-127.51740253081665,57.29849300581832],[-127.51759499413677,57.29834503864596],[-127.51778218527735,57.29819489006216],[-127.51796517847374,57.29804366873158],[-127.51814082358686,57.29789029006679],[-127.51830910406771,57.297734754290396],[-127.51846899030647,57.297577073355214],[-127.51861845097844,57.29741839189453],[-127.51875842677711,57.29725645689888],[-127.51889417705459,57.29709232855576],[-127.51902977590508,57.2969248386077],[-127.51916005844303,57.29675404689417],[-127.51928511382252,57.296582194550325],[-127.5193996829162,57.296408221456865],[-127.51950384362655,57.29623324781596],[-127.51959345570738,57.29605844271061],[-127.51966538591505,57.295882721411274],[-127.51971867740096,57.29570833718933],[-127.51974917874901,57.29553533818653],[-127.5197496331733,57.295363808530986],[-127.51970129752381,57.29519284438875],[-127.51961044445122,57.29502349409102],[-127.51949050300536,57.294853359784575],[-127.51935393968179,57.29468341801247],[-127.51921219641774,57.29451353615295],[-127.5190776833769,57.29434244933861],[-127.51896386803693,57.29417000157453],[-127.51888219169346,57.2939960603744],[-127.51883571469125,57.293819469270744],[-127.51880689017962,57.293642673700475],[-127.51879249033503,57.29346346891762],[-127.5187894708308,57.29328301126243],[-127.51879372463205,57.29310246938148],[-127.51880211318178,57.29292187962952],[-127.51881051825771,57.29274128971089],[-127.5188137668839,57.29237914597485],[-127.51901487454153,57.29221426081516],[-127.51915268145713,57.29205010881802],[-127.51929471097102,57.291888149894746],[-127.51945141898085,57.2917293839266],[-127.51962395193434,57.29157716078285],[-127.51980275492632,57.29142598580367],[-127.5199867372186,57.29127475053676],[-127.52017397348894,57.291126840495856],[-127.52036747966525,57.2909799785506],[-127.52056631538048,57.29083641771994],[-127.52077041942657,57.29069503761767],[-127.5209819119482,57.29055693469253],[-127.52120288508394,57.29042208463223],[-127.52143338340383,57.29029160794075],[-127.52167131473949,57.29016552884902],[-127.52191667909949,57.290043847315275],[-127.5221674622045,57.28992770775373],[-127.5224330849653,57.28981924287302],[-127.52272758241632,57.289731742412194],[-127.52303870843572,57.28967095379317],[-127.52336001370077,57.289631346487184],[-127.523688097594,57.289605112451824],[-127.52402053890204,57.28958443229048],[-127.52435195039672,57.28956376325641],[-127.52468115189822,57.28953975586994],[-127.52501039770404,57.28951686820831],[-127.5253397325706,57.28949622082138],[-127.52566902234412,57.2894744520573],[-127.52599831174255,57.28945268246666],[-127.52632760076588,57.28943091204924],[-127.52665914397984,57.28941359883685],[-127.5269917777215,57.28939739315252],[-127.52732430500595,57.289378945718326],[-127.5276535926386,57.28935717197241],[-127.52797950612485,57.28932871029044],[-127.52829972913283,57.28928798233964],[-127.52860646758097,57.28922162617423],[-127.52890202056503,57.28913522043387],[-127.52919752737262,57.28904769348443],[-127.52950209715935,57.28897911834792],[-127.52982356934244,57.28894397742027],[-127.53015943716701,57.28893108912033],[-127.53049985961283,57.28892823643573],[-127.53083704243696,57.288922057478445],[-127.53116324752106,57.28890143192424],[-127.5314717424352,57.28885298562806],[-127.53176119444588,57.288770007847184],[-127.53203408265476,57.28866255938898],[-127.53228975329893,57.28853961658],[-127.53252862239667,57.28841238538559],[-127.53270740448126,57.28826231374113],[-127.53283755142584,57.28809038907816],[-127.53305476715266,57.28796677331242],[-127.53335594682012,57.28789150231211],[-127.53367295239707,57.28782277190076],[-127.53396969242523,57.28774082497609],[-127.5342717179608,57.28766105765655],[-127.53457690862903,57.287582373653606],[-127.53487996104005,57.287502592893006],[-127.53517666758422,57.28741952251779],[-127.5354637551818,57.287329837690194],[-127.53573599857961,57.28723247861392],[-127.53598911187314,57.28712413238193],[-127.53620184588564,57.28699271631772],[-127.53637739547646,57.286840435327235],[-127.53653274059381,57.28667605912663],[-127.53668388864313,57.28651061087458],[-127.53684780278361,57.28635286029697],[-127.53702534865283,57.286198312904204],[-127.53719660547694,57.28604271794852],[-127.53734482379622,57.2858817875974],[-127.53745229385929,57.28571460856891],[-127.5375386044098,57.285537588000786],[-127.53760081479138,57.28535524472039],[-127.5376214908112,57.28517226755381],[-127.53758540440353,57.28499780371667],[-127.53749661665648,57.284829563393245],[-127.53738401784405,57.2846627233732],[-127.53725283310554,57.284498343392926],[-127.53710504774195,57.284334157977334],[-127.53694594841473,57.284172347227745],[-127.53678069834042,57.284012850571365],[-127.53661348115607,57.28385561894224],[-127.53644535459291,57.283701761003584],[-127.53625570196695,57.283554881584145],[-127.5360486453293,57.2834138112175],[-127.53583447053593,57.28327618716617],[-127.53562429592924,57.283135152728754],[-127.53543462085455,57.28298715145213],[-127.5352651419112,57.2828254605688],[-127.53508863477434,57.28266945715397],[-127.53487572186309,57.2825374222691],[-127.53461034210737,57.28244299658157],[-127.53431357240673,57.28236799596503],[-127.53399762169651,57.28230667198161],[-127.5336746256385,57.28225103502296],[-127.5333545716636,57.282190878596246],[-127.53304660975031,57.28212161144102],[-127.53273960493107,57.28205009025371],[-127.53243055449218,57.28197971334719],[-127.53212449137504,57.28190593761152],[-127.53182655015131,57.28182758199744],[-127.5315417023825,57.28173898314092],[-127.53127399197466,57.28163785175684],[-127.53103434650674,57.28151172859025],[-127.53082613973639,57.28136730079661],[-127.53064979206793,57.28121465321053],[-127.5304909125223,57.28105731719455],[-127.53033819793139,57.28089878797735],[-127.53019059075943,57.28073795686147],[-127.53004709001381,57.28057595661405],[-127.5299056206446,57.28041281146937],[-127.52976727328605,57.28024962976941],[-127.52962991146302,57.280085315392704],[-127.52949358001308,57.279920988883624],[-127.52935519135934,57.27975668627193],[-127.52921580294142,57.27959351627748],[-127.52905444105495,57.279426118263146],[-127.52887319759036,57.279254467751954],[-127.52868465695153,57.27908178107958],[-127.52850129704166,57.27890903376189],[-127.52833570172498,57.278739442269476],[-127.52820142735025,57.278573969663526],[-127.52811111366874,57.27841807397465],[-127.52802774319534,57.278305818718756],[-127.52801012821462,57.27822867081179],[-127.52835051273172,57.27804533209734],[-127.52867429613659,57.2779664448679],[-127.529045084936,57.277894855882295],[-127.52940089992312,57.27781222994952],[-127.5296863168578,57.27770800346281],[-127.52993911514737,57.27759294649948],[-127.53018658192086,57.27747458810272],[-127.53043085346941,57.27735402441958],[-127.53067291403103,57.277230122911405],[-127.53091186907685,57.27710625722549],[-127.5311496870967,57.276980162258084],[-127.53138750354785,57.27685406687179],[-127.53162531843033,57.276727971066634],[-127.53186317664772,57.27660299537951],[-127.53210310810604,57.27647799501832],[-127.5323462317148,57.27635519901233],[-127.5325914900669,57.27623349864705],[-127.53284210522457,57.27611621940988],[-127.53310746692681,57.27600437248981],[-127.53338445471282,57.27589799430549],[-127.53366574193745,57.275794928398106],[-127.5339469660839,57.27569074155454],[-127.5342208454418,57.27558439795802],[-127.53448106584786,57.27547372946303],[-127.5347212515761,57.27535544763072],[-127.53493608917566,57.27522625162176],[-127.5351172348483,57.275085118240064],[-127.53525935871994,57.27492874688588],[-127.5353709115117,57.27476040187368],[-127.53545928166167,57.27458335990732],[-127.5355319191476,57.27440201799343],[-127.53559827032318,57.27421962865684],[-127.53566575651914,57.27403946812695],[-127.53573549678624,57.27386376540811],[-127.53578647460212,57.27368604043004],[-127.53581869022037,57.27350629321547],[-127.53583742878756,57.27332670396231],[-127.53584577751775,57.2731472364973],[-127.53583754594163,57.27296796337486],[-127.53581370167898,57.272787752194816],[-127.53578160432052,57.2726087588205],[-127.53573605924576,57.272431044123365],[-127.53566775599207,57.27225471719778],[-127.53560670601257,57.27207830527281],[-127.53560018826524,57.27181269069066],[-127.53566549744212,57.27173345124701],[-127.53594096803327,57.27161587476651],[-127.53609092351104,57.27144820036835],[-127.5363221955523,57.27131544635055],[-127.53654710736674,57.27117940332254],[-127.53674888281967,57.27103578382457],[-127.53691188158969,57.27088252929076],[-127.53704023638471,57.270719591398475],[-127.53715808257357,57.270553413486496],[-127.53726542026334,57.27038399558447],[-127.5373654430622,57.270213542368516],[-127.53746019703871,57.27004090879246],[-127.5375496822481,57.2698660948687],[-127.53763812112949,57.26969129317636],[-127.53772551369738,57.269516503717846],[-127.53781504153618,57.26934281021362],[-127.5379087007579,57.26916906817378],[-127.53800764354108,57.26899750617917],[-127.53811389913092,57.26882697933919],[-127.53822957029188,57.268658584006666],[-127.53836832888668,57.268496643868595],[-127.53853842700423,57.26833994089595],[-127.53872637280898,57.26818863339995],[-127.5389184823884,57.26803727673246],[-127.53909912825509,57.26788493338256],[-127.53925470044038,57.26772840011317],[-127.53937054370682,57.26756448602491],[-127.53944561305187,57.267393203509165],[-127.5394966552323,57.26721771904899],[-127.53952681880057,57.26703911673954],[-127.53954444623601,57.26685841963227],[-127.53955265739957,57.26667559107699],[-127.5395598681802,57.266493895356696],[-127.53956915313198,57.26631217528921],[-127.53958780885034,57.266131466190835],[-127.53960652610415,57.26595187744541],[-127.53962004935947,57.26577234975435],[-127.53963045289011,57.26559285874557],[-127.5396418565969,57.26541223495267],[-127.53965642488279,57.26523269504977],[-127.53967719895245,57.26505308224223],[-127.53970633118608,57.26487449228594],[-127.53974793658645,57.26469687681372],[-127.53979578062028,57.264519188029105],[-127.53984973976783,57.26433918526868],[-127.53991201149108,57.264159084803936],[-127.53998789144552,57.26398218753594],[-127.54008157279785,57.26380956520062],[-127.54019523629067,57.263643434225536],[-127.54033510397875,57.263483721401485],[-127.54050120415279,57.26333154735937],[-127.54069132708882,57.26318357482151],[-127.54089828339711,57.2630410092893],[-127.54111992057983,57.262902754947305],[-127.54134900427894,57.26276889683028],[-127.54158143158888,57.26264060422848],[-127.54182231759134,57.26251669587301],[-127.54207593389512,57.26239936354252],[-127.54233900901492,57.262285282517055],[-127.54260844020926,57.26217448927243],[-127.54287898896878,57.26206592440921],[-127.5431484170536,57.261955130073396],[-127.5434126216615,57.26184327565983],[-127.54366837648158,57.261728157110596],[-127.54391043097976,57.261607594247664],[-127.54413666596204,57.26148049107428],[-127.54434287169234,57.2613457762474],[-127.5445279743187,57.26120234147299],[-127.54469512184399,57.26105127077924],[-127.54484961465539,57.2608947438404],[-127.54499043625772,57.2607338937444],[-127.54512168935179,57.26056755109753],[-127.54524457168033,57.26039906495988],[-127.54536112405685,57.260228411282846],[-127.54547349890814,57.2600566857442],[-127.54558478222516,57.25988385194679],[-127.54569501930213,57.259711030411054],[-127.54580841977301,57.259539292518],[-127.54592507419552,57.25937087929256],[-127.54604797784863,57.25920351327244],[-127.54617395418062,57.259034989828834],[-127.54629361729664,57.25886429869148],[-127.54640188161808,57.25869374201507],[-127.54649034483484,57.25852117692094],[-127.54655180249728,57.25834780955937],[-127.54657677866223,57.25817038869649],[-127.54656745482852,57.2579911307064],[-127.54653420035054,57.25780991316838],[-127.54648438479231,57.25763001221668],[-127.54642948422658,57.25745241340669],[-127.54634776139795,57.25727849438528],[-127.54611729253021,57.25694041577685],[-127.5456659392701,57.25673274302964],[-127.54542446450516,57.256610034663595],[-127.54515978576924,57.25650329427545],[-127.54488296655848,57.25640454390028],[-127.54460210848475,57.25630808268606],[-127.54432629202073,57.25620819831132],[-127.54404731294068,57.25610722961223],[-127.54376126666652,57.25601082782445],[-127.54347622174595,57.2559132925898],[-127.5432003206458,57.25581116484645],[-127.54294375088902,57.25569984046489],[-127.54271365958024,57.25557587224603],[-127.54251407042669,57.25543697085628],[-127.5423369026902,57.25528771577297],[-127.54217703765086,57.25513040944759],[-127.54202731616272,57.25496737831773],[-127.54188169800763,57.25480317770498],[-127.54173503600555,57.254638989252705],[-127.5415813066183,57.25447936803153],[-127.54143065203289,57.25431858943541],[-127.5412851292151,57.2541566292707],[-127.54113965277834,57.25399578947858],[-127.54098695694704,57.25383615553937],[-127.54082201821264,57.25368114965649],[-127.54064678676573,57.25352850675556],[-127.54046747135855,57.253377032730484],[-127.54028301037599,57.25322674004881],[-127.540092465629,57.25307988180764],[-127.53989677537699,57.25293420486151],[-127.53969298959818,57.25279310699583],[-127.53948202997927,57.25265433525197],[-127.53926398674413,57.2525201306206],[-127.5390408147059,57.25238710696655],[-127.53881354234248,57.252255252180646],[-127.53858533324767,57.25212565012093],[-127.53835603560822,57.251994939438134],[-127.53812979636947,57.251863071427096],[-127.53790663210802,57.251730045909376],[-127.5376906446529,57.251594693702614],[-127.53748072732975,57.2514559067921],[-127.53727695833634,57.25131480533148],[-127.53707620263013,57.25117142614189],[-127.53687850523357,57.25102688975056],[-127.5366838827172,57.25088119597694],[-127.53649238007237,57.25073546534794],[-127.53630181728137,57.25058748136755],[-127.53611228436172,57.25043948506544],[-127.53592379788861,57.250291476251604],[-127.53573640283615,57.25014457544275],[-127.53554994764737,57.24999542130108],[-127.53536556726208,57.24984624260548],[-127.53518524505924,57.24969477403748],[-127.53500902598705,57.24954213612669],[-127.53483793838181,57.249388316838385],[-127.53467199878405,57.24923331599877],[-127.53450706052956,57.24907718221261],[-127.53434310703437,57.248919915678435],[-127.53418428488405,57.24876146782608],[-127.53403471224749,57.24860066939883],[-127.53389749065386,57.24843748410252],[-127.53377776650068,57.24827073066659],[-127.53367759626268,57.24810038505531],[-127.5335928332135,57.24792649587075],[-127.53352043710804,57.24775021977912],[-127.53345736290137,57.247573834528396],[-127.53339941911445,57.247396268171094],[-127.53336311810818,57.24721508530652],[-127.53339380046486,57.24702302885615],[-127.53333550318318,57.24686228223941],[-127.53309237141004,57.24674741993826],[-127.53276472237897,57.24667166165448],[-127.5324447022058,57.24663056540051],[-127.53211610802798,57.2466086262847],[-127.53178263705851,57.246594590638175],[-127.53145007664507,57.246577180392286],[-127.5311251813764,57.246543985197945],[-127.53080980061833,57.246489378326146],[-127.53050128168542,57.2464246012024],[-127.5302348968017,57.24635036276598],[-127.5298745038111,57.24625928550782],[-127.52964596131696,57.24622384001924],[-127.52922448523243,57.246238851674526],[-127.52890666339708,57.24620108430798],[-127.5285994172623,57.246116109316596],[-127.52833871918219,57.24600256455533],[-127.52823168950111,57.24584126375402],[-127.52820676358827,57.2456588262048],[-127.5283047950993,57.24549064823577],[-127.5284569338301,57.245327443862266],[-127.52864304827825,57.245209805071035],[-127.52888744540915,57.24504552322641],[-127.52906013338347,57.24490337786807],[-127.52906099152004,57.24471727641025],[-127.52892282160386,57.24455521891369],[-127.52871798654925,57.244411876081024],[-127.52847528571107,57.244281306292784],[-127.52820757692226,57.24417344857248],[-127.52791602239633,57.24409165229236],[-127.52759919079774,57.24402584469618],[-127.52727062118342,57.24397810975279],[-127.5269438574593,57.243949410470535],[-127.52662389472961,57.243960988215335],[-127.52631295061063,57.24404308501918],[-127.52606243611623,57.24415810779479],[-127.52586729428441,57.244309478914694],[-127.52563579173231,57.24443324758159],[-127.52533435744898,57.24451971535493],[-127.52501225420725,57.24455597672418],[-127.52468508418161,57.24454297092172],[-127.52435475321839,57.24450309635829],[-127.5240372812446,57.24444737688692],[-127.52373568064142,57.24437353549435],[-127.52344188261843,57.24428727131877],[-127.52314714690739,57.24420325947235],[-127.5228426550892,57.24413505485891],[-127.52251468936953,57.24407609071673],[-127.52217698359463,57.24403293340307],[-127.52185864604417,57.244033270294715],[-127.52158253184702,57.244104861696954],[-127.52133452135573,57.24423105646558],[-127.52094030188601,57.24438361163442],[-127.52080543581542,57.24446028694859],[-127.5204992207952,57.244531104572445],[-127.52018299965091,57.244585222185826],[-127.51985917401718,57.24463045905096],[-127.51953423036012,57.24467346602257],[-127.51921684493793,57.24472423170164],[-127.5189147265508,57.244793877021635],[-127.51862566830742,57.24487906459183],[-127.51834430102612,57.244975372634734],[-127.51807164148532,57.245081668384145],[-127.51780955166227,57.24519344619724],[-127.51755909297187,57.2453106938388],[-127.51733947855956,57.24547354581757],[-127.51715374339028,57.245653941404846],[-127.51698317758824,57.24571981600738],[-127.51684679431949,57.24557566196915],[-127.51669561893273,57.24537226459622],[-127.5164478673751,57.24524397338295],[-127.51614094394262,57.245192596764376],[-127.5157897274754,57.24527961865041],[-127.51550006845724,57.24529754446979],[-127.51543736809066,57.24515477841923],[-127.51543425904234,57.2449451821005],[-127.51545199007259,57.24476449137704],[-127.51547701279887,57.2445848373182],[-127.51550827107663,57.24440511111318],[-127.51554682085781,57.244226421563454],[-127.51559261765442,57.244047648148204],[-127.51564473850249,57.243871043596],[-127.51570513440001,57.243694343260955],[-127.51578951093333,57.24352072841404],[-127.5158937217766,57.24335024700315],[-127.51600310590085,57.24317970562964],[-127.51610834306746,57.24300921218964],[-127.51621672488325,57.242839803292114],[-127.51632719529594,57.24267037013078],[-127.51643553077123,57.242499840584664],[-127.51653869118721,57.24232937089548],[-127.51665009804596,57.2421576845977],[-127.51676669453543,57.241985938103454],[-127.51687286434053,57.24181319127531],[-127.51694998451154,57.24163965988513],[-127.51698148344205,57.24146665699972],[-127.51695337968316,57.24128089232716],[-127.51686317842812,57.24109808910084],[-127.51671074076016,57.24094066931323],[-127.51648923133277,57.24081992215701],[-127.51620225182627,57.24072123224387],[-127.51588199554568,57.24064646849159],[-127.51556361195259,57.24059298176416],[-127.51523131269201,57.240554228624426],[-127.51488727020727,57.24053354689986],[-127.51455039468982,57.24053632288288],[-127.51424286913101,57.24057351032963],[-127.51397585518795,57.24066515881825],[-127.51373320970235,57.240795760885554],[-127.51349604673699,57.24093414629554],[-127.51325095390182,57.24105580755308],[-127.51300794898538,57.241177444219915],[-127.51276073583647,57.24129800802278],[-127.51250825856174,57.24141639010973],[-127.51225591258994,57.24153813325895],[-127.51199708056456,57.2416532246642],[-127.51172505677891,57.2417494104366],[-127.51141209669247,57.241806832301826],[-127.51106713926542,57.241815297600034],[-127.51076145570981,57.24176837870094],[-127.51050179646504,57.2416525457454],[-127.51024205033347,57.24153447125867],[-127.5099591831798,57.241434599280495],[-127.50968550464327,57.241331257707834],[-127.50945559091343,57.2412072326759],[-127.509305167771,57.241047539333664],[-127.50918529213963,57.24087404150365],[-127.50902269936272,57.240721214304486],[-127.50875731992264,57.240617775293764],[-127.50844920699987,57.240535006471774],[-127.50820929113179,57.24042006283135],[-127.5080639176193,57.240256947027945],[-127.50795447502509,57.24008444913122],[-127.50787394812019,57.239909376145654],[-127.50782736681879,57.23972718611407],[-127.50788085483681,57.23955841699503],[-127.50814059726925,57.239439960343155],[-127.50844111821294,57.239356906057665],[-127.5085926867669,57.23920382199658],[-127.50860634605841,57.23902430128475],[-127.50865537485794,57.23884773612504],[-127.50874599097057,57.2386740548231],[-127.50880210486348,57.238492923920404],[-127.50871455202909,57.23832353772669],[-127.50845043899133,57.238225688995904],[-127.50810904038107,57.23821841156394],[-127.50777299206429,57.23821555571031],[-127.50746694400279,57.23815854465171],[-127.50718319679635,57.238062040501624],[-127.50692073750413,57.237952959541964],[-127.5066814899754,57.23782791670905],[-127.50641888479812,57.23771547342052],[-127.50617567140881,57.23759495942662],[-127.50601288407755,57.23743652632494],[-127.50597068051444,57.23725989085631],[-127.50595123268572,57.23708187264761],[-127.50593998750963,57.236901518079364],[-127.50593184313456,57.236721127870986],[-127.50592059815585,57.23654077335158],[-127.50590417997977,57.236360478359856],[-127.50589906492871,57.23617781135043],[-127.50589602254425,57.23599512052756],[-127.50588368925807,57.23581365761202],[-127.50584870637168,57.23563581828487],[-127.50577978235577,57.23546509544798],[-127.50566138156364,57.23530166771689],[-127.50549457664016,57.23514664364297],[-127.50529692157652,57.23499757918166],[-127.50508596442987,57.23485315144416],[-127.50487215614774,57.234715482268406],[-127.50462680603604,57.234592748483436],[-127.50436821454936,57.23447577149993],[-127.50412908518021,57.234352965359896],[-127.50394922382716,57.2342081786904],[-127.50385422001709,57.23403327069138],[-127.50378811660799,57.23385466765118],[-127.5037603026256,57.23367450379387],[-127.50370563467412,57.23349689043504],[-127.50350950729647,57.23336013725249],[-127.5032003159626,57.23330091102744],[-127.50287286938713,57.23325198277639],[-127.50256245940851,57.23318828500669],[-127.50225409552156,57.23312344202359],[-127.50194562814639,57.23305635749016],[-127.50163920692215,57.23298812776269],[-127.50133471078887,57.23291651221832],[-127.50103428937554,57.23284260723745],[-127.50073773378931,57.232761931192776],[-127.50044623705014,57.23267783347738],[-127.5001566383339,57.23258922933421],[-127.49986911339077,57.23250060081285],[-127.49958056185505,57.23241198344083],[-127.49929001044929,57.23232563038153],[-127.4989984324349,57.232239288453435],[-127.49870794411359,57.232154054433245],[-127.49841536809697,57.232068843684814],[-127.49812388173893,57.23198474084439],[-127.49783226509697,57.23189727583304],[-127.49753875277648,57.23181431592188],[-127.49723636262584,57.23174266701511],[-127.49692503401955,57.23168120872997],[-127.49660873625106,57.231625411579415],[-127.49628857407191,57.23157638390838],[-127.49596667415122,57.23153634340334],[-127.49563918740557,57.231512060083126],[-127.49530694964083,57.231499040314446],[-127.4949747121021,57.23148601970287],[-127.49464816679401,57.23145948114688],[-127.49431695216472,57.231419542969896],[-127.49398728570019,57.23136613418571],[-127.49370000289727,57.23128309475102],[-127.49348575234178,57.23115886521297],[-127.4933231157755,57.2310026583393],[-127.4931858248314,57.23083158908808],[-127.49304663763134,57.230665025390174],[-127.49291366862725,57.230498390664735],[-127.4927929598738,57.23032713199793],[-127.49266210915951,57.23016159393823],[-127.49249962786014,57.23000874750095],[-127.49229008018797,57.22987213155469],[-127.4920406132081,57.22974830138767],[-127.4917628783696,57.22964385003333],[-127.4914704845777,57.22956198527073],[-127.49116531247783,57.2294982015431],[-127.49084814424067,57.22944576380709],[-127.49052502189211,57.229400119149126],[-127.49019797392108,57.229360123424236],[-127.48987199809659,57.22932123569476],[-127.4895491832296,57.22928343219963],[-127.48922348689493,57.22925126572686],[-127.48889583303901,57.22922248373271],[-127.48856828341525,57.22919594175043],[-127.48824067409663,57.22916827862787],[-127.48791406610799,57.22913948230448],[-127.48758737150699,57.229108444146625],[-127.4872607209781,57.2290785256845],[-127.4869340709598,57.22904860640811],[-127.48660742145218,57.229018686317396],[-127.48628064191475,57.22898540388099],[-127.48595292211785,57.228954373318544],[-127.48562476735849,57.228939040938855],[-127.48528958491892,57.228956296601176],[-127.48495090979415,57.22899040608469],[-127.48462094240845,57.22900872187168],[-127.48431001904572,57.22898310173093],[-127.48400787668356,57.22891702517426],[-127.48371415655244,57.22882731139848],[-127.48343429202087,57.228720624917244],[-127.48317373274493,57.228603630098426],[-127.48293573588862,57.228480774172574],[-127.48271294322169,57.228348777602456],[-127.48250431035233,57.228207652296646],[-127.48230893964919,57.228060771498036],[-127.4821247856662,57.22790927942935],[-127.4819529794894,57.22775540533734],[-127.48181095270266,57.22759446793136],[-127.48169241832508,57.22742429647007],[-127.48157907368886,57.22725406619464],[-127.48144832534304,57.22708963783399],[-127.48127868443595,57.22693798052311],[-127.48105374761016,57.226803763715935],[-127.48081352321539,57.226676445508375],[-127.48060603750095,57.22653754656575],[-127.48045073381039,57.226381242133925],[-127.48031382031539,57.22621800357008],[-127.48019123932868,57.22605011881898],[-127.4800799176175,57.22587874367194],[-127.47997690178681,57.225707274550444],[-127.47988625938542,57.2255345444846],[-127.47982438327074,57.225354763168205],[-127.47977178034685,57.22517375601696],[-127.4797068756403,57.2249962509455],[-127.47960920889415,57.224829205220075],[-127.47945710256515,57.224675105793075],[-127.47924963261896,57.22453620491548],[-127.4790103861536,57.22440663080242],[-127.47876095445926,57.224281655348854],[-127.47851881136444,57.22415771811473],[-127.47827245589187,57.22403158604342],[-127.47801797060843,57.2239100293346],[-127.47775270498185,57.22380428783751],[-127.47747177330636,57.223722263610995],[-127.4771536374819,57.22369670853497],[-127.47680986339857,57.223705071882236],[-127.47647381518327,57.22369877421464],[-127.47614455194295,57.22368006820095],[-127.47581514284535,57.22365800001824],[-127.47548769309613,57.223632545933995],[-127.47516204008109,57.223600344808666],[-127.474837345539,57.223565890087606],[-127.47451260841852,57.223530314052404],[-127.47418882986302,57.22349248443125],[-127.47386503537179,57.223454654197035],[-127.47354025696416,57.22341795524304],[-127.47321552230389,57.223382375994134],[-127.47288786106532,57.22335131286244],[-127.47256114183575,57.22331799632868],[-127.47224322151006,57.223271128072874],[-127.47195384542006,57.22318470322331],[-127.47166447063653,57.223098277739666],[-127.47133681308802,57.22306721073233],[-127.47101022681221,57.22303725186577],[-127.4707119107446,57.222961013762735],[-127.47043342784177,57.22286101130345],[-127.47018324818038,57.222742754449506],[-127.46997469205087,57.22260160979041],[-127.46981318898882,57.222444242517284],[-127.4697711259469,57.22226647694666],[-127.4697630426105,57.222082724841236],[-127.46966141198548,57.22191908013506],[-127.46944478984719,57.22178363033174],[-127.46921469384037,57.2216483314575],[-127.4690531119219,57.22148872234306],[-127.46889266155307,57.22133134234851],[-127.4686428405539,57.22122204676614],[-127.46834118599872,57.22113911509099],[-127.46806077962239,57.22104249249794],[-127.4678360956314,57.22091273563177],[-127.46763674413796,57.22076812144667],[-127.46743230881914,57.22062580597566],[-127.46722278969484,57.22048578919422],[-127.46703371583152,57.220338816985],[-127.46671079723137,57.22002519606041],[-127.4672552658159,57.21990026799013],[-127.46756255527568,57.21983292603901],[-127.46784979687195,57.2197837440627],[-127.46816881828217,57.21975214078368],[-127.46852196792715,57.21969212900441],[-127.46884370043347,57.21965040473026],[-127.46915442844764,57.21959198833387],[-127.46945410860333,57.21951575938826],[-127.46974620059936,57.2194306470405],[-127.47003284550127,57.21933886927305],[-127.4703184448755,57.21924710261531],[-127.47060613118245,57.21915531187431],[-127.47088841325741,57.219057976278],[-127.4711516609096,57.21895076512158],[-127.47139531423298,57.21881911193665],[-127.47158161282778,57.21859730299808],[-127.47148407350234,57.218459396939416],[-127.47129279369969,57.21838980418033],[-127.47131538681288,57.21824942637784],[-127.47136688645313,57.21813338536747],[-127.47150236609698,57.21801864204925],[-127.47143244055638,57.2176820103131],[-127.47143154354616,57.21747015333653],[-127.4716105698998,57.21743675253404],[-127.47189569400594,57.217332656825135],[-127.47225659154581,57.21728599949669],[-127.47258329813921,57.21723972591481],[-127.47291472417287,57.21720797126002],[-127.47324833405918,57.21717955414491],[-127.47357219817584,57.217140036015586],[-127.473874439601,57.217077219818634],[-127.47415074209252,57.21698667036376],[-127.4744139663698,57.216879452817224],[-127.47466644275279,57.21676226694004],[-127.47491348790214,57.21663841584291],[-127.47515840012461,57.21651346732722],[-127.4754055284394,57.216391856331576],[-127.47565272498794,57.21627248607364],[-127.475896734548,57.216150909306805],[-127.47613755710776,57.21602712604958],[-127.47647430530957,57.21583836362581],[-127.47662345371484,57.21578287318378],[-127.47686534231488,57.21566019753033],[-127.47711145888128,57.215539715678666],[-127.47736714688372,57.21542585123629],[-127.4776398977593,57.21532412450197],[-127.47790624307041,57.215217985576636],[-127.47815551232107,57.21509858711639],[-127.47840057718382,57.214978114685955],[-127.47864138427379,57.21485432693336],[-127.47887691625093,57.21472835637],[-127.4791050150764,57.21459798543915],[-127.47933101415781,57.214466516854664],[-127.47955695181565,57.21433392758046],[-127.4797797024003,57.2141991319746],[-127.47999615045117,57.21406216529136],[-127.48020206648407,57.213920833427885],[-127.48039439500857,57.213776291993966],[-127.4805007497384,57.21363272304724],[-127.48059362278684,57.213435499086046],[-127.48072108386205,57.21327487631756],[-127.48084818060498,57.21310528964387],[-127.4809004195626,57.21292870317006],[-127.48094742797593,57.21275105490498],[-127.4809902932221,57.212573453536564],[-127.48102999941044,57.2123947669422],[-127.48106765045286,57.212216103618594],[-127.48110425719037,57.21203745212569],[-127.48113981963768,57.21185881246429],[-127.48117642569699,57.21168016100025],[-127.48121403200831,57.211500377235545],[-127.48125482332046,57.2113227993992],[-127.48129866955387,57.21114406599718],[-127.48135293168858,57.21096633566266],[-127.48141757644362,57.21078960875741],[-127.48148533577579,57.210612846571735],[-127.48151140937345,57.21042983046248],[-127.48159497034884,57.210259615253],[-127.48162017270468,57.21008109297529],[-127.48161846552651,57.20990287544134],[-127.4815959863294,57.2097237721673],[-127.48156415186789,57.20954365386687],[-127.48152926255534,57.20936469116448],[-127.48150157106993,57.20918452599214],[-127.4814894053517,57.20900418503998],[-127.48148656826353,57.2088237384822],[-127.48148575900467,57.208642148002376],[-127.481476708532,57.20846177185153],[-127.481450148495,57.208283835961446],[-127.48138448086547,57.2081130688134],[-127.48120349807057,57.20796042201233],[-127.48103885233111,57.20780198513507],[-127.48089768722221,57.207634314431914],[-127.48076990705957,57.20746425015067],[-127.48066786574073,57.20726362791674],[-127.48082697469647,57.20714524477578],[-127.48090008957145,57.20697290666151],[-127.48093043558846,57.20679320577169],[-127.48095141000994,57.20661248999844],[-127.48097451516772,57.206432871107744],[-127.48098931944575,57.20625334620354],[-127.48099378508307,57.206073938358095],[-127.48097959507167,57.20589474172528],[-127.48096847663736,57.205714389363216],[-127.48097811148774,57.20553492307558],[-127.48099504627679,57.205356495154156],[-127.48101813390457,57.20517687661607],[-127.48104123788343,57.204997257911],[-127.48106739644737,57.20481648366053],[-127.48086484621435,57.2044275540082],[-127.48076192788672,57.20425720882422],[-127.48068574240911,57.20408207709265],[-127.48066328755661,57.203902974269475],[-127.48066566699279,57.203723590384755],[-127.48067841736082,57.203544089139704],[-127.48069115104245,57.203364588105714],[-127.48069250316912,57.20318521592042],[-127.48066797796243,57.203006136660655],[-127.48059490994441,57.20283096979088],[-127.48052184259471,57.20265580290378],[-127.48046628297392,57.20247819590761],[-127.4804386447789,57.202299151949575],[-127.48045863525536,57.202119568990035],[-127.48049734928884,57.201942016101725],[-127.48052873688333,57.201762304184655],[-127.48053630202844,57.20158286190914],[-127.48053351329376,57.20140353684423],[-127.48053072458521,57.20122421180378],[-127.48054138744534,57.20104473453966],[-127.48058626889227,57.200865990970605],[-127.48066342767757,57.20069136596404],[-127.48071351996026,57.20051368438281],[-127.48072936680863,57.20033414850683],[-127.48073900142602,57.200154682974976],[-127.48074958896534,57.19999986818834],[-127.4807517502625,57.19997518221239],[-127.48076345535945,57.19979569328718],[-127.48077516034674,57.1996162043857],[-127.48078686522432,57.199436715507616],[-127.48079752638687,57.19925723846756],[-127.48080820401456,57.19907776126367],[-127.48081472372483,57.198898331154275],[-127.48082954240488,57.1987188071145],[-127.48087337619647,57.19854007557899],[-127.48091934006275,57.1983624409081],[-127.48096425992667,57.198184818061],[-127.48100292431637,57.198006145070885],[-127.48103123550452,57.19782758931916],[-127.48104500919432,57.19764807721796],[-127.48098272289127,57.19745709563467],[-127.48100189412109,57.1973100307636],[-127.48105273876955,57.197232107735665],[-127.48163977402979,57.19719967678602],[-127.48196846866917,57.19718250126884],[-127.48229829328343,57.197167554068315],[-127.48262805770561,57.197151485739816],[-127.482956534588,57.197128705319145],[-127.48328147967464,57.19709475436097],[-127.48359847468492,57.19704295714837],[-127.4839033781675,57.196973360722275],[-127.48419849392337,57.196891543904705],[-127.48448717976316,57.19680419450893],[-127.48477479388279,57.1967157356567],[-127.48506666143554,57.196630590797646],[-127.48536717383912,57.196554314913385],[-127.4856720702195,57.19648471439084],[-127.48597918294767,57.1964184508974],[-127.48628623457304,57.19635106639214],[-127.48659005722197,57.19628035492828],[-127.4868895203248,57.19620408742787],[-127.4871846672798,57.19612338440357],[-127.48747756847929,57.19603822233845],[-127.48776516994344,57.195949756963174],[-127.48804848201782,57.19585797681799],[-127.48832636367234,57.195759531985544],[-127.48859574439622,57.19565557842402],[-127.48885339611194,57.195542790003934],[-127.48910041623188,57.195423396254604],[-127.48938986193048,57.195329301373135],[-127.4895538856515,57.195179464518354],[-127.48991789033451,57.195085640258235],[-127.49066223946942,57.19526436184396],[-127.49035243726131,57.19502127752445],[-127.49029378941168,57.19484483151195],[-127.49025059114103,57.19466596751243],[-127.4902322648846,57.194487941106466],[-127.49033857003815,57.194318583369714],[-127.49046978924498,57.19415118358563],[-127.49057086464735,57.19398076430466],[-127.49058864574735,57.193798963576725],[-127.49067424405995,57.19362984161669],[-127.49083483646581,57.19347219549093],[-127.49101006717358,57.19331774521337],[-127.49119584953819,57.19316877926958],[-127.49135334069413,57.19301116787688],[-127.49149720743132,57.192849227777856],[-127.49163584533267,57.192686226189565],[-127.49176818396451,57.19252105436472],[-127.49189322360789,57.19235484470327],[-127.49199847209194,57.192185497795286],[-127.49207970187675,57.1920108199761],[-127.49216195775875,57.19183613041355],[-127.49224735359749,57.191662525959806],[-127.49232651092028,57.19148787167914],[-127.49237344005168,57.19131022222263],[-127.49238818507804,57.19113069810236],[-127.49239466576927,57.19095126831518],[-127.49240424338896,57.190771803209245],[-127.49242188335246,57.19058664124938],[-127.4926357814434,57.19046873974826],[-127.49292082239626,57.1903690822896],[-127.49309943312959,57.19022243754702],[-127.49320035545759,57.19004865531925],[-127.49325874355948,57.18987311677643],[-127.49330045569434,57.18969440573236],[-127.49334112410396,57.1895157066138],[-127.49339011621775,57.189338033419055],[-127.49344013464292,57.189160348503805],[-127.49348912584324,57.18898267531995],[-127.49352358239886,57.1888040471671],[-127.493518663752,57.18862474776961],[-127.49351423501386,57.18856426585015],[-127.49350485782193,57.18850944531112],[-127.49346005479032,57.188449424508065],[-127.49351343939857,57.18843760508356],[-127.49353990828577,57.18839918972417],[-127.49350595757436,57.18837827901468],[-127.49347963192751,57.18834046663184],[-127.49348041379302,57.18828104618712],[-127.49338379752986,57.188060197179645],[-127.49353930259518,57.18795865468979],[-127.49377555963292,57.187830407232475],[-127.4940193305723,57.18770879932473],[-127.49423675247012,57.18757516136002],[-127.49439730484484,57.18741751158592],[-127.4945547154871,57.18725877655544],[-127.49474285308078,57.18714452896047],[-127.49502051713887,57.18701580590044],[-127.49529502860813,57.18691290063468],[-127.49554207705836,57.18679573625768],[-127.49572992388141,57.18664786140885],[-127.49591247142642,57.18649668400071],[-127.49611404075083,57.18635537743975],[-127.4962704132333,57.18619665221917],[-127.49642992478468,57.18603901186293],[-127.4965842081954,57.185880310183215],[-127.49674269046652,57.185722681233955],[-127.49691267890653,57.18556828328683],[-127.49708477964424,57.185414981907385],[-127.49729159294779,57.18527585543359],[-127.49747839891293,57.185127989999955],[-127.49763269087263,57.18496928700321],[-127.49779430536583,57.18481274189074],[-127.49798843092823,57.18466703382687],[-127.49819309601168,57.18452568859296],[-127.49839460274225,57.184383258259956],[-127.4985866540235,57.18423757307512],[-127.49887314192027,57.18415021649617],[-127.49911682943528,57.18402747895896],[-127.49919304589639,57.1838584595641],[-127.49917042872313,57.18367712174517],[-127.49914478648665,57.183498060573804],[-127.49908522367843,57.18314003321107],[-127.49950543013817,57.18287178690089],[-127.49974492416041,57.18274797531993],[-127.49994748622485,57.182606651476476],[-127.50013108489043,57.18245657714184],[-127.50035050883912,57.18232290598864],[-127.5005730879811,57.18219031922018],[-127.50078087046592,57.18205005513076],[-127.50100448966128,57.181917455681855],[-127.50128348301152,57.18182457490818],[-127.50158077813278,57.18174941884474],[-127.50183825422639,57.18163548557668],[-127.50209895678795,57.18152487763287],[-127.50240483418231,57.18145746785096],[-127.5027260330324,57.181411179660444],[-127.50305582910146,57.18139954188693],[-127.50338565344416,57.18141480622089],[-127.50371318853558,57.18142449120729],[-127.50384066657571,57.18150709771353],[-127.50429057484777,57.18157478505136],[-127.50462401259166,57.18157655307235],[-127.50493635612801,57.18162115991552],[-127.50523463852797,57.1817029199262],[-127.50551571778827,57.18179496610438],[-127.5057556382919,57.181919993870046],[-127.50603879009387,57.18201201510287],[-127.5063379282737,57.18208927894155],[-127.5066251340284,57.18217901029874],[-127.50693117444743,57.18224722551124],[-127.50724801814813,57.182300742854295],[-127.50756944081218,57.182312730693894],[-127.50790209146017,57.18229432201741],[-127.50822333478531,57.182249140757555],[-127.50855031679077,57.18221846512281],[-127.5088786825824,57.1822225228265],[-127.50920314568133,57.1822591329463],[-127.50952661040569,57.18229687476825],[-127.50985577166759,57.18232109834639],[-127.51017438066418,57.18236674146256],[-127.51043043604942,57.182480364829885],[-127.51073758350466,57.18252389706358],[-127.51105330329588,57.18257517632569],[-127.51132553935142,57.18267852224426],[-127.51154307082327,57.18281276633906],[-127.51175044847443,57.18295161139928],[-127.51202667938557,57.183051546829454],[-127.51229184591234,57.18315945649299],[-127.51251852879875,57.18328910933979],[-127.51272900893844,57.18342791707919],[-127.5129344571607,57.18357014566079],[-127.51314084502685,57.183710121128954],[-127.51334719014709,57.183848975823494],[-127.5135556508228,57.183988926710335],[-127.51376720945356,57.18412884143122],[-127.51397562891312,57.184267671215245],[-127.51418409416142,57.18440762114459],[-127.51439251664742,57.18454645029359],[-127.51460202813278,57.184686387503994],[-127.51481045364898,57.18482521601622],[-127.51501892497906,57.18496516467384],[-127.51522735352182,57.18510399255098],[-127.51543785344165,57.18524279612106],[-127.51565038043799,57.18538045491107],[-127.51587001227911,57.18551466808975],[-127.51609271443499,57.1856477243543],[-127.51631038470578,57.18578420155509],[-127.5165662593687,57.18589221088448],[-127.51680261270876,57.18600380912186],[-127.51692536694523,57.186096547259076],[-127.51702894359578,57.186176056051394],[-127.51718415834652,57.18622582019789],[-127.5172918252268,57.18632994286448],[-127.51739720088713,57.18642848715353],[-127.51756398756572,57.18648260050401],[-127.5177262914445,57.18647623283602],[-127.51775242982583,57.186404186818045],[-127.51763885649318,57.18633376241311],[-127.51746147706457,57.186247263728426],[-127.51725591829167,57.18618126940607],[-127.51718596020909,57.18606213648529],[-127.5172411451043,57.185965092055596],[-127.51735575730704,57.18587856778695],[-127.51753302688579,57.18575320300147],[-127.51774210395737,57.185620742910736],[-127.51796019158418,57.18548033103384],[-127.51817535867254,57.1853444366104],[-127.51833373334894,57.18518678175983],[-127.51849630739348,57.1850301989303],[-127.51868405697653,57.18488229131699],[-127.5188801898509,57.184736528006304],[-127.5190837350456,57.184595162194576],[-127.51931997470312,57.18446910985027],[-127.51951739627941,57.18433005646659],[-127.51967163818814,57.18417244803225],[-127.51992690151715,57.184056262269536],[-127.5201642227079,57.18393131678563],[-127.5203930409085,57.18380086485305],[-127.52059343469948,57.183658412336925],[-127.52077793968063,57.18350717650159],[-127.52097310334509,57.18336366325648],[-127.52124130967863,57.18326077605184],[-127.52154483053812,57.18318662273675],[-127.52185609213613,57.183124709357784],[-127.5221660425138,57.1830560846311],[-127.52241719588591,57.182941062756214],[-127.52251927635277,57.182773969485446],[-127.52253483097584,57.18259219008096],[-127.5227321421657,57.182450891125185],[-127.5229873847493,57.182334699539894],[-127.52325864676034,57.18223065156018],[-127.52351079002025,57.18211449504586],[-127.52377886368681,57.182008241168184],[-127.52406418979272,57.18191972125503],[-127.52432984157828,57.18188299502925],[-127.5245456090414,57.181711211736896],[-127.52469130161398,57.181548092136865],[-127.5248833444457,57.18140460937607],[-127.52515455013034,57.18129943708007],[-127.52543227547933,57.18120203498194],[-127.52571211366552,57.18110572860533],[-127.52598551845136,57.18100389182596],[-127.52622918836876,57.18088334497914],[-127.52643264135857,57.18074084768647],[-127.52664359602007,57.180604988338544],[-127.52689166841097,57.180491114691975],[-127.52707467360374,57.18043292844102],[-127.52720787341737,57.18034617833878],[-127.52757754216034,57.1801143013431],[-127.52783500275939,57.180002558138334],[-127.52811689572064,57.17990622251723],[-127.52841071442414,57.179823198578404],[-127.52874753067246,57.179754243891125],[-127.52896722856671,57.17968217416669],[-127.5288007651958,57.17950588557696],[-127.52863979835061,57.17933737938201],[-127.52851715565176,57.17916954593513],[-127.52841407682823,57.17899924173671],[-127.52834497540874,57.178824056379895],[-127.52829338430311,57.17864642436953],[-127.52821600609865,57.17847133576183],[-127.52809341270498,57.17830462248027],[-127.5279810784049,57.178135547260574],[-127.52790886804513,57.17796039816583],[-127.52785107175441,57.177782838656604],[-127.52778709577203,57.17760647234575],[-127.5277005071209,57.17743373320915],[-127.52759231596325,57.17726460939987],[-127.52746864149599,57.17709678741975],[-127.52733372859515,57.17693245958017],[-127.52718653438974,57.17677163802935],[-127.5270086576737,57.17662014253639],[-127.5268154488018,57.17647330980006],[-127.52661309946068,57.176331067446114],[-127.5265407485803,57.176229903797584],[-127.52698602091273,57.17623367119038],[-127.5273036320763,57.17617727510537],[-127.5275676042972,57.17607330319391],[-127.5277952181011,57.175940610369885],[-127.52800498109883,57.175801399960974],[-127.5282031014014,57.17565559948169],[-127.5284106132873,57.17551193084088],[-127.52852626892223,57.17534915845226],[-127.52856782895411,57.175171558790915],[-127.52857709920438,57.174988731853055],[-127.52856990438184,57.17480833941678],[-127.52851210978176,57.1746307806219],[-127.5284358097292,57.17445680112305],[-127.52836464713222,57.17428164057189],[-127.52830369743447,57.17410299769347],[-127.52825313922106,57.173925354300245],[-127.52824189700128,57.17374725127251],[-127.52833749650779,57.173574624951286],[-127.52839354002428,57.173396856228585],[-127.52841535997729,57.17321724572649],[-127.52838135601343,57.17303940894401],[-127.52830710078766,57.17286428474272],[-127.52819783230831,57.17269405376219],[-127.52802974956849,57.1723462760075],[-127.52852910021673,57.17227990526647],[-127.52870175833546,57.17206714372152],[-127.52889826263404,57.171933691912656],[-127.52923104923006,57.171869266583464],[-127.52954418622564,57.17180507033269],[-127.52985852734918,57.171745343110366],[-127.53015887312887,57.17167232731651],[-127.53042487570345,57.17156832576719],[-127.53067472376748,57.17144881926177],[-127.53093207238673,57.17133595024299],[-127.5312075522495,57.171236319953444],[-127.53149266326993,57.17114442302006],[-127.5317864357323,57.17106251268398],[-127.53208454081022,57.17098503477544],[-127.53234288018773,57.17087103035031],[-127.53244847334445,57.17071621945993],[-127.53269102706264,57.17056989127379],[-127.53295263639355,57.17046033116198],[-127.53322594602251,57.170358480062],[-127.53351000287606,57.170266591021964],[-127.53381237087427,57.17019242200219],[-127.53410176878683,57.17010495286131],[-127.53445892176016,57.17000323600837],[-127.53461869130093,57.16988365835025],[-127.53482187526966,57.16973666741354],[-127.53504323586247,57.16960403529849],[-127.53531909650805,57.16951448046324],[-127.53562809440665,57.16945143899872],[-127.53594879333617,57.16939610608375],[-127.53626414750137,57.16933635131362],[-127.53656982262156,57.16926774179963],[-127.53687113405226,57.16919357801977],[-127.53716272122541,57.16910943916667],[-127.537431737264,57.169004266717046],[-127.53772850247172,57.16892006567343],[-127.5380576487541,57.16892067666665],[-127.53837433579987,57.16897187716551],[-127.53865540125484,57.16906385121662],[-127.53892770571953,57.16916937949488],[-127.53920804612764,57.16926920774058],[-127.53950603546876,57.169344166155796],[-127.53983248627445,57.1693291108697],[-127.54015538216164,57.169277104588794],[-127.54046167079936,57.16919838991461],[-127.54068853322462,57.169074650956084],[-127.54084149387263,57.1689147907845],[-127.54096296840304,57.16874409194812],[-127.54105538644961,57.16857149366689],[-127.54113215973669,57.168395716893755],[-127.54123401325057,57.16822637016778],[-127.54141008683877,57.16807520457831],[-127.5415986626524,57.167926133229884],[-127.54175161492303,57.16776627213117],[-127.54188055652244,57.16760108926852],[-127.54199172289348,57.16743163212119],[-127.54209766273327,57.16726111558733],[-127.54221094110679,57.16709275432454],[-127.54232835620729,57.16692434415563],[-127.54244581536051,57.16675705434078],[-127.5425652972439,57.16658861958492],[-127.54270366812747,57.16642668758482],[-127.54289331858796,57.16627872268311],[-127.54311565742603,57.166146065129915],[-127.5433274251239,57.166007927177674],[-127.54343970955217,57.1659438268472],[-127.54384851211516,57.16578990930299],[-127.54405816128414,57.165650674205494],[-127.54431147456093,57.16554230997334],[-127.54458364769378,57.165439327194214],[-127.54478704080985,57.16529904387884],[-127.5449892994671,57.165156531715844],[-127.54522539588227,57.16503155467024],[-127.54551581662243,57.16494516870914],[-127.54589339108938,57.16489025931725],[-127.54599015422792,57.16474899343367],[-127.546192495894,57.164608720338066],[-127.54657195698833,57.16452352043984],[-127.5467684330144,57.16444272725689],[-127.54705564403157,57.16435413386834],[-127.54733423362046,57.16425667415817],[-127.54750532286207,57.16416272879],[-127.54790903768291,57.16416579438268],[-127.54817187394373,57.16406291459917],[-127.5484249101192,57.16394781972486],[-127.54856137232333,57.163841952554804],[-127.5486266502513,57.16379297730686],[-127.5485866679095,57.163750854238316],[-127.54854348383788,57.163706527159185],[-127.54854202233349,57.16361910882691],[-127.54857293382331,57.16353915367857],[-127.54861411456216,57.16345683489494],[-127.54869770792075,57.16342557809028],[-127.54889041092397,57.16343114104988],[-127.54902973605698,57.16344742517233],[-127.54933875180367,57.163514383046206],[-127.54966596435533,57.1635194710665],[-127.55003455044566,57.16352406754321],[-127.55032709415566,57.16354189578785],[-127.55064394765719,57.16349553961338],[-127.55091729662094,57.163397013360054],[-127.55123278824658,57.16334282510922],[-127.55154631756302,57.163290901327514],[-127.55186784909442,57.16325793826014],[-127.55219578563398,57.16328094685979],[-127.55252286146161,57.163308448750904],[-127.55285070805766,57.16332921484439],[-127.55317780131601,57.163356714900914],[-127.55350726330666,57.1633662504447],[-127.55383918439463,57.163360062320365],[-127.55416671418527,57.16337298209311],[-127.55448912858323,57.16341286521764],[-127.5548188185919,57.16342799961237],[-127.55514927875845,57.1634363981818],[-127.55547981344296,57.163447036974844],[-127.55581075432515,57.163441976487256],[-127.55614025973784,57.16342684350299],[-127.5564471713607,57.16339068030646],[-127.55675708226134,57.16332645634291],[-127.55708065356069,57.163241891367036],[-127.55738197326595,57.163195703827014],[-127.55756948765861,57.163149751085534],[-127.55802179284281,57.163126423801856],[-127.55834295307062,57.16308448137142],[-127.55860875749828,57.162979302922274],[-127.55887871428037,57.16287407439041],[-127.55911473481595,57.16274907267064],[-127.55933381126123,57.16261418394906],[-127.55954229867172,57.16247381636309],[-127.55971202227143,57.162321580411316],[-127.5598449597824,57.162155210700355],[-127.56002313747571,57.162007357326594],[-127.56029090720618,57.16189990999059],[-127.56056737674557,57.16180244695487],[-127.56074643918313,57.16165121909818],[-127.56084913947227,57.161479604644875],[-127.56099375719947,57.16132094106779],[-127.56118861177106,57.16117624979825],[-127.5613855334029,57.16103153353771],[-127.56158245354834,57.160886816996154],[-127.56177730369247,57.16074212489596],[-127.56196896658464,57.16059522865741],[-127.56214167540422,57.160440711923215],[-127.56218344535723,57.16027206679539],[-127.56238340738031,57.160126191709146],[-127.56260348330517,57.15999128550501],[-127.56286922547957,57.1598849780119],[-127.56307675051083,57.15974685819639],[-127.56333942441009,57.159641707405044],[-127.56359880314652,57.159532111620365],[-127.56376004106713,57.15937548805286],[-127.56389613657873,57.15921131840598],[-127.56398119722212,57.1590387917054],[-127.56416973226412,57.15889192966151],[-127.56425679711305,57.15871825783659],[-127.56439181652553,57.15855297961219],[-127.56461835585294,57.15842471842469],[-127.56488176800686,57.1583128298119],[-127.56514203859619,57.15819985731862],[-127.5653539117747,57.158067286625595],[-127.56547003445297,57.157895507839086],[-127.56569665779612,57.157769485691006],[-127.5659675843517,57.15766423063534],[-127.5662525861252,57.15757449988319],[-127.56655158835527,57.1574980522965],[-127.5667917039976,57.157372987423045],[-127.56709200423063,57.157303248841146],[-127.56741639973679,57.15726572867679],[-127.56774307544399,57.15723378519765],[-127.56806756136871,57.157198504261856],[-127.56838420351072,57.15714874403906],[-127.5686897239867,57.15708006005208],[-127.56899308336239,57.15700915934897],[-127.56929639575911,57.15693713752485],[-127.56960195878149,57.15686957183664],[-127.57021870289529,57.156745580489094],[-127.57080030923942,57.15669823470808],[-127.57113007215867,57.15669090695101],[-127.5714602776068,57.156694782758265],[-127.57179086710636,57.15670762088914],[-127.57211969356565,57.156728326205695],[-127.57244538026524,57.156747947512926],[-127.57276431108679,57.15670375389994],[-127.57309592697229,57.15671657638093],[-127.57340937249722,57.156664600414544],[-127.57373726445276,57.15663711108902],[-127.57404830166061,57.156577315772076],[-127.57435705614297,57.15651194234667],[-127.57467930700915,57.156473308878205],[-127.57500842292315,57.15645028547784],[-127.57533718652843,57.15644408008962],[-127.57566328684375,57.15647377713671],[-127.57598999498526,57.156442933479426],[-127.57638519784527,57.156366423695964],[-127.57647761560861,57.15624872741058],[-127.5766351746146,57.15613024502722],[-127.57698055058948,57.156049850760326],[-127.57727949111063,57.15599804047639],[-127.57760856148872,57.156024333856465],[-127.57792833500669,57.15607652108766],[-127.57816426109038,57.15612747838745],[-127.57844094605764,57.156112926387515],[-127.57889658124355,57.1560468885874],[-127.5792164323583,57.156000426021535],[-127.5795606653974,57.15599290200564],[-127.57985927883634,57.15593324290855],[-127.58015712294703,57.15585453585995],[-127.58045167048289,57.155771384100674],[-127.58075504394742,57.15570157658011],[-127.5810682694499,57.15564510082102],[-127.5813847432654,57.15559194791041],[-127.58170019036585,57.1555388066542],[-127.58200665377105,57.155468958783835],[-127.58232476828057,57.15543035637686],[-127.58265623761115,57.155439793340875],[-127.58299506814286,57.15547716465629],[-127.58321522439189,57.15549691660855],[-127.5836066524819,57.15538007537984],[-127.5839331300464,57.155343609617546],[-127.58405970739274,57.15535216383647],[-127.58421396590354,57.155354777420925],[-127.58436689840838,57.15532489861497],[-127.58446982201518,57.15533710219411],[-127.58455361528377,57.15536186843361],[-127.58483375846586,57.15545599550982],[-127.58469156785875,57.15529517872373],[-127.5847058371223,57.15511452860443],[-127.58467210467356,57.15492437194076],[-127.58463154349874,57.15469394302133],[-127.5845086109977,57.15457324769121],[-127.58433534900111,57.154436347968684],[-127.58426496432689,57.15426008747502],[-127.58429069430125,57.15408154053671],[-127.58439542968073,57.15391212430869],[-127.58452507420331,57.153744647858865],[-127.58465476389549,57.15357829171384],[-127.58478868128303,57.15341412611252],[-127.5849006890108,57.153245742273796],[-127.58496575528827,57.15306783906807],[-127.58500892918713,57.152885717551754],[-127.5851012960406,57.15271757185956],[-127.58524078724412,57.152563426975355],[-127.58551220242016,57.15244691505368],[-127.58567383068981,57.15230258980862],[-127.58566514397094,57.15211773464737],[-127.58574693431312,57.15194411204212],[-127.5858505390182,57.151772466547094],[-127.58596042294582,57.151602986698755],[-127.58607365331244,57.15136396582857],[-127.58614844312919,57.15124647665041],[-127.586271397489,57.15109253149624],[-127.58627327973699,57.150913153040875],[-127.58627513216526,57.150732653998965],[-127.5862976938733,57.15055302449072],[-127.58635349799295,57.150376354255556],[-127.58640379905862,57.15019190403683],[-127.58646739379718,57.15000392946466],[-127.58653009534875,57.14984399001803],[-127.58662972394893,57.14967687623647],[-127.58677518638113,57.14951705247397],[-127.58694046968759,57.14936147165931],[-127.58711720943859,57.1492079933929],[-127.58751341736874,57.14900813013641],[-127.5876497313001,57.148777795396846],[-127.58764348894329,57.148676983864775],[-127.58761949270341,57.148571904226294],[-127.58761197878587,57.14839039826312],[-127.58763016529946,57.14820521706521],[-127.58762576139289,57.14802367335484],[-127.58747986842174,57.14787299441576],[-127.58727551638823,57.147734235391454],[-127.58704451639109,57.14760140468418],[-127.58680638173954,57.14747090220835],[-127.58658154193017,57.14733687494706],[-127.58635881780488,57.147203942607646],[-127.586101134828,57.147051256955756],[-127.5859651779116,57.1469901334269],[-127.58569714654283,57.14693733890955],[-127.58523798924881,57.146914887638204],[-127.5849754770675,57.146920315050956],[-127.58473631905717,57.14691536989372],[-127.58462506152271,57.146876364728556],[-127.58415765306874,57.14660403386541],[-127.58391782033192,57.14648251475228],[-127.58364772999765,57.14637929754558],[-127.58337353538914,57.146277250523575],[-127.58311035296344,57.146166101750914],[-127.5828201993638,57.146053037362904],[-127.58254640417648,57.145935290307236],[-127.58234551370165,57.14580432894301],[-127.58227094719743,57.14565165976744],[-127.58230822953271,57.14547745833421],[-127.5824051206635,57.145293567067235],[-127.58250717174101,57.14510961322848],[-127.58258782687663,57.144933765319095],[-127.58268202166711,57.14475999525102],[-127.58272231851564,57.14458351532389],[-127.58270256153021,57.144405521154226],[-127.58265898924098,57.14422669460573],[-127.58254647619218,57.14390634076909],[-127.58221057710341,57.143787103895],[-127.58164037115053,57.14347901867366],[-127.58105494361362,57.143202502394495],[-127.58069312629682,57.14300622903331],[-127.58044429843399,57.14284109554977],[-127.58030828324827,57.14267795964167],[-127.58039797846395,57.142570382849364],[-127.5805037712612,57.142402079187605],[-127.5805124430909,57.14218562835268],[-127.58071686407045,57.14202621968785],[-127.58095137203124,57.14184402726285],[-127.58115507065655,57.141692473392744],[-127.58144118201363,57.14163296128689],[-127.5816718494944,57.141558426496424],[-127.5821738586718,57.141417830664544],[-127.58243978373993,57.141119795749255],[-127.58254620223396,57.140991837538465],[-127.58246770286532,57.1408190394495],[-127.58242831680084,57.14064128360314],[-127.58239611254035,57.14046231979739],[-127.58238044776839,57.14028315562394],[-127.58238752441996,57.140103715944456],[-127.58240182856285,57.139924188719625],[-127.58240679145922,57.139743653733454],[-127.58241481739829,57.13956196069654],[-127.58242180131703,57.1393802803082],[-127.58240406952672,57.139201141329785],[-127.58233802466424,57.13902931350216],[-127.58218553911215,57.138867500588034],[-127.58197693474024,57.13872430268963],[-127.58174910002819,57.138591426045515],[-127.58150590898286,57.13846209787717],[-127.58124480668816,57.13834980055543],[-127.58096207395329,57.13826466762897],[-127.58065399124459,57.138216832603554],[-127.58032427692257,57.13819616165416],[-127.57998563761119,57.13818456552918],[-127.57965178935439,57.138163942902985],[-127.57933346492527,57.13811847059314],[-127.5790228108341,57.1380583323094],[-127.57871794456278,57.13798803470502],[-127.57841693735101,57.137910964012306],[-127.57812095297655,57.137830469073705],[-127.57783297894063,57.13774315095525],[-127.57755491129988,57.13764562393374],[-127.5772828330379,57.13754241921707],[-127.5770187783996,57.13743351228009],[-127.57676278051028,57.13731890277343],[-127.57648288164474,57.13722700046782],[-127.57617125992581,57.13716798822121],[-127.57585172190028,57.13711803842727],[-127.5755248656409,57.137065934238315],[-127.57527544440076,57.13696021024425],[-127.57510442138397,57.13679973433223],[-127.5750302070586,57.13662912304922],[-127.57507343908337,57.13644812764121],[-127.57510742263037,57.13626836474319],[-127.5751217759441,57.136088838626385],[-127.57512370958086,57.13590946233067],[-127.57512147941905,57.135729015324465],[-127.57510998484443,57.135549801041236],[-127.57505615176751,57.135372218395204],[-127.57505292612096,57.135192904425836],[-127.57506107792938,57.13501345325423],[-127.57506194051017,57.13483296906794],[-127.57502877966192,57.13465513718172],[-127.57494607148057,57.134479023847426],[-127.57495538689537,57.134302921611265],[-127.57501219887462,57.134125125585555],[-127.57508559282115,57.13394825049916],[-127.5751944019911,57.13377767391413],[-127.57527211253458,57.13360523049663],[-127.57522838659285,57.13342192150387],[-127.57520971189624,57.13324391510542],[-127.57534917204252,57.13308978300854],[-127.5755718800282,57.132948097783135],[-127.57578118861917,57.132807694824095],[-127.57601269709721,57.132679354080715],[-127.57618635753784,57.13252705021821],[-127.57640055185982,57.13227897574514],[-127.57643241250017,57.13209811761153],[-127.5763684275215,57.131925142316895],[-127.57624774854852,57.13175621426569],[-127.57613224624099,57.13158722365173],[-127.57601264058808,57.131419403447644],[-127.57583182732563,57.13127137804723],[-127.57560208325363,57.13114075715142],[-127.57537338246503,57.13101012329583],[-127.57513966224964,57.13088291247697],[-127.57489384763363,57.13076369380692],[-127.57462689230475,57.130658181064746],[-127.57437301363689,57.130543542522574],[-127.57412006972217,57.13042665034382],[-127.5738671733073,57.13031087808217],[-127.57361423246701,57.130193984943695],[-127.5733961087424,57.13011926792353],[-127.57299763336347,57.130109496598216],[-127.57270793762179,57.1300289149601],[-127.57245359256676,57.12995351173101],[-127.57215693334004,57.129829295719944],[-127.571893988008,57.12972036650055],[-127.57162488956953,57.12961263179077],[-127.57143799305074,57.129466915931296],[-127.57129774639532,57.12929934041696],[-127.57113433738304,57.12914661583923],[-127.57085766594126,57.129055785026424],[-127.57054910323181,57.129019142796174],[-127.57030446454613,57.1288774828519],[-127.5700889167225,57.12873883551309],[-127.56987439557788,57.12860017550716],[-127.56961578201975,57.128495673686835],[-127.56931110059669,57.12842759541756],[-127.56906774098077,57.12829152268284],[-127.56882759507278,57.12818343459907],[-127.56854266903166,57.12809269827935],[-127.56824875625783,57.128009915931635],[-127.56795885741995,57.127923721898625],[-127.5676908992793,57.12781820770855],[-127.5674612658923,57.12768869302322],[-127.56723166328328,57.127560298541894],[-127.56696273034149,57.127455915587625],[-127.56668078521047,57.12736177675818],[-127.56639380363754,57.1272710606041],[-127.566102918657,57.127185995391315],[-127.5657916979353,57.12713480179703],[-127.56547329857611,57.12708481449208],[-127.56518641333143,57.12699633649741],[-127.56488656112145,57.12691922276398],[-127.56458678495054,57.126844349339386],[-127.56430587521453,57.12675019314064],[-127.56410167378073,57.12661027964866],[-127.56387487749268,57.1264739993498],[-127.56365977441612,57.12654831614783],[-127.56329501088538,57.12662890843797],[-127.56297973029609,57.12668088372846],[-127.56265349319894,57.12671729616915],[-127.5623253927573,57.12673355309464],[-127.56199570313368,57.126736376879265],[-127.56166471479712,57.126732489702775],[-127.56133358976169,57.12672524049214],[-127.5610034608799,57.12671685758985],[-127.56067134006616,57.1267107395521],[-127.56034007872725,57.12670012662648],[-127.56001263208273,57.126681620681225],[-127.55968868154538,57.12664737895303],[-127.55937101706687,57.126589521551864],[-127.55908324455984,57.12650440381856],[-127.55885063085174,57.12637715203283],[-127.55863203019963,57.12623852315227],[-127.55836928436575,57.126132928187616],[-127.55806234754361,57.12605924646573],[-127.55774235536076,57.12602046900293],[-127.55740832740038,57.12601772832705],[-127.55707630413735,57.12601384194729],[-127.55676816774174,57.1259614694228],[-127.55647910798832,57.1258696358169],[-127.55617442528363,57.12580040663108],[-127.55586184057282,57.12574023844643],[-127.55555132347133,57.12568004489305],[-127.55524957051153,57.12560629492767],[-127.55496047166582,57.12551333758439],[-127.55465516148352,57.125454200873364],[-127.55432947714976,57.12542781328747],[-127.55399513698158,57.12541722108329],[-127.55366438765012,57.12541891563144],[-127.55334892254524,57.1254663860224],[-127.5530292039148,57.12551054342172],[-127.55269913376354,57.12552904152964],[-127.55251089075229,57.12555257799056],[-127.55205267127691,57.12552103505727],[-127.55172966126757,57.125560744623705],[-127.55141114622612,57.125609367484536],[-127.5510879989448,57.12564571426343],[-127.55075985749087,57.12566082171522],[-127.55042830721347,57.12566812224845],[-127.55009778185963,57.125675409769514],[-127.54976864426655,57.12566586589905],[-127.5494401247251,57.12564622541895],[-127.54911251140994,57.125623210548675],[-127.54861269162565,57.12555964195308],[-127.54851720667872,57.12549912291807],[-127.54823405170862,57.12542513633896],[-127.54793231481563,57.125351369478444],[-127.54762476939229,57.125287759231675],[-127.54730263722534,57.12524673990205],[-127.54697952587662,57.12520685232694],[-127.54666516476291,57.125153409053745],[-127.54635946388164,57.12508416934279],[-127.54605278421053,57.12501606146059],[-127.54573574050202,57.12497273618907],[-127.54540431781555,57.124957603778746],[-127.54510366018013,57.12488493867622],[-127.54488475271815,57.12476310529943],[-127.54456011033275,57.12471089964961],[-127.54430056239002,57.12463214170793],[-127.54418215916114,57.1244642809085],[-127.54416052470653,57.12428630802426],[-127.54415835062497,57.12410362124774],[-127.54416249490932,57.123924222568746],[-127.54418834601005,57.12374456716272],[-127.54417804098925,57.12356533943744],[-127.5441160567072,57.12338672299439],[-127.54402120579456,57.123212979010425],[-127.54383258758905,57.123072850983675],[-127.54356347934817,57.12296169778156],[-127.54331072431178,57.12284586699392],[-127.54305294802171,57.12273345789687],[-127.5427691483602,57.122642653596934],[-127.54247543952634,57.122562054185586],[-127.54234703356659,57.1224021568675],[-127.54237280208008,57.122220261219105],[-127.54237179666818,57.12204092378378],[-127.54235937259465,57.12186060034793],[-127.54233554655272,57.12167929071345],[-127.54231662486882,57.12149119756294],[-127.54225478767428,57.121315941710044],[-127.54210115040833,57.12117091456016],[-127.54185258936836,57.121056152682],[-127.54156422213217,57.12095419068312],[-127.54129311393297,57.120844177776796],[-127.54104137615394,57.12072721007936],[-127.54078962337826,57.12061024210181],[-127.54054597420807,57.12048869430978],[-127.54031448332977,57.1203613979755],[-127.54010631561646,57.120222616788844],[-127.53991742823872,57.12007464041682],[-127.5397305471663,57.11992551920961],[-127.53953051438471,57.11978327845773],[-127.53931521868026,57.119646822064425],[-127.53908768985374,57.11951499330099],[-127.53887270354238,57.11941216048599],[-127.53858738279907,57.119282133120315],[-127.53831858577057,57.11917769181814],[-127.5380527466666,57.11906985234837],[-127.53780309667647,57.11895285421335],[-127.53756151722524,57.11883127685218],[-127.53732395373055,57.11870628899053],[-127.53708737177601,57.11858016823996],[-127.53684979484926,57.11845517973326],[-127.53660819322239,57.11833248005769],[-127.53633743168656,57.11823029987258],[-127.53608373306925,57.11811558815413],[-127.53584113948378,57.11799401974433],[-127.53561058614564,57.11786334185035],[-127.53535897487043,57.11774860425248],[-127.53508722422038,57.11764755416706],[-127.53480942732772,57.11754993741352],[-127.53452761730475,57.11745573005117],[-127.53424582519453,57.11736152189253],[-127.53396401793795,57.11726731332653],[-127.53360510822093,57.11715719618564],[-127.5334041983682,57.1170698824488],[-127.53316921778875,57.116957187316366],[-127.53286258170597,57.11688792846213],[-127.53256492305508,57.116810717020485],[-127.5322741476055,57.11672445671473],[-127.53198741633733,57.116635906466165],[-127.53170361503861,57.11654283752715],[-127.53143983420804,57.1164338401549],[-127.53115126436995,57.116350914331136],[-127.53078607286606,57.11629018407183],[-127.53062885542234,57.11613173559854],[-127.53048394666116,57.115970900796775],[-127.53037793790048,57.115800642390674],[-127.53029550333652,57.115625623850924],[-127.53023576842634,57.11544921824425],[-127.5302524740439,57.11522035400385],[-127.53018877503402,57.115100041074086],[-127.5300265254798,57.114945013862496],[-127.52984470259202,57.11479133682418],[-127.52967214200447,57.11463643009366],[-127.52951384999997,57.114476872273514],[-127.52930199092076,57.11429552350092],[-127.5293091323129,57.11411160858206],[-127.52933427484841,57.113964473190194],[-127.52936882431553,57.11376790701734],[-127.52923406656306,57.11362824983886],[-127.52906662574458,57.1134721616217],[-127.52885792618011,57.11329189625764],[-127.5287552920286,57.11315410422217],[-127.52861228984936,57.11298876190062],[-127.52844296684214,57.1128371787461],[-127.528186281398,57.11272360872663],[-127.52783747635524,57.112606632949884],[-127.52780815208608,57.1124668611797],[-127.52769843432371,57.112306732984905],[-127.52740195129572,57.11220595748783],[-127.52714873687806,57.11210131230237],[-127.52693046570329,57.11196599301012],[-127.52672832223375,57.11182039645012],[-127.52655792605161,57.111667702761835],[-127.52648186561527,57.11149597085081],[-127.52644159399091,57.11131485299745],[-127.52637464470438,57.11113853084402],[-127.52628824025217,57.11099270101253],[-127.52620378546814,57.11079192334643],[-127.52605585291808,57.110632240988735],[-127.52587519659538,57.11048078752568],[-127.525657919242,57.11034433388837],[-127.5255400691424,57.11023922433699],[-127.52535588247122,57.11002504013296],[-127.52520491048404,57.10986651341807],[-127.52502426112098,57.10971505886189],[-127.52482329486723,57.109572808808196],[-127.52461421702166,57.10943401599066],[-127.52439897135051,57.10929641583183],[-127.52417772440273,57.109163369105204],[-127.52394331018942,57.10903720129142],[-127.52365661107574,57.1089475128466],[-127.52335701121221,57.10887142537391],[-127.52305351983158,57.10880098722653],[-127.52274903287407,57.108731680922226],[-127.52244252571387,57.108663518407056],[-127.52213413160418,57.10859986085767],[-127.52182865118881,57.10853168495672],[-127.52152907471827,57.10845559311864],[-127.52123348115876,57.10837609143885],[-127.52093988228845,57.108294324032144],[-127.52064326659766,57.10821483296631],[-127.52034569975969,57.108137594154634],[-127.52004419668444,57.10806488418757],[-127.5197267292064,57.108006931334096],[-127.51946030549577,57.10790690960348],[-127.51930425456321,57.10774955673902],[-127.5192753736883,57.10756830499563],[-127.5192816702998,57.107387764649125],[-127.51924672584204,57.107209946284215],[-127.51917779543892,57.1070347654129],[-127.51910779677466,57.10685847605784],[-127.51906867801267,57.10667958540926],[-127.51902140231967,57.10650303155162],[-127.5188949473914,57.10633636663361],[-127.51878492973505,57.10616726849424],[-127.51877046732763,57.105984728164486],[-127.51872117259872,57.10580931872412],[-127.518559097233,57.10565651910427],[-127.51835091063857,57.105513223145024],[-127.51814892227743,57.105369854776136],[-127.5179499977179,57.105225329576214],[-127.51773997164462,57.10508765869307],[-127.51749845438714,57.10496380465204],[-127.51724787343804,57.104845660132334],[-127.51707256744213,57.104697496366825],[-127.51693180111042,57.10453435904781],[-127.5166863524833,57.10441503296647],[-127.51645603437196,57.10428656333658],[-127.51628346998469,57.10412939949862],[-127.51607669509637,57.10399505113638],[-127.51566110750178,57.103884425368356],[-127.51554068459473,57.103791667715925],[-127.51531683577645,57.10366984653666],[-127.51505233464367,57.103591091545134],[-127.5148706696502,57.10343851532149],[-127.51461224271125,57.10333054534487],[-127.51432358674069,57.103241981143164],[-127.51402882413299,57.10315572899631],[-127.51374619044964,57.10306261005072],[-127.5134234064066,57.10297331893],[-127.51314662841496,57.10292384620497],[-127.51283173725365,57.10287705660876],[-127.51253245272102,57.102780765439135],[-127.51223595924284,57.10272927754119],[-127.51187828834884,57.10272445502725],[-127.5115701876579,57.10271905730187],[-127.5112403642933,57.10271278953486],[-127.51091631357573,57.10272214678383],[-127.51059815674196,57.1027762712535],[-127.51027472231974,57.10280131245695],[-127.50994526199767,57.102778223613946],[-127.5096370239768,57.102716777603206],[-127.50934141112938,57.1026350085316],[-127.50898697171888,57.10252813829926],[-127.50880117670286,57.10240138267322],[-127.50846672447109,57.10211941873628],[-127.50860294144395,57.10195755443816],[-127.50887258969763,57.10185243414049],[-127.50905687990634,57.101704585206456],[-127.50915341072408,57.10153197027031],[-127.50925622480139,57.10136152440549],[-127.50936838430212,57.10119209126758],[-127.50949718107928,57.101025828281095],[-127.50969305271404,57.100883449000186],[-127.5099276957359,57.10075519251132],[-127.51013194129926,57.100616078371964],[-127.51029508296246,57.100456142519896],[-127.5103015968988,57.10028008511873],[-127.51025835122853,57.10010012010513],[-127.51021514496843,57.09999973884037],[-127.51018327877185,57.099925007107984],[-127.51008966369811,57.099751229613865],[-127.50997557317018,57.099582172665535],[-127.50983181018293,57.09942018444569],[-127.50965440423047,57.09926979441231],[-127.50945548267094,57.09912413670411],[-127.5092555823068,57.098979610951275],[-127.50907207306666,57.098831532631046],[-127.50892534271082,57.098672940606974],[-127.50882869087103,57.098500318491055],[-127.50875973557811,57.0983228924418],[-127.50870415229386,57.09814419085397],[-127.50867938748698,57.09796064929352],[-127.50863112944701,57.09778410482838],[-127.50849284156159,57.09762989848855],[-127.50825635211449,57.09750036626265],[-127.50801478115898,57.097373134177055],[-127.50780070338286,57.09723549582585],[-127.50761816093348,57.0970851628342],[-127.50743964565571,57.09693254128685],[-127.5072754721215,57.0967763911345],[-127.50714203998314,57.09661428117824],[-127.50709672070911,57.09643321886867],[-127.50700384321439,57.09619890274094],[-127.5068968085909,57.096103741697384],[-127.50661380453434,57.09599940386227],[-127.5062912891649,57.09596725920835],[-127.50595693863208,57.09594982207455],[-127.5056747289739,57.09586564927312],[-127.505418092526,57.095748674713604],[-127.50518768842073,57.09561570443858],[-127.50500517826119,57.09543958713252],[-127.50483901279146,57.09531147971322],[-127.50471472127094,57.095144778593195],[-127.50460583886753,57.094975657874244],[-127.50443857945709,57.0948195401936],[-127.50424378682703,57.09467270699158],[-127.50401465338692,57.094545324706424],[-127.50376620299605,57.09442601099829],[-127.50350660784873,57.094312429775776],[-127.50323907787121,57.094206785776834],[-127.5029567554346,57.094119246027944],[-127.50262522134572,57.094093921857414],[-127.50229460807697,57.09409212507578],[-127.50196390720285,57.0940880866723],[-127.50163950552759,57.09406043609768],[-127.50131854997235,57.09401481072287],[-127.50100342321232,57.093960150334],[-127.50065898399193,57.093868836824385],[-127.50050245426868,57.093695777598846],[-127.50027431167634,57.09361993884498],[-127.49997376597494,57.09354156954472],[-127.49968835021448,57.093454058475366],[-127.4994490457646,57.09333014815363],[-127.49922993814039,57.09319479636057],[-127.49903823555324,57.093046799476056],[-127.49880211228121,57.092925093290994],[-127.49852960926974,57.0928239807161],[-127.49824404381842,57.09273198477439],[-127.49795648572723,57.09264225289892],[-127.49766507787798,57.09255928997253],[-127.49736759117702,57.09247975887195],[-127.49706818837167,57.09240361178218],[-127.49676585584436,57.092331981212126],[-127.49646643886487,57.092255832939124],[-127.4961749498713,57.09217062592276],[-127.4958923093908,57.09207410787815],[-127.4956572262328,57.091952384342704],[-127.49547582420759,57.09180314359091],[-127.49531265814917,57.09164472644296],[-127.49512610510479,57.09149554431628],[-127.49494879333042,57.091345135156196],[-127.49483479440825,57.09117606600271],[-127.49472792783041,57.091004673271414],[-127.49458941497181,57.09084261021314],[-127.49441921253789,57.09068875633207],[-127.49423360455826,57.09053732051585],[-127.49403280909301,57.090393904656665],[-127.49381688628068,57.09025962888438],[-127.49355758307041,57.09015162997901],[-127.49310171674892,57.0900088913123],[-127.49300962716846,57.0899516590928],[-127.4927472664811,57.08984481453616],[-127.49244191683906,57.089774329818695],[-127.49212494686921,57.08972415334467],[-127.49179952150774,57.08969536971523],[-127.4914695557044,57.08970923099617],[-127.49114084777692,57.08972868150753],[-127.49082577258082,57.08978048116775],[-127.49052203679028,57.08985793094039],[-127.4902052835295,57.089892934921664],[-127.48987792624432,57.08989443257213],[-127.48954597799774,57.089883652047384],[-127.48921392653659,57.08987063008108],[-127.48888399999421,57.08985870390662],[-127.48855492408063,57.089842283638696],[-127.48822602209874,57.08983034411369],[-127.48789588023507,57.08983971478443],[-127.48757404139607,57.08987701213696],[-127.48725574115682,57.089925477226],[-127.48693852412423,57.089975050071445],[-127.48662241712312,57.09002685126339],[-127.486307376746,57.09007976041621],[-127.48599243871469,57.09013490941042],[-127.48567163619484,57.09017219022291],[-127.48533929602051,57.09017821675982],[-127.48503381226172,57.090237739314496],[-127.48475134204743,57.0903317467185],[-127.48447099504959,57.09042685022669],[-127.48419175738711,57.090524182276575],[-127.48390817229591,57.09061595873663],[-127.48361489651111,57.090697756799926],[-127.48331190344744,57.09076845581579],[-127.48300026071578,57.09082916446747],[-127.48267725493658,57.09086310022245],[-127.48236002425303,57.090912661968595],[-127.48205061659017,57.09097782647817],[-127.48172360877422,57.091015167982874],[-127.4813678131304,57.09100239566224],[-127.48116109774631,57.09089153341558],[-127.48100001619105,57.0907319546337],[-127.48086147583862,57.09056763624308],[-127.48069337787035,57.090413741235785],[-127.48051819237583,57.09026328914634],[-127.48041351668165,57.09009298157958],[-127.48030878221586,57.0899215537413],[-127.48015188093387,57.08976304755629],[-127.47992487824892,57.08963447960072],[-127.47967755856311,57.08951510883449],[-127.47944840789435,57.0893843227031],[-127.47919511288873,57.08927062327621],[-127.47893164176111,57.08916040141681],[-127.47866321778389,57.08905583962052],[-127.4783857977244,57.088959225449955],[-127.47809639544064,57.08887283445166],[-127.47779606146023,57.08879777552459],[-127.47748781467944,57.088731772625664],[-127.47717478678244,57.08867591111372],[-127.47685407760883,57.0886347073223],[-127.47652665131211,57.088607029391774],[-127.47619935466851,57.08858271182855],[-127.47587033816369,57.088567379976354],[-127.47552919207551,57.08855890980967],[-127.47522400551834,57.08851864733298],[-127.47491446666277,57.08844592775747],[-127.47460627067025,57.08838103846316],[-127.47428108484414,57.08835781314636],[-127.4739497131898,57.088361558106506],[-127.4736190646542,57.08835744787733],[-127.47328837321413,57.08835221641318],[-127.4729587918729,57.08834921334045],[-127.47262952779288,57.08835405202886],[-127.47230287009079,57.088373431932474],[-127.47197889437159,57.0884084730962],[-127.47165503032714,57.088446874835306],[-127.47133324683337,57.08848525229561],[-127.47104968898888,57.088578121066675],[-127.47073361496643,57.08863100410444],[-127.47040518950331,57.088658245326734],[-127.47008224008908,57.088639467856446],[-127.469763089044,57.08858477858571],[-127.46945296454682,57.08852326157015],[-127.46915165244594,57.08844931488296],[-127.4688552543788,57.08836858689425],[-127.4685501316736,57.088302527929336],[-127.46822369544297,57.08827369723821],[-127.46790885069267,57.0882234385589],[-127.46755189346933,57.08809855396922],[-127.46737885718746,57.08805678638032],[-127.46729110712789,57.08811157577107],[-127.46724385601604,57.088226437079804],[-127.46685197138726,57.0885390867711],[-127.46675945533545,57.088712742727935],[-127.46667494057009,57.08887958338013],[-127.46645504632251,57.08893585799297],[-127.46616944907096,57.089002958691445],[-127.46608887288899,57.08908344688421],[-127.46565768175883,57.089313589588926],[-127.46542287537015,57.08943952458967],[-127.4652018219357,57.08957427172548],[-127.46488829556877,57.089694364679175],[-127.46467393348944,57.08978756317591],[-127.46444646754281,57.089916776613094],[-127.46422120949116,57.090049327507096],[-127.4639758137814,57.09016865344674],[-127.46372094597415,57.090283601682906],[-127.46346605046878,57.09039742884353],[-127.46320051417732,57.090503528691876],[-127.46292011258316,57.09059858589732],[-127.462632218523,57.090687001217184],[-127.46231490391189,57.09076229513785],[-127.46198641161027,57.09078839480489],[-127.46166674893563,57.090828966149644],[-127.46137333891606,57.09090847341773],[-127.46109086502211,57.09100354985142],[-127.46080262280331,57.091082997934414],[-127.46050967771731,57.091174827711306],[-127.46020883100807,57.09124881118447],[-127.45990359793042,57.09131611776301],[-127.45959299703738,57.09137787927862],[-127.45931997158291,57.0914504284961],[-127.45897718497082,57.09150806506674],[-127.4586762901474,57.09158092461948],[-127.45840012684744,57.091679287218575],[-127.45816317479947,57.09180411204767],[-127.4579336101365,57.091933337398046],[-127.45770616785416,57.092063659503104],[-127.45747660010254,57.092192884073505],[-127.4572428750227,57.09232103379573],[-127.45703954877456,57.09246117324784],[-127.45685518774592,57.09261118850578],[-127.45666969956694,57.092758974328426],[-127.45644537972663,57.09289038022513],[-127.45621688600146,57.09302071144326],[-127.45584313412766,57.09321543271648],[-127.45570580706003,57.09321696519944],[-127.45550933032533,57.09307456392928],[-127.45540241646603,57.09292443792713],[-127.45540397290186,57.09272042037993],[-127.45531079306511,57.09255108617152],[-127.45514985440634,57.09239259569816],[-127.45495634569468,57.09224679800374],[-127.4546998879432,57.09212972402477],[-127.45453409666028,57.09197913315595],[-127.4544130384562,57.091810109307595],[-127.45423283806845,57.09166079964892],[-127.4540291395048,57.09151847696843],[-127.45382444417878,57.09137728598873],[-127.45362587658423,57.091233784678494],[-127.45342118425755,57.0910925930951],[-127.45319624324065,57.09096171469947],[-127.45295808610597,57.09083658754174],[-127.45273110921451,57.09070685195665],[-127.45250613043605,57.090574852002256],[-127.45227611004506,57.090446270451125],[-127.45203593666983,57.090322285050085],[-127.45181507558264,57.09019023815575],[-127.45146787558018,57.09007640993016],[-127.45124759432578,57.0900138500254],[-127.45101856330442,57.089884134509724],[-127.45081200879521,57.089747443376176],[-127.4505315226228,57.089649683882286],[-127.45023221826479,57.08957342966841],[-127.44992405493868,57.089508482014466],[-127.44961197459348,57.0894491815554],[-127.44930085128853,57.08938762797885],[-127.4489976332774,57.089317018856626],[-127.44870712701096,57.08922721299025],[-127.44841089267011,57.08914979972642],[-127.44809174141925,57.08912195871272],[-127.44775738198454,57.08912903283496],[-127.44742668744655,57.08912373581149],[-127.44709772003128,57.0891094517946],[-127.44676781316053,57.08909741911966],[-127.44643711903122,57.08909211958783],[-127.44611039967828,57.089110313508755],[-127.44578522672776,57.08914193995629],[-127.4454589869696,57.089172456535955],[-127.44513251940018,57.08919737044925],[-127.44480611007066,57.089223403770035],[-127.44448191706321,57.08925389522117],[-127.44415184126578,57.08923737430127],[-127.4436997191896,57.08921659903562],[-127.44349235977221,57.08925027835813],[-127.4431482219419,57.089272020208995],[-127.44290348593597,57.08930050773803],[-127.4426160463764,57.089429224808136],[-127.44232058494912,57.089509832386845],[-127.44199804456433,57.08958401340234],[-127.44175043392927,57.08970107949941],[-127.44147910013201,57.08979150632344],[-127.44120822751162,57.08989425708423],[-127.44094160910367,57.090000322899535],[-127.44067498922337,57.090106388177986],[-127.44040621904199,57.09021023490151],[-127.44012042490438,57.09030081853357],[-127.43980746710062,57.09035583341957],[-127.43949365222548,57.090415340497145],[-127.43923536867345,57.09052355254147],[-127.43900051025874,57.090650560497046],[-127.43877474039957,57.090771863415256],[-127.43871016887468,57.090950794431805],[-127.4386847277259,57.09107100846097],[-127.43835990970163,57.09111270013917],[-127.43792512780412,57.09103118627828],[-127.43764871084738,57.09093111265462],[-127.43749830177626,57.09077584804601],[-127.4373751736523,57.09060459047376],[-127.43720816466033,57.09044726676337],[-127.43702778602609,57.09029121103078],[-127.43681515205213,57.090156806941266],[-127.43654825360339,57.090062230663705],[-127.436235148763,57.09000290964284],[-127.43590892528385,57.08995157839416],[-127.43559588072848,57.089893376072325],[-127.43527998291034,57.089841929634375],[-127.43495541408437,57.089807390896055],[-127.43463188648713,57.08977283990586],[-127.43431117200655,57.08973041109268],[-127.43399238099222,57.08968459774277],[-127.43367360725641,57.08963878343394],[-127.43335189612469,57.08959748411505],[-127.43303022748717,57.08955730441505],[-127.43272407455464,57.089490052629706],[-127.43241222984165,57.089436313083425],[-127.43208572759212,57.0894051511227],[-127.4317649772285,57.08936159565021],[-127.43146675301101,57.089285286980314],[-127.43140011852623,57.089243425174175],[-127.43121159735274,57.089200659012945],[-127.4305754266941,57.08906304549727],[-127.43026730070811,57.08899805143774],[-127.4299572361715,57.088936440522765],[-127.42965315829348,57.08886915892616],[-127.42939292095434,57.08875880322355],[-127.42914375748394,57.088640479619464],[-127.42890267113968,57.08851758361238],[-127.42866763026412,57.088390137500966],[-127.42842654701415,57.08826724063622],[-127.42816343679641,57.088162518411025],[-127.42786810955997,57.088080565704644],[-127.42757680453748,57.08799520572513],[-127.42732256493726,57.087879176113724],[-127.42706242425248,57.08777105666384],[-127.4267522499076,57.08770607695181],[-127.4264561131615,57.08762973433483],[-127.42619993951236,57.087517086379926],[-127.42595680498655,57.087394207603744],[-127.42573085545482,57.08726105276567],[-127.42543593106014,57.087189178128924],[-127.4251178797448,57.08713436851394],[-127.42481856232703,57.08705581531564],[-127.42453200964346,57.0869591881913],[-127.42424157841704,57.08686932800281],[-127.42393798378868,57.08681435771297],[-127.42361730337542,57.08679992435354],[-127.42328717193298,57.086809131501994],[-127.42295332614772,57.08682958698311],[-127.42261935551944,57.08684668037382],[-127.4222890574912,57.086851403347964],[-127.42195867642859,57.08685388466127],[-127.42162821238941,57.08685412431272],[-127.42129878891606,57.08685435178838],[-127.42096836631649,57.08685571018094],[-127.4206390920611,57.08686041782123],[-127.42030557584762,57.08688982982948],[-127.42000014694688,57.08692453952217],[-127.41965741875026,57.08692827028284],[-127.41933215971483,57.08695758991662],[-127.41900694157357,57.08698802915352],[-127.41868059957945,57.08701623807107],[-127.41835419087981,57.087042205166],[-127.41802557649919,57.08706483282877],[-127.4176965647232,57.08707625534562],[-127.4173554034761,57.08706651265124],[-127.41713712850986,57.08702853327372],[-127.41703046209241,57.086824574206425],[-127.4171814209384,57.08666152983364],[-127.41709242949607,57.08648876298926],[-127.41685758900827,57.08636577762137],[-127.41660026261779,57.08624864038892],[-127.41639379231118,57.08611077490226],[-127.41623816959954,57.08595106063697],[-127.41607135000966,57.08579595123037],[-127.41584961456397,57.08566385501543],[-127.41559542581378,57.085547802745694],[-127.41533020557003,57.085440836604874],[-127.41505999879413,57.08533840749417],[-127.4147907514555,57.085233725717785],[-127.41452248833528,57.085127911874466],[-127.41425220341401,57.08502324028716],[-127.41399405965142,57.084911711375746],[-127.41376530856509,57.08478529219467],[-127.41359537428679,57.084629092817],[-127.41348480063839,57.084458799624045],[-127.41335697662636,57.084296539322985],[-127.41314537549991,57.08415872472907],[-127.41290528532828,57.084032427045976],[-127.41264917540148,57.08391975277493],[-127.41238799646212,57.083809374638335],[-127.4121217731777,57.083702413197],[-127.41184848224401,57.08360001118016],[-127.41157024575438,57.08350326643306],[-127.41128408218441,57.08341557375976],[-127.41099189121424,57.08333242912006],[-127.41069475439897,57.083254941631274],[-127.4103946372831,57.08318084828604],[-127.41009249802316,57.083107896987656],[-127.40978837772128,57.083037208135],[-127.40948524138267,57.08296538709771],[-127.40918410491031,57.08289130204878],[-127.4088849764063,57.08281607377251],[-127.40858878961626,57.082736329627444],[-127.40829558569995,57.08265319004752],[-127.4080023665374,57.08257004999179],[-127.40770816575966,57.08248804074741],[-127.40741202498856,57.082409414362324],[-127.40711196184701,57.08233643392261],[-127.40680397054415,57.08227250517741],[-127.40649107369195,57.082215353758144],[-127.40617523698904,57.08216271672143],[-127.40586034307847,57.08210782705713],[-127.4055483909149,57.08204842151848],[-127.40524432834411,57.081978842538874],[-127.4049402668746,57.081909262853955],[-127.4046189791,57.08187685622354],[-127.4043207850006,57.081798245088315],[-127.40401574365927,57.081729794696585],[-127.40372564559274,57.081646611657106],[-127.40346136203277,57.08153512883237],[-127.40316242263536,57.08160559676481],[-127.40283636021319,57.08164048842049],[-127.40256309105908,57.081735337630604],[-127.40230394244551,57.08184908895293],[-127.40203727250781,57.081955074630585],[-127.4017706419816,57.082062180185865],[-127.4015039690938,57.08216816478946],[-127.40123410815988,57.08227194138426],[-127.40096207531083,57.08237237818086],[-127.40068260312667,57.08246729002824],[-127.40036977523609,57.08252557123764],[-127.40007321353906,57.08260497329955],[-127.4000000790053,57.082638263160845],[-127.39982135052992,57.08272088311466],[-127.39960421030894,57.08285435348215],[-127.39939344941948,57.08299335930717],[-127.39918583272484,57.083133451912005],[-127.3989792549956,57.08327353303966],[-127.39876953002886,57.08341252673772],[-127.39855980354466,57.0835515201124],[-127.39835003475832,57.08368939274646],[-127.39814347525555,57.08383059320105],[-127.39795900728504,57.08398276508516],[-127.39772344093953,57.08409289184855],[-127.3973912836596,57.084074033973216],[-127.39706767517941,57.08403490830428],[-127.39674406735834,57.083995781833615],[-127.3964293348165,57.0839453510011],[-127.39616014801273,57.0838406308785],[-127.39586314280832,57.08376647100775],[-127.39555115193531,57.08370592107098],[-127.39524320958887,57.08364308538385],[-127.394921549336,57.08360057106303],[-127.39459724878701,57.08357041357626],[-127.39426499237484,57.08357732849444],[-127.39394278113886,57.08354826790621],[-127.39362799116242,57.08349558931725],[-127.39331402283153,57.083437296938264],[-127.3929991368542,57.083382376175145],[-127.3926786029884,57.08334208605547],[-127.3923485838295,57.083325434318695],[-127.39201910926774,57.08332334701693],[-127.39168867543893,57.08332351082361],[-127.39135894093147,57.083314699516336],[-127.39102992249153,57.08329691292441],[-127.39069983982857,57.08327801600218],[-127.39037090311099,57.08326246858707],[-127.39004237207908,57.0832581245375],[-127.38971655408837,57.0832716843763],[-127.38939158685076,57.08330877221567],[-127.38907225802572,57.083359249404005],[-127.38876156724685,57.08341972148609],[-127.38845870028443,57.08349692229889],[-127.38815677510533,57.08357187067328],[-127.38784583829637,57.083625618061276],[-127.38752350954981,57.08365034376612],[-127.38719443705781,57.083659448483196],[-127.38686193584738,57.08365962202055],[-127.38652943463394,57.0836597947103],[-127.38619936176188,57.083670028399446],[-127.38587063605848,57.0836892137418],[-127.38554423348462,57.083715098676336],[-127.38521905646033,57.08374657402591],[-127.38489614534403,57.08378362875163],[-127.38457660475079,57.08382849284337],[-127.3842592655331,57.08387669533247],[-127.38393976378678,57.08392267828903],[-127.38361602774636,57.083965342825685],[-127.38329441965489,57.084010225683635],[-127.38298036749606,57.084063994422195],[-127.38267820172162,57.08413220743641],[-127.38237892956965,57.084223926922874],[-127.38211978504326,57.084339879187375],[-127.38195040433905,57.08448290110535],[-127.38187196605494,57.084656343105024],[-127.38183423713777,57.08484168312915],[-127.38179530611139,57.08502255249699],[-127.38176042322763,57.08520113728569],[-127.38173173371925,57.085379656473734],[-127.38170721339783,57.085559252360284],[-127.38168269284719,57.085738848265365],[-127.38166538989331,57.085918367730216],[-127.38165742605996,57.08609890913686],[-127.38163703416193,57.08627846136253],[-127.38157622895851,57.08645395827434],[-127.3814645896391,57.08662326847623],[-127.38134886034238,57.08679374275919],[-127.38129208521288,57.086966955197376],[-127.38131921865829,57.08714712501773],[-127.38132570564362,57.087327513508285],[-127.38130841682342,57.0875070329564],[-127.38128491725178,57.08768661819384],[-127.3812521345671,57.08786630175081],[-127.38120688273628,57.08804387565051],[-127.38112843382424,57.08821731764799],[-127.38102095714808,57.088387704387785],[-127.38089160662672,57.08855271835279],[-127.38075600395975,57.08871667752563],[-127.38062565082906,57.088882822708456],[-127.38049938582999,57.08904780364981],[-127.38038047551142,57.089216069207765],[-127.3802740168556,57.08938644461724],[-127.38013862097924,57.08964231099852],[-127.38013899438971,57.08973870046754],[-127.38012811841301,57.089924877274626],[-127.38011407283827,57.0901088459312],[-127.38005301306579,57.09027762004827],[-127.37984464244101,57.09039975574414],[-127.37953065958105,57.09048601985872],[-127.37925001102663,57.09057977673722],[-127.37896621533712,57.09067244541853],[-127.3786823780598,57.09076399305965],[-127.37839960381191,57.09085664969636],[-127.37812348154924,57.090961564832064],[-127.37783725370001,57.09104416903223],[-127.37750472871222,57.09104543914774],[-127.37719286836914,57.09098932670384],[-127.37690458234512,57.09089933908449],[-127.37661832237474,57.090808208613666],[-127.37633603287541,57.09071255222946],[-127.37603993308389,57.09063497458853],[-127.37572414917443,57.09058450436194],[-127.37539852332894,57.09054758738875],[-127.37507155529619,57.09053085910962],[-127.37474180284575,57.090523126180464],[-127.37441365076847,57.09050192532596],[-127.37408552261883,57.09048184425062],[-127.37375653094769,57.0904662548574],[-127.37342761967341,57.09045290549556],[-127.37309784468663,57.09044404780732],[-127.37276726944478,57.09044192282102],[-127.37243390900196,57.09044879311659],[-127.37211395469305,57.09048354284256],[-127.3717947035992,57.090538459716484],[-127.37148635249264,57.09060895312724],[-127.3712108372948,57.09070263853302],[-127.37098627727659,57.0908350176392],[-127.37078402843228,57.09098509553497],[-127.37055724048304,57.09111301390086],[-127.370273980903,57.09119220759178],[-127.36995127253631,57.09123706854293],[-127.36961894351076,57.09127306288549],[-127.3692982586472,57.09131678011185],[-127.36897436416245,57.0913571676716],[-127.36865157303896,57.09139978454808],[-127.36833736013915,57.09145127745163],[-127.36804050371099,57.091526125454344],[-127.36777172687673,57.09163542475706],[-127.36749098481447,57.09172803615638],[-127.36717538451855,57.09176945311027],[-127.36684233054942,57.09178527259203],[-127.36651007783841,57.09179435772004],[-127.36617738656682,57.091791117230756],[-127.36584577591618,57.09178898543039],[-127.36552222081342,57.09181030633423],[-127.3651952922047,57.091852957903264],[-127.36487511508646,57.09191122991943],[-127.36458364127763,57.09199273876154],[-127.3643293059063,57.092101879807046],[-127.36409423008985,57.09222987342522],[-127.36388031947365,57.09237221639677],[-127.36369044105616,57.092522153754054],[-127.3635410584614,57.092678392673676],[-127.36347312364924,57.09285955975793],[-127.36340196312769,57.0930373979825],[-127.36322832113626,57.09317931903647],[-127.36294681093004,57.09327977451459],[-127.36268745062492,57.09339344822707],[-127.36250073126573,57.09354559256699],[-127.3623001588463,57.093685551936325],[-127.36200327338689,57.09376038632281],[-127.3616860853617,57.09381637746687],[-127.361373082718,57.09387344500804],[-127.3610568144965,57.093926062455246],[-127.36073716169844,57.09397086847287],[-127.36041538025401,57.09401345419619],[-127.36010113493346,57.09406492736061],[-127.3597989523591,57.09413644934851],[-127.35950333730467,57.09421798984835],[-127.35920333643317,57.09429285025823],[-127.3588957581275,57.094357701239815],[-127.3585859948091,57.09441921169014],[-127.35827520622436,57.094480732072036],[-127.3579676248471,57.09454558087445],[-127.35766226594507,57.09461488921864],[-127.35736658655095,57.09469530463885],[-127.35709537533675,57.094795640171135],[-127.35683810867793,57.094910401165635],[-127.35655946057129,57.0950052086611],[-127.35625517585436,57.09507562335206],[-127.35594221747913,57.095134918967204],[-127.35561204188457,57.09517421741489],[-127.35531271090323,57.09523897415798],[-127.35507630781312,57.095360239990015],[-127.354869701131,57.09550585466939],[-127.354684887099,57.095654605288274],[-127.35451055542124,57.095807730219946],[-127.35429027537444,57.09594676083537],[-127.35419591525014,57.09611250539356],[-127.35416712898102,57.09629214035305],[-127.35415189288932,57.096474997239696],[-127.3541075299547,57.096652552199025],[-127.35400504155591,57.09682174359439],[-127.35385686418599,57.09698468392969],[-127.35368777345857,57.09713999513118],[-127.35349142203809,57.0972843804058],[-127.35325096563815,57.097407926672425],[-127.35299679906244,57.09752376870645],[-127.35272880393408,57.09762854509786],[-127.35242976464224,57.09770225888319],[-127.3518723719373,57.09780218704407],[-127.35158206830907,57.09771328487362],[-127.35135071175924,57.09759687111139],[-127.3512300112313,57.097425510127785],[-127.35104001738367,57.09728064620562],[-127.35073001326981,57.09721884665609],[-127.35026488247361,57.097151926829774],[-127.35010308665606,57.09710428378369],[-127.34980000691418,57.09703344360513],[-127.34951280344247,57.09694450491659],[-127.3492356289042,57.096846495100635],[-127.34896249093572,57.096746201281654],[-127.3486863435676,57.09664817972188],[-127.34840010772722,57.096556986963485],[-127.34811896579451,57.09646349926281],[-127.34806611870535,57.09640015690902],[-127.34774933917456,57.096350749790076],[-127.34745087864282,57.096117333474325],[-127.34717332467969,57.09597897281511],[-127.34699548933169,57.09585639481069],[-127.34669118788288,57.09577995600757],[-127.34638120287957,57.095718146193526],[-127.34606525908983,57.09566312222517],[-127.3457393989291,57.09567881321891],[-127.34541271418597,57.095670974092194],[-127.34513754594629,57.095570693478464],[-127.34484540582622,57.09548739997248],[-127.34461365157908,57.095358649579225],[-127.34431606404338,57.09529670717231],[-127.34410972623776,57.09515648556035],[-127.34384500824616,57.09505945720614],[-127.34353200611554,57.09499991353459],[-127.34322100820135,57.094938106796185],[-127.34293690235924,57.09484800134756],[-127.34271119694574,57.09471470208916],[-127.34243626108105,57.09462113867715],[-127.34212916322427,57.094552564194686],[-127.34185503584816,57.09445226620242],[-127.34154414596318,57.09439381699108],[-127.34116793471343,57.09435733465969],[-127.34094750297253,57.09425648279406],[-127.34072688409809,57.094120886293275],[-127.34053071194752,57.09397495064162],[-127.3403193971219,57.09383925790637],[-127.34002521557969,57.09375597492878],[-127.33979459036804,57.09362944650299],[-127.33958113685587,57.0934915329276],[-127.33937785367215,57.093349031238404],[-127.33922252196665,57.093189224353964],[-127.33900814938433,57.09305468189806],[-127.33873002801866,57.09295778116831],[-127.33842985692559,57.092880160434134],[-127.33812094937569,57.092818320448146],[-127.33779245969474,57.09281720609827],[-127.3374679927151,57.09278354522471],[-127.33716236177,57.092756415541174],[-127.33689158340542,57.09266279824586],[-127.33666675758619,57.09252387586107],[-127.33640396904318,57.09242232983378],[-127.33609327631487,57.092368349324005],[-127.3357645677789,57.09233136519371],[-127.33544473192623,57.09228196014893],[-127.33514667666317,57.09220543120357],[-127.33485251885004,57.092122136661544],[-127.33454354529108,57.092058047352616],[-127.33422379113077,57.0920108802114],[-127.33389862118376,57.091986184504535],[-127.33356795708211,57.0919817193027],[-127.33323668015944,57.09198958878154],[-127.33291009390527,57.092013101268115],[-127.33258602218675,57.092050037341544],[-127.33225663161812,57.09205228084928],[-127.33192343591422,57.092034387237696],[-127.33158798133879,57.092010911631604],[-127.33125577168414,57.09199188541641],[-127.33093039495671,57.091990722096966],[-127.33061629692548,57.09201746393813],[-127.33031810558846,57.09208551390774],[-127.3300311138927,57.09217922833518],[-127.32974535550268,57.092278533754715],[-127.32945083155343,57.0923633569436],[-127.32914972362137,57.09243703813688],[-127.32884651078805,57.09250961922808],[-127.32854219506136,57.09257996915772],[-127.32823461748337,57.09264586821917],[-127.3279247801594,57.092706185348696],[-127.32761057948952,57.09275982109818],[-127.32728875497907,57.09280232524931],[-127.32696345339804,57.09283365556714],[-127.32663581536897,57.092857162948604],[-127.32630767393009,57.09286610370164],[-127.32597613363122,57.09286611145558],[-127.32566756253479,57.09287373083766],[-127.3253168217069,57.09288626126407],[-127.32498800336195,57.0929052931261],[-127.32465882036676,57.09291424030312],[-127.32431809478113,57.09291769962606],[-127.32401256927793,57.0928636380058],[-127.32371964598643,57.09275564752778],[-127.32353091907326,57.09261409500001],[-127.32348903708188,57.092447514914504],[-127.32351474238936,57.092264557407724],[-127.32355269927957,57.092076992261184],[-127.32355572820727,57.09189538569833],[-127.32353303084479,57.0917162818517],[-127.32350104976884,57.09153727221551],[-127.32346905247162,57.09135826276226],[-127.32343913690265,57.09117923220777],[-127.32339685429262,57.091001447973454],[-127.32333600456776,57.09082385210793],[-127.32328634958768,57.090641659332256],[-127.32324277389172,57.0904560423875],[-127.32319811932675,57.09026931556406],[-127.3231453381006,57.09008603369624],[-127.32307621509935,57.08990852177126],[-127.32298362556493,57.08973909369621],[-127.3228593876276,57.08958007406711],[-127.32269640427809,57.08943601810129],[-127.32249970825283,57.089302391283226],[-127.32227541701182,57.089176889776276],[-127.32202966999319,57.08905833037875],[-127.32176557270905,57.088946681500445],[-127.32148824033483,57.08884077037202],[-127.32120174185597,57.088738314024],[-127.32091020681972,57.08863927057733],[-127.32061981298108,57.088543577452135],[-127.32033358863471,57.08844896233248],[-127.32005454559587,57.088353153096584],[-127.31977237657667,57.088256254078374],[-127.31948914637526,57.088158244371535],[-127.31920383635575,57.08806025510558],[-127.31891551588514,57.08796453734475],[-127.3186242618624,57.087873331958264],[-127.31832901706348,57.08778664961004],[-127.31803091544401,57.087706720479886],[-127.31773003373965,57.08763578543688],[-127.31742429051646,57.087573865480984],[-127.3171137624216,57.08752320146673],[-127.31679958315593,57.087486023576844],[-127.31648148895812,57.087455609446465],[-127.31615955109639,57.087433079158444],[-127.31583466181301,57.087415061183606],[-127.31550789998498,57.08740266545021],[-127.31517818649306,57.08739478199078],[-127.31484657835522,57.0873914001268],[-127.31451296573316,57.087390279285316],[-127.31417952298317,57.087393639207306],[-127.3138451162076,57.08739924965046],[-127.3135097070331,57.08740599016137],[-127.31317439086747,57.08741497053579],[-127.31284013693825,57.08742506018722],[-127.31250690693233,57.087435138677414],[-127.31217575798543,57.08744519537964],[-127.31184559469907,57.08745412049531],[-127.31151543125925,57.0874630447753],[-127.3111833559336,57.08747647076158],[-127.31084944507674,57.08749663933327],[-127.31051778972545,57.087522388540854],[-127.31019056911543,57.087557059003935],[-127.30987087186043,57.0876006197383],[-127.30956081720997,57.087654170352316],[-127.30926789060243,57.08772548159518],[-127.30900823463523,57.08783344570911],[-127.30876477988524,57.08796254253189],[-127.30851810360271,57.08808830872039],[-127.30824899075674,57.08819188284898],[-127.30794883920449,57.0882632635543],[-127.3076316560194,57.08832024349954],[-127.30730382135957,57.08836724194132],[-127.30697382835922,57.08841201951731],[-127.3066480187699,57.08845787517707],[-127.30633183459008,57.08851372109675],[-127.30603472777563,57.088583946031086],[-127.30576204224923,57.08867410076876],[-127.3055170139708,57.088787515569514],[-127.3052943036599,57.08891976069869],[-127.30508756451655,57.08906641645232],[-127.30489249305434,57.08922192180694],[-127.30470063968583,57.08938075717666],[-127.30450873015835,57.089538471997265],[-127.30431037471239,57.08968840517341],[-127.3040991936408,57.089826137129435],[-127.30386989750434,57.08994723734642],[-127.3036170878482,57.090045034689325],[-127.30333870008812,57.090119549647056],[-127.3030442628153,57.09017741186022],[-127.3027348980051,57.09022197250886],[-127.30241484469637,57.09025543082666],[-127.302085148781,57.090278897127426],[-127.30174802726945,57.090296832538876],[-127.30140762656778,57.090309195638234],[-127.30106409863726,57.09032046820735],[-127.30072155674024,57.09033060920762],[-127.30038119334314,57.09034409008121],[-127.30004511116323,57.0903620107188],[-127.29971651289631,57.090387701733036],[-127.29939109558401,57.090415601890435],[-127.29906469151226,57.0904446318887],[-127.2987393111307,57.09047365087422],[-127.29841396813454,57.090503789501554],[-127.29808758392342,57.0905339376743],[-127.29776223990532,57.09056407467788],[-127.29743685752815,57.09059309041745],[-127.29711041263243,57.090620995076776],[-127.29678391291371,57.09064777863047],[-127.29645735361873,57.090672320296264],[-127.29613073957672,57.09069574085553],[-127.29580302534352,57.09071692986363],[-127.2954752351658,57.09073587714098],[-127.29514541754341,57.09075596455023],[-127.29481357244376,57.090777192076],[-127.29448074054656,57.09079954937567],[-127.2941468297958,57.090820795696715],[-127.2938128431895,57.090839800254585],[-127.29347980498115,57.09085655289299],[-127.29314663210677,57.09086882269885],[-127.2928163972705,57.0908765792202],[-127.29248803868995,57.09087871217211],[-127.29216151881472,57.09087410111373],[-127.2918388650413,57.090861605154934],[-127.29152003988841,57.09084010386959],[-127.29120692014682,57.09080397457135],[-127.29090034206091,57.090747604890716],[-127.29059948666074,57.0906766071224],[-127.29030344759299,57.0905954735866],[-127.29000921124603,57.0905064757766],[-127.28971588757736,57.09041410581693],[-127.28942258183841,57.090321735040554],[-127.28889600187132,57.09017226489514],[-127.2886402151467,57.09005934681607],[-127.28838539544917,57.08994417705528],[-127.28813156387241,57.08982787623764],[-127.28787979868362,57.08971155454991],[-127.2876279974581,57.089594111930744],[-127.28737619777223,57.089476668835424],[-127.28712439962601,57.08935922526413],[-127.28687159988606,57.08924291193862],[-127.2866188181955,57.08912659797],[-127.28636403175125,57.089012544956745],[-127.28610723604655,57.088899632105615],[-127.28584839803946,57.08878785973014],[-127.28558758826254,57.08867834794742],[-127.28532374951361,57.08857110716196],[-127.28505691925665,57.088467257810066],[-127.28478608983237,57.0883668097971],[-127.28451122816382,57.08826976342278],[-127.28422734690342,57.088180651058124],[-127.28393643579977,57.0880972114089],[-127.28363950237379,57.088019434511324],[-127.28333860689068,57.08794617922889],[-127.28303364137926,57.08787520494803],[-127.28272769029488,57.08780536048422],[-127.28242071620816,57.087735525374946],[-127.28211476735058,57.087665679480686],[-127.2818117962877,57.08759244115259],[-127.2815118569816,57.087516930704815],[-127.28121589883021,57.08743689718894],[-127.2809229725356,57.08735459160047],[-127.28062999362331,57.08727116506581],[-127.28033905987404,57.087186596994066],[-127.28004811088796,57.08710202844062],[-127.27975816646752,57.08701632857821],[-127.27946818601981,57.086929507621186],[-127.27917824419512,57.08684380648038],[-127.27888826636028,57.086756984245106],[-127.27859832713139,57.08667128182607],[-127.27830740239756,57.08658670925986],[-127.27801543834403,57.08650214624581],[-127.27772351284536,57.086418703039094],[-127.2774295612006,57.08633639986028],[-127.27713568531976,57.08625633693516],[-127.27683874264841,57.08617742420599],[-127.27654088882828,57.08610188219482],[-127.27623998467536,57.086027490185266],[-127.2759330945057,57.085959880972396],[-127.2756191734302,57.08589794391086],[-127.27530024879522,57.085840538306584],[-127.27497729086922,57.08578653381759],[-127.2746533841463,57.0857347794505],[-127.27432947829608,57.08568302428107],[-127.27400557331858,57.085631268309356],[-127.27368576133567,57.08557835075646],[-127.2733689068763,57.08552092028205],[-127.27305811934119,57.08546006737911],[-127.27275545932191,57.0853946511661],[-127.27246078250607,57.08532131065408],[-127.27217724784069,57.08524113590677],[-127.27190580525887,57.08515187609951],[-127.27165147628598,57.08504899908136],[-127.2714223546123,57.08492794279],[-127.27121546292469,57.08479209883402],[-127.27102371520161,57.08464601964584],[-127.27084201181711,57.08449087580116],[-127.27066741645571,57.08433230003597],[-127.2704937724457,57.08417147316869],[-127.27031505086524,57.084012937189996],[-127.27012723379028,57.083860093655495],[-127.26992628677195,57.08371634425512],[-127.26970510331279,57.0835851205564],[-127.26946662383,57.08346191056919],[-127.26921285533895,57.08334445303432],[-127.26894692338746,57.08323383826719],[-127.26866886494078,57.08313118664732],[-127.26838388643132,57.08303756827709],[-127.26809096767086,57.08295411384204],[-127.26779322999425,57.082880792943904],[-127.2674836240532,57.0828232781275],[-127.26716108857408,57.082780458799604],[-127.26683161543689,57.082746672586445],[-127.26649712115996,57.08271741756407],[-127.26616366789285,57.08268815158331],[-127.2658362239885,57.08265322235991],[-127.26551774691562,57.082608117987704],[-127.26521322571377,57.082548306881655],[-127.26492667507722,57.082469266951584],[-127.26465809917842,57.082372119095595],[-127.26440351299772,57.08226026450507],[-127.26415990585697,57.08213709488945],[-127.26392329641827,57.08200713215041],[-127.26368869582681,57.081874907919534],[-127.26345305637459,57.08174269335898],[-127.26321343705366,57.08161500019968],[-127.26296379188932,57.08149637021662],[-127.26270315398487,57.0813890543352],[-127.26242545693688,57.08129647364376],[-127.26213581650181,57.0812174577083],[-127.26183611284588,57.08114638419417],[-127.26152841024019,57.081083233061776],[-127.26121573982314,57.08102573331596],[-127.26089801141683,57.08097164416807],[-127.26057825627655,57.080918694658166],[-127.26025853877235,57.080866864822475],[-127.25993980932151,57.0808139038567],[-127.25962507908906,57.08075642025261],[-127.25931427841101,57.08069329390252],[-127.25901049202594,57.080623374246294],[-127.2587146705671,57.08054441053911],[-127.25842474982524,57.080456422756434],[-127.2581388490626,57.080365033135884],[-127.25785287629179,57.08027140198218],[-127.2575669782661,57.08018001112016],[-127.25727713623623,57.08009426172191],[-127.25698239950225,57.080016404541674],[-127.25667982987419,57.07995207190323],[-127.25636255641538,57.07991141722396],[-127.25603359357737,57.07989216973816],[-127.25569962496213,57.07987745286126],[-127.25536856179725,57.079857103118734],[-127.2550472350409,57.079818725898505],[-127.25473169941174,57.079767963280084],[-127.25441804603074,57.07971157776019],[-127.25410530775443,57.079651820271636],[-127.25379262353053,57.07959318233373],[-127.25347800564758,57.07953904547633],[-127.25316048316162,57.079490539822146],[-127.2528391982134,57.07945327762903],[-127.25251212274252,57.0794283991517],[-127.2521831294512,57.079408021504],[-127.25185510390689,57.079385392125225],[-127.25153089887128,57.079353758800885],[-127.25121054759173,57.07931312124332],[-127.2508910749667,57.07926799124951],[-127.2505735215157,57.07921835884946],[-127.25025691985687,57.079166474947],[-127.24994232696417,57.079112329419175],[-127.24962771844372,57.079058183292744],[-127.24931511875221,57.079001775560705],[-127.24900147957494,57.078945377046026],[-127.24868886520619,57.0788889679757],[-127.24837623186322,57.07883143754255],[-127.24806358294217,57.078773906520325],[-127.24775095147156,57.07871637459309],[-127.24743930844025,57.078657711667],[-127.24712666233556,57.07860017840604],[-127.24681399732074,57.07854152378219],[-127.24650239348944,57.078483979082606],[-127.24618975020121,57.078426443582956],[-127.24587708803028,57.07836778672029],[-127.245565487011,57.078310239789516],[-127.24525281022456,57.07825158159294],[-127.24494121108259,57.078194033175414],[-127.24462855270873,57.07813537332944],[-127.24431691915676,57.078076702967],[-127.2440053228346,57.07801915232066],[-127.24369265079858,57.07796049039604],[-127.24338003249092,57.077902948025155],[-127.24306743485634,57.07784652552312],[-127.24275481841217,57.07778898165837],[-127.2424411987642,57.07773256741712],[-127.24212761626019,57.077677272882504],[-127.24181303050298,57.077623107961905],[-127.24149846214642,57.077568942127186],[-127.24118391435837,57.077515896151716],[-127.240868343587,57.07746285916214],[-127.24055377787398,57.077408691055226],[-127.24023919653416,57.077354522348635],[-127.2399235560751,57.077299242161544],[-127.23960899303334,57.07724507178218],[-127.2392944143649,57.07719090080316],[-127.2389788488706,57.077137859253945],[-127.2386632842475,57.077084816943184],[-127.23834673276684,57.077032904052565],[-127.23803023783391,57.07698323147054],[-127.2377137963264,57.076934678424614],[-127.23739531100136,57.07688726481535],[-127.23707691512577,57.076842091191914],[-127.23675665569559,57.07680365928184],[-127.23643054537817,57.07677536927942],[-127.23610264321844,57.07675606186064],[-127.23577378962835,57.07673900423914],[-127.23544387646949,57.07672083502886],[-127.23511687154632,57.07669703343774],[-127.23479078283592,57.07666985995319],[-127.23446467510142,57.07664156503777],[-127.23413955568888,57.076612139157916],[-127.23381443677427,57.07658271246828],[-127.23348931835763,57.07655328496877],[-127.23316312413627,57.07652274603733],[-127.23283800672579,57.07649331691538],[-127.23251288981326,57.076463886983554],[-127.23218678550423,57.07643558637638],[-127.23186166957892,57.076406154822415],[-127.23153554972619,57.07637785274397],[-127.23121043478817,57.07634841956764],[-127.23088532034818,57.07631898558161],[-127.23055918258315,57.07628956044697],[-127.23023410501496,57.07626124529924],[-127.22990798759083,57.07623293915391],[-127.2295818871604,57.0762046320379],[-127.22925580654356,57.076177444723655],[-127.22892977873813,57.076151376899894],[-127.22860377068916,57.07612642887825],[-127.2282767392448,57.076101489685605],[-127.22794970822493,57.076076549673296],[-127.22762168961064,57.07605273894102],[-127.2272936906787,57.0760300480008],[-127.22696581598554,57.076010717464825],[-127.2266370086024,57.07599475727511],[-127.2263083445333,57.075983278102704],[-127.22597881908466,57.075977410191],[-127.22565040554774,57.0759737725919],[-127.22532003512222,57.07597351494709],[-127.22499077647396,57.07597548761627],[-127.22466051317467,57.075978589686436],[-127.2243313450437,57.075983922231806],[-127.22400118869757,57.075990384018496],[-127.22367110360712,57.07599908589395],[-127.22334098269341,57.076006666471635],[-127.22301093297772,57.076016487138624],[-127.22268188777005,57.07602517675349],[-127.22235183772695,57.076034995752586],[-127.22202295387525,57.07604928617312],[-127.22169422879519,57.07606805746117],[-127.22136555811318,57.07608906900151],[-127.2210379274057,57.07611006997259],[-127.22070927251876,57.07613107970491],[-127.22038042282149,57.07614648644746],[-127.22005243530624,57.07615628031056],[-127.21972419864488,57.07615823010456],[-127.21939574859721,57.076153456291],[-127.21906708533574,57.07614195886827],[-127.21873831565199,57.076127099226284],[-127.21840943963244,57.07610887736421],[-127.21808049288396,57.07608841374528],[-127.21775154648584,57.076067949297],[-127.21742367627247,57.076048594770796],[-127.21707158790342,57.07604739818524],[-127.2168058850351,57.07610031356835],[-127.21649387149158,57.07615814361651],[-127.21617189804327,57.07616226763015],[-127.21584589819012,57.07613728771689],[-127.2155174966594,57.07610112143009],[-127.2151892918502,57.076071677259065],[-127.21485646681076,57.07605908723194],[-127.21447445643253,57.076058162391526],[-127.21421501320356,57.076113255753754],[-127.21406624142776,57.07617516383713],[-127.21409061154812,57.07639125032974],[-127.2141661073822,57.07659116971172],[-127.2141336120552,57.07677192027156],[-127.2140720570664,57.076947337416506],[-127.21400323311217,57.07712170142393],[-127.21392721090007,57.077297253214056],[-127.21384704064593,57.07747172279057],[-127.2137627246682,57.077646230918994],[-127.21367636018836,57.07782075807271],[-127.21358994301868,57.07799416487811],[-127.21350357697204,57.07816869196098],[-127.21342026291484,57.0783420698072],[-127.2133411474502,57.07851765014362],[-127.21326619523964,57.07869431251152],[-127.21319436592354,57.07887206659719],[-127.21312258783597,57.07905094097991],[-127.21304869286266,57.07922871423356],[-127.21297064967413,57.07940540524725],[-127.21288632547292,57.07957991305128],[-127.21279467741311,57.07975112653286],[-127.21269263598454,57.079920195014346],[-127.21257910641094,57.080084887053935],[-127.21244673239698,57.08024190861643],[-127.21223613781133,57.08037387880162],[-127.21196916687086,57.080486198210046],[-127.2116907424097,57.08059526108768],[-127.21144368992088,57.08071748152646],[-127.21122177858777,57.08085067598029],[-127.21100508914952,57.080986063162364],[-127.2107904979257,57.081122551301746],[-127.21057902888079,57.08126013090443],[-127.21036967458149,57.08139881133564],[-127.2101613780335,57.081538602413595],[-127.2099530799698,57.08167839317299],[-127.20974373989905,57.08181819326507],[-127.20952711034883,57.081955819027534],[-127.20930631501254,57.08209236225775],[-127.20908551810696,57.08222890512746],[-127.20886789515032,57.082367659799985],[-127.20865752338118,57.08250746770919],[-127.2084586023776,57.082650531576085],[-127.2082752777737,57.08279681304888],[-127.20811070870808,57.08294852452983],[-127.20796905963931,57.0831067483218],[-127.20785564131722,57.08327591851611],[-127.20776722672979,57.08345270267939],[-127.2076985386315,57.08363266653732],[-127.20764850151323,57.083814699284],[-127.2076128455717,57.0839943572806],[-127.20759457049925,57.084168250369224],[-127.20770721320604,57.08433532731599],[-127.20786217318351,57.084502012317884],[-127.20793477757458,57.084676184698594],[-127.20796935486355,57.084856313254456],[-127.2079770569122,57.08503556993153],[-127.20795585392706,57.085215094329314],[-127.20794500927754,57.085395643616884],[-127.2079753874535,57.08557356955761],[-127.20801714862368,57.08575251089429],[-127.20807230368159,57.08593020739141],[-127.20814291750601,57.08610663990753],[-127.2082340215675,57.086278399408734],[-127.20834977857581,57.08644544728977],[-127.208485037471,57.08660895201145],[-127.20862954530597,57.08677125012125],[-127.20877306550872,57.08693467805549],[-127.20890629843984,57.08709932200739],[-127.20904064368618,57.08726619714764],[-127.20912430663694,57.087463803659226],[-127.20915705665234,57.08761817081651],[-127.20921492058598,57.087783513202936],[-127.20914822578187,57.08796121829271],[-127.20907641187137,57.08814009161791],[-127.2090479419242,57.088318563180835],[-127.2090897275931,57.088497504374985],[-127.20910156527165,57.08867672317781],[-127.20902966275109,57.08885335576946],[-127.20893601632018,57.08902794825022],[-127.20897942595263,57.08922592818726],[-127.20907276497402,57.08936964678008],[-127.20910479314621,57.08953410810282],[-127.20913143817558,57.089724397833855],[-127.20907495831284,57.08989864600368],[-127.20896685516232,57.090073372609446],[-127.20891457441307,57.09024982343493],[-127.20894393671342,57.090427759264436],[-127.20900533285953,57.090606519033656],[-127.2090594939949,57.09078534585902],[-127.20907129696604,57.09096344448209],[-127.20902311015169,57.09113873670846],[-127.20894085902462,57.09131434462311],[-127.20884613017152,57.091487826515596],[-127.20876387748785,57.09166343436299],[-127.20871674789731,57.09183983755344],[-127.20871345812664,57.09203040503801],[-127.20870521072719,57.09219523994146],[-127.20869657371121,57.09238025298569],[-127.20868594041437,57.09260002954795],[-127.20859777327139,57.09275215526273],[-127.20859669068642,57.09291468224897],[-127.20852894331546,57.09309239732267],[-127.20847462661833,57.093269987967254],[-127.20844812591966,57.09344507933647],[-127.20847011135884,57.093618600788595],[-127.20858380988362,57.093785668629245],[-127.20873672792855,57.09395125222595],[-127.20886802571921,57.09411927762733],[-127.20897770299693,57.09428974489959],[-127.20909255237581,57.094460164176326],[-127.2092012425846,57.094631761277036],[-127.20929551288985,57.09480461278746],[-127.20936604279761,57.09497768432728],[-127.20940466058639,57.095154414110006],[-127.209422697367,57.095333576313074],[-127.20942117719578,57.09551516145046],[-127.20937130918402,57.09570279882917],[-127.20930382513279,57.095855854406956],[-127.2092738663246,57.096052273721284],[-127.20923289413548,57.09622749974917],[-127.20912869272414,57.096395466109534],[-127.20899757147322,57.09656144023426],[-127.20885185112604,57.09672306626371],[-127.20869890934269,57.09688475903843],[-127.20854909120138,57.09704754351673],[-127.2084054324175,57.097209149973864],[-127.20825141065262,57.097369731437986],[-127.20808909110141,57.097529268748694],[-127.20792673495751,57.09768768539176],[-127.2077695677765,57.09784717461619],[-127.2076238373831,57.09800879942466],[-127.20749780528627,57.09817248340064],[-127.2073966807825,57.09834042001997],[-127.20732775295629,57.09851366270811],[-127.20728788066393,57.09869111977578],[-127.20726774309809,57.09887175668636],[-127.20726109259853,57.09905451044865],[-127.20725857284492,57.099237226014466],[-127.2072518870124,57.09941885933905],[-127.20723277334602,57.09959948686097],[-127.20719182328425,57.09977583318435],[-127.20710829296742,57.099944727755876],[-127.2070377282651,57.1000003003325],[-127.2069188251798,57.10009554841789],[-127.20670232888102,57.10024101471023],[-127.20655850955282,57.100398137561726],[-127.20650609806611,57.10057122728027],[-127.20648791570856,57.100748483757705],[-127.20649158865344,57.10093114223893],[-127.20650352365686,57.10111372435146],[-127.20651129253616,57.101295224196605],[-127.20651282970626,57.10147566087317],[-127.20652571907154,57.101655992607654],[-127.20653761925506,57.10183745432535],[-127.20653499025399,57.10201680878241],[-127.20650127214631,57.10219308827612],[-127.20643340961918,57.1023674418389],[-127.20634070775527,57.10254090420401],[-127.20623864775258,57.10271221139544],[-127.20613662203606,57.102884639017084],[-127.2060377020817,57.10305703786793],[-127.20592527606505,57.1032273198437],[-127.20582527801392,57.10339860770807],[-127.2057677571413,57.10357398628123],[-127.2057485640533,57.10375237315149],[-127.20574700751352,57.10393283871237],[-127.20575683905513,57.10411431988782],[-127.20577080204451,57.10429576291303],[-127.20578266429084,57.10447610455744],[-127.20578626386131,57.10465652257271],[-127.20577639292227,57.10483594426247],[-127.20574577569344,57.10501219521557],[-127.20568825204059,57.1051875739595],[-127.2056018240992,57.105363219728],[-127.2054873940136,57.10553576167831],[-127.20534898741205,57.10570180010184],[-127.20518759138048,57.10585908416906],[-127.20500414350947,57.1060053635002],[-127.20479986065978,57.10614623084567],[-127.2045747426885,57.10628168610605],[-127.2043349165515,57.106409430995576],[-127.20408244804493,57.106529446371134],[-127.20382242318577,57.10663944360881],[-127.2035495267536,57.10673386759854],[-127.20324901942169,57.10680500844077],[-127.20293263943158,57.106863965911714],[-127.20261408735674,57.10691958017605],[-127.20230411344983,57.10698520197607],[-127.20199952179424,57.10705749835903],[-127.20169178690958,57.10712870215106],[-127.20138615178148,57.10720100669735],[-127.20108902423601,57.10728107793733],[-127.2008067068176,57.10737222038753],[-127.2005454670161,57.107476618122305],[-127.20030117301766,57.107594309271654],[-127.2000695879226,57.10772197044429],[-127.20000060932018,57.107762954105745],[-127.19984640484459,57.10785403722419],[-127.19962855172255,57.107991658710624],[-127.19941173824579,57.10812927027832],[-127.19919282232156,57.10826577998729],[-127.19896650748568,57.1083967532178],[-127.1987349830848,57.10852665308765],[-127.19849614819088,57.10865437804494],[-127.19824350678587,57.108769900338956],[-127.1979586861767,57.10884760974601],[-127.19762585127111,57.108876443198795],[-127.19723206267716,57.108905834967125],[-127.19684896414677,57.108913831995885],[-127.19674275307781,57.109020162714124],[-127.19697675121265,57.10906845357365],[-127.1973873209713,57.109080378851054],[-127.1977591091156,57.10910722938033],[-127.19808671654548,57.10914233015805],[-127.19841342324706,57.109181921659406],[-127.19873219824404,57.10923167255754],[-127.19903393016607,57.10929839152603],[-127.19932499220653,57.10938762421097],[-127.19957643348457,57.10953101968694],[-127.19983171190118,57.109665412891935],[-127.20000044732954,57.10974119801197],[-127.20004342197008,57.10976097760198],[-127.20012598326959,57.10992273707645],[-127.20012966185325,57.11010651745166],[-127.20011695256134,57.1102949318167],[-127.20013922525338,57.11047854126428],[-127.20015243799631,57.11067007977648],[-127.20018514633182,57.11085695576713],[-127.20029345777715,57.11101623686413],[-127.20050181522606,57.111136489860755],[-127.20076640293148,57.111237171311934],[-127.20106671910905,57.111324073634215],[-127.2013812886888,57.11140411916828],[-127.20169165729808,57.11148196099963],[-127.2019967484748,57.11155648825037],[-127.20232615894113,57.111615099297445],[-127.20265852084985,57.11166919904793],[-127.20297260500129,57.11173355381022],[-127.20324502966314,57.11182070829981],[-127.20345550193942,57.111942058102194],[-127.20361620760518,57.11209076622816],[-127.20374230121861,57.112256605716006],[-127.20385013365791,57.112432700933546],[-127.2039529340754,57.11261332579541],[-127.2040669152142,57.11278824336038],[-127.20420434997283,57.11295285708263],[-127.20438561882483,57.11309801225601],[-127.20463414155833,57.11321340515203],[-127.20492351320067,57.113312729002814],[-127.20521184499152,57.1134120618346],[-127.20545938260565,57.11352858314645],[-127.20564263818962,57.113671476710444],[-127.2057923040277,57.11383037186819],[-127.20591443768774,57.11400072948192],[-127.20601197261841,57.11417803923398],[-127.20608778621421,57.11435442882831],[-127.20615427553787,57.11452978374535],[-127.20622285038642,57.11470624020813],[-127.20629250246603,57.114883807532124],[-127.20636211997555,57.11506025434342],[-127.20643177334165,57.11523782163916],[-127.20650043769832,57.11541651889259],[-127.20656802606563,57.11559410526025],[-127.20663254257433,57.11577284084243],[-127.20669396849274,57.11595160499206],[-127.20675122712893,57.11612928684165],[-127.20680438887717,57.11630812739526],[-127.20685239355379,57.11648701563443],[-127.20689312298221,57.11666485032245],[-127.20692765373194,57.11684274233683],[-127.20695388412183,57.117019590287995],[-127.20697290942351,57.117197625704314],[-127.20698154905999,57.11737351551837],[-127.20697984029434,57.117549501037935],[-127.20695434094985,57.11772458572026],[-127.20690091788498,57.11789880776079],[-127.20682575344662,57.118072109966974],[-127.20673405690856,57.11824556497041],[-127.20662992569429,57.118418014033786],[-127.20651749253693,57.118589418929844],[-127.20640198564537,57.1187619729739],[-127.20628856071195,57.11893450768986],[-127.20618131765,57.119106985201526],[-127.20608449299463,57.11928160803946],[-127.2060031226832,57.11945496722317],[-127.20589285984883,57.11959721008724],[-127.20587082887327,57.11981709583827],[-127.20586798429775,57.11998972961778],[-127.20587679552433,57.12017122237953],[-127.20582965286572,57.12034874868999],[-127.20577009179584,57.12052526887293],[-127.20570634532447,57.12070070687267],[-127.2056395418806,57.120877293918575],[-127.20556961102245,57.121052788998654],[-127.20549966299215,57.12122828421651],[-127.20542973085497,57.12140377926693],[-127.205360858307,57.121580385342824],[-127.2052940165532,57.12175585182138],[-127.20522927600277,57.12193241971455],[-127.20516660149313,57.122108968521054],[-127.20510491627893,57.12228438735356],[-127.20504328221685,57.12246092653203],[-127.2049816310545,57.1226374658567],[-127.20491999585838,57.12281400502267],[-127.20485938517055,57.12299053472251],[-127.20479773231163,57.12316707402905],[-127.2047350538008,57.12334362278849],[-127.20467237471337,57.12352017154064],[-127.20460969504927,57.12369672028568],[-127.20454494807682,57.12387328809104],[-127.20448226724989,57.124049836820646],[-127.20442269423947,57.1242263568683],[-127.20436418095893,57.124403987962474],[-127.20430669225468,57.12458160959797],[-127.20424921955252,57.12475923107873],[-127.20418966299495,57.12493687177193],[-127.20412904559535,57.12511340140797],[-127.20406533569299,57.125289959552546],[-127.20399743987939,57.12546543545164],[-127.20392542632509,57.12564094930133],[-127.20384715991645,57.12581539994805],[-127.20376263849558,57.125987666567084],[-127.20366979721392,57.126158889012665],[-127.2035655253302,57.126327975107344],[-127.20344674927293,57.12649607398367],[-127.20331650717971,57.12666091593499],[-127.20317587784334,57.1268247326501],[-127.20302584913894,57.12698527332564],[-127.202870660175,57.1271458613746],[-127.20271022411272,57.12730425591154],[-127.20254764957122,57.127460428286234],[-127.2023840319716,57.12761661006914],[-127.20221832752779,57.12777169003349],[-127.20205053825791,57.12792678898559],[-127.20188069720774,57.128081906613254],[-127.2017087010994,57.12823480219113],[-127.20153364650963,57.12838884652458],[-127.20135645336839,57.12854066863586],[-127.2011771918322,57.128692509538155],[-127.20099476650293,57.12884213762963],[-127.2008091959041,57.12899067356002],[-127.20062048001508,57.129138117315605],[-127.20042860029763,57.129283348218436],[-127.2002325500131,57.12942749634166],[-127.2000217836713,57.12956393357321],[-127.2000004384347,57.12957533807739],[-127.19978375881425,57.12968829174435],[-127.19952999257762,57.12980494824202],[-127.19927311593985,57.129921632809015],[-127.19902667811432,57.1300415835181],[-127.19880336163729,57.13017365067424],[-127.19859889236533,57.130313390293495],[-127.19840385522178,57.130457526369796],[-127.19821616469433,57.130604957249005],[-127.19803165162246,57.130754600379426],[-127.19784922266875,57.13090534496958],[-127.19766680881872,57.13105608916999],[-127.19748121463186,57.13120462061351],[-127.19728830582721,57.131350977191346],[-127.19706522045358,57.13149088510499],[-127.19682962567919,57.13162754478154],[-127.19661273850784,57.131767395113776],[-127.19644577626116,57.13191687519794],[-127.19635368527899,57.132080240035684],[-127.19630528392422,57.13225217127612],[-127.19628497223594,57.13242944937669],[-127.19628335348683,57.13260991876487],[-127.19629632658318,57.13279361701409],[-127.19631755217054,57.13297723968868],[-127.19633778755029,57.133161992294085],[-127.196352758462,57.1333434306419],[-127.19637902127242,57.13352252389372],[-127.19643422603956,57.13370135201608],[-127.19644494170345,57.13387946690525],[-127.19640911689793,57.13405688735937],[-127.19635986262027,57.1342344308502],[-127.19630025483119,57.134412069183895],[-127.19623751885312,57.134588615324944],[-127.19617478229775,57.13476516145883],[-127.19611518936594,57.13494279962616],[-127.19603273379074,57.13511728465258],[-127.19590453286045,57.135283221843096],[-127.19573779701598,57.13544054503786],[-127.19552698166143,57.13557697562012],[-127.1952721215805,57.13569363388883],[-127.1949908161135,57.13579147938596],[-127.1946899074082,57.135856999291555],[-127.19426924270918,57.135895592705324],[-127.19394261011811,57.13586607487756],[-127.1936152663597,57.13584665027818],[-127.19327295218959,57.135877799342616],[-127.19296350327562,57.13586829714706],[-127.19273611523684,57.135738115188815],[-127.19249941730766,57.135608017870055],[-127.19219528320797,57.13553681930218],[-127.1918681844665,57.135491608873465],[-127.19153905599258,57.13548116209801],[-127.19121382066126,57.13549645823289],[-127.19088898420432,57.13552407912351],[-127.1905622720042,57.135558441322644],[-127.1902356452825,57.13559504359453],[-127.18990783697079,57.13562717246399],[-127.18958081032467,57.135651447530456],[-127.18925155876032,57.13567013785257],[-127.18892322812138,57.135685456448975],[-127.18859276041468,57.13569855199478],[-127.18826331790162,57.13571163737477],[-127.18793392639807,57.13572584229406],[-127.18760458748295,57.135742287574615],[-127.18727635959738,57.13576096359426],[-127.18694820072528,57.135781879831086],[-127.18662014546625,57.13580615680689],[-127.18628995311266,57.13582821069566],[-127.1859718320332,57.13587257084465],[-127.18570931585649,57.135976950526334],[-127.18546184055556,57.136099126524435],[-127.18520694640637,57.13621576519698],[-127.18493188289723,57.136315773824926],[-127.18464959026385,57.136415847441235],[-127.18436413411015,57.13651370745799],[-127.18407108640045,57.136600427312565],[-127.18376917987108,57.136668172588635],[-127.18345820753046,57.13671022008628],[-127.18313217500528,57.136733349061274],[-127.18279837959702,57.13673973498834],[-127.18246008584572,57.1367338315972],[-127.18212453981673,57.13671669410569],[-127.18179695317066,57.136689396214265],[-127.18148728372196,57.13663951871597],[-127.1811929470334,57.13655027259264],[-127.18089953368371,57.13645765497067],[-127.18059172780208,57.13640103352598],[-127.18026827977576,57.13637369442975],[-127.17993676932112,57.13635315238578],[-127.17960244198825,57.13634160162216],[-127.1792673139783,57.1363379030753],[-127.17893456334525,57.136344269717775],[-127.17860731710788,57.13636179418013],[-127.1782824642549,57.136389383735],[-127.17795166736876,57.13642599276295],[-127.17762225578025,57.13647379679833],[-127.17730256768525,57.13653496235481],[-127.17700302654374,57.13661275806863],[-127.17673091075595,57.136708239335015],[-127.17648832195528,57.13682250822988],[-127.1762647853753,57.13695117592508],[-127.17605399553389,57.13709093679839],[-127.17585270554355,57.137237336809726],[-127.17565459217376,57.137385949586935],[-127.17545755361256,57.13753567322731],[-127.1752541915232,57.1376820909718],[-127.17504129216663,57.137820748364796],[-127.17481357559475,57.13794833034701],[-127.17456680391427,57.13806151244633],[-127.17429680790283,57.138159211202904],[-127.17400673155181,57.13824251904486],[-127.17370189046768,57.13831699224231],[-127.17338852044125,57.13838257466956],[-127.17307086068423,57.13844371152875],[-127.17275424195273,57.13850483826173],[-127.1724428335752,57.13856703828369],[-127.1721325181618,57.13863146941738],[-127.17182020261451,57.138698159421345],[-127.17150467373165,57.13876151499094],[-127.1711879814643,57.138820396886764],[-127.17087002331874,57.13887144351646],[-127.17055068037297,57.138911293434745],[-127.17022988454013,57.13893770557462],[-127.16990659301283,57.13894956843392],[-127.16957873967688,57.13894802133268],[-127.16924741761979,57.138934175287964],[-127.1689147630083,57.13891025282649],[-127.16858392089858,57.138878467469496],[-127.16825601832463,57.1388410508192],[-127.16793208092885,57.138797993728176],[-127.16761627804765,57.13875037978838],[-127.16731110563504,57.138678011754756],[-127.16701571016125,57.138587622335315],[-127.16672335749992,57.13849496341929],[-127.16642938162258,57.1384168891903],[-127.16612402358219,57.13837254091867],[-127.16578634446215,57.13842150953876],[-127.16556755613391,57.13846941634355],[-127.16541253075265,57.13871065789634],[-127.16548070562663,57.13887817449032],[-127.16561820444942,57.13904731408927],[-127.16579770697611,57.139203749505086],[-127.1659974606038,57.13934543308746],[-127.16621353551326,57.13948024566239],[-127.16644088978958,57.139611594675756],[-127.16667234675509,57.13974178583987],[-127.1669027797559,57.1398719857686],[-127.16712702901454,57.14000336140763],[-127.16734926282206,57.14013587553549],[-127.16757255781542,57.14026950066064],[-127.16779578614171,57.140400884357675],[-127.16802111776194,57.14053336972605],[-127.1682484503431,57.14066359516577],[-127.16847781799694,57.14079268119556],[-127.16871838040251,57.140916062505205],[-127.16896815472039,57.141035998448245],[-127.16922097208366,57.14115366502708],[-127.16946767388046,57.141274748403376],[-127.1696990486483,57.14140157277417],[-127.16990795363985,57.14153756470614],[-127.17011200673505,57.14168368732301],[-127.17031108894038,57.141836579208125],[-127.1704907262285,57.14199637008915],[-127.17063839180959,57.142158688966],[-127.17073757756778,57.14232480474174],[-127.17077478350495,57.1424937176873],[-127.17074387281198,57.14266660368968],[-127.17066656553091,57.14284438887528],[-127.17056550398657,57.143023507741326],[-127.17046755145431,57.14320259868626],[-127.17039437741131,57.143380346724435],[-127.17037593952085,57.14355536265233],[-127.17051161403495,57.14373123940447],[-127.17068326331335,57.14390006861763],[-127.17068581232668,57.14405135897047],[-127.17044129639278,57.144172358980505],[-127.17014605652682,57.14429157123833],[-127.17001412439224,57.1444418245358],[-127.17000393917876,57.144616766611584],[-127.17004269902998,57.144802478711256],[-127.1700825014711,57.14498818148965],[-127.17012105697722,57.14516717041829],[-127.17016998655554,57.145347187273956],[-127.17017437977321,57.14552536141356],[-127.17012594666964,57.14570064625167],[-127.170064114006,57.14587717194895],[-127.16999395827439,57.146052651338806],[-127.16991761458505,57.1462281861253],[-127.16983915151435,57.14640261902254],[-127.16976176416216,57.14657816309689],[-127.16968958849978,57.146754781318414],[-127.16962667569065,57.14693019574435],[-127.169572136816,57.14710889771047],[-127.16952272501945,57.14728643293255],[-127.16947649140089,57.14746618138656],[-127.16942812098833,57.14764370728967],[-127.16937458830195,57.14782127940246],[-127.16931273221759,57.147997805170405],[-127.16923733897555,57.14817108956031],[-127.16914017029933,57.14834232711395],[-127.1689900174508,57.1485061928302],[-127.16880969706828,57.14866472407294],[-127.16863559602099,57.148823199438986],[-127.16849984757339,57.14898469407929],[-127.16843661842543,57.14915002339097],[-127.16845531018116,57.14932246593107],[-127.16853206285194,57.14949887256197],[-127.16863879598064,57.14967501100382],[-127.16875173453677,57.149851093877494],[-127.16885009456848,57.15002394458566],[-127.16894842133306,57.15019567470437],[-127.16905187699041,57.15036623804193],[-127.16915948648501,57.15053676415546],[-127.1692670462275,57.15070616981226],[-127.16937465763247,57.150876695791794],[-127.16948015106551,57.15104611982725],[-127.16954622906567,57.15121141326964],[-127.16968091864531,57.1513884217551],[-127.16968419900795,57.15152961879061],[-127.1692833180348,57.15161278707523],[-127.16898143799912,57.151686101617635],[-127.16871035774456,57.151786040219335],[-127.1684594790643,57.151903731100866],[-127.16821177778448,57.15202363477644],[-127.1679587936207,57.1521402226709],[-127.16770700438158,57.15226240361568],[-127.16745629006653,57.152385695311786],[-127.16719589994383,57.15249674367013],[-127.16691826344807,57.152585528643556],[-127.16661375753097,57.152640927597844],[-127.16628351098312,57.15266629280491],[-127.16594227518728,57.15267045919359],[-127.1656079801258,57.15266447517157],[-127.16527826882383,57.15263939506088],[-127.16494697090724,57.15259639476204],[-127.16461661406747,57.152550022710486],[-127.16429187929113,57.15251817070488],[-127.16397631996375,57.152516498940614],[-127.16367051245689,57.152562935845026],[-127.1633763888861,57.152654101746506],[-127.1631016089215,57.152768632505364],[-127.16284966417219,57.15288632198156],[-127.16262079170704,57.153013893263214],[-127.1624045828707,57.15315031823246],[-127.16219262759496,57.15329006754138],[-127.16197644963151,57.15342761237244],[-127.16174970727636,57.15355740487006],[-127.16151775027494,57.15368612248545],[-127.1612836554842,57.15381261699937],[-127.16104959307546,57.15394023164869],[-127.16081759748928,57.154067827515036],[-127.16059086479312,57.1541987387539],[-127.16036313853185,57.15433077926651],[-127.16012506869302,57.154462911220186],[-127.159911029447,57.15460267532983],[-127.1597646783758,57.15475753013319],[-127.15967984473215,57.15492865148063],[-127.15962415441763,57.155105118373974],[-127.15958620653369,57.15528703203358],[-127.15955449754287,57.15547001118369],[-127.15951651508449,57.155650804327955],[-127.15946188281522,57.15582838268777],[-127.1593780879681,57.1559994947255],[-127.15925160895843,57.15616201864861],[-127.15907736663604,57.15631824107164],[-127.15886760301207,57.15646356984297],[-127.158635720333,57.15659564425838],[-127.15839095099332,57.1567121406592],[-127.15809324857874,57.156788755286875],[-127.15777021508859,57.15684878098369],[-127.1574746465579,57.156927616974585],[-127.15723828101264,57.15704852013844],[-127.15703568700246,57.157191540764444],[-127.15683946618724,57.157340108886764],[-127.15662425495007,57.15747651550214],[-127.1564038114348,57.157610726374706],[-127.15618232381176,57.157744946113425],[-127.1559597582889,57.15787805416564],[-127.15573507162523,57.1580089389058],[-127.15550727224978,57.15813985078368],[-127.15527523281581,57.15826743720983],[-127.15503688472512,57.15839171644536],[-127.15477239905192,57.15850725945051],[-127.1544880319138,57.158615131639436],[-127.15420362944539,57.158721882669674],[-127.15393797804748,57.1588329508824],[-127.15370887186333,57.158954904375506],[-127.15353817565138,57.15909315457286],[-127.15345512017161,57.15925528963225],[-127.15344502402213,57.15943583509034],[-127.1534673040267,57.15962618242478],[-127.15347924078326,57.159816621081994],[-127.15344119166643,57.15999629249721],[-127.15332819662851,57.16016093351365],[-127.15318813873083,57.160320209022196],[-127.15303043634566,57.16047739837522],[-127.15285710777732,57.16063136285336],[-127.15267232406146,57.160783186450296],[-127.15247921304972,57.16093284153177],[-127.15228187910247,57.16108029187022],[-127.15208242407581,57.16122551891633],[-127.15188288365827,57.16136850471688],[-127.15166769949657,57.16150714468346],[-127.15143786396347,57.161640309144786],[-127.15120175314173,57.16177128678286],[-127.15096353826087,57.16190116167522],[-127.1507305357099,57.162032111084635],[-127.15050792637706,57.16216521027847],[-127.1503020171615,57.162302645495856],[-127.15012005789154,57.16244547386512],[-127.14997774142508,57.16259916164762],[-127.14991671407819,57.16277230933885],[-127.1499077774834,57.16295732803726],[-127.14991651879119,57.16314555376556],[-127.14991161905165,57.16332717444832],[-127.14992434675614,57.163509760907175],[-127.1499515739736,57.163693340661865],[-127.14997570635555,57.16387694766995],[-127.14997798909074,57.16405626355802],[-127.14993971769556,57.164229211198176],[-127.14984534923826,57.16439480644372],[-127.14970325966308,57.164556338034245],[-127.14952582857279,57.164712576074564],[-127.14932543582442,57.164862290699645],[-127.14911032356775,57.16500428848392],[-127.14888965959453,57.16513400536138],[-127.14861631231541,57.16523168020698],[-127.14831351128213,57.16531392135117],[-127.14804549325392,57.16541715242216],[-127.14768800340582,57.16550435587594],[-127.14742051170927,57.16552127554166],[-127.14709327029108,57.16554768587361],[-127.14676831509651,57.16558080042565],[-127.14644347682724,57.16561839654129],[-127.14611655196042,57.16565488929245],[-127.14579285567983,57.16569583631864],[-127.14547566709244,57.16574681315568],[-127.14517129345644,57.16581112713761],[-127.14489265064071,57.16590547796802],[-127.14463119439067,57.166020973839906],[-127.14436866032015,57.16613535777174],[-127.14408464819056,57.166223028774766],[-127.14377695599909,57.16628064342676],[-127.14345959277786,57.166326012605516],[-127.14313578775267,57.16636359139901],[-127.14280771036796,57.16639672334155],[-127.14247853937549,57.16642762231583],[-127.14215152051251,57.166461864200514],[-127.14182771305789,57.166499439757374],[-127.14150614086154,57.16654259923493],[-127.14118357504174,57.1665868874417],[-127.14086203473425,57.1666311658961],[-127.14053931752062,57.16667097042561],[-127.14021540673413,57.16670518031797],[-127.13989016923696,57.166729313327764],[-127.13954933837518,57.16675133977916],[-127.13919902150886,57.16676784377118],[-127.13885745755009,57.166765216116445],[-127.13854503823686,57.166733191616565],[-127.13835044020227,57.16669677772522],[-127.1380741689592,57.166523210301804],[-127.1378945186174,57.166362251376725],[-127.13770861283938,57.166200225840164],[-127.13748628047482,57.16606541745813],[-127.13723146019217,57.16595218752423],[-127.13696240740992,57.16584692686199],[-127.13668623915217,57.16574621094164],[-127.13641103214458,57.1656432444046],[-127.13614809118891,57.165534566444684],[-127.13590342420066,57.16541452068559],[-127.13569007299928,57.16526842289415],[-127.13549491286123,57.16510759573104],[-127.13530089667621,57.1649501209139],[-127.13508998427517,57.164816330365696],[-127.1348461544312,57.16472429665523],[-127.13455437843496,57.1646898418982],[-127.13422564492302,57.164700541085764],[-127.13387810944612,57.16474054457076],[-127.13353285755652,57.1647872523992],[-127.13320390821274,57.164825972036475],[-127.13287907959564,57.16486353427699],[-127.13255540896779,57.164905569055826],[-127.13223499829455,57.16495317901816],[-127.13192104192149,57.165008578214575],[-127.13161464857863,57.16507511962978],[-127.13132336539324,57.16516282560368],[-127.13104408021243,57.16527172317042],[-127.1307690802121,57.16538506644591],[-127.13049166258904,57.165487221588435],[-127.13020308908344,57.16556145145242],[-127.12989675681797,57.16559548373933],[-127.12957720102987,57.16560160843919],[-127.12924675538599,57.16558989291106],[-127.12891169350499,57.16556140373469],[-127.1285773284786,57.16552169923004],[-127.12824687132351,57.165474114224224],[-127.12792455914995,57.165421974719585],[-127.12761449709124,57.16536412451507],[-127.1273123495248,57.16529387602438],[-127.1270150708112,57.165213497259025],[-127.12672077337865,57.165128608752724],[-127.12642644432516,57.16504259902805],[-127.12613118912242,57.164959959171455],[-127.12583095190638,57.164884086645955],[-127.12552379516123,57.164819481477714],[-127.12520874187996,57.16476727286957],[-127.12489173544941,57.16471956369836],[-127.12457176610803,57.164676362636975],[-127.12424982710077,57.16463654027441],[-127.12392588549798,57.164598976034696],[-127.12360098400616,57.164563660938136],[-127.12327507318747,57.16452947455824],[-127.12294919577204,57.164496407928034],[-127.1226233189187,57.164463340486094],[-127.12229740982453,57.16442915167106],[-127.12173265337717,57.1643656286336],[-127.12143397223615,57.164448892496615],[-127.12113662747743,57.16454223179434],[-127.12083944507349,57.164641173232496],[-127.12054222838387,57.16473899344011],[-127.12024378750377,57.164830098400785],[-127.119945034042,57.164911117765534],[-127.11964373599255,57.164975345595224],[-127.1193407071038,57.16501604984643],[-127.11903381352036,57.16503100709371],[-127.11871699623035,57.16502475254811],[-127.11839147811902,57.16500400073412],[-127.11806037132838,57.16496872496788],[-127.11772885655694,57.164920001748456],[-127.11739913422196,57.164861174791774],[-127.11707527678031,57.164791088465364],[-127.11676155346305,57.164713068863904],[-127.11646203660845,57.16462596043345],[-127.11617995248139,57.16453309824681],[-127.11591940638685,57.16443332652408],[-127.11567707438158,57.16431994872168],[-127.1154519795181,57.16419409412429],[-127.11523900641211,57.16405804815751],[-127.11503515775173,57.16391519897894],[-127.11483834806708,57.16376556442282],[-127.11464460243985,57.163614782627256],[-127.11445183592086,57.16346175054471],[-127.1142560735662,57.16331210627108],[-127.11405418719285,57.163165876457164],[-127.11384420614309,57.16302531954875],[-127.11364119904123,57.16287573618716],[-127.11344417233275,57.16271825571264],[-127.1132430745947,57.16256305133012],[-127.11302891303166,57.16242140800011],[-127.11279272781147,57.1623046103352],[-127.11252446651787,57.16222395217035],[-127.11222916298843,57.162173786262464],[-127.11191683584548,57.16214281879352],[-127.11159150832268,57.16212765290067],[-127.1112571553182,57.16212265049161],[-127.11091576455378,57.162124432082884],[-127.11057131123351,57.1621273596456],[-127.11022781910826,57.16212803645815],[-127.10988725976249,57.16212308327015],[-127.10955466812385,57.16210685316878],[-127.10922183328442,57.16208277842218],[-127.10887466319866,57.16206330781675],[-127.10852434953927,57.162042742119155],[-127.10818001603943,57.16201427891363],[-127.10785287130435,57.161972219046305],[-127.10755208833056,57.16191088072443],[-127.10728885934114,57.1618245651201],[-127.1070662637433,57.161712125544405],[-127.10687205052085,57.161579270159265],[-127.10670011031513,57.16142941334442],[-127.10654443075174,57.16126933112081],[-127.10640090651711,57.161100179142295],[-127.10626245021956,57.16092762162907],[-127.1061229367328,57.160753952113986],[-127.10597941628656,57.160584799737876],[-127.10582371084288,57.16042359619491],[-127.10566698061322,57.16026240116727],[-127.10552038495545,57.160094395235824],[-127.10537480091365,57.15992525978001],[-127.10522110480349,57.159761796976476],[-127.10504911460956,57.15960969707016],[-127.10485071704997,57.159474632753565],[-127.10461573008988,57.15936229414184],[-127.10433991943687,57.159269354311],[-127.1040335638567,57.15919348448985],[-127.10370801688242,57.15913346773391],[-127.10337557698236,57.15908583755225],[-127.10304655500431,57.159049386022026],[-127.1027241107133,57.159025207336086],[-127.10239599194327,57.15902012990077],[-127.10206413894508,57.159028533138176],[-127.1017304259575,57.15904479704792],[-127.10139685798659,57.159065542215096],[-127.10106632004242,57.15908401933101],[-127.10073464266024,57.159099142706204],[-127.10040091288523,57.15911428252007],[-127.10006830535927,57.15913277453224],[-127.09974012413178,57.15916131594396],[-127.09942053845596,57.15920099254414],[-127.09911283556441,57.15925850174504],[-127.09881486660049,57.159330499199],[-127.09852449837554,57.159414761238516],[-127.09823951702552,57.15950682318783],[-127.09795775744439,57.15960334077412],[-127.09767607715331,57.15970209874831],[-127.09739431471915,57.159798615133944],[-127.09710932780303,57.15989067464524],[-127.09682751499682,57.15998494855554],[-127.09654571630173,57.16008034256796],[-127.09625852836142,57.160167935344724],[-127.09595570368387,57.160251175289],[-127.09563579737814,57.16035249106832],[-127.09531449460809,57.160441488597705],[-127.0950043713748,57.16048667916521],[-127.09472104991558,57.16045654866555],[-127.0944540101669,57.16038032705094],[-127.09419673960996,57.16028384811818],[-127.09394420288571,57.16017163741359],[-127.0936954369618,57.160047065527905],[-127.09344856619512,57.15991575234302],[-127.09319957990077,57.15978333558397],[-127.09294756441376,57.15965318537653],[-127.09268854197516,57.15953093912142],[-127.09242259171916,57.159419958607096],[-127.09214464575986,57.159323648635905],[-127.09185560230384,57.15923751829639],[-127.09155748263208,57.15915930896555],[-127.09125128079121,57.159087891446944],[-127.09093909722567,57.15902436897758],[-127.09062290483152,57.158965362554305],[-127.09030587852833,57.15891308731824],[-127.08998899581054,57.15886641427741],[-127.08966815229749,57.158825377655695],[-127.08934432553541,57.158788848443336],[-127.08901958408508,57.158756809378076],[-127.08869285469392,57.1587270277332],[-127.08836511501033,57.1586983745206],[-127.08803737581654,57.15866972048678],[-127.087710631381,57.158639936526],[-127.08738486650184,57.158607901942744],[-127.08706110728801,57.15857360820922],[-127.08674317351323,57.15852581528018],[-127.08644003344928,57.158452119518344],[-127.0861309577275,57.158388559864775],[-127.08581591576724,57.15833289486983],[-127.08549992729316,57.15828059947466],[-127.0851849022999,57.158226053665906],[-127.08487480443698,57.1581624995728],[-127.08456766035088,57.15809331609732],[-127.08427965409047,57.15800603986332],[-127.08400266983413,57.15790634246882],[-127.08371539214866,57.157807850700756],[-127.08342911030925,57.157708229236185],[-127.08315094612,57.15760293573873],[-127.08289121099712,57.157490763984214],[-127.08265701017115,57.15736717190603],[-127.08245764543724,57.157230961764135],[-127.08228588339841,57.157083314457466],[-127.08212634437406,57.15692884076913],[-127.08197909153824,57.15676978187644],[-127.08184101368609,57.15660616357975],[-127.08171320145449,57.15643909770712],[-127.081592527118,57.15626861017836],[-127.08147905381988,57.15609694214369],[-127.08137174043769,57.15592298141167],[-127.08126858009321,57.155750107082014],[-127.08116954263016,57.15557607776183],[-127.08107262118848,57.15540427254063],[-127.08097985412302,57.155232432908456],[-127.08089015073615,57.15505944707094],[-127.08080561103823,57.15488641848924],[-127.08072312552298,57.15471225206657],[-127.0806437351472,57.15453806002271],[-127.08056743986894,57.154363842363345],[-127.08049319868243,57.15418848687758],[-127.08041998410843,57.15401312288931],[-127.08034883860905,57.15383774178084],[-127.08027766219435,57.15366124009379],[-127.08020651799855,57.15348585895384],[-127.08013537445345,57.15331047779808],[-127.08006318910189,57.1531351052438],[-127.07998994694796,57.15295862059006],[-127.07991574267672,57.15278438552211],[-127.0798394226416,57.15260904710345],[-127.07976004063306,57.152434854796],[-127.07967756513841,57.1522606880318],[-127.07960522613074,57.15207971255348],[-127.07953797220222,57.15189533258333],[-127.07945941467531,57.15171328764317],[-127.07935734822443,57.15154152429637],[-127.07921645850753,57.151386893915294],[-127.07902239405226,57.15125399818139],[-127.07878636463896,57.15113714018911],[-127.07851860212531,57.15103175196064],[-127.07822630562951,57.15093665306578],[-127.07791882196965,57.150852887044245],[-127.07760537026896,57.150778136105664],[-127.07729215667037,57.15071122821047],[-127.07698426381403,57.15064987981949],[-127.07667332423885,57.150590797462144],[-127.07636042828585,57.150535092953675],[-127.07604655373544,57.15048163740577],[-127.07572960088264,57.15042932727886],[-127.07541272828247,57.15037925737148],[-127.07509380315753,57.150330324413964],[-127.07477388441376,57.1502825196799],[-127.07445399786052,57.1502358347257],[-127.0741331176369,57.15019027798512],[-127.07381122717253,57.15014584958683],[-127.07349036328439,57.15010141196828],[-127.07316847431036,57.15005698198952],[-127.07284762845595,57.150012542659624],[-127.07252676679941,57.14996810267907],[-127.07220694825801,57.14992365335772],[-127.07188515621563,57.149882581908045],[-127.07156132797715,57.149842647192024],[-127.0712365684861,57.14980608177105],[-127.07091179306873,57.149769515679445],[-127.070586023729,57.149734077749414],[-127.07026028626134,57.149699759570055],[-127.06993451811603,57.14966432001746],[-127.06961078750454,57.1496277421595],[-127.06928702626892,57.14959004293836],[-127.0689652713845,57.14955008486987],[-127.06864552290186,57.149507867969014],[-127.06832771844395,57.149461151126346],[-127.0680119205239,57.14941217548112],[-127.06770111493611,57.14935643337848],[-127.06740324607824,57.149282651778954],[-127.06711630849117,57.149193088791094],[-127.06683640087486,57.14909562206714],[-127.06655744354474,57.14899478455457],[-127.06627550180386,57.14889845408929],[-127.06598455802155,57.14881340464878],[-127.06567959101896,57.148744160391956],[-127.06536963326998,57.14868168103051],[-127.06505866531029,57.14862032999626],[-127.06474673477042,57.14856122770949],[-127.0644347740929,57.14850100411825],[-127.06412385672807,57.148440771294865],[-127.06381289271417,57.148379417306636],[-127.06350395221168,57.1483158044861],[-127.06319897709882,57.14824655459964],[-127.06289796952456,57.148170546843964],[-127.0625969776433,57.14809565909612],[-127.06229205349901,57.148027527531845],[-127.06197815702657,57.1479717971647],[-127.06165626824576,57.147926218333346],[-127.06132960482718,57.14789524809354],[-127.06100241213284,57.147882214370505],[-127.06067243568036,57.147880410573755],[-127.06034157183448,57.1478842172174],[-127.06001080083048,57.14789138471195],[-127.05967892546455,57.14789631869758],[-127.0593489799029,57.147895632121426],[-127.05901789921316,57.1478915914719],[-127.05868781343712,57.14788642110771],[-127.05835762061128,57.1478767675225],[-127.05802738049573,57.14786599267355],[-127.05769299002408,57.14785412977966],[-127.0573554275659,57.14784005007729],[-127.0570449424866,57.14779548845976],[-127.0568140254238,57.14767294636616],[-127.05658992421083,57.14753465738052],[-127.05632327360546,57.147429215659606],[-127.05604748071272,57.147329451381246],[-127.05577674429587,57.147225162425265],[-127.05552533921485,57.14710950861488],[-127.055294276983,57.14698136108201],[-127.05507439729566,57.14684639797984],[-127.0548524676678,57.14671145108613],[-127.05462039860763,57.146584431378315],[-127.05436800627814,57.14646990423962],[-127.05409315871776,57.14636676593951],[-127.05380014811453,57.146279464955214],[-127.05349529904547,57.14621355421236],[-127.05317942373345,57.14616006058452],[-127.05285756061308,57.14611446013754],[-127.05253174675657,57.146075615601355],[-127.05220405000097,57.146043510289424],[-127.05187761117422,57.14601923970659],[-127.05155284361818,57.1460184918812],[-127.05123390118766,57.14607934095353],[-127.05093721615283,57.146160184779326],[-127.05065027389941,57.14625664091806],[-127.05036208966507,57.14634526073365],[-127.05004706392558,57.1463982297212],[-127.04971403484679,57.146360556958676],[-127.04957234992438,57.14620926515688],[-127.04948654669495,57.1460216583826],[-127.0493844150078,57.14584202842029],[-127.04919780358814,57.14571239256554],[-127.04891144205708,57.14564071872203],[-127.04857517381313,57.145597465099925],[-127.04823483162914,57.145556484928576],[-127.04792286009118,57.14549398092105],[-127.04761684862716,57.145422461909895],[-127.04731180282097,57.1453486928351],[-127.04700582424242,57.14527829296419],[-127.04669595550254,57.14521689002919],[-127.04637934729557,57.145173473292175],[-127.04605601321484,57.14514916339865],[-127.0457248048874,57.1451394862527],[-127.04539076138792,57.14513991823254],[-127.04505578376724,57.14514371925595],[-127.04472175676699,57.14514414939284],[-127.0443916355449,57.14513670179255],[-127.04406836403638,57.1451146281088],[-127.04375068690975,57.14507009277038],[-127.04343958598216,57.14500084636659],[-127.04314550687127,57.14491128877231],[-127.04287788576556,57.144805828008174],[-127.04263370399295,57.144687850756846],[-127.04240476733877,57.14455966415551],[-127.04218496342784,57.14442467947372],[-127.04197122648442,57.14428516282759],[-127.04175750763885,57.14414564571428],[-127.04154176676593,57.144008386013496],[-127.0413321563732,57.143867714693634],[-127.0411305895828,57.14371913331237],[-127.04093110876548,57.1435705350266],[-127.04072657317927,57.14342645996052],[-127.04050886337333,57.143292576792696],[-127.04027197464563,57.14317565810718],[-127.04000574993069,57.14308250949408],[-127.03970110183283,57.14302216953934],[-127.03937322936694,57.14298218817266],[-127.03903723800457,57.1429478745951],[-127.03871028768197,57.14290340102238],[-127.03840540037203,57.14283409354464],[-127.03811566722784,57.142751215278075],[-127.03783189626279,57.14265932257734],[-127.03755214105391,57.14256291416238],[-127.03727336882642,57.14246425575216],[-127.03699461178283,57.142366717449285],[-127.0367118279506,57.142272572940925],[-127.03642401912421,57.14218407172771],[-127.03613423463572,57.14209894797938],[-127.03584238364625,57.14201383999106],[-127.03554955228907,57.14193098074543],[-127.0352556965788,57.14184812897697],[-127.03496187237039,57.141766397116314],[-127.03466801919,57.14168354403602],[-127.03437620482887,57.141599553361864],[-127.03408439174551,57.14151556204112],[-127.03379458729995,57.14142931258133],[-127.0335118182306,57.14133516121143],[-127.03324314604876,57.14122744810982],[-127.03297147255832,57.141123120617735],[-127.03267882156938,57.14104585767832],[-127.03236517604743,57.14099565927691],[-127.03204054246069,57.140960117372636],[-127.03171290656235,57.1409279607866],[-127.03138820031198,57.14088905544124],[-127.03107336503568,57.1408332593543],[-127.03076642668657,57.140762829782695],[-127.03045950302294,57.14069352018793],[-127.03014583319457,57.140642195907134],[-127.02982047988397,57.14061786222133],[-127.02948931478026,57.14060814394783],[-127.02915422485145,57.140606301366105],[-127.02882017708271,57.140604449716704],[-127.02849003793419,57.14059472083193],[-127.02816672375585,57.1405692461828],[-127.02785616784648,57.1405178919295],[-127.02755637658174,57.14044403625539],[-127.0272634250715,57.14035555571123],[-127.02697148703358,57.140265945758124],[-127.02667967031715,57.14018081741548],[-127.02639190032815,57.140092294237846],[-127.02611320472847,57.139994732758026],[-127.02584764252805,57.13988585955906],[-127.02563497944791,57.13970596011405],[-127.0105063798752,57.100000338488464],[-127.0000006552701,57.07237858182163],[-126.99837749160382,57.06810868559132],[-126.9986477541284,57.06798333496086],[-126.99881930573571,57.0678329631196],[-126.99896370618042,57.06767047101356],[-126.99909147853703,57.06750362324173],[-126.99920683794303,57.06733574975468],[-126.99930868613984,57.06716461753591],[-126.99939913269536,57.066991331183075],[-126.99948129426822,57.06681698756291],[-126.99954795610316,57.0666416420058],[-126.99959285239876,57.066463101110685],[-126.99963984114905,57.06628566490939],[-126.99969924092319,57.066109254277016],[-126.99975966375195,57.06593283579027],[-126.99982007338724,57.0657552966614],[-126.99988255879525,57.065578862335826],[-126.99994611287646,57.065403540534426],[-127.00000120440212,57.06525966415223],[-127.00001274098612,57.065227074407076],[-127.00008248487758,57.06505170509446],[-127.00015635543751,57.06487630410305],[-127.00023746897891,57.06470196824838],[-127.00032377828529,57.06452871322424],[-127.0004100868136,57.064355458164385],[-127.00049433094885,57.0641822189058],[-127.00057130162135,57.0640067939689],[-127.00063375156833,57.06382923899501],[-127.00068273753678,57.06364954589581],[-127.00073069951318,57.06346986065822],[-127.00079111345923,57.063293442025156],[-127.00087645193724,57.06312243568127],[-127.00101056660677,57.06296226208355],[-127.00121633104588,57.06281946978854],[-127.0014544373086,57.06268987749651],[-127.00170739547144,57.062575860882845],[-127.00198764526529,57.06247956570713],[-127.00227529952541,57.06238993738274],[-127.00257354576179,57.062311434270335],[-127.00280870345996,57.062187465824465],[-127.0030197117909,57.06204799253235],[-127.00325060596359,57.06191957316989],[-127.00351198319268,57.06181221262916],[-127.00378382266936,57.06171037465529],[-127.00406091545462,57.061611857841115],[-127.00434011233587,57.06151556568481],[-127.00461932432606,57.061419272809886],[-127.00489642565711,57.06132187487256],[-127.00519264060794,57.06124450211264],[-127.00549639060519,57.06117939859365],[-127.0057703131143,57.06107866111192],[-127.00604420486161,57.06097680255737],[-127.00633403201932,57.06089275209817],[-127.00663768927413,57.06082428442324],[-127.00694771184654,57.06076249125177],[-127.00726092489819,57.06070403487777],[-127.00757094549898,57.060642240229335],[-127.00786498176784,57.060561515999865],[-127.0081643599138,57.06048747417386],[-127.00848982068518,57.060463662762494],[-127.0088163504189,57.060440962994136],[-127.00914501491745,57.06042160807219],[-127.00947480732006,57.06040560577832],[-127.00980468775404,57.0603929641598],[-127.01013363285588,57.06038369114698],[-127.01046285583674,57.06038562246244],[-127.01079230160664,57.060395396339295],[-127.01112277099439,57.060405161445104],[-127.0114745147909,57.06040019112822],[-127.0117798990768,57.06039782116489],[-127.01210750876228,57.060377346215716],[-127.01243502956292,57.0603535089358],[-127.01276263852182,57.060333032341],[-127.01309254678256,57.06032150290575],[-127.01342275025257,57.060321177658956],[-127.01374151380507,57.060278352725135],[-127.01405474213901,57.060221000550904],[-127.01436155587473,57.060155852410695],[-127.01466405126149,57.06008289203278],[-127.01497617750846,57.060023304743765],[-127.0152480331495,57.059923683999095],[-127.0155113970724,57.059815162982325],[-127.01577263692245,57.05970441651805],[-127.01603812045747,57.059598119377526],[-127.01631409705395,57.05949846427365],[-127.01660792841601,57.059410997384944],[-127.01692135290004,57.05936148186417],[-127.01724581808767,57.05933989772652],[-127.01757362347213,57.0593272525608],[-127.01790361066965,57.059319072460276],[-127.0182357501136,57.05931423690802],[-127.0185679488538,57.05931164151021],[-127.01889802480429,57.05930682039364],[-127.01922707725271,57.05930200644355],[-127.0195571530378,57.05929718365807],[-127.01988725846842,57.05929348053686],[-127.02021739357336,57.05929089707978],[-127.02054654820374,57.059290561928215],[-127.02087677251092,57.05929133830086],[-127.0212060627132,57.05929548335392],[-127.02153440239013,57.05930299722402],[-127.02186397411621,57.059318345741374],[-127.02219158865314,57.05933707097535],[-127.02252025673435,57.05935690785753],[-127.02284889534,57.059375623412144],[-127.02317744479264,57.05939097664031],[-127.0235047755765,57.05939961421014],[-127.02383373871118,57.05939142713376],[-127.02416232696265,57.059369793367644],[-127.02448871869292,57.05934257236543],[-127.02481506358224,57.059314230177435],[-127.02513927151082,57.059282541773975],[-127.02546337272572,57.05924749119846],[-127.02578199435754,57.05920015486175],[-127.0260921824126,57.05914615972585],[-127.02641298647397,57.05918061824027],[-127.02673716372144,57.05922513600814],[-127.02706479326767,57.05924496962217],[-127.02739328339257,57.059258071226836],[-127.0277227237946,57.05926780231009],[-127.02805208792407,57.05927529169479],[-127.02838240217753,57.05927941054883],[-127.02871169308499,57.059283536642546],[-127.02904099755155,57.059288782532676],[-127.02937037862421,57.059296268456414],[-127.02969971330405,57.059302633180515],[-127.03003008801687,57.05930898885507],[-127.03035946945519,57.05931647227987],[-127.03068880447185,57.05932283450523],[-127.03101818615704,57.05933031626557],[-127.0313475514637,57.05933779732434],[-127.03167696347728,57.059346397917615],[-127.03200644937642,57.059358359301335],[-127.03223213603653,57.05938571143194],[-127.03264822564944,57.05931741313545],[-127.03297126678463,57.05928123150363],[-127.03329772537388,57.05925735006941],[-127.03362525360733,57.059234580068726],[-127.03394817257445,57.05919391403103],[-127.03426899738004,57.059152143069475],[-127.03459524489209,57.05915851991696],[-127.03492185450992,57.05917834190585],[-127.03524968544055,57.05920487779616],[-127.03557753050276,57.05923253349],[-127.03590426203645,57.059256835004135],[-127.03623487901858,57.05927213892425],[-127.03656647575686,57.05928519274389],[-127.03689311769112,57.05930613029182],[-127.03721107136855,57.059349550891135],[-127.03752217522826,57.05940647408461],[-127.03783034450089,57.05946902359426],[-127.0381365257013,57.0595349504307],[-127.03844180560628,57.05960536668825],[-127.03874502327254,57.05967579867688],[-127.03904934255807,57.059748462666285],[-127.03935256246605,57.05981889324892],[-127.03965680691567,57.0598893149672],[-127.03995808693128,57.05996424258943],[-127.0402584053322,57.0600414186786],[-127.0405586781004,57.060117473715955],[-127.04085993132152,57.06019127877009],[-127.04116407658952,57.0602572148735],[-127.0414740929822,57.06031189598667],[-127.04180259712786,57.06032496129124],[-127.04213662336144,57.06031332537377],[-127.04248643694277,57.06031276972897],[-127.0428180347045,57.0602877026198],[-127.04305459051656,57.06018270201263],[-127.0432573099355,57.06004771183903],[-127.04344411860272,57.05989715837546],[-127.04361727886517,57.05973774801288],[-127.04378316337096,57.05957615421081],[-127.04394600407693,57.05941682605872],[-127.04409024300843,57.05925652597189],[-127.0442146882858,57.05908965987161],[-127.04433601532408,57.05892169790867],[-127.04447190621602,57.05875810209755],[-127.04462340072355,57.05859886405734],[-127.04478109778749,57.058440696871095],[-127.04493674678041,57.05828254592003],[-127.04508612724956,57.0581222035752],[-127.04523758624102,57.057961844399955],[-127.0453838775819,57.05780152650211],[-127.04552182330023,57.05763791317902],[-127.04563384723261,57.057470024720864],[-127.04571059848257,57.05729457400731],[-127.04580081265243,57.0571212567202],[-127.04591553083769,57.05686256676552],[-127.04595537934841,57.056772588064476],[-127.04600214227466,57.056595136415325],[-127.04604372458581,57.05641660560909],[-127.04608220350396,57.056238099716005],[-127.04612170539208,57.056059585620964],[-127.04616744336087,57.05588214221566],[-127.04622141696538,57.05570463270625],[-127.04628264977785,57.055528185655696],[-127.0463469849634,57.055351713688154],[-127.04641130305347,57.05517524184344],[-127.04646944774966,57.0549988195507],[-127.04651826923913,57.05482135137494],[-127.04654642893942,57.05464292837369],[-127.04656214893004,57.05446236380624],[-127.04658202540394,57.05428288661715],[-127.04662155346608,57.05410549310771],[-127.04667553898437,57.053927983501275],[-127.0467357271134,57.053751544810254],[-127.04680005724666,57.053575072841134],[-127.04686334702897,57.05339860921409],[-127.04692457322314,57.05322216215027],[-127.04697853959824,57.05304465266187],[-127.0470232302804,57.05286721768797],[-127.04705963812054,57.052688728528786],[-127.04708982619994,57.05250916861719],[-127.04711591859531,57.05233076235947],[-127.04713785433214,57.052151268781564],[-127.04715772692411,57.051971791798216],[-127.04717451318665,57.05179233963221],[-127.04719025958046,57.05161289584107],[-127.04720394291614,57.05143346864711],[-127.0472010923939,57.05125305359798],[-127.04719104404323,57.051073817141834],[-127.04719132670044,57.05089449769493],[-127.0472153241385,57.050714987710215],[-127.04725481509222,57.05053647396987],[-127.04730051074228,57.05035791037427],[-127.04734310345086,57.05017937171908],[-127.04737331875866,57.05000093254685],[-127.04737767918252,57.0498204597242],[-127.04731601547165,57.04963939681927],[-127.04714998719813,57.049490553034246],[-127.04689655767555,57.049389481927854],[-127.04661654329344,57.04925948485817],[-127.0464737312495,57.04909140140522],[-127.04629930504085,57.048937020424205],[-127.04612674611059,57.048774779135485],[-127.04597571744787,57.0486078819163],[-127.04587204194198,57.04843724232559],[-127.04583649878892,57.04826829735988],[-127.04586480923695,57.04809547775864],[-127.04594047063145,57.04791891593259],[-127.04605329065835,57.04774317653044],[-127.04619101453291,57.04757284075569],[-127.04634441258159,57.04741022409503],[-127.04650629004456,57.04725538426969],[-127.04667640041826,57.04710047812158],[-127.04685483761415,57.04694774632136],[-127.04704051497023,57.04679607683578],[-127.04723453302482,57.04664770224657],[-127.0474358826785,57.04650375135488],[-127.04764664305856,57.04636420740973],[-127.04786481257018,57.046231327917255],[-127.04809136727106,57.04610398425922],[-127.04834105342916,57.04599214431242],[-127.0486180244801,57.04589801597413],[-127.04891280966982,57.045813830204295],[-127.04921387309885,57.04573295539625],[-127.04950966468834,57.04564763943317],[-127.04978970195106,57.04555236315971],[-127.05006023374641,57.04544931777953],[-127.05032868740484,57.04534516785595],[-127.05059499930674,57.045238793186364],[-127.05086028669986,57.04513242623096],[-127.05112451896541,57.04502494651451],[-127.05138873325357,57.04491746640375],[-127.05165296256531,57.044809985632085],[-127.0519171432495,57.044701383984986],[-127.05218242327864,57.04459501437842],[-127.05244874135862,57.04448863584345],[-127.05271614232706,57.04438448946838],[-127.05298560437217,57.04428032588458],[-127.05325721954358,57.04417950652009],[-127.05353092650158,57.044079790400595],[-127.05380878776202,57.04398116083177],[-127.05408979452787,57.043884746676234],[-127.05437399404506,57.04379166825924],[-127.05466247081998,57.043704158238235],[-127.05495519421079,57.04362109610408],[-127.05525225653113,57.04354584326575],[-127.05555469742683,57.043478391271044],[-127.05586681009478,57.0434254296634],[-127.05618640927771,57.04338249317396],[-127.05651138766066,57.04334735737875],[-127.05683852029883,57.04331556548165],[-127.05716459860913,57.04328266058526],[-127.05748745116435,57.0432452981347],[-127.05781024145071,57.04320569392834],[-127.05813306190242,57.043167209401695],[-127.05845478054886,57.04312649156411],[-127.05877113467716,57.043077971417546],[-127.05908305451962,57.0430182792527],[-127.05940838757685,57.04295847727654],[-127.05973773538858,57.0428952796425],[-127.06005241442153,57.04282323468102],[-127.06033573755789,57.042736874653755],[-127.0605699824521,57.0426284989219],[-127.06074148785314,57.04248925314289],[-127.06086062792917,57.04232129456664],[-127.06093596183268,57.042135760941925],[-127.06097817301686,57.04194601410201],[-127.06099895336762,57.04176428688669],[-127.06100127928165,57.04158719288361],[-127.06098602147586,57.0414080006354],[-127.0609562963965,57.04122780548939],[-127.06091523693027,57.041047702655256],[-127.06086491998386,57.04086879593998],[-127.06080943943373,57.04068993127382],[-127.06074991306775,57.04051334100471],[-127.06065749739348,57.04034150139627],[-127.06053838182083,57.04017324127137],[-127.06042435298359,57.040002698210536],[-127.06034428279774,57.03982963725353],[-127.06029091582957,57.039651876053966],[-127.0602498755521,57.0394728938189],[-127.06022941292245,57.039291502688194],[-127.0602337426987,57.039112151275106],[-127.06026495976556,57.0389348225249],[-127.06031163498778,57.038757367980445],[-127.06037068307575,57.03857981273489],[-127.06044007254465,57.03840329403105],[-127.0605198032577,57.0382278118521],[-127.06060784379031,57.038054503440726],[-127.06070518598472,57.03788223997784],[-127.06081606327167,57.03771434914523],[-127.06094869324659,57.03754964325918],[-127.06109374032215,57.037387077562514],[-127.06124188763472,57.03722448645843],[-127.06138384729219,57.03706194560617],[-127.06151025528682,57.03689616915266],[-127.06161078470993,57.03672724129969],[-127.06169777759067,57.03655394080369],[-127.06177856896076,57.0363795700845],[-127.06185103288352,57.03620302575898],[-127.06191625618007,57.03602541970749],[-127.06197220781253,57.03584788922275],[-127.06201780119795,57.035669322452314],[-127.06205412318455,57.0354908312714],[-127.06208013463333,57.03531242416087],[-127.06209481292076,57.03513410946541],[-127.06209707151078,57.03495477532555],[-127.06209212128802,57.034775499982096],[-127.06207892310435,57.034596291907434],[-127.06206054737368,57.0344160053442],[-127.06203910153042,57.034236864555176],[-127.06201556297803,57.034056620125405],[-127.06199408660946,57.033876358903925],[-127.06197366410554,57.033697209834145],[-127.06195837396582,57.03351689822254],[-127.0619482779863,57.033337665011025],[-127.06194022753024,57.033158415146346],[-127.06193318542175,57.03297803636242],[-127.06192617431161,57.032798778070216],[-127.06192020246232,57.032619511328456],[-127.06191418324195,57.032439124274305],[-127.06190821150436,57.032259857577074],[-127.0619012006415,57.03208059937369],[-127.06189518159455,57.031900212386724],[-127.06188817085791,57.031720954227694],[-127.06188322202478,57.03154167928253],[-127.06187824230794,57.031361283891464],[-127.06187227090518,57.0311820173278],[-127.0618621594451,57.03100278453709],[-127.06184690182728,57.03082359372021],[-127.06183265256593,57.0306432739856],[-127.0618194260812,57.03046294593557],[-127.06180306789066,57.03028152271753],[-127.06177854115654,57.030102407547545],[-127.06173959682123,57.02992453064037],[-127.0616811363894,57.02974905426086],[-127.06159700583855,57.02957714926033],[-127.06149128152667,57.029407661651234],[-127.06137115705532,57.02923941204569],[-127.06124384032627,57.02907234167679],[-127.06111756379835,57.028905262737716],[-127.0609984816208,57.02873700438216],[-127.06089070057514,57.02856753317951],[-127.06078498214913,57.02839804511675],[-127.06065282568511,57.02816713282682],[-127.06042957555397,57.028035585270466],[-127.06020631256429,57.02790291674341],[-127.06000241231192,57.027762245257385],[-127.05980660573415,57.027615904035585],[-127.05962203873152,57.02746610895595],[-127.05946410548727,57.02730937269488],[-127.05934301908896,57.02714337084865],[-127.05925168085582,57.026971523401805],[-127.05917365944661,57.02679620547385],[-127.05908943752895,57.02662093794734],[-127.05898167081972,57.02645146541563],[-127.05884510492828,57.02628446839093],[-127.05871373317399,57.0261185497452],[-127.05862243101494,57.025947822444586],[-127.05859697532786,57.02577207705713],[-127.0586209038853,57.025592568142024],[-127.05865920113477,57.02541070101617],[-127.05867793634613,57.02523011363181],[-127.05865342737988,57.02505099850544],[-127.05861222531618,57.02486529480095],[-127.0585423028448,57.02468430740742],[-127.0584243907725,57.02452052073833],[-127.05823716069698,57.0243853151094],[-127.05798560425886,57.02427304609616],[-127.05769939085238,57.02417450665454],[-127.0574110701865,57.024074862998575],[-127.05714925829565,57.02396379641098],[-127.05691683791233,57.023834559379814],[-127.0566874414304,57.02370305599645],[-127.05643690216216,57.02358965515216],[-127.05613387497291,57.02351702517746],[-127.05580866539866,57.023462505751986],[-127.0555259777919,57.02337962307592],[-127.05529882032161,57.023253702763945],[-127.05509386225548,57.023110791542955],[-127.0549122819253,57.02295536282655],[-127.0547573473309,57.02279411451924],[-127.05463942644957,57.02262920417652],[-127.05457070270833,57.022453808967825],[-127.05451938643853,57.02227378994773],[-127.0544547251376,57.02209612041239],[-127.0543449915923,57.02192890219505],[-127.05418603296675,57.02177104808869],[-127.05401886110019,57.02161438100346],[-127.05387523387063,57.02145191964041],[-127.05374898365898,57.021283713984836],[-127.05369164236222,57.021109347134164],[-127.05368572488078,57.02093120207427],[-127.0536993363374,57.02075065759951],[-127.05372223155346,57.02057003802369],[-127.05373895701624,57.02039058909971],[-127.05375360689405,57.02021003628081],[-127.0537631260118,57.0200306457103],[-127.05374893282004,57.019851447044545],[-127.05371620539856,57.01967239837818],[-127.0536865618311,57.01949332477498],[-127.0536816527783,57.01931405104854],[-127.05371178377914,57.0191344938076],[-127.05374194518171,57.01895605704259],[-127.05373599711592,57.018776791791524],[-127.05370527045363,57.01859548565664],[-127.05363345822086,57.018420115530425],[-127.05351552488266,57.01825408421212],[-127.05337605105049,57.01809158919327],[-127.05322323425399,57.01793144339277],[-127.05306632718325,57.01777245122769],[-127.05291044371253,57.01761345062481],[-127.05272671444263,57.017453554284025],[-127.05252646742254,57.01729267052444],[-127.05234898577211,57.0171349646245],[-127.05224312190626,57.01695762776557],[-127.05227582846801,57.01683408571187],[-127.05255156871625,57.016702975785776],[-127.05285199825346,57.01660752825446],[-127.05316053743002,57.01654451492597],[-127.05348274013964,57.016491476674595],[-127.05379544429363,57.016430669546715],[-127.0540754731854,57.01634322921974],[-127.05432479538429,57.01622577784616],[-127.05454782316659,57.01608948693914],[-127.05474374919324,57.015942208125],[-127.05491371872002,57.01578841507787],[-127.05505660333527,57.01562363422107],[-127.05515907433436,57.015451335782174],[-127.05520992800305,57.01527609348608],[-127.05521637015127,57.01509784900183],[-127.05519905810813,57.01491755563834],[-127.05517347174278,57.014736208646475],[-127.05516028192541,57.014555881918994],[-127.05516767072518,57.01437426773893],[-127.05525780315133,57.01420319003881],[-127.05540176407095,57.01404064161216],[-127.05557269979745,57.01388459857584],[-127.0557739863044,57.013745119790705],[-127.05601908675067,57.013625458029765],[-127.0562777433617,57.01351128935283],[-127.05652387943022,57.013391618234465],[-127.05676059450289,57.013266419589634],[-127.05696797800225,57.01312464806057],[-127.05716384889769,57.01297624545293],[-127.05737761305186,57.01284114569469],[-127.05764290473101,57.012743730978244],[-127.0579628854125,57.01268621670393],[-127.05828185729115,57.01262983054258],[-127.05853778732049,57.01252912796687],[-127.05871488605791,57.01237303070345],[-127.05890038071423,57.01222246844245],[-127.05905933987785,57.01211919137045],[-127.05906793344393,57.01194429154957],[-127.05920126735296,57.01180872232965],[-127.05941935966399,57.011644445691296],[-127.05957774963719,57.01148289600457],[-127.05968434173435,57.011311681409175],[-127.05980027619012,57.0111426320976],[-127.05992658939742,57.01097686030964],[-127.06006746654379,57.010815452639434],[-127.06023120999883,57.01066170353631],[-127.06042191224132,57.010513338168494],[-127.06063658076125,57.01037486360856],[-127.06086794949893,57.010244097536265],[-127.06111202060269,57.01012555525979],[-127.06137076217964,57.010015858549615],[-127.06163996020635,57.009911679570216],[-127.06191442387198,57.00981193989312],[-127.06219096326925,57.0097121826968],[-127.06246330156272,57.00961021778704],[-127.0627283106068,57.0095038293191],[-127.06291974010553,57.009382351232205],[-127.06311043931021,57.00927208586191],[-127.06343726388957,57.00912820791889],[-127.06362385588201,57.008980992134525],[-127.06377606635579,57.008820608595535],[-127.06390226190992,57.00865147186699],[-127.06408178433719,57.00850991673173],[-127.06436988168116,57.008419026026445],[-127.06462651091904,57.00830821937346],[-127.06480469706884,57.00815546713863],[-127.0649610825109,57.007997289495684],[-127.06511018443058,57.007836929858605],[-127.06526865889117,57.007679855470705],[-127.06544583208124,57.00752823137186],[-127.06565110861952,57.00738646330651],[-127.06586786347872,57.00725020445034],[-127.06599117935627,57.007088934258185],[-127.06606872835663,57.00691234893641],[-127.06619394764071,57.0067454594754],[-127.06636068622464,57.00658943681898],[-127.0665776514101,57.00646101999022],[-127.06688676718082,57.00638564128517],[-127.06719300022282,57.00631813038797],[-127.06750454700203,57.00625617869994],[-127.06781500861675,57.00619199375794],[-127.06812133176395,57.006127842027446],[-127.0684307839382,57.00606478459066],[-127.068740328426,57.006005087761636],[-127.06905196353595,57.00594649372422],[-127.06936469842387,57.005890131305236],[-127.06967848551939,57.005834880185695],[-127.06999338713598,57.005782981250555],[-127.07027317284037,57.00576499134523],[-127.07061277740648,57.00567478391228],[-127.07090093162648,57.00558724027108],[-127.07119012299725,57.00549968745204],[-127.07148895102955,57.00542550309185],[-127.07179944521313,57.00536354971176],[-127.07209934067625,57.005290475852696],[-127.07239491038112,57.00521071271919],[-127.07269268065714,57.00513541358487],[-127.07299677069099,57.0050656651828],[-127.07330303024088,57.00499926028382],[-127.07360927225096,57.004932854803386],[-127.07391552968768,57.00486644846961],[-127.07421859342277,57.004796705657654],[-127.07451950183444,57.004723617818286],[-127.07481297049583,57.00464274578961],[-127.07509898446585,57.00455296904296],[-127.07538185216816,57.00446097624992],[-127.07566786346105,57.0043711982646],[-127.07596239676907,57.004291435527],[-127.07626653686542,57.00422392041505],[-127.07657712415856,57.00416531688591],[-127.07689088684236,57.004110048448084],[-127.07720570191738,57.00405589124231],[-127.0775183781442,57.003998388866805],[-127.07783001501912,57.003940894341035],[-127.07814267289666,57.00388339060703],[-127.07845540910313,57.00382812687346],[-127.07877132088338,57.00377619817398],[-127.07908841078265,57.00372986245086],[-127.07941091034849,57.00369244671455],[-127.07973666517022,57.00366060668786],[-127.08006246584391,57.003631006867906],[-127.08038606493506,57.00359582098654],[-127.08070324577099,57.003552842662025],[-127.08101385235994,57.00349534901658],[-127.08131907865683,57.00343005439735],[-127.0816210163053,57.00335806216462],[-127.0819197446297,57.0032816130882],[-127.08221741835403,57.00320405138525],[-127.08251611279131,57.00312648050705],[-127.08281589096794,57.00305114132876],[-127.08311461453798,57.00297468952647],[-127.08341222041456,57.00289488422587],[-127.08371094158792,57.00281843106341],[-127.08401511955901,57.00275313879865],[-127.08441969000971,57.00273968252369],[-127.0846816420561,57.00271172369346],[-127.0849935622538,57.00270127908276],[-127.0853150968393,57.002740064519394],[-127.0856357365631,57.00278333944721],[-127.08596838638135,57.002777202419665],[-127.08622716580776,57.00267305907618],[-127.08647409811776,57.00255108284172],[-127.0867621928828,57.00246350428311],[-127.0870860607973,57.002438385732404],[-127.08741846937272,57.00242440206099],[-127.0877512424433,57.00242274223719],[-127.08807723967567,57.00243682806241],[-127.08838799044368,57.00249474802721],[-127.0886940902142,57.00257063743197],[-127.08901136488343,57.002603845865046],[-127.08934580275738,57.00258871959366],[-127.0896617213893,57.00253788494969],[-127.0899256164012,57.00243257064371],[-127.09016935811198,57.00230725191216],[-127.09041113319299,57.00218531131049],[-127.09064872276194,57.00206116391967],[-127.09087356835988,57.00192367444783],[-127.0911741327841,57.0017676185623],[-127.09139949204003,57.001793746713304],[-127.0917059950488,57.00184721152938],[-127.09196270918306,57.001961611393234],[-127.09221242826212,57.002083914404096],[-127.09248409686566,57.00218025651673],[-127.09279565143532,57.00223031430487],[-127.09312712592038,57.002255548549996],[-127.09345272184001,57.00229203839289],[-127.09377539540243,57.00233415551187],[-127.09409882432016,57.00233031656184],[-127.09442449175457,57.002296198935035],[-127.09474690067265,57.00225650436771],[-127.0950658915833,57.00220563069712],[-127.09538623883152,57.002165951881906],[-127.09571270100898,57.00215984197087],[-127.0960405677728,57.002167167883],[-127.09637068637244,57.00218119823861],[-127.09670070945332,57.00219186644578],[-127.09702940698627,57.00219245863473],[-127.09735767386671,57.002177363737566],[-127.09768592400776,57.00216226815171],[-127.09801524421431,57.002148283415714],[-127.09834237606452,57.00212983348516],[-127.0986661057046,57.00210020438294],[-127.09898635240606,57.00205715540136],[-127.09930324382715,57.00200516831275],[-127.09961609440964,57.00195545599837],[-127.09994212403545,57.00197063254119],[-127.10023269993407,57.002007401390145],[-127.1006053821837,57.00203226828185],[-127.10092478353002,57.00203180852248],[-127.10122899018621,57.00196871694284],[-127.10152734818271,57.00188101858912],[-127.10180046900754,57.00177560186842],[-127.10203187073442,57.00165260649241],[-127.10221406222811,57.0015020097636],[-127.1023691002474,57.00133931498679],[-127.1025149064128,57.001177818938906],[-127.10265031415285,57.0010130487081],[-127.10276812119118,57.00084506535134],[-127.10286003848226,57.0006728184492],[-127.10291889613245,57.000497489523895],[-127.10295290307026,57.00031788835554],[-127.10297657689951,57.00013725405888],[-127.10296438800329,56.99999951051966],[-127.10294994110325,56.99981919930858],[-127.1030512301827,56.99965023506288],[-127.10324695118864,56.99950512584515],[-127.10349602992761,56.99938870229431],[-127.10376823436896,56.99928777202194],[-127.10404358353486,56.99918905591029],[-127.10431049813113,56.99908368654418],[-127.1045805895784,56.99898165178074],[-127.10485066392052,56.99887849589153],[-127.10510704870354,56.9987653693271],[-127.10533081732035,56.99862898444596],[-127.10532075376622,56.998457601993536],[-127.10533310906463,56.99827818422624],[-127.1053135742221,56.99810015802377],[-127.10519844991971,56.9979296678456],[-127.10521704997446,56.997752438536644],[-127.10532961326317,56.99758225618006],[-127.10547336496347,56.99742189516262],[-127.10562744755681,56.997262566934],[-127.10578881138545,56.99710541807243],[-127.10595119564012,56.99694826034497],[-127.10611570290534,56.9967933257853],[-127.10628538267439,56.9966394677578],[-127.10645713750802,56.99648559187184],[-127.10662785276277,56.99633172460369],[-127.10681514267628,56.99618107826593],[-127.10695482755284,56.996022991664645],[-127.106951668971,56.995841464523195],[-127.10696093422501,56.995662073135485],[-127.10696916120952,56.99548269060019],[-127.10698872568378,56.99530321164657],[-127.10703407877949,56.995124634041744],[-127.10710217006798,56.994949225111945],[-127.10715788590169,56.99477280074639],[-127.10718980817285,56.99459321670223],[-127.1072073113368,56.994413755350436],[-127.10721141726623,56.99423440800391],[-127.10720008281608,56.99405519204909],[-127.10715170426703,56.993877411988024],[-127.10710436429974,56.993699623098806],[-127.10708375324621,56.99352048612566],[-127.10706212073721,56.99334135786274],[-127.1070332874978,56.9931622908772],[-127.10700135665728,56.992983250260345],[-127.10697357781245,56.99280529504194],[-127.10694164754557,56.992626254454315],[-127.10690665195806,56.9924483606587],[-127.10681515158086,56.99227543029979],[-127.10673185864827,56.99210130939944],[-127.10666807742822,56.991924781135545],[-127.10664952904159,56.99174562679484],[-127.10664231729464,56.99156637606422],[-127.10661248146265,56.99138843845778],[-127.10652408265224,56.99121548167594],[-127.10639979348637,56.99104843352861],[-127.10633703711417,56.990871896543474],[-127.10627736252603,56.990695333353756],[-127.10620537941635,56.99051999550075],[-127.10612314678959,56.99034698616109],[-127.10603371452717,56.99017403799353],[-127.10594837007827,56.98999993434899],[-127.10585279282684,56.98982815903924],[-127.10576336298337,56.98965521074732],[-127.10568523762846,56.98948104566347],[-127.1056142810248,56.98930569894858],[-127.10555153109321,56.989129161795276],[-127.10550006879635,56.98895140803855],[-127.10546406168056,56.9887735229817],[-127.10536949547021,56.98860061821784],[-127.10534065717397,56.988421551578476],[-127.10540566331072,56.988246170515154],[-127.10542009090481,56.98806673635875],[-127.10545204788323,56.98788827398965],[-127.10533820010522,56.987725619416345],[-127.10510685825741,56.9875964629631],[-127.10489397313422,56.98746378730264],[-127.1048055102874,56.98728858911048],[-127.10473559968636,56.987113233365655],[-127.10467697621691,56.98693666108306],[-127.10461423444144,56.98676012376363],[-127.1045525147097,56.98658357776357],[-127.10449904963076,56.986406961686704],[-127.10446713617152,56.98622792127564],[-127.10445066015005,56.98604874983785],[-127.10443316283227,56.98586958709055],[-127.10440125012455,56.98569054672905],[-127.10437757513401,56.985511436460314],[-127.10418921696129,56.985335965351794],[-127.103957642691,56.985233705868296],[-127.10380635160513,56.98512964419932],[-127.1036853195263,56.98496704956601],[-127.10369459737757,56.98478765974621],[-127.10370489655874,56.98460826128274],[-127.10360233602123,56.98444326855758],[-127.1034005345751,56.98430153136085],[-127.1032456487983,56.98414370633357],[-127.10314395240427,56.9839731025305],[-127.10299720979658,56.98381184613477],[-127.10289241825845,56.98364126843129],[-127.10272631583348,56.98348690006299],[-127.1024757826925,56.98318979831999],[-127.10279774669735,56.98299655175442],[-127.10296201454507,56.98283490013545],[-127.10323618906905,56.982699212963546],[-127.10369386542921,56.98253395125365],[-127.1039318627361,56.982394086744726],[-127.10438696540452,56.98206746468676],[-127.10517150838774,56.981738042798426],[-127.10559985377999,56.98162793742428],[-127.10591924714898,56.98148961887055],[-127.10622213298981,56.98135031920453],[-127.10647608045899,56.98122824546051],[-127.10674391746342,56.98112398413131],[-127.10709499433797,56.98101341042696],[-127.10738239793292,56.98090898125504],[-127.10771645042021,56.9807794990054],[-127.10806826905367,56.98065883010301],[-127.10838764552344,56.980520505581026],[-127.10870596039831,56.98041693077696],[-127.10907195490311,56.98032415562607],[-127.10942324370646,56.980221418619706],[-127.1097091131141,56.98010018695923],[-127.10999447603882,56.97999689006361],[-127.11030470754298,56.97989898374514],[-127.11065425713831,56.979771602997104],[-127.11098461949359,56.979693695629216],[-127.11138030425582,56.97959505689416],[-127.11168315545098,56.97945574469476],[-127.11200353023929,56.97931740268211],[-127.1123071559031,56.979169116860085],[-127.11255053601208,56.978967552365674],[-127.11278663413431,56.978763808330825],[-127.11287302338825,56.9785815171898],[-127.11307218548743,56.978382571410414],[-127.11339490314433,56.97807610214449],[-127.11426595987955,56.9775744186208],[-127.11492907823771,56.977217960189044],[-127.11522483007224,56.97711904544028],[-127.11564816368697,56.97687446664723],[-127.1157503933244,56.976813072471764],[-127.11587547686108,56.97661699921519],[-127.11687739430458,56.97587210621245],[-127.1178457260425,56.97524852876359],[-127.11808175021514,56.97515012074826],[-127.11875072833529,56.97513988580138],[-127.1196365407176,56.974973125765956],[-127.12135035217831,56.97417611986396],[-127.12318140001958,56.972387388745105],[-127.12457828377445,56.971567300791236],[-127.12548250860269,56.971083186084364],[-127.12622738087761,56.97088958291221],[-127.12654766515573,56.970540516012264],[-127.12672034035519,56.969967468759535],[-127.12643572701913,56.969317693453384],[-127.1262645121052,56.96870840133366],[-127.12639466645373,56.96812451655354],[-127.12658590782124,56.96776424007319],[-127.12775713943556,56.96771934722534],[-127.1281029495186,56.96771634792908],[-127.12825125224927,56.96771842344363],[-127.12854683679537,56.967722582825274],[-127.12882697522116,56.96772687561119],[-127.12899070774866,56.967728816349585],[-127.12932001783585,56.96772483637142],[-127.1296488324802,56.96773879086882],[-127.1299758353716,56.9677617257834],[-127.13035484293111,56.96776739755001],[-127.13074932967952,56.96777405431194],[-127.13112527323517,56.96781561250296],[-127.13152801063612,56.96782331583436],[-127.13195920312872,56.9678531840154],[-127.13233496722813,56.967958619549385],[-127.13269522097693,56.96799134433828],[-127.13304048990088,56.96800514697879],[-127.13336853450836,56.96802806432868],[-127.13353231797375,56.9680311196082],[-127.13390979787305,56.96805472538664],[-127.13411990536277,56.96809323807004],[-127.1344040517964,56.968163604595006],[-127.13447842034358,56.96820666275057],[-127.13473002283868,56.96846558833871],[-127.13482766826446,56.96863508116268],[-127.13495301281975,56.968800970142134],[-127.13509774051583,56.96896108640136],[-127.13527201179643,56.96911085841958],[-127.13545855267475,56.96925716103671],[-127.13566749059977,56.96939542300071],[-127.13590386446852,56.96952111742848],[-127.1361218786417,56.96965257529414],[-127.13621554836236,56.96982658478737],[-127.13627840734574,56.970003104819156],[-127.13637713402056,56.970173707994334],[-127.13650250683494,56.97034071619988],[-127.13660734487482,56.97050902446735],[-127.13674600939524,56.970672554257376],[-127.13688464203041,56.97083496351459],[-127.13702841401086,56.970997327721506],[-127.13715489599007,56.97116656712745],[-127.13747088315212,56.97119854539867],[-127.13803738170773,56.97127652090888],[-127.13835582635033,56.97132192385741],[-127.13867331691571,56.97136957577317],[-127.13898096260135,56.97143300284139],[-127.13928931550114,56.971485216066554],[-127.13961444637212,56.971512626305284],[-127.13993560981132,56.9715456739764],[-127.14022740356901,56.971629409554915],[-127.14050793655043,56.97164600162307],[-127.14078726801176,56.9715875171508],[-127.14111376250176,56.97159137713141],[-127.1414169648328,56.971643630544385],[-127.14164922084187,56.97176823045189],[-127.14196966598793,56.9718113656925],[-127.14229078396534,56.971842166605335],[-127.14259924431299,56.971897733205765],[-127.14286553827476,56.97198953183783],[-127.14320158424944,56.97203813046327],[-127.14352300440939,56.97207901196035],[-127.14382957613535,56.97214019576366],[-127.14410626765977,56.972235262554015],[-127.14443335059664,56.972259281589956],[-127.14475934627605,56.9722810679867],[-127.14508716783965,56.97229499262754],[-127.14541423505244,56.97231788865074],[-127.14572176612367,56.9723768182076],[-127.14601655848561,56.97245715251041],[-127.14633426791006,56.97251150817481],[-127.14659542704942,56.972396015853086],[-127.14680875235902,56.97226413434657],[-127.14707874336172,56.972168735694105],[-127.14740611101111,56.97220171032047],[-127.14768768311741,56.97228776095375],[-127.1479109413561,56.97242027421758],[-127.14798736465653,56.972601152476436],[-127.14822110761062,56.97267081372016],[-127.14856264281106,56.972661073952665],[-127.14889108911514,56.97266153517523],[-127.14922070667592,56.97266646800596],[-127.14954926979954,56.97267028862506],[-127.1498770295218,56.97268196039523],[-127.15019934942073,56.97271833478006],[-127.15041169110202,56.97276128466399],[-127.15083532132259,56.97281133041735],[-127.15115687318954,56.972821933209026],[-127.15148388150423,56.97284257317654],[-127.1518061372678,56.97287670278192],[-127.15212364080605,56.97292432206172],[-127.15243322859492,56.97298209699202],[-127.15274485950904,56.97303985308805],[-127.15303466728156,56.97312469866533],[-127.15333836744246,56.973192609952676],[-127.15365299701014,56.9732469752234],[-127.15395276613785,56.97332052345931],[-127.15425929716314,56.973379441929985],[-127.15454608171498,56.97346655243819],[-127.15483286756364,56.97355366231929],[-127.15511567169465,56.973645289742024],[-127.15541845932304,56.973716566467026],[-127.15573093656225,56.97376758381729],[-127.15605419132021,56.97380057344584],[-127.15636302350619,56.97386731148325],[-127.15663266201258,56.973965776925894],[-127.15675508876197,56.9741339138203],[-127.15687610886584,56.974289735441026],[-127.15714056291064,56.9743871253095],[-127.15739825853993,56.97449914389923],[-127.15762862570234,56.97462709503334],[-127.1578519152182,56.974759591589844],[-127.1580893646177,56.97488299611091],[-127.15834100830838,56.97499954961146],[-127.1585936237492,56.97511385259042],[-127.15885434098938,56.975223600114894],[-127.15908066716995,56.975353826227064],[-127.15930803251254,56.975484042708594],[-127.15952117366736,56.975621109828595],[-127.15968333482282,56.97577432097877],[-127.15983947301793,56.97593318916925],[-127.16007427107085,56.97589971565508],[-127.16029007658933,56.97554364901686],[-127.16034826323386,56.97535597278774],[-127.16047361262642,56.97514192121968],[-127.16066468112389,56.97495642136383],[-127.16053946625222,56.97449132697804],[-127.16065792712088,56.97432216481951],[-127.16114590193197,56.97414858364243],[-127.16181460960676,56.97399355897259],[-127.16202159483991,56.973789983770025],[-127.16224283941828,56.97364904006876],[-127.16231051287737,56.9736058487063],[-127.16259568658872,56.97350243691786],[-127.16287980384323,56.97339791324263],[-127.16316572496046,56.97328552790356],[-127.16341814697834,56.973154389670185],[-127.16367310554172,56.97300529703883],[-127.16391028456452,56.972847397407435],[-127.16416523919189,56.97269830384258],[-127.16437262787224,56.972508169698294],[-127.1643799801058,56.972376981933145],[-127.16455968221123,56.97208847375288],[-127.16517125466387,56.97198661608774],[-127.16554085422328,56.97195192482245],[-127.16609753454144,56.97187296868494],[-127.16638268526188,56.971769548715756],[-127.16666679692416,56.97166613743556],[-127.16695191064854,56.971561595836995],[-127.16731919606823,56.971450712612345],[-127.16768644541543,56.97133870796331],[-127.16800304380087,56.97125405396509],[-127.16832064433191,56.971168269485545],[-127.16865370835504,56.97108346597421],[-127.16898600537067,56.97100763409969],[-127.1693025981803,56.970922976957155],[-127.16960372476616,56.97083733742524],[-127.16990381251145,56.97075170653382],[-127.17018817946217,56.97065725078863],[-127.17048950608903,56.97054471057206],[-127.17077388654431,56.970450253411364],[-127.17084103453746,56.970423872806336],[-127.17105700795737,56.97038270377256],[-127.17143626717385,56.970361357035486],[-127.17180176125933,56.970294184485475],[-127.1721343344342,56.97022730760861],[-127.17245011510083,56.97015049495436],[-127.17354563348557,56.96981561087616],[-127.17399898789917,56.96975996695909],[-127.17424865416729,56.9697095228199],[-127.17429809178435,56.96971019713787],[-127.1746286527225,56.969679194424785],[-127.17499391205321,56.96960417004029],[-127.1753601567815,56.969528015014305],[-127.1757076911766,56.96948004562343],[-127.17603750160515,56.9694580117006],[-127.1764332001897,56.9694365016394],[-127.17684569049467,56.96942492473463],[-127.17725738273299,56.96942119865391],[-127.17762138146854,56.969373075082814],[-127.17801784170194,56.96934258767636],[-127.17834764963266,56.969320547897574],[-127.17872687788558,56.969299180066585],[-127.17914856736253,56.96884819739971],[-127.17924682259292,56.9682578175946],[-127.17932227218866,56.967426694113364],[-127.179317990871,56.966815951297185],[-127.17939077480203,56.96532588160958],[-127.17999952145787,56.96466587099446],[-127.18035895794984,56.96446984866441],[-127.18096967458655,56.96414378383197],[-127.18165536118599,56.96337547975887],[-127.18172868467789,56.962577997307314],[-127.18222894469228,56.96200749771295],[-127.18281845441612,56.96139471863543],[-127.18285455622967,56.960659213257415],[-127.18284240782728,56.95982776734851],[-127.18287158280052,56.95923577472493],[-127.18293461929375,56.95793631598562],[-127.18297962469336,56.95628400403104],[-127.18295437112002,56.955729490867135],[-127.1825260109553,56.9551181278315],[-127.18234265009653,56.95430729408115],[-127.18263317492135,56.95374766793456],[-127.18296071562222,56.95325382519274],[-127.18312705240788,56.95233670734844],[-127.18368507204343,56.95170852379226],[-127.18434616390574,56.95102000235066],[-127.18434099075687,56.9490431546059],[-127.18449758888951,56.94791095391427],[-127.1845146842908,56.946893214528316],[-127.18411580290778,56.94616728241277],[-127.18355263750801,56.94545181114299],[-127.18272535928791,56.94477908628494],[-127.18223955968351,56.944169371301676],[-127.18266717471228,56.94305040082719],[-127.18352744693152,56.941782922137534],[-127.18481613900668,56.94093403016691],[-127.18566165377352,56.94032787472423],[-127.18606896902688,56.93999131542875],[-127.18619661471814,56.93962592886793],[-127.18753466028699,56.93941534784004],[-127.18932702788976,56.939192750979814],[-127.19064024421793,56.93854529902121],[-127.19300063977201,56.936668922691105],[-127.19416164698848,56.93552861205925],[-127.19428541081298,56.93424429595628],[-127.19398314389153,56.93268708881704],[-127.19329835003845,56.93159735702299],[-127.19267791509016,56.930325482414936],[-127.19295239561444,56.92909133968258],[-127.19264957436883,56.92718112839746],[-127.19193213015713,56.92596169631555],[-127.19133198388866,56.92564220633829],[-127.19021994744313,56.925329646101325],[-127.18997276480238,56.92518398191365],[-127.18974761397236,56.92505268423907],[-127.18952144485914,56.92492139552395],[-127.18929429201803,56.9247912361179],[-127.18906708972301,56.92465995612164],[-127.18883890370036,56.924529805427056],[-127.18861175546823,56.924399644861296],[-127.18838559404973,56.924268354225404],[-127.18816045396622,56.92413705387956],[-127.18793735339104,56.92400461384771],[-127.18771629392496,56.923872154796044],[-127.18749727395166,56.92373855607968],[-127.18728231658447,56.92360379921808],[-127.1870704184701,56.92346789340065],[-127.1868615795952,56.92333083864246],[-127.18666691088056,56.923186930111136],[-127.18651289722354,56.92302696060515],[-127.1863955313086,56.92285544954727],[-127.18630791720776,56.92268142536607],[-127.18624079452218,56.92250497268667],[-127.18623001240633,56.922321281492],[-127.18623144618641,56.92213411675748],[-127.18622614033818,56.921961582281284],[-127.18629501975494,56.921793973673864],[-127.18640810878247,56.92162596125631],[-127.18654386417212,56.92145998303721],[-127.18669412945911,56.92129723412719],[-127.186853705656,56.92113664130994],[-127.1870133839505,56.92097940937188],[-127.18718762438647,56.92082764748614],[-127.18737741208484,56.9206802259184],[-127.18757238066598,56.92053387737429],[-127.18776218189555,56.920386455122596],[-127.1879374709018,56.92023580331784],[-127.18808888325289,56.92007752500719],[-127.18821850947639,56.91991272182191],[-127.18833153365358,56.91974358773699],[-127.18843007916844,56.91957122403799],[-127.18853988788742,56.91939763654452],[-127.18862499177105,56.91922315438476],[-127.18865344948203,56.919045828592374],[-127.18863552251109,56.91886444463934],[-127.18864425139621,56.918680575434735],[-127.18864670942101,56.9184934016404],[-127.18862700316876,56.918320999368134],[-127.18860852435216,56.91812168989435],[-127.18870229715549,56.917928077146456],[-127.18901129330081,56.917879301491446],[-127.18933381520884,56.91783600457098],[-127.18954873125534,56.91780377841379],[-127.18983509510588,56.91778770738388],[-127.18988296351216,56.917706580892606],[-127.18987116388617,56.91752402042178],[-127.1898161951691,56.91734185544598],[-127.18981797334672,56.917165894626756],[-127.18991971912592,56.916997983313706],[-127.19006171375254,56.91683530647036],[-127.19021505599152,56.91667364615365],[-127.1903497579856,56.91650767384195],[-127.19043906226669,56.91633651419009],[-127.190491122711,56.91615785122734],[-127.19052770472423,56.91597708881656],[-127.19057154189814,56.91579850123554],[-127.19065370993819,56.9156296482397],[-127.1909123122284,56.91551409004203],[-127.19119951976992,56.91542628558083],[-127.19145820641606,56.915314087504996],[-127.19169706049053,56.915191984907324],[-127.1918649858777,56.915036912868636],[-127.19195322587018,56.91486464135077],[-127.19204659568784,56.91469232270032],[-127.19219116063415,56.91448031078933],[-127.19219215326835,56.914345821956864],[-127.19218965453786,56.91416541795553],[-127.19218104040482,56.91398619077834],[-127.19215270748168,56.91390128040476],[-127.19194551026034,56.913783271206135],[-127.19185368218662,56.91370566751679],[-127.19173848017552,56.91353750451158],[-127.19165295320236,56.91336458648561],[-127.19158171137319,56.91318817536873],[-127.19154126726785,56.913010361005874],[-127.19149469182764,56.91283372357174],[-127.19141944463779,56.91266071118003],[-127.19130120732696,56.912493696457595],[-127.19113909926524,56.9123371700172],[-127.19098414361713,56.912179457145356],[-127.19076032536682,56.91202237556116],[-127.19080930365027,56.91184374117106],[-127.19107358018418,56.91171356206367],[-127.19096312211624,56.91163164613391],[-127.19059950984445,56.91157446457961],[-127.19030344922234,56.91150769756726],[-127.19010951845154,56.911386202209066],[-127.19006407388378,56.91117929630608],[-127.18996729805107,56.91100760130202],[-127.18986335575326,56.91083709257871],[-127.18978602990374,56.91066297795499],[-127.18973428428716,56.91048526697024],[-127.18966720169152,56.91030993781938],[-127.1895601878809,56.91013945709995],[-127.18941849503251,56.90997825925025],[-127.18926863323793,56.909818256748714],[-127.18909841072505,56.90966516450935],[-127.18890274867768,56.90952014961138],[-127.18870510187662,56.90937739393402],[-127.18852267204483,56.90922777474858],[-127.18833920778829,56.90907816480093],[-127.18817612475206,56.908922764835374],[-127.18801708448296,56.90876508638758],[-127.1878438314716,56.90861314108221],[-127.18766037276889,56.90846353023573],[-127.18748201078166,56.908312751889895],[-127.18733829457466,56.90815157060766],[-127.18719967482696,56.907989221939815],[-127.18719955400041,56.90771802376188],[-127.18720431477135,56.90753867494971],[-127.1872152409356,56.90735926978706],[-127.18720150536254,56.907180090130026],[-127.18718467900631,56.90700093875277],[-127.18720486135763,56.90682144902366],[-127.1872641775351,56.90664496346134],[-127.18732452893961,56.90646846842097],[-127.1873817709061,56.90629088114558],[-127.1873885857335,56.90611151370077],[-127.18739847488197,56.90593211816188],[-127.1873970693275,56.90575282593178],[-127.18739255495763,56.90557244149614],[-127.18735008309307,56.90539464550772],[-127.18726253879542,56.90522174430484],[-127.18715556774082,56.90505238266243],[-127.18705063461711,56.90488188167161],[-127.186950797254,56.90471021338368],[-127.18683156792024,56.904543204929304],[-127.18672560189883,56.904372713199784],[-127.18663498846993,56.904199839787985],[-127.18661300239302,56.90401961522277],[-127.18675199234653,56.90386033249692],[-127.18692097646918,56.90370749936419],[-127.18711380609793,56.90356117192178],[-127.18734849130718,56.90343911583767],[-127.18757366025775,56.90330818112976],[-127.18783393260408,56.903216147800286],[-127.18812733753055,56.90323251428335],[-127.18830574129096,56.90308519641009],[-127.18839289967204,56.90291181779794],[-127.18859000207057,56.90277105231613],[-127.18882882210735,56.90265007633385],[-127.18902177728869,56.90250822751371],[-127.18925316881833,56.902379474192735],[-127.1895246208936,56.902283973064876],[-127.18979898945157,56.90218284136219],[-127.19008717052415,56.90209615097348],[-127.19034482096222,56.901986206111694],[-127.19060240080744,56.901874020071084],[-127.19083497531108,56.90175085632613],[-127.19105383790499,56.901616611408684],[-127.19128003743138,56.90148678141642],[-127.1915250401529,56.901366864349185],[-127.19178894987222,56.901260221109226],[-127.19206019661488,56.901157992577716],[-127.19233253032931,56.90105799479959],[-127.19262924629217,56.90098242686404],[-127.19293659782299,56.900917967063194],[-127.19323647121587,56.90084461002263],[-127.19352147487743,56.900755699818816],[-127.19378958843434,56.900652375782784],[-127.19407351913085,56.90056235356504],[-127.19436276701317,56.90047788507625],[-127.19465622720871,56.900396739138294],[-127.19494968617038,56.90031559254126],[-127.19523269660802,56.90022893819544],[-127.19547141069086,56.90010570952589],[-127.19565927513908,56.899999758563716],[-127.19570071155425,56.899976963837936],[-127.19593208390715,56.899849319313844],[-127.19616449031614,56.89972166484632],[-127.19638021426726,56.89958631911589],[-127.1965949175643,56.899450982432676],[-127.1968095681777,56.89931452522363],[-127.19701901923588,56.89917587429171],[-127.19722539496132,56.8990372513819],[-127.19745257774015,56.89890740145608],[-127.19767977542794,56.898777550992165],[-127.1978954887895,56.89864220282724],[-127.19810804086111,56.89850464216924],[-127.19834780543495,56.898382519125605],[-127.19861481924956,56.89827807451135],[-127.19887345545574,56.89816810343865],[-127.19912991468651,56.89805478999131],[-127.19940642191332,56.897958100618254],[-127.1996735160091,56.897855894368604],[-127.1999236676167,56.89773815500938],[-127.20000062884647,56.89770158267808],[-127.20016969005681,56.89761933268392],[-127.20041774915993,56.89750049105419],[-127.200670106642,56.89738721246012],[-127.20095824591695,56.897301618698805],[-127.20127645485684,56.897257210240426],[-127.20160394622879,56.897247455358205],[-127.20193145387195,56.8972376994979],[-127.20223445994169,56.897167654387054],[-127.20251839665107,56.897078734085596],[-127.20278956915664,56.89697648357093],[-127.20307134384076,56.8968842201154],[-127.2033425484429,56.896783088789434],[-127.20362746390191,56.89669303630743],[-127.20392728415428,56.89661965477792],[-127.20427575099129,56.896623146422165],[-127.20463728132924,56.896518933061536],[-127.20482941718075,56.89645215195472],[-127.20510164963508,56.896351007371514],[-127.20509803770838,56.896169494871366],[-127.2051996267004,56.896000453566955],[-127.20525006161357,56.89583861108226],[-127.2052316476607,56.89564378822388],[-127.20524591003286,56.89547555769501],[-127.20529069130122,56.89529695792657],[-127.20534990708535,56.89512046543335],[-127.20542046515013,56.89494498825481],[-127.20549411249131,56.89476948236222],[-127.20551418688224,56.894589991375646],[-127.20555793044062,56.89441140123394],[-127.20570711481807,56.894253124144605],[-127.20597409659429,56.89414866452301],[-127.20623029822545,56.894028615378566],[-127.20632897827535,56.89386520362455],[-127.20637164680842,56.8936855025878],[-127.20643227575444,56.89352132376428],[-127.20650361627513,56.89333799426428],[-127.20657643377119,56.89313672056884],[-127.20654968842072,56.89297111259936],[-127.20653277847282,56.89279196539251],[-127.20650868666942,56.89261288496278],[-127.20648254074763,56.892433823644616],[-127.20645639506839,56.89225476234202],[-127.20643641260021,56.89207564377147],[-127.20642666687121,56.89189530942118],[-127.20638515776638,56.891717511622936],[-127.2064062968039,56.89153913155638],[-127.2064551952867,56.891361614132734],[-127.20646602741581,56.89118220924524],[-127.20647480517852,56.89100282347277],[-127.20648358285963,56.89082343772057],[-127.20649236045921,56.89064405198856],[-127.20649904872653,56.89046356504697],[-127.20649344658003,56.890284313024154],[-127.20646012075979,56.890105318728644],[-127.20644735591117,56.889927253978335],[-127.20639043411707,56.88974959969353],[-127.2063437837951,56.88957184993959],[-127.20629200666883,56.889394147843554],[-127.20622693970135,56.88921881056543],[-127.20613523922688,56.88904596209175],[-127.20607321157047,56.888869475893706],[-127.20596823889228,56.88869899198868],[-127.20587759465496,56.888527254247826],[-127.20582174781738,56.88835071057921],[-127.20579046446261,56.888171697403706],[-127.20576741425442,56.88799260775349],[-127.2057504751271,56.887812340698545],[-127.20573049823284,56.88763322253433],[-127.20570535955913,56.88745303169543],[-127.20568740214065,56.88727277416022],[-127.20569207451581,56.88709342705942],[-127.20572659231146,56.88691604399842],[-127.20578577469271,56.886738431788736],[-127.20586658560867,56.88656285989906],[-127.2059701299925,56.88639155931311],[-127.20609856658204,56.886227871852796],[-127.20625589813608,56.886068398292565],[-127.20645263937959,56.885920885306405],[-127.20666247335392,56.88579790452795],[-127.20687899642931,56.885659172138865],[-127.20711524907706,56.8855269797559],[-127.2073257636702,56.885392785093664],[-127.20748521078639,56.885235531663106],[-127.20755800527006,56.88506675726064],[-127.20764935466454,56.884900051456455],[-127.20771463542962,56.88472126108965],[-127.2077777028736,56.8845368880706],[-127.20776691761185,56.88435656433417],[-127.20768429735568,56.88417802979989],[-127.20754532775294,56.88400450218144],[-127.20739022444185,56.88387370910846],[-127.20715907502986,56.88374138200558],[-127.20696960311345,56.88359521913627],[-127.20684422582947,56.883429408979616],[-127.20673617553994,56.88325895502212],[-127.2066230698291,56.883090789300034],[-127.20656006581503,56.88291543380519],[-127.20656777112494,56.88273493828942],[-127.20655600833167,56.882555744452986],[-127.2065278151931,56.882376703403956],[-127.20647193927255,56.88219904039674],[-127.20657828154205,56.88198624981132],[-127.20690542879531,56.88200225846266],[-127.20723161126533,56.882020516557034],[-127.20755854885968,56.882029801648834],[-127.20788582079703,56.88201666990725],[-127.20821219762601,56.88200802825271],[-127.2085394509364,56.88202739374103],[-127.20886563439122,56.882045647728745],[-127.20919350244806,56.88205155810349],[-127.2095211436132,56.8820507458931],[-127.20984804691068,56.88205890489897],[-127.21015767691927,56.88207282739934],[-127.21047059051202,56.88206094368243],[-127.2107511677718,56.881967553787106],[-127.21101557525155,56.88181716125435],[-127.21123934673238,56.881746713330415],[-127.2115257296333,56.88164206109278],[-127.21180528263281,56.881548678454465],[-127.21204570627387,56.8814198000403],[-127.21206295220622,56.88124930082489],[-127.2120161453827,56.88106707281774],[-127.21198987624862,56.88088465299441],[-127.21201196694548,56.880705143432216],[-127.21203811094733,56.88052335473458],[-127.21209420091135,56.88034688954878],[-127.21235921019664,56.88024915896966],[-127.21261240336166,56.88013472859434],[-127.21280191044131,56.87998727364379],[-127.21300238630347,56.879829630075484],[-127.21310240512943,56.879646029946166],[-127.21316819615278,56.87948404202069],[-127.21332104694385,56.87931451615344],[-127.21353291199108,56.879192625903435],[-127.21376301184985,56.879062720220766],[-127.21400560798479,56.878938300431244],[-127.21424723799099,56.8788161305133],[-127.21449414963972,56.87869839328182],[-127.21474941515496,56.87858505994389],[-127.21501205121697,56.87847726030121],[-127.21528204144819,56.87837499446213],[-127.21556572298717,56.87828380623301],[-127.21585582727133,56.87820040170181],[-127.2161510913093,56.878118068797214],[-127.21645176212989,56.87804464967843],[-127.21676345737325,56.87799466000575],[-127.21710529769942,56.877989212591565],[-127.21744633127848,56.87799049571346],[-127.21773752447226,56.87794181669974],[-127.21793860558014,56.87780433134765],[-127.21810360872217,56.87763020312068],[-127.21831413169316,56.87749935241182],[-127.21860294837504,56.877440607940514],[-127.21892771871323,56.87741514439577],[-127.21926939317183,56.87740408956641],[-127.21960794353579,56.87739194255653],[-127.21993490790159,56.87737093843792],[-127.22026088876042,56.87735106338706],[-127.22058686928371,56.87733118751756],[-127.22091277863197,56.87730907020581],[-127.22123533209492,56.87727801849779],[-127.2215566728699,56.87724137417499],[-127.2218768362684,56.87720025755804],[-127.22219601589529,56.877160270058084],[-127.22251731931289,56.877122503047715],[-127.22284074657028,56.877086956511036],[-127.22316524368892,56.87705251972307],[-127.22348997226064,56.877025924455374],[-127.22381428540503,56.87701838326609],[-127.22413739722283,56.87703774809767],[-127.22446107772409,56.87707503709515],[-127.22478381136928,56.877114575522235],[-127.22510731543204,56.87714626135648],[-127.22543074892421,56.87717570576404],[-127.22575516589644,56.87720401943307],[-127.22607949306378,56.87722897120542],[-127.22640575100932,56.877250541981724],[-127.22673577691161,56.877260869849955],[-127.22706748410462,56.877259974512704],[-127.22735812556118,56.87719446928296],[-127.22761407701437,56.877072138636024],[-127.22783070604874,56.87694009378218],[-127.22790952085697,56.876770130265136],[-127.2279499809795,56.87658932325158],[-127.22798631456942,56.876407434652464],[-127.22804434353013,56.876229823299674],[-127.2280725885769,56.87605249385431],[-127.22800228417377,56.87587609721263],[-127.22788091292098,56.87570914902938],[-127.22773916728144,56.87554687614539],[-127.22761985162478,56.875379908321904],[-127.22751687392213,56.87520942390362],[-127.22742921824808,56.87503655318547],[-127.22730770969848,56.87486512332304],[-127.2271564719137,56.87469509522116],[-127.22704276845171,56.87451014360694],[-127.22705692801938,56.87434191298408],[-127.22696040038831,56.87418033243865],[-127.22689008804555,56.87400393556158],[-127.22688953522241,56.87382463770447],[-127.22693421047195,56.87364715343602],[-127.22702941349908,56.873475915155105],[-127.22701038021265,56.87329679213924],[-127.22696056670316,56.873119080893034],[-127.226925143143,56.872941233564],[-127.22693873320165,56.87275507821316],[-127.22703825412033,56.87259052302661],[-127.22728930031957,56.87247608400095],[-127.22757480183232,56.87237924875279],[-127.22785625020168,56.87228469251706],[-127.22814517679522,56.87219903001575],[-127.22846204154791,56.8721523248325],[-127.22875394575735,56.872095769495026],[-127.22897163269096,56.871965954123645],[-127.22917448200906,56.87182171060443],[-127.22937418686524,56.87167525527871],[-127.22956878461338,56.87152996869326],[-127.22971872927643,56.87136941609103],[-127.22986974318043,56.87120997382652],[-127.2300248979018,56.871051612772284],[-127.23017903297148,56.87089326120577],[-127.23031970586135,56.87073167520646],[-127.23043552543007,56.87056360093595],[-127.23055236235717,56.870395516919956],[-127.23065989591852,56.8702252797803],[-127.23078708436852,56.87005933865319],[-127.23092466376868,56.86989778138142],[-127.23110781993081,56.86974811850962],[-127.23132218354952,56.86961160687355],[-127.2315178340614,56.869467428038],[-127.2317437092986,56.86933753026916],[-127.23196224604435,56.86920321922796],[-127.23220175743492,56.86908215628964],[-127.2324885258597,56.86899426318844],[-127.23278063199851,56.86891304257363],[-127.23307589626084,56.86883403255844],[-127.23338083562106,56.86876837758159],[-127.23369111309283,56.868709394967865],[-127.23399603399903,56.86864373870639],[-127.23429664937508,56.86857139883392],[-127.2346047633843,56.8685090726721],[-127.23492605434437,56.86847351574969],[-127.23524291616515,56.86842791441914],[-127.23556647393099,56.86839905817114],[-127.23587965843926,56.868366938013914],[-127.23616882476769,56.86829022026982],[-127.23649011246776,56.868254659478815],[-127.23680340265416,56.86822589799759],[-127.23713183077157,56.868189146884355],[-127.23745206254797,56.868152473124205],[-127.23777558045596,56.86812249107099],[-127.23810022389473,56.86809585939373],[-127.23839016708293,56.868011284732745],[-127.23866632503102,56.86791339333311],[-127.23887849094642,56.8677735280766],[-127.23916918475972,56.86771247799119],[-127.2395084824585,56.86769466790952],[-127.23976474444623,56.867584637181544],[-127.2400643779974,56.867514534481806],[-127.24038126186117,56.86747004092878],[-127.24089289157104,56.867414718606035],[-127.24118504009081,56.86733571974884],[-127.24149441988638,56.86728120946615],[-127.24176271297463,56.86719459310522],[-127.24211032492794,56.867180058507806],[-127.24243919825011,56.8671892359796],[-127.24276612687963,56.86720179318235],[-127.2430930917754,56.867215469859815],[-127.24341825636208,56.86723700748131],[-127.2437426555394,56.867266396139655],[-127.2440612406469,56.86730704619603],[-127.24437800640673,56.867354436797406],[-127.24469377433643,56.86740295685332],[-127.24500759839378,56.86745485674104],[-127.24530575780217,56.86753043980557],[-127.24560684516007,56.867601511504205],[-127.2459109129381,56.86766919195615],[-127.24621296491777,56.867738011719965],[-127.2465101828826,56.86781584240891],[-127.24682008751628,56.86787337887227],[-127.24713197374842,56.86792865426353],[-127.24744195257438,56.867988429841255],[-127.24773710549259,56.86806627763279],[-127.24801837538665,56.86815882673561],[-127.24828162355817,56.868266117071684],[-127.24854385488356,56.86837341668235],[-127.24882614725759,56.86846595425075],[-127.24909942784315,56.86856530188014],[-127.24938464937163,56.86865332747849],[-127.24968084602706,56.86873116091484],[-127.24998096872831,56.86880335262386],[-127.2502810925513,56.86887554364202],[-127.25058514227415,56.868942092895544],[-127.25089319034716,56.86900524095121],[-127.25119629640017,56.869074039192796],[-127.25150720013514,56.869130434385944],[-127.25182299153566,56.86917893714378],[-127.25213783803504,56.86922968955869],[-127.25245072483087,56.86928382208403],[-127.25275672558793,56.86934698555097],[-127.25305693151147,56.86942141076722],[-127.2533541035101,56.86949698526528],[-127.25362208025663,56.86959077161753],[-127.25391429553295,56.86967199600848],[-127.2541824567424,56.86977138270013],[-127.25447269421906,56.86985486628702],[-127.25473391875256,56.86996216350055],[-127.25496696338163,56.870086542568494],[-127.25523024398932,56.870193818936386],[-127.25549254411814,56.87030222493037],[-127.25577281408829,56.87039476736739],[-127.25629985166717,56.87056000323036],[-127.25648821951779,56.87041585633006],[-127.25668169056914,56.87027053906994],[-127.25685853642115,56.87011977934901],[-127.25705511252808,56.869975552097415],[-127.2572967125693,56.869857783771494],[-127.25757499833388,56.86976319299847],[-127.25787772438417,56.86969413958069],[-127.25816345706569,56.86960731986859],[-127.25845129813777,56.869522720365566],[-127.25872452716182,56.86943041745218],[-127.25896181352806,56.86930708459141],[-127.25917194999474,56.869169446384106],[-127.25935497682364,56.86901974387528],[-127.25947778578266,56.86884933344576],[-127.25950595419607,56.868674238603916],[-127.25950543271813,56.86850054299043],[-127.25970117519199,56.86836304369375],[-127.25999756107494,56.86828844357019],[-127.26031197319233,56.86823159801588],[-127.26062993103086,56.86818928567865],[-127.26095223007786,56.86815365425455],[-127.26127018657355,56.868111340350204],[-127.26158584964251,56.86806120341792],[-127.26189346640639,56.86801674723515],[-127.26218184627086,56.867917565657834],[-127.26246337689527,56.86782853593994],[-127.26273631155821,56.86772838278382],[-127.26302843419012,56.86764933456344],[-127.2633066900097,56.86755473162977],[-127.26358544967125,56.867444434085556],[-127.26386648875591,56.867372215821014],[-127.26417674510337,56.86731428064686],[-127.26449587255516,56.86727642994577],[-127.26479007782204,56.8671984780609],[-127.2650831371326,56.86711717472722],[-127.26540442513364,56.86708266265012],[-127.26573135069499,56.867063783864666],[-127.26602555184934,56.86698582918851],[-127.26634907451209,56.8669568961966],[-127.26661579735304,56.86685567476965],[-127.26683274422265,56.866770628034594],[-127.26717650554941,56.866701151885515],[-127.26743183123676,56.86659667814751],[-127.26761272417387,56.86644586400433],[-127.26781972665957,56.86630824221615],[-127.26810126934008,56.866220320645944],[-127.2684295888304,56.866212627862716],[-127.26875317681106,56.86618592947086],[-127.26906450815781,56.8661302132723],[-127.26937347565733,56.86615856824403],[-127.26964694004123,56.866262353601265],[-127.26994586203088,56.86632890768315],[-127.2702587298586,56.86638187670713],[-127.27054901345281,56.86646644443666],[-127.27083430520464,56.86655554304562],[-127.27111660080946,56.86664691170869],[-127.27138593057313,56.866749613377614],[-127.27163820918886,56.866864808838606],[-127.27189045242048,56.8669788835272],[-127.27215677269655,56.86708385447348],[-127.27240703973105,56.86720018888835],[-127.27267632344729,56.86730176778531],[-127.27296852454107,56.86738182884699],[-127.2732607637749,56.86746300954465],[-127.27356576584167,56.86752613384932],[-127.27388149791392,56.86757234228161],[-127.27420679350823,56.86759716360441],[-127.27453288600712,56.86761525236755],[-127.27486158582498,56.86761874619759],[-127.27518845462424,56.86762898111529],[-127.27551463826401,56.86764930782896],[-127.27583897485643,56.86767637581413],[-127.27616146040197,56.86770906447219],[-127.27648833030979,56.86771929611527],[-127.27681545961616,56.867737368959986],[-127.27713979785932,56.8677644336945],[-127.27745440671542,56.86780728259593],[-127.27777589706999,56.86784109772268],[-127.27809646448416,56.867878283115665],[-127.2784132395664,56.86792447033394],[-127.27873854103703,56.86794928029896],[-127.27906193831164,56.86797859084775],[-127.279385373184,56.868009020879505],[-127.27970781096664,56.868040580602184],[-127.28002934236089,56.86807551043829],[-127.28035187191887,56.86810930897674],[-127.28067527175725,56.86813861550666],[-127.28099870924024,56.86816904151939],[-127.2813211868398,56.86820171752368],[-127.28164562290742,56.8682310114157],[-127.28195946611267,56.868281701646154],[-127.28226356570482,56.86834817662493],[-127.28255685008158,56.86842932636492],[-127.28284223765388,56.86851951880243],[-127.28314325287334,56.86858602226542],[-127.28346307193183,56.868538032048285],[-127.2837776377063,56.86848673105736],[-127.28407275708403,56.86840648473123],[-127.28433306092224,56.868298566028855],[-127.28452332887953,56.86815323802978],[-127.28470934035367,56.86800346928209],[-127.28492139370488,56.86786464887115],[-127.28519332665138,56.86776669913195],[-127.28549261812603,56.867688649505425],[-127.28580390013875,56.86763177279465],[-127.2861239691055,56.8675916180536],[-127.28645066496532,56.86756596532905],[-127.28677782466615,56.86755375505526],[-127.28711432633652,56.86754481322779],[-127.28745598942093,56.86753693995434],[-127.28779480521652,56.86753581798833],[-127.2881196611183,56.86754716099124],[-127.28842155145196,56.867577782464735],[-127.28859539877226,56.8677105344315],[-127.28874486395893,56.867881630779934],[-127.28900134511083,56.867997872047354],[-127.28930044247174,56.86806774229731],[-127.28961429439333,56.86811841400386],[-127.28993400686016,56.86816006141941],[-127.290256716475,56.868199436927306],[-127.29057742759137,56.868239952181455],[-127.29089614482434,56.868282727809365],[-127.29121582258264,56.86832325178463],[-127.29153553847135,56.868364895258765],[-127.2918493957389,56.868415561567744],[-127.29215645123793,56.86847750146927],[-127.29239465434182,56.86850762755039],[-127.2923348052592,56.86822245584144],[-127.29228017320442,56.868062745939206],[-127.29218380712707,56.86788327993],[-127.29212450806592,56.86770680662574],[-127.29206715009737,56.86752695201065],[-127.29198673744172,56.86736413689739],[-127.2919170254213,56.86718328465839],[-127.29181476665258,56.867011721807685],[-127.29171049331816,56.866841299623275],[-127.2916134143645,56.866670805744626],[-127.29153464628632,56.866495646872046],[-127.29147228116777,56.8663192040056],[-127.291408919411,56.8661438917142],[-127.29127811242078,56.86597821611479],[-127.29114429390836,56.86581481170239],[-127.29104311428486,56.86564435837793],[-127.29089398452015,56.865483347474814],[-127.29075610106689,56.86532110385854],[-127.29065590523076,56.865149519869746],[-127.29055776312352,56.86497791539697],[-127.29048007533495,56.864803866062246],[-127.29037278025005,56.864634593880425],[-127.29023186842592,56.86447350062965],[-127.29009502597049,56.86431124612348],[-127.28997342277566,56.86414435731934],[-127.28986407895627,56.863975105203984],[-127.28973635688874,56.863809397739196],[-127.2895720390894,56.86365413992853],[-127.28939147106547,56.863504646758095],[-127.28921802251142,56.863352841289206],[-127.28909446456686,56.86318821256902],[-127.28897591916314,56.86302017198189],[-127.28888291353266,56.86284851555567],[-127.28880216670579,56.86267449596891],[-127.28869791836601,56.8625040718346],[-127.28857329342345,56.86233833270449],[-127.28845177774005,56.86217368324766],[-127.28828526993951,56.86201396323324],[-127.28810996651976,56.86186777822547],[-127.28793549580519,56.86171598147487],[-127.28777015960578,56.86156073186229],[-127.28758452225905,56.86141240752898],[-127.2874446310099,56.86125018102918],[-127.28730267188051,56.86108797493208],[-127.28719946895858,56.86091753949725],[-127.28710952609218,56.86074473110826],[-127.28708508082671,56.860565669434145],[-127.2870554960855,56.860386658781984],[-127.2869013546059,56.86022793523388],[-127.28680936209882,56.86005514707994],[-127.28678392147926,56.85987721597284],[-127.28683557226412,56.85970188192384],[-127.28690893184574,56.8595308150567],[-127.2869027101964,56.859436742125006],[-127.28689591831397,56.85935612266615],[-127.28679458777843,56.85918006532799],[-127.2867721974857,56.85900098340725],[-127.28674134603436,56.85890715488201],[-127.28677036985106,56.85882281813102],[-127.28680548731221,56.85864428629341],[-127.28693759414026,56.858480481123294],[-127.28697384050382,56.85830530001544],[-127.28701820090986,56.858126676438616],[-127.2870635789295,56.85794804276334],[-127.2871933045329,56.85780555334799],[-127.28745992600878,56.857704289496425],[-127.28778396216512,56.85766297004494],[-127.28811198091292,56.85764850581638],[-127.2884386941555,56.857656466725714],[-127.28876636723002,56.85766217597459],[-127.28909413611746,56.85767124539469],[-127.28941928334667,56.85769378785815],[-127.28974565237925,56.85772192061119],[-127.29007405792257,56.857750032289154],[-127.29039558788705,56.857787176760624],[-127.29069833940022,56.85784579970407],[-127.2909615983375,56.85795188243272],[-127.29121205003395,56.85807378128073],[-127.29150499204471,56.85814594786961],[-127.2918207812866,56.85819547319914],[-127.29211990384859,56.85826869751055],[-127.29243079673705,56.858324994071005],[-127.29275039372074,56.858365514007616],[-127.29307097191446,56.85840490272913],[-127.29339053272653,56.8584443008124],[-127.29371199662963,56.85847919652269],[-127.29403244307646,56.858514101595205],[-127.29435679101306,56.858543363681335],[-127.29468187356761,56.858563652408655],[-127.29500959280752,56.85857046616517],[-127.29533795459658,56.85856606615087],[-127.29566262824028,56.85854377170899],[-127.29598040886967,56.85849913227981],[-127.29629376666202,56.8584455710531],[-127.29659740685119,56.858377537732984],[-127.29690211802719,56.858310613636895],[-127.2972122520475,56.85825259979672],[-127.29753236553736,56.858216898420196],[-127.29784477612834,56.85816558419442],[-127.29813880707228,56.85808643686441],[-127.29844125614868,56.85801392849302],[-127.29876187251419,56.85799278751256],[-127.29908369489243,56.85797723692159],[-127.29936915652335,56.85788808673399],[-127.29961977979781,56.857770148062315],[-127.29986098529724,56.85764670003234],[-127.30015107535813,56.85757319085316],[-127.30047306082002,56.85753186011567],[-127.30078534881481,56.85747717800375],[-127.30110309833405,56.857432526218346],[-127.30142777554515,56.857410217196254],[-127.30177429665068,56.8573966533144],[-127.30206722782516,56.85737690266322],[-127.30239060524251,56.85734675969532],[-127.30271750586193,56.85733002837052],[-127.30304461153092,56.85731889742863],[-127.30337064479735,56.85730665578408],[-127.30372164716194,56.85730424818616],[-127.30401987790887,56.857350558430795],[-127.30433655982911,56.85739556176313],[-127.30464848149275,56.85745181876617],[-127.30501730462571,56.857490692610426],[-127.30529536327674,56.85748677348861],[-127.30562277239034,56.85748459823334],[-127.30595112373942,56.85748017135267],[-127.3062773468282,56.8574735237679],[-127.30660470146874,56.85747022592581],[-127.30693156858463,56.85748262134296],[-127.30725707675899,56.85748494373969],[-127.30758546583812,56.85748163299456],[-127.30790871557325,56.85747837325052],[-127.30823550730963,56.85748852483553],[-127.30856280244377,56.85748298133969],[-127.30889122934663,56.857480787561165],[-127.30921884955819,56.8574853250301],[-127.30954374115132,56.85749997512986],[-127.30985864415804,56.85755282761679],[-127.31018011550798,56.85758768248972],[-127.31050507635358,56.85757431308684],[-127.310818841016,56.8575330396289],[-127.31114459955279,56.85754319434023],[-127.31147060284333,56.85756006969953],[-127.311798718507,56.85757916418816],[-127.31212577844082,56.857597147875175],[-127.31245372088378,56.85761063918168],[-127.31278369957262,56.8576241090483],[-127.31311354261139,56.85763309682283],[-127.31343667889338,56.85762646248609],[-127.31372739646996,56.85754170975207],[-127.31396654114202,56.85741937657262],[-127.31414847249708,56.857275209598484],[-127.31426083831032,56.85710821360838],[-127.31452000182595,56.85700136571133],[-127.31462621327812,56.85680417405532],[-127.31470237955962,56.85671935262264],[-127.31505165513228,56.85669675998114],[-127.31542221433334,56.856605590419214],[-127.31570873882384,56.85651863439623],[-127.31601236783456,56.85645167597945],[-127.31633348341843,56.856415917743995],[-127.31665459840798,56.856380158714316],[-127.3169790668617,56.85635220942877],[-127.3173035948173,56.85632650003762],[-127.31762361378532,56.85628850841268],[-127.31794361570516,56.85625051616605],[-127.31826823502968,56.856227044734176],[-127.31859553984991,56.8562225963607],[-127.31892171189936,56.856214796708166],[-127.31925008918031,56.85621145643114],[-127.31957767800057,56.856214847293444],[-127.3199062848478,56.85621822696708],[-127.32021593763017,56.856267745764754],[-127.32050522011251,56.856352211674775],[-127.3208228544213,56.8563949238193],[-127.32113574978264,56.856448890060356],[-127.32145056702466,56.85649947399657],[-127.3217762809356,56.85647822394356],[-127.32209857913567,56.85644692196294],[-127.32242630715778,56.85645478687022],[-127.32275309404456,56.85646490186895],[-127.32308072368315,56.85646940415149],[-127.32340937137336,56.85647389521749],[-127.32373523751802,56.856457121316055],[-127.32405815037579,56.8564739965328],[-127.32436222941182,56.85654037231875],[-127.3246873108405,56.85656058581221],[-127.32501465616446,56.85655724150522],[-127.32533737511012,56.856538254414694],[-127.32564513076072,56.85647235176189],[-127.32594711272547,56.856417714006966],[-127.32626482443669,56.856373000609494],[-127.32658754122927,56.8563540104103],[-127.32691488463864,56.856350661307715],[-127.32724080778068,56.856365256480856],[-127.32755756921884,56.85641244378454],[-127.3278762077072,56.85645400779999],[-127.32820132875824,56.85647533275071],[-127.32852894270012,56.85647982143813],[-127.32884880369329,56.85646757883151],[-127.3290180526102,56.85631455514801],[-127.32917688428104,56.85615715537769],[-127.3292767301002,56.8559857914873],[-127.32937344978308,56.855813338916626],[-127.32948259817698,56.85564412084181],[-127.3295834978123,56.85547386659981],[-127.32969160996632,56.85530465899116],[-127.32985252559591,56.85514835771467],[-127.33005080528994,56.85500400026718],[-127.33015273509886,56.854833735042],[-127.33029193557444,56.85467317333588],[-127.33039898589185,56.85450285540198],[-127.33049368317847,56.85433154347796],[-127.33059971374786,56.85416123585969],[-127.33067893218524,56.85398784133494],[-127.33066451185401,56.85380756311125],[-127.33063986916436,56.85362851046843],[-127.3305334085327,56.85345814202516],[-127.33040354964793,56.853293616889445],[-127.33027873699436,56.853126798563906],[-127.3301529296843,56.85296111100934],[-127.33002409196621,56.85279657510371],[-127.32990334832297,56.85262859410686],[-127.32976942915452,56.85246523078124],[-127.32965791409433,56.85229715496908],[-127.32947823983211,56.85214658783349],[-127.32930769414038,56.85199256491815],[-127.32910978477226,56.85184890822188],[-127.32882571632682,56.851766649779115],[-127.3285064827691,56.85173630127727],[-127.32817961884487,56.85172284001686],[-127.32789718194343,56.85162823563428],[-127.32771352892362,56.85148106893817],[-127.32765313552227,56.8513068648529],[-127.32771484984346,56.85113141044576],[-127.32778580614605,56.850955861380555],[-127.32786606487863,56.8507824583349],[-127.32798412371481,56.85060418547614],[-127.32804850346879,56.850446634164314],[-127.32812944766592,56.8502631380606],[-127.32819213745927,56.85008655285463],[-127.32821675703345,56.84990699566573],[-127.32820752644425,56.84972778525927],[-127.32816544753796,56.84954891136991],[-127.32817775495573,56.84936948037069],[-127.32816403568708,56.8491791094515],[-127.32812748072841,56.84901138558728],[-127.32809976670089,56.84883236461884],[-127.32811161218602,56.848639490577774],[-127.32804326107096,56.84847209246059],[-127.3278809671265,56.84831910438181],[-127.32772670614062,56.84816043059051],[-127.32757448192342,56.84800173578882],[-127.32738773922875,56.84785348014062],[-127.32721018484364,56.847704009538056],[-127.32712552314199,56.847540140025316],[-127.32705013780814,56.8473470385283],[-127.32712288188783,56.84722414263744],[-127.3273754801315,56.84710837065355],[-127.3276187747127,56.84699045213515],[-127.32784939382827,56.8468625770931],[-127.32807588563509,56.84673362326127],[-127.32829814031784,56.84660135047965],[-127.32852877127871,56.84647347409236],[-127.32879401804635,56.8463676555745],[-127.32908362166384,56.846283999883596],[-127.32938490260155,56.84621143033568],[-127.32969717383492,56.84616003978153],[-127.33001918681104,56.846123117029414],[-127.33034016505759,56.84608620409003],[-127.33066246896682,56.8460582419769],[-127.33098927826165,56.8460414393455],[-127.33131618663099,56.84602799683304],[-127.33164432188768,56.84602014416382],[-127.33197151653368,56.846014541635824],[-127.332298115378,56.84599213458576],[-127.33257100156517,56.845899677580185],[-127.33281417900416,56.845779509057415],[-127.33309739869775,56.84568918600152],[-127.3333752861424,56.84559331388802],[-127.33364473313603,56.84549080407145],[-127.3339409390108,56.84542051733911],[-127.3342590702761,56.845390347838126],[-127.33458855496131,56.845362301984785],[-127.33489536522912,56.84530198977604],[-127.33517431822176,56.84520722343866],[-127.3354511242529,56.845110237299316],[-127.33576441260846,56.84505882151632],[-127.33605615926612,56.84497848994848],[-127.33634936488573,56.8449104698813],[-127.3370704127944,56.84475062609111],[-127.33687525678728,56.84450833596056],[-127.33682537923535,56.844341872741396],[-127.33676591249038,56.844165422513704],[-127.33668907612633,56.84399139269264],[-127.33660913238317,56.843816274236495],[-127.33651289213412,56.84364468573439],[-127.3364299193417,56.84347071910454],[-127.3364049197422,56.84331184396879],[-127.33635675933633,56.84310614014891],[-127.33637769806762,56.84294006755394],[-127.33635817313458,56.84276096426723],[-127.33637970320108,56.84258255842303],[-127.3364063703138,56.84240409963433],[-127.33641142605454,56.8422236223523],[-127.33643398958048,56.84204520589957],[-127.33648117194038,56.841866535643554],[-127.33658302237107,56.84169626694754],[-127.33671175242391,56.841531324268296],[-127.33689438674827,56.8413826353373],[-127.33695100010668,56.8412094709518],[-127.33703340403964,56.84104052315181],[-127.33720034645219,56.840883030433076],[-127.3373507977767,56.84072346633553],[-127.33737745912386,56.84054500755579],[-127.33737637791684,56.84036571436657],[-127.33738658816027,56.84018630469982],[-127.33740603820924,56.84000679971902],[-127.33745837284077,56.83982919675676],[-127.33750662046566,56.83965163595985],[-127.33757343066664,56.839477245568354],[-127.33769693473354,56.83931011464555],[-127.33780600009703,56.839140891330274],[-127.33793262621413,56.838974848625604],[-127.33806132503511,56.83880990505795],[-127.33818072203107,56.83864281609782],[-127.33836019057937,56.83849191655392],[-127.33851576451194,56.83833229830568],[-127.33873076350888,56.83820008240117],[-127.33899485287974,56.83809313399587],[-127.33926632288977,56.83799171203947],[-127.3395320112885,56.837871298190095],[-127.33965543847982,56.83773218249678],[-127.33977853969279,56.83755384727889],[-127.33976412188595,56.837374692186586],[-127.33975790956141,56.837195452298936],[-127.33975576112316,56.837015049774784],[-127.33974442880523,56.8368358628508],[-127.33967474256319,56.83666064105575],[-127.33959786919911,56.83648549353105],[-127.3395169491802,56.83631150845882],[-127.33942579588953,56.83613874976534],[-127.33930916596682,56.83597073689431],[-127.33915490735019,56.835812077934136],[-127.33900979483832,56.83565108303173],[-127.3388799432846,56.83548656840118],[-127.33870437491713,56.835334853017],[-127.3385075497264,56.83519120149351],[-127.33830869714726,56.835048691282594],[-127.33807450080887,56.83492223476967],[-127.33786859648814,56.834783158686],[-127.33766972600868,56.83463952711383],[-127.3375267140359,56.834479629746795],[-127.3373866555544,56.83431633982998],[-127.33719998008654,56.83416921983881],[-127.33699707398594,56.834027870280806],[-127.3368195072066,56.83387729389001],[-127.33668052640971,56.8337151128563],[-127.33659552302704,56.83354116857227],[-127.3365493593904,56.83336346178115],[-127.33649911033469,56.83318579712816],[-127.33643761112022,56.833009369138395],[-127.33638939773682,56.832831683500444],[-127.33626466403193,56.83266599333332],[-127.33613788030607,56.832500324209605],[-127.33603145362382,56.832329962547284],[-127.33591383260801,56.83216195751015],[-127.33574538408543,56.83200792402562],[-127.33561361261806,56.831875925278176],[-127.33548272107201,56.831680040559164],[-127.33535289786157,56.831515522804764],[-127.33527708802258,56.83134036263118],[-127.33521051666328,56.83116510725622],[-127.33513982747846,56.8309898942963],[-127.3350466716967,56.83081715406097],[-127.33493922075495,56.83064680233013],[-127.33473837012127,56.830504308005814],[-127.33452429741544,56.83036531149053],[-127.33442520856677,56.83019935588227],[-127.33442084111269,56.830013373950855],[-127.33434618810767,56.82984156349025],[-127.33413006953803,56.82970258749936],[-127.33383528986845,56.82963278009125],[-127.33351577145295,56.82958900139513],[-127.33328773801699,56.82946135310597],[-127.3331152649095,56.82930847874249],[-127.33291142061375,56.82916825392928],[-127.33270646691027,56.829025798946894],[-127.33251987339908,56.82887979294829],[-127.33237788266156,56.82871875977166],[-127.33229290961717,56.828544813209795],[-127.33216519997583,56.82838139174486],[-127.33204327447284,56.82820670430571],[-127.33193718637597,56.82804530169999],[-127.33180436097246,56.827881932545324],[-127.33163086715088,56.82772906698029],[-127.33147874591805,56.827571499043],[-127.33142442604183,56.82739387521133],[-127.33141927117924,56.82721462559322],[-127.33146448496363,56.82703822038452],[-127.33159314947302,56.82687216405859],[-127.33173630630274,56.82671044123285],[-127.33191369384248,56.826559572817736],[-127.3320962537181,56.82640977162819],[-127.33228301309359,56.82626328892533],[-127.33249158240508,56.826124426160725],[-127.33271284081198,56.82599663895611],[-127.33295594767753,56.825877591741964],[-127.33316033377785,56.825736529639556],[-127.33333562194059,56.82558456022577],[-127.33343539262282,56.825414316840806],[-127.33350110216853,56.82523770008413],[-127.33356993399752,56.82506217181351],[-127.3336893465926,56.82489620866992],[-127.33386564600484,56.82474422814958],[-127.33398087771333,56.82457606650631],[-127.33407648073589,56.82440362430589],[-127.33415468280805,56.82423248185657],[-127.33423667624524,56.824052335212635],[-127.3344047284616,56.82389931826107],[-127.33459353400161,56.82375281117006],[-127.33483459261781,56.823634902130074],[-127.33511022799152,56.82353792850753],[-127.33536059700667,56.82342216381765],[-127.33558274790087,56.82329100055443],[-127.33581005427132,56.82316090439408],[-127.33608993982561,56.823068367396324],[-127.33637714774348,56.822980236820676],[-127.33664545086727,56.822878852951185],[-127.33686648333729,56.82274545771326],[-127.33709169288265,56.82261426026663],[-127.33727841500833,56.82246777071155],[-127.33748859933017,56.82234681339982],[-127.33781940625359,56.8223333123554],[-127.33814616701758,56.82232097289228],[-127.33847066674734,56.82230305276186],[-127.33878068231692,56.82225166228429],[-127.33906260472298,56.82215909773042],[-127.33935202125313,56.82207542020472],[-127.33963185166874,56.821981755380754],[-127.339864550817,56.82183030407817],[-127.34012638942865,56.82175027190585],[-127.34040199810127,56.8216532871413],[-127.34066491397445,56.82154522672356],[-127.34088493035073,56.821412955673686],[-127.34110910146059,56.82128176187975],[-127.34134465708684,56.8211538117498],[-127.34164960294788,56.82110470807642],[-127.34197036245776,56.821067766924806],[-127.34205358686948,56.82110164471825],[-127.3422793343271,56.82110490933859],[-127.34260215456831,56.82112733919559],[-127.34289916912961,56.82120382646319],[-127.34319214530018,56.82128259621323],[-127.34329777101368,56.821311758426525],[-127.3435048707702,56.8213096110604],[-127.34382705294166,56.821283856961365],[-127.34413863645884,56.82121898958808],[-127.34440034971566,56.82110645139506],[-127.34465311517974,56.821001850015506],[-127.34495756555056,56.82093817531842],[-127.34528292807589,56.820915746470895],[-127.34560945962298,56.82092692388935],[-127.34593712536122,56.82094145062765],[-127.34625938084358,56.82091793095886],[-127.34657784988451,56.82087427829726],[-127.34690233356704,56.820856337068264],[-127.34722890410733,56.82086863064099],[-127.34754900907105,56.82090116218774],[-127.34781394954747,56.82099926404787],[-127.34807515827862,56.82110748999105],[-127.34835634913834,56.82120093913142],[-127.34861148741501,56.82131146849633],[-127.34883454522173,56.82144362356758],[-127.34906767807058,56.82157007016434],[-127.34930380183106,56.821694243934296],[-127.3495760153868,56.82179450788492],[-127.34986412615949,56.82188003730304],[-127.35016407199255,56.82195199505177],[-127.35045419664475,56.82203638156263],[-127.35076281614847,56.822092558544384],[-127.3510841861171,56.82213179219157],[-127.35139589130154,56.822187935509334],[-127.3516859420967,56.82227007880424],[-127.35195820504644,56.822371458021614],[-127.35221541188862,56.82248195897415],[-127.35245020440385,56.822597175984676],[-127.35271339448126,56.822732267715374],[-127.35296658114459,56.82281591375322],[-127.3532651951048,56.82290805001251],[-127.35356997617849,56.82297098441303],[-127.35387288736878,56.823039540872784],[-127.35418749183867,56.82309004410559],[-127.35450682298712,56.82312929072044],[-127.35482808762065,56.82316515440281],[-127.35514646506084,56.82320665071981],[-127.35547239438708,56.8232290162854],[-127.35559723613922,56.82327925989768],[-127.35570944810952,56.8233498071658],[-127.35587456035319,56.82340747367686],[-127.35600418007448,56.82341844431113],[-127.35632170093585,56.8234644293304],[-127.35663910464604,56.823507052869324],[-127.35696648189104,56.82351258986385],[-127.35728956666715,56.823541704569706],[-127.35760417968356,56.82359219952315],[-127.35791200158127,56.8236539713607],[-127.35821785254645,56.823718004433374],[-127.3585352997848,56.8237617435689],[-127.3588264340192,56.82384498053061],[-127.35908460864795,56.823953216814346],[-127.35932985763745,56.82407279468244],[-127.35958708045189,56.82418328129149],[-127.3598563492188,56.82428579645824],[-127.36011960868368,56.82439285675771],[-127.36038386372334,56.824498785444376],[-127.36064114820688,56.82461039005246],[-127.3609123781457,56.82471064122214],[-127.36121079725892,56.82470862721862],[-127.36152155179136,56.82473674041768],[-127.36175351517576,56.824857574137646],[-127.36193728964916,56.82500805085032],[-127.36214688824522,56.82516385910383],[-127.36232901706018,56.82529642223599],[-127.36256323440278,56.82542283415889],[-127.36277521135885,56.82555844478803],[-127.36297311121669,56.82570204771752],[-127.36318007461527,56.82584107242397],[-127.36354763840708,56.82602547421819],[-127.36377392861668,56.82589757996615],[-127.36408366271574,56.825838287202544],[-127.36439228324517,56.825776764116355],[-127.36469874987044,56.825711901021954],[-127.36501178620875,56.825659295137825],[-127.3653237254324,56.82560445875008],[-127.36562809886075,56.82553849483954],[-127.36593675411392,56.825478088320004],[-127.36625185397911,56.82542545765735],[-127.36653606157344,56.82534065316252],[-127.366796759989,56.82522920041117],[-127.36706703321764,56.8251277319625],[-127.36733837818241,56.82502737228239],[-127.36760653507132,56.82492368372346],[-127.36786820509184,56.82481109787802],[-127.36813958539221,56.82471185677211],[-127.36844319097783,56.82465373882236],[-127.36877267243355,56.82463120762759],[-127.36909450845334,56.82459530856718],[-127.36939037079853,56.82452158108517],[-127.36967536030787,56.82443003744256],[-127.36994976136258,56.824329639909635],[-127.37021900291762,56.824228175698096],[-127.37048607332143,56.82412337193084],[-127.37074999512592,56.824016359612926],[-127.37100971839716,56.82390714987337],[-127.37126416297723,56.82379351286761],[-127.37151852659537,56.82367763491016],[-127.37176331154626,56.823551771999824],[-127.37196039825825,56.82341184523095],[-127.3720807539819,56.823248076422125],[-127.37213997263731,56.82306702456438],[-127.37215415791593,56.82288869092014],[-127.37206076043392,56.82271373790008],[-127.3720492826322,56.82253455542027],[-127.37211690121654,56.82235901794088],[-127.37226705689659,56.8221971747334],[-127.37238854386739,56.82203675567681],[-127.37230840436357,56.821859421204714],[-127.37214293973382,56.821705403368796],[-127.37196019803454,56.82155605089876],[-127.37175724749572,56.82141475670984],[-127.37156843669989,56.82126770930028],[-127.37140904949341,56.821111385006766],[-127.37128416385318,56.82094460954346],[-127.3712113356114,56.82077055915297],[-127.37119673874052,56.8205902892245],[-127.37120473645045,56.82041090083348],[-127.37125278851778,56.82023332982605],[-127.37133893983881,56.82005983814208],[-127.37140659704669,56.81988542153104],[-127.3714762643086,56.81970986297088],[-127.37155208208655,56.81953423927317],[-127.37157755403506,56.8193557866107],[-127.3715404417186,56.81917687588029],[-127.37142067944447,56.81901004656993],[-127.37123394841731,56.818862977014625],[-127.37101988844601,56.81872628225878],[-127.37085340898336,56.81857227401196],[-127.37074585077141,56.81840195311382],[-127.37069753769796,56.81822540210282],[-127.37067273236335,56.81804636109118],[-127.370666379913,56.81786712486385],[-127.3706795134343,56.81768768249055],[-127.3707018648742,56.81750814260446],[-127.37072318277238,56.81732861366788],[-127.3707445168747,56.81714908457431],[-127.37075968363506,56.81696962075267],[-127.37076153190988,56.81679029787381],[-127.37074731033387,56.81667838378841],[-127.37069896498483,56.81661613917405],[-127.37060574802813,56.81644566668843],[-127.37065389372218,56.81627033661719],[-127.37082090996438,56.81612176486018],[-127.37086794156974,56.8159442052289],[-127.37089134772555,56.81576577496802],[-127.3709589597321,56.815590238830744],[-127.37107089613828,56.81542095742054],[-127.37123983811875,56.815269002829595],[-127.37121704260164,56.815088820324604],[-127.3714473670745,56.81496199053898],[-127.3716766334419,56.81483405089728],[-127.37192585952708,56.81471934719284],[-127.372157331964,56.81459586590214],[-127.37243718780879,56.814506611573954],[-127.3727371066014,56.81443395369559],[-127.37305218678512,56.81438354730615],[-127.37337069110232,56.81434318964385],[-127.37369819090766,56.81432514869746],[-127.37402356071077,56.81430488822332],[-127.37438149469955,56.814306694334604],[-127.37467497614973,56.81428340860919],[-127.3750028332612,56.81427544636922],[-127.37532832146464,56.81425854328646],[-127.37565233785689,56.81422932791348],[-127.37597280858324,56.81418670164198],[-127.37626543154657,56.81411075107369],[-127.37646235067228,56.81396745743816],[-127.37663733561317,56.813813190150135],[-127.376807185787,56.81365897720171],[-127.37701037043396,56.81351897806878],[-127.37722595719403,56.81338220869068],[-127.37745835814505,56.813256466603946],[-127.37772859955857,56.81315721711715],[-127.37802409498883,56.813075628727205],[-127.37833133518559,56.81300736242751],[-127.37864102361229,56.81295027578828],[-127.378961805119,56.81294574064979],[-127.37928903808323,56.81297811732782],[-127.37962096535001,56.81299811608479],[-127.37994401930953,56.813028294337045],[-127.38020689797892,56.813125231094766],[-127.38043719985754,56.81325725454151],[-127.38067850687838,56.81338131578208],[-127.38094278297733,56.813488322037074],[-127.38120401724765,56.813596480856255],[-127.3814692894934,56.81370235481418],[-127.38175942053604,56.813786670794244],[-127.38208341200823,56.81378545569484],[-127.38241224016942,56.81377634363794],[-127.38273927479366,56.81377397377344],[-127.38305882087366,56.81373470167454],[-127.38337846283825,56.81369766905255],[-127.38370378221433,56.813676264055594],[-127.38402902105979,56.81365261780338],[-127.38434975843707,56.81361781236101],[-127.38464654096916,56.81354403951005],[-127.38495856489529,56.813523894108855],[-127.3852948004994,56.81354943559307],[-127.38562136163732,56.81356275256733],[-127.38594837785841,56.813560374777786],[-127.38627156430063,56.813536744831794],[-127.38658996752963,56.81349411425549],[-127.38689207900538,56.81342588240907],[-127.38720646089612,56.81338553465529],[-127.3875329811219,56.813397726591454],[-127.38785975465458,56.81338862266918],[-127.38818690628243,56.81338959970766],[-127.38851408174132,56.81339169631347],[-127.38884428767099,56.81336350208096],[-127.38916876915776,56.8133476955315],[-127.38948833468483,56.813337544144176],[-127.38981610021825,56.81332730398726],[-127.39014161422563,56.813311483915854],[-127.39046808064491,56.813293411501604],[-127.390794933167,56.81328654061057],[-127.39112224516657,56.81329199110432],[-127.39144950055825,56.81329632073061],[-127.39177604685693,56.8132804854541],[-127.39209902580691,56.813251239891564],[-127.39240979333483,56.81319634983617],[-127.39270972117906,56.8131247658235],[-127.39302478860631,56.81307543129578],[-127.39334457699705,56.813042854964564],[-127.39366664917999,56.81307413032754],[-127.39398881903017,56.813107645145614],[-127.39430429071729,56.813154679073584],[-127.39463006075587,56.81317470575263],[-127.39495704913904,56.81317118483188],[-127.39528365736622,56.81315758132314],[-127.39552996190558,56.81304958684088],[-127.39574560721776,56.81300131673501],[-127.39589521845186,56.81299858391832],[-127.39615177663138,56.812975647205114],[-127.39647507328709,56.81295535245899],[-127.39680208370234,56.812952947273565],[-127.39712894862143,56.812946060226814],[-127.3974564041246,56.81295597575216],[-127.39778379523,56.81296364984371],[-127.39810676699143,56.81293438930953],[-127.39841417311845,56.8128716764624],[-127.39872178079818,56.81281456395915],[-127.3990469221727,56.81278863958982],[-127.39937226575476,56.81276831547458],[-127.39969760899494,56.8127479905425],[-127.39997363326442,56.81269681957736],[-127.40000091105425,56.81268531824095],[-127.40022923607593,56.81259095682744],[-127.40067255247003,56.81228919111492],[-127.4011101491446,56.81239540303344],[-127.40139278325316,56.81244165424796],[-127.40168376207467,56.81252031347272],[-127.40198149571177,56.81244536956931],[-127.40228351482958,56.812375981841235],[-127.40259312221583,56.81231771775787],[-127.40288137564998,56.8122361504981],[-127.40309688017875,56.81209933800856],[-127.40330834814023,56.81196481019196],[-127.4035721368205,56.81185885205852],[-127.40384534392592,56.81175839456499],[-127.40415159275747,56.8116643022198],[-127.40438018629553,56.811549758719146],[-127.404647117273,56.81144600559706],[-127.40498890222116,56.81137057696641],[-127.40521799630011,56.81126947436391],[-127.40544794231741,56.81113586318128],[-127.40569905361825,56.81101995232995],[-127.40594805639208,56.81090294321806],[-127.4061981315332,56.81078704263025],[-127.40642110852707,56.81065910861378],[-127.40674230270011,56.810581657553264],[-127.40698253144087,56.810477068890265],[-127.40727666700883,56.81038870388294],[-127.40758182511017,56.81032151081415],[-127.40789128575568,56.81025987351408],[-127.40820411388732,56.81020604342408],[-127.40850204844831,56.81016582236473],[-127.40884215958143,56.81012962447636],[-127.40916859040205,56.81011150497368],[-127.40949599682887,56.81009225337559],[-127.40981778014165,56.81005961431393],[-127.41013383390717,56.81001022702696],[-127.41043800817964,56.80994415852335],[-127.41072602311442,56.80985697288668],[-127.41102181594447,56.809786511668676],[-127.41133991578268,56.80973709911648],[-127.4116668735804,56.80973353602769],[-127.41199426471992,56.80974229457896],[-127.41232285272959,56.80975552186867],[-127.41265140005392,56.809767628117484],[-127.41297872626443,56.80977414358661],[-127.413303577055,56.80976947869997],[-127.41362446056428,56.80974020190531],[-127.41394141713613,56.80968743344095],[-127.41424982945993,56.809625792253506],[-127.41454747550853,56.80954969939894],[-127.4148407175259,56.80946580937849],[-127.41515771117291,56.809414158153736],[-127.41546021587125,56.80935930252357],[-127.41578204545335,56.809327768688654],[-127.41610611297499,56.80930181285412],[-127.41643129520575,56.80927808532363],[-127.41675751014294,56.80925434567675],[-127.41708260949962,56.8092283760999],[-127.41740541232816,56.80919570690485],[-127.41772386866022,56.809156360546226],[-127.41803998708262,56.80910919440889],[-127.41835494841115,56.809058678198596],[-127.41867000748255,56.80901040145509],[-127.41898600028095,56.808959872397836],[-127.41930178674544,56.808903741546374],[-127.41961662142145,56.808849861660136],[-127.41993393260367,56.80880716040582],[-127.42025300010192,56.808784610909335],[-127.4205772775348,56.80879226118411],[-127.42090335360078,56.80882118337734],[-127.4212286604039,56.80885683713238],[-127.42155183568266,56.808890272160255],[-127.42187128252158,56.808933833225616],[-127.4221906065236,56.80897403289202],[-127.4225142811771,56.808992891523786],[-127.42284023975975,56.80899043178567],[-127.42316893508332,56.8089789759023],[-127.42349120866976,56.80895974516378],[-127.42382397601111,56.808975138624525],[-127.42415084168857,56.80899732006768],[-127.42447589086304,56.80899822818369],[-127.42479758630746,56.80896331134752],[-127.42511475249245,56.80891723697019],[-127.4254286450455,56.8088655945507],[-127.42574249547242,56.80881283116943],[-127.42605971699382,56.80876787450496],[-127.4263768800734,56.80872179704293],[-127.42668646322862,56.80866459571664],[-127.42697763883834,56.80858070066668],[-127.42724345563364,56.80847691256213],[-127.4274966167994,56.80836317747024],[-127.42774758628948,56.808246104062455],[-127.42800287691475,56.8081345858053],[-127.42829365703271,56.80804060619088],[-127.42851056138828,56.80791718299428],[-127.42861914095542,56.80774788672452],[-127.42871308194754,56.8075709072508],[-127.42881136974601,56.80740060370894],[-127.42885300854938,56.807223080486],[-127.42885970312172,56.8070437014772],[-127.42888587777671,56.80686410757],[-127.42889463820086,56.80668470580454],[-127.42893416841683,56.80650608522816],[-127.42901388154249,56.80633262457179],[-127.42906682447497,56.80615609730121],[-127.42913108947937,56.805980565742104],[-127.42921908189984,56.80580925494494],[-127.42929875092484,56.80563467398813],[-127.42931881516584,56.80545626820886],[-127.42932906670696,56.80523426515734],[-127.42954237272114,56.805097432077716],[-127.42974946209168,56.80495842596134],[-127.42995444260234,56.804818322138495],[-127.43013360324777,56.804672899838486],[-127.4302215468425,56.80450046829977],[-127.43032081175578,56.80432903232863],[-127.43037587835254,56.804154722500954],[-127.4303815901869,56.803976475178665],[-127.43046833245957,56.8037995741637],[-127.43051921578459,56.80362306921346],[-127.43053407496988,56.8034424795794],[-127.43057781754536,56.80326717417129],[-127.43067707771615,56.80309573805722],[-127.43068684551855,56.80291632535663],[-127.43075932066017,56.802741823149724],[-127.43082767121548,56.80256624583147],[-127.43089600475497,56.80239066867724],[-127.43096946944966,56.80221503479923],[-127.43103990897677,56.8020405549759],[-127.43105888898793,56.80186104053965],[-127.43106554736725,56.80168054163162],[-127.43108661791102,56.80150212477917],[-127.43109327609923,56.801321625909516],[-127.43108629269824,56.801077400553325],[-127.43108272904847,56.80089813534933],[-127.43108942858512,56.800718756742356],[-127.4310878728621,56.8005383487342],[-127.43105772575728,56.80036049802862],[-127.43097334652298,56.80018548796038],[-127.4308839194239,56.80001277494956],[-127.43087425000631,56.800000554614954],[-127.43076093632432,56.79984715659172],[-127.43061553626801,56.79968514777016],[-127.43045800735524,56.79952775541197],[-127.43029139038661,56.79937382523246],[-127.43011258692498,56.79922339141667],[-127.42991658128862,56.7990787506057],[-127.42976418902751,56.79892130079711],[-127.42962285373082,56.79875812550351],[-127.42943095076394,56.79861343874863],[-127.42922187081571,56.7984756652411],[-127.42901075952314,56.798337913842175],[-127.4287705069529,56.798216172797375],[-127.42849624637914,56.79811721953648],[-127.42820321442501,56.798037523826764],[-127.4279190825917,56.797948764118644],[-127.42764285955127,56.797852072054006],[-127.42735972183719,56.797762179546815],[-127.42707760183815,56.797672275223384],[-127.42676799238367,56.79761517206187],[-127.4264514925677,56.79756598862903],[-127.42612952299031,56.79753479507271],[-127.42580476090322,56.79751147601915],[-127.42518282625518,56.79749030675011],[-127.42539452317325,56.79722686518315],[-127.42540841230586,56.797047408411075],[-127.42542644087807,56.79686902673469],[-127.42549996118177,56.79669451674955],[-127.42558786602102,56.79652096900786],[-127.42567268819025,56.79634745515903],[-127.42575543560264,56.79617284346247],[-127.42583719079666,56.795999363298506],[-127.42591168266833,56.79582372178625],[-127.42600479715861,56.795652357735385],[-127.42616186997208,56.79549261628128],[-127.42637744670716,56.79536248764239],[-127.42668667518946,56.79529856562502],[-127.42685005615085,56.7951432364074],[-127.4269803369094,56.79497930661047],[-127.42710641946378,56.7948131816646],[-127.42723046829556,56.79464707901938],[-127.4273534420352,56.7944798674647],[-127.427479521361,56.794313742206306],[-127.42751196479755,56.79413744278392],[-127.42750125505331,56.793958257224546],[-127.4274874388021,56.79377798528844],[-127.42748082722454,56.79359875458422],[-127.42748748447777,56.79341825695529],[-127.4274888208604,56.79323221477606],[-127.42749524647284,56.79304499585775],[-127.42752137666953,56.79286428357846],[-127.42758074404001,56.79269553193759],[-127.42775965141333,56.792572529211505],[-127.4280963999041,56.79250493823045],[-127.42828902697715,56.79236497371826],[-127.42844814231528,56.79220520702755],[-127.42861462603958,56.79205096206786],[-127.42873864315457,56.79188485843929],[-127.42885127450047,56.791715518419025],[-127.4289535777991,56.79154405101097],[-127.42905277373436,56.79137149718382],[-127.4291581816771,56.7912011160062],[-127.42928535793507,56.791037218302364],[-127.42946224296492,56.79088734002174],[-127.42968163230702,56.79075043986806],[-127.4298761695682,56.79060708995155],[-127.42992294063508,56.79043063192066],[-127.42994295272779,56.79025110751916],[-127.42996497203318,56.790070440315276],[-127.43002924764906,56.789896030230636],[-127.43014395772661,56.789727786848495],[-127.43025759283304,56.78955843460192],[-127.4303691945828,56.78938910472879],[-127.43054815803468,56.78924032266653],[-127.43074785594531,56.78909803507048],[-127.43091636586938,56.788943764801196],[-127.43107761289262,56.78878733331108],[-127.43129816648968,56.78865490010965],[-127.43155327623964,56.78854225600817],[-127.43179267952355,56.78842081995297],[-127.43199654891086,56.78828072555703],[-127.4321723368571,56.78812973506146],[-127.43232322405296,56.787970054683065],[-127.43244307338482,56.78780287306936],[-127.43256498672885,56.787635668508834],[-127.43268381785113,56.78746849795146],[-127.43277272712409,56.7872960552516],[-127.4328112449936,56.787118567047045],[-127.43293532763259,56.78695470008885],[-127.4331039024635,56.78680266754493],[-127.43328694065801,56.78665383657157],[-127.43352424147896,56.78655931601332],[-127.43370116775127,56.78638365666261],[-127.43395205897794,56.786268813181344],[-127.43422504811905,56.786169413390795],[-127.43445811656298,56.78604355993756],[-127.43465523678589,56.78588784708153],[-127.43483782997959,56.785754707838414],[-127.43509494247891,56.78564203443188],[-127.43534062851364,56.7855250046317],[-127.4355631974766,56.785392541712696],[-127.43579834697746,56.78526778337094],[-127.4360271831481,56.78513861205709],[-127.43626450282991,56.785017190711294],[-127.4365374772067,56.784917786120445],[-127.4367737778754,56.78479637513364],[-127.4370435852645,56.78469476332148],[-127.43723086170773,56.78455036220891],[-127.43747022249345,56.784428915951004],[-127.43769068778124,56.78429535202966],[-127.43784580065665,56.78414010081158],[-127.43809146884298,56.78402306589792],[-127.43838250125715,56.78394138702531],[-127.43868671391608,56.783883094524626],[-127.43894291168088,56.78377378544208],[-127.43916032894805,56.78364137350223],[-127.43938500575865,56.783511121751346],[-127.43964951780012,56.78340508072057],[-127.43982351340023,56.78326194415311],[-127.43990420953934,56.783255443255314],[-127.43997397149565,56.78323001299597],[-127.44018300948052,56.783203033100214],[-127.44041652924753,56.78320043460069],[-127.44073139204322,56.78315322514802],[-127.44104882824357,56.783120554651966],[-127.44137160169711,56.783093427161056],[-127.44169671516522,56.78307411731048],[-127.44201952950915,56.78304810838489],[-127.44234719157478,56.78304221623973],[-127.44267425503512,56.78304753638717],[-127.4429993257081,56.78302710308603],[-127.44332135700313,56.78300782350221],[-127.44364943631665,56.78301312985623],[-127.44397645792198,56.783017326534186],[-127.44429953358686,56.7830260490001],[-127.44462563561811,56.783005600095294],[-127.44495209726504,56.78299523216317],[-127.44527874242766,56.782989343940294],[-127.44560595679793,56.78299913757923],[-127.44590502587491,56.7830507087115],[-127.44623188062803,56.78305041897708],[-127.44655782856776,56.78305350049087],[-127.44688402779353,56.78306330225441],[-127.44721202430135,56.783066359222964],[-127.44753869522427,56.7830615856589],[-127.44786580146156,56.7830680128682],[-127.44819213703605,56.783054276230395],[-127.44851367932338,56.78302154141083],[-127.4488389563391,56.78300669433532],[-127.44916596206448,56.78301087808695],[-127.44948893865168,56.782989331246775],[-127.44980271431402,56.7829409911207],[-127.45011739568753,56.78288927813739],[-127.45043108580464,56.78283869613683],[-127.45074473311821,56.782786993200695],[-127.4511093746532,56.78294764086297],[-127.45136122110574,56.78305127868026],[-127.45153186440464,56.783202893914066],[-127.45173188322501,56.783345214298116],[-127.4520205454328,56.78341930112316],[-127.45234712740056,56.78343917071582],[-127.45266818348729,56.78342099945305],[-127.452996225531,56.78342516194357],[-127.4533160509596,56.78345631143241],[-127.45357504226138,56.78355874420643],[-127.45379931509582,56.78369182396404],[-127.45397991844149,56.78383547975525],[-127.4541465791031,56.78398937780455],[-127.45440295828992,56.7841041655113],[-127.45465294101359,56.784212300721435],[-127.45495927716647,56.78426601084572],[-127.45523906303016,56.78434915565674],[-127.45551001926268,56.78444248501995],[-127.45577225601967,56.78454935970635],[-127.45603751662176,56.784655079219775],[-127.45632264777085,56.784743764892035],[-127.4565978164478,56.784840406620035],[-127.45683659365422,56.784949784530426],[-127.45709622042575,56.78506901318544],[-127.45735352142731,56.785180422972445],[-127.45757764790949,56.78530901560928],[-127.45774030015151,56.785465195841994],[-127.45786216813268,56.78562631784926],[-127.45810541425593,56.78574572910273],[-127.4582740441354,56.78592425445906],[-127.45845298305032,56.7860499928234],[-127.45858828997636,56.78621432479906],[-127.45872756854757,56.78637524994828],[-127.45884260304067,56.786545413428726],[-127.45894270453798,56.78672695166976],[-127.45908057386612,56.78687780653241],[-127.45928021707509,56.78700891379959],[-127.45925309829663,56.78726809041788],[-127.45915708642245,56.78743951202595],[-127.45905902505667,56.78761095667141],[-127.4589630114726,56.78778237817129],[-127.45887835730939,56.78795591289836],[-127.4587968094183,56.78813053322876],[-127.45874094551603,56.78830710540594],[-127.45869639930088,56.78848467069681],[-127.45867136571374,56.7886631367751],[-127.45864734805426,56.78884159141819],[-127.45862438855507,56.78902115480523],[-127.4585921755545,56.7891997018124],[-127.45857225466705,56.789378110333026],[-127.45860555873355,56.789554798528144],[-127.45859490753077,56.78973422330125],[-127.45858727896079,56.78991249338114],[-127.45860427781268,56.790091606658635],[-127.4585982787413,56.790231756141736],[-127.45885243065099,56.790394749362484],[-127.45909883341818,56.790515244552466],[-127.45934200374853,56.790631293114814],[-127.4595346571687,56.79076696193387],[-127.45964573517179,56.790967427661286],[-127.45979734880059,56.791074421796765],[-127.46027120132035,56.79124726214152],[-127.46048238517365,56.791384961969676],[-127.46066186387189,56.7915241398568],[-127.46091518720237,56.791664725560906],[-127.46110846097218,56.7917891786731],[-127.46128944171359,56.79194066604879],[-127.46148523229199,56.79207741747223],[-127.46163174921688,56.79223937939256],[-127.46185077444196,56.79236690274118],[-127.4620532834969,56.79246435450184],[-127.46209936509874,56.79265322528137],[-127.46224211129811,56.792633682597135],[-127.46243177048274,56.792608006548484],[-127.46262128573004,56.79263276146102],[-127.46294157611696,56.7926739689625],[-127.46325688017936,56.79271859401229],[-127.46357782331022,56.79274970665355],[-127.46389483863399,56.79278534555264],[-127.46421489372358,56.79281982864567],[-127.46452916778867,56.7928644622803],[-127.4647784721669,56.792952415284645],[-127.46511913108407,56.793016920857696],[-127.4653753481015,56.79312496638866],[-127.46563456329542,56.7932307361764],[-127.46593061623494,56.79330807187758],[-127.466232432824,56.793348359871366],[-127.46656461589262,56.79335132141619],[-127.4669031717042,56.79333291736437],[-127.46722831289334,56.793285527286564],[-127.46751948414806,56.793234038798396],[-127.46780946493702,56.79315118465927],[-127.46813712359129,56.79314298684338],[-127.46845062212111,56.793112535597416],[-127.46877017776632,56.793052877699566],[-127.46903581832116,56.79295012502094],[-127.46934025639563,56.79292425704826],[-127.46964900934587,56.79293083853335],[-127.46999198829334,56.79286754971313],[-127.47025443148921,56.79276146881639],[-127.4704659486682,56.792663810428564],[-127.47082247365756,56.792579072965374],[-127.47110846667611,56.79247272276217],[-127.47142443669223,56.7923996510437],[-127.47168017234439,56.79227907484965],[-127.47181112404618,56.7922462076924],[-127.4719710744543,56.792220855323684],[-127.47226704706227,56.792161456813595],[-127.47248351575946,56.79205925611794],[-127.47276181649272,56.791966437623074],[-127.47301374586884,56.79185374667407],[-127.47331126755414,56.79178088018228],[-127.47360019243648,56.79169802490015],[-127.47387785563363,56.791615297174],[-127.47418117900729,56.79153339731486],[-127.47448294803385,56.79146496237229],[-127.47478139480764,56.79138984059549],[-127.47505149840758,56.79132400635021],[-127.47531250803898,56.79118094953466],[-127.47561719177753,56.79113489192112],[-127.47597718555059,56.791115098882095],[-127.47617181167334,56.791032192178236],[-127.4763674289381,56.79081367383726],[-127.47664132703396,56.79079374006948],[-127.47686506735853,56.790694810957724],[-127.47720327573994,56.79061474726145],[-127.47744468288094,56.790495443632274],[-127.47769967040807,56.79038270850131],[-127.47792843972121,56.790254582914855],[-127.47816557371263,56.79013084405406],[-127.4784415842295,56.790032435989474],[-127.47874009787765,56.789959545499364],[-127.47905236357646,56.789897703810446],[-127.47937021296794,56.78984812483058],[-127.47969096687189,56.78982092510027],[-127.48001244413256,56.789839663440226],[-127.48033602546916,56.78988639347743],[-127.4806579485479,56.789916331749275],[-127.4809589736096,56.789882630546124],[-127.48128488679106,56.7898295926011],[-127.4816036795607,56.789777755981895],[-127.48191481774289,56.78974057480642],[-127.48223436769386,56.78968200397598],[-127.48254696886286,56.78962911523989],[-127.48286289160296,56.789582911669896],[-127.4831846140943,56.78955457147823],[-127.48348047757976,56.789519802836494],[-127.48379873491048,56.789427623029646],[-127.48409830931519,56.78935582854856],[-127.4843978232541,56.789282913395056],[-127.48469521779724,56.78920778052005],[-127.48499362734411,56.78913263530867],[-127.48552352388388,56.7890010413817],[-127.48554215882073,56.788819280108235],[-127.48555466393319,56.78863758919435],[-127.48557847141645,56.78845688925608],[-127.48562716359719,56.7882837483867],[-127.48582788520126,56.78814696514607],[-127.48610707229541,56.78805186600173],[-127.48622353875466,56.787882429489585],[-127.48629014886758,56.78766873881846],[-127.48647850360722,56.7875567511245],[-127.4866883163058,56.78741650015008],[-127.48690132130459,56.78727957414932],[-127.48712680494782,56.78714698708453],[-127.48737558004751,56.78703430392219],[-127.48769330914894,56.786982464261236],[-127.48801929344275,56.786985441386406],[-127.48833833263498,56.78702099676467],[-127.48865592701631,56.78707225726062],[-127.48893759554724,56.787148584810055],[-127.48925366040324,56.78721330941649],[-127.48958544766614,56.78720725055421],[-127.48985189519539,56.78720754618979],[-127.49023401327939,56.78723116429642],[-127.49056278186005,56.787253154273266],[-127.4908837416405,56.78725842339903],[-127.49118646016414,56.78724260924969],[-127.49153761456024,56.78723408095233],[-127.49186407244233,56.78722247433475],[-127.49219585937497,56.78721640878273],[-127.49253562461317,56.787204647067654],[-127.49286476226945,56.78720981698889],[-127.49316584572779,56.78725789493322],[-127.49343482189583,56.78735004853538],[-127.49368638300935,56.78746929850685],[-127.49393211887629,56.78759645989912],[-127.49418475887674,56.78771681717038],[-127.49440375728443,56.78781514904163],[-127.49477874900113,56.78783995677884],[-127.49511276249363,56.787838340756984],[-127.49543536417308,56.787806597732164],[-127.49576993364518,56.78779264626464],[-127.49608147526887,56.7877666327467],[-127.49639075463594,56.787787712596945],[-127.49671539802321,56.787835510058954],[-127.49701407630057,56.7879004169869],[-127.49729432541083,56.78799243239861],[-127.49761182875609,56.78801453490611],[-127.49775853140278,56.788018440946466],[-127.49796240617187,56.78801720258535],[-127.49831123855873,56.788027734181135],[-127.4985656168307,56.78803375497864],[-127.49884819894277,56.78802712138285],[-127.49922728393501,56.78802497289001],[-127.49955358170477,56.788035762126576],[-127.50000003716667,56.7880530029444],[-127.50001148507319,56.78787244285126],[-127.50008170111987,56.787701287775285],[-127.50021057070593,56.787536176936165],[-127.50032082806688,56.7873667990247],[-127.50043420897521,56.78719850548726],[-127.50054659984022,56.78703134399978],[-127.50066824356752,56.78686519581933],[-127.5007444432345,56.7866894883986],[-127.50085883640216,56.786521182778614],[-127.50092272684492,56.786345617992275],[-127.50096912543397,56.78616801468191],[-127.50100114044513,56.78598945749331],[-127.5010208205956,56.785809922682546],[-127.50107340706899,56.785633368290846],[-127.5011413650199,56.785456635628094],[-127.50117547058632,56.78527917487905],[-127.50128652248904,56.78505151241868],[-127.50133950003104,56.78475280088533],[-127.50117706964082,56.78468632418556],[-127.50091710261106,56.78458847902675],[-127.50072541150304,56.784428205199866],[-127.50071805445789,56.7842646733938],[-127.50046146735521,56.784121961608875],[-127.50024295985374,56.78398329065024],[-127.50010547892316,56.78382014636249],[-127.49990831725468,56.7836767448506],[-127.4996899878511,56.783542553641254],[-127.4994878301418,56.78340257142579],[-127.49927957212279,56.78326378024919],[-127.49910160745756,56.783113431275865],[-127.49892970253173,56.78296077058457],[-127.49874969225505,56.78281044487669],[-127.4985334201095,56.78267622806871],[-127.49831710610356,56.78254089074921],[-127.49810685192892,56.7824032416317],[-127.49787249604601,56.78227819841646],[-127.49761630348577,56.78217133807465],[-127.49737636893957,56.7820609271745],[-127.4971060142517,56.78195871235918],[-127.49682781426516,56.781865553028354],[-127.49654761061588,56.78177353694992],[-127.49623490203727,56.78171551590859],[-127.4961751248071,56.78165344987517],[-127.49619098832939,56.78148068459493],[-127.49640381353483,56.78134038278327],[-127.49667856913159,56.78123858763536],[-127.49690120672206,56.78111386078417],[-127.49704871894397,56.780954141350016],[-127.4971805565483,56.78078675844094],[-127.49734244744081,56.78062799300621],[-127.4974683709972,56.78046628153687],[-127.4974491050113,56.7802860779761],[-127.49744113955876,56.78010686434842],[-127.49754101681432,56.77993424757988],[-127.49770824806139,56.77978102322357],[-127.49793576952334,56.779650634745614],[-127.49815608563037,56.779519208606764],[-127.49843198605987,56.7794207583773],[-127.49870693953955,56.77932455983724],[-127.49885135704675,56.77916487419415],[-127.49885670657171,56.77898550649798],[-127.49887542059491,56.778807104701016],[-127.49894033956542,56.77863152976063],[-127.49899189351734,56.77845498894002],[-127.4989869583029,56.778274619769775],[-127.49897993164667,56.778093154183445],[-127.49917917472747,56.77778826803336],[-127.49943644508714,56.77781778666695],[-127.4997915906638,56.77783496396533],[-127.50007448878047,56.77783840915097],[-127.50046997172531,56.7778652029806],[-127.50075902439268,56.77789547117396],[-127.50109847120879,56.777903861662594],[-127.50142578695187,56.77791687464539],[-127.50175486322269,56.77792202174652],[-127.50207459541703,56.77795081034932],[-127.50238219735236,56.77800999684336],[-127.50268128762623,56.77808721203365],[-127.50297434883335,56.77816785855316],[-127.50325757853423,56.77825870458197],[-127.50354467189493,56.77834390181491],[-127.50385758177293,56.778407505861345],[-127.50180677442323,56.77741151863871],[-127.4976452236357,56.77598047493386],[-127.49567543415023,56.77421020453339],[-127.4939118582673,56.77289475475436],[-127.4912124109142,56.77044252354699],[-127.49007535099256,56.768151563681464],[-127.48955946573233,56.7666692808361],[-127.488218336948,56.763753099257805],[-127.48863792162025,56.76243935657757],[-127.49456832103701,56.76187789360657],[-127.4981088270402,56.76090456146439],[-127.50226975109699,56.75987910139142],[-127.5037371970737,56.75576496148221],[-127.50405117715071,56.75456894294101],[-127.503227582375,56.7517096666971],[-127.50313244582337,56.74896743845319],[-127.5066736774476,56.74725871340435],[-127.51207980420862,56.74686390277217],[-127.51748337595605,56.74703370024732],[-127.52049661730778,56.74715071351467],[-127.52496701174167,56.74675739629381],[-127.52912648193623,56.746762069167005],[-127.53172412419278,56.7472154472697],[-127.53546555765058,56.74749382424201],[-127.53889450138837,56.74750685591065],[-127.53889952946525,56.74600960400406],[-127.5352632949909,56.74510251473944],[-127.53297762547007,56.743838644019704],[-127.53194402414108,56.74138546904602],[-127.5322629955398,56.738476975145154],[-127.53174709192555,56.73596388078031],[-127.53269013596427,56.731783915336756],[-127.53269728362271,56.72813502842453],[-127.53270018093878,56.72665575217638],[-127.53363927662787,56.723910258866844],[-127.53406321592546,56.719395794262375],[-127.53334341577894,56.71694791190696],[-127.53251955974436,56.71277101360226],[-127.53252288263059,56.71088831992179],[-127.53242320791131,56.70940131034086],[-127.5312811388188,56.70808803184993],[-127.52618985810223,56.709403377014034],[-127.52203270948924,56.71190882566737],[-127.51943408111838,56.712880735933325],[-127.51620985492987,56.71533019406811],[-127.51298523634625,56.71641689589334],[-127.50716728694165,56.7164759219778],[-127.50197602344294,56.71647361328558],[-127.49449321849181,56.71725964009624],[-127.48940381147622,56.717381156177545],[-127.48555999659882,56.71725506974886],[-127.48057223115163,56.718056402419286],[-127.47891110314536,56.718514704797094],[-127.47631091643892,56.71867891022453],[-127.4728904109524,56.716853244805755],[-127.47061020087995,56.71496073221076],[-127.46905632888316,56.71382194064187],[-127.46708822367296,56.712275453337256],[-127.46532668919261,56.711130014137275],[-127.46502639481888,56.708730845298575],[-127.46264297133662,56.70735934017539],[-127.45880057401236,56.70724141958374],[-127.45380640457782,56.70929686625626],[-127.44871181666329,56.71089603796297],[-127.44590878140696,56.71123224058946],[-127.44186393882262,56.7099685869265],[-127.44010158802912,56.70916348492719],[-127.43761293825435,56.70790924200315],[-127.43492133641145,56.70636137206988],[-127.43326345230224,56.70533090339401],[-127.43098763337368,56.703679732014194],[-127.42943579274454,56.70246874947325],[-127.42611506011592,56.70167173826759],[-127.42518646601799,56.7005255433579],[-127.423743832983,56.69835407382725],[-127.42375262092497,56.696587939304955],[-127.4254231909584,56.69464211227942],[-127.42615670978165,56.69315484765582],[-127.42440259212476,56.69104062450476],[-127.42222928095936,56.689782638076856],[-127.41746168846556,56.68829314830484],[-127.4154983715111,56.687149288936574],[-127.41457082347837,56.685088636596156],[-127.41374994407438,56.683035777684495],[-127.41095135872253,56.6827436679485],[-127.40451788259676,56.68279588592248],[-127.40161226950873,56.682791603860586],[-127.39621610969938,56.68278732017877],[-127.39465341006489,56.68380823539773],[-127.39422336306663,56.68626019384489],[-127.39514391553452,56.688894788426445],[-127.39481908019282,56.69134561902421],[-127.39200418250873,56.69306132777544],[-127.38628640075545,56.69470955640385],[-127.38421107447417,56.69482146182071],[-127.37964200774778,56.69480760021493],[-127.37746352316064,56.69475017287062],[-127.37446260701311,56.69291752552856],[-127.37436697187408,56.69183383783761],[-127.37176494959533,56.69268623776031],[-127.36988400462353,56.694624607508544],[-127.37038787002317,56.697254829953415],[-127.3696430398312,56.700221025359745],[-127.36557475553188,56.70300724757277],[-127.36119868820371,56.70551868251667],[-127.3582857313011,56.70625754169028],[-127.35299060217083,56.706133816199554],[-127.3495657721716,56.70589173949309],[-127.34737608537782,56.70720548622878],[-127.34663177506528,56.70983088789906],[-127.34744935977182,56.711669058463485],[-127.34908958208996,56.714690926461856],[-127.34886496274886,56.71743642957873],[-127.34926226401947,56.71988857774359],[-127.34685562213542,56.722459626130245],[-127.3446462049314,56.72650773916781],[-127.34379203819685,56.72969906252939],[-127.34201219038906,56.731752524062934],[-127.33763540751825,56.733402555870406],[-127.3351416251227,56.73340144147626],[-127.3301440041878,56.73453767838715],[-127.32567213518548,56.73480772689499],[-127.32027500323439,56.73417268357195],[-127.31580849057838,56.73387756701682],[-127.31040219724235,56.73426416917618],[-127.30530200299485,56.735508052352806],[-127.30259795070108,56.73567875838194],[-127.30094371072244,56.73441348365242],[-127.29970869192984,56.732982613958676],[-127.2982663716544,56.73150002950734],[-127.2969358834572,56.72892263837614],[-127.29592107434654,56.72623450059083],[-127.29562728816836,56.723781175558216],[-127.29501814539688,56.722236425800645],[-127.29492023681111,56.72166368060352],[-127.29493702474518,56.71944032507217],[-127.2935017161043,56.71725840905114],[-127.29195468724382,56.71589336182384],[-127.29040470037997,56.71474347395856],[-127.28706381380785,56.71679378916364],[-127.2832073957512,56.71860709746309],[-127.27821300079728,56.7195171781583],[-127.2754974932109,56.72105003070126],[-127.27433310198467,56.723562592467054],[-127.27193716198488,56.72452745900531],[-127.26829389053952,56.72508319794561],[-127.26372159732115,56.725074197114594],[-127.25269400629807,56.726588957117805],[-127.2495444028439,56.73034863529866],[-127.24557842096353,56.73200050451994],[-127.24172707926881,56.732674028596996],[-127.23526845027793,56.73431363823722],[-127.23015953302047,56.73606558775384],[-127.22568504949048,56.736341159052024],[-127.22247432169726,56.73570819342385],[-127.22206065171551,56.73524595652358],[-127.2200998153777,56.733874999054386],[-127.2176225660548,56.732607487200525],[-127.21484356630816,56.72973814998231],[-127.21382102842486,56.72802660498507],[-127.21217521359854,56.72659879477713],[-127.20989381184548,56.72601059707697],[-127.20835151414114,56.72458177297864],[-127.20568040990548,56.721720219567885],[-127.19866298102484,56.71718683681275],[-127.19671721832566,56.71495485061355],[-127.19467408982605,56.71174664275775],[-127.19314109615163,56.70951976123194],[-127.19191674227523,56.7075141231219],[-127.19047806632246,56.706084158055],[-127.18697291647855,56.70384848180314],[-127.1863575306857,56.70321768109938],[-127.18410292649925,56.70046845341943],[-127.18205951389874,56.697493158709015],[-127.18197126296303,56.696005927246446],[-127.1809743265182,56.69257284155904],[-127.17913088118041,56.69016939031562],[-127.17668013862003,56.68674058993737],[-127.17504947250202,56.68432619015403],[-127.17300034399277,56.68158390962758],[-127.16992183912245,56.6787164762401],[-127.16859934347534,56.676433679113785],[-127.1673861828699,56.67390785761361],[-127.16452155186842,56.670133026815684],[-127.1601016141718,56.66686514920696],[-127.15680701474317,56.664626859579265],[-127.15423319623135,56.66301848128474],[-127.1459376987027,56.662644217696624],[-127.14148066061374,56.662513405643146],[-127.13766744138778,56.66079016975307],[-127.13187476312883,56.65939793696874],[-127.12731448182095,56.659213762458876],[-127.12214372381028,56.65794115725422],[-127.12028926453326,56.657025039729916],[-127.11885239873008,56.655926001300195],[-127.1174235501552,56.654038069483775],[-127.11725147025916,56.651180128889216],[-127.1169684057312,56.649183670310016],[-127.11605992678801,56.64723744448419],[-127.11525914557944,56.64494966379402],[-127.11415674329467,56.6420370303008],[-127.11263035803206,56.63985410815819],[-127.11140528378938,56.63842152232465],[-127.11102000785672,56.636085330806914],[-127.11352091943999,56.63534666997203],[-127.11602534086698,56.633810165906475],[-127.11595053468284,56.63152508740396],[-127.11360860161194,56.62843496000372],[-127.11187188095752,56.62637039341601],[-127.10951283069842,56.62448147251038],[-127.10394618267122,56.62252141988088],[-127.09816507486,56.6207870493147],[-127.09331667260932,56.61922378875594],[-127.0885619135171,56.61840353063861],[-127.08470928886399,56.6198163861694],[-127.08291360087482,56.62237711974751],[-127.07870541892633,56.626992757242355],[-127.07097651987792,56.63124315403572],[-127.06775191944709,56.63225588396437],[-127.06038554784368,56.63263039188348],[-127.05386804661181,56.631796433236765],[-127.04724153976824,56.631375353763374],[-127.04316827262039,56.63341619125225],[-127.0414922518661,56.634550174926794],[-127.03898412581177,56.635905967151956],[-127.03408974301485,56.6375408069962],[-127.03136874736519,56.639238769326596],[-127.03186167147038,56.6409647833673],[-127.03380292027371,56.64279572342496],[-127.03346306728709,56.64456426166134],[-127.03002491051663,56.64580183793389],[-127.02595190528314,56.647788345377315],[-127.02345136302412,56.648632852596386],[-127.01907889699503,56.649698272520745],[-127.01598081208525,56.64894288129852],[-127.01174218734317,56.648178439839164],[-127.00707971629556,56.64787430871867],[-127.00344592746835,56.648261164750295],[-127.00029974923532,56.65041891022374],[-126.99998089620813,56.650923338127676],[-126.99862042524077,56.65165991954141],[-126.99522976175247,56.65621269169742],[-126.99248394891102,56.659173876762274],[-126.98973132848587,56.662645979215185],[-126.9842869134748,56.6657621135458],[-126.97607037336567,56.666971847703714],[-126.97181877307071,56.666959112850094],[-126.96135192729228,56.66633834525239],[-126.95649521986759,56.66522710134321],[-126.9538077443545,56.664762962091025],[-126.95047253659288,56.66554050058906],[-126.94920180920732,56.66695712064684],[-126.94885251285582,56.669299162542025],[-126.94602906702339,56.670431361865326],[-126.94166666432717,56.67075009265915],[-126.93768792111528,56.67278688119679],[-126.93777515872547,56.67369156171284],[-126.93772319116714,56.67678435274613],[-126.93467450167876,56.678993561491524],[-126.93049688396805,56.680457902568286],[-126.92393358924042,56.68173303983545],[-126.91841762660982,56.68267770912308],[-126.91137229932505,56.68212707488751],[-126.90524662088082,56.68226876615047],[-126.8973325113858,56.68359682526337],[-126.89239698457689,56.68653520225794],[-126.89173302942622,56.68881651946584],[-126.88425573099782,56.689118913332095],[-126.88364775855116,56.68831635999369],[-126.87983485175391,56.68692616331489],[-126.87281363711455,56.68500184791202],[-126.87012771433994,56.684302898552964],[-126.86816204083698,56.68400240882724],[-126.86600909380674,56.68268131315686],[-126.86344952199337,56.68089680523722],[-126.85953687601895,56.6792736431628],[-126.8576925003214,56.67806688559712],[-126.85388236272348,56.67666696195714],[-126.84899153294771,56.67727287440636],[-126.8451434232672,56.67781799882932],[-126.84110289195947,56.67750377752141],[-126.83655466681567,56.67657424878981],[-126.83223304417477,56.674719876055306],[-126.82737271518984,56.67412368397466],[-126.82045217583226,56.67247378519019],[-126.81270222366317,56.67094526825542],[-126.80789680007683,56.67250815758299],[-126.80947634608498,56.676289743569946],[-126.81449218834916,56.679574630957475],[-126.81569644522556,56.681646526285284],[-126.8144944085674,56.684549281301685],[-126.81247520534403,56.686650468348276],[-126.81210016106456,56.689727269276695],[-126.81592951075599,56.69020508261296],[-126.82483603576024,56.691286858619826],[-126.82937426971343,56.6926381628055],[-126.83461807993166,56.69517689233548],[-126.83788519889622,56.69793441446685],[-126.83919838861875,56.699664804976585],[-126.84040250110218,56.70178132470608],[-126.83777163851359,56.70342080656669],[-126.83120908802572,56.70948667606593],[-126.83125661426355,56.712229211275215],[-126.83452987206677,56.714646198530325],[-126.83489323719557,56.71722535796993],[-126.8314432057423,56.71840390093599],[-126.82470043023221,56.717846546161475],[-126.8141143468699,56.717384817771034],[-126.80611395879657,56.71756045857222],[-126.80059696181861,56.71804293002597],[-126.80038572354479,56.718214545430925],[-126.7978867111256,56.7185437214815],[-126.7937067666712,56.71960026499842],[-126.79221383187627,56.721420057267444],[-126.79265267990586,56.72507449146148],[-126.79145493838574,56.727636444276456],[-126.78553196564728,56.7276008643687],[-126.77927865009104,56.72853506818589],[-126.77812066864452,56.729151565085715],[-126.77921824701941,56.73133206227063],[-126.77788880985848,56.735033060541134],[-126.77517828642063,56.74009584266623],[-126.77629174315166,56.74147852257703],[-126.7780030268069,56.74867500144484],[-126.78353448133429,56.752424279318795],[-126.78855082865824,56.75611373056372],[-126.7891893888489,56.76017040235177],[-126.78352566969461,56.76236508672528],[-126.77568693597523,56.764025791936554],[-126.76719589198048,56.76711512319673],[-126.76424321410452,56.76886259792209],[-126.75332955699798,56.76845151577576],[-126.74267890516587,56.77015344260769],[-126.73556136229209,56.7721571497434],[-126.72753155672571,56.772964456542326],[-126.72306715385302,56.77258610992864],[-126.71593076871314,56.77082408278601],[-126.71128505311957,56.7693079477882],[-126.69655045984753,56.76778360520656],[-126.68134702238346,56.76852786042095],[-126.66909860566446,56.771585625268024],[-126.66270123736268,56.77365328874942],[-126.65401989570555,56.775526032995934],[-126.64670625900614,56.77672805684966],[-126.64114637878066,56.778458809110056],[-126.63892980017557,56.77964400701303],[-126.62943400982151,56.78065860438714],[-126.62348112668928,56.781413468972104],[-126.61191442388086,56.78212300906724],[-126.60680604015525,56.782478710470336],[-126.60077370379993,56.78231861135301],[-126.59250014261534,56.780429570106044],[-126.58615374233501,56.77655034259057],[-126.58257964225405,56.77407460961384],[-126.5779006392606,56.77020541142723],[-126.57832913366911,56.76598168053085],[-126.57903812125993,56.76278750446298],[-126.58098445435441,56.76011662448286],[-126.58364871174922,56.75768449489122],[-126.58401211750972,56.75591705274788],[-126.58106387247113,56.75333092936422],[-126.57819451548514,56.75182000315083],[-126.57737722265078,56.75124103113846],[-126.5725553124273,56.74897679453973],[-126.56802927233994,56.74716821764941],[-126.56380757031394,56.74570773163696],[-126.56210510639825,56.74334881146179],[-126.56336131823569,56.73930087034667],[-126.5608281147143,56.73699934052876],[-126.55818523401314,56.73480579888874],[-126.55767937906496,56.73435085260277],[-126.5547093802669,56.73272334361705],[-126.55130993945303,56.73167125189641],[-126.5472080217157,56.72968986606151],[-126.54393723905187,56.72778552902209],[-126.54172257071436,56.72530304277022],[-126.53877090318525,56.723056641692125],[-126.53664364156228,56.72115632301592],[-126.53557268826319,56.71863313762781],[-126.53359129453882,56.71519050100936],[-126.52699853518439,56.71325461796675],[-126.52359021224613,56.71265001408951],[-126.52155071838317,56.711322750406715],[-126.51775719688456,56.70957226531299],[-126.51562814962516,56.707788150789405],[-126.51319224813987,56.705825960541574],[-126.51198860833286,56.704333895051924],[-126.506318640578,56.70285043853703],[-126.50076129372832,56.701267705662644],[-126.49695873202081,56.6998572596536],[-126.4889056424456,56.698247747849514],[-126.4848783599706,56.69752795698996],[-126.4788873009568,56.696447852025585],[-126.47795666751352,56.696325816341435],[-126.47035837488573,56.693575169200265],[-126.46791278825499,56.69206930223981],[-126.46595268992768,56.68816851996535],[-126.46344180194664,56.685345252675276],[-126.46049012409476,56.68349151488671],[-126.45898465170586,56.68182080188055],[-126.45770123309025,56.6796473616477],[-126.45619771713785,56.67786009572888],[-126.45699077146298,56.672327171226186],[-126.45513180197038,56.668596212762615],[-126.44907110847159,56.66660079420669],[-126.44413223771868,56.66530034272174],[-126.44218933975517,56.66437487703834],[-126.43903359527782,56.66239589915428],[-126.43609037957735,56.66030857550031],[-126.4319962392771,56.65845807938777],[-126.42787048137362,56.65778168870518],[-126.42448683685167,56.65987223523753],[-126.42205347076904,56.66138596954818],[-126.41883296111287,56.66152194096256],[-126.41321606397894,56.661988188399796],[-126.40809359336366,56.66325928214735],[-126.4073629706483,56.66341395824287],[-126.40336967094744,56.664977068631856],[-126.40021829042523,56.66620582333806],[-126.39632027916957,56.668055231509456],[-126.39200862717371,56.66984303970848],[-126.39232877885058,56.672817732867195],[-126.39224396180906,56.67544410947805],[-126.39285997985203,56.67887501899451],[-126.38204910992982,56.679454197248695],[-126.37647165516908,56.678610144268305],[-126.36847028214083,56.678866261889084],[-126.3599615261641,56.67884545009672],[-126.35149088711496,56.677730505267036],[-126.34388808995539,56.67845904483891],[-126.33609864977798,56.678667776897264],[-126.33288527107494,56.678523733438055],[-126.32634854084797,56.678513532946454],[-126.32091249312653,56.67965647713084],[-126.31333485505789,56.67969301447417],[-126.3073455292324,56.67877527540726],[-126.30199989426661,56.67730006048407],[-126.30090939349114,56.6757968531567],[-126.29640185710569,56.67415812378325],[-126.2893454354115,56.67408450415192],[-126.28375337468225,56.67379218143332],[-126.2825097288441,56.673732169409355],[-126.27547922300954,56.67297656341026],[-126.27156696734887,56.67212442547477],[-126.26914179683452,56.670336949397694],[-126.26662085069401,56.66825385682313],[-126.26628214354724,56.66607660690816],[-126.26640760999899,56.66248228969298],[-126.26652680736906,56.65916583662483],[-126.26298553793325,56.65661873093435],[-126.25369243647398,56.655499073872356],[-126.24756271439028,56.655770897500666],[-126.24001569015924,56.655059178705585],[-126.23867289241265,56.65487345315343],[-126.23395160615618,56.653519773242444],[-126.23053580430759,56.650505504561806],[-126.22699634035422,56.64807394062716],[-126.21956599344462,56.64708298516635],[-126.2153605649053,56.64863164708438],[-126.21044065280385,56.64989453546624],[-126.2052047166362,56.64840620909634],[-126.2038479509221,56.64587193670946],[-126.19881104588165,56.644625031297295],[-126.19530907484693,56.644074699039024],[-126.19004675472816,56.64338347582788],[-126.18663591928548,56.64305683953655],[-126.18396261043812,56.64240641003261],[-126.18119741303023,56.64151406463953],[-126.18033713632305,56.63957038919018],[-126.18023581095402,56.6395077927529],[-126.17923080270356,56.63869359858744],[-126.17624688978194,56.63809721801961],[-126.17121949033785,56.636723754467155],[-126.17062242407843,56.63322914938751],[-126.17098986101028,56.62907004612593],[-126.17316180165079,56.62645905459538],[-126.17448949161668,56.62425248772969],[-126.17490720298179,56.62140184805711],[-126.17613894813,56.61901615054218],[-126.17707367986304,56.616173766777145],[-126.17107796640892,56.60759584465637],[-126.168488164187,56.60488364528686],[-126.16424786906263,56.60192256564677],[-126.16112936538731,56.59960524528121],[-126.15269587620949,56.59533150428746],[-126.14975351821994,56.59370380999904],[-126.14670114650886,56.592300234009734],[-126.14517737020093,56.591540161494414],[-126.13879458774275,56.590552377357604],[-126.13371758318718,56.59066529509034],[-126.12929032999938,56.58998867762632],[-126.12703461760789,56.589390446193946],[-126.12387943762607,56.58798643531034],[-126.12037784404762,56.58754163952011],[-126.11639163997312,56.58623680625397],[-126.11588080796069,56.58548443354928],[-126.11443440228327,56.5833616630707],[-126.11378748839232,56.581354684676846],[-126.11065149244553,56.57949326412073],[-126.1069114105809,56.57722000831886],[-126.10774060543913,56.574548566365536],[-126.11083174044175,56.57229642073252],[-126.11539578840333,56.569379687128276],[-126.11641882615412,56.567048589870595],[-126.11664289564646,56.56397435114277],[-126.11820589222133,56.56107813814198],[-126.12398991827342,56.55868875751517],[-126.13091272113178,56.55625315531552],[-126.13348842185286,56.55388450007622],[-126.1338091949566,56.55091769670681],[-126.12861308237507,56.54886170372007],[-126.12279081469423,56.54696742080499],[-126.11933255521126,56.545500887541415],[-126.11682585878812,56.54347775198955],[-126.11356474594832,56.539609048357036],[-126.1112673928547,56.537576664291805],[-126.10785596097573,56.53491783618828],[-126.10627316798228,56.533064008261285],[-126.10554006676121,56.530716556230225],[-126.10374430787445,56.5290421166119],[-126.10075121860238,56.526320040612816],[-126.10469386739851,56.520715638417634],[-126.10957869135267,56.5173508242626],[-126.12013174349781,56.51444668091718],[-126.13038767159412,56.51381831406144],[-126.13980032104095,56.51358437520642],[-126.14523859010612,56.514564164063614],[-126.15441176077822,56.51523458552765],[-126.16301923291695,56.51436361090664],[-126.16806310453731,56.51219728142544],[-126.16817336805705,56.50922176580513],[-126.17076840401992,56.506225053966006],[-126.17297345801872,56.50528110208221],[-126.17926367743794,56.505577190268966],[-126.1859634937625,56.50599784621858],[-126.19086903152849,56.50742456849532],[-126.19484365833968,56.508951100965305],[-126.19975947083519,56.507285594035295],[-126.20316619976643,56.50459166969108],[-126.20689672755863,56.501484888247546],[-126.20387165525945,56.49945536430544],[-126.19967626045175,56.49838652012864],[-126.20007551086253,56.495930335589286],[-126.20093049315447,56.492335280715245],[-126.2010368361925,56.48949419737122],[-126.2015590253483,56.48646426716406],[-126.20136067229336,56.48348924169586],[-126.20142474680765,56.481723657548464],[-126.20510200095906,56.482793261159124],[-126.20874628380975,56.482034596492696],[-126.21282381520403,56.48059401146759],[-126.21418751657964,56.4771862480573],[-126.20869486362271,56.47489210118412],[-126.20111864019088,56.47321936686041],[-126.19350963554342,56.47238864629305],[-126.1871265398333,56.47197689989247],[-126.18010714476844,56.4719510873844],[-126.17168321780538,56.46820763741894],[-126.17073601502292,56.465851955462476],[-126.16494604861181,56.46338607837731],[-126.16166502795838,56.46283462255268],[-126.1597014013273,56.4601844048401],[-126.15548700798934,56.45706193513917],[-126.15229039633249,56.45427867420993],[-126.1463138996232,56.45140891949957],[-126.1412505983007,56.4488963571023],[-126.13790922688021,56.44720623384373],[-126.13312817199831,56.44554441156017],[-126.12651367778106,56.4458199513036],[-126.118986147404,56.44578234161911],[-126.11383078632052,56.445670515460655],[-126.10830985805984,56.444465469400555],[-126.10371356056359,56.44332217456574],[-126.10433961953918,56.44047186552301],[-126.10426086085906,56.43721885889187],[-126.10382589792432,56.43515803996534],[-126.11201038057185,56.43416537981818],[-126.11914067553796,56.43385426302387],[-126.12291624749456,56.43218384332893],[-126.12588226558486,56.4301556465763],[-126.12626585873376,56.42822852781748],[-126.12365435824482,56.42642979344103],[-126.12001383156489,56.42461405131776],[-126.11875596095315,56.41985663431179],[-126.11726318894847,56.41584323795001],[-126.11489649089599,56.41301353815668],[-126.11304965850178,56.41019230307951],[-126.11428970138793,56.40746690780754],[-126.1203182120731,56.40348249269759],[-126.1300529588623,56.39948513303995],[-126.13124396794042,56.398014239653435],[-126.13372244511002,56.395188820682336],[-126.1385136223007,56.3911331625214],[-126.14405044567889,56.38908385412479],[-126.15051175360497,56.38710491688932],[-126.15242980368073,56.385408942734465],[-126.15372955629257,56.3809714961078],[-126.15195659493249,56.376098618553804],[-126.15081849556412,56.37356389632982],[-126.14917471476049,56.37075195505781],[-126.14615932931312,56.36889147079453],[-126.14239627898968,56.36759631476263],[-126.13995713848911,56.36687313479088],[-126.13963073742092,56.36458835267237],[-126.14386188867574,56.36429690834794],[-126.1484894773234,56.36166596152318],[-126.14873200823111,56.360688897298076],[-126.14832160631083,56.360689373200984],[-126.15086004393909,56.3588403796646],[-126.15063739552072,56.35654654976589],[-126.1487548587182,56.3547027248903],[-126.14625700351073,56.352725159191486],[-126.14727414536941,56.35028652784289],[-126.15198029461703,56.34828266708188],[-126.15798018543916,56.347442007961796],[-126.16601715548299,56.34712715676436],[-126.17463371448753,56.34505460560339],[-126.18141755795936,56.34244641065135],[-126.18845934059907,56.341217509312266],[-126.19477193945829,56.34293758165342],[-126.1953731637927,56.343456418185696],[-126.20169020226862,56.345122377809496],[-126.20687620635225,56.34678089901821],[-126.21465853505839,56.34778071253515],[-126.21887127883295,56.34788111607802],[-126.22477613915878,56.34680449412402],[-126.23012411926491,56.346857722890135],[-126.23454521258478,56.34691242954991],[-126.22941279319154,56.34371359248276],[-126.2243584507677,56.34126716425213],[-126.22291971872576,56.3383393492909],[-126.22540067734776,56.33510895955397],[-126.22876386982115,56.333203212682925],[-126.2304102326539,56.330243057255466],[-126.23358741478621,56.32764750849568],[-126.23665522048627,56.325285076486885],[-126.23969612394103,56.32354990637174],[-126.24166952574699,56.320140944512964],[-126.24302108272975,56.31673313937234],[-126.24770397343411,56.31518283852841],[-126.2532684533519,56.314786613970426],[-126.25544938778172,56.31411915195047],[-126.25798839322859,56.30912269559165],[-126.25979532071229,56.304459249122225],[-126.2633835975458,56.30175461295536],[-126.27335282480183,56.30168888837235],[-126.28446794295947,56.30420064858502],[-126.28972978375086,56.30665315177851],[-126.29187776410612,56.30999077930264],[-126.29453986643138,56.31327342676906],[-126.29960882103951,56.32149699423895],[-126.30566999587079,56.32463700837221],[-126.3123394001394,56.32812474763689],[-126.31638273063012,56.330166942267795],[-126.3209010983746,56.33044245327514],[-126.32416124346562,56.32819392355161],[-126.32425035864776,56.32550532390305],[-126.32659673984969,56.323017094397414],[-126.33483345770622,56.322646318625374],[-126.34217148842342,56.32151571343681],[-126.34384209078257,56.32073160770112],[-126.34862175070802,56.31918630352871],[-126.35284079880559,56.31904928119272],[-126.35300256341706,56.31722970546625],[-126.3511304088248,56.31468987079702],[-126.3489306686578,56.31284091890468],[-126.34879451367145,56.31073540782493],[-126.35228902542609,56.30756253069283],[-126.35751978338315,56.30476108898263],[-126.3591478301176,56.302095058766945],[-126.36348641478139,56.29813988908029],[-126.36990476361564,56.29339895740037],[-126.37614406327685,56.28786965641007],[-126.38744538741464,56.28448444577007],[-126.39484877769362,56.28427360999219],[-126.40390335453218,56.28373453826216],[-126.40869716478109,56.28148798103065],[-126.41218142032695,56.281700821787666],[-126.4150300955977,56.282632523438934],[-126.41738520450161,56.28288472841355],[-126.4214496529889,56.28098059341297],[-126.42541856497864,56.278789891356794],[-126.43082094383358,56.28009804438405],[-126.4337089263368,56.28309026123461],[-126.43624255807977,56.28419282318016],[-126.43842390298934,56.286793059047454],[-126.43959782163822,56.28874256344206],[-126.44484234941775,56.29193252806414],[-126.44874932329238,56.29521659796247],[-126.45424604319254,56.296980471893],[-126.45686646244967,56.298718575715164],[-126.46331857175649,56.29940330023965],[-126.46628850790155,56.29976887800508],[-126.47260102754463,56.301770948492475],[-126.47862448136573,56.30308377620494],[-126.48960692493127,56.303517153103655],[-126.49764364957332,56.30273338781211],[-126.50090223187277,56.30378705993304],[-126.50080042755972,56.30738093698798],[-126.50289582742076,56.30963096498981],[-126.50772295827494,56.31326811595135],[-126.51192077731393,56.313995177695766],[-126.5174262425113,56.31186711500025],[-126.52238897566919,56.31082535351713],[-126.52832169641918,56.31178673620591],[-126.53488722819073,56.31229713347608],[-126.53703613216226,56.31260177778267],[-126.53910370696302,56.31221670454037],[-126.54573495649097,56.31016332079904],[-126.55123500469782,56.30832058310708],[-126.55698808675517,56.30836735206771],[-126.56301208652106,56.309729990924396],[-126.56804403802988,56.31000346990276],[-126.57291773478032,56.30837764832032],[-126.57807930791861,56.30756582464652],[-126.58309822934436,56.30806280382994],[-126.59072955664922,56.307095803844916],[-126.59869036334224,56.3053292417999],[-126.60240291366127,56.30484581790109],[-126.6078679711898,56.30403135867337],[-126.61271936477135,56.303201683726755],[-126.61610769372838,56.30323021323329],[-126.6166798193442,56.30100502993454],[-126.61544189041396,56.29711279214122],[-126.61427643119895,56.29460025148995],[-126.61763280278822,56.291877752405156],[-126.6186464090053,56.28835104133789],[-126.61890549003763,56.28618114314727],[-126.62312990219831,56.28570359390723],[-126.62954901504159,56.287804945427204],[-126.63022606534581,56.28814102101144],[-126.62802585246146,56.286617216718405],[-126.6279304346613,56.28646982319038],[-126.62767881496835,56.28635792183405],[-126.62736848369757,56.28624406779139],[-126.62710550086476,56.28618038832357],[-126.62697577363097,56.28616422209007],[-126.62693023488993,56.28616332524985],[-126.62690161132709,56.28614442275802],[-126.62686049283003,56.286103178167586],[-126.6267926483946,56.28603518056995],[-126.62673634946292,56.28599289020189],[-126.62671388399326,56.28597955832032],[-126.62665780182657,56.28595182903995],[-126.62658329818328,56.28590962784282],[-126.62647822210845,56.28585413441165],[-126.62632739155192,56.28578318271974],[-126.62617571928199,56.285722316487416],[-126.62606888986413,56.28568363383357],[-126.62601701338679,56.28566484502511],[-126.6259987369728,56.285660453850134],[-126.6258921940472,56.28563969233133],[-126.62565444042148,56.28557252590158],[-126.62537875652252,56.28547305973364],[-126.62519014318498,56.28537988820351],[-126.62513203852674,56.28535104799396],[-126.62509237253798,56.28533779994473],[-126.62495404007808,56.285289188905494],[-126.6247843814171,56.28524185099029],[-126.6246369392625,56.28519328413471],[-126.6244312152557,56.28510467578429],[-126.62422951980176,56.2850149272723],[-126.62414700097999,56.28497724449986],[-126.62410941192864,56.284967346512346],[-126.62398627518095,56.28498362994991],[-126.62379259235367,56.285015939860315],[-126.62361011901626,56.28498994610808],[-126.62346334242581,56.28491897132922],[-126.62329556741156,56.28486266094018],[-126.62303172343005,56.28480793874146],[-126.62278624479013,56.28476320803526],[-126.62264011101512,56.284732555202105],[-126.6224477396159,56.284720050013945],[-126.6220938434465,56.28466352399859],[-126.62166692455563,56.28453006064421],[-126.62138258139284,56.284393662604586],[-126.62130708470389,56.28435258339626],[-126.6211984625953,56.28439119693189],[-126.62096906377954,56.28446736260056],[-126.62078389754025,56.28452651057037],[-126.62064584841777,56.28455966569856],[-126.62049047229188,56.28458394344786],[-126.62036024612827,56.284599137632505],[-126.62027842465679,56.28460625566367],[-126.62020161485745,56.28460998882915],[-126.61997608432489,56.28454723331101],[-126.61957408362463,56.28445396814963],[-126.61927481221257,56.28446101908374],[-126.61919547202763,56.28449612855663],[-126.61912716003991,56.2845255837388],[-126.61897349381675,56.28459465800726],[-126.6188740497638,56.28463770578289],[-126.61885901279986,56.28464673990753],[-126.61882641954232,56.28463233552645],[-126.61870199112788,56.284566847987335],[-126.61853777500775,56.284479149527954],[-126.6184397133458,56.284418014828105],[-126.6183437630271,56.28436247067381],[-126.61822229156766,56.28429248771655],[-126.61817128264333,56.284264730239826],[-126.61808674853405,56.284227053349035],[-126.61786225764168,56.28410155982513],[-126.6176115413357,56.28391682384377],[-126.61745334309012,56.28376188502887],[-126.61738954671014,56.28369274289026],[-126.61732678761426,56.28362471587933],[-126.61727496326559,56.28341661535869],[-126.61732229949412,56.28314754708852],[-126.61712739845312,56.28297374237257],[-126.61652750093123,56.28283549626404],[-126.61607413485794,56.282754789828076],[-126.6159748507224,56.28274406663441],[-126.61591401390491,56.28273427828808],[-126.61566167881884,56.28270188889188],[-126.6153059462691,56.28265543459726],[-126.61504812582643,56.282596186445915],[-126.61490443326484,56.282526307357465],[-126.6148025477452,56.28247863033908],[-126.61469589645667,56.28245001895714],[-126.61457811156434,56.282420340850976],[-126.61446041463145,56.28239626303744],[-126.61435383265693,56.28237101153363],[-126.6142145923415,56.28232799423592],[-126.61407718056098,56.28227152603161],[-126.61403029255501,56.28224822781448],[-126.61386266665295,56.28220086582951],[-126.61348455486873,56.282080583134324],[-126.61322943249878,56.28199891512825],[-126.61317445502034,56.281975655411145],[-126.6131377508496,56.28195678867966],[-126.61302158834906,56.2819013376019],[-126.61283843626629,56.28183052530626],[-126.612732050773,56.28181871349508],[-126.61264699790834,56.281812400175795],[-126.61252504884665,56.281774899012575],[-126.61244617326196,56.28171030743458],[-126.61240053958704,56.281637715411534],[-126.61236651192995,56.28159643236427],[-126.6123272960903,56.28154621285135],[-126.6122856379516,56.28146912109509],[-126.61226376202747,56.28142777981787],[-126.61222457012474,56.28131483099478],[-126.61215443321534,56.28109785514713],[-126.61212148942322,56.28093110853969],[-126.61200507431509,56.280793885861314],[-126.61177179282924,56.28068634671593],[-126.61165301228527,56.28065667073812],[-126.61162867229213,56.28065230655203],[-126.61151594329817,56.280622601492134],[-126.61135562383791,56.28058864330485],[-126.61125916129336,56.280563340873925],[-126.61117274281848,56.28053462985761],[-126.61094822538145,56.28040464407262],[-126.61063761347843,56.28020113847083],[-126.61043629655147,56.28006656033501],[-126.61032679555535,56.27998419117712],[-126.6102477179778,56.27990615733776],[-126.61022092028804,56.27987380055248],[-126.61018842133754,56.27986499439614],[-126.6100978905324,56.279831821653104],[-126.61001646905851,56.279798605374026],[-126.60999204264326,56.27978864048026],[-126.60996923788841,56.27975290410198],[-126.60992454326973,56.279674705994225],[-126.60990173864266,56.27963896960565],[-126.60992377655228,56.27962542249809],[-126.60996745151381,56.279572566445225],[-126.60998858314922,56.279500775198514],[-126.60998826181954,56.27941564438024],[-126.60998219540473,56.27928573448389],[-126.6099823183107,56.2791636361946],[-126.60998054840596,56.279114357496816],[-126.6099768793132,56.27907404916186],[-126.60997476088805,56.27900236888293],[-126.60997520635975,56.27896652156364],[-126.6099729311054,56.278884760576176],[-126.60997016917024,56.27877275753455],[-126.60996940241309,56.27872347405779],[-126.60993999845071,56.27871801356413],[-126.60985887561641,56.2787038385434],[-126.60961450558918,56.2786624381133],[-126.60920189246737,56.27859607547929],[-126.60887288909849,56.278509150350466],[-126.60866996568275,56.27840146113681],[-126.60851286809469,56.278313716362966],[-126.60842814751382,56.27826259223355],[-126.60841920626551,56.27820774687049],[-126.6084242602132,56.27807778405822],[-126.60839444598649,56.27791550254197],[-126.60837618757029,56.27784725959508],[-126.60827733502886,56.27786341233691],[-126.60800203723083,56.27791288913518],[-126.60765837365952,56.27792348472754],[-126.60735439054322,56.27781963438401],[-126.60714405780415,56.27768957479812],[-126.6070061695706,56.277600616817956],[-126.6068389671802,56.27751291803817],[-126.60665655521792,56.27742305091594],[-126.60659050591642,56.27733711199304],[-126.60666885172063,56.27717207647848],[-126.60677626859244,56.276990100502424],[-126.60675135941035,56.27694877280044],[-126.60651943698848,56.27705740901603],[-126.606233169036,56.2771819848416],[-126.60600179458937,56.277195403837894],[-126.605779647913,56.27715053031457],[-126.605569100846,56.2771369659534],[-126.60536131991728,56.27710658573327],[-126.60516079766774,56.27702128293447],[-126.60505240461806,56.276812326062476],[-126.6049736040781,56.27655506215495],[-126.60477160069243,56.27630846270345],[-126.60463289607529,56.27603579985316],[-126.60463191167733,56.27590586593502],[-126.60463256926914,56.27588345962225],[-126.60463146382726,56.27581177460717],[-126.60462942444006,56.275744574652755],[-126.60462399799304,56.27572107696337],[-126.60441454518033,56.27584304493115],[-126.60398320975746,56.27606911601527],[-126.6036236743756,56.276164907991046],[-126.60338368051583,56.27614251785224],[-126.60322625664946,56.2760984545441],[-126.60309837365018,56.27600160413513],[-126.60297006170269,56.275877871791955],[-126.60293603474875,56.275769376814104],[-126.60297377158027,56.275658302966924],[-126.60299525842419,56.27560891456573],[-126.60300009924968,56.2755954498099],[-126.6030108162814,56.27556851541299],[-126.60291559841062,56.275557763027365],[-126.60266684480074,56.27555781608359],[-126.60243451497848,56.27550850421832],[-126.6022644957154,56.27543313465576],[-126.60214335583973,56.27538105794451],[-126.6020712132923,56.27535787446187],[-126.6020162345476,56.27533348993367],[-126.6019908109376,56.27532464840916],[-126.60191837627305,56.27528242350721],[-126.60173479385575,56.275180233307864],[-126.60156536795381,56.27507797622206],[-126.60142461476991,56.27499910734052],[-126.60125714397005,56.274892360024566],[-126.60115085549003,56.274818929506885],[-126.60113134448687,56.27479997857315],[-126.60109855987413,56.27477212879343],[-126.60100117400057,56.27468521437823],[-126.60089743114223,56.27458040723912],[-126.6008294285487,56.274497835185855],[-126.60078368747855,56.27441627861449],[-126.60076207552204,56.27432564733951],[-126.60075679555031,56.27424502072467],[-126.60072952907214,56.27418129984119],[-126.60065702924496,56.27413459393268],[-126.60058648411639,56.2740845183231],[-126.60054020421917,56.27403320849897],[-126.60050573249477,56.27396168032249],[-126.6004779863373,56.273866597209555],[-126.60040877706368,56.27377058873488],[-126.60029518467334,56.273682629815525],[-126.60024546995672,56.273605572387495],[-126.60027470474888,56.273533744939776],[-126.6003033651485,56.273489924144265],[-126.60032296921624,56.273449506358425],[-126.60034114251326,56.27338221149136],[-126.60035537340724,56.27332053593457],[-126.60036377893415,56.27327569011732],[-126.60036459229363,56.273262244397266],[-126.60033013035323,56.27325680549174],[-126.60025236355088,56.273196682224594],[-126.60019001961382,56.27308719952362],[-126.60017326837952,56.27298422364338],[-126.60015793067521,56.27290700476329],[-126.60013560945892,56.272835419468535],[-126.60012984325552,56.27278952006719],[-126.60013470089368,56.272776055360175],[-126.60009106329021,56.27276617884932],[-126.59999970870395,56.27274308446188],[-126.59997737988434,56.27273758850097],[-126.59987657422325,56.272691015079225],[-126.59981330658579,56.27265322666712],[-126.59973149758301,56.27259312207944],[-126.59967295192827,56.27253402844266],[-126.59963916728888,56.272506183021626],[-126.59959439013667,56.27248735042889],[-126.59956167705384,56.27246398059192],[-126.59955647673623,56.27245504372683],[-126.59955222704929,56.272441621770575],[-126.59954056563913,56.27240583143013],[-126.59951793853516,56.272315204803434],[-126.59948278428402,56.27219775315706],[-126.59944924961141,56.272120619584214],[-126.59941801108815,56.27206139775699],[-126.5993991961097,56.272021160333246],[-126.59938649872316,56.271984254687915],[-126.59936234664734,56.27192611977213],[-126.59933408110705,56.27186240335743],[-126.59932456290059,56.271835564216325],[-126.59932833310418,56.27181762401601],[-126.59930250059305,56.27178077996563],[-126.59902271491602,56.271667835670634],[-126.59853774631327,56.271492002968536],[-126.598286615143,56.27140132602869],[-126.59820124546262,56.27137260158434],[-126.59806496639217,56.27132059204642],[-126.59796941858778,56.27128743445387],[-126.59782809314544,56.2712354482808],[-126.59758918273015,56.27115031361021],[-126.59741312562399,56.271074966099604],[-126.59731815535126,56.271013801409254],[-126.59727310805455,56.27097704678261],[-126.59724850271844,56.27095475864395],[-126.597218696946,56.27092241339369],[-126.59719696307758,56.270890030416176],[-126.59718739451505,56.27085871074339],[-126.5971798317963,56.27082738169701],[-126.59717267411821,56.270755725118356],[-126.5971688611199,56.27063812649122],[-126.59717753827903,56.27054399279114],[-126.5971980743815,56.27043188117105],[-126.59718645903376,56.27026615229596],[-126.59701690954887,56.270087719495976],[-126.59673348704004,56.26993334156854],[-126.59655952715353,56.26986246378544],[-126.59652411781668,56.26986150892523],[-126.596516166302,56.26987050729177],[-126.59643979196896,56.26990110799571],[-126.59630292908136,56.269943192485385],[-126.5962040914926,56.269959335835544],[-126.59612883626932,56.2699305628568],[-126.59602082126874,56.26987505888635],[-126.59586592722957,56.26979512999396],[-126.59564699328567,56.269691976160836],[-126.59541813869207,56.26960231005736],[-126.59521553649235,56.269576370157694],[-126.59503464888752,56.269581693191085],[-126.59484451848913,56.26957809774651],[-126.59459167400364,56.269572553526565],[-126.59433689252805,56.26957261859405],[-126.59417216417214,56.26957786524962],[-126.59406430384912,56.26959852951742],[-126.59388401047104,56.26964417376267],[-126.5936237730897,56.269684588365365],[-126.59343559646803,56.269676501124145],[-126.59338083443974,56.269665553863305],[-126.59335866083045,56.269670137445566],[-126.59329509624894,56.26967827366568],[-126.59313016401426,56.26967007805502],[-126.5929207652248,56.269662088556835],[-126.59274283402313,56.26966291400369],[-126.59253596937563,56.26962242761156],[-126.59222291130988,56.26958019276106],[-126.59186774272607,56.269627764624616],[-126.5915823554174,56.26967613263016],[-126.5913609272941,56.26967603735244],[-126.59124268528342,56.269678824787825],[-126.59119918845535,56.26967790587167],[-126.59106273202379,56.269679657250315],[-126.59080954991822,56.26965170400231],[-126.59052704894178,56.26955667643083],[-126.59029064921361,56.26943455157644],[-126.59015958581857,56.26939259103403],[-126.59008023320575,56.26942656213191],[-126.59000308843841,56.26947396484783],[-126.5899134997931,56.26956735132212],[-126.58974258586073,56.269698078194125],[-126.58956446050092,56.26975378771296],[-126.58949474495506,56.26975634964074],[-126.58946050647823,56.26976546881979],[-126.58935976240427,56.26978945674436],[-126.58924399693667,56.269823595250685],[-126.58919660689335,56.26983165484532],[-126.58921433326229,56.26980020876962],[-126.58924076320245,56.26974295899183],[-126.58918823548602,56.2696782321922],[-126.5890484621622,56.269594864929346],[-126.58890735013878,56.26948910058946],[-126.58879131930782,56.26936977868322],[-126.58872545724454,56.26929279144416],[-126.58866860193928,56.26921016191048],[-126.58860766877547,56.269124190674624],[-126.58858487289856,56.26908733056762],[-126.58858978511206,56.26907834670425],[-126.58860650875738,56.26904690534214],[-126.58866785984144,56.268958130515344],[-126.58878746978658,56.268777234563416],[-126.58887962298701,56.268585263495844],[-126.58890531186599,56.2684776102787],[-126.58891650123364,56.268414830061815],[-126.58897508210867,56.26820957181477],[-126.58907431391094,56.26781594025492],[-126.58912446180472,56.26751998837928],[-126.58912150717234,56.267390064135434],[-126.58912231081739,56.267242200108896],[-126.58911738761968,56.26698122695909],[-126.58899481413847,56.26669615281482],[-126.58885175126946,56.26652654883159],[-126.58894060246386,56.266452209209994],[-126.58907637414566,56.266404536910784],[-126.58910011391802,56.26636970270666],[-126.58908250012304,56.2663417800733],[-126.58891774397772,56.26627645046877],[-126.5886308753264,56.266157915884286],[-126.58847980244879,56.26606115840035],[-126.5884533116749,56.26597950921347],[-126.58844455241301,56.265934743423486],[-126.58844037445839,56.265925801438186],[-126.58842619984567,56.2658575373701],[-126.58839977105409,56.26571315932063],[-126.58838291340821,56.2655328923061],[-126.58837874078661,56.26538953193934],[-126.58837584526964,56.265331297320365],[-126.58854619578483,56.26523081917375],[-126.58889769578722,56.26494132035667],[-126.58907276539568,56.26461678921671],[-126.5890694512361,56.26439613443091],[-126.58906885514901,56.264288602535416],[-126.58905616998636,56.26425169598476],[-126.58894790177354,56.26424547416356],[-126.58859931126104,56.26412162340059],[-126.58815977796831,56.263731594144026],[-126.58797708448665,56.26314323506414],[-126.58797507747865,56.26267166042772],[-126.58797325929623,56.262483483332744],[-126.58797547698885,56.2624285857033],[-126.5879730524336,56.26240171322539],[-126.5879715029256,56.262231457337776],[-126.58819922333575,56.261845077115915],[-126.58869467798614,56.26158516040195],[-126.58899510574602,56.26146503974309],[-126.58903190951388,56.26129012649341],[-126.58902637972338,56.26112436963181],[-126.58902259208467,56.261006771240545],[-126.58893510891095,56.26076746224594],[-126.58874730750651,56.260377395209574],[-126.58863047460773,56.260135981031],[-126.58859301272257,56.260064463995434],[-126.58859886309808,56.25991545703579],[-126.5886896582059,56.25970221013157],[-126.58880357843456,56.259547104412704],[-126.58888748615398,56.25948062880888],[-126.58891957664916,56.259463678632144],[-126.58893999266292,56.259477026321626],[-126.58902848827854,56.259514703447316],[-126.58916060420404,56.259562260714986],[-126.58924285020102,56.25958652471206],[-126.58933330046929,56.259619712014185],[-126.58955277635803,56.25969598977848],[-126.58971631805454,56.259749002211244],[-126.58975392544785,56.259763390569745],[-126.58982335306384,56.25974178720061],[-126.58998828519802,56.25968613827194],[-126.59031789521299,56.25955803869148],[-126.59076908229278,56.25938232980303],[-126.59098916975296,56.25929730060596],[-126.5910284610563,56.259289277788795],[-126.59111501039337,56.25926423405344],[-126.59127839002936,56.25923995484775],[-126.5915235431988,56.259208575935524],[-126.59180596559477,56.25916918286043],[-126.59219312834473,56.25910466038207],[-126.59267767643344,56.25899711925754],[-126.59309867471238,56.25889771238566],[-126.59347538679152,56.2588108315128],[-126.5938139452965,56.258740929129495],[-126.59395603682674,56.25871226483227],[-126.59402755028746,56.25869625022365],[-126.59435988994605,56.25861629394904],[-126.59487759990319,56.258496268504814],[-126.59526940451867,56.258404831439314],[-126.59560573087657,56.25832149288234],[-126.59597448258698,56.25824360292688],[-126.59622337991593,56.25819427508659],[-126.59644608335142,56.258149549657716],[-126.59676859639647,56.258088675529116],[-126.59699133357965,56.25804730944028],[-126.59723985232236,56.25797221791666],[-126.59763816671392,56.257844898303254],[-126.59787856436863,56.257768723372486],[-126.59796719560413,56.25774814583419],[-126.59805069612614,56.25772199150003],[-126.59834953979339,56.257634340551704],[-126.59893898301313,56.25744787369446],[-126.59944194954741,56.25729093382703],[-126.5997820945837,56.25719412450232],[-126.59999970981933,56.25714829659025],[-126.60003901329746,56.257140270933256],[-126.60019640035998,56.257121609177496],[-126.60047955343036,56.25713148004758],[-126.60090068680792,56.25717542601222],[-126.60113216201803,56.257242666198074],[-126.6012311828421,56.257307168959706],[-126.60152398030553,56.2572867480594],[-126.6019392004684,56.25720862200925],[-126.60216902702788,56.25716833360582],[-126.6022417594076,56.25716575044596],[-126.60230039427834,56.25716659416387],[-126.60234083745928,56.25716752363046],[-126.60237226168012,56.25717297621521],[-126.60240783274432,56.25718625029433],[-126.60249721723505,56.257214952691086],[-126.60281307385006,56.257248187324784],[-126.60346393025814,56.257310083226585],[-126.60438215541367,56.25734158725309],[-126.6051637624001,56.25723147271022],[-126.60545139094789,56.25713825744488],[-126.60551285840374,56.257125644447676],[-126.60559339900055,56.25710509994673],[-126.6057229688604,56.25705295869384],[-126.60603393418361,56.25696523221401],[-126.60664043431164,56.25677416813102],[-126.60743311882824,56.25646572025567],[-126.60804324761212,56.25624886875016],[-126.60828728049007,56.256212982285],[-126.60833689601174,56.25621834677801],[-126.6083618929807,56.25620142546865],[-126.6083920032443,56.256187840256196],[-126.60844220434332,56.25616631828847],[-126.60856364638411,56.256110852400276],[-126.6087542739593,56.256020332031376],[-126.60892683125559,56.255937738573415],[-126.60905115654627,56.25587329726685],[-126.60914431824298,56.25582020595702],[-126.60922248513539,56.255777267452196],[-126.60933164095017,56.255711778064445],[-126.609477711014,56.25561586838643],[-126.60958643206278,56.25552349722813],[-126.60962624709997,56.25548410193716],[-126.60964092688042,56.25545266764925],[-126.60968118726348,56.25537742538143],[-126.60973041171005,56.25529317910812],[-126.60977397279171,56.25523472332524],[-126.60986370779162,56.255155884376975],[-126.61004958862645,56.25502057869762],[-126.61026443488609,56.25486273135674],[-126.61045616730993,56.2547139553233],[-126.6106381934611,56.25459098887298],[-126.6108188425841,56.25450947432894],[-126.61096256247146,56.25445838023312],[-126.61103182945034,56.254427804848646],[-126.61113389637174,56.25436234783437],[-126.6113787738245,56.25418755268402],[-126.61163572221867,56.2540082186666],[-126.61176777213562,56.25392133471675],[-126.61188593564118,56.2538513194095],[-126.61211823662613,56.25371242791042],[-126.61238157536685,56.25355546478639],[-126.61255167334782,56.253445994605094],[-126.61264269717051,56.2533850699457],[-126.6126946335667,56.25334561557223],[-126.61280159958801,56.25327117252528],[-126.6130306603198,56.253118853107544],[-126.61329963442724,56.252934977437185],[-126.61354551194042,56.252760173346815],[-126.61375419848157,56.25259786914436],[-126.61384617183896,56.252469730049796],[-126.61381464684116,56.25239259117585],[-126.61378282046502,56.25236025975408],[-126.61391477244452,56.252267773314856],[-126.61418324264807,56.25211638257785],[-126.61434875980693,56.252038296245495],[-126.6143720272985,56.25203930448511],[-126.61436176428012,56.252029272496664],[-126.61432178484436,56.25199361997694],[-126.61425602461443,56.251924486923286],[-126.61420254856837,56.25186537612114],[-126.61412205998994,56.251823197425544],[-126.61395333367824,56.25176128013363],[-126.61378951216498,56.2516903778545],[-126.61371879654511,56.2516268691015],[-126.61367953884975,56.25157217037621],[-126.61360886000723,56.251512021840064],[-126.61353111595862,56.25145190720398],[-126.61348918557778,56.25141962425897],[-126.6134513511494,56.25139180222831],[-126.61333601711937,56.25131842621067],[-126.61316571546858,56.25122067068425],[-126.61304040005587,56.25115518337193],[-126.61294879068441,56.25111305733653],[-126.61283182366604,56.25106545215515],[-126.6126943834332,56.25100002268568],[-126.61258646707243,56.25094901342204],[-126.61255383416069,56.25093012738491],[-126.61250798691765,56.250906824110515],[-126.61234093843309,56.250822493711254],[-126.61214132803227,56.25072375721755],[-126.61204762977823,56.25067715996705],[-126.61196389678099,56.250621553711774],[-126.61180994257454,56.25053379945476],[-126.61170287386949,56.250472704064336],[-126.61159056914977,56.25039931201957],[-126.61142735722235,56.25030152030528],[-126.61131396386197,56.25022253249419],[-126.6112231515139,56.25016695965583],[-126.61113681618298,56.25013824890603],[-126.61110650215986,56.25013839394673],[-126.61112729517308,56.25011141088939],[-126.61111593437205,56.25003081453306],[-126.61108221059935,56.249876395356885],[-126.61106597077732,56.2497420552125],[-126.61106829627438,56.249697238141756],[-126.61104650912378,56.24966037747097],[-126.61099773632948,56.24957883994902],[-126.61096663785702,56.24952858202705],[-126.61092954652422,56.249482833358094],[-126.61085752452341,56.249400286845606],[-126.61079367358015,56.249323301963926],[-126.61070308942706,56.24928116947926],[-126.61060447547194,56.249243555913495],[-126.61058661757264,56.24913498689859],[-126.61060529245252,56.24903632457368],[-126.61060898558202,56.24901390395309],[-126.61059962082143,56.24899602635151],[-126.61055381945422,56.24890999389275],[-126.61046045786411,56.248754739565996],[-126.61038623478505,56.24859603327836],[-126.61041547505482,56.248461475777006],[-126.61041201698107,56.2483046715962],[-126.61033073011909,56.2481459990707],[-126.61038726072947,56.248012431333564],[-126.61047431235879,56.24789215946811],[-126.61044353734137,56.24779709401152],[-126.61041266751816,56.247761396828366],[-126.61040745057808,56.2477513404332],[-126.6103311032526,56.247714740426545],[-126.61018996952187,56.247671729030706],[-126.61004758029311,56.24767688982157],[-126.60989868465892,56.2477190463921],[-126.60978402067124,56.247753198324105],[-126.60975079102793,56.24776119800482],[-126.60968238830492,56.24771559850399],[-126.60959435535544,56.24757824057286],[-126.60961525336236,56.24742692092765],[-126.60967666233985,56.247347097337546],[-126.60970539877913,56.24731111544282],[-126.60971731465519,56.24729761678973],[-126.60967922457782,56.24725187258512],[-126.60960202745095,56.24716150914697],[-126.60954510681906,56.24707440933827],[-126.60951250654519,56.24699279418032],[-126.60949039178635,56.24693465206801],[-126.60948301523666,56.246915644769444],[-126.60948180415627,56.24690220878371],[-126.60948224971389,56.246866361950644],[-126.60938094258664,56.24678395448322],[-126.60918331137785,56.24668072363514],[-126.60905128410533,56.24663766758645],[-126.60897116067555,56.24661900715806],[-126.6088927092344,56.246576815624145],[-126.60885185969184,56.246549006699894],[-126.60877311430781,56.24648889414738],[-126.60862372339481,56.24636863030518],[-126.60852349112368,56.24629069765373],[-126.6085040937612,56.24627734831525],[-126.60848062140472,56.24626289824222],[-126.60839374093057,56.246198343640515],[-126.6082686878202,56.246083564199886],[-126.6081457950397,56.245977735530566],[-126.60804112967976,56.24594014890407],[-126.60798446276048,56.24593481794989],[-126.6079324218975,56.24590146128936],[-126.60782956945371,56.24585042410626],[-126.60771865059417,56.24579942522682],[-126.6076696331197,56.24576605407623],[-126.60767465448299,56.24569882140555],[-126.60760847921493,56.24553671505475],[-126.6074506659343,56.24539408707016],[-126.60736911011138,56.24534742882275],[-126.60727010937822,56.24528293114053],[-126.60704846561381,56.245129404726335],[-126.60689101979874,56.245010297408115],[-126.60681643955428,56.24489191634119],[-126.60673431060556,56.24474220702142],[-126.60660406875596,56.244618489551286],[-126.60626619788182,56.24439606484601],[-126.60586980095798,56.244113429110705],[-126.60570528254513,56.243994353970926],[-126.60568789060697,56.243979874570634],[-126.60563930931332,56.243974504246445],[-126.60551608613333,56.24397732885302],[-126.6053797035489,56.24397909557685],[-126.60523112702386,56.243975319219366],[-126.60499326449091,56.243948442652766],[-126.604781427519,56.243904640222176],[-126.60468397196028,56.24387485778971],[-126.60463114260567,56.243856065457564],[-126.6045984503914,56.24383269719056],[-126.60454607116623,56.243778058053415],[-126.60440414600934,56.243681277221924],[-126.60428990552252,56.24361124871836],[-126.60423592035318,56.243583500537746],[-126.60418404100464,56.24356022295153],[-126.60414319793924,56.243532412555986],[-126.60409095769145,56.2434867337447],[-126.60401296827399,56.24340869250557],[-126.60395870668046,56.243361903059764],[-126.60393627335583,56.24334856741598],[-126.60389663974341,56.24333419296245],[-126.60380405623675,56.243292065244965],[-126.60368684792559,56.24322653083433],[-126.603580778492,56.24316206381811],[-126.60351822873861,56.243101871632504],[-126.60349179213783,56.24302582674066],[-126.60347685787538,56.24290828214711],[-126.60346689811718,56.24278623347321],[-126.60346443288512,56.2426921529976],[-126.60344134774705,56.2425701663571],[-126.6033988528618,56.24243482970245],[-126.60333257683072,56.242329849291636],[-126.60324749653505,56.242184632496986],[-126.60319203600318,56.24199446999324],[-126.60308877236494,56.24184933900663],[-126.60291490932853,56.24177847078434],[-126.60282980717469,56.24176319053904],[-126.60282832323458,56.24173183351774],[-126.60280686219888,56.24165016433094],[-126.6027654027465,56.24158203126634],[-126.60274694302149,56.241564196099134],[-126.60272658324013,56.24155421090344],[-126.60265441756479,56.2415265479053],[-126.6025632545806,56.241511296089925],[-126.60245665373918,56.241477074601676],[-126.6022712763352,56.24137937640358],[-126.60205752720101,56.24127621099436],[-126.6019548319671,56.24123412967763],[-126.60195886038545,56.24116690208215],[-126.6018737876943,56.241021684442096],[-126.60162821833278,56.24088618416342],[-126.60144636520079,56.240819832219394],[-126.60129243964067,56.240730945657475],[-126.60107707686896,56.240587461112405],[-126.60090657791349,56.24047176868269],[-126.60082678616432,56.240407175849484],[-126.60078156494927,56.240356982183876],[-126.60078580105271,56.24030319539597],[-126.60084773880578,56.240192009832256],[-126.60081823230809,56.23998044168487],[-126.6005872241105,56.239738457450535],[-126.6003151793517,56.23958851744613],[-126.60011319905415,56.239526738868776],[-126.6000005969059,56.23949702416722],[-126.5999601719901,56.23949609396657],[-126.59993067895432,56.239482790826955],[-126.59988580237145,56.23945499810135],[-126.59986435765549,56.23944053699418],[-126.5998480576017,56.23943165242771],[-126.59978896996861,56.239399445857],[-126.59969515937857,56.239342759207936],[-126.59959677780705,56.239251369547524],[-126.59938660905017,56.2391168190539],[-126.59909629403516,56.239026329820526],[-126.59894442473174,56.239004639424444],[-126.59892415271274,56.23900025394216],[-126.59890394906964,56.23900034870408],[-126.59879540623574,56.23897061391832],[-126.5986011551034,56.2388863939074],[-126.59841505362087,56.23880549584063],[-126.59828097600425,56.2387579580203],[-126.59810595142278,56.238741975835175],[-126.59786031619568,56.238731924746396],[-126.59771250647267,56.23871133403057],[-126.59763097611483,56.23866466969402],[-126.5974704308238,56.23860381320731],[-126.59727671278208,56.238554313110484],[-126.59706409561359,56.238456735009784],[-126.59676203712657,56.23825764173731],[-126.59645648579382,56.238094408616696],[-126.59627760866293,56.23802355502367],[-126.59614324707539,56.23795697392502],[-126.59599448864874,56.23787365777211],[-126.59589834375794,56.23779569662762],[-126.59582233422208,56.237713160895616],[-126.59572496781963,56.23762176363779],[-126.59560758429407,56.237475572782316],[-126.59549115188481,56.2373248968329],[-126.59540173237667,56.23722450116308],[-126.59530766149149,56.23714989035851],[-126.59516989246848,56.23712476937117],[-126.59499260125357,56.23715807972181],[-126.59490705344422,56.23717864086349],[-126.59493949693976,56.23712024238749],[-126.5949871847128,56.2370001651381],[-126.594987100031,56.236928476538175],[-126.59495287394844,56.23686926857418],[-126.59492698397543,56.236760735582536],[-126.59490662903008,56.23668466087371],[-126.5948850680073,56.236661238381245],[-126.59485785452584,56.23666584572905],[-126.59483366251133,56.23666931885466],[-126.59476731691745,56.23669091058579],[-126.59470297452616,56.23671137281169],[-126.59468197366458,56.236724912308766],[-126.59463932784028,56.23671054909782],[-126.59450108573417,56.23665406567628],[-126.59425436360785,56.2365051153927],[-126.59400333166604,56.23633826245835],[-126.59389116828446,56.236269335528526],[-126.59377751038036,56.23623513979542],[-126.5935602454477,56.23616334088625],[-126.59342711702388,56.23611131311827],[-126.5934077298272,56.236097961543535],[-126.59332734750164,56.236060250342135],[-126.59318420255279,56.23601274943135],[-126.59302856513101,56.2359417834496],[-126.59292852582287,56.23587279938651],[-126.59271631016045,56.235733767239346],[-126.59232019501128,56.235523899082864],[-126.59207509854443,56.235415262207],[-126.59198093167633,56.23540001689025],[-126.59186107564125,56.23522247038242],[-126.59166925954314,56.2348279502692],[-126.59138710963445,56.234539141459095],[-126.59122032804005,56.23446486456001],[-126.5911999748738,56.234454877556],[-126.59118671712994,56.23444597783359],[-126.59111126377883,56.23439928135458],[-126.59098064318441,56.23431139506416],[-126.59086927368385,56.23422790011052],[-126.5907966739341,56.23416886872156],[-126.59076250785161,56.23411414001924],[-126.59065006997939,56.234026169274884],[-126.59039583770517,56.233913091016696],[-126.590205888096,56.233842280380046],[-126.59016411428189,56.23381895057479],[-126.5901346961936,56.23381012544628],[-126.59006038199003,56.23377238421183],[-126.58998803684105,56.23373015328281],[-126.58992256891636,56.233675569015915],[-126.58981073220257,56.233560711466104],[-126.5896481915462,56.23343152621171],[-126.58940003408388,56.23338674639972],[-126.58912022777817,56.233385797535696],[-126.58891275140165,56.233291542986265],[-126.5887381555589,56.23309968448752],[-126.58863535510031,56.23298030373783],[-126.58851917063389,56.232911390811445],[-126.58823059412337,56.23279734652762],[-126.58786510672509,56.232673574527944],[-126.58762327973814,56.23257835596861],[-126.58755888602482,56.23252824614546],[-126.58753733166976,56.23250482245239],[-126.58749596321246,56.23250837323529],[-126.58743117129558,56.232498590132],[-126.587313690988,56.23247784801129],[-126.58722019981953,56.232440193385685],[-126.58712086266236,56.232348798982706],[-126.58701227704209,56.23224736579605],[-126.58681693518831,56.23222138051474],[-126.58653436693561,56.23223836091357],[-126.58640019433278,56.232249058488726],[-126.58637420179302,56.23226710006846],[-126.58631720869744,56.23230656662306],[-126.58629221744333,56.232323483450486],[-126.58622115091565,56.2323674951393],[-126.58593714961202,56.232559222206795],[-126.5854629953679,56.23286943519669],[-126.58508354274508,56.23309520216763],[-126.58481610907269,56.23324764601145],[-126.58441664970404,56.2334197360408],[-126.5838920429925,56.233530789652086],[-126.5831922212725,56.23361127772175],[-126.58248127807974,56.23369181268453],[-126.58213053387604,56.233675490186954],[-126.58198686356708,56.23359213487383],[-126.58189641306737,56.23355446248334],[-126.58188112148895,56.23354557107855],[-126.58185437883579,56.23351320897738],[-126.58167792922308,56.233330310505295],[-126.58131227134878,56.23305754235062],[-126.58097449664984,56.23296162793848],[-126.58065912685767,56.232879052388284],[-126.58026995991825,56.23272288247896],[-126.57998934798965,56.23266815073168],[-126.57989154946438,56.2326797963436],[-126.57987537256919,56.232678749682705],[-126.57982412692856,56.232628576282146],[-126.57968270949007,56.23249144166896],[-126.57952585362942,56.232335334672534],[-126.57940463847785,56.232198108072126],[-126.57925986517223,56.23197025722648],[-126.57906580399944,56.23168774314497],[-126.57888486229459,56.23154070577048],[-126.57862097637576,56.23145453144283],[-126.57808437398671,56.23130014333318],[-126.57752508164036,56.23118169998065],[-126.57720515274482,56.231130500475146],[-126.57703309073963,56.2310371869071],[-126.57696841168564,56.2308291340464],[-126.576967320062,56.23061743340653],[-126.57696749611458,56.23049197746488],[-126.57696752636738,56.230424769217],[-126.57690927541282,56.23037910692338],[-126.57664622223267,56.23027948322598],[-126.57625230225132,56.23014124505381],[-126.57601974847071,56.23005604416943],[-126.57596189331427,56.2300361427739],[-126.57594768821988,56.230031726321236],[-126.57592937757927,56.230022847849305],[-126.57584928738466,56.23000304671134],[-126.57569915721332,56.22995891842551],[-126.57559067338626,56.22993028408805],[-126.57538383880168,56.22987632987375],[-126.5750572729413,56.2297848301399],[-126.57475359979254,56.22973915203326],[-126.574343348373,56.22972643664432],[-126.57397324940251,56.229696737400175],[-126.57386158227635,56.22965803470787],[-126.57386232215335,56.22964010923133],[-126.57386231163436,56.22950121261529],[-126.57386005786732,56.22920886769893],[-126.5739136829018,56.22900812261372],[-126.57401945774535,56.22892027657993],[-126.57407450395804,56.22888530489524],[-126.57401941115211,56.22884746807381],[-126.57388474211518,56.22875510241921],[-126.57373706764639,56.22867175615182],[-126.5735784728174,56.22860078025868],[-126.57345442840462,56.228544210713224],[-126.5734127681482,56.22852647570781],[-126.57332028520277,56.22848768640499],[-126.57311692865575,56.22839450829633],[-126.57296615378172,56.22830557441362],[-126.57287359463972,56.22819173618324],[-126.57253178281738,56.228023009345904],[-126.57190528045453,56.22786227816703],[-126.57128796185309,56.22770710351391],[-126.57079354551584,56.227531214027714],[-126.57056885383814,56.22742804614483],[-126.57055847821681,56.22740905025918],[-126.57051802647166,56.2273364224128],[-126.57043713958848,56.227191166615974],[-126.57047566304391,56.227062179187605],[-126.57063870200831,56.22695279758913],[-126.57069592331409,56.2268595707645],[-126.57064758828729,56.22680041981289],[-126.57060969386939,56.22676362482902],[-126.57059742890277,56.22675359845922],[-126.57058921970251,56.2267446740922],[-126.5704928920942,56.226648773221974],[-126.57032265053344,56.22647031273268],[-126.57023527476117,56.2263654106294],[-126.5702224243293,56.22631506207392],[-126.57020125104181,56.22624794870994],[-126.57017117614693,56.22619319656139],[-126.5701077517898,56.22613747322384],[-126.57001800637852,56.2260773868664],[-126.56997303620513,56.226040623306616],[-126.56994819809475,56.22599928931615],[-126.56990559915431,56.225917709858535],[-126.56988025716133,56.225841654009834],[-126.56988277448879,56.22580579854232],[-126.56988870349086,56.22579681101535],[-126.56983488094316,56.22577688891609],[-126.5697160544344,56.225730373762964],[-126.5695684489437,56.22565038295508],[-126.56936700572345,56.225548229493334],[-126.56912400594412,56.22543505969226],[-126.56894706071697,56.22535071846792],[-126.56885353922155,56.225308570266286],[-126.56878323599157,56.2252663185417],[-126.5687382029986,56.22522507432135],[-126.56870315482581,56.225175944679506],[-126.56865684446461,56.22511566388528],[-126.56859040265986,56.225061073409826],[-126.5684774279043,56.22499996935634],[-126.56837361491577,56.22494442506934],[-126.56830539735535,56.2249066443323],[-126.56825039675356,56.224874405379396],[-126.56818597551089,56.22481868557652],[-126.56811436417877,56.224755156824386],[-126.56804892542847,56.22469944148534],[-126.56799575050384,56.22465375272644],[-126.56795892719543,56.22462143276748],[-126.56790082494592,56.2245847269462],[-126.56777641263933,56.224501270555194],[-126.56765712277344,56.22442227179273],[-126.56761328798825,56.22439446344522],[-126.56761991130551,56.22436307031841],[-126.56758153406501,56.224223224575965],[-126.56745902581149,56.22399190213137],[-126.56733768436936,56.2238412238367],[-126.56725570313411,56.22375869850814],[-126.56709343770396,56.22357123755064],[-126.56678014034257,56.22320522624379],[-126.56647500778271,56.22284365853413],[-126.56635083017322,56.22270643355489],[-126.56621177351016,56.222587196554706],[-126.56589684326873,56.2223164015938],[-126.56561973800008,56.222076801927706],[-126.56547241422595,56.221944159249546],[-126.56537628831153,56.22186057534762],[-126.56530953403644,56.2217835820708],[-126.56508409975598,56.221625521922],[-126.56469190794182,56.22145811811559],[-126.55688375610328,56.209541802062176],[-126.55686635367839,56.20923944478546],[-126.55699791011503,56.20022301677258],[-126.55698410148798,56.20003153672935],[-126.55697860283462,56.200000197409224],[-126.55697416908802,56.19997221379633],[-126.55697593336795,56.199954284191676],[-126.55704381133988,56.19990134222225],[-126.55720520096239,56.19989503678627],[-126.55732155094697,56.19984412317276],[-126.55731269919113,56.199717588419716],[-126.55713222479552,56.19951675538551],[-126.55715340991371,56.19944497526553],[-126.55723655920963,56.1994020475668],[-126.55749398478886,56.19940652339771],[-126.5576998079418,56.19947395096749],[-126.55781273961999,56.199466736480524],[-126.55814547670353,56.19930286384679],[-126.55832555243894,56.19926175154296],[-126.5584095740144,56.199208738189526],[-126.55842988269144,56.19914704276001],[-126.55836779060391,56.19910923052811],[-126.55804814787496,56.19905798368253],[-126.5576938133772,56.19905169245483],[-126.5576462478505,56.19904181933038],[-126.55760028707321,56.19900393621118],[-126.55761808626426,56.198978095681596],[-126.55786691000809,56.198875076972755],[-126.55788469305948,56.19884811635833],[-126.55787018316536,56.19882129697233],[-126.55768216217494,56.19872802915909],[-126.5577049825456,56.19862935897442],[-126.55788666015805,56.19856023732777],[-126.55815076901008,56.198467232282894],[-126.55846153576265,56.19839194432355],[-126.55859566198916,56.19831406888687],[-126.55877975075077,56.19820125079178],[-126.55904785665984,56.19803541868703],[-126.55914270586575,56.197821060387064],[-126.55921964472539,56.19762582255806],[-126.55925357223869,56.1975987909812],[-126.55927225934073,56.19756398539045],[-126.55929985410035,56.19737568457271],[-126.55931141443018,56.19719529489564],[-126.55933915226264,56.19701707452822],[-126.5591569008292,56.19683305414153],[-126.55914729766585,56.19672556493892],[-126.5593485239746,56.19661267093033],[-126.5596891998,56.196583173626806],[-126.55973828655134,56.19655719552796],[-126.55973457253171,56.19636791194685],[-126.55948548719893,56.1962379509844],[-126.55939761752566,56.19609160098561],[-126.55937852192773,56.19588446301562],[-126.5592447429773,56.19570247051055],[-126.55914338299324,56.195529296711996],[-126.55894589994183,56.195337502117056],[-126.55884352508433,56.19516433256255],[-126.55870987848688,56.19499129992511],[-126.558576979482,56.194799221906116],[-126.55859728561688,56.19473752655815],[-126.55880088539185,56.19457869828654],[-126.55881780826286,56.194561822395315],[-126.55884300515723,56.1944183370709],[-126.55924281447173,56.19421944419459],[-126.55921628921335,56.19412883105344],[-126.55901717725719,56.19396392664062],[-126.55901422907628,56.193756718031835],[-126.55911766926341,56.193650973695966],[-126.55946649591881,56.193487027223625],[-126.55948414783954,56.19345110607368],[-126.55940930153197,56.193368545766994],[-126.55923593928695,56.19331105996782],[-126.55888152896947,56.193295811683264],[-126.55878979400259,56.19323124688428],[-126.55871143935377,56.19318454526702],[-126.55875027059624,56.193076844022436],[-126.55906693312414,56.19292200049416],[-126.5593615102597,56.1928467812717],[-126.55973358408124,56.19282722709025],[-126.56004355770632,56.192769860573456],[-126.56040199421373,56.192714520605065],[-126.56079108323688,56.19268592764041],[-126.56113083483294,56.19266539137079],[-126.56149567615155,56.192493528066564],[-126.56159836156488,56.192405706907564],[-126.56160086816388,56.19236985215686],[-126.56140884042743,56.19234829523869],[-126.5610384222581,56.192340964261085],[-126.56088018887468,56.1922834141791],[-126.5609369351187,56.19215883175462],[-126.56107755557039,56.19197227398913],[-126.56121239963497,56.191876470870206],[-126.56144742023059,56.191728701335826],[-126.56151941837611,56.19161301245184],[-126.56135020145527,56.191492784860685],[-126.56105015634868,56.19139665506758],[-126.56092261131487,56.191368093076264],[-126.56058863111802,56.191297874109885],[-126.56052656533475,56.19126118309192],[-126.56052907283876,56.191225328378444],[-126.56061294641233,56.191163353381945],[-126.56099417514862,56.191009341374325],[-126.56101182455971,56.19097342004823],[-126.56104031142524,56.19077727455864],[-126.56105362382205,56.19057895560205],[-126.56102458984284,56.190524197680894],[-126.56096163578535,56.190496471717964],[-126.56089496278277,56.190279462633995],[-126.56104193131459,56.190255293773525],[-126.5612927778931,56.190368441765926],[-126.56148466784973,56.190381038484404],[-126.56185595650925,56.19037940332292],[-126.5619212890491,56.190362313757575],[-126.56226606397009,56.190270064885496],[-126.56262108031152,56.19025953830875],[-126.56276968057303,56.190208477488504],[-126.5628085137939,56.190101895179936],[-126.56309029741843,56.189980799039404],[-126.56290883736442,56.18977997937367],[-126.5625555867096,56.18977257714015],[-126.56237544667482,56.18980585495011],[-126.56205186321067,56.18982632337063],[-126.56178500330314,56.18972220835979],[-126.56173183530416,56.189532023030175],[-126.56183538517435,56.18943523702113],[-126.5620542302699,56.18928641758099],[-126.56196638259264,56.18914118979911],[-126.56193113444093,56.18893412391237],[-126.56177643665144,56.188840715831624],[-126.56144325332735,56.188753694034624],[-126.56117879723824,56.18860476268286],[-126.5609142152494,56.18844687044029],[-126.56086989780371,56.18838209873063],[-126.56089034106311,56.188329363454194],[-126.56106771273643,56.188315141857636],[-126.56126549485498,56.18824706470679],[-126.5613213452376,56.18813032702079],[-126.56131350004483,56.18800490877227],[-126.56120875516122,56.18787655664856],[-126.56099512647693,56.18768371686956],[-126.56098225256424,56.187630008035484],[-126.56100002838947,56.187603047107075],[-126.56101707523693,56.18759513131873],[-126.56116314467705,56.18757992716591],[-126.56136093907169,56.18751184981581],[-126.56166257278181,56.1875799687579],[-126.56175856697187,56.18759074707734],[-126.5617756136612,56.18758283118759],[-126.56187487462617,56.18753982955958],[-126.56185074188942,56.18740440210225],[-126.56181386251114,56.1872242262523],[-126.56183339907243,56.18717933563144],[-126.56209651731984,56.187094167619485],[-126.56248293178287,56.187093583940396],[-126.56251697622352,56.18707551195323],[-126.56252514073336,56.18694106228529],[-126.56240601442123,56.186794852812234],[-126.562352991632,56.186614748347445],[-126.56240620262712,56.186526024714915],[-126.56256293727144,56.186339394539],[-126.56262237015214,56.186333531771695],[-126.56295272168428,56.186293989996166],[-126.56330944664234,56.18626441188712],[-126.56367510737745,56.186083577951095],[-126.56389492759287,56.185934751125785],[-126.56398056109221,56.18585596448657],[-126.56411938416309,56.18568733343193],[-126.56424558568776,56.18548291445319],[-126.56428289118715,56.18541106212802],[-126.60000015574035,56.173455435018724],[-126.60302344126039,56.17244314929009],[-126.60743870723385,56.16492751996414],[-126.60091615490299,56.15367672452053],[-126.60000012152531,56.153168033674326],[-126.59185857988156,56.148643936763506],[-126.59186445852556,56.14863270844461],[-126.60000042709856,56.13250555630207],[-126.60271189982407,56.127127500497686],[-126.62304240020434,56.12702964634746],[-126.62346546837942,56.127027575567055],[-126.62346292147578,56.12699398515591],[-126.62346691271495,56.12680130909979],[-126.62347549925104,56.12664333352955],[-126.62349474580232,56.12652338902878],[-126.62355248053943,56.126415577109505],[-126.62362052017231,56.126323396038515],[-126.62366659282469,56.12624252348677],[-126.62368287440768,56.12618979923794],[-126.62373313565536,56.126118987009896],[-126.62382829019091,56.12602107252814],[-126.62394758338337,56.12592079950187],[-126.62409313613799,56.12582487804103],[-126.6242097356996,56.12574589978985],[-126.62428438311278,56.12568840894408],[-126.62433713854543,56.12564894693037],[-126.62437192129839,56.12561853379221],[-126.6244225198556,56.12557012155505],[-126.62450183945771,56.1254902057583],[-126.62458413526372,56.125406915027206],[-126.6246723870664,56.1253191146416],[-126.62475480660723,56.125243663863316],[-126.62483909976062,56.1251603631695],[-126.62496197216528,56.12503206924905],[-126.62507880026548,56.12490380488553],[-126.62516195049112,56.12481154882952],[-126.62524925386059,56.12472711299339],[-126.62534363341594,56.12464376244003],[-126.62543901175535,56.124560406911115],[-126.62555014949703,56.12445457198039],[-126.6256856226481,56.12429597289317],[-126.62580310532628,56.124145302757405],[-126.6258611169065,56.12405653009564],[-126.6258698356143,56.1239713600078],[-126.62585897983098,56.12385828376511],[-126.62584078040913,56.12379116752008],[-126.62582796357805,56.12374530662287],[-126.62581883729106,56.12367814578054],[-126.6258182854088,56.123579580135605],[-126.6258174127895,56.12352469977269],[-126.62581921351686,56.12351124978257],[-126.62580259945247,56.123479968786214],[-126.62577511195381,56.123398336961074],[-126.62576541601457,56.123295335889516],[-126.62576714748101,56.123214680553346],[-126.62575096123321,56.1231464343244],[-126.62572181577983,56.12308721254257],[-126.62569072722795,56.123032480683555],[-126.62564042266895,56.122973362867064],[-126.62556623088253,56.12286843852134],[-126.6254652116682,56.12272332252866],[-126.62537850742041,56.12259157728815],[-126.62534194698117,56.122508869874544],[-126.62532346436107,56.12242383347714],[-126.62530052436395,56.122310816612895],[-126.62525772831621,56.1221530934932],[-126.62521167174783,56.1219808251567],[-126.62518167406247,56.121867842950465],[-126.62516866294328,56.12180966194517],[-126.62515750610177,56.121741390988184],[-126.62514809680498,56.121656310040414],[-126.62513825766725,56.12160707421423],[-126.625145674609,56.12156671441084],[-126.62517380698144,56.1214993706316],[-126.62519808683497,56.121442126611456],[-126.6252017596814,56.12141970669602],[-126.62519347112247,56.121405186176524],[-126.62512489821586,56.12133719716193],[-126.62495213560773,56.121176751804434],[-126.62472803719572,56.12101879833093],[-126.62454000014147,56.12091219189406],[-126.62444256761914,56.1208656258816],[-126.62440716561528,56.1208557186726],[-126.6243596617531,56.12084587080334],[-126.62430525806012,56.12084501750022],[-126.62422853728108,56.12083419275599],[-126.62413743234428,56.120805516986145],[-126.62405864716476,56.12072749664891],[-126.62398107924786,56.120600186188305],[-126.62385652171058,56.12049438773103],[-126.62367403014635,56.12041911549873],[-126.62352831062378,56.12037614562464],[-126.62343749108727,56.120365389461114],[-126.62337401418621,56.120363460100805],[-126.62332061025889,56.120362601485056],[-126.62327405151613,56.12034826821656],[-126.62322613906333,56.12031153969323],[-126.62311828365573,56.12024262185145],[-126.62296714943936,56.120176155889915],[-126.62286282053925,56.1201385831897],[-126.6227876904921,56.120100867572205],[-126.6227173755418,56.12004968724281],[-126.62265657588452,56.120026462664754],[-126.62258700366704,56.120021202447134],[-126.6225108589262,56.11998349163246],[-126.62243120512036,56.11991443532675],[-126.62237120851447,56.119877765573925],[-126.62233579180648,56.11986785787141],[-126.62230427806215,56.11984897033785],[-126.62228190891223,56.11983563856351],[-126.62225139428334,56.11981674613373],[-126.62216230738181,56.11978805911645],[-126.62204607343034,56.119762864961544],[-126.62198082139314,56.11971277959449],[-126.62197637459668,56.11962207380373],[-126.62198116076091,56.11954252383521],[-126.6219828741288,56.11952347388795],[-126.6219582867128,56.11943398659354],[-126.62190728296031,56.119328947048444],[-126.62186174930228,56.11925188308352],[-126.62183361163169,56.11919265561737],[-126.62183162176636,56.1191299401536],[-126.62186811567943,56.11908159791588],[-126.62196564367618,56.119007195370784],[-126.62209087444074,56.11890129479411],[-126.6221465107063,56.11885285893682],[-126.62219323266417,56.11881342736267],[-126.62231140449673,56.118707561070075],[-126.62242959180705,56.11860169459308],[-126.62252079162757,56.118509401086584],[-126.62260192017146,56.118417156770946],[-126.6227070057036,56.11831135411485],[-126.62288914921616,56.118174931868545],[-126.62307750958324,56.11804855976519],[-126.62325216147691,56.11794801661911],[-126.62344222814086,56.11786643931143],[-126.62359350544997,56.11781529422351],[-126.62369648022286,56.11776774588864],[-126.62381243043143,56.11771229324291],[-126.62395247886883,56.117652242011616],[-126.62408466569208,56.11760455018049],[-126.62420881345359,56.11755801772217],[-126.6243048164874,56.117514983446384],[-126.62434786173277,56.11749797095782],[-126.62438181757297,56.117479882943634],[-126.62444263615154,56.11744150149667],[-126.62450028157723,56.11739305475724],[-126.62452805275635,56.11736603630607],[-126.6246069430662,56.11732308575306],[-126.62474381748393,56.11725408848301],[-126.62488673207412,56.11718394132376],[-126.62511493509827,56.117094333655736],[-126.6254346636646,56.116997555388345],[-126.62570371587094,56.11694358890866],[-126.62584030030517,56.11691939556593],[-126.62595681489859,56.11689978113259],[-126.62611131206911,56.116862058310595],[-126.62623169417877,56.1168323437729],[-126.62641426326556,56.11678664183818],[-126.62667894575283,56.11671141303798],[-126.62688835516592,56.11664317644194],[-126.62703579311443,56.11660548725523],[-126.62718820264442,56.11656329303365],[-126.627403884654,56.11650958587969],[-126.62761974638525,56.116468198487105],[-126.62771617165672,56.11645204175683],[-126.62775244274049,56.11645298299034],[-126.62780159898317,56.116440419561386],[-126.6278706832478,56.11641543681009],[-126.62793962274615,56.11638037390492],[-126.6279836641555,56.116363355266465],[-126.62801863418929,56.11634638136587],[-126.62804561766495,56.116332807135265],[-126.62807354648794,56.116315867957994],[-126.62813844140057,56.11628082490008],[-126.62822128221578,56.11623337223223],[-126.62828899149295,56.11618487410156],[-126.6283785154885,56.11611498650146],[-126.62853113382421,56.11602350557575],[-126.62864828390482,56.11598036359215],[-126.6286835394983,56.11598130957306],[-126.62873750724789,56.1159552809115],[-126.62878111849069,56.115911381907964],[-126.62878746010354,56.11586654689684],[-126.62879113038564,56.11584412692422],[-126.6288527114681,56.11585390355624],[-126.6289970631883,56.11587447212472],[-126.62917148423016,56.115887051269894],[-126.62925826692312,56.11589782323694],[-126.62932000385429,56.115853834446064],[-126.62940018366129,56.115766070842575],[-126.62943571992676,56.1157210914461],[-126.62949061414263,56.11569057751382],[-126.62960145141265,56.11563066448255],[-126.6296553464181,56.115600155421],[-126.62960273882763,56.115459284017035],[-126.6292358978204,56.115128430551394],[-126.62866035107874,56.11471796039297],[-126.62833556394307,56.114307370304],[-126.62816762959919,56.114070739770135],[-126.62800437154144,56.113999859479044],[-126.62779037442134,56.113905707318764],[-126.62750034618655,56.113779446994236],[-126.6272797390791,56.113712208765165],[-126.62703724713671,56.11366187933165],[-126.62678628999568,56.11358582903195],[-126.62667871420918,56.113533714424506],[-126.62661597966708,56.1135149817207],[-126.62649653468706,56.113476366481464],[-126.62629328893303,56.11342360229699],[-126.6260061912312,56.11335444883961],[-126.62568564342357,56.113272018080615],[-126.62536007025963,56.113189611212945],[-126.6250057139566,56.11313310693562],[-126.62465062799694,56.11309452670561],[-126.62440972831546,56.11308114748248],[-126.6243281380447,56.11307930751362],[-126.62432475391783,56.11305692230442],[-126.62432685922363,56.112998667279435],[-126.62430357665714,56.11280052548957],[-126.62426191722044,56.1123325321193],[-126.62419020061385,56.111747076788255],[-126.62407421041556,56.111290648939615],[-126.62396200849412,56.111010056547215],[-126.62386584240451,56.11078763014126],[-126.62374271769883,56.11051605187324],[-126.62360801266296,56.110212047675915],[-126.62353091424886,56.11004889239498],[-126.62351222299581,56.11001314111228],[-126.62346308304272,56.10989913275321],[-126.6234160184651,56.10966078435108],[-126.62344914411344,56.10946348646373],[-126.62351023893069,56.10937918052742],[-126.62358715929108,56.1092768756079],[-126.62366913215102,56.10904909595618],[-126.62365343096137,56.10882067482213],[-126.62356359676677,56.108616138789735],[-126.62345867476333,56.108348951676895],[-126.62343492455186,56.108056724982916],[-126.62346540230854,56.10775639206637],[-126.62344140009394,56.10751233045544],[-126.62335907472158,56.10727303489032],[-126.62327403785403,56.10686237915656],[-126.62324486087807,56.10629127738716],[-126.62324892185582,56.10565728808178],[-126.62325875724558,56.10500646933946],[-126.62326729227415,56.1043366156455],[-126.62334070114734,56.10369556660976],[-126.6235124824086,56.10322652899138],[-126.62372955607744,56.102947683850836],[-126.62392180157443,56.102754086627215],[-126.62409268222126,56.1025460327798],[-126.62425776327193,56.10216327375595],[-126.62433920095908,56.10158490996363],[-126.62441149741267,56.10100211074375],[-126.62456821389172,56.100600351080196],[-126.62468849985282,56.10044070852103],[-126.62482137614516,56.10037621127512],[-126.62507622293298,56.10032231564888],[-126.62544040658732,56.1003070851364],[-126.62582839272861,56.10033317967574],[-126.62613387023671,56.10036079913702],[-126.62634852256093,56.10024885428605],[-126.62642409859245,56.09999982330718],[-126.6264327046759,56.09997177880742],[-126.62642990767375,56.09979593919047],[-126.62642310118262,56.09968396417786],[-126.6264072816371,56.09951266902829],[-126.6264021143563,56.099377164171074],[-126.62641089768844,56.099296474809236],[-126.62643019229301,56.099243735827024],[-126.62647434073716,56.09917183303507],[-126.62653190249736,56.09905618087134],[-126.62661880725322,56.0989504649508],[-126.62676539495344,56.09886349644809],[-126.62687702709614,56.09879350126654],[-126.62693644144565,56.098731603873134],[-126.62698960216449,56.09865629624918],[-126.62700916314779,56.09862035714593],[-126.62701578929492,56.09859344245845],[-126.62704226338163,56.09854962869092],[-126.62708874235152,56.09849675565125],[-126.62715923576317,56.09830935406294],[-126.62721650608074,56.097986487387004],[-126.62723666838313,56.097798213790725],[-126.62723832475118,56.09777580393511],[-126.62717575772692,56.09776603158797],[-126.62695860906636,56.09772117828339],[-126.62669558590089,56.09763958778125],[-126.62664892744101,56.09749084636225],[-126.62681141689552,56.097327633776736],[-126.62694239100912,56.09720825956228],[-126.62691484817199,56.097122148786276],[-126.62670787442025,56.09702012065832],[-126.62639458313336,56.09694213741866],[-126.62609085845872,56.09689546869405],[-126.62586135267333,56.09683275302246],[-126.6257489416203,56.09678962263504],[-126.62565874733765,56.09675198332538],[-126.62552779229051,56.09668206191884],[-126.62544221229986,56.09661751776299],[-126.62543970124806,56.09658616776017],[-126.62541287352369,56.09654485653184],[-126.62530010982863,56.09648044590148],[-126.62520884709643,56.096438331198776],[-126.62517231005793,56.09641946930628],[-126.62509004324299,56.09637282998431],[-126.62495886110008,56.09628946812549],[-126.62487759327496,56.09624282376407],[-126.62482495230184,56.09622404086353],[-126.62474900965488,56.09619529160792],[-126.62468910197373,56.09616310333084],[-126.62465853347753,56.09613973165689],[-126.62463719156285,56.0961263954314],[-126.62461079127691,56.09611196395123],[-126.62461043604058,56.09608956402576],[-126.62467925570532,56.096050023241304],[-126.62475841064477,56.09589954341093],[-126.62475663953056,56.09566097435195],[-126.62472363564409,56.09554800799592],[-126.62470147488203,56.09554699672188],[-126.62448501442219,56.09554357900602],[-126.62409037773993,56.09553991493724],[-126.62389504581402,56.09553639257866],[-126.62385218740614,56.095499639987544],[-126.62376869667506,56.09543956484799],[-126.62366406173639,56.0953795933022],[-126.62349736528817,56.09527736266545],[-126.62333355542813,56.09516615701319],[-126.62324898076368,56.09510160652608],[-126.62316601016803,56.09501016614126],[-126.62305584539597,56.094855014163954],[-126.6229181603641,56.09467759519323],[-126.62273529956907,56.09450711771082],[-126.62251654539094,56.0943592172605],[-126.62230851065767,56.09425158698483],[-126.62215339860012,56.094181780394685],[-126.62204085767014,56.094129686806276],[-126.62195975692649,56.09409312058017],[-126.62187769486911,56.094059919249034],[-126.62179988707057,56.09404013806137],[-126.62175248691885,56.09403476929951],[-126.62170524430957,56.094038360408],[-126.62162763264953,56.0940320191438],[-126.62148115594469,56.093998012187164],[-126.62125750115078,56.09392181882935],[-126.62107965798391,56.09387788383665],[-126.62100803095575,56.093867032653485],[-126.62096877106482,56.09386722427833],[-126.62094855363289,56.0938617225432],[-126.62090275910053,56.093829463661464],[-126.62079282614418,56.09375159437544],[-126.6207042152197,56.09368594187765],[-126.62067065735403,56.093663703953894],[-126.620657335995,56.09364920787579],[-126.62062766281281,56.09361799033494],[-126.62056739185947,56.09356228023556],[-126.62051750161487,56.09352556087182],[-126.62048068723331,56.09348877771933],[-126.6204296415303,56.093443103303635],[-126.62034493421002,56.093369590960634],[-126.62023477437023,56.093277161260936],[-126.62017446769396,56.093218090916594],[-126.62015899271564,56.09319464463495],[-126.62011384534088,56.09313998069635],[-126.62001421901739,56.09301277694761],[-126.6199596006441,56.09293239723989],[-126.6199142775783,56.092866533279604],[-126.61987065026472,56.09278049957692],[-126.61984570283201,56.09273021745997],[-126.619797051739,56.092644208214],[-126.61972265070293,56.09252136170286],[-126.61963151314123,56.09235827374573],[-126.61954237154801,56.09219405593551],[-126.61948179770795,56.092054340758594],[-126.6194681651349,56.09189199538231],[-126.61948741735475,56.091708208351235],[-126.61950861173167,56.09151993154759],[-126.61953873056882,56.091322650645125],[-126.61958968304238,56.091171191595755],[-126.61962329386131,56.09106798046802],[-126.61962662642786,56.090960436487975],[-126.61959423281911,56.09082058417695],[-126.61950987057476,56.09063954196734],[-126.6194338785978,56.090479740490764],[-126.61945535997592,56.09037322825031],[-126.61954123253504,56.09026640244152],[-126.6196218870747,56.09014728110769],[-126.61970728144057,56.09000909527091],[-126.61978426196337,56.08991239334334],[-126.61982293788397,56.0898763623412],[-126.61985826786692,56.089819066105505],[-126.61992173248628,56.08969442794821],[-126.61999121868901,56.08956976041624],[-126.62003827173059,56.089490005396854],[-126.62010424159378,56.08939671719082],[-126.62020781882282,56.089264042805205],[-126.62025669204823,56.08904426883144],[-126.62020037755066,56.088791405327214],[-126.6201469999819,56.088660616206624],[-126.62013348656454,56.08863380016718],[-126.62012527729561,56.0886237594675],[-126.62010387046618,56.08860594254253],[-126.6200904276166,56.0885836064745],[-126.62009999719676,56.088552197592826],[-126.62007921846731,56.08851085592736],[-126.62001416171734,56.08846973007498],[-126.61997261101145,56.08845089122798],[-126.61995628076617,56.08843640977774],[-126.61993601338641,56.08842754791104],[-126.61989351889072,56.08841319395715],[-126.61985296656938,56.08839435020692],[-126.6198689266649,56.08838531180008],[-126.62000765095964,56.08831183056888],[-126.62003868151317,56.088172789448436],[-126.61974668635042,56.08810028709257],[-126.61950386852155,56.08801858395492],[-126.61942244105072,56.08789577173867],[-126.61934631928119,56.08779085491604],[-126.61928939759501,56.08769144497965],[-126.61926452455093,56.087645642815396],[-126.61924182260789,56.087609910792125],[-126.61913320119044,56.08748611071437],[-126.61894729284641,56.08731116298918],[-126.6188058959828,56.08721440402247],[-126.61875010232706,56.087186673446794],[-126.61868014889589,56.08715341132047],[-126.61856850776934,56.08709346998372],[-126.61842728991807,56.08700903060978],[-126.61825822564539,56.08688104335423],[-126.61812970733102,56.08670693563579],[-126.61809294600396,56.08654470284965],[-126.61808970827619,56.08653127763763],[-126.61813023187763,56.08642019293648],[-126.61820229648299,56.08639520099706],[-126.61825535544911,56.08637702186415],[-126.6184241268973,56.086358280203655],[-126.61856570338314,56.086338550486694],[-126.61866113076114,56.08632688561943],[-126.61878961603439,56.08630609924277],[-126.61899749998682,56.086279325996834],[-126.61920940720549,56.086251412746705],[-126.61939198359373,56.086214681336735],[-126.61962231409544,56.08614299461451],[-126.61996510914061,56.085992353876335],[-126.6202707311738,56.08584525371689],[-126.62037752640539,56.08578872897383],[-126.62037731476354,56.08577528906153],[-126.62030607666085,56.08566138845326],[-126.62015614965686,56.08547058605497],[-126.62007110590152,56.08537355381856],[-126.62006793810723,56.085364608632695],[-126.62014596647039,56.085335106200375],[-126.62032401900223,56.08526703329703],[-126.62047898845799,56.08520243297966],[-126.62079997025609,56.08507317788082],[-126.62141046869381,56.08486074218039],[-126.62193654400068,56.08465543682034],[-126.62228323012054,56.08436924129337],[-126.62256024477603,56.08406882483282],[-126.62294630302975,56.08391908434876],[-126.62354164389761,56.08383216137196],[-126.62398197271861,56.083741515822126],[-126.62433833348241,56.083623278967714],[-126.62473415837272,56.08345556383229],[-126.624892786297,56.08330581418478],[-126.62489451947427,56.083161315567445],[-126.62489073406581,56.08298660195808],[-126.62487284110276,56.082873561966935],[-126.62485912939775,56.08283330651552],[-126.62485489154408,56.08281988639709],[-126.62486164251041,56.08280193198132],[-126.62486344170287,56.08278848220482],[-126.6248737411761,56.08261257934455],[-126.62489947252143,56.0822047445418],[-126.6249120975891,56.08179585410828],[-126.6249174709997,56.08143628277577],[-126.62492377133762,56.08107222662474],[-126.62492618425983,56.08084371897834],[-126.62492950640409,56.080609606496516],[-126.62493668182461,56.08017386121654],[-126.62494205806071,56.0797515657671],[-126.62492972499145,56.07954441214492],[-126.62481551541295,56.07944864667663],[-126.62461989412856,56.07935888135534],[-126.62447678772261,56.07921733436957],[-126.62435517975489,56.07897151457707],[-126.62425004469378,56.0787502555236],[-126.62419793143766,56.07863626351437],[-126.62416121910687,56.078541237204306],[-126.62411845447728,56.07844624058926],[-126.62408841748258,56.078391504252686],[-126.62401526167466,56.078219371484074],[-126.62389397925206,56.077740573957584],[-126.62386157093934,56.077218777586864],[-126.6239540742321,56.076896862044116],[-126.62405116461473,56.07667461067827],[-126.62408669709401,56.07650418482888],[-126.62407470354334,56.07638215545806],[-126.62404869691173,56.07626467515843],[-126.62402048332972,56.07613488485962],[-126.62397398457172,56.07599398352767],[-126.62391758577347,56.07586321143624],[-126.62386173702144,56.07576715895966],[-126.62379892719508,56.0756767409849],[-126.62372274646776,56.07556734728746],[-126.62363097039206,56.07542554785507],[-126.62361861497008,56.07540768724485],[-126.62352604379477,56.07521660835077],[-126.62348569403741,56.075018552933464],[-126.62347853366985,56.07482033480137],[-126.6234751097378,56.07466802142612],[-126.62347750336926,56.07456496282075],[-126.62349845124994,56.07442597086081],[-126.62353289920279,56.074251070323626],[-126.62355391760877,56.07411655832037],[-126.62355536241277,56.074080708852456],[-126.62347675549124,56.07267316103775],[-126.62223111260882,56.06934592498821],[-126.62258794190014,56.067354930291835],[-126.62622492786303,56.064810187169286],[-126.62842663675785,56.062541260012146],[-126.6249460337619,56.05875018210431],[-126.62294231373738,56.057191922072384],[-126.62288845302318,56.0553104728806],[-126.62606756788556,56.054649694820306],[-126.6324205986131,56.05377595195463],[-126.63684661651058,56.052329125422204],[-126.63946601124321,56.049547166068116],[-126.64314272321312,56.04529027993412],[-126.64605729251153,56.042909916038994],[-126.64938599566183,56.04042880378849],[-126.64825231025843,56.03670701964894],[-126.64767398073184,56.035213565087986],[-126.64904612435456,56.03339654114057],[-126.6556969872982,56.032538020054446],[-126.66137647214875,56.03405874603939],[-126.66606115502584,56.034374770122746],[-126.6714874005819,56.03367416485712],[-126.67085414763764,56.0302993947745],[-126.66947964499367,56.028003795665974],[-126.67104529490639,56.02647224798398],[-126.67789125599154,56.02595202666962],[-126.68504955762853,56.02525950139579],[-126.6862755237416,56.02520808036601],[-126.68919772443218,56.02666178276112],[-126.69345269163502,56.02806334788733],[-126.70151168771287,56.02811766001623],[-126.70969587479571,56.0270865345028],[-126.7153253216906,56.026382913119036],[-126.71536261459353,56.02467123711799],[-126.7160156709661,56.022785841568286],[-126.72408836907857,56.02227412292056],[-126.73201377045503,56.02358173438976],[-126.73383832227184,56.0242253268803],[-126.73873705552984,56.02870410306643],[-126.74081202137494,56.031747583536],[-126.74084029018869,56.035179333113064],[-126.74152728802311,56.03638500868975],[-126.7399543006678,56.038311753467475],[-126.74090315875742,56.04157685433884],[-126.74237532668819,56.044328139523486],[-126.74280804024902,56.04787402955818],[-126.74929432490232,56.04996858997327],[-126.75176733144178,56.04884286139267],[-126.7551359422705,56.048921456935446],[-126.75830958289812,56.04848140722469],[-126.75602926712334,56.045278111786814],[-126.75517125006739,56.04252332947039],[-126.7547356768328,56.03904022339085],[-126.75540142816087,56.03664377460877],[-126.76139250360052,56.03314024122324],[-126.76609690913467,56.02786102411207],[-126.76608061410813,56.02386468454678],[-126.76968026259352,56.02240026075974],[-126.7743592834443,56.023115548991896],[-126.77912862354152,56.024224379958184],[-126.7812864504899,56.023440509212115],[-126.78131827437782,56.02195284811297],[-126.78245881997046,56.02104976281109],[-126.78614763450996,56.02022052387901],[-126.79247267146252,56.02019913209144],[-126.79903003902244,56.01875122031983],[-126.80475997097916,56.01793545994719],[-126.80905367142695,56.01744222176182],[-126.81289470709442,56.01912021746837],[-126.81743407084434,56.0216090289421],[-126.82339783751439,56.024437924398065],[-126.82698752297419,56.028635096121704],[-126.82906337611699,56.03201767894495],[-126.8307307199644,56.035456670507166],[-126.83412807503863,56.039126240307915],[-126.8386785887429,56.04121102515193],[-126.84329287375051,56.04540997508067],[-126.84649511309635,56.048793788858596],[-126.84867373593536,56.0522918989125],[-126.85176704769778,56.05607955978507],[-126.85671669469549,56.05890480598163],[-126.85992363615554,56.061894002375276],[-126.86027399776559,56.06509066469236],[-126.86066505949633,56.06600202798251],[-126.86378377483854,56.068597458053596],[-126.8652560623027,56.07174168575756],[-126.86592661530926,56.0741476071239],[-126.8657513226232,56.078028881055324],[-126.86614182230878,56.07894919817381],[-126.8646722498109,56.081217354053315],[-126.8652169938398,56.0847621839695],[-126.86541446776074,56.08504759102138],[-126.87032043880234,56.09056095725928],[-126.87361214322158,56.09480382611915],[-126.87466795872238,56.09847058384989],[-126.8754927213679,56.10355477107556],[-126.87973037740159,56.10666191026144],[-126.88662751572828,56.109607040619046],[-126.888545223761,56.110875100046954],[-126.89256933767746,56.114610599578135],[-126.89474159752973,56.118905639262216],[-126.89579865028186,56.122688758236805],[-126.89867045670864,56.127892862683716],[-126.90167649469807,56.13140230725146],[-126.90329681438614,56.13237655234313],[-126.90454465844873,56.136955818211085],[-126.90761974456754,56.14240027321754],[-126.91227934934673,56.14498366311183],[-126.91878308397393,56.14765217649498],[-126.9222088417758,56.15069217320206],[-126.92368629681948,56.15406883011269],[-126.92840873724937,56.15912452147325],[-126.92993611242342,56.159758598451546],[-126.93145547212451,56.16056298112321],[-126.9388213938641,56.16083153681996],[-126.94340768324506,56.16211498333016],[-126.94600636855374,56.16589533062157],[-126.94955167585843,56.16813619153347],[-126.95576557907475,56.169944753504836],[-126.95912733872248,56.17115617403183],[-126.96556034111873,56.17215609194984],[-126.9709109516459,56.17064577846454],[-126.97299628535431,56.168308871786394],[-126.9758521229122,56.166593332547656],[-126.9773366383608,56.165703739735385],[-126.98278035624254,56.16470300807385],[-126.98356201317497,56.16047615551112],[-126.98363028859927,56.15619208299295],[-126.98779290533312,56.151930107897925],[-126.99543301551502,56.147622948942136],[-127.0006957202999,56.14461550129055],[-127.00401742452206,56.141443920480924],[-127.0063230419146,56.137966637243956],[-127.00632715868748,56.137733609283046],[-127.00612845054938,56.137331917921536],[-127.00628408873953,56.13396121871943],[-127.00868531974479,56.130662368707924],[-127.01025728469607,56.12815865416897],[-127.00849202337294,56.12300196284528],[-127.00610370897192,56.118710470926366],[-127.00090646580605,56.117604395544674],[-126.9976675359996,56.11530885068397],[-126.99617617769006,56.112730725207776],[-126.99526880773935,56.11181481397461],[-126.99469174835568,56.109462515957034],[-126.99423706128661,56.105693386585294],[-126.99344612070091,56.10391627873755],[-126.99412006956595,56.10010249632224],[-126.99642637940858,56.09627594093982],[-126.99747103812074,56.09491461296861],[-127.00149552524779,56.09230216884727],[-127.00552216910212,56.0895193158019],[-127.00568983114727,56.085127004942684],[-127.00350082755993,56.08140748276384],[-127.00150798736713,56.07802691038991],[-127.00019974510255,56.07671095572138],[-126.99601907696913,56.07634947849839],[-126.99112137052474,56.07603826073295],[-126.9884961352713,56.074024519215506],[-126.98425453281892,56.07080453874697],[-126.98040566127713,56.06890763913916],[-126.97666710329909,56.06637354327011],[-126.97254175403572,56.06253398837159],[-126.9698303106058,56.05959755724845],[-126.96834696660443,56.05657107474972],[-126.96677787531118,56.052622247345916],[-126.96387667623773,56.04895234919096],[-126.96187398035032,56.04648532853114],[-126.9605901179423,56.043968043162046],[-126.95900602437975,56.040879512802505],[-126.95741069627378,56.038642343282355],[-126.95518606021311,56.03743143802972],[-126.95224511911204,56.03627067124668],[-126.94952080120704,56.03437342282378],[-126.946491566991,56.03253215699723],[-126.94254028699758,56.030742471913904],[-126.93817222037788,56.02958300951759],[-126.93513141729089,56.02835986908974],[-126.93331663871339,56.0272172632909],[-126.93467911712399,56.025047671980694],[-126.93697128383702,56.022261871453225],[-126.93539869485421,56.01865327510117],[-126.93399896000763,56.01698789851122],[-126.93178376556706,56.015328495079466],[-126.93021770354791,56.01149577985165],[-126.92830758398473,56.00976240001316],[-126.92477033579775,56.00797813122514],[-126.92234257838938,56.00676816293932],[-126.92056470154358,56.00361790755975],[-126.91977450902856,56.00207341978249],[-126.91720360080627,56.00004000534153],[-126.91391082390021,55.9956998664979],[-126.91329270401762,55.994154106133266],[-126.91328860401931,55.99180642020541],[-126.91827731346488,55.99055175677921],[-126.91899075268907,55.99049282748419],[-126.9236756745884,55.989741951797924],[-126.93039896892752,55.9884204051951],[-126.93538722886686,55.987102341383405],[-126.94180046723797,55.98544196173877],[-126.95137679373514,55.98451924202552],[-126.95871019399435,55.984338589375675],[-126.9612579668612,55.98422074313886],[-126.95717383172239,55.98170675620877],[-126.9498278842772,55.97909165709659],[-126.93922383590979,55.97738742103921],[-126.93443502576147,55.97647294924164],[-126.9223010716992,55.97339862262633],[-126.91333178080961,55.97066779022376],[-126.9083316209909,55.96861586208432],[-126.90160654430719,55.96758857037001],[-126.89070721396932,55.9665723898353],[-126.88541003015168,55.96542668123684],[-126.87674759592929,55.96280764439006],[-126.87082892349953,55.95800075165331],[-126.86633982934805,55.95126628018112],[-126.87131302940853,55.94137559639876],[-126.87283458313672,55.94039738934935],[-126.89541418669319,55.93307142687355],[-126.89927572833311,55.93135053655902],[-126.90201395612429,55.927639327488876],[-126.90943814052106,55.92632281546877],[-126.91624922229458,55.92408736364043],[-126.91816905900609,55.920310031125034],[-126.9165296773372,55.91642406796971],[-126.91387758455916,55.91362066480969],[-126.90714987496939,55.90757588770713],[-126.90510623879216,55.904427458355904],[-126.90255538670947,55.90089731767804],[-126.89746326663952,55.898263297547025],[-126.89359491691657,55.895638368058044],[-126.88880424446455,55.89089618431855],[-126.88717281405052,55.88780732502359],[-126.88645363970393,55.88466726093278],[-126.88583626284127,55.880388514024524],[-126.88481044185404,55.87673089327813],[-126.88094346613877,55.873765110684005],[-126.87646524537794,55.87056152294382],[-126.87432703008751,55.86764628526061],[-126.87289719079135,55.86330143758007],[-126.87167406542979,55.86101602963261],[-126.86729936390716,55.85718420939971],[-126.86333256397259,55.85421861172827],[-126.86190821453938,55.85193449448654],[-126.858853807244,55.846390948227466],[-126.8554959045984,55.84296401481788],[-126.85153603837702,55.84067900555856],[-126.84899529783192,55.83930725759947],[-126.84523723292382,55.83754039557597],[-126.84361065560053,55.83554417271821],[-126.84167746321434,55.83120240018723],[-126.83923809479454,55.82857536416341],[-126.83111855136003,55.82776884314185],[-126.82208459394444,55.826627268255464],[-126.8182275120303,55.825370997769994],[-126.81112452465406,55.82171625125594],[-126.80696155869195,55.81702988180886],[-126.80280077705322,55.812056650384896],[-126.79945553127546,55.81006184394329],[-126.79874454218626,55.809940900233485],[-126.78840001775292,55.806511457798344],[-126.77937180923897,55.80428267277856],[-126.77024395949665,55.8027348198287],[-126.76324757095323,55.800958409031864],[-126.75605183737892,55.79775816898667],[-126.7513892787586,55.79432744130394],[-126.74672911927225,55.791299733753874],[-126.74480566024224,55.78860518496763],[-126.74419994773997,55.78666444573564],[-126.74420308706135,55.78560715259709],[-126.74420319965648,55.78529355358022],[-126.7443034703058,55.784728485492394],[-126.74491347089864,55.783121056580434],[-126.74765909989301,55.77889365041497],[-126.74887931357605,55.77523972154792],[-126.74898040485947,55.77324105647896],[-126.74807822488546,55.76695654100403],[-126.7477806049422,55.76186011616143],[-126.74768300490722,55.75752410323324],[-126.74758513514095,55.75529367009742],[-126.74738508184177,55.752723368030225],[-126.74698566211178,55.74803971768242],[-126.74587610299648,55.7450626478187],[-126.74101857928851,55.74122958398368],[-126.73363128605892,55.73836978762343],[-126.72553751106801,55.73521795977745],[-126.71856028733951,55.730697374189496],[-126.709963872012,55.727556391940325],[-126.69843073987181,55.72388459344283],[-126.69216551719315,55.721195387629756],[-126.68457990387184,55.718844565343154],[-126.68387203656152,55.71849897863298],[-126.67942710415885,55.716041175047415],[-126.67599703116707,55.7122607024082],[-126.67358193909301,55.70763251039748],[-126.67065820673034,55.704368860273185],[-126.66641177748672,55.70380005315333],[-126.6605392704307,55.70493301698401],[-126.65578069024211,55.70630182415733],[-126.64688620694949,55.704116847136326],[-126.64366245429518,55.70051365967739],[-126.63678895340794,55.69901649196125],[-126.63244634545178,55.69747043310618],[-126.63124685049374,55.69403595524335],[-126.63025083235695,55.69003599634379],[-126.62854336692561,55.687464163151255],[-126.62814541872402,55.686489552271276],[-126.62360673871977,55.68344792810904],[-126.61865740386797,55.68207464542492],[-126.61532589390731,55.68081870911161],[-126.613314874085,55.678239204932034],[-126.61009554026867,55.6754325837538],[-126.6037361479945,55.673250230474196],[-126.59828048767855,55.67238032057332],[-126.59514905820417,55.672153255328695],[-126.59292780335262,55.67192182900416],[-126.58879546527113,55.669396718506654],[-126.58446576349206,55.66607499623027],[-126.58053520006833,55.66413105364904],[-126.57538108447059,55.663885934853255],[-126.57154988555484,55.66250570920965],[-126.56902731088567,55.66204228602651],[-126.56114708814972,55.66105628511333],[-126.55700143025008,55.661907931175584],[-126.55294493538534,55.664246320987644],[-126.54767616366665,55.66629419677417],[-126.53857600110885,55.6673010837323],[-126.5324101260591,55.667282515889376],[-126.53129552097198,55.667627684643875],[-126.53119455507033,55.66722493503994],[-126.52961600648187,55.661963427981036],[-126.52813817724349,55.65630727099734],[-126.52795413394583,55.6531632824198],[-126.52737075586587,55.650074726673914],[-126.5236538708982,55.64686486015889],[-126.51557994606672,55.646047061537246],[-126.51093452073188,55.64575243346774],[-126.50740285883604,55.64522916239256],[-126.49590933980168,55.64194210090648],[-126.49046642833288,55.64067328936015],[-126.48188663636614,55.63990906472105],[-126.47986907753356,55.639612158968774],[-126.4751318334334,55.6384564653819],[-126.47102160561388,55.63485234670632],[-126.47267689173523,55.62988266201215],[-126.47765770721838,55.62555440217505],[-126.48071928280395,55.62167230414811],[-126.4812428989751,55.61899146250445],[-126.47807581430385,55.61115518537918],[-126.46864154799613,55.604892327483945],[-126.45868437174187,55.600700281529946],[-126.45758131877916,55.59995172384656],[-126.4467389768522,55.593808847251346],[-126.43930370402369,55.590296161734734],[-126.43095616453483,55.587762731705624],[-126.42843765525924,55.587359221266766],[-126.4195776253772,55.58566895415598],[-126.41111719168187,55.58420969750884],[-126.40568476595615,55.58282972294647],[-126.40600453298272,55.58105476822238],[-126.40503446565583,55.57710689512981],[-126.4028494567854,55.57372734971849],[-126.40065839360027,55.571091400648],[-126.40029349737813,55.5670967724373],[-126.40266276406439,55.56201830764057],[-126.40337729310717,55.56098571011619],[-126.4036237528745,55.556191767512544],[-126.3990362048423,55.551314738574085],[-126.39342637761413,55.54816091237305],[-126.39062033989364,55.54648536000599],[-126.3875445537816,55.5418451093204],[-126.38628238099913,55.53727089191578],[-126.39155830769806,55.5334110786418],[-126.39821751040157,55.53234190267614],[-126.40509058041785,55.52979342767777],[-126.40845027501756,55.52608241947249],[-126.41040826959721,55.52157855527391],[-126.4113305770006,55.51981059003921],[-126.4091793522523,55.51317893478718],[-126.40573149687155,55.505162797433286],[-126.40137502665551,55.49766015959937],[-126.40009166389487,55.4951467657711],[-126.39701917736556,55.49045303135284],[-126.39353491123119,55.48654891701123],[-126.38752976370739,55.48344988609216],[-126.37648505240065,55.481414021435576],[-126.36705702050529,55.478745330477274],[-126.36094253981024,55.476899620154676],[-126.35624931965346,55.473571344818566],[-126.35612184626342,55.46670911610791],[-126.3570014265252,55.45991569958737],[-126.3580382321912,55.45700107059876],[-126.35831123515572,55.450433360457346],[-126.35507897150532,55.44241533677319],[-126.35124572979026,55.43457810944231],[-126.34710065700091,55.4278167150892],[-126.34442299152111,55.424554103506395],[-126.34088172299145,55.417790854664354],[-126.33581202914824,55.413378862182334],[-126.32730307682577,55.410713744117416],[-126.31691068621012,55.40667316794467],[-126.3127190215942,55.404488791068964],[-126.30745294594779,55.399896982567064],[-126.30079545657156,55.39409886558793],[-126.29541024425457,55.39121799190279],[-126.28669684291015,55.38976006541925],[-126.28329169361648,55.38911383154551],[-126.27311123739044,55.38495270491725],[-126.26613906334292,55.38081084221466],[-126.25903689396606,55.37912358482996],[-126.25273486334923,55.37772099242898],[-126.24280547105329,55.37745399496218],[-126.23447893230295,55.37741614124954],[-126.2316753891117,55.37688384060951],[-126.23303771831844,55.37266170554655],[-126.24208380998907,55.3713902742755],[-126.24921667589196,55.37056099975866],[-126.25377400997755,55.36744311737099],[-126.25545778860277,55.361508950885835],[-126.25708506479664,55.35963322122604],[-126.25842641226004,55.35695176952732],[-126.2620751963053,55.35393400793996],[-126.26671714801407,55.35149634508533],[-126.27156807987953,55.35637740287333],[-126.27609998084073,55.362970118047876],[-126.27966689161978,55.36617840301623],[-126.28587104975635,55.36769632219908],[-126.29489628988013,55.36772910028482],[-126.2990094949101,55.36745951847515],[-126.30696619972701,55.36514676041777],[-126.31171169887885,55.36248319368417],[-126.31473792110359,55.36078238532992],[-126.3191529933273,55.36068159563139],[-126.3381066217918,55.36075716037307],[-126.35972172899356,55.36528373195697],[-126.37010557442264,55.369840351414844],[-126.3942719987165,55.3809471510248],[-126.39887164132298,55.382796011765414],[-126.40960334918779,55.38345114226727],[-126.41856253859662,55.38011561694338],[-126.41982041209437,55.37410891687057],[-126.4074621854034,55.36538800819727],[-126.39299179439755,55.357855139586654],[-126.38521861770703,55.35320281703035],[-126.37415266403224,55.34693837247711],[-126.36727914591775,55.342452471453974],[-126.36379135828543,55.34067091106889],[-126.36260224586447,55.33935741904388],[-126.36875392999458,55.335487096761256],[-126.37548819475083,55.33385443119613],[-126.37880576429163,55.332778305341854],[-126.3766371297657,55.329174450383135],[-126.37003960794605,55.3276622201536],[-126.36355894574798,55.324608382822774],[-126.3629576012356,55.324377203264596],[-126.35550032747963,55.31915775212475],[-126.34875844986418,55.31244870285573],[-126.3463038879192,55.307976133710376],[-126.34323608554274,55.30453547098981],[-126.3422784029016,55.300649982086945],[-126.33882703401224,55.295723107881706],[-126.33205344217308,55.29295514163278],[-126.3261727894438,55.29047115945175],[-126.32130340095364,55.287312392647955],[-126.31662976294618,55.28449337498648],[-126.314937649276,55.283521154335276],[-126.31597759626358,55.28032024257631],[-126.3162257879222,55.27614482804078],[-126.3173726084189,55.27215526368547],[-126.31918911842293,55.27084264608985],[-126.32341088471169,55.26926398007205],[-126.32364326275761,55.26628906764535],[-126.31978647643531,55.2622765407179],[-126.31642423919133,55.25888975553275],[-126.30282139261769,55.25032316279331],[-126.29069473694966,55.24427802930826],[-126.28373185893098,55.24132874628285],[-126.27696351425652,55.23872803453207],[-126.27189830775372,55.23614116821601],[-126.26675516179733,55.23165501871788],[-126.2636104713609,55.227478000404986],[-126.25848510893525,55.22191643511628],[-126.25847197292681,55.22293775389825],[-126.25841493644478,55.22739930447824],[-126.25576223388447,55.23149890780079],[-126.25292856641181,55.23400417326851],[-126.24819026048222,55.23712237590269],[-126.2417798656279,55.23818315333412],[-126.23977971006538,55.23811535050064],[-126.23482492534178,55.234783197259574],[-126.23239565232295,55.229627547384936],[-126.23255077762434,55.22545250855072],[-126.23411632028346,55.220665635743636],[-126.23406221414878,55.21711809841777],[-126.23331208781308,55.213742083462066],[-126.23312533038589,55.212604680941965],[-126.23200747743981,55.20671195944589],[-126.22887515260447,55.202175711878695],[-126.22798782526833,55.20120980421078],[-126.22576781296452,55.19565051842771],[-126.22146841308768,55.18866152936714],[-126.21637295065827,55.18171857799646],[-126.21371952738396,55.17868618192822],[-126.20829288935049,55.17414439461824],[-126.20016277297472,55.170332405447915],[-126.19281214953453,55.167781849832416],[-126.18929111517403,55.16285105050578],[-126.1881899186791,55.156330835635146],[-126.18457838255436,55.15082669264833],[-126.18206230766404,55.14567023389095],[-126.18096974621119,55.13852284638205],[-126.1821615408701,55.13195443358086],[-126.18681119798862,55.12780864424598],[-126.18710930607891,55.127691733435896],[-126.19295584499,55.12343640083309],[-126.195673859277,55.12161354763472],[-126.19392576782583,55.11840910290571],[-126.19047854121087,55.11553872143366],[-126.18265538377474,55.11212828431888],[-126.17720193411799,55.11004883027009],[-126.17147414173392,55.106589890786985],[-126.1663613952477,55.10204587446208],[-126.16186444199025,55.09630935370681],[-126.1586618898701,55.09069644486256],[-126.15752505958011,55.08685465300377],[-126.15755978363904,55.08468662746047],[-126.15808072867546,55.083145085502856],[-126.16011173263723,55.08058927989488],[-126.16173811857051,55.07824897546285],[-126.16287351662638,55.07585554361883],[-126.16341390772104,55.07288953623451],[-126.16376818870037,55.069287711902135],[-126.16382130303927,55.06569524353633],[-126.16324787264085,55.06409241056673],[-126.1614367549375,55.05881816763995],[-126.15881103620478,55.05474539728045],[-126.15657163147554,55.051541068617],[-126.15550884751391,55.049535681231625],[-126.15597112292565,55.045082679393914],[-126.1623244607124,55.039564986300206],[-126.16485840873959,55.03643509186877],[-126.1665879457228,55.03370040741161],[-126.16669806564337,55.033073157649476],[-126.16692203588653,55.031531977753694],[-126.16695872349283,55.02902352166831],[-126.16522979004024,55.02489592724786],[-126.16281825347151,55.0200256450752],[-126.15922284927392,55.0144043225965],[-126.15657868328708,55.011594695774676],[-126.15628706535952,55.01141589228265],[-126.15147974616048,55.013625678426294],[-126.1393096290311,55.01613045183562],[-126.13112321923538,55.018208821538416],[-126.114183999213,55.02045628086634],[-126.10144725193354,55.02106759082199],[-126.09011317158763,55.02078072087715],[-126.08634371762825,55.02024589093278],[-126.07901963131154,55.01814551415904],[-126.07361302195754,55.01468187683596],[-126.07108808137238,55.01112679786371],[-126.06919067103651,55.00597669258047],[-126.0692066310745,55.00500019914084],[-126.06966048052102,55.00180173387273],[-126.06996387781477,54.99999193092791],[-126.0681297930238,54.99541512264914],[-126.0591663947497,54.98608489807535],[-126.04361481186253,54.96989425687683],[-126.02816252138666,54.95483042015552],[-126.00318881614355,54.94082237599367],[-125.99992177230757,54.939962393886276],[-125.98501179298235,54.93937021941472],[-125.9797724472232,54.935696457072076],[-125.97615986737424,54.93372492631039],[-125.97296945725185,54.93254173766113],[-125.96766824135952,54.93047103328926],[-125.96128822161612,54.9285162296557],[-125.957380503182,54.926078210389385],[-125.95342835347924,54.92188416872015],[-125.94958663566965,54.91756462484477],[-125.94596203941843,54.91518906842819],[-125.94574458573679,54.91410498455553],[-125.94948335916342,54.912601527778214],[-125.94743952985425,54.90924120616269],[-125.94640995523902,54.90753863270969],[-125.9402590645869,54.90174856437757],[-125.93504425894348,54.89807291078497],[-125.93114016747377,54.896153657567815],[-125.92712888390835,54.893212937984245],[-125.9232120585503,54.89020943608235],[-125.91632615851802,54.88762488684572],[-125.90717410839044,54.885692247357625],[-125.9002382373977,54.88509557050527],[-125.89744256103404,54.884663267167376],[-125.89887320238336,54.881116841943545],[-125.90354002841069,54.87639939440687],[-125.90768224956838,54.87523794375812],[-125.91251130742631,54.874175387570006],[-125.9211047553556,54.87297176857987],[-125.91995539583553,54.86967426374767],[-125.91853755005675,54.86796224321574],[-125.91287248416954,54.86600539841168],[-125.90867464547604,54.86460482104312],[-125.90597691235648,54.86290961870975],[-125.90384562347496,54.85949474728274],[-125.90636631592156,54.85656722125661],[-125.91183964053442,54.85259363169259],[-125.91495206844365,54.84989031674561],[-125.91600297730132,54.84748117075204],[-125.91555609934004,54.844685778979084],[-125.91374847881029,54.84326906744052],[-125.91075351638898,54.84243378564039],[-125.90560440509432,54.841775973373686],[-125.90420114667995,54.84116570556292],[-125.89988581998581,54.83793717611543],[-125.89664999721982,54.83389416963994],[-125.89434579004713,54.83185860994813],[-125.88857742910542,54.82999909738777],[-125.88340146210905,54.82849822095913],[-125.8815020699125,54.827080947178445],[-125.8806793416176,54.825655732014894],[-125.87799786986375,54.82499016913625],[-125.87562628592558,54.82505050977609],[-125.87117889765386,54.82536845347999],[-125.86732602300319,54.82515831885129],[-125.86671903999034,54.824709732604646],[-125.85986240953481,54.82241767774309],[-125.8532077593221,54.82056445420728],[-125.8528023654941,54.82051021896847],[-125.84904364311217,54.82029962464703],[-125.84380405219838,54.81981828893477],[-125.84338373482487,54.81959378963348],[-125.84290126804314,54.81930649921973],[-125.8390088447197,54.817447038202],[-125.83394435696083,54.81622194382443],[-125.82947531805681,54.8144151541198],[-125.81920217237882,54.80967930346758],[-125.81263653318669,54.8062831245517],[-125.80874513950835,54.80476313310102],[-125.80655370405049,54.80323674011348],[-125.8011968027583,54.801785868866816],[-125.79197403028736,54.80022975207274],[-125.78404783401885,54.7983347935529],[-125.77749284918845,54.796710568023876],[-125.77054960448307,54.794915055173874],[-125.75912625904587,54.7916054118105],[-125.75565741873567,54.79037123971662],[-125.75485408024144,54.78916917933615],[-125.75511755275683,54.78683148558675],[-125.75664697027926,54.78390502528348],[-125.7577918918077,54.78008192094975],[-125.7615015716098,54.777311966859145],[-125.76384701556847,54.775936848648826],[-125.76768923472252,54.77437638649114],[-125.76497783521091,54.77170155005891],[-125.76198195636634,54.76977863367156],[-125.76128553045096,54.7689799611553],[-125.75910179180015,54.76151310879164],[-125.76028199810392,54.754196149688624],[-125.76307920263574,54.74990138594492],[-125.76678931338478,54.7465131218965],[-125.77536135082214,54.74509567681984],[-125.79117287631776,54.74672713632312],[-125.80562651098523,54.74927716979801],[-125.81287292028907,54.75151911705802],[-125.82492341345457,54.75225354622342],[-125.83950588925076,54.750804204357074],[-125.84707028513792,54.747732050856804],[-125.84940430608685,54.739779616816996],[-125.84518048671521,54.7287283044363],[-125.840814402736,54.71883232269482],[-125.83984263876721,54.716654094705866],[-125.83504978606058,54.712911975306845],[-125.82913289733965,54.70660591562221],[-125.82211549232215,54.699850040555226],[-125.81660452719774,54.694054599311166],[-125.81507525679608,54.684923351645814],[-125.81303246613821,54.67945542419167],[-125.8063308328344,54.67320974809512],[-125.80006854778301,54.66969683823234],[-125.78537394286361,54.66224521501737],[-125.77139018530771,54.6564326017938],[-125.73736894038979,54.646043992323015],[-125.72305009961369,54.643369666609495],[-125.71328734952728,54.642388653755894],[-125.70519109112695,54.64082855346897],[-125.70179280671846,54.63616174752277],[-125.70143542904697,54.63194126378397],[-125.70640457262665,54.627581338829145],[-125.71454251508825,54.62502935570018],[-125.72030576688468,54.622256430558174],[-125.72015961335293,54.61866359957119],[-125.71687575799015,54.61542191785118],[-125.7071615494961,54.61078529472489],[-125.69886666978114,54.60757584885011],[-125.69013831604954,54.60235795321521],[-125.68279963773308,54.598280810049054],[-125.67639212540121,54.59630206569812],[-125.66386367872923,54.59356276359895],[-125.65350673345577,54.591043347184005],[-125.64535214816834,54.592274273453405],[-125.63861861344071,54.595900888390105],[-125.63325869302135,54.60020317101463],[-125.63248861741796,54.601293853227055],[-125.62689526057117,54.60382129297545],[-125.62053206950291,54.605620426248976],[-125.61718971996964,54.60626403847792],[-125.61383826532371,54.606217693936685],[-125.6086172628155,54.60532316526029],[-125.6035998588161,54.60425885206347],[-125.59777745148408,54.60303043346079],[-125.59050156106353,54.602880923648264],[-125.58203641708707,54.60371241832077],[-125.57694498072327,54.60538819909189],[-125.5749825493664,54.606080211014984],[-125.57056974689338,54.60809851919625],[-125.56694043144577,54.6093668865827],[-125.56153566065227,54.60829948213831],[-125.55636820504607,54.603980591293116],[-125.55556255229997,54.60101225346077],[-125.55553714477115,54.599068063521116],[-125.5567876772882,54.596779092540345],[-125.5613002273072,54.59408971309206],[-125.56786531874921,54.592348114595104],[-125.572574234117,54.59153144058296],[-125.57512554403644,54.59083255188832],[-125.57432478598271,54.58877816870314],[-125.57164663638696,54.586788904102725],[-125.57095761134985,54.58593539090294],[-125.57217942868672,54.580340297822836],[-125.57556360149474,54.57553213138449],[-125.57740199104629,54.5716950790452],[-125.57767364808242,54.56941147239146],[-125.57546691644826,54.56542604952714],[-125.5706372567127,54.56326801363038],[-125.55961545677178,54.561831276273615],[-125.5539482982245,54.55556632775105],[-125.5530513184084,54.553968349685086],[-125.54734616451965,54.552728965356835],[-125.54310914196314,54.5518889982729],[-125.53629266456997,54.54757198955183],[-125.53282234700166,54.544790448243695],[-125.5292674753164,54.54131863229008],[-125.5250004931935,54.53785290698799],[-125.5217304200679,54.53397880983679],[-125.51747096418741,54.52999321485758],[-125.50794500468658,54.528709971879564],[-125.50069342072047,54.53021260941464],[-125.49914752352723,54.53376305859546],[-125.49887251951719,54.53724702408632],[-125.49996978769204,54.540001954274054],[-125.50097675556107,54.54255044577109],[-125.50366670368648,54.54687966055593],[-125.50457534811139,54.54990255094929],[-125.50381810709939,54.55356374761996],[-125.50187844603751,54.55630630930243],[-125.50090790820389,54.55836294477969],[-125.49917206968456,54.56088231709105],[-125.4955299676105,54.560831534095975],[-125.49160105281574,54.56016127622852],[-125.48775674078007,54.56017213583474],[-125.4847177448252,54.5602400199758],[-125.48186375962673,54.559161848352026],[-125.48155876390075,54.5587663577819],[-125.47821265404933,54.55739932485171],[-125.4761429209039,54.556835025319835],[-125.47308715524252,54.55701901649208],[-125.47122719732441,54.55701995921666],[-125.46993993025845,54.5558855476259],[-125.46679439714543,54.554635535908794],[-125.46394197925018,54.55350319425002],[-125.45949413655737,54.549971668746316],[-125.4539686083477,54.547133987333346],[-125.44846026975429,54.546526954708426],[-125.44109492311154,54.54688775724111],[-125.43667853809191,54.54689439530974],[-125.43008222590608,54.54543040430328],[-125.4227135506273,54.544930005790015],[-125.41800625302355,54.54579467752603],[-125.4121282183318,54.548319959561994],[-125.40859871133357,54.550211266840435],[-125.40546202244936,54.55171017765303],[-125.4008452305941,54.55160704247123],[-125.39730768495879,54.54977992728534],[-125.39415252856638,54.548312968158434],[-125.39001663339805,54.54820284197043],[-125.38618891694954,54.54821059086413],[-125.38540632998887,54.54769599081055],[-125.37861818525535,54.545708621890384],[-125.37310705373123,54.54435456358245],[-125.3641499349593,54.542426933786295],[-125.36121396155475,54.5419188918403],[-125.35767286679605,54.54147032027168],[-125.35178143035124,54.54170804455676],[-125.35040698664274,54.54239958055814],[-125.3474749642531,54.544570044679254],[-125.34462555272721,54.54543283146216],[-125.34060393234607,54.54594879337738],[-125.33196238460172,54.546591811183475],[-125.32635310512111,54.547519719340585],[-125.3206583328495,54.5479810152196],[-125.31614884712094,54.547982790004674],[-125.31044962084907,54.54685779322708],[-125.30728546608998,54.544286533394356],[-125.30424351766797,54.5418413134216],[-125.29961643829367,54.54151031268459],[-125.29569337464586,54.54258980121905],[-125.29265571058485,54.54442686621925],[-125.28911993468495,54.54637743695789],[-125.28283059994924,54.54449513765054],[-125.28027404808522,54.542724106358975],[-125.27801033921942,54.541931315078656],[-125.27565376427928,54.541137931891065],[-125.27201749999244,54.53999644430477],[-125.26455651022223,54.53875129436203],[-125.25619823880777,54.540017820472],[-125.25296302547719,54.54070591091433],[-125.24717427066967,54.54122593066214],[-125.24275102438563,54.5416287002745],[-125.23714528343608,54.541459506172934],[-125.23321828991425,54.54100492139061],[-125.22684621225082,54.54203997218031],[-125.2225159828032,54.543239987294314],[-125.21858805601205,54.54364503125236],[-125.21368500930468,54.5439899341609],[-125.20553107884594,54.54496762713344],[-125.19913886026356,54.546171342333096],[-125.18961526022426,54.54662832479161],[-125.18911820452597,54.546687750002064],[-125.17231784024499,54.54680827611828],[-125.15740195055292,54.54646462760805],[-125.14285212874776,54.54493010716897],[-125.1308735947398,54.542758084209304],[-125.12479101254456,54.54098555649763],[-125.1140963848027,54.5347086020826],[-125.1061462079723,54.52774295120811],[-125.09929035423272,54.518320920586255],[-125.0982134345967,54.51518607669443],[-125.0967575154326,54.50747900507946],[-125.09676416284206,54.5008578725447],[-125.09460481363399,54.49770602411104],[-125.08814219406011,54.49251515039581],[-125.07687424127627,54.489142388102024],[-125.06530495027963,54.48685039499927],[-125.05794903519873,54.485082623547875],[-125.04392520927017,54.483307234503684],[-125.0326513914938,54.484374353472376],[-125.02949092594433,54.489115910627284],[-125.02918861126236,54.49207919857868],[-125.0277122495526,54.49299032504689],[-125.02073569370853,54.495443391376426],[-125.01277889361366,54.49743120594979],[-125.00866279088501,54.499306345971796],[-125.00346054087633,54.49936262174984],[-124.99078796063779,54.500432435658674],[-124.97488535751134,54.50497721569838],[-124.96986720800405,54.506915183887884],[-124.96652011907896,54.50764853761282],[-124.95550903435569,54.51020713295467],[-124.94441130859441,54.512468323442775],[-124.93537661577393,54.5151407243217],[-124.92835870284779,54.52118116168068],[-124.9247014303568,54.5253960810547],[-124.92271582853834,54.52904322673784],[-124.91866840880336,54.53331725696698],[-124.91413383603162,54.53548125364779],[-124.9058755993227,54.53666210380277],[-124.89803301581753,54.53619751054036],[-124.8882994747611,54.53576901276445],[-124.87713030294368,54.53346289556016],[-124.8710443177054,54.53225106591849],[-124.86299821813576,54.53246330173307],[-124.85218339152023,54.53307019705275],[-124.84324469395975,54.53470637464336],[-124.8316538820805,54.534784442196965],[-124.82359746972408,54.534250306372186],[-124.81701747349389,54.534634890873456],[-124.80797753660933,54.534896628092426],[-124.79924674406077,54.53465000246394],[-124.79296700040359,54.53377285647999],[-124.78493462069602,54.53192821645481],[-124.77114899313216,54.52566177015916],[-124.76949344040322,54.524569903628944],[-124.76655242354083,54.522963287902726],[-124.75911877112436,54.520889984685674],[-124.75215892306221,54.519555798993956],[-124.74863939187506,54.5176561093063],[-124.74698996976288,54.516393744485086],[-124.74302718289722,54.51078873335894],[-124.74177865145607,54.50707528081601],[-124.73857263382949,54.50409430538273],[-124.73232418660696,54.50139535223145],[-124.72529432733096,54.49846391756239],[-124.71884477846983,54.495815921087775],[-124.71250071137595,54.49328517084791],[-124.709182129063,54.492013641485734],[-124.70380343694443,54.48982415136603],[-124.69814835039021,54.486609982242165],[-124.69386572246572,54.48357150176927],[-124.69326234093033,54.476773007688294],[-124.69918221639266,54.473538704153675],[-124.70832399893476,54.4711177813376],[-124.71305910250491,54.46959070093539],[-124.71475573225042,54.46629319107178],[-124.71576594570061,54.46366944005818],[-124.72120259702879,54.458950547029396],[-124.73115183330006,54.45527298767246],[-124.73704770489161,54.453120863847786],[-124.7421594153689,54.451309844199606],[-124.74609902470525,54.449388022620354],[-124.75462918481199,54.44901831898353],[-124.7596363691643,54.44908719359014],[-124.76561918622237,54.449103004464874],[-124.76875528562753,54.44763827970878],[-124.76896332953632,54.44688770665678],[-124.77911587055614,54.441326683568654],[-124.7927648599297,54.43765424718224],[-124.79639792250157,54.43709873276939],[-124.8070059018108,54.43426386280839],[-124.8132039546376,54.43103584284613],[-124.81497773666342,54.42954774509825],[-124.81498725388597,54.42761241483939],[-124.81185684874164,54.4268562021592],[-124.80913287187403,54.425942588175324],[-124.80591501193014,54.42342018507853],[-124.80103598240136,54.421186036397366],[-124.79801869548439,54.419229886226724],[-124.79803157495347,54.418262296120155],[-124.79922477234771,54.41655365606019],[-124.79904473305267,54.41478669650574],[-124.79384888162001,54.41392005985729],[-124.78876701264147,54.413385864854206],[-124.78399348191161,54.41183304620118],[-124.78008661667292,54.40919553621959],[-124.77767822711917,54.40604425228473],[-124.77810564577337,54.401541447365766],[-124.78312278110971,54.39847337501478],[-124.78461779641283,54.39648114859761],[-124.7890404267447,54.39363988596935],[-124.7919069117365,54.39119524150673],[-124.79417273032426,54.38869083194327],[-124.79908424732199,54.38755652375001],[-124.80291935530043,54.38573942964346],[-124.80282976092182,54.38351637360528],[-124.80335553581612,54.38083341669241],[-124.80318523810446,54.37661139751145],[-124.80467634462944,54.37416191540885],[-124.81301553237537,54.370757802981984],[-124.81656026252139,54.368767219955274],[-124.8176623758287,54.36585682848474],[-124.81385544024933,54.364646028475086],[-124.81044080800861,54.363214926380785],[-124.80538145221811,54.36052211636069],[-124.80149065586578,54.358512619516134],[-124.79885170372037,54.356963361931854],[-124.79486443706612,54.35616235645947],[-124.79426984096155,54.35592350274438],[-124.79183721240351,54.35471662723564],[-124.78782679812392,54.35471264039918],[-124.78323601516631,54.355034265617554],[-124.77766413527777,54.35410933261461],[-124.77105026868833,54.350897666272665],[-124.7670557436486,54.34883223080588],[-124.76531661486074,54.34665512963011],[-124.76817626229285,54.34489197059641],[-124.77365192255768,54.34485760944876],[-124.77708545116661,54.34348532372306],[-124.77681718838299,54.34057942146794],[-124.77333034134963,54.33754257882196],[-124.77051043898034,54.33593709096344],[-124.76614406637226,54.33295387268621],[-124.76137736514401,54.32997537908427],[-124.75367415570113,54.3277820846774],[-124.74498096842048,54.32724476962313],[-124.74098940846255,54.32671073092165],[-124.73454505334539,54.32624070098122],[-124.72790374610399,54.326162540094394],[-124.72566225695923,54.32587028274553],[-124.71629845835136,54.32412315943465],[-124.70799647041655,54.32392782143474],[-124.70093713884131,54.325384993666894],[-124.69417930787986,54.327526011100474],[-124.68800469938881,54.32875894886978],[-124.68409766037783,54.328008891839346],[-124.68225749419832,54.32674344639854],[-124.67993968518915,54.3245139915745],[-124.67305297199024,54.32106091584163],[-124.66595461355092,54.31704058470097],[-124.66199107465201,54.314281953902544],[-124.65879651179412,54.31158542714649],[-124.6535727825832,54.30734303254802],[-124.64814553203598,54.304639410426354],[-124.6390729933099,54.30317623589132],[-124.63401216263222,54.30247434891973],[-124.62856434513218,54.300907638369615],[-124.62702277241037,54.298166126394264],[-124.62665839345013,54.29662073016779],[-124.62031274893559,54.29613673787606],[-124.61894961332872,54.29636321987334],[-124.61326656126744,54.29770545833498],[-124.60565180105749,54.29785142386296],[-124.59980292210025,54.29725555985208],[-124.59375638231683,54.296137388203405],[-124.5863465856501,54.29525399017069],[-124.58342445725016,54.29467337897452],[-124.57379305885866,54.292571498393045],[-124.56728858531746,54.29048778552928],[-124.55980571790143,54.287773818439106],[-124.555451561371,54.285015922709555],[-124.55120330591699,54.281452618127986],[-124.54346643526675,54.27685272950869],[-124.53736312141622,54.27442267782957],[-124.53502275786899,54.273561112002255],[-124.52832959672521,54.27129374951783],[-124.52367245229802,54.26979453187692],[-124.52047195954329,54.26846520660217],[-124.51881575081727,54.267432416682205],[-124.5162323053757,54.264793179284275],[-124.51637151697076,54.264346813025085],[-124.51705021089948,54.2621685352314],[-124.51884943021103,54.25921531612425],[-124.51995740155952,54.25664795449132],[-124.52196255796545,54.25351797227907],[-124.52367518050441,54.25038440531973],[-124.52445351332678,54.24970383637623],[-124.52714812960375,54.24663590905419],[-124.52804099459202,54.245329414379036],[-124.5335885370292,54.23902499647307],[-124.54062565901663,54.23186899285841],[-124.54734359770345,54.22584686740419],[-124.55637471831632,54.22133051676777],[-124.56624127928737,54.219260845442285],[-124.57761823235049,54.22062231587381],[-124.58198678161445,54.22280617146466],[-124.58572593682923,54.226765816218155],[-124.58811689197996,54.23014511708109],[-124.58964776460653,54.23260034171709],[-124.59207535364197,54.232673305762376],[-124.59968954898598,54.232644814604605],[-124.60573321018241,54.23221250284684],[-124.61109423552357,54.23286534678066],[-124.62042545005133,54.23530155401061],[-124.64532388636427,54.239623149967194],[-124.65722660447489,54.239728385927755],[-124.6642295755371,54.2405582954899],[-124.67424565962577,54.24241537553169],[-124.67899491264168,54.24494927727972],[-124.68325738048999,54.247809266499495],[-124.68908762632081,54.24977200578779],[-124.69623836316626,54.24648858981061],[-124.69959030307723,54.24313728762072],[-124.70272736900095,54.242686929957216],[-124.71049045593257,54.24630909808652],[-124.71600224958286,54.249638164867974],[-124.72437577056522,54.2520113469109],[-124.7325501286049,54.252885411685924],[-124.73471136729272,54.25215522233442],[-124.73941752171481,54.24971302394124],[-124.74529261002259,54.24625223189878],[-124.75294094306334,54.24262119745553],[-124.76036548590186,54.241272403137195],[-124.76689571516445,54.24100729827374],[-124.77322258903989,54.241886763736645],[-124.77762027345135,54.241949002496675],[-124.78250101408807,54.24128114472447],[-124.78622096435005,54.239804000466386],[-124.78935370510374,54.237362100183255],[-124.79014159809364,54.23724449827702],[-124.79749071780323,54.23207545042254],[-124.80231247377586,54.22809077095098],[-124.80701680020604,54.22388073487492],[-124.8105622348056,54.219838391559456],[-124.81628045297902,54.21237623928062],[-124.81990235012711,54.2093558955218],[-124.82965701159097,54.20738935345292],[-124.83823614020908,54.207292532558604],[-124.84465983505122,54.207873545408255],[-124.85226275293073,54.20806214074965],[-124.86443926779545,54.20905477135992],[-124.87309637972041,54.21004940600171],[-124.88310935283928,54.21377990857723],[-124.88776525685542,54.21841043962857],[-124.88822957978607,54.221147653975606],[-124.88722999402827,54.22400586974074],[-124.8900393338232,54.22817133294471],[-124.89762182826979,54.22984430700153],[-124.90698131194273,54.231801616089044],[-124.91553072635301,54.235354887641456],[-124.92212566913797,54.23841531723263],[-124.92293108837296,54.238789836666115],[-124.93003017998724,54.241433153357],[-124.94874839334902,54.24271657113172],[-124.95664387207268,54.2425516465022],[-124.9667821839694,54.24250386311937],[-124.9767214701285,54.243035979001846],[-124.98092719334171,54.24029362365005],[-124.98434333865767,54.23898713851786],[-124.98971680864571,54.2368814610578],[-124.99704829828623,54.2339225794212],[-125.00737686443209,54.23290528734645],[-125.01419906297343,54.23251282037339],[-125.01967063822268,54.23200155744868],[-125.02347571630779,54.229774216405104],[-125.02397127732499,54.225728159634194],[-125.02828102997935,54.221623069287425],[-125.03988323316283,54.220541542614],[-125.04455609348831,54.21991533319338],[-125.05197354037878,54.218262051699774],[-125.05811804166737,54.21375806185772],[-125.06299012908589,54.21108080252553],[-125.06747835225153,54.21107951174348],[-125.07925867790539,54.21285392520435],[-125.0902679502251,54.211996080186246],[-125.09992146429974,54.209147000116715],[-125.10295505793758,54.20817486988652],[-125.10596601705933,54.20469364927564],[-125.10411629646207,54.20070169268121],[-125.09721412914007,54.19590165246127],[-125.08776345044149,54.191789932690874],[-125.08154231809638,54.189673198279365],[-125.07453830776898,54.18755913183133],[-125.06732359917376,54.186643713194826],[-125.05993482258116,54.186640464691266],[-125.0419066135186,54.187037093888954],[-125.03188093654322,54.18811341332667],[-125.03041087308863,54.188567615164445],[-125.01872120265435,54.18981771497983],[-125.00947063777801,54.19054900266482],[-125.00704202877971,54.190600840669816],[-125.00422287328418,54.189009676591084],[-124.99938857982912,54.17866545057145],[-124.99551861332417,54.17107086965558],[-124.99513985530642,54.16833479738912],[-124.99418755304251,54.164563514425566],[-124.99428913317827,54.161652206935024],[-124.99206843636611,54.15765532190167],[-124.98429745002193,54.15342385388989],[-124.97342314367485,54.147525856311916],[-124.9658711550097,54.14021258465142],[-124.95899289619523,54.132447603827416],[-124.95580566268993,54.12986641212972],[-124.95036759378617,54.125930522455455],[-124.9439734019685,54.12043585306722],[-124.94137653401529,54.11523392560684],[-124.94041259673256,54.11335271683854],[-124.93909442228025,54.10615470569125],[-124.94236567186218,54.093942987481185],[-124.94413152126275,54.08961244705502],[-124.94900900885396,54.08402754864303],[-124.95185320477677,54.08002883845821],[-124.95604527725651,54.07541444344953],[-124.95799152009474,54.07295805024351],[-124.97146943750339,53.99846835905917],[-124.96166842431477,53.99047926874498],[-124.96022322336516,53.9840888626934],[-124.95614556943615,53.98089493268752],[-124.95323525797106,53.97992267631975],[-124.94945811758862,53.97878150211349],[-124.94634938560323,53.977810145711956],[-124.94441239164328,53.97524381259844],[-124.94228427039833,53.972390700954605],[-124.93830523889432,53.96902393373121],[-124.93453333786337,53.96713744190421],[-124.93307952663996,53.966626695870566],[-124.93269755959719,53.96662500371296],[-124.93366593879128,53.9634282895101],[-124.93366791604655,53.960971847039154],[-124.93105495422193,53.95920579715226],[-124.92533622265327,53.9570329069846],[-124.9239715283713,53.95663821358261],[-124.91942604886498,53.95578213354765],[-124.91613647082931,53.95480835096111],[-124.91371161433811,53.95406965399516],[-124.91071273268068,53.95367073158992],[-124.90819505368576,53.95298261077848],[-124.90538832102293,53.951673493376674],[-124.90345270544955,53.95093174705913],[-124.9014193139119,53.94984686868407],[-124.8992822088713,53.948645068551116],[-124.89657253946078,53.94772812181649],[-124.89560406748483,53.947388251301874],[-124.89385962255542,53.94579061550808],[-124.89221612274949,53.943848872179835],[-124.88651051828839,53.94247848588184],[-124.88438159874951,53.94213900732728],[-124.88369765482281,53.94144882923982],[-124.88156754010554,53.94002218096851],[-124.88050355837947,53.938137722030994],[-124.8783862592863,53.935681150040125],[-124.87790271243378,53.9337975789574],[-124.87809701727316,53.93225636935802],[-124.8787765271295,53.93197032651234],[-124.87917401242119,53.92968720711709],[-124.87781297946422,53.92637959531956],[-124.87434380368184,53.924267114836155],[-124.87007991240091,53.92164188957561],[-124.86873401084307,53.91781453181742],[-124.86757033968536,53.91627009494933],[-124.86507127265918,53.91221397800974],[-124.86575639469396,53.90947656906277],[-124.86903957271282,53.907707302295144],[-124.87301468840394,53.906857359963716],[-124.87387549418929,53.906624004275145],[-124.87388839861322,53.90445771180442],[-124.87331272399344,53.90149059325336],[-124.87303299969584,53.89886452920335],[-124.87408736539194,53.89823757020715],[-124.87990053928223,53.89480855930639],[-124.88579790365722,53.89161697290054],[-124.89431775073669,53.88842231562881],[-124.89596637634895,53.88779389993539],[-124.90225249693273,53.88596664891971],[-124.90487197543426,53.88436848082361],[-124.90468231867793,53.87882973811167],[-124.90420209581484,53.8750632649328],[-124.90352565825351,53.87238212574236],[-124.90333104061312,53.869354187924706],[-124.90632257051246,53.8668990796265],[-124.91213354974207,53.86678201720438],[-124.92015045249352,53.86918357954221],[-124.92460180970491,53.8727261954925],[-124.9278782188781,53.87751669773456],[-124.92924211972732,53.88139732832095],[-124.92942444298983,53.883793310966645],[-124.93020213078196,53.88379573933625],[-124.94316549516694,53.885561843347546],[-124.96066770941593,53.887611108209676],[-124.97024349816314,53.89200481510356],[-124.97420720201009,53.8939428862147],[-124.98310651150712,53.89742077107672],[-124.99308376026332,53.90180591454423],[-124.99628240228067,53.90328542405923],[-125.00130093476854,53.904597356773124],[-125.00721567841045,53.90545104881966],[-125.01543254945078,53.90510343576822],[-125.01997864441842,53.90383664604827],[-125.02211141829521,53.90332470905698],[-125.03380497157525,53.90171921118601],[-125.04714894264741,53.90061627348831],[-125.05015438353549,53.90061423591676],[-125.05847656856761,53.90094444812111],[-125.06882532409449,53.90139058078123],[-125.07589542149177,53.90109552148992],[-125.08313695393325,53.89993941085678],[-125.08874155179163,53.89828045001463],[-125.0949395688792,53.896669374367264],[-125.09888845121864,53.89535202318198],[-125.10323944843203,53.893059103666054],[-125.11009932885283,53.88967790231684],[-125.1157836416196,53.88630449413138],[-125.11886316881571,53.88275441349222],[-125.1160530430635,53.8786509616718],[-125.11061189383146,53.8756935341499],[-125.10306325109225,53.87364707992653],[-125.09377789131796,53.87297829692731],[-125.08759677190153,53.87258718053512],[-125.08565780346957,53.87202081219643],[-125.08082209913725,53.87008480206127],[-125.07840030591973,53.86723738461829],[-125.07654668909976,53.863528393568174],[-125.07460584237712,53.86170110159086],[-125.06976666385397,53.86067864765346],[-125.06860950473701,53.86062657128501],[-125.06232889773321,53.86000654554802],[-125.05662631482255,53.85944393280044],[-125.04888723670364,53.85796996847287],[-125.03864278753815,53.85678188638458],[-125.03139913783984,53.85633121268307],[-125.02761845097403,53.855080320047826],[-125.02480798125262,53.85080267321574],[-125.02509702479702,53.85017212545474],[-125.02586414412715,53.84669183843491],[-125.02285592182635,53.841784115688796],[-125.02188397980315,53.84035697402235],[-125.02294872176242,53.836530740820045],[-125.0269913595516,53.832360089412575],[-125.0295934132973,53.831156765429164],[-125.03809312520424,53.82846942197743],[-125.04571080640622,53.82634520891094],[-125.05671367542365,53.82062003524564],[-125.06189949487806,53.81684755963339],[-125.06383379664129,53.8141053446726],[-125.06690394844907,53.807535359271526],[-125.07161046893692,53.80193342917381],[-125.07257571656766,53.80096129710963],[-125.07535701842396,53.79701732629353],[-125.07940466068419,53.79358538657275],[-125.0822954356969,53.791528458011996],[-125.09203428941468,53.78939793120062],[-125.10196820471977,53.78875958579002],[-125.10813843466765,53.78766184245194],[-125.11564651725021,53.78587689383405],[-125.12382513856656,53.78038526338737],[-125.12215834674731,53.77501869813811],[-125.11462658158379,53.77229294460854],[-125.10758310297281,53.770246922054696],[-125.10080729794372,53.76569160456471],[-125.09393612778891,53.75999426753561],[-125.09220995352138,53.75896858892639],[-125.08601554414037,53.755097301344804],[-125.0752136820949,53.75340377343813],[-125.06586937499345,53.75318582167206],[-125.06374610930479,53.75296317072558],[-125.05871960771539,53.752054606150175],[-125.05255581979131,53.75103212726688],[-125.04502766649344,53.74853214118793],[-125.04173518496701,53.745624206858906],[-125.03990296596794,53.743342842924754],[-125.03681217614181,53.74094774174127],[-125.0338221126363,53.73946857174164],[-125.02630766022897,53.7378205254687],[-125.01840533693294,53.73782897720539],[-125.01223710178549,53.73840737831336],[-125.01097250665835,53.73726275094062],[-125.0077868766339,53.73447066419359],[-125.00616054530724,53.73321265514595],[-125.01020274351501,53.731273368619235],[-125.01463308006318,53.72960991079799],[-125.01172399607482,53.72670200109424],[-125.00622726161737,53.72402634468566],[-124.99968777795682,53.723691398027256],[-124.99390680485314,53.724034577799586],[-124.98464960188936,53.723015063510516],[-124.97540293041517,53.720964871642785],[-124.97010474467122,53.71960044286691],[-124.96086280465656,53.71680756500698],[-124.95488377367263,53.71355625180816],[-124.9501540455581,53.71139099267262],[-124.94447406127895,53.71139267846662],[-124.9420745503183,53.71139114921905],[-124.93523318304008,53.71048203477714],[-124.9303150549783,53.70683110949531],[-124.92733607690587,53.702202553903795],[-124.93186363678478,53.699123089689465],[-124.94244894146563,53.69660338448636],[-124.95303446442645,53.69523492647517],[-124.96141462895167,53.695227146011334],[-124.97103593476257,53.69413608703554],[-124.97585291984956,53.692704773367595],[-124.98201414210699,53.68842081244411],[-124.97941036232008,53.68254263802803],[-124.9731370985146,53.67843770676878],[-124.96755115771732,53.67358499223719],[-124.96351062727805,53.669480256742425],[-124.95985883989863,53.665025867381836],[-124.95657174485076,53.662400542150905],[-124.94859122423247,53.65823736025953],[-124.94204871028684,53.654246531765004],[-124.94194571420701,53.65374655049455],[-124.94185952076147,53.65333184830493],[-124.94183916794356,53.65331206843236],[-124.95050755020081,53.649492064957144],[-124.95035377622764,53.64950135547067],[-124.95030380145162,53.649453310915426],[-124.95027731165042,53.64945139388889],[-124.95026364554971,53.64916505197916],[-124.95026040342348,53.649143173997494],[-124.95024035986671,53.64903545328782],[-124.95022270141126,53.648983766519336],[-124.95016837720016,53.648882466893426],[-124.95023169105126,53.6487765970342],[-124.95025621694865,53.64870567989747],[-124.95027802244326,53.64851654688759],[-124.95029325732749,53.648362640021396],[-124.95041483856149,53.64835194725222],[-124.95049283271494,53.64834086347573],[-124.95079189380107,53.64828243386742],[-124.95086438489712,53.64826402442787],[-124.9510420889584,53.64820732729867],[-124.95105929934758,53.64820131210752],[-124.95132892169335,53.64810733064548],[-124.95138449683827,53.64808317147987],[-124.95151880898985,53.64801825191705],[-124.951532242989,53.64801164795086],[-124.9515861754183,53.64797739196339],[-124.95162884954637,53.64793855636351],[-124.95179086956446,53.647751214918635],[-124.95192962840899,53.64758439005551],[-124.95210642754141,53.647412296551565],[-124.95223464286045,53.6472879490107],[-124.95234421746856,53.647226728557776],[-124.95185900110536,53.6472258440526],[-124.9296999631019,53.647191756124506],[-124.92949715126447,53.64719161947508],[-124.9252491644384,53.64808620258322],[-124.92524974383649,53.647989864797346],[-124.92525111846375,53.64077926154913],[-124.92878372853977,53.640779546673805],[-124.93858938282605,53.64077947960612],[-124.93942136277846,53.640779573708464],[-124.93999370534183,53.6407795956352],[-124.94008848533115,53.640778758648324],[-124.94007993166042,53.64059271859774],[-124.93998089910801,53.64038738875983],[-124.93984962861938,53.64018290264234],[-124.93967429872515,53.63999706181776],[-124.93955987054512,53.63980112198338],[-124.93956633508846,53.639620816132094],[-124.93958818416293,53.639431684362734],[-124.93968540865605,53.63925946838993],[-124.9398603709703,53.63908569109207],[-124.94001947928919,53.63893922424717],[-124.94022408672485,53.63879203961184],[-124.94047540682588,53.638671034126155],[-124.94071223444345,53.638523578100525],[-124.94100616905332,53.63836597964346],[-124.94119870820342,53.638246128717455],[-124.94140308143277,53.63810790216532],[-124.94157757830949,53.63795205151764],[-124.94173690290536,53.637796622180566],[-124.9419583236552,53.63765854535297],[-124.94214776118012,53.63751122342548],[-124.94240049567998,53.637408706390644],[-124.9427437873615,53.63732211654151],[-124.94302807641601,53.63724565193248],[-124.9432803686578,53.637160497793836],[-124.94362388267187,53.637064945265216],[-124.94393851015592,53.63698761693587],[-124.94428178096001,53.63690158715201],[-124.9446433466494,53.636841474839954],[-124.94498784592184,53.63678177568923],[-124.94527357010624,53.63672324272929],[-124.9455576249232,53.63665572328884],[-124.94591583470097,53.63657821794323],[-124.94621550922982,53.63649235452408],[-124.94646702377308,53.63636237619372],[-124.94660948457505,53.6361983945784],[-124.9466298565754,53.63599132427477],[-124.94685149132789,53.635843713648434],[-124.94708593507563,53.63571414850118],[-124.9474945248662,53.63536597671055],[-124.94762371696588,53.63520186828732],[-124.94772112386781,53.63502068532694],[-124.94789436587234,53.63483791917383],[-124.94802188530582,53.63466484243319],[-124.94802674411943,53.634622314937],[-124.95062192535008,53.634579547908956],[-124.95268726776749,53.63458306794128],[-124.95258984420857,53.632115951145124],[-124.95249635947089,53.632065841466186],[-124.95224763395785,53.63193483420645],[-124.95221596268132,53.63191327193925],[-124.95203759638201,53.63177223292316],[-124.95179489369127,53.63162783417481],[-124.95158418582622,53.631492121588366],[-124.95134482597018,53.631365675456806],[-124.95132063479143,53.63134809491714],[-124.95110471016471,53.631193846832346],[-124.95087159792244,53.631045049065904],[-124.9506517614202,53.63089581152909],[-124.95063503570442,53.6308827773528],[-124.95026808141384,53.63055580259609],[-124.95002349759554,53.63041138357474],[-124.9498130264251,53.630266707617345],[-124.94960859099896,53.6301080763714],[-124.94959197835972,53.63009056195241],[-124.94941664726167,53.62990474357573],[-124.94940561905649,53.629891203559254],[-124.94927199153594,53.62970462167188],[-124.94915542735747,53.62951763373365],[-124.94904666615189,53.62932175199541],[-124.94890288168797,53.629162531563],[-124.94877306112744,53.62897542679243],[-124.9487621317201,53.62895797110933],[-124.94867802667689,53.62876118519669],[-124.94867457585079,53.6287477116446],[-124.94862377950129,53.628582585757904],[-124.9485147981179,53.62839566365004],[-124.94850755898825,53.628382156816805],[-124.948439941181,53.628207920900024],[-124.94833755883221,53.62798464326071],[-124.94826872364197,53.62778351000374],[-124.94818616550799,53.62760074507067],[-124.94817937694732,53.6275693178289],[-124.94817063532945,53.62738943299065],[-124.94811873658372,53.62719292947663],[-124.94811539865405,53.627174975802916],[-124.94810532597658,53.626972682761675],[-124.94806970118655,53.626807125173734],[-124.94801592348576,53.626610049391125],[-124.94794731730734,53.626399955638014],[-124.94787781093854,53.62622570261369],[-124.94781053708587,53.62603802588897],[-124.94772487221519,53.62582833765446],[-124.94765225537823,53.6256271705629],[-124.94759692501303,53.62541663754558],[-124.94755830394661,53.62521968569568],[-124.94750597414715,53.62504054660668],[-124.9474381405994,53.624875270082164],[-124.94736897686255,53.62468757634938],[-124.94736385809031,53.62466512587994],[-124.94734051757106,53.62446327150651],[-124.94730345459837,53.62427977645603],[-124.94724957107996,53.62408718022313],[-124.94724623377068,53.62406922650186],[-124.94723793338538,53.62387198541751],[-124.94718738817019,53.623697333888],[-124.94709983701398,53.62348763730337],[-124.94704606836841,53.623290551851866],[-124.94704261851847,53.623277078222024],[-124.94702061080824,53.623097640846424],[-124.94693182201695,53.62293722522671],[-124.94692647828738,53.62292373492912],[-124.94686065710485,53.62275399448989],[-124.94674991755815,53.62256257355358],[-124.94674268000654,53.62254906658062],[-124.94667328379543,53.622370888005385],[-124.9466699468701,53.62235293425513],[-124.94662812281227,53.62213299246337],[-124.94658784067948,53.621927072113095],[-124.94656283701434,53.62171624047849],[-124.94654327331057,53.62128924370329],[-124.94651960040528,53.62110082920495],[-124.94652613084791,53.620916597003095],[-124.94652646906883,53.62090315668226],[-124.94652536439759,53.62087177926466],[-124.94652024654428,53.620849328723345],[-124.94651702254693,53.62082689485036],[-124.94650257097284,53.62072370236468],[-124.94647878582612,53.62053976792119],[-124.94644339821185,53.62036525814898],[-124.94636788839011,53.6202043941231],[-124.94611341595385,53.61985374812563],[-124.9459984487258,53.61968021334688],[-124.94578984060188,53.619539461961715],[-124.94576944617131,53.619521913574424],[-124.94557878636918,53.61934547106357],[-124.94556397462155,53.619331897266264],[-124.94543930230768,53.61916780320503],[-124.94527127206517,53.61899547602235],[-124.9452456623026,53.61895940150486],[-124.94517841192413,53.61877172273105],[-124.94509399130116,53.618588938287616],[-124.94508754518647,53.61854407042203],[-124.9451079161239,53.6183369988541],[-124.94511215513731,53.61831911179441],[-124.94517755200636,53.61812924118791],[-124.94521252190329,53.617944139147774],[-124.94521664795982,53.61793073219275],[-124.94534933264573,53.61755100744012],[-124.94536127313066,53.61752815146865],[-124.94548718115647,53.61734217468726],[-124.94560005793372,53.617147120749905],[-124.94572597796785,53.61696057919328],[-124.94582513150827,53.616783893192306],[-124.9459471493387,53.61660179812927],[-124.94609936573377,53.616423894319766],[-124.94620989249503,53.61624674351791],[-124.94633980566246,53.616051838855505],[-124.94646526794861,53.615883225860465],[-124.94656195881235,53.61572891412245],[-124.94667615629605,53.61555627629158],[-124.94668976368233,53.61554239706912],[-124.94685132839818,53.61536905567195],[-124.9469189224037,53.615241938857515],[-124.94692884112186,53.61522410169772],[-124.94694267390263,53.61520125324826],[-124.94695450016867,53.61518287721354],[-124.94697401370492,53.6151600787458],[-124.94699163340121,53.615137272573556],[-124.94710491223054,53.615001030773605],[-124.94728766860106,53.61481331161483],[-124.947430390754,53.61463588719031],[-124.94758259370073,53.614457981347606],[-124.94769099024717,53.61428977262047],[-124.94770848262893,53.614272001989875],[-124.94786769436534,53.61411656296155],[-124.94789668859939,53.61409329203527],[-124.94811796369585,53.61395520245359],[-124.94816780079223,53.613931550041855],[-124.94846017036649,53.6138282576307],[-124.94869347369887,53.613739000285655],[-124.94885746055449,53.61361945079088],[-124.94904888347175,53.613463172854814],[-124.94907585646374,53.61344492962655],[-124.94911420470108,53.61342622166376],[-124.94937391510395,53.61334112035151],[-124.94960443826947,53.613211506848444],[-124.9497725445783,53.61307854893962],[-124.94985629918006,53.612910686621206],[-124.94993090880942,53.61272985631752],[-124.94993564181388,53.61254112654185],[-124.9498970355549,53.61234361884805],[-124.94984660530133,53.61216449643081],[-124.9497810139301,53.611985796577564],[-124.94969212597248,53.611829853424275],[-124.9496905696596,53.611816396424565],[-124.94968521230085,53.61180347068336],[-124.94966884558539,53.6117764403509],[-124.94965970157952,53.611763472409976],[-124.94957415163357,53.61162549186243],[-124.94956535879675,53.611598527995746],[-124.94955634118928,53.61158052438275],[-124.94954732358956,53.611562520768985],[-124.94948962799468,53.61144662560232],[-124.94935394071442,53.61126898599949],[-124.94919752532351,53.611087247708284],[-124.94902405649682,53.61090592403306],[-124.94900756416756,53.61088392926408],[-124.94891322593494,53.61071898427466],[-124.94878845389337,53.61055936427643],[-124.94877932437232,53.61054584072554],[-124.9486869936601,53.6103764320385],[-124.94853782049047,53.610208199742154],[-124.94852489043626,53.610195198432024],[-124.9484064905357,53.6100081915995],[-124.94830726421976,53.6098118352474],[-124.94820768729056,53.609629474722134],[-124.94811157446205,53.609460023281],[-124.94800041414615,53.60928652295433],[-124.94787990070853,53.609108459144835],[-124.94778089018187,53.608903697556336],[-124.9477722116458,53.60887225339613],[-124.94774820250038,53.60869727855099],[-124.94773052837432,53.60857165173202],[-124.9477291979696,53.608549234425666],[-124.94772597427156,53.60852680046941],[-124.94772464387067,53.60850438316239],[-124.94772520676395,53.608481982505175],[-124.94772983642565,53.608297741570965],[-124.94775543302646,53.608108074641144],[-124.94776356899719,53.608085740576975],[-124.94777539289369,53.608067364405954],[-124.94792377001389,53.60788997987551],[-124.94797238181516,53.607839439001204],[-124.94798988556444,53.60782110378436],[-124.94801128814369,53.60779833068272],[-124.94802689859763,53.607779978814854],[-124.94804450066032,53.60775772795324],[-124.9480757212701,53.607721033166335],[-124.94821485446109,53.607534613720446],[-124.94835008764638,53.607352631992256],[-124.94849043666657,53.607193109644015],[-124.94863124870089,53.60701510208308],[-124.94864875181719,53.60699676676349],[-124.94884258656595,53.60681866917585],[-124.9490045726318,53.60662683919375],[-124.94916965493901,53.60646248754811],[-124.94935936141826,53.60629779624018],[-124.94937095954135,53.60628837121172],[-124.94957336903462,53.60614563210811],[-124.94983154127685,53.605817980068565],[-124.94984135833315,53.60580405823759],[-124.95002204266409,53.605621362195784],[-124.9504091390606,53.60528698927957],[-124.95062334807245,53.60512642742162],[-124.9507879691474,53.60497999400237],[-124.95095528167886,53.60480166041875],[-124.9510973933654,53.60464662262114],[-124.9512630206022,53.604459867238646],[-124.95145127948264,53.60427667081198],[-124.95146486771316,53.60426334651842],[-124.95164832931275,53.60412043787455],[-124.95181294285013,53.60397400298294],[-124.95195527255663,53.603810012784116],[-124.95210494948196,53.603655040056104],[-124.9522171981299,53.6034823794791],[-124.9522613656044,53.60330632638251],[-124.9522663250976,53.60310807993397],[-124.95227338784312,53.60290144529186],[-124.95229371564673,53.60269437113672],[-124.95231582420146,53.6024917936843],[-124.95235264228768,53.60230671387609],[-124.95235758733428,53.602109022878075],[-124.95238114001681,53.60192438253304],[-124.95241806937416,53.60173482251154],[-124.95242263975949,53.60170349462169],[-124.95242700014241,53.60168056253026],[-124.95242945341526,53.6016581783616],[-124.95243569265578,53.60163582734335],[-124.95244005280041,53.601612904210995],[-124.95245332974878,53.601536276630036],[-124.95246146193801,53.601513942184404],[-124.95256123687048,53.60130980405647],[-124.95257695472895,53.6012869803554],[-124.9525982396616,53.60126867755977],[-124.95261562637991,53.601254830725445],[-124.95283659407202,53.601125691971035],[-124.95288639912619,53.601102601965295],[-124.95321088988166,53.60099789450713],[-124.953508388063,53.600912550532165],[-124.95352933636228,53.60090769698217],[-124.95383966425656,53.60083926865351],[-124.95414072195501,53.600762925470555],[-124.95469963210523,53.60059640700497],[-124.95471679445433,53.600591511207],[-124.95497585498677,53.60052879804261],[-124.95522077707462,53.6004256306827],[-124.95542256555781,53.60030584660039],[-124.95561512578318,53.60017645473824],[-124.95580277406893,53.60001620744665],[-124.95583598671178,53.599975046881916],[-124.95586907353253,53.59993893096207],[-124.95586197418956,53.59976802142816],[-124.95586834830914,53.59958827617778],[-124.9558734998078,53.599381624493894],[-124.95587006866268,53.59929141626239],[-124.95578798050617,53.599090724793946],[-124.95577206159038,53.599045774523375],[-124.95536487110968,53.59745701846263],[-124.9552944947706,53.59724242965291],[-124.95522879177875,53.59706821181769],[-124.95507645526952,53.59672407429361],[-124.95507120994036,53.59670666855016],[-124.95505095557576,53.596607906606714],[-124.95504594788133,53.596580976039185],[-124.95504082842925,53.596558525632155],[-124.9550305895415,53.59651362481674],[-124.95502736285952,53.59649119094268],[-124.95501210249026,53.596419915094025],[-124.95499318230648,53.596343570470225],[-124.95497048406648,53.596191013489126],[-124.95493341246262,53.596007527575054],[-124.95489544718508,53.59585987397259],[-124.95489400157199,53.59584193678736],[-124.95487790527218,53.59550067391979],[-124.95488607797206,53.59532486059483],[-124.95489779108384,53.5952347755112],[-124.95490803699194,53.59520349704904],[-124.95498750283947,53.59505351745216],[-124.95501769545422,53.59498151835072],[-124.95518698248458,53.594645791302014],[-124.95528960516731,53.59447808918843],[-124.95544461366754,53.59425930236987],[-124.95549786570031,53.59417350541547],[-124.9555929294892,53.59400517239895],[-124.95565660730935,53.593880821034794],[-124.95284153129965,53.59388533719959],[-124.9513610985988,53.5938880516961],[-124.95411929098083,53.590020324333906],[-124.95363789531697,53.58807408961946],[-124.95210983719815,53.58499447765966],[-124.95066142240461,53.582370942336745],[-124.94960408514449,53.57985611962933],[-124.94720775630162,53.57460438566401],[-124.94259406143655,53.56667675992944],[-124.93971238258075,53.55913959456831],[-124.88165828890735,53.55886532803123],[-124.87023669290441,53.55538236715284],[-124.84058454551715,53.55577615714168],[-124.81974233316943,53.56192946986956],[-124.80410769744995,53.56305740672589],[-124.78433121103377,53.562418719667974],[-124.76486315318688,53.561088121632906],[-124.75689003507635,53.55999714026601],[-124.75018524124883,53.55901356739812],[-124.74500376954657,53.558208064316275],[-124.74029766634405,53.55820729087724],[-124.73635972557211,53.55882728445286],[-124.73099955578688,53.55893518081568],[-124.72657411245754,53.55915699430111],[-124.72080898264106,53.56211928370674],[-124.71589830382527,53.56433535862885],[-124.7091816185231,53.56472740494453],[-124.70312795022919,53.56472013380015],[-124.69737882584023,53.56465313489377],[-124.69152026459012,53.564698374264474],[-124.68844884252123,53.565152071761396],[-124.68566675379274,53.565547252497375],[-124.68229875747784,53.566283226303035],[-124.67913284377887,53.56684656158399],[-124.67817072201642,53.56615866543717],[-124.6721222814684,53.565978466917144],[-124.67031575196111,53.56471812888415],[-124.67060509559903,53.56466196753268],[-124.66830643679342,53.5631748435977],[-124.66168769293527,53.56191051602847],[-124.65756837550296,53.56058315806166],[-124.65441103827011,53.55852424043788],[-124.6515520424904,53.555667525603525],[-124.65023137103249,53.55297825326828],[-124.64927865582489,53.551553002612565],[-124.64584250096098,53.549259885497],[-124.63932711630632,53.54816126010122],[-124.63683981879103,53.54741921641576],[-124.63358076499321,53.54575741401875],[-124.63147772552554,53.544837024881616],[-124.62927796250213,53.5431760248393],[-124.62824090250322,53.54112051306923],[-124.62527565294315,53.539288181465224],[-124.62250760810208,53.538367257642314],[-124.62089463622186,53.53682097085584],[-124.62030839497851,53.536250637234254],[-124.61791691187871,53.53538604587047],[-124.61418888673568,53.53423645130758],[-124.61083138258934,53.534234975951264],[-124.60757435965279,53.53485136745334],[-124.6038275525592,53.53563897152947],[-124.6002638066872,53.53592217928371],[-124.5964339820154,53.53556744588502],[-124.59366304265774,53.53475840499112],[-124.59051009943545,53.53406859203377],[-124.5895498244767,53.533840459718355],[-124.58619289964558,53.53337332549038],[-124.58417608190678,53.533083339213384],[-124.58198143909985,53.53268587902582],[-124.58201922067862,53.53291041122529],[-124.58325424867022,53.53485330605995],[-124.5849637571996,53.53708191102132],[-124.58466356235927,53.53925476402782],[-124.58168452809421,53.54102049050741],[-124.57802850823137,53.54266829611914],[-124.57272831116715,53.54505655699108],[-124.57051597215495,53.54693817243736],[-124.52972177686728,53.53806227633034],[-124.52390039693253,53.53456474205967],[-124.48789990116298,53.52711549063481],[-124.46326772239154,53.515919095291146],[-124.44240649133556,53.51220158620829],[-124.43243459657667,53.51205984357704],[-124.4230437019854,53.511744546642596],[-124.41557235151144,53.51103942501628],[-124.39797067326853,53.50921282711073],[-124.38543178243968,53.507053866336555],[-124.38133325824718,53.50476071341688],[-124.38596625090219,53.50140929907503],[-124.39292005472507,53.49623287665008],[-124.3963107177429,53.49173150585608],[-124.39598680805,53.48636666517029],[-124.39488359353506,53.48242277697987],[-124.39622619466319,53.4816805683321],[-124.39715869001814,53.474662478848764],[-124.39559058631487,53.46826511383925],[-124.39227674588031,53.464886943727436],[-124.38427744704313,53.46086146933132],[-124.37054098876689,53.45687928222409],[-124.35376470548013,53.45001968367617],[-124.3374570582116,53.445566619604904],[-124.32261559715732,53.445680242315994],[-124.30862372905267,53.44830796824185],[-124.29593991910906,53.45288237650285],[-124.28475449645362,53.45951701888168],[-124.28275024574397,53.46607256636757],[-124.28180933798964,53.47172510562935],[-124.27842237910296,53.47513596368133],[-124.27534742627728,53.475349261484155],[-124.27106150026604,53.47379013816944],[-124.26832853853234,53.47120457327289],[-124.26492363159608,53.46771047053935],[-124.26054314678308,53.465180281394446],[-124.25792756262946,53.460885054369854],[-124.24936748773716,53.45650483983974],[-124.24193496296473,53.44722574317171],[-124.23337999426734,53.44318782732464],[-124.22008337521332,53.43604674891428],[-124.21256774423064,53.43321789454838],[-124.20531959928472,53.43192275980073],[-124.19068848847743,53.43179445221615],[-124.18236620635957,53.43198097863008],[-124.1685775007589,53.432257263865864],[-124.16263877784928,53.4327972827657],[-124.15562891562335,53.43401578146276],[-124.15236017916735,53.4352560916889],[-124.14909884646126,53.435980941658315],[-124.14410981433922,53.43652639810476],[-124.13867366079597,53.43557815173918],[-124.13649352228116,53.435056031080805],[-124.12846772018908,53.43398272892627],[-124.11654298694452,53.43203427005257],[-124.11225462867604,53.43075328986046],[-124.09756372149168,53.42861558850053],[-124.09160601315473,53.42989420832692],[-124.08920593037955,53.43091026824812],[-124.08536807397196,53.43168521838997],[-124.07702973698503,53.432205928243135],[-124.07387993333722,53.43178858543686],[-124.06843199322033,53.431470081308646],[-124.05983637594328,53.43102108995824],[-124.0524536403699,53.43142957243442],[-124.04701644558894,53.43608154738383],[-124.04059586709162,53.4423762714204],[-124.03288631223654,53.44552777194568],[-124.02066234855158,53.44898771958581],[-123.99991231397826,53.45707495544681],[-123.99688376223106,53.458523567953506],[-123.99555527540532,53.458833521774764],[-123.9898361656515,53.4593844026177],[-123.98048424196784,53.460112235372435],[-123.96989959358089,53.4610301540956],[-123.96269665870273,53.460401279432936],[-123.95998618574161,53.45993185687624],[-123.95752145487494,53.462485182456604],[-123.9524945380113,53.465544188038585],[-123.94571791608645,53.46823103345428],[-123.93455219300111,53.471383983179145],[-123.92661811360259,53.47391187107251],[-123.92395541997081,53.474299254894454],[-123.908240585757,53.47620776445569],[-123.88956507580399,53.4762731997495],[-123.87563004502381,53.473111870602956],[-123.86655704508198,53.46913265901437],[-123.85514299001363,53.4687373408077],[-123.85013547264208,53.468301404855296],[-123.84960427217327,53.46687576103613],[-123.84397239729539,53.463012814347756],[-123.83947695872332,53.46291293519462],[-123.82815183383902,53.46463035470799],[-123.81455270919649,53.466780807706975],[-123.80866415868934,53.467899395102435],[-123.8056851206809,53.465651819627816],[-123.79947063085373,53.461168507997705],[-123.79587762502446,53.455385618307524],[-123.79105927210556,53.45225237604869],[-123.78155161823234,53.4467273762448],[-123.77228140971967,53.44274988746133],[-123.76679570792365,53.43945179780214],[-123.7577145508426,53.43255079012237],[-123.74790102368888,53.42416465436188],[-123.74075887370927,53.42032394274371],[-123.72791894355477,53.422279829794526],[-123.71529430309722,53.42469354239014],[-123.7020309943176,53.42551156181574],[-123.6832895677855,53.42331082281638],[-123.6664922511104,53.42200043270141],[-123.64544948089033,53.414336973770986],[-123.62449611788976,53.40896194272359],[-123.60518597582137,53.40687127263076],[-123.59774429003429,53.40960428777966],[-123.58624468917345,53.41415570661772],[-123.5720208193485,53.41514824936341],[-123.55270979401446,53.41539403693425],[-123.5313916955192,53.41538267790686],[-123.51377488022068,53.41503178911675],[-123.49640248840073,53.41336518490678],[-123.48995886227297,53.41212423642297],[-123.4868548020961,53.40827270041919],[-123.48653075905513,53.404102028493845],[-123.48713613014057,53.39952277268096],[-123.48558207672197,53.39347537444597],[-123.48575515828304,53.387297423496605],[-123.48459687511685,53.378674466764316],[-123.48015517913556,53.374554999505314],[-123.47234686448918,53.369789328867505],[-123.46526758497033,53.36095258265368],[-123.46103653248588,53.35739952201064],[-123.45266007414052,53.355389171096775],[-123.43732841581803,53.35379851215729],[-123.42514511539194,53.35223148904437],[-123.41488686912844,53.350977490454206],[-123.40823979460816,53.348825516611946],[-123.39322474885255,53.34534309087677],[-123.37761268368327,53.34060059041298],[-123.36784139617077,53.339571786704425],[-123.35824518062614,53.341282606706166],[-123.34293562052336,53.343050044906825],[-123.33326771046707,53.34253135772542],[-123.31655840744332,53.33928689847357],[-123.29275938435212,53.33507933761528],[-123.24619059419801,53.33208747219923],[-123.21791105419905,53.33112140647047],[-123.19893992797411,53.32833404811629],[-123.17395472321763,53.32252366572792],[-123.16147431313466,53.31578471912617],[-123.14597742599804,53.303409476669735],[-123.13955123303315,53.29186531808849],[-123.13875969842492,53.29044693304099],[-123.1370957638221,53.28880399763328],[-123.13207328896539,53.28964867837386],[-123.1281659548207,53.289801986966424],[-123.12646020229005,53.29010436511991],[-123.12549670054679,53.29011242736134],[-123.11930884598789,53.29016925844901],[-123.11596229623684,53.29026121928689],[-123.11159477579417,53.2907604822551],[-123.10721699268916,53.29096893080155],[-123.10389481100661,53.291800049523744],[-123.09879334785644,53.29355805578925],[-123.09643401557565,53.2943867249903],[-123.0893968517641,53.2914756590836],[-123.0863371076782,53.29133330507024],[-123.08174796603821,53.29046089202415],[-123.07466169673418,53.289148888607166],[-123.07177955731225,53.28883505545957],[-123.06646252249891,53.28956656630769],[-123.06381329103182,53.290446296106545],[-123.06162818344623,53.290925948227695],[-123.05850171842093,53.291525758637896],[-123.0568303617964,53.29348246285608],[-123.05527538431728,53.296356449305044],[-123.05400522999174,53.298597220523135],[-123.05357618139207,53.300429970558504],[-123.05233311056281,53.30055777656868],[-123.04822301036376,53.30036145669197],[-123.0465975912575,53.300146105644394],[-123.04401723770795,53.29959803463989],[-123.04187573966549,53.2977293069174],[-123.0396581378085,53.29694741829672],[-123.03704179845653,53.29520186982656],[-123.03319427100945,53.29363404079643],[-123.03137566449716,53.29381619224549],[-123.03015448889744,53.29406204832819],[-123.02734843238893,53.29288113858006],[-123.02447983774641,53.29216225722909],[-123.02386306592324,53.29045360890921],[-123.02126988289324,53.289673149731016],[-123.01906259798673,53.28918209859586],[-123.01818719401922,53.28815596063227],[-123.01645493231635,53.2875450332309],[-123.01452750997672,53.28692861311011],[-123.01391795641185,53.285337251937925],[-123.01747352464083,53.28250226597363],[-123.01822963376641,53.281808673550664],[-123.0158203532232,53.28120201747629],[-123.01325610017383,53.28151033204351],[-123.01123661787459,53.28049906620901],[-123.01102065778227,53.27930053227718],[-123.01032008646534,53.27793559852957],[-123.00754092942118,53.277670420317804],[-123.00496805507521,53.27746645064199],[-123.00113762985787,53.27675464038529],[-122.99763266151571,53.27781255512242],[-122.9966334992235,53.279592064830176],[-122.99550368082403,53.280458843723125],[-122.99199940766093,53.28128955211866],[-122.98965197403032,53.283194606732096],[-122.98519347074111,53.283688618998525],[-122.98221945926268,53.2831992408344],[-122.97782379527834,53.282604616512536],[-122.97353610883016,53.28281323497206],[-122.96847677254415,53.28245363491451],[-122.96397316529179,53.281689780390536],[-122.96222899814703,53.284391903127904],[-122.96596936178553,53.285730065281854],[-122.96743886672698,53.28726463786933],[-122.96750433185832,53.290121275231975],[-122.9693507241616,53.29164919007986],[-122.9700456150145,53.293078146656654],[-122.96874663231121,53.29440125253281],[-122.96704783465944,53.2952139985115],[-122.96501026192453,53.29780549985495],[-122.96334654677759,53.300218138275575],[-122.96026129850567,53.298753179847544],[-122.95791262393149,53.29626023513601],[-122.95467251657921,53.296112662515235],[-122.95288281927901,53.297553649880584],[-122.94877991650138,53.29747291824432],[-122.94848829856632,53.29713518502099],[-122.94414360878095,53.29436856988369],[-122.94112801894607,53.296107501121526],[-122.93778939842485,53.296073558446004],[-122.93273777662493,53.296002549376475],[-122.92951840575516,53.29722458678662],[-122.92619445551767,53.29822684211448],[-122.92012020460196,53.29958324429461],[-122.91499719755306,53.300481877085225],[-122.90966469900445,53.30115504886441],[-122.90782434135438,53.30408327973487],[-122.90739003818264,53.306310249858825],[-122.90651105264998,53.309467592848755],[-122.90359253541699,53.311487944834894],[-122.89932293087362,53.3128359998249],[-122.89382686685532,53.314477597903384],[-122.89000169005347,53.31387508740918],[-122.88887745484642,53.310339038133066],[-122.88794437888785,53.30645922359998],[-122.88540329115241,53.303564977716206],[-122.87970331696012,53.30491909016454],[-122.87728373931827,53.30791297323286],[-122.8736203525079,53.31062063709349],[-122.87508961335695,53.31232908711991],[-122.87896539568933,53.31549749262093],[-122.88272812789246,53.31775894884357],[-122.88562545061261,53.31950976602264],[-122.88708485863958,53.32115834709992],[-122.88713055653976,53.3229862878183],[-122.88629034175602,53.32396286353913],[-122.88365811786487,53.326157910988],[-122.88238566879639,53.32422095250514],[-122.88138637347818,53.32205397850907],[-122.87923006343624,53.319040779969704],[-122.8752507606393,53.3156392213354],[-122.87119135283643,53.313325401965784],[-122.86673773853089,53.31004165620476],[-122.8657639649935,53.308964069726265],[-122.86252357788999,53.304358620647136],[-122.86124589837652,53.30231133426542],[-122.858867474461,53.29786702616002],[-122.85589462659402,53.2921167024107],[-122.85426300473114,53.28715711123111],[-122.85229494964987,53.28368678788084],[-122.85100114654516,53.281064179775285],[-122.84722589991269,53.278230398124855],[-122.84230695016211,53.27500662035415],[-122.84018674677016,53.27399020191006],[-122.83622536199387,53.271449937010466],[-122.82802493409615,53.266080049389075],[-122.82265748044348,53.26405679119587],[-122.81635899126344,53.26381609692146],[-122.80910861582694,53.26363413366452],[-122.80339464394116,53.26361986873441],[-122.80062814948155,53.26380769151989],[-122.79464145046227,53.2640172392638],[-122.7889701156933,53.262057652941806],[-122.78731693882828,53.26006708263483],[-122.78388582350087,53.25437442432177],[-122.77681414357333,53.24813184778062],[-122.76964582374325,53.24160743660431],[-122.76457931045006,53.23455391845708],[-122.76122014263069,53.227597263716554],[-122.75947545858607,53.22115343583116],[-122.75704169944851,53.212537880515484],[-122.750066908756,53.20498089721799],[-122.74382538685487,53.19690410983467],[-122.73790699005507,53.19031290112207],[-122.73112749370931,53.183038617907656],[-122.72700029251166,53.17546207644144],[-122.72065069952646,53.165213210645646],[-122.71559878274552,53.1583854791399],[-122.70832607837245,53.15043014086324],[-122.69909443951549,53.143397068042994],[-122.69265441142323,53.13886627685169],[-122.6842251547109,53.134287713253926],[-122.6757307500431,53.131707130836375],[-122.66478178774584,53.13022600878065],[-122.655549246201,53.129421679558504],[-122.65002665919737,53.12853731751206],[-122.63956520184328,53.1271668916252],[-122.63347682328941,53.127371635023934],[-122.62376211899546,53.12548208496813],[-122.61411972613362,53.121760904324454],[-122.6090275746716,53.1179564336595],[-122.60591140296636,53.11905710547059],[-122.6049687254056,53.11940972109419],[-122.60300162324818,53.12113335187107],[-122.60197238803346,53.122563678758716],[-122.59942644967367,53.123837627168086],[-122.59754152230774,53.124533237429354],[-122.59593814529323,53.125455673318655],[-122.59292731966481,53.12747157304475],[-122.58942461113217,53.12851694632306],[-122.5836624012484,53.13117503246024],[-122.58000431998484,53.13450790081084],[-122.58021181817314,53.13565188929197],[-122.58157018550891,53.137586889981954],[-122.58158869944438,53.13884319733816],[-122.58160590061985,53.13993007703772],[-122.57856598044691,53.14080009024992],[-122.57574133368679,53.14178843618128],[-122.57367284012973,53.1436247884715],[-122.57329993916409,53.1439695681268],[-122.5702719378209,53.14524185942185],[-122.5678119529865,53.14616657082194],[-122.56593198052794,53.1478910463621],[-122.56481536217092,53.14926525937156],[-122.56225646723439,53.1497411071895],[-122.55920095985276,53.149128389397696],[-122.55654755215006,53.14873706455341],[-122.55329612714513,53.14795302312976],[-122.55017064096769,53.14893762507056],[-122.54858166650963,53.15094628381244],[-122.5444152788365,53.1519968270004],[-122.54298986369527,53.15199891373674],[-122.53986639375131,53.15258509657716],[-122.53656970350153,53.15528622728513],[-122.53318451752857,53.158329622100524],[-122.52806303150898,53.158753725895814],[-122.52435416024741,53.15860272299354],[-122.51998163137333,53.158676064236175],[-122.5156408008429,53.161096898704386],[-122.51197406705984,53.16425426951604],[-122.50686426116054,53.167250593182416],[-122.50488824158982,53.168460376016625],[-122.50469643053285,53.169146836314916],[-122.50500445159365,53.170686584584296],[-122.50321903313463,53.17194853159228],[-122.50247464843329,53.17332648688211],[-122.50117618974843,53.174143434645146],[-122.49982974677116,53.174995411563906],[-122.4965938267911,53.17546052269066],[-122.49557233675678,53.176555968127246],[-122.49520335505964,53.177928731482325],[-122.4948369633246,53.17872667058588],[-122.49551331278731,53.17998513009508],[-122.49552905882972,53.18124421379765],[-122.49430231605638,53.18227803958239],[-122.49204033882725,53.183483088794205],[-122.49053137261323,53.18520176276061],[-122.48805309774201,53.18412707450331],[-122.48557365341445,53.18397101466785],[-122.48263024028007,53.183977796613206],[-122.47968021156164,53.18370330902992],[-122.47888774719387,53.182221426756904],[-122.47554966815567,53.18138056117241],[-122.47203891186689,53.182250773126434],[-122.47016782258173,53.18380136644356],[-122.46988276767195,53.1839785138686],[-122.46903247398365,53.185350329320535],[-122.46693115273463,53.18444234845065],[-122.46625764194229,53.18387761805029],[-122.46570086581913,53.184790384434],[-122.46647079025782,53.18581849231954],[-122.46515820030001,53.18679114292331],[-122.46211066039731,53.18732154966898],[-122.459659268769,53.18915976818138],[-122.45671565013026,53.18934315333543],[-122.45654682037954,53.190998909560825],[-122.45703821724858,53.1924820375471],[-122.45295417025852,53.19300923796243],[-122.45133383009438,53.19370553938156],[-122.45020572917088,53.19462018292273],[-122.44794231630084,53.19617608192593],[-122.44795246770099,53.197484950233914],[-122.44521785100426,53.19892570156909],[-122.44330573546208,53.19933661379949],[-122.44122877272211,53.19974254986488],[-122.44114462467135,53.20145524220952],[-122.44088419012448,53.204369116237544],[-122.43968157725203,53.20723166803632],[-122.43867576152842,53.21060941930541],[-122.43679659194954,53.213472908504684],[-122.43615853785789,53.21587116374719],[-122.4362505293474,53.21638378897275],[-122.43502009514458,53.217075355051406],[-122.4346623258992,53.218109535676625],[-122.43304207142367,53.21914552011323],[-122.43305037036306,53.22011499514747],[-122.42877100760182,53.22007242219802],[-122.42649142175607,53.2201949290035],[-122.42423990679369,53.22069572826227],[-122.42364194228648,53.22083584782824],[-122.42088742799665,53.22124174917639],[-122.41554228044131,53.22012041627876],[-122.4134399743852,53.21903929889269],[-122.41028926158201,53.217741270418394],[-122.40837196288254,53.216431203299685],[-122.4050161620038,53.214898508715365],[-122.4043292964301,53.212905505830705],[-122.40182543987696,53.20913699272791],[-122.39981192209017,53.207376786705744],[-122.39636527934148,53.20515954129312],[-122.39169283204849,53.20357961495993],[-122.38862989869294,53.202154043584535],[-122.38355083554276,53.197433678670436],[-122.38028423766366,53.194185374491504],[-122.38008743034779,53.19332675251028],[-122.37665648879027,53.1930534973361],[-122.37189875191889,53.19301545524271],[-122.36866488950204,53.19359557381236],[-122.36591548011806,53.1936059844002],[-122.36162850877338,53.193157920536486],[-122.35914785077333,53.19196650801642],[-122.35694859379578,53.19134519939801],[-122.35474923535212,53.190551633245235],[-122.35189234773053,53.188503132537114],[-122.34959839190468,53.188112108251254],[-122.34758950756873,53.187203110728035],[-122.34588197771696,53.186978187043984],[-122.34492475691715,53.186412368637725],[-122.34282581296927,53.18515777178837],[-122.33967011174506,53.18414305941091],[-122.33862767758283,53.18300238661811],[-122.33773354675462,53.17997703141677],[-122.33620513846105,53.17820873419065],[-122.33295434264082,53.17604767086528],[-122.32885887630017,53.17531932403661],[-122.32544012746176,53.17527040809087],[-122.32183117052077,53.175164428697656],[-122.31953829033661,53.17459948256333],[-122.31686491602228,53.173922238385515],[-122.31354105576668,53.173474840552046],[-122.3134406954799,53.17290402491085],[-122.31246881262389,53.17096535714737],[-122.3100862310569,53.170228009832165],[-122.30800434469273,53.1710336614849],[-122.30583768232366,53.17332429758857],[-122.30537251142792,53.17486811756858],[-122.30517749297248,53.175038168494616],[-122.30500240058021,53.1766981932567],[-122.30492747789354,53.178586285003924],[-122.30168900542769,53.17956270223989],[-122.30008195570377,53.18042570343374],[-122.30085805011542,53.18150906087082],[-122.29847012459332,53.181514041004625],[-122.29608731439971,53.18060364384523],[-122.29408952027583,53.18026958329784],[-122.29267292354922,53.18032842343021],[-122.29009466923561,53.18010737098516],[-122.28839257200248,53.18051061580561],[-122.28658037856452,53.18011549802836],[-122.28582409519007,53.18086196207206],[-122.2835512017311,53.181779017187395],[-122.28125812573086,53.18172941119525],[-122.27841925071942,53.18293319358258],[-122.27766252723553,53.184023474741615],[-122.27662607044638,53.1843678375695],[-122.27567908644339,53.18625318403855],[-122.27321458528291,53.188145154292386],[-122.26856235171722,53.188956695637444],[-122.26609314775946,53.1895362743041],[-122.26553662952306,53.190905436148846],[-122.26477887739898,53.192851654792676],[-122.26394152286308,53.194508139071154],[-122.26299859433254,53.196338551680626],[-122.26139467376032,53.19765891617139],[-122.25931447792073,53.19977649802544],[-122.2571300275824,53.200694203231954],[-122.25331728814224,53.20167589896571],[-122.25095197912765,53.20276671864654],[-122.25029949216628,53.204193931642735],[-122.24964643899436,53.205965552151746],[-122.25069631715714,53.20801830626182],[-122.25100416815454,53.210306165838126],[-122.24938990022736,53.21122495952923],[-122.24577730588956,53.21180159334177],[-122.24349234422145,53.21231814838945],[-122.24063600017658,53.2126689900762],[-122.23825144862491,53.21244628478352],[-122.23796620762803,53.212105681157105],[-122.23586406787503,53.21056911333169],[-122.23443268519524,53.20993793900184],[-122.2305258933817,53.20943160393998],[-122.2287276866594,53.20903943165522],[-122.22616267883234,53.209325707994076],[-122.22320169542782,53.209334515432516],[-122.22100775633419,53.20916746611882],[-122.21940406218164,53.20962507907154],[-122.21759948242698,53.210144137920615],[-122.21568570744476,53.21020415965955],[-122.21331077773321,53.210379552311366],[-122.21026942861037,53.21044549913811],[-122.20817291126345,53.20936017646821],[-122.20655531710173,53.208966722245414],[-122.20446162245321,53.20885529987599],[-122.20179630566837,53.209085104786006],[-122.19856717989593,53.21023641913698],[-122.19695799288776,53.21275465274611],[-122.19572562283433,53.21492482473484],[-122.19363164693023,53.214646600040425],[-122.19020564130028,53.21430753676696],[-122.18667512542132,53.2136284083954],[-122.18373422553012,53.213576855083915],[-122.18164120434565,53.21328946843771],[-122.17973229513224,53.213292972548395],[-122.17859248494595,53.21409769508664],[-122.17621796077054,53.2157579021056],[-122.17309261499233,53.21707684292907],[-122.17089660022035,53.21759266493115],[-122.1678550734547,53.21765303921594],[-122.16633219124958,53.21754091599658],[-122.16442370582958,53.219026936739645],[-122.16319763807208,53.22011427704931],[-122.15929800187831,53.22200525576819],[-122.15473488037736,53.222759291422896],[-122.15120953159769,53.22350537013558],[-122.14940553227153,53.22350676541733],[-122.14435436573264,53.223510173553144],[-122.14246319862279,53.22397202286528],[-122.13941665809176,53.2252320919775],[-122.1368554555523,53.226607788141],[-122.1341826280445,53.22837979032019],[-122.13333904295123,53.23003979198667],[-122.12962180365025,53.230899608382344],[-122.12629855118766,53.23090487140832],[-122.12372079317811,53.231305824659785],[-122.12221181744276,53.23267469591213],[-122.11973393303032,53.23296888504888],[-122.11668008306339,53.23331257998558],[-122.11429984372866,53.23434198926676],[-122.11050002235238,53.23543640390898],[-122.10812492756178,53.23640695375257],[-122.10659499035476,53.236691055561806],[-122.10346946369486,53.23943606913724],[-122.10270812877621,53.24035243023938],[-122.10194463469215,53.24178037188577],[-122.10147126233574,53.24332332790619],[-122.10109559258903,53.244296694074464],[-122.09996126084175,53.24892260861735],[-122.09759738932065,53.255779614058106],[-122.0946649289495,53.26389417474027],[-122.0903025699275,53.27800541466003],[-122.08916798285975,53.282286739148034],[-122.08794426993963,53.28817523566679],[-122.08727937041479,53.29177075216683],[-122.08518873024262,53.2953130489502],[-122.08423285422303,53.295714609475],[-122.08204756960507,53.296057617198606],[-122.0779465814341,53.29692017700614],[-122.07250559201523,53.29777751279436],[-122.07202798330655,53.297892981008985],[-122.06975022423154,53.299548312292764],[-122.0694556700278,53.30109202392011],[-122.06488682059621,53.302924372223394],[-122.062792225187,53.30309669707544],[-122.06088359711818,53.30321288075699],[-122.05801870420095,53.30372981786636],[-122.05506201247822,53.30538757756766],[-122.05192501939278,53.30607317931614],[-122.0464876719855,53.30687228092438],[-122.04439139097948,53.307219832483156],[-122.04029275313702,53.3099601246038],[-122.03427261244559,53.31150112116572],[-122.02912101381699,53.31133448064467],[-122.02597795615966,53.31127584847557],[-122.01720116972477,53.31025452088837],[-122.01166472333988,53.30922140950868],[-122.00498979466933,53.30796456303332],[-122.00366397285865,53.307966484860444],[-121.99960348534687,53.306625099482424],[-121.99855366780847,53.30657623883188],[-121.99711290050676,53.30620279248392],[-121.99596630872288,53.30622133684496],[-121.99494029312903,53.30703166047943],[-121.99284447995623,53.30689358079954],[-121.99023407968089,53.30630606301949],[-121.99020096004094,53.305387620223364],[-121.99023702580253,53.30390034944746],[-121.98834765567987,53.30444355261681],[-121.98725511080987,53.30326205056303],[-121.9875560964581,53.30136631551704],[-121.98618844641234,53.30070232558517],[-121.98458715298037,53.30106838298163],[-121.97993205320692,53.30171026031883],[-121.97946449694778,53.30171686042596],[-121.97614912679755,53.30268115819791],[-121.9724386096383,53.302734807630266],[-121.96824781399782,53.30308509871047],[-121.96457023888684,53.304052478267145],[-121.96325949060113,53.3045268872258],[-121.96071377877043,53.305312714973354],[-121.95534767483039,53.307388804667774],[-121.95412354343911,53.31009689501318],[-121.9539541497233,53.31295931844379],[-121.95243327106445,53.31561686988145],[-121.94827676592502,53.31653492200527],[-121.94778195031122,53.3163530741606],[-121.94721387612977,53.316149646141845],[-121.946437116381,53.31341705506624],[-121.94608394195461,53.30941462429332],[-121.94574821936729,53.30335250184838],[-121.94562298512237,53.2979214704296],[-121.94545461029912,53.294035286833164],[-121.93797813899644,53.295512138244085],[-121.93003158051111,53.297172156369385],[-121.92531493689934,53.29844439223738],[-121.9186591709659,53.29905107857855],[-121.90866916170711,53.299711905341695],[-121.90025956344837,53.301774294143314],[-121.89517844458503,53.30367972930983],[-121.8871714871287,53.306540145519755],[-121.8832168837376,53.30785122632712],[-121.87117622061912,53.310190735540324],[-121.85910107020976,53.311333255155],[-121.84814205950534,53.31153896239955],[-121.83847640190403,53.311157189049],[-121.83482693904114,53.31057969398396],[-121.81963739772362,53.30740879332144],[-121.81232689686621,53.30350136606875],[-121.80704183403783,53.30014313087531],[-121.79389267762086,53.28744906373916],[-121.7892805262753,53.28402116629989],[-121.78101626105256,53.27692167791684],[-121.7743252448046,53.27397914000325],[-121.76184436523108,53.266193490806465],[-121.75224365708178,53.26168363621593],[-121.73412468579386,53.25362516069206],[-121.7292438540952,53.25323105045415],[-121.72401330222043,53.2534672379739],[-121.72093434734086,53.25533768284739],[-121.71880824649847,53.25730701596232],[-121.71432700455802,53.259938688411616],[-121.71312698495662,53.25812189745025],[-121.7089777607934,53.25423019255195],[-121.70183279934612,53.251688253371114],[-121.68438021835892,53.251217746550346],[-121.66708592597311,53.238510677232256],[-121.6561070693716,53.238189371654656],[-121.64398537464466,53.24005032660888],[-121.64038939565778,53.24369461728675],[-121.63592729749219,53.2471233833089],[-121.6314755754086,53.24826476307597],[-121.62729686734366,53.248366534288884],[-121.61318818248738,53.248308553527245],[-121.60547749156419,53.24851276190605],[-121.60051745220923,53.25177648027734],[-121.59565317574447,53.25440373080037],[-121.58740859129709,53.256102377782184],[-121.58287015921357,53.257186024212245],[-121.57760364480778,53.253295889483326],[-121.57187853260051,53.24690191301837],[-121.56678826986494,53.24278765706047],[-121.56059349917307,53.233593130546836],[-121.55842766195214,53.22515552823107],[-121.55709065774845,53.222139530480476],[-121.55704894094043,53.221106885660895],[-121.55262510646665,53.219559448849],[-121.54853242537824,53.21943818495457],[-121.54360595854035,53.22023510506967],[-121.54058202372079,53.22124270648139],[-121.53356520319753,53.22246114562267],[-121.52784945924786,53.22218363571966],[-121.52213956825445,53.22241854385827],[-121.50901790318548,53.223190642183425],[-121.50226839167316,53.223721950489484],[-121.48993945570938,53.22551168869642],[-121.4812377870477,53.22755149069467],[-121.47753200640723,53.23125227637445],[-121.47654922789044,53.23326357126498],[-121.471054599017,53.23778216802382],[-121.46160416002043,53.24045494728477],[-121.4544065668613,53.241619866244825],[-121.44345205131333,53.24161882594079],[-121.43190186855624,53.24197608117264],[-121.428084396867,53.245404557178155],[-121.42808184069136,53.24640028415969],[-121.42857830235506,53.247790804018095],[-121.42846843965765,53.24824911170084],[-121.42721516934269,53.24884236089632],[-121.42560893147136,53.24977560726528],[-121.42008630030669,53.251152528472446],[-121.41203105852749,53.2509009008489],[-121.40993775079951,53.25436980358848],[-121.40974089435863,53.25479554020456],[-121.40475126470147,53.25845356959942],[-121.40508334573752,53.25885995192493],[-121.40531966941668,53.25890167461051],[-121.40361425141643,53.2593553441324],[-121.40342003639044,53.259341639725996],[-121.39828786196347,53.25974252091877],[-121.3986558421037,53.266856826920225],[-121.40352340177944,53.26709567978848],[-121.41531148887603,53.26724971822006],[-121.41528590122901,53.27080877568252],[-121.41517316925447,53.28375514630432],[-121.3442233512123,53.283896338779584],[-121.33815957556234,53.28369622825333],[-121.26952541325035,53.29094362812431],[-121.22559763665055,53.32915297460155],[-121.22611857863349,53.336795278825775],[-121.21745139565223,53.338994711338124],[-121.20909593646637,53.33884473179366],[-121.20099282257196,53.33833382507764],[-121.20059205372027,53.33668888548102],[-121.19806133428646,53.33520314326185],[-121.18948170332135,53.335964583041736],[-121.18381726471003,53.33906313313641],[-121.17803527761347,53.34199497037214],[-121.1696254142913,53.343232429844846],[-121.16681044277392,53.343701769778235],[-121.15826433454053,53.346903633593904],[-121.15696286086859,53.347952689372065],[-121.15686038007554,53.34812200421022],[-121.15675796329576,53.348290755640264],[-121.15665548188666,53.34846006133202],[-121.15655494088826,53.34862888914564],[-121.1564542704305,53.34879883452924],[-121.15635554041283,53.34896830204106],[-121.15626788179924,53.349139901046954],[-121.15620055331566,53.34931513220958],[-121.15613691434734,53.34949107981364],[-121.1560290514253,53.349657928684536],[-121.15588810130181,53.34981724702471],[-121.15574540130683,53.349975370916425],[-121.15559544764768,53.350130952876],[-121.15543642763353,53.3502833529664],[-121.15526290018914,53.350430678237636],[-121.15507331100181,53.35057004443706],[-121.15487666147847,53.35070518756293],[-121.15467994582549,53.350840893658244],[-121.15449572801307,53.350982724094],[-121.15433126077579,53.35113322075186],[-121.15418485925356,53.351290635058824],[-121.15405309184604,53.35145200625024],[-121.15393407907277,53.35161727562667],[-121.15385009635602,53.351789580245836],[-121.15380696834079,53.35196748699058],[-121.15374713437579,53.35214303198603],[-121.15363731376704,53.352310356197066],[-121.15351279394427,53.35247426857336],[-121.15341035318123,53.35264301675597],[-121.15332630138927,53.35281588422007],[-121.15324781685169,53.352989544833825],[-121.15316382859396,53.353161848851265],[-121.15307057924343,53.35333266085735],[-121.1529791429058,53.35350410378124],[-121.15292111708591,53.35368027923293],[-121.15285383129785,53.35385495374584],[-121.15277346625086,53.35402852836926],[-121.15269672607099,53.354203382825006],[-121.15262186395682,53.354378304925135],[-121.15254324483085,53.354553082601356],[-121.1524609994854,53.354726580302255],[-121.15237324812757,53.354898739248966],[-121.15227817893296,53.35506891053153],[-121.15217216519375,53.355235823157486],[-121.15205514086364,53.35540004934063],[-121.15192717177906,53.35556101680689],[-121.15178631519919,53.35571921215922],[-121.15163814033201,53.35587541970898],[-121.1514845238306,53.356029725038866],[-121.15132352401459,53.356182605816514],[-121.15115889633371,53.35633421535903],[-121.15099064076365,53.35648455365165],[-121.15082244789122,53.35663433733629],[-121.15065425485363,53.356784111830784],[-121.15048800230585,53.356933408401886],[-121.15031812184434,53.35708143369863],[-121.15014454850743,53.3572287510053],[-121.14997110383958,53.35737494144941],[-121.1497939662667,53.35752042388262],[-121.1496168274706,53.35766590604153],[-121.14943975136947,53.357810833568585],[-121.14926079725547,53.35795567517728],[-121.14908365478856,53.3581011565108],[-121.14890838893639,53.358246714279],[-121.14873299298533,53.358393389433736],[-121.14856135151402,53.358540217747766],[-121.14839139284071,53.35868880347332],[-121.14822862268,53.35884048548897],[-121.14807304107372,53.358995263823765],[-121.14792102019398,53.359151876343596],[-121.14777081109357,53.35930912868123],[-121.147618852934,53.35946517749312],[-121.14746326574948,53.35961996392384],[-121.14730236655316,53.35977172133386],[-121.14713440634796,53.359919255312796],[-121.14695575718805,53.360061303641416],[-121.14676279213873,53.36019659513539],[-121.14655195027711,53.36032328634491],[-121.14632873434319,53.360442742959],[-121.14609295244736,53.360556627974375],[-121.14585198737095,53.360666365996174],[-121.14560570913456,53.360773083585585],[-121.14536143658447,53.36087875977364],[-121.14511722678887,53.36098388110023],[-121.14486427201396,53.361083020868065],[-121.14459926635753,53.361172127108],[-121.14433166477318,53.36125102035047],[-121.14404033676995,53.361273919636226],[-121.14373831425507,53.36127504535762],[-121.14343986101873,53.36129428306608],[-121.143145105726,53.36133051514007],[-121.14286272755727,53.36139027715819],[-121.14260147167626,53.361479532541836],[-121.14237117876247,53.36159475819293],[-121.14217793485638,53.36173226849862],[-121.14204064793748,53.36189172310189],[-121.14191054874213,53.36205428339623],[-121.14174955622175,53.36220658746487],[-121.14154743277399,53.362339250954975],[-121.14129135092776,53.36243264118203],[-121.14100001856637,53.362471820161176],[-121.14069838110498,53.36248586344084],[-121.14039971847137,53.362490487294316],[-121.14009813857508,53.36248769648866],[-121.13979998741131,53.36247156110834],[-121.13950105568561,53.362445852627424],[-121.13920400233113,53.36242022025678],[-121.13890636759758,53.36239962100588],[-121.13860672701628,53.36238005283991],[-121.1383091579636,53.36235888880266],[-121.13801217002293,53.362332699104286],[-121.13771848259671,53.36229428255404],[-121.13742764218252,53.362247564331064],[-121.13713686650013,53.36220029104613],[-121.13684790536995,53.36215364829791],[-121.13655913922983,53.362105323915934],[-121.13626862396333,53.36205581322496],[-121.13598471312145,53.361998145794075],[-121.13570339239674,53.36193440311439],[-121.13541501579392,53.36188273197291],[-121.13511777552387,53.36185876137894],[-121.13481820774128,53.36185491647397],[-121.1345174124121,53.361861683905545],[-121.13421836567532,53.361869645154655],[-121.13391782872783,53.36187417579461],[-121.13361722758314,53.36187926002319],[-121.13331669050244,53.36188378914427],[-121.1330150512793,53.361881534728],[-121.13271729405521,53.361862037622416],[-121.1324238734011,53.36182137271913],[-121.13213984006373,53.36176481374072],[-121.13186312286534,53.361693955757694],[-121.13161023273193,53.36159656634223],[-121.13140655505403,53.361465250776355],[-121.1312190654115,53.361324500985845],[-121.1310395420649,53.36118014266158],[-121.13083191774516,53.361050353025874],[-121.1305787109328,53.36095575100232],[-121.13029526865697,53.36089415377038],[-121.13000095029979,53.36086131525024],[-121.12970048317804,53.36084899372457],[-121.1293991103741,53.360844494871145],[-121.12909987438442,53.36083783701007],[-121.12879979596613,53.36082216031089],[-121.1285023722779,53.360799854092896],[-121.12820287734958,53.360779142072545],[-121.12790422401021,53.36076745633091],[-121.12760388894863,53.36077029010316],[-121.12730413608553,53.36078438541571],[-121.12700541988575,53.36080581715482],[-121.126708063376,53.360831795723215],[-121.12641219595017,53.360861203500974],[-121.12611619861575,53.36089172817196],[-121.1258201366187,53.360922806449906],[-121.12552685816364,53.36096242483228],[-121.12523804723732,53.361012332393884],[-121.12494917034513,53.361062802537454],[-121.12466042333199,53.36111214540952],[-121.1243715450635,53.36116261414788],[-121.12408441551378,53.361214267970034],[-121.12379883877315,53.361268796740084],[-121.12351623975589,53.36133018480047],[-121.12324341689204,53.361404892040824],[-121.122973831644,53.36148421445067],[-121.12270094254518,53.361559474783505],[-121.12242313090785,53.3616283606402],[-121.1221373553234,53.36168455737722],[-121.12184872933048,53.36173278472521],[-121.12155667135211,53.36177805856035],[-121.1212633186397,53.361818220755445],[-121.1209687998943,53.361852162618945],[-121.12067305094064,53.361880438483354],[-121.1203740642957,53.36190408880338],[-121.12007540094386,53.36192494878643],[-121.11977686800057,53.361944681456414],[-121.11947839909641,53.36196385903659],[-121.11917980023762,53.361984153489075],[-121.11888281966014,53.36200675961632],[-121.1185853842993,53.362033281144384],[-121.11828924335447,53.36206490394125],[-121.1179957558156,53.36210617569266],[-121.11771650947138,53.36217105720151],[-121.11745182876102,53.36225675004746],[-121.11719912508354,53.36235304133623],[-121.11695146978732,53.362454597477196],[-121.11671236029675,53.36256379923062],[-121.11648898354369,53.36268375404403],[-121.11629027575326,53.36281875531362],[-121.11612381223043,53.3629685666677],[-121.11598642267971,53.36312799109296],[-121.11587085487552,53.36329448453369],[-121.11577743190534,53.36346526642118],[-121.11571366815767,53.363640627855375],[-121.1156759356355,53.363819314681884],[-121.11566074023509,53.36399891934319],[-121.11567390948551,53.3641780105346],[-121.11570974522691,53.364356910886485],[-121.11575523112478,53.36453396213967],[-121.11580058762405,53.36471213097606],[-121.1158517085084,53.36488941385486],[-121.11593741396551,53.36506138112745],[-121.11608535975421,53.36521738339851],[-121.11626679255717,53.3653612779474],[-121.1164582649026,53.365499979172675],[-121.11665576315613,53.3656355499431],[-121.11684931129751,53.365772646842856],[-121.11704078743065,53.36591134710255],[-121.11725448222901,53.366037475992535],[-121.11748650761844,53.36615201448535],[-121.1176842063228,53.36628591154977],[-121.11784194384796,53.36643893575643],[-121.11798789364516,53.36659597597414],[-121.11812400020501,53.36675653721966],[-121.11824262105151,53.36692142837355],[-121.11835340530139,53.36708880914716],[-121.11847202694376,53.36725370898631],[-121.1186022434702,53.36741627330098],[-121.11872669669287,53.367579723523384],[-121.11884337863648,53.3677451001059],[-121.11894840308987,53.36791336632617],[-121.11904371352847,53.36808403611489],[-121.11911978795975,53.368257850160475],[-121.11916140622377,53.368435863032126],[-121.11917264812814,53.368615439546886],[-121.11916692150974,53.36879487578322],[-121.11914798267553,53.36897432609502],[-121.1191140164837,53.36915316790008],[-121.11906515452816,53.369330265686756],[-121.11899763798115,53.36950548295783],[-121.11891716791091,53.36967847900795],[-121.11882374417058,53.3698492538115],[-121.11871373868436,53.37001654429277],[-121.11858358975752,53.37017851513819],[-121.11843336155236,53.370334611945324],[-121.11827594377375,53.370487601273865],[-121.11812396576714,53.37064249391832],[-121.11798830735589,53.37080311486461],[-121.11787460371696,53.37096969576191],[-121.11779781859428,53.371143399664135],[-121.11777887183321,53.3713228584924],[-121.11782618796803,53.37150053988491],[-121.11794099885772,53.37166583983569],[-121.11812842476975,53.37180717311541],[-121.11837551473646,53.37190604002519],[-121.11865856015264,53.37197157250916],[-121.11892897347691,53.3720483806623],[-121.1191798235446,53.372147400253006],[-121.11941616451608,53.372257609590676],[-121.11963793005806,53.372379580979484],[-121.119819599878,53.372521797650684],[-121.11993429167889,53.372688213211376],[-121.12004328474843,53.37285495149408],[-121.1201930872373,53.37301157956169],[-121.12030609740857,53.37317624560866],[-121.1203552393841,53.37335456627254],[-121.1203892897117,53.37353282397166],[-121.12044620572831,53.37370921796793],[-121.12052611739752,53.37388263061259],[-121.12062151205951,53.37405274430069],[-121.12073621119787,53.37421915896378],[-121.12084125935708,53.3743874229795],[-121.12090387932126,53.37456348485815],[-121.12093793191089,53.374741751235845],[-121.12096622055974,53.37492089481583],[-121.12099262987338,53.37509997016557],[-121.121019040449,53.37527903655281],[-121.12104739412244,53.3754576257289],[-121.12106998267402,53.375637101056014],[-121.12109069284753,53.375816499215745],[-121.12111710325203,53.375995574459424],[-121.12114539350517,53.37617471788711],[-121.12118864740128,53.37635504173719],[-121.12134799037555,53.376494658095],[-121.1216278960225,53.37657128238161],[-121.12187903868822,53.37666806083084],[-121.12203708964547,53.37681884346465],[-121.12211306255757,53.37699377246931],[-121.1221395433917,53.37717228410456],[-121.12214510009672,53.377352182516255],[-121.12216393704433,53.37753150320836],[-121.122192231745,53.37771065519373],[-121.12223005070034,53.377889066246304],[-121.12225270990301,53.37806798679828],[-121.12221693622521,53.37824618828651],[-121.12210867131684,53.378414675964834],[-121.12192623157019,53.37855541352665],[-121.12168017710805,53.3786587277924],[-121.12143399176388,53.378763159158694],[-121.12128069983663,53.378912953272454],[-121.12116336061256,53.379078255808835],[-121.12095059714966,53.37920371463888],[-121.12069067396699,53.379296351106774],[-121.1204194143902,53.3793728003156],[-121.12013649491105,53.37943585175119],[-121.11984489553531,53.37947609620409],[-121.11954390760013,53.37948338004952],[-121.1192449942843,53.37947279028626],[-121.11894459265639,53.37945876081578],[-121.11864529041343,53.37945152238039],[-121.11834339639121,53.37945034839077],[-121.11804305721483,53.37945204038627],[-121.11774316817977,53.37946611147628],[-121.11744981840003,53.379505146308816],[-121.11717045584267,53.37957002598294],[-121.11690236097144,53.3796516552954],[-121.11664430485696,53.37974436011811],[-121.1164175341522,53.379860243252594],[-121.11620805625454,53.379989755156],[-121.11598283670223,53.38010851316303],[-121.11576992277126,53.38023508027509],[-121.11559082197802,53.38037931528322],[-121.11542422215082,53.38052967870339],[-121.11525956535237,53.38067955584468],[-121.11510021858918,53.38083246295905],[-121.11496276688138,53.38099188480791],[-121.11485828789411,53.3811599658184],[-121.11477032877704,53.38133208582307],[-121.11466759712721,53.38150136149088],[-121.11455935909723,53.38166927875938],[-121.11449938478182,53.38184423814858],[-121.11447854031387,53.3820236182624],[-121.11441292862882,53.38219834582341],[-121.11431576556232,53.38236840720546],[-121.11424633052931,53.38254353446927],[-121.11419555265935,53.382720560783056],[-121.11414477540151,53.3828975781192],[-121.11409211779613,53.383074527101705],[-121.11401898731329,53.38324894532609],[-121.1139126211012,53.3834169391223],[-121.1138173321062,53.38358707725681],[-121.11377400239408,53.38376496667927],[-121.11376442740378,53.383944810074624],[-121.11378517600498,53.384123645506584],[-121.1138305452696,53.38430181338792],[-121.11388174606941,53.384478541084455],[-121.11392329379477,53.38465710870921],[-121.11394592134245,53.38483603025211],[-121.11395902538969,53.38501567414019],[-121.11396266920298,53.38519549498619],[-121.11395316015958,53.38537477499987],[-121.11393224718901,53.38555470904101],[-121.11387777183575,53.38573101716863],[-121.11384597401455,53.38590713479102],[-121.11397260223325,53.38606843056734],[-121.11416396686903,53.386208806015595],[-121.11435358363866,53.38634798629068],[-121.11454514511772,53.38648668917347],[-121.11473469997992,53.38662642315367],[-121.11491239686774,53.38677072704099],[-121.11505639729073,53.38692880965472],[-121.11517110950946,53.38709522863809],[-121.11525873645833,53.38726727177497],[-121.11530236613126,53.387444243981136],[-121.11531547677771,53.38762388749234],[-121.1153494518566,53.38780270866622],[-121.11540059887703,53.38797998973998],[-121.11545181073998,53.38815671644543],[-121.11550678230942,53.38833358864296],[-121.11555987417499,53.38851039250651],[-121.115616725795,53.38868734185684],[-121.11567558585554,53.38886325973535],[-121.11573632659758,53.389039245860126],[-121.11580089057367,53.3892148320685],[-121.11586739866316,53.38938994112534],[-121.1159414894506,53.389564795770696],[-121.1160195345164,53.38973812393441],[-121.11608986816762,53.389912824004334],[-121.11614108527493,53.39008955024765],[-121.11616936382545,53.390268693629835],[-121.11619388314888,53.39044769148256],[-121.11622786423749,53.39062651216094],[-121.11626372484534,53.39080541003712],[-121.11626368597061,53.39098451259014],[-121.11620921335512,53.39116082132051],[-121.11610277044656,53.39132937970048],[-121.11597066632767,53.39149126878085],[-121.11580953182194,53.39164298121312],[-121.11559500495781,53.3917666715994],[-121.11534024062537,53.39186288031905],[-121.11508210622083,53.39195558120448],[-121.11482397067945,53.39204828152604],[-121.11457950385021,53.39215333854852],[-121.11435946279751,53.392275677329366],[-121.11415536034077,53.39240708852634],[-121.11396000251102,53.39254448259674],[-121.11377734437099,53.392686324297635],[-121.11359630446378,53.392830478170204],[-121.11341889202977,53.392975903891084],[-121.1132451725784,53.39312203820683],[-121.11306957154682,53.39326810392623],[-121.11289759907142,53.393415432584845],[-121.11273100249143,53.39356523695518],[-121.1125752920195,53.39371884861776],[-121.11242495753189,53.39387493604947],[-121.11226924479769,53.39402854728878],[-121.1121099011098,53.39418089508106],[-121.11198146698219,53.39434348841499],[-121.1119401278048,53.39452033593686],[-121.11197214920769,53.394699643454615],[-121.11203865107592,53.394874745244934],[-121.11213010470709,53.39504639028852],[-121.11223322655378,53.39521513723892],[-121.11233440429586,53.3953843700696],[-121.11243370341595,53.39555352551729],[-121.11254654932564,53.39571986905201],[-121.11245659599433,53.395713924318976],[-121.11242945335356,53.39588237210887],[-121.11223945218637,53.396022230165265],[-121.11205495920501,53.396163428430825],[-121.11189197770553,53.396314503601154],[-121.11174895485533,53.39647257107151],[-121.1116259552831,53.39663707658555],[-121.11151040823067,53.396802445477164],[-121.1113929797337,53.39696774588465],[-121.11128287384878,53.3971350272885],[-121.11114885346272,53.397296833261905],[-121.11095009516526,53.39743070574083],[-121.11065855790123,53.397469246472866],[-121.1103568540825,53.39748154065611],[-121.11005522108817,53.39747699287407],[-121.10975585780261,53.39746916887824],[-121.10945474516353,53.39746014920815],[-121.10916096776135,53.3974205541629],[-121.10887912526084,53.397359547598576],[-121.10859961885807,53.39729470167154],[-121.10831583295055,53.39723417969182],[-121.10803172316119,53.39717644653842],[-121.10775708355453,53.397102258288406],[-121.1074931433886,53.397017280313925],[-121.10722311096826,53.39693597674657],[-121.10694367446627,53.396870572594494],[-121.10666443349582,53.39680349587181],[-121.10639829312996,53.39672122758498],[-121.1061473266935,53.39662218223118],[-121.10590258495597,53.39651834382709],[-121.10564967688028,53.39641977435193],[-121.10541336645278,53.39630842137799],[-121.10517893776763,53.396197136386064],[-121.10495507799878,53.396076188589305],[-121.10474327821841,53.39594899033003],[-121.10458554334208,53.39579538769356],[-121.10441380696231,53.395648511753606],[-121.1042480360125,53.39549906935582],[-121.10409808264477,53.395343540516095],[-121.10388213975645,53.39521953861016],[-121.10362074960867,53.395129041459086],[-121.10335261513467,53.39504781540179],[-121.10309479117852,53.39495914385023],[-121.10289337567075,53.394823951960696],[-121.10265059742692,53.39471962095187],[-121.10239965174125,53.39462056760224],[-121.1021157625392,53.39456114835086],[-121.10182454390369,53.39451601572795],[-121.10153319459914,53.394472008916644],[-121.10126052910336,53.39439731977621],[-121.10096275255134,53.39437606264979],[-121.10066384921774,53.394396873564375],[-121.10036314214113,53.39440075609411],[-121.10006262992333,53.3944029659606],[-121.09977134891327,53.3943583915733],[-121.0994712374398,53.39434096924138],[-121.09917391880896,53.39431579163211],[-121.09887438402582,53.39430962110586],[-121.09857486027514,53.39428716292673],[-121.09828559132966,53.39424154482244],[-121.09802817401564,53.39414950952091],[-121.09781659986128,53.39402062691991],[-121.09760891602431,53.39389078138915],[-121.09738081017547,53.39377413450272],[-121.0971505665803,53.39365963586743],[-121.09694094155516,53.3935302748845],[-121.09670655073882,53.393418973060605],[-121.09648072039833,53.39329904921557],[-121.09625054652189,53.39318399449367],[-121.09602860876566,53.39306309833488],[-121.09580680163968,53.392941093116924],[-121.09559497955115,53.392814441650096],[-121.09540144203648,53.392676748724675],[-121.09520998015536,53.392537461133315],[-121.09499621689913,53.39241129428062],[-121.09478252065777,53.392284563777075],[-121.09458691282099,53.392148472767616],[-121.09439733528141,53.392009261398705],[-121.09418364288356,53.39188252979542],[-121.09397792577471,53.39175219210831],[-121.09377836836705,53.3916176254223],[-121.09361854960362,53.39146616551239],[-121.09339883329658,53.39134255245765],[-121.09321496668538,53.391203008644005],[-121.09298507412946,53.39108571233757],[-121.0927630252947,53.39096593648535],[-121.09253086466596,53.39085191442441],[-121.09227795617639,53.39075387953299],[-121.09201836738886,53.39066455189035],[-121.09176954633632,53.39056387271094],[-121.09150139907491,53.390483174100105],[-121.09122209456692,53.390417178526825],[-121.09094558478083,53.39034342795362],[-121.09065349256215,53.39030609987702],[-121.09035509762957,53.390290404048365],[-121.09009798289539,53.390196116274666],[-121.08988398575262,53.39007217524747],[-121.08960540507734,53.390000024740665],[-121.08930350205505,53.38999821383005],[-121.0890250052716,53.39005464976709],[-121.08875744301811,53.39013061844645],[-121.08846117549881,53.39012904731148],[-121.08825386671134,53.38999638681532],[-121.08805829060991,53.389860284927735],[-121.08786686583167,53.38972098533667],[-121.087615918902,53.38962246384215],[-121.08736698392404,53.38952289298105],[-121.08714120108647,53.38940295119312],[-121.08689025879549,53.38930441921304],[-121.0866330920045,53.389210687166106],[-121.08636282283129,53.3891321343779],[-121.08609897582356,53.38904710864881],[-121.08584174651783,53.38895393813605],[-121.08557816299441,53.38886667610487],[-121.08528582549522,53.38883156102923],[-121.0849843220124,53.388826395394844],[-121.08468535213885,53.38881570993318],[-121.08439630178624,53.38886551764421],[-121.08412465329806,53.388944118892994],[-121.08384025786667,53.389002544673254],[-121.08354991486664,53.389047239064126],[-121.08325104076675,53.38906800631102],[-121.08295063160983,53.38906960973246],[-121.08265290199346,53.3890483067522],[-121.08235283546351,53.38903084122075],[-121.08205557952152,53.38905390941623],[-121.08177771667187,53.3891210185909],[-121.08153292287473,53.38922824301503],[-121.08133268659196,53.38935808177989],[-121.08122980197714,53.389527318964056],[-121.08116760216458,53.38970386390992],[-121.08102474799556,53.389859659831075],[-121.08080267745282,53.38998241323788],[-121.08057743539872,53.390099986084195],[-121.08031916936797,53.390193174906436],[-121.08005773307427,53.39028117407122],[-121.07981836988601,53.39039030016657],[-121.07956191465493,53.39048411944205],[-121.07930034414218,53.39057323449333],[-121.07904718754939,53.39067111526108],[-121.0787977221542,53.39076971436556],[-121.07852132939682,53.39084024638113],[-121.07828532480866,53.39095287768444],[-121.07806518459302,53.39107514943142],[-121.07788254278628,53.391215818576946],[-121.0777520403858,53.39137886061744],[-121.07763630875941,53.391544760283786],[-121.07748961091372,53.39170095940787],[-121.07736837063368,53.39186550772342],[-121.07717833711148,53.39200474682768],[-121.07693229114959,53.392106287065765],[-121.07664139474447,53.392155443712404],[-121.07634192613229,53.392164931208605],[-121.07604208323588,53.39216149265156],[-121.07574208968218,53.39217545780946],[-121.07544157322884,53.39219388349846],[-121.07514680510258,53.39222771140058],[-121.0748548122711,53.392270080467284],[-121.07456572657343,53.39231986422215],[-121.07427508891432,53.39236677102905],[-121.07398322521749,53.39240802039955],[-121.07368825846756,53.39244351654898],[-121.07339077667125,53.39246824387007],[-121.07309097707692,53.39248052154281],[-121.07279098027122,53.392494479261316],[-121.07249336657145,53.39252032189295],[-121.07219671456345,53.39255406457079],[-121.07190465150772,53.3925969807007],[-121.07162028048907,53.39265481393342],[-121.07134392937978,53.39272476597246],[-121.07108595497057,53.39281513629192],[-121.07089926168952,53.392957873834995],[-121.07078537796797,53.393123844652095],[-121.07068069251117,53.393291885856236],[-121.07057587619705,53.39346103556514],[-121.0704803893411,53.393631138141735],[-121.07040893912367,53.39380560658874],[-121.07033560902637,53.39397999703034],[-121.07028275342549,53.39415692564476],[-121.07022244623293,53.394332979177086],[-121.07014911444445,53.39450736945935],[-121.07007954068533,53.39468191558551],[-121.06998955594221,53.39485336907309],[-121.06985914279,53.395015284623256],[-121.06966725694768,53.39515387032397],[-121.06946999296972,53.39528999566486],[-121.06925161878851,53.39541288312069],[-121.0690208084738,53.395529082345384],[-121.06878851089898,53.395641850500695],[-121.06854720865536,53.395750875674686],[-121.06827756169838,53.39582784661886],[-121.06800752136661,53.39590816064924],[-121.06774595774561,53.395996695772624],[-121.06746621299116,53.39606313008016],[-121.06717263489664,53.39610260389621],[-121.06687462086985,53.39611550713239],[-121.06657422587128,53.396116514915214],[-121.06627238773889,53.396129814931754],[-121.06597367572323,53.39613257105806],[-121.06567389416989,53.39611226520956],[-121.06537572984568,53.39609427171957],[-121.0650792055543,53.39606231266023],[-121.06477850630812,53.396049827360315],[-121.06448021156895,53.39603294916997],[-121.06418257330819,53.39601048251992],[-121.06389879487155,53.39595040893977],[-121.0636286561265,53.39587068724978],[-121.06336520662197,53.395782258784074],[-121.06307972429968,53.395736711286965],[-121.06277718999317,53.395739866509494],[-121.06249156231198,53.39579201207465],[-121.06221012769414,53.39585668412538],[-121.06192106859568,53.39590587384567],[-121.06163510991412,53.39596081567185],[-121.06134294732156,53.39600426011743],[-121.06104685229256,53.39603295049562],[-121.06074778722014,53.396054769766614],[-121.06044885213403,53.396075479688065],[-121.0601481945583,53.396078706333014],[-121.05985035124229,53.3961061891474],[-121.05955028404586,53.39610438983321],[-121.05925067722725,53.39609867391314],[-121.05894982283905,53.39610356936692],[-121.05864767977216,53.39610336148496],[-121.05835062266907,53.396124144269514],[-121.05805007042305,53.39614252601781],[-121.05775043679655,53.39615309320056],[-121.05744958184506,53.39615798486291],[-121.05715014563606,53.39616686976218],[-121.05684998583838,53.39618190481687],[-121.0565497606266,53.39619749341146],[-121.05625025874299,53.396206930344],[-121.05594999430812,53.396206793785566],[-121.05564804720204,53.396204906460945],[-121.0553473231191,53.396208675277606],[-121.05504801759693,53.39621643735685],[-121.05474683260547,53.39622412048966],[-121.05444597574555,53.396229013501625],[-121.05414630350245,53.39622383903176],[-121.0538488661686,53.39619967472179],[-121.05354876169011,53.39618212769929],[-121.05324869422297,53.39618031250196],[-121.0529472460684,53.39619022614272],[-121.05264972562405,53.396214901586106],[-121.05237991612356,53.39629294509232],[-121.0521033112871,53.39636453310322],[-121.05181215963971,53.396415300793926],[-121.05151854733275,53.396390723910095],[-121.05123151124188,53.39642257044468],[-121.05093913678301,53.39646767011001],[-121.05066124069442,53.39653415210642],[-121.05040112228323,53.39662607099198],[-121.05012233262867,53.39668408754129],[-121.04982691986545,53.396722886009904],[-121.04953596097936,53.39677196736571],[-121.0492433116444,53.396787296341486],[-121.0489578015809,53.396725991364356],[-121.04866395570593,53.39668735562284],[-121.04836556056671,53.396655276654265],[-121.04807020735848,53.39666149702087],[-121.04781875455912,53.3967599526079],[-121.04762147878252,53.39689547840156],[-121.04743669892709,53.397037139641796],[-121.04724492708218,53.39717401724427],[-121.04706914658493,53.39731942202489],[-121.04682804190824,53.39742616803724],[-121.0465647430262,53.3975128974823],[-121.04630144305916,53.39759962634142],[-121.04601545249133,53.39765453060299],[-121.0457247462081,53.397701367579366],[-121.04543855709748,53.39775794226403],[-121.04515869903932,53.39782488732415],[-121.04487587185855,53.39788496990443],[-121.04460583905431,53.39796467647899],[-121.04436478979814,53.39807086317974],[-121.04411843104214,53.39817401603465],[-121.04388631575918,53.398284500410085],[-121.04375767101426,53.39844646545304],[-121.04367851871253,53.39862115825843],[-121.04363514073567,53.39879678572714],[-121.04368975797321,53.39897425332044],[-121.04377517154822,53.39914683286848],[-121.04386642247768,53.39931796669017],[-121.04396539030799,53.39948773313633],[-121.04406630379842,53.39965702355966],[-121.04415950188623,53.39982768118786],[-121.04424686504893,53.3999997754583],[-121.04433051053442,53.400251448521004],[-121.04438513259139,53.400428915670986],[-121.04444935099228,53.40060509381504],[-121.04452718745323,53.40077791355181],[-121.04462434719456,53.40094704668691],[-121.04473304862927,53.40111441480349],[-121.0448532254655,53.40128058109964],[-121.04497937193615,53.40144418403906],[-121.04511524725021,53.40160538029484],[-121.04525722303306,53.4017629045691],[-121.04541684041943,53.401914991849864],[-121.04559034138774,53.402061476450825],[-121.04576974590395,53.402205960757236],[-121.04594901990019,53.40235156230227],[-121.04611655680895,53.40250060043503],[-121.04627805972834,53.40265276483705],[-121.0464337942173,53.40280580261365],[-121.046591343088,53.402959481727244],[-121.04675096983316,53.40311156713196],[-121.04691650121958,53.40326164328417],[-121.0470859901781,53.40341020401518],[-121.0472594367323,53.40355724930852],[-121.04743295088362,53.40370373110877],[-121.04760834592886,53.403850290952285],[-121.04778186250265,53.4039967722235],[-121.04795336888024,53.40414429245092],[-121.04812085364624,53.4042938908652],[-121.04827653453358,53.404447489340924],[-121.04843604237287,53.40460068095795],[-121.04860949855014,53.40474772420054],[-121.04879871860845,53.40488924264673],[-121.04898599488487,53.4050312367885],[-121.04915569526136,53.40517812263615],[-121.04927468082438,53.40533860931858],[-121.04932524109803,53.40551871548015],[-121.04937412006603,53.405697062574944],[-121.04942118603026,53.405874768126345],[-121.04949127016393,53.40604950611084],[-121.04957665658142,53.406222635199484],[-121.04965445812718,53.40639601434783],[-121.0496940721162,53.406572852345796],[-121.04968032785308,53.406753640564986],[-121.04971034512329,53.40693176791055],[-121.04977842071727,53.40710754488503],[-121.0498370323564,53.40728348474149],[-121.04985745444031,53.40746289246036],[-121.04985700021805,53.40764311993596],[-121.0498433879708,53.407822790560836],[-121.04981292203252,53.40800120243822],[-121.0497636570005,53.408178831573295],[-121.04972567090081,53.40835693030937],[-121.04972145630565,53.408537001161896],[-121.04970220346827,53.40871643687537],[-121.04966797645386,53.408894692093114],[-121.04964301709092,53.409074456175226],[-121.04962000275727,53.40925374422146],[-121.04957047208913,53.40943360820831],[-121.04951282917659,53.40961818342067],[-121.04940303629874,53.40978038214989],[-121.04919141873093,53.40989285482339],[-121.04890479248049,53.40996851360281],[-121.04861760228408,53.410032918222264],[-121.04832364563427,53.410074580326174],[-121.04803305317398,53.41011975085342],[-121.0477422630239,53.41016659247557],[-121.04745166930417,53.410211761582275],[-121.04715784199512,53.41025230328868],[-121.04686292466126,53.41028606085773],[-121.04656497106254,53.41031351918672],[-121.04626619230206,53.410331949382936],[-121.0459658622201,53.410347511180966],[-121.04566836937316,53.41037105149475],[-121.04537305463558,53.410408157915164],[-121.04508090570154,53.41045045357568],[-121.04478888904269,53.41049162206528],[-121.04449660712615,53.41053503380393],[-121.04420729467948,53.41058529767905],[-121.04392438037672,53.41064537763076],[-121.04364456604073,53.41071120120506],[-121.04336300268845,53.41077582823546],[-121.0430813066169,53.410841572109284],[-121.04281468353278,53.41092366590239],[-121.0425666294705,53.411024501506255],[-121.04232705109817,53.411133551107],[-121.04209258397452,53.41124730543867],[-121.04186685619636,53.411367038833696],[-121.04163265031758,53.411478557228264],[-121.0413724852304,53.411569901442085],[-121.04110021413018,53.411651756154825],[-121.04085422904113,53.41175099477288],[-121.04064818649398,53.41187996520705],[-121.04046681358402,53.41202400645652],[-121.04028524100526,53.412169728150886],[-121.04009680771489,53.41230953938505],[-121.03990830667269,53.41244991353516],[-121.03972524610711,53.41259220339845],[-121.03956194243051,53.41274316933853],[-121.03940401283398,53.41289661430219],[-121.03923714407797,53.41304575111518],[-121.03906295226908,53.4131928931925],[-121.03887988561252,53.413335181705904],[-121.03868599957624,53.41347308351117],[-121.038486867909,53.413607397128416],[-121.0382841067401,53.41374043599367],[-121.03808315893484,53.41387410724352],[-121.03788032867503,53.414007708626386],[-121.03767588207259,53.41413898724577],[-121.03746074693505,53.4142647704162],[-121.03723518729257,53.414382823074995],[-121.03700425106868,53.41449839593539],[-121.03677855685933,53.41461756521872],[-121.03654755154456,53.41473370040169],[-121.03630625489606,53.4148409784937],[-121.0360526537171,53.414940447386414],[-121.03577279850543,53.41500625233017],[-121.03544627215396,53.41503529466805],[-121.03512584759147,53.41506066483868],[-121.03487505170978,53.415120376988526],[-121.03476680876902,53.4152528650748],[-121.034781890548,53.41544497338802],[-121.03481699515427,53.415643523825786],[-121.03483729067786,53.41582349661873],[-121.0348577195208,53.41600234295345],[-121.03485538731526,53.41618192790506],[-121.03484734785229,53.41636184053924],[-121.03484877604129,53.41654158247436],[-121.03485967200358,53.41672115371003],[-121.03485733976655,53.41690073860009],[-121.03482855186871,53.41708034187145],[-121.03483575287974,53.41725920176879],[-121.03487317035673,53.41743820026439],[-121.0349106536701,53.417616644453474],[-121.03492349597857,53.417795739818224],[-121.03490981667451,53.41797540786025],[-121.03490553770476,53.4181554773568],[-121.0349221407752,53.41833472968815],[-121.03492732998605,53.41851462846514],[-121.03489860785929,53.4186936683963],[-121.03487935267646,53.418872546559854],[-121.03491113074884,53.41905130938582],[-121.03494096216473,53.419230556901226],[-121.03495360747745,53.4194113239015],[-121.03494375402894,53.419590594541134],[-121.0348776213859,53.419766392481904],[-121.03475062455027,53.419929542128436],[-121.03455125106625,53.42006552946732],[-121.03429982545578,53.42016227468008],[-121.03402115253681,53.420233741342244],[-121.0337475913294,53.420309912906696],[-121.03347571079217,53.42038784308198],[-121.03321916816115,53.42047988043117],[-121.03298287607014,53.42059242029222],[-121.03276607780761,53.420715881069526],[-121.03256144942497,53.42084827692403],[-121.03235507255978,53.42097946743844],[-121.03213114528019,53.421099260370234],[-121.03190015710892,53.42121483190392],[-121.0316762939051,53.42133406075072],[-121.03145054793224,53.42145321954941],[-121.03121962257822,53.42156822652771],[-121.0309833856591,53.42168019914817],[-121.03074384879864,53.421788107399784],[-121.03049718553726,53.42189234838767],[-121.03025246710428,53.42199611316364],[-121.03000929786934,53.422102745271864],[-121.0297748685499,53.4222153572659],[-121.02955623868452,53.422338170303846],[-121.0293060061458,53.42244057985178],[-121.02903760111238,53.42252088304681],[-121.02874960478005,53.42257510336352],[-121.02844849085521,53.42258048489017],[-121.0281492288843,53.42257022081866],[-121.02788477970797,53.422649006874074],[-121.02762896645153,53.422750613819375],[-121.02736560180622,53.42283618226243],[-121.02710714931887,53.42292813665589],[-121.02686927795905,53.42303778744199],[-121.02664162871837,53.42315685839775],[-121.02642090526476,53.423281267689305],[-121.02627430470393,53.423434039883034],[-121.02618193472603,53.42360761419293],[-121.0260787434505,53.42377680981614],[-121.0259959736864,53.42394909648199],[-121.02594101340404,53.424125924187635],[-121.02587678327463,53.42430123218603],[-121.02579381258748,53.424475199365745],[-121.02568705554295,53.42464255658325],[-121.02554549314797,53.424800596885724],[-121.02539109596609,53.42495529717544],[-121.0252403275232,53.425111263114744],[-121.02508417985548,53.425264766841565],[-121.0249045108902,53.42540941640231],[-121.02471596611763,53.425549211356405],[-121.02452735442452,53.425689560274165],[-121.02434774740006,53.425833654694756],[-121.02418433713412,53.42598459859445],[-121.02401010476977,53.426131163475304],[-121.02381973988304,53.42627031507437],[-121.02362755876773,53.42640883340538],[-121.02343174856124,53.42654606762245],[-121.02323593601764,53.42668331044859],[-121.02304926171621,53.42682317243068],[-121.02289329888967,53.426974992470875],[-121.02279364934978,53.42714601411918],[-121.0227088453055,53.42731934594846],[-121.02260945910095,53.427488132455366],[-121.02246424661597,53.427644894003585],[-121.02230257080402,53.42779703137407],[-121.02215158149747,53.42795467388262],[-121.02196664514065,53.42809573920993],[-121.02172813448466,53.428210412584555],[-121.02144185288755,53.42823380125301],[-121.02113480439697,53.42820916199174],[-121.02083702844445,53.4281860241164],[-121.02053931854331,53.428162331228044],[-121.0202396614693,53.42813912206624],[-121.01994221728336,53.428113192732006],[-121.01964523785328,53.42808334701915],[-121.01935040357708,53.42805135330536],[-121.01905382264353,53.428018153690225],[-121.01875932119029,53.427983360354474],[-121.01846287270433,53.42794905073191],[-121.01816576291299,53.42792031880364],[-121.01786650660634,53.42789375124719],[-121.01757890920615,53.427848570841746],[-121.01732823157207,53.42774710486117],[-121.01709237693441,53.42763222591139],[-121.01681175027049,53.42757610527542],[-121.0165126298807,53.427548416840914],[-121.01621410720753,53.42751569455908],[-121.01591974424959,53.427479776723516],[-121.01562204211754,53.42745607154021],[-121.0153208679137,53.427445696455905],[-121.015019893367,53.4274336399336],[-121.01471967153103,53.42743116444758],[-121.0144208230643,53.42744896033282],[-121.01412088972154,53.427459971813356],[-121.01381832214794,53.42746133083755],[-121.01354029642012,53.42752659878208],[-121.01324536372574,53.427559155350636],[-121.01294739857076,53.427585411875185],[-121.01265120256714,53.42758085394432],[-121.01236044827381,53.42753047908267],[-121.01206374380067,53.42749837952742],[-121.0117664419261,53.42747131230655],[-121.01146880803734,53.42744704248137],[-121.01117044487489,53.427428913510454],[-121.0108693388763,53.427417963969894],[-121.01057777075691,53.42726310816041],[-121.01041032807815,53.427113458600765],[-121.0102429524484,53.42696325453202],[-121.0100949166214,53.42680936039089],[-121.00998998096478,53.426642683726996],[-121.00976824754626,53.426520511310414],[-121.0095004269547,53.42643627702747],[-121.00921109962616,53.42638988895917],[-121.0089273945816,53.42632800457],[-121.00866796213471,53.42623682501902],[-121.00840853187512,53.42614563595936],[-121.00815104922867,53.42605397099694],[-121.00788967366765,53.42596326507322],[-121.00763004698598,53.425873754972535],[-121.0073749127342,53.425778260603714],[-121.00711790011763,53.42568267780006],[-121.00696605211107,53.42552918499003],[-121.00690564789737,53.425353700910215],[-121.0068835197539,53.42517420844112],[-121.00689920165564,53.424994623195],[-121.00689413150981,53.42481472376539],[-121.00686817672307,53.42463562761308],[-121.00679817172379,53.424461429326335],[-121.006670158316,53.42429826306943],[-121.0065538265326,53.42413222693354],[-121.00649342604441,53.42395674252833],[-121.00640026034857,53.42378662061155],[-121.00631683057648,53.42361409526651],[-121.00615720527023,53.42346252037247],[-121.00600946140291,53.42330639491221],[-121.00588917523991,53.42314187184988],[-121.00576895699113,53.4229767854518],[-121.00564873862281,53.42281170785901],[-121.00547717162915,53.422665245504454],[-121.00528372492131,53.42252797135044],[-121.00506806686718,53.422402674479656],[-121.00483187695666,53.42229112335756],[-121.00459152977534,53.42218275723955],[-121.00436775521462,53.42206217619231],[-121.00418236824017,53.42192074631403],[-121.00406800024885,53.42175422335338],[-121.00399230451731,53.42158034046194],[-121.00392621021582,53.421405180760964],[-121.00382534016477,53.42123641236677],[-121.00367767976745,53.42107972064865],[-121.00351685790433,53.42092247572519],[-121.00344233383362,53.42077054539576],[-121.00368722486576,53.42064999471155],[-121.00387050828733,53.42050720654418],[-121.00398473006221,53.4203413019959],[-121.00402856160957,53.42016345588749],[-121.00407615343771,53.419985767733664],[-121.00413301353602,53.41980959196896],[-121.00416186734856,53.41963055956832],[-121.0041643307619,53.419450975529685],[-121.00415739268462,53.41927099651813],[-121.0041542152384,53.41909117547407],[-121.00415291809716,53.418911433406315],[-121.00414403396286,53.41873192961803],[-121.00412192108399,53.4185524360712],[-121.00407691253365,53.41837479272184],[-121.00402425152915,53.41819794189],[-121.00395816240821,53.418022781924684],[-121.0039112759495,53.41784505053346],[-121.00390615245136,53.41766571356693],[-121.00391808489896,53.417485961141175],[-121.00393753700399,53.417306533619154],[-121.00396639099505,53.41712749211268],[-121.00400833908199,53.41694956674479],[-121.00404464626817,53.41677140436684],[-121.00406221732912,53.41659189776986],[-121.00407226863945,53.41641206624342],[-121.00408419895855,53.416232322633185],[-121.00410741113883,53.416053044022135],[-121.00415493100097,53.415875918691206],[-121.00422488023723,53.41570084974192],[-121.00430033530945,53.41552714411074],[-121.00435537530487,53.4153503256733],[-121.00437294444671,53.41517081890888],[-121.00435271256586,53.41499140408831],[-121.00431536119004,53.414812950076104],[-121.00427988915477,53.41463458396648],[-121.00425771193284,53.41445564435723],[-121.00422989362374,53.41427647669655],[-121.00418489025462,53.414098824086054],[-121.00412652700246,53.413922299167474],[-121.00407192433366,53.413745932191745],[-121.00402504109688,53.413568209422344],[-121.00398003935014,53.41339055667418],[-121.00392933093269,53.413213230110976],[-121.00387855595976,53.41303646671427],[-121.00382402246309,53.412859536347206],[-121.00373297095528,53.41268781871218],[-121.00363024258519,53.412518970452666],[-121.00351972822286,53.41235204995613],[-121.00340337597278,53.412186564062274],[-121.00329293037244,53.412019080125674],[-121.00319020540067,53.411850231432666],[-121.00310103861591,53.41167859223878],[-121.00301771230545,53.41150550932458],[-121.00294391928685,53.41133170392687],[-121.00289133778782,53.411154297736104],[-121.00292012501932,53.410975819160136],[-121.00292829995603,53.410795908236345],[-121.00286028118799,53.410621222294864],[-121.0027865563003,53.41044686246273],[-121.0027186056788,53.41027161320804],[-121.00266595945988,53.41009477003099],[-121.00264191162022,53.40991575071712],[-121.00266512539743,53.409736480785575],[-121.00268646018313,53.40955712287941],[-121.00264341415603,53.409378994036906],[-121.00255425483769,53.40920735423069],[-121.00244570026936,53.40903994828679],[-121.0023293614004,53.4088744610814],[-121.00222282133643,53.4087060164615],[-121.00213171941344,53.408534851524685],[-121.00203679268981,53.40836408271682],[-121.00192045729726,53.40819859505839],[-121.00179640372555,53.40803447182628],[-121.0016820169733,53.40786849973464],[-121.00157930753284,53.40769965825645],[-121.001462975776,53.40753417009831],[-121.00130557460761,53.40738043164161],[-121.00115790626265,53.4072242900267],[-121.00101627605699,53.407065041882525],[-121.00091545204693,53.40689626986847],[-121.00089335915722,53.40671677470689],[-121.00092221777498,53.40653774197108],[-121.00096228846562,53.40635973773183],[-121.00099484000468,53.406181417296125],[-121.0010443085253,53.40600380820847],[-121.00111606697227,53.40582938250267],[-121.00119896995417,53.40565654843963],[-121.00129113767053,53.40548522695924],[-121.00140351618174,53.40531868145382],[-121.00151408008381,53.40515150253107],[-121.00158952743091,53.40497779774018],[-121.00165570993987,53.404802571321156],[-121.00176076550989,53.40463403756446],[-121.00191692063125,53.40448057184378],[-121.00207851462844,53.404329014715685],[-121.0022437337759,53.404178732871394],[-121.00241076542821,53.40402908407169],[-121.00259754011324,53.40388813544205],[-121.00283026033374,53.40377381626482],[-121.00308683454378,53.403681280430874],[-121.00336040904563,53.40360462441571],[-121.0036237691102,53.403518545056485],[-121.00383189660738,53.403388599703135],[-121.00406803717316,53.4032772342228],[-121.00432467259569,53.40318413249371],[-121.0045881598464,53.40309694245153],[-121.00485655459639,53.4030161303972],[-121.00513651123124,53.40294928025117],[-121.00534987249557,53.40282291261931],[-121.00547693167115,53.40265979299693],[-121.00560211031465,53.40249659425678],[-121.00580129433467,53.40236233492086],[-121.00604609062603,53.40225751087257],[-121.00630963544278,53.402169753774956],[-121.00656289848324,53.40207313683062],[-121.00670445570977,53.40191511737432],[-121.00689483288294,53.40177543724072],[-121.00708339620276,53.40163511463934],[-121.00721769753774,53.40147454380265],[-121.00732634875054,53.4013072802308],[-121.00743869222588,53.40114072869587],[-121.007591254397,53.40098541671036],[-121.00779586368327,53.40085307143988],[-121.00797360820793,53.400708358116134],[-121.00811522139261,53.40054978260981],[-121.0082477027745,53.400388568388756],[-121.0084380020822,53.40024943995436],[-121.0086565788234,53.40012666438228],[-121.00886998104508,53.39999973600189],[-121.00909202839819,53.39986361984508],[-121.00929844111582,53.39973190510516],[-121.00949403994801,53.39959580984145],[-121.00967902558945,53.39945364447616],[-121.00984963711909,53.39930526913236],[-121.01008903377318,53.39919795600952],[-121.01030934695407,53.39907637372076],[-121.01051568619178,53.398945211091245],[-121.0107003333017,53.39880584226822],[-121.01081090897745,53.398638099919914],[-121.01088241592069,53.39846533946553],[-121.01104744795371,53.398316162464944],[-121.01115587627184,53.39815057583784],[-121.01116965158396,53.397970899886786],[-121.01115510284308,53.397791167115514],[-121.01116699870136,53.39761141225169],[-121.01115225163653,53.397433351203404],[-121.01105939114001,53.397260995805006],[-121.01089387854513,53.39711198687299],[-121.01081183186274,53.396944011291026],[-121.01076111447797,53.396766686236994],[-121.01069315167864,53.396591449321186],[-121.01061170330186,53.396418449355785],[-121.01052059386161,53.396247289826256],[-121.0104178783872,53.39607844608887],[-121.01030744714166,53.39591096736184],[-121.01018916752606,53.395745971106905],[-121.01006699872242,53.395581925465855],[-121.00992926515035,53.39542172734695],[-121.00976778869402,53.395270630614476],[-121.00958652540508,53.395127130173655],[-121.00939533646137,53.39498770482741],[-121.00920206998521,53.39484988094491],[-121.00901477469424,53.394709495312306],[-121.00879743467321,53.39458357033577],[-121.00852875744407,53.394508272435615],[-121.00823797105437,53.3944601216791],[-121.0080119901897,53.39434337366206],[-121.00786440853966,53.394186685113745],[-121.00774030724652,53.394023121237936],[-121.00760044297675,53.39386507633011],[-121.00753639014007,53.393688868822196],[-121.00747421592729,53.39351274914501],[-121.0074349243307,53.39333477854011],[-121.00745428444557,53.39315590263411],[-121.00745666642365,53.392976870516975],[-121.00744965173116,53.39279745262145],[-121.00743693392879,53.39261835215843],[-121.00741864583249,53.392438451644686],[-121.00741351048532,53.39225911264146],[-121.00740844208413,53.39207921041172],[-121.00739391249873,53.39189946772974],[-121.0073641508373,53.39172077418796],[-121.00732103635302,53.391543208717856],[-121.00727034017775,53.391365881714194],[-121.00721199550293,53.39118935637808],[-121.0071651910336,53.39101106970605],[-121.00706022451766,53.39084549614536],[-121.006893071935,53.39069472154957],[-121.00669970060102,53.390558010800476],[-121.00646992001344,53.39044166494144],[-121.0062442970099,53.390322124107975],[-121.0060548871808,53.39018388951414],[-121.0058876080487,53.390034230939435],[-121.00571630657586,53.38988664914454],[-121.00563301264378,53.389713566244424],[-121.00560533867473,53.389533270351805],[-121.00544250553357,53.389393905343496],[-121.00518390632156,53.38929768345682],[-121.00496030484983,53.389177101619076],[-121.00477311480876,53.3890361546576],[-121.00467043997631,53.388867305372905],[-121.00464075788875,53.38868805661765],[-121.00466945647244,53.3885101299578],[-121.00473553334531,53.38833546364494],[-121.00487349209416,53.38817561559838],[-121.0050040680528,53.38801432504123],[-121.00518002080571,53.38786842746941],[-121.0053775236468,53.387731853954136],[-121.00554368224611,53.38758890446223],[-121.00560988682223,53.387413120103865],[-121.00568152775323,53.387239253293465],[-121.00576806725384,53.38706712670778],[-121.0058360820087,53.38689198435766],[-121.00594282223605,53.38672464190334],[-121.00602929269884,53.386553078296146],[-121.00613240639957,53.3863844602344],[-121.00623189438652,53.386214566666],[-121.00630708973954,53.38604252905341],[-121.0063283300989,53.385863731657444],[-121.00640378992959,53.385689458986754],[-121.00649401397028,53.38551805287048],[-121.00655826669863,53.385342743124134],[-121.00655326862486,53.38516228598244],[-121.00636262041591,53.38503466316494],[-121.00611008043057,53.38493532750796],[-121.00585312031276,53.38484142079715],[-121.0056024614431,53.38474216301987],[-121.00534738238623,53.384648334178465],[-121.00510081476762,53.384546444044815],[-121.0048793830747,53.38442370578867],[-121.00466787750227,53.384296892106725],[-121.0044544944768,53.384169999052965],[-121.00423695689116,53.38404630007289],[-121.0039948838898,53.383938414977905],[-121.00372915852383,53.383854799265436],[-121.00343772014173,53.38381278715585],[-121.00314119769367,53.383781782187675],[-121.00284708467453,53.38374639450961],[-121.00254896898642,53.38372879783771],[-121.00224731364865,53.38372509437075],[-121.0019465400757,53.383729854737375],[-121.00164422043709,53.38373173714211],[-121.00135928531648,53.383682688949925],[-121.00111072248843,53.38358182000493],[-121.0008579378279,53.383484708092205],[-121.00058136520329,53.3834129913167],[-121.00028946838724,53.38337487819447],[-120.99999511376316,53.38335743323024],[-120.99946101882468,53.38332372553741],[-120.99917639354057,53.38336734287557],[-120.9989143304364,53.38342762325427],[-120.99861839436602,53.38337585908433],[-120.9983278291446,53.38332656638468],[-120.99804128788068,53.38327519620171],[-120.99776458845896,53.383204590349095],[-120.99752649420905,53.38309516955808],[-120.99732936490717,53.38295883915634],[-120.99716804741767,53.38280717015529],[-120.9970244368306,53.382649508025025],[-120.9968572197251,53.3824998362135],[-120.99667404378086,53.382357353592795],[-120.99650079420441,53.38221079635075],[-120.99635329791036,53.38205409261195],[-120.99621955098671,53.381892918341165],[-120.99609164094201,53.38173030058694],[-120.99596567751881,53.381567198597445],[-120.99589008748372,53.38139330719626],[-120.99586990797377,53.38121388801434],[-120.99586864735997,53.38103414257874],[-120.9958787241095,53.380854317602775],[-120.99589068039205,53.38067456279394],[-120.99589317679971,53.380494975558456],[-120.99589567318608,53.380315388307146],[-120.99591514230325,53.38013595888221],[-120.99598687791612,53.379961534085865],[-120.99607719911762,53.379789572182574],[-120.99614893346923,53.3796151472591],[-120.99625206974228,53.379446537189736],[-120.99636627612615,53.37928008239839],[-120.99647122323076,53.37911210549582],[-120.99653557387117,53.378936246347116],[-120.9965380674257,53.37875665894598],[-120.996534925571,53.378576834188806],[-120.99653366219775,53.378397088529304],[-120.99653622169028,53.37821694681232],[-120.99653495832231,53.378037201121266],[-120.99652611528163,53.377857693229],[-120.996539879348,53.37767858041448],[-120.99665407979994,53.377512125203445],[-120.99676089975907,53.37734422701217],[-120.99682148968785,53.3771682093373],[-120.99687463149517,53.37699132091494],[-120.99692408310477,53.376813711029904],[-120.99697910347459,53.376636892697796],[-120.99704338119614,53.37646159627123],[-120.9971428164562,53.37629226375019],[-120.99729170283221,53.37613568740573],[-120.99741871270457,53.37597257427377],[-120.99749781540675,53.37579958208986],[-120.997569603023,53.3756246017006],[-120.99761153679681,53.375446675022125],[-120.99761214723974,53.37526700819599],[-120.99759196332901,53.37508758876997],[-120.99754890813584,53.374910009385914],[-120.99749639483355,53.37473259768908],[-120.99744569325098,53.37455582826283],[-120.99746891072002,53.3743765473379],[-120.99748273558238,53.37419687983966],[-120.99745873027071,53.37401785637005],[-120.99738120235969,53.37384444938665],[-120.99726310236241,53.37367887531248],[-120.99715466039582,53.37351146166687],[-120.9971116746041,53.37333332771759],[-120.99707814729561,53.37315502605283],[-120.99699297672511,53.372982419803066],[-120.99686898012885,53.37281884290945],[-120.99671367067663,53.372664611696344],[-120.99657995218956,53.3725034370921],[-120.99649471902515,53.37233138470092],[-120.99647641945717,53.37215204394239],[-120.99650903056715,53.371973158566654],[-120.99659926549221,53.371801758806505],[-120.9967298883232,53.37163992177013],[-120.99686775682244,53.37148063597374],[-120.99701481501755,53.37132342622818],[-120.9972245500706,53.371194678042414],[-120.9975120357041,53.37114221329571],[-120.9977514366533,53.37103380603202],[-120.99792372027659,53.370886642308534],[-120.99798241794255,53.37071054439489],[-120.99807452227435,53.370539222500824],[-120.99819970113107,53.370375465787816],[-120.99834480647786,53.3702187294975],[-120.99848635340484,53.3700601630967],[-120.9985944936157,53.369896811665576],[-120.99864023942204,53.36971848801635],[-120.99871751428151,53.36954485219964],[-120.99879854355345,53.369371383414105],[-120.99889802093713,53.36920149456658],[-120.99906311364968,53.369051214573304],[-120.99918828424121,53.36888745670073],[-120.99924684094933,53.36871247547589],[-120.99917327134365,53.36853754665368],[-120.99905323419243,53.3683724580664],[-120.99891167665896,53.36821375869052],[-120.99881101998878,53.36804442744101],[-120.99869681950922,53.36787789499011],[-120.99856887653924,53.36771583305713],[-120.99842738895725,53.367556578781205],[-120.99828382564898,53.367398916995676],[-120.99818129548993,53.36722950605943],[-120.99802975774527,53.3670754343175],[-120.99785274342139,53.36692928298047],[-120.99771508405698,53.36676962276975],[-120.99776191167471,53.36659807424813],[-120.9979235082154,53.36644540248544],[-120.9980792699366,53.36629417392115],[-120.99816022966259,53.36612125956637],[-120.99831269921509,53.36596595682649],[-120.99850113083136,53.365825645374755],[-120.99868587238572,53.365684612241836],[-120.99886718861379,53.365540631411626],[-120.99905554950915,53.36540088226567],[-120.99921874889189,53.36525052270184],[-120.99932197058226,53.36508079129929],[-120.9994392842319,53.36491951475174],[-120.99969757406552,53.36482650032776],[-120.99998984960197,53.3647809715493],[-121.00046707319395,53.36460844927036],[-121.00072858214365,53.36452006959284],[-121.00099176912912,53.364433440144545],[-121.00125488915421,53.364347364385345],[-121.00148564850477,53.36423185804898],[-121.00173178031116,53.3641299092183],[-121.00197468647148,53.36402333185355],[-121.00221293567682,53.363892407359266],[-121.00220178449521,53.363763907017415],[-121.00198802892724,53.36362520005384],[-121.00189119338292,53.36345546586917],[-121.00183686415076,53.36327742178662],[-121.00184302387656,53.3630985452336],[-121.0019768239504,53.36294132977165],[-121.00216582685607,53.36279598806483],[-121.00221605495788,53.362627393705054],[-121.00211754168721,53.36245590882884],[-121.00198228969515,53.3622918622631],[-121.00195573034398,53.36211834708685],[-121.00210635954917,53.3619624058748],[-121.0023606043451,53.36187146246541],[-121.00266038631423,53.36184196706488],[-121.00295954312683,53.36184949726811],[-121.00326240772297,53.3618734718681],[-121.0035380248592,53.361824988246745],[-121.00366805911906,53.36166761277675],[-121.00373818586291,53.36149030452406],[-121.00389753106917,53.36134034346877],[-121.00410551625657,53.361209831752824],[-121.00431866923344,53.36108346340151],[-121.0045318867612,53.3609565403826],[-121.00473624543066,53.36082475206783],[-121.00493019881615,53.3606852302501],[-121.00501971177307,53.36051941063513],[-121.00493051452486,53.36034887708949],[-121.0047793080964,53.36019202415363],[-121.0046180509599,53.36004036356096],[-121.00444694171298,53.35989222349791],[-121.00428562108944,53.3597411167101],[-121.00414407284732,53.359582422886774],[-121.00401425543113,53.35942029609497],[-121.00386674514127,53.35926415419738],[-121.00369168789634,53.35911752676771],[-121.00351448878509,53.35897305505649],[-121.00335920498281,53.358818840409384],[-121.0032333477667,53.358655190004185],[-121.00315622366826,53.35847842404984],[-121.00327579919798,53.35832959366246],[-121.00345465956056,53.35818999629342],[-121.00350043898726,53.358011106531215],[-121.0035180547619,53.357831031678714],[-121.00352809331514,53.357651204010246],[-121.00350782681387,53.3574723383142],[-121.00349707979377,53.35729275906486],[-121.00359074442399,53.35712374576742],[-121.00379689912876,53.356992592098486],[-121.00399366394576,53.35686105202124],[-121.0041299114523,53.356698879443584],[-121.00432305157857,53.35656606331613],[-121.00457476421633,53.35646434519197],[-121.00477675955972,53.356336384300995],[-121.00488362510335,53.356167368515244],[-121.0049292635712,53.35598959552305],[-121.00494311746759,53.35580936231601],[-121.00499237751602,53.3556328647301],[-121.00511017391082,53.35546711184387],[-121.00528585876528,53.3553223203496],[-121.00549206518834,53.35519060934601],[-121.00570175984261,53.355061290915586],[-121.00586094108239,53.35491244425456],[-121.00593829169854,53.354737684982794],[-121.00600994258198,53.35456325197165],[-121.00607602646444,53.3543880277307],[-121.00611421525659,53.35420937505171],[-121.00611478913827,53.354029706307585],[-121.00608894706203,53.35385004956111],[-121.00599768271431,53.35368111801228],[-121.00580890218548,53.353538973763335],[-121.00566858306262,53.35338594774106],[-121.00565226269411,53.353205568192486],[-121.00568307551319,53.35302548216411],[-121.00566441303047,53.35284893933897],[-121.00556188860187,53.35267953354951],[-121.005457421876,53.35251060296439],[-121.00536642830403,53.352339435816795],[-121.00526967089223,53.352169149156495],[-121.00514570341136,53.35200557921371],[-121.00505632412616,53.35183672576685],[-121.00504945917957,53.35165618661611],[-121.00505191483668,53.35147659663016],[-121.00504686142253,53.351296690707805],[-121.00501713838901,53.35111799302643],[-121.00495309445847,53.35094234366298],[-121.00487557922294,53.35076893065391],[-121.0048038948088,53.350594082749396],[-121.0047436728193,53.3504180369148],[-121.00469297115193,53.35024125952197],[-121.00464810002515,53.35006304726929],[-121.00460698367559,53.34988499295833],[-121.00457531943924,53.34970677927525],[-121.00455511812511,53.34952735877376],[-121.00455382141512,53.3493476106326],[-121.00455252471619,53.34916786247536],[-121.0045361449473,53.34898803667771],[-121.00451594414447,53.34880861610553],[-121.00449567664143,53.34862975873513],[-121.00447742018955,53.34844985389236],[-121.00446472840142,53.348270749220475],[-121.00445210253167,53.34809109025004],[-121.00443190251656,53.34791166958384],[-121.00440412845249,53.347732487217954],[-121.00434578931659,53.34755651992225],[-121.00424321725083,53.347387666832965],[-121.00413092835956,53.34722121689391],[-121.00404383842806,53.34704908877225],[-121.00397404085508,53.34687431904099],[-121.00390430967651,53.34669899497242],[-121.00382486263508,53.34652606513642],[-121.00372611506171,53.346356815232404],[-121.00360806716299,53.34619124521331],[-121.00348807734694,53.34602615033965],[-121.00338557826294,53.34585674210088],[-121.00334252745844,53.34567917119568],[-121.00341203127992,53.34550689496443],[-121.00356809507842,53.345352296201035],[-121.00373126654692,53.345201374675376],[-121.0038835740791,53.345046617472065],[-121.0040360789872,53.34489018827614],[-121.00425197377683,53.3447718084829],[-121.00452536331812,53.34469346685663],[-121.00478835289364,53.34460738244166],[-121.00504220105799,53.34450295241778],[-121.00514704681207,53.34435068904121],[-121.00500949935751,53.34419048120791],[-121.00478446026693,53.34406813665989],[-121.00456310948745,53.343946512877146],[-121.00435401606282,53.34381698580884],[-121.00416890748599,53.34367610480839],[-121.00400583881954,53.343524363150934],[-121.00390689799815,53.34335679387124],[-121.00389816351878,53.34317616595568],[-121.00395693031298,53.34299894518092],[-121.00410695308716,53.342847469978494],[-121.00432732118357,53.34272309717109],[-121.00452803786743,53.34258946931204],[-121.00470018156608,53.342442293709304],[-121.00486514878104,53.342292003678104],[-121.00503735694245,53.34214426434219],[-121.00518958178023,53.341990068453846],[-121.00525739462122,53.341816031119436],[-121.00531783114795,53.34164056925957],[-121.0054465170574,53.341478078044055],[-121.00559705958877,53.34132213081768],[-121.00574746944089,53.34116729195622],[-121.00590344176517,53.341013253017756],[-121.00606658807534,53.3408623279615],[-121.00622973427812,53.34071139372994],[-121.00637289663479,53.34055401210522],[-121.0064924564701,53.340388889853536],[-121.00659545538946,53.340220267560994],[-121.00668008363068,53.34004750309039],[-121.00672569706926,53.33986972798656],[-121.00677493102664,53.339693228265865],[-121.00689442001992,53.339528668764],[-121.0070503152664,53.339375191420196],[-121.00720446629101,53.33922050846314],[-121.00735311753421,53.3390644798912],[-121.00751082035357,53.33891163513751],[-121.00767576373065,53.338761340942234],[-121.00784975856985,53.3386142304977],[-121.00807137315746,53.33849496269702],[-121.00835237523592,53.33843153434459],[-121.0086364014109,53.33837440502262],[-121.00887907490417,53.338268375426054],[-121.00906366096538,53.3381273242538],[-121.00917395146094,53.337960695945924],[-121.00922705879874,53.33778323535943],[-121.0092464525872,53.33760379105237],[-121.0092545852343,53.337423882181184],[-121.00930749330708,53.33724809331172],[-121.00941603641701,53.33708026827879],[-121.00952826619724,53.336913155239706],[-121.00960905680923,53.336740784866386],[-121.00964158373698,53.336561901701685],[-121.00966841484373,53.33638333607641],[-121.00972889200511,53.33620730827161],[-121.00980056249026,53.33603230814278],[-121.00987585198838,53.33585859221988],[-121.0099548950791,53.33568502510075],[-121.01003762387958,53.335512178945955],[-121.01012960231742,53.33534084473756],[-121.0102508756601,53.33517692363322],[-121.01041579465644,53.33502662535609],[-121.01058601143635,53.33487935284046],[-121.01071465534181,53.3347168643152],[-121.01081581375344,53.33454759576924],[-121.01092615472245,53.33438040230934],[-121.01103468400554,53.33421257555791],[-121.0110707577796,53.33403552135509],[-121.01099519066565,53.33386163547275],[-121.01086549286721,53.333698950859194],[-121.01073767255215,53.33353634498173],[-121.0106312892816,53.33336790167027],[-121.01054607789482,53.33319585601568],[-121.01048391461333,53.33302028695764],[-121.01042369506862,53.33284423351885],[-121.0103672946216,53.332667783539115],[-121.01032623679178,53.33248917537435],[-121.01031171530317,53.3323094277756],[-121.01035529616173,53.33213268921219],[-121.01047843581097,53.33196884650974],[-121.01063254717859,53.3318141585353],[-121.01080281593306,53.33166633118331],[-121.01099460625385,53.33152783608497],[-121.01118814031057,53.331390528130555],[-121.01137811848183,53.33125139028056],[-121.01156628471358,53.33111161894919],[-121.01174378796556,53.330966340748994],[-121.01191223978121,53.33081786963958],[-121.01207894541925,53.33066821083009],[-121.01224927121449,53.33051981809078],[-121.01245687935894,53.33039097052558],[-121.01303879763546,53.33007905869866],[-121.01313007390779,53.32763737766385],[-121.0048010087032,53.32613192098167],[-121.00010388225371,53.32491205556288],[-120.99812893490899,53.323380006277034],[-120.99813385088812,53.3216882570749],[-120.99659844279562,53.32026679667177],[-120.99536702070634,53.31996832742897],[-120.99390177705959,53.319226465070365],[-120.99274272954122,53.31654439915016],[-120.99124393214159,53.315198521601594],[-120.9871318264602,53.31477772665343],[-120.98572170092699,53.31370226242645],[-120.98513421323024,53.30799888835838],[-120.98324499463861,53.30702385180509],[-120.97691071689596,53.304509450096724],[-120.97598045906217,53.30282856506842],[-120.97629803638985,53.29776428375855],[-120.97676190820115,53.292736515486936],[-120.9771296524557,53.2910426649518],[-120.97940428442612,53.28776452736009],[-120.97448776635255,53.282612619321746],[-120.97624261613947,53.27762551482514],[-120.97627568443474,53.276589675916],[-120.96768618886082,53.27836768454969],[-120.96498800482287,53.27812447411363],[-120.96208556612068,53.27719525352489],[-120.95941682502863,53.277084575114635],[-120.95083729025951,53.27902299487773],[-120.95032472993842,53.2799053208636],[-120.9457762628533,53.28101770196503],[-120.9391320952084,53.28288958612274],[-120.93561931879125,53.28428169278531],[-120.93278661223034,53.285781403881025],[-120.93070933737175,53.28751441782314],[-120.93072482104813,53.28813733456719],[-120.93172693351782,53.2913335772234],[-120.93463041244097,53.29388714861078],[-120.93944865390824,53.29694300345075],[-120.94110745141248,53.29882099900886],[-120.93627376806562,53.30090709389989],[-120.93095575336103,53.30225290545569],[-120.92268940340604,53.30441464725941],[-120.91880046304182,53.30615527683244],[-120.91414836555538,53.30709535545066],[-120.91059615713904,53.30591971210804],[-120.90530090315828,53.30257707137162],[-120.89981741288653,53.299924148900494],[-120.87995593572536,53.299351192733525],[-120.87811382735673,53.29701837511626],[-120.87432222143997,53.2928686139334],[-120.867398602657,53.28845168058016],[-120.86087339371512,53.28596956031592],[-120.85400239553161,53.28595450884366],[-120.84666077486872,53.28633646589936],[-120.84282153507144,53.28470131644295],[-120.83344461272418,53.28275285341829],[-120.82848020935961,53.28243298093601],[-120.8153412787644,53.28375397397772],[-120.80714224716293,53.28448689914986],[-120.80439492448805,53.278042582436164],[-120.80039748336753,53.27172301636122],[-120.79466568672892,53.264207607637545],[-120.78881494452231,53.261204818946105],[-120.77875830435404,53.25811297422093],[-120.7683355075092,53.25519108481407],[-120.76070219619297,53.25431551294853],[-120.75792937706544,53.25432649470572],[-120.75280589297229,53.255434226582814],[-120.74548926486598,53.25769934170088],[-120.74226759509685,53.25937464447085],[-120.73735292253714,53.26242109545427],[-120.7352832949626,53.264999549237004],[-120.73101666488385,53.26610686597198],[-120.72311546576704,53.26808126616526],[-120.71560547733729,53.26897219401078],[-120.71214100052282,53.26716105062752],[-120.7068552571565,53.26329783248027],[-120.69995894724619,53.2596706672675],[-120.69313850553216,53.25592847386119],[-120.69064422341509,53.253366314887366],[-120.68449874942222,53.25001893526254],[-120.67691985697525,53.24491022934825],[-120.67344092813225,53.239664168266145],[-120.67178227574063,53.23682113360805],[-120.67060973842965,53.23442240109647],[-120.66522876876229,53.2295869352177],[-120.65977223739611,53.22737968190713],[-120.65202165869977,53.22415446806657],[-120.64351620167582,53.22024452196074],[-120.634995424694,53.21599330946712],[-120.62638761696813,53.212202058672986],[-120.61806918834202,53.20863113233548],[-120.61087412701715,53.20334328536866],[-120.60283747121177,53.197826591540974],[-120.59221871888215,53.19169732574339],[-120.58781471736822,53.18897093596365],[-120.58076621161376,53.18927506047958],[-120.57421707751148,53.19072537043344],[-120.56822652397976,53.190519407062624],[-120.55918042669143,53.189861285607385],[-120.55124925510161,53.1867429247635],[-120.54581971521432,53.18487607598207],[-120.54233729645235,53.178886015721396],[-120.5404908910253,53.174206372181544],[-120.54057228963772,53.17066812577],[-120.54210561217452,53.16101190365096],[-120.53995376204371,53.15381659131023],[-120.53832281067756,53.15096890281284],[-120.53249881320889,53.14824066542282],[-120.5263889647906,53.14540445747242],[-120.52308937533648,53.149413921364484],[-120.52056424740815,53.15347329470969],[-120.51603133712356,53.15794231926725],[-120.51254234640315,53.162005691632714],[-120.50932188827322,53.165385845430954],[-120.5047564377638,53.16499996175401],[-120.48999977579764,53.1626376588545],[-120.47352886252554,53.15937004755062],[-120.4707696844726,53.158857707131325],[-120.4696109163248,53.15702949324633],[-120.4656898441216,53.15161720062951],[-120.46079232050036,53.145062598911416],[-120.45676092398368,53.13901869664365],[-120.45446761292611,53.13519552032072],[-120.45349010415396,53.131766766785105],[-120.45535883650263,53.12668196841566],[-120.45732472396423,53.12016484015962],[-120.45769217928364,53.11873623590527],[-120.45302621516699,53.11720994471486],[-120.44514694358502,53.11728268996732],[-120.43705730057367,53.11689879898301],[-120.42097831162921,53.110362766345276],[-120.41820062823379,53.107514863102146],[-120.41732438184032,53.10300410743055],[-120.41606537389583,53.09741364493472],[-120.41570117462646,53.084020959184485],[-120.4157558832078,53.07325501514711],[-120.4223472283608,53.065246516184544],[-120.43388712322522,53.058821434172266],[-120.4433220919037,53.049438524586584],[-120.4498142660667,53.04074414761551],[-120.45414583773189,53.03376459285127],[-120.4574931690191,53.024215381538006],[-120.45725638322341,53.0159410785913],[-120.45580101088828,53.0111446893542],[-120.44450883714619,53.00803053083985],[-120.44335477979303,53.0058630081444],[-120.442665498624,53.0020927309927],[-120.44763804618199,52.99339871277767],[-120.44693193057597,52.99330187930123],[-120.44647582731466,52.99323988854425],[-120.44601906665541,52.99318292726313],[-120.4455634047993,52.993117581788795],[-120.44510957339833,52.993038266833125],[-120.44467186924835,52.99295016231597],[-120.44423387431307,52.99286429028717],[-120.44378107110734,52.99277715972873],[-120.44334505569532,52.99267619963044],[-120.44292487546086,52.99256868445482],[-120.44250645347867,52.992447763089324],[-120.44209066825559,52.99230673320979],[-120.44168984074958,52.99216585089519],[-120.44128894329874,52.99202552126574],[-120.44088936595449,52.99187513676192],[-120.44050401543754,52.99173047642298],[-120.44010488285544,52.991576738068204],[-120.43973705405057,52.99141268044763],[-120.43937157200983,52.99123073986237],[-120.43902192623713,52.991042245183955],[-120.43870424384494,52.990838400608965],[-120.43843421134311,52.99061377058026],[-120.43816520802257,52.99038131159486],[-120.43791174770607,52.99014453327435],[-120.43764165115374,52.98992045539575],[-120.43729151059227,52.98973586959123],[-120.4369254675122,52.98955838945117],[-120.4365757725099,52.989370450324266],[-120.43625811434036,52.98916659895458],[-120.4359727859064,52.98894460149249],[-120.43570387927612,52.98871158260191],[-120.43546620268093,52.9884688003383],[-120.43530564319049,52.98820887615923],[-120.4352677960322,52.98792664788767],[-120.43524460968527,52.98764680352028],[-120.4352520638956,52.987361664630285],[-120.43524346540308,52.98708475818773],[-120.43525099219401,52.986799065144496],[-120.43524246766546,52.986521595614704],[-120.43521928225152,52.986241751007505],[-120.43518136357464,52.98596008537119],[-120.43512863808928,52.98567716168503],[-120.43507547493333,52.98539758014884],[-120.4349915999688,52.985123855955],[-120.43487759982682,52.98485152083007],[-120.43474776975633,52.9845857379445],[-120.43457249751911,52.984323982192045],[-120.43439737279584,52.98406111802179],[-120.43422225141028,52.98379824461364],[-120.43406237715594,52.98353328681055],[-120.43391782362647,52.98326568167879],[-120.43378859055954,52.982995429273736],[-120.43370487516006,52.982720586718564],[-120.43365201697462,52.9824387788769],[-120.43365882210443,52.98215866147064],[-120.43372528702648,52.98188025236305],[-120.43384994758189,52.981614704117206],[-120.4340481923364,52.98135882434257],[-120.43426131307137,52.981103648240804],[-120.43445969948294,52.980846650641254],[-120.43462854628939,52.98058657356013],[-120.43478317278561,52.98032076100005],[-120.43493735784843,52.98005829936282],[-120.43506259147628,52.97978828132009],[-120.43517367697454,52.97951198282459],[-120.43529890749275,52.97924196444241],[-120.43548196185574,52.978987612091444],[-120.4357232786529,52.978745574335946],[-120.4359935426918,52.978511083061406],[-120.4362490001551,52.9782753243427],[-120.43647550502718,52.97803201814993],[-120.436673204131,52.97778004758726],[-120.4367984200269,52.97751002733157],[-120.43687951510975,52.97723399051733],[-120.43696119488463,52.97695348535939],[-120.43704214141641,52.97667856540193],[-120.43712315953086,52.976403091281234],[-120.43720432419404,52.97612649106141],[-120.43727126954637,52.97584416476427],[-120.43733740810576,52.97556798669049],[-120.43740427907164,52.97528621428603],[-120.4374701230672,52.97501227017005],[-120.43752167684747,52.97473314514983],[-120.43757330257108,52.97445346599723],[-120.43761012423712,52.974172529087575],[-120.43763163146446,52.973894230751746],[-120.43765394306051,52.97360979298355],[-120.43766013362527,52.97333415105598],[-120.43766749651492,52.9730495636334],[-120.4376748581348,52.97276498509819],[-120.43768236722921,52.97247928051288],[-120.43759791535102,52.97221002431346],[-120.43734376065328,52.971979390520325],[-120.43702842494851,52.97175878313535],[-120.43675808434314,52.97153748895818],[-120.43645748350212,52.971318700783485],[-120.43615681194953,52.97110047481329],[-120.43585511954363,52.97089005855352],[-120.43557035400887,52.970664715433315],[-120.43528529974776,52.97044159678368],[-120.4349186975911,52.97026970261273],[-120.43451758944681,52.97013269930565],[-120.4340993394396,52.970012300541306],[-120.4336822626124,52.96988297273007],[-120.4332657755276,52.96974916625286],[-120.43286467761693,52.96961215727622],[-120.43246416840466,52.96947067868297],[-120.43206468762675,52.969321379298954],[-120.43166462345938,52.9691765467841],[-120.43126580717771,52.969022222366526],[-120.43094656763911,52.96883175890631],[-120.43066191576467,52.968605840647676],[-120.43040789409099,52.968374628398436],[-120.43015512173466,52.96813391610783],[-120.42991759180171,52.96789111966303],[-120.42968006458058,52.967648322703795],[-120.42944195366799,52.96740999346086],[-120.42918919133795,52.96716928789457],[-120.42895123246959,52.96692984053358],[-120.42869789047134,52.96669359313731],[-120.42847561601606,52.966448710151845],[-120.42826983125067,52.9661922349559],[-120.42812485930499,52.965928534102815],[-120.42799622952028,52.96565435836595],[-120.4278818864428,52.965385364465405],[-120.42776813253208,52.96511189324544],[-120.42765423227202,52.96483954786424],[-120.42754106784827,52.964561608105654],[-120.42742724442354,52.96428869941764],[-120.42728213754289,52.96402611428229],[-120.42709058336663,52.96377537281066],[-120.42683727048923,52.96353912096437],[-120.42655318858873,52.96330928682742],[-120.42629988147144,52.96307303375918],[-120.4260930255207,52.962824936633574],[-120.42591855566035,52.962558142305916],[-120.42578833564382,52.9622962601613],[-120.42567460345239,52.96202278641037],[-120.42556131159945,52.96174597027119],[-120.42543161025503,52.96148017343667],[-120.42531773585091,52.961207816263304],[-120.4252040084212,52.96093435081472],[-120.42502947913013,52.960668108926065],[-120.42483810004944,52.96041624622689],[-120.42455339022123,52.96019142912166],[-120.42425183140232,52.959980990708715],[-120.42393445174481,52.95977710253612],[-120.42361758925999,52.95956929932027],[-120.42331714057123,52.95935047604865],[-120.42303156546966,52.959132357454195],[-120.4227309021724,52.958915212680765],[-120.42244540696255,52.95869652961215],[-120.42214386916719,52.95848608561288],[-120.42184350968,52.95826669544379],[-120.42154249221166,52.95805233569154],[-120.42124206490926,52.95783350692678],[-120.42097402277074,52.95759598186836],[-120.42070605643575,52.957357902107226],[-120.42038746609934,52.957163494543124],[-120.41998293080769,52.95705381295284],[-120.41954719118297,52.95695387973284],[-120.41910858972066,52.956875731874824],[-120.41863863532735,52.95680845789475],[-120.41818237712317,52.956750824528875],[-120.41771066311178,52.95669695145159],[-120.4172538198257,52.956643782686335],[-120.41679639009928,52.9565950803443],[-120.41633661090049,52.95656424900256],[-120.41586130117159,52.9565377406734],[-120.4154003478148,52.95651584206082],[-120.41493821938046,52.95650287801938],[-120.41447609122778,52.95648991216486],[-120.4140108770225,52.95650040245866],[-120.41354103328203,52.95654607336953],[-120.41311079794967,52.95663185103836],[-120.41266378151947,52.956731432986],[-120.41222994123432,52.95684457053434],[-120.4118249555787,52.95696582251119],[-120.41143057309735,52.957120174246164],[-120.41107726754689,52.95730345459536],[-120.41069642540121,52.95746856419455],[-120.41031682980022,52.957624182170576],[-120.40990999335487,52.9577593860421],[-120.40947657654085,52.95786916226001],[-120.40904330459406,52.95797781983736],[-120.40862357628814,52.958097236447166],[-120.40820443413298,52.95821218340333],[-120.40778396546918,52.95833718219091],[-120.4073906586441,52.958483146964966],[-120.40700964447106,52.95864936156235],[-120.40667007411584,52.95884170931401],[-120.40631680676115,52.95902442114444],[-120.40593644648726,52.95918560109349],[-120.40555615634251,52.95934622575021],[-120.40516217068424,52.95949720517582],[-120.4047826109386,52.959652242142106],[-120.40438876693345,52.95980210192102],[-120.4039946986996,52.95995364038421],[-120.40358664185,52.96009775847233],[-120.40319330434707,52.96024370907644],[-120.40280011259962,52.960388532389096],[-120.4023796065469,52.96051351172149],[-120.40192266057198,52.96057437456213],[-120.40145636742734,52.96059263444195],[-120.40099184177565,52.96059748815508],[-120.40052783228538,52.96059842597675],[-120.40006507464948,52.96058987172148],[-120.39960231719967,52.960581315648454],[-120.39872845873448,52.96073976242976],[-120.39827150510631,52.96080061109969],[-120.39781337208011,52.960870385239446],[-120.39738180882797,52.96096559545545],[-120.39698792659465,52.96111543037156],[-120.39660684820385,52.9612816110553],[-120.39621296031498,52.9614314433518],[-120.39578072360933,52.96153167872888],[-120.39534981333168,52.961621850406935],[-120.39490469340288,52.9617062893692],[-120.39445757986572,52.96180581085302],[-120.39403954299276,52.96191177100689],[-120.39360427264864,52.962034892751326],[-120.3931974884486,52.962168921521666],[-120.39283125692747,52.962335799121455],[-120.3924778279359,52.96251902310069],[-120.39211100031818,52.96269036648481],[-120.39172988876732,52.96285653123416],[-120.391363645569,52.96302340420236],[-120.39096979629274,52.96317266477178],[-120.39054871192843,52.96330150673659],[-120.39012946966581,52.96341638901405],[-120.38970904409207,52.96354020587659],[-120.38929038777822,52.96365061710931],[-120.38885685774483,52.96376031706439],[-120.38841103746438,52.96384976239192],[-120.38796506881243,52.96394031409972],[-120.38751998322054,52.96402417100515],[-120.3872673879574,52.96401042156836],[-120.38702885149932,52.96400352961119],[-120.38680577754764,52.96399287918767],[-120.38656724126274,52.96398598629588],[-120.3863281141705,52.96398356094535],[-120.386105040499,52.96397290919483],[-120.38586709537253,52.96396154686203],[-120.38564453842754,52.96394698918812],[-120.38540777553052,52.96392668988528],[-120.38518765740555,52.96389369629755],[-120.38495192932172,52.9638655770447],[-120.38473122081624,52.96383705062082],[-120.38449623219144,52.96380334543429],[-120.38427670650901,52.96376588212628],[-120.38405769903409,52.963724504428406],[-120.38384039092688,52.963670285253855],[-120.38363965378167,52.96360393505391],[-120.38342404706762,52.9635368651047],[-120.38322279448934,52.963474419230764],[-120.38300600545526,52.96341629346804],[-120.38280475406113,52.96335384687545],[-120.38258914993106,52.9632867753882],[-120.38238782525933,52.96322489104754],[-120.38218827628043,52.96314959340707],[-120.38200507633243,52.963063844998146],[-120.38182084345345,52.962985906371614],[-120.3816378673033,52.962898477413425],[-120.3814399463009,52.96281090041561],[-120.38125571555281,52.96273296089351],[-120.38105498686237,52.96266660625198],[-120.3808387975324,52.962603999535304],[-120.38062164711828,52.9625486573869],[-120.38040361003974,52.96250001683436],[-120.3801858692141,52.96244914187804],[-120.37996731496294,52.96240441448119],[-120.37974839204213,52.962362474707064],[-120.37952887797725,52.96232500251972],[-120.37929390182772,52.96229128692594],[-120.37907372354671,52.96225883591388],[-120.37885302732023,52.962230298450315],[-120.37861746055975,52.962201049497075],[-120.37838130242898,52.96217626806161],[-120.37816045916611,52.96214884629658],[-120.37793976412296,52.96212030712027],[-120.37770419859953,52.962091056338885],[-120.37746789366427,52.96206739006739],[-120.37724779131976,52.96203438160818],[-120.3770282811508,52.961996904754116],[-120.37680928865109,52.96195552247374],[-120.37659140694177,52.96190575785287],[-120.37637360032168,52.96185542986202],[-120.37615586761542,52.9618045474375],[-120.37592119298789,52.96176859111646],[-120.37570227732867,52.96172664380741],[-120.37546730751745,52.961692920569114],[-120.37524365656303,52.961686716214544],[-120.37501637883187,52.96170788224265],[-120.37478606713002,52.961751941723016],[-120.37456936797389,52.96180620231148],[-120.37437907833254,52.9618870225258],[-120.37421482851136,52.96199719050272],[-120.3740374089568,52.96209380564985],[-120.37383779847725,52.96213202165647],[-120.37360223570995,52.96210276267317],[-120.37338568948734,52.962042939204984],[-120.3731855685673,52.96197210316331],[-120.37298767046181,52.96188450298131],[-120.37280412493006,52.961801528208895],[-120.37262154199792,52.96171129717656],[-120.37245434922714,52.961617863778365],[-120.37228834184108,52.96151549421655],[-120.37213720570006,52.9614138363105],[-120.37198718153716,52.961303796312066],[-120.37183649114402,52.961198787037254],[-120.37167033878417,52.9610975335686],[-120.3715197980034,52.96099140688599],[-120.37136918332975,52.96088584296674],[-120.37120318141163,52.96078347183059],[-120.37103643973633,52.96068668539972],[-120.3708694772393,52.96059156974271],[-120.37070288519472,52.96049366583945],[-120.37053681175618,52.960391856702365],[-120.37038627630041,52.960285728525974],[-120.3702195384346,52.960188940909724],[-120.3700684119501,52.96008728026809],[-120.36991839781668,52.95997723754696],[-120.3697681616542,52.9598688745776],[-120.36963405472218,52.959751733692464],[-120.3694989126782,52.95964240262564],[-120.36934867876671,52.959534039099346],[-120.36918327960767,52.95942719708184],[-120.3690320836333,52.9593260980257],[-120.36888200019062,52.95921661689592],[-120.3687473062768,52.9591039339691],[-120.36861305639806,52.95898790885478],[-120.36849427062046,52.95886811905192],[-120.36837541083192,52.958748892081985],[-120.36825714441781,52.9586251970356],[-120.36813835946965,52.958505415783264],[-120.36801942819342,52.95838674245371],[-120.36791410669315,52.958278280281576],[-120.36786233526045,52.95821734723681],[-120.36779599111603,52.958153467750044],[-120.36772816528024,52.95810075809054],[-120.36764398850661,52.958058505793986],[-120.3675446463311,52.9580177749341],[-120.36744448867438,52.957983191882704],[-120.36734507335922,52.95794301487797],[-120.3672454353374,52.95790451773555],[-120.36714490827431,52.957872722424824],[-120.36704430666558,52.95784148998855],[-120.36694303885822,52.95781527943445],[-120.36682764314351,52.957782771298085],[-120.36672585745252,52.95776046553872],[-120.36661046205246,52.95772795718843],[-120.36651023232045,52.957693927361504],[-120.36642613107935,52.95765112015954],[-120.36634277231207,52.95760271903411],[-120.36625911609713,52.95755656075448],[-120.36617560947734,52.95750927649329],[-120.36607775229243,52.957457374530975],[-120.3659936519541,52.95741456701409],[-120.36592597776313,52.95736073930828],[-120.36589011684015,52.957292699147835],[-120.36585492368337,52.95721962807344],[-120.36584842951461,52.9571558102009],[-120.36585791654905,52.95708432316058],[-120.36588205059712,52.95701521981339],[-120.36590625809035,52.956945562433795],[-120.36591515205099,52.95687854332055],[-120.36593987762976,52.95680498094772],[-120.36596364021666,52.95673867450356],[-120.3659730534423,52.95666774146059],[-120.3660119810204,52.95659991370436],[-120.36603626158573,52.956529702255594],[-120.36606039502954,52.956460598848764],[-120.36608386078362,52.95639652633801],[-120.36612286145655,52.95632814450903],[-120.3661617149661,52.9562608707144],[-120.36620004898087,52.95619751082339],[-120.36623897576688,52.95612968297277],[-120.36624838721296,52.95605875881752],[-120.3662725935622,52.95598910132226],[-120.3662962816582,52.95592334880349],[-120.36632033963375,52.95585480827911],[-120.36634461926495,52.95578459673516],[-120.36638302727913,52.95572067380515],[-120.36640782607653,52.955646548321155],[-120.36643136437272,52.955581921684185],[-120.36644070186284,52.95551155151552],[-120.36646498228524,52.95544133099631],[-120.36648933614072,52.95537055644349],[-120.36649808064199,52.955304654209414],[-120.36650756617209,52.95523316703657],[-120.36651705167029,52.955161679859756],[-120.36651122436301,52.955092831033916],[-120.36652078333599,52.95502078982514],[-120.36651480783196,52.954953057980845],[-120.36649418718521,52.95488293357531],[-120.3664885081633,52.954812967749405],[-120.36646788644208,52.95474285226916],[-120.36644741418533,52.95467161085903],[-120.36642619975599,52.954605963315416],[-120.36640513478923,52.95453918984199],[-120.36638518088367,52.954464043424025],[-120.36634924696878,52.95439656624572],[-120.36632862686459,52.95432644178755],[-120.36630756100367,52.954259677221266],[-120.36628634818119,52.95419402070018],[-120.36628126244595,52.95411958688461],[-120.3662600485482,52.95405393928901],[-120.36623957697093,52.95398269781312],[-120.3662037183936,52.9539146576089],[-120.36615239936701,52.9538503726887],[-120.36611602169042,52.953786246377014],[-120.36607957060778,52.953722674077476],[-120.36602899309149,52.95365280415779],[-120.36599261695555,52.95358866886452],[-120.36594144686114,52.95352326685201],[-120.36589027692405,52.9534578648147],[-120.36583792136567,52.953401398652666],[-120.36575545975371,52.95334630399764],[-120.36567136905134,52.953303487208245],[-120.36557144695077,52.95326722251649],[-120.36547122855777,52.953233191713565],[-120.36537286265542,52.953185202954295],[-120.36530527068734,52.95313081179257],[-120.36520631225754,52.95308729083938],[-120.36512237085954,52.95304335666436],[-120.36502274632258,52.95300485752763],[-120.3649239367195,52.95296021934725],[-120.36483984761692,52.95291740195409],[-120.36475627696178,52.952870679515],[-120.36467329949384,52.952819489069554],[-120.36459024750613,52.952768861525264],[-120.36452280545437,52.952713352914294],[-120.36443960559637,52.952663842246864],[-120.36437260868179,52.95260498258745],[-120.3643360864935,52.95254197266396],[-120.364269089914,52.95248311294139],[-120.36418618732613,52.95243136811564],[-120.36410313786169,52.952380731279966],[-120.36403562233457,52.95232578533794],[-120.36396847705748,52.95226805135856],[-120.3639018514973,52.95220640342037],[-120.36384972311595,52.952148256384895],[-120.36379796496234,52.95208732132768],[-120.36379273556072,52.95201400429554],[-120.36375688255521,52.951945963265246],[-120.3637203618444,52.95188295312559],[-120.36368443552145,52.951815466092846],[-120.36366396814734,52.95174423300849],[-120.36365807238086,52.95167593792395],[-120.36365299154428,52.951601503881264],[-120.36363163468317,52.951536972698165],[-120.36362648036572,52.95146309267323],[-120.36362065824208,52.95139424354998],[-120.36361490968093,52.951324840398534],[-120.36360908759494,52.951255991269065],[-120.36360378507737,52.95118322821668],[-120.36361327455126,52.95111174109827],[-120.36362217090407,52.9510447219213],[-120.36364645224278,52.950974510728784],[-120.36367058641693,52.95090540757888],[-120.36369405270601,52.950841335328555],[-120.3637190016128,52.95076609320483],[-120.36372782299956,52.95069963696709],[-120.3637371638894,52.95062926680449],[-120.36374687600971,52.950556099703185],[-120.36374046074631,52.950491718495364],[-120.36372043871779,52.95041713440297],[-120.36371469131205,52.95034772227933],[-120.36369355798139,52.95028151110994],[-120.36365755832574,52.95021458696485],[-120.36363709176663,52.9501433538066],[-120.36361647819311,52.95007322869285],[-120.36356531597833,52.95000782550859],[-120.36349824972596,52.94994952821841],[-120.36343007101428,52.94989961275738],[-120.3633306783756,52.94985943216786],[-120.36321412076587,52.949835856228894],[-120.36311287437026,52.94980964225488],[-120.36299616873325,52.94978718308604],[-120.3628962571698,52.94975091604746],[-120.36279671590687,52.94971186092584],[-120.36271219048982,52.949672392887926],[-120.36262862854394,52.94962566884725],[-120.36253020063207,52.94957823163408],[-120.36246209839275,52.949527752640435],[-120.36237913020352,52.949476560474906],[-120.36229556900794,52.94942983619232],[-120.36219721547907,52.94938184467024],[-120.36211313619158,52.949339025237535],[-120.3620141898447,52.94929550150236],[-120.36193018447399,52.94925212791184],[-120.3618302015121,52.94921641398192],[-120.3617305889135,52.949177911971184],[-120.36163119837879,52.94913773886573],[-120.36153114118314,52.9491025876399],[-120.36144706311767,52.94905976772432],[-120.36134759955738,52.94902014840106],[-120.36124865473501,52.94897662401436],[-120.36116457720267,52.948933803893794],[-120.36106511419983,52.94889418432898],[-120.36096616995927,52.948850659701534],[-120.36088164795073,52.94881119032923],[-120.36082500296087,52.94878711432742],[-120.36072613397836,52.94874302653537],[-120.36064146287713,52.94870468290815],[-120.36054266904209,52.94866003199987],[-120.3604585180789,52.94861777432702],[-120.3603595751015,52.94857424918271],[-120.3602750542046,52.94853477936842],[-120.36017603802429,52.948491808091624],[-120.36007709562871,52.94844828270666],[-120.35999316867758,52.948404344752475],[-120.35989415308545,52.94836137323526],[-120.35980948349327,52.94832302900099],[-120.35971113651333,52.9482750264347],[-120.35964296492686,52.94822510873062],[-120.35956007744687,52.94817335157914],[-120.35947585364289,52.94813165615114],[-120.35937706236129,52.9480870042496],[-120.3592781965056,52.9480429152232],[-120.3591941216139,52.948000102607494],[-120.35909466262804,52.94796048135614],[-120.35901058927094,52.947917659671354],[-120.35891164940236,52.947874133292096],[-120.35882816994778,52.947826843544625],[-120.35874520944657,52.94777564876628],[-120.35866165558112,52.94772892185722],[-120.35857810189917,52.94768219488746],[-120.35847916302043,52.9476386681385],[-120.35837918674588,52.9476029512438],[-120.35827869064397,52.94757114816821],[-120.35817789788625,52.947541578969854],[-120.35806194310415,52.9475135299714],[-120.35796196628651,52.94747782165561],[-120.35786072873688,52.94745160312904],[-120.35776023337986,52.947419799608],[-120.35764420559028,52.94739230421888],[-120.35754356211609,52.94736161749317],[-120.35744291878704,52.947330930680785],[-120.35732755876136,52.947298413031376],[-120.35722639564926,52.94727163993407],[-120.35712456532484,52.94724988869466],[-120.35700742457088,52.9472307744986],[-120.35689028392216,52.94721166018583],[-120.35677195586906,52.94720148159868],[-120.35665244033798,52.94720023873379],[-120.35654838381004,52.9471952416974],[-120.35642827451211,52.947198466524966],[-120.3563087589995,52.94719722331128],[-120.35619161875697,52.94717810830312],[-120.35608874998975,52.947164175023964],[-120.35597213013918,52.947141145901035],[-120.35585499020223,52.947122030557445],[-120.3557533094019,52.94709916115115],[-120.35563720895544,52.94707222673681],[-120.35553493450851,52.947053825057054],[-120.35541883432394,52.94702689042668],[-120.35531656008041,52.94700848855682],[-120.35521599283796,52.94697724581335],[-120.35510004154594,52.94694919388897],[-120.35499999489139,52.946914037067735],[-120.35490061718636,52.94687384929113],[-120.35483289895245,52.94682057782573],[-120.35476592452532,52.94676171249351],[-120.3547294215766,52.94669869936813],[-120.354782480501,52.946637173901934],[-120.35486497224251,52.94657931053326],[-120.35493274729023,52.946519616054076],[-120.35498565721439,52.94645920746821],[-120.35503879030435,52.946397118920416],[-120.35509244232463,52.946331125388596],[-120.35514550026592,52.946269599745165],[-120.35518376684952,52.94620680601329],[-120.35522218298372,52.946142886351694],[-120.35524684716519,52.94606987976657],[-120.35527039711357,52.94600525498517],[-120.35527989943155,52.945933768313814],[-120.35528955019059,52.945861164659256],[-120.35529831008179,52.945795262877105],[-120.35532327087435,52.94572002230168],[-120.35534682170088,52.945655388555394],[-120.3553710399764,52.945585732861396],[-120.35540938044048,52.94552237607238],[-120.35543404394117,52.94544936942047],[-120.35545774172881,52.94538362759743],[-120.35549675057095,52.945315239894555],[-120.35553560963567,52.94524797809188],[-120.35560278777284,52.945192751099135],[-120.35565576992047,52.945131779205404],[-120.35572413538884,52.945067616296846],[-120.35576188103016,52.94500872729488],[-120.35580073939595,52.94494146539217],[-120.3558397472816,52.944873077557276],[-120.35586381585095,52.94480453870965],[-120.35588810642896,52.94473432885074],[-120.35589745897272,52.94466395905523],[-120.3559063661285,52.94459694019883],[-120.35591586706373,52.94452545341491],[-120.3559395647802,52.944459702522025],[-120.35596437520563,52.944385578730724],[-120.35598799795082,52.944320390781],[-120.35601228804762,52.94425018087586],[-120.35602164027964,52.944179811049715],[-120.35604593142827,52.94410959219582],[-120.35606955389535,52.94404440421879],[-120.35607905443314,52.943972917397694],[-120.35607324554428,52.943904067588285],[-120.35605324005215,52.94382948189414],[-120.35604676381249,52.94376565402729],[-120.35604154878683,52.943692336280584],[-120.35603640740815,52.94361846450748],[-120.35601521573577,52.94355280571281],[-120.35597886213624,52.94348867586975],[-120.35587993685252,52.943445137890315],[-120.35578064004869,52.943404396748555],[-120.35538035471619,52.943377300075134],[-120.35514431458289,52.94335247177672],[-120.35494141728734,52.943303380601975],[-120.35472536356131,52.94324073416953],[-120.35452536330794,52.943169856688],[-120.35434237995419,52.94308350127173],[-120.35422375238893,52.942963141902624],[-120.35410542248167,52.94284054844532],[-120.35400210536187,52.94271755207338],[-120.3538845192681,52.942589373476174],[-120.35378046089284,52.942471961790275],[-120.35366280129942,52.94234434591028],[-120.35357531597089,52.94221479852465],[-120.35347244742464,52.94208845070191],[-120.35336846507178,52.94197048459414],[-120.35325028890051,52.94184677322382],[-120.35314727369395,52.94172154206822],[-120.35306045894532,52.94158697231091],[-120.35295751977964,52.94146117801174],[-120.35288527222691,52.94132955638664],[-120.35279823572907,52.941196666340915],[-120.35274189179117,52.94105794009434],[-120.35271557118752,52.940918408564805],[-120.35268932561227,52.94077831405988],[-120.35266300535388,52.94063878249495],[-120.35262122835897,52.94050300446402],[-120.35257974868043,52.940364992447826],[-120.35253797221985,52.94022921436481],[-120.35249708718258,52.940086734377296],[-120.35244015158712,52.93995247581164],[-120.35238373560523,52.93981431224628],[-120.35232687559042,52.93967949064579],[-120.35223925008634,52.939551067972694],[-120.35215177483212,52.93942151930879],[-120.35203412855464,52.93929390156411],[-120.35193067749181,52.939172020088584],[-120.35181251326951,52.93904830706418],[-120.3517091383037,52.938925862417996],[-120.35157566756953,52.93880478559177],[-120.35145639069061,52.938689453996666],[-120.35130694575497,52.938576035209884],[-120.35117169459957,52.93846836165196],[-120.35102180433407,52.93835830236152],[-120.35087124690736,52.93825326481024],[-120.3507053825658,52.93815086338666],[-120.35055438094383,52.93804917635337],[-120.3503884444672,52.93794732849206],[-120.3502220618621,52.93784884026153],[-120.35003955586183,52.93775912694345],[-120.34985727410563,52.937667733402556],[-120.34967268937021,52.9375936571994],[-120.34947324355858,52.93751886593834],[-120.34925782165064,52.93745174134236],[-120.34905681745467,52.93738867316513],[-120.34885618478995,52.93732281666769],[-120.34865622092818,52.937251937897884],[-120.34845789376291,52.93716876310671],[-120.34829040456793,52.937078644956955],[-120.34812395649251,52.93698070772965],[-120.34794264771243,52.93688205530246],[-120.34777634984435,52.93678300059571],[-120.3475927381521,52.936701665215075],[-120.34740927699822,52.9366192036326],[-120.34721050807114,52.936539386571106],[-120.34699464990427,52.93647559978494],[-120.34679164612608,52.93642761133739],[-120.34655683889558,52.936393829919695],[-120.34633451450189,52.93637863478852],[-120.34609613956002,52.93637165983906],[-120.34585776469628,52.936364684406996],[-120.34563425115917,52.936358423744366],[-120.34539468684969,52.9363603831636],[-120.34517057858196,52.936358589514],[-120.34493391353094,52.936338771489304],[-120.34469851339477,52.93630945425459],[-120.3444784209546,52.93627750103044],[-120.34425966740459,52.93623549464652],[-120.3440414354517,52.93618957398616],[-120.34382327774469,52.936143098902136],[-120.34360541800505,52.93609438947007],[-120.34338785626613,52.93604344569147],[-120.34317126137041,52.935985245667226],[-120.34295422197108,52.93593038721822],[-120.34275301055403,52.93586898814432],[-120.34253656618662,52.93580966997588],[-120.34232004862855,52.935750905424435],[-120.34210241638694,52.935700513276785],[-120.34188530482723,52.93564621580041],[-120.34168364991287,52.935588165796574],[-120.34148363233977,52.93551782878686],[-120.34131668462295,52.93542379570235],[-120.3411678733981,52.93530589594579],[-120.341049155952,52.935186639703964],[-120.34096120228914,52.93506099624084],[-120.3408741420242,52.93492865089107],[-120.34078730492769,52.934794634481115],[-120.34071518132554,52.93466244190284],[-120.34064290816303,52.93453137517402],[-120.34057138073207,52.934394714611756],[-120.34049895964625,52.93426476474176],[-120.34044273997311,52.9341254690726],[-120.340400561883,52.933993037073755],[-120.34035957463819,52.93385166929986],[-120.34031799237192,52.933714769374276],[-120.34027700566926,52.93357340154751],[-120.34023601923883,52.933432033694295],[-120.34014903837787,52.93329913365978],[-120.34006109127156,52.93317348937934],[-120.339942382873,52.93305423186588],[-120.33977641624543,52.93295293169082],[-120.33961000389071,52.932854982180764],[-120.33944314577266,52.93276038333435],[-120.33927680995644,52.932661870389694],[-120.3391103998891,52.932563920155935],[-120.33894451098506,52.93246206476151],[-120.33879519508292,52.93234807564803],[-120.33866007038961,52.93223982435776],[-120.33852598724711,52.93212376306833],[-120.33842281618165,52.932000189273424],[-120.3383358439069,52.93186728778284],[-120.33827941057748,52.931729670795555],[-120.33829801926557,52.931590049852474],[-120.33833111567053,52.93145393302218],[-120.33837959166624,52.931314627421656],[-120.33841268640535,52.93117851948113],[-120.33843233646034,52.931031079692765],[-120.33843548967037,52.93089521037748],[-120.33843916447415,52.9307554271937],[-120.338457623351,52.93061692311046],[-120.33847719796552,52.930470046216115],[-120.33851036676096,52.9303333752255],[-120.33852882522315,52.930194871095395],[-120.33853242463584,52.93005565080103],[-120.33853624790578,52.9299147505733],[-120.33853954955781,52.92977776419312],[-120.33852895937379,52.929632805818976],[-120.33851807274095,52.92949007243391],[-120.33850644071173,52.929352932818055],[-120.33848024902498,52.92921283415837],[-120.33845383363101,52.929074415403],[-120.33844294620198,52.92893169089777],[-120.33844617424576,52.92879525845473],[-120.33844977381037,52.92865603804356],[-120.33846882715764,52.928513065900844],[-120.33847257547751,52.92837272849489],[-120.33847632377268,52.92823239107659],[-120.33847999702172,52.92809261659913],[-120.33848382028887,52.92795171620352],[-120.33847285921622,52.92780954562028],[-120.33844644471695,52.92767112674412],[-120.33840487463884,52.927534225624655],[-120.33836345368074,52.92739620750839],[-120.33829179550906,52.92726067087046],[-120.33822028783992,52.92712400827131],[-120.33811735246857,52.92699876284195],[-120.33798239414622,52.9268894023842],[-120.33780003594711,52.92679910654011],[-120.33768593750622,52.926757633481316],[-120.33758587765128,52.926723024386185],[-120.3374860418643,52.92668673528262],[-120.33738598352947,52.92665211708024],[-120.3372865947136,52.926612476896324],[-120.33718608888245,52.92658121836751],[-120.33708670041818,52.92654157801308],[-120.33698619609225,52.926510310376514],[-120.33688665909149,52.92647178682082],[-120.33678742005208,52.92643102924162],[-120.33670281488727,52.92639266788317],[-120.33660335346111,52.92635358113276],[-120.336520014838,52.926305720936185],[-120.33642114819015,52.92626217508935],[-120.3363218362295,52.92622197112896],[-120.33622066255326,52.92619573366005],[-120.33612008463051,52.9261650282296],[-120.33600360696379,52.92614142502131],[-120.33590250753574,52.92611463326131],[-120.33578603012751,52.92609102983699],[-120.3356848570926,52.92606479190539],[-120.33556897562622,52.926036720393135],[-120.33546906930145,52.926000983579655],[-120.33538498801492,52.92595870740847],[-120.3353015764747,52.92591140928939],[-120.33520271318014,52.92586785347294],[-120.33511915308814,52.92582167218954],[-120.33503589223744,52.925773247974824],[-120.33493695447136,52.9257302548831],[-120.33485406575767,52.9256790425865],[-120.3347865552595,52.92562464193863],[-120.33471949295094,52.925566881412905],[-120.33465205787003,52.92551191773268],[-120.33456954169179,52.92545791727872],[-120.33450203309935,52.925403507524535],[-120.33443459855795,52.92534854371419],[-120.33435230699371,52.92529286318416],[-120.33426941983475,52.92524165046207],[-120.33420131496071,52.925191717331515],[-120.33411835429801,52.92514105851542],[-120.33403598847349,52.925085940708314],[-120.33396788531397,52.92503599850219],[-120.33386902422471,52.924992450477795],[-120.33376859980504,52.92496062604881],[-120.33364914738254,52.924959359821585],[-120.33352842930995,52.92496758321726],[-120.3334226421521,52.92497596927251],[-120.33330080606514,52.924992574147154],[-120.33319442288094,52.92500542786039],[-120.33307303357005,52.92501868160201],[-120.33296709720963,52.92502818421306],[-120.33284585675224,52.9250403207549],[-120.3327388773434,52.92505764191675],[-120.33261763673708,52.925069778223225],[-120.33250998607384,52.9250921299865],[-120.33238859630274,52.92510538302157],[-120.33228102052736,52.925127171624766],[-120.33217396676297,52.92514504628656],[-120.33206639077757,52.925166834693066],[-120.33194425558894,52.92518567208983],[-120.33183667938333,52.925207460285854],[-120.331729027962,52.92522981133293],[-120.33162130251276,52.92525271629517],[-120.33151365205613,52.92527505820896],[-120.33140473415368,52.925306898678976],[-120.33129581608833,52.9253387390475],[-120.33120100986355,52.92537688120781],[-120.33110694864928,52.92540943847733],[-120.33099862625495,52.925436810718075],[-120.3308890362685,52.925473681506965],[-120.33078138486896,52.925496022747964],[-120.33067306204505,52.925523394687595],[-120.3305665276906,52.9255373629836],[-120.33044766996059,52.9255316256599],[-120.33033060094456,52.925512484676],[-120.33021293579458,52.92549781142167],[-120.33011072416716,52.92547938742043],[-120.32999544423097,52.9254468425652],[-120.32989375396158,52.925424513478134],[-120.3297777289855,52.92539755321467],[-120.32967372890448,52.925392532365606],[-120.32955487169909,52.92538679413979],[-120.32943422556765,52.925394459321666],[-120.32931298306039,52.92540659222169],[-120.3292071200351,52.925415528498306],[-120.32908587740312,52.92542766116423],[-120.32897889549156,52.925444978904515],[-120.32887176439809,52.92546341350719],[-120.32876403682077,52.92548631585107],[-120.3286416010526,52.925507383736516],[-120.32853573644296,52.9255163283444],[-120.32841449333264,52.92552846031798],[-120.32829369748418,52.9255372412894],[-120.32818790788022,52.92554562263692],[-120.32806785751781,52.925548818581724],[-120.32794840361504,52.92554754656944],[-120.32784440338341,52.925542524104486],[-120.32772614250665,52.92553231619852],[-120.32760728517354,52.92552657600661],[-120.32748962092327,52.92551190003],[-120.32737195675409,52.925497223935565],[-120.32726974635752,52.92547879746728],[-120.32716865519261,52.925451989259344],[-120.32705442157639,52.92541162281892],[-120.32696930579827,52.925377159324526],[-120.32686925789984,52.925342541090586],[-120.32675450343322,52.925306079239625],[-120.32665348698244,52.92527871657552],[-120.3265529181264,52.92524800295302],[-120.32643689574687,52.92522103939348],[-120.32633587970197,52.9251936764554],[-120.32621881346385,52.9251745313779],[-120.32610115066507,52.92515985401013],[-120.32599834495181,52.925145894260275],[-120.3258812038141,52.92512731179253],[-120.3257806358728,52.92509659750738],[-120.3256807399707,52.925060852365455],[-120.32558136576847,52.92502120225964],[-120.3254973702295,52.92497836499015],[-120.32539799639052,52.924938714727624],[-120.3252981011801,52.92490296925741],[-120.32519857851355,52.924864435780414],[-120.32509868245128,52.92482869907493],[-120.32499811577979,52.92479798411553],[-120.32489822123526,52.92476223830278],[-120.32478235042697,52.924734156148986],[-120.32468178420699,52.924703440917526],[-120.32456412323991,52.92468876200896],[-120.32446191599935,52.92467033309325],[-120.32434350914532,52.92466123873807],[-120.32422584841152,52.92464655949099],[-120.32410878462652,52.924627412308546],[-120.32400717460831,52.924604515179645],[-120.32389122960883,52.92457699509079],[-120.3237906644029,52.92454627909492],[-120.32369024856956,52.92451444605863],[-120.32357370829226,52.92449138453573],[-120.32347329275058,52.92445955131332],[-120.32337213118142,52.924433302772535],[-120.32325670999028,52.92440186825025],[-120.32315510096855,52.924378970382605],[-120.323039157134,52.92435144945059],[-120.32293695136319,52.92433301920688],[-120.32281988901987,52.92431387073876],[-120.32270267752921,52.92429583910698],[-120.32260106905846,52.924272940759515],[-120.32248520109688,52.924244856335825],[-120.32238471291714,52.92421357618836],[-120.32228310481369,52.92419067756518],[-120.32216649095456,52.92416817758842],[-120.32204883233386,52.924153496160656],[-120.32194603037927,52.924139532862775],[-120.3218288197386,52.92412150035877],[-120.32171116136335,52.924106818592975],[-120.3216089567546,52.92408838719333],[-120.32149308994963,52.92406030178988],[-120.32139424388622,52.92401674326227],[-120.32130921071939,52.923981712701966],[-120.32120924594457,52.92394652668399],[-120.32110928133496,52.92391134058036],[-120.32099281815721,52.9238877224858],[-120.32089173352797,52.92386091779627],[-120.32077452410081,52.923842884239264],[-120.32065746407756,52.92382373361486],[-120.32054040415962,52.92380458287363],[-120.32043820078317,52.923786150454006],[-120.3203205438141,52.92377146729507],[-120.3202028869262,52.923756784018444],[-120.32009948925888,52.92374728690455],[-120.31998355031413,52.92371975401634],[-120.31988254197857,52.92369238551468],[-120.31978183242693,52.923662783026685],[-120.31968261631064,52.923622010957224],[-120.31956712477918,52.92359113574374],[-120.31946731169589,52.92355483128855],[-120.31938213169987,52.92352091627534],[-120.31928276695741,52.92348126081447],[-120.31918332713167,52.92344216821098],[-120.31908403802774,52.92340194963813],[-120.31898422579981,52.92336564476904],[-120.31888351764556,52.92333604150647],[-120.31876825209518,52.92330348561282],[-120.31868479013733,52.92325672964896],[-120.31860088029353,52.92321332446975],[-120.31850091956079,52.92317813613493],[-120.31838557945206,52.92314614280533],[-120.31828442413997,52.92311988987076],[-120.31816736722443,52.92310073676115],[-120.31804911545062,52.923090519117174],[-120.31794332991016,52.92309889126965],[-120.31783508021914,52.92312568849276],[-120.31773966935019,52.923168287651464],[-120.31764425829034,52.92321088673168],[-120.31754884703957,52.92325348573343],[-120.31746754488096,52.923302388204384],[-120.31740050121539,52.92335647722649],[-120.31731852583381,52.92341041031946],[-120.31725133241615,52.92346561619958],[-120.31716950722573,52.923518423303136],[-120.3171023134444,52.92357362909453],[-120.31702041256429,52.92362699903186],[-120.31669909130683,52.92368171594982],[-120.31647266037696,52.923697738789954],[-120.31623070114252,52.92371806401195],[-120.31600367213751,52.92373855372962],[-120.31577529802178,52.92376909550888],[-120.31554752133277,52.923795169068015],[-120.31531922071073,52.923825155957],[-120.31509263904817,52.923842293084675],[-120.31486560883314,52.92386278060552],[-120.31462611343628,52.92386467743183],[-120.31440207225617,52.9238628252004],[-120.31416257683838,52.923864721083454],[-120.31393973152613,52.92385393243352],[-120.31372219369986,52.92380348746065],[-120.3135398989803,52.923713162801384],[-120.31335708239811,52.92362674268197],[-120.31319076728087,52.923528755272976],[-120.31308806373322,52.923402370745556],[-120.31298543614528,52.92327542318032],[-120.31286727970537,52.92315278682658],[-120.3127488249275,52.9230323842272],[-120.31259841612885,52.9229272967643],[-120.31243210548955,52.922829308241134],[-120.31224989303615,52.92273841859158],[-120.31208305999965,52.922644343324066],[-120.31190129767242,52.922550102302765],[-120.31173401873849,52.922459368415346],[-120.31155225797339,52.92236512684429],[-120.31138565285256,52.92226937068879],[-120.31120329548217,52.92217959632748],[-120.31102101305818,52.922089267676796],[-120.31083708748989,52.92201121613627],[-120.31062023518169,52.92195574361362],[-120.31040196195472,52.921910886076674],[-120.31018391414467,52.92186434825795],[-120.30996579262055,52.921818364035396],[-120.3097471474265,52.9217762931585],[-120.30951289918033,52.92173908674758],[-120.30929350686456,52.92170259971536],[-120.30907426452569,52.92166499533598],[-120.30883897023119,52.92163560614282],[-120.30861965323393,52.92159856385133],[-120.3083855565693,52.921560238255694],[-120.30816676463789,52.92151928137281],[-120.30794804854077,52.921477761146356],[-120.30772880854778,52.92144015425538],[-120.30751076606998,52.921393611470805],[-120.30729302336182,52.92134483441029],[-120.30705952789614,52.9213020384298],[-120.30683849369503,52.92127783309718],[-120.30660073302329,52.92126687331399],[-120.30637730454302,52.92126053806654],[-120.30614081693453,52.92124007894562],[-120.30592038230549,52.92121140415197],[-120.30568434425385,52.92118759331219],[-120.30546331142858,52.92116338539513],[-120.30522562719871,52.92115185989903],[-120.30500160070297,52.92114998977068],[-120.30476212012695,52.92115186652876],[-120.30452323840373,52.92114927507192],[-120.30430100864386,52.921134000426875],[-120.30406272597085,52.92112694030859],[-120.30383750176642,52.92113400341514],[-120.30359674901491,52.92114536724827],[-120.30337152463575,52.92115242946293],[-120.30313384103333,52.921140899742376],[-120.30290981468723,52.921139025632264],[-120.30267093314886,52.921136430415736],[-120.30244570866343,52.92114349085876],[-120.302207426245,52.92113642698432],[-120.3019838493183,52.92113120032468],[-120.3017455670453,52.921124135515065],[-120.30150788404113,52.92111260251054],[-120.30128385791555,52.92111072530545],[-120.30104557587325,52.921103659078504],[-120.3008084924358,52.9210876569512],[-120.3005861145089,52.921073492218234],[-120.30034963072252,52.9210530214584],[-120.30012680362898,52.92104220663732],[-120.29988852216216,52.92103513806746],[-120.29966269836903,52.92104666088957],[-120.29942134439099,52.92106249282049],[-120.29919731862113,52.921060611643576],[-120.29895903720565,52.921053541191924],[-120.29873680994208,52.92103825603949],[-120.29850197587582,52.921005495395455],[-120.29614896638438,52.921046931891915],[-120.29023016301818,52.92069691817159],[-120.28322073020483,52.921229980869406],[-120.27629937639706,52.92210645337745],[-120.27403476640254,52.92226755595138],[-120.26664346969267,52.922855800623346],[-120.25955127163479,52.92333117096378],[-120.25415721854039,52.92330067275709],[-120.24981234519129,52.92269957696943],[-120.24652890196613,52.92176976178433],[-120.24079160480107,52.919970202851395],[-120.23530991992138,52.9195961031566],[-120.23058289270777,52.91928075209569],[-120.22453173334137,52.91924693853725],[-120.21751735331073,52.92068712795092],[-120.21093032849019,52.92436456679762],[-120.20520676534976,52.927185403615255],[-120.20426293501352,52.927635779721726],[-120.19876150886579,52.92805675130887],[-120.19336626427331,52.92813755084759],[-120.18941067352364,52.927315104570525],[-120.18690540245512,52.925075675803576],[-120.18652615224094,52.924787060303785],[-120.1806816879196,52.92378250891051],[-120.1770904606114,52.923470137890476],[-120.17662883320699,52.92323755008589],[-120.1743860770838,52.92214362080175],[-120.17064722040432,52.919093756924816],[-120.16749617591847,52.915360081268844],[-120.16653387898785,52.9115872120535],[-120.16499857334205,52.90741591436758],[-120.16270093290196,52.90357321157164],[-120.1612397287914,52.900934671574085],[-120.15725868256816,52.89651331076293],[-120.15307627246156,52.89204069205163],[-120.14982621487314,52.88916042421994],[-120.14581037284735,52.88685295988595],[-120.1437414804113,52.88592607318498],[-120.14131569286015,52.8847704880479],[-120.13869055263727,52.88332770803692],[-120.13785424717925,52.88234926630599],[-120.13665824546464,52.88051232471764],[-120.1359455747684,52.87885469079408],[-120.13549258661033,52.87748103138881],[-120.1349396777323,52.876507162425675],[-120.13446982954682,52.87644768581487],[-120.13069310692529,52.87642687444432],[-120.12769034496897,52.87588582914477],[-120.12656704737547,52.8753657521457],[-120.12507564452,52.87415816347889],[-120.12265917466732,52.871970335253174],[-120.11976197131413,52.87012828917],[-120.11516348739404,52.868385210714486],[-120.11104960999941,52.86670450129802],[-120.1107611627952,52.866414517059866],[-120.10910317664053,52.864689488543355],[-120.1061294408649,52.86232930567639],[-120.1041829754482,52.86031755603251],[-120.10186346999986,52.85830498826479],[-120.09999248463099,52.85715156574349],[-120.09842071036434,52.85502585232139],[-120.09680775084006,52.85050731940795],[-120.09538432376375,52.84666962002144],[-120.0947435942125,52.845584790068244],[-120.09113990898447,52.8411102921731],[-120.08768831689027,52.83919993166028],[-120.08338541369746,52.837402782183446],[-120.08019167276515,52.83600391547025],[-120.07639031898367,52.833180922482455],[-120.07444002653317,52.831001310271354],[-120.07004742423774,52.82942903376204],[-120.06678176212652,52.827696603576726],[-120.06444531530971,52.82636540177006],[-120.06321958960781,52.82584502225465],[-120.06068185640311,52.825423438182284],[-120.05663346274198,52.825454832439235],[-120.05116453248068,52.82518623278929],[-120.04741628782065,52.82424459579513],[-120.04656334473985,52.82383463031896],[-120.04181984617014,52.82083591515055],[-120.03869549024328,52.81693367121737],[-120.03725038713229,52.81361501670178],[-120.0355562840242,52.80909323282275],[-120.03391427444576,52.80622557096088],[-120.0336607823142,52.8046274835669],[-120.03361972992951,52.80193864621254],[-120.033680728768,52.79937309153517],[-120.03203562343087,52.79685046619148],[-120.02936151992002,52.79369106462287],[-120.02678053212257,52.79093388688892],[-120.02604479760332,52.79001292821645],[-120.0251654764872,52.78692585430671],[-120.02333791080417,52.784116487627834],[-120.0214140225748,52.78135782020748],[-120.02124666250249,52.78010651466182],[-120.02132121549492,52.777024239210725],[-120.02061624713691,52.77450494474123],[-120.01933951862452,52.77255586129154],[-120.01663162456626,52.77082260858559],[-120.01543355880936,52.770013981117344],[-120.01386761072682,52.76800446257575],[-120.01272844101923,52.764230196099],[-120.01230503344532,52.761833176960245],[-120.01039302959946,52.7587897032798],[-120.00707541769019,52.754830069821466],[-120.00579734600123,52.75321697030153],[-120.00358215240863,52.75074656335924],[-120.00127217921671,52.74884597342927],[-119.99978595340423,52.74786824793471],[-119.99853247540169,52.746824850034386],[-119.99578552679488,52.74623280040638],[-119.99328713014042,52.745357081883114],[-119.99224748732533,52.74491225682997],[-119.98795665377243,52.743544452672175],[-119.98478745246148,52.74204073862163],[-119.97927222196907,52.740803601120035],[-119.9747359503072,52.74012447394202],[-119.9716018444983,52.73953660408868],[-119.96950419742556,52.73899255601471],[-119.9689311395192,52.73883195986618],[-119.96672324986497,52.73748808224129],[-119.9648192719333,52.73431240874841],[-119.9646926245348,52.73099621716756],[-119.96453122773111,52.72676770742509],[-119.9645643274568,52.72516491057959],[-119.96305280470148,52.722272058962794],[-119.95963520169269,52.71917378038409],[-119.95666202888317,52.71767139771619],[-119.9527850598161,52.71698094193398],[-119.94918790703787,52.716627655335316],[-119.94669014890304,52.71786491180043],[-119.94452225247308,52.720238975484776],[-119.94099932014974,52.721773365953524],[-119.93611916456288,52.72206461100802],[-119.93140065165483,52.72184662970604],[-119.92511660240291,52.722272032506645],[-119.9206194841147,52.72290369317011],[-119.9195752009905,52.72291796985863],[-119.91373826120103,52.722711377561474],[-119.90749080367189,52.72193864363583],[-119.9039771457121,52.72089484871625],[-119.89660881130948,52.717447115730586],[-119.8913777553538,52.71602857119547],[-119.88894495285359,52.71388777351292],[-119.88692508653254,52.709800513094756],[-119.88456792046625,52.70474553657678],[-119.882839978187,52.69841852877015],[-119.87881429542576,52.69338502743674],[-119.8736970745797,52.68984813753252],[-119.86974581923046,52.68721142172374],[-119.86647250416316,52.6851405743954],[-119.86311845466282,52.68301249854961],[-119.86196483332456,52.682344364993064],[-119.86154908556014,52.68389181516964],[-119.86068233303682,52.68629975956775],[-119.85916975840206,52.68843861346347],[-119.85403691339356,52.689988121026516],[-119.84794502664563,52.69023874038626],[-119.83817200305285,52.687847972935046],[-119.83236979364226,52.68609313993286],[-119.82720429970554,52.68364152920766],[-119.82300730264093,52.68169767793615],[-119.81846255343115,52.67815007523167],[-119.81420136174225,52.67460097002434],[-119.80837570190927,52.67210214144959],[-119.8031498762186,52.67039423800446],[-119.79452565104057,52.66833044334926],[-119.78817813972708,52.666978991339015],[-119.78485979840755,52.666275736845236],[-119.77813061423204,52.66458722277988],[-119.77367565121897,52.66321545735544],[-119.7694849804231,52.661664671281606],[-119.76673012696375,52.66067085914925],[-119.765317187728,52.660570599425974],[-119.76503580745342,52.660766522555654],[-119.76227550816166,52.66266384023801],[-119.75875889365226,52.667395873579224],[-119.75539185718549,52.6734398368933],[-119.75312970751598,52.67609272711487],[-119.74981834292758,52.678593752704685],[-119.74566779592404,52.680929912431026],[-119.74009195879223,52.68019611563377],[-119.73491347524173,52.679797278343386],[-119.72813444344732,52.67976170044456],[-119.72510229204347,52.6788302304395],[-119.7203495498021,52.67745955132529],[-119.71626422426434,52.676306879543596],[-119.70977946097364,52.67609421564945],[-119.70003869574438,52.68020562292849],[-119.69230300830476,52.68584018000174],[-119.68522106922426,52.69106522858227],[-119.67718008746625,52.69561799891055],[-119.672832249224,52.69783877191969],[-119.66357622182461,52.699827448007014],[-119.65238434404932,52.700011111174796],[-119.64476500839692,52.70009453026467],[-119.63719005996457,52.70137771576999],[-119.63157403043817,52.702699223530004],[-119.6282062824048,52.70341850963046],[-119.62419654393433,52.704547700827824],[-119.61892543279195,52.70455176837856],[-119.61531567084218,52.703103677207196],[-119.61330621896687,52.69872216752554],[-119.61371048052278,52.696318148076735],[-119.61364561368934,52.69117874319418],[-119.61286334495476,52.68695544377212],[-119.61077378682228,52.682917123853215],[-119.60768218901238,52.67712574137197],[-119.60351970666835,52.67282845382329],[-119.59677358558793,52.667412380763786],[-119.58816572533098,52.66242014561023],[-119.58481472242647,52.66016972285181],[-119.58192663508075,52.657513081407494],[-119.58041420248416,52.6542152052854],[-119.5784792328137,52.651949637106526],[-119.57490614714689,52.65227330562062],[-119.56974670771741,52.65552939475432],[-119.56353731005868,52.65913474565148],[-119.5615931031916,52.65989624172051],[-119.55433829130524,52.66282955144946],[-119.55062727418158,52.664354730571425],[-119.54295770015777,52.66569057174819],[-119.53761388048743,52.666203260778985],[-119.53778850605345,52.66603229941502],[-119.54005395015552,52.663151211855414],[-119.54107732800455,52.659136649320494],[-119.54011852609774,52.65514791172323],[-119.5372993984319,52.65146458837799],[-119.53513747109722,52.64806014069885],[-119.53374058488545,52.64549824635435],[-119.5330958347311,52.642191921337805],[-119.53187010606392,52.63889386076912],[-119.5307630779561,52.63638455327035],[-119.53050239283877,52.633587940870854],[-119.52968296771039,52.63114408674298],[-119.52681486011441,52.62917506508981],[-119.51741186575389,52.62903731946674],[-119.50499417844031,52.63162113051732],[-119.498762900154,52.634082975633234],[-119.48881996574225,52.638067738345384],[-119.47981851504393,52.642496086251626],[-119.47789092375672,52.64411707647774],[-119.47258417320926,52.64605200893277],[-119.46672050786276,52.64822171439592],[-119.45820130885461,52.649274770387024],[-119.45288663008502,52.64727008904992],[-119.45039325535261,52.64529591758343],[-119.44597417636894,52.64133483995616],[-119.4379898523315,52.63832659988336],[-119.42681481519537,52.63809088998416],[-119.42299352786866,52.63915347012546],[-119.41280254825128,52.645073994130854],[-119.40715912532127,52.64878304856653],[-119.39947465273261,52.64971364394283],[-119.39139630167195,52.64972597221449],[-119.38372178574802,52.651164359052686],[-119.37541320960729,52.653522512946495],[-119.37066895958378,52.65533762630966],[-119.36664145544025,52.65617459668925],[-119.36109323889013,52.65588246883768],[-119.35830581375059,52.65362091522903],[-119.3595053950761,52.64829487463164],[-119.35900683288239,52.647100243118174],[-119.36097873164205,52.64331086645644],[-119.36158701675151,52.64073499633437],[-119.36226906567255,52.637875142161576],[-119.36215193615534,52.633075194154884],[-119.36171502564517,52.63033508363366],[-119.36162542367033,52.62679466911157],[-119.36346079581025,52.62483521475726],[-119.36726270203187,52.62275075036387],[-119.37363832355817,52.61863492067955],[-119.37458348265923,52.61502843690994],[-119.3725317352699,52.611676423057375],[-119.36822752350484,52.608286169297735],[-119.36542074048182,52.60482567726178],[-119.36344383111958,52.60090299146166],[-119.361765729806,52.597259007320446],[-119.35997030584042,52.592649703860374],[-119.35860284943189,52.59054929787285],[-119.3537583818719,52.58778883260286],[-119.34558959722447,52.58769028102237],[-119.33757386296217,52.59032938422831],[-119.32147046472473,52.595952642499746],[-119.3145350908084,52.59669618216905],[-119.30669477451801,52.59818889065134],[-119.29989436463619,52.6008172420649],[-119.29315040669114,52.60156327651944],[-119.28804864579773,52.60017498229932],[-119.28239884785074,52.599250763507776],[-119.27206350137463,52.59836071582027],[-119.26003975246005,52.59828678257157],[-119.25797153942496,52.59830495432788],[-119.25029629474504,52.59911000422459],[-119.24308865558754,52.59968049055268],[-119.23598341203048,52.60110544188167],[-119.22898865406576,52.60361280818869],[-119.2232946763101,52.60531501778357],[-119.21627358384954,52.6058232908486],[-119.21598772518843,52.6059389324502],[-119.21062361328352,52.60518266772518],[-119.20532886481301,52.603335747031856],[-119.20002638421008,52.60097916129182],[-119.19304344505682,52.59966131181612],[-119.18983337960968,52.6033965655722],[-119.19175243220982,52.6095474866967],[-119.19305164767128,52.61399226048396],[-119.18970203511644,52.61990379184266],[-119.18854286301872,52.6231672437774],[-119.18462989158614,52.62999211806835],[-119.18226247546413,52.633553600057844],[-119.17960206677449,52.63354259769162],[-119.17916245118052,52.63508592561476],[-119.17729387178409,52.63617008089698],[-119.17596926750397,52.63747973865359],[-119.1743768684819,52.63953431252049],[-119.17425837478018,52.64046250430508],[-119.17316989814667,52.6411306413983],[-119.17110229383883,52.64364377386424],[-119.17045616529869,52.64508039854332],[-119.16970524240396,52.64661391262618],[-119.16549996100238,52.64937325867842],[-119.15969993105328,52.652517453331896],[-119.15206965336672,52.656955235237625],[-119.14067059884535,52.66158925927566],[-119.13061641460834,52.66543392086534],[-119.1213458824183,52.667173841302464],[-119.11257822594057,52.66846701389888],[-119.10527868298544,52.67062111148327],[-119.1036494079247,52.66826529769781],[-119.09894937496784,52.66474015352758],[-119.09314878200057,52.663147283603394],[-119.08884065527558,52.658772119154065],[-119.0812932578708,52.65630136405985],[-119.07554807152037,52.64574673076185],[-119.07182432522505,52.6410917722273],[-119.06768506892392,52.64111249718081],[-119.06346129687165,52.637529389713166],[-119.05868181326501,52.633433778741946],[-119.0560368862108,52.63369115804836],[-119.05337426695058,52.6330504224999],[-119.05318138937376,52.633047372741686],[-119.05087194719898,52.62986892819917],[-119.05082717111321,52.626667868464445],[-119.04849622200778,52.62188714927187],[-119.04469415482272,52.61957161380751],[-119.04383317163783,52.61837426780412],[-119.04159520671766,52.61376048130561],[-119.0384410773553,52.61030252942301],[-119.03687244217858,52.60642291362524],[-119.03848448413906,52.60145127066382],[-119.03643351109473,52.59752360318266],[-119.0296373019404,52.59453715458915],[-119.02174038573045,52.59383983833268],[-119.01864425317916,52.593687386529],[-119.01546900433569,52.59456571854813],[-119.01223826498394,52.59823944237244],[-119.00766919313261,52.60054875855969],[-119.00035816571199,52.600988446600425],[-118.99410788846772,52.596856774929705],[-118.99315175964838,52.59035334189878],[-118.98971764240017,52.58700466252535],[-118.9885896974659,52.586270481690136],[-118.98171365362728,52.584252068710256],[-118.97530313373451,52.58320294236154],[-118.97050997375753,52.58225962141137],[-118.96890995831338,52.58186896495024],[-118.96389797656877,52.579727749570985],[-118.95880559987188,52.57735557636526],[-118.95475332421518,52.57652001945561],[-118.95055187281434,52.57740259937621],[-118.94698628622554,52.577761507820405],[-118.94510170785988,52.57657547318412],[-118.94206438698691,52.57436201270943],[-118.93884731873376,52.57260951605629],[-118.935350981521,52.571200396885914],[-118.9301743721516,52.56980224916407],[-118.92819263791999,52.56929878966922],[-118.92527005989591,52.56828636703204],[-118.92338122495666,52.56641308127989],[-118.9245516636616,52.562926984478516],[-118.92902071746944,52.56095944093838],[-118.93116628726814,52.559748865482284],[-118.93121853341532,52.55718376372504],[-118.93091576839277,52.55586938433207],[-118.93162444538665,52.55283615890499],[-118.93307346030322,52.549635036212976],[-118.93013354253851,52.54639685769045],[-118.92313595668094,52.54238047768415],[-118.91849616743436,52.539374645698736],[-118.91423669694122,52.53631686491571],[-118.91044143201782,52.53296897622899],[-118.90636339985791,52.52944988612961],[-118.90446136968262,52.52740235892115],[-118.90270162299822,52.521988459315175],[-118.90246619431774,52.51839288700663],[-118.90427221205043,52.51375889413249],[-118.90750308705118,52.50974588004118],[-118.9083637180755,52.504544363441106],[-118.90541677929055,52.50164662182685],[-118.89870785481426,52.49728689082278],[-118.89257745701805,52.494007536168844],[-118.8891710698382,52.49093974334798],[-118.88660714720355,52.488159463662655],[-118.88437039568936,52.482515689886355],[-118.88411759412782,52.4769799630629],[-118.88707115587296,52.47365117807049],[-118.89462189828005,52.47155815433941],[-118.90039823892103,52.47033058995095],[-118.90498879272627,52.469907848673444],[-118.90629001131664,52.46938864090722],[-118.90905511713551,52.4669170303571],[-118.91203116528307,52.4649606955036],[-118.91884953987416,52.463785254125824],[-118.92274426607263,52.46182504589456],[-118.92447124058586,52.45827142055239],[-118.92574837431499,52.455467649569144],[-118.93002665458793,52.453960417012404],[-118.93243184654636,52.4519502641765],[-118.9330407249915,52.448522178546725],[-118.93402560608624,52.44577883625222],[-118.93613403860515,52.443137721938655],[-118.9389016616577,52.44026917907266],[-118.94110045563993,52.43734512106119],[-118.93609590818907,52.434457752898176],[-118.92849840758113,52.43284270613452],[-118.92329264681442,52.427679734363274],[-118.92087039661506,52.421984060576435],[-118.92084075648849,52.42072669558031],[-118.92267733394624,52.41757688479297],[-118.92765855829812,52.413665955483374],[-118.9304154405328,52.40959549455138],[-118.92811120909997,52.40561103248318],[-118.92594112183673,52.404140180424946],[-118.92517684651861,52.4037487783135],[-118.92785769564627,52.40184632969813],[-118.93399132417271,52.39856153014824],[-118.94109573161367,52.39332358923473],[-118.94534666913093,52.3900485873608],[-118.94511152418285,52.386794287293625],[-118.93741801741885,52.38455268393679],[-118.93305601866203,52.37995428967498],[-118.93382787455636,52.37480784547217],[-118.93463970843163,52.37337706010308],[-118.93234581975334,52.369339033098946],[-118.92762394424396,52.366222304073375],[-118.9260003528859,52.363778050628234],[-118.92483722290413,52.360243191988424],[-118.92477671843693,52.35647659994977],[-118.92399291918518,52.353512985273944],[-118.9172789190809,52.34823571391216],[-118.90969020795116,52.34576545724294],[-118.9020047755412,52.344155116321865],[-118.89417360395687,52.343967283116584],[-118.8880161403358,52.344114493407844],[-118.88353950055601,52.34419577946147],[-118.87213664943421,52.34362104649766],[-118.86128878241155,52.342196069154035],[-118.85454986484446,52.34068197459156],[-118.84526393116451,52.33662401208554],[-118.83700900944285,52.33295074202797],[-118.82903610353377,52.330075712451674],[-118.82022524355355,52.32709282002346],[-118.81132432003322,52.32359425034565],[-118.80196837491611,52.32043955400404],[-118.79334257694664,52.317166137223765],[-118.7881839014017,52.31445262988454],[-118.78478632029879,52.31092869526066],[-118.78435795913325,52.307050822276885],[-118.79038635484544,52.30376921181692],[-118.80117559791472,52.302122748476904],[-118.80823848177482,52.299972463903536],[-118.80862187795366,52.29997547422975],[-118.81342879132873,52.29727149052806],[-118.81710714365802,52.29354049158277],[-118.82284621317069,52.29054988990602],[-118.83039841177019,52.29005256810682],[-118.83783616073664,52.288821441831445],[-118.84366206643821,52.285027947440106],[-118.84398035272272,52.280800717317376],[-118.84397859601286,52.28045580387652],[-118.84422824999774,52.27788580269644],[-118.84903051029396,52.274379695505246],[-118.85857790967628,52.27170503125825],[-118.87063671277691,52.267307515569094],[-118.87703423933525,52.264928229614064],[-118.88230205797042,52.26188180291404],[-118.88476914462123,52.258552168482076],[-118.88565847397197,52.2557545731973],[-118.88726608716584,52.25083670372092],[-118.88982685342464,52.24773756266722],[-118.88903192598691,52.243973056507826],[-118.87976006029848,52.24002775923205],[-118.87303012797487,52.23783870551521],[-118.86985197881401,52.23699782349651],[-118.85826899106485,52.2348317963213],[-118.84636099798104,52.23472060028706],[-118.84160762430648,52.234225752519585],[-118.83710889632908,52.23219763983221],[-118.83500803639096,52.228781223729136],[-118.83288996225096,52.22325189540518],[-118.83323570984976,52.220282632889706],[-118.8405496953425,52.21768137348067],[-118.84585270372993,52.21724982368312],[-118.85048001010473,52.215292075240306],[-118.85060947239367,52.2117527401029],[-118.84937401145133,52.20987145305185],[-118.84581447699766,52.20743466213362],[-118.84038118804813,52.20483912451904],[-118.83217009183895,52.202652088423875],[-118.82757401847464,52.20078855994275],[-118.82392307581125,52.19846978737596],[-118.81902771744521,52.1939817693639],[-118.81563554657772,52.19011346275732],[-118.81290018696764,52.18699200055162],[-118.80894479986769,52.18324041594672],[-118.80593013466373,52.180917213175796],[-118.80221732914413,52.17810231869261],[-118.80025291985923,52.178139041023925],[-118.79504747549421,52.17818610363808],[-118.7902105104945,52.17823063006979],[-118.78425374480467,52.179248989062415],[-118.77858141123664,52.181118312814036],[-118.77662116315848,52.18156908526455],[-118.77476744743367,52.18076650542111],[-118.76957505531253,52.17950083732917],[-118.76154793327105,52.18267544480546],[-118.75996651488344,52.18323652967417],[-118.75448140294534,52.184769397413014],[-118.74853631296989,52.18412717188288],[-118.74500573798186,52.18217488640049],[-118.73658819662101,52.17776007354746],[-118.73084726140117,52.17381100377742],[-118.72975321129408,52.17112541101892],[-118.72794610379087,52.16524225591536],[-118.72369573405261,52.161808862698805],[-118.71495523569565,52.16161469076666],[-118.70704735715512,52.163987808482965],[-118.70517523506516,52.16461315300917],[-118.69819103618359,52.1659565166775],[-118.69271830845939,52.16497594192713],[-118.68931444610799,52.16160102193888],[-118.68795025808093,52.157657768427036],[-118.68593180226297,52.15479897542051],[-118.67871028633373,52.151639789660855],[-118.67229399955755,52.152590990827385],[-118.67106264522857,52.1544711433839],[-118.67047831389857,52.15835042725047],[-118.667094316227,52.16250460439834],[-118.66346790947568,52.163573860108016],[-118.65861820427864,52.16412993659777],[-118.65118440971061,52.16490306786294],[-118.64457900885387,52.16591070434224],[-118.6409470727827,52.16692034300217],[-118.63598353228778,52.170558030778395],[-118.63204592571329,52.174305709353305],[-118.63174917372349,52.175959014735426],[-118.62837466095095,52.18011292077584],[-118.62061135430086,52.18339673809466],[-118.61213986749777,52.1858185438515],[-118.60868708276269,52.18722939421819],[-118.60642576283254,52.18882145283213],[-118.60026474891605,52.191418349348254],[-118.5964502617078,52.191410616765204],[-118.59153766041828,52.19076175172735],[-118.58503446235551,52.19028199359008],[-118.58215369127923,52.190156317963094],[-118.57870414133374,52.19093976624647],[-118.57738907462426,52.191733249450614],[-118.57597637396626,52.19360830543316],[-118.57463677870865,52.19651393174174],[-118.57357674243843,52.200620131255604],[-118.57271867676431,52.202951961535064],[-118.57165411793108,52.20665426951216],[-118.5702899046423,52.21149670536978],[-118.56923378540745,52.2149763263343],[-118.56815836657414,52.21925171140442],[-118.56803090511609,52.22238816009182],[-118.56556551878687,52.22659872975934],[-118.5650992651909,52.22682287669396],[-118.56341891242191,52.22733230240077],[-118.55865469057534,52.22845105259382],[-118.55462579740966,52.23094679091233],[-118.55338227589039,52.233451485126075],[-118.5533723500616,52.235217374619815],[-118.55326332032672,52.236361341061034],[-118.55443278238978,52.2394975300032],[-118.5557088087068,52.242530087381404],[-118.55761448364373,52.24653101102903],[-118.5602428818968,52.25275811007666],[-118.56184968509075,52.258239481599155],[-118.56135745911938,52.261604858953454],[-118.55803342489418,52.26632645548264],[-118.55604112083434,52.26991412327724],[-118.55487990326769,52.27287617556736],[-118.5542733391901,52.27818043207952],[-118.55220296171608,52.281189797627285],[-118.55123400104533,52.282609686812684],[-118.54711085859537,52.285106093980616],[-118.54384476388562,52.285378303223744],[-118.54152402313689,52.28479555129423],[-118.53631113966047,52.28369048144514],[-118.53148706684318,52.28264355897539],[-118.5289693117041,52.28268754691104],[-118.51992397938325,52.28316334945367],[-118.5127275544746,52.28489359698619],[-118.50897839697224,52.28590351173207],[-118.5029891822259,52.28798884464932],[-118.4979344154093,52.289962687076795],[-118.49210885373724,52.293813498298924],[-118.49049107970106,52.29665361147548],[-118.49061609888655,52.300764848107],[-118.4928109626474,52.30368140851562],[-118.49445492719946,52.3062002378247],[-118.49461156695028,52.309454406326786],[-118.49252776890665,52.311151567512034],[-118.49084237224592,52.31217335856375],[-118.48700179541888,52.313181855639],[-118.48270380675272,52.31418528272018],[-118.477761340586,52.314393515381525],[-118.47290233999428,52.315222536288374],[-118.46971100834577,52.316232205399295],[-118.46633486338123,52.317874623436445],[-118.46332290237477,52.32013654916711],[-118.45901205692121,52.3218801744524],[-118.45685520175105,52.322211239831795],[-118.45182303525071,52.32241821650756],[-118.44631344766789,52.3227341453666],[-118.44023105360276,52.3237857694495],[-118.43731632239009,52.325820103513024],[-118.43409572491406,52.32934006489912],[-118.43238366284648,52.33075286416055],[-118.4287865903699,52.3347272378811],[-118.4226861173189,52.337379581225214],[-118.41699414331003,52.33745849111915],[-118.40954625498237,52.336510281604035],[-118.40386674050802,52.33584859470636],[-118.4029313617698,52.33578656021617],[-118.39994767222215,52.33560115824179],[-118.39426036042653,52.33573730946215],[-118.3889293013781,52.336450262420215],[-118.38674946828168,52.338490173171984],[-118.3850134783448,52.34144665900447],[-118.38374669092352,52.34525994171466],[-118.38211686744386,52.34861633013535],[-118.38051409628346,52.34923065195093],[-118.37769240921027,52.35012881737924],[-118.37431240535085,52.35142194259214],[-118.37036303869964,52.35333816683712],[-118.36660442824301,52.3555944145856],[-118.3647635601769,52.359462712461685],[-118.36002889021418,52.363543002885315],[-118.35646348703203,52.36420499602149],[-118.35142044861219,52.364688010549635],[-118.34365243149476,52.36601319737587],[-118.33736622964885,52.36773937731715],[-118.33045324830438,52.3684962552329],[-118.3248507342997,52.368460146391506],[-118.31600204153358,52.367376016863346],[-118.31098661723256,52.36546463565616],[-118.30572183869596,52.362633745367745],[-118.3036359052224,52.35891130057176],[-118.30408524301627,52.35458283057809],[-118.30089991616347,52.349484653378326],[-118.29887055396622,52.3485082717449],[-118.29556145811915,52.34608830161578],[-118.29142723909241,52.34167188017892],[-118.28762965001873,52.340331498671794],[-118.28443691730958,52.341226979284656],[-118.27953367944325,52.34472874536667],[-118.27389679754485,52.34662790865291],[-118.27136543099121,52.3472960570943],[-118.26705742899229,52.34772466854584],[-118.25881748810403,52.34903853981747],[-118.2538387868252,52.351627649671336],[-118.25247868292522,52.35441340169707],[-118.25026019128045,52.358101892644584],[-118.24896269983772,52.36242554452376],[-118.24749663448358,52.36612326793044],[-118.24678246373878,52.36942591917875],[-118.24519668211502,52.37386667328192],[-118.23979378774945,52.37804581923792],[-118.23565360452096,52.37990176151402],[-118.22918803852659,52.38110521858696],[-118.22368573352705,52.38066563487283],[-118.22239066065279,52.37980437690905],[-118.22229156936649,52.379288521369915],[-118.2198202300341,52.38181662749434],[-118.21776604929421,52.385064647780816],[-118.21775859218253,52.390827635761624],[-118.21914371858725,52.396588926839236],[-118.22306314755463,52.39972810856773],[-118.22866816636207,52.40149616488344],[-118.23623852553965,52.40321135435537],[-118.24231227566041,52.40378371524711],[-118.23959797277259,52.40749131433547],[-118.23698377637129,52.41228142819027],[-118.23594556126335,52.41695726781971],[-118.23630861503199,52.42248768190726],[-118.2374338175027,52.42642719059559],[-118.2395818757251,52.42979353502806],[-118.24237878816078,52.43367236949235],[-118.24696066978055,52.43743880987237],[-118.2519967212936,52.44279945102605],[-118.25181481128827,52.446679995026095],[-118.24872618431199,52.45056125925096],[-118.24338111361095,52.450843062627165],[-118.23759159830658,52.451695357629895],[-118.2313202728653,52.45340483009615],[-118.22625632537391,52.456141686331975],[-118.22036543124031,52.4596720316689],[-118.21388948251631,52.46372276022734],[-118.20732760735615,52.46742289833877],[-118.20658407125445,52.467595644383465],[-118.1965573065008,52.47328734843849],[-118.19234017991468,52.47876231896469],[-118.19278928957287,52.482814636110014],[-118.19839621019048,52.486582986081366],[-118.20251514927668,52.48858140460057],[-118.20738338890982,52.48858375325795],[-118.21497445648092,52.488876916953046],[-118.22404822020766,52.489506345098135],[-118.22751799754006,52.48985333216386],[-118.23266621507494,52.489457264261524],[-118.23678774291861,52.49071307710747],[-118.24137591694314,52.494475674917105],[-118.24521131387627,52.49624988490872],[-118.24914015673528,52.49767329754231],[-118.2519496318936,52.499787468302266],[-118.25334330870683,52.50275368542952],[-118.25447306271869,52.50389581757092],[-118.25802558581863,52.504695540012406],[-118.26205516658652,52.505896246000724],[-118.26487099241895,52.50880370286314],[-118.26730149417055,52.51302496109323],[-118.26757937643983,52.51650345160042],[-118.26860198947259,52.52095783373016],[-118.27066358249292,52.52294939429612],[-118.2761932234365,52.52597390059074],[-118.2826624858659,52.52922909773866],[-118.28312117120927,52.53047563820799],[-118.28377708591988,52.5321941781331],[-118.28424435454095,52.53636102770568],[-118.28573411652435,52.538812583691765],[-118.28537134199628,52.543546093785295],[-118.28114030340545,52.5473128741414],[-118.27880263587188,52.54873720957154],[-118.27616726834398,52.5516452917809],[-118.27297882338931,52.55489765300829],[-118.26932560290467,52.56014353990796],[-118.27082033755154,52.56544767496549],[-118.27484997847178,52.567504407408975],[-118.27887675422669,52.56933188663531],[-118.28459633557603,52.570927122128005],[-118.29144463104765,52.57121233724524],[-118.29933534193707,52.57190219269601],[-118.30580157431126,52.573154538174954],[-118.31246924841317,52.57469435989946],[-118.3225936919281,52.577773286751075],[-118.32709331269434,52.57988153664837],[-118.33019763133538,52.58239135439308],[-118.33385344989853,52.5865558198945],[-118.3338678177022,52.589296366717704],[-118.33283464015233,52.59323280554812],[-118.33217919965536,52.59431587525221],[-118.33001410158037,52.595686673318355],[-118.32964848000348,52.59813890944294],[-118.32991880654279,52.59853949317884],[-118.33133167436583,52.6014455124949],[-118.33217992659225,52.60401608376417],[-118.33687626536855,52.60612370022034],[-118.34128160796966,52.60612065205772],[-118.34588092605794,52.60669613958004],[-118.34832515642987,52.60891942996858],[-118.34955030648972,52.610970620336055],[-118.35180052427913,52.61428021057331],[-118.35359637439849,52.61838397664248],[-118.35341203631269,52.62141006885298],[-118.35285120284496,52.62254735028735],[-118.35059285653217,52.62643035604562],[-118.35049492219893,52.629055716681286],[-118.35256797586638,52.63144772923863],[-118.35295093741743,52.6341322772513],[-118.34890365893926,52.63544578548657],[-118.3415902909605,52.63670164799906],[-118.33453728090785,52.63915909174865],[-118.33134324220615,52.64234948295913],[-118.32926869764067,52.64651884214099],[-118.3283326358147,52.648744048621026],[-118.32137800670164,52.65279186475923],[-118.31405545573419,52.652503930667606],[-118.30775568402326,52.65050855215699],[-118.29873594780864,52.65005114795531],[-118.2958168227544,52.65301881920362],[-118.29525134534549,52.656894694595266],[-118.29477483724155,52.66060733566419],[-118.29487166767093,52.66180429311339],[-118.29091436898464,52.66853306129151],[-118.28752731138711,52.67218273820674],[-118.28630252875126,52.67640165590881],[-118.2879994186326,52.67897173025635],[-118.29137218078331,52.682168966882365],[-118.29476487428425,52.68468079736446],[-118.2975813349609,52.68650504667363],[-118.30086747103823,52.69027171770626],[-118.3053891383179,52.692896587241634],[-118.30745814921283,52.69357876986367],[-118.3135675467592,52.695920765867456],[-118.31686289847718,52.697743878562186],[-118.31911116960141,52.700827610341555],[-118.32334815434115,52.70413407218311],[-118.32693172475605,52.7051071828101],[-118.33350935617922,52.70693312485791],[-118.34019326792802,52.707672154358875],[-118.34123241024744,52.70761696067974],[-118.3401063633681,52.710065346578716],[-118.33841091117682,52.71543212092751],[-118.33709480063735,52.72067836508333],[-118.3361516456803,52.725757462687135],[-118.33323433637845,52.73168760687308],[-118.32767724893056,52.73602550260374],[-118.32739559072166,52.73659487986674],[-118.33331780716267,52.73727883701678],[-118.33813004620382,52.73791048173952],[-118.3466037783034,52.73968162537613],[-118.35235210601695,52.7424183128212],[-118.35827920673914,52.7464091489983],[-118.36166926486861,52.749483471113955],[-118.36695750710908,52.75296639166856],[-118.37166634214353,52.75502017931656],[-118.37845099710243,52.75615756881093],[-118.38861755149341,52.75809213646863],[-118.395508574552,52.76014334681626],[-118.40040835622887,52.76356479217067],[-118.4028555384265,52.765501517874256],[-118.40984139400065,52.767784476255194],[-118.41531308832467,52.76959952487331],[-118.41645023422383,52.773193921716114],[-118.41663897943617,52.77741709812664],[-118.41692597236444,52.78050205401777],[-118.41730962871613,52.783296273843256],[-118.41674248288543,52.785808433856765],[-118.4173132111757,52.789230182168126],[-118.41760903223538,52.79419512215956],[-118.41685133013254,52.79727255777446],[-118.4124292803894,52.80178709175898],[-118.4089425546014,52.80407081887533],[-118.40376034727558,52.80789386155919],[-118.39943573326056,52.81251806123934],[-118.39933962117311,52.81280486605324],[-118.39651207373639,52.81691201271381],[-118.39434604533764,52.82233409266675],[-118.39397112989481,52.826101926053255],[-118.39378619549271,52.82872398514685],[-118.39359835030186,52.83186375867366],[-118.39521723752144,52.83460420237815],[-118.39842273178498,52.837508560599844],[-118.40031375598,52.840989041118924],[-118.39956063303079,52.84344341818208],[-118.39625504639626,52.845611374588486],[-118.39106632394515,52.84584218555217],[-118.38379829048785,52.84715420124254],[-118.38512271624782,52.847612896550764],[-118.38823313314725,52.84829313966677],[-118.39381006591223,52.84932297422867],[-118.39730225740153,52.85063076819671],[-118.40004008200304,52.85205739985463],[-118.40192610335566,52.851887931618684],[-118.40872667119605,52.85051234620538],[-118.4151486829449,52.84999717976135],[-118.42232362145793,52.85113252921748],[-118.42372984066785,52.85113508367055],[-118.42854776625627,52.85004705486941],[-118.43411807535573,52.849354051480056],[-118.43865395981675,52.850436655021234],[-118.44366629667228,52.85237537347953],[-118.45047013626193,52.85459338614942],[-118.45320831127485,52.858471575673455],[-118.4540710702398,52.86035517759681],[-118.45718058204812,52.86223026313975],[-118.45927484504304,52.864513766424544],[-118.46012403094247,52.867993907576285],[-118.45955950925426,52.8701619292495],[-118.45777252211877,52.870445799678684],[-118.45342693423865,52.871479901615444],[-118.45211037835635,52.87290691406037],[-118.44975571944155,52.876045947447935],[-118.44721057860792,52.87924366756444],[-118.44787749088532,52.883239587993934],[-118.44968340313841,52.88529498852945],[-118.45364912940798,52.88682794922386],[-118.45744305299247,52.888823590788874],[-118.46055851718133,52.89076190332295],[-118.46320591030249,52.89263844996548],[-118.46509912343747,52.894461356845284],[-118.46699905317521,52.89531884872678],[-118.46897717962196,52.897086834723076],[-118.4709697364422,52.899196605786315],[-118.47542652028497,52.900843626696485],[-118.47901546605448,52.90130277470937],[-118.4844042227134,52.901750468970114],[-118.49063989992094,52.903169468835095],[-118.49377260585388,52.905277986085935],[-118.49623865489885,52.90624387486861],[-118.50350639864394,52.906236209031626],[-118.50945777435479,52.90468861992903],[-118.51265965118327,52.90165515173687],[-118.51482115470432,52.89823289856996],[-118.51898269006648,52.89714302237102],[-118.52409000270397,52.899186274345944],[-118.5293012172306,52.901407732355544],[-118.53555145955713,52.90556056395933],[-118.53934060357568,52.90795290437392],[-118.5468987633602,52.907314237637536],[-118.54925752826672,52.90514297980673],[-118.5547322266049,52.902969650494086],[-118.5595386513829,52.899990848577914],[-118.56103755555958,52.89673718518503],[-118.5630873829325,52.89085024101002],[-118.5674265114557,52.88787760431966],[-118.5703369968026,52.88604921111094],[-118.57429689493358,52.884383046403],[-118.58146580481203,52.882258047524815],[-118.58958261764566,52.880358820857666],[-118.5950679161222,52.87938062700589],[-118.60289563217007,52.879305599575794],[-118.61037546037291,52.881745485735046],[-118.61142634697664,52.88431025178292],[-118.61183367421283,52.88704624815805],[-118.61185120698393,52.89012946334834],[-118.61271892589728,52.89417891033132],[-118.61216616107328,52.89606452726757],[-118.61209522861355,52.90017251989157],[-118.60822474878583,52.90149855372015],[-118.60539393134509,52.90270189905949],[-118.60475117205264,52.9047575970578],[-118.6073997359034,52.9062355819096],[-118.60985837880934,52.907084657767655],[-118.61242211509175,52.908621390154146],[-118.61432205418308,52.91078830256861],[-118.61688738006731,52.91266244758817],[-118.61870822247438,52.915458597957226],[-118.61881732697962,52.91853509659925],[-118.61789047094611,52.92110641464347],[-118.61600890888677,52.92356579222293],[-118.61498211238069,52.92688173994377],[-118.61529182816346,52.93104290194006],[-118.61492734535516,52.93167285711283],[-118.61313427840417,52.93344825873769],[-118.60831796899149,52.93528161310767],[-118.6083278476365,52.935568971882674],[-118.61174384827032,52.937213924917266],[-118.61477963902362,52.939149734787364],[-118.61799557752057,52.94125788574903],[-118.62046698414518,52.942563121787835],[-118.62340362108623,52.94386655818591],[-118.6255943277392,52.94506331745076],[-118.63110280334018,52.94778941025235],[-118.63697057153614,52.94983191448899],[-118.64170854103257,52.951129537414616],[-118.6469258348232,52.9526045695146],[-118.64864622412115,52.95539535821818],[-118.64999788556023,52.9592760829779],[-118.65446316884436,52.96137617620329],[-118.66063661030091,52.96444133002367],[-118.65988793934973,52.96547322271026],[-118.65706948271371,52.96918760465527],[-118.65776109149596,52.97255538542353],[-118.66070177750737,52.97437276236519],[-118.66545352701827,52.97630318288927],[-118.66811805198004,52.97971969011217],[-118.66701450302423,52.983321668001295],[-118.66200000225653,52.985329184174745],[-118.65623388112216,52.98716785352813],[-118.65009743135,52.9895807423667],[-118.64425184842425,52.99290720960356],[-118.64604588054314,52.993812646401935],[-118.64711030621616,52.99580853574908],[-118.64711951424277,52.9984357296335],[-118.64447600286877,52.99844430830074],[-118.64096276761241,52.99844736474131],[-118.63831446034203,52.998915162741],[-118.6368507304912,52.9998221563939],[-118.63722829459061,53.00136333542698],[-118.63893506402903,53.00467203515966],[-118.64196269658638,53.00763924745832],[-118.64651831684843,53.01123482634213],[-118.64972666661382,53.01420461826357],[-118.65210320752159,53.0185946998132],[-118.6478464109785,53.025895617044185],[-118.64984233238991,53.03005797889101],[-118.65098073010255,53.03120161208095],[-118.6556203400196,53.035024328598226],[-118.65979841009266,53.03822093604071],[-118.66578029361662,53.041417198218824],[-118.67288732956362,53.0414191519695],[-118.67762508702728,53.041132372695365],[-118.68227608606053,53.038566761184285],[-118.68510634407832,53.03497135413119],[-118.6895644852367,53.033602225575414],[-118.6943134919787,53.03576731002366],[-118.69601813387263,53.038337911172164],[-118.696696960811,53.04250012136394],[-118.69830417506618,53.0471175722614],[-118.70248742345196,53.04900150547017],[-118.70363064834663,53.04951793383985],[-118.71045898900877,53.05122989434921],[-118.7149201378929,53.05464671299602],[-118.7217562471941,53.058241780275864],[-118.72764507906754,53.05852309172051],[-118.73236945273187,53.05578441911855],[-118.73682722091425,53.05424449957983],[-118.74128991975738,53.05372467995959],[-118.74877709929953,53.05195501622331],[-118.75408095662486,53.04801343346834],[-118.75509845887936,53.04224771104936],[-118.75974114719736,53.03996434766303],[-118.76438836396589,53.042131904918456],[-118.76970384019079,53.044523909280564],[-118.77360669356035,53.04674440108454],[-118.77095983051129,53.05062701833524],[-118.76756428914487,53.053084379181456],[-118.76397421164211,53.05799414208494],[-118.76359177732529,53.05856026967002],[-118.76000023361203,53.06233168433399],[-118.75744136361583,53.06621389013612],[-118.76144627989602,53.069690624034614],[-118.76562236038777,53.07208289978944],[-118.7668574536126,53.07373960058381],[-118.76487751059884,53.075908323068056],[-118.7599546410783,53.078138224965535],[-118.75730367892857,53.08053365146865],[-118.7535084270204,53.08389991270222],[-118.74782051414506,53.085845773277136],[-118.74470260451936,53.08841326907029],[-118.74517858445289,53.09326338839314],[-118.74576119650118,53.09828168876474],[-118.74528946957497,53.099539482264],[-118.74301422686523,53.09999741432595],[-118.73779689276552,53.10085289524513],[-118.73599180218072,53.102338211091364],[-118.73477171280162,53.10593321075753],[-118.7308834441554,53.10964069912419],[-118.72708506704214,53.110899274208485],[-118.72557871023352,53.11335412877388],[-118.7277597243422,53.11580908113983],[-118.73109504587133,53.11934214942769],[-118.73746410712148,53.12230686436258],[-118.74336592653117,53.123790553922895],[-118.7515394446649,53.125723403060405],[-118.76789214299919,53.130622095758326],[-118.77751039003498,53.136267649861075],[-118.77866355945311,53.13991306822173],[-118.77914390474619,53.141682568959155],[-118.78133939539782,53.145047119227875],[-118.78115684107385,53.14778739620022],[-118.7793482168717,53.149555271766964],[-118.77936387462996,53.152808868460546],[-118.78079212565076,53.15423373410386],[-118.78613537568172,53.15919346641864],[-118.79251926505825,53.16318426245424],[-118.79365999168566,53.16329787227855],[-118.79575101216423,53.16358156999134],[-118.80117450840251,53.164202634155465],[-118.80706686615619,53.16516737325349],[-118.81212300652396,53.16927249136563],[-118.81442674849208,53.17149400976062],[-118.81794453367881,53.17251677431192],[-118.82174787099737,53.1735449736012],[-118.82604019287123,53.17639505961787],[-118.82785913654662,53.1797011046641],[-118.82939929536381,53.18260952970192],[-118.83415908744276,53.184313600751096],[-118.83815425564862,53.18510788272963],[-118.84425059606757,53.18595678116138],[-118.85253614715062,53.18731966855967],[-118.85740083152395,53.189480074796094],[-118.86084712222112,53.19289736858377],[-118.86113041167602,53.193183068976644],[-118.86352781684927,53.19620912716501],[-118.86743190957979,53.19870902379822],[-118.87125330171973,53.20036315348679],[-118.87258911008186,53.20218301888486],[-118.87375742806951,53.204637427053235],[-118.87518808864411,53.20571919304755],[-118.88109209950773,53.20656617840022],[-118.88985184093792,53.20729203154473],[-118.89879657620433,53.20790560378338],[-118.91205487857692,53.21102718348499],[-118.9177817524951,53.214550505353934],[-118.91932472362419,53.217575087676146],[-118.92068858223739,53.2226545220327],[-118.92348431147202,53.22675617705549],[-118.92682275435025,53.22834775773641],[-118.93388188002315,53.23078553634084],[-118.93810103630591,53.23414761252884],[-118.94372826901072,53.23676486496605],[-118.9482057001822,53.23606883928825],[-118.95096601748743,53.23526349477731],[-118.95753543487798,53.23513886986611],[-118.96219572061831,53.23524193312523],[-118.96735560932783,53.23660008309458],[-118.97557749081726,53.23977647447859],[-118.98090064525908,53.23970761656494],[-118.98756171875124,53.238037534625164],[-118.99507355775472,53.23596604928255],[-119.0025747511985,53.23395373683686],[-119.01057549302298,53.233017563383655],[-119.0202712318654,53.232137637711034],[-119.02311519722463,53.229449339370966],[-119.02260544223266,53.22596915455171],[-119.01981930600094,53.222664681835404],[-119.01683346585146,53.219020690822035],[-119.0146275863157,53.21731581457015],[-119.00253337865523,53.216946347050296],[-118.99765014977636,53.21438615083889],[-118.99305354019931,53.210286749104355],[-118.99044156864879,53.20550101692869],[-118.99088328536062,53.20075909184151],[-118.99144635799593,53.19927650208782],[-118.99322028049743,53.195678149074865],[-118.99834956066825,53.1933838494775],[-119.00450267562312,53.19000219578749],[-119.00837410851166,53.18565089699001],[-119.01136959065582,53.18085191550163],[-119.01248187260951,53.17804904575654],[-119.01918865071094,53.17130059777756],[-119.02427921452424,53.16666188799665],[-119.02472076456706,53.16335319533091],[-119.02137159846521,53.161018273859405],[-119.01287145763814,53.15595877820921],[-119.00390123512149,53.15147583435966],[-118.99815570594181,53.14635262768471],[-118.99935749912369,53.143554585730996],[-119.00484601676763,53.14068718018704],[-119.0138573100509,53.13735783656923],[-119.01801902184202,53.135858064817796],[-119.02208078523043,53.132593061699495],[-119.02223884762228,53.128995084349675],[-119.02354160741064,53.125572932118246],[-119.03311015753334,53.12394389051916],[-119.04225372309809,53.12534630221927],[-119.04380408523035,53.12899830272632],[-119.04406135110756,53.1367559384959],[-119.04420849460783,53.1414363030043],[-119.0468163000356,53.14662481977873],[-119.04969587630481,53.14861218834313],[-119.0539879982671,53.15025201916152],[-119.0589425070635,53.15235226082871],[-119.06152301408822,53.154057676713016],[-119.0650734679053,53.15700945266837],[-119.06908319763859,53.158543107650644],[-119.0766303035949,53.16137340502442],[-119.07986152934542,53.16233241804333],[-119.08539599409275,53.16430947406882],[-119.093956710223,53.16445559023028],[-119.0995551605589,53.16346765845635],[-119.10647838247446,53.16201989021879],[-119.11665604186608,53.16129691301442],[-119.12086081423512,53.163678707579095],[-119.12660662946534,53.16714294941486],[-119.13139693280276,53.17037564306764],[-119.13563216855522,53.17498741961958],[-119.13670089425612,53.17675158615386],[-119.13990045924183,53.182273238812876],[-119.14206212434821,53.18797423102743],[-119.14531451615066,53.189564519606805],[-119.14777486157638,53.18898239201024],[-119.15261692898649,53.187651342599295],[-119.15858452209143,53.185974472169285],[-119.16513843093502,53.184581157612676],[-119.17293457472933,53.18398030080237],[-119.17960021976894,53.18440604241467],[-119.183399146505,53.18439185162484],[-119.19092634651528,53.18470741373728],[-119.19778832094181,53.18587843770226],[-119.20552465063803,53.188357734477016],[-119.2120337247482,53.19135234956139],[-119.21633771330532,53.19316584150634],[-119.22026207682913,53.194343387398085],[-119.22730552806777,53.194772816872636],[-119.23271278158897,53.193379278181226],[-119.233518686723,53.19023460634451],[-119.2327949018881,53.186012386731136],[-119.23491555579105,53.181150086947156],[-119.24133248707726,53.17729632940297],[-119.2483561971476,53.175666665573424],[-119.25626711164686,53.17733997654664],[-119.25697366197865,53.18008151095914],[-119.25387667977837,53.18249323868951],[-119.24972290909236,53.185764027931036],[-119.24768934639233,53.18971532034048],[-119.24888631420087,53.19325027799545],[-119.25064407017089,53.19695456023427],[-119.25240797145375,53.20099903878583],[-119.2561103245315,53.206401158277245],[-119.25679563859796,53.20777058498226],[-119.26031041182654,53.213693002850704],[-119.2637980040381,53.21875384378285],[-119.26883284375604,53.2240450177373],[-119.27105512595107,53.226086485942034],[-119.27691430141651,53.23028630278171],[-119.28070649701851,53.235349100572904],[-119.28391465299538,53.23972861078577],[-119.28768721572057,53.244167600411565],[-119.28848366295325,53.24570171293898],[-119.29277547634442,53.2521917065947],[-119.29529509597775,53.25531964345221],[-119.29951958754904,53.257408577807276],[-119.30614179937798,53.26074432428708],[-119.31603280861411,53.26612116873842],[-119.31950721426401,53.26838407129775],[-119.32498388411331,53.27172928525443],[-119.32857064042388,53.275193862628804],[-119.33256901656391,53.28054275400805],[-119.33403278960361,53.28264400949633],[-119.33790459955651,53.28651191386927],[-119.3363129865368,53.28903022801371],[-119.33177937757122,53.29162537949405],[-119.32725225907636,53.29484249330571],[-119.3273154962423,53.298728951148256],[-119.33008566451981,53.299452168909426],[-119.3346716737487,53.299487571183306],[-119.34039772751179,53.29985867614931],[-119.34590411025708,53.29837224654062],[-119.34771361474687,53.30364401289639],[-119.35003108137003,53.30580134800086],[-119.35447912204155,53.30977338799326],[-119.35461069474768,53.31200035175681],[-119.35082885084283,53.31413319758129],[-119.34550941540665,53.31547685477297],[-119.3446098004637,53.3183925499437],[-119.34543147770698,53.32255776582814],[-119.34675004836954,53.32711770397487],[-119.34806893371702,53.331963993814014],[-119.35048855201175,53.334632166029245],[-119.3540769424487,53.33803702256748],[-119.35768655930445,53.34236337117954],[-119.36232654509963,53.34581893182835],[-119.36396452496547,53.34655313363208],[-119.36837238010128,53.34813203418503],[-119.37308858068211,53.35072999498687],[-119.3754284403754,53.35305715743998],[-119.37677582391834,53.35391106731181],[-119.38044236981575,53.35645902886412],[-119.38306423821625,53.358728596492845],[-119.38712536389195,53.36127300208307],[-119.38952390780007,53.36188998202756],[-119.3957520722604,53.36373960817853],[-119.3986523736167,53.36549655022527],[-119.40201248559036,53.36644636175934],[-119.40383510295008,53.36649541096468],[-119.4066846605055,53.366073251086725],[-119.41001600475461,53.36508652091589],[-119.41855602227407,53.3618431984714],[-119.42774935776399,53.35750815546501],[-119.43442604513535,53.356782662590824],[-119.43881120331338,53.35630077240977],[-119.44595697904892,53.35557021736787],[-119.45436545014317,53.356147682601375],[-119.46472573676682,53.358371771402894],[-119.47068322397189,53.35993351845655],[-119.47702790489055,53.362120957218536],[-119.4819111050856,53.36271678341418],[-119.48905661433795,53.361987550191856],[-119.50170919937301,53.36407639741558],[-119.50894882740737,53.36763009996743],[-119.51471621236375,53.37004813596278],[-119.51549886841441,53.37026922238829],[-119.51954731104594,53.36755814151558],[-119.52466485805907,53.36575691348817],[-119.53784247135545,53.365037750454086],[-119.54635521921391,53.365836391660366],[-119.54856486753523,53.36621981328704],[-119.5544499182611,53.36886832231355],[-119.55782886280065,53.37089898255469],[-119.56311289597099,53.372344436949255],[-119.56867468145134,53.37316348864682],[-119.5730131448736,53.37495993095274],[-119.5771632560247,53.37670437779729],[-119.58263877866135,53.378092880571884],[-119.58312059125296,53.37820667577228],[-119.5901711513162,53.38186560397915],[-119.59729273771619,53.384272520461835],[-119.60542762176448,53.38450128467349],[-119.6078810430413,53.38299395822989],[-119.60497191529889,53.38153297937634],[-119.60299618498692,53.378116592716665],[-119.598110644395,53.372953199443515],[-119.59247592547028,53.368941446939175],[-119.5924181455096,53.366544014467664],[-119.59599870174877,53.36428565848002],[-119.60572255791428,53.363189791848804],[-119.61537670998649,53.362946535576874],[-119.6174506770929,53.36213463231163],[-119.62026962953526,53.35960237621496],[-119.62214951129718,53.35827435094868],[-119.6244652057314,53.35985269186698],[-119.62452622266444,53.36214109225264],[-119.62764579238532,53.36480189763478],[-119.6323475858627,53.366305155812924],[-119.63763107596601,53.36706496935508],[-119.65112272822817,53.36804750562241],[-119.66345743753065,53.36858202341532],[-119.66749376728905,53.36929296868531],[-119.67626724790016,53.372993436231035],[-119.6783574988343,53.37669053283857],[-119.67852171281056,53.379719814946846],[-119.6800434683302,53.383076690551974],[-119.68304832844588,53.384822536053534],[-119.68708669360973,53.38593435969536],[-119.69141991267243,53.38709881136283],[-119.69279399511191,53.38902987966355],[-119.69389351006126,53.391077374812966],[-119.69619241541955,53.39128437528884],[-119.6977237473708,53.391162100315555],[-119.69848119772865,53.39075241868788],[-119.70712211846067,53.3881144251439],[-119.71559905238777,53.3874742054484],[-119.72318832755708,53.38872204142167],[-119.7254281694555,53.390133829955104],[-119.72595830796102,53.39235722452015],[-119.72661851986472,53.39583700109679],[-119.72760431142328,53.397543478036724],[-119.72967871913528,53.40026958957195],[-119.72965755192718,53.40284284196878],[-119.73010603201011,53.40591942731735],[-119.73344132658254,53.40892229616135],[-119.74010539531798,53.41183508558616],[-119.74078828831125,53.41222927665035],[-119.74391441397178,53.41471409939253],[-119.7450388915603,53.41813823701593],[-119.74729664450885,53.42046080384523],[-119.75039734111019,53.421801432218395],[-119.75494310652961,53.42370826461033],[-119.75596832787994,53.42638251000486],[-119.75784171476698,53.4286491954972],[-119.75961027330261,53.430298544848974],[-119.75988010384701,53.43377820774625],[-119.75716713479362,53.43603171979008],[-119.7564658818896,53.43860623722332],[-119.75764370694016,53.43985118885481],[-119.76045712250829,53.44119998101837],[-119.76637026830551,53.44452244639912],[-119.76933232528981,53.44803518583954],[-119.77019049898689,53.451741812584835],[-119.77143362622063,53.455101968768815],[-119.77401031559668,53.458564532551854],[-119.77676160358483,53.46156832695682],[-119.77857359523601,53.46498117122342],[-119.77925055374823,53.46869109281816],[-119.78016755114217,53.47068228932754],[-119.78616542752526,53.47336854576877],[-119.7891898841809,53.47546182554038],[-119.7899253028579,53.47796634339072],[-119.7894102806429,53.48031619224009],[-119.78723991097377,53.481764318832106],[-119.78135171893032,53.483642315492155],[-119.77736287717768,53.488755763487354],[-119.78015273645555,53.4932508113364],[-119.78480973851967,53.49497903575908],[-119.78787662693614,53.49546694242311],[-119.7924873898003,53.49577101446236],[-119.79911920101098,53.496457971088056],[-119.80066300310682,53.49678633416397],[-119.80639526941003,53.49976331371366],[-119.80980849899622,53.50201612441724],[-119.81147052556449,53.50308590349315],[-119.81680070388441,53.505611834142755],[-119.82285252348463,53.50972840819676],[-119.82839413779709,53.51607891448491],[-119.83220832709311,53.5191281531635],[-119.8329861386444,53.51941018925639],[-119.83641002720039,53.518518618109866],[-119.84152722429799,53.51601660994751],[-119.84725365079831,53.511738892086825],[-119.84821694095615,53.5080734832237],[-119.85718174232223,53.50290343063716],[-119.86561090568394,53.50282472103716],[-119.86853871667196,53.50468522469758],[-119.87204994893537,53.506706658494565],[-119.8761073949374,53.50821072253778],[-119.88191083648778,53.509705960245],[-119.8888846076613,53.51243538713974],[-119.89034210540964,53.51305100030655],[-119.89718588595998,53.51761606688526],[-119.8992186396675,53.52199057118188],[-119.89947151706045,53.52764785779247],[-119.89605940234325,53.5358530213656],[-119.89167717567754,53.53686358892293],[-119.88729062209825,53.53759043140136],[-119.88257171337283,53.54038186349592],[-119.87723026887622,53.54482943391871],[-119.87666204220203,53.54528878444365],[-119.86884900817215,53.54742545392167],[-119.86161357187214,53.549655480721206],[-119.86021123271101,53.554244500922046],[-119.86110479594674,53.558916886909145],[-119.86314938819994,53.563302744713454],[-119.86808331653104,53.5683948441589],[-119.87322674051,53.57040650193831],[-119.8808828254456,53.57279534274194],[-119.88302265970061,53.57374501541976],[-119.89104171212573,53.57927184191316],[-119.89753378161288,53.58486326887233],[-119.90239686672614,53.59058968315721],[-119.9047409083022,53.595254544783415],[-119.9053597907843,53.5968472866824],[-119.9120054173695,53.603815462796526],[-119.91868142958151,53.60557634794491],[-119.92720915641668,53.60840806746411],[-119.92779105867076,53.61183133166439],[-119.92315843010981,53.61461940156443],[-119.91804627770459,53.61735422071963],[-119.91401795205243,53.61744745174842],[-119.9085583201831,53.61807410429204],[-119.9039199710807,53.62057453005179],[-119.89971951782942,53.621530983491],[-119.89654624456229,53.62138962918057],[-119.89034330748389,53.6195017066445],[-119.88645964667293,53.61839613184963],[-119.8755114327606,53.61838372306955],[-119.87231582915454,53.61767051298075],[-119.8677960206438,53.61416878938824],[-119.86638960647218,53.61183710890284],[-119.85275367377018,53.60870870089048],[-119.84169193526684,53.60834595847061],[-119.83729304819282,53.609304057714844],[-119.8308701307476,53.609756564934344],[-119.8253360307576,53.607178262539215],[-119.81630128243309,53.603601438283356],[-119.80623125973658,53.60414636540355],[-119.80104475788232,53.60436285801229],[-119.79272212164204,53.60214910941432],[-119.78761146469033,53.59756177043448],[-119.78350235170417,53.59462818260774],[-119.7796129435675,53.59277526790129],[-119.77402776002042,53.5917979982205],[-119.76451629265001,53.5918714042496],[-119.75098422338591,53.59250216305876],[-119.74363966371934,53.59444619683483],[-119.74053686734827,53.597500810596785],[-119.7372949481397,53.602494671529996],[-119.73277572526416,53.60596228554827],[-119.72942980473262,53.60667438277603],[-119.72331878034085,53.60797534260347],[-119.71537758061143,53.609813362810456],[-119.71295580987575,53.61296961500571],[-119.71301411628664,53.61571442626572],[-119.71412423118524,53.61753510943605],[-119.71685833428144,53.61968416639822],[-119.71853116238314,53.621103134159206],[-119.7205045759736,53.62325534894325],[-119.72217908047368,53.62506961888372],[-119.7230904161231,53.62700230429582],[-119.72574359165971,53.62949432839125],[-119.72952985892842,53.630725548525284],[-119.73242180806047,53.63132718638685],[-119.73300625924216,53.63189371147644],[-119.73450993269384,53.63393944411563],[-119.73523546073584,53.636101203393814],[-119.73577339539375,53.638499397675474],[-119.73747348920286,53.641571385091424],[-119.73834151548289,53.645219905759525],[-119.73802536432333,53.6481383712345],[-119.73530471316678,53.65135585537718],[-119.73615106881736,53.65403333392242],[-119.73729463534775,53.65807861979996],[-119.73582130500628,53.660894250925125],[-119.73653819793307,53.662711400525154],[-119.74023119767077,53.66377414724631],[-119.74535871867202,53.66532510553828],[-119.74623631595479,53.665667342624566],[-119.75261207939107,53.666817723613896],[-119.75680430143397,53.668721271148485],[-119.75830945987957,53.67128220730996],[-119.76028528951491,53.67354888213841],[-119.76202772941025,53.67422061122897],[-119.7640623678591,53.67477205790827],[-119.76882523833106,53.67673860782379],[-119.76944367929593,53.678104469152224],[-119.77162219746836,53.680651904669844],[-119.77409123890482,53.683091835276166],[-119.77360518267382,53.68675478148229],[-119.7735146065239,53.69103372431689],[-119.77607142428064,53.693298788878636],[-119.77794488660786,53.694426826228344],[-119.78115040449096,53.6957174312443],[-119.78571786861797,53.69778878618827],[-119.78656285195338,53.70029858564547],[-119.7863561936794,53.70372920316586],[-119.78833312419329,53.705599482395556],[-119.79114133531614,53.7065975704003],[-119.79541757790948,53.70828116196632],[-119.79869740935479,53.708365740688144],[-119.80253046071297,53.70719030290558],[-119.80720898765229,53.70606751355312],[-119.8165186102972,53.70444413960083],[-119.82076274310377,53.70120927839412],[-119.83039448242529,53.69729487890215],[-119.83819647409459,53.69791233261871],[-119.84076434346764,53.700230914002326],[-119.84280048887439,53.70398428940171],[-119.843293555465,53.70838398700946],[-119.84307007780161,53.71072184315853],[-119.84488538134352,53.71391114325275],[-119.84673800348445,53.71457871192522],[-119.84989554249927,53.71415186367297],[-119.855863503921,53.71358312064281],[-119.86299521816156,53.713805147990485],[-119.86917309685695,53.71460469160694],[-119.87329997047587,53.71359615187602],[-119.87673444042824,53.712422757131876],[-119.88009141180903,53.711879419874684],[-119.88566258440714,53.71182691216264],[-119.89190532688657,53.71062398906984],[-119.90073601510474,53.70985568454764],[-119.90645289116716,53.71088838777669],[-119.90919340310178,53.71257714592731],[-119.91060543499411,53.714909343499116],[-119.91172959334673,53.71712624501053],[-119.91447770979549,53.71887144635996],[-119.9158905768237,53.72120133512107],[-119.91590532291102,53.721831109649706],[-119.91042186532752,53.72211046290165],[-119.90438689018151,53.723136673881804],[-119.89840996226044,53.7266788804973],[-119.89532897046898,53.72991094430715],[-119.89554754952529,53.73424606273167],[-119.89899689907858,53.73724604150021],[-119.90144770687252,53.7390482926788],[-119.8990005078706,53.741073241125235],[-119.89444047597583,53.74346209122978],[-119.89105086441144,53.7462916185797],[-119.88937782917763,53.748648207851694],[-119.88849788351652,53.75162874957565],[-119.88892111220916,53.75311077983937],[-119.89211349882085,53.75662168206706],[-119.89178410158998,53.75897035608002],[-119.88937369321707,53.76270819659186],[-119.88605584979452,53.76462054563506],[-119.88354506744307,53.767789352413956],[-119.8851496655549,53.77006077671472],[-119.88578535985648,53.77227880187024],[-119.88500010587249,53.77554466232766],[-119.8840115111885,53.778012037598295],[-119.88674152665149,53.7790692689119],[-119.89215530163729,53.779421704976315],[-119.904387075347,53.77856709098867],[-119.91168837166354,53.77780943335049],[-119.91932051626553,53.77802372207228],[-119.92867583818017,53.7779369612778],[-119.93666665467659,53.777575296830385],[-119.94256000346158,53.77746405648651],[-119.94750533623008,53.77872731785854],[-119.95385547093198,53.7813557180247],[-119.95827254924134,53.78405383894765],[-119.96543947222379,53.78821840156278],[-119.9719837523563,53.79089369646243],[-119.97619072071856,53.79273737072508],[-119.97925304656908,53.795106275040574],[-119.97834430793796,53.79705824044694],[-119.9753174323216,53.798976886313625],[-119.97324492753495,53.80105303745478],[-119.97379326378972,53.80327659586714],[-119.97557580405376,53.804572907928474],[-119.97801432314994,53.805348480816754],[-119.98139330164709,53.80543151307943],[-119.98408660062817,53.80529176712032],[-119.9907966997036,53.80356929357293],[-119.9919191804533,53.80235470508269],[-119.99275211475401,53.80102949959245],[-119.99451988713118,53.79872985001587],[-119.99669228265415,53.79722269431335],[-119.99881002016066,53.797257307564244],[-119.99941606005474,53.79781989314464],[-119.9992949309582,53.99995411932169],[-120.00129796570492,54.22588655184309],[-120.00142630374957,54.225879416745336],[-120.00173670846227,54.22582734289846],[-120.00213493899543,54.225728479313375],[-120.00243207585011,54.22559537962351],[-120.00268380438507,54.22540327679183],[-120.00283038977464,54.22525767252246],[-120.00290576866959,54.22515069735673],[-120.00291497618555,54.225021331366385],[-120.00301014595973,54.22488442219378],[-120.00313941236341,54.22473852712031],[-120.00338687811384,54.2246153311549],[-120.00362175905857,54.22463144920264],[-120.00376980173723,54.22471407942011],[-120.00383645248257,54.224944982941345],[-120.00397768668559,54.225127308075],[-120.00420685464894,54.22522237658347],[-120.00452491279735,54.22528981397433],[-120.00498359045949,54.225292273629634],[-120.00530707499952,54.225269503467224],[-120.00564925761125,54.225237532742206],[-120.00589169020904,54.22517534293732],[-120.00606912100821,54.225069475417115],[-120.00614696433277,54.224932273811774],[-120.00615137783876,54.22486224050613],[-120.00612878786494,54.22471276134678],[-120.00605247494852,54.224601087366764],[-120.00592798953814,54.22444938268422],[-120.00596788181001,54.22436087301867],[-120.0061234990118,54.22432530220936],[-120.0063271264925,54.224330877630095],[-120.00652807328309,54.22435486086099],[-120.00681048793057,54.22444188472105],[-120.00712376195266,54.224568648287274],[-120.00743695600718,54.22469597346411],[-120.00780772747491,54.22474577766766],[-120.00813120747038,54.22472299105469],[-120.00857851505657,54.2246445173147],[-120.0090286869735,54.2245066052803],[-120.0093176921782,54.22438939001217],[-120.009478167424,54.22429391941314],[-120.00947683494431,54.2240645678938],[-120.00934978723261,54.22394364469509],[-120.00919374796575,54.22377015290755],[-120.00915438933562,54.22359005665412],[-120.00928602017031,54.22341448399366],[-120.00951521596829,54.2233106137109],[-120.0100787908137,54.22325473294528],[-120.01045156918059,54.22326416664167],[-120.01100649434677,54.22334723262762],[-120.01157342733984,54.22348033400519],[-120.01200328599477,54.22364094435107],[-120.01251210749672,54.22388188267585],[-120.01294536743919,54.22399264629261],[-120.01331576707796,54.22403173334198],[-120.01369056673553,54.22400079459521],[-120.013848725193,54.223934426874116],[-120.01413154663824,54.22379329275042],[-120.01418727431886,54.22371512146277],[-120.01454662682282,54.223206865568415],[-120.0147825281335,54.22276501056594],[-120.01512078671298,54.22229560723494],[-120.01542546599181,54.22208361804782],[-120.01594661131682,54.221908168495084],[-120.01663211850075,54.221835810005466],[-120.0170322862495,54.22169652598541],[-120.0174555367813,54.221478023198856],[-120.01797089316749,54.22114324711894],[-120.01847769881644,54.22070800767727],[-120.019357764991,54.21981408269608],[-120.01996342257404,54.219401709331365],[-120.02055953304772,54.21914789479782],[-120.0213664925109,54.21900900711385],[-120.02220276615915,54.21896035125233],[-120.02287623601475,54.2190368406434],[-120.02320107022427,54.21924337444627],[-120.02342732449645,54.2193983973868],[-120.02379209532091,54.219515851643905],[-120.02404881241767,54.21946107661351],[-120.04160747718697,54.224145334923925],[-120.04178438697711,54.22450862053453],[-120.04234915050317,54.22499044288919],[-120.04303574764694,54.22562997742509],[-120.04346060363534,54.226185837252025],[-120.04375284607616,54.22673854943362],[-120.04351466947878,54.22727812280945],[-120.0434110315016,54.227820927447176],[-120.04328903233618,54.22859716787425],[-120.0433577170013,54.22949516983671],[-120.04375155859256,54.23047883218789],[-120.04430006962478,54.23119361232351],[-120.0450483455536,54.23187437108671],[-120.04579308417208,54.23263306558434],[-120.04652324487475,54.2335860296925],[-120.04685175281915,54.23456871447087],[-120.04691977705217,54.23548521619497],[-120.04715215517093,54.23595911519585],[-120.04765001428332,54.23643817288512],[-120.048424064418,54.23676838945236],[-120.04906530683223,54.23709657675473],[-120.05036812186043,54.237479150574316],[-120.05165456262633,54.23809523213722],[-120.05280299400026,54.23878544792093],[-120.05381498768458,54.23951222425981],[-120.05457102914502,54.24011461686754],[-120.05544503510934,54.24091553807555],[-120.0564737427599,54.24140709141652],[-120.05737692896798,54.241819439327344],[-120.0585418411749,54.24227663151839],[-120.0597667084166,54.242813172253825],[-120.06087891934168,54.243074450742114],[-120.06190774562349,54.243565957834036],[-120.06265829160589,54.24424781594085],[-120.06328366930296,54.24480778096792],[-120.06455866327475,54.2455995913112],[-120.06486056868012,54.24603469629617],[-120.06514787711592,54.246664638889285],[-120.06567693141224,54.24765200506772],[-120.0661005171304,54.24824702992222],[-120.0664822862489,54.248489917673915],[-120.06706578395,54.248698852058816],[-120.06805101892579,54.24887854323762],[-120.06916532659613,54.24909993589525],[-120.07066140582947,54.24960465870398],[-120.07208123080666,54.2502236389322],[-120.07335390729254,54.25103377440364],[-120.07416127911549,54.25183238824595],[-120.07489777961293,54.25270789264811],[-120.07581272932764,54.25389891950761],[-120.07609846675702,54.25456808228225],[-120.07646045780393,54.25508307144919],[-120.07661520613776,54.2557104286337],[-120.07689554735639,54.256457436569065],[-120.07718674144084,54.257048749073036],[-120.077437642564,54.25724980744914],[-120.0779704621351,54.257262337310266],[-120.07883560715818,54.257245577316766],[-120.07990474701288,54.25719268145669],[-120.08090632080555,54.257139859597906],[-120.08224253319796,54.257055022756965],[-120.08364073215651,54.257049058895035],[-120.08477331899854,54.25703799254916],[-120.08650420929371,54.25704035342148],[-120.08689771522177,54.257108986784615],[-120.0877450300069,54.257363820162816],[-120.08851979415292,54.25769377964885],[-120.08942012080954,54.258143925769154],[-120.09023687500749,54.258826554612874],[-120.09157388557846,54.259676679125995],[-120.09254331292038,54.26008970613475],[-120.09345274108313,54.260423373662746],[-120.09456741645097,54.260645095318175],[-120.09627322729733,54.26099784551778],[-120.09730653225867,54.261450459136206],[-120.09913061303214,54.26200166082042],[-120.10007497184473,54.26276514784243],[-120.10036132476462,54.26343313615007],[-120.10076390494989,54.264340529055254],[-120.10103406984514,54.26524260485507],[-120.10136950537745,54.26614729539104],[-120.10151945788697,54.266851351436515],[-120.10179487193592,54.267676692839636],[-120.10213756808875,54.26846373150078],[-120.10295665465405,54.26914636646492],[-120.10354071035644,54.26935456224979],[-120.1049248207282,54.26954374913211],[-120.10696388884246,54.26990465112234],[-120.10873618240919,54.270200869303686],[-120.1138005181842,54.27911113251169],[-120.11375169620206,54.27915540654591],[-120.1136445436951,54.279350802387405],[-120.11361186208968,54.27937675471393],[-120.1135002359401,54.27945505871533],[-120.11343231632911,54.27952481104798],[-120.11334761521468,54.27965780573934],[-120.11333354735007,54.27986390185388],[-120.1133290716632,54.27990863660259],[-120.11335272077076,54.28002665848891],[-120.11341751972684,54.28018095657458],[-120.11344700461858,54.28021778178197],[-120.11339306565534,54.28032474011974],[-120.11337580551024,54.280350874031974],[-120.11335718737607,54.280386489844226],[-120.11320448193622,54.28058979913201],[-120.11312880592847,54.28079458810336],[-120.11311138557447,54.28082183801806],[-120.11299727627716,54.28091744465864],[-120.1128042176647,54.281038440263416],[-120.11267708223447,54.28111712423423],[-120.11256353182573,54.28119533431656],[-120.11241617682603,54.28133427964441],[-120.11232243422906,54.281557305450164],[-120.11232818118691,54.28169243987793],[-120.11237939575976,54.2818471943303],[-120.11237747671706,54.28187407236008],[-120.11237299852466,54.28194577811643],[-120.112219084034,54.28215745194281],[-120.11213765252386,54.282227114741154],[-120.11207284357927,54.282288584536566],[-120.11179954465587,54.28244389537595],[-120.11146775032798,54.28258962488131],[-120.11111501322631,54.28278715596606],[-120.11085648867945,54.28296060522801],[-120.11077697469892,54.283003380175934],[-120.11076211052183,54.283012773114926],[-120.11053563119168,54.28315124877622],[-120.11029244219544,54.283352412380374],[-120.11024377262811,54.283395559997906],[-120.11019566342395,54.28342132039883],[-120.10993825061465,54.283586955417505],[-120.1096792390332,54.28375025580589],[-120.10959891973818,54.2838121046177],[-120.10942061987653,54.28395122658457],[-120.10908304450443,54.284150612395344],[-120.10900480485601,54.28418446680907],[-120.10882834579286,54.284270301368046],[-120.10862439725689,54.284345810993194],[-120.10832606728273,54.28444651520731],[-120.10823176583224,54.28447115651266],[-120.10796291997897,54.28458172414296],[-120.10777039091286,54.28468532447785],[-120.10751119938746,54.284876707290195],[-120.10743159758758,54.28492004251444],[-120.10735207498841,54.28496282413326],[-120.10716026101362,54.28507488239837],[-120.10712693431121,54.28509180263426],[-120.13394111801905,54.29550607636635],[-120.16726134647067,54.29420821535649],[-120.20000570647636,54.2786429714598],[-120.21288534401491,54.272515788839215],[-120.27719231084677,54.26992270380022],[-120.31393568437599,54.27429865821234],[-120.3295511795959,54.282701171262225],[-120.39525071868107,54.2664948704429],[-120.39999578795754,54.26605728975774],[-120.418511934513,54.26434786573474],[-120.43494601403872,54.25462482978379],[-120.42547159122005,54.2429962639008],[-120.43170027370334,54.23477772368251],[-120.44969886548388,54.22998152005668],[-120.4874854672082,54.21604891710258],[-120.50346257654948,54.206298459534096],[-120.52289469681654,54.20741925348729],[-120.54441475913116,54.215241304430556],[-120.56185341554968,54.21281247066207],[-120.56478419450542,54.20955680692266],[-120.56661972375208,54.214966060290976],[-120.56836250478827,54.22022003123686],[-120.57059954207598,54.2234832582815],[-120.57712201865942,54.22617438223177],[-120.57965654408632,54.22741991989964],[-120.58354202435702,54.229884908314254],[-120.58452207771995,54.232516559855],[-120.58177437558277,54.23605100175289],[-120.5789274070709,54.24045257752786],[-120.57892774946714,54.24501733554483],[-120.58086731127077,54.24832986269971],[-120.58340076507328,54.251821615382966],[-120.58181771109005,54.25575853236557],[-120.58191207042042,54.25855728460103],[-120.58571273125068,54.262276246579006],[-120.58814689723259,54.265359052082715],[-120.58892862785845,54.26598695652233],[-120.59252837019729,54.26913059482358],[-120.5953566071063,54.27227569262969],[-120.59739366737834,54.276158244383],[-120.60040116739846,54.28358822158245],[-120.60410585494745,54.289009364276005],[-120.60528021540921,54.2894748677904],[-120.61093055607334,54.290902824633726],[-120.61678543567736,54.2912433678968],[-120.62234996774639,54.29250522844448],[-120.62557795784383,54.29415762794693],[-120.62401216733683,54.29113220627252],[-120.62510037318008,54.28576231519095],[-120.6297915413393,54.28164802699891],[-120.63409574348019,54.28250322436856],[-120.636628311913,54.28439416613517],[-120.63954684878298,54.286050502195465],[-120.64697171714053,54.28867819529397],[-120.65429312327184,54.288901872812005],[-120.6612319151022,54.28707771563535],[-120.66973463996065,54.284737841364816],[-120.67978907876588,54.28364240455313],[-120.6833957322223,54.28500431528638],[-120.68896988466281,54.28906668228849],[-120.69551597301333,54.293863000725665],[-120.7038103556464,54.29505152977011],[-120.71367254293115,54.29522061411745],[-120.72061276218356,54.29481271495622],[-120.72480810102314,54.29629770469045],[-120.72940873983816,54.30040552739261],[-120.72403990961115,54.303847007429],[-120.71807947542372,54.305393846075795],[-120.7103548483098,54.30768118902722],[-120.70469574415696,54.310597175134944],[-120.70244137850085,54.3145418806943],[-120.70293922005708,54.31499483293488],[-120.69228484902467,54.318887404854685],[-120.6833907598694,54.322775281587745],[-120.6855342259306,54.32579797906418],[-120.69150382232874,54.32780182122067],[-120.69483205438834,54.330992841883436],[-120.69326239112237,54.33488646626226],[-120.69482874953614,54.33819819802538],[-120.69687933638473,54.34087515551454],[-120.6994255882103,54.346421711134774],[-120.6940454538343,54.35048163615369],[-120.68572286451146,54.351456956490736],[-120.67809404971837,54.35065619057324],[-120.66958996510354,54.35111934637753],[-120.66284138605138,54.35425553913997],[-120.65658200485811,54.358140655284444],[-120.65901509465112,54.360601502457506],[-120.66184329816505,54.36442732592424],[-120.66351124673801,54.368256084105106],[-120.66546983735584,54.37127994342441],[-120.6692716351752,54.37488764841021],[-120.67484685496991,54.37974079855265],[-120.68062429898298,54.38447668650554],[-120.68345660582709,54.38722387874688],[-120.68972405701936,54.3920165737511],[-120.69403861060812,54.396238641558725],[-120.70108928202946,54.39966321299436],[-120.70676387192492,54.401042016522716],[-120.70872473867807,54.40132488472791],[-120.71704048516555,54.4035995294073],[-120.72399692992065,54.40633576220813],[-120.7325208453405,54.40953464638395],[-120.73344606182671,54.409716150916466],[-120.7341671303053,54.40936214098005],[-120.73453276212973,54.40927350954704],[-120.73503194002085,54.40918503476731],[-120.73545214946043,54.40904822541991],[-120.73603381384754,54.40896555790937],[-120.73645360911794,54.40880177578505],[-120.73724483399906,54.4087000838507],[-120.73803372028271,54.40857133430248],[-120.73874312107625,54.40841331786908],[-120.73952954151166,54.40833386380131],[-120.74010944910981,54.40829489806161],[-120.74076695619043,54.40833002810157],[-120.74117676818975,54.40836456729881],[-120.74204342719392,54.40835369439318],[-120.74270719269033,54.40829475381555],[-120.74332860515078,54.408233981853414],[-120.74352076050675,54.408229921942954],[-120.74386450182237,54.40822117349695],[-120.74431817784489,54.40823064350484],[-120.74552193553797,54.40808156659126],[-120.74623735360349,54.407785641883414],[-120.74666240547518,54.4075501832696],[-120.74704861507439,54.40727037518178],[-120.74739439438495,54.406988822510634],[-120.74787056177094,54.406565782244726],[-120.74830075492032,54.40625979325029],[-120.74880826629663,54.40603012978352],[-120.74927464501081,54.40577398578916],[-120.74966871028026,54.405372105619605],[-120.74997088600696,54.40511337266218],[-120.7502273321012,54.40492453808176],[-120.75061119360076,54.404692907197045],[-120.75079762317472,54.404310148886864],[-120.75085985701182,54.40392989839759],[-120.75125102954173,54.403550349125226],[-120.7516846840859,54.40317150665305],[-120.7522833028021,54.40277394305446],[-120.75245952997615,54.4025614346994],[-120.75284486231381,54.402302910322575],[-120.75302295194217,54.402045562876744],[-120.7531161786708,54.401876642418934],[-120.7531712229526,54.40161287055915],[-120.75342612738295,54.40145091550823],[-120.75360763938711,54.40116676370922],[-120.75374329055946,54.400953628943526],[-120.75395576024229,54.40083588660064],[-120.75416808581934,54.400719260696825],[-120.75429937044561,54.40055534792342],[-120.7546035491474,54.40029556935643],[-120.75485657446592,54.40017844957814],[-120.75493553481749,54.39999992997492],[-120.7549497299101,54.39996460645432],[-120.75495989705414,54.39979435351662],[-120.75496326624307,54.39972262879998],[-120.75525970503725,54.39958379594221],[-120.7554310310808,54.39946989430934],[-120.75551988149165,54.39935019461801],[-120.75561739204,54.39908712826112],[-120.75563185634353,54.398822731328664],[-120.75564983118964,54.39848549281508],[-120.7553429917029,54.398070256091074],[-120.75522612599126,54.397924851914496],[-120.75592782795219,54.39791576883419],[-120.75682902184857,54.39802644497038],[-120.75719196402022,54.39815436812219],[-120.75772964947305,54.39814158171259],[-120.75813887158472,54.39819513274236],[-120.758590658308,54.39820335003978],[-120.75908342817728,54.39823915763406],[-120.759871115222,54.39813268585677],[-120.76070413627491,54.3980045775342],[-120.76120083450502,54.397964184398504],[-120.76182206331312,54.397903318142966],[-120.76190318204576,54.39790456162602],[-120.76219515662353,54.39786097284103],[-120.76294426810871,54.39770790431741],[-120.76320331832211,54.39749782257443],[-120.76353934422207,54.39738201005855],[-120.764039811859,54.397296849660016],[-120.76470814645886,54.397094256529286],[-120.76504231078606,54.39702327834675],[-120.76583801333938,54.396777867990856],[-120.76642108174788,54.3966670520697],[-120.76699823460194,54.39667838110811],[-120.76749248922152,54.39668726817608],[-120.76798481949456,54.39669607054946],[-120.7687280554669,54.396710035499915],[-120.76942069162058,54.39681727312783],[-120.77029087233305,54.396761443691965],[-120.77090965219239,54.39674983704141],[-120.77136818361852,54.39665947785317],[-120.77220013747076,54.396508789065926],[-120.77252923233537,54.39649259784538],[-120.77273828722157,54.39644654794257],[-120.77335691929468,54.39643604571228],[-120.77446796041896,54.39647923777872],[-120.77471231217773,54.396505444745785],[-120.77528087358357,54.39666010261627],[-120.77577030686842,54.39676756813328],[-120.7763761029336,54.39699456332977],[-120.77653678872464,54.39706995562906],[-120.77689886325217,54.39722023949976],[-120.77714018364011,54.397346253031046],[-120.77726045533534,54.39741991086386],[-120.7774168102725,54.39754452547751],[-120.7775328332277,54.39771232773477],[-120.7775293613677,54.39778516993781],[-120.77767679276074,54.39810142411551],[-120.77770288842105,54.39836755700631],[-120.77780011741424,54.39885009885619],[-120.77807399751183,54.399115627750106],[-120.77826378147626,54.3994336968562],[-120.77840669195521,54.399846328421155],[-120.77850311780894,54.40000093663459],[-120.77855803441166,54.400086388695],[-120.77883406088911,54.40033516321601],[-120.77943226792355,54.40068309194985],[-120.7800328916829,54.40098171168007],[-120.7809226165909,54.401335389466226],[-120.78161536256448,54.40144255776124],[-120.78239444466101,54.40155566675346],[-120.78333967286063,54.401595036432006],[-120.78382196642043,54.40182006813172],[-120.78455001298745,54.402075834970795],[-120.78503726219385,54.40220113274886],[-120.78560354132745,54.402405048474975],[-120.78612686233814,54.402657654051424],[-120.78652041620197,54.403002396930674],[-120.78667181770741,54.403242446995826],[-120.78709499714127,54.40378047629415],[-120.78739705739515,54.40431219697758],[-120.78757824534279,54.40477473682191],[-120.78775582475551,54.405280915887715],[-120.7879400027419,54.40572000126311],[-120.78835899842213,54.40635217083772],[-120.78859080419667,54.40664506643886],[-120.78898263382945,54.40698860190204],[-120.78917733061589,54.40720804122618],[-120.78957095368949,54.40755277397298],[-120.78950413958573,54.40803277308512],[-120.78916732764785,54.408169959408866],[-120.78865776091209,54.40844797991041],[-120.78826928465368,54.408778342572624],[-120.78837281380811,54.40916681255471],[-120.7884410394312,54.40940666874749],[-120.7885833144011,54.40984059013618],[-120.78872127043796,54.41032373509258],[-120.78907540334136,54.41064432020729],[-120.78868930644644,54.410925377938064],[-120.78826368802056,54.411182285267984],[-120.78704721190519,54.41156929698431],[-120.78657710450587,54.41187145817822],[-120.78632275574064,54.412014413358705],[-120.78630698522886,54.41227538031198],[-120.78625589641014,54.41249441029575],[-120.78619729307005,54.412802952790045],[-120.78613614681706,54.41316191814186],[-120.786001980573,54.41337963821073],[-120.78578770577205,54.41354227473807],[-120.7854870853574,54.4137292881776],[-120.78573573060343,54.41370736620272],[-120.78618813478016,54.41374245039991],[-120.78631418610463,54.41369506764368],[-120.78668499827192,54.41370195362785],[-120.78713442043458,54.41376048810425],[-120.78742138394529,54.41378736524994],[-120.78799638541761,54.4138479009837],[-120.78812003735025,54.413849822450274],[-120.78877288059638,54.41398330595517],[-120.78913994188089,54.414034940819],[-120.78946869990996,54.41406809241997],[-120.78987678235694,54.41414730673134],[-120.79024236503655,54.41422582503938],[-120.7904050691421,54.414301281169045],[-120.79056223797379,54.41442029428484],[-120.79064129784857,54.41449891074233],[-120.79076119968799,54.414545585925055],[-120.7910489423387,54.41455115202447],[-120.79137918677026,54.41455741170194],[-120.79179102883272,54.414591863191006],[-120.79223969734889,54.414671681376106],[-120.79256619270514,54.41472269428164],[-120.79293553548457,54.414756448064296],[-120.79309794267068,54.41480381464866],[-120.7933436314599,54.41483565077326],[-120.7937484263273,54.414986577691074],[-120.79402103815372,54.41527895678512],[-120.794257289888,54.41547657932362],[-120.79477947256026,54.41572459747523],[-120.79517504629403,54.41602447282573],[-120.79573314638074,54.41641663098349],[-120.79604397200517,54.416758922167354],[-120.79615044562438,54.417048690298294],[-120.79641396213128,54.41753493822185],[-120.79655725980531,54.41794643027016],[-120.7966637401264,54.41823619789051],[-120.7966462353007,54.41857232429802],[-120.79683864052323,54.41884105714047],[-120.79715710355235,54.41906239575825],[-120.7974654325691,54.419455106230714],[-120.79753088076075,54.419793651551466],[-120.79763646300577,54.42010583761776],[-120.79779264727786,54.420278697171064],[-120.79803280863392,54.42040011917413],[-120.79843710859016,54.4205554978226],[-120.79872307608875,54.42060588461638],[-120.79941244167783,54.420834065550416],[-120.79993892449752,54.42098791633411],[-120.80000181676407,54.4210568520556],[-120.8002898035009,54.42138131079404],[-120.80060592175032,54.4216519465686],[-120.80095559545116,54.4220396725828],[-120.80127158147728,54.42231142346287],[-120.80166219244929,54.422681804075374],[-120.80165478547377,54.42293863368853],[-120.8015903855429,54.423354730417174],[-120.80162647114695,54.42424561177979],[-120.80147452030118,54.42471075007779],[-120.80160870176555,54.42537786612184],[-120.80188948335989,54.42565260377894],[-120.80216003446748,54.426130150109024],[-120.80243515529715,54.42652591837647],[-120.8027859865034,54.427103456514665],[-120.80296078659421,54.42777117891068],[-120.80296493109427,54.42848664549716],[-120.8035716820274,54.4290009818523],[-120.80393889548122,54.429281644172775],[-120.80412607358969,54.42972980233971],[-120.80431144315301,54.43022279898706],[-120.80467660475938,54.43050449377278],[-120.80521255435899,54.430783360964604],[-120.80561175342301,54.431209111593326],[-120.8056666444457,54.43175381184493],[-120.80609479329524,54.432440183810826],[-120.80618508226512,54.43313349163534],[-120.80632160317799,54.43375241209209],[-120.80635461745503,54.43395032619857],[-120.80653663492585,54.434470123872586],[-120.80654321918387,54.4351362832219],[-120.80668895001983,54.435606249499344],[-120.80675189598695,54.43598061067683],[-120.80731741300767,54.436485303904],[-120.80776275338131,54.43688381409777],[-120.80783148373126,54.43718206356599],[-120.80780633888573,54.43764025715652],[-120.80711520708623,54.437897154696216],[-120.80679998285753,54.43825989603651],[-120.80614841725746,54.43857125064265],[-120.80545995026745,54.43880691834485],[-120.80501726378674,54.43916647006771],[-120.80451793466614,54.43977401302223],[-120.80419168037626,54.44036085902647],[-120.80392608102791,54.44057636406567],[-120.80390587762054,54.440949428725276],[-120.80405205226566,54.44137000938874],[-120.80373530066987,54.441759629396415],[-120.80365952793063,54.442387469588944],[-120.80379856371897,54.44295596885949],[-120.80387781349455,54.443843068921616],[-120.80468463415272,54.44459947813391],[-120.80522064767993,54.4456430329813],[-120.80462564540356,54.447263848345486],[-120.80569901090608,54.448577332259525],[-120.80674587022551,54.449580878365886],[-120.80687814996755,54.450249020470196],[-120.80680937011435,54.45155538667942],[-120.80656844552303,54.452095344207116],[-120.80563796259678,54.452877670511356],[-120.80511513278176,54.45392888710465],[-120.80477718546453,54.45471399224457],[-120.80494247456544,54.45558004963248],[-120.80471726942903,54.45663720717707],[-120.8048373204558,54.45721836717035],[-120.80488494504634,54.45745395832516],[-120.80522862372385,54.45815131870662],[-120.80588610041893,54.459323552049376],[-120.80574055758014,54.460440247981936],[-120.8046762109905,54.46135948123234],[-120.80313941229738,54.46236637570942],[-120.80232145564806,54.46261112280468],[-120.80129700219368,54.4635814394974],[-120.80115722380175,54.464590582519264],[-120.80076610754081,54.465594627119806],[-120.80051411728729,54.466327245361015],[-120.80053165445422,54.466799610616384],[-120.80047433194562,54.46706778596358],[-120.80000052299758,54.4672575710521],[-120.79952299566102,54.46744607305894],[-120.79887463478181,54.46768231167257],[-120.79792383720824,54.468056118877534],[-120.79698573579876,54.468528153497],[-120.79605619156905,54.46862774267105],[-120.7947128206718,54.46888708638088],[-120.7935074213669,54.469616065401176],[-120.7929111277783,54.47018912390076],[-120.79268594484796,54.470679205882846],[-120.79258459834386,54.471414876029925],[-120.79295714847925,54.47196079021662],[-120.79343687600748,54.47279200352736],[-120.79392039602473,54.47350210202407],[-120.7942023608222,54.474257497183984],[-120.79442470925017,54.4746128391885],[-120.79455225948671,54.47522577280445],[-120.79454175152642,54.47541509537043],[-120.7947960039189,54.47593124982738],[-120.79514210348265,54.476243584410184],[-120.795770601706,54.476561226133526],[-120.79640153799514,54.476783521482204],[-120.79699468272106,54.47698286658546],[-120.797627986446,54.477201887281375],[-120.7982504145703,54.47756754063834],[-120.79880725764636,54.477717043753515],[-120.79962360845833,54.477731628132915],[-120.8000007873102,54.47773872015822],[-120.80013427464203,54.47774104035984],[-120.80181881194855,54.47791163327585],[-120.80256260366512,54.478482308179395],[-120.80328169362718,54.47865217537705],[-120.80481203396884,54.4789991889455],[-120.80533736256672,54.479382002930855],[-120.8064997410336,54.47977171827254],[-120.80756963270842,54.48021812200096],[-120.80899600683895,54.48077400347394],[-120.81006946018887,54.48116214444988],[-120.81113204246259,54.481712631051785],[-120.81146441114596,54.48230280303687],[-120.8118056081921,54.482731653819975],[-120.81213992355065,54.48332190587008],[-120.81238432454245,54.483856681750666],[-120.81235592623993,54.48438659786911],[-120.81232752720318,54.48491651393554],[-120.81229912743218,54.485446429949775],[-120.81235872657352,54.486031739184355],[-120.81342059852528,54.48663494398085],[-120.81422186547185,54.48696880273259],[-120.81539191831955,54.487254318726016],[-120.81601426292266,54.48753115693826],[-120.81682744346209,54.48764878780993],[-120.8182653619442,54.48799393396733],[-120.8191513427457,54.488486310738345],[-120.81965977274936,54.48918835318101],[-120.81992145925496,54.4894038228318],[-120.82044469912782,54.48983587730236],[-120.82089244046375,54.4900064650245],[-120.82132489064222,54.49043578528824],[-120.82176249729162,54.49076314119072],[-120.822470601562,54.49114463886773],[-120.82344708746,54.49164306403991],[-120.82387944036037,54.49207349203066],[-120.82422613143734,54.49239922772578],[-120.82484247984524,54.49283183907356],[-120.82535997024647,54.493371419542605],[-120.82632627484043,54.49402771005644],[-120.82647424918837,54.494222622957246],[-120.82845989068521,54.49393509712378],[-120.83629630385018,54.492209783085734],[-120.83993382013554,54.49129465947738],[-120.84855648377993,54.48997012977275],[-120.85454729691445,54.48995334992271],[-120.85945553860012,54.49040269645005],[-120.87221457954334,54.491469349777695],[-120.87544570262982,54.48809290170471],[-120.87444036868105,54.48398162292349],[-120.87442950453362,54.47923841333327],[-120.87540424065163,54.47665646731354],[-120.87772537787775,54.47112192282083],[-120.87684181866607,54.467402004616275],[-120.87652171964201,54.463517106998026],[-120.88063092353109,54.4605367942465],[-120.88778151654341,54.45864500691473],[-120.90189693894575,54.45832863193626],[-120.9102410725026,54.45779687309463],[-120.91228905881559,54.45653499541063],[-120.91629978678006,54.454070473548796],[-120.92119924629105,54.454059041637166],[-120.926190593993,54.453305725736776],[-120.92932209545648,54.45129824897199],[-120.93609087894552,54.452711243289194],[-120.93866053187156,54.45624902037635],[-120.94093307463572,54.460187567859094],[-120.94516960176455,54.46291406276704],[-120.95302057201812,54.46386787193745],[-120.95574407786486,54.463421407473085],[-120.95600325947811,54.46337823418754],[-120.95563540574832,54.463281064324434],[-120.95537607642949,54.46319960857596],[-120.95491967105377,54.463066215379946],[-120.95465359586716,54.46297661991804],[-120.95427844802676,54.462844339566665],[-120.9539223068107,54.46269937153301],[-120.95371820689188,54.462578655871155],[-120.95347678754115,54.46246200948726],[-120.95314089848658,54.462388608426515],[-120.9527869695252,54.46228863727606],[-120.95247008754849,54.462202548014105],[-120.95214659660488,54.4621072025711],[-120.95186125368306,54.46204823948499],[-120.9516643235827,54.461995180302445],[-120.95140514777749,54.46192831724638],[-120.95104516723114,54.46184605386781],[-120.95078475413254,54.46177352456205],[-120.95054692661209,54.4617064205332],[-120.95021118744144,54.461616176219316],[-120.94991814046786,54.46152545299551],[-120.94952484194187,54.46141485994287],[-120.94928743191923,54.46134440238584],[-120.94876648143058,54.46120045273706],[-120.94846214178807,54.4611856037655],[-120.94810878288588,54.46111258728455],[-120.94778117429018,54.46106645911279],[-120.94751044653601,54.46096767232455],[-120.9471999209859,54.46087734086387],[-120.94699639361112,54.4608150185194],[-120.94665117192152,54.46069181171899],[-120.94625445238752,54.460546260980436],[-120.9459710613344,54.4604559276662],[-120.94570117166872,54.46033471656825],[-120.94527692208698,54.4601610759647],[-120.94494327836547,54.46003834368845],[-120.94449411348674,54.459846826476486],[-120.94394856273085,54.459635593727754],[-120.94370525426308,54.45955028440619],[-120.94335097225063,54.45939076424711],[-120.94307641738811,54.459260371415255],[-120.94286921811708,54.459055301760436],[-120.94267978877285,54.45883188194009],[-120.94234013020629,54.45860110954716],[-120.94219900871447,54.45850431583286],[-120.94200432338795,54.458401932439216],[-120.94179162248238,54.45821010523128],[-120.94167516675464,54.45805482859124],[-120.94156946266756,54.457859579122385],[-120.94149321187525,54.45772393350261],[-120.94143115396113,54.45755182608568],[-120.94135589870692,54.45729833402893],[-120.94133130108139,54.457105325433346],[-120.94133891904531,54.456933862325805],[-120.94147156293965,54.45676983032292],[-120.94158700630155,54.45655680705146],[-120.94165618358876,54.4563418648441],[-120.94169769048115,54.4560999520084],[-120.9417062725437,54.45592066973383],[-120.94163076252576,54.45559082090456],[-120.94159100733066,54.45544209320282],[-120.94158612013145,54.45516794215859],[-120.941395571206,54.45511063815501],[-120.94138215102531,54.45482715118024],[-120.94136843467737,54.454624489140954],[-120.94136794803305,54.454377466264226],[-120.94132296407149,54.45422403051165],[-120.94125349836307,54.45397077811678],[-120.94117066597705,54.45376300350181],[-120.94108423431372,54.45363142580206],[-120.94093902298629,54.45345811372924],[-120.94083251059948,54.45325384737838],[-120.9406803977201,54.45315210397212],[-120.94049813925476,54.45302777760103],[-120.94032193603348,54.45291717502952],[-120.94008116366376,54.45279603392683],[-120.93990772279993,54.45266309044956],[-120.93975177815479,54.45249831316238],[-120.93972263172799,54.452357883765096],[-120.93960193613471,54.4521900778844],[-120.93951744989046,54.45202714264343],[-120.93936012414147,54.45188925317631],[-120.9392071967126,54.451778491807865],[-120.93904863067401,54.45165065506323],[-120.93892034800795,54.451544284272195],[-120.93877265329839,54.45143823039271],[-120.93859067917155,54.4513273853035],[-120.93834483436292,54.45118469748487],[-120.93815350669209,54.45105549950166],[-120.93799837670032,54.45096260881758],[-120.93783884028561,54.450874025964126],[-120.93765603728279,54.45078559974377],[-120.93745797043375,54.45064826151488],[-120.93731772189885,54.45052904176051],[-120.93721808798585,54.45041038528353],[-120.93710827670118,54.45026436026727],[-120.93692936747449,54.45008178382292],[-120.93672293573005,54.44987111836213],[-120.93651978474274,54.449727953443094],[-120.9362080419435,54.44950730021862],[-120.93592640657451,54.44940353929933],[-120.9355516753243,54.44937899451148],[-120.90019704293914,54.431820391586676],[-120.90019360695696,54.43170796873094],[-120.89956806335617,54.41347569733991],[-121.00000592726954,54.408470969820414],[-121.1615493918998,54.40024351381978],[-121.17455705119326,54.44822047863594],[-121.1997453659312,54.45472236688214],[-121.34071713552498,54.49097497761964],[-121.39059488257539,54.49828739502625],[-121.39075188763105,54.498442579389724],[-121.3909851930936,54.498643288408694],[-121.39116901749827,54.4987669392253],[-121.39134277006418,54.49887674271695],[-121.39152693376587,54.499031828523556],[-121.39160681086905,54.499269391512925],[-121.39179211798854,54.49956928927456],[-121.3920967438527,54.4998254321957],[-121.39221405903443,54.500006050512035],[-121.39227387107015,54.50009471980376],[-121.39239588677792,54.50025082589767],[-121.39251844629496,54.50036767388043],[-121.39267206168967,54.50044978156152],[-121.39286689318203,54.50054466625398],[-121.39300053122551,54.50061479744417],[-121.3932424977506,54.500721559666836],[-121.39346524621327,54.50086126371922],[-121.3937424368349,54.50105127698231],[-121.39394369998675,54.50119241417397],[-121.39416385563148,54.5013724196132],[-121.39435488342201,54.50153561480952],[-121.39456467244382,54.50168717246571],[-121.39473693718556,54.50181038104365],[-121.39493065462001,54.50196694314893],[-121.39509066440307,54.50207846667545],[-121.39520296169245,54.50225215869529],[-121.39533393829538,54.502432165999906],[-121.39548635385998,54.502542280341345],[-121.39573452296014,54.50274914996068],[-121.39588556538773,54.50292317951488],[-121.39606503082653,54.50313755854952],[-121.39620319770064,54.50335711399687],[-121.39635290597369,54.503560270681405],[-121.39663412431186,54.50380092859565],[-121.39682088959272,54.50395049158812],[-121.39707253975484,54.50405761001204],[-121.3972765046484,54.50414048619149],[-121.39748558905802,54.50421233255116],[-121.39771473649827,54.504278201086684],[-121.39789867646886,54.504332265705024],[-121.39808977836833,54.50451229023515],[-121.39826085421045,54.50466350403497],[-121.39839506321886,54.50474599452807],[-121.39852936399613,54.50486215535676],[-121.39869199979258,54.50498499460244],[-121.39876694858185,54.50509443028977],[-121.39885664788376,54.5052796112752],[-121.39899036917016,54.50541819433047],[-121.39916337103016,54.50551785635881],[-121.39941137137696,54.505743788662095],[-121.39959054525873,54.505840315756764],[-121.39970497458097,54.50602979400133],[-121.3997521875986,54.506161751208815],[-121.39995030917758,54.50631398069352],[-121.40001404218347,54.50636800357063],[-121.40010267220914,54.50644204195395],[-121.4002918297526,54.50665677824405],[-121.40042226100957,54.50685920271957],[-121.40056109194929,54.507073165607935],[-121.40068245273758,54.50725280350913],[-121.40081483725837,54.50736888907713],[-121.400985967456,54.50748531102781],[-121.40108959359576,54.5075812355345],[-121.40120028384538,54.50771782622491],[-121.40133127488703,54.50779458054946],[-121.40156181333691,54.50793456048347],[-121.40176321589675,54.50805773192005],[-121.40201490420954,54.50816484010659],[-121.40223508564331,54.50832799558874],[-121.40258109955094,54.508562098095766],[-121.40276057737032,54.50875963188681],[-121.40289477810815,54.50887690535349],[-121.4030448827439,54.50897345477569],[-121.40316610047405,54.50905096128076],[-121.40331284654836,54.50914289502143],[-121.40355380797713,54.50927652946812],[-121.40371685302529,54.50939600943449],[-121.4038846220939,54.50945618877001],[-121.40407475168945,54.50959352065655],[-121.40419589560929,54.50968897886594],[-121.40439838559665,54.509871664301826],[-121.40462126997562,54.5100281830615],[-121.40482525075453,54.510145834533006],[-121.4050486209597,54.51024625930286],[-121.40526885439718,54.51037462131569],[-121.40546054748211,54.51051537618067],[-121.40556524433396,54.510619192025],[-121.40567884432032,54.51073007595253],[-121.40582417292057,54.510817464003864],[-121.40607531005676,54.51094698654644],[-121.40631742050199,54.51107055795083],[-121.40647102708644,54.51117060089123],[-121.406615682592,54.51124674030997],[-121.40684751327223,54.51137553513419],[-121.40707537954299,54.51155692498586],[-121.40731716945494,54.51170068214411],[-121.40747022971165,54.511788358631435],[-121.40777050920555,54.511946658026176],[-121.40815596194498,54.51217549145728],[-121.40835798270115,54.51227622919223],[-121.40851044391614,54.51242111507945],[-121.40864532612395,54.512498006680275],[-121.4087686954225,54.512642921042875],[-121.40889146413791,54.51275863488068],[-121.4090373839434,54.51282359632331],[-121.40922135184717,54.51291243178548],[-121.40949962508009,54.513111421624686],[-121.40985615442563,54.513304373212165],[-121.41013385684069,54.51352578436305],[-121.41024382070972,54.51396309302022],[-121.4102251389183,54.51421601318002],[-121.41012907790324,54.51438073750655],[-121.4098561379429,54.51454891641179],[-121.40982674336244,54.5147935785507],[-121.40989446651378,54.5149678228317],[-121.40999805738366,54.51508169240144],[-121.41005645083533,54.515235386049575],[-121.41020960915998,54.51556433955208],[-121.41027512856814,54.515775533995196],[-121.41037501126851,54.515939763748634],[-121.41050459167481,54.51604675348499],[-121.41070443101952,54.51618443768176],[-121.41085638685936,54.51628216746813],[-121.41095943148024,54.51638367103699],[-121.4110967404481,54.51649095031332],[-121.41120851481338,54.51658380374677],[-121.41137228902012,54.51671452102568],[-121.41153011708322,54.51679451486157],[-121.4116656971882,54.516882650729556],[-121.41177922891299,54.51695985847472],[-121.41183268697246,54.517053887930786],[-121.41178418290626,54.517192343872],[-121.41155916873775,54.51741731541994],[-121.41118392160854,54.517563700139625],[-121.41081100345195,54.51767201580136],[-121.41030774675889,54.517766456646264],[-121.40946459948258,54.51777854822166],[-121.40865784499367,54.517950234900475],[-121.40810064418206,54.51817955105798],[-121.40739315263315,54.518486260476884],[-121.40706064675537,54.51868361781961],[-121.40672620616056,54.5188809016423],[-121.40639590419103,54.51904130685477],[-121.40610546464201,54.519140365417414],[-121.40590771657229,54.51919128613534],[-121.40580975155378,54.51928635850482],[-121.4057741175969,54.51943090791533],[-121.40578879277085,54.51969742699596],[-121.40579609815168,54.51990867994322],[-121.40581264417523,54.52002040231394],[-121.40586508830552,54.52012337437323],[-121.40590759557259,54.52026300620595],[-121.405944664449,54.520347444535375],[-121.40610121264886,54.52047340828334],[-121.40631149083663,54.520656380732405],[-121.40656255798218,54.520873430585],[-121.40677138322914,54.521086647496965],[-121.40701592942766,54.521361806704846],[-121.40713382491509,54.521521104886546],[-121.40724301783983,54.52165426469491],[-121.40743373967716,54.52183874417093],[-121.4075221881203,54.521966635104796],[-121.40755835665422,54.522093683363025],[-121.40754071211013,54.52226808696251],[-121.40749349158489,54.522412201222586],[-121.40739398967959,54.522555472781995],[-121.40735038539316,54.522615556217126],[-121.40732677463691,54.522687613309465],[-121.40725135742775,54.5227891455225],[-121.4071947056725,54.522879038550926],[-121.40710563512721,54.52306759092593],[-121.40700002413193,54.52336886609241],[-121.40682753797138,54.52352286079104],[-121.40662964411996,54.5235749001475],[-121.40644910764837,54.523662380603916],[-121.40633030945192,54.52377013723675],[-121.40621218707528,54.52388914141864],[-121.40612434440145,54.52401489492992],[-121.40603028058233,54.52412694783591],[-121.40590064259301,54.52422756328812],[-121.40576902358669,54.52431127078692],[-121.40555269727366,54.52449279363264],[-121.40541705897303,54.524612260876545],[-121.40529838086317,54.52471889898838],[-121.40512567983994,54.524891961452155],[-121.40501449556251,54.52505274789967],[-121.40482255119447,54.525207130860814],[-121.40467192694828,54.52535633400595],[-121.40453033280495,54.525511487701834],[-121.40437852806079,54.525653912817596],[-121.4043119261419,54.52578046411477],[-121.40424607735208,54.525900310358686],[-121.40419683157387,54.52606230330617],[-121.40418867502287,54.526272974943694],[-121.40404762617453,54.5264404932351],[-121.40388494877291,54.526610564659926],[-121.40378006524269,54.5266806869799],[-121.40365616153314,54.526764682802735],[-121.40360417910539,54.52691647265835],[-121.4035638655551,54.527050745766275],[-121.40351624867708,54.527198210892564],[-121.40345834384536,54.527350900194605],[-121.40341408759397,54.527502980603856],[-121.40338663784117,54.52767813765023],[-121.40341530478797,54.527751038323906],[-121.40332007717394,54.527821523550564],[-121.40311730616607,54.527933974918305],[-121.40293666479225,54.52803940281738],[-121.40267233715456,54.52819891602377],[-121.40237838391452,54.52831130293356],[-121.40221983870696,54.52844449459528],[-121.40210071708479,54.52853764686477],[-121.40203041224349,54.528679769178794],[-121.40201621272271,54.52880604663983],[-121.40188417784209,54.528979513295724],[-121.40170332428856,54.52910400953544],[-121.4015846234888,54.5292106439741],[-121.40149102311256,54.52926660027368],[-121.40132848164077,54.52940076287476],[-121.40108074057531,54.529602419717044],[-121.40084605091836,54.52977426711486],[-121.40067540013017,54.529911490520306],[-121.40058765323508,54.53003612244586],[-121.40048865791125,54.53019175341099],[-121.4003581535304,54.53031702056128],[-121.40029236521696,54.530418911923306],[-121.40023315364208,54.53061756245029],[-121.40022505516454,54.5308102810082],[-121.40023163227343,54.53090704020602],[-121.40021750581104,54.53101536474483],[-121.4001806641273,54.53115313457466],[-121.4000714881251,54.53126124857862],[-121.400032985215,54.531310299786476],[-121.39998574807038,54.53136800009228],[-121.39987795397117,54.53146382145195],[-121.39975686542235,54.53164330953948],[-121.39963653021631,54.531816092522206],[-121.39958424142243,54.53200490339084],[-121.399429196761,54.53229645833522],[-121.39925489615108,54.53251771011328],[-121.39915609535791,54.53265426978045],[-121.39899275592931,54.53288154503205],[-121.39873808823025,54.53305824845819],[-121.39999633553415,54.5343782157326],[-121.43216961658136,54.5680385500428],[-121.43287038449425,54.56877057069855],[-121.43267022414,54.56896284781005],[-121.43245328127793,54.56914888713448],[-121.43222317373954,54.56933106804632],[-121.43192057998357,54.569466776626996],[-121.43158373868852,54.569578761861216],[-121.43123317373006,54.56967452306116],[-121.43086757645884,54.56974840026767],[-121.43048688854135,54.56978355827803],[-121.43021974478421,54.569810612281806],[-121.42932469825303,54.57107555308402],[-121.42965061352578,54.57107875101829],[-121.43034527083687,54.57153562042735],[-121.43301986650424,54.57248835126195],[-121.4378737756991,54.574518796805094],[-121.44104493298329,54.576037475196756],[-121.44214565827073,54.576895427518586],[-121.44417420076513,54.58002329012981],[-121.44342413469509,54.58242824198346],[-121.44122114805612,54.585874326340466],[-121.441469478567,54.58907953749869],[-121.44516234971535,54.59150624892358],[-121.44804049392187,54.59315741841988],[-121.4487418429759,54.59411714120314],[-121.45026657813297,54.59633735839167],[-121.453863152934,54.59991825541268],[-121.45676827716976,54.60287189028534],[-121.45484517721961,54.60534109174046],[-121.45253695228217,54.60861290462058],[-121.45395227505747,54.610146707178814],[-121.45722047048355,54.6111028695314],[-121.46045256765846,54.610567379437384],[-121.46625468138951,54.61041424881777],[-121.470689489021,54.610389826985624],[-121.47874364336323,54.60969995777985],[-121.4832863907362,54.610244622918884],[-121.48865876533446,54.61341403431356],[-121.49158459911251,54.617336987529974],[-121.494234627266,54.62235386928851],[-121.49574859762878,54.623998462967016],[-121.49467934355945,54.62452469280353],[-121.49096604837085,54.62603086579769],[-121.48962314016507,54.628046140204056],[-121.49073591893337,54.629801702082354],[-121.49490575304053,54.6314901477751],[-121.49867371559897,54.633298330386154],[-121.49990986116197,54.63563284109226],[-121.50004941680035,54.63803479538611],[-121.50292824516123,54.639163831486954],[-121.50609830982364,54.640052121847326],[-121.50552073250245,54.6411979315075],[-121.50594866626746,54.642398566155094],[-121.50734259465275,54.64358972572807],[-121.50744788495578,54.643764144661105],[-121.51330782629968,54.64651921669597],[-121.51866985192058,54.648429919186306],[-121.52254678401616,54.65040283340931],[-121.52574995144299,54.65284474002112],[-121.51994902944168,54.6535036361802],[-121.51910434947092,54.65580671352806],[-121.5223055633546,54.65841020960503],[-121.52269519121624,54.65840648425422],[-121.5245215733218,54.66091481577892],[-121.52280517095498,54.66350027909894],[-121.52243637673254,54.665156476785825],[-121.5232576708849,54.66703565544397],[-121.5213176067331,54.66853574218635],[-121.52138287274468,54.671626105212695],[-121.51805779022426,54.67325510545219],[-121.51687192122773,54.678229752426944],[-121.51699565968698,54.679087062085216],[-121.51786966245103,54.68388562714479],[-121.5149488949968,54.686076932065866],[-121.50698291539928,54.68739232950594],[-121.49959794348128,54.687956531466014],[-121.49275423047403,54.691089619230375],[-121.48829455413849,54.69477683429717],[-121.48650239621102,54.69913656714204],[-121.48323183531343,54.70361245618492],[-121.4805324255019,54.70757069217826],[-121.47843304578328,54.71159587176232],[-121.47981527253255,54.71655717913536],[-121.48017237276535,54.72050223984713],[-121.4764807698495,54.7235531437866],[-121.47523333131099,54.725796326718324],[-121.47804766655665,54.728117296413224],[-121.48015644503126,54.73005314978585],[-121.48555328210581,54.73356410862824],[-121.49033715655509,54.73628028426734],[-121.49445547571786,54.740363254121334],[-121.49641816162175,54.74504032571313],[-121.49639088236414,54.74880959124083],[-121.49459782456611,54.752882185108646],[-121.49335252793433,54.755529578976436],[-121.49525299532108,54.75682907463329],[-121.4995404648251,54.75827879640522],[-121.50214206632155,54.760438681610665],[-121.50634610174063,54.76321364632667],[-121.51071779855816,54.76489941180353],[-121.5144878721081,54.76567437010491],[-121.51786469337318,54.7663361282091],[-121.52264907993091,54.768817448179384],[-121.52563521136832,54.76976995412321],[-121.52589819961516,54.772912346512726],[-121.52468481601221,54.77670118743832],[-121.52402134658654,54.77847235580581],[-121.52306998660187,54.780304855435865],[-121.52075950803562,54.78341639598239],[-121.51964655277438,54.78713705751945],[-121.52091036665733,54.79182398526183],[-121.5227879714278,54.796614014918575],[-121.52303576397922,54.79946860598798],[-121.53036454795651,54.799878675265205],[-121.53980731361732,54.801810156642865],[-121.54549430168247,54.805086087444124],[-121.54673173766699,54.80719544114422],[-121.54881977213465,54.81266577380216],[-121.5489907441215,54.81666643562093],[-121.551104872828,54.81819702923392],[-121.55529332363035,54.82034106989202],[-121.55917888121866,54.82197135551893],[-121.56533947578777,54.82238192238016],[-121.56741317647885,54.82242967269378],[-121.57316420121276,54.823013595795004],[-121.57794218129047,54.82435219820211],[-121.58329854157728,54.82540616618994],[-121.589185836769,54.82776248475538],[-121.593984671899,54.83007058030975],[-121.59934207382057,54.83083661596226],[-121.60043816255829,54.831109155897806],[-121.6074062023638,54.83259657923633],[-121.61162413283152,54.83566410869363],[-121.61221707479545,54.83581987281073],[-121.61792650125426,54.83927239057166],[-121.62709206383103,54.84171640937676],[-121.64023978101736,54.84538675816523],[-121.64392933535899,54.846854642217345],[-121.64470790477196,54.85096606054478],[-121.64758270885727,54.855223334421055],[-121.66009212796669,54.85701985437377],[-121.66677289396398,54.85861922541909],[-121.67228275702064,54.861667013332664],[-121.67428358295555,54.86256299004557],[-121.68451663560765,54.86843254638076],[-121.6880961376177,54.873323666234334],[-121.69367033283324,54.878598469127475],[-121.6973774560664,54.88038829854456],[-121.70523275115126,54.88158659863891],[-121.71207633362746,54.881699124606754],[-121.71618199960972,54.88372658450288],[-121.7192789538707,54.884785482826516],[-121.72445979391368,54.88582681603909],[-121.72807912255675,54.88757670940906],[-121.72892450738286,54.88579305707134],[-121.72845237848814,54.88299447804662],[-121.72961488306196,54.88161670617527],[-121.73516526238808,54.88197035223367],[-121.73954817028591,54.882561633345134],[-121.7436006204241,54.882127195001516],[-121.74411687391168,54.87914742950481],[-121.74014951317744,54.87460378015734],[-121.73818022101545,54.871304772592616],[-121.73756941623574,54.870565665837304],[-121.73939545115823,54.86837610569539],[-121.74498174970944,54.86598432204006],[-121.74991379941643,54.86102091543892],[-121.75491677905869,54.858806063316266],[-121.75944703885364,54.85796583888108],[-121.76242721669244,54.85399384875509],[-121.76997864696266,54.85147117244962],[-121.77432425361347,54.85074077050117],[-121.77771289572584,54.84808379847303],[-121.78011604646771,54.84091469799349],[-121.78508880611336,54.838347720465826],[-121.79222577615211,54.83857377736343],[-121.79570106885184,54.842605294846244],[-121.79892801293974,54.84904233608228],[-121.8016355694716,54.85416027715263],[-121.80295098494274,54.85535380573774],[-121.80815314014039,54.85753214817295],[-121.81911858342869,54.859950767893665],[-121.82655375853284,54.860507889249604],[-121.83144538639418,54.86161571892986],[-121.83928266997732,54.86222155257306],[-121.84689405792903,54.86518841470705],[-121.84965797711227,54.864931521419145],[-121.85587987956931,54.86436012364985],[-121.86418426325606,54.867142760007155],[-121.86995833704228,54.86851192426245],[-121.87183280681542,54.87192195501492],[-121.87056270734466,54.87594457666683],[-121.87261137232211,54.87872327221034],[-121.8732991198984,54.88180636833463],[-121.86863727342985,54.885168029439356],[-121.85777063098097,54.88996353917712],[-121.85718345803645,54.89019508879806],[-121.84166221736606,54.89577513524764],[-121.83661428482142,54.89965218503898],[-121.84061416748173,54.90110629529552],[-121.8539528446681,54.89943741414065],[-121.86525671850234,54.8994398804018],[-121.87028664581877,54.90231845912393],[-121.8703730644603,54.90500453226971],[-121.87092439089443,54.91065855671425],[-121.86573141227952,54.91305121979415],[-121.85773892226744,54.91478439833875],[-121.85007363661022,54.92080868069984],[-121.84798334185186,54.92454336533713],[-121.8459470652679,54.92988619497586],[-121.84746465438553,54.93113079119905],[-121.85229410460522,54.93354559521079],[-121.86260895273358,54.93687996915209],[-121.86643614914972,54.94267962778643],[-121.86953286653412,54.94704581199407],[-121.87269364691694,54.9537113344802],[-121.87499275807316,54.95438039737645],[-121.87948186376615,54.95479044968843],[-121.88994911895232,54.95623391992058],[-121.89713515847251,54.957881636132406],[-121.9009280523478,54.962539206854636],[-121.90225397459834,54.96338183599793],[-121.91057397002331,54.96639439413542],[-121.92004373538013,54.974191279967],[-121.9196032048022,54.97980310487155],[-121.92137332520701,54.98247279724573],[-121.92806317330452,54.987547939363075],[-121.93291599524797,54.9903099416838],[-121.94005348735932,54.99298524267973],[-121.94105330029659,54.9966253368456],[-121.9383975364868,54.99791106443989],[-121.93584229283,54.9989757099938],[-121.93589730856633,55.000458121020365],[-121.93892330925357,55.00111386261534],[-121.94125348619265,55.002760680066196],[-121.94406614770561,55.0044501888972],[-121.94597649101686,55.006217737062364],[-121.94909803164143,55.007962105605216],[-121.95339212795064,55.008973049222526],[-121.95977376506603,55.01030327879195],[-121.96397406269963,55.01147229213303],[-121.96627718130982,55.01277672417604],[-121.96995838261168,55.01726659059726],[-121.97197001205122,55.018507567466],[-121.97458603955545,55.020145039435256],[-121.97723044223436,55.022761434510016],[-121.97971203717455,55.02291386171061],[-121.98549065023204,55.02338858744892],[-121.99139441746695,55.02529379247761],[-121.99407559075841,55.02533574117672],[-121.99764547136654,55.024966702402914],[-122.00012430408123,55.02483149208482],[-122.00247793044244,55.027231511362764],[-122.00545608381427,55.02871845702739],[-122.00824570614036,55.03020821702252],[-122.01042350777658,55.03089755482051],[-122.01270344757727,55.03198494526494],[-122.01448887532254,55.033469117407996],[-122.01646739726199,55.03506714664061],[-122.02164268414046,55.03770107566211],[-122.0219281487011,55.039747059385576],[-122.02132257519841,55.041907975693526],[-122.02221570054095,55.04368635519572],[-122.02399262344197,55.04574434365227],[-122.02398388619115,55.049503632998935],[-122.02655527399426,55.05115638777875],[-122.02904465616616,55.05236679162121],[-122.03281457996671,55.05430008765689],[-122.03460290441375,55.056412093150705],[-122.03637593204486,55.059322141877374],[-122.04005923763354,55.06086659216898],[-122.0443295688442,55.06235788966575],[-122.04642036854615,55.06395894341528],[-122.0511877585134,55.06664124969721],[-122.05687664632902,55.067620992055325],[-122.06322913471139,55.069052229170346],[-122.06611666915222,55.07184464315896],[-122.06939818963134,55.07447002700989],[-122.07078267258409,55.07510611243205],[-122.07685395954876,55.07750566902031],[-122.081928062993,55.08030405598737],[-122.08520360025273,55.08333253205615],[-122.08948975549963,55.08583651290075],[-122.09585706883821,55.08926722542395],[-122.1016316952294,55.09200602841743],[-122.10451528850253,55.095371509025064],[-122.10280439661297,55.09777611767254],[-122.10350152781444,55.09902721469888],[-122.10628926067467,55.10062210823206],[-122.10927502261372,55.101307988472726],[-122.11546692252733,55.10153800035427],[-122.12214400979009,55.10228530914192],[-122.12452508810884,55.10468350055899],[-122.12472642314162,55.1053716660036],[-122.12662062192403,55.106453651186094],[-122.13229918331245,55.1054824619406],[-122.13201281988056,55.102234648622904],[-122.13221356165157,55.097844644528976],[-122.13571022777333,55.09369199480499],[-122.14049002031805,55.09403826351683],[-122.14687514819754,55.0942099495762],[-122.15135050882624,55.091648430687506],[-122.15424904912307,55.090114479516245],[-122.15433784785549,55.0934726930362],[-122.15484590668757,55.09523795446199],[-122.15942954436599,55.09616056538006],[-122.16689688588806,55.09769254102423],[-122.17038048854245,55.10208865802475],[-122.17037625748564,55.1071037123344],[-122.172167926402,55.111268060187165],[-122.17555325616748,55.114063989332806],[-122.17954253685124,55.1169681296341],[-122.17975049902591,55.1194237939692],[-122.17575438696525,55.12272785732666],[-122.17455339674865,55.126261564647],[-122.17714050480683,55.12968773028849],[-122.18312341863195,55.133334945882666],[-122.1892200206718,55.13612405861157],[-122.19629949632353,55.13835084845726],[-122.20867629984947,55.14001243453844],[-122.212763823676,55.14091773023267],[-122.2213434588732,55.14160982456676],[-122.22702842829386,55.141603319933],[-122.23230654333257,55.13887487481714],[-122.2442765646871,55.131737695935314],[-122.25485127005123,55.13042451447615],[-122.26482938357252,55.13248356539676],[-122.2685275240783,55.136577957899824],[-122.2692389419817,55.14079779495481],[-122.26903709105488,55.14569889445259],[-122.26984301936426,55.149580663338305],[-122.2733481006092,55.15408172076991],[-122.27674982990442,55.1566418206245],[-122.2847352768405,55.16159970559494],[-122.28994384194274,55.16542451224556],[-122.29324764912909,55.170439204756846],[-122.29225565201253,55.17385443074538],[-122.28917150385635,55.17688423295897],[-122.28757980129068,55.17910633265735],[-122.28777964560868,55.181041056651296],[-122.28577744358074,55.18360971569348],[-122.28349676552212,55.184582159981794],[-122.28348109686944,55.18492258846954],[-122.28229322645977,55.186178879073275],[-122.27561312412016,55.190060678991195],[-122.2740104087208,55.19017411967144],[-122.26781453240288,55.19085841167136],[-122.25702052691035,55.19114384919376],[-122.24812716522199,55.192346980785786],[-122.24763648660303,55.194566001951685],[-122.25024572803035,55.1968516600456],[-122.2533287591398,55.1989631405145],[-122.25753166092996,55.201583724149664],[-122.25914345546184,55.20443123287404],[-122.2605450565275,55.207676094358554],[-122.26265096882085,55.20979379973975],[-122.26545297493381,55.210362425779984],[-122.26755070504659,55.21036261197629],[-122.27314517977358,55.21058423759465],[-122.27754017169603,55.21251905951137],[-122.27963728401258,55.214402933877416],[-122.28164096314723,55.21559320635183],[-122.2864417677421,55.217414224487875],[-122.28905493387357,55.2176447295311],[-122.2947442518907,55.21821804642786],[-122.29985045951125,55.21964392842617],[-122.30455289444537,55.221003769650686],[-122.30785019863218,55.221003010784315],[-122.31345165746761,55.22064885062042],[-122.32034731545484,55.222701014049335],[-122.32726597325698,55.22537243307339],[-122.32885550801842,55.22628053988178],[-122.33697968380324,55.22958798584919],[-122.33807177139767,55.23011464195283],[-122.33840314343678,55.23002796066839],[-122.33901757584385,55.23001688805178],[-122.33976260661781,55.23030456420401],[-122.34036153424469,55.23057223945524],[-122.34051799109965,55.23065197053096],[-122.34062574429508,55.23070335701582],[-122.34084725486974,55.23080518494286],[-122.34096236883808,55.23086239423885],[-122.34097325610117,55.23087280638357],[-122.34098984142912,55.23088562876167],[-122.34126697819907,55.23100479040885],[-122.34182519109835,55.23124322753916],[-122.34210233280433,55.23136238733034],[-122.34213194290561,55.231362136549336],[-122.3423390101387,55.23136261755749],[-122.34266855394425,55.23136109195339],[-122.34283027328085,55.2313613604222],[-122.34296051701428,55.23136070350628],[-122.34319031032744,55.2313932482277],[-122.34329152760652,55.23155993673281],[-122.34318608852669,55.23185174653975],[-122.34303580541757,55.232072716013896],[-122.34300643513647,55.23215707354974],[-122.3430714242406,55.232201594128504],[-122.34316928152933,55.232275113864226],[-122.34329844695364,55.23237310151402],[-122.34341031430831,55.2324660953345],[-122.34349233288613,55.232540270621286],[-122.34356492213664,55.23260968343555],[-122.34372583633014,55.23268393443514],[-122.34392768894848,55.23272014178279],[-122.3440084496616,55.23272139356341],[-122.34409066923548,55.23272829478532],[-122.34426691223601,55.23274244388511],[-122.34438878283972,55.232747145951436],[-122.34442656816113,55.23274377081554],[-122.34449800084282,55.23273914158641],[-122.3447395359044,55.23272941780869],[-122.34511505021506,55.232721386653004],[-122.34539138641948,55.23271941185002],[-122.3455116963815,55.232719581677635],[-122.34565625981477,55.23273504095063],[-122.34590129335515,55.23277363461469],[-122.34612604457023,55.2328183600972],[-122.34627447795758,55.232856358758596],[-122.34637837497716,55.23288520017223],[-122.3464598839371,55.23289992820621],[-122.34652823153382,55.23290754177884],[-122.34656137087907,55.232911878837506],[-122.34658412905478,55.232900212534474],[-122.34664952164734,55.23287522089198],[-122.34671450769882,55.23285470257421],[-122.34673261989036,55.23285074909338],[-122.34684126472617,55.2328707589309],[-122.34710400599184,55.23290987008888],[-122.34737512498957,55.23294362000738],[-122.34769695103981,55.232962037959034],[-122.34815926913322,55.232975608080935],[-122.34855096740168,55.23298486135116],[-122.34878341501465,55.23298831888298],[-122.3490351296017,55.23299682662607],[-122.34925133108537,55.233005413169906],[-122.3493103505296,55.233007144884816],[-122.34939151814979,55.233003919806954],[-122.34957600149298,55.23299251269504],[-122.34974697990006,55.23295604005007],[-122.3499102151815,55.23287448719384],[-122.35006018627206,55.232786938432],[-122.35011282059637,55.23275035756535],[-122.35010438067329,55.232778142995414],[-122.35010656474383,55.2328410010182],[-122.35014174859555,55.2328880072713],[-122.35016454416561,55.23289764653219],[-122.35022810721763,55.23289278317654],[-122.35035709907207,55.23288423241732],[-122.35042252787787,55.23288054501186],[-122.35044674466978,55.23287452742255],[-122.35054361176502,55.23285045701796],[-122.35066282966855,55.232819192861484],[-122.3507113646032,55.23280603924164],[-122.35078459974973,55.2328250070117],[-122.35093697218039,55.232863115515684],[-122.35102190990918,55.23288354767477],[-122.3511220398079,55.232888726833615],[-122.35134353417469,55.232904192889144],[-122.35160800518031,55.232924282704836],[-122.35184473108829,55.232945801083225],[-122.35198173290716,55.232957667248144],[-122.35201300703275,55.232960826830904],[-122.35205032402475,55.23298434731987],[-122.35212299081941,55.23303133058544],[-122.35216040940519,55.23305373269739],[-122.35221155975975,55.23305523232374],[-122.35231966098573,55.23305952288527],[-122.35237081135358,55.233061022446165],[-122.35242413196097,55.2330603429714],[-122.35254196838147,55.233066040054936],[-122.3526432546466,55.23308022241892],[-122.35282968300919,55.23311259893779],[-122.35318836358937,55.23318142088459],[-122.3535004379739,55.233242147963495],[-122.35368137146327,55.23326987685489],[-122.3538534827009,55.233286133769916],[-122.35398851893487,55.233297940075815],[-122.3540316989114,55.23330032670216],[-122.3540543537289,55.2332897773793],[-122.35408952242243,55.2332717455198],[-122.35414249849883,55.233253114129134],[-122.35420677148574,55.23324042032179],[-122.35426670414239,55.23323208457494],[-122.35429455102067,55.23322953656501],[-122.3543184632298,55.233226873260385],[-122.35441027877184,55.23321498636444],[-122.35453987916054,55.23319972119636],[-122.35462467722532,55.23319996302753],[-122.35471158487037,55.233220450309936],[-122.35481362293234,55.23324810870228],[-122.3548600278466,55.2332584387388],[-122.35486481456758,55.23327091345623],[-122.35487055473395,55.2332946292731],[-122.3548732727356,55.2333081647011],[-122.3549500808655,55.23335302489615],[-122.35519186373149,55.23347111815035],[-122.35548924074308,55.23358523273506],[-122.35568605871201,55.233633607590335],[-122.35585182333809,55.23363285604672],[-122.35612483869347,55.23362403210244],[-122.35650382886362,55.23364297979066],[-122.3568943615447,55.233686933209015],[-122.35713795093216,55.23371985542155],[-122.35721200137435,55.233729872626576],[-122.3573486021581,55.23374620628139],[-122.35770362287812,55.23379023877072],[-122.35809375309384,55.2338386618234],[-122.35831610849084,55.233866474903],[-122.35856777219169,55.23389738794485],[-122.35902418757189,55.233954475784486],[-122.3593948497196,55.23400008236142],[-122.35952368405299,55.23401506502404],[-122.35956497018375,55.2341037353882],[-122.35964945259317,55.234303558205],[-122.35985728881171,55.2344699864217],[-122.3601824188885,55.23462638968396],[-122.36048161402383,55.23480782361467],[-122.36059701379159,55.234884084290435],[-122.36069601869632,55.23479278982347],[-122.36089806320305,55.234609197384515],[-122.3609970667485,55.23451790268006],[-122.36106510339862,55.234572594115605],[-122.36120273979974,55.23468650781815],[-122.36128716797417,55.23475625552348],[-122.36137131770322,55.23474189665362],[-122.36158784702539,55.23470337593888],[-122.36186732126752,55.23471042645014],[-122.3622465037506,55.234814581532675],[-122.3626729064561,55.234920115765],[-122.36301139457731,55.23497261985075],[-122.36322619339404,55.23499683907829],[-122.36330221513411,55.23500691016637],[-122.36334842193905,55.235019473747876],[-122.36351761111231,55.23506814955871],[-122.36381927164449,55.235135273413356],[-122.36422157620778,55.2352019733942],[-122.3645615305419,55.23526012252662],[-122.36468739216922,55.235286225910784],[-122.36472572993138,55.23529855905946],[-122.36479266939352,55.23532181957338],[-122.36495606889517,55.23532547185092],[-122.36523373638241,55.235308914405195],[-122.36557122802856,55.23532886429611],[-122.36599164887348,55.23539160233579],[-122.36636201487458,55.235528004826506],[-122.36653618207654,55.23571810647386],[-122.36657572007131,55.23580448036108],[-122.36660694363975,55.235830060852805],[-122.36666762555161,55.23587892765121],[-122.36670101885213,55.23590232885618],[-122.36677174711822,55.23590551534348],[-122.36691900506925,55.235913178889824],[-122.36698983443091,55.235915246896816],[-122.36702318057374,55.235917341798164],[-122.36710581484449,55.23591975439998],[-122.36727880478705,55.235904621337156],[-122.36754851008082,55.235845216537406],[-122.367745316887,55.235784804542945],[-122.36783183808032,55.235766025310575],[-122.36790579391584,55.23577715451538],[-122.36794060230677,55.23578489838676],[-122.36799871210457,55.23584041725082],[-122.36811473012507,55.23595369161315],[-122.36832483726808,55.23605177106325],[-122.36863195883325,55.236145953539186],[-122.36879581000052,55.23621016435663],[-122.36880650389281,55.23622281078717],[-122.36881159831809,55.23623192989705],[-122.36896501076916,55.236258832771114],[-122.36927385622114,55.23629027078529],[-122.36949053235472,55.23631565497698],[-122.36964157412554,55.236346973047425],[-122.36984720148116,55.236385489911335],[-122.370023417533,55.23642202713795],[-122.37016194823184,55.23646082871288],[-122.37034245196647,55.23651543141579],[-122.37056750240932,55.23657918229532],[-122.37081036223074,55.23664233086364],[-122.37099011153293,55.23668345492918],[-122.37112632414875,55.23670424691368],[-122.37126283973276,55.23672168366923],[-122.37132529592465,55.23672911150417],[-122.37136600838349,55.23673702654538],[-122.37146080230893,55.236757731643415],[-122.37166174208743,55.23678265307001],[-122.37198189333462,55.236863751186824],[-122.37221925681874,55.23700971305992],[-122.37229725100322,55.2371072976097],[-122.37231500911606,55.23712912006767],[-122.37232373680867,55.23714170883707],[-122.37242988317074,55.23718965537831],[-122.37272446096556,55.23727000593024],[-122.37302771734142,55.237341638289145],[-122.37313805225752,55.237365037623114],[-122.37317079457542,55.23737384104818],[-122.37339333155906,55.237421815069936],[-122.37381257598307,55.23749794705893],[-122.37416235027888,55.23753505045749],[-122.3744141995154,55.23754238854228],[-122.37465676664786,55.23756515390604],[-122.37485902562653,55.23761926225517],[-122.37502940051169,55.23767692665954],[-122.37517136879309,55.23767769831899],[-122.37533775197059,55.2376264798616],[-122.37555882354488,55.23758133929246],[-122.3757272316932,55.23763894543331],[-122.3757608429263,55.23779129987539],[-122.37584293526349,55.23790918467443],[-122.37614958094163,55.237965209645786],[-122.37648175387307,55.23800067247199],[-122.37661474416595,55.2380135153172],[-122.37664208895576,55.238016554131605],[-122.37671373309635,55.238053400490884],[-122.37678972004888,55.23812961872743],[-122.37685788944098,55.23822691398243],[-122.37701914631688,55.23836392227123],[-122.37737847675264,55.238492119760956],[-122.37780576423131,55.23858865528604],[-122.37803492732588,55.238672695079586],[-122.37807509175335,55.2387086243399],[-122.3781154577667,55.23874231685601],[-122.3781938193361,55.238814118045156],[-122.37826405577279,55.23886662063613],[-122.37839271725912,55.23892755131569],[-122.37859312747175,55.239024208777494],[-122.3787468657621,55.23909147531048],[-122.37891129580618,55.239127656418006],[-122.3791348566317,55.23916443652294],[-122.37927491644787,55.2391864524701],[-122.39999950948803,55.22959975902007],[-122.4038284499668,55.22782786873004],[-122.40385282260371,55.227842028561184],[-122.40388466376592,55.227860889375144],[-122.40391543793264,55.227869627849515],[-122.40396274934183,55.22786987411156],[-122.40419850635584,55.22788005223914],[-122.40423008063928,55.2278798435489],[-122.4042466178091,55.227871351306476],[-122.40427745789356,55.22783524054446],[-122.40429362793225,55.22780879726608],[-122.40434143791562,55.22773729612066],[-122.40437344494785,55.22771018927689],[-122.40439088201147,55.22769163154154],[-122.40443782604848,55.227673926593845],[-122.404532881168,55.227647520585386],[-122.40459556213698,55.22763027038491],[-122.40475243267012,55.22764041021278],[-122.40481478095593,55.22764893963405],[-122.40484545517596,55.22765879626475],[-122.40486165957695,55.22767608367315],[-122.40490853826115,55.22770322769472],[-122.40493957993537,55.227731035329995],[-122.40495498453586,55.227757269817936],[-122.40497108904012,55.22777567559867],[-122.40504697762604,55.227875419491966],[-122.40507768711683,55.227929006826514],[-122.40517174809018,55.228046094865455],[-122.40520199038916,55.22808284952929],[-122.40521739529532,55.228109083985444],[-122.40520192558785,55.22812769867746],[-122.40516788678505,55.22819959804252],[-122.40513548264555,55.22829733397432],[-122.40511921298308,55.22832489574945],[-122.40510267581102,55.2283333881081],[-122.40505573129731,55.228351093307246],[-122.405024524082,55.22836925323507],[-122.40499214954463,55.22837840921923],[-122.40486678556255,55.22841290998983],[-122.40483441095421,55.22842206593299],[-122.40477092892978,55.22844826334562],[-122.40474088875057,55.22847542714065],[-122.40470888135725,55.228502534080356],[-122.40464416648052,55.22856457663916],[-122.40459562156252,55.22860017584553],[-122.40458051861668,55.228636741490845],[-122.40457928591188,55.22867258670046],[-122.40456288468799,55.22878984670355],[-122.4045624519415,55.228816744823476],[-122.40459199428702,55.228861328341125],[-122.40460729909732,55.228888681260464],[-122.4046541790224,55.22891582538019],[-122.40471636392618,55.228970322388335],[-122.40474830637832,55.228988064596585],[-122.40477828166034,55.229005749949515],[-122.4048886447484,55.22900669656356],[-122.40504632059523,55.22900788893022],[-122.40509373333244,55.22900701637601],[-122.40512600837023,55.22899897875179],[-122.40515641617836,55.22898976589143],[-122.40518879117013,55.22898060986425],[-122.40525153868161,55.22891851018093],[-122.40530008340339,55.228882910718085],[-122.40534666084802,55.22884725439821],[-122.40537866808593,55.22882014729386],[-122.40541110746007,55.228766142058504],[-122.40542844452965,55.22874870256339],[-122.40546058066228,55.22863189713793],[-122.4054763826063,55.228587502677314],[-122.40549381954145,55.228568944786296],[-122.40558857276628,55.2284797377936],[-122.40563631692837,55.228453085296856],[-122.40568442875579,55.22844438380827],[-122.40576134839763,55.22844436348763],[-122.4058255653541,55.22845406762184],[-122.40587207778185,55.22846326025617],[-122.4059815758189,55.22851800214932],[-122.40605843175376,55.228562830795056],[-122.4061533604258,55.22862612184821],[-122.40623048478223,55.22869001980096],[-122.40626242767934,55.22870776162036],[-122.40637032776152,55.2287803973741],[-122.40641720874952,55.228807540829806],[-122.40643251477984,55.22883489352468],[-122.40644872033602,55.22885218072805],[-122.40646402640472,55.22887953341915],[-122.40647853293989,55.22891583321068],[-122.4064943070915,55.2289600185351],[-122.40647471309578,55.22911306720207],[-122.40647428162353,55.22913996532927],[-122.40645971161011,55.229148514688795],[-122.40646007969126,55.22916646571384],[-122.40642690526803,55.22918456917367],[-122.40631551498626,55.22928338771683],[-122.40626813828598,55.22932799150136],[-122.40612607132869,55.22941695359448],[-122.40610953392037,55.22942544608742],[-122.40607789460681,55.22947050440729],[-122.40607746286554,55.22949740253382],[-122.40607659938128,55.22955119878714],[-122.40607536798099,55.22958704401387],[-122.40609067407541,55.22961439675229],[-122.40616816818196,55.22969624577493],[-122.40623008831092,55.229731672616104],[-122.4062785695439,55.22974092192355],[-122.40637239719685,55.22975035973602],[-122.40641971083197,55.229750605064524],[-122.40648239426767,55.229733353911584],[-122.40651280232012,55.22972414071949],[-122.40660866046161,55.229688786019615],[-122.40673486328038,55.22968906715359],[-122.40698636953411,55.229699694532385],[-122.40706525880992,55.22969973021835],[-122.40709593514416,55.22970958629616],[-122.40715748771267,55.22972706165226],[-122.40725285181834,55.22976345374152],[-122.40729973454668,55.22979059686697],[-122.40732998009993,55.22982735101857],[-122.40733034857546,55.22984530204186],[-122.40735989474223,55.22988988490611],[-122.40737600119974,55.22990829037863],[-122.40742128544952,55.22995332767576],[-122.40746816851266,55.22998047073808],[-122.40750011297965,55.22999821224166],[-122.40756236558356,55.23000785867721],[-122.4076561941599,55.2300172955226],[-122.40768777010217,55.230017085955495],[-122.40773588335573,55.23000838367325],[-122.40778399658848,55.229999681372455],[-122.40779856662873,55.22999113185737],[-122.40781590319146,55.22997369202826],[-122.40783057312487,55.22996402412058],[-122.40784754095475,55.229928633265196],[-122.40786559343611,55.229748629441616],[-122.40786565527166,55.22970378028671],[-122.40788342221812,55.22965944231555],[-122.40789889127407,55.229640827288364],[-122.40791505965878,55.22961438353633],[-122.40797817271363,55.22957023349745],[-122.40804255354172,55.22953396894585],[-122.40807296108635,55.22952475537294],[-122.40824557771178,55.22953534516052],[-122.40829209194187,55.22954453689164],[-122.40834057342329,55.22955378539615],[-122.40838745664102,55.2295809281116],[-122.4084027643045,55.229608280565756],[-122.40841657360511,55.229652408859046],[-122.40841614342494,55.22967930699407],[-122.4083994452586,55.229733767335745],[-122.40841592108809,55.22977012369359],[-122.40843016063121,55.22978735385061],[-122.4084777821558,55.229850398572516],[-122.4085557116614,55.22990534797494],[-122.4085856892997,55.22992303241252],[-122.40861843331287,55.22993182651274],[-122.40866414899736,55.229949965221806],[-122.40874293888125,55.22995111823449],[-122.4087753138304,55.22994196127417],[-122.40880652057271,55.229923800404194],[-122.4088850019395,55.22986215315226],[-122.40891700760129,55.22983504513652],[-122.4089498122428,55.22979898999389],[-122.40898181781067,55.229771881961575],[-122.4090615273582,55.22967438934327],[-122.40910980022703,55.22961971898547],[-122.40917211301078,55.229584515461],[-122.40920448756735,55.229575358389376],[-122.4093464279089,55.22957609109277],[-122.40953488281748,55.22958601490131],[-122.40956635855142,55.22958692324808],[-122.40964364988,55.229604851545524],[-122.40969053403602,55.22963199377044],[-122.40978510137248,55.2296773310435],[-122.4098303880583,55.22972236746387],[-122.40984649557858,55.22974077261658],[-122.40989215202227,55.22980376003035],[-122.40992409741754,55.22982150091189],[-122.40995551383763,55.22986725831648],[-122.41001663877597,55.22991163040024],[-122.410079690623,55.2299123284517],[-122.4101278032341,55.229903625245306],[-122.41017511707223,55.22990386914694],[-122.41025363697088,55.229885951798046],[-122.4103328556766,55.2298602056631],[-122.4104268433768,55.22982367287333],[-122.41050526317231,55.22980687375685],[-122.41056884343962,55.22977955502706],[-122.41064806173428,55.22975380869185],[-122.41074391631356,55.229718450808406],[-122.41079085991969,55.229700743463155],[-122.41080749627918,55.22969113195699],[-122.41085364122856,55.22968237171848],[-122.41090095481098,55.22968261534432],[-122.41112178480884,55.22968337923004],[-122.41115326065473,55.22968428717575],[-122.41118403779376,55.22969302385483],[-122.41127663971285,55.229738303249455],[-122.41132512211347,55.22974755059205],[-122.4114040114868,55.22974758352933],[-122.4114343186146,55.22973948752723],[-122.41146589431916,55.22973927700209],[-122.41154601020993,55.22970346456905],[-122.4116390982179,55.229676996391795],[-122.41165563456269,55.22966850316433],[-122.4117194844616,55.22966025324953],[-122.41176562917705,55.22965149267307],[-122.41187689236483,55.229642367564814],[-122.41201883299125,55.229643097222],[-122.4120496102867,55.22965183368712],[-122.41211223405206,55.22967942885684],[-122.41218936988759,55.229743323123394],[-122.41222051795273,55.22977001055509],[-122.41222009031368,55.22979690870341],[-122.41220296959472,55.229878267703924],[-122.41220174364095,55.22991411299201],[-122.41218674690104,55.22994956117068],[-122.41210651687067,55.230075072332184],[-122.41209035105499,55.23010151662931],[-122.41205791956753,55.23015552360966],[-122.41199385468663,55.23025459040729],[-122.41197768872479,55.23028103469013],[-122.41195976894515,55.23037134079853],[-122.41192743686166,55.2304242293537],[-122.41191191204051,55.23048769404147],[-122.41192615333426,55.23050492379957],[-122.41194103592058,55.230559173969525],[-122.41195671691737,55.23060447699935],[-122.41197165684291,55.23061387800624],[-122.41200317600472,55.23065851650461],[-122.41204926462834,55.23069460498226],[-122.41208121168161,55.23071234531147],[-122.41211189001609,55.23072220015431],[-122.41223809611358,55.2307224757109],[-122.41242655710326,55.23073239514391],[-122.41245893184269,55.23072323722531],[-122.41263118391417,55.23071586992523],[-122.41288162878499,55.23071636313888],[-122.41296158943446,55.23072651734593],[-122.41300730797911,55.23074465446141],[-122.41308534516611,55.2307984826394],[-122.41314834250569,55.23084402829791],[-122.41319523046896,55.230871169205685],[-122.4132105418908,55.23089852107134],[-122.41322595309526,55.23092475454185],[-122.41320968791152,55.230952317379256],[-122.41320926092104,55.23097921553336],[-122.4131453532813,55.23103231537418],[-122.413050239759,55.231103577125396],[-122.41300169921446,55.231139179615305],[-122.41295512589988,55.231174838804264],[-122.41293769127638,55.23119339774353],[-122.41290648541387,55.23121155965037],[-122.41281259649745,55.23124697592243],[-122.41278032119214,55.23125501554024],[-122.41273337664839,55.23127272363751],[-122.41265405691937,55.2312995896952],[-122.41262205261012,55.23132669867437],[-122.41252693746544,55.23139796002737],[-122.41244596406275,55.231487569400734],[-122.41241353193553,55.231541576479145],[-122.4123985347757,55.23157702468763],[-122.41238316684374,55.23159452188361],[-122.41238273929397,55.231621420036056],[-122.41239767969655,55.23163082099259],[-122.41241262010612,55.23164022194721],[-122.41242756052263,55.2316496229002],[-122.41253760337634,55.231676342495085],[-122.41258529014965,55.231694536491275],[-122.41261596935628,55.2317043912105],[-122.41264871569949,55.231713184252094],[-122.41272595606273,55.23177595980272],[-122.41277284482692,55.231803100871396],[-122.41289772915313,55.231840339451246],[-122.4129758244621,55.231849318537975],[-122.413022342447,55.231858508503684],[-122.41311697475548,55.23185899408943],[-122.41325812511678,55.23186866948076],[-122.4133219781779,55.231860418743004],[-122.41336892314821,55.231842710422995],[-122.41343250468792,55.23181539022699],[-122.41346361102391,55.23179834658118],[-122.41347987637567,55.2317707837088],[-122.41348158364433,55.23166319108312],[-122.41346712539811,55.2315820429368],[-122.41346718099393,55.231537193773384],[-122.41348334648161,55.23151074929474],[-122.41350040974802,55.23147423927167],[-122.4135157771483,55.23145674193788],[-122.41354895025549,55.231438636586496],[-122.41359552334919,55.231402977174746],[-122.4136120599903,55.231394483686394],[-122.4136756406568,55.23136716336718],[-122.41369020994046,55.23135861316201],[-122.41375289276384,55.23134135834712],[-122.41383258323111,55.23133244259535],[-122.41394295291182,55.231333381184726],[-122.41419340164153,55.231333871760164],[-122.4142407171857,55.231334114117075],[-122.4142725659789,55.23135297227914],[-122.41431982690074,55.231398063769205],[-122.41431860278617,55.231433909082014],[-122.41430280947878,55.23147830467361],[-122.41427080613805,55.23150541407688],[-122.4141599547933,55.231576223100134],[-122.41409514980545,55.231639388978266],[-122.4140469810275,55.231692942882624],[-122.41403081583701,55.23171938743476],[-122.41401572029356,55.2317559542323],[-122.41399838564983,55.23177339492686],[-122.41399912858586,55.23180929693895],[-122.41399870211391,55.23183619509736],[-122.41402815738776,55.2318818947797],[-122.41404356950177,55.231908128150934],[-122.41406047775243,55.231917585608876],[-122.41410656966286,55.23195367332832],[-122.41415425747412,55.231971866724066],[-122.41421651472582,55.231981509834334],[-122.41424809217494,55.231981298603664],[-122.41443655955509,55.231991214995524],[-122.41446813701066,55.23199100370911],[-122.41449844521155,55.231982906959864],[-122.41453044877862,55.231955797497214],[-122.41469036624407,55.23182136845578],[-122.41481668399061,55.231731943069725],[-122.41486442589905,55.231705287028646],[-122.4148809623966,55.23169679337161],[-122.4149594836981,55.23167887305308],[-122.41500759736574,55.2316701679602],[-122.41511600065692,55.23167104882433],[-122.41532100319263,55.231672470187064],[-122.4154148374688,55.23168190118735],[-122.41547836401092,55.23169942911179],[-122.41554179090899,55.231718075399115],[-122.41563519996596,55.23175440439688],[-122.41571207283438,55.23179922709427],[-122.4157597611884,55.231817419875],[-122.41585279837716,55.23183579770898],[-122.41604243533777,55.23185471550672],[-122.41618278893169,55.23187333474847],[-122.41621426660448,55.23187424141508],[-122.41627742131307,55.231873817932524],[-122.416355790284,55.231901864294905],[-122.41657541044279,55.23193846384337],[-122.41660619048282,55.23194719918367],[-122.41662309935211,55.231956656293605],[-122.41666999095507,55.23198379589521],[-122.41673102684413,55.23202928308591],[-122.41674596841386,55.23203868352094],[-122.41673134757453,55.232092083250585],[-122.41669732601768,55.23216398578709],[-122.41666489905082,55.2322179939754],[-122.41660131453295,55.23233389576065],[-122.41660168716702,55.23235184675961],[-122.41655235087505,55.232396397806134],[-122.41652034831961,55.23242350778942],[-122.4164899405189,55.232432723426925],[-122.41647340405855,55.23244121729806],[-122.41642608719927,55.23244097578953],[-122.41614298353136,55.23243057919398],[-122.41609566668654,55.23243033755981],[-122.41601794192854,55.23243931143007],[-122.41593824975361,55.232448228581084],[-122.4158598270792,55.23246503112225],[-122.41574850393604,55.232519008958725],[-122.41570155922395,55.232536718176604],[-122.41565381688362,55.23256337454029],[-122.41558990995375,55.23261647564197],[-122.41554253960938,55.23266108296548],[-122.41549427183143,55.23271575582902],[-122.41544610362705,55.23276931027878],[-122.41538336584351,55.23283141511603],[-122.41535173423601,55.23287647580309],[-122.4153355694275,55.23290292052688],[-122.4153339740977,55.23292081485009],[-122.41533386706311,55.2330105131878],[-122.41533211850043,55.23307437507551],[-122.41533046964099,55.23313711856824],[-122.41536279216882,55.23317280906262],[-122.41537810593964,55.23320016066635],[-122.41545498128345,55.23324498352733],[-122.41551878276631,55.233281580832106],[-122.41556530298756,55.23329076984882],[-122.41561182323007,55.23329995884814],[-122.41569071957075,55.23329998906959],[-122.4159265113599,55.23331014499551],[-122.41598877110665,55.23331978722064],[-122.41613109721158,55.233338463192794],[-122.41627145602142,55.23335708233664],[-122.41635072500623,55.23337506314138],[-122.41653919943187,55.23338497635201],[-122.41664877742288,55.23339485971295],[-122.41669529803309,55.23340404830762],[-122.41675755810935,55.23341369014855],[-122.41688334811856,55.2334408591683],[-122.41691412937456,55.233449594433466],[-122.41694677841234,55.23345950474238],[-122.41699409647235,55.23345974605314],[-122.41704061723642,55.233468934518754],[-122.41708793530809,55.23346917579396],[-122.41716603471284,55.23347815225386],[-122.41730639448873,55.23349677023157],[-122.41744951903776,55.23350649752245],[-122.41751060920961,55.23350713516452],[-122.41760524544897,55.23350761733952],[-122.41769945767426,55.23353499761713],[-122.41785720057455,55.23357990453675],[-122.4179820951194,55.23361713802261],[-122.41806014453093,55.23367096309411],[-122.41809129952942,55.23369764906488],[-122.41810661535449,55.23372500033416],[-122.41810576786045,55.233778796686664],[-122.41810534411259,55.233805694863065],[-122.41808706320343,55.23387805087968],[-122.41807286724658,55.2339045525974],[-122.41803884655442,55.23397645551003],[-122.41800641992751,55.234030464054825],[-122.41795984770165,55.23406612512307],[-122.41792784476655,55.23409323547132],[-122.41791130792737,55.234101729534466],[-122.41788089917706,55.23411094551283],[-122.41777009781123,55.23413690858935],[-122.41772315210137,55.23415461857143],[-122.41762771715936,55.23416308366298],[-122.41754919219875,55.234181005667324],[-122.41750224634023,55.23419871556624],[-122.41748491215535,55.234216156749085],[-122.41747024299141,55.2342258257971],[-122.41743754202851,55.2342607647988],[-122.417436320604,55.234296610149805],[-122.4174358964032,55.234323508324884],[-122.41745280646599,55.23433296532377],[-122.41746695184052,55.23435131285005],[-122.41749970139757,55.234360104617664],[-122.41751464401231,55.23436950496208],[-122.41757690577862,55.23437914639414],[-122.41768658637803,55.234387910445385],[-122.41773390553416,55.234388151475144],[-122.41784385975755,55.23441598478359],[-122.4179853934947,55.23444360581664],[-122.41804882587971,55.2344622508307],[-122.41812650368517,55.234498124866576],[-122.41821912447297,55.234543399114145],[-122.4182510773017,55.23456113786548],[-122.4183298263076,55.23460713398805],[-122.41835981174363,55.23462481607852],[-122.4184850834924,55.23468000005952],[-122.41859434167901,55.234715661490945],[-122.4187819763251,55.23477936766814],[-122.41882966959871,55.23479755927723],[-122.41890767235661,55.23480765304406],[-122.41900151478399,55.23481708134381],[-122.41908078786462,55.23483506041268],[-122.41911157066409,55.234843795135546],[-122.41922152708536,55.23487162722857],[-122.41933068684294,55.234908406413076],[-122.41937838051751,55.23492659781213],[-122.41942527743954,55.23495373638216],[-122.41950216064133,55.23499855675035],[-122.4195182746971,55.235016960658974],[-122.41950211176689,55.235043405927726],[-122.4195008921577,55.23507925130107],[-122.41950154046627,55.235116271687666],[-122.41945215506522,55.23520567307003],[-122.4194517322023,55.235232571253775],[-122.41942099966674,55.23526756739413],[-122.41940473697106,55.23529513104942],[-122.41937273403198,55.235322241771385],[-122.41930765692848,55.23536634098605],[-122.41929308738744,55.235374891851],[-122.41919802370218,55.23540130914168],[-122.41913406661868,55.23541068129304],[-122.41903979963563,55.23542815127548],[-122.41894515886239,55.23542767019044],[-122.41881973490236,55.2354184542458],[-122.41877241452818,55.2354182136286],[-122.41871015086774,55.23540857279362],[-122.41856983368787,55.23534510721731],[-122.41852213988275,55.23532691550805],[-122.41847561663242,55.23531772759456],[-122.41842909340332,55.23530853966367],[-122.41835029275282,55.23530739277923],[-122.41828633562115,55.23531676449514],[-122.41817670164241,55.2353517317516],[-122.41814549491981,55.23536989497687],[-122.41811232063996,55.23538800155798],[-122.41808121349816,55.23540504636958],[-122.4180338426328,55.23544965465001],[-122.41800183864721,55.23547676501993],[-122.41798520161426,55.235486377491355],[-122.41795329720847,55.23551236945141],[-122.4179055021748,55.23558387586263],[-122.41789003546343,55.23560249214097],[-122.41788998479147,55.23564734131975],[-122.41787254876769,55.2357544809165],[-122.41787095445304,55.235772375276],[-122.4178234325296,55.2358629510545],[-122.41780647097141,55.23589834328436],[-122.41777446647579,55.235925453596835],[-122.41774335877537,55.235942498324704],[-122.41771215139902,55.235960661442256],[-122.41766440632827,55.23598731858345],[-122.41760161829227,55.23600569377034],[-122.41745843366384,55.236040815832375],[-122.41741228286094,55.23604957852246],[-122.41734879699297,55.23607578236187],[-122.41729988127328,55.236093435538436],[-122.41718934734044,55.23613846750107],[-122.41709465335965,55.23618283419003],[-122.41704770496561,55.236200543920226],[-122.41698342125802,55.23623569474846],[-122.41695221331128,55.236253857675955],[-122.41687246198192,55.236307624607825],[-122.41684172638212,55.236342620114485],[-122.4167938806054,55.236370395319405],[-122.41673039382859,55.23639659884421],[-122.41668227488229,55.23640530460573],[-122.41663495336039,55.23640506317644],[-122.41647804566644,55.23639493831224],[-122.41638420015065,55.2363855081099],[-122.41629115219975,55.23636713066671],[-122.41619613676053,55.236348696487376],[-122.41610191897041,55.23632131506684],[-122.41599223344625,55.23631254961854],[-122.41592996906809,55.236302907392975],[-122.41581958571044,55.23630197056439],[-122.41577226431525,55.23630172880727],[-122.4157410557706,55.23631989143141],[-122.41570984719776,55.23633805404764],[-122.41561355577267,55.2364003139438],[-122.41558112393729,55.236454321866745],[-122.41551678522498,55.23653432111934],[-122.41550168922561,55.23657088811014],[-122.41545229315258,55.236660287915896],[-122.41545266531415,55.23667823892405],[-122.4154343712241,55.236839174534346],[-122.41543177151861,55.23695683278851],[-122.41543129253569,55.23702858014446],[-122.41544670753576,55.23705481335202],[-122.41546202284103,55.237082164953456],[-122.41550929182485,55.23712725601103],[-122.41552460720024,55.23715460760481],[-122.41557033420371,55.23717274378791],[-122.41561802886208,55.23719093663015],[-122.41571145069263,55.23722726558541],[-122.4158064679844,55.23724570013577],[-122.41591446106489,55.23727347848063],[-122.4160887551781,55.23730989385284],[-122.41619754618652,55.23732872478305],[-122.41624486879205,55.23732896637854],[-122.41654384761357,55.23733869764049],[-122.41666917735577,55.237349034275184],[-122.41679460684094,55.23735825238702],[-122.41688845472159,55.23736768228089],[-122.41701468169497,55.23736795299658],[-122.41712427064937,55.237377835942],[-122.41742315038549,55.23738868349018],[-122.4176274845441,55.237397929837186],[-122.41778519364755,55.23739910607375],[-122.41790982636299,55.23741727024281],[-122.41809949059548,55.23743618491583],[-122.41822402392857,55.23745546716835],[-122.4182556056524,55.23745525492134],[-122.41834945410166,55.237464683714286],[-122.41836636569926,55.23747414059147],[-122.41847605490696,55.23748290394948],[-122.41858484750028,55.237501732794684],[-122.4186633286677,55.237528659318315],[-122.41874171031522,55.23755670419088],[-122.41880445059567,55.23758317761264],[-122.41883630647392,55.23760203461621],[-122.41891277083096,55.23767375354375],[-122.4189438298745,55.23770155770764],[-122.41900577356971,55.237736978216226],[-122.41903762966406,55.23775583516844],[-122.41906916225898,55.237800471901636],[-122.41911404536178,55.237872403159976],[-122.41911441916815,55.237890354158836],[-122.41912931417764,55.237944603498896],[-122.41914383540662,55.23798090183858],[-122.41919068650505,55.23805288969043],[-122.41922104874298,55.238088522576966],[-122.41925210831971,55.23811632666485],[-122.41929980576118,55.238134518098356],[-122.41934590949202,55.238170603895156],[-122.41940865112721,55.23819707701381],[-122.41944050777465,55.23821593386371],[-122.41954977640937,55.23825159446643],[-122.4196112478503,55.238270182076334],[-122.41969132480924,55.23827921356851],[-122.4198174550641,55.238280599842845],[-122.41987865211688,55.23828011792427],[-122.41991093163875,55.23827207646253],[-122.4199902602669,55.23824520576869],[-122.42002067165846,55.23823598927242],[-122.42005374783751,55.23821900057861],[-122.42008617509188,55.238164991483856],[-122.42014943594683,55.23807486766156],[-122.42019765234528,55.23797646218393],[-122.42019924571255,55.2379585677917],[-122.42021644986471,55.237787509269566],[-122.42023223912369,55.237743112907395],[-122.42024919932585,55.23770772034234],[-122.42028200023105,55.23767166219385],[-122.42032857457201,55.23763600024762],[-122.42036174970791,55.23761789307317],[-122.4204071050371,55.23761807648627],[-122.42051749211178,55.23761900924901],[-122.42065983552526,55.237637680051186],[-122.42073874037472,55.23763770707456],[-122.42108297838195,55.23764872911609],[-122.42116188325338,55.23764875587133],[-122.42125573283491,55.23765818247456],[-122.42133580894497,55.23766721290915],[-122.42141302148664,55.23768625231205],[-122.42147656012098,55.23770377718434],[-122.4215234616949,55.23773091496984],[-122.42156919205696,55.237749048951144],[-122.42160104936217,55.23776790524779],[-122.42161726503254,55.23778519048797],[-122.42163141351956,55.237803537545894],[-122.4216479046087,55.237839892174094],[-122.42166205312893,55.23785823922857],[-122.42166121030138,55.23791203562178],[-122.42166116382991,55.237956884809705],[-122.42164500112715,55.23798333036236],[-122.42164537606365,55.23800128135377],[-122.42158174376588,55.23807345494376],[-122.42156558096411,55.238099900486304],[-122.42151666463383,55.23811755532175],[-122.42148625367444,55.23812677218321],[-122.42136012384431,55.238125387598956],[-122.4213293380462,55.238116653429714],[-122.42131242548223,55.23810719695449],[-122.4212504791866,55.238071777592154],[-122.42117172006141,55.2380257833045],[-122.42112678604197,55.23799870197484],[-122.42107829144729,55.237989458442925],[-122.42082663009289,55.23797997792034],[-122.42078005579522,55.23801564005368],[-122.4207481511894,55.23804163273465],[-122.42073146624413,55.238096094762724],[-122.42073062216741,55.2381498911507],[-122.4207127185281,55.23824019857051],[-122.42072729335086,55.23832022751524],[-122.42072762036861,55.23838302769883],[-122.42072630217808,55.238419991493124],[-122.42072508355713,55.23845583688748],[-122.4206607042845,55.23858068799889],[-122.42064476798973,55.23867105200802],[-122.42062649376068,55.23883198840465],[-122.42061018280612,55.23890440141543],[-122.42056079521889,55.23899380326268],[-122.42052874238193,55.239065763480546],[-122.42049589278967,55.239146670889305],[-122.42046276822603,55.2392085088935],[-122.42046351706738,55.239244410886734],[-122.42046257302688,55.23929932567727],[-122.42046055749195,55.239344118270104],[-122.42047555443585,55.23939724905538],[-122.42047620371075,55.23943426944883],[-122.420427141734,55.239586471436745],[-122.42042512614519,55.23963126403],[-122.4204238115138,55.23975680781168],[-122.42042334139927,55.2398285552017],[-122.42042212246577,55.23986440059701],[-122.42043659771514,55.23994554798535],[-122.42045149526814,55.23999979717575],[-122.42046798619131,55.24003615196619],[-122.42048223452855,55.240053380757765],[-122.42052988708751,55.240116420917744],[-122.42055977801542,55.24013522088579],[-122.42060663415576,55.24020720821667],[-122.42065152269197,55.240279138933964],[-122.42071407383743,55.240396428190884],[-122.42074443919299,55.24043206071228],[-122.42077470502672,55.24046881162661],[-122.42080666368783,55.24048654973012],[-122.42085356805379,55.24051368777364],[-122.42090009785515,55.24052287480237],[-122.42096354117508,55.24054151834042],[-122.42102660986933,55.24054221084947],[-122.42113710454664,55.240542024662766],[-122.42116672089243,55.24054175508891],[-122.42119900197133,55.24053371329199],[-122.42124754659584,55.24049810758214],[-122.42134365750107,55.24032707552256],[-122.42137561032698,55.24025623348883],[-122.4213922952961,55.2402017713655],[-122.42142509721009,55.24016571290909],[-122.42153558452598,55.24007694637909],[-122.42156758978957,55.24004983509176],[-122.42167882641267,55.23999697042403],[-122.42179016228958,55.239942987256285],[-122.4218683215522,55.23990711157694],[-122.42194675622243,55.23989030524268],[-122.42199567451921,55.239872650235995],[-122.42205846658278,55.23985427282855],[-122.4221689057385,55.23981035493313],[-122.42220011408882,55.23979219069373],[-122.42224786066944,55.239765531806086],[-122.42235872034188,55.23969471554051],[-122.4224700544702,55.23964073176618],[-122.42251780069225,55.23961407277546],[-122.42256592221318,55.239605364757146],[-122.42261324753437,55.23960560393295],[-122.42278483914755,55.23960605139382],[-122.42286285221947,55.23961614268702],[-122.42287986529713,55.239624480551],[-122.42295825396629,55.23965252277434],[-122.42300515881114,55.239679660005805],[-122.4231754446972,55.23980565073792],[-122.42322272552454,55.239850738877095],[-122.42323725113428,55.239887036744655],[-122.42326709847309,55.23995068525787],[-122.42328289538715,55.23999486849041],[-122.42331316321061,55.24003161878665],[-122.42337549006723,55.24008498811735],[-122.42339160793175,55.24010339153182],[-122.42342356745628,55.24012112896327],[-122.42345425574239,55.24013098101847],[-122.42350078569496,55.24014016707546],[-122.42372087738107,55.24014985583705],[-122.42376820334958,55.24015009457405],[-122.42379899123294,55.240158828141716],[-122.42383164741061,55.24016873665061],[-122.42386281126832,55.24019542119036],[-122.42401847605326,55.2402862313816],[-122.42408112457844,55.240313820553446],[-122.42412765488558,55.24032300637636],[-122.42417418521396,55.24033219218187],[-122.42422151139962,55.24033243074667],[-122.42425309534991,55.2403322169788],[-122.42428430316407,55.24031405221645],[-122.42434741503881,55.24026989384704],[-122.42436367635915,55.24024232953609],[-122.42436610722388,55.24017063866672],[-122.42435072869083,55.240099557360836],[-122.4243358258436,55.240045308636546],[-122.42429017871164,55.239937477276214],[-122.42427565213382,55.23990117953131],[-122.4242760718209,55.2398742813218],[-122.42427653506587,55.23980253391708],[-122.42429405526718,55.23969427498866],[-122.42429451847799,55.23962252758483],[-122.42430988429616,55.23960502890863],[-122.42434314623164,55.23949722228228],[-122.42436099881814,55.2394517635261],[-122.42440757160423,55.23941610004978],[-122.42443947493588,55.23939010642876],[-122.424456112041,55.23938049309255],[-122.42448769524279,55.23938027926516],[-122.42462929416725,55.23936304356382],[-122.42466077788956,55.239363948095786],[-122.4247396861269,55.239363972584464],[-122.42478621548595,55.239373158160674],[-122.42481737936053,55.23939984245994],[-122.42487843570964,55.2394453256821],[-122.42490950024305,55.239473128361915],[-122.4249410406978,55.23951776361409],[-122.4250020118667,55.23965294516571],[-122.42501653901016,55.239689242825214],[-122.42504849892207,55.23970697983925],[-122.42509540524016,55.239734116283664],[-122.42514310724115,55.239752305481545],[-122.4252349524188,55.239806521757814],[-122.42526770811328,55.239815311486154],[-122.42532918458456,55.23983389627612],[-122.42543878229688,55.239843771907346],[-122.42553460575797,55.239853251808476],[-122.42558113586433,55.239862437088156],[-122.4256119239211,55.23987117020758],[-122.42570615649473,55.239898544440706],[-122.4257526866926,55.23990772965628],[-122.42578417086638,55.23990863390437],[-122.42606850198455,55.23992801233329],[-122.42611395936957,55.23992707526379],[-122.42641286046324,55.23993790124088],[-122.42646135863173,55.23994714269704],[-122.42660053184105,55.24000159566282],[-122.4266947653927,55.24002896914834],[-122.42682086065084,55.240075197527325],[-122.42685085389327,55.240092877580466],[-122.42689935234914,55.24010211886613],[-122.4269616252346,55.24011175561039],[-122.42713476904895,55.24013915179426],[-122.42718209502505,55.24013938923406],[-122.42726020962834,55.24014835936817],[-122.42744754580741,55.24014925233991],[-122.42751140909874,55.2401409943214],[-122.42769991796551,55.240150890645914],[-122.42777882774794,55.240150913209135],[-122.42784189594694,55.240151602267225],[-122.42788763190784,55.24016973393182],[-122.42792038847746,55.2401785229628],[-122.42795145567892,55.24020632488543],[-122.4279498656704,55.24022421937975],[-122.42796608505815,55.24024150379651],[-122.42794978674168,55.24031391777583],[-122.42794777949122,55.240358710493],[-122.42790120875206,55.240394375295594],[-122.42786920748227,55.240421488211055],[-122.42783810058249,55.24043853546598],[-122.42779035690735,55.24046519649788],[-122.42775756045387,55.24050125663112],[-122.42774130135399,55.24052882138565],[-122.42773921446187,55.24066331249855],[-122.42775453949692,55.24069066259534],[-122.42777113668376,55.24072589801477],[-122.42784873587009,55.24076288440884],[-122.427926812342,55.240816703325024],[-122.42798825214949,55.240880136003945],[-122.42803553963279,55.24092522231972],[-122.42808165439605,55.24096130489016],[-122.42811361666959,55.24097904111939],[-122.42819163374001,55.24098912907593],[-122.42825321272446,55.241006594018145],[-122.42827012813844,55.24101604955284],[-122.4283001227191,55.241033729258305],[-122.4283162432162,55.24105213203675],[-122.42839459948624,55.24112502004262],[-122.42840885160324,55.241142247928934],[-122.42839217574198,55.241196710995744],[-122.42839293169594,55.24123261294648],[-122.42836051312015,55.24128662421607],[-122.42834314156181,55.24134891612122],[-122.42831030581978,55.24142982560453],[-122.42827868193055,55.24147488960331],[-122.42827746994571,55.24151073507967],[-122.42826248304722,55.24154618522406],[-122.4282919225464,55.241636730767546],[-122.42830814265052,55.241654015141584],[-122.42838695601438,55.24165515572588],[-122.42841736805974,55.24164593717697],[-122.42844857501278,55.241627771369444],[-122.42848085550736,55.24161972768467],[-122.42852907749928,55.24160989895479],[-122.42857523225848,55.24160113214155],[-122.42865366742923,55.241584321581804],[-122.42871763210846,55.2415749445374],[-122.42876495978277,55.241575181375794],[-122.42879565048581,55.241585032116],[-122.42885919849257,55.241602553227075],[-122.42890493656128,55.2416206845201],[-122.42895184771145,55.24164781951615],[-122.42903141761363,55.24168486164118],[-122.42920252561439,55.24180189689687],[-122.42923242184675,55.241820694785886],[-122.42948365522196,55.241901905761345],[-122.42951514104006,55.241902809066445],[-122.42957751667358,55.24191132609678],[-122.4298606905193,55.241921692157774],[-122.43022150513858,55.24192419328982],[-122.43041081751788,55.24192513825006],[-122.43055359626739,55.24191689951641],[-122.43063133609084,55.2419079165677],[-122.43088371940986,55.24190954842283],[-122.4309299732966,55.24189966232858],[-122.43107157832743,55.241882419299905],[-122.43113544362593,55.24187415942229],[-122.43121397754801,55.241856228841286],[-122.43124625767302,55.24184818443966],[-122.43129320640651,55.24183046934992],[-122.43130984288302,55.24182085509629],[-122.43132520648953,55.24180335555188],[-122.43135762150172,55.24174934350849],[-122.4313584871107,55.241650697830686],[-122.4313581078065,55.241632746863736],[-122.43134277996297,55.24160539720842],[-122.43131361361868,55.24153392176193],[-122.43128136951118,55.24149711697751],[-122.43115796343112,55.241398271476825],[-122.43112689309359,55.24137047035152],[-122.43109572350815,55.24134378762697],[-122.43106534829741,55.24130815762702],[-122.43105002077655,55.24128080793632],[-122.43103510845904,55.24122656000893],[-122.43102019618173,55.2411723120799],[-122.4309413566555,55.241082593166446],[-122.43092602930486,55.24105524346098],[-122.43083379454404,55.240983080408604],[-122.43072384976236,55.240910409354754],[-122.43067773268791,55.24087432776263],[-122.43063002685471,55.240856140682794],[-122.43052242952149,55.240801476858515],[-122.43044313957367,55.240783505064925],[-122.430364644175,55.24075658595788],[-122.4302242530329,55.24073798268815],[-122.43009932505676,55.24070076146063],[-122.43006736212898,55.24068302574134],[-122.43002124590387,55.24064694390678],[-122.42998969892821,55.24060230993746],[-122.42997399373088,55.24055700914612],[-122.42997482549917,55.24050321268632],[-122.42999187761403,55.24046670037993],[-122.43000686258668,55.24043125003035],[-122.4300388624237,55.24040413656559],[-122.43010193105829,55.24040482447942],[-122.43030707792894,55.24040510276484],[-122.43036935209943,55.240414737805445],[-122.43044746794781,55.24042370594074],[-122.43062168955531,55.240461219390724],[-122.43069901115206,55.24047913463265],[-122.43077740693548,55.240507171936585],[-122.43080819661337,55.24051590377198],[-122.43093360306922,55.240569956846386],[-122.43099705111193,55.240588595273614],[-122.43104278899139,55.240606725780246],[-122.4311847327815,55.240652282791366],[-122.43123047081791,55.240670413229175],[-122.43129429842325,55.24070700247119],[-122.43132508836625,55.24071573417893],[-122.43135705187446,55.24073346957557],[-122.43140358432781,55.24074265268057],[-122.43145091103887,55.2407428884984],[-122.43162358193649,55.2407534458869],[-122.43166973503894,55.24074467792766],[-122.43170290763368,55.2407265677282],[-122.43171747647501,55.24071801540823],[-122.43176601201303,55.240682405598726],[-122.43178068009519,55.24067273486231],[-122.43178226841766,55.24065484031855],[-122.43179763137346,55.24063734071729],[-122.43181309358506,55.24061872270522],[-122.43184578723134,55.24058377991284],[-122.43190940508686,55.24051160106594],[-122.43194264740927,55.240403792403335],[-122.43195959843175,55.24036839823706],[-122.43199201143626,55.24031438603443],[-122.43202363025432,55.24026932109699],[-122.43207182024051,55.240170911007546],[-122.432071440632,55.24015296004487],[-122.43207306367279,55.240090216299286],[-122.43209042891307,55.24002792388001],[-122.43212087369469,55.23997385522976],[-122.43215445987165,55.23992884667529],[-122.4322346470096,55.239803322510184],[-122.43223509606219,55.23973157507674],[-122.43227037391915,55.23953412435242],[-122.43228707847085,55.239434811576736],[-122.43230364907731,55.23938146640501],[-122.43232121667911,55.23918350796007],[-122.43232321900226,55.23913871517652],[-122.43233940972102,55.23906741904078],[-122.43238797723379,55.23898695979835],[-122.43241959456525,55.23894189476478],[-122.4324362295783,55.23893228036285],[-122.43251590043866,55.238834772670224],[-122.43256297866186,55.2387710895021],[-122.4326272870574,55.238691081432414],[-122.43267464555895,55.238646467591224],[-122.43272321189326,55.238566008220616],[-122.43273988080188,55.23851154458489],[-122.43274146861246,55.238493650031764],[-122.43275852043563,55.23832370818252],[-122.43276027566881,55.23821499683461],[-122.43276155175903,55.238089452939214],[-122.43274781210137,55.23804420891129],[-122.43271626414183,55.23799957564131],[-122.43270055689074,55.23795427520284],[-122.43268723139138,55.23788213293508],[-122.43270424902191,55.237757040291974],[-122.43270386915404,55.23773908933444],[-122.43272012372702,55.23771152393792],[-122.43275281422348,55.237676580915135],[-122.43278322226152,55.23766736130312],[-122.43279975742634,55.237658865263164],[-122.43283016544021,55.23764964563976],[-122.43289322980509,55.237650332139886],[-122.43297213468641,55.237650351412974],[-122.43300489031556,55.23765913910517],[-122.43303557906965,55.237668988797736],[-122.4330813145489,55.23768711855177],[-122.43320671524194,55.23774116932599],[-122.43328638055674,55.237777090312036],[-122.43356539210473,55.23792300113817],[-122.43361230208671,55.2379501343713],[-122.43375461975329,55.23801363939978],[-122.43386348726368,55.23807618568108],[-122.43394108693975,55.238113168272],[-122.43406687059533,55.2381851691363],[-122.43409714690657,55.23822191680649],[-122.43414326400722,55.23825799712526],[-122.43418896814694,55.238320975666504],[-122.43421972441838,55.23837455585044],[-122.43426660294634,55.2384465380317],[-122.43429643427442,55.23855503308821],[-122.43437410216289,55.23863574619422],[-122.43438901802188,55.238689993711134],[-122.43440396618996,55.238699392031904],[-122.4344351036866,55.23877092311791],[-122.43446490350847,55.238924267331946],[-122.43449445423741,55.239013692980144],[-122.43450975108469,55.23908589143803],[-122.43452428660036,55.239122187986695],[-122.43456999231809,55.23918516639228],[-122.43458532143325,55.23921251564543],[-122.43463140809128,55.23929344498268],[-122.43464791153669,55.239329797893014],[-122.43466295918972,55.23933807777194],[-122.43474173630419,55.239384063532036],[-122.43480331567507,55.239401525233724],[-122.4348493355791,55.239438723705504],[-122.43491247026002,55.23948313996932],[-122.43500629574189,55.23953740540963],[-122.43506853816586,55.23959188729783],[-122.43508386777485,55.239619236490405],[-122.43511462623036,55.23967281645871],[-122.4351283691056,55.239718060231],[-122.43512754424401,55.23977185672192],[-122.43514360446767,55.23987995701209],[-122.43515814084199,55.23991625348892],[-122.43517436320207,55.23993353696659],[-122.4351885186262,55.23995188248707],[-122.43526729754308,55.23999786791686],[-122.43529808780559,55.240006598642005],[-122.43532967144087,55.240006382065516],[-122.43555055855074,55.24000710262927],[-122.4356440358013,55.23999856744006],[-122.43567631355016,55.23999052189154],[-122.43570672266705,55.239981301564114],[-122.43575525378567,55.239945690202234],[-122.43588316730217,55.23979349960479],[-122.43591557457651,55.23973948638371],[-122.43591642896754,55.239640840689475],[-122.43593518400947,55.23940703618635],[-122.43595339726767,55.23924609754037],[-122.43593809776904,55.239173899258944],[-122.43590702584642,55.239146099330746],[-122.43589277122607,55.239128872305145],[-122.43581478652891,55.23907393997748],[-122.43579856424032,55.23905665658441],[-122.43576828574709,55.239019909325485],[-122.43575216265594,55.2390015075144],[-122.43575336790623,55.23896566197238],[-122.43576872848995,55.23894816188358],[-122.4358011045254,55.238938997891374],[-122.43584725463616,55.23893022838536],[-122.4358787382716,55.2389311300817],[-122.43598922845351,55.238930930719626],[-122.43605229488043,55.23893161562035],[-122.43609882632144,55.23894079697004],[-122.436131583684,55.238949583840686],[-122.43623997682214,55.23899529551256],[-122.43633421457406,55.23902266170284],[-122.43638112770518,55.23904979389545],[-122.43639607647223,55.23905919197736],[-122.43644457587403,55.23906842954548],[-122.43666346036903,55.23911394098519],[-122.43674157509457,55.23912290517222],[-122.4367730589008,55.23912380664249],[-122.43685234840497,55.239141774404295],[-122.4369138291972,55.23916035347512],[-122.43700768599251,55.23916976820955],[-122.43740054043256,55.239188864068616],[-122.43744904022125,55.2391981012458],[-122.43761970963462,55.2392534431867],[-122.43766820955149,55.239262680278635],[-122.43769899977232,55.23927141040976],[-122.43777780873474,55.23927254505177],[-122.43787166599392,55.239281959135326],[-122.43793562486421,55.239272577358946],[-122.43807683536735,55.23923737542637],[-122.43812416034677,55.23923760870858],[-122.43818801999917,55.23922934521652],[-122.43843772550503,55.23923873434394],[-122.43851770953512,55.23924887214655],[-122.4385634492802,55.2392669998896],[-122.43873618734251,55.2393212782],[-122.43886160072464,55.239375323287106],[-122.43897117332878,55.2394300362083],[-122.43900186489397,55.23943988443204],[-122.43911115418534,55.2394755278752],[-122.43920460252713,55.2395118392125],[-122.43926726025799,55.23953942074371],[-122.43934534962807,55.239593232496645],[-122.43943987472842,55.239639665692984],[-122.43954796306053,55.23971115433298],[-122.43967287030705,55.23979321527997],[-122.43979907878057,55.23983831210332],[-122.43986094507852,55.23987484065908],[-122.43992319459791,55.2399293201225],[-122.43995398581818,55.23993804969664],[-122.44004820232574,55.240010262279036],[-122.4401104523082,55.240064741649405],[-122.44021841815062,55.24018219732635],[-122.44032717687708,55.24029070558461],[-122.44035796846156,55.24029943505905],[-122.4404521865404,55.24037164733778],[-122.44053027911042,55.24042545835119],[-122.44057551327855,55.2404716020376],[-122.4406066884748,55.24049828238785],[-122.44066973215101,55.240543814152744],[-122.4407001152896,55.24057944180818],[-122.4407146569292,55.24061573763846],[-122.44080925990075,55.240705900585795],[-122.44084005190757,55.24071462994145],[-122.4409637892009,55.24078768599295],[-122.44105800951041,55.240859897816115],[-122.44107305905477,55.24086817692156],[-122.44116638865925,55.24095045441084],[-122.44122874061881,55.24100381480975],[-122.44129020168249,55.24106724092702],[-122.44132296190996,55.24107602643376],[-122.44135324702371,55.24111277234796],[-122.4413844232325,55.241139452504825],[-122.44141470845013,55.241176198404276],[-122.44144547652658,55.24122977681523],[-122.4414458603276,55.241247727750746],[-122.44150811411716,55.24130220642767],[-122.44155344939263,55.24134723134522],[-122.44158462591585,55.24137391145254],[-122.44171033444722,55.241447023031746],[-122.44172538434542,55.24145530205866],[-122.44174071918934,55.2414826504357],[-122.44177297285277,55.24151945251218],[-122.44180256575477,55.241564027237466],[-122.44195237271408,55.24165464623539],[-122.44201225209896,55.241735966674106],[-122.44219599721673,55.24184437429395],[-122.44241882741271,55.24191241274422],[-122.44264158247961,55.24193672000644],[-122.44276308496394,55.24196822407391],[-122.44282141731973,55.2420001649996],[-122.4429258677259,55.24209060757903],[-122.44304989571225,55.24238343393696],[-122.44306334024472,55.24245445670181],[-122.44307431080406,55.242553439918794],[-122.44304541690236,55.24267931498637],[-122.44303807942514,55.242985205563016],[-122.4430545467228,55.24311125579209],[-122.44310538246722,55.24318334715661],[-122.44322921920786,55.2432777071592],[-122.44338418138427,55.24331016669389],[-122.4434990041957,55.24332802407642],[-122.4436732724862,55.24332067006583],[-122.44375180364283,55.24330273157819],[-122.4438374367594,55.24324911609963],[-122.44396098776033,55.2431237029899],[-122.44407182920939,55.24303044277776],[-122.44416141858846,55.24293209031903],[-122.44425034697112,55.24277429291432],[-122.444294542336,55.242743039447085],[-122.44441441962103,55.242681432004694],[-122.44457265527322,55.24265455762024],[-122.44466574109262,55.24265048933587],[-122.44474061065226,55.242673931743774],[-122.44482068135213,55.2427277962924],[-122.44495502196416,55.24288188052757],[-122.44510894870072,55.243461475818584],[-122.4451731484391,55.243583282703],[-122.44526147893656,55.24365532273484],[-122.44532138809022,55.243691792381306],[-122.4454531334391,55.24371910118159],[-122.44560929572101,55.24371571230069],[-122.44575010973475,55.243707399944775],[-122.4459319642133,55.243681198227215],[-122.44602348948357,55.24365017444199],[-122.44617024541064,55.24355233177024],[-122.4463943538668,55.243427545215255],[-122.4464614905588,55.24335994498426],[-122.44659961898311,55.24318112599612],[-122.44672354733811,55.24307366106914],[-122.4469248361371,55.242916827374565],[-122.44701675431132,55.242881329176456],[-122.44708415839088,55.24287764716576],[-122.44739066225726,55.242892002781616],[-122.4476363491697,55.24292480414929],[-122.4478623484385,55.24297946797531],[-122.44801416791383,55.24300286204056],[-122.44816007526273,55.2430485120417],[-122.44846607015685,55.24311330633493],[-122.4487713744082,55.24318592883576],[-122.44908642870566,55.24323752514124],[-122.44942059398572,55.24322911878984],[-122.44951604373423,55.24322062932963],[-122.44997910619804,55.24322711090869],[-122.45031710835813,55.24321993284188],[-122.45056674983202,55.24320799147277],[-122.45095337893062,55.24314165148899],[-122.45123972646243,55.243116179365494],[-122.45148583264111,55.243077225623296],[-122.45176194473986,55.24305594545231],[-122.4521551464925,55.243049214896764],[-122.45227469800739,55.24305822898357],[-122.45246007425483,55.243081452844976],[-122.45265646887827,55.243113960381656],[-122.45282255493161,55.243154573698384],[-122.45298500146174,55.24319171934458],[-122.45312697921148,55.24323725135712],[-122.45335534479436,55.2433099122035],[-122.45345786534183,55.24335544066583],[-122.4535161972321,55.24343222580003],[-122.45353467646613,55.24351348150937],[-122.4534794194249,55.243737275845405],[-122.45347729771125,55.24396258427157],[-122.45334431733879,55.24412810193903],[-122.4531284762279,55.24431592545786],[-122.45292492307632,55.24454334221203],[-122.45277174699815,55.24478116436759],[-122.45272635975489,55.24487069117807],[-122.45283555380938,55.244997139457254],[-122.45292823200673,55.24506481253126],[-122.45327604439562,55.245237303746016],[-122.45351817611778,55.24540005531242],[-122.45360849361907,55.24547214551198],[-122.45367705854493,55.245567161865175],[-122.45381585081053,55.245805455035935],[-122.45392465090032,55.245958800688754],[-122.45400188434499,55.24602266912138],[-122.45411356240807,55.2460763063904],[-122.4542858270657,55.24627070296962],[-122.45460322652723,55.24654211381201],[-122.45473418872746,55.2466232094483],[-122.45497241243068,55.246718572251076],[-122.4554989369689,55.24699033024553],[-122.45588269695013,55.2471582308859],[-122.45597302675044,55.24720789476723],[-122.45605813849902,55.24727198608432],[-122.45607397835953,55.24729374056428],[-122.45607269235536,55.24733070475329],[-122.45591884224964,55.24753151060353],[-122.45585131165168,55.247648438896675],[-122.45581536607396,55.24778756999776],[-122.45581102680902,55.2478367808603],[-122.45583223630722,55.24808854178833],[-122.45582511468179,55.24828119173453],[-122.45581359286241,55.24832234943486],[-122.45577057955646,55.248362610473436],[-122.45571930305242,55.24838469642711],[-122.45538712314193,55.248593878841696],[-122.45539105515724,55.24861641555297],[-122.45545727129492,55.24869342399958],[-122.45553303733675,55.24875164330756],[-122.45560831477682,55.24879303009639],[-122.45570495139363,55.24881596397963],[-122.45576527642507,55.24882553028604],[-122.45600127201394,55.248812067299376],[-122.45611130423757,55.24877259299832],[-122.45624938854739,55.24870588631721],[-122.45659936245357,55.24858578589378],[-122.45683644814717,55.24851516937004],[-122.45703367210544,55.24847144873454],[-122.45719625630853,55.248417772010576],[-122.45750597992452,55.248261765293336],[-122.45774856935729,55.248218213413544],[-122.45788939662137,55.24820988733213],[-122.45797304413105,55.24822347995485],[-122.45814022913804,55.24834148192496],[-122.45822386842653,55.24842234822686],[-122.45830189339459,55.248544540408574],[-122.45834803008309,55.24869273487285],[-122.4583483963837,55.248912507315225],[-122.45825005414758,55.2491328349739],[-122.45824729460145,55.24916415103456],[-122.45831588239452,55.24921431562716],[-122.45837158225599,55.24923159768464],[-122.45842876042221,55.24923210325402],[-122.45852461670381,55.2492191331633],[-122.458738475236,55.24916579193112],[-122.45895066791464,55.24904176519564],[-122.45916452960998,55.248943573999085],[-122.45930851643821,55.24885460727334],[-122.4594095910138,55.24880478424653],[-122.45954609367426,55.24875596881722],[-122.45988059232434,55.24881145295592],[-122.46000517901167,55.24885311806169],[-122.46007583887426,55.24885736999321],[-122.46018980018493,55.248862853270175],[-122.46030110549889,55.248853684882604],[-122.46053858023544,55.248778587582734],[-122.46061071888256,55.248743638106454],[-122.46077842056806,55.24863179821318],[-122.46093509706832,55.24855552410563],[-122.46107159957651,55.2484618577737],[-122.46133987514065,55.24835063406834],[-122.46190397599848,55.248151392770716],[-122.4621193974286,55.24814742464894],[-122.46222312216184,55.24815710009381],[-122.46242387859725,55.24823007961823],[-122.46246058521328,55.24826139605839],[-122.46247593478965,55.248378440359005],[-122.46237496243026,55.24847199666989],[-122.46233667894997,55.24852584899468],[-122.46235478179621,55.24872370024462],[-122.46240369150291,55.24877330320809],[-122.46248891621013,55.248791422471946],[-122.46275984530781,55.248806970301885],[-122.46321628220355,55.24879975773895],[-122.46333860883762,55.2487998696577],[-122.463466052881,55.24878667207847],[-122.46360048404351,55.24876133933822],[-122.4636470329757,55.24874808578587],[-122.4637437718168,55.248702621148745],[-122.46375794290451,55.248676114200435],[-122.46376542158539,55.248613537752824],[-122.4636968272569,55.24847367769853],[-122.46343456001932,55.24833728503123],[-122.46330633027463,55.24820245774534],[-122.46320929754258,55.24807188042075],[-122.46332611103328,55.24797765238042],[-122.46341133440654,55.247950921781786],[-122.46356436230323,55.247916026455904],[-122.4637213265469,55.24790366738909],[-122.46387169702119,55.24787654481451],[-122.46407442164882,55.2478598791309],[-122.46434583533981,55.24780255748967],[-122.46473238826286,55.247759717765526],[-122.46498254454006,55.24771973070808],[-122.46531546401144,55.24770339676558],[-122.46620971133277,55.2476760896717],[-122.46630319988995,55.247667531468615],[-122.46662745540812,55.24761506878592],[-122.46749610872499,55.247542176916575],[-122.46770512789524,55.24752119914225],[-122.46791739525312,55.24750816178427],[-122.46804365435575,55.24750838078232],[-122.46840257009735,55.24764526315433],[-122.46850197132093,55.247704144670614],[-122.46874654374307,55.2478848733651],[-122.46887085734821,55.24804200799364],[-122.4689311967846,55.248141266385375],[-122.46894421012193,55.248307577041494],[-122.46893112650879,55.248344206364486],[-122.46873070943052,55.24869394971278],[-122.468605354417,55.24886306239312],[-122.46858676151884,55.24891747502625],[-122.4686116639822,55.24894845462064],[-122.46874964494077,55.24899497560728],[-122.46906998737356,55.2490545179731],[-122.46922736046285,55.249127376678835],[-122.46936504800857,55.24917725230281],[-122.46957183250123,55.249294118589255],[-122.46967281836503,55.249379953378835],[-122.46982421235852,55.24958831001317],[-122.46993115206448,55.24996583209186],[-122.47005350467104,55.25010048512949],[-122.4702661026681,55.250218636159815],[-122.47042308171861,55.25025111788492],[-122.4709051303266,55.25028945191738],[-122.4710428153577,55.25029447645332],[-122.47139789180454,55.25025072323025],[-122.47144247156093,55.250237410969085],[-122.47160700739795,55.2501613466069],[-122.47169497903984,55.25010329397874],[-122.47188626588289,55.24994725936241],[-122.47218059542188,55.249808720701886],[-122.47237859435126,55.24975602823588],[-122.4726231449935,55.24971250316633],[-122.47303341445803,55.24962433930223],[-122.4733020627929,55.24953104067621],[-122.47346698475562,55.24945050009129],[-122.47373089198769,55.24929876270815],[-122.47386775384427,55.24917818396256],[-122.47399516003857,55.249030427910675],[-122.4742424586675,55.248618095568574],[-122.47436672233796,55.24850612932885],[-122.47453035019677,55.24839527787562],[-122.47472085216882,55.2483154603226],[-122.47496038253895,55.248306546681526],[-122.47502504021205,55.24831174136238],[-122.47515839675438,55.248343548265595],[-122.47549609924353,55.24852017257493],[-122.47577699856731,55.248624550763935],[-122.47600690653984,55.2486803934417],[-122.47645591719525,55.2488478326349],[-122.4765288485377,55.24887120023026],[-122.47666141636401,55.24888952847065],[-122.47679240819508,55.24890332707919],[-122.47690479578263,55.24890426557511],[-122.47752576619904,55.248865778250426],[-122.47762791232178,55.24884848677176],[-122.47819668481198,55.24870760936981],[-122.4783186108782,55.24868975574942],[-122.47852920666728,55.24867328928398],[-122.47872889171074,55.24869127160006],[-122.47892771248316,55.24876416885121],[-122.47897782711982,55.24882276855841],[-122.47897148465121,55.24896274146619],[-122.47894001826981,55.249029124511544],[-122.4788208867071,55.249150209925226],[-122.47857874887492,55.24930145213697],[-122.47844297865907,55.249409733145164],[-122.47828839833544,55.249484966513215],[-122.47808520602432,55.24957452141328],[-122.47775151622339,55.24966711090565],[-122.47764504734992,55.24971118949702],[-122.47754291486349,55.24977333022651],[-122.47751093959975,55.249800455909295],[-122.47757248715686,55.24990871339456],[-122.47764110828166,55.24998129196712],[-122.47778709064445,55.25007175652219],[-122.47797606670987,55.25012195221247],[-122.4782557744059,55.250150047708004],[-122.4783663035428,55.250172235371146],[-122.4784680774911,55.25020426622572],[-122.4789675172678,55.25040451632697],[-122.47906851720708,55.25046791888815],[-122.47913950225161,55.250536078522906],[-122.47922515667494,55.250616986407984],[-122.47948757325915,55.250955167430774],[-122.47958346304289,55.25103187961538],[-122.47994647876415,55.25139308629968],[-122.48015290421586,55.25149198421411],[-122.48051071183338,55.25161982850056],[-122.48067451061142,55.2516872474694],[-122.48075178782483,55.25172867472047],[-122.4809960283648,55.251869003973574],[-122.48140958582361,55.252081391467776],[-122.48155400750343,55.252167322190395],[-122.4817599718581,55.25231665893933],[-122.48184199216547,55.25239409842604],[-122.48191390784564,55.25254188893336],[-122.48191940649292,55.25272704504857],[-122.4819150882847,55.2527538322133],[-122.4818820469531,55.2528156865942],[-122.4818220446404,55.252892476074905],[-122.48169542804229,55.2530088679556],[-122.48150376290113,55.25314696684346],[-122.48135509948074,55.25326722019135],[-122.48123751948742,55.25334798814331],[-122.4810189579596,55.253432628944054],[-122.48090461847815,55.25349891238751],[-122.48086950853794,55.253561829308005],[-122.48086356365528,55.25369732856888],[-122.48090506884634,55.2538543510342],[-122.48093108075007,55.253917874488465],[-122.48097450584379,55.25396282945135],[-122.48107985655116,55.254044292515566],[-122.48128276303046,55.254161028124265],[-122.48138140576512,55.254206422362785],[-122.48145002091715,55.25423414961096],[-122.4815600734417,55.254261926695264],[-122.48165281110712,55.25430715381676],[-122.48172664684665,55.254342876958304],[-122.48196097636625,55.25450646926693],[-122.48199022133367,55.25453308365618],[-122.48210072938161,55.25469093422125],[-122.48214770212971,55.25474047382931],[-122.4822689037055,55.2548212624409],[-122.48237033273867,55.25492503780043],[-122.48280162415935,55.255296012157935],[-122.48303016665179,55.25548074180178],[-122.48319272403357,55.2555851219695],[-122.48328862080805,55.255639406702834],[-122.4834259565968,55.25569374061596],[-122.48399809807538,55.255830991006555],[-122.48440925820007,55.25586838979455],[-122.48461558419243,55.25590112491723],[-122.48485980359797,55.255929323500496],[-122.48508749171154,55.25596602459906],[-122.48527018296511,55.25597566706658],[-122.48585130769258,55.25596516204976],[-122.48599697371581,55.25594684924514],[-122.48603840008744,55.255924473001464],[-122.48610972163765,55.255853607112044],[-122.48622801775157,55.25565176378012],[-122.4862745416411,55.255593652511266],[-122.48649657250947,55.255379039639664],[-122.4866102236483,55.25532058023018],[-122.48691825044236,55.25522836328249],[-122.4870690369469,55.255219163504954],[-122.4872146152526,55.25522439235869],[-122.48731403602683,55.25523840964447],[-122.48754095390835,55.25530647851814],[-122.48747356943383,55.25553554714983],[-122.48740141123024,55.25568375378926],[-122.48725396922273,55.25585786663187],[-122.4870852171883,55.25611771144022],[-122.48672867834021,55.25658416642866],[-122.48652525868081,55.25699215377702],[-122.48650368063102,55.25712609044391],[-122.48649540725374,55.25728843290158],[-122.48653260957592,55.25744981623993],[-122.4865495585352,55.25748168850013],[-122.4866513834773,55.2575585619506],[-122.48742535507479,55.258028884783094],[-122.4875579985388,55.2581144753376],[-122.48767952799085,55.258214327976354],[-122.48779985771472,55.2582827526907],[-122.48789575345599,55.25831460925762],[-122.48802129209913,55.25836860491271],[-122.48821629549728,55.258531074862574],[-122.48829480826237,55.258626349894],[-122.48854872385162,55.25885999595568],[-122.48868047872959,55.25893322678712],[-122.48873571643819,55.25895608755897],[-122.48890387311282,55.258996708333484],[-122.48901511650327,55.25901105737439],[-122.48905419900923,55.25901552306304],[-122.48925468189697,55.25911535786594],[-122.48939598972053,55.25919222087308],[-122.48950571420445,55.2592917386769],[-122.48957607779224,55.25941257087525],[-122.48955794306436,55.259529786759614],[-122.48932649583193,55.25980692768191],[-122.48912582248703,55.26018360260904],[-122.48909591607979,55.260367759253164],[-122.48909914376175,55.26048894111246],[-122.48912400020639,55.26056588436302],[-122.48962925470332,55.26095012935274],[-122.48980492006844,55.2610178694077],[-122.4899260434251,55.261077344431314],[-122.49026466924417,55.26120013195541],[-122.49038235956621,55.261276327895445],[-122.49039618707974,55.261343990270944],[-122.49034653633252,55.261437893734055],[-122.4902613172916,55.261487067423936],[-122.49015442510026,55.26151320593742],[-122.48949812427513,55.26154740172561],[-122.48918252703851,55.26156765530404],[-122.48913794059578,55.26158097392495],[-122.48906687873377,55.26160363693574],[-122.48893786729845,55.26167960529046],[-122.48883181244737,55.261786493575826],[-122.48881050432591,55.26187222604918],[-122.48880866315223,55.26207399228075],[-122.48887396338415,55.2624335001887],[-122.48901176619816,55.26270871900894],[-122.48916145371483,55.262938303030005],[-122.48929928561002,55.263100279881606],[-122.48946582804508,55.263204762954025],[-122.48973623951403,55.26331777989668],[-122.48998058179546,55.26345809166841],[-122.49089674799058,55.2640422754681],[-122.49118018649217,55.264187049996835],[-122.49135427463791,55.26422783392866],[-122.49170821681864,55.264107745699185],[-122.49189049236892,55.26403215372983],[-122.49223168992974,55.26385452338971],[-122.49239113241171,55.26379174207227],[-122.49253041228425,55.26375642288155],[-122.49261211849532,55.26374751215896],[-122.49274030010302,55.263748880045874],[-122.49281927262795,55.26377128604552],[-122.49296926073428,55.263839419180705],[-122.49327080035098,55.263957789556365],[-122.49348754189668,55.264030044241345],[-122.49358228454166,55.264075317965194],[-122.4936888923918,55.26418819820042],[-122.49385942285987,55.26433763558141],[-122.49399761760222,55.264427859485565],[-122.49425141921589,55.26455048928259],[-122.49441807811162,55.264653847289026],[-122.49463007886267,55.264825753849],[-122.4949669401979,55.26515029500259],[-122.4954688138794,55.26559720570771],[-122.4957444502703,55.265922263841546],[-122.49593251618076,55.26618767571211],[-122.49604307452978,55.266300664767705],[-122.49635142143677,55.266522369466145],[-122.49650183441248,55.2666084491631],[-122.49674222609025,55.26668136297908],[-122.49704543716491,55.26675828573814],[-122.49766112552813,55.26680587502608],[-122.49832928132977,55.26684036085359],[-122.49857515606483,55.2668730618049],[-122.49875714007594,55.26691405686619],[-122.49887394637555,55.26695546170659],[-122.49903670863921,55.26708112748352],[-122.49911487388734,55.2671808696222],[-122.49927731080284,55.26749152459253],[-122.49926280671774,55.26756735877344],[-122.49922537416427,55.26765712408986],[-122.49879530703325,55.267880487070286],[-122.49853807962818,55.268045920803466],[-122.49851292827212,55.2681080011345],[-122.49849048724992,55.268229581526946],[-122.49849349113386,55.26851220962734],[-122.49851527067817,55.26864736655963],[-122.49860667785936,55.26891229839778],[-122.49869120250274,55.26907500700798],[-122.49882786476296,55.26918312102211],[-122.49914765513884,55.26938720023098],[-122.49934626556815,55.26950938817917],[-122.49951765623953,55.26958147774425],[-122.49979564666116,55.269721592834095],[-122.49997127003195,55.26979043707292],[-122.50012127220513,55.26983613698271],[-122.50043479129603,55.26995370366389],[-122.50063416706185,55.27004451718652],[-122.5008390411676,55.2701175455917],[-122.50144859403807,55.27028154732404],[-122.50133985203144,55.270555429782966],[-122.50132502462905,55.270703012051115],[-122.50132277998108,55.270932795602135],[-122.5012253693908,55.27100854341673],[-122.50099577993738,55.27115121367083],[-122.50081394161487,55.2712896191019],[-122.50065183772489,55.27147342690723],[-122.50054029668775,55.271711351781704],[-122.50046823435694,55.27183602306377],[-122.50048738310271,55.27220543711474],[-122.50054676506991,55.272316983508176],[-122.50082946161386,55.27251665170251],[-122.50111065753704,55.27268824694314],[-122.50125476339987,55.27273377952412],[-122.501610468052,55.27286598197845],[-122.50199276270014,55.27310095955494],[-122.50229644351424,55.27319582037084],[-122.50254164686534,55.273304735231434],[-122.50313599072774,55.27366675286296],[-122.50319716546541,55.273689773132084],[-122.50334521633037,55.27373541388505],[-122.50340559007756,55.27374495714045],[-122.50353784033354,55.2737453060327],[-122.5043995253391,55.27368988633355],[-122.50446184586248,55.273677059691714],[-122.50463195742398,55.27362801592813],[-122.50482703256307,55.273723186111205],[-122.50499368258421,55.27385007318421],[-122.50530456943345,55.27404379412976],[-122.5054739467664,55.27413936340331],[-122.50575356983806,55.27428399439717],[-122.50591784264104,55.27439287421042],[-122.50622003213664,55.27464128744021],[-122.50692219692588,55.27539872942432],[-122.50705851377208,55.2755113083583],[-122.50716749956675,55.275574909193],[-122.50723103816686,55.27559350882948],[-122.50736134946465,55.275616223098865],[-122.5078568440837,55.27566263012133],[-122.50826061734374,55.275673949312036],[-122.5083242538332,55.275691429918965],[-122.50869223986757,55.27584189423862],[-122.50883563865756,55.27594121517586],[-122.5088810883863,55.275986215695504],[-122.50906017128021,55.27628835198413],[-122.50906848974356,55.2763289482166],[-122.50904609679955,55.27638213813091],[-122.50898372724289,55.27644093486753],[-122.50887094925018,55.27651177319167],[-122.50796540021516,55.27693486992524],[-122.5077013418488,55.2769969815005],[-122.50750558914437,55.27702288688863],[-122.507365060279,55.27702679518759],[-122.5070922458905,55.27700793368213],[-122.5069398988975,55.277011510116225],[-122.50675990315929,55.27703785619848],[-122.50651356949699,55.27710046238203],[-122.50641574058542,55.27715826351289],[-122.5063644791822,55.2772027950246],[-122.50631282851818,55.27725180039998],[-122.50616531591021,55.277449479068295],[-122.50618987584322,55.27748492510459],[-122.50625896092832,55.27753058952521],[-122.50640272485616,55.277603014724804],[-122.50656035053372,55.27765228329698],[-122.50693457325022,55.27773117066311],[-122.50711980068728,55.27780363645861],[-122.50728810379567,55.27788908182189],[-122.5074480177851,55.27795747375157],[-122.5078685712578,55.27807129310094],[-122.50814698847432,55.27816206644352],[-122.50833382599512,55.278261484210056],[-122.50843494223867,55.27832486310687],[-122.50880898887705,55.27858761608408],[-122.50892000639486,55.27869611994341],[-122.50897732890174,55.27878630098628],[-122.5090561551289,55.278992567965794],[-122.50905107922227,55.279119121063935],[-122.50901013250615,55.27922672978326],[-122.50889747378243,55.279409691495005],[-122.50880876467784,55.27952156765273],[-122.50870979575546,55.27970603409826],[-122.50862050967218,55.28000625527438],[-122.50863486429228,55.28015914052307],[-122.50865064833508,55.28018200684492],[-122.50870792175148,55.28022733868139],[-122.5087778894405,55.280262935457515],[-122.50885483627233,55.280286394596345],[-122.5090254357583,55.28030014492868],[-122.50953141086437,55.28015847615916],[-122.51010615856472,55.28004339838942],[-122.51041354345908,55.279960070965565],[-122.51055563708782,55.27993826363411],[-122.51075152563644,55.27993365964533],[-122.51107005655659,55.27994930812018],[-122.51122411939224,55.27997156189922],[-122.51164903290446,55.28008100494625],[-122.51205529150872,55.280155167118096],[-122.51237078646112,55.28018306035238],[-122.51288212963617,55.28025231326875],[-122.51334603160389,55.280344902552216],[-122.51362797221272,55.28039539850357],[-122.51382192092778,55.28041315923331],[-122.5140283685763,55.28042342104733],[-122.514223025504,55.28045577648136],[-122.51430798086176,55.28050075892027],[-122.51450000611715,55.28063170530878],[-122.51469982622403,55.280695597833784],[-122.51484713949067,55.28075017277805],[-122.51514218431613,55.28087727290251],[-122.51528239564429,55.28092267909143],[-122.5157135988834,55.28100537501428],[-122.51574451635221,55.28114975238265],[-122.51603196670779,55.28111406493487],[-122.51649648146778,55.28135914128769],[-122.51660788572373,55.28144073973757],[-122.51670594852413,55.28156232796168],[-122.51674436933651,55.281643006827515],[-122.5165540303377,55.28190228623023],[-122.51648181347059,55.28196081133925],[-122.51624230684024,55.28205838505018],[-122.51601187258916,55.28216518158544],[-122.51594317691179,55.28220586580693],[-122.51582638733026,55.28230014342963],[-122.51560254015568,55.282626877313426],[-122.51549729663124,55.28281565782347],[-122.51551676356628,55.282864413588825],[-122.51564762764993,55.28306316117492],[-122.51574580842815,55.28327444887403],[-122.51585730434915,55.28342332203613],[-122.51592327619285,55.28348234778268],[-122.51602283564314,55.28354119154611],[-122.51632996965981,55.28377962433271],[-122.5164140612068,55.28383467166614],[-122.5168055314146,55.28401155326157],[-122.51686879678341,55.284033503439574],[-122.51715670786375,55.28410658133401],[-122.51741649391172,55.28413963066694],[-122.51774626288682,55.2842082712143],[-122.51785884711794,55.28420805428655],[-122.51799071352653,55.2841904370922],[-122.51843314405012,55.284098530493715],[-122.51858270950436,55.28405898346089],[-122.51892931458309,55.2839789729558],[-122.51938046200183,55.28385479216235],[-122.51953557934593,55.28384230770116],[-122.519672190772,55.28383827561684],[-122.51993917886438,55.28387936919662],[-122.52011693389282,55.28392469700302],[-122.52031364628785,55.28400194731493],[-122.52042383900725,55.284052114814756],[-122.52073042248412,55.28422885515725],[-122.52115488975981,55.284526611126566],[-122.52143318892696,55.284824769361094],[-122.52150088359873,55.284978019813046],[-122.52151922872848,55.285062621133],[-122.52151774351313,55.28512536622872],[-122.52147756710768,55.285269999068916],[-122.52139840764158,55.28536309003176],[-122.52119839196979,55.28552904741953],[-122.52096691678238,55.2857389736647],[-122.52076880353138,55.28586013602152],[-122.52066977892183,55.28590894550087],[-122.5205915865321,55.28592245860246],[-122.52036543932593,55.28593408212054],[-122.51993820642188,55.28598717886755],[-122.51975230003116,55.28603580332525],[-122.51962126663304,55.286089323887175],[-122.51952973292113,55.286142826523225],[-122.51941736535021,55.28623162519997],[-122.51938658395042,55.28626776460359],[-122.5193062510215,55.28644266855868],[-122.51929055209135,55.28648707761687],[-122.51929216237195,55.28658242379129],[-122.5193757727732,55.286779846606784],[-122.51940826208663,55.28683793489709],[-122.51943471268227,55.28687455187189],[-122.51956283495129,55.28699137103159],[-122.51986662832317,55.2871321570055],[-122.51998584145659,55.28714669854798],[-122.52010434452144,55.287146644674074],[-122.52030960174717,55.28712546852323],[-122.52052997388098,55.28713498624859],[-122.5208984985895,55.28721254822575],[-122.52105055979266,55.28725827802983],[-122.521126461294,55.287294032929125],[-122.52122571480415,55.28740219585824],[-122.5212795567975,55.28751021204658],[-122.5212943175059,55.28763619732025],[-122.52129124928267,55.28776280601971],[-122.52126692822131,55.287838367859756],[-122.52121285961462,55.28791534154972],[-122.52110246105482,55.28800419676706],[-122.52085698613408,55.28814758221885],[-122.52059942908798,55.28831641721971],[-122.52047236178466,55.28839247340685],[-122.52038237471736,55.288428080947675],[-122.52023870558261,55.288467795224555],[-122.52012497795465,55.28850386078244],[-122.51988702370463,55.288605970509394],[-122.51976383174221,55.288637286662876],[-122.51951673727284,55.288685323297315],[-122.51909196017708,55.28875530446593],[-122.51882580914874,55.28877253525559],[-122.51867619552065,55.288789657910755],[-122.51856175140125,55.28887951927193],[-122.51853293749313,55.28891571352321],[-122.51849039302951,55.2889963717862],[-122.5184713548109,55.28919316953056],[-122.51850064453868,55.289288167969545],[-122.51856711022278,55.28940999248352],[-122.5186738554566,55.28952285159053],[-122.51874620636046,55.289554023922214],[-122.51887463009453,55.28959909582578],[-122.5191574493902,55.289663056145876],[-122.51954701811431,55.28983987418782],[-122.52007083290847,55.28999465270812],[-122.52043111248857,55.290144862464395],[-122.52057969509792,55.290230858258134],[-122.5207839330321,55.29031280187776],[-122.52089743809351,55.29039333309186],[-122.52104204935556,55.29052518617311],[-122.52132129369392,55.29083570315472],[-122.52141025211829,55.290903215498254],[-122.5215651383946,55.29098490120077],[-122.52161649807121,55.29100763745419],[-122.52167690210555,55.291017171874984],[-122.52188466576438,55.291012880392024],[-122.52198334665778,55.29099096855366],[-122.52206978478299,55.29095077592161],[-122.52231788810222,55.29077718895193],[-122.52244134022482,55.290651697572635],[-122.52250522903212,55.29055257357917],[-122.52269501758452,55.29018563538897],[-122.5227746678453,55.29008695113587],[-122.52281375114116,55.29006898156033],[-122.52317299650878,55.28998034122771],[-122.52321879874647,55.289976013258894],[-122.52335307293336,55.28997639610564],[-122.5234549499891,55.28998596562558],[-122.52357142783883,55.29000939665758],[-122.52366791180916,55.29003563335012],[-122.5237216291478,55.29005394975983],[-122.52383736646065,55.290108753118886],[-122.52396709489307,55.290230096698416],[-122.52401012323386,55.290280629225634],[-122.52404853317647,55.29033888121609],[-122.52411585981761,55.29049660427052],[-122.52415134143455,55.29070277123543],[-122.52421898844429,55.29081117091617],[-122.5244578434748,55.29104094929007],[-122.52451360117921,55.29110416969561],[-122.52482225126246,55.29155452527379],[-122.5249240546871,55.29177038975723],[-122.5249596944683,55.29188350229127],[-122.52497520835794,55.29197811459166],[-122.52499418956735,55.292534752468235],[-122.52501797292435,55.29262511061219],[-122.52507651305183,55.29270186251762],[-122.52523907434544,55.292831968305066],[-122.52541448976531,55.2929276754752],[-122.52550578267468,55.29296834120831],[-122.52576854409362,55.29303621110411],[-122.52623100482235,55.293101798971286],[-122.52626027208964,55.29310597836056],[-122.52639336038904,55.293097355099846],[-122.52675941663861,55.29306719536085],[-122.52687586989707,55.2930681986203],[-122.52735458056479,55.29312862922341],[-122.52745569267127,55.29314714339069],[-122.5276150245752,55.293223338968545],[-122.52780901659949,55.293287045835896],[-122.52811679136406,55.29340549690537],[-122.5282270196127,55.29345565755224],[-122.52852789426316,55.29363109569299],[-122.52866184297974,55.293726764048614],[-122.52880032649986,55.29388422366748],[-122.5289122138458,55.29398376194842],[-122.5291137804473,55.29409700968556],[-122.52965286369027,55.294373258479496],[-122.5297382154024,55.294391331801656],[-122.53024571615951,55.294393129761836],[-122.53034760605468,55.29440269365488],[-122.53049972692934,55.294402444085584],[-122.53081513694747,55.29436413509034],[-122.5312679407483,55.29447316090449],[-122.53138114040893,55.29487769476737],[-122.53137300261884,55.2950176160129],[-122.53135143979974,55.295084286777644],[-122.53132254989289,55.2953043555418],[-122.53133923258576,55.29561426610716],[-122.53143599778592,55.29591183015425],[-122.53158106474656,55.29622195017141],[-122.53161236126394,55.296317000435266],[-122.53165692874342,55.29650996283626],[-122.53169046332805,55.29676204081884],[-122.53180730947075,55.296987286467925],[-122.53184256870918,55.29703647846926],[-122.53209487453094,55.29724867549913],[-122.53220511828951,55.297298832647954],[-122.53249079516445,55.29737629436271],[-122.53262629206928,55.29738567000295],[-122.53274014979372,55.297416867115274],[-122.5334057149707,55.29746453209447],[-122.5339949631429,55.297480920447796],[-122.5341284900204,55.297490239650415],[-122.5343398806781,55.29751293570181],[-122.53446782488977,55.29754115935484],[-122.53472711589198,55.297626851527724],[-122.53474011111172,55.29784247933317],[-122.53469626698913,55.29812155521758],[-122.53466601276676,55.29817453065648],[-122.53462422350526,55.2982238218274],[-122.53441383935714,55.29832672650439],[-122.53402790538452,55.298563775464494],[-122.53378088485078,55.29867911451329],[-122.53357057454117,55.29882686717812],[-122.53350032284115,55.29888545704654],[-122.5334408724389,55.29897910390603],[-122.5333349753207,55.2992216971146],[-122.53332995275116,55.29927985882225],[-122.53334792451687,55.299414900393444],[-122.5334108184524,55.29948728408989],[-122.53385633675278,55.29995599507373],[-122.53389996739162,55.29999981326502],[-122.53401812613548,55.300118580665455],[-122.53421069565631,55.300245022948225],[-122.53445190198053,55.30040308908546],[-122.53459467966559,55.300511328572306],[-122.53490382483363,55.30063764723829],[-122.53514893795722,55.30077339690996],[-122.53523900354648,55.30082859599547],[-122.53537985416583,55.300959204508715],[-122.53556375275714,55.301300669897365],[-122.53576834478699,55.30158552992854],[-122.53600684165413,55.30198120734726],[-122.5360225882763,55.30218794190859],[-122.53600109500981,55.30234543085758],[-122.53598276947086,55.30294699480311],[-122.53594914453751,55.30315347851711],[-122.53586622814987,55.303404560747765],[-122.53584219268144,55.30368306644842],[-122.53584473656353,55.303836738724385],[-122.53586915509847,55.30398877655033],[-122.53610068225649,55.30428223245371],[-122.53619719349473,55.3043544274126],[-122.53634976381076,55.30441808935865],[-122.5366445826308,55.30450476343387],[-122.53688446085064,55.30456412333018],[-122.53726865623575,55.3046454306282],[-122.53756536694365,55.30468730785469],[-122.53793635927354,55.30471555093367],[-122.53835037218487,55.304771895842975],[-122.53885106024705,55.304854190707154],[-122.53936589138733,55.30490996789795],[-122.53978193317027,55.30494281956461],[-122.53996254623112,55.30497922588161],[-122.54037622207574,55.30506246278398],[-122.54063947331683,55.30512582742373],[-122.54081421786908,55.305184493119675],[-122.54094814773711,55.30523529895472],[-122.54128469000403,55.30543411575387],[-122.54155081819864,55.30555585929834],[-122.54167738233195,55.305669245745214],[-122.54170713332314,55.3057137969385],[-122.54182770612893,55.30598846619702],[-122.54189744158982,55.30611933584005],[-122.54194189386317,55.30622259588022],[-122.54200365758278,55.30630839731248],[-122.54213623526604,55.30642082883834],[-122.54226550176338,55.306502896643],[-122.5424878804181,55.30667387728192],[-122.54269761094167,55.306877020756545],[-122.54277164190955,55.3069351325944],[-122.54350044544196,55.307374661313105],[-122.54361995795207,55.30745533593966],[-122.54381778098059,55.30761330018558],[-122.54442159144484,55.308127839685774],[-122.54455057357765,55.30825922859134],[-122.54473877499542,55.30852904179371],[-122.54489506870212,55.308664550764796],[-122.54514314311571,55.30885866166347],[-122.54535761131726,55.30905296193279],[-122.5456732929798,55.30924221803643],[-122.54580666073691,55.30934569765395],[-122.54609614187393,55.309540953669966],[-122.54612570045367,55.30967967673612],[-122.54616853497423,55.309755981947774],[-122.54626954405427,55.3098910785254],[-122.54641709652881,55.31003643370946],[-122.54649979414502,55.31008581374607],[-122.54672837010473,55.310185202518674],[-122.5472546200018,55.310384771199296],[-122.54741122044878,55.31047095357056],[-122.54760075575601,55.31061074279079],[-122.5475835840313,55.31074144429375],[-122.54758673978871,55.31111824517324],[-122.54755123224002,55.311576942099954],[-122.54763585038668,55.31178782309284],[-122.54753846399333,55.312115871898484],[-122.54753855799964,55.31216072135269],[-122.54756557686207,55.31226013260068],[-122.54761514812306,55.312350077782796],[-122.54767178869854,55.31242676463316],[-122.54769520492077,55.31245319995795],[-122.5477885833968,55.3125163287719],[-122.54804410215925,55.31267027689984],[-122.54828274382758,55.31285963468351],[-122.54839665634312,55.31293678551481],[-122.54854341162682,55.31302269359427],[-122.54867430012305,55.31306331545297],[-122.54875171785511,55.313082276006675],[-122.54931768719278,55.31316521130887],[-122.54979638302524,55.313274879377744],[-122.55008821820712,55.31335134606633],[-122.55026685926687,55.313411226181046],[-122.55052628643101,55.31349688564087],[-122.55069550440349,55.31357444311083],[-122.55126615588232,55.313809977732255],[-122.5514152765323,55.31389146293519],[-122.55157305296427,55.31396421799337],[-122.55170717116398,55.314036318541284],[-122.55190510785962,55.314216694795974],[-122.55236191712588,55.314627341371036],[-122.55243141701723,55.31480752874162],[-122.55244349537755,55.314919979485516],[-122.55237378983242,55.31522525212371],[-122.55235817911466,55.31547596209788],[-122.55238195150734,55.315705337658876],[-122.55243606785629,55.31592658285609],[-122.55242410218507,55.316042853480766],[-122.55224084915733,55.316266504854646],[-122.55207634394083,55.31640995031483],[-122.55188456889432,55.31652573345871],[-122.55166596047466,55.31667777283518],[-122.551461536827,55.31682571950083],[-122.55129476851754,55.3170184329229],[-122.55128308554032,55.317085379936415],[-122.55130304825673,55.31719804894779],[-122.55134792149589,55.31729683170805],[-122.551496867636,55.31747248983326],[-122.55158401573159,55.31760831901535],[-122.55191115229077,55.31794138317985],[-122.55200359481417,55.31810762995842],[-122.55204616704191,55.318279224726844],[-122.55208606045869,55.31866600975354],[-122.55211444353992,55.31879572891885],[-122.55233314091974,55.31907982539223],[-122.55256996872072,55.31931397006462],[-122.55292844255959,55.31971965208883],[-122.55298894726803,55.31975159611142],[-122.55321585623962,55.31977917031488],[-122.55345728678803,55.31977575275673],[-122.55365961891417,55.31979031403657],[-122.55396001293711,55.319790767376006],[-122.55455950729196,55.319829755809764],[-122.55482825589085,55.31983045387095],[-122.5552460013331,55.319845357803054],[-122.55532002300994,55.31988103752756],[-122.55540288570407,55.31985978194628],[-122.55571088679513,55.31990977247989],[-122.55581717526181,55.31991495045919],[-122.55648106481509,55.319917588468066],[-122.5567016254545,55.31992704229881],[-122.5570534896128,55.31997263477761],[-122.5576202882564,55.320024159617695],[-122.55819897255401,55.32009843316669],[-122.5585749393438,55.32016262511491],[-122.55870783313888,55.32020329089534],[-122.55901552162965,55.3203261400794],[-122.5592501560805,55.320448093986194],[-122.55932764663953,55.320489472733314],[-122.55948348357647,55.32072361068973],[-122.55961533677322,55.32082254719284],[-122.55971439319895,55.32093515389018],[-122.55977960953453,55.32111970255116],[-122.55978732903961,55.321214093184395],[-122.55974378321753,55.321514484723885],[-122.5597614751794,55.321861412126935],[-122.55988012826786,55.32204519247758],[-122.56001709359785,55.32217678316191],[-122.56013394419112,55.322266335831884],[-122.56013094174124,55.32237052114786],[-122.5602499302709,55.32289626493453],[-122.56083381314022,55.323671394825915],[-122.56110276060878,55.3242696635764],[-122.5611833263213,55.32459814323511],[-122.56127100200571,55.324728373156674],[-122.56138590434797,55.324863838322464],[-122.561422374708,55.324899599867045],[-122.56154691928434,55.32494563774747],[-122.56169844372054,55.32497672302741],[-122.56193880962535,55.325009136039725],[-122.5624101759904,55.32511406431304],[-122.56261730463078,55.32514219638536],[-122.56285098925765,55.32518339273855],[-122.56327811073191,55.325297188705996],[-122.56355900872443,55.325410317779614],[-122.56369778532381,55.32542871653419],[-122.5639971449199,55.325510960736004],[-122.5644604766884,55.32570983703184],[-122.56472479821504,55.325855020331254],[-122.56484787384436,55.325941376018434],[-122.56513339241661,55.32616225986553],[-122.56531708998358,55.32627943469725],[-122.56558733494003,55.326424779112145],[-122.5659320264124,55.32676276966697],[-122.5660346193196,55.326857529356566],[-122.5661581795394,55.3269382911474],[-122.56631488512602,55.32702444993429],[-122.56644939877091,55.32706963588674],[-122.56664947492408,55.3271110206694],[-122.56689500853719,55.327152535199886],[-122.56754144297517,55.32722190005695],[-122.5680549527891,55.327250605851674],[-122.56837053257468,55.327305256347856],[-122.56853469187583,55.327373678747605],[-122.56899052458768,55.327591390403796],[-122.56910773452441,55.32765403586804],[-122.56942148797748,55.32779944699767],[-122.56956045348716,55.327885113499526],[-122.56961289011149,55.327988580875356],[-122.5696647399875,55.328168270697525],[-122.56969156761038,55.32861747094342],[-122.56965226331477,55.32870720364366],[-122.56956393789144,55.32879222466339],[-122.56945967861554,55.328855505426105],[-122.56917818306752,55.32898005945661],[-122.5687259761665,55.32913579389857],[-122.56836960161424,55.32921119774455],[-122.56805562302377,55.32932252300193],[-122.5678159592518,55.32942019620511],[-122.56752585776793,55.32957590238299],[-122.56739015179757,55.32968316251561],[-122.56726524676662,55.329849019990704],[-122.56707747416529,55.33003332800401],[-122.56693628907855,55.330158375462936],[-122.56680381627918,55.33029711648638],[-122.56677227790934,55.330342215924354],[-122.56668084267822,55.33060205033693],[-122.56666602216015,55.33070591016156],[-122.56667119454768,55.330876468647425],[-122.56674343091817,55.331164352352204],[-122.56680741197077,55.331271502244654],[-122.56684632604383,55.33137123523379],[-122.56688238832372,55.331550491978184],[-122.56687660656269,55.33164114669733],[-122.56685305276793,55.33168534478422],[-122.56665184539536,55.33186479808833],[-122.5665974019605,55.33190029781648],[-122.56633560088382,55.33202538838484],[-122.56601866356458,55.3323787982879],[-122.56585864137423,55.33258517095859],[-122.56573981008621,55.33281846416674],[-122.56573105681221,55.33294379306232],[-122.56573718185065,55.33321864580476],[-122.56589327743296,55.33352005037296],[-122.56602306228977,55.33371309910539],[-122.56615334640931,55.33383104373365],[-122.56622357338212,55.33391145798552],[-122.56653685040175,55.334316971217184],[-122.56667102545157,55.33441259912601],[-122.56690396644706,55.33460175884439],[-122.56707784478594,55.334718659757876],[-122.56731768179615,55.334827284953604],[-122.5674121380087,55.33485567068347],[-122.56763678678048,55.334887638530574],[-122.56784718638512,55.33490127540461],[-122.56808240597303,55.33490214083461],[-122.56811915718238,55.334888576817306],[-122.56826709725252,55.33477716732008],[-122.56838355518408,55.33473328228525],[-122.56868311916008,55.334675374078955],[-122.56888070333171,55.334653900852345],[-122.56912381190531,55.334654981339575],[-122.56951015525222,55.33466896952731],[-122.56972051810938,55.334706146540086],[-122.56984519828447,55.334751057660945],[-122.57005688851171,55.3348420860989],[-122.57030703974127,55.33496892739781],[-122.57037282963668,55.335008855427546],[-122.57069242037791,55.33524859935978],[-122.57087567550371,55.33551038149419],[-122.57090757383874,55.33559982962181],[-122.5709299941948,55.335869523331226],[-122.57092876463243,55.335999543631395],[-122.57095833288821,55.336139379710744],[-122.57101823197847,55.33622511281199],[-122.57135363264901,55.33658076830115],[-122.57161893655325,55.336761838491775],[-122.5721287726791,55.33713573897187],[-122.57241381113352,55.33731734951862],[-122.57274492109005,55.337538344261205],[-122.57305488075752,55.337706062798034],[-122.57343057921479,55.33789128222345],[-122.57364633523832,55.337981294442045],[-122.5740518892326,55.33811800102275],[-122.5744833740242,55.3383215662517],[-122.5751570365669,55.33860689543309],[-122.57526267546154,55.33864342988612],[-122.57579071704288,55.338735283174984],[-122.5759275725053,55.33875361421206],[-122.57612211718182,55.33876792252824],[-122.57629254316501,55.33876363024135],[-122.57644110948429,55.338737435989366],[-122.57670457708565,55.33863927717614],[-122.57673814696965,55.338616654095816],[-122.57687818564412,55.33850501782765],[-122.57693689295643,55.33844272294182],[-122.57702223346082,55.33827689165226],[-122.57700848828308,55.33815991476488],[-122.57698659717708,55.33809204504829],[-122.57692553695668,55.33801973718148],[-122.57689012303851,55.337948132956626],[-122.57688045075076,55.337876113863494],[-122.57690912029675,55.337795056418905],[-122.57698962240309,55.33773223838757],[-122.57713563914056,55.33764318899473],[-122.57722371340938,55.33760748621397],[-122.57741691639482,55.337567940581934],[-122.57753633179244,55.337558883868404],[-122.57771855748601,55.337578457649464],[-122.57827792929112,55.33755792385276],[-122.57856827544394,55.337584946334154],[-122.57864187347543,55.33762620495797],[-122.57875992463136,55.33772586123494],[-122.57892755107157,55.33784705752056],[-122.57920998473661,55.33803642820572],[-122.5796516103918,55.33819092234667],[-122.57974420583679,55.338218126137114],[-122.57997076065918,55.33825124441944],[-122.58010755114998,55.338247146100834],[-122.58049774759196,55.33821635890111],[-122.58058232149827,55.338198496238675],[-122.58068184921902,55.33816758957659],[-122.58085404801592,55.33809607081471],[-122.58108501214633,55.33798467975492],[-122.58144142621589,55.337770216767396],[-122.58156404599823,55.33767715790858],[-122.58185270574143,55.33739917425008],[-122.58201490280722,55.33728253410318],[-122.58218707836247,55.337071990748825],[-122.58239333157557,55.33687919795715],[-122.58249684850915,55.33673179994834],[-122.58262686773102,55.33657503752063],[-122.58281029187154,55.336302017393116],[-122.58286551783887,55.336234018982],[-122.58302245621533,55.3361093856824],[-122.58313307909172,55.33606420625248],[-122.58359786122898,55.33601639332309],[-122.58382557800232,55.336012538853765],[-122.58395163962915,55.33601823306644],[-122.58423336543605,55.33609994267053],[-122.58448083458357,55.33623564987376],[-122.58454248981361,55.336370754178134],[-122.58466282320316,55.33653661462914],[-122.5847428603474,55.33661840704945],[-122.58498534080702,55.33692887523244],[-122.58502859124951,55.33697826838471],[-122.58511775905713,55.33704573556828],[-122.58531180942958,55.33715867694155],[-122.58536759069169,55.337177020872076],[-122.58552856737185,55.33721393992621],[-122.58596592026966,55.33725617989558],[-122.58647358456273,55.337262223225316],[-122.58694913994013,55.33725056891657],[-122.58739427303661,55.33722462691922],[-122.58778647057538,55.337239838980814],[-122.58798588368919,55.337266594623664],[-122.58810260605992,55.337312390250624],[-122.5882792220332,55.33739794252305],[-122.58842505496152,55.33754319446671],[-122.58863717716088,55.337722771951874],[-122.58905933442955,55.33810653376645],[-122.58934531246379,55.338278038798556],[-122.58943753420547,55.33830970956762],[-122.58955183748536,55.338337499314086],[-122.58971914606286,55.338346557276424],[-122.59046375374503,55.33826376345554],[-122.59069383575067,55.33825547620124],[-122.59107178329187,55.33825234997605],[-122.59111687270044,55.338256945396054],[-122.59134079885393,55.33829781894575],[-122.5913985572676,55.33831621408403],[-122.59149912381538,55.33836604952029],[-122.5915376060886,55.338401856210695],[-122.59164119299894,55.338532496151366],[-122.59170263905258,55.33871692066274],[-122.59171680747045,55.33882942176221],[-122.5917119362612,55.33891001080303],[-122.59162573386197,55.33943571309607],[-122.59165882696864,55.33979089756678],[-122.5917207987074,55.34001569746109],[-122.59189371027128,55.34044757532654],[-122.59215643031969,55.34089311725796],[-122.59223397413342,55.34105107370076],[-122.59249945457196,55.34137112242191],[-122.59268389856281,55.34155105730306],[-122.59291258246309,55.341745653592945],[-122.59312020334937,55.341862315647845],[-122.5932619287016,55.341916636623004],[-122.59338057095897,55.34194005643353],[-122.59364164907053,55.34196288021777],[-122.59414692607722,55.34197443121458],[-122.5942082789663,55.34197386363517],[-122.59442318917638,55.341934884070376],[-122.59452516342165,55.3418984274821],[-122.59500762142912,55.34168960909441],[-122.59532556794441,55.34157832358104],[-122.59548287878451,55.341542255091966],[-122.59572854047524,55.34146711491587],[-122.59600631760682,55.34140966751829],[-122.5961624879155,55.34138702074093],[-122.59644337600308,55.34131620362671],[-122.59694692980088,55.34113822437536],[-122.59761340442763,55.340834634257504],[-122.59807033595574,55.340669954183696],[-122.59836069849341,55.340720473964545],[-122.59834497093964,55.34076601173705],[-122.59831309975196,55.340792050067684],[-122.59829691720905,55.34081963726128],[-122.59826540596235,55.34086474470211],[-122.59826479769366,55.34091854263212],[-122.59827769338831,55.34111621410582],[-122.59827738926049,55.34114311307156],[-122.59826190708249,55.341232381826835],[-122.59826084390754,55.341268229184635],[-122.59830692276383,55.341331147928635],[-122.59840126305815,55.34143125873764],[-122.59855750587661,55.34154763178495],[-122.59868259978387,55.341611583259485],[-122.59874552635445,55.341639084752394],[-122.59885644961528,55.341683590448326],[-122.59890237840773,55.341701659433554],[-122.59898184808313,55.3417206426551],[-122.59913976322808,55.341747369672746],[-122.59918720989849,55.34174754175813],[-122.59926425145585,55.34174852045199],[-122.5994071982247,55.341695238571816],[-122.5994542842474,55.341676341434855],[-122.59953511947197,55.34163257796447],[-122.59965970219636,55.34163260979953],[-122.5997083630007,55.34164178385616],[-122.59975474769723,55.341677803097625],[-122.5997861072495,55.34170444378837],[-122.59986315076524,55.34182202016587],[-122.59991150880775,55.3418580931152],[-122.59997322227248,55.34187659182303],[-122.59999961144712,55.34189188566618],[-122.60012967944657,55.3419671824868],[-122.60006523934787,55.34219077461149],[-122.59999999804931,55.34223720563551]]],[[[-117.84036248720119,52.272586028926696],[-117.84043670668854,52.27390999967265],[-117.83408616147165,52.2764592510469],[-117.82894283259097,52.27832853327529],[-117.82409875608329,52.28048742353482],[-117.8223162854379,52.28224526433502],[-117.82107383009856,52.286683938505824],[-117.8224648089094,52.28862209583661],[-117.82124477103211,52.29084131642789],[-117.81304616765634,52.290649362389246],[-117.80018509147283,52.29079490294542],[-117.79364666236256,52.29220817581448],[-117.78990708832471,52.294759265902655],[-117.79110568449482,52.29607246805695],[-117.79079846445795,52.30062831908101],[-117.78853564142781,52.30489102012571],[-117.78487492269353,52.30818349582136],[-117.78037830364492,52.312441180155155],[-117.77644145092647,52.31430808200303],[-117.77175560748627,52.3180001346709],[-117.76719587563524,52.317705614563216],[-117.75749652716931,52.31813558155724],[-117.74853903555668,52.31816741838689],[-117.74395162400532,52.319866656108694],[-117.74299082389663,52.32379184537459],[-117.74406666069594,52.32982652641336],[-117.7412400555333,52.333292691595204],[-117.73739099931747,52.33737814307408],[-117.73550271388446,52.3409632427481],[-117.73574471941077,52.34432428865102],[-117.73712749734915,52.346603798503764],[-117.72848122377314,52.354833030575875],[-117.71688675935218,52.357132544083136],[-117.70651195152308,52.359551238453896],[-117.70516673302173,52.36398712313317],[-117.71083547818591,52.3668503997408],[-117.7202442205681,52.368529182462254],[-117.72328484067428,52.37389090008912],[-117.73161698889001,52.38324885262022],[-117.7276292841294,52.39017924692073],[-117.72825835254189,52.39445275261464],[-117.73439307130431,52.396694256379554],[-117.74155800414684,52.40098063263385],[-117.75103547184348,52.40789789759982],[-117.75633519859497,52.41172226906026],[-117.76408207099577,52.41276812423316],[-117.78249645089258,52.41099551518295],[-117.79268575924009,52.41028021438006],[-117.80612036747581,52.41298694375694],[-117.81060076963618,52.414759785973104],[-117.81702176831485,52.41716615642966],[-117.8262798679258,52.41752684371522],[-117.83675247464822,52.41703752844054],[-117.84124168486456,52.41596435044884],[-117.84693805303151,52.41477914061351],[-117.8536569305083,52.41781197445968],[-117.86148511655098,52.420160662151055],[-117.86634727348758,52.42141973197608],[-117.87323444544842,52.42490651969724],[-117.87667538453033,52.42889806339994],[-117.882386313486,52.429362304884656],[-117.89265198603171,52.43091643088106],[-117.89909750935239,52.43314683486066],[-117.90245022750919,52.43400694326875],[-117.90815159262625,52.4357836407489],[-117.91319696309736,52.43789501436162],[-117.91494378443437,52.44239860712137],[-117.91557928791902,52.446267233002054],[-117.9230694748511,52.44690701477813],[-117.93288007894257,52.44822518485621],[-117.93680708721607,52.44943272403021],[-117.94342849996255,52.45154109618486],[-117.94529073552403,52.454106926121256],[-117.94855519227319,52.45821480121134],[-117.95341697116783,52.459983017798535],[-117.95621451220414,52.46152370852695],[-117.96162523648529,52.46551206319736],[-117.96796941328469,52.468880546402744],[-117.97020238062586,52.47304412188118],[-117.96953078653485,52.47884646319005],[-117.97101903378108,52.481124579475264],[-117.97410160377072,52.48289762919634],[-117.97896257065567,52.48461027496734],[-117.98129203361674,52.48922008801487],[-117.98277799188128,52.49429269853359],[-117.98426742302132,52.49617408417911],[-117.98529095917442,52.49816483187341],[-117.9887655182815,52.498169066699454],[-117.99362814058081,52.49765984290643],[-117.99947743309362,52.49624043833647],[-118.00040093824045,52.49630525711637],[-118.00210173680448,52.495865837810605],[-118.00467224527213,52.49434699052749],[-118.00543407205781,52.49384561981531],[-118.00712298849766,52.489807923687984],[-118.0085827273464,52.48731565373004],[-118.01023951887967,52.48488038376374],[-118.01199162718642,52.48233096201898],[-118.01400803661816,52.480353604152256],[-118.0149635500299,52.47944814790089],[-118.01714595763157,52.47793284498451],[-118.0185168377907,52.47583258225304],[-118.02081159934276,52.47363233763391],[-118.02242746904678,52.47244683456322],[-118.02451842511744,52.47149931201145],[-118.02574209122146,52.47082543824718],[-118.02679947663006,52.46968889963281],[-118.026455720925,52.46866467904764],[-118.02528811378664,52.46688382317448],[-118.02510538464091,52.46643018413319],[-118.02383000609261,52.46498989759386],[-118.02236332412139,52.463780652611234],[-118.0209957224947,52.462517847160484],[-118.02047378646799,52.46085750420295],[-118.02323995044505,52.45843136895131],[-118.02635753893752,52.457544354935976],[-118.03028699169715,52.45723763289717],[-118.03562812306482,52.45699848213359],[-118.03955729810076,52.457091887824646],[-118.04366698710334,52.457011996403835],[-118.04602161866005,52.45663555251451],[-118.04920378890114,52.45643653669241],[-118.05163960157482,52.45634191683927],[-118.05614619025262,52.45604064970833],[-118.05708965248753,52.455592641299866],[-118.05568949362538,52.45169922952757],[-118.05277785691585,52.44779913362909],[-118.05049581501007,52.44578642772602],[-118.04864675953236,52.44479943333928],[-118.04511163211114,52.44402715494977],[-118.04250758503976,52.44343321403837],[-118.03737694895874,52.44270789413177],[-118.0349596002397,52.44222755890501],[-118.03310029577996,52.441298234274065],[-118.03260531709938,52.43901258602253],[-118.03350312408503,52.43657397983107],[-118.03552336321876,52.43407945018397],[-118.03582368715439,52.43334034704338],[-118.03701749984829,52.430503576252704],[-118.03744454018798,52.428282454607746],[-118.03766895835524,52.42651384930561],[-118.0382730674985,52.42469633547574],[-118.03841225503167,52.42298730440899],[-118.03940146432522,52.42077154185013],[-118.0419606283027,52.41920178017433],[-118.0458142599262,52.41792451556845],[-118.04921152628253,52.4168690432821],[-118.05157600083082,52.415466783244284],[-118.05159755343561,52.41455003234816],[-118.05110107598509,52.41226887266502],[-118.04966054144604,52.409403967808245],[-118.04795309551909,52.40654099532341],[-118.04669472922872,52.40453457788789],[-118.04597643713795,52.4032127618661],[-118.04602739383448,52.40319765495433],[-118.04510743964448,52.402844519411666],[-118.04390370425098,52.40215375287985],[-118.04346986521206,52.40090673928065],[-118.04272110471791,52.40044971583488],[-118.04229313775971,52.400110638941484],[-118.04196611525337,52.39972660028445],[-118.04187372918314,52.399555548438485],[-118.04175805583925,52.3993902321867],[-118.04167319281572,52.39921856925573],[-118.04164160013711,52.399039288486115],[-118.0415776803024,52.398864553180516],[-118.04145621486794,52.39870052565082],[-118.0413308864329,52.39853736034193],[-118.04119752224808,52.39837758597294],[-118.04114965070706,52.398206209937854],[-118.04135914051547,52.398115145263525],[-118.04127640606544,52.39812186465603],[-118.04099581672317,52.398096928216304],[-118.04072969637919,52.39802391011156],[-118.040467396037,52.39793028905396],[-118.04020702795012,52.39783624068755],[-118.03994121946754,52.39776155439778],[-118.03966107607548,52.397724236269525],[-118.03937335210944,52.397707829592186],[-118.0390778706083,52.3977032974896],[-118.0387787017571,52.39770866374077],[-118.03848133141258,52.397724305722626],[-118.0381844478533,52.39774730849429],[-118.03789374188965,52.39777694452688],[-118.03761183800074,52.3978190348764],[-118.03734081623216,52.39789232264076],[-118.03707452536506,52.39798004095449],[-118.03680916218725,52.39806275067384],[-118.03653523290886,52.39812174009059],[-118.03625259261723,52.39813782163035],[-118.03596275846489,52.398112805247806],[-118.03566819328339,52.39807335690072],[-118.03537318457344,52.39804628624492],[-118.0350803254467,52.39804756503957],[-118.03478733283791,52.39805954627157],[-118.03449330522616,52.39807710502626],[-118.03420069442923,52.39809700773406],[-118.03390635717062,52.398116231352176],[-118.0336145708257,52.39813168601862],[-118.03332047105886,52.39813964358954],[-118.03302854210409,52.398135900352905],[-118.03273543436669,52.39811854710663],[-118.03244387787068,52.39809283466737],[-118.03215059721398,52.39806643420644],[-118.03185993910064,52.39804586305481],[-118.03156721579056,52.39803642091423],[-118.03126328034932,52.39803749601498],[-118.03096407633248,52.39805299284343],[-118.03068592543302,52.398094756837224],[-118.0304699639743,52.398200592021816],[-118.03029804076944,52.39835852734713],[-118.03011051546463,52.39850073177239],[-118.02992136863317,52.39864168717109],[-118.02969401679437,52.398748992974355],[-118.02940565053588,52.398805844175094],[-118.02909671457274,52.39884379694701],[-118.02882998205588,52.39890382443915],[-118.02867877931722,52.39902991052048],[-118.02864879963786,52.399221319633156],[-118.02858013941673,52.39940159926088],[-118.02839263804712,52.399533641209025],[-118.02815468634402,52.399648111132095],[-118.02793236481105,52.399768169694866],[-118.02781570055386,52.39992766137055],[-118.0277819342017,52.39999979023924],[-118.02773402759831,52.400108172472535],[-118.02761833213859,52.40028238707018],[-118.02738360761496,52.40033954480804],[-118.0270747202589,52.40032729125477],[-118.02677418637461,52.4003398711069],[-118.0264898768703,52.40039473926749],[-118.0262096049063,52.400457781687486],[-118.02592767374301,52.400499834699595],[-118.02564286912268,52.400487549003316],[-118.02535392092717,52.40043774054013],[-118.02506349023218,52.40040588790182],[-118.02476926648681,52.40038448564738],[-118.02447649544885,52.400385176339235],[-118.02418669257324,52.400409770155775],[-118.02389806547394,52.400447972591174],[-118.02361205908093,52.4004920045339],[-118.02333806264545,52.4005611134096],[-118.02305484951597,52.40059010257247],[-118.02275762552658,52.40058484156384],[-118.02246471490903,52.40059623923969],[-118.02217235714429,52.40062459598378],[-118.0218952506515,52.40068051850378],[-118.02162773740467,52.40075458296889],[-118.02136567541001,52.400839175696866],[-118.0211115142716,52.40093108126579],[-118.02086394347103,52.40102738458354],[-118.02061951077056,52.40112672859449],[-118.02037821614014,52.40122911331749],[-118.0201383367597,52.40133384239454],[-118.01990018066186,52.40143925843812],[-118.01966323108313,52.401548141605],[-118.01944118584693,52.40166651744692],[-118.01930122901369,52.40182157197598],[-118.01911016845197,52.401942643374625],[-118.01885254543447,52.402033177875566],[-118.0186289780852,52.402149750798685],[-118.01841200088829,52.40227072172758],[-118.01819481373802,52.40239281498844],[-118.01796586062348,52.40250844686892],[-118.01775567654568,52.402632710083374],[-118.01761446793809,52.40279444548613],[-118.01747622534376,52.402950185188494],[-118.01720189723162,52.402961155688274],[-118.01700421753452,52.40281891583676],[-118.01672712973858,52.40280488520182],[-118.0164546265512,52.40287577016945],[-118.01617860287826,52.402935699076146],[-118.01588964023483,52.4029755567568],[-118.01559929800733,52.403002909240065],[-118.01530312569557,52.40301180885995],[-118.01502155501775,52.40297207766088],[-118.01475282510873,52.40289318776242],[-118.0144921374663,52.4028108990911],[-118.01423431556401,52.40272316686236],[-118.01397628752164,52.4026365478856],[-118.0137183649426,52.40254936696041],[-118.01345533370355,52.40246973878037],[-118.01317911963426,52.40241119420428],[-118.01288878908163,52.40237874982233],[-118.0125907292847,52.402348027534984],[-118.01229277435709,52.40231674311381],[-118.01209507131261,52.402214545015056],[-118.01203751539258,52.40202611903928],[-118.01202871381163,52.4018444512841],[-118.01198544086475,52.40166886082674],[-118.01187343120992,52.40150432000583],[-118.0117308159599,52.40134499492272],[-118.011584128105,52.401187653760196],[-118.0114230865484,52.40103777804811],[-118.01126032182324,52.400887214497835],[-118.0111641903661,52.40071699977439],[-118.01108479171126,52.40055640542884],[-118.0109486736802,52.400372148864356],[-118.01081568985391,52.40022082425655],[-118.01067591112066,52.40006620550322],[-118.01055857504727,52.40000001112756],[-118.01045624842031,52.39994274068293],[-118.01025704944789,52.39980884718202],[-118.01011371948762,52.399653422755605],[-118.01004088758425,52.39947747759617],[-118.01004610248435,52.39930016080951],[-118.01008333819388,52.39911997355539],[-118.01010197694697,52.39894019006848],[-118.01011136783475,52.398760336682656],[-118.01013183329889,52.39858068830066],[-118.01015678658923,52.39839682816888],[-118.0102467027438,52.39823212778322],[-118.0104505060129,52.39810235608595],[-118.01067317767452,52.397980664529136],[-118.01089360663211,52.39786106504458],[-118.01111251578882,52.39773967261092],[-118.01132107378912,52.39761418089212],[-118.01149078401109,52.39746852568134],[-118.01164020942605,52.39731243596847],[-118.01182685715605,52.397175277914435],[-118.01203454972517,52.39703450016167],[-118.01217251320132,52.396900181462584],[-118.0122904324227,52.39674418174749],[-118.01232458476757,52.39657055020419],[-118.01228956337094,52.396390447314225],[-118.01225981904821,52.396211845775234],[-118.01228555442792,52.396033680232726],[-118.01240004697598,52.395925953738356],[-118.01244178773288,52.39576130240437],[-118.0124423312509,52.39560904179697],[-118.01238846396167,52.395470516100175],[-118.0123748362085,52.39527496771303],[-118.01241885390135,52.39509807305156],[-118.0124000825497,52.39492021973522],[-118.01234798257357,52.39474233113631],[-118.01228836358051,52.39456504255652],[-118.01222487928541,52.39438862423617],[-118.01208918572503,52.39423203126356],[-118.0118983578981,52.39409307569874],[-118.01171332828886,52.39395282327109],[-118.0115302327605,52.39381213538842],[-118.01138305405654,52.393657573202844],[-118.01126772064424,52.39349111205042],[-118.011112091415,52.39334216618697],[-118.01091240366621,52.39321105326676],[-118.01077164614394,52.39305186115401],[-118.0106754312967,52.39288219747837],[-118.01058428627229,52.39271514899952],[-118.01044322156051,52.3925576227221],[-118.01036622462549,52.39238421337052],[-118.01038992994022,52.39220703531894],[-118.01042345731965,52.39206664497734],[-118.01032655662863,52.39189073301936],[-118.01019471832427,52.391683636343586],[-118.01008764153781,52.39151266205961],[-118.01002585948333,52.39134707157995],[-118.00998668233098,52.391139612967514],[-118.00996588717754,52.39096274630653],[-118.00992828889429,52.390796569302346],[-118.00992411763164,52.390629884675235],[-118.00984336684321,52.39045677468134],[-118.00979870040695,52.39027882797851],[-118.00977283441397,52.39009936365112],[-118.00977470441948,52.38992011790468],[-118.00978968395184,52.38974008070725],[-118.00979348491822,52.38956040870428],[-118.00979739029864,52.3893801753047],[-118.00979570813051,52.389200115580216],[-118.00975600898661,52.389025336492715],[-118.0096353877829,52.388837631482176],[-118.00955180607873,52.38868971302139],[-118.00948641062293,52.38851371862344],[-118.00944008976947,52.388344682190635],[-118.00933231427449,52.38811780998955],[-118.00924592993037,52.388014823363186],[-118.00913983478377,52.38782868916708],[-118.00891623535145,52.38771678482594],[-118.00877815348697,52.387583151503186],[-118.00867335684626,52.38745971400196],[-118.00860373889746,52.38735619699684],[-118.00851721786808,52.387263913001156],[-118.00842926051524,52.38711964387886],[-118.0083243916066,52.387016507564745],[-118.00808152057226,52.386759435366976],[-118.00787372670214,52.38652283590809],[-118.0078007470062,52.38636775052179],[-118.00773120924292,52.38624392244084],[-118.00762480563486,52.38608935278267],[-118.00753857127762,52.38597565257662],[-118.00743525328815,52.38589405705456],[-118.00736564083785,52.385790539184484],[-118.00729413526159,52.3856772966493],[-118.00715319806525,52.385439673097224],[-118.00706381732574,52.38524339977472],[-118.00702599042394,52.385088485729746],[-118.00695480673974,52.384943676729094],[-118.0068656058205,52.38472654913993],[-118.00681273137016,52.38460275213627],[-118.00668953512616,52.38445886180092],[-118.00651815152273,52.384325179663094],[-118.00632415420223,52.384153833704254],[-118.00614818488793,52.384024906159254],[-118.00614786479058,52.383837610200075],[-118.00609580398529,52.383659717303736],[-118.00602087570329,52.3834853163834],[-118.00586382061195,52.383324418954594],[-118.00572856176403,52.38317574037932],[-118.00555581073715,52.38302955190764],[-118.00537522991193,52.38288564689978],[-118.00516684493441,52.3827618145881],[-118.00492454991797,52.38266101732678],[-118.00466738541775,52.382570482417755],[-118.00441377504116,52.38248075207139],[-118.00415813043635,52.38239200865132],[-118.00390014139994,52.382305918432365],[-118.00363990908915,52.382221937851114],[-118.00335849709336,52.382152277807265],[-118.00316657272333,52.38202957904054],[-118.00305578741902,52.38185890567626],[-118.00291092251851,52.3817022300647],[-118.00271089882378,52.38157332954938],[-118.00248890304704,52.381453063057435],[-118.00226690850813,52.38133279613022],[-118.00205957692573,52.3812033889646],[-118.00182340375157,52.38109962276547],[-118.00156227557223,52.381040394391654],[-118.00139477236435,52.38101527462749],[-118.00123695322574,52.38100774672597],[-118.0010919681239,52.38099095253556],[-118.0009194355567,52.38095307444314],[-118.0007741794207,52.38092779532023],[-118.00067683622488,52.38088383446188],[-118.00067349081037,52.380881915384265],[-118.00067321948904,52.38087343084814],[-118.00066987570051,52.38079197150974],[-118.00066760805552,52.380694792225086],[-118.00062223616015,52.38058053461355],[-118.00054881201598,52.38049761354131],[-118.00038889580976,52.38048147354559],[-118.00024551882792,52.38049581852333],[-118.00012295028205,52.38048790178005],[-118.00000038012159,52.38047999381809],[-117.99979671353888,52.38043036672457],[-117.99950460648309,52.38047785469954],[-117.99922263599312,52.380530555753516],[-117.99895400335778,52.38060110127246],[-117.99870294698835,52.3806965535597],[-117.9984358282633,52.38076889948741],[-117.99814579234986,52.38080524582934],[-117.9978519484402,52.380802401567365],[-117.99755993076018,52.38079969191993],[-117.99728967339229,52.380868993309875],[-117.99702789201494,52.38095241861468],[-117.99676459389156,52.38103404168339],[-117.99652021899523,52.381133336512285],[-117.99628170163226,52.38124093340248],[-117.99602864029121,52.3813272164003],[-117.99573980379121,52.38136702463832],[-117.99544797393602,52.38139308694098],[-117.99515545668136,52.38141290050307],[-117.9948613608894,52.38142131330361],[-117.994568797299,52.38140163595697],[-117.99429050072087,52.381345146693164],[-117.99404416815746,52.381246301261015],[-117.9938218859881,52.38112769335222],[-117.9935545654459,52.380893140580206],[-117.99354191418925,52.38088155174242],[-117.993460727528,52.380711218071596],[-117.9934462144586,52.38053083270778],[-117.99347760462118,52.38035249630207],[-117.99355255144654,52.380178862383026],[-117.99354341695347,52.37999941785069],[-117.99349465479757,52.37982399052698],[-117.99321485260214,52.37976570584398],[-117.99296547937611,52.379693163559736],[-117.99290951176518,52.37951667742019],[-117.99295982705473,52.379356005077135],[-117.99277861862149,52.37920582314935],[-117.99255400443897,52.379089866182035],[-117.99229298307701,52.37901031522558],[-117.99201350007718,52.37895035244128],[-117.99172824475681,52.37891142483367],[-117.99143350121403,52.37893332123206],[-117.99115919235506,52.3789250515276],[-117.9911089240307,52.378747830252514],[-117.99113139153347,52.37856774768462],[-117.9911267139895,52.37839424252469],[-117.99097793627335,52.37823897369469],[-117.99072411049153,52.37814072859418],[-117.99046033752889,52.37811569496092],[-117.99017938810564,52.378143064807425],[-117.98992354928143,52.3780655544173],[-117.98974721686778,52.377919088739205],[-117.98959651503742,52.37776424396191],[-117.98944164047926,52.3776119258828],[-117.98925664989032,52.37747219731001],[-117.98908987598135,52.37732413584471],[-117.98891903244495,52.37717804856938],[-117.98872173007622,52.37704479488426],[-117.98851811505492,52.376915616305084],[-117.98830432434414,52.37679137341923],[-117.98806345170242,52.376683305255774],[-117.9877922311981,52.37671810286227],[-117.98753504598379,52.37679675257524],[-117.98734724692645,52.37692025486645],[-117.9870448916647,52.37694330889081],[-117.98678609604393,52.37687178637048],[-117.98655654578019,52.37675265769758],[-117.98635518181712,52.37662137431378],[-117.98614682104446,52.37648790890071],[-117.98592792951341,52.37637120496168],[-117.98564331529796,52.376378561364504],[-117.98536710584686,52.376440093457376],[-117.98508666123159,52.376494553247355],[-117.98480773098484,52.37655081416091],[-117.98453303596906,52.37661413715492],[-117.98425524647163,52.376664275297074],[-117.98396265981272,52.37663497276971],[-117.98370177390161,52.37655484100715],[-117.98344886606063,52.37646172309535],[-117.98318422381062,52.37638188926395],[-117.98289940917266,52.37634071230723],[-117.98262074477977,52.37628642246484],[-117.98235344434747,52.37621092414185],[-117.98206846710977,52.376160708090644],[-117.98180420161871,52.37608879435445],[-117.98157577006695,52.37597367629031],[-117.98137452801623,52.375841831753],[-117.98122600376969,52.375685427428486],[-117.9811396006826,52.375513590567536],[-117.98108958539876,52.37533525070397],[-117.9811114692279,52.37515851099031],[-117.98114097412771,52.37498061183692],[-117.98108333823626,52.37480343131021],[-117.98100852644811,52.374629013094044],[-117.98099375479778,52.374450300489066],[-117.98096984730445,52.37427094540352],[-117.9809514209008,52.374091979326565],[-117.98098123841758,52.373912404921384],[-117.98093843253585,52.37373512405233],[-117.98086414211555,52.373557925568136],[-117.98070347464476,52.37341704123607],[-117.98044704148873,52.37332310178705],[-117.98019160358415,52.37323375257358],[-117.97993126589152,52.373150823194365],[-117.97966858106449,52.37307055543569],[-117.97940141052305,52.37299448878286],[-117.97914363023422,52.372907790536225],[-117.97889586418711,52.372807119379424],[-117.9786236008276,52.37275834328891],[-117.97832428641618,52.3727652202514],[-117.97801612958132,52.37275005604098],[-117.97785673840076,52.3726222253352],[-117.97793841883056,52.37245245778546],[-117.97811456175607,52.37230221230108],[-117.97821702670899,52.37214008695805],[-117.9781076738282,52.37197229530491],[-117.97801194556442,52.37180093565168],[-117.97794456583449,52.37162646073434],[-117.97789791026857,52.371450047624315],[-117.97779435533798,52.371280960717435],[-117.97774790873291,52.37110343370888],[-117.97767849581135,52.37092994557622],[-117.97754169316231,52.37077040270445],[-117.97741861812138,52.37060673940215],[-117.97729147500897,52.370445041087216],[-117.97711480064862,52.37030078296836],[-117.9769093200364,52.37017201795904],[-117.97667827355086,52.37006121813558],[-117.97642755909418,52.36996653611181],[-117.9761650033428,52.36988570779468],[-117.97588977737911,52.369823170443375],[-117.97561199598599,52.36976440835983],[-117.97535658916107,52.36967504827093],[-117.97511892404385,52.3695699862929],[-117.9748924753304,52.36945442887635],[-117.97468272831827,52.369328738688445],[-117.97448967968045,52.369192933637464],[-117.97432288525171,52.36904540247852],[-117.97417816771026,52.368888689521604],[-117.97404717754058,52.36872785650816],[-117.97390063480194,52.36857101634908],[-117.97372998221363,52.36842434441423],[-117.97352420936714,52.36829723945681],[-117.97329114629277,52.36818741969666],[-117.97303340699887,52.3681007075715],[-117.97278015555996,52.368009793403836],[-117.97254485251666,52.36790207285465],[-117.9723138293924,52.36779126415705],[-117.97208108345322,52.36767977570409],[-117.97187307558458,52.36755476846859],[-117.97168635946251,52.36741487508449],[-117.97151764939946,52.36726777418808],[-117.97136694529576,52.36711346585534],[-117.97120230811947,52.366964390620765],[-117.97104002040797,52.3668126530883],[-117.970893019933,52.36664844690193],[-117.97064629633856,52.366710851640114],[-117.97043620755092,52.36684463111592],[-117.97028136196509,52.36699972946144],[-117.97010912211596,52.3671389527412],[-117.96983566816877,52.36720570965698],[-117.96954731838042,52.36724322563863],[-117.96926842768063,52.367299449634444],[-117.96900395771958,52.367377542396675],[-117.96872187391577,52.36742113281061],[-117.96842357756543,52.36741282582914],[-117.96816301294695,52.36747991470639],[-117.96791468312573,52.36758056276964],[-117.96764607995168,52.36765103658281],[-117.96736979743142,52.367713078722204],[-117.96710067112986,52.36778634016158],[-117.96682741666548,52.36785197618571],[-117.96656596859086,52.36793365855135],[-117.96632473138826,52.36803593360854],[-117.96607247353153,52.3681278480224],[-117.9657892372227,52.36817755258587],[-117.96552689438828,52.36825409812197],[-117.96525990206767,52.36832580710457],[-117.96497457040486,52.368366906928586],[-117.96468380395648,52.368397474252916],[-117.96439366201089,52.368424699538586],[-117.9641050910337,52.368463315742865],[-117.96386457498801,52.36856168300068],[-117.96363262468962,52.368673624438415],[-117.96335904766508,52.36874091845496],[-117.96308870592321,52.36881070224995],[-117.96281131223309,52.36886870385869],[-117.96252048381578,52.36888967619771],[-117.96223012883273,52.36891800983437],[-117.96194427027511,52.368961882154004],[-117.96168301294324,52.36904244860282],[-117.96144489234324,52.36914774741884],[-117.9612410801628,52.36927742709388],[-117.96104405397786,52.36941040335293],[-117.9608535020371,52.36954834241852],[-117.96061871771562,52.369655568650494],[-117.96036351397659,52.36974331386889],[-117.96010637687846,52.36983149281864],[-117.95988950157687,52.36995180500055],[-117.95962802597901,52.370033480526324],[-117.95936968369055,52.370118189500495],[-117.95911739884622,52.37021008866112],[-117.95884098428441,52.3702726628139],[-117.95855155483679,52.37029597976625],[-117.95826034126175,52.37028926870455],[-117.95797470234643,52.37024288701615],[-117.95769344748305,52.37019286508211],[-117.95742398416594,52.370119409484644],[-117.95714539202329,52.37006505827406],[-117.95686476480122,52.370011693059496],[-117.95657704408261,52.36997644547569],[-117.95628572329746,52.3699505414459],[-117.95599310219555,52.36994147009183],[-117.95570845947294,52.36989967384468],[-117.95542091357993,52.369932699662165],[-117.95512751398914,52.369937670691094],[-117.95484717694059,52.369991505318936],[-117.95457660503307,52.370062382984486],[-117.9542912517141,52.370103456506875],[-117.95403576870774,52.37018271198908],[-117.95388461188115,52.370337481009024],[-117.9536013954195,52.37037701379399],[-117.95336131698441,52.37048272120819],[-117.95307318976823,52.37050893156442],[-117.95281717975386,52.37059097316608],[-117.95261020095974,52.37071760333376],[-117.95233570448389,52.3707797367171],[-117.95205958855705,52.370840628538886],[-117.95177401905293,52.370882809597994],[-117.95148285955834,52.370905420428095],[-117.95119049227235,52.370885072360196],[-117.95089776240674,52.37087654059226],[-117.95060978897688,52.37091178196105],[-117.95032087333145,52.370932289578384],[-117.95007342028694,52.37102789183787],[-117.94978528743337,52.37105409402665],[-117.9494999647852,52.371006025366135],[-117.94922633617003,52.37095482561791],[-117.94899556531178,52.37084285705907],[-117.9487281504177,52.37076838588572],[-117.94847890135871,52.3706760071954],[-117.94823262950378,52.370577625167655],[-117.94796506098386,52.37051386442404],[-117.94767097595089,52.370492818937905],[-117.94737788178466,52.370476363805054],[-117.94708713784526,52.370457246377015],[-117.94679529842684,52.3704340984405],[-117.94650841655437,52.37039437988866],[-117.94622153688032,52.37035465171714],[-117.94593110662426,52.37033386524468],[-117.94564276629863,52.37030193178852],[-117.94535165868919,52.37027488660514],[-117.94509620796424,52.37018601242681],[-117.9448193529238,52.37013232024918],[-117.94455581294656,52.37005698025171],[-117.9443725149646,52.36991897285129],[-117.94420367940708,52.36977294630151],[-117.94400054443884,52.36964202285496],[-117.94379099010595,52.36951572449691],[-117.94357726130023,52.36939195102784],[-117.94335058557158,52.369277998251235],[-117.94310636944556,52.36917861881882],[-117.94285327835418,52.36908708706505],[-117.9426001900075,52.3689955458435],[-117.94234475252367,52.368906665526886],[-117.94209411847027,52.36881191822665],[-117.94184849847724,52.36871018133341],[-117.94164036435188,52.368586233788804],[-117.94149597595755,52.36842836634085],[-117.94140201921833,52.36825821713291],[-117.9413389687616,52.368081195327704],[-117.9412321198073,52.36791070701514],[-117.94106909665301,52.36776339155026],[-117.94081497530586,52.36767741498958],[-117.94052890243948,52.36762362818443],[-117.94023885796057,52.367610750875265],[-117.93997894357682,52.36752606547008],[-117.93973537194074,52.367423337635444],[-117.93950443565575,52.36731246364437],[-117.93928206265457,52.367195416290976],[-117.93906428617568,52.36707360701898],[-117.93885486240627,52.36694674709916],[-117.93865765782171,52.36681395978132],[-117.93850075572968,52.36666368153781],[-117.93839157117515,52.366495851817064],[-117.9383111525533,52.36632268902081],[-117.93827442693869,52.36614355503579],[-117.93832571423525,52.3659688602738],[-117.93845765161016,52.365808246015575],[-117.93854892357842,52.36563746715743],[-117.93863471373963,52.36546630607801],[-117.93865180692629,52.365286411075225],[-117.93864300919427,52.36510639892332],[-117.93858910968692,52.36493001207715],[-117.93849710433723,52.3647594261225],[-117.93839747748177,52.364590005599354],[-117.93830354131632,52.3644198533857],[-117.93820970953601,52.3642491486655],[-117.93811384423968,52.36407942127986],[-117.93800842529538,52.36391129322699],[-117.93787769036956,52.36374985751023],[-117.93769078663969,52.363611584124165],[-117.93748107108077,52.363486387525604],[-117.93725893226333,52.363368222230086],[-117.93701497259597,52.36326771581476],[-117.93675467270981,52.36318525036302],[-117.93647677837343,52.363127508114424],[-117.93619079227192,52.36308330004883],[-117.93590282028548,52.363049676104495],[-117.93561061724762,52.36302873628971],[-117.93522033047024,52.3630274648804],[-117.93514923603772,52.36181860654939],[-117.93512207599069,52.36190415104125],[-117.93503604139453,52.36196810457533],[-117.93499260076956,52.36202205823032],[-117.93497885901105,52.3620854129841],[-117.93496674023292,52.36213025942359],[-117.93495284380006,52.362184576955734],[-117.93493889641454,52.362229304864634],[-117.93492499991476,52.36228362238934],[-117.93491120873433,52.36233737859411],[-117.93491198170375,52.36238256465497],[-117.93489818880319,52.362436329763895],[-117.93489896176075,52.36248151582148],[-117.93488699737767,52.36253539945005],[-117.93485812192945,52.36258077398415],[-117.93484448347925,52.36264357628881],[-117.93481576248895,52.36269798801858],[-117.93480197104003,52.36275174419334],[-117.93477492226144,52.36279724613555],[-117.93474620108115,52.36285165784163],[-117.93470337741338,52.36294176018597],[-117.93463257890778,52.363023132251406],[-117.93454471444005,52.36308695792766],[-117.9344734502096,52.3631412271753],[-117.93442990401014,52.36319573297673],[-117.93441564844188,52.3632223774649],[-117.93435925905374,52.363286142066244],[-117.93430099179591,52.36334018958137],[-117.93422931423804,52.3633769366621],[-117.93411133617299,52.36341383868758],[-117.93398036033655,52.36345096216801],[-117.93390639222898,52.36346046997991],[-117.93383409664605,52.363461067990265],[-117.93368798722867,52.363480210834254],[-117.93355502958201,52.36350816917338],[-117.93343872322345,52.363536160761896],[-117.9333077464372,52.36357328348027],[-117.93319018090294,52.36362769766158],[-117.93308931542435,52.36369174369298],[-117.93297388294403,52.363764368433124],[-117.93285865470179,52.36385561986754],[-117.93272657145663,52.3639282019578],[-117.93262555046662,52.36398321036782],[-117.93253930353619,52.36402853513954],[-117.93242147632323,52.3640744726333],[-117.93232030054439,52.36412044356839],[-117.93229065107943,52.36412063139258],[-117.93221866244072,52.364139302803714],[-117.93207087706251,52.364167353329535],[-117.93193974320579,52.364195437283726],[-117.93185334284371,52.364231715425774],[-117.93177998870861,52.36427737069],[-117.93173643796081,52.364331875434054],[-117.93170964261807,52.36438586140715],[-117.9316952795759,52.36441306684913],[-117.93174529312691,52.36421571801147],[-117.93179347431654,52.36403798216641],[-117.93183972277114,52.363860680106875],[-117.93188607456975,52.363682825601956],[-117.93193049533792,52.36350539597583],[-117.9319731942178,52.36332727751506],[-117.93201589107231,52.363149167923986],[-117.93205676234416,52.36297092190368],[-117.93209215091846,52.362792302317764],[-117.93211282037593,52.362613215271686],[-117.93211877089918,52.36243366077324],[-117.93210838323422,52.36225240653826],[-117.93208092654619,52.3620733461175],[-117.93202888450446,52.36189708329708],[-117.93192349459648,52.36172894944024],[-117.93178903163742,52.36156780404005],[-117.9316404217405,52.36141300967761],[-117.93148601790702,52.36125950767118],[-117.9313453448139,52.36110188169778],[-117.93123223567679,52.36093545567164],[-117.93118202528022,52.360759319810775],[-117.93115660930945,52.36057927274321],[-117.93111036607033,52.360401725670336],[-117.93104716017868,52.3602258109329],[-117.93098009212294,52.360050754860985],[-117.9308998189745,52.35987703367568],[-117.93081954647226,52.35970331241172],[-117.93076354607456,52.359528459826606],[-117.93079142106563,52.359350443882185],[-117.93083980987818,52.35917159405314],[-117.93088240357318,52.35899403671604],[-117.93094681220839,52.358818570623676],[-117.93101304870972,52.35864322305862],[-117.93107025484673,52.35846668555082],[-117.93112208412984,52.358289213102424],[-117.93116650248767,52.35811178303569],[-117.93119448029377,52.357933205486766],[-117.93119302188168,52.3577537017321],[-117.93118243012118,52.357573560483935],[-117.9311884875379,52.357393452934915],[-117.9312036781886,52.35721398282863],[-117.93122069536236,52.357034640188836],[-117.93123223246921,52.35685491504284],[-117.93124376947996,52.35667518987089],[-117.93125713302133,52.356495592165714],[-117.93126866983236,52.35631586694182],[-117.93127462299906,52.3561363116202],[-117.93126403129486,52.35595617015607],[-117.93125516088945,52.35577671747439],[-117.9312888256788,52.355597408339996],[-117.93134268796709,52.35541894026358],[-117.93131998585571,52.35524416368068],[-117.9312245858436,52.35507220199355],[-117.93111180578369,52.354904108952766],[-117.9309870217895,52.354740819406445],[-117.93092716328908,52.35456683387199],[-117.93090916356026,52.35438673457176],[-117.93088182056427,52.35420712038168],[-117.93085254756073,52.35402793106714],[-117.93081941267262,52.35384960044311],[-117.93078445155253,52.3536711422845],[-117.93074197562802,52.35349328780911],[-117.93069391686782,52.35331560319454],[-117.93064950979605,52.35313818245094],[-117.930603278287,52.35296062525304],[-117.93055715087308,52.3527825156061],[-117.93049954148697,52.35260642964823],[-117.93039052898645,52.35243802928224],[-117.93032112564707,52.352265633038634],[-117.93034383295358,52.35208555864711],[-117.93042811677358,52.35191259930667],[-117.93043386205593,52.35173416605419],[-117.93036863609562,52.351559235994756],[-117.93029031299362,52.35138507944685],[-117.93022153905781,52.351209341834036],[-117.93014300807943,52.351036298863335],[-117.93000806146799,52.35087793884243],[-117.92985970386822,52.350722027208356],[-117.92972507211178,52.35056200069038],[-117.9295926876219,52.35039986516072],[-117.9294642696807,52.35023631837393],[-117.92941345158562,52.35006352147101],[-117.92941940993362,52.34988397429219],[-117.929436955258,52.349701842141755],[-117.92943743447955,52.349521912345786],[-117.92943233102031,52.34934215236558],[-117.92942905391457,52.34916251988244],[-117.92942588222917,52.348982326057616],[-117.92943184037621,52.34880277872885],[-117.92946357729328,52.348623894047996],[-117.92950079111708,52.348445400807286],[-117.92952876954892,52.348266822334175],[-117.92955502687258,52.34808755499222],[-117.92956891670543,52.347905176439404],[-117.92974799362906,52.347769301182595],[-117.92998800355957,52.3476636407451],[-117.93016436572998,52.34752250248143],[-117.93038799426945,52.34740553364003],[-117.93057004185547,52.347263663526924],[-117.93066292297404,52.34709412967021],[-117.93069465186151,52.346915253327495],[-117.93070070981773,52.34673514432921],[-117.93070849022996,52.3465557152172],[-117.93073108754788,52.34637620127827],[-117.93077012205599,52.34619782591414],[-117.93083879160937,52.34601927197361],[-117.93102067283976,52.34588810447278],[-117.9312834142906,52.345799257057955],[-117.93150984536597,52.34568700471633],[-117.93167915404814,52.34553408918286],[-117.93174818336527,52.34536344930685],[-117.93175220152439,52.34518432628366],[-117.93173655015725,52.345001573425165],[-117.93174088104489,52.34482078421018],[-117.93178710913016,52.344643479556034],[-117.93185890250916,52.344467959644206],[-117.93195359866526,52.34429855187434],[-117.9321014050924,52.34414187829868],[-117.93228666745881,52.34400248756393],[-117.9324855976893,52.34386912366283],[-117.93266892621618,52.34373016613573],[-117.93273502723949,52.343555376877305],[-117.93275986030957,52.34337375322065],[-117.93283232337032,52.34320449000127],[-117.9330297348262,52.34306933146883],[-117.93321274556254,52.342932039145325],[-117.93332892769513,52.342766387082555],[-117.93336074768375,52.342586948091956],[-117.93332750756178,52.34240916902751],[-117.9332834151928,52.34223007274293],[-117.93315333570189,52.34207543890155],[-117.93298313359577,52.34192759930841],[-117.93289067610137,52.341759794695044],[-117.93283876056847,52.3415829681636],[-117.93271218254802,52.34141955132894],[-117.93252111305937,52.34128435351677],[-117.93239156080826,52.34112693882365],[-117.9322510553369,52.340968750185766],[-117.93207710508378,52.34082120659357],[-117.93189084086688,52.34068014155311],[-117.9316607449678,52.3405754982627],[-117.9313814412735,52.34050635049123],[-117.93110365004169,52.340439004596654],[-117.93088868661864,52.34033259984849],[-117.93079222612252,52.34015661471915],[-117.93065793824549,52.33999491292538],[-117.93051551153248,52.33983715586646],[-117.93042134754873,52.33966866018777],[-117.93037309477933,52.33949209619326],[-117.93033846152888,52.33931196087283],[-117.93029234978741,52.33913384924923],[-117.93024644746984,52.33895462384906],[-117.9301907890314,52.33877810205174],[-117.93010241895634,52.33860832236415],[-117.92993641614036,52.3384579441434],[-117.92971849654198,52.338337789713805],[-117.92947808880223,52.33822904450378],[-117.9292659635967,52.33810759671603],[-117.92913246830614,52.33795158909209],[-117.92903742797643,52.3377779571746],[-117.9289048745167,52.33761694190644],[-117.92875453157092,52.33746201346835],[-117.92858832877718,52.337312746918776],[-117.92839290781602,52.3371811804175],[-117.92817317316005,52.33706089542814],[-117.92800665944625,52.336913303052064],[-117.92790134784629,52.336745153404955],[-117.92777073295133,52.33658370293984],[-117.92762018857269,52.336429886640225],[-117.92748733171919,52.336270535727635],[-117.92736433563874,52.33610792881966],[-117.92720403831477,52.33595681533702],[-117.92715590823768,52.33577968817856],[-117.92704548748401,52.335619078606804],[-117.92690105356283,52.33546230274951],[-117.92669473919037,52.33533956655098],[-117.92649171555888,52.33520916143206],[-117.92628858775363,52.335079317264686],[-117.92607507955263,52.33495550831604],[-117.92586757166383,52.334829301833025],[-117.92568297012248,52.334689467486974],[-117.92550864931441,52.33454414079439],[-117.92532008591853,52.33440571680838],[-117.92515938376218,52.334256827760655],[-117.92507156643956,52.33408425487289],[-117.92496392378857,52.33391876337753],[-117.92478971225405,52.33377288310893],[-117.92457610939036,52.33364963259658],[-117.9243346965224,52.333546436069945],[-117.9241126422598,52.33342880422552],[-117.9238903817002,52.33331227676287],[-117.92365111091785,52.33320754026204],[-117.92340735330171,52.333107002928486],[-117.92315363198377,52.33301028186754],[-117.92297765285326,52.33287386099457],[-117.92286324103209,52.33270507703403],[-117.9227331810428,52.33254083162536],[-117.9225661811604,52.332396010787875],[-117.9223174187577,52.33230245950998],[-117.92206062370354,52.33221229071524],[-117.9218257477207,52.332103903148806],[-117.92162875292827,52.331971092269825],[-117.92144214421197,52.33183222803677],[-117.92124729208437,52.33169786909075],[-117.92103595362597,52.33157251206902],[-117.92081209296052,52.33145474607327],[-117.92056527077631,52.331360757314],[-117.9202963238675,52.33128609075985],[-117.92006552525774,52.33117573635272],[-117.91984156549535,52.33105852085471],[-117.9196089454261,52.33094802893542],[-117.91941347514036,52.33081700798304],[-117.91926339920072,52.330660952715135],[-117.91909918468238,52.33051124707063],[-117.91892704315559,52.330364362672235],[-117.91887039557984,52.330193402881],[-117.91900651501186,52.33003988061339],[-117.91896270394705,52.32985966345959],[-117.9187618696589,52.32972769691711],[-117.91856489512611,52.32959488059258],[-117.9184104438882,52.32944246225218],[-117.91821133317502,52.32931118372689],[-117.9180064325704,52.32918119677031],[-117.91781363783296,52.32904584576639],[-117.9176332620636,52.32890346464919],[-117.91745257433469,52.32876274936021],[-117.91725988702761,52.32862684498743],[-117.9170712720738,52.328488959369764],[-117.91687858718794,52.32835305433495],[-117.916661279094,52.32823008569852],[-117.91644569210897,52.328107805685924],[-117.91634732811575,52.327942391671705],[-117.91625162931956,52.327772641501994],[-117.91608550702104,52.32762335593038],[-117.915899666826,52.327480588758384],[-117.91569906064606,52.327347511863344],[-117.91544936192963,52.32731818493495],[-117.91525423391093,52.32718549048692],[-117.91510225643313,52.32702985405474],[-117.9149498596166,52.32687645374784],[-117.91478963998713,52.326725322040176],[-117.9146097026502,52.32658070853358],[-117.91448991061846,52.32642112211542],[-117.91443636741218,52.326243605098995],[-117.91429607997544,52.32608484050628],[-117.91414572571051,52.32593044416731],[-117.91399537084529,52.32577605652469],[-117.91386291196696,52.325615013674835],[-117.91371834994199,52.325459333914964],[-117.91354400109908,52.32531454952569],[-117.9133875482231,52.325163109935104],[-117.91324137359636,52.32500618803403],[-117.91305685491291,52.3248663325415],[-117.91290426524702,52.324714034095855],[-117.91276560420592,52.32455650896382],[-117.91255208122881,52.324433235440644],[-117.91237721769122,52.3242912290143],[-117.91220084341874,52.324147428396905],[-117.91198935871405,52.324023167880505],[-117.91176749259024,52.32390495023518],[-117.9115305474051,52.32379808835609],[-117.91131029941526,52.3236811113353],[-117.91115620827438,52.32352701652619],[-117.9109634602376,52.32339165354757],[-117.91070699682331,52.32330993521017],[-117.91046749835982,52.3232068457388],[-117.91028085780795,52.323068523926004],[-117.91016213892681,52.32290336404701],[-117.9099400740662,52.32278625651574],[-117.90978118937389,52.322638025067626],[-117.90967233159905,52.32246961026737],[-117.90958825034397,52.32229727976229],[-117.90946750162342,52.32213310494762],[-117.90929693624682,52.32198800817019],[-117.90910216630083,52.32185362780668],[-117.90888193480072,52.32173664599928],[-117.90864286844844,52.32163132521488],[-117.90843740617703,52.32150465280735],[-117.90824702373239,52.32136663313911],[-117.90803331988633,52.321244464703895],[-117.90780709619936,52.32112987703388],[-117.90759167364465,52.32100702749792],[-117.90739274030159,52.32087516824158],[-117.90718973730937,52.32074528920632],[-117.90697838929,52.320620457918835],[-117.90677131955793,52.32049254978468],[-117.90652417142869,52.320400757776376],[-117.90627327035688,52.32030926185486],[-117.90604950830601,52.320191466352966],[-117.9058380606619,52.320067194242355],[-117.90563945053964,52.31993366577864],[-117.90540363456373,52.31983081247252],[-117.9051374473573,52.31975179210778],[-117.90491488914883,52.31963745447956],[-117.9047101800802,52.319506881762415],[-117.90448611286648,52.31939074927374],[-117.90430582133756,52.3192483463742],[-117.90407053549526,52.319142710497886],[-117.90381224142436,52.31905125877422],[-117.90356380611829,52.31895655262438],[-117.90341643035029,52.31880629980847],[-117.90330802799923,52.3186356422204],[-117.90319117289312,52.31847060257625],[-117.90307421301921,52.31830612409937],[-117.90302437662001,52.31812885658042],[-117.90296531207893,52.31795150170443],[-117.90286937268701,52.317783414192995],[-117.90271126359117,52.31763127898195],[-117.90255894392688,52.317477861282846],[-117.90242858766334,52.31731581858875],[-117.90237103623339,52.317140266256686],[-117.90227145121513,52.316971922242644],[-117.90199576700024,52.31692382225403],[-117.90170840119954,52.31687884733997],[-117.90144140190185,52.31680426420917],[-117.90117675175706,52.31672702863279],[-117.90091690472838,52.31664392749999],[-117.90068633953493,52.31653297199255],[-117.90046026401767,52.3164178171817],[-117.90021644540079,52.31631834352844],[-117.89996887422588,52.31621916577186],[-117.89975244985067,52.31610186970524],[-117.89961428384763,52.315942100406794],[-117.89947590914187,52.31578344462234],[-117.89932178435413,52.31562988554586],[-117.89914752342503,52.31548507841993],[-117.89896491749906,52.315345318576036],[-117.89874422143285,52.31523110563224],[-117.89850844753929,52.315128237933884],[-117.89831181158536,52.314994272030845],[-117.8981130382886,52.31486184385245],[-117.89791833525419,52.3147274439697],[-117.89774011935127,52.31458404467489],[-117.8976348742583,52.31441642596953],[-117.89756608391366,52.31424176879208],[-117.89754062563026,52.31406282161621],[-117.8975094836155,52.313884604022746],[-117.89749346317544,52.313704630835744],[-117.89737110628359,52.313549351909664],[-117.89712443739046,52.313455311987546],[-117.89684817459775,52.3133907905172],[-117.89664674932631,52.313262686405274],[-117.89643964138749,52.31313531149178],[-117.89620472359917,52.31302798416218],[-117.89604462089446,52.31287682494853],[-117.89590209442642,52.31272069711179],[-117.8957218590214,52.312578280133394],[-117.89553948627065,52.31243740088646],[-117.89535100963279,52.31229948714262],[-117.89516243012827,52.31216212546967],[-117.89499612682481,52.31201447398502],[-117.89489121253156,52.31184518636933],[-117.89471364804548,52.311698441022216],[-117.8944572610865,52.31163643625309],[-117.8941608749967,52.31162973232745],[-117.89390352627507,52.3115434021581],[-117.89364926399463,52.311450508442285],[-117.89340303490289,52.3113542330692],[-117.89316244899291,52.311247637751435],[-117.89294263035451,52.31112894973194],[-117.892819312013,52.310969082830354],[-117.8927140948138,52.31080145918859],[-117.89250722014421,52.310672963318794],[-117.89231490185998,52.31053590192816],[-117.89207306553337,52.31043597751303],[-117.89179875825666,52.31037101958774],[-117.89150770960636,52.31035565559873],[-117.89121288108339,52.31036034617358],[-117.89092040269036,52.31036237545727],[-117.89063323720379,52.310326410508885],[-117.8903480674002,52.31027986037161],[-117.89006791108041,52.310226331317295],[-117.88979020984151,52.31016958867693],[-117.88951141878823,52.310108823771635],[-117.88922261718065,52.310091354828586],[-117.88892982472194,52.31009505407452],[-117.888634369448,52.31010307023844],[-117.8883414727075,52.31010732038608],[-117.8880470655188,52.310109775547915],[-117.88775391997167,52.31010553896094],[-117.88746245285502,52.31009240109052],[-117.88717210325771,52.31006353385359],[-117.88694242142951,52.30996784599179],[-117.8869144499029,52.30987109194774],[-117.88688943182495,52.30978808664436],[-117.88678178592579,52.3096236703143],[-117.8866257978626,52.30947052673208],[-117.88657561908094,52.30929547829334],[-117.8865855046411,52.30911562278463],[-117.88659356563491,52.30893563904978],[-117.88661815270162,52.30875624779253],[-117.8866663518132,52.30857908438934],[-117.88674342605609,52.30840564708681],[-117.88685797486643,52.30823934765008],[-117.8869074709988,52.30806510093131],[-117.88689911048992,52.30788396326942],[-117.88685503577457,52.30770595827349],[-117.88688316406251,52.30752738447614],[-117.88689831118427,52.30734902696254],[-117.88685809584649,52.307170164601295],[-117.8868788219984,52.30699163033254],[-117.88692347344438,52.30681365780004],[-117.88692605943754,52.3066332891335],[-117.88699218456327,52.30645907332192],[-117.88709974391675,52.30629059454616],[-117.88721751281689,52.30612678714271],[-117.88719575088606,52.3059480929475],[-117.88719265264213,52.305768453265046],[-117.88723365452228,52.30559021515178],[-117.88725651684592,52.30541014271276],[-117.8872384037739,52.305231704805614],[-117.88720548628677,52.30505335503037],[-117.8871931606606,52.304873635565286],[-117.88716410223451,52.30469442842493],[-117.88713129129721,52.304515517256206],[-117.88711145897959,52.304336398624365],[-117.88717424541281,52.30416025993737],[-117.88730685270704,52.304005954084964],[-117.88732778546718,52.3038263056084],[-117.88732286256356,52.30364653744269],[-117.88728254308461,52.30346823601002],[-117.88710195470608,52.303328031983966],[-117.8871096327405,52.303159864850386],[-117.88732647951231,52.30303913004541],[-117.88757378780153,52.302943095196255],[-117.8877991234492,52.30282634147715],[-117.88803986657082,52.302725899435856],[-117.88831195013299,52.30265530130271],[-117.88859530641135,52.30261314591165],[-117.88888832164234,52.30259819132784],[-117.88916827915628,52.302564254595055],[-117.88927936296459,52.302396590906184],[-117.88928204466178,52.3022156602646],[-117.88926606280836,52.30203568430461],[-117.889233349309,52.301856220968],[-117.88908660732592,52.3017031592625],[-117.88888792342611,52.3015707139034],[-117.8886916947164,52.30143505528429],[-117.8884241165117,52.30137394266608],[-117.88819142080081,52.30126506021263],[-117.88802528737794,52.30111684508744],[-117.88788903678382,52.300957188136124],[-117.88776639601882,52.30079397352226],[-117.88766701136996,52.3006250535282],[-117.8875792004629,52.300453570379034],[-117.88748367552984,52.30028379286341],[-117.88746201957973,52.300104545512184],[-117.88743734709058,52.30000012320482],[-117.8874179504791,52.29992653964874],[-117.88731257114983,52.29976002335278],[-117.88719014592128,52.29959569428626],[-117.8871363281502,52.299420388357035],[-117.88704862761823,52.299248343344544],[-117.88693767501441,52.299081994428114],[-117.88683057967708,52.29891479699801],[-117.88673709510992,52.29874403317019],[-117.88668166616077,52.298567485024094],[-117.88659568738234,52.2983961290539],[-117.8864771267806,52.29823094177122],[-117.88635053690803,52.2980691349862],[-117.88623187231066,52.29790450871024],[-117.88611321029707,52.297739873382135],[-117.88597087544927,52.29758317019841],[-117.88581086574425,52.29743199503736],[-117.88564068725556,52.29728574700342],[-117.88546461797976,52.297141341424336],[-117.88534574930625,52.29697782781121],[-117.88524070098771,52.29680963425959],[-117.88511808199071,52.29664641631509],[-117.88498175038411,52.29648731668856],[-117.88482967400603,52.29633331188337],[-117.88466153711414,52.29618607682683],[-117.88449736509678,52.2960374229909],[-117.88434336225178,52.29588385055817],[-117.88417512459397,52.29573716713377],[-117.88398686288886,52.295598671826944],[-117.88382665743961,52.29544860738057],[-117.88367662276315,52.29529361549486],[-117.88351031773577,52.29514650689623],[-117.88334422387972,52.294998284354946],[-117.88329221950879,52.29473508237656],[-117.88327626536008,52.294555104538304],[-117.8832168939786,52.29437996372615],[-117.88312728955952,52.29420834811294],[-117.88305483644231,52.294033984363],[-117.88298024584792,52.29386115836201],[-117.88285774793216,52.29369738526108],[-117.88271158050217,52.29354153474701],[-117.88253736007795,52.29339725256198],[-117.88237299590092,52.29324970908038],[-117.8822465401667,52.29308734479489],[-117.88210830236768,52.29292866546478],[-117.88196803173149,52.292770971362266],[-117.88182797218552,52.29261216338398],[-117.88168952737284,52.29245459718211],[-117.88154743603569,52.29229677423317],[-117.88142249399665,52.29213621219301],[-117.88137470618689,52.29195849874473],[-117.88130997903986,52.29178241935942],[-117.8812143920101,52.29161319682478],[-117.88108419207441,52.29145113578797],[-117.881053029993,52.29127346302087],[-117.88100503289444,52.29109687189597],[-117.8809115882451,52.29092610232596],[-117.88081428517009,52.29075619866792],[-117.88073069492988,52.29058217692249],[-117.8806829116818,52.29040446297251],[-117.88078940526908,52.29024155636652],[-117.88092560115106,52.29007792254094],[-117.88095258788316,52.28990546854514],[-117.88078308569729,52.28975587145675],[-117.8806510693219,52.28959368140395],[-117.88060093780355,52.289418627659444],[-117.88061663054302,52.28923747976721],[-117.88064122952761,52.289058095923046],[-117.88065316884772,52.28887725268163],[-117.88059125615851,52.28870588381161],[-117.88045742178437,52.28854355619857],[-117.88044470875343,52.28836606106974],[-117.88023689898631,52.28826285117834],[-117.87993731215626,52.28827393868983],[-117.87964361783344,52.28828317407956],[-117.8793516025813,52.28828350814827],[-117.87905772698056,52.28827411406047],[-117.87876525484688,52.28826707492237],[-117.87848294407068,52.28822576749445],[-117.87824866306939,52.28812577344199],[-117.87795341670497,52.28809427026134],[-117.87770753441859,52.28801659671825],[-117.87751020920976,52.28787744834626],[-117.87724900571328,52.28780264049081],[-117.87696112448909,52.28776149668035],[-117.87666809366077,52.2877476418027],[-117.87637615600067,52.28776715767604],[-117.8760841458905,52.28776747460425],[-117.87579016856756,52.28775863352355],[-117.87549675536586,52.287756593240125],[-117.87520523243457,52.287744538014806],[-117.87492843172889,52.287683856460966],[-117.87467105373258,52.28759859568095],[-117.87443001719551,52.28749529165235],[-117.87414939751801,52.28744506422464],[-117.87387473827694,52.28738284247728],[-117.87362697105532,52.28728584252391],[-117.87337215826788,52.287196804917585],[-117.87310528520864,52.28712271612982],[-117.87282838545464,52.28706259082397],[-117.87256396850636,52.28698528817574],[-117.87232273013942,52.28688309339022],[-117.87211978184503,52.286754263226186],[-117.8719277405851,52.28661660417759],[-117.8717437313974,52.28647555622791],[-117.87151719002104,52.286373834829575],[-117.87123750120855,52.28642635740878],[-117.87096138933417,52.28648928770498],[-117.87068331226706,52.286543051062495],[-117.87038945038222,52.286533634985915],[-117.87010239398698,52.286566451668335],[-117.86981968626579,52.28661537288349],[-117.86953122611166,52.28664583234324],[-117.86923575170844,52.28666451201919],[-117.86894553629632,52.28665534923354],[-117.86865742411199,52.2866057082255],[-117.8684317308441,52.28649952613549],[-117.86827480324632,52.28634233323439],[-117.8681793853001,52.286172537943585],[-117.86807411359345,52.28600600237369],[-117.86791624316335,52.28585381597498],[-117.86773621195809,52.28571135252526],[-117.86755190385523,52.2855719727763],[-117.86737176898026,52.28543007001711],[-117.86719784284354,52.28528465019799],[-117.86702167363113,52.285141328923366],[-117.86683544247974,52.28500237184081],[-117.86662000159205,52.284881108817586],[-117.8664046662841,52.284759293004285],[-117.8662081635651,52.28462582188601],[-117.86598876471761,52.284505966650364],[-117.86576059877275,52.28439340142822],[-117.86555361574948,52.28426652087551],[-117.86535069990688,52.28413767859542],[-117.86510363710991,52.284046909411344],[-117.86480997028235,52.28402676637105],[-117.86453247048152,52.28396996209119],[-117.86428004467531,52.28387825311379],[-117.8640408770622,52.28377505573443],[-117.86379732634079,52.28367550300104],[-117.86356713664523,52.28356391848804],[-117.86333267164622,52.28345540844456],[-117.86308866845835,52.283348491286404],[-117.86296354076816,52.283199164499635],[-117.86297888244637,52.28302025434634],[-117.86290126989825,52.282844377093234],[-117.86273262860566,52.28270044966562],[-117.86251419563972,52.28257558065337],[-117.86245173231663,52.28240754223318],[-117.8623415107759,52.282257577287886],[-117.86210554759897,52.28214727003054],[-117.86187281111852,52.2820394467856],[-117.86166402750189,52.28191243046052],[-117.86147193492381,52.28177531485081],[-117.86129001424642,52.281633264709505],[-117.86104735686504,52.281538850550625],[-117.86077391289294,52.28147046789629],[-117.86052824274685,52.28137245444599],[-117.86028737915035,52.28126856813089],[-117.86005047987862,52.28116326360754],[-117.85979860725108,52.28106875607051],[-117.85953137410564,52.28099686298877],[-117.85924038877177,52.28100172964881],[-117.85894544186804,52.28100800433067],[-117.85865340504144,52.28101842888331],[-117.85836105130912,52.28103052763563],[-117.85806828268723,52.28101551201119],[-117.85779775512708,52.280951281852396],[-117.85756696351318,52.28084302614368],[-117.85739512264611,52.28069660609867],[-117.85722135526521,52.28055060948857],[-117.85702672321226,52.2804172510288],[-117.85678555652835,52.280315032291014],[-117.85652825985896,52.280229721826274],[-117.85623868120116,52.28023693693149],[-117.85600679020797,52.280339624151374],[-117.85570511371328,52.28035218643971],[-117.8554622982246,52.28026846440064],[-117.85524923041797,52.28013492964712],[-117.85505481701324,52.280000454182876],[-117.85487678022324,52.27985754643548],[-117.85470891559092,52.279709704770084],[-117.85452884728493,52.279567781399564],[-117.85434054023294,52.279430349853904],[-117.8541522343779,52.27929291798741],[-117.85396617428847,52.27915338722111],[-117.85380602944316,52.279003831735544],[-117.8536621547593,52.278846405511416],[-117.85352010591845,52.27868909890351],[-117.85337816263372,52.2785312397329],[-117.85323793727089,52.27837407037491],[-117.85311163444067,52.2782116724249],[-117.85299315257325,52.278047000672046],[-117.85287123451579,52.27788096657166],[-117.85268584944684,52.27774768293203],[-117.8524411680055,52.27764463618805],[-117.85222387486425,52.277523778243754],[-117.85202755501885,52.27738972104932],[-117.85187352314499,52.2772372168982],[-117.85172163238735,52.27708316635315],[-117.85152917293094,52.276948252126076],[-117.851322582622,52.27681967940527],[-117.85111364272893,52.276693766108],[-117.85090063814326,52.27656981327152],[-117.85068742230206,52.27644698258468],[-117.8504702463206,52.276325559961656],[-117.85025286075843,52.2762052505634],[-117.85004392863496,52.27607932636732],[-117.8498392744376,52.27595032732545],[-117.84963858448018,52.27581991055997],[-117.84942601006459,52.27569372764192],[-117.84917923976289,52.275601810269634],[-117.8488970082149,52.27555084008204],[-117.8486115847609,52.27550697461704],[-117.84833724894632,52.27544357813647],[-117.84806761410655,52.27537487042107],[-117.84778815801138,52.27531901049706],[-117.84750764830639,52.27526871809359],[-117.84722264987066,52.275222621918985],[-117.84694182597131,52.275173994145845],[-117.84666247722852,52.27511757913377],[-117.84640544234682,52.27503113220886],[-117.84616208607788,52.274930989371505],[-117.845951242803,52.27480549010383],[-117.84578525121051,52.27465776376849],[-117.84563938636227,52.27450131183755],[-117.84546077226797,52.27436172100833],[-117.8452848242103,52.27421781310607],[-117.84510491600346,52.274075313207376],[-117.84495295584223,52.27392180577093],[-117.84480506268224,52.27376633747625],[-117.84467677117476,52.27360491451956],[-117.84036248720119,52.272586028926696]]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":41,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"7","REGION_NUMBER":7,"REGION_NAME":"Omineca","REGION_NUMBER_NAME":"7- Omineca","FEATURE_AREA_SQM":130343225016.561,"FEATURE_LENGTH_M":3539287.2428,"OBJECTID":5,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"MultiPolygon","coordinates":[[[[-122.59999999804931,55.34223720563551],[-122.59996943594632,55.34227112800909],[-122.59990550357475,55.342325442600675],[-122.59989017503788,55.3423429630522],[-122.59984166586817,55.342378638609496],[-122.59981091384569,55.34241479804551],[-122.59977788560788,55.342477802680655],[-122.59974591914948,55.342504959931986],[-122.5997152617859,55.342540000794735],[-122.59952370781487,55.34263007701746],[-122.59947595676371,55.34265680403301],[-122.59938197209692,55.34269236120949],[-122.59915975859005,55.3428174776498],[-122.59909637440003,55.34288862385469],[-122.59898423287399,55.34295171425648],[-122.59892191079271,55.34298701300299],[-122.5987942880668,55.343022774018756],[-122.59862012704899,55.3430942637741],[-122.59862058212639,55.343112214350626],[-122.59855825947602,55.343147512916296],[-122.59827250633002,55.343182326064934],[-122.59786125177851,55.34329780196843],[-122.59778350343298,55.3433517388995],[-122.59773499117122,55.343387413642326],[-122.59767120410231,55.34348657664829],[-122.59765511493333,55.34351304521806],[-122.5976225370437,55.34359399987168],[-122.59759056823773,55.34362115657459],[-122.5974635467489,55.343719716367374],[-122.59732149919668,55.34380889719965],[-122.59717717303145,55.343924923034585],[-122.59711423799149,55.34401401882556],[-122.59711231945508,55.34405993312042],[-122.59711231348945,55.34417653120346],[-122.59715747917801,55.34432014730813],[-122.59717417299554,55.34435647894103],[-122.59722070816031,55.34443734869148],[-122.59723512410824,55.34450052548271],[-122.59725115366365,55.34454468694616],[-122.5972963804706,55.34461767302318],[-122.59737382195794,55.344707233451444],[-122.59742066266166,55.34476120415641],[-122.59746795807273,55.34483312542817],[-122.59749937358161,55.34490573481035],[-122.5975620947781,55.344959017335704],[-122.59759260127674,55.34499572552703],[-122.5975583488735,55.34516632549589],[-122.59755925812586,55.34520222666496],[-122.59751165263917,55.34527380249771],[-122.5974466481468,55.34536396321564],[-122.59735159124435,55.345435366241745],[-122.59722441381271,55.34548907624859],[-122.59711387574376,55.34553314966066],[-122.59706611963331,55.34555987576317],[-122.59701866222672,55.34567630097401],[-122.59698501686253,55.345793102845526],[-122.59697004516977,55.345829692081686],[-122.59690543857216,55.34589183499831],[-122.59682571072067,55.345945717536246],[-122.59671501478991,55.34606153913945],[-122.59669882902344,55.34608912614197],[-122.59665091569371,55.34618760063013],[-122.59663376000847,55.346249916439895],[-122.59663350875898,55.34632278353222],[-122.59664801939633,55.34638484185578],[-122.5966944609175,55.3464668303689],[-122.59674175703725,55.34653875192922],[-122.5967867749297,55.34663751863655],[-122.59686335810615,55.3468537444555],[-122.59689410958626,55.34693418384632],[-122.59692369522257,55.347168187269666],[-122.59701783569827,55.34729407961982],[-122.59703179793802,55.3473393058635],[-122.59703179173795,55.34745590398879],[-122.59699875498755,55.347518907923735],[-122.59682304549848,55.34772489011733],[-122.59674498197444,55.34780572541002],[-122.59669646340485,55.34784139976684],[-122.59656988057615,55.347957909289555],[-122.59653638848629,55.34800296251196],[-122.59650318621857,55.348254313013335],[-122.59650196473044,55.34836190894377],[-122.59651759471377,55.348434088051775],[-122.59653140028227,55.34855106291859],[-122.59651545716325,55.34862238093487],[-122.59649784603548,55.34866674614739],[-122.59643511252271,55.34873006120736],[-122.59627649863825,55.34882775873044],[-122.59626000591571,55.34888224466815],[-122.59624406218276,55.348953562652405],[-122.59624153130993,55.34905327492723],[-122.59622634711435,55.349115644523415],[-122.59614706598535,55.34918747724466],[-122.5960198750495,55.34924118604708],[-122.59598754165202,55.34924927321005],[-122.59594129977788,55.34925810212176],[-122.59589308452576,55.34926687718812],[-122.59579938705303,55.349275532709996],[-122.59567204748018,55.349284391575715],[-122.59556210927158,55.349274665665746],[-122.59551465371653,55.34927449220271],[-122.59538852761386,55.349292352996535],[-122.59527697476486,55.34930164214769],[-122.59516749020773,55.34930986649124],[-122.59507333891698,55.34930057086707],[-122.59496188096259,55.34930874118923],[-122.5948359014642,55.3493714510092],[-122.59470794820777,55.349434106855604],[-122.59456694099694,55.349487437250794],[-122.59440883813429,55.34953245299404],[-122.59425113681876,55.349549451009544],[-122.59417201202405,55.34954953391334],[-122.59410831606486,55.349530978466404],[-122.59401523168812,55.34948583468932],[-122.59396656267316,55.34947665840619],[-122.59390408012669,55.34946710508764],[-122.59376247299562,55.349457634382155],[-122.59369837508528,55.34946709625223],[-122.5935245794273,55.34951056142552],[-122.59339783677166,55.34958221816754],[-122.59330321544483,55.3496715687539],[-122.59327047856543,55.349707672738994],[-122.59320560249807,55.349842680882006],[-122.5931899605597,55.349887099504784],[-122.59309412501509,55.34996744769527],[-122.59298347502548,55.35001263601932],[-122.59288901478439,55.3500302377268],[-122.59279410191071,55.350029888751386],[-122.5927474059056,55.35002076586978],[-122.59260579709364,55.35001129385219],[-122.59257488826769,55.35000260194615],[-122.59252773991419,55.349975528370166],[-122.59243237478593,55.349957228507584],[-122.592290005741,55.34995670449684],[-122.59218006651028,55.349946975608965],[-122.59214915782607,55.34993828359766],[-122.59211834422646,55.34992847303317],[-122.59210272157448,55.349856293362784],[-122.59210379047845,55.34982044602357],[-122.59208821671149,55.34979423448728],[-122.59205695102037,55.34976647329437],[-122.59203985613807,55.349758158476874],[-122.59194584824937,55.34979371008426],[-122.5918830572103,55.349811054730125],[-122.5918195054827,55.34983734770553],[-122.59180286272326,55.349846983470165],[-122.59170702449696,55.349927330595996],[-122.59169168947642,55.34994485005578],[-122.59161130729173,55.350169125400384],[-122.59154552090762,55.350268231455416],[-122.5915135426714,55.35029538662262],[-122.59143577223479,55.350349319642945],[-122.59140251060079,55.350438102549155],[-122.59140103715292,55.35050196740634],[-122.59141630194704,55.35055507800718],[-122.59143254121336,55.35057345981507],[-122.59146466292029,55.35059115426228],[-122.59149471614765,55.35060991334848],[-122.59152638592205,55.35060965716254],[-122.59158963038205,55.35061026331135],[-122.59185706446709,55.35062877835685],[-122.59203186627951,55.35062009818401],[-122.59231584853538,55.35063009499653],[-122.5923777162047,55.350693447069986],[-122.59240922215568,55.35076493923397],[-122.59239027789019,55.35091801834437],[-122.59235858809758,55.35103487292068],[-122.5922786798024,55.35116050116335],[-122.5921978664129,55.35125022812444],[-122.5920882114478,55.35133019834857],[-122.59208669024154,55.35134809507688],[-122.59203636166906,55.351591129668975],[-122.59202592628674,55.351690626330814],[-122.59200281982696,55.35186937805639],[-122.59195457962085,55.35199474978861],[-122.59192122268902,55.35208465139479],[-122.59189045608984,55.35212080891885],[-122.59179385192282,55.352210104495654],[-122.59173150913547,55.35224539968953],[-122.59163673442454,55.3522898994371],[-122.5915248636337,55.35232608422269],[-122.5915092188665,55.35237050264723],[-122.59149317020857,55.352442938597946],[-122.5914928614465,55.35246983758068],[-122.59150758001438,55.35250611610613],[-122.59156999642352,55.352586300669124],[-122.59161714719863,55.35261337461446],[-122.59169587432402,55.352641310858466],[-122.59169556569636,55.352668209842335],[-122.59167752197243,55.35285719011959],[-122.59166142509198,55.3528836579445],[-122.59162837543958,55.35294666049676],[-122.59159725096104,55.352963748785086],[-122.59150176178785,55.353063164948814],[-122.59142134674237,55.35312487389647],[-122.59134357069739,55.35317880687661],[-122.59129580164314,55.35320553079511],[-122.59126382089686,55.35323268590725],[-122.5912002633438,55.353258978577564],[-122.59116904333509,55.35327718530485],[-122.59115102014826,55.35334956731611],[-122.59121419799443,55.35342080370393],[-122.5912930694364,55.353493589813645],[-122.59137113235955,55.3535293560814],[-122.59141707134083,55.35354742784351],[-122.59148077243161,55.35356598467131],[-122.59152716352702,55.353602007016384],[-122.59160567892832,55.353655723761364],[-122.59179295816057,55.353872733892004],[-122.59185483000438,55.35393608624757],[-122.59187130958868,55.353998199070844],[-122.59185236174423,55.354151278155285],[-122.5918379295096,55.35420469888783],[-122.59180380975661,55.3543035488506],[-122.59178700012959,55.35438493322035],[-122.59180338470256,55.354448164601436],[-122.59181819936734,55.354483324552724],[-122.59184916002988,55.354537984810065],[-122.5919273692067,55.35461860034873],[-122.5919593992837,55.354637413222456],[-122.59202167607965,55.35467274796436],[-122.5921162915688,55.35469999651796],[-122.59214634817863,55.35471875545612],[-122.5921947148271,55.354754831445376],[-122.59225668374455,55.35481706506216],[-122.59225642449181,55.35488993221531],[-122.59222242906631,55.3551502301414],[-122.59217434992406,55.35520385339469],[-122.5921423681795,55.35523100873789],[-122.59203148926493,55.355301976692125],[-122.59190351271519,55.35536462970714],[-122.59179263300882,55.35543559745033],[-122.59158566247493,55.355543181106015],[-122.59144325117617,55.355659254361704],[-122.59136349657894,55.355713133471106],[-122.59129998308266,55.355785394365924],[-122.59128433671756,55.35582981277957],[-122.59126583770136,55.356000842435826],[-122.5912807954767,55.356080852079415],[-122.59131220859528,55.35615346310908],[-122.59132692835122,55.356189741671045],[-122.59137377432633,55.356243714713024],[-122.59140590054723,55.35626140918666],[-122.59145167705353,55.35635122955947],[-122.59150004504542,55.35638730582434],[-122.59153055468731,55.35642401554325],[-122.5916241044647,55.356487111836266],[-122.59163968052651,55.356513323450315],[-122.59170186485436,55.356549776905],[-122.59181317861575,55.35661335810588],[-122.59184333161203,55.35663099857505],[-122.59184392745085,55.35669379882818],[-122.59182573899476,55.356837929587115],[-122.59177810947206,55.3569095033271],[-122.59172926683796,55.35697207478786],[-122.59166651281262,55.35703538751154],[-122.59163376845143,55.357071491097614],[-122.59157065714113,55.35711573459791],[-122.59142809703951,55.357186958229086],[-122.5914115462453,55.357195475403906],[-122.59131604653965,55.357294891473245],[-122.59126948541468,55.3573306176603],[-122.59122049852884,55.35734833929597],[-122.59111023024546,55.357365508455324],[-122.59104809282505,55.35737502287742],[-122.59085899335014,55.3573653736931],[-122.59062242887347,55.35735554890046],[-122.59054217112184,55.35734550868668],[-122.59043287801717,55.35732794843693],[-122.59030698714346,55.35727293694555],[-122.59026028327342,55.357263813126536],[-122.59021236681524,55.35724568701347],[-122.59016490185468,55.357245511517554],[-122.58988163451417,55.357226561450105],[-122.58980249456924,55.35722664158572],[-122.58972304463848,55.35725362066407],[-122.58969115475695,55.3572796568415],[-122.58959534051542,55.35740597058969],[-122.58938827977505,55.35758418070948],[-122.58929367626962,55.35771949651584],[-122.58924527982357,55.357800017650945],[-122.58922796694941,55.35781748289042],[-122.58921329402673,55.35782717225223],[-122.58915017885829,55.357871414533335],[-122.58905341421936,55.35791585841427],[-122.58891160824312,55.35797813082766],[-122.58886428273537,55.35802280447251],[-122.58884822704064,55.35809524012973],[-122.58884715500719,55.358131087474455],[-122.58886232414164,55.358185316977234],[-122.58890885859192,55.35826618994986],[-122.58894067482697,55.35831078405578],[-122.58898523578357,55.358391603063104],[-122.58901664655666,55.3584642146891],[-122.58903150558702,55.35854534316856],[-122.58906377315672,55.35860788788691],[-122.58906270130217,55.35864373523564],[-122.58909366142112,55.358698396201795],[-122.58909335100203,55.3587252951977],[-122.5891090668694,55.35879635677275],[-122.5891245470088,55.358823687251395],[-122.58918673263237,55.35886014196778],[-122.5892655654961,55.35888696121913],[-122.58935897658432,55.35890520958677],[-122.58940765598376,55.35891438767521],[-122.58950151837713,55.35895058657817],[-122.5895327894576,55.35897834843957],[-122.589547913922,55.35898660968042],[-122.58962617315412,55.35911319488514],[-122.58970167024833,55.359365272755],[-122.58977912324899,55.35945483804081],[-122.58980977502509,55.35953639783469],[-122.58980929650971,55.359635045477596],[-122.58976166006843,55.35970661847157],[-122.58971433346821,55.35975129244731],[-122.5896488367394,55.359823498609884],[-122.58963349703704,55.359841017836445],[-122.58966424397543,55.35992145912492],[-122.58972688308022,55.359975864220054],[-122.59002455337517,55.36017459066961],[-122.5900395832384,55.36018397039708],[-122.59018151094227,55.3602831446253],[-122.59030648223558,55.360418853274226],[-122.5903352313975,55.36061583878403],[-122.59066308757393,55.36099477105727],[-122.59069369509137,55.36103036245437],[-122.59077243809239,55.36105829930713],[-122.59081914649667,55.36106742293859],[-122.59089950689564,55.361076344432895],[-122.59100947631713,55.3610860744603],[-122.5910403933438,55.3610947667647],[-122.59108679275049,55.36113078930428],[-122.5911964533389,55.36116741817549],[-122.59121355290844,55.361175733119225],[-122.59126040455365,55.36122970623466],[-122.59132304786603,55.36128411053755],[-122.59133807844859,55.36129349011005],[-122.5913702086979,55.36131118460295],[-122.59147865702094,55.3613388109576],[-122.59152733985854,55.36134798822257],[-122.59171645826821,55.36135763639952],[-122.59177850659144,55.36134924018714],[-122.59187344623845,55.36134958993478],[-122.59200037262781,55.36132278429264],[-122.59204860322185,55.361314010717095],[-122.59222071684714,55.36131422475436],[-122.59239404369598,55.361323440814374],[-122.59252101898153,55.361342602838405],[-122.5925983375942,55.36138731674826],[-122.59264519134973,55.361441289345656],[-122.5926779878744,55.36145115367203],[-122.59273982322699,55.36146853744811],[-122.59280308482546,55.36146914298331],[-122.59286710704714,55.36146080010722],[-122.59293077157847,55.3614333880167],[-122.59296123653606,55.361424129211905],[-122.59299358035692,55.36141604282117],[-122.5930885201726,55.361416391645484],[-122.59323016935991,55.36142586312789],[-122.59337181861412,55.36143533444984],[-122.5934344147374,55.36144376949977],[-122.59359124088664,55.36150746953919],[-122.59368511312256,55.36154366530951],[-122.59371724460753,55.36156135919941],[-122.59377943864865,55.361597811640976],[-122.59381071475335,55.3616255724399],[-122.59392121937638,55.361768730301925],[-122.59398234638076,55.36184103004675],[-122.59402950966219,55.36186810311],[-122.59412459676543,55.36191330079604],[-122.5942021302425,55.36193223324631],[-122.59429569706776,55.36199532757825],[-122.59440672316933,55.36208580552693],[-122.5945002906746,55.36214889970671],[-122.59455299651093,55.36218060831896],[-122.59460974544689,55.3622113060574],[-122.5946672547041,55.362233055379164],[-122.5949086827127,55.36230242483664],[-122.5950191101515,55.3623301019648],[-122.59508161299946,55.3623396547395],[-122.59520868779995,55.362357695484754],[-122.59541329765729,55.362394667800686],[-122.59552336679333,55.362403275306605],[-122.59571249113907,55.36241291743556],[-122.5958074333377,55.36241326419357],[-122.59585414446477,55.36242238594398],[-122.59594756678267,55.36244062939235],[-122.59599625197978,55.36244980491697],[-122.59602631621087,55.36246856293807],[-122.59604632044618,55.362489288923065],[-122.59539159385274,55.36248713055361],[-122.59224101578636,55.36247179839962],[-122.59222101038449,55.36466196604719],[-122.59099318676465,55.36660502222968],[-122.59279021725779,55.3704188767168],[-122.59931932054776,55.370436548922434],[-122.59947734989292,55.37057987403457],[-122.5999170579317,55.37073871750139],[-122.5999998701613,55.37076563754496],[-122.60024257402961,55.370843998959785],[-122.60029522254598,55.37096987877686],[-122.60029302496005,55.37113574736654],[-122.60030851748381,55.37116307649823],[-122.60032355723675,55.37128905344438],[-122.60035281956777,55.371503987525536],[-122.60054053232089,55.37169408592288],[-122.60061833612811,55.371756745551195],[-122.60072849082326,55.37181131672866],[-122.60078187845286,55.37183519286569],[-122.6007469659727,55.371873482260916],[-122.60072841855187,55.37190549033451],[-122.60057859664445,55.37220187655119],[-122.60056804180184,55.37223298106438],[-122.60051791000755,55.37249732595269],[-122.60043736413026,55.372816899730005],[-122.60043622540891,55.372830322385816],[-122.60040029333267,55.373090569321924],[-122.60040036996676,55.37311299417214],[-122.60042984574962,55.373418746240496],[-122.60043387150742,55.37344127860481],[-122.60050870436305,55.37370229880125],[-122.60051715379505,55.37371934590025],[-122.60104177377342,55.37479085995952],[-122.60162751389319,55.37602884173037],[-122.60207371318126,55.377045522606714],[-122.60262045937851,55.378067178994115],[-122.60343719664775,55.379803612819806],[-122.60429045509274,55.38146031088537],[-122.60512730291816,55.383007805308786],[-122.60580505015041,55.3844478248739],[-122.60628576405948,55.38533985704143],[-122.60667029806389,55.386199003436545],[-122.60707135095083,55.3871438032457],[-122.60774250430731,55.38835940320468],[-122.60786257446499,55.38860146544644],[-122.6080484792444,55.389024696706976],[-122.60806041218056,55.38904744341359],[-122.60837075479934,55.38949759668902],[-122.60854606121255,55.38971873508159],[-122.60870039803946,55.3899303348434],[-122.60870923318821,55.38994290716919],[-122.60874890340673,55.38998882946386],[-122.60877240520685,55.390015253546416],[-122.60878866841728,55.39003363318283],[-122.60879938429804,55.3900473776905],[-122.60882524035041,55.39006938113441],[-122.60885259831844,55.39009703101366],[-122.60897181282458,55.39020901714471],[-122.60920093496847,55.39042600959771],[-122.60958571730235,55.390862483892086],[-122.60960198122945,55.39088086342465],[-122.61000901343779,55.3912417029736],[-122.61025198776007,55.39143552530665],[-122.61027417858647,55.39145406555766],[-122.61058808286354,55.39165205399579],[-122.61085620000374,55.39180619638289],[-122.6111089765921,55.391977860128456],[-122.61137181023565,55.39217109761636],[-122.61140745189539,55.3921944870167],[-122.61154391492599,55.39226657744386],[-122.61158557788966,55.39228900897131],[-122.61161021844185,55.392302009738835],[-122.61163673988102,55.392316182646994],[-122.61166730696281,55.39232934414221],[-122.61170934856123,55.392347301365284],[-122.6117473445719,55.392366269984336],[-122.61198613363635,55.392492707129485],[-122.6123367491187,55.3926782327392],[-122.61237324325913,55.392691554768156],[-122.612791135788,55.39285423837453],[-122.61322294429816,55.393039720367454],[-122.61324984513078,55.39304941866634],[-122.61363831141598,55.39318551553305],[-122.61399912262806,55.39332086160503],[-122.61421996550455,55.393425506286576],[-122.61424103472419,55.39343392518789],[-122.6142755546282,55.393447193124324],[-122.61429060264189,55.393456569971235],[-122.61434571907587,55.39348384961784],[-122.61477031091613,55.39363773869129],[-122.61513771847461,55.39376541209682],[-122.6151587880657,55.39377383084391],[-122.61522058849934,55.39379232212846],[-122.61528643467197,55.39380980185792],[-122.61531173905578,55.39381497191694],[-122.6153679909959,55.39382882828853],[-122.61558161826476,55.39387833957318],[-122.61591611637063,55.39397372744552],[-122.61594339652497,55.39397895088889],[-122.61613586086457,55.39402116118175],[-122.61647196791955,55.39409753188778],[-122.61695463125295,55.39422047311225],[-122.61727059924768,55.39432432446336],[-122.61728800179279,55.39432928015971],[-122.61800574444351,55.39452921287387],[-122.61858151729604,55.39476902293961],[-122.61922701100052,55.3950039900414],[-122.61973261854574,55.395230684529295],[-122.62012676508657,55.3953938208167],[-122.62042909664945,55.395542139879566],[-122.62072718329046,55.395740794006265],[-122.62108312798517,55.3959578289564],[-122.62110956082165,55.395973118434966],[-122.62163464780228,55.396274325700475],[-122.62195032739102,55.39652278182138],[-122.62220053964863,55.396725743319934],[-122.62254680050762,55.39698735686934],[-122.62425351574389,55.39832949904323],[-122.6279889891824,55.39676998435903],[-122.63019205685073,55.39619262584839],[-122.63461314275584,55.396177253581286],[-122.6394302327854,55.39672844842455],[-122.6408246540399,55.39559102136814],[-122.64032029393648,55.395182829055514],[-122.63868046502597,55.39188301350071],[-122.64083376445944,55.386227755242274],[-122.64294580309615,55.37784483930885],[-122.64556364365119,55.368704190271515],[-122.64912263734186,55.35472770906412],[-122.6566480476412,55.34494730359009],[-122.65952072029329,55.34236949654849],[-122.66919511290196,55.336744678458984],[-122.67889146654592,55.334832768552246],[-122.6823058196613,55.335049174938526],[-122.68763509505318,55.335827550673194],[-122.69356667688137,55.33716873632243],[-122.69899673574804,55.33903447075501],[-122.6997094456599,55.339600401711614],[-122.70305417376606,55.342208963515105],[-122.70657160686078,55.34368299133624],[-122.70987892920826,55.34367158467361],[-122.71579103064074,55.34198880622724],[-122.72058579351366,55.34100283622475],[-122.7232834276955,55.34070600489808],[-122.72890093272218,55.34068300012921],[-122.73343287053882,55.341752362956356],[-122.74008377530991,55.34497549891532],[-122.74563574396768,55.34654635563302],[-122.74832521208752,55.34596178300831],[-122.75204390160597,55.345951004898126],[-122.75187751225707,55.34937251808561],[-122.75100420377518,55.350973028093435],[-122.7521401625747,55.3529666252887],[-122.75419033386478,55.35637405243451],[-122.75392687940104,55.35923701794519],[-122.75257316238752,55.3626635302409],[-122.75499715064548,55.36419733901284],[-122.75700784162677,55.36458140489391],[-122.76063616834871,55.36610153172678],[-122.76417153956172,55.36740390235817],[-122.76717473618413,55.36784938773468],[-122.77050054989242,55.36782783504698],[-122.7762293974518,55.36843324731353],[-122.77845068853327,55.37014069737317],[-122.78141169680104,55.373086823683956],[-122.7839264719178,55.37410222291444],[-122.78795299117073,55.37443005150171],[-122.7936612898141,55.37411937315061],[-122.79761227654375,55.37598743517092],[-122.79995024501203,55.378827421474995],[-122.80512145002321,55.381883343566244],[-122.8120839125084,55.38452739720534],[-122.82173765497998,55.38499758503947],[-122.82730852520305,55.382637186978506],[-122.83060306960016,55.38062236710484],[-122.83477902030211,55.37786755177824],[-122.83916618241211,55.37664246814806],[-122.84558268645131,55.37597966725805],[-122.85262628957793,55.37680303884493],[-122.85124514865933,55.378463110061084],[-122.84919503406185,55.38178324718918],[-122.84845785359067,55.38612293377263],[-122.84639795721922,55.389559376938024],[-122.84626240739449,55.393896313989636],[-122.84879657135211,55.39530540258063],[-122.85091788722963,55.39592384528392],[-122.85704786817415,55.396526563059524],[-122.86358944365217,55.39733659428982],[-122.8714483658318,55.39912982503197],[-122.87650056478623,55.4003592116713],[-122.88106235475348,55.4034144860589],[-122.87981777596904,55.40678210679162],[-122.87482900368026,55.40858549049214],[-122.86793801049006,55.41181172198511],[-122.86897067296069,55.41339795057226],[-122.87220565093246,55.41417840297707],[-122.87955539065989,55.415231926325404],[-122.88680195468082,55.41598651216825],[-122.89472618535542,55.415771086844366],[-122.90134983634434,55.41454548586308],[-122.9067532302044,55.413316258668786],[-122.91424952560713,55.411448002103086],[-122.92405396302988,55.40922363854749],[-122.93199811862414,55.40975962761196],[-122.93853341198705,55.409659808502134],[-122.94462933747926,55.408257639662885],[-122.95442099454027,55.40512496778402],[-122.96182273630643,55.40319784763949],[-122.9719165850451,55.400851345716696],[-122.97940135785711,55.39801060822429],[-122.98793071307972,55.39790263871768],[-122.99042947601973,55.402168315830394],[-122.98900436030146,55.40679678367412],[-122.98666033755985,55.41057814157719],[-122.98559783948512,55.412695622930976],[-122.98168729477985,55.41790970940558],[-122.98259495699855,55.42394845081194],[-122.98755405192108,55.42523371763382],[-122.99389121906401,55.4261125356259],[-122.99916306853585,55.42767385148371],[-123.00071404975263,55.430454922047105],[-123.00218907727701,55.434041167563976],[-123.00055418523908,55.43787566788734],[-122.99822123195686,55.44171134268918],[-122.99753553811516,55.443030957673386],[-122.99619275574945,55.44634338629312],[-122.99666958820106,55.44970846194327],[-122.99775912541426,55.4542091019752],[-122.99625427788914,55.45946348288535],[-122.99188385752439,55.46252385715433],[-122.9830615093581,55.46423046263731],[-122.9770161818151,55.46403080853991],[-122.97095725936293,55.462754482498134],[-122.96106029397488,55.46042524308743],[-122.95884175606645,55.45997680204384],[-122.94515151884177,55.45976894058196],[-122.93634081561297,55.4613021939444],[-122.9313625963861,55.464982373435014],[-122.93285913458311,55.46987932603675],[-122.93562749328451,55.47288839023706],[-122.94030601732965,55.47582750338037],[-122.94598188360442,55.47756224391674],[-122.95385517514586,55.47900047042953],[-122.95955242490317,55.48192772522166],[-122.95958662515024,55.483982037416375],[-122.959009701765,55.48593184097312],[-122.95821764458422,55.491750243788005],[-122.96080136990965,55.49556124134818],[-122.96296296124021,55.49845625891343],[-122.9637412347879,55.50221443419486],[-122.95894700664603,55.50407094418946],[-122.9534248679934,55.505470191375466],[-122.94854609895786,55.50800578241337],[-122.94598266675752,55.51161991783008],[-122.94293066135457,55.515177261330926],[-122.9407968998519,55.5198061379668],[-122.94128281927686,55.52424785575454],[-122.94205151497445,55.52852609058526],[-122.94540542031899,55.535575458117236],[-122.94647153749807,55.53888346383701],[-122.94742454931436,55.5407629008903],[-122.9497720209528,55.54290940161837],[-122.95415304459719,55.54528459929813],[-122.9543055601703,55.548077131119626],[-122.95040381000497,55.55003584573558],[-122.94692196498029,55.552112277537994],[-122.94486198162394,55.555550426204405],[-122.94168474622961,55.55841431281577],[-122.9352699206976,55.560562406993526],[-122.92996222078978,55.56298837260658],[-122.92909077177768,55.565217880307685],[-122.93107233905232,55.56840496668585],[-122.93455503792613,55.57152108053841],[-122.93994709673564,55.57422631278706],[-122.94206954004564,55.574556030052726],[-122.94774900520898,55.576012474878084],[-122.9534247817832,55.577522367757396],[-122.95578173693136,55.579785515595454],[-122.95864788813313,55.582051983355804],[-122.96179237413783,55.58254958690793],[-122.96783448542381,55.58177203649841],[-122.97133605009964,55.58050250593973],[-122.97332778086191,55.57962691662653],[-122.97759379614442,55.575613748056305],[-122.98276607406223,55.57159534676726],[-122.98746597297752,55.56939472011826],[-122.99143834031607,55.5662887460861],[-122.99823180360522,55.56288253027874],[-123.00697132788277,55.56128891886497],[-123.01535933665429,55.561408016362535],[-123.02080865763901,55.56212036912072],[-123.02404656691657,55.562206169859174],[-123.02543006829234,55.560714595319446],[-123.02631055055753,55.55956976476309],[-123.02758609385606,55.558030778019514],[-123.03170573482123,55.55737508834592],[-123.03688536020196,55.558717015844834],[-123.03965536586159,55.561033082660266],[-123.04151478443441,55.56340831829414],[-123.04233349334079,55.56437810370363],[-123.04448195910683,55.56521780487409],[-123.04823733942274,55.566911254874974],[-123.05089148533956,55.56865941427465],[-123.054679290373,55.57142943585719],[-123.0562130284086,55.57198549190772],[-123.05956581413324,55.573113195957156],[-123.06324407436917,55.57565620239879],[-123.06603479470554,55.57837561915467],[-123.06931442499005,55.58137538266616],[-123.07371018562701,55.583916867112514],[-123.07648801720391,55.586178423351534],[-123.07531099819523,55.588123688690516],[-123.07129560465562,55.58906127056402],[-123.06668907275782,55.5904601594596],[-123.06440398394007,55.592531885532736],[-123.06546319202431,55.59457416650442],[-123.06793009102775,55.59673897686703],[-123.07080610832296,55.59962164945654],[-123.07257931336324,55.60235301639518],[-123.07479850102112,55.606385952043844],[-123.07555646857686,55.609290892440015],[-123.07570014025475,55.61145522381504],[-123.07475457600206,55.61414117308287],[-123.07122889542634,55.61964534696923],[-123.07000936434301,55.624100318532356],[-123.0728863986586,55.62613108780618],[-123.07894825655282,55.626442488907415],[-123.08662984575099,55.62638764876163],[-123.09440881578246,55.62696225898986],[-123.0991904413427,55.62801420789993],[-123.10455494933167,55.62872073256082],[-123.11073006664034,55.629015262805424],[-123.11667804648765,55.6289276816165],[-123.12547470460575,55.62931745956678],[-123.13159354577871,55.63150160381208],[-123.13496408262608,55.63358696351438],[-123.13676608299102,55.637107014315454],[-123.13814264555118,55.63990003305231],[-123.13906621720335,55.64035144304454],[-123.13966813457078,55.640401003861555],[-123.14583711390182,55.64058602698916],[-123.14860808146501,55.64216422554665],[-123.150089214979,55.64529122277839],[-123.14915818107015,55.648946358172225],[-123.1460062762292,55.65245248500399],[-123.14072971831625,55.65579370291212],[-123.13431625811765,55.65875016515121],[-123.12971782619314,55.66084212738718],[-123.12768004970764,55.66433741250013],[-123.12774468650865,55.66763859127001],[-123.12841239968739,55.67031690909279],[-123.12778604899118,55.67369198594566],[-123.12684227927024,55.676602520885886],[-123.12690258207992,55.679742212030675],[-123.12743372796317,55.68100069580096],[-123.12999976228018,55.682574592944675],[-123.13227311601308,55.68467079492908],[-123.13019846275999,55.68645269841967],[-123.12718426552867,55.68732543758685],[-123.12277392890769,55.68941256896609],[-123.12113720129467,55.69306941598925],[-123.12168550731859,55.69541328764146],[-123.12373484037576,55.69641955499397],[-123.12759992691196,55.69725202394335],[-123.13035840967339,55.698606119661015],[-123.13234485978276,55.70115306599935],[-123.13371191372131,55.70388314583208],[-123.13680492437443,55.706141362480636],[-123.13949025169212,55.70852473661515],[-123.14056299413708,55.71114044605684],[-123.14021877343932,55.71370604897851],[-123.13934842569405,55.71559617632755],[-123.13640843847027,55.71984233145519],[-123.13337197115244,55.724310408224824],[-123.13452916678253,55.72664116594805],[-123.13667544488911,55.727658357318965],[-123.1389226481656,55.728606068282616],[-123.14252872664633,55.73086678830544],[-123.14450562802675,55.73313532556574],[-123.14686326943323,55.73477581747269],[-123.15117092879447,55.73662175382606],[-123.15352227108583,55.73768810693829],[-123.1624839964521,55.73990765988713],[-123.1670494845633,55.74039591723626],[-123.17319312748971,55.73868674993941],[-123.17894668239724,55.737739681490226],[-123.18338995360827,55.73724726969653],[-123.18804876271273,55.736867109963114],[-123.1910261999472,55.73428841447507],[-123.1955946111678,55.73088430234233],[-123.19672360369553,55.727331843597426],[-123.19359511509222,55.72324527075048],[-123.19097365967131,55.71944787392395],[-123.19396152482231,55.71760462637245],[-123.20104173418274,55.71703586403216],[-123.2093154412117,55.716062772928886],[-123.22299572770163,55.71241099923671],[-123.23482347882269,55.707820527857365],[-123.24245582172598,55.70546839526348],[-123.25305736137187,55.69985422788448],[-123.2647875635443,55.69958954447233],[-123.27017736210502,55.7010334624816],[-123.2797605968773,55.70346438367885],[-123.2887259740731,55.70584538895303],[-123.29840262720066,55.707873394691575],[-123.31825826386952,55.712332304063175],[-123.32811635882798,55.713841817953394],[-123.3308226941693,55.71656199765307],[-123.331709132169,55.71928841072023],[-123.33546378894827,55.72662110251065],[-123.3394507076151,55.72812191901599],[-123.34235755008548,55.73049639560327],[-123.34142395499917,55.733471234620644],[-123.338066847356,55.73686112709229],[-123.33390929690253,55.74026988055694],[-123.32768394421245,55.7459119995243],[-123.32531709038591,55.74856050385054],[-123.32380041095581,55.75233877781489],[-123.32102870612991,55.7545841310439],[-123.31524068728643,55.75771562889232],[-123.31277231489744,55.760424537933275],[-123.31214041998909,55.76362085235097],[-123.3124737213727,55.76436315622666],[-123.31510551735948,55.76822073266875],[-123.31551020151345,55.77169017093103],[-123.3126322134043,55.773825536891906],[-123.30832241242666,55.77632480595311],[-123.30817891584326,55.77820458764452],[-123.31039735822885,55.78132720696451],[-123.31217091073921,55.78370510192393],[-123.31481992796748,55.78756304331836],[-123.31508586863731,55.790249509641775],[-123.31621149385322,55.79394051015507],[-123.31881035030302,55.7999760069685],[-123.32120666985199,55.80262699414764],[-123.32563042441801,55.80487259731184],[-123.33022226550027,55.805579458848044],[-123.33615004261392,55.80712126978842],[-123.33947067491566,55.80961206103339],[-123.34167241475589,55.81233025226167],[-123.34141431190295,55.81427040697544],[-123.33941866386547,55.81897131959582],[-123.3376746347018,55.82206366075343],[-123.33834183737126,55.824283329357215],[-123.34193788861337,55.8257935906603],[-123.34564848703427,55.827987556688],[-123.35010166307866,55.83057354966624],[-123.35405793405441,55.83053991372841],[-123.357279715802,55.82999767265637],[-123.36527298940577,55.82895424507151],[-123.36846496301332,55.83030287774661],[-123.37498772331357,55.831155832624646],[-123.3796083641266,55.832937305865904],[-123.3801958014994,55.835675064400135],[-123.37844001678009,55.838256640558306],[-123.37580914077003,55.84244283090659],[-123.3749726370716,55.84467586385176],[-123.37450630058498,55.84639656997338],[-123.37275794395326,55.849094801890544],[-123.36850640431204,55.849929837017434],[-123.36462600274992,55.852646329802944],[-123.36387637897879,55.854764568510554],[-123.36393186486389,55.85681890341301],[-123.36471531081895,55.85948912700087],[-123.3649617237693,55.86132329617121],[-123.36740709039924,55.861410099828504],[-123.37726571664041,55.86131911619345],[-123.38579638498793,55.8609578397191],[-123.38755291461,55.86225831620283],[-123.39173752016455,55.86610135008689],[-123.39636170849356,55.86765805879866],[-123.39901343895227,55.86826850192336],[-123.4058344985668,55.86882999941683],[-123.41452475440568,55.870460402800184],[-123.42194345148732,55.87341808953761],[-123.42720462613056,55.876053520590915],[-123.42840189142751,55.87883927213502],[-123.4322230777366,55.88417073448772],[-123.43571515934781,55.88544295304884],[-123.44026129693442,55.884548803841724],[-123.44694091790092,55.88362584495862],[-123.45263921317704,55.88374967827678],[-123.45836592759888,55.884429684863484],[-123.46045143965456,55.883153642077886],[-123.46541352693589,55.88225799046752],[-123.46936116246759,55.88193357716261],[-123.47441950977915,55.88103054008264],[-123.47603160845551,55.88038134543429],[-123.47831807729727,55.87870559311092],[-123.4810050631477,55.877028815569744],[-123.48486162888236,55.87636143569689],[-123.48740544519264,55.87668095223833],[-123.49078296191183,55.8775010848422],[-123.49493275062365,55.87700955729906],[-123.49728801577712,55.8772713468402],[-123.49763470581792,55.87863196371962],[-123.49859680162922,55.88039922278275],[-123.4993259443814,55.880781215190694],[-123.50300820307385,55.88160703425256],[-123.50526569680066,55.88215362767091],[-123.5078279712263,55.882697218857096],[-123.51064726282785,55.88170379363562],[-123.51233157808196,55.880661098826195],[-123.51482712871304,55.8792039934667],[-123.51755136439708,55.87844165133483],[-123.5207967142066,55.87805703981353],[-123.52156795898142,55.87674530729535],[-123.51874690014702,55.87419767950059],[-123.51693359660864,55.87193872827416],[-123.51850583177409,55.86986277036535],[-123.52261696963727,55.86817723531224],[-123.52741995938605,55.86618235930199],[-123.53443276146517,55.865996540296],[-123.54126744613714,55.86661372618286],[-123.55116258829288,55.86748706977303],[-123.56147038874082,55.86869032799143],[-123.56985908217945,55.87036687544282],[-123.57553922515912,55.87311157830509],[-123.57767584169333,55.87616473005742],[-123.57859349540557,55.87923933989477],[-123.57966853694985,55.881052898805784],[-123.58192322678059,55.88166080563927],[-123.5846009279184,55.8824291516429],[-123.58787779686243,55.8833612677147],[-123.5931211517263,55.884904474618786],[-123.59553815010102,55.88443046950963],[-123.59724445466051,55.88378155663214],[-123.60099090671135,55.88305478153755],[-123.60456914041222,55.88404596039857],[-123.60574421091535,55.88528741988962],[-123.60956335910541,55.887071914639705],[-123.61569404955642,55.88774340855127],[-123.62157698451517,55.890140145880615],[-123.62550704220573,55.89249996920433],[-123.630038357704,55.893929625948644],[-123.63305824921406,55.89275797661456],[-123.63539350010632,55.89284645778828],[-123.63767900013723,55.894305568368075],[-123.64081876677524,55.89649773952445],[-123.6449395162069,55.89810745053285],[-123.64779674502415,55.898590889893065],[-123.64924252042296,55.899083914722176],[-123.65260193057358,55.90218528890904],[-123.65555537351992,55.90483978013262],[-123.6588887864821,55.90731296674595],[-123.66068109393625,55.9090045611766],[-123.66210180196524,55.91155883864057],[-123.66461837869738,55.91375680105784],[-123.66809004273452,55.9141793739124],[-123.67461865918973,55.91444287912127],[-123.6808994511364,55.916198594238],[-123.68205542804736,55.92001178438037],[-123.68072572305059,55.9229905820859],[-123.67940527787738,55.92580817857803],[-123.6801244104564,55.9285914227305],[-123.68104151823127,55.93155758052802],[-123.67886038894248,55.93591031028071],[-123.67732359496956,55.938849448025856],[-123.67436886337632,55.941332250404095],[-123.67039714619067,55.94445072302776],[-123.664588325807,55.946862885805615],[-123.65730642672294,55.948655898276755],[-123.64912741201435,55.95040497249721],[-123.6470262398172,55.951450721910376],[-123.63967530874673,55.954102100489315],[-123.63478054955989,55.957014088937264],[-123.63027581795265,55.962246148785475],[-123.62944015642998,55.96734054282145],[-123.62944276394481,55.967564715383936],[-123.62235619933139,55.96895606056144],[-123.61262450514553,55.970252416171135],[-123.60746109203808,55.97116813822531],[-123.60513139906799,55.9717068855522],[-123.59869584413,55.97451675580988],[-123.59840947691353,55.97816909746555],[-123.59903134573075,55.98141728023997],[-123.59976810835546,55.98489176396863],[-123.59815625981695,55.9886714363834],[-123.59311776284363,55.99329161519988],[-123.59215712550841,55.995075388951484],[-123.58662051980997,55.9973011447235],[-123.58589701045116,55.99993212283362],[-123.58158591727376,56.0033913020438],[-123.58019077568177,56.00700460591155],[-123.57798508479705,56.0104589933211],[-123.57336466324307,56.015256837259095],[-123.56905606662963,56.019934998783334],[-123.56373151496459,56.024638376764436],[-123.56275285205365,56.02824162005109],[-123.56139604467465,56.03015210090539],[-123.55940244221316,56.03143171797115],[-123.55519406563866,56.03599487531039],[-123.5508523598695,56.04009810731203],[-123.54679711225175,56.04346260741886],[-123.54210610529802,56.04642917639804],[-123.53896748220052,56.049784295333446],[-123.53711192337889,56.051918010758946],[-123.53343021855665,56.05441971854067],[-123.5261393651187,56.055936614819274],[-123.51705357332013,56.05603732326322],[-123.5093975962836,56.05618334999235],[-123.50949640480393,56.058695694955674],[-123.51095683152352,56.0623375068172],[-123.51554972945819,56.065081241456745],[-123.5158572605884,56.06531139656433],[-123.52031333786415,56.066913626957955],[-123.52084242248674,56.07027713103474],[-123.51635797631747,56.07039579495824],[-123.51249030712971,56.07094776476708],[-123.51020468273722,56.07526038726224],[-123.51034928520708,56.07628532033242],[-123.50823737309197,56.0801351052019],[-123.50584147442616,56.08159438444323],[-123.50104471165673,56.081536056391926],[-123.48546648276623,56.080287482296555],[-123.47927461801166,56.078873768120765],[-123.47689068259822,56.07786711965309],[-123.47302862182293,56.078310435715046],[-123.47190532106211,56.08100479504479],[-123.47255343201412,56.08471166894017],[-123.4712058020843,56.08713259310946],[-123.47274133189788,56.09031915643729],[-123.47399366184806,56.09063991706757],[-123.4764831932769,56.09478680799388],[-123.47486375184343,56.10069017475632],[-123.4734760808143,56.104984255557426],[-123.47318749752237,56.10847528895431],[-123.47456752837908,56.10982966842189],[-123.4762134806093,56.1130721812711],[-123.47449477919591,56.11623897118043],[-123.4745869015394,56.11857198383144],[-123.47098299629681,56.12095712858279],[-123.47055952518107,56.12353095731428],[-123.47082635298825,56.12489911233793],[-123.47320553138151,56.128532820632756],[-123.47421121793276,56.13120675719628],[-123.47672724152525,56.13271813459628],[-123.48036080187694,56.13416192133461],[-123.4820898351993,56.13688596686859],[-123.48215234574509,56.13842937702152],[-123.4839060375871,56.141781512990676],[-123.48659820695848,56.14534940487226],[-123.49103143044326,56.14895154732528],[-123.48980045785298,56.15205647173044],[-123.48768809309135,56.15556541977528],[-123.48681108176216,56.15969049123553],[-123.48837914720325,56.163442382688906],[-123.49439872263282,56.165999710558964],[-123.49896550117329,56.167550921735284],[-123.50019627220873,56.17028285344702],[-123.50168121806682,56.17460676728238],[-123.50263404105807,56.175620687665486],[-123.5077067767721,56.1771097476621],[-123.51254736816146,56.18048592314467],[-123.51158632955998,56.184950238964916],[-123.5057268951506,56.18718485898443],[-123.50056186969312,56.18890383419777],[-123.49806754867134,56.19053159127455],[-123.4976310910192,56.19281838368217],[-123.49904726436343,56.19772381248562],[-123.4934386155894,56.198519276154244],[-123.4886790058847,56.200183022017974],[-123.48862247596645,56.2043512489763],[-123.49022549339028,56.205817418465394],[-123.49464259670884,56.20902454436653],[-123.50081595343805,56.21232869368814],[-123.50891214485091,56.21515004728427],[-123.51621866601691,56.218717627802626],[-123.52622382397603,56.223350304875034],[-123.52683368561729,56.223164870484744],[-123.53831070273179,56.22292954268992],[-123.5420314219899,56.22624702657147],[-123.54152162728063,56.22922294348794],[-123.54255226583487,56.232129906970684],[-123.54608952008718,56.233229081221516],[-123.54925680571876,56.23559424700891],[-123.55105376249965,56.239968367676646],[-123.55246053202653,56.244639833684516],[-123.55249493291385,56.24538468746959],[-123.54983381066619,56.25095546133008],[-123.54496440491691,56.25250275031259],[-123.54145180617215,56.25459603727561],[-123.54283046107717,56.25841531089332],[-123.54764642455818,56.26109913653198],[-123.5510511493528,56.261514152700265],[-123.56058964341922,56.26140081181533],[-123.56436561216783,56.26079144681977],[-123.56350353409195,56.26216476557971],[-123.5619670595789,56.26527362326276],[-123.56033167038237,56.268147459587865],[-123.56000891721061,56.27021249946564],[-123.55865752373592,56.272679302275186],[-123.55564733707845,56.27448672990994],[-123.55209891783936,56.27583546634526],[-123.55328351006577,56.27708654220096],[-123.55925668365039,56.28307371488653],[-123.55922765657468,56.28483952422122],[-123.55637757673823,56.288479186894484],[-123.55435588028978,56.291811866058715],[-123.55501527651124,56.29551862586594],[-123.55833155682845,56.29662211381921],[-123.56055628751699,56.29809024062005],[-123.5625168554061,56.30120310067977],[-123.56579892119063,56.30391071043849],[-123.56498524890135,56.30683618594394],[-123.56278370742,56.31097258025444],[-123.56242067531433,56.314982613290155],[-123.56295984627194,56.31543224349159],[-123.56451959035874,56.31849260602467],[-123.56078331062052,56.320716814039756],[-123.55278820398345,56.321317278020906],[-123.54770059238486,56.32543409999659],[-123.54732286889819,56.33172136949731],[-123.55064817329017,56.33505786286057],[-123.55682492307807,56.33817974216379],[-123.56388463133764,56.342501701145345],[-123.56582297457541,56.3447084820898],[-123.5666427548484,56.350301254074736],[-123.56856423132481,56.35461480909885],[-123.57670095126086,56.354975324117326],[-123.58800385627511,56.354498366058706],[-123.60547794485083,56.353893904652985],[-123.61477192511296,56.354695056933885],[-123.616391254519,56.359531185240776],[-123.61790915737458,56.363908124156175],[-123.61745278530105,56.36820349964933],[-123.61231277733884,56.37106668716699],[-123.6108075691276,56.374454830842225],[-123.61227430230105,56.37780873636299],[-123.61525309135642,56.38006100931145],[-123.61966174380096,56.38229495307748],[-123.61891118408543,56.38395773129669],[-123.61530530309611,56.386921330394024],[-123.61559321862904,56.388854483613166],[-123.61284905240487,56.39231825753341],[-123.60700107676327,56.39581373110601],[-123.604345253123,56.398875510901114],[-123.60587546191839,56.40119955004305],[-123.60594578554692,56.40296728135046],[-123.60363040602999,56.406824487473315],[-123.60143060941638,56.40879186915207],[-123.59561465744987,56.41012654724974],[-123.58749485546986,56.41061959875738],[-123.57923052676527,56.410033402488025],[-123.56946513799019,56.410601832148934],[-123.55987570343204,56.41328904480079],[-123.55949159289854,56.41361911055576],[-123.55904949405114,56.41399963061758],[-123.55797238666723,56.41586439866645],[-123.55788242657924,56.41610142766533],[-123.55753818820264,56.41679988950488],[-123.55705780429733,56.41772665370823],[-123.55696453566368,56.418113814444396],[-123.55677611211695,56.41878834364817],[-123.55671829089236,56.41932301248514],[-123.55682679910466,56.4200233754245],[-123.5568511670201,56.420607807602266],[-123.55697905246609,56.42138812099192],[-123.55718412159574,56.421908744353125],[-123.55720132710059,56.42195838997403],[-123.55748174088298,56.422540974629484],[-123.55761413416934,56.42311961866556],[-123.55764593625581,56.423617886588204],[-123.55761890947447,56.42401751925346],[-123.5575646403386,56.424885153284684],[-123.55738626265078,56.425658513189425],[-123.55709550742807,56.426572082248896],[-123.55712047582065,56.42669249018896],[-123.55716398276725,56.426841272825826],[-123.55735797224995,56.42714984250784],[-123.55750922603976,56.427297314570964],[-123.55756778025899,56.42740042826157],[-123.55809445273832,56.42787897811139],[-123.55849457425963,56.42820492094769],[-123.55899636050185,56.42869196000642],[-123.5593638221346,56.42908565098998],[-123.55939824505182,56.429184941986954],[-123.55953132243638,56.42936344979196],[-123.55959492155426,56.42964599659104],[-123.5595891827606,56.42983531327689],[-123.55959016197451,56.4298846498929],[-123.55939101623903,56.43099051552714],[-123.55931481283177,56.43133204988037],[-123.55924489733754,56.43219042249397],[-123.55922894084344,56.432348160785786],[-123.55937432717485,56.43382486493433],[-123.55937089432035,56.43413976285278],[-123.55957493957332,56.43506835942789],[-123.55965506192182,56.435606778652925],[-123.55941782546451,56.43615148980344],[-123.55937856511753,56.43625946691301],[-123.55938905866978,56.43654660849359],[-123.55970194185169,56.43706703895113],[-123.55992056602074,56.43734020580607],[-123.559979981328,56.437397379312664],[-123.5603797975775,56.43782755044275],[-123.56060549698549,56.43798764303267],[-123.56085660447035,56.438228920737714],[-123.56124726343205,56.43844819187299],[-123.5622770517264,56.43904052742376],[-123.56252670599228,56.439272807110335],[-123.56259515979146,56.43938059006768],[-123.56270442054442,56.43955079594582],[-123.56272403185822,56.43975740803346],[-123.5626945104283,56.439937306751744],[-123.56287993087724,56.44025467210088],[-123.5630716423586,56.44043877348654],[-123.56321239595873,56.44052775383906],[-123.56334594298207,56.44063453102607],[-123.56349727162022,56.440781996986956],[-123.5635488612851,56.440867041789716],[-123.56355097923566,56.44106099202247],[-123.56336185401996,56.44168172329995],[-123.56325693249947,56.4424183824507],[-123.56306919405381,56.44301672288737],[-123.56300098399007,56.44342566519562],[-123.56285984827952,56.443961001418664],[-123.56252371486713,56.44468990639205],[-123.56232375846723,56.44502797285622],[-123.56169872145259,56.44566395938399],[-123.56160927056312,56.4457945222134],[-123.56128659643532,56.44620983715904],[-123.56107906539177,56.44666881244318],[-123.561099724217,56.44695614825958],[-123.56115740681227,56.44704131003437],[-123.56187566856168,56.44826438066222],[-123.56207197536185,56.44863575654469],[-123.56212456457864,56.4489326659358],[-123.56202863181841,56.44968743222488],[-123.56191329099471,56.45019972145686],[-123.56180080388181,56.45043857190797],[-123.56158183761441,56.45072247571583],[-123.56128928985436,56.45098032168724],[-123.56041427948092,56.45145127014423],[-123.56011352738344,56.45167757331236],[-123.55954960850127,56.45201656329925],[-123.5582882352808,56.45261913891823],[-123.55686529414466,56.453399088560495],[-123.55662164170423,56.45355697703994],[-123.55651430892934,56.45361546084383],[-123.55589312698321,56.453991455776965],[-123.55549346149247,56.45430329399399],[-123.55529054189988,56.45449221982693],[-123.55521841478824,56.45460517549646],[-123.5546782242706,56.4554075215192],[-123.55426499523445,56.455902922520536],[-123.55419713872418,56.45598009101018],[-123.55341183910038,56.456832684963416],[-123.55326854233948,56.45707542627165],[-123.5532384672489,56.45729566659445],[-123.55351010582442,56.457924055042845],[-123.55367540063135,56.45849773461634],[-123.55386249569538,56.459404731590936],[-123.55402453706354,56.459803491215915],[-123.55411167169312,56.46009994381739],[-123.55418462041911,56.46068755562359],[-123.55429855546275,56.461140321599004],[-123.55431828274072,56.461279686998104],[-123.55472154240117,56.462468781012774],[-123.55483438288456,56.462809437455526],[-123.55502811979845,56.463059722221494],[-123.55529503954793,56.46331027958999],[-123.5559948591634,56.46382351989871],[-123.55606117318013,56.46386849692532],[-123.55670996789576,56.46428772830105],[-123.55748573475884,56.464855087075506],[-123.55774400516549,56.46498441905483],[-123.55811733539082,56.46522466491888],[-123.55865320951577,56.46569441940101],[-123.558877800246,56.46593968032279],[-123.55949766372568,56.466529841801666],[-123.55976540607035,56.46686559208084],[-123.56012518013443,56.467160497352296],[-123.56069093955904,56.467575887512965],[-123.56089019661704,56.4676738276258],[-123.56118183748957,56.4678878525487],[-123.56171476495685,56.46817819620823],[-123.56186457970477,56.46825389890324],[-123.56214621084084,56.4684004784384],[-123.56320781604177,56.468821909049005],[-123.56369635303183,56.46897689563378],[-123.56413537009811,56.4690782592827],[-123.56506159543868,56.46925835745464],[-123.56628479905936,56.46943735352453],[-123.56651657290539,56.4695033953968],[-123.56673048029971,56.46952986738059],[-123.56680501093402,56.46957387341481],[-123.56709576051699,56.46963991104826],[-123.56745244192408,56.46982264797157],[-123.56763830294815,56.47003801584973],[-123.5677469101404,56.47025304079559],[-123.56776449947829,56.47029708837396],[-123.56780614375272,56.47083590019216],[-123.56775715655635,56.471393171086476],[-123.56762002937039,56.47218976199167],[-123.5676598388154,56.47266016578216],[-123.56769942670752,56.47306891691774],[-123.56777900147061,56.473423502333304],[-123.56778228571554,56.47372956552639],[-123.56773602848014,56.473949503204985],[-123.56735070504106,56.4751056804735],[-123.5673364647237,56.47536657662589],[-123.56744013319052,56.47569359698742],[-123.56773639779732,56.4761285078186],[-123.56819087770782,56.47670092045564],[-123.56861461499919,56.476951055527],[-123.56892126392961,56.47705662015963],[-123.5692204318787,56.47721696573308],[-123.56931116285416,56.477262397703015],[-123.56945262177918,56.477342416314066],[-123.56962015929722,56.47749354402968],[-123.56974553116028,56.47766853295557],[-123.57000379153254,56.478354917883365],[-123.57020212279609,56.4788933325703],[-123.57028701586111,56.47962015112153],[-123.5704129044711,56.480374646667634],[-123.57063027993566,56.48106474074123],[-123.57078561694856,56.48160794593512],[-123.57107713794122,56.482316255171824],[-123.57108781339426,56.482406127941225],[-123.57143662585996,56.48323993829721],[-123.57172458578272,56.48367916614357],[-123.57177533378842,56.48374625792777],[-123.57204250267176,56.48399678304731],[-123.57250903584955,56.48431272464116],[-123.57283257719764,56.48444213691738],[-123.57326374506948,56.48457470287061],[-123.57369447480514,56.484648972997356],[-123.57408294087907,56.48468321237157],[-123.57542971536803,56.48487901829609],[-123.57628915945874,56.48502750426264],[-123.57723382937334,56.48521233947477],[-123.5791795475057,56.48575566728001],[-123.57956099307984,56.485870461074796],[-123.58125688198194,56.48624427838042],[-123.58222486024074,56.4864149434785],[-123.58324326296342,56.48652714322255],[-123.58335839728392,56.486540518378185],[-123.58486905615655,56.48665411993347],[-123.58535763081662,56.48671486641403],[-123.58554735105949,56.48677223520928],[-123.58581269689589,56.4868568054483],[-123.58646155064116,56.48715482410973],[-123.58699213665287,56.487358705400496],[-123.58736549238357,56.48747332341031],[-123.58744700834995,56.48750399742721],[-123.5879766793672,56.487591285835045],[-123.58907562911077,56.48768477525619],[-123.58969626829179,56.487781610076986],[-123.59151798601032,56.48816325444692],[-123.59203040724856,56.48829952100686],[-123.59234591770071,56.48842873201012],[-123.59247923931343,56.488477186957454],[-123.59346601518892,56.488872293384745],[-123.59432291531137,56.489295223295],[-123.595031173984,56.48968734240007],[-123.59578557692421,56.49002427725566],[-123.5959186621428,56.49010971299819],[-123.59628486908834,56.4902421044954],[-123.59645811867387,56.49033613737209],[-123.59681520336652,56.49045154346198],[-123.5969748501909,56.49053523323384],[-123.59771995854469,56.49079240017195],[-123.59918980898357,56.49137359253663],[-123.60000094636065,56.49168241921417],[-123.60111636735155,56.492105648128586],[-123.6014786494733,56.49226933548248],[-123.60161922966832,56.49233248748421],[-123.60188602685739,56.492460764622535],[-123.60220132816352,56.49259443005179],[-123.60260761081089,56.49280377036647],[-123.60283121850871,56.492972711788916],[-123.6029573399174,56.493138712916654],[-123.60306080359018,56.49347466411426],[-123.60314876650739,56.4937979964203],[-123.60328349586496,56.494452859360074],[-123.60327726331055,56.49514992759258],[-123.60328497614523,56.49571947637493],[-123.60335191006423,56.49628564659159],[-123.60331294608964,56.49691933576486],[-123.6033387038616,56.49795662738024],[-123.60336557555217,56.49917440161021],[-123.60338491127486,56.499919025306745],[-123.6034785574288,56.49991853029772],[-123.60344107600011,56.499998534412086],[-123.60324374517396,56.50042751264047],[-123.60309994274128,56.50064788496142],[-123.60296365031856,56.500878485193354],[-123.6028198446394,56.50109885725118],[-123.60265657078197,56.501337920917514],[-123.60246049337115,56.5015808558702],[-123.60228501794728,56.50181969152816],[-123.60212246030167,56.50201393288038],[-123.6019391923995,56.50218088643111],[-123.6016172704121,56.50228584510374],[-123.60161620352781,56.502402396769426],[-123.60140271297367,56.5024981700469],[-123.60127935940112,56.50258441690678],[-123.60113753654079,56.50270618704943],[-123.60102062513546,56.50278694955736],[-123.6009375494078,56.50291317896068],[-123.60042778852424,56.50332511187786],[-123.60029288651441,56.50343355989366],[-123.60000116457516,56.50367582647868],[-123.59979537893398,56.50384459861625],[-123.59966526473632,56.50390830019926],[-123.59938525677016,56.504026366413626],[-123.59896903174587,56.50420801895663],[-123.59887467753269,56.504351970686535],[-123.59880640299498,56.504568146244196],[-123.59890101834107,56.50468424433627],[-123.59902864211554,56.50485924504515],[-123.59919917150883,56.504965552473216],[-123.59951445130855,56.50533236695252],[-123.59960166377965,56.50540349087351],[-123.59970848200844,56.505519816285464],[-123.59991119204378,56.505896856719374],[-123.60000009078384,56.506105880523535],[-123.60002138525155,56.50615671798813],[-123.60013571693345,56.506349403436545],[-123.60031035434501,56.50655442377115],[-123.60043247519963,56.50681899095759],[-123.60051634735316,56.507043612924825],[-123.6006068704984,56.5073255241074],[-123.60070022216868,56.50749539964909],[-123.60066065237889,56.508138048390165],[-123.60086479752057,56.508591334335485],[-123.60106401938823,56.50902547303124],[-123.60108548906368,56.50910657749661],[-123.60161531507164,56.50949420453813],[-123.60161566106154,56.509620870963474],[-123.60219885127671,56.51013390954334],[-123.60244820089753,56.510415420033624],[-123.60270486093012,56.510710516993534],[-123.60296845148241,56.510992292057146],[-123.60325737794341,56.51129247318962],[-123.60351970444962,56.51162802595749],[-123.60378947620733,56.51190879361576],[-123.60407231548199,56.512208859322286],[-123.60429578126734,56.51258067518438],[-123.6043264260699,56.51264513684184],[-123.60479773704455,56.512992428290836],[-123.60589859686957,56.5129344771417],[-123.60609745627734,56.512878774344095],[-123.60622837668166,56.51276912436773],[-123.60654841983569,56.51249710553889],[-123.60684809455527,56.5122583332725],[-123.6070762518422,56.512023833287635],[-123.60729841444497,56.51182060609572],[-123.60752074123334,56.511581513395],[-123.60780102016383,56.5112605537864],[-123.60797771287018,56.51103518253418],[-123.60823104095371,56.51075519323057],[-123.6084597872626,56.51044448230604],[-123.60866237147486,56.51012880076818],[-123.60885774017558,56.50976478689317],[-123.6090400943844,56.50948011325381],[-123.60916279379236,56.50920553846733],[-123.60932615684055,56.5089317200862],[-123.60952141834827,56.5087683411653],[-123.60955118898322,56.50874759820783],[-123.61001942938765,56.50801652654347],[-123.61169340709576,56.507206988845496],[-123.61383991659831,56.50645776638126],[-123.61548602447834,56.50606799332207],[-123.61712566412238,56.50578344210531],[-123.61979717646072,56.50583295277322],[-123.62313352673473,56.50589470662933],[-123.62484634529241,56.50597793619808],[-123.62645596345469,56.50621840016232],[-123.62823553692675,56.506776944643406],[-123.62973168027729,56.5072775555221],[-123.63066605531537,56.50761087085181],[-123.63207832551831,56.507951864768955],[-123.63337599267318,56.50702975735372],[-123.63494872590584,56.50626962219082],[-123.63593093873604,56.50581469050827],[-123.63719022536988,56.50552288848905],[-123.64010493060034,56.50468200074503],[-123.64174114782736,56.504449757742144],[-123.64393482826164,56.50448999774953],[-123.64576218986764,56.50426008781364],[-123.64895050585329,56.50363585957895],[-123.6498045591174,56.50354724324451],[-123.65154335168774,56.50336719204494],[-123.65384830551362,56.50314701770833],[-123.6551618982143,56.503538634866885],[-123.65567000568555,56.504599265832205],[-123.65602064275323,56.505131342364265],[-123.65702234154658,56.505938690591904],[-123.65766714423523,56.506318085099174],[-123.65838935559398,56.50669664503388],[-123.65846431485883,56.50670249429187],[-123.65921076831245,56.50671160975465],[-123.6600366168062,56.50678829685131],[-123.66069811459727,56.50685638268777],[-123.66126146553034,56.50689802020886],[-123.6619875240726,56.50690786915171],[-123.66257075089965,56.506855711031925],[-123.66330343640178,56.50672108338263],[-123.66392424345389,56.506619164283244],[-123.66460414412849,56.50651607448244],[-123.66539608884976,56.506445279640566],[-123.66555434252442,56.50645375878677],[-123.66846501696098,56.50614680842824],[-123.67031111983195,56.50560193280822],[-123.67185484851191,56.50531383163653],[-123.67428355705233,56.50462253670383],[-123.67633316631957,56.50387054257758],[-123.67770959109822,56.50321171206302],[-123.67905259818565,56.50307905905034],[-123.68002488492175,56.502780540265086],[-123.68127748166133,56.502593552653394],[-123.68294341665872,56.50346423235352],[-123.68418045312785,56.50353921167119],[-123.685383181922,56.504191913076674],[-123.68667635121936,56.504898910211764],[-123.68807346978248,56.50550128442097],[-123.68947470562425,56.50600059993214],[-123.69049895043388,56.50643932496858],[-123.69160014353322,56.50719437863208],[-123.69202504164159,56.50809643733547],[-123.69262666335001,56.50921126410759],[-123.69325629058807,56.50985359762792],[-123.69505566346992,56.51009547740412],[-123.697067905346,56.50997351230525],[-123.69718888133039,56.51095753139197],[-123.69724439305817,56.51105155532907],[-123.69714273978775,56.51139383043615],[-123.69710523024287,56.51175294657954],[-123.69730411974655,56.51214207755646],[-123.69748772387692,56.51241100496124],[-123.69786373827012,56.51279994550558],[-123.69828550781114,56.51313814582686],[-123.69869979514326,56.5134997482801],[-123.69906025676487,56.513807706488905],[-123.69941029151153,56.51411996035005],[-123.69977898066657,56.514392196951796],[-123.70048035662103,56.51478807242512],[-123.700659259856,56.5149302565122],[-123.70098102137872,56.51513552070961],[-123.70143986017005,56.51543290224352],[-123.70177047755112,56.51566073944305],[-123.70200703290328,56.51586111495559],[-123.70252019158085,56.51620429696559],[-123.70287566340784,56.51649422136426],[-123.70326279790584,56.516868773123704],[-123.70366572411022,56.51732094341207],[-123.70390259370295,56.517619954394185],[-123.70428478089285,56.51794061444014],[-123.70467839698621,56.51824018148838],[-123.70500188934471,56.51852056198881],[-123.70520040734401,56.518779656506624],[-123.70528724083384,56.51910288640878],[-123.7053337036843,56.519281928676655],[-123.70557211470992,56.51955518473297],[-123.70581537805107,56.519849822802975],[-123.70582272252166,56.51986340390445],[-123.7045997259369,56.51988640570023],[-123.702750322747,56.52048440155578],[-123.70119697158692,56.52092962796866],[-123.69887879979791,56.52136114866945],[-123.69599206271815,56.52173088137898],[-123.69378184749628,56.52195352844138],[-123.69194777026951,56.52228825078404],[-123.6905833255708,56.522737865038955],[-123.68970316890359,56.52308968876446],[-123.68759358380848,56.524839513656154],[-123.68696274064845,56.52582684207619],[-123.68687958457393,56.526266960625804],[-123.68643481957527,56.52665798067276],[-123.68419814513324,56.527354113550075],[-123.68119654749874,56.52803529587776],[-123.67896393812039,56.52862605429743],[-123.67936342599224,56.529953632092784],[-123.67944173269375,56.53021172119687],[-123.68004223553886,56.53137927983708],[-123.6803726055762,56.53222700260752],[-123.67988321362202,56.53268108742047],[-123.67926019213101,56.53325829516284],[-123.67823707376849,56.534396552606296],[-123.67875272750068,56.53504026722184],[-123.6793043891219,56.535729463808984],[-123.68145920409432,56.53645205354551],[-123.68363914225766,56.536753616214774],[-123.6847701804412,56.53698470365261],[-123.68595525446135,56.53795203497516],[-123.68713726152174,56.53897197991179],[-123.68880794061302,56.53979109544638],[-123.69003059857491,56.54012802077613],[-123.69096315656986,56.54051352751649],[-123.69129078776149,56.54141273078971],[-123.6917316514327,56.542051685156316],[-123.69235867574139,56.54274665818575],[-123.69315838459255,56.543759685646755],[-123.69310550882196,56.544652059999414],[-123.69264708584447,56.545958603533705],[-123.69288537867348,56.546750840656614],[-123.69358220267704,56.547920061701205],[-123.6952410048758,56.54894847573986],[-123.69692162284352,56.54960961656421],[-123.69825893138548,56.5496335502141],[-123.69979797961061,56.54945035617603],[-123.70153138790761,56.549219057331705],[-123.70267735242041,56.54923952648402],[-123.70373385977041,56.54915302842582],[-123.70535815684718,56.54918201072243],[-123.70818494240959,56.5498634396143],[-123.70921984239327,56.55014415080426],[-123.71127211499316,56.550969756582646],[-123.71394684471366,56.55101731177503],[-123.7161442740463,56.55100365926687],[-123.71778099904499,56.55082198449933],[-123.72028077436255,56.55055134658074],[-123.72218703967621,56.550637791123],[-123.72362007009045,56.55066315507639],[-123.72487713869384,56.55042199309935],[-123.72405036803166,56.55145872181838],[-123.7244673369977,56.55251745002525],[-123.72450770286905,56.553465278447376],[-123.72397097676125,56.554454459039626],[-123.72325105014355,56.555335037169485],[-123.72220406480912,56.55689354070309],[-123.72076498927801,56.55860313406185],[-123.71964702539529,56.5613697655781],[-123.71977379755099,56.562476052363124],[-123.7226325330453,56.56263203343287],[-123.72517251605782,56.56335955495111],[-123.72740193104504,56.56445030103877],[-123.72964879440585,56.5652790357772],[-123.7312534027466,56.56562229065736],[-123.7326533252114,56.56622531888504],[-123.73374776689012,56.56713903222647],[-123.73608253948387,56.568073437493446],[-123.73777385595682,56.56857617324678],[-123.74035105550487,56.5686741238782],[-123.74128791565639,56.569005525681035],[-123.74181443148296,56.56980384004524],[-123.74175958143645,56.570748872633075],[-123.7396089346301,56.57155288103771],[-123.73734627717587,56.57266872476163],[-123.73528809732768,56.57352697060777],[-123.73329809081665,56.574858265460065],[-123.73159611733907,56.57614304917138],[-123.72932778908803,56.57731246470816],[-123.72792712955832,56.57839179830248],[-123.72735030648364,56.58006290665393],[-123.7269822123664,56.58147653917717],[-123.72693621207085,56.58226369267902],[-123.72708883504693,56.582897432207325],[-123.72515026448744,56.58333620093181],[-123.72298683604538,56.5833999589875],[-123.7217978674308,56.58343497066572],[-123.71971385443616,56.583083116911084],[-123.7185668841888,56.5830627990953],[-123.71695246722798,56.582876141155765],[-123.7147573848618,56.58278451966187],[-123.71259010118503,56.58222034766602],[-123.71099426406609,56.58171897972607],[-123.70800456859311,56.580509054878334],[-123.70592963855964,56.581079612532534],[-123.70573079229744,56.58106261889365],[-123.70512014975887,56.581147010257716],[-123.70451678278123,56.58128084688452],[-123.70385506149279,56.58140131049521],[-123.70316731596927,56.581513460425064],[-123.70253258559208,56.58166017899025],[-123.70200825425616,56.58180213973481],[-123.70142568724052,56.5819632345253],[-123.70093412669647,56.58213716059729],[-123.7003126810847,56.58236929234475],[-123.69971646914621,56.582588421560104],[-123.69932456806966,56.582801111158965],[-123.69878714207456,56.58306051741613],[-123.69826325760872,56.583297746130654],[-123.69766064302834,56.5835212354525],[-123.69670618348489,56.5838314615266],[-123.69579422629297,56.58414692496614],[-123.69504178051623,56.584420402606696],[-123.69429588030064,56.584720894407724],[-123.69358247829271,56.58505783243328],[-123.69300540994801,56.58533107749637],[-123.69256104974822,56.58567058856293],[-123.69216340855469,56.586013177398776],[-123.6916534378793,56.586358235101066],[-123.6911898332769,56.58664359469529],[-123.69063210615823,56.586830868868255],[-123.69044627833958,56.58686900873626],[-123.68951223017721,56.587485551960484],[-123.68909064145488,56.58816172637199],[-123.68867012831406,56.588785237610566],[-123.68587725329222,56.589102730016535],[-123.68552191303195,56.58904142055022],[-123.68284707620583,56.58857522677959],[-123.68105670135868,56.58812266511742],[-123.67808164703045,56.58827978319677],[-123.67597896810328,56.58824185242209],[-123.67435509968467,56.58821253549719],[-123.67395467057574,56.58853036195368],[-123.67345134364807,56.588931516226694],[-123.67224765980423,56.58985579854795],[-123.67209986590622,56.59232470095018],[-123.67223798805888,56.59322055177941],[-123.67257816310142,56.593910446583614],[-123.6732203154493,56.59439506782063],[-123.67395937182076,56.59482875369236],[-123.6732374988287,56.59571019046387],[-123.67314951918453,56.59718034000748],[-123.67343949356133,56.598710000363944],[-123.67357137114021,56.599711103659864],[-123.67358221593759,56.6000072170616],[-123.6736043143622,56.600763102814504],[-123.67375503002833,56.601449573938574],[-123.67553020048545,56.602165367947514],[-123.67731172480497,56.60277588660012],[-123.67850490366703,56.60363806908414],[-123.6791076159085,56.60475301506938],[-123.6790699784044,56.60538340373681],[-123.67604024407817,56.60643287403319],[-123.67359575871745,56.60728211593472],[-123.67172287578057,56.60819432732449],[-123.67079653168942,56.60928167662078],[-123.6696407086447,56.61099594197107],[-123.66954624731638,56.61257135260443],[-123.66986340838847,56.61368118462776],[-123.672310958768,56.61435649312925],[-123.67351061592052,56.615114595345794],[-123.67364255097995,56.61611570749933],[-123.67260139549113,56.61751598020361],[-123.67225098360272,56.618561066178316],[-123.67162446927179,56.6194442363006],[-123.6708969598131,56.62037714117077],[-123.672454993098,56.62156207146064],[-123.67277657530252,56.622566612871665],[-123.67348360696943,56.62357811197105],[-123.67456685069422,56.62464907819603],[-123.67469884532538,56.62565019450363],[-123.67434211608833,56.62680054325714],[-123.67400000837257,56.627740423642905],[-123.67338395285338,56.62841306497597],[-123.67325664145925,56.62893647736451],[-123.673292752829,56.62993586712866],[-123.67247126038643,56.63086709276266],[-123.66990292184452,56.63218821867178],[-123.66773797727868,56.633147812150256],[-123.66535594126735,56.63452378752957],[-123.6638977041031,56.63649598448584],[-123.66275026763307,56.63805233484493],[-123.66219819761812,56.639250688038466],[-123.66259225251557,56.6406780506237],[-123.66382214903537,56.640909953641376],[-123.66514043299416,56.6413026172068],[-123.6659509493134,56.64215798816501],[-123.66620391101466,56.642740966498145],[-123.66710721688152,56.64365069290817],[-123.66764270183698,56.644291462912356],[-123.66821308047274,56.64598429448347],[-123.66748499203767,56.64691719379492],[-123.66627930210828,56.64784256942717],[-123.66507249815211,56.648819478120686],[-123.66435377797035,56.6495944812936],[-123.66429059906389,56.650644774708475],[-123.66443501242075,56.65143652893664],[-123.66439392579358,56.65211955623426],[-123.66478199075878,56.65297064831201],[-123.66500173053907,56.65298583586692],[-123.6657046842724,56.653017615592574],[-123.66628991807217,56.65310442934958],[-123.66718438109076,56.653247275677806],[-123.66846553985552,56.65331303609119],[-123.66964802570298,56.65342295935248],[-123.67051574973917,56.65353503393215],[-123.6715304093736,56.65371813217345],[-123.67281262804973,56.65397106405761],[-123.6738844172992,56.6541899230828],[-123.67478601524363,56.65441915634052],[-123.67561510244651,56.65449462968685],[-123.6764217177193,56.65446768803124],[-123.67741302231249,56.65442725307794],[-123.67816897805011,56.6544274116257],[-123.67930528812239,56.654353702489665],[-123.68017894778914,56.654298799489155],[-123.68118212078765,56.65423052594805],[-123.68183227425868,56.65415477972548],[-123.68237582855397,56.654084961454984],[-123.68293373426286,56.65401427780837],[-123.68368348551432,56.65394703706237],[-123.68432059035207,56.65395287187189],[-123.68507739470154,56.65410993515933],[-123.68553894499685,56.65431886370401],[-123.68598867673212,56.654657606057775],[-123.68639894269918,56.655041596918025],[-123.68667138931755,56.65537267310735],[-123.6868773935694,56.655721613019885],[-123.68705672170013,56.65600393956582],[-123.68727658002614,56.65632622499225],[-123.6875737891483,56.65658488288501],[-123.68793158235023,56.656924211813255],[-123.688163058971,56.65722316443032],[-123.6884683682684,56.657586211605654],[-123.68873490148293,56.657948563291356],[-123.68904107947269,56.658400177930275],[-123.68926824114907,56.65877191152536],[-123.6894752616518,56.65913880026972],[-123.68966029902498,56.6594974484964],[-123.68992657863132,56.65969277481133],[-123.69031982366293,56.65978052279851],[-123.69074111508658,56.65987773902875],[-123.69129446773078,56.66002215440669],[-123.69197345096343,56.66018450801788],[-123.69236830307716,56.66034850143154],[-123.69253491188155,56.660536434574325],[-123.69279422507721,56.660849327485764],[-123.6930665007866,56.661184870202206],[-123.6932926526584,56.6615745131016],[-123.69349794795562,56.66183375510611],[-123.69380340615015,56.66209254543356],[-123.6940732084894,56.6622980141079],[-123.69437139363669,56.66250735220836],[-123.69484008892714,56.662804926765574],[-123.69542741290978,56.66306650707606],[-123.69596125917704,56.66323072983786],[-123.69665875743661,56.663392267460175],[-123.69721787724747,56.66347510841691],[-123.69764550069746,56.66353542372032],[-123.69813275832452,56.663658452515875],[-123.69844292617728,56.66380410176769],[-123.69879376010725,56.66402221486704],[-123.69915019144052,56.66424939420025],[-123.69962510382706,56.66461543802282],[-123.70006229775073,56.66496287283491],[-123.70056444579532,56.665283440549615],[-123.70119153526453,56.665599506777035],[-123.701904500144,56.66594960625223],[-123.70234621051412,56.66611776523998],[-123.7029005311947,56.66631707160849],[-123.70345443546158,56.66659259105034],[-123.70401465941123,56.66689960638894],[-123.70459609211585,56.667228294073915],[-123.70512517960516,56.667543717876626],[-123.70548878785631,56.667788941371946],[-123.7058856993274,56.66812779271278],[-123.7062511316754,56.668480655228734],[-123.70657627479271,56.66878908449178],[-123.70682044252592,56.66898061853851],[-123.70717099130752,56.669135930945004],[-123.70767816324962,56.66930411316646],[-123.70814635565378,56.669440215117],[-123.70866539743365,56.6695805810402],[-123.70939117105603,56.6698198933479],[-123.71000987410146,56.66996874834273],[-123.71061568226287,56.67005908346494],[-123.71122892341575,56.67023137498701],[-123.71187483443357,56.67043899145227],[-123.71246681924765,56.670555974757164],[-123.7126868091584,56.67056884174245],[-123.71309826971681,56.67059294823687],[-123.7134964341177,56.6705305067405],[-123.71427877523729,56.67067775657374],[-123.71563265618516,56.67049099742719],[-123.71662427056424,56.66993015239669],[-123.71743624466987,56.66915651080465],[-123.71854232257549,56.668281578079565],[-123.72095264666217,56.6680618777411],[-123.7224126103282,56.66766731215354],[-123.72415739949916,56.6673293168206],[-123.7259918836383,56.66709936617312],[-123.72705462822547,56.66696004248615],[-123.72812654131461,56.666663943784584],[-123.7292076752233,56.66620995015913],[-123.73077778967543,56.66560650031159],[-123.73252849692913,56.665164254584425],[-123.7334146246385,56.664758362358945],[-123.73455787257367,56.664883806402415],[-123.7365289733323,56.6656021543734],[-123.73801729618,56.66636469132451],[-123.74054290751477,56.66746035337155],[-123.74314122485309,56.6689248932791],[-123.74514457300883,56.67074776207575],[-123.74592696333266,56.672127816689425],[-123.74624475253282,56.67323746125219],[-123.74675961178923,56.674297863609944],[-123.74835816939823,56.67648127067433],[-123.74932360299921,56.678022546598115],[-123.75009706832296,56.67956159010648],[-123.75169344124274,56.68016667559039],[-123.75541677074273,56.68044220807499],[-123.75844294267237,56.68117854997619],[-123.75992020338576,56.68215024071047],[-123.761000397131,56.68337844034717],[-123.76188568167929,56.68465481323114],[-123.76302566120431,56.686515103085355],[-123.76444270996717,56.688537108288344],[-123.76570919366816,56.68987385850598],[-123.76622276262384,56.690934157918974],[-123.76703654323278,56.691788916829374],[-123.76767268334633,56.69406079251585],[-123.76855231074501,56.6954435082557],[-123.76953415233427,56.69672149702828],[-123.76966278942034,56.697827817040434],[-123.77026557598008,56.69904769108399],[-123.7708065542349,56.69963542162694],[-123.77078492662271,56.70001167501191],[-123.77074012523425,56.70079105727219],[-123.77155421215625,56.7016457925697],[-123.76994300859695,56.70298549673116],[-123.76839925019351,56.70311575922733],[-123.76747306209465,56.70332057271067],[-123.76732596729428,56.703352778327826],[-123.76597086813436,56.70365216934065],[-123.76497303834783,56.704318665506904],[-123.76395399400745,56.70535244921172],[-123.7631400818368,56.70612748370444],[-123.76314154419408,56.706137597317365],[-123.76302330006595,56.70627230178691],[-123.76302344079475,56.70644716789791],[-123.76305062042776,56.70668527390418],[-123.7631496036576,56.70709724534849],[-123.76315334484231,56.70713878423096],[-123.76319071591274,56.707519423820074],[-123.76313058803504,56.70785241722826],[-123.76284897067043,56.70815915624108],[-123.7627000206092,56.70825858027435],[-123.7625596975963,56.70835030713654],[-123.76231734998596,56.70847277318822],[-123.76214629406394,56.70867157582091],[-123.76204758852695,56.70889292937507],[-123.76210217494106,56.70911693883161],[-123.76227973649924,56.709408092302105],[-123.7624507405985,56.709671108855055],[-123.76258430967525,56.70994468600022],[-123.76260450993149,56.71030373145869],[-123.76259198997953,56.710591592032806],[-123.76256614789068,56.71093302626535],[-123.76254848143466,56.71127460217835],[-123.76255468021432,56.711557182523705],[-123.76254977073225,56.71192588172205],[-123.76258956512217,56.71240632687383],[-123.76260835923736,56.71257703301751],[-123.76257102684328,56.712904817549926],[-123.76252519417271,56.713238059546605],[-123.76252652926303,56.713534007084405],[-123.76257278790442,56.71390247201175],[-123.76257401083735,56.71427127792653],[-123.76259663326174,56.715120211191426],[-123.76246367893904,56.71533200556361],[-123.76220195166144,56.71561218776362],[-123.76188077387411,56.71603593931908],[-123.76164452917422,56.7164062363721],[-123.76100787463,56.717367049615284],[-123.76066686004323,56.71788573431181],[-123.76043039838748,56.71825938897104],[-123.76009086871849,56.7188229356504],[-123.75974830237114,56.71933262444796],[-123.75927068389096,56.71998344981839],[-123.75892279461391,56.72040785397647],[-123.7586675211784,56.72085852457941],[-123.75830608279857,56.721269241316044],[-123.75795716325916,56.72167569076676],[-123.75764331831095,56.722077143526874],[-123.75732033818474,56.72238876242977],[-123.75684014716435,56.7227290377317],[-123.75629604004918,56.72300655018674],[-123.75584182040437,56.72321612368941],[-123.75580200831395,56.72337348416845],[-123.75586248384363,56.7235662145028],[-123.75595405851394,56.72385812727149],[-123.75614725591775,56.72419776309032],[-123.75623912336555,56.724449327082006],[-123.75635956411735,56.72484374606486],[-123.75649119215252,56.72508030716238],[-123.75679462308243,56.72542521867306],[-123.75694056917412,56.72566202786312],[-123.75696694719086,56.72591357555868],[-123.75700591841155,56.726159737181035],[-123.75725751495904,56.72637484013],[-123.75761345747988,56.726520013311166],[-123.7581656415139,56.72666971099796],[-123.75873218092045,56.72685440427404],[-123.75936485704909,56.727134400393155],[-123.75997099735167,56.727448682362464],[-123.76050566694155,56.72772473194368],[-123.76116421692772,56.72805336756095],[-123.76175831068043,56.72836406931211],[-123.7622314474168,56.728571789575795],[-123.76254125224517,56.728772196577594],[-123.76289714825278,56.728954344767324],[-123.76334569407355,56.72916275604806],[-123.76373358333682,56.729393655784236],[-123.76393970879795,56.72965279572664],[-123.7638558454976,56.730183789277454],[-123.76386149432706,56.73054707037215],[-123.7638627300463,56.730915879869215],[-123.76382412097888,56.73123019507277],[-123.76373216385423,56.731617569117766],[-123.76353598708081,56.73207263794263],[-123.76331940082454,56.73245561344322],[-123.76312974403895,56.73279758009803],[-123.76282836856272,56.73323065079143],[-123.762611728118,56.733578875552574],[-123.76242130770596,56.733898409592236],[-123.76221849949505,56.73429059006891],[-123.76215888784428,56.73454289036755],[-123.76217329289993,56.73478974656628],[-123.76226065704287,56.735084945432256],[-123.76233892805458,56.73550216935033],[-123.76238083766094,56.735910917244276],[-123.76245991174314,56.73627883374351],[-123.76258047652577,56.73663737997456],[-123.76275069077792,56.73702256712998],[-123.76304907505033,56.737492921885206],[-123.76329308564473,56.73784127342363],[-123.76349730910877,56.73824049942787],[-123.7639015520188,56.738934630207844],[-123.76417948742208,56.73944049880718],[-123.76431770978824,56.739919289875495],[-123.76436582633953,56.740256404769916],[-123.76432658574178,56.74065253985205],[-123.76436658553902,56.74098839355908],[-123.76458485840577,56.74114461641682],[-123.76486157299937,56.74128167238394],[-123.76531619341074,56.74142292414971],[-123.76597430452922,56.74165736641431],[-123.76663507048828,56.74184589244685],[-123.76739864761765,56.74213371258003],[-123.76792650593605,56.74235468564905],[-123.7689072493624,56.74267651138638],[-123.76991047743213,56.743070457596964],[-123.77042404280768,56.74329117357287],[-123.77114850150106,56.743548030778754],[-123.77152459584129,56.74370247845829],[-123.77211140536099,56.74386055637492],[-123.77244808729965,56.74395267033689],[-123.77280263859622,56.74412579898706],[-123.77316664944996,56.74431254085393],[-123.77324549116557,56.74443720232453],[-123.77335238947575,56.74475066505417],[-123.77339907370882,56.74504291377457],[-123.77347213354327,56.745410719823845],[-123.7734665790363,56.74572112497908],[-123.77345902904207,56.74606624502626],[-123.77344782381198,56.7464393257519],[-123.77341617324097,56.7467761843115],[-123.7732925199895,56.74711033754464],[-123.77330648565429,56.74736615301095],[-123.7732993423923,56.74781104435753],[-123.77332834657284,56.748197148338406],[-123.77337455619838,56.74856897641886],[-123.7736586473017,56.74886419279503],[-123.77400173168839,56.74905953922504],[-123.77452870545491,56.74926253365659],[-123.77511628191583,56.74951589018506],[-123.77550367330517,56.74976019542374],[-123.77578327055569,56.74999143582934],[-123.77599290675369,56.75026406814923],[-123.77623808990919,56.75055973033053],[-123.77675338509187,56.751216496615136],[-123.77663593825446,56.751585509649715],[-123.776569259829,56.751748020976535],[-123.77674824000819,56.75194838454577],[-123.77697939460262,56.75216757993126],[-123.77747491815065,56.752312852915985],[-123.77792876977787,56.75239911878508],[-123.77840302129741,56.752486854452876],[-123.77920107363667,56.752642922565364],[-123.77997068565058,56.75275926438748],[-123.78040658122804,56.75283736652917],[-123.78088678993826,56.75292855800614],[-123.78149474010033,56.753149726733945],[-123.78212757297997,56.75336571457026],[-123.78253604475421,56.753457911272946],[-123.78386610975924,56.75355245249338],[-123.78460449389455,56.75357070918582],[-123.785052249972,56.753513364705306],[-123.78540652241237,56.75337146813898],[-123.78576200620198,56.75324416362827],[-123.78609804717046,56.75313446036683],[-123.78646790865935,56.753113889473155],[-123.78709898217942,56.75321772840944],[-123.78778485915377,56.75340208848326],[-123.7883060813233,56.753564572840695],[-123.7889443301865,56.75375820045828],[-123.78962459898986,56.75396935717335],[-123.79016400081588,56.754208368429346],[-123.79079792355392,56.75444226650842],[-123.7914507873962,56.754739257437095],[-123.79207187386324,56.75498301829224],[-123.79267021055202,56.75530261157906],[-123.79309364820038,56.755564291424186],[-123.79332465712153,56.755752067356774],[-123.79328010531567,56.755922810748],[-123.7931553687247,56.75617065157321],[-123.7930445003661,56.75635483548079],[-123.79299118649872,56.75653551779279],[-123.79298482113202,56.75679098332257],[-123.79282804254566,56.757061816956586],[-123.79278221049066,56.757254957319326],[-123.79287464139074,56.75743028047098],[-123.79311365490209,56.75762155624455],[-123.7934679085584,56.75776771829783],[-123.79393644549575,56.757885563443764],[-123.79437192210338,56.75800844773216],[-123.79476072570137,56.75819554917694],[-123.79495389445775,56.75836474183413],[-123.79521059651535,56.75867737661511],[-123.79544913214554,56.758949347392075],[-123.79565325507073,56.75917813548629],[-123.79588591207593,56.759445521480735],[-123.79615669304408,56.75972700795268],[-123.79639472462455,56.75997206578873],[-123.79658503435279,56.760155779424544],[-123.79685095973133,56.76041476287293],[-123.7971878847132,56.76068616439634],[-123.79722763995932,56.760851619651575],[-123.79724176865584,56.76110743461785],[-123.79722256893652,56.761336900383746],[-123.79723537617275,56.76168797286308],[-123.7972894760337,56.76192541267701],[-123.79731563115105,56.76218591635886],[-123.79698776982889,56.76247514005481],[-123.79680986045348,56.76261334835788],[-123.79900830920279,56.76394434258315],[-123.80000693269874,56.764470238392896],[-123.80096777363035,56.76497642789434],[-123.8026148887699,56.7664235297183],[-123.80370774457343,56.76749353199466],[-123.8057676458836,56.7684218783354],[-123.80745277852873,56.76923959210444],[-123.80751030610158,56.76992434100048],[-123.80699350859204,56.77054667157465],[-123.80711457996796,56.77180978371614],[-123.80697667797322,56.77254390568062],[-123.806556061385,56.77316786649332],[-123.80593315686716,56.77399801276247],[-123.8048081886384,56.77518843084508],[-123.80380028841574,56.77601203668139],[-123.80353328414692,56.777322375880935],[-123.8033595760916,56.77868586335918],[-123.80311936341162,56.77952361833328],[-123.80239107490618,56.78051001862835],[-123.80109724159819,56.78127606843581],[-123.80009801592905,56.781942866503385],[-123.80000565360277,56.78208926212256],[-123.79957101610573,56.782775742558954],[-123.7985060452408,56.78459711682562],[-123.79815752084426,56.785642644339816],[-123.79694470665962,56.78667346274342],[-123.7962884064006,56.7880825438018],[-123.79622558413772,56.78918561908505],[-123.79587395856872,56.79028377747476],[-123.79562457969686,56.791278306939546],[-123.79520862410337,56.79184963870989],[-123.79002654642493,56.79333846467504],[-123.78581082057403,56.79473825310972],[-123.7810582720733,56.79544603843134],[-123.77755013841778,56.79622658746569],[-123.77807656085982,56.797129040131566],[-123.77969700029158,56.799050167454986],[-123.77981829812106,56.80000956026207],[-123.77982928897931,56.80010391066559],[-123.78046494088308,56.80242850374014],[-123.77912165214978,56.804035370879184],[-123.77728977109516,56.805790778659926],[-123.77608182231123,56.80671614591377],[-123.77498704172673,56.80724213618018],[-123.77482728990037,56.807380634899786],[-123.77440805847151,56.80771532994488],[-123.77377630614328,56.807822173599206],[-123.7731888859742,56.80787148544004],[-123.77280773234472,56.80790080182613],[-123.77226728087003,56.80802490234039],[-123.77174268743771,56.8081941129461],[-123.77118985294256,56.808354988549326],[-123.77069624604276,56.808520244496194],[-123.77025068677321,56.80863476063462],[-123.7699464234189,56.808682207523155],[-123.76984276772798,56.80877234326739],[-123.76967409630231,56.8090295071429],[-123.76992781342268,56.80943182695424],[-123.77006231346776,56.80966058243934],[-123.77010964934422,56.80990689367181],[-123.77015278876807,56.81022599681686],[-123.77021495349197,56.81053533869918],[-123.77036999970784,56.81079919830385],[-123.77058276788118,56.81102257490957],[-123.7707896651891,56.8112054945453],[-123.77110116051635,56.811495586962195],[-123.77118310187004,56.811711105867],[-123.77120579065003,56.81195811364595],[-123.77114900637521,56.8121959067928],[-123.77099853109792,56.81242199853478],[-123.77077187116075,56.81272412701228],[-123.77056239429774,56.81297722750344],[-123.7703942258673,56.813225433964156],[-123.77022502210227,56.81349155828613],[-123.77008124885675,56.81374354747266],[-123.77001874162708,56.81400926675823],[-123.77004728023424,56.81433260324012],[-123.77011000140631,56.81456124414731],[-123.77037665688634,56.814775460156746],[-123.77068777541083,56.81496577915419],[-123.77101140396815,56.8151170780222],[-123.77158798325553,56.81536464968355],[-123.77192577186186,56.815519552788686],[-123.77243666315506,56.815732360794],[-123.77296585578924,56.8158412293678],[-123.77357948420858,56.81590894962503],[-123.7743593098859,56.81601203167047],[-123.77505216793689,56.81609343720457],[-123.77576018979472,56.81623226981072],[-123.77625600293597,56.81642238361916],[-123.77671972472169,56.81663548536198],[-123.77713777017283,56.816893762005975],[-123.777523789376,56.81717390747493],[-123.77784999809919,56.81742387993031],[-123.77812904009332,56.817780657315296],[-123.77821921360317,56.81806805618745],[-123.77833354377553,56.818327844652686],[-123.77838913240652,56.81861016628981],[-123.77845138577614,56.81888363433473],[-123.77854154582664,56.819242776170995],[-123.77867661838165,56.819570179521364],[-123.77886409567829,56.81987830357027],[-123.77920390390992,56.820177829231504],[-123.77951535828096,56.820399519641605],[-123.77988087516137,56.820644555671265],[-123.78035773050287,56.820880288629205],[-123.78090082943885,56.82110594472811],[-123.78144317009277,56.82130916570243],[-123.78179597739711,56.82145421039975],[-123.78225338346051,56.82167166725119],[-123.78260356372022,56.82186262524637],[-123.78307557528117,56.822147588439584],[-123.7833215989206,56.822365907548864],[-123.78355577064806,56.82261204811233],[-123.78376746895769,56.82278493946548],[-123.7840577813245,56.82287510108509],[-123.7837875734111,56.82340070653802],[-123.78359842658071,56.82369341175741],[-123.78335789850514,56.8239874796062],[-123.78309090924877,56.82427773132615],[-123.78291490342244,56.82444847276373],[-123.78354746645864,56.8249402020139],[-123.78383034742717,56.825160271768],[-123.78712628757728,56.82666044772529],[-123.79294635194624,56.82852640510064],[-123.79978896871346,56.83003281069683],[-123.8019155035488,56.83103743658402],[-123.8039256962769,56.83438067419722],[-123.80557670536466,56.8362470633816],[-123.8077089403563,56.8394757268875],[-123.81216226167376,56.8460975608505],[-123.81489555524065,56.85149752570379],[-123.81466293657796,56.855609900112185],[-123.81252149091905,56.85890091225832],[-123.8109485089138,56.861143272985146],[-123.81268968100004,56.862894515804555],[-123.81438403087837,56.86344323003999],[-123.82011949039008,56.86576383745596],[-123.8237828057708,56.86812117296778],[-123.82440761676146,56.870741348761],[-123.82568431755544,56.873462134268664],[-123.82908403277281,56.87497189990427],[-123.83458796273526,56.87677678917889],[-123.83803581604191,56.87890590947005],[-123.84936522289318,56.89183777120348],[-123.84942439471052,56.895497720294564],[-123.84316717115095,56.89563602055563],[-123.83815075150163,56.89564223677738],[-123.83297386125332,56.89674866081975],[-123.83120585660173,56.89894323053483],[-123.83123667890449,56.90219919145624],[-123.83273240555181,56.905147801355604],[-123.83232061934636,56.9074995623291],[-123.82894753847164,56.90926374569873],[-123.82547984120131,56.91124150208346],[-123.82245233190422,56.91357632055779],[-123.81922791967783,56.91618578890097],[-123.81837006475276,56.91826099667244],[-123.81896007740485,56.921795462575545],[-123.81890789466269,56.925337085865806],[-123.81896241292472,56.9267011933303],[-123.82018270492894,56.92840773325555],[-123.82356685074383,56.93144198280654],[-123.82750957511337,56.93333753104212],[-123.82992171084166,56.93347650069318],[-123.83426283688189,56.93239203004733],[-123.84136267933684,56.92995423652808],[-123.84307047640611,56.9285566476089],[-123.8454585676851,56.928237550902836],[-123.85000665575124,56.92932632713584],[-123.85350495195263,56.93064870868847],[-123.85672441634021,56.93254932983796],[-123.86067363858233,56.93643490576348],[-123.86489217178554,56.939634227386634],[-123.86636570779494,56.93978398968187],[-123.87101955181782,56.938694458756494],[-123.87788602598383,56.93808036853829],[-123.88378752414341,56.93914519304888],[-123.88654756570014,56.9422572418688],[-123.88908828318543,56.94547328722648],[-123.89049146978415,56.946312180937774],[-123.8955255585551,56.948815218092186],[-123.89800359380844,56.952899986762745],[-123.89854230925809,56.95751837213117],[-123.89828668466876,56.96129884645344],[-123.89834324538256,56.96237595422416],[-123.89642864607775,56.96395031256678],[-123.89227611812589,56.966977127871395],[-123.89080088921692,56.9689441766087],[-123.89082890044894,56.97174275862974],[-123.89203236733633,56.97504469774871],[-123.89322264449419,56.975880108891744],[-123.89564564151283,56.976475378559854],[-123.9003778601906,56.97703615729569],[-123.90159239052952,56.978338235567065],[-123.90016323761958,56.98127473407975],[-123.89963522391109,56.983400687086764],[-123.89747371735676,56.98645987100976],[-123.89581971824468,56.98927612395387],[-123.89702437174299,56.99046150229],[-123.89837736073702,56.99255508023374],[-123.89664802660967,56.99372890920858],[-123.89515099217799,56.99517553087942],[-123.89635629934813,56.99635195961919],[-123.89995604128111,56.99716346207984],[-123.9047964344876,56.99790516129944],[-123.90787943370009,56.99882470883451],[-123.95479489043407,56.99908626218126],[-123.95449680106418,57.000041184784635],[-123.9541801215501,57.00134557943446],[-123.95285306311982,57.00273273630527],[-123.95109748349005,57.00411313669076],[-123.94842901132809,57.00590961067948],[-123.94898475724725,57.00693179493328],[-123.95079396714316,57.00857459883757],[-123.95307759631197,57.011534221386405],[-123.95637371674043,57.01345143432589],[-123.9614127922856,57.013925055013885],[-123.96736777741124,57.01330070927204],[-123.97185937682184,57.01320933796688],[-123.97752257874338,57.013736896707094],[-123.98151603712623,57.01433697810373],[-123.9853941188522,57.01430737019356],[-123.9887503752629,57.01416196641525],[-123.99242433491804,57.01488232899778],[-123.99444745308024,57.01594486238433],[-123.9967016010988,57.01827544322341],[-123.9972009668762,57.02135924316283],[-123.99654182464133,57.0238781601827],[-123.99341125591751,57.02853832390834],[-123.99151534660642,57.03197985027801],[-123.98761931995183,57.03515729638669],[-123.98181600925956,57.037551756429174],[-123.98152490741937,57.038695206225675],[-123.97773670798229,57.04199065604421],[-123.9742218270481,57.043846333797575],[-123.96977756753239,57.04609999719283],[-123.96170184951168,57.04988419775931],[-123.95589184337966,57.05233129482079],[-123.95215468548845,57.053671722163664],[-123.94421943640332,57.05476651164356],[-123.93614684483238,57.054719623893604],[-123.9277236273807,57.05351866162359],[-123.92364949228279,57.05435068029197],[-123.9225729743945,57.05715868455591],[-123.92323507981764,57.05835311681957],[-123.92433608357905,57.06028997792632],[-123.92434643305955,57.06132155420745],[-123.92422314395225,57.06452145547864],[-123.91966774391086,57.06689732111111],[-123.91764343286837,57.07011172814874],[-123.9175583566002,57.075034292842666],[-123.91941364633031,57.07799674881875],[-123.9224206065427,57.08105825532656],[-123.92418973379758,57.08470988171029],[-123.92459576248766,57.08790032433403],[-123.92520057656027,57.09138991092539],[-123.92767166724195,57.09399432717529],[-123.92942954738552,57.09695510663529],[-123.93075559814332,57.09934396733448],[-123.9330023425042,57.101218233946824],[-123.93631025906107,57.10365636110821],[-123.9371741053634,57.10450414159158],[-123.941204188832,57.106128406401616],[-123.94355153689982,57.107376241738166],[-123.94629871831071,57.10826259724504],[-123.95073449732084,57.10942655558935],[-123.95476060776272,57.1108350719194],[-123.95508086936776,57.11134235539891],[-123.95795300358611,57.11268783676993],[-123.96145247773003,57.113747076961],[-123.96705774054462,57.115646249675464],[-123.97067750718492,57.117568133401534],[-123.974584363332,57.11844499761099],[-123.98030192161892,57.120121105551256],[-123.98484638818779,57.12146493846859],[-123.98738050066093,57.12171929119412],[-123.99098078474857,57.122779275784886],[-123.99343041562292,57.1240187935375],[-123.99422711552323,57.12618358720539],[-123.99333687763084,57.12865431219821],[-123.99578897845008,57.13017186058539],[-123.99987394464169,57.13115830927956],[-124.00337564322315,57.13413579148958],[-124.00586854924545,57.13551923448319],[-124.00738280931003,57.13758727972523],[-124.007951419813,57.140340468905855],[-124.00774426834651,57.14432852388662],[-124.00669142343027,57.14802564704904],[-124.00684543843721,57.150476553917116],[-124.00768509057644,57.15088400245071],[-124.01153010432462,57.152395578931944],[-124.01559650610504,57.15379380452479],[-124.02079706534897,57.15599836537052],[-124.02430374486582,57.15831164639741],[-124.02628159137264,57.159130817686496],[-124.03095306978844,57.16166779447398],[-124.03790738008551,57.16491157699387],[-124.04300953293031,57.16682674268263],[-124.04614628081664,57.16799481042834],[-124.05310110032853,57.16736314452157],[-124.06421523728716,57.16372539992367],[-124.07561874025743,57.161866857576854],[-124.08115893554564,57.163329543688285],[-124.08454463818315,57.16649142710894],[-124.08844845114612,57.17056666281292],[-124.08988708667958,57.17194200468897],[-124.09193924952739,57.1743039029295],[-124.09423649949179,57.17973672775041],[-124.0943260568215,57.18493107804288],[-124.09429987760788,57.18612357491547],[-124.09399358152035,57.18994888555365],[-124.09261763394959,57.19461964172822],[-124.09164798338946,57.200776238420204],[-124.09196814046975,57.204996403813844],[-124.09496195492149,57.207129849973086],[-124.09715928473486,57.20828297450184],[-124.1021415798644,57.211117847108966],[-124.10848100200674,57.214689684949505],[-124.1132696426012,57.21677688359947],[-124.12092155863584,57.21831308656928],[-124.1275217284986,57.22000420353295],[-124.13027503653267,57.22372988749992],[-124.13240120886641,57.227401723710095],[-124.13560664212206,57.23003951231532],[-124.1370679770985,57.230347332245906],[-124.14405511340307,57.23369342524564],[-124.14735840180634,57.23673592059905],[-124.14811013470417,57.24142847826278],[-124.14727299695627,57.245694959331864],[-124.14759932189804,57.25026493079151],[-124.1537720643013,57.252352242396896],[-124.15882437533463,57.252557904555765],[-124.16690295789375,57.254034548017785],[-124.17211471579867,57.25646629524506],[-124.17492318706518,57.25813785905931],[-124.18053391352824,57.262673626829546],[-124.18357660175566,57.26816916493005],[-124.18231861070267,57.27227759930804],[-124.18089977766039,57.27382754288936],[-124.17886921301363,57.27601476849197],[-124.17687152892803,57.27833472542815],[-124.17649874891951,57.27844614110204],[-124.17586804017311,57.27843736398086],[-124.1753635223,57.278611970869946],[-124.17541480167387,57.278625017704044],[-124.17067760051914,57.284038176099926],[-124.17121815446234,57.28610644967959],[-124.17104377388354,57.28658276146723],[-124.17179171854137,57.28752938248898],[-124.17536168220624,57.28987081966732],[-124.17607121843342,57.290146413894234],[-124.17661183979953,57.290523924977975],[-124.17982522073129,57.29220999165414],[-124.17931279076802,57.29259080598374],[-124.1785125117881,57.2946964881577],[-124.1774529401334,57.295269265593475],[-124.17538406688281,57.29614304747684],[-124.17470476550928,57.29662355232742],[-124.17262338413455,57.29740854525432],[-124.1672066827415,57.29783299444233],[-124.16597073442296,57.297660987781875],[-124.16333808666317,57.29768019713809],[-124.16194214471166,57.29798466172336],[-124.15900466136308,57.29915658724794],[-124.15812719462741,57.299347201657],[-124.15554000676474,57.30126172446327],[-124.15486072032392,57.301562741077895],[-124.15331348559857,57.3027148612459],[-124.15298501754,57.30319235319494],[-124.1524742488357,57.30357309520734],[-124.15194680720803,57.30395472173966],[-124.15057402680311,57.30454642668255],[-124.15004655275712,57.30492804587222],[-124.14918467522592,57.30522197487647],[-124.14762184092962,57.30561812050725],[-124.14585130859942,57.305541524878684],[-124.14584328223027,57.30506489735481],[-124.14142591293896,57.304050460758226],[-124.13827478095786,57.30408424854857],[-124.13740480095964,57.30428716775538],[-124.13497164617176,57.30506098197699],[-124.13409473363669,57.30536244823455],[-124.13131648405012,57.30605280179035],[-124.12554087567335,57.30685389951724],[-124.12152955047354,57.307178842366675],[-124.11854536200902,57.30748700839549],[-124.11451691776914,57.30790343364039],[-124.11168665629951,57.30786944177124],[-124.11071865165064,57.30790707739201],[-124.10183818894953,57.31133988331436],[-124.098937727037,57.31229353322379],[-124.08963684815633,57.3126225938222],[-124.08386349177668,57.31317412598469],[-124.0837716191312,57.313182875046515],[-124.08329866303657,57.31333181762855],[-124.08311909174952,57.3131419459289],[-124.07841866057638,57.31479203996684],[-124.07494677958768,57.318365012943374],[-124.07022266841864,57.3259739713104],[-124.06959649828237,57.331162935174916],[-124.06961300480931,57.33116542051996],[-124.06969357331661,57.331175575791754],[-124.06977200772435,57.331186820888355],[-124.0698504421783,57.33119806593814],[-124.06992882002378,57.331210431373236],[-124.0700072545724,57.33122167632955],[-124.07008563251716,57.33123404167117],[-124.07016395386484,57.331247527398155],[-124.07024025442577,57.331259862096296],[-124.07031857588106,57.33127334773128],[-124.07039481990245,57.33128680277199],[-124.07047100733871,57.33130137820071],[-124.07054719483311,57.331315953585396],[-124.0706233823857,57.33133052892609],[-124.0706995133642,57.331346224655036],[-124.07077356691173,57.33136188979839],[-124.0708496980145,57.33137758544057],[-124.07092363843297,57.33139549136456],[-124.0709976355444,57.33141227681456],[-124.07106944198041,57.331431272551306],[-124.07114332598653,57.33145029878484],[-124.0712151325665,57.331469294442435],[-124.07128688260272,57.331489410493795],[-124.07135857610137,57.33151064693902],[-124.0714302696798,57.33153188334547],[-124.07149982922434,57.33155420961575],[-124.07156938885021,57.33157653584958],[-124.07163889195239,57.33159998247999],[-124.07170833853687,57.331624549506955],[-124.07177784181178,57.33164799606475],[-124.07184515446255,57.331673652927634],[-124.07191252380096,57.331698189323454],[-124.07197983663075,57.331723846118344],[-124.07204709295769,57.33175062331257],[-124.07211434937895,57.33177740047276],[-124.07218160589458,57.331804177599224],[-124.07224672839668,57.3318320446069],[-124.07231185099386,57.33185991158285],[-124.07237905120958,57.331887809043444],[-124.07244411741658,57.33191679638873],[-124.07250918372235,57.33194578370227],[-124.07257217259856,57.331974740471146],[-124.07263718252395,57.3320048481564],[-124.07270011502014,57.33203492529908],[-124.0727651251489,57.332065032922436],[-124.07282805784509,57.33209511000524],[-124.07289099064042,57.33212518705852],[-124.07295386696762,57.3321563845165],[-124.07301674339757,57.33218758194514],[-124.07307961993028,57.33221877934443],[-124.07314249656575,57.33224997671437],[-124.07320537330399,57.332281174055026],[-124.07326819358669,57.33231349180067],[-124.07332899298311,57.332344658581434],[-124.07339181347491,57.33237697626954],[-124.07345261307337,57.33240814299475],[-124.0735133562198,57.33244043012698],[-124.07357617702523,57.33247274772945],[-124.07363697692671,57.332503914371564],[-124.07369772038142,57.332536201421156],[-124.07375846393887,57.332568488443314],[-124.07381920759909,57.33260077543837],[-124.07388208546801,57.33263197246376],[-124.07394282933376,57.33266425940319],[-124.07400357330225,57.33269654631541],[-124.07406437390904,57.33272771276527],[-124.07412517461509,57.33275887918775],[-124.07418591888836,57.332791166018076],[-124.07424671979467,57.33282233238581],[-124.07430752080029,57.332853498726294],[-124.074368378432,57.33288354460407],[-124.0744291796344,57.33291471088966],[-124.07449003745944,57.33294475671255],[-124.07455083885864,57.332975922943376],[-124.07460961929088,57.333005938230244],[-124.07467042088516,57.333037104407246],[-124.07472914498909,57.33306824007782],[-124.0747878691888,57.33309937572275],[-124.07484653697108,57.33313163177813],[-124.0749052048525,57.333163887808055],[-124.07496179523635,57.33319611333722],[-124.07501838571568,57.333228338842645],[-124.0750749197839,57.33326168476076],[-124.07513151045592,57.3332939102192],[-124.07518804472005,57.33332725609029],[-124.07524457908292,57.33336060193788],[-124.07529903593678,57.33339391729192],[-124.07535343638692,57.33342835306044],[-124.07540789343241,57.33346166837123],[-124.07546229407728,57.33349610409663],[-124.07551669482028,57.33353053980039],[-124.07557109566143,57.3335649754826],[-124.07562341898151,57.33359938067834],[-124.07567782001702,57.3336338163183],[-124.0757301435276,57.33366822147335],[-124.07578454475745,57.33370265707095],[-124.07583681197356,57.33373818262219],[-124.07588913577047,57.33377258771677],[-124.0759434808105,57.33380814368829],[-124.07599580479939,57.33384254874238],[-124.07604807240361,57.33387807421351],[-124.07610039658265,57.33391247922778],[-124.07615266437993,57.333948004659206],[-124.07620498874905,57.33398240963397],[-124.07625725673938,57.33401793502574],[-124.07630958129863,57.33405233996065],[-124.07636184948204,57.33408786531284],[-124.07641417423139,57.33412227020799],[-124.07646644260788,57.334157795520625],[-124.07651876754733,57.334192200375995],[-124.07657109258108,57.334226605211505],[-124.07662543890252,57.33426216091391],[-124.07668191944431,57.334296626605415],[-124.07674053420742,57.334330002283366],[-124.0768011702771,57.33436452882006],[-124.07686394057603,57.33439796533741],[-124.07692671098494,57.334431401825626],[-124.07698948150376,57.33446483828475],[-124.07705427335145,57.33449942559513],[-124.07711704409385,57.33453286199514],[-124.07718183617254,57.33456744924447],[-124.07724247301846,57.33460197558413],[-124.07730310997405,57.33463650189665],[-124.0773595916815,57.3346709673072],[-124.07741601705078,57.33470655313257],[-124.07746615303793,57.334743168065685],[-124.07751421143628,57.334779752545664],[-124.07755805811665,57.334817396578885],[-124.07759774950523,57.33485497973107],[-124.07763322915552,57.33489362244467],[-124.07766034167086,57.3349332638575],[-124.07768324241859,57.33497396483984],[-124.07769991012142,57.3350145745233],[-124.0777081541952,57.335057303355406],[-124.07771432058483,57.33510000175666],[-124.07771835285152,57.33514379016613],[-124.07772244155927,57.335186458138054],[-124.0777264738444,57.33523024655038],[-124.0777284848585,57.33527288409338],[-124.0777325171597,57.33531667250852],[-124.07773447175337,57.33536043049342],[-124.07773642635155,57.33540418847996],[-124.0777363596645,57.33544679559727],[-124.07773831426924,57.33549055358683],[-124.07773813472039,57.33553540158548],[-124.07773801160305,57.33557912914662],[-124.07773788848543,57.33562285670927],[-124.07773568763413,57.33566655384192],[-124.07773556451356,57.33571028140782],[-124.07773330722223,57.33575509898279],[-124.07773110635806,57.33579879612006],[-124.07772884905621,57.33584361369822],[-124.07772457043643,57.33588728040694],[-124.07772231312171,57.33593209798823],[-124.07771803448452,57.33597576469979],[-124.07771369940421,57.3360205518523],[-124.07770936431375,57.33606533900639],[-124.07770502921312,57.336110126161834],[-124.0777006941023,57.336154913318865],[-124.07769635898134,57.336199700477266],[-124.07768994608534,57.33624445720497],[-124.07768353317434,57.33628921393398],[-124.07767712024827,57.33633397066421],[-124.07767278507932,57.3363787578285],[-124.07766429435104,57.3364234841288],[-124.07765788137988,57.33646824086306],[-124.07765146839368,57.336512997598575],[-124.07764297761058,57.33655772390242],[-124.07763650815545,57.336603601080675],[-124.07762801733469,57.33664832738673],[-124.07761952649403,57.336693053694034],[-124.07761305698774,57.336738930876116],[-124.0776045661094,57.336783657185684],[-124.07759607521116,57.33682838349625],[-124.07758545005572,57.33687419981437],[-124.07757695911496,57.336918926127126],[-124.07756841171532,57.33696477288138],[-124.07755992073443,57.33700949919626],[-124.07754929548518,57.33705531551818],[-124.07754080446178,57.33710004183507],[-124.07753017916438,57.337145858158806],[-124.07752168809844,57.337190584477895],[-124.0775110627529,57.33723640080347],[-124.07750043738187,57.33728221712994],[-124.07748986842714,57.33732691301645],[-124.07748132083157,57.33737275978029],[-124.07747075182938,57.33741745566858],[-124.07746012635957,57.337463271998494],[-124.07744950086425,57.33750908832928],[-124.07743893178707,57.33755378421998],[-124.07742830624113,57.33759960055243],[-124.07741975851053,57.337645447322465],[-124.0774091893608,57.33769014321577],[-124.07739856374118,57.33773595955096],[-124.07738799454155,57.337780655445755],[-124.07737736887132,57.337826471782684],[-124.07736679962181,57.33787116767913],[-124.07735617390094,57.33791698401765],[-124.07734554815458,57.33796280035703],[-124.07733497883007,57.338007496255905],[-124.07732643089605,57.33805334303501],[-124.07731586152408,57.33809803893572],[-124.07730523567892,57.33814385527857],[-124.07729466625707,57.33818855118087],[-124.07728611823411,57.33823439796419],[-124.07727554876482,57.33827909386819],[-124.07726705714843,57.338323820212096],[-124.07725643118185,57.338369636559406],[-124.07724793952292,57.33841436290546],[-124.07723736995911,57.33845905881302],[-124.07722882180673,57.33850490560269],[-124.07722033008537,57.33854963195187],[-124.07720976045177,57.3385943278621],[-124.07720126868816,57.33863905421324],[-124.07719277690468,57.33868378056551],[-124.07718422864842,57.338729627360706],[-124.07717781472697,57.33877438415576],[-124.07716932288588,57.33881911051141],[-124.0771608310249,57.33886383686823],[-124.07715441705345,57.338908593666986],[-124.07714800306694,57.33895335046711],[-124.0771415890654,57.338998107268495],[-124.07713511859404,57.33904398451345],[-124.07712870456216,57.33908874131752],[-124.07712431198165,57.33913464900665],[-124.07711784146639,57.33918052625572],[-124.0771114273913,57.339225283063946],[-124.0771070347743,57.33927119075756],[-124.07710056421513,57.339317068011],[-124.0770961715745,57.339362975707694],[-124.07708975744336,57.339407732521515],[-124.07708328684026,57.339453609779234],[-124.07707681622163,57.339499487038324],[-124.07707040204487,57.3395442438562],[-124.07706185344892,57.33959009067564],[-124.07705336129052,57.33963481705364],[-124.07704481265384,57.33968066387543],[-124.0770363204553,57.33972539025557],[-124.07702575028067,57.33977008619391],[-124.07701518008128,57.339814782133026],[-124.07700253189606,57.33985944762961],[-124.07698994014156,57.33990299268371],[-124.07697521393176,57.33994762773737],[-124.07696054414882,57.339991142347934],[-124.07694379636187,57.34003462651433],[-124.07692704853679,57.34007811068006],[-124.0769082226983,57.34012156440027],[-124.07688737530303,57.340163867231254],[-124.07686652786158,57.340206170060334],[-124.07684360239179,57.34024844244172],[-124.07681865535277,57.340289563931215],[-124.07679163027345,57.34033065497067],[-124.07675842763749,57.34037053422133],[-124.07671899095969,57.340410322121464],[-124.07667343316164,57.34044777777899],[-124.07662371928457,57.340485172523394],[-124.07656984931646,57.34052250634967],[-124.07651401419469,57.34055756881741],[-124.07645396649221,57.34059369080178],[-124.07639397515494,57.340628692316415],[-124.07632982769906,57.340663632896714],[-124.07626781461457,57.34069748345835],[-124.0762036669276,57.34073242397897],[-124.07613957560976,57.34076624402589],[-124.07607750570143,57.34080121494388],[-124.07601757018301,57.340835095849094],[-124.07595965608142,57.340870127631156],[-124.07590584141413,57.34090634075336],[-124.075854161159,57.34094146387292],[-124.07580865837492,57.34097779880334],[-124.07576725505227,57.34101531508829],[-124.07573208572323,57.34105292275197],[-124.07570309390618,57.34109174224262],[-124.07568241414694,57.34113068358547],[-124.07566785543747,57.341171957206804],[-124.07566160883125,57.34121335268645],[-124.07565530570999,57.341255868610865],[-124.0756511371147,57.34129729455756],[-124.07564899004905,57.34133987141398],[-124.0756489210215,57.341382478736676],[-124.07565093003899,57.341425116525606],[-124.07565288255911,57.341468874759684],[-124.07565489158559,57.341511512551634],[-124.07566100021928,57.341555331717984],[-124.07566710886701,57.341599150885685],[-124.07567321752875,57.341642970054735],[-124.075681404264,57.341686819689315],[-124.07569166907993,57.341730699789096],[-124.07570193391946,57.341774579889645],[-124.07571427684928,57.341818490454756],[-124.07572656330721,57.341863521464425],[-124.07573890629413,57.34190743203032],[-124.07575327088374,57.341952493504245],[-124.07576971358372,57.341997585440964],[-124.07578413474253,57.34204152647038],[-124.07580057751733,57.34208661840666],[-124.07581909841481,57.34213174080453],[-124.07583554126981,57.342176832739746],[-124.07585406225239,57.34222195513604],[-124.07587258327877,57.34226707753147],[-124.07589110434894,57.342312199925914],[-124.07591170355909,57.34235735278012],[-124.07593230281795,57.342402505632656],[-124.07595290212555,57.34244765848372],[-124.0759735014819,57.342492811333244],[-124.07599410088697,57.34253796418112],[-124.07601470034079,57.34258311702754],[-124.07603529984334,57.34262826987232],[-124.07605595588646,57.34267230227049],[-124.07607863360187,57.34271748557009],[-124.07609923325258,57.34276263840991],[-124.07611983295202,57.34280779124803],[-124.07614043270021,57.342852944084655],[-124.07616316711196,57.342897006931196],[-124.07618376695956,57.34294215976421],[-124.07620234521316,57.34298616169432],[-124.07622294515522,57.3430313145246],[-124.07624360163292,57.34307534690776],[-124.07626218002035,57.343119348834215],[-124.07628075845064,57.34316335075961],[-124.07629933692373,57.343207352684004],[-124.0763158372945,57.343251324153],[-124.07633441585088,57.34329532607558],[-124.07635299445009,57.34333932799707],[-124.0763715730921,57.34338332991753],[-124.07639015177698,57.343427331836935],[-124.07640878698736,57.34347021330941],[-124.07642736575741,57.3435142152267],[-124.07644594457032,57.343558217142935],[-124.07646452342605,57.34360221905815],[-124.07648315880536,57.34364510052621],[-124.07650381591546,57.34368913289054],[-124.07652239490164,57.343733134802314],[-124.07654310858379,57.34377604671743],[-124.0765616876576,57.3438200486267],[-124.0765824014311,57.34386296053877],[-124.07660305877359,57.34390699289543],[-124.07662163798025,57.34395099480092],[-124.07664235189222,57.34399390670811],[-124.07666300937476,57.34403793905998],[-124.07668372338043,57.34408085096365],[-124.07670438095774,57.34412488331219],[-124.07672509505713,57.34416779521236],[-124.07674575272922,57.34421182755759],[-124.07676646692232,57.34425473945428],[-124.0767871246892,57.344298771796126],[-124.076807838976,57.34434168368935],[-124.07682849683768,57.34438571602782],[-124.07684921121817,57.34442862791753],[-124.07687194738675,57.34447269069809],[-124.0768926618633,57.34451560258414],[-124.07691331991695,57.3445596349155],[-124.07693611270645,57.344602577242455],[-124.07695677085734,57.34464660957009],[-124.07697748552363,57.34468952144885],[-124.07700022199573,57.344733584216605],[-124.07702093675807,57.34477649609157],[-124.07704165156703,57.34481940796474],[-124.07706438819058,57.344863470726025],[-124.07708510309558,57.344906382595404],[-124.07710783982111,57.34495044535231],[-124.07712855482218,57.34499335721789],[-124.07714921340659,57.345037389529324],[-124.0771720067468,57.34508033183223],[-124.0771927218905,57.34512324369228],[-124.07721545886946,57.345167306438434],[-124.07723617410925,57.34521021829458],[-124.07725683293519,57.34525425059695],[-124.077279626526,57.345297192888786],[-124.07730028544918,57.345341225187404],[-124.07732100087873,57.34538413703632],[-124.07734373816122,57.34542819976969],[-124.07736445368681,57.345471111614835],[-124.077385169259,57.34551402345811],[-124.07740582842133,57.345558055748015],[-124.07742862236123,57.34560099802463],[-124.07744928162074,57.34564503031076],[-124.07746999738269,57.345687942146874],[-124.07749065673703,57.34573197442977],[-124.07751137259271,57.345774886262305],[-124.07755072615556,57.34586067948756],[-124.07763385768763,57.34586189685332],[-124.0777190110658,57.345864265047354],[-124.07780214261103,57.345865482306586],[-124.07788521771874,57.345867819961974],[-124.07796834927701,57.34586903711609],[-124.07805355912976,57.34587028464447],[-124.0781366906988,57.34587150169187],[-124.0782219569955,57.34587162866207],[-124.07830716686232,57.34587287602582],[-124.07839237673471,57.34587412333423],[-124.07847764303813,57.34587425013843],[-124.07856290934211,57.345874376887195],[-124.07864817564668,57.34587450358058],[-124.07873344195181,57.34587463021867],[-124.07881870825749,57.34587475680135],[-124.07890605285384,57.345874913742016],[-124.07899131916072,57.345875040212654],[-124.07907664187606,57.34587404617866],[-124.07916398647183,57.34587420294776],[-124.07925138747106,57.34587323920949],[-124.07933671017561,57.345872245006504],[-124.07942411116599,57.3458712811532],[-124.07951151215197,57.34587031724185],[-124.07959891313354,57.34586935327216],[-124.07968631411069,57.345868389244444],[-124.0797737150834,57.34586742515843],[-124.07986111605173,57.34586646101431],[-124.0799485733979,57.34586437636243],[-124.08003597435481,57.345863412101934],[-124.08012343168441,57.345861327333544],[-124.0802129109203,57.345860393349334],[-124.08030036823332,57.345858308463086],[-124.0803878255368,57.34585622351858],[-124.08047736112096,57.34585416890444],[-124.08056476204113,57.34585320429195],[-124.08065429760866,57.34585114955718],[-124.0807417548764,57.34584906437695],[-124.08083129042471,57.34584700952147],[-124.08092088231706,57.345843834154884],[-124.08100833955345,57.34584174879718],[-124.08109787507024,57.34583969375989],[-124.08118741057737,57.34583763866155],[-124.08127492412832,57.34583443267619],[-124.08136445961358,57.345832377457086],[-124.08145399508919,57.34583032217706],[-124.08154358689055,57.345827146385645],[-124.08163312234421,57.34582509098347],[-124.0817227141184,57.34582191506983],[-124.08181224955017,57.34581985954549],[-124.08190184129715,57.34581668350965],[-124.08199143302924,57.34581350741269],[-124.08208096842681,57.34581145170511],[-124.08217056013169,57.34580827548593],[-124.08226015182166,57.34580509920575],[-124.08234968718504,57.34580304331497],[-124.08243927884781,57.345799866912515],[-124.08252887049566,57.34579669044897],[-124.08261840582485,57.34579463437495],[-124.08270799744552,57.34579145778921],[-124.08279758905128,57.34578828114231],[-124.08288718064213,57.34578510443425],[-124.08297671592483,57.345783048115976],[-124.08306630748848,57.34577987128575],[-124.08315589903721,57.34577669439441],[-124.08324549057102,57.345773517441934],[-124.08333502580722,57.34577146087936],[-124.08342461731385,57.3457682838047],[-124.08351420880557,57.34576510666888],[-124.08360374400755,57.34576304992303],[-124.08369333547205,57.34575987266508],[-124.08378292692166,57.34575669534601],[-124.08387246208942,57.34575463841695],[-124.08396205351183,57.345751460975656],[-124.08405158865764,57.345749403924486],[-124.08414118005284,57.34574622636095],[-124.08423077143311,57.345743048736374],[-124.08432030654474,57.34574099150201],[-124.08440984164669,57.345738934206565],[-124.08449735470053,57.34573572607382],[-124.08458688978058,57.34573366865766],[-124.08467642485103,57.34573161118046],[-124.08476601615241,57.34572843319072],[-124.08485347291415,57.34572634527214],[-124.08494300795302,57.345724287613294],[-124.08503046469559,57.34572219957678],[-124.08511999971516,57.34572014179716],[-124.08520953472511,57.34571808395649],[-124.08529699143888,57.345715995742616],[-124.08538444814306,57.345713907470454],[-124.0854739269043,57.34571296990129],[-124.08556138359187,57.34571088151136],[-124.08564884026985,57.3457087930631],[-124.08573831901262,57.345707855313776],[-124.085825775674,57.34570576674774],[-124.08591317611891,57.34570479857542],[-124.08600057655936,57.34570383034493],[-124.08608803319717,57.34570174160415],[-124.0861754336262,57.345700773257285],[-124.08626283405079,57.3456998048523],[-124.08635023447094,57.345698836389126],[-124.08643550040864,57.345698958025814],[-124.08652290082247,57.34569798944763],[-124.08661030123189,57.345697020811365],[-124.08669556716636,57.34569714227914],[-124.08678296756943,57.34569617352792],[-124.08686823350256,57.34569629488359],[-124.08695349943625,57.34569641618393],[-124.0870408436573,57.34569656771349],[-124.08712610959215,57.34569668890177],[-124.08721137552752,57.34569681003467],[-124.08729664146344,57.34569693111213],[-124.08738190739987,57.345697052134305],[-124.0874671171756,57.3456982935537],[-124.08755030482828,57.34569838418861],[-124.08763551461246,57.345699625498796],[-124.08772072440215,57.34570086675366],[-124.08780385590964,57.34570207768072],[-124.08788906571027,57.34570331882644],[-124.08797219722845,57.34570452964695],[-124.08805527260787,57.34570686086776],[-124.08813840413902,57.34570807158298],[-124.0882214795363,57.345710402698685],[-124.08830455494372,57.3457127337618],[-124.08838763036131,57.345715064772385],[-124.08846862749989,57.34571736546836],[-124.0885516468081,57.345720816828354],[-124.08863472225836,57.345723147682584],[-124.08871566330433,57.34572656867936],[-124.0887966604871,57.34572886917308],[-124.08887760155973,57.345732290070046],[-124.08895848652932,57.34573683137065],[-124.08903942763332,57.34574025216794],[-124.08912036875185,57.34574367291537],[-124.08920125377443,57.34574821406638],[-124.08928006052457,57.34575272491846],[-124.08936094558536,57.34575726597115],[-124.08943975237307,57.34576177672736],[-124.08951850307825,57.34576740788998],[-124.08959730990551,57.34577191855171],[-124.08967606065487,57.34577754961984],[-124.08975481142744,57.34578318064081],[-124.08983148392919,57.345788781374125],[-124.0899102347479,57.34579441230195],[-124.08998685120754,57.345801133398375],[-124.09006346769416,57.34580785445017],[-124.09014216250351,57.34581460569283],[-124.09021670074839,57.34582129641973],[-124.09029331731598,57.34582801733753],[-124.09036987783426,57.34583585866479],[-124.09044436008647,57.34584366971662],[-124.09052092066722,57.34585151095583],[-124.09059540298087,57.3458593219221],[-124.090669885325,57.34586713284625],[-124.0907443116343,57.345876064182306],[-124.09081873797842,57.345884995476396],[-124.09089108605673,57.34589389650468],[-124.09096551246999,57.34590282771559],[-124.09103780455958,57.3459128491175],[-124.0911100966871,57.345922870479654],[-124.09118238885259,57.34593289180217],[-124.09125468105606,57.34594291308494],[-124.0913248389449,57.34595402456574],[-124.09139707517947,57.34596516622479],[-124.09146723315065,57.345976277629816],[-124.09153739116269,57.34598738899738],[-124.09160749317539,57.34599962078219],[-124.09167765127117,57.34601073207506],[-124.09174567506336,57.346022933575206],[-124.09181572117397,57.346036285704066],[-124.09188374505585,57.34604848713296],[-124.09195171295104,57.346061808981645],[-124.09201968089369,57.34607513079521],[-124.09208551454535,57.34608954282406],[-124.09215348258407,57.34610286456877],[-124.09221931633408,57.34611727653088],[-124.09228509411332,57.34613280891522],[-124.09235092796469,57.34614722081168],[-124.09241670584908,57.34616275313055],[-124.09248040546966,57.34617825521815],[-124.09254618346026,57.34619378747254],[-124.09260982717413,57.34621040995296],[-124.09267347094347,57.34622703240297],[-124.09273503644708,57.34624362462778],[-124.09279862432074,57.346261367472934],[-124.0928579996033,57.34628017035799],[-124.09291945326864,57.346299003408134],[-124.09297663834298,57.346320016959694],[-124.09303382348031,57.34634103048677],[-124.09309095268343,57.34636316444491],[-124.09314600362363,57.34638526819073],[-124.09319886430903,57.346409582638316],[-124.0932517250618,57.346433897064955],[-124.0933045298909,57.34645933192681],[-124.09335525645561,57.34648473658327],[-124.09340384876344,57.346511231492684],[-124.09345238515196,57.34653884684066],[-124.0935008656253,57.34656758262742],[-124.09354726783062,57.346596288215345],[-124.0935915357803,57.3466260840628],[-124.0936378261619,57.34665703053238],[-124.09367995992638,57.3466879166275],[-124.09372411612776,57.346719953344994],[-124.09376613807571,57.34675308032661],[-124.09380608174507,57.346786177118176],[-124.09384596950802,57.34682039435494],[-124.09388585734254,57.34685461158051],[-124.09392361091784,57.346889919075785],[-124.09396130859058,57.346926347017906],[-124.09399900633527,57.34696277495013],[-124.0940346257886,57.3469991726988],[-124.09407018934048,57.347036690895564],[-124.09410361862633,57.34707529936783],[-124.09413704797983,57.34711390783278],[-124.09417047740097,57.347152516290464],[-124.09420177255005,57.347192215026446],[-124.09423301179936,57.347233034213275],[-124.09426425111549,57.34727385339409],[-124.09429549049842,57.34731467256878],[-124.09432459560284,57.347356582025206],[-124.09435370077118,57.347398491476625],[-124.09438275004264,57.34744152138024],[-124.09440972098956,57.34748452111101],[-124.09443663603786,57.34752864129508],[-124.09446360710706,57.347571641017765],[-124.09448838792386,57.34761685148461],[-124.09451530315646,57.34766097165732],[-124.09454008409251,57.347706182117705],[-124.0945648650873,57.347751392575056],[-124.09458751177829,57.347797693321915],[-124.09461223693401,57.347844024231435],[-124.09463488373741,57.347890324973605],[-124.09465753059578,57.347936625713665],[-124.09468012155624,57.34798404690939],[-124.09470271257283,57.348031468103095],[-124.09472322522288,57.34807885913171],[-124.09474581634916,57.348126280321765],[-124.09476627315307,57.348174791805285],[-124.09478673000899,57.34822330328775],[-124.09480718691691,57.348271814768815],[-124.09482764387685,57.3483203262487],[-124.09484596650168,57.34836992802444],[-124.09486642356349,57.34841843950211],[-124.09488474628583,57.348468041276504],[-124.0949051475025,57.34851767321054],[-124.09492347032278,57.34856727498351],[-124.09494179319071,57.348616876755905],[-124.09496006016062,57.34866759898646],[-124.09497838312426,57.34871720075782],[-124.09499670613553,57.34876680252873],[-124.09501497325019,57.34881752475791],[-124.09503324041339,57.34886824698654],[-124.0950515635685,57.348917848755924],[-124.09506775235695,57.34896854082601],[-124.0950860196626,57.34901926305365],[-124.0951043429588,57.349068864821824],[-124.0951226103611,57.34911958704851],[-124.09513879932952,57.3491702791183],[-124.09515706682615,57.349221001344375],[-124.09517539031155,57.34927060311082],[-124.09519365790486,57.34932132533606],[-124.09521192554672,57.349372047560784],[-124.09523024917596,57.34942164932573],[-124.09524643841551,57.34947234139478],[-124.09526476213779,57.349521943159],[-124.09528308590768,57.34957154492268],[-124.09530348823233,57.34962117683979],[-124.09532175616371,57.34967189906172],[-124.09534013601575,57.34972038036381],[-124.0953584599789,57.34976998212512],[-124.09537886250769,57.34981961403855],[-124.09539932102406,57.34986812549085],[-124.0954176451351,57.34991772724979],[-124.09543810375338,57.349966238700134],[-124.09545856242366,57.35001475014918],[-124.09547907707845,57.35006214113673],[-124.09550161438618,57.35011068273403],[-124.095522129146,57.35015807371869],[-124.09554472249593,57.350205494852034],[-124.09556523736025,57.350252885833726],[-124.09558788674951,57.35029918650303],[-124.09561261474053,57.350345517319255],[-124.09563526424222,57.3503918179839],[-124.0956579137989,57.35043811864643],[-124.09568269789209,57.350483328994216],[-124.09570748204399,57.35052853933893],[-124.09573226625463,57.35057374968071],[-124.09575918501089,57.35061786970547],[-124.09578610382938,57.350661989726326],[-124.09581307863374,57.35070498928237],[-124.09583999757602,57.3507491092953],[-124.09586702842483,57.350790988382485],[-124.0958960819852,57.35083401807112],[-124.09592519153169,57.35087592729381],[-124.09595216664398,57.350918926828776],[-124.0959791977362,57.350960805898765],[-124.09600617296935,57.35100380542575],[-124.09603106967796,57.35104677480627],[-124.09605596644265,57.351089744183575],[-124.0960808632634,57.35113271355772],[-124.09610570422448,57.35117680339005],[-124.09613060115802,57.3512197727578],[-124.09615544223328,57.3512638625838],[-124.09617826068,57.35130680180518],[-124.09620310186698,57.351350891625394],[-124.09622799902375,57.3513938609808],[-124.09625076171804,57.351437920655826],[-124.0962756589853,57.35148089000525],[-124.09630055630862,57.35152385935164],[-124.09632539777817,57.351567949156475],[-124.09635029521431,57.351610918496455],[-124.0963751927065,57.35165388783318],[-124.09640009025479,57.35169685716669],[-124.09642706648253,57.35173985663323],[-124.0964540427711,57.35178285609569],[-124.09648107502608,57.35182473509203],[-124.09650805143549,57.35186773454637],[-124.09653716244262,57.35190964366894],[-124.0965662735137,57.35195155278654],[-124.09659751918855,57.35199237157032],[-124.09662870902864,57.35203431081037],[-124.09666203347989,57.352075159714474],[-124.09669541390227,57.35211488814905],[-124.09672873849532,57.352155737038856],[-124.09676627635463,57.352195525720866],[-124.09680173564152,57.352235284263145],[-124.0968414082038,57.35227398259372],[-124.09688108084657,57.35231268091354],[-124.09692075356979,57.35235137922267],[-124.09696256092505,57.35238898718586],[-124.09700639113292,57.35242774572687],[-124.0970502773197,57.352465383791554],[-124.09709416359303,57.35250302184266],[-124.09713804995295,57.35254065988039],[-124.09718401506912,57.352578328028784],[-124.09723211483256,57.35261490582257],[-124.09727808013102,57.352652573940276],[-124.09732618007823,57.35268915170182],[-124.09737428011762,57.35272572944684],[-124.09742445892917,57.35276233729583],[-124.09747469371486,57.3527978246632],[-124.09752487271751,57.35283443247598],[-124.09757718637738,57.35286994992507],[-124.09762742144677,57.35290543723725],[-124.09767973529944,57.352940954647536],[-124.09773412794128,57.35297650215362],[-124.09778649785974,57.35301089905983],[-124.09784089070075,57.35304644652366],[-124.09789533950907,57.35308087350219],[-124.0979497884156,57.35311530045917],[-124.09800637198467,57.353148637041706],[-124.09806289979143,57.353183094064875],[-124.09811948355984,57.35321643060053],[-124.0981760674271,57.35324976711275],[-124.09823265139325,57.353283103601456],[-124.09828923545824,57.35331644006665],[-124.0983479541878,57.353348686150035],[-124.09840667301658,57.35338093220789],[-124.09846539194464,57.35341317824042],[-124.09852411097192,57.35344542424754],[-124.09858283009845,57.353477670229196],[-124.09864160516888,57.353508795720956],[-124.09870245905846,57.353539951287374],[-124.09876123432241,57.35357107672711],[-124.0988221442485,57.35360111177491],[-124.09888299843273,57.353632267260004],[-124.09894396438834,57.35366118178793],[-124.09900487460207,57.35369121675322],[-124.09906786364513,57.35372128178542],[-124.09912882988306,57.35375019622964],[-124.09919193077894,57.35377802027365],[-124.09925705467803,57.35380699484461],[-124.09932015576135,57.35383481882833],[-124.09938527985474,57.35386379333707],[-124.09945051568998,57.353890526883625],[-124.09951569579702,57.35391838086364],[-124.09958087599924,57.35394623481196],[-124.09964819086005,57.35397299834838],[-124.09971342706618,57.353999731766635],[-124.09978074211436,57.35402649523634],[-124.09984805725695,57.35405325867209],[-124.09991537249398,57.35408002207392],[-124.09998274363157,57.35410566497605],[-124.10005005905553,57.35413242831011],[-124.10011743037617,57.35415807114425],[-124.10018682474661,57.3541848644871],[-124.10025419625175,57.354210507252226],[-124.10032156784744,57.35423614998333],[-124.10039101829761,57.35426182275395],[-124.10046041304884,57.35428861595456],[-124.10052778492104,57.35431425858148],[-124.10059723565212,57.35433993124476],[-124.10066460770688,57.354365573802674],[-124.10073405862339,57.35439124639465],[-124.10080143086068,57.354416888883435],[-124.10087082618213,57.354443681870514],[-124.10093819860391,57.35446932429025],[-124.10100764989338,57.35449499673971],[-124.10107496672302,57.354521759556974],[-124.10114233941987,57.35454740187368],[-124.10120965643645,57.35457416462298],[-124.10127702931632,57.35459980687166],[-124.10134434651981,57.354626569553076],[-124.10141166381776,57.35465333220063],[-124.10147898121014,57.354680094814256],[-124.10154416414666,57.35470794780569],[-124.10161148172831,57.35473471035256],[-124.10167666485486,57.354762563279564],[-124.10174184807657,57.35479041617473],[-124.10180703139346,57.35481826903823],[-124.1018722148055,57.35484612186995],[-124.10193526376428,57.354875065088265],[-124.10200044736693,57.35490291785765],[-124.10206349651683,57.35493186101577],[-124.10212654576235,57.35496080414422],[-124.10218953936091,57.35499086771069],[-124.10225258879954,57.35501981078015],[-124.10231563833385,57.355048753819865],[-124.10237863222656,57.35507881729782],[-124.10243954740689,57.35510885070518],[-124.10250254149645,57.35513891412511],[-124.10256345687024,57.355168947476486],[-124.10262645115667,57.35519901083847],[-124.10268736672391,57.35522904413384],[-124.10274828238704,57.35525907740169],[-124.1028112769679,57.3552891406773],[-124.1028721928245,57.35531917388918],[-124.10293305305571,57.355350327541615],[-124.10299396910584,57.355380360698646],[-124.10305488525191,57.35541039382796],[-124.10311574577776,57.355441547398186],[-124.10317666211735,57.35547158047265],[-124.103239601674,57.355502764016364],[-124.1033005182088,57.35553279703487],[-124.1033614348395,57.355562830025875],[-124.10342229585879,57.355593983457936],[-124.10348321268303,57.35562401639396],[-124.10354412960318,57.35565404930237],[-124.10360712546317,57.35568411220608],[-124.10366804257677,57.35571414505869],[-124.10376958987838,57.35576382626211],[-124.10378820618644,57.355807824748446],[-124.10380687823381,57.3558507027648],[-124.10382757348285,57.35589473126819],[-124.10384618992161,57.35593872975114],[-124.10386688526377,57.35598275825151],[-124.10388550179083,57.35602675673198],[-124.10390625291986,57.356069664760184],[-124.10392694840235,57.35611369325591],[-124.10394764393256,57.35615772174988],[-124.1039662606381,57.35620172022526],[-124.10398701195314,57.356244628246905],[-124.10400978650088,57.35628868675245],[-124.10403048222163,57.356332715239745],[-124.10405123368011,57.35637562325581],[-124.10407192949582,57.35641965173982],[-124.1040926253593,57.35646368022208],[-124.10411540015976,57.3565077387173],[-124.10413615180893,57.35655064672617],[-124.10415892671158,57.356594705216985],[-124.10417962277039,57.3566387336919],[-124.10420239777578,57.35668279217839],[-124.10422314961802,57.356725700179645],[-124.10424592472559,57.3567697586618],[-124.1042686998858,57.35681381714147],[-124.10428939619013,57.35685784560706],[-124.10431222713618,57.3569007836123],[-124.10433500245112,57.356944842085255],[-124.10435777781869,57.35698890055595],[-124.10437853000214,57.357031808543525],[-124.10440130547185,57.357075867009875],[-124.10442408099418,57.35711992547373],[-124.10444685656911,57.35716398393529],[-124.10446968787556,57.35720692192399],[-124.10449246355508,57.35725098038074],[-124.10451316035476,57.35729500882695],[-124.10453593613707,57.3573390672794],[-124.10455876764856,57.35738200525879],[-124.10458154353543,57.35742606370649],[-124.10460431947494,57.35747012215189],[-124.10462709546704,57.35751418059483],[-124.10464784823907,57.35755708855844],[-124.10467062433335,57.357601146997034],[-124.10469340048023,57.35764520543332],[-124.1047162323521,57.357688143396224],[-124.10473900860357,57.35773220182765],[-124.10475970594882,57.357776230252405],[-124.1047824823031,57.357820288679626],[-124.10480531437997,57.35786322663319],[-124.10482601187282,57.35790725505223],[-124.10484878838187,57.35795131347267],[-124.10486948597266,57.35799534188803],[-124.10489231825223,57.358038279832655],[-124.10491301594041,57.35808230824442],[-124.10493579265444,57.35812636665604],[-124.10495654610662,57.35816927459257],[-124.10497724394,57.35821330299881],[-124.10500002080639,57.35825736140412],[-124.10502071873772,57.358301389806776],[-124.1050414723806,57.35834429773598],[-124.10506217040692,57.358388326135305],[-124.10508286848102,57.35843235453292],[-124.1051035666029,57.35847638292877],[-124.10512432043416,57.35851929085112],[-124.105142939649,57.35856328924533],[-124.1051636379112,57.358607317636505],[-124.1051843362212,57.358651346026086],[-124.10520301122925,57.35869422394439],[-124.1052216306202,57.35873822233374],[-124.10524232906813,57.35878225071897],[-124.10526094854738,57.35882624910586],[-124.10527956806958,57.358870247491815],[-124.1052982432918,57.35891312540434],[-124.10531686289941,57.35895712378814],[-124.10533548254996,57.3590011221708],[-124.10535410224345,57.359045120552636],[-124.10537069860423,57.35908796846595],[-124.10538931838073,57.359131966845766],[-124.10540585916452,57.35917593523036],[-124.10542239998647,57.3592199036145],[-124.10543894084651,57.35926387199807],[-124.10545553739772,57.359306719908346],[-124.10547207833362,57.359350688290995],[-124.10548861930762,57.359394656673075],[-124.10550516031975,57.35943862505468],[-124.105519677969,57.359481442970214],[-124.10553413999979,57.359525381358935],[-124.10555068112106,57.359569349739516],[-124.10556514322087,57.35961328812795],[-124.105579605354,57.359657226516354],[-124.10559198845606,57.359701134913465],[-124.10560650630262,57.35974395282872],[-124.10561888946378,57.359787861226444],[-124.10563335172498,57.359831799615215],[-124.10564573494555,57.359875708013504],[-124.1056581181946,57.35991961641233],[-124.10567050147218,57.35996352481152],[-124.10568086134454,57.36000628274759],[-124.10569324467642,57.36005019114781],[-124.10570354895088,57.360094069558905],[-124.10571385324907,57.36013794797075],[-124.10572415757096,57.360181826383304],[-124.10573446191655,57.36022570479676],[-124.10574274283638,57.360268432748114],[-124.10575304722673,57.36031231116316],[-124.10576127254056,57.36035615959035],[-124.10576949787333,57.36040000801867],[-124.10577564411996,57.36044382645958],[-124.10577971127331,57.36048761491347],[-124.10578169932624,57.360531373380475],[-124.10577952915938,57.36057507187228],[-124.10577735898754,57.36061877036573],[-124.1057710305769,57.36066240888368],[-124.10576262303249,57.36070601741432],[-124.10575421546886,57.36074962594604],[-124.10574164963796,57.3607931745008],[-124.10572908377837,57.3608367230559],[-124.10571443876138,57.360880241622056],[-124.10569771457982,57.36092373019835],[-124.10567891122673,57.36096718878423],[-124.10566010783076,57.36101064736897],[-124.10563916960363,57.361055196436446],[-124.10561828697847,57.36109862502779],[-124.10559532516281,57.361142023625916],[-124.10557028414969,57.36118539223002],[-124.10554524307962,57.36122876083082],[-124.10552014629863,57.36127324990313],[-124.10549302596152,57.36131658850467],[-124.10546590556284,57.361359927102086],[-124.1054387851025,57.36140326569551],[-124.10540958542121,57.361446574290696],[-124.10538033001518,57.36149100335569],[-124.10535320936448,57.36153434193614],[-124.10532400948571,57.36157765051692],[-124.1052947538795,57.361622079567624],[-124.10526555386721,57.36166538813856],[-124.10523635378863,57.36170869670454],[-124.10520923281958,57.36175203526304],[-124.105179976946,57.361796464294656],[-124.10515285585053,57.36183980284465],[-124.10512573469344,57.36188314139064],[-124.10510069266,57.36192650993167],[-124.10507351571388,57.361970968945016],[-124.10504847356344,57.36201433747932],[-124.10502551054846,57.36205773601075],[-124.1050024918108,57.362102255014875],[-124.10498160788771,57.36214568354247],[-124.10496072391706,57.36218911206823],[-124.1049419191007,57.36223257059402],[-124.10492305856847,57.36227714959402],[-124.10490425366582,57.36232060811749],[-124.10488336951136,57.362364036637295],[-124.10486456452065,57.36240749515819],[-124.1048457594871,57.362450953677936],[-124.10482689873457,57.362495532672185],[-124.1048060143963,57.36253896118595],[-124.10478720923125,57.36258241970205],[-124.10476632480021,57.3626258482126],[-124.10474751954713,57.362669306726204],[-124.10472657934393,57.362713855709224],[-124.10470777400218,57.36275731422026],[-124.10468896861758,57.36280077273013],[-124.10466808395519,57.362844201232896],[-124.10464927848255,57.36288765974023],[-124.10462833804476,57.36293220871567],[-124.10460953248348,57.36297566722053],[-124.10459072687931,57.36301912572418],[-124.10456984198554,57.36306255421918],[-124.10455098060821,57.36310713319622],[-124.10453217487255,57.363150591696225],[-124.10451336909404,57.363194050195084],[-124.10449248401642,57.363237478684084],[-124.10447362246221,57.36328205765649],[-124.10445481655219,57.36332551615171],[-124.10443601059931,57.363368974645724],[-124.10441928386935,57.3634124631487],[-124.10440042214307,57.36345704211705],[-124.1043816160634,57.36350050060806],[-124.10436488921374,57.363543989108905],[-124.10434602735887,57.363588568074235],[-124.10432930043001,57.363632056573614],[-124.10431251777007,57.36367666554883],[-124.1042957907644,57.36372015404709],[-124.10427906372057,57.36376364254479],[-124.10426228094398,57.36380825151847],[-124.10424555382335,57.363851740015086],[-124.10423085026076,57.363896379000664],[-124.10421412306567,57.36393986749641],[-124.10419941943235,57.363984506481756],[-124.10418471576462,57.36402914546706],[-124.10417006776021,57.36407266397569],[-124.10415536402414,57.36411730296096],[-124.10414279525872,57.36416085148391],[-124.10412809145674,57.364205490469345],[-124.10411546693153,57.364250159469734],[-124.10410284237673,57.36429482847045],[-124.10409027349284,57.364338376994695],[-124.104075569561,57.3643830159809],[-124.10406294491554,57.364427684982694],[-124.10404829661918,57.364471203492045],[-124.1040356719126,57.36451587249454],[-124.10402304717643,57.36456054149743],[-124.10400834308027,57.364605180484276],[-124.10399577398626,57.36464872901064],[-124.1039810698242,57.364693367997674],[-124.10396844496536,57.36473803700188],[-124.10395582007695,57.36478270600655],[-124.10394117152207,57.36482622451675],[-124.10392854657255,57.364870893521946],[-124.10391384224616,57.364915532509634],[-124.10390121723509,57.36496020151562],[-124.10388656854975,57.36500372002609],[-124.10387394347754,57.36504838903266],[-124.10385923901887,57.365093028020794],[-124.10384661388507,57.365137697028025],[-124.10383190936,57.3651823360164],[-124.1038193398744,57.36522588454674],[-124.1038046352834,57.36527052353527],[-124.10379201002694,57.36531519254387],[-124.10377730536955,57.365359831532665],[-124.10376468005154,57.36540450054186],[-124.1037499753277,57.365449139530895],[-124.10373740566068,57.36549268806295],[-124.10372270087095,57.36553732705221],[-124.10371007543024,57.365581996062794],[-124.10369744995997,57.36562666507373],[-124.10368274507185,57.3656713040635],[-124.10367011954,57.36571597307512],[-124.1036554703008,57.365759491587035],[-124.10364284470784,57.36580416059929],[-124.10362813968737,57.36584879958948],[-124.10361551403287,57.365893468602366],[-124.103600808946,57.36593810759283],[-124.1035881832299,57.365982776606415],[-124.1035756132023,57.366026325142144],[-124.10356090801754,57.366070964133016],[-124.10354828221074,57.36611563314774],[-124.10353565637438,57.3661603021628],[-124.10352095109121,57.366204941154116],[-124.10350832519329,57.36624961016999],[-124.1034956992658,57.36629427918617],[-124.10348099388422,57.366338918178016],[-124.10346842361687,57.36638246671636],[-124.10345579759868,57.36642713573358],[-124.10344317155092,57.366471804751384],[-124.10342846603943,57.36651644374381],[-124.1034158399301,57.36656111276221],[-124.1034032137912,57.3666057817811],[-124.10339058762273,57.366650450800414],[-124.10337796142467,57.366695119820136],[-124.10336539092232,57.36673866836145],[-124.10335276466559,57.36678333738202],[-124.10333805892819,57.36682797637583],[-124.10332543260986,57.36687264539708],[-124.10331280626197,57.36691731441872],[-124.10330017988453,57.36696198344088],[-124.10328755347749,57.36700665246342],[-124.10327700650406,57.36705135151456],[-124.1032643800403,57.36709602053821],[-124.10325180927617,57.36713956908313],[-124.1032391827537,57.36718423810756],[-124.10322655620169,57.36722890713253],[-124.10321392962008,57.36727357615777],[-124.10320338248657,57.36731827521286],[-124.10319075584825,57.36736294423929],[-124.10317812918035,57.36740761326622],[-124.10316550248287,57.367452282293485],[-124.10315501097575,57.36749586087189],[-124.10314238422202,57.36754052990018],[-124.10313183693086,57.367585228959456],[-124.10311921012038,57.367629897988806],[-124.10310866277736,57.36767459704949],[-124.10309603591016,57.367719266079945],[-124.10308548851526,57.36776396514213],[-124.10307286159134,57.36780863417366],[-124.10306236988038,57.36785221275753],[-124.1030518224093,57.367896911821816],[-124.10304127491347,57.36794161088703],[-124.10302864787897,57.36798627992086],[-124.10301810033127,57.36803097898752],[-124.10300755275885,57.3680756780549],[-124.10299700516171,57.36812037712308],[-124.10298651327837,57.3681639557121],[-124.10297596563215,57.36820865478193],[-124.10296541796123,57.368253353852545],[-124.1029548702656,57.368298052923876],[-124.10294432254524,57.368342751996074],[-124.10293377480015,57.368387451069154],[-124.10292536230922,57.36843105969646],[-124.10291481451749,57.36847575877118],[-124.10290426670106,57.36852045784677],[-124.10289579840531,57.368565186957426],[-124.10288525054186,57.368609886034726],[-124.10287678220395,57.3686546151475],[-124.10286629003629,57.36869819374622],[-124.10285782165654,57.36874292286086],[-124.10284727369945,57.36878762194176],[-124.10283880527756,57.36883235105863],[-124.10283033683581,57.36887708017656],[-124.10282192411862,57.36892068881497],[-124.10281345563746,57.36896541793507],[-124.10280498713642,57.36901014705633],[-124.10279651861555,57.36905487617864],[-124.1027880500748,57.36909960530215],[-124.1027796372602,57.369143213945875],[-124.10277116868004,57.369187943071466],[-124.10276270008,57.36923267219826],[-124.10275423146012,57.3692774013261],[-124.10274789815415,57.36932104001076],[-124.1027394294973,57.369365769140884],[-124.10273304041196,57.36941052830899],[-124.1027245717178,57.36945525744155],[-124.10271823834834,57.36949889613111],[-124.10270976961723,57.36954362526604],[-124.10270338046728,57.36958838443934],[-124.10269699130235,57.36963314361388],[-124.10269065787182,57.3696767823086],[-124.10268426867715,57.36972154148588],[-124.10267787946748,57.36976630066454],[-124.10257612355926,57.36984556351445],[-124.12892657609808,57.40001060593253],[-124.13353186575036,57.40527556108072],[-124.13348770908539,57.40532651433884],[-124.13345445426665,57.40536753059324],[-124.1334211993763,57.405408546840654],[-124.13338794441437,57.40544956308111],[-124.13335463448071,57.4054916998422],[-124.13332137937456,57.40553271606863],[-124.1332901508835,57.40557488236995],[-124.13325689563536,57.405615898583],[-124.13322566700475,57.40565806487195],[-124.13319449321018,57.40569911062709],[-124.13316326444233,57.40574127690412],[-124.13313203560537,57.40578344317532],[-124.1331008066993,57.40582560944055],[-124.13306957772413,57.4058677756999],[-124.13303834867985,57.40590994195325],[-124.13300711956646,57.40595210820078],[-124.13297797199546,57.405994304001354],[-124.13294674274611,57.40603647023747],[-124.13291759504374,57.406078666027646],[-124.13288631074366,57.40612195278058],[-124.13285716290896,57.40616414856044],[-124.13282593338675,57.40620631477394],[-124.13279678542071,57.40624851054341],[-124.13276758247156,57.406291826836096],[-124.13273635274557,57.406333993032895],[-124.13270720458267,57.40637618878703],[-124.13267800143383,57.406419505064534],[-124.13264885314089,57.406461700808755],[-124.13261762314433,57.40650386698326],[-124.13258841979584,57.406547183245586],[-124.13255927130602,57.40658937897453],[-124.13253012275169,57.40663157469846],[-124.13249883755752,57.40667486137938],[-124.13246968887087,57.40671705709299],[-124.13244054011967,57.40675925280163],[-124.13240925471892,57.40680253946583],[-124.13238010583541,57.40684473516418],[-124.13235095688735,57.40688693085754],[-124.13231967128,57.406930217505085],[-124.13229052219964,57.40697241318813],[-124.13225929138801,57.40701457929579],[-124.13223014217621,57.40705677496839],[-124.13219891122864,57.40709894106466],[-124.13216768021195,57.40714110715505],[-124.13213853080195,57.40718330281183],[-124.13210729964929,57.40722546889083],[-124.1320760684275,57.40726763496405],[-124.13204483713663,57.40730980103126],[-124.13201360577662,57.407351967092524],[-124.13198237434749,57.40739413314786],[-124.131949116104,57.40743514909305],[-124.13191788453534,57.40747731513605],[-124.13188462614985,57.40751833106779],[-124.13185339444163,57.40756049709843],[-124.13182013591414,57.40760151301675],[-124.1317868223657,57.4076436494572],[-124.13175356369395,57.407684665361614],[-124.1317203049506,57.40772568125895],[-124.1316870461357,57.40776669714928],[-124.13165378724915,57.40780771303263],[-124.13161844657924,57.407848699328476],[-124.1315851875473,57.40788971519736],[-124.13154990168428,57.40792958094835],[-124.13151456078963,57.407970567220445],[-124.13147921981893,57.40801155348451],[-124.13144185200952,57.40805138962767],[-124.13140656584682,57.408091255345745],[-124.13136919788327,57.40813109147106],[-124.13133182984164,57.408170927587115],[-124.13129446172182,57.40821076369385],[-124.1312570935239,57.408250599791224],[-124.13121972524786,57.40829043587946],[-124.1311803301241,57.4083291218414],[-124.13114087995098,57.40836892832231],[-124.13110148466602,57.40840761426321],[-124.13106208930105,57.40844630019355],[-124.13102269385612,57.40848498611331],[-124.13098121658302,57.40852364243189],[-124.13093973922581,57.40856229873868],[-124.13089831676123,57.408599834504074],[-124.13085481246084,57.408637340664846],[-124.1308133348516,57.40867599693547],[-124.13076983038059,57.408713503070615],[-124.13072632582391,57.40875100919256],[-124.13068079440275,57.408787365176124],[-124.13063728967413,57.40882487127091],[-124.13059175807972,57.408861227225955],[-124.13054622639845,57.40889758316635],[-124.13049861286011,57.40893390949377],[-124.13045099923099,57.40897023580506],[-124.13040338551109,57.40900656210026],[-124.13035582669383,57.40904176784947],[-124.1303082127938,57.40907809411241],[-124.13025857201954,57.40911327022722],[-124.13020893115362,57.40914844632438],[-124.13015726341196,57.409182472270246],[-124.13010762236237,57.409217648331214],[-124.13005589943384,57.409252794769216],[-124.13000423141403,57.40928682065796],[-124.12995256330196,57.40932084652737],[-124.1299008950976,57.40935487237748],[-124.12984714500642,57.40938886859971],[-124.12979339481933,57.40942286480083],[-124.1297396995485,57.40945574045105],[-124.12968594917122,57.40948973661031],[-124.12963017191178,57.409522582606435],[-124.12957647635957,57.40955545819279],[-124.12952069890956,57.409588304144364],[-124.12946492136336,57.40962115007318],[-124.12940914372102,57.40965399597919],[-124.12935128417207,57.40968681224604],[-124.12929550633565,57.40971965810571],[-124.12923770161647,57.40975135379434],[-124.12917984177204,57.40978416998848],[-124.12912203685876,57.40981586562807],[-124.12906423184936,57.40984756124302],[-124.12900642674376,57.409879256833435],[-124.12894653971964,57.4099109227764],[-124.12888873442002,57.40994261831678],[-124.1288288471985,57.40997428420789],[-124.12876895987743,57.410005950072446],[-124.12870907245686,57.41003761591076],[-124.12864923998183,57.41006816119248],[-124.12858935236396,57.41009982697779],[-124.12852951969528,57.41013037220669],[-124.12846755004442,57.41016200830874],[-124.12840771718045,57.410192553483775],[-124.12834580238159,57.410223069000004],[-124.12828596932414,57.4102536141213],[-124.12822399927065,57.41028525011185],[-124.12816208417404,57.41031576554397],[-124.12810016897825,57.41034628094774],[-124.1280382536833,57.41037679632316],[-124.12797633828916,57.410407311670134],[-124.12791442279588,57.41043782698886],[-124.1278525072034,57.41046834227915],[-124.12779059151175,57.41049885754119],[-124.12772867572095,57.41052937277476],[-124.12766473304892,57.41055873780664],[-124.12760281706,57.41058925298252],[-124.12754090097191,57.41061976813015],[-124.12747690292302,57.410650253603094],[-124.12741498663497,57.41068076869285],[-124.12735104346712,57.41071013357603],[-124.12728912698095,57.410740648608204],[-124.12722721039562,57.41077116361189],[-124.12716321184149,57.410801648936186],[-124.12710129505619,57.41083216388226],[-124.12703735139249,57.41086152861665],[-124.1269754344091,57.41089204350502],[-124.1269114354505,57.41092252870994],[-124.12684951826711,57.41095304354049],[-124.12678760098457,57.4109835583428],[-124.12672360172195,57.41101404345861],[-124.12666168423944,57.41104455820321],[-124.12659976665778,57.41107507291941],[-124.1265378489769,57.411105587607274],[-124.12647384930948,57.41113607260474],[-124.12641193142866,57.41116658723487],[-124.12635001344864,57.411197101836684],[-124.12628809536946,57.41122761641008],[-124.12622617719111,57.41125813095515],[-124.12616628568917,57.41128979566897],[-124.12610436731221,57.41132031015823],[-124.12604244883607,57.411350824619284],[-124.12598047513528,57.41138245958206],[-124.125920638361,57.411413003657074],[-124.1258607463617,57.411444668235966],[-124.12579877235738,57.41147630311572],[-124.1257388801573,57.411507967640745],[-124.12567904299225,57.41153851160916],[-124.12561915059489,57.41157017608139],[-124.12555925809795,57.41160184052722],[-124.12549936550148,57.411633504946515],[-124.1254414995792,57.411666319548196],[-124.12538160678352,57.41169798391566],[-124.12532379580719,57.411729677936954],[-124.12526592958763,57.41176249246401],[-124.1252080632684,57.41179530696655],[-124.12515025200005,57.411827000914116],[-124.12509238548323,57.41185981536762],[-124.12503451886673,57.411892629796434],[-124.12497873407989,57.4119254738865],[-124.12492294919689,57.411958317953804],[-124.1248671090586,57.41199228252878],[-124.12481132398156,57.41202512655055],[-124.12475548364584,57.41205909108006],[-124.12469964321056,57.412093055586666],[-124.12464593978166,57.41212592923134],[-124.12459009915078,57.41215989369341],[-124.12453634036402,57.4121938878256],[-124.12448258148132,57.41222788193672],[-124.12442674055539,57.412261846332406],[-124.12437298147904,57.41229584040071],[-124.12431922230675,57.412329834448066],[-124.12426546303851,57.41236382847433],[-124.12420962171981,57.41239779278172],[-124.1241558622579,57.41243178676516],[-124.12410210270009,57.41246578072767],[-124.12404834304633,57.41249977466914],[-124.12399458329664,57.41253376858968],[-124.12394076826382,57.41256888301962],[-124.12388700832065,57.41260287689812],[-124.12383324828153,57.41263687075559],[-124.1237794881465,57.412670864592215],[-124.12372775469282,57.412706008643745],[-124.1236739943661,57.41274000243919],[-124.12362017874653,57.412775116744015],[-124.12356641822635,57.4128091104974],[-124.12351473958854,57.41284313393886],[-124.12346092367652,57.41287824818158],[-124.1234071628687,57.41291224187288],[-124.12335542874386,57.41294738578526],[-124.12330161253777,57.41298249996595],[-124.12324993342831,57.41301652330824],[-124.12319611702735,57.41305163744782],[-124.12314443772992,57.41308566075076],[-124.12309062113405,57.41312077484925],[-124.12303888643407,57.4131559186433],[-124.12298715163867,57.41319106241798],[-124.12293338996672,57.413225055924606],[-124.1228816549801,57.41326019965994],[-124.12282991989807,57.413295343375935],[-124.12277610271616,57.413330457352],[-124.12272436744134,57.41336560102853],[-124.12267268729677,57.413399624155],[-124.12262095183263,57.41343476779299],[-124.12256921627305,57.413469911411674],[-124.12251539860429,57.41350502528622],[-124.12246366285196,57.413540168865346],[-124.1224119270042,57.413575312425344],[-124.12236019106096,57.41361045596589],[-124.12230845502229,57.41364559948715],[-124.12225671888818,57.4136807429892],[-124.1222049826586,57.413715886471856],[-124.12215324633361,57.41375102993514],[-124.12210150991316,57.41378617337927],[-124.1220497733973,57.41382131680403],[-124.12199803678594,57.413856460209516],[-124.12194630007914,57.413891603595665],[-124.12189450802761,57.41392786749335],[-124.12184277112836,57.413963010840895],[-124.12179311617379,57.4139981839055],[-124.12174137908553,57.41403332721527],[-124.12168964190184,57.41406847050565],[-124.1216379046227,57.414103613776874],[-124.12158611198937,57.41413987755963],[-124.12153437451776,57.41417502079212],[-124.12148471900217,57.41421019374663],[-124.12143298134156,57.41424533694139],[-124.12138118832053,57.41428160064784],[-124.12132945046743,57.414316743803916],[-124.12127979457793,57.41435191668524],[-124.12122805653584,57.41438705980357],[-124.1211762631271,57.41442332343368],[-124.12112452489252,57.414458466513494],[-124.12107486862914,57.41449363932159],[-124.12102313020553,57.41452878236356],[-124.12097133640908,57.41456504591735],[-124.12091959779302,57.4146001889207],[-124.12086994115572,57.41463536165569],[-124.12081814706856,57.41467162515244],[-124.12076640816645,57.41470676809865],[-124.12071675124882,57.41474194077907],[-124.12066495687097,57.41477820421866],[-124.1206132176828,57.414813347107916],[-124.12056356048485,57.41484851973354],[-124.12051176581627,57.414884783116136],[-124.12046002634209,57.41491992594828],[-124.12041036886377,57.41495509851925],[-124.12035857390451,57.41499136184483],[-124.12030683414426,57.415026504619775],[-124.1202571763856,57.41506167713614],[-124.12020538113562,57.41509794040472],[-124.12015364108936,57.41513308312265],[-124.12010398305033,57.41516825558428],[-124.12005224281504,57.415203398264445],[-124.12000044717733,57.41523966145668],[-124.11995078885796,57.415274833863634],[-124.11989904833662,57.41530997648661],[-124.11984725240818,57.415346239621776],[-124.11979551169432,57.41538138220626],[-124.11974585300108,57.41541655454014],[-124.11969405678194,57.41545281761814],[-124.11964231578203,57.415487960145526],[-124.11959265680841,57.41552313242472],[-124.11954091561948,57.415558274914176],[-124.1194891190126,57.41559453791598],[-124.11943737763117,57.41562968036694],[-124.11938563615429,57.415664822798604],[-124.11933597671319,57.41569999498612],[-124.1192842350473,57.415735137380025],[-124.11923243795562,57.41577140028611],[-124.11918069609725,57.415806542641405],[-124.1191289541434,57.4158416849773],[-124.1190772120941,57.41587682729392],[-124.1190275520919,57.415911999371325],[-124.11897580985355,57.41594714165027],[-124.11892401218009,57.415983404441306],[-124.11887226974926,57.416018546681634],[-124.11882052722298,57.41605368890253],[-124.11876878460124,57.41608883110417],[-124.11871704188407,57.41612397328653],[-124.1186652990714,57.41615911544954],[-124.1186135561633,57.41619425759324],[-124.11856181315972,57.416229399717636],[-124.1185100700607,57.416264541822706],[-124.11845832686622,57.41629968390854],[-124.11840658357626,57.41633482597505],[-124.11833982216207,57.416378723739996],[-124.11832511484177,57.41642336626294],[-124.11831046284543,57.41646688825416],[-124.11829367328195,57.416511500985514],[-124.11827693903868,57.41655499318451],[-124.11826223157665,57.41659963570711],[-124.11824544189817,57.416644248437414],[-124.11822870754155,57.41668774063519],[-124.11820983559826,57.41673232357142],[-124.11819310116229,57.41677581576791],[-124.11817631132521,57.41682042849592],[-124.11815749461837,57.416863890897616],[-124.11814070470078,57.4169085036244],[-124.11812183254514,57.41695308655637],[-124.11810509791172,57.41699657874972],[-124.1180862256708,57.417041161679904],[-124.11806949095804,57.41708465387206],[-124.1180506186318,57.41712923680043],[-124.11803180162903,57.41717269919545],[-124.11801501142814,57.41721731191782],[-124.11799619434126,57.41726077431097],[-124.11797732184199,57.41730535723552],[-124.11796053151885,57.41734996995601],[-124.11794171430428,57.41739343234622],[-124.11792492390063,57.417438045065545],[-124.11790610660192,57.41748150745393],[-124.11788931611775,57.41752612017194],[-124.11787258096716,57.41756961235696],[-124.11785370817024,57.417614195275355],[-124.11783697294031,57.41765768745905],[-124.11782018229754,57.417702300174874],[-124.11780339161541,57.41774691289031],[-124.11778873851401,57.417790434872224],[-124.11777194775621,57.41783504758702],[-124.11775521233594,57.417878539768445],[-124.11774050375152,57.41792318228268],[-124.11772585051048,57.41796670426403],[-124.11771114185763,57.41801134677829],[-124.1176964331703,57.418055989292725],[-124.11768177982779,57.41809951127409],[-124.1176691533355,57.418144183590236],[-124.11765658219377,57.41818773537368],[-124.11764395564269,57.41823240769068],[-124.11763132906201,57.41827708000819],[-124.11761875783318,57.41832063179287],[-124.11760821346924,57.41836533391388],[-124.11759766908054,57.41841003603576],[-124.11758718004968,57.41845361762509],[-124.11757871789466,57.418498349551705],[-124.11756817343455,57.41854305167634],[-124.11755976662093,57.41858666307153],[-124.11755338669418,57.418631424804865],[-124.11754700675243,57.41867618653964],[-124.11754068218006,57.41871982774208],[-124.11753430220861,57.41876458947959],[-124.11753000452188,57.41880938102237],[-124.11752784451215,57.41885308183685],[-124.11752562911245,57.41889790318671],[-124.11752549601452,57.41894275434207],[-124.1175253629163,57.41898760549917],[-124.11752736751491,57.419031365928056],[-124.11753139904725,57.41907627669626],[-124.11753543058907,57.419121187466054],[-124.1175394621404,57.419166098237426],[-124.11754563140789,57.41920991827993],[-124.11755174530477,57.41925485885792],[-124.11755994154264,57.41929982924071],[-124.11756605547082,57.41934476982141],[-124.1175763340764,57.41938977000988],[-124.11758458575645,57.41943361986203],[-124.1175948644079,57.419478620052416],[-124.11760514308368,57.41952362024372],[-124.11761542178371,57.419568620435996],[-124.11762570050801,57.41961362062914],[-124.11763597925663,57.41965862082322],[-124.11764839576087,57.4197025302856],[-124.11765867456027,57.41974753048139],[-124.11767103573757,57.41979256047956],[-124.11768131458801,57.41983756067681],[-124.11769367582126,57.4198825906765],[-124.11770395472274,57.41992759087548],[-124.117716316012,57.41997262087641],[-124.11772659496451,57.42001762107711],[-124.11773692932186,57.42006150074367],[-124.11774720832271,57.42010650094613],[-124.11775540497457,57.42015147134928],[-124.11776568402152,57.42019647155366],[-124.11777388071457,57.42024144195909],[-124.11778207742694,57.420286412365606],[-124.1177881917755,57.42033135297362],[-124.11779430613853,57.42037629358303],[-124.11780042051599,57.42042123419386],[-124.11780445251735,57.42046614500661],[-124.1178084845282,57.42051105582091],[-124.11781043415313,57.42055593683748],[-124.11781238378263,57.42060081785565],[-124.11781225101642,57.42064566907607],[-124.11781211824986,57.42069052029822],[-124.117811985483,57.42073537152205],[-124.11781185271583,57.42078022274766],[-124.1178138023585,57.420825103774284],[-124.11781366959316,57.420869955003305],[-124.11781348144798,57.42091592676974],[-124.11781543109953,57.42096080780161],[-124.11781524295603,57.4210067795716],[-124.11781511019174,57.4210516308075],[-124.11781700447246,57.421097632380466],[-124.11781687170995,57.42114248361988],[-124.11781668356728,57.421188455396965],[-124.1178185778567,57.421234456975164],[-124.11781844509557,57.42127930821975],[-124.11781825695412,57.4213252800021],[-124.11781806881223,57.42137125178642],[-124.11781788066988,57.421417223572455],[-124.1178177479073,57.42146207482396],[-124.11781755976409,57.421508046613546],[-124.11781737162048,57.42155401840495],[-124.11781510102385,57.421599960398765],[-124.11781491287682,57.421645932193755],[-124.11781269765244,57.42169075365446],[-124.11781250950203,57.421736725452966],[-124.11781023888867,57.421782667453726],[-124.11780802365085,57.42182748891966],[-124.11780575302669,57.421873430923945],[-124.11780139992706,57.42191934313045],[-124.11779918467089,57.42196416460141],[-124.11779483155298,57.4220100768111],[-124.11779053380644,57.42205486848562],[-124.11778618066774,57.42210078069861],[-124.11777980041848,57.42214554257624],[-124.11777550263898,57.422190334255404],[-124.11776912236218,57.42223509613608],[-124.11776274207034,57.422279858018015],[-124.11775630638031,57.422325740438495],[-124.11774784356368,57.42237047252283],[-124.11773943611105,57.422414084071214],[-124.11773097325496,57.42245881615778],[-124.11772042787717,57.42250351844469],[-124.11770993785959,57.422547100195004],[-124.11769939243267,57.422591802483545],[-124.11768890236668,57.422635384235534],[-124.11767627437919,57.42268005672405],[-124.11766370174864,57.42272360867578],[-124.11764904657312,57.42276713082565],[-124.11763444675168,57.42280953243809],[-124.1176197915097,57.42285305458796],[-124.11760305371097,57.42289654693502],[-124.11758637126319,57.422938918743945],[-124.11756963338858,57.42298241109004],[-124.11755086833583,57.423024753094055],[-124.11753210324132,57.4230670950972],[-124.11751131096192,57.42310828675704],[-124.11748421563416,57.423150509539],[-124.11745301056119,57.42319155216868],[-124.11741555779656,57.42323250537534],[-124.1173719127164,57.42327224861569],[-124.11732618499941,57.423311962035676],[-124.11727629209133,57.423351615825275],[-124.11722223397943,57.42339120997968],[-124.11716614860526,57.42342965376561],[-124.11710589800971,57.42346803790758],[-124.11704564729271,57.4235064220231],[-124.11698123133792,57.42354474648719],[-124.11691687066326,57.423581950382975],[-124.11685250986288,57.42361915424843],[-124.11678814893679,57.42365635808367],[-124.11672170531881,57.423693532071724],[-124.1166573995569,57.42372961530735],[-124.1165951208236,57.42376684886931],[-124.11653289738996,57.42380296186495],[-124.1164727564122,57.42383910465306],[-124.11641469789609,57.42387527723643],[-124.11635872184749,57.42391147961782],[-124.1163069662801,57.423946621085115],[-124.11625932035054,57.423982942719434],[-124.1162158949282,57.42401820344922],[-124.11617449657852,57.42405461452915],[-124.11614148393264,57.42409002436331],[-124.11611263640387,57.4241254938431],[-124.1160879540037,57.42416102297124],[-124.11607154649441,57.424197791942525],[-124.11606144217487,57.42423352985661],[-124.1160596682247,57.42426938708021],[-124.11606414206832,57.42430533378665],[-124.11607272568673,57.42434246068637],[-124.11608761256657,57.424378556529135],[-124.11610660924997,57.42441583256272],[-124.11612971575067,57.42445428878558],[-124.11615704295028,57.424491684118614],[-124.11618853542629,57.424529139097665],[-124.11622413775956,57.424567774258385],[-124.11626396082688,57.42460534852019],[-124.1163058111612,57.42464407313321],[-124.11635188224842,57.42468173684086],[-124.1163999806221,57.424720550894314],[-124.1164522997673,57.424758304034704],[-124.11650670164246,57.42479608697565],[-124.1165631862539,57.42483389971468],[-124.11662180902829,57.42487062171002],[-124.1166845971806,57.424907403315174],[-124.1167473854542,57.42494418489153],[-124.11681225648563,57.42498099625443],[-124.11687718305548,57.425016687047204],[-124.11694424779874,57.42505128708299],[-124.11701339530629,57.42508591689776],[-124.1170825429396,57.425120546677114],[-124.11715388415517,57.4251529651522],[-124.11722522549222,57.425185383589366],[-124.1172944843008,57.42521777218109],[-124.11736588127786,57.42524907000408],[-124.11743733376922,57.425279247249335],[-124.11750884176868,57.42530830391672],[-124.11757832261347,57.42533621020297],[-124.1176478589509,57.42536299591306],[-124.11771739538615,57.42538978158703],[-124.11778496003184,57.42541429634486],[-124.11785252476452,57.4254388110684],[-124.11792222763094,57.42546223501542],[-124.11799193058309,57.42548565892599],[-124.11806168899986,57.42550796225981],[-124.11813144749834,57.42553026555716],[-124.11820334412224,57.42555147807081],[-124.11827524082622,57.42557269054553],[-124.11834713761027,57.42559390298152],[-124.1184211725154,57.42561402462791],[-124.11849312482515,57.42563411644427],[-124.11856715988559,57.42565423800921],[-124.11864333306218,57.42567326877857],[-124.11871742363796,57.42569226971888],[-124.11879359696572,57.425711300401844],[-124.11886774304591,57.42572918071741],[-124.1189439718759,57.42574709077304],[-124.11902228345873,57.42576503056526],[-124.1190985124331,57.42578294053192],[-124.11917474147918,57.425800850454785],[-124.11925310862554,57.425817669569305],[-124.11933147584112,57.42583448863751],[-124.11940984312591,57.42585130765916],[-124.1194882104799,57.42586812663453],[-124.11956657790313,57.4258849455633],[-124.11964494539554,57.42590176444576],[-124.11972331295718,57.42591858328173],[-124.11980173591635,57.425934281529855],[-124.11988010361412,57.425951100272925],[-124.11996060939782,57.42596682819361],[-124.12003897723271,57.425983646842504],[-124.12011740045595,57.42599934490329],[-124.120195768427,57.42601616345922],[-124.12027627447857,57.426031891187705],[-124.12035464258672,57.426048709649585],[-124.12043306607403,57.42606440752312],[-124.12051143431833,57.42608122589207],[-124.12059188533244,57.426098073970024],[-124.12067025371614,57.42611489224487],[-124.12074862216906,57.42613171047319],[-124.12082699069119,57.42614852865513],[-124.1209032212817,57.42616643758207],[-124.12098158994353,57.42618325567245],[-124.12105990338287,57.42620119425847],[-124.12113613418832,57.426219103051295],[-124.12121236506546,57.426237011800225],[-124.12128854072925,57.42625604104757],[-124.12136471646915,57.42627507025118],[-124.12144089228514,57.42629409941095],[-124.12151498546417,57.42631309878606],[-124.12159110615505,57.42633324840196],[-124.12166514421106,57.42635336823561],[-124.1217391823453,57.42637348802809],[-124.12181108257012,57.426394698585625],[-124.12188506559404,57.42641593883936],[-124.12195691071462,57.426438269860654],[-124.12202875591942,57.42646060084319],[-124.12209851848564,57.4264829020552],[-124.1221703085982,57.426506353504315],[-124.12223996081617,57.42653089572823],[-124.12230758565245,57.42655428764425],[-124.12237718279307,57.42657995033956],[-124.1224447525492,57.42660446272925],[-124.12251221189311,57.42663121617113],[-124.12257764384671,57.42665681931171],[-124.1226451033767,57.42668357268666],[-124.12271042502184,57.426711416849],[-124.12277574676249,57.42673926097966],[-124.12283898585966,57.4267670753584],[-124.12290430778972,57.42679491942653],[-124.12296749183675,57.42682385428845],[-124.12303067597976,57.426852789120744],[-124.12309386021877,57.426881723923465],[-124.12315698932275,57.426911779240264],[-124.12322011852638,57.42694183452752],[-124.12328116507912,57.426971860072236],[-124.12334221172813,57.42700188558951],[-124.12340534122725,57.42703194079021],[-124.12346633284831,57.42706308679539],[-124.12352732456911,57.42709423277313],[-124.12358831638964,57.427125378723424],[-124.12364930830996,57.427156524646264],[-124.12371030033,57.42718767054156],[-124.12377129244983,57.42721881640953],[-124.12383020190326,57.42724993254566],[-124.12389119422083,57.427281078359734],[-124.12395213142995,57.42731334469071],[-124.12401312394877,57.427344490449926],[-124.12407203379416,57.42737560648104],[-124.1241329713077,57.42740787273094],[-124.12419396412582,57.42743901840886],[-124.12425495704365,57.42747016405926],[-124.12431595006127,57.42750130968211],[-124.12437694317862,57.42753245527764],[-124.12443793639575,57.427563600845694],[-124.12449898490516,57.42759362584141],[-124.12455997832005,57.427624771354466],[-124.12462310981262,57.42765482598687],[-124.12468410342701,57.42768597144401],[-124.12474723511897,57.4277160260184],[-124.12481042209419,57.42774496001804],[-124.12487355398362,57.427775014533374],[-124.12493674115264,57.42780394847377],[-124.12499992841767,57.42783288238457],[-124.12506311577872,57.427861816265725],[-124.12512844121241,57.427889659255605],[-124.1251937667416,57.42791750221362],[-124.12525914753702,57.427944224594235],[-124.12527345132231,57.42795003509373],[-124.12570784887504,57.42805938737777],[-124.12605373554828,57.42814617211676],[-124.12639754097593,57.42823292628923],[-124.12674337566924,57.428320829774734],[-124.12708926707644,57.42840761181103],[-124.12743307722297,57.428494363297155],[-124.12777897177777,57.42858114353321],[-124.12812486790885,57.428667922866474],[-124.12847082069358,57.42875358074917],[-124.1288167750345,57.42883923772853],[-124.12916273093157,57.42892489380464],[-124.12950874343201,57.42900942842895],[-124.12985908832285,57.429090659721524],[-124.13021612354974,57.42916301450621],[-124.13057771100566,57.429227583678255],[-124.13095481495708,57.429273309664545],[-124.13128806230067,57.42936326483165],[-124.1315796467557,57.429495238005146],[-124.13187106829582,57.429630572197325],[-124.13219072409706,57.42974275864426],[-124.1325147674521,57.429850521257364],[-124.13282357277988,57.429971522757675],[-124.1331237736427,57.430098008071646],[-124.1334195908915,57.43022891581397],[-124.13370263788194,57.43036524837507],[-124.1339493430999,57.430520127475],[-124.13418311325896,57.430683793306],[-124.13443190546515,57.430838701083815],[-124.13468486565397,57.430993667476926],[-124.13494002067043,57.43114642182752],[-124.13520159137211,57.43129590261774],[-124.13548032203938,57.43143553408927],[-124.13577188202214,57.43156861875945],[-124.13605067163508,57.43170712850181],[-124.13632710599552,57.4318512109331],[-124.13659077001856,57.432000718558506],[-124.13682258724654,57.43216210929564],[-124.13700775678456,57.432339659066365],[-124.1371674378321,57.432526939680486],[-124.13732498255223,57.43271531119506],[-124.13750999267046,57.432896222009056],[-124.1377181378446,57.4330729747011],[-124.13788643191795,57.43325476971863],[-124.13794766662984,57.433451869403015],[-124.13793741798415,57.43366141342727],[-124.13795024817473,57.43386792011145],[-124.1379839648136,57.43407360108027],[-124.13797815655187,57.43427760139478],[-124.13791199102984,57.43447962623435],[-124.13781676985873,57.43467899720028],[-124.13773190884777,57.43487963611147],[-124.13765735333602,57.43508266354627],[-124.13757868541533,57.4352845114425],[-124.13747934885417,57.435482702769306],[-124.13735112006009,57.435674878400334],[-124.13719191540893,57.43586100875483],[-124.13701204113534,57.43604348231424],[-124.1368157183706,57.43622123743174],[-124.13660716835878,57.43639321247773],[-124.13635974717496,57.43655005934536],[-124.13608359677025,57.43669752815527],[-124.13583216946805,57.43685095337464],[-124.13566297494266,57.43702797002338],[-124.13559048751402,57.437231026176924],[-124.1355241395445,57.43743641200236],[-124.13541025815897,57.43763327493531],[-124.1352859588269,57.43782999018697],[-124.135136987205,57.438019627692526],[-124.13494903389241,57.43819637786826],[-124.13470334809604,57.438359974749915],[-124.13440508460998,57.438490307011755],[-124.13406559440521,57.438568472487646],[-124.13369205850402,57.43861812078855],[-124.13331051773199,57.438660926458105],[-124.13294690229968,57.438720805454196],[-124.13259199865428,57.43881556860974],[-124.13231823051275,57.43895633601509],[-124.132182015159,57.43914054498326],[-124.13209903298774,57.43934457227713],[-124.13204911011363,57.43955467554906],[-124.13202237966057,57.439759501367746],[-124.13204981908922,57.439965096166304],[-124.13208975969043,57.44017086843944],[-124.13209844836362,57.44037619713346],[-124.13205510457378,57.440579665950835],[-124.13198670317571,57.440783900445695],[-124.1318954922688,57.44098556847364],[-124.13178580357162,57.44118136746073],[-124.13157534014341,57.4413488234388],[-124.13135681570847,57.44151055795663],[-124.1313031038604,57.44171275823438],[-124.13130115071861,57.44192242156556],[-124.13133280999564,57.44212695550522],[-124.13139161138594,57.442330753519414],[-124.13146297006446,57.442533608484645],[-124.13152807864537,57.44273637469797],[-124.13156812934741,57.44293990649229],[-124.13156014670527,57.443144999049636],[-124.13151668686857,57.44335070929806],[-124.13148364488319,57.44355656748681],[-124.13150494313233,57.44375983318959],[-124.13160569673308,57.443958620234156],[-124.13171900857365,57.44415646415142],[-124.13176536791858,57.44435896430896],[-124.13176977835258,57.444566475731314],[-124.13173876540714,57.44477348434218],[-124.13166432357762,57.44497314840556],[-124.1315646008843,57.4451780602991],[-124.13144804196298,57.44538609717507],[-124.13129671780538,57.44558018423671],[-124.1310946180668,57.44574663785832],[-124.13082375886125,57.445869503536834],[-124.1304921453744,57.44595562262195],[-124.13011984537289,57.44602097860991],[-124.12973328787554,57.44607940288069],[-124.12935895663286,57.44614360654735],[-124.12900880351458,57.44622497309977],[-124.12867246423168,57.44632223402939],[-124.12834807507556,57.446430877554384],[-124.12803377249612,57.446546391869404],[-124.12773147487142,57.44667216838574],[-124.12742720167904,57.44679567344441],[-124.12712495521392,57.446920328030295],[-124.12683882606295,57.447056424839836],[-124.12651053351021,57.4471594017673],[-124.12617609793601,57.447260047753275],[-124.12586786798362,57.44737900767625],[-124.1255595257244,57.447500208018646],[-124.12524109329097,57.44761453585251],[-124.12490478731426,57.44771066670747],[-124.12455258159116,57.44779087126404],[-124.12421035201395,57.44788018789259],[-124.12391620105409,57.44800943628009],[-124.1236482549547,57.44815699925662],[-124.12338853193859,57.44830692168296],[-124.1231104383891,57.44844873222064],[-124.12280821993573,57.44857225650791],[-124.12249179892699,57.44868772808246],[-124.12217948859524,57.44880437893438],[-124.12187923764687,57.44893017198667],[-124.12162147573012,57.449082361891094],[-124.12132324939336,57.44920930400977],[-124.12101685115753,57.44933276477622],[-124.18410018474952,57.45502531446185],[-124.18069062335044,57.489301688739175],[-124.1806537424767,57.48950526854269],[-124.18061263511719,57.48970991138621],[-124.18057569979955,57.489914611868954],[-124.18054710909782,57.490119427610765],[-124.180535208205,57.49032447385072],[-124.18055668759816,57.490529981058536],[-124.18057190836184,57.49073540187652],[-124.18054123072412,57.490940188956436],[-124.18047508549273,57.491144486312685],[-124.18040476690909,57.49134872605141],[-124.18035750449927,57.491551041454294],[-124.18037288551267,57.49175310058859],[-124.18049691800806,57.49195329597705],[-124.18062517817178,57.49215242826722],[-124.1806386890028,57.492349976146784],[-124.18054284970881,57.49256395617059],[-124.18034001854254,57.492745060341065],[-124.18003421232767,57.49285297424643],[-124.17970807689335,57.49294939292887],[-124.17937386250406,57.49304009235089],[-124.17903146189185,57.4931273137112],[-124.17868296151599,57.493211085783145],[-124.17833044785672,57.493291437360796],[-124.17797381355975,57.493370609672795],[-124.17761514506637,57.493448631540026],[-124.17725444239657,57.49352550294566],[-124.17689577096597,57.493603522865946],[-124.17653709806338,57.49368154181543],[-124.17618045637329,57.49376070930196],[-124.17573922569416,57.493862253718724],[-124.17566897438145,57.49389043690503],[-124.1755946038313,57.493917441651114],[-124.17552221206485,57.49394671650427],[-124.17544987397415,57.49397487068811],[-124.17537962223889,57.49400305372298],[-124.17530931660802,57.494032357351365],[-124.17523901086878,57.49406166094305],[-124.17517079148843,57.49409099339133],[-124.17510465847157,57.49412035469943],[-124.1750385253526,57.494149715975105],[-124.17497233832988,57.49418019784863],[-124.17490823767464,57.49421070858723],[-124.17484622339177,57.494241248194],[-124.17478420900926,57.49427178777246],[-124.17472422719652,57.49430347685332],[-124.17466429909472,57.494334045277306],[-124.17460431708382,57.494365734305276],[-124.17454224848939,57.49439739440352],[-124.17448023360804,57.49442793384305],[-124.17441816480874,57.494459593884706],[-124.17435614972628,57.49449013326743],[-124.1742941345442,57.49452067262201],[-124.17422997894671,57.49455230367026],[-124.17416587706843,57.494582814057765],[-124.17410177508728,57.494613324415056],[-124.17403767300323,57.49464383474191],[-124.17397351698457,57.49467546566865],[-124.17390941469283,57.4947059759349],[-124.17384531229823,57.494736486170716],[-124.17378115596321,57.49476811700638],[-124.1737170533609,57.49479862718143],[-124.17365295065574,57.49482913732614],[-124.17358879400436,57.49486076807089],[-124.17352463724622,57.494892398785304],[-124.17346053422854,57.49492290883893],[-124.17339846377212,57.49495456841398],[-124.1733363932123,57.49498622796078],[-124.17327432254913,57.49501788747912],[-124.1732122517826,57.49504954696919],[-124.17315012705613,57.49508232706134],[-124.17309014260276,57.49511401542094],[-124.17303010418921,57.495146824384705],[-124.1729721521973,57.4951796622502],[-124.17291420010531,57.49521250009113],[-124.17285624791323,57.49524533790761],[-124.17280038215162,57.49527820463035],[-124.17274446242456,57.49531219196085],[-124.17269062913174,57.49534620820134],[-124.17263679574259,57.49538022442088],[-124.1725849949213,57.49541539018429],[-124.17253324787946,57.49544943529791],[-124.17248353340976,57.49548462995859],[-124.17243590539158,57.495519853538426],[-124.17238822340543,57.495556197732654],[-124.1723426278756,57.49559257084894],[-124.17229911880798,57.49562897288954],[-124.17225560965706,57.495665374916875],[-124.17221413309113,57.49570292650184],[-124.17217474299878,57.49574050701591],[-124.17213738549862,57.4957792370915],[-124.17210002792237,57.4958179671579],[-124.17206684339352,57.49585675510003],[-124.17203360490632,57.49589666366593],[-124.17200245291545,57.49593660116842],[-124.17197130085914,57.49597653866494],[-124.17194014873736,57.496016476155496],[-124.17191311580096,57.49605759216093],[-124.17188405012651,57.496097558586044],[-124.17185701707179,57.49613867458288],[-124.17182998395857,57.49617979057571],[-124.17180498347064,57.49622205614221],[-124.17178003682574,57.49626320107442],[-124.17175503622741,57.49630546663446],[-124.17173212216197,57.4963477611392],[-124.17170920804553,57.4963900556415],[-124.17168838047118,57.49643237908993],[-124.17166749894821,57.49647582316785],[-124.17164667128044,57.49651814661291],[-124.17162578966273,57.49656159068748],[-124.17160699459976,57.49660506371026],[-124.17158819949381,57.49664853673199],[-124.17156940434487,57.49669200975271],[-124.17155264185656,57.49673663235452],[-124.17153593323545,57.49678013432453],[-124.17151917066899,57.4968247569255],[-124.17150246197086,57.49686825889459],[-124.17148778594556,57.49691291044651],[-124.17147310988578,57.496957561998556],[-124.17145843379153,57.49700221355066],[-124.1714437576628,57.497046865102945],[-124.17143116812865,57.49709154560796],[-124.17141857856492,57.497136226113476],[-124.17140384842664,57.49718199829834],[-124.17139125880084,57.49722667880483],[-124.1713807018725,57.49727250889723],[-124.17136811218951,57.49731718940503],[-124.17135755520815,57.49736301949917],[-124.171344965468,57.4974077000083],[-124.1713344084336,57.497453530104245],[-124.17132385137373,57.497499360201196],[-124.17131329428841,57.4975451902991],[-124.17130279109223,57.49758989976582],[-124.1712922339564,57.49763572986577],[-124.1712816767951,57.49768155996655],[-124.17127111960835,57.49772739006845],[-124.17126264906247,57.49777324912659],[-124.17125214574372,57.49781795859822],[-124.1712436751548,57.49786381765894],[-124.17123311787164,57.497909647765034],[-124.171222560563,57.497955477872225],[-124.17121408990775,57.49800133693638],[-124.17120353255073,57.49804716704576],[-124.17119511577057,57.49809190547985],[-124.17118455836552,57.49813773559134],[-124.17117608762383,57.498183594660524],[-124.17116558408989,57.49822830414136],[-124.17115502661139,57.498274134256],[-124.17114660972389,57.49831887269589],[-124.17113605219733,57.498364702812616],[-124.17112554856631,57.49840941229734],[-124.17111499098922,57.49845524241606],[-124.17110448730843,57.498499951902744],[-124.17109189689435,57.49854463243236],[-124.17108139316169,57.49858934192063],[-124.1710708894043,57.498634051409944],[-124.17105829890633,57.49867873194161],[-124.17104570837878,57.49872341247379],[-124.17103317174583,57.49876697237338],[-124.17102058115952,57.498811652906646],[-124.1710079905436,57.49885633344045],[-124.17099325924451,57.4989021056486],[-124.170978581836,57.4989467572235],[-124.17096390439302,57.49899140879862],[-124.17094917298849,57.499037181007196],[-124.17093444154851,57.49908295321596],[-124.17091976400107,57.499127604791525],[-124.17090503249064,57.49917337700067],[-124.17089030094472,57.499219149210035],[-124.17087556936335,57.499264921419645],[-124.17086083774647,57.49931069362931],[-124.17084824677754,57.49935537416749],[-124.17083351509274,57.49940114637777],[-124.17082087013031,57.49944694755071],[-124.17080822513745,57.49949274872417],[-124.17079766687696,57.49953857886107],[-124.1707850757583,57.499583259402115],[-124.17077451744478,57.499629089540754],[-124.17076604587615,57.49967494864358],[-124.17075762822077,57.49971968711367],[-124.17074915661158,57.49976554621916],[-124.17074282569398,57.499810313655374],[-124.1707385815417,57.49985511005672],[-124.17073433737941,57.49989990645967],[-124.17073217999226,57.49994473182806],[-124.1707300226,57.49998955719807],[-124.17073203878275,57.5000344404975],[-124.17073410890515,57.50007820316424],[-124.1707361790323,57.50012196583273],[-124.17074242275876,57.500165786429996],[-124.1707486664996,57.50020960702868],[-124.17075699705694,57.500253456592205],[-124.17076955517663,57.50029624344864],[-124.17078211332462,57.50033903030548],[-124.17079675831002,57.50038184612547],[-124.17081349013996,57.500424690907955],[-124.17083236275401,57.50046644401743],[-124.17085332222571,57.5005082260875],[-124.17087428174344,57.50055000815587],[-124.17089732812802,57.50059181918347],[-124.17092246138643,57.500633659169395],[-124.17094759470011,57.50067549915201],[-124.17097486882552,57.50071624745636],[-124.17100422983934,57.500757024715924],[-124.17103353698907,57.50079892260563],[-124.17106498496416,57.50083972881362],[-124.1710964330068,57.50088053501561],[-124.17112996795596,57.50092137016904],[-124.17116355690065,57.50096108467991],[-124.1711991788365,57.50100194877554],[-124.17123480084892,57.50104281286305],[-124.17127047685842,57.50108255630679],[-124.17130818587329,57.501123449332546],[-124.17134594888766,57.50116322171331],[-124.17138579883574,57.501203023038144],[-124.17142559495112,57.501243944988076],[-124.17146544506723,57.50128374629162],[-124.17150529526678,57.50132354758458],[-124.17154723241337,57.50136337781769],[-124.17158916964785,57.50140320803891],[-124.17162902010216,57.50144300929852],[-124.17167304438046,57.501482868445436],[-124.1717149818786,57.501522698630815],[-124.17175697337142,57.501561408168],[-124.171800997921,57.50160126727628],[-124.17184293568381,57.50164109742512],[-124.1718869604158,57.501680956507485],[-124.1719288983566,57.50172078663176],[-124.17197292327103,57.501760645688236],[-124.17201486138978,57.5018004757879],[-124.17205894038497,57.501839214181736],[-124.17210087868054,57.50187904425688],[-124.172142817064,57.50191887431999],[-124.17218684243213,57.50195873331199],[-124.17222669409455,57.50199853441051],[-124.17226863274166,57.502038364437745],[-124.17231057147666,57.50207819445312],[-124.17235042339388,57.50211799551838],[-124.17239027539453,57.50215779657295],[-124.17243007359076,57.50219871825399],[-124.17246992575944,57.502238519287346],[-124.172507691097,57.50227829137432],[-124.17255529836955,57.502330535137546],[-124.17263861342565,57.50233505442105],[-124.17272192850152,57.50233957365205],[-124.17280315667881,57.502344063899386],[-124.17288647179402,57.502348583026546],[-124.1729697330568,57.502354222738425],[-124.17305299434433,57.502359862397824],[-124.17313630952387,57.502364381366945],[-124.17321957085834,57.50237002092116],[-124.17330283221752,57.50237566042283],[-124.1733860936014,57.50238129987189],[-124.1734672680887,57.50238691034788],[-124.17355052952165,57.502392549693184],[-124.17363379097927,57.50239818898598],[-124.17371705246157,57.50240382822614],[-124.17380031396861,57.50240946741373],[-124.17388357550035,57.50241510654885],[-124.17396683705677,57.50242074563136],[-124.17405009863792,57.502426384661284],[-124.1741312733195,57.502431994728695],[-124.17421453494966,57.502437633654836],[-124.17429785043771,57.502442151890314],[-124.17438111211484,57.50244779071128],[-124.17446442764495,57.502452308841576],[-124.17454768936902,57.502457947557396],[-124.17463100494119,57.50246246558233],[-124.17471437435408,57.50246586291633],[-124.17479560303654,57.50247035193647],[-124.17487891866534,57.50247486980482],[-124.1749622881276,57.502478266982074],[-124.17504565760476,57.50248166410666],[-124.17512902709682,57.5024850611786],[-124.17521245041004,57.502487337559074],[-124.17529587373326,57.50248961388688],[-124.175377210138,57.5024918612716],[-124.175460633481,57.50249413749511],[-124.17554411063053,57.502495293027216],[-124.1756275877851,57.502496448506356],[-124.17571106494476,57.50249760393268],[-124.17579459589865,57.50249763866735],[-124.17587603992345,57.502497644466686],[-124.17595962466184,57.50249655845789],[-124.17604315561364,57.50249659303501],[-124.17612668656557,57.502496627559296],[-124.17621027129454,57.502495541391646],[-124.17629385601872,57.502494455170876],[-124.17637535380882,57.50249334002278],[-124.17645893852344,57.50249225369743],[-124.17654252323331,57.50249116731917],[-124.17662610793839,57.502490080887775],[-124.17670969263868,57.50248899440348],[-124.17679333109389,57.502486787227],[-124.17687696953935,57.50248457999738],[-124.17695846729116,57.50248346448883],[-124.17704210571975,57.50248125715445],[-124.17712574413862,57.50247904976702],[-124.17720938254777,57.50247684232666],[-124.1772930209472,57.502474634833085],[-124.17737665933694,57.50247242728654],[-124.17745826452811,57.50246907019009],[-124.177541902896,57.502466862538725],[-124.17762559498928,57.502463534194696],[-124.17770923333525,57.50246132643722],[-124.17779292540168,57.50245799798697],[-124.17787661745345,57.50245466948366],[-124.17796025576536,57.50245246156687],[-124.17804186086214,57.502449104109225],[-124.17812555287254,57.50244577544797],[-124.17820924486828,57.502442446733546],[-124.17829293684936,57.502439117965956],[-124.17837668252872,57.50243466850542],[-124.17845828755051,57.502431310790186],[-124.17854197948526,57.50242798186452],[-124.17862572511092,57.50242353224589],[-124.17870941701389,57.50242020321402],[-124.17879310890221,57.50241687412896],[-124.17887476754721,57.50241239551596],[-124.17895845940386,57.50240906632591],[-124.17904220493911,57.5024046164428],[-124.17912595045473,57.50240016650643],[-124.17920964226245,57.502396837157136],[-124.17929130081534,57.50239235828618],[-124.17937504627481,57.50238790819167],[-124.17945873803373,57.502384578684214],[-124.17954248345646,57.502380128483345],[-124.17962414193424,57.502375649406304],[-124.17970788731793,57.50237119910037],[-124.17979163268201,57.50236674874134],[-124.17987329110171,57.50236226951008],[-124.17995698276052,57.502358939686324],[-124.18004072806845,57.50235448916913],[-124.18012447335676,57.50235003859868],[-124.18020613170131,57.50234555916128],[-124.18028987695058,57.502341108485815],[-124.18037362218024,57.502336657757205],[-124.1804552804667,57.50233217816546],[-124.18053902565734,57.50232772733184],[-124.18062068390513,57.50232324763764],[-124.18070442905669,57.50231879669889],[-124.1807882278303,57.5023132250664],[-124.18086993965683,57.50230762457734],[-124.18095368474481,57.5023031734803],[-124.18103539652533,57.50229757288879],[-124.18111924883551,57.50229088040516],[-124.1812030474868,57.50228530850906],[-124.1812847591922,57.50227970776287],[-124.18136855779458,57.50227413576168],[-124.18145032307363,57.502267414272175],[-124.18153412162467,57.50226184216579],[-124.18161588684802,57.50225512057364],[-124.18169973896235,57.50224842772105],[-124.18178150412757,57.50224170602626],[-124.18186535618318,57.50223501306846],[-124.18194712129022,57.50222829127108],[-124.18203097328708,57.50222159820799],[-124.18211273833602,57.502214876307875],[-124.18219450335602,57.502208154357234],[-124.18227835526488,57.50220146113684],[-124.18236012022678,57.50219473908345],[-124.18244397207687,57.502188045757926],[-124.18252573698062,57.50218132360193],[-124.182609588772,57.50217463017109],[-124.18269140720292,57.5021667872712],[-124.18277525893305,57.502160093735036],[-124.18285702371807,57.50215337137378],[-124.18294087538945,57.502146677732334],[-124.18302264011632,57.50213995526836],[-124.18310440481427,57.50213323275373],[-124.1831883099683,57.50212541831364],[-124.1832700746057,57.50211869569644],[-124.18335392612786,57.50211200179245],[-124.18343569070713,57.50210527907261],[-124.18351948860966,57.502099705704985],[-124.1836012531332,57.502092982882424],[-124.1836851045403,57.50208628876799],[-124.1837668690057,57.50207956584288],[-124.183850666803,57.50207399226482],[-124.18393243121264,57.50206726923711],[-124.18401414204719,57.502061666800444],[-124.1840979397688,57.50205609306528],[-124.18417970409621,57.50204936988423],[-124.18426350176644,57.50204379604402],[-124.1843452125017,57.50203819340219],[-124.18442895658912,57.50203374009861],[-124.18451066727837,57.502028137354344],[-124.18459446485326,57.50202256330386],[-124.18467820887703,57.502018109842034],[-124.18475986597184,57.5020136275853],[-124.18484360995652,57.50200917401848],[-124.18492526701262,57.50200469165928],[-124.18500901095825,57.5020002379874],[-124.18509066797566,57.50199575552581],[-124.18517435837033,57.50199242239107],[-124.18525804875033,57.5019890892031],[-124.18533965220739,57.501985727229574],[-124.18542334255817,57.50198239393674],[-124.18550494598621,57.501979031860834],[-124.1855885828081,57.50197681910541],[-124.1856722196202,57.50197460629697],[-124.18575376951476,57.50197236470938],[-124.18583740630747,57.50197015179608],[-124.18592098960059,57.50196905947213],[-124.1860045728889,57.50196796709521],[-124.18608606926462,57.50196684594457],[-124.18616965254334,57.50196575346297],[-124.18625318233715,57.501965781570966],[-124.18633676560873,57.5019646889834],[-124.18641820849243,57.50196468826995],[-124.18650168481138,57.50196583686314],[-124.18658521460566,57.50196586476071],[-124.18666869093221,57.50196701324812],[-124.18675222072919,57.5019670410399],[-124.1868356970634,57.501968189421476],[-124.18691703303361,57.50197042968547],[-124.18700050938024,57.50197157796272],[-124.18708393227632,57.501973846830026],[-124.18716740863547,57.50197499500164],[-124.18725083154902,57.5019772637633],[-124.18733425447255,57.50197953247228],[-124.18741767740602,57.50198180112839],[-124.18750104690614,57.501985190374796],[-124.1875823829519,57.50198743022833],[-124.18766575247908,57.50199081937065],[-124.18774917545707,57.50199308781698],[-124.18783254501152,57.50199647685375],[-124.1879159145808,57.5019998658379],[-124.18799928416496,57.50200325476926],[-124.18808265376397,57.50200664364786],[-124.18816596995413,57.50201115311721],[-124.18824933958534,57.5020145418905],[-124.1883327092314,57.502017930611025],[-124.18841602547595,57.50202243992239],[-124.18849939515421,57.50202582853756],[-124.18858271143584,57.502030337743534],[-124.18866608114625,57.50203372625336],[-124.18874939746496,57.50203823535411],[-124.18883271380346,57.502042744402125],[-124.1889160301617,57.50204725339759],[-124.18899939993892,57.50205064169664],[-124.18908271633427,57.50205515058674],[-124.18916603274936,57.5020596594242],[-124.18924934918418,57.50206416820908],[-124.18933266563882,57.50206867694125],[-124.18941598211319,57.50207318562087],[-124.18949935199187,57.50207657360384],[-124.18958266850332,57.50208108217804],[-124.18966598503454,57.50208559069965],[-124.18974930158552,57.50209009916862],[-124.18983261815627,57.502094607585036],[-124.18991598811905,57.502097995304545],[-124.18999930472687,57.50210250361555],[-124.19008262135443,57.50210701187399],[-124.19016599136671,57.50211039943544],[-124.19024930803135,57.50211490758856],[-124.19033267807579,57.502118295044625],[-124.19041604813508,57.50212168244803],[-124.19049936485412,57.502126190443136],[-124.19058273494558,57.50212957774109],[-124.19066610505189,57.50213296498643],[-124.19074947517306,57.5021363521789],[-124.19083284530909,57.5021397393188],[-124.19091626880282,57.502142005761314],[-124.19099963896612,57.5021453927957],[-124.19108306248219,57.502147659132696],[-124.19116643267274,57.50215104606168],[-124.19124985621119,57.50215331229313],[-124.19133327975955,57.502155578471786],[-124.19141461639559,57.502157815961255],[-124.19149803996368,57.50216008203578],[-124.1915814635417,57.50216234805732],[-124.19166483380887,57.50216573467113],[-124.19174825740924,57.50216800058722],[-124.19183168101955,57.50217026645056],[-124.19191510463985,57.50217253226101],[-124.19199852827003,57.50217479801885],[-124.19208189860167,57.502178184368915],[-124.19216532225423,57.502180450021065],[-124.19224874591673,57.50218271562053],[-124.19233216958915,57.50218498116715],[-124.19241553997284,57.50218836730627],[-124.19249896366763,57.50219063274734],[-124.19258238737237,57.50219289813563],[-124.1926657577957,57.502196284116536],[-124.19274918152274,57.502198549399324],[-124.19283260525977,57.5022008146293],[-124.19291597572274,57.502204200452],[-124.1929993994821,57.502206465576435],[-124.1930828232514,57.50220873064816],[-124.19316624703063,57.502210995666964],[-124.19324961754566,57.5022143812787],[-124.19333304134722,57.50221664619205],[-124.19341646515875,57.50221891105263],[-124.1934998889802,57.50222117586046],[-124.19358325954727,57.50222456126119],[-124.19366668339106,57.50222682596337],[-124.1937501072448,57.50222909061285],[-124.19383353110847,57.5022313552095],[-124.19391695498207,57.50223361975342],[-124.19400032561356,57.502237004890425],[-124.19408374950952,57.502239269328804],[-124.1941671734154,57.50224153371433],[-124.19425059733122,57.5022437980471],[-124.19433193432766,57.50224603373687],[-124.19441535826316,57.50224829796535],[-124.19449878220863,57.50225056214115],[-124.19458220616403,57.50225282626405],[-124.19466563012934,57.50225509033424],[-124.1947490541046,57.50225735435159],[-124.19483253131736,57.50225849766987],[-124.19491595531004,57.50226076158161],[-124.19499937931265,57.50226302544057],[-124.19508280332522,57.50226528924673],[-124.19516628056543,57.50226643235375],[-124.19524970459541,57.50226869605426],[-124.19533318184811,57.50226983905558],[-124.19541660589549,57.502272102650544],[-124.19550008316072,57.50227324554608],[-124.19558350722549,57.502275509035435],[-124.19566698450322,57.502276651825376],[-124.19575040858543,57.50227891520914],[-124.19583388587564,57.502280057893394],[-124.19591736317086,57.502281200524706],[-124.19600084047111,57.5022823431033],[-124.1960843177764,57.502283485628915],[-124.19616779508665,57.50228462810179],[-124.19625127240197,57.502285770521645],[-124.19633474972227,57.50228691288886],[-124.19641822704763,57.50228805520302],[-124.19649961744464,57.50228916890854],[-124.1965830947799,57.502290311118365],[-124.19666662529367,57.50229033262822],[-124.19675010263651,57.502291474732324],[-124.19683363315295,57.502291496136465],[-124.19691711050334,57.50229263813484],[-124.19700064102243,57.502292659433046],[-124.19708417154162,57.5022926806784],[-124.19716770206088,57.50229270187078],[-124.19725123258026,57.50229272301031],[-124.19733476309972,57.50229274409686],[-124.1974182936193,57.502292765130484],[-124.19750182413894,57.50229278611123],[-124.19758326772435,57.5022927785003],[-124.19766685138818,57.50229167872896],[-124.19775038190555,57.50229169955216],[-124.19783396556217,57.50229059967489],[-124.1979174960773,57.50229062039221],[-124.19800107972671,57.50228952040904],[-124.19808466337126,57.50228842037289],[-124.19816824701098,57.502287320283706],[-124.19825183064586,57.50228622014155],[-124.19833332734144,57.502285091419445],[-124.19841691096667,57.502283991172675],[-124.19850054770649,57.50228177022496],[-124.19858413131956,57.50228066987212],[-124.19866771492778,57.50227956946627],[-124.19875135164322,57.502277348359584],[-124.1988349352393,57.502276247847675],[-124.19891648500337,57.50227399811713],[-124.19900012169202,57.5022717768527],[-124.19908375837089,57.50226955553506],[-124.19916739504,57.50226733416439],[-124.19925103169935,57.50226511274064],[-124.19933466834888,57.5022628912639],[-124.19941621805472,57.502260641224396],[-124.19949985468477,57.50225841964272],[-124.19958349130505,57.50225619800814],[-124.19966712791556,57.50225397632042],[-124.19975076451631,57.502251754579746],[-124.19983445418734,57.50224841213759],[-124.19991809076608,57.50224619029069],[-124.19999964040153,57.502243939890334],[-124.2000833300335,57.502240597290246],[-124.20016696658047,57.50223837528551],[-124.20025065618546,57.50223503257919],[-124.2003342927104,57.50223281046829],[-124.20041589535545,57.50222943916193],[-124.20049958491886,57.50222609629769],[-124.2005832214096,57.502223874028786],[-124.20066691094607,57.5022205310584],[-124.20075060046781,57.50221718803475],[-124.20083423692428,57.502214965606704],[-124.20091583948665,57.50221159399094],[-124.20099952896685,57.50220825080928],[-124.20108321843229,57.502204907574594],[-124.20116685484227,57.50220268493558],[-124.20125054428075,57.50219934159459],[-124.20133423370453,57.5021959982006],[-124.20141583618185,57.50219262627538],[-124.20149952557631,57.50218928277643],[-124.20158316192757,57.502187059873314],[-124.20166685129506,57.502183716268135],[-124.2017505406478,57.502180372609935],[-124.20183214305466,57.502177000427025],[-124.20191583237808,57.5021736566638],[-124.20199946867064,57.50217143349665],[-124.20208315796708,57.502168089627226],[-124.2021668472488,57.50216474570477],[-124.2022505365158,57.502161401729126],[-124.20233208583126,57.50215914988608],[-124.2024157750714,57.5021558058056],[-124.20249946429684,57.50215246167192],[-124.2025831005086,57.50215023813449],[-124.20266678970704,57.50214689389465],[-124.20274839196075,57.5021435211448],[-124.2028320281383,57.50214129744947],[-124.20291571729517,57.502137953051594],[-124.20299935345068,57.50213572925016],[-124.20308304258056,57.50213238474613],[-124.20316667871404,57.502130160838526],[-124.20324828088746,57.50212678777928],[-124.20333191699895,57.50212456376684],[-124.20341555310065,57.50212233970136],[-124.20349918919257,57.502120115582855],[-124.20359539981916,57.502116941423594],[-124.2036762603932,57.502129257195215],[-124.20375503408899,57.50214154447637],[-124.20383584180507,57.502154980800206],[-124.20391670253794,57.50216729642477],[-124.20399547639028,57.50217958356265],[-124.20407633722718,57.50219189908951],[-124.20415511118209,57.50220418613237],[-124.20423591917276,57.50221762221168],[-124.20431678016848,57.50222993759154],[-124.20439555427993,57.50224222449105],[-124.2044764153797,57.502254539773226],[-124.204557223591,57.502267975656245],[-124.20463599785897,57.50228026241246],[-124.20471685911754,57.50229257754759],[-124.20479772042853,57.50230489263328],[-124.2048764419192,57.502318299896615],[-124.20495730333658,57.50233061488474],[-124.20503816480635,57.50234292982333],[-124.2051169393851,57.502355216292955],[-124.20519780095893,57.50236753113403],[-124.20527652272042,57.502380938159114],[-124.20535738440067,57.502393252902515],[-124.2054382461333,57.50240556759646],[-124.20551702097117,57.50241785382773],[-124.2055978298974,57.50243128907476],[-124.20567869178883,57.5024436036216],[-124.20575746678321,57.50245588970957],[-124.20583832877868,57.5024682041588],[-124.20591913792552,57.5024816392095],[-124.20599791307644,57.502493925154184],[-124.20607877523071,57.50250623945643],[-124.20615963743737,57.50251855370898],[-124.20623841274254,57.50253083951051],[-124.20631922216391,57.502544274316655],[-124.20639799757394,57.502556560023066],[-124.20647885999105,57.50256887408035],[-124.20655972246054,57.50258118808832],[-124.20663844514483,57.5025945943028],[-124.20671930772073,57.502606908213124],[-124.20680017034901,57.50261922207396],[-124.2068789460698,57.50263150749378],[-124.20695980880215,57.50264382125692],[-124.20704061871864,57.50265725562233],[-124.20711939459596,57.50266954089885],[-124.20720025748707,57.50268185451496],[-124.20727903346696,57.502694139696416],[-124.20735984360324,57.50270757386666],[-124.20744070665316,57.50271988733566],[-124.20751948278956,57.502732172373875],[-124.20760034594352,57.50274448574531],[-124.2076811563004,57.50275791971916],[-124.20775993259332,57.5027702046141],[-124.20784079590604,57.50278251783838],[-124.20792165927118,57.50279483101324],[-124.20800043571832,57.5028071157649],[-124.2080812463497,57.50282054949418],[-124.20816210987363,57.502832862522006],[-124.2082408864773,57.50284514713029],[-124.20832175010523,57.50285746006041],[-124.20840047398305,57.50287086522596],[-124.20848133771739,57.50288317805847],[-124.20856220150412,57.50289549084155],[-124.20864097836686,57.50290777521148],[-124.20872178943863,57.50292120854944],[-124.20880265338413,57.502933521185405],[-124.20888143040338,57.50294580541202],[-124.20896229445293,57.502958117950314],[-124.20904315855486,57.50297043043927],[-124.20912188292104,57.502983835175364],[-124.20920274712935,57.50299614756664],[-124.20928361139006,57.50300845990847],[-124.20936238872005,57.50302074384847],[-124.20944320028687,57.503034176745544],[-124.20952197772175,57.50304646059055],[-124.20960284219288,57.50305877273707],[-124.20968370671638,57.503071084834126],[-124.20976243151688,57.50308448918884],[-124.20984329614679,57.50309680118842],[-124.20992416082909,57.50310911313845],[-124.21000293857466,57.503121396696756],[-124.21008380336097,57.50313370854908],[-124.21016461542287,57.50314714100526],[-124.21024339332496,57.5031594244204],[-124.21032425827003,57.503171736125594],[-124.21040303627468,57.503184019445584],[-124.21048384855635,57.50319745170676],[-124.21056471366022,57.50320976326495],[-124.21064349182134,57.50322204644161],[-124.21072435702925,57.50323435790217],[-124.21080522228951,57.50324666931326],[-124.2108839478491,57.503260073000334],[-124.21096481321578,57.503272384313824],[-124.21104567863482,57.5032846955778],[-124.21112445710665,57.50329697846788],[-124.2112052698834,57.50331041028814],[-124.21128613546121,57.503322721404984],[-124.21136491408954,57.503335004151886],[-124.21144577977137,57.50334731517111],[-124.21152450576527,57.50336071847696],[-124.21160537155349,57.50337302939855],[-124.21168623739409,57.503385340270725],[-124.21176501628148,57.50339762277912],[-124.2118458822261,57.503409933553705],[-124.2119266954979,57.503423364933084],[-124.21200547454175,57.50343564729824],[-124.21208634064516,57.50344795792563],[-124.21216720680094,57.50346026850364],[-124.21224593328311,57.50347367137994],[-124.21232679954527,57.50348598186031],[-124.2124055788482,57.503498263987034],[-124.21248644521437,57.50351057436976],[-124.21256725892644,57.50352400535767],[-124.21264603838587,57.503536287341106],[-124.21272690491081,57.50354859757669],[-124.2128077714881,57.503560907762854],[-124.21288655110173,57.50357318960303],[-124.21296736508828,57.50358662034638],[-124.21304823182432,57.503598930385465],[-124.21312701159445,57.50361121208234],[-124.21320787843452,57.50362352202378],[-124.21328869264161,57.50363695257073],[-124.21336747256821,57.50364923412432],[-124.21344833956704,57.503661543918724],[-124.2135271195962,57.50367382537718],[-124.213607934023,57.503687255729034],[-124.2136888011806,57.50369956537626],[-124.21376758136623,57.503711846691495],[-124.21384844862783,57.503724156241034],[-124.21392931594183,57.50373646574114],[-124.21400804361731,57.50374986756845],[-124.21408891103766,57.50376217697099],[-124.2141717602194,57.503776755911346],[-124.2142630628947,57.50378920658785],[-124.2143586976514,57.5037983517808],[-124.21445641948422,57.503807525176065],[-124.21455408871587,57.50381781915473],[-124.21464544426067,57.503829148911215],[-124.21473038083411,57.503843755770006],[-124.21480258470973,57.503862675601354],[-124.21482512095398,57.503871951774855],[-124.21485996885833,57.50388588016098],[-124.21490028832127,57.5039167031719],[-124.21492150868036,57.503953995730015],[-124.2149342756442,57.50399341654187],[-124.21494490295458,57.504033929746086],[-124.21495547765078,57.50407556360704],[-124.21496610500672,57.50411607681247],[-124.21497250564957,57.50415765414764],[-124.21498094072213,57.50420038040394],[-124.21498525434107,57.5042419294782],[-124.21498951533329,57.504284599210436],[-124.214993723699,57.50432838960043],[-124.2149958450129,57.5043721517289],[-124.2149979663317,57.50441591385898],[-124.21500008765535,57.50445967599075],[-124.2150001219152,57.50450340986105],[-124.21500010353894,57.50454826438969],[-124.21499799808902,57.50459309065701],[-124.21499589263411,57.50463791692609],[-124.21499373453769,57.50468386385369],[-124.21498954199164,57.50472866186303],[-124.21498738388237,57.504774608794136],[-124.21498313868179,57.50482052746377],[-124.21497889347094,57.504866446135125],[-124.21497464824985,57.504912364808206],[-124.21496868438858,57.50495041062003],[-124.22222861901946,57.50569667552179],[-124.22276292685713,57.50570388050508],[-124.23464875274736,57.505199750146296],[-124.23820304548755,57.50277134128228],[-124.23932599596267,57.49980802326926],[-124.24362228904975,57.497209985251814],[-124.25182669625889,57.494968729231786],[-124.2654290788327,57.49373109859831],[-124.28004960108898,57.49507098087021],[-124.28648895660768,57.496356934994395],[-124.2892302031252,57.49705637745799],[-124.29786579060148,57.50041556945511],[-124.30057636819838,57.50367998802205],[-124.29856609981195,57.50902750942174],[-124.29838182482557,57.513142703919044],[-124.30053321511633,57.51697406033768],[-124.30794489041966,57.518666176536016],[-124.30962993125755,57.51873264203019],[-124.31619955603247,57.51945361911208],[-124.32500382241732,57.52029237713099],[-124.33439410793133,57.5230217985976],[-124.34282189502429,57.526770085157594],[-124.35114603245299,57.53063314892255],[-124.35863197798777,57.53381244682536],[-124.36063966736478,57.53455507210331],[-124.36460888480087,57.53828234659238],[-124.36844783149013,57.543891760010716],[-124.37155797240332,57.54819131425279],[-124.37289838011904,57.55047746839854],[-124.37838352038011,57.5532452033308],[-124.38896422125839,57.55540218812428],[-124.40064809022765,57.555625020175846],[-124.40414600573287,57.556779737806956],[-124.40525153061618,57.561126003135065],[-124.4038934196274,57.56636651176807],[-124.4026521662937,57.57081003746923],[-124.40204884699108,57.5748037751803],[-124.4023160178972,57.57839539458228],[-124.40409603696953,57.58059686606645],[-124.40493738145489,57.58163757294442],[-124.40514712743607,57.581725330338806],[-124.40548038289134,57.58186167629],[-124.40581364074208,57.58199802141731],[-124.40614267094242,57.582135436049924],[-124.40646519364178,57.58227837821416],[-124.40671724009101,57.58245523207054],[-124.40695218028196,57.58264085012746],[-124.40716801674748,57.582832965642226],[-124.40736460812255,57.58303494113648],[-124.40765320800989,57.58318868508236],[-124.40799731938266,57.58331618447202],[-124.40834352461665,57.58344370818422],[-124.40868977920165,57.583570110194756],[-124.4090403132456,57.583694320079736],[-124.40939294115448,57.58381855423621],[-124.40974561836572,57.583941666655484],[-124.41010248103309,57.58406482849959],[-124.4104594399615,57.584185747772786],[-124.41081640116556,57.58430666609473],[-124.41105447189065,57.58441830365512],[-124.41111468454831,57.58447958226531],[-124.41116521631685,57.58457214292315],[-124.41117391598576,57.584664200389994],[-124.41115671804458,57.58477500974287],[-124.41128930790026,57.58515675109029],[-124.41159713662452,57.58565161609307],[-124.4117160573281,57.586060105906235],[-124.41179556651312,57.58646027223737],[-124.41189136219943,57.58682138622663],[-124.41211056746032,57.58743405113783],[-124.41240857240186,57.588164286416706],[-124.41292013615669,57.588792798965784],[-124.41420638637585,57.58936445006622],[-124.41503709390541,57.58966934227335],[-124.4159915801723,57.589917401673226],[-124.41698649396443,57.59009977714363],[-124.4183204271397,57.590383764474225],[-124.41916266716864,57.59071456016077],[-124.42029851061454,57.591483956741676],[-124.42078932401347,57.591308161246644],[-124.42167194696603,57.59107200563582],[-124.42244503693091,57.59080201641095],[-124.42309640467512,57.590590002991675],[-124.42389080473619,57.590411091590944],[-124.42489257802615,57.59022791995674],[-124.42570137472417,57.590004314522275],[-124.42669940914973,57.58986033308327],[-124.4277904556983,57.58969390233031],[-124.428716380686,57.58972398214068],[-124.42963315049391,57.58977300998413],[-124.43053630431585,57.58984766128767],[-124.43141924361824,57.58995570758527],[-124.43227541676094,57.590103799761245],[-124.43311528585288,57.590292062413035],[-124.43393708536647,57.59051262529685],[-124.43474318663012,57.590758788601704],[-124.43553177642289,57.59102380290095],[-124.43630317907277,57.59129982273411],[-124.43705344181986,57.59158119477457],[-124.43780143897337,57.591867021201125],[-124.43854693998705,57.59216290619816],[-124.4390136439713,57.59302851541859],[-124.43861020508977,57.5947439383659],[-124.43856960623128,57.595170703132744],[-124.43850956110123,57.59556135416499],[-124.4384255305398,57.59597527078173],[-124.43829914470156,57.5964010220668],[-124.43799874885427,57.59723962671036],[-124.43803049803338,57.59753604622209],[-124.43782674198987,57.598162731589966],[-124.43770169169846,57.59875894901427],[-124.43827501273651,57.598765726427004],[-124.43902506579606,57.59875104029516],[-124.43972924037588,57.598782906154455],[-124.44089344366488,57.598878508831966],[-124.44190776143144,57.59890280834633],[-124.44315355063391,57.59915298200124],[-124.4445745704695,57.599418663131075],[-124.44564366196482,57.599690281927984],[-124.4464255932246,57.59997085127883],[-124.44650996139843,57.60000660593148],[-124.44711914603774,57.600262712539674],[-124.44759882375732,57.60040964249917],[-124.44823024975776,57.600583023141695],[-124.44877818742665,57.60095502619898],[-124.44938857560423,57.60138719293011],[-124.45005242272029,57.60184353286302],[-124.45056381836494,57.60254702847924],[-124.45055861472788,57.60293047964519],[-124.45063576509527,57.60375784217601],[-124.45103156741108,57.604063012294475],[-124.45122157423435,57.60448575747504],[-124.45136973538575,57.6050616415748],[-124.45143294719934,57.60551317823636],[-124.45128209771713,57.60597678471482],[-124.451181775101,57.60633108775355],[-124.45092383089032,57.6067508265372],[-124.45102977820254,57.60697634525066],[-124.45110399479904,57.60710729570601],[-124.45125858448364,57.60732104910346],[-124.45138841390124,57.60757712486373],[-124.45140474248416,57.607946252027645],[-124.45150724272551,57.608153787970366],[-124.45155864331272,57.60838203153621],[-124.45146199916888,57.608748713964076],[-124.4514558421597,57.609155705213034],[-124.45144366171878,57.60945385147412],[-124.45151004125168,57.60982805119351],[-124.45153497314683,57.610191672933865],[-124.45138214525142,57.61049826416793],[-124.45131269909581,57.61071163569221],[-124.45135537675706,57.61089716486848],[-124.451871868592,57.61127439503394],[-124.45236343335536,57.61185206002051],[-124.45267304516398,57.61221901497774],[-124.45273854980731,57.612512464512825],[-124.45284084069301,57.612930818984495],[-124.45283173551798,57.61315386911952],[-124.45288192693965,57.613566007009226],[-124.45302725451825,57.61405887722276],[-124.45322560440137,57.61453554701691],[-124.45342180950662,57.61506489701234],[-124.45350440569176,57.61550432783136],[-124.45340205527917,57.61595953739155],[-124.4533208410456,57.616307340586374],[-124.45315771889554,57.61660932970479],[-124.452926872467,57.61692846850052],[-124.45273380728756,57.61719422228373],[-124.45263986400421,57.61744319380231],[-124.45234128467197,57.61777948144766],[-124.45210195045094,57.61794713149879],[-124.45104237859005,57.618095080646455],[-124.45060572704362,57.618170704347264],[-124.45006601874499,57.61830791665222],[-124.44974390811436,57.61855308998341],[-124.44961774347497,57.61887233014419],[-124.44963581464422,57.619454547602736],[-124.44953186383997,57.61989628094684],[-124.44964130553751,57.62039546553269],[-124.44988608914319,57.620658500428334],[-124.45005243321663,57.6211493808901],[-124.45024939176021,57.6215576365522],[-124.45051871743088,57.62198916816592],[-124.4506080468711,57.62221225236547],[-124.45072195483118,57.622602713305504],[-124.45073789966361,57.62287876485779],[-124.45072291357084,57.623245287585114],[-124.45080183007636,57.623774392643355],[-124.45095757537635,57.62416646546073],[-124.4512097966164,57.62465835177824],[-124.45148951967748,57.62514383142464],[-124.45182830432353,57.62556832493894],[-124.45216175543949,57.625867157970504],[-124.4524217072443,57.626119152401785],[-124.45325613812355,57.62656514208147],[-124.45386467252585,57.6272080953437],[-124.45433518722243,57.62769131457763],[-124.45448633985646,57.62809454442096],[-124.45458345229989,57.628281832738296],[-124.4550738671694,57.62858585717763],[-124.45521982492211,57.62880847930443],[-124.45561896401736,57.62919329808854],[-124.4560307458575,57.629730774626466],[-124.45593401375551,57.62999654003414],[-124.45594283463305,57.63039698541267],[-124.45607955272182,57.63069239044108],[-124.45615042506,57.6311126244038],[-124.45632621364874,57.63137484318216],[-124.45660043395772,57.631638210561135],[-124.45708892255632,57.63219676509786],[-124.45724629593519,57.63234550561897],[-124.45734236696224,57.63271332711124],[-124.45767390663775,57.63316463640465],[-124.45761305490133,57.633424093828694],[-124.45767823357728,57.63362446495647],[-124.45749231258347,57.63386788551171],[-124.45754952464914,57.63405807117142],[-124.45750828574481,57.634401863354746],[-124.45755155794748,57.634677113777954],[-124.45756496114792,57.63496547285003],[-124.45757323744445,57.63507098207169],[-124.45765311557105,57.635373573407826],[-124.4577761668447,57.63559368368714],[-124.4578327896958,57.63579844097418],[-124.45789036682014,57.63603124471153],[-124.45796851552896,57.63637642960365],[-124.45803743390076,57.636588058756715],[-124.45813700387565,57.63671593923107],[-124.45819745863258,57.636878127492636],[-124.4583032394365,57.637368296893804],[-124.45842206620702,57.63758947903531],[-124.45853037583562,57.637811659945235],[-124.45863035396772,57.63803262229327],[-124.45871986022964,57.638253462572926],[-124.45879679981785,57.63847415639903],[-124.4588612181192,57.63869358290971],[-124.45891311490962,57.63891174212241],[-124.45895039531175,57.63912860964697],[-124.45897305907074,57.639344185495055],[-124.4589811515396,57.63955734878879],[-124.45896624810047,57.63976912279907],[-124.45891559772295,57.639983844630024],[-124.45883143133263,57.64019817599273],[-124.4587178922028,57.640413286524094],[-124.45857712018272,57.640628079673334],[-124.45841334993641,57.640841483292924],[-124.45822662672217,57.641052376410826],[-124.45802318887786,57.64126195307087],[-124.45780522221581,57.64146799584513],[-124.45757696179982,57.64166943262528],[-124.45733840754897,57.64186626335541],[-124.4570937490231,57.64205853684441],[-124.45684517238702,57.64224403572018],[-124.45659896222595,57.64242283328146],[-124.45634259531572,57.64259366197895],[-124.4560594499295,57.64275296349004],[-124.45575562775771,57.64290529455046],[-124.45543326930311,57.64304955858744],[-124.45509647286696,57.64318804616716],[-124.4547535265157,57.643323096834266],[-124.45440228963977,57.64345580695035],[-124.45405105030261,57.64358851615057],[-124.4537039983171,57.64372127340948],[-124.45336104217317,57.64385632053439],[-124.45206142832973,57.6449367503798],[-124.45176786416606,57.645093678712215],[-124.45148650083917,57.645259720655595],[-124.45121333167454,57.64543034368629],[-124.45095250085171,57.645606717807304],[-124.45069171345732,57.645781970554886],[-124.45043711700268,57.64595953821146],[-124.4501783280853,57.64613705632132],[-124.44994640531564,57.64632386017505],[-124.44971243108762,57.64650951821568],[-124.44946811690988,57.64669169043669],[-124.44923204298694,57.64687732313735],[-124.44922105925833,57.64704316559978],[-124.4491901637777,57.64723456751306],[-124.44932468377571,57.64773742244339],[-124.4495289483763,57.64791924491247],[-124.44969505920147,57.64806024858257],[-124.44983559995066,57.648416266685516],[-124.44996852757231,57.64865108123551],[-124.45030868219442,57.648944394555414],[-124.45064120956492,57.64916808910507],[-124.45106770473443,57.6494007329567],[-124.45131626154811,57.64957634270037],[-124.45171280346808,57.64977274811228],[-124.45201615034199,57.64999273343257],[-124.45229627863212,57.65037056802609],[-124.45262965477586,57.650574081787376],[-124.45311775475986,57.65083883949743],[-124.45355602127457,57.65114338443432],[-124.45402233816904,57.651531241510334],[-124.45453850495048,57.65187930774274],[-124.45497848725803,57.652142375100766],[-124.4553570235156,57.65242154515081],[-124.45571775062122,57.65272629918645],[-124.45600812920995,57.6528541667214],[-124.45634118157204,57.65306663878875],[-124.45658446013518,57.65321862704296],[-124.4569059115771,57.65335582647834],[-124.45707298728055,57.65347440363353],[-124.45727109027597,57.653551849374125],[-124.45743953801224,57.65363679912238],[-124.45768378351498,57.65376524655697],[-124.4578525983701,57.653841228602865],[-124.45800798263616,57.65383518943171],[-124.45828608255401,57.65390459439574],[-124.45863957502404,57.653975998438234],[-124.45899352191854,57.65408777834128],[-124.45939557852742,57.65415077445459],[-124.4598016947152,57.65411400922563],[-124.46037047794844,57.65430454317324],[-124.46084569817002,57.65447604347783],[-124.4614224191965,57.65483263697537],[-124.4619434802766,57.65506298070865],[-124.46292702994842,57.65536598121829],[-124.46368576459632,57.655474599691885],[-124.46463369125483,57.655519244651224],[-124.4655478242631,57.655621805322404],[-124.46680090094975,57.65605238059444],[-124.46772413159754,57.65650043209487],[-124.46849501699386,57.65682784237783],[-124.4687302680662,57.6570245723291],[-124.46889268239237,57.657259709249814],[-124.46905467719019,57.65766081300041],[-124.46961399940335,57.65808781932967],[-124.47068985673351,57.658029606443186],[-124.4718136691978,57.658081838874985],[-124.47256306069822,57.658216090827786],[-124.47350786218132,57.65849613581866],[-124.47457560456785,57.659055706020375],[-124.4751683501499,57.65933168050848],[-124.47622530945118,57.65969149826893],[-124.47675482051052,57.65992412308382],[-124.47703227579014,57.66011571673536],[-124.4773147836295,57.66018176761932],[-124.47756339843882,57.660256399452884],[-124.47796003043037,57.660404504800574],[-124.47835342144901,57.660633314745766],[-124.4790464609129,57.66091939622234],[-124.47987004685261,57.661296688076895],[-124.4806772417834,57.6616648151348],[-124.48188255688312,57.662145161923064],[-124.48232341642068,57.66244627609018],[-124.48264781501497,57.663141919337974],[-124.48329769525076,57.663669713039525],[-124.4841203060287,57.664073881476554],[-124.48498257321226,57.664325983764634],[-124.48576136737223,57.66456815395486],[-124.4864452961918,57.664665691296015],[-124.4874813720659,57.6647672496737],[-124.48855099108212,57.66486918293252],[-124.48943830581683,57.66491519830771],[-124.49069560997916,57.664938512881285],[-124.49176056523838,57.66494728806886],[-124.4927101495068,57.6648515692413],[-124.49364403029766,57.6647814578533],[-124.49456189752173,57.66474480069485],[-124.49547954019579,57.66471374179139],[-124.49639499621574,57.6646848945637],[-124.49731245793281,57.66465830665148],[-124.49822982941511,57.664633954230155],[-124.50008966044265,57.6655925577748],[-124.50116189128434,57.66552396094877],[-124.50180147044969,57.66547176615464],[-124.50246075571854,57.66539848411048],[-124.50340087601369,57.665329495929875],[-124.50471943285054,57.665182912652135],[-124.50536178987637,57.6650600822689],[-124.50609438092063,57.66498873150743],[-124.50671881154007,57.66489484940468],[-124.50754532393042,57.66483464311325],[-124.5083946741398,57.66467376075229],[-124.50924042004702,57.66455096090904],[-124.5101586419855,57.66455793541689],[-124.51107682016973,57.664566024484294],[-124.51199508687674,57.66457186532541],[-124.51805258890512,57.664699261742406],[-124.51943657542232,57.66507584811544],[-124.51986397137316,57.665354255269605],[-124.52090809997546,57.66659388517133],[-124.521549131547,57.66720212974591],[-124.52179010239999,57.667314720537554],[-124.52207392379829,57.667350411076264],[-124.52265253855921,57.667301920430184],[-124.52335451885543,57.66737031016512],[-124.52409549836631,57.66751426636614],[-124.52490133564099,57.667769962068654],[-124.52541702150165,57.668152506033536],[-124.52595717763259,57.66871474834326],[-124.52625735637484,57.669138624730124],[-124.52661226423285,57.66950367418474],[-124.5273451935682,57.670017592472036],[-124.52774021729134,57.67043018512549],[-124.52843699965861,57.670741838844194],[-124.52917225971733,57.67092719529984],[-124.5299926550123,57.67113480010478],[-124.53071871753767,57.67134135282018],[-124.5315565981625,57.67153119908192],[-124.53226803496258,57.671682631130984],[-124.53324696345938,57.672075886827066],[-124.53450761414508,57.672019198421445],[-124.53553949444199,57.672020524470106],[-124.53636006280283,57.67217089865787],[-124.5372781448383,57.672240481207325],[-124.53827322112285,57.67227165767394],[-124.53917918619591,57.6722749292034],[-124.5402247116972,57.67230328338504],[-124.54133585705551,57.67226170269077],[-124.59097560177018,57.68301652905516],[-124.5937603226292,57.6836191746061],[-124.59386036338917,57.683637058185845],[-124.59499270259117,57.68370963350681],[-124.5961380278955,57.68371505172552],[-124.59693287013424,57.68372347558313],[-124.59793114215425,57.68373404865734],[-124.5991142818093,57.68379479089507],[-124.59989239014294,57.68380189852793],[-124.59999745833035,57.68379740226665],[-124.60033363489161,57.68378413464839],[-124.60070189132882,57.683754383919904],[-124.60112274327736,57.68372070211415],[-124.60148088535392,57.683680749649454],[-124.60197382788733,57.6836265195782],[-124.60242424520128,57.68358753871245],[-124.60278489582424,57.68353639507724],[-124.60319357414433,57.68349136414888],[-124.60367623262401,57.68343141225326],[-124.60395426221686,57.68340182256076],[-124.60446632039609,57.68334105633595],[-124.60485591321014,57.68330142626973],[-124.6053063236849,57.6832624356145],[-124.60575652668443,57.68322904832385],[-124.60644149839447,57.683144302446934],[-124.60662876694364,57.68312945182832],[-124.60690741113622,57.683083041258435],[-124.60731896082606,57.683016721078694],[-124.6077185035489,57.682934573618404],[-124.60813107516579,57.68289741843341],[-124.60854570191458,57.6828614049804],[-124.60896024544601,57.68282763218965],[-124.60937470583399,57.68279610006175],[-124.60978908315234,57.682766808597094],[-124.61020551581473,57.682738658826835],[-124.6106219066928,57.68271162872773],[-124.61103825582366,57.68268571830024],[-124.6114546043843,57.68265980656459],[-124.61187095237473,57.682633893520645],[-124.61228734091017,57.68260685818815],[-124.6127037288506,57.68257982154726],[-124.61312019837705,57.68255054163684],[-124.61638402882133,57.68256674155282],[-124.61661628040751,57.68258374636543],[-124.61697448467157,57.68259870205735],[-124.61734107785851,57.682613744369256],[-124.61760684378199,57.68263221877622],[-124.61799481862879,57.68263626838546],[-124.61840870584467,57.68267759371842],[-124.61898444405415,57.682710513085645],[-124.61958917553139,57.6827538248596],[-124.62021677287954,57.68280297915789],[-124.62109957357534,57.68287273064474],[-124.62192621762202,57.68298674817571],[-124.62373400244752,57.683178245509126],[-124.62462933900865,57.68330753824631],[-124.62570901245516,57.68350265829011],[-124.6263611216341,57.68339728339856],[-124.62715577839758,57.683352817799964],[-124.62775315709995,57.68336798071179],[-124.62843419676707,57.68333242272924],[-124.6291976759751,57.68327977215461],[-124.62976363686782,57.68329347936704],[-124.63037746868476,57.68331777193473],[-124.6310074705331,57.68335904990796],[-124.6316222772513,57.68335643302161],[-124.63213903165857,57.68339653533485],[-124.6325914217517,57.6834180285262],[-124.63313838081208,57.68349320238621],[-124.63381662466263,57.683534964874156],[-124.63450708263183,57.68364525555132],[-124.6349908082889,57.6837287409116],[-124.63568304706685,57.683848015005154],[-124.63616472107603,57.68393035349832],[-124.63685817890948,57.684015991796464],[-124.63717929781292,57.68407088147878],[-124.63774244803447,57.684163023878774],[-124.63814032074467,57.684242250243784],[-124.63848596469437,57.68437364447725],[-124.63882515788889,57.684509457116626],[-124.63915802134179,57.684646325241026],[-124.6394844340766,57.68478761187148],[-124.63980451704313,57.68492995408362],[-124.64011609230039,57.6850755723706],[-124.64041915983115,57.68522446679359],[-124.64071375988975,57.685375516420486],[-124.64099335881218,57.68553538269489],[-124.64125799686404,57.68570294472313],[-124.64151190897053,57.68587712463459],[-124.641750900387,57.686057879473346],[-124.64198130338976,57.686244152850925],[-124.64220315818586,57.686434823821784],[-124.64241856212037,57.68662991393111],[-124.64262545798181,57.68682828072218],[-124.64282808074402,57.68702884622917],[-124.643028527805,57.68723163196361],[-124.6432247419268,57.687435495454366],[-124.64342305561657,57.68763938017823],[-124.64361927397877,57.687843243163705],[-124.64381976978191,57.68804490686227],[-124.64402240539097,57.688245470774746],[-124.64422931849603,57.68844383536565],[-124.64444268697596,57.688637780088634],[-124.64466243052975,57.68882954690353],[-124.64489274427793,57.68901917869954],[-124.64512939310848,57.689207753503624],[-124.6453681418501,57.68939634937214],[-124.64560899053454,57.689584966294035],[-124.64585197932219,57.689772483259205],[-124.646090695108,57.68996219892549],[-124.64632521809916,57.69015187131948],[-124.64655341051844,57.690342600027876],[-124.64677317467334,57.69053436365288],[-124.64698233263499,57.690729382808364],[-124.64717886683633,57.6909253941219],[-124.6473605591921,57.69112573922889],[-124.64752539202966,57.691328154772876],[-124.64767122735734,57.69153374040158],[-124.64779592714555,57.691743595765764],[-124.64790162885039,57.6919566213397],[-124.64798833217745,57.69217281717083],[-124.64806023226204,57.692392226120155],[-124.64811946666119,57.69261374862176],[-124.6481659950991,57.692838505695995],[-124.64820199524311,57.693064276762215],[-124.6482337602162,57.6932911260539],[-124.6482591921627,57.693519032167195],[-124.64828042882597,57.693746895510564],[-124.64830162568465,57.69397587990361],[-124.64832496068017,57.69420376474632],[-124.64835249162255,57.69443169244698],[-124.64838425864637,57.69465854199886],[-124.64842445754114,57.694884356208384],[-124.64847526643794,57.6951069144621],[-124.6485366054012,57.69532845875571],[-124.6486127505066,57.6955467898677],[-124.64870575984764,57.695763050176815],[-124.64881567374557,57.695976118640395],[-124.64894447025766,57.69618937962962],[-124.64909210966573,57.69640395409585],[-124.64925657442089,57.69661757857172],[-124.64944000279195,57.6968291533762],[-124.64963827915899,57.69703639364299],[-124.64985567971236,57.69723710005295],[-124.6500880086434,57.697431229750705],[-124.65033534606869,57.697616540638],[-124.65059983005273,57.69779193298841],[-124.65087948256075,57.697954022302405],[-124.65117430349272,57.69810280847762],[-124.65150123696289,57.6982339782238],[-124.65186661696397,57.69834647433934],[-124.65226612734025,57.69844361684016],[-124.65269121587833,57.6985298041018],[-124.65313131220428,57.6986071712426],[-124.653580002162,57.69867901717097],[-124.65402663564441,57.69874971925786],[-124.65446689679177,57.69882259793675],[-124.65488811739702,57.698899767476746],[-124.65528594187408,57.69898566951147],[-124.655651858416,57.69908358212466],[-124.65597319883892,57.69919561989358],[-124.65624770567605,57.699326245912566],[-124.65646263084646,57.69947981686008],[-124.65662652580347,57.6996519340895],[-124.65675847241064,57.69983718419793],[-124.65684465919605,57.700010756108824],[-124.65685641200082,57.70003442500361],[-124.65692877658664,57.70024262065844],[-124.65697568523916,57.7004584081715],[-124.65700129411012,57.70068295112682],[-124.6570056824574,57.7009140075152],[-124.65699518433608,57.70115052013794],[-124.656969879085,57.70139024696724],[-124.6569361009401,57.70163213079368],[-124.65689384973311,57.701876171612525],[-124.65684534300428,57.702119027644585],[-124.65716257826347,57.702524832628086],[-124.65733542881085,57.70274077542379],[-124.65754930331748,57.702924612538226],[-124.65796363420489,57.703079080188104],[-124.65829711839271,57.70326412759171],[-124.65859033975171,57.70345998072102],[-124.6587029379148,57.7037179257202],[-124.65893380159586,57.70395576078556],[-124.65908659083888,57.704205140972064],[-124.65922958912657,57.704553106933375],[-124.65924461798637,57.704958091845704],[-124.65936792369025,57.705447157669965],[-124.65949791690352,57.705688457048794],[-124.65964152063997,57.70601960776341],[-124.65964699863902,57.70622039770389],[-124.65956828912361,57.70619044450922],[-124.65957828167792,57.70638230878133],[-124.6594876330279,57.706511476727925],[-124.65931636569829,57.7066645002538],[-124.65915123355127,57.70682207136969],[-124.65900486757208,57.706983196507366],[-124.65887303110992,57.70714895427184],[-124.65874748915222,57.707314775657395],[-124.65862400488737,57.70748173921525],[-124.65850257833144,57.70764984495205],[-124.65838119047217,57.70781682958325],[-124.65825350577009,57.70798375038096],[-124.65811960371119,57.70814836528364],[-124.65797738563047,57.7083106530173],[-124.65782059538962,57.708469428762385],[-124.65764717402216,57.70862355018428],[-124.65744266978399,57.70876614224529],[-124.65716626429246,57.70886426982014],[-124.65684124213243,57.70891256133094],[-124.65651249984947,57.70894735722725],[-124.65618957478567,57.70899566842089],[-124.65588260119505,57.7090676905914],[-124.6555696493643,57.709130680003206],[-124.65524042556576,57.70917892501567],[-124.65498080062379,57.70927721844995],[-124.65490936124593,57.7094559216121],[-124.65490084171113,57.70963638488919],[-124.65489655935683,57.70981576978044],[-124.65488170369738,57.70999729023251],[-124.65484453499118,57.710097841425856],[-124.65452722457206,57.71028301993942],[-124.65426699168171,57.71039812742515],[-124.65401918994294,57.71051784640628],[-124.65382087815905,57.71066273913467],[-124.65366817836441,57.710823795012246],[-124.65348443512931,57.71097219960595],[-124.65321196116,57.71107708793275],[-124.65290896281637,57.71115475113589],[-124.6526100009591,57.71123694042398],[-124.65231103780218,57.71131912904421],[-124.65202434625627,57.71141041327476],[-124.65176619677099,57.711525537323276],[-124.65154510423065,57.71166122371826],[-124.65131989248717,57.71179462499582],[-124.65106791465412,57.711913174876635],[-124.6508016036146,57.712021485504906],[-124.6505209194479,57.71212067781468],[-124.6502260223346,57.71220626761738],[-124.64991699256021,57.71227601276735],[-124.64960194545246,57.712337845875595],[-124.64928483853474,57.712398535823226],[-124.64896785077974,57.71245586194493],[-124.6486488433668,57.712510923862624],[-124.64832971478698,57.71256934808604],[-124.64801474281681,57.71262893539183],[-124.64770974281014,57.71270320234172],[-124.6474331228569,57.71280579408164],[-124.64728339550132,57.71288276616255],[-124.64693118650491,57.71304402128166],[-124.64666275678043,57.71315230228225],[-124.64637591728558,57.71324693752643],[-124.64610344735165,57.71335069044446],[-124.64587824649942,57.71348296166807],[-124.64571516762832,57.71363941749346],[-124.64561243357865,57.71381106851853],[-124.64545770768717,57.71396873090054],[-124.64520157948924,57.71408498492247],[-124.6448985004063,57.714163751060966],[-124.64458342936258,57.71422557235237],[-124.64427029541503,57.71429189846637],[-124.64394755033267,57.71433345393302],[-124.64360946100742,57.714334479897836],[-124.64327367175329,57.71432992136812],[-124.64293957910448,57.71433659371794],[-124.64260879868992,57.714367970742245],[-124.64228572904894,57.71441849035559],[-124.64196867347856,57.714476920872755],[-124.64165759152849,57.71454438336178],[-124.64135660032957,57.714623162948754],[-124.64107591236868,57.714721214480186],[-124.6408156885924,57.71483405399577],[-124.64056979322334,57.71495713293644],[-124.64029115939502,57.71505632539128],[-124.6399820476724,57.715127168591344],[-124.6396891618976,57.71521387775948],[-124.63942477296361,57.71532555048621],[-124.63918302750423,57.71544979103249],[-124.63897841671248,57.715592355532706],[-124.63880908388994,57.715746496464455],[-124.63862933533454,57.71589828735158],[-124.63847449103129,57.71605818394675],[-124.63835298772143,57.71622515157692],[-124.63823769971029,57.716394425872394],[-124.63811619427409,57.71656139333963],[-124.6379946473746,57.71672948174722],[-124.63787104071477,57.716896427472925],[-124.63773701834637,57.717061023186325],[-124.6375801068186,57.71721977631576],[-124.63738585467178,57.71736580956315],[-124.63716879375308,57.717503757948414],[-124.63697042117178,57.71764750540811],[-124.6368030892273,57.717803907721006],[-124.63657577061397,57.717935021090014],[-124.6363031995582,57.718039875355124],[-124.63602449136553,57.718140180161335],[-124.63574170477587,57.718237078101104],[-124.63545282161695,57.7183283054847],[-124.63515990065484,57.7184150049122],[-124.6348995933124,57.71852895424049],[-124.63460666952689,57.7186156524622],[-124.63430155438515,57.71869101001045],[-124.63400858746203,57.71877882795029],[-124.63373196691487,57.718879149641715],[-124.6334552638453,57.718981712817516],[-124.63318061793123,57.71908541809892],[-124.6329080291647,57.71919026549884],[-124.63263543888615,57.71929511234885],[-124.63245090198917,57.71934591640373],[-124.63208819514634,57.71950366170906],[-124.63181358226672,57.719606243184174],[-124.63152871527713,57.719701989578446],[-124.6312276619095,57.71978074655532],[-124.63092862531553,57.7198617665893],[-124.6306315648426,57.71994617072079],[-124.63033458428477,57.72002833214134],[-124.63003340394121,57.72011044950929],[-124.62974453333084,57.72020054359146],[-124.62948423801737,57.72031336145544],[-124.62925683827838,57.720445583616645],[-124.62903561278735,57.72058123362179],[-124.62884546825792,57.720728419278224],[-124.62868850416886,57.72088716244286],[-124.62854191322894,57.7210493771288],[-124.62839951964621,57.721211635123666],[-124.62826544074014,57.72137622194461],[-124.62813136066656,57.72154080865606],[-124.62795779899507,57.72169377212694],[-124.62775525211595,57.721835220861905],[-124.62765657224324,57.7220080238141],[-124.62752260939716,57.722169246927564],[-124.6272827582825,57.722296851408245],[-124.62705949693976,57.72243023456223],[-124.6268568612999,57.72257392408101],[-124.62666044082503,57.722719920616946],[-124.62642894015566,57.72284873164994],[-124.62612377454562,57.72292407068282],[-124.62582087015592,57.72299494667086],[-124.62560991065692,57.723136305251145],[-124.62543834933894,57.72329152948258],[-124.62527098547183,57.723446797059964],[-124.62511189564526,57.723605514634244],[-124.62495906204069,57.72376541840242],[-124.62482285963958,57.723929980370215],[-124.6246742224311,57.72408992741911],[-124.62446951015295,57.72423247070866],[-124.62421942388718,57.72435211377302],[-124.62393857842098,57.72445125096032],[-124.6236476014457,57.72454018931187],[-124.62335452360661,57.72462910522972],[-124.62307573247278,57.72472938344754],[-124.62285869959113,57.72486394629083],[-124.62268102485211,57.7250134966355],[-124.62239395359813,57.7251103231154],[-124.62208674390466,57.725183389144],[-124.62176964858757,57.72523952989042],[-124.62146037799548,57.72531145161982],[-124.62117346494485,57.72540379136822],[-124.62090693231106,57.72551316435738],[-124.62063628086742,57.72562025107255],[-124.62034125171068,57.72570465445932],[-124.62002003218302,57.72575850529012],[-124.61971902942659,57.72583387350309],[-124.61961227260697,57.72599649442932],[-124.61967458653456,57.726130596489746],[-124.61967895437137,57.72635605459515],[-124.61969129974614,57.72653561610643],[-124.6196973464134,57.72671511206602],[-124.61968865486647,57.72689557606173],[-124.61965694921527,57.727073557555094],[-124.61958749072855,57.72725002452255],[-124.61946376836339,57.72741695477479],[-124.61930673709625,57.72757568785645],[-124.61914138777396,57.7277320912368],[-124.61896566161734,57.72788502198037],[-124.61876506564434,57.72802872176069],[-124.61854375811518,57.72816435525039],[-124.61833076580832,57.72830231798098],[-124.61814049975833,57.72845061041197],[-124.61797720049822,57.72860815539011],[-124.61784099124755,57.72877158992395],[-124.61772141464462,57.728939683608395],[-124.61761019493007,57.729108985819785],[-124.61751354943192,57.729281804330085],[-124.61746717423236,57.729458511410755],[-124.61757235107342,57.72962670569457],[-124.6177878244132,57.72976577041325],[-124.61796072967118,57.72992009150455],[-124.61814215849688,57.73007113683554],[-124.61835767745407,57.730209079654685],[-124.6185839019336,57.73034152636611],[-124.61877809807781,57.73048821802313],[-124.61897871811347,57.730631611930846],[-124.6191985249119,57.73076735513405],[-124.61942903727301,57.730897602143536],[-124.61966811441037,57.73102345207503],[-124.61992650124742,57.73113828795701],[-124.62021078384646,57.73123432798489],[-124.62043702095721,57.73136677166637],[-124.62060570368409,57.7315221668855],[-124.62076590642549,57.73167971660998],[-124.62094731399796,57.73183187939637],[-124.62116499404154,57.731968718692976],[-124.62140836534897,57.73209236721996],[-124.62166676478213,57.73220719982986],[-124.62192306586454,57.73232201012342],[-124.62216211944154,57.73244897676921],[-124.62236914427604,57.73259018921063],[-124.62256122585825,57.73273797486581],[-124.62274482741178,57.73288791508945],[-124.62293481201509,57.7330356784337],[-124.6231375613155,57.73317908821295],[-124.62336806112123,57.73331044971777],[-124.62364158305866,57.733414220848374],[-124.62393894122394,57.7334980524598],[-124.62422979664902,57.73358742323903],[-124.62450114134174,57.73369341291352],[-124.62476170192616,57.733807140416566],[-124.62500723764701,57.73392968329995],[-124.62523140768386,57.734062097371044],[-124.62542350794082,57.73420987909128],[-124.6255709788307,57.734371776960174],[-124.62572487344197,57.73453037686565],[-124.6258999329663,57.734684710082234],[-124.62608141639915,57.73483574524772],[-124.62627994639885,57.73498022799443],[-124.62644871003415,57.73513449528403],[-124.62652215605551,57.73531020437129],[-124.6265639790187,57.73548895029497],[-124.62659740193882,57.735667609230276],[-124.62660768311089,57.735847149966624],[-124.62661376412134,57.73602664723084],[-124.62669149441557,57.73620015779422],[-124.62684321954389,57.73636097701885],[-124.62702895584783,57.73651093358604],[-124.62724030291355,57.736649940382684],[-124.6274069370276,57.73680530600498],[-124.62748463184202,57.736979937278356],[-124.62755174496677,57.737156701941444],[-124.62762099964215,57.73733236729224],[-124.62767127161098,57.73751007911519],[-124.62772578521508,57.737686713372966],[-124.62774661417737,57.737865241997056],[-124.62787290330526,57.738032525769356],[-124.62806507478567,57.73817918318813],[-124.62829138100606,57.73831161436163],[-124.62846020842849,57.73846475854549],[-124.6284767593455,57.738645485837154],[-124.628472348254,57.738824874894526],[-124.62853736898016,57.73900161765396],[-124.62861717384104,57.73917627035783],[-124.6287777931809,57.7393820382955],[-124.62848440881152,57.73947657206736],[-124.62811319744436,57.739399837038775],[-124.62805021961435,57.73957189154599],[-124.62778576151861,57.739911203119625],[-124.62764955394947,57.74007464952188],[-124.62752372484542,57.740241567637455],[-124.6274125157864,57.74041087992768],[-124.62732634739997,57.74058493722688],[-124.62726114141587,57.740760332960896],[-124.62718753321509,57.74093564172356],[-124.6270930016853,57.74110849094238],[-124.6269901490886,57.74127901104481],[-124.62689351536537,57.7414518384337],[-124.62680738296268,57.74162477452372],[-124.62673377097238,57.74180008318218],[-124.62666015829899,57.7419753918297],[-124.62656772222496,57.74214826259983],[-124.62645440279046,57.742317552648956],[-124.6262952792402,57.742475153500806],[-124.62598675344988,57.742580740229606],[-124.62578066103973,57.74270084535247],[-124.62547125514976,57.742772777657365],[-124.62516798641057,57.74284925876618],[-124.62487279203238,57.742934794698286],[-124.6245756590659,57.743015823999606],[-124.62424267510646,57.74304265007844],[-124.62391344251635,57.74308185045165],[-124.62358824690442,57.74312557780464],[-124.62326305053976,57.74316930436215],[-124.62293970875855,57.74321977822816],[-124.62261455170733,57.7432623821507],[-124.6222912491477,57.74331173339157],[-124.62196790484931,57.74336220489572],[-124.62164468239835,57.74340931246743],[-124.62132137731456,57.74345866135142],[-124.62100408655277,57.74351592231221],[-124.6206907093949,57.74358107354909],[-124.62038330527335,57.74365525799022],[-124.62007594089528,57.74372832067547],[-124.61975860502122,57.743786699720864],[-124.61943541715388,57.743832680879926],[-124.61910815031499,57.74387525436725],[-124.61878294231306,57.74391896997294],[-124.61845962913026,57.743968311906286],[-124.61814228874293,57.74402668709843],[-124.61782688387636,57.744089567619184],[-124.61751357853598,57.744152469289354],[-124.6171961120302,57.74421420537379],[-124.61687679018144,57.7442691925065],[-124.61655557209696,57.74431855172138],[-124.61622821567332,57.744363360220106],[-124.61590106384959,57.74440256267199],[-124.61557201618132,57.744436137151716],[-124.61523909550334,57.74446069856887],[-124.61490242536135,57.74447288374986],[-124.6145682256293,57.74447500058836],[-124.61423204864218,57.74447373149415],[-124.61389587167767,57.74447246154789],[-124.61355977702543,57.74446894865461],[-124.6132236412809,57.7444665559572],[-124.61288738208464,57.744467525549894],[-124.61255120522063,57.74446625219582],[-124.61221754081612,57.74445378949845],[-124.61189355600843,57.74440666144566],[-124.61158950734547,57.74433170434131],[-124.6112633825756,57.74428567381218],[-124.6109393179552,57.744240785529556],[-124.61061311229841,57.74419699549864],[-124.61028690739782,57.74415320466733],[-124.60996066200218,57.744110534081685],[-124.60963441734351,57.744067862695445],[-124.60930825596279,57.74402294841727],[-124.60898423719904,57.74397693432406],[-124.60866244365182,57.743927578341136],[-124.6083408161415,57.74387373739898],[-124.60801918954789,57.74381989567984],[-124.607699581784,57.74376831732446],[-124.60737564981835,57.743720057223776],[-124.60704722823338,57.74367959952382],[-124.60671633468776,57.743649208346085],[-124.60638280349549,57.7436333678486],[-124.6060465929077,57.74363319905487],[-124.60571194496524,57.74364762506557],[-124.60537898344214,57.74367328276083],[-124.60502897944433,57.743648293803005],[-124.60473047332708,57.74376515211233],[-124.60441702463197,57.743831385960306],[-124.60411168708244,57.743905554811256],[-124.60395890195632,57.744002636938],[-124.60351916748756,57.74407426826764],[-124.60325657027468,57.74418589407641],[-124.60303099418888,57.744319217469204],[-124.60284264654753,57.74446863342235],[-124.60265017916721,57.744615762779425],[-124.60240207243685,57.744733147093754],[-124.60206712295708,57.74475541123477],[-124.6017310683885,57.74475074732557],[-124.60141567167668,57.744812467822534],[-124.6011163730411,57.744893422565966],[-124.6008090443882,57.744964198603384],[-124.60056895834188,57.7450917575673],[-124.6003372731758,57.745219404783455],[-124.59999352339595,57.7453088598518],[-124.59973471162094,57.74537453817984],[-124.59942931084262,57.745449817407966],[-124.5991218497799,57.74552395270769],[-124.59881447067775,57.745595845211575],[-124.59850498975648,57.74566771481184],[-124.59819554925983,57.74573846265085],[-124.59788614921561,57.7458080887289],[-124.59757271319323,57.74587318549096],[-124.59724742145791,57.745917969425264],[-124.59692801454577,57.74597402966851],[-124.59661054075609,57.74603459554815],[-124.59629718397423,57.7460974472227],[-124.59598370114506,57.74616366129255],[-124.59567429354227,57.746233282240446],[-124.59536690210844,57.74630516680552],[-124.59505946780892,57.746378171707015],[-124.59475199061615,57.746452296945094],[-124.59445266471084,57.74653323678239],[-124.59417371867971,57.74663121426211],[-124.59379971094002,57.74679883702753],[-124.59999871000687,57.74981840667995],[-124.6785101433718,57.7879927934391],[-124.67817021691965,57.78802754109613],[-124.67799484205884,57.7881693479122],[-124.67787927640681,57.78834539526815],[-124.67778906449105,57.788518330514286],[-124.67772186787167,57.78869485945192],[-124.67766514683213,57.788872614222825],[-124.67761894080525,57.78905047372478],[-124.67757904370072,57.789228396078414],[-124.67753700379762,57.78940741862188],[-124.67747611383315,57.789584010428975],[-124.67737335681373,57.789754577689074],[-124.67722670766909,57.789916857117205],[-124.67706338916344,57.79007448431389],[-124.67691260971748,57.790234479304985],[-124.67684961231173,57.790411050013994],[-124.67683284528327,57.79058920290814],[-124.6769362359523,57.79076070252896],[-124.6770079221101,57.79093637225775],[-124.67707119603932,57.79111195816508],[-124.67714708996036,57.791287669787025],[-124.67724417424098,57.791459106430224],[-124.67731165665258,57.79163473421553],[-124.67736854477556,57.79181249949215],[-124.67743178255296,57.791989206499814],[-124.67748660779073,57.792165829721135],[-124.67757944999315,57.79233834549484],[-124.67767864224362,57.79250980294495],[-124.67777358948226,57.792682339585774],[-124.67784738651082,57.792858030139406],[-124.677929754694,57.793029319960006],[-124.67806069687505,57.793195485732994],[-124.67819798953703,57.79336059309042],[-124.67835440999954,57.79352028312647],[-124.67853217960987,57.793671213336765],[-124.6787375301027,57.793815688656565],[-124.67895565949388,57.79395580473434],[-124.67917382975448,57.794094799351186],[-124.67938350953861,57.794235952206506],[-124.67956989645853,57.79438135918967],[-124.67966517093699,57.79454492581691],[-124.67964183043217,57.79473086492156],[-124.67968821701591,57.794908525187374],[-124.67975147084587,57.79508523163466],[-124.67980837566601,57.79526299647614],[-124.67986532025257,57.79543964020077],[-124.67991591571345,57.79561734233085],[-124.6799517480163,57.795796019242815],[-124.67994967849036,57.79597544096362],[-124.67996864401188,57.796155071794765],[-124.68004245805402,57.79633076173559],[-124.68008253791166,57.79650835942703],[-124.68008046896861,57.7966877812771],[-124.68007415368734,57.79686828247281],[-124.68008470602402,57.797047829822795],[-124.68010145148558,57.79723080329862],[-124.68015843963789,57.79740632611768],[-124.68032361326436,57.797557129085284],[-124.68055236656639,57.79769510531943],[-124.6806771041016,57.79785896433556],[-124.68074032830272,57.79803679195806],[-124.68081414961982,57.7982124817994],[-124.6808289523226,57.79839094999183],[-124.68082474397913,57.79857147242358],[-124.68082053559537,57.798751994887695],[-124.68076178878778,57.79892748960913],[-124.68061083279736,57.79909197472137],[-124.68048928779402,57.79925787341326],[-124.68048317011876,57.79943276944802],[-124.68054421391466,57.79961281880071],[-124.6806222056094,57.799789671951004],[-124.68078098845511,57.80000321614654],[-124.68082750450571,57.800177513559234],[-124.6808548912854,57.8003572285923],[-124.68088862878582,57.800535885201775],[-124.68092026284432,57.80071452094176],[-124.6810305076751,57.800932069016724],[-124.68121464706705,57.80102249748571],[-124.68146937547395,57.80114054291934],[-124.68174136679927,57.80124642247674],[-124.68202423118979,57.80134231568489],[-124.68232221527137,57.801427143081185],[-124.68264237422925,57.80147966565971],[-124.68297134075432,57.80152105959459],[-124.68328701984692,57.80158138682542],[-124.68358068364527,57.801669533104004],[-124.68386129558951,57.80176988611845],[-124.68413333727541,57.801874639712445],[-124.68440319843377,57.80198161418791],[-124.68467738608544,57.802085266394805],[-124.6849580431253,57.80218449600131],[-124.68524084457063,57.80228262471592],[-124.68552368655654,57.802379631704746],[-124.68580434801243,57.80247885955235],[-124.68608501094482,57.802578086816915],[-124.68636138951634,57.802679514153],[-124.68663336663053,57.80278650499042],[-124.6868967736261,57.80289789662752],[-124.68715803926297,57.803010388095274],[-124.68742144937109,57.80312177871698],[-124.68769343268033,57.803228767431314],[-124.68797414515839,57.803326869643904],[-124.68827437917636,57.80340834123168],[-124.68859896596764,57.80345528543387],[-124.68893037193084,57.803487716380786],[-124.68925947974398,57.80352573141973],[-124.68957058831123,57.80359721367522],[-124.68966994256243,57.80376642181843],[-124.68964508626786,57.80387608561584],[-124.68964906341053,57.80412510240879],[-124.6896849498968,57.80430377820924],[-124.68973770748111,57.80448149892098],[-124.68979892045265,57.80465818151516],[-124.68991725342612,57.804826455283504],[-124.69000172867753,57.80500000268358],[-124.69006083971172,57.80517666449961],[-124.69012415935008,57.805353367814675],[-124.6902128837366,57.805525835527675],[-124.69031427213248,57.80569730653748],[-124.690400855215,57.80587087457884],[-124.69044516318033,57.806049633456034],[-124.69046207967368,57.806229243850346],[-124.69047268407512,57.80640879205026],[-124.69047697629446,57.80658827805738],[-124.6904791644503,57.80676774335525],[-124.69048135262695,57.806947208685244],[-124.69048354082443,57.80712667404741],[-124.69048993731151,57.807306180924364],[-124.6905405987437,57.807483881109384],[-124.69061238004319,57.8076595464203],[-124.69068626617529,57.80783523246141],[-124.69073907233708,57.80801183226179],[-124.69075809529392,57.80819146370833],[-124.69075186810456,57.808370846340914],[-124.69072459881671,57.80855002163139],[-124.69067422183984,57.80872784768642],[-124.69060077577775,57.80890320333676],[-124.69051267725565,57.80907617150691],[-124.69041409564288,57.80924791479412],[-124.69030923931008,57.809418474662706],[-124.6902001735058,57.80958899298596],[-124.69009114565654,57.8097583901058],[-124.68996119086003,57.809924216240404],[-124.68982079137328,57.810087696229786],[-124.68969921249371,57.81025472631375],[-124.6895922458212,57.810425265034496],[-124.68949993048375,57.81059819128562],[-124.68942647531982,57.81077354661519],[-124.68935512380989,57.810948922694216],[-124.6892900457102,57.81112548219124],[-124.6892459715997,57.811303370444115],[-124.68924394543804,57.81148279508702],[-124.68931362393248,57.81165844104172],[-124.6894341200531,57.81182561603397],[-124.68957153032267,57.81199071470281],[-124.68968988528785,57.812158989908305],[-124.68976171047653,57.81233353535541],[-124.68981658407952,57.81251127821674],[-124.68986724933097,57.81268897958464],[-124.68991581061556,57.81286666021445],[-124.6900024083235,57.81304022976115],[-124.6901059593717,57.81321060182216],[-124.6901439611415,57.81338929987064],[-124.69018398987028,57.81357026098112],[-124.69041759151938,57.813693689009035],[-124.6905976089964,57.81384462685111],[-124.69069687806935,57.81401719940519],[-124.6908896810012,57.81416377673644],[-124.69114885424268,57.81427848318497],[-124.69128211080071,57.814442417880294],[-124.69141532961042,57.814607473617635],[-124.69166811605461,57.8147243592218],[-124.6919597194482,57.81481470971121],[-124.69220385742324,57.814938238343366],[-124.69239452747334,57.81508591406191],[-124.69256812915472,57.815240150760516],[-124.69269500377891,57.815406264371404],[-124.69284732901001,57.815567020589135],[-124.6930444351525,57.81571139412924],[-124.69324360856336,57.81585690924647],[-124.69344921391844,57.815999122717564],[-124.69362921569181,57.81615117795273],[-124.6936845475489,57.816377150097516],[-124.6936275034033,57.81650444408239],[-124.69353519168838,57.81667737419097],[-124.69344708846391,57.81685034565464],[-124.69337991466028,57.81702688750479],[-124.69333795763379,57.81720479886326],[-124.69332121773684,57.81738407975469],[-124.69331921063866,57.81756350555385],[-124.69331720352142,57.81774293138524],[-124.6933004632869,57.81792221237097],[-124.69325846603377,57.81810124501763],[-124.69318922322852,57.81827664514192],[-124.69309273451103,57.81844841269981],[-124.69297527497285,57.81861773088992],[-124.69277034667651,57.81875927171546],[-124.69254464116048,57.81889275707971],[-124.69227149603954,57.81899773683212],[-124.6919536386558,57.81905629292673],[-124.69163979534876,57.81912049548084],[-124.69133401993804,57.81919487059566],[-124.69101405463549,57.81925340372656],[-124.69070219609428,57.81932098827424],[-124.69043726728036,57.81943165302423],[-124.69020122012951,57.8195594250163],[-124.69001288118636,57.81970785461628],[-124.6897644356374,57.81982877444757],[-124.68954908140807,57.819966843249695],[-124.68934409394514,57.82010950013808],[-124.68917862944694,57.820266005074004],[-124.68902150506923,57.820424835197144],[-124.68879990807717,57.82056059826398],[-124.68849610326455,57.82063835118964],[-124.6882086291404,57.820730844660446],[-124.68790688760579,57.82080973818508],[-124.68759298378762,57.820875052450425],[-124.68726719121865,57.82091893928527],[-124.6869316933995,57.82093917708807],[-124.68660176782895,57.82098077838946],[-124.68639060524559,57.82111888383962],[-124.68622305821583,57.8212742432932],[-124.68606591718708,57.82143307008311],[-124.68590253820322,57.821589591960084],[-124.68572247469616,57.82174146250483],[-124.68552783147643,57.82188870246769],[-124.68532698916248,57.82203251623139],[-124.6851219744957,57.82217516690381],[-124.6849148924167,57.82231667529513],[-124.68470363794427,57.82245702056202],[-124.68449242102012,57.82259624435716],[-124.68428116340883,57.822736588991944],[-124.68406990422481,57.82287693331081],[-124.68385868260832,57.823016156157685],[-124.68364745943198,57.82315537868838],[-124.68343412967305,57.82329458004964],[-124.68322079833885,57.82343378108795],[-124.68300746542951,57.823572981803395],[-124.68279623599064,57.823712203059394],[-124.68258289993847,57.82385140313249],[-124.6823716673721,57.82399062375277],[-124.68216039405391,57.82413096521374],[-124.6819491191629,57.824271306358646],[-124.68173994778324,57.82441166806774],[-124.68153077484617,57.82455202946756],[-124.68132366623402,57.824693532601955],[-124.68111651684359,57.824836156591154],[-124.68091147100137,57.8249788011713],[-124.68071683151639,57.825124913410455],[-124.68053883536857,57.82527679836902],[-124.68036079853985,57.82542980427014],[-124.68019316825412,57.82558627795385],[-124.68007149674303,57.825753301826936],[-124.67995816630524,57.82592265156704],[-124.6798031239505,57.826080371444995],[-124.67961463295721,57.82623102959877],[-124.67942621900852,57.82637944519103],[-124.67926064654242,57.82653705992403],[-124.67909507269195,57.826694674475824],[-124.67886938913111,57.826824774201924],[-124.67858149050882,57.826927337855075],[-124.67832481496703,57.827040305344234],[-124.6781866030854,57.82719819098811],[-124.67810658995083,57.82737796480975],[-124.67799741699804,57.82754847619037],[-124.67788192725752,57.82771892468669],[-124.67773934317333,57.82788125272965],[-124.67753438599158,57.8280205290582],[-124.67727126597639,57.82813679527659],[-124.67698955082312,57.82824278195042],[-124.67667210343454,57.82828672696052],[-124.67633724301253,57.828286757292176],[-124.67599646049274,57.82827551227033],[-124.67565754713493,57.82827101430878],[-124.67532073915386,57.82826653646516],[-124.67498381302407,57.828265421246044],[-124.67464871627271,57.828272174280166],[-124.67431497553694,57.82830024949122],[-124.67398906390991,57.82834522526408],[-124.67367515213826,57.8284082648337],[-124.673363147333,57.828476930474395],[-124.67304716757566,57.8285388263974],[-124.67272912094462,57.82859957939116],[-124.67241516546186,57.82866373716064],[-124.67210724840072,57.82873580540445],[-124.67180338279165,57.828812399651596],[-124.67149745013326,57.82888785100857],[-124.67119151625029,57.828963301667216],[-124.67089165995972,57.82904554173784],[-124.67059998648111,57.829134592320095],[-124.6702918643536,57.829212262188456],[-124.67008083325727,57.82934361591228],[-124.66991937986353,57.82950238276854],[-124.66972050324934,57.8296473162757],[-124.66959877223253,57.82981433124457],[-124.66946238156966,57.82997895628842],[-124.6693009624308,57.8301366013358],[-124.66911038295379,57.830284981811715],[-124.66883299800541,57.83038650894944],[-124.66853316485292,57.83046762265834],[-124.66827429006396,57.83058167121329],[-124.66800301886234,57.830688865730615],[-124.66771144473091,57.83077454664242],[-124.66738776782194,57.830815042805156],[-124.66715149198765,57.83094501763687],[-124.66688843849924,57.83105790016528],[-124.66659673999405,57.831146942144564],[-124.66629280408257,57.83122464514171],[-124.66598282830076,57.83129443593996],[-124.66569108613692,57.831384597113576],[-124.66543839377448,57.8315020671358],[-124.66519177804362,57.831626327080265],[-124.66492672758557,57.8317358211811],[-124.66463907129425,57.83182938586052],[-124.66445716498339,57.83196999640037],[-124.66464332340907,57.832125520274126],[-124.66486178095163,57.8322611802356],[-124.66500130331623,57.832425207684864],[-124.66510690014229,57.83259562368611],[-124.6651786107293,57.83277130716203],[-124.66522072514717,57.832950058130834],[-124.66523967878454,57.833128576561926],[-124.66523753717905,57.8333080047688],[-124.665218511193,57.83348838503518],[-124.66522256712531,57.833671240220696],[-124.66509051343563,57.833831419053155],[-124.665025282175,57.83400797072071],[-124.66499366080772,57.83418710304824],[-124.66496625040148,57.834366277692766],[-124.66493883973462,57.83454545236417],[-124.6649072572217,57.8347234636048],[-124.66487142337193,57.834902553738715],[-124.66483348351099,57.835081622747246],[-124.6647955830095,57.83525957061321],[-124.66475974811945,57.835438660814106],[-124.66472816401233,57.83561667217291],[-124.66470285701489,57.83579586817216],[-124.66467754977681,57.835975064199005],[-124.66464592510667,57.83615419680004],[-124.6646164058764,57.83633335057779],[-124.66458271459217,57.83651134091159],[-124.66453428266757,57.836689183199034],[-124.66447325539588,57.83686577741204],[-124.66439963260616,57.83704112353251],[-124.66431762570907,57.83721526385165],[-124.66422091719875,57.83738813487981],[-124.66411169217676,57.83755751541073],[-124.66399408264755,57.8377256900683],[-124.66387019433732,57.8378926799932],[-124.66374209325645,57.83805962749994],[-124.66360985886605,57.83822429024186],[-124.66347341161085,57.83838891054019],[-124.66333489706678,57.838552388386425],[-124.66319220934683,57.83871470259945],[-124.66304324252864,57.83887583198843],[-124.66289010243621,57.83903579771104],[-124.6627348949299,57.83919462093357],[-124.66257547429933,57.83935340163251],[-124.66241605232554,57.83951218216584],[-124.66225666880857,57.83966984136515],[-124.66209935008746,57.839828642758725],[-124.66194203004059,57.839987443991745],[-124.66178053657893,57.840145081502214],[-124.66162321386784,57.8403038824089],[-124.66146795597597,57.840463825525866],[-124.66132314700019,57.840626116845755],[-124.6613047010118,57.84073023716357],[-124.66149231399558,57.84096429110784],[-124.6616659083957,57.841118572188414],[-124.6618161389787,57.841278225762125],[-124.66194296570058,57.84144437308133],[-124.66204642812579,57.84161589304542],[-124.66210335949438,57.841792552606655],[-124.66218143154641,57.841967181738084],[-124.66231672625126,57.84213229240666],[-124.66252033174925,57.84227229395716],[-124.66285925009355,57.84228018899122],[-124.66316637656865,57.842352814679494],[-124.66343638852193,57.842462078445536],[-124.66368061208819,57.84258566291736],[-124.66394212331217,57.84269708336032],[-124.6642164714205,57.84280302438796],[-124.66444786440984,57.842932086407664],[-124.66466201273121,57.84307219056445],[-124.6648912233238,57.84320347304322],[-124.66512472721463,57.84333255508494],[-124.66536033884432,57.843461657873654],[-124.66559603149815,57.84358851791397],[-124.66584022974902,57.84371321973468],[-124.66609090685974,57.84383349981084],[-124.66635020865401,57.84394825805412],[-124.66662465199026,57.8440519518987],[-124.66691209090723,57.8441456813067],[-124.66720390225247,57.84423496762368],[-124.6675000859539,57.844319810819464],[-124.66779837718224,57.84440467446447],[-124.668096749017,57.8444872950962],[-124.66840163888101,57.844564372462095],[-124.66871535095244,57.84463032172269],[-124.66903804341439,57.84468065810842],[-124.66936741172077,57.8447209663569],[-124.6696969786524,57.8447556679089],[-124.67003135223644,57.844773593128906],[-124.67036814886846,57.844782569155775],[-124.67070518298598,57.84478481726915],[-124.67104217759956,57.84478818570502],[-124.67137873739793,57.84480388623417],[-124.6717083859555,57.84483634045041],[-124.67203775847865,57.84487664209157],[-124.672364946472,57.84491916424435],[-124.67269439941154,57.84495722190761],[-124.67302615667235,57.844989693886355],[-124.67335799345592,57.84501992268287],[-124.6736921737979,57.84504344459257],[-124.67402773550327,57.845027724430444],[-124.67434821389062,57.845081390482974],[-124.67462916395924,57.845180646206785],[-124.67489497748454,57.84529096621065],[-124.67515646179291,57.845404607262196],[-124.67542442411583,57.84551382603883],[-124.6757097503982,57.84560863676812],[-124.6760324605792,57.84565895623188],[-124.67632212020132,57.84575044406507],[-124.6765363680666,57.84588940831902],[-124.67672713332259,57.846037111128915],[-124.67691786070327,57.84618593486764],[-124.67712360928871,57.84632705676936],[-124.67741319798301,57.84642078464931],[-124.67771160685997,57.84650338387734],[-124.67802535136525,57.84656931130532],[-124.67834136060779,57.846630774207284],[-124.67864410379886,57.846710049685896],[-124.67894029339799,57.84679598879586],[-124.67921916200679,57.84689521407059],[-124.67947637920628,57.84701104733576],[-124.67972068485608,57.84713460291665],[-124.67995851590365,57.847262580067174],[-124.6801942421996,57.84739053590392],[-124.68043422211278,57.847517411959444],[-124.68068071908834,57.8476387443759],[-124.68094652841779,57.84775017374238],[-124.68126930317491,57.84779935942466],[-124.68156550732367,57.84788529278326],[-124.68182269926763,57.84800224281075],[-124.68206916466622,57.84812469389753],[-124.6823091947807,57.84825044548036],[-124.6825449352391,57.84837839727909],[-124.6827806772985,57.8485063486766],[-124.68300994487613,57.84863872183048],[-124.68323070990958,57.848773253548984],[-124.68345354379403,57.848908926958245],[-124.68368285535755,57.84904017782097],[-124.68392933359041,57.849162625589784],[-124.68419087201254,57.84927624932417],[-124.68445245116193,57.849388751371144],[-124.6847052927829,57.849510139072244],[-124.68472168539482,57.849764898402334],[-124.68449322092977,57.84997125141822],[-124.68431925736321,57.85012542930779],[-124.68410585570624,57.85026239317241],[-124.68386748739708,57.85039013705508],[-124.68365817816304,57.85053050549413],[-124.68349048907668,57.85068586612569],[-124.68342535404048,57.850861308646046],[-124.68335807264079,57.851037851498255],[-124.68328447086289,57.85121433177945],[-124.68323825409674,57.8513910831959],[-124.68325511740275,57.85157182391105],[-124.68321100667276,57.851748596239176],[-124.68311438674283,57.8519203623652],[-124.68300723277453,57.85209202414787],[-124.68292110504161,57.85226501568563],[-124.68296344301928,57.85244040099545],[-124.68309672054889,57.85260659260002],[-124.6832087757959,57.85277706028389],[-124.68337404764503,57.852932352629004],[-124.68358621649472,57.85307240687522],[-124.68371957735866,57.85323635558218],[-124.68385711362167,57.85340146706794],[-124.68401170064305,57.85356113924542],[-124.68418969790358,57.85371431338763],[-124.68433796742255,57.85387392271053],[-124.68444156593435,57.85404542740836],[-124.68454305863821,57.854216911219034],[-124.68469343839236,57.85437654106389],[-124.68485443155338,57.8545340325385],[-124.6849411017201,57.85470761269405],[-124.68501080096,57.85488438977012],[-124.68507418045802,57.85506110435759],[-124.68511856013747,57.85523875269499],[-124.6851311814132,57.85542057341908],[-124.68518832016085,57.85559498318039],[-124.68535778707708,57.855751436352655],[-124.68555499651742,57.85589806925774],[-124.68573094335876,57.85605009968791],[-124.68584520586307,57.85621834417802],[-124.6859424579505,57.85639090686344],[-124.68603549716245,57.85656342788256],[-124.68611792454612,57.856738087199666],[-124.6861939928797,57.85691380526109],[-124.6862551962209,57.85709274123199],[-124.68635678359325,57.85726198180042],[-124.6865114361483,57.85742053050529],[-124.68668520883631,57.857574781496126],[-124.68687388793548,57.857724693096856],[-124.6870732205641,57.85787134484596],[-124.68728121705392,57.858011352310434],[-124.68750201319979,57.85814699942028],[-124.68773350208333,57.858278265323946],[-124.68797143070638,57.85840622959687],[-124.68821365303013,57.858531992622446],[-124.6884559160116,57.85865663402539],[-124.68870239461367,57.85878131654434],[-124.68896182914722,57.858897153636036],[-124.68924089177008,57.858994116721874],[-124.68955690651482,57.85905891734687],[-124.68988189643918,57.85910810345042],[-124.69014952950137,57.859170182973166],[-124.69056812494752,57.859133927206365],[-124.69081941229707,57.859241829358474],[-124.69100545780297,57.85928628040511],[-124.6912825061672,57.85950210712922],[-124.69150956873266,57.85964005238277],[-124.69173234094076,57.85978019822317],[-124.69195511480648,57.85992034371056],[-124.69218007527401,57.86005826715952],[-124.69240726125201,57.86019284735712],[-124.69263885763627,57.860321862597104],[-124.69287915639886,57.86044311186083],[-124.69312612817144,57.86055433199491],[-124.69343447322302,57.86059773788171],[-124.6937934990076,57.86057771044206],[-124.69413968737797,57.86056316393565],[-124.69447346599605,57.86054176524268],[-124.69480919593128,57.86052487119426],[-124.69514676077199,57.86051584538124],[-124.6954824125079,57.860501192038264],[-124.69580830491186,57.86046401051635],[-124.69614965623461,57.860467356698294],[-124.69648694861601,57.8604661759006],[-124.69680273093066,57.860416555482175],[-124.69711105361935,57.8603388217084],[-124.6974332328876,57.8602870193077],[-124.69775498485184,57.86024754935596],[-124.69809297280847,57.86022618284373],[-124.69842556898709,57.86017784476262],[-124.69870551766995,57.86025012166325],[-124.69896276978669,57.860369282420876],[-124.69921756792311,57.86049851291933],[-124.69949003774565,57.86060436247687],[-124.69981111066294,57.86064563477848],[-124.70015414546899,57.86066132451947],[-124.70048368677453,57.860701556353746],[-124.70081108298416,57.860742887998356],[-124.70114530393887,57.86076970490816],[-124.70147063299278,57.8608098931549],[-124.70177786901114,57.860885794637355],[-124.70208522217898,57.86095833180263],[-124.70241878928965,57.86100420599602],[-124.70271760022345,57.86108002310923],[-124.70297896917089,57.86120258091396],[-124.70313171652396,57.86135772677052],[-124.70319733770053,57.86153333322158],[-124.70323533452125,57.86171539988155],[-124.70328390626678,57.86189644805809],[-124.70338136870205,57.86206563537124],[-124.7035553862782,57.8622153802275],[-124.70378040292591,57.862353284382664],[-124.70400327541505,57.86249228885519],[-124.7042091373861,57.86263561360206],[-124.70442561426724,57.86277679824592],[-124.70464420002004,57.86291800307626],[-124.7048543198274,57.8630602467161],[-124.70504739034567,57.863207931990466],[-124.70521080636084,57.86335981471271],[-124.70532326348192,57.863522417170756],[-124.70534663716136,57.86370097641884],[-124.70534234632093,57.86388711756592],[-124.70537196517262,57.86406798081566],[-124.70546304355712,57.86423934787759],[-124.70557948783816,57.864408718532445],[-124.70571080016134,57.86457486899622],[-124.70585062010687,57.86473885893594],[-124.70600534689233,57.86489850739378],[-124.70619413957144,57.86504839270872],[-124.70637017394724,57.86520151846551],[-124.70653770319137,57.86535680448197],[-124.70670308791752,57.865513191037444],[-124.7068748347285,57.8656685176503],[-124.7070487673575,57.865821622123434],[-124.7072247703326,57.8659758680823],[-124.70739655988919,57.86613007288338],[-124.70757041981199,57.86628541917125],[-124.70767423520552,57.86645466551494],[-124.70773774050973,57.86663137138398],[-124.70779703147342,57.866808036318005],[-124.70788172814336,57.866981583225545],[-124.70798761587457,57.86715197112562],[-124.70810197301707,57.86732131961241],[-124.70821418521997,57.8674917687821],[-124.70831160736589,57.8676631958799],[-124.70834335097314,57.86784407962746],[-124.7084366364566,57.868013223347184],[-124.70864649142149,57.868164431456485],[-124.70885224829478,57.868312234710245],[-124.70892894581125,57.868473366045755],[-124.70888926626886,57.86864682718491],[-124.70878616669167,57.86882528085201],[-124.7086558212462,57.868998983699186],[-124.7085132135344,57.869161351549955],[-124.70834972079594,57.86931790860011],[-124.70817158876864,57.86947095858958],[-124.70798717088604,57.869622825752295],[-124.70780692830876,57.86977585483594],[-124.70761204621259,57.86992537675151],[-124.70741298575514,57.87007373623898],[-124.70724956146758,57.87022804965054],[-124.70718676497195,57.87039904290969],[-124.70723314375425,57.87058343442657],[-124.70730504621594,57.870761344376426],[-124.70739377246126,57.87094053933745],[-124.70760711492508,57.87117478107386],[-124.7079934941494,57.87134340724438],[-124.70829603685526,57.87143607183473],[-124.70855994966595,57.871548549469146],[-124.70878944813481,57.871680881290025],[-124.70901247120163,57.871817636261284],[-124.70925707311176,57.87194001948424],[-124.70952976921691,57.87204248606127],[-124.70982185931871,57.872132802604575],[-124.71012042777689,57.87221869493151],[-124.71041688981984,57.87230456616922],[-124.7107111686486,57.87239265877192],[-124.71100763340817,57.87247852870886],[-124.71129976881126,57.87256772082838],[-124.71158535200787,57.87266357841338],[-124.71186442145763,57.872764980287144],[-124.71214567691958,57.87286415954385],[-124.712431302859,57.87295889412145],[-124.71272996048393,57.87304253822399],[-124.71303080390771,57.87312395960588],[-124.71332946417344,57.873207602377185],[-124.71362816407202,57.87329012326344],[-124.71392682698247,57.8733737647084],[-124.71422549121966,57.87345740549045],[-124.71452197237554,57.87354326769234],[-124.71481630875861,57.87363023010665],[-124.71510842385501,57.87372053519376],[-124.71539839423433,57.87381194052304],[-124.71568836602138,57.87390334522906],[-124.71598266967598,57.87399142631942],[-124.71628138160634,57.8740739413171],[-124.71658879391445,57.87414868840206],[-124.71689628386247,57.87422119233477],[-124.71720369859332,57.87429593801069],[-124.71750245380676,57.87437732906924],[-124.71779021260254,57.874472072607226],[-124.71807145824697,57.87457236073856],[-124.7183527817231,57.87467040583605],[-124.71864709760516,57.87475848110376],[-124.71895022805256,57.87483542464355],[-124.71926205843062,57.87490460006902],[-124.71957611227803,57.874970431373995],[-124.7198901291022,57.87503738316815],[-124.72019981682776,57.87510765735955],[-124.72050509930604,57.87518349643161],[-124.72080375441394,57.87526824383223],[-124.72109593466193,57.87535741470231],[-124.72138585602563,57.8754510495926],[-124.7216821027254,57.8755447446065],[-124.7219762048694,57.875639539953056],[-124.72225314027528,57.87574314256131],[-124.72249386106334,57.87585761287493],[-124.72258512197185,57.87602672782757],[-124.72263111085077,57.8761628820057],[-124.72280731810292,57.87637655430729],[-124.7230592312018,57.876472063945975],[-124.72340173553275,57.87650787610893],[-124.7236983376497,57.87659147567936],[-124.72398612895593,57.87668620603604],[-124.72427825175838,57.87677761250772],[-124.72457033799523,57.87687013957609],[-124.72486250161819,57.87696042355338],[-124.72516784647544,57.877035130844796],[-124.72548878397406,57.87708531170647],[-124.72582083181177,57.87711877426477],[-124.72615502623377,57.87715113494367],[-124.72648033386619,57.87719686885579],[-124.72680545270035,57.87724820812657],[-124.72712838853894,57.87730176890431],[-124.72744688176569,57.87736201597047],[-124.72775882445544,57.87742892920576],[-124.72805984906104,57.87750695328608],[-124.72835643151805,57.877591663792806],[-124.7286485340912,57.87768418198872],[-124.7289341623998,57.877781124077046],[-124.7292133164945,57.877882490100816],[-124.72948603426002,57.877987158870276],[-124.72973932656285,57.87810510078911],[-124.7299839610319,57.8782296891657],[-124.73023288900661,57.87835207487013],[-124.73049473206389,57.878466732150635],[-124.73075872265686,57.878580287801505],[-124.73101623922904,57.87869826757225],[-124.73124811949624,57.878826096795244],[-124.73145214187474,57.878967119215446],[-124.73164758200181,57.879112545915305],[-124.73183443984665,57.87926237693469],[-124.7320127153723,57.87941661231179],[-124.73218459225163,57.87957302969654],[-124.73234589178027,57.87973046772045],[-124.73250079251537,57.879890087812264],[-124.73264929440244,57.88005188999541],[-124.73279135964243,57.88021699552785],[-124.73292280944318,57.88038424305483],[-124.73304368142094,57.880552511372976],[-124.73315182945076,57.88072290168067],[-124.73324518283735,57.88089427270806],[-124.7332815380553,57.881067344428686],[-124.73321428556079,57.88124840286403],[-124.73322300669481,57.881427941222825],[-124.73327611561818,57.881604537278626],[-124.7333439455532,57.88178239503225],[-124.73341599278953,57.881960292909824],[-124.73348597009021,57.8821370494813],[-124.73354751464764,57.88231372580493],[-124.73359430126278,57.88249026171217],[-124.73361371722861,57.882665415621375],[-124.73352775211977,57.8828384453023],[-124.73338497289862,57.88300756954043],[-124.73324870624828,57.883171147657144],[-124.73310611319268,57.8833346654584],[-124.73295726913166,57.88349588044531],[-124.7328021740122,57.88365479259576],[-124.7326407900331,57.88381252312632],[-124.73246686731562,57.883966769300244],[-124.73228462265475,57.88411757122871],[-124.73210026807502,57.884268352847215],[-124.73191173285713,57.88441797282025],[-124.73172323391918,57.88456647130921],[-124.73154094559204,57.8847183935531],[-124.73137958955803,57.88487500148714],[-124.73124119893265,57.88503855776849],[-124.73110905704125,57.885204416713734],[-124.73096855550969,57.88536795266755],[-124.73082180278375,57.885529185706496],[-124.73061819390995,57.885687633241965],[-124.73040626259454,57.88584263632559],[-124.73033546085487,57.885940662000046],[-124.73058450756385,57.88612361517365],[-124.73087121709737,57.88625309006713],[-124.73112020101345,57.886375475123906],[-124.73137140850486,57.88649451609899],[-124.73159034639865,57.886632316361585],[-124.73181576280386,57.88676569157821],[-124.73207559837229,57.88687920541152],[-124.73234835151378,57.88698499052944],[-124.73262543668532,57.887087451521424],[-124.73290900021748,57.88718548718685],[-124.73320126390077,57.88727575381836],[-124.73348916080442,57.88737046466847],[-124.73375548239689,57.887479550503336],[-124.73400241286978,57.887600789022564],[-124.7342428304396,57.88772757317177],[-124.73448324962894,57.887854356903375],[-124.73473443993251,57.887974512959204],[-124.7350050998086,57.88808027271146],[-124.73528220027399,57.88818272828969],[-124.73556141093344,57.888285203331115],[-124.73583640573013,57.88838763774847],[-124.7361091803704,57.888493415325996],[-124.73637547985653,57.888603617292354],[-124.73663526658909,57.88871936493415],[-124.73689509254818,57.8888339908363],[-124.73715925040017,57.88894529251232],[-124.73744061816824,57.88904666245031],[-124.7377242090002,57.88914468805779],[-124.73798407880805,57.889258190637754],[-124.73819462198735,57.88939590046872],[-124.73838151935661,57.88954684513289],[-124.73857481968322,57.889695607006495],[-124.73878743867107,57.88983445719185],[-124.73901075340545,57.88996892193657],[-124.73924905662129,57.89009679862927],[-124.73950242345126,57.89021584468907],[-124.73975364553608,57.89033599156778],[-124.7399769666977,57.89047045476156],[-124.74017890101238,57.89061368803734],[-124.74037228897588,57.89076020496585],[-124.74056131068791,57.89091116673588],[-124.74073971466343,57.89106427102612],[-124.74090960965619,57.89121953782505],[-124.74107099559014,57.891376967166025],[-124.74122165100763,57.89153990289449],[-124.74134614761859,57.89179119801359],[-124.74145288495826,57.89187969232486],[-124.74148932602391,57.892051642513216],[-124.74140740601334,57.8922303250879],[-124.74135922794063,57.89240932664726],[-124.74134475478603,57.892589768480285],[-124.74134082619244,57.89277031003408],[-124.741353806662,57.892949889869605],[-124.74139431623425,57.89312636516044],[-124.74153646918738,57.89329146358587],[-124.74161934703149,57.8934627312892],[-124.74163654704677,57.893642351092346],[-124.74164105573942,57.893822972583415],[-124.74165403800458,57.89400255258534],[-124.74166912941286,57.89418215255184],[-124.74168422096517,57.89436175255015],[-124.74169931266152,57.89454135257995],[-124.74171862260086,57.894720992505206],[-124.74173797021513,57.89489951120593],[-124.74176360773146,57.895079210985195],[-124.74179982838004,57.89525788919021],[-124.7418445232191,57.8954355258821],[-124.74189554577877,57.895613222378536],[-124.74194656882025,57.89579091888823],[-124.7420039197022,57.89596867519281],[-124.74207189173742,57.89614428862355],[-124.74215892161982,57.896317838862494],[-124.74226930284918,57.89648712320339],[-124.74239452412522,57.89665430441623],[-124.7425197465138,57.896821485540286],[-124.74263224002061,57.89699078958764],[-124.74273833205334,57.897162276338754],[-124.74283384161006,57.89733478472383],[-124.74291029426958,57.89750935637307],[-124.74292964897033,57.89768787541633],[-124.74293416435407,57.897868497620365],[-124.74299792568904,57.898044071099115],[-124.74308496423554,57.89821762107448],[-124.74315716388972,57.89839327418088],[-124.74321878043817,57.89856994899995],[-124.74326137663296,57.89874756591781],[-124.7432870240455,57.89892726612023],[-124.74331056240683,57.899106946444704],[-124.74334890358348,57.89928564488083],[-124.74340845062258,57.899461178608824],[-124.7434848728245,57.89963687157406],[-124.74356766118845,57.89981150297401],[-124.74365421974895,57.8999996292936],[-124.74365602958694,57.900008619286204],[-124.7437239043195,57.900187596394204],[-124.74374748299144,57.900366155614485],[-124.74377524320556,57.90054587592431],[-124.74381784426362,57.90072349302829],[-124.74387099270878,57.90090120964046],[-124.74393898236737,57.90107682301626],[-124.7440238854235,57.90125147429029],[-124.74410246098813,57.90142606585962],[-124.744164086941,57.90160274079717],[-124.744227822919,57.9017794356308],[-124.74431276632204,57.90195296558412],[-124.74442739270293,57.90212228890689],[-124.74453565427498,57.90229267376349],[-124.74460368696252,57.902467165789204],[-124.74460399196491,57.90264774905972],[-124.74461066289943,57.9028272707577],[-124.74463421002113,57.9030069515754],[-124.74466412335603,57.903185570812965],[-124.74469399956395,57.903365311342625],[-124.74471965696597,57.90354501213043],[-124.74478554580706,57.903720605671886],[-124.74487404198486,57.903914358176884],[-124.74498593144014,57.904102723013075],[-124.74515461600059,57.904233298744785],[-124.74541764105315,57.904255965973725],[-124.74576363424137,57.904195292666216],[-124.74612250800543,57.90412801003569],[-124.74645893980497,57.90410089348744],[-124.746796995159,57.904088372413376],[-124.74712997233584,57.90410159993384],[-124.74746020557005,57.90413386832521],[-124.74779010349519,57.90417622730585],[-124.74811778064853,57.904221929443494],[-124.74844768008604,57.90426428679922],[-124.74877746839563,57.90431000714338],[-124.74910733206755,57.90435348413701],[-124.7494356086955,57.90438124275178],[-124.74975394829596,57.904327029150416],[-124.75002551731635,57.90421965978813],[-124.75029501245129,57.904111148819965],[-124.75059725385907,57.904033228220605],[-124.75090978129045,57.90396325475034],[-124.7512223075594,57.90389328055179],[-124.75151225999274,57.90380402652508],[-124.75176727856258,57.90368640404311],[-124.75202440508892,57.90356880085601],[-124.75228563754227,57.90345460051953],[-124.75255508350305,57.90334720633244],[-124.75283485258042,57.90324663799832],[-124.75312076294726,57.90315173467984],[-124.75341081661581,57.9030591127858],[-124.75369265363909,57.90295968369424],[-124.75397237966075,57.90286023427879],[-124.75428677783391,57.902797000312844],[-124.7546113513292,57.90274507692452],[-124.75493596103381,57.90269203148035],[-124.75524628556573,57.902624270744916],[-124.75553832816982,57.90253502778872],[-124.75582222805669,57.90243673522538],[-124.75611837559978,57.902350894234466],[-124.75643280297086,57.90228653396851],[-124.7567452679914,57.90221766820004],[-124.75706172856867,57.902155568687235],[-124.75739006726813,57.90211713315108],[-124.75772639892187,57.90209223073395],[-124.75805677183584,57.90205605577045],[-124.75838721811776,57.90201763745305],[-124.7587176267332,57.9019803395851],[-124.75904977433927,57.901954273236356],[-124.75938939807344,57.90195743763823],[-124.75970615303044,57.90201422558128],[-124.76000943914448,57.90209556282708],[-124.76030621341543,57.90218244682006],[-124.76060302599265,57.902268208890725],[-124.7609108304805,57.90234061321965],[-124.76122733253774,57.90240524645059],[-124.76154609280816,57.902465413474424],[-124.76187144087831,57.90251778969105],[-124.76219501235202,57.902560054082066],[-124.76253682507486,57.90256098752809],[-124.7628592756507,57.902509024450396],[-124.76316551285467,57.902436721003426],[-124.76346989734577,57.902356548382535],[-124.76377424369849,57.90227749634229],[-124.76408473305342,57.902204108694555],[-124.76440310676743,57.902147617664525],[-124.76473151152213,57.90210692149045],[-124.76506206184261,57.90206512280069],[-124.76538450468183,57.90201315363604],[-124.76570505786339,57.90195443652237],[-124.7660072868047,57.901875359860306],[-124.76628915520472,57.90177366169731],[-124.76656076888226,57.90166289509903],[-124.76683245445967,57.90154988542016],[-124.76711017279409,57.901445903946566],[-124.76739784904488,57.90135995984483],[-124.76770551658952,57.90130784842225],[-124.7680434296268,57.90129863726729],[-124.76839122900665,57.901309705659244],[-124.76873281036836,57.90131735082138],[-124.76906987954024,57.901333926270745],[-124.76940476622822,57.90135272391418],[-124.76974212931377,57.90136032750124],[-124.77007982240848,57.90135783880048],[-124.77041736888864,57.901359834325255],[-124.7707547688749,57.90136631407679],[-124.77108987642747,57.90137837986015],[-124.77142687395921,57.90139719188652],[-124.77175699446744,57.90143276375583],[-124.7720847865989,57.9014750429836],[-124.7724126526333,57.90151507886402],[-124.77274266538748,57.90155401210818],[-124.7730727519517,57.90159070199328],[-124.7734050217202,57.90162516794841],[-124.77373289046724,57.90166520058493],[-124.77405835817956,57.901714183171194],[-124.77438615534808,57.90175645674709],[-124.77471395325308,57.90179872951789],[-124.77503062047725,57.901858844819806],[-124.77534274130595,57.901929012026024],[-124.77565933765726,57.90199136838621],[-124.77598022696938,57.90205152023078],[-124.77630555507744,57.90210498243634],[-124.7766337592128,57.90213491649455],[-124.77696785945143,57.902113309926726],[-124.77730646977196,57.902082771072365],[-124.77763496593485,57.90210373247685],[-124.77796058819305,57.90214822045575],[-124.77828591995069,57.902201677829176],[-124.77860910674246,57.90225623633713],[-124.77893680457626,57.9023018625577],[-124.77927323222723,57.902338595130196],[-124.7796181712667,57.902373161632674],[-124.77995743690497,57.902387486327534],[-124.78027484324122,57.9023601104763],[-124.78056853416012,57.90228316600236],[-124.78084432845084,57.902172408850355],[-124.78110786379987,57.90204920127646],[-124.78134622900498,57.90192127645245],[-124.7815370189572,57.90176375417643],[-124.78178534732078,57.90165386549124],[-124.78209132341921,57.901588246236855],[-124.78241373864373,57.90153623587049],[-124.78274644630005,57.90149217005477],[-124.78308122636,57.901449243960656],[-124.78340978608459,57.9014028953904],[-124.78374441961212,57.90136445272923],[-124.7840831626337,57.901329411573],[-124.78441164762702,57.90128530308506],[-124.78471547049614,57.90122077984535],[-124.7849887732836,57.901121207723406],[-124.78523148306667,57.900988829465966],[-124.78543043632342,57.90083922765271],[-124.78558741700039,57.90068251318916],[-124.78570882609694,57.90051650138506],[-124.78581357611515,57.90034360799175],[-124.78591625197238,57.90016957404193],[-124.78602282003084,57.900005669963036],[-124.78615785782317,57.89980949887689],[-124.78623521845405,57.89963523403991],[-124.78628948415002,57.89945739388924],[-124.78634374933307,57.89927955374926],[-124.78646096809112,57.899112381778984],[-124.78663488406818,57.89895357760138],[-124.78667834730376,57.898783490218904],[-124.78662296272594,57.898603529348996],[-124.78659081691909,57.898422658652045],[-124.78657761869445,57.89824308224524],[-124.78657074837616,57.898063563534876],[-124.78656809662358,57.897884083300426],[-124.78656759029404,57.89770350105021],[-124.78659865010383,57.897525449692246],[-124.78666553020601,57.897348846372466],[-124.78674921105906,57.897174639340896],[-124.78685598389968,57.89700400748509],[-124.78698370310815,57.89683805280249],[-124.78712818622958,57.896675615535884],[-124.7872873239136,57.896516676418834],[-124.78745693381856,57.8963600757134],[-124.78763479831527,57.8962091579814],[-124.78786481221579,57.89607666037166],[-124.78809897056016,57.895946443315076],[-124.78833516421278,57.89581848759558],[-124.788581757517,57.895695112497265],[-124.78884693433386,57.895584243583166],[-124.78913684171921,57.8954915446239],[-124.78944100648363,57.895414677036335],[-124.78976339472167,57.895361527941965],[-124.79009775173967,57.89532979717051],[-124.79043338837555,57.89532387390494],[-124.79077066562157,57.89533254544508],[-124.79110565381185,57.89534680332723],[-124.7914427153569,57.895362200780156],[-124.79177977717774,57.895377597380154],[-124.79211694724485,57.89538962931896],[-124.79245418948778,57.895399417865065],[-124.79279150384635,57.89540696301786],[-124.79312688902559,57.89540888185015],[-124.7934647428543,57.895399606251786],[-124.79380070304244,57.89538358307017],[-124.79413662701457,57.895368680311094],[-124.79447265848046,57.89535041289486],[-124.79480686778864,57.8953231553793],[-124.79513507238593,57.89528574833785],[-124.79546956776132,57.89524951900017],[-124.79577182381787,57.89516589027044],[-124.79585527827342,57.89499728426191],[-124.79589058183086,57.89481702684623],[-124.7959090483439,57.894635495599154],[-124.79592533386457,57.89445618784922],[-124.79594165510524,57.89427575886141],[-124.79595583127232,57.89409643210166],[-124.79596578923928,57.89391706722879],[-124.79597367396246,57.89373656204752],[-124.79597730471204,57.89355714002342],[-124.79597671742236,57.89337767988792],[-124.79596769416925,57.89319814349618],[-124.79595230818205,57.89301967118706],[-124.7959306312982,57.89284002042273],[-124.79590259186027,57.892661433735285],[-124.79587247961177,57.892481706733896],[-124.79584022283262,57.89230308195162],[-124.79580796635965,57.89212445719452],[-124.79577785499261,57.891944730271575],[-124.79575192585841,57.891766162793175],[-124.79573025065291,57.891586512229246],[-124.79571275755858,57.8914080211137],[-124.7956974093915,57.89122842784002],[-124.79568627911422,57.89104887275164],[-124.79567725780475,57.89086933677279],[-124.79566612772979,57.89068978174932],[-124.79565714248257,57.89050912457113],[-124.79564386789846,57.89033067179991],[-124.79562852049936,57.89015107871828],[-124.79560895562417,57.88997144751225],[-124.79558513745181,57.889792899443655],[-124.79555502901391,57.8896131729036],[-124.7955206674183,57.88943452949459],[-124.79548205272252,57.88925696921293],[-124.79544136551493,57.88907826860899],[-124.79539856994255,57.88889954894415],[-124.79535788351764,57.88872084838073],[-124.7953235595603,57.88854108382325],[-124.79520861092767,57.88831011823042],[-124.79514679409172,57.88819852166343],[-124.7949830869708,57.88804113934233],[-124.7948109105404,57.88788480174465],[-124.7946557127429,57.88772525291189],[-124.79450691411182,57.887563518688935],[-124.79436022542608,57.8874018034245],[-124.7942177912356,57.88723900496506],[-124.79407746692544,57.88707622548286],[-124.79394354160151,57.88691126067322],[-124.7938202324622,57.886744148769225],[-124.79370968394153,57.886573787650114],[-124.7936033895795,57.88640234342922],[-124.79349495164467,57.88623200130154],[-124.79337804438306,57.886062703921404],[-124.79324619836433,57.885898878955004],[-124.79309312395895,57.885739347743026],[-124.79292725564098,57.885584186692384],[-124.79275077398998,57.88543117236022],[-124.79256789619906,57.885280342955724],[-124.7923808027968,57.88512947506532],[-124.79219367491622,57.884979728192796],[-124.7920086930291,57.88482887895833],[-124.79183007415143,57.88467696564685],[-124.7916813357015,57.88451410751794],[-124.79153249054743,57.88435461301972],[-124.79132181651457,57.88421586703479],[-124.79110263810027,57.88407928665147],[-124.7908791723018,57.88394491013253],[-124.79065359963502,57.8838105141007],[-124.79042588409347,57.883677219800525],[-124.79020242309728,57.8835428422013],[-124.78998114422181,57.88340624090266],[-124.78975346955554,57.88327182425312],[-124.78952372414535,57.88313626680388],[-124.78928761907432,57.883001772697476],[-124.78905151569026,57.88286727819102],[-124.78881119718844,57.88273274491321],[-124.7885729887989,57.88259823040959],[-124.78833478211158,57.882463715498375],[-124.78809868550587,57.88232921937638],[-124.78786680733056,57.8821947612555],[-124.78763707528644,57.88205920070071],[-124.78741581443933,57.881922595346786],[-124.78720088024342,57.8817860472776],[-124.78699230875854,57.88164843527176],[-124.78679431659823,57.881509797794685],[-124.78660686752099,57.88137125614572],[-124.78630367928336,57.88122492940413],[-124.78638406095591,57.88108658631932],[-124.78642674563699,57.88094004843316],[-124.7865396542028,57.880773962366284],[-124.78669813664706,57.88056791480927],[-124.78688843468417,57.880421600851484],[-124.78709752499093,57.88028106581204],[-124.78732119093964,57.88014627118165],[-124.78755321606131,57.88001379551708],[-124.78778313130802,57.87988130026431],[-124.78800890066198,57.87974652373546],[-124.78813201495302,57.879590623762965],[-124.78804899218066,57.87941826624884],[-124.78795546523384,57.87924469146899],[-124.78785557845744,57.87907218030209],[-124.7877535844092,57.87889964988851],[-124.78765580765062,57.878727157835186],[-124.7875579956781,57.87855578698929],[-124.78745386012147,57.8783843584809],[-124.78734122068721,57.87821509558294],[-124.78720306787727,57.87805232957814],[-124.78706284425547,57.877888422996335],[-124.78693748708373,57.87772128705853],[-124.78682485195438,57.87755202383901],[-124.78676110163421,57.87737086885695],[-124.78655655557003,57.87724002271144],[-124.78626885574968,57.8771375789056],[-124.78602404221367,57.877013094157356],[-124.7857705087105,57.87689750201095],[-124.78546290059857,57.87682403579645],[-124.78514010306729,57.87676388912396],[-124.78482900493925,57.87666795804934],[-124.78454109700363,57.87657223804328],[-124.78440231069432,57.8764296518243],[-124.78439974320453,57.87624793306454],[-124.78440378943095,57.87605730214484],[-124.78432289953152,57.87588496218851],[-124.78420817364132,57.87571567781773],[-124.78408498058215,57.87554743758089],[-124.78396604081382,57.87537811453943],[-124.78387036231193,57.875206760836214],[-124.78379165708701,57.875032197484025],[-124.78372352860627,57.8748566092036],[-124.78365754493205,57.87467991894399],[-124.78359788569374,57.87450328648777],[-124.78353822701516,57.87432665403692],[-124.78347649720433,57.874148881078995],[-124.78341047970046,57.87397331206751],[-124.78334660694215,57.873796641084915],[-124.78328062689388,57.8736199508308],[-124.7832125033511,57.87344436254352],[-124.78313380485936,57.87326979911828],[-124.78304663941913,57.873096279812415],[-124.78295736693211,57.87292274120233],[-124.78286387958723,57.87274916400421],[-124.78276399711879,57.87257777140895],[-124.7826577558466,57.87240744216078],[-124.78254086771848,57.872240380154835],[-124.78239647042615,57.87207643106652],[-124.78223074262478,57.87192013763214],[-124.7820437207464,57.87177037852889],[-124.78180124522073,57.87164029979623],[-124.78160132586181,57.87149827300839],[-124.78148019343793,57.87133229286618],[-124.78135913465644,57.871164070165136],[-124.7812423650205,57.870993643516854],[-124.7811277041731,57.870823236102964],[-124.78101733240148,57.87065062476206],[-124.78091542879038,57.87047696936445],[-124.78081984922622,57.8703033718556],[-124.78073059362116,57.87012983224914],[-124.78065394862884,57.869957529738436],[-124.78058577133994,57.869784183240014],[-124.7805850399111,57.869611454854486],[-124.78069397910451,57.8694374883941],[-124.78081556315666,57.86926363774802],[-124.78088470931968,57.86908145560867],[-124.7808713307872,57.86890861148331],[-124.7810749278207,57.86874111997875],[-124.78134945901,57.868661760208],[-124.78170295357816,57.86861789152604],[-124.78200491766631,57.868537660047274],[-124.78229870386566,57.86844950208658],[-124.78258227695034,57.86835115594547],[-124.78284927776578,57.8682436850885],[-124.78311017170411,57.86812942846802],[-124.7833669575817,57.86801176910016],[-124.78362163428582,57.86789408998333],[-124.78387423804503,57.86777526989459],[-124.7841248050576,57.86765418761078],[-124.7843691201999,57.86753080463306],[-124.7846030769657,57.867401718787754],[-124.78483081806387,57.86726921109837],[-124.78505648620553,57.86713556255755],[-124.78528008139224,57.86700077317638],[-124.78549742476118,57.866863683255495],[-124.7857147665479,57.866726592998916],[-124.78594453485708,57.86659634519823],[-124.78618887331479,57.86647183777869],[-124.78645385142387,57.86636097696643],[-124.78673325521983,57.866260341276096],[-124.78701269363683,57.86615858377509],[-124.78728177373398,57.86605112347962],[-124.78754474649894,57.865936877630936],[-124.78780778984893,57.865820388807556],[-124.78804997358203,57.86569698010227],[-124.7882254391507,57.86555053208489],[-124.78831961536845,57.86537530451028],[-124.78855143778182,57.865246192815],[-124.78880822306319,57.86512740206095],[-124.78905668524028,57.865005170400046],[-124.78932164458972,57.864894304043396],[-124.78961531317266,57.86480837272552],[-124.78992137260045,57.86473040440752],[-124.79021714592771,57.86464449094333],[-124.79050059766983,57.86454837077831],[-124.790759407423,57.86443183796856],[-124.79099539441572,57.86430388168172],[-124.7912106300428,57.864165642424176],[-124.79141547123123,57.864022822186335],[-124.79161613214426,57.86387884213958],[-124.79181682749207,57.86373374057865],[-124.79201541396121,57.86358861960198],[-124.79220774884094,57.86344119849124],[-124.79241051094314,57.86329723646349],[-124.79263274048641,57.86313774901838],[-124.79286464215447,57.863005266407406],[-124.79309797760463,57.863025328350034],[-124.7933352162167,57.86318674163565],[-124.79357992813314,57.863312332403595],[-124.79387672558289,57.8633912894807],[-124.79419731513381,57.8634513950397],[-124.79451797748435,57.863509257363404],[-124.79483649760869,57.863568221061314],[-124.79514840976536,57.863636096614734],[-124.79545153507775,57.86371510745945],[-124.79573930075517,57.863813045069776],[-124.79603371257784,57.86390094817277],[-124.79635266839578,57.86394645345414],[-124.79668527220497,57.8639606777733],[-124.79702884281507,57.86396154172309],[-124.7973680913175,57.86396573039011],[-124.79770498198222,57.863977747790685],[-124.79803976550404,57.86398974529925],[-124.79837879973032,57.86400065879828],[-124.79871783415305,57.86401157143339],[-124.79904936893087,57.86399325500058],[-124.79936933156766,57.86394118658132],[-124.79961128552108,57.863889535129275],[-124.79968347154814,57.86387336306487],[-124.79999968202051,57.86380667905458],[-124.80041572227553,57.863716220228554],[-124.80072982279205,57.86364951549235],[-124.80105385208554,57.86360196597353],[-124.80138363162422,57.86357241238945],[-124.80171758964083,57.86354401718578],[-124.8020557261568,57.863516780331025],[-124.80239168354399,57.863491766118244],[-124.80272953395345,57.863473497435386],[-124.80306720586675,57.86346083407263],[-124.80340459256392,57.8634571397379],[-124.80373958695488,57.86346239548461],[-124.80407001073749,57.863478824859094],[-124.8044022929839,57.86350312100309],[-124.80473221923432,57.86353524603717],[-124.80505986083737,57.86357295750739],[-124.80538946817806,57.86361517204013],[-124.80571686224944,57.863660730550265],[-124.80604636445885,57.863706307169004],[-124.80637376011693,57.863751864066884],[-124.80670333496998,57.86379519658939],[-124.8070330171293,57.86383516458633],[-124.80736494936902,57.863870665710756],[-124.8076971307084,57.86389831734752],[-124.8080317037856,57.86391701713738],[-124.8083707402489,57.863927905174805],[-124.8087098833067,57.863935428635685],[-124.8090469191392,57.86394293236742],[-124.80938602702129,57.86395157534264],[-124.80972070771826,57.863966907172994],[-124.81005089055044,57.86399117036814],[-124.8103782935276,57.86403671742546],[-124.81068770530385,57.86411799259629],[-124.81094551479381,57.864231330949224],[-124.8111496501979,57.86437559272538],[-124.81132796760375,57.86453644685335],[-124.81151278566252,57.86469175105],[-124.81173853050848,57.864819381655366],[-124.81201387930874,57.86491156504431],[-124.81231072799417,57.86499048112714],[-124.8126183978585,57.86506052067598],[-124.81293892549051,57.86512394489713],[-124.81326384572587,57.86518179974511],[-124.81359098036133,57.865236308874636],[-124.8139202586946,57.8652897147501],[-124.81424107289197,57.865344165924576],[-124.8145730958088,57.865377406639745],[-124.81491228843902,57.865383793061376],[-124.81524997337766,57.865371098755276],[-124.81556177765829,57.865309946331095],[-124.81589173702892,57.86527475053171],[-124.81621179299154,57.86521927782032],[-124.81653181277693,57.86516492558327],[-124.81686384217713,57.865130867365565],[-124.81719776711878,57.86510355450325],[-124.81752779356192,57.865066112171846],[-124.81784176943445,57.865002730672],[-124.81811704035877,57.86489638557482],[-124.81841461181826,57.86481827683032],[-124.81874877904075,57.86478311139629],[-124.81908642214228,57.86477152860273],[-124.81941858487936,57.86480027224198],[-124.81975064270843,57.86483237877739],[-124.8200883562,57.8648185509577],[-124.82040731371333,57.86486511985676],[-124.8207280985617,57.86492067660831],[-124.82105777034894,57.86496173114139],[-124.82138758321392,57.86499829989074],[-124.82171739671934,57.86503486782396],[-124.82205167121634,57.86506362356156],[-124.8223859812839,57.8650912572177],[-124.82271361903791,57.865130046516676],[-124.82303012458779,57.86518780292214],[-124.82333774593013,57.86526006018362],[-124.82364305086944,57.86533902556439],[-124.82394403714537,57.865421316723655],[-124.82424720220239,57.86550138334596],[-124.8245460836355,57.86558365453292],[-124.82484489639938,57.86566816754308],[-124.82514813531544,57.86574598964508],[-124.8254623674554,57.86580932791195],[-124.82578973494799,57.8658570796185],[-124.82611060608359,57.86591038096093],[-124.82641381462396,57.86598932144218],[-124.82668664627178,57.86609603216726],[-124.82693159305457,57.86621819821842],[-124.82717432916623,57.86634370899203],[-124.82741281696147,57.86647030343661],[-124.8276490941269,57.866600242637006],[-124.82787687302195,57.86673234966098],[-124.82809822623867,57.86686776436233],[-124.82831104622426,57.867006468214726],[-124.82850890565155,57.867151769330576],[-124.82869823174991,57.86730035970019],[-124.82887898959892,57.86745336060841],[-124.82905764134087,57.86760634274731],[-124.82923207936551,57.867759287580114],[-124.82940223391323,57.86791443761888],[-124.82957024741202,57.8680706901728],[-124.82973404708339,57.86822690546536],[-124.82989781327412,57.86838424182958],[-124.8300594732046,57.86854155948567],[-124.83021045697653,57.86870326931806],[-124.83035294180507,57.86886714739477],[-124.83053174552612,57.86901564277953],[-124.83080022137638,57.869127914598124],[-124.83109458252507,57.869221346834955],[-124.83123520908926,57.869377356790025],[-124.8313351992471,57.86955207615332],[-124.8314394753136,57.869724589992785],[-124.8315734689537,57.86989063539397],[-124.83172449942211,57.87005122248151],[-124.83190535233256,57.87020197720818],[-124.83210749265345,57.870346189203204],[-124.83232031229353,57.8704860083887],[-124.83254595380619,57.870620331952615],[-124.83276738142106,57.870754618174296],[-124.8329652429846,57.87090103447356],[-124.8331083505672,57.87097743381753],[-124.83320785567385,57.871236264471],[-124.83335457871037,57.8714001767234],[-124.8334082472115,57.87157336707358],[-124.83340483165718,57.87175166477564],[-124.83336969455516,57.871933049079445],[-124.83331354829627,57.872112006097254],[-124.8332385351753,57.8722874330292],[-124.83313836614857,57.872458153138034],[-124.83302762216955,57.87262990203043],[-124.83293163225899,57.87280178026779],[-124.83286715537565,57.87297729954715],[-124.83282790303362,57.87315528319717],[-124.83280122819363,57.873335620310066],[-124.83278298473131,57.87351603140717],[-124.83276056001664,57.873695284301505],[-124.83272970337511,57.87387446326605],[-124.8326757286424,57.87405119635011],[-124.83251884638626,57.8742146895074],[-124.83223971464358,57.874308694605546],[-124.83191911805565,57.874379903966286],[-124.83168759690557,57.87450236487086],[-124.83149954126857,57.874651002976165],[-124.8313322507164,57.87480991726409],[-124.83117957544415,57.87497344599386],[-124.8310500520143,57.87513829951502],[-124.83095193867457,57.87531015825079],[-124.83086007885652,57.875484315016415],[-124.830759855721,57.87565615515224],[-124.83066381292046,57.875829153545155],[-124.83056569601771,57.87600101211818],[-124.83046128888162,57.876171693814605],[-124.83036186325765,57.87631774484777],[-124.83014997741547,57.87648636015942],[-124.82997019874571,57.8766395555608],[-124.82979249185287,57.87679389053778],[-124.82962525428648,57.87695056051367],[-124.82949157075336,57.87711313325845],[-124.82939133703661,57.877284972651466],[-124.82931626047042,57.877461519563184],[-124.82926222970646,57.87763937317289],[-124.82922717175812,57.87781739370287],[-124.8292320987309,57.87799800914073],[-124.82927082616708,57.87817667881224],[-124.82934121149911,57.878354505402676],[-124.82951512441426,57.87859380710402],[-124.82971608172598,57.87864155852848],[-124.82998255042956,57.878752693308776],[-124.83028590534673,57.878830504746524],[-124.83062041335042,57.878855875582595],[-124.83095067057144,57.87888232980321],[-124.8312518507035,57.87896236305331],[-124.83154425124384,57.879053534204076],[-124.83184318661857,57.87913803266594],[-124.8321443011279,57.87922030644027],[-124.83245430193729,57.87928807711794],[-124.8327841123097,57.87932910320129],[-124.83311634442184,57.87936005559709],[-124.83344187018153,57.8794032856097],[-124.8337581995596,57.879471108699],[-124.83404214240382,57.87956332177758],[-124.83427634692062,57.87969547501163],[-124.83452354978041,57.879816525994556],[-124.83478572033941,57.87993097815845],[-124.83506524444239,57.880029879761224],[-124.83535984016218,57.88011881855668],[-124.83563065659017,57.8802266153046],[-124.83586473211716,57.88036325088841],[-124.83617167634668,57.880393974405244],[-124.83650675666823,57.88040139026838],[-124.83680367487139,57.88048361674861],[-124.83708949865971,57.88058369069684],[-124.83735818044282,57.88069258682516],[-124.83759243824585,57.88082361311337],[-124.8378117663113,57.880960116465964],[-124.8380247017428,57.88109880678828],[-124.83824185542966,57.88123753359511],[-124.83845901071685,57.88137626006762],[-124.83862933401463,57.881529157944975],[-124.83874010555233,57.88169835957753],[-124.83884234081336,57.88187085137368],[-124.83898283924367,57.882033582766354],[-124.83914456117054,57.882192012856784],[-124.83931907318288,57.88234606802345],[-124.8395106613382,57.88249354244506],[-124.83972357714129,57.88263335153608],[-124.8399407804935,57.88277095452326],[-124.84015369946282,57.882910762966155],[-124.84038372936621,57.883042869164406],[-124.84064172330433,57.883157273436574],[-124.84098616305955,57.8832040142526],[-124.84121747477678,57.88329463211972],[-124.84120739005166,57.88348521105847],[-124.84121030127979,57.88366468747992],[-124.84129350775677,57.88383925507859],[-124.84140426355474,57.88400957616616],[-124.8415745072094,57.884165834498184],[-124.8417618619259,57.88431439052606],[-124.84176283983952,57.88448824239217],[-124.84170450270899,57.88467055072378],[-124.84169476511505,57.88484991726627],[-124.84171033011643,57.88502950401678],[-124.8416920891802,57.885211039775655],[-124.84159413620085,57.885378423053105],[-124.84140388773893,57.885529301008795],[-124.84128062951581,57.885696463876656],[-124.84120344881146,57.88587412193751],[-124.84124237924178,57.88604830448638],[-124.84135314130785,57.88621862600469],[-124.84148295109901,57.88638687008034],[-124.84161497421532,57.88655176859112],[-124.84176611436723,57.88671234703263],[-124.84194487538495,57.88686643616875],[-124.84220936423397,57.88697640779456],[-124.84241204791614,57.88710715134706],[-124.84242336542066,57.8872878230324],[-124.84246856007434,57.88746430303336],[-124.84257507996792,57.88763570838591],[-124.84269224782791,57.88780384152321],[-124.84282213801626,57.88796984201998],[-124.84291172215212,57.888143343098655],[-124.84298651145085,57.88831783713035],[-124.84308456664566,57.8884902901904],[-124.84318476596307,57.88866164025829],[-124.8432786054193,57.888834056587584],[-124.84335550657224,57.88900856885944],[-124.84340274754028,57.889187309730346],[-124.84343097529111,57.88936700700935],[-124.84346552974523,57.88954675927616],[-124.84352767147341,57.889721143335755],[-124.84362559500123,57.889898081354026],[-124.84376175416064,57.890066378799396],[-124.84394724467832,57.89020818667848],[-124.84426582707245,57.89027488258632],[-124.84454548732332,57.890372644057535],[-124.84476714278048,57.8905046704861],[-124.84498012342446,57.89064447232483],[-124.84518456691019,57.89078756450648],[-124.8453889431525,57.890932898951974],[-124.84559549865703,57.891076008834744],[-124.84580845122396,57.89121693070985],[-124.84603426514995,57.89135123426787],[-124.8463202991207,57.89144792567891],[-124.84664380130093,57.891492226946895],[-124.84697960082215,57.89147943350333],[-124.84731598392939,57.89144757746252],[-124.84764427411714,57.89140443476281],[-124.84797249490755,57.89136353381456],[-124.84830625253909,57.8913484762192],[-124.84864544478559,57.891362625772814],[-124.84897800190592,57.89138681128253],[-124.84931246267722,57.89141774186922],[-124.84964726672374,57.891437458816306],[-124.84998220817133,57.891452689801476],[-124.8503280027717,57.89145791947974],[-124.8506782550054,57.89145533570948],[-124.85100656217243,57.89148060102336],[-124.85128465331826,57.89156151105198],[-124.85153413195793,57.89168142883697],[-124.85176401593625,57.8918213655307],[-124.85198539741457,57.89196347167007],[-124.85219412681141,57.89210546837159],[-124.85234325962321,57.89226489626117],[-124.8524307547031,57.89243949480565],[-124.85254583836878,57.892608723208056],[-124.85268429295026,57.89277254504597],[-124.85285254824447,57.89292765091055],[-124.85304631813042,57.89307624691335],[-124.85326152143223,57.893213811478255],[-124.8534935985415,57.89335152100626],[-124.8537449660543,57.89347930201559],[-124.85401889391653,57.89355904890255],[-124.85435780829953,57.89351373775296],[-124.8546955957748,57.89350542810484],[-124.8550330078473,57.89350945172167],[-124.85537038588801,57.893514595767584],[-124.85570786630255,57.893516375106586],[-124.85604544900049,57.89351478973803],[-124.85638129744213,57.893500851272414],[-124.85671724782634,57.893483548107234],[-124.85705472802609,57.89348532403247],[-124.85738979282523,57.89349717256252],[-124.85772686477435,57.893512402197224],[-124.85806393699626,57.89352763097887],[-124.85839883242107,57.89354508339338],[-124.85873121106668,57.89357597230541],[-124.85906134523536,57.893611327455446],[-124.85939144604,57.893647803073485],[-124.85972151351002,57.89368539915968],[-124.86005158163948,57.89372299442915],[-124.86038161647348,57.893761710167375],[-124.86070947503828,57.89380264961338],[-124.86103730038094,57.893844709539536],[-124.86136505860497,57.89388901123216],[-124.86169070853477,57.893933294088555],[-124.86201629141814,57.89397981872295],[-124.86234187510648,57.89402634256335],[-124.86266739182567,57.89407510818283],[-124.86299294326577,57.894122751722264],[-124.86331846166236,57.89417151575501],[-124.86364187181962,57.89422026099377],[-124.86396739190037,57.89426902344492],[-124.86429073605818,57.89432000968673],[-124.86461408109207,57.89437099514605],[-124.8649373931823,57.89442310111031],[-124.86525859706983,57.89447518831731],[-124.86558194474804,57.89452617143458],[-124.86590743619719,57.89457605044614],[-124.86623085318364,57.89462478941721],[-124.8665586243136,57.89466907836163],[-124.86688642997692,57.89471224521296],[-124.86721430389655,57.89475316868246],[-124.86754438887327,57.89479074541998],[-124.8678744745091,57.89482832134043],[-124.86820459452683,57.894864775155455],[-124.86853933798484,57.89488780853322],[-124.8688766628158,57.89489516094237],[-124.86921412254948,57.89489802734085],[-124.86955164969994,57.89489865030593],[-124.86988676468343,57.8949093461167],[-124.87022432560914,57.894908846087475],[-124.87056202113621,57.894903860045034],[-124.87089958200373,57.894903358303985],[-124.8712371764947,57.89490173441766],[-124.87157487182374,57.894896745806584],[-124.87190878577617,57.89487714383385],[-124.8722429009955,57.89485081328561],[-124.87257299906094,57.894817718442944],[-124.87289526456351,57.89476436815043],[-124.87321759629901,57.89470877450135],[-124.87354183481263,57.894659925658],[-124.87387383785007,57.89463357317964],[-124.87420972320535,57.894618468440356],[-124.87454199367923,57.894583143977734],[-124.87487412943423,57.89455230384753],[-124.87520813915339,57.894529329738035],[-124.87554218196864,57.8945052335011],[-124.87586839083693,57.89446088197545],[-124.8761946324207,57.894415408362484],[-124.87652298231347,57.89436995174895],[-124.87684915538863,57.89432671911706],[-124.87716528407967,57.89426657740188],[-124.87733353968245,57.89414238012607],[-124.87756312465712,57.89401309183887],[-124.87765795927956,57.89380415733959],[-124.87776970126613,57.89366490277256],[-124.87791659421099,57.89354949738473],[-124.87801996817929,57.893478587982614],[-124.8781697741556,57.89340694817373],[-124.87833186618641,57.89334774899412],[-124.87855150316206,57.89326884606072],[-124.87884502672004,57.893258980803125],[-124.87897295272678,57.89342605047428],[-124.87921810819743,57.89348194981283],[-124.87953303003813,57.89353282798339],[-124.87987342176544,57.89350765286214],[-124.88021093661952,57.89350824880728],[-124.88054584212492,57.893525645518466],[-124.88087368720926,57.893567656593795],[-124.88119042104942,57.89362864019093],[-124.88148740786374,57.89371525326581],[-124.88173261225529,57.89384068574226],[-124.88163283911689,57.89400359706742],[-124.88148017127384,57.89417167186171],[-124.8813864568217,57.89434360654371],[-124.88136636030478,57.894522889154665],[-124.88136728811818,57.894704591579426],[-124.8813514095741,57.89488390969479],[-124.88132287604776,57.8950631215189],[-124.88130488799227,57.89524242197456],[-124.8813248979522,57.89542092014306],[-124.88140195564408,57.89559653289558],[-124.8814388396801,57.895775172865534],[-124.88146517812395,57.895953724267336],[-124.88149781108532,57.89613345014388],[-124.88156221579248,57.8963089566261],[-124.88158865517163,57.89648414422018],[-124.88154324773565,57.89666321465674],[-124.88163942543049,57.89683450177255],[-124.88179717201712,57.896992847006395],[-124.88196128101355,57.89715012391593],[-124.8820299081533,57.89732566577758],[-124.88203512441731,57.897505161553354],[-124.88203401287389,57.897684604234506],[-124.88203501061565,57.89786406465827],[-124.8820423362845,57.89804357824323],[-124.88208977233828,57.89822230703145],[-124.88208233305637,57.89840169672083],[-124.88205805232889,57.89857982347631],[-124.88202319132759,57.898758983009735],[-124.88198411128236,57.89893810714726],[-124.88191559969555,57.89911361946141],[-124.88186613848933,57.89928704858697],[-124.88193051699373,57.8994636767622],[-124.88198642520473,57.89964135539632],[-124.88201273563702,57.899821028703315],[-124.88203466091302,57.900006273110904],[-124.88205695286754,57.900179183268136],[-124.88205158916286,57.90035971232758],[-124.88203989706928,57.90054018829296],[-124.88199247738197,57.90071587802946],[-124.88188612550188,57.900886586669394],[-124.88174826383603,57.90105254435253],[-124.88160417249082,57.90121508487461],[-124.8814432372952,57.90137636221979],[-124.88132860973748,57.90154139315717],[-124.88135495169435,57.901719945648374],[-124.88137278914131,57.90190066988874],[-124.88135690758683,57.90207998934255],[-124.88131119224572,57.90226915244514],[-124.88127612423006,57.90245504027414],[-124.88145605518291,57.90257768241498],[-124.88172749852296,57.902674174843014],[-124.88203724870696,57.902759772487386],[-124.88235979098378,57.90284099043882],[-124.88266311534227,57.90292989743451],[-124.8829558266272,57.90302095787794],[-124.88323986799182,57.903119796040386],[-124.88347248192258,57.90324512039353],[-124.88366428296993,57.903394777030485],[-124.88392670070286,57.90351137777168],[-124.88405274079875,57.90367282014376],[-124.88408324992423,57.903853650451666],[-124.88401919128131,57.90402135097369],[-124.88395031405061,57.904209199600075],[-124.88386067215089,57.90438565838659],[-124.88378583038222,57.90456111961376],[-124.88373848031723,57.90473456809728],[-124.88381583448093,57.904901210715224],[-124.88399468778628,57.90506085278656],[-124.88410998526966,57.90522893480069],[-124.88412780435561,57.905410780635755],[-124.88404890863528,57.90558060031897],[-124.883846169677,57.90572807207743],[-124.88366650324473,57.90588022329314],[-124.88352451145295,57.90604278439172],[-124.88338878116554,57.906207641042066],[-124.88324467716495,57.906370184209685],[-124.8830461836535,57.90651656894582],[-124.88290224346632,57.906673505264045],[-124.88285468688807,57.906853681652635],[-124.88279460418835,57.90702926664768],[-124.8825727975329,57.90717882002508],[-124.88246893955075,57.90733609229532],[-124.88251662250025,57.9075069735071],[-124.88260221650528,57.907680415960954],[-124.88270887655912,57.90785515668845],[-124.8828133944385,57.908031000972954],[-124.88290103428632,57.908206703642435],[-124.8829569600732,57.908384383483224],[-124.88298961094321,57.90856411131408],[-124.88297795409459,57.908743467592124],[-124.88291358252616,57.90892126021454],[-124.88296116961719,57.909095505476074],[-124.88306582529265,57.909266864552606],[-124.8831810649372,57.90943719072519],[-124.88327510621686,57.90961070386041],[-124.88329295662915,57.90979142932633],[-124.88334262326775,57.90996681360916],[-124.88347705585853,57.910130570985814],[-124.88363486593147,57.91028891622995],[-124.8838011173414,57.91044733203974],[-124.88395678682858,57.91060678058414],[-124.88408904783203,57.91077276239574],[-124.88419371331092,57.91094412088538],[-124.88427506953,57.911118648846],[-124.8843183458354,57.91129622260905],[-124.88432990513583,57.911475773920955],[-124.88430560817586,57.91172568517305],[-124.88447462876537,57.91179103143707],[-124.88478439377911,57.91187886612955],[-124.88504694063828,57.91199322306723],[-124.88524954242257,57.912136239213766],[-124.88543925254062,57.91228699833388],[-124.88564825417836,57.912427824257506],[-124.8858936940503,57.91254988756811],[-124.88615839229597,57.91266313872977],[-124.88642098200141,57.912776371738815],[-124.88667282345457,57.912896243949675],[-124.88692466651275,57.913016115699534],[-124.8871721581718,57.913140436991036],[-124.88740474766577,57.91326911972815],[-124.88761593860973,57.91340771770307],[-124.88781420480278,57.913555180179145],[-124.88799331512095,57.91370809042555],[-124.88815541274948,57.91386534481904],[-124.88828556038914,57.91403242673085],[-124.88853708485321,57.9141635087372],[-124.88859512320795,57.914342326236294],[-124.88875681860866,57.9145848176836],[-124.88888903478986,57.91461059558724],[-124.88925123416344,57.914639412764316],[-124.88959249719068,57.91466244647427],[-124.88992993726559,57.914671988334135],[-124.8902676421746,57.91467255880055],[-124.89060353450714,57.91466301898014],[-124.8909399226113,57.91463665855056],[-124.89127594666378,57.91462263176536],[-124.8916137502781,57.9146198348669],[-124.89195171900525,57.91461143052344],[-124.89228704898052,57.91462094886012],[-124.89261977369397,57.91464726857936],[-124.89295230085601,57.91468031537661],[-124.8932848286023,57.91471336134491],[-124.89361053144007,57.91476317368011],[-124.89391440718883,57.914837479014565],[-124.89415336102107,57.91496620276055],[-124.89444840292047,57.91505389264694],[-124.8947606578535,57.91513050876333],[-124.8950643082592,57.915212660737176],[-124.8953335698046,57.915315837114505],[-124.8955598368785,57.91544557472719],[-124.89576239846618,57.91559193935798],[-124.89595417970716,57.91574606549787],[-124.89606705813452,57.91592757738334],[-124.89633537335592,57.91606327010465],[-124.89673851615942,57.916136148127045],[-124.89693409167384,57.91623310305875],[-124.89757688875382,57.916267585311076],[-124.89787168598038,57.916364238304354],[-124.89820222921577,57.91646567265616],[-124.8982365119013,57.9166644781812],[-124.89829222709308,57.9168522450428],[-124.89845441416723,57.91700836609728],[-124.89863783778861,57.91716017615871],[-124.89882983578727,57.91730757047631],[-124.89902394569302,57.917454981980505],[-124.89921591389083,57.91760349711011],[-124.89940577318539,57.91775199455165],[-124.89959777721427,57.917899387853716],[-124.89978978274792,57.9180467809017],[-124.89997964654566,57.91819527759427],[-124.90017162229535,57.918343791461695],[-124.90036148909986,57.918492287656136],[-124.9005535006529,57.91863967969498],[-124.90073908395422,57.918790383213974],[-124.90089700302873,57.918948709433955],[-124.90105917718975,57.919105948984665],[-124.9012384005446,57.91925772098173],[-124.9014218463721,57.91940952756704],[-124.90159246680238,57.91956683615458],[-124.90175662608793,57.919728577662106],[-124.90195521021118,57.91986817077908],[-124.90222858022388,57.92012166105517],[-124.90249873092404,57.920268572616344],[-124.90302856095767,57.92005310313041],[-124.90324922040108,57.92008744602927],[-124.90365098143118,57.920209641830006],[-124.90396417477959,57.920111275019835],[-124.90423109778364,57.920006918977606],[-124.9044980519697,57.91990144108509],[-124.90476422093425,57.91982287451611],[-124.90501631221308,57.919647734545656],[-124.90529589214286,57.91954348049437],[-124.90558968942548,57.91945840977913],[-124.90590783291576,57.919407186206776],[-124.90624639584034,57.91937968300371],[-124.90658469746566,57.91936114955608],[-124.90692510926948,57.91934263256527],[-124.90726509719542,57.91933869195622],[-124.90758053401721,57.919380534537595],[-124.90786028208123,57.91948825787907],[-124.90816633467543,57.91956254837187],[-124.90849232701385,57.919604475283144],[-124.90882491194044,57.91963748263277],[-124.90915964050613,57.919669385105685],[-124.90948998600216,57.91970685882897],[-124.90981770154917,57.919762255715185],[-124.91014096951714,57.91982546656739],[-124.91046469336598,57.91987297804162],[-124.91078559339837,57.919872237096676],[-124.9111024993594,57.91979070797719],[-124.91142268377455,57.91974173112533],[-124.91174712235538,57.91976457025179],[-124.91207717933078,57.919812129522334],[-124.91240489960536,57.919867520051284],[-124.91273275051608,57.919918424461144],[-124.91305862139649,57.91996482553218],[-124.91338231773167,57.92001345125384],[-124.91370809307051,57.92006321472903],[-124.91403182347126,57.92011071754847],[-124.91435763288139,57.92015935811107],[-124.91468334605477,57.920211361868986],[-124.91500906012887,57.920263364833524],[-124.91533711205687,57.92030753487609],[-124.91566561738443,57.92033600548978],[-124.91599931397747,57.92033086972838],[-124.9163378455232,57.92030446218714],[-124.91667403992105,57.92028588593832],[-124.91701215081265,57.92027405398024],[-124.91734993868796,57.92027343446986],[-124.91768740384916,57.920284027409615],[-124.91802272636967,57.92029572368591],[-124.91836012741973,57.920308557583624],[-124.91869749645983,57.92032251195805],[-124.91903275517704,57.92033644835496],[-124.91937009249665,57.92035152235791],[-124.91970746229683,57.920365474175824],[-124.92004480014717,57.92038054647107],[-124.92038005988083,57.920394479478816],[-124.920717462621,57.92040730740864],[-124.92105486559133,57.92042013448425],[-124.92139022253212,57.92043070095591],[-124.9217277223917,57.920440162332845],[-124.92206528670091,57.92044738019119],[-124.92240102972765,57.92044448813625],[-124.92273728662094,57.920423653922505],[-124.9230736073614,57.9204005761964],[-124.9234095745914,57.92038983227569],[-124.9237471066818,57.92039816720512],[-124.9240863003863,57.92042221697605],[-124.92441436435729,57.920466364677246],[-124.9247206179046,57.920535010556506],[-124.92501356798095,57.920625980219896],[-124.92529996337608,57.920724747505844],[-124.92558210703287,57.92082460147985],[-124.92585347494943,57.92093221912273],[-124.9261012754228,57.92105198376746],[-124.926321159165,57.92118834686893],[-124.92652818866341,57.921331335601835],[-124.92673729837507,57.92147546237037],[-124.92697455200474,57.92159514045044],[-124.92729882410062,57.92162466975979],[-124.9276404295607,57.92163863549571],[-124.92798206723901,57.92165147902137],[-124.92831692583069,57.92167996942936],[-124.92864056081251,57.92173192217417],[-124.9289531324223,57.921801730665486],[-124.92926132423142,57.92187711118193],[-124.92956088309475,57.921959151176914],[-124.92984957080398,57.922052319100644],[-124.93011670652722,57.92216101563002],[-124.93037732037203,57.92227638882057],[-124.93064225286105,57.9223884313864],[-124.9309244550596,57.92248715288538],[-124.93120451616544,57.92258697820254],[-124.93146951702964,57.922696776486454],[-124.93173442388019,57.92280993826702],[-124.93199725344657,57.92292196127875],[-124.93226436971601,57.92303177493883],[-124.93254223220829,57.92313494459977],[-124.93282661938075,57.9232314363817],[-124.93311749931925,57.92332237157889],[-124.93342136321756,57.92340219414429],[-124.93371013515782,57.923493111168206],[-124.93394288429164,57.92362395669463],[-124.93408599731158,57.92378885417946],[-124.93426550336618,57.92393609712288],[-124.93457750010786,57.92402719802298],[-124.93466391184182,57.9241815471981],[-124.93462445251714,57.924381996930954],[-124.93433890805046,57.924325877087114],[-124.93399960900959,57.924304095996206],[-124.9336619124041,57.92430027236104],[-124.93332578594237,57.924315527532755],[-124.93299148365449,57.92434089081139],[-124.93265513376518,57.92436399366599],[-124.93232284588855,57.92439273619369],[-124.93199439695348,57.92443496779817],[-124.93167404010057,57.92448960101761],[-124.9313576808823,57.924552116699765],[-124.93103716272664,57.92461235508995],[-124.93071680297204,57.92466698601835],[-124.93038834983831,57.92470921367639],[-124.93005986406175,57.92475256186564],[-124.92975987595598,57.92483315078694],[-124.92948457813236,57.924936369319276],[-124.92922786128007,57.92505431736312],[-124.92899612169687,57.92518480325112],[-124.92878523352655,57.925324429162224],[-124.92858684923351,57.92546976329214],[-124.9283988899538,57.92561966738434],[-124.92821722986154,57.92577074350953],[-124.92804602686482,57.925925268335796],[-124.92791879968055,57.9260924843572],[-124.92776016352109,57.92625047478631],[-124.92752009573806,57.92637640496762],[-124.92725514313582,57.926486432049344],[-124.92700048763993,57.92660551432773],[-124.92675209932595,57.926726889819946],[-124.92650370940855,57.926848264864525],[-124.92625739681603,57.92697077781165],[-124.92601312951842,57.92709555001374],[-124.9257772083454,57.92722375387493],[-124.92555587010288,57.927358804524964],[-124.92534492491886,57.92749954665077],[-124.92513608914176,57.92764030549064],[-124.92493348860047,57.92778447913891],[-124.92475180412794,57.92793555088282],[-124.92459103587622,57.9280935208113],[-124.92444913715119,57.92825612928219],[-124.92432399711555,57.92842335931819],[-124.92421564802956,57.9285940896266],[-124.92415780270355,57.92877083562177],[-124.92416533549024,57.92895035264388],[-124.92417286834888,57.92912986969937],[-124.92416984588341,57.92930930157632],[-124.92422177587756,57.929486933895],[-124.92433307378192,57.92965607261061],[-124.92445284919748,57.9298241580719],[-124.92456414913941,57.92999329665435],[-124.92467967233729,57.930162469242795],[-124.92481221393564,57.930327292643845],[-124.92496388525795,57.930487783834685],[-124.9251198122422,57.930647187590274],[-124.92528213814549,57.930804399575116],[-124.92542741578262,57.93096708193415],[-124.92553446908111,57.93113730720914],[-124.92562031529887,57.93131072627175],[-124.92570613026771,57.93148526665623],[-124.92581532955272,57.93165438747051],[-124.92594788138838,57.93181921000049],[-124.92605916193038,57.93198946903505],[-124.92612383605292,57.932164960494084],[-124.92615674594062,57.93234356083282],[-124.92617273402922,57.93252314645869],[-124.92617816591732,57.93270264706331],[-124.92616456430262,57.93288311595208],[-124.92614047016124,57.933061257121985],[-124.92610789855829,57.93324045162183],[-124.9260542455685,57.93341835467403],[-124.92600273542544,57.93359515340312],[-124.92598916468009,57.93377450109465],[-124.92600937525839,57.93395412103753],[-124.92604439751933,57.93413273875323],[-124.9260857541958,57.93431140752994],[-124.92613347740891,57.934489006012555],[-124.92618331245382,57.9346666215219],[-124.92623103657864,57.934844220035956],[-124.92627453835253,57.935021784547565],[-124.92631167427872,57.935200419402776],[-124.92633822142751,57.93538009059088],[-124.92634998881196,57.935559642752146],[-124.92633641901404,57.93573899084955],[-124.9262954322471,57.93591699651529],[-124.92623125104828,57.936093693743],[-124.92615235301243,57.93626802919231],[-124.92606923128365,57.936442330601864],[-124.92599033176484,57.93661666601917],[-124.92591562247546,57.93679215680368],[-124.9258409124886,57.93696764757883],[-124.92576201080854,57.937141982957336],[-124.92568099686724,57.93731630130254],[-124.92559998217465,57.93749061963038],[-124.92552107827974,57.937664954962315],[-124.92544425315782,57.93784042865521],[-124.92537587359338,57.93801597043046],[-124.92531379606766,57.93819268463037],[-124.92525382954678,57.938369415859675],[-124.92519175086373,57.93854613006845],[-124.9251317832053,57.93872286130869],[-124.92507181498308,57.93889959255486],[-124.92501395782504,57.93907634083617],[-124.92495398848503,57.93925307209509],[-124.92496325893897,57.93937203788522],[-124.9250050282613,57.93961015683389],[-124.92505486476345,57.939787773722486],[-124.9250983346363,57.93996646089754],[-124.92509742740515,57.940145911868],[-124.9250479511058,57.940324971219816],[-124.92507033655173,57.94050236685972],[-124.9252370244264,57.94065625051687],[-124.92546124315514,57.94079265189583],[-124.92570056612821,57.940917958478316],[-124.92595272133855,57.94103775994956],[-124.92620705396976,57.94115533525477],[-124.92646132413877,57.941275152804394],[-124.9267134841696,57.941394952881815],[-124.9269721411633,57.94150919670302],[-124.9272350552773,57.94162235266639],[-124.9274915396497,57.94173882122947],[-124.92772866766067,57.94186747138132],[-124.92794227971993,57.942006026546835],[-124.92813451951615,57.94215338246441],[-124.92832247325424,57.94230294689226],[-124.92853180240787,57.94244370994151],[-124.9287625390292,57.942574550148095],[-124.92900185239984,57.94270097239915],[-124.9292432792209,57.94282741119995],[-124.92947830824635,57.94295604142505],[-124.9296983323718,57.94309240209092],[-124.92989909591604,57.94323758073203],[-124.9300764069722,57.94339042218034],[-124.93023880863741,57.94354763023648],[-124.93038844458343,57.94370810054001],[-124.93052102707043,57.943874041974524],[-124.93061329301814,57.94404638961026],[-124.9306885687468,57.944221965784685],[-124.93074691784054,57.94439852780396],[-124.93076715686725,57.944578149035074],[-124.93077050048866,57.94475763479272],[-124.93078865976207,57.944936117787606],[-124.9308237149673,57.945114736313535],[-124.93086510644564,57.94529340567406],[-124.9309086103075,57.94547209199166],[-124.9309542584794,57.94564967390023],[-124.93099776317744,57.945828360255845],[-124.93103918816304,57.94600590833289],[-124.93107424555657,57.94618452699463],[-124.93110507920292,57.94636311181514],[-124.93112532099914,57.94654273336446],[-124.9311075459019,57.946722050158264],[-124.93106023354335,57.94690000855085],[-124.93101503281713,57.94707798389444],[-124.93100359321178,57.9472573515788],[-124.93101749870307,57.94743692251039],[-124.93103140432724,57.947616493474555],[-124.93101362827413,57.94779581045934],[-124.93096420198859,57.947973752085254],[-124.93089371762935,57.9481492816317],[-124.93081270376305,57.94832360511906],[-124.93072957698521,57.94849791165042],[-124.93065067377584,57.948672252042485],[-124.93056965765494,57.94884657547861],[-124.93048441640394,57.94902086501201],[-124.93040551095943,57.949195205355345],[-124.93034135832676,57.94937078566853],[-124.93028981456813,57.94954871039563],[-124.93022985332753,57.94972544598085],[-124.93016144256838,57.94990211378067],[-124.93011415365166,57.9500789510669],[-124.93009637205733,57.950258268396155],[-124.93009545651708,57.950438842719215],[-124.9301030220097,57.95061836350308],[-124.93011692444153,57.95079793516679],[-124.9301308589316,57.9509763854932],[-124.93014264931979,57.951155940273736],[-124.93015655213983,57.951335512035406],[-124.93017045509275,57.95151508382972],[-124.93018647051794,57.95169467260429],[-124.9302024860962,57.95187426141111],[-124.93022061418714,57.9520538671971],[-124.93023666200493,57.95223233469672],[-124.93025267805217,57.9524119235997],[-124.9302686942525,57.95259151253482],[-124.9302847106059,57.9527711015023],[-124.93029861470231,57.95295067355616],[-124.93031463135176,57.95313026258825],[-124.9303517724571,57.953310021104],[-124.93043689359843,57.95351147544128],[-124.93007291507763,57.95353098809931],[-124.92975794656304,57.95368436700792],[-124.92959977664354,57.95382217950322],[-124.92942857932798,57.95397222517965],[-124.9293252035254,57.954114963823706],[-124.92915134802041,57.954284055580274],[-124.92898558933896,57.954465550118236],[-124.92886338977092,57.954601407534476],[-124.92858195172043,57.9547640263248],[-124.9284294709108,57.95492431599199],[-124.92827068319737,57.9550834332039],[-124.92811400667715,57.95524256723402],[-124.92795732882992,57.95540170110687],[-124.92780903588124,57.955563145513516],[-124.92766704734983,57.95572576212048],[-124.92753133129713,57.95589067232383],[-124.92739145290952,57.95605330568349],[-124.92724523553436,57.95621588794201],[-124.92709485573243,57.956376193324076],[-124.92694236203728,57.95653648156478],[-124.92678356121411,57.95669559727792],[-124.92662059786052,57.9568524360686],[-124.92644502140863,57.957006929893126],[-124.92626112111762,57.9571568699675],[-124.92607299405286,57.957306775786705],[-124.9258869781484,57.95745669838003],[-124.9257177338667,57.95761124239324],[-124.92557780915739,57.95777499552442],[-124.92540017556432,57.95792722834981],[-124.92517446179131,57.958061127315744],[-124.9249821646275,57.95820875493124],[-124.92490324644669,57.958381972337314],[-124.92489174213571,57.95856246302114],[-124.92484227269554,57.95874040440603],[-124.92466264719805,57.958888133860704],[-124.92440152194726,57.95900380000266],[-124.92413421738287,57.959113807626466],[-124.92386899189383,57.9592249531535],[-124.92359755504746,57.959331561497194],[-124.9233157456184,57.959431355748706],[-124.92302983771722,57.95952662977993],[-124.92275212226942,57.95963094249711],[-124.92253269503435,57.95976600980898],[-124.92244956885374,57.959938070532814],[-124.92244439070795,57.96011861251419],[-124.92245403441243,57.96029815264308],[-124.92245945254967,57.96047765866534],[-124.92243737165828,57.96065806418777],[-124.92231013056634,57.96082079546266],[-124.92211777585094,57.96096954076055],[-124.9219233711049,57.96111602596594],[-124.92173940047223,57.96126708183929],[-124.92163308999609,57.96143671166898],[-124.92162160122851,57.96161608127538],[-124.92165662841445,57.961794705365456],[-124.9217001075873,57.961973397809096],[-124.92174150643548,57.96215095180997],[-124.92179558327582,57.96232860831615],[-124.9218517735711,57.96250628191365],[-124.92182741470002,57.96269227755308],[-124.9215782265353,57.96261174805779],[-124.92129815023966,57.962502927242845],[-124.92100052792011,57.9624163967325],[-124.92068526251725,57.96235552054627],[-124.92034972490737,57.9623382235466],[-124.920009413711,57.962339954961095],[-124.91967605397764,57.96232043061429],[-124.9193432107024,57.962282963343384],[-124.9190075130236,57.9622712698722],[-124.9186728633425,57.962296598244095],[-124.91834208391761,57.9623342952335],[-124.91801533591735,57.962378753968295],[-124.91769057085503,57.96242771457231],[-124.91736378895513,57.96247329309604],[-124.9170349579725,57.96251661090441],[-124.9167081421682,57.96256330920664],[-124.9163915021416,57.962623549106915],[-124.91607677992165,57.96269053371294],[-124.915746091518,57.96272486013913],[-124.91541292483339,57.9626985968481],[-124.91507348453482,57.962670038404035],[-124.91485888568565,57.962782700295435],[-124.91481983082247,57.96296408885237],[-124.91479310450863,57.96323082270625],[-124.91466882362741,57.96350910095258],[-124.9145940079756,57.963684590381504],[-124.91451707860854,57.963860062605306],[-124.91445702032767,57.964036793775676],[-124.91443493132202,57.96421607727273],[-124.91441706819829,57.96439539519555],[-124.91434228201366,57.96456976326648],[-124.91422955718397,57.964740457575815],[-124.91414423647929,57.96491361821393],[-124.91408199684207,57.96509257497713],[-124.91403662895766,57.965272790758476],[-124.91403362000601,57.96544998648968],[-124.91410047350278,57.96562326442558],[-124.91422873789438,57.96579255565669],[-124.9143485509042,57.96596177800052],[-124.9143878386652,57.966138196452945],[-124.91431929110675,57.966315980581385],[-124.91421501358836,57.966486743992164],[-124.91409600774251,57.96665514416481],[-124.91398119477428,57.96682470005541],[-124.91388533465248,57.96699665350385],[-124.91380420121456,57.96717097013733],[-124.91372729344764,57.967345321171145],[-124.91365457897908,57.96752082799807],[-124.91358186383104,57.967696334818065],[-124.91351126124506,57.96787185884339],[-124.9134406255612,57.9680485042502],[-124.91337002165338,57.96822402826649],[-124.9132973038147,57.968399535062936],[-124.91322247201558,57.96857502463588],[-124.91314555867406,57.96874937559497],[-124.91306653131812,57.96892370932313],[-124.91298327660816,57.9690980085961],[-124.9128957944856,57.969272273405956],[-124.91279992314924,57.969444226522654],[-124.91269774337903,57.96961500653945],[-124.91258080170378,57.96978454453448],[-124.91244916287397,57.96995059769174],[-124.9122986649452,57.97011088872706],[-124.91212511347359,57.970264261717],[-124.91193686435193,57.97041414968229],[-124.91174653282664,57.97056289877716],[-124.91156247500203,57.97071394213073],[-124.91137633479049,57.97086384661999],[-124.91119016058535,57.9710148722626],[-124.9110060983088,57.971165914921386],[-124.91083042325063,57.97131926914784],[-124.91067152420518,57.97147724678383],[-124.91052306096917,57.971639796113536],[-124.91038285509707,57.97180914269229],[-124.91025945811964,57.971981991434376],[-124.91016564873952,57.97215508180844],[-124.91011635196287,57.972324049177175],[-124.91021308147104,57.97248747953287],[-124.91040927687207,57.972647235598025],[-124.91056099248355,57.97280999314729],[-124.9106957361437,57.972974855282715],[-124.91079224219779,57.973146135072994],[-124.9108674835874,57.97332172785398],[-124.91099163013146,57.97348762490222],[-124.91116468238187,57.97364382607609],[-124.91135061254879,57.973793402175126],[-124.91153869027877,57.97394187388953],[-124.9117225423146,57.97409031088152],[-124.91196635627558,57.97421231684544],[-124.9119062369494,57.97439017020995],[-124.91195394403657,57.97456778130762],[-124.91206532028184,57.974736938337365],[-124.91221285671888,57.97489853850727],[-124.91238598550032,57.97505249554391],[-124.91257615481159,57.975202104619925],[-124.91277916993089,57.97534620981818],[-124.91302728772821,57.97546600566473],[-124.91329690080079,57.9755736378761],[-124.91351276500446,57.97571223833157],[-124.91376514737392,57.9758309458816],[-124.91402393728254,57.97594746179018],[-124.9142655598113,57.97607281077819],[-124.9144964533325,57.97620368034401],[-124.91472087767994,57.97633898353537],[-124.91494318991822,57.976474269179306],[-124.91516550375809,57.976609554472354],[-124.91538355932872,57.97674592644657],[-124.91559088582792,57.976887819175055],[-124.91577463879575,57.977040736640106],[-124.91596057176864,57.97719142825517],[-124.91618725052443,57.97732226070483],[-124.91646329203263,57.97742769544451],[-124.91676102285871,57.9775142374631],[-124.91708245947993,57.97758526796066],[-124.91740765983702,57.97759912351261],[-124.9177348964778,57.97754233016087],[-124.91804368962701,57.9774651965742],[-124.9183380403531,57.97737560694652],[-124.91860965483386,57.97726788585946],[-124.91885472503651,57.97712742102479],[-124.91909537223013,57.97699364990298],[-124.9193571069308,57.97693520036069],[-124.91965393723089,57.977053135032214],[-124.91986550909756,57.97719505539495],[-124.92001728406,57.97735780298047],[-124.92006513002107,57.97753204754261],[-124.92004507690056,57.97771471585402],[-124.92002716964356,57.9778962799075],[-124.92002835108242,57.97807575517628],[-124.92013983859289,57.978242663299135],[-124.92028953738313,57.97840427224989],[-124.92045409886231,57.97856375797611],[-124.92063150603444,57.97871773912035],[-124.92083662047733,57.97886409250078],[-124.92102046891681,57.97901476026249],[-124.92113625582293,57.979179459104294],[-124.92118602988818,57.97936044910457],[-124.92117450128481,57.979540943501526],[-124.92111659538755,57.97971657631408],[-124.92102281672972,57.97988967575004],[-124.92091635362198,57.980062672583344],[-124.92079944874608,57.980231098270146],[-124.92065301199214,57.980397041695355],[-124.92051294805837,57.98056191489067],[-124.92042771710238,57.980731718260856],[-124.92040993922119,57.98090879733872],[-124.92042592050299,57.98108839290221],[-124.92046089568458,57.98126926382279],[-124.92048952917668,57.981450083464274],[-124.92050339705057,57.9816296620208],[-124.92051303699904,57.98180920640787],[-124.92052267703973,57.98198875082866],[-124.92053020312332,57.98216827818229],[-124.92053984333823,57.98234782267091],[-124.92054948364535,57.982527367193384],[-124.92055912404462,57.982706911749666],[-124.92057087862582,57.98288647344021],[-124.9205826333194,57.98306603516434],[-124.920607072785,57.98324569952176],[-124.9206569786331,57.98342220488192],[-124.92073228674259,57.98359779402739],[-124.92083306192622,57.98377022410136],[-124.92094873376355,57.983939409572145],[-124.9210347117456,57.98411171989476],[-124.92105069737882,57.98429131599952],[-124.92105608004445,57.984471948081],[-124.921074212347,57.98465043993712],[-124.92109019839847,57.98483003614079],[-124.92109346712182,57.98501065123279],[-124.92111794252102,57.9851891944626],[-124.92117627804986,57.98536688977195],[-124.92127497800026,57.985538181339194],[-124.92141833580166,57.985700860426924],[-124.92160222005056,57.9858515284902],[-124.9217903665108,57.98600110907724],[-124.92196358575443,57.9861550555144],[-124.92209842736952,57.98631990848548],[-124.92223115587561,57.98648474427527],[-124.92237448924645,57.98664854391173],[-124.92248806258468,57.98681771149848],[-124.92261019077412,57.98698358305923],[-124.92281756893837,57.987126587524926],[-124.92301213398129,57.987273974965895],[-124.92323454083868,57.98740924837875],[-124.92347197485917,57.98753679093994],[-124.92372225739359,57.98765882833963],[-124.92404879407819,57.9877029630356],[-124.9243845600694,57.98772025119812],[-124.92472039060627,57.98773529569133],[-124.92505833577786,57.987750356369425],[-124.92539628122057,57.98776541619191],[-124.92573204839064,57.98778270096588],[-124.92606989816075,57.98780112332177],[-124.92640563389226,57.987819527814956],[-124.92674124172106,57.987842417116134],[-124.92707230073215,57.9878764857112],[-124.92739201953952,57.987937382444734],[-124.92772304794968,57.987972570842494],[-124.92805631943703,57.98800328974839],[-124.92838494658616,57.988048552248],[-124.92871620090123,57.98807588829053],[-124.92905113755653,57.988048291195554],[-124.92938421517005,57.98801170498859],[-124.92971517775406,57.98797510099611],[-124.93004992102055,57.9879542298815],[-124.93038693803898,57.98792776780248],[-124.93071572065081,57.987893387215415],[-124.93101805151788,57.987970960957455],[-124.93131580372722,57.98806083571942],[-124.93161371692548,57.98814510275269],[-124.93192034427257,57.98822046549363],[-124.93222915103904,57.988293601622246],[-124.93253795900858,57.988366737042156],[-124.93284459002082,57.988442097677684],[-124.93314680223577,57.98852415230513],[-124.93344257694352,57.98860951981252],[-124.93374043556935,57.988696024980065],[-124.9340382955677,57.98878252949098],[-124.9343449329871,57.98885788671351],[-124.93467619878088,57.98888520798843],[-124.93501188479897,57.98890583368753],[-124.9353498128294,57.98892198974348],[-124.93568774115067,57.98893814494421],[-124.93602563798112,57.988955420706304],[-124.9363612935966,57.988977164430004],[-124.9366967907929,57.98900451439444],[-124.9370386953103,57.98902967120167],[-124.93738265124821,57.98905708680224],[-124.93772222014033,57.989090074945786],[-124.93805096361531,57.98913194944746],[-124.93836029721301,57.98918712878366],[-124.93861995299417,57.98927892746077],[-124.9387844815007,57.98944399952396],[-124.93897678489526,57.98959919717034],[-124.93921857857768,57.98972450279807],[-124.93946895855348,57.98984538953559],[-124.93972574697655,57.98996408337318],[-124.93998468319121,57.990081672106136],[-124.94024147486081,57.990200364981746],[-124.94048974678634,57.99032123307731],[-124.94072728947705,57.99044762391858],[-124.94093276779013,57.99058609830512],[-124.94106341625982,57.990753142178114],[-124.94119829499489,57.99092021950084],[-124.94136524120664,57.99107521266383],[-124.94153641793487,57.99123023918075],[-124.94170971065456,57.991385282269796],[-124.94188515100099,57.99153922050148],[-124.9420606243898,57.991692037106695],[-124.94223606760859,57.991845974927955],[-124.94241151226618,57.991999912544074],[-124.94258698995084,57.992152728533064],[-124.94276881295443,57.992305594563526],[-124.94294855437772,57.99245732220281],[-124.94310910756202,57.99261450604756],[-124.94325249228638,57.992780527179974],[-124.94336617825087,57.99294967810761],[-124.94335891833782,57.993132453368524],[-124.94332369423165,57.99325668027769],[-124.9453945837082,57.994154693116975],[-124.94564501311899,57.99427556884476],[-124.9459019143551,57.99439200851461],[-124.94616307817982,57.99450735966952],[-124.94640274974638,57.994634879100374],[-124.94659059844497,57.99480012609489],[-124.94680962896882,57.99490953512756],[-124.94714120154741,57.99485270198159],[-124.94747258445447,57.99480259657389],[-124.94779954832777,57.994759185566394],[-124.94812657429486,57.99471353090716],[-124.94844756932291,57.99465661120725],[-124.94875839784572,57.9945850289249],[-124.94906303789547,57.99450778884423],[-124.94936565610205,57.994427167151194],[-124.9496662523967,57.994343163860194],[-124.94996883661113,57.99426366224041],[-124.95026734686837,57.994178519549486],[-124.95058419865713,57.99411819720568],[-124.9509151630497,57.99408266183361],[-124.95123816919144,57.994029116361276],[-124.95155514344691,57.99396430601748],[-124.95185974139217,57.99388818103273],[-124.95216234859758,57.99380755305362],[-124.9524587981282,57.993720146051665],[-124.95275114200348,57.99362821951293],[-124.95303306731415,57.993530602280515],[-124.95327770834038,57.993404650330135],[-124.95335240237486,57.993229133653344],[-124.95352567271122,57.99308355326738],[-124.95376825700978,57.992955341048635],[-124.9540274757431,57.99283735380308],[-124.95429493280783,57.9927272823136],[-124.95457069076214,57.99262288367681],[-124.95484849938553,57.99252074389048],[-124.95512425428336,57.99241634413339],[-124.95538756947968,57.992302873122384],[-124.95561754820163,57.99217119408043],[-124.95592265358923,57.99207599574631],[-124.95630316656674,57.9920071847678],[-124.95661010297385,57.991922094238944],[-124.95669858338643,57.99178257727336],[-124.95669256068489,57.99161876660601],[-124.95667182941828,57.99145147599332],[-124.956636420957,57.99127958400602],[-124.9565883877457,57.991105350013264],[-124.95652984452785,57.990928790533786],[-124.95646290601117,57.99074992208698],[-124.95638968686632,57.99056876119481],[-124.95631223937187,57.990387567228844],[-124.95623059476843,57.99020521875912],[-124.95615106546555,57.990022886812135],[-124.95607153693511,57.989840554853394],[-124.95599409247826,57.98965936084467],[-124.95592296101128,57.98947933787014],[-124.95586022571395,57.989301623902215],[-124.95586916421605,57.98913232231644],[-124.9560153234485,57.988971945821234],[-124.95617416806796,57.98881166841351],[-124.95633929227299,57.9886536832885],[-124.9565044150884,57.98849569798607],[-124.9566611723572,57.988334282128655],[-124.95681170970782,57.988168330853526],[-124.95697266192221,57.98800806916034],[-124.95716069483088,57.9878626005392],[-124.9573945886138,57.98774104488696],[-124.95767639537885,57.987645661306104],[-124.95798528289068,57.987565070206706],[-124.95829625232678,57.98748561632258],[-124.95858856447283,57.98739255619623],[-124.95885811483373,57.987281371286294],[-124.95913170575459,57.98717694734446],[-124.9594381611349,57.987107550632196],[-124.95976936605766,57.98706077937785],[-124.96008897126084,57.986974658758854],[-124.96038755865898,57.98696016003231],[-124.96066637509266,57.98704869956539],[-124.96094025032053,57.98716299827045],[-124.96120324515842,57.987288428349196],[-124.96144721248753,57.98741370985092],[-124.96165896965752,57.9875566869185],[-124.96187075944886,57.98769854225081],[-124.96211700106313,57.98781823192289],[-124.96240406856126,57.98791468362757],[-124.96271703702023,57.98799226775195],[-124.9630412911762,57.98804414058402],[-124.96337076588482,57.98806015997167],[-124.96371363922087,57.988050484341656],[-124.964056605211,57.988037443564615],[-124.9643904637626,57.98804788614758],[-124.96471705158123,57.98809192136213],[-124.96503667866229,57.98815833504132],[-124.96534558029653,57.98823027311721],[-124.96564354028368,57.98831558562548],[-124.96593932542912,57.988403123940465],[-124.96623511195384,57.98849066160821],[-124.9665374283695,57.98857151920604],[-124.9668529264667,57.988634531554986],[-124.96717495404197,57.988690863707504],[-124.96749698258353,57.98874719508661],[-124.96781465987563,57.9888079786836],[-124.96812136526017,57.98888325830549],[-124.96842365808527,57.98896523308934],[-124.96871513349785,57.98905609690219],[-124.96898500372379,57.98916361812208],[-124.96925695917705,57.98927227656296],[-124.96947513078935,57.989414169077286],[-124.96967819487148,57.98956716125158],[-124.96992039848944,57.989681196994276],[-124.97022555442449,57.9897362698731],[-124.97056328978566,57.98976018677059],[-124.97091414294307,57.98976850067196],[-124.97125874494492,57.989773400480814],[-124.97159366541189,57.989745696586134],[-124.97193014710514,57.98973819380684],[-124.97226699706106,57.989717233066514],[-124.9726017628343,57.989695133774205],[-124.97294020497075,57.98969325185591],[-124.97327849372567,57.98969697621078],[-124.97361684386654,57.989698456855606],[-124.97395335538131,57.98968982755011],[-124.97429005057715,57.98967446883759],[-124.9746268680144,57.98965462356987],[-124.9749616624593,57.98963139693407],[-124.97530270814049,57.98961158243974],[-124.9756477682544,57.98959964951759],[-124.97591177760815,57.98969028670864],[-124.97604040289315,57.98985952279679],[-124.97613507473532,57.99003298497941],[-124.97622551839913,57.99020641468925],[-124.9763308258111,57.99037771503647],[-124.97646806639837,57.990541408566465],[-124.9766266065825,57.99069965697074],[-124.97677871271482,57.99086122086847],[-124.97692873614501,57.99102164698453],[-124.97707873030012,57.99118319438849],[-124.97722664170789,57.99134360401968],[-124.97737449328231,57.991506256373476],[-124.97751385715523,57.99166996522751],[-124.97766174179965,57.991831495890246],[-124.97783310237101,57.991985354537526],[-124.97801295342187,57.99213815632294],[-124.97819921092061,57.99228876359345],[-124.97839405060273,57.9924349496442],[-124.97864239908134,57.99255798991205],[-124.9789014445394,57.99267662489288],[-124.97917348463628,57.992784142107254],[-124.97947828303556,57.992853772624365],[-124.9798115486847,57.9928877267504],[-124.98014910523294,57.99291946949601],[-124.98046686876863,57.99297910182026],[-124.98076695459534,57.993066640017275],[-124.98107163648552,57.99314075264596],[-124.98140294357565,57.99316907950609],[-124.9817457068169,57.993164964663606],[-124.98208046734224,57.99314396294964],[-124.98241347759281,57.993109487086144],[-124.98274851075453,57.993078390806446],[-124.98308308767052,57.99306411517497],[-124.9834215292805,57.993063328106906],[-124.98376196413055,57.99306704201127],[-124.98410644633758,57.99307751583258],[-124.98443304939028,57.99304522951647],[-124.9846895723607,57.99294510956433],[-124.98466127569442,57.99313109048758],[-124.98470723608679,57.9933086629592],[-124.98477648910806,57.99348529093664],[-124.98487124078603,57.993657626164044],[-124.98499360617363,57.993825684664756],[-124.9851351266258,57.99398940204928],[-124.98530009247733,57.99414656753656],[-124.98548430472293,57.99429602745674],[-124.98568341272983,57.9944422353275],[-124.98588469765907,57.99458621612034],[-124.98608380876455,57.99473242343959],[-124.98629364681614,57.994873103605656],[-124.98652919712029,57.99500164034272],[-124.98678408501874,57.99511910679056],[-124.98704752455879,57.995233272649],[-124.98732582995676,57.99534530743218],[-124.98762114637121,57.995454105648605],[-124.98789314085558,57.99556496972355],[-124.98809936529216,57.99568318637223],[-124.98796600611263,57.99584369533927],[-124.98783657311132,57.99601545064306],[-124.9877367773264,57.9961863089328],[-124.98763695038704,57.9963582886169],[-124.98752660859354,57.99652794518304],[-124.98740363692694,57.99669526256165],[-124.98728486371968,57.99686373338305],[-124.98717234341238,57.9970356165814],[-124.98707033617549,57.99720982283041],[-124.98707199009836,57.997383693951015],[-124.98716041731971,57.997555980134536],[-124.98726781943195,57.99773065356853],[-124.98732017293909,57.997907152712514],[-124.9873089263999,57.99808877777722],[-124.98735070567312,57.99826519675934],[-124.98743699100166,57.99843858832052],[-124.98753176739812,57.998610922578195],[-124.98763291995688,57.99878218347537],[-124.98773618846299,57.99895346036439],[-124.98783731263528,57.99912584261096],[-124.98793209260506,57.99929817671195],[-124.98801623770308,57.99947267349948],[-124.98808977803073,57.999648211552945],[-124.98815485875222,57.99982368547884],[-124.98822202493416,58.000000296877396],[-124.98824465386224,58.000181057449325],[-124.98840687986753,58.00036287585186],[-124.98846776330741,58.00053719626526],[-124.9884989146863,58.00071577811326],[-124.98853218149564,58.000894376012496],[-124.98857179405381,58.00107302200863],[-124.98861140698904,58.001251668027486],[-124.9886552808495,58.00142922466964],[-124.9886991249066,58.001607902775525],[-124.98874722996707,58.001785491498815],[-124.98879533548278,58.00196308023861],[-124.98884978706677,58.0021407170529],[-124.9889021239518,58.002318337860586],[-124.98894811565894,58.00249591062901],[-124.98899199256681,58.002673467398964],[-124.98904221562327,58.00285107223691],[-124.9891136521148,58.00302659434988],[-124.98920409644876,58.00320338202763],[-124.9894313385092,58.003328486404236],[-124.98975585262879,58.003376930850365],[-124.99005425452363,58.00329506270804],[-124.99032585060337,58.00318719269509],[-124.99059539019,58.00307706325793],[-124.99086695298207,58.00297031361589],[-124.99113642913001,58.00286242600477],[-124.99138514313755,58.00273979927395],[-124.99165250090759,58.00263189466916],[-124.99195720830609,58.002551191710204],[-124.99224532384473,58.002458024434986],[-124.99251899268279,58.00235128746982],[-124.99279054475241,58.002244533999274],[-124.99307862578029,58.002152486402586],[-124.99338538126489,58.002074039069804],[-124.99369618544664,58.00200235159834],[-124.99401100841017,58.00193854540411],[-124.99433390041548,58.00188938099616],[-124.99467200080103,58.00190426563803],[-124.99500804632075,58.00191689061059],[-124.99534620726176,58.00192953065377],[-124.99568442845066,58.00193992694853],[-124.99602267982688,58.001949200940324],[-124.99635890614272,58.0019550938364],[-124.99669936295926,58.00196101767541],[-124.99703570936602,58.00196242308165],[-124.99737456047049,58.00194926471988],[-124.99770948043964,58.00192485927503],[-124.99804615589443,58.00191392622368],[-124.99838437769029,58.001924315679055],[-124.99872009552487,58.00194926722368],[-124.99904901956452,58.0019909920562],[-124.99937118012762,58.00204836878215],[-124.99968026185336,58.00212022846342],[-124.99999971165329,58.00220001677978],[-125.0004937647886,58.00239664368113],[-125.00069508946721,58.00254284626967],[-125.00086656350261,58.00269779856325],[-125.00101247684854,58.00285928943741],[-125.00115198597749,58.00302297560483],[-125.00130853784412,58.00318230243554],[-125.00147146671037,58.00334055511887],[-125.0016322816643,58.00349879181376],[-125.00179309797427,58.00365702834198],[-125.00194968503169,58.00381523308021],[-125.00209346224891,58.00397782860622],[-125.00222231418691,58.00414479915619],[-125.00233418498539,58.00431388606937],[-125.00240991710902,58.00448943295395],[-125.0024538600352,58.004666985679094],[-125.00248293622099,58.00484667070418],[-125.00251627323915,58.00502526591194],[-125.00256867882695,58.00520288191259],[-125.00267837933998,58.00537419583228],[-125.00290985066259,58.005501552065965],[-125.00318410831942,58.00561128052951],[-125.00346712703461,58.005709857069476],[-125.00371570509525,58.005830609537114],[-125.00394706368765,58.005962449846805],[-125.00418488924413,58.00608985129121],[-125.00441839627642,58.00622058514433],[-125.0046283672867,58.00636123822879],[-125.00486831313947,58.00648865428023],[-125.0051384122738,58.00659610440829],[-125.00546402040538,58.006684898952265],[-125.00574227577141,58.006644347452],[-125.00597466727426,58.00649801650111],[-125.00618581337507,58.006354892085845],[-125.00634657330924,58.00619681066123],[-125.00648841176726,58.006034101598914],[-125.00669949393058,58.00589321934999],[-125.00692112190964,58.00575353690719],[-125.00725788835975,58.00574033767701],[-125.00753463180419,58.00583661551981],[-125.007805534458,58.00591378093013],[-125.00814924112323,58.00587819753394],[-125.00848633419707,58.00585265921374],[-125.00882351567375,58.00582375568187],[-125.00914627364013,58.00578016251707],[-125.00942203403982,58.00567340622554],[-125.00967279273003,58.00555188220952],[-125.00986708499171,58.00540526224386],[-125.00999630162131,58.005239091116806],[-125.01002266232784,58.00504187219359],[-125.01011141880338,58.00488549609791],[-125.0104087532438,58.004842833187595],[-125.010781264574,58.00483774177105],[-125.01110827206456,58.004793053801016],[-125.01143342929085,58.00473825629366],[-125.01174621827894,58.0046710280761],[-125.01204464152552,58.004586867774165],[-125.01232658337685,58.00448575984163],[-125.01259600870402,58.004377828750094],[-125.01285089063092,58.00425969458046],[-125.01309328543049,58.00413361596031],[-125.01333359276592,58.00400639983345],[-125.01356761148845,58.00387689350388],[-125.01382457279168,58.003759894619456],[-125.01411490591629,58.003661088399845],[-125.01443537658342,58.00362307419554],[-125.01477799611264,58.00362784610957],[-125.01508865455966,58.00356059453476],[-125.015378923969,58.003464028492616],[-125.01566293427298,58.00336405068941],[-125.01593862897711,58.00325840267186],[-125.01618929163428,58.00313910964037],[-125.01638348716303,58.002994723479944],[-125.01654427791382,58.00283326599841],[-125.01669237580514,58.002671714883384],[-125.01682366804135,58.002505553219024],[-125.01697384929038,58.0023451388762],[-125.01717018228086,58.00219964581776],[-125.01739586245729,58.00206446349403],[-125.01763611260678,58.00193836135941],[-125.01787847633993,58.00181227436903],[-125.01808108992488,58.00166906963406],[-125.01825858379584,58.001515584920995],[-125.01845702264028,58.0013701056539],[-125.0186701194898,58.00123034219468],[-125.01889367327772,58.00109514193389],[-125.01911719614596,58.0009610627687],[-125.0193302882149,58.000821298317526],[-125.01953709188453,58.00067924404862],[-125.01974389398879,58.00053718948119],[-125.01996741049717,58.000403108973316],[-125.02023270069525,58.000289524649276],[-125.0205413529585,58.000216637861534],[-125.02085003327976,58.000142628916414],[-125.02115868313629,58.000069740713066],[-125.02138052508614,57.99999958052285],[-125.02200490611115,57.99990657107941],[-125.02233188648638,57.99986073441293],[-125.02266929548986,57.99982058161295],[-125.02295287638539,57.99989780869126],[-125.02323158617453,57.999999676122115],[-125.02385339693282,58.0001679868182],[-125.02434041266514,58.000232116573656],[-125.02466526560158,58.00026814005642],[-125.02498947823167,58.000328834664586],[-125.02530108855636,58.0003860714874],[-125.02563452069494,58.00041766858098],[-125.02596801160301,58.000447021940765],[-125.02629924243553,58.00048196629855],[-125.02662806791226,58.00052810892776],[-125.02692200536166,58.00061437634859],[-125.02717271119293,58.00073622134805],[-125.02732513366522,58.000895486448044],[-125.02742009939593,58.001067792818915],[-125.02748748161358,58.001243263222094],[-125.02755057598644,58.00142094571754],[-125.02754595581843,58.00159925669017],[-125.0276069649226,58.001775802368044],[-125.02767220502068,58.00195237886004],[-125.02778418393025,58.00212144404038],[-125.02793444130073,58.00228293618761],[-125.0280018571494,58.00245728510739],[-125.02803528442962,58.0026369949261],[-125.02806028003783,58.002815521725054],[-125.02808101630322,58.00299513921297],[-125.02809963748798,58.00317474133514],[-125.0281161726039,58.00335320663725],[-125.0281326788353,58.00353279342714],[-125.02815764646226,58.003712441835994],[-125.02818687400772,58.00389099961136],[-125.02822667847904,58.004069634392394],[-125.02827920440511,58.00424724010794],[-125.02834659634783,58.0044227106797],[-125.02841821963958,58.004598212035376],[-125.02849195897053,58.004773728777224],[-125.02856784340035,58.004948139444615],[-125.02864581489688,58.00512368694785],[-125.02872593154733,58.00529812836886],[-125.02880604894254,58.005472569774696],[-125.02889042694079,58.00564592047728],[-125.02897477670018,58.005820392617174],[-125.02906127169818,58.00599375866052],[-125.02914988294349,58.00616714006112],[-125.02924061046552,58.0063405368148],[-125.02933348330194,58.00651282745827],[-125.02942847246858,58.006685133445544],[-125.0295255779947,58.0068574547722],[-125.02962479990963,58.00702979143389],[-125.02972405173288,58.00720100659375],[-125.0298275354945,58.007372252451866],[-125.02993104919172,58.00754237680099],[-125.0300387659107,58.00771365329547],[-125.03014865712812,58.00788270217803],[-125.03025852035387,58.0080528724621],[-125.03037264468355,58.0082219519488],[-125.03049314573887,58.00838995598619],[-125.03061790801158,58.00855686919872],[-125.03075119170099,58.00872160082294],[-125.03089296793266,58.00888527229451],[-125.03104541033498,58.00904565601154],[-125.03120640338453,58.009202736587426],[-125.0313822940328,58.00935656002637],[-125.03157099572334,58.00950598946215],[-125.03177465312625,58.009649918714125],[-125.03199761335536,58.00978389252844],[-125.03225054151248,58.00990462307179],[-125.03252288820313,58.0100109120677],[-125.03280821954195,58.01010607781655],[-125.03310218842724,58.01019457545263],[-125.03340262130288,58.01027863253253],[-125.03370308440508,58.01036156747951],[-125.03400140427237,58.01044560791895],[-125.03429752319092,58.01053299679531],[-125.03459367234282,58.01061926355825],[-125.03489411195962,58.010703317321635],[-125.03519463943132,58.01078400602007],[-125.03549728391106,58.01086470932968],[-125.03580207423114,58.0109443057702],[-125.03610475011945,58.01102388625127],[-125.0364052539614,58.01110569371966],[-125.03670573032215,58.011188621985525],[-125.03700403470664,58.01127377725945],[-125.037298022635,58.01136226577147],[-125.03758117431298,58.01146077061043],[-125.0378492008543,58.011571504296555],[-125.03810439065089,58.01168775336072],[-125.03836166905587,58.011805138654324],[-125.03863401811573,58.01191253687386],[-125.03892369715295,58.01200435581033],[-125.03922856143157,58.012081701593445],[-125.03954209107992,58.0121512572753],[-125.03985790987278,58.01221409862792],[-125.0401780760718,58.01227248377676],[-125.04050044510423,58.01232751895727],[-125.04082287242096,58.0123803104255],[-125.04114967555559,58.01242752415603],[-125.04148088302865,58.012468038646674],[-125.0418121771365,58.01250518791059],[-125.04214132745744,58.01254344264835],[-125.04247033534827,58.01258730392292],[-125.04279499792968,58.01263561993754],[-125.04312174856757,58.01268507179452],[-125.04344635565127,58.012735629170095],[-125.04376873345609,58.01279065648939],[-125.0440889392315,58.012847910829684],[-125.04440688733679,58.01291075661709],[-125.0447205191708,58.01297693579413],[-125.04502977770608,58.01304869133293],[-125.04533457745022,58.01312938767676],[-125.04562645518263,58.013218964379135],[-125.04591178711026,58.01331634540268],[-125.04618634163202,58.013421500569926],[-125.04644800295739,58.01353441484308],[-125.04669459826522,58.01365731614067],[-125.04692401171926,58.0137901894509],[-125.04713847314014,58.01392856407494],[-125.04734009835806,58.014072455179864],[-125.04753100322402,58.01422187791631],[-125.04770701278746,58.01437455921398],[-125.0478723303067,58.01453165077478],[-125.04802489668086,58.014690894612755],[-125.048171031159,58.01485345748499],[-125.04830653023383,58.0150181877859],[-125.04843565416161,58.0151839942264],[-125.0485583744285,58.015351998299366],[-125.04867686382755,58.01551997214708],[-125.04879109386798,58.01568903725497],[-125.04889468806353,58.015860269905005],[-125.04897492178299,58.01603470119705],[-125.04904454770978,58.01621017862026],[-125.04911417428785,58.01638565604066],[-125.04920078670028,58.01655901101487],[-125.04931502226508,58.0167280758653],[-125.04944627259567,58.016893896697795],[-125.04957540801584,58.017059702373736],[-125.04970666065744,58.01722552300989],[-125.04984429113104,58.017390267230056],[-125.049990472406,58.01755170711051],[-125.0501494367691,58.01770987271858],[-125.0503275610788,58.01786368766596],[-125.05052710355139,58.01800755952837],[-125.05075870168861,58.01813932044321],[-125.0510333050901,58.01824446619663],[-125.0513448486987,58.01831173664444],[-125.0516739462817,58.0183544540426],[-125.05200978980854,58.01838151499135],[-125.0523458037968,58.018401846225544],[-125.05268184646867,58.01842105513636],[-125.0530203170374,58.01842794193975],[-125.05335737906242,58.01840677592003],[-125.05369037814869,58.018378850193336],[-125.05402721312109,58.018366654314285],[-125.0543631998002,58.01838810195226],[-125.05468784311348,58.01843975379706],[-125.05500365545514,58.01850592419934],[-125.05531077835009,58.01858100582818],[-125.05561138459272,58.01866277074875],[-125.05590979130784,58.0187478844819],[-125.05620819937697,58.018832997556245],[-125.05650011923694,58.01892367252878],[-125.05677906143131,58.01902547201458],[-125.05703430419885,58.01914392880456],[-125.05726381600553,58.0192756636635],[-125.0574804913031,58.01941291595823],[-125.05769070686073,58.019554609059334],[-125.05789025839886,58.01969959166688],[-125.05808129023669,58.01984675727145],[-125.05826586223961,58.019998363793874],[-125.0584397981947,58.020152138465214],[-125.05860733051621,58.02030811115699],[-125.05876631474818,58.02046738846484],[-125.05891680709325,58.020627727455945],[-125.05905451862424,58.02079134131045],[-125.05917518849402,58.02095932174217],[-125.0592724676033,58.02113162408804],[-125.05934215115751,58.0213070971127],[-125.05938000613875,58.02148571105666],[-125.05938820467915,58.021665237883326],[-125.05937735619797,58.021844630625694],[-125.05935169313109,58.02202391908468],[-125.05931335975507,58.02220199667021],[-125.05927079326591,58.0223800444715],[-125.05922399360338,58.02255806248434],[-125.05917930989136,58.02273609542058],[-125.0591367421599,58.02291414328251],[-125.05908359195077,58.02309211663126],[-125.05902623652129,58.023268938691935],[-125.05896464768188,58.02344573094444],[-125.0588988253728,58.02362249338305],[-125.0588372634919,58.02379816415835],[-125.05877778935735,58.02397497133728],[-125.05872251946765,58.02415292983596],[-125.05867783147576,58.02433096291339],[-125.05864160903755,58.02450905566632],[-125.05860115324637,58.02468711861474],[-125.05855434752752,58.02486513683981],[-125.05850754136438,58.0250431550828],[-125.05846920089535,58.02522123301083],[-125.05844988081172,58.02540056670488],[-125.05846230886578,58.0255801241866],[-125.05853834658853,58.02575564322958],[-125.05874228011412,58.02589616941718],[-125.05906479346002,58.02595116060072],[-125.05940333314764,58.025958031286784],[-125.05974020620805,58.02594694239043],[-125.06007724769336,58.02592912370903],[-125.06041426076453,58.0259124256671],[-125.06075310927142,58.025906956549875],[-125.06109181731122,58.02590709402069],[-125.06143066567115,58.02590162318509],[-125.06176959809237,58.02589278702138],[-125.06210635769385,58.02588617811811],[-125.06244503751773,58.02588743364796],[-125.0627834091105,58.0259010247073],[-125.06311712760066,58.0259314075727],[-125.06344638944836,58.025970731850364],[-125.06377336744383,58.02601676942666],[-125.06410023430661,58.026067292166246],[-125.06442281292638,58.02612002744517],[-125.06474319196836,58.026176111602645],[-125.06506563265246,58.02623445278907],[-125.06538598568733,58.02629165690299],[-125.06570633969935,58.0263488602524],[-125.06602886714572,58.02640383465187],[-125.06635145137112,58.026456565293465],[-125.06667835344581,58.02650596025859],[-125.0670075403783,58.026548640258845],[-125.06733901199966,58.02658460527643],[-125.06767059576664,58.02661608350627],[-125.06800646906282,58.026645347461724],[-125.06834022626255,58.026674595813596],[-125.06867392828768,58.02670608631666],[-125.06900537506041,58.02674316869842],[-125.06933245009519,58.026785828231596],[-125.06965278652744,58.026844143641426],[-125.06995783475936,58.026921420518505],[-125.07025199524399,58.02701095947599],[-125.07054612934112,58.027101619287436],[-125.07084466485962,58.02718557894322],[-125.07115843490631,58.02725281855165],[-125.07149000002153,58.02728540881864],[-125.07182899808085,58.027274304135936],[-125.07215810625823,58.027235087758626],[-125.07247919088753,58.02717786789895],[-125.07279208519485,58.02710937357835],[-125.0730988501543,58.027031862528375],[-125.0734014359821,58.02695207843383],[-125.07370404821995,58.02687117216768],[-125.07400866502915,58.026794765866825],[-125.07431949207943,58.02672401034088],[-125.07464065204387,58.02666342083916],[-125.074963678655,58.02661293866389],[-125.07529291599955,58.026568107127346],[-125.07562206963809,58.02652663926136],[-125.07595325627238,58.02648854970596],[-125.07628232562307,58.02645044469669],[-125.07661353852406,58.02641123201447],[-125.07694271692598,58.02636863940884],[-125.07726988833703,58.02632154540182],[-125.07759296362629,58.026268813901886],[-125.07790993635146,58.026205944357685],[-125.07822284019512,58.02613631589832],[-125.07852950331618,58.02606215694168],[-125.07883624785423,58.0259846328074],[-125.07913884056369,58.02590371431722],[-125.07943725386423,58.0258205229936],[-125.07973572087333,58.025735088024724],[-125.0800321249699,58.02564739483573],[-125.08032641111832,58.02555968642719],[-125.08062075086939,58.02546973439271],[-125.08091294517577,58.02538088865048],[-125.08120728211726,58.02529093534141],[-125.08150159018417,58.02520210288554],[-125.08179586940305,58.02511439128267],[-125.08209223633344,58.02502781507528],[-125.08239066355168,58.02494349574183],[-125.08269532929138,58.024863705318865],[-125.08300200058346,58.024788414706805],[-125.08331078716014,58.02471313792016],[-125.08361333256035,58.02463333090073],[-125.08390554065382,58.024543357202035],[-125.0841790821858,58.024437551395316],[-125.08442972398059,58.024315884590074],[-125.08466362382762,58.02418625087241],[-125.08489752205803,58.02405661676348],[-125.08513977514704,58.023931526208386],[-125.08540500694178,58.02381893103376],[-125.08570341709589,58.02373460441148],[-125.08603646668924,58.02370547639812],[-125.08637499102515,58.02371227872383],[-125.08671340625979,58.0237235661603],[-125.08705030574716,58.02371016544761],[-125.08737537939308,58.02366078938307],[-125.0876902517815,58.02359563937171],[-125.08800108104633,58.023522609280135],[-125.08830566879482,58.023445049171045],[-125.08860822058932,58.02336410945868],[-125.08891074383817,58.02328429056036],[-125.08921738974216,58.02320898581093],[-125.08952615084395,58.023133694788534],[-125.08983282149374,58.023057267146996],[-125.09013737447336,58.02298082439286],[-125.09044404262809,58.02290439536104],[-125.09075070953322,58.02282796563145],[-125.09105941007054,58.022754914080124],[-125.09137017147765,58.02268411920041],[-125.09168505588634,58.022617838351174],[-125.09200403624146,58.02255719299423],[-125.09232505054722,58.02249992573534],[-125.09264807175336,58.022447158050866],[-125.09297521635648,58.02239890429544],[-125.09330227879387,58.0223540142169],[-125.09363137553798,58.02231250217488],[-125.09396456887681,58.02227662549186],[-125.09428552363148,58.02222159652296],[-125.09460039900651,58.02215530883563],[-125.09491527326873,58.02208902041091],[-125.09521158601501,58.02200241538742],[-125.09550787035135,58.02191693120645],[-125.09582274100916,58.021850640660034],[-125.09615980957508,58.02182936656102],[-125.09649272608186,58.02180469850838],[-125.09682955083541,58.02179351614639],[-125.09716463692276,58.02176661774551],[-125.09749961460112,58.021744204472434],[-125.0978361148467,58.02174647747609],[-125.09815917573684,58.02169145352557],[-125.09848627970729,58.02164430780635],[-125.09882136327384,58.02161740525419],[-125.09915237526424,58.02158374436599],[-125.09947339724894,58.02152533849906],[-125.09977794505802,58.02144775240367],[-125.10008246470278,58.021371287112395],[-125.1003476335414,58.02125866258815],[-125.10062528360827,58.02115509497895],[-125.1009049946983,58.02105378403212],[-125.10118261483862,58.0209513367792],[-125.10145399200191,58.02084436028759],[-125.10171497411298,58.02072946165937],[-125.10195506019072,58.0206032053463],[-125.1021700445031,58.0204644415259],[-125.10237034747439,58.02031997037775],[-125.10257064890297,58.02017549895193],[-125.10277933335558,58.02003444857981],[-125.10301108047508,58.01990252615182],[-125.10326784558268,58.01978647469485],[-125.1035350830955,58.01967497973505],[-125.1037939344651,58.01956006298865],[-125.1040465427087,58.019440617209945],[-125.10430956978054,58.019327970863124],[-125.10460586579818,58.01924022377296],[-125.1049386467414,58.01922002070313],[-125.10526770622867,58.01926709205396],[-125.1055902574518,58.0193208490299],[-125.10592389855806,58.0193533677314],[-125.10625314748242,58.01939258622638],[-125.10655606753546,58.01947088623932],[-125.10680930080143,58.019591476776355],[-125.10703470419422,58.019725340834626],[-125.10723656353808,58.01987026386576],[-125.10743630818162,58.0200151724739],[-125.10764462615147,58.02015565138861],[-125.10785717823315,58.020296158268245],[-125.10806547267394,58.02043775806194],[-125.10826522354087,58.02058266551989],[-125.1085551398126,58.02067433424694],[-125.10888651938072,58.02071356043063],[-125.10922245181754,58.02073935610275],[-125.10955396576306,58.02077297316799],[-125.10987433993407,58.02083007025978],[-125.110185930613,58.02090056811872],[-125.11049746927704,58.02097330824335],[-125.11081131155412,58.02103821127862],[-125.11113825146181,58.021086375667345],[-125.11147429504081,58.02110767971166],[-125.11181277397124,58.02111553905451],[-125.11214903054442,58.021127869449934],[-125.1124826138043,58.02116373631617],[-125.11280296924532,58.02122194790271],[-125.11311459519743,58.021291317466115],[-125.11342402644668,58.021364036745666],[-125.11373785055909,58.0214300544277],[-125.11406260183362,58.02148156212344],[-125.11439859765954,58.02150510181051],[-125.11472956820676,58.02147252382464],[-125.11504440115637,58.02140618800768],[-125.11536335987647,58.02134436546397],[-125.11568647089989,58.02128593466825],[-125.11591847662588,58.02141085405102],[-125.11603726029662,58.02157989066681],[-125.1161943773438,58.02173908579108],[-125.11642839826588,58.021868504334996],[-125.11668387505087,58.021985725976165],[-125.11694578177905,58.02209962462586],[-125.11719906618644,58.02222019581013],[-125.11744166470258,58.02234518260505],[-125.11767783649061,58.02247349153106],[-125.1179075815473,58.02260512262378],[-125.11812232873059,58.02274450602053],[-125.1183221307273,58.022889398802334],[-125.11851981783317,58.02303427734273],[-125.11872816772436,58.023175860930344],[-125.11895149239292,58.02331081293625],[-125.1191791042543,58.02344354950192],[-125.1194109769853,58.02357519210268],[-125.11965356531314,58.023701296563665],[-125.11990477907295,58.023820727381704],[-125.12017102028177,58.023931283325005],[-125.12044800330546,58.02403517942971],[-125.1207336378778,58.0241312801969],[-125.1210235857606,58.02422404371599],[-125.12131570412899,58.024314577536686],[-125.12160779764423,58.024406232227484],[-125.12189560704108,58.02450010146543],[-125.12218947874348,58.024606348317946],[-125.12246861511049,58.02470913271639],[-125.12274777923666,58.02481079504242],[-125.12303125662311,58.024909120081574],[-125.12332121620022,58.02500187869265],[-125.1236111772114,58.02509463668368],[-125.12390547755268,58.02518293580946],[-125.12420625989829,58.02526566841379],[-125.1245157454319,58.02533836231507],[-125.12483837643501,58.025392073166536],[-125.12517211437462,58.0254234225042],[-125.12550836165614,58.0254379623339],[-125.12584727465371,58.025428963623916],[-125.12618030806398,58.025399735485195],[-125.12651736515627,58.02537950621136],[-125.12685583356418,58.02538957047928],[-125.12718957316748,58.02542091477727],[-125.12751670273308,58.0254634317982],[-125.12784150784182,58.02551490622271],[-125.12816409298908,58.025570852058635],[-125.12848236775432,58.02563013401243],[-125.12879183853212,58.02570393953986],[-125.12906671588578,58.02580892567574],[-125.12928366551269,58.02594718390997],[-125.12944725896521,58.0261041625781],[-125.12958741480585,58.026267718407176],[-125.12973609043264,58.02642908626132],[-125.1298762487468,58.02659264184534],[-125.13001429163468,58.02675618352811],[-125.13019490295818,58.02690990716999],[-125.13048489571642,58.02700265043505],[-125.13082139311976,58.02700708337435],[-125.13115828029547,58.02699469289124],[-125.13149725794115,58.02698343682372],[-125.13183613154644,58.02697666591662],[-125.13216999322917,58.027003511807074],[-125.13247300288981,58.027082875196825],[-125.13275869147607,58.02717895057182],[-125.1330725723368,58.027246044753866],[-125.13340186708011,58.027287439678304],[-125.13373555133087,58.02732213220645],[-125.1340693656625,58.0273512163726],[-125.13440325816006,58.02737693518748],[-125.13473924192957,58.02740378838321],[-125.13507310949164,58.02743062703177],[-125.13540922348531,58.027451871012765],[-125.13574541538775,58.02746974962937],[-125.13607923259141,58.02749882877873],[-125.13640182126292,58.027555876351684],[-125.13670698685407,58.02763412236212],[-125.13700998540325,58.02771459702389],[-125.13732609824223,58.02777720889651],[-125.13765537655668,58.02781971486884],[-125.1379915212751,58.027839830855456],[-125.1383266833341,58.02781058601977],[-125.13863117600455,58.0277340323373],[-125.13895012389311,58.027673274562325],[-125.1392831670143,58.02764401369089],[-125.13962227672198,58.02762712946479],[-125.13995911512319,58.02761695979735],[-125.14029791580212,58.02761353194614],[-125.1406364337572,58.027622439819126],[-125.14097268105212,58.0276380622709],[-125.14131101965407,58.02765481898872],[-125.14164719052113,58.027673804266904],[-125.1419833873848,58.02769166719162],[-125.14232182950661,58.027703935319025],[-125.1426603743942,58.02771171655706],[-125.1429989706742,58.027717253920976],[-125.14333761828586,58.02772054741039],[-125.14367634277414,58.02772047551666],[-125.14401310412693,58.02771366015266],[-125.14435012121295,58.027695628856016],[-125.14468713797494,58.02767759670968],[-125.14502586207269,58.02767752139468],[-125.1453619328018,58.02770098336089],[-125.14569343844317,58.02773899702542],[-125.1460227514377,58.02778036086602],[-125.14635214173585,58.027818359369974],[-125.14668821455643,58.02784181800366],[-125.14702673608805,58.02785070968835],[-125.14736556372621,58.027846142405465],[-125.14770054013145,58.027824724619435],[-125.1480337051458,58.027789834385786],[-125.14836281437638,58.02774706577312],[-125.14868988251496,58.0277009183366],[-125.14901284366688,58.027649135591226],[-125.14933590567271,58.027592866031235],[-125.1496548095902,58.0275332042218],[-125.14997164663154,58.02747128516967],[-125.15029057391183,58.02741050034156],[-125.15060536837248,58.02734520180551],[-125.15091401479202,58.02727089010313],[-125.15121235576332,58.02718417385722],[-125.15147947803233,58.027073703619855],[-125.15165861186217,58.02692229407655],[-125.15175353449813,58.02675015963448],[-125.15181892465868,58.02657335099729],[-125.15186317320068,58.0263952864844],[-125.15187993054269,58.02621592580713],[-125.15189245449261,58.026036538289624],[-125.15190921153436,58.025857177678745],[-125.15192173522449,58.02567779022855],[-125.15193637538039,58.02549841624818],[-125.1519700645753,58.02531916322121],[-125.15203330930103,58.02514346282584],[-125.15212401795561,58.02497018007846],[-125.15223369864326,58.02480038270365],[-125.15235391033329,58.024632895429434],[-125.15248256171948,58.02446658329297],[-125.15260912078303,58.0242991361316],[-125.15273986106952,58.024133958738716],[-125.1528979880621,58.0239745632465],[-125.15314419609373,58.023851619299734],[-125.15346507739622,58.02379644807684],[-125.15380396882973,58.0237873784655],[-125.15414008606513,58.02380745373622],[-125.15447159147126,58.02384432395425],[-125.15480536564655,58.02387447770742],[-125.15514150945863,58.02389342895475],[-125.1554776536103,58.02391237935678],[-125.1558136971406,58.02393581493731],[-125.15614518009558,58.02397380251368],[-125.1564699863431,58.02402632875762],[-125.15679489434432,58.024074368189694],[-125.1571286472329,58.02410563765226],[-125.15746479428992,58.0241245830588],[-125.15780320928322,58.024136811923334],[-125.1581418258635,58.024140067877504],[-125.15843798355603,58.02405444396211],[-125.15860029383833,58.02389618990717],[-125.15880039773725,58.02375163365242],[-125.15905704165752,58.023634353005335],[-125.15933661332826,58.023532919473624],[-125.159634854847,58.02344842778621],[-125.15994135996237,58.02337296072596],[-125.16024995520165,58.02329862777888],[-125.16055854921792,58.02322429412498],[-125.16087331576063,58.02315785018921],[-125.16119833743029,58.023106051540516],[-125.16152938166134,58.02306887153363],[-125.16186433237216,58.023046296843596],[-125.16220313984964,58.023040570451876],[-125.16254164676157,58.023048301274784],[-125.16287796227599,58.02305938249621],[-125.16321656957014,58.0230626255842],[-125.16355540199683,58.02305577425671],[-125.16389234283137,58.0230388152658],[-125.16422540029514,58.02300612785296],[-125.16455036606436,58.022956564070384],[-125.164867139857,58.022894610005615],[-125.1651715883604,58.02281575324137],[-125.16543448039957,58.02270186466015],[-125.16564294245272,58.02256071575126],[-125.1658388291341,58.02241387971536],[-125.16603259787374,58.02226703020321],[-125.16625365395447,58.022130445705606],[-125.16651235495563,58.02201428565884],[-125.16679811900576,58.02191848383428],[-125.16709839746349,58.021836231845334],[-125.1674110990703,58.021766394894314],[-125.16774404264224,58.02173818477643],[-125.16808258868683,58.02174365853755],[-125.16842123427772,58.02174464541798],[-125.1687601035521,58.02173553788843],[-125.1690969308081,58.02172305181822],[-125.16943198910467,58.021694850658925],[-125.1697569118131,58.02164639578807],[-125.17009393643123,58.02162493515899],[-125.17042999339643,58.02164721241008],[-125.1707638104256,58.021675083208756],[-125.17109752882344,58.02170743919854],[-125.17142913141655,58.02173978122872],[-125.17176287572575,58.02177101405246],[-125.17209671959878,58.02179776001786],[-125.17243270507538,58.02182339675437],[-125.17276871574317,58.02184791114002],[-125.17310261046163,58.02187241158069],[-125.17343859729421,58.02189804578938],[-125.1737746092879,58.02192255764695],[-125.17410850532768,58.02194705557545],[-125.17444451819807,58.02197156574947],[-125.17478053150752,58.02199607507878],[-125.1751166439036,58.02201609753479],[-125.17545278131031,58.02203499763821],[-125.17578663016292,58.022061734390135],[-125.17611366227588,58.02210973979293],[-125.17642324689888,58.02218119167614],[-125.17672193066268,58.022267157233465],[-125.17702283063282,58.0223486491376],[-125.17733894039164,58.022412287476065],[-125.17766488628378,58.02246140403907],[-125.17799306469185,58.0225060469034],[-125.17832236732878,58.02254733089501],[-125.17865274499675,58.02258749902249],[-125.17898212271488,58.022625416865765],[-125.17931359299725,58.02266446840942],[-125.17964398968968,58.022704634194646],[-125.17997003920894,58.022749259113276],[-125.18029812484843,58.02279838236525],[-125.18062743258822,58.022839660688106],[-125.18096129228924,58.022866384531774],[-125.18129863688286,58.02287854732333],[-125.18163743986558,58.02287277164597],[-125.18197337002773,58.022853517606855],[-125.18230842873558,58.022825284117886],[-125.18262726408545,58.02276442241587],[-125.18293371734043,58.02268890266505],[-125.18325255051667,58.022628039479805],[-125.1835875086117,58.022604288827466],[-125.18391799001483,58.022639957898235],[-125.1842417494328,58.022693531639504],[-125.18456220474724,58.02275269271858],[-125.18486743164847,58.02283082830432],[-125.18515108114795,58.022927899777024],[-125.18543040178311,58.02302943088876],[-125.18571831151395,58.023125405478005],[-125.18602792281065,58.02319683518169],[-125.1863550752287,58.02324032952942],[-125.18668874804102,58.023276011157904],[-125.18701923831051,58.02331167258281],[-125.18735186261674,58.02334734616924],[-125.18769037745821,58.023355013271605],[-125.18801735887152,58.02330876979286],[-125.18831033141592,58.023219695860895],[-125.18857629066261,58.02310802405908],[-125.18881191502541,58.022979342679555],[-125.18901401404244,58.02283475417948],[-125.18918351638942,58.022679872643074],[-125.18932780675898,58.022516986327275],[-125.18946996252285,58.022354086940474],[-125.18963422670551,58.022196929841],[-125.18982371680053,58.02204777716667],[-125.19004047637758,58.02191000616777],[-125.1902980282514,58.021794915239035],[-125.19061689027637,58.02173179151826],[-125.19095534283001,58.02174169335355],[-125.19127587313562,58.021797473737266],[-125.19158762461765,58.02186778175528],[-125.19188636479004,58.02195259186688],[-125.19216783694849,58.02205300007635],[-125.19246662819411,58.02213556588639],[-125.19280039352486,58.02216674616484],[-125.1931390918108,58.02216542736576],[-125.19347012016352,58.02212704674192],[-125.19377238588103,58.02204811209347],[-125.1940757241565,58.021968061590385],[-125.19439353156278,58.02190492251038],[-125.19471233947893,58.02184403202798],[-125.19502801144102,58.02178087858685],[-125.19533759068082,58.021706471155646],[-125.19563162403358,58.021616266238745],[-125.19589645942357,58.021505695146665],[-125.19613623328199,58.02137926957322],[-125.19634250414256,58.02123581722027],[-125.19648145852925,58.02107289155261],[-125.19663201910812,58.020911157231424],[-125.19685609071668,58.02077678447158],[-125.19711675592387,58.02066282108409],[-125.19739929653774,58.02056469180036],[-125.19769954500937,58.02048012813765],[-125.19800906026336,58.020407957639684],[-125.19832678296856,58.02034705222694],[-125.19865269931786,58.02029965506043],[-125.19898777054863,58.020269136799435],[-125.19932459848411,58.02025545302652],[-125.19966301608734,58.02026645429437],[-125.19999915016314,58.02028529259823],[-125.19700838658457,58.02246242593713],[-125.20840129239795,58.021821537598235],[-125.22076563882138,58.019229194598],[-125.22570620223684,58.016942847874546],[-125.2418072756247,58.01109501970823],[-125.2496349456916,58.0073705503253],[-125.25682571336631,58.004961131875035],[-125.26220465089587,58.00341171624479],[-125.27057805770538,58.002766803911584],[-125.27552325149148,58.00216113505465],[-125.27543522599468,58.00206307663518],[-125.27526877359314,58.00191860616185],[-125.275201972079,58.001872257221954],[-125.27523520074125,58.001850005245124],[-125.27530362638566,58.001812241657916],[-125.27537407545502,58.00172401623102],[-125.27558979738654,58.00161751155389],[-125.27594126938392,58.00154763453594],[-125.27613196246337,58.00147688502921],[-125.27618698548056,58.00136614324612],[-125.27623091282717,58.00128226011099],[-125.27626437182471,58.0011927121422],[-125.27630264503293,58.00107290662178],[-125.27635230081452,58.00096662219799],[-125.27640039293652,58.00088612646969],[-125.27644872267452,58.000793294241674],[-125.27655484500832,58.00071984264194],[-125.27668821254159,58.00071495714684],[-125.27678149873765,58.00070424633195],[-125.27684983430497,58.00067096799475],[-125.27690964403172,58.00064100829787],[-125.27702398360483,58.000581060237685],[-125.27733551787726,58.00049638242147],[-125.27770859468316,58.00045690146889],[-125.27786097648841,58.000453239288994],[-125.27792422525276,58.00040983836578],[-125.27804091965722,58.00033644281313],[-125.27815523492679,58.000277615302494],[-125.2782489509394,58.000244473494355],[-125.27832444191101,58.00022357087876],[-125.2784918015937,58.00021101602323],[-125.27884743559548,58.00019835642101],[-125.27928684358226,58.000174931970506],[-125.27970551256396,58.00012896189499],[-125.28005378170901,58.00005905700111],[-125.28025462222246,58.000010788813626],[-125.28029178013507,58.00000313782005],[-125.28030876617123,57.99999986454021],[-125.28036288400443,57.99999118333358],[-125.28058158690534,57.999948619012926],[-125.28089993936244,57.999894253336464],[-125.28113353328284,57.99984728186867],[-125.28131708933317,57.999816864868606],[-125.28148130336199,57.999803167739415],[-125.28157432832627,57.999805911570036],[-125.28167269718368,57.99980531924516],[-125.28181990376441,57.999796016650954],[-125.28202744876303,57.99978367354437],[-125.28226537644838,57.99978607443479],[-125.28240085509859,57.99978119460929],[-125.28246843361232,57.99978716588584],[-125.2826153612649,57.999792441899],[-125.28288264442655,57.99980845878693],[-125.28315308762942,57.99982561371971],[-125.28331569961406,57.99983994608373],[-125.28342547497218,57.999851751449555],[-125.28361462105262,57.999861739403094],[-125.28389369688952,57.99986996624204],[-125.28427188711859,57.99989442646094],[-125.28466462765859,57.999932422931835],[-125.28482918491717,57.99995573678174],[-125.2849037530117,57.99987201516175],[-125.28505228561147,57.9997370953843],[-125.28515231583934,57.999650145157126],[-125.28517387337689,57.999628949925274],[-125.28526345801521,57.99959017307238],[-125.28546899377962,57.99951612514672],[-125.28572988129837,57.99942442724678],[-125.28591069401342,57.9993715570404],[-125.2860468533366,57.99933078555589],[-125.2862201043724,57.99928572579318],[-125.28646744477756,57.999238818572245],[-125.2867837314737,57.999181063107926],[-125.28710399187166,57.99913678747128],[-125.28731610248558,57.99910651476157],[-125.28740620047786,57.9990957795606],[-125.28748785477649,57.999084999236885],[-125.28768603765556,57.9990636245119],[-125.28792025841415,57.99903907687409],[-125.28803379277157,57.99901949335274],[-125.28806761369607,57.9990207953192],[-125.2881376471988,57.999008831020376],[-125.28826271672695,57.99899491687137],[-125.28834118939659,57.998984119068055],[-125.28841448895281,57.99896768558657],[-125.28854598867319,57.998949318998285],[-125.28864366740018,57.99892965046897],[-125.28868391867658,57.99892650009352],[-125.2888006334523,57.9989069328713],[-125.2890972828571,57.99888047250246],[-125.28941632331568,57.99884403614805],[-125.28958798829568,57.998827003922756],[-125.28969087753975,57.998811848806994],[-125.2897660833825,57.998805519238374],[-125.28982618195268,57.998815933442216],[-125.2900120585097,57.99883038139507],[-125.29026196162461,57.998814885961096],[-125.29047015562446,57.99876776328058],[-125.2906617036584,57.99870597089158],[-125.29093851250856,57.998609861137545],[-125.29129490337559,57.99849959235951],[-125.29169474487092,57.99838506674154],[-125.29216036340502,57.99825967260913],[-125.29249186152555,57.99817955221372],[-125.29263544178289,57.998137691839794],[-125.29273766341042,57.99810122027011],[-125.29295847747393,57.99805752546976],[-125.29336988066497,57.998002501505695],[-125.2937337591212,57.99799994054764],[-125.29392809347085,57.9980144277922],[-125.2940608260654,57.99798596785353],[-125.29424813404387,57.99792414800319],[-125.29447650408953,57.99787263939017],[-125.29461044929482,57.99783633405448],[-125.29473172488989,57.99779884004772],[-125.29494836791432,57.99775175512897],[-125.29528358038908,57.99769856614301],[-125.2956291988618,57.9976544041009],[-125.295809484148,57.99762843654833],[-125.2959115540466,57.99759981305634],[-125.29605598804837,57.997568048046965],[-125.2962174053379,57.99753300758725],[-125.29638544078264,57.99748342089867],[-125.29655848172261,57.9974484412942],[-125.29671949878887,57.9974347086972],[-125.29690790635038,57.99742672820568],[-125.29712070836642,57.99741551105892],[-125.29723504703023,57.997409383338685],[-125.29731156671438,57.99738959716193],[-125.29753787687908,57.99739078814719],[-125.29782690422935,57.99743156493587],[-125.29798724956719,57.99745371875831],[-125.29807522548809,57.99744296525505],[-125.29824170580012,57.99742028668036],[-125.29847078099912,57.9973867207515],[-125.2986351917213,57.99736066598933],[-125.29884809759157,57.99734383859799],[-125.29916701082468,57.99731298649593],[-125.29935681817723,57.99728706417077],[-125.29939934929541,57.99727494968316],[-125.29944690835761,57.99727632086562],[-125.29956882474461,57.997261258049676],[-125.29989041567704,57.997257336873865],[-125.30050555830867,57.997221305087564],[-125.30104731685267,57.99715123805434],[-125.3012426308654,57.99711300420803],[-125.3013275453393,57.997096624511975],[-125.30143788186591,57.99707813457307],[-125.30151823220888,57.99707967659804],[-125.30156465857438,57.99708552753133],[-125.30172041990085,57.9971267202074],[-125.30216363897229,57.997179510066886],[-125.30257808221727,57.997187283820224],[-125.30270850278907,57.99716889774973],[-125.30267911410797,57.99710032618375],[-125.30264178293672,57.99694647096304],[-125.3026549072354,57.99686578379095],[-125.3028099419268,57.996775743343655],[-125.303079390617,57.996617882036084],[-125.30334860808651,57.99647235669023],[-125.3037701533345,57.9963814624582],[-125.30421216617424,57.996384888529306],[-125.30450184171423,57.99627648055709],[-125.30481680530933,57.996002205977476],[-125.30503402044059,57.995865379423115],[-125.30507744796114,57.99586224067511],[-125.3050812626512,57.995884692646456],[-125.30520902043115,57.99600985586525],[-125.3055640739775,57.9960834860413],[-125.30593069097333,57.99593173263034],[-125.30606830880778,57.99581019304376],[-125.30614384625831,57.99584311223143],[-125.30630185952192,57.99593366185662],[-125.30652648296943,57.99602567893695],[-125.30675624880656,57.996068371695564],[-125.30689789011421,57.996072471966144],[-125.30701150533196,57.99604838646555],[-125.307152411847,57.996034536962625],[-125.30727421762575,57.99602507462111],[-125.30733935741274,57.99599064284613],[-125.3073475132708,57.99595030736597],[-125.30739891402781,57.99591580428021],[-125.30754438085104,57.99588403234271],[-125.30768261898541,57.99584324991916],[-125.3078844504232,57.995794945833026],[-125.3082060536665,57.99573268130201],[-125.30845642450547,57.99569023591481],[-125.30867254243317,57.99567004478302],[-125.30900763428856,57.995621307450484],[-125.30948755271018,57.995518359851665],[-125.30996381586121,57.995383986736336],[-125.31034769674764,57.99526932360936],[-125.31074777517152,57.99513679737241],[-125.31126632773831,57.994945436266576],[-125.311952446414,57.99478522026758],[-125.31263658782102,57.99473266451585],[-125.3130331852668,57.99473134120653],[-125.3131971192346,57.99473106311549],[-125.31336076959924,57.99474536420402],[-125.31359704414609,57.994779105784],[-125.31378169684788,57.994802487168386],[-125.31386592415905,57.994823108962066],[-125.31395146701091,57.99482915662321],[-125.31405010563984,57.994813961063734],[-125.31414369434874,57.99478528025111],[-125.31431142749727,57.99475025061842],[-125.31456170296748,57.99471227981688],[-125.31476319191955,57.994681909352586],[-125.31493595721331,57.994660364007366],[-125.31519005206245,57.99464484369104],[-125.31544640476069,57.99462148325248],[-125.31557179715382,57.994588478127675],[-125.31562821838124,57.9945685785451],[-125.3156567609992,57.994568724869524],[-125.31578262613344,57.99456824844505],[-125.31596857337946,57.994578174203255],[-125.31605735811486,57.99458087231888],[-125.31611663648228,57.99457781120607],[-125.31626558515349,57.99458642539981],[-125.31641251760678,57.99459054269297],[-125.31653512032464,57.99459453526215],[-125.31663236472556,57.9945972763068],[-125.31669156141444,57.994598700930176],[-125.31673392058657,57.99459555293861],[-125.31686481966821,57.99460856048709],[-125.31715858639075,57.994621279498084],[-125.31746623443405,57.99462621761953],[-125.31761316717476,57.99463033359135],[-125.31770487143078,57.99464650476116],[-125.31798928260463,57.99470852462482],[-125.31839361313315,57.99480592590318],[-125.31883057258754,57.99491246527212],[-125.31927188980761,57.99501117421456],[-125.31965761943496,57.995084923157606],[-125.31986000198853,57.99512184570234],[-125.3199042325878,57.995132165466366],[-125.31992942885763,57.995142388249825],[-125.32003156440811,57.99516758377918],[-125.32022101447323,57.99521789913367],[-125.32037344521692,57.99526802575939],[-125.32042385851152,57.995287349648116],[-125.32050323799339,57.99528438890695],[-125.32075121318533,57.99525648920811],[-125.32101645232936,57.99520960961823],[-125.32111646262389,57.995176470178954],[-125.32114522882344,57.99516427883836],[-125.32119548569679,57.995134251132896],[-125.32128103586703,57.99508197080784],[-125.32138679074686,57.99502306352992],[-125.32147234039729,57.99497078308852],[-125.32155031363833,57.99492855850998],[-125.32163145061567,57.99488634996559],[-125.32172326329106,57.994838587608164],[-125.32182244919319,57.99479198425077],[-125.32192471437766,57.994751004473095],[-125.32203334430702,57.99470893534264],[-125.32209197845876,57.99468343627264],[-125.32216344702849,57.99464902953452],[-125.3223478521031,57.99456921044432],[-125.32254819058257,57.99448498556464],[-125.32264624459562,57.994442862283854],[-125.32266965003076,57.994435129833775],[-125.32271835318376,57.99443201213598],[-125.32284234895836,57.99441693875806],[-125.32303341969707,57.99431920694875],[-125.32327805206293,57.994182490384475],[-125.32350416378142,57.99413540760312],[-125.32367172364569,57.99410933822107],[-125.32380409815516,57.99404046958136],[-125.32394344159599,57.993995189722604],[-125.3242385787404,57.9939316312662],[-125.3246547661794,57.99384064462055],[-125.3249942926457,57.99377843067954],[-125.32525933462595,57.99374163621734],[-125.3255456051723,57.99370046209123],[-125.32591254132785,57.99364287072064],[-125.32626660615381,57.993595307786244],[-125.32651972062567,57.99357527463691],[-125.3268583567579,57.99356240188859],[-125.32723512008405,57.993546355643375],[-125.32746366349379,57.99353965606716],[-125.32767430256777,57.99352837952803],[-125.3280193626991,57.99351104979647],[-125.3284765490358,57.99349204007633],[-125.32900640454775,57.993490218075685],[-125.32952868510147,57.99343788396858],[-125.32987812544384,57.99335327550785],[-125.33008762857898,57.993287031128524],[-125.33029965143368,57.993257811826275],[-125.330493406399,57.993245324549065],[-125.3306539930752,57.993253981055695],[-125.33075318990893,57.99326569440147],[-125.3308102502153,57.99326822365794],[-125.3309210342072,57.99316334871519],[-125.33113167036325,57.99303429889753],[-125.33157186150697,57.99307800296668],[-125.3320846528265,57.99308393451832],[-125.33245308055153,57.99300053599594],[-125.33275520708087,57.992959425801516],[-125.33309073454123,57.99294203536017],[-125.33333413662878,57.992932035201434],[-125.33340398501876,57.99292901922634],[-125.33343886788585,57.99293031501332],[-125.3335339943997,57.99293303318119],[-125.33362497094232,57.992931244173235],[-125.33365562719214,57.992931397206284],[-125.33376205526619,57.992953238788594],[-125.33398442295594,57.9929958475569],[-125.33416892044502,57.99302817268508],[-125.33430391051455,57.993049034699155],[-125.33436715609015,57.993060566062994],[-125.33452319514421,57.99308714080198],[-125.33493801302575,57.99313070725616],[-125.33536235702691,57.993174319849125],[-125.33556612818901,57.99319327982972],[-125.33561263444294,57.993194632901705],[-125.33571497659754,57.99320747980512],[-125.33601953342075,57.993148428753564],[-125.33632680370212,57.99299517631343],[-125.33650026243278,57.99293322914229],[-125.33665689272229,57.99298672265512],[-125.33678366137639,57.99305352679515],[-125.33681911792989,57.993081742887924],[-125.33688449896103,57.993092162067114],[-125.33705607284165,57.99313787816432],[-125.33721179731094,57.99318239375051],[-125.33739252701317,57.993187777362245],[-125.33774912058274,57.99317608776135],[-125.33814344744198,57.9931825298601],[-125.3384982634196,57.99321120695218],[-125.33892767100099,57.99326829245185],[-125.33926104399966,57.99331368528074],[-125.33946908983154,57.99332929565915],[-125.33968798336488,57.993330378605776],[-125.33982953903372,57.99333892992391],[-125.33991717779318,57.99334609289552],[-125.34003539154338,57.99335901496076],[-125.3401029676413,57.99336495702267],[-125.34017370475893,57.993372036272234],[-125.34033071934581,57.9934030954164],[-125.34059068867032,57.99347391889712],[-125.3409857585518,57.993619434339436],[-125.34133997688383,57.99374231510708],[-125.34146082224403,57.9937866536259],[-125.34156067940584,57.99382079413511],[-125.34190765827469,57.99387522023277],[-125.34227438687306,57.99394880989882],[-125.34239403831008,57.994060437560975],[-125.34242938721624,57.99415594751454],[-125.34245546624179,57.99423683103244],[-125.34244527796471,57.99433548148322],[-125.34243927506112,57.99437582944998],[-125.34248254057486,57.994381650551546],[-125.34262214306888,57.99438121648938],[-125.34278686900966,57.99439548674796],[-125.34293762387689,57.994422025617524],[-125.34314289256137,57.994476872520096],[-125.34341105296689,57.99450286690039],[-125.3435849453325,57.99447680372089],[-125.34362224172347,57.994460163137084],[-125.34386853761355,57.9944669819203],[-125.34438172466372,57.99445043612448],[-125.34474249911135,57.994442113105706],[-125.34496543603089,57.9944533015959],[-125.34528970946569,57.994476202729864],[-125.34556828943637,57.994511216654644],[-125.34570244028603,57.99451972542657],[-125.34583872301656,57.994528244510306],[-125.34601841144296,57.99453361131129],[-125.34611670682149,57.99453633601698],[-125.34615589955976,57.994533163192855],[-125.346181122108,57.99454225951208],[-125.3462260678539,57.994633329070666],[-125.34636485144621,57.99486169309466],[-125.34659884514113,57.995089401468505],[-125.34686454143491,57.995196131929234],[-125.3469983217597,57.9952270695507],[-125.34704133794568,57.995246347135556],[-125.34716237042117,57.99528058703547],[-125.34738014725221,57.99534558297637],[-125.34755467426419,57.995404759199104],[-125.347608360583,57.99541960235582],[-125.34764714739751,57.99543885907808],[-125.3478654299942,57.99547581673157],[-125.34827464584377,57.99547893672892],[-125.34861921027041,57.995430146491834],[-125.34874236394762,57.99540270738368],[-125.348808956988,57.9954041538368],[-125.34906185652596,57.9954569807633],[-125.34945564259331,57.995557600980206],[-125.34975346084948,57.99564317184274],[-125.34992779900074,57.99577412635956],[-125.35010248391187,57.99600826945992],[-125.3503213546689,57.99619439864844],[-125.3504536096832,57.996252243769945],[-125.35047248942848,57.99626130842325],[-125.3506259529059,57.99619363743844],[-125.35094993385044,57.996050526684144],[-125.35118677168302,57.99593166685752],[-125.35138313281595,57.99582943395862],[-125.3516210362781,57.99570945698235],[-125.3517470008808,57.9956416512091],[-125.35177251603189,57.99563392391733],[-125.35178650416054,57.99562053265853],[-125.35183249028533,57.99559047278635],[-125.35192593241777,57.99550792816971],[-125.35202511768365,57.99539849301921],[-125.35212362490387,57.9953283104485],[-125.35222033039848,57.9953007397897],[-125.35227145679079,57.99527967750611],[-125.3522982116788,57.99526186175289],[-125.35236338622742,57.99522292202889],[-125.35241385037283,57.99517942452524],[-125.35244299333976,57.99514479636444],[-125.3524824957051,57.995123677619205],[-125.35248493757736,57.995042934434224],[-125.35262872223913,57.99486193299242],[-125.35300689583521,57.99470225637993],[-125.35332745909591,57.994572582790354],[-125.35349029724878,57.99445111746296],[-125.35355245977276,57.99440318984476],[-125.35360447869108,57.99439110417547],[-125.353824131712,57.994348425323004],[-125.35419056299644,57.994255984436215],[-125.35448165260705,57.99417888060682],[-125.35458170773111,57.994141230125976],[-125.35467597711747,57.994071025316394],[-125.35495695243208,57.99396695328047],[-125.35528969996776,57.993927061681326],[-125.35545669764633,57.99393235449041],[-125.35554179303347,57.99390360384241],[-125.35568988203669,57.9938403877351],[-125.35589437151971,57.993756133303634],[-125.35603912469581,57.99370187349253],[-125.35615844149983,57.9936508556355],[-125.35632024730822,57.99358882660841],[-125.35645557007862,57.99352891291265],[-125.3565334240734,57.9934911539818],[-125.35661046190648,57.99343881033835],[-125.35670878244788,57.993378718053286],[-125.35683781697661,57.99331540890228],[-125.35701964274556,57.993257961897505],[-125.35720682338483,57.993196054058004],[-125.35741573988727,57.99316116886618],[-125.35763907369902,57.993149906214],[-125.35777345265399,57.99314494481665],[-125.35792907347852,57.99313559907959],[-125.35818956135638,57.99311554145549],[-125.3584139436173,57.993104282550746],[-125.35856200046993,57.99310387247789],[-125.3586518337166,57.99310654730111],[-125.35873518616064,57.99311816368565],[-125.35899286926755,57.99313846841869],[-125.35944599350577,57.99316980497878],[-125.35991923973471,57.993138427206745],[-125.36040940792245,57.99304431957432],[-125.36083930859756,57.993011609271676],[-125.36103785348546,57.99302714050307],[-125.36127543794771,57.993047344618574],[-125.36171356639039,57.993090939254145],[-125.3620122147229,57.99312713633744],[-125.36213536884598,57.99316137269134],[-125.3621866211006,57.99319414380939],[-125.36220639653007,57.993213305392494],[-125.36232387551033,57.99320713707527],[-125.36251973437228,57.99319461341877],[-125.36268484345602,57.993186429046645],[-125.36281287738561,57.99318143228583],[-125.36289760380477,57.99317398552855],[-125.36298760669114,57.99316768549095],[-125.3632391572008,57.99317561521917],[-125.3635304332411,57.99321065213834],[-125.36364111123648,57.99323136848673],[-125.36376990695194,57.99324431993955],[-125.3640663275815,57.99328835295707],[-125.3643499669966,57.993336810829696],[-125.36456920785199,57.99337935359896],[-125.36474527417147,57.99341159621035],[-125.3649085589115,57.99344826415583],[-125.36515317922307,57.993490926707445],[-125.36537348777318,57.9935334732319],[-125.36550546789526,57.993545316551746],[-125.36562679600202,57.99356271709027],[-125.36579139445807,57.99358480947665],[-125.36602753830019,57.99362855174571],[-125.36630159868604,57.993681446348006],[-125.36651148876109,57.99371384718773],[-125.3666698194981,57.99373142236924],[-125.36679945686078,57.993757834013714],[-125.36687064344453,57.99380079223183],[-125.36691548044902,57.993838017482496],[-125.36703334574196,57.99387222422918],[-125.36721183383676,57.993886529561266],[-125.36729216111323,57.99388915349907],[-125.36729426861646,57.993826354222314],[-125.36730379613033,57.99370078086119],[-125.36735226979872,57.993585486441596],[-125.36745993999234,57.99347159412782],[-125.36753318633848,57.99339230804646],[-125.36755581829522,57.99336661862484],[-125.36760784029475,57.99329171832867],[-125.36772782890162,57.99313750684677],[-125.36787746373498,57.99298007089886],[-125.36798037229707,57.99289756030389],[-125.36805211437974,57.9928451850994],[-125.36817742683611,57.99275044291074],[-125.36836264933108,57.9926156067868],[-125.36848380611377,57.99251635830823],[-125.36851832195352,57.99247614427576],[-125.36854112051653,57.99244148276907],[-125.36857245558605,57.99240125367978],[-125.36860687691353,57.99236664714335],[-125.36865120038084,57.992309655594454],[-125.36869634632912,57.99226612702761],[-125.36871145153265,57.99224825299429],[-125.36876309252621,57.992195782390354],[-125.3688828297202,57.992055028001644],[-125.36898490062858,57.99189624455657],[-125.36902876031151,57.99180335980161],[-125.36905170878434,57.99175972621552],[-125.36908999010583,57.991683638955024],[-125.36915636405533,57.99157291513691],[-125.36921689585317,57.99149468982932],[-125.36926861047208,57.99143773306513],[-125.36930523921038,57.99139752886826],[-125.36936178587212,57.991304704004364],[-125.36947652217971,57.991147101758294],[-125.3695597194752,57.99104094364122],[-125.36958552915074,57.99101526896203],[-125.36962103291754,57.99097954574807],[-125.3696888051584,57.990910327199984],[-125.36975569770325,57.99083101015986],[-125.36982350517037,57.9907606701332],[-125.36993078332837,57.99066920619119],[-125.37015837888093,57.99052783842529],[-125.37038915318954,57.9903864852948],[-125.37045272932647,57.99031612503247],[-125.3704574852346,57.99028474296317],[-125.37047567712341,57.99027136969103],[-125.3704927260999,57.99026359897273],[-125.37054368495332,57.99025150181047],[-125.37081284353675,57.99028081055586],[-125.37123197990357,57.990256989046365],[-125.37141729365015,57.99011429846239],[-125.3714443969893,57.990011239919696],[-125.37152078734819,57.98999589737999],[-125.3717182758368,57.989947477198555],[-125.37203760835034,57.98988504936226],[-125.37229202221225,57.989846990439695],[-125.37249948229994,57.989834506841284],[-125.37279577599438,57.98982131878585],[-125.37313125680944,57.989803827765705],[-125.37338544439329,57.98977922476642],[-125.37355484022018,57.98976656083304],[-125.37372644411255,57.9897482991047],[-125.37393094540002,57.9897234619356],[-125.37406231471883,57.98970837581814],[-125.37411643516438,57.98969629213421],[-125.37416828960309,57.98969429209655],[-125.3742414417144,57.98968229759426],[-125.37438873504841,57.98966392104634],[-125.37456870318623,57.989651305384136],[-125.37476996695031,57.98962981653083],[-125.37503182506853,57.98958842252443],[-125.37520885116297,57.98949840267591],[-125.3752782733667,57.98939329838282],[-125.37554982139176,57.98934185444643],[-125.37602173842858,57.98938668173053],[-125.3763115399846,57.98944523714338],[-125.37639369359371,57.98946468797895],[-125.37652919714266,57.98945522669889],[-125.37682828981468,57.98940054406071],[-125.37713370686158,57.98934701185972],[-125.37726731840733,57.98932408195944],[-125.3773679571272,57.989313335579496],[-125.37760831079471,57.989293146395916],[-125.37793534310978,57.989275603948855],[-125.37815118231255,57.989267636995976],[-125.37820092298836,57.98926450396165],[-125.37825264660478,57.98927035284114],[-125.37848100629621,57.98927253795914],[-125.37889968126062,57.989275608410225],[-125.37926814327969,57.98924591802407],[-125.3794267300816,57.98918272499612],[-125.379547464913,57.98904308795397],[-125.37975267864346,57.98884664252138],[-125.379904314902,57.98875649859885],[-125.37993903731623,57.98870282377629],[-125.37993432351529,57.988604102311555],[-125.38006282449291,57.98869779084827],[-125.38031710323999,57.988731497629296],[-125.38062879236324,57.98874528179472],[-125.38083016488682,57.98884491565788],[-125.38093588237662,57.98897438843191],[-125.38097734222764,57.989025052099805],[-125.38101108338259,57.989030816509405],[-125.38110401488895,57.9890379769627],[-125.38128370053984,57.98904217476369],[-125.38152888345891,57.9890500405854],[-125.38177719144103,57.989061285189536],[-125.38198631557006,57.9890757126677],[-125.38218085909185,57.98907661329499],[-125.38251068192285,57.98908150429988],[-125.38289522647739,57.98910234970401],[-125.3831192272158,57.98911235783948],[-125.38328824830685,57.9891221115816],[-125.38359240179209,57.989144826682896],[-125.38390411395257,57.9891574817051],[-125.38402028862265,57.989165868994405],[-125.38402405779993,57.989129995636404],[-125.38411483982195,57.9890104048628],[-125.38432709067433,57.988963155879226],[-125.38450287831016,57.98907612518819],[-125.38468846837807,57.98917119408781],[-125.38500462934404,57.98917152960103],[-125.3852547225535,57.989137912520135],[-125.38539503939788,57.98909257368249],[-125.38551838401486,57.989050521324074],[-125.38563281115228,57.98903646745024],[-125.3858950034874,57.989038795610554],[-125.38624860426675,57.98907631275813],[-125.38646418675833,57.989149085363046],[-125.38658225669859,57.989170938159916],[-125.38665637797864,57.98916454926608],[-125.38672205911575,57.98915699996603],[-125.38682048988866,57.98915072267337],[-125.3869210521541,57.98914445509867],[-125.38705443728482,57.98913497342441],[-125.38719635400012,57.989121044444985],[-125.38731495503202,57.98911037304939],[-125.38745573260576,57.98910092490843],[-125.38756480793872,57.98909133116147],[-125.38759976364902,57.98908700520484],[-125.38762512062303,57.98908824312836],[-125.38769602324152,57.98908520364863],[-125.38777218561528,57.98908330984233],[-125.3877996571979,57.98908455743202],[-125.38781898123533,57.98906670069594],[-125.38802322635263,57.988991369501434],[-125.38836326156198,57.9888886206908],[-125.38854810800804,57.988835631522775],[-125.38867740853644,57.988817156845094],[-125.38885799982756,57.98870021743039],[-125.38895302264366,57.98851446942216],[-125.3889969019803,57.98841709244383],[-125.38907366514893,57.988378188367314],[-125.38916769134539,57.98831805315139],[-125.38929385520302,57.988232268487934],[-125.38941656461756,57.98816329167421],[-125.38946456999551,57.988137714837606],[-125.38949619710291,57.988143467424344],[-125.38964452574811,57.988125078870134],[-125.38984930057875,57.98808115176959],[-125.3899535148473,57.98804461586245],[-125.38997925385132,57.98802230182544],[-125.39000286005883,57.98800109962056],[-125.39002580005246,57.98795634110842],[-125.39003724732294,57.98790255740405],[-125.39006829017691,57.987814094158885],[-125.3901603171649,57.98768104623368],[-125.39028615630508,57.98755039589719],[-125.39040084061762,57.98745446359251],[-125.39056287260212,57.987373327983555],[-125.39084323175294,57.987233288398784],[-125.39110018514629,57.987100992556044],[-125.39120606127364,57.9870274510865],[-125.39123214432833,57.98698382834191],[-125.39124300770403,57.986965932572325],[-125.39131304031558,57.986950549823426],[-125.3915658091284,57.986881042660755],[-125.39208286054958,57.9866837571079],[-125.39277698470673,57.98638969775465],[-125.39327768736023,57.986156442757434],[-125.3934683707904,57.98606758296487],[-125.39361213614752,57.986004306112925],[-125.39375959202114,57.98584234676905],[-125.39378695832465,57.98565404553456],[-125.3937776356472,57.98557661413979],[-125.39383562997003,57.98552079853362],[-125.39400612414852,57.98537240260929],[-125.39435198352373,57.98523377505242],[-125.3947972889348,57.98515616292477],[-125.39517422774895,57.98512198112351],[-125.39539228020604,57.985106145424886],[-125.39556799066888,57.98509348235518],[-125.39586114902711,57.985074621277754],[-125.39615121612104,57.9850512592541],[-125.39628360777512,57.98503727766273],[-125.39634089436046,57.98502519941386],[-125.396398180909,57.985013121140646],[-125.39651394682707,57.984979997280526],[-125.39673519337765,57.984896879087465],[-125.39699055699761,57.98479596942847],[-125.39719680282711,57.98472512008599],[-125.39729973589134,57.984702031808446],[-125.3973952061164,57.98468227449303],[-125.39758381599184,57.98465620808508],[-125.39778017713975,57.98460774481534],[-125.39786039116272,57.98455090623475],[-125.39786512343444,57.98451952338542],[-125.39799135516817,57.984559348098024],[-125.39824486816038,57.98463900189869],[-125.39841022481708,57.98467900261966],[-125.39856269227357,57.98466510927529],[-125.39879772734305,57.98464485825556],[-125.39894701452383,57.984630950147704],[-125.399010222244,57.98457964218386],[-125.3990795148837,57.98447789056508],[-125.39916986085268,57.984381841597134],[-125.39948010807485,57.98421948755819],[-125.40000024328477,57.98402330770421],[-125.40004807589361,57.98400669907576],[-125.40048771952172,57.983951474280516],[-125.40080775389293,57.98403702984948],[-125.40114047569907,57.984122641584335],[-125.40131418417207,57.98416828404605],[-125.40142035854235,57.98420689393449],[-125.40160753343085,57.984270541656954],[-125.40176553700269,57.98430714049347],[-125.40186986680962,57.984327796513156],[-125.40205832300279,57.98437799041389],[-125.40242909111444,57.98446489097277],[-125.4028294440623,57.98455304446135],[-125.40311230399816,57.98458347084954],[-125.4033481709734,57.98457667448645],[-125.40356962838842,57.984546260177275],[-125.40381164411964,57.984485654743295],[-125.40403061485414,57.984411487040276],[-125.4041094686007,57.984372583926266],[-125.40425390237623,57.98433173036995],[-125.40453507578349,57.98426793370639],[-125.40472707193626,57.984228413428035],[-125.40476418881235,57.98422072793562],[-125.40484437366072,57.98416500667932],[-125.4050632877142,57.98402690718093],[-125.40525663210312,57.98390215232641],[-125.40531856898284,57.98386317314015],[-125.40543593959967,57.98379527990619],[-125.4057119887894,57.98365406921835],[-125.40609005345443,57.983480786308256],[-125.40636700390274,57.98334967252922],[-125.4065034172958,57.98328074153739],[-125.40665278168646,57.98319504435747],[-125.40688188278435,57.98308054045371],[-125.40704711097766,57.9829949133613],[-125.40718871050903,57.98293161262579],[-125.40738964966246,57.98286072423267],[-125.40761374353085,57.982862840717765],[-125.40780360246153,57.98289060114646],[-125.40788122435762,57.98286178460965],[-125.40786441113266,57.982788807623656],[-125.4077989532654,57.98271561478962],[-125.40785617430886,57.98264072316955],[-125.40812248816144,57.98251292344888],[-125.40846332838044,57.982351806348184],[-125.40876196951294,57.98218489359696],[-125.40896866657602,57.98201532990022],[-125.40908758452606,57.98191603642622],[-125.40917261159872,57.98188725197119],[-125.40922143241242,57.98187513079361],[-125.40927426989323,57.98187648626465],[-125.40942755894024,57.98187604314128],[-125.40965679227332,57.98181985712679],[-125.4098195338854,57.981689352826656],[-125.40993057334822,57.98155301188575],[-125.41011549406129,57.9813564325213],[-125.41030112684582,57.98118116598178],[-125.41047921752106,57.98108325442319],[-125.41081108535369,57.98095349606914],[-125.41117268962226,57.98081489555233],[-125.41135625796664,57.98077084251601],[-125.41142389297438,57.980772262412664],[-125.41149060240255,57.98076582718756],[-125.41158457363768,57.980705676674],[-125.41170038871334,57.980600759518204],[-125.4117861134799,57.98052711365878],[-125.41184613466848,57.980474664332405],[-125.41193355148678,57.98042794357049],[-125.41209318181409,57.98036023105412],[-125.41233141998964,57.98026818997668],[-125.41254105542227,57.98017938728926],[-125.41266362502859,57.980115997247566],[-125.41276555812577,57.98008728499689],[-125.4129009485241,57.98008227286672],[-125.41307432265751,57.98008191395176],[-125.41324774935657,57.9800781903293],[-125.41334101524963,57.98006289838652],[-125.41335806823848,57.98005400078574],[-125.41341773611794,57.98002398066028],[-125.41353691396198,57.979974033778696],[-125.4135955160664,57.979944008893725],[-125.41367244393109,57.97996004891425],[-125.4138665208639,57.979987819209015],[-125.41405734848011,57.98002006123768],[-125.4141998663627,57.98003302422366],[-125.41430447099593,57.98003572652074],[-125.41440316997173,57.980011485116975],[-125.41450545116284,57.97996034165727],[-125.41456628895305,57.9799224751634],[-125.41469296012978,57.97986695228299],[-125.41491750866705,57.97977036035113],[-125.41506748614906,57.97971157460128],[-125.41515638249665,57.97970523481357],[-125.41532467073027,57.97969139184741],[-125.41551593392677,57.97969671599926],[-125.41567618549475,57.97972433549498],[-125.41579855819867,57.979740573270185],[-125.41587639562017,57.97976558855987],[-125.41594633699339,57.979821973219416],[-125.41603708763938,57.979900880321196],[-125.41612486830473,57.97996631552315],[-125.41620026105021,57.980012629773924],[-125.41625477443515,57.980042029088764],[-125.41628627680048,57.98005562573875],[-125.41637313218868,57.980112084170976],[-125.41651860738725,57.98020693228293],[-125.41669065812407,57.98029180227172],[-125.41683767107159,57.98035525277963],[-125.41695948914081,57.98040737734024],[-125.41711537729027,57.980443948615424],[-125.41730002424836,57.98046606486368],[-125.41738448495505,57.98047316306507],[-125.41740172856237,57.980451928497146],[-125.41742885953605,57.980407184100336],[-125.41745476835035,57.98037252850399],[-125.41756064841302,57.980361774960656],[-125.41780247549663,57.980310116388964],[-125.41807071405034,57.98019127831888],[-125.41827721912573,57.98003067252583],[-125.41843435098627,57.97991920037597],[-125.41855091525665,57.979832225845506],[-125.41859698440524,57.979793171616386],[-125.41862692890997,57.97977087067594],[-125.41868685253354,57.97972402578743],[-125.4187242572077,57.97969727104525],[-125.41874447097896,57.979689508104144],[-125.41877532503686,57.97967618365509],[-125.41882744094997,57.97965622238051],[-125.41889258882098,57.97961276486956],[-125.41894379526192,57.97958270546255],[-125.41895782286271,57.979564821425335],[-125.41898986369587,57.97954365110821],[-125.41906585913537,57.979482295633744],[-125.41912672581242,57.97944330565979],[-125.41916517803836,57.97941767693413],[-125.41919171686125,57.97940994145937],[-125.41926215750519,57.97936650681969],[-125.41944648904266,57.9792730970619],[-125.41965505352319,57.97918427873202],[-125.41978732058003,57.979107465625866],[-125.41991704853179,57.97898914330565],[-125.4200741711671,57.97887766934922],[-125.42022363530535,57.978850279606135],[-125.42040425548892,57.97886003679537],[-125.42061607454536,57.978834039005015],[-125.42076878681459,57.97880217648342],[-125.42092565771836,57.978774818110516],[-125.42114400818097,57.97873651057749],[-125.42135849302281,57.97867463299072],[-125.42154865742233,57.97861264964172],[-125.4216815004873,57.978567241138435],[-125.42183448702123,57.97851743351247],[-125.42212756770641,57.97843122073297],[-125.42243767985575,57.97833723006626],[-125.42271123515843,57.978213919785574],[-125.42307036224328,57.978094343673185],[-125.42338454011188,57.97807999972682],[-125.42363811621975,57.978087824646416],[-125.42397388129753,57.97804329023515],[-125.42426217521647,57.977992942335774],[-125.42447962387092,57.97794453141572],[-125.42469676299159,57.9779151854522],[-125.42483016738845,57.9779011801726],[-125.4249692772289,57.97786028173902],[-125.42520380794669,57.97779960602889],[-125.42537046734662,57.97775433958753],[-125.42542469130952,57.97773326331555],[-125.42551696651014,57.97771347241525],[-125.42568269691272,57.97765922905851],[-125.42582383340103,57.97762282474157],[-125.42599824435383,57.97762357511442],[-125.42623690019518,57.97763918188564],[-125.42635614264752,57.97765203179306],[-125.426384621199,57.977656640485165],[-125.4264561879422,57.97767713631348],[-125.42655833043312,57.97770224977166],[-125.42674394931993,57.97772996493184],[-125.42699233283626,57.97773215334078],[-125.42714692680035,57.977714872045475],[-125.42724040351558,57.97768499101765],[-125.42734011939127,57.97766186610076],[-125.42742070681437,57.977645388429906],[-125.42748111750839,57.977634431975],[-125.4275055050114,57.977630050343244],[-125.42756283862896,57.97761347281807],[-125.42771349443237,57.97757710734999],[-125.42790232091238,57.97753305440967],[-125.42799646274722,57.97745943463432],[-125.42798428506235,57.97735619835365],[-125.4279627973637,57.97731012203302],[-125.42807148667437,57.977321803597455],[-125.4283216913053,57.97734306396876],[-125.42851603859503,57.97735286899481],[-125.42863893804683,57.977334328675724],[-125.42875776299813,57.9773056767087],[-125.42883938049881,57.97729032416883],[-125.428982643402,57.977253925646316],[-125.42922450293838,57.97719776057788],[-125.42945269785207,57.977135928822804],[-125.4296236281644,57.977087310701414],[-125.42963344650936,57.97699762743707],[-125.42955055849949,57.97688735970678],[-125.42972417316261,57.97687015677583],[-125.4300565808037,57.97690634553643],[-125.43033051335706,57.97689629966165],[-125.43066632785046,57.97684726249798],[-125.43099481915306,57.97679370700743],[-125.43112091187952,57.97677405647871],[-125.43123944443359,57.97676446769064],[-125.43146074835798,57.97673849325609],[-125.4315697765256,57.9767288636788],[-125.4315909836272,57.97672446776057],[-125.43175586942472,57.97672517004852],[-125.43202432037829,57.976727434573796],[-125.4321544028326,57.97672238039684],[-125.43225644744504,57.976684681423436],[-125.43245847069088,57.97667656833671],[-125.43259276176143,57.97674331177113],[-125.4327023958996,57.97683238154116],[-125.4328865600709,57.97688699950029],[-125.43302237523474,57.97692234517255],[-125.43317418902656,57.976948786150324],[-125.43337024338085,57.97698550891379],[-125.43354542938899,57.977004197762554],[-125.43374527250096,57.97700055972312],[-125.43390804561423,57.97700125038093],[-125.43394616408663,57.97699692583233],[-125.43404467337866,57.9769827633473],[-125.43423969608541,57.97694770031007],[-125.4343403528736,57.97693242514912],[-125.43445501189385,57.97689926422614],[-125.43460804222526,57.976844956073485],[-125.43478253205299,57.976769428928556],[-125.43503060091454,57.976650472117264],[-125.43535431062463,57.97649258023331],[-125.43563837964392,57.97637040998769],[-125.43579686772676,57.97630378640129],[-125.43587546939243,57.97627832277024],[-125.43595293824353,57.976258462123724],[-125.43604347763853,57.97621173914985],[-125.43617493843804,57.976115840245896],[-125.4363582812039,57.97601343101506],[-125.4365659240866,57.97591112416113],[-125.43676314794885,57.97579980051543],[-125.43688275216245,57.97571843123834],[-125.43695548104046,57.97566153845042],[-125.43703255509033,57.97559681302109],[-125.43708387600918,57.97555777484919],[-125.43713064976703,57.97554002716804],[-125.43717747389961,57.97551891499546],[-125.437195550843,57.97551114030665],[-125.43726696151818,57.97547218680579],[-125.43750233087455,57.97535317207329],[-125.43779524254604,57.975204117235705],[-125.43797837505666,57.97511516377449],[-125.43803908935294,57.97501335735871],[-125.4381435811584,57.97488145311181],[-125.43833535977228,57.974850856815415],[-125.43846405107253,57.97486822190599],[-125.43856746805632,57.974808092772214],[-125.43875502553183,57.97470569818016],[-125.43895810890628,57.974625799851616],[-125.43910048746406,57.974575928200565],[-125.43919203400493,57.97453257212531],[-125.43926447244863,57.97449474349374],[-125.4393198162285,57.97446918016338],[-125.43940460239412,57.97445383456743],[-125.43952743677652,57.97443864874968],[-125.43962470475236,57.97443681417794],[-125.43990395965811,57.97442228487219],[-125.44037352248203,57.974404067080435],[-125.44062721092688,57.97440288775843],[-125.44068644720436,57.97439977140385],[-125.4407891914226,57.97438450021006],[-125.44098392726683,57.97436737126625],[-125.441282605631,57.97432600300092],[-125.44151775303963,57.97429221908824],[-125.44165233701715,57.97426922957861],[-125.44180855707401,57.97428334194999],[-125.44197318240577,57.974300853973425],[-125.44205545347894,57.974312413636426],[-125.44209123792952,57.97432265731612],[-125.44217973385709,57.97434209385513],[-125.44249092662164,57.97438264913213],[-125.44295025222284,57.974413728169125],[-125.44330525311506,57.97442306073824],[-125.44353094717852,57.974456527468064],[-125.44386682707515,57.97454316647362],[-125.44428579745447,57.974658189745064],[-125.44458050318487,57.97474241234284],[-125.44467196499592,57.974776439864556],[-125.44478131963632,57.97481502802421],[-125.44509919689106,57.97490495370443],[-125.44551830753647,57.97501100121322],[-125.44587223919147,57.97509322395346],[-125.44604920560008,57.975134334974435],[-125.44608287808798,57.975144568816624],[-125.44613901203459,57.97506517100772],[-125.44631950016422,57.974867403825094],[-125.44661156427273,57.97462860152071],[-125.4469045578959,57.97439877498692],[-125.44714679226968,57.974099200864465],[-125.44738753563648,57.97375587942702],[-125.44764995933106,57.973520317105624],[-125.44803353172958,57.97331105143498],[-125.44845983537891,57.973070557743036],[-125.44874315372951,57.97284966011877],[-125.44891906571401,57.97260252254155],[-125.44912553302918,57.97236111875746],[-125.44944621782007,57.97211457831173],[-125.44972393530985,57.97191496534957],[-125.44984779207914,57.971829116269554],[-125.44990761481692,57.97178562223033],[-125.45001113636486,57.97171651251533],[-125.45018709631952,57.971609568350146],[-125.45039824992494,57.97148033782921],[-125.4507302236806,57.97125515065922],[-125.45108985111334,57.97101886095729],[-125.45125741534746,57.9709062731665],[-125.45158846247581,57.97074500886968],[-125.45221093112951,57.97045596187462],[-125.4525805210065,57.97026008528949],[-125.45274873094854,57.970102636228674],[-125.45304884149587,57.969814506004404],[-125.45334062392594,57.96951736865967],[-125.4535502898412,57.96927148590293],[-125.4537613274699,57.969003177452976],[-125.4539804899557,57.968757333061546],[-125.45423344869627,57.96851274820361],[-125.45459367238769,57.96815868945234],[-125.45497487708485,57.9678148095707],[-125.45523556104699,57.96761960291259],[-125.45557860755943,57.96735519580844],[-125.45604672474485,57.966773899302126],[-125.45624976419536,57.96610628361118],[-125.45624183118638,57.965705858361055],[-125.45624021112815,57.9655981831037],[-125.45636017283535,57.9655605394022],[-125.45675519238246,57.96542756288602],[-125.45729675473326,57.96524471184866],[-125.45766560231812,57.965093681465056],[-125.45789887512602,57.964965651699266],[-125.45804811413903,57.96487541277153],[-125.45798565480501,57.96481010925392],[-125.45775815156071,57.96475871502536],[-125.45760511035624,57.96474575580773],[-125.45761524727142,57.96462915612107],[-125.45766621981146,57.964392716964866],[-125.45771205801158,57.96421794203838],[-125.45771840916403,57.96399814475328],[-125.4576882113289,57.96367389515238],[-125.45765794231978,57.96350217557304],[-125.45759976087864,57.96343352471441],[-125.45749843752755,57.96320543891927],[-125.45741899662337,57.96285295060828],[-125.4573689749606,57.96258581945263],[-125.45733136870561,57.962409583961154],[-125.45728153774431,57.96220189551206],[-125.45724955873197,57.96207503090091],[-125.45723825224738,57.96205255401201],[-125.4572141058588,57.96204236185768],[-125.4571488752184,57.96202303014685],[-125.45707322501187,57.961993562096644],[-125.45699433199282,57.96196856697848],[-125.45672616938033,57.96188111613264],[-125.45630975729767,57.961742591073204],[-125.45598510570234,57.961688554787834],[-125.45566019506632,57.961652461354625],[-125.4553586832053,57.96153234689607],[-125.45523324860369,57.9614387465275],[-125.4551130406725,57.961349653573556],[-125.4549101564135,57.96120526704448],[-125.45478128560715,57.96112959692349],[-125.45458126234384,57.961079431238865],[-125.45417489459248,57.96097795156034],[-125.45389909702901,57.96090728696925],[-125.45384641785516,57.96089697738562],[-125.45384667869075,57.96087903376429],[-125.45385571769746,57.960838695226265],[-125.45386488709786,57.96078938487967],[-125.45389004303091,57.96073116764817],[-125.45390843540702,57.960700961295096],[-125.45399781301852,57.96058580829527],[-125.45417795617054,57.96033083391188],[-125.4543011608055,57.96006889716636],[-125.45435524387852,57.95983695925486],[-125.45438723581124,57.95967110196318],[-125.45437869042011,57.95953199586079],[-125.45425476356341,57.959335219106705],[-125.45397400251342,57.95909742482047],[-125.45366485949533,57.95885054140553],[-125.4534819852056,57.95856716395885],[-125.4534274896168,57.95824618014907],[-125.45341365356022,57.95803527395103],[-125.45339859795602,57.95798025680252],[-125.45338097330074,57.95795775377544],[-125.45336849186468,57.957944244143825],[-125.45323995816382,57.95777436479984],[-125.45291431351852,57.95735581679407],[-125.4526043013796,57.95695191231406],[-125.45246331014962,57.95676740124165],[-125.4525367004783,57.95673405637703],[-125.45287053934351,57.956734304820046],[-125.45354560343965,57.956734829464125],[-125.45460345281721,57.956639342825376],[-125.45582686414802,57.95627311139785],[-125.45692071885858,57.95580428162974],[-125.45761650545309,57.95554018752476],[-125.45793459667395,57.95545960868301],[-125.45822251246204,57.95534638196788],[-125.45857845600408,57.95513137109931],[-125.45886924091621,57.954892542727016],[-125.4589816523764,57.95471579624392],[-125.45899944348473,57.95458128421426],[-125.45900997540465,57.95450954870457],[-125.45901855527428,57.95450061123105],[-125.45893801690063,57.95444532928789],[-125.45869761188203,57.95426715121134],[-125.45839917012285,57.95401135116109],[-125.4581939115778,57.95381312735818],[-125.45810088057138,57.95367143606165],[-125.45806513704815,57.953440254837396],[-125.45810293339483,57.9531633896454],[-125.45822495775795,57.952905932809344],[-125.45838236079182,57.95268563021681],[-125.45852729667276,57.952450696952866],[-125.45866178108413,57.95220787044442],[-125.45880471389398,57.951965078157684],[-125.45893606503328,57.95179289528688],[-125.4590081661257,57.951700100695575],[-125.45903612932071,57.95166544666159],[-125.45912175987041,57.95158728681659],[-125.45926844409924,57.95145105488875],[-125.45938843833771,57.95133378064851],[-125.45950507721818,57.95122882955764],[-125.45966686825483,57.951143127370365],[-125.45991570650492,57.951101517283945],[-125.46014449938056,57.951057582523525],[-125.46021680705269,57.951024229324226],[-125.46023928487132,57.9509301117477],[-125.4602968988596,57.95074304937706],[-125.46034586920776,57.95056941040012],[-125.46038014969322,57.95046188225429],[-125.46041820482485,57.950386893750796],[-125.46054506062063,57.95023263591772],[-125.46079045002409,57.949988013491954],[-125.46104707695564,57.949770352807676],[-125.46124347660974,57.94962759078828],[-125.4613660572833,57.949550700525805],[-125.4614310394876,57.94951170950256],[-125.46160015629846,57.94943052087602],[-125.46186353817096,57.94933064653012],[-125.4619824418977,57.949288508271714],[-125.46193581998116,57.94922439303626],[-125.46169878784269,57.949033898078994],[-125.46166055642215,57.94875336176002],[-125.46213206169736,57.94850179935442],[-125.46244718025638,57.94840325420249],[-125.46244316411077,57.94838865815766],[-125.46242274657126,57.948339228646695],[-125.46239031283024,57.94824376807733],[-125.462365713116,57.948116936344384],[-125.46239258489945,57.94801049964592],[-125.46247642465478,57.94790877873087],[-125.4625952857313,57.947795983668],[-125.46279717253613,57.9477115612074],[-125.4631417738177,57.9476176194166],[-125.46349554379194,57.94747436649981],[-125.46370882034657,57.947331669189104],[-125.46373940026699,57.947261136061435],[-125.46369514617416,57.9471790866938],[-125.46373060657514,57.94706259066535],[-125.46385825401502,57.94699917705744],[-125.46402701843712,57.94694153624882],[-125.46423900897896,57.946740513718225],[-125.46442208122578,57.94649339222955],[-125.46448366140893,57.946396066933],[-125.46464973118901,57.94623074821926],[-125.46498068914185,57.94590683467757],[-125.46522964492395,57.94563081708066],[-125.46538362521855,57.94542395275836],[-125.46552714979757,57.945283216259405],[-125.46584455509546,57.94509495088981],[-125.46630483996228,57.944810805890924],[-125.4667603208802,57.94456701499891],[-125.46734695309524,57.9443091668921],[-125.46792698699046,57.94406923431625],[-125.46840477722117,57.9438894538104],[-125.46876983056755,57.94376529852994],[-125.46894367038291,57.943720008735916],[-125.46909327587977,57.943670136133214],[-125.46932237695329,57.9436003924451],[-125.46951936890733,57.94356080167096],[-125.46968561741842,57.94353006048811],[-125.46984820987866,57.94345780830373],[-125.4699251770675,57.943391944637675],[-125.46994176920539,57.943339299149656],[-125.46991786753925,57.94331116611126],[-125.46994530837843,57.94331239673361],[-125.46999399622636,57.94330473965581],[-125.47013161145654,57.94328173473988],[-125.47031567575793,57.94326003575471],[-125.47053869477914,57.943247463386435],[-125.47072995289906,57.943239250641795],[-125.4707944103408,57.94323726347688],[-125.47080944728077,57.943219378842905],[-125.47087790098503,57.9431579669389],[-125.47107378689765,57.94304659224044],[-125.47132245661271,57.94293654811635],[-125.47143083245231,57.94288987401263],[-125.4714656813904,57.94281487036308],[-125.47154415799947,57.942641345948864],[-125.47161347648307,57.94251825358643],[-125.47168993427462,57.94248827557837],[-125.47186571095934,57.94252934671711],[-125.47208975038389,57.94259416064567],[-125.47220338953768,57.94262377008256],[-125.47231005344783,57.942623070795534],[-125.47252487176965,57.94259251836505],[-125.4727238412283,57.94256190290904],[-125.47294707427227,57.94253250460215],[-125.47336772509387,57.94250837198684],[-125.47377360704246,57.94248305823376],[-125.4739374214079,57.94247473258483],[-125.47399572847127,57.942458139866055],[-125.47406882070452,57.942442726968615],[-125.47418775170921,57.942396092306446],[-125.47434487087766,57.94233727141432],[-125.47450197387644,57.94227957179732],[-125.47475614958755,57.94222786207708],[-125.47514159666845,57.94215311686487],[-125.47548046906685,57.942086037941756],[-125.47570271215419,57.942052145087864],[-125.47587497087702,57.94204272876219],[-125.47595420985644,57.942040797226255],[-125.47595395970437,57.942058740532225],[-125.47595873090971,57.942094647866554],[-125.47600145520137,57.942060048739606],[-125.47601339220134,57.942037665296006],[-125.47603554391208,57.94203887387754],[-125.47609361618372,57.94204022362101],[-125.47614857455595,57.94203707503128],[-125.47629114038864,57.94203651363445],[-125.4765508827096,57.9420397767697],[-125.47681275266508,57.942041926230424],[-125.47709355247393,57.94204975701651],[-125.47732821627113,57.94203385446418],[-125.4774034182922,57.94201844802559],[-125.47743210864954,57.94200510227389],[-125.47745881303163,57.94198389810733],[-125.47747271950666,57.9419704944002],[-125.47748919132614,57.941925698248774],[-125.47751166722186,57.94182821429843],[-125.47754670567193,57.94173863020988],[-125.47756608741518,57.941711789744204],[-125.4775978136027,57.94170854951631],[-125.47766237582788,57.9416975873167],[-125.47779142358372,57.94168239162864],[-125.47794163755712,57.9416639141523],[-125.47808446797599,57.94164540760191],[-125.47823795010929,57.941619091966956],[-125.47850802655157,57.94156295132945],[-125.47891251354035,57.9414849052498],[-125.47926609466542,57.94142236036108],[-125.47940146113288,57.941408309323236],[-125.47951566146833,57.941397540064074],[-125.4797446051829,57.94133675028411],[-125.47999466753843,57.941276042495176],[-125.48023118911028,57.94127808638272],[-125.48035443450028,57.94129987565718],[-125.4804274133688,57.94129230948624],[-125.48061997171573,57.941266143419696],[-125.48086970695027,57.94122898457385],[-125.48103369865684,57.94120607122003],[-125.4811449242087,57.941181830793894],[-125.4813058025152,57.94115554044142],[-125.48151326680797,57.94112045895798],[-125.48164863134824,57.94110640564288],[-125.48169961143543,57.94108529504605],[-125.48174232929586,57.94105069411629],[-125.48175729830851,57.941037294113436],[-125.48180759802527,57.94106552754555],[-125.4819102941589,57.94112312401912],[-125.48196157980385,57.941155847291675],[-125.48199214944714,57.94116045214334],[-125.48206175049506,57.94116745166831],[-125.48212074555391,57.941177774505185],[-125.48220283288619,57.94119828065712],[-125.48238277712674,57.9412438401044],[-125.48263881482437,57.941286330084296],[-125.48291308926328,57.941307581496815],[-125.48307987088377,57.941312714357956],[-125.48324250575125,57.941312223354686],[-125.48348331324748,57.941309792019],[-125.4836354500131,57.941304773796446],[-125.48374210996656,57.94130406536415],[-125.48399864222579,57.94131066612136],[-125.4843991572957,57.941367170042355],[-125.48474590269291,57.941416735853984],[-125.48496081156894,57.94137831322684],[-125.48518982315349,57.941311906813226],[-125.48538943922044,57.94130931296189],[-125.48552449601794,57.94131768484551],[-125.48563758541947,57.941311392128085],[-125.48568403278578,57.94131269284341],[-125.48578941508839,57.94132880058521],[-125.48603377173667,57.94137572503998],[-125.48622949288617,57.941426947687184],[-125.4863692700697,57.94147571148717],[-125.48654390329695,57.94152460939305],[-125.48670410549704,57.941547656634896],[-125.4867885530704,57.94155022478592],[-125.4868476112651,57.941556059706116],[-125.48694895451146,57.941558692789044],[-125.4870576980648,57.94156135426863],[-125.4871199617086,57.94156383685273],[-125.48724361136125,57.94155758339595],[-125.48756464390232,57.94155769625346],[-125.4879328574867,57.94150527831504],[-125.48814228129073,57.94140290308927],[-125.48819585868748,57.941345911479324],[-125.48832582800978,57.941340802801136],[-125.48856850317705,57.94135631370152],[-125.488697164,57.941369143894214],[-125.48875465934519,57.94133459740648],[-125.48887094122176,57.94124756506177],[-125.48894809925001,57.94116486871361],[-125.48900702433895,57.94110341123622],[-125.4890561932248,57.94105986059177],[-125.48907909166257,57.9410061156148],[-125.48916637042156,57.940878597344586],[-125.48932572612232,57.94073004637489],[-125.48941313696417,57.94066981938303],[-125.48942170644598,57.940660880085],[-125.48944518111126,57.94064302575216],[-125.48952689384228,57.94061417928429],[-125.48964622619414,57.940536130143265],[-125.48971019334246,57.940413008403894],[-125.48970832795001,57.94031767253133],[-125.48968625423277,57.94023235294096],[-125.48973185321314,57.94006205732303],[-125.48987517742894,57.939850639702584],[-125.49000608527535,57.939697493189996],[-125.49004899168249,57.939648310729],[-125.49003855414482,57.939639298692384],[-125.48988534794391,57.9395680571683],[-125.48961248304926,57.939443646262156],[-125.48948126149688,57.93938594661247],[-125.4894711896919,57.93935001961361],[-125.48945423755956,57.93927705632723],[-125.48944410488593,57.93924561514995],[-125.48971396195255,57.93928029380751],[-125.4903114268916,57.93929603766662],[-125.49071480061897,57.939217951896666],[-125.49080902726905,57.93912186173279],[-125.49084678238617,57.939063687272075],[-125.49086831063384,57.93903348865012],[-125.4908747675826,57.939024541208596],[-125.49089741918158,57.93898873930995],[-125.49092858043144,57.93894960536821],[-125.49094155501284,57.9389272246618],[-125.49096425204583,57.93888805839169],[-125.49102148361031,57.93879519138054],[-125.49111856406888,57.93864415783965],[-125.49124608898425,57.938428192749335],[-125.49138149587623,57.938175247778254],[-125.49152522833442,57.93793242810426],[-125.49164202298387,57.93772875850721],[-125.49169066596468,57.93764483066995],[-125.49169818679424,57.937635887259944],[-125.49174212089294,57.937587829807896],[-125.49184392223022,57.93747830985402],[-125.491933933346,57.93738108151784],[-125.49200964870951,57.93732529454692],[-125.49214051259557,57.93725289500056],[-125.4922911258798,57.93720300076484],[-125.4924003854269,57.937165285510424],[-125.49248325685399,57.93712746970285],[-125.49252620250164,57.937074922219594],[-125.49253779039282,57.93699870363794],[-125.49255643990817,57.93686867946052],[-125.49257168802667,57.936756586508956],[-125.49258520577614,57.936693833413734],[-125.4925984813083,57.93664902355577],[-125.4926253380575,57.9366143589815],[-125.49271808220878,57.93654966440196],[-125.49287432570362,57.936472874754905],[-125.49299874409009,57.936408300492694],[-125.4931009811314,57.936343641771565],[-125.49328966874722,57.93620977806477],[-125.49349637291708,57.936071496540244],[-125.49363808988913,57.93597670670871],[-125.49376613245477,57.935877378771345],[-125.49386854790309,57.935799262081815],[-125.49395507197613,57.935724449517664],[-125.49401495225433,57.9356686014111],[-125.49404131804734,57.93559243892078],[-125.49406159034729,57.93549830917081],[-125.4940762146841,57.935432195694354],[-125.49408818228895,57.935405324921774],[-125.49413635083637,57.93535728288649],[-125.49421820627049,57.93523759215594],[-125.49428475882681,57.935077469054114],[-125.49436959293577,57.93497236916966],[-125.49454903883753,57.93489678724641],[-125.49478642525207,57.93483151828043],[-125.49502054648573,57.93477408708009],[-125.49524918389842,57.934731214302275],[-125.4953826495563,57.93469919593802],[-125.49545577629104,57.934678164127305],[-125.49555780879533,57.934628082490626],[-125.49570953142704,57.93457370275768],[-125.49588012048952,57.93452836626837],[-125.49597366068038,57.93448161672626],[-125.4959703747567,57.93433356540946],[-125.49594482226271,57.93411253199344],[-125.49594087494526,57.93401382450713],[-125.49599171712181,57.93400168019839],[-125.4961070577658,57.9339819291762],[-125.49620769457324,57.93395763645496],[-125.49626692260614,57.93395000976306],[-125.49630063196732,57.933955744686195],[-125.49645153568211,57.9340404278336],[-125.49673227473714,57.93420634956424],[-125.49689044235244,57.934300031708005],[-125.49690725972044,57.93430570271759],[-125.49704868858343,57.934309600974586],[-125.49729250614502,57.934316128296125],[-125.49756679795988,57.934332863605185],[-125.49794298272589,57.93438811340363],[-125.4984100124202,57.934441461019226],[-125.49889950532632,57.93447246131748],[-125.49929195680522,57.934496366275106],[-125.4995438595913,57.93445020904349],[-125.49978322670555,57.934393910739836],[-125.50001024568817,57.93447214644871],[-125.50019100500225,57.934535628735375],[-125.50027239610759,57.934528083363155],[-125.50030511888248,57.93452932754836],[-125.50033999594667,57.93452609377557],[-125.50045833289907,57.93451980828827],[-125.50067494039483,57.934508283335575],[-125.50082499533536,57.93449875182059],[-125.50096413514387,57.93451609542296],[-125.50119609462386,57.93454051530215],[-125.50147859815345,57.93457521738362],[-125.5017486705866,57.93459192829667],[-125.50187004754787,57.93459462496995],[-125.50190904570746,57.934600378238244],[-125.50199428837601,57.93462088386541],[-125.50204378501583,57.9346311623439],[-125.5020556872598,57.93460877668198],[-125.50208255072438,57.934574110340165],[-125.50209551715605,57.93455172865159],[-125.50218441077985,57.93453635959475],[-125.50244700166186,57.93448014324955],[-125.50280504195742,57.934391758795776],[-125.50320635892825,57.93430353470102],[-125.50362445002759,57.934225465432775],[-125.50389542357006,57.934173763508035],[-125.50412017911249,57.93410394501209],[-125.5044857711822,57.934002126137486],[-125.50483004132504,57.93391704964641],[-125.50495770769002,57.933843504529825],[-125.50507156640435,57.933775515553336],[-125.50539987230455,57.933780098736],[-125.50584755931769,57.93377839472697],[-125.50626603842176,57.93374966490773],[-125.50655000012055,57.93375295948303],[-125.50664177144698,57.93376002822953],[-125.50668809249446,57.93377029321935],[-125.50679780338574,57.933777428253144],[-125.507004364988,57.933806230046436],[-125.50738373408707,57.93386146491568],[-125.50776081658108,57.9339301483182],[-125.50798198438181,57.93397246059418],[-125.50814007067272,57.93399435264773],[-125.50821059328739,57.93401031393885],[-125.5082619595252,57.93395779272268],[-125.50836154739001,57.93385161713755],[-125.50844209944735,57.93374649279502],[-125.5085505280914,57.933610069080636],[-125.50870239457133,57.93346146887333],[-125.50881227141852,57.933374396510835],[-125.50887717869139,57.93333650455227],[-125.50892415896456,57.9332963035077],[-125.50896666716436,57.93327515154079],[-125.50899433627882,57.93325843091275],[-125.50913334810978,57.93320398924605],[-125.50937616128557,57.933125256487614],[-125.50948961481102,57.9330875429337],[-125.50957147127728,57.93304522701255],[-125.50978625162877,57.932929380761315],[-125.51002406682974,57.932828198407655],[-125.51014432076099,57.932754621209206],[-125.51013927213302,57.932655910375125],[-125.51022757816914,57.93260464575596],[-125.51056800079428,57.93264963487205],[-125.51090590736365,57.93264526775106],[-125.51110923454941,57.932597789088184],[-125.51126367706125,57.93257480393766],[-125.51132923422749,57.93256719379128],[-125.51141736355909,57.93252938578131],[-125.51170155087316,57.932433977995714],[-125.51210927681652,57.93233677889092],[-125.51236713457291,57.93223678732419],[-125.51242434442763,57.93213942592033],[-125.51250597742428,57.9321139299745],[-125.512689846291,57.9321011443396],[-125.51291182245245,57.932080647207336],[-125.51301959246335,57.932074312002435],[-125.51302832866831,57.93205191388004],[-125.51316175099551,57.93193912959381],[-125.51350514810451,57.93175533567971],[-125.51385270992624,57.93165679023226],[-125.5140005807577,57.93165172200657],[-125.51409484866306,57.93162739268153],[-125.51433564575203,57.93153967173301],[-125.51459841469782,57.9314666098998],[-125.5147256483714,57.9314244561736],[-125.51476702916037,57.931407784317685],[-125.51480114426373,57.93138211399041],[-125.51484494265523,57.9313430208912],[-125.51487907211573,57.931316229097284],[-125.51488769128628,57.93130280245759],[-125.51495586322402,57.931255947531895],[-125.5150837321539,57.931164449751975],[-125.51515401497153,57.9311176024137],[-125.51517313302874,57.9311086999544],[-125.51529196272821,57.931063150636874],[-125.51549862228514,57.931001098019806],[-125.51561384478839,57.93099030182657],[-125.5156569893745,57.9310005521285],[-125.51582080217588,57.930987689326585],[-125.51623185879728,57.93095777997839],[-125.51680521850784,57.93095088789347],[-125.51724001593585,57.93096367852254],[-125.51752583867969,57.93098490052436],[-125.51777363084186,57.93100934881763],[-125.51787793387297,57.931025427168244],[-125.51798406335153,57.931065063550435],[-125.5181994934491,57.931142104526714],[-125.51832379173509,57.931163862311635],[-125.51834302399106,57.931145987809025],[-125.51837186642142,57.931120297529475],[-125.51845054746512,57.93107684331951],[-125.5185704777691,57.931026809070616],[-125.5186894897133,57.93096667789949],[-125.51882467503066,57.93088081051672],[-125.51898612848498,57.93080400981338],[-125.51905728086798,57.93077062159198],[-125.51910605720607,57.93075397509705],[-125.51915578289305,57.93074630400885],[-125.51922700671214,57.93070730845828],[-125.5193642438773,57.930625933959895],[-125.51943750693397,57.93059255315572],[-125.51947052788636,57.9305702422232],[-125.51956830889664,57.93051900575346],[-125.51966289844023,57.930387009752764],[-125.51964490967008,57.93022432751879],[-125.51967027279538,57.93014030649297],[-125.5198375397471,57.93010389975263],[-125.52006623496422,57.93005201304029],[-125.52029175413502,57.93000011450878],[-125.52046980524726,57.9299458018196],[-125.52055263252792,57.929907968851786],[-125.52061476120792,57.929837537922545],[-125.52071885464494,57.929705575471246],[-125.52079888774719,57.9295555824773],[-125.52084060277772,57.92943012466016],[-125.52085833614181,57.92936402002726],[-125.52090335883055,57.92931034997856],[-125.52099168258788,57.929254592561584],[-125.5210500224032,57.92923349377291],[-125.52118905901852,57.92917455397778],[-125.52147525035788,57.92908361906087],[-125.52166678453183,57.92904841871717],[-125.5217004363114,57.92905863297252],[-125.52179081250489,57.929007368403234],[-125.5222284913537,57.92887547997678],[-125.52284788792994,57.928730782906285],[-125.52324112438122,57.92860658257026],[-125.52347506571304,57.92847283964086],[-125.52362088402226,57.92837803373572],[-125.52365493350759,57.92835684700728],[-125.52374520861133,57.9283145527768],[-125.5238694164924,57.92825892176588],[-125.52400635076177,57.92819997160954],[-125.52416344617717,57.928132121334244],[-125.5243156234802,57.928119206640346],[-125.5244706895912,57.9281276105093],[-125.52461555687358,57.92810906190875],[-125.52471754688383,57.92805783685541],[-125.52476426268518,57.92803669502569],[-125.52481314632307,57.92801107492569],[-125.52489501428015,57.92796426397832],[-125.52502279117078,57.92787724276145],[-125.52519121817208,57.927747749429145],[-125.52529917235898,57.927642713416425],[-125.52531961651994,57.92761138436172],[-125.52534499314918,57.92760811026076],[-125.52542016078519,57.92759155552961],[-125.52549735188884,57.92758061543856],[-125.52552485381035,57.92757622737537],[-125.52553978770533,57.92756394409395],[-125.52557390611588,57.92753714966803],[-125.52559418295488,57.9275203994202],[-125.52562701090208,57.92751154431431],[-125.52574625828616,57.92751533321615],[-125.52599097080936,57.927530783282734],[-125.52619029891964,57.9275449500551],[-125.52635586522979,57.927558996540476],[-125.52650442650113,57.9275808328702],[-125.526610908295,57.927592426108696],[-125.52671221667784,57.92759502892617],[-125.52685567811714,57.9276033888077],[-125.52704239627236,57.927613023552425],[-125.52716797766348,57.927616833659776],[-125.52729466261553,57.92761616158168],[-125.52747188907483,57.927625762056316],[-125.52760808001135,57.927624001890116],[-125.52773377417097,57.92761883990132],[-125.52798316100858,57.927598415022366],[-125.52831285677689,57.92757154497727],[-125.52851996319363,57.92755545542319],[-125.5286172741803,57.92754009872819],[-125.52869019972832,57.927532506189486],[-125.5288159496416,57.92752285739904],[-125.52902729197078,57.927505660540604],[-125.52922589686325,57.927494025827734],[-125.52933981606385,57.92750115717565],[-125.52945579035121,57.927512781662145],[-125.52963524027157,57.92751341514957],[-125.52972931938822,57.9275025322181],[-125.52973793238216,57.92748910467215],[-125.52978864263275,57.92748591911999],[-125.5299827444947,57.92749669729022],[-125.53023579126197,57.92752114090923],[-125.53042869224716,57.92754425064018],[-125.53063394969888,57.92759095500525],[-125.53078658491337,57.927626258840945],[-125.53083707139177,57.927641016020814],[-125.53086966036598,57.92765122419993],[-125.53096325279111,57.92768071250255],[-125.53108317081674,57.92771477935203],[-125.53119474217131,57.92774096626719],[-125.53127998525284,57.92776145301644],[-125.5313337032452,57.92777173539425],[-125.53136320400645,57.92777632511735],[-125.53141501755555,57.92776865684393],[-125.53159491574505,57.92773340142333],[-125.53209223114251,57.9276398213743],[-125.53271957309491,57.92761622814105],[-125.53305342677287,57.92776431414647],[-125.533161186945,57.92784319632039],[-125.53322910711177,57.927814275358635],[-125.5332756507955,57.927806587904975],[-125.53347027010444,57.92777586749108],[-125.53395214984715,57.92773493672819],[-125.53457899253162,57.927751706801544],[-125.53516733528092,57.92780871345393],[-125.53558061670762,57.92785164962265],[-125.53576606965842,57.92787921164218],[-125.53585559330942,57.92789522439],[-125.53625939834447,57.92793700395241],[-125.53695966561958,57.92807738272176],[-125.53734425230502,57.928308624871086],[-125.53740224767151,57.92848490093875],[-125.5374455213207,57.92857140628114],[-125.53750528620868,57.928605258561184],[-125.53762014720085,57.92862135805386],[-125.53777505603512,57.92864432532448],[-125.53786353518728,57.92866033310429],[-125.53797107071487,57.92867192091029],[-125.53817674311395,57.92868609172921],[-125.5383845851031,57.92869690525896],[-125.53858509821704,57.92870208561312],[-125.53882664842196,57.92871750113575],[-125.53905437419475,57.92874184036966],[-125.53919773280823,57.928759158558435],[-125.53928210026234,57.92876617921506],[-125.53935803649318,57.92877204918129],[-125.53947084563308,57.92878477549887],[-125.53960781592988,57.92880655715235],[-125.53973202278856,57.92883614505399],[-125.53984154713405,57.928857831677014],[-125.53993107485024,57.92887384170352],[-125.5400806536796,57.928814918723695],[-125.54031241670374,57.92876749403436],[-125.54045135666244,57.9288879732078],[-125.54049475308604,57.9290507396949],[-125.54062133302452,57.92905902653469],[-125.54081545341506,57.92898343381059],[-125.54095208674129,57.928945773658974],[-125.5410282289204,57.92893482094987],[-125.54109799622542,57.928927210733264],[-125.54117514766203,57.928920747397754],[-125.54125540278568,57.92891878068278],[-125.54160254570344,57.92893231160435],[-125.54226753654186,57.92902655984392],[-125.54266020130544,57.92920398269093],[-125.54272615278465,57.92933654548324],[-125.54275599423809,57.9293994516327],[-125.54288726265091,57.929457098220354],[-125.54314092855253,57.92951852879953],[-125.5433432311258,57.92955062401853],[-125.54347277090922,57.92957686222343],[-125.54356547727106,57.929592880697705],[-125.54365390667894,57.9296133704467],[-125.54375565711464,57.92958007393408],[-125.54382745183166,57.929491721519234],[-125.54387870772878,57.9294436726302],[-125.54394118955543,57.929428185515405],[-125.54398552655877,57.92942833722794],[-125.54404055597861,57.92941731055018],[-125.54413896702265,57.92939746027789],[-125.54441851254613,57.92932776194398],[-125.54488955677296,57.92922395075509],[-125.54528944204766,57.929154661507475],[-125.5457611089255,57.92908561574602],[-125.54644879925571,57.92896122892206],[-125.5471470007852,57.92884023878272],[-125.54770756210952,57.92875242280397],[-125.54804084364562,57.92868962828184],[-125.54842506664467,57.928605697161636],[-125.5489455752695,57.92851213282761],[-125.54927553289927,57.92846278192681],[-125.54961345102745,57.928453830900715],[-125.55007410222647,57.92842174205364],[-125.55030801509481,57.92836982133526],[-125.55048534331975,57.92828406455312],[-125.55083715927913,57.92817197989566],[-125.55124832793116,57.92803990731816],[-125.55167368940002,57.927867507493616],[-125.55214377282927,57.92766385485493],[-125.55254486917235,57.92749024930605],[-125.55269767442779,57.92742347272237],[-125.55271277279616,57.927396607578885],[-125.55278023605678,57.92713776926969],[-125.55286150501564,57.92669505267904],[-125.5528929471804,57.92644843004906],[-125.55289083874794,57.92635870367342],[-125.5528971383216,57.926273491479975],[-125.55300563142642,57.926204322988404],[-125.5533024385589,57.92609989806982],[-125.55368884171172,57.92591726825858],[-125.55399309518285,57.9257186615911],[-125.55414278209038,57.92564626561916],[-125.55430929123425,57.925669252417414],[-125.55461184074584,57.92570390865702],[-125.5548880469561,57.92573399025991],[-125.5550932463397,57.92569878780996],[-125.55540713114232,57.92557759295562],[-125.55578881969672,57.92543531511173],[-125.55606488636953,57.92529829183195],[-125.5562884394518,57.925138663374014],[-125.55646082309958,57.92502148086331],[-125.55681752946835,57.92493743446889],[-125.55741189211905,57.92484071879977],[-125.55798393621433,57.92475738433668],[-125.55854646973253,57.924674015927586],[-125.55899921471509,57.9245914033599],[-125.55937586927767,57.924516388110014],[-125.5597756909249,57.92444593429561],[-125.56017106609451,57.92439452991484],[-125.56064053493613,57.92432542487255],[-125.56101285683854,57.9242593626544],[-125.56118210315128,57.92422851843479],[-125.56125402097501,57.924216418877016],[-125.56144859883486,57.924185657723385],[-125.56185905949535,57.92410738230635],[-125.562410125469,57.92400938066121],[-125.56296841602432,57.92392597978666],[-125.56323922065366,57.92387527924241],[-125.56329852336702,57.923858651292804],[-125.56338647586406,57.923829780832776],[-125.56368761349658,57.92371188954539],[-125.56414137537564,57.923539544047436],[-125.56435761554486,57.923460625612066],[-125.56438093996624,57.92345172997052],[-125.5644846104864,57.92343188207977],[-125.56468033252466,57.923392148101435],[-125.56489198553133,57.923344615453225],[-125.56517375302924,57.92325805926271],[-125.56544187136383,57.92316585054585],[-125.56567483871191,57.92310044240224],[-125.56599233308599,57.923027458791154],[-125.56639906697997,57.92290429798432],[-125.56685692519078,57.92274092867155],[-125.56717471108284,57.92264214907003],[-125.56749209550216,57.922578133468264],[-125.567868609874,57.922512065919506],[-125.56803351785378,57.92249017091058],[-125.56810230686953,57.922473571613246],[-125.5682619972367,57.92244717347133],[-125.56840580859937,57.922424088163886],[-125.56867444560429,57.92237673414686],[-125.56909959631805,57.92230297017859],[-125.56934073867411,57.922260011854426],[-125.56943807063021,57.92224013966761],[-125.56956619441111,57.92220354460978],[-125.56972193027259,57.92215358078098],[-125.56987996492131,57.922085680441775],[-125.57002746151267,57.92201774591762],[-125.5701338512339,57.921944071208486],[-125.57016912074567,57.92190493303398],[-125.57017456016037,57.92189149276894],[-125.57018641781558,57.92186910133289],[-125.57020682551412,57.921838887085464],[-125.570224225039,57.921794083839366],[-125.57022901062425,57.92174475397299],[-125.57022413511687,57.92170885075714],[-125.5702413295273,57.92168199059782],[-125.57034967499534,57.92162177986166],[-125.57051956770704,57.92153260885511],[-125.57062137491525,57.921490320576105],[-125.57065729769089,57.9214870718785],[-125.57069112241656,57.921482694927946],[-125.57070809877958,57.92147489923685],[-125.57076564193147,57.92142686081659],[-125.57091606401781,57.921287159846685],[-125.5710128167672,57.92113270666923],[-125.57097278577464,57.921032765773354],[-125.57111245963081,57.92090985228416],[-125.57151596712539,57.92069582576794],[-125.57176435691068,57.920477935197425],[-125.57165702258126,57.92026450854213],[-125.57144350042448,57.92001597440517],[-125.57132763676042,57.91981037051565],[-125.5713055561182,57.91971048760606],[-125.5713249490581,57.91967578407101],[-125.57135938554555,57.91961757781946],[-125.5713888305735,57.919533561433774],[-125.5713426894759,57.91941565745826],[-125.57123138064468,57.91927287119981],[-125.57117422649534,57.919195305070225],[-125.57117443107043,57.9191773620325],[-125.57117430064359,57.919095493503455],[-125.57117262619185,57.918965396338514],[-125.57117123150206,57.918902588929754],[-125.57120835208391,57.91888588618777],[-125.57127814576761,57.91887377449511],[-125.57133860308006,57.91884817496164],[-125.5713938134661,57.91881919408166],[-125.57145456038552,57.918766679897125],[-125.57152170719131,57.91870970034824],[-125.57154521859289,57.91868398190726],[-125.57157401100964,57.91865715896396],[-125.57171294620856,57.91859816718326],[-125.57192025264506,57.91855846011486],[-125.57206720447074,57.91853538109477],[-125.57244864952452,57.91849623239786],[-125.57305290162849,57.918445460488854],[-125.57349547378449,57.91841211206786],[-125.5738873551129,57.918383085991515],[-125.57429517165151,57.91834401636342],[-125.5746417399473,57.91830811440848],[-125.57488489765143,57.91827076016468],[-125.57497805838773,57.91824526334959],[-125.57508284453698,57.91821756058785],[-125.57524699920457,57.918167617435216],[-125.57532321086498,57.9181476737456],[-125.57541319657103,57.9181221665113],[-125.57568424626224,57.91804452645037],[-125.57599960581074,57.917968148344],[-125.57627910839187,57.91788941251364],[-125.57658914677847,57.9178175020249],[-125.57683025182294,57.91777453034889],[-125.57697076476208,57.91776039733805],[-125.5770553163463,57.91774945098155],[-125.57708069442135,57.91774504562529],[-125.57708829183674,57.91772712608139],[-125.57711004122126,57.9176699997028],[-125.57714129253436,57.91761178200339],[-125.57717455780272,57.917563663998706],[-125.57720672141527,57.917518906927945],[-125.57724409003943,57.91747977375964],[-125.57733186049045,57.91737014735172],[-125.57748726939272,57.91715868090897],[-125.57764583399258,57.91694722434102],[-125.57773562448875,57.91684545448288],[-125.57778565539566,57.91680636132562],[-125.57783765004065,57.91678185358194],[-125.57795540806532,57.916726152788364],[-125.57815043659949,57.91665050998703],[-125.57829965547806,57.916613973625104],[-125.57837690921563,57.91659403153463],[-125.57843946860287,57.91656843551949],[-125.57847020167493,57.91655619651035],[-125.57849778988236,57.91654282606775],[-125.57864248536524,57.91653319046976],[-125.57884484881731,57.91655625986044],[-125.57896280222474,57.916577940738634],[-125.57902911360998,57.91659272948464],[-125.57909125843352,57.91660414060276],[-125.57914189962761,57.91660542205893],[-125.57917776681612,57.916606656831256],[-125.57934265486242,57.91658362652453],[-125.57968622832396,57.91652975849141],[-125.57998545824304,57.916479114221204],[-125.58019283187973,57.91643154430756],[-125.58043099982034,57.91636612742719],[-125.58062462458399,57.916321877982],[-125.58083603020064,57.91629114192223],[-125.58108968401231,57.91625717394619],[-125.58141522091626,57.91621221658899],[-125.58179733040124,57.91620444475715],[-125.58197240640033,57.91621396601344],[-125.5819811477109,57.91618707800482],[-125.58206040932419,57.91608190789054],[-125.58219382954573,57.91594550626222],[-125.58227701222462,57.91586726377091],[-125.58234533370347,57.915796824979424],[-125.58242128674195,57.91570510203728],[-125.58251106135288,57.91560332909295],[-125.5826381840434,57.91546354293699],[-125.58275026305458,57.915349503502966],[-125.5828014499563,57.91530144036341],[-125.58283776375013,57.91526230243899],[-125.58289106091664,57.91521424587787],[-125.5829208565381,57.915191909655384],[-125.58296737443722,57.91518420495086],[-125.58307832849482,57.915169973043994],[-125.58317126473993,57.9151635349993],[-125.5833132966299,57.9152032309364],[-125.58359086395424,57.915296059756486],[-125.58384738963063,57.915383214901134],[-125.58400950164553,57.91541960839585],[-125.58418859721985,57.91544708289872],[-125.58443149154785,57.915431018641314],[-125.58469737949012,57.91533876530299],[-125.58499718706851,57.915234280886175],[-125.58541718756186,57.91513802021719],[-125.58580856695475,57.915054005484315],[-125.58606777641933,57.91499425146834],[-125.5862803155987,57.91495453857443],[-125.58642765596797,57.91489555789485],[-125.58651855089062,57.91478593553274],[-125.58664732343304,57.914591198610445],[-125.58681029297912,57.91435731608687],[-125.58698343571936,57.914254677385706],[-125.58723638114367,57.91428349817126],[-125.58761254598315,57.91433400795756],[-125.58816239036447,57.91442542675478],[-125.58866045381922,57.914524533732006],[-125.58887652214811,57.914547630165934],[-125.58893053111706,57.91453097471664],[-125.58898125562934,57.91452440237756],[-125.58906474502444,57.91451232371917],[-125.5891387825009,57.91449685143795],[-125.58918430047046,57.91448465559581],[-125.58935242826597,57.91445265119998],[-125.58964534622777,57.914397480084865],[-125.58993392775143,57.91435126677251],[-125.59020765459607,57.91431397893535],[-125.59052567113056,57.91427794814913],[-125.59092508166802,57.914229830354756],[-125.59131153613701,57.91420858698195],[-125.59154789327668,57.91421043332271],[-125.59161906411398,57.91416803552638],[-125.59161998939233,57.914082806402064],[-125.59162087814262,57.914000941592526],[-125.59161804495,57.91396953166348],[-125.59164653198143,57.91397074045867],[-125.59173303514643,57.91397324852795],[-125.59185330516004,57.91397585999581],[-125.59194359126535,57.9140187525455],[-125.5919897294922,57.914142255897254],[-125.59214637077831,57.91429413442549],[-125.59242395319016,57.91438694475396],[-125.59256196535277,57.914408674905104],[-125.59266193620671,57.91443365302533],[-125.59290279052547,57.91450840648313],[-125.59314157910367,57.914577545831875],[-125.59338657137253,57.914660161372886],[-125.59371344436516,57.91478115630632],[-125.59403878854899,57.914947004743176],[-125.59428486755995,57.91512494725541],[-125.59447647001465,57.9152645934055],[-125.59467844966295,57.91532352471527],[-125.59478068463204,57.915336171928665],[-125.5948443580657,57.91540028961862],[-125.59498116785294,57.91553416105882],[-125.59510871424307,57.91564557472937],[-125.59518188249592,57.9157108426054],[-125.59520382940654,57.91572997436041],[-125.59527462494431,57.91572233912256],[-125.59551425999118,57.91561652679415],[-125.5957967788072,57.91544804159984],[-125.59610266634796,57.91536261577969],[-125.59660447316917,57.915312548334676],[-125.5970233019085,57.91522521940154],[-125.59723846965207,57.915136152148335],[-125.59746567253009,57.91500786934395],[-125.59765283473263,57.91487385788712],[-125.59773177392906,57.91479447165098],[-125.59775412223131,57.914777717028656],[-125.59776375482039,57.91476428843174],[-125.59780638393852,57.91472516556603],[-125.5979085735864,57.9146424850093],[-125.59805019821856,57.91452403622996],[-125.59817793984497,57.91442012459241],[-125.59829044057281,57.91435990433012],[-125.59834356310114,57.91422660924337],[-125.5983826474763,57.914025983487086],[-125.59850176524917,57.913938867687435],[-125.59869260683227,57.91395290037049],[-125.59890685951065,57.913950181181676],[-125.5990919556615,57.91390924385295],[-125.59928439108928,57.91377524616039],[-125.59950126551168,57.913624499607295],[-125.59962253757051,57.913532903443055],[-125.59972121182415,57.913481612261975],[-125.59983688131261,57.91342140028949],[-125.59988569480245,57.91339575305941],[-125.59991411707284,57.91340144577827],[-125.599998461384,57.91340842788414],[-125.6000659344709,57.91341423781775],[-125.60028411878784,57.91343844354548],[-125.60037790395101,57.913449939623696],[-125.60043050907912,57.91346467654462],[-125.60057878871089,57.913513344480215],[-125.60081855352186,57.913591444674],[-125.60106454352652,57.913679656327716],[-125.60120235097885,57.91371932044064],[-125.60137805615389,57.91376919106115],[-125.60168221930144,57.91384411797187],[-125.60195387036671,57.91390100350124],[-125.60216774298769,57.913934165037375],[-125.60231313717267,57.913955907108964],[-125.60248169884383,57.913982204041176],[-125.60276082492841,57.91403013845464],[-125.60303885761154,57.91408255491397],[-125.60336086735573,57.914167624424714],[-125.6037536577793,57.9142461748702],[-125.60405692438061,57.91430763603702],[-125.60418643708931,57.91433381475288],[-125.6042126727582,57.91434847183788],[-125.60424490436048,57.91439342648248],[-125.60432116578643,57.91446767018155],[-125.60444878339217,57.91457458903541],[-125.60459942827619,57.914699519684916],[-125.60475631992578,57.914731386471914],[-125.60496568061973,57.91469163441417],[-125.60515040224885,57.91468769613008],[-125.60526429699458,57.914694762478504],[-125.60534897463508,57.91467034095008],[-125.60539558140665,57.91465365691737],[-125.60542464565735,57.91469972337685],[-125.60555739382258,57.914820114050926],[-125.60579739481685,57.914978952079196],[-125.60601537014989,57.9151242668848],[-125.6061635362096,57.915285075627054],[-125.60626081646973,57.91546816331741],[-125.6063355039489,57.91559174611225],[-125.60643153186534,57.91569296244958],[-125.606499352968,57.91576605857438],[-125.60654932534563,57.9158312516427],[-125.60661495944696,57.91591331305034],[-125.60665237451171,57.915968375744264],[-125.60667424532097,57.9159953556903],[-125.60671051991977,57.9160593867978],[-125.60674333898713,57.91615032307937],[-125.60677634578953,57.91622331632685],[-125.60683031765727,57.91630982913474],[-125.60691440403559,57.91644241123545],[-125.60705289081388,57.91662225569482],[-125.60720628839252,57.91678756482748],[-125.60747171798369,57.91693862474911],[-125.60792075543415,57.917090224612025],[-125.60825659514099,57.91726952707185],[-125.60833747393013,57.917509760609676],[-125.60833597922075,57.91765330510723],[-125.60833046063463,57.91767571840059],[-125.60841151847481,57.91769614322723],[-125.6085913628236,57.91775498843074],[-125.60872373831981,57.917812572522024],[-125.60875102506374,57.9178272318409],[-125.60869986788704,57.91787530507401],[-125.60855305433425,57.91798814290032],[-125.60840037494319,57.91805610428855],[-125.60828478019228,57.91811071682677],[-125.6081444366808,57.91821011554101],[-125.60801169340046,57.918288228425325],[-125.60792672878712,57.91833956635175],[-125.60784254710578,57.918417821973286],[-125.6077368670937,57.918531901517056],[-125.60761619449734,57.918668366381105],[-125.60747234494762,57.91879915549298],[-125.60736053481698,57.9188952730928],[-125.6072923950694,57.91895226762101],[-125.6072328502047,57.9189947082479],[-125.60719984465128,57.919021526408166],[-125.60715679876478,57.91910102440426],[-125.60709564856951,57.919297102695495],[-125.60705661036312,57.91949885360394],[-125.60703861135673,57.91960534094455],[-125.60702436751063,57.91965464397722],[-125.60701733222106,57.91972191192541],[-125.60701745864684,57.919811630569676],[-125.60702706334362,57.919902498655716],[-125.60702947114885,57.91997428038699],[-125.60703702372936,57.92005953504165],[-125.60705580741399,57.92018183162746],[-125.60708719218238,57.92030865130122],[-125.60711269511921,57.920393958911994],[-125.60713740375496,57.920453470161824],[-125.6071726196003,57.92051749830512],[-125.60720778871753,57.920586012222515],[-125.60722534731376,57.920621951322005],[-125.60723264987668,57.92063094468322],[-125.60724882194457,57.92069940259796],[-125.60728213125203,57.92084417163801],[-125.60723348692946,57.92095505474837],[-125.60716227399872,57.92100194696702],[-125.60723767810642,57.92105824324672],[-125.60732427893763,57.92115494576248],[-125.60734021723238,57.92124583261532],[-125.60734506439128,57.9212862201835],[-125.60734795810166,57.92131314423465],[-125.60735444780637,57.92139839585568],[-125.60736647915938,57.9215610459623],[-125.60736530839756,57.92167319056564],[-125.60734258561304,57.92172583319733],[-125.60735147241984,57.92178529786164],[-125.60742603555684,57.92192233821754],[-125.60755045298751,57.92213690758612],[-125.60770514390767,57.92238296749133],[-125.60786190618917,57.92263464077843],[-125.60796700278914,57.92288055453878],[-125.60812271666688,57.923131103072244],[-125.60826415821346,57.92333338577936],[-125.6082289459931,57.92347122461232],[-125.6082150651967,57.923587818002666],[-125.60825973002034,57.92365635976674],[-125.60826492244597,57.92366534689412],[-125.60828972850015,57.92371588654516],[-125.60835690199458,57.92385290491345],[-125.60842299389587,57.92399328453741],[-125.60844468903491,57.92403932910099],[-125.60844775367433,57.92404830997228],[-125.60850486886358,57.92413931793487],[-125.60863893094256,57.924340457276564],[-125.6087668182755,57.924528120587155],[-125.60882409305341,57.924602306664006],[-125.60884079463253,57.92462029943288],[-125.60885740291496,57.92464726379766],[-125.60888009938117,57.924697797194426],[-125.60890188878858,57.92473487011899],[-125.60891230400875,57.92474835849487],[-125.60896230416616,57.9248124298205],[-125.60912078482625,57.925001304129054],[-125.60928294157397,57.9252428988359],[-125.60936218207485,57.92543826948777],[-125.60936761057606,57.92562781635794],[-125.60933312114665,57.9257970595141],[-125.60930604185648,57.925864269245004],[-125.60930594864782,57.92587324085459],[-125.60928005618325,57.92592699624015],[-125.60925155147275,57.92602896784179],[-125.60937701802561,57.92614484868901],[-125.60961862022144,57.92625882671631],[-125.60973232937161,57.92638813064],[-125.60974125564891,57.92654516482321],[-125.60966208432575,57.9266469881923],[-125.60950011298544,57.926692494610634],[-125.60942494927032,57.926712461094525],[-125.60961742896833,57.92678031425968],[-125.61000561326313,57.92690817879598],[-125.61030012917325,57.92700997414426],[-125.61049036141381,57.92709127732865],[-125.6106227262348,57.92715334590709],[-125.61071513011906,57.927200718304505],[-125.61092180742732,57.92732356393569],[-125.61124807542892,57.927520776315184],[-125.61157957007715,57.927722489109414],[-125.61185549467692,57.92788703018766],[-125.6120569561605,57.92800537298339],[-125.61219129921784,57.928080903657374],[-125.61232055818347,57.92813847560654],[-125.61252043126373,57.92820634615079],[-125.61273089588101,57.9282708827124],[-125.6128447870069,57.92828242849787],[-125.61298114935977,57.92826375927208],[-125.61322508593638,57.92825661702951],[-125.61347928503389,57.92827641981265],[-125.61369025861735,57.92829161086889],[-125.61383916667435,57.92828643498517],[-125.61389504836008,57.92829220433389],[-125.61419949737225,57.92835476785197],[-125.61483134103935,57.92850575334593],[-125.61522337026526,57.92867398749651],[-125.61528041708836,57.928773964636896],[-125.61528114300822,57.92880536840391],[-125.61538993077481,57.92890325188436],[-125.61561064898014,57.92910239213417],[-125.61576538253416,57.92924975334779],[-125.61584356209498,57.92934642675909],[-125.61588840202468,57.929401508957035],[-125.6159165180745,57.92943859912343],[-125.6159654433824,57.9295071509424],[-125.61598838139302,57.92953525426375],[-125.61600306890551,57.92954426849566],[-125.61617165278959,57.92957615581527],[-125.6165088328529,57.92963880836188],[-125.61673536735798,57.92968095510884],[-125.61677860057138,57.929686686875286],[-125.61685023666803,57.92970147219919],[-125.6170820586698,57.92974363355813],[-125.61743598398456,57.929820911232476],[-125.6178445658608,57.92992189597923],[-125.61825847674409,57.930017287294426],[-125.61858922785343,57.93009000957657],[-125.61889021537893,57.93007965570798],[-125.61927125506506,57.92998205369599],[-125.61952321826989,57.92991211941462],[-125.61957617161956,57.92989544823738],[-125.61972007066073,57.92986333572041],[-125.62010061228683,57.92991825246796],[-125.6205085913858,57.93018520774286],[-125.62077100017841,57.930439411313415],[-125.6208579288112,57.930509190998286],[-125.62087360856874,57.930523814970016],[-125.62102593338284,57.93059938801139],[-125.62135932279821,57.93072482096557],[-125.62164018382455,57.93082655269302],[-125.62172434560843,57.93085595033296],[-125.62176004728333,57.93087511699019],[-125.62190286562392,57.93095066206887],[-125.62209083426447,57.931049886325454],[-125.62216637102514,57.93109720308082],[-125.62224508351548,57.9311445287963],[-125.6225353528702,57.93125525725644],[-125.62289303154182,57.93138187670776],[-125.62307115227644,57.93151695945465],[-125.62315217123745,57.931649524481934],[-125.62328526072224,57.93174747043756],[-125.62347320896409,57.93185117871307],[-125.62373994729829,57.931993239885124],[-125.6240380005907,57.93217127660236],[-125.62429905281672,57.93235369435203],[-125.62449508316249,57.9324944332479],[-125.62464815705552,57.93260140614755],[-125.6247970536158,57.932703881153465],[-125.62486837413167,57.932751184571785],[-125.62501672624381,57.9326966489137],[-125.62532085560449,57.932583112020644],[-125.62566959898051,57.93265586740223],[-125.62605252670353,57.93289918458404],[-125.62626568143037,57.933017539126304],[-125.62634496575349,57.93300654649223],[-125.62647727726004,57.93297327258029],[-125.62658546493336,57.93292310857289],[-125.62663258604624,57.93285595105081],[-125.62664806806333,57.93278534041957],[-125.6266811656739,57.93264188216019],[-125.62680574649322,57.932429147616766],[-125.62699033433846,57.93233994501056],[-125.62709372933368,57.932346963280686],[-125.62711918924481,57.93233469810473],[-125.62722500703535,57.93231032129126],[-125.6274101516101,57.93227046529406],[-125.62752556791827,57.93223714314613],[-125.627563874095,57.932206969926504],[-125.62764571202696,57.93215112402115],[-125.62778928714089,57.93204610488539],[-125.62790296252818,57.93197352537559],[-125.62799739621802,57.931926686361884],[-125.62818896111882,57.93187787529943],[-125.62856446994519,57.931806025407646],[-125.62904247283245,57.93172436635817],[-125.62946154161976,57.93162347643978],[-125.62976024626624,57.931523372408265],[-125.62995722625138,57.931461115997216],[-125.63006311697944,57.93142888673639],[-125.63023128571687,57.93139683018876],[-125.63055108955288,57.93129790444437],[-125.63078242212124,57.93117742458513],[-125.63077143457213,57.93111459072131],[-125.63069166416251,57.93106726714136],[-125.6307854243955,57.930980050722425],[-125.63101018900207,57.93088310359792],[-125.63118434539551,57.930779287136],[-125.63134265709867,57.930675426633954],[-125.6315039126203,57.930595125366224],[-125.63162578609447,57.93054835973611],[-125.6318619303851,57.930473872461604],[-125.63222316519183,57.93034814153968],[-125.63242699520863,57.930232069035334],[-125.63250425318131,57.93010443240472],[-125.632606539806,57.93000826641553],[-125.63269571974679,57.92995692376407],[-125.63281863688904,57.92991015996058],[-125.6329774681558,57.92986125197796],[-125.63305161626771,57.92983566192614],[-125.63306437176277,57.929826725141226],[-125.6330899155636,57.92980548719452],[-125.6331166925677,57.92976518734339],[-125.633158561035,57.929694648857],[-125.63320239249236,57.929637573618734],[-125.63333691767797,57.92959196279231],[-125.63361734629879,57.92952208028552],[-125.63387890915523,57.92943980900906],[-125.6340358986226,57.92936285755421],[-125.63413145261285,57.929307045539886],[-125.63417397308977,57.929276882105455],[-125.63421327447918,57.92925119577226],[-125.63428763868862,57.929203175904384],[-125.63436732208275,57.92915180612976],[-125.63443433157288,57.92909928006018],[-125.63449924648584,57.929046748216],[-125.63458221850888,57.928981929499486],[-125.63472042105711,57.92888249603629],[-125.63488835481422,57.9287652001112],[-125.63501260642325,57.928688157880956],[-125.63506994783653,57.92865354882719],[-125.63510385855753,57.928640183841274],[-125.63516164367907,57.928669500691164],[-125.6353476986402,57.92875075692392],[-125.63556960851177,57.92883771838407],[-125.63577599142909,57.9288921139326],[-125.63599313758357,57.92892523031359],[-125.63609643804459,57.92894121323123],[-125.63615998245004,57.928920078478164],[-125.63636840075662,57.92887242338086],[-125.63662204584423,57.92884283506827],[-125.63681641257334,57.92882990704476],[-125.63697380795031,57.92882024249512],[-125.63717910950237,57.92876809170379],[-125.63751896446324,57.92866471826525],[-125.63795381925333,57.928563845059706],[-125.63831114966786,57.92850986249047],[-125.63847385612921,57.92849572464701],[-125.6386342680063,57.928500645645244],[-125.63890875206185,57.92849914665566],[-125.63909033033217,57.928498517022575],[-125.63912836512054,57.92849525556071],[-125.63916740403681,57.92849648275043],[-125.63934357278107,57.9285104174429],[-125.63958076832812,57.928543582218445],[-125.6396988480404,57.92855960230436],[-125.6397408904596,57.9285787812215],[-125.63979028779062,57.92860246594882],[-125.63980821427924,57.92860363588588],[-125.64007081511639,57.928520233910355],[-125.64070290735658,57.928325679516824],[-125.64140349263313,57.92814252135134],[-125.6420846538099,57.928003045310284],[-125.64255456052024,57.92787645719561],[-125.64266492083665,57.92770404448828],[-125.64264223837691,57.92753688245861],[-125.64263865543593,57.92746958378173],[-125.64267359889388,57.92745734115034],[-125.64280372262316,57.92742853138871],[-125.6429698685422,57.92738411723109],[-125.64303762882682,57.92736299054519],[-125.64313367499011,57.92736549074294],[-125.64332671251869,57.92737946533446],[-125.64342064755525,57.927381959674996],[-125.6434597279878,57.92737869978262],[-125.6435357945346,57.927372174361864],[-125.64358962763106,57.9273734398282],[-125.64374712577413,57.92735030977917],[-125.64412672895293,57.927284034952066],[-125.64449385887296,57.92719529609869],[-125.644745968374,57.92710288523026],[-125.64505440150377,57.92697137199411],[-125.64532579415136,57.92684873136134],[-125.64544670115323,57.926788492982496],[-125.64548270708585,57.92677625245402],[-125.64556760776775,57.92672825449783],[-125.64579800079125,57.92658643868061],[-125.64613950952419,57.926415759029204],[-125.64654088497095,57.92627776033998],[-125.64688271856438,57.926183340530734],[-125.64701826191317,57.9261377188355],[-125.64705967925417,57.92611203443559],[-125.64717677975354,57.92600692517026],[-125.64732721380713,57.92583573658581],[-125.64744795038526,57.92568129153195],[-125.6476229094985,57.92548437347958],[-125.64781462931755,57.92530095731756],[-125.647932688278,57.92520482187355],[-125.648072115515,57.925082948701466],[-125.64837218667914,57.92482580018877],[-125.64869576840911,57.92453731160771],[-125.64884054358373,57.92440647998563],[-125.64892263640951,57.924205951329895],[-125.64914281494941,57.92379831256135],[-125.64945325443483,57.923446985049985],[-125.64965423686454,57.92328602062955],[-125.6497344716351,57.92317184070792],[-125.64981225157807,57.922980272274835],[-125.64988585062676,57.92278420693824],[-125.64985996421342,57.92261703865766],[-125.64971179136198,57.92243384829971],[-125.64955907421205,57.92228541166853],[-125.64950664653293,57.9222482650091],[-125.64948570475549,57.92223026627921],[-125.64937701484658,57.922114468123816],[-125.64918818823946,57.92187621789657],[-125.64897633931825,57.92161884169719],[-125.64872949870151,57.92137819513288],[-125.64845006059677,57.92112400444559],[-125.64812628439313,57.920873060578145],[-125.64773703953102,57.92062418586486],[-125.64734455794891,57.920384273304954],[-125.6470139158451,57.920191625447075],[-125.64669884666681,57.92002593350096],[-125.64634149112493,57.91986797892541],[-125.64602174170979,57.91975161790019],[-125.64590394034809,57.91970868883548],[-125.64589671318402,57.91969072602777],[-125.64591327022404,57.91961450972835],[-125.64602789682124,57.919433135372834],[-125.64621398923015,57.91917232604807],[-125.64637556125331,57.91893836684367],[-125.64648681514072,57.91877941275981],[-125.64655927465039,57.918705587716055],[-125.6466156528647,57.918657513884845],[-125.64666157862045,57.91860044052384],[-125.6467000240995,57.91855231910506],[-125.64676835616224,57.9184683897607],[-125.64693163653448,57.91827480763877],[-125.64718983713092,57.917976058281766],[-125.64744334983236,57.91772664091822],[-125.64765513249459,57.917538793774575],[-125.64797957795957,57.91726376923134],[-125.64859010930441,57.91686725846508],[-125.64922948965774,57.916542595204184],[-125.64951552566713,57.916424472047666],[-125.64956637795036,57.91640329786586],[-125.64968003314655,57.91632509380319],[-125.64986714109351,57.91617755152709],[-125.65008089188468,57.916115310750385],[-125.65040415101168,57.9160791508545],[-125.65069987167138,57.9158264742166],[-125.65082133076606,57.91547465104592],[-125.65096381557935,57.91524400167887],[-125.65129637443414,57.91500151369344],[-125.65163209666646,57.9147579117536],[-125.65176374587668,57.91467190284221],[-125.65188729368036,57.91466213250954],[-125.65218190009331,57.91464271554952],[-125.652473373493,57.91461880389217],[-125.6526528465462,57.9146103001937],[-125.65284907910171,57.91461529754889],[-125.65308316577463,57.91463497228401],[-125.65323179068265,57.914652181250176],[-125.65336114896803,57.914700741042644],[-125.65360289350146,57.91480566640863],[-125.65389445445226,57.9148860484575],[-125.65411634445057,57.91485522359574],[-125.65428694791541,57.91477940654313],[-125.65446883054247,57.914738384059234],[-125.65467796367419,57.91471761840039],[-125.65494631339658,57.91468354817773],[-125.65522499915687,57.914673055003384],[-125.65550870602479,57.914689489472586],[-125.65579238897736,57.91471040914927],[-125.65601807688233,57.91472557115028],[-125.65633875708015,57.91473873490453],[-125.65685030484116,57.91476584726636],[-125.6571910437012,57.91477906063207],[-125.65730494846868,57.9147860824895],[-125.65745255974161,57.91479991973052],[-125.65769943534029,57.91480616161038],[-125.658014040247,57.9147912690106],[-125.65840624956215,57.91471265098004],[-125.65875880237898,57.91458682857484],[-125.65888908627672,57.91453221028776],[-125.65889891724069,57.91449634848366],[-125.65894628294313,57.914393294702364],[-125.65903206351867,57.914243237597134],[-125.65907487223977,57.914177180565076],[-125.65908132555018,57.91416373946856],[-125.65910392398428,57.91411445272538],[-125.65913666799275,57.913994539494034],[-125.65917461824486,57.913765857276466],[-125.65920770682872,57.91349230399579],[-125.65934602362651,57.913249299499945],[-125.6595894890729,57.91304917936694],[-125.6598915287276,57.912904160224976],[-125.66025270367665,57.912755926855304],[-125.66047720246709,57.91266790341433],[-125.66056722856919,57.91263000299475],[-125.66061276156977,57.91261329701876],[-125.66067419471952,57.91258765980412],[-125.66087788114291,57.91246706019613],[-125.66111588744214,57.91228486701639],[-125.66123489477665,57.91219320956044],[-125.66125715596652,57.912180930052436],[-125.66132321249066,57.91211044570892],[-125.6615263722118,57.91193152767284],[-125.66184041382965,57.91174167623568],[-125.66221315810387,57.911594588610704],[-125.66248431344775,57.91147976508082],[-125.66257332821237,57.911437374946146],[-125.66259243151627,57.911425087228004],[-125.66261795620812,57.911402722594055],[-125.66264554087968,57.91138597049268],[-125.66266732761306,57.91130976611318],[-125.66265894915965,57.91118414094251],[-125.66266504783519,57.91109331782299],[-125.66272914034856,57.911006005946156],[-125.6628101649577,57.91091312959003],[-125.66283895668711,57.91087843709873],[-125.66287141463296,57.910788802176576],[-125.66288840567506,57.91065987690297],[-125.66289314872715,57.91060157282297],[-125.66285135580249,57.910555487067704],[-125.66276439540191,57.91048573623987],[-125.66272475321952,57.910435170042845],[-125.66275154178412,57.910390379350645],[-125.66277729688365,57.91034222165072],[-125.66279011912287,57.91032431070512],[-125.66281170392254,57.91027053513155],[-125.66286893309064,57.9101237683768],[-125.66286531412166,57.90993983937797],[-125.66276947077009,57.90980277837959],[-125.66271502772778,57.90975553912931],[-125.66265338089899,57.90957034178994],[-125.6626057333717,57.90923602552052],[-125.66286187999016,57.90902696078329],[-125.66338605277802,57.90893296221775],[-125.66367313019668,57.9088058408084],[-125.66368337527918,57.90860400372695],[-125.66366310521423,57.90839199649605],[-125.66365068114217,57.90824841819605],[-125.6636703138091,57.90817669431286],[-125.66398956189074,57.908107969488235],[-125.66458883242187,57.90787285179348],[-125.66509537623969,57.90750404470096],[-125.66557333998419,57.90726525333063],[-125.66594535819269,57.90719329201629],[-125.66604364664565,57.907173352221626],[-125.6660470192528,57.90715093150049],[-125.66608160625013,57.9070579371331],[-125.66611636225923,57.906945878393486],[-125.66611261986758,57.906892039001654],[-125.66620736390877,57.906795831034955],[-125.6663439278263,57.906624590073775],[-125.66644350404871,57.90646110659109],[-125.6665184579786,57.90633681244347],[-125.66659090390641,57.90625737030224],[-125.6666514479422,57.90621042061514],[-125.66671404917038,57.906171326254096],[-125.6667871833838,57.9061322582163],[-125.66688815150374,57.90604952291087],[-125.66705930753004,57.90590191847524],[-125.66721206965045,57.905806976375494],[-125.66726504727238,57.9057813152156],[-125.66722958427759,57.905735246878095],[-125.6671212049046,57.90558357936296],[-125.66701289587894,57.905424061759895],[-125.6669464294176,57.90530502116609],[-125.66703111083501,57.90515495771476],[-125.66708340657635,57.904967805233845],[-125.66683223419759,57.904857274478196],[-125.66663528236114,57.90482089507642],[-125.66662240398917,57.904725539080694],[-125.66660567051754,57.90459092248911],[-125.6665845514167,57.904473116770355],[-125.66652809786397,57.90429690691226],[-125.6664506583346,57.9041060655883],[-125.66641649990981,57.90403308545058],[-125.66637834362392,57.90393318037331],[-125.66630136008617,57.903692996161396],[-125.66622558318005,57.90343487171429],[-125.66614960831494,57.903199175878655],[-125.66604113274805,57.902939848031046],[-125.66593880584921,57.902702964656875],[-125.66587882636,57.90256711831457],[-125.66586542289093,57.90253119817665],[-125.66584899265739,57.90248069155022],[-125.66579972214168,57.90232692881817],[-125.66575593413802,57.90215075079015],[-125.66574281982606,57.902082309244264],[-125.66571810031452,57.9020149600265],[-125.66576470394249,57.90187601684646],[-125.66580491129179,57.90174266488337],[-125.66563931701808,57.90162113237857],[-125.66546293583963,57.90152648744056],[-125.66538905567559,57.90141303516007],[-125.66531070112788,57.90120873399287],[-125.66529168867098,57.90097430277893],[-125.66535132286913,57.900791656032716],[-125.66539576678609,57.90065831498815],[-125.66539701324798,57.900518136715164],[-125.66537735241046,57.900356598363125],[-125.66534532296627,57.90016250688217],[-125.66531605093675,57.90001328038359],[-125.66531301458005,57.89999981534595],[-125.66529471593037,57.899922389271886],[-125.66527628767997,57.89985954173074],[-125.66527227786491,57.89983598119423],[-125.66524537122126,57.8997775981449],[-125.66535712699978,57.89954686028153],[-125.66546343941789,57.89933405190536],[-125.6652442885779,57.89930546496046],[-125.66504684828149,57.899327397502525],[-125.66501577303667,57.89926339670234],[-125.66492748399145,57.89910841453801],[-125.66481089437025,57.898934296469854],[-125.6647335387191,57.89885560029205],[-125.66469471957116,57.89883307357117],[-125.66466949443316,57.89882291701209],[-125.6645981882004,57.89877563657283],[-125.6644639246054,57.898691189663566],[-125.66437590227508,57.89862592380672],[-125.66434250912252,57.89858546747835],[-125.66429759498538,57.89853488906027],[-125.66418048967385,57.89841908456803],[-125.66402676657152,57.89827066559515],[-125.66390417027311,57.89817839745323],[-125.66379210913325,57.898089520149526],[-125.66370302616521,57.89802425120439],[-125.66361922579522,57.89795899554722],[-125.66349717984875,57.897807291691954],[-125.66335171261674,57.89767795749862],[-125.66314096092611,57.897654995586166],[-125.66294076714642,57.89763093861576],[-125.66281998046232,57.89757456043819],[-125.662681264872,57.89751701529164],[-125.66245859167157,57.89741215641097],[-125.66229160179007,57.897330988792326],[-125.66225705500577,57.89730286498509],[-125.66220115479442,57.89730160174778],[-125.66208836522294,57.897294586901914],[-125.6619851405965,57.89727862465845],[-125.66185267525859,57.89723006610619],[-125.66162671238945,57.897138654871966],[-125.66136511809071,57.89702360225917],[-125.66114958389046,57.896945674116026],[-125.66095689791452,57.89690929735211],[-125.66069934911744,57.896929948867836],[-125.6604896596537,57.89690586402165],[-125.66047586455254,57.89679816991214],[-125.66044926094636,57.89670726485955],[-125.6603168805774,57.89664973343849],[-125.66022229882996,57.8966113629391],[-125.66017927589728,57.89658770276823],[-125.66009528226458,57.896544873412246],[-125.65997034859691,57.89647951053327],[-125.65983067620273,57.896412988443586],[-125.65963640543974,57.896317169053034],[-125.65944003295112,57.89622246545747],[-125.65932346818639,57.89616497351682],[-125.65924794467931,57.89611880097021],[-125.65915463164082,57.89605800404495],[-125.65904033980937,57.895982574539715],[-125.65894475541526,57.895939714799255],[-125.65888168607681,57.89591600287659],[-125.65878281761803,57.89588547051808],[-125.65857483929274,57.89579073593775],[-125.65838494645446,57.89567810430081],[-125.6583273329483,57.895635341534124],[-125.65834978889986,57.89560063432589],[-125.65840840657872,57.89553461939988],[-125.65844900429529,57.895477529799905],[-125.6584682738499,57.89544617874223],[-125.65849005981393,57.895369976307855],[-125.65852172633862,57.89525006283726],[-125.65855974785372,57.89512904422456],[-125.65860200151582,57.8950046721317],[-125.65862310689872,57.89488809594161],[-125.65862351377852,57.89484323918086],[-125.65861763325849,57.894793880522805],[-125.65858113985703,57.89463117744349],[-125.65852108294841,57.894391034276644],[-125.65840818838811,57.894164212933774],[-125.65825368671803,57.89398887119226],[-125.65815687843066,57.893847320745614],[-125.65810466831029,57.893674484343414],[-125.65805847419912,57.89353418526374],[-125.65803488807934,57.89346123086029],[-125.6580270215349,57.89339840982231],[-125.65806886749108,57.893318894807635],[-125.6581606054167,57.8932047431437],[-125.65820470547435,57.8929940250556],[-125.65823174023481,57.89268906201491],[-125.65827246591483,57.89238525564701],[-125.65828970205892,57.892228297981184],[-125.65829522788715,57.89220139755341],[-125.65826181642441,57.8921643042172],[-125.65818752154858,57.892099069877034],[-125.65809831636166,57.89205174028244],[-125.65794883772703,57.8920210774303],[-125.65780044628461,57.891985931437574],[-125.65775304860044,57.891980202404056],[-125.65773391031824,57.89188034489223],[-125.6576842526199,57.89165929324265],[-125.65762789408394,57.891477474835746],[-125.65764047202428,57.891370970266216],[-125.65772592999858,57.891251195787795],[-125.65766384844557,57.8911198275952],[-125.65740749087169,57.891013752776374],[-125.65722647160808,57.890972915006934],[-125.65718855801445,57.890967210190894],[-125.65716032123436,57.89094022290928],[-125.65708709369152,57.8908749907748],[-125.65701800293012,57.89081874078463],[-125.65692579365019,57.89075345966935],[-125.65680219311483,57.8906611830122],[-125.65671522493767,57.89060040103069],[-125.65662301671776,57.89053511972045],[-125.65642603866813,57.89039443154359],[-125.65617981742307,57.89021772985949],[-125.65600928658644,57.89006925931964],[-125.65592246820297,57.88999053420315],[-125.65583140786352,57.88991628382824],[-125.65569418760346,57.88981387804521],[-125.65557187163962,57.889698053415486],[-125.65544663075272,57.889555306574884],[-125.65533505019681,57.88941708075561],[-125.65523389906718,57.88929346057368],[-125.65512109931052,57.88917429590995],[-125.65506997414883,57.88911360577412],[-125.6550458930182,57.889095600363994],[-125.65502530619807,57.88904059652875],[-125.65502705115571,57.88896434322715],[-125.65503051091264,57.88893295191345],[-125.65498516853997,57.888931712981005],[-125.65483582823016,57.888887589791274],[-125.6546261701874,57.888751352030305],[-125.65447669079997,57.888608541519055],[-125.65439004373329,57.888511872940576],[-125.65430648666303,57.888424183841295],[-125.65428379228898,57.88836917445341],[-125.6543463252016,57.888335693684134],[-125.6544588639652,57.888252999420594],[-125.65443455463881,57.88814415686949],[-125.65411029587679,57.88808612150354],[-125.65374849936192,57.88798200878842],[-125.65346844938762,57.88781755028159],[-125.65322818940446,57.88768571653255],[-125.65302230696263,57.887598829448095],[-125.6527543270504,57.88749832285316],[-125.65240341603757,57.88735834893294],[-125.65212306181692,57.88722977285524],[-125.65199007930184,57.88712737456035],[-125.6518834260373,57.887029530737465],[-125.65173066757764,57.88690016601435],[-125.65155177519804,57.886747182569806],[-125.65139464544117,57.886634627593004],[-125.65129410366606,57.8865603494997],[-125.65115269019458,57.886457928343376],[-125.65094347495263,57.88627682878457],[-125.65078798402027,57.88610259847642],[-125.65067837317079,57.88598231730907],[-125.65055915666717,57.8858754680748],[-125.6505007436538,57.88580690718344],[-125.65052571188268,57.885730715138685],[-125.65053493849166,57.88564551029297],[-125.65043507215881,57.88561160504774],[-125.65028842200194,57.88562131280372],[-125.65022719250048,57.885629001989074],[-125.65016840530566,57.88560081164338],[-125.6499975268719,57.8854927047368],[-125.6497797620387,57.88532503823914],[-125.64954496154084,57.88517526951596],[-125.64926679439648,57.88504108623011],[-125.64899062706529,57.88491700055811],[-125.64876069416209,57.88481210070164],[-125.64851101372066,57.88467574816255],[-125.64827208856973,57.88451699490872],[-125.64812863462579,57.88440895815388],[-125.64805145902116,57.88431791800441],[-125.64801211580212,57.88424043506001],[-125.64802608287314,57.88421355758377],[-125.64800508956337,57.884203409173125],[-125.64796847132301,57.88417191220339],[-125.64796781337635,57.88413041742361],[-125.64807401682039,57.88404883359222],[-125.64824816097176,57.883918086163106],[-125.64839695709054,57.883791757310796],[-125.64852041595427,57.88366872571329],[-125.64858137538788,57.88357580772672],[-125.64860974142434,57.883473832228205],[-125.64864241963862,57.883249631975744],[-125.64863708210396,57.883029817159134],[-125.64863687348924,57.882940102039775],[-125.64870893541784,57.882901042108145],[-125.64883289231149,57.88283632611665],[-125.64895186782958,57.8827413182193],[-125.64908734571179,57.882573460673925],[-125.64920682131553,57.88242462518739],[-125.64926222129014,57.88236309244409],[-125.64933457393354,57.88229263289204],[-125.64949617894983,57.88214839389402],[-125.64966075985652,57.88202322688228],[-125.64973505281026,57.88197071514098],[-125.6497679016876,57.88195398011074],[-125.64979661026814,57.88192714130304],[-125.64987410552028,57.88187127362295],[-125.65005683464402,57.88172260385623],[-125.65025249532556,57.88154368922416],[-125.65036433495445,57.881420625707044],[-125.65042723466061,57.88134677651949],[-125.65048607702607,57.881253852345516],[-125.65053767235463,57.881147451971124],[-125.65056883829727,57.88108473372059],[-125.65061275327965,57.88100971320507],[-125.65068977576402,57.880889922384945],[-125.65076127469504,57.88079815277929],[-125.65083483378034,57.880709752836765],[-125.65091167818132,57.88060902575756],[-125.65095463964764,57.880523909806705],[-125.65098351909522,57.880480249800044],[-125.65104536369786,57.88040527620378],[-125.65111365840758,57.88031686234559],[-125.65119311539718,57.88027445629118],[-125.65130628425752,57.88023662422396],[-125.65137390309229,57.88022110134228],[-125.65139611744426,57.88021218809341],[-125.6514350820362,57.88021789727846],[-125.65151299438719,57.88022931556999],[-125.65157830739965,57.88023509369311],[-125.65163416504643,57.88023636132319],[-125.6517237244289,57.88024332425852],[-125.65185327750999,57.880255998888096],[-125.65200595864782,57.88027770528889],[-125.65214593035401,57.88030386401611],[-125.65228915636916,57.880321059667494],[-125.65241551410361,57.880338211117525],[-125.65247767305002,57.880343980562806],[-125.65251135812791,57.88034967564863],[-125.65257030445166,57.88035992237894],[-125.65265032599414,57.880371345510135],[-125.65276003282462,57.8803649031767],[-125.65289102158141,57.88033720910635],[-125.65299469201797,57.88029935083547],[-125.65306562999527,57.88026589288969],[-125.65310164062289,57.88024804388616],[-125.65311125117073,57.8802357332179],[-125.65312820219091,57.880226805963986],[-125.65316622832061,57.88021905505322],[-125.65327585200055,57.88022158350876],[-125.65342012405756,57.88023878066598],[-125.6535158442926,57.8802637012931],[-125.65357892530473,57.88028292976693],[-125.65366944847302,57.88029886532937],[-125.65384003476763,57.88032173763875],[-125.65408870981712,57.880336962684076],[-125.65436073357088,57.88033542646675],[-125.65458861146772,57.88031919657179],[-125.65483129014085,57.88029851895504],[-125.65515714506452,57.88028927069353],[-125.65549335421402,57.88030247700318],[-125.65574604183105,57.88034013790545],[-125.65587336504663,57.88036625999425],[-125.65593543233594,57.880382120443315],[-125.65601022635424,57.8803879208969],[-125.65611770119098,57.8803949271715],[-125.65625153120783,57.880403122852286],[-125.65637897780643,57.880415787633666],[-125.65648847949467,57.88043177026943],[-125.65667914874868,57.880450205049826],[-125.65694253461834,57.88047106984555],[-125.65711770846957,57.880453578346895],[-125.65724671849043,57.880411296327914],[-125.6575003369325,57.880346906307295],[-125.65776778673892,57.88038460135118],[-125.6578691595316,57.880599054797216],[-125.6579352785826,57.88074837474703],[-125.65809831811184,57.88078916506515],[-125.65834773504884,57.880840269777714],[-125.6586096957766,57.880901499056165],[-125.65879488528905,57.880942345330894],[-125.65887272008446,57.88096273054648],[-125.65903298288123,57.88096201973502],[-125.65937151090469,57.88095279360043],[-125.65965197323891,57.880951268152124],[-125.65989850568722,57.88097096257386],[-125.66018588428241,57.88101991797272],[-125.66039326521103,57.88105633295708],[-125.66050489928443,57.8810700748726],[-125.66049242974955,57.88104985734724],[-125.66069801429403,57.8809337529453],[-125.66120029867963,57.88076793946936],[-125.66173167213087,57.88065154091334],[-125.66230604819505,57.88055879935534],[-125.66279148023514,57.88050844430788],[-125.66311733501821,57.880499176557514],[-125.66363962333213,57.88045451883915],[-125.66443165256635,57.880308489438534],[-125.66512693201675,57.88013417630374],[-125.66549056767903,57.880026312185386],[-125.66567237974984,57.87997294045929],[-125.66577915087238,57.87993956577812],[-125.66614177673405,57.87982721166775],[-125.66683524840926,57.87961699954481],[-125.66747402996234,57.87939094728501],[-125.66810472576584,57.879124500527105],[-125.6687685957088,57.878920933282544],[-125.6694684227491,57.87882286609545],[-125.67003658498123,57.87883324719782],[-125.67027388945378,57.878942613563844],[-125.67032400191398,57.878998808985415],[-125.67061153010248,57.87891092820157],[-125.67135886412728,57.878684004714295],[-125.67217693801847,57.87844491567861],[-125.67273823079177,57.878274718921695],[-125.67304172792109,57.87816668659929],[-125.67331773333039,57.87806980037353],[-125.673723357968,57.87797771709426],[-125.6740612977049,57.877910138195084],[-125.67434868276895,57.87783682764276],[-125.674763636484,57.87776158541398],[-125.67509147369749,57.87776575037536],[-125.67531342874018,57.87782124178683],[-125.6755805982228,57.87789142155849],[-125.67571680510136,57.87798931739122],[-125.67572231908477,57.87808353047044],[-125.67573767024807,57.87825963151716],[-125.6759087676516,57.87859198997392],[-125.6762607128507,57.878857502789],[-125.67657473611096,57.8789962015162],[-125.67686751081492,57.879156155019025],[-125.67716233155814,57.87932171998928],[-125.67738807146807,57.8794310456188],[-125.67760244751241,57.87951230770213],[-125.67791359544924,57.87961959644556],[-125.6782499324095,57.87974040247322],[-125.67849930499384,57.87979707634355],[-125.6787428767531,57.87979430015976],[-125.67918159323409,57.87977853690768],[-125.6797415505282,57.879761942550836],[-125.6800716666981,57.87974815787782],[-125.6801433850368,57.87974496596033],[-125.6802288288951,57.879738442700905],[-125.68054940984248,57.879729119640416],[-125.68107132480698,57.8797247640723],[-125.68146014877219,57.87974812366683],[-125.68157282089354,57.87976521464744],[-125.6815917596693,57.87976974565676],[-125.6816729104351,57.87977218260818],[-125.68187631561986,57.87978164031067],[-125.68211975654484,57.87979231474657],[-125.68239587872984,57.87980418814775],[-125.68274688111063,57.879813996619276],[-125.68307889950333,57.87982263754007],[-125.68336037741533,57.879825550284274],[-125.68350376668327,57.87982476988328],[-125.68374853479467,57.879804044571586],[-125.6843107870355,57.87976500793407],[-125.68479392065129,57.87973251014314],[-125.68513446477971,57.879732194720845],[-125.6854748796166,57.87974533522909],[-125.68562666517197,57.8797490580845],[-125.68564688247264,57.8797277987464],[-125.68573180369849,57.8796584708925],[-125.68585602310527,57.879553350131644],[-125.685923039021,57.87948285848472],[-125.68592947680006,57.87946941657201],[-125.68592970130867,57.879442502895564],[-125.68596195558631,57.879367443509956],[-125.68605109241496,57.87929812542728],[-125.6860998776981,57.87926347631047],[-125.6859957512334,57.87923295223238],[-125.68576526328773,57.87918642986654],[-125.68552809961318,57.879054663040556],[-125.68533075136884,57.87882542599704],[-125.68521937229234,57.878655827541486],[-125.68519667614886,57.87859633837356],[-125.68523743997928,57.87851232795928],[-125.6853090676335,57.87839250494415],[-125.6853602982347,57.87831749064913],[-125.6854027200804,57.878287312477205],[-125.68549288056504,57.878222482964055],[-125.68568273813051,57.878083874901016],[-125.68589699926781,57.87792738140676],[-125.68598824122411,57.87785806844454],[-125.68599678711854,57.877844631525164],[-125.68597164511974,57.877825508011156],[-125.68591622398164,57.87764482809466],[-125.68584318452669,57.87730150028717],[-125.68572532103042,57.87689863133925],[-125.68558114418266,57.876490093179264],[-125.68547363686629,57.87623527643329],[-125.68541114598032,57.87614429359699],[-125.68534549386005,57.876052181844145],[-125.68527292132049,57.875906225482694],[-125.68523573530022,57.87568970327335],[-125.6852565096996,57.87547443960299],[-125.68534299253386,57.87534231646135],[-125.68546954873625,57.87521028799381],[-125.68554636417551,57.87510057031685],[-125.68556472546285,57.875046785527104],[-125.68561494275913,57.87496728332953],[-125.68573437150415,57.87480383807163],[-125.68582409676445,57.874662751014405],[-125.6858331285149,57.87459100147453],[-125.68574538753299,57.87449435223903],[-125.68556143659153,57.87430551928848],[-125.68536201419857,57.87407515703267],[-125.68522240493634,57.873878578577376],[-125.68515308278471,57.87372365880375],[-125.6851298523014,57.87360136921314],[-125.68513817702375,57.8734892470588],[-125.68514566421341,57.87335020889663],[-125.6850994318021,57.87320543656369],[-125.68504004247256,57.873123432505196],[-125.68501598727532,57.873099825794974],[-125.6850161373577,57.87308188346239],[-125.68506273714056,57.87293060233353],[-125.68517060058463,57.87263704613043],[-125.68524391714672,57.87244097152121],[-125.68526988932747,57.87236029091044],[-125.6853040970174,57.87230317953427],[-125.68537625045632,57.87224615786836],[-125.68544522372757,57.87219025006734],[-125.68551215238776,57.87212873031837],[-125.68560530184827,57.872081850906184],[-125.68566239823258,57.872060678863065],[-125.68575011895209,57.872031729197815],[-125.68597523756179,57.871960489929734],[-125.6861919715367,57.87188138060126],[-125.68626917723351,57.87185128438933],[-125.68634753115624,57.87180885525939],[-125.68653927462303,57.87169267974164],[-125.68677352154424,57.871537354448186],[-125.68701522017433,57.87137195355503],[-125.687303275048,57.87120890402072],[-125.68763344163963,57.871051559827755],[-125.68796405147947,57.87084038795649],[-125.68836893461042,57.87044099158264],[-125.6889037547909,57.87000601273592],[-125.68934304652878,57.869779391941705],[-125.68965175209067,57.86966572805246],[-125.68988536571025,57.86958216665513],[-125.69001746281641,57.869540982131944],[-125.69023531979565,57.86945177636225],[-125.69058224853163,57.86930343552543],[-125.69079595138055,57.86920636931475],[-125.69085514841946,57.86918520000419],[-125.69090903031746,57.86916850397448],[-125.69107252301801,57.86915430526096],[-125.69132992952696,57.86912574585509],[-125.69147756724242,57.869115995518854],[-125.69153337299123,57.86912173195771],[-125.69157444011621,57.86912743421329],[-125.69162494777514,57.86913764398581],[-125.69174707002055,57.869154748129894],[-125.69188601913203,57.86917637677651],[-125.69207765756391,57.86919924862402],[-125.69226508035943,57.86922211044675],[-125.69239461830952,57.86923362408079],[-125.69261161665112,57.8692487038877],[-125.69291494914268,57.86927519673185],[-125.69315826904804,57.86929482203854],[-125.69331844499841,57.869298555525056],[-125.69341539193371,57.869301021745464],[-125.69357105094983,57.86934175115184],[-125.69381584273707,57.869437634737686],[-125.69404230057776,57.86945721962858],[-125.69426003829079,57.86938146398323],[-125.69447166965287,57.8692787800585],[-125.69467696697252,57.86917720269038],[-125.6949507260377,57.8690802676292],[-125.69555548051258,57.868979604052406],[-125.69659153605588,57.868849643715116],[-125.6974675636744,57.86869688337402],[-125.6978446801608,57.868590084668746],[-125.69800423968964,57.86853998334807],[-125.69843506784295,57.86843891194],[-125.6991487266434,57.86829137962165],[-125.69951611571119,57.86821483235751],[-125.69955419172604,57.86819809716288],[-125.69992996588127,57.86812717475564],[-125.7008588646623,57.86794871903416],[-125.70178571782168,57.86776128101052],[-125.70250374350859,57.8675913124367],[-125.70321030258181,57.867403371894284],[-125.70363805633994,57.86728882004107],[-125.70374367707899,57.86725989857966],[-125.70409512392176,57.86719676022092],[-125.70477280746925,57.867061453529715],[-125.70515070338321,57.86698603557845],[-125.7055308809463,57.86688819342315],[-125.70654419173385,57.86668969978179],[-125.7075589988201,57.86656857899082],[-125.70810854665788,57.86651035097908],[-125.70846328817731,57.866429265850634],[-125.70881789351755,57.866228188773995],[-125.70924289902128,57.86591960947385],[-125.70955297341456,57.86575207548269],[-125.70960060491849,57.86572638706602],[-125.72355248267212,57.85991359252498],[-125.78133372115934,57.89997507086784],[-125.78137155182961,57.89999980473236],[-125.78225721923411,57.900614685452496],[-125.78140121337685,57.90143081622896],[-125.78151731600977,57.906506680343455],[-125.78474466804654,57.91185005567516],[-125.78720537773441,57.92154344581638],[-125.78676646643979,57.93045172976732],[-125.78595859512515,57.932908719481446],[-125.78790349437452,57.93849233734449],[-125.79409348805206,57.94655884551831],[-125.79428631143011,57.954553210576165],[-125.79738896860438,57.959043998197714],[-125.80015230354229,57.96707822742941],[-125.80324157303818,57.971227971954676],[-125.80956462023576,57.974781176307516],[-125.825443221706,57.97861610283516],[-125.83368426875244,57.98141700925473],[-125.83541032015276,57.98123073094513],[-125.84952747799365,57.978510850040166],[-125.86430028961831,57.97630157190169],[-125.87904639077203,57.9765938928821],[-125.88141336651918,57.976811351235554],[-125.89123366205128,57.978730806450415],[-125.9041843090342,57.980526214529064],[-125.91289419282248,57.98080135212639],[-125.92446704961412,57.978888339634295],[-125.92823769479996,57.97937492251408],[-125.9407767419334,57.986020570725955],[-125.95091947741258,57.99131837006445],[-125.95763379525857,57.993375345155044],[-125.96215137654536,57.99327800614815],[-125.96662304247494,57.98770736203044],[-125.96730524038172,57.98136411123625],[-125.97052259728575,57.97665442851161],[-125.97189301654194,57.97591002949529],[-125.97972546733254,57.97145226593887],[-125.98681208700978,57.96711063017866],[-125.98884215588942,57.96320794385906],[-125.9897053559767,57.95954740363465],[-125.99173407435902,57.95856061816082],[-125.99494583317427,57.958192924334284],[-125.99966192847839,57.95821096377341],[-126.00293921807175,57.95960160093064],[-126.00567373552343,57.9613420949453],[-126.00907059217471,57.96576515406249],[-126.0118497515366,57.96938070920235],[-126.01583610516295,57.972224474276196],[-126.02028063152832,57.97100365617328],[-126.02304388722624,57.968688389292744],[-126.03138835223594,57.96642570715231],[-126.03715785143515,57.967393215597646],[-126.04868354455402,57.96977610016713],[-126.05633367538893,57.969046344122646],[-126.06219759311648,57.967042949843396],[-126.06328891454285,57.96311264747128],[-126.06318510091528,57.95290249942366],[-126.06382253004752,57.946334710787426],[-126.06365938321986,57.94479161584103],[-126.05955645850186,57.942137824760344],[-126.04996192855522,57.94011411793937],[-126.04804775615658,57.93621206068033],[-126.04853224616035,57.93119663661426],[-126.05295118097105,57.92723839920539],[-126.05810565897485,57.92380007281273],[-126.05878566501202,57.92261550695885],[-126.06748179289443,57.91560449941811],[-126.07224783803893,57.91416653645946],[-126.08208482872782,57.91516566311105],[-126.08857637181677,57.916767432530335],[-126.09886239871105,57.917137007242985],[-126.10093339539533,57.91613062753203],[-126.1108388178951,57.91484877940408],[-126.12363933856652,57.9171701484123],[-126.1297821084823,57.919846842338785],[-126.13776836654353,57.925338496113746],[-126.14534910541508,57.93019314971692],[-126.15319747689291,57.93339627203989],[-126.17011797637453,57.94192595485137],[-126.18289263321701,57.94561445518917],[-126.1956353625483,57.946744779160454],[-126.20786793654447,57.94563168856505],[-126.20898163093622,57.94554022790114],[-126.21495000940382,57.94318008543188],[-126.21822540506149,57.941093273801705],[-126.22011003317867,57.93905354887176],[-126.22627258600049,57.93345374383211],[-126.23623209818074,57.926276941071364],[-126.24064813333639,57.921576798969596],[-126.24059763968123,57.91945955767919],[-126.2341233250747,57.90902804841136],[-126.22929793747494,57.9011683499856],[-126.22656974588313,57.89499163347716],[-126.23174506697822,57.886065091567126],[-126.23241464222563,57.88504118259883],[-126.24510532990017,57.87931261598352],[-126.25445334682182,57.874298033443495],[-126.25541814610803,57.870142470907574],[-126.25490020095108,57.865406636475456],[-126.25663414599205,57.86050501684915],[-126.26411525746894,57.85713515181062],[-126.2661739579712,57.85607245083126],[-126.2806563967353,57.85514556770923],[-126.29294439391396,57.85608796088376],[-126.29762135995888,57.85754885352344],[-126.30267344722428,57.86106314052443],[-126.30770127538791,57.86549237565202],[-126.30853674016336,57.866360654591],[-126.31069034135388,57.87024918651915],[-126.3103846454196,57.87395506008002],[-126.3117126711175,57.87648188019571],[-126.31434454970278,57.878323795157485],[-126.31816197764097,57.87994751983457],[-126.32118930937838,57.88321481960383],[-126.32161816561883,57.88750214246917],[-126.32285759592293,57.889392126937985],[-126.32529677148582,57.89048968482098],[-126.32967264686323,57.891259443592894],[-126.3359506071958,57.89313674444536],[-126.34187713510676,57.89631553471437],[-126.34470378981905,57.89907149704965],[-126.34987505738256,57.902530028594335],[-126.35284758648041,57.90374233020586],[-126.36030726361821,57.905732011480715],[-126.36560182439362,57.90849880767149],[-126.36820163698553,57.91206239173188],[-126.37099701791041,57.916361080891846],[-126.37308404247321,57.918768665205455],[-126.37784585170667,57.921599313532184],[-126.38146629512924,57.92276430924778],[-126.38221787553934,57.922771127387385],[-126.38877088167578,57.922411239333904],[-126.39595705579626,57.92245288216344],[-126.40022640821081,57.923337313433514],[-126.40533973446652,57.924847076459876],[-126.4111557327807,57.92396795785787],[-126.41338180997076,57.920219803618636],[-126.41347571397519,57.91599378203077],[-126.41172704442053,57.912616832931036],[-126.41182379791157,57.90834597906621],[-126.4133578738022,57.906807061858146],[-126.4192168113834,57.90843954940444],[-126.42183716509246,57.91131121035035],[-126.42484614250867,57.915949036718764],[-126.42819443976113,57.91973340355095],[-126.43155576870667,57.92312289806187],[-126.43642106216556,57.92634591038692],[-126.43791027686314,57.92687036863437],[-126.44654651387032,57.92938077070195],[-126.45464450548275,57.93216162041223],[-126.46146337276717,57.93437221557837],[-126.46979547670922,57.93636181611225],[-126.48007798400748,57.93721341307213],[-126.48480024684795,57.93723221051848],[-126.49865149347711,57.93674148349465],[-126.50435133780826,57.936199658970565],[-126.52442961282391,57.9355659074531],[-126.52962471005273,57.93895476643163],[-126.53364858283221,57.941827747218085],[-126.53851248164807,57.94579183443329],[-126.54550440650354,57.95068018937553],[-126.547980005232,57.950293204531974],[-126.55529570761023,57.94935674270258],[-126.56227491154705,57.94939030098281],[-126.56943147576209,57.95136971891668],[-126.5746558605783,57.953500657214505],[-126.58180985391473,57.95576655127334],[-126.59379597912982,57.957822224793354],[-126.59539983366535,57.9582278032641],[-126.60266826633823,57.9603126404463],[-126.60766439517502,57.96335853845145],[-126.60966727026616,57.96553867549068],[-126.61432844223584,57.9696087412338],[-126.62091034074666,57.974208094614994],[-126.6232474842667,57.975812258775996],[-126.63378065190953,57.982142168637985],[-126.64070316245466,57.986048113962575],[-126.65281762459924,57.987927513265134],[-126.65786220435537,57.988225762610945],[-126.66847037646278,57.99016500524892],[-126.67183756799106,57.99491264853101],[-126.67222595497053,57.997880697711466],[-126.67240746608532,58.00004223998401],[-126.67054579211653,58.00743629302699],[-126.66648682271136,58.0153707650976],[-126.66685806653199,58.023695894067124],[-126.69657645938202,58.02389419405995],[-126.71900325835567,58.02708647177474],[-126.73616066213503,58.025611163773924],[-126.75867143893727,58.021375503452845],[-126.76774327328927,58.01977131294894],[-126.77113845163365,58.018701894822144],[-126.77100363062247,58.01584921042869],[-126.77024556727717,58.01345775942961],[-126.7748487066344,58.010712281337895],[-126.78498380548947,58.00885847243895],[-126.79861800107405,58.00822129877998],[-126.8020563692145,58.00817377225594],[-126.81307589317124,58.009049310609676],[-126.8148694908863,58.00828463504929],[-126.82067726955476,58.006041680065664],[-126.82925971232565,58.00335056116091],[-126.8342983766373,58.00007988602245],[-126.83591990611436,57.9992262742384],[-126.83958509400411,57.99838672572402],[-126.84646272677338,57.99845994635489],[-126.85408685176549,57.999218967664504],[-126.86106732960955,57.99980224662611],[-126.86249297396442,58.00007121097294],[-126.87280534510221,58.00068615168433],[-126.88341550837578,58.00005105945351],[-126.88805876127452,57.99879093281755],[-126.8895671682493,57.9983950451947],[-126.89387595012896,57.99754073550025],[-126.90000906840415,57.996647080005815],[-126.9013002190891,57.99659350338409],[-126.90764397019633,57.99620057003158],[-126.91548926096104,57.996452086680556],[-126.91870976375884,57.99679786256547],[-126.92527229615325,57.99584624735599],[-126.93065636676657,57.99459744123216],[-126.93916845021523,57.99204328232298],[-126.93992117490757,57.99182262806876],[-126.94724287961621,57.989832666162414],[-126.94907428139929,57.989326132646966],[-126.9480324430932,57.98504437861248],[-126.9463553993201,57.979501942125786],[-126.94510398092916,57.974135966665926],[-126.94468171146225,57.973107062418784],[-126.94384102919705,57.970483929431595],[-126.9507293602328,57.96849685624794],[-126.95975778284438,57.96782204417191],[-126.96395058854277,57.96680478557509],[-126.96621123828736,57.96635772781892],[-126.97256774270426,57.96304537634954],[-126.97132314664836,57.95643243704645],[-126.96490837450132,57.952252792865245],[-126.9635194986303,57.951275825359474],[-126.95711939565652,57.945902358724574],[-126.95574210359685,57.94332808971446],[-126.95554740021356,57.94019800840604],[-126.95569734040166,57.93425702541164],[-126.95369515959392,57.9290044419444],[-126.94901091698027,57.92403119380604],[-126.94773138180622,57.922936679677086],[-126.94068510779681,57.91853625591488],[-126.93384716182103,57.9153183909134],[-126.92914990582054,57.91246212001094],[-126.92766735645118,57.909942241732686],[-126.92725295102895,57.90845571546314],[-126.92727093807459,57.905889500788696],[-126.92912468933376,57.901614733691325],[-126.93108768713387,57.89750966585122],[-126.93239592660714,57.89483575454411],[-126.93318801001529,57.892919121244326],[-126.93059781408398,57.892928278205176],[-126.92875024188913,57.89294117884732],[-126.92287849721039,57.89298200794562],[-126.91667201849843,57.89352732588056],[-126.9146413209347,57.89377456820995],[-126.90810131624471,57.89392699979645],[-126.90293546304565,57.892930332149],[-126.89912938069307,57.89021061140608],[-126.89765943679407,57.886506073957605],[-126.89735685885526,57.88217459942512],[-126.89534935492874,57.87841088956504],[-126.89120764987786,57.87501138315369],[-126.8850428697419,57.87219943980034],[-126.88017063105588,57.86976447411762],[-126.87645433336539,57.86602080797112],[-126.87520522883001,57.86243131471349],[-126.87661815640834,57.85802581820449],[-126.8819951128143,57.85382736403674],[-126.88644146631633,57.851456173949636],[-126.89078806465811,57.849211109848774],[-126.8917025549668,57.84680952781823],[-126.88951801279951,57.84459020115619],[-126.88435943105216,57.843592863038815],[-126.88264149983297,57.84337101328346],[-126.87736977223682,57.842158838681776],[-126.87316153685606,57.84046398245955],[-126.86922679408131,57.83631796228427],[-126.86741521679325,57.83141337339206],[-126.86945556840192,57.82637598854513],[-126.87132805879938,57.8235735917776],[-126.87280409764413,57.82271161621053],[-126.87306573025617,57.819507085340554],[-126.87107062490391,57.81598543389933],[-126.8689827149842,57.81330768437552],[-126.86386462599378,57.80872080789597],[-126.8638419715713,57.807455997392324],[-126.864631155146,57.80419427709238],[-126.86734338260574,57.80065088089219],[-126.8793625133619,57.79737808254279],[-126.89259778613241,57.79632986967173],[-126.90603602466611,57.794650959965466],[-126.9206763281814,57.79434393650617],[-126.93214428373456,57.79563655432506],[-126.94124161716714,57.796038903574875],[-126.95572778131996,57.79349524123354],[-126.96995422037915,57.78922939027641],[-126.9781049168145,57.78569769753126],[-126.98086577730963,57.78019586655324],[-126.97839300010789,57.7749031338923],[-126.97520089987832,57.77075501470497],[-126.97396470971007,57.76334495241089],[-126.97333210809246,57.759070381430256],[-126.97208645119164,57.7558768445478],[-126.96637676689238,57.7537385949421],[-126.95599642101601,57.752782134714536],[-126.95161738092126,57.75281361747386],[-126.94847107893841,57.75054855127466],[-126.94793289297473,57.74547484846903],[-126.94697091146654,57.74062846797187],[-126.94706543928272,57.73513763553553],[-126.94893280106785,57.72793868054682],[-126.94892258833403,57.72736462502619],[-126.9470906074885,57.721726164646974],[-126.9425944913628,57.71616051036088],[-126.93672341704516,57.71105299817011],[-126.93356465243878,57.708106026025874],[-126.93175611383248,57.70337333822553],[-126.93223297577956,57.70075059503003],[-126.92996836135342,57.699510641145956],[-126.91770792066322,57.69964098501333],[-126.90672457075725,57.699644844062576],[-126.90137577744508,57.69888297312128],[-126.89348343350055,57.69881981820064],[-126.89166754874525,57.69870646616307],[-126.88377525797439,57.69864273295929],[-126.87297417974689,57.697162467646365],[-126.86630017008143,57.6938334263937],[-126.86132634612038,57.69020597301933],[-126.85445884554684,57.68796303166427],[-126.84642342306662,57.68589764790492],[-126.84197145573032,57.68169208528309],[-126.84265860090825,57.67552969476124],[-126.84272910907359,57.67554045870075],[-126.84300783782763,57.67553083553783],[-126.84321297097185,57.67551271034112],[-126.84330708694696,57.675500898275715],[-126.84338544186882,57.675488065267366],[-126.84349531872103,57.675477273944686],[-126.84357882449572,57.67545992293731],[-126.84359866277508,57.67545643274235],[-126.84364288225991,57.675416906633835],[-126.84372842521356,57.675350206773494],[-126.84378816362981,57.67530161158738],[-126.843845929878,57.675258635282255],[-126.84393168889346,57.67520090405939],[-126.84399066994919,57.67516576882296],[-126.84400936791552,57.67515780076472],[-126.84407379974408,57.67513160088685],[-126.84419266353633,57.67514766211142],[-126.84440390363281,57.675168740488516],[-126.84461050563642,57.6751225720587],[-126.84471755840451,57.6750792809711],[-126.84474484433929,57.67508022816017],[-126.84477256978371,57.675054262117804],[-126.84488700899601,57.67496607306686],[-126.84508645585593,57.674834733225225],[-126.84527797572916,57.67477071973517],[-126.8454268359657,57.67476864806472],[-126.84550215176391,57.674760318272895],[-126.84557029990991,57.67471278985481],[-126.84574267466614,57.674589470788554],[-126.8458682592523,57.674484390705786],[-126.84593492357202,57.6744178100449],[-126.84601901915654,57.674333177702394],[-126.84611468102332,57.674249592665454],[-126.8462037340644,57.67415259459843],[-126.84631716441181,57.67401956012513],[-126.84639553117191,57.67391366011605],[-126.84641465804283,57.67387765731302],[-126.84641429403858,57.673814868711574],[-126.8464129439018,57.67370723575986],[-126.84643330206707,57.673586008846414],[-126.84647465420687,57.67346576899157],[-126.84649831254022,57.67339834176722],[-126.84650713839304,57.67337137495301],[-126.84650063769072,57.67326826003982],[-126.84647269546947,57.673096885003694],[-126.8464554096415,57.672980383879775],[-126.84645502050483,57.67291647422656],[-126.84645727155586,57.672876094274464],[-126.8464608635312,57.672849160937126],[-126.84645910465142,57.672817776747756],[-126.84648005195851,57.67276942841028],[-126.84654577244235,57.67270733861963],[-126.84656677803245,57.672662353695735],[-126.84648217654082,57.672630377920584],[-126.84638622637469,57.67260632349914],[-126.8463577850858,57.67260089898642],[-126.84636167795094,57.672587418918425],[-126.84640033982174,57.67253447230127],[-126.84650408279312,57.67243738024838],[-126.84661180151754,57.67233129257685],[-126.84666254221756,57.672255843355074],[-126.84667601625233,57.6722019364744],[-126.84668006290089,57.67214808988326],[-126.8467021248221,57.67210309820342],[-126.84672271688531,57.67208614754054],[-126.84668548735878,57.67206283907045],[-126.84666049120189,57.67197666153867],[-126.8467208125089,57.67186078552543],[-126.84675813213681,57.671794392242816],[-126.84673606046854,57.67174519776817],[-126.84670108198902,57.67168150939871],[-126.84666544810038,57.67163576544411],[-126.84664932922182,57.67161792829442],[-126.84665006829493,57.671604468397206],[-126.84666563891257,57.67155054814206],[-126.84669548576987,57.67147859636273],[-126.84671158295163,57.67144821928596],[-126.84669438226939,57.67142926779975],[-126.84665886571433,57.671388008161614],[-126.84664169016378,57.67137017777333],[-126.84661410593078,57.67135577773502],[-126.84655560843628,57.67131915008125],[-126.84652804934774,57.67130587112939],[-126.84642838530513,57.67130314454989],[-126.8461643660408,57.67131268106807],[-126.84592111403666,57.67131311426013],[-126.84581047331274,57.67128915333804],[-126.84573932549146,57.67120214928329],[-126.8456421149857,57.671074946186124],[-126.84552830633433,57.67095569788538],[-126.84547172370156,57.67091008744172],[-126.84545147052573,57.670895640355695],[-126.84541123140603,57.67087795710106],[-126.84539003843994,57.67086800106037],[-126.84542301063874,57.670842001459846],[-126.8454816997737,57.67079341235826],[-126.8455115183266,57.67076743287641],[-126.84552359796224,57.670744930468004],[-126.84553267922477,57.670682081737596],[-126.84549866033802,57.670613901953246],[-126.84543433059844,57.67055040078058],[-126.84537636640972,57.67049022272379],[-126.84535593822025,57.67046792790856],[-126.84533550179006,57.670444511880554],[-126.84528489313568,57.67038540808838],[-126.84520166854385,57.670320906196054],[-126.84510512428491,57.67026994443304],[-126.8450362464244,57.67023786747713],[-126.84499608328322,57.67022354741551],[-126.84496985759199,57.67022259353811],[-126.84493840673208,57.67022279426581],[-126.84490148044429,57.67021293856763],[-126.84488336638066,57.67019959901884],[-126.84491355480742,57.67009625022294],[-126.8449941002826,57.66989951526937],[-126.84503815037118,57.66980616935448],[-126.84504298326401,57.66978819831386],[-126.84505933682932,57.669721939471074],[-126.84508972464103,57.66962755949823],[-126.84510519654324,57.66956915511937],[-126.84509516909291,57.669542308846744],[-126.84507893495066,57.66951998724043],[-126.84505849920363,57.66949657119068],[-126.8450432217133,57.66946975842807],[-126.84502582253505,57.66944183794565],[-126.84506911564841,57.66936195202726],[-126.84517664615096,57.66924689691144],[-126.84523521621638,57.66919382369309],[-126.84524638074365,57.669176933490874],[-126.84531219716196,57.66911932892966],[-126.84541631743258,57.66904017577196],[-126.84548978054069,57.66899597742997],[-126.84553553131532,57.668978866315456],[-126.84557393537322,57.6689618021099],[-126.84561015933367,57.66894026677359],[-126.84565750569521,57.66890072020131],[-126.84570559131299,57.66884771375659],[-126.84578014832667,57.66875865782555],[-126.84584835269277,57.668620306964826],[-126.84583156412903,57.66843204241202],[-126.8458101566333,57.66822474597378],[-126.84581697765836,57.66810809130785],[-126.84581962992631,57.66808564915476],[-126.84582156397788,57.66803181630212],[-126.84594495920226,57.66787629393802],[-126.84619416086508,57.667673995714736],[-126.8463346350711,57.667532940229876],[-126.84634421554715,57.667492513625696],[-126.84634906429712,57.66747454246943],[-126.84639760217142,57.66739462270182],[-126.84648290021285,57.66727073874512],[-126.84652352768269,57.66721217345606],[-126.84663492100985,57.66722379494766],[-126.84686668252296,57.66722679756408],[-126.84699030722297,57.66717554997059],[-126.8469761224528,57.66710388011341],[-126.84692917058156,57.667067178941636],[-126.8468438005202,57.667047542415716],[-126.8467615369543,57.666978550552194],[-126.84683562284373,57.66682222160338],[-126.84701275029704,57.66663271685896],[-126.84712196223477,57.66649970947107],[-126.8471637532099,57.666446742865254],[-126.84718581123356,57.6664017513473],[-126.84719758738792,57.66636579570036],[-126.84719834293561,57.66635233575955],[-126.84721271739926,57.66633878865899],[-126.84724558403146,57.666308304323316],[-126.8472599584615,57.66629475721836],[-126.84727330133606,57.66628233797299],[-126.8473012110331,57.666264219196464],[-126.84732187493596,57.66625063182829],[-126.84732326878705,57.666219227663426],[-126.84732595610332,57.66615193494467],[-126.84732838980939,57.66612052412671],[-126.8473508740694,57.666094591259395],[-126.84744221880467,57.66600654836266],[-126.8475551661964,57.66590042696171],[-126.84760010901084,57.66584744005995],[-126.84759980777916,57.66583398688897],[-126.8476542766298,57.66578542400892],[-126.84771599096351,57.66573232967612],[-126.84778619144168,57.66568366600042],[-126.84790365628614,57.66559209174577],[-126.84813031403355,57.66546057380294],[-126.84837311233673,57.66534801342107],[-126.84847501887369,57.6652643871885],[-126.84848419443529,57.66520602296797],[-126.84849117301262,57.66514318780123],[-126.84850014748955,57.665075854813324],[-126.848480374935,57.66503561627646],[-126.84843582212605,57.665012355431486],[-126.84841253521454,57.665002413366636],[-126.84842792472048,57.66494064556522],[-126.84853583453135,57.66484352574345],[-126.84859335324953,57.66479045792571],[-126.84861485465315,57.66476789493846],[-126.84864791985599,57.664746379069605],[-126.84869136657525,57.664720311603844],[-126.84870793684091,57.66471123530563],[-126.84874968923728,57.66470311880122],[-126.84880937009224,57.664699372351855],[-126.84883874506474,57.664700305245105],[-126.84883175194034,57.664668954883325],[-126.84881784113992,57.664609617449486],[-126.84881094860026,57.66458275147325],[-126.84882485334987,57.664501931794284],[-126.84879041679362,57.6643216302303],[-126.84868283229434,57.66419898178733],[-126.84864785751206,57.66413529438616],[-126.84866505041977,57.66401408844048],[-126.84863121823267,57.66386069320459],[-126.84858839556931,57.66377463099723],[-126.84858675264017,57.66374773137846],[-126.84859557475554,57.66372076467111],[-126.8486116671141,57.66369038758595],[-126.84864126850708,57.66365431761021],[-126.84868021966477,57.66361482391466],[-126.84870151927878,57.66358329217847],[-126.8486970249653,57.663569865920785],[-126.84868919344318,57.66354749101109],[-126.84864548099115,57.663515254843375],[-126.84862527246247,57.6635019293311],[-126.84862633842218,57.66345595100062],[-126.84860031210371,57.663370902404395],[-126.84854507843855,57.663338740071765],[-126.84851276942706,57.66334679597608],[-126.84848728666944,57.66333238299911],[-126.84847440710013,57.66331901048771],[-126.84843624583525,57.66330019374679],[-126.84834848567104,57.66326711856135],[-126.84826096851519,57.66324413306357],[-126.84823023669836,57.66322975367746],[-126.84821020430104,57.66322427576825],[-126.84814648537898,57.6631876826282],[-126.84805109558337,57.66314120107257],[-126.84800864159699,57.66311792669463],[-126.84801756443011,57.663095444420165],[-126.84803441217122,57.66305160751956],[-126.84804323451782,57.66302464086664],[-126.84804558374249,57.66298874564275],[-126.8480140001728,57.66288915626462],[-126.84792663014258,57.662779832969136],[-126.8478293984397,57.662697482917324],[-126.84775331424656,57.66262396740218],[-126.84772020234624,57.66259614809511],[-126.8477405879456,57.66257022867328],[-126.84777711625654,57.66251617448701],[-126.84779740134881,57.66248577068237],[-126.84780442871676,57.662472270614344],[-126.84782638323509,57.66242279478257],[-126.84788329666048,57.662342821142],[-126.84796185252786,57.662245890016635],[-126.84799752458173,57.66220081130376],[-126.84797196745791,57.662183034962254],[-126.84791809389792,57.66216431875896],[-126.8478885200458,57.66215441691457],[-126.84786829573977,57.662141091411364],[-126.84781316491657,57.66211341318491],[-126.84776545482748,57.66208905117164],[-126.84772935170615,57.6620220071408],[-126.84768848102553,57.66188211211586],[-126.84765785542453,57.661778031617395],[-126.84764384712135,57.66171420984904],[-126.84765461732277,57.66163341059441],[-126.8476585442738,57.66157508024586],[-126.84765071377801,57.661552705316836],[-126.84763124517458,57.66152591990277],[-126.84757236030103,57.6614713555507],[-126.84750258454399,57.661397799599044],[-126.84743403781904,57.66123902048559],[-126.84736199027574,57.66101747359666],[-126.84733768830809,57.66091559514125],[-126.84733306933761,57.660896563409025],[-126.84515364817867,57.65680672085013],[-126.8489706182728,57.65562179871177],[-126.85098780122547,57.654996641808914],[-126.85848264577614,57.64787542062842],[-126.85902834659046,57.64735610792356],[-126.87631240547397,57.64297531727868],[-126.87644781709214,57.64289593349463],[-126.87653657983726,57.64279219138084],[-126.8766914812175,57.64260391799047],[-126.87681653765222,57.642439388272095],[-126.87686999188685,57.64234933484404],[-126.87694520409644,57.64220419645938],[-126.87699627701049,57.64210182515194],[-126.87708824104058,57.64191060487082],[-126.87718134717757,57.64172386193557],[-126.8772560370544,57.64160115167635],[-126.87736171182227,57.64145917484721],[-126.87747175781587,57.64132501762161],[-126.87755244532103,57.64123478335513],[-126.87763903733506,57.641128812540146],[-126.87772132554521,57.64101726404046],[-126.87789289651245,57.64082551515525],[-126.87809982211999,57.64062231902669],[-126.87831825997026,57.640419046165086],[-126.8784423677655,57.6403038558933],[-126.87858026626498,57.64019642258525],[-126.87876800290076,57.64006959705122],[-126.87892470293052,57.63995979602511],[-126.87910408313961,57.63983414678366],[-126.87928992938893,57.6397163029861],[-126.87944399609192,57.63962894360192],[-126.87955988540007,57.63956650509309],[-126.87970877379749,57.639481422308045],[-126.87994225462594,57.63933971485839],[-126.88014997143303,57.63921611820979],[-126.88031647379415,57.63912306890092],[-126.88046336799397,57.63904248349549],[-126.88061890211219,57.63897305277758],[-126.88083927569217,57.63889870520409],[-126.8810431793117,57.638881650012955],[-126.8812567971574,57.63878716448115],[-126.881400358924,57.63874360103717],[-126.88157782666636,57.638671780574846],[-126.88174357107292,57.63859106812775],[-126.88191552133944,57.63850695039222],[-126.88204908809165,57.63843878568309],[-126.88230334650649,57.6382902081423],[-126.88244167068784,57.63820182906163],[-126.88259360291023,57.63811335904649],[-126.88291272129035,57.63796098387665],[-126.8833243372959,57.637776595708836],[-126.88349747630848,57.63769919540885],[-126.88355187852082,57.63756092006911],[-126.88362062096482,57.63745394352271],[-126.88370413186247,57.63735135322888],[-126.8837709284359,57.6372062676221],[-126.88377598638365,57.63706383696843],[-126.88372669207487,57.63688140500701],[-126.88369959777557,57.636618095860584],[-126.88381298614956,57.63644915312646],[-126.88389335319329,57.63630173442498],[-126.88410097492319,57.635996492437975],[-126.88428526903891,57.635813620624766],[-126.88447779056459,57.635758514208185],[-126.8845883620061,57.63569386447676],[-126.88467875291776,57.635617016057054],[-126.88480520012486,57.6354692886771],[-126.88497339301088,57.63526970515813],[-126.88520803232377,57.63508985898397],[-126.88553001263625,57.63492736743763],[-126.88566759251837,57.634852444908674],[-126.88587482985339,57.63471090298137],[-126.88600362356377,57.63448467251484],[-126.88623070690372,57.63416135743621],[-126.88657462116417,57.63390677538772],[-126.88672794514437,57.63374429014428],[-126.88671713234287,57.633595238766056],[-126.88676380369779,57.633486166372876],[-126.88688804084238,57.63342366562831],[-126.88688523875027,57.63325886334615],[-126.88676425337866,57.633057852856226],[-126.88670042296403,57.632970824739346],[-126.88657525430052,57.63285954068138],[-126.88655792235241,57.632700442037326],[-126.88666792605129,57.63252255014899],[-126.886827637513,57.632454205524695],[-126.88679954760899,57.63237254401763],[-126.88704680667983,57.6321959739661],[-126.8872609587622,57.63199271603343],[-126.8874064767453,57.6318101004416],[-126.88747395838688,57.63169528217118],[-126.88752048441266,57.63157948326836],[-126.88757324438328,57.63137282290253],[-126.88761430830134,57.63115839243904],[-126.88763015052353,57.631074193897554],[-126.88744559447763,57.631065341320465],[-126.88726417195184,57.631056467464965],[-126.88708035675387,57.63103415465641],[-126.88679760937268,57.630992322848826],[-126.88642080885784,57.63095896944425],[-126.88621174855211,57.63097718888231],[-126.8859392201829,57.630879225324506],[-126.88547733680817,57.630612102342404],[-126.88506623421091,57.63041079050961],[-126.88486597318314,57.63035719033042],[-126.8846533289455,57.63031152128286],[-126.88449007134044,57.63027224899239],[-126.8843098581862,57.63022524128002],[-126.88405055912908,57.63024491444313],[-126.88370033349375,57.63022819415564],[-126.88346557341458,57.63004251752308],[-126.88336293109157,57.62990753460013],[-126.88320702498912,57.629869332885704],[-126.88299391522158,57.62980348223961],[-126.88274441664717,57.62970423733028],[-126.88257968452014,57.62960218386117],[-126.88248062930124,57.62953108633266],[-126.88235954819275,57.629459014463386],[-126.88220702467851,57.62938603100833],[-126.88202016987113,57.62932336739299],[-126.88175415627155,57.629234321877455],[-126.88150031139617,57.62921807444908],[-126.88131364530632,57.62920810623853],[-126.88112816526456,57.62920373599485],[-126.88097304628259,57.62919916325029],[-126.88081237012646,57.62918117262054],[-126.88057235336221,57.62912895208277],[-126.88041601044063,57.62907168921176],[-126.88012494734707,57.6289861709103],[-126.87978982455196,57.6288975814175],[-126.87952224521403,57.628830966431],[-126.87931173641753,57.628786395984285],[-126.87913083606611,57.62875396187014],[-126.87898137826096,57.62872243976293],[-126.87877210828962,57.62868570881347],[-126.87849486594054,57.62865391397316],[-126.87824942997989,57.628638725716534],[-126.87789829604033,57.62862760236344],[-126.87771088063687,57.628629967548676],[-126.87754379512249,57.62865125839682],[-126.8773154090382,57.628694258974974],[-126.87702242364861,57.62875114226471],[-126.87685763918155,57.628781386783096],[-126.87664046798467,57.62881085713214],[-126.87641541304863,57.62881683364308],[-126.8762042598763,57.628744231923676],[-126.8759940664818,57.62871310883689],[-126.8757499266837,57.628753968598005],[-126.8754569671267,57.62876712046697],[-126.87530345297961,57.62874122719816],[-126.87497289487992,57.62866829254129],[-126.87464088517763,57.628577427081204],[-126.87447281890232,57.628511265026596],[-126.87429962905827,57.62844962153502],[-126.87400687357847,57.628425768454804],[-126.87358096063284,57.62839606703059],[-126.8732677361898,57.62839365078298],[-126.87307983437415,57.628420679548995],[-126.87291584550796,57.628439701644126],[-126.87273158977041,57.628443160145515],[-126.87248556656137,57.62844814712411],[-126.87210772257045,57.62841363893402],[-126.87165031789151,57.628380775298204],[-126.87132501572603,57.628353767136865],[-126.87092909629656,57.62830704122725],[-126.87073719311293,57.62829709263466],[-126.87050124723629,57.62828407000313],[-126.87018468473445,57.62827269864795],[-126.86981897300899,57.62826501347521],[-126.86950202498535,57.62823682467839],[-126.86936183031463,57.62819738231843],[-126.86918119845531,57.62817614515184],[-126.8689177786902,57.6281532092639],[-126.86860060098154,57.62811492882483],[-126.86840316347974,57.62809155853457],[-126.86823832597884,57.62807358004319],[-126.86801682082434,57.62805148840937],[-126.86776825977348,57.62803630127583],[-126.86750413668696,57.62802794309367],[-126.86731780045213,57.62798655881369],[-126.86715958371825,57.62784632234097],[-126.86687711281067,57.62790535655341],[-126.86656260564165,57.6279836608603],[-126.86637995428444,57.62801176689733],[-126.86621434443431,57.628006124396755],[-126.86603407397203,57.628000577695595],[-126.86584126289996,57.62799623407621],[-126.86558458166279,57.62799230823098],[-126.8653697201128,57.62798586580259],[-126.86517264364045,57.62797818545439],[-126.86486753598955,57.627963362798546],[-126.86463750244549,57.62793459396668],[-126.86438916395151,57.62788351994856],[-126.864221697933,57.62784200799928],[-126.86405297220539,57.62779153430026],[-126.86384148432008,57.62784112843228],[-126.86357338712915,57.6277957880672],[-126.86335548755436,57.627747877025016],[-126.863172008952,57.6277389837147],[-126.86292747068548,57.627717033929876],[-126.86257234893124,57.62766777448499],[-126.86238117504882,57.62764323317893],[-126.86221003376386,57.627624167098666],[-126.8620594114127,57.62758702751161],[-126.86191932889737,57.627552061504836],[-126.86175629396467,57.627521729802],[-126.86141903691065,57.627474593319846],[-126.86109448290141,57.627434100596005],[-126.8609452745587,57.62741264763869],[-126.86070877732672,57.62737494434549],[-126.86010894956597,57.62729587658803],[-126.85946048812922,57.627195819029104],[-126.8592076134523,57.627083097780606],[-126.85921402127681,57.62694963099492],[-126.85920626048423,57.62683868067247],[-126.85905946834986,57.62678469455717],[-126.85878619101084,57.62674162070712],[-126.85856928287987,57.62669033180872],[-126.85842469676528,57.62664193677984],[-126.85853589586377,57.62646518350609],[-126.85866047257116,57.62632422230585],[-126.8587626464105,57.62621143695455],[-126.8588967811123,57.6260760195789],[-126.85903046605713,57.62592154428325],[-126.85910276220564,57.62583025592925],[-126.85917175573182,57.625732261687766],[-126.85924362769738,57.62562303653058],[-126.85931770835812,57.625472311916525],[-126.85936550406313,57.625363243163534],[-126.85943282167553,57.62523722925976],[-126.85951238228692,57.62509768114421],[-126.85958161514415,57.624963806217096],[-126.85966333245976,57.62478051653475],[-126.85975004718132,57.624587103380925],[-126.85983005444238,57.62446661293093],[-126.85988882708374,57.62437989704063],[-126.8598898231265,57.624285708326184],[-126.85985903753681,57.624128938134824],[-126.85983714591266,57.623902594694506],[-126.85977110362329,57.62371465972874],[-126.85967132688246,57.623609914089215],[-126.85963898662845,57.62352266946517],[-126.85959261943128,57.62341757656753],[-126.85946672288907,57.623269273180654],[-126.85937162021514,57.623092739182475],[-126.85924453442955,57.62293771607691],[-126.85913241332715,57.62279605023482],[-126.85901032765102,57.62263090353606],[-126.85889177364953,57.62248255204192],[-126.85882515503572,57.62240786334107],[-126.85859620115697,57.62228601655898],[-126.85844809277609,57.62221970529884],[-126.85826867557256,57.62215808196092],[-126.8580622032086,57.62205739145216],[-126.85796925068702,57.62197614596393],[-126.8578183804122,57.62183360939037],[-126.8577190453574,57.621747920300216],[-126.8575221082751,57.621605682245175],[-126.85736353309176,57.621493467959006],[-126.85725279266318,57.62141233736502],[-126.85714611396077,57.62132557429027],[-126.85712864145253,57.62120123286671],[-126.85714171699304,57.62103857218525],[-126.85719918664542,57.62080162367511],[-126.8572308950197,57.62058278160843],[-126.85721662158461,57.62041469225256],[-126.85721009980638,57.620265613277795],[-126.85720993701531,57.62016582643653],[-126.85718128515455,57.6200101636929],[-126.85715432274122,57.61988252031362],[-126.857111687973,57.619664160386876],[-126.85704820491424,57.6193113902634],[-126.85699220274536,57.618918208149466],[-126.85701018065299,57.618601910183465],[-126.85709927210014,57.61823581807381],[-126.85718151395791,57.617843982597805],[-126.85718238438173,57.61751209888823],[-126.85711578238677,57.61725241010187],[-126.85707273961049,57.61715514393795],[-126.85671557996082,57.6171036407327],[-126.85648458886705,57.617167925026884],[-126.85634370589018,57.617234988940396],[-126.85616898442771,57.617194635768975],[-126.85606020097448,57.61710676467079],[-126.85583254577836,57.61699387522734],[-126.85555028435735,57.61692058108561],[-126.85537034768993,57.616881381841736],[-126.85510336965264,57.616788927342],[-126.85498069216713,57.61673478152231],[-126.85484113854088,57.61667513867109],[-126.85466843917779,57.61663140686584],[-126.85436161605261,57.61653696606785],[-126.85418964467851,57.61647865324359],[-126.8540028998338,57.61641595080078],[-126.85378236946752,57.61634001179463],[-126.85363137099614,57.616283805240776],[-126.85340814751638,57.616228064752136],[-126.85319993410711,57.61618792393134],[-126.85298950126324,57.616142191069954],[-126.85273729119886,57.616054121473525],[-126.85253273737487,57.61599041066678],[-126.85222294722908,57.6159498020941],[-126.85222948203032,57.61586791186617],[-126.85205283075625,57.61574123289619],[-126.85196308073292,57.615661084411116],[-126.85181503211258,57.6155487965195],[-126.85170997788295,57.61539362566547],[-126.85166659295702,57.615186482017926],[-126.85165385756125,57.61508565551939],[-126.8514069553702,57.615093973046825],[-126.85121822492484,57.61512882452113],[-126.85096319278975,57.61519437506347],[-126.85073240487036,57.61526761754659],[-126.8505455402178,57.61529236519684],[-126.85038786000193,57.61526422818446],[-126.85020411797186,57.6152407434136],[-126.85006438758134,57.615359368550195],[-126.84979395000839,57.6153454102632],[-126.84958284765176,57.61531649446208],[-126.84921778421163,57.61533117319497],[-126.84893660252811,57.61530494890947],[-126.84866720521238,57.615243891010216],[-126.84844633977711,57.615199339201645],[-126.84830080947098,57.61529333313532],[-126.8478616647808,57.615459846190504],[-126.84729823286528,57.615500458154166],[-126.84701621319759,57.61548320479513],[-126.84668316190803,57.61552570155292],[-126.8464227051647,57.61553633896707],[-126.84618696815731,57.61557596899161],[-126.84593906876262,57.615633615703544],[-126.84575963558062,57.61566279383688],[-126.84553306731145,57.61578533324],[-126.84514379810933,57.61584164009907],[-126.8449398523591,57.61585191331761],[-126.84496769546286,57.61573849362337],[-126.84488586045754,57.61563698694384],[-126.84470183929707,57.61564825367297],[-126.84444288366328,57.61563308986977],[-126.84422202092574,57.615588530988326],[-126.84400928387532,57.61553270781936],[-126.84370749887499,57.61547408901118],[-126.84338324116067,57.61544140059386],[-126.84319571425013,57.61543586952137],[-126.84302723829582,57.61544030754637],[-126.84279057603516,57.61543845282074],[-126.84262906249445,57.615426027884936],[-126.8423077397067,57.615336136706595],[-126.84206197356201,57.61525473317535],[-126.84190670167823,57.615192934624176],[-126.84176929287712,57.61513438577441],[-126.84160446759455,57.61506704168872],[-126.84143170619772,57.61506702015296],[-126.8410639449963,57.61500769407657],[-126.84075419192226,57.61496705856241],[-126.84052119801436,57.61494163118843],[-126.84029226748797,57.614910571561595],[-126.83996178623248,57.614880156783194],[-126.83970289203998,57.61491431631491],[-126.83953133553005,57.61492101186825],[-126.8393269631255,57.614911097489134],[-126.83902983238615,57.614873741429456],[-126.8387563446455,57.614863143587044],[-126.83854685422776,57.61485886649245],[-126.83834554015077,57.6148455675926],[-126.8381544962117,57.614823233651705],[-126.83789697338507,57.614777775525816],[-126.83773753314586,57.614764210306596],[-126.8375629191697,57.61477428629002],[-126.83733523033938,57.61479927384829],[-126.83690945894948,57.614815424281154],[-126.83668045877906,57.614828085778555],[-126.83644994178125,57.6148676653432],[-126.83617486398613,57.614927708003194],[-126.8359914618215,57.614966988762845],[-126.83581898955957,57.61497929129868],[-126.83564278268315,57.615012920068494],[-126.83544262285575,57.615004094263185],[-126.83514111027009,57.61495778754908],[-126.83493791879114,57.614906374434106],[-126.83468446315364,57.614855278369134],[-126.83447336712634,57.61482521730427],[-126.83418631539763,57.61476984754045],[-126.83396955840267,57.61472076096065],[-126.83383356403829,57.61467789188468],[-126.83364171286092,57.61457146638576],[-126.83344364787813,57.61446732220295],[-126.83325655295772,57.61438665383454],[-126.83294442818776,57.61438077233156],[-126.8327303108789,57.61416572930732],[-126.83265432500565,57.61404287576584],[-126.83268375914244,57.613952994276715],[-126.83253870869355,57.61392699898308],[-126.83242648806937,57.61382231274472],[-126.83235518341847,57.61372185362224],[-126.8323209518226,57.61364134268396],[-126.83221826850544,57.61354220226259],[-126.83210986793311,57.61342067374943],[-126.83200571228727,57.613302482050806],[-126.83194410984224,57.613214294909085],[-126.83190426036784,57.61311588005996],[-126.83173658593974,57.612965573090406],[-126.8315491308291,57.6128198751624],[-126.83128879440855,57.61264436292377],[-126.83102540555348,57.61256865615107],[-126.83068817894699,57.61246762527886],[-126.83032701049682,57.61242056150705],[-126.83002894381045,57.612434766520686],[-126.82986278627904,57.61244814286828],[-126.82957669158681,57.61243536292816],[-126.82921285884827,57.6124096156237],[-126.82887216125894,57.61238932826048],[-126.82865728862764,57.61237722095294],[-126.82839237516566,57.61237551767043],[-126.82813358762562,57.612365927090956],[-126.82796157536477,57.61235130775541],[-126.82781054748371,57.61233879919208],[-126.82763644194281,57.61232419254341],[-126.82735434024322,57.612302413219204],[-126.82709540670008,57.61228609433613],[-126.82694125515913,57.61227472552573],[-126.82676399388393,57.61225901627492],[-126.82641120638154,57.61221188944207],[-126.82602133507083,57.612144811832074],[-126.82573546880005,57.61209390144599],[-126.82541196888606,57.61204546783034],[-126.82510112846826,57.61200143920724],[-126.82492158055312,57.61197677219324],[-126.82465689597822,57.61193693929651],[-126.82450974085879,57.61190982725676],[-126.82425961131433,57.61176899502294],[-126.8239610896696,57.61161725200951],[-126.82362737095002,57.61148366680869],[-126.82337115381198,57.611400051952245],[-126.82318878605369,57.611341764284404],[-126.82304735488462,57.61128882748513],[-126.82290684079005,57.61123027884793],[-126.8227664655375,57.611177335185495],[-126.82252629311907,57.61115752707036],[-126.82230970081102,57.61116223816153],[-126.82211293937385,57.61116458317684],[-126.82195472849828,57.611158839828214],[-126.82176698288285,57.61114206793243],[-126.8215665001828,57.61106931512303],[-126.82137612117236,57.61097968129982],[-126.82119701173622,57.61092697667242],[-126.82097182262123,57.61087343679721],[-126.8207893715179,57.61081178281666],[-126.82059252117348,57.610713218521994],[-126.82044483425412,57.6105156836268],[-126.82037649984466,57.610260475217856],[-126.82028266244888,57.610133241314685],[-126.82006778109832,57.61011999902728],[-126.81976898124117,57.61014763985343],[-126.81958923880806,57.61016220874097],[-126.8194197415411,57.61011841174578],[-126.81926645142302,57.610048726613535],[-126.81913958747319,57.609991210698],[-126.81898322257202,57.6099249078891],[-126.81881536038847,57.609859797315394],[-126.81865398937848,57.609803615890094],[-126.81851798902268,57.609759610315166],[-126.81832866439164,57.609718177115916],[-126.81807668378569,57.60968385859206],[-126.81782660353926,57.60964055828258],[-126.81751999391238,57.60954827459708],[-126.81714977040349,57.609419384089634],[-126.81696656050052,57.60941827414107],[-126.8167321029527,57.60941972297609],[-126.816451687797,57.60942594003495],[-126.81608645847848,57.609431558953176],[-126.81574619740331,57.6094291744271],[-126.81558062807109,57.609421226533335],[-126.81541960725578,57.60943006827422],[-126.81525327223402,57.60943557901384],[-126.81506168881867,57.60943451806795],[-126.81485300433042,57.609417865558555],[-126.81454431518065,57.609374920361],[-126.81431931324886,57.609329216542875],[-126.81417407639739,57.6092931118107],[-126.8139807165447,57.60925842445737],[-126.81381254957854,57.60922694530337],[-126.81365802216463,57.60919650317456],[-126.81350386316201,57.60918399768361],[-126.81319139954068,57.60916013286102],[-126.81284955720625,57.60913308438688],[-126.8125436387953,57.60912151090793],[-126.8121969102619,57.60915951994841],[-126.81185253848238,57.609209846718905],[-126.81157837921988,57.609165561363916],[-126.81139768505115,57.609087065992576],[-126.81123252545481,57.60904883796599],[-126.81103212224343,57.60902764386247],[-126.8108718693411,57.60902302104765],[-126.81066907797738,57.60903659799941],[-126.81042981218269,57.609058246613756],[-126.81026777736585,57.609068209487205],[-126.81000457400897,57.60904739876457],[-126.80985458087221,57.60898440986834],[-126.8096211760411,57.608838963537735],[-126.80950903376703,57.608734258343425],[-126.80941532330532,57.60865971237235],[-126.8093269099565,57.60858849748345],[-126.80925732966926,57.608516046052145],[-126.80918723039723,57.6084200527532],[-126.8091095500671,57.60831177273122],[-126.8089903653157,57.60817123216562],[-126.80886803312922,57.608030710776454],[-126.80882250777647,57.607859447192716],[-126.8088444080466,57.607659741289254],[-126.80875884810035,57.60747638963015],[-126.80855925971613,57.607345310263305],[-126.80836038981846,57.60724786191874],[-126.80812124739332,57.607127114533405],[-126.8078985896304,57.606993932897915],[-126.80775772554244,57.60691631055237],[-126.80760005167079,57.60683654839513],[-126.80751308736687,57.60673393031045],[-126.80746390854485,57.6065873549871],[-126.80725966548616,57.60643387848107],[-126.80694291616862,57.60630575474461],[-126.80668826768635,57.60619406910721],[-126.80651671551294,57.60610093618418],[-126.80635066779747,57.60602010254094],[-126.8061796356017,57.60600096444601],[-126.80609884179471,57.605991366516236],[-126.80598554762541,57.60597972434803],[-126.80579294063381,57.605930445238464],[-126.80566925904702,57.60587289742255],[-126.80552316237885,57.60579530472412],[-126.80528579795657,57.605658845019065],[-126.80505228075,57.605555997105505],[-126.80480504868191,57.605447626370896],[-126.80448831589888,57.60531949686883],[-126.80420348175058,57.605214717478134],[-126.80398446357664,57.60515326344675],[-126.80377308942833,57.605106338002855],[-126.80354262780337,57.604850987570074],[-126.80335228765618,57.60461108956212],[-126.80327797684153,57.60451287683595],[-126.8033390834914,57.60443290123214],[-126.8034669409877,57.60429197580078],[-126.80352057015135,57.6042053184659],[-126.80354077400743,57.60412110670457],[-126.80355596480682,57.6040974694495],[-126.80360867413093,57.60401642361194],[-126.8036546762894,57.60391523720198],[-126.80367508615323,57.60379178269808],[-126.80371075251793,57.60354826861361],[-126.80379614467996,57.603231575146324],[-126.80393299736282,57.602824873934736],[-126.80405977928383,57.602436172929586],[-126.80416188602815,57.6021182566424],[-126.80394314850928,57.601970469981744],[-126.80363865104592,57.60172678273812],[-126.80336444921252,57.601480668350064],[-126.80318505669102,57.601312460098875],[-126.80307079029635,57.601204399772755],[-126.80291551440548,57.60108761905768],[-126.80266162933283,57.60091089327436],[-126.8022420157942,57.600666781080996],[-126.8014743460407,57.60024538988941],[-126.80109552615355,57.599999905709666],[-126.80057456660687,57.599663344859394],[-126.80000011062484,57.59922171504544],[-126.7999533119236,57.5991861205787],[-126.79960891918338,57.598984150105345],[-126.79941870189135,57.59894605962657],[-126.79922371718277,57.59893042130144],[-126.79876130225826,57.598888369898646],[-126.79827181640967,57.59880275442017],[-126.79772470134425,57.59881278526558],[-126.79705044525473,57.59879891479842],[-126.79659753091804,57.598760162088944],[-126.79647485889724,57.59874968970194],[-126.79621248349102,57.59871427187867],[-126.79602768282447,57.5986851133518],[-126.79585969253651,57.59870854873203],[-126.79546735740047,57.59881405937668],[-126.79527108187962,57.59873675817662],[-126.79508061540052,57.598636998174534],[-126.79494194837729,57.59856159225205],[-126.79482971519656,57.59849948134638],[-126.79472463425073,57.59842947909136],[-126.79459316755498,57.59834842363356],[-126.79447159697179,57.598289732121366],[-126.79427883266894,57.5982303472516],[-126.79403170262592,57.59812307813363],[-126.79388803401861,57.59805891299449],[-126.79372320376628,57.59798366303446],[-126.79350109596864,57.59787175796382],[-126.7933053446639,57.59776866373779],[-126.79317193125267,57.59769434569712],[-126.79304764592989,57.59760651862493],[-126.79288181139705,57.59748306308502],[-126.79272566131161,57.59737188220712],[-126.7926110613905,57.59729632960498],[-126.79249648535429,57.597221897944856],[-126.79248478776286,57.59706276102744],[-126.79235679778914,57.596847141499296],[-126.79205798274447,57.5966695447252],[-126.79186471674484,57.596535040719836],[-126.79182214575002,57.59645120763618],[-126.79174646833829,57.596335058818106],[-126.79167297765419,57.59622338157293],[-126.7916152374132,57.596113852297215],[-126.7915853653515,57.59598621726692],[-126.79158500092832,57.595868496060966],[-126.79159940188649,57.595756292290254],[-126.79160858624236,57.595645240954866],[-126.79161174182948,57.59559589035857],[-126.79161695312153,57.595444500551885],[-126.79162693460624,57.595321111551],[-126.79152074701274,57.5951468444536],[-126.79126913222348,57.59502390106569],[-126.791136106645,57.594967517701036],[-126.79079023490146,57.59484065304226],[-126.79097642978148,57.594786843439614],[-126.79129627449882,57.59471990037652],[-126.791429263052,57.59467425696284],[-126.79156539849987,57.59462859456401],[-126.79171179245422,57.59457390117018],[-126.79180975425872,57.59445446977141],[-126.79186623903703,57.59435322565658],[-126.7919607650057,57.59421923949902],[-126.79205122897953,57.594092004675],[-126.79211389649647,57.593986238726735],[-126.79217444772559,57.59387936427146],[-126.79224938861522,57.59376007061684],[-126.79234288054967,57.59362721161449],[-126.79252132097369,57.59345348085367],[-126.79254315112073,57.59329638574135],[-126.79244617817857,57.59316242665603],[-126.79238171730971,57.59308208882372],[-126.79231077658886,57.59289191494764],[-126.79227631425785,57.592794579620914],[-126.79217699351061,57.59264830160002],[-126.79214288964398,57.59256890286288],[-126.79215898208057,57.592437629293734],[-126.79222348971574,57.592219735253586],[-126.79219698479966,57.59200238693297],[-126.79221733937968,57.59182511985434],[-126.79236381588409,57.59172445730289],[-126.79256214937506,57.59165151281291],[-126.79275564789874,57.591548325422025],[-126.79256155474644,57.591473250218435],[-126.79208551417786,57.59132474686461],[-126.79153511289482,57.59117220265699],[-126.79105652012133,57.59100128757337],[-126.79059823206879,57.59095133564944],[-126.79006099882466,57.591028546418976],[-126.78960195400875,57.59099204960584],[-126.78934748274212,57.590881453164265],[-126.78919129536851,57.59081735834605],[-126.78883768149159,57.59071856480007],[-126.78850409492095,57.59062637782256],[-126.78821731679642,57.590572030527156],[-126.78801401039966,57.590556425712855],[-126.78785746414285,57.590524845397496],[-126.78759308183201,57.59038963906046],[-126.78730867634306,57.59024782452925],[-126.78706973139327,57.59012816197723],[-126.78691331838223,57.59005285421317],[-126.78668179216946,57.589988084048684],[-126.7862691512773,57.58991766443675],[-126.7859072446729,57.58987272863426],[-126.78560108151129,57.589790461867366],[-126.78524764238003,57.589649053511245],[-126.78494490141429,57.58952976639554],[-126.78477817286279,57.58946124447443],[-126.78467748240745,57.589399057160826],[-126.78454696066918,57.58931013891168],[-126.78432822303863,57.58920604793223],[-126.78405652478985,57.589069757075535],[-126.78386728994928,57.58897558078398],[-126.78374111821591,57.58889448414969],[-126.78363522738017,57.58878299561954],[-126.78355791495966,57.58868703385827],[-126.78341732654874,57.58856678163151],[-126.78317625564593,57.58839330899863],[-126.78300367153032,57.58829454819252],[-126.78286980606892,57.588246010204294],[-126.78268522535618,57.588174228065604],[-126.78253735982908,57.588106712876],[-126.78232695082686,57.58799920594349],[-126.78217515396048,57.58789359402801],[-126.78208041852545,57.58781455214053],[-126.78192359446791,57.587769512633685],[-126.78164971754317,57.587729650197204],[-126.78143024432549,57.58769058658562],[-126.78121550242487,57.58762682901055],[-126.78091649717294,57.58753554008129],[-126.78073215499896,57.587525417944846],[-126.78051973806114,57.58747285716648],[-126.78027411738488,57.58738237257219],[-126.7799650302774,57.58736065326378],[-126.7794845870423,57.5873489136855],[-126.77903047361549,57.58729553403381],[-126.77876352607015,57.58723656502122],[-126.77859748389324,57.58725099765336],[-126.7783897618794,57.5872230714261],[-126.77805244098012,57.587099488105665],[-126.77760021515026,57.58698442846812],[-126.77709757604316,57.586911146901684],[-126.77661587699698,57.58683774034478],[-126.77619549942575,57.58674491200615],[-126.77586644414295,57.58666724233882],[-126.77568468097493,57.58662906898362],[-126.7754316775184,57.5865868289003],[-126.77527014857172,57.58656647481708],[-126.77524429462704,57.58637602889712],[-126.77520726966686,57.58620246599228],[-126.77517206164354,57.58606701195765],[-126.7751127574051,57.58592945698892],[-126.77506377656537,57.58578511447616],[-126.77507408494324,57.58562360670396],[-126.77512456093493,57.58548316534923],[-126.77515999594112,57.58537420476765],[-126.7751278826694,57.58528694260672],[-126.77505363772207,57.58513490028557],[-126.77497317008678,57.584934684529756],[-126.77497046755941,57.58480240339911],[-126.7750396724597,57.5847078198949],[-126.77511972651357,57.58463223243475],[-126.77523197665585,57.58439164539706],[-126.77523157863072,57.584167415666776],[-126.7752122086413,57.58398702255729],[-126.77519792239589,57.58385144603781],[-126.77517484986895,57.583694619057965],[-126.77512527546229,57.58357270355239],[-126.77506270757453,57.58348001442656],[-126.77500641583772,57.583387288459654],[-126.77496672251246,57.58328773814836],[-126.77495192653414,57.583177951346016],[-126.77494540676112,57.583063631365924],[-126.77492431225814,57.582952760374646],[-126.77488659702676,57.58284759268442],[-126.77482621442046,57.582759375334156],[-126.77470450282097,57.58263900405384],[-126.77462179810608,57.58253297900616],[-126.77456137840545,57.5823920673435],[-126.77454221706614,57.582273336925304],[-126.77453286677569,57.582173608678666],[-126.77451954492436,57.58208511530696],[-126.77487303442183,57.58197877451225],[-126.77498908074094,57.58187270488841],[-126.77499690636904,57.58174372583276],[-126.77481889238642,57.58173467970337],[-126.77446513961954,57.58172554264798],[-126.77422752244979,57.58171796631978],[-126.77405049444609,57.58170554990543],[-126.77393970534155,57.58160753721286],[-126.77387153123374,57.58154739413299],[-126.77381203054604,57.58145132318245],[-126.77381270709867,57.5813302342487],[-126.7737788829717,57.581210468590136],[-126.77367189975588,57.58104292171437],[-126.77357752804902,57.58092911644196],[-126.77358229751704,57.580803518975635],[-126.77379393256992,57.5806666194466],[-126.77397689239314,57.58055903767516],[-126.77417206489447,57.580435687890066],[-126.77433217312047,57.58033608765995],[-126.77445428372945,57.580271465868705],[-126.77462715331221,57.58018300202573],[-126.77480339705535,57.58010572972666],[-126.77500984160798,57.580021553062366],[-126.77516148663864,57.57996909004551],[-126.77547127984877,57.579875336868966],[-126.77580854527055,57.57974442346933],[-126.77609778387823,57.579617154875656],[-126.77623873773183,57.579553541883485],[-126.77635574251774,57.579495675285976],[-126.77655680494011,57.57940480091165],[-126.77674485236041,57.579342031658335],[-126.77689764455137,57.57929516568225],[-126.77706284494086,57.57913835329747],[-126.77734058880908,57.57896181879165],[-126.77766620301746,57.57877266917266],[-126.77782030203798,57.57868767516626],[-126.77796991512817,57.57863858436554],[-126.77826810267372,57.578540408375225],[-126.77863375357657,57.5784171686208],[-126.77890192412012,57.578284412346854],[-126.7789854036943,57.57817292570796],[-126.7789826399382,57.57808885540494],[-126.77905915801766,57.57799534826544],[-126.77944376299368,57.57792917336668],[-126.78017154046277,57.5779192707921],[-126.7805908146791,57.577912308955014],[-126.78070479461239,57.57791051413693],[-126.78077694798282,57.577910087633136],[-126.78104647010068,57.57789391910681],[-126.7812783885922,57.57788021477554],[-126.78135009543074,57.57780691553585],[-126.78144995347256,57.57767851312741],[-126.78182377997733,57.577445343010716],[-126.78246859960122,57.57711526858486],[-126.78280192405191,57.57694736262949],[-126.78295065474317,57.57690724064916],[-126.78336066082541,57.5768061479477],[-126.78335004938572,57.5766974589404],[-126.78336493878766,57.57650677446503],[-126.78347186466257,57.576214640269775],[-126.78353332710809,57.576101039157315],[-126.78386589681219,57.57589725816288],[-126.78625996786052,57.57443449794297],[-126.79334181451459,57.57240098037057],[-126.80636841678023,57.570043900864114],[-126.81762182924628,57.56947242753179],[-126.82080484418918,57.56917463503016],[-126.82439699761647,57.5681207970846],[-126.82734408895477,57.56650584396916],[-126.82983320559656,57.5634676025849],[-126.8336142880468,57.561102825996336],[-126.8421916425966,57.5596940419288],[-126.85077735687578,57.55873310361509],[-126.85681832976317,57.558012375686936],[-126.86498017132989,57.557107075978074],[-126.87515159889115,57.555963732383205],[-126.88311541084217,57.55574924911296],[-126.89232177936435,57.554099785622434],[-126.90054249343568,57.55107514771666],[-126.90337542864232,57.54928885655163],[-126.90532754471354,57.54625286625853],[-126.9128011147506,57.54312496121678],[-126.91798924229049,57.542461130834454],[-126.92549809307573,57.54098258382283],[-126.93088366916814,57.53969798699769],[-126.9357591613292,57.53926885801605],[-126.94667279942993,57.53828512193315],[-126.95539764760376,57.539199876980156],[-126.96542563647941,57.54125259179268],[-126.97268056460304,57.54291243955368],[-126.97800743202565,57.54361751695681],[-126.99147011307203,57.54267394162047],[-127.00182704853863,57.54060453480857],[-127.00970456374209,57.53701059105032],[-127.01265170953396,57.53139118780228],[-127.01552601529545,57.52737778808587],[-127.02169311181473,57.52344649975712],[-127.0283757945937,57.519008634172025],[-127.03081938471725,57.51476508593862],[-127.03071838580301,57.51054142046647],[-127.0354622480274,57.50936517443633],[-127.04234052322143,57.508629323844495],[-127.05032553859948,57.50983060072434],[-127.05958082654729,57.51073418430188],[-127.06694870770525,57.51279149501147],[-127.06982671245207,57.51739628894098],[-127.07155583658565,57.52275483347207],[-127.0745118692942,57.53055202445347],[-127.0771145889834,57.53270138317298],[-127.07788110254118,57.53360999848867],[-127.08373974903405,57.534360277317866],[-127.09041751431147,57.533973385732374],[-127.09762445770087,57.533572784096],[-127.10462339821142,57.53335291793936],[-127.11066544304457,57.532961350660834],[-127.12667737270188,57.53238607143942],[-127.13845467236796,57.53206072493108],[-127.1434812213006,57.53356000468341],[-127.14556546735196,57.53594575375775],[-127.14497525559315,57.53771787536399],[-127.14206755541638,57.54002134063379],[-127.13889133643818,57.54421964129771],[-127.13847060999296,57.548277529209976],[-127.14010010990627,57.54963581452819],[-127.14356211379764,57.552000757602784],[-127.14366825342624,57.555767098683276],[-127.14313454203077,57.5596017828053],[-127.14135564921276,57.564523616898136],[-127.13886494549097,57.57048311174493],[-127.14450062033478,57.574497715379735],[-127.14696473254982,57.57522083481158],[-127.15101885523241,57.579634621024645],[-127.1553657826858,57.58308596518248],[-127.15900833713809,57.58790680136121],[-127.1605803306986,57.59086206798423],[-127.16460493629317,57.594208352709806],[-127.16823412671393,57.5984550356495],[-127.17344184160922,57.60206869752562],[-127.17644834708496,57.603127353992676],[-127.18307783973911,57.60438678658981],[-127.18860349941998,57.604112952952825],[-127.19422113811814,57.59978354194542],[-127.19797729182146,57.597291724033724],[-127.20334746531591,57.59548478124855],[-127.20924057517949,57.593322998578216],[-127.21593096093832,57.592974552742476],[-127.22072205031414,57.593280209572804],[-127.22725368491116,57.59116553524993],[-127.23101914923461,57.589085309913195],[-127.23545108664239,57.588012371606446],[-127.23971070554921,57.58820569131386],[-127.24777322257529,57.587681277283096],[-127.25406544333285,57.58482300315107],[-127.25788853737288,57.58119859271968],[-127.26230670416086,57.57966739957952],[-127.26624911188222,57.58003331856003],[-127.26954826246188,57.58011826028694],[-127.2771991635435,57.58004449821779],[-127.28065882920401,57.57853091977954],[-127.28573920010098,57.57780879705128],[-127.2870607148257,57.57932982615537],[-127.2893002725742,57.57954120812669],[-127.29800288153275,57.57911510087698],[-127.30340059171144,57.57838020662638],[-127.31113957762554,57.577747450994565],[-127.31648242253952,57.578609266569785],[-127.32032337603644,57.57908222968634],[-127.323235337901,57.57706168941749],[-127.32177898227852,57.57146988137731],[-127.32168426898049,57.56851066614314],[-127.32921219323899,57.56478423457523],[-127.33064773032255,57.56322690588386],[-127.32665717039708,57.558073362438094],[-127.32209110893206,57.55485406252958],[-127.32035430509185,57.55373224968631],[-127.31952989314087,57.547909973630546],[-127.32175914567921,57.54126781521603],[-127.32473058133806,57.53136212637584],[-127.32688108986014,57.52568949469381],[-127.32668913648418,57.519744432824034],[-127.32525659674558,57.51817118377924],[-127.32335712710581,57.515212296363295],[-127.32333405109125,57.51122099375495],[-127.32342388492033,57.50744384449677],[-127.31848625997226,57.50560968657789],[-127.31381979387183,57.505656275728455],[-127.30658784753167,57.501718729137195],[-127.30184543602711,57.49599821429798],[-127.30051800469526,57.49429813673572],[-127.29942847846857,57.493447808737756],[-127.29851077259951,57.49117859688963],[-127.30469919859966,57.489063454750195],[-127.3134834128346,57.48858152950506],[-127.3206045645928,57.485774648197136],[-127.32252538881083,57.479584368297274],[-127.31709896535719,57.47570114480017],[-127.31166262630224,57.47146801468316],[-127.30424354990421,57.464796743078864],[-127.30182424310057,57.45864981246057],[-127.30265809448603,57.45151102290218],[-127.30423885486641,57.444580129703624],[-127.30594209855715,57.441540637666826],[-127.31099878513788,57.43743631630496],[-127.32491399026097,57.435539005019486],[-127.33331131167024,57.43653945947875],[-127.34154265099268,57.43577414589991],[-127.35482437789993,57.43080367949389],[-127.36304168596244,57.42963353891296],[-127.37068236389408,57.42698897353644],[-127.37201421014947,57.42566559064852],[-127.37553018356707,57.42008593296626],[-127.37810598068816,57.414919661450796],[-127.38878397828788,57.40847515094049],[-127.38982812150158,57.408006696154374],[-127.39524257294026,57.405563581125904],[-127.40678336769125,57.402642257721716],[-127.41528844232333,57.40090066794012],[-127.4252276582951,57.39777071008003],[-127.43362876801868,57.395751005092535],[-127.43466796058573,57.395506471212876],[-127.44410172791332,57.396093799621106],[-127.4544213449213,57.394840948651535],[-127.46476515292852,57.39130884512785],[-127.46977420894265,57.38663381893392],[-127.46681441090709,57.38072037207297],[-127.46088574674089,57.37472334474147],[-127.45895157123165,57.37377618342823],[-127.45414292351799,57.36942572498322],[-127.45503889442125,57.36490442429749],[-127.45680116303654,57.36095650473165],[-127.45710622209509,57.357751225598086],[-127.46081689965219,57.352283836168795],[-127.47032426889281,57.346410751378855],[-127.48355012292598,57.33838733073836],[-127.48945481112614,57.335297973523225],[-127.49142463450585,57.33378230006058],[-127.49279492736989,57.33272746266905],[-127.4912263200801,57.32862638535919],[-127.49161045576093,57.328882113836734],[-127.4918552080376,57.32900153112799],[-127.4921142262029,57.3291140592187],[-127.49231526665216,57.32925863680309],[-127.49254976650536,57.32938153275893],[-127.49287964259749,57.32939235488741],[-127.49320548539947,57.32935277275317],[-127.49351363721149,57.329286484827456],[-127.49380975510935,57.32920463780211],[-127.49410154094797,57.32911835503529],[-127.49438899465505,57.329027636556724],[-127.49467329492794,57.32893583225925],[-127.4949596548773,57.328844003874316],[-127.49524931381099,57.32875662165277],[-127.49554426166489,57.3286714207027],[-127.49584113750886,57.328582833815894],[-127.4960086738831,57.32853495911323],[-127.49614126850231,57.32849757242624],[-127.49644828995469,57.32842904821416],[-127.49676264157648,57.32838846708215],[-127.49708830353484,57.32837129919062],[-127.49742271528434,57.328365241614904],[-127.49776069132993,57.3283703534741],[-127.49809904660734,57.32838555000681],[-127.49843252425204,57.32840864904345],[-127.4987590908148,57.32844079494459],[-127.49906471441555,57.3284956012195],[-127.49933232505248,57.32861474365582],[-127.4996015914556,57.328722655679584],[-127.4999116904058,57.32873256498113],[-127.50024528583437,57.32867942346148],[-127.50051199436709,57.32845776011207],[-127.50072372527653,57.32831856507505],[-127.50093127195672,57.328178296453245],[-127.50113357069633,57.328036966434915],[-127.5013241683705,57.32788904338397],[-127.50149901458171,57.32773681589286],[-127.50167490650519,57.32758457620537],[-127.50186337815703,57.327435555607096],[-127.50205186495833,57.32728653456596],[-127.50224033366788,57.327137513462425],[-127.50243621297184,57.32699177053613],[-127.50264477661503,57.32685148755792],[-127.50287144727648,57.32672220784669],[-127.50311723880682,57.32660391969213],[-127.50337573125381,57.326491091049256],[-127.50364269219023,57.3263826492419],[-127.50391391155308,57.3262764002735],[-127.50418515693615,57.32617127153512],[-127.50445320455911,57.32606393669586],[-127.50471381106942,57.32595220223938],[-127.50496379109782,57.3258349836464],[-127.50519364415288,57.32570790556758],[-127.50539586984404,57.32556544867345],[-127.50571889676134,57.325429453053424],[-127.5060514247293,57.32532361719464],[-127.50643640320177,57.325151033643],[-127.50686979307395,57.3250204946993],[-127.50720126725925,57.32491466798588],[-127.50743146327552,57.324849242317235],[-127.50875141293213,57.32414347661353],[-127.50901657481822,57.3240428920798],[-127.50924671366818,57.323923651197696],[-127.50941695667603,57.32376137615461],[-127.5095146069013,57.3235763930043],[-127.50945635381512,57.323443652682606],[-127.50938022574375,57.32325282097913],[-127.50915098360085,57.32310523093805],[-127.50899606783136,57.32294557482357],[-127.50888850564989,57.32277416307158],[-127.50880676973988,57.322599091007966],[-127.50875302563516,57.322422575968055],[-127.50876970535573,57.32223964569275],[-127.5087978459661,57.32205770474641],[-127.50872377266859,57.32189263449267],[-127.50851028953113,57.32174934678835],[-127.50832251649464,57.32159903665724],[-127.50816043674105,57.32144170440316],[-127.50800341035952,57.32128095062371],[-127.50784133327058,57.32112361801602],[-127.50766701537592,57.32097203136711],[-127.5074702033578,57.32082967171002],[-127.50721823692167,57.32071148833657],[-127.50693253709878,57.32060714506319],[-127.50666430989712,57.320498116182854],[-127.50646261222893,57.32036365889041],[-127.50631305271317,57.32020730199708],[-127.50618495950557,57.3200417298053],[-127.50607735730468,57.31986919575884],[-127.50598418023097,57.31969313280945],[-127.50590237584407,57.31951581820534],[-127.50582896916076,57.31934064938486],[-127.50577316627292,57.31916415743005],[-127.50573810755056,57.31898630632025],[-127.50571437659157,57.318806083046546],[-127.50569480006118,57.31862581211948],[-127.50567209976845,57.31844557706709],[-127.50563699799321,57.31826660545046],[-127.50559046433658,57.31808776504426],[-127.50553868596909,57.317907863747806],[-127.50548904593758,57.31772905901491],[-127.50544977497441,57.31755013531136],[-127.50542925847974,57.31737211751413],[-127.50543474085188,57.317194922500555],[-127.50548189600454,57.3170206125799],[-127.50556963238736,57.31684807913728],[-127.50567922892878,57.31667641585583],[-127.50579085728639,57.31650360808605],[-127.50588794579211,57.31633096713092],[-127.5059485180292,57.316154260941595],[-127.50597251367913,57.315972369179896],[-127.50598918728434,57.315789440403414],[-127.50602682349046,57.31561075535665],[-127.50611468675481,57.3154415834876],[-127.50626855509238,57.315286227877124],[-127.50646739351612,57.315138203307434],[-127.50668300585555,57.31499447013958],[-127.50688816027417,57.31484861456663],[-127.507053570313,57.31469648873288],[-127.50714888120172,57.31453171501102],[-127.50715951144568,57.31435334000573],[-127.50712936919184,57.3141687069287],[-127.50710237841672,57.31398515875679],[-127.50708804243251,57.313805949573016],[-127.50706741525964,57.31362569160415],[-127.50704269547523,57.313446601763424],[-127.5070179150903,57.31326639155671],[-127.50699734937118,57.313087254042344],[-127.5069829976024,57.31290804516783],[-127.50698007657013,57.31272870500437],[-127.50698966040797,57.31255034229672],[-127.50700958374688,57.31237073974522],[-127.5070367396188,57.312189933038646],[-127.50707115552251,57.31200904294077],[-127.50711499652455,57.311830286739735],[-127.507170267395,57.31165139921999],[-127.50723605397624,57.311475754123066],[-127.50731438861887,57.311302206992416],[-127.50742215007772,57.31113729034358],[-127.50760213956467,57.31098611760376],[-127.50773669194798,57.3108948843568],[-127.50781461748835,57.310842418763706],[-127.50801874288985,57.310697694518076],[-127.50826163069013,57.310561492929935],[-127.5084920291857,57.3104243134323],[-127.50862726635374,57.31027141176915],[-127.50864852065047,57.31009964147569],[-127.5086144426066,57.309920660014406],[-127.50855211755878,57.309736398021975],[-127.50853684090738,57.30969173037572],[-127.50848874650217,57.309552148063645],[-127.5084493813845,57.30937098528981],[-127.50846013688621,57.30919597264331],[-127.50855230480968,57.3090312345499],[-127.50871652026566,57.30887575745776],[-127.50891938042483,57.30872544101945],[-127.50912543406041,57.30857732969008],[-127.50931482945336,57.3084282886408],[-127.50943393583835,57.30834059467422],[-127.5095116600841,57.30828364608072],[-127.50971801907825,57.30814337788222],[-127.50993598292406,57.30800746009458],[-127.51015821454762,57.30787485605147],[-127.51038568851376,57.30774331234331],[-127.51061740254795,57.307613961567746],[-127.51085128015355,57.307486827620664],[-127.51108939783623,57.307361886567094],[-127.51133920893075,57.30724353682894],[-127.51160074119117,57.30713289910031],[-127.51185901587166,57.30701893514569],[-127.51211505172179,57.30690051215759],[-127.51224787491674,57.30673978714093],[-127.51234174209402,57.306566058206705],[-127.51240633312729,57.306387061401686],[-127.51244500433147,57.306209484562345],[-127.51246597298758,57.30603099079314],[-127.51247648730215,57.30585037543947],[-127.51248702927563,57.30567088087237],[-127.51250692318344,57.30549127848122],[-127.51254762501681,57.305312557225115],[-127.51260395188068,57.30513477685538],[-127.51265092631819,57.30495710434666],[-127.51266671076742,57.304778670497974],[-127.51266271720384,57.30459934370462],[-127.51264934414476,57.30441900403684],[-127.51263809190004,57.30423976101472],[-127.51263614707167,57.304059289591365],[-127.51264045891197,57.30387986711178],[-127.51263954392883,57.30369938386278],[-127.51262783893321,57.30353472019889],[-127.51262621566525,57.30352016489055],[-127.51257872616426,57.303343582100496],[-127.51248658925753,57.30316751423642],[-127.51241733629413,57.302992303520114],[-127.51242385837296,57.30281621895831],[-127.51246980098776,57.30263855872148],[-127.51253653312537,57.30246177979728],[-127.51260846347444,57.302284940901515],[-127.51267309039166,57.30210706514688],[-127.51270534996719,57.301925078420126],[-127.51274388214823,57.30174414043128],[-127.51285994227493,57.30158024535356],[-127.51302627310208,57.301426980978064],[-127.51320099598283,57.30127586171677],[-127.51338302007879,57.30112577904556],[-127.51357133216342,57.30097674462723],[-127.51376491360156,57.300829891269125],[-127.51396371995858,57.3006840983825],[-127.51416573609906,57.300540510287234],[-127.51437087318456,57.300396885839575],[-127.51457717174597,57.30025661088638],[-127.51478661905449,57.300117420312226],[-127.51497511855261,57.29999977186624],[-127.515004519087,57.299981494979455],[-127.51522876251643,57.29984885921691],[-127.51545829176344,57.299718404135874],[-127.51568993996065,57.29958904523419],[-127.51592158658943,57.299459685936775],[-127.51615215746088,57.29932921758651],[-127.51637748387856,57.29919768839429],[-127.51659752139554,57.29906397782535],[-127.51680804561185,57.29892589261736],[-127.51700905655831,57.29878343281751],[-127.51720685468932,57.298638767728164],[-127.51740253081665,57.29849300581832],[-127.51759499413677,57.29834503864596],[-127.51778218527735,57.29819489006216],[-127.51796517847374,57.29804366873158],[-127.51814082358686,57.29789029006679],[-127.51830910406771,57.297734754290396],[-127.51846899030647,57.297577073355214],[-127.51861845097844,57.29741839189453],[-127.51875842677711,57.29725645689888],[-127.51889417705459,57.29709232855576],[-127.51902977590508,57.2969248386077],[-127.51916005844303,57.29675404689417],[-127.51928511382252,57.296582194550325],[-127.5193996829162,57.296408221456865],[-127.51950384362655,57.29623324781596],[-127.51959345570738,57.29605844271061],[-127.51966538591505,57.295882721411274],[-127.51971867740096,57.29570833718933],[-127.51974917874901,57.29553533818653],[-127.5197496331733,57.295363808530986],[-127.51970129752381,57.29519284438875],[-127.51961044445122,57.29502349409102],[-127.51949050300536,57.294853359784575],[-127.51935393968179,57.29468341801247],[-127.51921219641774,57.29451353615295],[-127.5190776833769,57.29434244933861],[-127.51896386803693,57.29417000157453],[-127.51888219169346,57.2939960603744],[-127.51883571469125,57.293819469270744],[-127.51880689017962,57.293642673700475],[-127.51879249033503,57.29346346891762],[-127.5187894708308,57.29328301126243],[-127.51879372463205,57.29310246938148],[-127.51880211318178,57.29292187962952],[-127.51881051825771,57.29274128971089],[-127.5188137668839,57.29237914597485],[-127.51901487454153,57.29221426081516],[-127.51915268145713,57.29205010881802],[-127.51929471097102,57.291888149894746],[-127.51945141898085,57.2917293839266],[-127.51962395193434,57.29157716078285],[-127.51980275492632,57.29142598580367],[-127.5199867372186,57.29127475053676],[-127.52017397348894,57.291126840495856],[-127.52036747966525,57.2909799785506],[-127.52056631538048,57.29083641771994],[-127.52077041942657,57.29069503761767],[-127.5209819119482,57.29055693469253],[-127.52120288508394,57.29042208463223],[-127.52143338340383,57.29029160794075],[-127.52167131473949,57.29016552884902],[-127.52191667909949,57.290043847315275],[-127.5221674622045,57.28992770775373],[-127.5224330849653,57.28981924287302],[-127.52272758241632,57.289731742412194],[-127.52303870843572,57.28967095379317],[-127.52336001370077,57.289631346487184],[-127.523688097594,57.289605112451824],[-127.52402053890204,57.28958443229048],[-127.52435195039672,57.28956376325641],[-127.52468115189822,57.28953975586994],[-127.52501039770404,57.28951686820831],[-127.5253397325706,57.28949622082138],[-127.52566902234412,57.2894744520573],[-127.52599831174255,57.28945268246666],[-127.52632760076588,57.28943091204924],[-127.52665914397984,57.28941359883685],[-127.5269917777215,57.28939739315252],[-127.52732430500595,57.289378945718326],[-127.5276535926386,57.28935717197241],[-127.52797950612485,57.28932871029044],[-127.52829972913283,57.28928798233964],[-127.52860646758097,57.28922162617423],[-127.52890202056503,57.28913522043387],[-127.52919752737262,57.28904769348443],[-127.52950209715935,57.28897911834792],[-127.52982356934244,57.28894397742027],[-127.53015943716701,57.28893108912033],[-127.53049985961283,57.28892823643573],[-127.53083704243696,57.288922057478445],[-127.53116324752106,57.28890143192424],[-127.5314717424352,57.28885298562806],[-127.53176119444588,57.288770007847184],[-127.53203408265476,57.28866255938898],[-127.53228975329893,57.28853961658],[-127.53252862239667,57.28841238538559],[-127.53270740448126,57.28826231374113],[-127.53283755142584,57.28809038907816],[-127.53305476715266,57.28796677331242],[-127.53335594682012,57.28789150231211],[-127.53367295239707,57.28782277190076],[-127.53396969242523,57.28774082497609],[-127.5342717179608,57.28766105765655],[-127.53457690862903,57.287582373653606],[-127.53487996104005,57.287502592893006],[-127.53517666758422,57.28741952251779],[-127.5354637551818,57.287329837690194],[-127.53573599857961,57.28723247861392],[-127.53598911187314,57.28712413238193],[-127.53620184588564,57.28699271631772],[-127.53637739547646,57.286840435327235],[-127.53653274059381,57.28667605912663],[-127.53668388864313,57.28651061087458],[-127.53684780278361,57.28635286029697],[-127.53702534865283,57.286198312904204],[-127.53719660547694,57.28604271794852],[-127.53734482379622,57.2858817875974],[-127.53745229385929,57.28571460856891],[-127.5375386044098,57.285537588000786],[-127.53760081479138,57.28535524472039],[-127.5376214908112,57.28517226755381],[-127.53758540440353,57.28499780371667],[-127.53749661665648,57.284829563393245],[-127.53738401784405,57.2846627233732],[-127.53725283310554,57.284498343392926],[-127.53710504774195,57.284334157977334],[-127.53694594841473,57.284172347227745],[-127.53678069834042,57.284012850571365],[-127.53661348115607,57.28385561894224],[-127.53644535459291,57.283701761003584],[-127.53625570196695,57.283554881584145],[-127.5360486453293,57.2834138112175],[-127.53583447053593,57.28327618716617],[-127.53562429592924,57.283135152728754],[-127.53543462085455,57.28298715145213],[-127.5352651419112,57.2828254605688],[-127.53508863477434,57.28266945715397],[-127.53487572186309,57.2825374222691],[-127.53461034210737,57.28244299658157],[-127.53431357240673,57.28236799596503],[-127.53399762169651,57.28230667198161],[-127.5336746256385,57.28225103502296],[-127.5333545716636,57.282190878596246],[-127.53304660975031,57.28212161144102],[-127.53273960493107,57.28205009025371],[-127.53243055449218,57.28197971334719],[-127.53212449137504,57.28190593761152],[-127.53182655015131,57.28182758199744],[-127.5315417023825,57.28173898314092],[-127.53127399197466,57.28163785175684],[-127.53103434650674,57.28151172859025],[-127.53082613973639,57.28136730079661],[-127.53064979206793,57.28121465321053],[-127.5304909125223,57.28105731719455],[-127.53033819793139,57.28089878797735],[-127.53019059075943,57.28073795686147],[-127.53004709001381,57.28057595661405],[-127.5299056206446,57.28041281146937],[-127.52976727328605,57.28024962976941],[-127.52962991146302,57.280085315392704],[-127.52949358001308,57.279920988883624],[-127.52935519135934,57.27975668627193],[-127.52921580294142,57.27959351627748],[-127.52905444105495,57.279426118263146],[-127.52887319759036,57.279254467751954],[-127.52868465695153,57.27908178107958],[-127.52850129704166,57.27890903376189],[-127.52833570172498,57.278739442269476],[-127.52820142735025,57.278573969663526],[-127.52811111366874,57.27841807397465],[-127.52802774319534,57.278305818718756],[-127.52801012821462,57.27822867081179],[-127.52835051273172,57.27804533209734],[-127.52867429613659,57.2779664448679],[-127.529045084936,57.277894855882295],[-127.52940089992312,57.27781222994952],[-127.5296863168578,57.27770800346281],[-127.52993911514737,57.27759294649948],[-127.53018658192086,57.27747458810272],[-127.53043085346941,57.27735402441958],[-127.53067291403103,57.277230122911405],[-127.53091186907685,57.27710625722549],[-127.5311496870967,57.276980162258084],[-127.53138750354785,57.27685406687179],[-127.53162531843033,57.276727971066634],[-127.53186317664772,57.27660299537951],[-127.53210310810604,57.27647799501832],[-127.5323462317148,57.27635519901233],[-127.5325914900669,57.27623349864705],[-127.53284210522457,57.27611621940988],[-127.53310746692681,57.27600437248981],[-127.53338445471282,57.27589799430549],[-127.53366574193745,57.275794928398106],[-127.5339469660839,57.27569074155454],[-127.5342208454418,57.27558439795802],[-127.53448106584786,57.27547372946303],[-127.5347212515761,57.27535544763072],[-127.53493608917566,57.27522625162176],[-127.5351172348483,57.275085118240064],[-127.53525935871994,57.27492874688588],[-127.5353709115117,57.27476040187368],[-127.53545928166167,57.27458335990732],[-127.5355319191476,57.27440201799343],[-127.53559827032318,57.27421962865684],[-127.53566575651914,57.27403946812695],[-127.53573549678624,57.27386376540811],[-127.53578647460212,57.27368604043004],[-127.53581869022037,57.27350629321547],[-127.53583742878756,57.27332670396231],[-127.53584577751775,57.2731472364973],[-127.53583754594163,57.27296796337486],[-127.53581370167898,57.272787752194816],[-127.53578160432052,57.2726087588205],[-127.53573605924576,57.272431044123365],[-127.53566775599207,57.27225471719778],[-127.53560670601257,57.27207830527281],[-127.53560018826524,57.27181269069066],[-127.53566549744212,57.27173345124701],[-127.53594096803327,57.27161587476651],[-127.53609092351104,57.27144820036835],[-127.5363221955523,57.27131544635055],[-127.53654710736674,57.27117940332254],[-127.53674888281967,57.27103578382457],[-127.53691188158969,57.27088252929076],[-127.53704023638471,57.270719591398475],[-127.53715808257357,57.270553413486496],[-127.53726542026334,57.27038399558447],[-127.5373654430622,57.270213542368516],[-127.53746019703871,57.27004090879246],[-127.5375496822481,57.2698660948687],[-127.53763812112949,57.26969129317636],[-127.53772551369738,57.269516503717846],[-127.53781504153618,57.26934281021362],[-127.5379087007579,57.26916906817378],[-127.53800764354108,57.26899750617917],[-127.53811389913092,57.26882697933919],[-127.53822957029188,57.268658584006666],[-127.53836832888668,57.268496643868595],[-127.53853842700423,57.26833994089595],[-127.53872637280898,57.26818863339995],[-127.5389184823884,57.26803727673246],[-127.53909912825509,57.26788493338256],[-127.53925470044038,57.26772840011317],[-127.53937054370682,57.26756448602491],[-127.53944561305187,57.267393203509165],[-127.5394966552323,57.26721771904899],[-127.53952681880057,57.26703911673954],[-127.53954444623601,57.26685841963227],[-127.53955265739957,57.26667559107699],[-127.5395598681802,57.266493895356696],[-127.53956915313198,57.26631217528921],[-127.53958780885034,57.266131466190835],[-127.53960652610415,57.26595187744541],[-127.53962004935947,57.26577234975435],[-127.53963045289011,57.26559285874557],[-127.5396418565969,57.26541223495267],[-127.53965642488279,57.26523269504977],[-127.53967719895245,57.26505308224223],[-127.53970633118608,57.26487449228594],[-127.53974793658645,57.26469687681372],[-127.53979578062028,57.264519188029105],[-127.53984973976783,57.26433918526868],[-127.53991201149108,57.264159084803936],[-127.53998789144552,57.26398218753594],[-127.54008157279785,57.26380956520062],[-127.54019523629067,57.263643434225536],[-127.54033510397875,57.263483721401485],[-127.54050120415279,57.26333154735937],[-127.54069132708882,57.26318357482151],[-127.54089828339711,57.2630410092893],[-127.54111992057983,57.262902754947305],[-127.54134900427894,57.26276889683028],[-127.54158143158888,57.26264060422848],[-127.54182231759134,57.26251669587301],[-127.54207593389512,57.26239936354252],[-127.54233900901492,57.262285282517055],[-127.54260844020926,57.26217448927243],[-127.54287898896878,57.26206592440921],[-127.5431484170536,57.261955130073396],[-127.5434126216615,57.26184327565983],[-127.54366837648158,57.261728157110596],[-127.54391043097976,57.261607594247664],[-127.54413666596204,57.26148049107428],[-127.54434287169234,57.2613457762474],[-127.5445279743187,57.26120234147299],[-127.54469512184399,57.26105127077924],[-127.54484961465539,57.2608947438404],[-127.54499043625772,57.2607338937444],[-127.54512168935179,57.26056755109753],[-127.54524457168033,57.26039906495988],[-127.54536112405685,57.260228411282846],[-127.54547349890814,57.2600566857442],[-127.54558478222516,57.25988385194679],[-127.54569501930213,57.259711030411054],[-127.54580841977301,57.259539292518],[-127.54592507419552,57.25937087929256],[-127.54604797784863,57.25920351327244],[-127.54617395418062,57.259034989828834],[-127.54629361729664,57.25886429869148],[-127.54640188161808,57.25869374201507],[-127.54649034483484,57.25852117692094],[-127.54655180249728,57.25834780955937],[-127.54657677866223,57.25817038869649],[-127.54656745482852,57.2579911307064],[-127.54653420035054,57.25780991316838],[-127.54648438479231,57.25763001221668],[-127.54642948422658,57.25745241340669],[-127.54634776139795,57.25727849438528],[-127.54611729253021,57.25694041577685],[-127.5456659392701,57.25673274302964],[-127.54542446450516,57.256610034663595],[-127.54515978576924,57.25650329427545],[-127.54488296655848,57.25640454390028],[-127.54460210848475,57.25630808268606],[-127.54432629202073,57.25620819831132],[-127.54404731294068,57.25610722961223],[-127.54376126666652,57.25601082782445],[-127.54347622174595,57.2559132925898],[-127.5432003206458,57.25581116484645],[-127.54294375088902,57.25569984046489],[-127.54271365958024,57.25557587224603],[-127.54251407042669,57.25543697085628],[-127.5423369026902,57.25528771577297],[-127.54217703765086,57.25513040944759],[-127.54202731616272,57.25496737831773],[-127.54188169800763,57.25480317770498],[-127.54173503600555,57.254638989252705],[-127.5415813066183,57.25447936803153],[-127.54143065203289,57.25431858943541],[-127.5412851292151,57.2541566292707],[-127.54113965277834,57.25399578947858],[-127.54098695694704,57.25383615553937],[-127.54082201821264,57.25368114965649],[-127.54064678676573,57.25352850675556],[-127.54046747135855,57.253377032730484],[-127.54028301037599,57.25322674004881],[-127.540092465629,57.25307988180764],[-127.53989677537699,57.25293420486151],[-127.53969298959818,57.25279310699583],[-127.53948202997927,57.25265433525197],[-127.53926398674413,57.2525201306206],[-127.5390408147059,57.25238710696655],[-127.53881354234248,57.252255252180646],[-127.53858533324767,57.25212565012093],[-127.53835603560822,57.251994939438134],[-127.53812979636947,57.251863071427096],[-127.53790663210802,57.251730045909376],[-127.5376906446529,57.251594693702614],[-127.53748072732975,57.2514559067921],[-127.53727695833634,57.25131480533148],[-127.53707620263013,57.25117142614189],[-127.53687850523357,57.25102688975056],[-127.5366838827172,57.25088119597694],[-127.53649238007237,57.25073546534794],[-127.53630181728137,57.25058748136755],[-127.53611228436172,57.25043948506544],[-127.53592379788861,57.250291476251604],[-127.53573640283615,57.25014457544275],[-127.53554994764737,57.24999542130108],[-127.53536556726208,57.24984624260548],[-127.53518524505924,57.24969477403748],[-127.53500902598705,57.24954213612669],[-127.53483793838181,57.249388316838385],[-127.53467199878405,57.24923331599877],[-127.53450706052956,57.24907718221261],[-127.53434310703437,57.248919915678435],[-127.53418428488405,57.24876146782608],[-127.53403471224749,57.24860066939883],[-127.53389749065386,57.24843748410252],[-127.53377776650068,57.24827073066659],[-127.53367759626268,57.24810038505531],[-127.5335928332135,57.24792649587075],[-127.53352043710804,57.24775021977912],[-127.53345736290137,57.247573834528396],[-127.53339941911445,57.247396268171094],[-127.53336311810818,57.24721508530652],[-127.53339380046486,57.24702302885615],[-127.53333550318318,57.24686228223941],[-127.53309237141004,57.24674741993826],[-127.53276472237897,57.24667166165448],[-127.5324447022058,57.24663056540051],[-127.53211610802798,57.2466086262847],[-127.53178263705851,57.246594590638175],[-127.53145007664507,57.246577180392286],[-127.5311251813764,57.246543985197945],[-127.53080980061833,57.246489378326146],[-127.53050128168542,57.2464246012024],[-127.5302348968017,57.24635036276598],[-127.5298745038111,57.24625928550782],[-127.52964596131696,57.24622384001924],[-127.52922448523243,57.246238851674526],[-127.52890666339708,57.24620108430798],[-127.5285994172623,57.246116109316596],[-127.52833871918219,57.24600256455533],[-127.52823168950111,57.24584126375402],[-127.52820676358827,57.2456588262048],[-127.5283047950993,57.24549064823577],[-127.5284569338301,57.245327443862266],[-127.52864304827825,57.245209805071035],[-127.52888744540915,57.24504552322641],[-127.52906013338347,57.24490337786807],[-127.52906099152004,57.24471727641025],[-127.52892282160386,57.24455521891369],[-127.52871798654925,57.244411876081024],[-127.52847528571107,57.244281306292784],[-127.52820757692226,57.24417344857248],[-127.52791602239633,57.24409165229236],[-127.52759919079774,57.24402584469618],[-127.52727062118342,57.24397810975279],[-127.5269438574593,57.243949410470535],[-127.52662389472961,57.243960988215335],[-127.52631295061063,57.24404308501918],[-127.52606243611623,57.24415810779479],[-127.52586729428441,57.244309478914694],[-127.52563579173231,57.24443324758159],[-127.52533435744898,57.24451971535493],[-127.52501225420725,57.24455597672418],[-127.52468508418161,57.24454297092172],[-127.52435475321839,57.24450309635829],[-127.5240372812446,57.24444737688692],[-127.52373568064142,57.24437353549435],[-127.52344188261843,57.24428727131877],[-127.52314714690739,57.24420325947235],[-127.5228426550892,57.24413505485891],[-127.52251468936953,57.24407609071673],[-127.52217698359463,57.24403293340307],[-127.52185864604417,57.244033270294715],[-127.52158253184702,57.244104861696954],[-127.52133452135573,57.24423105646558],[-127.52094030188601,57.24438361163442],[-127.52080543581542,57.24446028694859],[-127.5204992207952,57.244531104572445],[-127.52018299965091,57.244585222185826],[-127.51985917401718,57.24463045905096],[-127.51953423036012,57.24467346602257],[-127.51921684493793,57.24472423170164],[-127.5189147265508,57.244793877021635],[-127.51862566830742,57.24487906459183],[-127.51834430102612,57.244975372634734],[-127.51807164148532,57.245081668384145],[-127.51780955166227,57.24519344619724],[-127.51755909297187,57.2453106938388],[-127.51733947855956,57.24547354581757],[-127.51715374339028,57.245653941404846],[-127.51698317758824,57.24571981600738],[-127.51684679431949,57.24557566196915],[-127.51669561893273,57.24537226459622],[-127.5164478673751,57.24524397338295],[-127.51614094394262,57.245192596764376],[-127.5157897274754,57.24527961865041],[-127.51550006845724,57.24529754446979],[-127.51543736809066,57.24515477841923],[-127.51543425904234,57.2449451821005],[-127.51545199007259,57.24476449137704],[-127.51547701279887,57.2445848373182],[-127.51550827107663,57.24440511111318],[-127.51554682085781,57.244226421563454],[-127.51559261765442,57.244047648148204],[-127.51564473850249,57.243871043596],[-127.51570513440001,57.243694343260955],[-127.51578951093333,57.24352072841404],[-127.5158937217766,57.24335024700315],[-127.51600310590085,57.24317970562964],[-127.51610834306746,57.24300921218964],[-127.51621672488325,57.242839803292114],[-127.51632719529594,57.24267037013078],[-127.51643553077123,57.242499840584664],[-127.51653869118721,57.24232937089548],[-127.51665009804596,57.2421576845977],[-127.51676669453543,57.241985938103454],[-127.51687286434053,57.24181319127531],[-127.51694998451154,57.24163965988513],[-127.51698148344205,57.24146665699972],[-127.51695337968316,57.24128089232716],[-127.51686317842812,57.24109808910084],[-127.51671074076016,57.24094066931323],[-127.51648923133277,57.24081992215701],[-127.51620225182627,57.24072123224387],[-127.51588199554568,57.24064646849159],[-127.51556361195259,57.24059298176416],[-127.51523131269201,57.240554228624426],[-127.51488727020727,57.24053354689986],[-127.51455039468982,57.24053632288288],[-127.51424286913101,57.24057351032963],[-127.51397585518795,57.24066515881825],[-127.51373320970235,57.240795760885554],[-127.51349604673699,57.24093414629554],[-127.51325095390182,57.24105580755308],[-127.51300794898538,57.241177444219915],[-127.51276073583647,57.24129800802278],[-127.51250825856174,57.24141639010973],[-127.51225591258994,57.24153813325895],[-127.51199708056456,57.2416532246642],[-127.51172505677891,57.2417494104366],[-127.51141209669247,57.241806832301826],[-127.51106713926542,57.241815297600034],[-127.51076145570981,57.24176837870094],[-127.51050179646504,57.2416525457454],[-127.51024205033347,57.24153447125867],[-127.5099591831798,57.241434599280495],[-127.50968550464327,57.241331257707834],[-127.50945559091343,57.2412072326759],[-127.509305167771,57.241047539333664],[-127.50918529213963,57.24087404150365],[-127.50902269936272,57.240721214304486],[-127.50875731992264,57.240617775293764],[-127.50844920699987,57.240535006471774],[-127.50820929113179,57.24042006283135],[-127.5080639176193,57.240256947027945],[-127.50795447502509,57.24008444913122],[-127.50787394812019,57.239909376145654],[-127.50782736681879,57.23972718611407],[-127.50788085483681,57.23955841699503],[-127.50814059726925,57.239439960343155],[-127.50844111821294,57.239356906057665],[-127.5085926867669,57.23920382199658],[-127.50860634605841,57.23902430128475],[-127.50865537485794,57.23884773612504],[-127.50874599097057,57.2386740548231],[-127.50880210486348,57.238492923920404],[-127.50871455202909,57.23832353772669],[-127.50845043899133,57.238225688995904],[-127.50810904038107,57.23821841156394],[-127.50777299206429,57.23821555571031],[-127.50746694400279,57.23815854465171],[-127.50718319679635,57.238062040501624],[-127.50692073750413,57.237952959541964],[-127.5066814899754,57.23782791670905],[-127.50641888479812,57.23771547342052],[-127.50617567140881,57.23759495942662],[-127.50601288407755,57.23743652632494],[-127.50597068051444,57.23725989085631],[-127.50595123268572,57.23708187264761],[-127.50593998750963,57.236901518079364],[-127.50593184313456,57.236721127870986],[-127.50592059815585,57.23654077335158],[-127.50590417997977,57.236360478359856],[-127.50589906492871,57.23617781135043],[-127.50589602254425,57.23599512052756],[-127.50588368925807,57.23581365761202],[-127.50584870637168,57.23563581828487],[-127.50577978235577,57.23546509544798],[-127.50566138156364,57.23530166771689],[-127.50549457664016,57.23514664364297],[-127.50529692157652,57.23499757918166],[-127.50508596442987,57.23485315144416],[-127.50487215614774,57.234715482268406],[-127.50462680603604,57.234592748483436],[-127.50436821454936,57.23447577149993],[-127.50412908518021,57.234352965359896],[-127.50394922382716,57.2342081786904],[-127.50385422001709,57.23403327069138],[-127.50378811660799,57.23385466765118],[-127.5037603026256,57.23367450379387],[-127.50370563467412,57.23349689043504],[-127.50350950729647,57.23336013725249],[-127.5032003159626,57.23330091102744],[-127.50287286938713,57.23325198277639],[-127.50256245940851,57.23318828500669],[-127.50225409552156,57.23312344202359],[-127.50194562814639,57.23305635749016],[-127.50163920692215,57.23298812776269],[-127.50133471078887,57.23291651221832],[-127.50103428937554,57.23284260723745],[-127.50073773378931,57.232761931192776],[-127.50044623705014,57.23267783347738],[-127.5001566383339,57.23258922933421],[-127.49986911339077,57.23250060081285],[-127.49958056185505,57.23241198344083],[-127.49929001044929,57.23232563038153],[-127.4989984324349,57.232239288453435],[-127.49870794411359,57.232154054433245],[-127.49841536809697,57.232068843684814],[-127.49812388173893,57.23198474084439],[-127.49783226509697,57.23189727583304],[-127.49753875277648,57.23181431592188],[-127.49723636262584,57.23174266701511],[-127.49692503401955,57.23168120872997],[-127.49660873625106,57.231625411579415],[-127.49628857407191,57.23157638390838],[-127.49596667415122,57.23153634340334],[-127.49563918740557,57.231512060083126],[-127.49530694964083,57.231499040314446],[-127.4949747121021,57.23148601970287],[-127.49464816679401,57.23145948114688],[-127.49431695216472,57.231419542969896],[-127.49398728570019,57.23136613418571],[-127.49370000289727,57.23128309475102],[-127.49348575234178,57.23115886521297],[-127.4933231157755,57.2310026583393],[-127.4931858248314,57.23083158908808],[-127.49304663763134,57.230665025390174],[-127.49291366862725,57.230498390664735],[-127.4927929598738,57.23032713199793],[-127.49266210915951,57.23016159393823],[-127.49249962786014,57.23000874750095],[-127.49229008018797,57.22987213155469],[-127.4920406132081,57.22974830138767],[-127.4917628783696,57.22964385003333],[-127.4914704845777,57.22956198527073],[-127.49116531247783,57.2294982015431],[-127.49084814424067,57.22944576380709],[-127.49052502189211,57.229400119149126],[-127.49019797392108,57.229360123424236],[-127.48987199809659,57.22932123569476],[-127.4895491832296,57.22928343219963],[-127.48922348689493,57.22925126572686],[-127.48889583303901,57.22922248373271],[-127.48856828341525,57.22919594175043],[-127.48824067409663,57.22916827862787],[-127.48791406610799,57.22913948230448],[-127.48758737150699,57.229108444146625],[-127.4872607209781,57.2290785256845],[-127.4869340709598,57.22904860640811],[-127.48660742145218,57.229018686317396],[-127.48628064191475,57.22898540388099],[-127.48595292211785,57.228954373318544],[-127.48562476735849,57.228939040938855],[-127.48528958491892,57.228956296601176],[-127.48495090979415,57.22899040608469],[-127.48462094240845,57.22900872187168],[-127.48431001904572,57.22898310173093],[-127.48400787668356,57.22891702517426],[-127.48371415655244,57.22882731139848],[-127.48343429202087,57.228720624917244],[-127.48317373274493,57.228603630098426],[-127.48293573588862,57.228480774172574],[-127.48271294322169,57.228348777602456],[-127.48250431035233,57.228207652296646],[-127.48230893964919,57.228060771498036],[-127.4821247856662,57.22790927942935],[-127.4819529794894,57.22775540533734],[-127.48181095270266,57.22759446793136],[-127.48169241832508,57.22742429647007],[-127.48157907368886,57.22725406619464],[-127.48144832534304,57.22708963783399],[-127.48127868443595,57.22693798052311],[-127.48105374761016,57.226803763715935],[-127.48081352321539,57.226676445508375],[-127.48060603750095,57.22653754656575],[-127.48045073381039,57.226381242133925],[-127.48031382031539,57.22621800357008],[-127.48019123932868,57.22605011881898],[-127.4800799176175,57.22587874367194],[-127.47997690178681,57.225707274550444],[-127.47988625938542,57.2255345444846],[-127.47982438327074,57.225354763168205],[-127.47977178034685,57.22517375601696],[-127.4797068756403,57.2249962509455],[-127.47960920889415,57.224829205220075],[-127.47945710256515,57.224675105793075],[-127.47924963261896,57.22453620491548],[-127.4790103861536,57.22440663080242],[-127.47876095445926,57.224281655348854],[-127.47851881136444,57.22415771811473],[-127.47827245589187,57.22403158604342],[-127.47801797060843,57.2239100293346],[-127.47775270498185,57.22380428783751],[-127.47747177330636,57.223722263610995],[-127.4771536374819,57.22369670853497],[-127.47680986339857,57.223705071882236],[-127.47647381518327,57.22369877421464],[-127.47614455194295,57.22368006820095],[-127.47581514284535,57.22365800001824],[-127.47548769309613,57.223632545933995],[-127.47516204008109,57.223600344808666],[-127.474837345539,57.223565890087606],[-127.47451260841852,57.223530314052404],[-127.47418882986302,57.22349248443125],[-127.47386503537179,57.223454654197035],[-127.47354025696416,57.22341795524304],[-127.47321552230389,57.223382375994134],[-127.47288786106532,57.22335131286244],[-127.47256114183575,57.22331799632868],[-127.47224322151006,57.223271128072874],[-127.47195384542006,57.22318470322331],[-127.47166447063653,57.223098277739666],[-127.47133681308802,57.22306721073233],[-127.47101022681221,57.22303725186577],[-127.4707119107446,57.222961013762735],[-127.47043342784177,57.22286101130345],[-127.47018324818038,57.222742754449506],[-127.46997469205087,57.22260160979041],[-127.46981318898882,57.222444242517284],[-127.4697711259469,57.22226647694666],[-127.4697630426105,57.222082724841236],[-127.46966141198548,57.22191908013506],[-127.46944478984719,57.22178363033174],[-127.46921469384037,57.2216483314575],[-127.4690531119219,57.22148872234306],[-127.46889266155307,57.22133134234851],[-127.4686428405539,57.22122204676614],[-127.46834118599872,57.22113911509099],[-127.46806077962239,57.22104249249794],[-127.4678360956314,57.22091273563177],[-127.46763674413796,57.22076812144667],[-127.46743230881914,57.22062580597566],[-127.46722278969484,57.22048578919422],[-127.46703371583152,57.220338816985],[-127.46671079723137,57.22002519606041],[-127.4672552658159,57.21990026799013],[-127.46756255527568,57.21983292603901],[-127.46784979687195,57.2197837440627],[-127.46816881828217,57.21975214078368],[-127.46852196792715,57.21969212900441],[-127.46884370043347,57.21965040473026],[-127.46915442844764,57.21959198833387],[-127.46945410860333,57.21951575938826],[-127.46974620059936,57.2194306470405],[-127.47003284550127,57.21933886927305],[-127.4703184448755,57.21924710261531],[-127.47060613118245,57.21915531187431],[-127.47088841325741,57.219057976278],[-127.4711516609096,57.21895076512158],[-127.47139531423298,57.21881911193665],[-127.47158161282778,57.21859730299808],[-127.47148407350234,57.218459396939416],[-127.47129279369969,57.21838980418033],[-127.47131538681288,57.21824942637784],[-127.47136688645313,57.21813338536747],[-127.47150236609698,57.21801864204925],[-127.47143244055638,57.2176820103131],[-127.47143154354616,57.21747015333653],[-127.4716105698998,57.21743675253404],[-127.47189569400594,57.217332656825135],[-127.47225659154581,57.21728599949669],[-127.47258329813921,57.21723972591481],[-127.47291472417287,57.21720797126002],[-127.47324833405918,57.21717955414491],[-127.47357219817584,57.217140036015586],[-127.473874439601,57.217077219818634],[-127.47415074209252,57.21698667036376],[-127.4744139663698,57.216879452817224],[-127.47466644275279,57.21676226694004],[-127.47491348790214,57.21663841584291],[-127.47515840012461,57.21651346732722],[-127.4754055284394,57.216391856331576],[-127.47565272498794,57.21627248607364],[-127.475896734548,57.216150909306805],[-127.47613755710776,57.21602712604958],[-127.47647430530957,57.21583836362581],[-127.47662345371484,57.21578287318378],[-127.47686534231488,57.21566019753033],[-127.47711145888128,57.215539715678666],[-127.47736714688372,57.21542585123629],[-127.4776398977593,57.21532412450197],[-127.47790624307041,57.215217985576636],[-127.47815551232107,57.21509858711639],[-127.47840057718382,57.214978114685955],[-127.47864138427379,57.21485432693336],[-127.47887691625093,57.21472835637],[-127.4791050150764,57.21459798543915],[-127.47933101415781,57.214466516854664],[-127.47955695181565,57.21433392758046],[-127.4797797024003,57.2141991319746],[-127.47999615045117,57.21406216529136],[-127.48020206648407,57.213920833427885],[-127.48039439500857,57.213776291993966],[-127.4805007497384,57.21363272304724],[-127.48059362278684,57.213435499086046],[-127.48072108386205,57.21327487631756],[-127.48084818060498,57.21310528964387],[-127.4809004195626,57.21292870317006],[-127.48094742797593,57.21275105490498],[-127.4809902932221,57.212573453536564],[-127.48102999941044,57.2123947669422],[-127.48106765045286,57.212216103618594],[-127.48110425719037,57.21203745212569],[-127.48113981963768,57.21185881246429],[-127.48117642569699,57.21168016100025],[-127.48121403200831,57.211500377235545],[-127.48125482332046,57.2113227993992],[-127.48129866955387,57.21114406599718],[-127.48135293168858,57.21096633566266],[-127.48141757644362,57.21078960875741],[-127.48148533577579,57.210612846571735],[-127.48151140937345,57.21042983046248],[-127.48159497034884,57.210259615253],[-127.48162017270468,57.21008109297529],[-127.48161846552651,57.20990287544134],[-127.4815959863294,57.2097237721673],[-127.48156415186789,57.20954365386687],[-127.48152926255534,57.20936469116448],[-127.48150157106993,57.20918452599214],[-127.4814894053517,57.20900418503998],[-127.48148656826353,57.2088237384822],[-127.48148575900467,57.208642148002376],[-127.481476708532,57.20846177185153],[-127.481450148495,57.208283835961446],[-127.48138448086547,57.2081130688134],[-127.48120349807057,57.20796042201233],[-127.48103885233111,57.20780198513507],[-127.48089768722221,57.207634314431914],[-127.48076990705957,57.20746425015067],[-127.48066786574073,57.20726362791674],[-127.48082697469647,57.20714524477578],[-127.48090008957145,57.20697290666151],[-127.48093043558846,57.20679320577169],[-127.48095141000994,57.20661248999844],[-127.48097451516772,57.206432871107744],[-127.48098931944575,57.20625334620354],[-127.48099378508307,57.206073938358095],[-127.48097959507167,57.20589474172528],[-127.48096847663736,57.205714389363216],[-127.48097811148774,57.20553492307558],[-127.48099504627679,57.205356495154156],[-127.48101813390457,57.20517687661607],[-127.48104123788343,57.204997257911],[-127.48106739644737,57.20481648366053],[-127.48086484621435,57.2044275540082],[-127.48076192788672,57.20425720882422],[-127.48068574240911,57.20408207709265],[-127.48066328755661,57.203902974269475],[-127.48066566699279,57.203723590384755],[-127.48067841736082,57.203544089139704],[-127.48069115104245,57.203364588105714],[-127.48069250316912,57.20318521592042],[-127.48066797796243,57.203006136660655],[-127.48059490994441,57.20283096979088],[-127.48052184259471,57.20265580290378],[-127.48046628297392,57.20247819590761],[-127.4804386447789,57.202299151949575],[-127.48045863525536,57.202119568990035],[-127.48049734928884,57.201942016101725],[-127.48052873688333,57.201762304184655],[-127.48053630202844,57.20158286190914],[-127.48053351329376,57.20140353684423],[-127.48053072458521,57.20122421180378],[-127.48054138744534,57.20104473453966],[-127.48058626889227,57.200865990970605],[-127.48066342767757,57.20069136596404],[-127.48071351996026,57.20051368438281],[-127.48072936680863,57.20033414850683],[-127.48073900142602,57.200154682974976],[-127.48074958896534,57.19999986818834],[-127.4807517502625,57.19997518221239],[-127.48076345535945,57.19979569328718],[-127.48077516034674,57.1996162043857],[-127.48078686522432,57.199436715507616],[-127.48079752638687,57.19925723846756],[-127.48080820401456,57.19907776126367],[-127.48081472372483,57.198898331154275],[-127.48082954240488,57.1987188071145],[-127.48087337619647,57.19854007557899],[-127.48091934006275,57.1983624409081],[-127.48096425992667,57.198184818061],[-127.48100292431637,57.198006145070885],[-127.48103123550452,57.19782758931916],[-127.48104500919432,57.19764807721796],[-127.48098272289127,57.19745709563467],[-127.48100189412109,57.1973100307636],[-127.48105273876955,57.197232107735665],[-127.48163977402979,57.19719967678602],[-127.48196846866917,57.19718250126884],[-127.48229829328343,57.197167554068315],[-127.48262805770561,57.197151485739816],[-127.482956534588,57.197128705319145],[-127.48328147967464,57.19709475436097],[-127.48359847468492,57.19704295714837],[-127.4839033781675,57.196973360722275],[-127.48419849392337,57.196891543904705],[-127.48448717976316,57.19680419450893],[-127.48477479388279,57.1967157356567],[-127.48506666143554,57.196630590797646],[-127.48536717383912,57.196554314913385],[-127.4856720702195,57.19648471439084],[-127.48597918294767,57.1964184508974],[-127.48628623457304,57.19635106639214],[-127.48659005722197,57.19628035492828],[-127.4868895203248,57.19620408742787],[-127.4871846672798,57.19612338440357],[-127.48747756847929,57.19603822233845],[-127.48776516994344,57.195949756963174],[-127.48804848201782,57.19585797681799],[-127.48832636367234,57.195759531985544],[-127.48859574439622,57.19565557842402],[-127.48885339611194,57.195542790003934],[-127.48910041623188,57.195423396254604],[-127.48938986193048,57.195329301373135],[-127.4895538856515,57.195179464518354],[-127.48991789033451,57.195085640258235],[-127.49066223946942,57.19526436184396],[-127.49035243726131,57.19502127752445],[-127.49029378941168,57.19484483151195],[-127.49025059114103,57.19466596751243],[-127.4902322648846,57.194487941106466],[-127.49033857003815,57.194318583369714],[-127.49046978924498,57.19415118358563],[-127.49057086464735,57.19398076430466],[-127.49058864574735,57.193798963576725],[-127.49067424405995,57.19362984161669],[-127.49083483646581,57.19347219549093],[-127.49101006717358,57.19331774521337],[-127.49119584953819,57.19316877926958],[-127.49135334069413,57.19301116787688],[-127.49149720743132,57.192849227777856],[-127.49163584533267,57.192686226189565],[-127.49176818396451,57.19252105436472],[-127.49189322360789,57.19235484470327],[-127.49199847209194,57.192185497795286],[-127.49207970187675,57.1920108199761],[-127.49216195775875,57.19183613041355],[-127.49224735359749,57.191662525959806],[-127.49232651092028,57.19148787167914],[-127.49237344005168,57.19131022222263],[-127.49238818507804,57.19113069810236],[-127.49239466576927,57.19095126831518],[-127.49240424338896,57.190771803209245],[-127.49242188335246,57.19058664124938],[-127.4926357814434,57.19046873974826],[-127.49292082239626,57.1903690822896],[-127.49309943312959,57.19022243754702],[-127.49320035545759,57.19004865531925],[-127.49325874355948,57.18987311677643],[-127.49330045569434,57.18969440573236],[-127.49334112410396,57.1895157066138],[-127.49339011621775,57.189338033419055],[-127.49344013464292,57.189160348503805],[-127.49348912584324,57.18898267531995],[-127.49352358239886,57.1888040471671],[-127.493518663752,57.18862474776961],[-127.49351423501386,57.18856426585015],[-127.49350485782193,57.18850944531112],[-127.49346005479032,57.188449424508065],[-127.49351343939857,57.18843760508356],[-127.49353990828577,57.18839918972417],[-127.49350595757436,57.18837827901468],[-127.49347963192751,57.18834046663184],[-127.49348041379302,57.18828104618712],[-127.49338379752986,57.188060197179645],[-127.49353930259518,57.18795865468979],[-127.49377555963292,57.187830407232475],[-127.4940193305723,57.18770879932473],[-127.49423675247012,57.18757516136002],[-127.49439730484484,57.18741751158592],[-127.4945547154871,57.18725877655544],[-127.49474285308078,57.18714452896047],[-127.49502051713887,57.18701580590044],[-127.49529502860813,57.18691290063468],[-127.49554207705836,57.18679573625768],[-127.49572992388141,57.18664786140885],[-127.49591247142642,57.18649668400071],[-127.49611404075083,57.18635537743975],[-127.4962704132333,57.18619665221917],[-127.49642992478468,57.18603901186293],[-127.4965842081954,57.185880310183215],[-127.49674269046652,57.185722681233955],[-127.49691267890653,57.18556828328683],[-127.49708477964424,57.185414981907385],[-127.49729159294779,57.18527585543359],[-127.49747839891293,57.185127989999955],[-127.49763269087263,57.18496928700321],[-127.49779430536583,57.18481274189074],[-127.49798843092823,57.18466703382687],[-127.49819309601168,57.18452568859296],[-127.49839460274225,57.184383258259956],[-127.4985866540235,57.18423757307512],[-127.49887314192027,57.18415021649617],[-127.49911682943528,57.18402747895896],[-127.49919304589639,57.1838584595641],[-127.49917042872313,57.18367712174517],[-127.49914478648665,57.183498060573804],[-127.49908522367843,57.18314003321107],[-127.49950543013817,57.18287178690089],[-127.49974492416041,57.18274797531993],[-127.49994748622485,57.182606651476476],[-127.50013108489043,57.18245657714184],[-127.50035050883912,57.18232290598864],[-127.5005730879811,57.18219031922018],[-127.50078087046592,57.18205005513076],[-127.50100448966128,57.181917455681855],[-127.50128348301152,57.18182457490818],[-127.50158077813278,57.18174941884474],[-127.50183825422639,57.18163548557668],[-127.50209895678795,57.18152487763287],[-127.50240483418231,57.18145746785096],[-127.5027260330324,57.181411179660444],[-127.50305582910146,57.18139954188693],[-127.50338565344416,57.18141480622089],[-127.50371318853558,57.18142449120729],[-127.50384066657571,57.18150709771353],[-127.50429057484777,57.18157478505136],[-127.50462401259166,57.18157655307235],[-127.50493635612801,57.18162115991552],[-127.50523463852797,57.1817029199262],[-127.50551571778827,57.18179496610438],[-127.5057556382919,57.181919993870046],[-127.50603879009387,57.18201201510287],[-127.5063379282737,57.18208927894155],[-127.5066251340284,57.18217901029874],[-127.50693117444743,57.18224722551124],[-127.50724801814813,57.182300742854295],[-127.50756944081218,57.182312730693894],[-127.50790209146017,57.18229432201741],[-127.50822333478531,57.182249140757555],[-127.50855031679077,57.18221846512281],[-127.5088786825824,57.1822225228265],[-127.50920314568133,57.1822591329463],[-127.50952661040569,57.18229687476825],[-127.50985577166759,57.18232109834639],[-127.51017438066418,57.18236674146256],[-127.51043043604942,57.182480364829885],[-127.51073758350466,57.18252389706358],[-127.51105330329588,57.18257517632569],[-127.51132553935142,57.18267852224426],[-127.51154307082327,57.18281276633906],[-127.51175044847443,57.18295161139928],[-127.51202667938557,57.183051546829454],[-127.51229184591234,57.18315945649299],[-127.51251852879875,57.18328910933979],[-127.51272900893844,57.18342791707919],[-127.5129344571607,57.18357014566079],[-127.51314084502685,57.183710121128954],[-127.51334719014709,57.183848975823494],[-127.5135556508228,57.183988926710335],[-127.51376720945356,57.18412884143122],[-127.51397562891312,57.184267671215245],[-127.51418409416142,57.18440762114459],[-127.51439251664742,57.18454645029359],[-127.51460202813278,57.184686387503994],[-127.51481045364898,57.18482521601622],[-127.51501892497906,57.18496516467384],[-127.51522735352182,57.18510399255098],[-127.51543785344165,57.18524279612106],[-127.51565038043799,57.18538045491107],[-127.51587001227911,57.18551466808975],[-127.51609271443499,57.1856477243543],[-127.51631038470578,57.18578420155509],[-127.5165662593687,57.18589221088448],[-127.51680261270876,57.18600380912186],[-127.51692536694523,57.186096547259076],[-127.51702894359578,57.186176056051394],[-127.51718415834652,57.18622582019789],[-127.5172918252268,57.18632994286448],[-127.51739720088713,57.18642848715353],[-127.51756398756572,57.18648260050401],[-127.5177262914445,57.18647623283602],[-127.51775242982583,57.186404186818045],[-127.51763885649318,57.18633376241311],[-127.51746147706457,57.186247263728426],[-127.51725591829167,57.18618126940607],[-127.51718596020909,57.18606213648529],[-127.5172411451043,57.185965092055596],[-127.51735575730704,57.18587856778695],[-127.51753302688579,57.18575320300147],[-127.51774210395737,57.185620742910736],[-127.51796019158418,57.18548033103384],[-127.51817535867254,57.1853444366104],[-127.51833373334894,57.18518678175983],[-127.51849630739348,57.1850301989303],[-127.51868405697653,57.18488229131699],[-127.5188801898509,57.184736528006304],[-127.5190837350456,57.184595162194576],[-127.51931997470312,57.18446910985027],[-127.51951739627941,57.18433005646659],[-127.51967163818814,57.18417244803225],[-127.51992690151715,57.184056262269536],[-127.5201642227079,57.18393131678563],[-127.5203930409085,57.18380086485305],[-127.52059343469948,57.183658412336925],[-127.52077793968063,57.18350717650159],[-127.52097310334509,57.18336366325648],[-127.52124130967863,57.18326077605184],[-127.52154483053812,57.18318662273675],[-127.52185609213613,57.183124709357784],[-127.5221660425138,57.1830560846311],[-127.52241719588591,57.182941062756214],[-127.52251927635277,57.182773969485446],[-127.52253483097584,57.18259219008096],[-127.5227321421657,57.182450891125185],[-127.5229873847493,57.182334699539894],[-127.52325864676034,57.18223065156018],[-127.52351079002025,57.18211449504586],[-127.52377886368681,57.182008241168184],[-127.52406418979272,57.18191972125503],[-127.52432984157828,57.18188299502925],[-127.5245456090414,57.181711211736896],[-127.52469130161398,57.181548092136865],[-127.5248833444457,57.18140460937607],[-127.52515455013034,57.18129943708007],[-127.52543227547933,57.18120203498194],[-127.52571211366552,57.18110572860533],[-127.52598551845136,57.18100389182596],[-127.52622918836876,57.18088334497914],[-127.52643264135857,57.18074084768647],[-127.52664359602007,57.180604988338544],[-127.52689166841097,57.180491114691975],[-127.52707467360374,57.18043292844102],[-127.52720787341737,57.18034617833878],[-127.52757754216034,57.1801143013431],[-127.52783500275939,57.180002558138334],[-127.52811689572064,57.17990622251723],[-127.52841071442414,57.179823198578404],[-127.52874753067246,57.179754243891125],[-127.52896722856671,57.17968217416669],[-127.5288007651958,57.17950588557696],[-127.52863979835061,57.17933737938201],[-127.52851715565176,57.17916954593513],[-127.52841407682823,57.17899924173671],[-127.52834497540874,57.178824056379895],[-127.52829338430311,57.17864642436953],[-127.52821600609865,57.17847133576183],[-127.52809341270498,57.17830462248027],[-127.5279810784049,57.178135547260574],[-127.52790886804513,57.17796039816583],[-127.52785107175441,57.177782838656604],[-127.52778709577203,57.17760647234575],[-127.5277005071209,57.17743373320915],[-127.52759231596325,57.17726460939987],[-127.52746864149599,57.17709678741975],[-127.52733372859515,57.17693245958017],[-127.52718653438974,57.17677163802935],[-127.5270086576737,57.17662014253639],[-127.5268154488018,57.17647330980006],[-127.52661309946068,57.176331067446114],[-127.5265407485803,57.176229903797584],[-127.52698602091273,57.17623367119038],[-127.5273036320763,57.17617727510537],[-127.5275676042972,57.17607330319391],[-127.5277952181011,57.175940610369885],[-127.52800498109883,57.175801399960974],[-127.5282031014014,57.17565559948169],[-127.5284106132873,57.17551193084088],[-127.52852626892223,57.17534915845226],[-127.52856782895411,57.175171558790915],[-127.52857709920438,57.174988731853055],[-127.52856990438184,57.17480833941678],[-127.52851210978176,57.1746307806219],[-127.5284358097292,57.17445680112305],[-127.52836464713222,57.17428164057189],[-127.52830369743447,57.17410299769347],[-127.52825313922106,57.173925354300245],[-127.52824189700128,57.17374725127251],[-127.52833749650779,57.173574624951286],[-127.52839354002428,57.173396856228585],[-127.52841535997729,57.17321724572649],[-127.52838135601343,57.17303940894401],[-127.52830710078766,57.17286428474272],[-127.52819783230831,57.17269405376219],[-127.52802974956849,57.1723462760075],[-127.52852910021673,57.17227990526647],[-127.52870175833546,57.17206714372152],[-127.52889826263404,57.171933691912656],[-127.52923104923006,57.171869266583464],[-127.52954418622564,57.17180507033269],[-127.52985852734918,57.171745343110366],[-127.53015887312887,57.17167232731651],[-127.53042487570345,57.17156832576719],[-127.53067472376748,57.17144881926177],[-127.53093207238673,57.17133595024299],[-127.5312075522495,57.171236319953444],[-127.53149266326993,57.17114442302006],[-127.5317864357323,57.17106251268398],[-127.53208454081022,57.17098503477544],[-127.53234288018773,57.17087103035031],[-127.53244847334445,57.17071621945993],[-127.53269102706264,57.17056989127379],[-127.53295263639355,57.17046033116198],[-127.53322594602251,57.170358480062],[-127.53351000287606,57.170266591021964],[-127.53381237087427,57.17019242200219],[-127.53410176878683,57.17010495286131],[-127.53445892176016,57.17000323600837],[-127.53461869130093,57.16988365835025],[-127.53482187526966,57.16973666741354],[-127.53504323586247,57.16960403529849],[-127.53531909650805,57.16951448046324],[-127.53562809440665,57.16945143899872],[-127.53594879333617,57.16939610608375],[-127.53626414750137,57.16933635131362],[-127.53656982262156,57.16926774179963],[-127.53687113405226,57.16919357801977],[-127.53716272122541,57.16910943916667],[-127.537431737264,57.169004266717046],[-127.53772850247172,57.16892006567343],[-127.5380576487541,57.16892067666665],[-127.53837433579987,57.16897187716551],[-127.53865540125484,57.16906385121662],[-127.53892770571953,57.16916937949488],[-127.53920804612764,57.16926920774058],[-127.53950603546876,57.169344166155796],[-127.53983248627445,57.1693291108697],[-127.54015538216164,57.169277104588794],[-127.54046167079936,57.16919838991461],[-127.54068853322462,57.169074650956084],[-127.54084149387263,57.1689147907845],[-127.54096296840304,57.16874409194812],[-127.54105538644961,57.16857149366689],[-127.54113215973669,57.168395716893755],[-127.54123401325057,57.16822637016778],[-127.54141008683877,57.16807520457831],[-127.5415986626524,57.167926133229884],[-127.54175161492303,57.16776627213117],[-127.54188055652244,57.16760108926852],[-127.54199172289348,57.16743163212119],[-127.54209766273327,57.16726111558733],[-127.54221094110679,57.16709275432454],[-127.54232835620729,57.16692434415563],[-127.54244581536051,57.16675705434078],[-127.5425652972439,57.16658861958492],[-127.54270366812747,57.16642668758482],[-127.54289331858796,57.16627872268311],[-127.54311565742603,57.166146065129915],[-127.5433274251239,57.166007927177674],[-127.54343970955217,57.1659438268472],[-127.54384851211516,57.16578990930299],[-127.54405816128414,57.165650674205494],[-127.54431147456093,57.16554230997334],[-127.54458364769378,57.165439327194214],[-127.54478704080985,57.16529904387884],[-127.5449892994671,57.165156531715844],[-127.54522539588227,57.16503155467024],[-127.54551581662243,57.16494516870914],[-127.54589339108938,57.16489025931725],[-127.54599015422792,57.16474899343367],[-127.546192495894,57.164608720338066],[-127.54657195698833,57.16452352043984],[-127.5467684330144,57.16444272725689],[-127.54705564403157,57.16435413386834],[-127.54733423362046,57.16425667415817],[-127.54750532286207,57.16416272879],[-127.54790903768291,57.16416579438268],[-127.54817187394373,57.16406291459917],[-127.5484249101192,57.16394781972486],[-127.54856137232333,57.163841952554804],[-127.5486266502513,57.16379297730686],[-127.5485866679095,57.163750854238316],[-127.54854348383788,57.163706527159185],[-127.54854202233349,57.16361910882691],[-127.54857293382331,57.16353915367857],[-127.54861411456216,57.16345683489494],[-127.54869770792075,57.16342557809028],[-127.54889041092397,57.16343114104988],[-127.54902973605698,57.16344742517233],[-127.54933875180367,57.163514383046206],[-127.54966596435533,57.1635194710665],[-127.55003455044566,57.16352406754321],[-127.55032709415566,57.16354189578785],[-127.55064394765719,57.16349553961338],[-127.55091729662094,57.163397013360054],[-127.55123278824658,57.16334282510922],[-127.55154631756302,57.163290901327514],[-127.55186784909442,57.16325793826014],[-127.55219578563398,57.16328094685979],[-127.55252286146161,57.163308448750904],[-127.55285070805766,57.16332921484439],[-127.55317780131601,57.163356714900914],[-127.55350726330666,57.1633662504447],[-127.55383918439463,57.163360062320365],[-127.55416671418527,57.16337298209311],[-127.55448912858323,57.16341286521764],[-127.5548188185919,57.16342799961237],[-127.55514927875845,57.1634363981818],[-127.55547981344296,57.163447036974844],[-127.55581075432515,57.163441976487256],[-127.55614025973784,57.16342684350299],[-127.5564471713607,57.16339068030646],[-127.55675708226134,57.16332645634291],[-127.55708065356069,57.163241891367036],[-127.55738197326595,57.163195703827014],[-127.55756948765861,57.163149751085534],[-127.55802179284281,57.163126423801856],[-127.55834295307062,57.16308448137142],[-127.55860875749828,57.162979302922274],[-127.55887871428037,57.16287407439041],[-127.55911473481595,57.16274907267064],[-127.55933381126123,57.16261418394906],[-127.55954229867172,57.16247381636309],[-127.55971202227143,57.162321580411316],[-127.5598449597824,57.162155210700355],[-127.56002313747571,57.162007357326594],[-127.56029090720618,57.16189990999059],[-127.56056737674557,57.16180244695487],[-127.56074643918313,57.16165121909818],[-127.56084913947227,57.161479604644875],[-127.56099375719947,57.16132094106779],[-127.56118861177106,57.16117624979825],[-127.5613855334029,57.16103153353771],[-127.56158245354834,57.160886816996154],[-127.56177730369247,57.16074212489596],[-127.56196896658464,57.16059522865741],[-127.56214167540422,57.160440711923215],[-127.56218344535723,57.16027206679539],[-127.56238340738031,57.160126191709146],[-127.56260348330517,57.15999128550501],[-127.56286922547957,57.1598849780119],[-127.56307675051083,57.15974685819639],[-127.56333942441009,57.159641707405044],[-127.56359880314652,57.159532111620365],[-127.56376004106713,57.15937548805286],[-127.56389613657873,57.15921131840598],[-127.56398119722212,57.1590387917054],[-127.56416973226412,57.15889192966151],[-127.56425679711305,57.15871825783659],[-127.56439181652553,57.15855297961219],[-127.56461835585294,57.15842471842469],[-127.56488176800686,57.1583128298119],[-127.56514203859619,57.15819985731862],[-127.5653539117747,57.158067286625595],[-127.56547003445297,57.157895507839086],[-127.56569665779612,57.157769485691006],[-127.5659675843517,57.15766423063534],[-127.5662525861252,57.15757449988319],[-127.56655158835527,57.1574980522965],[-127.5667917039976,57.157372987423045],[-127.56709200423063,57.157303248841146],[-127.56741639973679,57.15726572867679],[-127.56774307544399,57.15723378519765],[-127.56806756136871,57.157198504261856],[-127.56838420351072,57.15714874403906],[-127.5686897239867,57.15708006005208],[-127.56899308336239,57.15700915934897],[-127.56929639575911,57.15693713752485],[-127.56960195878149,57.15686957183664],[-127.57021870289529,57.156745580489094],[-127.57080030923942,57.15669823470808],[-127.57113007215867,57.15669090695101],[-127.5714602776068,57.156694782758265],[-127.57179086710636,57.15670762088914],[-127.57211969356565,57.156728326205695],[-127.57244538026524,57.156747947512926],[-127.57276431108679,57.15670375389994],[-127.57309592697229,57.15671657638093],[-127.57340937249722,57.156664600414544],[-127.57373726445276,57.15663711108902],[-127.57404830166061,57.156577315772076],[-127.57435705614297,57.15651194234667],[-127.57467930700915,57.156473308878205],[-127.57500842292315,57.15645028547784],[-127.57533718652843,57.15644408008962],[-127.57566328684375,57.15647377713671],[-127.57598999498526,57.156442933479426],[-127.57638519784527,57.156366423695964],[-127.57647761560861,57.15624872741058],[-127.5766351746146,57.15613024502722],[-127.57698055058948,57.156049850760326],[-127.57727949111063,57.15599804047639],[-127.57760856148872,57.156024333856465],[-127.57792833500669,57.15607652108766],[-127.57816426109038,57.15612747838745],[-127.57844094605764,57.156112926387515],[-127.57889658124355,57.1560468885874],[-127.5792164323583,57.156000426021535],[-127.5795606653974,57.15599290200564],[-127.57985927883634,57.15593324290855],[-127.58015712294703,57.15585453585995],[-127.58045167048289,57.155771384100674],[-127.58075504394742,57.15570157658011],[-127.5810682694499,57.15564510082102],[-127.5813847432654,57.15559194791041],[-127.58170019036585,57.1555388066542],[-127.58200665377105,57.155468958783835],[-127.58232476828057,57.15543035637686],[-127.58265623761115,57.155439793340875],[-127.58299506814286,57.15547716465629],[-127.58321522439189,57.15549691660855],[-127.5836066524819,57.15538007537984],[-127.5839331300464,57.155343609617546],[-127.58405970739274,57.15535216383647],[-127.58421396590354,57.155354777420925],[-127.58436689840838,57.15532489861497],[-127.58446982201518,57.15533710219411],[-127.58455361528377,57.15536186843361],[-127.58483375846586,57.15545599550982],[-127.58469156785875,57.15529517872373],[-127.5847058371223,57.15511452860443],[-127.58467210467356,57.15492437194076],[-127.58463154349874,57.15469394302133],[-127.5845086109977,57.15457324769121],[-127.58433534900111,57.154436347968684],[-127.58426496432689,57.15426008747502],[-127.58429069430125,57.15408154053671],[-127.58439542968073,57.15391212430869],[-127.58452507420331,57.153744647858865],[-127.58465476389549,57.15357829171384],[-127.58478868128303,57.15341412611252],[-127.5849006890108,57.153245742273796],[-127.58496575528827,57.15306783906807],[-127.58500892918713,57.152885717551754],[-127.5851012960406,57.15271757185956],[-127.58524078724412,57.152563426975355],[-127.58551220242016,57.15244691505368],[-127.58567383068981,57.15230258980862],[-127.58566514397094,57.15211773464737],[-127.58574693431312,57.15194411204212],[-127.5858505390182,57.151772466547094],[-127.58596042294582,57.151602986698755],[-127.58607365331244,57.15136396582857],[-127.58614844312919,57.15124647665041],[-127.586271397489,57.15109253149624],[-127.58627327973699,57.150913153040875],[-127.58627513216526,57.150732653998965],[-127.5862976938733,57.15055302449072],[-127.58635349799295,57.150376354255556],[-127.58640379905862,57.15019190403683],[-127.58646739379718,57.15000392946466],[-127.58653009534875,57.14984399001803],[-127.58662972394893,57.14967687623647],[-127.58677518638113,57.14951705247397],[-127.58694046968759,57.14936147165931],[-127.58711720943859,57.1492079933929],[-127.58751341736874,57.14900813013641],[-127.5876497313001,57.148777795396846],[-127.58764348894329,57.148676983864775],[-127.58761949270341,57.148571904226294],[-127.58761197878587,57.14839039826312],[-127.58763016529946,57.14820521706521],[-127.58762576139289,57.14802367335484],[-127.58747986842174,57.14787299441576],[-127.58727551638823,57.147734235391454],[-127.58704451639109,57.14760140468418],[-127.58680638173954,57.14747090220835],[-127.58658154193017,57.14733687494706],[-127.58635881780488,57.147203942607646],[-127.586101134828,57.147051256955756],[-127.5859651779116,57.1469901334269],[-127.58569714654283,57.14693733890955],[-127.58523798924881,57.146914887638204],[-127.5849754770675,57.146920315050956],[-127.58473631905717,57.14691536989372],[-127.58462506152271,57.146876364728556],[-127.58415765306874,57.14660403386541],[-127.58391782033192,57.14648251475228],[-127.58364772999765,57.14637929754558],[-127.58337353538914,57.146277250523575],[-127.58311035296344,57.146166101750914],[-127.5828201993638,57.146053037362904],[-127.58254640417648,57.145935290307236],[-127.58234551370165,57.14580432894301],[-127.58227094719743,57.14565165976744],[-127.58230822953271,57.14547745833421],[-127.5824051206635,57.145293567067235],[-127.58250717174101,57.14510961322848],[-127.58258782687663,57.144933765319095],[-127.58268202166711,57.14475999525102],[-127.58272231851564,57.14458351532389],[-127.58270256153021,57.144405521154226],[-127.58265898924098,57.14422669460573],[-127.58254647619218,57.14390634076909],[-127.58221057710341,57.143787103895],[-127.58164037115053,57.14347901867366],[-127.58105494361362,57.143202502394495],[-127.58069312629682,57.14300622903331],[-127.58044429843399,57.14284109554977],[-127.58030828324827,57.14267795964167],[-127.58039797846395,57.142570382849364],[-127.5805037712612,57.142402079187605],[-127.5805124430909,57.14218562835268],[-127.58071686407045,57.14202621968785],[-127.58095137203124,57.14184402726285],[-127.58115507065655,57.141692473392744],[-127.58144118201363,57.14163296128689],[-127.5816718494944,57.141558426496424],[-127.5821738586718,57.141417830664544],[-127.58243978373993,57.141119795749255],[-127.58254620223396,57.140991837538465],[-127.58246770286532,57.1408190394495],[-127.58242831680084,57.14064128360314],[-127.58239611254035,57.14046231979739],[-127.58238044776839,57.14028315562394],[-127.58238752441996,57.140103715944456],[-127.58240182856285,57.139924188719625],[-127.58240679145922,57.139743653733454],[-127.58241481739829,57.13956196069654],[-127.58242180131703,57.1393802803082],[-127.58240406952672,57.139201141329785],[-127.58233802466424,57.13902931350216],[-127.58218553911215,57.138867500588034],[-127.58197693474024,57.13872430268963],[-127.58174910002819,57.138591426045515],[-127.58150590898286,57.13846209787717],[-127.58124480668816,57.13834980055543],[-127.58096207395329,57.13826466762897],[-127.58065399124459,57.138216832603554],[-127.58032427692257,57.13819616165416],[-127.57998563761119,57.13818456552918],[-127.57965178935439,57.138163942902985],[-127.57933346492527,57.13811847059314],[-127.5790228108341,57.1380583323094],[-127.57871794456278,57.13798803470502],[-127.57841693735101,57.137910964012306],[-127.57812095297655,57.137830469073705],[-127.57783297894063,57.13774315095525],[-127.57755491129988,57.13764562393374],[-127.5772828330379,57.13754241921707],[-127.5770187783996,57.13743351228009],[-127.57676278051028,57.13731890277343],[-127.57648288164474,57.13722700046782],[-127.57617125992581,57.13716798822121],[-127.57585172190028,57.13711803842727],[-127.5755248656409,57.137065934238315],[-127.57527544440076,57.13696021024425],[-127.57510442138397,57.13679973433223],[-127.5750302070586,57.13662912304922],[-127.57507343908337,57.13644812764121],[-127.57510742263037,57.13626836474319],[-127.5751217759441,57.136088838626385],[-127.57512370958086,57.13590946233067],[-127.57512147941905,57.135729015324465],[-127.57510998484443,57.135549801041236],[-127.57505615176751,57.135372218395204],[-127.57505292612096,57.135192904425836],[-127.57506107792938,57.13501345325423],[-127.57506194051017,57.13483296906794],[-127.57502877966192,57.13465513718172],[-127.57494607148057,57.134479023847426],[-127.57495538689537,57.134302921611265],[-127.57501219887462,57.134125125585555],[-127.57508559282115,57.13394825049916],[-127.5751944019911,57.13377767391413],[-127.57527211253458,57.13360523049663],[-127.57522838659285,57.13342192150387],[-127.57520971189624,57.13324391510542],[-127.57534917204252,57.13308978300854],[-127.5755718800282,57.132948097783135],[-127.57578118861917,57.132807694824095],[-127.57601269709721,57.132679354080715],[-127.57618635753784,57.13252705021821],[-127.57640055185982,57.13227897574514],[-127.57643241250017,57.13209811761153],[-127.5763684275215,57.131925142316895],[-127.57624774854852,57.13175621426569],[-127.57613224624099,57.13158722365173],[-127.57601264058808,57.131419403447644],[-127.57583182732563,57.13127137804723],[-127.57560208325363,57.13114075715142],[-127.57537338246503,57.13101012329583],[-127.57513966224964,57.13088291247697],[-127.57489384763363,57.13076369380692],[-127.57462689230475,57.130658181064746],[-127.57437301363689,57.130543542522574],[-127.57412006972217,57.13042665034382],[-127.5738671733073,57.13031087808217],[-127.57361423246701,57.130193984943695],[-127.5733961087424,57.13011926792353],[-127.57299763336347,57.130109496598216],[-127.57270793762179,57.1300289149601],[-127.57245359256676,57.12995351173101],[-127.57215693334004,57.129829295719944],[-127.571893988008,57.12972036650055],[-127.57162488956953,57.12961263179077],[-127.57143799305074,57.129466915931296],[-127.57129774639532,57.12929934041696],[-127.57113433738304,57.12914661583923],[-127.57085766594126,57.129055785026424],[-127.57054910323181,57.129019142796174],[-127.57030446454613,57.1288774828519],[-127.5700889167225,57.12873883551309],[-127.56987439557788,57.12860017550716],[-127.56961578201975,57.128495673686835],[-127.56931110059669,57.12842759541756],[-127.56906774098077,57.12829152268284],[-127.56882759507278,57.12818343459907],[-127.56854266903166,57.12809269827935],[-127.56824875625783,57.128009915931635],[-127.56795885741995,57.127923721898625],[-127.5676908992793,57.12781820770855],[-127.5674612658923,57.12768869302322],[-127.56723166328328,57.127560298541894],[-127.56696273034149,57.127455915587625],[-127.56668078521047,57.12736177675818],[-127.56639380363754,57.1272710606041],[-127.566102918657,57.127185995391315],[-127.5657916979353,57.12713480179703],[-127.56547329857611,57.12708481449208],[-127.56518641333143,57.12699633649741],[-127.56488656112145,57.12691922276398],[-127.56458678495054,57.126844349339386],[-127.56430587521453,57.12675019314064],[-127.56410167378073,57.12661027964866],[-127.56387487749268,57.1264739993498],[-127.56365977441612,57.12654831614783],[-127.56329501088538,57.12662890843797],[-127.56297973029609,57.12668088372846],[-127.56265349319894,57.12671729616915],[-127.5623253927573,57.12673355309464],[-127.56199570313368,57.126736376879265],[-127.56166471479712,57.126732489702775],[-127.56133358976169,57.12672524049214],[-127.5610034608799,57.12671685758985],[-127.56067134006616,57.1267107395521],[-127.56034007872725,57.12670012662648],[-127.56001263208273,57.126681620681225],[-127.55968868154538,57.12664737895303],[-127.55937101706687,57.126589521551864],[-127.55908324455984,57.12650440381856],[-127.55885063085174,57.12637715203283],[-127.55863203019963,57.12623852315227],[-127.55836928436575,57.126132928187616],[-127.55806234754361,57.12605924646573],[-127.55774235536076,57.12602046900293],[-127.55740832740038,57.12601772832705],[-127.55707630413735,57.12601384194729],[-127.55676816774174,57.1259614694228],[-127.55647910798832,57.1258696358169],[-127.55617442528363,57.12580040663108],[-127.55586184057282,57.12574023844643],[-127.55555132347133,57.12568004489305],[-127.55524957051153,57.12560629492767],[-127.55496047166582,57.12551333758439],[-127.55465516148352,57.125454200873364],[-127.55432947714976,57.12542781328747],[-127.55399513698158,57.12541722108329],[-127.55366438765012,57.12541891563144],[-127.55334892254524,57.1254663860224],[-127.5530292039148,57.12551054342172],[-127.55269913376354,57.12552904152964],[-127.55251089075229,57.12555257799056],[-127.55205267127691,57.12552103505727],[-127.55172966126757,57.125560744623705],[-127.55141114622612,57.125609367484536],[-127.5510879989448,57.12564571426343],[-127.55075985749087,57.12566082171522],[-127.55042830721347,57.12566812224845],[-127.55009778185963,57.125675409769514],[-127.54976864426655,57.12566586589905],[-127.5494401247251,57.12564622541895],[-127.54911251140994,57.125623210548675],[-127.54861269162565,57.12555964195308],[-127.54851720667872,57.12549912291807],[-127.54823405170862,57.12542513633896],[-127.54793231481563,57.125351369478444],[-127.54762476939229,57.125287759231675],[-127.54730263722534,57.12524673990205],[-127.54697952587662,57.12520685232694],[-127.54666516476291,57.125153409053745],[-127.54635946388164,57.12508416934279],[-127.54605278421053,57.12501606146059],[-127.54573574050202,57.12497273618907],[-127.54540431781555,57.124957603778746],[-127.54510366018013,57.12488493867622],[-127.54488475271815,57.12476310529943],[-127.54456011033275,57.12471089964961],[-127.54430056239002,57.12463214170793],[-127.54418215916114,57.1244642809085],[-127.54416052470653,57.12428630802426],[-127.54415835062497,57.12410362124774],[-127.54416249490932,57.123924222568746],[-127.54418834601005,57.12374456716272],[-127.54417804098925,57.12356533943744],[-127.5441160567072,57.12338672299439],[-127.54402120579456,57.123212979010425],[-127.54383258758905,57.123072850983675],[-127.54356347934817,57.12296169778156],[-127.54331072431178,57.12284586699392],[-127.54305294802171,57.12273345789687],[-127.5427691483602,57.122642653596934],[-127.54247543952634,57.122562054185586],[-127.54234703356659,57.1224021568675],[-127.54237280208008,57.122220261219105],[-127.54237179666818,57.12204092378378],[-127.54235937259465,57.12186060034793],[-127.54233554655272,57.12167929071345],[-127.54231662486882,57.12149119756294],[-127.54225478767428,57.121315941710044],[-127.54210115040833,57.12117091456016],[-127.54185258936836,57.121056152682],[-127.54156422213217,57.12095419068312],[-127.54129311393297,57.120844177776796],[-127.54104137615394,57.12072721007936],[-127.54078962337826,57.12061024210181],[-127.54054597420807,57.12048869430978],[-127.54031448332977,57.1203613979755],[-127.54010631561646,57.120222616788844],[-127.53991742823872,57.12007464041682],[-127.5397305471663,57.11992551920961],[-127.53953051438471,57.11978327845773],[-127.53931521868026,57.119646822064425],[-127.53908768985374,57.11951499330099],[-127.53887270354238,57.11941216048599],[-127.53858738279907,57.119282133120315],[-127.53831858577057,57.11917769181814],[-127.5380527466666,57.11906985234837],[-127.53780309667647,57.11895285421335],[-127.53756151722524,57.11883127685218],[-127.53732395373055,57.11870628899053],[-127.53708737177601,57.11858016823996],[-127.53684979484926,57.11845517973326],[-127.53660819322239,57.11833248005769],[-127.53633743168656,57.11823029987258],[-127.53608373306925,57.11811558815413],[-127.53584113948378,57.11799401974433],[-127.53561058614564,57.11786334185035],[-127.53535897487043,57.11774860425248],[-127.53508722422038,57.11764755416706],[-127.53480942732772,57.11754993741352],[-127.53452761730475,57.11745573005117],[-127.53424582519453,57.11736152189253],[-127.53396401793795,57.11726731332653],[-127.53360510822093,57.11715719618564],[-127.5334041983682,57.1170698824488],[-127.53316921778875,57.116957187316366],[-127.53286258170597,57.11688792846213],[-127.53256492305508,57.116810717020485],[-127.5322741476055,57.11672445671473],[-127.53198741633733,57.116635906466165],[-127.53170361503861,57.11654283752715],[-127.53143983420804,57.1164338401549],[-127.53115126436995,57.116350914331136],[-127.53078607286606,57.11629018407183],[-127.53062885542234,57.11613173559854],[-127.53048394666116,57.115970900796775],[-127.53037793790048,57.115800642390674],[-127.53029550333652,57.115625623850924],[-127.53023576842634,57.11544921824425],[-127.5302524740439,57.11522035400385],[-127.53018877503402,57.115100041074086],[-127.5300265254798,57.114945013862496],[-127.52984470259202,57.11479133682418],[-127.52967214200447,57.11463643009366],[-127.52951384999997,57.114476872273514],[-127.52930199092076,57.11429552350092],[-127.5293091323129,57.11411160858206],[-127.52933427484841,57.113964473190194],[-127.52936882431553,57.11376790701734],[-127.52923406656306,57.11362824983886],[-127.52906662574458,57.1134721616217],[-127.52885792618011,57.11329189625764],[-127.5287552920286,57.11315410422217],[-127.52861228984936,57.11298876190062],[-127.52844296684214,57.1128371787461],[-127.528186281398,57.11272360872663],[-127.52783747635524,57.112606632949884],[-127.52780815208608,57.1124668611797],[-127.52769843432371,57.112306732984905],[-127.52740195129572,57.11220595748783],[-127.52714873687806,57.11210131230237],[-127.52693046570329,57.11196599301012],[-127.52672832223375,57.11182039645012],[-127.52655792605161,57.111667702761835],[-127.52648186561527,57.11149597085081],[-127.52644159399091,57.11131485299745],[-127.52637464470438,57.11113853084402],[-127.52628824025217,57.11099270101253],[-127.52620378546814,57.11079192334643],[-127.52605585291808,57.110632240988735],[-127.52587519659538,57.11048078752568],[-127.525657919242,57.11034433388837],[-127.5255400691424,57.11023922433699],[-127.52535588247122,57.11002504013296],[-127.52520491048404,57.10986651341807],[-127.52502426112098,57.10971505886189],[-127.52482329486723,57.109572808808196],[-127.52461421702166,57.10943401599066],[-127.52439897135051,57.10929641583183],[-127.52417772440273,57.109163369105204],[-127.52394331018942,57.10903720129142],[-127.52365661107574,57.1089475128466],[-127.52335701121221,57.10887142537391],[-127.52305351983158,57.10880098722653],[-127.52274903287407,57.108731680922226],[-127.52244252571387,57.108663518407056],[-127.52213413160418,57.10859986085767],[-127.52182865118881,57.10853168495672],[-127.52152907471827,57.10845559311864],[-127.52123348115876,57.10837609143885],[-127.52093988228845,57.108294324032144],[-127.52064326659766,57.10821483296631],[-127.52034569975969,57.108137594154634],[-127.52004419668444,57.10806488418757],[-127.5197267292064,57.108006931334096],[-127.51946030549577,57.10790690960348],[-127.51930425456321,57.10774955673902],[-127.5192753736883,57.10756830499563],[-127.5192816702998,57.107387764649125],[-127.51924672584204,57.107209946284215],[-127.51917779543892,57.1070347654129],[-127.51910779677466,57.10685847605784],[-127.51906867801267,57.10667958540926],[-127.51902140231967,57.10650303155162],[-127.5188949473914,57.10633636663361],[-127.51878492973505,57.10616726849424],[-127.51877046732763,57.105984728164486],[-127.51872117259872,57.10580931872412],[-127.518559097233,57.10565651910427],[-127.51835091063857,57.105513223145024],[-127.51814892227743,57.105369854776136],[-127.5179499977179,57.105225329576214],[-127.51773997164462,57.10508765869307],[-127.51749845438714,57.10496380465204],[-127.51724787343804,57.104845660132334],[-127.51707256744213,57.104697496366825],[-127.51693180111042,57.10453435904781],[-127.5166863524833,57.10441503296647],[-127.51645603437196,57.10428656333658],[-127.51628346998469,57.10412939949862],[-127.51607669509637,57.10399505113638],[-127.51566110750178,57.103884425368356],[-127.51554068459473,57.103791667715925],[-127.51531683577645,57.10366984653666],[-127.51505233464367,57.103591091545134],[-127.5148706696502,57.10343851532149],[-127.51461224271125,57.10333054534487],[-127.51432358674069,57.103241981143164],[-127.51402882413299,57.10315572899631],[-127.51374619044964,57.10306261005072],[-127.5134234064066,57.10297331893],[-127.51314662841496,57.10292384620497],[-127.51283173725365,57.10287705660876],[-127.51253245272102,57.102780765439135],[-127.51223595924284,57.10272927754119],[-127.51187828834884,57.10272445502725],[-127.5115701876579,57.10271905730187],[-127.5112403642933,57.10271278953486],[-127.51091631357573,57.10272214678383],[-127.51059815674196,57.1027762712535],[-127.51027472231974,57.10280131245695],[-127.50994526199767,57.102778223613946],[-127.5096370239768,57.102716777603206],[-127.50934141112938,57.1026350085316],[-127.50898697171888,57.10252813829926],[-127.50880117670286,57.10240138267322],[-127.50846672447109,57.10211941873628],[-127.50860294144395,57.10195755443816],[-127.50887258969763,57.10185243414049],[-127.50905687990634,57.101704585206456],[-127.50915341072408,57.10153197027031],[-127.50925622480139,57.10136152440549],[-127.50936838430212,57.10119209126758],[-127.50949718107928,57.101025828281095],[-127.50969305271404,57.100883449000186],[-127.5099276957359,57.10075519251132],[-127.51013194129926,57.100616078371964],[-127.51029508296246,57.100456142519896],[-127.5103015968988,57.10028008511873],[-127.51025835122853,57.10010012010513],[-127.51021514496843,57.09999973884037],[-127.51018327877185,57.099925007107984],[-127.51008966369811,57.099751229613865],[-127.50997557317018,57.099582172665535],[-127.50983181018293,57.09942018444569],[-127.50965440423047,57.09926979441231],[-127.50945548267094,57.09912413670411],[-127.5092555823068,57.098979610951275],[-127.50907207306666,57.098831532631046],[-127.50892534271082,57.098672940606974],[-127.50882869087103,57.098500318491055],[-127.50875973557811,57.0983228924418],[-127.50870415229386,57.09814419085397],[-127.50867938748698,57.09796064929352],[-127.50863112944701,57.09778410482838],[-127.50849284156159,57.09762989848855],[-127.50825635211449,57.09750036626265],[-127.50801478115898,57.097373134177055],[-127.50780070338286,57.09723549582585],[-127.50761816093348,57.0970851628342],[-127.50743964565571,57.09693254128685],[-127.5072754721215,57.0967763911345],[-127.50714203998314,57.09661428117824],[-127.50709672070911,57.09643321886867],[-127.50700384321439,57.09619890274094],[-127.5068968085909,57.096103741697384],[-127.50661380453434,57.09599940386227],[-127.5062912891649,57.09596725920835],[-127.50595693863208,57.09594982207455],[-127.5056747289739,57.09586564927312],[-127.505418092526,57.095748674713604],[-127.50518768842073,57.09561570443858],[-127.50500517826119,57.09543958713252],[-127.50483901279146,57.09531147971322],[-127.50471472127094,57.095144778593195],[-127.50460583886753,57.094975657874244],[-127.50443857945709,57.0948195401936],[-127.50424378682703,57.09467270699158],[-127.50401465338692,57.094545324706424],[-127.50376620299605,57.09442601099829],[-127.50350660784873,57.094312429775776],[-127.50323907787121,57.094206785776834],[-127.5029567554346,57.094119246027944],[-127.50262522134572,57.094093921857414],[-127.50229460807697,57.09409212507578],[-127.50196390720285,57.0940880866723],[-127.50163950552759,57.09406043609768],[-127.50131854997235,57.09401481072287],[-127.50100342321232,57.093960150334],[-127.50065898399193,57.093868836824385],[-127.50050245426868,57.093695777598846],[-127.50027431167634,57.09361993884498],[-127.49997376597494,57.09354156954472],[-127.49968835021448,57.093454058475366],[-127.4994490457646,57.09333014815363],[-127.49922993814039,57.09319479636057],[-127.49903823555324,57.093046799476056],[-127.49880211228121,57.092925093290994],[-127.49852960926974,57.0928239807161],[-127.49824404381842,57.09273198477439],[-127.49795648572723,57.09264225289892],[-127.49766507787798,57.09255928997253],[-127.49736759117702,57.09247975887195],[-127.49706818837167,57.09240361178218],[-127.49676585584436,57.092331981212126],[-127.49646643886487,57.092255832939124],[-127.4961749498713,57.09217062592276],[-127.4958923093908,57.09207410787815],[-127.4956572262328,57.091952384342704],[-127.49547582420759,57.09180314359091],[-127.49531265814917,57.09164472644296],[-127.49512610510479,57.09149554431628],[-127.49494879333042,57.091345135156196],[-127.49483479440825,57.09117606600271],[-127.49472792783041,57.091004673271414],[-127.49458941497181,57.09084261021314],[-127.49441921253789,57.09068875633207],[-127.49423360455826,57.09053732051585],[-127.49403280909301,57.090393904656665],[-127.49381688628068,57.09025962888438],[-127.49355758307041,57.09015162997901],[-127.49310171674892,57.0900088913123],[-127.49300962716846,57.0899516590928],[-127.4927472664811,57.08984481453616],[-127.49244191683906,57.089774329818695],[-127.49212494686921,57.08972415334467],[-127.49179952150774,57.08969536971523],[-127.4914695557044,57.08970923099617],[-127.49114084777692,57.08972868150753],[-127.49082577258082,57.08978048116775],[-127.49052203679028,57.08985793094039],[-127.4902052835295,57.089892934921664],[-127.48987792624432,57.08989443257213],[-127.48954597799774,57.089883652047384],[-127.48921392653659,57.08987063008108],[-127.48888399999421,57.08985870390662],[-127.48855492408063,57.089842283638696],[-127.48822602209874,57.08983034411369],[-127.48789588023507,57.08983971478443],[-127.48757404139607,57.08987701213696],[-127.48725574115682,57.089925477226],[-127.48693852412423,57.089975050071445],[-127.48662241712312,57.09002685126339],[-127.486307376746,57.09007976041621],[-127.48599243871469,57.09013490941042],[-127.48567163619484,57.09017219022291],[-127.48533929602051,57.09017821675982],[-127.48503381226172,57.090237739314496],[-127.48475134204743,57.0903317467185],[-127.48447099504959,57.09042685022669],[-127.48419175738711,57.090524182276575],[-127.48390817229591,57.09061595873663],[-127.48361489651111,57.090697756799926],[-127.48331190344744,57.09076845581579],[-127.48300026071578,57.09082916446747],[-127.48267725493658,57.09086310022245],[-127.48236002425303,57.090912661968595],[-127.48205061659017,57.09097782647817],[-127.48172360877422,57.091015167982874],[-127.4813678131304,57.09100239566224],[-127.48116109774631,57.09089153341558],[-127.48100001619105,57.0907319546337],[-127.48086147583862,57.09056763624308],[-127.48069337787035,57.090413741235785],[-127.48051819237583,57.09026328914634],[-127.48041351668165,57.09009298157958],[-127.48030878221586,57.0899215537413],[-127.48015188093387,57.08976304755629],[-127.47992487824892,57.08963447960072],[-127.47967755856311,57.08951510883449],[-127.47944840789435,57.0893843227031],[-127.47919511288873,57.08927062327621],[-127.47893164176111,57.08916040141681],[-127.47866321778389,57.08905583962052],[-127.4783857977244,57.088959225449955],[-127.47809639544064,57.08887283445166],[-127.47779606146023,57.08879777552459],[-127.47748781467944,57.088731772625664],[-127.47717478678244,57.08867591111372],[-127.47685407760883,57.0886347073223],[-127.47652665131211,57.088607029391774],[-127.47619935466851,57.08858271182855],[-127.47587033816369,57.088567379976354],[-127.47552919207551,57.08855890980967],[-127.47522400551834,57.08851864733298],[-127.47491446666277,57.08844592775747],[-127.47460627067025,57.08838103846316],[-127.47428108484414,57.08835781314636],[-127.4739497131898,57.088361558106506],[-127.4736190646542,57.08835744787733],[-127.47328837321413,57.08835221641318],[-127.4729587918729,57.08834921334045],[-127.47262952779288,57.08835405202886],[-127.47230287009079,57.088373431932474],[-127.47197889437159,57.0884084730962],[-127.47165503032714,57.088446874835306],[-127.47133324683337,57.08848525229561],[-127.47104968898888,57.088578121066675],[-127.47073361496643,57.08863100410444],[-127.47040518950331,57.088658245326734],[-127.47008224008908,57.088639467856446],[-127.469763089044,57.08858477858571],[-127.46945296454682,57.08852326157015],[-127.46915165244594,57.08844931488296],[-127.4688552543788,57.08836858689425],[-127.4685501316736,57.088302527929336],[-127.46822369544297,57.08827369723821],[-127.46790885069267,57.0882234385589],[-127.46755189346933,57.08809855396922],[-127.46737885718746,57.08805678638032],[-127.46729110712789,57.08811157577107],[-127.46724385601604,57.088226437079804],[-127.46685197138726,57.0885390867711],[-127.46675945533545,57.088712742727935],[-127.46667494057009,57.08887958338013],[-127.46645504632251,57.08893585799297],[-127.46616944907096,57.089002958691445],[-127.46608887288899,57.08908344688421],[-127.46565768175883,57.089313589588926],[-127.46542287537015,57.08943952458967],[-127.4652018219357,57.08957427172548],[-127.46488829556877,57.089694364679175],[-127.46467393348944,57.08978756317591],[-127.46444646754281,57.089916776613094],[-127.46422120949116,57.090049327507096],[-127.4639758137814,57.09016865344674],[-127.46372094597415,57.090283601682906],[-127.46346605046878,57.09039742884353],[-127.46320051417732,57.090503528691876],[-127.46292011258316,57.09059858589732],[-127.462632218523,57.090687001217184],[-127.46231490391189,57.09076229513785],[-127.46198641161027,57.09078839480489],[-127.46166674893563,57.090828966149644],[-127.46137333891606,57.09090847341773],[-127.46109086502211,57.09100354985142],[-127.46080262280331,57.091082997934414],[-127.46050967771731,57.091174827711306],[-127.46020883100807,57.09124881118447],[-127.45990359793042,57.09131611776301],[-127.45959299703738,57.09137787927862],[-127.45931997158291,57.0914504284961],[-127.45897718497082,57.09150806506674],[-127.4586762901474,57.09158092461948],[-127.45840012684744,57.091679287218575],[-127.45816317479947,57.09180411204767],[-127.4579336101365,57.091933337398046],[-127.45770616785416,57.092063659503104],[-127.45747660010254,57.092192884073505],[-127.4572428750227,57.09232103379573],[-127.45703954877456,57.09246117324784],[-127.45685518774592,57.09261118850578],[-127.45666969956694,57.092758974328426],[-127.45644537972663,57.09289038022513],[-127.45621688600146,57.09302071144326],[-127.45584313412766,57.09321543271648],[-127.45570580706003,57.09321696519944],[-127.45550933032533,57.09307456392928],[-127.45540241646603,57.09292443792713],[-127.45540397290186,57.09272042037993],[-127.45531079306511,57.09255108617152],[-127.45514985440634,57.09239259569816],[-127.45495634569468,57.09224679800374],[-127.4546998879432,57.09212972402477],[-127.45453409666028,57.09197913315595],[-127.4544130384562,57.091810109307595],[-127.45423283806845,57.09166079964892],[-127.4540291395048,57.09151847696843],[-127.45382444417878,57.09137728598873],[-127.45362587658423,57.091233784678494],[-127.45342118425755,57.0910925930951],[-127.45319624324065,57.09096171469947],[-127.45295808610597,57.09083658754174],[-127.45273110921451,57.09070685195665],[-127.45250613043605,57.090574852002256],[-127.45227611004506,57.090446270451125],[-127.45203593666983,57.090322285050085],[-127.45181507558264,57.09019023815575],[-127.45146787558018,57.09007640993016],[-127.45124759432578,57.0900138500254],[-127.45101856330442,57.089884134509724],[-127.45081200879521,57.089747443376176],[-127.4505315226228,57.089649683882286],[-127.45023221826479,57.08957342966841],[-127.44992405493868,57.089508482014466],[-127.44961197459348,57.0894491815554],[-127.44930085128853,57.08938762797885],[-127.4489976332774,57.089317018856626],[-127.44870712701096,57.08922721299025],[-127.44841089267011,57.08914979972642],[-127.44809174141925,57.08912195871272],[-127.44775738198454,57.08912903283496],[-127.44742668744655,57.08912373581149],[-127.44709772003128,57.0891094517946],[-127.44676781316053,57.08909741911966],[-127.44643711903122,57.08909211958783],[-127.44611039967828,57.089110313508755],[-127.44578522672776,57.08914193995629],[-127.4454589869696,57.089172456535955],[-127.44513251940018,57.08919737044925],[-127.44480611007066,57.089223403770035],[-127.44448191706321,57.08925389522117],[-127.44415184126578,57.08923737430127],[-127.4436997191896,57.08921659903562],[-127.44349235977221,57.08925027835813],[-127.4431482219419,57.089272020208995],[-127.44290348593597,57.08930050773803],[-127.4426160463764,57.089429224808136],[-127.44232058494912,57.089509832386845],[-127.44199804456433,57.08958401340234],[-127.44175043392927,57.08970107949941],[-127.44147910013201,57.08979150632344],[-127.44120822751162,57.08989425708423],[-127.44094160910367,57.090000322899535],[-127.44067498922337,57.090106388177986],[-127.44040621904199,57.09021023490151],[-127.44012042490438,57.09030081853357],[-127.43980746710062,57.09035583341957],[-127.43949365222548,57.090415340497145],[-127.43923536867345,57.09052355254147],[-127.43900051025874,57.090650560497046],[-127.43877474039957,57.090771863415256],[-127.43871016887468,57.090950794431805],[-127.4386847277259,57.09107100846097],[-127.43835990970163,57.09111270013917],[-127.43792512780412,57.09103118627828],[-127.43764871084738,57.09093111265462],[-127.43749830177626,57.09077584804601],[-127.4373751736523,57.09060459047376],[-127.43720816466033,57.09044726676337],[-127.43702778602609,57.09029121103078],[-127.43681515205213,57.090156806941266],[-127.43654825360339,57.090062230663705],[-127.436235148763,57.09000290964284],[-127.43590892528385,57.08995157839416],[-127.43559588072848,57.089893376072325],[-127.43527998291034,57.089841929634375],[-127.43495541408437,57.089807390896055],[-127.43463188648713,57.08977283990586],[-127.43431117200655,57.08973041109268],[-127.43399238099222,57.08968459774277],[-127.43367360725641,57.08963878343394],[-127.43335189612469,57.08959748411505],[-127.43303022748717,57.08955730441505],[-127.43272407455464,57.089490052629706],[-127.43241222984165,57.089436313083425],[-127.43208572759212,57.0894051511227],[-127.4317649772285,57.08936159565021],[-127.43146675301101,57.089285286980314],[-127.43140011852623,57.089243425174175],[-127.43121159735274,57.089200659012945],[-127.4305754266941,57.08906304549727],[-127.43026730070811,57.08899805143774],[-127.4299572361715,57.088936440522765],[-127.42965315829348,57.08886915892616],[-127.42939292095434,57.08875880322355],[-127.42914375748394,57.088640479619464],[-127.42890267113968,57.08851758361238],[-127.42866763026412,57.088390137500966],[-127.42842654701415,57.08826724063622],[-127.42816343679641,57.088162518411025],[-127.42786810955997,57.088080565704644],[-127.42757680453748,57.08799520572513],[-127.42732256493726,57.087879176113724],[-127.42706242425248,57.08777105666384],[-127.4267522499076,57.08770607695181],[-127.4264561131615,57.08762973433483],[-127.42619993951236,57.087517086379926],[-127.42595680498655,57.087394207603744],[-127.42573085545482,57.08726105276567],[-127.42543593106014,57.087189178128924],[-127.4251178797448,57.08713436851394],[-127.42481856232703,57.08705581531564],[-127.42453200964346,57.0869591881913],[-127.42424157841704,57.08686932800281],[-127.42393798378868,57.08681435771297],[-127.42361730337542,57.08679992435354],[-127.42328717193298,57.086809131501994],[-127.42295332614772,57.08682958698311],[-127.42261935551944,57.08684668037382],[-127.4222890574912,57.086851403347964],[-127.42195867642859,57.08685388466127],[-127.42162821238941,57.08685412431272],[-127.42129878891606,57.08685435178838],[-127.42096836631649,57.08685571018094],[-127.4206390920611,57.08686041782123],[-127.42030557584762,57.08688982982948],[-127.42000014694688,57.08692453952217],[-127.41965741875026,57.08692827028284],[-127.41933215971483,57.08695758991662],[-127.41900694157357,57.08698802915352],[-127.41868059957945,57.08701623807107],[-127.41835419087981,57.087042205166],[-127.41802557649919,57.08706483282877],[-127.4176965647232,57.08707625534562],[-127.4173554034761,57.08706651265124],[-127.41713712850986,57.08702853327372],[-127.41703046209241,57.086824574206425],[-127.4171814209384,57.08666152983364],[-127.41709242949607,57.08648876298926],[-127.41685758900827,57.08636577762137],[-127.41660026261779,57.08624864038892],[-127.41639379231118,57.08611077490226],[-127.41623816959954,57.08595106063697],[-127.41607135000966,57.08579595123037],[-127.41584961456397,57.08566385501543],[-127.41559542581378,57.085547802745694],[-127.41533020557003,57.085440836604874],[-127.41505999879413,57.08533840749417],[-127.4147907514555,57.085233725717785],[-127.41452248833528,57.085127911874466],[-127.41425220341401,57.08502324028716],[-127.41399405965142,57.084911711375746],[-127.41376530856509,57.08478529219467],[-127.41359537428679,57.084629092817],[-127.41348480063839,57.084458799624045],[-127.41335697662636,57.084296539322985],[-127.41314537549991,57.08415872472907],[-127.41290528532828,57.084032427045976],[-127.41264917540148,57.08391975277493],[-127.41238799646212,57.083809374638335],[-127.4121217731777,57.083702413197],[-127.41184848224401,57.08360001118016],[-127.41157024575438,57.08350326643306],[-127.41128408218441,57.08341557375976],[-127.41099189121424,57.08333242912006],[-127.41069475439897,57.083254941631274],[-127.4103946372831,57.08318084828604],[-127.41009249802316,57.083107896987656],[-127.40978837772128,57.083037208135],[-127.40948524138267,57.08296538709771],[-127.40918410491031,57.08289130204878],[-127.4088849764063,57.08281607377251],[-127.40858878961626,57.082736329627444],[-127.40829558569995,57.08265319004752],[-127.4080023665374,57.08257004999179],[-127.40770816575966,57.08248804074741],[-127.40741202498856,57.082409414362324],[-127.40711196184701,57.08233643392261],[-127.40680397054415,57.08227250517741],[-127.40649107369195,57.082215353758144],[-127.40617523698904,57.08216271672143],[-127.40586034307847,57.08210782705713],[-127.4055483909149,57.08204842151848],[-127.40524432834411,57.081978842538874],[-127.4049402668746,57.081909262853955],[-127.4046189791,57.08187685622354],[-127.4043207850006,57.081798245088315],[-127.40401574365927,57.081729794696585],[-127.40372564559274,57.081646611657106],[-127.40346136203277,57.08153512883237],[-127.40316242263536,57.08160559676481],[-127.40283636021319,57.08164048842049],[-127.40256309105908,57.081735337630604],[-127.40230394244551,57.08184908895293],[-127.40203727250781,57.081955074630585],[-127.4017706419816,57.082062180185865],[-127.4015039690938,57.08216816478946],[-127.40123410815988,57.08227194138426],[-127.40096207531083,57.08237237818086],[-127.40068260312667,57.08246729002824],[-127.40036977523609,57.08252557123764],[-127.40007321353906,57.08260497329955],[-127.4000000790053,57.082638263160845],[-127.39982135052992,57.08272088311466],[-127.39960421030894,57.08285435348215],[-127.39939344941948,57.08299335930717],[-127.39918583272484,57.083133451912005],[-127.3989792549956,57.08327353303966],[-127.39876953002886,57.08341252673772],[-127.39855980354466,57.0835515201124],[-127.39835003475832,57.08368939274646],[-127.39814347525555,57.08383059320105],[-127.39795900728504,57.08398276508516],[-127.39772344093953,57.08409289184855],[-127.3973912836596,57.084074033973216],[-127.39706767517941,57.08403490830428],[-127.39674406735834,57.083995781833615],[-127.3964293348165,57.0839453510011],[-127.39616014801273,57.0838406308785],[-127.39586314280832,57.08376647100775],[-127.39555115193531,57.08370592107098],[-127.39524320958887,57.08364308538385],[-127.394921549336,57.08360057106303],[-127.39459724878701,57.08357041357626],[-127.39426499237484,57.08357732849444],[-127.39394278113886,57.08354826790621],[-127.39362799116242,57.08349558931725],[-127.39331402283153,57.083437296938264],[-127.3929991368542,57.083382376175145],[-127.3926786029884,57.08334208605547],[-127.3923485838295,57.083325434318695],[-127.39201910926774,57.08332334701693],[-127.39168867543893,57.08332351082361],[-127.39135894093147,57.083314699516336],[-127.39102992249153,57.08329691292441],[-127.39069983982857,57.08327801600218],[-127.39037090311099,57.08326246858707],[-127.39004237207908,57.0832581245375],[-127.38971655408837,57.0832716843763],[-127.38939158685076,57.08330877221567],[-127.38907225802572,57.083359249404005],[-127.38876156724685,57.08341972148609],[-127.38845870028443,57.08349692229889],[-127.38815677510533,57.08357187067328],[-127.38784583829637,57.083625618061276],[-127.38752350954981,57.08365034376612],[-127.38719443705781,57.083659448483196],[-127.38686193584738,57.08365962202055],[-127.38652943463394,57.0836597947103],[-127.38619936176188,57.083670028399446],[-127.38587063605848,57.0836892137418],[-127.38554423348462,57.083715098676336],[-127.38521905646033,57.08374657402591],[-127.38489614534403,57.08378362875163],[-127.38457660475079,57.08382849284337],[-127.3842592655331,57.08387669533247],[-127.38393976378678,57.08392267828903],[-127.38361602774636,57.083965342825685],[-127.38329441965489,57.084010225683635],[-127.38298036749606,57.084063994422195],[-127.38267820172162,57.08413220743641],[-127.38237892956965,57.084223926922874],[-127.38211978504326,57.084339879187375],[-127.38195040433905,57.08448290110535],[-127.38187196605494,57.084656343105024],[-127.38183423713777,57.08484168312915],[-127.38179530611139,57.08502255249699],[-127.38176042322763,57.08520113728569],[-127.38173173371925,57.085379656473734],[-127.38170721339783,57.085559252360284],[-127.38168269284719,57.085738848265365],[-127.38166538989331,57.085918367730216],[-127.38165742605996,57.08609890913686],[-127.38163703416193,57.08627846136253],[-127.38157622895851,57.08645395827434],[-127.3814645896391,57.08662326847623],[-127.38134886034238,57.08679374275919],[-127.38129208521288,57.086966955197376],[-127.38131921865829,57.08714712501773],[-127.38132570564362,57.087327513508285],[-127.38130841682342,57.0875070329564],[-127.38128491725178,57.08768661819384],[-127.3812521345671,57.08786630175081],[-127.38120688273628,57.08804387565051],[-127.38112843382424,57.08821731764799],[-127.38102095714808,57.088387704387785],[-127.38089160662672,57.08855271835279],[-127.38075600395975,57.08871667752563],[-127.38062565082906,57.088882822708456],[-127.38049938582999,57.08904780364981],[-127.38038047551142,57.089216069207765],[-127.3802740168556,57.08938644461724],[-127.38013862097924,57.08964231099852],[-127.38013899438971,57.08973870046754],[-127.38012811841301,57.089924877274626],[-127.38011407283827,57.0901088459312],[-127.38005301306579,57.09027762004827],[-127.37984464244101,57.09039975574414],[-127.37953065958105,57.09048601985872],[-127.37925001102663,57.09057977673722],[-127.37896621533712,57.09067244541853],[-127.3786823780598,57.09076399305965],[-127.37839960381191,57.09085664969636],[-127.37812348154924,57.090961564832064],[-127.37783725370001,57.09104416903223],[-127.37750472871222,57.09104543914774],[-127.37719286836914,57.09098932670384],[-127.37690458234512,57.09089933908449],[-127.37661832237474,57.090808208613666],[-127.37633603287541,57.09071255222946],[-127.37603993308389,57.09063497458853],[-127.37572414917443,57.09058450436194],[-127.37539852332894,57.09054758738875],[-127.37507155529619,57.09053085910962],[-127.37474180284575,57.090523126180464],[-127.37441365076847,57.09050192532596],[-127.37408552261883,57.09048184425062],[-127.37375653094769,57.0904662548574],[-127.37342761967341,57.09045290549556],[-127.37309784468663,57.09044404780732],[-127.37276726944478,57.09044192282102],[-127.37243390900196,57.09044879311659],[-127.37211395469305,57.09048354284256],[-127.3717947035992,57.090538459716484],[-127.37148635249264,57.09060895312724],[-127.3712108372948,57.09070263853302],[-127.37098627727659,57.0908350176392],[-127.37078402843228,57.09098509553497],[-127.37055724048304,57.09111301390086],[-127.370273980903,57.09119220759178],[-127.36995127253631,57.09123706854293],[-127.36961894351076,57.09127306288549],[-127.3692982586472,57.09131678011185],[-127.36897436416245,57.0913571676716],[-127.36865157303896,57.09139978454808],[-127.36833736013915,57.09145127745163],[-127.36804050371099,57.091526125454344],[-127.36777172687673,57.09163542475706],[-127.36749098481447,57.09172803615638],[-127.36717538451855,57.09176945311027],[-127.36684233054942,57.09178527259203],[-127.36651007783841,57.09179435772004],[-127.36617738656682,57.091791117230756],[-127.36584577591618,57.09178898543039],[-127.36552222081342,57.09181030633423],[-127.3651952922047,57.091852957903264],[-127.36487511508646,57.09191122991943],[-127.36458364127763,57.09199273876154],[-127.3643293059063,57.092101879807046],[-127.36409423008985,57.09222987342522],[-127.36388031947365,57.09237221639677],[-127.36369044105616,57.092522153754054],[-127.3635410584614,57.092678392673676],[-127.36347312364924,57.09285955975793],[-127.36340196312769,57.0930373979825],[-127.36322832113626,57.09317931903647],[-127.36294681093004,57.09327977451459],[-127.36268745062492,57.09339344822707],[-127.36250073126573,57.09354559256699],[-127.3623001588463,57.093685551936325],[-127.36200327338689,57.09376038632281],[-127.3616860853617,57.09381637746687],[-127.361373082718,57.09387344500804],[-127.3610568144965,57.093926062455246],[-127.36073716169844,57.09397086847287],[-127.36041538025401,57.09401345419619],[-127.36010113493346,57.09406492736061],[-127.3597989523591,57.09413644934851],[-127.35950333730467,57.09421798984835],[-127.35920333643317,57.09429285025823],[-127.3588957581275,57.094357701239815],[-127.3585859948091,57.09441921169014],[-127.35827520622436,57.094480732072036],[-127.3579676248471,57.09454558087445],[-127.35766226594507,57.09461488921864],[-127.35736658655095,57.09469530463885],[-127.35709537533675,57.094795640171135],[-127.35683810867793,57.094910401165635],[-127.35655946057129,57.0950052086611],[-127.35625517585436,57.09507562335206],[-127.35594221747913,57.095134918967204],[-127.35561204188457,57.09517421741489],[-127.35531271090323,57.09523897415798],[-127.35507630781312,57.095360239990015],[-127.354869701131,57.09550585466939],[-127.354684887099,57.095654605288274],[-127.35451055542124,57.095807730219946],[-127.35429027537444,57.09594676083537],[-127.35419591525014,57.09611250539356],[-127.35416712898102,57.09629214035305],[-127.35415189288932,57.096474997239696],[-127.3541075299547,57.096652552199025],[-127.35400504155591,57.09682174359439],[-127.35385686418599,57.09698468392969],[-127.35368777345857,57.09713999513118],[-127.35349142203809,57.0972843804058],[-127.35325096563815,57.097407926672425],[-127.35299679906244,57.09752376870645],[-127.35272880393408,57.09762854509786],[-127.35242976464224,57.09770225888319],[-127.3518723719373,57.09780218704407],[-127.35158206830907,57.09771328487362],[-127.35135071175924,57.09759687111139],[-127.3512300112313,57.097425510127785],[-127.35104001738367,57.09728064620562],[-127.35073001326981,57.09721884665609],[-127.35026488247361,57.097151926829774],[-127.35010308665606,57.09710428378369],[-127.34980000691418,57.09703344360513],[-127.34951280344247,57.09694450491659],[-127.3492356289042,57.096846495100635],[-127.34896249093572,57.096746201281654],[-127.3486863435676,57.09664817972188],[-127.34840010772722,57.096556986963485],[-127.34811896579451,57.09646349926281],[-127.34806611870535,57.09640015690902],[-127.34774933917456,57.096350749790076],[-127.34745087864282,57.096117333474325],[-127.34717332467969,57.09597897281511],[-127.34699548933169,57.09585639481069],[-127.34669118788288,57.09577995600757],[-127.34638120287957,57.095718146193526],[-127.34606525908983,57.09566312222517],[-127.3457393989291,57.09567881321891],[-127.34541271418597,57.095670974092194],[-127.34513754594629,57.095570693478464],[-127.34484540582622,57.09548739997248],[-127.34461365157908,57.095358649579225],[-127.34431606404338,57.09529670717231],[-127.34410972623776,57.09515648556035],[-127.34384500824616,57.09505945720614],[-127.34353200611554,57.09499991353459],[-127.34322100820135,57.094938106796185],[-127.34293690235924,57.09484800134756],[-127.34271119694574,57.09471470208916],[-127.34243626108105,57.09462113867715],[-127.34212916322427,57.094552564194686],[-127.34185503584816,57.09445226620242],[-127.34154414596318,57.09439381699108],[-127.34116793471343,57.09435733465969],[-127.34094750297253,57.09425648279406],[-127.34072688409809,57.094120886293275],[-127.34053071194752,57.09397495064162],[-127.3403193971219,57.09383925790637],[-127.34002521557969,57.09375597492878],[-127.33979459036804,57.09362944650299],[-127.33958113685587,57.0934915329276],[-127.33937785367215,57.093349031238404],[-127.33922252196665,57.093189224353964],[-127.33900814938433,57.09305468189806],[-127.33873002801866,57.09295778116831],[-127.33842985692559,57.092880160434134],[-127.33812094937569,57.092818320448146],[-127.33779245969474,57.09281720609827],[-127.3374679927151,57.09278354522471],[-127.33716236177,57.092756415541174],[-127.33689158340542,57.09266279824586],[-127.33666675758619,57.09252387586107],[-127.33640396904318,57.09242232983378],[-127.33609327631487,57.092368349324005],[-127.3357645677789,57.09233136519371],[-127.33544473192623,57.09228196014893],[-127.33514667666317,57.09220543120357],[-127.33485251885004,57.092122136661544],[-127.33454354529108,57.092058047352616],[-127.33422379113077,57.0920108802114],[-127.33389862118376,57.091986184504535],[-127.33356795708211,57.0919817193027],[-127.33323668015944,57.09198958878154],[-127.33291009390527,57.092013101268115],[-127.33258602218675,57.092050037341544],[-127.33225663161812,57.09205228084928],[-127.33192343591422,57.092034387237696],[-127.33158798133879,57.092010911631604],[-127.33125577168414,57.09199188541641],[-127.33093039495671,57.091990722096966],[-127.33061629692548,57.09201746393813],[-127.33031810558846,57.09208551390774],[-127.3300311138927,57.09217922833518],[-127.32974535550268,57.092278533754715],[-127.32945083155343,57.0923633569436],[-127.32914972362137,57.09243703813688],[-127.32884651078805,57.09250961922808],[-127.32854219506136,57.09257996915772],[-127.32823461748337,57.09264586821917],[-127.3279247801594,57.092706185348696],[-127.32761057948952,57.09275982109818],[-127.32728875497907,57.09280232524931],[-127.32696345339804,57.09283365556714],[-127.32663581536897,57.092857162948604],[-127.32630767393009,57.09286610370164],[-127.32597613363122,57.09286611145558],[-127.32566756253479,57.09287373083766],[-127.3253168217069,57.09288626126407],[-127.32498800336195,57.0929052931261],[-127.32465882036676,57.09291424030312],[-127.32431809478113,57.09291769962606],[-127.32401256927793,57.0928636380058],[-127.32371964598643,57.09275564752778],[-127.32353091907326,57.09261409500001],[-127.32348903708188,57.092447514914504],[-127.32351474238936,57.092264557407724],[-127.32355269927957,57.092076992261184],[-127.32355572820727,57.09189538569833],[-127.32353303084479,57.0917162818517],[-127.32350104976884,57.09153727221551],[-127.32346905247162,57.09135826276226],[-127.32343913690265,57.09117923220777],[-127.32339685429262,57.091001447973454],[-127.32333600456776,57.09082385210793],[-127.32328634958768,57.090641659332256],[-127.32324277389172,57.0904560423875],[-127.32319811932675,57.09026931556406],[-127.3231453381006,57.09008603369624],[-127.32307621509935,57.08990852177126],[-127.32298362556493,57.08973909369621],[-127.3228593876276,57.08958007406711],[-127.32269640427809,57.08943601810129],[-127.32249970825283,57.089302391283226],[-127.32227541701182,57.089176889776276],[-127.32202966999319,57.08905833037875],[-127.32176557270905,57.088946681500445],[-127.32148824033483,57.08884077037202],[-127.32120174185597,57.088738314024],[-127.32091020681972,57.08863927057733],[-127.32061981298108,57.088543577452135],[-127.32033358863471,57.08844896233248],[-127.32005454559587,57.088353153096584],[-127.31977237657667,57.088256254078374],[-127.31948914637526,57.088158244371535],[-127.31920383635575,57.08806025510558],[-127.31891551588514,57.08796453734475],[-127.3186242618624,57.087873331958264],[-127.31832901706348,57.08778664961004],[-127.31803091544401,57.087706720479886],[-127.31773003373965,57.08763578543688],[-127.31742429051646,57.087573865480984],[-127.3171137624216,57.08752320146673],[-127.31679958315593,57.087486023576844],[-127.31648148895812,57.087455609446465],[-127.31615955109639,57.087433079158444],[-127.31583466181301,57.087415061183606],[-127.31550789998498,57.08740266545021],[-127.31517818649306,57.08739478199078],[-127.31484657835522,57.0873914001268],[-127.31451296573316,57.087390279285316],[-127.31417952298317,57.087393639207306],[-127.3138451162076,57.08739924965046],[-127.3135097070331,57.08740599016137],[-127.31317439086747,57.08741497053579],[-127.31284013693825,57.08742506018722],[-127.31250690693233,57.087435138677414],[-127.31217575798543,57.08744519537964],[-127.31184559469907,57.08745412049531],[-127.31151543125925,57.0874630447753],[-127.3111833559336,57.08747647076158],[-127.31084944507674,57.08749663933327],[-127.31051778972545,57.087522388540854],[-127.31019056911543,57.087557059003935],[-127.30987087186043,57.0876006197383],[-127.30956081720997,57.087654170352316],[-127.30926789060243,57.08772548159518],[-127.30900823463523,57.08783344570911],[-127.30876477988524,57.08796254253189],[-127.30851810360271,57.08808830872039],[-127.30824899075674,57.08819188284898],[-127.30794883920449,57.0882632635543],[-127.3076316560194,57.08832024349954],[-127.30730382135957,57.08836724194132],[-127.30697382835922,57.08841201951731],[-127.3066480187699,57.08845787517707],[-127.30633183459008,57.08851372109675],[-127.30603472777563,57.088583946031086],[-127.30576204224923,57.08867410076876],[-127.3055170139708,57.088787515569514],[-127.3052943036599,57.08891976069869],[-127.30508756451655,57.08906641645232],[-127.30489249305434,57.08922192180694],[-127.30470063968583,57.08938075717666],[-127.30450873015835,57.089538471997265],[-127.30431037471239,57.08968840517341],[-127.3040991936408,57.089826137129435],[-127.30386989750434,57.08994723734642],[-127.3036170878482,57.090045034689325],[-127.30333870008812,57.090119549647056],[-127.3030442628153,57.09017741186022],[-127.3027348980051,57.09022197250886],[-127.30241484469637,57.09025543082666],[-127.302085148781,57.090278897127426],[-127.30174802726945,57.090296832538876],[-127.30140762656778,57.090309195638234],[-127.30106409863726,57.09032046820735],[-127.30072155674024,57.09033060920762],[-127.30038119334314,57.09034409008121],[-127.30004511116323,57.0903620107188],[-127.29971651289631,57.090387701733036],[-127.29939109558401,57.090415601890435],[-127.29906469151226,57.0904446318887],[-127.2987393111307,57.09047365087422],[-127.29841396813454,57.090503789501554],[-127.29808758392342,57.0905339376743],[-127.29776223990532,57.09056407467788],[-127.29743685752815,57.09059309041745],[-127.29711041263243,57.090620995076776],[-127.29678391291371,57.09064777863047],[-127.29645735361873,57.090672320296264],[-127.29613073957672,57.09069574085553],[-127.29580302534352,57.09071692986363],[-127.2954752351658,57.09073587714098],[-127.29514541754341,57.09075596455023],[-127.29481357244376,57.090777192076],[-127.29448074054656,57.09079954937567],[-127.2941468297958,57.090820795696715],[-127.2938128431895,57.090839800254585],[-127.29347980498115,57.09085655289299],[-127.29314663210677,57.09086882269885],[-127.2928163972705,57.0908765792202],[-127.29248803868995,57.09087871217211],[-127.29216151881472,57.09087410111373],[-127.2918388650413,57.090861605154934],[-127.29152003988841,57.09084010386959],[-127.29120692014682,57.09080397457135],[-127.29090034206091,57.090747604890716],[-127.29059948666074,57.0906766071224],[-127.29030344759299,57.0905954735866],[-127.29000921124603,57.0905064757766],[-127.28971588757736,57.09041410581693],[-127.28942258183841,57.090321735040554],[-127.28889600187132,57.09017226489514],[-127.2886402151467,57.09005934681607],[-127.28838539544917,57.08994417705528],[-127.28813156387241,57.08982787623764],[-127.28787979868362,57.08971155454991],[-127.2876279974581,57.089594111930744],[-127.28737619777223,57.089476668835424],[-127.28712439962601,57.08935922526413],[-127.28687159988606,57.08924291193862],[-127.2866188181955,57.08912659797],[-127.28636403175125,57.089012544956745],[-127.28610723604655,57.088899632105615],[-127.28584839803946,57.08878785973014],[-127.28558758826254,57.08867834794742],[-127.28532374951361,57.08857110716196],[-127.28505691925665,57.088467257810066],[-127.28478608983237,57.0883668097971],[-127.28451122816382,57.08826976342278],[-127.28422734690342,57.088180651058124],[-127.28393643579977,57.0880972114089],[-127.28363950237379,57.088019434511324],[-127.28333860689068,57.08794617922889],[-127.28303364137926,57.08787520494803],[-127.28272769029488,57.08780536048422],[-127.28242071620816,57.087735525374946],[-127.28211476735058,57.087665679480686],[-127.2818117962877,57.08759244115259],[-127.2815118569816,57.087516930704815],[-127.28121589883021,57.08743689718894],[-127.2809229725356,57.08735459160047],[-127.28062999362331,57.08727116506581],[-127.28033905987404,57.087186596994066],[-127.28004811088796,57.08710202844062],[-127.27975816646752,57.08701632857821],[-127.27946818601981,57.086929507621186],[-127.27917824419512,57.08684380648038],[-127.27888826636028,57.086756984245106],[-127.27859832713139,57.08667128182607],[-127.27830740239756,57.08658670925986],[-127.27801543834403,57.08650214624581],[-127.27772351284536,57.086418703039094],[-127.2774295612006,57.08633639986028],[-127.27713568531976,57.08625633693516],[-127.27683874264841,57.08617742420599],[-127.27654088882828,57.08610188219482],[-127.27623998467536,57.086027490185266],[-127.2759330945057,57.085959880972396],[-127.2756191734302,57.08589794391086],[-127.27530024879522,57.085840538306584],[-127.27497729086922,57.08578653381759],[-127.2746533841463,57.0857347794505],[-127.27432947829608,57.08568302428107],[-127.27400557331858,57.085631268309356],[-127.27368576133567,57.08557835075646],[-127.2733689068763,57.08552092028205],[-127.27305811934119,57.08546006737911],[-127.27275545932191,57.0853946511661],[-127.27246078250607,57.08532131065408],[-127.27217724784069,57.08524113590677],[-127.27190580525887,57.08515187609951],[-127.27165147628598,57.08504899908136],[-127.2714223546123,57.08492794279],[-127.27121546292469,57.08479209883402],[-127.27102371520161,57.08464601964584],[-127.27084201181711,57.08449087580116],[-127.27066741645571,57.08433230003597],[-127.2704937724457,57.08417147316869],[-127.27031505086524,57.084012937189996],[-127.27012723379028,57.083860093655495],[-127.26992628677195,57.08371634425512],[-127.26970510331279,57.0835851205564],[-127.26946662383,57.08346191056919],[-127.26921285533895,57.08334445303432],[-127.26894692338746,57.08323383826719],[-127.26866886494078,57.08313118664732],[-127.26838388643132,57.08303756827709],[-127.26809096767086,57.08295411384204],[-127.26779322999425,57.082880792943904],[-127.2674836240532,57.0828232781275],[-127.26716108857408,57.082780458799604],[-127.26683161543689,57.082746672586445],[-127.26649712115996,57.08271741756407],[-127.26616366789285,57.08268815158331],[-127.2658362239885,57.08265322235991],[-127.26551774691562,57.082608117987704],[-127.26521322571377,57.082548306881655],[-127.26492667507722,57.082469266951584],[-127.26465809917842,57.082372119095595],[-127.26440351299772,57.08226026450507],[-127.26415990585697,57.08213709488945],[-127.26392329641827,57.08200713215041],[-127.26368869582681,57.081874907919534],[-127.26345305637459,57.08174269335898],[-127.26321343705366,57.08161500019968],[-127.26296379188932,57.08149637021662],[-127.26270315398487,57.0813890543352],[-127.26242545693688,57.08129647364376],[-127.26213581650181,57.0812174577083],[-127.26183611284588,57.08114638419417],[-127.26152841024019,57.081083233061776],[-127.26121573982314,57.08102573331596],[-127.26089801141683,57.08097164416807],[-127.26057825627655,57.080918694658166],[-127.26025853877235,57.080866864822475],[-127.25993980932151,57.0808139038567],[-127.25962507908906,57.08075642025261],[-127.25931427841101,57.08069329390252],[-127.25901049202594,57.080623374246294],[-127.2587146705671,57.08054441053911],[-127.25842474982524,57.080456422756434],[-127.2581388490626,57.080365033135884],[-127.25785287629179,57.08027140198218],[-127.2575669782661,57.08018001112016],[-127.25727713623623,57.08009426172191],[-127.25698239950225,57.080016404541674],[-127.25667982987419,57.07995207190323],[-127.25636255641538,57.07991141722396],[-127.25603359357737,57.07989216973816],[-127.25569962496213,57.07987745286126],[-127.25536856179725,57.079857103118734],[-127.2550472350409,57.079818725898505],[-127.25473169941174,57.079767963280084],[-127.25441804603074,57.07971157776019],[-127.25410530775443,57.079651820271636],[-127.25379262353053,57.07959318233373],[-127.25347800564758,57.07953904547633],[-127.25316048316162,57.079490539822146],[-127.2528391982134,57.07945327762903],[-127.25251212274252,57.0794283991517],[-127.2521831294512,57.079408021504],[-127.25185510390689,57.079385392125225],[-127.25153089887128,57.079353758800885],[-127.25121054759173,57.07931312124332],[-127.2508910749667,57.07926799124951],[-127.2505735215157,57.07921835884946],[-127.25025691985687,57.079166474947],[-127.24994232696417,57.079112329419175],[-127.24962771844372,57.079058183292744],[-127.24931511875221,57.079001775560705],[-127.24900147957494,57.078945377046026],[-127.24868886520619,57.0788889679757],[-127.24837623186322,57.07883143754255],[-127.24806358294217,57.078773906520325],[-127.24775095147156,57.07871637459309],[-127.24743930844025,57.078657711667],[-127.24712666233556,57.07860017840604],[-127.24681399732074,57.07854152378219],[-127.24650239348944,57.078483979082606],[-127.24618975020121,57.078426443582956],[-127.24587708803028,57.07836778672029],[-127.245565487011,57.078310239789516],[-127.24525281022456,57.07825158159294],[-127.24494121108259,57.078194033175414],[-127.24462855270873,57.07813537332944],[-127.24431691915676,57.078076702967],[-127.2440053228346,57.07801915232066],[-127.24369265079858,57.07796049039604],[-127.24338003249092,57.077902948025155],[-127.24306743485634,57.07784652552312],[-127.24275481841217,57.07778898165837],[-127.2424411987642,57.07773256741712],[-127.24212761626019,57.077677272882504],[-127.24181303050298,57.077623107961905],[-127.24149846214642,57.077568942127186],[-127.24118391435837,57.077515896151716],[-127.240868343587,57.07746285916214],[-127.24055377787398,57.077408691055226],[-127.24023919653416,57.077354522348635],[-127.2399235560751,57.077299242161544],[-127.23960899303334,57.07724507178218],[-127.2392944143649,57.07719090080316],[-127.2389788488706,57.077137859253945],[-127.2386632842475,57.077084816943184],[-127.23834673276684,57.077032904052565],[-127.23803023783391,57.07698323147054],[-127.2377137963264,57.076934678424614],[-127.23739531100136,57.07688726481535],[-127.23707691512577,57.076842091191914],[-127.23675665569559,57.07680365928184],[-127.23643054537817,57.07677536927942],[-127.23610264321844,57.07675606186064],[-127.23577378962835,57.07673900423914],[-127.23544387646949,57.07672083502886],[-127.23511687154632,57.07669703343774],[-127.23479078283592,57.07666985995319],[-127.23446467510142,57.07664156503777],[-127.23413955568888,57.076612139157916],[-127.23381443677427,57.07658271246828],[-127.23348931835763,57.07655328496877],[-127.23316312413627,57.07652274603733],[-127.23283800672579,57.07649331691538],[-127.23251288981326,57.076463886983554],[-127.23218678550423,57.07643558637638],[-127.23186166957892,57.076406154822415],[-127.23153554972619,57.07637785274397],[-127.23121043478817,57.07634841956764],[-127.23088532034818,57.07631898558161],[-127.23055918258315,57.07628956044697],[-127.23023410501496,57.07626124529924],[-127.22990798759083,57.07623293915391],[-127.2295818871604,57.0762046320379],[-127.22925580654356,57.076177444723655],[-127.22892977873813,57.076151376899894],[-127.22860377068916,57.07612642887825],[-127.2282767392448,57.076101489685605],[-127.22794970822493,57.076076549673296],[-127.22762168961064,57.07605273894102],[-127.2272936906787,57.0760300480008],[-127.22696581598554,57.076010717464825],[-127.2266370086024,57.07599475727511],[-127.2263083445333,57.075983278102704],[-127.22597881908466,57.075977410191],[-127.22565040554774,57.0759737725919],[-127.22532003512222,57.07597351494709],[-127.22499077647396,57.07597548761627],[-127.22466051317467,57.075978589686436],[-127.2243313450437,57.075983922231806],[-127.22400118869757,57.075990384018496],[-127.22367110360712,57.07599908589395],[-127.22334098269341,57.076006666471635],[-127.22301093297772,57.076016487138624],[-127.22268188777005,57.07602517675349],[-127.22235183772695,57.076034995752586],[-127.22202295387525,57.07604928617312],[-127.22169422879519,57.07606805746117],[-127.22136555811318,57.07608906900151],[-127.2210379274057,57.07611006997259],[-127.22070927251876,57.07613107970491],[-127.22038042282149,57.07614648644746],[-127.22005243530624,57.07615628031056],[-127.21972419864488,57.07615823010456],[-127.21939574859721,57.076153456291],[-127.21906708533574,57.07614195886827],[-127.21873831565199,57.076127099226284],[-127.21840943963244,57.07610887736421],[-127.21808049288396,57.07608841374528],[-127.21775154648584,57.076067949297],[-127.21742367627247,57.076048594770796],[-127.21707158790342,57.07604739818524],[-127.2168058850351,57.07610031356835],[-127.21649387149158,57.07615814361651],[-127.21617189804327,57.07616226763015],[-127.21584589819012,57.07613728771689],[-127.2155174966594,57.07610112143009],[-127.2151892918502,57.076071677259065],[-127.21485646681076,57.07605908723194],[-127.21447445643253,57.076058162391526],[-127.21421501320356,57.076113255753754],[-127.21406624142776,57.07617516383713],[-127.21409061154812,57.07639125032974],[-127.2141661073822,57.07659116971172],[-127.2141336120552,57.07677192027156],[-127.2140720570664,57.076947337416506],[-127.21400323311217,57.07712170142393],[-127.21392721090007,57.077297253214056],[-127.21384704064593,57.07747172279057],[-127.2137627246682,57.077646230918994],[-127.21367636018836,57.07782075807271],[-127.21358994301868,57.07799416487811],[-127.21350357697204,57.07816869196098],[-127.21342026291484,57.0783420698072],[-127.2133411474502,57.07851765014362],[-127.21326619523964,57.07869431251152],[-127.21319436592354,57.07887206659719],[-127.21312258783597,57.07905094097991],[-127.21304869286266,57.07922871423356],[-127.21297064967413,57.07940540524725],[-127.21288632547292,57.07957991305128],[-127.21279467741311,57.07975112653286],[-127.21269263598454,57.079920195014346],[-127.21257910641094,57.080084887053935],[-127.21244673239698,57.08024190861643],[-127.21223613781133,57.08037387880162],[-127.21196916687086,57.080486198210046],[-127.2116907424097,57.08059526108768],[-127.21144368992088,57.08071748152646],[-127.21122177858777,57.08085067598029],[-127.21100508914952,57.080986063162364],[-127.2107904979257,57.081122551301746],[-127.21057902888079,57.08126013090443],[-127.21036967458149,57.08139881133564],[-127.2101613780335,57.081538602413595],[-127.2099530799698,57.08167839317299],[-127.20974373989905,57.08181819326507],[-127.20952711034883,57.081955819027534],[-127.20930631501254,57.08209236225775],[-127.20908551810696,57.08222890512746],[-127.20886789515032,57.082367659799985],[-127.20865752338118,57.08250746770919],[-127.2084586023776,57.082650531576085],[-127.2082752777737,57.08279681304888],[-127.20811070870808,57.08294852452983],[-127.20796905963931,57.0831067483218],[-127.20785564131722,57.08327591851611],[-127.20776722672979,57.08345270267939],[-127.2076985386315,57.08363266653732],[-127.20764850151323,57.083814699284],[-127.2076128455717,57.0839943572806],[-127.20759457049925,57.084168250369224],[-127.20770721320604,57.08433532731599],[-127.20786217318351,57.084502012317884],[-127.20793477757458,57.084676184698594],[-127.20796935486355,57.084856313254456],[-127.2079770569122,57.08503556993153],[-127.20795585392706,57.085215094329314],[-127.20794500927754,57.085395643616884],[-127.2079753874535,57.08557356955761],[-127.20801714862368,57.08575251089429],[-127.20807230368159,57.08593020739141],[-127.20814291750601,57.08610663990753],[-127.2082340215675,57.086278399408734],[-127.20834977857581,57.08644544728977],[-127.208485037471,57.08660895201145],[-127.20862954530597,57.08677125012125],[-127.20877306550872,57.08693467805549],[-127.20890629843984,57.08709932200739],[-127.20904064368618,57.08726619714764],[-127.20912430663694,57.087463803659226],[-127.20915705665234,57.08761817081651],[-127.20921492058598,57.087783513202936],[-127.20914822578187,57.08796121829271],[-127.20907641187137,57.08814009161791],[-127.2090479419242,57.088318563180835],[-127.2090897275931,57.088497504374985],[-127.20910156527165,57.08867672317781],[-127.20902966275109,57.08885335576946],[-127.20893601632018,57.08902794825022],[-127.20897942595263,57.08922592818726],[-127.20907276497402,57.08936964678008],[-127.20910479314621,57.08953410810282],[-127.20913143817558,57.089724397833855],[-127.20907495831284,57.08989864600368],[-127.20896685516232,57.090073372609446],[-127.20891457441307,57.09024982343493],[-127.20894393671342,57.090427759264436],[-127.20900533285953,57.090606519033656],[-127.2090594939949,57.09078534585902],[-127.20907129696604,57.09096344448209],[-127.20902311015169,57.09113873670846],[-127.20894085902462,57.09131434462311],[-127.20884613017152,57.091487826515596],[-127.20876387748785,57.09166343436299],[-127.20871674789731,57.09183983755344],[-127.20871345812664,57.09203040503801],[-127.20870521072719,57.09219523994146],[-127.20869657371121,57.09238025298569],[-127.20868594041437,57.09260002954795],[-127.20859777327139,57.09275215526273],[-127.20859669068642,57.09291468224897],[-127.20852894331546,57.09309239732267],[-127.20847462661833,57.093269987967254],[-127.20844812591966,57.09344507933647],[-127.20847011135884,57.093618600788595],[-127.20858380988362,57.093785668629245],[-127.20873672792855,57.09395125222595],[-127.20886802571921,57.09411927762733],[-127.20897770299693,57.09428974489959],[-127.20909255237581,57.094460164176326],[-127.2092012425846,57.094631761277036],[-127.20929551288985,57.09480461278746],[-127.20936604279761,57.09497768432728],[-127.20940466058639,57.095154414110006],[-127.209422697367,57.095333576313074],[-127.20942117719578,57.09551516145046],[-127.20937130918402,57.09570279882917],[-127.20930382513279,57.095855854406956],[-127.2092738663246,57.096052273721284],[-127.20923289413548,57.09622749974917],[-127.20912869272414,57.096395466109534],[-127.20899757147322,57.09656144023426],[-127.20885185112604,57.09672306626371],[-127.20869890934269,57.09688475903843],[-127.20854909120138,57.09704754351673],[-127.2084054324175,57.097209149973864],[-127.20825141065262,57.097369731437986],[-127.20808909110141,57.097529268748694],[-127.20792673495751,57.09768768539176],[-127.2077695677765,57.09784717461619],[-127.2076238373831,57.09800879942466],[-127.20749780528627,57.09817248340064],[-127.2073966807825,57.09834042001997],[-127.20732775295629,57.09851366270811],[-127.20728788066393,57.09869111977578],[-127.20726774309809,57.09887175668636],[-127.20726109259853,57.09905451044865],[-127.20725857284492,57.099237226014466],[-127.2072518870124,57.09941885933905],[-127.20723277334602,57.09959948686097],[-127.20719182328425,57.09977583318435],[-127.20710829296742,57.099944727755876],[-127.2070377282651,57.1000003003325],[-127.2069188251798,57.10009554841789],[-127.20670232888102,57.10024101471023],[-127.20655850955282,57.100398137561726],[-127.20650609806611,57.10057122728027],[-127.20648791570856,57.100748483757705],[-127.20649158865344,57.10093114223893],[-127.20650352365686,57.10111372435146],[-127.20651129253616,57.101295224196605],[-127.20651282970626,57.10147566087317],[-127.20652571907154,57.101655992607654],[-127.20653761925506,57.10183745432535],[-127.20653499025399,57.10201680878241],[-127.20650127214631,57.10219308827612],[-127.20643340961918,57.1023674418389],[-127.20634070775527,57.10254090420401],[-127.20623864775258,57.10271221139544],[-127.20613662203606,57.102884639017084],[-127.2060377020817,57.10305703786793],[-127.20592527606505,57.1032273198437],[-127.20582527801392,57.10339860770807],[-127.2057677571413,57.10357398628123],[-127.2057485640533,57.10375237315149],[-127.20574700751352,57.10393283871237],[-127.20575683905513,57.10411431988782],[-127.20577080204451,57.10429576291303],[-127.20578266429084,57.10447610455744],[-127.20578626386131,57.10465652257271],[-127.20577639292227,57.10483594426247],[-127.20574577569344,57.10501219521557],[-127.20568825204059,57.1051875739595],[-127.2056018240992,57.105363219728],[-127.2054873940136,57.10553576167831],[-127.20534898741205,57.10570180010184],[-127.20518759138048,57.10585908416906],[-127.20500414350947,57.1060053635002],[-127.20479986065978,57.10614623084567],[-127.2045747426885,57.10628168610605],[-127.2043349165515,57.106409430995576],[-127.20408244804493,57.106529446371134],[-127.20382242318577,57.10663944360881],[-127.2035495267536,57.10673386759854],[-127.20324901942169,57.10680500844077],[-127.20293263943158,57.106863965911714],[-127.20261408735674,57.10691958017605],[-127.20230411344983,57.10698520197607],[-127.20199952179424,57.10705749835903],[-127.20169178690958,57.10712870215106],[-127.20138615178148,57.10720100669735],[-127.20108902423601,57.10728107793733],[-127.2008067068176,57.10737222038753],[-127.2005454670161,57.107476618122305],[-127.20030117301766,57.107594309271654],[-127.2000695879226,57.10772197044429],[-127.20000060932018,57.107762954105745],[-127.19984640484459,57.10785403722419],[-127.19962855172255,57.107991658710624],[-127.19941173824579,57.10812927027832],[-127.19919282232156,57.10826577998729],[-127.19896650748568,57.1083967532178],[-127.1987349830848,57.10852665308765],[-127.19849614819088,57.10865437804494],[-127.19824350678587,57.108769900338956],[-127.1979586861767,57.10884760974601],[-127.19762585127111,57.108876443198795],[-127.19723206267716,57.108905834967125],[-127.19684896414677,57.108913831995885],[-127.19674275307781,57.109020162714124],[-127.19697675121265,57.10906845357365],[-127.1973873209713,57.109080378851054],[-127.1977591091156,57.10910722938033],[-127.19808671654548,57.10914233015805],[-127.19841342324706,57.109181921659406],[-127.19873219824404,57.10923167255754],[-127.19903393016607,57.10929839152603],[-127.19932499220653,57.10938762421097],[-127.19957643348457,57.10953101968694],[-127.19983171190118,57.109665412891935],[-127.20000044732954,57.10974119801197],[-127.20004342197008,57.10976097760198],[-127.20012598326959,57.10992273707645],[-127.20012966185325,57.11010651745166],[-127.20011695256134,57.1102949318167],[-127.20013922525338,57.11047854126428],[-127.20015243799631,57.11067007977648],[-127.20018514633182,57.11085695576713],[-127.20029345777715,57.11101623686413],[-127.20050181522606,57.111136489860755],[-127.20076640293148,57.111237171311934],[-127.20106671910905,57.111324073634215],[-127.2013812886888,57.11140411916828],[-127.20169165729808,57.11148196099963],[-127.2019967484748,57.11155648825037],[-127.20232615894113,57.111615099297445],[-127.20265852084985,57.11166919904793],[-127.20297260500129,57.11173355381022],[-127.20324502966314,57.11182070829981],[-127.20345550193942,57.111942058102194],[-127.20361620760518,57.11209076622816],[-127.20374230121861,57.112256605716006],[-127.20385013365791,57.112432700933546],[-127.2039529340754,57.11261332579541],[-127.2040669152142,57.11278824336038],[-127.20420434997283,57.11295285708263],[-127.20438561882483,57.11309801225601],[-127.20463414155833,57.11321340515203],[-127.20492351320067,57.113312729002814],[-127.20521184499152,57.1134120618346],[-127.20545938260565,57.11352858314645],[-127.20564263818962,57.113671476710444],[-127.2057923040277,57.11383037186819],[-127.20591443768774,57.11400072948192],[-127.20601197261841,57.11417803923398],[-127.20608778621421,57.11435442882831],[-127.20615427553787,57.11452978374535],[-127.20622285038642,57.11470624020813],[-127.20629250246603,57.114883807532124],[-127.20636211997555,57.11506025434342],[-127.20643177334165,57.11523782163916],[-127.20650043769832,57.11541651889259],[-127.20656802606563,57.11559410526025],[-127.20663254257433,57.11577284084243],[-127.20669396849274,57.11595160499206],[-127.20675122712893,57.11612928684165],[-127.20680438887717,57.11630812739526],[-127.20685239355379,57.11648701563443],[-127.20689312298221,57.11666485032245],[-127.20692765373194,57.11684274233683],[-127.20695388412183,57.117019590287995],[-127.20697290942351,57.117197625704314],[-127.20698154905999,57.11737351551837],[-127.20697984029434,57.117549501037935],[-127.20695434094985,57.11772458572026],[-127.20690091788498,57.11789880776079],[-127.20682575344662,57.118072109966974],[-127.20673405690856,57.11824556497041],[-127.20662992569429,57.118418014033786],[-127.20651749253693,57.118589418929844],[-127.20640198564537,57.1187619729739],[-127.20628856071195,57.11893450768986],[-127.20618131765,57.119106985201526],[-127.20608449299463,57.11928160803946],[-127.2060031226832,57.11945496722317],[-127.20589285984883,57.11959721008724],[-127.20587082887327,57.11981709583827],[-127.20586798429775,57.11998972961778],[-127.20587679552433,57.12017122237953],[-127.20582965286572,57.12034874868999],[-127.20577009179584,57.12052526887293],[-127.20570634532447,57.12070070687267],[-127.2056395418806,57.120877293918575],[-127.20556961102245,57.121052788998654],[-127.20549966299215,57.12122828421651],[-127.20542973085497,57.12140377926693],[-127.205360858307,57.121580385342824],[-127.2052940165532,57.12175585182138],[-127.20522927600277,57.12193241971455],[-127.20516660149313,57.122108968521054],[-127.20510491627893,57.12228438735356],[-127.20504328221685,57.12246092653203],[-127.2049816310545,57.1226374658567],[-127.20491999585838,57.12281400502267],[-127.20485938517055,57.12299053472251],[-127.20479773231163,57.12316707402905],[-127.2047350538008,57.12334362278849],[-127.20467237471337,57.12352017154064],[-127.20460969504927,57.12369672028568],[-127.20454494807682,57.12387328809104],[-127.20448226724989,57.124049836820646],[-127.20442269423947,57.1242263568683],[-127.20436418095893,57.124403987962474],[-127.20430669225468,57.12458160959797],[-127.20424921955252,57.12475923107873],[-127.20418966299495,57.12493687177193],[-127.20412904559535,57.12511340140797],[-127.20406533569299,57.125289959552546],[-127.20399743987939,57.12546543545164],[-127.20392542632509,57.12564094930133],[-127.20384715991645,57.12581539994805],[-127.20376263849558,57.125987666567084],[-127.20366979721392,57.126158889012665],[-127.2035655253302,57.126327975107344],[-127.20344674927293,57.12649607398367],[-127.20331650717971,57.12666091593499],[-127.20317587784334,57.1268247326501],[-127.20302584913894,57.12698527332564],[-127.202870660175,57.1271458613746],[-127.20271022411272,57.12730425591154],[-127.20254764957122,57.127460428286234],[-127.2023840319716,57.12761661006914],[-127.20221832752779,57.12777169003349],[-127.20205053825791,57.12792678898559],[-127.20188069720774,57.128081906613254],[-127.2017087010994,57.12823480219113],[-127.20153364650963,57.12838884652458],[-127.20135645336839,57.12854066863586],[-127.2011771918322,57.128692509538155],[-127.20099476650293,57.12884213762963],[-127.2008091959041,57.12899067356002],[-127.20062048001508,57.129138117315605],[-127.20042860029763,57.129283348218436],[-127.2002325500131,57.12942749634166],[-127.2000217836713,57.12956393357321],[-127.2000004384347,57.12957533807739],[-127.19978375881425,57.12968829174435],[-127.19952999257762,57.12980494824202],[-127.19927311593985,57.129921632809015],[-127.19902667811432,57.1300415835181],[-127.19880336163729,57.13017365067424],[-127.19859889236533,57.130313390293495],[-127.19840385522178,57.130457526369796],[-127.19821616469433,57.130604957249005],[-127.19803165162246,57.130754600379426],[-127.19784922266875,57.13090534496958],[-127.19766680881872,57.13105608916999],[-127.19748121463186,57.13120462061351],[-127.19728830582721,57.131350977191346],[-127.19706522045358,57.13149088510499],[-127.19682962567919,57.13162754478154],[-127.19661273850784,57.131767395113776],[-127.19644577626116,57.13191687519794],[-127.19635368527899,57.132080240035684],[-127.19630528392422,57.13225217127612],[-127.19628497223594,57.13242944937669],[-127.19628335348683,57.13260991876487],[-127.19629632658318,57.13279361701409],[-127.19631755217054,57.13297723968868],[-127.19633778755029,57.133161992294085],[-127.196352758462,57.1333434306419],[-127.19637902127242,57.13352252389372],[-127.19643422603956,57.13370135201608],[-127.19644494170345,57.13387946690525],[-127.19640911689793,57.13405688735937],[-127.19635986262027,57.1342344308502],[-127.19630025483119,57.134412069183895],[-127.19623751885312,57.134588615324944],[-127.19617478229775,57.13476516145883],[-127.19611518936594,57.13494279962616],[-127.19603273379074,57.13511728465258],[-127.19590453286045,57.135283221843096],[-127.19573779701598,57.13544054503786],[-127.19552698166143,57.13557697562012],[-127.1952721215805,57.13569363388883],[-127.1949908161135,57.13579147938596],[-127.1946899074082,57.135856999291555],[-127.19426924270918,57.135895592705324],[-127.19394261011811,57.13586607487756],[-127.1936152663597,57.13584665027818],[-127.19327295218959,57.135877799342616],[-127.19296350327562,57.13586829714706],[-127.19273611523684,57.135738115188815],[-127.19249941730766,57.135608017870055],[-127.19219528320797,57.13553681930218],[-127.1918681844665,57.135491608873465],[-127.19153905599258,57.13548116209801],[-127.19121382066126,57.13549645823289],[-127.19088898420432,57.13552407912351],[-127.1905622720042,57.135558441322644],[-127.1902356452825,57.13559504359453],[-127.18990783697079,57.13562717246399],[-127.18958081032467,57.135651447530456],[-127.18925155876032,57.13567013785257],[-127.18892322812138,57.135685456448975],[-127.18859276041468,57.13569855199478],[-127.18826331790162,57.13571163737477],[-127.18793392639807,57.13572584229406],[-127.18760458748295,57.135742287574615],[-127.18727635959738,57.13576096359426],[-127.18694820072528,57.135781879831086],[-127.18662014546625,57.13580615680689],[-127.18628995311266,57.13582821069566],[-127.1859718320332,57.13587257084465],[-127.18570931585649,57.135976950526334],[-127.18546184055556,57.136099126524435],[-127.18520694640637,57.13621576519698],[-127.18493188289723,57.136315773824926],[-127.18464959026385,57.136415847441235],[-127.18436413411015,57.13651370745799],[-127.18407108640045,57.136600427312565],[-127.18376917987108,57.136668172588635],[-127.18345820753046,57.13671022008628],[-127.18313217500528,57.136733349061274],[-127.18279837959702,57.13673973498834],[-127.18246008584572,57.1367338315972],[-127.18212453981673,57.13671669410569],[-127.18179695317066,57.136689396214265],[-127.18148728372196,57.13663951871597],[-127.1811929470334,57.13655027259264],[-127.18089953368371,57.13645765497067],[-127.18059172780208,57.13640103352598],[-127.18026827977576,57.13637369442975],[-127.17993676932112,57.13635315238578],[-127.17960244198825,57.13634160162216],[-127.1792673139783,57.1363379030753],[-127.17893456334525,57.136344269717775],[-127.17860731710788,57.13636179418013],[-127.1782824642549,57.136389383735],[-127.17795166736876,57.13642599276295],[-127.17762225578025,57.13647379679833],[-127.17730256768525,57.13653496235481],[-127.17700302654374,57.13661275806863],[-127.17673091075595,57.136708239335015],[-127.17648832195528,57.13682250822988],[-127.1762647853753,57.13695117592508],[-127.17605399553389,57.13709093679839],[-127.17585270554355,57.137237336809726],[-127.17565459217376,57.137385949586935],[-127.17545755361256,57.13753567322731],[-127.1752541915232,57.1376820909718],[-127.17504129216663,57.137820748364796],[-127.17481357559475,57.13794833034701],[-127.17456680391427,57.13806151244633],[-127.17429680790283,57.138159211202904],[-127.17400673155181,57.13824251904486],[-127.17370189046768,57.13831699224231],[-127.17338852044125,57.13838257466956],[-127.17307086068423,57.13844371152875],[-127.17275424195273,57.13850483826173],[-127.1724428335752,57.13856703828369],[-127.1721325181618,57.13863146941738],[-127.17182020261451,57.138698159421345],[-127.17150467373165,57.13876151499094],[-127.1711879814643,57.138820396886764],[-127.17087002331874,57.13887144351646],[-127.17055068037297,57.138911293434745],[-127.17022988454013,57.13893770557462],[-127.16990659301283,57.13894956843392],[-127.16957873967688,57.13894802133268],[-127.16924741761979,57.138934175287964],[-127.1689147630083,57.13891025282649],[-127.16858392089858,57.138878467469496],[-127.16825601832463,57.1388410508192],[-127.16793208092885,57.138797993728176],[-127.16761627804765,57.13875037978838],[-127.16731110563504,57.138678011754756],[-127.16701571016125,57.138587622335315],[-127.16672335749992,57.13849496341929],[-127.16642938162258,57.1384168891903],[-127.16612402358219,57.13837254091867],[-127.16578634446215,57.13842150953876],[-127.16556755613391,57.13846941634355],[-127.16541253075265,57.13871065789634],[-127.16548070562663,57.13887817449032],[-127.16561820444942,57.13904731408927],[-127.16579770697611,57.139203749505086],[-127.1659974606038,57.13934543308746],[-127.16621353551326,57.13948024566239],[-127.16644088978958,57.139611594675756],[-127.16667234675509,57.13974178583987],[-127.1669027797559,57.1398719857686],[-127.16712702901454,57.14000336140763],[-127.16734926282206,57.14013587553549],[-127.16757255781542,57.14026950066064],[-127.16779578614171,57.140400884357675],[-127.16802111776194,57.14053336972605],[-127.1682484503431,57.14066359516577],[-127.16847781799694,57.14079268119556],[-127.16871838040251,57.140916062505205],[-127.16896815472039,57.141035998448245],[-127.16922097208366,57.14115366502708],[-127.16946767388046,57.141274748403376],[-127.1696990486483,57.14140157277417],[-127.16990795363985,57.14153756470614],[-127.17011200673505,57.14168368732301],[-127.17031108894038,57.141836579208125],[-127.1704907262285,57.14199637008915],[-127.17063839180959,57.142158688966],[-127.17073757756778,57.14232480474174],[-127.17077478350495,57.1424937176873],[-127.17074387281198,57.14266660368968],[-127.17066656553091,57.14284438887528],[-127.17056550398657,57.143023507741326],[-127.17046755145431,57.14320259868626],[-127.17039437741131,57.143380346724435],[-127.17037593952085,57.14355536265233],[-127.17051161403495,57.14373123940447],[-127.17068326331335,57.14390006861763],[-127.17068581232668,57.14405135897047],[-127.17044129639278,57.144172358980505],[-127.17014605652682,57.14429157123833],[-127.17001412439224,57.1444418245358],[-127.17000393917876,57.144616766611584],[-127.17004269902998,57.144802478711256],[-127.1700825014711,57.14498818148965],[-127.17012105697722,57.14516717041829],[-127.17016998655554,57.145347187273956],[-127.17017437977321,57.14552536141356],[-127.17012594666964,57.14570064625167],[-127.170064114006,57.14587717194895],[-127.16999395827439,57.146052651338806],[-127.16991761458505,57.1462281861253],[-127.16983915151435,57.14640261902254],[-127.16976176416216,57.14657816309689],[-127.16968958849978,57.146754781318414],[-127.16962667569065,57.14693019574435],[-127.169572136816,57.14710889771047],[-127.16952272501945,57.14728643293255],[-127.16947649140089,57.14746618138656],[-127.16942812098833,57.14764370728967],[-127.16937458830195,57.14782127940246],[-127.16931273221759,57.147997805170405],[-127.16923733897555,57.14817108956031],[-127.16914017029933,57.14834232711395],[-127.1689900174508,57.1485061928302],[-127.16880969706828,57.14866472407294],[-127.16863559602099,57.148823199438986],[-127.16849984757339,57.14898469407929],[-127.16843661842543,57.14915002339097],[-127.16845531018116,57.14932246593107],[-127.16853206285194,57.14949887256197],[-127.16863879598064,57.14967501100382],[-127.16875173453677,57.149851093877494],[-127.16885009456848,57.15002394458566],[-127.16894842133306,57.15019567470437],[-127.16905187699041,57.15036623804193],[-127.16915948648501,57.15053676415546],[-127.1692670462275,57.15070616981226],[-127.16937465763247,57.150876695791794],[-127.16948015106551,57.15104611982725],[-127.16954622906567,57.15121141326964],[-127.16968091864531,57.1513884217551],[-127.16968419900795,57.15152961879061],[-127.1692833180348,57.15161278707523],[-127.16898143799912,57.151686101617635],[-127.16871035774456,57.151786040219335],[-127.1684594790643,57.151903731100866],[-127.16821177778448,57.15202363477644],[-127.1679587936207,57.1521402226709],[-127.16770700438158,57.15226240361568],[-127.16745629006653,57.152385695311786],[-127.16719589994383,57.15249674367013],[-127.16691826344807,57.152585528643556],[-127.16661375753097,57.152640927597844],[-127.16628351098312,57.15266629280491],[-127.16594227518728,57.15267045919359],[-127.1656079801258,57.15266447517157],[-127.16527826882383,57.15263939506088],[-127.16494697090724,57.15259639476204],[-127.16461661406747,57.152550022710486],[-127.16429187929113,57.15251817070488],[-127.16397631996375,57.152516498940614],[-127.16367051245689,57.152562935845026],[-127.1633763888861,57.152654101746506],[-127.1631016089215,57.152768632505364],[-127.16284966417219,57.15288632198156],[-127.16262079170704,57.153013893263214],[-127.1624045828707,57.15315031823246],[-127.16219262759496,57.15329006754138],[-127.16197644963151,57.15342761237244],[-127.16174970727636,57.15355740487006],[-127.16151775027494,57.15368612248545],[-127.1612836554842,57.15381261699937],[-127.16104959307546,57.15394023164869],[-127.16081759748928,57.154067827515036],[-127.16059086479312,57.1541987387539],[-127.16036313853185,57.15433077926651],[-127.16012506869302,57.154462911220186],[-127.159911029447,57.15460267532983],[-127.1597646783758,57.15475753013319],[-127.15967984473215,57.15492865148063],[-127.15962415441763,57.155105118373974],[-127.15958620653369,57.15528703203358],[-127.15955449754287,57.15547001118369],[-127.15951651508449,57.155650804327955],[-127.15946188281522,57.15582838268777],[-127.1593780879681,57.1559994947255],[-127.15925160895843,57.15616201864861],[-127.15907736663604,57.15631824107164],[-127.15886760301207,57.15646356984297],[-127.158635720333,57.15659564425838],[-127.15839095099332,57.1567121406592],[-127.15809324857874,57.156788755286875],[-127.15777021508859,57.15684878098369],[-127.1574746465579,57.156927616974585],[-127.15723828101264,57.15704852013844],[-127.15703568700246,57.157191540764444],[-127.15683946618724,57.157340108886764],[-127.15662425495007,57.15747651550214],[-127.1564038114348,57.157610726374706],[-127.15618232381176,57.157744946113425],[-127.1559597582889,57.15787805416564],[-127.15573507162523,57.1580089389058],[-127.15550727224978,57.15813985078368],[-127.15527523281581,57.15826743720983],[-127.15503688472512,57.15839171644536],[-127.15477239905192,57.15850725945051],[-127.1544880319138,57.158615131639436],[-127.15420362944539,57.158721882669674],[-127.15393797804748,57.1588329508824],[-127.15370887186333,57.158954904375506],[-127.15353817565138,57.15909315457286],[-127.15345512017161,57.15925528963225],[-127.15344502402213,57.15943583509034],[-127.1534673040267,57.15962618242478],[-127.15347924078326,57.159816621081994],[-127.15344119166643,57.15999629249721],[-127.15332819662851,57.16016093351365],[-127.15318813873083,57.160320209022196],[-127.15303043634566,57.16047739837522],[-127.15285710777732,57.16063136285336],[-127.15267232406146,57.160783186450296],[-127.15247921304972,57.16093284153177],[-127.15228187910247,57.16108029187022],[-127.15208242407581,57.16122551891633],[-127.15188288365827,57.16136850471688],[-127.15166769949657,57.16150714468346],[-127.15143786396347,57.161640309144786],[-127.15120175314173,57.16177128678286],[-127.15096353826087,57.16190116167522],[-127.1507305357099,57.162032111084635],[-127.15050792637706,57.16216521027847],[-127.1503020171615,57.162302645495856],[-127.15012005789154,57.16244547386512],[-127.14997774142508,57.16259916164762],[-127.14991671407819,57.16277230933885],[-127.1499077774834,57.16295732803726],[-127.14991651879119,57.16314555376556],[-127.14991161905165,57.16332717444832],[-127.14992434675614,57.163509760907175],[-127.1499515739736,57.163693340661865],[-127.14997570635555,57.16387694766995],[-127.14997798909074,57.16405626355802],[-127.14993971769556,57.164229211198176],[-127.14984534923826,57.16439480644372],[-127.14970325966308,57.164556338034245],[-127.14952582857279,57.164712576074564],[-127.14932543582442,57.164862290699645],[-127.14911032356775,57.16500428848392],[-127.14888965959453,57.16513400536138],[-127.14861631231541,57.16523168020698],[-127.14831351128213,57.16531392135117],[-127.14804549325392,57.16541715242216],[-127.14768800340582,57.16550435587594],[-127.14742051170927,57.16552127554166],[-127.14709327029108,57.16554768587361],[-127.14676831509651,57.16558080042565],[-127.14644347682724,57.16561839654129],[-127.14611655196042,57.16565488929245],[-127.14579285567983,57.16569583631864],[-127.14547566709244,57.16574681315568],[-127.14517129345644,57.16581112713761],[-127.14489265064071,57.16590547796802],[-127.14463119439067,57.166020973839906],[-127.14436866032015,57.16613535777174],[-127.14408464819056,57.166223028774766],[-127.14377695599909,57.16628064342676],[-127.14345959277786,57.166326012605516],[-127.14313578775267,57.16636359139901],[-127.14280771036796,57.16639672334155],[-127.14247853937549,57.16642762231583],[-127.14215152051251,57.166461864200514],[-127.14182771305789,57.166499439757374],[-127.14150614086154,57.16654259923493],[-127.14118357504174,57.1665868874417],[-127.14086203473425,57.1666311658961],[-127.14053931752062,57.16667097042561],[-127.14021540673413,57.16670518031797],[-127.13989016923696,57.166729313327764],[-127.13954933837518,57.16675133977916],[-127.13919902150886,57.16676784377118],[-127.13885745755009,57.166765216116445],[-127.13854503823686,57.166733191616565],[-127.13835044020227,57.16669677772522],[-127.1380741689592,57.166523210301804],[-127.1378945186174,57.166362251376725],[-127.13770861283938,57.166200225840164],[-127.13748628047482,57.16606541745813],[-127.13723146019217,57.16595218752423],[-127.13696240740992,57.16584692686199],[-127.13668623915217,57.16574621094164],[-127.13641103214458,57.1656432444046],[-127.13614809118891,57.165534566444684],[-127.13590342420066,57.16541452068559],[-127.13569007299928,57.16526842289415],[-127.13549491286123,57.16510759573104],[-127.13530089667621,57.1649501209139],[-127.13508998427517,57.164816330365696],[-127.1348461544312,57.16472429665523],[-127.13455437843496,57.1646898418982],[-127.13422564492302,57.164700541085764],[-127.13387810944612,57.16474054457076],[-127.13353285755652,57.1647872523992],[-127.13320390821274,57.164825972036475],[-127.13287907959564,57.16486353427699],[-127.13255540896779,57.164905569055826],[-127.13223499829455,57.16495317901816],[-127.13192104192149,57.165008578214575],[-127.13161464857863,57.16507511962978],[-127.13132336539324,57.16516282560368],[-127.13104408021243,57.16527172317042],[-127.1307690802121,57.16538506644591],[-127.13049166258904,57.165487221588435],[-127.13020308908344,57.16556145145242],[-127.12989675681797,57.16559548373933],[-127.12957720102987,57.16560160843919],[-127.12924675538599,57.16558989291106],[-127.12891169350499,57.16556140373469],[-127.1285773284786,57.16552169923004],[-127.12824687132351,57.165474114224224],[-127.12792455914995,57.165421974719585],[-127.12761449709124,57.16536412451507],[-127.1273123495248,57.16529387602438],[-127.1270150708112,57.165213497259025],[-127.12672077337865,57.165128608752724],[-127.12642644432516,57.16504259902805],[-127.12613118912242,57.164959959171455],[-127.12583095190638,57.164884086645955],[-127.12552379516123,57.164819481477714],[-127.12520874187996,57.16476727286957],[-127.12489173544941,57.16471956369836],[-127.12457176610803,57.164676362636975],[-127.12424982710077,57.16463654027441],[-127.12392588549798,57.164598976034696],[-127.12360098400616,57.164563660938136],[-127.12327507318747,57.16452947455824],[-127.12294919577204,57.164496407928034],[-127.1226233189187,57.164463340486094],[-127.12229740982453,57.16442915167106],[-127.12173265337717,57.1643656286336],[-127.12143397223615,57.164448892496615],[-127.12113662747743,57.16454223179434],[-127.12083944507349,57.164641173232496],[-127.12054222838387,57.16473899344011],[-127.12024378750377,57.164830098400785],[-127.119945034042,57.164911117765534],[-127.11964373599255,57.164975345595224],[-127.1193407071038,57.16501604984643],[-127.11903381352036,57.16503100709371],[-127.11871699623035,57.16502475254811],[-127.11839147811902,57.16500400073412],[-127.11806037132838,57.16496872496788],[-127.11772885655694,57.164920001748456],[-127.11739913422196,57.164861174791774],[-127.11707527678031,57.164791088465364],[-127.11676155346305,57.164713068863904],[-127.11646203660845,57.16462596043345],[-127.11617995248139,57.16453309824681],[-127.11591940638685,57.16443332652408],[-127.11567707438158,57.16431994872168],[-127.1154519795181,57.16419409412429],[-127.11523900641211,57.16405804815751],[-127.11503515775173,57.16391519897894],[-127.11483834806708,57.16376556442282],[-127.11464460243985,57.163614782627256],[-127.11445183592086,57.16346175054471],[-127.1142560735662,57.16331210627108],[-127.11405418719285,57.163165876457164],[-127.11384420614309,57.16302531954875],[-127.11364119904123,57.16287573618716],[-127.11344417233275,57.16271825571264],[-127.1132430745947,57.16256305133012],[-127.11302891303166,57.16242140800011],[-127.11279272781147,57.1623046103352],[-127.11252446651787,57.16222395217035],[-127.11222916298843,57.162173786262464],[-127.11191683584548,57.16214281879352],[-127.11159150832268,57.16212765290067],[-127.1112571553182,57.16212265049161],[-127.11091576455378,57.162124432082884],[-127.11057131123351,57.1621273596456],[-127.11022781910826,57.16212803645815],[-127.10988725976249,57.16212308327015],[-127.10955466812385,57.16210685316878],[-127.10922183328442,57.16208277842218],[-127.10887466319866,57.16206330781675],[-127.10852434953927,57.162042742119155],[-127.10818001603943,57.16201427891363],[-127.10785287130435,57.161972219046305],[-127.10755208833056,57.16191088072443],[-127.10728885934114,57.1618245651201],[-127.1070662637433,57.161712125544405],[-127.10687205052085,57.161579270159265],[-127.10670011031513,57.16142941334442],[-127.10654443075174,57.16126933112081],[-127.10640090651711,57.161100179142295],[-127.10626245021956,57.16092762162907],[-127.1061229367328,57.160753952113986],[-127.10597941628656,57.160584799737876],[-127.10582371084288,57.16042359619491],[-127.10566698061322,57.16026240116727],[-127.10552038495545,57.160094395235824],[-127.10537480091365,57.15992525978001],[-127.10522110480349,57.159761796976476],[-127.10504911460956,57.15960969707016],[-127.10485071704997,57.159474632753565],[-127.10461573008988,57.15936229414184],[-127.10433991943687,57.159269354311],[-127.1040335638567,57.15919348448985],[-127.10370801688242,57.15913346773391],[-127.10337557698236,57.15908583755225],[-127.10304655500431,57.159049386022026],[-127.1027241107133,57.159025207336086],[-127.10239599194327,57.15902012990077],[-127.10206413894508,57.159028533138176],[-127.1017304259575,57.15904479704792],[-127.10139685798659,57.159065542215096],[-127.10106632004242,57.15908401933101],[-127.10073464266024,57.159099142706204],[-127.10040091288523,57.15911428252007],[-127.10006830535927,57.15913277453224],[-127.09974012413178,57.15916131594396],[-127.09942053845596,57.15920099254414],[-127.09911283556441,57.15925850174504],[-127.09881486660049,57.159330499199],[-127.09852449837554,57.159414761238516],[-127.09823951702552,57.15950682318783],[-127.09795775744439,57.15960334077412],[-127.09767607715331,57.15970209874831],[-127.09739431471915,57.159798615133944],[-127.09710932780303,57.15989067464524],[-127.09682751499682,57.15998494855554],[-127.09654571630173,57.16008034256796],[-127.09625852836142,57.160167935344724],[-127.09595570368387,57.160251175289],[-127.09563579737814,57.16035249106832],[-127.09531449460809,57.160441488597705],[-127.0950043713748,57.16048667916521],[-127.09472104991558,57.16045654866555],[-127.0944540101669,57.16038032705094],[-127.09419673960996,57.16028384811818],[-127.09394420288571,57.16017163741359],[-127.0936954369618,57.160047065527905],[-127.09344856619512,57.15991575234302],[-127.09319957990077,57.15978333558397],[-127.09294756441376,57.15965318537653],[-127.09268854197516,57.15953093912142],[-127.09242259171916,57.159419958607096],[-127.09214464575986,57.159323648635905],[-127.09185560230384,57.15923751829639],[-127.09155748263208,57.15915930896555],[-127.09125128079121,57.159087891446944],[-127.09093909722567,57.15902436897758],[-127.09062290483152,57.158965362554305],[-127.09030587852833,57.15891308731824],[-127.08998899581054,57.15886641427741],[-127.08966815229749,57.158825377655695],[-127.08934432553541,57.158788848443336],[-127.08901958408508,57.158756809378076],[-127.08869285469392,57.1587270277332],[-127.08836511501033,57.1586983745206],[-127.08803737581654,57.15866972048678],[-127.087710631381,57.158639936526],[-127.08738486650184,57.158607901942744],[-127.08706110728801,57.15857360820922],[-127.08674317351323,57.15852581528018],[-127.08644003344928,57.158452119518344],[-127.0861309577275,57.158388559864775],[-127.08581591576724,57.15833289486983],[-127.08549992729316,57.15828059947466],[-127.0851849022999,57.158226053665906],[-127.08487480443698,57.1581624995728],[-127.08456766035088,57.15809331609732],[-127.08427965409047,57.15800603986332],[-127.08400266983413,57.15790634246882],[-127.08371539214866,57.157807850700756],[-127.08342911030925,57.157708229236185],[-127.08315094612,57.15760293573873],[-127.08289121099712,57.157490763984214],[-127.08265701017115,57.15736717190603],[-127.08245764543724,57.157230961764135],[-127.08228588339841,57.157083314457466],[-127.08212634437406,57.15692884076913],[-127.08197909153824,57.15676978187644],[-127.08184101368609,57.15660616357975],[-127.08171320145449,57.15643909770712],[-127.081592527118,57.15626861017836],[-127.08147905381988,57.15609694214369],[-127.08137174043769,57.15592298141167],[-127.08126858009321,57.155750107082014],[-127.08116954263016,57.15557607776183],[-127.08107262118848,57.15540427254063],[-127.08097985412302,57.155232432908456],[-127.08089015073615,57.15505944707094],[-127.08080561103823,57.15488641848924],[-127.08072312552298,57.15471225206657],[-127.0806437351472,57.15453806002271],[-127.08056743986894,57.154363842363345],[-127.08049319868243,57.15418848687758],[-127.08041998410843,57.15401312288931],[-127.08034883860905,57.15383774178084],[-127.08027766219435,57.15366124009379],[-127.08020651799855,57.15348585895384],[-127.08013537445345,57.15331047779808],[-127.08006318910189,57.1531351052438],[-127.07998994694796,57.15295862059006],[-127.07991574267672,57.15278438552211],[-127.0798394226416,57.15260904710345],[-127.07976004063306,57.152434854796],[-127.07967756513841,57.1522606880318],[-127.07960522613074,57.15207971255348],[-127.07953797220222,57.15189533258333],[-127.07945941467531,57.15171328764317],[-127.07935734822443,57.15154152429637],[-127.07921645850753,57.151386893915294],[-127.07902239405226,57.15125399818139],[-127.07878636463896,57.15113714018911],[-127.07851860212531,57.15103175196064],[-127.07822630562951,57.15093665306578],[-127.07791882196965,57.150852887044245],[-127.07760537026896,57.150778136105664],[-127.07729215667037,57.15071122821047],[-127.07698426381403,57.15064987981949],[-127.07667332423885,57.150590797462144],[-127.07636042828585,57.150535092953675],[-127.07604655373544,57.15048163740577],[-127.07572960088264,57.15042932727886],[-127.07541272828247,57.15037925737148],[-127.07509380315753,57.150330324413964],[-127.07477388441376,57.1502825196799],[-127.07445399786052,57.1502358347257],[-127.0741331176369,57.15019027798512],[-127.07381122717253,57.15014584958683],[-127.07349036328439,57.15010141196828],[-127.07316847431036,57.15005698198952],[-127.07284762845595,57.150012542659624],[-127.07252676679941,57.14996810267907],[-127.07220694825801,57.14992365335772],[-127.07188515621563,57.149882581908045],[-127.07156132797715,57.149842647192024],[-127.0712365684861,57.14980608177105],[-127.07091179306873,57.149769515679445],[-127.070586023729,57.149734077749414],[-127.07026028626134,57.149699759570055],[-127.06993451811603,57.14966432001746],[-127.06961078750454,57.1496277421595],[-127.06928702626892,57.14959004293836],[-127.0689652713845,57.14955008486987],[-127.06864552290186,57.149507867969014],[-127.06832771844395,57.149461151126346],[-127.0680119205239,57.14941217548112],[-127.06770111493611,57.14935643337848],[-127.06740324607824,57.149282651778954],[-127.06711630849117,57.149193088791094],[-127.06683640087486,57.14909562206714],[-127.06655744354474,57.14899478455457],[-127.06627550180386,57.14889845408929],[-127.06598455802155,57.14881340464878],[-127.06567959101896,57.148744160391956],[-127.06536963326998,57.14868168103051],[-127.06505866531029,57.14862032999626],[-127.06474673477042,57.14856122770949],[-127.0644347740929,57.14850100411825],[-127.06412385672807,57.148440771294865],[-127.06381289271417,57.148379417306636],[-127.06350395221168,57.1483158044861],[-127.06319897709882,57.14824655459964],[-127.06289796952456,57.148170546843964],[-127.0625969776433,57.14809565909612],[-127.06229205349901,57.148027527531845],[-127.06197815702657,57.1479717971647],[-127.06165626824576,57.147926218333346],[-127.06132960482718,57.14789524809354],[-127.06100241213284,57.147882214370505],[-127.06067243568036,57.147880410573755],[-127.06034157183448,57.1478842172174],[-127.06001080083048,57.14789138471195],[-127.05967892546455,57.14789631869758],[-127.0593489799029,57.147895632121426],[-127.05901789921316,57.1478915914719],[-127.05868781343712,57.14788642110771],[-127.05835762061128,57.1478767675225],[-127.05802738049573,57.14786599267355],[-127.05769299002408,57.14785412977966],[-127.0573554275659,57.14784005007729],[-127.0570449424866,57.14779548845976],[-127.0568140254238,57.14767294636616],[-127.05658992421083,57.14753465738052],[-127.05632327360546,57.147429215659606],[-127.05604748071272,57.147329451381246],[-127.05577674429587,57.147225162425265],[-127.05552533921485,57.14710950861488],[-127.055294276983,57.14698136108201],[-127.05507439729566,57.14684639797984],[-127.0548524676678,57.14671145108613],[-127.05462039860763,57.146584431378315],[-127.05436800627814,57.14646990423962],[-127.05409315871776,57.14636676593951],[-127.05380014811453,57.146279464955214],[-127.05349529904547,57.14621355421236],[-127.05317942373345,57.14616006058452],[-127.05285756061308,57.14611446013754],[-127.05253174675657,57.146075615601355],[-127.05220405000097,57.146043510289424],[-127.05187761117422,57.14601923970659],[-127.05155284361818,57.1460184918812],[-127.05123390118766,57.14607934095353],[-127.05093721615283,57.146160184779326],[-127.05065027389941,57.14625664091806],[-127.05036208966507,57.14634526073365],[-127.05004706392558,57.1463982297212],[-127.04971403484679,57.146360556958676],[-127.04957234992438,57.14620926515688],[-127.04948654669495,57.1460216583826],[-127.0493844150078,57.14584202842029],[-127.04919780358814,57.14571239256554],[-127.04891144205708,57.14564071872203],[-127.04857517381313,57.145597465099925],[-127.04823483162914,57.145556484928576],[-127.04792286009118,57.14549398092105],[-127.04761684862716,57.145422461909895],[-127.04731180282097,57.1453486928351],[-127.04700582424242,57.14527829296419],[-127.04669595550254,57.14521689002919],[-127.04637934729557,57.145173473292175],[-127.04605601321484,57.14514916339865],[-127.0457248048874,57.1451394862527],[-127.04539076138792,57.14513991823254],[-127.04505578376724,57.14514371925595],[-127.04472175676699,57.14514414939284],[-127.0443916355449,57.14513670179255],[-127.04406836403638,57.1451146281088],[-127.04375068690975,57.14507009277038],[-127.04343958598216,57.14500084636659],[-127.04314550687127,57.14491128877231],[-127.04287788576556,57.144805828008174],[-127.04263370399295,57.144687850756846],[-127.04240476733877,57.14455966415551],[-127.04218496342784,57.14442467947372],[-127.04197122648442,57.14428516282759],[-127.04175750763885,57.14414564571428],[-127.04154176676593,57.144008386013496],[-127.0413321563732,57.143867714693634],[-127.0411305895828,57.14371913331237],[-127.04093110876548,57.1435705350266],[-127.04072657317927,57.14342645996052],[-127.04050886337333,57.143292576792696],[-127.04027197464563,57.14317565810718],[-127.04000574993069,57.14308250949408],[-127.03970110183283,57.14302216953934],[-127.03937322936694,57.14298218817266],[-127.03903723800457,57.1429478745951],[-127.03871028768197,57.14290340102238],[-127.03840540037203,57.14283409354464],[-127.03811566722784,57.142751215278075],[-127.03783189626279,57.14265932257734],[-127.03755214105391,57.14256291416238],[-127.03727336882642,57.14246425575216],[-127.03699461178283,57.142366717449285],[-127.0367118279506,57.142272572940925],[-127.03642401912421,57.14218407172771],[-127.03613423463572,57.14209894797938],[-127.03584238364625,57.14201383999106],[-127.03554955228907,57.14193098074543],[-127.0352556965788,57.14184812897697],[-127.03496187237039,57.141766397116314],[-127.03466801919,57.14168354403602],[-127.03437620482887,57.141599553361864],[-127.03408439174551,57.14151556204112],[-127.03379458729995,57.14142931258133],[-127.0335118182306,57.14133516121143],[-127.03324314604876,57.14122744810982],[-127.03297147255832,57.141123120617735],[-127.03267882156938,57.14104585767832],[-127.03236517604743,57.14099565927691],[-127.03204054246069,57.140960117372636],[-127.03171290656235,57.1409279607866],[-127.03138820031198,57.14088905544124],[-127.03107336503568,57.1408332593543],[-127.03076642668657,57.140762829782695],[-127.03045950302294,57.14069352018793],[-127.03014583319457,57.140642195907134],[-127.02982047988397,57.14061786222133],[-127.02948931478026,57.14060814394783],[-127.02915422485145,57.140606301366105],[-127.02882017708271,57.140604449716704],[-127.02849003793419,57.14059472083193],[-127.02816672375585,57.1405692461828],[-127.02785616784648,57.1405178919295],[-127.02755637658174,57.14044403625539],[-127.0272634250715,57.14035555571123],[-127.02697148703358,57.140265945758124],[-127.02667967031715,57.14018081741548],[-127.02639190032815,57.140092294237846],[-127.02611320472847,57.139994732758026],[-127.02584764252805,57.13988585955906],[-127.02563497944791,57.13970596011405],[-127.0105063798752,57.100000338488464],[-127.0000006552701,57.07237858182163],[-126.99837749160382,57.06810868559132],[-126.9986477541284,57.06798333496086],[-126.99881930573571,57.0678329631196],[-126.99896370618042,57.06767047101356],[-126.99909147853703,57.06750362324173],[-126.99920683794303,57.06733574975468],[-126.99930868613984,57.06716461753591],[-126.99939913269536,57.066991331183075],[-126.99948129426822,57.06681698756291],[-126.99954795610316,57.0666416420058],[-126.99959285239876,57.066463101110685],[-126.99963984114905,57.06628566490939],[-126.99969924092319,57.066109254277016],[-126.99975966375195,57.06593283579027],[-126.99982007338724,57.0657552966614],[-126.99988255879525,57.065578862335826],[-126.99994611287646,57.065403540534426],[-127.00000120440212,57.06525966415223],[-127.00001274098612,57.065227074407076],[-127.00008248487758,57.06505170509446],[-127.00015635543751,57.06487630410305],[-127.00023746897891,57.06470196824838],[-127.00032377828529,57.06452871322424],[-127.0004100868136,57.064355458164385],[-127.00049433094885,57.0641822189058],[-127.00057130162135,57.0640067939689],[-127.00063375156833,57.06382923899501],[-127.00068273753678,57.06364954589581],[-127.00073069951318,57.06346986065822],[-127.00079111345923,57.063293442025156],[-127.00087645193724,57.06312243568127],[-127.00101056660677,57.06296226208355],[-127.00121633104588,57.06281946978854],[-127.0014544373086,57.06268987749651],[-127.00170739547144,57.062575860882845],[-127.00198764526529,57.06247956570713],[-127.00227529952541,57.06238993738274],[-127.00257354576179,57.062311434270335],[-127.00280870345996,57.062187465824465],[-127.0030197117909,57.06204799253235],[-127.00325060596359,57.06191957316989],[-127.00351198319268,57.06181221262916],[-127.00378382266936,57.06171037465529],[-127.00406091545462,57.061611857841115],[-127.00434011233587,57.06151556568481],[-127.00461932432606,57.061419272809886],[-127.00489642565711,57.06132187487256],[-127.00519264060794,57.06124450211264],[-127.00549639060519,57.06117939859365],[-127.0057703131143,57.06107866111192],[-127.00604420486161,57.06097680255737],[-127.00633403201932,57.06089275209817],[-127.00663768927413,57.06082428442324],[-127.00694771184654,57.06076249125177],[-127.00726092489819,57.06070403487777],[-127.00757094549898,57.060642240229335],[-127.00786498176784,57.060561515999865],[-127.0081643599138,57.06048747417386],[-127.00848982068518,57.060463662762494],[-127.0088163504189,57.060440962994136],[-127.00914501491745,57.06042160807219],[-127.00947480732006,57.06040560577832],[-127.00980468775404,57.0603929641598],[-127.01013363285588,57.06038369114698],[-127.01046285583674,57.06038562246244],[-127.01079230160664,57.060395396339295],[-127.01112277099439,57.060405161445104],[-127.0114745147909,57.06040019112822],[-127.0117798990768,57.06039782116489],[-127.01210750876228,57.060377346215716],[-127.01243502956292,57.0603535089358],[-127.01276263852182,57.060333032341],[-127.01309254678256,57.06032150290575],[-127.01342275025257,57.060321177658956],[-127.01374151380507,57.060278352725135],[-127.01405474213901,57.060221000550904],[-127.01436155587473,57.060155852410695],[-127.01466405126149,57.06008289203278],[-127.01497617750846,57.060023304743765],[-127.0152480331495,57.059923683999095],[-127.0155113970724,57.059815162982325],[-127.01577263692245,57.05970441651805],[-127.01603812045747,57.059598119377526],[-127.01631409705395,57.05949846427365],[-127.01660792841601,57.059410997384944],[-127.01692135290004,57.05936148186417],[-127.01724581808767,57.05933989772652],[-127.01757362347213,57.0593272525608],[-127.01790361066965,57.059319072460276],[-127.0182357501136,57.05931423690802],[-127.0185679488538,57.05931164151021],[-127.01889802480429,57.05930682039364],[-127.01922707725271,57.05930200644355],[-127.0195571530378,57.05929718365807],[-127.01988725846842,57.05929348053686],[-127.02021739357336,57.05929089707978],[-127.02054654820374,57.059290561928215],[-127.02087677251092,57.05929133830086],[-127.0212060627132,57.05929548335392],[-127.02153440239013,57.05930299722402],[-127.02186397411621,57.059318345741374],[-127.02219158865314,57.05933707097535],[-127.02252025673435,57.05935690785753],[-127.02284889534,57.059375623412144],[-127.02317744479264,57.05939097664031],[-127.0235047755765,57.05939961421014],[-127.02383373871118,57.05939142713376],[-127.02416232696265,57.059369793367644],[-127.02448871869292,57.05934257236543],[-127.02481506358224,57.059314230177435],[-127.02513927151082,57.059282541773975],[-127.02546337272572,57.05924749119846],[-127.02578199435754,57.05920015486175],[-127.0260921824126,57.05914615972585],[-127.02641298647397,57.05918061824027],[-127.02673716372144,57.05922513600814],[-127.02706479326767,57.05924496962217],[-127.02739328339257,57.059258071226836],[-127.0277227237946,57.05926780231009],[-127.02805208792407,57.05927529169479],[-127.02838240217753,57.05927941054883],[-127.02871169308499,57.059283536642546],[-127.02904099755155,57.059288782532676],[-127.02937037862421,57.059296268456414],[-127.02969971330405,57.059302633180515],[-127.03003008801687,57.05930898885507],[-127.03035946945519,57.05931647227987],[-127.03068880447185,57.05932283450523],[-127.03101818615704,57.05933031626557],[-127.0313475514637,57.05933779732434],[-127.03167696347728,57.059346397917615],[-127.03200644937642,57.059358359301335],[-127.03223213603653,57.05938571143194],[-127.03264822564944,57.05931741313545],[-127.03297126678463,57.05928123150363],[-127.03329772537388,57.05925735006941],[-127.03362525360733,57.059234580068726],[-127.03394817257445,57.05919391403103],[-127.03426899738004,57.059152143069475],[-127.03459524489209,57.05915851991696],[-127.03492185450992,57.05917834190585],[-127.03524968544055,57.05920487779616],[-127.03557753050276,57.05923253349],[-127.03590426203645,57.059256835004135],[-127.03623487901858,57.05927213892425],[-127.03656647575686,57.05928519274389],[-127.03689311769112,57.05930613029182],[-127.03721107136855,57.059349550891135],[-127.03752217522826,57.05940647408461],[-127.03783034450089,57.05946902359426],[-127.0381365257013,57.0595349504307],[-127.03844180560628,57.05960536668825],[-127.03874502327254,57.05967579867688],[-127.03904934255807,57.059748462666285],[-127.03935256246605,57.05981889324892],[-127.03965680691567,57.0598893149672],[-127.03995808693128,57.05996424258943],[-127.0402584053322,57.0600414186786],[-127.0405586781004,57.060117473715955],[-127.04085993132152,57.06019127877009],[-127.04116407658952,57.0602572148735],[-127.0414740929822,57.06031189598667],[-127.04180259712786,57.06032496129124],[-127.04213662336144,57.06031332537377],[-127.04248643694277,57.06031276972897],[-127.0428180347045,57.0602877026198],[-127.04305459051656,57.06018270201263],[-127.0432573099355,57.06004771183903],[-127.04344411860272,57.05989715837546],[-127.04361727886517,57.05973774801288],[-127.04378316337096,57.05957615421081],[-127.04394600407693,57.05941682605872],[-127.04409024300843,57.05925652597189],[-127.0442146882858,57.05908965987161],[-127.04433601532408,57.05892169790867],[-127.04447190621602,57.05875810209755],[-127.04462340072355,57.05859886405734],[-127.04478109778749,57.058440696871095],[-127.04493674678041,57.05828254592003],[-127.04508612724956,57.0581222035752],[-127.04523758624102,57.057961844399955],[-127.0453838775819,57.05780152650211],[-127.04552182330023,57.05763791317902],[-127.04563384723261,57.057470024720864],[-127.04571059848257,57.05729457400731],[-127.04580081265243,57.0571212567202],[-127.04591553083769,57.05686256676552],[-127.04595537934841,57.056772588064476],[-127.04600214227466,57.056595136415325],[-127.04604372458581,57.05641660560909],[-127.04608220350396,57.056238099716005],[-127.04612170539208,57.056059585620964],[-127.04616744336087,57.05588214221566],[-127.04622141696538,57.05570463270625],[-127.04628264977785,57.055528185655696],[-127.0463469849634,57.055351713688154],[-127.04641130305347,57.05517524184344],[-127.04646944774966,57.0549988195507],[-127.04651826923913,57.05482135137494],[-127.04654642893942,57.05464292837369],[-127.04656214893004,57.05446236380624],[-127.04658202540394,57.05428288661715],[-127.04662155346608,57.05410549310771],[-127.04667553898437,57.053927983501275],[-127.0467357271134,57.053751544810254],[-127.04680005724666,57.053575072841134],[-127.04686334702897,57.05339860921409],[-127.04692457322314,57.05322216215027],[-127.04697853959824,57.05304465266187],[-127.0470232302804,57.05286721768797],[-127.04705963812054,57.052688728528786],[-127.04708982619994,57.05250916861719],[-127.04711591859531,57.05233076235947],[-127.04713785433214,57.052151268781564],[-127.04715772692411,57.051971791798216],[-127.04717451318665,57.05179233963221],[-127.04719025958046,57.05161289584107],[-127.04720394291614,57.05143346864711],[-127.0472010923939,57.05125305359798],[-127.04719104404323,57.051073817141834],[-127.04719132670044,57.05089449769493],[-127.0472153241385,57.050714987710215],[-127.04725481509222,57.05053647396987],[-127.04730051074228,57.05035791037427],[-127.04734310345086,57.05017937171908],[-127.04737331875866,57.05000093254685],[-127.04737767918252,57.0498204597242],[-127.04731601547165,57.04963939681927],[-127.04714998719813,57.049490553034246],[-127.04689655767555,57.049389481927854],[-127.04661654329344,57.04925948485817],[-127.0464737312495,57.04909140140522],[-127.04629930504085,57.048937020424205],[-127.04612674611059,57.048774779135485],[-127.04597571744787,57.0486078819163],[-127.04587204194198,57.04843724232559],[-127.04583649878892,57.04826829735988],[-127.04586480923695,57.04809547775864],[-127.04594047063145,57.04791891593259],[-127.04605329065835,57.04774317653044],[-127.04619101453291,57.04757284075569],[-127.04634441258159,57.04741022409503],[-127.04650629004456,57.04725538426969],[-127.04667640041826,57.04710047812158],[-127.04685483761415,57.04694774632136],[-127.04704051497023,57.04679607683578],[-127.04723453302482,57.04664770224657],[-127.0474358826785,57.04650375135488],[-127.04764664305856,57.04636420740973],[-127.04786481257018,57.046231327917255],[-127.04809136727106,57.04610398425922],[-127.04834105342916,57.04599214431242],[-127.0486180244801,57.04589801597413],[-127.04891280966982,57.045813830204295],[-127.04921387309885,57.04573295539625],[-127.04950966468834,57.04564763943317],[-127.04978970195106,57.04555236315971],[-127.05006023374641,57.04544931777953],[-127.05032868740484,57.04534516785595],[-127.05059499930674,57.045238793186364],[-127.05086028669986,57.04513242623096],[-127.05112451896541,57.04502494651451],[-127.05138873325357,57.04491746640375],[-127.05165296256531,57.044809985632085],[-127.0519171432495,57.044701383984986],[-127.05218242327864,57.04459501437842],[-127.05244874135862,57.04448863584345],[-127.05271614232706,57.04438448946838],[-127.05298560437217,57.04428032588458],[-127.05325721954358,57.04417950652009],[-127.05353092650158,57.044079790400595],[-127.05380878776202,57.04398116083177],[-127.05408979452787,57.043884746676234],[-127.05437399404506,57.04379166825924],[-127.05466247081998,57.043704158238235],[-127.05495519421079,57.04362109610408],[-127.05525225653113,57.04354584326575],[-127.05555469742683,57.043478391271044],[-127.05586681009478,57.0434254296634],[-127.05618640927771,57.04338249317396],[-127.05651138766066,57.04334735737875],[-127.05683852029883,57.04331556548165],[-127.05716459860913,57.04328266058526],[-127.05748745116435,57.0432452981347],[-127.05781024145071,57.04320569392834],[-127.05813306190242,57.043167209401695],[-127.05845478054886,57.04312649156411],[-127.05877113467716,57.043077971417546],[-127.05908305451962,57.0430182792527],[-127.05940838757685,57.04295847727654],[-127.05973773538858,57.0428952796425],[-127.06005241442153,57.04282323468102],[-127.06033573755789,57.042736874653755],[-127.0605699824521,57.0426284989219],[-127.06074148785314,57.04248925314289],[-127.06086062792917,57.04232129456664],[-127.06093596183268,57.042135760941925],[-127.06097817301686,57.04194601410201],[-127.06099895336762,57.04176428688669],[-127.06100127928165,57.04158719288361],[-127.06098602147586,57.0414080006354],[-127.0609562963965,57.04122780548939],[-127.06091523693027,57.041047702655256],[-127.06086491998386,57.04086879593998],[-127.06080943943373,57.04068993127382],[-127.06074991306775,57.04051334100471],[-127.06065749739348,57.04034150139627],[-127.06053838182083,57.04017324127137],[-127.06042435298359,57.040002698210536],[-127.06034428279774,57.03982963725353],[-127.06029091582957,57.039651876053966],[-127.0602498755521,57.0394728938189],[-127.06022941292245,57.039291502688194],[-127.0602337426987,57.039112151275106],[-127.06026495976556,57.0389348225249],[-127.06031163498778,57.038757367980445],[-127.06037068307575,57.03857981273489],[-127.06044007254465,57.03840329403105],[-127.0605198032577,57.0382278118521],[-127.06060784379031,57.038054503440726],[-127.06070518598472,57.03788223997784],[-127.06081606327167,57.03771434914523],[-127.06094869324659,57.03754964325918],[-127.06109374032215,57.037387077562514],[-127.06124188763472,57.03722448645843],[-127.06138384729219,57.03706194560617],[-127.06151025528682,57.03689616915266],[-127.06161078470993,57.03672724129969],[-127.06169777759067,57.03655394080369],[-127.06177856896076,57.0363795700845],[-127.06185103288352,57.03620302575898],[-127.06191625618007,57.03602541970749],[-127.06197220781253,57.03584788922275],[-127.06201780119795,57.035669322452314],[-127.06205412318455,57.0354908312714],[-127.06208013463333,57.03531242416087],[-127.06209481292076,57.03513410946541],[-127.06209707151078,57.03495477532555],[-127.06209212128802,57.034775499982096],[-127.06207892310435,57.034596291907434],[-127.06206054737368,57.0344160053442],[-127.06203910153042,57.034236864555176],[-127.06201556297803,57.034056620125405],[-127.06199408660946,57.033876358903925],[-127.06197366410554,57.033697209834145],[-127.06195837396582,57.03351689822254],[-127.0619482779863,57.033337665011025],[-127.06194022753024,57.033158415146346],[-127.06193318542175,57.03297803636242],[-127.06192617431161,57.032798778070216],[-127.06192020246232,57.032619511328456],[-127.06191418324195,57.032439124274305],[-127.06190821150436,57.032259857577074],[-127.0619012006415,57.03208059937369],[-127.06189518159455,57.031900212386724],[-127.06188817085791,57.031720954227694],[-127.06188322202478,57.03154167928253],[-127.06187824230794,57.031361283891464],[-127.06187227090518,57.0311820173278],[-127.0618621594451,57.03100278453709],[-127.06184690182728,57.03082359372021],[-127.06183265256593,57.0306432739856],[-127.0618194260812,57.03046294593557],[-127.06180306789066,57.03028152271753],[-127.06177854115654,57.030102407547545],[-127.06173959682123,57.02992453064037],[-127.0616811363894,57.02974905426086],[-127.06159700583855,57.02957714926033],[-127.06149128152667,57.029407661651234],[-127.06137115705532,57.02923941204569],[-127.06124384032627,57.02907234167679],[-127.06111756379835,57.028905262737716],[-127.0609984816208,57.02873700438216],[-127.06089070057514,57.02856753317951],[-127.06078498214913,57.02839804511675],[-127.06065282568511,57.02816713282682],[-127.06042957555397,57.028035585270466],[-127.06020631256429,57.02790291674341],[-127.06000241231192,57.027762245257385],[-127.05980660573415,57.027615904035585],[-127.05962203873152,57.02746610895595],[-127.05946410548727,57.02730937269488],[-127.05934301908896,57.02714337084865],[-127.05925168085582,57.026971523401805],[-127.05917365944661,57.02679620547385],[-127.05908943752895,57.02662093794734],[-127.05898167081972,57.02645146541563],[-127.05884510492828,57.02628446839093],[-127.05871373317399,57.0261185497452],[-127.05862243101494,57.025947822444586],[-127.05859697532786,57.02577207705713],[-127.0586209038853,57.025592568142024],[-127.05865920113477,57.02541070101617],[-127.05867793634613,57.02523011363181],[-127.05865342737988,57.02505099850544],[-127.05861222531618,57.02486529480095],[-127.0585423028448,57.02468430740742],[-127.0584243907725,57.02452052073833],[-127.05823716069698,57.0243853151094],[-127.05798560425886,57.02427304609616],[-127.05769939085238,57.02417450665454],[-127.0574110701865,57.024074862998575],[-127.05714925829565,57.02396379641098],[-127.05691683791233,57.023834559379814],[-127.0566874414304,57.02370305599645],[-127.05643690216216,57.02358965515216],[-127.05613387497291,57.02351702517746],[-127.05580866539866,57.023462505751986],[-127.0555259777919,57.02337962307592],[-127.05529882032161,57.023253702763945],[-127.05509386225548,57.023110791542955],[-127.0549122819253,57.02295536282655],[-127.0547573473309,57.02279411451924],[-127.05463942644957,57.02262920417652],[-127.05457070270833,57.022453808967825],[-127.05451938643853,57.02227378994773],[-127.0544547251376,57.02209612041239],[-127.0543449915923,57.02192890219505],[-127.05418603296675,57.02177104808869],[-127.05401886110019,57.02161438100346],[-127.05387523387063,57.02145191964041],[-127.05374898365898,57.021283713984836],[-127.05369164236222,57.021109347134164],[-127.05368572488078,57.02093120207427],[-127.0536993363374,57.02075065759951],[-127.05372223155346,57.02057003802369],[-127.05373895701624,57.02039058909971],[-127.05375360689405,57.02021003628081],[-127.0537631260118,57.0200306457103],[-127.05374893282004,57.019851447044545],[-127.05371620539856,57.01967239837818],[-127.0536865618311,57.01949332477498],[-127.0536816527783,57.01931405104854],[-127.05371178377914,57.0191344938076],[-127.05374194518171,57.01895605704259],[-127.05373599711592,57.018776791791524],[-127.05370527045363,57.01859548565664],[-127.05363345822086,57.018420115530425],[-127.05351552488266,57.01825408421212],[-127.05337605105049,57.01809158919327],[-127.05322323425399,57.01793144339277],[-127.05306632718325,57.01777245122769],[-127.05291044371253,57.01761345062481],[-127.05272671444263,57.017453554284025],[-127.05252646742254,57.01729267052444],[-127.05234898577211,57.0171349646245],[-127.05224312190626,57.01695762776557],[-127.05227582846801,57.01683408571187],[-127.05255156871625,57.016702975785776],[-127.05285199825346,57.01660752825446],[-127.05316053743002,57.01654451492597],[-127.05348274013964,57.016491476674595],[-127.05379544429363,57.016430669546715],[-127.0540754731854,57.01634322921974],[-127.05432479538429,57.01622577784616],[-127.05454782316659,57.01608948693914],[-127.05474374919324,57.015942208125],[-127.05491371872002,57.01578841507787],[-127.05505660333527,57.01562363422107],[-127.05515907433436,57.015451335782174],[-127.05520992800305,57.01527609348608],[-127.05521637015127,57.01509784900183],[-127.05519905810813,57.01491755563834],[-127.05517347174278,57.014736208646475],[-127.05516028192541,57.014555881918994],[-127.05516767072518,57.01437426773893],[-127.05525780315133,57.01420319003881],[-127.05540176407095,57.01404064161216],[-127.05557269979745,57.01388459857584],[-127.0557739863044,57.013745119790705],[-127.05601908675067,57.013625458029765],[-127.0562777433617,57.01351128935283],[-127.05652387943022,57.013391618234465],[-127.05676059450289,57.013266419589634],[-127.05696797800225,57.01312464806057],[-127.05716384889769,57.01297624545293],[-127.05737761305186,57.01284114569469],[-127.05764290473101,57.012743730978244],[-127.0579628854125,57.01268621670393],[-127.05828185729115,57.01262983054258],[-127.05853778732049,57.01252912796687],[-127.05871488605791,57.01237303070345],[-127.05890038071423,57.01222246844245],[-127.05905933987785,57.01211919137045],[-127.05906793344393,57.01194429154957],[-127.05920126735296,57.01180872232965],[-127.05941935966399,57.011644445691296],[-127.05957774963719,57.01148289600457],[-127.05968434173435,57.011311681409175],[-127.05980027619012,57.0111426320976],[-127.05992658939742,57.01097686030964],[-127.06006746654379,57.010815452639434],[-127.06023120999883,57.01066170353631],[-127.06042191224132,57.010513338168494],[-127.06063658076125,57.01037486360856],[-127.06086794949893,57.010244097536265],[-127.06111202060269,57.01012555525979],[-127.06137076217964,57.010015858549615],[-127.06163996020635,57.009911679570216],[-127.06191442387198,57.00981193989312],[-127.06219096326925,57.0097121826968],[-127.06246330156272,57.00961021778704],[-127.0627283106068,57.0095038293191],[-127.06291974010553,57.009382351232205],[-127.06311043931021,57.00927208586191],[-127.06343726388957,57.00912820791889],[-127.06362385588201,57.008980992134525],[-127.06377606635579,57.008820608595535],[-127.06390226190992,57.00865147186699],[-127.06408178433719,57.00850991673173],[-127.06436988168116,57.008419026026445],[-127.06462651091904,57.00830821937346],[-127.06480469706884,57.00815546713863],[-127.0649610825109,57.007997289495684],[-127.06511018443058,57.007836929858605],[-127.06526865889117,57.007679855470705],[-127.06544583208124,57.00752823137186],[-127.06565110861952,57.00738646330651],[-127.06586786347872,57.00725020445034],[-127.06599117935627,57.007088934258185],[-127.06606872835663,57.00691234893641],[-127.06619394764071,57.0067454594754],[-127.06636068622464,57.00658943681898],[-127.0665776514101,57.00646101999022],[-127.06688676718082,57.00638564128517],[-127.06719300022282,57.00631813038797],[-127.06750454700203,57.00625617869994],[-127.06781500861675,57.00619199375794],[-127.06812133176395,57.006127842027446],[-127.0684307839382,57.00606478459066],[-127.068740328426,57.006005087761636],[-127.06905196353595,57.00594649372422],[-127.06936469842387,57.005890131305236],[-127.06967848551939,57.005834880185695],[-127.06999338713598,57.005782981250555],[-127.07027317284037,57.00576499134523],[-127.07061277740648,57.00567478391228],[-127.07090093162648,57.00558724027108],[-127.07119012299725,57.00549968745204],[-127.07148895102955,57.00542550309185],[-127.07179944521313,57.00536354971176],[-127.07209934067625,57.005290475852696],[-127.07239491038112,57.00521071271919],[-127.07269268065714,57.00513541358487],[-127.07299677069099,57.0050656651828],[-127.07330303024088,57.00499926028382],[-127.07360927225096,57.004932854803386],[-127.07391552968768,57.00486644846961],[-127.07421859342277,57.004796705657654],[-127.07451950183444,57.004723617818286],[-127.07481297049583,57.00464274578961],[-127.07509898446585,57.00455296904296],[-127.07538185216816,57.00446097624992],[-127.07566786346105,57.0043711982646],[-127.07596239676907,57.004291435527],[-127.07626653686542,57.00422392041505],[-127.07657712415856,57.00416531688591],[-127.07689088684236,57.004110048448084],[-127.07720570191738,57.00405589124231],[-127.0775183781442,57.003998388866805],[-127.07783001501912,57.003940894341035],[-127.07814267289666,57.00388339060703],[-127.07845540910313,57.00382812687346],[-127.07877132088338,57.00377619817398],[-127.07908841078265,57.00372986245086],[-127.07941091034849,57.00369244671455],[-127.07973666517022,57.00366060668786],[-127.08006246584391,57.003631006867906],[-127.08038606493506,57.00359582098654],[-127.08070324577099,57.003552842662025],[-127.08101385235994,57.00349534901658],[-127.08131907865683,57.00343005439735],[-127.0816210163053,57.00335806216462],[-127.0819197446297,57.0032816130882],[-127.08221741835403,57.00320405138525],[-127.08251611279131,57.00312648050705],[-127.08281589096794,57.00305114132876],[-127.08311461453798,57.00297468952647],[-127.08341222041456,57.00289488422587],[-127.08371094158792,57.00281843106341],[-127.08401511955901,57.00275313879865],[-127.08441969000971,57.00273968252369],[-127.0846816420561,57.00271172369346],[-127.0849935622538,57.00270127908276],[-127.0853150968393,57.002740064519394],[-127.0856357365631,57.00278333944721],[-127.08596838638135,57.002777202419665],[-127.08622716580776,57.00267305907618],[-127.08647409811776,57.00255108284172],[-127.0867621928828,57.00246350428311],[-127.0870860607973,57.002438385732404],[-127.08741846937272,57.00242440206099],[-127.0877512424433,57.00242274223719],[-127.08807723967567,57.00243682806241],[-127.08838799044368,57.00249474802721],[-127.0886940902142,57.00257063743197],[-127.08901136488343,57.002603845865046],[-127.08934580275738,57.00258871959366],[-127.0896617213893,57.00253788494969],[-127.0899256164012,57.00243257064371],[-127.09016935811198,57.00230725191216],[-127.09041113319299,57.00218531131049],[-127.09064872276194,57.00206116391967],[-127.09087356835988,57.00192367444783],[-127.0911741327841,57.0017676185623],[-127.09139949204003,57.001793746713304],[-127.0917059950488,57.00184721152938],[-127.09196270918306,57.001961611393234],[-127.09221242826212,57.002083914404096],[-127.09248409686566,57.00218025651673],[-127.09279565143532,57.00223031430487],[-127.09312712592038,57.002255548549996],[-127.09345272184001,57.00229203839289],[-127.09377539540243,57.00233415551187],[-127.09409882432016,57.00233031656184],[-127.09442449175457,57.002296198935035],[-127.09474690067265,57.00225650436771],[-127.0950658915833,57.00220563069712],[-127.09538623883152,57.002165951881906],[-127.09571270100898,57.00215984197087],[-127.0960405677728,57.002167167883],[-127.09637068637244,57.00218119823861],[-127.09670070945332,57.00219186644578],[-127.09702940698627,57.00219245863473],[-127.09735767386671,57.002177363737566],[-127.09768592400776,57.00216226815171],[-127.09801524421431,57.002148283415714],[-127.09834237606452,57.00212983348516],[-127.0986661057046,57.00210020438294],[-127.09898635240606,57.00205715540136],[-127.09930324382715,57.00200516831275],[-127.09961609440964,57.00195545599837],[-127.09994212403545,57.00197063254119],[-127.10023269993407,57.002007401390145],[-127.1006053821837,57.00203226828185],[-127.10092478353002,57.00203180852248],[-127.10122899018621,57.00196871694284],[-127.10152734818271,57.00188101858912],[-127.10180046900754,57.00177560186842],[-127.10203187073442,57.00165260649241],[-127.10221406222811,57.0015020097636],[-127.1023691002474,57.00133931498679],[-127.1025149064128,57.001177818938906],[-127.10265031415285,57.0010130487081],[-127.10276812119118,57.00084506535134],[-127.10286003848226,57.0006728184492],[-127.10291889613245,57.000497489523895],[-127.10295290307026,57.00031788835554],[-127.10297657689951,57.00013725405888],[-127.10296438800329,56.99999951051966],[-127.10294994110325,56.99981919930858],[-127.1030512301827,56.99965023506288],[-127.10324695118864,56.99950512584515],[-127.10349602992761,56.99938870229431],[-127.10376823436896,56.99928777202194],[-127.10404358353486,56.99918905591029],[-127.10431049813113,56.99908368654418],[-127.1045805895784,56.99898165178074],[-127.10485066392052,56.99887849589153],[-127.10510704870354,56.9987653693271],[-127.10533081732035,56.99862898444596],[-127.10532075376622,56.998457601993536],[-127.10533310906463,56.99827818422624],[-127.1053135742221,56.99810015802377],[-127.10519844991971,56.9979296678456],[-127.10521704997446,56.997752438536644],[-127.10532961326317,56.99758225618006],[-127.10547336496347,56.99742189516262],[-127.10562744755681,56.997262566934],[-127.10578881138545,56.99710541807243],[-127.10595119564012,56.99694826034497],[-127.10611570290534,56.9967933257853],[-127.10628538267439,56.9966394677578],[-127.10645713750802,56.99648559187184],[-127.10662785276277,56.99633172460369],[-127.10681514267628,56.99618107826593],[-127.10695482755284,56.996022991664645],[-127.106951668971,56.995841464523195],[-127.10696093422501,56.995662073135485],[-127.10696916120952,56.99548269060019],[-127.10698872568378,56.99530321164657],[-127.10703407877949,56.995124634041744],[-127.10710217006798,56.994949225111945],[-127.10715788590169,56.99477280074639],[-127.10718980817285,56.99459321670223],[-127.1072073113368,56.994413755350436],[-127.10721141726623,56.99423440800391],[-127.10720008281608,56.99405519204909],[-127.10715170426703,56.993877411988024],[-127.10710436429974,56.993699623098806],[-127.10708375324621,56.99352048612566],[-127.10706212073721,56.99334135786274],[-127.1070332874978,56.9931622908772],[-127.10700135665728,56.992983250260345],[-127.10697357781245,56.99280529504194],[-127.10694164754557,56.992626254454315],[-127.10690665195806,56.9924483606587],[-127.10681515158086,56.99227543029979],[-127.10673185864827,56.99210130939944],[-127.10666807742822,56.991924781135545],[-127.10664952904159,56.99174562679484],[-127.10664231729464,56.99156637606422],[-127.10661248146265,56.99138843845778],[-127.10652408265224,56.99121548167594],[-127.10639979348637,56.99104843352861],[-127.10633703711417,56.990871896543474],[-127.10627736252603,56.990695333353756],[-127.10620537941635,56.99051999550075],[-127.10612314678959,56.99034698616109],[-127.10603371452717,56.99017403799353],[-127.10594837007827,56.98999993434899],[-127.10585279282684,56.98982815903924],[-127.10576336298337,56.98965521074732],[-127.10568523762846,56.98948104566347],[-127.1056142810248,56.98930569894858],[-127.10555153109321,56.989129161795276],[-127.10550006879635,56.98895140803855],[-127.10546406168056,56.9887735229817],[-127.10536949547021,56.98860061821784],[-127.10534065717397,56.988421551578476],[-127.10540566331072,56.988246170515154],[-127.10542009090481,56.98806673635875],[-127.10545204788323,56.98788827398965],[-127.10533820010522,56.987725619416345],[-127.10510685825741,56.9875964629631],[-127.10489397313422,56.98746378730264],[-127.1048055102874,56.98728858911048],[-127.10473559968636,56.987113233365655],[-127.10467697621691,56.98693666108306],[-127.10461423444144,56.98676012376363],[-127.1045525147097,56.98658357776357],[-127.10449904963076,56.986406961686704],[-127.10446713617152,56.98622792127564],[-127.10445066015005,56.98604874983785],[-127.10443316283227,56.98586958709055],[-127.10440125012455,56.98569054672905],[-127.10437757513401,56.985511436460314],[-127.10418921696129,56.985335965351794],[-127.103957642691,56.985233705868296],[-127.10380635160513,56.98512964419932],[-127.1036853195263,56.98496704956601],[-127.10369459737757,56.98478765974621],[-127.10370489655874,56.98460826128274],[-127.10360233602123,56.98444326855758],[-127.1034005345751,56.98430153136085],[-127.1032456487983,56.98414370633357],[-127.10314395240427,56.9839731025305],[-127.10299720979658,56.98381184613477],[-127.10289241825845,56.98364126843129],[-127.10272631583348,56.98348690006299],[-127.1024757826925,56.98318979831999],[-127.10279774669735,56.98299655175442],[-127.10296201454507,56.98283490013545],[-127.10323618906905,56.982699212963546],[-127.10369386542921,56.98253395125365],[-127.1039318627361,56.982394086744726],[-127.10438696540452,56.98206746468676],[-127.10517150838774,56.981738042798426],[-127.10559985377999,56.98162793742428],[-127.10591924714898,56.98148961887055],[-127.10622213298981,56.98135031920453],[-127.10647608045899,56.98122824546051],[-127.10674391746342,56.98112398413131],[-127.10709499433797,56.98101341042696],[-127.10738239793292,56.98090898125504],[-127.10771645042021,56.9807794990054],[-127.10806826905367,56.98065883010301],[-127.10838764552344,56.980520505581026],[-127.10870596039831,56.98041693077696],[-127.10907195490311,56.98032415562607],[-127.10942324370646,56.980221418619706],[-127.1097091131141,56.98010018695923],[-127.10999447603882,56.97999689006361],[-127.11030470754298,56.97989898374514],[-127.11065425713831,56.979771602997104],[-127.11098461949359,56.979693695629216],[-127.11138030425582,56.97959505689416],[-127.11168315545098,56.97945574469476],[-127.11200353023929,56.97931740268211],[-127.1123071559031,56.979169116860085],[-127.11255053601208,56.978967552365674],[-127.11278663413431,56.978763808330825],[-127.11287302338825,56.9785815171898],[-127.11307218548743,56.978382571410414],[-127.11339490314433,56.97807610214449],[-127.11426595987955,56.9775744186208],[-127.11492907823771,56.977217960189044],[-127.11522483007224,56.97711904544028],[-127.11564816368697,56.97687446664723],[-127.1157503933244,56.976813072471764],[-127.11587547686108,56.97661699921519],[-127.11687739430458,56.97587210621245],[-127.1178457260425,56.97524852876359],[-127.11808175021514,56.97515012074826],[-127.11875072833529,56.97513988580138],[-127.1196365407176,56.974973125765956],[-127.12135035217831,56.97417611986396],[-127.12318140001958,56.972387388745105],[-127.12457828377445,56.971567300791236],[-127.12548250860269,56.971083186084364],[-127.12622738087761,56.97088958291221],[-127.12654766515573,56.970540516012264],[-127.12672034035519,56.969967468759535],[-127.12643572701913,56.969317693453384],[-127.1262645121052,56.96870840133366],[-127.12639466645373,56.96812451655354],[-127.12658590782124,56.96776424007319],[-127.12775713943556,56.96771934722534],[-127.1281029495186,56.96771634792908],[-127.12825125224927,56.96771842344363],[-127.12854683679537,56.967722582825274],[-127.12882697522116,56.96772687561119],[-127.12899070774866,56.967728816349585],[-127.12932001783585,56.96772483637142],[-127.1296488324802,56.96773879086882],[-127.1299758353716,56.9677617257834],[-127.13035484293111,56.96776739755001],[-127.13074932967952,56.96777405431194],[-127.13112527323517,56.96781561250296],[-127.13152801063612,56.96782331583436],[-127.13195920312872,56.9678531840154],[-127.13233496722813,56.967958619549385],[-127.13269522097693,56.96799134433828],[-127.13304048990088,56.96800514697879],[-127.13336853450836,56.96802806432868],[-127.13353231797375,56.9680311196082],[-127.13390979787305,56.96805472538664],[-127.13411990536277,56.96809323807004],[-127.1344040517964,56.968163604595006],[-127.13447842034358,56.96820666275057],[-127.13473002283868,56.96846558833871],[-127.13482766826446,56.96863508116268],[-127.13495301281975,56.968800970142134],[-127.13509774051583,56.96896108640136],[-127.13527201179643,56.96911085841958],[-127.13545855267475,56.96925716103671],[-127.13566749059977,56.96939542300071],[-127.13590386446852,56.96952111742848],[-127.1361218786417,56.96965257529414],[-127.13621554836236,56.96982658478737],[-127.13627840734574,56.970003104819156],[-127.13637713402056,56.970173707994334],[-127.13650250683494,56.97034071619988],[-127.13660734487482,56.97050902446735],[-127.13674600939524,56.970672554257376],[-127.13688464203041,56.97083496351459],[-127.13702841401086,56.970997327721506],[-127.13715489599007,56.97116656712745],[-127.13747088315212,56.97119854539867],[-127.13803738170773,56.97127652090888],[-127.13835582635033,56.97132192385741],[-127.13867331691571,56.97136957577317],[-127.13898096260135,56.97143300284139],[-127.13928931550114,56.971485216066554],[-127.13961444637212,56.971512626305284],[-127.13993560981132,56.9715456739764],[-127.14022740356901,56.971629409554915],[-127.14050793655043,56.97164600162307],[-127.14078726801176,56.9715875171508],[-127.14111376250176,56.97159137713141],[-127.1414169648328,56.971643630544385],[-127.14164922084187,56.97176823045189],[-127.14196966598793,56.9718113656925],[-127.14229078396534,56.971842166605335],[-127.14259924431299,56.971897733205765],[-127.14286553827476,56.97198953183783],[-127.14320158424944,56.97203813046327],[-127.14352300440939,56.97207901196035],[-127.14382957613535,56.97214019576366],[-127.14410626765977,56.972235262554015],[-127.14443335059664,56.972259281589956],[-127.14475934627605,56.9722810679867],[-127.14508716783965,56.97229499262754],[-127.14541423505244,56.97231788865074],[-127.14572176612367,56.9723768182076],[-127.14601655848561,56.97245715251041],[-127.14633426791006,56.97251150817481],[-127.14659542704942,56.972396015853086],[-127.14680875235902,56.97226413434657],[-127.14707874336172,56.972168735694105],[-127.14740611101111,56.97220171032047],[-127.14768768311741,56.97228776095375],[-127.1479109413561,56.97242027421758],[-127.14798736465653,56.972601152476436],[-127.14822110761062,56.97267081372016],[-127.14856264281106,56.972661073952665],[-127.14889108911514,56.97266153517523],[-127.14922070667592,56.97266646800596],[-127.14954926979954,56.97267028862506],[-127.1498770295218,56.97268196039523],[-127.15019934942073,56.97271833478006],[-127.15041169110202,56.97276128466399],[-127.15083532132259,56.97281133041735],[-127.15115687318954,56.972821933209026],[-127.15148388150423,56.97284257317654],[-127.1518061372678,56.97287670278192],[-127.15212364080605,56.97292432206172],[-127.15243322859492,56.97298209699202],[-127.15274485950904,56.97303985308805],[-127.15303466728156,56.97312469866533],[-127.15333836744246,56.973192609952676],[-127.15365299701014,56.9732469752234],[-127.15395276613785,56.97332052345931],[-127.15425929716314,56.973379441929985],[-127.15454608171498,56.97346655243819],[-127.15483286756364,56.97355366231929],[-127.15511567169465,56.973645289742024],[-127.15541845932304,56.973716566467026],[-127.15573093656225,56.97376758381729],[-127.15605419132021,56.97380057344584],[-127.15636302350619,56.97386731148325],[-127.15663266201258,56.973965776925894],[-127.15675508876197,56.9741339138203],[-127.15687610886584,56.974289735441026],[-127.15714056291064,56.9743871253095],[-127.15739825853993,56.97449914389923],[-127.15762862570234,56.97462709503334],[-127.1578519152182,56.974759591589844],[-127.1580893646177,56.97488299611091],[-127.15834100830838,56.97499954961146],[-127.1585936237492,56.97511385259042],[-127.15885434098938,56.975223600114894],[-127.15908066716995,56.975353826227064],[-127.15930803251254,56.975484042708594],[-127.15952117366736,56.975621109828595],[-127.15968333482282,56.97577432097877],[-127.15983947301793,56.97593318916925],[-127.16007427107085,56.97589971565508],[-127.16029007658933,56.97554364901686],[-127.16034826323386,56.97535597278774],[-127.16047361262642,56.97514192121968],[-127.16066468112389,56.97495642136383],[-127.16053946625222,56.97449132697804],[-127.16065792712088,56.97432216481951],[-127.16114590193197,56.97414858364243],[-127.16181460960676,56.97399355897259],[-127.16202159483991,56.973789983770025],[-127.16224283941828,56.97364904006876],[-127.16231051287737,56.9736058487063],[-127.16259568658872,56.97350243691786],[-127.16287980384323,56.97339791324263],[-127.16316572496046,56.97328552790356],[-127.16341814697834,56.973154389670185],[-127.16367310554172,56.97300529703883],[-127.16391028456452,56.972847397407435],[-127.16416523919189,56.97269830384258],[-127.16437262787224,56.972508169698294],[-127.1643799801058,56.972376981933145],[-127.16455968221123,56.97208847375288],[-127.16517125466387,56.97198661608774],[-127.16554085422328,56.97195192482245],[-127.16609753454144,56.97187296868494],[-127.16638268526188,56.971769548715756],[-127.16666679692416,56.97166613743556],[-127.16695191064854,56.971561595836995],[-127.16731919606823,56.971450712612345],[-127.16768644541543,56.97133870796331],[-127.16800304380087,56.97125405396509],[-127.16832064433191,56.971168269485545],[-127.16865370835504,56.97108346597421],[-127.16898600537067,56.97100763409969],[-127.1693025981803,56.970922976957155],[-127.16960372476616,56.97083733742524],[-127.16990381251145,56.97075170653382],[-127.17018817946217,56.97065725078863],[-127.17048950608903,56.97054471057206],[-127.17077388654431,56.970450253411364],[-127.17084103453746,56.970423872806336],[-127.17105700795737,56.97038270377256],[-127.17143626717385,56.970361357035486],[-127.17180176125933,56.970294184485475],[-127.1721343344342,56.97022730760861],[-127.17245011510083,56.97015049495436],[-127.17354563348557,56.96981561087616],[-127.17399898789917,56.96975996695909],[-127.17424865416729,56.9697095228199],[-127.17429809178435,56.96971019713787],[-127.1746286527225,56.969679194424785],[-127.17499391205321,56.96960417004029],[-127.1753601567815,56.969528015014305],[-127.1757076911766,56.96948004562343],[-127.17603750160515,56.9694580117006],[-127.1764332001897,56.9694365016394],[-127.17684569049467,56.96942492473463],[-127.17725738273299,56.96942119865391],[-127.17762138146854,56.969373075082814],[-127.17801784170194,56.96934258767636],[-127.17834764963266,56.969320547897574],[-127.17872687788558,56.969299180066585],[-127.17914856736253,56.96884819739971],[-127.17924682259292,56.9682578175946],[-127.17932227218866,56.967426694113364],[-127.179317990871,56.966815951297185],[-127.17939077480203,56.96532588160958],[-127.17999952145787,56.96466587099446],[-127.18035895794984,56.96446984866441],[-127.18096967458655,56.96414378383197],[-127.18165536118599,56.96337547975887],[-127.18172868467789,56.962577997307314],[-127.18222894469228,56.96200749771295],[-127.18281845441612,56.96139471863543],[-127.18285455622967,56.960659213257415],[-127.18284240782728,56.95982776734851],[-127.18287158280052,56.95923577472493],[-127.18293461929375,56.95793631598562],[-127.18297962469336,56.95628400403104],[-127.18295437112002,56.955729490867135],[-127.1825260109553,56.9551181278315],[-127.18234265009653,56.95430729408115],[-127.18263317492135,56.95374766793456],[-127.18296071562222,56.95325382519274],[-127.18312705240788,56.95233670734844],[-127.18368507204343,56.95170852379226],[-127.18434616390574,56.95102000235066],[-127.18434099075687,56.9490431546059],[-127.18449758888951,56.94791095391427],[-127.1845146842908,56.946893214528316],[-127.18411580290778,56.94616728241277],[-127.18355263750801,56.94545181114299],[-127.18272535928791,56.94477908628494],[-127.18223955968351,56.944169371301676],[-127.18266717471228,56.94305040082719],[-127.18352744693152,56.941782922137534],[-127.18481613900668,56.94093403016691],[-127.18566165377352,56.94032787472423],[-127.18606896902688,56.93999131542875],[-127.18619661471814,56.93962592886793],[-127.18753466028699,56.93941534784004],[-127.18932702788976,56.939192750979814],[-127.19064024421793,56.93854529902121],[-127.19300063977201,56.936668922691105],[-127.19416164698848,56.93552861205925],[-127.19428541081298,56.93424429595628],[-127.19398314389153,56.93268708881704],[-127.19329835003845,56.93159735702299],[-127.19267791509016,56.930325482414936],[-127.19295239561444,56.92909133968258],[-127.19264957436883,56.92718112839746],[-127.19193213015713,56.92596169631555],[-127.19133198388866,56.92564220633829],[-127.19021994744313,56.925329646101325],[-127.18997276480238,56.92518398191365],[-127.18974761397236,56.92505268423907],[-127.18952144485914,56.92492139552395],[-127.18929429201803,56.9247912361179],[-127.18906708972301,56.92465995612164],[-127.18883890370036,56.924529805427056],[-127.18861175546823,56.924399644861296],[-127.18838559404973,56.924268354225404],[-127.18816045396622,56.92413705387956],[-127.18793735339104,56.92400461384771],[-127.18771629392496,56.923872154796044],[-127.18749727395166,56.92373855607968],[-127.18728231658447,56.92360379921808],[-127.1870704184701,56.92346789340065],[-127.1868615795952,56.92333083864246],[-127.18666691088056,56.923186930111136],[-127.18651289722354,56.92302696060515],[-127.1863955313086,56.92285544954727],[-127.18630791720776,56.92268142536607],[-127.18624079452218,56.92250497268667],[-127.18623001240633,56.922321281492],[-127.18623144618641,56.92213411675748],[-127.18622614033818,56.921961582281284],[-127.18629501975494,56.921793973673864],[-127.18640810878247,56.92162596125631],[-127.18654386417212,56.92145998303721],[-127.18669412945911,56.92129723412719],[-127.186853705656,56.92113664130994],[-127.1870133839505,56.92097940937188],[-127.18718762438647,56.92082764748614],[-127.18737741208484,56.9206802259184],[-127.18757238066598,56.92053387737429],[-127.18776218189555,56.920386455122596],[-127.1879374709018,56.92023580331784],[-127.18808888325289,56.92007752500719],[-127.18821850947639,56.91991272182191],[-127.18833153365358,56.91974358773699],[-127.18843007916844,56.91957122403799],[-127.18853988788742,56.91939763654452],[-127.18862499177105,56.91922315438476],[-127.18865344948203,56.919045828592374],[-127.18863552251109,56.91886444463934],[-127.18864425139621,56.918680575434735],[-127.18864670942101,56.9184934016404],[-127.18862700316876,56.918320999368134],[-127.18860852435216,56.91812168989435],[-127.18870229715549,56.917928077146456],[-127.18901129330081,56.917879301491446],[-127.18933381520884,56.91783600457098],[-127.18954873125534,56.91780377841379],[-127.18983509510588,56.91778770738388],[-127.18988296351216,56.917706580892606],[-127.18987116388617,56.91752402042178],[-127.1898161951691,56.91734185544598],[-127.18981797334672,56.917165894626756],[-127.18991971912592,56.916997983313706],[-127.19006171375254,56.91683530647036],[-127.19021505599152,56.91667364615365],[-127.1903497579856,56.91650767384195],[-127.19043906226669,56.91633651419009],[-127.190491122711,56.91615785122734],[-127.19052770472423,56.91597708881656],[-127.19057154189814,56.91579850123554],[-127.19065370993819,56.9156296482397],[-127.1909123122284,56.91551409004203],[-127.19119951976992,56.91542628558083],[-127.19145820641606,56.915314087504996],[-127.19169706049053,56.915191984907324],[-127.1918649858777,56.915036912868636],[-127.19195322587018,56.91486464135077],[-127.19204659568784,56.91469232270032],[-127.19219116063415,56.91448031078933],[-127.19219215326835,56.914345821956864],[-127.19218965453786,56.91416541795553],[-127.19218104040482,56.91398619077834],[-127.19215270748168,56.91390128040476],[-127.19194551026034,56.913783271206135],[-127.19185368218662,56.91370566751679],[-127.19173848017552,56.91353750451158],[-127.19165295320236,56.91336458648561],[-127.19158171137319,56.91318817536873],[-127.19154126726785,56.913010361005874],[-127.19149469182764,56.91283372357174],[-127.19141944463779,56.91266071118003],[-127.19130120732696,56.912493696457595],[-127.19113909926524,56.9123371700172],[-127.19098414361713,56.912179457145356],[-127.19076032536682,56.91202237556116],[-127.19080930365027,56.91184374117106],[-127.19107358018418,56.91171356206367],[-127.19096312211624,56.91163164613391],[-127.19059950984445,56.91157446457961],[-127.19030344922234,56.91150769756726],[-127.19010951845154,56.911386202209066],[-127.19006407388378,56.91117929630608],[-127.18996729805107,56.91100760130202],[-127.18986335575326,56.91083709257871],[-127.18978602990374,56.91066297795499],[-127.18973428428716,56.91048526697024],[-127.18966720169152,56.91030993781938],[-127.1895601878809,56.91013945709995],[-127.18941849503251,56.90997825925025],[-127.18926863323793,56.909818256748714],[-127.18909841072505,56.90966516450935],[-127.18890274867768,56.90952014961138],[-127.18870510187662,56.90937739393402],[-127.18852267204483,56.90922777474858],[-127.18833920778829,56.90907816480093],[-127.18817612475206,56.908922764835374],[-127.18801708448296,56.90876508638758],[-127.1878438314716,56.90861314108221],[-127.18766037276889,56.90846353023573],[-127.18748201078166,56.908312751889895],[-127.18733829457466,56.90815157060766],[-127.18719967482696,56.907989221939815],[-127.18719955400041,56.90771802376188],[-127.18720431477135,56.90753867494971],[-127.1872152409356,56.90735926978706],[-127.18720150536254,56.907180090130026],[-127.18718467900631,56.90700093875277],[-127.18720486135763,56.90682144902366],[-127.1872641775351,56.90664496346134],[-127.18732452893961,56.90646846842097],[-127.1873817709061,56.90629088114558],[-127.1873885857335,56.90611151370077],[-127.18739847488197,56.90593211816188],[-127.1873970693275,56.90575282593178],[-127.18739255495763,56.90557244149614],[-127.18735008309307,56.90539464550772],[-127.18726253879542,56.90522174430484],[-127.18715556774082,56.90505238266243],[-127.18705063461711,56.90488188167161],[-127.186950797254,56.90471021338368],[-127.18683156792024,56.904543204929304],[-127.18672560189883,56.904372713199784],[-127.18663498846993,56.904199839787985],[-127.18661300239302,56.90401961522277],[-127.18675199234653,56.90386033249692],[-127.18692097646918,56.90370749936419],[-127.18711380609793,56.90356117192178],[-127.18734849130718,56.90343911583767],[-127.18757366025775,56.90330818112976],[-127.18783393260408,56.903216147800286],[-127.18812733753055,56.90323251428335],[-127.18830574129096,56.90308519641009],[-127.18839289967204,56.90291181779794],[-127.18859000207057,56.90277105231613],[-127.18882882210735,56.90265007633385],[-127.18902177728869,56.90250822751371],[-127.18925316881833,56.902379474192735],[-127.1895246208936,56.902283973064876],[-127.18979898945157,56.90218284136219],[-127.19008717052415,56.90209615097348],[-127.19034482096222,56.901986206111694],[-127.19060240080744,56.901874020071084],[-127.19083497531108,56.90175085632613],[-127.19105383790499,56.901616611408684],[-127.19128003743138,56.90148678141642],[-127.1915250401529,56.901366864349185],[-127.19178894987222,56.901260221109226],[-127.19206019661488,56.901157992577716],[-127.19233253032931,56.90105799479959],[-127.19262924629217,56.90098242686404],[-127.19293659782299,56.900917967063194],[-127.19323647121587,56.90084461002263],[-127.19352147487743,56.900755699818816],[-127.19378958843434,56.900652375782784],[-127.19407351913085,56.90056235356504],[-127.19436276701317,56.90047788507625],[-127.19465622720871,56.900396739138294],[-127.19494968617038,56.90031559254126],[-127.19523269660802,56.90022893819544],[-127.19547141069086,56.90010570952589],[-127.19565927513908,56.899999758563716],[-127.19570071155425,56.899976963837936],[-127.19593208390715,56.899849319313844],[-127.19616449031614,56.89972166484632],[-127.19638021426726,56.89958631911589],[-127.1965949175643,56.899450982432676],[-127.1968095681777,56.89931452522363],[-127.19701901923588,56.89917587429171],[-127.19722539496132,56.8990372513819],[-127.19745257774015,56.89890740145608],[-127.19767977542794,56.898777550992165],[-127.1978954887895,56.89864220282724],[-127.19810804086111,56.89850464216924],[-127.19834780543495,56.898382519125605],[-127.19861481924956,56.89827807451135],[-127.19887345545574,56.89816810343865],[-127.19912991468651,56.89805478999131],[-127.19940642191332,56.897958100618254],[-127.1996735160091,56.897855894368604],[-127.1999236676167,56.89773815500938],[-127.20000062884647,56.89770158267808],[-127.20016969005681,56.89761933268392],[-127.20041774915993,56.89750049105419],[-127.200670106642,56.89738721246012],[-127.20095824591695,56.897301618698805],[-127.20127645485684,56.897257210240426],[-127.20160394622879,56.897247455358205],[-127.20193145387195,56.8972376994979],[-127.20223445994169,56.897167654387054],[-127.20251839665107,56.897078734085596],[-127.20278956915664,56.89697648357093],[-127.20307134384076,56.8968842201154],[-127.2033425484429,56.896783088789434],[-127.20362746390191,56.89669303630743],[-127.20392728415428,56.89661965477792],[-127.20427575099129,56.896623146422165],[-127.20463728132924,56.896518933061536],[-127.20482941718075,56.89645215195472],[-127.20510164963508,56.896351007371514],[-127.20509803770838,56.896169494871366],[-127.2051996267004,56.896000453566955],[-127.20525006161357,56.89583861108226],[-127.2052316476607,56.89564378822388],[-127.20524591003286,56.89547555769501],[-127.20529069130122,56.89529695792657],[-127.20534990708535,56.89512046543335],[-127.20542046515013,56.89494498825481],[-127.20549411249131,56.89476948236222],[-127.20551418688224,56.894589991375646],[-127.20555793044062,56.89441140123394],[-127.20570711481807,56.894253124144605],[-127.20597409659429,56.89414866452301],[-127.20623029822545,56.894028615378566],[-127.20632897827535,56.89386520362455],[-127.20637164680842,56.8936855025878],[-127.20643227575444,56.89352132376428],[-127.20650361627513,56.89333799426428],[-127.20657643377119,56.89313672056884],[-127.20654968842072,56.89297111259936],[-127.20653277847282,56.89279196539251],[-127.20650868666942,56.89261288496278],[-127.20648254074763,56.892433823644616],[-127.20645639506839,56.89225476234202],[-127.20643641260021,56.89207564377147],[-127.20642666687121,56.89189530942118],[-127.20638515776638,56.891717511622936],[-127.2064062968039,56.89153913155638],[-127.2064551952867,56.891361614132734],[-127.20646602741581,56.89118220924524],[-127.20647480517852,56.89100282347277],[-127.20648358285963,56.89082343772057],[-127.20649236045921,56.89064405198856],[-127.20649904872653,56.89046356504697],[-127.20649344658003,56.890284313024154],[-127.20646012075979,56.890105318728644],[-127.20644735591117,56.889927253978335],[-127.20639043411707,56.88974959969353],[-127.2063437837951,56.88957184993959],[-127.20629200666883,56.889394147843554],[-127.20622693970135,56.88921881056543],[-127.20613523922688,56.88904596209175],[-127.20607321157047,56.888869475893706],[-127.20596823889228,56.88869899198868],[-127.20587759465496,56.888527254247826],[-127.20582174781738,56.88835071057921],[-127.20579046446261,56.888171697403706],[-127.20576741425442,56.88799260775349],[-127.2057504751271,56.887812340698545],[-127.20573049823284,56.88763322253433],[-127.20570535955913,56.88745303169543],[-127.20568740214065,56.88727277416022],[-127.20569207451581,56.88709342705942],[-127.20572659231146,56.88691604399842],[-127.20578577469271,56.886738431788736],[-127.20586658560867,56.88656285989906],[-127.2059701299925,56.88639155931311],[-127.20609856658204,56.886227871852796],[-127.20625589813608,56.886068398292565],[-127.20645263937959,56.885920885306405],[-127.20666247335392,56.88579790452795],[-127.20687899642931,56.885659172138865],[-127.20711524907706,56.8855269797559],[-127.2073257636702,56.885392785093664],[-127.20748521078639,56.885235531663106],[-127.20755800527006,56.88506675726064],[-127.20764935466454,56.884900051456455],[-127.20771463542962,56.88472126108965],[-127.2077777028736,56.8845368880706],[-127.20776691761185,56.88435656433417],[-127.20768429735568,56.88417802979989],[-127.20754532775294,56.88400450218144],[-127.20739022444185,56.88387370910846],[-127.20715907502986,56.88374138200558],[-127.20696960311345,56.88359521913627],[-127.20684422582947,56.883429408979616],[-127.20673617553994,56.88325895502212],[-127.2066230698291,56.883090789300034],[-127.20656006581503,56.88291543380519],[-127.20656777112494,56.88273493828942],[-127.20655600833167,56.882555744452986],[-127.2065278151931,56.882376703403956],[-127.20647193927255,56.88219904039674],[-127.20657828154205,56.88198624981132],[-127.20690542879531,56.88200225846266],[-127.20723161126533,56.882020516557034],[-127.20755854885968,56.882029801648834],[-127.20788582079703,56.88201666990725],[-127.20821219762601,56.88200802825271],[-127.2085394509364,56.88202739374103],[-127.20886563439122,56.882045647728745],[-127.20919350244806,56.88205155810349],[-127.2095211436132,56.8820507458931],[-127.20984804691068,56.88205890489897],[-127.21015767691927,56.88207282739934],[-127.21047059051202,56.88206094368243],[-127.2107511677718,56.881967553787106],[-127.21101557525155,56.88181716125435],[-127.21123934673238,56.881746713330415],[-127.2115257296333,56.88164206109278],[-127.21180528263281,56.881548678454465],[-127.21204570627387,56.8814198000403],[-127.21206295220622,56.88124930082489],[-127.2120161453827,56.88106707281774],[-127.21198987624862,56.88088465299441],[-127.21201196694548,56.880705143432216],[-127.21203811094733,56.88052335473458],[-127.21209420091135,56.88034688954878],[-127.21235921019664,56.88024915896966],[-127.21261240336166,56.88013472859434],[-127.21280191044131,56.87998727364379],[-127.21300238630347,56.879829630075484],[-127.21310240512943,56.879646029946166],[-127.21316819615278,56.87948404202069],[-127.21332104694385,56.87931451615344],[-127.21353291199108,56.879192625903435],[-127.21376301184985,56.879062720220766],[-127.21400560798479,56.878938300431244],[-127.21424723799099,56.8788161305133],[-127.21449414963972,56.87869839328182],[-127.21474941515496,56.87858505994389],[-127.21501205121697,56.87847726030121],[-127.21528204144819,56.87837499446213],[-127.21556572298717,56.87828380623301],[-127.21585582727133,56.87820040170181],[-127.2161510913093,56.878118068797214],[-127.21645176212989,56.87804464967843],[-127.21676345737325,56.87799466000575],[-127.21710529769942,56.877989212591565],[-127.21744633127848,56.87799049571346],[-127.21773752447226,56.87794181669974],[-127.21793860558014,56.87780433134765],[-127.21810360872217,56.87763020312068],[-127.21831413169316,56.87749935241182],[-127.21860294837504,56.877440607940514],[-127.21892771871323,56.87741514439577],[-127.21926939317183,56.87740408956641],[-127.21960794353579,56.87739194255653],[-127.21993490790159,56.87737093843792],[-127.22026088876042,56.87735106338706],[-127.22058686928371,56.87733118751756],[-127.22091277863197,56.87730907020581],[-127.22123533209492,56.87727801849779],[-127.2215566728699,56.87724137417499],[-127.2218768362684,56.87720025755804],[-127.22219601589529,56.877160270058084],[-127.22251731931289,56.877122503047715],[-127.22284074657028,56.877086956511036],[-127.22316524368892,56.87705251972307],[-127.22348997226064,56.877025924455374],[-127.22381428540503,56.87701838326609],[-127.22413739722283,56.87703774809767],[-127.22446107772409,56.87707503709515],[-127.22478381136928,56.877114575522235],[-127.22510731543204,56.87714626135648],[-127.22543074892421,56.87717570576404],[-127.22575516589644,56.87720401943307],[-127.22607949306378,56.87722897120542],[-127.22640575100932,56.877250541981724],[-127.22673577691161,56.877260869849955],[-127.22706748410462,56.877259974512704],[-127.22735812556118,56.87719446928296],[-127.22761407701437,56.877072138636024],[-127.22783070604874,56.87694009378218],[-127.22790952085697,56.876770130265136],[-127.2279499809795,56.87658932325158],[-127.22798631456942,56.876407434652464],[-127.22804434353013,56.876229823299674],[-127.2280725885769,56.87605249385431],[-127.22800228417377,56.87587609721263],[-127.22788091292098,56.87570914902938],[-127.22773916728144,56.87554687614539],[-127.22761985162478,56.875379908321904],[-127.22751687392213,56.87520942390362],[-127.22742921824808,56.87503655318547],[-127.22730770969848,56.87486512332304],[-127.2271564719137,56.87469509522116],[-127.22704276845171,56.87451014360694],[-127.22705692801938,56.87434191298408],[-127.22696040038831,56.87418033243865],[-127.22689008804555,56.87400393556158],[-127.22688953522241,56.87382463770447],[-127.22693421047195,56.87364715343602],[-127.22702941349908,56.873475915155105],[-127.22701038021265,56.87329679213924],[-127.22696056670316,56.873119080893034],[-127.226925143143,56.872941233564],[-127.22693873320165,56.87275507821316],[-127.22703825412033,56.87259052302661],[-127.22728930031957,56.87247608400095],[-127.22757480183232,56.87237924875279],[-127.22785625020168,56.87228469251706],[-127.22814517679522,56.87219903001575],[-127.22846204154791,56.8721523248325],[-127.22875394575735,56.872095769495026],[-127.22897163269096,56.871965954123645],[-127.22917448200906,56.87182171060443],[-127.22937418686524,56.87167525527871],[-127.22956878461338,56.87152996869326],[-127.22971872927643,56.87136941609103],[-127.22986974318043,56.87120997382652],[-127.2300248979018,56.871051612772284],[-127.23017903297148,56.87089326120577],[-127.23031970586135,56.87073167520646],[-127.23043552543007,56.87056360093595],[-127.23055236235717,56.870395516919956],[-127.23065989591852,56.8702252797803],[-127.23078708436852,56.87005933865319],[-127.23092466376868,56.86989778138142],[-127.23110781993081,56.86974811850962],[-127.23132218354952,56.86961160687355],[-127.2315178340614,56.869467428038],[-127.2317437092986,56.86933753026916],[-127.23196224604435,56.86920321922796],[-127.23220175743492,56.86908215628964],[-127.2324885258597,56.86899426318844],[-127.23278063199851,56.86891304257363],[-127.23307589626084,56.86883403255844],[-127.23338083562106,56.86876837758159],[-127.23369111309283,56.868709394967865],[-127.23399603399903,56.86864373870639],[-127.23429664937508,56.86857139883392],[-127.2346047633843,56.8685090726721],[-127.23492605434437,56.86847351574969],[-127.23524291616515,56.86842791441914],[-127.23556647393099,56.86839905817114],[-127.23587965843926,56.868366938013914],[-127.23616882476769,56.86829022026982],[-127.23649011246776,56.868254659478815],[-127.23680340265416,56.86822589799759],[-127.23713183077157,56.868189146884355],[-127.23745206254797,56.868152473124205],[-127.23777558045596,56.86812249107099],[-127.23810022389473,56.86809585939373],[-127.23839016708293,56.868011284732745],[-127.23866632503102,56.86791339333311],[-127.23887849094642,56.8677735280766],[-127.23916918475972,56.86771247799119],[-127.2395084824585,56.86769466790952],[-127.23976474444623,56.867584637181544],[-127.2400643779974,56.867514534481806],[-127.24038126186117,56.86747004092878],[-127.24089289157104,56.867414718606035],[-127.24118504009081,56.86733571974884],[-127.24149441988638,56.86728120946615],[-127.24176271297463,56.86719459310522],[-127.24211032492794,56.867180058507806],[-127.24243919825011,56.8671892359796],[-127.24276612687963,56.86720179318235],[-127.2430930917754,56.867215469859815],[-127.24341825636208,56.86723700748131],[-127.2437426555394,56.867266396139655],[-127.2440612406469,56.86730704619603],[-127.24437800640673,56.867354436797406],[-127.24469377433643,56.86740295685332],[-127.24500759839378,56.86745485674104],[-127.24530575780217,56.86753043980557],[-127.24560684516007,56.867601511504205],[-127.2459109129381,56.86766919195615],[-127.24621296491777,56.867738011719965],[-127.2465101828826,56.86781584240891],[-127.24682008751628,56.86787337887227],[-127.24713197374842,56.86792865426353],[-127.24744195257438,56.867988429841255],[-127.24773710549259,56.86806627763279],[-127.24801837538665,56.86815882673561],[-127.24828162355817,56.868266117071684],[-127.24854385488356,56.86837341668235],[-127.24882614725759,56.86846595425075],[-127.24909942784315,56.86856530188014],[-127.24938464937163,56.86865332747849],[-127.24968084602706,56.86873116091484],[-127.24998096872831,56.86880335262386],[-127.2502810925513,56.86887554364202],[-127.25058514227415,56.868942092895544],[-127.25089319034716,56.86900524095121],[-127.25119629640017,56.869074039192796],[-127.25150720013514,56.869130434385944],[-127.25182299153566,56.86917893714378],[-127.25213783803504,56.86922968955869],[-127.25245072483087,56.86928382208403],[-127.25275672558793,56.86934698555097],[-127.25305693151147,56.86942141076722],[-127.2533541035101,56.86949698526528],[-127.25362208025663,56.86959077161753],[-127.25391429553295,56.86967199600848],[-127.2541824567424,56.86977138270013],[-127.25447269421906,56.86985486628702],[-127.25473391875256,56.86996216350055],[-127.25496696338163,56.870086542568494],[-127.25523024398932,56.870193818936386],[-127.25549254411814,56.87030222493037],[-127.25577281408829,56.87039476736739],[-127.25629985166717,56.87056000323036],[-127.25648821951779,56.87041585633006],[-127.25668169056914,56.87027053906994],[-127.25685853642115,56.87011977934901],[-127.25705511252808,56.869975552097415],[-127.2572967125693,56.869857783771494],[-127.25757499833388,56.86976319299847],[-127.25787772438417,56.86969413958069],[-127.25816345706569,56.86960731986859],[-127.25845129813777,56.869522720365566],[-127.25872452716182,56.86943041745218],[-127.25896181352806,56.86930708459141],[-127.25917194999474,56.869169446384106],[-127.25935497682364,56.86901974387528],[-127.25947778578266,56.86884933344576],[-127.25950595419607,56.868674238603916],[-127.25950543271813,56.86850054299043],[-127.25970117519199,56.86836304369375],[-127.25999756107494,56.86828844357019],[-127.26031197319233,56.86823159801588],[-127.26062993103086,56.86818928567865],[-127.26095223007786,56.86815365425455],[-127.26127018657355,56.868111340350204],[-127.26158584964251,56.86806120341792],[-127.26189346640639,56.86801674723515],[-127.26218184627086,56.867917565657834],[-127.26246337689527,56.86782853593994],[-127.26273631155821,56.86772838278382],[-127.26302843419012,56.86764933456344],[-127.2633066900097,56.86755473162977],[-127.26358544967125,56.867444434085556],[-127.26386648875591,56.867372215821014],[-127.26417674510337,56.86731428064686],[-127.26449587255516,56.86727642994577],[-127.26479007782204,56.8671984780609],[-127.2650831371326,56.86711717472722],[-127.26540442513364,56.86708266265012],[-127.26573135069499,56.867063783864666],[-127.26602555184934,56.86698582918851],[-127.26634907451209,56.8669568961966],[-127.26661579735304,56.86685567476965],[-127.26683274422265,56.866770628034594],[-127.26717650554941,56.866701151885515],[-127.26743183123676,56.86659667814751],[-127.26761272417387,56.86644586400433],[-127.26781972665957,56.86630824221615],[-127.26810126934008,56.866220320645944],[-127.2684295888304,56.866212627862716],[-127.26875317681106,56.86618592947086],[-127.26906450815781,56.8661302132723],[-127.26937347565733,56.86615856824403],[-127.26964694004123,56.866262353601265],[-127.26994586203088,56.86632890768315],[-127.2702587298586,56.86638187670713],[-127.27054901345281,56.86646644443666],[-127.27083430520464,56.86655554304562],[-127.27111660080946,56.86664691170869],[-127.27138593057313,56.866749613377614],[-127.27163820918886,56.866864808838606],[-127.27189045242048,56.8669788835272],[-127.27215677269655,56.86708385447348],[-127.27240703973105,56.86720018888835],[-127.27267632344729,56.86730176778531],[-127.27296852454107,56.86738182884699],[-127.2732607637749,56.86746300954465],[-127.27356576584167,56.86752613384932],[-127.27388149791392,56.86757234228161],[-127.27420679350823,56.86759716360441],[-127.27453288600712,56.86761525236755],[-127.27486158582498,56.86761874619759],[-127.27518845462424,56.86762898111529],[-127.27551463826401,56.86764930782896],[-127.27583897485643,56.86767637581413],[-127.27616146040197,56.86770906447219],[-127.27648833030979,56.86771929611527],[-127.27681545961616,56.867737368959986],[-127.27713979785932,56.8677644336945],[-127.27745440671542,56.86780728259593],[-127.27777589706999,56.86784109772268],[-127.27809646448416,56.867878283115665],[-127.2784132395664,56.86792447033394],[-127.27873854103703,56.86794928029896],[-127.27906193831164,56.86797859084775],[-127.279385373184,56.868009020879505],[-127.27970781096664,56.868040580602184],[-127.28002934236089,56.86807551043829],[-127.28035187191887,56.86810930897674],[-127.28067527175725,56.86813861550666],[-127.28099870924024,56.86816904151939],[-127.2813211868398,56.86820171752368],[-127.28164562290742,56.8682310114157],[-127.28195946611267,56.868281701646154],[-127.28226356570482,56.86834817662493],[-127.28255685008158,56.86842932636492],[-127.28284223765388,56.86851951880243],[-127.28314325287334,56.86858602226542],[-127.28346307193183,56.868538032048285],[-127.2837776377063,56.86848673105736],[-127.28407275708403,56.86840648473123],[-127.28433306092224,56.868298566028855],[-127.28452332887953,56.86815323802978],[-127.28470934035367,56.86800346928209],[-127.28492139370488,56.86786464887115],[-127.28519332665138,56.86776669913195],[-127.28549261812603,56.867688649505425],[-127.28580390013875,56.86763177279465],[-127.2861239691055,56.8675916180536],[-127.28645066496532,56.86756596532905],[-127.28677782466615,56.86755375505526],[-127.28711432633652,56.86754481322779],[-127.28745598942093,56.86753693995434],[-127.28779480521652,56.86753581798833],[-127.2881196611183,56.86754716099124],[-127.28842155145196,56.867577782464735],[-127.28859539877226,56.8677105344315],[-127.28874486395893,56.867881630779934],[-127.28900134511083,56.867997872047354],[-127.28930044247174,56.86806774229731],[-127.28961429439333,56.86811841400386],[-127.28993400686016,56.86816006141941],[-127.290256716475,56.868199436927306],[-127.29057742759137,56.868239952181455],[-127.29089614482434,56.868282727809365],[-127.29121582258264,56.86832325178463],[-127.29153553847135,56.868364895258765],[-127.2918493957389,56.868415561567744],[-127.29215645123793,56.86847750146927],[-127.29239465434182,56.86850762755039],[-127.2923348052592,56.86822245584144],[-127.29228017320442,56.868062745939206],[-127.29218380712707,56.86788327993],[-127.29212450806592,56.86770680662574],[-127.29206715009737,56.86752695201065],[-127.29198673744172,56.86736413689739],[-127.2919170254213,56.86718328465839],[-127.29181476665258,56.867011721807685],[-127.29171049331816,56.866841299623275],[-127.2916134143645,56.866670805744626],[-127.29153464628632,56.866495646872046],[-127.29147228116777,56.8663192040056],[-127.291408919411,56.8661438917142],[-127.29127811242078,56.86597821611479],[-127.29114429390836,56.86581481170239],[-127.29104311428486,56.86564435837793],[-127.29089398452015,56.865483347474814],[-127.29075610106689,56.86532110385854],[-127.29065590523076,56.865149519869746],[-127.29055776312352,56.86497791539697],[-127.29048007533495,56.864803866062246],[-127.29037278025005,56.864634593880425],[-127.29023186842592,56.86447350062965],[-127.29009502597049,56.86431124612348],[-127.28997342277566,56.86414435731934],[-127.28986407895627,56.863975105203984],[-127.28973635688874,56.863809397739196],[-127.2895720390894,56.86365413992853],[-127.28939147106547,56.863504646758095],[-127.28921802251142,56.863352841289206],[-127.28909446456686,56.86318821256902],[-127.28897591916314,56.86302017198189],[-127.28888291353266,56.86284851555567],[-127.28880216670579,56.86267449596891],[-127.28869791836601,56.8625040718346],[-127.28857329342345,56.86233833270449],[-127.28845177774005,56.86217368324766],[-127.28828526993951,56.86201396323324],[-127.28810996651976,56.86186777822547],[-127.28793549580519,56.86171598147487],[-127.28777015960578,56.86156073186229],[-127.28758452225905,56.86141240752898],[-127.2874446310099,56.86125018102918],[-127.28730267188051,56.86108797493208],[-127.28719946895858,56.86091753949725],[-127.28710952609218,56.86074473110826],[-127.28708508082671,56.860565669434145],[-127.2870554960855,56.860386658781984],[-127.2869013546059,56.86022793523388],[-127.28680936209882,56.86005514707994],[-127.28678392147926,56.85987721597284],[-127.28683557226412,56.85970188192384],[-127.28690893184574,56.8595308150567],[-127.2869027101964,56.859436742125006],[-127.28689591831397,56.85935612266615],[-127.28679458777843,56.85918006532799],[-127.2867721974857,56.85900098340725],[-127.28674134603436,56.85890715488201],[-127.28677036985106,56.85882281813102],[-127.28680548731221,56.85864428629341],[-127.28693759414026,56.858480481123294],[-127.28697384050382,56.85830530001544],[-127.28701820090986,56.858126676438616],[-127.2870635789295,56.85794804276334],[-127.2871933045329,56.85780555334799],[-127.28745992600878,56.857704289496425],[-127.28778396216512,56.85766297004494],[-127.28811198091292,56.85764850581638],[-127.2884386941555,56.857656466725714],[-127.28876636723002,56.85766217597459],[-127.28909413611746,56.85767124539469],[-127.28941928334667,56.85769378785815],[-127.28974565237925,56.85772192061119],[-127.29007405792257,56.857750032289154],[-127.29039558788705,56.857787176760624],[-127.29069833940022,56.85784579970407],[-127.2909615983375,56.85795188243272],[-127.29121205003395,56.85807378128073],[-127.29150499204471,56.85814594786961],[-127.2918207812866,56.85819547319914],[-127.29211990384859,56.85826869751055],[-127.29243079673705,56.858324994071005],[-127.29275039372074,56.858365514007616],[-127.29307097191446,56.85840490272913],[-127.29339053272653,56.8584443008124],[-127.29371199662963,56.85847919652269],[-127.29403244307646,56.858514101595205],[-127.29435679101306,56.858543363681335],[-127.29468187356761,56.858563652408655],[-127.29500959280752,56.85857046616517],[-127.29533795459658,56.85856606615087],[-127.29566262824028,56.85854377170899],[-127.29598040886967,56.85849913227981],[-127.29629376666202,56.8584455710531],[-127.29659740685119,56.858377537732984],[-127.29690211802719,56.858310613636895],[-127.2972122520475,56.85825259979672],[-127.29753236553736,56.858216898420196],[-127.29784477612834,56.85816558419442],[-127.29813880707228,56.85808643686441],[-127.29844125614868,56.85801392849302],[-127.29876187251419,56.85799278751256],[-127.29908369489243,56.85797723692159],[-127.29936915652335,56.85788808673399],[-127.29961977979781,56.857770148062315],[-127.29986098529724,56.85764670003234],[-127.30015107535813,56.85757319085316],[-127.30047306082002,56.85753186011567],[-127.30078534881481,56.85747717800375],[-127.30110309833405,56.857432526218346],[-127.30142777554515,56.857410217196254],[-127.30177429665068,56.8573966533144],[-127.30206722782516,56.85737690266322],[-127.30239060524251,56.85734675969532],[-127.30271750586193,56.85733002837052],[-127.30304461153092,56.85731889742863],[-127.30337064479735,56.85730665578408],[-127.30372164716194,56.85730424818616],[-127.30401987790887,56.857350558430795],[-127.30433655982911,56.85739556176313],[-127.30464848149275,56.85745181876617],[-127.30501730462571,56.857490692610426],[-127.30529536327674,56.85748677348861],[-127.30562277239034,56.85748459823334],[-127.30595112373942,56.85748017135267],[-127.3062773468282,56.8574735237679],[-127.30660470146874,56.85747022592581],[-127.30693156858463,56.85748262134296],[-127.30725707675899,56.85748494373969],[-127.30758546583812,56.85748163299456],[-127.30790871557325,56.85747837325052],[-127.30823550730963,56.85748852483553],[-127.30856280244377,56.85748298133969],[-127.30889122934663,56.857480787561165],[-127.30921884955819,56.8574853250301],[-127.30954374115132,56.85749997512986],[-127.30985864415804,56.85755282761679],[-127.31018011550798,56.85758768248972],[-127.31050507635358,56.85757431308684],[-127.310818841016,56.8575330396289],[-127.31114459955279,56.85754319434023],[-127.31147060284333,56.85756006969953],[-127.311798718507,56.85757916418816],[-127.31212577844082,56.857597147875175],[-127.31245372088378,56.85761063918168],[-127.31278369957262,56.8576241090483],[-127.31311354261139,56.85763309682283],[-127.31343667889338,56.85762646248609],[-127.31372739646996,56.85754170975207],[-127.31396654114202,56.85741937657262],[-127.31414847249708,56.857275209598484],[-127.31426083831032,56.85710821360838],[-127.31452000182595,56.85700136571133],[-127.31462621327812,56.85680417405532],[-127.31470237955962,56.85671935262264],[-127.31505165513228,56.85669675998114],[-127.31542221433334,56.856605590419214],[-127.31570873882384,56.85651863439623],[-127.31601236783456,56.85645167597945],[-127.31633348341843,56.856415917743995],[-127.31665459840798,56.856380158714316],[-127.3169790668617,56.85635220942877],[-127.3173035948173,56.85632650003762],[-127.31762361378532,56.85628850841268],[-127.31794361570516,56.85625051616605],[-127.31826823502968,56.856227044734176],[-127.31859553984991,56.8562225963607],[-127.31892171189936,56.856214796708166],[-127.31925008918031,56.85621145643114],[-127.31957767800057,56.856214847293444],[-127.3199062848478,56.85621822696708],[-127.32021593763017,56.856267745764754],[-127.32050522011251,56.856352211674775],[-127.3208228544213,56.8563949238193],[-127.32113574978264,56.856448890060356],[-127.32145056702466,56.85649947399657],[-127.3217762809356,56.85647822394356],[-127.32209857913567,56.85644692196294],[-127.32242630715778,56.85645478687022],[-127.32275309404456,56.85646490186895],[-127.32308072368315,56.85646940415149],[-127.32340937137336,56.85647389521749],[-127.32373523751802,56.856457121316055],[-127.32405815037579,56.8564739965328],[-127.32436222941182,56.85654037231875],[-127.3246873108405,56.85656058581221],[-127.32501465616446,56.85655724150522],[-127.32533737511012,56.856538254414694],[-127.32564513076072,56.85647235176189],[-127.32594711272547,56.856417714006966],[-127.32626482443669,56.856373000609494],[-127.32658754122927,56.8563540104103],[-127.32691488463864,56.856350661307715],[-127.32724080778068,56.856365256480856],[-127.32755756921884,56.85641244378454],[-127.3278762077072,56.85645400779999],[-127.32820132875824,56.85647533275071],[-127.32852894270012,56.85647982143813],[-127.32884880369329,56.85646757883151],[-127.3290180526102,56.85631455514801],[-127.32917688428104,56.85615715537769],[-127.3292767301002,56.8559857914873],[-127.32937344978308,56.855813338916626],[-127.32948259817698,56.85564412084181],[-127.3295834978123,56.85547386659981],[-127.32969160996632,56.85530465899116],[-127.32985252559591,56.85514835771467],[-127.33005080528994,56.85500400026718],[-127.33015273509886,56.854833735042],[-127.33029193557444,56.85467317333588],[-127.33039898589185,56.85450285540198],[-127.33049368317847,56.85433154347796],[-127.33059971374786,56.85416123585969],[-127.33067893218524,56.85398784133494],[-127.33066451185401,56.85380756311125],[-127.33063986916436,56.85362851046843],[-127.3305334085327,56.85345814202516],[-127.33040354964793,56.853293616889445],[-127.33027873699436,56.853126798563906],[-127.3301529296843,56.85296111100934],[-127.33002409196621,56.85279657510371],[-127.32990334832297,56.85262859410686],[-127.32976942915452,56.85246523078124],[-127.32965791409433,56.85229715496908],[-127.32947823983211,56.85214658783349],[-127.32930769414038,56.85199256491815],[-127.32910978477226,56.85184890822188],[-127.32882571632682,56.851766649779115],[-127.3285064827691,56.85173630127727],[-127.32817961884487,56.85172284001686],[-127.32789718194343,56.85162823563428],[-127.32771352892362,56.85148106893817],[-127.32765313552227,56.8513068648529],[-127.32771484984346,56.85113141044576],[-127.32778580614605,56.850955861380555],[-127.32786606487863,56.8507824583349],[-127.32798412371481,56.85060418547614],[-127.32804850346879,56.850446634164314],[-127.32812944766592,56.8502631380606],[-127.32819213745927,56.85008655285463],[-127.32821675703345,56.84990699566573],[-127.32820752644425,56.84972778525927],[-127.32816544753796,56.84954891136991],[-127.32817775495573,56.84936948037069],[-127.32816403568708,56.8491791094515],[-127.32812748072841,56.84901138558728],[-127.32809976670089,56.84883236461884],[-127.32811161218602,56.848639490577774],[-127.32804326107096,56.84847209246059],[-127.3278809671265,56.84831910438181],[-127.32772670614062,56.84816043059051],[-127.32757448192342,56.84800173578882],[-127.32738773922875,56.84785348014062],[-127.32721018484364,56.847704009538056],[-127.32712552314199,56.847540140025316],[-127.32705013780814,56.8473470385283],[-127.32712288188783,56.84722414263744],[-127.3273754801315,56.84710837065355],[-127.3276187747127,56.84699045213515],[-127.32784939382827,56.8468625770931],[-127.32807588563509,56.84673362326127],[-127.32829814031784,56.84660135047965],[-127.32852877127871,56.84647347409236],[-127.32879401804635,56.8463676555745],[-127.32908362166384,56.846283999883596],[-127.32938490260155,56.84621143033568],[-127.32969717383492,56.84616003978153],[-127.33001918681104,56.846123117029414],[-127.33034016505759,56.84608620409003],[-127.33066246896682,56.8460582419769],[-127.33098927826165,56.8460414393455],[-127.33131618663099,56.84602799683304],[-127.33164432188768,56.84602014416382],[-127.33197151653368,56.846014541635824],[-127.332298115378,56.84599213458576],[-127.33257100156517,56.845899677580185],[-127.33281417900416,56.845779509057415],[-127.33309739869775,56.84568918600152],[-127.3333752861424,56.84559331388802],[-127.33364473313603,56.84549080407145],[-127.3339409390108,56.84542051733911],[-127.3342590702761,56.845390347838126],[-127.33458855496131,56.845362301984785],[-127.33489536522912,56.84530198977604],[-127.33517431822176,56.84520722343866],[-127.3354511242529,56.845110237299316],[-127.33576441260846,56.84505882151632],[-127.33605615926612,56.84497848994848],[-127.33634936488573,56.8449104698813],[-127.3370704127944,56.84475062609111],[-127.33687525678728,56.84450833596056],[-127.33682537923535,56.844341872741396],[-127.33676591249038,56.844165422513704],[-127.33668907612633,56.84399139269264],[-127.33660913238317,56.843816274236495],[-127.33651289213412,56.84364468573439],[-127.3364299193417,56.84347071910454],[-127.3364049197422,56.84331184396879],[-127.33635675933633,56.84310614014891],[-127.33637769806762,56.84294006755394],[-127.33635817313458,56.84276096426723],[-127.33637970320108,56.84258255842303],[-127.3364063703138,56.84240409963433],[-127.33641142605454,56.8422236223523],[-127.33643398958048,56.84204520589957],[-127.33648117194038,56.841866535643554],[-127.33658302237107,56.84169626694754],[-127.33671175242391,56.841531324268296],[-127.33689438674827,56.8413826353373],[-127.33695100010668,56.8412094709518],[-127.33703340403964,56.84104052315181],[-127.33720034645219,56.840883030433076],[-127.3373507977767,56.84072346633553],[-127.33737745912386,56.84054500755579],[-127.33737637791684,56.84036571436657],[-127.33738658816027,56.84018630469982],[-127.33740603820924,56.84000679971902],[-127.33745837284077,56.83982919675676],[-127.33750662046566,56.83965163595985],[-127.33757343066664,56.839477245568354],[-127.33769693473354,56.83931011464555],[-127.33780600009703,56.839140891330274],[-127.33793262621413,56.838974848625604],[-127.33806132503511,56.83880990505795],[-127.33818072203107,56.83864281609782],[-127.33836019057937,56.83849191655392],[-127.33851576451194,56.83833229830568],[-127.33873076350888,56.83820008240117],[-127.33899485287974,56.83809313399587],[-127.33926632288977,56.83799171203947],[-127.3395320112885,56.837871298190095],[-127.33965543847982,56.83773218249678],[-127.33977853969279,56.83755384727889],[-127.33976412188595,56.837374692186586],[-127.33975790956141,56.837195452298936],[-127.33975576112316,56.837015049774784],[-127.33974442880523,56.8368358628508],[-127.33967474256319,56.83666064105575],[-127.33959786919911,56.83648549353105],[-127.3395169491802,56.83631150845882],[-127.33942579588953,56.83613874976534],[-127.33930916596682,56.83597073689431],[-127.33915490735019,56.835812077934136],[-127.33900979483832,56.83565108303173],[-127.3388799432846,56.83548656840118],[-127.33870437491713,56.835334853017],[-127.3385075497264,56.83519120149351],[-127.33830869714726,56.835048691282594],[-127.33807450080887,56.83492223476967],[-127.33786859648814,56.834783158686],[-127.33766972600868,56.83463952711383],[-127.3375267140359,56.834479629746795],[-127.3373866555544,56.83431633982998],[-127.33719998008654,56.83416921983881],[-127.33699707398594,56.834027870280806],[-127.3368195072066,56.83387729389001],[-127.33668052640971,56.8337151128563],[-127.33659552302704,56.83354116857227],[-127.3365493593904,56.83336346178115],[-127.33649911033469,56.83318579712816],[-127.33643761112022,56.833009369138395],[-127.33638939773682,56.832831683500444],[-127.33626466403193,56.83266599333332],[-127.33613788030607,56.832500324209605],[-127.33603145362382,56.832329962547284],[-127.33591383260801,56.83216195751015],[-127.33574538408543,56.83200792402562],[-127.33561361261806,56.831875925278176],[-127.33548272107201,56.831680040559164],[-127.33535289786157,56.831515522804764],[-127.33527708802258,56.83134036263118],[-127.33521051666328,56.83116510725622],[-127.33513982747846,56.8309898942963],[-127.3350466716967,56.83081715406097],[-127.33493922075495,56.83064680233013],[-127.33473837012127,56.830504308005814],[-127.33452429741544,56.83036531149053],[-127.33442520856677,56.83019935588227],[-127.33442084111269,56.830013373950855],[-127.33434618810767,56.82984156349025],[-127.33413006953803,56.82970258749936],[-127.33383528986845,56.82963278009125],[-127.33351577145295,56.82958900139513],[-127.33328773801699,56.82946135310597],[-127.3331152649095,56.82930847874249],[-127.33291142061375,56.82916825392928],[-127.33270646691027,56.829025798946894],[-127.33251987339908,56.82887979294829],[-127.33237788266156,56.82871875977166],[-127.33229290961717,56.828544813209795],[-127.33216519997583,56.82838139174486],[-127.33204327447284,56.82820670430571],[-127.33193718637597,56.82804530169999],[-127.33180436097246,56.827881932545324],[-127.33163086715088,56.82772906698029],[-127.33147874591805,56.827571499043],[-127.33142442604183,56.82739387521133],[-127.33141927117924,56.82721462559322],[-127.33146448496363,56.82703822038452],[-127.33159314947302,56.82687216405859],[-127.33173630630274,56.82671044123285],[-127.33191369384248,56.826559572817736],[-127.3320962537181,56.82640977162819],[-127.33228301309359,56.82626328892533],[-127.33249158240508,56.826124426160725],[-127.33271284081198,56.82599663895611],[-127.33295594767753,56.825877591741964],[-127.33316033377785,56.825736529639556],[-127.33333562194059,56.82558456022577],[-127.33343539262282,56.825414316840806],[-127.33350110216853,56.82523770008413],[-127.33356993399752,56.82506217181351],[-127.3336893465926,56.82489620866992],[-127.33386564600484,56.82474422814958],[-127.33398087771333,56.82457606650631],[-127.33407648073589,56.82440362430589],[-127.33415468280805,56.82423248185657],[-127.33423667624524,56.824052335212635],[-127.3344047284616,56.82389931826107],[-127.33459353400161,56.82375281117006],[-127.33483459261781,56.823634902130074],[-127.33511022799152,56.82353792850753],[-127.33536059700667,56.82342216381765],[-127.33558274790087,56.82329100055443],[-127.33581005427132,56.82316090439408],[-127.33608993982561,56.823068367396324],[-127.33637714774348,56.822980236820676],[-127.33664545086727,56.822878852951185],[-127.33686648333729,56.82274545771326],[-127.33709169288265,56.82261426026663],[-127.33727841500833,56.82246777071155],[-127.33748859933017,56.82234681339982],[-127.33781940625359,56.8223333123554],[-127.33814616701758,56.82232097289228],[-127.33847066674734,56.82230305276186],[-127.33878068231692,56.82225166228429],[-127.33906260472298,56.82215909773042],[-127.33935202125313,56.82207542020472],[-127.33963185166874,56.821981755380754],[-127.339864550817,56.82183030407817],[-127.34012638942865,56.82175027190585],[-127.34040199810127,56.8216532871413],[-127.34066491397445,56.82154522672356],[-127.34088493035073,56.821412955673686],[-127.34110910146059,56.82128176187975],[-127.34134465708684,56.8211538117498],[-127.34164960294788,56.82110470807642],[-127.34197036245776,56.821067766924806],[-127.34205358686948,56.82110164471825],[-127.3422793343271,56.82110490933859],[-127.34260215456831,56.82112733919559],[-127.34289916912961,56.82120382646319],[-127.34319214530018,56.82128259621323],[-127.34329777101368,56.821311758426525],[-127.3435048707702,56.8213096110604],[-127.34382705294166,56.821283856961365],[-127.34413863645884,56.82121898958808],[-127.34440034971566,56.82110645139506],[-127.34465311517974,56.821001850015506],[-127.34495756555056,56.82093817531842],[-127.34528292807589,56.820915746470895],[-127.34560945962298,56.82092692388935],[-127.34593712536122,56.82094145062765],[-127.34625938084358,56.82091793095886],[-127.34657784988451,56.82087427829726],[-127.34690233356704,56.820856337068264],[-127.34722890410733,56.82086863064099],[-127.34754900907105,56.82090116218774],[-127.34781394954747,56.82099926404787],[-127.34807515827862,56.82110748999105],[-127.34835634913834,56.82120093913142],[-127.34861148741501,56.82131146849633],[-127.34883454522173,56.82144362356758],[-127.34906767807058,56.82157007016434],[-127.34930380183106,56.821694243934296],[-127.3495760153868,56.82179450788492],[-127.34986412615949,56.82188003730304],[-127.35016407199255,56.82195199505177],[-127.35045419664475,56.82203638156263],[-127.35076281614847,56.822092558544384],[-127.3510841861171,56.82213179219157],[-127.35139589130154,56.822187935509334],[-127.3516859420967,56.82227007880424],[-127.35195820504644,56.822371458021614],[-127.35221541188862,56.82248195897415],[-127.35245020440385,56.822597175984676],[-127.35271339448126,56.822732267715374],[-127.35296658114459,56.82281591375322],[-127.3532651951048,56.82290805001251],[-127.35356997617849,56.82297098441303],[-127.35387288736878,56.823039540872784],[-127.35418749183867,56.82309004410559],[-127.35450682298712,56.82312929072044],[-127.35482808762065,56.82316515440281],[-127.35514646506084,56.82320665071981],[-127.35547239438708,56.8232290162854],[-127.35559723613922,56.82327925989768],[-127.35570944810952,56.8233498071658],[-127.35587456035319,56.82340747367686],[-127.35600418007448,56.82341844431113],[-127.35632170093585,56.8234644293304],[-127.35663910464604,56.823507052869324],[-127.35696648189104,56.82351258986385],[-127.35728956666715,56.823541704569706],[-127.35760417968356,56.82359219952315],[-127.35791200158127,56.8236539713607],[-127.35821785254645,56.823718004433374],[-127.3585352997848,56.8237617435689],[-127.3588264340192,56.82384498053061],[-127.35908460864795,56.823953216814346],[-127.35932985763745,56.82407279468244],[-127.35958708045189,56.82418328129149],[-127.3598563492188,56.82428579645824],[-127.36011960868368,56.82439285675771],[-127.36038386372334,56.824498785444376],[-127.36064114820688,56.82461039005246],[-127.3609123781457,56.82471064122214],[-127.36121079725892,56.82470862721862],[-127.36152155179136,56.82473674041768],[-127.36175351517576,56.824857574137646],[-127.36193728964916,56.82500805085032],[-127.36214688824522,56.82516385910383],[-127.36232901706018,56.82529642223599],[-127.36256323440278,56.82542283415889],[-127.36277521135885,56.82555844478803],[-127.36297311121669,56.82570204771752],[-127.36318007461527,56.82584107242397],[-127.36354763840708,56.82602547421819],[-127.36377392861668,56.82589757996615],[-127.36408366271574,56.825838287202544],[-127.36439228324517,56.825776764116355],[-127.36469874987044,56.825711901021954],[-127.36501178620875,56.825659295137825],[-127.3653237254324,56.82560445875008],[-127.36562809886075,56.82553849483954],[-127.36593675411392,56.825478088320004],[-127.36625185397911,56.82542545765735],[-127.36653606157344,56.82534065316252],[-127.366796759989,56.82522920041117],[-127.36706703321764,56.8251277319625],[-127.36733837818241,56.82502737228239],[-127.36760653507132,56.82492368372346],[-127.36786820509184,56.82481109787802],[-127.36813958539221,56.82471185677211],[-127.36844319097783,56.82465373882236],[-127.36877267243355,56.82463120762759],[-127.36909450845334,56.82459530856718],[-127.36939037079853,56.82452158108517],[-127.36967536030787,56.82443003744256],[-127.36994976136258,56.824329639909635],[-127.37021900291762,56.824228175698096],[-127.37048607332143,56.82412337193084],[-127.37074999512592,56.824016359612926],[-127.37100971839716,56.82390714987337],[-127.37126416297723,56.82379351286761],[-127.37151852659537,56.82367763491016],[-127.37176331154626,56.823551771999824],[-127.37196039825825,56.82341184523095],[-127.3720807539819,56.823248076422125],[-127.37213997263731,56.82306702456438],[-127.37215415791593,56.82288869092014],[-127.37206076043392,56.82271373790008],[-127.3720492826322,56.82253455542027],[-127.37211690121654,56.82235901794088],[-127.37226705689659,56.8221971747334],[-127.37238854386739,56.82203675567681],[-127.37230840436357,56.821859421204714],[-127.37214293973382,56.821705403368796],[-127.37196019803454,56.82155605089876],[-127.37175724749572,56.82141475670984],[-127.37156843669989,56.82126770930028],[-127.37140904949341,56.821111385006766],[-127.37128416385318,56.82094460954346],[-127.3712113356114,56.82077055915297],[-127.37119673874052,56.8205902892245],[-127.37120473645045,56.82041090083348],[-127.37125278851778,56.82023332982605],[-127.37133893983881,56.82005983814208],[-127.37140659704669,56.81988542153104],[-127.3714762643086,56.81970986297088],[-127.37155208208655,56.81953423927317],[-127.37157755403506,56.8193557866107],[-127.3715404417186,56.81917687588029],[-127.37142067944447,56.81901004656993],[-127.37123394841731,56.818862977014625],[-127.37101988844601,56.81872628225878],[-127.37085340898336,56.81857227401196],[-127.37074585077141,56.81840195311382],[-127.37069753769796,56.81822540210282],[-127.37067273236335,56.81804636109118],[-127.370666379913,56.81786712486385],[-127.3706795134343,56.81768768249055],[-127.3707018648742,56.81750814260446],[-127.37072318277238,56.81732861366788],[-127.3707445168747,56.81714908457431],[-127.37075968363506,56.81696962075267],[-127.37076153190988,56.81679029787381],[-127.37074731033387,56.81667838378841],[-127.37069896498483,56.81661613917405],[-127.37060574802813,56.81644566668843],[-127.37065389372218,56.81627033661719],[-127.37082090996438,56.81612176486018],[-127.37086794156974,56.8159442052289],[-127.37089134772555,56.81576577496802],[-127.3709589597321,56.815590238830744],[-127.37107089613828,56.81542095742054],[-127.37123983811875,56.815269002829595],[-127.37121704260164,56.815088820324604],[-127.3714473670745,56.81496199053898],[-127.3716766334419,56.81483405089728],[-127.37192585952708,56.81471934719284],[-127.372157331964,56.81459586590214],[-127.37243718780879,56.814506611573954],[-127.3727371066014,56.81443395369559],[-127.37305218678512,56.81438354730615],[-127.37337069110232,56.81434318964385],[-127.37369819090766,56.81432514869746],[-127.37402356071077,56.81430488822332],[-127.37438149469955,56.814306694334604],[-127.37467497614973,56.81428340860919],[-127.3750028332612,56.81427544636922],[-127.37532832146464,56.81425854328646],[-127.37565233785689,56.81422932791348],[-127.37597280858324,56.81418670164198],[-127.37626543154657,56.81411075107369],[-127.37646235067228,56.81396745743816],[-127.37663733561317,56.813813190150135],[-127.376807185787,56.81365897720171],[-127.37701037043396,56.81351897806878],[-127.37722595719403,56.81338220869068],[-127.37745835814505,56.813256466603946],[-127.37772859955857,56.81315721711715],[-127.37802409498883,56.813075628727205],[-127.37833133518559,56.81300736242751],[-127.37864102361229,56.81295027578828],[-127.378961805119,56.81294574064979],[-127.37928903808323,56.81297811732782],[-127.37962096535001,56.81299811608479],[-127.37994401930953,56.813028294337045],[-127.38020689797892,56.813125231094766],[-127.38043719985754,56.81325725454151],[-127.38067850687838,56.81338131578208],[-127.38094278297733,56.813488322037074],[-127.38120401724765,56.813596480856255],[-127.3814692894934,56.81370235481418],[-127.38175942053604,56.813786670794244],[-127.38208341200823,56.81378545569484],[-127.38241224016942,56.81377634363794],[-127.38273927479366,56.81377397377344],[-127.38305882087366,56.81373470167454],[-127.38337846283825,56.81369766905255],[-127.38370378221433,56.813676264055594],[-127.38402902105979,56.81365261780338],[-127.38434975843707,56.81361781236101],[-127.38464654096916,56.81354403951005],[-127.38495856489529,56.813523894108855],[-127.3852948004994,56.81354943559307],[-127.38562136163732,56.81356275256733],[-127.38594837785841,56.813560374777786],[-127.38627156430063,56.813536744831794],[-127.38658996752963,56.81349411425549],[-127.38689207900538,56.81342588240907],[-127.38720646089612,56.81338553465529],[-127.3875329811219,56.813397726591454],[-127.38785975465458,56.81338862266918],[-127.38818690628243,56.81338959970766],[-127.38851408174132,56.81339169631347],[-127.38884428767099,56.81336350208096],[-127.38916876915776,56.8133476955315],[-127.38948833468483,56.813337544144176],[-127.38981610021825,56.81332730398726],[-127.39014161422563,56.813311483915854],[-127.39046808064491,56.813293411501604],[-127.390794933167,56.81328654061057],[-127.39112224516657,56.81329199110432],[-127.39144950055825,56.81329632073061],[-127.39177604685693,56.8132804854541],[-127.39209902580691,56.813251239891564],[-127.39240979333483,56.81319634983617],[-127.39270972117906,56.8131247658235],[-127.39302478860631,56.81307543129578],[-127.39334457699705,56.813042854964564],[-127.39366664917999,56.81307413032754],[-127.39398881903017,56.813107645145614],[-127.39430429071729,56.813154679073584],[-127.39463006075587,56.81317470575263],[-127.39495704913904,56.81317118483188],[-127.39528365736622,56.81315758132314],[-127.39552996190558,56.81304958684088],[-127.39574560721776,56.81300131673501],[-127.39589521845186,56.81299858391832],[-127.39615177663138,56.812975647205114],[-127.39647507328709,56.81295535245899],[-127.39680208370234,56.812952947273565],[-127.39712894862143,56.812946060226814],[-127.3974564041246,56.81295597575216],[-127.39778379523,56.81296364984371],[-127.39810676699143,56.81293438930953],[-127.39841417311845,56.8128716764624],[-127.39872178079818,56.81281456395915],[-127.3990469221727,56.81278863958982],[-127.39937226575476,56.81276831547458],[-127.39969760899494,56.8127479905425],[-127.39997363326442,56.81269681957736],[-127.40000091105425,56.81268531824095],[-127.40022923607593,56.81259095682744],[-127.40067255247003,56.81228919111492],[-127.4011101491446,56.81239540303344],[-127.40139278325316,56.81244165424796],[-127.40168376207467,56.81252031347272],[-127.40198149571177,56.81244536956931],[-127.40228351482958,56.812375981841235],[-127.40259312221583,56.81231771775787],[-127.40288137564998,56.8122361504981],[-127.40309688017875,56.81209933800856],[-127.40330834814023,56.81196481019196],[-127.4035721368205,56.81185885205852],[-127.40384534392592,56.81175839456499],[-127.40415159275747,56.8116643022198],[-127.40438018629553,56.811549758719146],[-127.404647117273,56.81144600559706],[-127.40498890222116,56.81137057696641],[-127.40521799630011,56.81126947436391],[-127.40544794231741,56.81113586318128],[-127.40569905361825,56.81101995232995],[-127.40594805639208,56.81090294321806],[-127.4061981315332,56.81078704263025],[-127.40642110852707,56.81065910861378],[-127.40674230270011,56.810581657553264],[-127.40698253144087,56.810477068890265],[-127.40727666700883,56.81038870388294],[-127.40758182511017,56.81032151081415],[-127.40789128575568,56.81025987351408],[-127.40820411388732,56.81020604342408],[-127.40850204844831,56.81016582236473],[-127.40884215958143,56.81012962447636],[-127.40916859040205,56.81011150497368],[-127.40949599682887,56.81009225337559],[-127.40981778014165,56.81005961431393],[-127.41013383390717,56.81001022702696],[-127.41043800817964,56.80994415852335],[-127.41072602311442,56.80985697288668],[-127.41102181594447,56.809786511668676],[-127.41133991578268,56.80973709911648],[-127.4116668735804,56.80973353602769],[-127.41199426471992,56.80974229457896],[-127.41232285272959,56.80975552186867],[-127.41265140005392,56.809767628117484],[-127.41297872626443,56.80977414358661],[-127.413303577055,56.80976947869997],[-127.41362446056428,56.80974020190531],[-127.41394141713613,56.80968743344095],[-127.41424982945993,56.809625792253506],[-127.41454747550853,56.80954969939894],[-127.4148407175259,56.80946580937849],[-127.41515771117291,56.809414158153736],[-127.41546021587125,56.80935930252357],[-127.41578204545335,56.809327768688654],[-127.41610611297499,56.80930181285412],[-127.41643129520575,56.80927808532363],[-127.41675751014294,56.80925434567675],[-127.41708260949962,56.8092283760999],[-127.41740541232816,56.80919570690485],[-127.41772386866022,56.809156360546226],[-127.41803998708262,56.80910919440889],[-127.41835494841115,56.809058678198596],[-127.41867000748255,56.80901040145509],[-127.41898600028095,56.808959872397836],[-127.41930178674544,56.808903741546374],[-127.41961662142145,56.808849861660136],[-127.41993393260367,56.80880716040582],[-127.42025300010192,56.808784610909335],[-127.4205772775348,56.80879226118411],[-127.42090335360078,56.80882118337734],[-127.4212286604039,56.80885683713238],[-127.42155183568266,56.808890272160255],[-127.42187128252158,56.808933833225616],[-127.4221906065236,56.80897403289202],[-127.4225142811771,56.808992891523786],[-127.42284023975975,56.80899043178567],[-127.42316893508332,56.8089789759023],[-127.42349120866976,56.80895974516378],[-127.42382397601111,56.808975138624525],[-127.42415084168857,56.80899732006768],[-127.42447589086304,56.80899822818369],[-127.42479758630746,56.80896331134752],[-127.42511475249245,56.80891723697019],[-127.4254286450455,56.8088655945507],[-127.42574249547242,56.80881283116943],[-127.42605971699382,56.80876787450496],[-127.4263768800734,56.80872179704293],[-127.42668646322862,56.80866459571664],[-127.42697763883834,56.80858070066668],[-127.42724345563364,56.80847691256213],[-127.4274966167994,56.80836317747024],[-127.42774758628948,56.808246104062455],[-127.42800287691475,56.8081345858053],[-127.42829365703271,56.80804060619088],[-127.42851056138828,56.80791718299428],[-127.42861914095542,56.80774788672452],[-127.42871308194754,56.8075709072508],[-127.42881136974601,56.80740060370894],[-127.42885300854938,56.807223080486],[-127.42885970312172,56.8070437014772],[-127.42888587777671,56.80686410757],[-127.42889463820086,56.80668470580454],[-127.42893416841683,56.80650608522816],[-127.42901388154249,56.80633262457179],[-127.42906682447497,56.80615609730121],[-127.42913108947937,56.805980565742104],[-127.42921908189984,56.80580925494494],[-127.42929875092484,56.80563467398813],[-127.42931881516584,56.80545626820886],[-127.42932906670696,56.80523426515734],[-127.42954237272114,56.805097432077716],[-127.42974946209168,56.80495842596134],[-127.42995444260234,56.804818322138495],[-127.43013360324777,56.804672899838486],[-127.4302215468425,56.80450046829977],[-127.43032081175578,56.80432903232863],[-127.43037587835254,56.804154722500954],[-127.4303815901869,56.803976475178665],[-127.43046833245957,56.8037995741637],[-127.43051921578459,56.80362306921346],[-127.43053407496988,56.8034424795794],[-127.43057781754536,56.80326717417129],[-127.43067707771615,56.80309573805722],[-127.43068684551855,56.80291632535663],[-127.43075932066017,56.802741823149724],[-127.43082767121548,56.80256624583147],[-127.43089600475497,56.80239066867724],[-127.43096946944966,56.80221503479923],[-127.43103990897677,56.8020405549759],[-127.43105888898793,56.80186104053965],[-127.43106554736725,56.80168054163162],[-127.43108661791102,56.80150212477917],[-127.43109327609923,56.801321625909516],[-127.43108629269824,56.801077400553325],[-127.43108272904847,56.80089813534933],[-127.43108942858512,56.800718756742356],[-127.4310878728621,56.8005383487342],[-127.43105772575728,56.80036049802862],[-127.43097334652298,56.80018548796038],[-127.4308839194239,56.80001277494956],[-127.43087425000631,56.800000554614954],[-127.43076093632432,56.79984715659172],[-127.43061553626801,56.79968514777016],[-127.43045800735524,56.79952775541197],[-127.43029139038661,56.79937382523246],[-127.43011258692498,56.79922339141667],[-127.42991658128862,56.7990787506057],[-127.42976418902751,56.79892130079711],[-127.42962285373082,56.79875812550351],[-127.42943095076394,56.79861343874863],[-127.42922187081571,56.7984756652411],[-127.42901075952314,56.798337913842175],[-127.4287705069529,56.798216172797375],[-127.42849624637914,56.79811721953648],[-127.42820321442501,56.798037523826764],[-127.4279190825917,56.797948764118644],[-127.42764285955127,56.797852072054006],[-127.42735972183719,56.797762179546815],[-127.42707760183815,56.797672275223384],[-127.42676799238367,56.79761517206187],[-127.4264514925677,56.79756598862903],[-127.42612952299031,56.79753479507271],[-127.42580476090322,56.79751147601915],[-127.42518282625518,56.79749030675011],[-127.42539452317325,56.79722686518315],[-127.42540841230586,56.797047408411075],[-127.42542644087807,56.79686902673469],[-127.42549996118177,56.79669451674955],[-127.42558786602102,56.79652096900786],[-127.42567268819025,56.79634745515903],[-127.42575543560264,56.79617284346247],[-127.42583719079666,56.795999363298506],[-127.42591168266833,56.79582372178625],[-127.42600479715861,56.795652357735385],[-127.42616186997208,56.79549261628128],[-127.42637744670716,56.79536248764239],[-127.42668667518946,56.79529856562502],[-127.42685005615085,56.7951432364074],[-127.4269803369094,56.79497930661047],[-127.42710641946378,56.7948131816646],[-127.42723046829556,56.79464707901938],[-127.4273534420352,56.7944798674647],[-127.427479521361,56.794313742206306],[-127.42751196479755,56.79413744278392],[-127.42750125505331,56.793958257224546],[-127.4274874388021,56.79377798528844],[-127.42748082722454,56.79359875458422],[-127.42748748447777,56.79341825695529],[-127.4274888208604,56.79323221477606],[-127.42749524647284,56.79304499585775],[-127.42752137666953,56.79286428357846],[-127.42758074404001,56.79269553193759],[-127.42775965141333,56.792572529211505],[-127.4280963999041,56.79250493823045],[-127.42828902697715,56.79236497371826],[-127.42844814231528,56.79220520702755],[-127.42861462603958,56.79205096206786],[-127.42873864315457,56.79188485843929],[-127.42885127450047,56.791715518419025],[-127.4289535777991,56.79154405101097],[-127.42905277373436,56.79137149718382],[-127.4291581816771,56.7912011160062],[-127.42928535793507,56.791037218302364],[-127.42946224296492,56.79088734002174],[-127.42968163230702,56.79075043986806],[-127.4298761695682,56.79060708995155],[-127.42992294063508,56.79043063192066],[-127.42994295272779,56.79025110751916],[-127.42996497203318,56.790070440315276],[-127.43002924764906,56.789896030230636],[-127.43014395772661,56.789727786848495],[-127.43025759283304,56.78955843460192],[-127.4303691945828,56.78938910472879],[-127.43054815803468,56.78924032266653],[-127.43074785594531,56.78909803507048],[-127.43091636586938,56.788943764801196],[-127.43107761289262,56.78878733331108],[-127.43129816648968,56.78865490010965],[-127.43155327623964,56.78854225600817],[-127.43179267952355,56.78842081995297],[-127.43199654891086,56.78828072555703],[-127.4321723368571,56.78812973506146],[-127.43232322405296,56.787970054683065],[-127.43244307338482,56.78780287306936],[-127.43256498672885,56.787635668508834],[-127.43268381785113,56.78746849795146],[-127.43277272712409,56.7872960552516],[-127.4328112449936,56.787118567047045],[-127.43293532763259,56.78695470008885],[-127.4331039024635,56.78680266754493],[-127.43328694065801,56.78665383657157],[-127.43352424147896,56.78655931601332],[-127.43370116775127,56.78638365666261],[-127.43395205897794,56.786268813181344],[-127.43422504811905,56.786169413390795],[-127.43445811656298,56.78604355993756],[-127.43465523678589,56.78588784708153],[-127.43483782997959,56.785754707838414],[-127.43509494247891,56.78564203443188],[-127.43534062851364,56.7855250046317],[-127.4355631974766,56.785392541712696],[-127.43579834697746,56.78526778337094],[-127.4360271831481,56.78513861205709],[-127.43626450282991,56.785017190711294],[-127.4365374772067,56.784917786120445],[-127.4367737778754,56.78479637513364],[-127.4370435852645,56.78469476332148],[-127.43723086170773,56.78455036220891],[-127.43747022249345,56.784428915951004],[-127.43769068778124,56.78429535202966],[-127.43784580065665,56.78414010081158],[-127.43809146884298,56.78402306589792],[-127.43838250125715,56.78394138702531],[-127.43868671391608,56.783883094524626],[-127.43894291168088,56.78377378544208],[-127.43916032894805,56.78364137350223],[-127.43938500575865,56.783511121751346],[-127.43964951780012,56.78340508072057],[-127.43982351340023,56.78326194415311],[-127.43990420953934,56.783255443255314],[-127.43997397149565,56.78323001299597],[-127.44018300948052,56.783203033100214],[-127.44041652924753,56.78320043460069],[-127.44073139204322,56.78315322514802],[-127.44104882824357,56.783120554651966],[-127.44137160169711,56.783093427161056],[-127.44169671516522,56.78307411731048],[-127.44201952950915,56.78304810838489],[-127.44234719157478,56.78304221623973],[-127.44267425503512,56.78304753638717],[-127.4429993257081,56.78302710308603],[-127.44332135700313,56.78300782350221],[-127.44364943631665,56.78301312985623],[-127.44397645792198,56.783017326534186],[-127.44429953358686,56.7830260490001],[-127.44462563561811,56.783005600095294],[-127.44495209726504,56.78299523216317],[-127.44527874242766,56.782989343940294],[-127.44560595679793,56.78299913757923],[-127.44590502587491,56.7830507087115],[-127.44623188062803,56.78305041897708],[-127.44655782856776,56.78305350049087],[-127.44688402779353,56.78306330225441],[-127.44721202430135,56.783066359222964],[-127.44753869522427,56.7830615856589],[-127.44786580146156,56.7830680128682],[-127.44819213703605,56.783054276230395],[-127.44851367932338,56.78302154141083],[-127.4488389563391,56.78300669433532],[-127.44916596206448,56.78301087808695],[-127.44948893865168,56.782989331246775],[-127.44980271431402,56.7829409911207],[-127.45011739568753,56.78288927813739],[-127.45043108580464,56.78283869613683],[-127.45074473311821,56.782786993200695],[-127.4511093746532,56.78294764086297],[-127.45136122110574,56.78305127868026],[-127.45153186440464,56.783202893914066],[-127.45173188322501,56.783345214298116],[-127.4520205454328,56.78341930112316],[-127.45234712740056,56.78343917071582],[-127.45266818348729,56.78342099945305],[-127.452996225531,56.78342516194357],[-127.4533160509596,56.78345631143241],[-127.45357504226138,56.78355874420643],[-127.45379931509582,56.78369182396404],[-127.45397991844149,56.78383547975525],[-127.4541465791031,56.78398937780455],[-127.45440295828992,56.7841041655113],[-127.45465294101359,56.784212300721435],[-127.45495927716647,56.78426601084572],[-127.45523906303016,56.78434915565674],[-127.45551001926268,56.78444248501995],[-127.45577225601967,56.78454935970635],[-127.45603751662176,56.784655079219775],[-127.45632264777085,56.784743764892035],[-127.4565978164478,56.784840406620035],[-127.45683659365422,56.784949784530426],[-127.45709622042575,56.78506901318544],[-127.45735352142731,56.785180422972445],[-127.45757764790949,56.78530901560928],[-127.45774030015151,56.785465195841994],[-127.45786216813268,56.78562631784926],[-127.45810541425593,56.78574572910273],[-127.4582740441354,56.78592425445906],[-127.45845298305032,56.7860499928234],[-127.45858828997636,56.78621432479906],[-127.45872756854757,56.78637524994828],[-127.45884260304067,56.786545413428726],[-127.45894270453798,56.78672695166976],[-127.45908057386612,56.78687780653241],[-127.45928021707509,56.78700891379959],[-127.45925309829663,56.78726809041788],[-127.45915708642245,56.78743951202595],[-127.45905902505667,56.78761095667141],[-127.4589630114726,56.78778237817129],[-127.45887835730939,56.78795591289836],[-127.4587968094183,56.78813053322876],[-127.45874094551603,56.78830710540594],[-127.45869639930088,56.78848467069681],[-127.45867136571374,56.7886631367751],[-127.45864734805426,56.78884159141819],[-127.45862438855507,56.78902115480523],[-127.4585921755545,56.7891997018124],[-127.45857225466705,56.789378110333026],[-127.45860555873355,56.789554798528144],[-127.45859490753077,56.78973422330125],[-127.45858727896079,56.78991249338114],[-127.45860427781268,56.790091606658635],[-127.4585982787413,56.790231756141736],[-127.45885243065099,56.790394749362484],[-127.45909883341818,56.790515244552466],[-127.45934200374853,56.790631293114814],[-127.4595346571687,56.79076696193387],[-127.45964573517179,56.790967427661286],[-127.45979734880059,56.791074421796765],[-127.46027120132035,56.79124726214152],[-127.46048238517365,56.791384961969676],[-127.46066186387189,56.7915241398568],[-127.46091518720237,56.791664725560906],[-127.46110846097218,56.7917891786731],[-127.46128944171359,56.79194066604879],[-127.46148523229199,56.79207741747223],[-127.46163174921688,56.79223937939256],[-127.46185077444196,56.79236690274118],[-127.4620532834969,56.79246435450184],[-127.46209936509874,56.79265322528137],[-127.46224211129811,56.792633682597135],[-127.46243177048274,56.792608006548484],[-127.46262128573004,56.79263276146102],[-127.46294157611696,56.7926739689625],[-127.46325688017936,56.79271859401229],[-127.46357782331022,56.79274970665355],[-127.46389483863399,56.79278534555264],[-127.46421489372358,56.79281982864567],[-127.46452916778867,56.7928644622803],[-127.4647784721669,56.792952415284645],[-127.46511913108407,56.793016920857696],[-127.4653753481015,56.79312496638866],[-127.46563456329542,56.7932307361764],[-127.46593061623494,56.79330807187758],[-127.466232432824,56.793348359871366],[-127.46656461589262,56.79335132141619],[-127.4669031717042,56.79333291736437],[-127.46722831289334,56.793285527286564],[-127.46751948414806,56.793234038798396],[-127.46780946493702,56.79315118465927],[-127.46813712359129,56.79314298684338],[-127.46845062212111,56.793112535597416],[-127.46877017776632,56.793052877699566],[-127.46903581832116,56.79295012502094],[-127.46934025639563,56.79292425704826],[-127.46964900934587,56.79293083853335],[-127.46999198829334,56.79286754971313],[-127.47025443148921,56.79276146881639],[-127.4704659486682,56.792663810428564],[-127.47082247365756,56.792579072965374],[-127.47110846667611,56.79247272276217],[-127.47142443669223,56.7923996510437],[-127.47168017234439,56.79227907484965],[-127.47181112404618,56.7922462076924],[-127.4719710744543,56.792220855323684],[-127.47226704706227,56.792161456813595],[-127.47248351575946,56.79205925611794],[-127.47276181649272,56.791966437623074],[-127.47301374586884,56.79185374667407],[-127.47331126755414,56.79178088018228],[-127.47360019243648,56.79169802490015],[-127.47387785563363,56.791615297174],[-127.47418117900729,56.79153339731486],[-127.47448294803385,56.79146496237229],[-127.47478139480764,56.79138984059549],[-127.47505149840758,56.79132400635021],[-127.47531250803898,56.79118094953466],[-127.47561719177753,56.79113489192112],[-127.47597718555059,56.791115098882095],[-127.47617181167334,56.791032192178236],[-127.4763674289381,56.79081367383726],[-127.47664132703396,56.79079374006948],[-127.47686506735853,56.790694810957724],[-127.47720327573994,56.79061474726145],[-127.47744468288094,56.790495443632274],[-127.47769967040807,56.79038270850131],[-127.47792843972121,56.790254582914855],[-127.47816557371263,56.79013084405406],[-127.4784415842295,56.790032435989474],[-127.47874009787765,56.789959545499364],[-127.47905236357646,56.789897703810446],[-127.47937021296794,56.78984812483058],[-127.47969096687189,56.78982092510027],[-127.48001244413256,56.789839663440226],[-127.48033602546916,56.78988639347743],[-127.4806579485479,56.789916331749275],[-127.4809589736096,56.789882630546124],[-127.48128488679106,56.7898295926011],[-127.4816036795607,56.789777755981895],[-127.48191481774289,56.78974057480642],[-127.48223436769386,56.78968200397598],[-127.48254696886286,56.78962911523989],[-127.48286289160296,56.789582911669896],[-127.4831846140943,56.78955457147823],[-127.48348047757976,56.789519802836494],[-127.48379873491048,56.789427623029646],[-127.48409830931519,56.78935582854856],[-127.4843978232541,56.789282913395056],[-127.48469521779724,56.78920778052005],[-127.48499362734411,56.78913263530867],[-127.48552352388388,56.7890010413817],[-127.48554215882073,56.788819280108235],[-127.48555466393319,56.78863758919435],[-127.48557847141645,56.78845688925608],[-127.48562716359719,56.7882837483867],[-127.48582788520126,56.78814696514607],[-127.48610707229541,56.78805186600173],[-127.48622353875466,56.787882429489585],[-127.48629014886758,56.78766873881846],[-127.48647850360722,56.7875567511245],[-127.4866883163058,56.78741650015008],[-127.48690132130459,56.78727957414932],[-127.48712680494782,56.78714698708453],[-127.48737558004751,56.78703430392219],[-127.48769330914894,56.786982464261236],[-127.48801929344275,56.786985441386406],[-127.48833833263498,56.78702099676467],[-127.48865592701631,56.78707225726062],[-127.48893759554724,56.787148584810055],[-127.48925366040324,56.78721330941649],[-127.48958544766614,56.78720725055421],[-127.48985189519539,56.78720754618979],[-127.49023401327939,56.78723116429642],[-127.49056278186005,56.787253154273266],[-127.4908837416405,56.78725842339903],[-127.49118646016414,56.78724260924969],[-127.49153761456024,56.78723408095233],[-127.49186407244233,56.78722247433475],[-127.49219585937497,56.78721640878273],[-127.49253562461317,56.787204647067654],[-127.49286476226945,56.78720981698889],[-127.49316584572779,56.78725789493322],[-127.49343482189583,56.78735004853538],[-127.49368638300935,56.78746929850685],[-127.49393211887629,56.78759645989912],[-127.49418475887674,56.78771681717038],[-127.49440375728443,56.78781514904163],[-127.49477874900113,56.78783995677884],[-127.49511276249363,56.787838340756984],[-127.49543536417308,56.787806597732164],[-127.49576993364518,56.78779264626464],[-127.49608147526887,56.7877666327467],[-127.49639075463594,56.787787712596945],[-127.49671539802321,56.787835510058954],[-127.49701407630057,56.7879004169869],[-127.49729432541083,56.78799243239861],[-127.49761182875609,56.78801453490611],[-127.49775853140278,56.788018440946466],[-127.49796240617187,56.78801720258535],[-127.49831123855873,56.788027734181135],[-127.4985656168307,56.78803375497864],[-127.49884819894277,56.78802712138285],[-127.49922728393501,56.78802497289001],[-127.49955358170477,56.788035762126576],[-127.50000003716667,56.7880530029444],[-127.50001148507319,56.78787244285126],[-127.50008170111987,56.787701287775285],[-127.50021057070593,56.787536176936165],[-127.50032082806688,56.7873667990247],[-127.50043420897521,56.78719850548726],[-127.50054659984022,56.78703134399978],[-127.50066824356752,56.78686519581933],[-127.5007444432345,56.7866894883986],[-127.50085883640216,56.786521182778614],[-127.50092272684492,56.786345617992275],[-127.50096912543397,56.78616801468191],[-127.50100114044513,56.78598945749331],[-127.5010208205956,56.785809922682546],[-127.50107340706899,56.785633368290846],[-127.5011413650199,56.785456635628094],[-127.50117547058632,56.78527917487905],[-127.50128652248904,56.78505151241868],[-127.50133950003104,56.78475280088533],[-127.50117706964082,56.78468632418556],[-127.50091710261106,56.78458847902675],[-127.50072541150304,56.784428205199866],[-127.50071805445789,56.7842646733938],[-127.50046146735521,56.784121961608875],[-127.50024295985374,56.78398329065024],[-127.50010547892316,56.78382014636249],[-127.49990831725468,56.7836767448506],[-127.4996899878511,56.783542553641254],[-127.4994878301418,56.78340257142579],[-127.49927957212279,56.78326378024919],[-127.49910160745756,56.783113431275865],[-127.49892970253173,56.78296077058457],[-127.49874969225505,56.78281044487669],[-127.4985334201095,56.78267622806871],[-127.49831710610356,56.78254089074921],[-127.49810685192892,56.7824032416317],[-127.49787249604601,56.78227819841646],[-127.49761630348577,56.78217133807465],[-127.49737636893957,56.7820609271745],[-127.4971060142517,56.78195871235918],[-127.49682781426516,56.781865553028354],[-127.49654761061588,56.78177353694992],[-127.49623490203727,56.78171551590859],[-127.4961751248071,56.78165344987517],[-127.49619098832939,56.78148068459493],[-127.49640381353483,56.78134038278327],[-127.49667856913159,56.78123858763536],[-127.49690120672206,56.78111386078417],[-127.49704871894397,56.780954141350016],[-127.4971805565483,56.78078675844094],[-127.49734244744081,56.78062799300621],[-127.4974683709972,56.78046628153687],[-127.4974491050113,56.7802860779761],[-127.49744113955876,56.78010686434842],[-127.49754101681432,56.77993424757988],[-127.49770824806139,56.77978102322357],[-127.49793576952334,56.779650634745614],[-127.49815608563037,56.779519208606764],[-127.49843198605987,56.7794207583773],[-127.49870693953955,56.77932455983724],[-127.49885135704675,56.77916487419415],[-127.49885670657171,56.77898550649798],[-127.49887542059491,56.778807104701016],[-127.49894033956542,56.77863152976063],[-127.49899189351734,56.77845498894002],[-127.4989869583029,56.778274619769775],[-127.49897993164667,56.778093154183445],[-127.49917917472747,56.77778826803336],[-127.49943644508714,56.77781778666695],[-127.4997915906638,56.77783496396533],[-127.50007448878047,56.77783840915097],[-127.50046997172531,56.7778652029806],[-127.50075902439268,56.77789547117396],[-127.50109847120879,56.777903861662594],[-127.50142578695187,56.77791687464539],[-127.50175486322269,56.77792202174652],[-127.50207459541703,56.77795081034932],[-127.50238219735236,56.77800999684336],[-127.50268128762623,56.77808721203365],[-127.50297434883335,56.77816785855316],[-127.50325757853423,56.77825870458197],[-127.50354467189493,56.77834390181491],[-127.50385758177293,56.778407505861345],[-127.50180677442323,56.77741151863871],[-127.4976452236357,56.77598047493386],[-127.49567543415023,56.77421020453339],[-127.4939118582673,56.77289475475436],[-127.4912124109142,56.77044252354699],[-127.49007535099256,56.768151563681464],[-127.48955946573233,56.7666692808361],[-127.488218336948,56.763753099257805],[-127.48863792162025,56.76243935657757],[-127.49456832103701,56.76187789360657],[-127.4981088270402,56.76090456146439],[-127.50226975109699,56.75987910139142],[-127.5037371970737,56.75576496148221],[-127.50405117715071,56.75456894294101],[-127.503227582375,56.7517096666971],[-127.50313244582337,56.74896743845319],[-127.5066736774476,56.74725871340435],[-127.51207980420862,56.74686390277217],[-127.51748337595605,56.74703370024732],[-127.52049661730778,56.74715071351467],[-127.52496701174167,56.74675739629381],[-127.52912648193623,56.746762069167005],[-127.53172412419278,56.7472154472697],[-127.53546555765058,56.74749382424201],[-127.53889450138837,56.74750685591065],[-127.53889952946525,56.74600960400406],[-127.5352632949909,56.74510251473944],[-127.53297762547007,56.743838644019704],[-127.53194402414108,56.74138546904602],[-127.5322629955398,56.738476975145154],[-127.53174709192555,56.73596388078031],[-127.53269013596427,56.731783915336756],[-127.53269728362271,56.72813502842453],[-127.53270018093878,56.72665575217638],[-127.53363927662787,56.723910258866844],[-127.53406321592546,56.719395794262375],[-127.53334341577894,56.71694791190696],[-127.53251955974436,56.71277101360226],[-127.53252288263059,56.71088831992179],[-127.53242320791131,56.70940131034086],[-127.5312811388188,56.70808803184993],[-127.52618985810223,56.709403377014034],[-127.52203270948924,56.71190882566737],[-127.51943408111838,56.712880735933325],[-127.51620985492987,56.71533019406811],[-127.51298523634625,56.71641689589334],[-127.50716728694165,56.7164759219778],[-127.50197602344294,56.71647361328558],[-127.49449321849181,56.71725964009624],[-127.48940381147622,56.717381156177545],[-127.48555999659882,56.71725506974886],[-127.48057223115163,56.718056402419286],[-127.47891110314536,56.718514704797094],[-127.47631091643892,56.71867891022453],[-127.4728904109524,56.716853244805755],[-127.47061020087995,56.71496073221076],[-127.46905632888316,56.71382194064187],[-127.46708822367296,56.712275453337256],[-127.46532668919261,56.711130014137275],[-127.46502639481888,56.708730845298575],[-127.46264297133662,56.70735934017539],[-127.45880057401236,56.70724141958374],[-127.45380640457782,56.70929686625626],[-127.44871181666329,56.71089603796297],[-127.44590878140696,56.71123224058946],[-127.44186393882262,56.7099685869265],[-127.44010158802912,56.70916348492719],[-127.43761293825435,56.70790924200315],[-127.43492133641145,56.70636137206988],[-127.43326345230224,56.70533090339401],[-127.43098763337368,56.703679732014194],[-127.42943579274454,56.70246874947325],[-127.42611506011592,56.70167173826759],[-127.42518646601799,56.7005255433579],[-127.423743832983,56.69835407382725],[-127.42375262092497,56.696587939304955],[-127.4254231909584,56.69464211227942],[-127.42615670978165,56.69315484765582],[-127.42440259212476,56.69104062450476],[-127.42222928095936,56.689782638076856],[-127.41746168846556,56.68829314830484],[-127.4154983715111,56.687149288936574],[-127.41457082347837,56.685088636596156],[-127.41374994407438,56.683035777684495],[-127.41095135872253,56.6827436679485],[-127.40451788259676,56.68279588592248],[-127.40161226950873,56.682791603860586],[-127.39621610969938,56.68278732017877],[-127.39465341006489,56.68380823539773],[-127.39422336306663,56.68626019384489],[-127.39514391553452,56.688894788426445],[-127.39481908019282,56.69134561902421],[-127.39200418250873,56.69306132777544],[-127.38628640075545,56.69470955640385],[-127.38421107447417,56.69482146182071],[-127.37964200774778,56.69480760021493],[-127.37746352316064,56.69475017287062],[-127.37446260701311,56.69291752552856],[-127.37436697187408,56.69183383783761],[-127.37176494959533,56.69268623776031],[-127.36988400462353,56.694624607508544],[-127.37038787002317,56.697254829953415],[-127.3696430398312,56.700221025359745],[-127.36557475553188,56.70300724757277],[-127.36119868820371,56.70551868251667],[-127.3582857313011,56.70625754169028],[-127.35299060217083,56.706133816199554],[-127.3495657721716,56.70589173949309],[-127.34737608537782,56.70720548622878],[-127.34663177506528,56.70983088789906],[-127.34744935977182,56.711669058463485],[-127.34908958208996,56.714690926461856],[-127.34886496274886,56.71743642957873],[-127.34926226401947,56.71988857774359],[-127.34685562213542,56.722459626130245],[-127.3446462049314,56.72650773916781],[-127.34379203819685,56.72969906252939],[-127.34201219038906,56.731752524062934],[-127.33763540751825,56.733402555870406],[-127.3351416251227,56.73340144147626],[-127.3301440041878,56.73453767838715],[-127.32567213518548,56.73480772689499],[-127.32027500323439,56.73417268357195],[-127.31580849057838,56.73387756701682],[-127.31040219724235,56.73426416917618],[-127.30530200299485,56.735508052352806],[-127.30259795070108,56.73567875838194],[-127.30094371072244,56.73441348365242],[-127.29970869192984,56.732982613958676],[-127.2982663716544,56.73150002950734],[-127.2969358834572,56.72892263837614],[-127.29592107434654,56.72623450059083],[-127.29562728816836,56.723781175558216],[-127.29501814539688,56.722236425800645],[-127.29492023681111,56.72166368060352],[-127.29493702474518,56.71944032507217],[-127.2935017161043,56.71725840905114],[-127.29195468724382,56.71589336182384],[-127.29040470037997,56.71474347395856],[-127.28706381380785,56.71679378916364],[-127.2832073957512,56.71860709746309],[-127.27821300079728,56.7195171781583],[-127.2754974932109,56.72105003070126],[-127.27433310198467,56.723562592467054],[-127.27193716198488,56.72452745900531],[-127.26829389053952,56.72508319794561],[-127.26372159732115,56.725074197114594],[-127.25269400629807,56.726588957117805],[-127.2495444028439,56.73034863529866],[-127.24557842096353,56.73200050451994],[-127.24172707926881,56.732674028596996],[-127.23526845027793,56.73431363823722],[-127.23015953302047,56.73606558775384],[-127.22568504949048,56.736341159052024],[-127.22247432169726,56.73570819342385],[-127.22206065171551,56.73524595652358],[-127.2200998153777,56.733874999054386],[-127.2176225660548,56.732607487200525],[-127.21484356630816,56.72973814998231],[-127.21382102842486,56.72802660498507],[-127.21217521359854,56.72659879477713],[-127.20989381184548,56.72601059707697],[-127.20835151414114,56.72458177297864],[-127.20568040990548,56.721720219567885],[-127.19866298102484,56.71718683681275],[-127.19671721832566,56.71495485061355],[-127.19467408982605,56.71174664275775],[-127.19314109615163,56.70951976123194],[-127.19191674227523,56.7075141231219],[-127.19047806632246,56.706084158055],[-127.18697291647855,56.70384848180314],[-127.1863575306857,56.70321768109938],[-127.18410292649925,56.70046845341943],[-127.18205951389874,56.697493158709015],[-127.18197126296303,56.696005927246446],[-127.1809743265182,56.69257284155904],[-127.17913088118041,56.69016939031562],[-127.17668013862003,56.68674058993737],[-127.17504947250202,56.68432619015403],[-127.17300034399277,56.68158390962758],[-127.16992183912245,56.6787164762401],[-127.16859934347534,56.676433679113785],[-127.1673861828699,56.67390785761361],[-127.16452155186842,56.670133026815684],[-127.1601016141718,56.66686514920696],[-127.15680701474317,56.664626859579265],[-127.15423319623135,56.66301848128474],[-127.1459376987027,56.662644217696624],[-127.14148066061374,56.662513405643146],[-127.13766744138778,56.66079016975307],[-127.13187476312883,56.65939793696874],[-127.12731448182095,56.659213762458876],[-127.12214372381028,56.65794115725422],[-127.12028926453326,56.657025039729916],[-127.11885239873008,56.655926001300195],[-127.1174235501552,56.654038069483775],[-127.11725147025916,56.651180128889216],[-127.1169684057312,56.649183670310016],[-127.11605992678801,56.64723744448419],[-127.11525914557944,56.64494966379402],[-127.11415674329467,56.6420370303008],[-127.11263035803206,56.63985410815819],[-127.11140528378938,56.63842152232465],[-127.11102000785672,56.636085330806914],[-127.11352091943999,56.63534666997203],[-127.11602534086698,56.633810165906475],[-127.11595053468284,56.63152508740396],[-127.11360860161194,56.62843496000372],[-127.11187188095752,56.62637039341601],[-127.10951283069842,56.62448147251038],[-127.10394618267122,56.62252141988088],[-127.09816507486,56.6207870493147],[-127.09331667260932,56.61922378875594],[-127.0885619135171,56.61840353063861],[-127.08470928886399,56.6198163861694],[-127.08291360087482,56.62237711974751],[-127.07870541892633,56.626992757242355],[-127.07097651987792,56.63124315403572],[-127.06775191944709,56.63225588396437],[-127.06038554784368,56.63263039188348],[-127.05386804661181,56.631796433236765],[-127.04724153976824,56.631375353763374],[-127.04316827262039,56.63341619125225],[-127.0414922518661,56.634550174926794],[-127.03898412581177,56.635905967151956],[-127.03408974301485,56.6375408069962],[-127.03136874736519,56.639238769326596],[-127.03186167147038,56.6409647833673],[-127.03380292027371,56.64279572342496],[-127.03346306728709,56.64456426166134],[-127.03002491051663,56.64580183793389],[-127.02595190528314,56.647788345377315],[-127.02345136302412,56.648632852596386],[-127.01907889699503,56.649698272520745],[-127.01598081208525,56.64894288129852],[-127.01174218734317,56.648178439839164],[-127.00707971629556,56.64787430871867],[-127.00344592746835,56.648261164750295],[-127.00029974923532,56.65041891022374],[-126.99998089620813,56.650923338127676],[-126.99862042524077,56.65165991954141],[-126.99522976175247,56.65621269169742],[-126.99248394891102,56.659173876762274],[-126.98973132848587,56.662645979215185],[-126.9842869134748,56.6657621135458],[-126.97607037336567,56.666971847703714],[-126.97181877307071,56.666959112850094],[-126.96135192729228,56.66633834525239],[-126.95649521986759,56.66522710134321],[-126.9538077443545,56.664762962091025],[-126.95047253659288,56.66554050058906],[-126.94920180920732,56.66695712064684],[-126.94885251285582,56.669299162542025],[-126.94602906702339,56.670431361865326],[-126.94166666432717,56.67075009265915],[-126.93768792111528,56.67278688119679],[-126.93777515872547,56.67369156171284],[-126.93772319116714,56.67678435274613],[-126.93467450167876,56.678993561491524],[-126.93049688396805,56.680457902568286],[-126.92393358924042,56.68173303983545],[-126.91841762660982,56.68267770912308],[-126.91137229932505,56.68212707488751],[-126.90524662088082,56.68226876615047],[-126.8973325113858,56.68359682526337],[-126.89239698457689,56.68653520225794],[-126.89173302942622,56.68881651946584],[-126.88425573099782,56.689118913332095],[-126.88364775855116,56.68831635999369],[-126.87983485175391,56.68692616331489],[-126.87281363711455,56.68500184791202],[-126.87012771433994,56.684302898552964],[-126.86816204083698,56.68400240882724],[-126.86600909380674,56.68268131315686],[-126.86344952199337,56.68089680523722],[-126.85953687601895,56.6792736431628],[-126.8576925003214,56.67806688559712],[-126.85388236272348,56.67666696195714],[-126.84899153294771,56.67727287440636],[-126.8451434232672,56.67781799882932],[-126.84110289195947,56.67750377752141],[-126.83655466681567,56.67657424878981],[-126.83223304417477,56.674719876055306],[-126.82737271518984,56.67412368397466],[-126.82045217583226,56.67247378519019],[-126.81270222366317,56.67094526825542],[-126.80789680007683,56.67250815758299],[-126.80947634608498,56.676289743569946],[-126.81449218834916,56.679574630957475],[-126.81569644522556,56.681646526285284],[-126.8144944085674,56.684549281301685],[-126.81247520534403,56.686650468348276],[-126.81210016106456,56.689727269276695],[-126.81592951075599,56.69020508261296],[-126.82483603576024,56.691286858619826],[-126.82937426971343,56.6926381628055],[-126.83461807993166,56.69517689233548],[-126.83788519889622,56.69793441446685],[-126.83919838861875,56.699664804976585],[-126.84040250110218,56.70178132470608],[-126.83777163851359,56.70342080656669],[-126.83120908802572,56.70948667606593],[-126.83125661426355,56.712229211275215],[-126.83452987206677,56.714646198530325],[-126.83489323719557,56.71722535796993],[-126.8314432057423,56.71840390093599],[-126.82470043023221,56.717846546161475],[-126.8141143468699,56.717384817771034],[-126.80611395879657,56.71756045857222],[-126.80059696181861,56.71804293002597],[-126.80038572354479,56.718214545430925],[-126.7978867111256,56.7185437214815],[-126.7937067666712,56.71960026499842],[-126.79221383187627,56.721420057267444],[-126.79265267990586,56.72507449146148],[-126.79145493838574,56.727636444276456],[-126.78553196564728,56.7276008643687],[-126.77927865009104,56.72853506818589],[-126.77812066864452,56.729151565085715],[-126.77921824701941,56.73133206227063],[-126.77788880985848,56.735033060541134],[-126.77517828642063,56.74009584266623],[-126.77629174315166,56.74147852257703],[-126.7780030268069,56.74867500144484],[-126.78353448133429,56.752424279318795],[-126.78855082865824,56.75611373056372],[-126.7891893888489,56.76017040235177],[-126.78352566969461,56.76236508672528],[-126.77568693597523,56.764025791936554],[-126.76719589198048,56.76711512319673],[-126.76424321410452,56.76886259792209],[-126.75332955699798,56.76845151577576],[-126.74267890516587,56.77015344260769],[-126.73556136229209,56.7721571497434],[-126.72753155672571,56.772964456542326],[-126.72306715385302,56.77258610992864],[-126.71593076871314,56.77082408278601],[-126.71128505311957,56.7693079477882],[-126.69655045984753,56.76778360520656],[-126.68134702238346,56.76852786042095],[-126.66909860566446,56.771585625268024],[-126.66270123736268,56.77365328874942],[-126.65401989570555,56.775526032995934],[-126.64670625900614,56.77672805684966],[-126.64114637878066,56.778458809110056],[-126.63892980017557,56.77964400701303],[-126.62943400982151,56.78065860438714],[-126.62348112668928,56.781413468972104],[-126.61191442388086,56.78212300906724],[-126.60680604015525,56.782478710470336],[-126.60077370379993,56.78231861135301],[-126.59250014261534,56.780429570106044],[-126.58615374233501,56.77655034259057],[-126.58257964225405,56.77407460961384],[-126.5779006392606,56.77020541142723],[-126.57832913366911,56.76598168053085],[-126.57903812125993,56.76278750446298],[-126.58098445435441,56.76011662448286],[-126.58364871174922,56.75768449489122],[-126.58401211750972,56.75591705274788],[-126.58106387247113,56.75333092936422],[-126.57819451548514,56.75182000315083],[-126.57737722265078,56.75124103113846],[-126.5725553124273,56.74897679453973],[-126.56802927233994,56.74716821764941],[-126.56380757031394,56.74570773163696],[-126.56210510639825,56.74334881146179],[-126.56336131823569,56.73930087034667],[-126.5608281147143,56.73699934052876],[-126.55818523401314,56.73480579888874],[-126.55767937906496,56.73435085260277],[-126.5547093802669,56.73272334361705],[-126.55130993945303,56.73167125189641],[-126.5472080217157,56.72968986606151],[-126.54393723905187,56.72778552902209],[-126.54172257071436,56.72530304277022],[-126.53877090318525,56.723056641692125],[-126.53664364156228,56.72115632301592],[-126.53557268826319,56.71863313762781],[-126.53359129453882,56.71519050100936],[-126.52699853518439,56.71325461796675],[-126.52359021224613,56.71265001408951],[-126.52155071838317,56.711322750406715],[-126.51775719688456,56.70957226531299],[-126.51562814962516,56.707788150789405],[-126.51319224813987,56.705825960541574],[-126.51198860833286,56.704333895051924],[-126.506318640578,56.70285043853703],[-126.50076129372832,56.701267705662644],[-126.49695873202081,56.6998572596536],[-126.4889056424456,56.698247747849514],[-126.4848783599706,56.69752795698996],[-126.4788873009568,56.696447852025585],[-126.47795666751352,56.696325816341435],[-126.47035837488573,56.693575169200265],[-126.46791278825499,56.69206930223981],[-126.46595268992768,56.68816851996535],[-126.46344180194664,56.685345252675276],[-126.46049012409476,56.68349151488671],[-126.45898465170586,56.68182080188055],[-126.45770123309025,56.6796473616477],[-126.45619771713785,56.67786009572888],[-126.45699077146298,56.672327171226186],[-126.45513180197038,56.668596212762615],[-126.44907110847159,56.66660079420669],[-126.44413223771868,56.66530034272174],[-126.44218933975517,56.66437487703834],[-126.43903359527782,56.66239589915428],[-126.43609037957735,56.66030857550031],[-126.4319962392771,56.65845807938777],[-126.42787048137362,56.65778168870518],[-126.42448683685167,56.65987223523753],[-126.42205347076904,56.66138596954818],[-126.41883296111287,56.66152194096256],[-126.41321606397894,56.661988188399796],[-126.40809359336366,56.66325928214735],[-126.4073629706483,56.66341395824287],[-126.40336967094744,56.664977068631856],[-126.40021829042523,56.66620582333806],[-126.39632027916957,56.668055231509456],[-126.39200862717371,56.66984303970848],[-126.39232877885058,56.672817732867195],[-126.39224396180906,56.67544410947805],[-126.39285997985203,56.67887501899451],[-126.38204910992982,56.679454197248695],[-126.37647165516908,56.678610144268305],[-126.36847028214083,56.678866261889084],[-126.3599615261641,56.67884545009672],[-126.35149088711496,56.677730505267036],[-126.34388808995539,56.67845904483891],[-126.33609864977798,56.678667776897264],[-126.33288527107494,56.678523733438055],[-126.32634854084797,56.678513532946454],[-126.32091249312653,56.67965647713084],[-126.31333485505789,56.67969301447417],[-126.3073455292324,56.67877527540726],[-126.30199989426661,56.67730006048407],[-126.30090939349114,56.6757968531567],[-126.29640185710569,56.67415812378325],[-126.2893454354115,56.67408450415192],[-126.28375337468225,56.67379218143332],[-126.2825097288441,56.673732169409355],[-126.27547922300954,56.67297656341026],[-126.27156696734887,56.67212442547477],[-126.26914179683452,56.670336949397694],[-126.26662085069401,56.66825385682313],[-126.26628214354724,56.66607660690816],[-126.26640760999899,56.66248228969298],[-126.26652680736906,56.65916583662483],[-126.26298553793325,56.65661873093435],[-126.25369243647398,56.655499073872356],[-126.24756271439028,56.655770897500666],[-126.24001569015924,56.655059178705585],[-126.23867289241265,56.65487345315343],[-126.23395160615618,56.653519773242444],[-126.23053580430759,56.650505504561806],[-126.22699634035422,56.64807394062716],[-126.21956599344462,56.64708298516635],[-126.2153605649053,56.64863164708438],[-126.21044065280385,56.64989453546624],[-126.2052047166362,56.64840620909634],[-126.2038479509221,56.64587193670946],[-126.19881104588165,56.644625031297295],[-126.19530907484693,56.644074699039024],[-126.19004675472816,56.64338347582788],[-126.18663591928548,56.64305683953655],[-126.18396261043812,56.64240641003261],[-126.18119741303023,56.64151406463953],[-126.18033713632305,56.63957038919018],[-126.18023581095402,56.6395077927529],[-126.17923080270356,56.63869359858744],[-126.17624688978194,56.63809721801961],[-126.17121949033785,56.636723754467155],[-126.17062242407843,56.63322914938751],[-126.17098986101028,56.62907004612593],[-126.17316180165079,56.62645905459538],[-126.17448949161668,56.62425248772969],[-126.17490720298179,56.62140184805711],[-126.17613894813,56.61901615054218],[-126.17707367986304,56.616173766777145],[-126.17107796640892,56.60759584465637],[-126.168488164187,56.60488364528686],[-126.16424786906263,56.60192256564677],[-126.16112936538731,56.59960524528121],[-126.15269587620949,56.59533150428746],[-126.14975351821994,56.59370380999904],[-126.14670114650886,56.592300234009734],[-126.14517737020093,56.591540161494414],[-126.13879458774275,56.590552377357604],[-126.13371758318718,56.59066529509034],[-126.12929032999938,56.58998867762632],[-126.12703461760789,56.589390446193946],[-126.12387943762607,56.58798643531034],[-126.12037784404762,56.58754163952011],[-126.11639163997312,56.58623680625397],[-126.11588080796069,56.58548443354928],[-126.11443440228327,56.5833616630707],[-126.11378748839232,56.581354684676846],[-126.11065149244553,56.57949326412073],[-126.1069114105809,56.57722000831886],[-126.10774060543913,56.574548566365536],[-126.11083174044175,56.57229642073252],[-126.11539578840333,56.569379687128276],[-126.11641882615412,56.567048589870595],[-126.11664289564646,56.56397435114277],[-126.11820589222133,56.56107813814198],[-126.12398991827342,56.55868875751517],[-126.13091272113178,56.55625315531552],[-126.13348842185286,56.55388450007622],[-126.1338091949566,56.55091769670681],[-126.12861308237507,56.54886170372007],[-126.12279081469423,56.54696742080499],[-126.11933255521126,56.545500887541415],[-126.11682585878812,56.54347775198955],[-126.11356474594832,56.539609048357036],[-126.1112673928547,56.537576664291805],[-126.10785596097573,56.53491783618828],[-126.10627316798228,56.533064008261285],[-126.10554006676121,56.530716556230225],[-126.10374430787445,56.5290421166119],[-126.10075121860238,56.526320040612816],[-126.10469386739851,56.520715638417634],[-126.10957869135267,56.5173508242626],[-126.12013174349781,56.51444668091718],[-126.13038767159412,56.51381831406144],[-126.13980032104095,56.51358437520642],[-126.14523859010612,56.514564164063614],[-126.15441176077822,56.51523458552765],[-126.16301923291695,56.51436361090664],[-126.16806310453731,56.51219728142544],[-126.16817336805705,56.50922176580513],[-126.17076840401992,56.506225053966006],[-126.17297345801872,56.50528110208221],[-126.17926367743794,56.505577190268966],[-126.1859634937625,56.50599784621858],[-126.19086903152849,56.50742456849532],[-126.19484365833968,56.508951100965305],[-126.19975947083519,56.507285594035295],[-126.20316619976643,56.50459166969108],[-126.20689672755863,56.501484888247546],[-126.20387165525945,56.49945536430544],[-126.19967626045175,56.49838652012864],[-126.20007551086253,56.495930335589286],[-126.20093049315447,56.492335280715245],[-126.2010368361925,56.48949419737122],[-126.2015590253483,56.48646426716406],[-126.20136067229336,56.48348924169586],[-126.20142474680765,56.481723657548464],[-126.20510200095906,56.482793261159124],[-126.20874628380975,56.482034596492696],[-126.21282381520403,56.48059401146759],[-126.21418751657964,56.4771862480573],[-126.20869486362271,56.47489210118412],[-126.20111864019088,56.47321936686041],[-126.19350963554342,56.47238864629305],[-126.1871265398333,56.47197689989247],[-126.18010714476844,56.4719510873844],[-126.17168321780538,56.46820763741894],[-126.17073601502292,56.465851955462476],[-126.16494604861181,56.46338607837731],[-126.16166502795838,56.46283462255268],[-126.1597014013273,56.4601844048401],[-126.15548700798934,56.45706193513917],[-126.15229039633249,56.45427867420993],[-126.1463138996232,56.45140891949957],[-126.1412505983007,56.4488963571023],[-126.13790922688021,56.44720623384373],[-126.13312817199831,56.44554441156017],[-126.12651367778106,56.4458199513036],[-126.118986147404,56.44578234161911],[-126.11383078632052,56.445670515460655],[-126.10830985805984,56.444465469400555],[-126.10371356056359,56.44332217456574],[-126.10433961953918,56.44047186552301],[-126.10426086085906,56.43721885889187],[-126.10382589792432,56.43515803996534],[-126.11201038057185,56.43416537981818],[-126.11914067553796,56.43385426302387],[-126.12291624749456,56.43218384332893],[-126.12588226558486,56.4301556465763],[-126.12626585873376,56.42822852781748],[-126.12365435824482,56.42642979344103],[-126.12001383156489,56.42461405131776],[-126.11875596095315,56.41985663431179],[-126.11726318894847,56.41584323795001],[-126.11489649089599,56.41301353815668],[-126.11304965850178,56.41019230307951],[-126.11428970138793,56.40746690780754],[-126.1203182120731,56.40348249269759],[-126.1300529588623,56.39948513303995],[-126.13124396794042,56.398014239653435],[-126.13372244511002,56.395188820682336],[-126.1385136223007,56.3911331625214],[-126.14405044567889,56.38908385412479],[-126.15051175360497,56.38710491688932],[-126.15242980368073,56.385408942734465],[-126.15372955629257,56.3809714961078],[-126.15195659493249,56.376098618553804],[-126.15081849556412,56.37356389632982],[-126.14917471476049,56.37075195505781],[-126.14615932931312,56.36889147079453],[-126.14239627898968,56.36759631476263],[-126.13995713848911,56.36687313479088],[-126.13963073742092,56.36458835267237],[-126.14386188867574,56.36429690834794],[-126.1484894773234,56.36166596152318],[-126.14873200823111,56.360688897298076],[-126.14832160631083,56.360689373200984],[-126.15086004393909,56.3588403796646],[-126.15063739552072,56.35654654976589],[-126.1487548587182,56.3547027248903],[-126.14625700351073,56.352725159191486],[-126.14727414536941,56.35028652784289],[-126.15198029461703,56.34828266708188],[-126.15798018543916,56.347442007961796],[-126.16601715548299,56.34712715676436],[-126.17463371448753,56.34505460560339],[-126.18141755795936,56.34244641065135],[-126.18845934059907,56.341217509312266],[-126.19477193945829,56.34293758165342],[-126.1953731637927,56.343456418185696],[-126.20169020226862,56.345122377809496],[-126.20687620635225,56.34678089901821],[-126.21465853505839,56.34778071253515],[-126.21887127883295,56.34788111607802],[-126.22477613915878,56.34680449412402],[-126.23012411926491,56.346857722890135],[-126.23454521258478,56.34691242954991],[-126.22941279319154,56.34371359248276],[-126.2243584507677,56.34126716425213],[-126.22291971872576,56.3383393492909],[-126.22540067734776,56.33510895955397],[-126.22876386982115,56.333203212682925],[-126.2304102326539,56.330243057255466],[-126.23358741478621,56.32764750849568],[-126.23665522048627,56.325285076486885],[-126.23969612394103,56.32354990637174],[-126.24166952574699,56.320140944512964],[-126.24302108272975,56.31673313937234],[-126.24770397343411,56.31518283852841],[-126.2532684533519,56.314786613970426],[-126.25544938778172,56.31411915195047],[-126.25798839322859,56.30912269559165],[-126.25979532071229,56.304459249122225],[-126.2633835975458,56.30175461295536],[-126.27335282480183,56.30168888837235],[-126.28446794295947,56.30420064858502],[-126.28972978375086,56.30665315177851],[-126.29187776410612,56.30999077930264],[-126.29453986643138,56.31327342676906],[-126.29960882103951,56.32149699423895],[-126.30566999587079,56.32463700837221],[-126.3123394001394,56.32812474763689],[-126.31638273063012,56.330166942267795],[-126.3209010983746,56.33044245327514],[-126.32416124346562,56.32819392355161],[-126.32425035864776,56.32550532390305],[-126.32659673984969,56.323017094397414],[-126.33483345770622,56.322646318625374],[-126.34217148842342,56.32151571343681],[-126.34384209078257,56.32073160770112],[-126.34862175070802,56.31918630352871],[-126.35284079880559,56.31904928119272],[-126.35300256341706,56.31722970546625],[-126.3511304088248,56.31468987079702],[-126.3489306686578,56.31284091890468],[-126.34879451367145,56.31073540782493],[-126.35228902542609,56.30756253069283],[-126.35751978338315,56.30476108898263],[-126.3591478301176,56.302095058766945],[-126.36348641478139,56.29813988908029],[-126.36990476361564,56.29339895740037],[-126.37614406327685,56.28786965641007],[-126.38744538741464,56.28448444577007],[-126.39484877769362,56.28427360999219],[-126.40390335453218,56.28373453826216],[-126.40869716478109,56.28148798103065],[-126.41218142032695,56.281700821787666],[-126.4150300955977,56.282632523438934],[-126.41738520450161,56.28288472841355],[-126.4214496529889,56.28098059341297],[-126.42541856497864,56.278789891356794],[-126.43082094383358,56.28009804438405],[-126.4337089263368,56.28309026123461],[-126.43624255807977,56.28419282318016],[-126.43842390298934,56.286793059047454],[-126.43959782163822,56.28874256344206],[-126.44484234941775,56.29193252806414],[-126.44874932329238,56.29521659796247],[-126.45424604319254,56.296980471893],[-126.45686646244967,56.298718575715164],[-126.46331857175649,56.29940330023965],[-126.46628850790155,56.29976887800508],[-126.47260102754463,56.301770948492475],[-126.47862448136573,56.30308377620494],[-126.48960692493127,56.303517153103655],[-126.49764364957332,56.30273338781211],[-126.50090223187277,56.30378705993304],[-126.50080042755972,56.30738093698798],[-126.50289582742076,56.30963096498981],[-126.50772295827494,56.31326811595135],[-126.51192077731393,56.313995177695766],[-126.5174262425113,56.31186711500025],[-126.52238897566919,56.31082535351713],[-126.52832169641918,56.31178673620591],[-126.53488722819073,56.31229713347608],[-126.53703613216226,56.31260177778267],[-126.53910370696302,56.31221670454037],[-126.54573495649097,56.31016332079904],[-126.55123500469782,56.30832058310708],[-126.55698808675517,56.30836735206771],[-126.56301208652106,56.309729990924396],[-126.56804403802988,56.31000346990276],[-126.57291773478032,56.30837764832032],[-126.57807930791861,56.30756582464652],[-126.58309822934436,56.30806280382994],[-126.59072955664922,56.307095803844916],[-126.59869036334224,56.3053292417999],[-126.60240291366127,56.30484581790109],[-126.6078679711898,56.30403135867337],[-126.61271936477135,56.303201683726755],[-126.61610769372838,56.30323021323329],[-126.6166798193442,56.30100502993454],[-126.61544189041396,56.29711279214122],[-126.61427643119895,56.29460025148995],[-126.61763280278822,56.291877752405156],[-126.6186464090053,56.28835104133789],[-126.61890549003763,56.28618114314727],[-126.62312990219831,56.28570359390723],[-126.62954901504159,56.287804945427204],[-126.63022606534581,56.28814102101144],[-126.62802585246146,56.286617216718405],[-126.6279304346613,56.28646982319038],[-126.62767881496835,56.28635792183405],[-126.62736848369757,56.28624406779139],[-126.62710550086476,56.28618038832357],[-126.62697577363097,56.28616422209007],[-126.62693023488993,56.28616332524985],[-126.62690161132709,56.28614442275802],[-126.62686049283003,56.286103178167586],[-126.6267926483946,56.28603518056995],[-126.62673634946292,56.28599289020189],[-126.62671388399326,56.28597955832032],[-126.62665780182657,56.28595182903995],[-126.62658329818328,56.28590962784282],[-126.62647822210845,56.28585413441165],[-126.62632739155192,56.28578318271974],[-126.62617571928199,56.285722316487416],[-126.62606888986413,56.28568363383357],[-126.62601701338679,56.28566484502511],[-126.6259987369728,56.285660453850134],[-126.6258921940472,56.28563969233133],[-126.62565444042148,56.28557252590158],[-126.62537875652252,56.28547305973364],[-126.62519014318498,56.28537988820351],[-126.62513203852674,56.28535104799396],[-126.62509237253798,56.28533779994473],[-126.62495404007808,56.285289188905494],[-126.6247843814171,56.28524185099029],[-126.6246369392625,56.28519328413471],[-126.6244312152557,56.28510467578429],[-126.62422951980176,56.2850149272723],[-126.62414700097999,56.28497724449986],[-126.62410941192864,56.284967346512346],[-126.62398627518095,56.28498362994991],[-126.62379259235367,56.285015939860315],[-126.62361011901626,56.28498994610808],[-126.62346334242581,56.28491897132922],[-126.62329556741156,56.28486266094018],[-126.62303172343005,56.28480793874146],[-126.62278624479013,56.28476320803526],[-126.62264011101512,56.284732555202105],[-126.6224477396159,56.284720050013945],[-126.6220938434465,56.28466352399859],[-126.62166692455563,56.28453006064421],[-126.62138258139284,56.284393662604586],[-126.62130708470389,56.28435258339626],[-126.6211984625953,56.28439119693189],[-126.62096906377954,56.28446736260056],[-126.62078389754025,56.28452651057037],[-126.62064584841777,56.28455966569856],[-126.62049047229188,56.28458394344786],[-126.62036024612827,56.284599137632505],[-126.62027842465679,56.28460625566367],[-126.62020161485745,56.28460998882915],[-126.61997608432489,56.28454723331101],[-126.61957408362463,56.28445396814963],[-126.61927481221257,56.28446101908374],[-126.61919547202763,56.28449612855663],[-126.61912716003991,56.2845255837388],[-126.61897349381675,56.28459465800726],[-126.6188740497638,56.28463770578289],[-126.61885901279986,56.28464673990753],[-126.61882641954232,56.28463233552645],[-126.61870199112788,56.284566847987335],[-126.61853777500775,56.284479149527954],[-126.6184397133458,56.284418014828105],[-126.6183437630271,56.28436247067381],[-126.61822229156766,56.28429248771655],[-126.61817128264333,56.284264730239826],[-126.61808674853405,56.284227053349035],[-126.61786225764168,56.28410155982513],[-126.6176115413357,56.28391682384377],[-126.61745334309012,56.28376188502887],[-126.61738954671014,56.28369274289026],[-126.61732678761426,56.28362471587933],[-126.61727496326559,56.28341661535869],[-126.61732229949412,56.28314754708852],[-126.61712739845312,56.28297374237257],[-126.61652750093123,56.28283549626404],[-126.61607413485794,56.282754789828076],[-126.6159748507224,56.28274406663441],[-126.61591401390491,56.28273427828808],[-126.61566167881884,56.28270188889188],[-126.6153059462691,56.28265543459726],[-126.61504812582643,56.282596186445915],[-126.61490443326484,56.282526307357465],[-126.6148025477452,56.28247863033908],[-126.61469589645667,56.28245001895714],[-126.61457811156434,56.282420340850976],[-126.61446041463145,56.28239626303744],[-126.61435383265693,56.28237101153363],[-126.6142145923415,56.28232799423592],[-126.61407718056098,56.28227152603161],[-126.61403029255501,56.28224822781448],[-126.61386266665295,56.28220086582951],[-126.61348455486873,56.282080583134324],[-126.61322943249878,56.28199891512825],[-126.61317445502034,56.281975655411145],[-126.6131377508496,56.28195678867966],[-126.61302158834906,56.2819013376019],[-126.61283843626629,56.28183052530626],[-126.612732050773,56.28181871349508],[-126.61264699790834,56.281812400175795],[-126.61252504884665,56.281774899012575],[-126.61244617326196,56.28171030743458],[-126.61240053958704,56.281637715411534],[-126.61236651192995,56.28159643236427],[-126.6123272960903,56.28154621285135],[-126.6122856379516,56.28146912109509],[-126.61226376202747,56.28142777981787],[-126.61222457012474,56.28131483099478],[-126.61215443321534,56.28109785514713],[-126.61212148942322,56.28093110853969],[-126.61200507431509,56.280793885861314],[-126.61177179282924,56.28068634671593],[-126.61165301228527,56.28065667073812],[-126.61162867229213,56.28065230655203],[-126.61151594329817,56.280622601492134],[-126.61135562383791,56.28058864330485],[-126.61125916129336,56.280563340873925],[-126.61117274281848,56.28053462985761],[-126.61094822538145,56.28040464407262],[-126.61063761347843,56.28020113847083],[-126.61043629655147,56.28006656033501],[-126.61032679555535,56.27998419117712],[-126.6102477179778,56.27990615733776],[-126.61022092028804,56.27987380055248],[-126.61018842133754,56.27986499439614],[-126.6100978905324,56.279831821653104],[-126.61001646905851,56.279798605374026],[-126.60999204264326,56.27978864048026],[-126.60996923788841,56.27975290410198],[-126.60992454326973,56.279674705994225],[-126.60990173864266,56.27963896960565],[-126.60992377655228,56.27962542249809],[-126.60996745151381,56.279572566445225],[-126.60998858314922,56.279500775198514],[-126.60998826181954,56.27941564438024],[-126.60998219540473,56.27928573448389],[-126.6099823183107,56.2791636361946],[-126.60998054840596,56.279114357496816],[-126.6099768793132,56.27907404916186],[-126.60997476088805,56.27900236888293],[-126.60997520635975,56.27896652156364],[-126.6099729311054,56.278884760576176],[-126.60997016917024,56.27877275753455],[-126.60996940241309,56.27872347405779],[-126.60993999845071,56.27871801356413],[-126.60985887561641,56.2787038385434],[-126.60961450558918,56.2786624381133],[-126.60920189246737,56.27859607547929],[-126.60887288909849,56.278509150350466],[-126.60866996568275,56.27840146113681],[-126.60851286809469,56.278313716362966],[-126.60842814751382,56.27826259223355],[-126.60841920626551,56.27820774687049],[-126.6084242602132,56.27807778405822],[-126.60839444598649,56.27791550254197],[-126.60837618757029,56.27784725959508],[-126.60827733502886,56.27786341233691],[-126.60800203723083,56.27791288913518],[-126.60765837365952,56.27792348472754],[-126.60735439054322,56.27781963438401],[-126.60714405780415,56.27768957479812],[-126.6070061695706,56.277600616817956],[-126.6068389671802,56.27751291803817],[-126.60665655521792,56.27742305091594],[-126.60659050591642,56.27733711199304],[-126.60666885172063,56.27717207647848],[-126.60677626859244,56.276990100502424],[-126.60675135941035,56.27694877280044],[-126.60651943698848,56.27705740901603],[-126.606233169036,56.2771819848416],[-126.60600179458937,56.277195403837894],[-126.605779647913,56.27715053031457],[-126.605569100846,56.2771369659534],[-126.60536131991728,56.27710658573327],[-126.60516079766774,56.27702128293447],[-126.60505240461806,56.276812326062476],[-126.6049736040781,56.27655506215495],[-126.60477160069243,56.27630846270345],[-126.60463289607529,56.27603579985316],[-126.60463191167733,56.27590586593502],[-126.60463256926914,56.27588345962225],[-126.60463146382726,56.27581177460717],[-126.60462942444006,56.275744574652755],[-126.60462399799304,56.27572107696337],[-126.60441454518033,56.27584304493115],[-126.60398320975746,56.27606911601527],[-126.6036236743756,56.276164907991046],[-126.60338368051583,56.27614251785224],[-126.60322625664946,56.2760984545441],[-126.60309837365018,56.27600160413513],[-126.60297006170269,56.275877871791955],[-126.60293603474875,56.275769376814104],[-126.60297377158027,56.275658302966924],[-126.60299525842419,56.27560891456573],[-126.60300009924968,56.2755954498099],[-126.6030108162814,56.27556851541299],[-126.60291559841062,56.275557763027365],[-126.60266684480074,56.27555781608359],[-126.60243451497848,56.27550850421832],[-126.6022644957154,56.27543313465576],[-126.60214335583973,56.27538105794451],[-126.6020712132923,56.27535787446187],[-126.6020162345476,56.27533348993367],[-126.6019908109376,56.27532464840916],[-126.60191837627305,56.27528242350721],[-126.60173479385575,56.275180233307864],[-126.60156536795381,56.27507797622206],[-126.60142461476991,56.27499910734052],[-126.60125714397005,56.274892360024566],[-126.60115085549003,56.274818929506885],[-126.60113134448687,56.27479997857315],[-126.60109855987413,56.27477212879343],[-126.60100117400057,56.27468521437823],[-126.60089743114223,56.27458040723912],[-126.6008294285487,56.274497835185855],[-126.60078368747855,56.27441627861449],[-126.60076207552204,56.27432564733951],[-126.60075679555031,56.27424502072467],[-126.60072952907214,56.27418129984119],[-126.60065702924496,56.27413459393268],[-126.60058648411639,56.2740845183231],[-126.60054020421917,56.27403320849897],[-126.60050573249477,56.27396168032249],[-126.6004779863373,56.273866597209555],[-126.60040877706368,56.27377058873488],[-126.60029518467334,56.273682629815525],[-126.60024546995672,56.273605572387495],[-126.60027470474888,56.273533744939776],[-126.6003033651485,56.273489924144265],[-126.60032296921624,56.273449506358425],[-126.60034114251326,56.27338221149136],[-126.60035537340724,56.27332053593457],[-126.60036377893415,56.27327569011732],[-126.60036459229363,56.273262244397266],[-126.60033013035323,56.27325680549174],[-126.60025236355088,56.273196682224594],[-126.60019001961382,56.27308719952362],[-126.60017326837952,56.27298422364338],[-126.60015793067521,56.27290700476329],[-126.60013560945892,56.272835419468535],[-126.60012984325552,56.27278952006719],[-126.60013470089368,56.272776055360175],[-126.60009106329021,56.27276617884932],[-126.59999970870395,56.27274308446188],[-126.59997737988434,56.27273758850097],[-126.59987657422325,56.272691015079225],[-126.59981330658579,56.27265322666712],[-126.59973149758301,56.27259312207944],[-126.59967295192827,56.27253402844266],[-126.59963916728888,56.272506183021626],[-126.59959439013667,56.27248735042889],[-126.59956167705384,56.27246398059192],[-126.59955647673623,56.27245504372683],[-126.59955222704929,56.272441621770575],[-126.59954056563913,56.27240583143013],[-126.59951793853516,56.272315204803434],[-126.59948278428402,56.27219775315706],[-126.59944924961141,56.272120619584214],[-126.59941801108815,56.27206139775699],[-126.5993991961097,56.272021160333246],[-126.59938649872316,56.271984254687915],[-126.59936234664734,56.27192611977213],[-126.59933408110705,56.27186240335743],[-126.59932456290059,56.271835564216325],[-126.59932833310418,56.27181762401601],[-126.59930250059305,56.27178077996563],[-126.59902271491602,56.271667835670634],[-126.59853774631327,56.271492002968536],[-126.598286615143,56.27140132602869],[-126.59820124546262,56.27137260158434],[-126.59806496639217,56.27132059204642],[-126.59796941858778,56.27128743445387],[-126.59782809314544,56.2712354482808],[-126.59758918273015,56.27115031361021],[-126.59741312562399,56.271074966099604],[-126.59731815535126,56.271013801409254],[-126.59727310805455,56.27097704678261],[-126.59724850271844,56.27095475864395],[-126.597218696946,56.27092241339369],[-126.59719696307758,56.270890030416176],[-126.59718739451505,56.27085871074339],[-126.5971798317963,56.27082738169701],[-126.59717267411821,56.270755725118356],[-126.5971688611199,56.27063812649122],[-126.59717753827903,56.27054399279114],[-126.5971980743815,56.27043188117105],[-126.59718645903376,56.27026615229596],[-126.59701690954887,56.270087719495976],[-126.59673348704004,56.26993334156854],[-126.59655952715353,56.26986246378544],[-126.59652411781668,56.26986150892523],[-126.596516166302,56.26987050729177],[-126.59643979196896,56.26990110799571],[-126.59630292908136,56.269943192485385],[-126.5962040914926,56.269959335835544],[-126.59612883626932,56.2699305628568],[-126.59602082126874,56.26987505888635],[-126.59586592722957,56.26979512999396],[-126.59564699328567,56.269691976160836],[-126.59541813869207,56.26960231005736],[-126.59521553649235,56.269576370157694],[-126.59503464888752,56.269581693191085],[-126.59484451848913,56.26957809774651],[-126.59459167400364,56.269572553526565],[-126.59433689252805,56.26957261859405],[-126.59417216417214,56.26957786524962],[-126.59406430384912,56.26959852951742],[-126.59388401047104,56.26964417376267],[-126.5936237730897,56.269684588365365],[-126.59343559646803,56.269676501124145],[-126.59338083443974,56.269665553863305],[-126.59335866083045,56.269670137445566],[-126.59329509624894,56.26967827366568],[-126.59313016401426,56.26967007805502],[-126.5929207652248,56.269662088556835],[-126.59274283402313,56.26966291400369],[-126.59253596937563,56.26962242761156],[-126.59222291130988,56.26958019276106],[-126.59186774272607,56.269627764624616],[-126.5915823554174,56.26967613263016],[-126.5913609272941,56.26967603735244],[-126.59124268528342,56.269678824787825],[-126.59119918845535,56.26967790587167],[-126.59106273202379,56.269679657250315],[-126.59080954991822,56.26965170400231],[-126.59052704894178,56.26955667643083],[-126.59029064921361,56.26943455157644],[-126.59015958581857,56.26939259103403],[-126.59008023320575,56.26942656213191],[-126.59000308843841,56.26947396484783],[-126.5899134997931,56.26956735132212],[-126.58974258586073,56.269698078194125],[-126.58956446050092,56.26975378771296],[-126.58949474495506,56.26975634964074],[-126.58946050647823,56.26976546881979],[-126.58935976240427,56.26978945674436],[-126.58924399693667,56.269823595250685],[-126.58919660689335,56.26983165484532],[-126.58921433326229,56.26980020876962],[-126.58924076320245,56.26974295899183],[-126.58918823548602,56.2696782321922],[-126.5890484621622,56.269594864929346],[-126.58890735013878,56.26948910058946],[-126.58879131930782,56.26936977868322],[-126.58872545724454,56.26929279144416],[-126.58866860193928,56.26921016191048],[-126.58860766877547,56.269124190674624],[-126.58858487289856,56.26908733056762],[-126.58858978511206,56.26907834670425],[-126.58860650875738,56.26904690534214],[-126.58866785984144,56.268958130515344],[-126.58878746978658,56.268777234563416],[-126.58887962298701,56.268585263495844],[-126.58890531186599,56.2684776102787],[-126.58891650123364,56.268414830061815],[-126.58897508210867,56.26820957181477],[-126.58907431391094,56.26781594025492],[-126.58912446180472,56.26751998837928],[-126.58912150717234,56.267390064135434],[-126.58912231081739,56.267242200108896],[-126.58911738761968,56.26698122695909],[-126.58899481413847,56.26669615281482],[-126.58885175126946,56.26652654883159],[-126.58894060246386,56.266452209209994],[-126.58907637414566,56.266404536910784],[-126.58910011391802,56.26636970270666],[-126.58908250012304,56.2663417800733],[-126.58891774397772,56.26627645046877],[-126.5886308753264,56.266157915884286],[-126.58847980244879,56.26606115840035],[-126.5884533116749,56.26597950921347],[-126.58844455241301,56.265934743423486],[-126.58844037445839,56.265925801438186],[-126.58842619984567,56.2658575373701],[-126.58839977105409,56.26571315932063],[-126.58838291340821,56.2655328923061],[-126.58837874078661,56.26538953193934],[-126.58837584526964,56.265331297320365],[-126.58854619578483,56.26523081917375],[-126.58889769578722,56.26494132035667],[-126.58907276539568,56.26461678921671],[-126.5890694512361,56.26439613443091],[-126.58906885514901,56.264288602535416],[-126.58905616998636,56.26425169598476],[-126.58894790177354,56.26424547416356],[-126.58859931126104,56.26412162340059],[-126.58815977796831,56.263731594144026],[-126.58797708448665,56.26314323506414],[-126.58797507747865,56.26267166042772],[-126.58797325929623,56.262483483332744],[-126.58797547698885,56.2624285857033],[-126.5879730524336,56.26240171322539],[-126.5879715029256,56.262231457337776],[-126.58819922333575,56.261845077115915],[-126.58869467798614,56.26158516040195],[-126.58899510574602,56.26146503974309],[-126.58903190951388,56.26129012649341],[-126.58902637972338,56.26112436963181],[-126.58902259208467,56.261006771240545],[-126.58893510891095,56.26076746224594],[-126.58874730750651,56.260377395209574],[-126.58863047460773,56.260135981031],[-126.58859301272257,56.260064463995434],[-126.58859886309808,56.25991545703579],[-126.5886896582059,56.25970221013157],[-126.58880357843456,56.259547104412704],[-126.58888748615398,56.25948062880888],[-126.58891957664916,56.259463678632144],[-126.58893999266292,56.259477026321626],[-126.58902848827854,56.259514703447316],[-126.58916060420404,56.259562260714986],[-126.58924285020102,56.25958652471206],[-126.58933330046929,56.259619712014185],[-126.58955277635803,56.25969598977848],[-126.58971631805454,56.259749002211244],[-126.58975392544785,56.259763390569745],[-126.58982335306384,56.25974178720061],[-126.58998828519802,56.25968613827194],[-126.59031789521299,56.25955803869148],[-126.59076908229278,56.25938232980303],[-126.59098916975296,56.25929730060596],[-126.5910284610563,56.259289277788795],[-126.59111501039337,56.25926423405344],[-126.59127839002936,56.25923995484775],[-126.5915235431988,56.259208575935524],[-126.59180596559477,56.25916918286043],[-126.59219312834473,56.25910466038207],[-126.59267767643344,56.25899711925754],[-126.59309867471238,56.25889771238566],[-126.59347538679152,56.2588108315128],[-126.5938139452965,56.258740929129495],[-126.59395603682674,56.25871226483227],[-126.59402755028746,56.25869625022365],[-126.59435988994605,56.25861629394904],[-126.59487759990319,56.258496268504814],[-126.59526940451867,56.258404831439314],[-126.59560573087657,56.25832149288234],[-126.59597448258698,56.25824360292688],[-126.59622337991593,56.25819427508659],[-126.59644608335142,56.258149549657716],[-126.59676859639647,56.258088675529116],[-126.59699133357965,56.25804730944028],[-126.59723985232236,56.25797221791666],[-126.59763816671392,56.257844898303254],[-126.59787856436863,56.257768723372486],[-126.59796719560413,56.25774814583419],[-126.59805069612614,56.25772199150003],[-126.59834953979339,56.257634340551704],[-126.59893898301313,56.25744787369446],[-126.59944194954741,56.25729093382703],[-126.5997820945837,56.25719412450232],[-126.59999970981933,56.25714829659025],[-126.60003901329746,56.257140270933256],[-126.60019640035998,56.257121609177496],[-126.60047955343036,56.25713148004758],[-126.60090068680792,56.25717542601222],[-126.60113216201803,56.257242666198074],[-126.6012311828421,56.257307168959706],[-126.60152398030553,56.2572867480594],[-126.6019392004684,56.25720862200925],[-126.60216902702788,56.25716833360582],[-126.6022417594076,56.25716575044596],[-126.60230039427834,56.25716659416387],[-126.60234083745928,56.25716752363046],[-126.60237226168012,56.25717297621521],[-126.60240783274432,56.25718625029433],[-126.60249721723505,56.257214952691086],[-126.60281307385006,56.257248187324784],[-126.60346393025814,56.257310083226585],[-126.60438215541367,56.25734158725309],[-126.6051637624001,56.25723147271022],[-126.60545139094789,56.25713825744488],[-126.60551285840374,56.257125644447676],[-126.60559339900055,56.25710509994673],[-126.6057229688604,56.25705295869384],[-126.60603393418361,56.25696523221401],[-126.60664043431164,56.25677416813102],[-126.60743311882824,56.25646572025567],[-126.60804324761212,56.25624886875016],[-126.60828728049007,56.256212982285],[-126.60833689601174,56.25621834677801],[-126.6083618929807,56.25620142546865],[-126.6083920032443,56.256187840256196],[-126.60844220434332,56.25616631828847],[-126.60856364638411,56.256110852400276],[-126.6087542739593,56.256020332031376],[-126.60892683125559,56.255937738573415],[-126.60905115654627,56.25587329726685],[-126.60914431824298,56.25582020595702],[-126.60922248513539,56.255777267452196],[-126.60933164095017,56.255711778064445],[-126.609477711014,56.25561586838643],[-126.60958643206278,56.25552349722813],[-126.60962624709997,56.25548410193716],[-126.60964092688042,56.25545266764925],[-126.60968118726348,56.25537742538143],[-126.60973041171005,56.25529317910812],[-126.60977397279171,56.25523472332524],[-126.60986370779162,56.255155884376975],[-126.61004958862645,56.25502057869762],[-126.61026443488609,56.25486273135674],[-126.61045616730993,56.2547139553233],[-126.6106381934611,56.25459098887298],[-126.6108188425841,56.25450947432894],[-126.61096256247146,56.25445838023312],[-126.61103182945034,56.254427804848646],[-126.61113389637174,56.25436234783437],[-126.6113787738245,56.25418755268402],[-126.61163572221867,56.2540082186666],[-126.61176777213562,56.25392133471675],[-126.61188593564118,56.2538513194095],[-126.61211823662613,56.25371242791042],[-126.61238157536685,56.25355546478639],[-126.61255167334782,56.253445994605094],[-126.61264269717051,56.2533850699457],[-126.6126946335667,56.25334561557223],[-126.61280159958801,56.25327117252528],[-126.6130306603198,56.253118853107544],[-126.61329963442724,56.252934977437185],[-126.61354551194042,56.252760173346815],[-126.61375419848157,56.25259786914436],[-126.61384617183896,56.252469730049796],[-126.61381464684116,56.25239259117585],[-126.61378282046502,56.25236025975408],[-126.61391477244452,56.252267773314856],[-126.61418324264807,56.25211638257785],[-126.61434875980693,56.252038296245495],[-126.6143720272985,56.25203930448511],[-126.61436176428012,56.252029272496664],[-126.61432178484436,56.25199361997694],[-126.61425602461443,56.251924486923286],[-126.61420254856837,56.25186537612114],[-126.61412205998994,56.251823197425544],[-126.61395333367824,56.25176128013363],[-126.61378951216498,56.2516903778545],[-126.61371879654511,56.2516268691015],[-126.61367953884975,56.25157217037621],[-126.61360886000723,56.251512021840064],[-126.61353111595862,56.25145190720398],[-126.61348918557778,56.25141962425897],[-126.6134513511494,56.25139180222831],[-126.61333601711937,56.25131842621067],[-126.61316571546858,56.25122067068425],[-126.61304040005587,56.25115518337193],[-126.61294879068441,56.25111305733653],[-126.61283182366604,56.25106545215515],[-126.6126943834332,56.25100002268568],[-126.61258646707243,56.25094901342204],[-126.61255383416069,56.25093012738491],[-126.61250798691765,56.250906824110515],[-126.61234093843309,56.250822493711254],[-126.61214132803227,56.25072375721755],[-126.61204762977823,56.25067715996705],[-126.61196389678099,56.250621553711774],[-126.61180994257454,56.25053379945476],[-126.61170287386949,56.250472704064336],[-126.61159056914977,56.25039931201957],[-126.61142735722235,56.25030152030528],[-126.61131396386197,56.25022253249419],[-126.6112231515139,56.25016695965583],[-126.61113681618298,56.25013824890603],[-126.61110650215986,56.25013839394673],[-126.61112729517308,56.25011141088939],[-126.61111593437205,56.25003081453306],[-126.61108221059935,56.249876395356885],[-126.61106597077732,56.2497420552125],[-126.61106829627438,56.249697238141756],[-126.61104650912378,56.24966037747097],[-126.61099773632948,56.24957883994902],[-126.61096663785702,56.24952858202705],[-126.61092954652422,56.249482833358094],[-126.61085752452341,56.249400286845606],[-126.61079367358015,56.249323301963926],[-126.61070308942706,56.24928116947926],[-126.61060447547194,56.249243555913495],[-126.61058661757264,56.24913498689859],[-126.61060529245252,56.24903632457368],[-126.61060898558202,56.24901390395309],[-126.61059962082143,56.24899602635151],[-126.61055381945422,56.24890999389275],[-126.61046045786411,56.248754739565996],[-126.61038623478505,56.24859603327836],[-126.61041547505482,56.248461475777006],[-126.61041201698107,56.2483046715962],[-126.61033073011909,56.2481459990707],[-126.61038726072947,56.248012431333564],[-126.61047431235879,56.24789215946811],[-126.61044353734137,56.24779709401152],[-126.61041266751816,56.247761396828366],[-126.61040745057808,56.2477513404332],[-126.6103311032526,56.247714740426545],[-126.61018996952187,56.247671729030706],[-126.61004758029311,56.24767688982157],[-126.60989868465892,56.2477190463921],[-126.60978402067124,56.247753198324105],[-126.60975079102793,56.24776119800482],[-126.60968238830492,56.24771559850399],[-126.60959435535544,56.24757824057286],[-126.60961525336236,56.24742692092765],[-126.60967666233985,56.247347097337546],[-126.60970539877913,56.24731111544282],[-126.60971731465519,56.24729761678973],[-126.60967922457782,56.24725187258512],[-126.60960202745095,56.24716150914697],[-126.60954510681906,56.24707440933827],[-126.60951250654519,56.24699279418032],[-126.60949039178635,56.24693465206801],[-126.60948301523666,56.246915644769444],[-126.60948180415627,56.24690220878371],[-126.60948224971389,56.246866361950644],[-126.60938094258664,56.24678395448322],[-126.60918331137785,56.24668072363514],[-126.60905128410533,56.24663766758645],[-126.60897116067555,56.24661900715806],[-126.6088927092344,56.246576815624145],[-126.60885185969184,56.246549006699894],[-126.60877311430781,56.24648889414738],[-126.60862372339481,56.24636863030518],[-126.60852349112368,56.24629069765373],[-126.6085040937612,56.24627734831525],[-126.60848062140472,56.24626289824222],[-126.60839374093057,56.246198343640515],[-126.6082686878202,56.246083564199886],[-126.6081457950397,56.245977735530566],[-126.60804112967976,56.24594014890407],[-126.60798446276048,56.24593481794989],[-126.6079324218975,56.24590146128936],[-126.60782956945371,56.24585042410626],[-126.60771865059417,56.24579942522682],[-126.6076696331197,56.24576605407623],[-126.60767465448299,56.24569882140555],[-126.60760847921493,56.24553671505475],[-126.6074506659343,56.24539408707016],[-126.60736911011138,56.24534742882275],[-126.60727010937822,56.24528293114053],[-126.60704846561381,56.245129404726335],[-126.60689101979874,56.245010297408115],[-126.60681643955428,56.24489191634119],[-126.60673431060556,56.24474220702142],[-126.60660406875596,56.244618489551286],[-126.60626619788182,56.24439606484601],[-126.60586980095798,56.244113429110705],[-126.60570528254513,56.243994353970926],[-126.60568789060697,56.243979874570634],[-126.60563930931332,56.243974504246445],[-126.60551608613333,56.24397732885302],[-126.6053797035489,56.24397909557685],[-126.60523112702386,56.243975319219366],[-126.60499326449091,56.243948442652766],[-126.604781427519,56.243904640222176],[-126.60468397196028,56.24387485778971],[-126.60463114260567,56.243856065457564],[-126.6045984503914,56.24383269719056],[-126.60454607116623,56.243778058053415],[-126.60440414600934,56.243681277221924],[-126.60428990552252,56.24361124871836],[-126.60423592035318,56.243583500537746],[-126.60418404100464,56.24356022295153],[-126.60414319793924,56.243532412555986],[-126.60409095769145,56.2434867337447],[-126.60401296827399,56.24340869250557],[-126.60395870668046,56.243361903059764],[-126.60393627335583,56.24334856741598],[-126.60389663974341,56.24333419296245],[-126.60380405623675,56.243292065244965],[-126.60368684792559,56.24322653083433],[-126.603580778492,56.24316206381811],[-126.60351822873861,56.243101871632504],[-126.60349179213783,56.24302582674066],[-126.60347685787538,56.24290828214711],[-126.60346689811718,56.24278623347321],[-126.60346443288512,56.2426921529976],[-126.60344134774705,56.2425701663571],[-126.6033988528618,56.24243482970245],[-126.60333257683072,56.242329849291636],[-126.60324749653505,56.242184632496986],[-126.60319203600318,56.24199446999324],[-126.60308877236494,56.24184933900663],[-126.60291490932853,56.24177847078434],[-126.60282980717469,56.24176319053904],[-126.60282832323458,56.24173183351774],[-126.60280686219888,56.24165016433094],[-126.6027654027465,56.24158203126634],[-126.60274694302149,56.241564196099134],[-126.60272658324013,56.24155421090344],[-126.60265441756479,56.2415265479053],[-126.6025632545806,56.241511296089925],[-126.60245665373918,56.241477074601676],[-126.6022712763352,56.24137937640358],[-126.60205752720101,56.24127621099436],[-126.6019548319671,56.24123412967763],[-126.60195886038545,56.24116690208215],[-126.6018737876943,56.241021684442096],[-126.60162821833278,56.24088618416342],[-126.60144636520079,56.240819832219394],[-126.60129243964067,56.240730945657475],[-126.60107707686896,56.240587461112405],[-126.60090657791349,56.24047176868269],[-126.60082678616432,56.240407175849484],[-126.60078156494927,56.240356982183876],[-126.60078580105271,56.24030319539597],[-126.60084773880578,56.240192009832256],[-126.60081823230809,56.23998044168487],[-126.6005872241105,56.239738457450535],[-126.6003151793517,56.23958851744613],[-126.60011319905415,56.239526738868776],[-126.6000005969059,56.23949702416722],[-126.5999601719901,56.23949609396657],[-126.59993067895432,56.239482790826955],[-126.59988580237145,56.23945499810135],[-126.59986435765549,56.23944053699418],[-126.5998480576017,56.23943165242771],[-126.59978896996861,56.239399445857],[-126.59969515937857,56.239342759207936],[-126.59959677780705,56.239251369547524],[-126.59938660905017,56.2391168190539],[-126.59909629403516,56.239026329820526],[-126.59894442473174,56.239004639424444],[-126.59892415271274,56.23900025394216],[-126.59890394906964,56.23900034870408],[-126.59879540623574,56.23897061391832],[-126.5986011551034,56.2388863939074],[-126.59841505362087,56.23880549584063],[-126.59828097600425,56.2387579580203],[-126.59810595142278,56.238741975835175],[-126.59786031619568,56.238731924746396],[-126.59771250647267,56.23871133403057],[-126.59763097611483,56.23866466969402],[-126.5974704308238,56.23860381320731],[-126.59727671278208,56.238554313110484],[-126.59706409561359,56.238456735009784],[-126.59676203712657,56.23825764173731],[-126.59645648579382,56.238094408616696],[-126.59627760866293,56.23802355502367],[-126.59614324707539,56.23795697392502],[-126.59599448864874,56.23787365777211],[-126.59589834375794,56.23779569662762],[-126.59582233422208,56.237713160895616],[-126.59572496781963,56.23762176363779],[-126.59560758429407,56.237475572782316],[-126.59549115188481,56.2373248968329],[-126.59540173237667,56.23722450116308],[-126.59530766149149,56.23714989035851],[-126.59516989246848,56.23712476937117],[-126.59499260125357,56.23715807972181],[-126.59490705344422,56.23717864086349],[-126.59493949693976,56.23712024238749],[-126.5949871847128,56.2370001651381],[-126.594987100031,56.236928476538175],[-126.59495287394844,56.23686926857418],[-126.59492698397543,56.236760735582536],[-126.59490662903008,56.23668466087371],[-126.5948850680073,56.236661238381245],[-126.59485785452584,56.23666584572905],[-126.59483366251133,56.23666931885466],[-126.59476731691745,56.23669091058579],[-126.59470297452616,56.23671137281169],[-126.59468197366458,56.236724912308766],[-126.59463932784028,56.23671054909782],[-126.59450108573417,56.23665406567628],[-126.59425436360785,56.2365051153927],[-126.59400333166604,56.23633826245835],[-126.59389116828446,56.236269335528526],[-126.59377751038036,56.23623513979542],[-126.5935602454477,56.23616334088625],[-126.59342711702388,56.23611131311827],[-126.5934077298272,56.236097961543535],[-126.59332734750164,56.236060250342135],[-126.59318420255279,56.23601274943135],[-126.59302856513101,56.2359417834496],[-126.59292852582287,56.23587279938651],[-126.59271631016045,56.235733767239346],[-126.59232019501128,56.235523899082864],[-126.59207509854443,56.235415262207],[-126.59198093167633,56.23540001689025],[-126.59186107564125,56.23522247038242],[-126.59166925954314,56.2348279502692],[-126.59138710963445,56.234539141459095],[-126.59122032804005,56.23446486456001],[-126.5911999748738,56.234454877556],[-126.59118671712994,56.23444597783359],[-126.59111126377883,56.23439928135458],[-126.59098064318441,56.23431139506416],[-126.59086927368385,56.23422790011052],[-126.5907966739341,56.23416886872156],[-126.59076250785161,56.23411414001924],[-126.59065006997939,56.234026169274884],[-126.59039583770517,56.233913091016696],[-126.590205888096,56.233842280380046],[-126.59016411428189,56.23381895057479],[-126.5901346961936,56.23381012544628],[-126.59006038199003,56.23377238421183],[-126.58998803684105,56.23373015328281],[-126.58992256891636,56.233675569015915],[-126.58981073220257,56.233560711466104],[-126.5896481915462,56.23343152621171],[-126.58940003408388,56.23338674639972],[-126.58912022777817,56.233385797535696],[-126.58891275140165,56.233291542986265],[-126.5887381555589,56.23309968448752],[-126.58863535510031,56.23298030373783],[-126.58851917063389,56.232911390811445],[-126.58823059412337,56.23279734652762],[-126.58786510672509,56.232673574527944],[-126.58762327973814,56.23257835596861],[-126.58755888602482,56.23252824614546],[-126.58753733166976,56.23250482245239],[-126.58749596321246,56.23250837323529],[-126.58743117129558,56.232498590132],[-126.587313690988,56.23247784801129],[-126.58722019981953,56.232440193385685],[-126.58712086266236,56.232348798982706],[-126.58701227704209,56.23224736579605],[-126.58681693518831,56.23222138051474],[-126.58653436693561,56.23223836091357],[-126.58640019433278,56.232249058488726],[-126.58637420179302,56.23226710006846],[-126.58631720869744,56.23230656662306],[-126.58629221744333,56.232323483450486],[-126.58622115091565,56.2323674951393],[-126.58593714961202,56.232559222206795],[-126.5854629953679,56.23286943519669],[-126.58508354274508,56.23309520216763],[-126.58481610907269,56.23324764601145],[-126.58441664970404,56.2334197360408],[-126.5838920429925,56.233530789652086],[-126.5831922212725,56.23361127772175],[-126.58248127807974,56.23369181268453],[-126.58213053387604,56.233675490186954],[-126.58198686356708,56.23359213487383],[-126.58189641306737,56.23355446248334],[-126.58188112148895,56.23354557107855],[-126.58185437883579,56.23351320897738],[-126.58167792922308,56.233330310505295],[-126.58131227134878,56.23305754235062],[-126.58097449664984,56.23296162793848],[-126.58065912685767,56.232879052388284],[-126.58026995991825,56.23272288247896],[-126.57998934798965,56.23266815073168],[-126.57989154946438,56.2326797963436],[-126.57987537256919,56.232678749682705],[-126.57982412692856,56.232628576282146],[-126.57968270949007,56.23249144166896],[-126.57952585362942,56.232335334672534],[-126.57940463847785,56.232198108072126],[-126.57925986517223,56.23197025722648],[-126.57906580399944,56.23168774314497],[-126.57888486229459,56.23154070577048],[-126.57862097637576,56.23145453144283],[-126.57808437398671,56.23130014333318],[-126.57752508164036,56.23118169998065],[-126.57720515274482,56.231130500475146],[-126.57703309073963,56.2310371869071],[-126.57696841168564,56.2308291340464],[-126.576967320062,56.23061743340653],[-126.57696749611458,56.23049197746488],[-126.57696752636738,56.230424769217],[-126.57690927541282,56.23037910692338],[-126.57664622223267,56.23027948322598],[-126.57625230225132,56.23014124505381],[-126.57601974847071,56.23005604416943],[-126.57596189331427,56.2300361427739],[-126.57594768821988,56.230031726321236],[-126.57592937757927,56.230022847849305],[-126.57584928738466,56.23000304671134],[-126.57569915721332,56.22995891842551],[-126.57559067338626,56.22993028408805],[-126.57538383880168,56.22987632987375],[-126.5750572729413,56.2297848301399],[-126.57475359979254,56.22973915203326],[-126.574343348373,56.22972643664432],[-126.57397324940251,56.229696737400175],[-126.57386158227635,56.22965803470787],[-126.57386232215335,56.22964010923133],[-126.57386231163436,56.22950121261529],[-126.57386005786732,56.22920886769893],[-126.5739136829018,56.22900812261372],[-126.57401945774535,56.22892027657993],[-126.57407450395804,56.22888530489524],[-126.57401941115211,56.22884746807381],[-126.57388474211518,56.22875510241921],[-126.57373706764639,56.22867175615182],[-126.5735784728174,56.22860078025868],[-126.57345442840462,56.228544210713224],[-126.5734127681482,56.22852647570781],[-126.57332028520277,56.22848768640499],[-126.57311692865575,56.22839450829633],[-126.57296615378172,56.22830557441362],[-126.57287359463972,56.22819173618324],[-126.57253178281738,56.228023009345904],[-126.57190528045453,56.22786227816703],[-126.57128796185309,56.22770710351391],[-126.57079354551584,56.227531214027714],[-126.57056885383814,56.22742804614483],[-126.57055847821681,56.22740905025918],[-126.57051802647166,56.2273364224128],[-126.57043713958848,56.227191166615974],[-126.57047566304391,56.227062179187605],[-126.57063870200831,56.22695279758913],[-126.57069592331409,56.2268595707645],[-126.57064758828729,56.22680041981289],[-126.57060969386939,56.22676362482902],[-126.57059742890277,56.22675359845922],[-126.57058921970251,56.2267446740922],[-126.5704928920942,56.226648773221974],[-126.57032265053344,56.22647031273268],[-126.57023527476117,56.2263654106294],[-126.5702224243293,56.22631506207392],[-126.57020125104181,56.22624794870994],[-126.57017117614693,56.22619319656139],[-126.5701077517898,56.22613747322384],[-126.57001800637852,56.2260773868664],[-126.56997303620513,56.226040623306616],[-126.56994819809475,56.22599928931615],[-126.56990559915431,56.225917709858535],[-126.56988025716133,56.225841654009834],[-126.56988277448879,56.22580579854232],[-126.56988870349086,56.22579681101535],[-126.56983488094316,56.22577688891609],[-126.5697160544344,56.225730373762964],[-126.5695684489437,56.22565038295508],[-126.56936700572345,56.225548229493334],[-126.56912400594412,56.22543505969226],[-126.56894706071697,56.22535071846792],[-126.56885353922155,56.225308570266286],[-126.56878323599157,56.2252663185417],[-126.5687382029986,56.22522507432135],[-126.56870315482581,56.225175944679506],[-126.56865684446461,56.22511566388528],[-126.56859040265986,56.225061073409826],[-126.5684774279043,56.22499996935634],[-126.56837361491577,56.22494442506934],[-126.56830539735535,56.2249066443323],[-126.56825039675356,56.224874405379396],[-126.56818597551089,56.22481868557652],[-126.56811436417877,56.224755156824386],[-126.56804892542847,56.22469944148534],[-126.56799575050384,56.22465375272644],[-126.56795892719543,56.22462143276748],[-126.56790082494592,56.2245847269462],[-126.56777641263933,56.224501270555194],[-126.56765712277344,56.22442227179273],[-126.56761328798825,56.22439446344522],[-126.56761991130551,56.22436307031841],[-126.56758153406501,56.224223224575965],[-126.56745902581149,56.22399190213137],[-126.56733768436936,56.2238412238367],[-126.56725570313411,56.22375869850814],[-126.56709343770396,56.22357123755064],[-126.56678014034257,56.22320522624379],[-126.56647500778271,56.22284365853413],[-126.56635083017322,56.22270643355489],[-126.56621177351016,56.222587196554706],[-126.56589684326873,56.2223164015938],[-126.56561973800008,56.222076801927706],[-126.56547241422595,56.221944159249546],[-126.56537628831153,56.22186057534762],[-126.56530953403644,56.2217835820708],[-126.56508409975598,56.221625521922],[-126.56469190794182,56.22145811811559],[-126.55688375610328,56.209541802062176],[-126.55686635367839,56.20923944478546],[-126.55699791011503,56.20022301677258],[-126.55698410148798,56.20003153672935],[-126.55697860283462,56.200000197409224],[-126.55697416908802,56.19997221379633],[-126.55697593336795,56.199954284191676],[-126.55704381133988,56.19990134222225],[-126.55720520096239,56.19989503678627],[-126.55732155094697,56.19984412317276],[-126.55731269919113,56.199717588419716],[-126.55713222479552,56.19951675538551],[-126.55715340991371,56.19944497526553],[-126.55723655920963,56.1994020475668],[-126.55749398478886,56.19940652339771],[-126.5576998079418,56.19947395096749],[-126.55781273961999,56.199466736480524],[-126.55814547670353,56.19930286384679],[-126.55832555243894,56.19926175154296],[-126.5584095740144,56.199208738189526],[-126.55842988269144,56.19914704276001],[-126.55836779060391,56.19910923052811],[-126.55804814787496,56.19905798368253],[-126.5576938133772,56.19905169245483],[-126.5576462478505,56.19904181933038],[-126.55760028707321,56.19900393621118],[-126.55761808626426,56.198978095681596],[-126.55786691000809,56.198875076972755],[-126.55788469305948,56.19884811635833],[-126.55787018316536,56.19882129697233],[-126.55768216217494,56.19872802915909],[-126.5577049825456,56.19862935897442],[-126.55788666015805,56.19856023732777],[-126.55815076901008,56.198467232282894],[-126.55846153576265,56.19839194432355],[-126.55859566198916,56.19831406888687],[-126.55877975075077,56.19820125079178],[-126.55904785665984,56.19803541868703],[-126.55914270586575,56.197821060387064],[-126.55921964472539,56.19762582255806],[-126.55925357223869,56.1975987909812],[-126.55927225934073,56.19756398539045],[-126.55929985410035,56.19737568457271],[-126.55931141443018,56.19719529489564],[-126.55933915226264,56.19701707452822],[-126.5591569008292,56.19683305414153],[-126.55914729766585,56.19672556493892],[-126.5593485239746,56.19661267093033],[-126.5596891998,56.196583173626806],[-126.55973828655134,56.19655719552796],[-126.55973457253171,56.19636791194685],[-126.55948548719893,56.1962379509844],[-126.55939761752566,56.19609160098561],[-126.55937852192773,56.19588446301562],[-126.5592447429773,56.19570247051055],[-126.55914338299324,56.195529296711996],[-126.55894589994183,56.195337502117056],[-126.55884352508433,56.19516433256255],[-126.55870987848688,56.19499129992511],[-126.558576979482,56.194799221906116],[-126.55859728561688,56.19473752655815],[-126.55880088539185,56.19457869828654],[-126.55881780826286,56.194561822395315],[-126.55884300515723,56.1944183370709],[-126.55924281447173,56.19421944419459],[-126.55921628921335,56.19412883105344],[-126.55901717725719,56.19396392664062],[-126.55901422907628,56.193756718031835],[-126.55911766926341,56.193650973695966],[-126.55946649591881,56.193487027223625],[-126.55948414783954,56.19345110607368],[-126.55940930153197,56.193368545766994],[-126.55923593928695,56.19331105996782],[-126.55888152896947,56.193295811683264],[-126.55878979400259,56.19323124688428],[-126.55871143935377,56.19318454526702],[-126.55875027059624,56.193076844022436],[-126.55906693312414,56.19292200049416],[-126.5593615102597,56.1928467812717],[-126.55973358408124,56.19282722709025],[-126.56004355770632,56.192769860573456],[-126.56040199421373,56.192714520605065],[-126.56079108323688,56.19268592764041],[-126.56113083483294,56.19266539137079],[-126.56149567615155,56.192493528066564],[-126.56159836156488,56.192405706907564],[-126.56160086816388,56.19236985215686],[-126.56140884042743,56.19234829523869],[-126.5610384222581,56.192340964261085],[-126.56088018887468,56.1922834141791],[-126.5609369351187,56.19215883175462],[-126.56107755557039,56.19197227398913],[-126.56121239963497,56.191876470870206],[-126.56144742023059,56.191728701335826],[-126.56151941837611,56.19161301245184],[-126.56135020145527,56.191492784860685],[-126.56105015634868,56.19139665506758],[-126.56092261131487,56.191368093076264],[-126.56058863111802,56.191297874109885],[-126.56052656533475,56.19126118309192],[-126.56052907283876,56.191225328378444],[-126.56061294641233,56.191163353381945],[-126.56099417514862,56.191009341374325],[-126.56101182455971,56.19097342004823],[-126.56104031142524,56.19077727455864],[-126.56105362382205,56.19057895560205],[-126.56102458984284,56.190524197680894],[-126.56096163578535,56.190496471717964],[-126.56089496278277,56.190279462633995],[-126.56104193131459,56.190255293773525],[-126.5612927778931,56.190368441765926],[-126.56148466784973,56.190381038484404],[-126.56185595650925,56.19037940332292],[-126.5619212890491,56.190362313757575],[-126.56226606397009,56.190270064885496],[-126.56262108031152,56.19025953830875],[-126.56276968057303,56.190208477488504],[-126.5628085137939,56.190101895179936],[-126.56309029741843,56.189980799039404],[-126.56290883736442,56.18977997937367],[-126.5625555867096,56.18977257714015],[-126.56237544667482,56.18980585495011],[-126.56205186321067,56.18982632337063],[-126.56178500330314,56.18972220835979],[-126.56173183530416,56.189532023030175],[-126.56183538517435,56.18943523702113],[-126.5620542302699,56.18928641758099],[-126.56196638259264,56.18914118979911],[-126.56193113444093,56.18893412391237],[-126.56177643665144,56.188840715831624],[-126.56144325332735,56.188753694034624],[-126.56117879723824,56.18860476268286],[-126.5609142152494,56.18844687044029],[-126.56086989780371,56.18838209873063],[-126.56089034106311,56.188329363454194],[-126.56106771273643,56.188315141857636],[-126.56126549485498,56.18824706470679],[-126.5613213452376,56.18813032702079],[-126.56131350004483,56.18800490877227],[-126.56120875516122,56.18787655664856],[-126.56099512647693,56.18768371686956],[-126.56098225256424,56.187630008035484],[-126.56100002838947,56.187603047107075],[-126.56101707523693,56.18759513131873],[-126.56116314467705,56.18757992716591],[-126.56136093907169,56.18751184981581],[-126.56166257278181,56.1875799687579],[-126.56175856697187,56.18759074707734],[-126.5617756136612,56.18758283118759],[-126.56187487462617,56.18753982955958],[-126.56185074188942,56.18740440210225],[-126.56181386251114,56.1872242262523],[-126.56183339907243,56.18717933563144],[-126.56209651731984,56.187094167619485],[-126.56248293178287,56.187093583940396],[-126.56251697622352,56.18707551195323],[-126.56252514073336,56.18694106228529],[-126.56240601442123,56.186794852812234],[-126.562352991632,56.186614748347445],[-126.56240620262712,56.186526024714915],[-126.56256293727144,56.186339394539],[-126.56262237015214,56.186333531771695],[-126.56295272168428,56.186293989996166],[-126.56330944664234,56.18626441188712],[-126.56367510737745,56.186083577951095],[-126.56389492759287,56.185934751125785],[-126.56398056109221,56.18585596448657],[-126.56411938416309,56.18568733343193],[-126.56424558568776,56.18548291445319],[-126.56428289118715,56.18541106212802],[-126.60000015574035,56.173455435018724],[-126.60302344126039,56.17244314929009],[-126.60743870723385,56.16492751996414],[-126.60091615490299,56.15367672452053],[-126.60000012152531,56.153168033674326],[-126.59185857988156,56.148643936763506],[-126.59186445852556,56.14863270844461],[-126.60000042709856,56.13250555630207],[-126.60271189982407,56.127127500497686],[-126.62304240020434,56.12702964634746],[-126.62346546837942,56.127027575567055],[-126.62346292147578,56.12699398515591],[-126.62346691271495,56.12680130909979],[-126.62347549925104,56.12664333352955],[-126.62349474580232,56.12652338902878],[-126.62355248053943,56.126415577109505],[-126.62362052017231,56.126323396038515],[-126.62366659282469,56.12624252348677],[-126.62368287440768,56.12618979923794],[-126.62373313565536,56.126118987009896],[-126.62382829019091,56.12602107252814],[-126.62394758338337,56.12592079950187],[-126.62409313613799,56.12582487804103],[-126.6242097356996,56.12574589978985],[-126.62428438311278,56.12568840894408],[-126.62433713854543,56.12564894693037],[-126.62437192129839,56.12561853379221],[-126.6244225198556,56.12557012155505],[-126.62450183945771,56.1254902057583],[-126.62458413526372,56.125406915027206],[-126.6246723870664,56.1253191146416],[-126.62475480660723,56.125243663863316],[-126.62483909976062,56.1251603631695],[-126.62496197216528,56.12503206924905],[-126.62507880026548,56.12490380488553],[-126.62516195049112,56.12481154882952],[-126.62524925386059,56.12472711299339],[-126.62534363341594,56.12464376244003],[-126.62543901175535,56.124560406911115],[-126.62555014949703,56.12445457198039],[-126.6256856226481,56.12429597289317],[-126.62580310532628,56.124145302757405],[-126.6258611169065,56.12405653009564],[-126.6258698356143,56.1239713600078],[-126.62585897983098,56.12385828376511],[-126.62584078040913,56.12379116752008],[-126.62582796357805,56.12374530662287],[-126.62581883729106,56.12367814578054],[-126.6258182854088,56.123579580135605],[-126.6258174127895,56.12352469977269],[-126.62581921351686,56.12351124978257],[-126.62580259945247,56.123479968786214],[-126.62577511195381,56.123398336961074],[-126.62576541601457,56.123295335889516],[-126.62576714748101,56.123214680553346],[-126.62575096123321,56.1231464343244],[-126.62572181577983,56.12308721254257],[-126.62569072722795,56.123032480683555],[-126.62564042266895,56.122973362867064],[-126.62556623088253,56.12286843852134],[-126.6254652116682,56.12272332252866],[-126.62537850742041,56.12259157728815],[-126.62534194698117,56.122508869874544],[-126.62532346436107,56.12242383347714],[-126.62530052436395,56.122310816612895],[-126.62525772831621,56.1221530934932],[-126.62521167174783,56.1219808251567],[-126.62518167406247,56.121867842950465],[-126.62516866294328,56.12180966194517],[-126.62515750610177,56.121741390988184],[-126.62514809680498,56.121656310040414],[-126.62513825766725,56.12160707421423],[-126.625145674609,56.12156671441084],[-126.62517380698144,56.1214993706316],[-126.62519808683497,56.121442126611456],[-126.6252017596814,56.12141970669602],[-126.62519347112247,56.121405186176524],[-126.62512489821586,56.12133719716193],[-126.62495213560773,56.121176751804434],[-126.62472803719572,56.12101879833093],[-126.62454000014147,56.12091219189406],[-126.62444256761914,56.1208656258816],[-126.62440716561528,56.1208557186726],[-126.6243596617531,56.12084587080334],[-126.62430525806012,56.12084501750022],[-126.62422853728108,56.12083419275599],[-126.62413743234428,56.120805516986145],[-126.62405864716476,56.12072749664891],[-126.62398107924786,56.120600186188305],[-126.62385652171058,56.12049438773103],[-126.62367403014635,56.12041911549873],[-126.62352831062378,56.12037614562464],[-126.62343749108727,56.120365389461114],[-126.62337401418621,56.120363460100805],[-126.62332061025889,56.120362601485056],[-126.62327405151613,56.12034826821656],[-126.62322613906333,56.12031153969323],[-126.62311828365573,56.12024262185145],[-126.62296714943936,56.120176155889915],[-126.62286282053925,56.1201385831897],[-126.6227876904921,56.120100867572205],[-126.6227173755418,56.12004968724281],[-126.62265657588452,56.120026462664754],[-126.62258700366704,56.120021202447134],[-126.6225108589262,56.11998349163246],[-126.62243120512036,56.11991443532675],[-126.62237120851447,56.119877765573925],[-126.62233579180648,56.11986785787141],[-126.62230427806215,56.11984897033785],[-126.62228190891223,56.11983563856351],[-126.62225139428334,56.11981674613373],[-126.62216230738181,56.11978805911645],[-126.62204607343034,56.119762864961544],[-126.62198082139314,56.11971277959449],[-126.62197637459668,56.11962207380373],[-126.62198116076091,56.11954252383521],[-126.6219828741288,56.11952347388795],[-126.6219582867128,56.11943398659354],[-126.62190728296031,56.119328947048444],[-126.62186174930228,56.11925188308352],[-126.62183361163169,56.11919265561737],[-126.62183162176636,56.1191299401536],[-126.62186811567943,56.11908159791588],[-126.62196564367618,56.119007195370784],[-126.62209087444074,56.11890129479411],[-126.6221465107063,56.11885285893682],[-126.62219323266417,56.11881342736267],[-126.62231140449673,56.118707561070075],[-126.62242959180705,56.11860169459308],[-126.62252079162757,56.118509401086584],[-126.62260192017146,56.118417156770946],[-126.6227070057036,56.11831135411485],[-126.62288914921616,56.118174931868545],[-126.62307750958324,56.11804855976519],[-126.62325216147691,56.11794801661911],[-126.62344222814086,56.11786643931143],[-126.62359350544997,56.11781529422351],[-126.62369648022286,56.11776774588864],[-126.62381243043143,56.11771229324291],[-126.62395247886883,56.117652242011616],[-126.62408466569208,56.11760455018049],[-126.62420881345359,56.11755801772217],[-126.6243048164874,56.117514983446384],[-126.62434786173277,56.11749797095782],[-126.62438181757297,56.117479882943634],[-126.62444263615154,56.11744150149667],[-126.62450028157723,56.11739305475724],[-126.62452805275635,56.11736603630607],[-126.6246069430662,56.11732308575306],[-126.62474381748393,56.11725408848301],[-126.62488673207412,56.11718394132376],[-126.62511493509827,56.117094333655736],[-126.6254346636646,56.116997555388345],[-126.62570371587094,56.11694358890866],[-126.62584030030517,56.11691939556593],[-126.62595681489859,56.11689978113259],[-126.62611131206911,56.116862058310595],[-126.62623169417877,56.1168323437729],[-126.62641426326556,56.11678664183818],[-126.62667894575283,56.11671141303798],[-126.62688835516592,56.11664317644194],[-126.62703579311443,56.11660548725523],[-126.62718820264442,56.11656329303365],[-126.627403884654,56.11650958587969],[-126.62761974638525,56.116468198487105],[-126.62771617165672,56.11645204175683],[-126.62775244274049,56.11645298299034],[-126.62780159898317,56.116440419561386],[-126.6278706832478,56.11641543681009],[-126.62793962274615,56.11638037390492],[-126.6279836641555,56.116363355266465],[-126.62801863418929,56.11634638136587],[-126.62804561766495,56.116332807135265],[-126.62807354648794,56.116315867957994],[-126.62813844140057,56.11628082490008],[-126.62822128221578,56.11623337223223],[-126.62828899149295,56.11618487410156],[-126.6283785154885,56.11611498650146],[-126.62853113382421,56.11602350557575],[-126.62864828390482,56.11598036359215],[-126.6286835394983,56.11598130957306],[-126.62873750724789,56.1159552809115],[-126.62878111849069,56.115911381907964],[-126.62878746010354,56.11586654689684],[-126.62879113038564,56.11584412692422],[-126.6288527114681,56.11585390355624],[-126.6289970631883,56.11587447212472],[-126.62917148423016,56.115887051269894],[-126.62925826692312,56.11589782323694],[-126.62932000385429,56.115853834446064],[-126.62940018366129,56.115766070842575],[-126.62943571992676,56.1157210914461],[-126.62949061414263,56.11569057751382],[-126.62960145141265,56.11563066448255],[-126.6296553464181,56.115600155421],[-126.62960273882763,56.115459284017035],[-126.6292358978204,56.115128430551394],[-126.62866035107874,56.11471796039297],[-126.62833556394307,56.114307370304],[-126.62816762959919,56.114070739770135],[-126.62800437154144,56.113999859479044],[-126.62779037442134,56.113905707318764],[-126.62750034618655,56.113779446994236],[-126.6272797390791,56.113712208765165],[-126.62703724713671,56.11366187933165],[-126.62678628999568,56.11358582903195],[-126.62667871420918,56.113533714424506],[-126.62661597966708,56.1135149817207],[-126.62649653468706,56.113476366481464],[-126.62629328893303,56.11342360229699],[-126.6260061912312,56.11335444883961],[-126.62568564342357,56.113272018080615],[-126.62536007025963,56.113189611212945],[-126.6250057139566,56.11313310693562],[-126.62465062799694,56.11309452670561],[-126.62440972831546,56.11308114748248],[-126.6243281380447,56.11307930751362],[-126.62432475391783,56.11305692230442],[-126.62432685922363,56.112998667279435],[-126.62430357665714,56.11280052548957],[-126.62426191722044,56.1123325321193],[-126.62419020061385,56.111747076788255],[-126.62407421041556,56.111290648939615],[-126.62396200849412,56.111010056547215],[-126.62386584240451,56.11078763014126],[-126.62374271769883,56.11051605187324],[-126.62360801266296,56.110212047675915],[-126.62353091424886,56.11004889239498],[-126.62351222299581,56.11001314111228],[-126.62346308304272,56.10989913275321],[-126.6234160184651,56.10966078435108],[-126.62344914411344,56.10946348646373],[-126.62351023893069,56.10937918052742],[-126.62358715929108,56.1092768756079],[-126.62366913215102,56.10904909595618],[-126.62365343096137,56.10882067482213],[-126.62356359676677,56.108616138789735],[-126.62345867476333,56.108348951676895],[-126.62343492455186,56.108056724982916],[-126.62346540230854,56.10775639206637],[-126.62344140009394,56.10751233045544],[-126.62335907472158,56.10727303489032],[-126.62327403785403,56.10686237915656],[-126.62324486087807,56.10629127738716],[-126.62324892185582,56.10565728808178],[-126.62325875724558,56.10500646933946],[-126.62326729227415,56.1043366156455],[-126.62334070114734,56.10369556660976],[-126.6235124824086,56.10322652899138],[-126.62372955607744,56.102947683850836],[-126.62392180157443,56.102754086627215],[-126.62409268222126,56.1025460327798],[-126.62425776327193,56.10216327375595],[-126.62433920095908,56.10158490996363],[-126.62441149741267,56.10100211074375],[-126.62456821389172,56.100600351080196],[-126.62468849985282,56.10044070852103],[-126.62482137614516,56.10037621127512],[-126.62507622293298,56.10032231564888],[-126.62544040658732,56.1003070851364],[-126.62582839272861,56.10033317967574],[-126.62613387023671,56.10036079913702],[-126.62634852256093,56.10024885428605],[-126.62642409859245,56.09999982330718],[-126.6264327046759,56.09997177880742],[-126.62642990767375,56.09979593919047],[-126.62642310118262,56.09968396417786],[-126.6264072816371,56.09951266902829],[-126.6264021143563,56.099377164171074],[-126.62641089768844,56.099296474809236],[-126.62643019229301,56.099243735827024],[-126.62647434073716,56.09917183303507],[-126.62653190249736,56.09905618087134],[-126.62661880725322,56.0989504649508],[-126.62676539495344,56.09886349644809],[-126.62687702709614,56.09879350126654],[-126.62693644144565,56.098731603873134],[-126.62698960216449,56.09865629624918],[-126.62700916314779,56.09862035714593],[-126.62701578929492,56.09859344245845],[-126.62704226338163,56.09854962869092],[-126.62708874235152,56.09849675565125],[-126.62715923576317,56.09830935406294],[-126.62721650608074,56.097986487387004],[-126.62723666838313,56.097798213790725],[-126.62723832475118,56.09777580393511],[-126.62717575772692,56.09776603158797],[-126.62695860906636,56.09772117828339],[-126.62669558590089,56.09763958778125],[-126.62664892744101,56.09749084636225],[-126.62681141689552,56.097327633776736],[-126.62694239100912,56.09720825956228],[-126.62691484817199,56.097122148786276],[-126.62670787442025,56.09702012065832],[-126.62639458313336,56.09694213741866],[-126.62609085845872,56.09689546869405],[-126.62586135267333,56.09683275302246],[-126.6257489416203,56.09678962263504],[-126.62565874733765,56.09675198332538],[-126.62552779229051,56.09668206191884],[-126.62544221229986,56.09661751776299],[-126.62543970124806,56.09658616776017],[-126.62541287352369,56.09654485653184],[-126.62530010982863,56.09648044590148],[-126.62520884709643,56.096438331198776],[-126.62517231005793,56.09641946930628],[-126.62509004324299,56.09637282998431],[-126.62495886110008,56.09628946812549],[-126.62487759327496,56.09624282376407],[-126.62482495230184,56.09622404086353],[-126.62474900965488,56.09619529160792],[-126.62468910197373,56.09616310333084],[-126.62465853347753,56.09613973165689],[-126.62463719156285,56.0961263954314],[-126.62461079127691,56.09611196395123],[-126.62461043604058,56.09608956402576],[-126.62467925570532,56.096050023241304],[-126.62475841064477,56.09589954341093],[-126.62475663953056,56.09566097435195],[-126.62472363564409,56.09554800799592],[-126.62470147488203,56.09554699672188],[-126.62448501442219,56.09554357900602],[-126.62409037773993,56.09553991493724],[-126.62389504581402,56.09553639257866],[-126.62385218740614,56.095499639987544],[-126.62376869667506,56.09543956484799],[-126.62366406173639,56.0953795933022],[-126.62349736528817,56.09527736266545],[-126.62333355542813,56.09516615701319],[-126.62324898076368,56.09510160652608],[-126.62316601016803,56.09501016614126],[-126.62305584539597,56.094855014163954],[-126.6229181603641,56.09467759519323],[-126.62273529956907,56.09450711771082],[-126.62251654539094,56.0943592172605],[-126.62230851065767,56.09425158698483],[-126.62215339860012,56.094181780394685],[-126.62204085767014,56.094129686806276],[-126.62195975692649,56.09409312058017],[-126.62187769486911,56.094059919249034],[-126.62179988707057,56.09404013806137],[-126.62175248691885,56.09403476929951],[-126.62170524430957,56.094038360408],[-126.62162763264953,56.0940320191438],[-126.62148115594469,56.093998012187164],[-126.62125750115078,56.09392181882935],[-126.62107965798391,56.09387788383665],[-126.62100803095575,56.093867032653485],[-126.62096877106482,56.09386722427833],[-126.62094855363289,56.0938617225432],[-126.62090275910053,56.093829463661464],[-126.62079282614418,56.09375159437544],[-126.6207042152197,56.09368594187765],[-126.62067065735403,56.093663703953894],[-126.620657335995,56.09364920787579],[-126.62062766281281,56.09361799033494],[-126.62056739185947,56.09356228023556],[-126.62051750161487,56.09352556087182],[-126.62048068723331,56.09348877771933],[-126.6204296415303,56.093443103303635],[-126.62034493421002,56.093369590960634],[-126.62023477437023,56.093277161260936],[-126.62017446769396,56.093218090916594],[-126.62015899271564,56.09319464463495],[-126.62011384534088,56.09313998069635],[-126.62001421901739,56.09301277694761],[-126.6199596006441,56.09293239723989],[-126.6199142775783,56.092866533279604],[-126.61987065026472,56.09278049957692],[-126.61984570283201,56.09273021745997],[-126.619797051739,56.092644208214],[-126.61972265070293,56.09252136170286],[-126.61963151314123,56.09235827374573],[-126.61954237154801,56.09219405593551],[-126.61948179770795,56.092054340758594],[-126.6194681651349,56.09189199538231],[-126.61948741735475,56.091708208351235],[-126.61950861173167,56.09151993154759],[-126.61953873056882,56.091322650645125],[-126.61958968304238,56.091171191595755],[-126.61962329386131,56.09106798046802],[-126.61962662642786,56.090960436487975],[-126.61959423281911,56.09082058417695],[-126.61950987057476,56.09063954196734],[-126.6194338785978,56.090479740490764],[-126.61945535997592,56.09037322825031],[-126.61954123253504,56.09026640244152],[-126.6196218870747,56.09014728110769],[-126.61970728144057,56.09000909527091],[-126.61978426196337,56.08991239334334],[-126.61982293788397,56.0898763623412],[-126.61985826786692,56.089819066105505],[-126.61992173248628,56.08969442794821],[-126.61999121868901,56.08956976041624],[-126.62003827173059,56.089490005396854],[-126.62010424159378,56.08939671719082],[-126.62020781882282,56.089264042805205],[-126.62025669204823,56.08904426883144],[-126.62020037755066,56.088791405327214],[-126.6201469999819,56.088660616206624],[-126.62013348656454,56.08863380016718],[-126.62012527729561,56.0886237594675],[-126.62010387046618,56.08860594254253],[-126.6200904276166,56.0885836064745],[-126.62009999719676,56.088552197592826],[-126.62007921846731,56.08851085592736],[-126.62001416171734,56.08846973007498],[-126.61997261101145,56.08845089122798],[-126.61995628076617,56.08843640977774],[-126.61993601338641,56.08842754791104],[-126.61989351889072,56.08841319395715],[-126.61985296656938,56.08839435020692],[-126.6198689266649,56.08838531180008],[-126.62000765095964,56.08831183056888],[-126.62003868151317,56.088172789448436],[-126.61974668635042,56.08810028709257],[-126.61950386852155,56.08801858395492],[-126.61942244105072,56.08789577173867],[-126.61934631928119,56.08779085491604],[-126.61928939759501,56.08769144497965],[-126.61926452455093,56.087645642815396],[-126.61924182260789,56.087609910792125],[-126.61913320119044,56.08748611071437],[-126.61894729284641,56.08731116298918],[-126.6188058959828,56.08721440402247],[-126.61875010232706,56.087186673446794],[-126.61868014889589,56.08715341132047],[-126.61856850776934,56.08709346998372],[-126.61842728991807,56.08700903060978],[-126.61825822564539,56.08688104335423],[-126.61812970733102,56.08670693563579],[-126.61809294600396,56.08654470284965],[-126.61808970827619,56.08653127763763],[-126.61813023187763,56.08642019293648],[-126.61820229648299,56.08639520099706],[-126.61825535544911,56.08637702186415],[-126.6184241268973,56.086358280203655],[-126.61856570338314,56.086338550486694],[-126.61866113076114,56.08632688561943],[-126.61878961603439,56.08630609924277],[-126.61899749998682,56.086279325996834],[-126.61920940720549,56.086251412746705],[-126.61939198359373,56.086214681336735],[-126.61962231409544,56.08614299461451],[-126.61996510914061,56.085992353876335],[-126.6202707311738,56.08584525371689],[-126.62037752640539,56.08578872897383],[-126.62037731476354,56.08577528906153],[-126.62030607666085,56.08566138845326],[-126.62015614965686,56.08547058605497],[-126.62007110590152,56.08537355381856],[-126.62006793810723,56.085364608632695],[-126.62014596647039,56.085335106200375],[-126.62032401900223,56.08526703329703],[-126.62047898845799,56.08520243297966],[-126.62079997025609,56.08507317788082],[-126.62141046869381,56.08486074218039],[-126.62193654400068,56.08465543682034],[-126.62228323012054,56.08436924129337],[-126.62256024477603,56.08406882483282],[-126.62294630302975,56.08391908434876],[-126.62354164389761,56.08383216137196],[-126.62398197271861,56.083741515822126],[-126.62433833348241,56.083623278967714],[-126.62473415837272,56.08345556383229],[-126.624892786297,56.08330581418478],[-126.62489451947427,56.083161315567445],[-126.62489073406581,56.08298660195808],[-126.62487284110276,56.082873561966935],[-126.62485912939775,56.08283330651552],[-126.62485489154408,56.08281988639709],[-126.62486164251041,56.08280193198132],[-126.62486344170287,56.08278848220482],[-126.6248737411761,56.08261257934455],[-126.62489947252143,56.0822047445418],[-126.6249120975891,56.08179585410828],[-126.6249174709997,56.08143628277577],[-126.62492377133762,56.08107222662474],[-126.62492618425983,56.08084371897834],[-126.62492950640409,56.080609606496516],[-126.62493668182461,56.08017386121654],[-126.62494205806071,56.0797515657671],[-126.62492972499145,56.07954441214492],[-126.62481551541295,56.07944864667663],[-126.62461989412856,56.07935888135534],[-126.62447678772261,56.07921733436957],[-126.62435517975489,56.07897151457707],[-126.62425004469378,56.0787502555236],[-126.62419793143766,56.07863626351437],[-126.62416121910687,56.078541237204306],[-126.62411845447728,56.07844624058926],[-126.62408841748258,56.078391504252686],[-126.62401526167466,56.078219371484074],[-126.62389397925206,56.077740573957584],[-126.62386157093934,56.077218777586864],[-126.6239540742321,56.076896862044116],[-126.62405116461473,56.07667461067827],[-126.62408669709401,56.07650418482888],[-126.62407470354334,56.07638215545806],[-126.62404869691173,56.07626467515843],[-126.62402048332972,56.07613488485962],[-126.62397398457172,56.07599398352767],[-126.62391758577347,56.07586321143624],[-126.62386173702144,56.07576715895966],[-126.62379892719508,56.0756767409849],[-126.62372274646776,56.07556734728746],[-126.62363097039206,56.07542554785507],[-126.62361861497008,56.07540768724485],[-126.62352604379477,56.07521660835077],[-126.62348569403741,56.075018552933464],[-126.62347853366985,56.07482033480137],[-126.6234751097378,56.07466802142612],[-126.62347750336926,56.07456496282075],[-126.62349845124994,56.07442597086081],[-126.62353289920279,56.074251070323626],[-126.62355391760877,56.07411655832037],[-126.62355536241277,56.074080708852456],[-126.62347675549124,56.07267316103775],[-126.62223111260882,56.06934592498821],[-126.62258794190014,56.067354930291835],[-126.62622492786303,56.064810187169286],[-126.62842663675785,56.062541260012146],[-126.6249460337619,56.05875018210431],[-126.62294231373738,56.057191922072384],[-126.62288845302318,56.0553104728806],[-126.62606756788556,56.054649694820306],[-126.6324205986131,56.05377595195463],[-126.63684661651058,56.052329125422204],[-126.63946601124321,56.049547166068116],[-126.64314272321312,56.04529027993412],[-126.64605729251153,56.042909916038994],[-126.64938599566183,56.04042880378849],[-126.64825231025843,56.03670701964894],[-126.64767398073184,56.035213565087986],[-126.64904612435456,56.03339654114057],[-126.6556969872982,56.032538020054446],[-126.66137647214875,56.03405874603939],[-126.66606115502584,56.034374770122746],[-126.6714874005819,56.03367416485712],[-126.67085414763764,56.0302993947745],[-126.66947964499367,56.028003795665974],[-126.67104529490639,56.02647224798398],[-126.67789125599154,56.02595202666962],[-126.68504955762853,56.02525950139579],[-126.6862755237416,56.02520808036601],[-126.68919772443218,56.02666178276112],[-126.69345269163502,56.02806334788733],[-126.70151168771287,56.02811766001623],[-126.70969587479571,56.0270865345028],[-126.7153253216906,56.026382913119036],[-126.71536261459353,56.02467123711799],[-126.7160156709661,56.022785841568286],[-126.72408836907857,56.02227412292056],[-126.73201377045503,56.02358173438976],[-126.73383832227184,56.0242253268803],[-126.73873705552984,56.02870410306643],[-126.74081202137494,56.031747583536],[-126.74084029018869,56.035179333113064],[-126.74152728802311,56.03638500868975],[-126.7399543006678,56.038311753467475],[-126.74090315875742,56.04157685433884],[-126.74237532668819,56.044328139523486],[-126.74280804024902,56.04787402955818],[-126.74929432490232,56.04996858997327],[-126.75176733144178,56.04884286139267],[-126.7551359422705,56.048921456935446],[-126.75830958289812,56.04848140722469],[-126.75602926712334,56.045278111786814],[-126.75517125006739,56.04252332947039],[-126.7547356768328,56.03904022339085],[-126.75540142816087,56.03664377460877],[-126.76139250360052,56.03314024122324],[-126.76609690913467,56.02786102411207],[-126.76608061410813,56.02386468454678],[-126.76968026259352,56.02240026075974],[-126.7743592834443,56.023115548991896],[-126.77912862354152,56.024224379958184],[-126.7812864504899,56.023440509212115],[-126.78131827437782,56.02195284811297],[-126.78245881997046,56.02104976281109],[-126.78614763450996,56.02022052387901],[-126.79247267146252,56.02019913209144],[-126.79903003902244,56.01875122031983],[-126.80475997097916,56.01793545994719],[-126.80905367142695,56.01744222176182],[-126.81289470709442,56.01912021746837],[-126.81743407084434,56.0216090289421],[-126.82339783751439,56.024437924398065],[-126.82698752297419,56.028635096121704],[-126.82906337611699,56.03201767894495],[-126.8307307199644,56.035456670507166],[-126.83412807503863,56.039126240307915],[-126.8386785887429,56.04121102515193],[-126.84329287375051,56.04540997508067],[-126.84649511309635,56.048793788858596],[-126.84867373593536,56.0522918989125],[-126.85176704769778,56.05607955978507],[-126.85671669469549,56.05890480598163],[-126.85992363615554,56.061894002375276],[-126.86027399776559,56.06509066469236],[-126.86066505949633,56.06600202798251],[-126.86378377483854,56.068597458053596],[-126.8652560623027,56.07174168575756],[-126.86592661530926,56.0741476071239],[-126.8657513226232,56.078028881055324],[-126.86614182230878,56.07894919817381],[-126.8646722498109,56.081217354053315],[-126.8652169938398,56.0847621839695],[-126.86541446776074,56.08504759102138],[-126.87032043880234,56.09056095725928],[-126.87361214322158,56.09480382611915],[-126.87466795872238,56.09847058384989],[-126.8754927213679,56.10355477107556],[-126.87973037740159,56.10666191026144],[-126.88662751572828,56.109607040619046],[-126.888545223761,56.110875100046954],[-126.89256933767746,56.114610599578135],[-126.89474159752973,56.118905639262216],[-126.89579865028186,56.122688758236805],[-126.89867045670864,56.127892862683716],[-126.90167649469807,56.13140230725146],[-126.90329681438614,56.13237655234313],[-126.90454465844873,56.136955818211085],[-126.90761974456754,56.14240027321754],[-126.91227934934673,56.14498366311183],[-126.91878308397393,56.14765217649498],[-126.9222088417758,56.15069217320206],[-126.92368629681948,56.15406883011269],[-126.92840873724937,56.15912452147325],[-126.92993611242342,56.159758598451546],[-126.93145547212451,56.16056298112321],[-126.9388213938641,56.16083153681996],[-126.94340768324506,56.16211498333016],[-126.94600636855374,56.16589533062157],[-126.94955167585843,56.16813619153347],[-126.95576557907475,56.169944753504836],[-126.95912733872248,56.17115617403183],[-126.96556034111873,56.17215609194984],[-126.9709109516459,56.17064577846454],[-126.97299628535431,56.168308871786394],[-126.9758521229122,56.166593332547656],[-126.9773366383608,56.165703739735385],[-126.98278035624254,56.16470300807385],[-126.98356201317497,56.16047615551112],[-126.98363028859927,56.15619208299295],[-126.98779290533312,56.151930107897925],[-126.99543301551502,56.147622948942136],[-127.0006957202999,56.14461550129055],[-127.00401742452206,56.141443920480924],[-127.0063230419146,56.137966637243956],[-127.00632715868748,56.137733609283046],[-127.00612845054938,56.137331917921536],[-127.00628408873953,56.13396121871943],[-127.00868531974479,56.130662368707924],[-127.01025728469607,56.12815865416897],[-127.00849202337294,56.12300196284528],[-127.00610370897192,56.118710470926366],[-127.00090646580605,56.117604395544674],[-126.9976675359996,56.11530885068397],[-126.99617617769006,56.112730725207776],[-126.99526880773935,56.11181481397461],[-126.99469174835568,56.109462515957034],[-126.99423706128661,56.105693386585294],[-126.99344612070091,56.10391627873755],[-126.99412006956595,56.10010249632224],[-126.99642637940858,56.09627594093982],[-126.99747103812074,56.09491461296861],[-127.00149552524779,56.09230216884727],[-127.00552216910212,56.0895193158019],[-127.00568983114727,56.085127004942684],[-127.00350082755993,56.08140748276384],[-127.00150798736713,56.07802691038991],[-127.00019974510255,56.07671095572138],[-126.99601907696913,56.07634947849839],[-126.99112137052474,56.07603826073295],[-126.9884961352713,56.074024519215506],[-126.98425453281892,56.07080453874697],[-126.98040566127713,56.06890763913916],[-126.97666710329909,56.06637354327011],[-126.97254175403572,56.06253398837159],[-126.9698303106058,56.05959755724845],[-126.96834696660443,56.05657107474972],[-126.96677787531118,56.052622247345916],[-126.96387667623773,56.04895234919096],[-126.96187398035032,56.04648532853114],[-126.9605901179423,56.043968043162046],[-126.95900602437975,56.040879512802505],[-126.95741069627378,56.038642343282355],[-126.95518606021311,56.03743143802972],[-126.95224511911204,56.03627067124668],[-126.94952080120704,56.03437342282378],[-126.946491566991,56.03253215699723],[-126.94254028699758,56.030742471913904],[-126.93817222037788,56.02958300951759],[-126.93513141729089,56.02835986908974],[-126.93331663871339,56.0272172632909],[-126.93467911712399,56.025047671980694],[-126.93697128383702,56.022261871453225],[-126.93539869485421,56.01865327510117],[-126.93399896000763,56.01698789851122],[-126.93178376556706,56.015328495079466],[-126.93021770354791,56.01149577985165],[-126.92830758398473,56.00976240001316],[-126.92477033579775,56.00797813122514],[-126.92234257838938,56.00676816293932],[-126.92056470154358,56.00361790755975],[-126.91977450902856,56.00207341978249],[-126.91720360080627,56.00004000534153],[-126.91391082390021,55.9956998664979],[-126.91329270401762,55.994154106133266],[-126.91328860401931,55.99180642020541],[-126.91827731346488,55.99055175677921],[-126.91899075268907,55.99049282748419],[-126.9236756745884,55.989741951797924],[-126.93039896892752,55.9884204051951],[-126.93538722886686,55.987102341383405],[-126.94180046723797,55.98544196173877],[-126.95137679373514,55.98451924202552],[-126.95871019399435,55.984338589375675],[-126.9612579668612,55.98422074313886],[-126.95717383172239,55.98170675620877],[-126.9498278842772,55.97909165709659],[-126.93922383590979,55.97738742103921],[-126.93443502576147,55.97647294924164],[-126.9223010716992,55.97339862262633],[-126.91333178080961,55.97066779022376],[-126.9083316209909,55.96861586208432],[-126.90160654430719,55.96758857037001],[-126.89070721396932,55.9665723898353],[-126.88541003015168,55.96542668123684],[-126.87674759592929,55.96280764439006],[-126.87082892349953,55.95800075165331],[-126.86633982934805,55.95126628018112],[-126.87131302940853,55.94137559639876],[-126.87283458313672,55.94039738934935],[-126.89541418669319,55.93307142687355],[-126.89927572833311,55.93135053655902],[-126.90201395612429,55.927639327488876],[-126.90943814052106,55.92632281546877],[-126.91624922229458,55.92408736364043],[-126.91816905900609,55.920310031125034],[-126.9165296773372,55.91642406796971],[-126.91387758455916,55.91362066480969],[-126.90714987496939,55.90757588770713],[-126.90510623879216,55.904427458355904],[-126.90255538670947,55.90089731767804],[-126.89746326663952,55.898263297547025],[-126.89359491691657,55.895638368058044],[-126.88880424446455,55.89089618431855],[-126.88717281405052,55.88780732502359],[-126.88645363970393,55.88466726093278],[-126.88583626284127,55.880388514024524],[-126.88481044185404,55.87673089327813],[-126.88094346613877,55.873765110684005],[-126.87646524537794,55.87056152294382],[-126.87432703008751,55.86764628526061],[-126.87289719079135,55.86330143758007],[-126.87167406542979,55.86101602963261],[-126.86729936390716,55.85718420939971],[-126.86333256397259,55.85421861172827],[-126.86190821453938,55.85193449448654],[-126.858853807244,55.846390948227466],[-126.8554959045984,55.84296401481788],[-126.85153603837702,55.84067900555856],[-126.84899529783192,55.83930725759947],[-126.84523723292382,55.83754039557597],[-126.84361065560053,55.83554417271821],[-126.84167746321434,55.83120240018723],[-126.83923809479454,55.82857536416341],[-126.83111855136003,55.82776884314185],[-126.82208459394444,55.826627268255464],[-126.8182275120303,55.825370997769994],[-126.81112452465406,55.82171625125594],[-126.80696155869195,55.81702988180886],[-126.80280077705322,55.812056650384896],[-126.79945553127546,55.81006184394329],[-126.79874454218626,55.809940900233485],[-126.78840001775292,55.806511457798344],[-126.77937180923897,55.80428267277856],[-126.77024395949665,55.8027348198287],[-126.76324757095323,55.800958409031864],[-126.75605183737892,55.79775816898667],[-126.7513892787586,55.79432744130394],[-126.74672911927225,55.791299733753874],[-126.74480566024224,55.78860518496763],[-126.74419994773997,55.78666444573564],[-126.74420308706135,55.78560715259709],[-126.74420319965648,55.78529355358022],[-126.7443034703058,55.784728485492394],[-126.74491347089864,55.783121056580434],[-126.74765909989301,55.77889365041497],[-126.74887931357605,55.77523972154792],[-126.74898040485947,55.77324105647896],[-126.74807822488546,55.76695654100403],[-126.7477806049422,55.76186011616143],[-126.74768300490722,55.75752410323324],[-126.74758513514095,55.75529367009742],[-126.74738508184177,55.752723368030225],[-126.74698566211178,55.74803971768242],[-126.74587610299648,55.7450626478187],[-126.74101857928851,55.74122958398368],[-126.73363128605892,55.73836978762343],[-126.72553751106801,55.73521795977745],[-126.71856028733951,55.730697374189496],[-126.709963872012,55.727556391940325],[-126.69843073987181,55.72388459344283],[-126.69216551719315,55.721195387629756],[-126.68457990387184,55.718844565343154],[-126.68387203656152,55.71849897863298],[-126.67942710415885,55.716041175047415],[-126.67599703116707,55.7122607024082],[-126.67358193909301,55.70763251039748],[-126.67065820673034,55.704368860273185],[-126.66641177748672,55.70380005315333],[-126.6605392704307,55.70493301698401],[-126.65578069024211,55.70630182415733],[-126.64688620694949,55.704116847136326],[-126.64366245429518,55.70051365967739],[-126.63678895340794,55.69901649196125],[-126.63244634545178,55.69747043310618],[-126.63124685049374,55.69403595524335],[-126.63025083235695,55.69003599634379],[-126.62854336692561,55.687464163151255],[-126.62814541872402,55.686489552271276],[-126.62360673871977,55.68344792810904],[-126.61865740386797,55.68207464542492],[-126.61532589390731,55.68081870911161],[-126.613314874085,55.678239204932034],[-126.61009554026867,55.6754325837538],[-126.6037361479945,55.673250230474196],[-126.59828048767855,55.67238032057332],[-126.59514905820417,55.672153255328695],[-126.59292780335262,55.67192182900416],[-126.58879546527113,55.669396718506654],[-126.58446576349206,55.66607499623027],[-126.58053520006833,55.66413105364904],[-126.57538108447059,55.663885934853255],[-126.57154988555484,55.66250570920965],[-126.56902731088567,55.66204228602651],[-126.56114708814972,55.66105628511333],[-126.55700143025008,55.661907931175584],[-126.55294493538534,55.664246320987644],[-126.54767616366665,55.66629419677417],[-126.53857600110885,55.6673010837323],[-126.5324101260591,55.667282515889376],[-126.53129552097198,55.667627684643875],[-126.53119455507033,55.66722493503994],[-126.52961600648187,55.661963427981036],[-126.52813817724349,55.65630727099734],[-126.52795413394583,55.6531632824198],[-126.52737075586587,55.650074726673914],[-126.5236538708982,55.64686486015889],[-126.51557994606672,55.646047061537246],[-126.51093452073188,55.64575243346774],[-126.50740285883604,55.64522916239256],[-126.49590933980168,55.64194210090648],[-126.49046642833288,55.64067328936015],[-126.48188663636614,55.63990906472105],[-126.47986907753356,55.639612158968774],[-126.4751318334334,55.6384564653819],[-126.47102160561388,55.63485234670632],[-126.47267689173523,55.62988266201215],[-126.47765770721838,55.62555440217505],[-126.48071928280395,55.62167230414811],[-126.4812428989751,55.61899146250445],[-126.47807581430385,55.61115518537918],[-126.46864154799613,55.604892327483945],[-126.45868437174187,55.600700281529946],[-126.45758131877916,55.59995172384656],[-126.4467389768522,55.593808847251346],[-126.43930370402369,55.590296161734734],[-126.43095616453483,55.587762731705624],[-126.42843765525924,55.587359221266766],[-126.4195776253772,55.58566895415598],[-126.41111719168187,55.58420969750884],[-126.40568476595615,55.58282972294647],[-126.40600453298272,55.58105476822238],[-126.40503446565583,55.57710689512981],[-126.4028494567854,55.57372734971849],[-126.40065839360027,55.571091400648],[-126.40029349737813,55.5670967724373],[-126.40266276406439,55.56201830764057],[-126.40337729310717,55.56098571011619],[-126.4036237528745,55.556191767512544],[-126.3990362048423,55.551314738574085],[-126.39342637761413,55.54816091237305],[-126.39062033989364,55.54648536000599],[-126.3875445537816,55.5418451093204],[-126.38628238099913,55.53727089191578],[-126.39155830769806,55.5334110786418],[-126.39821751040157,55.53234190267614],[-126.40509058041785,55.52979342767777],[-126.40845027501756,55.52608241947249],[-126.41040826959721,55.52157855527391],[-126.4113305770006,55.51981059003921],[-126.4091793522523,55.51317893478718],[-126.40573149687155,55.505162797433286],[-126.40137502665551,55.49766015959937],[-126.40009166389487,55.4951467657711],[-126.39701917736556,55.49045303135284],[-126.39353491123119,55.48654891701123],[-126.38752976370739,55.48344988609216],[-126.37648505240065,55.481414021435576],[-126.36705702050529,55.478745330477274],[-126.36094253981024,55.476899620154676],[-126.35624931965346,55.473571344818566],[-126.35612184626342,55.46670911610791],[-126.3570014265252,55.45991569958737],[-126.3580382321912,55.45700107059876],[-126.35831123515572,55.450433360457346],[-126.35507897150532,55.44241533677319],[-126.35124572979026,55.43457810944231],[-126.34710065700091,55.4278167150892],[-126.34442299152111,55.424554103506395],[-126.34088172299145,55.417790854664354],[-126.33581202914824,55.413378862182334],[-126.32730307682577,55.410713744117416],[-126.31691068621012,55.40667316794467],[-126.3127190215942,55.404488791068964],[-126.30745294594779,55.399896982567064],[-126.30079545657156,55.39409886558793],[-126.29541024425457,55.39121799190279],[-126.28669684291015,55.38976006541925],[-126.28329169361648,55.38911383154551],[-126.27311123739044,55.38495270491725],[-126.26613906334292,55.38081084221466],[-126.25903689396606,55.37912358482996],[-126.25273486334923,55.37772099242898],[-126.24280547105329,55.37745399496218],[-126.23447893230295,55.37741614124954],[-126.2316753891117,55.37688384060951],[-126.23303771831844,55.37266170554655],[-126.24208380998907,55.3713902742755],[-126.24921667589196,55.37056099975866],[-126.25377400997755,55.36744311737099],[-126.25545778860277,55.361508950885835],[-126.25708506479664,55.35963322122604],[-126.25842641226004,55.35695176952732],[-126.2620751963053,55.35393400793996],[-126.26671714801407,55.35149634508533],[-126.27156807987953,55.35637740287333],[-126.27609998084073,55.362970118047876],[-126.27966689161978,55.36617840301623],[-126.28587104975635,55.36769632219908],[-126.29489628988013,55.36772910028482],[-126.2990094949101,55.36745951847515],[-126.30696619972701,55.36514676041777],[-126.31171169887885,55.36248319368417],[-126.31473792110359,55.36078238532992],[-126.3191529933273,55.36068159563139],[-126.3381066217918,55.36075716037307],[-126.35972172899356,55.36528373195697],[-126.37010557442264,55.369840351414844],[-126.3942719987165,55.3809471510248],[-126.39887164132298,55.382796011765414],[-126.40960334918779,55.38345114226727],[-126.41856253859662,55.38011561694338],[-126.41982041209437,55.37410891687057],[-126.4074621854034,55.36538800819727],[-126.39299179439755,55.357855139586654],[-126.38521861770703,55.35320281703035],[-126.37415266403224,55.34693837247711],[-126.36727914591775,55.342452471453974],[-126.36379135828543,55.34067091106889],[-126.36260224586447,55.33935741904388],[-126.36875392999458,55.335487096761256],[-126.37548819475083,55.33385443119613],[-126.37880576429163,55.332778305341854],[-126.3766371297657,55.329174450383135],[-126.37003960794605,55.3276622201536],[-126.36355894574798,55.324608382822774],[-126.3629576012356,55.324377203264596],[-126.35550032747963,55.31915775212475],[-126.34875844986418,55.31244870285573],[-126.3463038879192,55.307976133710376],[-126.34323608554274,55.30453547098981],[-126.3422784029016,55.300649982086945],[-126.33882703401224,55.295723107881706],[-126.33205344217308,55.29295514163278],[-126.3261727894438,55.29047115945175],[-126.32130340095364,55.287312392647955],[-126.31662976294618,55.28449337498648],[-126.314937649276,55.283521154335276],[-126.31597759626358,55.28032024257631],[-126.3162257879222,55.27614482804078],[-126.3173726084189,55.27215526368547],[-126.31918911842293,55.27084264608985],[-126.32341088471169,55.26926398007205],[-126.32364326275761,55.26628906764535],[-126.31978647643531,55.2622765407179],[-126.31642423919133,55.25888975553275],[-126.30282139261769,55.25032316279331],[-126.29069473694966,55.24427802930826],[-126.28373185893098,55.24132874628285],[-126.27696351425652,55.23872803453207],[-126.27189830775372,55.23614116821601],[-126.26675516179733,55.23165501871788],[-126.2636104713609,55.227478000404986],[-126.25848510893525,55.22191643511628],[-126.25847197292681,55.22293775389825],[-126.25841493644478,55.22739930447824],[-126.25576223388447,55.23149890780079],[-126.25292856641181,55.23400417326851],[-126.24819026048222,55.23712237590269],[-126.2417798656279,55.23818315333412],[-126.23977971006538,55.23811535050064],[-126.23482492534178,55.234783197259574],[-126.23239565232295,55.229627547384936],[-126.23255077762434,55.22545250855072],[-126.23411632028346,55.220665635743636],[-126.23406221414878,55.21711809841777],[-126.23331208781308,55.213742083462066],[-126.23312533038589,55.212604680941965],[-126.23200747743981,55.20671195944589],[-126.22887515260447,55.202175711878695],[-126.22798782526833,55.20120980421078],[-126.22576781296452,55.19565051842771],[-126.22146841308768,55.18866152936714],[-126.21637295065827,55.18171857799646],[-126.21371952738396,55.17868618192822],[-126.20829288935049,55.17414439461824],[-126.20016277297472,55.170332405447915],[-126.19281214953453,55.167781849832416],[-126.18929111517403,55.16285105050578],[-126.1881899186791,55.156330835635146],[-126.18457838255436,55.15082669264833],[-126.18206230766404,55.14567023389095],[-126.18096974621119,55.13852284638205],[-126.1821615408701,55.13195443358086],[-126.18681119798862,55.12780864424598],[-126.18710930607891,55.127691733435896],[-126.19295584499,55.12343640083309],[-126.195673859277,55.12161354763472],[-126.19392576782583,55.11840910290571],[-126.19047854121087,55.11553872143366],[-126.18265538377474,55.11212828431888],[-126.17720193411799,55.11004883027009],[-126.17147414173392,55.106589890786985],[-126.1663613952477,55.10204587446208],[-126.16186444199025,55.09630935370681],[-126.1586618898701,55.09069644486256],[-126.15752505958011,55.08685465300377],[-126.15755978363904,55.08468662746047],[-126.15808072867546,55.083145085502856],[-126.16011173263723,55.08058927989488],[-126.16173811857051,55.07824897546285],[-126.16287351662638,55.07585554361883],[-126.16341390772104,55.07288953623451],[-126.16376818870037,55.069287711902135],[-126.16382130303927,55.06569524353633],[-126.16324787264085,55.06409241056673],[-126.1614367549375,55.05881816763995],[-126.15881103620478,55.05474539728045],[-126.15657163147554,55.051541068617],[-126.15550884751391,55.049535681231625],[-126.15597112292565,55.045082679393914],[-126.1623244607124,55.039564986300206],[-126.16485840873959,55.03643509186877],[-126.1665879457228,55.03370040741161],[-126.16669806564337,55.033073157649476],[-126.16692203588653,55.031531977753694],[-126.16695872349283,55.02902352166831],[-126.16522979004024,55.02489592724786],[-126.16281825347151,55.0200256450752],[-126.15922284927392,55.0144043225965],[-126.15657868328708,55.011594695774676],[-126.15628706535952,55.01141589228265],[-126.15147974616048,55.013625678426294],[-126.1393096290311,55.01613045183562],[-126.13112321923538,55.018208821538416],[-126.114183999213,55.02045628086634],[-126.10144725193354,55.02106759082199],[-126.09011317158763,55.02078072087715],[-126.08634371762825,55.02024589093278],[-126.07901963131154,55.01814551415904],[-126.07361302195754,55.01468187683596],[-126.07108808137238,55.01112679786371],[-126.06919067103651,55.00597669258047],[-126.0692066310745,55.00500019914084],[-126.06966048052102,55.00180173387273],[-126.06996387781477,54.99999193092791],[-126.0681297930238,54.99541512264914],[-126.0591663947497,54.98608489807535],[-126.04361481186253,54.96989425687683],[-126.02816252138666,54.95483042015552],[-126.00318881614355,54.94082237599367],[-125.99992177230757,54.939962393886276],[-125.98501179298235,54.93937021941472],[-125.9797724472232,54.935696457072076],[-125.97615986737424,54.93372492631039],[-125.97296945725185,54.93254173766113],[-125.96766824135952,54.93047103328926],[-125.96128822161612,54.9285162296557],[-125.957380503182,54.926078210389385],[-125.95342835347924,54.92188416872015],[-125.94958663566965,54.91756462484477],[-125.94596203941843,54.91518906842819],[-125.94574458573679,54.91410498455553],[-125.94948335916342,54.912601527778214],[-125.94743952985425,54.90924120616269],[-125.94640995523902,54.90753863270969],[-125.9402590645869,54.90174856437757],[-125.93504425894348,54.89807291078497],[-125.93114016747377,54.896153657567815],[-125.92712888390835,54.893212937984245],[-125.9232120585503,54.89020943608235],[-125.91632615851802,54.88762488684572],[-125.90717410839044,54.885692247357625],[-125.9002382373977,54.88509557050527],[-125.89744256103404,54.884663267167376],[-125.89887320238336,54.881116841943545],[-125.90354002841069,54.87639939440687],[-125.90768224956838,54.87523794375812],[-125.91251130742631,54.874175387570006],[-125.9211047553556,54.87297176857987],[-125.91995539583553,54.86967426374767],[-125.91853755005675,54.86796224321574],[-125.91287248416954,54.86600539841168],[-125.90867464547604,54.86460482104312],[-125.90597691235648,54.86290961870975],[-125.90384562347496,54.85949474728274],[-125.90636631592156,54.85656722125661],[-125.91183964053442,54.85259363169259],[-125.91495206844365,54.84989031674561],[-125.91600297730132,54.84748117075204],[-125.91555609934004,54.844685778979084],[-125.91374847881029,54.84326906744052],[-125.91075351638898,54.84243378564039],[-125.90560440509432,54.841775973373686],[-125.90420114667995,54.84116570556292],[-125.89988581998581,54.83793717611543],[-125.89664999721982,54.83389416963994],[-125.89434579004713,54.83185860994813],[-125.88857742910542,54.82999909738777],[-125.88340146210905,54.82849822095913],[-125.8815020699125,54.827080947178445],[-125.8806793416176,54.825655732014894],[-125.87799786986375,54.82499016913625],[-125.87562628592558,54.82505050977609],[-125.87117889765386,54.82536845347999],[-125.86732602300319,54.82515831885129],[-125.86671903999034,54.824709732604646],[-125.85986240953481,54.82241767774309],[-125.8532077593221,54.82056445420728],[-125.8528023654941,54.82051021896847],[-125.84904364311217,54.82029962464703],[-125.84380405219838,54.81981828893477],[-125.84338373482487,54.81959378963348],[-125.84290126804314,54.81930649921973],[-125.8390088447197,54.817447038202],[-125.83394435696083,54.81622194382443],[-125.82947531805681,54.8144151541198],[-125.81920217237882,54.80967930346758],[-125.81263653318669,54.8062831245517],[-125.80874513950835,54.80476313310102],[-125.80655370405049,54.80323674011348],[-125.8011968027583,54.801785868866816],[-125.79197403028736,54.80022975207274],[-125.78404783401885,54.7983347935529],[-125.77749284918845,54.796710568023876],[-125.77054960448307,54.794915055173874],[-125.75912625904587,54.7916054118105],[-125.75565741873567,54.79037123971662],[-125.75485408024144,54.78916917933615],[-125.75511755275683,54.78683148558675],[-125.75664697027926,54.78390502528348],[-125.7577918918077,54.78008192094975],[-125.7615015716098,54.777311966859145],[-125.76384701556847,54.775936848648826],[-125.76768923472252,54.77437638649114],[-125.76497783521091,54.77170155005891],[-125.76198195636634,54.76977863367156],[-125.76128553045096,54.7689799611553],[-125.75910179180015,54.76151310879164],[-125.76028199810392,54.754196149688624],[-125.76307920263574,54.74990138594492],[-125.76678931338478,54.7465131218965],[-125.77536135082214,54.74509567681984],[-125.79117287631776,54.74672713632312],[-125.80562651098523,54.74927716979801],[-125.81287292028907,54.75151911705802],[-125.82492341345457,54.75225354622342],[-125.83950588925076,54.750804204357074],[-125.84707028513792,54.747732050856804],[-125.84940430608685,54.739779616816996],[-125.84518048671521,54.7287283044363],[-125.840814402736,54.71883232269482],[-125.83984263876721,54.716654094705866],[-125.83504978606058,54.712911975306845],[-125.82913289733965,54.70660591562221],[-125.82211549232215,54.699850040555226],[-125.81660452719774,54.694054599311166],[-125.81507525679608,54.684923351645814],[-125.81303246613821,54.67945542419167],[-125.8063308328344,54.67320974809512],[-125.80006854778301,54.66969683823234],[-125.78537394286361,54.66224521501737],[-125.77139018530771,54.6564326017938],[-125.73736894038979,54.646043992323015],[-125.72305009961369,54.643369666609495],[-125.71328734952728,54.642388653755894],[-125.70519109112695,54.64082855346897],[-125.70179280671846,54.63616174752277],[-125.70143542904697,54.63194126378397],[-125.70640457262665,54.627581338829145],[-125.71454251508825,54.62502935570018],[-125.72030576688468,54.622256430558174],[-125.72015961335293,54.61866359957119],[-125.71687575799015,54.61542191785118],[-125.7071615494961,54.61078529472489],[-125.69886666978114,54.60757584885011],[-125.69013831604954,54.60235795321521],[-125.68279963773308,54.598280810049054],[-125.67639212540121,54.59630206569812],[-125.66386367872923,54.59356276359895],[-125.65350673345577,54.591043347184005],[-125.64535214816834,54.592274273453405],[-125.63861861344071,54.595900888390105],[-125.63325869302135,54.60020317101463],[-125.63248861741796,54.601293853227055],[-125.62689526057117,54.60382129297545],[-125.62053206950291,54.605620426248976],[-125.61718971996964,54.60626403847792],[-125.61383826532371,54.606217693936685],[-125.6086172628155,54.60532316526029],[-125.6035998588161,54.60425885206347],[-125.59777745148408,54.60303043346079],[-125.59050156106353,54.602880923648264],[-125.58203641708707,54.60371241832077],[-125.57694498072327,54.60538819909189],[-125.5749825493664,54.606080211014984],[-125.57056974689338,54.60809851919625],[-125.56694043144577,54.6093668865827],[-125.56153566065227,54.60829948213831],[-125.55636820504607,54.603980591293116],[-125.55556255229997,54.60101225346077],[-125.55553714477115,54.599068063521116],[-125.5567876772882,54.596779092540345],[-125.5613002273072,54.59408971309206],[-125.56786531874921,54.592348114595104],[-125.572574234117,54.59153144058296],[-125.57512554403644,54.59083255188832],[-125.57432478598271,54.58877816870314],[-125.57164663638696,54.586788904102725],[-125.57095761134985,54.58593539090294],[-125.57217942868672,54.580340297822836],[-125.57556360149474,54.57553213138449],[-125.57740199104629,54.5716950790452],[-125.57767364808242,54.56941147239146],[-125.57546691644826,54.56542604952714],[-125.5706372567127,54.56326801363038],[-125.55961545677178,54.561831276273615],[-125.5539482982245,54.55556632775105],[-125.5530513184084,54.553968349685086],[-125.54734616451965,54.552728965356835],[-125.54310914196314,54.5518889982729],[-125.53629266456997,54.54757198955183],[-125.53282234700166,54.544790448243695],[-125.5292674753164,54.54131863229008],[-125.5250004931935,54.53785290698799],[-125.5217304200679,54.53397880983679],[-125.51747096418741,54.52999321485758],[-125.50794500468658,54.528709971879564],[-125.50069342072047,54.53021260941464],[-125.49914752352723,54.53376305859546],[-125.49887251951719,54.53724702408632],[-125.49996978769204,54.540001954274054],[-125.50097675556107,54.54255044577109],[-125.50366670368648,54.54687966055593],[-125.50457534811139,54.54990255094929],[-125.50381810709939,54.55356374761996],[-125.50187844603751,54.55630630930243],[-125.50090790820389,54.55836294477969],[-125.49917206968456,54.56088231709105],[-125.4955299676105,54.560831534095975],[-125.49160105281574,54.56016127622852],[-125.48775674078007,54.56017213583474],[-125.4847177448252,54.5602400199758],[-125.48186375962673,54.559161848352026],[-125.48155876390075,54.5587663577819],[-125.47821265404933,54.55739932485171],[-125.4761429209039,54.556835025319835],[-125.47308715524252,54.55701901649208],[-125.47122719732441,54.55701995921666],[-125.46993993025845,54.5558855476259],[-125.46679439714543,54.554635535908794],[-125.46394197925018,54.55350319425002],[-125.45949413655737,54.549971668746316],[-125.4539686083477,54.547133987333346],[-125.44846026975429,54.546526954708426],[-125.44109492311154,54.54688775724111],[-125.43667853809191,54.54689439530974],[-125.43008222590608,54.54543040430328],[-125.4227135506273,54.544930005790015],[-125.41800625302355,54.54579467752603],[-125.4121282183318,54.548319959561994],[-125.40859871133357,54.550211266840435],[-125.40546202244936,54.55171017765303],[-125.4008452305941,54.55160704247123],[-125.39730768495879,54.54977992728534],[-125.39415252856638,54.548312968158434],[-125.39001663339805,54.54820284197043],[-125.38618891694954,54.54821059086413],[-125.38540632998887,54.54769599081055],[-125.37861818525535,54.545708621890384],[-125.37310705373123,54.54435456358245],[-125.3641499349593,54.542426933786295],[-125.36121396155475,54.5419188918403],[-125.35767286679605,54.54147032027168],[-125.35178143035124,54.54170804455676],[-125.35040698664274,54.54239958055814],[-125.3474749642531,54.544570044679254],[-125.34462555272721,54.54543283146216],[-125.34060393234607,54.54594879337738],[-125.33196238460172,54.546591811183475],[-125.32635310512111,54.547519719340585],[-125.3206583328495,54.5479810152196],[-125.31614884712094,54.547982790004674],[-125.31044962084907,54.54685779322708],[-125.30728546608998,54.544286533394356],[-125.30424351766797,54.5418413134216],[-125.29961643829367,54.54151031268459],[-125.29569337464586,54.54258980121905],[-125.29265571058485,54.54442686621925],[-125.28911993468495,54.54637743695789],[-125.28283059994924,54.54449513765054],[-125.28027404808522,54.542724106358975],[-125.27801033921942,54.541931315078656],[-125.27565376427928,54.541137931891065],[-125.27201749999244,54.53999644430477],[-125.26455651022223,54.53875129436203],[-125.25619823880777,54.540017820472],[-125.25296302547719,54.54070591091433],[-125.24717427066967,54.54122593066214],[-125.24275102438563,54.5416287002745],[-125.23714528343608,54.541459506172934],[-125.23321828991425,54.54100492139061],[-125.22684621225082,54.54203997218031],[-125.2225159828032,54.543239987294314],[-125.21858805601205,54.54364503125236],[-125.21368500930468,54.5439899341609],[-125.20553107884594,54.54496762713344],[-125.19913886026356,54.546171342333096],[-125.18961526022426,54.54662832479161],[-125.18911820452597,54.546687750002064],[-125.17231784024499,54.54680827611828],[-125.15740195055292,54.54646462760805],[-125.14285212874776,54.54493010716897],[-125.1308735947398,54.542758084209304],[-125.12479101254456,54.54098555649763],[-125.1140963848027,54.5347086020826],[-125.1061462079723,54.52774295120811],[-125.09929035423272,54.518320920586255],[-125.0982134345967,54.51518607669443],[-125.0967575154326,54.50747900507946],[-125.09676416284206,54.5008578725447],[-125.09460481363399,54.49770602411104],[-125.08814219406011,54.49251515039581],[-125.07687424127627,54.489142388102024],[-125.06530495027963,54.48685039499927],[-125.05794903519873,54.485082623547875],[-125.04392520927017,54.483307234503684],[-125.0326513914938,54.484374353472376],[-125.02949092594433,54.489115910627284],[-125.02918861126236,54.49207919857868],[-125.0277122495526,54.49299032504689],[-125.02073569370853,54.495443391376426],[-125.01277889361366,54.49743120594979],[-125.00866279088501,54.499306345971796],[-125.00346054087633,54.49936262174984],[-124.99078796063779,54.500432435658674],[-124.97488535751134,54.50497721569838],[-124.96986720800405,54.506915183887884],[-124.96652011907896,54.50764853761282],[-124.95550903435569,54.51020713295467],[-124.94441130859441,54.512468323442775],[-124.93537661577393,54.5151407243217],[-124.92835870284779,54.52118116168068],[-124.9247014303568,54.5253960810547],[-124.92271582853834,54.52904322673784],[-124.91866840880336,54.53331725696698],[-124.91413383603162,54.53548125364779],[-124.9058755993227,54.53666210380277],[-124.89803301581753,54.53619751054036],[-124.8882994747611,54.53576901276445],[-124.87713030294368,54.53346289556016],[-124.8710443177054,54.53225106591849],[-124.86299821813576,54.53246330173307],[-124.85218339152023,54.53307019705275],[-124.84324469395975,54.53470637464336],[-124.8316538820805,54.534784442196965],[-124.82359746972408,54.534250306372186],[-124.81701747349389,54.534634890873456],[-124.80797753660933,54.534896628092426],[-124.79924674406077,54.53465000246394],[-124.79296700040359,54.53377285647999],[-124.78493462069602,54.53192821645481],[-124.77114899313216,54.52566177015916],[-124.76949344040322,54.524569903628944],[-124.76655242354083,54.522963287902726],[-124.75911877112436,54.520889984685674],[-124.75215892306221,54.519555798993956],[-124.74863939187506,54.5176561093063],[-124.74698996976288,54.516393744485086],[-124.74302718289722,54.51078873335894],[-124.74177865145607,54.50707528081601],[-124.73857263382949,54.50409430538273],[-124.73232418660696,54.50139535223145],[-124.72529432733096,54.49846391756239],[-124.71884477846983,54.495815921087775],[-124.71250071137595,54.49328517084791],[-124.709182129063,54.492013641485734],[-124.70380343694443,54.48982415136603],[-124.69814835039021,54.486609982242165],[-124.69386572246572,54.48357150176927],[-124.69326234093033,54.476773007688294],[-124.69918221639266,54.473538704153675],[-124.70832399893476,54.4711177813376],[-124.71305910250491,54.46959070093539],[-124.71475573225042,54.46629319107178],[-124.71576594570061,54.46366944005818],[-124.72120259702879,54.458950547029396],[-124.73115183330006,54.45527298767246],[-124.73704770489161,54.453120863847786],[-124.7421594153689,54.451309844199606],[-124.74609902470525,54.449388022620354],[-124.75462918481199,54.44901831898353],[-124.7596363691643,54.44908719359014],[-124.76561918622237,54.449103004464874],[-124.76875528562753,54.44763827970878],[-124.76896332953632,54.44688770665678],[-124.77911587055614,54.441326683568654],[-124.7927648599297,54.43765424718224],[-124.79639792250157,54.43709873276939],[-124.8070059018108,54.43426386280839],[-124.8132039546376,54.43103584284613],[-124.81497773666342,54.42954774509825],[-124.81498725388597,54.42761241483939],[-124.81185684874164,54.4268562021592],[-124.80913287187403,54.425942588175324],[-124.80591501193014,54.42342018507853],[-124.80103598240136,54.421186036397366],[-124.79801869548439,54.419229886226724],[-124.79803157495347,54.418262296120155],[-124.79922477234771,54.41655365606019],[-124.79904473305267,54.41478669650574],[-124.79384888162001,54.41392005985729],[-124.78876701264147,54.413385864854206],[-124.78399348191161,54.41183304620118],[-124.78008661667292,54.40919553621959],[-124.77767822711917,54.40604425228473],[-124.77810564577337,54.401541447365766],[-124.78312278110971,54.39847337501478],[-124.78461779641283,54.39648114859761],[-124.7890404267447,54.39363988596935],[-124.7919069117365,54.39119524150673],[-124.79417273032426,54.38869083194327],[-124.79908424732199,54.38755652375001],[-124.80291935530043,54.38573942964346],[-124.80282976092182,54.38351637360528],[-124.80335553581612,54.38083341669241],[-124.80318523810446,54.37661139751145],[-124.80467634462944,54.37416191540885],[-124.81301553237537,54.370757802981984],[-124.81656026252139,54.368767219955274],[-124.8176623758287,54.36585682848474],[-124.81385544024933,54.364646028475086],[-124.81044080800861,54.363214926380785],[-124.80538145221811,54.36052211636069],[-124.80149065586578,54.358512619516134],[-124.79885170372037,54.356963361931854],[-124.79486443706612,54.35616235645947],[-124.79426984096155,54.35592350274438],[-124.79183721240351,54.35471662723564],[-124.78782679812392,54.35471264039918],[-124.78323601516631,54.355034265617554],[-124.77766413527777,54.35410933261461],[-124.77105026868833,54.350897666272665],[-124.7670557436486,54.34883223080588],[-124.76531661486074,54.34665512963011],[-124.76817626229285,54.34489197059641],[-124.77365192255768,54.34485760944876],[-124.77708545116661,54.34348532372306],[-124.77681718838299,54.34057942146794],[-124.77333034134963,54.33754257882196],[-124.77051043898034,54.33593709096344],[-124.76614406637226,54.33295387268621],[-124.76137736514401,54.32997537908427],[-124.75367415570113,54.3277820846774],[-124.74498096842048,54.32724476962313],[-124.74098940846255,54.32671073092165],[-124.73454505334539,54.32624070098122],[-124.72790374610399,54.326162540094394],[-124.72566225695923,54.32587028274553],[-124.71629845835136,54.32412315943465],[-124.70799647041655,54.32392782143474],[-124.70093713884131,54.325384993666894],[-124.69417930787986,54.327526011100474],[-124.68800469938881,54.32875894886978],[-124.68409766037783,54.328008891839346],[-124.68225749419832,54.32674344639854],[-124.67993968518915,54.3245139915745],[-124.67305297199024,54.32106091584163],[-124.66595461355092,54.31704058470097],[-124.66199107465201,54.314281953902544],[-124.65879651179412,54.31158542714649],[-124.6535727825832,54.30734303254802],[-124.64814553203598,54.304639410426354],[-124.6390729933099,54.30317623589132],[-124.63401216263222,54.30247434891973],[-124.62856434513218,54.300907638369615],[-124.62702277241037,54.298166126394264],[-124.62665839345013,54.29662073016779],[-124.62031274893559,54.29613673787606],[-124.61894961332872,54.29636321987334],[-124.61326656126744,54.29770545833498],[-124.60565180105749,54.29785142386296],[-124.59980292210025,54.29725555985208],[-124.59375638231683,54.296137388203405],[-124.5863465856501,54.29525399017069],[-124.58342445725016,54.29467337897452],[-124.57379305885866,54.292571498393045],[-124.56728858531746,54.29048778552928],[-124.55980571790143,54.287773818439106],[-124.555451561371,54.285015922709555],[-124.55120330591699,54.281452618127986],[-124.54346643526675,54.27685272950869],[-124.53736312141622,54.27442267782957],[-124.53502275786899,54.273561112002255],[-124.52832959672521,54.27129374951783],[-124.52367245229802,54.26979453187692],[-124.52047195954329,54.26846520660217],[-124.51881575081727,54.267432416682205],[-124.5162323053757,54.264793179284275],[-124.51637151697076,54.264346813025085],[-124.51705021089948,54.2621685352314],[-124.51884943021103,54.25921531612425],[-124.51995740155952,54.25664795449132],[-124.52196255796545,54.25351797227907],[-124.52367518050441,54.25038440531973],[-124.52445351332678,54.24970383637623],[-124.52714812960375,54.24663590905419],[-124.52804099459202,54.245329414379036],[-124.5335885370292,54.23902499647307],[-124.54062565901663,54.23186899285841],[-124.54734359770345,54.22584686740419],[-124.55637471831632,54.22133051676777],[-124.56624127928737,54.219260845442285],[-124.57761823235049,54.22062231587381],[-124.58198678161445,54.22280617146466],[-124.58572593682923,54.226765816218155],[-124.58811689197996,54.23014511708109],[-124.58964776460653,54.23260034171709],[-124.59207535364197,54.232673305762376],[-124.59968954898598,54.232644814604605],[-124.60573321018241,54.23221250284684],[-124.61109423552357,54.23286534678066],[-124.62042545005133,54.23530155401061],[-124.64532388636427,54.239623149967194],[-124.65722660447489,54.239728385927755],[-124.6642295755371,54.2405582954899],[-124.67424565962577,54.24241537553169],[-124.67899491264168,54.24494927727972],[-124.68325738048999,54.247809266499495],[-124.68908762632081,54.24977200578779],[-124.69623836316626,54.24648858981061],[-124.69959030307723,54.24313728762072],[-124.70272736900095,54.242686929957216],[-124.71049045593257,54.24630909808652],[-124.71600224958286,54.249638164867974],[-124.72437577056522,54.2520113469109],[-124.7325501286049,54.252885411685924],[-124.73471136729272,54.25215522233442],[-124.73941752171481,54.24971302394124],[-124.74529261002259,54.24625223189878],[-124.75294094306334,54.24262119745553],[-124.76036548590186,54.241272403137195],[-124.76689571516445,54.24100729827374],[-124.77322258903989,54.241886763736645],[-124.77762027345135,54.241949002496675],[-124.78250101408807,54.24128114472447],[-124.78622096435005,54.239804000466386],[-124.78935370510374,54.237362100183255],[-124.79014159809364,54.23724449827702],[-124.79749071780323,54.23207545042254],[-124.80231247377586,54.22809077095098],[-124.80701680020604,54.22388073487492],[-124.8105622348056,54.219838391559456],[-124.81628045297902,54.21237623928062],[-124.81990235012711,54.2093558955218],[-124.82965701159097,54.20738935345292],[-124.83823614020908,54.207292532558604],[-124.84465983505122,54.207873545408255],[-124.85226275293073,54.20806214074965],[-124.86443926779545,54.20905477135992],[-124.87309637972041,54.21004940600171],[-124.88310935283928,54.21377990857723],[-124.88776525685542,54.21841043962857],[-124.88822957978607,54.221147653975606],[-124.88722999402827,54.22400586974074],[-124.8900393338232,54.22817133294471],[-124.89762182826979,54.22984430700153],[-124.90698131194273,54.231801616089044],[-124.91553072635301,54.235354887641456],[-124.92212566913797,54.23841531723263],[-124.92293108837296,54.238789836666115],[-124.93003017998724,54.241433153357],[-124.94874839334902,54.24271657113172],[-124.95664387207268,54.2425516465022],[-124.9667821839694,54.24250386311937],[-124.9767214701285,54.243035979001846],[-124.98092719334171,54.24029362365005],[-124.98434333865767,54.23898713851786],[-124.98971680864571,54.2368814610578],[-124.99704829828623,54.2339225794212],[-125.00737686443209,54.23290528734645],[-125.01419906297343,54.23251282037339],[-125.01967063822268,54.23200155744868],[-125.02347571630779,54.229774216405104],[-125.02397127732499,54.225728159634194],[-125.02828102997935,54.221623069287425],[-125.03988323316283,54.220541542614],[-125.04455609348831,54.21991533319338],[-125.05197354037878,54.218262051699774],[-125.05811804166737,54.21375806185772],[-125.06299012908589,54.21108080252553],[-125.06747835225153,54.21107951174348],[-125.07925867790539,54.21285392520435],[-125.0902679502251,54.211996080186246],[-125.09992146429974,54.209147000116715],[-125.10295505793758,54.20817486988652],[-125.10596601705933,54.20469364927564],[-125.10411629646207,54.20070169268121],[-125.09721412914007,54.19590165246127],[-125.08776345044149,54.191789932690874],[-125.08154231809638,54.189673198279365],[-125.07453830776898,54.18755913183133],[-125.06732359917376,54.186643713194826],[-125.05993482258116,54.186640464691266],[-125.0419066135186,54.187037093888954],[-125.03188093654322,54.18811341332667],[-125.03041087308863,54.188567615164445],[-125.01872120265435,54.18981771497983],[-125.00947063777801,54.19054900266482],[-125.00704202877971,54.190600840669816],[-125.00422287328418,54.189009676591084],[-124.99938857982912,54.17866545057145],[-124.99551861332417,54.17107086965558],[-124.99513985530642,54.16833479738912],[-124.99418755304251,54.164563514425566],[-124.99428913317827,54.161652206935024],[-124.99206843636611,54.15765532190167],[-124.98429745002193,54.15342385388989],[-124.97342314367485,54.147525856311916],[-124.9658711550097,54.14021258465142],[-124.95899289619523,54.132447603827416],[-124.95580566268993,54.12986641212972],[-124.95036759378617,54.125930522455455],[-124.9439734019685,54.12043585306722],[-124.94137653401529,54.11523392560684],[-124.94041259673256,54.11335271683854],[-124.93909442228025,54.10615470569125],[-124.94236567186218,54.093942987481185],[-124.94413152126275,54.08961244705502],[-124.94900900885396,54.08402754864303],[-124.95185320477677,54.08002883845821],[-124.95604527725651,54.07541444344953],[-124.95799152009474,54.07295805024351],[-124.97146943750339,53.99846835905917],[-124.96166842431477,53.99047926874498],[-124.96022322336516,53.9840888626934],[-124.95614556943615,53.98089493268752],[-124.95323525797106,53.97992267631975],[-124.94945811758862,53.97878150211349],[-124.94634938560323,53.977810145711956],[-124.94441239164328,53.97524381259844],[-124.94228427039833,53.972390700954605],[-124.93830523889432,53.96902393373121],[-124.93453333786337,53.96713744190421],[-124.93307952663996,53.966626695870566],[-124.93269755959719,53.96662500371296],[-124.93366593879128,53.9634282895101],[-124.93366791604655,53.960971847039154],[-124.93105495422193,53.95920579715226],[-124.92533622265327,53.9570329069846],[-124.9239715283713,53.95663821358261],[-124.91942604886498,53.95578213354765],[-124.91613647082931,53.95480835096111],[-124.91371161433811,53.95406965399516],[-124.91071273268068,53.95367073158992],[-124.90819505368576,53.95298261077848],[-124.90538832102293,53.951673493376674],[-124.90345270544955,53.95093174705913],[-124.9014193139119,53.94984686868407],[-124.8992822088713,53.948645068551116],[-124.89657253946078,53.94772812181649],[-124.89560406748483,53.947388251301874],[-124.89385962255542,53.94579061550808],[-124.89221612274949,53.943848872179835],[-124.88651051828839,53.94247848588184],[-124.88438159874951,53.94213900732728],[-124.88369765482281,53.94144882923982],[-124.88156754010554,53.94002218096851],[-124.88050355837947,53.938137722030994],[-124.8783862592863,53.935681150040125],[-124.87790271243378,53.9337975789574],[-124.87809701727316,53.93225636935802],[-124.8787765271295,53.93197032651234],[-124.87917401242119,53.92968720711709],[-124.87781297946422,53.92637959531956],[-124.87434380368184,53.924267114836155],[-124.87007991240091,53.92164188957561],[-124.86873401084307,53.91781453181742],[-124.86757033968536,53.91627009494933],[-124.86507127265918,53.91221397800974],[-124.86575639469396,53.90947656906277],[-124.86903957271282,53.907707302295144],[-124.87301468840394,53.906857359963716],[-124.87387549418929,53.906624004275145],[-124.87388839861322,53.90445771180442],[-124.87331272399344,53.90149059325336],[-124.87303299969584,53.89886452920335],[-124.87408736539194,53.89823757020715],[-124.87990053928223,53.89480855930639],[-124.88579790365722,53.89161697290054],[-124.89431775073669,53.88842231562881],[-124.89596637634895,53.88779389993539],[-124.90225249693273,53.88596664891971],[-124.90487197543426,53.88436848082361],[-124.90468231867793,53.87882973811167],[-124.90420209581484,53.8750632649328],[-124.90352565825351,53.87238212574236],[-124.90333104061312,53.869354187924706],[-124.90632257051246,53.8668990796265],[-124.91213354974207,53.86678201720438],[-124.92015045249352,53.86918357954221],[-124.92460180970491,53.8727261954925],[-124.9278782188781,53.87751669773456],[-124.92924211972732,53.88139732832095],[-124.92942444298983,53.883793310966645],[-124.93020213078196,53.88379573933625],[-124.94316549516694,53.885561843347546],[-124.96066770941593,53.887611108209676],[-124.97024349816314,53.89200481510356],[-124.97420720201009,53.8939428862147],[-124.98310651150712,53.89742077107672],[-124.99308376026332,53.90180591454423],[-124.99628240228067,53.90328542405923],[-125.00130093476854,53.904597356773124],[-125.00721567841045,53.90545104881966],[-125.01543254945078,53.90510343576822],[-125.01997864441842,53.90383664604827],[-125.02211141829521,53.90332470905698],[-125.03380497157525,53.90171921118601],[-125.04714894264741,53.90061627348831],[-125.05015438353549,53.90061423591676],[-125.05847656856761,53.90094444812111],[-125.06882532409449,53.90139058078123],[-125.07589542149177,53.90109552148992],[-125.08313695393325,53.89993941085678],[-125.08874155179163,53.89828045001463],[-125.0949395688792,53.896669374367264],[-125.09888845121864,53.89535202318198],[-125.10323944843203,53.893059103666054],[-125.11009932885283,53.88967790231684],[-125.1157836416196,53.88630449413138],[-125.11886316881571,53.88275441349222],[-125.1160530430635,53.8786509616718],[-125.11061189383146,53.8756935341499],[-125.10306325109225,53.87364707992653],[-125.09377789131796,53.87297829692731],[-125.08759677190153,53.87258718053512],[-125.08565780346957,53.87202081219643],[-125.08082209913725,53.87008480206127],[-125.07840030591973,53.86723738461829],[-125.07654668909976,53.863528393568174],[-125.07460584237712,53.86170110159086],[-125.06976666385397,53.86067864765346],[-125.06860950473701,53.86062657128501],[-125.06232889773321,53.86000654554802],[-125.05662631482255,53.85944393280044],[-125.04888723670364,53.85796996847287],[-125.03864278753815,53.85678188638458],[-125.03139913783984,53.85633121268307],[-125.02761845097403,53.855080320047826],[-125.02480798125262,53.85080267321574],[-125.02509702479702,53.85017212545474],[-125.02586414412715,53.84669183843491],[-125.02285592182635,53.841784115688796],[-125.02188397980315,53.84035697402235],[-125.02294872176242,53.836530740820045],[-125.0269913595516,53.832360089412575],[-125.0295934132973,53.831156765429164],[-125.03809312520424,53.82846942197743],[-125.04571080640622,53.82634520891094],[-125.05671367542365,53.82062003524564],[-125.06189949487806,53.81684755963339],[-125.06383379664129,53.8141053446726],[-125.06690394844907,53.807535359271526],[-125.07161046893692,53.80193342917381],[-125.07257571656766,53.80096129710963],[-125.07535701842396,53.79701732629353],[-125.07940466068419,53.79358538657275],[-125.0822954356969,53.791528458011996],[-125.09203428941468,53.78939793120062],[-125.10196820471977,53.78875958579002],[-125.10813843466765,53.78766184245194],[-125.11564651725021,53.78587689383405],[-125.12382513856656,53.78038526338737],[-125.12215834674731,53.77501869813811],[-125.11462658158379,53.77229294460854],[-125.10758310297281,53.770246922054696],[-125.10080729794372,53.76569160456471],[-125.09393612778891,53.75999426753561],[-125.09220995352138,53.75896858892639],[-125.08601554414037,53.755097301344804],[-125.0752136820949,53.75340377343813],[-125.06586937499345,53.75318582167206],[-125.06374610930479,53.75296317072558],[-125.05871960771539,53.752054606150175],[-125.05255581979131,53.75103212726688],[-125.04502766649344,53.74853214118793],[-125.04173518496701,53.745624206858906],[-125.03990296596794,53.743342842924754],[-125.03681217614181,53.74094774174127],[-125.0338221126363,53.73946857174164],[-125.02630766022897,53.7378205254687],[-125.01840533693294,53.73782897720539],[-125.01223710178549,53.73840737831336],[-125.01097250665835,53.73726275094062],[-125.0077868766339,53.73447066419359],[-125.00616054530724,53.73321265514595],[-125.01020274351501,53.731273368619235],[-125.01463308006318,53.72960991079799],[-125.01172399607482,53.72670200109424],[-125.00622726161737,53.72402634468566],[-124.99968777795682,53.723691398027256],[-124.99390680485314,53.724034577799586],[-124.98464960188936,53.723015063510516],[-124.97540293041517,53.720964871642785],[-124.97010474467122,53.71960044286691],[-124.96086280465656,53.71680756500698],[-124.95488377367263,53.71355625180816],[-124.9501540455581,53.71139099267262],[-124.94447406127895,53.71139267846662],[-124.9420745503183,53.71139114921905],[-124.93523318304008,53.71048203477714],[-124.9303150549783,53.70683110949531],[-124.92733607690587,53.702202553903795],[-124.93186363678478,53.699123089689465],[-124.94244894146563,53.69660338448636],[-124.95303446442645,53.69523492647517],[-124.96141462895167,53.695227146011334],[-124.97103593476257,53.69413608703554],[-124.97585291984956,53.692704773367595],[-124.98201414210699,53.68842081244411],[-124.97941036232008,53.68254263802803],[-124.9731370985146,53.67843770676878],[-124.96755115771732,53.67358499223719],[-124.96351062727805,53.669480256742425],[-124.95985883989863,53.665025867381836],[-124.95657174485076,53.662400542150905],[-124.94859122423247,53.65823736025953],[-124.94204871028684,53.654246531765004],[-124.94194571420701,53.65374655049455],[-124.94185952076147,53.65333184830493],[-124.94183916794356,53.65331206843236],[-124.95050755020081,53.649492064957144],[-124.95035377622764,53.64950135547067],[-124.95030380145162,53.649453310915426],[-124.95027731165042,53.64945139388889],[-124.95026364554971,53.64916505197916],[-124.95026040342348,53.649143173997494],[-124.95024035986671,53.64903545328782],[-124.95022270141126,53.648983766519336],[-124.95016837720016,53.648882466893426],[-124.95023169105126,53.6487765970342],[-124.95025621694865,53.64870567989747],[-124.95027802244326,53.64851654688759],[-124.95029325732749,53.648362640021396],[-124.95041483856149,53.64835194725222],[-124.95049283271494,53.64834086347573],[-124.95079189380107,53.64828243386742],[-124.95086438489712,53.64826402442787],[-124.9510420889584,53.64820732729867],[-124.95105929934758,53.64820131210752],[-124.95132892169335,53.64810733064548],[-124.95138449683827,53.64808317147987],[-124.95151880898985,53.64801825191705],[-124.951532242989,53.64801164795086],[-124.9515861754183,53.64797739196339],[-124.95162884954637,53.64793855636351],[-124.95179086956446,53.647751214918635],[-124.95192962840899,53.64758439005551],[-124.95210642754141,53.647412296551565],[-124.95223464286045,53.6472879490107],[-124.95234421746856,53.647226728557776],[-124.95185900110536,53.6472258440526],[-124.9296999631019,53.647191756124506],[-124.92949715126447,53.64719161947508],[-124.9252491644384,53.64808620258322],[-124.92524974383649,53.647989864797346],[-124.92525111846375,53.64077926154913],[-124.92878372853977,53.640779546673805],[-124.93858938282605,53.64077947960612],[-124.93942136277846,53.640779573708464],[-124.93999370534183,53.6407795956352],[-124.94008848533115,53.640778758648324],[-124.94007993166042,53.64059271859774],[-124.93998089910801,53.64038738875983],[-124.93984962861938,53.64018290264234],[-124.93967429872515,53.63999706181776],[-124.93955987054512,53.63980112198338],[-124.93956633508846,53.639620816132094],[-124.93958818416293,53.639431684362734],[-124.93968540865605,53.63925946838993],[-124.9398603709703,53.63908569109207],[-124.94001947928919,53.63893922424717],[-124.94022408672485,53.63879203961184],[-124.94047540682588,53.638671034126155],[-124.94071223444345,53.638523578100525],[-124.94100616905332,53.63836597964346],[-124.94119870820342,53.638246128717455],[-124.94140308143277,53.63810790216532],[-124.94157757830949,53.63795205151764],[-124.94173690290536,53.637796622180566],[-124.9419583236552,53.63765854535297],[-124.94214776118012,53.63751122342548],[-124.94240049567998,53.637408706390644],[-124.9427437873615,53.63732211654151],[-124.94302807641601,53.63724565193248],[-124.9432803686578,53.637160497793836],[-124.94362388267187,53.637064945265216],[-124.94393851015592,53.63698761693587],[-124.94428178096001,53.63690158715201],[-124.9446433466494,53.636841474839954],[-124.94498784592184,53.63678177568923],[-124.94527357010624,53.63672324272929],[-124.9455576249232,53.63665572328884],[-124.94591583470097,53.63657821794323],[-124.94621550922982,53.63649235452408],[-124.94646702377308,53.63636237619372],[-124.94660948457505,53.6361983945784],[-124.9466298565754,53.63599132427477],[-124.94685149132789,53.635843713648434],[-124.94708593507563,53.63571414850118],[-124.9474945248662,53.63536597671055],[-124.94762371696588,53.63520186828732],[-124.94772112386781,53.63502068532694],[-124.94789436587234,53.63483791917383],[-124.94802188530582,53.63466484243319],[-124.94802674411943,53.634622314937],[-124.95062192535008,53.634579547908956],[-124.95268726776749,53.63458306794128],[-124.95258984420857,53.632115951145124],[-124.95249635947089,53.632065841466186],[-124.95224763395785,53.63193483420645],[-124.95221596268132,53.63191327193925],[-124.95203759638201,53.63177223292316],[-124.95179489369127,53.63162783417481],[-124.95158418582622,53.631492121588366],[-124.95134482597018,53.631365675456806],[-124.95132063479143,53.63134809491714],[-124.95110471016471,53.631193846832346],[-124.95087159792244,53.631045049065904],[-124.9506517614202,53.63089581152909],[-124.95063503570442,53.6308827773528],[-124.95026808141384,53.63055580259609],[-124.95002349759554,53.63041138357474],[-124.9498130264251,53.630266707617345],[-124.94960859099896,53.6301080763714],[-124.94959197835972,53.63009056195241],[-124.94941664726167,53.62990474357573],[-124.94940561905649,53.629891203559254],[-124.94927199153594,53.62970462167188],[-124.94915542735747,53.62951763373365],[-124.94904666615189,53.62932175199541],[-124.94890288168797,53.629162531563],[-124.94877306112744,53.62897542679243],[-124.9487621317201,53.62895797110933],[-124.94867802667689,53.62876118519669],[-124.94867457585079,53.6287477116446],[-124.94862377950129,53.628582585757904],[-124.9485147981179,53.62839566365004],[-124.94850755898825,53.628382156816805],[-124.948439941181,53.628207920900024],[-124.94833755883221,53.62798464326071],[-124.94826872364197,53.62778351000374],[-124.94818616550799,53.62760074507067],[-124.94817937694732,53.6275693178289],[-124.94817063532945,53.62738943299065],[-124.94811873658372,53.62719292947663],[-124.94811539865405,53.627174975802916],[-124.94810532597658,53.626972682761675],[-124.94806970118655,53.626807125173734],[-124.94801592348576,53.626610049391125],[-124.94794731730734,53.626399955638014],[-124.94787781093854,53.62622570261369],[-124.94781053708587,53.62603802588897],[-124.94772487221519,53.62582833765446],[-124.94765225537823,53.6256271705629],[-124.94759692501303,53.62541663754558],[-124.94755830394661,53.62521968569568],[-124.94750597414715,53.62504054660668],[-124.9474381405994,53.624875270082164],[-124.94736897686255,53.62468757634938],[-124.94736385809031,53.62466512587994],[-124.94734051757106,53.62446327150651],[-124.94730345459837,53.62427977645603],[-124.94724957107996,53.62408718022313],[-124.94724623377068,53.62406922650186],[-124.94723793338538,53.62387198541751],[-124.94718738817019,53.623697333888],[-124.94709983701398,53.62348763730337],[-124.94704606836841,53.623290551851866],[-124.94704261851847,53.623277078222024],[-124.94702061080824,53.623097640846424],[-124.94693182201695,53.62293722522671],[-124.94692647828738,53.62292373492912],[-124.94686065710485,53.62275399448989],[-124.94674991755815,53.62256257355358],[-124.94674268000654,53.62254906658062],[-124.94667328379543,53.622370888005385],[-124.9466699468701,53.62235293425513],[-124.94662812281227,53.62213299246337],[-124.94658784067948,53.621927072113095],[-124.94656283701434,53.62171624047849],[-124.94654327331057,53.62128924370329],[-124.94651960040528,53.62110082920495],[-124.94652613084791,53.620916597003095],[-124.94652646906883,53.62090315668226],[-124.94652536439759,53.62087177926466],[-124.94652024654428,53.620849328723345],[-124.94651702254693,53.62082689485036],[-124.94650257097284,53.62072370236468],[-124.94647878582612,53.62053976792119],[-124.94644339821185,53.62036525814898],[-124.94636788839011,53.6202043941231],[-124.94611341595385,53.61985374812563],[-124.9459984487258,53.61968021334688],[-124.94578984060188,53.619539461961715],[-124.94576944617131,53.619521913574424],[-124.94557878636918,53.61934547106357],[-124.94556397462155,53.619331897266264],[-124.94543930230768,53.61916780320503],[-124.94527127206517,53.61899547602235],[-124.9452456623026,53.61895940150486],[-124.94517841192413,53.61877172273105],[-124.94509399130116,53.618588938287616],[-124.94508754518647,53.61854407042203],[-124.9451079161239,53.6183369988541],[-124.94511215513731,53.61831911179441],[-124.94517755200636,53.61812924118791],[-124.94521252190329,53.617944139147774],[-124.94521664795982,53.61793073219275],[-124.94534933264573,53.61755100744012],[-124.94536127313066,53.61752815146865],[-124.94548718115647,53.61734217468726],[-124.94560005793372,53.617147120749905],[-124.94572597796785,53.61696057919328],[-124.94582513150827,53.616783893192306],[-124.9459471493387,53.61660179812927],[-124.94609936573377,53.616423894319766],[-124.94620989249503,53.61624674351791],[-124.94633980566246,53.616051838855505],[-124.94646526794861,53.615883225860465],[-124.94656195881235,53.61572891412245],[-124.94667615629605,53.61555627629158],[-124.94668976368233,53.61554239706912],[-124.94685132839818,53.61536905567195],[-124.9469189224037,53.615241938857515],[-124.94692884112186,53.61522410169772],[-124.94694267390263,53.61520125324826],[-124.94695450016867,53.61518287721354],[-124.94697401370492,53.6151600787458],[-124.94699163340121,53.615137272573556],[-124.94710491223054,53.615001030773605],[-124.94728766860106,53.61481331161483],[-124.947430390754,53.61463588719031],[-124.94758259370073,53.614457981347606],[-124.94769099024717,53.61428977262047],[-124.94770848262893,53.614272001989875],[-124.94786769436534,53.61411656296155],[-124.94789668859939,53.61409329203527],[-124.94811796369585,53.61395520245359],[-124.94816780079223,53.613931550041855],[-124.94846017036649,53.6138282576307],[-124.94869347369887,53.613739000285655],[-124.94885746055449,53.61361945079088],[-124.94904888347175,53.613463172854814],[-124.94907585646374,53.61344492962655],[-124.94911420470108,53.61342622166376],[-124.94937391510395,53.61334112035151],[-124.94960443826947,53.613211506848444],[-124.9497725445783,53.61307854893962],[-124.94985629918006,53.612910686621206],[-124.94993090880942,53.61272985631752],[-124.94993564181388,53.61254112654185],[-124.9498970355549,53.61234361884805],[-124.94984660530133,53.61216449643081],[-124.9497810139301,53.611985796577564],[-124.94969212597248,53.611829853424275],[-124.9496905696596,53.611816396424565],[-124.94968521230085,53.61180347068336],[-124.94966884558539,53.6117764403509],[-124.94965970157952,53.611763472409976],[-124.94957415163357,53.61162549186243],[-124.94956535879675,53.611598527995746],[-124.94955634118928,53.61158052438275],[-124.94954732358956,53.611562520768985],[-124.94948962799468,53.61144662560232],[-124.94935394071442,53.61126898599949],[-124.94919752532351,53.611087247708284],[-124.94902405649682,53.61090592403306],[-124.94900756416756,53.61088392926408],[-124.94891322593494,53.61071898427466],[-124.94878845389337,53.61055936427643],[-124.94877932437232,53.61054584072554],[-124.9486869936601,53.6103764320385],[-124.94853782049047,53.610208199742154],[-124.94852489043626,53.610195198432024],[-124.9484064905357,53.6100081915995],[-124.94830726421976,53.6098118352474],[-124.94820768729056,53.609629474722134],[-124.94811157446205,53.609460023281],[-124.94800041414615,53.60928652295433],[-124.94787990070853,53.609108459144835],[-124.94778089018187,53.608903697556336],[-124.9477722116458,53.60887225339613],[-124.94774820250038,53.60869727855099],[-124.94773052837432,53.60857165173202],[-124.9477291979696,53.608549234425666],[-124.94772597427156,53.60852680046941],[-124.94772464387067,53.60850438316239],[-124.94772520676395,53.608481982505175],[-124.94772983642565,53.608297741570965],[-124.94775543302646,53.608108074641144],[-124.94776356899719,53.608085740576975],[-124.94777539289369,53.608067364405954],[-124.94792377001389,53.60788997987551],[-124.94797238181516,53.607839439001204],[-124.94798988556444,53.60782110378436],[-124.94801128814369,53.60779833068272],[-124.94802689859763,53.607779978814854],[-124.94804450066032,53.60775772795324],[-124.9480757212701,53.607721033166335],[-124.94821485446109,53.607534613720446],[-124.94835008764638,53.607352631992256],[-124.94849043666657,53.607193109644015],[-124.94863124870089,53.60701510208308],[-124.94864875181719,53.60699676676349],[-124.94884258656595,53.60681866917585],[-124.9490045726318,53.60662683919375],[-124.94916965493901,53.60646248754811],[-124.94935936141826,53.60629779624018],[-124.94937095954135,53.60628837121172],[-124.94957336903462,53.60614563210811],[-124.94983154127685,53.605817980068565],[-124.94984135833315,53.60580405823759],[-124.95002204266409,53.605621362195784],[-124.9504091390606,53.60528698927957],[-124.95062334807245,53.60512642742162],[-124.9507879691474,53.60497999400237],[-124.95095528167886,53.60480166041875],[-124.9510973933654,53.60464662262114],[-124.9512630206022,53.604459867238646],[-124.95145127948264,53.60427667081198],[-124.95146486771316,53.60426334651842],[-124.95164832931275,53.60412043787455],[-124.95181294285013,53.60397400298294],[-124.95195527255663,53.603810012784116],[-124.95210494948196,53.603655040056104],[-124.9522171981299,53.6034823794791],[-124.9522613656044,53.60330632638251],[-124.9522663250976,53.60310807993397],[-124.95227338784312,53.60290144529186],[-124.95229371564673,53.60269437113672],[-124.95231582420146,53.6024917936843],[-124.95235264228768,53.60230671387609],[-124.95235758733428,53.602109022878075],[-124.95238114001681,53.60192438253304],[-124.95241806937416,53.60173482251154],[-124.95242263975949,53.60170349462169],[-124.95242700014241,53.60168056253026],[-124.95242945341526,53.6016581783616],[-124.95243569265578,53.60163582734335],[-124.95244005280041,53.601612904210995],[-124.95245332974878,53.601536276630036],[-124.95246146193801,53.601513942184404],[-124.95256123687048,53.60130980405647],[-124.95257695472895,53.6012869803554],[-124.9525982396616,53.60126867755977],[-124.95261562637991,53.601254830725445],[-124.95283659407202,53.601125691971035],[-124.95288639912619,53.601102601965295],[-124.95321088988166,53.60099789450713],[-124.953508388063,53.600912550532165],[-124.95352933636228,53.60090769698217],[-124.95383966425656,53.60083926865351],[-124.95414072195501,53.600762925470555],[-124.95469963210523,53.60059640700497],[-124.95471679445433,53.600591511207],[-124.95497585498677,53.60052879804261],[-124.95522077707462,53.6004256306827],[-124.95542256555781,53.60030584660039],[-124.95561512578318,53.60017645473824],[-124.95580277406893,53.60001620744665],[-124.95583598671178,53.599975046881916],[-124.95586907353253,53.59993893096207],[-124.95586197418956,53.59976802142816],[-124.95586834830914,53.59958827617778],[-124.9558734998078,53.599381624493894],[-124.95587006866268,53.59929141626239],[-124.95578798050617,53.599090724793946],[-124.95577206159038,53.599045774523375],[-124.95536487110968,53.59745701846263],[-124.9552944947706,53.59724242965291],[-124.95522879177875,53.59706821181769],[-124.95507645526952,53.59672407429361],[-124.95507120994036,53.59670666855016],[-124.95505095557576,53.596607906606714],[-124.95504594788133,53.596580976039185],[-124.95504082842925,53.596558525632155],[-124.9550305895415,53.59651362481674],[-124.95502736285952,53.59649119094268],[-124.95501210249026,53.596419915094025],[-124.95499318230648,53.596343570470225],[-124.95497048406648,53.596191013489126],[-124.95493341246262,53.596007527575054],[-124.95489544718508,53.59585987397259],[-124.95489400157199,53.59584193678736],[-124.95487790527218,53.59550067391979],[-124.95488607797206,53.59532486059483],[-124.95489779108384,53.5952347755112],[-124.95490803699194,53.59520349704904],[-124.95498750283947,53.59505351745216],[-124.95501769545422,53.59498151835072],[-124.95518698248458,53.594645791302014],[-124.95528960516731,53.59447808918843],[-124.95544461366754,53.59425930236987],[-124.95549786570031,53.59417350541547],[-124.9555929294892,53.59400517239895],[-124.95565660730935,53.593880821034794],[-124.95284153129965,53.59388533719959],[-124.9513610985988,53.5938880516961],[-124.95411929098083,53.590020324333906],[-124.95363789531697,53.58807408961946],[-124.95210983719815,53.58499447765966],[-124.95066142240461,53.582370942336745],[-124.94960408514449,53.57985611962933],[-124.94720775630162,53.57460438566401],[-124.94259406143655,53.56667675992944],[-124.93971238258075,53.55913959456831],[-124.88165828890735,53.55886532803123],[-124.87023669290441,53.55538236715284],[-124.84058454551715,53.55577615714168],[-124.81974233316943,53.56192946986956],[-124.80410769744995,53.56305740672589],[-124.78433121103377,53.562418719667974],[-124.76486315318688,53.561088121632906],[-124.75689003507635,53.55999714026601],[-124.75018524124883,53.55901356739812],[-124.74500376954657,53.558208064316275],[-124.74029766634405,53.55820729087724],[-124.73635972557211,53.55882728445286],[-124.73099955578688,53.55893518081568],[-124.72657411245754,53.55915699430111],[-124.72080898264106,53.56211928370674],[-124.71589830382527,53.56433535862885],[-124.7091816185231,53.56472740494453],[-124.70312795022919,53.56472013380015],[-124.69737882584023,53.56465313489377],[-124.69152026459012,53.564698374264474],[-124.68844884252123,53.565152071761396],[-124.68566675379274,53.565547252497375],[-124.68229875747784,53.566283226303035],[-124.67913284377887,53.56684656158399],[-124.67817072201642,53.56615866543717],[-124.6721222814684,53.565978466917144],[-124.67031575196111,53.56471812888415],[-124.67060509559903,53.56466196753268],[-124.66830643679342,53.5631748435977],[-124.66168769293527,53.56191051602847],[-124.65756837550296,53.56058315806166],[-124.65441103827011,53.55852424043788],[-124.6515520424904,53.555667525603525],[-124.65023137103249,53.55297825326828],[-124.64927865582489,53.551553002612565],[-124.64584250096098,53.549259885497],[-124.63932711630632,53.54816126010122],[-124.63683981879103,53.54741921641576],[-124.63358076499321,53.54575741401875],[-124.63147772552554,53.544837024881616],[-124.62927796250213,53.5431760248393],[-124.62824090250322,53.54112051306923],[-124.62527565294315,53.539288181465224],[-124.62250760810208,53.538367257642314],[-124.62089463622186,53.53682097085584],[-124.62030839497851,53.536250637234254],[-124.61791691187871,53.53538604587047],[-124.61418888673568,53.53423645130758],[-124.61083138258934,53.534234975951264],[-124.60757435965279,53.53485136745334],[-124.6038275525592,53.53563897152947],[-124.6002638066872,53.53592217928371],[-124.5964339820154,53.53556744588502],[-124.59366304265774,53.53475840499112],[-124.59051009943545,53.53406859203377],[-124.5895498244767,53.533840459718355],[-124.58619289964558,53.53337332549038],[-124.58417608190678,53.533083339213384],[-124.58198143909985,53.53268587902582],[-124.58201922067862,53.53291041122529],[-124.58325424867022,53.53485330605995],[-124.5849637571996,53.53708191102132],[-124.58466356235927,53.53925476402782],[-124.58168452809421,53.54102049050741],[-124.57802850823137,53.54266829611914],[-124.57272831116715,53.54505655699108],[-124.57051597215495,53.54693817243736],[-124.52972177686728,53.53806227633034],[-124.52390039693253,53.53456474205967],[-124.48789990116298,53.52711549063481],[-124.46326772239154,53.515919095291146],[-124.44240649133556,53.51220158620829],[-124.43243459657667,53.51205984357704],[-124.4230437019854,53.511744546642596],[-124.41557235151144,53.51103942501628],[-124.39797067326853,53.50921282711073],[-124.38543178243968,53.507053866336555],[-124.38133325824718,53.50476071341688],[-124.38596625090219,53.50140929907503],[-124.39292005472507,53.49623287665008],[-124.3963107177429,53.49173150585608],[-124.39598680805,53.48636666517029],[-124.39488359353506,53.48242277697987],[-124.39622619466319,53.4816805683321],[-124.39715869001814,53.474662478848764],[-124.39559058631487,53.46826511383925],[-124.39227674588031,53.464886943727436],[-124.38427744704313,53.46086146933132],[-124.37054098876689,53.45687928222409],[-124.35376470548013,53.45001968367617],[-124.3374570582116,53.445566619604904],[-124.32261559715732,53.445680242315994],[-124.30862372905267,53.44830796824185],[-124.29593991910906,53.45288237650285],[-124.28475449645362,53.45951701888168],[-124.28275024574397,53.46607256636757],[-124.28180933798964,53.47172510562935],[-124.27842237910296,53.47513596368133],[-124.27534742627728,53.475349261484155],[-124.27106150026604,53.47379013816944],[-124.26832853853234,53.47120457327289],[-124.26492363159608,53.46771047053935],[-124.26054314678308,53.465180281394446],[-124.25792756262946,53.460885054369854],[-124.24936748773716,53.45650483983974],[-124.24193496296473,53.44722574317171],[-124.23337999426734,53.44318782732464],[-124.22008337521332,53.43604674891428],[-124.21256774423064,53.43321789454838],[-124.20531959928472,53.43192275980073],[-124.19068848847743,53.43179445221615],[-124.18236620635957,53.43198097863008],[-124.1685775007589,53.432257263865864],[-124.16263877784928,53.4327972827657],[-124.15562891562335,53.43401578146276],[-124.15236017916735,53.4352560916889],[-124.14909884646126,53.435980941658315],[-124.14410981433922,53.43652639810476],[-124.13867366079597,53.43557815173918],[-124.13649352228116,53.435056031080805],[-124.12846772018908,53.43398272892627],[-124.11654298694452,53.43203427005257],[-124.11225462867604,53.43075328986046],[-124.09756372149168,53.42861558850053],[-124.09160601315473,53.42989420832692],[-124.08920593037955,53.43091026824812],[-124.08536807397196,53.43168521838997],[-124.07702973698503,53.432205928243135],[-124.07387993333722,53.43178858543686],[-124.06843199322033,53.431470081308646],[-124.05983637594328,53.43102108995824],[-124.0524536403699,53.43142957243442],[-124.04701644558894,53.43608154738383],[-124.04059586709162,53.4423762714204],[-124.03288631223654,53.44552777194568],[-124.02066234855158,53.44898771958581],[-123.99991231397826,53.45707495544681],[-123.99688376223106,53.458523567953506],[-123.99555527540532,53.458833521774764],[-123.9898361656515,53.4593844026177],[-123.98048424196784,53.460112235372435],[-123.96989959358089,53.4610301540956],[-123.96269665870273,53.460401279432936],[-123.95998618574161,53.45993185687624],[-123.95752145487494,53.462485182456604],[-123.9524945380113,53.465544188038585],[-123.94571791608645,53.46823103345428],[-123.93455219300111,53.471383983179145],[-123.92661811360259,53.47391187107251],[-123.92395541997081,53.474299254894454],[-123.908240585757,53.47620776445569],[-123.88956507580399,53.4762731997495],[-123.87563004502381,53.473111870602956],[-123.86655704508198,53.46913265901437],[-123.85514299001363,53.4687373408077],[-123.85013547264208,53.468301404855296],[-123.84960427217327,53.46687576103613],[-123.84397239729539,53.463012814347756],[-123.83947695872332,53.46291293519462],[-123.82815183383902,53.46463035470799],[-123.81455270919649,53.466780807706975],[-123.80866415868934,53.467899395102435],[-123.8056851206809,53.465651819627816],[-123.79947063085373,53.461168507997705],[-123.79587762502446,53.455385618307524],[-123.79105927210556,53.45225237604869],[-123.78155161823234,53.4467273762448],[-123.77228140971967,53.44274988746133],[-123.76679570792365,53.43945179780214],[-123.7577145508426,53.43255079012237],[-123.74790102368888,53.42416465436188],[-123.74075887370927,53.42032394274371],[-123.72791894355477,53.422279829794526],[-123.71529430309722,53.42469354239014],[-123.7020309943176,53.42551156181574],[-123.6832895677855,53.42331082281638],[-123.6664922511104,53.42200043270141],[-123.64544948089033,53.414336973770986],[-123.62449611788976,53.40896194272359],[-123.60518597582137,53.40687127263076],[-123.59774429003429,53.40960428777966],[-123.58624468917345,53.41415570661772],[-123.5720208193485,53.41514824936341],[-123.55270979401446,53.41539403693425],[-123.5313916955192,53.41538267790686],[-123.51377488022068,53.41503178911675],[-123.49640248840073,53.41336518490678],[-123.48995886227297,53.41212423642297],[-123.4868548020961,53.40827270041919],[-123.48653075905513,53.404102028493845],[-123.48713613014057,53.39952277268096],[-123.48558207672197,53.39347537444597],[-123.48575515828304,53.387297423496605],[-123.48459687511685,53.378674466764316],[-123.48015517913556,53.374554999505314],[-123.47234686448918,53.369789328867505],[-123.46526758497033,53.36095258265368],[-123.46103653248588,53.35739952201064],[-123.45266007414052,53.355389171096775],[-123.43732841581803,53.35379851215729],[-123.42514511539194,53.35223148904437],[-123.41488686912844,53.350977490454206],[-123.40823979460816,53.348825516611946],[-123.39322474885255,53.34534309087677],[-123.37761268368327,53.34060059041298],[-123.36784139617077,53.339571786704425],[-123.35824518062614,53.341282606706166],[-123.34293562052336,53.343050044906825],[-123.33326771046707,53.34253135772542],[-123.31655840744332,53.33928689847357],[-123.29275938435212,53.33507933761528],[-123.24619059419801,53.33208747219923],[-123.21791105419905,53.33112140647047],[-123.19893992797411,53.32833404811629],[-123.17395472321763,53.32252366572792],[-123.16147431313466,53.31578471912617],[-123.14597742599804,53.303409476669735],[-123.13955123303315,53.29186531808849],[-123.13875969842492,53.29044693304099],[-123.1370957638221,53.28880399763328],[-123.13207328896539,53.28964867837386],[-123.1281659548207,53.289801986966424],[-123.12646020229005,53.29010436511991],[-123.12549670054679,53.29011242736134],[-123.11930884598789,53.29016925844901],[-123.11596229623684,53.29026121928689],[-123.11159477579417,53.2907604822551],[-123.10721699268916,53.29096893080155],[-123.10389481100661,53.291800049523744],[-123.09879334785644,53.29355805578925],[-123.09643401557565,53.2943867249903],[-123.0893968517641,53.2914756590836],[-123.0863371076782,53.29133330507024],[-123.08174796603821,53.29046089202415],[-123.07466169673418,53.289148888607166],[-123.07177955731225,53.28883505545957],[-123.06646252249891,53.28956656630769],[-123.06381329103182,53.290446296106545],[-123.06162818344623,53.290925948227695],[-123.05850171842093,53.291525758637896],[-123.0568303617964,53.29348246285608],[-123.05527538431728,53.296356449305044],[-123.05400522999174,53.298597220523135],[-123.05357618139207,53.300429970558504],[-123.05233311056281,53.30055777656868],[-123.04822301036376,53.30036145669197],[-123.0465975912575,53.300146105644394],[-123.04401723770795,53.29959803463989],[-123.04187573966549,53.2977293069174],[-123.0396581378085,53.29694741829672],[-123.03704179845653,53.29520186982656],[-123.03319427100945,53.29363404079643],[-123.03137566449716,53.29381619224549],[-123.03015448889744,53.29406204832819],[-123.02734843238893,53.29288113858006],[-123.02447983774641,53.29216225722909],[-123.02386306592324,53.29045360890921],[-123.02126988289324,53.289673149731016],[-123.01906259798673,53.28918209859586],[-123.01818719401922,53.28815596063227],[-123.01645493231635,53.2875450332309],[-123.01452750997672,53.28692861311011],[-123.01391795641185,53.285337251937925],[-123.01747352464083,53.28250226597363],[-123.01822963376641,53.281808673550664],[-123.0158203532232,53.28120201747629],[-123.01325610017383,53.28151033204351],[-123.01123661787459,53.28049906620901],[-123.01102065778227,53.27930053227718],[-123.01032008646534,53.27793559852957],[-123.00754092942118,53.277670420317804],[-123.00496805507521,53.27746645064199],[-123.00113762985787,53.27675464038529],[-122.99763266151571,53.27781255512242],[-122.9966334992235,53.279592064830176],[-122.99550368082403,53.280458843723125],[-122.99199940766093,53.28128955211866],[-122.98965197403032,53.283194606732096],[-122.98519347074111,53.283688618998525],[-122.98221945926268,53.2831992408344],[-122.97782379527834,53.282604616512536],[-122.97353610883016,53.28281323497206],[-122.96847677254415,53.28245363491451],[-122.96397316529179,53.281689780390536],[-122.96222899814703,53.284391903127904],[-122.96596936178553,53.285730065281854],[-122.96743886672698,53.28726463786933],[-122.96750433185832,53.290121275231975],[-122.9693507241616,53.29164919007986],[-122.9700456150145,53.293078146656654],[-122.96874663231121,53.29440125253281],[-122.96704783465944,53.2952139985115],[-122.96501026192453,53.29780549985495],[-122.96334654677759,53.300218138275575],[-122.96026129850567,53.298753179847544],[-122.95791262393149,53.29626023513601],[-122.95467251657921,53.296112662515235],[-122.95288281927901,53.297553649880584],[-122.94877991650138,53.29747291824432],[-122.94848829856632,53.29713518502099],[-122.94414360878095,53.29436856988369],[-122.94112801894607,53.296107501121526],[-122.93778939842485,53.296073558446004],[-122.93273777662493,53.296002549376475],[-122.92951840575516,53.29722458678662],[-122.92619445551767,53.29822684211448],[-122.92012020460196,53.29958324429461],[-122.91499719755306,53.300481877085225],[-122.90966469900445,53.30115504886441],[-122.90782434135438,53.30408327973487],[-122.90739003818264,53.306310249858825],[-122.90651105264998,53.309467592848755],[-122.90359253541699,53.311487944834894],[-122.89932293087362,53.3128359998249],[-122.89382686685532,53.314477597903384],[-122.89000169005347,53.31387508740918],[-122.88887745484642,53.310339038133066],[-122.88794437888785,53.30645922359998],[-122.88540329115241,53.303564977716206],[-122.87970331696012,53.30491909016454],[-122.87728373931827,53.30791297323286],[-122.8736203525079,53.31062063709349],[-122.87508961335695,53.31232908711991],[-122.87896539568933,53.31549749262093],[-122.88272812789246,53.31775894884357],[-122.88562545061261,53.31950976602264],[-122.88708485863958,53.32115834709992],[-122.88713055653976,53.3229862878183],[-122.88629034175602,53.32396286353913],[-122.88365811786487,53.326157910988],[-122.88238566879639,53.32422095250514],[-122.88138637347818,53.32205397850907],[-122.87923006343624,53.319040779969704],[-122.8752507606393,53.3156392213354],[-122.87119135283643,53.313325401965784],[-122.86673773853089,53.31004165620476],[-122.8657639649935,53.308964069726265],[-122.86252357788999,53.304358620647136],[-122.86124589837652,53.30231133426542],[-122.858867474461,53.29786702616002],[-122.85589462659402,53.2921167024107],[-122.85426300473114,53.28715711123111],[-122.85229494964987,53.28368678788084],[-122.85100114654516,53.281064179775285],[-122.84722589991269,53.278230398124855],[-122.84230695016211,53.27500662035415],[-122.84018674677016,53.27399020191006],[-122.83622536199387,53.271449937010466],[-122.82802493409615,53.266080049389075],[-122.82265748044348,53.26405679119587],[-122.81635899126344,53.26381609692146],[-122.80910861582694,53.26363413366452],[-122.80339464394116,53.26361986873441],[-122.80062814948155,53.26380769151989],[-122.79464145046227,53.2640172392638],[-122.7889701156933,53.262057652941806],[-122.78731693882828,53.26006708263483],[-122.78388582350087,53.25437442432177],[-122.77681414357333,53.24813184778062],[-122.76964582374325,53.24160743660431],[-122.76457931045006,53.23455391845708],[-122.76122014263069,53.227597263716554],[-122.75947545858607,53.22115343583116],[-122.75704169944851,53.212537880515484],[-122.750066908756,53.20498089721799],[-122.74382538685487,53.19690410983467],[-122.73790699005507,53.19031290112207],[-122.73112749370931,53.183038617907656],[-122.72700029251166,53.17546207644144],[-122.72065069952646,53.165213210645646],[-122.71559878274552,53.1583854791399],[-122.70832607837245,53.15043014086324],[-122.69909443951549,53.143397068042994],[-122.69265441142323,53.13886627685169],[-122.6842251547109,53.134287713253926],[-122.6757307500431,53.131707130836375],[-122.66478178774584,53.13022600878065],[-122.655549246201,53.129421679558504],[-122.65002665919737,53.12853731751206],[-122.63956520184328,53.1271668916252],[-122.63347682328941,53.127371635023934],[-122.62376211899546,53.12548208496813],[-122.61411972613362,53.121760904324454],[-122.6090275746716,53.1179564336595],[-122.60591140296636,53.11905710547059],[-122.6049687254056,53.11940972109419],[-122.60300162324818,53.12113335187107],[-122.60197238803346,53.122563678758716],[-122.59942644967367,53.123837627168086],[-122.59754152230774,53.124533237429354],[-122.59593814529323,53.125455673318655],[-122.59292731966481,53.12747157304475],[-122.58942461113217,53.12851694632306],[-122.5836624012484,53.13117503246024],[-122.58000431998484,53.13450790081084],[-122.58021181817314,53.13565188929197],[-122.58157018550891,53.137586889981954],[-122.58158869944438,53.13884319733816],[-122.58160590061985,53.13993007703772],[-122.57856598044691,53.14080009024992],[-122.57574133368679,53.14178843618128],[-122.57367284012973,53.1436247884715],[-122.57329993916409,53.1439695681268],[-122.5702719378209,53.14524185942185],[-122.5678119529865,53.14616657082194],[-122.56593198052794,53.1478910463621],[-122.56481536217092,53.14926525937156],[-122.56225646723439,53.1497411071895],[-122.55920095985276,53.149128389397696],[-122.55654755215006,53.14873706455341],[-122.55329612714513,53.14795302312976],[-122.55017064096769,53.14893762507056],[-122.54858166650963,53.15094628381244],[-122.5444152788365,53.1519968270004],[-122.54298986369527,53.15199891373674],[-122.53986639375131,53.15258509657716],[-122.53656970350153,53.15528622728513],[-122.53318451752857,53.158329622100524],[-122.52806303150898,53.158753725895814],[-122.52435416024741,53.15860272299354],[-122.51998163137333,53.158676064236175],[-122.5156408008429,53.161096898704386],[-122.51197406705984,53.16425426951604],[-122.50686426116054,53.167250593182416],[-122.50488824158982,53.168460376016625],[-122.50469643053285,53.169146836314916],[-122.50500445159365,53.170686584584296],[-122.50321903313463,53.17194853159228],[-122.50247464843329,53.17332648688211],[-122.50117618974843,53.174143434645146],[-122.49982974677116,53.174995411563906],[-122.4965938267911,53.17546052269066],[-122.49557233675678,53.176555968127246],[-122.49520335505964,53.177928731482325],[-122.4948369633246,53.17872667058588],[-122.49551331278731,53.17998513009508],[-122.49552905882972,53.18124421379765],[-122.49430231605638,53.18227803958239],[-122.49204033882725,53.183483088794205],[-122.49053137261323,53.18520176276061],[-122.48805309774201,53.18412707450331],[-122.48557365341445,53.18397101466785],[-122.48263024028007,53.183977796613206],[-122.47968021156164,53.18370330902992],[-122.47888774719387,53.182221426756904],[-122.47554966815567,53.18138056117241],[-122.47203891186689,53.182250773126434],[-122.47016782258173,53.18380136644356],[-122.46988276767195,53.1839785138686],[-122.46903247398365,53.185350329320535],[-122.46693115273463,53.18444234845065],[-122.46625764194229,53.18387761805029],[-122.46570086581913,53.184790384434],[-122.46647079025782,53.18581849231954],[-122.46515820030001,53.18679114292331],[-122.46211066039731,53.18732154966898],[-122.459659268769,53.18915976818138],[-122.45671565013026,53.18934315333543],[-122.45654682037954,53.190998909560825],[-122.45703821724858,53.1924820375471],[-122.45295417025852,53.19300923796243],[-122.45133383009438,53.19370553938156],[-122.45020572917088,53.19462018292273],[-122.44794231630084,53.19617608192593],[-122.44795246770099,53.197484950233914],[-122.44521785100426,53.19892570156909],[-122.44330573546208,53.19933661379949],[-122.44122877272211,53.19974254986488],[-122.44114462467135,53.20145524220952],[-122.44088419012448,53.204369116237544],[-122.43968157725203,53.20723166803632],[-122.43867576152842,53.21060941930541],[-122.43679659194954,53.213472908504684],[-122.43615853785789,53.21587116374719],[-122.4362505293474,53.21638378897275],[-122.43502009514458,53.217075355051406],[-122.4346623258992,53.218109535676625],[-122.43304207142367,53.21914552011323],[-122.43305037036306,53.22011499514747],[-122.42877100760182,53.22007242219802],[-122.42649142175607,53.2201949290035],[-122.42423990679369,53.22069572826227],[-122.42364194228648,53.22083584782824],[-122.42088742799665,53.22124174917639],[-122.41554228044131,53.22012041627876],[-122.4134399743852,53.21903929889269],[-122.41028926158201,53.217741270418394],[-122.40837196288254,53.216431203299685],[-122.4050161620038,53.214898508715365],[-122.4043292964301,53.212905505830705],[-122.40182543987696,53.20913699272791],[-122.39981192209017,53.207376786705744],[-122.39636527934148,53.20515954129312],[-122.39169283204849,53.20357961495993],[-122.38862989869294,53.202154043584535],[-122.38355083554276,53.197433678670436],[-122.38028423766366,53.194185374491504],[-122.38008743034779,53.19332675251028],[-122.37665648879027,53.1930534973361],[-122.37189875191889,53.19301545524271],[-122.36866488950204,53.19359557381236],[-122.36591548011806,53.1936059844002],[-122.36162850877338,53.193157920536486],[-122.35914785077333,53.19196650801642],[-122.35694859379578,53.19134519939801],[-122.35474923535212,53.190551633245235],[-122.35189234773053,53.188503132537114],[-122.34959839190468,53.188112108251254],[-122.34758950756873,53.187203110728035],[-122.34588197771696,53.186978187043984],[-122.34492475691715,53.186412368637725],[-122.34282581296927,53.18515777178837],[-122.33967011174506,53.18414305941091],[-122.33862767758283,53.18300238661811],[-122.33773354675462,53.17997703141677],[-122.33620513846105,53.17820873419065],[-122.33295434264082,53.17604767086528],[-122.32885887630017,53.17531932403661],[-122.32544012746176,53.17527040809087],[-122.32183117052077,53.175164428697656],[-122.31953829033661,53.17459948256333],[-122.31686491602228,53.173922238385515],[-122.31354105576668,53.173474840552046],[-122.3134406954799,53.17290402491085],[-122.31246881262389,53.17096535714737],[-122.3100862310569,53.170228009832165],[-122.30800434469273,53.1710336614849],[-122.30583768232366,53.17332429758857],[-122.30537251142792,53.17486811756858],[-122.30517749297248,53.175038168494616],[-122.30500240058021,53.1766981932567],[-122.30492747789354,53.178586285003924],[-122.30168900542769,53.17956270223989],[-122.30008195570377,53.18042570343374],[-122.30085805011542,53.18150906087082],[-122.29847012459332,53.181514041004625],[-122.29608731439971,53.18060364384523],[-122.29408952027583,53.18026958329784],[-122.29267292354922,53.18032842343021],[-122.29009466923561,53.18010737098516],[-122.28839257200248,53.18051061580561],[-122.28658037856452,53.18011549802836],[-122.28582409519007,53.18086196207206],[-122.2835512017311,53.181779017187395],[-122.28125812573086,53.18172941119525],[-122.27841925071942,53.18293319358258],[-122.27766252723553,53.184023474741615],[-122.27662607044638,53.1843678375695],[-122.27567908644339,53.18625318403855],[-122.27321458528291,53.188145154292386],[-122.26856235171722,53.188956695637444],[-122.26609314775946,53.1895362743041],[-122.26553662952306,53.190905436148846],[-122.26477887739898,53.192851654792676],[-122.26394152286308,53.194508139071154],[-122.26299859433254,53.196338551680626],[-122.26139467376032,53.19765891617139],[-122.25931447792073,53.19977649802544],[-122.2571300275824,53.200694203231954],[-122.25331728814224,53.20167589896571],[-122.25095197912765,53.20276671864654],[-122.25029949216628,53.204193931642735],[-122.24964643899436,53.205965552151746],[-122.25069631715714,53.20801830626182],[-122.25100416815454,53.210306165838126],[-122.24938990022736,53.21122495952923],[-122.24577730588956,53.21180159334177],[-122.24349234422145,53.21231814838945],[-122.24063600017658,53.2126689900762],[-122.23825144862491,53.21244628478352],[-122.23796620762803,53.212105681157105],[-122.23586406787503,53.21056911333169],[-122.23443268519524,53.20993793900184],[-122.2305258933817,53.20943160393998],[-122.2287276866594,53.20903943165522],[-122.22616267883234,53.209325707994076],[-122.22320169542782,53.209334515432516],[-122.22100775633419,53.20916746611882],[-122.21940406218164,53.20962507907154],[-122.21759948242698,53.210144137920615],[-122.21568570744476,53.21020415965955],[-122.21331077773321,53.210379552311366],[-122.21026942861037,53.21044549913811],[-122.20817291126345,53.20936017646821],[-122.20655531710173,53.208966722245414],[-122.20446162245321,53.20885529987599],[-122.20179630566837,53.209085104786006],[-122.19856717989593,53.21023641913698],[-122.19695799288776,53.21275465274611],[-122.19572562283433,53.21492482473484],[-122.19363164693023,53.214646600040425],[-122.19020564130028,53.21430753676696],[-122.18667512542132,53.2136284083954],[-122.18373422553012,53.213576855083915],[-122.18164120434565,53.21328946843771],[-122.17973229513224,53.213292972548395],[-122.17859248494595,53.21409769508664],[-122.17621796077054,53.2157579021056],[-122.17309261499233,53.21707684292907],[-122.17089660022035,53.21759266493115],[-122.1678550734547,53.21765303921594],[-122.16633219124958,53.21754091599658],[-122.16442370582958,53.219026936739645],[-122.16319763807208,53.22011427704931],[-122.15929800187831,53.22200525576819],[-122.15473488037736,53.222759291422896],[-122.15120953159769,53.22350537013558],[-122.14940553227153,53.22350676541733],[-122.14435436573264,53.223510173553144],[-122.14246319862279,53.22397202286528],[-122.13941665809176,53.2252320919775],[-122.1368554555523,53.226607788141],[-122.1341826280445,53.22837979032019],[-122.13333904295123,53.23003979198667],[-122.12962180365025,53.230899608382344],[-122.12629855118766,53.23090487140832],[-122.12372079317811,53.231305824659785],[-122.12221181744276,53.23267469591213],[-122.11973393303032,53.23296888504888],[-122.11668008306339,53.23331257998558],[-122.11429984372866,53.23434198926676],[-122.11050002235238,53.23543640390898],[-122.10812492756178,53.23640695375257],[-122.10659499035476,53.236691055561806],[-122.10346946369486,53.23943606913724],[-122.10270812877621,53.24035243023938],[-122.10194463469215,53.24178037188577],[-122.10147126233574,53.24332332790619],[-122.10109559258903,53.244296694074464],[-122.09996126084175,53.24892260861735],[-122.09759738932065,53.255779614058106],[-122.0946649289495,53.26389417474027],[-122.0903025699275,53.27800541466003],[-122.08916798285975,53.282286739148034],[-122.08794426993963,53.28817523566679],[-122.08727937041479,53.29177075216683],[-122.08518873024262,53.2953130489502],[-122.08423285422303,53.295714609475],[-122.08204756960507,53.296057617198606],[-122.0779465814341,53.29692017700614],[-122.07250559201523,53.29777751279436],[-122.07202798330655,53.297892981008985],[-122.06975022423154,53.299548312292764],[-122.0694556700278,53.30109202392011],[-122.06488682059621,53.302924372223394],[-122.062792225187,53.30309669707544],[-122.06088359711818,53.30321288075699],[-122.05801870420095,53.30372981786636],[-122.05506201247822,53.30538757756766],[-122.05192501939278,53.30607317931614],[-122.0464876719855,53.30687228092438],[-122.04439139097948,53.307219832483156],[-122.04029275313702,53.3099601246038],[-122.03427261244559,53.31150112116572],[-122.02912101381699,53.31133448064467],[-122.02597795615966,53.31127584847557],[-122.01720116972477,53.31025452088837],[-122.01166472333988,53.30922140950868],[-122.00498979466933,53.30796456303332],[-122.00366397285865,53.307966484860444],[-121.99960348534687,53.306625099482424],[-121.99855366780847,53.30657623883188],[-121.99711290050676,53.30620279248392],[-121.99596630872288,53.30622133684496],[-121.99494029312903,53.30703166047943],[-121.99284447995623,53.30689358079954],[-121.99023407968089,53.30630606301949],[-121.99020096004094,53.305387620223364],[-121.99023702580253,53.30390034944746],[-121.98834765567987,53.30444355261681],[-121.98725511080987,53.30326205056303],[-121.9875560964581,53.30136631551704],[-121.98618844641234,53.30070232558517],[-121.98458715298037,53.30106838298163],[-121.97993205320692,53.30171026031883],[-121.97946449694778,53.30171686042596],[-121.97614912679755,53.30268115819791],[-121.9724386096383,53.302734807630266],[-121.96824781399782,53.30308509871047],[-121.96457023888684,53.304052478267145],[-121.96325949060113,53.3045268872258],[-121.96071377877043,53.305312714973354],[-121.95534767483039,53.307388804667774],[-121.95412354343911,53.31009689501318],[-121.9539541497233,53.31295931844379],[-121.95243327106445,53.31561686988145],[-121.94827676592502,53.31653492200527],[-121.94778195031122,53.3163530741606],[-121.94721387612977,53.316149646141845],[-121.946437116381,53.31341705506624],[-121.94608394195461,53.30941462429332],[-121.94574821936729,53.30335250184838],[-121.94562298512237,53.2979214704296],[-121.94545461029912,53.294035286833164],[-121.93797813899644,53.295512138244085],[-121.93003158051111,53.297172156369385],[-121.92531493689934,53.29844439223738],[-121.9186591709659,53.29905107857855],[-121.90866916170711,53.299711905341695],[-121.90025956344837,53.301774294143314],[-121.89517844458503,53.30367972930983],[-121.8871714871287,53.306540145519755],[-121.8832168837376,53.30785122632712],[-121.87117622061912,53.310190735540324],[-121.85910107020976,53.311333255155],[-121.84814205950534,53.31153896239955],[-121.83847640190403,53.311157189049],[-121.83482693904114,53.31057969398396],[-121.81963739772362,53.30740879332144],[-121.81232689686621,53.30350136606875],[-121.80704183403783,53.30014313087531],[-121.79389267762086,53.28744906373916],[-121.7892805262753,53.28402116629989],[-121.78101626105256,53.27692167791684],[-121.7743252448046,53.27397914000325],[-121.76184436523108,53.266193490806465],[-121.75224365708178,53.26168363621593],[-121.73412468579386,53.25362516069206],[-121.7292438540952,53.25323105045415],[-121.72401330222043,53.2534672379739],[-121.72093434734086,53.25533768284739],[-121.71880824649847,53.25730701596232],[-121.71432700455802,53.259938688411616],[-121.71312698495662,53.25812189745025],[-121.7089777607934,53.25423019255195],[-121.70183279934612,53.251688253371114],[-121.68438021835892,53.251217746550346],[-121.66708592597311,53.238510677232256],[-121.6561070693716,53.238189371654656],[-121.64398537464466,53.24005032660888],[-121.64038939565778,53.24369461728675],[-121.63592729749219,53.2471233833089],[-121.6314755754086,53.24826476307597],[-121.62729686734366,53.248366534288884],[-121.61318818248738,53.248308553527245],[-121.60547749156419,53.24851276190605],[-121.60051745220923,53.25177648027734],[-121.59565317574447,53.25440373080037],[-121.58740859129709,53.256102377782184],[-121.58287015921357,53.257186024212245],[-121.57760364480778,53.253295889483326],[-121.57187853260051,53.24690191301837],[-121.56678826986494,53.24278765706047],[-121.56059349917307,53.233593130546836],[-121.55842766195214,53.22515552823107],[-121.55709065774845,53.222139530480476],[-121.55704894094043,53.221106885660895],[-121.55262510646665,53.219559448849],[-121.54853242537824,53.21943818495457],[-121.54360595854035,53.22023510506967],[-121.54058202372079,53.22124270648139],[-121.53356520319753,53.22246114562267],[-121.52784945924786,53.22218363571966],[-121.52213956825445,53.22241854385827],[-121.50901790318548,53.223190642183425],[-121.50226839167316,53.223721950489484],[-121.48993945570938,53.22551168869642],[-121.4812377870477,53.22755149069467],[-121.47753200640723,53.23125227637445],[-121.47654922789044,53.23326357126498],[-121.471054599017,53.23778216802382],[-121.46160416002043,53.24045494728477],[-121.4544065668613,53.241619866244825],[-121.44345205131333,53.24161882594079],[-121.43190186855624,53.24197608117264],[-121.428084396867,53.245404557178155],[-121.42808184069136,53.24640028415969],[-121.42857830235506,53.247790804018095],[-121.42846843965765,53.24824911170084],[-121.42721516934269,53.24884236089632],[-121.42560893147136,53.24977560726528],[-121.42008630030669,53.251152528472446],[-121.41203105852749,53.2509009008489],[-121.40993775079951,53.25436980358848],[-121.40974089435863,53.25479554020456],[-121.40475126470147,53.25845356959942],[-121.40508334573752,53.25885995192493],[-121.40531966941668,53.25890167461051],[-121.40361425141643,53.2593553441324],[-121.40342003639044,53.259341639725996],[-121.39828786196347,53.25974252091877],[-121.3986558421037,53.266856826920225],[-121.40352340177944,53.26709567978848],[-121.41531148887603,53.26724971822006],[-121.41528590122901,53.27080877568252],[-121.41517316925447,53.28375514630432],[-121.3442233512123,53.283896338779584],[-121.33815957556234,53.28369622825333],[-121.26952541325035,53.29094362812431],[-121.22559763665055,53.32915297460155],[-121.22611857863349,53.336795278825775],[-121.21745139565223,53.338994711338124],[-121.20909593646637,53.33884473179366],[-121.20099282257196,53.33833382507764],[-121.20059205372027,53.33668888548102],[-121.19806133428646,53.33520314326185],[-121.18948170332135,53.335964583041736],[-121.18381726471003,53.33906313313641],[-121.17803527761347,53.34199497037214],[-121.1696254142913,53.343232429844846],[-121.16681044277392,53.343701769778235],[-121.15826433454053,53.346903633593904],[-121.15696286086859,53.347952689372065],[-121.15686038007554,53.34812200421022],[-121.15675796329576,53.348290755640264],[-121.15665548188666,53.34846006133202],[-121.15655494088826,53.34862888914564],[-121.1564542704305,53.34879883452924],[-121.15635554041283,53.34896830204106],[-121.15626788179924,53.349139901046954],[-121.15620055331566,53.34931513220958],[-121.15613691434734,53.34949107981364],[-121.1560290514253,53.349657928684536],[-121.15588810130181,53.34981724702471],[-121.15574540130683,53.349975370916425],[-121.15559544764768,53.350130952876],[-121.15543642763353,53.3502833529664],[-121.15526290018914,53.350430678237636],[-121.15507331100181,53.35057004443706],[-121.15487666147847,53.35070518756293],[-121.15467994582549,53.350840893658244],[-121.15449572801307,53.350982724094],[-121.15433126077579,53.35113322075186],[-121.15418485925356,53.351290635058824],[-121.15405309184604,53.35145200625024],[-121.15393407907277,53.35161727562667],[-121.15385009635602,53.351789580245836],[-121.15380696834079,53.35196748699058],[-121.15374713437579,53.35214303198603],[-121.15363731376704,53.352310356197066],[-121.15351279394427,53.35247426857336],[-121.15341035318123,53.35264301675597],[-121.15332630138927,53.35281588422007],[-121.15324781685169,53.352989544833825],[-121.15316382859396,53.353161848851265],[-121.15307057924343,53.35333266085735],[-121.1529791429058,53.35350410378124],[-121.15292111708591,53.35368027923293],[-121.15285383129785,53.35385495374584],[-121.15277346625086,53.35402852836926],[-121.15269672607099,53.354203382825006],[-121.15262186395682,53.354378304925135],[-121.15254324483085,53.354553082601356],[-121.1524609994854,53.354726580302255],[-121.15237324812757,53.354898739248966],[-121.15227817893296,53.35506891053153],[-121.15217216519375,53.355235823157486],[-121.15205514086364,53.35540004934063],[-121.15192717177906,53.35556101680689],[-121.15178631519919,53.35571921215922],[-121.15163814033201,53.35587541970898],[-121.1514845238306,53.356029725038866],[-121.15132352401459,53.356182605816514],[-121.15115889633371,53.35633421535903],[-121.15099064076365,53.35648455365165],[-121.15082244789122,53.35663433733629],[-121.15065425485363,53.356784111830784],[-121.15048800230585,53.356933408401886],[-121.15031812184434,53.35708143369863],[-121.15014454850743,53.3572287510053],[-121.14997110383958,53.35737494144941],[-121.1497939662667,53.35752042388262],[-121.1496168274706,53.35766590604153],[-121.14943975136947,53.357810833568585],[-121.14926079725547,53.35795567517728],[-121.14908365478856,53.3581011565108],[-121.14890838893639,53.358246714279],[-121.14873299298533,53.358393389433736],[-121.14856135151402,53.358540217747766],[-121.14839139284071,53.35868880347332],[-121.14822862268,53.35884048548897],[-121.14807304107372,53.358995263823765],[-121.14792102019398,53.359151876343596],[-121.14777081109357,53.35930912868123],[-121.147618852934,53.35946517749312],[-121.14746326574948,53.35961996392384],[-121.14730236655316,53.35977172133386],[-121.14713440634796,53.359919255312796],[-121.14695575718805,53.360061303641416],[-121.14676279213873,53.36019659513539],[-121.14655195027711,53.36032328634491],[-121.14632873434319,53.360442742959],[-121.14609295244736,53.360556627974375],[-121.14585198737095,53.360666365996174],[-121.14560570913456,53.360773083585585],[-121.14536143658447,53.36087875977364],[-121.14511722678887,53.36098388110023],[-121.14486427201396,53.361083020868065],[-121.14459926635753,53.361172127108],[-121.14433166477318,53.36125102035047],[-121.14404033676995,53.361273919636226],[-121.14373831425507,53.36127504535762],[-121.14343986101873,53.36129428306608],[-121.143145105726,53.36133051514007],[-121.14286272755727,53.36139027715819],[-121.14260147167626,53.361479532541836],[-121.14237117876247,53.36159475819293],[-121.14217793485638,53.36173226849862],[-121.14204064793748,53.36189172310189],[-121.14191054874213,53.36205428339623],[-121.14174955622175,53.36220658746487],[-121.14154743277399,53.362339250954975],[-121.14129135092776,53.36243264118203],[-121.14100001856637,53.362471820161176],[-121.14069838110498,53.36248586344084],[-121.14039971847137,53.362490487294316],[-121.14009813857508,53.36248769648866],[-121.13979998741131,53.36247156110834],[-121.13950105568561,53.362445852627424],[-121.13920400233113,53.36242022025678],[-121.13890636759758,53.36239962100588],[-121.13860672701628,53.36238005283991],[-121.1383091579636,53.36235888880266],[-121.13801217002293,53.362332699104286],[-121.13771848259671,53.36229428255404],[-121.13742764218252,53.362247564331064],[-121.13713686650013,53.36220029104613],[-121.13684790536995,53.36215364829791],[-121.13655913922983,53.362105323915934],[-121.13626862396333,53.36205581322496],[-121.13598471312145,53.361998145794075],[-121.13570339239674,53.36193440311439],[-121.13541501579392,53.36188273197291],[-121.13511777552387,53.36185876137894],[-121.13481820774128,53.36185491647397],[-121.1345174124121,53.361861683905545],[-121.13421836567532,53.361869645154655],[-121.13391782872783,53.36187417579461],[-121.13361722758314,53.36187926002319],[-121.13331669050244,53.36188378914427],[-121.1330150512793,53.361881534728],[-121.13271729405521,53.361862037622416],[-121.1324238734011,53.36182137271913],[-121.13213984006373,53.36176481374072],[-121.13186312286534,53.361693955757694],[-121.13161023273193,53.36159656634223],[-121.13140655505403,53.361465250776355],[-121.1312190654115,53.361324500985845],[-121.1310395420649,53.36118014266158],[-121.13083191774516,53.361050353025874],[-121.1305787109328,53.36095575100232],[-121.13029526865697,53.36089415377038],[-121.13000095029979,53.36086131525024],[-121.12970048317804,53.36084899372457],[-121.1293991103741,53.360844494871145],[-121.12909987438442,53.36083783701007],[-121.12879979596613,53.36082216031089],[-121.1285023722779,53.360799854092896],[-121.12820287734958,53.360779142072545],[-121.12790422401021,53.36076745633091],[-121.12760388894863,53.36077029010316],[-121.12730413608553,53.36078438541571],[-121.12700541988575,53.36080581715482],[-121.126708063376,53.360831795723215],[-121.12641219595017,53.360861203500974],[-121.12611619861575,53.36089172817196],[-121.1258201366187,53.360922806449906],[-121.12552685816364,53.36096242483228],[-121.12523804723732,53.361012332393884],[-121.12494917034513,53.361062802537454],[-121.12466042333199,53.36111214540952],[-121.1243715450635,53.36116261414788],[-121.12408441551378,53.361214267970034],[-121.12379883877315,53.361268796740084],[-121.12351623975589,53.36133018480047],[-121.12324341689204,53.361404892040824],[-121.122973831644,53.36148421445067],[-121.12270094254518,53.361559474783505],[-121.12242313090785,53.3616283606402],[-121.1221373553234,53.36168455737722],[-121.12184872933048,53.36173278472521],[-121.12155667135211,53.36177805856035],[-121.1212633186397,53.361818220755445],[-121.1209687998943,53.361852162618945],[-121.12067305094064,53.361880438483354],[-121.1203740642957,53.36190408880338],[-121.12007540094386,53.36192494878643],[-121.11977686800057,53.361944681456414],[-121.11947839909641,53.36196385903659],[-121.11917980023762,53.361984153489075],[-121.11888281966014,53.36200675961632],[-121.1185853842993,53.362033281144384],[-121.11828924335447,53.36206490394125],[-121.1179957558156,53.36210617569266],[-121.11771650947138,53.36217105720151],[-121.11745182876102,53.36225675004746],[-121.11719912508354,53.36235304133623],[-121.11695146978732,53.362454597477196],[-121.11671236029675,53.36256379923062],[-121.11648898354369,53.36268375404403],[-121.11629027575326,53.36281875531362],[-121.11612381223043,53.3629685666677],[-121.11598642267971,53.36312799109296],[-121.11587085487552,53.36329448453369],[-121.11577743190534,53.36346526642118],[-121.11571366815767,53.363640627855375],[-121.1156759356355,53.363819314681884],[-121.11566074023509,53.36399891934319],[-121.11567390948551,53.3641780105346],[-121.11570974522691,53.364356910886485],[-121.11575523112478,53.36453396213967],[-121.11580058762405,53.36471213097606],[-121.1158517085084,53.36488941385486],[-121.11593741396551,53.36506138112745],[-121.11608535975421,53.36521738339851],[-121.11626679255717,53.3653612779474],[-121.1164582649026,53.365499979172675],[-121.11665576315613,53.3656355499431],[-121.11684931129751,53.365772646842856],[-121.11704078743065,53.36591134710255],[-121.11725448222901,53.366037475992535],[-121.11748650761844,53.36615201448535],[-121.1176842063228,53.36628591154977],[-121.11784194384796,53.36643893575643],[-121.11798789364516,53.36659597597414],[-121.11812400020501,53.36675653721966],[-121.11824262105151,53.36692142837355],[-121.11835340530139,53.36708880914716],[-121.11847202694376,53.36725370898631],[-121.1186022434702,53.36741627330098],[-121.11872669669287,53.367579723523384],[-121.11884337863648,53.3677451001059],[-121.11894840308987,53.36791336632617],[-121.11904371352847,53.36808403611489],[-121.11911978795975,53.368257850160475],[-121.11916140622377,53.368435863032126],[-121.11917264812814,53.368615439546886],[-121.11916692150974,53.36879487578322],[-121.11914798267553,53.36897432609502],[-121.1191140164837,53.36915316790008],[-121.11906515452816,53.369330265686756],[-121.11899763798115,53.36950548295783],[-121.11891716791091,53.36967847900795],[-121.11882374417058,53.3698492538115],[-121.11871373868436,53.37001654429277],[-121.11858358975752,53.37017851513819],[-121.11843336155236,53.370334611945324],[-121.11827594377375,53.370487601273865],[-121.11812396576714,53.37064249391832],[-121.11798830735589,53.37080311486461],[-121.11787460371696,53.37096969576191],[-121.11779781859428,53.371143399664135],[-121.11777887183321,53.3713228584924],[-121.11782618796803,53.37150053988491],[-121.11794099885772,53.37166583983569],[-121.11812842476975,53.37180717311541],[-121.11837551473646,53.37190604002519],[-121.11865856015264,53.37197157250916],[-121.11892897347691,53.3720483806623],[-121.1191798235446,53.372147400253006],[-121.11941616451608,53.372257609590676],[-121.11963793005806,53.372379580979484],[-121.119819599878,53.372521797650684],[-121.11993429167889,53.372688213211376],[-121.12004328474843,53.37285495149408],[-121.1201930872373,53.37301157956169],[-121.12030609740857,53.37317624560866],[-121.1203552393841,53.37335456627254],[-121.1203892897117,53.37353282397166],[-121.12044620572831,53.37370921796793],[-121.12052611739752,53.37388263061259],[-121.12062151205951,53.37405274430069],[-121.12073621119787,53.37421915896378],[-121.12084125935708,53.3743874229795],[-121.12090387932126,53.37456348485815],[-121.12093793191089,53.374741751235845],[-121.12096622055974,53.37492089481583],[-121.12099262987338,53.37509997016557],[-121.121019040449,53.37527903655281],[-121.12104739412244,53.3754576257289],[-121.12106998267402,53.375637101056014],[-121.12109069284753,53.375816499215745],[-121.12111710325203,53.375995574459424],[-121.12114539350517,53.37617471788711],[-121.12118864740128,53.37635504173719],[-121.12134799037555,53.376494658095],[-121.1216278960225,53.37657128238161],[-121.12187903868822,53.37666806083084],[-121.12203708964547,53.37681884346465],[-121.12211306255757,53.37699377246931],[-121.1221395433917,53.37717228410456],[-121.12214510009672,53.377352182516255],[-121.12216393704433,53.37753150320836],[-121.122192231745,53.37771065519373],[-121.12223005070034,53.377889066246304],[-121.12225270990301,53.37806798679828],[-121.12221693622521,53.37824618828651],[-121.12210867131684,53.378414675964834],[-121.12192623157019,53.37855541352665],[-121.12168017710805,53.3786587277924],[-121.12143399176388,53.378763159158694],[-121.12128069983663,53.378912953272454],[-121.12116336061256,53.379078255808835],[-121.12095059714966,53.37920371463888],[-121.12069067396699,53.379296351106774],[-121.1204194143902,53.3793728003156],[-121.12013649491105,53.37943585175119],[-121.11984489553531,53.37947609620409],[-121.11954390760013,53.37948338004952],[-121.1192449942843,53.37947279028626],[-121.11894459265639,53.37945876081578],[-121.11864529041343,53.37945152238039],[-121.11834339639121,53.37945034839077],[-121.11804305721483,53.37945204038627],[-121.11774316817977,53.37946611147628],[-121.11744981840003,53.379505146308816],[-121.11717045584267,53.37957002598294],[-121.11690236097144,53.3796516552954],[-121.11664430485696,53.37974436011811],[-121.1164175341522,53.379860243252594],[-121.11620805625454,53.379989755156],[-121.11598283670223,53.38010851316303],[-121.11576992277126,53.38023508027509],[-121.11559082197802,53.38037931528322],[-121.11542422215082,53.38052967870339],[-121.11525956535237,53.38067955584468],[-121.11510021858918,53.38083246295905],[-121.11496276688138,53.38099188480791],[-121.11485828789411,53.3811599658184],[-121.11477032877704,53.38133208582307],[-121.11466759712721,53.38150136149088],[-121.11455935909723,53.38166927875938],[-121.11449938478182,53.38184423814858],[-121.11447854031387,53.3820236182624],[-121.11441292862882,53.38219834582341],[-121.11431576556232,53.38236840720546],[-121.11424633052931,53.38254353446927],[-121.11419555265935,53.382720560783056],[-121.11414477540151,53.3828975781192],[-121.11409211779613,53.383074527101705],[-121.11401898731329,53.38324894532609],[-121.1139126211012,53.3834169391223],[-121.1138173321062,53.38358707725681],[-121.11377400239408,53.38376496667927],[-121.11376442740378,53.383944810074624],[-121.11378517600498,53.384123645506584],[-121.1138305452696,53.38430181338792],[-121.11388174606941,53.384478541084455],[-121.11392329379477,53.38465710870921],[-121.11394592134245,53.38483603025211],[-121.11395902538969,53.38501567414019],[-121.11396266920298,53.38519549498619],[-121.11395316015958,53.38537477499987],[-121.11393224718901,53.38555470904101],[-121.11387777183575,53.38573101716863],[-121.11384597401455,53.38590713479102],[-121.11397260223325,53.38606843056734],[-121.11416396686903,53.386208806015595],[-121.11435358363866,53.38634798629068],[-121.11454514511772,53.38648668917347],[-121.11473469997992,53.38662642315367],[-121.11491239686774,53.38677072704099],[-121.11505639729073,53.38692880965472],[-121.11517110950946,53.38709522863809],[-121.11525873645833,53.38726727177497],[-121.11530236613126,53.387444243981136],[-121.11531547677771,53.38762388749234],[-121.1153494518566,53.38780270866622],[-121.11540059887703,53.38797998973998],[-121.11545181073998,53.38815671644543],[-121.11550678230942,53.38833358864296],[-121.11555987417499,53.38851039250651],[-121.115616725795,53.38868734185684],[-121.11567558585554,53.38886325973535],[-121.11573632659758,53.389039245860126],[-121.11580089057367,53.3892148320685],[-121.11586739866316,53.38938994112534],[-121.1159414894506,53.389564795770696],[-121.1160195345164,53.38973812393441],[-121.11608986816762,53.389912824004334],[-121.11614108527493,53.39008955024765],[-121.11616936382545,53.390268693629835],[-121.11619388314888,53.39044769148256],[-121.11622786423749,53.39062651216094],[-121.11626372484534,53.39080541003712],[-121.11626368597061,53.39098451259014],[-121.11620921335512,53.39116082132051],[-121.11610277044656,53.39132937970048],[-121.11597066632767,53.39149126878085],[-121.11580953182194,53.39164298121312],[-121.11559500495781,53.3917666715994],[-121.11534024062537,53.39186288031905],[-121.11508210622083,53.39195558120448],[-121.11482397067945,53.39204828152604],[-121.11457950385021,53.39215333854852],[-121.11435946279751,53.392275677329366],[-121.11415536034077,53.39240708852634],[-121.11396000251102,53.39254448259674],[-121.11377734437099,53.392686324297635],[-121.11359630446378,53.392830478170204],[-121.11341889202977,53.392975903891084],[-121.1132451725784,53.39312203820683],[-121.11306957154682,53.39326810392623],[-121.11289759907142,53.393415432584845],[-121.11273100249143,53.39356523695518],[-121.1125752920195,53.39371884861776],[-121.11242495753189,53.39387493604947],[-121.11226924479769,53.39402854728878],[-121.1121099011098,53.39418089508106],[-121.11198146698219,53.39434348841499],[-121.1119401278048,53.39452033593686],[-121.11197214920769,53.394699643454615],[-121.11203865107592,53.394874745244934],[-121.11213010470709,53.39504639028852],[-121.11223322655378,53.39521513723892],[-121.11233440429586,53.3953843700696],[-121.11243370341595,53.39555352551729],[-121.11254654932564,53.39571986905201],[-121.11245659599433,53.395713924318976],[-121.11242945335356,53.39588237210887],[-121.11223945218637,53.396022230165265],[-121.11205495920501,53.396163428430825],[-121.11189197770553,53.396314503601154],[-121.11174895485533,53.39647257107151],[-121.1116259552831,53.39663707658555],[-121.11151040823067,53.396802445477164],[-121.1113929797337,53.39696774588465],[-121.11128287384878,53.3971350272885],[-121.11114885346272,53.397296833261905],[-121.11095009516526,53.39743070574083],[-121.11065855790123,53.397469246472866],[-121.1103568540825,53.39748154065611],[-121.11005522108817,53.39747699287407],[-121.10975585780261,53.39746916887824],[-121.10945474516353,53.39746014920815],[-121.10916096776135,53.3974205541629],[-121.10887912526084,53.397359547598576],[-121.10859961885807,53.39729470167154],[-121.10831583295055,53.39723417969182],[-121.10803172316119,53.39717644653842],[-121.10775708355453,53.397102258288406],[-121.1074931433886,53.397017280313925],[-121.10722311096826,53.39693597674657],[-121.10694367446627,53.396870572594494],[-121.10666443349582,53.39680349587181],[-121.10639829312996,53.39672122758498],[-121.1061473266935,53.39662218223118],[-121.10590258495597,53.39651834382709],[-121.10564967688028,53.39641977435193],[-121.10541336645278,53.39630842137799],[-121.10517893776763,53.396197136386064],[-121.10495507799878,53.396076188589305],[-121.10474327821841,53.39594899033003],[-121.10458554334208,53.39579538769356],[-121.10441380696231,53.395648511753606],[-121.1042480360125,53.39549906935582],[-121.10409808264477,53.395343540516095],[-121.10388213975645,53.39521953861016],[-121.10362074960867,53.395129041459086],[-121.10335261513467,53.39504781540179],[-121.10309479117852,53.39495914385023],[-121.10289337567075,53.394823951960696],[-121.10265059742692,53.39471962095187],[-121.10239965174125,53.39462056760224],[-121.1021157625392,53.39456114835086],[-121.10182454390369,53.39451601572795],[-121.10153319459914,53.394472008916644],[-121.10126052910336,53.39439731977621],[-121.10096275255134,53.39437606264979],[-121.10066384921774,53.394396873564375],[-121.10036314214113,53.39440075609411],[-121.10006262992333,53.3944029659606],[-121.09977134891327,53.3943583915733],[-121.0994712374398,53.39434096924138],[-121.09917391880896,53.39431579163211],[-121.09887438402582,53.39430962110586],[-121.09857486027514,53.39428716292673],[-121.09828559132966,53.39424154482244],[-121.09802817401564,53.39414950952091],[-121.09781659986128,53.39402062691991],[-121.09760891602431,53.39389078138915],[-121.09738081017547,53.39377413450272],[-121.0971505665803,53.39365963586743],[-121.09694094155516,53.3935302748845],[-121.09670655073882,53.393418973060605],[-121.09648072039833,53.39329904921557],[-121.09625054652189,53.39318399449367],[-121.09602860876566,53.39306309833488],[-121.09580680163968,53.392941093116924],[-121.09559497955115,53.392814441650096],[-121.09540144203648,53.392676748724675],[-121.09520998015536,53.392537461133315],[-121.09499621689913,53.39241129428062],[-121.09478252065777,53.392284563777075],[-121.09458691282099,53.392148472767616],[-121.09439733528141,53.392009261398705],[-121.09418364288356,53.39188252979542],[-121.09397792577471,53.39175219210831],[-121.09377836836705,53.3916176254223],[-121.09361854960362,53.39146616551239],[-121.09339883329658,53.39134255245765],[-121.09321496668538,53.391203008644005],[-121.09298507412946,53.39108571233757],[-121.0927630252947,53.39096593648535],[-121.09253086466596,53.39085191442441],[-121.09227795617639,53.39075387953299],[-121.09201836738886,53.39066455189035],[-121.09176954633632,53.39056387271094],[-121.09150139907491,53.390483174100105],[-121.09122209456692,53.390417178526825],[-121.09094558478083,53.39034342795362],[-121.09065349256215,53.39030609987702],[-121.09035509762957,53.390290404048365],[-121.09009798289539,53.390196116274666],[-121.08988398575262,53.39007217524747],[-121.08960540507734,53.390000024740665],[-121.08930350205505,53.38999821383005],[-121.0890250052716,53.39005464976709],[-121.08875744301811,53.39013061844645],[-121.08846117549881,53.39012904731148],[-121.08825386671134,53.38999638681532],[-121.08805829060991,53.389860284927735],[-121.08786686583167,53.38972098533667],[-121.087615918902,53.38962246384215],[-121.08736698392404,53.38952289298105],[-121.08714120108647,53.38940295119312],[-121.08689025879549,53.38930441921304],[-121.0866330920045,53.389210687166106],[-121.08636282283129,53.3891321343779],[-121.08609897582356,53.38904710864881],[-121.08584174651783,53.38895393813605],[-121.08557816299441,53.38886667610487],[-121.08528582549522,53.38883156102923],[-121.0849843220124,53.388826395394844],[-121.08468535213885,53.38881570993318],[-121.08439630178624,53.38886551764421],[-121.08412465329806,53.388944118892994],[-121.08384025786667,53.389002544673254],[-121.08354991486664,53.389047239064126],[-121.08325104076675,53.38906800631102],[-121.08295063160983,53.38906960973246],[-121.08265290199346,53.3890483067522],[-121.08235283546351,53.38903084122075],[-121.08205557952152,53.38905390941623],[-121.08177771667187,53.3891210185909],[-121.08153292287473,53.38922824301503],[-121.08133268659196,53.38935808177989],[-121.08122980197714,53.389527318964056],[-121.08116760216458,53.38970386390992],[-121.08102474799556,53.389859659831075],[-121.08080267745282,53.38998241323788],[-121.08057743539872,53.390099986084195],[-121.08031916936797,53.390193174906436],[-121.08005773307427,53.39028117407122],[-121.07981836988601,53.39039030016657],[-121.07956191465493,53.39048411944205],[-121.07930034414218,53.39057323449333],[-121.07904718754939,53.39067111526108],[-121.0787977221542,53.39076971436556],[-121.07852132939682,53.39084024638113],[-121.07828532480866,53.39095287768444],[-121.07806518459302,53.39107514943142],[-121.07788254278628,53.391215818576946],[-121.0777520403858,53.39137886061744],[-121.07763630875941,53.391544760283786],[-121.07748961091372,53.39170095940787],[-121.07736837063368,53.39186550772342],[-121.07717833711148,53.39200474682768],[-121.07693229114959,53.392106287065765],[-121.07664139474447,53.392155443712404],[-121.07634192613229,53.392164931208605],[-121.07604208323588,53.39216149265156],[-121.07574208968218,53.39217545780946],[-121.07544157322884,53.39219388349846],[-121.07514680510258,53.39222771140058],[-121.0748548122711,53.392270080467284],[-121.07456572657343,53.39231986422215],[-121.07427508891432,53.39236677102905],[-121.07398322521749,53.39240802039955],[-121.07368825846756,53.39244351654898],[-121.07339077667125,53.39246824387007],[-121.07309097707692,53.39248052154281],[-121.07279098027122,53.392494479261316],[-121.07249336657145,53.39252032189295],[-121.07219671456345,53.39255406457079],[-121.07190465150772,53.3925969807007],[-121.07162028048907,53.39265481393342],[-121.07134392937978,53.39272476597246],[-121.07108595497057,53.39281513629192],[-121.07089926168952,53.392957873834995],[-121.07078537796797,53.393123844652095],[-121.07068069251117,53.393291885856236],[-121.07057587619705,53.39346103556514],[-121.0704803893411,53.393631138141735],[-121.07040893912367,53.39380560658874],[-121.07033560902637,53.39397999703034],[-121.07028275342549,53.39415692564476],[-121.07022244623293,53.394332979177086],[-121.07014911444445,53.39450736945935],[-121.07007954068533,53.39468191558551],[-121.06998955594221,53.39485336907309],[-121.06985914279,53.395015284623256],[-121.06966725694768,53.39515387032397],[-121.06946999296972,53.39528999566486],[-121.06925161878851,53.39541288312069],[-121.0690208084738,53.395529082345384],[-121.06878851089898,53.395641850500695],[-121.06854720865536,53.395750875674686],[-121.06827756169838,53.39582784661886],[-121.06800752136661,53.39590816064924],[-121.06774595774561,53.395996695772624],[-121.06746621299116,53.39606313008016],[-121.06717263489664,53.39610260389621],[-121.06687462086985,53.39611550713239],[-121.06657422587128,53.396116514915214],[-121.06627238773889,53.396129814931754],[-121.06597367572323,53.39613257105806],[-121.06567389416989,53.39611226520956],[-121.06537572984568,53.39609427171957],[-121.0650792055543,53.39606231266023],[-121.06477850630812,53.396049827360315],[-121.06448021156895,53.39603294916997],[-121.06418257330819,53.39601048251992],[-121.06389879487155,53.39595040893977],[-121.0636286561265,53.39587068724978],[-121.06336520662197,53.395782258784074],[-121.06307972429968,53.395736711286965],[-121.06277718999317,53.395739866509494],[-121.06249156231198,53.39579201207465],[-121.06221012769414,53.39585668412538],[-121.06192106859568,53.39590587384567],[-121.06163510991412,53.39596081567185],[-121.06134294732156,53.39600426011743],[-121.06104685229256,53.39603295049562],[-121.06074778722014,53.396054769766614],[-121.06044885213403,53.396075479688065],[-121.0601481945583,53.396078706333014],[-121.05985035124229,53.3961061891474],[-121.05955028404586,53.39610438983321],[-121.05925067722725,53.39609867391314],[-121.05894982283905,53.39610356936692],[-121.05864767977216,53.39610336148496],[-121.05835062266907,53.396124144269514],[-121.05805007042305,53.39614252601781],[-121.05775043679655,53.39615309320056],[-121.05744958184506,53.39615798486291],[-121.05715014563606,53.39616686976218],[-121.05684998583838,53.39618190481687],[-121.0565497606266,53.39619749341146],[-121.05625025874299,53.396206930344],[-121.05594999430812,53.396206793785566],[-121.05564804720204,53.396204906460945],[-121.0553473231191,53.396208675277606],[-121.05504801759693,53.39621643735685],[-121.05474683260547,53.39622412048966],[-121.05444597574555,53.396229013501625],[-121.05414630350245,53.39622383903176],[-121.0538488661686,53.39619967472179],[-121.05354876169011,53.39618212769929],[-121.05324869422297,53.39618031250196],[-121.0529472460684,53.39619022614272],[-121.05264972562405,53.396214901586106],[-121.05237991612356,53.39629294509232],[-121.0521033112871,53.39636453310322],[-121.05181215963971,53.396415300793926],[-121.05151854733275,53.396390723910095],[-121.05123151124188,53.39642257044468],[-121.05093913678301,53.39646767011001],[-121.05066124069442,53.39653415210642],[-121.05040112228323,53.39662607099198],[-121.05012233262867,53.39668408754129],[-121.04982691986545,53.396722886009904],[-121.04953596097936,53.39677196736571],[-121.0492433116444,53.396787296341486],[-121.0489578015809,53.396725991364356],[-121.04866395570593,53.39668735562284],[-121.04836556056671,53.396655276654265],[-121.04807020735848,53.39666149702087],[-121.04781875455912,53.3967599526079],[-121.04762147878252,53.39689547840156],[-121.04743669892709,53.397037139641796],[-121.04724492708218,53.39717401724427],[-121.04706914658493,53.39731942202489],[-121.04682804190824,53.39742616803724],[-121.0465647430262,53.3975128974823],[-121.04630144305916,53.39759962634142],[-121.04601545249133,53.39765453060299],[-121.0457247462081,53.397701367579366],[-121.04543855709748,53.39775794226403],[-121.04515869903932,53.39782488732415],[-121.04487587185855,53.39788496990443],[-121.04460583905431,53.39796467647899],[-121.04436478979814,53.39807086317974],[-121.04411843104214,53.39817401603465],[-121.04388631575918,53.398284500410085],[-121.04375767101426,53.39844646545304],[-121.04367851871253,53.39862115825843],[-121.04363514073567,53.39879678572714],[-121.04368975797321,53.39897425332044],[-121.04377517154822,53.39914683286848],[-121.04386642247768,53.39931796669017],[-121.04396539030799,53.39948773313633],[-121.04406630379842,53.39965702355966],[-121.04415950188623,53.39982768118786],[-121.04424686504893,53.3999997754583],[-121.04433051053442,53.400251448521004],[-121.04438513259139,53.400428915670986],[-121.04444935099228,53.40060509381504],[-121.04452718745323,53.40077791355181],[-121.04462434719456,53.40094704668691],[-121.04473304862927,53.40111441480349],[-121.0448532254655,53.40128058109964],[-121.04497937193615,53.40144418403906],[-121.04511524725021,53.40160538029484],[-121.04525722303306,53.4017629045691],[-121.04541684041943,53.401914991849864],[-121.04559034138774,53.402061476450825],[-121.04576974590395,53.402205960757236],[-121.04594901990019,53.40235156230227],[-121.04611655680895,53.40250060043503],[-121.04627805972834,53.40265276483705],[-121.0464337942173,53.40280580261365],[-121.046591343088,53.402959481727244],[-121.04675096983316,53.40311156713196],[-121.04691650121958,53.40326164328417],[-121.0470859901781,53.40341020401518],[-121.0472594367323,53.40355724930852],[-121.04743295088362,53.40370373110877],[-121.04760834592886,53.403850290952285],[-121.04778186250265,53.4039967722235],[-121.04795336888024,53.40414429245092],[-121.04812085364624,53.4042938908652],[-121.04827653453358,53.404447489340924],[-121.04843604237287,53.40460068095795],[-121.04860949855014,53.40474772420054],[-121.04879871860845,53.40488924264673],[-121.04898599488487,53.4050312367885],[-121.04915569526136,53.40517812263615],[-121.04927468082438,53.40533860931858],[-121.04932524109803,53.40551871548015],[-121.04937412006603,53.405697062574944],[-121.04942118603026,53.405874768126345],[-121.04949127016393,53.40604950611084],[-121.04957665658142,53.406222635199484],[-121.04965445812718,53.40639601434783],[-121.0496940721162,53.406572852345796],[-121.04968032785308,53.406753640564986],[-121.04971034512329,53.40693176791055],[-121.04977842071727,53.40710754488503],[-121.0498370323564,53.40728348474149],[-121.04985745444031,53.40746289246036],[-121.04985700021805,53.40764311993596],[-121.0498433879708,53.407822790560836],[-121.04981292203252,53.40800120243822],[-121.0497636570005,53.408178831573295],[-121.04972567090081,53.40835693030937],[-121.04972145630565,53.408537001161896],[-121.04970220346827,53.40871643687537],[-121.04966797645386,53.408894692093114],[-121.04964301709092,53.409074456175226],[-121.04962000275727,53.40925374422146],[-121.04957047208913,53.40943360820831],[-121.04951282917659,53.40961818342067],[-121.04940303629874,53.40978038214989],[-121.04919141873093,53.40989285482339],[-121.04890479248049,53.40996851360281],[-121.04861760228408,53.410032918222264],[-121.04832364563427,53.410074580326174],[-121.04803305317398,53.41011975085342],[-121.0477422630239,53.41016659247557],[-121.04745166930417,53.410211761582275],[-121.04715784199512,53.41025230328868],[-121.04686292466126,53.41028606085773],[-121.04656497106254,53.41031351918672],[-121.04626619230206,53.410331949382936],[-121.0459658622201,53.410347511180966],[-121.04566836937316,53.41037105149475],[-121.04537305463558,53.410408157915164],[-121.04508090570154,53.41045045357568],[-121.04478888904269,53.41049162206528],[-121.04449660712615,53.41053503380393],[-121.04420729467948,53.41058529767905],[-121.04392438037672,53.41064537763076],[-121.04364456604073,53.41071120120506],[-121.04336300268845,53.41077582823546],[-121.0430813066169,53.410841572109284],[-121.04281468353278,53.41092366590239],[-121.0425666294705,53.411024501506255],[-121.04232705109817,53.411133551107],[-121.04209258397452,53.41124730543867],[-121.04186685619636,53.411367038833696],[-121.04163265031758,53.411478557228264],[-121.0413724852304,53.411569901442085],[-121.04110021413018,53.411651756154825],[-121.04085422904113,53.41175099477288],[-121.04064818649398,53.41187996520705],[-121.04046681358402,53.41202400645652],[-121.04028524100526,53.412169728150886],[-121.04009680771489,53.41230953938505],[-121.03990830667269,53.41244991353516],[-121.03972524610711,53.41259220339845],[-121.03956194243051,53.41274316933853],[-121.03940401283398,53.41289661430219],[-121.03923714407797,53.41304575111518],[-121.03906295226908,53.4131928931925],[-121.03887988561252,53.413335181705904],[-121.03868599957624,53.41347308351117],[-121.038486867909,53.413607397128416],[-121.0382841067401,53.41374043599367],[-121.03808315893484,53.41387410724352],[-121.03788032867503,53.414007708626386],[-121.03767588207259,53.41413898724577],[-121.03746074693505,53.4142647704162],[-121.03723518729257,53.414382823074995],[-121.03700425106868,53.41449839593539],[-121.03677855685933,53.41461756521872],[-121.03654755154456,53.41473370040169],[-121.03630625489606,53.4148409784937],[-121.0360526537171,53.414940447386414],[-121.03577279850543,53.41500625233017],[-121.03544627215396,53.41503529466805],[-121.03512584759147,53.41506066483868],[-121.03487505170978,53.415120376988526],[-121.03476680876902,53.4152528650748],[-121.034781890548,53.41544497338802],[-121.03481699515427,53.415643523825786],[-121.03483729067786,53.41582349661873],[-121.0348577195208,53.41600234295345],[-121.03485538731526,53.41618192790506],[-121.03484734785229,53.41636184053924],[-121.03484877604129,53.41654158247436],[-121.03485967200358,53.41672115371003],[-121.03485733976655,53.41690073860009],[-121.03482855186871,53.41708034187145],[-121.03483575287974,53.41725920176879],[-121.03487317035673,53.41743820026439],[-121.0349106536701,53.417616644453474],[-121.03492349597857,53.417795739818224],[-121.03490981667451,53.41797540786025],[-121.03490553770476,53.4181554773568],[-121.0349221407752,53.41833472968815],[-121.03492732998605,53.41851462846514],[-121.03489860785929,53.4186936683963],[-121.03487935267646,53.418872546559854],[-121.03491113074884,53.41905130938582],[-121.03494096216473,53.419230556901226],[-121.03495360747745,53.4194113239015],[-121.03494375402894,53.419590594541134],[-121.0348776213859,53.419766392481904],[-121.03475062455027,53.419929542128436],[-121.03455125106625,53.42006552946732],[-121.03429982545578,53.42016227468008],[-121.03402115253681,53.420233741342244],[-121.0337475913294,53.420309912906696],[-121.03347571079217,53.42038784308198],[-121.03321916816115,53.42047988043117],[-121.03298287607014,53.42059242029222],[-121.03276607780761,53.420715881069526],[-121.03256144942497,53.42084827692403],[-121.03235507255978,53.42097946743844],[-121.03213114528019,53.421099260370234],[-121.03190015710892,53.42121483190392],[-121.0316762939051,53.42133406075072],[-121.03145054793224,53.42145321954941],[-121.03121962257822,53.42156822652771],[-121.0309833856591,53.42168019914817],[-121.03074384879864,53.421788107399784],[-121.03049718553726,53.42189234838767],[-121.03025246710428,53.42199611316364],[-121.03000929786934,53.422102745271864],[-121.0297748685499,53.4222153572659],[-121.02955623868452,53.422338170303846],[-121.0293060061458,53.42244057985178],[-121.02903760111238,53.42252088304681],[-121.02874960478005,53.42257510336352],[-121.02844849085521,53.42258048489017],[-121.0281492288843,53.42257022081866],[-121.02788477970797,53.422649006874074],[-121.02762896645153,53.422750613819375],[-121.02736560180622,53.42283618226243],[-121.02710714931887,53.42292813665589],[-121.02686927795905,53.42303778744199],[-121.02664162871837,53.42315685839775],[-121.02642090526476,53.423281267689305],[-121.02627430470393,53.423434039883034],[-121.02618193472603,53.42360761419293],[-121.0260787434505,53.42377680981614],[-121.0259959736864,53.42394909648199],[-121.02594101340404,53.424125924187635],[-121.02587678327463,53.42430123218603],[-121.02579381258748,53.424475199365745],[-121.02568705554295,53.42464255658325],[-121.02554549314797,53.424800596885724],[-121.02539109596609,53.42495529717544],[-121.0252403275232,53.425111263114744],[-121.02508417985548,53.425264766841565],[-121.0249045108902,53.42540941640231],[-121.02471596611763,53.425549211356405],[-121.02452735442452,53.425689560274165],[-121.02434774740006,53.425833654694756],[-121.02418433713412,53.42598459859445],[-121.02401010476977,53.426131163475304],[-121.02381973988304,53.42627031507437],[-121.02362755876773,53.42640883340538],[-121.02343174856124,53.42654606762245],[-121.02323593601764,53.42668331044859],[-121.02304926171621,53.42682317243068],[-121.02289329888967,53.426974992470875],[-121.02279364934978,53.42714601411918],[-121.0227088453055,53.42731934594846],[-121.02260945910095,53.427488132455366],[-121.02246424661597,53.427644894003585],[-121.02230257080402,53.42779703137407],[-121.02215158149747,53.42795467388262],[-121.02196664514065,53.42809573920993],[-121.02172813448466,53.428210412584555],[-121.02144185288755,53.42823380125301],[-121.02113480439697,53.42820916199174],[-121.02083702844445,53.4281860241164],[-121.02053931854331,53.428162331228044],[-121.0202396614693,53.42813912206624],[-121.01994221728336,53.428113192732006],[-121.01964523785328,53.42808334701915],[-121.01935040357708,53.42805135330536],[-121.01905382264353,53.428018153690225],[-121.01875932119029,53.427983360354474],[-121.01846287270433,53.42794905073191],[-121.01816576291299,53.42792031880364],[-121.01786650660634,53.42789375124719],[-121.01757890920615,53.427848570841746],[-121.01732823157207,53.42774710486117],[-121.01709237693441,53.42763222591139],[-121.01681175027049,53.42757610527542],[-121.0165126298807,53.427548416840914],[-121.01621410720753,53.42751569455908],[-121.01591974424959,53.427479776723516],[-121.01562204211754,53.42745607154021],[-121.0153208679137,53.427445696455905],[-121.015019893367,53.4274336399336],[-121.01471967153103,53.42743116444758],[-121.0144208230643,53.42744896033282],[-121.01412088972154,53.427459971813356],[-121.01381832214794,53.42746133083755],[-121.01354029642012,53.42752659878208],[-121.01324536372574,53.427559155350636],[-121.01294739857076,53.427585411875185],[-121.01265120256714,53.42758085394432],[-121.01236044827381,53.42753047908267],[-121.01206374380067,53.42749837952742],[-121.0117664419261,53.42747131230655],[-121.01146880803734,53.42744704248137],[-121.01117044487489,53.427428913510454],[-121.0108693388763,53.427417963969894],[-121.01057777075691,53.42726310816041],[-121.01041032807815,53.427113458600765],[-121.0102429524484,53.42696325453202],[-121.0100949166214,53.42680936039089],[-121.00998998096478,53.426642683726996],[-121.00976824754626,53.426520511310414],[-121.0095004269547,53.42643627702747],[-121.00921109962616,53.42638988895917],[-121.0089273945816,53.42632800457],[-121.00866796213471,53.42623682501902],[-121.00840853187512,53.42614563595936],[-121.00815104922867,53.42605397099694],[-121.00788967366765,53.42596326507322],[-121.00763004698598,53.425873754972535],[-121.0073749127342,53.425778260603714],[-121.00711790011763,53.42568267780006],[-121.00696605211107,53.42552918499003],[-121.00690564789737,53.425353700910215],[-121.0068835197539,53.42517420844112],[-121.00689920165564,53.424994623195],[-121.00689413150981,53.42481472376539],[-121.00686817672307,53.42463562761308],[-121.00679817172379,53.424461429326335],[-121.006670158316,53.42429826306943],[-121.0065538265326,53.42413222693354],[-121.00649342604441,53.42395674252833],[-121.00640026034857,53.42378662061155],[-121.00631683057648,53.42361409526651],[-121.00615720527023,53.42346252037247],[-121.00600946140291,53.42330639491221],[-121.00588917523991,53.42314187184988],[-121.00576895699113,53.4229767854518],[-121.00564873862281,53.42281170785901],[-121.00547717162915,53.422665245504454],[-121.00528372492131,53.42252797135044],[-121.00506806686718,53.422402674479656],[-121.00483187695666,53.42229112335756],[-121.00459152977534,53.42218275723955],[-121.00436775521462,53.42206217619231],[-121.00418236824017,53.42192074631403],[-121.00406800024885,53.42175422335338],[-121.00399230451731,53.42158034046194],[-121.00392621021582,53.421405180760964],[-121.00382534016477,53.42123641236677],[-121.00367767976745,53.42107972064865],[-121.00351685790433,53.42092247572519],[-121.00344233383362,53.42077054539576],[-121.00368722486576,53.42064999471155],[-121.00387050828733,53.42050720654418],[-121.00398473006221,53.4203413019959],[-121.00402856160957,53.42016345588749],[-121.00407615343771,53.419985767733664],[-121.00413301353602,53.41980959196896],[-121.00416186734856,53.41963055956832],[-121.0041643307619,53.419450975529685],[-121.00415739268462,53.41927099651813],[-121.0041542152384,53.41909117547407],[-121.00415291809716,53.418911433406315],[-121.00414403396286,53.41873192961803],[-121.00412192108399,53.4185524360712],[-121.00407691253365,53.41837479272184],[-121.00402425152915,53.41819794189],[-121.00395816240821,53.418022781924684],[-121.0039112759495,53.41784505053346],[-121.00390615245136,53.41766571356693],[-121.00391808489896,53.417485961141175],[-121.00393753700399,53.417306533619154],[-121.00396639099505,53.41712749211268],[-121.00400833908199,53.41694956674479],[-121.00404464626817,53.41677140436684],[-121.00406221732912,53.41659189776986],[-121.00407226863945,53.41641206624342],[-121.00408419895855,53.416232322633185],[-121.00410741113883,53.416053044022135],[-121.00415493100097,53.415875918691206],[-121.00422488023723,53.41570084974192],[-121.00430033530945,53.41552714411074],[-121.00435537530487,53.4153503256733],[-121.00437294444671,53.41517081890888],[-121.00435271256586,53.41499140408831],[-121.00431536119004,53.414812950076104],[-121.00427988915477,53.41463458396648],[-121.00425771193284,53.41445564435723],[-121.00422989362374,53.41427647669655],[-121.00418489025462,53.414098824086054],[-121.00412652700246,53.413922299167474],[-121.00407192433366,53.413745932191745],[-121.00402504109688,53.413568209422344],[-121.00398003935014,53.41339055667418],[-121.00392933093269,53.413213230110976],[-121.00387855595976,53.41303646671427],[-121.00382402246309,53.412859536347206],[-121.00373297095528,53.41268781871218],[-121.00363024258519,53.412518970452666],[-121.00351972822286,53.41235204995613],[-121.00340337597278,53.412186564062274],[-121.00329293037244,53.412019080125674],[-121.00319020540067,53.411850231432666],[-121.00310103861591,53.41167859223878],[-121.00301771230545,53.41150550932458],[-121.00294391928685,53.41133170392687],[-121.00289133778782,53.411154297736104],[-121.00292012501932,53.410975819160136],[-121.00292829995603,53.410795908236345],[-121.00286028118799,53.410621222294864],[-121.0027865563003,53.41044686246273],[-121.0027186056788,53.41027161320804],[-121.00266595945988,53.41009477003099],[-121.00264191162022,53.40991575071712],[-121.00266512539743,53.409736480785575],[-121.00268646018313,53.40955712287941],[-121.00264341415603,53.409378994036906],[-121.00255425483769,53.40920735423069],[-121.00244570026936,53.40903994828679],[-121.0023293614004,53.4088744610814],[-121.00222282133643,53.4087060164615],[-121.00213171941344,53.408534851524685],[-121.00203679268981,53.40836408271682],[-121.00192045729726,53.40819859505839],[-121.00179640372555,53.40803447182628],[-121.0016820169733,53.40786849973464],[-121.00157930753284,53.40769965825645],[-121.001462975776,53.40753417009831],[-121.00130557460761,53.40738043164161],[-121.00115790626265,53.4072242900267],[-121.00101627605699,53.407065041882525],[-121.00091545204693,53.40689626986847],[-121.00089335915722,53.40671677470689],[-121.00092221777498,53.40653774197108],[-121.00096228846562,53.40635973773183],[-121.00099484000468,53.406181417296125],[-121.0010443085253,53.40600380820847],[-121.00111606697227,53.40582938250267],[-121.00119896995417,53.40565654843963],[-121.00129113767053,53.40548522695924],[-121.00140351618174,53.40531868145382],[-121.00151408008381,53.40515150253107],[-121.00158952743091,53.40497779774018],[-121.00165570993987,53.404802571321156],[-121.00176076550989,53.40463403756446],[-121.00191692063125,53.40448057184378],[-121.00207851462844,53.404329014715685],[-121.0022437337759,53.404178732871394],[-121.00241076542821,53.40402908407169],[-121.00259754011324,53.40388813544205],[-121.00283026033374,53.40377381626482],[-121.00308683454378,53.403681280430874],[-121.00336040904563,53.40360462441571],[-121.0036237691102,53.403518545056485],[-121.00383189660738,53.403388599703135],[-121.00406803717316,53.4032772342228],[-121.00432467259569,53.40318413249371],[-121.0045881598464,53.40309694245153],[-121.00485655459639,53.4030161303972],[-121.00513651123124,53.40294928025117],[-121.00534987249557,53.40282291261931],[-121.00547693167115,53.40265979299693],[-121.00560211031465,53.40249659425678],[-121.00580129433467,53.40236233492086],[-121.00604609062603,53.40225751087257],[-121.00630963544278,53.402169753774956],[-121.00656289848324,53.40207313683062],[-121.00670445570977,53.40191511737432],[-121.00689483288294,53.40177543724072],[-121.00708339620276,53.40163511463934],[-121.00721769753774,53.40147454380265],[-121.00732634875054,53.4013072802308],[-121.00743869222588,53.40114072869587],[-121.007591254397,53.40098541671036],[-121.00779586368327,53.40085307143988],[-121.00797360820793,53.400708358116134],[-121.00811522139261,53.40054978260981],[-121.0082477027745,53.400388568388756],[-121.0084380020822,53.40024943995436],[-121.0086565788234,53.40012666438228],[-121.00886998104508,53.39999973600189],[-121.00909202839819,53.39986361984508],[-121.00929844111582,53.39973190510516],[-121.00949403994801,53.39959580984145],[-121.00967902558945,53.39945364447616],[-121.00984963711909,53.39930526913236],[-121.01008903377318,53.39919795600952],[-121.01030934695407,53.39907637372076],[-121.01051568619178,53.398945211091245],[-121.0107003333017,53.39880584226822],[-121.01081090897745,53.398638099919914],[-121.01088241592069,53.39846533946553],[-121.01104744795371,53.398316162464944],[-121.01115587627184,53.39815057583784],[-121.01116965158396,53.397970899886786],[-121.01115510284308,53.397791167115514],[-121.01116699870136,53.39761141225169],[-121.01115225163653,53.397433351203404],[-121.01105939114001,53.397260995805006],[-121.01089387854513,53.39711198687299],[-121.01081183186274,53.396944011291026],[-121.01076111447797,53.396766686236994],[-121.01069315167864,53.396591449321186],[-121.01061170330186,53.396418449355785],[-121.01052059386161,53.396247289826256],[-121.0104178783872,53.39607844608887],[-121.01030744714166,53.39591096736184],[-121.01018916752606,53.395745971106905],[-121.01006699872242,53.395581925465855],[-121.00992926515035,53.39542172734695],[-121.00976778869402,53.395270630614476],[-121.00958652540508,53.395127130173655],[-121.00939533646137,53.39498770482741],[-121.00920206998521,53.39484988094491],[-121.00901477469424,53.394709495312306],[-121.00879743467321,53.39458357033577],[-121.00852875744407,53.394508272435615],[-121.00823797105437,53.3944601216791],[-121.0080119901897,53.39434337366206],[-121.00786440853966,53.394186685113745],[-121.00774030724652,53.394023121237936],[-121.00760044297675,53.39386507633011],[-121.00753639014007,53.393688868822196],[-121.00747421592729,53.39351274914501],[-121.0074349243307,53.39333477854011],[-121.00745428444557,53.39315590263411],[-121.00745666642365,53.392976870516975],[-121.00744965173116,53.39279745262145],[-121.00743693392879,53.39261835215843],[-121.00741864583249,53.392438451644686],[-121.00741351048532,53.39225911264146],[-121.00740844208413,53.39207921041172],[-121.00739391249873,53.39189946772974],[-121.0073641508373,53.39172077418796],[-121.00732103635302,53.391543208717856],[-121.00727034017775,53.391365881714194],[-121.00721199550293,53.39118935637808],[-121.0071651910336,53.39101106970605],[-121.00706022451766,53.39084549614536],[-121.006893071935,53.39069472154957],[-121.00669970060102,53.390558010800476],[-121.00646992001344,53.39044166494144],[-121.0062442970099,53.390322124107975],[-121.0060548871808,53.39018388951414],[-121.0058876080487,53.390034230939435],[-121.00571630657586,53.38988664914454],[-121.00563301264378,53.389713566244424],[-121.00560533867473,53.389533270351805],[-121.00544250553357,53.389393905343496],[-121.00518390632156,53.38929768345682],[-121.00496030484983,53.389177101619076],[-121.00477311480876,53.3890361546576],[-121.00467043997631,53.388867305372905],[-121.00464075788875,53.38868805661765],[-121.00466945647244,53.3885101299578],[-121.00473553334531,53.38833546364494],[-121.00487349209416,53.38817561559838],[-121.0050040680528,53.38801432504123],[-121.00518002080571,53.38786842746941],[-121.0053775236468,53.387731853954136],[-121.00554368224611,53.38758890446223],[-121.00560988682223,53.387413120103865],[-121.00568152775323,53.387239253293465],[-121.00576806725384,53.38706712670778],[-121.0058360820087,53.38689198435766],[-121.00594282223605,53.38672464190334],[-121.00602929269884,53.386553078296146],[-121.00613240639957,53.3863844602344],[-121.00623189438652,53.386214566666],[-121.00630708973954,53.38604252905341],[-121.0063283300989,53.385863731657444],[-121.00640378992959,53.385689458986754],[-121.00649401397028,53.38551805287048],[-121.00655826669863,53.385342743124134],[-121.00655326862486,53.38516228598244],[-121.00636262041591,53.38503466316494],[-121.00611008043057,53.38493532750796],[-121.00585312031276,53.38484142079715],[-121.0056024614431,53.38474216301987],[-121.00534738238623,53.384648334178465],[-121.00510081476762,53.384546444044815],[-121.0048793830747,53.38442370578867],[-121.00466787750227,53.384296892106725],[-121.0044544944768,53.384169999052965],[-121.00423695689116,53.38404630007289],[-121.0039948838898,53.383938414977905],[-121.00372915852383,53.383854799265436],[-121.00343772014173,53.38381278715585],[-121.00314119769367,53.383781782187675],[-121.00284708467453,53.38374639450961],[-121.00254896898642,53.38372879783771],[-121.00224731364865,53.38372509437075],[-121.0019465400757,53.383729854737375],[-121.00164422043709,53.38373173714211],[-121.00135928531648,53.383682688949925],[-121.00111072248843,53.38358182000493],[-121.0008579378279,53.383484708092205],[-121.00058136520329,53.3834129913167],[-121.00028946838724,53.38337487819447],[-120.99999511376316,53.38335743323024],[-120.99946101882468,53.38332372553741],[-120.99917639354057,53.38336734287557],[-120.9989143304364,53.38342762325427],[-120.99861839436602,53.38337585908433],[-120.9983278291446,53.38332656638468],[-120.99804128788068,53.38327519620171],[-120.99776458845896,53.383204590349095],[-120.99752649420905,53.38309516955808],[-120.99732936490717,53.38295883915634],[-120.99716804741767,53.38280717015529],[-120.9970244368306,53.382649508025025],[-120.9968572197251,53.3824998362135],[-120.99667404378086,53.382357353592795],[-120.99650079420441,53.38221079635075],[-120.99635329791036,53.38205409261195],[-120.99621955098671,53.381892918341165],[-120.99609164094201,53.38173030058694],[-120.99596567751881,53.381567198597445],[-120.99589008748372,53.38139330719626],[-120.99586990797377,53.38121388801434],[-120.99586864735997,53.38103414257874],[-120.9958787241095,53.380854317602775],[-120.99589068039205,53.38067456279394],[-120.99589317679971,53.380494975558456],[-120.99589567318608,53.380315388307146],[-120.99591514230325,53.38013595888221],[-120.99598687791612,53.379961534085865],[-120.99607719911762,53.379789572182574],[-120.99614893346923,53.3796151472591],[-120.99625206974228,53.379446537189736],[-120.99636627612615,53.37928008239839],[-120.99647122323076,53.37911210549582],[-120.99653557387117,53.378936246347116],[-120.9965380674257,53.37875665894598],[-120.996534925571,53.378576834188806],[-120.99653366219775,53.378397088529304],[-120.99653622169028,53.37821694681232],[-120.99653495832231,53.378037201121266],[-120.99652611528163,53.377857693229],[-120.996539879348,53.37767858041448],[-120.99665407979994,53.377512125203445],[-120.99676089975907,53.37734422701217],[-120.99682148968785,53.3771682093373],[-120.99687463149517,53.37699132091494],[-120.99692408310477,53.376813711029904],[-120.99697910347459,53.376636892697796],[-120.99704338119614,53.37646159627123],[-120.9971428164562,53.37629226375019],[-120.99729170283221,53.37613568740573],[-120.99741871270457,53.37597257427377],[-120.99749781540675,53.37579958208986],[-120.997569603023,53.3756246017006],[-120.99761153679681,53.375446675022125],[-120.99761214723974,53.37526700819599],[-120.99759196332901,53.37508758876997],[-120.99754890813584,53.374910009385914],[-120.99749639483355,53.37473259768908],[-120.99744569325098,53.37455582826283],[-120.99746891072002,53.3743765473379],[-120.99748273558238,53.37419687983966],[-120.99745873027071,53.37401785637005],[-120.99738120235969,53.37384444938665],[-120.99726310236241,53.37367887531248],[-120.99715466039582,53.37351146166687],[-120.9971116746041,53.37333332771759],[-120.99707814729561,53.37315502605283],[-120.99699297672511,53.372982419803066],[-120.99686898012885,53.37281884290945],[-120.99671367067663,53.372664611696344],[-120.99657995218956,53.3725034370921],[-120.99649471902515,53.37233138470092],[-120.99647641945717,53.37215204394239],[-120.99650903056715,53.371973158566654],[-120.99659926549221,53.371801758806505],[-120.9967298883232,53.37163992177013],[-120.99686775682244,53.37148063597374],[-120.99701481501755,53.37132342622818],[-120.9972245500706,53.371194678042414],[-120.9975120357041,53.37114221329571],[-120.9977514366533,53.37103380603202],[-120.99792372027659,53.370886642308534],[-120.99798241794255,53.37071054439489],[-120.99807452227435,53.370539222500824],[-120.99819970113107,53.370375465787816],[-120.99834480647786,53.3702187294975],[-120.99848635340484,53.3700601630967],[-120.9985944936157,53.369896811665576],[-120.99864023942204,53.36971848801635],[-120.99871751428151,53.36954485219964],[-120.99879854355345,53.369371383414105],[-120.99889802093713,53.36920149456658],[-120.99906311364968,53.369051214573304],[-120.99918828424121,53.36888745670073],[-120.99924684094933,53.36871247547589],[-120.99917327134365,53.36853754665368],[-120.99905323419243,53.3683724580664],[-120.99891167665896,53.36821375869052],[-120.99881101998878,53.36804442744101],[-120.99869681950922,53.36787789499011],[-120.99856887653924,53.36771583305713],[-120.99842738895725,53.367556578781205],[-120.99828382564898,53.367398916995676],[-120.99818129548993,53.36722950605943],[-120.99802975774527,53.3670754343175],[-120.99785274342139,53.36692928298047],[-120.99771508405698,53.36676962276975],[-120.99776191167471,53.36659807424813],[-120.9979235082154,53.36644540248544],[-120.9980792699366,53.36629417392115],[-120.99816022966259,53.36612125956637],[-120.99831269921509,53.36596595682649],[-120.99850113083136,53.365825645374755],[-120.99868587238572,53.365684612241836],[-120.99886718861379,53.365540631411626],[-120.99905554950915,53.36540088226567],[-120.99921874889189,53.36525052270184],[-120.99932197058226,53.36508079129929],[-120.9994392842319,53.36491951475174],[-120.99969757406552,53.36482650032776],[-120.99998984960197,53.3647809715493],[-121.00046707319395,53.36460844927036],[-121.00072858214365,53.36452006959284],[-121.00099176912912,53.364433440144545],[-121.00125488915421,53.364347364385345],[-121.00148564850477,53.36423185804898],[-121.00173178031116,53.3641299092183],[-121.00197468647148,53.36402333185355],[-121.00221293567682,53.363892407359266],[-121.00220178449521,53.363763907017415],[-121.00198802892724,53.36362520005384],[-121.00189119338292,53.36345546586917],[-121.00183686415076,53.36327742178662],[-121.00184302387656,53.3630985452336],[-121.0019768239504,53.36294132977165],[-121.00216582685607,53.36279598806483],[-121.00221605495788,53.362627393705054],[-121.00211754168721,53.36245590882884],[-121.00198228969515,53.3622918622631],[-121.00195573034398,53.36211834708685],[-121.00210635954917,53.3619624058748],[-121.0023606043451,53.36187146246541],[-121.00266038631423,53.36184196706488],[-121.00295954312683,53.36184949726811],[-121.00326240772297,53.3618734718681],[-121.0035380248592,53.361824988246745],[-121.00366805911906,53.36166761277675],[-121.00373818586291,53.36149030452406],[-121.00389753106917,53.36134034346877],[-121.00410551625657,53.361209831752824],[-121.00431866923344,53.36108346340151],[-121.0045318867612,53.3609565403826],[-121.00473624543066,53.36082475206783],[-121.00493019881615,53.3606852302501],[-121.00501971177307,53.36051941063513],[-121.00493051452486,53.36034887708949],[-121.0047793080964,53.36019202415363],[-121.0046180509599,53.36004036356096],[-121.00444694171298,53.35989222349791],[-121.00428562108944,53.3597411167101],[-121.00414407284732,53.359582422886774],[-121.00401425543113,53.35942029609497],[-121.00386674514127,53.35926415419738],[-121.00369168789634,53.35911752676771],[-121.00351448878509,53.35897305505649],[-121.00335920498281,53.358818840409384],[-121.0032333477667,53.358655190004185],[-121.00315622366826,53.35847842404984],[-121.00327579919798,53.35832959366246],[-121.00345465956056,53.35818999629342],[-121.00350043898726,53.358011106531215],[-121.0035180547619,53.357831031678714],[-121.00352809331514,53.357651204010246],[-121.00350782681387,53.3574723383142],[-121.00349707979377,53.35729275906486],[-121.00359074442399,53.35712374576742],[-121.00379689912876,53.356992592098486],[-121.00399366394576,53.35686105202124],[-121.0041299114523,53.356698879443584],[-121.00432305157857,53.35656606331613],[-121.00457476421633,53.35646434519197],[-121.00477675955972,53.356336384300995],[-121.00488362510335,53.356167368515244],[-121.0049292635712,53.35598959552305],[-121.00494311746759,53.35580936231601],[-121.00499237751602,53.3556328647301],[-121.00511017391082,53.35546711184387],[-121.00528585876528,53.3553223203496],[-121.00549206518834,53.35519060934601],[-121.00570175984261,53.355061290915586],[-121.00586094108239,53.35491244425456],[-121.00593829169854,53.354737684982794],[-121.00600994258198,53.35456325197165],[-121.00607602646444,53.3543880277307],[-121.00611421525659,53.35420937505171],[-121.00611478913827,53.354029706307585],[-121.00608894706203,53.35385004956111],[-121.00599768271431,53.35368111801228],[-121.00580890218548,53.353538973763335],[-121.00566858306262,53.35338594774106],[-121.00565226269411,53.353205568192486],[-121.00568307551319,53.35302548216411],[-121.00566441303047,53.35284893933897],[-121.00556188860187,53.35267953354951],[-121.005457421876,53.35251060296439],[-121.00536642830403,53.352339435816795],[-121.00526967089223,53.352169149156495],[-121.00514570341136,53.35200557921371],[-121.00505632412616,53.35183672576685],[-121.00504945917957,53.35165618661611],[-121.00505191483668,53.35147659663016],[-121.00504686142253,53.351296690707805],[-121.00501713838901,53.35111799302643],[-121.00495309445847,53.35094234366298],[-121.00487557922294,53.35076893065391],[-121.0048038948088,53.350594082749396],[-121.0047436728193,53.3504180369148],[-121.00469297115193,53.35024125952197],[-121.00464810002515,53.35006304726929],[-121.00460698367559,53.34988499295833],[-121.00457531943924,53.34970677927525],[-121.00455511812511,53.34952735877376],[-121.00455382141512,53.3493476106326],[-121.00455252471619,53.34916786247536],[-121.0045361449473,53.34898803667771],[-121.00451594414447,53.34880861610553],[-121.00449567664143,53.34862975873513],[-121.00447742018955,53.34844985389236],[-121.00446472840142,53.348270749220475],[-121.00445210253167,53.34809109025004],[-121.00443190251656,53.34791166958384],[-121.00440412845249,53.347732487217954],[-121.00434578931659,53.34755651992225],[-121.00424321725083,53.347387666832965],[-121.00413092835956,53.34722121689391],[-121.00404383842806,53.34704908877225],[-121.00397404085508,53.34687431904099],[-121.00390430967651,53.34669899497242],[-121.00382486263508,53.34652606513642],[-121.00372611506171,53.346356815232404],[-121.00360806716299,53.34619124521331],[-121.00348807734694,53.34602615033965],[-121.00338557826294,53.34585674210088],[-121.00334252745844,53.34567917119568],[-121.00341203127992,53.34550689496443],[-121.00356809507842,53.345352296201035],[-121.00373126654692,53.345201374675376],[-121.0038835740791,53.345046617472065],[-121.0040360789872,53.34489018827614],[-121.00425197377683,53.3447718084829],[-121.00452536331812,53.34469346685663],[-121.00478835289364,53.34460738244166],[-121.00504220105799,53.34450295241778],[-121.00514704681207,53.34435068904121],[-121.00500949935751,53.34419048120791],[-121.00478446026693,53.34406813665989],[-121.00456310948745,53.343946512877146],[-121.00435401606282,53.34381698580884],[-121.00416890748599,53.34367610480839],[-121.00400583881954,53.343524363150934],[-121.00390689799815,53.34335679387124],[-121.00389816351878,53.34317616595568],[-121.00395693031298,53.34299894518092],[-121.00410695308716,53.342847469978494],[-121.00432732118357,53.34272309717109],[-121.00452803786743,53.34258946931204],[-121.00470018156608,53.342442293709304],[-121.00486514878104,53.342292003678104],[-121.00503735694245,53.34214426434219],[-121.00518958178023,53.341990068453846],[-121.00525739462122,53.341816031119436],[-121.00531783114795,53.34164056925957],[-121.0054465170574,53.341478078044055],[-121.00559705958877,53.34132213081768],[-121.00574746944089,53.34116729195622],[-121.00590344176517,53.341013253017756],[-121.00606658807534,53.3408623279615],[-121.00622973427812,53.34071139372994],[-121.00637289663479,53.34055401210522],[-121.0064924564701,53.340388889853536],[-121.00659545538946,53.340220267560994],[-121.00668008363068,53.34004750309039],[-121.00672569706926,53.33986972798656],[-121.00677493102664,53.339693228265865],[-121.00689442001992,53.339528668764],[-121.0070503152664,53.339375191420196],[-121.00720446629101,53.33922050846314],[-121.00735311753421,53.3390644798912],[-121.00751082035357,53.33891163513751],[-121.00767576373065,53.338761340942234],[-121.00784975856985,53.3386142304977],[-121.00807137315746,53.33849496269702],[-121.00835237523592,53.33843153434459],[-121.0086364014109,53.33837440502262],[-121.00887907490417,53.338268375426054],[-121.00906366096538,53.3381273242538],[-121.00917395146094,53.337960695945924],[-121.00922705879874,53.33778323535943],[-121.0092464525872,53.33760379105237],[-121.0092545852343,53.337423882181184],[-121.00930749330708,53.33724809331172],[-121.00941603641701,53.33708026827879],[-121.00952826619724,53.336913155239706],[-121.00960905680923,53.336740784866386],[-121.00964158373698,53.336561901701685],[-121.00966841484373,53.33638333607641],[-121.00972889200511,53.33620730827161],[-121.00980056249026,53.33603230814278],[-121.00987585198838,53.33585859221988],[-121.0099548950791,53.33568502510075],[-121.01003762387958,53.335512178945955],[-121.01012960231742,53.33534084473756],[-121.0102508756601,53.33517692363322],[-121.01041579465644,53.33502662535609],[-121.01058601143635,53.33487935284046],[-121.01071465534181,53.3347168643152],[-121.01081581375344,53.33454759576924],[-121.01092615472245,53.33438040230934],[-121.01103468400554,53.33421257555791],[-121.0110707577796,53.33403552135509],[-121.01099519066565,53.33386163547275],[-121.01086549286721,53.333698950859194],[-121.01073767255215,53.33353634498173],[-121.0106312892816,53.33336790167027],[-121.01054607789482,53.33319585601568],[-121.01048391461333,53.33302028695764],[-121.01042369506862,53.33284423351885],[-121.0103672946216,53.332667783539115],[-121.01032623679178,53.33248917537435],[-121.01031171530317,53.3323094277756],[-121.01035529616173,53.33213268921219],[-121.01047843581097,53.33196884650974],[-121.01063254717859,53.3318141585353],[-121.01080281593306,53.33166633118331],[-121.01099460625385,53.33152783608497],[-121.01118814031057,53.331390528130555],[-121.01137811848183,53.33125139028056],[-121.01156628471358,53.33111161894919],[-121.01174378796556,53.330966340748994],[-121.01191223978121,53.33081786963958],[-121.01207894541925,53.33066821083009],[-121.01224927121449,53.33051981809078],[-121.01245687935894,53.33039097052558],[-121.01303879763546,53.33007905869866],[-121.01313007390779,53.32763737766385],[-121.0048010087032,53.32613192098167],[-121.00010388225371,53.32491205556288],[-120.99812893490899,53.323380006277034],[-120.99813385088812,53.3216882570749],[-120.99659844279562,53.32026679667177],[-120.99536702070634,53.31996832742897],[-120.99390177705959,53.319226465070365],[-120.99274272954122,53.31654439915016],[-120.99124393214159,53.315198521601594],[-120.9871318264602,53.31477772665343],[-120.98572170092699,53.31370226242645],[-120.98513421323024,53.30799888835838],[-120.98324499463861,53.30702385180509],[-120.97691071689596,53.304509450096724],[-120.97598045906217,53.30282856506842],[-120.97629803638985,53.29776428375855],[-120.97676190820115,53.292736515486936],[-120.9771296524557,53.2910426649518],[-120.97940428442612,53.28776452736009],[-120.97448776635255,53.282612619321746],[-120.97624261613947,53.27762551482514],[-120.97627568443474,53.276589675916],[-120.96768618886082,53.27836768454969],[-120.96498800482287,53.27812447411363],[-120.96208556612068,53.27719525352489],[-120.95941682502863,53.277084575114635],[-120.95083729025951,53.27902299487773],[-120.95032472993842,53.2799053208636],[-120.9457762628533,53.28101770196503],[-120.9391320952084,53.28288958612274],[-120.93561931879125,53.28428169278531],[-120.93278661223034,53.285781403881025],[-120.93070933737175,53.28751441782314],[-120.93072482104813,53.28813733456719],[-120.93172693351782,53.2913335772234],[-120.93463041244097,53.29388714861078],[-120.93944865390824,53.29694300345075],[-120.94110745141248,53.29882099900886],[-120.93627376806562,53.30090709389989],[-120.93095575336103,53.30225290545569],[-120.92268940340604,53.30441464725941],[-120.91880046304182,53.30615527683244],[-120.91414836555538,53.30709535545066],[-120.91059615713904,53.30591971210804],[-120.90530090315828,53.30257707137162],[-120.89981741288653,53.299924148900494],[-120.87995593572536,53.299351192733525],[-120.87811382735673,53.29701837511626],[-120.87432222143997,53.2928686139334],[-120.867398602657,53.28845168058016],[-120.86087339371512,53.28596956031592],[-120.85400239553161,53.28595450884366],[-120.84666077486872,53.28633646589936],[-120.84282153507144,53.28470131644295],[-120.83344461272418,53.28275285341829],[-120.82848020935961,53.28243298093601],[-120.8153412787644,53.28375397397772],[-120.80714224716293,53.28448689914986],[-120.80439492448805,53.278042582436164],[-120.80039748336753,53.27172301636122],[-120.79466568672892,53.264207607637545],[-120.78881494452231,53.261204818946105],[-120.77875830435404,53.25811297422093],[-120.7683355075092,53.25519108481407],[-120.76070219619297,53.25431551294853],[-120.75792937706544,53.25432649470572],[-120.75280589297229,53.255434226582814],[-120.74548926486598,53.25769934170088],[-120.74226759509685,53.25937464447085],[-120.73735292253714,53.26242109545427],[-120.7352832949626,53.264999549237004],[-120.73101666488385,53.26610686597198],[-120.72311546576704,53.26808126616526],[-120.71560547733729,53.26897219401078],[-120.71214100052282,53.26716105062752],[-120.7068552571565,53.26329783248027],[-120.69995894724619,53.2596706672675],[-120.69313850553216,53.25592847386119],[-120.69064422341509,53.253366314887366],[-120.68449874942222,53.25001893526254],[-120.67691985697525,53.24491022934825],[-120.67344092813225,53.239664168266145],[-120.67178227574063,53.23682113360805],[-120.67060973842965,53.23442240109647],[-120.66522876876229,53.2295869352177],[-120.65977223739611,53.22737968190713],[-120.65202165869977,53.22415446806657],[-120.64351620167582,53.22024452196074],[-120.634995424694,53.21599330946712],[-120.62638761696813,53.212202058672986],[-120.61806918834202,53.20863113233548],[-120.61087412701715,53.20334328536866],[-120.60283747121177,53.197826591540974],[-120.59221871888215,53.19169732574339],[-120.58781471736822,53.18897093596365],[-120.58076621161376,53.18927506047958],[-120.57421707751148,53.19072537043344],[-120.56822652397976,53.190519407062624],[-120.55918042669143,53.189861285607385],[-120.55124925510161,53.1867429247635],[-120.54581971521432,53.18487607598207],[-120.54233729645235,53.178886015721396],[-120.5404908910253,53.174206372181544],[-120.54057228963772,53.17066812577],[-120.54210561217452,53.16101190365096],[-120.53995376204371,53.15381659131023],[-120.53832281067756,53.15096890281284],[-120.53249881320889,53.14824066542282],[-120.5263889647906,53.14540445747242],[-120.52308937533648,53.149413921364484],[-120.52056424740815,53.15347329470969],[-120.51603133712356,53.15794231926725],[-120.51254234640315,53.162005691632714],[-120.50932188827322,53.165385845430954],[-120.5047564377638,53.16499996175401],[-120.48999977579764,53.1626376588545],[-120.47352886252554,53.15937004755062],[-120.4707696844726,53.158857707131325],[-120.4696109163248,53.15702949324633],[-120.4656898441216,53.15161720062951],[-120.46079232050036,53.145062598911416],[-120.45676092398368,53.13901869664365],[-120.45446761292611,53.13519552032072],[-120.45349010415396,53.131766766785105],[-120.45535883650263,53.12668196841566],[-120.45732472396423,53.12016484015962],[-120.45769217928364,53.11873623590527],[-120.45302621516699,53.11720994471486],[-120.44514694358502,53.11728268996732],[-120.43705730057367,53.11689879898301],[-120.42097831162921,53.110362766345276],[-120.41820062823379,53.107514863102146],[-120.41732438184032,53.10300410743055],[-120.41606537389583,53.09741364493472],[-120.41570117462646,53.084020959184485],[-120.4157558832078,53.07325501514711],[-120.4223472283608,53.065246516184544],[-120.43388712322522,53.058821434172266],[-120.4433220919037,53.049438524586584],[-120.4498142660667,53.04074414761551],[-120.45414583773189,53.03376459285127],[-120.4574931690191,53.024215381538006],[-120.45725638322341,53.0159410785913],[-120.45580101088828,53.0111446893542],[-120.44450883714619,53.00803053083985],[-120.44335477979303,53.0058630081444],[-120.442665498624,53.0020927309927],[-120.44763804618199,52.99339871277767],[-120.44693193057597,52.99330187930123],[-120.44647582731466,52.99323988854425],[-120.44601906665541,52.99318292726313],[-120.4455634047993,52.993117581788795],[-120.44510957339833,52.993038266833125],[-120.44467186924835,52.99295016231597],[-120.44423387431307,52.99286429028717],[-120.44378107110734,52.99277715972873],[-120.44334505569532,52.99267619963044],[-120.44292487546086,52.99256868445482],[-120.44250645347867,52.992447763089324],[-120.44209066825559,52.99230673320979],[-120.44168984074958,52.99216585089519],[-120.44128894329874,52.99202552126574],[-120.44088936595449,52.99187513676192],[-120.44050401543754,52.99173047642298],[-120.44010488285544,52.991576738068204],[-120.43973705405057,52.99141268044763],[-120.43937157200983,52.99123073986237],[-120.43902192623713,52.991042245183955],[-120.43870424384494,52.990838400608965],[-120.43843421134311,52.99061377058026],[-120.43816520802257,52.99038131159486],[-120.43791174770607,52.99014453327435],[-120.43764165115374,52.98992045539575],[-120.43729151059227,52.98973586959123],[-120.4369254675122,52.98955838945117],[-120.4365757725099,52.989370450324266],[-120.43625811434036,52.98916659895458],[-120.4359727859064,52.98894460149249],[-120.43570387927612,52.98871158260191],[-120.43546620268093,52.9884688003383],[-120.43530564319049,52.98820887615923],[-120.4352677960322,52.98792664788767],[-120.43524460968527,52.98764680352028],[-120.4352520638956,52.987361664630285],[-120.43524346540308,52.98708475818773],[-120.43525099219401,52.986799065144496],[-120.43524246766546,52.986521595614704],[-120.43521928225152,52.986241751007505],[-120.43518136357464,52.98596008537119],[-120.43512863808928,52.98567716168503],[-120.43507547493333,52.98539758014884],[-120.4349915999688,52.985123855955],[-120.43487759982682,52.98485152083007],[-120.43474776975633,52.9845857379445],[-120.43457249751911,52.984323982192045],[-120.43439737279584,52.98406111802179],[-120.43422225141028,52.98379824461364],[-120.43406237715594,52.98353328681055],[-120.43391782362647,52.98326568167879],[-120.43378859055954,52.982995429273736],[-120.43370487516006,52.982720586718564],[-120.43365201697462,52.9824387788769],[-120.43365882210443,52.98215866147064],[-120.43372528702648,52.98188025236305],[-120.43384994758189,52.981614704117206],[-120.4340481923364,52.98135882434257],[-120.43426131307137,52.981103648240804],[-120.43445969948294,52.980846650641254],[-120.43462854628939,52.98058657356013],[-120.43478317278561,52.98032076100005],[-120.43493735784843,52.98005829936282],[-120.43506259147628,52.97978828132009],[-120.43517367697454,52.97951198282459],[-120.43529890749275,52.97924196444241],[-120.43548196185574,52.978987612091444],[-120.4357232786529,52.978745574335946],[-120.4359935426918,52.978511083061406],[-120.4362490001551,52.9782753243427],[-120.43647550502718,52.97803201814993],[-120.436673204131,52.97778004758726],[-120.4367984200269,52.97751002733157],[-120.43687951510975,52.97723399051733],[-120.43696119488463,52.97695348535939],[-120.43704214141641,52.97667856540193],[-120.43712315953086,52.976403091281234],[-120.43720432419404,52.97612649106141],[-120.43727126954637,52.97584416476427],[-120.43733740810576,52.97556798669049],[-120.43740427907164,52.97528621428603],[-120.4374701230672,52.97501227017005],[-120.43752167684747,52.97473314514983],[-120.43757330257108,52.97445346599723],[-120.43761012423712,52.974172529087575],[-120.43763163146446,52.973894230751746],[-120.43765394306051,52.97360979298355],[-120.43766013362527,52.97333415105598],[-120.43766749651492,52.9730495636334],[-120.4376748581348,52.97276498509819],[-120.43768236722921,52.97247928051288],[-120.43759791535102,52.97221002431346],[-120.43734376065328,52.971979390520325],[-120.43702842494851,52.97175878313535],[-120.43675808434314,52.97153748895818],[-120.43645748350212,52.971318700783485],[-120.43615681194953,52.97110047481329],[-120.43585511954363,52.97089005855352],[-120.43557035400887,52.970664715433315],[-120.43528529974776,52.97044159678368],[-120.4349186975911,52.97026970261273],[-120.43451758944681,52.97013269930565],[-120.4340993394396,52.970012300541306],[-120.4336822626124,52.96988297273007],[-120.4332657755276,52.96974916625286],[-120.43286467761693,52.96961215727622],[-120.43246416840466,52.96947067868297],[-120.43206468762675,52.969321379298954],[-120.43166462345938,52.9691765467841],[-120.43126580717771,52.969022222366526],[-120.43094656763911,52.96883175890631],[-120.43066191576467,52.968605840647676],[-120.43040789409099,52.968374628398436],[-120.43015512173466,52.96813391610783],[-120.42991759180171,52.96789111966303],[-120.42968006458058,52.967648322703795],[-120.42944195366799,52.96740999346086],[-120.42918919133795,52.96716928789457],[-120.42895123246959,52.96692984053358],[-120.42869789047134,52.96669359313731],[-120.42847561601606,52.966448710151845],[-120.42826983125067,52.9661922349559],[-120.42812485930499,52.965928534102815],[-120.42799622952028,52.96565435836595],[-120.4278818864428,52.965385364465405],[-120.42776813253208,52.96511189324544],[-120.42765423227202,52.96483954786424],[-120.42754106784827,52.964561608105654],[-120.42742724442354,52.96428869941764],[-120.42728213754289,52.96402611428229],[-120.42709058336663,52.96377537281066],[-120.42683727048923,52.96353912096437],[-120.42655318858873,52.96330928682742],[-120.42629988147144,52.96307303375918],[-120.4260930255207,52.962824936633574],[-120.42591855566035,52.962558142305916],[-120.42578833564382,52.9622962601613],[-120.42567460345239,52.96202278641037],[-120.42556131159945,52.96174597027119],[-120.42543161025503,52.96148017343667],[-120.42531773585091,52.961207816263304],[-120.4252040084212,52.96093435081472],[-120.42502947913013,52.960668108926065],[-120.42483810004944,52.96041624622689],[-120.42455339022123,52.96019142912166],[-120.42425183140232,52.959980990708715],[-120.42393445174481,52.95977710253612],[-120.42361758925999,52.95956929932027],[-120.42331714057123,52.95935047604865],[-120.42303156546966,52.959132357454195],[-120.4227309021724,52.958915212680765],[-120.42244540696255,52.95869652961215],[-120.42214386916719,52.95848608561288],[-120.42184350968,52.95826669544379],[-120.42154249221166,52.95805233569154],[-120.42124206490926,52.95783350692678],[-120.42097402277074,52.95759598186836],[-120.42070605643575,52.957357902107226],[-120.42038746609934,52.957163494543124],[-120.41998293080769,52.95705381295284],[-120.41954719118297,52.95695387973284],[-120.41910858972066,52.956875731874824],[-120.41863863532735,52.95680845789475],[-120.41818237712317,52.956750824528875],[-120.41771066311178,52.95669695145159],[-120.4172538198257,52.956643782686335],[-120.41679639009928,52.9565950803443],[-120.41633661090049,52.95656424900256],[-120.41586130117159,52.9565377406734],[-120.4154003478148,52.95651584206082],[-120.41493821938046,52.95650287801938],[-120.41447609122778,52.95648991216486],[-120.4140108770225,52.95650040245866],[-120.41354103328203,52.95654607336953],[-120.41311079794967,52.95663185103836],[-120.41266378151947,52.956731432986],[-120.41222994123432,52.95684457053434],[-120.4118249555787,52.95696582251119],[-120.41143057309735,52.957120174246164],[-120.41107726754689,52.95730345459536],[-120.41069642540121,52.95746856419455],[-120.41031682980022,52.957624182170576],[-120.40990999335487,52.9577593860421],[-120.40947657654085,52.95786916226001],[-120.40904330459406,52.95797781983736],[-120.40862357628814,52.958097236447166],[-120.40820443413298,52.95821218340333],[-120.40778396546918,52.95833718219091],[-120.4073906586441,52.958483146964966],[-120.40700964447106,52.95864936156235],[-120.40667007411584,52.95884170931401],[-120.40631680676115,52.95902442114444],[-120.40593644648726,52.95918560109349],[-120.40555615634251,52.95934622575021],[-120.40516217068424,52.95949720517582],[-120.4047826109386,52.959652242142106],[-120.40438876693345,52.95980210192102],[-120.4039946986996,52.95995364038421],[-120.40358664185,52.96009775847233],[-120.40319330434707,52.96024370907644],[-120.40280011259962,52.960388532389096],[-120.4023796065469,52.96051351172149],[-120.40192266057198,52.96057437456213],[-120.40145636742734,52.96059263444195],[-120.40099184177565,52.96059748815508],[-120.40052783228538,52.96059842597675],[-120.40006507464948,52.96058987172148],[-120.39960231719967,52.960581315648454],[-120.39872845873448,52.96073976242976],[-120.39827150510631,52.96080061109969],[-120.39781337208011,52.960870385239446],[-120.39738180882797,52.96096559545545],[-120.39698792659465,52.96111543037156],[-120.39660684820385,52.9612816110553],[-120.39621296031498,52.9614314433518],[-120.39578072360933,52.96153167872888],[-120.39534981333168,52.961621850406935],[-120.39490469340288,52.9617062893692],[-120.39445757986572,52.96180581085302],[-120.39403954299276,52.96191177100689],[-120.39360427264864,52.962034892751326],[-120.3931974884486,52.962168921521666],[-120.39283125692747,52.962335799121455],[-120.3924778279359,52.96251902310069],[-120.39211100031818,52.96269036648481],[-120.39172988876732,52.96285653123416],[-120.391363645569,52.96302340420236],[-120.39096979629274,52.96317266477178],[-120.39054871192843,52.96330150673659],[-120.39012946966581,52.96341638901405],[-120.38970904409207,52.96354020587659],[-120.38929038777822,52.96365061710931],[-120.38885685774483,52.96376031706439],[-120.38841103746438,52.96384976239192],[-120.38796506881243,52.96394031409972],[-120.38751998322054,52.96402417100515],[-120.3872673879574,52.96401042156836],[-120.38702885149932,52.96400352961119],[-120.38680577754764,52.96399287918767],[-120.38656724126274,52.96398598629588],[-120.3863281141705,52.96398356094535],[-120.386105040499,52.96397290919483],[-120.38586709537253,52.96396154686203],[-120.38564453842754,52.96394698918812],[-120.38540777553052,52.96392668988528],[-120.38518765740555,52.96389369629755],[-120.38495192932172,52.9638655770447],[-120.38473122081624,52.96383705062082],[-120.38449623219144,52.96380334543429],[-120.38427670650901,52.96376588212628],[-120.38405769903409,52.963724504428406],[-120.38384039092688,52.963670285253855],[-120.38363965378167,52.96360393505391],[-120.38342404706762,52.9635368651047],[-120.38322279448934,52.963474419230764],[-120.38300600545526,52.96341629346804],[-120.38280475406113,52.96335384687545],[-120.38258914993106,52.9632867753882],[-120.38238782525933,52.96322489104754],[-120.38218827628043,52.96314959340707],[-120.38200507633243,52.963063844998146],[-120.38182084345345,52.962985906371614],[-120.3816378673033,52.962898477413425],[-120.3814399463009,52.96281090041561],[-120.38125571555281,52.96273296089351],[-120.38105498686237,52.96266660625198],[-120.3808387975324,52.962603999535304],[-120.38062164711828,52.9625486573869],[-120.38040361003974,52.96250001683436],[-120.3801858692141,52.96244914187804],[-120.37996731496294,52.96240441448119],[-120.37974839204213,52.962362474707064],[-120.37952887797725,52.96232500251972],[-120.37929390182772,52.96229128692594],[-120.37907372354671,52.96225883591388],[-120.37885302732023,52.962230298450315],[-120.37861746055975,52.962201049497075],[-120.37838130242898,52.96217626806161],[-120.37816045916611,52.96214884629658],[-120.37793976412296,52.96212030712027],[-120.37770419859953,52.962091056338885],[-120.37746789366427,52.96206739006739],[-120.37724779131976,52.96203438160818],[-120.3770282811508,52.961996904754116],[-120.37680928865109,52.96195552247374],[-120.37659140694177,52.96190575785287],[-120.37637360032168,52.96185542986202],[-120.37615586761542,52.9618045474375],[-120.37592119298789,52.96176859111646],[-120.37570227732867,52.96172664380741],[-120.37546730751745,52.961692920569114],[-120.37524365656303,52.961686716214544],[-120.37501637883187,52.96170788224265],[-120.37478606713002,52.961751941723016],[-120.37456936797389,52.96180620231148],[-120.37437907833254,52.9618870225258],[-120.37421482851136,52.96199719050272],[-120.3740374089568,52.96209380564985],[-120.37383779847725,52.96213202165647],[-120.37360223570995,52.96210276267317],[-120.37338568948734,52.962042939204984],[-120.3731855685673,52.96197210316331],[-120.37298767046181,52.96188450298131],[-120.37280412493006,52.961801528208895],[-120.37262154199792,52.96171129717656],[-120.37245434922714,52.961617863778365],[-120.37228834184108,52.96151549421655],[-120.37213720570006,52.9614138363105],[-120.37198718153716,52.961303796312066],[-120.37183649114402,52.961198787037254],[-120.37167033878417,52.9610975335686],[-120.3715197980034,52.96099140688599],[-120.37136918332975,52.96088584296674],[-120.37120318141163,52.96078347183059],[-120.37103643973633,52.96068668539972],[-120.3708694772393,52.96059156974271],[-120.37070288519472,52.96049366583945],[-120.37053681175618,52.960391856702365],[-120.37038627630041,52.960285728525974],[-120.3702195384346,52.960188940909724],[-120.3700684119501,52.96008728026809],[-120.36991839781668,52.95997723754696],[-120.3697681616542,52.9598688745776],[-120.36963405472218,52.959751733692464],[-120.3694989126782,52.95964240262564],[-120.36934867876671,52.959534039099346],[-120.36918327960767,52.95942719708184],[-120.3690320836333,52.9593260980257],[-120.36888200019062,52.95921661689592],[-120.3687473062768,52.9591039339691],[-120.36861305639806,52.95898790885478],[-120.36849427062046,52.95886811905192],[-120.36837541083192,52.958748892081985],[-120.36825714441781,52.9586251970356],[-120.36813835946965,52.958505415783264],[-120.36801942819342,52.95838674245371],[-120.36791410669315,52.958278280281576],[-120.36786233526045,52.95821734723681],[-120.36779599111603,52.958153467750044],[-120.36772816528024,52.95810075809054],[-120.36764398850661,52.958058505793986],[-120.3675446463311,52.9580177749341],[-120.36744448867438,52.957983191882704],[-120.36734507335922,52.95794301487797],[-120.3672454353374,52.95790451773555],[-120.36714490827431,52.957872722424824],[-120.36704430666558,52.95784148998855],[-120.36694303885822,52.95781527943445],[-120.36682764314351,52.957782771298085],[-120.36672585745252,52.95776046553872],[-120.36661046205246,52.95772795718843],[-120.36651023232045,52.957693927361504],[-120.36642613107935,52.95765112015954],[-120.36634277231207,52.95760271903411],[-120.36625911609713,52.95755656075448],[-120.36617560947734,52.95750927649329],[-120.36607775229243,52.957457374530975],[-120.3659936519541,52.95741456701409],[-120.36592597776313,52.95736073930828],[-120.36589011684015,52.957292699147835],[-120.36585492368337,52.95721962807344],[-120.36584842951461,52.9571558102009],[-120.36585791654905,52.95708432316058],[-120.36588205059712,52.95701521981339],[-120.36590625809035,52.956945562433795],[-120.36591515205099,52.95687854332055],[-120.36593987762976,52.95680498094772],[-120.36596364021666,52.95673867450356],[-120.3659730534423,52.95666774146059],[-120.3660119810204,52.95659991370436],[-120.36603626158573,52.956529702255594],[-120.36606039502954,52.956460598848764],[-120.36608386078362,52.95639652633801],[-120.36612286145655,52.95632814450903],[-120.3661617149661,52.9562608707144],[-120.36620004898087,52.95619751082339],[-120.36623897576688,52.95612968297277],[-120.36624838721296,52.95605875881752],[-120.3662725935622,52.95598910132226],[-120.3662962816582,52.95592334880349],[-120.36632033963375,52.95585480827911],[-120.36634461926495,52.95578459673516],[-120.36638302727913,52.95572067380515],[-120.36640782607653,52.955646548321155],[-120.36643136437272,52.955581921684185],[-120.36644070186284,52.95551155151552],[-120.36646498228524,52.95544133099631],[-120.36648933614072,52.95537055644349],[-120.36649808064199,52.955304654209414],[-120.36650756617209,52.95523316703657],[-120.36651705167029,52.955161679859756],[-120.36651122436301,52.955092831033916],[-120.36652078333599,52.95502078982514],[-120.36651480783196,52.954953057980845],[-120.36649418718521,52.95488293357531],[-120.3664885081633,52.954812967749405],[-120.36646788644208,52.95474285226916],[-120.36644741418533,52.95467161085903],[-120.36642619975599,52.954605963315416],[-120.36640513478923,52.95453918984199],[-120.36638518088367,52.954464043424025],[-120.36634924696878,52.95439656624572],[-120.36632862686459,52.95432644178755],[-120.36630756100367,52.954259677221266],[-120.36628634818119,52.95419402070018],[-120.36628126244595,52.95411958688461],[-120.3662600485482,52.95405393928901],[-120.36623957697093,52.95398269781312],[-120.3662037183936,52.9539146576089],[-120.36615239936701,52.9538503726887],[-120.36611602169042,52.953786246377014],[-120.36607957060778,52.953722674077476],[-120.36602899309149,52.95365280415779],[-120.36599261695555,52.95358866886452],[-120.36594144686114,52.95352326685201],[-120.36589027692405,52.9534578648147],[-120.36583792136567,52.953401398652666],[-120.36575545975371,52.95334630399764],[-120.36567136905134,52.953303487208245],[-120.36557144695077,52.95326722251649],[-120.36547122855777,52.953233191713565],[-120.36537286265542,52.953185202954295],[-120.36530527068734,52.95313081179257],[-120.36520631225754,52.95308729083938],[-120.36512237085954,52.95304335666436],[-120.36502274632258,52.95300485752763],[-120.3649239367195,52.95296021934725],[-120.36483984761692,52.95291740195409],[-120.36475627696178,52.952870679515],[-120.36467329949384,52.952819489069554],[-120.36459024750613,52.952768861525264],[-120.36452280545437,52.952713352914294],[-120.36443960559637,52.952663842246864],[-120.36437260868179,52.95260498258745],[-120.3643360864935,52.95254197266396],[-120.364269089914,52.95248311294139],[-120.36418618732613,52.95243136811564],[-120.36410313786169,52.952380731279966],[-120.36403562233457,52.95232578533794],[-120.36396847705748,52.95226805135856],[-120.3639018514973,52.95220640342037],[-120.36384972311595,52.952148256384895],[-120.36379796496234,52.95208732132768],[-120.36379273556072,52.95201400429554],[-120.36375688255521,52.951945963265246],[-120.3637203618444,52.95188295312559],[-120.36368443552145,52.951815466092846],[-120.36366396814734,52.95174423300849],[-120.36365807238086,52.95167593792395],[-120.36365299154428,52.951601503881264],[-120.36363163468317,52.951536972698165],[-120.36362648036572,52.95146309267323],[-120.36362065824208,52.95139424354998],[-120.36361490968093,52.951324840398534],[-120.36360908759494,52.951255991269065],[-120.36360378507737,52.95118322821668],[-120.36361327455126,52.95111174109827],[-120.36362217090407,52.9510447219213],[-120.36364645224278,52.950974510728784],[-120.36367058641693,52.95090540757888],[-120.36369405270601,52.950841335328555],[-120.3637190016128,52.95076609320483],[-120.36372782299956,52.95069963696709],[-120.3637371638894,52.95062926680449],[-120.36374687600971,52.950556099703185],[-120.36374046074631,52.950491718495364],[-120.36372043871779,52.95041713440297],[-120.36371469131205,52.95034772227933],[-120.36369355798139,52.95028151110994],[-120.36365755832574,52.95021458696485],[-120.36363709176663,52.9501433538066],[-120.36361647819311,52.95007322869285],[-120.36356531597833,52.95000782550859],[-120.36349824972596,52.94994952821841],[-120.36343007101428,52.94989961275738],[-120.3633306783756,52.94985943216786],[-120.36321412076587,52.949835856228894],[-120.36311287437026,52.94980964225488],[-120.36299616873325,52.94978718308604],[-120.3628962571698,52.94975091604746],[-120.36279671590687,52.94971186092584],[-120.36271219048982,52.949672392887926],[-120.36262862854394,52.94962566884725],[-120.36253020063207,52.94957823163408],[-120.36246209839275,52.949527752640435],[-120.36237913020352,52.949476560474906],[-120.36229556900794,52.94942983619232],[-120.36219721547907,52.94938184467024],[-120.36211313619158,52.949339025237535],[-120.3620141898447,52.94929550150236],[-120.36193018447399,52.94925212791184],[-120.3618302015121,52.94921641398192],[-120.3617305889135,52.949177911971184],[-120.36163119837879,52.94913773886573],[-120.36153114118314,52.9491025876399],[-120.36144706311767,52.94905976772432],[-120.36134759955738,52.94902014840106],[-120.36124865473501,52.94897662401436],[-120.36116457720267,52.948933803893794],[-120.36106511419983,52.94889418432898],[-120.36096616995927,52.948850659701534],[-120.36088164795073,52.94881119032923],[-120.36082500296087,52.94878711432742],[-120.36072613397836,52.94874302653537],[-120.36064146287713,52.94870468290815],[-120.36054266904209,52.94866003199987],[-120.3604585180789,52.94861777432702],[-120.3603595751015,52.94857424918271],[-120.3602750542046,52.94853477936842],[-120.36017603802429,52.948491808091624],[-120.36007709562871,52.94844828270666],[-120.35999316867758,52.948404344752475],[-120.35989415308545,52.94836137323526],[-120.35980948349327,52.94832302900099],[-120.35971113651333,52.9482750264347],[-120.35964296492686,52.94822510873062],[-120.35956007744687,52.94817335157914],[-120.35947585364289,52.94813165615114],[-120.35937706236129,52.9480870042496],[-120.3592781965056,52.9480429152232],[-120.3591941216139,52.948000102607494],[-120.35909466262804,52.94796048135614],[-120.35901058927094,52.947917659671354],[-120.35891164940236,52.947874133292096],[-120.35882816994778,52.947826843544625],[-120.35874520944657,52.94777564876628],[-120.35866165558112,52.94772892185722],[-120.35857810189917,52.94768219488746],[-120.35847916302043,52.9476386681385],[-120.35837918674588,52.9476029512438],[-120.35827869064397,52.94757114816821],[-120.35817789788625,52.947541578969854],[-120.35806194310415,52.9475135299714],[-120.35796196628651,52.94747782165561],[-120.35786072873688,52.94745160312904],[-120.35776023337986,52.947419799608],[-120.35764420559028,52.94739230421888],[-120.35754356211609,52.94736161749317],[-120.35744291878704,52.947330930680785],[-120.35732755876136,52.947298413031376],[-120.35722639564926,52.94727163993407],[-120.35712456532484,52.94724988869466],[-120.35700742457088,52.9472307744986],[-120.35689028392216,52.94721166018583],[-120.35677195586906,52.94720148159868],[-120.35665244033798,52.94720023873379],[-120.35654838381004,52.9471952416974],[-120.35642827451211,52.947198466524966],[-120.3563087589995,52.94719722331128],[-120.35619161875697,52.94717810830312],[-120.35608874998975,52.947164175023964],[-120.35597213013918,52.947141145901035],[-120.35585499020223,52.947122030557445],[-120.3557533094019,52.94709916115115],[-120.35563720895544,52.94707222673681],[-120.35553493450851,52.947053825057054],[-120.35541883432394,52.94702689042668],[-120.35531656008041,52.94700848855682],[-120.35521599283796,52.94697724581335],[-120.35510004154594,52.94694919388897],[-120.35499999489139,52.946914037067735],[-120.35490061718636,52.94687384929113],[-120.35483289895245,52.94682057782573],[-120.35476592452532,52.94676171249351],[-120.3547294215766,52.94669869936813],[-120.354782480501,52.946637173901934],[-120.35486497224251,52.94657931053326],[-120.35493274729023,52.946519616054076],[-120.35498565721439,52.94645920746821],[-120.35503879030435,52.946397118920416],[-120.35509244232463,52.946331125388596],[-120.35514550026592,52.946269599745165],[-120.35518376684952,52.94620680601329],[-120.35522218298372,52.946142886351694],[-120.35524684716519,52.94606987976657],[-120.35527039711357,52.94600525498517],[-120.35527989943155,52.945933768313814],[-120.35528955019059,52.945861164659256],[-120.35529831008179,52.945795262877105],[-120.35532327087435,52.94572002230168],[-120.35534682170088,52.945655388555394],[-120.3553710399764,52.945585732861396],[-120.35540938044048,52.94552237607238],[-120.35543404394117,52.94544936942047],[-120.35545774172881,52.94538362759743],[-120.35549675057095,52.945315239894555],[-120.35553560963567,52.94524797809188],[-120.35560278777284,52.945192751099135],[-120.35565576992047,52.945131779205404],[-120.35572413538884,52.945067616296846],[-120.35576188103016,52.94500872729488],[-120.35580073939595,52.94494146539217],[-120.3558397472816,52.944873077557276],[-120.35586381585095,52.94480453870965],[-120.35588810642896,52.94473432885074],[-120.35589745897272,52.94466395905523],[-120.3559063661285,52.94459694019883],[-120.35591586706373,52.94452545341491],[-120.3559395647802,52.944459702522025],[-120.35596437520563,52.944385578730724],[-120.35598799795082,52.944320390781],[-120.35601228804762,52.94425018087586],[-120.35602164027964,52.944179811049715],[-120.35604593142827,52.94410959219582],[-120.35606955389535,52.94404440421879],[-120.35607905443314,52.943972917397694],[-120.35607324554428,52.943904067588285],[-120.35605324005215,52.94382948189414],[-120.35604676381249,52.94376565402729],[-120.35604154878683,52.943692336280584],[-120.35603640740815,52.94361846450748],[-120.35601521573577,52.94355280571281],[-120.35597886213624,52.94348867586975],[-120.35587993685252,52.943445137890315],[-120.35578064004869,52.943404396748555],[-120.35538035471619,52.943377300075134],[-120.35514431458289,52.94335247177672],[-120.35494141728734,52.943303380601975],[-120.35472536356131,52.94324073416953],[-120.35452536330794,52.943169856688],[-120.35434237995419,52.94308350127173],[-120.35422375238893,52.942963141902624],[-120.35410542248167,52.94284054844532],[-120.35400210536187,52.94271755207338],[-120.3538845192681,52.942589373476174],[-120.35378046089284,52.942471961790275],[-120.35366280129942,52.94234434591028],[-120.35357531597089,52.94221479852465],[-120.35347244742464,52.94208845070191],[-120.35336846507178,52.94197048459414],[-120.35325028890051,52.94184677322382],[-120.35314727369395,52.94172154206822],[-120.35306045894532,52.94158697231091],[-120.35295751977964,52.94146117801174],[-120.35288527222691,52.94132955638664],[-120.35279823572907,52.941196666340915],[-120.35274189179117,52.94105794009434],[-120.35271557118752,52.940918408564805],[-120.35268932561227,52.94077831405988],[-120.35266300535388,52.94063878249495],[-120.35262122835897,52.94050300446402],[-120.35257974868043,52.940364992447826],[-120.35253797221985,52.94022921436481],[-120.35249708718258,52.940086734377296],[-120.35244015158712,52.93995247581164],[-120.35238373560523,52.93981431224628],[-120.35232687559042,52.93967949064579],[-120.35223925008634,52.939551067972694],[-120.35215177483212,52.93942151930879],[-120.35203412855464,52.93929390156411],[-120.35193067749181,52.939172020088584],[-120.35181251326951,52.93904830706418],[-120.3517091383037,52.938925862417996],[-120.35157566756953,52.93880478559177],[-120.35145639069061,52.938689453996666],[-120.35130694575497,52.938576035209884],[-120.35117169459957,52.93846836165196],[-120.35102180433407,52.93835830236152],[-120.35087124690736,52.93825326481024],[-120.3507053825658,52.93815086338666],[-120.35055438094383,52.93804917635337],[-120.3503884444672,52.93794732849206],[-120.3502220618621,52.93784884026153],[-120.35003955586183,52.93775912694345],[-120.34985727410563,52.937667733402556],[-120.34967268937021,52.9375936571994],[-120.34947324355858,52.93751886593834],[-120.34925782165064,52.93745174134236],[-120.34905681745467,52.93738867316513],[-120.34885618478995,52.93732281666769],[-120.34865622092818,52.937251937897884],[-120.34845789376291,52.93716876310671],[-120.34829040456793,52.937078644956955],[-120.34812395649251,52.93698070772965],[-120.34794264771243,52.93688205530246],[-120.34777634984435,52.93678300059571],[-120.3475927381521,52.936701665215075],[-120.34740927699822,52.9366192036326],[-120.34721050807114,52.936539386571106],[-120.34699464990427,52.93647559978494],[-120.34679164612608,52.93642761133739],[-120.34655683889558,52.936393829919695],[-120.34633451450189,52.93637863478852],[-120.34609613956002,52.93637165983906],[-120.34585776469628,52.936364684406996],[-120.34563425115917,52.936358423744366],[-120.34539468684969,52.9363603831636],[-120.34517057858196,52.936358589514],[-120.34493391353094,52.936338771489304],[-120.34469851339477,52.93630945425459],[-120.3444784209546,52.93627750103044],[-120.34425966740459,52.93623549464652],[-120.3440414354517,52.93618957398616],[-120.34382327774469,52.936143098902136],[-120.34360541800505,52.93609438947007],[-120.34338785626613,52.93604344569147],[-120.34317126137041,52.935985245667226],[-120.34295422197108,52.93593038721822],[-120.34275301055403,52.93586898814432],[-120.34253656618662,52.93580966997588],[-120.34232004862855,52.935750905424435],[-120.34210241638694,52.935700513276785],[-120.34188530482723,52.93564621580041],[-120.34168364991287,52.935588165796574],[-120.34148363233977,52.93551782878686],[-120.34131668462295,52.93542379570235],[-120.3411678733981,52.93530589594579],[-120.341049155952,52.935186639703964],[-120.34096120228914,52.93506099624084],[-120.3408741420242,52.93492865089107],[-120.34078730492769,52.934794634481115],[-120.34071518132554,52.93466244190284],[-120.34064290816303,52.93453137517402],[-120.34057138073207,52.934394714611756],[-120.34049895964625,52.93426476474176],[-120.34044273997311,52.9341254690726],[-120.340400561883,52.933993037073755],[-120.34035957463819,52.93385166929986],[-120.34031799237192,52.933714769374276],[-120.34027700566926,52.93357340154751],[-120.34023601923883,52.933432033694295],[-120.34014903837787,52.93329913365978],[-120.34006109127156,52.93317348937934],[-120.339942382873,52.93305423186588],[-120.33977641624543,52.93295293169082],[-120.33961000389071,52.932854982180764],[-120.33944314577266,52.93276038333435],[-120.33927680995644,52.932661870389694],[-120.3391103998891,52.932563920155935],[-120.33894451098506,52.93246206476151],[-120.33879519508292,52.93234807564803],[-120.33866007038961,52.93223982435776],[-120.33852598724711,52.93212376306833],[-120.33842281618165,52.932000189273424],[-120.3383358439069,52.93186728778284],[-120.33827941057748,52.931729670795555],[-120.33829801926557,52.931590049852474],[-120.33833111567053,52.93145393302218],[-120.33837959166624,52.931314627421656],[-120.33841268640535,52.93117851948113],[-120.33843233646034,52.931031079692765],[-120.33843548967037,52.93089521037748],[-120.33843916447415,52.9307554271937],[-120.338457623351,52.93061692311046],[-120.33847719796552,52.930470046216115],[-120.33851036676096,52.9303333752255],[-120.33852882522315,52.930194871095395],[-120.33853242463584,52.93005565080103],[-120.33853624790578,52.9299147505733],[-120.33853954955781,52.92977776419312],[-120.33852895937379,52.929632805818976],[-120.33851807274095,52.92949007243391],[-120.33850644071173,52.929352932818055],[-120.33848024902498,52.92921283415837],[-120.33845383363101,52.929074415403],[-120.33844294620198,52.92893169089777],[-120.33844617424576,52.92879525845473],[-120.33844977381037,52.92865603804356],[-120.33846882715764,52.928513065900844],[-120.33847257547751,52.92837272849489],[-120.33847632377268,52.92823239107659],[-120.33847999702172,52.92809261659913],[-120.33848382028887,52.92795171620352],[-120.33847285921622,52.92780954562028],[-120.33844644471695,52.92767112674412],[-120.33840487463884,52.927534225624655],[-120.33836345368074,52.92739620750839],[-120.33829179550906,52.92726067087046],[-120.33822028783992,52.92712400827131],[-120.33811735246857,52.92699876284195],[-120.33798239414622,52.9268894023842],[-120.33780003594711,52.92679910654011],[-120.33768593750622,52.926757633481316],[-120.33758587765128,52.926723024386185],[-120.3374860418643,52.92668673528262],[-120.33738598352947,52.92665211708024],[-120.3372865947136,52.926612476896324],[-120.33718608888245,52.92658121836751],[-120.33708670041818,52.92654157801308],[-120.33698619609225,52.926510310376514],[-120.33688665909149,52.92647178682082],[-120.33678742005208,52.92643102924162],[-120.33670281488727,52.92639266788317],[-120.33660335346111,52.92635358113276],[-120.336520014838,52.926305720936185],[-120.33642114819015,52.92626217508935],[-120.3363218362295,52.92622197112896],[-120.33622066255326,52.92619573366005],[-120.33612008463051,52.9261650282296],[-120.33600360696379,52.92614142502131],[-120.33590250753574,52.92611463326131],[-120.33578603012751,52.92609102983699],[-120.3356848570926,52.92606479190539],[-120.33556897562622,52.926036720393135],[-120.33546906930145,52.926000983579655],[-120.33538498801492,52.92595870740847],[-120.3353015764747,52.92591140928939],[-120.33520271318014,52.92586785347294],[-120.33511915308814,52.92582167218954],[-120.33503589223744,52.925773247974824],[-120.33493695447136,52.9257302548831],[-120.33485406575767,52.9256790425865],[-120.3347865552595,52.92562464193863],[-120.33471949295094,52.925566881412905],[-120.33465205787003,52.92551191773268],[-120.33456954169179,52.92545791727872],[-120.33450203309935,52.925403507524535],[-120.33443459855795,52.92534854371419],[-120.33435230699371,52.92529286318416],[-120.33426941983475,52.92524165046207],[-120.33420131496071,52.925191717331515],[-120.33411835429801,52.92514105851542],[-120.33403598847349,52.925085940708314],[-120.33396788531397,52.92503599850219],[-120.33386902422471,52.924992450477795],[-120.33376859980504,52.92496062604881],[-120.33364914738254,52.924959359821585],[-120.33352842930995,52.92496758321726],[-120.3334226421521,52.92497596927251],[-120.33330080606514,52.924992574147154],[-120.33319442288094,52.92500542786039],[-120.33307303357005,52.92501868160201],[-120.33296709720963,52.92502818421306],[-120.33284585675224,52.9250403207549],[-120.3327388773434,52.92505764191675],[-120.33261763673708,52.925069778223225],[-120.33250998607384,52.9250921299865],[-120.33238859630274,52.92510538302157],[-120.33228102052736,52.925127171624766],[-120.33217396676297,52.92514504628656],[-120.33206639077757,52.925166834693066],[-120.33194425558894,52.92518567208983],[-120.33183667938333,52.925207460285854],[-120.331729027962,52.92522981133293],[-120.33162130251276,52.92525271629517],[-120.33151365205613,52.92527505820896],[-120.33140473415368,52.925306898678976],[-120.33129581608833,52.9253387390475],[-120.33120100986355,52.92537688120781],[-120.33110694864928,52.92540943847733],[-120.33099862625495,52.925436810718075],[-120.3308890362685,52.925473681506965],[-120.33078138486896,52.925496022747964],[-120.33067306204505,52.925523394687595],[-120.3305665276906,52.9255373629836],[-120.33044766996059,52.9255316256599],[-120.33033060094456,52.925512484676],[-120.33021293579458,52.92549781142167],[-120.33011072416716,52.92547938742043],[-120.32999544423097,52.9254468425652],[-120.32989375396158,52.925424513478134],[-120.3297777289855,52.92539755321467],[-120.32967372890448,52.925392532365606],[-120.32955487169909,52.92538679413979],[-120.32943422556765,52.925394459321666],[-120.32931298306039,52.92540659222169],[-120.3292071200351,52.925415528498306],[-120.32908587740312,52.92542766116423],[-120.32897889549156,52.925444978904515],[-120.32887176439809,52.92546341350719],[-120.32876403682077,52.92548631585107],[-120.3286416010526,52.925507383736516],[-120.32853573644296,52.9255163283444],[-120.32841449333264,52.92552846031798],[-120.32829369748418,52.9255372412894],[-120.32818790788022,52.92554562263692],[-120.32806785751781,52.925548818581724],[-120.32794840361504,52.92554754656944],[-120.32784440338341,52.925542524104486],[-120.32772614250665,52.92553231619852],[-120.32760728517354,52.92552657600661],[-120.32748962092327,52.92551190003],[-120.32737195675409,52.925497223935565],[-120.32726974635752,52.92547879746728],[-120.32716865519261,52.925451989259344],[-120.32705442157639,52.92541162281892],[-120.32696930579827,52.925377159324526],[-120.32686925789984,52.925342541090586],[-120.32675450343322,52.925306079239625],[-120.32665348698244,52.92527871657552],[-120.3265529181264,52.92524800295302],[-120.32643689574687,52.92522103939348],[-120.32633587970197,52.9251936764554],[-120.32621881346385,52.9251745313779],[-120.32610115066507,52.92515985401013],[-120.32599834495181,52.925145894260275],[-120.3258812038141,52.92512731179253],[-120.3257806358728,52.92509659750738],[-120.3256807399707,52.925060852365455],[-120.32558136576847,52.92502120225964],[-120.3254973702295,52.92497836499015],[-120.32539799639052,52.924938714727624],[-120.3252981011801,52.92490296925741],[-120.32519857851355,52.924864435780414],[-120.32509868245128,52.92482869907493],[-120.32499811577979,52.92479798411553],[-120.32489822123526,52.92476223830278],[-120.32478235042697,52.924734156148986],[-120.32468178420699,52.924703440917526],[-120.32456412323991,52.92468876200896],[-120.32446191599935,52.92467033309325],[-120.32434350914532,52.92466123873807],[-120.32422584841152,52.92464655949099],[-120.32410878462652,52.924627412308546],[-120.32400717460831,52.924604515179645],[-120.32389122960883,52.92457699509079],[-120.3237906644029,52.92454627909492],[-120.32369024856956,52.92451444605863],[-120.32357370829226,52.92449138453573],[-120.32347329275058,52.92445955131332],[-120.32337213118142,52.924433302772535],[-120.32325670999028,52.92440186825025],[-120.32315510096855,52.924378970382605],[-120.323039157134,52.92435144945059],[-120.32293695136319,52.92433301920688],[-120.32281988901987,52.92431387073876],[-120.32270267752921,52.92429583910698],[-120.32260106905846,52.924272940759515],[-120.32248520109688,52.924244856335825],[-120.32238471291714,52.92421357618836],[-120.32228310481369,52.92419067756518],[-120.32216649095456,52.92416817758842],[-120.32204883233386,52.924153496160656],[-120.32194603037927,52.924139532862775],[-120.3218288197386,52.92412150035877],[-120.32171116136335,52.924106818592975],[-120.3216089567546,52.92408838719333],[-120.32149308994963,52.92406030178988],[-120.32139424388622,52.92401674326227],[-120.32130921071939,52.923981712701966],[-120.32120924594457,52.92394652668399],[-120.32110928133496,52.92391134058036],[-120.32099281815721,52.9238877224858],[-120.32089173352797,52.92386091779627],[-120.32077452410081,52.923842884239264],[-120.32065746407756,52.92382373361486],[-120.32054040415962,52.92380458287363],[-120.32043820078317,52.923786150454006],[-120.3203205438141,52.92377146729507],[-120.3202028869262,52.923756784018444],[-120.32009948925888,52.92374728690455],[-120.31998355031413,52.92371975401634],[-120.31988254197857,52.92369238551468],[-120.31978183242693,52.923662783026685],[-120.31968261631064,52.923622010957224],[-120.31956712477918,52.92359113574374],[-120.31946731169589,52.92355483128855],[-120.31938213169987,52.92352091627534],[-120.31928276695741,52.92348126081447],[-120.31918332713167,52.92344216821098],[-120.31908403802774,52.92340194963813],[-120.31898422579981,52.92336564476904],[-120.31888351764556,52.92333604150647],[-120.31876825209518,52.92330348561282],[-120.31868479013733,52.92325672964896],[-120.31860088029353,52.92321332446975],[-120.31850091956079,52.92317813613493],[-120.31838557945206,52.92314614280533],[-120.31828442413997,52.92311988987076],[-120.31816736722443,52.92310073676115],[-120.31804911545062,52.923090519117174],[-120.31794332991016,52.92309889126965],[-120.31783508021914,52.92312568849276],[-120.31773966935019,52.923168287651464],[-120.31764425829034,52.92321088673168],[-120.31754884703957,52.92325348573343],[-120.31746754488096,52.923302388204384],[-120.31740050121539,52.92335647722649],[-120.31731852583381,52.92341041031946],[-120.31725133241615,52.92346561619958],[-120.31716950722573,52.923518423303136],[-120.3171023134444,52.92357362909453],[-120.31702041256429,52.92362699903186],[-120.31669909130683,52.92368171594982],[-120.31647266037696,52.923697738789954],[-120.31623070114252,52.92371806401195],[-120.31600367213751,52.92373855372962],[-120.31577529802178,52.92376909550888],[-120.31554752133277,52.923795169068015],[-120.31531922071073,52.923825155957],[-120.31509263904817,52.923842293084675],[-120.31486560883314,52.92386278060552],[-120.31462611343628,52.92386467743183],[-120.31440207225617,52.9238628252004],[-120.31416257683838,52.923864721083454],[-120.31393973152613,52.92385393243352],[-120.31372219369986,52.92380348746065],[-120.3135398989803,52.923713162801384],[-120.31335708239811,52.92362674268197],[-120.31319076728087,52.923528755272976],[-120.31308806373322,52.923402370745556],[-120.31298543614528,52.92327542318032],[-120.31286727970537,52.92315278682658],[-120.3127488249275,52.9230323842272],[-120.31259841612885,52.9229272967643],[-120.31243210548955,52.922829308241134],[-120.31224989303615,52.92273841859158],[-120.31208305999965,52.922644343324066],[-120.31190129767242,52.922550102302765],[-120.31173401873849,52.922459368415346],[-120.31155225797339,52.92236512684429],[-120.31138565285256,52.92226937068879],[-120.31120329548217,52.92217959632748],[-120.31102101305818,52.922089267676796],[-120.31083708748989,52.92201121613627],[-120.31062023518169,52.92195574361362],[-120.31040196195472,52.921910886076674],[-120.31018391414467,52.92186434825795],[-120.30996579262055,52.921818364035396],[-120.3097471474265,52.9217762931585],[-120.30951289918033,52.92173908674758],[-120.30929350686456,52.92170259971536],[-120.30907426452569,52.92166499533598],[-120.30883897023119,52.92163560614282],[-120.30861965323393,52.92159856385133],[-120.3083855565693,52.921560238255694],[-120.30816676463789,52.92151928137281],[-120.30794804854077,52.921477761146356],[-120.30772880854778,52.92144015425538],[-120.30751076606998,52.921393611470805],[-120.30729302336182,52.92134483441029],[-120.30705952789614,52.9213020384298],[-120.30683849369503,52.92127783309718],[-120.30660073302329,52.92126687331399],[-120.30637730454302,52.92126053806654],[-120.30614081693453,52.92124007894562],[-120.30592038230549,52.92121140415197],[-120.30568434425385,52.92118759331219],[-120.30546331142858,52.92116338539513],[-120.30522562719871,52.92115185989903],[-120.30500160070297,52.92114998977068],[-120.30476212012695,52.92115186652876],[-120.30452323840373,52.92114927507192],[-120.30430100864386,52.921134000426875],[-120.30406272597085,52.92112694030859],[-120.30383750176642,52.92113400341514],[-120.30359674901491,52.92114536724827],[-120.30337152463575,52.92115242946293],[-120.30313384103333,52.921140899742376],[-120.30290981468723,52.921139025632264],[-120.30267093314886,52.921136430415736],[-120.30244570866343,52.92114349085876],[-120.302207426245,52.92113642698432],[-120.3019838493183,52.92113120032468],[-120.3017455670453,52.921124135515065],[-120.30150788404113,52.92111260251054],[-120.30128385791555,52.92111072530545],[-120.30104557587325,52.921103659078504],[-120.3008084924358,52.9210876569512],[-120.3005861145089,52.921073492218234],[-120.30034963072252,52.9210530214584],[-120.30012680362898,52.92104220663732],[-120.29988852216216,52.92103513806746],[-120.29966269836903,52.92104666088957],[-120.29942134439099,52.92106249282049],[-120.29919731862113,52.921060611643576],[-120.29895903720565,52.921053541191924],[-120.29873680994208,52.92103825603949],[-120.29850197587582,52.921005495395455],[-120.29614896638438,52.921046931891915],[-120.29023016301818,52.92069691817159],[-120.28322073020483,52.921229980869406],[-120.27629937639706,52.92210645337745],[-120.27403476640254,52.92226755595138],[-120.26664346969267,52.922855800623346],[-120.25955127163479,52.92333117096378],[-120.25415721854039,52.92330067275709],[-120.24981234519129,52.92269957696943],[-120.24652890196613,52.92176976178433],[-120.24079160480107,52.919970202851395],[-120.23530991992138,52.9195961031566],[-120.23058289270777,52.91928075209569],[-120.22453173334137,52.91924693853725],[-120.21751735331073,52.92068712795092],[-120.21093032849019,52.92436456679762],[-120.20520676534976,52.927185403615255],[-120.20426293501352,52.927635779721726],[-120.19876150886579,52.92805675130887],[-120.19336626427331,52.92813755084759],[-120.18941067352364,52.927315104570525],[-120.18690540245512,52.925075675803576],[-120.18652615224094,52.924787060303785],[-120.1806816879196,52.92378250891051],[-120.1770904606114,52.923470137890476],[-120.17662883320699,52.92323755008589],[-120.1743860770838,52.92214362080175],[-120.17064722040432,52.919093756924816],[-120.16749617591847,52.915360081268844],[-120.16653387898785,52.9115872120535],[-120.16499857334205,52.90741591436758],[-120.16270093290196,52.90357321157164],[-120.1612397287914,52.900934671574085],[-120.15725868256816,52.89651331076293],[-120.15307627246156,52.89204069205163],[-120.14982621487314,52.88916042421994],[-120.14581037284735,52.88685295988595],[-120.1437414804113,52.88592607318498],[-120.14131569286015,52.8847704880479],[-120.13869055263727,52.88332770803692],[-120.13785424717925,52.88234926630599],[-120.13665824546464,52.88051232471764],[-120.1359455747684,52.87885469079408],[-120.13549258661033,52.87748103138881],[-120.1349396777323,52.876507162425675],[-120.13446982954682,52.87644768581487],[-120.13069310692529,52.87642687444432],[-120.12769034496897,52.87588582914477],[-120.12656704737547,52.8753657521457],[-120.12507564452,52.87415816347889],[-120.12265917466732,52.871970335253174],[-120.11976197131413,52.87012828917],[-120.11516348739404,52.868385210714486],[-120.11104960999941,52.86670450129802],[-120.1107611627952,52.866414517059866],[-120.10910317664053,52.864689488543355],[-120.1061294408649,52.86232930567639],[-120.1041829754482,52.86031755603251],[-120.10186346999986,52.85830498826479],[-120.09999248463099,52.85715156574349],[-120.09842071036434,52.85502585232139],[-120.09680775084006,52.85050731940795],[-120.09538432376375,52.84666962002144],[-120.0947435942125,52.845584790068244],[-120.09113990898447,52.8411102921731],[-120.08768831689027,52.83919993166028],[-120.08338541369746,52.837402782183446],[-120.08019167276515,52.83600391547025],[-120.07639031898367,52.833180922482455],[-120.07444002653317,52.831001310271354],[-120.07004742423774,52.82942903376204],[-120.06678176212652,52.827696603576726],[-120.06444531530971,52.82636540177006],[-120.06321958960781,52.82584502225465],[-120.06068185640311,52.825423438182284],[-120.05663346274198,52.825454832439235],[-120.05116453248068,52.82518623278929],[-120.04741628782065,52.82424459579513],[-120.04656334473985,52.82383463031896],[-120.04181984617014,52.82083591515055],[-120.03869549024328,52.81693367121737],[-120.03725038713229,52.81361501670178],[-120.0355562840242,52.80909323282275],[-120.03391427444576,52.80622557096088],[-120.0336607823142,52.8046274835669],[-120.03361972992951,52.80193864621254],[-120.033680728768,52.79937309153517],[-120.03203562343087,52.79685046619148],[-120.02936151992002,52.79369106462287],[-120.02678053212257,52.79093388688892],[-120.02604479760332,52.79001292821645],[-120.0251654764872,52.78692585430671],[-120.02333791080417,52.784116487627834],[-120.0214140225748,52.78135782020748],[-120.02124666250249,52.78010651466182],[-120.02132121549492,52.777024239210725],[-120.02061624713691,52.77450494474123],[-120.01933951862452,52.77255586129154],[-120.01663162456626,52.77082260858559],[-120.01543355880936,52.770013981117344],[-120.01386761072682,52.76800446257575],[-120.01272844101923,52.764230196099],[-120.01230503344532,52.761833176960245],[-120.01039302959946,52.7587897032798],[-120.00707541769019,52.754830069821466],[-120.00579734600123,52.75321697030153],[-120.00358215240863,52.75074656335924],[-120.00127217921671,52.74884597342927],[-119.99978595340423,52.74786824793471],[-119.99853247540169,52.746824850034386],[-119.99578552679488,52.74623280040638],[-119.99328713014042,52.745357081883114],[-119.99224748732533,52.74491225682997],[-119.98795665377243,52.743544452672175],[-119.98478745246148,52.74204073862163],[-119.97927222196907,52.740803601120035],[-119.9747359503072,52.74012447394202],[-119.9716018444983,52.73953660408868],[-119.96950419742556,52.73899255601471],[-119.9689311395192,52.73883195986618],[-119.96672324986497,52.73748808224129],[-119.9648192719333,52.73431240874841],[-119.9646926245348,52.73099621716756],[-119.96453122773111,52.72676770742509],[-119.9645643274568,52.72516491057959],[-119.96305280470148,52.722272058962794],[-119.95963520169269,52.71917378038409],[-119.95666202888317,52.71767139771619],[-119.9527850598161,52.71698094193398],[-119.94918790703787,52.716627655335316],[-119.94669014890304,52.71786491180043],[-119.94452225247308,52.720238975484776],[-119.94099932014974,52.721773365953524],[-119.93611916456288,52.72206461100802],[-119.93140065165483,52.72184662970604],[-119.92511660240291,52.722272032506645],[-119.9206194841147,52.72290369317011],[-119.9195752009905,52.72291796985863],[-119.91373826120103,52.722711377561474],[-119.90749080367189,52.72193864363583],[-119.9039771457121,52.72089484871625],[-119.89660881130948,52.717447115730586],[-119.8913777553538,52.71602857119547],[-119.88894495285359,52.71388777351292],[-119.88692508653254,52.709800513094756],[-119.88456792046625,52.70474553657678],[-119.882839978187,52.69841852877015],[-119.87881429542576,52.69338502743674],[-119.8736970745797,52.68984813753252],[-119.86974581923046,52.68721142172374],[-119.86647250416316,52.6851405743954],[-119.86311845466282,52.68301249854961],[-119.86196483332456,52.682344364993064],[-119.86154908556014,52.68389181516964],[-119.86068233303682,52.68629975956775],[-119.85916975840206,52.68843861346347],[-119.85403691339356,52.689988121026516],[-119.84794502664563,52.69023874038626],[-119.83817200305285,52.687847972935046],[-119.83236979364226,52.68609313993286],[-119.82720429970554,52.68364152920766],[-119.82300730264093,52.68169767793615],[-119.81846255343115,52.67815007523167],[-119.81420136174225,52.67460097002434],[-119.80837570190927,52.67210214144959],[-119.8031498762186,52.67039423800446],[-119.79452565104057,52.66833044334926],[-119.78817813972708,52.666978991339015],[-119.78485979840755,52.666275736845236],[-119.77813061423204,52.66458722277988],[-119.77367565121897,52.66321545735544],[-119.7694849804231,52.661664671281606],[-119.76673012696375,52.66067085914925],[-119.765317187728,52.660570599425974],[-119.76503580745342,52.660766522555654],[-119.76227550816166,52.66266384023801],[-119.75875889365226,52.667395873579224],[-119.75539185718549,52.6734398368933],[-119.75312970751598,52.67609272711487],[-119.74981834292758,52.678593752704685],[-119.74566779592404,52.680929912431026],[-119.74009195879223,52.68019611563377],[-119.73491347524173,52.679797278343386],[-119.72813444344732,52.67976170044456],[-119.72510229204347,52.6788302304395],[-119.7203495498021,52.67745955132529],[-119.71626422426434,52.676306879543596],[-119.70977946097364,52.67609421564945],[-119.70003869574438,52.68020562292849],[-119.69230300830476,52.68584018000174],[-119.68522106922426,52.69106522858227],[-119.67718008746625,52.69561799891055],[-119.672832249224,52.69783877191969],[-119.66357622182461,52.699827448007014],[-119.65238434404932,52.700011111174796],[-119.64476500839692,52.70009453026467],[-119.63719005996457,52.70137771576999],[-119.63157403043817,52.702699223530004],[-119.6282062824048,52.70341850963046],[-119.62419654393433,52.704547700827824],[-119.61892543279195,52.70455176837856],[-119.61531567084218,52.703103677207196],[-119.61330621896687,52.69872216752554],[-119.61371048052278,52.696318148076735],[-119.61364561368934,52.69117874319418],[-119.61286334495476,52.68695544377212],[-119.61077378682228,52.682917123853215],[-119.60768218901238,52.67712574137197],[-119.60351970666835,52.67282845382329],[-119.59677358558793,52.667412380763786],[-119.58816572533098,52.66242014561023],[-119.58481472242647,52.66016972285181],[-119.58192663508075,52.657513081407494],[-119.58041420248416,52.6542152052854],[-119.5784792328137,52.651949637106526],[-119.57490614714689,52.65227330562062],[-119.56974670771741,52.65552939475432],[-119.56353731005868,52.65913474565148],[-119.5615931031916,52.65989624172051],[-119.55433829130524,52.66282955144946],[-119.55062727418158,52.664354730571425],[-119.54295770015777,52.66569057174819],[-119.53761388048743,52.666203260778985],[-119.53778850605345,52.66603229941502],[-119.54005395015552,52.663151211855414],[-119.54107732800455,52.659136649320494],[-119.54011852609774,52.65514791172323],[-119.5372993984319,52.65146458837799],[-119.53513747109722,52.64806014069885],[-119.53374058488545,52.64549824635435],[-119.5330958347311,52.642191921337805],[-119.53187010606392,52.63889386076912],[-119.5307630779561,52.63638455327035],[-119.53050239283877,52.633587940870854],[-119.52968296771039,52.63114408674298],[-119.52681486011441,52.62917506508981],[-119.51741186575389,52.62903731946674],[-119.50499417844031,52.63162113051732],[-119.498762900154,52.634082975633234],[-119.48881996574225,52.638067738345384],[-119.47981851504393,52.642496086251626],[-119.47789092375672,52.64411707647774],[-119.47258417320926,52.64605200893277],[-119.46672050786276,52.64822171439592],[-119.45820130885461,52.649274770387024],[-119.45288663008502,52.64727008904992],[-119.45039325535261,52.64529591758343],[-119.44597417636894,52.64133483995616],[-119.4379898523315,52.63832659988336],[-119.42681481519537,52.63809088998416],[-119.42299352786866,52.63915347012546],[-119.41280254825128,52.645073994130854],[-119.40715912532127,52.64878304856653],[-119.39947465273261,52.64971364394283],[-119.39139630167195,52.64972597221449],[-119.38372178574802,52.651164359052686],[-119.37541320960729,52.653522512946495],[-119.37066895958378,52.65533762630966],[-119.36664145544025,52.65617459668925],[-119.36109323889013,52.65588246883768],[-119.35830581375059,52.65362091522903],[-119.3595053950761,52.64829487463164],[-119.35900683288239,52.647100243118174],[-119.36097873164205,52.64331086645644],[-119.36158701675151,52.64073499633437],[-119.36226906567255,52.637875142161576],[-119.36215193615534,52.633075194154884],[-119.36171502564517,52.63033508363366],[-119.36162542367033,52.62679466911157],[-119.36346079581025,52.62483521475726],[-119.36726270203187,52.62275075036387],[-119.37363832355817,52.61863492067955],[-119.37458348265923,52.61502843690994],[-119.3725317352699,52.611676423057375],[-119.36822752350484,52.608286169297735],[-119.36542074048182,52.60482567726178],[-119.36344383111958,52.60090299146166],[-119.361765729806,52.597259007320446],[-119.35997030584042,52.592649703860374],[-119.35860284943189,52.59054929787285],[-119.3537583818719,52.58778883260286],[-119.34558959722447,52.58769028102237],[-119.33757386296217,52.59032938422831],[-119.32147046472473,52.595952642499746],[-119.3145350908084,52.59669618216905],[-119.30669477451801,52.59818889065134],[-119.29989436463619,52.6008172420649],[-119.29315040669114,52.60156327651944],[-119.28804864579773,52.60017498229932],[-119.28239884785074,52.599250763507776],[-119.27206350137463,52.59836071582027],[-119.26003975246005,52.59828678257157],[-119.25797153942496,52.59830495432788],[-119.25029629474504,52.59911000422459],[-119.24308865558754,52.59968049055268],[-119.23598341203048,52.60110544188167],[-119.22898865406576,52.60361280818869],[-119.2232946763101,52.60531501778357],[-119.21627358384954,52.6058232908486],[-119.21598772518843,52.6059389324502],[-119.21062361328352,52.60518266772518],[-119.20532886481301,52.603335747031856],[-119.20002638421008,52.60097916129182],[-119.19304344505682,52.59966131181612],[-119.18983337960968,52.6033965655722],[-119.19175243220982,52.6095474866967],[-119.19305164767128,52.61399226048396],[-119.18970203511644,52.61990379184266],[-119.18854286301872,52.6231672437774],[-119.18462989158614,52.62999211806835],[-119.18226247546413,52.633553600057844],[-119.17960206677449,52.63354259769162],[-119.17916245118052,52.63508592561476],[-119.17729387178409,52.63617008089698],[-119.17596926750397,52.63747973865359],[-119.1743768684819,52.63953431252049],[-119.17425837478018,52.64046250430508],[-119.17316989814667,52.6411306413983],[-119.17110229383883,52.64364377386424],[-119.17045616529869,52.64508039854332],[-119.16970524240396,52.64661391262618],[-119.16549996100238,52.64937325867842],[-119.15969993105328,52.652517453331896],[-119.15206965336672,52.656955235237625],[-119.14067059884535,52.66158925927566],[-119.13061641460834,52.66543392086534],[-119.1213458824183,52.667173841302464],[-119.11257822594057,52.66846701389888],[-119.10527868298544,52.67062111148327],[-119.1036494079247,52.66826529769781],[-119.09894937496784,52.66474015352758],[-119.09314878200057,52.663147283603394],[-119.08884065527558,52.658772119154065],[-119.0812932578708,52.65630136405985],[-119.07554807152037,52.64574673076185],[-119.07182432522505,52.6410917722273],[-119.06768506892392,52.64111249718081],[-119.06346129687165,52.637529389713166],[-119.05868181326501,52.633433778741946],[-119.0560368862108,52.63369115804836],[-119.05337426695058,52.6330504224999],[-119.05318138937376,52.633047372741686],[-119.05087194719898,52.62986892819917],[-119.05082717111321,52.626667868464445],[-119.04849622200778,52.62188714927187],[-119.04469415482272,52.61957161380751],[-119.04383317163783,52.61837426780412],[-119.04159520671766,52.61376048130561],[-119.0384410773553,52.61030252942301],[-119.03687244217858,52.60642291362524],[-119.03848448413906,52.60145127066382],[-119.03643351109473,52.59752360318266],[-119.0296373019404,52.59453715458915],[-119.02174038573045,52.59383983833268],[-119.01864425317916,52.593687386529],[-119.01546900433569,52.59456571854813],[-119.01223826498394,52.59823944237244],[-119.00766919313261,52.60054875855969],[-119.00035816571199,52.600988446600425],[-118.99410788846772,52.596856774929705],[-118.99315175964838,52.59035334189878],[-118.98971764240017,52.58700466252535],[-118.9885896974659,52.586270481690136],[-118.98171365362728,52.584252068710256],[-118.97530313373451,52.58320294236154],[-118.97050997375753,52.58225962141137],[-118.96890995831338,52.58186896495024],[-118.96389797656877,52.579727749570985],[-118.95880559987188,52.57735557636526],[-118.95475332421518,52.57652001945561],[-118.95055187281434,52.57740259937621],[-118.94698628622554,52.577761507820405],[-118.94510170785988,52.57657547318412],[-118.94206438698691,52.57436201270943],[-118.93884731873376,52.57260951605629],[-118.935350981521,52.571200396885914],[-118.9301743721516,52.56980224916407],[-118.92819263791999,52.56929878966922],[-118.92527005989591,52.56828636703204],[-118.92338122495666,52.56641308127989],[-118.9245516636616,52.562926984478516],[-118.92902071746944,52.56095944093838],[-118.93116628726814,52.559748865482284],[-118.93121853341532,52.55718376372504],[-118.93091576839277,52.55586938433207],[-118.93162444538665,52.55283615890499],[-118.93307346030322,52.549635036212976],[-118.93013354253851,52.54639685769045],[-118.92313595668094,52.54238047768415],[-118.91849616743436,52.539374645698736],[-118.91423669694122,52.53631686491571],[-118.91044143201782,52.53296897622899],[-118.90636339985791,52.52944988612961],[-118.90446136968262,52.52740235892115],[-118.90270162299822,52.521988459315175],[-118.90246619431774,52.51839288700663],[-118.90427221205043,52.51375889413249],[-118.90750308705118,52.50974588004118],[-118.9083637180755,52.504544363441106],[-118.90541677929055,52.50164662182685],[-118.89870785481426,52.49728689082278],[-118.89257745701805,52.494007536168844],[-118.8891710698382,52.49093974334798],[-118.88660714720355,52.488159463662655],[-118.88437039568936,52.482515689886355],[-118.88411759412782,52.4769799630629],[-118.88707115587296,52.47365117807049],[-118.89462189828005,52.47155815433941],[-118.90039823892103,52.47033058995095],[-118.90498879272627,52.469907848673444],[-118.90629001131664,52.46938864090722],[-118.90905511713551,52.4669170303571],[-118.91203116528307,52.4649606955036],[-118.91884953987416,52.463785254125824],[-118.92274426607263,52.46182504589456],[-118.92447124058586,52.45827142055239],[-118.92574837431499,52.455467649569144],[-118.93002665458793,52.453960417012404],[-118.93243184654636,52.4519502641765],[-118.9330407249915,52.448522178546725],[-118.93402560608624,52.44577883625222],[-118.93613403860515,52.443137721938655],[-118.9389016616577,52.44026917907266],[-118.94110045563993,52.43734512106119],[-118.93609590818907,52.434457752898176],[-118.92849840758113,52.43284270613452],[-118.92329264681442,52.427679734363274],[-118.92087039661506,52.421984060576435],[-118.92084075648849,52.42072669558031],[-118.92267733394624,52.41757688479297],[-118.92765855829812,52.413665955483374],[-118.9304154405328,52.40959549455138],[-118.92811120909997,52.40561103248318],[-118.92594112183673,52.404140180424946],[-118.92517684651861,52.4037487783135],[-118.92785769564627,52.40184632969813],[-118.93399132417271,52.39856153014824],[-118.94109573161367,52.39332358923473],[-118.94534666913093,52.3900485873608],[-118.94511152418285,52.386794287293625],[-118.93741801741885,52.38455268393679],[-118.93305601866203,52.37995428967498],[-118.93382787455636,52.37480784547217],[-118.93463970843163,52.37337706010308],[-118.93234581975334,52.369339033098946],[-118.92762394424396,52.366222304073375],[-118.9260003528859,52.363778050628234],[-118.92483722290413,52.360243191988424],[-118.92477671843693,52.35647659994977],[-118.92399291918518,52.353512985273944],[-118.9172789190809,52.34823571391216],[-118.90969020795116,52.34576545724294],[-118.9020047755412,52.344155116321865],[-118.89417360395687,52.343967283116584],[-118.8880161403358,52.344114493407844],[-118.88353950055601,52.34419577946147],[-118.87213664943421,52.34362104649766],[-118.86128878241155,52.342196069154035],[-118.85454986484446,52.34068197459156],[-118.84526393116451,52.33662401208554],[-118.83700900944285,52.33295074202797],[-118.82903610353377,52.330075712451674],[-118.82022524355355,52.32709282002346],[-118.81132432003322,52.32359425034565],[-118.80196837491611,52.32043955400404],[-118.79334257694664,52.317166137223765],[-118.7881839014017,52.31445262988454],[-118.78478632029879,52.31092869526066],[-118.78435795913325,52.307050822276885],[-118.79038635484544,52.30376921181692],[-118.80117559791472,52.302122748476904],[-118.80823848177482,52.299972463903536],[-118.80862187795366,52.29997547422975],[-118.81342879132873,52.29727149052806],[-118.81710714365802,52.29354049158277],[-118.82284621317069,52.29054988990602],[-118.83039841177019,52.29005256810682],[-118.83783616073664,52.288821441831445],[-118.84366206643821,52.285027947440106],[-118.84398035272272,52.280800717317376],[-118.84397859601286,52.28045580387652],[-118.84422824999774,52.27788580269644],[-118.84903051029396,52.274379695505246],[-118.85857790967628,52.27170503125825],[-118.87063671277691,52.267307515569094],[-118.87703423933525,52.264928229614064],[-118.88230205797042,52.26188180291404],[-118.88476914462123,52.258552168482076],[-118.88565847397197,52.2557545731973],[-118.88726608716584,52.25083670372092],[-118.88982685342464,52.24773756266722],[-118.88903192598691,52.243973056507826],[-118.87976006029848,52.24002775923205],[-118.87303012797487,52.23783870551521],[-118.86985197881401,52.23699782349651],[-118.85826899106485,52.2348317963213],[-118.84636099798104,52.23472060028706],[-118.84160762430648,52.234225752519585],[-118.83710889632908,52.23219763983221],[-118.83500803639096,52.228781223729136],[-118.83288996225096,52.22325189540518],[-118.83323570984976,52.220282632889706],[-118.8405496953425,52.21768137348067],[-118.84585270372993,52.21724982368312],[-118.85048001010473,52.215292075240306],[-118.85060947239367,52.2117527401029],[-118.84937401145133,52.20987145305185],[-118.84581447699766,52.20743466213362],[-118.84038118804813,52.20483912451904],[-118.83217009183895,52.202652088423875],[-118.82757401847464,52.20078855994275],[-118.82392307581125,52.19846978737596],[-118.81902771744521,52.1939817693639],[-118.81563554657772,52.19011346275732],[-118.81290018696764,52.18699200055162],[-118.80894479986769,52.18324041594672],[-118.80593013466373,52.180917213175796],[-118.80221732914413,52.17810231869261],[-118.80025291985923,52.178139041023925],[-118.79504747549421,52.17818610363808],[-118.7902105104945,52.17823063006979],[-118.78425374480467,52.179248989062415],[-118.77858141123664,52.181118312814036],[-118.77662116315848,52.18156908526455],[-118.77476744743367,52.18076650542111],[-118.76957505531253,52.17950083732917],[-118.76154793327105,52.18267544480546],[-118.75996651488344,52.18323652967417],[-118.75448140294534,52.184769397413014],[-118.74853631296989,52.18412717188288],[-118.74500573798186,52.18217488640049],[-118.73658819662101,52.17776007354746],[-118.73084726140117,52.17381100377742],[-118.72975321129408,52.17112541101892],[-118.72794610379087,52.16524225591536],[-118.72369573405261,52.161808862698805],[-118.71495523569565,52.16161469076666],[-118.70704735715512,52.163987808482965],[-118.70517523506516,52.16461315300917],[-118.69819103618359,52.1659565166775],[-118.69271830845939,52.16497594192713],[-118.68931444610799,52.16160102193888],[-118.68795025808093,52.157657768427036],[-118.68593180226297,52.15479897542051],[-118.67871028633373,52.151639789660855],[-118.67229399955755,52.152590990827385],[-118.67106264522857,52.1544711433839],[-118.67047831389857,52.15835042725047],[-118.667094316227,52.16250460439834],[-118.66346790947568,52.163573860108016],[-118.65861820427864,52.16412993659777],[-118.65118440971061,52.16490306786294],[-118.64457900885387,52.16591070434224],[-118.6409470727827,52.16692034300217],[-118.63598353228778,52.170558030778395],[-118.63204592571329,52.174305709353305],[-118.63174917372349,52.175959014735426],[-118.62837466095095,52.18011292077584],[-118.62061135430086,52.18339673809466],[-118.61213986749777,52.1858185438515],[-118.60868708276269,52.18722939421819],[-118.60642576283254,52.18882145283213],[-118.60026474891605,52.191418349348254],[-118.5964502617078,52.191410616765204],[-118.59153766041828,52.19076175172735],[-118.58503446235551,52.19028199359008],[-118.58215369127923,52.190156317963094],[-118.57870414133374,52.19093976624647],[-118.57738907462426,52.191733249450614],[-118.57597637396626,52.19360830543316],[-118.57463677870865,52.19651393174174],[-118.57357674243843,52.200620131255604],[-118.57271867676431,52.202951961535064],[-118.57165411793108,52.20665426951216],[-118.5702899046423,52.21149670536978],[-118.56923378540745,52.2149763263343],[-118.56815836657414,52.21925171140442],[-118.56803090511609,52.22238816009182],[-118.56556551878687,52.22659872975934],[-118.5650992651909,52.22682287669396],[-118.56341891242191,52.22733230240077],[-118.55865469057534,52.22845105259382],[-118.55462579740966,52.23094679091233],[-118.55338227589039,52.233451485126075],[-118.5533723500616,52.235217374619815],[-118.55326332032672,52.236361341061034],[-118.55443278238978,52.2394975300032],[-118.5557088087068,52.242530087381404],[-118.55761448364373,52.24653101102903],[-118.5602428818968,52.25275811007666],[-118.56184968509075,52.258239481599155],[-118.56135745911938,52.261604858953454],[-118.55803342489418,52.26632645548264],[-118.55604112083434,52.26991412327724],[-118.55487990326769,52.27287617556736],[-118.5542733391901,52.27818043207952],[-118.55220296171608,52.281189797627285],[-118.55123400104533,52.282609686812684],[-118.54711085859537,52.285106093980616],[-118.54384476388562,52.285378303223744],[-118.54152402313689,52.28479555129423],[-118.53631113966047,52.28369048144514],[-118.53148706684318,52.28264355897539],[-118.5289693117041,52.28268754691104],[-118.51992397938325,52.28316334945367],[-118.5127275544746,52.28489359698619],[-118.50897839697224,52.28590351173207],[-118.5029891822259,52.28798884464932],[-118.4979344154093,52.289962687076795],[-118.49210885373724,52.293813498298924],[-118.49049107970106,52.29665361147548],[-118.49061609888655,52.300764848107],[-118.4928109626474,52.30368140851562],[-118.49445492719946,52.3062002378247],[-118.49461156695028,52.309454406326786],[-118.49252776890665,52.311151567512034],[-118.49084237224592,52.31217335856375],[-118.48700179541888,52.313181855639],[-118.48270380675272,52.31418528272018],[-118.477761340586,52.314393515381525],[-118.47290233999428,52.315222536288374],[-118.46971100834577,52.316232205399295],[-118.46633486338123,52.317874623436445],[-118.46332290237477,52.32013654916711],[-118.45901205692121,52.3218801744524],[-118.45685520175105,52.322211239831795],[-118.45182303525071,52.32241821650756],[-118.44631344766789,52.3227341453666],[-118.44023105360276,52.3237857694495],[-118.43731632239009,52.325820103513024],[-118.43409572491406,52.32934006489912],[-118.43238366284648,52.33075286416055],[-118.4287865903699,52.3347272378811],[-118.4226861173189,52.337379581225214],[-118.41699414331003,52.33745849111915],[-118.40954625498237,52.336510281604035],[-118.40386674050802,52.33584859470636],[-118.4029313617698,52.33578656021617],[-118.39994767222215,52.33560115824179],[-118.39426036042653,52.33573730946215],[-118.3889293013781,52.336450262420215],[-118.38674946828168,52.338490173171984],[-118.3850134783448,52.34144665900447],[-118.38374669092352,52.34525994171466],[-118.38211686744386,52.34861633013535],[-118.38051409628346,52.34923065195093],[-118.37769240921027,52.35012881737924],[-118.37431240535085,52.35142194259214],[-118.37036303869964,52.35333816683712],[-118.36660442824301,52.3555944145856],[-118.3647635601769,52.359462712461685],[-118.36002889021418,52.363543002885315],[-118.35646348703203,52.36420499602149],[-118.35142044861219,52.364688010549635],[-118.34365243149476,52.36601319737587],[-118.33736622964885,52.36773937731715],[-118.33045324830438,52.3684962552329],[-118.3248507342997,52.368460146391506],[-118.31600204153358,52.367376016863346],[-118.31098661723256,52.36546463565616],[-118.30572183869596,52.362633745367745],[-118.3036359052224,52.35891130057176],[-118.30408524301627,52.35458283057809],[-118.30089991616347,52.349484653378326],[-118.29887055396622,52.3485082717449],[-118.29556145811915,52.34608830161578],[-118.29142723909241,52.34167188017892],[-118.28762965001873,52.340331498671794],[-118.28443691730958,52.341226979284656],[-118.27953367944325,52.34472874536667],[-118.27389679754485,52.34662790865291],[-118.27136543099121,52.3472960570943],[-118.26705742899229,52.34772466854584],[-118.25881748810403,52.34903853981747],[-118.2538387868252,52.351627649671336],[-118.25247868292522,52.35441340169707],[-118.25026019128045,52.358101892644584],[-118.24896269983772,52.36242554452376],[-118.24749663448358,52.36612326793044],[-118.24678246373878,52.36942591917875],[-118.24519668211502,52.37386667328192],[-118.23979378774945,52.37804581923792],[-118.23565360452096,52.37990176151402],[-118.22918803852659,52.38110521858696],[-118.22368573352705,52.38066563487283],[-118.22239066065279,52.37980437690905],[-118.22229156936649,52.379288521369915],[-118.2198202300341,52.38181662749434],[-118.21776604929421,52.385064647780816],[-118.21775859218253,52.390827635761624],[-118.21914371858725,52.396588926839236],[-118.22306314755463,52.39972810856773],[-118.22866816636207,52.40149616488344],[-118.23623852553965,52.40321135435537],[-118.24231227566041,52.40378371524711],[-118.23959797277259,52.40749131433547],[-118.23698377637129,52.41228142819027],[-118.23594556126335,52.41695726781971],[-118.23630861503199,52.42248768190726],[-118.2374338175027,52.42642719059559],[-118.2395818757251,52.42979353502806],[-118.24237878816078,52.43367236949235],[-118.24696066978055,52.43743880987237],[-118.2519967212936,52.44279945102605],[-118.25181481128827,52.446679995026095],[-118.24872618431199,52.45056125925096],[-118.24338111361095,52.450843062627165],[-118.23759159830658,52.451695357629895],[-118.2313202728653,52.45340483009615],[-118.22625632537391,52.456141686331975],[-118.22036543124031,52.4596720316689],[-118.21388948251631,52.46372276022734],[-118.20732760735615,52.46742289833877],[-118.20658407125445,52.467595644383465],[-118.1965573065008,52.47328734843849],[-118.19234017991468,52.47876231896469],[-118.19278928957287,52.482814636110014],[-118.19839621019048,52.486582986081366],[-118.20251514927668,52.48858140460057],[-118.20738338890982,52.48858375325795],[-118.21497445648092,52.488876916953046],[-118.22404822020766,52.489506345098135],[-118.22751799754006,52.48985333216386],[-118.23266621507494,52.489457264261524],[-118.23678774291861,52.49071307710747],[-118.24137591694314,52.494475674917105],[-118.24521131387627,52.49624988490872],[-118.24914015673528,52.49767329754231],[-118.2519496318936,52.499787468302266],[-118.25334330870683,52.50275368542952],[-118.25447306271869,52.50389581757092],[-118.25802558581863,52.504695540012406],[-118.26205516658652,52.505896246000724],[-118.26487099241895,52.50880370286314],[-118.26730149417055,52.51302496109323],[-118.26757937643983,52.51650345160042],[-118.26860198947259,52.52095783373016],[-118.27066358249292,52.52294939429612],[-118.2761932234365,52.52597390059074],[-118.2826624858659,52.52922909773866],[-118.28312117120927,52.53047563820799],[-118.28377708591988,52.5321941781331],[-118.28424435454095,52.53636102770568],[-118.28573411652435,52.538812583691765],[-118.28537134199628,52.543546093785295],[-118.28114030340545,52.5473128741414],[-118.27880263587188,52.54873720957154],[-118.27616726834398,52.5516452917809],[-118.27297882338931,52.55489765300829],[-118.26932560290467,52.56014353990796],[-118.27082033755154,52.56544767496549],[-118.27484997847178,52.567504407408975],[-118.27887675422669,52.56933188663531],[-118.28459633557603,52.570927122128005],[-118.29144463104765,52.57121233724524],[-118.29933534193707,52.57190219269601],[-118.30580157431126,52.573154538174954],[-118.31246924841317,52.57469435989946],[-118.3225936919281,52.577773286751075],[-118.32709331269434,52.57988153664837],[-118.33019763133538,52.58239135439308],[-118.33385344989853,52.5865558198945],[-118.3338678177022,52.589296366717704],[-118.33283464015233,52.59323280554812],[-118.33217919965536,52.59431587525221],[-118.33001410158037,52.595686673318355],[-118.32964848000348,52.59813890944294],[-118.32991880654279,52.59853949317884],[-118.33133167436583,52.6014455124949],[-118.33217992659225,52.60401608376417],[-118.33687626536855,52.60612370022034],[-118.34128160796966,52.60612065205772],[-118.34588092605794,52.60669613958004],[-118.34832515642987,52.60891942996858],[-118.34955030648972,52.610970620336055],[-118.35180052427913,52.61428021057331],[-118.35359637439849,52.61838397664248],[-118.35341203631269,52.62141006885298],[-118.35285120284496,52.62254735028735],[-118.35059285653217,52.62643035604562],[-118.35049492219893,52.629055716681286],[-118.35256797586638,52.63144772923863],[-118.35295093741743,52.6341322772513],[-118.34890365893926,52.63544578548657],[-118.3415902909605,52.63670164799906],[-118.33453728090785,52.63915909174865],[-118.33134324220615,52.64234948295913],[-118.32926869764067,52.64651884214099],[-118.3283326358147,52.648744048621026],[-118.32137800670164,52.65279186475923],[-118.31405545573419,52.652503930667606],[-118.30775568402326,52.65050855215699],[-118.29873594780864,52.65005114795531],[-118.2958168227544,52.65301881920362],[-118.29525134534549,52.656894694595266],[-118.29477483724155,52.66060733566419],[-118.29487166767093,52.66180429311339],[-118.29091436898464,52.66853306129151],[-118.28752731138711,52.67218273820674],[-118.28630252875126,52.67640165590881],[-118.2879994186326,52.67897173025635],[-118.29137218078331,52.682168966882365],[-118.29476487428425,52.68468079736446],[-118.2975813349609,52.68650504667363],[-118.30086747103823,52.69027171770626],[-118.3053891383179,52.692896587241634],[-118.30745814921283,52.69357876986367],[-118.3135675467592,52.695920765867456],[-118.31686289847718,52.697743878562186],[-118.31911116960141,52.700827610341555],[-118.32334815434115,52.70413407218311],[-118.32693172475605,52.7051071828101],[-118.33350935617922,52.70693312485791],[-118.34019326792802,52.707672154358875],[-118.34123241024744,52.70761696067974],[-118.3401063633681,52.710065346578716],[-118.33841091117682,52.71543212092751],[-118.33709480063735,52.72067836508333],[-118.3361516456803,52.725757462687135],[-118.33323433637845,52.73168760687308],[-118.32767724893056,52.73602550260374],[-118.32739559072166,52.73659487986674],[-118.33331780716267,52.73727883701678],[-118.33813004620382,52.73791048173952],[-118.3466037783034,52.73968162537613],[-118.35235210601695,52.7424183128212],[-118.35827920673914,52.7464091489983],[-118.36166926486861,52.749483471113955],[-118.36695750710908,52.75296639166856],[-118.37166634214353,52.75502017931656],[-118.37845099710243,52.75615756881093],[-118.38861755149341,52.75809213646863],[-118.395508574552,52.76014334681626],[-118.40040835622887,52.76356479217067],[-118.4028555384265,52.765501517874256],[-118.40984139400065,52.767784476255194],[-118.41531308832467,52.76959952487331],[-118.41645023422383,52.773193921716114],[-118.41663897943617,52.77741709812664],[-118.41692597236444,52.78050205401777],[-118.41730962871613,52.783296273843256],[-118.41674248288543,52.785808433856765],[-118.4173132111757,52.789230182168126],[-118.41760903223538,52.79419512215956],[-118.41685133013254,52.79727255777446],[-118.4124292803894,52.80178709175898],[-118.4089425546014,52.80407081887533],[-118.40376034727558,52.80789386155919],[-118.39943573326056,52.81251806123934],[-118.39933962117311,52.81280486605324],[-118.39651207373639,52.81691201271381],[-118.39434604533764,52.82233409266675],[-118.39397112989481,52.826101926053255],[-118.39378619549271,52.82872398514685],[-118.39359835030186,52.83186375867366],[-118.39521723752144,52.83460420237815],[-118.39842273178498,52.837508560599844],[-118.40031375598,52.840989041118924],[-118.39956063303079,52.84344341818208],[-118.39625504639626,52.845611374588486],[-118.39106632394515,52.84584218555217],[-118.38379829048785,52.84715420124254],[-118.38512271624782,52.847612896550764],[-118.38823313314725,52.84829313966677],[-118.39381006591223,52.84932297422867],[-118.39730225740153,52.85063076819671],[-118.40004008200304,52.85205739985463],[-118.40192610335566,52.851887931618684],[-118.40872667119605,52.85051234620538],[-118.4151486829449,52.84999717976135],[-118.42232362145793,52.85113252921748],[-118.42372984066785,52.85113508367055],[-118.42854776625627,52.85004705486941],[-118.43411807535573,52.849354051480056],[-118.43865395981675,52.850436655021234],[-118.44366629667228,52.85237537347953],[-118.45047013626193,52.85459338614942],[-118.45320831127485,52.858471575673455],[-118.4540710702398,52.86035517759681],[-118.45718058204812,52.86223026313975],[-118.45927484504304,52.864513766424544],[-118.46012403094247,52.867993907576285],[-118.45955950925426,52.8701619292495],[-118.45777252211877,52.870445799678684],[-118.45342693423865,52.871479901615444],[-118.45211037835635,52.87290691406037],[-118.44975571944155,52.876045947447935],[-118.44721057860792,52.87924366756444],[-118.44787749088532,52.883239587993934],[-118.44968340313841,52.88529498852945],[-118.45364912940798,52.88682794922386],[-118.45744305299247,52.888823590788874],[-118.46055851718133,52.89076190332295],[-118.46320591030249,52.89263844996548],[-118.46509912343747,52.894461356845284],[-118.46699905317521,52.89531884872678],[-118.46897717962196,52.897086834723076],[-118.4709697364422,52.899196605786315],[-118.47542652028497,52.900843626696485],[-118.47901546605448,52.90130277470937],[-118.4844042227134,52.901750468970114],[-118.49063989992094,52.903169468835095],[-118.49377260585388,52.905277986085935],[-118.49623865489885,52.90624387486861],[-118.50350639864394,52.906236209031626],[-118.50945777435479,52.90468861992903],[-118.51265965118327,52.90165515173687],[-118.51482115470432,52.89823289856996],[-118.51898269006648,52.89714302237102],[-118.52409000270397,52.899186274345944],[-118.5293012172306,52.901407732355544],[-118.53555145955713,52.90556056395933],[-118.53934060357568,52.90795290437392],[-118.5468987633602,52.907314237637536],[-118.54925752826672,52.90514297980673],[-118.5547322266049,52.902969650494086],[-118.5595386513829,52.899990848577914],[-118.56103755555958,52.89673718518503],[-118.5630873829325,52.89085024101002],[-118.5674265114557,52.88787760431966],[-118.5703369968026,52.88604921111094],[-118.57429689493358,52.884383046403],[-118.58146580481203,52.882258047524815],[-118.58958261764566,52.880358820857666],[-118.5950679161222,52.87938062700589],[-118.60289563217007,52.879305599575794],[-118.61037546037291,52.881745485735046],[-118.61142634697664,52.88431025178292],[-118.61183367421283,52.88704624815805],[-118.61185120698393,52.89012946334834],[-118.61271892589728,52.89417891033132],[-118.61216616107328,52.89606452726757],[-118.61209522861355,52.90017251989157],[-118.60822474878583,52.90149855372015],[-118.60539393134509,52.90270189905949],[-118.60475117205264,52.9047575970578],[-118.6073997359034,52.9062355819096],[-118.60985837880934,52.907084657767655],[-118.61242211509175,52.908621390154146],[-118.61432205418308,52.91078830256861],[-118.61688738006731,52.91266244758817],[-118.61870822247438,52.915458597957226],[-118.61881732697962,52.91853509659925],[-118.61789047094611,52.92110641464347],[-118.61600890888677,52.92356579222293],[-118.61498211238069,52.92688173994377],[-118.61529182816346,52.93104290194006],[-118.61492734535516,52.93167285711283],[-118.61313427840417,52.93344825873769],[-118.60831796899149,52.93528161310767],[-118.6083278476365,52.935568971882674],[-118.61174384827032,52.937213924917266],[-118.61477963902362,52.939149734787364],[-118.61799557752057,52.94125788574903],[-118.62046698414518,52.942563121787835],[-118.62340362108623,52.94386655818591],[-118.6255943277392,52.94506331745076],[-118.63110280334018,52.94778941025235],[-118.63697057153614,52.94983191448899],[-118.64170854103257,52.951129537414616],[-118.6469258348232,52.9526045695146],[-118.64864622412115,52.95539535821818],[-118.64999788556023,52.9592760829779],[-118.65446316884436,52.96137617620329],[-118.66063661030091,52.96444133002367],[-118.65988793934973,52.96547322271026],[-118.65706948271371,52.96918760465527],[-118.65776109149596,52.97255538542353],[-118.66070177750737,52.97437276236519],[-118.66545352701827,52.97630318288927],[-118.66811805198004,52.97971969011217],[-118.66701450302423,52.983321668001295],[-118.66200000225653,52.985329184174745],[-118.65623388112216,52.98716785352813],[-118.65009743135,52.9895807423667],[-118.64425184842425,52.99290720960356],[-118.64604588054314,52.993812646401935],[-118.64711030621616,52.99580853574908],[-118.64711951424277,52.9984357296335],[-118.64447600286877,52.99844430830074],[-118.64096276761241,52.99844736474131],[-118.63831446034203,52.998915162741],[-118.6368507304912,52.9998221563939],[-118.63722829459061,53.00136333542698],[-118.63893506402903,53.00467203515966],[-118.64196269658638,53.00763924745832],[-118.64651831684843,53.01123482634213],[-118.64972666661382,53.01420461826357],[-118.65210320752159,53.0185946998132],[-118.6478464109785,53.025895617044185],[-118.64984233238991,53.03005797889101],[-118.65098073010255,53.03120161208095],[-118.6556203400196,53.035024328598226],[-118.65979841009266,53.03822093604071],[-118.66578029361662,53.041417198218824],[-118.67288732956362,53.0414191519695],[-118.67762508702728,53.041132372695365],[-118.68227608606053,53.038566761184285],[-118.68510634407832,53.03497135413119],[-118.6895644852367,53.033602225575414],[-118.6943134919787,53.03576731002366],[-118.69601813387263,53.038337911172164],[-118.696696960811,53.04250012136394],[-118.69830417506618,53.0471175722614],[-118.70248742345196,53.04900150547017],[-118.70363064834663,53.04951793383985],[-118.71045898900877,53.05122989434921],[-118.7149201378929,53.05464671299602],[-118.7217562471941,53.058241780275864],[-118.72764507906754,53.05852309172051],[-118.73236945273187,53.05578441911855],[-118.73682722091425,53.05424449957983],[-118.74128991975738,53.05372467995959],[-118.74877709929953,53.05195501622331],[-118.75408095662486,53.04801343346834],[-118.75509845887936,53.04224771104936],[-118.75974114719736,53.03996434766303],[-118.76438836396589,53.042131904918456],[-118.76970384019079,53.044523909280564],[-118.77360669356035,53.04674440108454],[-118.77095983051129,53.05062701833524],[-118.76756428914487,53.053084379181456],[-118.76397421164211,53.05799414208494],[-118.76359177732529,53.05856026967002],[-118.76000023361203,53.06233168433399],[-118.75744136361583,53.06621389013612],[-118.76144627989602,53.069690624034614],[-118.76562236038777,53.07208289978944],[-118.7668574536126,53.07373960058381],[-118.76487751059884,53.075908323068056],[-118.7599546410783,53.078138224965535],[-118.75730367892857,53.08053365146865],[-118.7535084270204,53.08389991270222],[-118.74782051414506,53.085845773277136],[-118.74470260451936,53.08841326907029],[-118.74517858445289,53.09326338839314],[-118.74576119650118,53.09828168876474],[-118.74528946957497,53.099539482264],[-118.74301422686523,53.09999741432595],[-118.73779689276552,53.10085289524513],[-118.73599180218072,53.102338211091364],[-118.73477171280162,53.10593321075753],[-118.7308834441554,53.10964069912419],[-118.72708506704214,53.110899274208485],[-118.72557871023352,53.11335412877388],[-118.7277597243422,53.11580908113983],[-118.73109504587133,53.11934214942769],[-118.73746410712148,53.12230686436258],[-118.74336592653117,53.123790553922895],[-118.7515394446649,53.125723403060405],[-118.76789214299919,53.130622095758326],[-118.77751039003498,53.136267649861075],[-118.77866355945311,53.13991306822173],[-118.77914390474619,53.141682568959155],[-118.78133939539782,53.145047119227875],[-118.78115684107385,53.14778739620022],[-118.7793482168717,53.149555271766964],[-118.77936387462996,53.152808868460546],[-118.78079212565076,53.15423373410386],[-118.78613537568172,53.15919346641864],[-118.79251926505825,53.16318426245424],[-118.79365999168566,53.16329787227855],[-118.79575101216423,53.16358156999134],[-118.80117450840251,53.164202634155465],[-118.80706686615619,53.16516737325349],[-118.81212300652396,53.16927249136563],[-118.81442674849208,53.17149400976062],[-118.81794453367881,53.17251677431192],[-118.82174787099737,53.1735449736012],[-118.82604019287123,53.17639505961787],[-118.82785913654662,53.1797011046641],[-118.82939929536381,53.18260952970192],[-118.83415908744276,53.184313600751096],[-118.83815425564862,53.18510788272963],[-118.84425059606757,53.18595678116138],[-118.85253614715062,53.18731966855967],[-118.85740083152395,53.189480074796094],[-118.86084712222112,53.19289736858377],[-118.86113041167602,53.193183068976644],[-118.86352781684927,53.19620912716501],[-118.86743190957979,53.19870902379822],[-118.87125330171973,53.20036315348679],[-118.87258911008186,53.20218301888486],[-118.87375742806951,53.204637427053235],[-118.87518808864411,53.20571919304755],[-118.88109209950773,53.20656617840022],[-118.88985184093792,53.20729203154473],[-118.89879657620433,53.20790560378338],[-118.91205487857692,53.21102718348499],[-118.9177817524951,53.214550505353934],[-118.91932472362419,53.217575087676146],[-118.92068858223739,53.2226545220327],[-118.92348431147202,53.22675617705549],[-118.92682275435025,53.22834775773641],[-118.93388188002315,53.23078553634084],[-118.93810103630591,53.23414761252884],[-118.94372826901072,53.23676486496605],[-118.9482057001822,53.23606883928825],[-118.95096601748743,53.23526349477731],[-118.95753543487798,53.23513886986611],[-118.96219572061831,53.23524193312523],[-118.96735560932783,53.23660008309458],[-118.97557749081726,53.23977647447859],[-118.98090064525908,53.23970761656494],[-118.98756171875124,53.238037534625164],[-118.99507355775472,53.23596604928255],[-119.0025747511985,53.23395373683686],[-119.01057549302298,53.233017563383655],[-119.0202712318654,53.232137637711034],[-119.02311519722463,53.229449339370966],[-119.02260544223266,53.22596915455171],[-119.01981930600094,53.222664681835404],[-119.01683346585146,53.219020690822035],[-119.0146275863157,53.21731581457015],[-119.00253337865523,53.216946347050296],[-118.99765014977636,53.21438615083889],[-118.99305354019931,53.210286749104355],[-118.99044156864879,53.20550101692869],[-118.99088328536062,53.20075909184151],[-118.99144635799593,53.19927650208782],[-118.99322028049743,53.195678149074865],[-118.99834956066825,53.1933838494775],[-119.00450267562312,53.19000219578749],[-119.00837410851166,53.18565089699001],[-119.01136959065582,53.18085191550163],[-119.01248187260951,53.17804904575654],[-119.01918865071094,53.17130059777756],[-119.02427921452424,53.16666188799665],[-119.02472076456706,53.16335319533091],[-119.02137159846521,53.161018273859405],[-119.01287145763814,53.15595877820921],[-119.00390123512149,53.15147583435966],[-118.99815570594181,53.14635262768471],[-118.99935749912369,53.143554585730996],[-119.00484601676763,53.14068718018704],[-119.0138573100509,53.13735783656923],[-119.01801902184202,53.135858064817796],[-119.02208078523043,53.132593061699495],[-119.02223884762228,53.128995084349675],[-119.02354160741064,53.125572932118246],[-119.03311015753334,53.12394389051916],[-119.04225372309809,53.12534630221927],[-119.04380408523035,53.12899830272632],[-119.04406135110756,53.1367559384959],[-119.04420849460783,53.1414363030043],[-119.0468163000356,53.14662481977873],[-119.04969587630481,53.14861218834313],[-119.0539879982671,53.15025201916152],[-119.0589425070635,53.15235226082871],[-119.06152301408822,53.154057676713016],[-119.0650734679053,53.15700945266837],[-119.06908319763859,53.158543107650644],[-119.0766303035949,53.16137340502442],[-119.07986152934542,53.16233241804333],[-119.08539599409275,53.16430947406882],[-119.093956710223,53.16445559023028],[-119.0995551605589,53.16346765845635],[-119.10647838247446,53.16201989021879],[-119.11665604186608,53.16129691301442],[-119.12086081423512,53.163678707579095],[-119.12660662946534,53.16714294941486],[-119.13139693280276,53.17037564306764],[-119.13563216855522,53.17498741961958],[-119.13670089425612,53.17675158615386],[-119.13990045924183,53.182273238812876],[-119.14206212434821,53.18797423102743],[-119.14531451615066,53.189564519606805],[-119.14777486157638,53.18898239201024],[-119.15261692898649,53.187651342599295],[-119.15858452209143,53.185974472169285],[-119.16513843093502,53.184581157612676],[-119.17293457472933,53.18398030080237],[-119.17960021976894,53.18440604241467],[-119.183399146505,53.18439185162484],[-119.19092634651528,53.18470741373728],[-119.19778832094181,53.18587843770226],[-119.20552465063803,53.188357734477016],[-119.2120337247482,53.19135234956139],[-119.21633771330532,53.19316584150634],[-119.22026207682913,53.194343387398085],[-119.22730552806777,53.194772816872636],[-119.23271278158897,53.193379278181226],[-119.233518686723,53.19023460634451],[-119.2327949018881,53.186012386731136],[-119.23491555579105,53.181150086947156],[-119.24133248707726,53.17729632940297],[-119.2483561971476,53.175666665573424],[-119.25626711164686,53.17733997654664],[-119.25697366197865,53.18008151095914],[-119.25387667977837,53.18249323868951],[-119.24972290909236,53.185764027931036],[-119.24768934639233,53.18971532034048],[-119.24888631420087,53.19325027799545],[-119.25064407017089,53.19695456023427],[-119.25240797145375,53.20099903878583],[-119.2561103245315,53.206401158277245],[-119.25679563859796,53.20777058498226],[-119.26031041182654,53.213693002850704],[-119.2637980040381,53.21875384378285],[-119.26883284375604,53.2240450177373],[-119.27105512595107,53.226086485942034],[-119.27691430141651,53.23028630278171],[-119.28070649701851,53.235349100572904],[-119.28391465299538,53.23972861078577],[-119.28768721572057,53.244167600411565],[-119.28848366295325,53.24570171293898],[-119.29277547634442,53.2521917065947],[-119.29529509597775,53.25531964345221],[-119.29951958754904,53.257408577807276],[-119.30614179937798,53.26074432428708],[-119.31603280861411,53.26612116873842],[-119.31950721426401,53.26838407129775],[-119.32498388411331,53.27172928525443],[-119.32857064042388,53.275193862628804],[-119.33256901656391,53.28054275400805],[-119.33403278960361,53.28264400949633],[-119.33790459955651,53.28651191386927],[-119.3363129865368,53.28903022801371],[-119.33177937757122,53.29162537949405],[-119.32725225907636,53.29484249330571],[-119.3273154962423,53.298728951148256],[-119.33008566451981,53.299452168909426],[-119.3346716737487,53.299487571183306],[-119.34039772751179,53.29985867614931],[-119.34590411025708,53.29837224654062],[-119.34771361474687,53.30364401289639],[-119.35003108137003,53.30580134800086],[-119.35447912204155,53.30977338799326],[-119.35461069474768,53.31200035175681],[-119.35082885084283,53.31413319758129],[-119.34550941540665,53.31547685477297],[-119.3446098004637,53.3183925499437],[-119.34543147770698,53.32255776582814],[-119.34675004836954,53.32711770397487],[-119.34806893371702,53.331963993814014],[-119.35048855201175,53.334632166029245],[-119.3540769424487,53.33803702256748],[-119.35768655930445,53.34236337117954],[-119.36232654509963,53.34581893182835],[-119.36396452496547,53.34655313363208],[-119.36837238010128,53.34813203418503],[-119.37308858068211,53.35072999498687],[-119.3754284403754,53.35305715743998],[-119.37677582391834,53.35391106731181],[-119.38044236981575,53.35645902886412],[-119.38306423821625,53.358728596492845],[-119.38712536389195,53.36127300208307],[-119.38952390780007,53.36188998202756],[-119.3957520722604,53.36373960817853],[-119.3986523736167,53.36549655022527],[-119.40201248559036,53.36644636175934],[-119.40383510295008,53.36649541096468],[-119.4066846605055,53.366073251086725],[-119.41001600475461,53.36508652091589],[-119.41855602227407,53.3618431984714],[-119.42774935776399,53.35750815546501],[-119.43442604513535,53.356782662590824],[-119.43881120331338,53.35630077240977],[-119.44595697904892,53.35557021736787],[-119.45436545014317,53.356147682601375],[-119.46472573676682,53.358371771402894],[-119.47068322397189,53.35993351845655],[-119.47702790489055,53.362120957218536],[-119.4819111050856,53.36271678341418],[-119.48905661433795,53.361987550191856],[-119.50170919937301,53.36407639741558],[-119.50894882740737,53.36763009996743],[-119.51471621236375,53.37004813596278],[-119.51549886841441,53.37026922238829],[-119.51954731104594,53.36755814151558],[-119.52466485805907,53.36575691348817],[-119.53784247135545,53.365037750454086],[-119.54635521921391,53.365836391660366],[-119.54856486753523,53.36621981328704],[-119.5544499182611,53.36886832231355],[-119.55782886280065,53.37089898255469],[-119.56311289597099,53.372344436949255],[-119.56867468145134,53.37316348864682],[-119.5730131448736,53.37495993095274],[-119.5771632560247,53.37670437779729],[-119.58263877866135,53.378092880571884],[-119.58312059125296,53.37820667577228],[-119.5901711513162,53.38186560397915],[-119.59729273771619,53.384272520461835],[-119.60542762176448,53.38450128467349],[-119.6078810430413,53.38299395822989],[-119.60497191529889,53.38153297937634],[-119.60299618498692,53.378116592716665],[-119.598110644395,53.372953199443515],[-119.59247592547028,53.368941446939175],[-119.5924181455096,53.366544014467664],[-119.59599870174877,53.36428565848002],[-119.60572255791428,53.363189791848804],[-119.61537670998649,53.362946535576874],[-119.6174506770929,53.36213463231163],[-119.62026962953526,53.35960237621496],[-119.62214951129718,53.35827435094868],[-119.6244652057314,53.35985269186698],[-119.62452622266444,53.36214109225264],[-119.62764579238532,53.36480189763478],[-119.6323475858627,53.366305155812924],[-119.63763107596601,53.36706496935508],[-119.65112272822817,53.36804750562241],[-119.66345743753065,53.36858202341532],[-119.66749376728905,53.36929296868531],[-119.67626724790016,53.372993436231035],[-119.6783574988343,53.37669053283857],[-119.67852171281056,53.379719814946846],[-119.6800434683302,53.383076690551974],[-119.68304832844588,53.384822536053534],[-119.68708669360973,53.38593435969536],[-119.69141991267243,53.38709881136283],[-119.69279399511191,53.38902987966355],[-119.69389351006126,53.391077374812966],[-119.69619241541955,53.39128437528884],[-119.6977237473708,53.391162100315555],[-119.69848119772865,53.39075241868788],[-119.70712211846067,53.3881144251439],[-119.71559905238777,53.3874742054484],[-119.72318832755708,53.38872204142167],[-119.7254281694555,53.390133829955104],[-119.72595830796102,53.39235722452015],[-119.72661851986472,53.39583700109679],[-119.72760431142328,53.397543478036724],[-119.72967871913528,53.40026958957195],[-119.72965755192718,53.40284284196878],[-119.73010603201011,53.40591942731735],[-119.73344132658254,53.40892229616135],[-119.74010539531798,53.41183508558616],[-119.74078828831125,53.41222927665035],[-119.74391441397178,53.41471409939253],[-119.7450388915603,53.41813823701593],[-119.74729664450885,53.42046080384523],[-119.75039734111019,53.421801432218395],[-119.75494310652961,53.42370826461033],[-119.75596832787994,53.42638251000486],[-119.75784171476698,53.4286491954972],[-119.75961027330261,53.430298544848974],[-119.75988010384701,53.43377820774625],[-119.75716713479362,53.43603171979008],[-119.7564658818896,53.43860623722332],[-119.75764370694016,53.43985118885481],[-119.76045712250829,53.44119998101837],[-119.76637026830551,53.44452244639912],[-119.76933232528981,53.44803518583954],[-119.77019049898689,53.451741812584835],[-119.77143362622063,53.455101968768815],[-119.77401031559668,53.458564532551854],[-119.77676160358483,53.46156832695682],[-119.77857359523601,53.46498117122342],[-119.77925055374823,53.46869109281816],[-119.78016755114217,53.47068228932754],[-119.78616542752526,53.47336854576877],[-119.7891898841809,53.47546182554038],[-119.7899253028579,53.47796634339072],[-119.7894102806429,53.48031619224009],[-119.78723991097377,53.481764318832106],[-119.78135171893032,53.483642315492155],[-119.77736287717768,53.488755763487354],[-119.78015273645555,53.4932508113364],[-119.78480973851967,53.49497903575908],[-119.78787662693614,53.49546694242311],[-119.7924873898003,53.49577101446236],[-119.79911920101098,53.496457971088056],[-119.80066300310682,53.49678633416397],[-119.80639526941003,53.49976331371366],[-119.80980849899622,53.50201612441724],[-119.81147052556449,53.50308590349315],[-119.81680070388441,53.505611834142755],[-119.82285252348463,53.50972840819676],[-119.82839413779709,53.51607891448491],[-119.83220832709311,53.5191281531635],[-119.8329861386444,53.51941018925639],[-119.83641002720039,53.518518618109866],[-119.84152722429799,53.51601660994751],[-119.84725365079831,53.511738892086825],[-119.84821694095615,53.5080734832237],[-119.85718174232223,53.50290343063716],[-119.86561090568394,53.50282472103716],[-119.86853871667196,53.50468522469758],[-119.87204994893537,53.506706658494565],[-119.8761073949374,53.50821072253778],[-119.88191083648778,53.509705960245],[-119.8888846076613,53.51243538713974],[-119.89034210540964,53.51305100030655],[-119.89718588595998,53.51761606688526],[-119.8992186396675,53.52199057118188],[-119.89947151706045,53.52764785779247],[-119.89605940234325,53.5358530213656],[-119.89167717567754,53.53686358892293],[-119.88729062209825,53.53759043140136],[-119.88257171337283,53.54038186349592],[-119.87723026887622,53.54482943391871],[-119.87666204220203,53.54528878444365],[-119.86884900817215,53.54742545392167],[-119.86161357187214,53.549655480721206],[-119.86021123271101,53.554244500922046],[-119.86110479594674,53.558916886909145],[-119.86314938819994,53.563302744713454],[-119.86808331653104,53.5683948441589],[-119.87322674051,53.57040650193831],[-119.8808828254456,53.57279534274194],[-119.88302265970061,53.57374501541976],[-119.89104171212573,53.57927184191316],[-119.89753378161288,53.58486326887233],[-119.90239686672614,53.59058968315721],[-119.9047409083022,53.595254544783415],[-119.9053597907843,53.5968472866824],[-119.9120054173695,53.603815462796526],[-119.91868142958151,53.60557634794491],[-119.92720915641668,53.60840806746411],[-119.92779105867076,53.61183133166439],[-119.92315843010981,53.61461940156443],[-119.91804627770459,53.61735422071963],[-119.91401795205243,53.61744745174842],[-119.9085583201831,53.61807410429204],[-119.9039199710807,53.62057453005179],[-119.89971951782942,53.621530983491],[-119.89654624456229,53.62138962918057],[-119.89034330748389,53.6195017066445],[-119.88645964667293,53.61839613184963],[-119.8755114327606,53.61838372306955],[-119.87231582915454,53.61767051298075],[-119.8677960206438,53.61416878938824],[-119.86638960647218,53.61183710890284],[-119.85275367377018,53.60870870089048],[-119.84169193526684,53.60834595847061],[-119.83729304819282,53.609304057714844],[-119.8308701307476,53.609756564934344],[-119.8253360307576,53.607178262539215],[-119.81630128243309,53.603601438283356],[-119.80623125973658,53.60414636540355],[-119.80104475788232,53.60436285801229],[-119.79272212164204,53.60214910941432],[-119.78761146469033,53.59756177043448],[-119.78350235170417,53.59462818260774],[-119.7796129435675,53.59277526790129],[-119.77402776002042,53.5917979982205],[-119.76451629265001,53.5918714042496],[-119.75098422338591,53.59250216305876],[-119.74363966371934,53.59444619683483],[-119.74053686734827,53.597500810596785],[-119.7372949481397,53.602494671529996],[-119.73277572526416,53.60596228554827],[-119.72942980473262,53.60667438277603],[-119.72331878034085,53.60797534260347],[-119.71537758061143,53.609813362810456],[-119.71295580987575,53.61296961500571],[-119.71301411628664,53.61571442626572],[-119.71412423118524,53.61753510943605],[-119.71685833428144,53.61968416639822],[-119.71853116238314,53.621103134159206],[-119.7205045759736,53.62325534894325],[-119.72217908047368,53.62506961888372],[-119.7230904161231,53.62700230429582],[-119.72574359165971,53.62949432839125],[-119.72952985892842,53.630725548525284],[-119.73242180806047,53.63132718638685],[-119.73300625924216,53.63189371147644],[-119.73450993269384,53.63393944411563],[-119.73523546073584,53.636101203393814],[-119.73577339539375,53.638499397675474],[-119.73747348920286,53.641571385091424],[-119.73834151548289,53.645219905759525],[-119.73802536432333,53.6481383712345],[-119.73530471316678,53.65135585537718],[-119.73615106881736,53.65403333392242],[-119.73729463534775,53.65807861979996],[-119.73582130500628,53.660894250925125],[-119.73653819793307,53.662711400525154],[-119.74023119767077,53.66377414724631],[-119.74535871867202,53.66532510553828],[-119.74623631595479,53.665667342624566],[-119.75261207939107,53.666817723613896],[-119.75680430143397,53.668721271148485],[-119.75830945987957,53.67128220730996],[-119.76028528951491,53.67354888213841],[-119.76202772941025,53.67422061122897],[-119.7640623678591,53.67477205790827],[-119.76882523833106,53.67673860782379],[-119.76944367929593,53.678104469152224],[-119.77162219746836,53.680651904669844],[-119.77409123890482,53.683091835276166],[-119.77360518267382,53.68675478148229],[-119.7735146065239,53.69103372431689],[-119.77607142428064,53.693298788878636],[-119.77794488660786,53.694426826228344],[-119.78115040449096,53.6957174312443],[-119.78571786861797,53.69778878618827],[-119.78656285195338,53.70029858564547],[-119.7863561936794,53.70372920316586],[-119.78833312419329,53.705599482395556],[-119.79114133531614,53.7065975704003],[-119.79541757790948,53.70828116196632],[-119.79869740935479,53.708365740688144],[-119.80253046071297,53.70719030290558],[-119.80720898765229,53.70606751355312],[-119.8165186102972,53.70444413960083],[-119.82076274310377,53.70120927839412],[-119.83039448242529,53.69729487890215],[-119.83819647409459,53.69791233261871],[-119.84076434346764,53.700230914002326],[-119.84280048887439,53.70398428940171],[-119.843293555465,53.70838398700946],[-119.84307007780161,53.71072184315853],[-119.84488538134352,53.71391114325275],[-119.84673800348445,53.71457871192522],[-119.84989554249927,53.71415186367297],[-119.855863503921,53.71358312064281],[-119.86299521816156,53.713805147990485],[-119.86917309685695,53.71460469160694],[-119.87329997047587,53.71359615187602],[-119.87673444042824,53.712422757131876],[-119.88009141180903,53.711879419874684],[-119.88566258440714,53.71182691216264],[-119.89190532688657,53.71062398906984],[-119.90073601510474,53.70985568454764],[-119.90645289116716,53.71088838777669],[-119.90919340310178,53.71257714592731],[-119.91060543499411,53.714909343499116],[-119.91172959334673,53.71712624501053],[-119.91447770979549,53.71887144635996],[-119.9158905768237,53.72120133512107],[-119.91590532291102,53.721831109649706],[-119.91042186532752,53.72211046290165],[-119.90438689018151,53.723136673881804],[-119.89840996226044,53.7266788804973],[-119.89532897046898,53.72991094430715],[-119.89554754952529,53.73424606273167],[-119.89899689907858,53.73724604150021],[-119.90144770687252,53.7390482926788],[-119.8990005078706,53.741073241125235],[-119.89444047597583,53.74346209122978],[-119.89105086441144,53.7462916185797],[-119.88937782917763,53.748648207851694],[-119.88849788351652,53.75162874957565],[-119.88892111220916,53.75311077983937],[-119.89211349882085,53.75662168206706],[-119.89178410158998,53.75897035608002],[-119.88937369321707,53.76270819659186],[-119.88605584979452,53.76462054563506],[-119.88354506744307,53.767789352413956],[-119.8851496655549,53.77006077671472],[-119.88578535985648,53.77227880187024],[-119.88500010587249,53.77554466232766],[-119.8840115111885,53.778012037598295],[-119.88674152665149,53.7790692689119],[-119.89215530163729,53.779421704976315],[-119.904387075347,53.77856709098867],[-119.91168837166354,53.77780943335049],[-119.91932051626553,53.77802372207228],[-119.92867583818017,53.7779369612778],[-119.93666665467659,53.777575296830385],[-119.94256000346158,53.77746405648651],[-119.94750533623008,53.77872731785854],[-119.95385547093198,53.7813557180247],[-119.95827254924134,53.78405383894765],[-119.96543947222379,53.78821840156278],[-119.9719837523563,53.79089369646243],[-119.97619072071856,53.79273737072508],[-119.97925304656908,53.795106275040574],[-119.97834430793796,53.79705824044694],[-119.9753174323216,53.798976886313625],[-119.97324492753495,53.80105303745478],[-119.97379326378972,53.80327659586714],[-119.97557580405376,53.804572907928474],[-119.97801432314994,53.805348480816754],[-119.98139330164709,53.80543151307943],[-119.98408660062817,53.80529176712032],[-119.9907966997036,53.80356929357293],[-119.9919191804533,53.80235470508269],[-119.99275211475401,53.80102949959245],[-119.99451988713118,53.79872985001587],[-119.99669228265415,53.79722269431335],[-119.99881002016066,53.797257307564244],[-119.99941606005474,53.79781989314464],[-119.9992949309582,53.99995411932169],[-120.00129796570492,54.22588655184309],[-120.00142630374957,54.225879416745336],[-120.00173670846227,54.22582734289846],[-120.00213493899543,54.225728479313375],[-120.00243207585011,54.22559537962351],[-120.00268380438507,54.22540327679183],[-120.00283038977464,54.22525767252246],[-120.00290576866959,54.22515069735673],[-120.00291497618555,54.225021331366385],[-120.00301014595973,54.22488442219378],[-120.00313941236341,54.22473852712031],[-120.00338687811384,54.2246153311549],[-120.00362175905857,54.22463144920264],[-120.00376980173723,54.22471407942011],[-120.00383645248257,54.224944982941345],[-120.00397768668559,54.225127308075],[-120.00420685464894,54.22522237658347],[-120.00452491279735,54.22528981397433],[-120.00498359045949,54.225292273629634],[-120.00530707499952,54.225269503467224],[-120.00564925761125,54.225237532742206],[-120.00589169020904,54.22517534293732],[-120.00606912100821,54.225069475417115],[-120.00614696433277,54.224932273811774],[-120.00615137783876,54.22486224050613],[-120.00612878786494,54.22471276134678],[-120.00605247494852,54.224601087366764],[-120.00592798953814,54.22444938268422],[-120.00596788181001,54.22436087301867],[-120.0061234990118,54.22432530220936],[-120.0063271264925,54.224330877630095],[-120.00652807328309,54.22435486086099],[-120.00681048793057,54.22444188472105],[-120.00712376195266,54.224568648287274],[-120.00743695600718,54.22469597346411],[-120.00780772747491,54.22474577766766],[-120.00813120747038,54.22472299105469],[-120.00857851505657,54.2246445173147],[-120.0090286869735,54.2245066052803],[-120.0093176921782,54.22438939001217],[-120.009478167424,54.22429391941314],[-120.00947683494431,54.2240645678938],[-120.00934978723261,54.22394364469509],[-120.00919374796575,54.22377015290755],[-120.00915438933562,54.22359005665412],[-120.00928602017031,54.22341448399366],[-120.00951521596829,54.2233106137109],[-120.0100787908137,54.22325473294528],[-120.01045156918059,54.22326416664167],[-120.01100649434677,54.22334723262762],[-120.01157342733984,54.22348033400519],[-120.01200328599477,54.22364094435107],[-120.01251210749672,54.22388188267585],[-120.01294536743919,54.22399264629261],[-120.01331576707796,54.22403173334198],[-120.01369056673553,54.22400079459521],[-120.013848725193,54.223934426874116],[-120.01413154663824,54.22379329275042],[-120.01418727431886,54.22371512146277],[-120.01454662682282,54.223206865568415],[-120.0147825281335,54.22276501056594],[-120.01512078671298,54.22229560723494],[-120.01542546599181,54.22208361804782],[-120.01594661131682,54.221908168495084],[-120.01663211850075,54.221835810005466],[-120.0170322862495,54.22169652598541],[-120.0174555367813,54.221478023198856],[-120.01797089316749,54.22114324711894],[-120.01847769881644,54.22070800767727],[-120.019357764991,54.21981408269608],[-120.01996342257404,54.219401709331365],[-120.02055953304772,54.21914789479782],[-120.0213664925109,54.21900900711385],[-120.02220276615915,54.21896035125233],[-120.02287623601475,54.2190368406434],[-120.02320107022427,54.21924337444627],[-120.02342732449645,54.2193983973868],[-120.02379209532091,54.219515851643905],[-120.02404881241767,54.21946107661351],[-120.04160747718697,54.224145334923925],[-120.04178438697711,54.22450862053453],[-120.04234915050317,54.22499044288919],[-120.04303574764694,54.22562997742509],[-120.04346060363534,54.226185837252025],[-120.04375284607616,54.22673854943362],[-120.04351466947878,54.22727812280945],[-120.0434110315016,54.227820927447176],[-120.04328903233618,54.22859716787425],[-120.0433577170013,54.22949516983671],[-120.04375155859256,54.23047883218789],[-120.04430006962478,54.23119361232351],[-120.0450483455536,54.23187437108671],[-120.04579308417208,54.23263306558434],[-120.04652324487475,54.2335860296925],[-120.04685175281915,54.23456871447087],[-120.04691977705217,54.23548521619497],[-120.04715215517093,54.23595911519585],[-120.04765001428332,54.23643817288512],[-120.048424064418,54.23676838945236],[-120.04906530683223,54.23709657675473],[-120.05036812186043,54.237479150574316],[-120.05165456262633,54.23809523213722],[-120.05280299400026,54.23878544792093],[-120.05381498768458,54.23951222425981],[-120.05457102914502,54.24011461686754],[-120.05544503510934,54.24091553807555],[-120.0564737427599,54.24140709141652],[-120.05737692896798,54.241819439327344],[-120.0585418411749,54.24227663151839],[-120.0597667084166,54.242813172253825],[-120.06087891934168,54.243074450742114],[-120.06190774562349,54.243565957834036],[-120.06265829160589,54.24424781594085],[-120.06328366930296,54.24480778096792],[-120.06455866327475,54.2455995913112],[-120.06486056868012,54.24603469629617],[-120.06514787711592,54.246664638889285],[-120.06567693141224,54.24765200506772],[-120.0661005171304,54.24824702992222],[-120.0664822862489,54.248489917673915],[-120.06706578395,54.248698852058816],[-120.06805101892579,54.24887854323762],[-120.06916532659613,54.24909993589525],[-120.07066140582947,54.24960465870398],[-120.07208123080666,54.2502236389322],[-120.07335390729254,54.25103377440364],[-120.07416127911549,54.25183238824595],[-120.07489777961293,54.25270789264811],[-120.07581272932764,54.25389891950761],[-120.07609846675702,54.25456808228225],[-120.07646045780393,54.25508307144919],[-120.07661520613776,54.2557104286337],[-120.07689554735639,54.256457436569065],[-120.07718674144084,54.257048749073036],[-120.077437642564,54.25724980744914],[-120.0779704621351,54.257262337310266],[-120.07883560715818,54.257245577316766],[-120.07990474701288,54.25719268145669],[-120.08090632080555,54.257139859597906],[-120.08224253319796,54.257055022756965],[-120.08364073215651,54.257049058895035],[-120.08477331899854,54.25703799254916],[-120.08650420929371,54.25704035342148],[-120.08689771522177,54.257108986784615],[-120.0877450300069,54.257363820162816],[-120.08851979415292,54.25769377964885],[-120.08942012080954,54.258143925769154],[-120.09023687500749,54.258826554612874],[-120.09157388557846,54.259676679125995],[-120.09254331292038,54.26008970613475],[-120.09345274108313,54.260423373662746],[-120.09456741645097,54.260645095318175],[-120.09627322729733,54.26099784551778],[-120.09730653225867,54.261450459136206],[-120.09913061303214,54.26200166082042],[-120.10007497184473,54.26276514784243],[-120.10036132476462,54.26343313615007],[-120.10076390494989,54.264340529055254],[-120.10103406984514,54.26524260485507],[-120.10136950537745,54.26614729539104],[-120.10151945788697,54.266851351436515],[-120.10179487193592,54.267676692839636],[-120.10213756808875,54.26846373150078],[-120.10295665465405,54.26914636646492],[-120.10354071035644,54.26935456224979],[-120.1049248207282,54.26954374913211],[-120.10696388884246,54.26990465112234],[-120.10873618240919,54.270200869303686],[-120.1138005181842,54.27911113251169],[-120.11375169620206,54.27915540654591],[-120.1136445436951,54.279350802387405],[-120.11361186208968,54.27937675471393],[-120.1135002359401,54.27945505871533],[-120.11343231632911,54.27952481104798],[-120.11334761521468,54.27965780573934],[-120.11333354735007,54.27986390185388],[-120.1133290716632,54.27990863660259],[-120.11335272077076,54.28002665848891],[-120.11341751972684,54.28018095657458],[-120.11344700461858,54.28021778178197],[-120.11339306565534,54.28032474011974],[-120.11337580551024,54.280350874031974],[-120.11335718737607,54.280386489844226],[-120.11320448193622,54.28058979913201],[-120.11312880592847,54.28079458810336],[-120.11311138557447,54.28082183801806],[-120.11299727627716,54.28091744465864],[-120.1128042176647,54.281038440263416],[-120.11267708223447,54.28111712423423],[-120.11256353182573,54.28119533431656],[-120.11241617682603,54.28133427964441],[-120.11232243422906,54.281557305450164],[-120.11232818118691,54.28169243987793],[-120.11237939575976,54.2818471943303],[-120.11237747671706,54.28187407236008],[-120.11237299852466,54.28194577811643],[-120.112219084034,54.28215745194281],[-120.11213765252386,54.282227114741154],[-120.11207284357927,54.282288584536566],[-120.11179954465587,54.28244389537595],[-120.11146775032798,54.28258962488131],[-120.11111501322631,54.28278715596606],[-120.11085648867945,54.28296060522801],[-120.11077697469892,54.283003380175934],[-120.11076211052183,54.283012773114926],[-120.11053563119168,54.28315124877622],[-120.11029244219544,54.283352412380374],[-120.11024377262811,54.283395559997906],[-120.11019566342395,54.28342132039883],[-120.10993825061465,54.283586955417505],[-120.1096792390332,54.28375025580589],[-120.10959891973818,54.2838121046177],[-120.10942061987653,54.28395122658457],[-120.10908304450443,54.284150612395344],[-120.10900480485601,54.28418446680907],[-120.10882834579286,54.284270301368046],[-120.10862439725689,54.284345810993194],[-120.10832606728273,54.28444651520731],[-120.10823176583224,54.28447115651266],[-120.10796291997897,54.28458172414296],[-120.10777039091286,54.28468532447785],[-120.10751119938746,54.284876707290195],[-120.10743159758758,54.28492004251444],[-120.10735207498841,54.28496282413326],[-120.10716026101362,54.28507488239837],[-120.10712693431121,54.28509180263426],[-120.13394111801905,54.29550607636635],[-120.16726134647067,54.29420821535649],[-120.20000570647636,54.2786429714598],[-120.21288534401491,54.272515788839215],[-120.27719231084677,54.26992270380022],[-120.31393568437599,54.27429865821234],[-120.3295511795959,54.282701171262225],[-120.39525071868107,54.2664948704429],[-120.39999578795754,54.26605728975774],[-120.418511934513,54.26434786573474],[-120.43494601403872,54.25462482978379],[-120.42547159122005,54.2429962639008],[-120.43170027370334,54.23477772368251],[-120.44969886548388,54.22998152005668],[-120.4874854672082,54.21604891710258],[-120.50346257654948,54.206298459534096],[-120.52289469681654,54.20741925348729],[-120.54441475913116,54.215241304430556],[-120.56185341554968,54.21281247066207],[-120.56478419450542,54.20955680692266],[-120.56661972375208,54.214966060290976],[-120.56836250478827,54.22022003123686],[-120.57059954207598,54.2234832582815],[-120.57712201865942,54.22617438223177],[-120.57965654408632,54.22741991989964],[-120.58354202435702,54.229884908314254],[-120.58452207771995,54.232516559855],[-120.58177437558277,54.23605100175289],[-120.5789274070709,54.24045257752786],[-120.57892774946714,54.24501733554483],[-120.58086731127077,54.24832986269971],[-120.58340076507328,54.251821615382966],[-120.58181771109005,54.25575853236557],[-120.58191207042042,54.25855728460103],[-120.58571273125068,54.262276246579006],[-120.58814689723259,54.265359052082715],[-120.58892862785845,54.26598695652233],[-120.59252837019729,54.26913059482358],[-120.5953566071063,54.27227569262969],[-120.59739366737834,54.276158244383],[-120.60040116739846,54.28358822158245],[-120.60410585494745,54.289009364276005],[-120.60528021540921,54.2894748677904],[-120.61093055607334,54.290902824633726],[-120.61678543567736,54.2912433678968],[-120.62234996774639,54.29250522844448],[-120.62557795784383,54.29415762794693],[-120.62401216733683,54.29113220627252],[-120.62510037318008,54.28576231519095],[-120.6297915413393,54.28164802699891],[-120.63409574348019,54.28250322436856],[-120.636628311913,54.28439416613517],[-120.63954684878298,54.286050502195465],[-120.64697171714053,54.28867819529397],[-120.65429312327184,54.288901872812005],[-120.6612319151022,54.28707771563535],[-120.66973463996065,54.284737841364816],[-120.67978907876588,54.28364240455313],[-120.6833957322223,54.28500431528638],[-120.68896988466281,54.28906668228849],[-120.69551597301333,54.293863000725665],[-120.7038103556464,54.29505152977011],[-120.71367254293115,54.29522061411745],[-120.72061276218356,54.29481271495622],[-120.72480810102314,54.29629770469045],[-120.72940873983816,54.30040552739261],[-120.72403990961115,54.303847007429],[-120.71807947542372,54.305393846075795],[-120.7103548483098,54.30768118902722],[-120.70469574415696,54.310597175134944],[-120.70244137850085,54.3145418806943],[-120.70293922005708,54.31499483293488],[-120.69228484902467,54.318887404854685],[-120.6833907598694,54.322775281587745],[-120.6855342259306,54.32579797906418],[-120.69150382232874,54.32780182122067],[-120.69483205438834,54.330992841883436],[-120.69326239112237,54.33488646626226],[-120.69482874953614,54.33819819802538],[-120.69687933638473,54.34087515551454],[-120.6994255882103,54.346421711134774],[-120.6940454538343,54.35048163615369],[-120.68572286451146,54.351456956490736],[-120.67809404971837,54.35065619057324],[-120.66958996510354,54.35111934637753],[-120.66284138605138,54.35425553913997],[-120.65658200485811,54.358140655284444],[-120.65901509465112,54.360601502457506],[-120.66184329816505,54.36442732592424],[-120.66351124673801,54.368256084105106],[-120.66546983735584,54.37127994342441],[-120.6692716351752,54.37488764841021],[-120.67484685496991,54.37974079855265],[-120.68062429898298,54.38447668650554],[-120.68345660582709,54.38722387874688],[-120.68972405701936,54.3920165737511],[-120.69403861060812,54.396238641558725],[-120.70108928202946,54.39966321299436],[-120.70676387192492,54.401042016522716],[-120.70872473867807,54.40132488472791],[-120.71704048516555,54.4035995294073],[-120.72399692992065,54.40633576220813],[-120.7325208453405,54.40953464638395],[-120.73344606182671,54.409716150916466],[-120.7341671303053,54.40936214098005],[-120.73453276212973,54.40927350954704],[-120.73503194002085,54.40918503476731],[-120.73545214946043,54.40904822541991],[-120.73603381384754,54.40896555790937],[-120.73645360911794,54.40880177578505],[-120.73724483399906,54.4087000838507],[-120.73803372028271,54.40857133430248],[-120.73874312107625,54.40841331786908],[-120.73952954151166,54.40833386380131],[-120.74010944910981,54.40829489806161],[-120.74076695619043,54.40833002810157],[-120.74117676818975,54.40836456729881],[-120.74204342719392,54.40835369439318],[-120.74270719269033,54.40829475381555],[-120.74332860515078,54.408233981853414],[-120.74352076050675,54.408229921942954],[-120.74386450182237,54.40822117349695],[-120.74431817784489,54.40823064350484],[-120.74552193553797,54.40808156659126],[-120.74623735360349,54.407785641883414],[-120.74666240547518,54.4075501832696],[-120.74704861507439,54.40727037518178],[-120.74739439438495,54.406988822510634],[-120.74787056177094,54.406565782244726],[-120.74830075492032,54.40625979325029],[-120.74880826629663,54.40603012978352],[-120.74927464501081,54.40577398578916],[-120.74966871028026,54.405372105619605],[-120.74997088600696,54.40511337266218],[-120.7502273321012,54.40492453808176],[-120.75061119360076,54.404692907197045],[-120.75079762317472,54.404310148886864],[-120.75085985701182,54.40392989839759],[-120.75125102954173,54.403550349125226],[-120.7516846840859,54.40317150665305],[-120.7522833028021,54.40277394305446],[-120.75245952997615,54.4025614346994],[-120.75284486231381,54.402302910322575],[-120.75302295194217,54.402045562876744],[-120.7531161786708,54.401876642418934],[-120.7531712229526,54.40161287055915],[-120.75342612738295,54.40145091550823],[-120.75360763938711,54.40116676370922],[-120.75374329055946,54.400953628943526],[-120.75395576024229,54.40083588660064],[-120.75416808581934,54.400719260696825],[-120.75429937044561,54.40055534792342],[-120.7546035491474,54.40029556935643],[-120.75485657446592,54.40017844957814],[-120.75493553481749,54.39999992997492],[-120.7549497299101,54.39996460645432],[-120.75495989705414,54.39979435351662],[-120.75496326624307,54.39972262879998],[-120.75525970503725,54.39958379594221],[-120.7554310310808,54.39946989430934],[-120.75551988149165,54.39935019461801],[-120.75561739204,54.39908712826112],[-120.75563185634353,54.398822731328664],[-120.75564983118964,54.39848549281508],[-120.7553429917029,54.398070256091074],[-120.75522612599126,54.397924851914496],[-120.75592782795219,54.39791576883419],[-120.75682902184857,54.39802644497038],[-120.75719196402022,54.39815436812219],[-120.75772964947305,54.39814158171259],[-120.75813887158472,54.39819513274236],[-120.758590658308,54.39820335003978],[-120.75908342817728,54.39823915763406],[-120.759871115222,54.39813268585677],[-120.76070413627491,54.3980045775342],[-120.76120083450502,54.397964184398504],[-120.76182206331312,54.397903318142966],[-120.76190318204576,54.39790456162602],[-120.76219515662353,54.39786097284103],[-120.76294426810871,54.39770790431741],[-120.76320331832211,54.39749782257443],[-120.76353934422207,54.39738201005855],[-120.764039811859,54.397296849660016],[-120.76470814645886,54.397094256529286],[-120.76504231078606,54.39702327834675],[-120.76583801333938,54.396777867990856],[-120.76642108174788,54.3966670520697],[-120.76699823460194,54.39667838110811],[-120.76749248922152,54.39668726817608],[-120.76798481949456,54.39669607054946],[-120.7687280554669,54.396710035499915],[-120.76942069162058,54.39681727312783],[-120.77029087233305,54.396761443691965],[-120.77090965219239,54.39674983704141],[-120.77136818361852,54.39665947785317],[-120.77220013747076,54.396508789065926],[-120.77252923233537,54.39649259784538],[-120.77273828722157,54.39644654794257],[-120.77335691929468,54.39643604571228],[-120.77446796041896,54.39647923777872],[-120.77471231217773,54.396505444745785],[-120.77528087358357,54.39666010261627],[-120.77577030686842,54.39676756813328],[-120.7763761029336,54.39699456332977],[-120.77653678872464,54.39706995562906],[-120.77689886325217,54.39722023949976],[-120.77714018364011,54.397346253031046],[-120.77726045533534,54.39741991086386],[-120.7774168102725,54.39754452547751],[-120.7775328332277,54.39771232773477],[-120.7775293613677,54.39778516993781],[-120.77767679276074,54.39810142411551],[-120.77770288842105,54.39836755700631],[-120.77780011741424,54.39885009885619],[-120.77807399751183,54.399115627750106],[-120.77826378147626,54.3994336968562],[-120.77840669195521,54.399846328421155],[-120.77850311780894,54.40000093663459],[-120.77855803441166,54.400086388695],[-120.77883406088911,54.40033516321601],[-120.77943226792355,54.40068309194985],[-120.7800328916829,54.40098171168007],[-120.7809226165909,54.401335389466226],[-120.78161536256448,54.40144255776124],[-120.78239444466101,54.40155566675346],[-120.78333967286063,54.401595036432006],[-120.78382196642043,54.40182006813172],[-120.78455001298745,54.402075834970795],[-120.78503726219385,54.40220113274886],[-120.78560354132745,54.402405048474975],[-120.78612686233814,54.402657654051424],[-120.78652041620197,54.403002396930674],[-120.78667181770741,54.403242446995826],[-120.78709499714127,54.40378047629415],[-120.78739705739515,54.40431219697758],[-120.78757824534279,54.40477473682191],[-120.78775582475551,54.405280915887715],[-120.7879400027419,54.40572000126311],[-120.78835899842213,54.40635217083772],[-120.78859080419667,54.40664506643886],[-120.78898263382945,54.40698860190204],[-120.78917733061589,54.40720804122618],[-120.78957095368949,54.40755277397298],[-120.78950413958573,54.40803277308512],[-120.78916732764785,54.408169959408866],[-120.78865776091209,54.40844797991041],[-120.78826928465368,54.408778342572624],[-120.78837281380811,54.40916681255471],[-120.7884410394312,54.40940666874749],[-120.7885833144011,54.40984059013618],[-120.78872127043796,54.41032373509258],[-120.78907540334136,54.41064432020729],[-120.78868930644644,54.410925377938064],[-120.78826368802056,54.411182285267984],[-120.78704721190519,54.41156929698431],[-120.78657710450587,54.41187145817822],[-120.78632275574064,54.412014413358705],[-120.78630698522886,54.41227538031198],[-120.78625589641014,54.41249441029575],[-120.78619729307005,54.412802952790045],[-120.78613614681706,54.41316191814186],[-120.786001980573,54.41337963821073],[-120.78578770577205,54.41354227473807],[-120.7854870853574,54.4137292881776],[-120.78573573060343,54.41370736620272],[-120.78618813478016,54.41374245039991],[-120.78631418610463,54.41369506764368],[-120.78668499827192,54.41370195362785],[-120.78713442043458,54.41376048810425],[-120.78742138394529,54.41378736524994],[-120.78799638541761,54.4138479009837],[-120.78812003735025,54.413849822450274],[-120.78877288059638,54.41398330595517],[-120.78913994188089,54.414034940819],[-120.78946869990996,54.41406809241997],[-120.78987678235694,54.41414730673134],[-120.79024236503655,54.41422582503938],[-120.7904050691421,54.414301281169045],[-120.79056223797379,54.41442029428484],[-120.79064129784857,54.41449891074233],[-120.79076119968799,54.414545585925055],[-120.7910489423387,54.41455115202447],[-120.79137918677026,54.41455741170194],[-120.79179102883272,54.414591863191006],[-120.79223969734889,54.414671681376106],[-120.79256619270514,54.41472269428164],[-120.79293553548457,54.414756448064296],[-120.79309794267068,54.41480381464866],[-120.7933436314599,54.41483565077326],[-120.7937484263273,54.414986577691074],[-120.79402103815372,54.41527895678512],[-120.794257289888,54.41547657932362],[-120.79477947256026,54.41572459747523],[-120.79517504629403,54.41602447282573],[-120.79573314638074,54.41641663098349],[-120.79604397200517,54.416758922167354],[-120.79615044562438,54.417048690298294],[-120.79641396213128,54.41753493822185],[-120.79655725980531,54.41794643027016],[-120.7966637401264,54.41823619789051],[-120.7966462353007,54.41857232429802],[-120.79683864052323,54.41884105714047],[-120.79715710355235,54.41906239575825],[-120.7974654325691,54.419455106230714],[-120.79753088076075,54.419793651551466],[-120.79763646300577,54.42010583761776],[-120.79779264727786,54.420278697171064],[-120.79803280863392,54.42040011917413],[-120.79843710859016,54.4205554978226],[-120.79872307608875,54.42060588461638],[-120.79941244167783,54.420834065550416],[-120.79993892449752,54.42098791633411],[-120.80000181676407,54.4210568520556],[-120.8002898035009,54.42138131079404],[-120.80060592175032,54.4216519465686],[-120.80095559545116,54.4220396725828],[-120.80127158147728,54.42231142346287],[-120.80166219244929,54.422681804075374],[-120.80165478547377,54.42293863368853],[-120.8015903855429,54.423354730417174],[-120.80162647114695,54.42424561177979],[-120.80147452030118,54.42471075007779],[-120.80160870176555,54.42537786612184],[-120.80188948335989,54.42565260377894],[-120.80216003446748,54.426130150109024],[-120.80243515529715,54.42652591837647],[-120.8027859865034,54.427103456514665],[-120.80296078659421,54.42777117891068],[-120.80296493109427,54.42848664549716],[-120.8035716820274,54.4290009818523],[-120.80393889548122,54.429281644172775],[-120.80412607358969,54.42972980233971],[-120.80431144315301,54.43022279898706],[-120.80467660475938,54.43050449377278],[-120.80521255435899,54.430783360964604],[-120.80561175342301,54.431209111593326],[-120.8056666444457,54.43175381184493],[-120.80609479329524,54.432440183810826],[-120.80618508226512,54.43313349163534],[-120.80632160317799,54.43375241209209],[-120.80635461745503,54.43395032619857],[-120.80653663492585,54.434470123872586],[-120.80654321918387,54.4351362832219],[-120.80668895001983,54.435606249499344],[-120.80675189598695,54.43598061067683],[-120.80731741300767,54.436485303904],[-120.80776275338131,54.43688381409777],[-120.80783148373126,54.43718206356599],[-120.80780633888573,54.43764025715652],[-120.80711520708623,54.437897154696216],[-120.80679998285753,54.43825989603651],[-120.80614841725746,54.43857125064265],[-120.80545995026745,54.43880691834485],[-120.80501726378674,54.43916647006771],[-120.80451793466614,54.43977401302223],[-120.80419168037626,54.44036085902647],[-120.80392608102791,54.44057636406567],[-120.80390587762054,54.440949428725276],[-120.80405205226566,54.44137000938874],[-120.80373530066987,54.441759629396415],[-120.80365952793063,54.442387469588944],[-120.80379856371897,54.44295596885949],[-120.80387781349455,54.443843068921616],[-120.80468463415272,54.44459947813391],[-120.80522064767993,54.4456430329813],[-120.80462564540356,54.447263848345486],[-120.80569901090608,54.448577332259525],[-120.80674587022551,54.449580878365886],[-120.80687814996755,54.450249020470196],[-120.80680937011435,54.45155538667942],[-120.80656844552303,54.452095344207116],[-120.80563796259678,54.452877670511356],[-120.80511513278176,54.45392888710465],[-120.80477718546453,54.45471399224457],[-120.80494247456544,54.45558004963248],[-120.80471726942903,54.45663720717707],[-120.8048373204558,54.45721836717035],[-120.80488494504634,54.45745395832516],[-120.80522862372385,54.45815131870662],[-120.80588610041893,54.459323552049376],[-120.80574055758014,54.460440247981936],[-120.8046762109905,54.46135948123234],[-120.80313941229738,54.46236637570942],[-120.80232145564806,54.46261112280468],[-120.80129700219368,54.4635814394974],[-120.80115722380175,54.464590582519264],[-120.80076610754081,54.465594627119806],[-120.80051411728729,54.466327245361015],[-120.80053165445422,54.466799610616384],[-120.80047433194562,54.46706778596358],[-120.80000052299758,54.4672575710521],[-120.79952299566102,54.46744607305894],[-120.79887463478181,54.46768231167257],[-120.79792383720824,54.468056118877534],[-120.79698573579876,54.468528153497],[-120.79605619156905,54.46862774267105],[-120.7947128206718,54.46888708638088],[-120.7935074213669,54.469616065401176],[-120.7929111277783,54.47018912390076],[-120.79268594484796,54.470679205882846],[-120.79258459834386,54.471414876029925],[-120.79295714847925,54.47196079021662],[-120.79343687600748,54.47279200352736],[-120.79392039602473,54.47350210202407],[-120.7942023608222,54.474257497183984],[-120.79442470925017,54.4746128391885],[-120.79455225948671,54.47522577280445],[-120.79454175152642,54.47541509537043],[-120.7947960039189,54.47593124982738],[-120.79514210348265,54.476243584410184],[-120.795770601706,54.476561226133526],[-120.79640153799514,54.476783521482204],[-120.79699468272106,54.47698286658546],[-120.797627986446,54.477201887281375],[-120.7982504145703,54.47756754063834],[-120.79880725764636,54.477717043753515],[-120.79962360845833,54.477731628132915],[-120.8000007873102,54.47773872015822],[-120.80013427464203,54.47774104035984],[-120.80181881194855,54.47791163327585],[-120.80256260366512,54.478482308179395],[-120.80328169362718,54.47865217537705],[-120.80481203396884,54.4789991889455],[-120.80533736256672,54.479382002930855],[-120.8064997410336,54.47977171827254],[-120.80756963270842,54.48021812200096],[-120.80899600683895,54.48077400347394],[-120.81006946018887,54.48116214444988],[-120.81113204246259,54.481712631051785],[-120.81146441114596,54.48230280303687],[-120.8118056081921,54.482731653819975],[-120.81213992355065,54.48332190587008],[-120.81238432454245,54.483856681750666],[-120.81235592623993,54.48438659786911],[-120.81232752720318,54.48491651393554],[-120.81229912743218,54.485446429949775],[-120.81235872657352,54.486031739184355],[-120.81342059852528,54.48663494398085],[-120.81422186547185,54.48696880273259],[-120.81539191831955,54.487254318726016],[-120.81601426292266,54.48753115693826],[-120.81682744346209,54.48764878780993],[-120.8182653619442,54.48799393396733],[-120.8191513427457,54.488486310738345],[-120.81965977274936,54.48918835318101],[-120.81992145925496,54.4894038228318],[-120.82044469912782,54.48983587730236],[-120.82089244046375,54.4900064650245],[-120.82132489064222,54.49043578528824],[-120.82176249729162,54.49076314119072],[-120.822470601562,54.49114463886773],[-120.82344708746,54.49164306403991],[-120.82387944036037,54.49207349203066],[-120.82422613143734,54.49239922772578],[-120.82484247984524,54.49283183907356],[-120.82535997024647,54.493371419542605],[-120.82632627484043,54.49402771005644],[-120.82647424918837,54.494222622957246],[-120.82845989068521,54.49393509712378],[-120.83629630385018,54.492209783085734],[-120.83993382013554,54.49129465947738],[-120.84855648377993,54.48997012977275],[-120.85454729691445,54.48995334992271],[-120.85945553860012,54.49040269645005],[-120.87221457954334,54.491469349777695],[-120.87544570262982,54.48809290170471],[-120.87444036868105,54.48398162292349],[-120.87442950453362,54.47923841333327],[-120.87540424065163,54.47665646731354],[-120.87772537787775,54.47112192282083],[-120.87684181866607,54.467402004616275],[-120.87652171964201,54.463517106998026],[-120.88063092353109,54.4605367942465],[-120.88778151654341,54.45864500691473],[-120.90189693894575,54.45832863193626],[-120.9102410725026,54.45779687309463],[-120.91228905881559,54.45653499541063],[-120.91629978678006,54.454070473548796],[-120.92119924629105,54.454059041637166],[-120.926190593993,54.453305725736776],[-120.92932209545648,54.45129824897199],[-120.93609087894552,54.452711243289194],[-120.93866053187156,54.45624902037635],[-120.94093307463572,54.460187567859094],[-120.94516960176455,54.46291406276704],[-120.95302057201812,54.46386787193745],[-120.95574407786486,54.463421407473085],[-120.95600325947811,54.46337823418754],[-120.95563540574832,54.463281064324434],[-120.95537607642949,54.46319960857596],[-120.95491967105377,54.463066215379946],[-120.95465359586716,54.46297661991804],[-120.95427844802676,54.462844339566665],[-120.9539223068107,54.46269937153301],[-120.95371820689188,54.462578655871155],[-120.95347678754115,54.46246200948726],[-120.95314089848658,54.462388608426515],[-120.9527869695252,54.46228863727606],[-120.95247008754849,54.462202548014105],[-120.95214659660488,54.4621072025711],[-120.95186125368306,54.46204823948499],[-120.9516643235827,54.461995180302445],[-120.95140514777749,54.46192831724638],[-120.95104516723114,54.46184605386781],[-120.95078475413254,54.46177352456205],[-120.95054692661209,54.4617064205332],[-120.95021118744144,54.461616176219316],[-120.94991814046786,54.46152545299551],[-120.94952484194187,54.46141485994287],[-120.94928743191923,54.46134440238584],[-120.94876648143058,54.46120045273706],[-120.94846214178807,54.4611856037655],[-120.94810878288588,54.46111258728455],[-120.94778117429018,54.46106645911279],[-120.94751044653601,54.46096767232455],[-120.9471999209859,54.46087734086387],[-120.94699639361112,54.4608150185194],[-120.94665117192152,54.46069181171899],[-120.94625445238752,54.460546260980436],[-120.9459710613344,54.4604559276662],[-120.94570117166872,54.46033471656825],[-120.94527692208698,54.4601610759647],[-120.94494327836547,54.46003834368845],[-120.94449411348674,54.459846826476486],[-120.94394856273085,54.459635593727754],[-120.94370525426308,54.45955028440619],[-120.94335097225063,54.45939076424711],[-120.94307641738811,54.459260371415255],[-120.94286921811708,54.459055301760436],[-120.94267978877285,54.45883188194009],[-120.94234013020629,54.45860110954716],[-120.94219900871447,54.45850431583286],[-120.94200432338795,54.458401932439216],[-120.94179162248238,54.45821010523128],[-120.94167516675464,54.45805482859124],[-120.94156946266756,54.457859579122385],[-120.94149321187525,54.45772393350261],[-120.94143115396113,54.45755182608568],[-120.94135589870692,54.45729833402893],[-120.94133130108139,54.457105325433346],[-120.94133891904531,54.456933862325805],[-120.94147156293965,54.45676983032292],[-120.94158700630155,54.45655680705146],[-120.94165618358876,54.4563418648441],[-120.94169769048115,54.4560999520084],[-120.9417062725437,54.45592066973383],[-120.94163076252576,54.45559082090456],[-120.94159100733066,54.45544209320282],[-120.94158612013145,54.45516794215859],[-120.941395571206,54.45511063815501],[-120.94138215102531,54.45482715118024],[-120.94136843467737,54.454624489140954],[-120.94136794803305,54.454377466264226],[-120.94132296407149,54.45422403051165],[-120.94125349836307,54.45397077811678],[-120.94117066597705,54.45376300350181],[-120.94108423431372,54.45363142580206],[-120.94093902298629,54.45345811372924],[-120.94083251059948,54.45325384737838],[-120.9406803977201,54.45315210397212],[-120.94049813925476,54.45302777760103],[-120.94032193603348,54.45291717502952],[-120.94008116366376,54.45279603392683],[-120.93990772279993,54.45266309044956],[-120.93975177815479,54.45249831316238],[-120.93972263172799,54.452357883765096],[-120.93960193613471,54.4521900778844],[-120.93951744989046,54.45202714264343],[-120.93936012414147,54.45188925317631],[-120.9392071967126,54.451778491807865],[-120.93904863067401,54.45165065506323],[-120.93892034800795,54.451544284272195],[-120.93877265329839,54.45143823039271],[-120.93859067917155,54.4513273853035],[-120.93834483436292,54.45118469748487],[-120.93815350669209,54.45105549950166],[-120.93799837670032,54.45096260881758],[-120.93783884028561,54.450874025964126],[-120.93765603728279,54.45078559974377],[-120.93745797043375,54.45064826151488],[-120.93731772189885,54.45052904176051],[-120.93721808798585,54.45041038528353],[-120.93710827670118,54.45026436026727],[-120.93692936747449,54.45008178382292],[-120.93672293573005,54.44987111836213],[-120.93651978474274,54.449727953443094],[-120.9362080419435,54.44950730021862],[-120.93592640657451,54.44940353929933],[-120.9355516753243,54.44937899451148],[-120.90019704293914,54.431820391586676],[-120.90019360695696,54.43170796873094],[-120.89956806335617,54.41347569733991],[-121.00000592726954,54.408470969820414],[-121.1615493918998,54.40024351381978],[-121.17455705119326,54.44822047863594],[-121.1997453659312,54.45472236688214],[-121.34071713552498,54.49097497761964],[-121.39059488257539,54.49828739502625],[-121.39075188763105,54.498442579389724],[-121.3909851930936,54.498643288408694],[-121.39116901749827,54.4987669392253],[-121.39134277006418,54.49887674271695],[-121.39152693376587,54.499031828523556],[-121.39160681086905,54.499269391512925],[-121.39179211798854,54.49956928927456],[-121.3920967438527,54.4998254321957],[-121.39221405903443,54.500006050512035],[-121.39227387107015,54.50009471980376],[-121.39239588677792,54.50025082589767],[-121.39251844629496,54.50036767388043],[-121.39267206168967,54.50044978156152],[-121.39286689318203,54.50054466625398],[-121.39300053122551,54.50061479744417],[-121.3932424977506,54.500721559666836],[-121.39346524621327,54.50086126371922],[-121.3937424368349,54.50105127698231],[-121.39394369998675,54.50119241417397],[-121.39416385563148,54.5013724196132],[-121.39435488342201,54.50153561480952],[-121.39456467244382,54.50168717246571],[-121.39473693718556,54.50181038104365],[-121.39493065462001,54.50196694314893],[-121.39509066440307,54.50207846667545],[-121.39520296169245,54.50225215869529],[-121.39533393829538,54.502432165999906],[-121.39548635385998,54.502542280341345],[-121.39573452296014,54.50274914996068],[-121.39588556538773,54.50292317951488],[-121.39606503082653,54.50313755854952],[-121.39620319770064,54.50335711399687],[-121.39635290597369,54.503560270681405],[-121.39663412431186,54.50380092859565],[-121.39682088959272,54.50395049158812],[-121.39707253975484,54.50405761001204],[-121.3972765046484,54.50414048619149],[-121.39748558905802,54.50421233255116],[-121.39771473649827,54.504278201086684],[-121.39789867646886,54.504332265705024],[-121.39808977836833,54.50451229023515],[-121.39826085421045,54.50466350403497],[-121.39839506321886,54.50474599452807],[-121.39852936399613,54.50486215535676],[-121.39869199979258,54.50498499460244],[-121.39876694858185,54.50509443028977],[-121.39885664788376,54.5052796112752],[-121.39899036917016,54.50541819433047],[-121.39916337103016,54.50551785635881],[-121.39941137137696,54.505743788662095],[-121.39959054525873,54.505840315756764],[-121.39970497458097,54.50602979400133],[-121.3997521875986,54.506161751208815],[-121.39995030917758,54.50631398069352],[-121.40001404218347,54.50636800357063],[-121.40010267220914,54.50644204195395],[-121.4002918297526,54.50665677824405],[-121.40042226100957,54.50685920271957],[-121.40056109194929,54.507073165607935],[-121.40068245273758,54.50725280350913],[-121.40081483725837,54.50736888907713],[-121.400985967456,54.50748531102781],[-121.40108959359576,54.5075812355345],[-121.40120028384538,54.50771782622491],[-121.40133127488703,54.50779458054946],[-121.40156181333691,54.50793456048347],[-121.40176321589675,54.50805773192005],[-121.40201490420954,54.50816484010659],[-121.40223508564331,54.50832799558874],[-121.40258109955094,54.508562098095766],[-121.40276057737032,54.50875963188681],[-121.40289477810815,54.50887690535349],[-121.4030448827439,54.50897345477569],[-121.40316610047405,54.50905096128076],[-121.40331284654836,54.50914289502143],[-121.40355380797713,54.50927652946812],[-121.40371685302529,54.50939600943449],[-121.4038846220939,54.50945618877001],[-121.40407475168945,54.50959352065655],[-121.40419589560929,54.50968897886594],[-121.40439838559665,54.509871664301826],[-121.40462126997562,54.5100281830615],[-121.40482525075453,54.510145834533006],[-121.4050486209597,54.51024625930286],[-121.40526885439718,54.51037462131569],[-121.40546054748211,54.51051537618067],[-121.40556524433396,54.510619192025],[-121.40567884432032,54.51073007595253],[-121.40582417292057,54.510817464003864],[-121.40607531005676,54.51094698654644],[-121.40631742050199,54.51107055795083],[-121.40647102708644,54.51117060089123],[-121.406615682592,54.51124674030997],[-121.40684751327223,54.51137553513419],[-121.40707537954299,54.51155692498586],[-121.40731716945494,54.51170068214411],[-121.40747022971165,54.511788358631435],[-121.40777050920555,54.511946658026176],[-121.40815596194498,54.51217549145728],[-121.40835798270115,54.51227622919223],[-121.40851044391614,54.51242111507945],[-121.40864532612395,54.512498006680275],[-121.4087686954225,54.512642921042875],[-121.40889146413791,54.51275863488068],[-121.4090373839434,54.51282359632331],[-121.40922135184717,54.51291243178548],[-121.40949962508009,54.513111421624686],[-121.40985615442563,54.513304373212165],[-121.41013385684069,54.51352578436305],[-121.41024382070972,54.51396309302022],[-121.4102251389183,54.51421601318002],[-121.41012907790324,54.51438073750655],[-121.4098561379429,54.51454891641179],[-121.40982674336244,54.5147935785507],[-121.40989446651378,54.5149678228317],[-121.40999805738366,54.51508169240144],[-121.41005645083533,54.515235386049575],[-121.41020960915998,54.51556433955208],[-121.41027512856814,54.515775533995196],[-121.41037501126851,54.515939763748634],[-121.41050459167481,54.51604675348499],[-121.41070443101952,54.51618443768176],[-121.41085638685936,54.51628216746813],[-121.41095943148024,54.51638367103699],[-121.4110967404481,54.51649095031332],[-121.41120851481338,54.51658380374677],[-121.41137228902012,54.51671452102568],[-121.41153011708322,54.51679451486157],[-121.4116656971882,54.516882650729556],[-121.41177922891299,54.51695985847472],[-121.41183268697246,54.517053887930786],[-121.41178418290626,54.517192343872],[-121.41155916873775,54.51741731541994],[-121.41118392160854,54.517563700139625],[-121.41081100345195,54.51767201580136],[-121.41030774675889,54.517766456646264],[-121.40946459948258,54.51777854822166],[-121.40865784499367,54.517950234900475],[-121.40810064418206,54.51817955105798],[-121.40739315263315,54.518486260476884],[-121.40706064675537,54.51868361781961],[-121.40672620616056,54.5188809016423],[-121.40639590419103,54.51904130685477],[-121.40610546464201,54.519140365417414],[-121.40590771657229,54.51919128613534],[-121.40580975155378,54.51928635850482],[-121.4057741175969,54.51943090791533],[-121.40578879277085,54.51969742699596],[-121.40579609815168,54.51990867994322],[-121.40581264417523,54.52002040231394],[-121.40586508830552,54.52012337437323],[-121.40590759557259,54.52026300620595],[-121.405944664449,54.520347444535375],[-121.40610121264886,54.52047340828334],[-121.40631149083663,54.520656380732405],[-121.40656255798218,54.520873430585],[-121.40677138322914,54.521086647496965],[-121.40701592942766,54.521361806704846],[-121.40713382491509,54.521521104886546],[-121.40724301783983,54.52165426469491],[-121.40743373967716,54.52183874417093],[-121.4075221881203,54.521966635104796],[-121.40755835665422,54.522093683363025],[-121.40754071211013,54.52226808696251],[-121.40749349158489,54.522412201222586],[-121.40739398967959,54.522555472781995],[-121.40735038539316,54.522615556217126],[-121.40732677463691,54.522687613309465],[-121.40725135742775,54.5227891455225],[-121.4071947056725,54.522879038550926],[-121.40710563512721,54.52306759092593],[-121.40700002413193,54.52336886609241],[-121.40682753797138,54.52352286079104],[-121.40662964411996,54.5235749001475],[-121.40644910764837,54.523662380603916],[-121.40633030945192,54.52377013723675],[-121.40621218707528,54.52388914141864],[-121.40612434440145,54.52401489492992],[-121.40603028058233,54.52412694783591],[-121.40590064259301,54.52422756328812],[-121.40576902358669,54.52431127078692],[-121.40555269727366,54.52449279363264],[-121.40541705897303,54.524612260876545],[-121.40529838086317,54.52471889898838],[-121.40512567983994,54.524891961452155],[-121.40501449556251,54.52505274789967],[-121.40482255119447,54.525207130860814],[-121.40467192694828,54.52535633400595],[-121.40453033280495,54.525511487701834],[-121.40437852806079,54.525653912817596],[-121.4043119261419,54.52578046411477],[-121.40424607735208,54.525900310358686],[-121.40419683157387,54.52606230330617],[-121.40418867502287,54.526272974943694],[-121.40404762617453,54.5264404932351],[-121.40388494877291,54.526610564659926],[-121.40378006524269,54.5266806869799],[-121.40365616153314,54.526764682802735],[-121.40360417910539,54.52691647265835],[-121.4035638655551,54.527050745766275],[-121.40351624867708,54.527198210892564],[-121.40345834384536,54.527350900194605],[-121.40341408759397,54.527502980603856],[-121.40338663784117,54.52767813765023],[-121.40341530478797,54.527751038323906],[-121.40332007717394,54.527821523550564],[-121.40311730616607,54.527933974918305],[-121.40293666479225,54.52803940281738],[-121.40267233715456,54.52819891602377],[-121.40237838391452,54.52831130293356],[-121.40221983870696,54.52844449459528],[-121.40210071708479,54.52853764686477],[-121.40203041224349,54.528679769178794],[-121.40201621272271,54.52880604663983],[-121.40188417784209,54.528979513295724],[-121.40170332428856,54.52910400953544],[-121.4015846234888,54.5292106439741],[-121.40149102311256,54.52926660027368],[-121.40132848164077,54.52940076287476],[-121.40108074057531,54.529602419717044],[-121.40084605091836,54.52977426711486],[-121.40067540013017,54.529911490520306],[-121.40058765323508,54.53003612244586],[-121.40048865791125,54.53019175341099],[-121.4003581535304,54.53031702056128],[-121.40029236521696,54.530418911923306],[-121.40023315364208,54.53061756245029],[-121.40022505516454,54.5308102810082],[-121.40023163227343,54.53090704020602],[-121.40021750581104,54.53101536474483],[-121.4001806641273,54.53115313457466],[-121.4000714881251,54.53126124857862],[-121.400032985215,54.531310299786476],[-121.39998574807038,54.53136800009228],[-121.39987795397117,54.53146382145195],[-121.39975686542235,54.53164330953948],[-121.39963653021631,54.531816092522206],[-121.39958424142243,54.53200490339084],[-121.399429196761,54.53229645833522],[-121.39925489615108,54.53251771011328],[-121.39915609535791,54.53265426978045],[-121.39899275592931,54.53288154503205],[-121.39873808823025,54.53305824845819],[-121.39999633553415,54.5343782157326],[-121.43216961658136,54.5680385500428],[-121.43287038449425,54.56877057069855],[-121.43267022414,54.56896284781005],[-121.43245328127793,54.56914888713448],[-121.43222317373954,54.56933106804632],[-121.43192057998357,54.569466776626996],[-121.43158373868852,54.569578761861216],[-121.43123317373006,54.56967452306116],[-121.43086757645884,54.56974840026767],[-121.43048688854135,54.56978355827803],[-121.43021974478421,54.569810612281806],[-121.42932469825303,54.57107555308402],[-121.42965061352578,54.57107875101829],[-121.43034527083687,54.57153562042735],[-121.43301986650424,54.57248835126195],[-121.4378737756991,54.574518796805094],[-121.44104493298329,54.576037475196756],[-121.44214565827073,54.576895427518586],[-121.44417420076513,54.58002329012981],[-121.44342413469509,54.58242824198346],[-121.44122114805612,54.585874326340466],[-121.441469478567,54.58907953749869],[-121.44516234971535,54.59150624892358],[-121.44804049392187,54.59315741841988],[-121.4487418429759,54.59411714120314],[-121.45026657813297,54.59633735839167],[-121.453863152934,54.59991825541268],[-121.45676827716976,54.60287189028534],[-121.45484517721961,54.60534109174046],[-121.45253695228217,54.60861290462058],[-121.45395227505747,54.610146707178814],[-121.45722047048355,54.6111028695314],[-121.46045256765846,54.610567379437384],[-121.46625468138951,54.61041424881777],[-121.470689489021,54.610389826985624],[-121.47874364336323,54.60969995777985],[-121.4832863907362,54.610244622918884],[-121.48865876533446,54.61341403431356],[-121.49158459911251,54.617336987529974],[-121.494234627266,54.62235386928851],[-121.49574859762878,54.623998462967016],[-121.49467934355945,54.62452469280353],[-121.49096604837085,54.62603086579769],[-121.48962314016507,54.628046140204056],[-121.49073591893337,54.629801702082354],[-121.49490575304053,54.6314901477751],[-121.49867371559897,54.633298330386154],[-121.49990986116197,54.63563284109226],[-121.50004941680035,54.63803479538611],[-121.50292824516123,54.639163831486954],[-121.50609830982364,54.640052121847326],[-121.50552073250245,54.6411979315075],[-121.50594866626746,54.642398566155094],[-121.50734259465275,54.64358972572807],[-121.50744788495578,54.643764144661105],[-121.51330782629968,54.64651921669597],[-121.51866985192058,54.648429919186306],[-121.52254678401616,54.65040283340931],[-121.52574995144299,54.65284474002112],[-121.51994902944168,54.6535036361802],[-121.51910434947092,54.65580671352806],[-121.5223055633546,54.65841020960503],[-121.52269519121624,54.65840648425422],[-121.5245215733218,54.66091481577892],[-121.52280517095498,54.66350027909894],[-121.52243637673254,54.665156476785825],[-121.5232576708849,54.66703565544397],[-121.5213176067331,54.66853574218635],[-121.52138287274468,54.671626105212695],[-121.51805779022426,54.67325510545219],[-121.51687192122773,54.678229752426944],[-121.51699565968698,54.679087062085216],[-121.51786966245103,54.68388562714479],[-121.5149488949968,54.686076932065866],[-121.50698291539928,54.68739232950594],[-121.49959794348128,54.687956531466014],[-121.49275423047403,54.691089619230375],[-121.48829455413849,54.69477683429717],[-121.48650239621102,54.69913656714204],[-121.48323183531343,54.70361245618492],[-121.4805324255019,54.70757069217826],[-121.47843304578328,54.71159587176232],[-121.47981527253255,54.71655717913536],[-121.48017237276535,54.72050223984713],[-121.4764807698495,54.7235531437866],[-121.47523333131099,54.725796326718324],[-121.47804766655665,54.728117296413224],[-121.48015644503126,54.73005314978585],[-121.48555328210581,54.73356410862824],[-121.49033715655509,54.73628028426734],[-121.49445547571786,54.740363254121334],[-121.49641816162175,54.74504032571313],[-121.49639088236414,54.74880959124083],[-121.49459782456611,54.752882185108646],[-121.49335252793433,54.755529578976436],[-121.49525299532108,54.75682907463329],[-121.4995404648251,54.75827879640522],[-121.50214206632155,54.760438681610665],[-121.50634610174063,54.76321364632667],[-121.51071779855816,54.76489941180353],[-121.5144878721081,54.76567437010491],[-121.51786469337318,54.7663361282091],[-121.52264907993091,54.768817448179384],[-121.52563521136832,54.76976995412321],[-121.52589819961516,54.772912346512726],[-121.52468481601221,54.77670118743832],[-121.52402134658654,54.77847235580581],[-121.52306998660187,54.780304855435865],[-121.52075950803562,54.78341639598239],[-121.51964655277438,54.78713705751945],[-121.52091036665733,54.79182398526183],[-121.5227879714278,54.796614014918575],[-121.52303576397922,54.79946860598798],[-121.53036454795651,54.799878675265205],[-121.53980731361732,54.801810156642865],[-121.54549430168247,54.805086087444124],[-121.54673173766699,54.80719544114422],[-121.54881977213465,54.81266577380216],[-121.5489907441215,54.81666643562093],[-121.551104872828,54.81819702923392],[-121.55529332363035,54.82034106989202],[-121.55917888121866,54.82197135551893],[-121.56533947578777,54.82238192238016],[-121.56741317647885,54.82242967269378],[-121.57316420121276,54.823013595795004],[-121.57794218129047,54.82435219820211],[-121.58329854157728,54.82540616618994],[-121.589185836769,54.82776248475538],[-121.593984671899,54.83007058030975],[-121.59934207382057,54.83083661596226],[-121.60043816255829,54.831109155897806],[-121.6074062023638,54.83259657923633],[-121.61162413283152,54.83566410869363],[-121.61221707479545,54.83581987281073],[-121.61792650125426,54.83927239057166],[-121.62709206383103,54.84171640937676],[-121.64023978101736,54.84538675816523],[-121.64392933535899,54.846854642217345],[-121.64470790477196,54.85096606054478],[-121.64758270885727,54.855223334421055],[-121.66009212796669,54.85701985437377],[-121.66677289396398,54.85861922541909],[-121.67228275702064,54.861667013332664],[-121.67428358295555,54.86256299004557],[-121.68451663560765,54.86843254638076],[-121.6880961376177,54.873323666234334],[-121.69367033283324,54.878598469127475],[-121.6973774560664,54.88038829854456],[-121.70523275115126,54.88158659863891],[-121.71207633362746,54.881699124606754],[-121.71618199960972,54.88372658450288],[-121.7192789538707,54.884785482826516],[-121.72445979391368,54.88582681603909],[-121.72807912255675,54.88757670940906],[-121.72892450738286,54.88579305707134],[-121.72845237848814,54.88299447804662],[-121.72961488306196,54.88161670617527],[-121.73516526238808,54.88197035223367],[-121.73954817028591,54.882561633345134],[-121.7436006204241,54.882127195001516],[-121.74411687391168,54.87914742950481],[-121.74014951317744,54.87460378015734],[-121.73818022101545,54.871304772592616],[-121.73756941623574,54.870565665837304],[-121.73939545115823,54.86837610569539],[-121.74498174970944,54.86598432204006],[-121.74991379941643,54.86102091543892],[-121.75491677905869,54.858806063316266],[-121.75944703885364,54.85796583888108],[-121.76242721669244,54.85399384875509],[-121.76997864696266,54.85147117244962],[-121.77432425361347,54.85074077050117],[-121.77771289572584,54.84808379847303],[-121.78011604646771,54.84091469799349],[-121.78508880611336,54.838347720465826],[-121.79222577615211,54.83857377736343],[-121.79570106885184,54.842605294846244],[-121.79892801293974,54.84904233608228],[-121.8016355694716,54.85416027715263],[-121.80295098494274,54.85535380573774],[-121.80815314014039,54.85753214817295],[-121.81911858342869,54.859950767893665],[-121.82655375853284,54.860507889249604],[-121.83144538639418,54.86161571892986],[-121.83928266997732,54.86222155257306],[-121.84689405792903,54.86518841470705],[-121.84965797711227,54.864931521419145],[-121.85587987956931,54.86436012364985],[-121.86418426325606,54.867142760007155],[-121.86995833704228,54.86851192426245],[-121.87183280681542,54.87192195501492],[-121.87056270734466,54.87594457666683],[-121.87261137232211,54.87872327221034],[-121.8732991198984,54.88180636833463],[-121.86863727342985,54.885168029439356],[-121.85777063098097,54.88996353917712],[-121.85718345803645,54.89019508879806],[-121.84166221736606,54.89577513524764],[-121.83661428482142,54.89965218503898],[-121.84061416748173,54.90110629529552],[-121.8539528446681,54.89943741414065],[-121.86525671850234,54.8994398804018],[-121.87028664581877,54.90231845912393],[-121.8703730644603,54.90500453226971],[-121.87092439089443,54.91065855671425],[-121.86573141227952,54.91305121979415],[-121.85773892226744,54.91478439833875],[-121.85007363661022,54.92080868069984],[-121.84798334185186,54.92454336533713],[-121.8459470652679,54.92988619497586],[-121.84746465438553,54.93113079119905],[-121.85229410460522,54.93354559521079],[-121.86260895273358,54.93687996915209],[-121.86643614914972,54.94267962778643],[-121.86953286653412,54.94704581199407],[-121.87269364691694,54.9537113344802],[-121.87499275807316,54.95438039737645],[-121.87948186376615,54.95479044968843],[-121.88994911895232,54.95623391992058],[-121.89713515847251,54.957881636132406],[-121.9009280523478,54.962539206854636],[-121.90225397459834,54.96338183599793],[-121.91057397002331,54.96639439413542],[-121.92004373538013,54.974191279967],[-121.9196032048022,54.97980310487155],[-121.92137332520701,54.98247279724573],[-121.92806317330452,54.987547939363075],[-121.93291599524797,54.9903099416838],[-121.94005348735932,54.99298524267973],[-121.94105330029659,54.9966253368456],[-121.9383975364868,54.99791106443989],[-121.93584229283,54.9989757099938],[-121.93589730856633,55.000458121020365],[-121.93892330925357,55.00111386261534],[-121.94125348619265,55.002760680066196],[-121.94406614770561,55.0044501888972],[-121.94597649101686,55.006217737062364],[-121.94909803164143,55.007962105605216],[-121.95339212795064,55.008973049222526],[-121.95977376506603,55.01030327879195],[-121.96397406269963,55.01147229213303],[-121.96627718130982,55.01277672417604],[-121.96995838261168,55.01726659059726],[-121.97197001205122,55.018507567466],[-121.97458603955545,55.020145039435256],[-121.97723044223436,55.022761434510016],[-121.97971203717455,55.02291386171061],[-121.98549065023204,55.02338858744892],[-121.99139441746695,55.02529379247761],[-121.99407559075841,55.02533574117672],[-121.99764547136654,55.024966702402914],[-122.00012430408123,55.02483149208482],[-122.00247793044244,55.027231511362764],[-122.00545608381427,55.02871845702739],[-122.00824570614036,55.03020821702252],[-122.01042350777658,55.03089755482051],[-122.01270344757727,55.03198494526494],[-122.01448887532254,55.033469117407996],[-122.01646739726199,55.03506714664061],[-122.02164268414046,55.03770107566211],[-122.0219281487011,55.039747059385576],[-122.02132257519841,55.041907975693526],[-122.02221570054095,55.04368635519572],[-122.02399262344197,55.04574434365227],[-122.02398388619115,55.049503632998935],[-122.02655527399426,55.05115638777875],[-122.02904465616616,55.05236679162121],[-122.03281457996671,55.05430008765689],[-122.03460290441375,55.056412093150705],[-122.03637593204486,55.059322141877374],[-122.04005923763354,55.06086659216898],[-122.0443295688442,55.06235788966575],[-122.04642036854615,55.06395894341528],[-122.0511877585134,55.06664124969721],[-122.05687664632902,55.067620992055325],[-122.06322913471139,55.069052229170346],[-122.06611666915222,55.07184464315896],[-122.06939818963134,55.07447002700989],[-122.07078267258409,55.07510611243205],[-122.07685395954876,55.07750566902031],[-122.081928062993,55.08030405598737],[-122.08520360025273,55.08333253205615],[-122.08948975549963,55.08583651290075],[-122.09585706883821,55.08926722542395],[-122.1016316952294,55.09200602841743],[-122.10451528850253,55.095371509025064],[-122.10280439661297,55.09777611767254],[-122.10350152781444,55.09902721469888],[-122.10628926067467,55.10062210823206],[-122.10927502261372,55.101307988472726],[-122.11546692252733,55.10153800035427],[-122.12214400979009,55.10228530914192],[-122.12452508810884,55.10468350055899],[-122.12472642314162,55.1053716660036],[-122.12662062192403,55.106453651186094],[-122.13229918331245,55.1054824619406],[-122.13201281988056,55.102234648622904],[-122.13221356165157,55.097844644528976],[-122.13571022777333,55.09369199480499],[-122.14049002031805,55.09403826351683],[-122.14687514819754,55.0942099495762],[-122.15135050882624,55.091648430687506],[-122.15424904912307,55.090114479516245],[-122.15433784785549,55.0934726930362],[-122.15484590668757,55.09523795446199],[-122.15942954436599,55.09616056538006],[-122.16689688588806,55.09769254102423],[-122.17038048854245,55.10208865802475],[-122.17037625748564,55.1071037123344],[-122.172167926402,55.111268060187165],[-122.17555325616748,55.114063989332806],[-122.17954253685124,55.1169681296341],[-122.17975049902591,55.1194237939692],[-122.17575438696525,55.12272785732666],[-122.17455339674865,55.126261564647],[-122.17714050480683,55.12968773028849],[-122.18312341863195,55.133334945882666],[-122.1892200206718,55.13612405861157],[-122.19629949632353,55.13835084845726],[-122.20867629984947,55.14001243453844],[-122.212763823676,55.14091773023267],[-122.2213434588732,55.14160982456676],[-122.22702842829386,55.141603319933],[-122.23230654333257,55.13887487481714],[-122.2442765646871,55.131737695935314],[-122.25485127005123,55.13042451447615],[-122.26482938357252,55.13248356539676],[-122.2685275240783,55.136577957899824],[-122.2692389419817,55.14079779495481],[-122.26903709105488,55.14569889445259],[-122.26984301936426,55.149580663338305],[-122.2733481006092,55.15408172076991],[-122.27674982990442,55.1566418206245],[-122.2847352768405,55.16159970559494],[-122.28994384194274,55.16542451224556],[-122.29324764912909,55.170439204756846],[-122.29225565201253,55.17385443074538],[-122.28917150385635,55.17688423295897],[-122.28757980129068,55.17910633265735],[-122.28777964560868,55.181041056651296],[-122.28577744358074,55.18360971569348],[-122.28349676552212,55.184582159981794],[-122.28348109686944,55.18492258846954],[-122.28229322645977,55.186178879073275],[-122.27561312412016,55.190060678991195],[-122.2740104087208,55.19017411967144],[-122.26781453240288,55.19085841167136],[-122.25702052691035,55.19114384919376],[-122.24812716522199,55.192346980785786],[-122.24763648660303,55.194566001951685],[-122.25024572803035,55.1968516600456],[-122.2533287591398,55.1989631405145],[-122.25753166092996,55.201583724149664],[-122.25914345546184,55.20443123287404],[-122.2605450565275,55.207676094358554],[-122.26265096882085,55.20979379973975],[-122.26545297493381,55.210362425779984],[-122.26755070504659,55.21036261197629],[-122.27314517977358,55.21058423759465],[-122.27754017169603,55.21251905951137],[-122.27963728401258,55.214402933877416],[-122.28164096314723,55.21559320635183],[-122.2864417677421,55.217414224487875],[-122.28905493387357,55.2176447295311],[-122.2947442518907,55.21821804642786],[-122.29985045951125,55.21964392842617],[-122.30455289444537,55.221003769650686],[-122.30785019863218,55.221003010784315],[-122.31345165746761,55.22064885062042],[-122.32034731545484,55.222701014049335],[-122.32726597325698,55.22537243307339],[-122.32885550801842,55.22628053988178],[-122.33697968380324,55.22958798584919],[-122.33807177139767,55.23011464195283],[-122.33840314343678,55.23002796066839],[-122.33901757584385,55.23001688805178],[-122.33976260661781,55.23030456420401],[-122.34036153424469,55.23057223945524],[-122.34051799109965,55.23065197053096],[-122.34062574429508,55.23070335701582],[-122.34084725486974,55.23080518494286],[-122.34096236883808,55.23086239423885],[-122.34097325610117,55.23087280638357],[-122.34098984142912,55.23088562876167],[-122.34126697819907,55.23100479040885],[-122.34182519109835,55.23124322753916],[-122.34210233280433,55.23136238733034],[-122.34213194290561,55.231362136549336],[-122.3423390101387,55.23136261755749],[-122.34266855394425,55.23136109195339],[-122.34283027328085,55.2313613604222],[-122.34296051701428,55.23136070350628],[-122.34319031032744,55.2313932482277],[-122.34329152760652,55.23155993673281],[-122.34318608852669,55.23185174653975],[-122.34303580541757,55.232072716013896],[-122.34300643513647,55.23215707354974],[-122.3430714242406,55.232201594128504],[-122.34316928152933,55.232275113864226],[-122.34329844695364,55.23237310151402],[-122.34341031430831,55.2324660953345],[-122.34349233288613,55.232540270621286],[-122.34356492213664,55.23260968343555],[-122.34372583633014,55.23268393443514],[-122.34392768894848,55.23272014178279],[-122.3440084496616,55.23272139356341],[-122.34409066923548,55.23272829478532],[-122.34426691223601,55.23274244388511],[-122.34438878283972,55.232747145951436],[-122.34442656816113,55.23274377081554],[-122.34449800084282,55.23273914158641],[-122.3447395359044,55.23272941780869],[-122.34511505021506,55.232721386653004],[-122.34539138641948,55.23271941185002],[-122.3455116963815,55.232719581677635],[-122.34565625981477,55.23273504095063],[-122.34590129335515,55.23277363461469],[-122.34612604457023,55.2328183600972],[-122.34627447795758,55.232856358758596],[-122.34637837497716,55.23288520017223],[-122.3464598839371,55.23289992820621],[-122.34652823153382,55.23290754177884],[-122.34656137087907,55.232911878837506],[-122.34658412905478,55.232900212534474],[-122.34664952164734,55.23287522089198],[-122.34671450769882,55.23285470257421],[-122.34673261989036,55.23285074909338],[-122.34684126472617,55.2328707589309],[-122.34710400599184,55.23290987008888],[-122.34737512498957,55.23294362000738],[-122.34769695103981,55.232962037959034],[-122.34815926913322,55.232975608080935],[-122.34855096740168,55.23298486135116],[-122.34878341501465,55.23298831888298],[-122.3490351296017,55.23299682662607],[-122.34925133108537,55.233005413169906],[-122.3493103505296,55.233007144884816],[-122.34939151814979,55.233003919806954],[-122.34957600149298,55.23299251269504],[-122.34974697990006,55.23295604005007],[-122.3499102151815,55.23287448719384],[-122.35006018627206,55.232786938432],[-122.35011282059637,55.23275035756535],[-122.35010438067329,55.232778142995414],[-122.35010656474383,55.2328410010182],[-122.35014174859555,55.2328880072713],[-122.35016454416561,55.23289764653219],[-122.35022810721763,55.23289278317654],[-122.35035709907207,55.23288423241732],[-122.35042252787787,55.23288054501186],[-122.35044674466978,55.23287452742255],[-122.35054361176502,55.23285045701796],[-122.35066282966855,55.232819192861484],[-122.3507113646032,55.23280603924164],[-122.35078459974973,55.2328250070117],[-122.35093697218039,55.232863115515684],[-122.35102190990918,55.23288354767477],[-122.3511220398079,55.232888726833615],[-122.35134353417469,55.232904192889144],[-122.35160800518031,55.232924282704836],[-122.35184473108829,55.232945801083225],[-122.35198173290716,55.232957667248144],[-122.35201300703275,55.232960826830904],[-122.35205032402475,55.23298434731987],[-122.35212299081941,55.23303133058544],[-122.35216040940519,55.23305373269739],[-122.35221155975975,55.23305523232374],[-122.35231966098573,55.23305952288527],[-122.35237081135358,55.233061022446165],[-122.35242413196097,55.2330603429714],[-122.35254196838147,55.233066040054936],[-122.3526432546466,55.23308022241892],[-122.35282968300919,55.23311259893779],[-122.35318836358937,55.23318142088459],[-122.3535004379739,55.233242147963495],[-122.35368137146327,55.23326987685489],[-122.3538534827009,55.233286133769916],[-122.35398851893487,55.233297940075815],[-122.3540316989114,55.23330032670216],[-122.3540543537289,55.2332897773793],[-122.35408952242243,55.2332717455198],[-122.35414249849883,55.233253114129134],[-122.35420677148574,55.23324042032179],[-122.35426670414239,55.23323208457494],[-122.35429455102067,55.23322953656501],[-122.3543184632298,55.233226873260385],[-122.35441027877184,55.23321498636444],[-122.35453987916054,55.23319972119636],[-122.35462467722532,55.23319996302753],[-122.35471158487037,55.233220450309936],[-122.35481362293234,55.23324810870228],[-122.3548600278466,55.2332584387388],[-122.35486481456758,55.23327091345623],[-122.35487055473395,55.2332946292731],[-122.3548732727356,55.2333081647011],[-122.3549500808655,55.23335302489615],[-122.35519186373149,55.23347111815035],[-122.35548924074308,55.23358523273506],[-122.35568605871201,55.233633607590335],[-122.35585182333809,55.23363285604672],[-122.35612483869347,55.23362403210244],[-122.35650382886362,55.23364297979066],[-122.3568943615447,55.233686933209015],[-122.35713795093216,55.23371985542155],[-122.35721200137435,55.233729872626576],[-122.3573486021581,55.23374620628139],[-122.35770362287812,55.23379023877072],[-122.35809375309384,55.2338386618234],[-122.35831610849084,55.233866474903],[-122.35856777219169,55.23389738794485],[-122.35902418757189,55.233954475784486],[-122.3593948497196,55.23400008236142],[-122.35952368405299,55.23401506502404],[-122.35956497018375,55.2341037353882],[-122.35964945259317,55.234303558205],[-122.35985728881171,55.2344699864217],[-122.3601824188885,55.23462638968396],[-122.36048161402383,55.23480782361467],[-122.36059701379159,55.234884084290435],[-122.36069601869632,55.23479278982347],[-122.36089806320305,55.234609197384515],[-122.3609970667485,55.23451790268006],[-122.36106510339862,55.234572594115605],[-122.36120273979974,55.23468650781815],[-122.36128716797417,55.23475625552348],[-122.36137131770322,55.23474189665362],[-122.36158784702539,55.23470337593888],[-122.36186732126752,55.23471042645014],[-122.3622465037506,55.234814581532675],[-122.3626729064561,55.234920115765],[-122.36301139457731,55.23497261985075],[-122.36322619339404,55.23499683907829],[-122.36330221513411,55.23500691016637],[-122.36334842193905,55.235019473747876],[-122.36351761111231,55.23506814955871],[-122.36381927164449,55.235135273413356],[-122.36422157620778,55.2352019733942],[-122.3645615305419,55.23526012252662],[-122.36468739216922,55.235286225910784],[-122.36472572993138,55.23529855905946],[-122.36479266939352,55.23532181957338],[-122.36495606889517,55.23532547185092],[-122.36523373638241,55.235308914405195],[-122.36557122802856,55.23532886429611],[-122.36599164887348,55.23539160233579],[-122.36636201487458,55.235528004826506],[-122.36653618207654,55.23571810647386],[-122.36657572007131,55.23580448036108],[-122.36660694363975,55.235830060852805],[-122.36666762555161,55.23587892765121],[-122.36670101885213,55.23590232885618],[-122.36677174711822,55.23590551534348],[-122.36691900506925,55.235913178889824],[-122.36698983443091,55.235915246896816],[-122.36702318057374,55.235917341798164],[-122.36710581484449,55.23591975439998],[-122.36727880478705,55.235904621337156],[-122.36754851008082,55.235845216537406],[-122.367745316887,55.235784804542945],[-122.36783183808032,55.235766025310575],[-122.36790579391584,55.23577715451538],[-122.36794060230677,55.23578489838676],[-122.36799871210457,55.23584041725082],[-122.36811473012507,55.23595369161315],[-122.36832483726808,55.23605177106325],[-122.36863195883325,55.236145953539186],[-122.36879581000052,55.23621016435663],[-122.36880650389281,55.23622281078717],[-122.36881159831809,55.23623192989705],[-122.36896501076916,55.236258832771114],[-122.36927385622114,55.23629027078529],[-122.36949053235472,55.23631565497698],[-122.36964157412554,55.236346973047425],[-122.36984720148116,55.236385489911335],[-122.370023417533,55.23642202713795],[-122.37016194823184,55.23646082871288],[-122.37034245196647,55.23651543141579],[-122.37056750240932,55.23657918229532],[-122.37081036223074,55.23664233086364],[-122.37099011153293,55.23668345492918],[-122.37112632414875,55.23670424691368],[-122.37126283973276,55.23672168366923],[-122.37132529592465,55.23672911150417],[-122.37136600838349,55.23673702654538],[-122.37146080230893,55.236757731643415],[-122.37166174208743,55.23678265307001],[-122.37198189333462,55.236863751186824],[-122.37221925681874,55.23700971305992],[-122.37229725100322,55.2371072976097],[-122.37231500911606,55.23712912006767],[-122.37232373680867,55.23714170883707],[-122.37242988317074,55.23718965537831],[-122.37272446096556,55.23727000593024],[-122.37302771734142,55.237341638289145],[-122.37313805225752,55.237365037623114],[-122.37317079457542,55.23737384104818],[-122.37339333155906,55.237421815069936],[-122.37381257598307,55.23749794705893],[-122.37416235027888,55.23753505045749],[-122.3744141995154,55.23754238854228],[-122.37465676664786,55.23756515390604],[-122.37485902562653,55.23761926225517],[-122.37502940051169,55.23767692665954],[-122.37517136879309,55.23767769831899],[-122.37533775197059,55.2376264798616],[-122.37555882354488,55.23758133929246],[-122.3757272316932,55.23763894543331],[-122.3757608429263,55.23779129987539],[-122.37584293526349,55.23790918467443],[-122.37614958094163,55.237965209645786],[-122.37648175387307,55.23800067247199],[-122.37661474416595,55.2380135153172],[-122.37664208895576,55.238016554131605],[-122.37671373309635,55.238053400490884],[-122.37678972004888,55.23812961872743],[-122.37685788944098,55.23822691398243],[-122.37701914631688,55.23836392227123],[-122.37737847675264,55.238492119760956],[-122.37780576423131,55.23858865528604],[-122.37803492732588,55.238672695079586],[-122.37807509175335,55.2387086243399],[-122.3781154577667,55.23874231685601],[-122.3781938193361,55.238814118045156],[-122.37826405577279,55.23886662063613],[-122.37839271725912,55.23892755131569],[-122.37859312747175,55.239024208777494],[-122.3787468657621,55.23909147531048],[-122.37891129580618,55.239127656418006],[-122.3791348566317,55.23916443652294],[-122.37927491644787,55.2391864524701],[-122.39999950948803,55.22959975902007],[-122.4038284499668,55.22782786873004],[-122.40385282260371,55.227842028561184],[-122.40388466376592,55.227860889375144],[-122.40391543793264,55.227869627849515],[-122.40396274934183,55.22786987411156],[-122.40419850635584,55.22788005223914],[-122.40423008063928,55.2278798435489],[-122.4042466178091,55.227871351306476],[-122.40427745789356,55.22783524054446],[-122.40429362793225,55.22780879726608],[-122.40434143791562,55.22773729612066],[-122.40437344494785,55.22771018927689],[-122.40439088201147,55.22769163154154],[-122.40443782604848,55.227673926593845],[-122.404532881168,55.227647520585386],[-122.40459556213698,55.22763027038491],[-122.40475243267012,55.22764041021278],[-122.40481478095593,55.22764893963405],[-122.40484545517596,55.22765879626475],[-122.40486165957695,55.22767608367315],[-122.40490853826115,55.22770322769472],[-122.40493957993537,55.227731035329995],[-122.40495498453586,55.227757269817936],[-122.40497108904012,55.22777567559867],[-122.40504697762604,55.227875419491966],[-122.40507768711683,55.227929006826514],[-122.40517174809018,55.228046094865455],[-122.40520199038916,55.22808284952929],[-122.40521739529532,55.228109083985444],[-122.40520192558785,55.22812769867746],[-122.40516788678505,55.22819959804252],[-122.40513548264555,55.22829733397432],[-122.40511921298308,55.22832489574945],[-122.40510267581102,55.2283333881081],[-122.40505573129731,55.228351093307246],[-122.405024524082,55.22836925323507],[-122.40499214954463,55.22837840921923],[-122.40486678556255,55.22841290998983],[-122.40483441095421,55.22842206593299],[-122.40477092892978,55.22844826334562],[-122.40474088875057,55.22847542714065],[-122.40470888135725,55.228502534080356],[-122.40464416648052,55.22856457663916],[-122.40459562156252,55.22860017584553],[-122.40458051861668,55.228636741490845],[-122.40457928591188,55.22867258670046],[-122.40456288468799,55.22878984670355],[-122.4045624519415,55.228816744823476],[-122.40459199428702,55.228861328341125],[-122.40460729909732,55.228888681260464],[-122.4046541790224,55.22891582538019],[-122.40471636392618,55.228970322388335],[-122.40474830637832,55.228988064596585],[-122.40477828166034,55.229005749949515],[-122.4048886447484,55.22900669656356],[-122.40504632059523,55.22900788893022],[-122.40509373333244,55.22900701637601],[-122.40512600837023,55.22899897875179],[-122.40515641617836,55.22898976589143],[-122.40518879117013,55.22898060986425],[-122.40525153868161,55.22891851018093],[-122.40530008340339,55.228882910718085],[-122.40534666084802,55.22884725439821],[-122.40537866808593,55.22882014729386],[-122.40541110746007,55.228766142058504],[-122.40542844452965,55.22874870256339],[-122.40546058066228,55.22863189713793],[-122.4054763826063,55.228587502677314],[-122.40549381954145,55.228568944786296],[-122.40558857276628,55.2284797377936],[-122.40563631692837,55.228453085296856],[-122.40568442875579,55.22844438380827],[-122.40576134839763,55.22844436348763],[-122.4058255653541,55.22845406762184],[-122.40587207778185,55.22846326025617],[-122.4059815758189,55.22851800214932],[-122.40605843175376,55.228562830795056],[-122.4061533604258,55.22862612184821],[-122.40623048478223,55.22869001980096],[-122.40626242767934,55.22870776162036],[-122.40637032776152,55.2287803973741],[-122.40641720874952,55.228807540829806],[-122.40643251477984,55.22883489352468],[-122.40644872033602,55.22885218072805],[-122.40646402640472,55.22887953341915],[-122.40647853293989,55.22891583321068],[-122.4064943070915,55.2289600185351],[-122.40647471309578,55.22911306720207],[-122.40647428162353,55.22913996532927],[-122.40645971161011,55.229148514688795],[-122.40646007969126,55.22916646571384],[-122.40642690526803,55.22918456917367],[-122.40631551498626,55.22928338771683],[-122.40626813828598,55.22932799150136],[-122.40612607132869,55.22941695359448],[-122.40610953392037,55.22942544608742],[-122.40607789460681,55.22947050440729],[-122.40607746286554,55.22949740253382],[-122.40607659938128,55.22955119878714],[-122.40607536798099,55.22958704401387],[-122.40609067407541,55.22961439675229],[-122.40616816818196,55.22969624577493],[-122.40623008831092,55.229731672616104],[-122.4062785695439,55.22974092192355],[-122.40637239719685,55.22975035973602],[-122.40641971083197,55.229750605064524],[-122.40648239426767,55.229733353911584],[-122.40651280232012,55.22972414071949],[-122.40660866046161,55.229688786019615],[-122.40673486328038,55.22968906715359],[-122.40698636953411,55.229699694532385],[-122.40706525880992,55.22969973021835],[-122.40709593514416,55.22970958629616],[-122.40715748771267,55.22972706165226],[-122.40725285181834,55.22976345374152],[-122.40729973454668,55.22979059686697],[-122.40732998009993,55.22982735101857],[-122.40733034857546,55.22984530204186],[-122.40735989474223,55.22988988490611],[-122.40737600119974,55.22990829037863],[-122.40742128544952,55.22995332767576],[-122.40746816851266,55.22998047073808],[-122.40750011297965,55.22999821224166],[-122.40756236558356,55.23000785867721],[-122.4076561941599,55.2300172955226],[-122.40768777010217,55.230017085955495],[-122.40773588335573,55.23000838367325],[-122.40778399658848,55.229999681372455],[-122.40779856662873,55.22999113185737],[-122.40781590319146,55.22997369202826],[-122.40783057312487,55.22996402412058],[-122.40784754095475,55.229928633265196],[-122.40786559343611,55.229748629441616],[-122.40786565527166,55.22970378028671],[-122.40788342221812,55.22965944231555],[-122.40789889127407,55.229640827288364],[-122.40791505965878,55.22961438353633],[-122.40797817271363,55.22957023349745],[-122.40804255354172,55.22953396894585],[-122.40807296108635,55.22952475537294],[-122.40824557771178,55.22953534516052],[-122.40829209194187,55.22954453689164],[-122.40834057342329,55.22955378539615],[-122.40838745664102,55.2295809281116],[-122.4084027643045,55.229608280565756],[-122.40841657360511,55.229652408859046],[-122.40841614342494,55.22967930699407],[-122.4083994452586,55.229733767335745],[-122.40841592108809,55.22977012369359],[-122.40843016063121,55.22978735385061],[-122.4084777821558,55.229850398572516],[-122.4085557116614,55.22990534797494],[-122.4085856892997,55.22992303241252],[-122.40861843331287,55.22993182651274],[-122.40866414899736,55.229949965221806],[-122.40874293888125,55.22995111823449],[-122.4087753138304,55.22994196127417],[-122.40880652057271,55.229923800404194],[-122.4088850019395,55.22986215315226],[-122.40891700760129,55.22983504513652],[-122.4089498122428,55.22979898999389],[-122.40898181781067,55.229771881961575],[-122.4090615273582,55.22967438934327],[-122.40910980022703,55.22961971898547],[-122.40917211301078,55.229584515461],[-122.40920448756735,55.229575358389376],[-122.4093464279089,55.22957609109277],[-122.40953488281748,55.22958601490131],[-122.40956635855142,55.22958692324808],[-122.40964364988,55.229604851545524],[-122.40969053403602,55.22963199377044],[-122.40978510137248,55.2296773310435],[-122.4098303880583,55.22972236746387],[-122.40984649557858,55.22974077261658],[-122.40989215202227,55.22980376003035],[-122.40992409741754,55.22982150091189],[-122.40995551383763,55.22986725831648],[-122.41001663877597,55.22991163040024],[-122.410079690623,55.2299123284517],[-122.4101278032341,55.229903625245306],[-122.41017511707223,55.22990386914694],[-122.41025363697088,55.229885951798046],[-122.4103328556766,55.2298602056631],[-122.4104268433768,55.22982367287333],[-122.41050526317231,55.22980687375685],[-122.41056884343962,55.22977955502706],[-122.41064806173428,55.22975380869185],[-122.41074391631356,55.229718450808406],[-122.41079085991969,55.229700743463155],[-122.41080749627918,55.22969113195699],[-122.41085364122856,55.22968237171848],[-122.41090095481098,55.22968261534432],[-122.41112178480884,55.22968337923004],[-122.41115326065473,55.22968428717575],[-122.41118403779376,55.22969302385483],[-122.41127663971285,55.229738303249455],[-122.41132512211347,55.22974755059205],[-122.4114040114868,55.22974758352933],[-122.4114343186146,55.22973948752723],[-122.41146589431916,55.22973927700209],[-122.41154601020993,55.22970346456905],[-122.4116390982179,55.229676996391795],[-122.41165563456269,55.22966850316433],[-122.4117194844616,55.22966025324953],[-122.41176562917705,55.22965149267307],[-122.41187689236483,55.229642367564814],[-122.41201883299125,55.229643097222],[-122.4120496102867,55.22965183368712],[-122.41211223405206,55.22967942885684],[-122.41218936988759,55.229743323123394],[-122.41222051795273,55.22977001055509],[-122.41222009031368,55.22979690870341],[-122.41220296959472,55.229878267703924],[-122.41220174364095,55.22991411299201],[-122.41218674690104,55.22994956117068],[-122.41210651687067,55.230075072332184],[-122.41209035105499,55.23010151662931],[-122.41205791956753,55.23015552360966],[-122.41199385468663,55.23025459040729],[-122.41197768872479,55.23028103469013],[-122.41195976894515,55.23037134079853],[-122.41192743686166,55.2304242293537],[-122.41191191204051,55.23048769404147],[-122.41192615333426,55.23050492379957],[-122.41194103592058,55.230559173969525],[-122.41195671691737,55.23060447699935],[-122.41197165684291,55.23061387800624],[-122.41200317600472,55.23065851650461],[-122.41204926462834,55.23069460498226],[-122.41208121168161,55.23071234531147],[-122.41211189001609,55.23072220015431],[-122.41223809611358,55.2307224757109],[-122.41242655710326,55.23073239514391],[-122.41245893184269,55.23072323722531],[-122.41263118391417,55.23071586992523],[-122.41288162878499,55.23071636313888],[-122.41296158943446,55.23072651734593],[-122.41300730797911,55.23074465446141],[-122.41308534516611,55.2307984826394],[-122.41314834250569,55.23084402829791],[-122.41319523046896,55.230871169205685],[-122.4132105418908,55.23089852107134],[-122.41322595309526,55.23092475454185],[-122.41320968791152,55.230952317379256],[-122.41320926092104,55.23097921553336],[-122.4131453532813,55.23103231537418],[-122.413050239759,55.231103577125396],[-122.41300169921446,55.231139179615305],[-122.41295512589988,55.231174838804264],[-122.41293769127638,55.23119339774353],[-122.41290648541387,55.23121155965037],[-122.41281259649745,55.23124697592243],[-122.41278032119214,55.23125501554024],[-122.41273337664839,55.23127272363751],[-122.41265405691937,55.2312995896952],[-122.41262205261012,55.23132669867437],[-122.41252693746544,55.23139796002737],[-122.41244596406275,55.231487569400734],[-122.41241353193553,55.231541576479145],[-122.4123985347757,55.23157702468763],[-122.41238316684374,55.23159452188361],[-122.41238273929397,55.231621420036056],[-122.41239767969655,55.23163082099259],[-122.41241262010612,55.23164022194721],[-122.41242756052263,55.2316496229002],[-122.41253760337634,55.231676342495085],[-122.41258529014965,55.231694536491275],[-122.41261596935628,55.2317043912105],[-122.41264871569949,55.231713184252094],[-122.41272595606273,55.23177595980272],[-122.41277284482692,55.231803100871396],[-122.41289772915313,55.231840339451246],[-122.4129758244621,55.231849318537975],[-122.413022342447,55.231858508503684],[-122.41311697475548,55.23185899408943],[-122.41325812511678,55.23186866948076],[-122.4133219781779,55.231860418743004],[-122.41336892314821,55.231842710422995],[-122.41343250468792,55.23181539022699],[-122.41346361102391,55.23179834658118],[-122.41347987637567,55.2317707837088],[-122.41348158364433,55.23166319108312],[-122.41346712539811,55.2315820429368],[-122.41346718099393,55.231537193773384],[-122.41348334648161,55.23151074929474],[-122.41350040974802,55.23147423927167],[-122.4135157771483,55.23145674193788],[-122.41354895025549,55.231438636586496],[-122.41359552334919,55.231402977174746],[-122.4136120599903,55.231394483686394],[-122.4136756406568,55.23136716336718],[-122.41369020994046,55.23135861316201],[-122.41375289276384,55.23134135834712],[-122.41383258323111,55.23133244259535],[-122.41394295291182,55.231333381184726],[-122.41419340164153,55.231333871760164],[-122.4142407171857,55.231334114117075],[-122.4142725659789,55.23135297227914],[-122.41431982690074,55.231398063769205],[-122.41431860278617,55.231433909082014],[-122.41430280947878,55.23147830467361],[-122.41427080613805,55.23150541407688],[-122.4141599547933,55.231576223100134],[-122.41409514980545,55.231639388978266],[-122.4140469810275,55.231692942882624],[-122.41403081583701,55.23171938743476],[-122.41401572029356,55.2317559542323],[-122.41399838564983,55.23177339492686],[-122.41399912858586,55.23180929693895],[-122.41399870211391,55.23183619509736],[-122.41402815738776,55.2318818947797],[-122.41404356950177,55.231908128150934],[-122.41406047775243,55.231917585608876],[-122.41410656966286,55.23195367332832],[-122.41415425747412,55.231971866724066],[-122.41421651472582,55.231981509834334],[-122.41424809217494,55.231981298603664],[-122.41443655955509,55.231991214995524],[-122.41446813701066,55.23199100370911],[-122.41449844521155,55.231982906959864],[-122.41453044877862,55.231955797497214],[-122.41469036624407,55.23182136845578],[-122.41481668399061,55.231731943069725],[-122.41486442589905,55.231705287028646],[-122.4148809623966,55.23169679337161],[-122.4149594836981,55.23167887305308],[-122.41500759736574,55.2316701679602],[-122.41511600065692,55.23167104882433],[-122.41532100319263,55.231672470187064],[-122.4154148374688,55.23168190118735],[-122.41547836401092,55.23169942911179],[-122.41554179090899,55.231718075399115],[-122.41563519996596,55.23175440439688],[-122.41571207283438,55.23179922709427],[-122.4157597611884,55.231817419875],[-122.41585279837716,55.23183579770898],[-122.41604243533777,55.23185471550672],[-122.41618278893169,55.23187333474847],[-122.41621426660448,55.23187424141508],[-122.41627742131307,55.231873817932524],[-122.416355790284,55.231901864294905],[-122.41657541044279,55.23193846384337],[-122.41660619048282,55.23194719918367],[-122.41662309935211,55.231956656293605],[-122.41666999095507,55.23198379589521],[-122.41673102684413,55.23202928308591],[-122.41674596841386,55.23203868352094],[-122.41673134757453,55.232092083250585],[-122.41669732601768,55.23216398578709],[-122.41666489905082,55.2322179939754],[-122.41660131453295,55.23233389576065],[-122.41660168716702,55.23235184675961],[-122.41655235087505,55.232396397806134],[-122.41652034831961,55.23242350778942],[-122.4164899405189,55.232432723426925],[-122.41647340405855,55.23244121729806],[-122.41642608719927,55.23244097578953],[-122.41614298353136,55.23243057919398],[-122.41609566668654,55.23243033755981],[-122.41601794192854,55.23243931143007],[-122.41593824975361,55.232448228581084],[-122.4158598270792,55.23246503112225],[-122.41574850393604,55.232519008958725],[-122.41570155922395,55.232536718176604],[-122.41565381688362,55.23256337454029],[-122.41558990995375,55.23261647564197],[-122.41554253960938,55.23266108296548],[-122.41549427183143,55.23271575582902],[-122.41544610362705,55.23276931027878],[-122.41538336584351,55.23283141511603],[-122.41535173423601,55.23287647580309],[-122.4153355694275,55.23290292052688],[-122.4153339740977,55.23292081485009],[-122.41533386706311,55.2330105131878],[-122.41533211850043,55.23307437507551],[-122.41533046964099,55.23313711856824],[-122.41536279216882,55.23317280906262],[-122.41537810593964,55.23320016066635],[-122.41545498128345,55.23324498352733],[-122.41551878276631,55.233281580832106],[-122.41556530298756,55.23329076984882],[-122.41561182323007,55.23329995884814],[-122.41569071957075,55.23329998906959],[-122.4159265113599,55.23331014499551],[-122.41598877110665,55.23331978722064],[-122.41613109721158,55.233338463192794],[-122.41627145602142,55.23335708233664],[-122.41635072500623,55.23337506314138],[-122.41653919943187,55.23338497635201],[-122.41664877742288,55.23339485971295],[-122.41669529803309,55.23340404830762],[-122.41675755810935,55.23341369014855],[-122.41688334811856,55.2334408591683],[-122.41691412937456,55.233449594433466],[-122.41694677841234,55.23345950474238],[-122.41699409647235,55.23345974605314],[-122.41704061723642,55.233468934518754],[-122.41708793530809,55.23346917579396],[-122.41716603471284,55.23347815225386],[-122.41730639448873,55.23349677023157],[-122.41744951903776,55.23350649752245],[-122.41751060920961,55.23350713516452],[-122.41760524544897,55.23350761733952],[-122.41769945767426,55.23353499761713],[-122.41785720057455,55.23357990453675],[-122.4179820951194,55.23361713802261],[-122.41806014453093,55.23367096309411],[-122.41809129952942,55.23369764906488],[-122.41810661535449,55.23372500033416],[-122.41810576786045,55.233778796686664],[-122.41810534411259,55.233805694863065],[-122.41808706320343,55.23387805087968],[-122.41807286724658,55.2339045525974],[-122.41803884655442,55.23397645551003],[-122.41800641992751,55.234030464054825],[-122.41795984770165,55.23406612512307],[-122.41792784476655,55.23409323547132],[-122.41791130792737,55.234101729534466],[-122.41788089917706,55.23411094551283],[-122.41777009781123,55.23413690858935],[-122.41772315210137,55.23415461857143],[-122.41762771715936,55.23416308366298],[-122.41754919219875,55.234181005667324],[-122.41750224634023,55.23419871556624],[-122.41748491215535,55.234216156749085],[-122.41747024299141,55.2342258257971],[-122.41743754202851,55.2342607647988],[-122.417436320604,55.234296610149805],[-122.4174358964032,55.234323508324884],[-122.41745280646599,55.23433296532377],[-122.41746695184052,55.23435131285005],[-122.41749970139757,55.234360104617664],[-122.41751464401231,55.23436950496208],[-122.41757690577862,55.23437914639414],[-122.41768658637803,55.234387910445385],[-122.41773390553416,55.234388151475144],[-122.41784385975755,55.23441598478359],[-122.4179853934947,55.23444360581664],[-122.41804882587971,55.2344622508307],[-122.41812650368517,55.234498124866576],[-122.41821912447297,55.234543399114145],[-122.4182510773017,55.23456113786548],[-122.4183298263076,55.23460713398805],[-122.41835981174363,55.23462481607852],[-122.4184850834924,55.23468000005952],[-122.41859434167901,55.234715661490945],[-122.4187819763251,55.23477936766814],[-122.41882966959871,55.23479755927723],[-122.41890767235661,55.23480765304406],[-122.41900151478399,55.23481708134381],[-122.41908078786462,55.23483506041268],[-122.41911157066409,55.234843795135546],[-122.41922152708536,55.23487162722857],[-122.41933068684294,55.234908406413076],[-122.41937838051751,55.23492659781213],[-122.41942527743954,55.23495373638216],[-122.41950216064133,55.23499855675035],[-122.4195182746971,55.235016960658974],[-122.41950211176689,55.235043405927726],[-122.4195008921577,55.23507925130107],[-122.41950154046627,55.235116271687666],[-122.41945215506522,55.23520567307003],[-122.4194517322023,55.235232571253775],[-122.41942099966674,55.23526756739413],[-122.41940473697106,55.23529513104942],[-122.41937273403198,55.235322241771385],[-122.41930765692848,55.23536634098605],[-122.41929308738744,55.235374891851],[-122.41919802370218,55.23540130914168],[-122.41913406661868,55.23541068129304],[-122.41903979963563,55.23542815127548],[-122.41894515886239,55.23542767019044],[-122.41881973490236,55.2354184542458],[-122.41877241452818,55.2354182136286],[-122.41871015086774,55.23540857279362],[-122.41856983368787,55.23534510721731],[-122.41852213988275,55.23532691550805],[-122.41847561663242,55.23531772759456],[-122.41842909340332,55.23530853966367],[-122.41835029275282,55.23530739277923],[-122.41828633562115,55.23531676449514],[-122.41817670164241,55.2353517317516],[-122.41814549491981,55.23536989497687],[-122.41811232063996,55.23538800155798],[-122.41808121349816,55.23540504636958],[-122.4180338426328,55.23544965465001],[-122.41800183864721,55.23547676501993],[-122.41798520161426,55.235486377491355],[-122.41795329720847,55.23551236945141],[-122.4179055021748,55.23558387586263],[-122.41789003546343,55.23560249214097],[-122.41788998479147,55.23564734131975],[-122.41787254876769,55.2357544809165],[-122.41787095445304,55.235772375276],[-122.4178234325296,55.2358629510545],[-122.41780647097141,55.23589834328436],[-122.41777446647579,55.235925453596835],[-122.41774335877537,55.235942498324704],[-122.41771215139902,55.235960661442256],[-122.41766440632827,55.23598731858345],[-122.41760161829227,55.23600569377034],[-122.41745843366384,55.236040815832375],[-122.41741228286094,55.23604957852246],[-122.41734879699297,55.23607578236187],[-122.41729988127328,55.236093435538436],[-122.41718934734044,55.23613846750107],[-122.41709465335965,55.23618283419003],[-122.41704770496561,55.236200543920226],[-122.41698342125802,55.23623569474846],[-122.41695221331128,55.236253857675955],[-122.41687246198192,55.236307624607825],[-122.41684172638212,55.236342620114485],[-122.4167938806054,55.236370395319405],[-122.41673039382859,55.23639659884421],[-122.41668227488229,55.23640530460573],[-122.41663495336039,55.23640506317644],[-122.41647804566644,55.23639493831224],[-122.41638420015065,55.2363855081099],[-122.41629115219975,55.23636713066671],[-122.41619613676053,55.236348696487376],[-122.41610191897041,55.23632131506684],[-122.41599223344625,55.23631254961854],[-122.41592996906809,55.236302907392975],[-122.41581958571044,55.23630197056439],[-122.41577226431525,55.23630172880727],[-122.4157410557706,55.23631989143141],[-122.41570984719776,55.23633805404764],[-122.41561355577267,55.2364003139438],[-122.41558112393729,55.236454321866745],[-122.41551678522498,55.23653432111934],[-122.41550168922561,55.23657088811014],[-122.41545229315258,55.236660287915896],[-122.41545266531415,55.23667823892405],[-122.4154343712241,55.236839174534346],[-122.41543177151861,55.23695683278851],[-122.41543129253569,55.23702858014446],[-122.41544670753576,55.23705481335202],[-122.41546202284103,55.237082164953456],[-122.41550929182485,55.23712725601103],[-122.41552460720024,55.23715460760481],[-122.41557033420371,55.23717274378791],[-122.41561802886208,55.23719093663015],[-122.41571145069263,55.23722726558541],[-122.4158064679844,55.23724570013577],[-122.41591446106489,55.23727347848063],[-122.4160887551781,55.23730989385284],[-122.41619754618652,55.23732872478305],[-122.41624486879205,55.23732896637854],[-122.41654384761357,55.23733869764049],[-122.41666917735577,55.237349034275184],[-122.41679460684094,55.23735825238702],[-122.41688845472159,55.23736768228089],[-122.41701468169497,55.23736795299658],[-122.41712427064937,55.237377835942],[-122.41742315038549,55.23738868349018],[-122.4176274845441,55.237397929837186],[-122.41778519364755,55.23739910607375],[-122.41790982636299,55.23741727024281],[-122.41809949059548,55.23743618491583],[-122.41822402392857,55.23745546716835],[-122.4182556056524,55.23745525492134],[-122.41834945410166,55.237464683714286],[-122.41836636569926,55.23747414059147],[-122.41847605490696,55.23748290394948],[-122.41858484750028,55.237501732794684],[-122.4186633286677,55.237528659318315],[-122.41874171031522,55.23755670419088],[-122.41880445059567,55.23758317761264],[-122.41883630647392,55.23760203461621],[-122.41891277083096,55.23767375354375],[-122.4189438298745,55.23770155770764],[-122.41900577356971,55.237736978216226],[-122.41903762966406,55.23775583516844],[-122.41906916225898,55.237800471901636],[-122.41911404536178,55.237872403159976],[-122.41911441916815,55.237890354158836],[-122.41912931417764,55.237944603498896],[-122.41914383540662,55.23798090183858],[-122.41919068650505,55.23805288969043],[-122.41922104874298,55.238088522576966],[-122.41925210831971,55.23811632666485],[-122.41929980576118,55.238134518098356],[-122.41934590949202,55.238170603895156],[-122.41940865112721,55.23819707701381],[-122.41944050777465,55.23821593386371],[-122.41954977640937,55.23825159446643],[-122.4196112478503,55.238270182076334],[-122.41969132480924,55.23827921356851],[-122.4198174550641,55.238280599842845],[-122.41987865211688,55.23828011792427],[-122.41991093163875,55.23827207646253],[-122.4199902602669,55.23824520576869],[-122.42002067165846,55.23823598927242],[-122.42005374783751,55.23821900057861],[-122.42008617509188,55.238164991483856],[-122.42014943594683,55.23807486766156],[-122.42019765234528,55.23797646218393],[-122.42019924571255,55.2379585677917],[-122.42021644986471,55.237787509269566],[-122.42023223912369,55.237743112907395],[-122.42024919932585,55.23770772034234],[-122.42028200023105,55.23767166219385],[-122.42032857457201,55.23763600024762],[-122.42036174970791,55.23761789307317],[-122.4204071050371,55.23761807648627],[-122.42051749211178,55.23761900924901],[-122.42065983552526,55.237637680051186],[-122.42073874037472,55.23763770707456],[-122.42108297838195,55.23764872911609],[-122.42116188325338,55.23764875587133],[-122.42125573283491,55.23765818247456],[-122.42133580894497,55.23766721290915],[-122.42141302148664,55.23768625231205],[-122.42147656012098,55.23770377718434],[-122.4215234616949,55.23773091496984],[-122.42156919205696,55.237749048951144],[-122.42160104936217,55.23776790524779],[-122.42161726503254,55.23778519048797],[-122.42163141351956,55.237803537545894],[-122.4216479046087,55.237839892174094],[-122.42166205312893,55.23785823922857],[-122.42166121030138,55.23791203562178],[-122.42166116382991,55.237956884809705],[-122.42164500112715,55.23798333036236],[-122.42164537606365,55.23800128135377],[-122.42158174376588,55.23807345494376],[-122.42156558096411,55.238099900486304],[-122.42151666463383,55.23811755532175],[-122.42148625367444,55.23812677218321],[-122.42136012384431,55.238125387598956],[-122.4213293380462,55.238116653429714],[-122.42131242548223,55.23810719695449],[-122.4212504791866,55.238071777592154],[-122.42117172006141,55.2380257833045],[-122.42112678604197,55.23799870197484],[-122.42107829144729,55.237989458442925],[-122.42082663009289,55.23797997792034],[-122.42078005579522,55.23801564005368],[-122.4207481511894,55.23804163273465],[-122.42073146624413,55.238096094762724],[-122.42073062216741,55.2381498911507],[-122.4207127185281,55.23824019857051],[-122.42072729335086,55.23832022751524],[-122.42072762036861,55.23838302769883],[-122.42072630217808,55.238419991493124],[-122.42072508355713,55.23845583688748],[-122.4206607042845,55.23858068799889],[-122.42064476798973,55.23867105200802],[-122.42062649376068,55.23883198840465],[-122.42061018280612,55.23890440141543],[-122.42056079521889,55.23899380326268],[-122.42052874238193,55.239065763480546],[-122.42049589278967,55.239146670889305],[-122.42046276822603,55.2392085088935],[-122.42046351706738,55.239244410886734],[-122.42046257302688,55.23929932567727],[-122.42046055749195,55.239344118270104],[-122.42047555443585,55.23939724905538],[-122.42047620371075,55.23943426944883],[-122.420427141734,55.239586471436745],[-122.42042512614519,55.23963126403],[-122.4204238115138,55.23975680781168],[-122.42042334139927,55.2398285552017],[-122.42042212246577,55.23986440059701],[-122.42043659771514,55.23994554798535],[-122.42045149526814,55.23999979717575],[-122.42046798619131,55.24003615196619],[-122.42048223452855,55.240053380757765],[-122.42052988708751,55.240116420917744],[-122.42055977801542,55.24013522088579],[-122.42060663415576,55.24020720821667],[-122.42065152269197,55.240279138933964],[-122.42071407383743,55.240396428190884],[-122.42074443919299,55.24043206071228],[-122.42077470502672,55.24046881162661],[-122.42080666368783,55.24048654973012],[-122.42085356805379,55.24051368777364],[-122.42090009785515,55.24052287480237],[-122.42096354117508,55.24054151834042],[-122.42102660986933,55.24054221084947],[-122.42113710454664,55.240542024662766],[-122.42116672089243,55.24054175508891],[-122.42119900197133,55.24053371329199],[-122.42124754659584,55.24049810758214],[-122.42134365750107,55.24032707552256],[-122.42137561032698,55.24025623348883],[-122.4213922952961,55.2402017713655],[-122.42142509721009,55.24016571290909],[-122.42153558452598,55.24007694637909],[-122.42156758978957,55.24004983509176],[-122.42167882641267,55.23999697042403],[-122.42179016228958,55.239942987256285],[-122.4218683215522,55.23990711157694],[-122.42194675622243,55.23989030524268],[-122.42199567451921,55.239872650235995],[-122.42205846658278,55.23985427282855],[-122.4221689057385,55.23981035493313],[-122.42220011408882,55.23979219069373],[-122.42224786066944,55.239765531806086],[-122.42235872034188,55.23969471554051],[-122.4224700544702,55.23964073176618],[-122.42251780069225,55.23961407277546],[-122.42256592221318,55.239605364757146],[-122.42261324753437,55.23960560393295],[-122.42278483914755,55.23960605139382],[-122.42286285221947,55.23961614268702],[-122.42287986529713,55.239624480551],[-122.42295825396629,55.23965252277434],[-122.42300515881114,55.239679660005805],[-122.4231754446972,55.23980565073792],[-122.42322272552454,55.239850738877095],[-122.42323725113428,55.239887036744655],[-122.42326709847309,55.23995068525787],[-122.42328289538715,55.23999486849041],[-122.42331316321061,55.24003161878665],[-122.42337549006723,55.24008498811735],[-122.42339160793175,55.24010339153182],[-122.42342356745628,55.24012112896327],[-122.42345425574239,55.24013098101847],[-122.42350078569496,55.24014016707546],[-122.42372087738107,55.24014985583705],[-122.42376820334958,55.24015009457405],[-122.42379899123294,55.240158828141716],[-122.42383164741061,55.24016873665061],[-122.42386281126832,55.24019542119036],[-122.42401847605326,55.2402862313816],[-122.42408112457844,55.240313820553446],[-122.42412765488558,55.24032300637636],[-122.42417418521396,55.24033219218187],[-122.42422151139962,55.24033243074667],[-122.42425309534991,55.2403322169788],[-122.42428430316407,55.24031405221645],[-122.42434741503881,55.24026989384704],[-122.42436367635915,55.24024232953609],[-122.42436610722388,55.24017063866672],[-122.42435072869083,55.240099557360836],[-122.4243358258436,55.240045308636546],[-122.42429017871164,55.239937477276214],[-122.42427565213382,55.23990117953131],[-122.4242760718209,55.2398742813218],[-122.42427653506587,55.23980253391708],[-122.42429405526718,55.23969427498866],[-122.42429451847799,55.23962252758483],[-122.42430988429616,55.23960502890863],[-122.42434314623164,55.23949722228228],[-122.42436099881814,55.2394517635261],[-122.42440757160423,55.23941610004978],[-122.42443947493588,55.23939010642876],[-122.424456112041,55.23938049309255],[-122.42448769524279,55.23938027926516],[-122.42462929416725,55.23936304356382],[-122.42466077788956,55.239363948095786],[-122.4247396861269,55.239363972584464],[-122.42478621548595,55.239373158160674],[-122.42481737936053,55.23939984245994],[-122.42487843570964,55.2394453256821],[-122.42490950024305,55.239473128361915],[-122.4249410406978,55.23951776361409],[-122.4250020118667,55.23965294516571],[-122.42501653901016,55.239689242825214],[-122.42504849892207,55.23970697983925],[-122.42509540524016,55.239734116283664],[-122.42514310724115,55.239752305481545],[-122.4252349524188,55.239806521757814],[-122.42526770811328,55.239815311486154],[-122.42532918458456,55.23983389627612],[-122.42543878229688,55.239843771907346],[-122.42553460575797,55.239853251808476],[-122.42558113586433,55.239862437088156],[-122.4256119239211,55.23987117020758],[-122.42570615649473,55.239898544440706],[-122.4257526866926,55.23990772965628],[-122.42578417086638,55.23990863390437],[-122.42606850198455,55.23992801233329],[-122.42611395936957,55.23992707526379],[-122.42641286046324,55.23993790124088],[-122.42646135863173,55.23994714269704],[-122.42660053184105,55.24000159566282],[-122.4266947653927,55.24002896914834],[-122.42682086065084,55.240075197527325],[-122.42685085389327,55.240092877580466],[-122.42689935234914,55.24010211886613],[-122.4269616252346,55.24011175561039],[-122.42713476904895,55.24013915179426],[-122.42718209502505,55.24013938923406],[-122.42726020962834,55.24014835936817],[-122.42744754580741,55.24014925233991],[-122.42751140909874,55.2401409943214],[-122.42769991796551,55.240150890645914],[-122.42777882774794,55.240150913209135],[-122.42784189594694,55.240151602267225],[-122.42788763190784,55.24016973393182],[-122.42792038847746,55.2401785229628],[-122.42795145567892,55.24020632488543],[-122.4279498656704,55.24022421937975],[-122.42796608505815,55.24024150379651],[-122.42794978674168,55.24031391777583],[-122.42794777949122,55.240358710493],[-122.42790120875206,55.240394375295594],[-122.42786920748227,55.240421488211055],[-122.42783810058249,55.24043853546598],[-122.42779035690735,55.24046519649788],[-122.42775756045387,55.24050125663112],[-122.42774130135399,55.24052882138565],[-122.42773921446187,55.24066331249855],[-122.42775453949692,55.24069066259534],[-122.42777113668376,55.24072589801477],[-122.42784873587009,55.24076288440884],[-122.427926812342,55.240816703325024],[-122.42798825214949,55.240880136003945],[-122.42803553963279,55.24092522231972],[-122.42808165439605,55.24096130489016],[-122.42811361666959,55.24097904111939],[-122.42819163374001,55.24098912907593],[-122.42825321272446,55.241006594018145],[-122.42827012813844,55.24101604955284],[-122.4283001227191,55.241033729258305],[-122.4283162432162,55.24105213203675],[-122.42839459948624,55.24112502004262],[-122.42840885160324,55.241142247928934],[-122.42839217574198,55.241196710995744],[-122.42839293169594,55.24123261294648],[-122.42836051312015,55.24128662421607],[-122.42834314156181,55.24134891612122],[-122.42831030581978,55.24142982560453],[-122.42827868193055,55.24147488960331],[-122.42827746994571,55.24151073507967],[-122.42826248304722,55.24154618522406],[-122.4282919225464,55.241636730767546],[-122.42830814265052,55.241654015141584],[-122.42838695601438,55.24165515572588],[-122.42841736805974,55.24164593717697],[-122.42844857501278,55.241627771369444],[-122.42848085550736,55.24161972768467],[-122.42852907749928,55.24160989895479],[-122.42857523225848,55.24160113214155],[-122.42865366742923,55.241584321581804],[-122.42871763210846,55.2415749445374],[-122.42876495978277,55.241575181375794],[-122.42879565048581,55.241585032116],[-122.42885919849257,55.241602553227075],[-122.42890493656128,55.2416206845201],[-122.42895184771145,55.24164781951615],[-122.42903141761363,55.24168486164118],[-122.42920252561439,55.24180189689687],[-122.42923242184675,55.241820694785886],[-122.42948365522196,55.241901905761345],[-122.42951514104006,55.241902809066445],[-122.42957751667358,55.24191132609678],[-122.4298606905193,55.241921692157774],[-122.43022150513858,55.24192419328982],[-122.43041081751788,55.24192513825006],[-122.43055359626739,55.24191689951641],[-122.43063133609084,55.2419079165677],[-122.43088371940986,55.24190954842283],[-122.4309299732966,55.24189966232858],[-122.43107157832743,55.241882419299905],[-122.43113544362593,55.24187415942229],[-122.43121397754801,55.241856228841286],[-122.43124625767302,55.24184818443966],[-122.43129320640651,55.24183046934992],[-122.43130984288302,55.24182085509629],[-122.43132520648953,55.24180335555188],[-122.43135762150172,55.24174934350849],[-122.4313584871107,55.241650697830686],[-122.4313581078065,55.241632746863736],[-122.43134277996297,55.24160539720842],[-122.43131361361868,55.24153392176193],[-122.43128136951118,55.24149711697751],[-122.43115796343112,55.241398271476825],[-122.43112689309359,55.24137047035152],[-122.43109572350815,55.24134378762697],[-122.43106534829741,55.24130815762702],[-122.43105002077655,55.24128080793632],[-122.43103510845904,55.24122656000893],[-122.43102019618173,55.2411723120799],[-122.4309413566555,55.241082593166446],[-122.43092602930486,55.24105524346098],[-122.43083379454404,55.240983080408604],[-122.43072384976236,55.240910409354754],[-122.43067773268791,55.24087432776263],[-122.43063002685471,55.240856140682794],[-122.43052242952149,55.240801476858515],[-122.43044313957367,55.240783505064925],[-122.430364644175,55.24075658595788],[-122.4302242530329,55.24073798268815],[-122.43009932505676,55.24070076146063],[-122.43006736212898,55.24068302574134],[-122.43002124590387,55.24064694390678],[-122.42998969892821,55.24060230993746],[-122.42997399373088,55.24055700914612],[-122.42997482549917,55.24050321268632],[-122.42999187761403,55.24046670037993],[-122.43000686258668,55.24043125003035],[-122.4300388624237,55.24040413656559],[-122.43010193105829,55.24040482447942],[-122.43030707792894,55.24040510276484],[-122.43036935209943,55.240414737805445],[-122.43044746794781,55.24042370594074],[-122.43062168955531,55.240461219390724],[-122.43069901115206,55.24047913463265],[-122.43077740693548,55.240507171936585],[-122.43080819661337,55.24051590377198],[-122.43093360306922,55.240569956846386],[-122.43099705111193,55.240588595273614],[-122.43104278899139,55.240606725780246],[-122.4311847327815,55.240652282791366],[-122.43123047081791,55.240670413229175],[-122.43129429842325,55.24070700247119],[-122.43132508836625,55.24071573417893],[-122.43135705187446,55.24073346957557],[-122.43140358432781,55.24074265268057],[-122.43145091103887,55.2407428884984],[-122.43162358193649,55.2407534458869],[-122.43166973503894,55.24074467792766],[-122.43170290763368,55.2407265677282],[-122.43171747647501,55.24071801540823],[-122.43176601201303,55.240682405598726],[-122.43178068009519,55.24067273486231],[-122.43178226841766,55.24065484031855],[-122.43179763137346,55.24063734071729],[-122.43181309358506,55.24061872270522],[-122.43184578723134,55.24058377991284],[-122.43190940508686,55.24051160106594],[-122.43194264740927,55.240403792403335],[-122.43195959843175,55.24036839823706],[-122.43199201143626,55.24031438603443],[-122.43202363025432,55.24026932109699],[-122.43207182024051,55.240170911007546],[-122.432071440632,55.24015296004487],[-122.43207306367279,55.240090216299286],[-122.43209042891307,55.24002792388001],[-122.43212087369469,55.23997385522976],[-122.43215445987165,55.23992884667529],[-122.4322346470096,55.239803322510184],[-122.43223509606219,55.23973157507674],[-122.43227037391915,55.23953412435242],[-122.43228707847085,55.239434811576736],[-122.43230364907731,55.23938146640501],[-122.43232121667911,55.23918350796007],[-122.43232321900226,55.23913871517652],[-122.43233940972102,55.23906741904078],[-122.43238797723379,55.23898695979835],[-122.43241959456525,55.23894189476478],[-122.4324362295783,55.23893228036285],[-122.43251590043866,55.238834772670224],[-122.43256297866186,55.2387710895021],[-122.4326272870574,55.238691081432414],[-122.43267464555895,55.238646467591224],[-122.43272321189326,55.238566008220616],[-122.43273988080188,55.23851154458489],[-122.43274146861246,55.238493650031764],[-122.43275852043563,55.23832370818252],[-122.43276027566881,55.23821499683461],[-122.43276155175903,55.238089452939214],[-122.43274781210137,55.23804420891129],[-122.43271626414183,55.23799957564131],[-122.43270055689074,55.23795427520284],[-122.43268723139138,55.23788213293508],[-122.43270424902191,55.237757040291974],[-122.43270386915404,55.23773908933444],[-122.43272012372702,55.23771152393792],[-122.43275281422348,55.237676580915135],[-122.43278322226152,55.23766736130312],[-122.43279975742634,55.237658865263164],[-122.43283016544021,55.23764964563976],[-122.43289322980509,55.237650332139886],[-122.43297213468641,55.237650351412974],[-122.43300489031556,55.23765913910517],[-122.43303557906965,55.237668988797736],[-122.4330813145489,55.23768711855177],[-122.43320671524194,55.23774116932599],[-122.43328638055674,55.237777090312036],[-122.43356539210473,55.23792300113817],[-122.43361230208671,55.2379501343713],[-122.43375461975329,55.23801363939978],[-122.43386348726368,55.23807618568108],[-122.43394108693975,55.238113168272],[-122.43406687059533,55.2381851691363],[-122.43409714690657,55.23822191680649],[-122.43414326400722,55.23825799712526],[-122.43418896814694,55.238320975666504],[-122.43421972441838,55.23837455585044],[-122.43426660294634,55.2384465380317],[-122.43429643427442,55.23855503308821],[-122.43437410216289,55.23863574619422],[-122.43438901802188,55.238689993711134],[-122.43440396618996,55.238699392031904],[-122.4344351036866,55.23877092311791],[-122.43446490350847,55.238924267331946],[-122.43449445423741,55.239013692980144],[-122.43450975108469,55.23908589143803],[-122.43452428660036,55.239122187986695],[-122.43456999231809,55.23918516639228],[-122.43458532143325,55.23921251564543],[-122.43463140809128,55.23929344498268],[-122.43464791153669,55.239329797893014],[-122.43466295918972,55.23933807777194],[-122.43474173630419,55.239384063532036],[-122.43480331567507,55.239401525233724],[-122.4348493355791,55.239438723705504],[-122.43491247026002,55.23948313996932],[-122.43500629574189,55.23953740540963],[-122.43506853816586,55.23959188729783],[-122.43508386777485,55.239619236490405],[-122.43511462623036,55.23967281645871],[-122.4351283691056,55.239718060231],[-122.43512754424401,55.23977185672192],[-122.43514360446767,55.23987995701209],[-122.43515814084199,55.23991625348892],[-122.43517436320207,55.23993353696659],[-122.4351885186262,55.23995188248707],[-122.43526729754308,55.23999786791686],[-122.43529808780559,55.240006598642005],[-122.43532967144087,55.240006382065516],[-122.43555055855074,55.24000710262927],[-122.4356440358013,55.23999856744006],[-122.43567631355016,55.23999052189154],[-122.43570672266705,55.239981301564114],[-122.43575525378567,55.239945690202234],[-122.43588316730217,55.23979349960479],[-122.43591557457651,55.23973948638371],[-122.43591642896754,55.239640840689475],[-122.43593518400947,55.23940703618635],[-122.43595339726767,55.23924609754037],[-122.43593809776904,55.239173899258944],[-122.43590702584642,55.239146099330746],[-122.43589277122607,55.239128872305145],[-122.43581478652891,55.23907393997748],[-122.43579856424032,55.23905665658441],[-122.43576828574709,55.239019909325485],[-122.43575216265594,55.2390015075144],[-122.43575336790623,55.23896566197238],[-122.43576872848995,55.23894816188358],[-122.4358011045254,55.238938997891374],[-122.43584725463616,55.23893022838536],[-122.4358787382716,55.2389311300817],[-122.43598922845351,55.238930930719626],[-122.43605229488043,55.23893161562035],[-122.43609882632144,55.23894079697004],[-122.436131583684,55.238949583840686],[-122.43623997682214,55.23899529551256],[-122.43633421457406,55.23902266170284],[-122.43638112770518,55.23904979389545],[-122.43639607647223,55.23905919197736],[-122.43644457587403,55.23906842954548],[-122.43666346036903,55.23911394098519],[-122.43674157509457,55.23912290517222],[-122.4367730589008,55.23912380664249],[-122.43685234840497,55.239141774404295],[-122.4369138291972,55.23916035347512],[-122.43700768599251,55.23916976820955],[-122.43740054043256,55.239188864068616],[-122.43744904022125,55.2391981012458],[-122.43761970963462,55.2392534431867],[-122.43766820955149,55.239262680278635],[-122.43769899977232,55.23927141040976],[-122.43777780873474,55.23927254505177],[-122.43787166599392,55.239281959135326],[-122.43793562486421,55.239272577358946],[-122.43807683536735,55.23923737542637],[-122.43812416034677,55.23923760870858],[-122.43818801999917,55.23922934521652],[-122.43843772550503,55.23923873434394],[-122.43851770953512,55.23924887214655],[-122.4385634492802,55.2392669998896],[-122.43873618734251,55.2393212782],[-122.43886160072464,55.239375323287106],[-122.43897117332878,55.2394300362083],[-122.43900186489397,55.23943988443204],[-122.43911115418534,55.2394755278752],[-122.43920460252713,55.2395118392125],[-122.43926726025799,55.23953942074371],[-122.43934534962807,55.239593232496645],[-122.43943987472842,55.239639665692984],[-122.43954796306053,55.23971115433298],[-122.43967287030705,55.23979321527997],[-122.43979907878057,55.23983831210332],[-122.43986094507852,55.23987484065908],[-122.43992319459791,55.2399293201225],[-122.43995398581818,55.23993804969664],[-122.44004820232574,55.240010262279036],[-122.4401104523082,55.240064741649405],[-122.44021841815062,55.24018219732635],[-122.44032717687708,55.24029070558461],[-122.44035796846156,55.24029943505905],[-122.4404521865404,55.24037164733778],[-122.44053027911042,55.24042545835119],[-122.44057551327855,55.2404716020376],[-122.4406066884748,55.24049828238785],[-122.44066973215101,55.240543814152744],[-122.4407001152896,55.24057944180818],[-122.4407146569292,55.24061573763846],[-122.44080925990075,55.240705900585795],[-122.44084005190757,55.24071462994145],[-122.4409637892009,55.24078768599295],[-122.44105800951041,55.240859897816115],[-122.44107305905477,55.24086817692156],[-122.44116638865925,55.24095045441084],[-122.44122874061881,55.24100381480975],[-122.44129020168249,55.24106724092702],[-122.44132296190996,55.24107602643376],[-122.44135324702371,55.24111277234796],[-122.4413844232325,55.241139452504825],[-122.44141470845013,55.241176198404276],[-122.44144547652658,55.24122977681523],[-122.4414458603276,55.241247727750746],[-122.44150811411716,55.24130220642767],[-122.44155344939263,55.24134723134522],[-122.44158462591585,55.24137391145254],[-122.44171033444722,55.241447023031746],[-122.44172538434542,55.24145530205866],[-122.44174071918934,55.2414826504357],[-122.44177297285277,55.24151945251218],[-122.44180256575477,55.241564027237466],[-122.44195237271408,55.24165464623539],[-122.44201225209896,55.241735966674106],[-122.44219599721673,55.24184437429395],[-122.44241882741271,55.24191241274422],[-122.44264158247961,55.24193672000644],[-122.44276308496394,55.24196822407391],[-122.44282141731973,55.2420001649996],[-122.4429258677259,55.24209060757903],[-122.44304989571225,55.24238343393696],[-122.44306334024472,55.24245445670181],[-122.44307431080406,55.242553439918794],[-122.44304541690236,55.24267931498637],[-122.44303807942514,55.242985205563016],[-122.4430545467228,55.24311125579209],[-122.44310538246722,55.24318334715661],[-122.44322921920786,55.2432777071592],[-122.44338418138427,55.24331016669389],[-122.4434990041957,55.24332802407642],[-122.4436732724862,55.24332067006583],[-122.44375180364283,55.24330273157819],[-122.4438374367594,55.24324911609963],[-122.44396098776033,55.2431237029899],[-122.44407182920939,55.24303044277776],[-122.44416141858846,55.24293209031903],[-122.44425034697112,55.24277429291432],[-122.444294542336,55.242743039447085],[-122.44441441962103,55.242681432004694],[-122.44457265527322,55.24265455762024],[-122.44466574109262,55.24265048933587],[-122.44474061065226,55.242673931743774],[-122.44482068135213,55.2427277962924],[-122.44495502196416,55.24288188052757],[-122.44510894870072,55.243461475818584],[-122.4451731484391,55.243583282703],[-122.44526147893656,55.24365532273484],[-122.44532138809022,55.243691792381306],[-122.4454531334391,55.24371910118159],[-122.44560929572101,55.24371571230069],[-122.44575010973475,55.243707399944775],[-122.4459319642133,55.243681198227215],[-122.44602348948357,55.24365017444199],[-122.44617024541064,55.24355233177024],[-122.4463943538668,55.243427545215255],[-122.4464614905588,55.24335994498426],[-122.44659961898311,55.24318112599612],[-122.44672354733811,55.24307366106914],[-122.4469248361371,55.242916827374565],[-122.44701675431132,55.242881329176456],[-122.44708415839088,55.24287764716576],[-122.44739066225726,55.242892002781616],[-122.4476363491697,55.24292480414929],[-122.4478623484385,55.24297946797531],[-122.44801416791383,55.24300286204056],[-122.44816007526273,55.2430485120417],[-122.44846607015685,55.24311330633493],[-122.4487713744082,55.24318592883576],[-122.44908642870566,55.24323752514124],[-122.44942059398572,55.24322911878984],[-122.44951604373423,55.24322062932963],[-122.44997910619804,55.24322711090869],[-122.45031710835813,55.24321993284188],[-122.45056674983202,55.24320799147277],[-122.45095337893062,55.24314165148899],[-122.45123972646243,55.243116179365494],[-122.45148583264111,55.243077225623296],[-122.45176194473986,55.24305594545231],[-122.4521551464925,55.243049214896764],[-122.45227469800739,55.24305822898357],[-122.45246007425483,55.243081452844976],[-122.45265646887827,55.243113960381656],[-122.45282255493161,55.243154573698384],[-122.45298500146174,55.24319171934458],[-122.45312697921148,55.24323725135712],[-122.45335534479436,55.2433099122035],[-122.45345786534183,55.24335544066583],[-122.4535161972321,55.24343222580003],[-122.45353467646613,55.24351348150937],[-122.4534794194249,55.243737275845405],[-122.45347729771125,55.24396258427157],[-122.45334431733879,55.24412810193903],[-122.4531284762279,55.24431592545786],[-122.45292492307632,55.24454334221203],[-122.45277174699815,55.24478116436759],[-122.45272635975489,55.24487069117807],[-122.45283555380938,55.244997139457254],[-122.45292823200673,55.24506481253126],[-122.45327604439562,55.245237303746016],[-122.45351817611778,55.24540005531242],[-122.45360849361907,55.24547214551198],[-122.45367705854493,55.245567161865175],[-122.45381585081053,55.245805455035935],[-122.45392465090032,55.245958800688754],[-122.45400188434499,55.24602266912138],[-122.45411356240807,55.2460763063904],[-122.4542858270657,55.24627070296962],[-122.45460322652723,55.24654211381201],[-122.45473418872746,55.2466232094483],[-122.45497241243068,55.246718572251076],[-122.4554989369689,55.24699033024553],[-122.45588269695013,55.2471582308859],[-122.45597302675044,55.24720789476723],[-122.45605813849902,55.24727198608432],[-122.45607397835953,55.24729374056428],[-122.45607269235536,55.24733070475329],[-122.45591884224964,55.24753151060353],[-122.45585131165168,55.247648438896675],[-122.45581536607396,55.24778756999776],[-122.45581102680902,55.2478367808603],[-122.45583223630722,55.24808854178833],[-122.45582511468179,55.24828119173453],[-122.45581359286241,55.24832234943486],[-122.45577057955646,55.248362610473436],[-122.45571930305242,55.24838469642711],[-122.45538712314193,55.248593878841696],[-122.45539105515724,55.24861641555297],[-122.45545727129492,55.24869342399958],[-122.45553303733675,55.24875164330756],[-122.45560831477682,55.24879303009639],[-122.45570495139363,55.24881596397963],[-122.45576527642507,55.24882553028604],[-122.45600127201394,55.248812067299376],[-122.45611130423757,55.24877259299832],[-122.45624938854739,55.24870588631721],[-122.45659936245357,55.24858578589378],[-122.45683644814717,55.24851516937004],[-122.45703367210544,55.24847144873454],[-122.45719625630853,55.248417772010576],[-122.45750597992452,55.248261765293336],[-122.45774856935729,55.248218213413544],[-122.45788939662137,55.24820988733213],[-122.45797304413105,55.24822347995485],[-122.45814022913804,55.24834148192496],[-122.45822386842653,55.24842234822686],[-122.45830189339459,55.248544540408574],[-122.45834803008309,55.24869273487285],[-122.4583483963837,55.248912507315225],[-122.45825005414758,55.2491328349739],[-122.45824729460145,55.24916415103456],[-122.45831588239452,55.24921431562716],[-122.45837158225599,55.24923159768464],[-122.45842876042221,55.24923210325402],[-122.45852461670381,55.2492191331633],[-122.458738475236,55.24916579193112],[-122.45895066791464,55.24904176519564],[-122.45916452960998,55.248943573999085],[-122.45930851643821,55.24885460727334],[-122.4594095910138,55.24880478424653],[-122.45954609367426,55.24875596881722],[-122.45988059232434,55.24881145295592],[-122.46000517901167,55.24885311806169],[-122.46007583887426,55.24885736999321],[-122.46018980018493,55.248862853270175],[-122.46030110549889,55.248853684882604],[-122.46053858023544,55.248778587582734],[-122.46061071888256,55.248743638106454],[-122.46077842056806,55.24863179821318],[-122.46093509706832,55.24855552410563],[-122.46107159957651,55.2484618577737],[-122.46133987514065,55.24835063406834],[-122.46190397599848,55.248151392770716],[-122.4621193974286,55.24814742464894],[-122.46222312216184,55.24815710009381],[-122.46242387859725,55.24823007961823],[-122.46246058521328,55.24826139605839],[-122.46247593478965,55.248378440359005],[-122.46237496243026,55.24847199666989],[-122.46233667894997,55.24852584899468],[-122.46235478179621,55.24872370024462],[-122.46240369150291,55.24877330320809],[-122.46248891621013,55.248791422471946],[-122.46275984530781,55.248806970301885],[-122.46321628220355,55.24879975773895],[-122.46333860883762,55.2487998696577],[-122.463466052881,55.24878667207847],[-122.46360048404351,55.24876133933822],[-122.4636470329757,55.24874808578587],[-122.4637437718168,55.248702621148745],[-122.46375794290451,55.248676114200435],[-122.46376542158539,55.248613537752824],[-122.4636968272569,55.24847367769853],[-122.46343456001932,55.24833728503123],[-122.46330633027463,55.24820245774534],[-122.46320929754258,55.24807188042075],[-122.46332611103328,55.24797765238042],[-122.46341133440654,55.247950921781786],[-122.46356436230323,55.247916026455904],[-122.4637213265469,55.24790366738909],[-122.46387169702119,55.24787654481451],[-122.46407442164882,55.2478598791309],[-122.46434583533981,55.24780255748967],[-122.46473238826286,55.247759717765526],[-122.46498254454006,55.24771973070808],[-122.46531546401144,55.24770339676558],[-122.46620971133277,55.2476760896717],[-122.46630319988995,55.247667531468615],[-122.46662745540812,55.24761506878592],[-122.46749610872499,55.247542176916575],[-122.46770512789524,55.24752119914225],[-122.46791739525312,55.24750816178427],[-122.46804365435575,55.24750838078232],[-122.46840257009735,55.24764526315433],[-122.46850197132093,55.247704144670614],[-122.46874654374307,55.2478848733651],[-122.46887085734821,55.24804200799364],[-122.4689311967846,55.248141266385375],[-122.46894421012193,55.248307577041494],[-122.46893112650879,55.248344206364486],[-122.46873070943052,55.24869394971278],[-122.468605354417,55.24886306239312],[-122.46858676151884,55.24891747502625],[-122.4686116639822,55.24894845462064],[-122.46874964494077,55.24899497560728],[-122.46906998737356,55.2490545179731],[-122.46922736046285,55.249127376678835],[-122.46936504800857,55.24917725230281],[-122.46957183250123,55.249294118589255],[-122.46967281836503,55.249379953378835],[-122.46982421235852,55.24958831001317],[-122.46993115206448,55.24996583209186],[-122.47005350467104,55.25010048512949],[-122.4702661026681,55.250218636159815],[-122.47042308171861,55.25025111788492],[-122.4709051303266,55.25028945191738],[-122.4710428153577,55.25029447645332],[-122.47139789180454,55.25025072323025],[-122.47144247156093,55.250237410969085],[-122.47160700739795,55.2501613466069],[-122.47169497903984,55.25010329397874],[-122.47188626588289,55.24994725936241],[-122.47218059542188,55.249808720701886],[-122.47237859435126,55.24975602823588],[-122.4726231449935,55.24971250316633],[-122.47303341445803,55.24962433930223],[-122.4733020627929,55.24953104067621],[-122.47346698475562,55.24945050009129],[-122.47373089198769,55.24929876270815],[-122.47386775384427,55.24917818396256],[-122.47399516003857,55.249030427910675],[-122.4742424586675,55.248618095568574],[-122.47436672233796,55.24850612932885],[-122.47453035019677,55.24839527787562],[-122.47472085216882,55.2483154603226],[-122.47496038253895,55.248306546681526],[-122.47502504021205,55.24831174136238],[-122.47515839675438,55.248343548265595],[-122.47549609924353,55.24852017257493],[-122.47577699856731,55.248624550763935],[-122.47600690653984,55.2486803934417],[-122.47645591719525,55.2488478326349],[-122.4765288485377,55.24887120023026],[-122.47666141636401,55.24888952847065],[-122.47679240819508,55.24890332707919],[-122.47690479578263,55.24890426557511],[-122.47752576619904,55.248865778250426],[-122.47762791232178,55.24884848677176],[-122.47819668481198,55.24870760936981],[-122.4783186108782,55.24868975574942],[-122.47852920666728,55.24867328928398],[-122.47872889171074,55.24869127160006],[-122.47892771248316,55.24876416885121],[-122.47897782711982,55.24882276855841],[-122.47897148465121,55.24896274146619],[-122.47894001826981,55.249029124511544],[-122.4788208867071,55.249150209925226],[-122.47857874887492,55.24930145213697],[-122.47844297865907,55.249409733145164],[-122.47828839833544,55.249484966513215],[-122.47808520602432,55.24957452141328],[-122.47775151622339,55.24966711090565],[-122.47764504734992,55.24971118949702],[-122.47754291486349,55.24977333022651],[-122.47751093959975,55.249800455909295],[-122.47757248715686,55.24990871339456],[-122.47764110828166,55.24998129196712],[-122.47778709064445,55.25007175652219],[-122.47797606670987,55.25012195221247],[-122.4782557744059,55.250150047708004],[-122.4783663035428,55.250172235371146],[-122.4784680774911,55.25020426622572],[-122.4789675172678,55.25040451632697],[-122.47906851720708,55.25046791888815],[-122.47913950225161,55.250536078522906],[-122.47922515667494,55.250616986407984],[-122.47948757325915,55.250955167430774],[-122.47958346304289,55.25103187961538],[-122.47994647876415,55.25139308629968],[-122.48015290421586,55.25149198421411],[-122.48051071183338,55.25161982850056],[-122.48067451061142,55.2516872474694],[-122.48075178782483,55.25172867472047],[-122.4809960283648,55.251869003973574],[-122.48140958582361,55.252081391467776],[-122.48155400750343,55.252167322190395],[-122.4817599718581,55.25231665893933],[-122.48184199216547,55.25239409842604],[-122.48191390784564,55.25254188893336],[-122.48191940649292,55.25272704504857],[-122.4819150882847,55.2527538322133],[-122.4818820469531,55.2528156865942],[-122.4818220446404,55.252892476074905],[-122.48169542804229,55.2530088679556],[-122.48150376290113,55.25314696684346],[-122.48135509948074,55.25326722019135],[-122.48123751948742,55.25334798814331],[-122.4810189579596,55.253432628944054],[-122.48090461847815,55.25349891238751],[-122.48086950853794,55.253561829308005],[-122.48086356365528,55.25369732856888],[-122.48090506884634,55.2538543510342],[-122.48093108075007,55.253917874488465],[-122.48097450584379,55.25396282945135],[-122.48107985655116,55.254044292515566],[-122.48128276303046,55.254161028124265],[-122.48138140576512,55.254206422362785],[-122.48145002091715,55.25423414961096],[-122.4815600734417,55.254261926695264],[-122.48165281110712,55.25430715381676],[-122.48172664684665,55.254342876958304],[-122.48196097636625,55.25450646926693],[-122.48199022133367,55.25453308365618],[-122.48210072938161,55.25469093422125],[-122.48214770212971,55.25474047382931],[-122.4822689037055,55.2548212624409],[-122.48237033273867,55.25492503780043],[-122.48280162415935,55.255296012157935],[-122.48303016665179,55.25548074180178],[-122.48319272403357,55.2555851219695],[-122.48328862080805,55.255639406702834],[-122.4834259565968,55.25569374061596],[-122.48399809807538,55.255830991006555],[-122.48440925820007,55.25586838979455],[-122.48461558419243,55.25590112491723],[-122.48485980359797,55.255929323500496],[-122.48508749171154,55.25596602459906],[-122.48527018296511,55.25597566706658],[-122.48585130769258,55.25596516204976],[-122.48599697371581,55.25594684924514],[-122.48603840008744,55.255924473001464],[-122.48610972163765,55.255853607112044],[-122.48622801775157,55.25565176378012],[-122.4862745416411,55.255593652511266],[-122.48649657250947,55.255379039639664],[-122.4866102236483,55.25532058023018],[-122.48691825044236,55.25522836328249],[-122.4870690369469,55.255219163504954],[-122.4872146152526,55.25522439235869],[-122.48731403602683,55.25523840964447],[-122.48754095390835,55.25530647851814],[-122.48747356943383,55.25553554714983],[-122.48740141123024,55.25568375378926],[-122.48725396922273,55.25585786663187],[-122.4870852171883,55.25611771144022],[-122.48672867834021,55.25658416642866],[-122.48652525868081,55.25699215377702],[-122.48650368063102,55.25712609044391],[-122.48649540725374,55.25728843290158],[-122.48653260957592,55.25744981623993],[-122.4865495585352,55.25748168850013],[-122.4866513834773,55.2575585619506],[-122.48742535507479,55.258028884783094],[-122.4875579985388,55.2581144753376],[-122.48767952799085,55.258214327976354],[-122.48779985771472,55.2582827526907],[-122.48789575345599,55.25831460925762],[-122.48802129209913,55.25836860491271],[-122.48821629549728,55.258531074862574],[-122.48829480826237,55.258626349894],[-122.48854872385162,55.25885999595568],[-122.48868047872959,55.25893322678712],[-122.48873571643819,55.25895608755897],[-122.48890387311282,55.258996708333484],[-122.48901511650327,55.25901105737439],[-122.48905419900923,55.25901552306304],[-122.48925468189697,55.25911535786594],[-122.48939598972053,55.25919222087308],[-122.48950571420445,55.2592917386769],[-122.48957607779224,55.25941257087525],[-122.48955794306436,55.259529786759614],[-122.48932649583193,55.25980692768191],[-122.48912582248703,55.26018360260904],[-122.48909591607979,55.260367759253164],[-122.48909914376175,55.26048894111246],[-122.48912400020639,55.26056588436302],[-122.48962925470332,55.26095012935274],[-122.48980492006844,55.2610178694077],[-122.4899260434251,55.261077344431314],[-122.49026466924417,55.26120013195541],[-122.49038235956621,55.261276327895445],[-122.49039618707974,55.261343990270944],[-122.49034653633252,55.261437893734055],[-122.4902613172916,55.261487067423936],[-122.49015442510026,55.26151320593742],[-122.48949812427513,55.26154740172561],[-122.48918252703851,55.26156765530404],[-122.48913794059578,55.26158097392495],[-122.48906687873377,55.26160363693574],[-122.48893786729845,55.26167960529046],[-122.48883181244737,55.261786493575826],[-122.48881050432591,55.26187222604918],[-122.48880866315223,55.26207399228075],[-122.48887396338415,55.2624335001887],[-122.48901176619816,55.26270871900894],[-122.48916145371483,55.262938303030005],[-122.48929928561002,55.263100279881606],[-122.48946582804508,55.263204762954025],[-122.48973623951403,55.26331777989668],[-122.48998058179546,55.26345809166841],[-122.49089674799058,55.2640422754681],[-122.49118018649217,55.264187049996835],[-122.49135427463791,55.26422783392866],[-122.49170821681864,55.264107745699185],[-122.49189049236892,55.26403215372983],[-122.49223168992974,55.26385452338971],[-122.49239113241171,55.26379174207227],[-122.49253041228425,55.26375642288155],[-122.49261211849532,55.26374751215896],[-122.49274030010302,55.263748880045874],[-122.49281927262795,55.26377128604552],[-122.49296926073428,55.263839419180705],[-122.49327080035098,55.263957789556365],[-122.49348754189668,55.264030044241345],[-122.49358228454166,55.264075317965194],[-122.4936888923918,55.26418819820042],[-122.49385942285987,55.26433763558141],[-122.49399761760222,55.264427859485565],[-122.49425141921589,55.26455048928259],[-122.49441807811162,55.264653847289026],[-122.49463007886267,55.264825753849],[-122.4949669401979,55.26515029500259],[-122.4954688138794,55.26559720570771],[-122.4957444502703,55.265922263841546],[-122.49593251618076,55.26618767571211],[-122.49604307452978,55.266300664767705],[-122.49635142143677,55.266522369466145],[-122.49650183441248,55.2666084491631],[-122.49674222609025,55.26668136297908],[-122.49704543716491,55.26675828573814],[-122.49766112552813,55.26680587502608],[-122.49832928132977,55.26684036085359],[-122.49857515606483,55.2668730618049],[-122.49875714007594,55.26691405686619],[-122.49887394637555,55.26695546170659],[-122.49903670863921,55.26708112748352],[-122.49911487388734,55.2671808696222],[-122.49927731080284,55.26749152459253],[-122.49926280671774,55.26756735877344],[-122.49922537416427,55.26765712408986],[-122.49879530703325,55.267880487070286],[-122.49853807962818,55.268045920803466],[-122.49851292827212,55.2681080011345],[-122.49849048724992,55.268229581526946],[-122.49849349113386,55.26851220962734],[-122.49851527067817,55.26864736655963],[-122.49860667785936,55.26891229839778],[-122.49869120250274,55.26907500700798],[-122.49882786476296,55.26918312102211],[-122.49914765513884,55.26938720023098],[-122.49934626556815,55.26950938817917],[-122.49951765623953,55.26958147774425],[-122.49979564666116,55.269721592834095],[-122.49997127003195,55.26979043707292],[-122.50012127220513,55.26983613698271],[-122.50043479129603,55.26995370366389],[-122.50063416706185,55.27004451718652],[-122.5008390411676,55.2701175455917],[-122.50144859403807,55.27028154732404],[-122.50133985203144,55.270555429782966],[-122.50132502462905,55.270703012051115],[-122.50132277998108,55.270932795602135],[-122.5012253693908,55.27100854341673],[-122.50099577993738,55.27115121367083],[-122.50081394161487,55.2712896191019],[-122.50065183772489,55.27147342690723],[-122.50054029668775,55.271711351781704],[-122.50046823435694,55.27183602306377],[-122.50048738310271,55.27220543711474],[-122.50054676506991,55.272316983508176],[-122.50082946161386,55.27251665170251],[-122.50111065753704,55.27268824694314],[-122.50125476339987,55.27273377952412],[-122.501610468052,55.27286598197845],[-122.50199276270014,55.27310095955494],[-122.50229644351424,55.27319582037084],[-122.50254164686534,55.273304735231434],[-122.50313599072774,55.27366675286296],[-122.50319716546541,55.273689773132084],[-122.50334521633037,55.27373541388505],[-122.50340559007756,55.27374495714045],[-122.50353784033354,55.2737453060327],[-122.5043995253391,55.27368988633355],[-122.50446184586248,55.273677059691714],[-122.50463195742398,55.27362801592813],[-122.50482703256307,55.273723186111205],[-122.50499368258421,55.27385007318421],[-122.50530456943345,55.27404379412976],[-122.5054739467664,55.27413936340331],[-122.50575356983806,55.27428399439717],[-122.50591784264104,55.27439287421042],[-122.50622003213664,55.27464128744021],[-122.50692219692588,55.27539872942432],[-122.50705851377208,55.2755113083583],[-122.50716749956675,55.275574909193],[-122.50723103816686,55.27559350882948],[-122.50736134946465,55.275616223098865],[-122.5078568440837,55.27566263012133],[-122.50826061734374,55.275673949312036],[-122.5083242538332,55.275691429918965],[-122.50869223986757,55.27584189423862],[-122.50883563865756,55.27594121517586],[-122.5088810883863,55.275986215695504],[-122.50906017128021,55.27628835198413],[-122.50906848974356,55.2763289482166],[-122.50904609679955,55.27638213813091],[-122.50898372724289,55.27644093486753],[-122.50887094925018,55.27651177319167],[-122.50796540021516,55.27693486992524],[-122.5077013418488,55.2769969815005],[-122.50750558914437,55.27702288688863],[-122.507365060279,55.27702679518759],[-122.5070922458905,55.27700793368213],[-122.5069398988975,55.277011510116225],[-122.50675990315929,55.27703785619848],[-122.50651356949699,55.27710046238203],[-122.50641574058542,55.27715826351289],[-122.5063644791822,55.2772027950246],[-122.50631282851818,55.27725180039998],[-122.50616531591021,55.277449479068295],[-122.50618987584322,55.27748492510459],[-122.50625896092832,55.27753058952521],[-122.50640272485616,55.277603014724804],[-122.50656035053372,55.27765228329698],[-122.50693457325022,55.27773117066311],[-122.50711980068728,55.27780363645861],[-122.50728810379567,55.27788908182189],[-122.5074480177851,55.27795747375157],[-122.5078685712578,55.27807129310094],[-122.50814698847432,55.27816206644352],[-122.50833382599512,55.278261484210056],[-122.50843494223867,55.27832486310687],[-122.50880898887705,55.27858761608408],[-122.50892000639486,55.27869611994341],[-122.50897732890174,55.27878630098628],[-122.5090561551289,55.278992567965794],[-122.50905107922227,55.279119121063935],[-122.50901013250615,55.27922672978326],[-122.50889747378243,55.279409691495005],[-122.50880876467784,55.27952156765273],[-122.50870979575546,55.27970603409826],[-122.50862050967218,55.28000625527438],[-122.50863486429228,55.28015914052307],[-122.50865064833508,55.28018200684492],[-122.50870792175148,55.28022733868139],[-122.5087778894405,55.280262935457515],[-122.50885483627233,55.280286394596345],[-122.5090254357583,55.28030014492868],[-122.50953141086437,55.28015847615916],[-122.51010615856472,55.28004339838942],[-122.51041354345908,55.279960070965565],[-122.51055563708782,55.27993826363411],[-122.51075152563644,55.27993365964533],[-122.51107005655659,55.27994930812018],[-122.51122411939224,55.27997156189922],[-122.51164903290446,55.28008100494625],[-122.51205529150872,55.280155167118096],[-122.51237078646112,55.28018306035238],[-122.51288212963617,55.28025231326875],[-122.51334603160389,55.280344902552216],[-122.51362797221272,55.28039539850357],[-122.51382192092778,55.28041315923331],[-122.5140283685763,55.28042342104733],[-122.514223025504,55.28045577648136],[-122.51430798086176,55.28050075892027],[-122.51450000611715,55.28063170530878],[-122.51469982622403,55.280695597833784],[-122.51484713949067,55.28075017277805],[-122.51514218431613,55.28087727290251],[-122.51528239564429,55.28092267909143],[-122.5157135988834,55.28100537501428],[-122.51574451635221,55.28114975238265],[-122.51603196670779,55.28111406493487],[-122.51649648146778,55.28135914128769],[-122.51660788572373,55.28144073973757],[-122.51670594852413,55.28156232796168],[-122.51674436933651,55.281643006827515],[-122.5165540303377,55.28190228623023],[-122.51648181347059,55.28196081133925],[-122.51624230684024,55.28205838505018],[-122.51601187258916,55.28216518158544],[-122.51594317691179,55.28220586580693],[-122.51582638733026,55.28230014342963],[-122.51560254015568,55.282626877313426],[-122.51549729663124,55.28281565782347],[-122.51551676356628,55.282864413588825],[-122.51564762764993,55.28306316117492],[-122.51574580842815,55.28327444887403],[-122.51585730434915,55.28342332203613],[-122.51592327619285,55.28348234778268],[-122.51602283564314,55.28354119154611],[-122.51632996965981,55.28377962433271],[-122.5164140612068,55.28383467166614],[-122.5168055314146,55.28401155326157],[-122.51686879678341,55.284033503439574],[-122.51715670786375,55.28410658133401],[-122.51741649391172,55.28413963066694],[-122.51774626288682,55.2842082712143],[-122.51785884711794,55.28420805428655],[-122.51799071352653,55.2841904370922],[-122.51843314405012,55.284098530493715],[-122.51858270950436,55.28405898346089],[-122.51892931458309,55.2839789729558],[-122.51938046200183,55.28385479216235],[-122.51953557934593,55.28384230770116],[-122.519672190772,55.28383827561684],[-122.51993917886438,55.28387936919662],[-122.52011693389282,55.28392469700302],[-122.52031364628785,55.28400194731493],[-122.52042383900725,55.284052114814756],[-122.52073042248412,55.28422885515725],[-122.52115488975981,55.284526611126566],[-122.52143318892696,55.284824769361094],[-122.52150088359873,55.284978019813046],[-122.52151922872848,55.285062621133],[-122.52151774351313,55.28512536622872],[-122.52147756710768,55.285269999068916],[-122.52139840764158,55.28536309003176],[-122.52119839196979,55.28552904741953],[-122.52096691678238,55.2857389736647],[-122.52076880353138,55.28586013602152],[-122.52066977892183,55.28590894550087],[-122.5205915865321,55.28592245860246],[-122.52036543932593,55.28593408212054],[-122.51993820642188,55.28598717886755],[-122.51975230003116,55.28603580332525],[-122.51962126663304,55.286089323887175],[-122.51952973292113,55.286142826523225],[-122.51941736535021,55.28623162519997],[-122.51938658395042,55.28626776460359],[-122.5193062510215,55.28644266855868],[-122.51929055209135,55.28648707761687],[-122.51929216237195,55.28658242379129],[-122.5193757727732,55.286779846606784],[-122.51940826208663,55.28683793489709],[-122.51943471268227,55.28687455187189],[-122.51956283495129,55.28699137103159],[-122.51986662832317,55.2871321570055],[-122.51998584145659,55.28714669854798],[-122.52010434452144,55.287146644674074],[-122.52030960174717,55.28712546852323],[-122.52052997388098,55.28713498624859],[-122.5208984985895,55.28721254822575],[-122.52105055979266,55.28725827802983],[-122.521126461294,55.287294032929125],[-122.52122571480415,55.28740219585824],[-122.5212795567975,55.28751021204658],[-122.5212943175059,55.28763619732025],[-122.52129124928267,55.28776280601971],[-122.52126692822131,55.287838367859756],[-122.52121285961462,55.28791534154972],[-122.52110246105482,55.28800419676706],[-122.52085698613408,55.28814758221885],[-122.52059942908798,55.28831641721971],[-122.52047236178466,55.28839247340685],[-122.52038237471736,55.288428080947675],[-122.52023870558261,55.288467795224555],[-122.52012497795465,55.28850386078244],[-122.51988702370463,55.288605970509394],[-122.51976383174221,55.288637286662876],[-122.51951673727284,55.288685323297315],[-122.51909196017708,55.28875530446593],[-122.51882580914874,55.28877253525559],[-122.51867619552065,55.288789657910755],[-122.51856175140125,55.28887951927193],[-122.51853293749313,55.28891571352321],[-122.51849039302951,55.2889963717862],[-122.5184713548109,55.28919316953056],[-122.51850064453868,55.289288167969545],[-122.51856711022278,55.28940999248352],[-122.5186738554566,55.28952285159053],[-122.51874620636046,55.289554023922214],[-122.51887463009453,55.28959909582578],[-122.5191574493902,55.289663056145876],[-122.51954701811431,55.28983987418782],[-122.52007083290847,55.28999465270812],[-122.52043111248857,55.290144862464395],[-122.52057969509792,55.290230858258134],[-122.5207839330321,55.29031280187776],[-122.52089743809351,55.29039333309186],[-122.52104204935556,55.29052518617311],[-122.52132129369392,55.29083570315472],[-122.52141025211829,55.290903215498254],[-122.5215651383946,55.29098490120077],[-122.52161649807121,55.29100763745419],[-122.52167690210555,55.291017171874984],[-122.52188466576438,55.291012880392024],[-122.52198334665778,55.29099096855366],[-122.52206978478299,55.29095077592161],[-122.52231788810222,55.29077718895193],[-122.52244134022482,55.290651697572635],[-122.52250522903212,55.29055257357917],[-122.52269501758452,55.29018563538897],[-122.5227746678453,55.29008695113587],[-122.52281375114116,55.29006898156033],[-122.52317299650878,55.28998034122771],[-122.52321879874647,55.289976013258894],[-122.52335307293336,55.28997639610564],[-122.5234549499891,55.28998596562558],[-122.52357142783883,55.29000939665758],[-122.52366791180916,55.29003563335012],[-122.5237216291478,55.29005394975983],[-122.52383736646065,55.290108753118886],[-122.52396709489307,55.290230096698416],[-122.52401012323386,55.290280629225634],[-122.52404853317647,55.29033888121609],[-122.52411585981761,55.29049660427052],[-122.52415134143455,55.29070277123543],[-122.52421898844429,55.29081117091617],[-122.5244578434748,55.29104094929007],[-122.52451360117921,55.29110416969561],[-122.52482225126246,55.29155452527379],[-122.5249240546871,55.29177038975723],[-122.5249596944683,55.29188350229127],[-122.52497520835794,55.29197811459166],[-122.52499418956735,55.292534752468235],[-122.52501797292435,55.29262511061219],[-122.52507651305183,55.29270186251762],[-122.52523907434544,55.292831968305066],[-122.52541448976531,55.2929276754752],[-122.52550578267468,55.29296834120831],[-122.52576854409362,55.29303621110411],[-122.52623100482235,55.293101798971286],[-122.52626027208964,55.29310597836056],[-122.52639336038904,55.293097355099846],[-122.52675941663861,55.29306719536085],[-122.52687586989707,55.2930681986203],[-122.52735458056479,55.29312862922341],[-122.52745569267127,55.29314714339069],[-122.5276150245752,55.293223338968545],[-122.52780901659949,55.293287045835896],[-122.52811679136406,55.29340549690537],[-122.5282270196127,55.29345565755224],[-122.52852789426316,55.29363109569299],[-122.52866184297974,55.293726764048614],[-122.52880032649986,55.29388422366748],[-122.5289122138458,55.29398376194842],[-122.5291137804473,55.29409700968556],[-122.52965286369027,55.294373258479496],[-122.5297382154024,55.294391331801656],[-122.53024571615951,55.294393129761836],[-122.53034760605468,55.29440269365488],[-122.53049972692934,55.294402444085584],[-122.53081513694747,55.29436413509034],[-122.5312679407483,55.29447316090449],[-122.53138114040893,55.29487769476737],[-122.53137300261884,55.2950176160129],[-122.53135143979974,55.295084286777644],[-122.53132254989289,55.2953043555418],[-122.53133923258576,55.29561426610716],[-122.53143599778592,55.29591183015425],[-122.53158106474656,55.29622195017141],[-122.53161236126394,55.296317000435266],[-122.53165692874342,55.29650996283626],[-122.53169046332805,55.29676204081884],[-122.53180730947075,55.296987286467925],[-122.53184256870918,55.29703647846926],[-122.53209487453094,55.29724867549913],[-122.53220511828951,55.297298832647954],[-122.53249079516445,55.29737629436271],[-122.53262629206928,55.29738567000295],[-122.53274014979372,55.297416867115274],[-122.5334057149707,55.29746453209447],[-122.5339949631429,55.297480920447796],[-122.5341284900204,55.297490239650415],[-122.5343398806781,55.29751293570181],[-122.53446782488977,55.29754115935484],[-122.53472711589198,55.297626851527724],[-122.53474011111172,55.29784247933317],[-122.53469626698913,55.29812155521758],[-122.53466601276676,55.29817453065648],[-122.53462422350526,55.2982238218274],[-122.53441383935714,55.29832672650439],[-122.53402790538452,55.298563775464494],[-122.53378088485078,55.29867911451329],[-122.53357057454117,55.29882686717812],[-122.53350032284115,55.29888545704654],[-122.5334408724389,55.29897910390603],[-122.5333349753207,55.2992216971146],[-122.53332995275116,55.29927985882225],[-122.53334792451687,55.299414900393444],[-122.5334108184524,55.29948728408989],[-122.53385633675278,55.29995599507373],[-122.53389996739162,55.29999981326502],[-122.53401812613548,55.300118580665455],[-122.53421069565631,55.300245022948225],[-122.53445190198053,55.30040308908546],[-122.53459467966559,55.300511328572306],[-122.53490382483363,55.30063764723829],[-122.53514893795722,55.30077339690996],[-122.53523900354648,55.30082859599547],[-122.53537985416583,55.300959204508715],[-122.53556375275714,55.301300669897365],[-122.53576834478699,55.30158552992854],[-122.53600684165413,55.30198120734726],[-122.5360225882763,55.30218794190859],[-122.53600109500981,55.30234543085758],[-122.53598276947086,55.30294699480311],[-122.53594914453751,55.30315347851711],[-122.53586622814987,55.303404560747765],[-122.53584219268144,55.30368306644842],[-122.53584473656353,55.303836738724385],[-122.53586915509847,55.30398877655033],[-122.53610068225649,55.30428223245371],[-122.53619719349473,55.3043544274126],[-122.53634976381076,55.30441808935865],[-122.5366445826308,55.30450476343387],[-122.53688446085064,55.30456412333018],[-122.53726865623575,55.3046454306282],[-122.53756536694365,55.30468730785469],[-122.53793635927354,55.30471555093367],[-122.53835037218487,55.304771895842975],[-122.53885106024705,55.304854190707154],[-122.53936589138733,55.30490996789795],[-122.53978193317027,55.30494281956461],[-122.53996254623112,55.30497922588161],[-122.54037622207574,55.30506246278398],[-122.54063947331683,55.30512582742373],[-122.54081421786908,55.305184493119675],[-122.54094814773711,55.30523529895472],[-122.54128469000403,55.30543411575387],[-122.54155081819864,55.30555585929834],[-122.54167738233195,55.305669245745214],[-122.54170713332314,55.3057137969385],[-122.54182770612893,55.30598846619702],[-122.54189744158982,55.30611933584005],[-122.54194189386317,55.30622259588022],[-122.54200365758278,55.30630839731248],[-122.54213623526604,55.30642082883834],[-122.54226550176338,55.306502896643],[-122.5424878804181,55.30667387728192],[-122.54269761094167,55.306877020756545],[-122.54277164190955,55.3069351325944],[-122.54350044544196,55.307374661313105],[-122.54361995795207,55.30745533593966],[-122.54381778098059,55.30761330018558],[-122.54442159144484,55.308127839685774],[-122.54455057357765,55.30825922859134],[-122.54473877499542,55.30852904179371],[-122.54489506870212,55.308664550764796],[-122.54514314311571,55.30885866166347],[-122.54535761131726,55.30905296193279],[-122.5456732929798,55.30924221803643],[-122.54580666073691,55.30934569765395],[-122.54609614187393,55.309540953669966],[-122.54612570045367,55.30967967673612],[-122.54616853497423,55.309755981947774],[-122.54626954405427,55.3098910785254],[-122.54641709652881,55.31003643370946],[-122.54649979414502,55.31008581374607],[-122.54672837010473,55.310185202518674],[-122.5472546200018,55.310384771199296],[-122.54741122044878,55.31047095357056],[-122.54760075575601,55.31061074279079],[-122.5475835840313,55.31074144429375],[-122.54758673978871,55.31111824517324],[-122.54755123224002,55.311576942099954],[-122.54763585038668,55.31178782309284],[-122.54753846399333,55.312115871898484],[-122.54753855799964,55.31216072135269],[-122.54756557686207,55.31226013260068],[-122.54761514812306,55.312350077782796],[-122.54767178869854,55.31242676463316],[-122.54769520492077,55.31245319995795],[-122.5477885833968,55.3125163287719],[-122.54804410215925,55.31267027689984],[-122.54828274382758,55.31285963468351],[-122.54839665634312,55.31293678551481],[-122.54854341162682,55.31302269359427],[-122.54867430012305,55.31306331545297],[-122.54875171785511,55.313082276006675],[-122.54931768719278,55.31316521130887],[-122.54979638302524,55.313274879377744],[-122.55008821820712,55.31335134606633],[-122.55026685926687,55.313411226181046],[-122.55052628643101,55.31349688564087],[-122.55069550440349,55.31357444311083],[-122.55126615588232,55.313809977732255],[-122.5514152765323,55.31389146293519],[-122.55157305296427,55.31396421799337],[-122.55170717116398,55.314036318541284],[-122.55190510785962,55.314216694795974],[-122.55236191712588,55.314627341371036],[-122.55243141701723,55.31480752874162],[-122.55244349537755,55.314919979485516],[-122.55237378983242,55.31522525212371],[-122.55235817911466,55.31547596209788],[-122.55238195150734,55.315705337658876],[-122.55243606785629,55.31592658285609],[-122.55242410218507,55.316042853480766],[-122.55224084915733,55.316266504854646],[-122.55207634394083,55.31640995031483],[-122.55188456889432,55.31652573345871],[-122.55166596047466,55.31667777283518],[-122.551461536827,55.31682571950083],[-122.55129476851754,55.3170184329229],[-122.55128308554032,55.317085379936415],[-122.55130304825673,55.31719804894779],[-122.55134792149589,55.31729683170805],[-122.551496867636,55.31747248983326],[-122.55158401573159,55.31760831901535],[-122.55191115229077,55.31794138317985],[-122.55200359481417,55.31810762995842],[-122.55204616704191,55.318279224726844],[-122.55208606045869,55.31866600975354],[-122.55211444353992,55.31879572891885],[-122.55233314091974,55.31907982539223],[-122.55256996872072,55.31931397006462],[-122.55292844255959,55.31971965208883],[-122.55298894726803,55.31975159611142],[-122.55321585623962,55.31977917031488],[-122.55345728678803,55.31977575275673],[-122.55365961891417,55.31979031403657],[-122.55396001293711,55.319790767376006],[-122.55455950729196,55.319829755809764],[-122.55482825589085,55.31983045387095],[-122.5552460013331,55.319845357803054],[-122.55532002300994,55.31988103752756],[-122.55540288570407,55.31985978194628],[-122.55571088679513,55.31990977247989],[-122.55581717526181,55.31991495045919],[-122.55648106481509,55.319917588468066],[-122.5567016254545,55.31992704229881],[-122.5570534896128,55.31997263477761],[-122.5576202882564,55.320024159617695],[-122.55819897255401,55.32009843316669],[-122.5585749393438,55.32016262511491],[-122.55870783313888,55.32020329089534],[-122.55901552162965,55.3203261400794],[-122.5592501560805,55.320448093986194],[-122.55932764663953,55.320489472733314],[-122.55948348357647,55.32072361068973],[-122.55961533677322,55.32082254719284],[-122.55971439319895,55.32093515389018],[-122.55977960953453,55.32111970255116],[-122.55978732903961,55.321214093184395],[-122.55974378321753,55.321514484723885],[-122.5597614751794,55.321861412126935],[-122.55988012826786,55.32204519247758],[-122.56001709359785,55.32217678316191],[-122.56013394419112,55.322266335831884],[-122.56013094174124,55.32237052114786],[-122.5602499302709,55.32289626493453],[-122.56083381314022,55.323671394825915],[-122.56110276060878,55.3242696635764],[-122.5611833263213,55.32459814323511],[-122.56127100200571,55.324728373156674],[-122.56138590434797,55.324863838322464],[-122.561422374708,55.324899599867045],[-122.56154691928434,55.32494563774747],[-122.56169844372054,55.32497672302741],[-122.56193880962535,55.325009136039725],[-122.5624101759904,55.32511406431304],[-122.56261730463078,55.32514219638536],[-122.56285098925765,55.32518339273855],[-122.56327811073191,55.325297188705996],[-122.56355900872443,55.325410317779614],[-122.56369778532381,55.32542871653419],[-122.5639971449199,55.325510960736004],[-122.5644604766884,55.32570983703184],[-122.56472479821504,55.325855020331254],[-122.56484787384436,55.325941376018434],[-122.56513339241661,55.32616225986553],[-122.56531708998358,55.32627943469725],[-122.56558733494003,55.326424779112145],[-122.5659320264124,55.32676276966697],[-122.5660346193196,55.326857529356566],[-122.5661581795394,55.3269382911474],[-122.56631488512602,55.32702444993429],[-122.56644939877091,55.32706963588674],[-122.56664947492408,55.3271110206694],[-122.56689500853719,55.327152535199886],[-122.56754144297517,55.32722190005695],[-122.5680549527891,55.327250605851674],[-122.56837053257468,55.327305256347856],[-122.56853469187583,55.327373678747605],[-122.56899052458768,55.327591390403796],[-122.56910773452441,55.32765403586804],[-122.56942148797748,55.32779944699767],[-122.56956045348716,55.327885113499526],[-122.56961289011149,55.327988580875356],[-122.5696647399875,55.328168270697525],[-122.56969156761038,55.32861747094342],[-122.56965226331477,55.32870720364366],[-122.56956393789144,55.32879222466339],[-122.56945967861554,55.328855505426105],[-122.56917818306752,55.32898005945661],[-122.5687259761665,55.32913579389857],[-122.56836960161424,55.32921119774455],[-122.56805562302377,55.32932252300193],[-122.5678159592518,55.32942019620511],[-122.56752585776793,55.32957590238299],[-122.56739015179757,55.32968316251561],[-122.56726524676662,55.329849019990704],[-122.56707747416529,55.33003332800401],[-122.56693628907855,55.330158375462936],[-122.56680381627918,55.33029711648638],[-122.56677227790934,55.330342215924354],[-122.56668084267822,55.33060205033693],[-122.56666602216015,55.33070591016156],[-122.56667119454768,55.330876468647425],[-122.56674343091817,55.331164352352204],[-122.56680741197077,55.331271502244654],[-122.56684632604383,55.33137123523379],[-122.56688238832372,55.331550491978184],[-122.56687660656269,55.33164114669733],[-122.56685305276793,55.33168534478422],[-122.56665184539536,55.33186479808833],[-122.5665974019605,55.33190029781648],[-122.56633560088382,55.33202538838484],[-122.56601866356458,55.3323787982879],[-122.56585864137423,55.33258517095859],[-122.56573981008621,55.33281846416674],[-122.56573105681221,55.33294379306232],[-122.56573718185065,55.33321864580476],[-122.56589327743296,55.33352005037296],[-122.56602306228977,55.33371309910539],[-122.56615334640931,55.33383104373365],[-122.56622357338212,55.33391145798552],[-122.56653685040175,55.334316971217184],[-122.56667102545157,55.33441259912601],[-122.56690396644706,55.33460175884439],[-122.56707784478594,55.334718659757876],[-122.56731768179615,55.334827284953604],[-122.5674121380087,55.33485567068347],[-122.56763678678048,55.334887638530574],[-122.56784718638512,55.33490127540461],[-122.56808240597303,55.33490214083461],[-122.56811915718238,55.334888576817306],[-122.56826709725252,55.33477716732008],[-122.56838355518408,55.33473328228525],[-122.56868311916008,55.334675374078955],[-122.56888070333171,55.334653900852345],[-122.56912381190531,55.334654981339575],[-122.56951015525222,55.33466896952731],[-122.56972051810938,55.334706146540086],[-122.56984519828447,55.334751057660945],[-122.57005688851171,55.3348420860989],[-122.57030703974127,55.33496892739781],[-122.57037282963668,55.335008855427546],[-122.57069242037791,55.33524859935978],[-122.57087567550371,55.33551038149419],[-122.57090757383874,55.33559982962181],[-122.5709299941948,55.335869523331226],[-122.57092876463243,55.335999543631395],[-122.57095833288821,55.336139379710744],[-122.57101823197847,55.33622511281199],[-122.57135363264901,55.33658076830115],[-122.57161893655325,55.336761838491775],[-122.5721287726791,55.33713573897187],[-122.57241381113352,55.33731734951862],[-122.57274492109005,55.337538344261205],[-122.57305488075752,55.337706062798034],[-122.57343057921479,55.33789128222345],[-122.57364633523832,55.337981294442045],[-122.5740518892326,55.33811800102275],[-122.5744833740242,55.3383215662517],[-122.5751570365669,55.33860689543309],[-122.57526267546154,55.33864342988612],[-122.57579071704288,55.338735283174984],[-122.5759275725053,55.33875361421206],[-122.57612211718182,55.33876792252824],[-122.57629254316501,55.33876363024135],[-122.57644110948429,55.338737435989366],[-122.57670457708565,55.33863927717614],[-122.57673814696965,55.338616654095816],[-122.57687818564412,55.33850501782765],[-122.57693689295643,55.33844272294182],[-122.57702223346082,55.33827689165226],[-122.57700848828308,55.33815991476488],[-122.57698659717708,55.33809204504829],[-122.57692553695668,55.33801973718148],[-122.57689012303851,55.337948132956626],[-122.57688045075076,55.337876113863494],[-122.57690912029675,55.337795056418905],[-122.57698962240309,55.33773223838757],[-122.57713563914056,55.33764318899473],[-122.57722371340938,55.33760748621397],[-122.57741691639482,55.337567940581934],[-122.57753633179244,55.337558883868404],[-122.57771855748601,55.337578457649464],[-122.57827792929112,55.33755792385276],[-122.57856827544394,55.337584946334154],[-122.57864187347543,55.33762620495797],[-122.57875992463136,55.33772586123494],[-122.57892755107157,55.33784705752056],[-122.57920998473661,55.33803642820572],[-122.5796516103918,55.33819092234667],[-122.57974420583679,55.338218126137114],[-122.57997076065918,55.33825124441944],[-122.58010755114998,55.338247146100834],[-122.58049774759196,55.33821635890111],[-122.58058232149827,55.338198496238675],[-122.58068184921902,55.33816758957659],[-122.58085404801592,55.33809607081471],[-122.58108501214633,55.33798467975492],[-122.58144142621589,55.337770216767396],[-122.58156404599823,55.33767715790858],[-122.58185270574143,55.33739917425008],[-122.58201490280722,55.33728253410318],[-122.58218707836247,55.337071990748825],[-122.58239333157557,55.33687919795715],[-122.58249684850915,55.33673179994834],[-122.58262686773102,55.33657503752063],[-122.58281029187154,55.336302017393116],[-122.58286551783887,55.336234018982],[-122.58302245621533,55.3361093856824],[-122.58313307909172,55.33606420625248],[-122.58359786122898,55.33601639332309],[-122.58382557800232,55.336012538853765],[-122.58395163962915,55.33601823306644],[-122.58423336543605,55.33609994267053],[-122.58448083458357,55.33623564987376],[-122.58454248981361,55.336370754178134],[-122.58466282320316,55.33653661462914],[-122.5847428603474,55.33661840704945],[-122.58498534080702,55.33692887523244],[-122.58502859124951,55.33697826838471],[-122.58511775905713,55.33704573556828],[-122.58531180942958,55.33715867694155],[-122.58536759069169,55.337177020872076],[-122.58552856737185,55.33721393992621],[-122.58596592026966,55.33725617989558],[-122.58647358456273,55.337262223225316],[-122.58694913994013,55.33725056891657],[-122.58739427303661,55.33722462691922],[-122.58778647057538,55.337239838980814],[-122.58798588368919,55.337266594623664],[-122.58810260605992,55.337312390250624],[-122.5882792220332,55.33739794252305],[-122.58842505496152,55.33754319446671],[-122.58863717716088,55.337722771951874],[-122.58905933442955,55.33810653376645],[-122.58934531246379,55.338278038798556],[-122.58943753420547,55.33830970956762],[-122.58955183748536,55.338337499314086],[-122.58971914606286,55.338346557276424],[-122.59046375374503,55.33826376345554],[-122.59069383575067,55.33825547620124],[-122.59107178329187,55.33825234997605],[-122.59111687270044,55.338256945396054],[-122.59134079885393,55.33829781894575],[-122.5913985572676,55.33831621408403],[-122.59149912381538,55.33836604952029],[-122.5915376060886,55.338401856210695],[-122.59164119299894,55.338532496151366],[-122.59170263905258,55.33871692066274],[-122.59171680747045,55.33882942176221],[-122.5917119362612,55.33891001080303],[-122.59162573386197,55.33943571309607],[-122.59165882696864,55.33979089756678],[-122.5917207987074,55.34001569746109],[-122.59189371027128,55.34044757532654],[-122.59215643031969,55.34089311725796],[-122.59223397413342,55.34105107370076],[-122.59249945457196,55.34137112242191],[-122.59268389856281,55.34155105730306],[-122.59291258246309,55.341745653592945],[-122.59312020334937,55.341862315647845],[-122.5932619287016,55.341916636623004],[-122.59338057095897,55.34194005643353],[-122.59364164907053,55.34196288021777],[-122.59414692607722,55.34197443121458],[-122.5942082789663,55.34197386363517],[-122.59442318917638,55.341934884070376],[-122.59452516342165,55.3418984274821],[-122.59500762142912,55.34168960909441],[-122.59532556794441,55.34157832358104],[-122.59548287878451,55.341542255091966],[-122.59572854047524,55.34146711491587],[-122.59600631760682,55.34140966751829],[-122.5961624879155,55.34138702074093],[-122.59644337600308,55.34131620362671],[-122.59694692980088,55.34113822437536],[-122.59761340442763,55.340834634257504],[-122.59807033595574,55.340669954183696],[-122.59836069849341,55.340720473964545],[-122.59834497093964,55.34076601173705],[-122.59831309975196,55.340792050067684],[-122.59829691720905,55.34081963726128],[-122.59826540596235,55.34086474470211],[-122.59826479769366,55.34091854263212],[-122.59827769338831,55.34111621410582],[-122.59827738926049,55.34114311307156],[-122.59826190708249,55.341232381826835],[-122.59826084390754,55.341268229184635],[-122.59830692276383,55.341331147928635],[-122.59840126305815,55.34143125873764],[-122.59855750587661,55.34154763178495],[-122.59868259978387,55.341611583259485],[-122.59874552635445,55.341639084752394],[-122.59885644961528,55.341683590448326],[-122.59890237840773,55.341701659433554],[-122.59898184808313,55.3417206426551],[-122.59913976322808,55.341747369672746],[-122.59918720989849,55.34174754175813],[-122.59926425145585,55.34174852045199],[-122.5994071982247,55.341695238571816],[-122.5994542842474,55.341676341434855],[-122.59953511947197,55.34163257796447],[-122.59965970219636,55.34163260979953],[-122.5997083630007,55.34164178385616],[-122.59975474769723,55.341677803097625],[-122.5997861072495,55.34170444378837],[-122.59986315076524,55.34182202016587],[-122.59991150880775,55.3418580931152],[-122.59997322227248,55.34187659182303],[-122.59999961144712,55.34189188566618],[-122.60012967944657,55.3419671824868],[-122.60006523934787,55.34219077461149],[-122.59999999804931,55.34223720563551]]],[[[-117.84036248720119,52.272586028926696],[-117.84043670668854,52.27390999967265],[-117.83408616147165,52.2764592510469],[-117.82894283259097,52.27832853327529],[-117.82409875608329,52.28048742353482],[-117.8223162854379,52.28224526433502],[-117.82107383009856,52.286683938505824],[-117.8224648089094,52.28862209583661],[-117.82124477103211,52.29084131642789],[-117.81304616765634,52.290649362389246],[-117.80018509147283,52.29079490294542],[-117.79364666236256,52.29220817581448],[-117.78990708832471,52.294759265902655],[-117.79110568449482,52.29607246805695],[-117.79079846445795,52.30062831908101],[-117.78853564142781,52.30489102012571],[-117.78487492269353,52.30818349582136],[-117.78037830364492,52.312441180155155],[-117.77644145092647,52.31430808200303],[-117.77175560748627,52.3180001346709],[-117.76719587563524,52.317705614563216],[-117.75749652716931,52.31813558155724],[-117.74853903555668,52.31816741838689],[-117.74395162400532,52.319866656108694],[-117.74299082389663,52.32379184537459],[-117.74406666069594,52.32982652641336],[-117.7412400555333,52.333292691595204],[-117.73739099931747,52.33737814307408],[-117.73550271388446,52.3409632427481],[-117.73574471941077,52.34432428865102],[-117.73712749734915,52.346603798503764],[-117.72848122377314,52.354833030575875],[-117.71688675935218,52.357132544083136],[-117.70651195152308,52.359551238453896],[-117.70516673302173,52.36398712313317],[-117.71083547818591,52.3668503997408],[-117.7202442205681,52.368529182462254],[-117.72328484067428,52.37389090008912],[-117.73161698889001,52.38324885262022],[-117.7276292841294,52.39017924692073],[-117.72825835254189,52.39445275261464],[-117.73439307130431,52.396694256379554],[-117.74155800414684,52.40098063263385],[-117.75103547184348,52.40789789759982],[-117.75633519859497,52.41172226906026],[-117.76408207099577,52.41276812423316],[-117.78249645089258,52.41099551518295],[-117.79268575924009,52.41028021438006],[-117.80612036747581,52.41298694375694],[-117.81060076963618,52.414759785973104],[-117.81702176831485,52.41716615642966],[-117.8262798679258,52.41752684371522],[-117.83675247464822,52.41703752844054],[-117.84124168486456,52.41596435044884],[-117.84693805303151,52.41477914061351],[-117.8536569305083,52.41781197445968],[-117.86148511655098,52.420160662151055],[-117.86634727348758,52.42141973197608],[-117.87323444544842,52.42490651969724],[-117.87667538453033,52.42889806339994],[-117.882386313486,52.429362304884656],[-117.89265198603171,52.43091643088106],[-117.89909750935239,52.43314683486066],[-117.90245022750919,52.43400694326875],[-117.90815159262625,52.4357836407489],[-117.91319696309736,52.43789501436162],[-117.91494378443437,52.44239860712137],[-117.91557928791902,52.446267233002054],[-117.9230694748511,52.44690701477813],[-117.93288007894257,52.44822518485621],[-117.93680708721607,52.44943272403021],[-117.94342849996255,52.45154109618486],[-117.94529073552403,52.454106926121256],[-117.94855519227319,52.45821480121134],[-117.95341697116783,52.459983017798535],[-117.95621451220414,52.46152370852695],[-117.96162523648529,52.46551206319736],[-117.96796941328469,52.468880546402744],[-117.97020238062586,52.47304412188118],[-117.96953078653485,52.47884646319005],[-117.97101903378108,52.481124579475264],[-117.97410160377072,52.48289762919634],[-117.97896257065567,52.48461027496734],[-117.98129203361674,52.48922008801487],[-117.98277799188128,52.49429269853359],[-117.98426742302132,52.49617408417911],[-117.98529095917442,52.49816483187341],[-117.9887655182815,52.498169066699454],[-117.99362814058081,52.49765984290643],[-117.99947743309362,52.49624043833647],[-118.00040093824045,52.49630525711637],[-118.00210173680448,52.495865837810605],[-118.00467224527213,52.49434699052749],[-118.00543407205781,52.49384561981531],[-118.00712298849766,52.489807923687984],[-118.0085827273464,52.48731565373004],[-118.01023951887967,52.48488038376374],[-118.01199162718642,52.48233096201898],[-118.01400803661816,52.480353604152256],[-118.0149635500299,52.47944814790089],[-118.01714595763157,52.47793284498451],[-118.0185168377907,52.47583258225304],[-118.02081159934276,52.47363233763391],[-118.02242746904678,52.47244683456322],[-118.02451842511744,52.47149931201145],[-118.02574209122146,52.47082543824718],[-118.02679947663006,52.46968889963281],[-118.026455720925,52.46866467904764],[-118.02528811378664,52.46688382317448],[-118.02510538464091,52.46643018413319],[-118.02383000609261,52.46498989759386],[-118.02236332412139,52.463780652611234],[-118.0209957224947,52.462517847160484],[-118.02047378646799,52.46085750420295],[-118.02323995044505,52.45843136895131],[-118.02635753893752,52.457544354935976],[-118.03028699169715,52.45723763289717],[-118.03562812306482,52.45699848213359],[-118.03955729810076,52.457091887824646],[-118.04366698710334,52.457011996403835],[-118.04602161866005,52.45663555251451],[-118.04920378890114,52.45643653669241],[-118.05163960157482,52.45634191683927],[-118.05614619025262,52.45604064970833],[-118.05708965248753,52.455592641299866],[-118.05568949362538,52.45169922952757],[-118.05277785691585,52.44779913362909],[-118.05049581501007,52.44578642772602],[-118.04864675953236,52.44479943333928],[-118.04511163211114,52.44402715494977],[-118.04250758503976,52.44343321403837],[-118.03737694895874,52.44270789413177],[-118.0349596002397,52.44222755890501],[-118.03310029577996,52.441298234274065],[-118.03260531709938,52.43901258602253],[-118.03350312408503,52.43657397983107],[-118.03552336321876,52.43407945018397],[-118.03582368715439,52.43334034704338],[-118.03701749984829,52.430503576252704],[-118.03744454018798,52.428282454607746],[-118.03766895835524,52.42651384930561],[-118.0382730674985,52.42469633547574],[-118.03841225503167,52.42298730440899],[-118.03940146432522,52.42077154185013],[-118.0419606283027,52.41920178017433],[-118.0458142599262,52.41792451556845],[-118.04921152628253,52.4168690432821],[-118.05157600083082,52.415466783244284],[-118.05159755343561,52.41455003234816],[-118.05110107598509,52.41226887266502],[-118.04966054144604,52.409403967808245],[-118.04795309551909,52.40654099532341],[-118.04669472922872,52.40453457788789],[-118.04597643713795,52.4032127618661],[-118.04602739383448,52.40319765495433],[-118.04510743964448,52.402844519411666],[-118.04390370425098,52.40215375287985],[-118.04346986521206,52.40090673928065],[-118.04272110471791,52.40044971583488],[-118.04229313775971,52.400110638941484],[-118.04196611525337,52.39972660028445],[-118.04187372918314,52.399555548438485],[-118.04175805583925,52.3993902321867],[-118.04167319281572,52.39921856925573],[-118.04164160013711,52.399039288486115],[-118.0415776803024,52.398864553180516],[-118.04145621486794,52.39870052565082],[-118.0413308864329,52.39853736034193],[-118.04119752224808,52.39837758597294],[-118.04114965070706,52.398206209937854],[-118.04135914051547,52.398115145263525],[-118.04127640606544,52.39812186465603],[-118.04099581672317,52.398096928216304],[-118.04072969637919,52.39802391011156],[-118.040467396037,52.39793028905396],[-118.04020702795012,52.39783624068755],[-118.03994121946754,52.39776155439778],[-118.03966107607548,52.397724236269525],[-118.03937335210944,52.397707829592186],[-118.0390778706083,52.3977032974896],[-118.0387787017571,52.39770866374077],[-118.03848133141258,52.397724305722626],[-118.0381844478533,52.39774730849429],[-118.03789374188965,52.39777694452688],[-118.03761183800074,52.3978190348764],[-118.03734081623216,52.39789232264076],[-118.03707452536506,52.39798004095449],[-118.03680916218725,52.39806275067384],[-118.03653523290886,52.39812174009059],[-118.03625259261723,52.39813782163035],[-118.03596275846489,52.398112805247806],[-118.03566819328339,52.39807335690072],[-118.03537318457344,52.39804628624492],[-118.0350803254467,52.39804756503957],[-118.03478733283791,52.39805954627157],[-118.03449330522616,52.39807710502626],[-118.03420069442923,52.39809700773406],[-118.03390635717062,52.398116231352176],[-118.0336145708257,52.39813168601862],[-118.03332047105886,52.39813964358954],[-118.03302854210409,52.398135900352905],[-118.03273543436669,52.39811854710663],[-118.03244387787068,52.39809283466737],[-118.03215059721398,52.39806643420644],[-118.03185993910064,52.39804586305481],[-118.03156721579056,52.39803642091423],[-118.03126328034932,52.39803749601498],[-118.03096407633248,52.39805299284343],[-118.03068592543302,52.398094756837224],[-118.0304699639743,52.398200592021816],[-118.03029804076944,52.39835852734713],[-118.03011051546463,52.39850073177239],[-118.02992136863317,52.39864168717109],[-118.02969401679437,52.398748992974355],[-118.02940565053588,52.398805844175094],[-118.02909671457274,52.39884379694701],[-118.02882998205588,52.39890382443915],[-118.02867877931722,52.39902991052048],[-118.02864879963786,52.399221319633156],[-118.02858013941673,52.39940159926088],[-118.02839263804712,52.399533641209025],[-118.02815468634402,52.399648111132095],[-118.02793236481105,52.399768169694866],[-118.02781570055386,52.39992766137055],[-118.0277819342017,52.39999979023924],[-118.02773402759831,52.400108172472535],[-118.02761833213859,52.40028238707018],[-118.02738360761496,52.40033954480804],[-118.0270747202589,52.40032729125477],[-118.02677418637461,52.4003398711069],[-118.0264898768703,52.40039473926749],[-118.0262096049063,52.400457781687486],[-118.02592767374301,52.400499834699595],[-118.02564286912268,52.400487549003316],[-118.02535392092717,52.40043774054013],[-118.02506349023218,52.40040588790182],[-118.02476926648681,52.40038448564738],[-118.02447649544885,52.400385176339235],[-118.02418669257324,52.400409770155775],[-118.02389806547394,52.400447972591174],[-118.02361205908093,52.4004920045339],[-118.02333806264545,52.4005611134096],[-118.02305484951597,52.40059010257247],[-118.02275762552658,52.40058484156384],[-118.02246471490903,52.40059623923969],[-118.02217235714429,52.40062459598378],[-118.0218952506515,52.40068051850378],[-118.02162773740467,52.40075458296889],[-118.02136567541001,52.400839175696866],[-118.0211115142716,52.40093108126579],[-118.02086394347103,52.40102738458354],[-118.02061951077056,52.40112672859449],[-118.02037821614014,52.40122911331749],[-118.0201383367597,52.40133384239454],[-118.01990018066186,52.40143925843812],[-118.01966323108313,52.401548141605],[-118.01944118584693,52.40166651744692],[-118.01930122901369,52.40182157197598],[-118.01911016845197,52.401942643374625],[-118.01885254543447,52.402033177875566],[-118.0186289780852,52.402149750798685],[-118.01841200088829,52.40227072172758],[-118.01819481373802,52.40239281498844],[-118.01796586062348,52.40250844686892],[-118.01775567654568,52.402632710083374],[-118.01761446793809,52.40279444548613],[-118.01747622534376,52.402950185188494],[-118.01720189723162,52.402961155688274],[-118.01700421753452,52.40281891583676],[-118.01672712973858,52.40280488520182],[-118.0164546265512,52.40287577016945],[-118.01617860287826,52.402935699076146],[-118.01588964023483,52.4029755567568],[-118.01559929800733,52.403002909240065],[-118.01530312569557,52.40301180885995],[-118.01502155501775,52.40297207766088],[-118.01475282510873,52.40289318776242],[-118.0144921374663,52.4028108990911],[-118.01423431556401,52.40272316686236],[-118.01397628752164,52.4026365478856],[-118.0137183649426,52.40254936696041],[-118.01345533370355,52.40246973878037],[-118.01317911963426,52.40241119420428],[-118.01288878908163,52.40237874982233],[-118.0125907292847,52.402348027534984],[-118.01229277435709,52.40231674311381],[-118.01209507131261,52.402214545015056],[-118.01203751539258,52.40202611903928],[-118.01202871381163,52.4018444512841],[-118.01198544086475,52.40166886082674],[-118.01187343120992,52.40150432000583],[-118.0117308159599,52.40134499492272],[-118.011584128105,52.401187653760196],[-118.0114230865484,52.40103777804811],[-118.01126032182324,52.400887214497835],[-118.0111641903661,52.40071699977439],[-118.01108479171126,52.40055640542884],[-118.0109486736802,52.400372148864356],[-118.01081568985391,52.40022082425655],[-118.01067591112066,52.40006620550322],[-118.01055857504727,52.40000001112756],[-118.01045624842031,52.39994274068293],[-118.01025704944789,52.39980884718202],[-118.01011371948762,52.399653422755605],[-118.01004088758425,52.39947747759617],[-118.01004610248435,52.39930016080951],[-118.01008333819388,52.39911997355539],[-118.01010197694697,52.39894019006848],[-118.01011136783475,52.398760336682656],[-118.01013183329889,52.39858068830066],[-118.01015678658923,52.39839682816888],[-118.0102467027438,52.39823212778322],[-118.0104505060129,52.39810235608595],[-118.01067317767452,52.397980664529136],[-118.01089360663211,52.39786106504458],[-118.01111251578882,52.39773967261092],[-118.01132107378912,52.39761418089212],[-118.01149078401109,52.39746852568134],[-118.01164020942605,52.39731243596847],[-118.01182685715605,52.397175277914435],[-118.01203454972517,52.39703450016167],[-118.01217251320132,52.396900181462584],[-118.0122904324227,52.39674418174749],[-118.01232458476757,52.39657055020419],[-118.01228956337094,52.396390447314225],[-118.01225981904821,52.396211845775234],[-118.01228555442792,52.396033680232726],[-118.01240004697598,52.395925953738356],[-118.01244178773288,52.39576130240437],[-118.0124423312509,52.39560904179697],[-118.01238846396167,52.395470516100175],[-118.0123748362085,52.39527496771303],[-118.01241885390135,52.39509807305156],[-118.0124000825497,52.39492021973522],[-118.01234798257357,52.39474233113631],[-118.01228836358051,52.39456504255652],[-118.01222487928541,52.39438862423617],[-118.01208918572503,52.39423203126356],[-118.0118983578981,52.39409307569874],[-118.01171332828886,52.39395282327109],[-118.0115302327605,52.39381213538842],[-118.01138305405654,52.393657573202844],[-118.01126772064424,52.39349111205042],[-118.011112091415,52.39334216618697],[-118.01091240366621,52.39321105326676],[-118.01077164614394,52.39305186115401],[-118.0106754312967,52.39288219747837],[-118.01058428627229,52.39271514899952],[-118.01044322156051,52.3925576227221],[-118.01036622462549,52.39238421337052],[-118.01038992994022,52.39220703531894],[-118.01042345731965,52.39206664497734],[-118.01032655662863,52.39189073301936],[-118.01019471832427,52.391683636343586],[-118.01008764153781,52.39151266205961],[-118.01002585948333,52.39134707157995],[-118.00998668233098,52.391139612967514],[-118.00996588717754,52.39096274630653],[-118.00992828889429,52.390796569302346],[-118.00992411763164,52.390629884675235],[-118.00984336684321,52.39045677468134],[-118.00979870040695,52.39027882797851],[-118.00977283441397,52.39009936365112],[-118.00977470441948,52.38992011790468],[-118.00978968395184,52.38974008070725],[-118.00979348491822,52.38956040870428],[-118.00979739029864,52.3893801753047],[-118.00979570813051,52.389200115580216],[-118.00975600898661,52.389025336492715],[-118.0096353877829,52.388837631482176],[-118.00955180607873,52.38868971302139],[-118.00948641062293,52.38851371862344],[-118.00944008976947,52.388344682190635],[-118.00933231427449,52.38811780998955],[-118.00924592993037,52.388014823363186],[-118.00913983478377,52.38782868916708],[-118.00891623535145,52.38771678482594],[-118.00877815348697,52.387583151503186],[-118.00867335684626,52.38745971400196],[-118.00860373889746,52.38735619699684],[-118.00851721786808,52.387263913001156],[-118.00842926051524,52.38711964387886],[-118.0083243916066,52.387016507564745],[-118.00808152057226,52.386759435366976],[-118.00787372670214,52.38652283590809],[-118.0078007470062,52.38636775052179],[-118.00773120924292,52.38624392244084],[-118.00762480563486,52.38608935278267],[-118.00753857127762,52.38597565257662],[-118.00743525328815,52.38589405705456],[-118.00736564083785,52.385790539184484],[-118.00729413526159,52.3856772966493],[-118.00715319806525,52.385439673097224],[-118.00706381732574,52.38524339977472],[-118.00702599042394,52.385088485729746],[-118.00695480673974,52.384943676729094],[-118.0068656058205,52.38472654913993],[-118.00681273137016,52.38460275213627],[-118.00668953512616,52.38445886180092],[-118.00651815152273,52.384325179663094],[-118.00632415420223,52.384153833704254],[-118.00614818488793,52.384024906159254],[-118.00614786479058,52.383837610200075],[-118.00609580398529,52.383659717303736],[-118.00602087570329,52.3834853163834],[-118.00586382061195,52.383324418954594],[-118.00572856176403,52.38317574037932],[-118.00555581073715,52.38302955190764],[-118.00537522991193,52.38288564689978],[-118.00516684493441,52.3827618145881],[-118.00492454991797,52.38266101732678],[-118.00466738541775,52.382570482417755],[-118.00441377504116,52.38248075207139],[-118.00415813043635,52.38239200865132],[-118.00390014139994,52.382305918432365],[-118.00363990908915,52.382221937851114],[-118.00335849709336,52.382152277807265],[-118.00316657272333,52.38202957904054],[-118.00305578741902,52.38185890567626],[-118.00291092251851,52.3817022300647],[-118.00271089882378,52.38157332954938],[-118.00248890304704,52.381453063057435],[-118.00226690850813,52.38133279613022],[-118.00205957692573,52.3812033889646],[-118.00182340375157,52.38109962276547],[-118.00156227557223,52.381040394391654],[-118.00139477236435,52.38101527462749],[-118.00123695322574,52.38100774672597],[-118.0010919681239,52.38099095253556],[-118.0009194355567,52.38095307444314],[-118.0007741794207,52.38092779532023],[-118.00067683622488,52.38088383446188],[-118.00067349081037,52.380881915384265],[-118.00067321948904,52.38087343084814],[-118.00066987570051,52.38079197150974],[-118.00066760805552,52.380694792225086],[-118.00062223616015,52.38058053461355],[-118.00054881201598,52.38049761354131],[-118.00038889580976,52.38048147354559],[-118.00024551882792,52.38049581852333],[-118.00012295028205,52.38048790178005],[-118.00000038012159,52.38047999381809],[-117.99979671353888,52.38043036672457],[-117.99950460648309,52.38047785469954],[-117.99922263599312,52.380530555753516],[-117.99895400335778,52.38060110127246],[-117.99870294698835,52.3806965535597],[-117.9984358282633,52.38076889948741],[-117.99814579234986,52.38080524582934],[-117.9978519484402,52.380802401567365],[-117.99755993076018,52.38079969191993],[-117.99728967339229,52.380868993309875],[-117.99702789201494,52.38095241861468],[-117.99676459389156,52.38103404168339],[-117.99652021899523,52.381133336512285],[-117.99628170163226,52.38124093340248],[-117.99602864029121,52.3813272164003],[-117.99573980379121,52.38136702463832],[-117.99544797393602,52.38139308694098],[-117.99515545668136,52.38141290050307],[-117.9948613608894,52.38142131330361],[-117.994568797299,52.38140163595697],[-117.99429050072087,52.381345146693164],[-117.99404416815746,52.381246301261015],[-117.9938218859881,52.38112769335222],[-117.9935545654459,52.380893140580206],[-117.99354191418925,52.38088155174242],[-117.993460727528,52.380711218071596],[-117.9934462144586,52.38053083270778],[-117.99347760462118,52.38035249630207],[-117.99355255144654,52.380178862383026],[-117.99354341695347,52.37999941785069],[-117.99349465479757,52.37982399052698],[-117.99321485260214,52.37976570584398],[-117.99296547937611,52.379693163559736],[-117.99290951176518,52.37951667742019],[-117.99295982705473,52.379356005077135],[-117.99277861862149,52.37920582314935],[-117.99255400443897,52.379089866182035],[-117.99229298307701,52.37901031522558],[-117.99201350007718,52.37895035244128],[-117.99172824475681,52.37891142483367],[-117.99143350121403,52.37893332123206],[-117.99115919235506,52.3789250515276],[-117.9911089240307,52.378747830252514],[-117.99113139153347,52.37856774768462],[-117.9911267139895,52.37839424252469],[-117.99097793627335,52.37823897369469],[-117.99072411049153,52.37814072859418],[-117.99046033752889,52.37811569496092],[-117.99017938810564,52.378143064807425],[-117.98992354928143,52.3780655544173],[-117.98974721686778,52.377919088739205],[-117.98959651503742,52.37776424396191],[-117.98944164047926,52.3776119258828],[-117.98925664989032,52.37747219731001],[-117.98908987598135,52.37732413584471],[-117.98891903244495,52.37717804856938],[-117.98872173007622,52.37704479488426],[-117.98851811505492,52.376915616305084],[-117.98830432434414,52.37679137341923],[-117.98806345170242,52.376683305255774],[-117.9877922311981,52.37671810286227],[-117.98753504598379,52.37679675257524],[-117.98734724692645,52.37692025486645],[-117.9870448916647,52.37694330889081],[-117.98678609604393,52.37687178637048],[-117.98655654578019,52.37675265769758],[-117.98635518181712,52.37662137431378],[-117.98614682104446,52.37648790890071],[-117.98592792951341,52.37637120496168],[-117.98564331529796,52.376378561364504],[-117.98536710584686,52.376440093457376],[-117.98508666123159,52.376494553247355],[-117.98480773098484,52.37655081416091],[-117.98453303596906,52.37661413715492],[-117.98425524647163,52.376664275297074],[-117.98396265981272,52.37663497276971],[-117.98370177390161,52.37655484100715],[-117.98344886606063,52.37646172309535],[-117.98318422381062,52.37638188926395],[-117.98289940917266,52.37634071230723],[-117.98262074477977,52.37628642246484],[-117.98235344434747,52.37621092414185],[-117.98206846710977,52.376160708090644],[-117.98180420161871,52.37608879435445],[-117.98157577006695,52.37597367629031],[-117.98137452801623,52.375841831753],[-117.98122600376969,52.375685427428486],[-117.9811396006826,52.375513590567536],[-117.98108958539876,52.37533525070397],[-117.9811114692279,52.37515851099031],[-117.98114097412771,52.37498061183692],[-117.98108333823626,52.37480343131021],[-117.98100852644811,52.374629013094044],[-117.98099375479778,52.374450300489066],[-117.98096984730445,52.37427094540352],[-117.9809514209008,52.374091979326565],[-117.98098123841758,52.373912404921384],[-117.98093843253585,52.37373512405233],[-117.98086414211555,52.373557925568136],[-117.98070347464476,52.37341704123607],[-117.98044704148873,52.37332310178705],[-117.98019160358415,52.37323375257358],[-117.97993126589152,52.373150823194365],[-117.97966858106449,52.37307055543569],[-117.97940141052305,52.37299448878286],[-117.97914363023422,52.372907790536225],[-117.97889586418711,52.372807119379424],[-117.9786236008276,52.37275834328891],[-117.97832428641618,52.3727652202514],[-117.97801612958132,52.37275005604098],[-117.97785673840076,52.3726222253352],[-117.97793841883056,52.37245245778546],[-117.97811456175607,52.37230221230108],[-117.97821702670899,52.37214008695805],[-117.9781076738282,52.37197229530491],[-117.97801194556442,52.37180093565168],[-117.97794456583449,52.37162646073434],[-117.97789791026857,52.371450047624315],[-117.97779435533798,52.371280960717435],[-117.97774790873291,52.37110343370888],[-117.97767849581135,52.37092994557622],[-117.97754169316231,52.37077040270445],[-117.97741861812138,52.37060673940215],[-117.97729147500897,52.370445041087216],[-117.97711480064862,52.37030078296836],[-117.9769093200364,52.37017201795904],[-117.97667827355086,52.37006121813558],[-117.97642755909418,52.36996653611181],[-117.9761650033428,52.36988570779468],[-117.97588977737911,52.369823170443375],[-117.97561199598599,52.36976440835983],[-117.97535658916107,52.36967504827093],[-117.97511892404385,52.3695699862929],[-117.9748924753304,52.36945442887635],[-117.97468272831827,52.369328738688445],[-117.97448967968045,52.369192933637464],[-117.97432288525171,52.36904540247852],[-117.97417816771026,52.368888689521604],[-117.97404717754058,52.36872785650816],[-117.97390063480194,52.36857101634908],[-117.97372998221363,52.36842434441423],[-117.97352420936714,52.36829723945681],[-117.97329114629277,52.36818741969666],[-117.97303340699887,52.3681007075715],[-117.97278015555996,52.368009793403836],[-117.97254485251666,52.36790207285465],[-117.9723138293924,52.36779126415705],[-117.97208108345322,52.36767977570409],[-117.97187307558458,52.36755476846859],[-117.97168635946251,52.36741487508449],[-117.97151764939946,52.36726777418808],[-117.97136694529576,52.36711346585534],[-117.97120230811947,52.366964390620765],[-117.97104002040797,52.3668126530883],[-117.970893019933,52.36664844690193],[-117.97064629633856,52.366710851640114],[-117.97043620755092,52.36684463111592],[-117.97028136196509,52.36699972946144],[-117.97010912211596,52.3671389527412],[-117.96983566816877,52.36720570965698],[-117.96954731838042,52.36724322563863],[-117.96926842768063,52.367299449634444],[-117.96900395771958,52.367377542396675],[-117.96872187391577,52.36742113281061],[-117.96842357756543,52.36741282582914],[-117.96816301294695,52.36747991470639],[-117.96791468312573,52.36758056276964],[-117.96764607995168,52.36765103658281],[-117.96736979743142,52.367713078722204],[-117.96710067112986,52.36778634016158],[-117.96682741666548,52.36785197618571],[-117.96656596859086,52.36793365855135],[-117.96632473138826,52.36803593360854],[-117.96607247353153,52.3681278480224],[-117.9657892372227,52.36817755258587],[-117.96552689438828,52.36825409812197],[-117.96525990206767,52.36832580710457],[-117.96497457040486,52.368366906928586],[-117.96468380395648,52.368397474252916],[-117.96439366201089,52.368424699538586],[-117.9641050910337,52.368463315742865],[-117.96386457498801,52.36856168300068],[-117.96363262468962,52.368673624438415],[-117.96335904766508,52.36874091845496],[-117.96308870592321,52.36881070224995],[-117.96281131223309,52.36886870385869],[-117.96252048381578,52.36888967619771],[-117.96223012883273,52.36891800983437],[-117.96194427027511,52.368961882154004],[-117.96168301294324,52.36904244860282],[-117.96144489234324,52.36914774741884],[-117.9612410801628,52.36927742709388],[-117.96104405397786,52.36941040335293],[-117.9608535020371,52.36954834241852],[-117.96061871771562,52.369655568650494],[-117.96036351397659,52.36974331386889],[-117.96010637687846,52.36983149281864],[-117.95988950157687,52.36995180500055],[-117.95962802597901,52.370033480526324],[-117.95936968369055,52.370118189500495],[-117.95911739884622,52.37021008866112],[-117.95884098428441,52.3702726628139],[-117.95855155483679,52.37029597976625],[-117.95826034126175,52.37028926870455],[-117.95797470234643,52.37024288701615],[-117.95769344748305,52.37019286508211],[-117.95742398416594,52.370119409484644],[-117.95714539202329,52.37006505827406],[-117.95686476480122,52.370011693059496],[-117.95657704408261,52.36997644547569],[-117.95628572329746,52.3699505414459],[-117.95599310219555,52.36994147009183],[-117.95570845947294,52.36989967384468],[-117.95542091357993,52.369932699662165],[-117.95512751398914,52.369937670691094],[-117.95484717694059,52.369991505318936],[-117.95457660503307,52.370062382984486],[-117.9542912517141,52.370103456506875],[-117.95403576870774,52.37018271198908],[-117.95388461188115,52.370337481009024],[-117.9536013954195,52.37037701379399],[-117.95336131698441,52.37048272120819],[-117.95307318976823,52.37050893156442],[-117.95281717975386,52.37059097316608],[-117.95261020095974,52.37071760333376],[-117.95233570448389,52.3707797367171],[-117.95205958855705,52.370840628538886],[-117.95177401905293,52.370882809597994],[-117.95148285955834,52.370905420428095],[-117.95119049227235,52.370885072360196],[-117.95089776240674,52.37087654059226],[-117.95060978897688,52.37091178196105],[-117.95032087333145,52.370932289578384],[-117.95007342028694,52.37102789183787],[-117.94978528743337,52.37105409402665],[-117.9494999647852,52.371006025366135],[-117.94922633617003,52.37095482561791],[-117.94899556531178,52.37084285705907],[-117.9487281504177,52.37076838588572],[-117.94847890135871,52.3706760071954],[-117.94823262950378,52.370577625167655],[-117.94796506098386,52.37051386442404],[-117.94767097595089,52.370492818937905],[-117.94737788178466,52.370476363805054],[-117.94708713784526,52.370457246377015],[-117.94679529842684,52.3704340984405],[-117.94650841655437,52.37039437988866],[-117.94622153688032,52.37035465171714],[-117.94593110662426,52.37033386524468],[-117.94564276629863,52.37030193178852],[-117.94535165868919,52.37027488660514],[-117.94509620796424,52.37018601242681],[-117.9448193529238,52.37013232024918],[-117.94455581294656,52.37005698025171],[-117.9443725149646,52.36991897285129],[-117.94420367940708,52.36977294630151],[-117.94400054443884,52.36964202285496],[-117.94379099010595,52.36951572449691],[-117.94357726130023,52.36939195102784],[-117.94335058557158,52.369277998251235],[-117.94310636944556,52.36917861881882],[-117.94285327835418,52.36908708706505],[-117.9426001900075,52.3689955458435],[-117.94234475252367,52.368906665526886],[-117.94209411847027,52.36881191822665],[-117.94184849847724,52.36871018133341],[-117.94164036435188,52.368586233788804],[-117.94149597595755,52.36842836634085],[-117.94140201921833,52.36825821713291],[-117.9413389687616,52.368081195327704],[-117.9412321198073,52.36791070701514],[-117.94106909665301,52.36776339155026],[-117.94081497530586,52.36767741498958],[-117.94052890243948,52.36762362818443],[-117.94023885796057,52.367610750875265],[-117.93997894357682,52.36752606547008],[-117.93973537194074,52.367423337635444],[-117.93950443565575,52.36731246364437],[-117.93928206265457,52.367195416290976],[-117.93906428617568,52.36707360701898],[-117.93885486240627,52.36694674709916],[-117.93865765782171,52.36681395978132],[-117.93850075572968,52.36666368153781],[-117.93839157117515,52.366495851817064],[-117.9383111525533,52.36632268902081],[-117.93827442693869,52.36614355503579],[-117.93832571423525,52.3659688602738],[-117.93845765161016,52.365808246015575],[-117.93854892357842,52.36563746715743],[-117.93863471373963,52.36546630607801],[-117.93865180692629,52.365286411075225],[-117.93864300919427,52.36510639892332],[-117.93858910968692,52.36493001207715],[-117.93849710433723,52.3647594261225],[-117.93839747748177,52.364590005599354],[-117.93830354131632,52.3644198533857],[-117.93820970953601,52.3642491486655],[-117.93811384423968,52.36407942127986],[-117.93800842529538,52.36391129322699],[-117.93787769036956,52.36374985751023],[-117.93769078663969,52.363611584124165],[-117.93748107108077,52.363486387525604],[-117.93725893226333,52.363368222230086],[-117.93701497259597,52.36326771581476],[-117.93675467270981,52.36318525036302],[-117.93647677837343,52.363127508114424],[-117.93619079227192,52.36308330004883],[-117.93590282028548,52.363049676104495],[-117.93561061724762,52.36302873628971],[-117.93522033047024,52.3630274648804],[-117.93514923603772,52.36181860654939],[-117.93512207599069,52.36190415104125],[-117.93503604139453,52.36196810457533],[-117.93499260076956,52.36202205823032],[-117.93497885901105,52.3620854129841],[-117.93496674023292,52.36213025942359],[-117.93495284380006,52.362184576955734],[-117.93493889641454,52.362229304864634],[-117.93492499991476,52.36228362238934],[-117.93491120873433,52.36233737859411],[-117.93491198170375,52.36238256465497],[-117.93489818880319,52.362436329763895],[-117.93489896176075,52.36248151582148],[-117.93488699737767,52.36253539945005],[-117.93485812192945,52.36258077398415],[-117.93484448347925,52.36264357628881],[-117.93481576248895,52.36269798801858],[-117.93480197104003,52.36275174419334],[-117.93477492226144,52.36279724613555],[-117.93474620108115,52.36285165784163],[-117.93470337741338,52.36294176018597],[-117.93463257890778,52.363023132251406],[-117.93454471444005,52.36308695792766],[-117.9344734502096,52.3631412271753],[-117.93442990401014,52.36319573297673],[-117.93441564844188,52.3632223774649],[-117.93435925905374,52.363286142066244],[-117.93430099179591,52.36334018958137],[-117.93422931423804,52.3633769366621],[-117.93411133617299,52.36341383868758],[-117.93398036033655,52.36345096216801],[-117.93390639222898,52.36346046997991],[-117.93383409664605,52.363461067990265],[-117.93368798722867,52.363480210834254],[-117.93355502958201,52.36350816917338],[-117.93343872322345,52.363536160761896],[-117.9333077464372,52.36357328348027],[-117.93319018090294,52.36362769766158],[-117.93308931542435,52.36369174369298],[-117.93297388294403,52.363764368433124],[-117.93285865470179,52.36385561986754],[-117.93272657145663,52.3639282019578],[-117.93262555046662,52.36398321036782],[-117.93253930353619,52.36402853513954],[-117.93242147632323,52.3640744726333],[-117.93232030054439,52.36412044356839],[-117.93229065107943,52.36412063139258],[-117.93221866244072,52.364139302803714],[-117.93207087706251,52.364167353329535],[-117.93193974320579,52.364195437283726],[-117.93185334284371,52.364231715425774],[-117.93177998870861,52.36427737069],[-117.93173643796081,52.364331875434054],[-117.93170964261807,52.36438586140715],[-117.9316952795759,52.36441306684913],[-117.93174529312691,52.36421571801147],[-117.93179347431654,52.36403798216641],[-117.93183972277114,52.363860680106875],[-117.93188607456975,52.363682825601956],[-117.93193049533792,52.36350539597583],[-117.9319731942178,52.36332727751506],[-117.93201589107231,52.363149167923986],[-117.93205676234416,52.36297092190368],[-117.93209215091846,52.362792302317764],[-117.93211282037593,52.362613215271686],[-117.93211877089918,52.36243366077324],[-117.93210838323422,52.36225240653826],[-117.93208092654619,52.3620733461175],[-117.93202888450446,52.36189708329708],[-117.93192349459648,52.36172894944024],[-117.93178903163742,52.36156780404005],[-117.9316404217405,52.36141300967761],[-117.93148601790702,52.36125950767118],[-117.9313453448139,52.36110188169778],[-117.93123223567679,52.36093545567164],[-117.93118202528022,52.360759319810775],[-117.93115660930945,52.36057927274321],[-117.93111036607033,52.360401725670336],[-117.93104716017868,52.3602258109329],[-117.93098009212294,52.360050754860985],[-117.9308998189745,52.35987703367568],[-117.93081954647226,52.35970331241172],[-117.93076354607456,52.359528459826606],[-117.93079142106563,52.359350443882185],[-117.93083980987818,52.35917159405314],[-117.93088240357318,52.35899403671604],[-117.93094681220839,52.358818570623676],[-117.93101304870972,52.35864322305862],[-117.93107025484673,52.35846668555082],[-117.93112208412984,52.358289213102424],[-117.93116650248767,52.35811178303569],[-117.93119448029377,52.357933205486766],[-117.93119302188168,52.3577537017321],[-117.93118243012118,52.357573560483935],[-117.9311884875379,52.357393452934915],[-117.9312036781886,52.35721398282863],[-117.93122069536236,52.357034640188836],[-117.93123223246921,52.35685491504284],[-117.93124376947996,52.35667518987089],[-117.93125713302133,52.356495592165714],[-117.93126866983236,52.35631586694182],[-117.93127462299906,52.3561363116202],[-117.93126403129486,52.35595617015607],[-117.93125516088945,52.35577671747439],[-117.9312888256788,52.355597408339996],[-117.93134268796709,52.35541894026358],[-117.93131998585571,52.35524416368068],[-117.9312245858436,52.35507220199355],[-117.93111180578369,52.354904108952766],[-117.9309870217895,52.354740819406445],[-117.93092716328908,52.35456683387199],[-117.93090916356026,52.35438673457176],[-117.93088182056427,52.35420712038168],[-117.93085254756073,52.35402793106714],[-117.93081941267262,52.35384960044311],[-117.93078445155253,52.3536711422845],[-117.93074197562802,52.35349328780911],[-117.93069391686782,52.35331560319454],[-117.93064950979605,52.35313818245094],[-117.930603278287,52.35296062525304],[-117.93055715087308,52.3527825156061],[-117.93049954148697,52.35260642964823],[-117.93039052898645,52.35243802928224],[-117.93032112564707,52.352265633038634],[-117.93034383295358,52.35208555864711],[-117.93042811677358,52.35191259930667],[-117.93043386205593,52.35173416605419],[-117.93036863609562,52.351559235994756],[-117.93029031299362,52.35138507944685],[-117.93022153905781,52.351209341834036],[-117.93014300807943,52.351036298863335],[-117.93000806146799,52.35087793884243],[-117.92985970386822,52.350722027208356],[-117.92972507211178,52.35056200069038],[-117.9295926876219,52.35039986516072],[-117.9294642696807,52.35023631837393],[-117.92941345158562,52.35006352147101],[-117.92941940993362,52.34988397429219],[-117.929436955258,52.349701842141755],[-117.92943743447955,52.349521912345786],[-117.92943233102031,52.34934215236558],[-117.92942905391457,52.34916251988244],[-117.92942588222917,52.348982326057616],[-117.92943184037621,52.34880277872885],[-117.92946357729328,52.348623894047996],[-117.92950079111708,52.348445400807286],[-117.92952876954892,52.348266822334175],[-117.92955502687258,52.34808755499222],[-117.92956891670543,52.347905176439404],[-117.92974799362906,52.347769301182595],[-117.92998800355957,52.3476636407451],[-117.93016436572998,52.34752250248143],[-117.93038799426945,52.34740553364003],[-117.93057004185547,52.347263663526924],[-117.93066292297404,52.34709412967021],[-117.93069465186151,52.346915253327495],[-117.93070070981773,52.34673514432921],[-117.93070849022996,52.3465557152172],[-117.93073108754788,52.34637620127827],[-117.93077012205599,52.34619782591414],[-117.93083879160937,52.34601927197361],[-117.93102067283976,52.34588810447278],[-117.9312834142906,52.345799257057955],[-117.93150984536597,52.34568700471633],[-117.93167915404814,52.34553408918286],[-117.93174818336527,52.34536344930685],[-117.93175220152439,52.34518432628366],[-117.93173655015725,52.345001573425165],[-117.93174088104489,52.34482078421018],[-117.93178710913016,52.344643479556034],[-117.93185890250916,52.344467959644206],[-117.93195359866526,52.34429855187434],[-117.9321014050924,52.34414187829868],[-117.93228666745881,52.34400248756393],[-117.9324855976893,52.34386912366283],[-117.93266892621618,52.34373016613573],[-117.93273502723949,52.343555376877305],[-117.93275986030957,52.34337375322065],[-117.93283232337032,52.34320449000127],[-117.9330297348262,52.34306933146883],[-117.93321274556254,52.342932039145325],[-117.93332892769513,52.342766387082555],[-117.93336074768375,52.342586948091956],[-117.93332750756178,52.34240916902751],[-117.9332834151928,52.34223007274293],[-117.93315333570189,52.34207543890155],[-117.93298313359577,52.34192759930841],[-117.93289067610137,52.341759794695044],[-117.93283876056847,52.3415829681636],[-117.93271218254802,52.34141955132894],[-117.93252111305937,52.34128435351677],[-117.93239156080826,52.34112693882365],[-117.9322510553369,52.340968750185766],[-117.93207710508378,52.34082120659357],[-117.93189084086688,52.34068014155311],[-117.9316607449678,52.3405754982627],[-117.9313814412735,52.34050635049123],[-117.93110365004169,52.340439004596654],[-117.93088868661864,52.34033259984849],[-117.93079222612252,52.34015661471915],[-117.93065793824549,52.33999491292538],[-117.93051551153248,52.33983715586646],[-117.93042134754873,52.33966866018777],[-117.93037309477933,52.33949209619326],[-117.93033846152888,52.33931196087283],[-117.93029234978741,52.33913384924923],[-117.93024644746984,52.33895462384906],[-117.9301907890314,52.33877810205174],[-117.93010241895634,52.33860832236415],[-117.92993641614036,52.3384579441434],[-117.92971849654198,52.338337789713805],[-117.92947808880223,52.33822904450378],[-117.9292659635967,52.33810759671603],[-117.92913246830614,52.33795158909209],[-117.92903742797643,52.3377779571746],[-117.9289048745167,52.33761694190644],[-117.92875453157092,52.33746201346835],[-117.92858832877718,52.337312746918776],[-117.92839290781602,52.3371811804175],[-117.92817317316005,52.33706089542814],[-117.92800665944625,52.336913303052064],[-117.92790134784629,52.336745153404955],[-117.92777073295133,52.33658370293984],[-117.92762018857269,52.336429886640225],[-117.92748733171919,52.336270535727635],[-117.92736433563874,52.33610792881966],[-117.92720403831477,52.33595681533702],[-117.92715590823768,52.33577968817856],[-117.92704548748401,52.335619078606804],[-117.92690105356283,52.33546230274951],[-117.92669473919037,52.33533956655098],[-117.92649171555888,52.33520916143206],[-117.92628858775363,52.335079317264686],[-117.92607507955263,52.33495550831604],[-117.92586757166383,52.334829301833025],[-117.92568297012248,52.334689467486974],[-117.92550864931441,52.33454414079439],[-117.92532008591853,52.33440571680838],[-117.92515938376218,52.334256827760655],[-117.92507156643956,52.33408425487289],[-117.92496392378857,52.33391876337753],[-117.92478971225405,52.33377288310893],[-117.92457610939036,52.33364963259658],[-117.9243346965224,52.333546436069945],[-117.9241126422598,52.33342880422552],[-117.9238903817002,52.33331227676287],[-117.92365111091785,52.33320754026204],[-117.92340735330171,52.333107002928486],[-117.92315363198377,52.33301028186754],[-117.92297765285326,52.33287386099457],[-117.92286324103209,52.33270507703403],[-117.9227331810428,52.33254083162536],[-117.9225661811604,52.332396010787875],[-117.9223174187577,52.33230245950998],[-117.92206062370354,52.33221229071524],[-117.9218257477207,52.332103903148806],[-117.92162875292827,52.331971092269825],[-117.92144214421197,52.33183222803677],[-117.92124729208437,52.33169786909075],[-117.92103595362597,52.33157251206902],[-117.92081209296052,52.33145474607327],[-117.92056527077631,52.331360757314],[-117.9202963238675,52.33128609075985],[-117.92006552525774,52.33117573635272],[-117.91984156549535,52.33105852085471],[-117.9196089454261,52.33094802893542],[-117.91941347514036,52.33081700798304],[-117.91926339920072,52.330660952715135],[-117.91909918468238,52.33051124707063],[-117.91892704315559,52.330364362672235],[-117.91887039557984,52.330193402881],[-117.91900651501186,52.33003988061339],[-117.91896270394705,52.32985966345959],[-117.9187618696589,52.32972769691711],[-117.91856489512611,52.32959488059258],[-117.9184104438882,52.32944246225218],[-117.91821133317502,52.32931118372689],[-117.9180064325704,52.32918119677031],[-117.91781363783296,52.32904584576639],[-117.9176332620636,52.32890346464919],[-117.91745257433469,52.32876274936021],[-117.91725988702761,52.32862684498743],[-117.9170712720738,52.328488959369764],[-117.91687858718794,52.32835305433495],[-117.916661279094,52.32823008569852],[-117.91644569210897,52.328107805685924],[-117.91634732811575,52.327942391671705],[-117.91625162931956,52.327772641501994],[-117.91608550702104,52.32762335593038],[-117.915899666826,52.327480588758384],[-117.91569906064606,52.327347511863344],[-117.91544936192963,52.32731818493495],[-117.91525423391093,52.32718549048692],[-117.91510225643313,52.32702985405474],[-117.9149498596166,52.32687645374784],[-117.91478963998713,52.326725322040176],[-117.9146097026502,52.32658070853358],[-117.91448991061846,52.32642112211542],[-117.91443636741218,52.326243605098995],[-117.91429607997544,52.32608484050628],[-117.91414572571051,52.32593044416731],[-117.91399537084529,52.32577605652469],[-117.91386291196696,52.325615013674835],[-117.91371834994199,52.325459333914964],[-117.91354400109908,52.32531454952569],[-117.9133875482231,52.325163109935104],[-117.91324137359636,52.32500618803403],[-117.91305685491291,52.3248663325415],[-117.91290426524702,52.324714034095855],[-117.91276560420592,52.32455650896382],[-117.91255208122881,52.324433235440644],[-117.91237721769122,52.3242912290143],[-117.91220084341874,52.324147428396905],[-117.91198935871405,52.324023167880505],[-117.91176749259024,52.32390495023518],[-117.9115305474051,52.32379808835609],[-117.91131029941526,52.3236811113353],[-117.91115620827438,52.32352701652619],[-117.9109634602376,52.32339165354757],[-117.91070699682331,52.32330993521017],[-117.91046749835982,52.3232068457388],[-117.91028085780795,52.323068523926004],[-117.91016213892681,52.32290336404701],[-117.9099400740662,52.32278625651574],[-117.90978118937389,52.322638025067626],[-117.90967233159905,52.32246961026737],[-117.90958825034397,52.32229727976229],[-117.90946750162342,52.32213310494762],[-117.90929693624682,52.32198800817019],[-117.90910216630083,52.32185362780668],[-117.90888193480072,52.32173664599928],[-117.90864286844844,52.32163132521488],[-117.90843740617703,52.32150465280735],[-117.90824702373239,52.32136663313911],[-117.90803331988633,52.321244464703895],[-117.90780709619936,52.32112987703388],[-117.90759167364465,52.32100702749792],[-117.90739274030159,52.32087516824158],[-117.90718973730937,52.32074528920632],[-117.90697838929,52.320620457918835],[-117.90677131955793,52.32049254978468],[-117.90652417142869,52.320400757776376],[-117.90627327035688,52.32030926185486],[-117.90604950830601,52.320191466352966],[-117.9058380606619,52.320067194242355],[-117.90563945053964,52.31993366577864],[-117.90540363456373,52.31983081247252],[-117.9051374473573,52.31975179210778],[-117.90491488914883,52.31963745447956],[-117.9047101800802,52.319506881762415],[-117.90448611286648,52.31939074927374],[-117.90430582133756,52.3192483463742],[-117.90407053549526,52.319142710497886],[-117.90381224142436,52.31905125877422],[-117.90356380611829,52.31895655262438],[-117.90341643035029,52.31880629980847],[-117.90330802799923,52.3186356422204],[-117.90319117289312,52.31847060257625],[-117.90307421301921,52.31830612409937],[-117.90302437662001,52.31812885658042],[-117.90296531207893,52.31795150170443],[-117.90286937268701,52.317783414192995],[-117.90271126359117,52.31763127898195],[-117.90255894392688,52.317477861282846],[-117.90242858766334,52.31731581858875],[-117.90237103623339,52.317140266256686],[-117.90227145121513,52.316971922242644],[-117.90199576700024,52.31692382225403],[-117.90170840119954,52.31687884733997],[-117.90144140190185,52.31680426420917],[-117.90117675175706,52.31672702863279],[-117.90091690472838,52.31664392749999],[-117.90068633953493,52.31653297199255],[-117.90046026401767,52.3164178171817],[-117.90021644540079,52.31631834352844],[-117.89996887422588,52.31621916577186],[-117.89975244985067,52.31610186970524],[-117.89961428384763,52.315942100406794],[-117.89947590914187,52.31578344462234],[-117.89932178435413,52.31562988554586],[-117.89914752342503,52.31548507841993],[-117.89896491749906,52.315345318576036],[-117.89874422143285,52.31523110563224],[-117.89850844753929,52.315128237933884],[-117.89831181158536,52.314994272030845],[-117.8981130382886,52.31486184385245],[-117.89791833525419,52.3147274439697],[-117.89774011935127,52.31458404467489],[-117.8976348742583,52.31441642596953],[-117.89756608391366,52.31424176879208],[-117.89754062563026,52.31406282161621],[-117.8975094836155,52.313884604022746],[-117.89749346317544,52.313704630835744],[-117.89737110628359,52.313549351909664],[-117.89712443739046,52.313455311987546],[-117.89684817459775,52.3133907905172],[-117.89664674932631,52.313262686405274],[-117.89643964138749,52.31313531149178],[-117.89620472359917,52.31302798416218],[-117.89604462089446,52.31287682494853],[-117.89590209442642,52.31272069711179],[-117.8957218590214,52.312578280133394],[-117.89553948627065,52.31243740088646],[-117.89535100963279,52.31229948714262],[-117.89516243012827,52.31216212546967],[-117.89499612682481,52.31201447398502],[-117.89489121253156,52.31184518636933],[-117.89471364804548,52.311698441022216],[-117.8944572610865,52.31163643625309],[-117.8941608749967,52.31162973232745],[-117.89390352627507,52.3115434021581],[-117.89364926399463,52.311450508442285],[-117.89340303490289,52.3113542330692],[-117.89316244899291,52.311247637751435],[-117.89294263035451,52.31112894973194],[-117.892819312013,52.310969082830354],[-117.8927140948138,52.31080145918859],[-117.89250722014421,52.310672963318794],[-117.89231490185998,52.31053590192816],[-117.89207306553337,52.31043597751303],[-117.89179875825666,52.31037101958774],[-117.89150770960636,52.31035565559873],[-117.89121288108339,52.31036034617358],[-117.89092040269036,52.31036237545727],[-117.89063323720379,52.310326410508885],[-117.8903480674002,52.31027986037161],[-117.89006791108041,52.310226331317295],[-117.88979020984151,52.31016958867693],[-117.88951141878823,52.310108823771635],[-117.88922261718065,52.310091354828586],[-117.88892982472194,52.31009505407452],[-117.888634369448,52.31010307023844],[-117.8883414727075,52.31010732038608],[-117.8880470655188,52.310109775547915],[-117.88775391997167,52.31010553896094],[-117.88746245285502,52.31009240109052],[-117.88717210325771,52.31006353385359],[-117.88694242142951,52.30996784599179],[-117.8869144499029,52.30987109194774],[-117.88688943182495,52.30978808664436],[-117.88678178592579,52.3096236703143],[-117.8866257978626,52.30947052673208],[-117.88657561908094,52.30929547829334],[-117.8865855046411,52.30911562278463],[-117.88659356563491,52.30893563904978],[-117.88661815270162,52.30875624779253],[-117.8866663518132,52.30857908438934],[-117.88674342605609,52.30840564708681],[-117.88685797486643,52.30823934765008],[-117.8869074709988,52.30806510093131],[-117.88689911048992,52.30788396326942],[-117.88685503577457,52.30770595827349],[-117.88688316406251,52.30752738447614],[-117.88689831118427,52.30734902696254],[-117.88685809584649,52.307170164601295],[-117.8868788219984,52.30699163033254],[-117.88692347344438,52.30681365780004],[-117.88692605943754,52.3066332891335],[-117.88699218456327,52.30645907332192],[-117.88709974391675,52.30629059454616],[-117.88721751281689,52.30612678714271],[-117.88719575088606,52.3059480929475],[-117.88719265264213,52.305768453265046],[-117.88723365452228,52.30559021515178],[-117.88725651684592,52.30541014271276],[-117.8872384037739,52.305231704805614],[-117.88720548628677,52.30505335503037],[-117.8871931606606,52.304873635565286],[-117.88716410223451,52.30469442842493],[-117.88713129129721,52.304515517256206],[-117.88711145897959,52.304336398624365],[-117.88717424541281,52.30416025993737],[-117.88730685270704,52.304005954084964],[-117.88732778546718,52.3038263056084],[-117.88732286256356,52.30364653744269],[-117.88728254308461,52.30346823601002],[-117.88710195470608,52.303328031983966],[-117.8871096327405,52.303159864850386],[-117.88732647951231,52.30303913004541],[-117.88757378780153,52.302943095196255],[-117.8877991234492,52.30282634147715],[-117.88803986657082,52.302725899435856],[-117.88831195013299,52.30265530130271],[-117.88859530641135,52.30261314591165],[-117.88888832164234,52.30259819132784],[-117.88916827915628,52.302564254595055],[-117.88927936296459,52.302396590906184],[-117.88928204466178,52.3022156602646],[-117.88926606280836,52.30203568430461],[-117.889233349309,52.301856220968],[-117.88908660732592,52.3017031592625],[-117.88888792342611,52.3015707139034],[-117.8886916947164,52.30143505528429],[-117.8884241165117,52.30137394266608],[-117.88819142080081,52.30126506021263],[-117.88802528737794,52.30111684508744],[-117.88788903678382,52.300957188136124],[-117.88776639601882,52.30079397352226],[-117.88766701136996,52.3006250535282],[-117.8875792004629,52.300453570379034],[-117.88748367552984,52.30028379286341],[-117.88746201957973,52.300104545512184],[-117.88743734709058,52.30000012320482],[-117.8874179504791,52.29992653964874],[-117.88731257114983,52.29976002335278],[-117.88719014592128,52.29959569428626],[-117.8871363281502,52.299420388357035],[-117.88704862761823,52.299248343344544],[-117.88693767501441,52.299081994428114],[-117.88683057967708,52.29891479699801],[-117.88673709510992,52.29874403317019],[-117.88668166616077,52.298567485024094],[-117.88659568738234,52.2983961290539],[-117.8864771267806,52.29823094177122],[-117.88635053690803,52.2980691349862],[-117.88623187231066,52.29790450871024],[-117.88611321029707,52.297739873382135],[-117.88597087544927,52.29758317019841],[-117.88581086574425,52.29743199503736],[-117.88564068725556,52.29728574700342],[-117.88546461797976,52.297141341424336],[-117.88534574930625,52.29697782781121],[-117.88524070098771,52.29680963425959],[-117.88511808199071,52.29664641631509],[-117.88498175038411,52.29648731668856],[-117.88482967400603,52.29633331188337],[-117.88466153711414,52.29618607682683],[-117.88449736509678,52.2960374229909],[-117.88434336225178,52.29588385055817],[-117.88417512459397,52.29573716713377],[-117.88398686288886,52.295598671826944],[-117.88382665743961,52.29544860738057],[-117.88367662276315,52.29529361549486],[-117.88351031773577,52.29514650689623],[-117.88334422387972,52.294998284354946],[-117.88329221950879,52.29473508237656],[-117.88327626536008,52.294555104538304],[-117.8832168939786,52.29437996372615],[-117.88312728955952,52.29420834811294],[-117.88305483644231,52.294033984363],[-117.88298024584792,52.29386115836201],[-117.88285774793216,52.29369738526108],[-117.88271158050217,52.29354153474701],[-117.88253736007795,52.29339725256198],[-117.88237299590092,52.29324970908038],[-117.8822465401667,52.29308734479489],[-117.88210830236768,52.29292866546478],[-117.88196803173149,52.292770971362266],[-117.88182797218552,52.29261216338398],[-117.88168952737284,52.29245459718211],[-117.88154743603569,52.29229677423317],[-117.88142249399665,52.29213621219301],[-117.88137470618689,52.29195849874473],[-117.88130997903986,52.29178241935942],[-117.8812143920101,52.29161319682478],[-117.88108419207441,52.29145113578797],[-117.881053029993,52.29127346302087],[-117.88100503289444,52.29109687189597],[-117.8809115882451,52.29092610232596],[-117.88081428517009,52.29075619866792],[-117.88073069492988,52.29058217692249],[-117.8806829116818,52.29040446297251],[-117.88078940526908,52.29024155636652],[-117.88092560115106,52.29007792254094],[-117.88095258788316,52.28990546854514],[-117.88078308569729,52.28975587145675],[-117.8806510693219,52.28959368140395],[-117.88060093780355,52.289418627659444],[-117.88061663054302,52.28923747976721],[-117.88064122952761,52.289058095923046],[-117.88065316884772,52.28887725268163],[-117.88059125615851,52.28870588381161],[-117.88045742178437,52.28854355619857],[-117.88044470875343,52.28836606106974],[-117.88023689898631,52.28826285117834],[-117.87993731215626,52.28827393868983],[-117.87964361783344,52.28828317407956],[-117.8793516025813,52.28828350814827],[-117.87905772698056,52.28827411406047],[-117.87876525484688,52.28826707492237],[-117.87848294407068,52.28822576749445],[-117.87824866306939,52.28812577344199],[-117.87795341670497,52.28809427026134],[-117.87770753441859,52.28801659671825],[-117.87751020920976,52.28787744834626],[-117.87724900571328,52.28780264049081],[-117.87696112448909,52.28776149668035],[-117.87666809366077,52.2877476418027],[-117.87637615600067,52.28776715767604],[-117.8760841458905,52.28776747460425],[-117.87579016856756,52.28775863352355],[-117.87549675536586,52.287756593240125],[-117.87520523243457,52.287744538014806],[-117.87492843172889,52.287683856460966],[-117.87467105373258,52.28759859568095],[-117.87443001719551,52.28749529165235],[-117.87414939751801,52.28744506422464],[-117.87387473827694,52.28738284247728],[-117.87362697105532,52.28728584252391],[-117.87337215826788,52.287196804917585],[-117.87310528520864,52.28712271612982],[-117.87282838545464,52.28706259082397],[-117.87256396850636,52.28698528817574],[-117.87232273013942,52.28688309339022],[-117.87211978184503,52.286754263226186],[-117.8719277405851,52.28661660417759],[-117.8717437313974,52.28647555622791],[-117.87151719002104,52.286373834829575],[-117.87123750120855,52.28642635740878],[-117.87096138933417,52.28648928770498],[-117.87068331226706,52.286543051062495],[-117.87038945038222,52.286533634985915],[-117.87010239398698,52.286566451668335],[-117.86981968626579,52.28661537288349],[-117.86953122611166,52.28664583234324],[-117.86923575170844,52.28666451201919],[-117.86894553629632,52.28665534923354],[-117.86865742411199,52.2866057082255],[-117.8684317308441,52.28649952613549],[-117.86827480324632,52.28634233323439],[-117.8681793853001,52.286172537943585],[-117.86807411359345,52.28600600237369],[-117.86791624316335,52.28585381597498],[-117.86773621195809,52.28571135252526],[-117.86755190385523,52.2855719727763],[-117.86737176898026,52.28543007001711],[-117.86719784284354,52.28528465019799],[-117.86702167363113,52.285141328923366],[-117.86683544247974,52.28500237184081],[-117.86662000159205,52.284881108817586],[-117.8664046662841,52.284759293004285],[-117.8662081635651,52.28462582188601],[-117.86598876471761,52.284505966650364],[-117.86576059877275,52.28439340142822],[-117.86555361574948,52.28426652087551],[-117.86535069990688,52.28413767859542],[-117.86510363710991,52.284046909411344],[-117.86480997028235,52.28402676637105],[-117.86453247048152,52.28396996209119],[-117.86428004467531,52.28387825311379],[-117.8640408770622,52.28377505573443],[-117.86379732634079,52.28367550300104],[-117.86356713664523,52.28356391848804],[-117.86333267164622,52.28345540844456],[-117.86308866845835,52.283348491286404],[-117.86296354076816,52.283199164499635],[-117.86297888244637,52.28302025434634],[-117.86290126989825,52.282844377093234],[-117.86273262860566,52.28270044966562],[-117.86251419563972,52.28257558065337],[-117.86245173231663,52.28240754223318],[-117.8623415107759,52.282257577287886],[-117.86210554759897,52.28214727003054],[-117.86187281111852,52.2820394467856],[-117.86166402750189,52.28191243046052],[-117.86147193492381,52.28177531485081],[-117.86129001424642,52.281633264709505],[-117.86104735686504,52.281538850550625],[-117.86077391289294,52.28147046789629],[-117.86052824274685,52.28137245444599],[-117.86028737915035,52.28126856813089],[-117.86005047987862,52.28116326360754],[-117.85979860725108,52.28106875607051],[-117.85953137410564,52.28099686298877],[-117.85924038877177,52.28100172964881],[-117.85894544186804,52.28100800433067],[-117.85865340504144,52.28101842888331],[-117.85836105130912,52.28103052763563],[-117.85806828268723,52.28101551201119],[-117.85779775512708,52.280951281852396],[-117.85756696351318,52.28084302614368],[-117.85739512264611,52.28069660609867],[-117.85722135526521,52.28055060948857],[-117.85702672321226,52.2804172510288],[-117.85678555652835,52.280315032291014],[-117.85652825985896,52.280229721826274],[-117.85623868120116,52.28023693693149],[-117.85600679020797,52.280339624151374],[-117.85570511371328,52.28035218643971],[-117.8554622982246,52.28026846440064],[-117.85524923041797,52.28013492964712],[-117.85505481701324,52.280000454182876],[-117.85487678022324,52.27985754643548],[-117.85470891559092,52.279709704770084],[-117.85452884728493,52.279567781399564],[-117.85434054023294,52.279430349853904],[-117.8541522343779,52.27929291798741],[-117.85396617428847,52.27915338722111],[-117.85380602944316,52.279003831735544],[-117.8536621547593,52.278846405511416],[-117.85352010591845,52.27868909890351],[-117.85337816263372,52.2785312397329],[-117.85323793727089,52.27837407037491],[-117.85311163444067,52.2782116724249],[-117.85299315257325,52.278047000672046],[-117.85287123451579,52.27788096657166],[-117.85268584944684,52.27774768293203],[-117.8524411680055,52.27764463618805],[-117.85222387486425,52.277523778243754],[-117.85202755501885,52.27738972104932],[-117.85187352314499,52.2772372168982],[-117.85172163238735,52.27708316635315],[-117.85152917293094,52.276948252126076],[-117.851322582622,52.27681967940527],[-117.85111364272893,52.276693766108],[-117.85090063814326,52.27656981327152],[-117.85068742230206,52.27644698258468],[-117.8504702463206,52.276325559961656],[-117.85025286075843,52.2762052505634],[-117.85004392863496,52.27607932636732],[-117.8498392744376,52.27595032732545],[-117.84963858448018,52.27581991055997],[-117.84942601006459,52.27569372764192],[-117.84917923976289,52.275601810269634],[-117.8488970082149,52.27555084008204],[-117.8486115847609,52.27550697461704],[-117.84833724894632,52.27544357813647],[-117.84806761410655,52.27537487042107],[-117.84778815801138,52.27531901049706],[-117.84750764830639,52.27526871809359],[-117.84722264987066,52.275222621918985],[-117.84694182597131,52.275173994145845],[-117.84666247722852,52.27511757913377],[-117.84640544234682,52.27503113220886],[-117.84616208607788,52.274930989371505],[-117.845951242803,52.27480549010383],[-117.84578525121051,52.27465776376849],[-117.84563938636227,52.27450131183755],[-117.84546077226797,52.27436172100833],[-117.8452848242103,52.27421781310607],[-117.84510491600346,52.274075313207376],[-117.84495295584223,52.27392180577093],[-117.84480506268224,52.27376633747625],[-117.84467677117476,52.27360491451956],[-117.84036248720119,52.272586028926696]]]]}' - )), 4326)))); - -INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Kootenay','4','4- Kootenay','AR10100000','WHSE Admin Boundary',6 - , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-118.29501042408857,50.13489706932168],[-118.29497954728096,50.134664882052995],[-118.2928350087489,50.13296012275089],[-118.29069719526458,50.128570166184964],[-118.2916564226439,50.12384108492328],[-118.29367962430575,50.11864473792788],[-118.29367951342863,50.11715609719167],[-118.29366497900097,50.1120290472007],[-118.29106785409111,50.10769875441861],[-118.2890995809473,50.103311970892655],[-118.29211599552727,50.09896929624853],[-118.30409128856405,50.09609846451458],[-118.31431465300084,50.09733327555918],[-118.31938938868467,50.098750808210774],[-118.33067782406872,50.099179822025],[-118.33919599994921,50.09927796089269],[-118.34602865356375,50.095783376272166],[-118.35490501628973,50.093251519503816],[-118.36751235808079,50.0915139876754],[-118.37479020385035,50.091035418092424],[-118.37762731402393,50.08920961840106],[-118.37974212562034,50.08641073220924],[-118.37972345061594,50.08258928440636],[-118.37934849817461,50.080303323576246],[-118.37934805339725,50.0792182722934],[-118.38671562822054,50.07760546868171],[-118.39941611589407,50.07745620213688],[-118.40669545396922,50.07703513566304],[-118.42356499742348,50.077328939945474],[-118.4406172578689,50.07745249359582],[-118.44620851111007,50.07720679299081],[-118.45357910027634,50.075470680069266],[-118.46206751461608,50.07173782518277],[-118.46605453314578,50.06938620124961],[-118.4687941196174,50.06760758400561],[-118.47294019613706,50.06480051990264],[-118.48178761864013,50.06031858205476],[-118.48249972475574,50.05991992997216],[-118.49248991807116,50.054290079964524],[-118.49609903727028,50.05148615844883],[-118.49707392193514,50.051025190408645],[-118.50103629238184,50.046503889365255],[-118.50001762307745,50.04017464252983],[-118.49269920576455,50.03586817220539],[-118.48958336767984,50.034336811332025],[-118.4827280197591,50.03173838180237],[-118.47419657581419,50.029772419416354],[-118.4651412176916,50.02809177889635],[-118.46194015140283,50.02792793548545],[-118.45057805197689,50.02636520430418],[-118.44310719838143,50.02394141998997],[-118.4400865297427,50.022526351838344],[-118.43447269192025,50.019744691058506],[-118.43010821452182,50.016795928510234],[-118.42698303793495,50.01281319783381],[-118.42696415601259,50.00972686652298],[-118.433241719419,50.006405875242784],[-118.44156634559016,50.006375960394315],[-118.44716167289393,50.006644201916444],[-118.45273761568315,50.00525504310548],[-118.45857994517591,50.00352627564962],[-118.46504318110964,50.00253392707918],[-118.46840869898757,50.001440488932914],[-118.46954541947487,49.99999804785048],[-118.46953809507288,49.999026144692614],[-118.46934385944071,49.99520287107203],[-118.46789198585765,49.99126755276443],[-118.467615092414,49.98921410235885],[-118.46519272011932,49.984706081021095],[-118.46287447443085,49.981518456389644],[-118.4613536078918,49.98003530962206],[-118.45949063824102,49.97850197804715],[-118.45451437580861,49.97748113927058],[-118.45265842470978,49.977259249148595],[-118.44936453692513,49.976409083145654],[-118.44669857829844,49.97464880542129],[-118.44625055370192,49.974138619749255],[-118.44402806221873,49.97283273683425],[-118.44047998700438,49.9726711290782],[-118.43685006573021,49.9737606283615],[-118.43207542411587,49.97583045350565],[-118.43031162317496,49.97657191377444],[-118.42817778695667,49.97709331507523],[-118.42348960432645,49.97653516888504],[-118.42002282905399,49.97563140939063],[-118.41638768543724,49.97489727405739],[-118.41549585170915,49.97461217185316],[-118.41177238297847,49.973651890579724],[-118.40918680215177,49.972174786790724],[-118.40829519190181,49.970460887739456],[-118.40872154054902,49.96731816867858],[-118.41110638926331,49.96537508764456],[-118.41384473418927,49.96400075352343],[-118.41506979227862,49.961024786356745],[-118.41461731753346,49.95919895212112],[-118.41487536708166,49.95748289924997],[-118.41380350531163,49.954917199846385],[-118.41377978711486,49.951781059543585],[-118.41492297337585,49.94954655562371],[-118.41579533207222,49.94691853138666],[-118.41604426777094,49.944751934803534],[-118.41630089224418,49.94337994954236],[-118.41514233430036,49.940242989159756],[-118.41326458792604,49.93721939504103],[-118.41219044606913,49.93567923846995],[-118.41147613266754,49.93391368201576],[-118.41324420430814,49.93305474964394],[-118.41606827519318,49.93207863843421],[-118.41669574210493,49.93184355510663],[-118.41667546606705,49.93070384374954],[-118.41622717992556,49.92750874451584],[-118.41576446883636,49.92465287477084],[-118.4157608511323,49.924254160986266],[-118.4146869028797,49.92111673213326],[-118.41467363709187,49.91934671679796],[-118.4151024942902,49.9166035992746],[-118.41535824316624,49.91523604252216],[-118.41545347857551,49.91483231597535],[-118.41597078298636,49.91357560970636],[-118.41601692401008,49.91345616862783],[-118.4158778796819,49.91331368177805],[-118.41586476867215,49.913129643004034],[-118.41588190743997,49.91294262299287],[-118.41588254562907,49.912760099848924],[-118.41588837282893,49.91257794614087],[-118.41591140930554,49.912397548467816],[-118.41597003458385,49.91222414450305],[-118.41606424828588,49.91205773419431],[-118.41617384652834,49.91189352285007],[-118.41629354646574,49.91173170418261],[-118.41642180244237,49.911571049429334],[-118.41655178764348,49.91141051466081],[-118.41668340828518,49.91125066309099],[-118.41681175530752,49.91108944455574],[-118.4169316354318,49.91092651645317],[-118.41704141388212,49.91076118648662],[-118.41714445718381,49.91059425822774],[-118.41724095142791,49.91042461419226],[-118.41733061837648,49.910253926179436],[-118.41741527895653,49.910081769020366],[-118.41749302010165,49.909909122193504],[-118.41756556897646,49.90973612374768],[-118.4176124461904,49.90955964218425],[-118.41762327171988,49.90937895661278],[-118.41761833925852,49.909198316058195],[-118.41761022652418,49.90901575442396],[-118.41757532707518,49.90883641473318],[-118.41748564320632,49.908670796124674],[-118.41733271135826,49.90851718017703],[-118.41715477983234,49.90837708373953],[-118.41696717696527,49.90824252797314],[-118.41676578943309,49.908117197173176],[-118.41654604399963,49.90800753807419],[-118.41631003966826,49.90791145361888],[-118.41605960157591,49.907828491723926],[-118.41579936138513,49.907762365353875],[-118.41553203309388,49.9077177937702],[-118.41525471457771,49.907691184034014],[-118.41497479286284,49.90768020968851],[-118.41469464668765,49.90768109306786],[-118.41441838783805,49.90769015885434],[-118.41413946843646,49.90770469124011],[-118.41386172053788,49.90772269563011],[-118.41358369251648,49.90774238003573],[-118.41330594417018,49.90776038301624],[-118.41302875396568,49.90777503279576],[-118.41275076423986,49.90778397415092],[-118.41247472955443,49.907781176602356],[-118.41219899537074,49.907745055932935],[-118.41193390444957,49.90768706559961],[-118.41167796791093,49.907616145649456],[-118.41142688754121,49.90753708884404],[-118.41117618185726,49.90745578752237],[-118.41092491706557,49.90737784704587],[-118.41066851912727,49.90730971397851],[-118.41040423171209,49.90725742765273],[-118.41012976605577,49.907224220227384],[-118.40985189658046,49.90720094034633],[-118.40957374734005,49.90717934047084],[-118.40929349599884,49.907159854590425],[-118.40902038069251,49.907181560060515],[-118.40875490541475,49.90723092672736],[-118.40849013450739,49.9072865637215],[-118.40822807940263,49.90734690170203],[-118.4079655572554,49.90741003724801],[-118.4077031267628,49.907472617884565],[-118.40736459242406,49.90755081373817],[-118.40710351921992,49.90761573928167],[-118.40684426762385,49.907680230247244],[-118.40658328533574,49.9077446002657],[-118.40632403227546,49.9078090899892],[-118.40606477848394,49.90787357909378],[-118.40580379399513,49.90793794723893],[-118.4055445387394,49.90800243510134],[-118.4052835527829,49.90806680199629],[-118.40502429606298,49.90813128861676],[-118.40476503861186,49.90819577461813],[-118.40450395654415,49.908260702851464],[-118.40424469762554,49.90832518761052],[-118.40398370799737,49.90838955138153],[-118.40372444761461,49.9084540348985],[-118.40346509406763,49.9085190720673],[-118.40320573829202,49.908584117556394],[-118.40294619689942,49.908650270966525],[-118.40268656082199,49.908716986965985],[-118.40242865397616,49.908783822737675],[-118.40216901638537,49.908850537498786],[-118.40190956443352,49.9089161341604],[-118.40165029814044,49.90898061272422],[-118.40138976639861,49.909042181036014],[-118.40112605432982,49.909101827210314],[-118.40086271441929,49.90915923779307],[-118.40059783027658,49.9092154098406],[-118.40033313191962,49.90927046376846],[-118.40006679688919,49.90932483341509],[-118.39999980365086,49.909338257050265],[-118.39973365278931,49.9093915173477],[-118.39946759528276,49.90944421378838],[-118.39919999362046,49.90949567166227],[-118.39893412136472,49.90954724932773],[-118.39866670497766,49.909597588419985],[-118.39839928800181,49.90964792685636],[-118.39813023441678,49.90969758097032],[-118.3978630027644,49.90974680062065],[-118.3975958630435,49.90979546535117],[-118.39732708674035,49.909843445748976],[-118.39705676637526,49.909890187537854],[-118.39678836200136,49.90993593167146],[-118.39651841360413,49.90998043719072],[-118.39624855869727,49.910024378839],[-118.39597715830482,49.91006709079836],[-118.39570603798104,49.910108121414474],[-118.39543482463709,49.91014970562038],[-118.39516543336012,49.9101908553982],[-118.39489267409047,49.91023120922475],[-118.39462066215275,49.91026708357532],[-118.39434621521974,49.910296574629115],[-118.39406797656416,49.91031732691768],[-118.39379015428582,49.91032510268346],[-118.39351157842007,49.91031642901035],[-118.39323542715151,49.91029323657051],[-118.39296324712467,49.9102567455053],[-118.39269952281055,49.910201064312126],[-118.39245495753647,49.910114503738114],[-118.39221661047154,49.91002215377148],[-118.39196069145386,49.90995118800331],[-118.39168622452537,49.90991792557051],[-118.3914088640646,49.9099019875318],[-118.39112972974331,49.909896669115895],[-118.39085148621587,49.90989649465609],[-118.390573056013,49.90989743694742],[-118.39029462579867,49.909898378531324],[-118.39001572959161,49.90990210857942],[-118.38973828254348,49.90990763916535],[-118.38946055462418,49.90991484970204],[-118.38918100401096,49.90992249319008],[-118.38890290397028,49.90993192828403],[-118.38862470970527,49.909941925868885],[-118.38834670205082,49.90995080529393],[-118.38806878691096,49.909959129756906],[-118.3877909657898,49.90996689031898],[-118.38751314457438,49.909974650176636],[-118.38723340651063,49.9099834061485],[-118.38695684892555,49.90999407438829],[-118.38667818617704,49.91000686512913],[-118.38640069442046,49.910023119218586],[-118.38612427795911,49.91004340879934],[-118.38584893672127,49.91006773387938],[-118.38557294213575,49.91009596486737],[-118.38529849039679,49.910125433271176],[-118.38502394564422,49.910155455240535],[-118.38474911955228,49.91018715716139],[-118.38447583624752,49.910220096514955],[-118.38420236571432,49.910254152631694],[-118.3839303437615,49.910290009387886],[-118.3836563118589,49.910327416475404],[-118.38338545997026,49.91036673596062],[-118.38311432657548,49.91040773541008],[-118.38284454895768,49.91045108977586],[-118.38257448976755,49.91049612410919],[-118.3823057877787,49.910543504430464],[-118.38203843996376,49.91059324862824],[-118.38177226238031,49.91064645627433],[-118.38151132058756,49.91071021207048],[-118.38125898323347,49.9107853028171],[-118.38101206977453,49.91086981541784],[-118.3807726839455,49.910961635762774],[-118.3805391898709,49.9110600799709],[-118.38031340873177,49.91116472350943],[-118.38010595814046,49.91128533326375],[-118.37992567212594,49.91142141351369],[-118.3797499215681,49.911561762253044],[-118.37956799758963,49.911697157924365],[-118.37937634737602,49.91182791323384],[-118.3791830587526,49.91195799317717],[-118.37897270089087,49.9120750157711],[-118.378728862398,49.91216199947401],[-118.37847071413337,49.91222989598128],[-118.37820442862831,49.91228365802958],[-118.37793183040573,49.91232284315664],[-118.37765703209479,49.912343795283725],[-118.3773781657348,49.91233676124435],[-118.37710930515263,49.912290858001455],[-118.37686896790689,49.91220002581852],[-118.3766985330535,49.91205755850415],[-118.37658968072314,49.91189225006998],[-118.37654063140188,49.911714729685784],[-118.37657738159167,49.91153698712429],[-118.37667220553453,49.911367812498234],[-118.37679550240168,49.91120628741579],[-118.3769203428854,49.911045991447864],[-118.3770452752519,49.91088514105589],[-118.37718348568312,49.91072860912073],[-118.37732323815459,49.910573315201255],[-118.37745644373665,49.91041530305231],[-118.3775697293833,49.91025081729428],[-118.37765781408964,49.91008004094],[-118.37771349550465,49.90990418047487],[-118.37775725376241,49.909726357024226],[-118.37776814257128,49.90954623864711],[-118.37772792791168,49.90936820470188],[-118.37766821601025,49.90919164013411],[-118.37757559011477,49.90902351253042],[-118.37745033028006,49.90886215012791],[-118.3773139438237,49.90870453255411],[-118.37717363172956,49.908549462314326],[-118.37702775536378,49.90839627329138],[-118.37687823466324,49.90824395094562],[-118.37672862070654,49.90809219155216],[-118.37656961025037,49.90794429766046],[-118.37639133757985,49.907806933016005],[-118.37619380424155,49.90768008859127],[-118.37599454212618,49.90755312297749],[-118.3757949070601,49.90742839185151],[-118.37559363748528,49.90730297633558],[-118.37539994232519,49.907174137154996],[-118.37521784238572,49.907038763688],[-118.37504935029908,49.90689528725212],[-118.3748903494357,49.90674739068198],[-118.37473883008792,49.90659662486881],[-118.37460044857825,49.90644056322251],[-118.3744603396886,49.906284371593244],[-118.37430901035228,49.906132487654574],[-118.37413678349539,49.9059904485854],[-118.3739228996631,49.90587772287684],[-118.37368077836574,49.90578732525011],[-118.37342968096934,49.905708735451675],[-118.37317171128961,49.905639839411],[-118.37291327540699,49.90557373187171],[-118.37265530726683,49.90550483460268],[-118.37239743270729,49.90543538247286],[-118.37213918620888,49.90536815565615],[-118.3718759824938,49.90530963487246],[-118.3716017923026,49.90526447248183],[-118.3713469131694,49.90519804872965],[-118.37111447938291,49.90510209942646],[-118.37088508480845,49.904998457429556],[-118.37066209773097,49.90488790985236],[-118.370447247958,49.90477057763004],[-118.37024581609643,49.90464627820766],[-118.37006145176483,49.90451411815624],[-118.36989480772534,49.90437019995969],[-118.3697378420381,49.90422074463465],[-118.36958106604082,49.9040701626843],[-118.36941652918944,49.90392412972418],[-118.3692362839514,49.90378830344699],[-118.36902181586244,49.90366874233173],[-118.36879757877782,49.90355527179205],[-118.36859204294777,49.90343463380847],[-118.36843541123307,49.90329367361105],[-118.36834264403284,49.90312665427944],[-118.36828363244238,49.902946167617706],[-118.36821714104853,49.902768549432416],[-118.36810067254034,49.90260722539179],[-118.36793605282779,49.9024617441621],[-118.36774497106985,49.90232798757112],[-118.36754767258682,49.90220000918208],[-118.3673482711391,49.90207414432667],[-118.36714667385647,49.90195094723964],[-118.36693951282072,49.90182963069481],[-118.36673015593884,49.901710981883724],[-118.36651677920409,49.90159544301762],[-118.36629709127666,49.90148624539622],[-118.36606552878725,49.90138526093587],[-118.3658297591147,49.90128850374097],[-118.36559179345294,49.90119441415046],[-118.36534531792509,49.90110934271737],[-118.36512937446756,49.90099871297017],[-118.3649458815764,49.90086151969727],[-118.3647944145109,49.90071073892214],[-118.36465599185648,49.900555217707534],[-118.36453080079824,49.90039383867211],[-118.36442940591242,49.900226210399055],[-118.36433256157713,49.900000112759564],[-118.36427090390062,49.899825089309076],[-118.3642057876103,49.8996498237852],[-118.36413155668554,49.899476742284115],[-118.36404839700326,49.899304736299804],[-118.3639651435555,49.89913329339583],[-118.36387469248945,49.898963038046965],[-118.36377867899513,49.898794654425565],[-118.36366999782229,49.89862877591925],[-118.36355201518711,49.89846619875468],[-118.36342683374185,49.89830481799652],[-118.36329599574037,49.898145872062855],[-118.36316132659495,49.89798890982647],[-118.36302291773059,49.89783338596934],[-118.36287913410891,49.89767861627425],[-118.36273525705747,49.897524409541866],[-118.362593111927,49.8973703146728],[-118.36244741445624,49.89721654071797],[-118.36229961389334,49.89706488036581],[-118.36214269809396,49.896915412667894],[-118.36197793049429,49.896771038783136],[-118.36180002693554,49.89663196769222],[-118.36160650873667,49.89650254800839],[-118.36139690981778,49.896385559815776],[-118.3611736129815,49.896277226485594],[-118.36094793134248,49.89617268710128],[-118.36071000233811,49.896078586249864],[-118.36051899049008,49.896017732892],[-118.36027972991845,49.89585853606836],[-118.36005634386876,49.895750763566326],[-118.35983688680638,49.895640434692204],[-118.35961570142777,49.89552998429029],[-118.35939414235699,49.89542176827798],[-118.35916875083294,49.89531554449675],[-118.35894097587799,49.895213105675325],[-118.35870726279137,49.89511478175051],[-118.35846906204803,49.89502235650484],[-118.35822464423427,49.89493570881752],[-118.35797601750765,49.89485329701853],[-118.35772664350327,49.89477534540478],[-118.35747315493909,49.89470106645867],[-118.35721555177417,49.89463046015278],[-118.35695738859543,49.89456319656565],[-118.35669684005015,49.89449972669705],[-118.35643572988266,49.89443960847191],[-118.35617069237045,49.89438204539328],[-118.35590453225944,49.894331177262266],[-118.35563046576124,49.894296152161616],[-118.35535414999335,49.89427453542881],[-118.35507661511112,49.89426018570338],[-118.35479973735956,49.894241919833675],[-118.3545818020597,49.89421647706905],[-118.3542466286269,49.8942223895983],[-118.35396960566835,49.89421541698069],[-118.35368991591224,49.89421390958977],[-118.35341171656766,49.89422437224355],[-118.35313626565552,49.8942497330796],[-118.35293598939307,49.8942441740472],[-118.3530564908157,49.89404742606948],[-118.35320235816988,49.893876757872],[-118.35336261151204,49.89372461666664],[-118.35356570967288,49.89359865828567],[-118.3537211881965,49.89345410503846],[-118.35377039931565,49.89327553324695],[-118.35377964939092,49.89309529204427],[-118.35381137978212,49.89291662592503],[-118.35387231974191,49.89274113694272],[-118.35393325923414,49.89256564788428],[-118.35399756374169,49.892390955312436],[-118.35406023152183,49.8922155872599],[-118.35411434567713,49.892039059093314],[-118.3541581785806,49.891861240727174],[-118.35421565737352,49.89168550898329],[-118.35430379351311,49.89151474706936],[-118.35443692861334,49.89135732196738],[-118.35460777357228,49.89121496588757],[-118.35479777350737,49.891083565878745],[-118.3549940322168,49.89095656555742],[-118.35519202052177,49.89082967706517],[-118.35522516594098,49.89080938795117],[-118.35267594821089,49.875131137546646],[-118.34554068146969,49.855151842851534],[-118.35354944943015,49.84249110996028],[-118.35368324658762,49.84231846328208],[-118.35370740850215,49.84217430598737],[-118.35370332930474,49.84202138371568],[-118.35369925013453,49.841868461411565],[-118.35366523335702,49.84164390916012],[-118.35364522423764,49.84141919978795],[-118.35364036416217,49.84123965705328],[-118.35362182172031,49.84106876032905],[-118.35361696327217,49.84088920856635],[-118.35361357122157,49.84076346955984],[-118.35360707845325,49.84058324226501],[-118.35361599522273,49.840394490039834],[-118.35361100086045,49.84020532264206],[-118.35364939621222,49.84007007802958],[-118.35378364379962,49.839915553031844],[-118.35386428332629,49.839788925115215],[-118.35392896090165,49.83965326289251],[-118.35395458885678,49.839562908958136],[-118.35394881188681,49.83934712098974],[-118.35395727056512,49.83914023707534],[-118.35393725960844,49.838915535918865],[-118.3539319422259,49.83871786122625],[-118.35393899551175,49.83851936288759],[-118.35393413459242,49.83833981944619],[-118.35394552798319,49.83824055227715],[-118.35402547717779,49.83808674031082],[-118.35415971768326,49.83793221442791],[-118.35437821459082,49.83778586041992],[-118.35441977061879,49.83776729339295],[-118.35448659818279,49.83771262713021],[-118.3546104856774,49.83763029650424],[-118.35484321346041,49.83749285449881],[-118.35488235442924,49.83744698247603],[-118.35490618647641,49.83729432594917],[-118.35490233285839,49.83715046391296],[-118.35490118712372,49.83710515779933],[-118.35489632408085,49.836925605109414],[-118.35487924641922,49.836808520656994],[-118.35484784245781,49.83668307749619],[-118.35482828796187,49.836476489261194],[-118.35482512204072,49.83635981075758],[-118.35482204901149,49.83624257795018],[-118.3548341273422,49.83617049410585],[-118.35487101771973,49.83604418838961],[-118.35490940586314,49.83590894255668],[-118.35490555235157,49.83576508024486],[-118.35491547377124,49.83561200839845],[-118.3549101510527,49.83541434179026],[-118.35490538102698,49.83523423439514],[-118.35489902022319,49.835063621333354],[-118.3549229453446,49.83491040107358],[-118.35494687030595,49.83475718077616],[-118.35497079510725,49.83460396044103],[-118.35501087870551,49.83453158880539],[-118.35511641060492,49.83435017376878],[-118.35518280384085,49.83421463093709],[-118.3552750183825,49.83406054774907],[-118.35538387976906,49.83394268232237],[-118.35549110792167,49.8338241323938],[-118.35559654193042,49.83364327994393],[-118.35568979309858,49.83346213362855],[-118.35578246302414,49.833326172390045],[-118.35586285610806,49.83319048057618],[-118.3558998629877,49.83300086622908],[-118.35590681401005,49.832802920481974],[-118.35591549046413,49.83260510476087],[-118.35599611122869,49.83247847399253],[-118.3560891019632,49.83235101036062],[-118.3561839541833,49.83223329227409],[-118.35630302029843,49.83203360451919],[-118.35634140085314,49.83189835743319],[-118.35636724762412,49.831817072190944],[-118.35637978118122,49.8317631103085],[-118.35645775451717,49.83160011276427],[-118.35653745424528,49.83143723625852],[-118.3566010999552,49.83126588894877],[-118.35659894203117,49.83118489160038],[-118.35664962307071,49.83098662992525],[-118.3567008306672,49.83086867226388],[-118.35675367058296,49.830751398917634],[-118.35686160229307,49.8305972862786],[-118.35696780636619,49.83044305237609],[-118.35703349985833,49.83028032377599],[-118.3570974659849,49.83011747397767],[-118.35716283465923,49.829946247150204],[-118.35717251771693,49.82978411255639],[-118.35718047382574,49.82962185680418],[-118.35719185801393,49.829522588099586],[-118.35719038631369,49.829468783449954],[-118.35721475998031,49.82933368413398],[-118.35725313558142,49.829198436222605],[-118.3572777384957,49.82907239816096],[-118.35732701132127,49.828882512560924],[-118.35739237887277,49.82871127636327],[-118.35743029421964,49.828557905623406],[-118.3574377899928,49.82837752692291],[-118.35744668860372,49.82818877119779],[-118.35744066851343,49.827963909744916],[-118.35743464698503,49.82773905716186],[-118.35743225815332,49.82764899809803],[-118.35742816781585,49.827496072892004],[-118.3574237535854,49.82733464954715],[-118.35742159439208,49.82725365177402],[-118.3574170181367,49.82714535778685],[-118.35738609986846,49.82697528236584],[-118.35738152372478,49.82686698833543],[-118.35737959421344,49.82679505185612],[-118.35737812238034,49.82674124700568],[-118.357377663211,49.826723124309865],[-118.35737550412802,49.82664212646721],[-118.35738509141255,49.82648055434707],[-118.35747753929998,49.82627277494527],[-118.35750096531072,49.826164183620904],[-118.35749687487646,49.82601125810271],[-118.35750678552613,49.82585818395422],[-118.35750292470402,49.825714319732036],[-118.35751283526923,49.82556124551994],[-118.35699671000526,49.822384067065315],[-118.35369978075299,49.82208488959425],[-118.34486872148916,49.82107746925169],[-118.3369149217838,49.821089291832486],[-118.33152777827982,49.82121225947115],[-118.32868590699398,49.82099183062615],[-118.32763422625975,49.82076343177399],[-118.32620980418297,49.81951033181733],[-118.3233757275581,49.81774856197744],[-118.32099442441674,49.81695146563613],[-118.31639892845101,49.81627518989932],[-118.31303749836998,49.81582261732492],[-118.31109107908152,49.815597612912136],[-118.30896766697673,49.81434973846351],[-118.30745520781649,49.811550014759796],[-118.30585580950456,49.80818946421155],[-118.30584465848212,49.80767530475148],[-118.30284363381813,49.806995098670484],[-118.29904020870165,49.806599563007346],[-118.29710205079199,49.80574839917599],[-118.29602747946535,49.80375398438102],[-118.29637885986357,49.801919809125714],[-118.29840712166686,49.79900560120126],[-118.30016502782317,49.797693251569605],[-118.30086896954114,49.79592074097152],[-118.29715051579302,49.79461285837937],[-118.29238000062124,49.79399478823065],[-118.28874995242698,49.79348894988124],[-118.28751373828182,49.79303443080589],[-118.28680391559426,49.79194433771247],[-118.28501770402406,49.785898945497635],[-118.2842139500306,49.782306937245814],[-118.28376056058121,49.77870807399931],[-118.28657820948716,49.7744250931398],[-118.29115526094495,49.771047006544684],[-118.29317682467,49.76899408315734],[-118.29449807806037,49.766705512806645],[-118.29325284231786,49.76465300637166],[-118.29299326280017,49.76453679394625],[-118.29078199099717,49.76299877231894],[-118.28882553625796,49.760034052510385],[-118.28872936348972,49.75729502388266],[-118.28872454621451,49.75484178999584],[-118.28951265235368,49.752899940806415],[-118.29091633585658,49.750782896874895],[-118.2925844294058,49.74866931409719],[-118.29397949653945,49.74627059547673],[-118.29450455486514,49.74381757200681],[-118.28964571919819,49.741768892413866],[-118.28709115159864,49.74194226879358],[-118.28717275324044,49.74228562930634],[-118.2840885335239,49.742290182335644],[-118.28108610027698,49.74023990301195],[-118.28027218734768,49.737044924187174],[-118.27983359534535,49.733280004664884],[-118.27867366175671,49.730483366838435],[-118.27751746212942,49.72865674619526],[-118.2763690834323,49.725462771706],[-118.27653436951202,49.72192330497924],[-118.27731680016032,49.718445212972945],[-118.2771302418223,49.71781557894944],[-118.27509674265305,49.71656213010579],[-118.27245076776762,49.71439479657632],[-118.27111662372805,49.71131411155792],[-118.2703093144248,49.70949007663358],[-118.27012826867163,49.70560976042241],[-118.2698589838508,49.702582135533405],[-118.27011033556037,49.700928955470665],[-118.27037886549701,49.69876126343141],[-118.27267080638212,49.69864383736878],[-118.27442981996107,49.69904095370676],[-118.27574430684201,49.69777722984053],[-118.27512285110689,49.69510005708993],[-118.27527419392793,49.688587142363716],[-118.27614283049739,49.68385170859379],[-118.27630779585877,49.680313151645336],[-118.27744173855876,49.677803179886865],[-118.2767388264063,49.67660122944048],[-118.27363424413198,49.67295384275708],[-118.2723936260847,49.66924278648898],[-118.2714189297608,49.66668111601281],[-118.2686836770832,49.66588573426344],[-118.2631391175767,49.66588936619477],[-118.25528792607619,49.66544708761462],[-118.25229029921707,49.665051621647684],[-118.24779712972192,49.664604117258065],[-118.24497755698839,49.66398022292587],[-118.24207762146612,49.66226859657688],[-118.24224027023617,49.65810073085348],[-118.24212938259345,49.649544283133224],[-118.24078356717735,49.64326576603627],[-118.23972573568385,49.641208318353925],[-118.23970781456897,49.63481880839801],[-118.24058155058898,49.630479943112235],[-118.24250179769247,49.62785160158441],[-118.24689498240147,49.624589579640485],[-118.24900015841304,49.61979346675046],[-118.25002929292543,49.61345777878185],[-118.25108309077436,49.61191495510346],[-118.25308321845137,49.60534601394289],[-118.25228307373301,49.60061189826577],[-118.25147391081907,49.597414389854364],[-118.25173150287317,49.593418716750655],[-118.25304127661026,49.59010967582364],[-118.25328944523379,49.58839269428477],[-118.25134693346942,49.58548455483926],[-118.24809810189318,49.583149751636405],[-118.2449097480476,49.57938924559367],[-118.24411747962418,49.57510955933945],[-118.24285682279194,49.5688312736625],[-118.24257799810003,49.56192636754265],[-118.24282985460835,49.559530826728796],[-118.24519624261181,49.55621712040017],[-118.25055569001333,49.554268734853125],[-118.25476201036321,49.55231624653243],[-118.25581451109652,49.55134850808176],[-118.25631795021685,49.54729156370134],[-118.2571807268136,49.54192652005857],[-118.25805328078464,49.53798587834062],[-118.25875170589556,49.5358196379742],[-118.26338841528984,49.53204124878604],[-118.27057467571365,49.52837527833134],[-118.2742585888729,49.52637129430514],[-118.27688864348899,49.52476937893068],[-118.27697837363613,49.524483352674835],[-118.27563759908068,49.51866331802322],[-118.2743862595693,49.51346953604108],[-118.27481096638145,49.50895993769529],[-118.27646168906219,49.505992753430625],[-118.28135527045909,49.50107024158266],[-118.28153269259484,49.499930659948824],[-118.28414490272938,49.49478521402783],[-118.28456108758863,49.49073311277701],[-118.28366541864978,49.486395028052414],[-118.28312540161458,49.48365937523352],[-118.28003672513967,49.47858533969866],[-118.27940097769444,49.47328081888777],[-118.28027769346048,49.471279849820384],[-118.27832634673582,49.468774165123655],[-118.27577781655478,49.46734862691454],[-118.27568269766705,49.465353993930016],[-118.27075462036399,49.46050992287034],[-118.2638910397971,49.453905033022515],[-118.25930971157892,49.448826764650484],[-118.25535781903194,49.447182036513865],[-118.25314485282048,49.44261969496606],[-118.25655461829177,49.440726383542035],[-118.25864759249063,49.436275388348896],[-118.25888495760626,49.43164803489186],[-118.26062364192482,49.42765218314099],[-118.26500553797634,49.42433481660103],[-118.26981296441201,49.423183990654096],[-118.27261223958646,49.42260400657735],[-118.27454264227629,49.42191679073572],[-118.27347758855556,49.4199233014911],[-118.26988942639895,49.41901294143772],[-118.26523834106793,49.417254899404064],[-118.26426729576966,49.41668462400947],[-118.26136458199318,49.414747602496575],[-118.25820115500515,49.410818439159854],[-118.25686571236992,49.40648285585879],[-118.25602405262572,49.403290123784295],[-118.24554417198965,49.403290407800874],[-118.24350789867854,49.400000028229044],[-118.21818200635526,49.35909529081233],[-118.21845790394713,49.35911068544353],[-118.21885064766977,49.35911018961947],[-118.21900059000059,49.35906216917792],[-118.21924761424737,49.358982110871445],[-118.21949463613143,49.35890206093583],[-118.219752736978,49.35883836380188],[-118.22002701920967,49.35881204724743],[-118.22029717487862,49.35883070743754],[-118.22056324262903,49.358883863474595],[-118.2208328467567,49.358916053275244],[-118.22110524475,49.35894193475816],[-118.22138019969485,49.35896291216845],[-118.22165452886266,49.35897734347832],[-118.22192801208828,49.35899679188586],[-118.22240321171365,49.35904071036363],[-118.22240332164236,49.35128432955952],[-118.22266997858691,49.351231150007656],[-118.22289991464777,49.35114957185825],[-118.22298982705071,49.350975275631],[-118.22310889212193,49.35081270708841],[-118.22323935162409,49.350654355805155],[-118.22337308734018,49.35049708280239],[-118.22350686737725,49.35033954126203],[-118.22363404860434,49.3501801019749],[-118.22374636977715,49.35001647577721],[-118.22384553965948,49.3498487860228],[-118.22393981659849,49.34967933980656],[-118.22404069368376,49.34951177309815],[-118.22414655419314,49.349345416958],[-118.22425744481234,49.34917999409163],[-118.22437640736028,49.349017978280116],[-118.22451483521337,49.348863595750245],[-118.22468569158147,49.34872201886328],[-118.22486457135201,49.348584135077076],[-118.2250450184692,49.34844720610269],[-118.2252648460126,49.34834340186894],[-118.22551374597825,49.34826205591459],[-118.22575137879642,49.348165465484946],[-118.225973477154,49.348058428833724],[-118.22614200566109,49.34792035769765],[-118.22628370133084,49.34776705104717],[-118.22641276287267,49.347606613080686],[-118.22653702637106,49.34744385519509],[-118.22666447252188,49.34728273007288],[-118.22680464282291,49.347128190197346],[-118.22696708473956,49.34698515222545],[-118.22715820740459,49.34685663147946],[-118.227369984924,49.346738943535996],[-118.22758774869756,49.34662677504105],[-118.22780817512465,49.346519324897294],[-118.22804237717627,49.346422482686435],[-118.22827320791552,49.34632511618831],[-118.22849063762469,49.34621490468103],[-118.22867429199805,49.346079342669],[-118.22880282383991,49.34592196945916],[-118.22890704394626,49.34575492996847],[-118.2290129717945,49.34558801356562],[-118.22912374264689,49.345423139352285],[-118.22923778807638,49.34525935223561],[-118.22935676983603,49.345097052715005],[-118.22948386984297,49.3449378825883],[-118.22963413284762,49.34478491863916],[-118.22975444389913,49.34462497795448],[-118.22977019612472,49.3444492848058],[-118.22965523788871,49.344289921020724],[-118.22961973564882,49.344110540139795],[-118.22967677229877,49.34393613149959],[-118.22978592179591,49.343770578411345],[-118.22989678044186,49.34360513944357],[-118.22998086693185,49.343434383570354],[-118.23003818303906,49.34325830190535],[-118.23008709826732,49.343080763295596],[-118.23013762813902,49.34290390240074],[-118.23018136924372,49.34272628024703],[-118.23021656959627,49.34254803302717],[-118.23024498285409,49.342369015618864],[-118.23027367903256,49.342188316548835],[-118.23029905163285,49.34200681642973],[-118.23020701264632,49.34184485930666],[-118.23002869006356,49.34170242658035],[-118.22983971073143,49.341571944769065],[-118.22963935128193,49.34144744075971],[-118.22943292652292,49.341328157130555],[-118.22921636154037,49.341217756234],[-118.22902179002746,49.34108970291222],[-118.22884623238527,49.34095142337651],[-118.22868779195288,49.340803912565896],[-118.22853494894811,49.34065397151132],[-118.22837257572141,49.34050929067785],[-118.22818938911762,49.34037526663412],[-118.2279947757748,49.340247497534556],[-118.22780438152684,49.340115215975956],[-118.22761422338105,49.339981538681855],[-118.22740288726695,49.339870949119074],[-118.22715090363961,49.33980664953573],[-118.22687523313256,49.339770063722895],[-118.22660548792847,49.339729097378935],[-118.22633716820238,49.3396899352352],[-118.22606549373647,49.33966042569143],[-118.22579405468468,49.33962952009306],[-118.22555002481111,49.33954881531399],[-118.2253153710165,49.339453513454906],[-118.22508498312047,49.33935342180456],[-118.22486857788009,49.339242180021905],[-118.22465013689788,49.339132764427404],[-118.22442349856584,49.339030959035405],[-118.22418870804032,49.338936495457816],[-118.22395401342425,49.33884146784284],[-118.22375306966988,49.33872058395931],[-118.22356819527917,49.33858642841674],[-118.22338711520794,49.33845028300425],[-118.22320973448605,49.33831271125384],[-118.22304188464743,49.3381698881106],[-118.2228983632689,49.33801608279393],[-118.2227416600013,49.337868685954376],[-118.22255466016888,49.33773691863012],[-118.22236775486142,49.33760459638729],[-118.22218663391514,49.33746873499448],[-118.22201670674936,49.33732801396282],[-118.22175646311652,49.3372820616696],[-118.22148096421006,49.3372548162067],[-118.22120447811399,49.33723342878928],[-118.22092867361874,49.33722851297814],[-118.22065269415167,49.337234891690244],[-118.22037804581774,49.337243629226414],[-118.22010287867374,49.33725544302056],[-118.21982871233661,49.33727157452437],[-118.2195554999835,49.33729230102853],[-118.21928333654023,49.33731705902857],[-118.2190105122664,49.33734573408716],[-118.21874534566068,49.33739051567078],[-118.2184771860135,49.33743253636955],[-118.21820554989108,49.33746440973717],[-118.2179316297932,49.33748931821008],[-118.2176551762475,49.337498488932106],[-118.21740270016302,49.33743724335345],[-118.21723169190508,49.33729275987497],[-118.21718704168343,49.33711667368802],[-118.21718836021253,49.33693456548962],[-118.21720481664536,49.33675496336255],[-118.21723161525023,49.33657554712494],[-118.21725675379277,49.336395721187756],[-118.21727856942638,49.33621509379686],[-118.21730375435057,49.336034990468775],[-118.21734070575087,49.335856878020785],[-118.21739607035971,49.33568235029158],[-118.21748161457253,49.33551339817558],[-118.21759406218997,49.33534894293105],[-118.21771818352323,49.33518702404702],[-118.21784235225248,49.3350248187529],[-118.2179581667868,49.334860887109826],[-118.21808076599952,49.33469772620462],[-118.2181865190491,49.33453193572839],[-118.21824501146202,49.33435933561872],[-118.21825463070819,49.33417923903205],[-118.21825072734242,49.33399731438374],[-118.21825688216992,49.33381725712438],[-118.21826987055474,49.333637684478646],[-118.21828632011712,49.333458090246175],[-118.21830447907121,49.33327861041959],[-118.21832263788467,49.33309913054174],[-118.21833738056148,49.332919403811104],[-118.21835036687466,49.332739839859194],[-118.21836164661042,49.332560143512424],[-118.21837121677245,49.33238033266045],[-118.21838249633987,49.332200636214694],[-118.21840245589144,49.3320207248638],[-118.21837374494459,49.33184238517451],[-118.21833288854532,49.33166430865383],[-118.21829023252519,49.33148665429468],[-118.21824766882209,49.33130845424524],[-118.21817128996844,49.33113600441341],[-118.21808973964987,49.33096347049835],[-118.21800268916685,49.330792802431866],[-118.21790653574371,49.330624862528644],[-118.2177814519127,49.33046446509881],[-118.217643567596,49.33030822157609],[-118.2175073438424,49.33015238748581],[-118.21736941311724,49.329996429770866],[-118.21723138830498,49.32984103535965],[-118.21709160978854,49.32968579460059],[-118.21695358834113,49.3295303908178],[-118.21681385844776,49.32937487234185],[-118.21667764022743,49.32921903698867],[-118.2165414711884,49.32906291519714],[-118.21648639591469,49.32888720406099],[-118.21646324162568,49.328706719859085],[-118.21643112453181,49.328528131907184],[-118.21636528601866,49.328354748012],[-118.21627834180929,49.32818351437467],[-118.21618063251049,49.328014616988746],[-118.21606675275032,49.32784935817485],[-118.21594158925888,49.32768951252259],[-118.21580338755638,49.32753523384084],[-118.2156525263331,49.32738427696165],[-118.21549593032698,49.327236581049455],[-118.21533392840352,49.327090196135096],[-118.21517003117354,49.326944805582514],[-118.21500589813553,49.3268008190688],[-118.21482863515041,49.32666294494545],[-118.21464573101365,49.3265277771012],[-118.21446064800372,49.32639528514966],[-118.2142700656674,49.326264658632425],[-118.21405981514091,49.32614816405896],[-118.21379495334192,49.32610949422981],[-118.21351589541398,49.32610374896929],[-118.21323929970299,49.32609365412503],[-118.21297453395947,49.3260544187675],[-118.21272349348703,49.325985057327955],[-118.21247874682096,49.32589888477569],[-118.21224049139028,49.32580497827194],[-118.21201167037142,49.32570638454528],[-118.21180683338495,49.32558858334405],[-118.21160043159195,49.325469817425905],[-118.21139028494905,49.325352762952825],[-118.21115696897012,49.325260342605006],[-118.21088917016507,49.32521862783681],[-118.2106137332434,49.32522218136416],[-118.21033801101028,49.32522742473103],[-118.21006314962607,49.325237808881354],[-118.20979389972536,49.32526615370486],[-118.20953317113306,49.32532594272248],[-118.2092653084309,49.3253665459733],[-118.20899616176806,49.32540451156401],[-118.20872440242006,49.32543747082739],[-118.20848380343064,49.325521357589416],[-118.20824230827208,49.32561054797031],[-118.20799216024986,49.325679310948864],[-118.2077162568616,49.325695843027454],[-118.20744262720572,49.325709143744845],[-118.20716485587218,49.325706019100934],[-118.20689446383706,49.32567966131134],[-118.20663438538473,49.3256229309957],[-118.20637799807315,49.325554579376586],[-118.20611867755707,49.325493366563066],[-118.20584473868976,49.32547778601326],[-118.20557344301092,49.32544655173052],[-118.20530346924413,49.32540749024905],[-118.20504083774509,49.325355659329254],[-118.2047950226868,49.32527590046286],[-118.20455195384858,49.32519011971975],[-118.20432950328755,49.32508460855797],[-118.20410937620264,49.32497558010508],[-118.20390873315104,49.324853538776416],[-118.20374691664144,49.32470630413541],[-118.20360326532627,49.32455386547551],[-118.20366436577108,49.32438654480238],[-118.20373965806941,49.32411471870387],[-118.2000001512669,49.32463047829351],[-118.18933341097788,49.326100465794624],[-118.1762251979872,49.30000001717016],[-118.175737230922,49.29902540796294],[-118.17569194145977,49.2989358058856],[-118.16540456391843,49.27822338207022],[-118.14579657094164,49.26851215368962],[-118.14463921716062,49.26990706750609],[-118.14254308072411,49.272080368194665],[-118.13913726102034,49.27293710374553],[-118.13668944121684,49.27059839586214],[-118.13529606583178,49.268720752590255],[-118.13432327418326,49.26672610785234],[-118.13048111901557,49.26381881491182],[-118.12720281253264,49.26311783388512],[-118.12488358304651,49.262624816828314],[-118.12304676832144,49.26262412416746],[-118.11597527314764,49.26246184366676],[-118.11124738675049,49.25989715969977],[-118.10819071346855,49.257900651371514],[-118.10329386004193,49.25430881365661],[-118.09996718789043,49.250663706004836],[-118.09813799191485,49.249408803014155],[-118.09166366183841,49.24633084407623],[-118.0872129983995,49.24393749527125],[-118.08686301290854,49.2434815321999],[-118.08065229357041,49.23669584658453],[-118.07532015565108,49.2282563991896],[-118.0745341518095,49.22688258044863],[-118.07182312704211,49.22152078546667],[-118.06910757640998,49.21296860045687],[-118.0676304169782,49.20766052421663],[-118.06761809584974,49.2012123531235],[-118.06857318541172,49.19499439033517],[-118.06979829988651,49.19025800851403],[-118.07345442842538,49.18557720477841],[-118.07641517164886,49.182377395652054],[-118.07657968727808,49.17924000613398],[-118.0716079653498,49.17679061946379],[-118.06899974356207,49.176563333255],[-118.06786338474667,49.17667775832709],[-118.05992554876134,49.17536971065432],[-118.05242510410318,49.17400539681164],[-118.04823213025516,49.17200819882502],[-118.04657553386242,49.16921122191984],[-118.04570548776478,49.165848621761526],[-118.04465645787158,49.16128152695739],[-118.0432622226782,49.15888631012302],[-118.03924907547832,49.15649400896644],[-118.03602200200135,49.15369987811991],[-118.03819724724801,49.15050430014628],[-118.04682874430452,49.14878787059066],[-118.05528467304035,49.14752855422009],[-118.0618220979141,49.147411464846805],[-118.05676372333679,49.14484811153405],[-118.05266078471439,49.14153662261376],[-118.0526614118056,49.14097050502921],[-118.05083005663121,49.135261083315086],[-118.05055850622539,49.127445854500635],[-118.0492561750047,49.122028848790045],[-118.04854851482682,49.118606404645746],[-118.04907764982443,49.11592173122405],[-118.05194765222083,49.1126732719736],[-118.05167433444784,49.1085636699734],[-118.05098537101803,49.107362044801825],[-118.05159003897374,49.104395598951335],[-118.05358676737148,49.10085581062107],[-118.0522843546188,49.096807384049285],[-118.05228082030861,49.09578342551973],[-118.05080017409912,49.09213417434792],[-118.05227239427208,49.08916326916844],[-118.05322660115326,49.08608227731833],[-118.0511264012623,49.08163306066189],[-118.0486885160796,49.07706918959187],[-118.04790788280397,49.074558606720245],[-118.04825168661422,49.07239086184056],[-118.04982320754542,49.06947996533284],[-118.0508548699699,49.06690918811944],[-118.05077197929157,49.06337624639228],[-118.05138413792942,49.06229094962739],[-118.05076740196169,49.0585824416839],[-118.05155027849823,49.055615457815314],[-118.05389484924552,49.05276276932823],[-118.05310716655296,49.04916892897302],[-118.05066715938032,49.0463132642754],[-118.04831444814003,49.04294927806781],[-118.04717255740823,49.0382157059934],[-118.04716910531981,49.03462195705536],[-118.05100101936343,49.03102454721339],[-118.05508635931423,49.02891557769295],[-118.0568990196453,49.025145302463685],[-118.05611078811123,49.02252072687416],[-118.05506983352878,49.02041048308151],[-118.05507133741867,49.016301740808494],[-118.05801208658909,49.01276105440183],[-118.05957473874813,49.00996679300916],[-118.0598359047411,49.006426591699324],[-118.06000611445265,49.00317747837421],[-118.06408497957354,48.998081252488724],[-117.9986569285472,48.99990734331106],[-117.62727633132124,48.999890564756086],[-117.07487204636551,48.99986781483132],[-116.97481567321815,48.99986059582969],[-116.49633073928747,48.99978469188819],[-116.26295387040425,48.99991480562652],[-116.17432049715948,48.99984466993351],[-115.99720892073319,48.99979504571306],[-115.51682995905334,48.99971466212451],[-115.17530987731412,48.99965904969159],[-114.96202503304163,48.99969806582189],[-114.72194729441438,48.99955992583671],[-114.06922444892692,48.999586687200036],[-114.06219678666805,48.99956484583952],[-114.06396153388391,49.0020080528882],[-114.06435552814848,49.005149237662515],[-114.06369886257556,49.008283768980384],[-114.0622701780023,49.0112434175871],[-114.05742922882399,49.01486615789367],[-114.05292878284673,49.01872251030689],[-114.05062167856047,49.022075427629765],[-114.04961204961704,49.025606073843605],[-114.05130114223147,49.02904005333004],[-114.05419570997643,49.03317157543865],[-114.05457158268224,49.03745339923735],[-114.05587841934506,49.04328065826996],[-114.0586184681848,49.04672780581137],[-114.06325218707086,49.05143033313636],[-114.06869992992004,49.05437993021063],[-114.07283422155143,49.057425979036566],[-114.07521823052049,49.06080996239348],[-114.07906164996128,49.060259616532136],[-114.08334546317576,49.05982866005352],[-114.09341302272337,49.062342352334554],[-114.098259658626,49.06505302732824],[-114.10223363675605,49.06776263221087],[-114.10646126636647,49.071211731617524],[-114.11240443657415,49.075755206671026],[-114.1195117443275,49.078365368487205],[-114.12729906126091,49.0838883612203],[-114.13369939924418,49.087637419419686],[-114.14041027209646,49.09412247238436],[-114.14331608736055,49.098307873466304],[-114.14620687059993,49.10368801172735],[-114.14414115917914,49.10881285457648],[-114.14407352738603,49.113666359952695],[-114.14494639391512,49.119666335789674],[-114.14874571164597,49.12254232815193],[-114.15305314003214,49.12684626559581],[-114.15631747851548,49.131431185285656],[-114.1583589618431,49.13526619601823],[-114.158050378154,49.138522402073946],[-114.15444241326617,49.14078572678789],[-114.14916995935904,49.14304092739018],[-114.1434648817903,49.14551827755275],[-114.14613728597107,49.14776209511451],[-114.14908597819073,49.14914813119675],[-114.15255089964216,49.15133597535042],[-114.15522807840122,49.15334777024342],[-114.1585973206465,49.15650492303989],[-114.16187798170789,49.15898111818697],[-114.16645375624465,49.1632308141481],[-114.17277395273832,49.166802897890236],[-114.18672897104128,49.16899195805036],[-114.20118237364218,49.17249320074763],[-114.20725081883594,49.17543367972078],[-114.20921643433321,49.1790992543867],[-114.2146993272986,49.187864360338885],[-114.22132820266488,49.18949303932758],[-114.22614252165052,49.18843586129871],[-114.23097798908714,49.18571745996646],[-114.23666061121786,49.18517483473809],[-114.23971549704824,49.186162163773346],[-114.24277679529077,49.185600297139004],[-114.2452497456955,49.18298742332619],[-114.24923104028566,49.179525201088104],[-114.25430086757757,49.17909283364544],[-114.260492542429,49.180090932235814],[-114.26362123040909,49.18078851974135],[-114.26990405454382,49.18104771112839],[-114.2761185668791,49.180046495581074],[-114.28239494050268,49.18218758623218],[-114.28400065773988,49.18641730187],[-114.28545535926551,49.189110950400355],[-114.28928841311252,49.190101662418925],[-114.29278058631252,49.19062995651751],[-114.29878691475014,49.19225543812719],[-114.303759925418,49.19324554141565],[-114.30732951382014,49.19434583303414],[-114.30905494962529,49.196580977274266],[-114.31086252858319,49.19898588302944],[-114.3150541598652,49.20026568174145],[-114.3179343491709,49.19970355274713],[-114.32266146288447,49.19909118443438],[-114.32825678815604,49.19894530819028],[-114.33298483872608,49.19810849736025],[-114.33605675168366,49.19629342984374],[-114.3407103922215,49.1945408915215],[-114.3458596665505,49.19456218127111],[-114.34892234602366,49.19514262057372],[-114.35100269428096,49.19669591366345],[-114.3534215642882,49.199218982690866],[-114.35541183041842,49.20162453635223],[-114.36071288814428,49.203412201574],[-114.364557981419,49.20342840904176],[-114.37112086361047,49.20374258533289],[-114.3804512277488,49.20531472262849],[-114.38759741009927,49.207229100246806],[-114.39499031825082,49.21136494914213],[-114.39690016795868,49.21371334070594],[-114.3957413783877,49.21605070918197],[-114.3926585261502,49.21763919044478],[-114.39011222532166,49.21974487449321],[-114.39191866024755,49.22283471769019],[-114.39767132995951,49.22400203103651],[-114.39932530197709,49.225602954261404],[-114.39834662524933,49.22788688934104],[-114.39718076092137,49.23102342182884],[-114.39768762719204,49.23348052301573],[-114.3977432257073,49.23668001635984],[-114.39719183584204,49.23936379037876],[-114.39505503608166,49.2438123622494],[-114.39181168447935,49.244596145775574],[-114.38261450205675,49.245990520253365],[-114.3750758722235,49.248139194080075],[-114.37819188388158,49.25094608727723],[-114.38062398927754,49.25249660306134],[-114.38898049637388,49.25675418625684],[-114.3934441483626,49.2580846328066],[-114.39797796639266,49.25924801075099],[-114.40793342020682,49.26053803869297],[-114.41597884486248,49.260906538026596],[-114.42595584374689,49.26122797185257],[-114.43013968367208,49.26306691284792],[-114.43634546175714,49.263947510030896],[-114.44262791110296,49.265852451065186],[-114.44407391515253,49.27122758682679],[-114.44393775674678,49.276255115619094],[-114.4439985875106,49.279169562368786],[-114.44429756058031,49.28545593887525],[-114.4440990453839,49.28962382712083],[-114.44564744026756,49.29265656108506],[-114.44746795293808,49.294773454470594],[-114.45371174109545,49.302336809901064],[-114.45867967490895,49.30406529121786],[-114.4628684950697,49.30584810443441],[-114.46802373853174,49.3085527184007],[-114.47236996258204,49.311875605693764],[-114.47789457163238,49.31161208537382],[-114.48321810310242,49.31259487533156],[-114.48426283703171,49.31437150959275],[-114.48538198704604,49.31757421109643],[-114.48604854540584,49.32191661916259],[-114.48287316782384,49.324249692640336],[-114.47926999335904,49.32589891649174],[-114.47593536382827,49.3270873057272],[-114.47476941857472,49.33045759061767],[-114.47570079458083,49.334740772520085],[-114.47690928807253,49.33697615639576],[-114.4790687138455,49.34080871264216],[-114.48051712192124,49.34475514857833],[-114.48286839137181,49.34704759994574],[-114.48678295612342,49.350887103043604],[-114.49421535622096,49.353482960936745],[-114.49858863435131,49.35560827719091],[-114.50183686481873,49.35510398048941],[-114.51006949370021,49.35495306745481],[-114.51689539048596,49.356748138568236],[-114.51949488824927,49.359951691047115],[-114.52043326936223,49.36355636726724],[-114.5222528164098,49.36681534090382],[-114.52512471094138,49.3709960145889],[-114.52474575067828,49.37379402981447],[-114.52517727476055,49.37619431434127],[-114.52937365247074,49.37798046714815],[-114.53533458171502,49.378509224230044],[-114.5418361725784,49.37692881145384],[-114.54674207585346,49.37665647842222],[-114.55489376563072,49.3766737595286],[-114.5612786040471,49.37868907465054],[-114.56504254427433,49.38104069229696],[-114.56896616896763,49.38499148445407],[-114.57052229349092,49.38842843299834],[-114.57384315592593,49.390660030739824],[-114.58031947633597,49.39147739583221],[-114.58347511170268,49.39308649829769],[-114.58538130955307,49.39674716874743],[-114.58587861643386,49.40068986640712],[-114.58823159769216,49.40429475024814],[-114.58979258466407,49.40732766449601],[-114.58977662070346,49.410755909791284],[-114.59072182964148,49.41413412443696],[-114.59366042395007,49.420997734685756],[-114.59495539853319,49.42448643560298],[-114.59475721034214,49.428255858004356],[-114.59466079491102,49.430999143094176],[-114.59508437674486,49.432998857473244],[-114.59672799378228,49.43654664381534],[-114.59820325946603,49.44032319294119],[-114.59616472683274,49.44363462000921],[-114.5942981672971,49.445973532957964],[-114.59428554796567,49.44899683024922],[-114.59752109996556,49.45237780025958],[-114.59530911189766,49.45391553895098],[-114.59300929802559,49.456141821495535],[-114.59185573766621,49.45808235304019],[-114.5922732855384,49.461340406551436],[-114.59366802908373,49.46460067968508],[-114.5916293274574,49.46762661539892],[-114.58941365444326,49.46973588401736],[-114.5891394614571,49.471733242934405],[-114.5897363176986,49.4752244701717],[-114.58969140588604,49.481795752726434],[-114.5907096708323,49.48808206945487],[-114.59086470586428,49.49065584852323],[-114.58971052601076,49.4926509844988],[-114.58890096677803,49.49539363741572],[-114.58967158094764,49.49785264242765],[-114.58903899218039,49.50162295007374],[-114.58655042910212,49.504875148989335],[-114.58372906745886,49.507610638403484],[-114.57964796594183,49.513486974882746],[-114.57793813328378,49.517479076824955],[-114.57669153546303,49.52062306473871],[-114.57254872252437,49.52186799823083],[-114.56866828633358,49.5236288800655],[-114.5670609985181,49.526310099922696],[-114.56687709534532,49.5293395468895],[-114.56614385370122,49.533279126915815],[-114.56611160040542,49.53665278716184],[-114.56644487910084,49.53962771844387],[-114.56808863620459,49.54357287283683],[-114.56807373429177,49.546374081453465],[-114.56795857367183,49.54974398953834],[-114.56721821378669,49.554885864721044],[-114.57097596867385,49.55838345101991],[-114.5776499209777,49.56080001038411],[-114.58036208168595,49.56394931886514],[-114.58423432037313,49.5643618138781],[-114.58767401408684,49.561854575091296],[-114.59235119912591,49.560611810994686],[-114.5985270329164,49.55913895949132],[-114.60257242881954,49.5582943479368],[-114.60594088895448,49.55561734894026],[-114.60745271726418,49.55230312195532],[-114.6079133646503,49.54938810941469],[-114.6135552765259,49.547971484548576],[-114.61679489207515,49.54900872292941],[-114.62172741952044,49.54987831668163],[-114.62516011817884,49.548397546107985],[-114.62755823537589,49.546237895611945],[-114.63205481509202,49.544527488886864],[-114.63786060516841,49.54351434177812],[-114.64278354961782,49.543576050813115],[-114.6477124053187,49.54513497714936],[-114.65070036728774,49.546680023590675],[-114.65340378774039,49.549203118094674],[-114.65727090352122,49.551040978893674],[-114.66184014397436,49.552192768818465],[-114.66632730366351,49.55294272715263],[-114.67229649058802,49.55364096680924],[-114.67493610508109,49.55518501772062],[-114.68004226516804,49.55462344174218],[-114.68418667270808,49.55274645335496],[-114.68798352043656,49.550237144209795],[-114.69229653789016,49.547731787714575],[-114.69501575696567,49.55087829138175],[-114.69728863038102,49.55351144966054],[-114.70097053178017,49.55780366714882],[-114.70526779178296,49.56221310793046],[-114.70762548684073,49.56501706980489],[-114.71088015860343,49.567023656765144],[-114.71641357860061,49.57028795167845],[-114.71930696940673,49.57143636948443],[-114.71903531634725,49.57435088132961],[-114.72157574295267,49.57670365722678],[-114.72703091520651,49.57790957933809],[-114.73000715730022,49.5802569638763],[-114.7314995876584,49.5828324317208],[-114.73157361821686,49.588207582670925],[-114.73216450486794,49.5944389849064],[-114.73522292592364,49.59901304355431],[-114.7400628389843,49.6007379295399],[-114.74163790392494,49.60536865993883],[-114.7456790255966,49.60886036331156],[-114.74654211785085,49.612177654624254],[-114.74432610011286,49.61417799776381],[-114.74229248722023,49.61691475460496],[-114.73840663678165,49.62068473339923],[-114.73177932048812,49.62261688930226],[-114.72473116908868,49.62392451305952],[-114.71988354089859,49.624376957151114],[-114.7160029377433,49.625337982183794],[-114.71343722151342,49.62647736128869],[-114.71051374568049,49.630421816179364],[-114.70143174642482,49.63269014824668],[-114.69859379106387,49.63588714543522],[-114.69532810074539,49.63662265240455],[-114.69313474520108,49.63438801695512],[-114.68732612381618,49.632208463961454],[-114.68405648809149,49.634542227097675],[-114.67963413656352,49.63756597093496],[-114.67503153825658,49.63990157419785],[-114.66919307177204,49.643203561873506],[-114.66611269307049,49.64251129286468],[-114.66383826065208,49.63953510926188],[-114.65969362073243,49.63900878600006],[-114.65827140150951,49.64095166697853],[-114.65737720801283,49.643984167918966],[-114.65595125762883,49.64723757045192],[-114.65441910656388,49.652889812879025],[-114.65269632419029,49.66026457757199],[-114.6534712485344,49.66357541613002],[-114.65601061218906,49.66656010533592],[-114.65917287136482,49.66856456079543],[-114.66303182407746,49.67199897129735],[-114.66302344142979,49.674401710774355],[-114.66098486408347,49.67616779360187],[-114.66193942239842,49.679944258398635],[-114.66314810486253,49.683376624864586],[-114.66313960217107,49.685892634419616],[-114.66418383084718,49.688238307828115],[-114.66557880278795,49.69069759429684],[-114.66830569984506,49.69304988516056],[-114.67031774783047,49.69585103781313],[-114.66605325369588,49.70007389853054],[-114.66065382560818,49.703720981613685],[-114.65250329156656,49.70741861055448],[-114.64533841158452,49.709916369327615],[-114.64055650230507,49.712764244386186],[-114.63911482499103,49.71556025406814],[-114.63283096742022,49.71828884598896],[-114.63105100519196,49.72119958196586],[-114.62988981129315,49.72376874935191],[-114.62916633715437,49.72565331060854],[-114.62915420119917,49.72856986999087],[-114.62834527035544,49.73073985009334],[-114.62691804186271,49.73291033172524],[-114.62813105989915,49.7351959981791],[-114.63120819656405,49.73817458993737],[-114.63410784272511,49.73984009678149],[-114.63683688611646,49.74185201980338],[-114.63778041519123,49.745051001122754],[-114.63741802678817,49.74768410652363],[-114.63863193227246,49.74968831548326],[-114.6414462854892,49.75209331274787],[-114.64433669537033,49.75667219098621],[-114.64661797602392,49.75862532068415],[-114.65146832093063,49.761718252990605],[-114.65321223847552,49.76475704052192],[-114.64948358284943,49.76657436894169],[-114.646825040482,49.76759503832785],[-114.6444276040432,49.76976530677991],[-114.64158078887559,49.772157731621796],[-114.63802661177122,49.775523018789514],[-114.63560919295014,49.77928878403964],[-114.63400013957815,49.781225591930145],[-114.63141744209109,49.78384996386514],[-114.63043941537225,49.78607388244183],[-114.63306238779431,49.790714058909025],[-114.63435895014302,49.79351650803214],[-114.6358441433835,49.79837820562144],[-114.63660011130291,49.80261278481219],[-114.63788398043475,49.80895693942755],[-114.63838759001976,49.813020338367835],[-114.64066118467946,49.817659739489564],[-114.64055506741764,49.819603793746616],[-114.63725161743726,49.82302055326447],[-114.63598808501476,49.82604580360633],[-114.63640898198284,49.829820889233275],[-114.63860382408741,49.8333707214998],[-114.6407035291741,49.836120236867124],[-114.64413677083505,49.83978757187431],[-114.64632214467437,49.84219686161686],[-114.64755068939508,49.84505478932564],[-114.64913355958689,49.84711569096877],[-114.65282286123012,49.850384043096454],[-114.65510678999864,49.85296615024192],[-114.65607040197692,49.8551966789695],[-114.65674890223157,49.858455716002425],[-114.66008066168034,49.863724335610186],[-114.66335778412216,49.86453405590361],[-114.66581123495948,49.86785246098174],[-114.66666905303777,49.87214560705465],[-114.66752972567245,49.876089466318774],[-114.66909359988672,49.880152206105244],[-114.67129909856482,49.88198538777265],[-114.6743881878074,49.884513510192335],[-114.67915228200357,49.88806770991799],[-114.68126059571546,49.889615516978886],[-114.68187308427721,49.892018375328526],[-114.68432598052813,49.896197153034365],[-114.68492009114806,49.90036950393603],[-114.684460475034,49.902945805011946],[-114.68373357990093,49.90591492137327],[-114.68306768428813,49.912084910774254],[-114.68303936991435,49.916717171517796],[-114.68381897148325,49.91992110608439],[-114.68520036278409,49.9245566261375],[-114.6852566903488,49.92964158218051],[-114.68488040280816,49.9324479104775],[-114.68495575899911,49.935987690321774],[-114.68848244406337,49.939888246116375],[-114.69059196880511,49.942233047188616],[-114.68809148509489,49.94382741523247],[-114.6839924276601,49.9470187996904],[-114.6823753067431,49.94987640034749],[-114.68137975011912,49.952504962311416],[-114.67922301727278,49.95678573608282],[-114.67768585243392,49.96118389870605],[-114.6766881776547,49.96460908620557],[-114.67374752603565,49.966262743849015],[-114.66878202591046,49.966133919417274],[-114.66123650059353,49.96548328421527],[-114.65821584205338,49.965988109455566],[-114.6518984244562,49.968436197612895],[-114.65028166969941,49.970773870309976],[-114.64822090350633,49.97465619241561],[-114.64685606239811,49.977564285119925],[-114.64746616719644,49.980368171275146],[-114.64806108166714,49.983739670158904],[-114.64830077240879,49.98740140041283],[-114.64721833435277,49.98991430085658],[-114.64797526777879,49.99517420599087],[-114.65018610045247,49.99655450310688],[-114.6536431044905,49.9971914562258],[-114.66195735463856,49.999700249494076],[-114.66098694457497,50.00244457614901],[-114.65939644557179,50.00495640767986],[-114.65701148245934,50.00843790577465],[-114.65435752762447,50.011694422963444],[-114.65311916861141,50.01415181369716],[-114.65260148801319,50.017003584708156],[-114.65295147414038,50.017861948781544],[-114.65252122889693,50.01963283344111],[-114.65217679889226,50.021455912866266],[-114.65218094530857,50.024368286584334],[-114.65228775154569,50.02636471580042],[-114.65263592827863,50.02790646351705],[-114.65408195828873,50.03104522608875],[-114.65559115479914,50.032411847853794],[-114.65604223324014,50.03281169394923],[-114.65782128545334,50.03394853290216],[-114.65951385091392,50.03509226845173],[-114.65969253964178,50.036916250429364],[-114.6588983262201,50.03771466736128],[-114.65801639954411,50.03897521972462],[-114.65802867170108,50.03999701083695],[-114.65918507934683,50.04074228742651],[-114.6602444926281,50.041423380988434],[-114.66292751003336,50.04284820921527],[-114.66443853162806,50.04370257330546],[-114.66594748279061,50.04507291693292],[-114.66775020523048,50.04786647049442],[-114.66712576726383,50.04849533632744],[-114.66606313528285,50.04906669406355],[-114.66304595733752,50.049986868094614],[-114.66063854462465,50.05123847290941],[-114.65949899008478,50.05329921146698],[-114.65906538008686,50.056322963147565],[-114.6596076815393,50.05951650923464],[-114.66104138046725,50.0623718904748],[-114.66380839490812,50.0647636777783],[-114.6653213081623,50.065049563848504],[-114.6686069095891,50.064360323419535],[-114.6729673921913,50.06378491589116],[-114.67429591644765,50.064411209597594],[-114.67573708706375,50.06554772992826],[-114.67875891397334,50.0674908561344],[-114.68036972542676,50.06845936824849],[-114.68518579423275,50.072391953895526],[-114.68599964350615,50.07507431640821],[-114.6863628692672,50.07729619004109],[-114.68886141201382,50.08009003254264],[-114.68914246010395,50.08071956829788],[-114.69048097250551,50.083342976082186],[-114.69237017313382,50.08648095774164],[-114.69468767294651,50.08853134134665],[-114.69753128133505,50.08944223559779],[-114.69825225271477,50.08984184699126],[-114.70004348871467,50.09331771043868],[-114.70317804581326,50.097479991063615],[-114.70666959659391,50.1006137691717],[-114.70925690156572,50.10226991994009],[-114.7115766750961,50.10375094262668],[-114.71657104295758,50.10659808803504],[-114.71898905419427,50.108934059931066],[-114.72061215139915,50.11224166348383],[-114.7217726448932,50.112867979400626],[-114.72552174112234,50.115943792644565],[-114.72802433234378,50.11834165851622],[-114.72752083816235,50.12313482303626],[-114.725830090645,50.12519593343772],[-114.72539003700075,50.12553970943887],[-114.72075318300104,50.14283853125455],[-114.72076368065196,50.14455287914776],[-114.72860300848583,50.144996548621435],[-114.72372992036607,50.150315719230505],[-114.7216951434406,50.154257125815256],[-114.72180147071954,50.15796826210981],[-114.72351003904345,50.16235847270776],[-114.72729766779462,50.1694915333341],[-114.72587660269244,50.17165788389118],[-114.72340073019461,50.17543204869566],[-114.72216244287809,50.1773765495845],[-114.71958565570712,50.18183440861308],[-114.71872524403179,50.18679986757432],[-114.72006779140544,50.189652330946494],[-114.72302725604075,50.19301681260467],[-114.72615802824146,50.196038663903316],[-114.72867811558854,50.19980139021847],[-114.72949569654315,50.202657537679826],[-114.7305811823711,50.20722191092115],[-114.73122845595468,50.210702782249605],[-114.7328312632,50.21178380665741],[-114.73910149409758,50.214915393561505],[-114.73750551549806,50.21885541208047],[-114.74046740817033,50.22256285565975],[-114.74414067564265,50.225755031544466],[-114.74540354476844,50.2268360871785],[-114.75211501585738,50.23099669481994],[-114.75676976095639,50.23373270255693],[-114.75733202492789,50.2390407013198],[-114.75975822800271,50.24206134458361],[-114.76235480323326,50.24502655439862],[-114.75841606439431,50.2610167299473],[-114.75780337957679,50.262842508292614],[-114.75522630956182,50.26695551778223],[-114.7521230139315,50.26981871331019],[-114.74802390649329,50.27308193572089],[-114.74749600823186,50.275475024775055],[-114.74975116091757,50.27907081178471],[-114.75040033292704,50.283007987598964],[-114.74951395980644,50.28592460171124],[-114.74784348616622,50.291064049850775],[-114.75055098792545,50.29802419539041],[-114.75350834600928,50.29910401520135],[-114.7618286470553,50.30034548510193],[-114.76522778750254,50.300569752040474],[-114.76906866271838,50.3001645215112],[-114.77541222884896,50.299359501718904],[-114.7773879310507,50.30146836614349],[-114.77758523508432,50.30500495478969],[-114.77742585594666,50.30888783577781],[-114.77725210442169,50.3117465249279],[-114.77825849986314,50.316428349514744],[-114.78114567886205,50.31927638490184],[-114.78571202255375,50.32223733371849],[-114.78750441797831,50.32297791354263],[-114.79046356642799,50.324572516763006],[-114.79396373120036,50.326565239497874],[-114.79487330646542,50.32964758364441],[-114.79290966036291,50.33027577815637],[-114.7891655607271,50.33142453114785],[-114.77898614628022,50.33537820809151],[-114.76721922995063,50.34384817742708],[-114.76330027273168,50.347677276015226],[-114.7628696576982,50.35076159279198],[-114.76440386046342,50.35407199260268],[-114.76656531669423,50.35720932094118],[-114.76998118183825,50.359716078649384],[-114.77355552863533,50.36079420318712],[-114.77892484084724,50.36078723527329],[-114.78197401993427,50.35952496212639],[-114.78250066999529,50.359411539402984],[-114.78473682880218,50.35798368356196],[-114.78804206793708,50.356777564903155],[-114.79071958787516,50.3572857903423],[-114.7999877819976,50.36549650225342],[-114.80313560523369,50.36794506365738],[-114.80832077772499,50.368050333087275],[-114.81343446736304,50.36941290959158],[-114.81202468186102,50.3725536896766],[-114.80953136274032,50.37507055392826],[-114.80829047663481,50.37827458233262],[-114.80847602574212,50.38032779111782],[-114.8103710270494,50.381295372950945],[-114.81215236309677,50.38169115499431],[-114.81582937169605,50.38242432291353],[-114.81799423642013,50.38379569348665],[-114.81899332911428,50.38630124453664],[-114.81907759289206,50.38687737945698],[-114.82070370098472,50.38972534780624],[-114.82232820698408,50.39023747690898],[-114.82554863468033,50.38954755766528],[-114.82965313811412,50.38845322939543],[-114.83270313030319,50.38930456002323],[-114.84319230170293,50.39077242119108],[-114.84866656630707,50.39201546154539],[-114.85565186456768,50.39394308614614],[-114.85746263377116,50.39542713750585],[-114.85873355631693,50.397994861832636],[-114.85982152318228,50.401127422717174],[-114.86019287512777,50.403359983814205],[-114.85725928770215,50.40536001254036],[-114.85646198799978,50.40696237754387],[-114.85727569288171,50.408618821971196],[-114.85792030069656,50.41152901548964],[-114.85812309638807,50.41518481205381],[-114.85787048689204,50.41803534227993],[-114.85787050343191,50.41923913174333],[-114.85788721658015,50.42129299066599],[-114.85853220710754,50.4241451515374],[-114.8624854235274,50.426248480308075],[-114.86852192699074,50.42989468575541],[-114.8708822116418,50.43565912811344],[-114.8725122258837,50.438625453810246],[-114.8729703121094,50.43965145668905],[-114.8740392192339,50.43925178603783],[-114.8782473217021,50.437981641069975],[-114.88433706165404,50.43671210966474],[-114.88720431860683,50.43687889946617],[-114.89567412474509,50.4425707000997],[-114.90477509852269,50.44883121950454],[-114.9108253555245,50.455901182445345],[-114.91363005469651,50.459090535403014],[-114.91823608518764,50.463648712182895],[-114.92212625229028,50.467182882736665],[-114.92493347679657,50.470829095806536],[-114.92793241414846,50.47716296630853],[-114.93247798339837,50.48451725511569],[-114.93535366753581,50.48639330621189],[-114.93860109521687,50.48832533124471],[-114.94249281849002,50.49111661651714],[-114.94492759447887,50.493855907818386],[-114.94547227775932,50.49396228530036],[-114.94637621571063,50.495734469516776],[-114.94765217822287,50.497618982445005],[-114.94828489832453,50.49869826192765],[-114.95270610855245,50.501027645643426],[-114.9555991182392,50.50353451633879],[-114.95595789266638,50.504278744817626],[-114.95814061667319,50.5075243621012],[-114.95897730625548,50.510208191376144],[-114.960783294894,50.512205187824414],[-114.96214847650293,50.51431091437677],[-114.9638715610755,50.51687647490623],[-114.9661578304269,50.52138548655667],[-114.97369642580051,50.531704088264064],[-114.97651392069481,50.53591957399529],[-114.9810287581642,50.53898978835083],[-114.98655216021454,50.54457944217978],[-115.00067531583014,50.55767588578015],[-115.00532488484431,50.56474327249285],[-115.00773181475148,50.57250542128957],[-115.01031086268989,50.57997817086531],[-115.01329895208798,50.582769836696194],[-115.01619426595148,50.58384722677181],[-115.01879906842898,50.58383858028176],[-115.02265900990903,50.58302887491788],[-115.02586947306985,50.58096278976249],[-115.0269377974505,50.57969934452008],[-115.03052022275101,50.57786333356086],[-115.03500688320285,50.57653586366563],[-115.04048308508823,50.575602537730155],[-115.04461727002902,50.575359822030926],[-115.04747351375721,50.57420655630115],[-115.04971128656362,50.57242646566344],[-115.06304731967425,50.5859196690511],[-115.06427253119139,50.5859966589974],[-115.06853035847412,50.58490092255092],[-115.07053432696229,50.58518447661588],[-115.07308561041886,50.58387424451803],[-115.07867502197162,50.581131888840886],[-115.08763536114891,50.57775531833223],[-115.09082797739387,50.57709283580118],[-115.09419536557668,50.576885049430345],[-115.09767103056848,50.575999186909506],[-115.09970144106553,50.57541150376616],[-115.10366283639297,50.574935935794564],[-115.10726927703718,50.57386382815934],[-115.11118401049256,50.572288484229816],[-115.11356283507286,50.57161845991334],[-115.11545516688402,50.57030496780322],[-115.11603981278986,50.56948928445416],[-115.12163682492258,50.569982309137565],[-115.12788941760216,50.57065948054931],[-115.13276197669569,50.57183967812583],[-115.13532575347696,50.57299306951647],[-115.137977017878,50.57319933706367],[-115.1419720146088,50.57134683412084],[-115.14650936654407,50.570142955206634],[-115.1503032473535,50.571175403742934],[-115.15252348566962,50.5719202011417],[-115.15606643413135,50.57157331748972],[-115.16053641575652,50.57023275009456],[-115.16523392905978,50.56865982781675],[-115.16840161559013,50.5678547821405],[-115.17172522066768,50.56746718182916],[-115.17275110879733,50.56541570965415],[-115.17419019641025,50.562307122247],[-115.17567376044666,50.558896094762815],[-115.17908012730382,50.55680639601186],[-115.18299268900073,50.55545705882544],[-115.1867235345084,50.55538909711365],[-115.18868144330769,50.55444122021241],[-115.18871643535816,50.55228863751586],[-115.18762252859014,50.54889775602472],[-115.18542271647831,50.54659552151951],[-115.18337842715258,50.544536836942584],[-115.1827509800698,50.54288002716109],[-115.18444068256966,50.54055949527654],[-115.1846260854912,50.53914370158975],[-115.18714410391695,50.53764857549877],[-115.1881075648124,50.53573123784264],[-115.1889184834836,50.5347397637681],[-115.19100351495824,50.53414809208112],[-115.19547145242514,50.53344489606164],[-115.1982940255298,50.533050298230826],[-115.20038445011096,50.53219879931443],[-115.20246936834637,50.53101494042096],[-115.2040955531525,50.52942428014238],[-115.2050314133851,50.527972290213214],[-115.20477135610909,50.52786673530255],[-115.20486079992514,50.52785106290326],[-115.20492181521891,50.527834872129624],[-115.20499691072747,50.52781949547299],[-115.20546223381584,50.527725269077685],[-115.20547698492751,50.52772330369147],[-115.20594248714278,50.52780578094077],[-115.20614168538171,50.52798604166045],[-115.20632921380098,50.52815550673976],[-115.20649122599335,50.528194081525115],[-115.20655855255734,50.52821089429304],[-115.20658604470778,50.52821529279419],[-115.206626147067,50.52822659700335],[-115.20701562444253,50.5283283280736],[-115.20705050216823,50.5283612819066],[-115.20709892465173,50.528397269646206],[-115.20739872848223,50.52863395425503],[-115.20741160465737,50.52863975873962],[-115.20772334940295,50.528886136386134],[-115.20792135305929,50.52907139320067],[-115.20811509143421,50.52933349521672],[-115.2081234141935,50.52935816993086],[-115.20815601560487,50.52940056297383],[-115.20816875923578,50.52940691793457],[-115.20818969067712,50.529438507049974],[-115.2083730991966,50.52968426337771],[-115.2084067746636,50.529722207375016],[-115.20842891071726,50.52974880578867],[-115.20843937660482,50.529764600315964],[-115.20844997750102,50.52977983539244],[-115.2086740290238,50.5300346745959],[-115.2087996021593,50.530165123263544],[-115.20890292437177,50.53032861814504],[-115.20903548320845,50.530489291215915],[-115.20905748715673,50.530516440049034],[-115.20920493186394,50.5306745964555],[-115.20932084541049,50.53078591993945],[-115.20935425465485,50.530824973618216],[-115.20936592534095,50.530835777389285],[-115.20938806465038,50.53086236669562],[-115.20947942912775,50.53095709086141],[-115.2096842590401,50.531054948962456],[-115.20973469636135,50.531082605845015],[-115.20976098638631,50.53109199419632],[-115.20978620508346,50.53110582262261],[-115.20984951972738,50.53113928364177],[-115.21001886275566,50.53138422321101],[-115.21011360009904,50.531524152237836],[-115.21020721842636,50.53190542115673],[-115.21021784211068,50.53197974112903],[-115.21033380519411,50.53220923355905],[-115.21035246184931,50.532250261769725],[-115.21037366396907,50.53228074034415],[-115.21051255081787,50.53247440643099],[-115.21055468768924,50.53253647351708],[-115.2105862223917,50.53258330576327],[-115.21059802881156,50.532593549931626],[-115.21060514939768,50.53262321501249],[-115.21079168749557,50.5329152817617],[-115.2108127552438,50.532946319677784],[-115.21120023226827,50.533293255726605],[-115.21125605230723,50.53335779643369],[-115.2115183712261,50.533631701384884],[-115.21155191731648,50.53367020369706],[-115.2115855962959,50.533708155426815],[-115.21181530891606,50.5339396766405],[-115.21184899046108,50.533977619397874],[-115.2118828048918,50.53401501157263],[-115.21196491903473,50.534088939676074],[-115.21216189180632,50.53427862784561],[-115.2125263114623,50.53460285071138],[-115.21265579029784,50.53471720341704],[-115.21285370703079,50.53490300069834],[-115.21299494450288,50.53490942709284],[-115.21306456069847,50.53491679614901],[-115.21313404195824,50.53492472461322],[-115.21338553924633,50.534947610043154],[-115.21347852915363,50.53503566142803],[-115.21351207796384,50.53507416308282],[-115.2135354256782,50.535095760758416],[-115.21354575964328,50.53511211415383],[-115.21370691945124,50.53527272847632],[-115.21366257723285,50.53539735701981],[-115.21361636254497,50.535529746811164],[-115.2139352834522,50.53574669379059],[-115.21427038056359,50.5358373940534],[-115.21432417401334,50.535851168944376],[-115.21455811343638,50.53588766905618],[-115.21478134362576,50.53596856970497],[-115.2148477467399,50.53598926682389],[-115.21491508806734,50.53600607437152],[-115.21528387512889,50.536134713270265],[-115.21535014592573,50.536155960658185],[-115.215390390342,50.53616671102333],[-115.21541668451121,50.536176097979144],[-115.21585294933193,50.53632099158734],[-115.21591814981184,50.53634667874319],[-115.2165131811888,50.53666217947622],[-115.21689247910834,50.53686569131786],[-115.21694292735702,50.53689334473437],[-115.21696828427997,50.536906620858986],[-115.21699364335937,50.53691988809727],[-115.21709494062779,50.536973534206275],[-115.21732343267335,50.53709186435643],[-115.21738783205723,50.53712088071736],[-115.21771953626963,50.53710728080166],[-115.21793950250802,50.53708332590872],[-115.21795332036758,50.5370852395612],[-115.21861926956038,50.537284375086614],[-115.21864747136912,50.5373450757485],[-115.21881287077582,50.537606650558494],[-115.21883408113801,50.537637127320195],[-115.21885194482829,50.537681483931934],[-115.21886981069493,50.537725831658115],[-115.21899309233666,50.53798442722565],[-115.21899700537344,50.5380274208507],[-115.21903016072407,50.538067581309434],[-115.21909409396436,50.53821698602177],[-115.2191859297445,50.53836911651154],[-115.21933845546786,50.53862488716266],[-115.21958700171544,50.53883777323802],[-115.21988399449182,50.53908664040383],[-115.21993270852298,50.539121503168246],[-115.21994518679057,50.53912897561779],[-115.2199823582689,50.53915248523122],[-115.22024365647954,50.539371732110155],[-115.22027828480086,50.53940579138285],[-115.2203151890565,50.53943041091127],[-115.22042456722613,50.53974672611897],[-115.22050690893306,50.539938265878895],[-115.22063944003172,50.54015855831629],[-115.22076397002397,50.54023434749166],[-115.22088488654842,50.540325126426865],[-115.22114452038768,50.54043285323027],[-115.22119470763036,50.54046161463254],[-115.22165006872804,50.5405867567396],[-115.22171741946354,50.540603560073826],[-115.2217836998664,50.54062480351205],[-115.22185118343533,50.540641056186516],[-115.22208174966553,50.540810139662646],[-115.22211678293529,50.54084252880792],[-115.22223466509209,50.54100515163928],[-115.22241919224594,50.54112827230648],[-115.22247377567473,50.54131652580825],[-115.22250536885464,50.54142242971084],[-115.22261415617754,50.54162279327151],[-115.22263202516922,50.54166714906029],[-115.22265096666001,50.541707055815976],[-115.22270658401214,50.54183178453815],[-115.22285113204265,50.54194304668643],[-115.22288482886314,50.541980985730035],[-115.22293341348723,50.54201640651566],[-115.2232190362979,50.54225335157708],[-115.22323138326324,50.54226137420799],[-115.22365502195146,50.542458967343855],[-115.22395114143892,50.54253389079066],[-115.22442315910871,50.54264928315318],[-115.22449158412604,50.542661644605694],[-115.2249098405059,50.542822349346665],[-115.224975323087,50.542846920947646],[-115.22502792322656,50.542865690167304],[-115.22544484795472,50.54303193418014],[-115.22570637875198,50.54313188856705],[-115.22615834441619,50.543330526636986],[-115.22623657854243,50.54336145026929],[-115.22655771249222,50.54351039436616],[-115.22662319697194,50.543534964976295],[-115.22664829513154,50.5435493399497],[-115.22667459595434,50.54355872415909],[-115.2270235059833,50.543710941394934],[-115.22708792107437,50.543739951904186],[-115.22715233624838,50.54376896237508],[-115.2272049383713,50.54378773054415],[-115.22745314798286,50.54400226720528],[-115.22758403121983,50.544111042109094],[-115.22768954775297,50.544384364257475],[-115.22774638705211,50.54450409040837],[-115.22788761359892,50.544807028769696],[-115.22790656106483,50.544846934477356],[-115.22791596740798,50.544867167060595],[-115.22792430388049,50.54489183982371],[-115.22802371723645,50.54507196466782],[-115.22804752229501,50.54515098255388],[-115.22807962108408,50.545195580146],[-115.22809843407983,50.54523604526481],[-115.22822584653886,50.5455370616739],[-115.22828295404317,50.545655686217636],[-115.22853252085784,50.54604247260595],[-115.2286180743841,50.54616159139769],[-115.22867402711266,50.54634429047549],[-115.22867781745366,50.546387833903424],[-115.22868749192487,50.54640695633845],[-115.22869596176494,50.54643107841505],[-115.22874977546658,50.54662265775293],[-115.22873172297453,50.546697581338705],[-115.22873497847942,50.54674334483533],[-115.22872962926053,50.546765545728924],[-115.2287245474977,50.54678663657701],[-115.22867716364047,50.5471018419236],[-115.22861702964899,50.54741068577273],[-115.22856340318393,50.547633245014374],[-115.22855604667517,50.54766377563861],[-115.2286811507288,50.54791513761213],[-115.22870477983808,50.54793562172114],[-115.22872359453959,50.54797608659908],[-115.22874240927487,50.54801655147193],[-115.22887633959881,50.548231290589285],[-115.22889555684664,50.548270085918936],[-115.22891330199627,50.54831499092013],[-115.2289215048503,50.548340222966466],[-115.2289322497064,50.548354905162775],[-115.22902819769946,50.5485494589045],[-115.22908812057211,50.54865642270958],[-115.22918308826407,50.548795773073756],[-115.22937703515328,50.54905783172177],[-115.22941052006024,50.54915597124239],[-115.22948565098436,50.549318380586385],[-115.22948039574715,50.549458749126714],[-115.22948365221212,50.54950451244739],[-115.22947723319811,50.54953115347321],[-115.2294869086837,50.54955027576551],[-115.22948245580302,50.5496873141387],[-115.22933185305226,50.54977885297035],[-115.22928116200241,50.549811399463316],[-115.22923073834635,50.54984283589025],[-115.22912868827846,50.54991069941801],[-115.22890180339327,50.55008170471778],[-115.22879868023107,50.550154016965266],[-115.22836140112042,50.55048683755995],[-115.22829381104066,50.55053023225153],[-115.2281085629704,50.55076551484729],[-115.22808537795927,50.550802453807705],[-115.22806727758027,50.550818293167566],[-115.22804743735522,50.55084135220814],[-115.2279251855074,50.55099302680816],[-115.22787480443706,50.551083546296965],[-115.22784921149292,50.55113047552421],[-115.22783231362041,50.55114132411484],[-115.22782923833412,50.55115408509524],[-115.22781020036915,50.551173813974515],[-115.22762686426697,50.551460409025104],[-115.22757728462808,50.55154759822106],[-115.2273741929034,50.55197541896919],[-115.22727070415026,50.55228628426913],[-115.22726013778274,50.55233012615789],[-115.22725398458172,50.55235565693018],[-115.22724970408994,50.55237341746675],[-115.2271958861588,50.55253745054721],[-115.22711705539504,50.5526274658041],[-115.22707897757911,50.552666923244416],[-115.22704210254706,50.552701389963346],[-115.2268851094433,50.552878640637466],[-115.22676628285657,50.55295679959152],[-115.22666488982394,50.55302188996314],[-115.22630764667008,50.55331877932751],[-115.22624972529678,50.55338129510615],[-115.22597148668113,50.55364670169734],[-115.22593461214015,50.55368115912781],[-115.22589666511357,50.55372006553862],[-115.22570911805974,50.55396477402379],[-115.22568499397784,50.554005592996546],[-115.22566260805115,50.55403920122371],[-115.22564677888204,50.55404560933426],[-115.22560040354826,50.55411947704714],[-115.22584407358416,50.55429379268775],[-115.22591764289851,50.5543441460523],[-115.22641840880493,50.55469636620025],[-115.2267473373959,50.554931834344046],[-115.22679687440679,50.55496337222231],[-115.22680829011344,50.554975274993026],[-115.22683232233945,50.554994098720435],[-115.22701491379044,50.55512553043997],[-115.22704960311891,50.555218670374906],[-115.22708144054216,50.55526437773734],[-115.22709191889821,50.5552801700169],[-115.22708870827334,50.555293490367184],[-115.22710025684655,50.55530484252877],[-115.22722675361895,50.555609745931285],[-115.22738161219162,50.55597478669052],[-115.22739984973391,50.55613618874983],[-115.22743333573283,50.55641212862279],[-115.22743873102421,50.55644901138834],[-115.22744198592024,50.55649477437933],[-115.22744818388055,50.55652832705561],[-115.227459732861,50.556539679162775],[-115.22749161421913,50.556822279050856],[-115.2274986149155,50.55685250162686],[-115.22751043154285,50.55686274369618],[-115.22751649475906,50.55689685580777],[-115.22767278810154,50.55719670272034],[-115.22778877019385,50.55742672933864],[-115.2279351230546,50.55770856346741],[-115.22807759729167,50.558006497151965],[-115.22811023821849,50.55804888286165],[-115.22810702769742,50.55806220319651],[-115.22812812127962,50.55809322799952],[-115.22824638317991,50.55831381421518],[-115.22825177936491,50.55835069685602],[-115.22825450014075,50.558398679772964],[-115.2282502194692,50.558416440217435],[-115.22825882617464,50.55844000252063],[-115.22831167306836,50.558754185723544],[-115.22838240615971,50.55929052268423],[-115.22855414189743,50.559585628509325],[-115.22857202386544,50.55962998237319],[-115.22858036342986,50.559654654643644],[-115.22859097817364,50.55966988724407],[-115.22874295952329,50.559928417864576],[-115.22876191410853,50.55996832269177],[-115.228769986301,50.55999410496476],[-115.22877966373402,50.560013227074954],[-115.22895153752833,50.560307781454284],[-115.22909090467705,50.560559390728216],[-115.22927415374251,50.56080676384569],[-115.2294923243081,50.56108708206402],[-115.22952510363251,50.56112890774618],[-115.22953317646989,50.561154689927335],[-115.22955881828939,50.56116685276151],[-115.22956608857444,50.561195965020595],[-115.22982136306325,50.56138162227023],[-115.22987104415097,50.56141259907846],[-115.22990556186957,50.561447213892954],[-115.23023348794702,50.56168710990615],[-115.23038026051537,50.56178947047509],[-115.23077642897105,50.562101915241435],[-115.23091865450553,50.56222315441687],[-115.2309660276373,50.56238228678641],[-115.23098418272961,50.5624255212027],[-115.2309882441563,50.562467953670755],[-115.231067243914,50.56273299356531],[-115.23108432925237,50.56278066806142],[-115.23108111927363,50.562793988405446],[-115.2314152632355,50.56306743275016],[-115.23156904526327,50.56320002255548],[-115.23155030197714,50.563574248784036],[-115.23153244601242,50.56388550250476],[-115.23152174625521,50.563929903633884],[-115.23151746634642,50.56394766408464],[-115.23152821577264,50.56396234575149],[-115.23152500584095,50.563975666089256],[-115.23150268514783,50.56424615678041],[-115.23150621223384,50.564290809191014],[-115.23149551235446,50.564335210295816],[-115.23147671839088,50.56465035325497],[-115.2314631889556,50.56500293773053],[-115.23144723792241,50.56518770474032],[-115.2314397478192,50.56521878547617],[-115.23147152761557,50.56550193181498],[-115.23147438493662,50.565549363663266],[-115.23149267447619,50.565592047257496],[-115.23151263496362,50.565864951921874],[-115.23151682988144,50.56590683362077],[-115.23152864979853,50.565917075150615],[-115.231520892124,50.56594926588991],[-115.23153169169653,50.56602303016745],[-115.23169294132659,50.56624325445752],[-115.23186601267373,50.5664737199421],[-115.23217288751745,50.56668257612554],[-115.2322835500174,50.566756988711596],[-115.23247093595107,50.5669280711633],[-115.23251741512884,50.566972366897716],[-115.2325532787185,50.56700142164474],[-115.2326009606705,50.56704072666134],[-115.23288241049873,50.56717723499591],[-115.23293397243819,50.567200440029254],[-115.23298339460898,50.56723252525607],[-115.23304878442289,50.56725764194755],[-115.23336302444473,50.56743597334472],[-115.23362784387126,50.567582218912264],[-115.2339556996572,50.56782266162246],[-115.23428369373953,50.56806254384184],[-115.2343182220872,50.568097148127706],[-115.23436684388146,50.56813256279288],[-115.23467026273353,50.56835585092731],[-115.23469698194985,50.56836356347167],[-115.2347336482389,50.56838929625783],[-115.2347453368884,50.56840008799002],[-115.23509131181422,50.56862467813269],[-115.23545919401714,50.568876968932535],[-115.23565114916535,50.56902916618578],[-115.23583114907676,50.56917168150465],[-115.23603909390653,50.56919820262152],[-115.23610983653009,50.56920111681597],[-115.23613615430718,50.5692104984952],[-115.23617830510194,50.56921347067972],[-115.23631724684503,50.56922985747636],[-115.23659045432731,50.569282042808375],[-115.23665905578419,50.56929384579874],[-115.23667274955389,50.56929631650709],[-115.23672752464773,50.569306199323286],[-115.23674135319327,50.569308110566276],[-115.23721175546183,50.56937213273198],[-115.23758563251356,50.56942163831174],[-115.23801808943573,50.569524557817175],[-115.23830031474164,50.569598639547],[-115.23839115129826,50.569696106132895],[-115.23842394515542,50.56973792875602],[-115.23845673907351,50.56977975136744],[-115.23850309233518,50.569824603907136],[-115.23873828290151,50.56997532679838],[-115.23878771225377,50.57000740933945],[-115.23881082285207,50.570030110826195],[-115.23883620488145,50.5700433814288],[-115.23889946325156,50.57007737489677],[-115.23901032366557,50.570329027502716],[-115.23906521964331,50.570457073810495],[-115.23915790237596,50.57078420867658],[-115.23919810841352,50.57085459172805],[-115.23934805180355,50.571121975764264],[-115.23936888976645,50.57115411686131],[-115.23940262236383,50.57119204955157],[-115.23943648761988,50.57122943165128],[-115.23966439613704,50.57146976504226],[-115.2396999984443,50.5714999362453],[-115.23973480092735,50.57153342866861],[-115.2400293147986,50.57179388308134],[-115.24007446978314,50.57184372558769],[-115.24005992531467,50.572319463142684],[-115.24005595227621,50.57263263462614],[-115.24004525884574,50.57267703610321],[-115.24005280510555,50.57270503723309],[-115.24004852772778,50.57272279782254],[-115.24004021632167,50.572994647596126],[-115.24002845343536,50.57304348919742],[-115.24003279168203,50.57308481075182],[-115.24002542783369,50.57323405602275],[-115.23997283348247,50.5733931004022],[-115.23985154439391,50.57371870012753],[-115.2396545118482,50.57388411323759],[-115.23935324730405,50.57412628602373],[-115.23930146663416,50.57416327625218],[-115.23926458335337,50.57419774612139],[-115.23899886146263,50.574410998161085],[-115.23896117562745,50.57444879801542],[-115.23891046376349,50.57448134792005],[-115.23860678476812,50.57473350879309],[-115.23855420063093,50.57477382873841],[-115.2378604911498,50.57498400525395],[-115.23741438358896,50.57511549378661],[-115.237353183273,50.575132252029285],[-115.23730768306376,50.575143160088615],[-115.23729118065569,50.57515234031884],[-115.2371835450621,50.57518388715462],[-115.23687261502603,50.57516949388602],[-115.23682938888892,50.57517096208913],[-115.23680186297514,50.575166580197546],[-115.23673097828687,50.57516421703683],[-115.23623572280337,50.57514378412183],[-115.23588143242138,50.5751314154919],[-115.23538778247618,50.575104318661765],[-115.23490622155529,50.57508635955753],[-115.2348356045716,50.57508288516823],[-115.23476485492853,50.575079961304475],[-115.23434008335235,50.575063553838106],[-115.23431229025502,50.575060281350325],[-115.23427040160212,50.57505619846037],[-115.23419871473773,50.5750571637461],[-115.23390228440213,50.57504190311292],[-115.23371667446821,50.57510049264853],[-115.23328130634395,50.575246645851394],[-115.23297007789435,50.57535207510735],[-115.2329535745253,50.575361254692055],[-115.23286695695569,50.575483461993315],[-115.23274679470049,50.57562625722485],[-115.23270870236723,50.57566571548943],[-115.23268778342853,50.575693214722165],[-115.23266967252155,50.57570906323191],[-115.2324705154557,50.57594242527922],[-115.23243255531426,50.57598133286709],[-115.23242747198843,50.57600242313543],[-115.23240856037332,50.576021592758856],[-115.23215640652991,50.57629694055887],[-115.23179804471017,50.576716442973854],[-115.23173068612992,50.57675872835908],[-115.23134151626783,50.5769502792],[-115.23129199910551,50.57697783492902],[-115.23126019351635,50.57699120295747],[-115.2312265127136,50.577012349925745],[-115.23116223140609,50.57704186539887],[-115.23083429749468,50.57709794534632],[-115.23076153694085,50.577103348451196],[-115.23070046631324,50.5771195435514],[-115.2302250038072,50.57719474830485],[-115.22960174192342,50.577290195250086],[-115.22939300750598,50.57732607421898],[-115.22885726971866,50.5774141463209],[-115.22886467706441,50.577442698609985],[-115.22887542884772,50.577457380292664],[-115.22898303973756,50.57772236067104],[-115.22900186713747,50.57776282403737],[-115.22901034304508,50.577786945170814],[-115.22901868621314,50.57781161686471],[-115.22913156531945,50.57811402926592],[-115.22916007451505,50.57817361424364],[-115.2294090731248,50.57862279513411],[-115.22942683075065,50.57866769839755],[-115.22944258009171,50.57872093112024],[-115.22945966977724,50.57876860494104],[-115.22946480177475,50.57880659661055],[-115.22956091116083,50.579119306117924],[-115.22957331647885,50.57918640938975],[-115.22970525884487,50.57964689667132],[-115.22974131079485,50.57973448298161],[-115.22984660881947,50.579949819608025],[-115.22987953709341,50.57999108478735],[-115.2298854724752,50.58002574637356],[-115.22989622520836,50.580040427911634],[-115.23003552384175,50.580292589419585],[-115.23005435326262,50.580333052481976],[-115.2300640356135,50.58035217400863],[-115.2300722449501,50.58037740498809],[-115.23017161252115,50.580558070707056],[-115.23027588284243,50.58065912409575],[-115.23061220905912,50.580983325924656],[-115.23067757977142,50.58112716616646],[-115.2308181402314,50.581433408454444],[-115.23083603310874,50.58147776077878],[-115.2308562018205,50.58151267363311],[-115.23111846896093,50.58172910422485],[-115.2311672378367,50.58176396026108],[-115.2312156043057,50.58180048571959],[-115.23132202069574,50.581892657950256],[-115.2315289178609,50.58204234066343],[-115.23187797526796,50.58231380852207],[-115.23191921825865,50.582498466701686],[-115.23198661935389,50.582811780227935],[-115.231990816292,50.58285366104837],[-115.23200884575714,50.58289745366608],[-115.2320584860127,50.5831658643931],[-115.23206161480968,50.58321217632698],[-115.23207022825103,50.58323573762648],[-115.23226719963259,50.58354521107455],[-115.23242142556802,50.583794840277506],[-115.23257337764747,50.58405390866245],[-115.2326532599293,50.584196888365426],[-115.23277771571674,50.58433285137159],[-115.23282541622373,50.584372155466305],[-115.23282314283362,50.584381586058655],[-115.23284625780377,50.584404288388484],[-115.23285915321235,50.58441008953213],[-115.23305001231405,50.584626369176846],[-115.23307526815641,50.58464019142053],[-115.23312283653021,50.584680045935215],[-115.23315750945082,50.5847140993223],[-115.23345501479103,50.58496235692901],[-115.23355108839965,50.58503818500439],[-115.23400361531822,50.58535494361226],[-115.23401316771714,50.58537461524189],[-115.23424197481297,50.585670706840766],[-115.23426495631259,50.58569396828336],[-115.2342778522735,50.58569976925365],[-115.23429869550513,50.585731901852235],[-115.23451428905214,50.5859642205897],[-115.23454668876313,50.586007712979445],[-115.23456913763192,50.58603318548109],[-115.23457935822739,50.586050086471566],[-115.234713375698,50.58620572744953],[-115.23479768418633,50.58633038570746],[-115.23493175739947,50.58654510754562],[-115.2351986761299,50.58680173826779],[-115.23522406869232,50.58681500054446],[-115.23546252232795,50.587071128905535],[-115.23549719886063,50.58710518146547],[-115.23553093800925,50.58714312347623],[-115.2357461444523,50.58737710000114],[-115.23579398561198,50.587415843235966],[-115.23580313686823,50.58743718411317],[-115.23607841473145,50.58771848333829],[-115.23614830482245,50.58778436799442],[-115.23660481184191,50.58814410537998],[-115.23673905567453,50.58823954358818],[-115.23688544918903,50.588403202219936],[-115.23688858331683,50.58844951372471],[-115.23689827031713,50.58846863446915],[-115.23689185013492,50.58849527466278],[-115.23691288596706,50.588585937128315],[-115.23704892641798,50.58873324531935],[-115.23709636781408,50.58877365738302],[-115.23711988952117,50.588794689252715],[-115.23713011170155,50.58881158995263],[-115.2371533638009,50.58883374070246],[-115.23736871944168,50.589067163049016],[-115.23737920927663,50.589082953712094],[-115.23754372250667,50.589230762295244],[-115.2379373911455,50.58943610933378],[-115.23799326097236,50.58944155124889],[-115.23839510790273,50.58949432441792],[-115.23845632735994,50.58947756589373],[-115.23847203449891,50.589471706801525],[-115.2385026442035,50.589463327522324],[-115.23853539368007,50.58944606814887],[-115.2385966130194,50.589429309546595],[-115.23879905261461,50.5893604137054],[-115.23899199566576,50.58933092735666],[-115.23900797014431,50.58932395817588],[-115.23905308201864,50.58931471906701],[-115.23912612877528,50.58930820061007],[-115.23915633599205,50.58930149060801],[-115.2394768598921,50.589276467343666],[-115.2396131903177,50.589303949759255],[-115.23995288424499,50.58937735708424],[-115.24031569848202,50.589473472886226],[-115.24040311506268,50.58946664431326],[-115.24065005572302,50.5894503658805],[-115.24090428052881,50.589463188540094],[-115.24097492054341,50.589466659018925],[-115.24104663021319,50.589465689386024],[-115.24146840124088,50.589435759655856],[-115.24152534109055,50.58943675972765],[-115.24154024561973,50.58943423025611],[-115.2416130248132,50.58942882018659],[-115.24165733407072,50.58942291007825],[-115.24208966706419,50.589349127829166],[-115.24211920647643,50.58934518763208],[-115.24290921783862,50.58921079896621],[-115.24338679014578,50.58912722039967],[-115.24340169446782,50.58912469067802],[-115.24344693784587,50.589114899215424],[-115.24352198982018,50.589100048260754],[-115.24377494359378,50.589058782928554],[-115.24392477761305,50.58903019942853],[-115.24395418191762,50.58902681819534],[-115.24399969455133,50.58901590760251],[-115.2440585052648,50.58900913620845],[-115.24435803768984,50.588952527692015],[-115.24453847919332,50.58891556245961],[-115.24498864713945,50.58882702874689],[-115.24536750576897,50.58885652653312],[-115.24563422488743,50.58887680754675],[-115.24583371540164,50.58893882176109],[-115.24590007836134,50.58896004957993],[-115.24594010999715,50.58897189822874],[-115.24596751053085,50.58897683724198],[-115.2461131351901,50.58902509225428],[-115.2463398929579,50.589092603975466],[-115.24640759276679,50.58910828133833],[-115.24647288714611,50.589133948931725],[-115.24692667280306,50.58926786039253],[-115.2473135623391,50.589382763121016],[-115.24770379336978,50.589483793520834],[-115.24802873233233,50.58955914703192],[-115.24816587054372,50.589583288866415],[-115.24823450811664,50.58959507555137],[-115.24824794146409,50.58959865480845],[-115.2483019421083,50.58961186178672],[-115.24845385014977,50.58963403234409],[-115.2486742011127,50.589728180081615],[-115.24874083379896,50.58974829615254],[-115.24880532877283,50.589777292462514],[-115.24884509467971,50.58979025009015],[-115.24920800626774,50.58994540891359],[-115.24954685774024,50.590081757391886],[-115.2498527721269,50.590295558448155],[-115.25018395381736,50.59052317687244],[-115.25023261232195,50.59055858364361],[-115.25024524454382,50.5905654927675],[-115.2502812709031,50.590593990391966],[-115.25035599564342,50.59063988522824],[-115.25056085884233,50.59079841128152],[-115.25059434627448,50.590837458595225],[-115.25064314010183,50.59087230571446],[-115.25082447607943,50.59100980228263],[-115.25092561085754,50.59112415550427],[-115.25097226784177,50.59116788277253],[-115.25110956332627,50.591310182590895],[-115.2512352978778,50.59144112417817],[-115.25133643466903,50.59155547696706],[-115.25137125918262,50.591588973818546],[-115.25150749068465,50.59173570434744],[-115.25166984656971,50.59183329110742],[-115.2517205103066,50.59186037631993],[-115.25178394158449,50.591893810986996],[-115.2520832580226,50.59207571619401],[-115.25214695702645,50.592108040605886],[-115.25219748885245,50.59213567617212],[-115.25228498360362,50.59218792793605],[-115.25251285712082,50.59236969875104],[-115.25274193354436,50.59254647831703],[-115.25305543758078,50.592788269525585],[-115.25323465160062,50.592934642177546],[-115.25338344827888,50.593029198237495],[-115.25343318051787,50.5930601633368],[-115.25344581393327,50.59306707207666],[-115.25348398132859,50.59308668824584],[-115.25378023962855,50.59328135854621],[-115.25383077377495,50.593308993332116],[-115.25385510488982,50.59332670030435],[-115.25388050663092,50.593339958221165],[-115.25424153932585,50.593562510392864],[-115.25426693917704,50.59357577709812],[-115.2547531387822,50.593991125355714],[-115.25480287302665,50.5940220898073],[-115.25503311578586,50.59425350474687],[-115.2550668789001,50.59429143162828],[-115.2550877388171,50.5943235688803],[-115.25510050745622,50.59432991795996],[-115.25533182167675,50.59455689202133],[-115.2553653160453,50.59459593772281],[-115.25538671262932,50.594625845938424],[-115.25539801134538,50.59463830466479],[-115.25558413334079,50.59481544321763],[-115.25563261499217,50.59491103805563],[-115.25569474629981,50.59506874116928],[-115.25587991545126,50.595428111493426],[-115.25592305678913,50.59554590701771],[-115.2560212240987,50.59573210543886],[-115.25604048502996,50.59577089384149],[-115.25604857927203,50.59579667301533],[-115.25605814138702,50.59581635138469],[-115.25618286414633,50.596070447280795],[-115.25621235636997,50.59612613443767],[-115.25623134842171,50.59616604171323],[-115.25669540137082,50.596079379086056],[-115.25718912957964,50.59598821088944],[-115.25751716614732,50.595932063468645],[-115.25799611993362,50.5958428638045],[-115.25801169216633,50.59583756146591],[-115.25805707369636,50.595827204681854],[-115.25813092935107,50.595817343661935],[-115.25832495550205,50.59578338384767],[-115.25852663026119,50.595836494405866],[-115.25859407744416,50.595853274281545],[-115.25866179169199,50.595868944065586],[-115.25911861857425,50.59599059419605],[-115.25989818417746,50.596197000587644],[-115.2599383583607,50.59620829351373],[-115.26031292744246,50.59637476312521],[-115.26037743936922,50.59640375250006],[-115.2604290489705,50.59642694397232],[-115.26076344480754,50.59658212816114],[-115.26082795732181,50.5966111172678],[-115.26084152617992,50.596614144388155],[-115.2608783649852,50.596639308211834],[-115.26103493184807,50.596701662041156],[-115.26104409696241,50.59672300060309],[-115.26129631966144,50.59680374633863],[-115.2619811416292,50.59704750493051],[-115.26203382054942,50.59706625541404],[-115.26249066870199,50.59718789153619],[-115.26255825391945,50.597204109514536],[-115.26258486051177,50.59721237456313],[-115.26262490388099,50.59722421709503],[-115.26301416961597,50.59732963311143],[-115.26308175523498,50.59734585076926],[-115.26314840564038,50.59736595803305],[-115.26360419223934,50.59749202977936],[-115.26400596651662,50.59760490043306],[-115.26440355382822,50.597616259827745],[-115.26489933626222,50.59763545679875],[-115.26494378504232,50.59762897801113],[-115.26497332788718,50.59762503179079],[-115.26504505003682,50.59762404671239],[-115.26546701604161,50.59759346690477],[-115.26551026277981,50.597591987620945],[-115.26553967105573,50.59758860072262],[-115.26561259504224,50.59758261554776],[-115.26575697208177,50.59757676373371],[-115.26609898248624,50.59752193924041],[-115.26633719157142,50.59748259633553],[-115.2669288052762,50.59745997267411],[-115.26704297322664,50.5974608366617],[-115.26742885812557,50.59746138841821],[-115.26749964507233,50.597464291441646],[-115.26757136691042,50.597463304736124],[-115.26799889760645,50.59746903483456],[-115.2680563817914,50.59746780118832],[-115.26809989511487,50.597465210827835],[-115.26845426345061,50.59765638721665],[-115.26850507830332,50.597682905125424],[-115.26890323051882,50.59787037942953],[-115.26918498325989,50.5980067908477],[-115.26937800992746,50.59809596341319],[-115.26956676921107,50.59820289680944],[-115.26963035499976,50.59823577045726],[-115.26967983741491,50.59826783817886],[-115.26980661250356,50.59833523709239],[-115.2700302517327,50.59841602069056],[-115.27008293560873,50.598434767335576],[-115.2701221817974,50.59844993737718],[-115.27014852376894,50.59845931068076],[-115.27023898584916,50.59849933711879],[-115.27058330018512,50.598613418677694],[-115.27071407860988,50.59866416540177],[-115.2710898744065,50.59888524712022],[-115.271230091315,50.598956220822345],[-115.27162906629275,50.599140354864986],[-115.27169438961208,50.599166007355855],[-115.27171979777121,50.59917926999022],[-115.27174520807903,50.59919252373797],[-115.27181053154031,50.59921817615919],[-115.27207672974389,50.59935988428515],[-115.27212621513866,50.599391950876324],[-115.27215255807913,50.59940132369528],[-115.272190739001,50.59942093330211],[-115.27251999603347,50.599597732585536],[-115.27283648509874,50.59976817497478],[-115.27290007762159,50.59980103781298],[-115.27326312296832,50.60001575601975],[-115.27331380891376,50.60004283113911],[-115.2733255150366,50.60005361840459],[-115.27336329594122,50.60007489715423],[-115.27361246656889,50.60022800691853],[-115.27367592590655,50.600261428776],[-115.27372648010923,50.600289054299466],[-115.27375055615825,50.60030786685526],[-115.27377730104207,50.60031556971842],[-115.2741402203295,50.600530844413186],[-115.27419090951624,50.60055791023597],[-115.2747831986779,50.60088972574185],[-115.27514719609782,50.60110054779769],[-115.27519668559512,50.601132612957265],[-115.27524750834712,50.60115912767836],[-115.27556095141445,50.60134233239718],[-115.27561150798894,50.60136995702902],[-115.2756498264694,50.60138900592126],[-115.27567603693271,50.60139893736644],[-115.27592655587428,50.601546491291266],[-115.275946609968,50.60164158527609],[-115.27598384316448,50.60202233434647],[-115.27600200494584,50.60218483836347],[-115.27600744553553,50.60222171672062],[-115.27608558151246,50.60249170278355],[-115.27610472825536,50.60253104687999],[-115.27612187642134,50.60257871215545],[-115.27620201231284,50.60284037683909],[-115.27621916069978,50.60288804208176],[-115.27622753440639,50.60291270948347],[-115.27622300181335,50.6029315808951],[-115.27624121461655,50.60297481467797],[-115.27644006936274,50.603218453209905],[-115.27675796720719,50.60362132259526],[-115.27682567641513,50.603696611710554],[-115.27704435115336,50.60397682208483],[-115.27707787137578,50.60401586081031],[-115.27709822043877,50.604050204847404],[-115.27711086057325,50.604057110810594],[-115.27729654923635,50.60429607058157],[-115.2773292722355,50.60433843058689],[-115.27736332618187,50.60437524904203],[-115.27753771227711,50.6046017430914],[-115.27759584871052,50.604657364216436],[-115.27779205013437,50.60491210955776],[-115.27798148037901,50.605135517886694],[-115.27821387635228,50.60541819099466],[-115.27824766525166,50.60545611921594],[-115.27828145634066,50.60549403854453],[-115.27844614088714,50.605701423004305],[-115.27846622517252,50.60573687680616],[-115.27849908254659,50.60577868579228],[-115.27853300631512,50.60581605442792],[-115.27866934672632,50.60602238843449],[-115.2787517019887,50.60609626073443],[-115.27920871548778,50.606515445755676],[-115.27924703774129,50.60653450217292],[-115.27956158136868,50.60677288440751],[-115.27961014834905,50.60680882824676],[-115.2796472725605,50.6068328754658],[-115.27965991386804,50.60683978111663],[-115.27998950223845,50.60707507693092],[-115.28000081089354,50.60708753297336],[-115.28003793554377,50.60711158005413],[-115.28036939371209,50.60733910406368],[-115.2806029204767,50.60749806172161],[-115.28103355553174,50.607669888636956],[-115.28138394614612,50.60781859322927],[-115.2814484880578,50.60784756999703],[-115.28149798946829,50.60787963209593],[-115.28154962311982,50.60790281345865],[-115.28176413724235,50.608021866191244],[-115.28186234142345,50.60808932034051],[-115.28191210990848,50.608120272156434],[-115.28196281018982,50.608147343075025],[-115.28209599347497,50.608307354312814],[-115.28217940648831,50.608436422579935],[-115.28225855798927,50.60858324332248],[-115.28286641634253,50.608553009472956],[-115.28289583260808,50.60854960915584],[-115.28335581598918,50.60853967777429],[-115.28337072236083,50.6085371516431],[-115.28342768730822,50.60853813026476],[-115.28350049235728,50.608532692943115],[-115.28382977393517,50.60853109918832],[-115.28392055069033,50.60851036487854],[-115.28398044672946,50.60849913218365],[-115.28405538335201,50.60848481374599],[-115.2841144799394,50.60847691126174],[-115.28430948786291,50.60837938674261],[-115.28449742217316,50.60837090515317],[-115.28465793769367,50.60835750275795],[-115.28495752324909,50.608420046733094],[-115.28528997319646,50.608524405623186],[-115.2857427378061,50.608663706229976],[-115.28579650591361,50.60867800481742],[-115.28587702599499,50.608700003258335],[-115.28622734241945,50.60867034368408],[-115.28628404118861,50.60867243094413],[-115.28635578048096,50.60867143215504],[-115.28642658628537,50.608674323109184],[-115.2866111903519,50.60867971864405],[-115.28670964759212,50.60886532755747],[-115.28689378928348,50.60923019079994],[-115.2870659978617,50.609346839789524],[-115.28738046832459,50.60958575862741],[-115.28742917671634,50.609621148325616],[-115.28746724084301,50.60964130306363],[-115.2877776154351,50.60971852368427],[-115.28788090401885,50.60970524149168],[-115.28789554414726,50.6097038248604],[-115.28792522715966,50.6096993131181],[-115.28795464166134,50.60969592035054],[-115.28802864777619,50.609685480177504],[-115.28824906345491,50.60966083774106],[-115.2885078022848,50.60971486923859],[-115.28863011716619,50.609741487462],[-115.28903670776029,50.60995411280815],[-115.28918989749201,50.610030857404844],[-115.289446366171,50.61015396596821],[-115.28953925976849,50.610243615273774],[-115.28958783846767,50.610279554612276],[-115.28963681568314,50.61031383321061],[-115.28988568996564,50.61052821318844],[-115.2899344013487,50.61056360175117],[-115.28996900511332,50.61059818698391],[-115.29028083650996,50.6108481983275],[-115.29055979402092,50.61111603356433],[-115.29076049899761,50.61129279403143],[-115.29091608651359,50.61141918402272],[-115.29109310743264,50.61151584455922],[-115.29115659567962,50.61154925600122],[-115.29118308179096,50.61155807356818],[-115.29120743960605,50.61157576310634],[-115.29153912492716,50.61174306321824],[-115.29158863781592,50.61177512068237],[-115.29163921595683,50.61180273769119],[-115.29202028379491,50.612002653230164],[-115.29244088915335,50.61221661035176],[-115.29258250406788,50.612401283047184],[-115.2928013192692,50.61268145954293],[-115.29283539432473,50.61271826401626],[-115.2928678696817,50.612761738016474],[-115.29302013719634,50.61296163551453],[-115.29305314757289,50.61300288034771],[-115.29307297823314,50.613039450194194],[-115.29309414239084,50.613070460605556],[-115.29310492364819,50.61308513544718],[-115.29330777083356,50.613372287455114],[-115.29350223755424,50.613634764331266],[-115.29355653880525,50.61388537582718],[-115.29361057146168,50.6141967359822],[-115.2936289397329,50.614239406838934],[-115.29363639425246,50.61426795353677],[-115.29363319912332,50.61428127485075],[-115.29366181379802,50.61440047932086],[-115.29374127953163,50.61454618073968],[-115.29376018058858,50.61458663133815],[-115.29376843189733,50.61461185656808],[-115.2937790816795,50.61462708193149],[-115.29394972590158,50.61492928710596],[-115.2940893595332,50.61518190836128],[-115.29405367868365,50.615449931245195],[-115.29403530164913,50.615765065176674],[-115.29402465125067,50.61580946951372],[-115.29401932604354,50.61583167168086],[-115.29402904322326,50.61585078681755],[-115.29401772341237,50.616017239025844],[-115.29405046832916,50.616119232033626],[-115.29406750649649,50.616167453259266],[-115.29407815674824,50.616182678565586],[-115.29408654272368,50.61620734422911],[-115.29421366476903,50.61651214887891],[-115.29422311591874,50.61653237409091],[-115.29444555388626,50.61703609112871],[-115.29449001403232,50.61714887758518],[-115.29448615116935,50.617343876115854],[-115.2944894786834,50.6173896337549],[-115.2944797613188,50.61743014823254],[-115.2944717706258,50.617701987315534],[-115.29447509815171,50.61774774493535],[-115.29446444771796,50.617792149208476],[-115.29446884028816,50.617833466396554],[-115.2946381715924,50.61808158151443],[-115.29470393450154,50.618165188689964],[-115.29479073000303,50.61851890083755],[-115.2947973858315,50.618610415965584],[-115.29478180876765,50.618854258835945],[-115.29479432234307,50.61892135159461],[-115.29481162862895,50.61896846243801],[-115.29480936435766,50.61897790277973],[-115.29481455613974,50.619015889577355],[-115.2948648773007,50.619283150398665],[-115.29486900412418,50.619325577602616],[-115.29487646027381,50.61935412404295],[-115.29487220010918,50.61937188573363],[-115.29489230220706,50.61946697426347],[-115.29495606942338,50.61967817902277],[-115.29501970517373,50.619889934304396],[-115.29523431189294,50.62018786517745],[-115.29535173548041,50.62035427573809],[-115.29533389575353,50.62048829100154],[-115.2953245767992,50.62052714468463],[-115.2953204508936,50.62054434687451],[-115.29531299571283,50.620575429818096],[-115.2952763842356,50.62072807368996],[-115.29526373726222,50.62084043740091],[-115.2952670658261,50.6208861948244],[-115.29527784966602,50.6209008693179],[-115.29527345744863,50.62091918160281],[-115.29527026233187,50.62093250285723],[-115.29527691949329,50.6210240176912],[-115.29532578081576,50.62123774952958],[-115.29537131388743,50.6214057239024],[-115.29539461307093,50.62148749086102],[-115.2954022024164,50.62169439205468],[-115.29542483721815,50.62177892979741],[-115.29544068138156,50.621891779611225],[-115.29553893772537,50.622078487873914],[-115.29557088993596,50.62212418080424],[-115.295589930018,50.62216407123162],[-115.29566209232914,50.6223999402689],[-115.29570096973481,50.62241676157317],[-115.29576767187199,50.62243684870703],[-115.29579403323656,50.62244621567383],[-115.295819329591,50.62246002304938],[-115.29613406949338,50.62257908670826],[-115.2960869405314,50.62265630795568],[-115.29585382164355,50.62297223422857],[-115.2957538360977,50.62315054803551],[-115.29560978415316,50.62345294118276],[-115.29558568625004,50.62349377186218],[-115.29556145410406,50.62353516202565],[-115.29548756237611,50.62366431460719],[-115.295455211464,50.6237991874712],[-115.29544469263614,50.62384304090514],[-115.29543430798948,50.6238863348448],[-115.29534510635334,50.6241985806228],[-115.2953218066447,50.62423608090772],[-115.29504913058466,50.62465722124066],[-115.29502583039155,50.62469472144299],[-115.29492290825549,50.62500451209871],[-115.29489867681576,50.62504589316218],[-115.29488829136565,50.625089186988475],[-115.2948177235816,50.62526409607907],[-115.29496445023537,50.62524876632716],[-115.29502250176938,50.62524529860785],[-115.29503714673189,50.62524388106461],[-115.29509626341245,50.625235972913956],[-115.295595426962,50.625182624169426],[-115.2958593208948,50.62515591671111],[-115.29643237584517,50.62509268735338],[-115.29691702343969,50.62504019979658],[-115.29697507455388,50.62503673105927],[-115.29699065229758,50.62503142345762],[-115.29704963417028,50.62502407376075],[-115.29747503022104,50.624980052454234],[-115.297534014077,50.62497269361972],[-115.29760790892992,50.624962806767634],[-115.29782852841235,50.62493758633786],[-115.29808722434937,50.62487288720786],[-115.2988562484856,50.62464857059082],[-115.29930240141279,50.62451795384343],[-115.29936364582845,50.62450116254703],[-115.29943966892792,50.6244823935982],[-115.29962433227962,50.62442813843303],[-115.29980794532958,50.62449758147044],[-115.29987358771791,50.624522106538656],[-115.29988597093616,50.62453011985774],[-115.29994029484153,50.62454219112411],[-115.30035838545322,50.624707587221515],[-115.30043760845439,50.624735134152616],[-115.30080525362756,50.62499162333874],[-115.30100710737709,50.62504466397435],[-115.30118020443848,50.62509832072203],[-115.30134399450907,50.62525046902537],[-115.30139153218586,50.62529085190166],[-115.30142748676295,50.62531988239611],[-115.30150885021703,50.62539817660635],[-115.30176770339872,50.62551181412466],[-115.30180911290718,50.62551809159327],[-115.30185012217586,50.62552603865802],[-115.30187741911652,50.62553151431113],[-115.30208127351266,50.6255762226704],[-115.30235235958811,50.625579164589006],[-115.30272423941553,50.62557935180756],[-115.30320224240961,50.625614227685325],[-115.30325710069566,50.625624077084716],[-115.30369848410591,50.625632691792596],[-115.3037702500658,50.62563168180934],[-115.30382723710915,50.625632649979465],[-115.30384095171824,50.62563511225484],[-115.30426848661571,50.625641821929435],[-115.30433932241829,50.62564469255838],[-115.3044100241346,50.625648122642744],[-115.304595764262,50.62564904778459],[-115.3048744605738,50.62573960746342],[-115.30494010753813,50.6257641295107],[-115.3051915222601,50.62590884241422],[-115.30552961612385,50.626050014576485],[-115.30554027259677,50.62606523860625],[-115.30583404708783,50.62627197398736],[-115.3058709353578,50.626297122025285],[-115.30592047448711,50.6263291725587],[-115.30593339133763,50.62633496494276],[-115.30597120974797,50.626356231956414],[-115.30624607078235,50.62652251823491],[-115.30628389162644,50.626543776256696],[-115.30634847645453,50.62657273794391],[-115.30636019527846,50.62658353027289],[-115.3063982822465,50.62660367813083],[-115.30677967518463,50.62680298012416],[-115.30723618077037,50.62704702528014],[-115.30744192473844,50.62714359060111],[-115.30784129802987,50.62732758865622],[-115.30789296758874,50.627350757265255],[-115.3079194684161,50.62735956180464],[-115.30795755461222,50.62737971799195],[-115.30798272554827,50.62739407314697],[-115.3081509182749,50.62746826069065],[-115.30821033652528,50.62757850198519],[-115.3082283240831,50.62762283937841],[-115.30823778387126,50.62764306313129],[-115.3082473777215,50.62766272737911],[-115.30825683752664,50.62768295112953],[-115.30857806618933,50.627894602321355],[-115.308650784618,50.62794933697822],[-115.30868913761162,50.62796838277409],[-115.30898842937748,50.628271613732956],[-115.30901268669116,50.62834949616332],[-115.30914021232748,50.62865316032359],[-115.30915700546264,50.62870248864204],[-115.30916420414691,50.628732152812645],[-115.30919651820157,50.629015255081455],[-115.30920092540462,50.629056571131116],[-115.30920519856986,50.62909844668252],[-115.30922353113326,50.62938019734144],[-115.30921528620112,50.62941461126457],[-115.30910578415431,50.629692528873996],[-115.30901784213619,50.62994016365333],[-115.3089055458824,50.63022973276251],[-115.30887452152838,50.63023980060654],[-115.30882499535203,50.63026738015519],[-115.30879011528823,50.630293540338926],[-115.30877453711453,50.630298849556475],[-115.30847298209933,50.63048267434489],[-115.30842132747446,50.6305191346924],[-115.30838963889448,50.63053197326533],[-115.30835595427997,50.630553142191786],[-115.30806799867193,50.63079960673286],[-115.30783089762917,50.6310129407932],[-115.30769528011287,50.63128038234369],[-115.30753849581376,50.63157644519393],[-115.30751307428545,50.63162282865183],[-115.3075090839713,50.6316394804444],[-115.30750389549438,50.631661132214454],[-115.30745744266171,50.63173557768932],[-115.30748427598462,50.631981812819646],[-115.30747576322011,50.63201733662574],[-115.3074995561986,50.632335962063074],[-115.30754285138195,50.63287171758982],[-115.30753768044003,50.63295299775625],[-115.30736075459937,50.63315397508858],[-115.30732281098042,50.63319290550936],[-115.30730457127574,50.63320931567249],[-115.30728460338804,50.63323293715132],[-115.30714575127917,50.633394433060396],[-115.30715456278288,50.633477064885774],[-115.30714392114561,50.63352146953189],[-115.30715684022003,50.63352726172427],[-115.30714699669738,50.63356833601975],[-115.30717291437954,50.63387808889043],[-115.30760452017157,50.634345746843564],[-115.30788786717967,50.63465595707747],[-115.30789865844147,50.634670630106946],[-115.30790506129118,50.634703615614704],[-115.30798543940551,50.63496524730343],[-115.30800369785389,50.635008465343226],[-115.30802182225897,50.635052242876235],[-115.30811966229435,50.635360422722066],[-115.30813645681509,50.63540975079774],[-115.30871573760575,50.635738910210016],[-115.3087271955,50.63575080340743],[-115.30903050983265,50.635977751470364],[-115.3090792638569,50.636013130579386],[-115.30909191788876,50.636020032647664],[-115.30910337382613,50.63603193468327],[-115.30912908198643,50.63604406919575],[-115.30928759876859,50.63615877797871],[-115.30939536781578,50.636246429026436],[-115.3094438564178,50.63628291808251],[-115.30946823481243,50.63630060310254],[-115.30949274516213,50.63631773749839],[-115.30961409913921,50.636408409363774],[-115.30977476702496,50.63657386462744],[-115.3099590169563,50.63676033488515],[-115.31023838439734,50.637027561887145],[-115.3102711622545,50.637069910544966],[-115.31023582649173,50.637336821445416],[-115.31022518698425,50.63738122618028],[-115.31021986722264,50.63740342854651],[-115.31021454745576,50.63742563091191],[-115.31021164066317,50.63749747919506],[-115.3100165814597,50.637654682610446],[-115.30997863846996,50.63769360484452],[-115.30996079583936,50.63770835461834],[-115.30994082734905,50.6377319764457],[-115.30963818366988,50.63797987128452],[-115.30943899612062,50.638154284835515],[-115.30895676961624,50.63825590354431],[-115.30848812559489,50.638360541317574],[-115.30841394507507,50.63837154533778],[-115.30835295118447,50.63838723121606],[-115.30820206147213,50.63841978953216],[-115.30793169573745,50.63841353155349],[-115.307902129865,50.638417488974696],[-115.3078608395861,50.638410663251896],[-115.30778905331837,50.638411675853874],[-115.30729067444958,50.63840155162818],[-115.30645147248705,50.638380633856904],[-115.3059538904328,50.63836718221127],[-115.30589688720116,50.63836621514344],[-115.3058822383065,50.63836763409146],[-115.30581151647407,50.63836420499338],[-115.30538385822672,50.63835751022127],[-115.30531420090813,50.63834964038562],[-115.30524228268662,50.63835120195981],[-115.30521391308253,50.63835016763549],[-115.30474817495832,50.63838294160383],[-115.30435568520807,50.63840860215532],[-115.30390353023314,50.638444394256986],[-115.30340955255221,50.6384755773535],[-115.30335068608866,50.63848237968798],[-115.30333683556951,50.63848046800003],[-115.30329341660136,50.63848252138952],[-115.30327770292251,50.63848838039638],[-115.30285564502977,50.63851799184952],[-115.30278359229968,50.63852011132725],[-115.30271060686714,50.638526120544824],[-115.30221556481958,50.63856172986206],[-115.30148824676971,50.63861123028982],[-115.3013721101717,50.638618172323056],[-115.30088026076523,50.63864045456034],[-115.30080727488291,50.63864646253088],[-115.30076412399784,50.638647395959936],[-115.30073442316095,50.6386519109663],[-115.30028572399092,50.638673257161926],[-115.30025522649338,50.63868109343837],[-115.30018024469862,50.6386954222536],[-115.29971264069474,50.638795582709164],[-115.29927566662516,50.638887345707744],[-115.29889888995352,50.63896675658962],[-115.29858217710162,50.639034375453264],[-115.29843114260859,50.639007834250435],[-115.29841862145204,50.63900038039315],[-115.29840370582531,50.6390029084454],[-115.29836348161294,50.63899163885786],[-115.29829488970925,50.638979324290574],[-115.29828024037495,50.63898074223863],[-115.29803517392662,50.63892863880303],[-115.29789159929247,50.6389306513047],[-115.29781874675663,50.63893609783282],[-115.29776147667405,50.63893623669228],[-115.29774802464543,50.63893266362143],[-115.29724524696198,50.6389408153591],[-115.29721581189631,50.638944219341155],[-115.2964124354145,50.639012444853996],[-115.29591511797436,50.6390574663185],[-115.29584333040577,50.63905847122703],[-115.29578446203439,50.6390652695614],[-115.29535986225775,50.63910540282956],[-115.2952880746002,50.63910640738051],[-115.29524478890964,50.639107898153085],[-115.2952150893452,50.63911240280579],[-115.29514143707854,50.63912117782353],[-115.29472309655935,50.63907558935775],[-115.29466715820037,50.6390701762322],[-115.29431781015246,50.63903523348248],[-115.293885755261,50.63898716958128],[-115.29382875150365,50.63898619634308],[-115.29339256391212,50.639014978038226],[-115.29331984496791,50.63901986214743],[-115.29326177551526,50.63902332892247],[-115.2930579995171,50.63903768254733],[-115.2928353128609,50.63901158623477],[-115.29276539029797,50.63900481863884],[-115.29269480061438,50.639000830624994],[-115.29220814208968,50.63894179570451],[-115.29136947378758,50.63885891626047],[-115.29088175264371,50.63880431582518],[-115.29085311660994,50.638804387916935],[-115.29081196286924,50.63879699640742],[-115.2907412415125,50.63879355775035],[-115.290322910637,50.63874794387379],[-115.29026697321568,50.63874252853814],[-115.29025352184077,50.63873895456219],[-115.29018373227007,50.6387316347506],[-115.28969468143438,50.638682579457054],[-115.2896533936779,50.638675746992824],[-115.28885842130757,50.63858969048709],[-115.28836937346233,50.638540629371136],[-115.28829891923198,50.63853607909903],[-115.28823006424318,50.63852486839676],[-115.28781200283177,50.638478143899206],[-115.28778336913324,50.63847820632203],[-115.28774114999753,50.638475253929045],[-115.28767149558716,50.63846737307046],[-115.28760184120125,50.63845949216841],[-115.28727023998094,50.6382910756374],[-115.28680946349975,50.63806471298091],[-115.28659066182178,50.63796287576585],[-115.28619421346424,50.63776659324879],[-115.28613321264467,50.63778226698014],[-115.28607114543516,50.63780238091817],[-115.28567397225969,50.6379070342754],[-115.28561377086477,50.63791937754298],[-115.28555170323357,50.63793949118847],[-115.28509352607887,50.63805981583509],[-115.28457327804263,50.63820025167558],[-115.28431368607168,50.638268248565936],[-115.28385443567261,50.63839300829269],[-115.28379343318728,50.63840868073188],[-115.28376173201478,50.638421512180685],[-115.28373109741774,50.63842990340577],[-115.28333417990982,50.63853343829437],[-115.28327211041093,50.638553550655885],[-115.2832116408288,50.63856700266899],[-115.28319685675561,50.63856897810188],[-115.28275158429707,50.638695087963825],[-115.28255405685066,50.63874296864966],[-115.28226288908449,50.638823241225516],[-115.28209506341015,50.63886661100716],[-115.28195760384438,50.63890270873856],[-115.2816516518343,50.638984946087774],[-115.28164243282187,50.639082875169294],[-115.28162989772788,50.63913504741255],[-115.2816256304552,50.63915280817514],[-115.28162136317911,50.639170568937146],[-115.28158585566459,50.639437470062774],[-115.28157518736128,50.63948187194797],[-115.28157198686618,50.63949519251283],[-115.28156665270348,50.639517393453644],[-115.2815634522033,50.639530714017695],[-115.28151634105761,50.6398459064731],[-115.28144532329294,50.640379708129394],[-115.2813984792824,50.640693781289194],[-115.28138781049589,50.640738183089674],[-115.28138354297536,50.64075594380895],[-115.2813771416883,50.64078258488679],[-115.28134056455865,50.64105392559741],[-115.28132989562943,50.64109832737325],[-115.28131949340316,50.64114161910136],[-115.28127344576673,50.641452370671026],[-115.28123071545306,50.64180886992006],[-115.28120135565193,50.641990611317965],[-115.28115210764273,50.64231467415077],[-115.28115835751977,50.64234822035203],[-115.28116460740613,50.64238176655154],[-115.28117539179891,50.642396442031306],[-115.28124110931871,50.642658955688134],[-115.2812442929237,50.64270526291377],[-115.28125187659961,50.64273325888425],[-115.28126239437029,50.64274904439131],[-115.28134514762631,50.64305977950133],[-115.28135991619769,50.64311743202571],[-115.28148924141384,50.64359170233538],[-115.28157199992327,50.64390242808344],[-115.28157518182336,50.643948744110986],[-115.28159328409296,50.64399252546975],[-115.2816592752548,50.644253919457874],[-115.28164860588089,50.64429832109434],[-115.28163806878653,50.64434217214697],[-115.28157616910752,50.64465932914291],[-115.2814765043295,50.64519319744633],[-115.28146276805417,50.645250360025564],[-115.28144157981664,50.645278976149044],[-115.28126662279706,50.645471028773],[-115.28122731242183,50.645515499925715],[-115.281203590823,50.64555465691762],[-115.28099038790057,50.645786740009754],[-115.28095241291454,50.64582565198212],[-115.28093322372521,50.64584594715088],[-115.28091430341469,50.64586512339847],[-115.28066312202711,50.64613611771075],[-115.28052840280428,50.64627981738316],[-115.28013361700043,50.646552800304256],[-115.2798045095703,50.64679069053611],[-115.27975388013853,50.646822696750675],[-115.27970311616856,50.64685526239746],[-115.27942677083361,50.64705225610564],[-115.2793761387038,50.64708427101888],[-115.27935828443896,50.647099006847206],[-115.27932537416471,50.64711683648352],[-115.27899652727953,50.64735360525863],[-115.27884409722527,50.647451860484644],[-115.27822343555256,50.64753313228216],[-115.27773665565489,50.64759330731817],[-115.2776636542796,50.64759929119154],[-115.27763421206167,50.6476026899678],[-115.27761849185055,50.64760854529347],[-115.2776047719741,50.647606079856025],[-115.27717700741597,50.64765890432601],[-115.27711692299206,50.64767069228811],[-115.27704405377531,50.64767612518257],[-115.276556205362,50.64774072627568],[-115.27598083093389,50.647812181320504],[-115.2757273091991,50.64785462691481],[-115.27566815936316,50.647862524576496],[-115.27555861588365,50.64796095268826],[-115.27529428184523,50.64804835759455],[-115.2752788280876,50.64805310256655],[-115.27520489036442,50.64806297433901],[-115.2747994867903,50.64814181150753],[-115.27472528188746,50.64815279298033],[-115.27466412844011,50.648169019690535],[-115.27455968196573,50.64818672021116],[-115.27420595240226,50.64828873866543],[-115.27377427833949,50.64841727705612],[-115.27341616895842,50.648477976494014],[-115.27292737114671,50.64854645114244],[-115.27286728442184,50.64855823680204],[-115.27332575313253,50.64867538090228],[-115.2733805005994,50.648685795302846],[-115.27340794054948,50.64869072720915],[-115.27344803263284,50.64870256511756],[-115.27363717598641,50.64874929837617],[-115.27364814025623,50.64894176408284],[-115.27378541918264,50.6490851271948],[-115.27421119353639,50.64933824890868],[-115.27448928089478,50.64949128872165],[-115.27457504676215,50.64955128060733],[-115.27462458920083,50.64958334415636],[-115.27464882656875,50.64960159595631],[-115.27467319635787,50.64961929718218],[-115.27495419772391,50.64981975282038],[-115.27500494085376,50.64984682555153],[-115.27502931305153,50.64986451781417],[-115.27505341620241,50.649883328968926],[-115.2753599934631,50.65009648512995],[-115.27538329610518,50.65011862626248],[-115.27579582698849,50.6505459462778],[-115.27583071757208,50.65057942422463],[-115.27609798316254,50.650837047132555],[-115.27614565973842,50.650876880088525],[-115.27615711073658,50.65088878529741],[-115.27617934868165,50.65091535743832],[-115.27642691669554,50.651135857704496],[-115.27646167368785,50.651169894879985],[-115.27649522860223,50.65120893157057],[-115.27654304044327,50.6512482048892],[-115.2765791321168,50.65127669192663],[-115.27662667506775,50.65131708410579],[-115.2766614323515,50.65135112121166],[-115.27695841908272,50.65160423329747],[-115.27699437679131,50.65163327963836],[-115.27712811005227,50.65202959447823],[-115.27724306045072,50.65208730440538],[-115.27754103474462,50.652217271116804],[-115.27765625303388,50.65227387058465],[-115.27770606755169,50.652304822639714],[-115.27774402896215,50.65232553911854],[-115.27775775028701,50.65232800452496],[-115.2779860532822,50.652450083045274],[-115.27805570408258,50.652517605734694],[-115.27810351867957,50.65255687832283],[-115.27813734292627,50.65259480443323],[-115.27840463372506,50.6528524211925],[-115.27865129038308,50.65307679664526],[-115.2788361223462,50.65332017988667],[-115.27908887904869,50.653638286529414],[-115.27909833119925,50.65365851212431],[-115.27912163753014,50.65368065238148],[-115.27924571835665,50.6539385854248],[-115.27927634239946,50.653989831394455],[-115.27946888093115,50.65432027649217],[-115.27956847605141,50.654501441472135],[-115.27950000887706,50.65484579344341],[-115.27948237503855,50.654978690609646],[-115.27953960504546,50.65515745056577],[-115.27954372069482,50.65519987651374],[-115.27955557503884,50.65521011184001],[-115.27956502773007,50.655230337357416],[-115.27956182551752,50.65524365761387],[-115.27963502422378,50.655475087599044],[-115.2796414092914,50.65550807390725],[-115.27965818008056,50.65555740508141],[-115.27966896714337,50.65557208047579],[-115.27966349563943,50.655594840349686],[-115.2797610535584,50.65590358806339],[-115.279914776361,50.656395544041004],[-115.27993381493118,50.65643544438609],[-115.28007668000241,50.65673438600521],[-115.28010864326683,50.6567800725923],[-115.28012754981617,50.65682052345631],[-115.28025244348679,50.65707513323255],[-115.28028440717227,50.657120819750716],[-115.28030344637793,50.657160719998345],[-115.28039971668969,50.65735575443622],[-115.28046003925493,50.657462125944015],[-115.28058068737695,50.65767485994111],[-115.28091785792408,50.65788016812468],[-115.28092958093899,50.657890953842745],[-115.2810628883818,50.658110592290186],[-115.28113255257958,50.65817811260176],[-115.28118037588891,50.65821738360538],[-115.28121620927178,50.658246978926144],[-115.2813803193926,50.658398040508615],[-115.2814963588331,50.658451305526874],[-115.28156070672074,50.65848139049313],[-115.28161373264774,50.65849902031126],[-115.28201301202408,50.65868421402833],[-115.28203845688185,50.658697473361904],[-115.28238216166402,50.65893521233273],[-115.28249443521055,50.65912327860987],[-115.28266810944321,50.65941326582465],[-115.282686884938,50.65945427557943],[-115.28270926331564,50.65948029557495],[-115.28271885279112,50.659499961270186],[-115.28281820569843,50.65968223225156],[-115.28285829285531,50.6597537020181],[-115.28287653720776,50.65979692289052],[-115.28288705954334,50.65981270792273],[-115.28290930375033,50.65983928731864],[-115.28305206711035,50.66013877448392],[-115.28317698657592,50.660393379977435],[-115.28293774361556,50.66061442368469],[-115.28277407354952,50.66075929477832],[-115.28262227436736,50.66085477410303],[-115.28255643836704,50.66089042582677],[-115.28250699459524,50.66091744209832],[-115.28218940231093,50.66110704495368],[-115.28215341551397,50.66113763591487],[-115.28210250263112,50.66117076154759],[-115.28177436802147,50.66140420448633],[-115.28161709329993,50.661522442185884],[-115.2814958075575,50.66161008004785],[-115.28137225209434,50.661707157354634],[-115.28121817744572,50.66181207424509],[-115.28119925053358,50.66183125017567],[-115.28090269059008,50.66205241945665],[-115.28086469964573,50.662091339523876],[-115.28083178112284,50.66210916040569],[-115.28081405372807,50.6621233456354],[-115.28069062774534,50.662219871560204],[-115.28052374214985,50.66237805924987],[-115.28050374508659,50.66240168398629],[-115.28049947515903,50.66241944421224],[-115.28027498185331,50.66269813296291],[-115.28014419414136,50.66288481430963],[-115.28023629905071,50.66321631861457],[-115.28027876868171,50.663337425157934],[-115.2803793222037,50.66351469798355],[-115.28041222361023,50.66355650351132],[-115.28042194532244,50.66357561874252],[-115.28043113328445,50.66359695399716],[-115.2805836320185,50.66385593198189],[-115.28061840199996,50.663889967345334],[-115.28064264952049,50.663908217530945],[-115.28066729630629,50.663924807132126],[-115.28084168106793,50.664092763657486],[-115.28091760908,50.66419382008567],[-115.28125422325759,50.664639868145485],[-115.2812871263022,50.664681673359176],[-115.28153571134656,50.664957904205274],[-115.28156968232386,50.66499526926705],[-115.28160351886079,50.66503319376359],[-115.28180534590564,50.66526570447124],[-115.28183824992139,50.6653075094912],[-115.28186143128572,50.66533019943487],[-115.28188581244797,50.66534789875228],[-115.28208790921762,50.66557929884828],[-115.28212081372598,50.66562110376927],[-115.28242122656634,50.66597958730421],[-115.28244347355113,50.66600616659773],[-115.28252180998263,50.6660972315786],[-115.2825523136965,50.66614902647271],[-115.28269524237697,50.66638833523548],[-115.28272828253004,50.66642958048993],[-115.28273640481396,50.66645535553853],[-115.28274599365545,50.666475029948195],[-115.28275758486512,50.666486374810674],[-115.2831129760248,50.66661619325505],[-115.28316454566598,50.66663992280623],[-115.28323024054107,50.666664456441325],[-115.28338868125857,50.666720122400406],[-115.28364972889275,50.666825466829934],[-115.28382096401569,50.666887477416374],[-115.28416806157739,50.667170963796],[-115.28422828717008,50.667218256607214],[-115.28454314975657,50.66745715802164],[-115.28459191865629,50.66749254650859],[-115.28464175482713,50.66752349490365],[-115.28489652485804,50.667714560988394],[-115.28492197781581,50.66772781064131],[-115.28497474918393,50.66774654868495],[-115.28501365969483,50.667763381685624],[-115.28503937950504,50.66777552129321],[-115.28545675046831,50.66794540481476],[-115.28549499544899,50.66796500825012],[-115.2856472828036,50.66816546206726],[-115.28582794848839,50.66842658075776],[-115.28590562800088,50.66852042258687],[-115.28610857082415,50.66868885858982],[-115.28614334873188,50.668722892035106],[-115.28617932608073,50.66875193482131],[-115.28619198581538,50.66875883921888],[-115.28645542997731,50.66897344726317],[-115.28649020836815,50.66900748058881],[-115.28650286822257,50.66901438494902],[-115.28653898048466,50.66904286815925],[-115.28657495834554,50.6690719108068],[-115.28677362818809,50.66931773164112],[-115.286919934624,50.66948352857946],[-115.28697602299667,50.66960764646512],[-115.28688215639247,50.669819487146874],[-115.28681256617921,50.66993030707025],[-115.28686238491636,50.670080514835824],[-115.28688063518113,50.67012374340188],[-115.28689968789047,50.67016363302505],[-115.28690834675969,50.67018718761703],[-115.28691780591281,50.67020741215024],[-115.28694311463941,50.67028085540228],[-115.28692442003947,50.67047781713215],[-115.28691161555909,50.67053109803335],[-115.28675457926032,50.67070785741287],[-115.28683705660058,50.67084134374446],[-115.28702132847943,50.671147113459135],[-115.28708513418474,50.67135830079228],[-115.28713602245932,50.671504068109044],[-115.28725955118423,50.671645506027815],[-115.28729353197991,50.671682869048894],[-115.28732857986046,50.67171579198549],[-115.28734110616159,50.67172325567734],[-115.28735070027838,50.671742920687784],[-115.28757404877193,50.67194570162744],[-115.28760776330456,50.67198417455787],[-115.28762042416967,50.67199107876681],[-115.28809502422936,50.672161368490166],[-115.28821350782849,50.67220463547247],[-115.28877299694062,50.67249842596211],[-115.28902980520809,50.67274078635904],[-115.28905552895358,50.672752924968776],[-115.28910404043813,50.672789421280946],[-115.28913868936381,50.672824013076955],[-115.28921185797975,50.67287708800601],[-115.28929353778241,50.67307353669205],[-115.2893125917519,50.67311343464334],[-115.2893179195677,50.67315085978823],[-115.2893284472949,50.67316664396175],[-115.2893404193323,50.67335521300707],[-115.28937026153994,50.67346941062505],[-115.28939543528367,50.67360303802061],[-115.28938633695455,50.67387929856491],[-115.28945749981014,50.6740003283637],[-115.28958449557145,50.67424659288938],[-115.28963114209117,50.67429085904871],[-115.28966486014595,50.67432933125024],[-115.28971270597661,50.67436860672004],[-115.28994434050303,50.674596597121514],[-115.2899771266411,50.674638949846546],[-115.29001217879514,50.67467187182429],[-115.29027753544224,50.67493833351033],[-115.29039295526229,50.67505399314696],[-115.29078973982519,50.67536951170393],[-115.29110362556769,50.67561284124946],[-115.2911514761571,50.67565210716218],[-115.29117693332438,50.67566536414298],[-115.29118733001835,50.67568169866484],[-115.29121292162206,50.67569439618586],[-115.29147403398237,50.67585935543493],[-115.29146976711318,50.67587711579627],[-115.2914730958907,50.675922870324236],[-115.29146642889614,50.67595062088644],[-115.29147615799519,50.67596973487203],[-115.29147239983345,50.67628342859165],[-115.29147665732093,50.676384927797876],[-115.2916168545412,50.6768147578143],[-115.29165403409183,50.67695805849581],[-115.29171440630824,50.677124046718056],[-115.29173239742421,50.677168384149816],[-115.29175172411107,50.67720716258872],[-115.29182155989788,50.67739337465363],[-115.29185994483987,50.6774720503763],[-115.29187780396607,50.67751693833686],[-115.29188753357948,50.67753605225103],[-115.29188206559145,50.677558812128844],[-115.29198175933553,50.677799586245015],[-115.2920093484499,50.67786358806466],[-115.2922054105604,50.67823976504123],[-115.2922881846058,50.67837213612641],[-115.29244493186036,50.67867351763139],[-115.2924638587359,50.67871396534944],[-115.29247452114176,50.67872919855121],[-115.29247212109746,50.67873918874203],[-115.29248185122856,50.678758302576576],[-115.29253050200833,50.6788538717304],[-115.29268299625926,50.678994119868],[-115.29273071743172,50.679033944396416],[-115.29275271031693,50.67906163124241],[-115.2929105392384,50.67917967860906],[-115.29303130624875,50.67933276851183],[-115.29311808464264,50.679448488485825],[-115.29332482804979,50.6798398870264],[-115.29340093980993,50.680000016454024],[-115.29345265834196,50.68014244932744],[-115.29347092117185,50.68018566741814],[-115.293481718663,50.68020034104613],[-115.29348878298723,50.68023055497616],[-115.29359728790078,50.68049433010617],[-115.29361634884187,50.68053422697062],[-115.29361941349721,50.6805810912029],[-115.29364794100934,50.68064120289099],[-115.29377831061156,50.68087358987534],[-115.29389921909949,50.68108574408469],[-115.2941162439767,50.681374775168514],[-115.29422422417316,50.68152151055839],[-115.29432047263528,50.68165746181435],[-115.29435246812662,50.6817031429635],[-115.29436299962806,50.68171892650152],[-115.2943712636091,50.68174414966346],[-115.29457496440733,50.68202904688212],[-115.29458229639394,50.68205815065552],[-115.29459189375613,50.68207782368178],[-115.29472000772559,50.68237926482561],[-115.29491104618678,50.682776525434754],[-115.29489598109883,50.682898870973474],[-115.29489131407723,50.68321644286063],[-115.29489571343917,50.68325775680358],[-115.29490331247278,50.683285750492466],[-115.29489904625423,50.683303510828296],[-115.29489158125416,50.683394216255856],[-115.29496383943093,50.683570434800664],[-115.2949829028917,50.68361033128605],[-115.29499023540083,50.68363943497801],[-115.29499983541278,50.683659099052115],[-115.29512808888357,50.68395998859178],[-115.29518115063681,50.684096869892215],[-115.29520061517144,50.684313988945796],[-115.29530220672237,50.68448736326421],[-115.29549392739489,50.68482220877609],[-115.29554192388557,50.68486092180638],[-115.29575990980297,50.68508643417113],[-115.29579350683376,50.68512546347763],[-115.2958413716601,50.68516472693542],[-115.2960010967444,50.68533463251522],[-115.29597390107021,50.68544785463927],[-115.29589404524624,50.685780310190005],[-115.29584591958574,50.68598066434182],[-115.29577126231729,50.68629146977833],[-115.29575846382464,50.68634475069381],[-115.29575006373078,50.686379720732006],[-115.29568500415554,50.68665056529471],[-115.29567433857656,50.686694966030785],[-115.29566793921902,50.68672160647087],[-115.29558941421764,50.68704850233195],[-115.29544742388984,50.687579957474235],[-115.29535902804578,50.68788829892026],[-115.29534542864305,50.687944909735435],[-115.29533702792818,50.68797987967612],[-115.29527303017879,50.68824628342288],[-115.29524863053878,50.68828822088856],[-115.29523809853606,50.68833206204906],[-115.29520556588815,50.688467483883365],[-115.2951634331509,50.68864286621253],[-115.29514383347495,50.68878408117828],[-115.29493809715153,50.689163430225264],[-115.29493303036979,50.68918452047855],[-115.29479382794275,50.68946579850562],[-115.2947707605864,50.68950218574338],[-115.29474835882473,50.68953580238388],[-115.2947451586698,50.689549122532654],[-115.29461221995726,50.68980431936873],[-115.29460195366254,50.68984705037881],[-115.29458075275477,50.68987566747961],[-115.29457675246836,50.68989231765287],[-115.29445994579422,50.69013998732698],[-115.29443327642443,50.690191364052595],[-115.29424912820323,50.690719306554776],[-115.29414698389841,50.691025182629836],[-115.2941365824631,50.69106847297981],[-115.29411644749959,50.69109264991538],[-115.29411111340957,50.69111485009204],[-115.29401950119208,50.691376885013405],[-115.29400896726472,50.691420725897515],[-115.29400496662862,50.691437376019685],[-115.29399776547616,50.69146734623855],[-115.29389561775722,50.691773221812475],[-115.29372279131363,50.692253991608794],[-115.29372612360122,50.692299745180556],[-115.2937495820989,50.6926194695477],[-115.2937539813316,50.69266078307519],[-115.29375731368118,50.692706536623945],[-115.29377877596973,50.69297494839187],[-115.29378210836788,50.693020701922876],[-115.29377570698601,50.69304734205474],[-115.2937853063438,50.69306701489409],[-115.29379609994758,50.693379826746906],[-115.29382849327355,50.69372199408254],[-115.29376754745431,50.693916001570024],[-115.2936652602957,50.69422242660814],[-115.29364005570118,50.694267693436096],[-115.29363578793937,50.69428545349246],[-115.29362951859115,50.69431154301425],[-115.29353683221635,50.69457800767991],[-115.2935412314452,50.694619321119966],[-115.29353056185307,50.69466372123193],[-115.29351214872442,50.69497882529277],[-115.29346412345296,50.69547677229192],[-115.29346852270297,50.695518085690864],[-115.29343610655675,50.695831836075804],[-115.29342543657249,50.695876236114024],[-115.29342983582603,50.69591754949489],[-115.29341649297042,50.696151930247744],[-115.29340795690834,50.696187450263665],[-115.29339648655362,50.69623518028161],[-115.29338928422538,50.69626515029084],[-115.29338608318754,50.69627847029453],[-115.2933248607161,50.69659284365478],[-115.29326643603186,50.696955190196135],[-115.29322535480269,50.697126130035194],[-115.29316439681536,50.697439392993715],[-115.29316799568456,50.69748403630311],[-115.29315732504243,50.697528436228914],[-115.29310677004183,50.69779840909529],[-115.29309636603415,50.697841699001174],[-115.29308916324783,50.69787166893409],[-115.29308489492546,50.69788942889373],[-115.29307315702155,50.69793826877969],[-115.29311048594938,50.69820027130334],[-115.2931628840382,50.69851881089748],[-115.29317688571322,50.69857978804301],[-115.29319381842032,50.698688187859126],[-115.2931960835563,50.698738381084596],[-115.29323541228945,50.69905168652169],[-115.29323874458488,50.69909743973986],[-115.29324821268142,50.69911766304269],[-115.29324501139833,50.69913098299738],[-115.2932579475599,50.69913677634801],[-115.29327074674735,50.699262376580165],[-115.29344945296083,50.6993534732626],[-115.29351413425458,50.699382439874434],[-115.29356587934963,50.69940561313615],[-115.29396263750986,50.69960296503694],[-115.29405159177068,50.69965017783914],[-115.29418162183943,50.69976496343695],[-115.29419549087646,50.699766876122894],[-115.2943859379652,50.69980913135876],[-115.2944407526743,50.69981953478606],[-115.29450943647925,50.69983185083302],[-115.29483631744291,50.6999026266978],[-115.2949188727316,50.699916846216105],[-115.29498862375782,50.699924721970255],[-115.29505744017393,50.699936487119025],[-115.29534698077731,50.69998377263044],[-115.2955428987415,50.700003266440184],[-115.295894855899,50.700029322804816],[-115.29638951397605,50.699998184167676],[-115.29671613006018,50.699950799425714],[-115.2968696364977,50.699967901555425],[-115.29693912125812,50.699976886094156],[-115.29700807267497,50.699988090597714],[-115.2971626460792,50.70000075230754],[-115.29742671433372,50.70003478606949],[-115.29749553369089,50.7000465408337],[-115.29756635205987,50.70004997495548],[-115.29778961091144,50.700074949916775],[-115.29806007992792,50.7000823420381],[-115.2981023576804,50.700085290306916],[-115.29825786608873,50.70009406103586],[-115.29848752514218,50.7000923944342],[-115.29893870552156,50.70006328697439],[-115.29898951990441,50.70009034717345],[-115.29900232483178,50.700096690416174],[-115.2993652395518,50.70031573784921],[-115.29939058088306,50.70032954313295],[-115.29979458422882,50.700616159979035],[-115.29991329400856,50.700718486128594],[-115.30021940808606,50.700995083007825],[-115.30021407583759,50.70101728321584],[-115.30021741539184,50.70106303611912],[-115.30019570701793,50.701332386009334],[-115.30018304386269,50.701385107038284],[-115.30043927302674,50.70157113046508],[-115.30048689903275,50.701671133606325],[-115.3006906011605,50.70201620478725],[-115.30082599591326,50.70216840563797],[-115.30095098516391,50.70230427320177],[-115.30121028040139,50.702417901605926],[-115.30125789967641,50.70245828082763],[-115.30149093851071,50.702681240176176],[-115.30152455369333,50.70272026694416],[-115.30157244229382,50.70275952712593],[-115.30172384530049,50.70290475842533],[-115.30179348578906,50.70303244513854],[-115.3018371096039,50.703089465375356],[-115.30191796552299,50.703289787260275],[-115.3022639745007,50.70346004999317],[-115.30232840082462,50.70349012136919],[-115.3023790889096,50.703517730481764],[-115.30272656644182,50.70368189110889],[-115.3027783212488,50.703705059982525],[-115.30281620334786,50.70372632610731],[-115.30282900985323,50.70373266888386],[-115.30300881950112,50.70381930972964],[-115.30306820359412,50.703989726576815],[-115.30307994184024,50.70400051825582],[-115.30334477187927,50.704389525239414],[-115.3034065469248,50.704490319445476],[-115.30348820185411,50.704627677604385],[-115.30359626862456,50.704774399883846],[-115.30362775479973,50.70482230602981],[-115.30392658007263,50.705069780137336],[-115.30396019916174,50.705108806061794],[-115.30401022478668,50.70513918497577],[-115.3041521693935,50.70526419033124],[-115.30427691079487,50.70540116368842],[-115.3046383322109,50.705805740238965],[-115.30467756350824,50.70588107885949],[-115.30486636734885,50.70616903728283],[-115.30489705627511,50.706220273035875],[-115.30511933745188,50.706488183842886],[-115.30515322729579,50.70652609044767],[-115.30518511721164,50.706572326593],[-115.30538751756943,50.70680368203351],[-115.30542034180448,50.70684602860347],[-115.30574484572027,50.70728507827254],[-115.30577526989987,50.70733742373194],[-115.3059175084224,50.70752093964101],[-115.30601063642156,50.707610564804106],[-115.30605826552437,50.70765094173044],[-115.30608028278472,50.7076786161309],[-115.3060932230664,50.70768440793567],[-115.30614098664081,50.70772422537535],[-115.3063716624192,50.70789754018077],[-115.3064067525712,50.70793045571017],[-115.30643196605162,50.70794481871934],[-115.30645531618411,50.70796694295566],[-115.30678565325198,50.70820269055149],[-115.3069063987791,50.70829667878345],[-115.30711312881881,50.70868914841896],[-115.30720227945545,50.70885505463809],[-115.30722592934856,50.70899532362438],[-115.3072300761045,50.70903774583669],[-115.30724195098077,50.70904797756541],[-115.30724716370298,50.709085959708084],[-115.30728232056927,50.70935738473428],[-115.30730167241991,50.70939616788097],[-115.30731008307777,50.70942082980983],[-115.30731969400178,50.70944049222389],[-115.30746197642193,50.709743269436494],[-115.3074778664215,50.70979647386506],[-115.30775586015511,50.710250331725696],[-115.30792842873954,50.710546371531386],[-115.30796258836642,50.71058317596585],[-115.30796900209288,50.710616158492556],[-115.30798141051028,50.71062417009109],[-115.30812475071063,50.710862874194206],[-115.30813529389783,50.71087865588754],[-115.3081691874727,50.710916570260636],[-115.3081938723784,50.710933143973925],[-115.30820308323662,50.71095447574156],[-115.30835160416267,50.71111190682547],[-115.30845115651172,50.711234520933644],[-115.30848278670186,50.71128186589665],[-115.30849150061731,50.71142467227433],[-115.30870343685444,50.711735864928094],[-115.3087362678257,50.71177821027677],[-115.30890603244413,50.71202627595221],[-115.30893912814969,50.71206752009021],[-115.30895795180814,50.71210851397903],[-115.30911584271973,50.71234634773267],[-115.3091277189014,50.712356579220916],[-115.3091614822673,50.71239504379496],[-115.30919750951975,50.71242407765384],[-115.3092093857406,50.712434309132405],[-115.30946027230144,50.712702691980084],[-115.30956303075767,50.7128119757829],[-115.3100405814841,50.71309143701514],[-115.31007754347186,50.713116581063275],[-115.31043753307821,50.71328872716972],[-115.31048823721915,50.71331633228122],[-115.31052639964685,50.71333647664962],[-115.31053894142245,50.71334393736877],[-115.31069252082139,50.7134206429426],[-115.31083357668457,50.71354952808795],[-115.31086854238245,50.713582992565115],[-115.31087895289618,50.713599333398456],[-115.31090364027831,50.71361590646028],[-115.31113867024864,50.713890704167234],[-115.31119805556055,50.71394186042555],[-115.31131076288956,50.71424858905625],[-115.31137232363918,50.71441011923301],[-115.31139983077145,50.7144746640527],[-115.31148594604642,50.71465332649993],[-115.3115145170176,50.71471344007565],[-115.3115336105527,50.71475332338307],[-115.31155256984913,50.71479376613503],[-115.31163226929834,50.71493944625068],[-115.31156173671987,50.715054165190686],[-115.31153880408067,50.71508999534277],[-115.31152266396383,50.71509752444699],[-115.31149919630539,50.715135583507035],[-115.31131572490862,50.71542225994023],[-115.31101131769421,50.71591419368598],[-115.31099424573759,50.71592560332468],[-115.31081076788486,50.71621227866124],[-115.31078343670198,50.71626642830842],[-115.31076023424781,50.716303377145216],[-115.31060102190062,50.71654866312435],[-115.31057675335543,50.71659005196972],[-115.31055541784174,50.71661922176701],[-115.31053741186034,50.716634520817536],[-115.31035419464664,50.7169200851503],[-115.31005163199639,50.717404245320026],[-115.31003229319252,50.71742509433675],[-115.31000496033154,50.717479243716014],[-115.30994407094495,50.717732885885454],[-115.30993354638888,50.71777672690615],[-115.30992288751027,50.71782112736947],[-115.30987294346706,50.71808888133044],[-115.30986228445433,50.71813328177159],[-115.30985189189659,50.718176572198566],[-115.30977701159303,50.718488485180735],[-115.30970388189812,50.718852809715024],[-115.30966377487492,50.71901987058657],[-115.30960210244079,50.71933646444245],[-115.30959144286368,50.71938086479246],[-115.30958637955716,50.71940195495757],[-115.30958118406674,50.71942359568624],[-115.30954334232557,50.71958121689061],[-115.30944930720442,50.71967436114838],[-115.30939754856819,50.71971082696366],[-115.30936060164682,50.71974530516339],[-115.30907007932493,50.720000075665595],[-115.30861081784983,50.72042028363463],[-115.30859094403505,50.72044335233765],[-115.30836593405604,50.72072374789333],[-115.30832685114238,50.72076711462191],[-115.30828963599815,50.720802702428394],[-115.30810223876017,50.72104584009423],[-115.30806515540921,50.72108087725273],[-115.30804101640881,50.7211217058847],[-115.30802180727174,50.72114200390064],[-115.3078688436437,50.721420826130995],[-115.30781936435211,50.72150748271798],[-115.30791817508174,50.72175267008149],[-115.30816158944043,50.72187325769427],[-115.30827702520914,50.721929820847045],[-115.3086019587696,50.72200942569675],[-115.30865466953497,50.722028710775405],[-115.30868229254165,50.72203307413064],[-115.30898618990732,50.722259999062146],[-115.30903503764854,50.722295374565896],[-115.30907213884895,50.72231996811225],[-115.30925742317216,50.72256327205649],[-115.30930227371807,50.722615297486094],[-115.30941855063382,50.722787782410656],[-115.30975356365654,50.72306426909149],[-115.30991039175277,50.72318728572806],[-115.31006708639235,50.723310861569],[-115.31011673563067,50.72334290654186],[-115.31016571975792,50.723377722063574],[-115.31039662374508,50.72355047479341],[-115.31043133041725,50.72358504901824],[-115.31046536984384,50.723622402684015],[-115.31048859581203,50.72364508511068],[-115.31074743500737,50.723940342798414],[-115.31083514269639,50.72405272175289],[-115.31109689753056,50.7242761375968],[-115.31123037249547,50.72437702936748],[-115.31143486323279,50.7245404086895],[-115.31160406997809,50.72455218106805],[-115.31167506027523,50.72455505557736],[-115.31174591841378,50.724558480605054],[-115.31178822012922,50.72456142360584],[-115.31204476406523,50.72474685586697],[-115.31207947080134,50.7247814384111],[-115.31212832372682,50.724816812457],[-115.31239302045262,50.725028014981525],[-115.31242706260727,50.72506536798612],[-115.31283488309853,50.725456751812835],[-115.31294298297641,50.72548420882599],[-115.31340527308058,50.72558896735051],[-115.31347413368952,50.72560072079041],[-115.31354179646988,50.7256174647927],[-115.31356835644799,50.72562626696102],[-115.3139374919134,50.725701037059146],[-115.31402036714265,50.72571413200839],[-115.31407428452962,50.725728414955896],[-115.31445636826768,50.72580897408482],[-115.31453444854601,50.72584204886494],[-115.31496848054122,50.726004840294905],[-115.31529025882553,50.726097745458766],[-115.31535805516127,50.726113937784405],[-115.3157770939485,50.726160003557304],[-115.31584595818626,50.726171746647104],[-115.31590200769624,50.72617714858673],[-115.31591575370223,50.72617960908215],[-115.31598554924271,50.726187471473615],[-115.31636457821294,50.726280784763915],[-115.31637699246207,50.72628879528153],[-115.31643117765152,50.72630196706589],[-115.31644492372479,50.726304427495826],[-115.31675282685342,50.7263954274322],[-115.31688602650048,50.726437791527225],[-115.31707460950345,50.72648833629349],[-115.31725160809009,50.7265871620644],[-115.31740268433093,50.72661477614963],[-115.3176025578781,50.726558518021285],[-115.31762283033343,50.726533778413184],[-115.31773353868023,50.726430878089936],[-115.31773779996038,50.72641311778697],[-115.3178052415596,50.726251535447894],[-115.31781642729356,50.72620491463448],[-115.31783882794875,50.72617130370133],[-115.31774621301538,50.72590003649043],[-115.31773566291739,50.72588425598387],[-115.31772711134417,50.72586014588872],[-115.31771027242166,50.725810824554934],[-115.31765496198135,50.72568284087617],[-115.31761216926871,50.72550268622042],[-115.31751081175254,50.7250886152591],[-115.31756680018977,50.72497476368533],[-115.31757612157757,50.7249359129693],[-115.31778743916949,50.72483192351265],[-115.31791857798983,50.72476335445787],[-115.31798208278461,50.724737674759055],[-115.31803170761202,50.72471009423688],[-115.31825903340612,50.72459912447085],[-115.31834760240238,50.72452872436578],[-115.31836440945936,50.72451842374163],[-115.31839842619911,50.72449614413064],[-115.31844911570647,50.724464123322896],[-115.31872763051813,50.724259280853296],[-115.31876484237993,50.72422368083402],[-115.31884405700013,50.72413250919197],[-115.31914543108941,50.724011637730115],[-115.31945082904109,50.72393374590427],[-115.31963481455755,50.723883895225406],[-115.31993821490515,50.72381432281667],[-115.3199837115632,50.72380394238518],[-115.32004508376049,50.72378714170649],[-115.32035354155218,50.72369647762991],[-115.32041810843239,50.72366635639883],[-115.32046493605966,50.723650425624875],[-115.32048161024373,50.72364067524599],[-115.32054511198238,50.72361499405617],[-115.32068985430796,50.72354944103625],[-115.32098057022955,50.723472965733976],[-115.32101192043449,50.72346179448535],[-115.32146684593137,50.72329835401328],[-115.32171831817406,50.72320617650121],[-115.32196885872854,50.723117879089536],[-115.32211985417112,50.72302623395195],[-115.3221537337496,50.72300451261541],[-115.3221833541024,50.723000551812305],[-115.32223417338263,50.72296796977341],[-115.32243385510192,50.7228526312843],[-115.3225734025927,50.72280871700444],[-115.32258901125202,50.72280340644209],[-115.3226358372078,50.72278747474179],[-115.32269907032033,50.72276290233703],[-115.32313571019634,50.72261587474992],[-115.32337010386104,50.72253510484804],[-115.32365681624165,50.72247527305205],[-115.32393487895439,50.72245151234087],[-115.32441921310212,50.72240447034936],[-115.32447738805288,50.72240098768924],[-115.32449339661792,50.722394007357664],[-115.32455157154938,50.722390524658806],[-115.324891040307,50.72240958931486],[-115.32499271228463,50.72240405367056],[-115.32500858664301,50.72239763272609],[-115.32505275006615,50.72239280042032],[-115.32512693341491,50.72238233700767],[-115.32531813064705,50.722362136714715],[-115.32561875838945,50.7223638307266],[-115.32564837801334,50.72235986900168],[-115.32624288956985,50.7224511870964],[-115.32644627617802,50.72249973533412],[-115.32690763683402,50.72260831906085],[-115.32697556619257,50.72262394493877],[-115.32700292313969,50.72262942268623],[-115.32704296344386,50.722641790867115],[-115.32735525202156,50.72271445065236],[-115.32743573103595,50.722737526114514],[-115.32750233044105,50.722758701903764],[-115.3275702602344,50.72277432741728],[-115.32801242558772,50.72290320787731],[-115.32814708771761,50.722939457894434],[-115.32878945798521,50.72313019169057],[-115.32895028285446,50.72317690881234],[-115.32924577416611,50.72325986549834],[-115.32931357337705,50.723276040527374],[-115.32933880281284,50.72329039810356],[-115.32955780672208,50.72333362024266],[-115.32970608535052,50.72337287777027],[-115.32975787679972,50.723396033597986],[-115.32982261618638,50.7234249783479],[-115.32983529806083,50.72343187734496],[-115.32998987494467,50.72350467472537],[-115.33019531216023,50.723604517127704],[-115.33027047416593,50.723649791568164],[-115.33033308623305,50.723687616432656],[-115.33065123930072,50.72373584575935],[-115.33069473951366,50.72373378192327],[-115.33076572973641,50.72373664430247],[-115.33095187644825,50.72373752541453],[-115.33117083499117,50.723721122380724],[-115.33125743530366,50.723718663809024],[-115.33147426585117,50.72371114061763],[-115.33181600718521,50.723720753168585],[-115.33210688750995,50.72370332032932],[-115.33235214203094,50.723696822809785],[-115.33262502070997,50.72369469105748],[-115.33266825272028,50.72369374539111],[-115.33274137267365,50.72368771716979],[-115.3330904283477,50.7236667947792],[-115.33317636255735,50.723667114307716],[-115.3332332088141,50.723669177388985],[-115.33327551109858,50.72367211225542],[-115.33330393316801,50.723673148214736],[-115.33357508422984,50.72367822508859],[-115.33368709972214,50.72374919263866],[-115.33375489914629,50.72376537384298],[-115.33392961175174,50.723813982595146],[-115.33409983442219,50.7237616497987],[-115.33415841510372,50.72345725476547],[-115.33417303991882,50.723396201356096],[-115.33421061331848,50.7231795010912],[-115.33423074107378,50.72315531784286],[-115.33425605282773,50.723109492809826],[-115.33428136665718,50.723063658888016],[-115.33445421864802,50.722820799270174],[-115.33445834108252,50.72280358884586],[-115.33447846853565,50.72277940554226],[-115.33450245035806,50.72273913075117],[-115.3345489546601,50.72266467317869],[-115.33484708596964,50.72255707991545],[-115.33487883196929,50.72254423522558],[-115.33511009326226,50.722416579910856],[-115.33546721752757,50.72218236287842],[-115.33548508536434,50.72216761050265],[-115.33580594084042,50.72196510832842],[-115.33585050252086,50.72195860220888],[-115.33589705703109,50.72194377500154],[-115.33591186625111,50.721941792776335],[-115.3359741593543,50.721921102511025],[-115.33614118228711,50.72188208730691],[-115.33637156107939,50.72181794108518],[-115.33640237461351,50.72180898563421],[-115.33643292442207,50.72180113136353],[-115.33650816536333,50.72178622898727],[-115.33676316709317,50.721798830786284],[-115.33695991644417,50.72187511167182],[-115.33698754210674,50.72187946802743],[-115.33711524212211,50.72188493811874],[-115.33776427850142,50.72204787764667],[-115.33779190434848,50.72205223380248],[-115.33811874960826,50.722123991140464],[-115.3382457870279,50.722132230679975],[-115.33831690915885,50.722134528788445],[-115.33836000771178,50.72213413151393],[-115.33856500072794,50.72217599726059],[-115.33873952136686,50.72216552708376],[-115.33879689754411,50.72216536718822],[-115.33886775397384,50.722168775020506],[-115.33888269709078,50.722166232924216],[-115.33891018916572,50.722171148280545],[-115.33893874436758,50.7221716233301],[-115.33908045727914,50.72217843876972],[-115.33942830123485,50.72216249631572],[-115.3394855455855,50.722162886664194],[-115.33962188295551,50.722132280847426],[-115.33998461071086,50.72205416348172],[-115.3401926009614,50.72202363381026],[-115.34025210292664,50.722014592541775],[-115.34062325995154,50.721961132171],[-115.34073854323825,50.72195859025592],[-115.3407681612589,50.72195462451974],[-115.34079857647295,50.721947328536515],[-115.34087155855894,50.72194185446083],[-115.34101659156882,50.72193479588745],[-115.34132133675378,50.7219192369526],[-115.34136443507326,50.721918838518754],[-115.34143741704388,50.72191336407308],[-115.34159712703548,50.72190487238611],[-115.34186374921501,50.72192880941822],[-115.34193460550404,50.72193221530594],[-115.34221484239403,50.721959159404044],[-115.3426414430808,50.72197348281622],[-115.34278634413525,50.72196697254686],[-115.34307827152996,50.72194507076301],[-115.34326839612402,50.72192928007424],[-115.3433108291967,50.72193166054363],[-115.34332563808509,50.721929677335424],[-115.3433392525204,50.72193268507086],[-115.34341329694473,50.72192276899119],[-115.34355726683528,50.72192014746251],[-115.34383518166646,50.72189689667931],[-115.3438786794893,50.72189482770441],[-115.3439082971903,50.721890861135265],[-115.34395258984212,50.72188547075073],[-115.34445097801503,50.72177949835496],[-115.3444962012955,50.721770218003556],[-115.34517600811974,50.7216249094661],[-115.34525204484798,50.721606662044344],[-115.34561382784867,50.7215324161081],[-115.34573309387531,50.72151321766088],[-115.34579312526036,50.72150195325118],[-115.34586743403625,50.721490925447334],[-115.34588210880159,50.72148950138567],[-115.34624030095382,50.72131043143776],[-115.34627005191949,50.72130590475244],[-115.34633008289235,50.721294640051326],[-115.34663010344994,50.721238875547186],[-115.34681544336661,50.72124306050873],[-115.34715916202849,50.721244295992875],[-115.34755001896696,50.72104848380485],[-115.34780992271038,50.72092072420623],[-115.34789465784532,50.7209260234117],[-115.34795595321728,50.720969389007266],[-115.34800509581976,50.72100363741864],[-115.34805370740132,50.72104010600333],[-115.34837140956535,50.72126994004928],[-115.34843722004986,50.72129443368753],[-115.34881594832459,50.72144892912455],[-115.34885519699435,50.721464619801104],[-115.34930133273652,50.721636946307754],[-115.34961351865564,50.721710094554155],[-115.35012991129098,50.721828416764765],[-115.35014259583616,50.72183531346881],[-115.35016889525177,50.7218452170747],[-115.35019439605544,50.72185845986167],[-115.35054497921804,50.722010807567756],[-115.3506107919758,50.72203529990401],[-115.35062214920154,50.72204774706649],[-115.35066153070956,50.722062886486206],[-115.3508838081419,50.7221523766088],[-115.35107753108592,50.722241394340664],[-115.35142705622546,50.72239818850464],[-115.35164947064145,50.72248711757556],[-115.35180280961119,50.7225052538165],[-115.35181655645924,50.72250770990449],[-115.3522627317869,50.72238022670308],[-115.35232408994337,50.72236340826256],[-115.35238757164173,50.722337708934056],[-115.35262323838462,50.72225132709095],[-115.35273831231643,50.722189701321916],[-115.35275312087316,50.722187716864354],[-115.3527877812976,50.722162655892966],[-115.35283844361975,50.72213061939532],[-115.35308565564877,50.72199594240595],[-115.35321659844453,50.721927891185565],[-115.35341407251182,50.72182137805793],[-115.3537112250882,50.72171761528553],[-115.35394263953316,50.72164899236841],[-115.3539889223372,50.72163526772677],[-115.35431895137981,50.72157384373278],[-115.35440979045354,50.72155361428806],[-115.35448595493934,50.72153480996297],[-115.35454624954555,50.72152243073632],[-115.35468284220275,50.721490687519605],[-115.35493078610737,50.72141286652269],[-115.35500721551395,50.72139295172499],[-115.35506830591505,50.721377241871714],[-115.35528504212172,50.721310041414746],[-115.35552475769096,50.72126663264935],[-115.35571752862309,50.721239719601094],[-115.35573326655297,50.7212338448994],[-115.35591282125371,50.721202255671145],[-115.35622604526117,50.721151141205105],[-115.3563463671056,50.72112749094693],[-115.3567483065674,50.72106501596973],[-115.35678946558468,50.72101275137158],[-115.35681448775823,50.720968031232225],[-115.35683261342213,50.72095216530201],[-115.35702531796724,50.72068563338917],[-115.35706329031922,50.720646698987565],[-115.3570864568849,50.72060974072802],[-115.35746537350936,50.720403676290466],[-115.35751337952813,50.72038272993882],[-115.3581130806337,50.72015243722397],[-115.35816811526792,50.72010207675865],[-115.35818716756287,50.7200823296009],[-115.35825488731213,50.72003886489226],[-115.35850817305831,50.71987864272042],[-115.35852709140667,50.71985945500223],[-115.35855896241877,50.71984604403922],[-115.35861054754405,50.71981011495916],[-115.35896328406358,50.71959358409853],[-115.35901380750265,50.719562095325564],[-115.35938262875668,50.719398200049845],[-115.3594174148909,50.71937258631597],[-115.3595353898987,50.71929874193398],[-115.35985006427478,50.719061512277655],[-115.36002987262391,50.719028806221296],[-115.36020968071092,50.71899609987421],[-115.36032102648707,50.71877002192378],[-115.3603242092588,50.71875670036047],[-115.36034869831317,50.71871419069028],[-115.36044050730375,50.71844989852483],[-115.3604447509214,50.718432136429065],[-115.3604511163416,50.71840549328447],[-115.36047560508403,50.718362983568895],[-115.36051945297311,50.71823944313795],[-115.36052091581946,50.71805334687228],[-115.36052348510988,50.71780262814652],[-115.36094841719135,50.71770373821302],[-115.36124136878325,50.71767734831559],[-115.3614156458045,50.71760777088111],[-115.36146404372091,50.717585162001505],[-115.36152751342418,50.71755945733392],[-115.36155832113305,50.71755048601766],[-115.36183916042043,50.717454796918425],[-115.3619026297244,50.71742909203382],[-115.36196503822643,50.717407827656025],[-115.36202850739188,50.71738212269844],[-115.36244025968647,50.717218369987506],[-115.36253652326442,50.717175371573084],[-115.36326924541102,50.71716790610516],[-115.36382879984164,50.71716538595526],[-115.36384267721856,50.71716728994877],[-115.36387136312575,50.71716719911598],[-115.36388404846505,50.71717409429736],[-115.36391246712267,50.717175122476014],[-115.36432736383905,50.7172382093376],[-115.36439609345315,50.71725048212904],[-115.36442345168854,50.7172559507453],[-115.36446482310485,50.71726275487801],[-115.36494950961891,50.717333680439985],[-115.3653915026043,50.71740334195941],[-115.36578531200452,50.71737468914342],[-115.36626928232,50.71732857555333],[-115.36634132708474,50.71732696587736],[-115.36641429853523,50.717321475082386],[-115.36683838079124,50.71728607505798],[-115.36686799341913,50.71728210237927],[-115.36691121852456,50.71728114345246],[-115.36696938352476,50.717277638640525],[-115.36727594341228,50.71725423777086],[-115.36745785946874,50.71721263849602],[-115.36763871502563,50.71717547952171],[-115.3682719721401,50.717044310641],[-115.36837747046235,50.717022633835164],[-115.36835011861888,50.71677699785962],[-115.3683467084295,50.716731247864274],[-115.3683425031862,50.71668882832234],[-115.36832584885016,50.71645841750689],[-115.36833432946293,50.716422892632515],[-115.36832455886271,50.71640378627477],[-115.36833091931656,50.71637714261752],[-115.36832750917716,50.716331392599955],[-115.36833099847203,50.71601660119092],[-115.3683334889126,50.71582606372412],[-115.36825847760716,50.715479904232915],[-115.36825003232128,50.71545524708022],[-115.36813057241172,50.71517522013558],[-115.368124512403,50.71514057158261],[-115.36811262203737,50.71513034640596],[-115.36809321304537,50.715091582956],[-115.36803883220738,50.71495918202697],[-115.36798471670842,50.71482567089722],[-115.36797826039242,50.71479268311186],[-115.3679655750972,50.71478578837626],[-115.36794855154851,50.71473703350229],[-115.36785049050792,50.71448744781044],[-115.36781959049499,50.714436789398114],[-115.36772470895735,50.714173890539826],[-115.36806463878436,50.71401060801343],[-115.36846709801759,50.713825505682756],[-115.3685308233904,50.71379868676528],[-115.3685792136139,50.7137760747009],[-115.36891900376447,50.713613349016136],[-115.36898259501295,50.71358708935353],[-115.36904605475472,50.71356138029215],[-115.36943529084306,50.71337160006443],[-115.3696912468516,50.71325988126497],[-115.3701274100627,50.71305358741063],[-115.37052985220492,50.71286847743711],[-115.37058035995615,50.712836983182655],[-115.37064275795986,50.712815713840804],[-115.37098266476231,50.71265243105202],[-115.37103211223359,50.71262537723974],[-115.37109450972898,50.71260410764012],[-115.37149813703765,50.712413993899695],[-115.37191735794413,50.712218570018436],[-115.37217687838545,50.71209185368128],[-115.3725793034497,50.71190673611199],[-115.37264289013808,50.711880474312245],[-115.37269127622127,50.71185786041485],[-115.37303103693769,50.71169512185046],[-115.37306316269081,50.71168059645004],[-115.37309475655798,50.7116683002612],[-115.3731582112307,50.71164258880492],[-115.37354754677695,50.711452234288714],[-115.37412737101216,50.71118419177438],[-115.37423947377523,50.71113475495595],[-115.37462773888743,50.71094884613505],[-115.37469225098141,50.71091869308721],[-115.37475464436918,50.71089742139972],[-115.37493403920979,50.71080616946336],[-115.37485300158741,50.710545169283854],[-115.3747545394963,50.710237075692966],[-115.37474609162803,50.710212418879195],[-115.37473764376905,50.710187762063974],[-115.37473224033278,50.710150342667184],[-115.3746394480783,50.70987855806551],[-115.37463285411118,50.70984613000126],[-115.37461688449096,50.709792935155996],[-115.37451842567101,50.70948484108334],[-115.3744404124998,50.70927125123321],[-115.374343280167,50.70895760593338],[-115.37424508988458,50.70864840113917],[-115.37424826780553,50.708635079020276],[-115.37422819531517,50.70859908734062],[-115.37422279249489,50.708561667849025],[-115.37412868247199,50.70829543319809],[-115.37412447255431,50.708253013451944],[-115.37410717996553,50.708205369318144],[-115.37400793364233,50.70790060474966],[-115.3739835205741,50.707822743870395],[-115.37404064089428,50.707763493436154],[-115.37425076892536,50.70748328792549],[-115.37426795505237,50.70747130897815],[-115.37428898210096,50.707443228002894],[-115.37432692827237,50.70740428712511],[-115.374513248749,50.707163805548426],[-115.37453440684618,50.70713517386788],[-115.37455132795394,50.707124305051224],[-115.37457539891267,50.7070834613889],[-115.37480058772849,50.70680015705015],[-115.37506213180602,50.706484563198245],[-115.37518735588822,50.70631998402002],[-115.37541147788073,50.70604111892259],[-115.37543170919812,50.70601636823304],[-115.37544968879257,50.70600105853451],[-115.3754876327377,50.705962117195995],[-115.37567500010569,50.7057171925377],[-115.37571201796892,50.70568213231257],[-115.37573608709805,50.70564128833044],[-115.37596046705747,50.70536131172307],[-115.3761606444769,50.705122729330256],[-115.37637232299669,50.705196395141876],[-115.37642517654703,50.70521508907762],[-115.37649177304912,50.70523623608885],[-115.3769268914181,50.705394341038975],[-115.37745635903686,50.70557739536516],[-115.37766791052401,50.705651609334225],[-115.37810422721942,50.70580471821145],[-115.37817003124815,50.705829194775134],[-115.37822262158045,50.70584899803562],[-115.37860701208187,50.70597953062279],[-115.37865880867703,50.70600266424545],[-115.37872554080907,50.70602325036861],[-115.37916173132083,50.706176914581995],[-115.37990171746065,50.70643860857845],[-115.38033871214486,50.706588928658945],[-115.38040451854182,50.70661340388304],[-115.38045737544007,50.706632095878724],[-115.38082684565487,50.70676515952555],[-115.38089371118203,50.70678519367774],[-115.38095925351949,50.70681077876398],[-115.38139651789183,50.70695999332517],[-115.38171287097106,50.70707547264317],[-115.38213547147883,50.70722611305685],[-115.38257274592463,50.707375314056954],[-115.38262547125863,50.70739456454927],[-115.38266471945343,50.70741024360336],[-115.38269101547313,50.707420148600434],[-115.38306063215644,50.70755264519202],[-115.38312723525306,50.707573788186814],[-115.38315379607083,50.70758258287404],[-115.38319410301169,50.7075938209423],[-115.38361644878174,50.70774556585753],[-115.38399981288791,50.70788052038534],[-115.38449399580564,50.70773083797824],[-115.38513950428963,50.70754739248936],[-115.38527801581199,50.70750728924808],[-115.38572368239144,50.70738078034646],[-115.38575447615911,50.707371811130066],[-115.3857858010983,50.70736061261216],[-115.3858611347505,50.70734511719584],[-115.38624679597301,50.707229892315254],[-115.38630891423597,50.70720972428637],[-115.3863702388882,50.70719288684404],[-115.3868309658319,50.70706327431671],[-115.38701546746533,50.70701054060085],[-115.38760095404486,50.70683836748461],[-115.38806061590074,50.70671319067226],[-115.38812193921741,50.70669635225795],[-115.38818405589936,50.70667618317307],[-115.38856957212253,50.70656150972569],[-115.38860010241571,50.706553641047336],[-115.3886307638696,50.70654522169473],[-115.38869314457065,50.706523942109676],[-115.38915266688018,50.70639932030269],[-115.38953712262759,50.70628907545531],[-115.38975781284296,50.70638515116149],[-115.3898082935095,50.70641383068166],[-115.38982097979333,50.70642072300387],[-115.38985930309575,50.70644028974511],[-115.39025945507304,50.70662508520604],[-115.39059538453726,50.706778748712004],[-115.39094241648215,50.70694596467996],[-115.39135685051703,50.707130986976175],[-115.39140759743768,50.707158555529],[-115.39145834442066,50.7071861240578],[-115.39180696903905,50.70734667594384],[-115.39185771648003,50.70737424428511],[-115.39188427889022,50.707383036897546],[-115.39192353030899,50.707398712697156],[-115.39232290620974,50.70758683121336],[-115.39285140281203,50.70783443554874],[-115.39300602812709,50.707907147030895],[-115.39340647048752,50.70809082067143],[-115.39345695540389,50.70811949848421],[-115.39352171380939,50.708148406823724],[-115.39385634414553,50.70830761135551],[-115.39392216043271,50.70833207856245],[-115.39397291028709,50.70835964591033],[-115.39437230332824,50.70854775688268],[-115.39464350129634,50.708672500032925],[-115.39478557791372,50.70873775767021],[-115.3950555877114,50.70886750024476],[-115.39545485871459,50.70905615790397],[-115.3955206769709,50.709080624147184],[-115.39557142865355,50.70910819074402],[-115.39592114009224,50.709264288514795],[-115.39597189222856,50.709291854923585],[-115.39602264442722,50.70931942130859],[-115.39643712132104,50.709504424229564],[-115.40400811068426,50.712131617059846],[-115.40808761702192,50.71425883504429],[-115.41234467380052,50.720463238531636],[-115.40867810832904,50.72653972829496],[-115.40749812552252,50.73216278571049],[-115.40875401443799,50.735741896025424],[-115.41317032448801,50.73748750843068],[-115.41936139907207,50.74063473903887],[-115.4230244575293,50.745312287586344],[-115.42684381298932,50.749757562991874],[-115.43021570214034,50.75403680070149],[-115.43696645388557,50.75562547336843],[-115.44228050835441,50.75541258581569],[-115.44310352479349,50.755510197733585],[-115.44771331758982,50.75754100931304],[-115.451995069679,50.758597521519455],[-115.45868861734363,50.75710263948374],[-115.46498126189738,50.75469402570854],[-115.47031025091331,50.75453687511155],[-115.47629955853532,50.75716615577024],[-115.48027391881504,50.760980534225745],[-115.48052527480652,50.76240468646989],[-115.48104209511374,50.767256287074986],[-115.48179204736385,50.77330660256706],[-115.4878821560921,50.77958959937355],[-115.49368215710793,50.78376665731865],[-115.49780599700496,50.786720558291215],[-115.50314420923098,50.78878784360395],[-115.51079202092804,50.7881840673891],[-115.51454710020488,50.7857695541685],[-115.52373454715,50.786849529501595],[-115.52975197758073,50.7898756490271],[-115.53191434898936,50.79349154024948],[-115.53349332008149,50.79769708857304],[-115.53962479603287,50.79774573143811],[-115.54644671949723,50.79864219102602],[-115.55354005666213,50.80473712444433],[-115.55703796693068,50.80787282537337],[-115.56119471827743,50.81150608992294],[-115.56084968833889,50.8170095472097],[-115.5568675292875,50.825890604842954],[-115.55849615398643,50.83112144761782],[-115.56205913886292,50.8336845281704],[-115.56954420642786,50.83857093448528],[-115.57856027347108,50.841653229377684],[-115.59390312568122,50.844777024517576],[-115.60272522217554,50.84562996199263],[-115.60876878398034,50.84190345636568],[-115.61135694514216,50.8379617270117],[-115.6176075823952,50.83635250195358],[-115.62923238955503,50.83737434425144],[-115.63842702430986,50.84210444067767],[-115.64010865301964,50.84659586384872],[-115.64106791439848,50.85092121432937],[-115.64078472225538,50.857617031737405],[-115.64270574956917,50.86330328967416],[-115.64642618122042,50.86848624266644],[-115.64537545602532,50.87274461523526],[-115.63433810981739,50.87600015495593],[-115.62698024621193,50.879066647501176],[-115.61878455870703,50.87974821849404],[-115.61194888934395,50.88217263739462],[-115.60987269956685,50.8858206264861],[-115.60435363003579,50.88752896727819],[-115.5969895389672,50.88704586200296],[-115.58864184646336,50.888242292492734],[-115.58297881818612,50.889210488752],[-115.576518160647,50.8900833139914],[-115.56734877453972,50.89146518190571],[-115.56110337600542,50.894964721999195],[-115.56205980428054,50.89951896981743],[-115.56496733236027,50.90501409493914],[-115.56936536774715,50.90778431283052],[-115.5718932540179,50.90939304868688],[-115.57877959691291,50.91314982416963],[-115.58974309132024,50.91676740448492],[-115.59910208030185,50.921096933121134],[-115.6067145750577,50.92809486993272],[-115.60574203547924,50.932119797396076],[-115.6004931357091,50.93737523263719],[-115.59945409694461,50.938367615970655],[-115.59854619867804,50.941990618766496],[-115.60327057866606,50.94578614602952],[-115.60924928974848,50.94927109015495],[-115.6104415343395,50.95296781051304],[-115.61036269988212,50.95840069247301],[-115.61291995787312,50.96229709774112],[-115.61905217340619,50.96698287763353],[-115.62307945051822,50.971250564533975],[-115.62606714719197,50.976392016483864],[-115.62709597560594,50.980549019851004],[-115.62805466873874,50.98156171630239],[-115.6302275059142,50.98323525827641],[-115.63571781865447,50.98575756208638],[-115.64167438777758,50.99238680509372],[-115.64451387415156,50.99638978724162],[-115.64789679306892,50.998502975175505],[-115.65228135315579,50.998984404235735],[-115.65790318480947,50.999044241308916],[-115.66365053219002,50.99955389784555],[-115.66561313215051,50.9999142911661],[-115.66814770403958,51.00214674047108],[-115.67014711296994,51.00432618360384],[-115.67368381856892,51.00856728009393],[-115.67813299768494,51.0114336328234],[-115.68257459431108,51.01464391526972],[-115.6865626713154,51.01899811175511],[-115.68683343828685,51.022599362103804],[-115.6876434731924,51.02648577536901],[-115.68874022879913,51.02809124446645],[-115.6913789895416,51.02592759698714],[-115.69738102718064,51.02251043035235],[-115.70457258749984,51.020297341229686],[-115.70930115536697,51.01887560316306],[-115.71285050250403,51.016881114755904],[-115.71857015584344,51.01683724323325],[-115.7228509859316,51.01833213648861],[-115.72683702200185,51.0209113515795],[-115.73084616366293,51.022523235384995],[-115.73439042573412,51.02384040928646],[-115.73492733745941,51.02544147357855],[-115.7328342805564,51.029613340974024],[-115.73591937329226,51.03247676669422],[-115.74092744231852,51.032772272829334],[-115.74410298412694,51.031579059759],[-115.74847144297935,51.03158470173435],[-115.75383945176267,51.033314017051886],[-115.75792817374922,51.03508854327942],[-115.76548495550344,51.040076800734546],[-115.7702964551487,51.048146497976965],[-115.77074999590056,51.051860495909295],[-115.76883464998963,51.054089673919385],[-115.76311248283601,51.058425826012176],[-115.75964807327703,51.06254212107168],[-115.75927466105944,51.06608460286526],[-115.75736316895318,51.069225903132995],[-115.75263126438146,51.07201690895336],[-115.74898218478933,51.07418226218545],[-115.75171456864987,51.073728907174015],[-115.75954810798075,51.07163143134896],[-115.76500987180954,51.07060994749116],[-115.77302077377566,51.070110014614094],[-115.77993326193348,51.069490430739855],[-115.78621590253633,51.06915939377453],[-115.79613271568648,51.07002726250044],[-115.80032558389937,51.07249647424624],[-115.80205629899373,51.07575431704823],[-115.8066953082182,51.07942175142647],[-115.80870778294107,51.08039725900409],[-115.8133521145053,51.08160391486571],[-115.82081251907694,51.08155383622457],[-115.82508589145442,51.07973410601609],[-115.82909071040868,51.07613209072268],[-115.83127586060074,51.074476656803995],[-115.8358265790398,51.074708848207266],[-115.83973740734287,51.07671979452047],[-115.84092929453959,51.07831584205246],[-115.84320830533804,51.079578531036724],[-115.84702206653226,51.07912528764854],[-115.85140073265264,51.078160165982446],[-115.85521866966181,51.079133554682066],[-115.85850182520997,51.0819973590382],[-115.86588519901075,51.086119213302084],[-115.87088474578731,51.08641319083098],[-115.87707714031107,51.085218346392146],[-115.88481236627997,51.08396595452],[-115.89155241778644,51.086367178881595],[-115.89448327747623,51.08952040181627],[-115.89603041584637,51.09203438092729],[-115.90048639547048,51.09060378623298],[-115.90192994335233,51.08580415504335],[-115.90146693586296,51.08151443176873],[-115.90064955661151,51.07808106165488],[-115.90556079655695,51.07951530157914],[-115.91038699600222,51.08094389493411],[-115.91612463875681,51.082490684355776],[-115.92086729254677,51.08586986806646],[-115.92507320815923,51.09027639808158],[-115.92890396041732,51.09525548790352],[-115.93373917673733,51.09697104739429],[-115.93911637631669,51.09782979758688],[-115.94421849625205,51.09983413194187],[-115.94714661102626,51.103208617247276],[-115.94734006909387,51.10749723916363],[-115.94899031559949,51.11058849096935],[-115.95247093983073,51.112301001224836],[-115.9567564254165,51.113904745074294],[-115.96112640302736,51.1165356049216],[-115.96214365549615,51.11911290925457],[-115.9657981023445,51.120827996455326],[-115.97045136411202,51.122598378072084],[-115.98084433183881,51.12574819301799],[-115.98585514464247,51.126201406106105],[-115.9909587856715,51.124716310621324],[-115.99459516587555,51.124541296284484],[-115.9980070723141,51.124017958474525],[-116.003989457333,51.125346639351285],[-116.00924617225847,51.128159795708754],[-116.0116754298069,51.13312875148339],[-116.01164224336257,51.13723368568211],[-116.00943786160018,51.140653091157084],[-116.00823005677691,51.14349879637013],[-116.00857177094784,51.14760596123797],[-116.01117529256689,51.1525755436037],[-116.01623815201901,51.15715536156854],[-116.0180518306446,51.15904147901719],[-116.02066032812012,51.16150439589997],[-116.02638462046703,51.16374288230636],[-116.03145691356035,51.16803693126159],[-116.03124771471512,51.17094543216027],[-116.02731733865674,51.17355650489491],[-116.02385415734577,51.175314745420216],[-116.02111094786333,51.17753254024089],[-116.01863322179312,51.17991786349977],[-116.01624341677311,51.184021360906556],[-116.01466169161593,51.188067548892725],[-116.01202180857462,51.189312826719814],[-116.00900733033826,51.19004014230693],[-116.00381702193884,51.19002775282098],[-116.00109206169543,51.190816932943356],[-115.99750939715358,51.19468408591278],[-115.99613880271559,51.195878422082636],[-115.99694779389444,51.19747735503438],[-115.99811397606376,51.19890522251832],[-116.00074069145593,51.201995121182364],[-116.00135465435696,51.20439099863145],[-116.00115117716304,51.20707334863639],[-116.00250425058272,51.209528814982065],[-116.00323104012278,51.21021638223828],[-116.00304385578642,51.210212177368234],[-116.00111391257524,51.21323206692428],[-115.99918685159433,51.21521792053107],[-116.00117637457772,51.217739699374086],[-116.00361409753212,51.22020102290229],[-116.00695608908794,51.22288896937359],[-116.01142209340898,51.22330340105217],[-116.01717072945492,51.22246594962485],[-116.02273854893694,51.220827845638645],[-116.02664561757871,51.221408484215786],[-116.036828813643,51.224064255930585],[-116.04546075451248,51.228143778006576],[-116.0466985912538,51.229072335735644],[-116.05116427669735,51.23243907885492],[-116.05586781492612,51.23917949940886],[-116.05857394735459,51.244381727683724],[-116.0640092241431,51.24827545577127],[-116.07139102154359,51.24932244310077],[-116.07666678877062,51.250589755291365],[-116.08523747799353,51.251183229476894],[-116.09252051706554,51.251256249895356],[-116.09990228434022,51.25127629739528],[-116.10144674698105,51.25162144979796],[-116.11018844655612,51.25358160558889],[-116.11992365744615,51.2568612296407],[-116.1283031111309,51.25973297931538],[-116.1363165489048,51.2619152618098],[-116.14487441871024,51.263933327149324],[-116.15187576784957,51.26805491130018],[-116.15413257999217,51.27227772778522],[-116.15284556602765,51.27666940191131],[-116.150637652639,51.27980090249046],[-116.14916545193608,51.28288126955601],[-116.14915318790716,51.28630138900023],[-116.15178814421517,51.288190918756186],[-116.155874913183,51.291624845410205],[-116.15723852652044,51.2940810177462],[-116.16005589891779,51.29619526420699],[-116.16488853736017,51.29740192993487],[-116.17374067673943,51.29696949032315],[-116.17993442338515,51.29766499808415],[-116.1828535542966,51.29971833688118],[-116.18612601474226,51.30155371127797],[-116.1911393677081,51.301564941342185],[-116.19461568740805,51.299172200225385],[-116.199094525534,51.29598646654867],[-116.20302569083528,51.29519147136211],[-116.21169531486139,51.29355353828522],[-116.21515873131398,51.29355578339997],[-116.21871262051782,51.296474992271044],[-116.22316903332863,51.299444154020414],[-116.22709441552284,51.30076114828361],[-116.23293092046642,51.30117565637501],[-116.23867818709617,51.30146995404499],[-116.24269708187262,51.302041155353315],[-116.24715006655755,51.30398878614708],[-116.25335879440523,51.306453620764],[-116.25863956810801,51.30885642035381],[-116.26147144392911,51.31079781767293],[-116.26457025958533,51.313826427487435],[-116.2682966822621,51.316969206238184],[-116.27047858326294,51.32027905941253],[-116.27212349416261,51.32536155933831],[-116.27248249997733,51.326163956760716],[-116.27549728438252,51.327875968855544],[-116.28013612323835,51.33182015847982],[-116.28424332356396,51.33718842188938],[-116.28560823662174,51.34203788220582],[-116.28304190158683,51.34688575076453],[-116.28038153144064,51.35156575757216],[-116.27772759896672,51.35509946451516],[-116.27772963283152,51.35777839149258],[-116.28083248635966,51.36080808167831],[-116.28702712781435,51.363838576713746],[-116.2878521334517,51.363783392999245],[-116.29241663415607,51.36532745240886],[-116.2977095321162,51.36870031677367],[-116.3009044212661,51.373096838147305],[-116.30482512718123,51.37835125679247],[-116.30692581241632,51.3821198996136],[-116.30683357397744,51.38543096581324],[-116.30198264139007,51.38839283714948],[-116.29648713343742,51.39209925472292],[-116.29255943484321,51.3958051024844],[-116.29154309554146,51.399282992231605],[-116.29007973809335,51.40287642301002],[-116.28696648391706,51.40447147034865],[-116.2821162136253,51.406233367119164],[-116.27936849689364,51.40833995975719],[-116.28009709379951,51.41062547218733],[-116.28155981211579,51.41268029990287],[-116.28419406828179,51.415482123383214],[-116.28629458059063,51.41793947026925],[-116.28802480789287,51.42147932791316],[-116.29013347715173,51.42370507331376],[-116.29049715849388,51.42462259773851],[-116.29149267590812,51.42701922149149],[-116.29130470892407,51.42964076436917],[-116.28763664129323,51.43340406790054],[-116.28488895583963,51.43556975516046],[-116.28351608902668,51.43756607374441],[-116.283597145803,51.44041463591574],[-116.28405106605715,51.443614658044986],[-116.28368472877439,51.44657928592648],[-116.28183890810017,51.45011650497094],[-116.28192735049107,51.45234107240093],[-116.28193027005894,51.45462339995809],[-116.28311575211094,51.45616430843268],[-116.2833500905647,51.456353781336624],[-116.2867724060046,51.45902480255989],[-116.29134336347107,51.460912181434395],[-116.29545794088554,51.461774858716375],[-116.30379446521124,51.462359458239966],[-116.30800125546239,51.463332609682176],[-116.312578163723,51.463619357996784],[-116.31696979342465,51.46362560131779],[-116.32201324275707,51.46311733399789],[-116.32703945697564,51.462949942491186],[-116.33510007398395,51.463928689256264],[-116.34086162642626,51.46695752059195],[-116.34690948749179,51.46941650743605],[-116.3533139494299,51.47078734013948],[-116.36045746909498,51.47336281221814],[-116.36365563410354,51.47582103448367],[-116.3656658822624,51.478389602427924],[-116.36768981460744,51.481360117446606],[-116.37079643214932,51.48443753496051],[-116.37620482861789,51.48849891014068],[-116.37959461703004,51.49174954177287],[-116.38379805614618,51.495804078582154],[-116.38700802722029,51.499348183480194],[-116.38884481883754,51.50185547552937],[-116.39222587458806,51.505287070116125],[-116.39379115549448,51.51201928969885],[-116.39314813900867,51.51481620278823],[-116.39269010510786,51.517101766423465],[-116.39268866882674,51.51989427973689],[-116.39077706611899,51.52349316839376],[-116.38536328643622,51.52685504317704],[-116.37985811907028,51.53016478277956],[-116.3796806775502,51.530905471961574],[-116.38114332850789,51.53233585950412],[-116.38517028707147,51.535819489152864],[-116.38646141946447,51.53935754910208],[-116.38710509141787,51.542328812988],[-116.39012235676891,51.5443790261413],[-116.39626650659582,51.54592686710952],[-116.40296805279966,51.547127592610785],[-116.40893457244694,51.548558282405914],[-116.41516027800476,51.55066947817509],[-116.42030923761652,51.55244293625987],[-116.42818791202993,51.55472996192994],[-116.43415126199116,51.55518302862558],[-116.43552931046271,51.55501247146777],[-116.44379231642642,51.55701265875187],[-116.44883998111727,51.55872346163743],[-116.45654496627947,51.56215002623237],[-116.46177587301356,51.56563080939381],[-116.46326121273843,51.569111768623266],[-116.4639001295471,51.572597834879154],[-116.46537449417684,51.57539575580171],[-116.46740005905728,51.57847491229895],[-116.46942365459756,51.58229980703797],[-116.4694304310826,51.583271624466285],[-116.46805138776524,51.58772205905725],[-116.46613788132592,51.59114495245951],[-116.46596024447896,51.59463237318818],[-116.46706242621063,51.59720130422457],[-116.4682615720167,51.59959384103351],[-116.47119664061522,51.60359196729834],[-116.47395726299946,51.606786897944815],[-116.47552368704339,51.60810027256582],[-116.47891954698272,51.609588778721836],[-116.48288200302311,51.61095549803587],[-116.48444186903146,51.61323821911427],[-116.48609191464554,51.61597840888552],[-116.48959235973312,51.61786182193508],[-116.49189608428846,51.61934481982677],[-116.49382174607796,51.62357032872571],[-116.49797119547333,51.62636519295277],[-116.50384686456063,51.626594700179595],[-116.51046517885227,51.62636198842945],[-116.51560532017207,51.627155252341545],[-116.52010983354779,51.629666460361115],[-116.52481393368797,51.632806995808785],[-116.52903584797308,51.63514530541682],[-116.53308630462838,51.63719918100271],[-116.53980572713733,51.63764989004333],[-116.54550447771346,51.63816284208057],[-116.55102457556745,51.64004078771979],[-116.55682165133415,51.64266465494989],[-116.5581045002748,51.64334802194389],[-116.56316896609039,51.64551499789505],[-116.56814286022548,51.647562698010866],[-116.5694306536652,51.64950816762209],[-116.5710070301186,51.65167280703165],[-116.57449642611346,51.65201243599329],[-116.57652304619457,51.65229672140613],[-116.5789117577017,51.653609155571914],[-116.58269824785437,51.655143889819485],[-116.58757048330122,51.65719739763873],[-116.59439056908182,51.6615299228203],[-116.59624214959197,51.66432227185289],[-116.59460087096963,51.666379988599225],[-116.59109917197105,51.66832653448556],[-116.58936605569336,51.669927891990376],[-116.58734981135812,51.67284053577062],[-116.58782311272152,51.6762656215827],[-116.58691488000176,51.679864190379],[-116.58362303943044,51.683064879804874],[-116.57875278719172,51.68518231909181],[-116.57718764048921,51.68660963695648],[-116.57995609852155,51.68860800683683],[-116.58299692772606,51.69009076884535],[-116.58742584012606,51.692252561672476],[-116.5886238803053,51.694420405020516],[-116.58431093884928,51.69625387222017],[-116.58146654333694,51.6985948285217],[-116.5826654685942,51.70116396829065],[-116.58285592700476,51.701567897571],[-116.58525656330289,51.70344726397882],[-116.58572488588291,51.70601633913998],[-116.58418034583057,51.71127030572305],[-116.58520766285287,51.71429756908015],[-116.58677467329925,51.7154367326689],[-116.59046025991637,51.71651644581068],[-116.5954377922477,51.71845371758196],[-116.59718665194129,51.720852467537064],[-116.59876325734997,51.723304819754034],[-116.60218007453436,51.72495647937196],[-116.60522683453259,51.72540912267511],[-116.61010466748404,51.72523779997577],[-116.6177466597197,51.72608420387746],[-116.62346418609377,51.72744689150132],[-116.6298288220869,51.73103787684985],[-116.63223422889686,51.735087044427644],[-116.63280392547105,51.73685889703741],[-116.6314486076957,51.741255060558785],[-116.62676595612845,51.74628964227935],[-116.62493185384983,51.74971114753131],[-116.62880104245615,51.75056623478776],[-116.63571272294844,51.750270892957595],[-116.64179770217306,51.750553197519835],[-116.6473331762974,51.75203117877695],[-116.64936832269561,51.75447826545259],[-116.64947391210828,51.75705243941165],[-116.64903824734539,51.76241857887327],[-116.64722907697755,51.768589989196876],[-116.64568022141265,51.773275733113444],[-116.64395112784855,51.777844824619315],[-116.64360353661915,51.78184406540592],[-116.64351171167034,51.784585828933544],[-116.64241648557203,51.786409600178395],[-116.64316804507928,51.78829404332574],[-116.64612236318584,51.78994702609839],[-116.65000461822821,51.79171287347686],[-116.6535224571165,51.79388083919944],[-116.65427246915046,51.79604786158249],[-116.65465522796107,51.798560920687954],[-116.65558412441852,51.80289556427434],[-116.65660344761483,51.80346961055745],[-116.66094223587834,51.804890549645485],[-116.6650198634769,51.80671018667396],[-116.66926582841862,51.80836129114062],[-116.67286712188698,51.810013740997924],[-116.67721676034947,51.81200388307592],[-116.67787110227958,51.81223220878887],[-116.67906351054046,51.81165945731988],[-116.6826454776629,51.80971302681704],[-116.68503491954125,51.80833930005459],[-116.69075182880577,51.805587488273744],[-116.69496777553763,51.80306921669056],[-116.70086131358174,51.801402728392354],[-116.70722877080036,51.80053200919207],[-116.71145765933696,51.7993859201047],[-116.71366577937462,51.79857950607347],[-116.71616462382205,51.80011577765165],[-116.71996515968608,51.802622843574916],[-116.72522623549715,51.80398451798357],[-116.7323436497153,51.80522884303325],[-116.73769801924294,51.805673859869664],[-116.74441654528108,51.80514692304467],[-116.74809441969909,51.803764160611756],[-116.75104467142815,51.80153156061707],[-116.75259209747465,51.79942031183876],[-116.7537720287391,51.796556983715284],[-116.75441514263372,51.7955294990946],[-116.75530324748158,51.79238457135881],[-116.75850893837082,51.78832370534918],[-116.76143028713831,51.78511635937014],[-116.76454528535984,51.781684295881675],[-116.76755906352861,51.77796797876906],[-116.77250937492718,51.774297152486525],[-116.77553496336387,51.77217654744504],[-116.77865168158033,51.76914082977],[-116.7799262672007,51.767200110933715],[-116.7840366167041,51.76347672897182],[-116.78781532784636,51.762492564813144],[-116.79093975306816,51.761626144280115],[-116.79359174822571,51.759395213848954],[-116.79779487744834,51.75550025477943],[-116.8018249784842,51.75200518580412],[-116.80420172115318,51.748855440146535],[-116.80691384458417,51.744392399975304],[-116.80799299007478,51.74108120446322],[-116.81213307449966,51.739411323438176],[-116.81626779102726,51.73894435790942],[-116.81846280081258,51.73761945021806],[-116.81752754620267,51.735396593979615],[-116.81279421323545,51.73170086971783],[-116.80825072606314,51.72794046718597],[-116.80677616158835,51.72737618885377],[-116.80059527215032,51.72493595731894],[-116.79560169612584,51.72317566948148],[-116.7927431393781,51.721413816843004],[-116.7930064052475,51.72009867031398],[-116.79473211679105,51.71781150200441],[-116.79811834717597,51.715689248104425],[-116.80215386967932,51.71270492092086],[-116.80608203773363,51.70932608765627],[-116.80706396391821,51.70577906551392],[-116.80796264101613,51.70463576384523],[-116.81302881650907,51.704795339193865],[-116.8191108635856,51.70477997429837],[-116.82379390290194,51.7041910025921],[-116.82894965667128,51.70406301802936],[-116.83446641516868,51.70416355247026],[-116.84257536960153,51.70465306745366],[-116.8476419770257,51.7054360372402],[-116.85327685755799,51.70713257042397],[-116.85786640675704,51.70705667532988],[-116.86026115173124,51.706367582850035],[-116.86475681599353,51.7049260766779],[-116.87146891414308,51.704271471440066],[-116.87689987408103,51.705339098744226],[-116.88133508808922,51.70669755542677],[-116.88631844484684,51.707531999473254],[-116.88953169897178,51.70683895863342],[-116.89256171293721,51.705973382518096],[-116.89723860758757,51.70526675360684],[-116.89826020769429,51.70555211809147],[-116.89919431836292,51.7073764741483],[-116.90216189419107,51.70890946729961],[-116.90574929343659,51.709013254274154],[-116.9084964271807,51.70831181699149],[-116.91097941733845,51.70796579241119],[-116.91365946334305,51.708636896163405],[-116.9150471428428,51.709550172173365],[-116.91589197661635,51.71131572833151],[-116.91610885829422,51.71343032583486],[-116.91778172973584,51.71571096152364],[-116.92047124943618,51.71718102163204],[-116.92380894712534,51.71967981635327],[-116.9246560229303,51.72122660555326],[-116.9246821894234,51.72390831385132],[-116.92452617232374,51.72585058002738],[-116.9254611764015,51.72795848494383],[-116.92778126776261,51.72875025886681],[-116.92980937370572,51.72925972188733],[-116.93360133735565,51.730846650971365],[-116.93637797020001,51.73197484224005],[-116.94034451210324,51.733216378538046],[-116.9413805524697,51.73498324525391],[-116.9414002457511,51.73692757866951],[-116.94199030657232,51.73978522778983],[-116.94367974653096,51.742348703782675],[-116.94682732709789,51.74387753788243],[-116.9504360924918,51.74494708801744],[-116.9532063170032,51.746252906475064],[-116.9548737659024,51.74772939409598],[-116.95748870545863,51.75034801680351],[-116.95991745201927,51.75301960749834],[-116.96141460644107,51.75461415763913],[-116.9656645294757,51.75591211585719],[-116.96955422197722,51.75732606407532],[-116.9701162764484,51.75835382969419],[-116.9703123827489,51.7596652199785],[-116.96987575499169,51.76212331983136],[-116.9698125410912,51.76383872717749],[-116.96965518183957,51.765725892381774],[-116.97013085131773,51.76738227407718],[-116.96940910412057,51.769098593696455],[-116.96619219904062,51.769795512106114],[-116.9614139989098,51.77061267351952],[-116.96005178611554,51.772733826483964],[-116.96100716321872,51.775531376976836],[-116.9611263124349,51.7782693249483],[-116.96244808597386,51.78078325576406],[-116.96294975195438,51.78414629588711],[-116.96123426240791,51.78775518438536],[-116.95969726442198,51.79050360237884],[-116.96287836160572,51.793863221749774],[-116.96456876011939,51.79608515862539],[-116.96754765133302,51.79858898791131],[-116.96997853853571,51.80154791489838],[-116.97443299999712,51.803929260118736],[-116.97748475319639,51.804604527590115],[-116.98072092010177,51.80573243291703],[-116.98443706365425,51.80800681527467],[-116.99010751713385,51.811805326698014],[-116.986340968623,51.8133041615775],[-116.98415047438257,51.81468729061024],[-116.98204883197036,51.81698306756886],[-116.98161076544459,51.81881287592618],[-116.98247600016714,51.82120878119522],[-116.98379652986196,51.82331673478533],[-116.98372019375203,51.824744364662074],[-116.98207198827792,51.826122873820744],[-116.97987066189417,51.82698953057702],[-116.97775342092898,51.82836820014688],[-116.97695698794071,51.83128786290411],[-116.97838074141463,51.834592908975374],[-116.98347254528458,51.835544493340514],[-116.98790916614712,51.83569954967327],[-116.99307238572183,51.8351056816903],[-116.99574402036829,51.834868910937864],[-117.00146788883353,51.83552868874449],[-117.01073244941502,51.83777140899398],[-117.01620654941507,51.840208884023916],[-117.02011889522885,51.84304487311522],[-117.02329863783878,51.846521157609594],[-117.02647939071653,51.85056264251248],[-117.02985257684048,51.85374577812791],[-117.0325749068368,51.858025099195764],[-117.03514904292922,51.86338020501574],[-117.03417822223473,51.867728748748334],[-117.03063146007021,51.87134358027421],[-117.02203076014469,51.87755518901817],[-117.01590232622183,51.88272235756975],[-117.01188257549008,51.88634082286684],[-117.01146310884246,51.889712962723856],[-117.01414617150726,51.890215781041576],[-117.0162802796819,51.89060695895479],[-117.02027742761418,51.89270016393002],[-117.02502044210364,51.895941612807896],[-117.0294076394095,51.899062150556205],[-117.03462574466278,51.90235394749925],[-117.03929206667806,51.90576324584833],[-117.04349565258137,51.90871605103966],[-117.04517147562886,51.91047975803891],[-117.0508457005406,51.9125679416759],[-117.05437269180953,51.91403952598333],[-117.05772921835785,51.91648165850345],[-117.06101211319024,51.919781523385126],[-117.06401130727352,51.92239439820558],[-117.06877630168226,51.926200344931146],[-117.07465578738199,51.929944965169916],[-117.07885197058154,51.93295537499406],[-117.0842569903507,51.93544495309799],[-117.0894688729268,51.93787678141034],[-117.09431396113287,51.94030970628086],[-117.09518468006384,51.943220235569164],[-117.09519660810919,51.94430625683779],[-117.09659861986611,51.94527388321641],[-117.0996901155128,51.94845666603031],[-117.100105776853,51.951368416742035],[-117.10070622118013,51.954167377704174],[-117.10360447211654,51.95643522650744],[-117.10767659479046,51.95641953427937],[-117.11172904316395,51.955425064813774],[-117.1166370761646,51.95534345948633],[-117.12100447669845,51.957040511793345],[-117.12467020216133,51.96130505999828],[-117.1288023830164,51.96494497783636],[-117.13271387975665,51.96657898968407],[-117.13773971468729,51.96844098335264],[-117.14213254686169,51.971388992011654],[-117.14864018621279,51.973697942260564],[-117.15531842695928,51.973950330688616],[-117.16124084261156,51.973802095004096],[-117.16706236161119,51.973715838922764],[-117.17382271065058,51.97385312849404],[-117.17958682621794,51.97541967708786],[-117.18322902706632,51.97694509769482],[-117.18899022153339,51.97816790392832],[-117.19456429482668,51.980023540898486],[-117.19544015804995,51.98207699776203],[-117.19629779144508,51.98378663630357],[-117.19654026394781,51.98772828062188],[-117.19735116922077,51.99183848283498],[-117.20258098971486,51.994385789457525],[-117.20610008335719,51.99493576405812],[-117.21103281557434,51.995763638356415],[-117.21486414518243,51.99774641548254],[-117.21600673737554,51.99979575224064],[-117.21805545759453,52.00259706651224],[-117.22171876813668,52.00621079681664],[-117.2289335986457,52.008191750952165],[-117.23430285970223,52.00890555746572],[-117.23296627540212,52.012093730388855],[-117.22958748547461,52.01447302590684],[-117.22511222650604,52.015875039065605],[-117.21774349553019,52.01863431510874],[-117.21338331156637,52.02482687035543],[-117.21333172414698,52.02899369544779],[-117.21775409707845,52.03141349743778],[-117.22355410479453,52.034587182402426],[-117.22722255833843,52.03797310220881],[-117.23409053028526,52.03915101052652],[-117.24289960635295,52.03982707499686],[-117.25152284109427,52.040840782586606],[-117.25949029531003,52.0432811436701],[-117.2657526355859,52.04673669063493],[-117.2668325550974,52.04947863518893],[-117.26754373336219,52.05222524105915],[-117.2703625683994,52.05663497010746],[-117.27517771008992,52.05808374378975],[-117.28074341352922,52.05982661020981],[-117.28877311574799,52.064319840665576],[-117.2944804311393,52.06799784322218],[-117.30186601414441,52.07248622742148],[-117.30098155512258,52.07607736321063],[-117.29675525790164,52.08039460995797],[-117.29425791272037,52.08643362350072],[-117.29304291345531,52.09407359384418],[-117.29257954464067,52.1020027078823],[-117.29412826877434,52.11193880386283],[-117.29431858482623,52.118672366363654],[-117.29373171592334,52.12809112091474],[-117.29690023912572,52.13489881304127],[-117.30202211125075,52.14262913621364],[-117.3067883242565,52.14847267791911],[-117.31004654132532,52.15602409532132],[-117.30965186469346,52.16589468486536],[-117.31035618423647,52.17616961894967],[-117.31288655195385,52.182291388787675],[-117.31496560360429,52.18076294011613],[-117.31874498852285,52.1767256632022],[-117.32450269096458,52.16996544864215],[-117.3263806800607,52.16106551837787],[-117.32747994120807,52.15456885644196],[-117.3295269029928,52.14761103894458],[-117.33815067958751,52.14211826714835],[-117.34086254262037,52.14139010525481],[-117.35196584248294,52.13984486932468],[-117.36043848604474,52.13965182548586],[-117.36711796024493,52.1410517410914],[-117.3752174953543,52.14154514747567],[-117.38435340266058,52.14061393914021],[-117.39367666196003,52.1396277340489],[-117.4054076654443,52.13950421740295],[-117.4180515872612,52.14161006775578],[-117.42389195297714,52.143233598989305],[-117.4349433924091,52.146016576701804],[-117.44118447474705,52.1464424338981],[-117.44817899795882,52.144926053380765],[-117.45554339713195,52.14369823757418],[-117.46410329911168,52.14372880268935],[-117.47442982238867,52.1451902287502],[-117.48132089203017,52.146131897907026],[-117.48835279849753,52.14770639196496],[-117.49344888118752,52.15005309188347],[-117.49712057700174,52.15312085684497],[-117.49935014490777,52.15392940781835],[-117.5028594214842,52.155878208045934],[-117.50793872699478,52.15749393474888],[-117.5127743729746,52.15780065467631],[-117.51594561622335,52.15644689379818],[-117.51572248807578,52.15240569785998],[-117.5159373763521,52.14996198748921],[-117.51939570009435,52.14826911759982],[-117.5243515845576,52.145329761394684],[-117.53253301033094,52.14405466080527],[-117.54477370756534,52.14621123688164],[-117.55208933288732,52.14732318929833],[-117.5585044307153,52.14723652351274],[-117.56040555908156,52.14377055739553],[-117.55935218807014,52.13807431102812],[-117.55772659230976,52.13334662580876],[-117.55851046543229,52.13016561310621],[-117.56682558474841,52.128711853105116],[-117.56743581089857,52.128605315310246],[-117.57493590503758,52.13147753109629],[-117.58065386530964,52.134802431497654],[-117.5841567474767,52.137321782881536],[-117.59369987726437,52.13872122357759],[-117.59778643686212,52.13953372772212],[-117.60387933535546,52.142914576339],[-117.60771955026642,52.14810656438858],[-117.61101961705926,52.15335152081056],[-117.61421925876998,52.159117390900015],[-117.61749131488011,52.165273941984005],[-117.62062360777126,52.16926869532098],[-117.62273570658415,52.17069608297997],[-117.63332159731246,52.17170290248077],[-117.63878821156335,52.174393337254486],[-117.64311984491178,52.177996825277226],[-117.64930489750967,52.18353646324536],[-117.65520272192832,52.18782309364364],[-117.65721885268503,52.191816219797346],[-117.65857540815509,52.19563559920791],[-117.66450308418173,52.197871818300456],[-117.67557387231658,52.197395973081555],[-117.68125551592183,52.19724048225513],[-117.69037819496012,52.19630355085979],[-117.69542973288358,52.19267512903107],[-117.70008953083779,52.19069469616542],[-117.7087473677231,52.18855793232827],[-117.7158056845409,52.189829216355605],[-117.72473538946296,52.18888375017689],[-117.7298484040777,52.18906889061022],[-117.73552094520073,52.19033756705383],[-117.7407034399295,52.19370480058297],[-117.74065943917948,52.197864136271214],[-117.73989785126415,52.202071881955945],[-117.74992000548052,52.2032920804907],[-117.75447326765668,52.20432932063407],[-117.76310016547143,52.20822233201287],[-117.77097904478079,52.213026210868094],[-117.7815509392982,52.21702998884385],[-117.7916899259801,52.217734798378935],[-117.80134244479619,52.22037756218529],[-117.80830946045822,52.22340810411698],[-117.81302296363883,52.22797047218716],[-117.81418678690751,52.23793382344653],[-117.81775948213875,52.24602636664342],[-117.82370107380264,52.25036192548963],[-117.83092805427782,52.257039114678584],[-117.83203162495283,52.259087794851716],[-117.83313217219835,52.26154252817692],[-117.83739580568754,52.266564046172505],[-117.8402614096812,52.27077995998723],[-117.84036248720119,52.272586028926696],[-117.84467677117476,52.27360491451956],[-117.84480506268224,52.27376633747625],[-117.84495295584223,52.27392180577093],[-117.84510491600346,52.274075313207376],[-117.8452848242103,52.27421781310607],[-117.84546077226797,52.27436172100833],[-117.84563938636227,52.27450131183755],[-117.84578525121051,52.27465776376849],[-117.845951242803,52.27480549010383],[-117.84616208607788,52.274930989371505],[-117.84640544234682,52.27503113220886],[-117.84666247722852,52.27511757913377],[-117.84694182597131,52.275173994145845],[-117.84722264987066,52.275222621918985],[-117.84750764830639,52.27526871809359],[-117.84778815801138,52.27531901049706],[-117.84806761410655,52.27537487042107],[-117.84833724894632,52.27544357813647],[-117.8486115847609,52.27550697461704],[-117.8488970082149,52.27555084008204],[-117.84917923976289,52.275601810269634],[-117.84942601006459,52.27569372764192],[-117.84963858448018,52.27581991055997],[-117.8498392744376,52.27595032732545],[-117.85004392863496,52.27607932636732],[-117.85025286075843,52.2762052505634],[-117.8504702463206,52.276325559961656],[-117.85068742230206,52.27644698258468],[-117.85090063814326,52.27656981327152],[-117.85111364272893,52.276693766108],[-117.851322582622,52.27681967940527],[-117.85152917293094,52.276948252126076],[-117.85172163238735,52.27708316635315],[-117.85187352314499,52.2772372168982],[-117.85202755501885,52.27738972104932],[-117.85222387486425,52.277523778243754],[-117.8524411680055,52.27764463618805],[-117.85268584944684,52.27774768293203],[-117.85287123451579,52.27788096657166],[-117.85299315257325,52.278047000672046],[-117.85311163444067,52.2782116724249],[-117.85323793727089,52.27837407037491],[-117.85337816263372,52.2785312397329],[-117.85352010591845,52.27868909890351],[-117.8536621547593,52.278846405511416],[-117.85380602944316,52.279003831735544],[-117.85396617428847,52.27915338722111],[-117.8541522343779,52.27929291798741],[-117.85434054023294,52.279430349853904],[-117.85452884728493,52.279567781399564],[-117.85470891559092,52.279709704770084],[-117.85487678022324,52.27985754643548],[-117.85505481701324,52.280000454182876],[-117.85524923041797,52.28013492964712],[-117.8554622982246,52.28026846440064],[-117.85570511371328,52.28035218643971],[-117.85600679020797,52.280339624151374],[-117.85623868120116,52.28023693693149],[-117.85652825985896,52.280229721826274],[-117.85678555652835,52.280315032291014],[-117.85702672321226,52.2804172510288],[-117.85722135526521,52.28055060948857],[-117.85739512264611,52.28069660609867],[-117.85756696351318,52.28084302614368],[-117.85779775512708,52.280951281852396],[-117.85806828268723,52.28101551201119],[-117.85836105130912,52.28103052763563],[-117.85865340504144,52.28101842888331],[-117.85894544186804,52.28100800433067],[-117.85924038877177,52.28100172964881],[-117.85953137410564,52.28099686298877],[-117.85979860725108,52.28106875607051],[-117.86005047987862,52.28116326360754],[-117.86028737915035,52.28126856813089],[-117.86052824274685,52.28137245444599],[-117.86077391289294,52.28147046789629],[-117.86104735686504,52.281538850550625],[-117.86129001424642,52.281633264709505],[-117.86147193492381,52.28177531485081],[-117.86166402750189,52.28191243046052],[-117.86187281111852,52.2820394467856],[-117.86210554759897,52.28214727003054],[-117.8623415107759,52.282257577287886],[-117.86245173231663,52.28240754223318],[-117.86251419563972,52.28257558065337],[-117.86273262860566,52.28270044966562],[-117.86290126989825,52.282844377093234],[-117.86297888244637,52.28302025434634],[-117.86296354076816,52.283199164499635],[-117.86308866845835,52.283348491286404],[-117.86333267164622,52.28345540844456],[-117.86356713664523,52.28356391848804],[-117.86379732634079,52.28367550300104],[-117.8640408770622,52.28377505573443],[-117.86428004467531,52.28387825311379],[-117.86453247048152,52.28396996209119],[-117.86480997028235,52.28402676637105],[-117.86510363710991,52.284046909411344],[-117.86535069990688,52.28413767859542],[-117.86555361574948,52.28426652087551],[-117.86576059877275,52.28439340142822],[-117.86598876471761,52.284505966650364],[-117.8662081635651,52.28462582188601],[-117.8664046662841,52.284759293004285],[-117.86662000159205,52.284881108817586],[-117.86683544247974,52.28500237184081],[-117.86702167363113,52.285141328923366],[-117.86719784284354,52.28528465019799],[-117.86737176898026,52.28543007001711],[-117.86755190385523,52.2855719727763],[-117.86773621195809,52.28571135252526],[-117.86791624316335,52.28585381597498],[-117.86807411359345,52.28600600237369],[-117.8681793853001,52.286172537943585],[-117.86827480324632,52.28634233323439],[-117.8684317308441,52.28649952613549],[-117.86865742411199,52.2866057082255],[-117.86894553629632,52.28665534923354],[-117.86923575170844,52.28666451201919],[-117.86953122611166,52.28664583234324],[-117.86981968626579,52.28661537288349],[-117.87010239398698,52.286566451668335],[-117.87038945038222,52.286533634985915],[-117.87068331226706,52.286543051062495],[-117.87096138933417,52.28648928770498],[-117.87123750120855,52.28642635740878],[-117.87151719002104,52.286373834829575],[-117.8717437313974,52.28647555622791],[-117.8719277405851,52.28661660417759],[-117.87211978184503,52.286754263226186],[-117.87232273013942,52.28688309339022],[-117.87256396850636,52.28698528817574],[-117.87282838545464,52.28706259082397],[-117.87310528520864,52.28712271612982],[-117.87337215826788,52.287196804917585],[-117.87362697105532,52.28728584252391],[-117.87387473827694,52.28738284247728],[-117.87414939751801,52.28744506422464],[-117.87443001719551,52.28749529165235],[-117.87467105373258,52.28759859568095],[-117.87492843172889,52.287683856460966],[-117.87520523243457,52.287744538014806],[-117.87549675536586,52.287756593240125],[-117.87579016856756,52.28775863352355],[-117.8760841458905,52.28776747460425],[-117.87637615600067,52.28776715767604],[-117.87666809366077,52.2877476418027],[-117.87696112448909,52.28776149668035],[-117.87724900571328,52.28780264049081],[-117.87751020920976,52.28787744834626],[-117.87770753441859,52.28801659671825],[-117.87795341670497,52.28809427026134],[-117.87824866306939,52.28812577344199],[-117.87848294407068,52.28822576749445],[-117.87876525484688,52.28826707492237],[-117.87905772698056,52.28827411406047],[-117.8793516025813,52.28828350814827],[-117.87964361783344,52.28828317407956],[-117.87993731215626,52.28827393868983],[-117.88023689898631,52.28826285117834],[-117.88044470875343,52.28836606106974],[-117.88045742178437,52.28854355619857],[-117.88059125615851,52.28870588381161],[-117.88065316884772,52.28887725268163],[-117.88064122952761,52.289058095923046],[-117.88061663054302,52.28923747976721],[-117.88060093780355,52.289418627659444],[-117.8806510693219,52.28959368140395],[-117.88078308569729,52.28975587145675],[-117.88095258788316,52.28990546854514],[-117.88092560115106,52.29007792254094],[-117.88078940526908,52.29024155636652],[-117.8806829116818,52.29040446297251],[-117.88073069492988,52.29058217692249],[-117.88081428517009,52.29075619866792],[-117.8809115882451,52.29092610232596],[-117.88100503289444,52.29109687189597],[-117.881053029993,52.29127346302087],[-117.88108419207441,52.29145113578797],[-117.8812143920101,52.29161319682478],[-117.88130997903986,52.29178241935942],[-117.88137470618689,52.29195849874473],[-117.88142249399665,52.29213621219301],[-117.88154743603569,52.29229677423317],[-117.88168952737284,52.29245459718211],[-117.88182797218552,52.29261216338398],[-117.88196803173149,52.292770971362266],[-117.88210830236768,52.29292866546478],[-117.8822465401667,52.29308734479489],[-117.88237299590092,52.29324970908038],[-117.88253736007795,52.29339725256198],[-117.88271158050217,52.29354153474701],[-117.88285774793216,52.29369738526108],[-117.88298024584792,52.29386115836201],[-117.88305483644231,52.294033984363],[-117.88312728955952,52.29420834811294],[-117.8832168939786,52.29437996372615],[-117.88327626536008,52.294555104538304],[-117.88329221950879,52.29473508237656],[-117.88334422387972,52.294998284354946],[-117.88351031773577,52.29514650689623],[-117.88367662276315,52.29529361549486],[-117.88382665743961,52.29544860738057],[-117.88398686288886,52.295598671826944],[-117.88417512459397,52.29573716713377],[-117.88434336225178,52.29588385055817],[-117.88449736509678,52.2960374229909],[-117.88466153711414,52.29618607682683],[-117.88482967400603,52.29633331188337],[-117.88498175038411,52.29648731668856],[-117.88511808199071,52.29664641631509],[-117.88524070098771,52.29680963425959],[-117.88534574930625,52.29697782781121],[-117.88546461797976,52.297141341424336],[-117.88564068725556,52.29728574700342],[-117.88581086574425,52.29743199503736],[-117.88597087544927,52.29758317019841],[-117.88611321029707,52.297739873382135],[-117.88623187231066,52.29790450871024],[-117.88635053690803,52.2980691349862],[-117.8864771267806,52.29823094177122],[-117.88659568738234,52.2983961290539],[-117.88668166616077,52.298567485024094],[-117.88673709510992,52.29874403317019],[-117.88683057967708,52.29891479699801],[-117.88693767501441,52.299081994428114],[-117.88704862761823,52.299248343344544],[-117.8871363281502,52.299420388357035],[-117.88719014592128,52.29959569428626],[-117.88731257114983,52.29976002335278],[-117.8874179504791,52.29992653964874],[-117.88743734709058,52.30000012320482],[-117.88746201957973,52.300104545512184],[-117.88748367552984,52.30028379286341],[-117.8875792004629,52.300453570379034],[-117.88766701136996,52.3006250535282],[-117.88776639601882,52.30079397352226],[-117.88788903678382,52.300957188136124],[-117.88802528737794,52.30111684508744],[-117.88819142080081,52.30126506021263],[-117.8884241165117,52.30137394266608],[-117.8886916947164,52.30143505528429],[-117.88888792342611,52.3015707139034],[-117.88908660732592,52.3017031592625],[-117.889233349309,52.301856220968],[-117.88926606280836,52.30203568430461],[-117.88928204466178,52.3022156602646],[-117.88927936296459,52.302396590906184],[-117.88916827915628,52.302564254595055],[-117.88888832164234,52.30259819132784],[-117.88859530641135,52.30261314591165],[-117.88831195013299,52.30265530130271],[-117.88803986657082,52.302725899435856],[-117.8877991234492,52.30282634147715],[-117.88757378780153,52.302943095196255],[-117.88732647951231,52.30303913004541],[-117.8871096327405,52.303159864850386],[-117.88710195470608,52.303328031983966],[-117.88728254308461,52.30346823601002],[-117.88732286256356,52.30364653744269],[-117.88732778546718,52.3038263056084],[-117.88730685270704,52.304005954084964],[-117.88717424541281,52.30416025993737],[-117.88711145897959,52.304336398624365],[-117.88713129129721,52.304515517256206],[-117.88716410223451,52.30469442842493],[-117.8871931606606,52.304873635565286],[-117.88720548628677,52.30505335503037],[-117.8872384037739,52.305231704805614],[-117.88725651684592,52.30541014271276],[-117.88723365452228,52.30559021515178],[-117.88719265264213,52.305768453265046],[-117.88719575088606,52.3059480929475],[-117.88721751281689,52.30612678714271],[-117.88709974391675,52.30629059454616],[-117.88699218456327,52.30645907332192],[-117.88692605943754,52.3066332891335],[-117.88692347344438,52.30681365780004],[-117.8868788219984,52.30699163033254],[-117.88685809584649,52.307170164601295],[-117.88689831118427,52.30734902696254],[-117.88688316406251,52.30752738447614],[-117.88685503577457,52.30770595827349],[-117.88689911048992,52.30788396326942],[-117.8869074709988,52.30806510093131],[-117.88685797486643,52.30823934765008],[-117.88674342605609,52.30840564708681],[-117.8866663518132,52.30857908438934],[-117.88661815270162,52.30875624779253],[-117.88659356563491,52.30893563904978],[-117.8865855046411,52.30911562278463],[-117.88657561908094,52.30929547829334],[-117.8866257978626,52.30947052673208],[-117.88678178592579,52.3096236703143],[-117.88688943182495,52.30978808664436],[-117.8869144499029,52.30987109194774],[-117.88694242142951,52.30996784599179],[-117.88717210325771,52.31006353385359],[-117.88746245285502,52.31009240109052],[-117.88775391997167,52.31010553896094],[-117.8880470655188,52.310109775547915],[-117.8883414727075,52.31010732038608],[-117.888634369448,52.31010307023844],[-117.88892982472194,52.31009505407452],[-117.88922261718065,52.310091354828586],[-117.88951141878823,52.310108823771635],[-117.88979020984151,52.31016958867693],[-117.89006791108041,52.310226331317295],[-117.8903480674002,52.31027986037161],[-117.89063323720379,52.310326410508885],[-117.89092040269036,52.31036237545727],[-117.89121288108339,52.31036034617358],[-117.89150770960636,52.31035565559873],[-117.89179875825666,52.31037101958774],[-117.89207306553337,52.31043597751303],[-117.89231490185998,52.31053590192816],[-117.89250722014421,52.310672963318794],[-117.8927140948138,52.31080145918859],[-117.892819312013,52.310969082830354],[-117.89294263035451,52.31112894973194],[-117.89316244899291,52.311247637751435],[-117.89340303490289,52.3113542330692],[-117.89364926399463,52.311450508442285],[-117.89390352627507,52.3115434021581],[-117.8941608749967,52.31162973232745],[-117.8944572610865,52.31163643625309],[-117.89471364804548,52.311698441022216],[-117.89489121253156,52.31184518636933],[-117.89499612682481,52.31201447398502],[-117.89516243012827,52.31216212546967],[-117.89535100963279,52.31229948714262],[-117.89553948627065,52.31243740088646],[-117.8957218590214,52.312578280133394],[-117.89590209442642,52.31272069711179],[-117.89604462089446,52.31287682494853],[-117.89620472359917,52.31302798416218],[-117.89643964138749,52.31313531149178],[-117.89664674932631,52.313262686405274],[-117.89684817459775,52.3133907905172],[-117.89712443739046,52.313455311987546],[-117.89737110628359,52.313549351909664],[-117.89749346317544,52.313704630835744],[-117.8975094836155,52.313884604022746],[-117.89754062563026,52.31406282161621],[-117.89756608391366,52.31424176879208],[-117.8976348742583,52.31441642596953],[-117.89774011935127,52.31458404467489],[-117.89791833525419,52.3147274439697],[-117.8981130382886,52.31486184385245],[-117.89831181158536,52.314994272030845],[-117.89850844753929,52.315128237933884],[-117.89874422143285,52.31523110563224],[-117.89896491749906,52.315345318576036],[-117.89914752342503,52.31548507841993],[-117.89932178435413,52.31562988554586],[-117.89947590914187,52.31578344462234],[-117.89961428384763,52.315942100406794],[-117.89975244985067,52.31610186970524],[-117.89996887422588,52.31621916577186],[-117.90021644540079,52.31631834352844],[-117.90046026401767,52.3164178171817],[-117.90068633953493,52.31653297199255],[-117.90091690472838,52.31664392749999],[-117.90117675175706,52.31672702863279],[-117.90144140190185,52.31680426420917],[-117.90170840119954,52.31687884733997],[-117.90199576700024,52.31692382225403],[-117.90227145121513,52.316971922242644],[-117.90237103623339,52.317140266256686],[-117.90242858766334,52.31731581858875],[-117.90255894392688,52.317477861282846],[-117.90271126359117,52.31763127898195],[-117.90286937268701,52.317783414192995],[-117.90296531207893,52.31795150170443],[-117.90302437662001,52.31812885658042],[-117.90307421301921,52.31830612409937],[-117.90319117289312,52.31847060257625],[-117.90330802799923,52.3186356422204],[-117.90341643035029,52.31880629980847],[-117.90356380611829,52.31895655262438],[-117.90381224142436,52.31905125877422],[-117.90407053549526,52.319142710497886],[-117.90430582133756,52.3192483463742],[-117.90448611286648,52.31939074927374],[-117.9047101800802,52.319506881762415],[-117.90491488914883,52.31963745447956],[-117.9051374473573,52.31975179210778],[-117.90540363456373,52.31983081247252],[-117.90563945053964,52.31993366577864],[-117.9058380606619,52.320067194242355],[-117.90604950830601,52.320191466352966],[-117.90627327035688,52.32030926185486],[-117.90652417142869,52.320400757776376],[-117.90677131955793,52.32049254978468],[-117.90697838929,52.320620457918835],[-117.90718973730937,52.32074528920632],[-117.90739274030159,52.32087516824158],[-117.90759167364465,52.32100702749792],[-117.90780709619936,52.32112987703388],[-117.90803331988633,52.321244464703895],[-117.90824702373239,52.32136663313911],[-117.90843740617703,52.32150465280735],[-117.90864286844844,52.32163132521488],[-117.90888193480072,52.32173664599928],[-117.90910216630083,52.32185362780668],[-117.90929693624682,52.32198800817019],[-117.90946750162342,52.32213310494762],[-117.90958825034397,52.32229727976229],[-117.90967233159905,52.32246961026737],[-117.90978118937389,52.322638025067626],[-117.9099400740662,52.32278625651574],[-117.91016213892681,52.32290336404701],[-117.91028085780795,52.323068523926004],[-117.91046749835982,52.3232068457388],[-117.91070699682331,52.32330993521017],[-117.9109634602376,52.32339165354757],[-117.91115620827438,52.32352701652619],[-117.91131029941526,52.3236811113353],[-117.9115305474051,52.32379808835609],[-117.91176749259024,52.32390495023518],[-117.91198935871405,52.324023167880505],[-117.91220084341874,52.324147428396905],[-117.91237721769122,52.3242912290143],[-117.91255208122881,52.324433235440644],[-117.91276560420592,52.32455650896382],[-117.91290426524702,52.324714034095855],[-117.91305685491291,52.3248663325415],[-117.91324137359636,52.32500618803403],[-117.9133875482231,52.325163109935104],[-117.91354400109908,52.32531454952569],[-117.91371834994199,52.325459333914964],[-117.91386291196696,52.325615013674835],[-117.91399537084529,52.32577605652469],[-117.91414572571051,52.32593044416731],[-117.91429607997544,52.32608484050628],[-117.91443636741218,52.326243605098995],[-117.91448991061846,52.32642112211542],[-117.9146097026502,52.32658070853358],[-117.91478963998713,52.326725322040176],[-117.9149498596166,52.32687645374784],[-117.91510225643313,52.32702985405474],[-117.91525423391093,52.32718549048692],[-117.91544936192963,52.32731818493495],[-117.91569906064606,52.327347511863344],[-117.915899666826,52.327480588758384],[-117.91608550702104,52.32762335593038],[-117.91625162931956,52.327772641501994],[-117.91634732811575,52.327942391671705],[-117.91644569210897,52.328107805685924],[-117.916661279094,52.32823008569852],[-117.91687858718794,52.32835305433495],[-117.9170712720738,52.328488959369764],[-117.91725988702761,52.32862684498743],[-117.91745257433469,52.32876274936021],[-117.9176332620636,52.32890346464919],[-117.91781363783296,52.32904584576639],[-117.9180064325704,52.32918119677031],[-117.91821133317502,52.32931118372689],[-117.9184104438882,52.32944246225218],[-117.91856489512611,52.32959488059258],[-117.9187618696589,52.32972769691711],[-117.91896270394705,52.32985966345959],[-117.91900651501186,52.33003988061339],[-117.91887039557984,52.330193402881],[-117.91892704315559,52.330364362672235],[-117.91909918468238,52.33051124707063],[-117.91926339920072,52.330660952715135],[-117.91941347514036,52.33081700798304],[-117.9196089454261,52.33094802893542],[-117.91984156549535,52.33105852085471],[-117.92006552525774,52.33117573635272],[-117.9202963238675,52.33128609075985],[-117.92056527077631,52.331360757314],[-117.92081209296052,52.33145474607327],[-117.92103595362597,52.33157251206902],[-117.92124729208437,52.33169786909075],[-117.92144214421197,52.33183222803677],[-117.92162875292827,52.331971092269825],[-117.9218257477207,52.332103903148806],[-117.92206062370354,52.33221229071524],[-117.9223174187577,52.33230245950998],[-117.9225661811604,52.332396010787875],[-117.9227331810428,52.33254083162536],[-117.92286324103209,52.33270507703403],[-117.92297765285326,52.33287386099457],[-117.92315363198377,52.33301028186754],[-117.92340735330171,52.333107002928486],[-117.92365111091785,52.33320754026204],[-117.9238903817002,52.33331227676287],[-117.9241126422598,52.33342880422552],[-117.9243346965224,52.333546436069945],[-117.92457610939036,52.33364963259658],[-117.92478971225405,52.33377288310893],[-117.92496392378857,52.33391876337753],[-117.92507156643956,52.33408425487289],[-117.92515938376218,52.334256827760655],[-117.92532008591853,52.33440571680838],[-117.92550864931441,52.33454414079439],[-117.92568297012248,52.334689467486974],[-117.92586757166383,52.334829301833025],[-117.92607507955263,52.33495550831604],[-117.92628858775363,52.335079317264686],[-117.92649171555888,52.33520916143206],[-117.92669473919037,52.33533956655098],[-117.92690105356283,52.33546230274951],[-117.92704548748401,52.335619078606804],[-117.92715590823768,52.33577968817856],[-117.92720403831477,52.33595681533702],[-117.92736433563874,52.33610792881966],[-117.92748733171919,52.336270535727635],[-117.92762018857269,52.336429886640225],[-117.92777073295133,52.33658370293984],[-117.92790134784629,52.336745153404955],[-117.92800665944625,52.336913303052064],[-117.92817317316005,52.33706089542814],[-117.92839290781602,52.3371811804175],[-117.92858832877718,52.337312746918776],[-117.92875453157092,52.33746201346835],[-117.9289048745167,52.33761694190644],[-117.92903742797643,52.3377779571746],[-117.92913246830614,52.33795158909209],[-117.9292659635967,52.33810759671603],[-117.92947808880223,52.33822904450378],[-117.92971849654198,52.338337789713805],[-117.92993641614036,52.3384579441434],[-117.93010241895634,52.33860832236415],[-117.9301907890314,52.33877810205174],[-117.93024644746984,52.33895462384906],[-117.93029234978741,52.33913384924923],[-117.93033846152888,52.33931196087283],[-117.93037309477933,52.33949209619326],[-117.93042134754873,52.33966866018777],[-117.93051551153248,52.33983715586646],[-117.93065793824549,52.33999491292538],[-117.93079222612252,52.34015661471915],[-117.93088868661864,52.34033259984849],[-117.93110365004169,52.340439004596654],[-117.9313814412735,52.34050635049123],[-117.9316607449678,52.3405754982627],[-117.93189084086688,52.34068014155311],[-117.93207710508378,52.34082120659357],[-117.9322510553369,52.340968750185766],[-117.93239156080826,52.34112693882365],[-117.93252111305937,52.34128435351677],[-117.93271218254802,52.34141955132894],[-117.93283876056847,52.3415829681636],[-117.93289067610137,52.341759794695044],[-117.93298313359577,52.34192759930841],[-117.93315333570189,52.34207543890155],[-117.9332834151928,52.34223007274293],[-117.93332750756178,52.34240916902751],[-117.93336074768375,52.342586948091956],[-117.93332892769513,52.342766387082555],[-117.93321274556254,52.342932039145325],[-117.9330297348262,52.34306933146883],[-117.93283232337032,52.34320449000127],[-117.93275986030957,52.34337375322065],[-117.93273502723949,52.343555376877305],[-117.93266892621618,52.34373016613573],[-117.9324855976893,52.34386912366283],[-117.93228666745881,52.34400248756393],[-117.9321014050924,52.34414187829868],[-117.93195359866526,52.34429855187434],[-117.93185890250916,52.344467959644206],[-117.93178710913016,52.344643479556034],[-117.93174088104489,52.34482078421018],[-117.93173655015725,52.345001573425165],[-117.93175220152439,52.34518432628366],[-117.93174818336527,52.34536344930685],[-117.93167915404814,52.34553408918286],[-117.93150984536597,52.34568700471633],[-117.9312834142906,52.345799257057955],[-117.93102067283976,52.34588810447278],[-117.93083879160937,52.34601927197361],[-117.93077012205599,52.34619782591414],[-117.93073108754788,52.34637620127827],[-117.93070849022996,52.3465557152172],[-117.93070070981773,52.34673514432921],[-117.93069465186151,52.346915253327495],[-117.93066292297404,52.34709412967021],[-117.93057004185547,52.347263663526924],[-117.93038799426945,52.34740553364003],[-117.93016436572998,52.34752250248143],[-117.92998800355957,52.3476636407451],[-117.92974799362906,52.347769301182595],[-117.92956891670543,52.347905176439404],[-117.92955502687258,52.34808755499222],[-117.92952876954892,52.348266822334175],[-117.92950079111708,52.348445400807286],[-117.92946357729328,52.348623894047996],[-117.92943184037621,52.34880277872885],[-117.92942588222917,52.348982326057616],[-117.92942905391457,52.34916251988244],[-117.92943233102031,52.34934215236558],[-117.92943743447955,52.349521912345786],[-117.929436955258,52.349701842141755],[-117.92941940993362,52.34988397429219],[-117.92941345158562,52.35006352147101],[-117.9294642696807,52.35023631837393],[-117.9295926876219,52.35039986516072],[-117.92972507211178,52.35056200069038],[-117.92985970386822,52.350722027208356],[-117.93000806146799,52.35087793884243],[-117.93014300807943,52.351036298863335],[-117.93022153905781,52.351209341834036],[-117.93029031299362,52.35138507944685],[-117.93036863609562,52.351559235994756],[-117.93043386205593,52.35173416605419],[-117.93042811677358,52.35191259930667],[-117.93034383295358,52.35208555864711],[-117.93032112564707,52.352265633038634],[-117.93039052898645,52.35243802928224],[-117.93049954148697,52.35260642964823],[-117.93055715087308,52.3527825156061],[-117.930603278287,52.35296062525304],[-117.93064950979605,52.35313818245094],[-117.93069391686782,52.35331560319454],[-117.93074197562802,52.35349328780911],[-117.93078445155253,52.3536711422845],[-117.93081941267262,52.35384960044311],[-117.93085254756073,52.35402793106714],[-117.93088182056427,52.35420712038168],[-117.93090916356026,52.35438673457176],[-117.93092716328908,52.35456683387199],[-117.9309870217895,52.354740819406445],[-117.93111180578369,52.354904108952766],[-117.9312245858436,52.35507220199355],[-117.93131998585571,52.35524416368068],[-117.93134268796709,52.35541894026358],[-117.9312888256788,52.355597408339996],[-117.93125516088945,52.35577671747439],[-117.93126403129486,52.35595617015607],[-117.93127462299906,52.3561363116202],[-117.93126866983236,52.35631586694182],[-117.93125713302133,52.356495592165714],[-117.93124376947996,52.35667518987089],[-117.93123223246921,52.35685491504284],[-117.93122069536236,52.357034640188836],[-117.9312036781886,52.35721398282863],[-117.9311884875379,52.357393452934915],[-117.93118243012118,52.357573560483935],[-117.93119302188168,52.3577537017321],[-117.93119448029377,52.357933205486766],[-117.93116650248767,52.35811178303569],[-117.93112208412984,52.358289213102424],[-117.93107025484673,52.35846668555082],[-117.93101304870972,52.35864322305862],[-117.93094681220839,52.358818570623676],[-117.93088240357318,52.35899403671604],[-117.93083980987818,52.35917159405314],[-117.93079142106563,52.359350443882185],[-117.93076354607456,52.359528459826606],[-117.93081954647226,52.35970331241172],[-117.9308998189745,52.35987703367568],[-117.93098009212294,52.360050754860985],[-117.93104716017868,52.3602258109329],[-117.93111036607033,52.360401725670336],[-117.93115660930945,52.36057927274321],[-117.93118202528022,52.360759319810775],[-117.93123223567679,52.36093545567164],[-117.9313453448139,52.36110188169778],[-117.93148601790702,52.36125950767118],[-117.9316404217405,52.36141300967761],[-117.93178903163742,52.36156780404005],[-117.93192349459648,52.36172894944024],[-117.93202888450446,52.36189708329708],[-117.93208092654619,52.3620733461175],[-117.93210838323422,52.36225240653826],[-117.93211877089918,52.36243366077324],[-117.93211282037593,52.362613215271686],[-117.93209215091846,52.362792302317764],[-117.93205676234416,52.36297092190368],[-117.93201589107231,52.363149167923986],[-117.9319731942178,52.36332727751506],[-117.93193049533792,52.36350539597583],[-117.93188607456975,52.363682825601956],[-117.93183972277114,52.363860680106875],[-117.93179347431654,52.36403798216641],[-117.93174529312691,52.36421571801147],[-117.9316952795759,52.36441306684913],[-117.93170964261807,52.36438586140715],[-117.93173643796081,52.364331875434054],[-117.93177998870861,52.36427737069],[-117.93185334284371,52.364231715425774],[-117.93193974320579,52.364195437283726],[-117.93207087706251,52.364167353329535],[-117.93221866244072,52.364139302803714],[-117.93229065107943,52.36412063139258],[-117.93232030054439,52.36412044356839],[-117.93242147632323,52.3640744726333],[-117.93253930353619,52.36402853513954],[-117.93262555046662,52.36398321036782],[-117.93272657145663,52.3639282019578],[-117.93285865470179,52.36385561986754],[-117.93297388294403,52.363764368433124],[-117.93308931542435,52.36369174369298],[-117.93319018090294,52.36362769766158],[-117.9333077464372,52.36357328348027],[-117.93343872322345,52.363536160761896],[-117.93355502958201,52.36350816917338],[-117.93368798722867,52.363480210834254],[-117.93383409664605,52.363461067990265],[-117.93390639222898,52.36346046997991],[-117.93398036033655,52.36345096216801],[-117.93411133617299,52.36341383868758],[-117.93422931423804,52.3633769366621],[-117.93430099179591,52.36334018958137],[-117.93435925905374,52.363286142066244],[-117.93441564844188,52.3632223774649],[-117.93442990401014,52.36319573297673],[-117.9344734502096,52.3631412271753],[-117.93454471444005,52.36308695792766],[-117.93463257890778,52.363023132251406],[-117.93470337741338,52.36294176018597],[-117.93474620108115,52.36285165784163],[-117.93477492226144,52.36279724613555],[-117.93480197104003,52.36275174419334],[-117.93481576248895,52.36269798801858],[-117.93484448347925,52.36264357628881],[-117.93485812192945,52.36258077398415],[-117.93488699737767,52.36253539945005],[-117.93489896176075,52.36248151582148],[-117.93489818880319,52.362436329763895],[-117.93491198170375,52.36238256465497],[-117.93491120873433,52.36233737859411],[-117.93492499991476,52.36228362238934],[-117.93493889641454,52.362229304864634],[-117.93495284380006,52.362184576955734],[-117.93496674023292,52.36213025942359],[-117.93497885901105,52.3620854129841],[-117.93499260076956,52.36202205823032],[-117.93503604139453,52.36196810457533],[-117.93512207599069,52.36190415104125],[-117.93514923603772,52.36181860654939],[-117.93522033047024,52.3630274648804],[-117.93561061724762,52.36302873628971],[-117.93590282028548,52.363049676104495],[-117.93619079227192,52.36308330004883],[-117.93647677837343,52.363127508114424],[-117.93675467270981,52.36318525036302],[-117.93701497259597,52.36326771581476],[-117.93725893226333,52.363368222230086],[-117.93748107108077,52.363486387525604],[-117.93769078663969,52.363611584124165],[-117.93787769036956,52.36374985751023],[-117.93800842529538,52.36391129322699],[-117.93811384423968,52.36407942127986],[-117.93820970953601,52.3642491486655],[-117.93830354131632,52.3644198533857],[-117.93839747748177,52.364590005599354],[-117.93849710433723,52.3647594261225],[-117.93858910968692,52.36493001207715],[-117.93864300919427,52.36510639892332],[-117.93865180692629,52.365286411075225],[-117.93863471373963,52.36546630607801],[-117.93854892357842,52.36563746715743],[-117.93845765161016,52.365808246015575],[-117.93832571423525,52.3659688602738],[-117.93827442693869,52.36614355503579],[-117.9383111525533,52.36632268902081],[-117.93839157117515,52.366495851817064],[-117.93850075572968,52.36666368153781],[-117.93865765782171,52.36681395978132],[-117.93885486240627,52.36694674709916],[-117.93906428617568,52.36707360701898],[-117.93928206265457,52.367195416290976],[-117.93950443565575,52.36731246364437],[-117.93973537194074,52.367423337635444],[-117.93997894357682,52.36752606547008],[-117.94023885796057,52.367610750875265],[-117.94052890243948,52.36762362818443],[-117.94081497530586,52.36767741498958],[-117.94106909665301,52.36776339155026],[-117.9412321198073,52.36791070701514],[-117.9413389687616,52.368081195327704],[-117.94140201921833,52.36825821713291],[-117.94149597595755,52.36842836634085],[-117.94164036435188,52.368586233788804],[-117.94184849847724,52.36871018133341],[-117.94209411847027,52.36881191822665],[-117.94234475252367,52.368906665526886],[-117.9426001900075,52.3689955458435],[-117.94285327835418,52.36908708706505],[-117.94310636944556,52.36917861881882],[-117.94335058557158,52.369277998251235],[-117.94357726130023,52.36939195102784],[-117.94379099010595,52.36951572449691],[-117.94400054443884,52.36964202285496],[-117.94420367940708,52.36977294630151],[-117.9443725149646,52.36991897285129],[-117.94455581294656,52.37005698025171],[-117.9448193529238,52.37013232024918],[-117.94509620796424,52.37018601242681],[-117.94535165868919,52.37027488660514],[-117.94564276629863,52.37030193178852],[-117.94593110662426,52.37033386524468],[-117.94622153688032,52.37035465171714],[-117.94650841655437,52.37039437988866],[-117.94679529842684,52.3704340984405],[-117.94708713784526,52.370457246377015],[-117.94737788178466,52.370476363805054],[-117.94767097595089,52.370492818937905],[-117.94796506098386,52.37051386442404],[-117.94823262950378,52.370577625167655],[-117.94847890135871,52.3706760071954],[-117.9487281504177,52.37076838588572],[-117.94899556531178,52.37084285705907],[-117.94922633617003,52.37095482561791],[-117.9494999647852,52.371006025366135],[-117.94978528743337,52.37105409402665],[-117.95007342028694,52.37102789183787],[-117.95032087333145,52.370932289578384],[-117.95060978897688,52.37091178196105],[-117.95089776240674,52.37087654059226],[-117.95119049227235,52.370885072360196],[-117.95148285955834,52.370905420428095],[-117.95177401905293,52.370882809597994],[-117.95205958855705,52.370840628538886],[-117.95233570448389,52.3707797367171],[-117.95261020095974,52.37071760333376],[-117.95281717975386,52.37059097316608],[-117.95307318976823,52.37050893156442],[-117.95336131698441,52.37048272120819],[-117.9536013954195,52.37037701379399],[-117.95388461188115,52.370337481009024],[-117.95403576870774,52.37018271198908],[-117.9542912517141,52.370103456506875],[-117.95457660503307,52.370062382984486],[-117.95484717694059,52.369991505318936],[-117.95512751398914,52.369937670691094],[-117.95542091357993,52.369932699662165],[-117.95570845947294,52.36989967384468],[-117.95599310219555,52.36994147009183],[-117.95628572329746,52.3699505414459],[-117.95657704408261,52.36997644547569],[-117.95686476480122,52.370011693059496],[-117.95714539202329,52.37006505827406],[-117.95742398416594,52.370119409484644],[-117.95769344748305,52.37019286508211],[-117.95797470234643,52.37024288701615],[-117.95826034126175,52.37028926870455],[-117.95855155483679,52.37029597976625],[-117.95884098428441,52.3702726628139],[-117.95911739884622,52.37021008866112],[-117.95936968369055,52.370118189500495],[-117.95962802597901,52.370033480526324],[-117.95988950157687,52.36995180500055],[-117.96010637687846,52.36983149281864],[-117.96036351397659,52.36974331386889],[-117.96061871771562,52.369655568650494],[-117.9608535020371,52.36954834241852],[-117.96104405397786,52.36941040335293],[-117.9612410801628,52.36927742709388],[-117.96144489234324,52.36914774741884],[-117.96168301294324,52.36904244860282],[-117.96194427027511,52.368961882154004],[-117.96223012883273,52.36891800983437],[-117.96252048381578,52.36888967619771],[-117.96281131223309,52.36886870385869],[-117.96308870592321,52.36881070224995],[-117.96335904766508,52.36874091845496],[-117.96363262468962,52.368673624438415],[-117.96386457498801,52.36856168300068],[-117.9641050910337,52.368463315742865],[-117.96439366201089,52.368424699538586],[-117.96468380395648,52.368397474252916],[-117.96497457040486,52.368366906928586],[-117.96525990206767,52.36832580710457],[-117.96552689438828,52.36825409812197],[-117.9657892372227,52.36817755258587],[-117.96607247353153,52.3681278480224],[-117.96632473138826,52.36803593360854],[-117.96656596859086,52.36793365855135],[-117.96682741666548,52.36785197618571],[-117.96710067112986,52.36778634016158],[-117.96736979743142,52.367713078722204],[-117.96764607995168,52.36765103658281],[-117.96791468312573,52.36758056276964],[-117.96816301294695,52.36747991470639],[-117.96842357756543,52.36741282582914],[-117.96872187391577,52.36742113281061],[-117.96900395771958,52.367377542396675],[-117.96926842768063,52.367299449634444],[-117.96954731838042,52.36724322563863],[-117.96983566816877,52.36720570965698],[-117.97010912211596,52.3671389527412],[-117.97028136196509,52.36699972946144],[-117.97043620755092,52.36684463111592],[-117.97064629633856,52.366710851640114],[-117.970893019933,52.36664844690193],[-117.97104002040797,52.3668126530883],[-117.97120230811947,52.366964390620765],[-117.97136694529576,52.36711346585534],[-117.97151764939946,52.36726777418808],[-117.97168635946251,52.36741487508449],[-117.97187307558458,52.36755476846859],[-117.97208108345322,52.36767977570409],[-117.9723138293924,52.36779126415705],[-117.97254485251666,52.36790207285465],[-117.97278015555996,52.368009793403836],[-117.97303340699887,52.3681007075715],[-117.97329114629277,52.36818741969666],[-117.97352420936714,52.36829723945681],[-117.97372998221363,52.36842434441423],[-117.97390063480194,52.36857101634908],[-117.97404717754058,52.36872785650816],[-117.97417816771026,52.368888689521604],[-117.97432288525171,52.36904540247852],[-117.97448967968045,52.369192933637464],[-117.97468272831827,52.369328738688445],[-117.9748924753304,52.36945442887635],[-117.97511892404385,52.3695699862929],[-117.97535658916107,52.36967504827093],[-117.97561199598599,52.36976440835983],[-117.97588977737911,52.369823170443375],[-117.9761650033428,52.36988570779468],[-117.97642755909418,52.36996653611181],[-117.97667827355086,52.37006121813558],[-117.9769093200364,52.37017201795904],[-117.97711480064862,52.37030078296836],[-117.97729147500897,52.370445041087216],[-117.97741861812138,52.37060673940215],[-117.97754169316231,52.37077040270445],[-117.97767849581135,52.37092994557622],[-117.97774790873291,52.37110343370888],[-117.97779435533798,52.371280960717435],[-117.97789791026857,52.371450047624315],[-117.97794456583449,52.37162646073434],[-117.97801194556442,52.37180093565168],[-117.9781076738282,52.37197229530491],[-117.97821702670899,52.37214008695805],[-117.97811456175607,52.37230221230108],[-117.97793841883056,52.37245245778546],[-117.97785673840076,52.3726222253352],[-117.97801612958132,52.37275005604098],[-117.97832428641618,52.3727652202514],[-117.9786236008276,52.37275834328891],[-117.97889586418711,52.372807119379424],[-117.97914363023422,52.372907790536225],[-117.97940141052305,52.37299448878286],[-117.97966858106449,52.37307055543569],[-117.97993126589152,52.373150823194365],[-117.98019160358415,52.37323375257358],[-117.98044704148873,52.37332310178705],[-117.98070347464476,52.37341704123607],[-117.98086414211555,52.373557925568136],[-117.98093843253585,52.37373512405233],[-117.98098123841758,52.373912404921384],[-117.9809514209008,52.374091979326565],[-117.98096984730445,52.37427094540352],[-117.98099375479778,52.374450300489066],[-117.98100852644811,52.374629013094044],[-117.98108333823626,52.37480343131021],[-117.98114097412771,52.37498061183692],[-117.9811114692279,52.37515851099031],[-117.98108958539876,52.37533525070397],[-117.9811396006826,52.375513590567536],[-117.98122600376969,52.375685427428486],[-117.98137452801623,52.375841831753],[-117.98157577006695,52.37597367629031],[-117.98180420161871,52.37608879435445],[-117.98206846710977,52.376160708090644],[-117.98235344434747,52.37621092414185],[-117.98262074477977,52.37628642246484],[-117.98289940917266,52.37634071230723],[-117.98318422381062,52.37638188926395],[-117.98344886606063,52.37646172309535],[-117.98370177390161,52.37655484100715],[-117.98396265981272,52.37663497276971],[-117.98425524647163,52.376664275297074],[-117.98453303596906,52.37661413715492],[-117.98480773098484,52.37655081416091],[-117.98508666123159,52.376494553247355],[-117.98536710584686,52.376440093457376],[-117.98564331529796,52.376378561364504],[-117.98592792951341,52.37637120496168],[-117.98614682104446,52.37648790890071],[-117.98635518181712,52.37662137431378],[-117.98655654578019,52.37675265769758],[-117.98678609604393,52.37687178637048],[-117.9870448916647,52.37694330889081],[-117.98734724692645,52.37692025486645],[-117.98753504598379,52.37679675257524],[-117.9877922311981,52.37671810286227],[-117.98806345170242,52.376683305255774],[-117.98830432434414,52.37679137341923],[-117.98851811505492,52.376915616305084],[-117.98872173007622,52.37704479488426],[-117.98891903244495,52.37717804856938],[-117.98908987598135,52.37732413584471],[-117.98925664989032,52.37747219731001],[-117.98944164047926,52.3776119258828],[-117.98959651503742,52.37776424396191],[-117.98974721686778,52.377919088739205],[-117.98992354928143,52.3780655544173],[-117.99017938810564,52.378143064807425],[-117.99046033752889,52.37811569496092],[-117.99072411049153,52.37814072859418],[-117.99097793627335,52.37823897369469],[-117.9911267139895,52.37839424252469],[-117.99113139153347,52.37856774768462],[-117.9911089240307,52.378747830252514],[-117.99115919235506,52.3789250515276],[-117.99143350121403,52.37893332123206],[-117.99172824475681,52.37891142483367],[-117.99201350007718,52.37895035244128],[-117.99229298307701,52.37901031522558],[-117.99255400443897,52.379089866182035],[-117.99277861862149,52.37920582314935],[-117.99295982705473,52.379356005077135],[-117.99290951176518,52.37951667742019],[-117.99296547937611,52.379693163559736],[-117.99321485260214,52.37976570584398],[-117.99349465479757,52.37982399052698],[-117.99354341695347,52.37999941785069],[-117.99355255144654,52.380178862383026],[-117.99347760462118,52.38035249630207],[-117.9934462144586,52.38053083270778],[-117.993460727528,52.380711218071596],[-117.99354191418925,52.38088155174242],[-117.9935545654459,52.380893140580206],[-117.9938218859881,52.38112769335222],[-117.99404416815746,52.381246301261015],[-117.99429050072087,52.381345146693164],[-117.994568797299,52.38140163595697],[-117.9948613608894,52.38142131330361],[-117.99515545668136,52.38141290050307],[-117.99544797393602,52.38139308694098],[-117.99573980379121,52.38136702463832],[-117.99602864029121,52.3813272164003],[-117.99628170163226,52.38124093340248],[-117.99652021899523,52.381133336512285],[-117.99676459389156,52.38103404168339],[-117.99702789201494,52.38095241861468],[-117.99728967339229,52.380868993309875],[-117.99755993076018,52.38079969191993],[-117.9978519484402,52.380802401567365],[-117.99814579234986,52.38080524582934],[-117.9984358282633,52.38076889948741],[-117.99870294698835,52.3806965535597],[-117.99895400335778,52.38060110127246],[-117.99922263599312,52.380530555753516],[-117.99950460648309,52.38047785469954],[-117.99979671353888,52.38043036672457],[-118.00000038012159,52.38047999381809],[-118.00012295028205,52.38048790178005],[-118.00024551882792,52.38049581852333],[-118.00038889580976,52.38048147354559],[-118.00054881201598,52.38049761354131],[-118.00062223616015,52.38058053461355],[-118.00066760805552,52.380694792225086],[-118.00066987570051,52.38079197150974],[-118.00067321948904,52.38087343084814],[-118.00067349081037,52.380881915384265],[-118.00067683622488,52.38088383446188],[-118.0007741794207,52.38092779532023],[-118.0009194355567,52.38095307444314],[-118.0010919681239,52.38099095253556],[-118.00123695322574,52.38100774672597],[-118.00139477236435,52.38101527462749],[-118.00156227557223,52.381040394391654],[-118.00182340375157,52.38109962276547],[-118.00205957692573,52.3812033889646],[-118.00226690850813,52.38133279613022],[-118.00248890304704,52.381453063057435],[-118.00271089882378,52.38157332954938],[-118.00291092251851,52.3817022300647],[-118.00305578741902,52.38185890567626],[-118.00316657272333,52.38202957904054],[-118.00335849709336,52.382152277807265],[-118.00363990908915,52.382221937851114],[-118.00390014139994,52.382305918432365],[-118.00415813043635,52.38239200865132],[-118.00441377504116,52.38248075207139],[-118.00466738541775,52.382570482417755],[-118.00492454991797,52.38266101732678],[-118.00516684493441,52.3827618145881],[-118.00537522991193,52.38288564689978],[-118.00555581073715,52.38302955190764],[-118.00572856176403,52.38317574037932],[-118.00586382061195,52.383324418954594],[-118.00602087570329,52.3834853163834],[-118.00609580398529,52.383659717303736],[-118.00614786479058,52.383837610200075],[-118.00614818488793,52.384024906159254],[-118.00632415420223,52.384153833704254],[-118.00651815152273,52.384325179663094],[-118.00668953512616,52.38445886180092],[-118.00681273137016,52.38460275213627],[-118.0068656058205,52.38472654913993],[-118.00695480673974,52.384943676729094],[-118.00702599042394,52.385088485729746],[-118.00706381732574,52.38524339977472],[-118.00715319806525,52.385439673097224],[-118.00729413526159,52.3856772966493],[-118.00736564083785,52.385790539184484],[-118.00743525328815,52.38589405705456],[-118.00753857127762,52.38597565257662],[-118.00762480563486,52.38608935278267],[-118.00773120924292,52.38624392244084],[-118.0078007470062,52.38636775052179],[-118.00787372670214,52.38652283590809],[-118.00808152057226,52.386759435366976],[-118.0083243916066,52.387016507564745],[-118.00842926051524,52.38711964387886],[-118.00851721786808,52.387263913001156],[-118.00860373889746,52.38735619699684],[-118.00867335684626,52.38745971400196],[-118.00877815348697,52.387583151503186],[-118.00891623535145,52.38771678482594],[-118.00913983478377,52.38782868916708],[-118.00924592993037,52.388014823363186],[-118.00933231427449,52.38811780998955],[-118.00944008976947,52.388344682190635],[-118.00948641062293,52.38851371862344],[-118.00955180607873,52.38868971302139],[-118.0096353877829,52.388837631482176],[-118.00975600898661,52.389025336492715],[-118.00979570813051,52.389200115580216],[-118.00979739029864,52.3893801753047],[-118.00979348491822,52.38956040870428],[-118.00978968395184,52.38974008070725],[-118.00977470441948,52.38992011790468],[-118.00977283441397,52.39009936365112],[-118.00979870040695,52.39027882797851],[-118.00984336684321,52.39045677468134],[-118.00992411763164,52.390629884675235],[-118.00992828889429,52.390796569302346],[-118.00996588717754,52.39096274630653],[-118.00998668233098,52.391139612967514],[-118.01002585948333,52.39134707157995],[-118.01008764153781,52.39151266205961],[-118.01019471832427,52.391683636343586],[-118.01032655662863,52.39189073301936],[-118.01042345731965,52.39206664497734],[-118.01038992994022,52.39220703531894],[-118.01036622462549,52.39238421337052],[-118.01044322156051,52.3925576227221],[-118.01058428627229,52.39271514899952],[-118.0106754312967,52.39288219747837],[-118.01077164614394,52.39305186115401],[-118.01091240366621,52.39321105326676],[-118.011112091415,52.39334216618697],[-118.01126772064424,52.39349111205042],[-118.01138305405654,52.393657573202844],[-118.0115302327605,52.39381213538842],[-118.01171332828886,52.39395282327109],[-118.0118983578981,52.39409307569874],[-118.01208918572503,52.39423203126356],[-118.01222487928541,52.39438862423617],[-118.01228836358051,52.39456504255652],[-118.01234798257357,52.39474233113631],[-118.0124000825497,52.39492021973522],[-118.01241885390135,52.39509807305156],[-118.0123748362085,52.39527496771303],[-118.01238846396167,52.395470516100175],[-118.0124423312509,52.39560904179697],[-118.01244178773288,52.39576130240437],[-118.01240004697598,52.395925953738356],[-118.01228555442792,52.396033680232726],[-118.01225981904821,52.396211845775234],[-118.01228956337094,52.396390447314225],[-118.01232458476757,52.39657055020419],[-118.0122904324227,52.39674418174749],[-118.01217251320132,52.396900181462584],[-118.01203454972517,52.39703450016167],[-118.01182685715605,52.397175277914435],[-118.01164020942605,52.39731243596847],[-118.01149078401109,52.39746852568134],[-118.01132107378912,52.39761418089212],[-118.01111251578882,52.39773967261092],[-118.01089360663211,52.39786106504458],[-118.01067317767452,52.397980664529136],[-118.0104505060129,52.39810235608595],[-118.0102467027438,52.39823212778322],[-118.01015678658923,52.39839682816888],[-118.01013183329889,52.39858068830066],[-118.01011136783475,52.398760336682656],[-118.01010197694697,52.39894019006848],[-118.01008333819388,52.39911997355539],[-118.01004610248435,52.39930016080951],[-118.01004088758425,52.39947747759617],[-118.01011371948762,52.399653422755605],[-118.01025704944789,52.39980884718202],[-118.01045624842031,52.39994274068293],[-118.01055857504727,52.40000001112756],[-118.01067591112066,52.40006620550322],[-118.01081568985391,52.40022082425655],[-118.0109486736802,52.400372148864356],[-118.01108479171126,52.40055640542884],[-118.0111641903661,52.40071699977439],[-118.01126032182324,52.400887214497835],[-118.0114230865484,52.40103777804811],[-118.011584128105,52.401187653760196],[-118.0117308159599,52.40134499492272],[-118.01187343120992,52.40150432000583],[-118.01198544086475,52.40166886082674],[-118.01202871381163,52.4018444512841],[-118.01203751539258,52.40202611903928],[-118.01209507131261,52.402214545015056],[-118.01229277435709,52.40231674311381],[-118.0125907292847,52.402348027534984],[-118.01288878908163,52.40237874982233],[-118.01317911963426,52.40241119420428],[-118.01345533370355,52.40246973878037],[-118.0137183649426,52.40254936696041],[-118.01397628752164,52.4026365478856],[-118.01423431556401,52.40272316686236],[-118.0144921374663,52.4028108990911],[-118.01475282510873,52.40289318776242],[-118.01502155501775,52.40297207766088],[-118.01530312569557,52.40301180885995],[-118.01559929800733,52.403002909240065],[-118.01588964023483,52.4029755567568],[-118.01617860287826,52.402935699076146],[-118.0164546265512,52.40287577016945],[-118.01672712973858,52.40280488520182],[-118.01700421753452,52.40281891583676],[-118.01720189723162,52.402961155688274],[-118.01747622534376,52.402950185188494],[-118.01761446793809,52.40279444548613],[-118.01775567654568,52.402632710083374],[-118.01796586062348,52.40250844686892],[-118.01819481373802,52.40239281498844],[-118.01841200088829,52.40227072172758],[-118.0186289780852,52.402149750798685],[-118.01885254543447,52.402033177875566],[-118.01911016845197,52.401942643374625],[-118.01930122901369,52.40182157197598],[-118.01944118584693,52.40166651744692],[-118.01966323108313,52.401548141605],[-118.01990018066186,52.40143925843812],[-118.0201383367597,52.40133384239454],[-118.02037821614014,52.40122911331749],[-118.02061951077056,52.40112672859449],[-118.02086394347103,52.40102738458354],[-118.0211115142716,52.40093108126579],[-118.02136567541001,52.400839175696866],[-118.02162773740467,52.40075458296889],[-118.0218952506515,52.40068051850378],[-118.02217235714429,52.40062459598378],[-118.02246471490903,52.40059623923969],[-118.02275762552658,52.40058484156384],[-118.02305484951597,52.40059010257247],[-118.02333806264545,52.4005611134096],[-118.02361205908093,52.4004920045339],[-118.02389806547394,52.400447972591174],[-118.02418669257324,52.400409770155775],[-118.02447649544885,52.400385176339235],[-118.02476926648681,52.40038448564738],[-118.02506349023218,52.40040588790182],[-118.02535392092717,52.40043774054013],[-118.02564286912268,52.400487549003316],[-118.02592767374301,52.400499834699595],[-118.0262096049063,52.400457781687486],[-118.0264898768703,52.40039473926749],[-118.02677418637461,52.4003398711069],[-118.0270747202589,52.40032729125477],[-118.02738360761496,52.40033954480804],[-118.02761833213859,52.40028238707018],[-118.02773402759831,52.400108172472535],[-118.0277819342017,52.39999979023924],[-118.02781570055386,52.39992766137055],[-118.02793236481105,52.399768169694866],[-118.02815468634402,52.399648111132095],[-118.02839263804712,52.399533641209025],[-118.02858013941673,52.39940159926088],[-118.02864879963786,52.399221319633156],[-118.02867877931722,52.39902991052048],[-118.02882998205588,52.39890382443915],[-118.02909671457274,52.39884379694701],[-118.02940565053588,52.398805844175094],[-118.02969401679437,52.398748992974355],[-118.02992136863317,52.39864168717109],[-118.03011051546463,52.39850073177239],[-118.03029804076944,52.39835852734713],[-118.0304699639743,52.398200592021816],[-118.03068592543302,52.398094756837224],[-118.03096407633248,52.39805299284343],[-118.03126328034932,52.39803749601498],[-118.03156721579056,52.39803642091423],[-118.03185993910064,52.39804586305481],[-118.03215059721398,52.39806643420644],[-118.03244387787068,52.39809283466737],[-118.03273543436669,52.39811854710663],[-118.03302854210409,52.398135900352905],[-118.03332047105886,52.39813964358954],[-118.0336145708257,52.39813168601862],[-118.03390635717062,52.398116231352176],[-118.03420069442923,52.39809700773406],[-118.03449330522616,52.39807710502626],[-118.03478733283791,52.39805954627157],[-118.0350803254467,52.39804756503957],[-118.03537318457344,52.39804628624492],[-118.03566819328339,52.39807335690072],[-118.03596275846489,52.398112805247806],[-118.03625259261723,52.39813782163035],[-118.03653523290886,52.39812174009059],[-118.03680916218725,52.39806275067384],[-118.03707452536506,52.39798004095449],[-118.03734081623216,52.39789232264076],[-118.03761183800074,52.3978190348764],[-118.03789374188965,52.39777694452688],[-118.0381844478533,52.39774730849429],[-118.03848133141258,52.397724305722626],[-118.0387787017571,52.39770866374077],[-118.0390778706083,52.3977032974896],[-118.03937335210944,52.397707829592186],[-118.03966107607548,52.397724236269525],[-118.03994121946754,52.39776155439778],[-118.04020702795012,52.39783624068755],[-118.040467396037,52.39793028905396],[-118.04072969637919,52.39802391011156],[-118.04099581672317,52.398096928216304],[-118.04127640606544,52.39812186465603],[-118.04135914051547,52.398115145263525],[-118.04114965070706,52.398206209937854],[-118.04119752224808,52.39837758597294],[-118.0413308864329,52.39853736034193],[-118.04145621486794,52.39870052565082],[-118.0415776803024,52.398864553180516],[-118.04164160013711,52.399039288486115],[-118.04167319281572,52.39921856925573],[-118.04175805583925,52.3993902321867],[-118.04187372918314,52.399555548438485],[-118.04196611525337,52.39972660028445],[-118.04229313775971,52.400110638941484],[-118.04272110471791,52.40044971583488],[-118.04346986521206,52.40090673928065],[-118.04390370425098,52.40215375287985],[-118.04510743964448,52.402844519411666],[-118.04602739383448,52.40319765495433],[-118.04964900019249,52.40210463579635],[-118.0568371480277,52.40273577581062],[-118.06223469787972,52.4037558053942],[-118.06810329709822,52.404312641423004],[-118.07398503543027,52.40487909433688],[-118.08115554080243,52.40584981828391],[-118.08516703011433,52.40611344595093],[-118.08843289877899,52.406081210917584],[-118.09443154230362,52.40504890170866],[-118.10025663503912,52.40407214512157],[-118.10549798570423,52.403770421746955],[-118.11053694018715,52.40392446885043],[-118.1164113925822,52.404369810472225],[-118.12218430163958,52.40504592970375],[-118.12844004815217,52.405836919884536],[-118.13308895976546,52.40650315425449],[-118.13692183253683,52.40693329651008],[-118.14029566470751,52.40639091889169],[-118.14279260531953,52.40327204697224],[-118.14326693639298,52.39865561580182],[-118.14322920973453,52.395866017244245],[-118.1430759412307,52.394436713502415],[-118.14795535259324,52.39310704134317],[-118.153385894669,52.39297457749533],[-118.15618681075266,52.39288529050172],[-118.16169250380757,52.39258384346759],[-118.16721285127666,52.392282573132555],[-118.17021860222584,52.391962639869284],[-118.17378198580195,52.391020550756934],[-118.17702790445452,52.387510785411756],[-118.18070818870699,52.38559802023501],[-118.18366367838486,52.38294652111031],[-118.18426028126315,52.38129506309478],[-118.18309223499077,52.378600119326066],[-118.18287996116051,52.37569793253],[-118.18534103980464,52.373888222032434],[-118.1923558946108,52.37308685770221],[-118.19833788149191,52.373243447339725],[-118.20403555621185,52.373171921223246],[-118.21317122821286,52.37340714605749],[-118.21774543603381,52.37389821720873],[-118.22188976707494,52.37700991025578],[-118.22229156936649,52.379288521369915],[-118.22239066065279,52.37980437690905],[-118.22368573352705,52.38066563487283],[-118.22918803852659,52.38110521858696],[-118.23565360452096,52.37990176151402],[-118.23979378774945,52.37804581923792],[-118.24519668211502,52.37386667328192],[-118.24678246373878,52.36942591917875],[-118.24749663448358,52.36612326793044],[-118.24896269983772,52.36242554452376],[-118.25026019128045,52.358101892644584],[-118.25247868292522,52.35441340169707],[-118.2538387868252,52.351627649671336],[-118.25881748810403,52.34903853981747],[-118.26705742899229,52.34772466854584],[-118.27136543099121,52.3472960570943],[-118.27389679754485,52.34662790865291],[-118.27953367944325,52.34472874536667],[-118.28443691730958,52.341226979284656],[-118.28762965001873,52.340331498671794],[-118.29142723909241,52.34167188017892],[-118.29556145811915,52.34608830161578],[-118.29887055396622,52.3485082717449],[-118.30089991616347,52.349484653378326],[-118.30408524301627,52.35458283057809],[-118.3036359052224,52.35891130057176],[-118.30572183869596,52.362633745367745],[-118.31098661723256,52.36546463565616],[-118.31600204153358,52.367376016863346],[-118.3248507342997,52.368460146391506],[-118.33045324830438,52.3684962552329],[-118.33736622964885,52.36773937731715],[-118.34365243149476,52.36601319737587],[-118.35142044861219,52.364688010549635],[-118.35646348703203,52.36420499602149],[-118.36002889021418,52.363543002885315],[-118.3647635601769,52.359462712461685],[-118.36660442824301,52.3555944145856],[-118.37036303869964,52.35333816683712],[-118.37431240535085,52.35142194259214],[-118.37769240921027,52.35012881737924],[-118.38051409628346,52.34923065195093],[-118.38211686744386,52.34861633013535],[-118.38374669092352,52.34525994171466],[-118.3850134783448,52.34144665900447],[-118.38674946828168,52.338490173171984],[-118.3889293013781,52.336450262420215],[-118.39426036042653,52.33573730946215],[-118.39994767222215,52.33560115824179],[-118.4029313617698,52.33578656021617],[-118.40386674050802,52.33584859470636],[-118.40954625498237,52.336510281604035],[-118.41699414331003,52.33745849111915],[-118.4226861173189,52.337379581225214],[-118.4287865903699,52.3347272378811],[-118.43238366284648,52.33075286416055],[-118.43409572491406,52.32934006489912],[-118.43731632239009,52.325820103513024],[-118.44023105360276,52.3237857694495],[-118.44631344766789,52.3227341453666],[-118.45182303525071,52.32241821650756],[-118.45685520175105,52.322211239831795],[-118.45901205692121,52.3218801744524],[-118.46332290237477,52.32013654916711],[-118.46633486338123,52.317874623436445],[-118.46971100834577,52.316232205399295],[-118.47290233999428,52.315222536288374],[-118.477761340586,52.314393515381525],[-118.48270380675272,52.31418528272018],[-118.48700179541888,52.313181855639],[-118.49084237224592,52.31217335856375],[-118.49252776890665,52.311151567512034],[-118.49461156695028,52.309454406326786],[-118.49445492719946,52.3062002378247],[-118.4928109626474,52.30368140851562],[-118.49061609888655,52.300764848107],[-118.49049107970106,52.29665361147548],[-118.49210885373724,52.293813498298924],[-118.4979344154093,52.289962687076795],[-118.5029891822259,52.28798884464932],[-118.50897839697224,52.28590351173207],[-118.5127275544746,52.28489359698619],[-118.51992397938325,52.28316334945367],[-118.5289693117041,52.28268754691104],[-118.53148706684318,52.28264355897539],[-118.53631113966047,52.28369048144514],[-118.54152402313689,52.28479555129423],[-118.54384476388562,52.285378303223744],[-118.54711085859537,52.285106093980616],[-118.55123400104533,52.282609686812684],[-118.55220296171608,52.281189797627285],[-118.5542733391901,52.27818043207952],[-118.55487990326769,52.27287617556736],[-118.55604112083434,52.26991412327724],[-118.55803342489418,52.26632645548264],[-118.56135745911938,52.261604858953454],[-118.56184968509075,52.258239481599155],[-118.5602428818968,52.25275811007666],[-118.55761448364373,52.24653101102903],[-118.5557088087068,52.242530087381404],[-118.55443278238978,52.2394975300032],[-118.55326332032672,52.236361341061034],[-118.5533723500616,52.235217374619815],[-118.55338227589039,52.233451485126075],[-118.55462579740966,52.23094679091233],[-118.55865469057534,52.22845105259382],[-118.56341891242191,52.22733230240077],[-118.5650992651909,52.22682287669396],[-118.56556551878687,52.22659872975934],[-118.56803090511609,52.22238816009182],[-118.56815836657414,52.21925171140442],[-118.56923378540745,52.2149763263343],[-118.5702899046423,52.21149670536978],[-118.57165411793108,52.20665426951216],[-118.57271867676431,52.202951961535064],[-118.57357674243843,52.200620131255604],[-118.57463677870865,52.19651393174174],[-118.57597637396626,52.19360830543316],[-118.57738907462426,52.191733249450614],[-118.57870414133374,52.19093976624647],[-118.58215369127923,52.190156317963094],[-118.58503446235551,52.19028199359008],[-118.59153766041828,52.19076175172735],[-118.5964502617078,52.191410616765204],[-118.60026474891605,52.191418349348254],[-118.60642576283254,52.18882145283213],[-118.60868708276269,52.18722939421819],[-118.61213986749777,52.1858185438515],[-118.62061135430086,52.18339673809466],[-118.62837466095095,52.18011292077584],[-118.63174917372349,52.175959014735426],[-118.63204592571329,52.174305709353305],[-118.63598353228778,52.170558030778395],[-118.6409470727827,52.16692034300217],[-118.64457900885387,52.16591070434224],[-118.65118440971061,52.16490306786294],[-118.65861820427864,52.16412993659777],[-118.66346790947568,52.163573860108016],[-118.667094316227,52.16250460439834],[-118.67047831389857,52.15835042725047],[-118.67106264522857,52.1544711433839],[-118.67229399955755,52.152590990827385],[-118.67871028633373,52.151639789660855],[-118.68593180226297,52.15479897542051],[-118.68795025808093,52.157657768427036],[-118.68931444610799,52.16160102193888],[-118.69271830845939,52.16497594192713],[-118.69819103618359,52.1659565166775],[-118.70517523506516,52.16461315300917],[-118.70704735715512,52.163987808482965],[-118.71495523569565,52.16161469076666],[-118.72369573405261,52.161808862698805],[-118.72794610379087,52.16524225591536],[-118.72975321129408,52.17112541101892],[-118.73084726140117,52.17381100377742],[-118.73658819662101,52.17776007354746],[-118.74500573798186,52.18217488640049],[-118.74853631296989,52.18412717188288],[-118.75448140294534,52.184769397413014],[-118.75996651488344,52.18323652967417],[-118.76154793327105,52.18267544480546],[-118.76957505531253,52.17950083732917],[-118.77476744743367,52.18076650542111],[-118.77662116315848,52.18156908526455],[-118.77858141123664,52.181118312814036],[-118.78425374480467,52.179248989062415],[-118.7902105104945,52.17823063006979],[-118.79504747549421,52.17818610363808],[-118.80025291985923,52.178139041023925],[-118.80221732914413,52.17810231869261],[-118.80547286563605,52.17614807124124],[-118.81142894659308,52.173534540551884],[-118.81357684244298,52.17274726394159],[-118.81879899854401,52.17046908636536],[-118.82604439518687,52.16814769520719],[-118.8314459693597,52.16655466332102],[-118.83406357090213,52.163995429319996],[-118.83446729896495,52.15783254094839],[-118.83429474430731,52.1553228184225],[-118.83404443009358,52.15035319502567],[-118.83469950687339,52.1477326737099],[-118.83620189287298,52.144881452256804],[-118.83936502754645,52.14266038252933],[-118.8434687569593,52.140442492565604],[-118.8467277260768,52.13799337049762],[-118.84916130120095,52.13457388670226],[-118.84980418917675,52.13388807918592],[-118.85030007343387,52.129554254790705],[-118.85031734361682,52.12464580106089],[-118.85069283466612,52.12219605499265],[-118.85377973427423,52.119175456782784],[-118.85778138390658,52.11666687868258],[-118.85992632314863,52.11364740147487],[-118.86021632092616,52.11171185480204],[-118.86124894603124,52.10857148121834],[-118.86367157659777,52.10537930338488],[-118.86610081056796,52.10241232686371],[-118.8642528416118,52.10007140604906],[-118.86240360566775,52.09836314676103],[-118.86176813063518,52.09624617373325],[-118.85972344776926,52.093675422956444],[-118.8581656495721,52.09207362715842],[-118.85491727793591,52.09029969757101],[-118.85316065924233,52.089102994202],[-118.85521297607049,52.08619336113173],[-118.86144386654865,52.08386668933543],[-118.86552235058983,52.08176057758201],[-118.86961972565338,52.07953719295173],[-118.87008203044506,52.07913818493668],[-118.87195873228184,52.07451911343601],[-118.87030164677316,52.070577904663494],[-118.8678937567079,52.068522797423384],[-118.8604916482151,52.0659427568276],[-118.85428538512328,52.06421868022847],[-118.85021955438883,52.06216200212303],[-118.84727350889007,52.05759400612623],[-118.84850399142354,52.05102911751295],[-118.85102082245422,52.047786147617494],[-118.85723936251352,52.045680639808204],[-118.86511508173942,52.04438160444701],[-118.87068030992106,52.04347397812779],[-118.87197985997756,52.04324697194372],[-118.8757799895364,52.04245044184961],[-118.8812514941816,52.04228877747319],[-118.88579917733874,52.04149600029252],[-118.8911777788996,52.040020280373554],[-118.8961823570933,52.03813803078056],[-118.9008191383437,52.036885920634205],[-118.90462305943535,52.03552075836534],[-118.90795598045275,52.03523924056538],[-118.91583146249955,52.03741911613209],[-118.9205529942001,52.03941698981961],[-118.92778812763888,52.03725453569004],[-118.93399343733769,52.03366364430592],[-118.93881700629025,52.030532913265574],[-118.94346503826276,52.0273946159645],[-118.94523680529466,52.020201822039525],[-118.94616948426433,52.015640006458035],[-118.94608702969806,52.01010525682023],[-118.94691846739443,52.00787776550727],[-118.94887378094576,52.00514010389552],[-118.95341134547748,52.0042851686742],[-118.9568450005998,52.00309411546178],[-118.95869390537875,52.001548804864555],[-118.96015400803256,51.9999593329084],[-118.96077031580604,51.99932326592808],[-118.961037872339,51.997493280111165],[-118.96139319089245,51.99674879450412],[-118.96286245880484,51.994287648768164],[-118.96524974375197,51.99176840286037],[-118.96706510122164,51.98861624741486],[-118.96806995694656,51.98729910964562],[-118.96944079571362,51.98426504399274],[-118.97116041612254,51.97979978207779],[-118.97132451006962,51.978424323606134],[-118.96908338283005,51.97597681479273],[-118.96500676097698,51.97427929947911],[-118.959722417227,51.97406823937576],[-118.95481305147904,51.97317170669273],[-118.94888707736486,51.97222089815833],[-118.94562952284275,51.9699971122422],[-118.94060817525931,51.96853181397997],[-118.93551593246048,51.96786429939994],[-118.93181028577364,51.96695917115216],[-118.92700550404336,51.967316494431685],[-118.92145083038537,51.96751011952751],[-118.91812361437522,51.96751989964679],[-118.91458882621465,51.966557117791254],[-118.91236749350195,51.965536247056264],[-118.90865289937473,51.96343345658132],[-118.90502329295475,51.96206777927147],[-118.90113434693986,51.96076648867389],[-118.89752398352202,51.95946483939611],[-118.89417929397764,51.9583311228874],[-118.8915805351196,51.95702604263651],[-118.89018553222448,51.95525797212715],[-118.88978915710672,51.95240056164158],[-118.89116615205045,51.95034065001666],[-118.89539569524945,51.946955835895935],[-118.89695209649108,51.94540797021587],[-118.89693859253012,51.94432630021474],[-118.89729267319841,51.94198145949258],[-118.89884287830802,51.93831998509158],[-118.90104666788325,51.93585365924789],[-118.90166914401578,51.93293937411028],[-118.90404660461434,51.92967566778665],[-118.90837003340992,51.926862660597315],[-118.91502214415637,51.926729977779615],[-118.92261129852312,51.927044197229364],[-118.92779556695793,51.927026311677814],[-118.93888735813202,51.92722263630771],[-118.93935233700559,51.92733357018134],[-118.94407036783093,51.92829373089497],[-118.94825020839481,51.93004606722416],[-118.95287838662293,51.93174353202419],[-118.95779109358553,51.93259052929604],[-118.96491824118694,51.93404606062951],[-118.9704764183663,51.93488703148317],[-118.9764009534997,51.935092624036926],[-118.98166146065007,51.93478730777021],[-118.98497108966986,51.932602079456494],[-118.9875130702887,51.9277339335306],[-118.9872753244496,51.92167854099822],[-118.98309044060153,51.917869015989645],[-118.97760732316864,51.914854740016004],[-118.97528093269828,51.91394910789002],[-118.97322034421362,51.9112182932127],[-118.97355514150455,51.90715475445102],[-118.97353012284495,51.90332606692431],[-118.97118560308338,51.90036472729037],[-118.97081845555218,51.899740381946216],[-118.96753670584364,51.89552227127603],[-118.96545243400229,51.88987140979467],[-118.96533382998508,51.885812025224354],[-118.96630131359439,51.881184337461185],[-118.96643133095759,51.87495327319684],[-118.967617851255,51.872948028618936],[-118.97137285017925,51.87087691588131],[-118.97618363257378,51.870231369284134],[-118.98125035087644,51.86981038424817],[-118.984664872206,51.86957355901051],[-118.99001186422979,51.86840924888734],[-118.99044670235503,51.86589063870393],[-118.98720888021383,51.86476071702848],[-118.9827596355249,51.863350143823645],[-118.97905613789719,51.862391438431466],[-118.97451457384223,51.8609218658556],[-118.96951744582599,51.85865547428417],[-118.96571268458554,51.85724207153464],[-118.95607188068108,51.85270511562407],[-118.95413654235394,51.8520240461973],[-118.95246316741522,51.850717788783534],[-118.9517915727711,51.84854852098769],[-118.951045693548,51.84728982788385],[-118.95085724680139,51.847009969970834],[-118.94936495001286,51.845579571119075],[-118.94889227556672,51.843356034184836],[-118.94979397628299,51.84112484475134],[-118.94940420749228,51.83884047526671],[-118.94912259155022,51.83832438210672],[-118.94863115707382,51.83558572353041],[-118.94889635214345,51.83403771303246],[-118.9513716381879,51.83191823339116],[-118.95532593006996,51.830133339803005],[-118.95881036188851,51.82863325825027],[-118.96268487719966,51.82788068506256],[-118.96554098806527,51.82701344782893],[-118.96598213752512,51.82500459128283],[-118.96366111049319,51.82364446827382],[-118.96115798104348,51.822508625435056],[-118.96041750150503,51.821940607792854],[-118.9599366332639,51.82039845809282],[-118.96093240323609,51.81857254495384],[-118.96138251281012,51.81650899969782],[-118.96192999758765,51.81565009233708],[-118.96097652692495,51.812515011874304],[-118.95845852038029,51.81012031901656],[-118.9540162449289,51.80762206968672],[-118.95234797650232,51.80665579097078],[-118.94900366944552,51.80432141730053],[-118.94621351049177,51.80199184322126],[-118.94545526799718,51.79919204686259],[-118.94406023569,51.7966307142147],[-118.94282528625939,51.79389270005282],[-118.94152547950503,51.792637891790925],[-118.93912596607697,51.7925881533322],[-118.93536070536184,51.79340290292462],[-118.93251055653064,51.79415246276011],[-118.92891481665234,51.79490987961193],[-118.92532023265139,51.79520964986478],[-118.9201531800669,51.79413925167377],[-118.91590400542273,51.792270608724934],[-118.91357632313058,51.790162627242765],[-118.90831284146373,51.78852375442879],[-118.90479974893906,51.787786400278584],[-118.8998217514188,51.787175366643346],[-118.89603951053368,51.78701670835567],[-118.8925337614328,51.786683513281766],[-118.88764277009682,51.785271956422044],[-118.88384313026096,51.7819127323089],[-118.88334596063339,51.77825430939593],[-118.88581030403691,51.775219584728944],[-118.89012384833715,51.773096989004046],[-118.89443636779713,51.76936621092722],[-118.89560678308769,51.76576152715433],[-118.89540269256555,51.7638804371354],[-118.89342782291916,51.75971067867566],[-118.8918302068363,51.754748800569914],[-118.89022317865319,51.749667897863695],[-118.89028781509924,51.74640740572604],[-118.89009349364058,51.744468253540106],[-118.88721096604814,51.74042086369071],[-118.88654523955628,51.73842408641405],[-118.88653484572974,51.73625175865934],[-118.88642548324938,51.73459742409851],[-118.88870535435848,51.73115775275593],[-118.89502308122617,51.72851086570749],[-118.89989611330164,51.726320983020656],[-118.90768323283424,51.72349839885273],[-118.91456441738293,51.72050630125719],[-118.91822860637079,51.7180331672418],[-118.91727551992074,51.713579950572665],[-118.91549898080159,51.7112420777666],[-118.91476163706338,51.71022060213631],[-118.91482022913874,51.706446816581334],[-118.91700268860392,51.70403378827819],[-118.92003027847461,51.70242456085098],[-118.92285675219912,51.69944838485922],[-118.92291409097933,51.695677905203034],[-118.9232640751142,51.69441570548926],[-118.92315180931843,51.6907034352164],[-118.92265813316806,51.68727914222788],[-118.92078234820326,51.68385120311646],[-118.91744802495442,51.68089331933335],[-118.91579370135774,51.67987505754561],[-118.91061263459314,51.67646268958795],[-118.90811111913854,51.67429918259507],[-118.90607333267378,51.67241814177681],[-118.90566955101141,51.66916662359796],[-118.90470481100567,51.66345413985066],[-118.90396136733024,51.661400604188934],[-118.89950765358141,51.657469163086326],[-118.8971076788559,51.65513800000692],[-118.89570362711999,51.65285597857618],[-118.89422263786064,51.65069031566568],[-118.89088933941446,51.647841280902604],[-118.88858150356913,51.64664917152554],[-118.88397204650639,51.64512311250435],[-118.88066696702523,51.644788386448475],[-118.87533666158485,51.64492312752615],[-118.87185457359651,51.64567513401665],[-118.8675421817599,51.64643417546797],[-118.86560717451422,51.646437992556656],[-118.85963252619523,51.64588447540406],[-118.85438332726675,51.64498612516489],[-118.8506178888577,51.6439090561105],[-118.84905342817478,51.64351478193034],[-118.84609258965804,51.64152078154863],[-118.84395845939376,51.63838587041403],[-118.84119148831653,51.63645462904277],[-118.83355937822313,51.63493167619026],[-118.83006786900683,51.63494162916018],[-118.82777413725267,51.63500727835871],[-118.82114719052268,51.63445163369207],[-118.81865490011074,51.632005491027435],[-118.81717415614884,51.63075066110406],[-118.81504148365113,51.62647069195851],[-118.81510985258103,51.6230428901966],[-118.81609972639826,51.61966879810962],[-118.81597490881792,51.61458316246726],[-118.81521683019714,51.61167418512308],[-118.81243482396523,51.607284182274135],[-118.81277210347162,51.6032813606489],[-118.81478337387199,51.60076504911531],[-118.81531449015463,51.599387519868195],[-118.81437431073458,51.59590770325423],[-118.81390330792708,51.592933913965965],[-118.81525728429087,51.59070187783355],[-118.82039141342085,51.588802932795765],[-118.8243243316621,51.58714024162261],[-118.8253039781973,51.58399654693149],[-118.82529010182412,51.58142038537033],[-118.82526201635329,51.57662489251333],[-118.82523619070648,51.57199300474214],[-118.82529320727998,51.56845160057634],[-118.82529010415593,51.56793836983484],[-118.82564381764571,51.5654226030953],[-118.82534413834267,51.561310647179084],[-118.82484218047874,51.55577417816649],[-118.82599914499517,51.55056635602948],[-118.82780062837654,51.54656232750816],[-118.82987930710443,51.54210333732447],[-118.83095439353237,51.53889960782583],[-118.83093549869304,51.53644087300077],[-118.83072403895171,51.532497338696494],[-118.82777157641605,51.52908246295808],[-118.8215322983778,51.52847135107676],[-118.81621438817277,51.52825821159838],[-118.81172042331968,51.52655782625758],[-118.80483369431086,51.525032515907164],[-118.79851281494234,51.524480869804094],[-118.7927300965965,51.52489224937452],[-118.7906467611101,51.527242383357425],[-118.78746127102995,51.53073578573789],[-118.78583281340073,51.53410992589866],[-118.7812647422092,51.53691761080028],[-118.77933362538326,51.536925545587586],[-118.77649011727665,51.536129981588296],[-118.77243558179055,51.5320298039098],[-118.76975873891237,51.52740885238252],[-118.76845458573641,51.52467170593722],[-118.76549699947067,51.52175860282082],[-118.75808424383965,51.52246513664009],[-118.75031383367224,51.525509787252616],[-118.74565192521476,51.52826110598385],[-118.74117109650899,51.52947604852689],[-118.73759881171411,51.528794622638394],[-118.73126386362833,51.526925067717535],[-118.72713241988683,51.52550543312611],[-118.72400171535732,51.523738763635194],[-118.71912035942843,51.51792480460251],[-118.71360690996136,51.513304846580766],[-118.70809253086988,51.51131562475629],[-118.70277798724922,51.509784456383144],[-118.69755215442905,51.508593681803895],[-118.69351540767335,51.50723060033934],[-118.69066626344635,51.50500726494476],[-118.69065590826483,51.503066713050266],[-118.69668521789501,51.49985976265492],[-118.70454209863472,51.496467922587875],[-118.71048374061849,51.49360206851101],[-118.71267524608841,51.49131648974362],[-118.7116423202477,51.487147055051416],[-118.71034832461059,51.48446418382015],[-118.70732158233703,51.48087070604706],[-118.70272515559752,51.47739480820339],[-118.69584708935011,51.47518254972815],[-118.69071277498684,51.47398971749121],[-118.68631137089847,51.47222587397322],[-118.68245408872372,51.46989412253988],[-118.67787393245304,51.46607741517237],[-118.67493353556038,51.46442157006836],[-118.67154857168126,51.46317393861287],[-118.66577322818823,51.461753370666194],[-118.65862865024694,51.461766450066406],[-118.65672129937002,51.46199640744175],[-118.6493904955362,51.463035111242846],[-118.64463147281252,51.462816368711074],[-118.63723241907955,51.46322161009814],[-118.63293488126659,51.464829808404765],[-118.63201826816925,51.4654571215974],[-118.63127876500077,51.46546033889153],[-118.62899255687655,51.46414636314918],[-118.6272421525967,51.45981316893955],[-118.62759036391381,51.45609766076709],[-118.62767691726596,51.45204193639584],[-118.62812781742005,51.44987224927792],[-118.6301381180435,51.44729930682106],[-118.62518117657733,51.44490378396954],[-118.6190525261953,51.44422798643311],[-118.61429046905245,51.44343571611641],[-118.6108233367213,51.442867080560035],[-118.61008758665999,51.441041254112626],[-118.60952274096879,51.43578772197675],[-118.60886358492748,51.432473879953115],[-118.6073007581354,51.428765957599516],[-118.60601427390596,51.42487974851659],[-118.60828378637811,51.42093822988516],[-118.61074697637027,51.41825357926383],[-118.61384709952479,51.41556649102049],[-118.61439004459446,51.41276428226534],[-118.61118354393638,51.40962470193804],[-118.6109993174705,51.408998423724604],[-118.60705593511743,51.40688841966004],[-118.59975019665113,51.405241912641635],[-118.59489597830022,51.4031321723481],[-118.59471159911493,51.40199254490969],[-118.59369745556697,51.39942170916004],[-118.59150158783949,51.39742548460244],[-118.5875648916604,51.39605965608644],[-118.5851920619358,51.39554532672749],[-118.58116398098548,51.394466014854935],[-118.57925287841564,51.39190096869529],[-118.58298078963486,51.38806508907417],[-118.58618076175286,51.38555616389397],[-118.58717793427039,51.382298037767086],[-118.58717196640768,51.380358355850944],[-118.58788950040764,51.376870352461744],[-118.59263690653238,51.373666296414406],[-118.6006576818361,51.37171491264302],[-118.60805474789447,51.368392709472495],[-118.61269281060437,51.364618981052566],[-118.61286237526504,51.359988943425186],[-118.61194398591552,51.35719147277856],[-118.61101358062116,51.35239862780614],[-118.60927446459966,51.34760359613401],[-118.6083508992575,51.34389244240116],[-118.6097020040368,51.34023143043242],[-118.6120691778401,51.33714400264035],[-118.61234028876873,51.333717464835516],[-118.60721090363705,51.32933044028501],[-118.6005328986964,51.32470959400041],[-118.59879671726355,51.32180235123429],[-118.59841876159456,51.31751634495908],[-118.59822277290476,51.313007021702546],[-118.59648826435505,51.31095326951854],[-118.59337732718926,51.30970212784276],[-118.58999227949253,51.30690413369108],[-118.58871580678168,51.305135280752445],[-118.58633720671622,51.30262324100778],[-118.58305368024843,51.300514777489205],[-118.57703227766224,51.29983666601544],[-118.56891241836284,51.300132486737205],[-118.56381117015492,51.30059064766439],[-118.5611632777162,51.30054018498705],[-118.55678879048853,51.299685234754016],[-118.55468058231777,51.2983196489736],[-118.55313180862004,51.29723240519182],[-118.55112527838288,51.29364221631334],[-118.55074741400587,51.28998238833721],[-118.54855420923026,51.28707311234134],[-118.54673616479856,51.28587428824998],[-118.54554517858092,51.2818193186069],[-118.54926561666751,51.27576911610538],[-118.55281792265468,51.27250429877669],[-118.55472323150396,51.26959210512374],[-118.55535333964177,51.26867914936252],[-118.55935596146331,51.264790606779876],[-118.56336218154982,51.261304435819504],[-118.56936348336424,51.25872881718191],[-118.57382572580542,51.2558670342186],[-118.57508474978096,51.253011852707004],[-118.57417171914861,51.25003779760599],[-118.57289226655604,51.24821414664083],[-118.57288699401775,51.2454166660735],[-118.57361264096653,51.24238810359566],[-118.57361221798777,51.24136184976526],[-118.57041074119292,51.23776741977114],[-118.56602313478122,51.23342939973906],[-118.56154931363923,51.22892351272344],[-118.55663400227071,51.22499018309906],[-118.54815532417268,51.21997336106594],[-118.54486642731763,51.21717383543185],[-118.54322897588247,51.215520032966005],[-118.54240022842595,51.21129504944543],[-118.54575945144327,51.2080369316673],[-118.5513023213802,51.20643590553109],[-118.55686486510415,51.20591299261506],[-118.56232039808977,51.204826451574476],[-118.56304636126136,51.20453590160294],[-118.56385349336135,51.20316349445997],[-118.56430992455391,51.20036475260926],[-118.56375278136224,51.196998021213325],[-118.55964790588949,51.193403514045244],[-118.55555245459665,51.19095421785287],[-118.55418511256974,51.189581277409445],[-118.55135747767716,51.18696120651225],[-118.54698069062253,51.184222057474024],[-118.54079418123985,51.18086166108581],[-118.53760358306778,51.17954697021572],[-118.53351927105227,51.178751194976236],[-118.52923271020758,51.17881245147555],[-118.52113951993643,51.178820822531996],[-118.51395418295905,51.178824153566886],[-118.50413625923986,51.179407722378144],[-118.49867946254035,51.17906595238034],[-118.49521577338797,51.17826441995501],[-118.49258040186207,51.17826686022047],[-118.48712298214338,51.1779295483671],[-118.48239214475628,51.17712986107699],[-118.47621146302336,51.175881986960384],[-118.47183949089967,51.17365277265952],[-118.47093646746706,51.17176851632837],[-118.47111092879364,51.168798449256784],[-118.47175481087206,51.16628415699849],[-118.47120733531563,51.164003283096214],[-118.46911380142703,51.16006644188886],[-118.46829328031666,51.15795344545478],[-118.47047337248732,51.155038124657935],[-118.47727996236446,51.1530949753113],[-118.48228924507438,51.15240984654663],[-118.48610178872373,51.150466263665216],[-118.48818155780715,51.14618288883525],[-118.48882431920417,51.14103937540884],[-118.48881523529309,51.140753801222395],[-118.48508719631253,51.136189316081506],[-118.4800807386613,51.133905241130186],[-118.47536557175526,51.13202584622552],[-118.4720912529941,51.12945723415988],[-118.47262250054335,51.12557136121163],[-118.47653015581899,51.12288794347586],[-118.47681098264275,51.11911902030475],[-118.47552991475835,51.11717996166099],[-118.47534396536773,51.11683568000382],[-118.47625613808553,51.113413207080065],[-118.47843371498088,51.11049646764836],[-118.47825424066514,51.10689701335749],[-118.47579409844798,51.102676320364615],[-118.47569462112666,51.10233105295577],[-118.47414970770718,51.10084826745187],[-118.47206731899675,51.09770749884989],[-118.47088357522674,51.09536961545055],[-118.46470808071564,51.09331411465475],[-118.4608934402732,51.091660631452505],[-118.45953142750308,51.08834779583238],[-118.4602492026525,51.08446695886746],[-118.46025538413978,51.07995418970091],[-118.45797915755372,51.07847045275887],[-118.45335603540082,51.07710198876138],[-118.44781565983342,51.07664963406592],[-118.44290876374329,51.076021257558125],[-118.43974292627274,51.074198363990554],[-118.43765042493163,51.07282190726718],[-118.43510679700019,51.07282707157003],[-118.43183845968967,51.073627061084565],[-118.42985078499662,51.07374129352881],[-118.42903209028401,51.07374023126323],[-118.4275795982538,51.07122603806383],[-118.42476450672703,51.0678601124181],[-118.4216773931905,51.06592001072089],[-118.41931752654213,51.06426431700228],[-118.41732307192721,51.06232057138643],[-118.41678882512058,51.05998561321655],[-118.41778253566832,51.058037850271944],[-118.42105335653584,51.057638644673425],[-118.42567501185738,51.0583267677677],[-118.42821733667913,51.05832460180767],[-118.43065548204851,51.05792309349899],[-118.43147308242055,51.05649841469207],[-118.43229112355411,51.05187303342643],[-118.43383254062435,51.0487294765436],[-118.43147232985811,51.04564826011967],[-118.42820821766375,51.042565735708955],[-118.42693490417582,51.03959670283727],[-118.42703540125689,51.036400995606186],[-118.42666580864183,51.03394112616002],[-118.42485809681655,51.03183446654389],[-118.42294616326164,51.03000292769615],[-118.41904824237065,51.02669198873482],[-118.41823644456517,51.024639544069686],[-118.41887517537249,51.02241261136641],[-118.42078188627967,51.020070510585434],[-118.4222297463798,51.017557373608405],[-118.42277393236175,51.01630275465511],[-118.42240951254674,51.01373082124854],[-118.4209584935721,51.01122139414765],[-118.41833271168667,51.00836769913394],[-118.41343713027992,51.00511579774953],[-118.41099040104795,51.00340119765426],[-118.40907939772221,51.00157439193495],[-118.4089633152444,50.9999042005841],[-118.40902779800965,50.999526999399535],[-118.40883873400696,50.99878716542599],[-118.407029302557,50.99771000859873],[-118.40358455708908,50.996970641177825],[-118.40113599769911,50.99703143573189],[-118.39859473052736,50.997717517296564],[-118.3973355247408,50.99828682068694],[-118.39643657460529,50.999934994688886],[-118.39589356135241,51.00050944839307],[-118.39472369069372,51.00147766264925],[-118.39317265710886,51.002158627185324],[-118.3912782393656,51.002331940871066],[-118.38955177883366,51.00227842093148],[-118.38782628776048,51.00113156175236],[-118.38720225095066,51.00033726685881],[-118.38692721689021,50.999933599822185],[-118.38402734532532,50.99819202441043],[-118.3823052769842,50.996023578340306],[-118.37876748612402,50.99340525140303],[-118.3770341622007,50.99038579738267],[-118.37576459508558,50.98758979976025],[-118.37394933097438,50.98479949885215],[-118.37132108927354,50.9822359947402],[-118.36896185318732,50.980695553902414],[-118.36833155595224,50.98035848319838],[-118.36506615676602,50.97950356419257],[-118.36334768921701,50.9788246488727],[-118.35999724739536,50.97779836751852],[-118.35890087962895,50.97717086632072],[-118.3564562448835,50.97546395404024],[-118.35347034789945,50.972155144753195],[-118.3509339811546,50.96981800753146],[-118.3503941745031,50.968790364429495],[-118.34939439684771,50.966854563689914],[-118.34920564218736,50.96212332492496],[-118.34884038658409,50.9594998139993],[-118.34782819743329,50.956305887580235],[-118.3460295034621,50.95385243027728],[-118.34439815171936,50.95317400249151],[-118.34121890375054,50.951749387336065],[-118.33878255657751,50.95083734987497],[-118.33634273971217,50.94953039849138],[-118.33172667797761,50.94804879480973],[-118.32910433472527,50.94713731375083],[-118.32854679279161,50.94588470471372],[-118.32719107562787,50.94286502345701],[-118.32583592708832,50.93984308375562],[-118.32393270224631,50.93676089978297],[-118.32130368590904,50.93448244668184],[-118.32040706754967,50.933287774142514],[-118.3199494851176,50.930546384255045],[-118.32084658238354,50.92792231237717],[-118.32084577631302,50.92518970106483],[-118.31967277792235,50.92136707600775],[-118.31821251328512,50.91771662422846],[-118.3178519272061,50.91640515310757],[-118.31558680999244,50.91418360048863],[-118.31359589236033,50.911784931507036],[-118.3120607840536,50.908820791812175],[-118.31233123486805,50.90642687009023],[-118.31467629975451,50.90345806199164],[-118.31512343132097,50.9011175044658],[-118.31413652489181,50.899124329367815],[-118.311421328951,50.89553745218843],[-118.30924539409055,50.893138838284145],[-118.30626322482337,50.88977616075115],[-118.30355437458711,50.887897374401255],[-118.30209849720381,50.88771065854389],[-118.30047516510712,50.88749938824301],[-118.2971413229191,50.88749817668488],[-118.29668312919661,50.88749989225209],[-118.29063762307699,50.88778796982641],[-118.28403489586533,50.88939123340037],[-118.27925351860152,50.89195909214067],[-118.27680752869118,50.89401410401916],[-118.2752755319454,50.895667011208474],[-118.26895397002826,50.894816928961745],[-118.26189317007065,50.89328058827083],[-118.25557966954908,50.89139976420575],[-118.25322746494584,50.890771364947646],[-118.25160355746236,50.889576828783625],[-118.25332102690213,50.88678005620513],[-118.25910356485731,50.88660788602126],[-118.26543126572913,50.88552116567786],[-118.26985399707216,50.8823830234185],[-118.27238091348175,50.880272216079824],[-118.274547531442,50.87941198144368],[-118.27988586819255,50.87758640960698],[-118.28394392503274,50.87604650408137],[-118.28900416893455,50.87284789042597],[-118.29161789211051,50.86948301615357],[-118.29242650942585,50.86497598226044],[-118.29143501553222,50.8608708816564],[-118.28980382924232,50.857158019000025],[-118.28709481986769,50.85248692192191],[-118.2854703481116,50.8499776694187],[-118.28510690913284,50.84935174635465],[-118.28167610755769,50.84769774973909],[-118.27579944248077,50.84695906379913],[-118.27345374008036,50.846222948213985],[-118.26994213492175,50.843142790440965],[-118.26822014146482,50.83823668958119],[-118.27011183419981,50.833675853696995],[-118.27255232412662,50.830481154598274],[-118.27327766241369,50.829512151549444],[-118.27408422650291,50.82551812522704],[-118.27055962077037,50.82392316219116],[-118.26668641280689,50.82392738571552],[-118.26451948055497,50.82398038434548],[-118.26064811009263,50.822903688541814],[-118.25973611470141,50.8190207655612],[-118.2628089181168,50.814569615065004],[-118.26596753624354,50.81143219882367],[-118.26613975623381,50.81126288210923],[-118.26464673436396,50.80794896161951],[-118.26000859369165,50.80475491080064],[-118.25975535139132,50.79999996882443],[-118.25966631401232,50.79832166473041],[-118.25465028601057,50.79747622500087],[-118.26098815923572,50.79403636715028],[-118.25761742076048,50.792754109692005],[-118.25709335858691,50.78321566980083],[-118.25270744378177,50.7814746476584],[-118.24767000625843,50.775760910251904],[-118.24703223415065,50.77465593937416],[-118.24549650215668,50.77100696612163],[-118.24342043362002,50.768497801219404],[-118.23900272280034,50.76616030913862],[-118.23431783251324,50.764622871692865],[-118.23108536681745,50.76285956223272],[-118.2293702504637,50.76131668191023],[-118.22910450923672,50.75989187049642],[-118.22946431739983,50.756922589017],[-118.23126705724728,50.75418841313003],[-118.23216168466378,50.75281858722905],[-118.23090961989217,50.74837005939072],[-118.22748222135199,50.74552096041582],[-118.22325127487865,50.74278331836022],[-118.21630936662079,50.74021680604928],[-118.21064386412404,50.73867783103703],[-118.20929044039909,50.73834135889047],[-118.20515781130551,50.736684590962575],[-118.20290630835626,50.73389429656282],[-118.20444074735607,50.72984144360751],[-118.2058809260394,50.72681782506633],[-118.20587443228438,50.72522009087455],[-118.20480924690308,50.71906526013593],[-118.20381456900235,50.71267128552613],[-118.20219965354994,50.706402630039435],[-118.2020250029142,50.705034240910024],[-118.20166527095351,50.698190400618024],[-118.2031156784683,50.69493984869652],[-118.20679898490489,50.68974975534502],[-118.20923347483696,50.68558984892912],[-118.20959244388057,50.68222035964616],[-118.20707775158422,50.67874709705371],[-118.20628022372156,50.67817377466511],[-118.20096341830832,50.67623332299749],[-118.19548300532543,50.67457989255915],[-118.1893624274723,50.67333192048067],[-118.18315977372865,50.67247377837427],[-118.17642439475532,50.67173084850008],[-118.17299898710337,50.67030562174247],[-118.17318913976605,50.664659521098834],[-118.18281948119693,50.66186816069758],[-118.18829895677737,50.65992692914536],[-118.18956744863263,50.659756859294106],[-118.1947864592968,50.65889738216472],[-118.19999141034795,50.658443954758575],[-118.20430600287118,50.65598978910204],[-118.20313857687081,50.652230041377706],[-118.20134051475421,50.64988501455488],[-118.19981491344485,50.648346501105415],[-118.19981811032031,50.64424352786961],[-118.19946277660264,50.639339211440884],[-118.19793150607117,50.63677385095076],[-118.19497836954802,50.634610664690655],[-118.1882078755534,50.634712887402486],[-118.18819377957124,50.63483447115332],[-118.18823064475046,50.634959649933236],[-118.18823897016924,50.635013895364],[-118.1882216013627,50.635031879275274],[-118.18819788388907,50.63504546676702],[-118.18813727855311,50.63508695331635],[-118.18807852702807,50.635128009921715],[-118.18805227325304,50.63514593799617],[-118.18797020471153,50.63521867749364],[-118.18780478910269,50.63535108756376],[-118.18765223088093,50.63541999623301],[-118.18754093817701,50.63542572158015],[-118.18739245288462,50.63544069655468],[-118.18716539298325,50.63548798444154],[-118.18694851052288,50.635589087463146],[-118.18680572921657,50.63569370612473],[-118.18669329479025,50.63576713667828],[-118.18656289224141,50.63583139411878],[-118.18639451712976,50.63590936506315],[-118.18616050906354,50.635925088807184],[-118.18581567079231,50.635892908613734],[-118.18546879133315,50.63588261875893],[-118.18512259458261,50.63586841713984],[-118.18469046134568,50.635796195024575],[-118.18409917329258,50.6356675751101],[-118.18342195415721,50.635480931618815],[-118.18304018313044,50.63535462986369],[-118.18297163565235,50.635319299112076],[-118.18296079639107,50.63531005800515],[-118.18287781186795,50.63530647422299],[-118.18246934878702,50.63533307068845],[-118.18185001540499,50.63537531956549],[-118.18151691484074,50.63538801366567],[-118.18136919363188,50.63535784326464],[-118.18118280950719,50.63531477252424],[-118.18106633093981,50.63528906168811],[-118.18104221631125,50.635284534274255],[-118.18109060540796,50.635180613003236],[-118.1812159763979,50.63494146013772],[-118.1813275009332,50.634751033378954],[-118.1813917011616,50.63463805752999],[-118.1814443692346,50.634489246159625],[-118.18147455455131,50.63425524731886],[-118.1814675332868,50.6339898229916],[-118.1814582024771,50.6338191287671],[-118.1814688018155,50.633697298189205],[-118.18148239505648,50.63347681777481],[-118.18147408749698,50.63315763328222],[-118.18145201183843,50.6328256116718],[-118.1814885284164,50.63255534484273],[-118.18158179777097,50.63238792694137],[-118.1816617191837,50.632296954696564],[-118.18161655756359,50.6321175272359],[-118.18142727517461,50.631836436038036],[-118.18128059105841,50.63165776603179],[-118.181020967117,50.631494305648786],[-118.18061577974956,50.631278219147184],[-118.18043437258021,50.63117618684914],[-118.1804376888493,50.631167382142806],[-118.18044100511707,50.63115857743633],[-118.18045056732198,50.631144563770405],[-118.18047466847406,50.63110840907563],[-118.18051465514958,50.630991468168325],[-118.1805056976137,50.63075754003486],[-118.18043437668,50.63056497063936],[-118.18038662321321,50.630502288091385],[-118.18038281265237,50.630493550741626],[-118.1803745117724,50.63047996886535],[-118.18034472123969,50.63042646927182],[-118.18032877561029,50.63031405702117],[-118.18037870741696,50.63016053356568],[-118.18042580594714,50.63000286073928],[-118.18036270013114,50.62985493161935],[-118.18024112991563,50.62972603991879],[-118.18018996318006,50.62967272443551],[-118.18017707251063,50.62965486941652],[-118.18014875454365,50.62962349983647],[-118.18015322138461,50.62954698863669],[-118.18021417570293,50.629371085434414],[-118.18029259749517,50.62917663686705],[-118.18036818730256,50.62897802994377],[-118.1804756570602,50.628657961027244],[-118.1805578243982,50.628279059444985],[-118.18060123557642,50.62788781966794],[-118.18068321684979,50.62754052991065],[-118.18075089643943,50.62734645398582],[-118.18076678023246,50.627265667383064],[-118.18076910556026,50.62721160105949],[-118.18076068093244,50.62711723460766],[-118.1807625970142,50.62700439011348],[-118.18072146569585,50.62688342438276],[-118.1805903268427,50.626727881750746],[-118.18044631011465,50.62658498011743],[-118.18029664149716,50.62647445314949],[-118.18011398231036,50.62635933293364],[-118.18000795734574,50.62628407505593],[-118.17998442764882,50.626266039700276],[-118.17997534815876,50.626256921992905],[-118.17996978106284,50.62624806079413],[-118.17995786892445,50.626234793734376],[-118.17993785477924,50.626216997020464],[-118.17984735312379,50.626154700052744],[-118.17969154031482,50.626048818674654],[-118.17958180499053,50.62596426044482],[-118.1795123864446,50.62589327141846],[-118.17946327640468,50.625848577915654],[-118.17945234192324,50.62583989886007],[-118.1794340851105,50.62582222584598],[-118.17941153328225,50.62580877842438],[-118.17936418194812,50.625764199744076],[-118.17928744021168,50.62568422552507],[-118.1792444792694,50.625634876554834],[-118.17924066934292,50.625626139114985],[-118.17927907187325,50.625436779201465],[-118.17928705260094,50.62501422698148],[-118.17918263296124,50.62473628630789],[-118.17905328422752,50.624652035226],[-118.17891222076639,50.62456357806117],[-118.17878736414518,50.624484162344665],[-118.1787448773829,50.62438118533338],[-118.17873458160817,50.62420590083387],[-118.1787282917381,50.62404841505083],[-118.17870180120352,50.623904762511174],[-118.17865549597803,50.62375236529822],[-118.17857902446886,50.623569027588864],[-118.1784635904212,50.62331346544498],[-118.17839003971712,50.623103226980895],[-118.17823821581743,50.62289311185344],[-118.17795442676629,50.622644329527176],[-118.17778681829853,50.62252461520723],[-118.1777511834738,50.62248425957593],[-118.17770753815489,50.6224083062808],[-118.17764885211147,50.62229627784951],[-118.17746358193314,50.62218605565587],[-118.17715426261329,50.62206313019128],[-118.1769995536846,50.622001952843426],[-118.17697241714762,50.621984222652735],[-118.17695894755083,50.62197988374326],[-118.17693991354717,50.62196667450802],[-118.17689833041796,50.621940017276614],[-118.17682785411473,50.621895505960886],[-118.17676821269366,50.621860236457536],[-118.17668182182915,50.62178465869949],[-118.17653617555438,50.621651242201466],[-118.17639708045081,50.62157195776165],[-118.17626980564634,50.62153699959062],[-118.17608036442452,50.621511776672286],[-118.1758540359609,50.6215144667399],[-118.17565395614353,50.62148906245649],[-118.17545728518314,50.62142378530238],[-118.17524021717918,50.62136328809743],[-118.175060731388,50.62134216375828],[-118.17494028842594,50.62129864714536],[-118.17483408715339,50.62121433149938],[-118.17476390349384,50.621147803369276],[-118.1747181200009,50.62109430287674],[-118.17466999833557,50.62105418620824],[-118.17456721893744,50.62100118589895],[-118.1744030462792,50.620912781875546],[-118.1742682308393,50.62070724776929],[-118.17416725486382,50.62034875457895],[-118.17398020496246,50.62000452770919],[-118.17373031670489,50.61971461907381],[-118.17360164822587,50.61946376380663],[-118.17359040192675,50.61932457248196],[-118.17358854199219,50.61928432824968],[-118.17358492381737,50.619243969051794],[-118.17357846907014,50.619158777460456],[-118.17357748589806,50.61911351539061],[-118.17358080262005,50.61910471076092],[-118.1735842176234,50.61909534363401],[-118.17358382435258,50.61907723880505],[-118.17357913282127,50.61903284501173],[-118.17355832982787,50.618938172339426],[-118.17353206347333,50.61884423511056],[-118.17352287557613,50.61875433142645],[-118.17357789112397,50.61859212814753],[-118.17363260971098,50.618411266397565],[-118.1735792040166,50.61825892407261],[-118.1734957473109,50.618156442957314],[-118.17344059852957,50.61808532456566],[-118.17336807385686,50.61799152306061],[-118.17331965557324,50.61790224175348],[-118.1733111625748,50.61787960671789],[-118.17324840910568,50.61786219222391],[-118.17311675722138,50.61783200033476],[-118.17299612902853,50.61777942900735],[-118.17285109610143,50.61767316434402],[-118.17266116483567,50.61750837114977],[-118.17243131706711,50.617317604959794],[-118.17214224314068,50.61718084154394],[-118.17187260049603,50.61711605750506],[-118.17171401491116,50.61707719375547],[-118.17165019002279,50.617055743731726],[-118.17155698684672,50.61698871831301],[-118.17136159841334,50.61682466705917],[-118.17111468553793,50.616660369622245],[-118.1708226006165,50.61659174869009],[-118.17052964612888,50.61659932438218],[-118.17027474912027,50.61659263726228],[-118.16996315340214,50.61656443185582],[-118.16965595130901,50.61657212971527],[-118.16930551831541,50.61659316300692],[-118.16888843261313,50.616588584971076],[-118.16869862719365,50.616585918495325],[-118.16869306351644,50.616577056630405],[-118.1686080596656,50.616442817152894],[-118.16845796027178,50.616192699426385],[-118.16836758987347,50.61605865027749],[-118.16833138369853,50.61603180801867],[-118.16825448433661,50.61598344688206],[-118.16812927930441,50.615885913489166],[-118.1680049521169,50.61578336213852],[-118.16791048717982,50.615703255379316],[-118.16781690022493,50.61562829924945],[-118.16767988823939,50.615516943214736],[-118.16753546032302,50.61539715463889],[-118.16737688429299,50.61527692750018],[-118.16716395367503,50.615121797168555],[-118.16699522921087,50.61498843376179],[-118.16692252975402,50.61492624043606],[-118.16686427130693,50.61487298439064],[-118.16681235670511,50.614824126052625],[-118.16676297932948,50.61477092745136],[-118.16669545157562,50.614699499922644],[-118.16652175409543,50.61454374810301],[-118.16623115497968,50.61430404345508],[-118.16599783949255,50.614113006313126],[-118.16585546888518,50.61400183828784],[-118.16575213243911,50.613921663017855],[-118.16562039943058,50.613851350447575],[-118.16541616330298,50.613799084546535],[-118.16521836916459,50.61376082215749],[-118.16499305846354,50.6136460558989],[-118.16468266418258,50.61343827396609],[-118.16445355375053,50.613274085373966],[-118.16437022365811,50.613211708524965],[-118.16426640381981,50.61311398930241],[-118.16406481402026,50.61294496409996],[-118.16388176361757,50.61281227290405],[-118.16376262365064,50.612741156744185],[-118.16365314534572,50.612665633981166],[-118.16355781697068,50.612590541021845],[-118.16345829204933,50.6125191105302],[-118.1632984658869,50.6124264731251],[-118.16308712174452,50.61230308027095],[-118.16291891584919,50.612075398549344],[-118.16286507935594,50.6117428103013],[-118.16286226744711,50.61150478330792],[-118.16284539362968,50.61142845200926],[-118.16282997777022,50.611414934757434],[-118.16285691109307,50.611382941805324],[-118.16292346406848,50.611297255044356],[-118.16297528426891,50.611183980686675],[-118.16304027788082,50.61106654798425],[-118.16316859746128,50.61095301882537],[-118.16340717434863,50.61082920883436],[-118.16375259418014,50.610704466361554],[-118.1640403445239,50.610624793728874],[-118.1642130539932,50.61054208446331],[-118.16441708602382,50.61039210606506],[-118.16466004979513,50.61022284029226],[-118.16484495562635,50.61009070886452],[-118.16497609655636,50.60998133623494],[-118.1650972846112,50.609867871084596],[-118.16516373188972,50.60981325110506],[-118.16517778249687,50.60980407472136],[-118.16523730253405,50.60975856468745],[-118.16538005323882,50.60965396147168],[-118.16552290008106,50.60954880449205],[-118.16561735109097,50.60943571053132],[-118.16568116463941,50.60930463522898],[-118.16573356063795,50.609218516924734],[-118.1658672337453,50.609104802888915],[-118.16607125557702,50.60891413785704],[-118.16621722089116,50.60875044841412],[-118.1662885437471,50.60863742020862],[-118.16642377482172,50.60851477689177],[-118.1666293530725,50.60838636244288],[-118.16682195297912,50.60828132751916],[-118.16709270205165,50.60808521273778],[-118.16743720953598,50.60780277840364],[-118.1677062942609,50.60757546966638],[-118.16784746862679,50.60743912601881],[-118.16795917845512,50.60729843339828],[-118.16808074116783,50.60716239524178],[-118.16818767081207,50.607089725076925],[-118.16833811562415,50.607042723627806],[-118.16853119562955,50.60699591163099],[-118.1686959832049,50.606958391536466],[-118.16884613533799,50.60694357385349],[-118.16903092369039,50.606923852379985],[-118.16926936829107,50.60683108869696],[-118.16949932081599,50.606685182968775],[-118.16959561165334,50.60661233016126],[-118.16946955337492,50.60655032987718],[-118.16921275452387,50.60642260875433],[-118.1690271814587,50.60633493985171],[-118.16889975985046,50.60629092006015],[-118.16873857965722,50.60621627092314],[-118.1685493004863,50.60611930069721],[-118.16837094965616,50.606031010489026],[-118.16824128563319,50.60596931439144],[-118.16812488885729,50.60590291456198],[-118.16800273631924,50.60581859109421],[-118.16790273168974,50.605729612423715],[-118.16786643599083,50.605662648676955],[-118.16788838504685,50.60560827539873],[-118.16793238464554,50.605549800617894],[-118.16796682157114,50.60549517912567],[-118.1680784263368,50.60531437396484],[-118.16825187854278,50.60499331464177],[-118.16828650523782,50.6047952068565],[-118.16817284170092,50.604692844617155],[-118.1679109856691,50.604614475479295],[-118.16751118012475,50.60454218360583],[-118.16725351954058,50.60433812624889],[-118.16719946647152,50.60407783371893],[-118.16717956126683,50.60390695069662],[-118.16715536440664,50.60378095861225],[-118.16718560417205,50.60358762968918],[-118.167348813016,50.603325169521284],[-118.16755124167504,50.60314342905753],[-118.16769318740438,50.60315515070844],[-118.16788098893294,50.60322998282429],[-118.16809512632626,50.603204996528504],[-118.1682681908518,50.603140385433],[-118.16841393760606,50.60304898878659],[-118.16848485638826,50.60291784427053],[-118.1684908006777,50.602792290244],[-118.16850415733336,50.602593810242695],[-118.16841605284418,50.60236557902463],[-118.16822288926066,50.60229092937042],[-118.16813635804716,50.60228764008765],[-118.16815059956032,50.60224684111004],[-118.16815869445729,50.6022106970056],[-118.16817917803776,50.60213418350705],[-118.16818375795363,50.60198592693398],[-118.16809878006838,50.60181101887379],[-118.16796688198049,50.60169098066899],[-118.16787820377421,50.60162878719858],[-118.16783732678208,50.60159822412203],[-118.16779215787689,50.60153119366547],[-118.16774571724616,50.601369735200244],[-118.16772425058036,50.60120778035011],[-118.16772200432561,50.60114943883046],[-118.16768941868817,50.60105110045038],[-118.1676162483919,50.600849339364544],[-118.16757380999043,50.60070567141957],[-118.16756171185219,50.60064267518011],[-118.16755088068695,50.60056226017488],[-118.16749858915736,50.6004139463956],[-118.16742083652973,50.600207902309116],[-118.1673942993742,50.60006479653736],[-118.16740736970081,50.6000001878859],[-118.16741887820749,50.59989366429697],[-118.16741955735326,50.59976773789271],[-118.16745038093819,50.599672746901575],[-118.16753300432725,50.59958649351739],[-118.16761835735826,50.59950496129457],[-118.16769766369582,50.59942751243178],[-118.16777218865114,50.59933673708367],[-118.1678071091293,50.59926915184047],[-118.1678264209409,50.59917899717983],[-118.16784826746643,50.599043827263074],[-118.16787664926737,50.59892211665807],[-118.16791420228834,50.59880895358556],[-118.16796492315432,50.59869164046393],[-118.16802598461615,50.59859652474505],[-118.1681373781787,50.598447340302684],[-118.16827218092169,50.598265912996126],[-118.16834465315519,50.59816652301322],[-118.1683810368315,50.59812106860814],[-118.1684728237905,50.59804337974893],[-118.16860245929718,50.59795253617239],[-118.1686717145559,50.59790206309713],[-118.16870487884259,50.59787502844205],[-118.16874935769467,50.59783410452467],[-118.16878076605119,50.597806945873174],[-118.16881939273075,50.59777916700853],[-118.16887976833235,50.59769813022292],[-118.16893331526323,50.59758496627856],[-118.16896784141301,50.59749927521269],[-118.16899212782737,50.59747218312514],[-118.16902656124306,50.597458226824315],[-118.16905367501337,50.59739460951367],[-118.16905171690946,50.59727357667866],[-118.16904234674209,50.5971746176282],[-118.1690377587062,50.59712966889361],[-118.16902702643863,50.597089366181194],[-118.16895552207095,50.59700013881851],[-118.16883904625091,50.5968529425832],[-118.16878967964753,50.5966777186857],[-118.16881590660653,50.596466596890224],[-118.16884837955452,50.59629093261559],[-118.16886739581426,50.59622279356635],[-118.16885978428616,50.59616463338832],[-118.1688239782339,50.59600335563895],[-118.16878777755805,50.595783306362314],[-118.16877040366394,50.59556740646125],[-118.16877214477644,50.59529297365361],[-118.16887464157239,50.59495051488893],[-118.16897489572435,50.59466157050615],[-118.16888309965948,50.59446471197122],[-118.16879930601364,50.59430343495395],[-118.16893204179587,50.594072716640106],[-118.16910476345747,50.593765722279706],[-118.16893795625796,50.593438712774145],[-118.16858417675742,50.593154432574245],[-118.16844176933564,50.59304381862682],[-118.16832696743467,50.59296848031313],[-118.16798539036009,50.59274663230088],[-118.16760509434535,50.59251244910341],[-118.16737832515037,50.59240660452564],[-118.16720334770591,50.592350181488506],[-118.16695658481818,50.59222654522717],[-118.16669489939059,50.592035761554186],[-118.16645438168155,50.591876409259264],[-118.16623571283012,50.59177509309409],[-118.16604688978788,50.59169622237893],[-118.1658628471298,50.59163067796407],[-118.16570621044401,50.591591365978786],[-118.16552655620914,50.59156172637601],[-118.1652671212906,50.591510631992975],[-118.16501412396856,50.59146338139062],[-118.16484490615794,50.591424878560865],[-118.16468661498287,50.5913543721311],[-118.16450969643239,50.59124809273669],[-118.16435920936674,50.59113295127624],[-118.16417273769166,50.590959333687564],[-118.16403006304283,50.590718188724296],[-118.16408332713398,50.59047450996715],[-118.16420378466765,50.590293772062886],[-118.16405242066115,50.59025482982076],[-118.1636490340889,50.59032575449007],[-118.16344070781508,50.590368656708506],[-118.16339301797585,50.590346639176964],[-118.16321435091862,50.59024023353793],[-118.16298009968969,50.59004515863566],[-118.16286922224965,50.58986615093367],[-118.16284855600955,50.589740403909566],[-118.16283178956763,50.589633010504365],[-118.16281492400203,50.58955667718738],[-118.16279493462022,50.58949821016882],[-118.16277514118327,50.58944878697074],[-118.16276675483451,50.58943576561967],[-118.16279532976027,50.589434964939194],[-118.1630293001964,50.58942833319771],[-118.16374330485746,50.58934942426806],[-118.16460681899537,50.58922853127053],[-118.1649769376932,50.589175021611474],[-118.16503369882211,50.58916547351414],[-118.1652306082551,50.58905566902482],[-118.16552797244637,50.58885917280812],[-118.1657153221458,50.58872270511434],[-118.16591027953235,50.58856303823891],[-118.16639644521885,50.58829288693333],[-118.16695974878172,50.588089756243214],[-118.16725602760721,50.58800108678774],[-118.16742269645819,50.58793206903244],[-118.16762125422431,50.58785344431822],[-118.16786915793965,50.58775683706327],[-118.16810213880241,50.58766426428479],[-118.1682318435631,50.587613541879655],[-118.16835442958185,50.58756287698794],[-118.16853884090698,50.587453314678115],[-118.16869857709378,50.58731206339369],[-118.16884504942485,50.58717552455477],[-118.16900429818355,50.587057396315416],[-118.1691090319703,50.58696649398734],[-118.16919445648188,50.586884396799],[-118.16932980991967,50.586770799509644],[-118.16947569437576,50.58664777693375],[-118.16957691546385,50.58655662619698],[-118.16955701473503,50.58646709102634],[-118.16943997999961,50.58633341073458],[-118.1693025610008,50.58616383418225],[-118.16916309535621,50.58598563426191],[-118.16908507291978,50.585882955239605],[-118.16903455115644,50.585775439073785],[-118.16897349336045,50.58559599682211],[-118.16893652661787,50.58546175144858],[-118.16891945745319,50.58541705038126],[-118.1689082419989,50.58538970177188],[-118.16889390140591,50.58530903747367],[-118.16887634229036,50.58520610881431],[-118.1688664911789,50.585160778579215],[-118.16886999960377,50.585120350938126],[-118.16888393667466,50.58498970956324],[-118.16891396314044,50.58482799858712],[-118.16895900856726,50.584692205521826],[-118.16900990636768,50.584583942722475],[-118.16905436938637,50.58450234241137],[-118.16909200719006,50.58443946790743],[-118.16912223495757,50.58439866753446],[-118.16915685141036,50.58435308815199],[-118.16922081727031,50.58427173528451],[-118.16928975427187,50.58417209507341],[-118.16937117458096,50.58407219752121],[-118.16948174792304,50.58392747353676],[-118.16954892852952,50.5838277091616],[-118.16956764898029,50.58379174539913],[-118.16958588352836,50.58376873634519],[-118.16963980488038,50.58371436035683],[-118.1697214192883,50.58362351530184],[-118.16978323946091,50.583564608124796],[-118.16987655702637,50.58351866355469],[-118.17001102464042,50.58344058974223],[-118.17016323790176,50.58336264809751],[-118.1703308606688,50.58329821398317],[-118.17051798709846,50.58326454259643],[-118.17070267751093,50.58324481778564],[-118.17078254162305,50.58323519931815],[-118.17089320913371,50.583130595879545],[-118.17125252277563,50.582884227904515],[-118.17181261356201,50.58265825339218],[-118.17229899054908,50.58251859183198],[-118.17247508197902,50.58239543906905],[-118.17247554495066,50.58221978142614],[-118.17249161442905,50.58206668403371],[-118.1727347933027,50.58195617624909],[-118.173192103566,50.581830277593134],[-118.17344493795764,50.58175604544411],[-118.1734704836698,50.581742030526186],[-118.1734761358124,50.58171983211789],[-118.17349864446477,50.58161125419092],[-118.17359573481761,50.58142151038233],[-118.17376206820666,50.58130331651245],[-118.17388609638256,50.58127478556553],[-118.17401363480502,50.581246502261635],[-118.17422258989308,50.58119967784264],[-118.17442510794893,50.58113883126303],[-118.17450192687255,50.58103465598975],[-118.17455572759616,50.58089947945378],[-118.17473249324188,50.58080292777718],[-118.17495333795434,50.58072868557792],[-118.17513176063669,50.580632810718946],[-118.17535512853881,50.58051356021948],[-118.17563466235566,50.58039826404014],[-118.17580938354958,50.58033376331256],[-118.175974943179,50.58029121315969],[-118.17643700754488,50.58017863622779],[-118.17708861680246,50.58002857881977],[-118.17750990999285,50.579884874374486],[-118.17771882592861,50.57971600684348],[-118.17786650854111,50.579562035565296],[-118.17793328137945,50.579484826858916],[-118.17811012441229,50.579357200225346],[-118.17841809226876,50.57916030304312],[-118.17857650872052,50.579046624478586],[-118.17858498600674,50.57902858428987],[-118.17858361477816,50.57900589027196],[-118.17853942883096,50.578943450676135],[-118.17839293938393,50.578805441377426],[-118.17820823045614,50.57867264443253],[-118.17805735567815,50.57853941403671],[-118.1778343975656,50.578289801180816],[-118.17757564676957,50.57799076816477],[-118.17743196372044,50.57774505717547],[-118.17736287948706,50.57753002711234],[-118.1773144770274,50.57735939125162],[-118.1772707682025,50.5772433202076],[-118.17720522251383,50.57714039654298],[-118.17712676630387,50.576867081368974],[-118.17706841614877,50.57626469318355],[-118.17703696062839,50.5755998086556],[-118.17702242782043,50.5751637824674],[-118.17701924722209,50.574907077007076],[-118.17702145852118,50.57477220876329],[-118.17701501326093,50.57472768889595],[-118.17698058054062,50.57466029585419],[-118.17692157540945,50.574570821971015],[-118.17683341248876,50.57445500259212],[-118.17671774817312,50.574303346058066],[-118.17662227136816,50.57417854070678],[-118.17656384948829,50.57407554915577],[-118.17652736022218,50.57395885663415],[-118.17651533729845,50.57382412248465],[-118.17650848031091,50.57368014443477],[-118.17650210869766,50.57352320252642],[-118.17650645056071,50.573325220338],[-118.17654618081286,50.573117867447486],[-118.1766025978931,50.57297778541666],[-118.17657957350053,50.572906108154136],[-118.17644843419673,50.572853357132026],[-118.17632353732664,50.57280555697652],[-118.17627507928124,50.57278801795344],[-118.1762155049025,50.57275273713472],[-118.17612453384464,50.57270395057165],[-118.1760857274747,50.57268200369914],[-118.17603990165165,50.57265956137117],[-118.17572526181036,50.572487640016774],[-118.17515068941037,50.572196819130426],[-118.17456716997148,50.571977666368774],[-118.1739839768386,50.571929714776495],[-118.17357043910305,50.57201915558917],[-118.17338238451842,50.572048253078684],[-118.17322853363872,50.57197298682954],[-118.17302135265514,50.571867397935584],[-118.17277010265674,50.57173949778346],[-118.1725092980713,50.571584925855795],[-118.1722628252599,50.57142967492374],[-118.1720577893969,50.571301646628235],[-118.17189916549688,50.57121304285327],[-118.17182263156278,50.57117318090387],[-118.17181171183238,50.57116450052603],[-118.17179367625485,50.57115587803585],[-118.17176939928778,50.57114230425305],[-118.171669272976,50.57108494856871],[-118.17151952122587,50.570996410277935],[-118.1714401611629,50.57095238928382],[-118.17133194294172,50.5708905116383],[-118.17111648274845,50.57077134446042],[-118.17086446482553,50.57064790434172],[-118.17058037594978,50.57052501844518],[-118.17033869796452,50.57042376613108],[-118.17004613131812,50.570318927518095],[-118.16973124215573,50.57020968186633],[-118.16961279410539,50.5701657182417],[-118.16958227959542,50.57015735270049],[-118.16951764527796,50.5701307492533],[-118.16946821758766,50.57010861874955],[-118.16944023904044,50.570095903707745],[-118.1692583240991,50.56999831018643],[-118.168952794625,50.569835488334334],[-118.16880860872486,50.569755817544234],[-118.16882264608928,50.56974664025642],[-118.16888688551194,50.56967377657769],[-118.16905210967423,50.56947020941059],[-118.16923711777794,50.56919402717814],[-118.16931090094214,50.56899528941514],[-118.1693236637152,50.5688916803784],[-118.16937122894102,50.5687922203791],[-118.16944326170457,50.56867471126097],[-118.16953274139168,50.56853866604361],[-118.16962495038092,50.568407333162995],[-118.16968313920493,50.56830806314568],[-118.16971354822624,50.568235638375],[-118.16976968351233,50.5680463921019],[-118.1698562205222,50.56770336802405],[-118.16990124040053,50.56749638796783],[-118.16989957520327,50.56738384122486],[-118.16982498504099,50.56715994144852],[-118.16966783199535,50.56694093811105],[-118.16952072535358,50.56677630974932],[-118.16941913890538,50.56657479030812],[-118.16939358485133,50.566354914652436],[-118.16942242365447,50.56613888188278],[-118.16945867100044,50.56593128178338],[-118.16950827467664,50.56576926079622],[-118.16956372935577,50.565624592599264],[-118.16960602176007,50.56545357624621],[-118.16963671313565,50.56527779011111],[-118.1697127335927,50.56513740409389],[-118.16986800172093,50.56500091751574],[-118.17000270392643,50.564900833936484],[-118.17006849516513,50.56485972560374],[-118.17019656974199,50.564777251979095],[-118.17045554631295,50.56462662331322],[-118.17067095303896,50.56451190223462],[-118.1708413272469,50.564410948099116],[-118.17103957207563,50.564252077957455],[-118.17113147702084,50.56414276012212],[-118.17112872687771,50.563944833736485],[-118.17081580693974,50.5636108765893],[-118.17019567467514,50.56341904968063],[-118.16999604611073,50.563331502332574],[-118.17041339706272,50.563097721151095],[-118.17124654062175,50.56276111306468],[-118.17239449175831,50.56238120100743],[-118.17340683679703,50.5619436764259],[-118.17411994730575,50.561572024250346],[-118.17496571504995,50.56128486860468],[-118.17580331595431,50.56114627655084],[-118.17639121363015,50.561054454415356],[-118.1770042307862,50.560859322627145],[-118.17776673620317,50.56059112760076],[-118.17854109385485,50.560214165099765],[-118.17897870967315,50.559863708373214],[-118.17908470802327,50.559714134535255],[-118.17916355112466,50.559699930275805],[-118.17932826501287,50.559702515530866],[-118.17951266924162,50.559714399325436],[-118.17964220510741,50.55973539999038],[-118.17975156947466,50.5597702350397],[-118.1798974833762,50.559809348516914],[-118.1800520698497,50.55983946520245],[-118.18014427699164,50.55986066034891],[-118.18012299563296,50.559748429640244],[-118.18009262661613,50.5595558960036],[-118.1800753461422,50.55946146533833],[-118.1800767815649,50.55937173598983],[-118.18007631504625,50.55911973792306],[-118.18007320540883,50.55883196627474],[-118.18007060160062,50.558602415006824],[-118.17992736363945,50.558374798661845],[-118.17963774486851,50.55816171829874],[-118.17947534807783,50.55806438576799],[-118.1794545860349,50.5580510521333],[-118.17944015938997,50.55804212474814],[-118.1794292413751,50.55803344497914],[-118.1794112080407,50.5580248325152],[-118.17924318916694,50.558031052826166],[-118.17883179711804,50.55797659058666],[-118.17844951185911,50.55779594283529],[-118.17826624860191,50.55764516026811],[-118.17821994430308,50.55760517481256],[-118.17835246771025,50.557527527185385],[-118.17883988996064,50.55728849654088],[-118.17934639187989,50.55699092631239],[-118.17941094700267,50.55678362292824],[-118.17930469197002,50.55669025188005],[-118.1792864616881,50.55667258629419],[-118.17929912193183,50.55664071291384],[-118.17937860619938,50.55650056644384],[-118.17951235139061,50.55628345756185],[-118.17961589451579,50.55610716202355],[-118.17967959176897,50.555976070243446],[-118.17979347192875,50.55582196305432],[-118.17996871067362,50.55555016657873],[-118.18009939953272,50.555238499817825],[-118.18026858547411,50.55494027919819],[-118.18047841280695,50.5546635742249],[-118.18044736397694,50.55447495053468],[-118.18022589554474,50.554288706960165],[-118.18011270284066,50.55412310264625],[-118.180200653613,50.55396490537558],[-118.18038068796739,50.55378778852805],[-118.1804780090633,50.55368788608636],[-118.18048628463478,50.5536607831494],[-118.18049846240608,50.553652042963975],[-118.18050800813917,50.55363802798085],[-118.1805403545334,50.55361545301423],[-118.18061128238679,50.55356509359457],[-118.18068454462669,50.55350134013174],[-118.18072263390951,50.553456003024536],[-118.18075263256019,50.55340614483906],[-118.18079100621938,50.553338799341624],[-118.18082002874951,50.553284352675384],[-118.1808326869558,50.55325247898924],[-118.18083813408947,50.55322122631666],[-118.18084679034747,50.55317156135237],[-118.18084813578821,50.55311290172949],[-118.18084802622586,50.55307277818289],[-118.18086788556201,50.553009775590574],[-118.18100552546403,50.552841534634055],[-118.18120023653262,50.55256997177022],[-118.18125336262715,50.55232627353],[-118.1812354057847,50.55224591364286],[-118.18121969533566,50.55218323017449],[-118.18119012825062,50.552057415520515],[-118.18117441793032,50.5519947320313],[-118.18120570039319,50.55199862990203],[-118.18136951011178,50.55200623938577],[-118.18165726404999,50.55198529907931],[-118.18189373773035,50.55190199411056],[-118.18200412009551,50.55182899081192],[-118.18205770432691,50.55179661510823],[-118.18208137826348,50.55178303648615],[-118.18223463937727,50.5517187080031],[-118.18258451616109,50.551575609610985],[-118.18283539788438,50.55146054347339],[-118.18291899092281,50.551418985711194],[-118.1829928410983,50.55138238998056],[-118.18310478976868,50.55134114233986],[-118.18328339027244,50.551294418839056],[-118.18341502204392,50.551252299775925],[-118.18346179052554,50.55123865083822],[-118.18347942526181,50.55122915643684],[-118.18351830159673,50.55122003973826],[-118.1836109602057,50.55118759076098],[-118.1837585723201,50.55114546880856],[-118.18394944578394,50.551089441104224],[-118.18414743142971,50.55103335438905],[-118.18433918221035,50.55098247699975],[-118.18453288104635,50.550930606830114],[-118.18473534967687,50.550879354953175],[-118.18491832890469,50.55082785792281],[-118.18504177083453,50.55078176976007],[-118.1851324747425,50.550740142633714],[-118.18518878582891,50.55071247753098],[-118.18535988726366,50.55068838933461],[-118.18566954914758,50.55065373555678],[-118.18584971553595,50.550638764682404],[-118.18592523290909,50.55063335226993],[-118.18603884796886,50.55062328693779],[-118.18615682720787,50.550567773265094],[-118.1862449307501,50.55037794637814],[-118.18628856671162,50.55011719900951],[-118.18630146753834,50.549981952551654],[-118.18630282377627,50.54996396995586],[-118.18645278013865,50.54994912751579],[-118.18676068208408,50.549914346969885],[-118.1869390926917,50.54989924169355],[-118.18699404565882,50.54988955825442],[-118.18716143591021,50.549856166731736],[-118.18745403567034,50.54981748507373],[-118.187690225367,50.54979685336829],[-118.18784076048081,50.54976848224193],[-118.18799089539432,50.54972201354322],[-118.18812465260413,50.549657432537416],[-118.1882171038533,50.549615935441786],[-118.188372817006,50.54961900516481],[-118.1886519039273,50.549647721400824],[-118.18905002370641,50.54959443797472],[-118.18960106181258,50.54941747704195],[-118.1901667641693,50.549339847287335],[-118.19064611577193,50.54941148270606],[-118.19108238856877,50.54946540022753],[-118.19137221717564,50.54953441255528],[-118.19145789590762,50.549582817166424],[-118.19147865760023,50.54959614869852],[-118.19160127870279,50.54966693425532],[-118.19179613024964,50.54978178650456],[-118.1919863997979,50.54989236535585],[-118.19221371091652,50.55002476212471],[-118.19244305622497,50.55013527353588],[-118.19261176588545,50.550196307387175],[-118.19268252219919,50.5502182415429],[-118.19271477998183,50.55022673348332],[-118.19278455927389,50.55024407920573],[-118.19290217823503,50.55025179776691],[-118.19309686534865,50.55024517831217],[-118.19323835441301,50.550248368655005],[-118.19328025732236,50.550252451062356],[-118.19332907245837,50.55024742105381],[-118.19346324869531,50.550241617244005],[-118.19367138543464,50.55023933407438],[-118.19392029720022,50.55030884579802],[-118.19417624478078,50.550409359242956],[-118.1943310342901,50.55048918685749],[-118.19441819267509,50.55055973010816],[-118.19452261263304,50.55065352640731],[-118.19464691829661,50.55075549368018],[-118.19480045327319,50.55085274965391],[-118.19502454845718,50.55096287599828],[-118.1952332382569,50.55105949705204],[-118.19535644521436,50.551116760443605],[-118.19545528284286,50.551161008382444],[-118.19553618484252,50.551196083746625],[-118.19562146967283,50.55122637881619],[-118.19579427020399,50.55127414589981],[-118.19606686199879,50.55133006225086],[-118.19635212667895,50.55139478858269],[-118.1965779551835,50.55146435802612],[-118.19678011346508,50.551547517693656],[-118.1969276940243,50.55161779432617],[-118.19704321489564,50.55168864213622],[-118.19722083132994,50.55179041013792],[-118.1974758170596,50.55188632749108],[-118.19784587632552,50.551963790924276],[-118.19817297784324,50.55206365474479],[-118.19833775148501,50.552188243514],[-118.1986836492289,50.552404675328646],[-118.19920324135255,50.552674009651746],[-118.19943018463698,50.5527882850367],[-118.19949633443059,50.55276526489334],[-118.19962765749732,50.552714627264024],[-118.19971103577237,50.55266400385363],[-118.19975045614534,50.55260067748618],[-118.19978353825306,50.552532954905374],[-118.19983853504456,50.55245152643119],[-118.19993425914184,50.55236052749172],[-118.2000004080497,50.55233750703665],[-118.20006665469617,50.55231392397593],[-118.20022773822446,50.55231678498322],[-118.20039613634418,50.552328639136526],[-118.2005724235843,50.55233596849489],[-118.20068967674568,50.55236624980696],[-118.2007511992836,50.552410694967755],[-118.20080628123445,50.55244111936409],[-118.20088055337203,50.552463295191366],[-118.20101125665283,50.55249792147144],[-118.20116768409504,50.55252756999118],[-118.20126825317612,50.55253125896833],[-118.20145024215782,50.5524751465714],[-118.20182969832697,50.55234537215866],[-118.20216937431832,50.55218906090505],[-118.2023184919252,50.55209730752449],[-118.20236582943559,50.55207013273354],[-118.20245466800881,50.55202893066977],[-118.20263800326012,50.5519548335469],[-118.20285077025609,50.551885067026994],[-118.20301843137256,50.55182963433935],[-118.20312031544505,50.55177466166165],[-118.20318848281055,50.55171957603348],[-118.20326579195624,50.5516425364993],[-118.203366292425,50.551564869114934],[-118.20348034820435,50.55150115337744],[-118.20357201476371,50.55146409952079],[-118.2036519117116,50.55145390346383],[-118.20381953165318,50.55147021728415],[-118.20406910991356,50.55149512668858],[-118.20418595825556,50.55150729814703],[-118.20416981115525,50.55142651166534],[-118.20414618453363,50.55125593117168],[-118.20415903052061,50.551120691764474],[-118.20423357038088,50.55099826255537],[-118.20432817217993,50.550862556711984],[-118.20439849917372,50.550713274834834],[-118.20444199434219,50.550524259358276],[-118.2044644831663,50.5503846094559],[-118.20446640539454,50.550353108687915],[-118.20448754196782,50.550343866707266],[-118.20454957130286,50.550293428393275],[-118.20462491902363,50.55020721125307],[-118.20467862712047,50.55011269241933],[-118.20472659582911,50.55003076763974],[-118.20476513337093,50.549972466715865],[-118.2047858660476,50.549945109512954],[-118.20483893091901,50.54978275389707],[-118.20492499797774,50.54947131919299],[-118.20499653696535,50.54926393907107],[-118.20513411030294,50.54913634486251],[-118.205376529695,50.549008208758444],[-118.20556598175135,50.548929458236614],[-118.20567594839764,50.548879002307224],[-118.20588505470853,50.548768868129066],[-118.20619660738312,50.548590230908594],[-118.20650144970627,50.54842976807497],[-118.20682860648715,50.54827370331133],[-118.20719988419854,50.548098704386454],[-118.20759240082901,50.54792406836583],[-118.2079619562528,50.54778962087941],[-118.20839151374304,50.54763679503821],[-118.20882474135797,50.5474525899025],[-118.20912589380862,50.547323497268025],[-118.20928945053551,50.54728132617137],[-118.20942799518342,50.54727073121912],[-118.20964272615039,50.547250805236345],[-118.20989254625208,50.54724351481564],[-118.21023884486667,50.54725317611297],[-118.21058999804785,50.547245100020646],[-118.2107239577801,50.547230231165784],[-118.21070052472331,50.547181129906804],[-118.21064340638733,50.5470601699195],[-118.21058305035787,50.54691695463785],[-118.21052899168626,50.54673746636937],[-118.21045696813354,50.546518290862394],[-118.21037405239697,50.54632095544551],[-118.21029485049695,50.54613291078604],[-118.21022255739854,50.545935752529864],[-118.21016183641731,50.545815108039776],[-118.21011510866133,50.54575702898161],[-118.21001077355946,50.54567286249316],[-118.20982353899508,50.545503776724786],[-118.20971821633599,50.545302595872464],[-118.20975315724769,50.545162691118406],[-118.2097891550767,50.54510872968896],[-118.20980967732258,50.545072327156994],[-118.2099199583963,50.54495861799746],[-118.21013540119026,50.54478113156677],[-118.21031181307258,50.544644395242194],[-118.21037389435661,50.544562891494934],[-118.21039770827217,50.54440525636884],[-118.21039670465193,50.54417582512167],[-118.21036746874584,50.54406812334648],[-118.21033726570215,50.54406825930542],[-118.21032176098504,50.54405531010611],[-118.21026751597911,50.54397918499778],[-118.21015835896794,50.543841006428025],[-118.2101587141515,50.54370601804916],[-118.21030364049199,50.54355632968271],[-118.21041897283875,50.54343394554397],[-118.21045547357365,50.54339752756037],[-118.21047387305602,50.543383572791655],[-118.21052908450106,50.543351860016934],[-118.21086900257566,50.543244697665],[-118.21147954781314,50.54311249736832],[-118.21192420213967,50.54310760350297],[-118.21230509186503,50.54315302768272],[-118.21275099589973,50.54313070110374],[-118.21304364995805,50.54301964969106],[-118.21315624218795,50.54289254219265],[-118.21319488243603,50.54276193568569],[-118.21322135246933,50.542640081959384],[-118.21322518401769,50.54257707952529],[-118.21319924572454,50.54246057165863],[-118.2131396424699,50.54220047469373],[-118.21310003125075,50.541958161258755],[-118.2131324727443,50.541863274262],[-118.21333227529082,50.54184737339251],[-118.213633031055,50.54185326531977],[-118.21376836312066,50.54186107837989],[-118.21377048285339,50.5418386303131],[-118.21375599025276,50.541676612099266],[-118.2137244251443,50.54139813972402],[-118.213712322501,50.54119165563509],[-118.21373589580804,50.541096714602766],[-118.21379358777678,50.541019980671635],[-118.21385431279916,50.54095645774916],[-118.2139056010688,50.54090639919841],[-118.21398549934416,50.540824446916794],[-118.21413147884502,50.540678787615064],[-118.21430498883788,50.54049721758049],[-118.21438068890672,50.540316672708464],[-118.21447904570269,50.54018970253794],[-118.21479743546016,50.540114343149085],[-118.21502920292016,50.54002668546806],[-118.21506332803983,50.539962991878724],[-118.21506838453374,50.53995430842135],[-118.21506241350129,50.53992733270618],[-118.2150452718896,50.539841958434145],[-118.215024892214,50.53973431990771],[-118.2150527454661,50.53963515101857],[-118.21517304830003,50.539535139933314],[-118.21538708155389,50.53944736520502],[-118.21560765500006,50.53937304756199],[-118.2157444843169,50.53933125043213],[-118.2158220961842,50.53930337840646],[-118.21589852548037,50.53926185595715],[-118.2159853679395,50.53921146599475],[-118.21609087496033,50.53912510243115],[-118.21619401336224,50.53901145587931],[-118.21624050933195,50.53894806188659],[-118.21623995702873,50.53888984018329],[-118.21623854184081,50.538754718808235],[-118.21623568513648,50.538638143208175],[-118.21623311206635,50.538601807096576],[-118.2162129161228,50.53857497072195],[-118.21615681808308,50.53849927840418],[-118.216100718683,50.53842359498113],[-118.21605075240169,50.538343253643454],[-118.21597404967274,50.53822261834412],[-118.21588868792622,50.53811097367363],[-118.21583485021226,50.53805295718243],[-118.21576854360609,50.53799519423597],[-118.2157535199505,50.53788737165848],[-118.2157673706158,50.53772564591519],[-118.21562554783047,50.537560888735484],[-118.21548576197135,50.53747649420277],[-118.21538271741198,50.53740541078778],[-118.21513983510526,50.53729117281099],[-118.21490559410495,50.53723968371784],[-118.2148291235826,50.537240527645345],[-118.21476863063354,50.53724135563925],[-118.21463429133073,50.53723813199997],[-118.21455030134958,50.53722092988894],[-118.21445580069997,50.5372131576407],[-118.21426689709469,50.53719705031456],[-118.21405517381554,50.53715901016365],[-118.21385911574104,50.537102293717375],[-118.21371773204926,50.53706805849898],[-118.21354604200263,50.537024353030375],[-118.21326229533287,50.53695130227845],[-118.21299266376909,50.53686851391397],[-118.21278245219216,50.53678085446672],[-118.21257837294766,50.5366885458454],[-118.21241386224827,50.536613707041695],[-118.21228180782151,50.536556407645826],[-118.2121506364524,50.53650425002001],[-118.21201956300949,50.536451529649135],[-118.21188565992608,50.53639466013006],[-118.21178508499756,50.53635030269101],[-118.21172377589117,50.53631492494591],[-118.21168195122462,50.53627977833634],[-118.21166556768854,50.53626167833518],[-118.21165464874468,50.536253001499055],[-118.21159546042381,50.53619517549785],[-118.21143906857695,50.53605311396212],[-118.21122605062338,50.53587938387506],[-118.21104698138187,50.53575550403812],[-118.21084038192278,50.53566753377194],[-118.21053527621403,50.53555398800457],[-118.21019906263288,50.53540492682807],[-118.20992678205707,50.535286348132075],[-118.20976551608396,50.535233769796776],[-118.20963714208857,50.53514508012445],[-118.20945612315897,50.53501202100653],[-118.20933243931522,50.53493721921617],[-118.20928127718713,50.534914982108226],[-118.20909915706773,50.53484962798991],[-118.2086330019097,50.534692550596176],[-118.20783924412488,50.53440847480315],[-118.20697462398434,50.53406235227698],[-118.20654130703315,50.5339002267546],[-118.20648266799854,50.533900619976116],[-118.20645196833772,50.53388321088547],[-118.20637779468603,50.53382996710529],[-118.20628400581356,50.53373636669311],[-118.20616699908679,50.53360271645673],[-118.20603196446297,50.53346045766888],[-118.20590687127776,50.5333222788486],[-118.2057584901837,50.53317512121785],[-118.2056195813423,50.533055186612415],[-118.20556889971532,50.533019983147405],[-118.20553722451402,50.53299797650442],[-118.20547474417012,50.53294895351552],[-118.20544397656649,50.53285017887139],[-118.20543983451445,50.53267984490767],[-118.20540923458829,50.53254944534949],[-118.20539080119293,50.532522730214886],[-118.20538524222982,50.53251386035051],[-118.20534739905628,50.532455832780975],[-118.20528680543518,50.532334629990594],[-118.20524299840129,50.532249625879835],[-118.20523342981632,50.5322229651552],[-118.2052136485019,50.53221423319648],[-118.2051857795466,50.532200972901805],[-118.20510012066757,50.53215256890811],[-118.20494945465829,50.53205948305015],[-118.20481553884892,50.53196192650545],[-118.20471464595276,50.53186839348824],[-118.20465186942039,50.53181087030689],[-118.20456044912136,50.53174455157763],[-118.20427563345292,50.53161659493141],[-118.20391220886751,50.5314814134522],[-118.20375982795808,50.53142888071547],[-118.20383555030962,50.53136076877157],[-118.20388778736535,50.53116219662735],[-118.20377908891018,50.53092969742548],[-118.20373238979947,50.530759186814834],[-118.20379503703475,50.53066416707684],[-118.20381400655441,50.5306366949111],[-118.20379928537993,50.53061927070915],[-118.20377276651122,50.53058802680047],[-118.20376636355596,50.53050227415559],[-118.203878616783,50.530326005067096],[-118.20410064893214,50.53016141398779],[-118.2042563322677,50.53009272087018],[-118.20429441227867,50.53008805270358],[-118.20424057344124,50.529999521302315],[-118.20414312452324,50.529824877759786],[-118.20414054010857,50.529645604270236],[-118.20416142593423,50.52946403287441],[-118.20420159746256,50.529283819087965],[-118.20426553880448,50.52910979811933],[-118.20437730977935,50.52894649288427],[-118.20453525595431,50.528793208311576],[-118.20469475889811,50.52864117207297],[-118.20480244072354,50.52848095928323],[-118.20476293835597,50.52829965640845],[-118.2047899608698,50.528123605810286],[-118.20488136816277,50.52795490758786],[-118.20499021068018,50.527787997020596],[-118.20510080403966,50.52762121865173],[-118.20520282599388,50.527452697927636],[-118.20528770141807,50.52728071945582],[-118.20536575884681,50.52710712208848],[-118.20543348890352,50.52693167689126],[-118.20548553761985,50.526754558400924],[-118.20551469872343,50.526576389274425],[-118.20553586753547,50.52639314703389],[-118.20554690647866,50.52620692291213],[-118.2055379817003,50.52602325265285],[-118.20550286499378,50.52584734728072],[-118.20542228264215,50.525688010031686],[-118.20519916067096,50.525572873658945],[-118.20496542501749,50.52545755001256],[-118.20484355465672,50.52530095503202],[-118.2047656891853,50.52512598974148],[-118.20471742443729,50.524944069032614],[-118.20469350946337,50.52476499233383],[-118.20470202155477,50.52458311842934],[-118.20475095193544,50.52440352044657],[-118.20484576182841,50.52423562197433],[-118.20496930627108,50.52407596522063],[-118.20511008889174,50.523919221232525],[-118.20525759279255,50.52376464057401],[-118.20540353644226,50.5236088200357],[-118.20553925233095,50.52345058001944],[-118.20568080620069,50.523289370185346],[-118.20578593464839,50.5231233273363],[-118.20580019522724,50.52294919774864],[-118.2057656612673,50.52276994304159],[-118.20570639327215,50.52259006800672],[-118.20564294070347,50.522413857445876],[-118.20555757989177,50.522241193582204],[-118.20546491787954,50.522069705914014],[-118.20539377756502,50.52189690390116],[-118.205383885281,50.52171881392387],[-118.2054416707742,50.521539278372536],[-118.20553988031364,50.52137218812023],[-118.20565367189471,50.521207324612995],[-118.20577944335663,50.521044994667974],[-118.20591349338282,50.52088607663653],[-118.20605728496132,50.52073236380331],[-118.20622123795093,50.5205851590813],[-118.20638684668474,50.520438631143755],[-118.2065390122856,50.520287767064765],[-118.20667286362463,50.520129964227124],[-118.20679853075873,50.519968195508554],[-118.20691406709261,50.51980345381102],[-118.20701927896737,50.51963685542269],[-118.20709546595845,50.5194636944307],[-118.20715626392446,50.519287190432166],[-118.20725962473061,50.51912102199773],[-118.20740038391438,50.51896427415815],[-118.20756422999801,50.51881762080161],[-118.20774931237045,50.51868150105834],[-118.2079741468737,50.518571906609424],[-118.2081871953839,50.5184586530397],[-118.20831967009623,50.51829849197931],[-118.2084250669703,50.51813077569058],[-118.20852530063885,50.51796213553161],[-118.20868709682142,50.517817026913676],[-118.20887402058995,50.517680474817894],[-118.2090211037955,50.517528120513965],[-118.2091485080621,50.517366471971975],[-118.20926393307538,50.51720228097468],[-118.20942016475415,50.517048310246004],[-118.20960221207402,50.516909154236934],[-118.20984537502844,50.51683700305455],[-118.21013737498484,50.51682082325767],[-118.21042199458223,50.51682673033398],[-118.21070339990534,50.51683071116907],[-118.21094615329042,50.51674045062707],[-118.21111134527885,50.51659614750001],[-118.2112555902985,50.51643963199555],[-118.21144132867057,50.516299603227594],[-118.21167411127644,50.5161747431158],[-118.21176315545279,50.51602960177535],[-118.21170387239026,50.515849728452736],[-118.21156319739323,50.515678826651595],[-118.21137855337246,50.51554662821665],[-118.21117103732168,50.515423558718005],[-118.21094610114174,50.515308871716684],[-118.21070871490244,50.515204598088935],[-118.21046365027698,50.515113911809706],[-118.21021169157179,50.51504251751422],[-118.20994067842828,50.5149991500523],[-118.2096582870045,50.51497023933455],[-118.20937404561643,50.514941767154376],[-118.2090968073624,50.51490360894374],[-118.20881897740774,50.51485863800941],[-118.20858297331267,50.51476688543906],[-118.20837857702944,50.51463612008984],[-118.20823297053727,50.514483504414606],[-118.20813408774059,50.514317228594734],[-118.2080542820882,50.51414325615739],[-118.20798002485299,50.513967983785946],[-118.20788912329891,50.51379661976518],[-118.20778508291629,50.51362941079407],[-118.20767004233748,50.51346425660325],[-118.20753972154205,50.51330537548631],[-118.20738321891133,50.51315425074834],[-118.20719139322338,50.51302266771593],[-118.20696522074185,50.51291522359747],[-118.2067203698147,50.51282341254314],[-118.20646560342243,50.512747851383786],[-118.20619226330867,50.51269753920965],[-118.20593244332552,50.512630660160646],[-118.20566882016996,50.512555033834076],[-118.20541356308546,50.51247209557312],[-118.2051846761898,50.51237010568028],[-118.20500152559852,50.51223969838913],[-118.20485661723991,50.512083166449216],[-118.20472766674534,50.511916467909835],[-118.2045887932123,50.511755840749466],[-118.20441771250667,50.51161724279316],[-118.20420488669937,50.51150452183474],[-118.20397970636668,50.51140165992568],[-118.203742848944,50.51130475453542],[-118.20349966975644,50.51121361330477],[-118.20325074861029,50.511124896333754],[-118.20299978440568,50.51103773421083],[-118.20275067139856,50.51095013236395],[-118.20250185086661,50.510860851090555],[-118.20225906268476,50.51076748350061],[-118.20202230998285,50.51067001177213],[-118.2017857505916,50.510571432196116],[-118.20155114015094,50.51047185038065],[-118.20131847556208,50.51037128419804],[-118.20108425490248,50.51026946885006],[-118.20085373262603,50.51016679262246],[-118.2006234068147,50.510062990713436],[-118.20039327438244,50.50995808098379],[-118.20016295069722,50.50985427809388],[-118.19999992324477,50.50978177447747],[-118.19993077786697,50.50975091381509],[-118.19969860610117,50.509647549038206],[-118.19946847794087,50.50954263734019],[-118.19923854629853,50.50943659996329],[-118.19901435712764,50.50932814643883],[-118.1987924054908,50.50921702977817],[-118.19857629561513,50.50910292549901],[-118.19836816468352,50.508983742496326],[-118.19817219865037,50.50885580755789],[-118.19799209633888,50.50871825153426],[-118.19782016689344,50.50857450068743],[-118.19765222901175,50.508428201499605],[-118.19748224966776,50.50828344842061],[-118.19730614065739,50.50814335207396],[-118.19712633397071,50.50800412460585],[-118.19694866869449,50.507862787849696],[-118.19677090678138,50.50772201337844],[-118.19659314752977,50.507581229668496],[-118.196409548793,50.50744343270263],[-118.1962236184611,50.507308851697374],[-118.19602980610156,50.50717880375703],[-118.1958295739187,50.50705508231987],[-118.19561104984392,50.50694475977551],[-118.19537423381668,50.50684783602141],[-118.19512544897428,50.506758546714885],[-118.194876180913,50.506672043014106],[-118.19463109828077,50.50658187454325],[-118.19438192837009,50.506494816052665],[-118.19412867425727,50.50641084965578],[-118.19388777749568,50.50631702426264],[-118.19367529483203,50.50620260356329],[-118.19348120276405,50.5060742298472],[-118.19329723316844,50.5059386510618],[-118.19311764168168,50.505798300477835],[-118.19294194400723,50.50565596428158],[-118.19276235475203,50.505515613074756],[-118.19258043218514,50.50537848670195],[-118.19240065111295,50.505239251115654],[-118.19221882701011,50.50510157044297],[-118.19202707982778,50.504969959941185],[-118.19182316982031,50.50484709996525],[-118.19160748509763,50.50473075794864],[-118.19138985670405,50.50461539918981],[-118.19118011102873,50.504495515849925],[-118.19098671346153,50.50436322616212],[-118.1907953596268,50.50422938984249],[-118.19058104613316,50.50411539295626],[-118.19033511178826,50.50403024232314],[-118.19007039892206,50.50396128463707],[-118.18980462006091,50.503898461224125],[-118.1895177293214,50.50385504674024],[-118.18924465614275,50.50380357609],[-118.18902714477025,50.50370799872414],[-118.18887219929246,50.503558639720495],[-118.18876065520432,50.5033841039389],[-118.18868620025357,50.5032104862772],[-118.18866586485964,50.50303164870432],[-118.18865857148147,50.50284921179567],[-118.18862217628853,50.502670930995414],[-118.18857497635163,50.5024935869441],[-118.18852232614627,50.5023169880613],[-118.18846792419053,50.50214026544022],[-118.18841527481683,50.50196366642998],[-118.18836632428506,50.501786198459875],[-118.1883303178167,50.50160569375993],[-118.18829440947931,50.50142462641796],[-118.1882490621059,50.50124684304393],[-118.18817957703722,50.501075274464256],[-118.188065907831,50.50091300728536],[-118.18790250503275,50.50076135809598],[-118.18770942353075,50.50062739218578],[-118.1874905621674,50.50051928530478],[-118.18723297578249,50.500440082788316],[-118.18697043069578,50.5003689996778],[-118.18671206941605,50.50029426093879],[-118.18645147070131,50.500222192972835],[-118.18618727681613,50.500160600575846],[-118.18591657040092,50.50011605749904],[-118.18563692143269,50.50010253019068],[-118.18535173444518,50.500110640812096],[-118.18507054201395,50.50012637302793],[-118.18478857097837,50.50014657844702],[-118.18450903640384,50.50017316551247],[-118.18423184028524,50.50020669682981],[-118.18396000184381,50.50025020605533],[-118.18369283873878,50.500307613476295],[-118.18342966935697,50.500372642633934],[-118.18316328721191,50.50043574481562],[-118.18289621990175,50.5004925877216],[-118.18262749619086,50.50054875255837],[-118.18235614265637,50.50059964164661],[-118.18208166935848,50.50063788009129],[-118.18179278336109,50.50065702020567],[-118.18152402810396,50.50062164393925],[-118.18128046153795,50.50052307802125],[-118.1810909048755,50.50038934814914],[-118.18100188493122,50.50021808308506],[-118.1809113079115,50.50004557787936],[-118.18085542322575,50.49999982039196],[-118.18073927321507,50.499902906390304],[-118.18053531573858,50.49977041756825],[-118.18030508979254,50.4996665722299],[-118.18005316876007,50.49959566187796],[-118.17978655429691,50.499537841708005],[-118.17951099051905,50.49949067907736],[-118.1792301725639,50.499453323186145],[-118.1789496502196,50.4994244577223],[-118.17866942332711,50.49940408268896],[-118.178388420367,50.49939835078261],[-118.17810411199918,50.499401415282],[-118.17781756483056,50.4994071502631],[-118.17753500684003,50.49941034607954],[-118.17725410196117,50.499404048722276],[-118.1769775744134,50.49938280089206],[-118.17670649138879,50.49934047673221],[-118.17643881194178,50.49927861336866],[-118.1761790147597,50.49920204735965],[-118.17592787836918,50.49911649272076],[-118.17568647513622,50.49902597573161],[-118.17544818595177,50.49892776846739],[-118.17521797446476,50.49882392141109],[-118.17499233827606,50.49871417790481],[-118.17477293142304,50.49859922444592],[-118.17456306343922,50.498480425089575],[-118.17438288010864,50.49834394529039],[-118.17422109013017,50.49819351563407],[-118.17404918011852,50.49805027981215],[-118.17384525235686,50.497927948386895],[-118.17362536683022,50.49781577866178],[-118.17339750062027,50.49770870291108],[-118.17317158348276,50.49760062543666],[-118.17295199219194,50.49748678445418],[-118.17274670701909,50.497362094548606],[-118.17258599796462,50.49721568859097],[-118.17246577435685,50.49705068545315],[-118.17245000432746,50.497029230119644],[-118.17234749960659,50.496884680923074],[-118.17219769246317,50.49673679436924],[-118.17194433742164,50.496633552654075],[-118.17169273508179,50.496540613213966],[-118.17166810723648,50.49649875171077],[-118.17149992165866,50.496456343271426],[-118.17134368242314,50.49619274103774],[-118.17075539335993,50.49568104100341],[-118.16992186790225,50.4952536823216],[-118.16942861890921,50.49510238703505],[-118.16896622590185,50.4949572235666],[-118.16832086416142,50.49475278667409],[-118.16581821069153,50.49408349880511],[-118.16525180890483,50.4936806621671],[-118.16466818902508,50.49332576224047],[-118.16384595683948,50.49290535985029],[-118.16324443730383,50.492754844781075],[-118.16232604571354,50.49270278219888],[-118.16136793587263,50.49276655844527],[-118.16082488807942,50.4928399553949],[-118.16013090566962,50.492853494827855],[-118.15960801642339,50.49281136222541],[-118.1591456817672,50.49264581738854],[-118.15855430724152,50.49246774399538],[-118.1579965995287,50.492350805344685],[-118.15743773609807,50.492179549764444],[-118.15676102347791,50.49202309772779],[-118.15620331673973,50.49194683022365],[-118.15556441696761,50.492000415189885],[-118.15525698704869,50.49202437923055],[-118.15455346254022,50.49209258684462],[-118.15405304248776,50.4921452431048],[-118.15367278279984,50.492291731353156],[-118.15321902267938,50.49251380727246],[-118.15305188377681,50.4926584669162],[-118.15281068872086,50.49279052427331],[-118.15255424940145,50.4928067974813],[-118.1517491890251,50.492623700113214],[-118.15135082253818,50.4924575775511],[-118.15083690808012,50.492394559732816],[-118.15013108192574,50.49233375301925],[-118.1491813674004,50.492308738633774],[-118.14865905196687,50.49233439622545],[-118.14809525791443,50.492414730628035],[-118.14748875503123,50.49245530937489],[-118.14677289774903,50.49242145059062],[-118.14619447035905,50.49235214109566],[-118.14565695578462,50.49220097972102],[-118.14516437358978,50.492117417941316],[-118.14461796942385,50.49204755267238],[-118.14435987653314,50.492063128983666],[-118.14436152080368,50.4890923524258],[-118.14435990237162,50.48902047487139],[-118.14435847258619,50.48895766013934],[-118.14437134854954,50.48889416163159],[-118.14437011051812,50.48884039186099],[-118.14435447337958,50.488777698325485],[-118.1443534255723,50.48873298244876],[-118.1443649303662,50.48868746735609],[-118.14439210538525,50.48863346407645],[-118.1445031939795,50.4885153471931],[-118.1445717177989,50.488478401042855],[-118.1446561018955,50.48844202053045],[-118.14473883270458,50.488404953024734],[-118.14483723500831,50.488359388277296],[-118.14491977520419,50.48831326672752],[-118.14500425706527,50.48827632338211],[-118.14511530327795,50.48823957556102],[-118.14522819916334,50.48820238942476],[-118.14535374090956,50.48817401138486],[-118.14543879340303,50.48816422942222],[-118.1455358238458,50.48813664749997],[-118.14563489291014,50.48811769011877],[-118.14573221039133,50.48809860829773],[-118.14583127928961,50.48807965074054],[-118.14591595047833,50.48805176059807],[-118.14598399304518,50.4879972683033],[-118.1460540758214,50.48795139165453],[-118.14615120220827,50.48792325555462],[-118.14626466819084,50.487913230074376],[-118.14636188818922,50.487894701329964],[-118.1464317798076,50.487839770528815],[-118.14644474481526,50.48778588816496],[-118.14652766358455,50.487757873206164],[-118.1465986986719,50.487757265746],[-118.14666992441897,50.48776571214911],[-118.14672605270391,50.48780980875446],[-118.14675427609191,50.48780051181719],[-118.14683894618614,50.487772620961586],[-118.14692157564518,50.487736114362924],[-118.14697745006713,50.48769035865377],[-118.14703284614113,50.48762704872904],[-118.14706020806706,50.48758209863618],[-118.14709993298247,50.48752728617039],[-118.1471411217609,50.4874640977387],[-118.14718249962624,50.487409972128084],[-118.14720995959595,50.48736445942259],[-118.14723732274683,50.48731950034188],[-118.14734789072095,50.487255025942304],[-118.14744453485068,50.487209343424496],[-118.14754321940762,50.487172276492196],[-118.14765407153872,50.48712646323939],[-118.14766808749518,50.487117287692755],[-118.14773835806508,50.487080463846176],[-118.14779413253011,50.48703527025373],[-118.14789087405246,50.48698902477061],[-118.14800376452067,50.486951835756244],[-118.14810059984248,50.48691519763678],[-118.1481989012874,50.486860022276275],[-118.14828114601242,50.486805406792165],[-118.14835074586323,50.48674197442826],[-118.14839027746861,50.48667810752655],[-118.14844566875666,50.486614805747784],[-118.14851507705525,50.48654231934694],[-118.14856852551941,50.48646983926902],[-118.14859655664667,50.48645148792833],[-118.1486521399811,50.486397231019986],[-118.14873409947725,50.48632394476115],[-118.1488033142212,50.486242413161825],[-118.14885870595512,50.4861791022135],[-118.14892655103569,50.48611555406741],[-118.1490112166248,50.48608766149807],[-118.14910833715514,50.486059522748036],[-118.14917812584983,50.48600514373149],[-118.14927623281707,50.48594091343112],[-118.14938726980176,50.485904161233755],[-118.14947212592536,50.48588532223083],[-118.14956905449728,50.485848129145744],[-118.14966744634594,50.485802559976065],[-118.14969276889099,50.48573881442522],[-118.14971955322684,50.48566670179263],[-118.14971811764575,50.485603877940406],[-118.14974528439977,50.48554987314607],[-118.14981555083297,50.48551304791423],[-118.14994089090168,50.48547561066735],[-118.15006632537118,50.48544778084402],[-118.15019360781716,50.48541952152112],[-118.15031913869628,50.48539113777221],[-118.15038978720982,50.4853724200282],[-118.1504588756703,50.48536263189076],[-118.15052971550726,50.485352967986096],[-118.15060055531389,50.485343304036164],[-118.1506978647103,50.48532421779963],[-118.15081084190611,50.48529664235369],[-118.15092197432877,50.48525932602454],[-118.15104906417736,50.48522201178526],[-118.15116009950845,50.48518524885347],[-118.15128543755081,50.4851478100743],[-118.15139812901451,50.48510156359553],[-118.15152355998539,50.48507374104342],[-118.15165084046339,50.48504548003764],[-118.15176235491654,50.485026270717626],[-118.15185966313766,50.48500718345576],[-118.15194470825033,50.4849973964737],[-118.1520433842717,50.48496032544243],[-118.15214040378602,50.48493273764237],[-118.15225347737615,50.48490459814593],[-118.1523358118835,50.48484941695806],[-118.15241941571969,50.4847768146579],[-118.1524730491929,50.484713377546655],[-118.15254292844249,50.484658442685195],[-118.15263936990362,50.48460370156783],[-118.15273737220595,50.48454002174043],[-118.15284830928374,50.48449364951459],[-118.15296089926505,50.48444796398386],[-118.15308642570001,50.484419577073574],[-118.15319949741405,50.48439143659638],[-118.15331120157134,50.48438127964093],[-118.15341083512216,50.4843894770421],[-118.15350852531179,50.484388496190455],[-118.15362246309263,50.48439600844851],[-118.15383380080377,50.484394048089555],[-118.15391728505597,50.48439318929984],[-118.15401653449973,50.48438327829022],[-118.15411403252153,50.484373242972175],[-118.15418467786677,50.484354522790916],[-118.1542271034785,50.484345101447204],[-118.15426933690034,50.484326626153255],[-118.15430856760224,50.48425426559283],[-118.15432133154977,50.48419131920673],[-118.15432027241185,50.48414661210129],[-118.1543193115048,50.48410134242106],[-118.15430385592106,50.4840476949275],[-118.1542883988149,50.48399405635802],[-118.15430145156334,50.483939610249465],[-118.15438543649677,50.48388510533607],[-118.15443935501737,50.483830167501985],[-118.15448072079467,50.48377603893056],[-118.15449348436674,50.48371309248752],[-118.15449204064139,50.483650277475476],[-118.15444798143,50.48358782104023],[-118.15441841686997,50.483533742385696],[-118.1543885619618,50.483471172349375],[-118.15437291432254,50.4834084708799],[-118.1543716629633,50.483354709787214],[-118.15437031764542,50.48329133217287],[-118.15436849128945,50.48321040030461],[-118.15435245784172,50.4831295998479],[-118.154364837038,50.483048545473615],[-118.15437759900679,50.482985607917094],[-118.15434755389522,50.48291397494826],[-118.15430349404367,50.48285152732869],[-118.15430205216954,50.4827887033177],[-118.15437055926732,50.482751750862235],[-118.15446913016042,50.4827152401467],[-118.15453763700984,50.48267828758492],[-118.15459301632178,50.482614973498826],[-118.15463447902215,50.48256028221537],[-118.15467584340114,50.48250615348645],[-118.15468860634178,50.48244320692229],[-118.15471391990752,50.48237945996278],[-118.15474088648226,50.48231639977634],[-118.15476804680408,50.48226238460487],[-118.15482342372323,50.482199079301274],[-118.15486246096388,50.48211765546795],[-118.15486111499351,50.48205427776284],[-118.15486063221367,50.48203673242036],[-118.15484459986072,50.481955922987815],[-118.15484344619723,50.48190159922982],[-118.15484238659572,50.481856892003066],[-118.1548414252136,50.48181162219942],[-118.1548403671752,50.48176690603791],[-118.1548525512842,50.48167680644025],[-118.1549077366364,50.48160443815587],[-118.1549609766832,50.48152290059679],[-118.15501596936355,50.48144147828003],[-118.15507115260688,50.48136911882322],[-118.15512458597047,50.481296626198635],[-118.15516537158665,50.48121533530194],[-118.15516402521769,50.481151957529846],[-118.15514856963989,50.481098309958696],[-118.15509049789762,50.4810450390706],[-118.15503223554036,50.48098270524895],[-118.15500238146892,50.480920135180696],[-118.1550010353377,50.48085675738352],[-118.15499920794899,50.48077582528257],[-118.15499757131072,50.48070395607628],[-118.15500994868266,50.48062290138743],[-118.15502251675838,50.48055090959364],[-118.15502049703707,50.480460923486774],[-118.15504707741385,50.480379755123536],[-118.15505847263847,50.48033479210077],[-118.15508543750975,50.48027173167156],[-118.15512670513341,50.480207986067704],[-118.15516787598975,50.480144794089476],[-118.15518005900677,50.4800546942755],[-118.15517648011894,50.47997363789384],[-118.15517445855757,50.479883660655354],[-118.15517301556564,50.47982083642548],[-118.15517195568644,50.47977612908703],[-118.15517032036816,50.47970425086491],[-118.1551686834962,50.47963238156607],[-118.1551670481883,50.47956050333111],[-118.15516570186638,50.479497125429546],[-118.15514986063849,50.47942537870468],[-118.15513402101983,50.479353623041405],[-118.1551043602033,50.47930010686335],[-118.15504590777361,50.479228718925306],[-118.15503045143612,50.479175080139996],[-118.15500040782533,50.47910344701085],[-118.15497065325098,50.479040314212405],[-118.15494060826596,50.478968689984896],[-118.15489811189792,50.47889730358131],[-118.15486806712329,50.47882567932148],[-118.15485222816322,50.47875392356498],[-118.15485059183237,50.478682054177106],[-118.15484720590894,50.4786100516443],[-118.15484576185447,50.47854723624122],[-118.15481766236351,50.478484781214135],[-118.15477370439686,50.478421770862994],[-118.154715828778,50.478377553602435],[-118.15464394302478,50.47834250390751],[-118.15455989336591,50.47831620124863],[-118.15445959824753,50.47828140539037],[-118.15435940149935,50.47824604686353],[-118.15428926737215,50.478211121149954],[-118.15421728673806,50.47816646352242],[-118.15414501590772,50.47811331441864],[-118.15411535863839,50.4780597889647],[-118.15411410773433,50.47800602751411],[-118.15414136287062,50.47795145856181],[-118.15423973288348,50.477905884897886],[-118.15430842477184,50.47787798626409],[-118.15437867553463,50.477841157797094],[-118.154446884665,50.47779571363893],[-118.15447385043262,50.477732644230784],[-118.1544867089587,50.47766914367166],[-118.15447106163604,50.47760645069667],[-118.15446981187968,50.47755268029031],[-118.15446856056738,50.477498918810134],[-118.15446721528797,50.47743554073875],[-118.154466157723,50.47739082433208],[-118.15437968412598,50.47733779783351],[-118.15433563123344,50.47727534086699],[-118.15430607094376,50.47722126176114],[-118.15427835575333,50.47717692345289],[-118.1542629025899,50.47712327549497],[-118.15424754611867,50.47706907388412],[-118.15423228360343,50.47702448886025],[-118.15421663841674,50.47696178686968],[-118.1541730670153,50.47691688419597],[-118.15412901326067,50.476854436044725],[-118.15412795604442,50.47680971960284],[-118.15412680337519,50.47675539549207],[-118.15412555249365,50.47670163395512],[-118.1541099075672,50.476638931924484],[-118.15409426112525,50.47657623881664],[-118.15407909714345,50.4765310911672],[-118.15407871294204,50.476512983124316],[-118.1540488647087,50.476450403524616],[-118.15403341050794,50.476396764416435],[-118.15398955109526,50.47634336126359],[-118.15395999183082,50.47628928200337],[-118.15385931756889,50.476236377466385],[-118.15374696093794,50.47621992664691],[-118.15363314199995,50.47621185186341],[-118.15353527752362,50.4762037788088],[-118.15343547005293,50.47618652741014],[-118.15333731549262,50.47616996273136],[-118.15326572292811,50.476143412428634],[-118.15317944660954,50.47609943001163],[-118.15309521008062,50.47606407214333],[-118.15298071778926,50.47602939718103],[-118.15285396683824,50.47600401373844],[-118.15274014860462,50.47599593803756],[-118.1526424765665,50.47599691822367],[-118.15254266989467,50.47597966601821],[-118.15244451611201,50.47596310054614],[-118.15231630302404,50.475946092624866],[-118.15220385263443,50.47592003256074],[-118.15208936295278,50.47588534774344],[-118.15200531935939,50.475859043071445],[-118.15193362983132,50.47583305447576],[-118.15184783538646,50.475806625427694],[-118.15176312049857,50.475753712114816],[-118.15169104804083,50.47570961529032],[-118.15163308555844,50.4756557796641],[-118.15158922970647,50.47560237551443],[-118.15154537239889,50.47554898027362],[-118.15150326778112,50.4754957003443],[-118.15143129423534,50.475451040761286],[-118.15134501946892,50.475407065811254],[-118.15126068898127,50.47537226016723],[-118.151160692709,50.47534595266699],[-118.15107422691449,50.47529292346075],[-118.15100371696272,50.47523988746318],[-118.1509315528557,50.47518617350057],[-118.15087368515117,50.47514195406117],[-118.15080142466205,50.47508879365327],[-118.15075737735775,50.47502634402359],[-118.15072938241138,50.47496333404481],[-118.15069953984758,50.47490075342505],[-118.15068389874607,50.47483805970212],[-118.15065443914062,50.47479358715403],[-118.15063908779615,50.47473938488824],[-118.15063784112543,50.47468562317814],[-118.15063640461526,50.474622798486095],[-118.15063515795094,50.47456903676811],[-118.15063496654952,50.47455998271886],[-118.15063225855732,50.47451458819494],[-118.15061875302175,50.47447011787997],[-118.15058890937794,50.4744075461221],[-118.15055935545664,50.47435346582745],[-118.15051550214089,50.4743000611678],[-118.15047164736932,50.474246665417],[-118.15041387957606,50.474201883110815],[-118.15032955205865,50.47416707670785],[-118.15021535627875,50.474140890292034],[-118.15011526508484,50.474115144386175],[-118.1500028205286,50.47408908203418],[-118.14988833718365,50.474054394869334],[-118.14978980610356,50.47401971889834],[-118.14970344272523,50.47396612596252],[-118.14961873380658,50.47391321089348],[-118.14951806993463,50.473860302265685],[-118.1494174078585,50.47380738461344],[-118.14933298741857,50.47376296973101],[-118.14926072939257,50.47370981715974],[-118.14921687823902,50.473656411944695],[-118.14915882307494,50.47360313746569],[-118.1490881269275,50.47354104607786],[-118.14901577674499,50.47347827669346],[-118.14895772204744,50.47342500209756],[-118.14888527551908,50.47336278626444],[-118.1488003761043,50.47330082539503],[-118.14871391856157,50.473247785287256],[-118.14861354650088,50.47320336728893],[-118.14852902970482,50.47315951433702],[-118.14844314561824,50.47313363621642],[-118.14824673228411,50.47316207320029],[-118.14814925717855,50.473172103507025],[-118.14804974350228,50.47317350898671],[-118.14799274294697,50.47316494164008],[-118.14794975397375,50.473147198523634],[-118.14783731307983,50.47312113394784],[-118.1477228322947,50.473086453438675],[-118.14763831814325,50.47304259087284],[-118.14758007485037,50.47298026145591],[-118.1475647278151,50.4729260586436],[-118.14757768874574,50.47287216622569],[-118.14757625499314,50.472809350282986],[-118.14754622745203,50.4727377145743],[-118.14753040071011,50.47266596616387],[-118.14750104235875,50.472620939015314],[-118.14748559881187,50.47256728981267],[-118.14747034449937,50.47252270361168],[-118.1474549977515,50.4724685007536],[-118.14745375649667,50.47241472992714],[-118.14745251368467,50.472360968026784],[-118.14745117841126,50.472297589468255],[-118.14744974641313,50.472234764549576],[-118.14743411075005,50.47217207016235],[-118.14736204980217,50.47212796140344],[-118.14729008572526,50.47208329895066],[-118.14723184415132,50.47202096927709],[-118.14716134382694,50.47196793062549],[-118.14707575020086,50.47195055184902],[-118.14698967702911,50.471915627410326],[-118.14690526251708,50.47187121057839],[-118.14683320256646,50.47182710145989],[-118.1467753431846,50.471782879701315],[-118.14674531759768,50.471711243685164],[-118.14674369443208,50.47163937355293],[-118.14672834885728,50.4715851705352],[-118.14671290658333,50.47153152115641],[-118.14668326089344,50.4714780022123],[-118.14664078464004,50.47140661198869],[-118.1465967466867,50.47134416042458],[-118.14656719955514,50.471290078862715],[-118.14655175757373,50.47123642944189],[-118.14653593293924,50.471164680756495],[-118.1465204910379,50.47111103132298],[-118.1465051459108,50.471056828239035],[-118.14650495535277,50.47104777414333],[-118.14647511967547,50.470985201015296],[-118.14647368907768,50.47092237598206],[-118.1464722569236,50.47085955987369],[-118.14648502801236,50.47079661334696],[-118.14652473885188,50.4707417999508],[-118.14658011319766,50.47067849785647],[-118.14659288408478,50.47061555130329],[-118.14660565337601,50.4705526136735],[-118.14660450992092,50.47049828906481],[-118.14657486659847,50.47044476109368],[-118.14648841558213,50.47039172799562],[-118.14641683621282,50.470365173088084],[-118.14631850793194,50.47033953905306],[-118.14624673824228,50.47030392992983],[-118.14617448938894,50.47025077512294],[-118.14614484673908,50.47019724702065],[-118.14613220557483,50.470188438702486],[-118.14607501868544,50.470170816233676],[-118.14598914013284,50.470144945049206],[-118.14590492035089,50.470109581466716],[-118.14581933073289,50.47009220168189],[-118.14571944298228,50.47007549686312],[-118.14562140285129,50.470058362665064],[-118.14554972621335,50.47003236976206],[-118.14546375618909,50.46999688148326],[-118.14542204460257,50.469961707102264],[-118.14537905969105,50.4699439629205],[-118.14536361802207,50.46989032217487],[-118.14536266640239,50.46984505162019],[-118.14533321529946,50.469800577386025],[-118.14528965964979,50.469755670829805],[-118.14520359204597,50.46972074491186],[-118.14510488531535,50.469677001555205],[-118.14501834555635,50.469614350573806],[-118.14496030054748,50.46956107363359],[-118.14491664874632,50.46951672056215],[-118.1448745560208,50.46946344665221],[-118.14483100115284,50.469418539897326],[-118.14480155085211,50.469374065498684],[-118.14478639858581,50.46932891617876],[-118.14475675662709,50.46927539657451],[-118.14472730649292,50.469230922148405],[-118.14462665879827,50.46917800878027],[-118.14452824072475,50.469142765357574],[-118.14445618745339,50.46909865454769],[-118.14438423108209,50.46905399004439],[-118.1443135470682,50.46899190419747],[-118.14425531515467,50.46892956379473],[-118.14419727192718,50.46887628641044],[-118.14413942047142,50.4688320541873],[-118.14409567687908,50.46877809298378],[-118.14405320569877,50.468706710461646],[-118.14403757753658,50.46864400639301],[-118.14402194785715,50.46858131124691],[-118.1440189600635,50.468527415742464],[-118.14403183067614,50.46846391567199],[-118.14401601101953,50.46839216638143],[-118.14398656219156,50.46834769171023],[-118.14395692182568,50.46829417182756],[-118.14395578161582,50.46823984703986],[-118.14395473468034,50.46819513002527],[-118.14395349615235,50.46814136780517],[-118.14395254598392,50.46809609714048],[-118.14395149905499,50.4680513801178],[-118.14395130902193,50.468042325984136],[-118.14393567967066,50.46797963077918],[-118.14393472952351,50.46793436010535],[-118.14390490102816,50.467871777115924],[-118.14387507105488,50.46780920304345],[-118.14384524272496,50.46774662002835],[-118.14381551124106,50.4676834833557],[-118.14377323152931,50.46762115476862],[-118.14368660079586,50.4675590562347],[-118.14361416938812,50.467496845441175],[-118.14359892217433,50.46745224949899],[-118.14361198303351,50.46739780353439],[-118.14361055497392,50.4673349871152],[-118.14362332905635,50.46727204064314],[-118.14365068203826,50.467227090260025],[-118.14366374276986,50.46717264427413],[-118.14367476605246,50.4671095733966],[-118.1436735278877,50.467055811101254],[-118.14364379709905,50.46699267432859],[-118.1436161002242,50.46694832386926],[-118.14360066167518,50.46689468267971],[-118.14368297390799,50.46683950667829],[-118.14376712983572,50.46679406279082],[-118.14384944168155,50.46673888665916],[-118.14387660410281,50.46668488204146],[-118.14388956764488,50.46663098963804],[-118.1438739388681,50.46656829431495],[-118.143829721022,50.46649677819868],[-118.14375757943104,50.46644305899357],[-118.14370110066452,50.46638085141887],[-118.14364287296542,50.46631851049348],[-118.14358464386646,50.466256178462544],[-118.14351240618787,50.46620301272765],[-118.14345379756764,50.466122572307256],[-118.14342378101757,50.46605093489139],[-118.14342197342611,50.465970010049425],[-118.14342054723684,50.465907184586996],[-118.14341921781575,50.46584380547407],[-118.1433891999452,50.46577217695386],[-118.14333272408655,50.46570996021034],[-118.14326067590254,50.465665857367036],[-118.14318929579656,50.465648354385436],[-118.14309145609235,50.46564027202177],[-118.14302045576467,50.465640877255645],[-118.1429349687802,50.46563310295927],[-118.14282273929682,50.46561608722638],[-118.14272248144738,50.46558128022234],[-118.14265034263734,50.465527560236936],[-118.14257985783857,50.465474518250474],[-118.14256423128136,50.46541182265335],[-118.14256299604676,50.4653580513028],[-118.1425881274075,50.46528525159456],[-118.14260090077482,50.46522231401027],[-118.1425992860023,50.46515043431068],[-118.14256945963736,50.46508785967663],[-118.14252562477692,50.46503445124986],[-118.14250961898553,50.46495364726933],[-118.14250781463781,50.464872713372856],[-118.14250705571789,50.464836496684875],[-118.1425063881947,50.46480989674312],[-118.14254784918403,50.464755208768764],[-118.14261742309188,50.46469177826916],[-118.14265684516636,50.4646284742435],[-118.142655230326,50.46455659449189],[-118.14265428153506,50.46451132361517],[-118.14265285489957,50.46444850695924],[-118.14265142982885,50.46438568136863],[-118.14264962368873,50.464304756347204],[-118.14264943393259,50.464295702169295],[-118.14264819862706,50.464241930745395],[-118.14266106994609,50.46417843049695],[-118.14265964331165,50.464115613815196],[-118.1426296293565,50.464043976006586],[-118.14257159433,50.463990697450356],[-118.14248535166045,50.46394670606439],[-118.1424151560038,50.46390216440618],[-118.1423711312181,50.46383971058631],[-118.14238371633911,50.463767709800194],[-118.14242313793432,50.463704405785094],[-118.14246412180545,50.46363216304178],[-118.14250491426053,50.463550875020125],[-118.14253179524458,50.46347819956753],[-118.14251598128033,50.46340644069075],[-118.14245775749393,50.46334410784393],[-118.14239934572744,50.463272711842244],[-118.14238372018313,50.46321001604874],[-118.14242489337471,50.46314682746722],[-118.14246635293524,50.463092139410556],[-118.1425057738246,50.46302883531306],[-118.14250415928201,50.462956955416956],[-118.14251674238393,50.46288496346678],[-118.14251550727506,50.46283119194747],[-118.14251493810613,50.46280402936303],[-118.14251436893788,50.462776866777645],[-118.14254153057232,50.46272286222167],[-118.14256831423651,50.46265074033266],[-118.1425940132948,50.462605102970755],[-118.14263537382541,50.46255097739128],[-118.14267654606361,50.46248778866485],[-118.14270313805292,50.462406621453],[-118.14272973150733,50.46232544529681],[-118.14275457281688,50.46224415365395],[-118.1427669671107,50.46216309848037],[-118.14279355874616,50.46208193121424],[-118.14283435076787,50.4620006339857],[-118.1428735803968,50.46192827546782],[-118.14287244165145,50.46187395024089],[-118.14278814297882,50.461839137580256],[-118.14267436226201,50.46183105142131],[-118.14251925769263,50.46180590666057],[-118.14240528741108,50.4617887660192],[-118.14227820305176,50.4617452616449],[-118.14216366407118,50.461700958131374],[-118.14206497626157,50.46165722056791],[-118.14197873854377,50.46161322866131],[-118.14186585231703,50.46156961182466],[-118.1417513141868,50.461525307876194],[-118.14165281826601,50.461490615218054],[-118.14158087679571,50.46144594847724],[-118.1415512438137,50.461392427495085],[-118.14153543213882,50.46132066829307],[-118.141548205852,50.46125773052081],[-118.14156098109048,50.46119478381241],[-118.14154545576777,50.461131525162465],[-118.14150162439967,50.461078124999496],[-118.14147199331396,50.46102459504197],[-118.1414709474453,50.4609798865342],[-118.1414698104118,50.46092556122898],[-118.1414685766036,50.46087178956754],[-118.14149554883281,50.46080873092094],[-118.14152058260582,50.460736484691594],[-118.14154765301852,50.46067286344446],[-118.14157462501842,50.46060980476311],[-118.1415874000367,50.460546858001116],[-118.14157177656355,50.46048416188159],[-118.1415667260132,50.46047250194555],[-118.15624158495162,50.45848319482529],[-118.15646339564738,50.45850176182419],[-118.1567451148868,50.45850196819753],[-118.1570291692215,50.45848878772474],[-118.15731361437547,50.4584733650836],[-118.15759591798158,50.4584600589871],[-118.15787841959232,50.45843545651158],[-118.15815965646544,50.45840794297867],[-118.15844089120864,50.45839059920718],[-118.1587167730208,50.458393785814074],[-118.15898837198205,50.45843169097009],[-118.15925354747692,50.45849627046406],[-118.1595150282993,50.45857187884487],[-118.15976882634726,50.45865090143963],[-118.16001066081232,50.458747725549664],[-118.16025561077466,50.45883685049582],[-118.16051865210072,50.458893364860735],[-118.16079200599,50.4589313897028],[-118.16107041659036,50.458960740935275],[-118.16135125990104,50.45898630419565],[-118.1616321035298,50.4590118667447],[-118.16191032212693,50.45904232320015],[-118.16218455204968,50.45908549635441],[-118.16245634935129,50.4591426265906],[-118.16264130874903,50.459179469891986],[-118.16272698222106,50.45919627434729],[-118.16299965876878,50.45922803466387],[-118.1632749637072,50.45921421780421],[-118.1635507575698,50.45916709373807],[-118.16382917698624,50.45912523585694],[-118.16410574689836,50.45909398627408],[-118.16438542819412,50.45906521665828],[-118.16466413646144,50.459042027675416],[-118.1649447890724,50.459028016243444],[-118.16522592677352,50.459021388361734],[-118.16550813479901,50.459018786289064],[-118.16579034279196,50.45901618349893],[-118.16607216182135,50.45900564206484],[-118.16635582917472,50.45898449087773],[-118.16663793882424,50.458972278065694],[-118.16691314499236,50.458989517251965],[-118.16718572696067,50.459031991431836],[-118.1674544183314,50.45908662885558],[-118.16772194515276,50.459147954332785],[-118.16798947114535,50.45920928809078],[-118.16825806809858,50.45926447722886],[-118.1685303605547,50.45930862696805],[-118.16880761291863,50.4593344770332],[-118.16908797486711,50.45934247493448],[-118.16936999025738,50.45934097932021],[-118.16965414490346,50.45933737441572],[-118.16993713307241,50.45934046644321],[-118.17021798289785,50.45935583679673],[-118.17049727778169,50.459380136659355],[-118.17077482350228,50.45941448231995],[-118.17104478573064,50.4594618507562],[-118.17131027685527,50.45952472248324],[-118.17157596308522,50.45958647729134],[-118.1718502055544,50.45962962653865],[-118.17213125218237,50.459643875766695],[-118.17240840391878,50.459619427137994],[-118.17268351131345,50.45957618292317],[-118.17295239060496,50.45951781566277],[-118.17322613658733,50.4594823840692],[-118.17350688565791,50.45946779732231],[-118.17378841501429,50.45945890626374],[-118.17407081958275,50.459455166141176],[-118.17435254328906,50.45945533675975],[-118.1746350475716,50.45946120305602],[-118.17491463420733,50.45947365137874],[-118.17519548655528,50.4594890091369],[-118.17547672763241,50.45950213361205],[-118.17575894018367,50.45950967594191],[-118.17604202775428,50.45951218979768],[-118.17632336332747,50.45951458798867],[-118.176605576098,50.45952212816612],[-118.17688429037652,50.4595395903579],[-118.17716874508496,50.459564798701564],[-118.17744532591131,50.45960470912079],[-118.17770353275125,50.45966874902359],[-118.1779380223055,50.459767262196486],[-118.1781506375695,50.459889657416085],[-118.1783497374097,50.46001844567555],[-118.17853892223503,50.46015330318001],[-118.17871050798203,50.46029765504869],[-118.17885019993649,50.460452180664426],[-118.17895605315269,50.460617872601226],[-118.1790429446551,50.460790702748106],[-118.17912264203589,50.46096414483521],[-118.17916917885915,50.46114485086102],[-118.1792328303215,50.46131885724029],[-118.17939197462441,50.46146345734763],[-118.17961646443473,50.46157877841837],[-118.17985903751763,50.461671647452185],[-118.18012377725758,50.4617389630907],[-118.18039881444047,50.46176745550796],[-118.18068045952498,50.46177833417965],[-118.18096618503874,50.46177594042652],[-118.18124684957925,50.46176188782768],[-118.18152556582633,50.461738656589475],[-118.18180389006595,50.46170748680617],[-118.18208153020304,50.46167005738702],[-118.18235479242179,50.46162722814547],[-118.18262707995422,50.46157980927305],[-118.18289518349613,50.46152587432818],[-118.18316231062492,50.46146735871077],[-118.18342642190336,50.461405799716175],[-118.1836909206092,50.46134200749293],[-118.1839553223102,50.46127876831848],[-118.18421797115539,50.461215413691384],[-118.18448402413453,50.46115285961085],[-118.18474667305752,50.46108949479251],[-118.18500961152681,50.46102445936218],[-118.18527118674918,50.4609570669698],[-118.18552984216275,50.46088607759495],[-118.18578567395325,50.460810937571104],[-118.18603926565577,50.46072828907787],[-118.1862837112,50.46063708357857],[-118.18651220233276,50.460535709977755],[-118.18668154380352,50.46038721537726],[-118.18688123903519,50.46026798594403],[-118.18713949532301,50.46018905491644],[-118.18741487752031,50.4601339337802],[-118.18769086016381,50.460116144848826],[-118.18797385930695,50.46012936134621],[-118.18825939976261,50.460168746933206],[-118.18852482281241,50.46023213112163],[-118.18875807244869,50.460327711384664],[-118.18896129248044,50.46046354941912],[-118.18910432720406,50.460619425753656],[-118.18917443151521,50.46078709970987],[-118.1891998076573,50.46096743383158],[-118.18921020973056,50.46115236008976],[-118.18923004434888,50.4613339931101],[-118.18923645983489,50.46152146717665],[-118.18924861278137,50.4617065169735],[-118.18931006405069,50.46187300965452],[-118.18948713132593,50.46200642882533],[-118.18975364853029,50.462094185991596],[-118.19002334970435,50.46213301661489],[-118.19030675000165,50.46214399451652],[-118.19059500355883,50.46213723440149],[-118.19087586124502,50.46212204115673],[-118.19115515643529,50.46209543682501],[-118.19143113830556,50.46205729778254],[-118.19170195987518,50.46200805411247],[-118.19196489367307,50.46194300228282],[-118.19222237519374,50.46186852484096],[-118.19248112105099,50.46179696565973],[-118.1927495041084,50.461741336927865],[-118.19302187910479,50.46169332994557],[-118.19329980138158,50.461654193534386],[-118.19357870458744,50.46162981571864],[-118.19385528780023,50.461629003417684],[-118.1941328651037,50.46166329058132],[-118.1944107390857,50.461706077472876],[-118.19468928630283,50.46173478166171],[-118.1949687067348,50.46175845725918],[-118.19524841736957,50.46178046214171],[-118.19552812827705,50.46180246631898],[-118.19580754801767,50.46182614873354],[-118.19608638829315,50.461853170470036],[-118.196366688105,50.46188199400618],[-118.19664601949522,50.46191639843195],[-118.19691087491563,50.461972949892846],[-118.19715882829273,50.462055418669244],[-118.19739725989011,50.46215191382148],[-118.19762675416817,50.46225906858221],[-118.19784438802124,50.462373304833655],[-118.19805191521128,50.462494728311476],[-118.19825088959273,50.46262459677864],[-118.19843654583163,50.462759735505394],[-118.19861228757749,50.46290095422444],[-118.19876508526029,50.46305185363685],[-118.19890612157414,50.46320926333941],[-118.19904919933748,50.46336512632872],[-118.1992098736959,50.46351150011627],[-118.1993937857551,50.463646513582205],[-118.19958528280492,50.46377867177706],[-118.19978446249378,50.463907412036434],[-118.19999939820593,50.46403727234143],[-118.20020109802674,50.464151499620414],[-118.20041874751874,50.46426573055738],[-118.2006405781846,50.46437629643277],[-118.20086454799747,50.46448475268815],[-118.20109425602412,50.464590783647786],[-118.20132619923008,50.464694151251685],[-118.20156232198522,50.464793862636704],[-118.20180087505582,50.46488978537659],[-118.20204380279031,50.464980926598784],[-118.2022911996294,50.46506674150954],[-118.20254141388122,50.46514653506318],[-118.20279784941471,50.46522111678026],[-118.20305681101557,50.465291356044084],[-118.20331810501519,50.46535836916465],[-118.20358153776846,50.46542327245326],[-118.20384526244351,50.46548649615534],[-118.20411064107465,50.46555040528909],[-118.20437417210427,50.46561475298312],[-118.20463722072338,50.465681886402145],[-118.20489618782992,50.46575212133564],[-118.20515253468757,50.46582725125715],[-118.20540868729381,50.4659035058399],[-118.20566717377082,50.46597652531391],[-118.20592876515398,50.46604186220419],[-118.20619589183981,50.46609571933903],[-118.20647049798978,50.466137103746284],[-118.20674645776614,50.466170682083046],[-118.20702640415817,50.46620171121342],[-118.20730431062246,50.46623428628639],[-118.20758017563516,50.46626841624767],[-118.20785788786436,50.4663021151956],[-118.20813394720093,50.46633512744502],[-118.20841185528595,50.466367699740296],[-118.2086883983483,50.46639792423864],[-118.20896698359324,50.466426592436726],[-118.20924624708917,50.466451348295536],[-118.20952667008545,50.4664694143668],[-118.20980757770516,50.46648468442318],[-118.2100883895671,50.4665005074717],[-118.21036852382512,50.466520241455314],[-118.21064798055119,50.466543886379085],[-118.21092695478694,50.46657031697867],[-118.21120417850429,50.46659662355458],[-118.21148315339165,50.46662305275499],[-118.21118215079899,50.466549873533054],[-118.21092316933526,50.46647965333108],[-118.2106642861653,50.46640886988466],[-118.21040831370006,50.46633152006827],[-118.21016079700418,50.46624628601375],[-118.20991755667623,50.46615683273548],[-118.20967480171505,50.46606458360739],[-118.20943418392868,50.46597023354594],[-118.2091956089276,50.46587432733622],[-118.20895888325546,50.46577798132685],[-118.20872069722738,50.46567984140197],[-118.20848834506641,50.46557872204351],[-118.20826036543787,50.46547282988109],[-118.20803851071976,50.46536227938129],[-118.20781344653604,50.46524980270454],[-118.20759450578143,50.46513267665437],[-118.20739296712884,50.46500717622289],[-118.20721835995896,50.46486944416018],[-118.20707632347036,50.46471761808136],[-118.20695752161159,50.46455443909018],[-118.20685019266885,50.46438641861505],[-118.20674120976848,50.464217720906795],[-118.20661696471633,50.4640552876061],[-118.20647920835297,50.46389924206235],[-118.20633211721548,50.46374593725441],[-118.20617938942593,50.463594485754946],[-118.20602296616508,50.4634439124731],[-118.20584593302982,50.46329978687395],[-118.20567055417838,50.46315634700873],[-118.2055397090461,50.46300135639686],[-118.20546302085647,50.46283041321828],[-118.20541997593858,50.4626494027999],[-118.20540552114917,50.462467026881114],[-118.20541869153686,50.462288849283176],[-118.20547416708547,50.46211196352862],[-118.20556105633766,50.461937861755416],[-118.20566769544511,50.461772492515244],[-118.2058268617673,50.46162099581047],[-118.2059739661207,50.461467518676365],[-118.20605842503178,50.46129719568312],[-118.20611418790669,50.4611186304202],[-118.20613659118197,50.46093828307618],[-118.20613254168968,50.46075720098536],[-118.20610427336264,50.46057272116793],[-118.20603517162372,50.460398913537865],[-118.20589762930517,50.46025192960786],[-118.20567881529693,50.460134236420295],[-118.20545669326287,50.46001518855001],[-118.2052594602227,50.45988545599523],[-118.20506242030635,50.45975461566246],[-118.20487879823744,50.4596179319652],[-118.2047233694614,50.45947194488306],[-118.20462704882587,50.45930186644338],[-118.20457117467257,50.45912334885893],[-118.20453290381077,50.45894550285777],[-118.20450921808006,50.45876529522201],[-118.20448358847455,50.45858608044973],[-118.20443812282876,50.458408856918496],[-118.20437651592356,50.45823275512899],[-118.20430606102279,50.45805658981051],[-118.20422063346285,50.457885027565425],[-118.20411284745285,50.45771978943703],[-118.2039786184784,50.45756399536656],[-118.20381648892176,50.45741583392],[-118.20364288983839,50.457272513245634],[-118.20346725182456,50.45713073887088],[-118.2032741171695,50.45699790913121],[-118.20307524915043,50.4568674950582],[-118.20292741971708,50.45671864082527],[-118.2028176956632,50.45655440301507],[-118.20272498529961,50.45638401551773],[-118.20263801162557,50.45621120297262],[-118.20254714907502,50.45604038500911],[-118.2024343159645,50.45587365815405],[-118.20231409336624,50.4557086789017],[-118.20221565226198,50.45554070678911],[-118.20216621306311,50.45536603003868],[-118.2021385546973,50.45518836054601],[-118.20212003403732,50.455009084595844],[-118.2021104604834,50.45482930066926],[-118.20210642768683,50.45464821706028],[-118.20210589562242,50.45446738034523],[-118.20211071061064,50.45428636028695],[-118.20211533352176,50.454106447597134],[-118.2021218027438,50.45392610462939],[-118.20214081377149,50.45374495584432],[-118.20217888607776,50.45356627255657],[-118.20224438072596,50.45339292261893],[-118.2023458584549,50.453226621785475],[-118.20247145088884,50.45306429090737],[-118.20259704396828,50.452901950923746],[-118.20270221188191,50.45273478917082],[-118.20278851463395,50.45256402764228],[-118.20286810521449,50.452391102137966],[-118.2029441946554,50.452217929630564],[-118.20302203377115,50.45204488048709],[-118.20310677574753,50.45187288769769],[-118.20320163300062,50.45170385926989],[-118.20330329540629,50.4515364497977],[-118.20341011176065,50.45136996424719],[-118.20352042778178,50.45120372545046],[-118.20363229967523,50.451038726300666],[-118.20374932540396,50.45087465103845],[-118.20386965562294,50.45071194777833],[-118.20399329340377,50.45055059864868],[-118.20412042914747,50.45038950515223],[-118.2042629302205,50.4502317461521],[-118.20442488287846,50.45008440784493],[-118.20461572616296,50.44995435725205],[-118.20482115893255,50.44983211524201],[-118.20503456747261,50.44971495534773],[-118.20525779948211,50.44960243830239],[-118.20548560290949,50.44949420273541],[-118.20571447746075,50.44939000179771],[-118.20595084496127,50.44929366924404],[-118.20620550482475,50.449214445974214],[-118.20646571425154,50.449144083903334],[-118.20672874532,50.44907787971481],[-118.2069976155565,50.449018866595324],[-118.20726775087259,50.448962771562854],[-118.20753652377752,50.44890431084209],[-118.20779614752325,50.44883730362605],[-118.20803738067056,50.44875374000736],[-118.20823005554684,50.44862324371488],[-118.20840424043543,50.44847676290799],[-118.20858572509765,50.44833926686101],[-118.20876399927404,50.44819984476217],[-118.20894227080247,50.4480604312837],[-118.20912384962047,50.44792237164],[-118.20931515291602,50.447789526180244],[-118.20951949059986,50.44766324005978],[-118.20971390509501,50.44753287329687],[-118.20987369500484,50.44738762699106],[-118.20999593731868,50.44722392336775],[-118.21007928186857,50.447049559223835],[-118.21011887229008,50.44687212036578],[-118.2101408657896,50.44669400175456],[-118.21015070612128,50.446514457060644],[-118.21015529465788,50.44633455123192],[-118.21011310865043,50.44573946182066],[-118.20762122619111,50.44424396671914],[-118.20856413889126,50.43803384061428],[-118.21482045257522,50.43593114989428],[-118.21509148092328,50.434170495358856],[-118.21511579310268,50.43418350824417],[-118.21525151118956,50.434217929969925],[-118.21545206060848,50.43425635843585],[-118.21555714524793,50.43427336209997],[-118.21567585002867,50.43430376420677],[-118.2159432843155,50.434354804567306],[-118.2162295433985,50.43437892939426],[-118.2164239320516,50.43438132254886],[-118.21657306919242,50.43442007778248],[-118.21682888273568,50.43450758722435],[-118.21717759589104,50.434580178430636],[-118.21745670149961,50.43463542693357],[-118.21767606470755,50.43471867647389],[-118.2178950656967,50.43482449990062],[-118.21802965242122,50.43488595810439],[-118.21817540077838,50.43493408175833],[-118.21844389739694,50.435142829011546],[-118.21866420053092,50.43544592149405],[-118.21873132277156,50.435580036793795],[-118.21883507187503,50.4356150228477],[-118.21910369822626,50.43567970758739],[-118.21941855484505,50.435712608019074],[-118.21969617208097,50.43581747393627],[-118.21987321551701,50.436022597963536],[-118.2199192140032,50.43612527564007],[-118.21998554447892,50.43607966570695],[-118.22021271403422,50.43593350159676],[-118.22046378469591,50.435782248893055],[-118.22060415672664,50.435718112495096],[-118.22078703908434,50.43568465788429],[-118.22115608601341,50.43568069771234],[-118.22151711054292,50.43571289166337],[-118.22170024751655,50.43572917293973],[-118.22183094160826,50.43570051345349],[-118.22212158892044,50.43564809204572],[-118.2225883752224,50.4356114481545],[-118.22319485733799,50.43559650322681],[-118.22401680089347,50.435718194897944],[-118.2247294888624,50.435980211152525],[-118.22497658686619,50.43614901476126],[-118.22499169770728,50.436184546884164],[-118.2250009557628,50.43620270845597],[-118.22501360278834,50.436211508160994],[-118.22511175277208,50.436196944306474],[-118.2252940681845,50.43617700225349],[-118.22556096136499,50.43616979027948],[-118.22592116762063,50.436165752495576],[-118.22617582615757,50.43616784813176],[-118.2264909393089,50.43616854607292],[-118.2271735186303,50.43614368194109],[-118.22783455008063,50.43606926963364],[-118.22810138662166,50.43602136853406],[-118.22813131058622,50.43601217338953],[-118.22812549497455,50.43588181722196],[-118.22822290934658,50.43561521450192],[-118.22844850705741,50.43547796473623],[-118.22860089459873,50.43546721246794],[-118.22875066378982,50.43546136526113],[-118.22922340845386,50.43545167190157],[-118.22980073428027,50.435441420654236],[-118.23014422307487,50.4354418439242],[-118.23024278411813,50.435445384208734],[-118.23039789926885,50.43543934118444],[-118.23075625394722,50.435435718417274],[-118.23108174847314,50.43542753334347],[-118.23140813270497,50.435496238798095],[-118.23182614552981,50.43568043116622],[-118.23210637135068,50.43582160638947],[-118.23218457443315,50.435861002749256],[-118.23220422160776,50.43587029362137],[-118.23225332551662,50.43588334556564],[-118.23233111360595,50.435904633145704],[-118.23246643469669,50.43592092506504],[-118.23266453795121,50.43593259007841],[-118.23278109347793,50.435944742160615],[-118.23289898486978,50.43593889950326],[-118.23310335170717,50.43591428458601],[-118.2332339419567,50.43588617434967],[-118.23330252110557,50.43585822541727],[-118.2334069826392,50.43577630010073],[-118.2335882445573,50.43563931474854],[-118.23383537949226,50.4355515969267],[-118.2340159387439,50.43553151755593],[-118.23407095041769,50.43553086383419],[-118.23409223516286,50.43553066925937],[-118.23414549713105,50.43552989253483],[-118.23423505632613,50.43549324783182],[-118.23434465353326,50.43540207347053],[-118.2344820665195,50.43532416246461],[-118.23461506376735,50.43528209083519],[-118.23467742855378,50.435259354272766],[-118.23472071917398,50.43528556522692],[-118.2348548183488,50.435329448052066],[-118.23506578768142,50.43543071971748],[-118.23525871539204,50.43555444335281],[-118.2353459862369,50.435674701871],[-118.23536272187262,50.43581373327666],[-118.23536916985425,50.43589950304423],[-118.2354050127426,50.4359483500274],[-118.23547119465046,50.436006108531224],[-118.23550904612418,50.43603305781321],[-118.23552092441274,50.436046322015066],[-118.23556257923998,50.43608201774653],[-118.23565210169384,50.436148195864746],[-118.2357339537264,50.43615620691335],[-118.23575100504041,50.43605740789608],[-118.2359373143493,50.435983491194975],[-118.23624195829746,50.43606534358814],[-118.23635085226702,50.436275826572874],[-118.2364598309851,50.4364139888104],[-118.23657855545541,50.43644436847017],[-118.23661531592946,50.43645712066665],[-118.23665732566438,50.43647024162648],[-118.23667424515968,50.43647482015113],[-118.23675039954843,50.43650558976047],[-118.23701247494807,50.43658784801254],[-118.23737049971311,50.43667853611737],[-118.2376182268086,50.43672079680809],[-118.23773371092574,50.43672890880902],[-118.23782307794373,50.43675495589844],[-118.23790051711401,50.436798813888096],[-118.23793106582039,50.43681677905773],[-118.23802593804234,50.43688277016751],[-118.2383314740569,50.43696976801933],[-118.23870396587208,50.436925303388485],[-118.23891767606439,50.43684652658639],[-118.23899705623847,50.436827812069694],[-118.2390674484919,50.436840665463016],[-118.2393853614614,50.43688672123458],[-118.23999584323775,50.43699230003294],[-118.24041218099168,50.43707351302573],[-118.24060968347669,50.43712975876021],[-118.24080970801289,50.43718165234403],[-118.24098478212447,50.43719338441761],[-118.2411980932497,50.43716824354988],[-118.2414120772685,50.437139199225214],[-118.24151766985908,50.43710198418485],[-118.2416432646321,50.437051474955545],[-118.24193861537682,50.43697164466057],[-118.24233299365517,50.43688238574999],[-118.2426419724331,50.43681593985997],[-118.24277538589536,50.43679196714157],[-118.24284592001554,50.436773189477954],[-118.2430063138223,50.43672626059745],[-118.24329250886413,50.43663787466776],[-118.24355664765102,50.436554150130355],[-118.24365252584333,50.43652190113137],[-118.2436724129443,50.43649899860865],[-118.24371316537757,50.4364577910435],[-118.24373470517284,50.43643557400593],[-118.24380904325358,50.43642554190545],[-118.24395489576781,50.43640131100635],[-118.24402913827551,50.436391832510964],[-118.24412574273339,50.436386183340076],[-118.24433031549522,50.43637060206617],[-118.24445607087954,50.43636021884276],[-118.2445101035003,50.43635497139009],[-118.24462418783637,50.43634037905025],[-118.24493651967732,50.436305801006945],[-118.24531259448926,50.43626100598818],[-118.24546117543177,50.43624148444121],[-118.24566822469302,50.4362526237227],[-118.24609158853629,50.43629306986662],[-118.24633229918251,50.43637605675683],[-118.24638241695614,50.436465448885336],[-118.24643138573275,50.436510132152726],[-118.24656909490932,50.43655369253872],[-118.24687093505617,50.436631367070305],[-118.24717333524401,50.43669552070346],[-118.24740590070519,50.43673330537695],[-118.24761610408578,50.43676726089653],[-118.24782815453342,50.43680077607791],[-118.2480427230605,50.4368299567543],[-118.24816540087166,50.43683743243438],[-118.24820087842305,50.43683709172606],[-118.24821126179297,50.43682822013162],[-118.24831167402186,50.43683130441338],[-118.24855354869871,50.43685618030833],[-118.24876580963348,50.43689875692041],[-118.24883018595044,50.43691570169586],[-118.24888391238136,50.43690195157942],[-118.24908041085764,50.43688183587117],[-118.2493898765524,50.436874162739],[-118.24962684984195,50.43687609374841],[-118.24970314823705,50.43687523471801],[-118.24972977987926,50.43687484261249],[-118.24979646454254,50.43687838946717],[-118.24993410282414,50.43688126269949],[-118.25017859469646,50.43690122928839],[-118.25036370783917,50.43692664022949],[-118.25041816293974,50.43693949848549],[-118.25044325606075,50.43694803779144],[-118.25051463229147,50.436965472419175],[-118.25072112817294,50.43699012234299],[-118.2510497834059,50.437004698483],[-118.25132834910367,50.43700163276562],[-118.25151009846856,50.43699516774108],[-118.25166979326963,50.43699336616935],[-118.25176203238283,50.43699249346752],[-118.25180237415182,50.43704616894639],[-118.2518965765533,50.437157287987866],[-118.25211162970804,50.43713225775386],[-118.25242059432112,50.43696296082831],[-118.25266552672142,50.436856969958086],[-118.25294149459299,50.43681756036635],[-118.25332914225513,50.43677749999915],[-118.2537476514448,50.436763899616686],[-118.25413730117661,50.43680477124036],[-118.2544079469799,50.43687854733224],[-118.25452361078689,50.43692676211594],[-118.2545858947827,50.436966155293234],[-118.2546882151204,50.43705073127413],[-118.25479140156621,50.43713027863782],[-118.25485674581269,50.437193045073],[-118.25493176337247,50.43728191726805],[-118.25503516294731,50.43737051865958],[-118.25512453967174,50.43739656072338],[-118.25515817090569,50.437396657850215],[-118.25518599602792,50.43740990716689],[-118.25523989648664,50.43743628314644],[-118.255265971822,50.43744940981038],[-118.25530833224626,50.43743994931782],[-118.25539459063175,50.43741209663757],[-118.25543596995092,50.437398047643036],[-118.2555044056685,50.437401713693625],[-118.25567119641221,50.4373998431125],[-118.25594365066335,50.43740141752074],[-118.25636618471454,50.43740560730119],[-118.25683974815391,50.43736025557295],[-118.25726406811567,50.43718942915828],[-118.25753634379984,50.437006809958326],[-118.25758566884677,50.436884844402755],[-118.25767393551571,50.436793855172304],[-118.25791027049956,50.43676860565358],[-118.2581491235461,50.43673901237088],[-118.25846456866599,50.436614221229284],[-118.25887545335151,50.43643905845497],[-118.25928249443199,50.43628621447161],[-118.25968415277748,50.436164638917454],[-118.25998112035236,50.43608543683699],[-118.26018035240212,50.43602877566752],[-118.2604020983702,50.435954473335414],[-118.2605462223171,50.4358990320445],[-118.2606881261225,50.435897671169236],[-118.26092377166937,50.435917564071865],[-118.26109534651428,50.43592901934518],[-118.26129628537281,50.43594478148543],[-118.26160570063249,50.43600938598264],[-118.26190568569304,50.43611852584169],[-118.26211946139297,50.43618321120218],[-118.26223952509187,50.43619557737993],[-118.26233928563416,50.43621273182327],[-118.26251859896595,50.436251275099174],[-118.26285601154767,50.436225183185364],[-118.26328160875086,50.43621147417844],[-118.26355284685525,50.436374531771385],[-118.26371486095171,50.4365033847757],[-118.26399188683475,50.4365092190339],[-118.26428703104472,50.43653326956193],[-118.26442531134464,50.436563287624644],[-118.26452962143793,50.436615785663996],[-118.2646869737849,50.43669967467788],[-118.26486637976502,50.43677889708938],[-118.2650365120846,50.43683996099023],[-118.26511354943898,50.436865691451395],[-118.26512740067179,50.43688812920837],[-118.26516339551381,50.43694657454693],[-118.26526856423652,50.43703528891324],[-118.26540645528246,50.43710878431993],[-118.26849619104328,50.43593689957032],[-118.26884799090071,50.430344741237114],[-118.26893280322543,50.42515193605624],[-118.26892266881816,50.423726967493955],[-118.26839003933664,50.41751181724336],[-118.26899653360483,50.41175488789197],[-118.27140258691085,50.40673009197717],[-118.27202995472807,50.404394901130466],[-118.26799451181402,50.40217341691791],[-118.26191198487659,50.4013224599887],[-118.25609794102215,50.400475293014736],[-118.25288219368761,50.398596543919275],[-118.25467266906985,50.39682831124178],[-118.26799596454339,50.39664181969047],[-118.27523590605752,50.39577572111715],[-118.2781729544313,50.394578348943284],[-118.28746625215122,50.39023082936972],[-118.29468790826526,50.38474707946909],[-118.30057526584936,50.377953501741885],[-118.30012565911788,50.377438523087676],[-118.29735295560721,50.37396143121334],[-118.29564708307525,50.37111409358044],[-118.29455983275967,50.36655281812469],[-118.2943850539993,50.36501064783711],[-118.2951731798256,50.361476374615215],[-118.29704443579631,50.357478726816474],[-118.2977501117366,50.35343187123792],[-118.29765125391505,50.34995539062676],[-118.29629176253495,50.34442409590841],[-118.29414294363217,50.34020485649323],[-118.28895575882659,50.339125228191584],[-118.28154290465696,50.339652953327864],[-118.27484556130037,50.34045859229105],[-118.26770848898748,50.34069397715841],[-118.26145056931863,50.3396774916537],[-118.25876628877137,50.33711480447031],[-118.25805124293903,50.33329300577464],[-118.2586707183507,50.33067236530246],[-118.25598490813583,50.32713473576387],[-118.2605321296291,50.32114319059514],[-118.26676262256863,50.31628727750535],[-118.26693899698495,50.31600018395736],[-118.26711401431416,50.31052762028371],[-118.26470052176819,50.305569436199775],[-118.26370096290773,50.30134725789304],[-118.26566475522614,50.29672911353593],[-118.2691283234284,50.2908549985459],[-118.26984233903444,50.28965408530306],[-118.27142838684303,50.28212187434908],[-118.27141290082182,50.2761910316806],[-118.2701509326113,50.268718703235756],[-118.26844039974418,50.26205557394107],[-118.26673978135398,50.256409049900014],[-118.26556956076017,50.25310638740213],[-118.26262195183675,50.24922607763437],[-118.26028316710759,50.24558286034419],[-118.2611764458016,50.24119047883508],[-118.26125284368285,50.238108151669906],[-118.26062840367275,50.23640055934662],[-118.2591062390739,50.23252306574113],[-118.25669608406271,50.22773871582668],[-118.25606093286093,50.226424747659316],[-118.25276173766663,50.224034747875805],[-118.24946630394732,50.22261181150824],[-118.246157827944,50.21953936140153],[-118.24446270186691,50.21651616646571],[-118.24061956390452,50.213441918529945],[-118.23644279374821,50.21042530533442],[-118.23615876284553,50.206660031410884],[-118.23650735245968,50.20306884769119],[-118.23721710401598,50.199590195343895],[-118.23783756326681,50.1995882488084],[-118.24166581254084,50.19485250287245],[-118.24619238155331,50.19171047962924],[-118.25063915593118,50.18919507639111],[-118.25668022667706,50.18485232907313],[-118.2585528315577,50.18148267505787],[-118.2584492899054,50.17846428374233],[-118.25594731679465,50.17316313507559],[-118.25388700025793,50.17071653131146],[-118.25273984924539,50.16803758626203],[-118.2580657115348,50.166541946458544],[-118.26784507158922,50.162879883030705],[-118.27325997649989,50.160195127155454],[-118.27486762380268,50.1591078779677],[-118.27795634920761,50.15288531907205],[-118.27928142321436,50.147920434206604],[-118.28140484553576,50.144216003020496],[-118.28265031616918,50.14318458220402],[-118.28841812558626,50.13981253584466],[-118.29268175839816,50.137749169226254],[-118.2951650757473,50.13580820133448],[-118.29501042408857,50.13489706932168]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":42,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"4","REGION_NUMBER":4,"REGION_NAME":"Kootenay","REGION_NUMBER_NAME":"4- Kootenay","FEATURE_AREA_SQM":75890334095.3826,"FEATURE_LENGTH_M":1599485.4037,"OBJECTID":6,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-118.29501042408857,50.13489706932168],[-118.29497954728096,50.134664882052995],[-118.2928350087489,50.13296012275089],[-118.29069719526458,50.128570166184964],[-118.2916564226439,50.12384108492328],[-118.29367962430575,50.11864473792788],[-118.29367951342863,50.11715609719167],[-118.29366497900097,50.1120290472007],[-118.29106785409111,50.10769875441861],[-118.2890995809473,50.103311970892655],[-118.29211599552727,50.09896929624853],[-118.30409128856405,50.09609846451458],[-118.31431465300084,50.09733327555918],[-118.31938938868467,50.098750808210774],[-118.33067782406872,50.099179822025],[-118.33919599994921,50.09927796089269],[-118.34602865356375,50.095783376272166],[-118.35490501628973,50.093251519503816],[-118.36751235808079,50.0915139876754],[-118.37479020385035,50.091035418092424],[-118.37762731402393,50.08920961840106],[-118.37974212562034,50.08641073220924],[-118.37972345061594,50.08258928440636],[-118.37934849817461,50.080303323576246],[-118.37934805339725,50.0792182722934],[-118.38671562822054,50.07760546868171],[-118.39941611589407,50.07745620213688],[-118.40669545396922,50.07703513566304],[-118.42356499742348,50.077328939945474],[-118.4406172578689,50.07745249359582],[-118.44620851111007,50.07720679299081],[-118.45357910027634,50.075470680069266],[-118.46206751461608,50.07173782518277],[-118.46605453314578,50.06938620124961],[-118.4687941196174,50.06760758400561],[-118.47294019613706,50.06480051990264],[-118.48178761864013,50.06031858205476],[-118.48249972475574,50.05991992997216],[-118.49248991807116,50.054290079964524],[-118.49609903727028,50.05148615844883],[-118.49707392193514,50.051025190408645],[-118.50103629238184,50.046503889365255],[-118.50001762307745,50.04017464252983],[-118.49269920576455,50.03586817220539],[-118.48958336767984,50.034336811332025],[-118.4827280197591,50.03173838180237],[-118.47419657581419,50.029772419416354],[-118.4651412176916,50.02809177889635],[-118.46194015140283,50.02792793548545],[-118.45057805197689,50.02636520430418],[-118.44310719838143,50.02394141998997],[-118.4400865297427,50.022526351838344],[-118.43447269192025,50.019744691058506],[-118.43010821452182,50.016795928510234],[-118.42698303793495,50.01281319783381],[-118.42696415601259,50.00972686652298],[-118.433241719419,50.006405875242784],[-118.44156634559016,50.006375960394315],[-118.44716167289393,50.006644201916444],[-118.45273761568315,50.00525504310548],[-118.45857994517591,50.00352627564962],[-118.46504318110964,50.00253392707918],[-118.46840869898757,50.001440488932914],[-118.46954541947487,49.99999804785048],[-118.46953809507288,49.999026144692614],[-118.46934385944071,49.99520287107203],[-118.46789198585765,49.99126755276443],[-118.467615092414,49.98921410235885],[-118.46519272011932,49.984706081021095],[-118.46287447443085,49.981518456389644],[-118.4613536078918,49.98003530962206],[-118.45949063824102,49.97850197804715],[-118.45451437580861,49.97748113927058],[-118.45265842470978,49.977259249148595],[-118.44936453692513,49.976409083145654],[-118.44669857829844,49.97464880542129],[-118.44625055370192,49.974138619749255],[-118.44402806221873,49.97283273683425],[-118.44047998700438,49.9726711290782],[-118.43685006573021,49.9737606283615],[-118.43207542411587,49.97583045350565],[-118.43031162317496,49.97657191377444],[-118.42817778695667,49.97709331507523],[-118.42348960432645,49.97653516888504],[-118.42002282905399,49.97563140939063],[-118.41638768543724,49.97489727405739],[-118.41549585170915,49.97461217185316],[-118.41177238297847,49.973651890579724],[-118.40918680215177,49.972174786790724],[-118.40829519190181,49.970460887739456],[-118.40872154054902,49.96731816867858],[-118.41110638926331,49.96537508764456],[-118.41384473418927,49.96400075352343],[-118.41506979227862,49.961024786356745],[-118.41461731753346,49.95919895212112],[-118.41487536708166,49.95748289924997],[-118.41380350531163,49.954917199846385],[-118.41377978711486,49.951781059543585],[-118.41492297337585,49.94954655562371],[-118.41579533207222,49.94691853138666],[-118.41604426777094,49.944751934803534],[-118.41630089224418,49.94337994954236],[-118.41514233430036,49.940242989159756],[-118.41326458792604,49.93721939504103],[-118.41219044606913,49.93567923846995],[-118.41147613266754,49.93391368201576],[-118.41324420430814,49.93305474964394],[-118.41606827519318,49.93207863843421],[-118.41669574210493,49.93184355510663],[-118.41667546606705,49.93070384374954],[-118.41622717992556,49.92750874451584],[-118.41576446883636,49.92465287477084],[-118.4157608511323,49.924254160986266],[-118.4146869028797,49.92111673213326],[-118.41467363709187,49.91934671679796],[-118.4151024942902,49.9166035992746],[-118.41535824316624,49.91523604252216],[-118.41545347857551,49.91483231597535],[-118.41597078298636,49.91357560970636],[-118.41601692401008,49.91345616862783],[-118.4158778796819,49.91331368177805],[-118.41586476867215,49.913129643004034],[-118.41588190743997,49.91294262299287],[-118.41588254562907,49.912760099848924],[-118.41588837282893,49.91257794614087],[-118.41591140930554,49.912397548467816],[-118.41597003458385,49.91222414450305],[-118.41606424828588,49.91205773419431],[-118.41617384652834,49.91189352285007],[-118.41629354646574,49.91173170418261],[-118.41642180244237,49.911571049429334],[-118.41655178764348,49.91141051466081],[-118.41668340828518,49.91125066309099],[-118.41681175530752,49.91108944455574],[-118.4169316354318,49.91092651645317],[-118.41704141388212,49.91076118648662],[-118.41714445718381,49.91059425822774],[-118.41724095142791,49.91042461419226],[-118.41733061837648,49.910253926179436],[-118.41741527895653,49.910081769020366],[-118.41749302010165,49.909909122193504],[-118.41756556897646,49.90973612374768],[-118.4176124461904,49.90955964218425],[-118.41762327171988,49.90937895661278],[-118.41761833925852,49.909198316058195],[-118.41761022652418,49.90901575442396],[-118.41757532707518,49.90883641473318],[-118.41748564320632,49.908670796124674],[-118.41733271135826,49.90851718017703],[-118.41715477983234,49.90837708373953],[-118.41696717696527,49.90824252797314],[-118.41676578943309,49.908117197173176],[-118.41654604399963,49.90800753807419],[-118.41631003966826,49.90791145361888],[-118.41605960157591,49.907828491723926],[-118.41579936138513,49.907762365353875],[-118.41553203309388,49.9077177937702],[-118.41525471457771,49.907691184034014],[-118.41497479286284,49.90768020968851],[-118.41469464668765,49.90768109306786],[-118.41441838783805,49.90769015885434],[-118.41413946843646,49.90770469124011],[-118.41386172053788,49.90772269563011],[-118.41358369251648,49.90774238003573],[-118.41330594417018,49.90776038301624],[-118.41302875396568,49.90777503279576],[-118.41275076423986,49.90778397415092],[-118.41247472955443,49.907781176602356],[-118.41219899537074,49.907745055932935],[-118.41193390444957,49.90768706559961],[-118.41167796791093,49.907616145649456],[-118.41142688754121,49.90753708884404],[-118.41117618185726,49.90745578752237],[-118.41092491706557,49.90737784704587],[-118.41066851912727,49.90730971397851],[-118.41040423171209,49.90725742765273],[-118.41012976605577,49.907224220227384],[-118.40985189658046,49.90720094034633],[-118.40957374734005,49.90717934047084],[-118.40929349599884,49.907159854590425],[-118.40902038069251,49.907181560060515],[-118.40875490541475,49.90723092672736],[-118.40849013450739,49.9072865637215],[-118.40822807940263,49.90734690170203],[-118.4079655572554,49.90741003724801],[-118.4077031267628,49.907472617884565],[-118.40736459242406,49.90755081373817],[-118.40710351921992,49.90761573928167],[-118.40684426762385,49.907680230247244],[-118.40658328533574,49.9077446002657],[-118.40632403227546,49.9078090899892],[-118.40606477848394,49.90787357909378],[-118.40580379399513,49.90793794723893],[-118.4055445387394,49.90800243510134],[-118.4052835527829,49.90806680199629],[-118.40502429606298,49.90813128861676],[-118.40476503861186,49.90819577461813],[-118.40450395654415,49.908260702851464],[-118.40424469762554,49.90832518761052],[-118.40398370799737,49.90838955138153],[-118.40372444761461,49.9084540348985],[-118.40346509406763,49.9085190720673],[-118.40320573829202,49.908584117556394],[-118.40294619689942,49.908650270966525],[-118.40268656082199,49.908716986965985],[-118.40242865397616,49.908783822737675],[-118.40216901638537,49.908850537498786],[-118.40190956443352,49.9089161341604],[-118.40165029814044,49.90898061272422],[-118.40138976639861,49.909042181036014],[-118.40112605432982,49.909101827210314],[-118.40086271441929,49.90915923779307],[-118.40059783027658,49.9092154098406],[-118.40033313191962,49.90927046376846],[-118.40006679688919,49.90932483341509],[-118.39999980365086,49.909338257050265],[-118.39973365278931,49.9093915173477],[-118.39946759528276,49.90944421378838],[-118.39919999362046,49.90949567166227],[-118.39893412136472,49.90954724932773],[-118.39866670497766,49.909597588419985],[-118.39839928800181,49.90964792685636],[-118.39813023441678,49.90969758097032],[-118.3978630027644,49.90974680062065],[-118.3975958630435,49.90979546535117],[-118.39732708674035,49.909843445748976],[-118.39705676637526,49.909890187537854],[-118.39678836200136,49.90993593167146],[-118.39651841360413,49.90998043719072],[-118.39624855869727,49.910024378839],[-118.39597715830482,49.91006709079836],[-118.39570603798104,49.910108121414474],[-118.39543482463709,49.91014970562038],[-118.39516543336012,49.9101908553982],[-118.39489267409047,49.91023120922475],[-118.39462066215275,49.91026708357532],[-118.39434621521974,49.910296574629115],[-118.39406797656416,49.91031732691768],[-118.39379015428582,49.91032510268346],[-118.39351157842007,49.91031642901035],[-118.39323542715151,49.91029323657051],[-118.39296324712467,49.9102567455053],[-118.39269952281055,49.910201064312126],[-118.39245495753647,49.910114503738114],[-118.39221661047154,49.91002215377148],[-118.39196069145386,49.90995118800331],[-118.39168622452537,49.90991792557051],[-118.3914088640646,49.9099019875318],[-118.39112972974331,49.909896669115895],[-118.39085148621587,49.90989649465609],[-118.390573056013,49.90989743694742],[-118.39029462579867,49.909898378531324],[-118.39001572959161,49.90990210857942],[-118.38973828254348,49.90990763916535],[-118.38946055462418,49.90991484970204],[-118.38918100401096,49.90992249319008],[-118.38890290397028,49.90993192828403],[-118.38862470970527,49.909941925868885],[-118.38834670205082,49.90995080529393],[-118.38806878691096,49.909959129756906],[-118.3877909657898,49.90996689031898],[-118.38751314457438,49.909974650176636],[-118.38723340651063,49.9099834061485],[-118.38695684892555,49.90999407438829],[-118.38667818617704,49.91000686512913],[-118.38640069442046,49.910023119218586],[-118.38612427795911,49.91004340879934],[-118.38584893672127,49.91006773387938],[-118.38557294213575,49.91009596486737],[-118.38529849039679,49.910125433271176],[-118.38502394564422,49.910155455240535],[-118.38474911955228,49.91018715716139],[-118.38447583624752,49.910220096514955],[-118.38420236571432,49.910254152631694],[-118.3839303437615,49.910290009387886],[-118.3836563118589,49.910327416475404],[-118.38338545997026,49.91036673596062],[-118.38311432657548,49.91040773541008],[-118.38284454895768,49.91045108977586],[-118.38257448976755,49.91049612410919],[-118.3823057877787,49.910543504430464],[-118.38203843996376,49.91059324862824],[-118.38177226238031,49.91064645627433],[-118.38151132058756,49.91071021207048],[-118.38125898323347,49.9107853028171],[-118.38101206977453,49.91086981541784],[-118.3807726839455,49.910961635762774],[-118.3805391898709,49.9110600799709],[-118.38031340873177,49.91116472350943],[-118.38010595814046,49.91128533326375],[-118.37992567212594,49.91142141351369],[-118.3797499215681,49.911561762253044],[-118.37956799758963,49.911697157924365],[-118.37937634737602,49.91182791323384],[-118.3791830587526,49.91195799317717],[-118.37897270089087,49.9120750157711],[-118.378728862398,49.91216199947401],[-118.37847071413337,49.91222989598128],[-118.37820442862831,49.91228365802958],[-118.37793183040573,49.91232284315664],[-118.37765703209479,49.912343795283725],[-118.3773781657348,49.91233676124435],[-118.37710930515263,49.912290858001455],[-118.37686896790689,49.91220002581852],[-118.3766985330535,49.91205755850415],[-118.37658968072314,49.91189225006998],[-118.37654063140188,49.911714729685784],[-118.37657738159167,49.91153698712429],[-118.37667220553453,49.911367812498234],[-118.37679550240168,49.91120628741579],[-118.3769203428854,49.911045991447864],[-118.3770452752519,49.91088514105589],[-118.37718348568312,49.91072860912073],[-118.37732323815459,49.910573315201255],[-118.37745644373665,49.91041530305231],[-118.3775697293833,49.91025081729428],[-118.37765781408964,49.91008004094],[-118.37771349550465,49.90990418047487],[-118.37775725376241,49.909726357024226],[-118.37776814257128,49.90954623864711],[-118.37772792791168,49.90936820470188],[-118.37766821601025,49.90919164013411],[-118.37757559011477,49.90902351253042],[-118.37745033028006,49.90886215012791],[-118.3773139438237,49.90870453255411],[-118.37717363172956,49.908549462314326],[-118.37702775536378,49.90839627329138],[-118.37687823466324,49.90824395094562],[-118.37672862070654,49.90809219155216],[-118.37656961025037,49.90794429766046],[-118.37639133757985,49.907806933016005],[-118.37619380424155,49.90768008859127],[-118.37599454212618,49.90755312297749],[-118.3757949070601,49.90742839185151],[-118.37559363748528,49.90730297633558],[-118.37539994232519,49.907174137154996],[-118.37521784238572,49.907038763688],[-118.37504935029908,49.90689528725212],[-118.3748903494357,49.90674739068198],[-118.37473883008792,49.90659662486881],[-118.37460044857825,49.90644056322251],[-118.3744603396886,49.906284371593244],[-118.37430901035228,49.906132487654574],[-118.37413678349539,49.9059904485854],[-118.3739228996631,49.90587772287684],[-118.37368077836574,49.90578732525011],[-118.37342968096934,49.905708735451675],[-118.37317171128961,49.905639839411],[-118.37291327540699,49.90557373187171],[-118.37265530726683,49.90550483460268],[-118.37239743270729,49.90543538247286],[-118.37213918620888,49.90536815565615],[-118.3718759824938,49.90530963487246],[-118.3716017923026,49.90526447248183],[-118.3713469131694,49.90519804872965],[-118.37111447938291,49.90510209942646],[-118.37088508480845,49.904998457429556],[-118.37066209773097,49.90488790985236],[-118.370447247958,49.90477057763004],[-118.37024581609643,49.90464627820766],[-118.37006145176483,49.90451411815624],[-118.36989480772534,49.90437019995969],[-118.3697378420381,49.90422074463465],[-118.36958106604082,49.9040701626843],[-118.36941652918944,49.90392412972418],[-118.3692362839514,49.90378830344699],[-118.36902181586244,49.90366874233173],[-118.36879757877782,49.90355527179205],[-118.36859204294777,49.90343463380847],[-118.36843541123307,49.90329367361105],[-118.36834264403284,49.90312665427944],[-118.36828363244238,49.902946167617706],[-118.36821714104853,49.902768549432416],[-118.36810067254034,49.90260722539179],[-118.36793605282779,49.9024617441621],[-118.36774497106985,49.90232798757112],[-118.36754767258682,49.90220000918208],[-118.3673482711391,49.90207414432667],[-118.36714667385647,49.90195094723964],[-118.36693951282072,49.90182963069481],[-118.36673015593884,49.901710981883724],[-118.36651677920409,49.90159544301762],[-118.36629709127666,49.90148624539622],[-118.36606552878725,49.90138526093587],[-118.3658297591147,49.90128850374097],[-118.36559179345294,49.90119441415046],[-118.36534531792509,49.90110934271737],[-118.36512937446756,49.90099871297017],[-118.3649458815764,49.90086151969727],[-118.3647944145109,49.90071073892214],[-118.36465599185648,49.900555217707534],[-118.36453080079824,49.90039383867211],[-118.36442940591242,49.900226210399055],[-118.36433256157713,49.900000112759564],[-118.36427090390062,49.899825089309076],[-118.3642057876103,49.8996498237852],[-118.36413155668554,49.899476742284115],[-118.36404839700326,49.899304736299804],[-118.3639651435555,49.89913329339583],[-118.36387469248945,49.898963038046965],[-118.36377867899513,49.898794654425565],[-118.36366999782229,49.89862877591925],[-118.36355201518711,49.89846619875468],[-118.36342683374185,49.89830481799652],[-118.36329599574037,49.898145872062855],[-118.36316132659495,49.89798890982647],[-118.36302291773059,49.89783338596934],[-118.36287913410891,49.89767861627425],[-118.36273525705747,49.897524409541866],[-118.362593111927,49.8973703146728],[-118.36244741445624,49.89721654071797],[-118.36229961389334,49.89706488036581],[-118.36214269809396,49.896915412667894],[-118.36197793049429,49.896771038783136],[-118.36180002693554,49.89663196769222],[-118.36160650873667,49.89650254800839],[-118.36139690981778,49.896385559815776],[-118.3611736129815,49.896277226485594],[-118.36094793134248,49.89617268710128],[-118.36071000233811,49.896078586249864],[-118.36051899049008,49.896017732892],[-118.36027972991845,49.89585853606836],[-118.36005634386876,49.895750763566326],[-118.35983688680638,49.895640434692204],[-118.35961570142777,49.89552998429029],[-118.35939414235699,49.89542176827798],[-118.35916875083294,49.89531554449675],[-118.35894097587799,49.895213105675325],[-118.35870726279137,49.89511478175051],[-118.35846906204803,49.89502235650484],[-118.35822464423427,49.89493570881752],[-118.35797601750765,49.89485329701853],[-118.35772664350327,49.89477534540478],[-118.35747315493909,49.89470106645867],[-118.35721555177417,49.89463046015278],[-118.35695738859543,49.89456319656565],[-118.35669684005015,49.89449972669705],[-118.35643572988266,49.89443960847191],[-118.35617069237045,49.89438204539328],[-118.35590453225944,49.894331177262266],[-118.35563046576124,49.894296152161616],[-118.35535414999335,49.89427453542881],[-118.35507661511112,49.89426018570338],[-118.35479973735956,49.894241919833675],[-118.3545818020597,49.89421647706905],[-118.3542466286269,49.8942223895983],[-118.35396960566835,49.89421541698069],[-118.35368991591224,49.89421390958977],[-118.35341171656766,49.89422437224355],[-118.35313626565552,49.8942497330796],[-118.35293598939307,49.8942441740472],[-118.3530564908157,49.89404742606948],[-118.35320235816988,49.893876757872],[-118.35336261151204,49.89372461666664],[-118.35356570967288,49.89359865828567],[-118.3537211881965,49.89345410503846],[-118.35377039931565,49.89327553324695],[-118.35377964939092,49.89309529204427],[-118.35381137978212,49.89291662592503],[-118.35387231974191,49.89274113694272],[-118.35393325923414,49.89256564788428],[-118.35399756374169,49.892390955312436],[-118.35406023152183,49.8922155872599],[-118.35411434567713,49.892039059093314],[-118.3541581785806,49.891861240727174],[-118.35421565737352,49.89168550898329],[-118.35430379351311,49.89151474706936],[-118.35443692861334,49.89135732196738],[-118.35460777357228,49.89121496588757],[-118.35479777350737,49.891083565878745],[-118.3549940322168,49.89095656555742],[-118.35519202052177,49.89082967706517],[-118.35522516594098,49.89080938795117],[-118.35267594821089,49.875131137546646],[-118.34554068146969,49.855151842851534],[-118.35354944943015,49.84249110996028],[-118.35368324658762,49.84231846328208],[-118.35370740850215,49.84217430598737],[-118.35370332930474,49.84202138371568],[-118.35369925013453,49.841868461411565],[-118.35366523335702,49.84164390916012],[-118.35364522423764,49.84141919978795],[-118.35364036416217,49.84123965705328],[-118.35362182172031,49.84106876032905],[-118.35361696327217,49.84088920856635],[-118.35361357122157,49.84076346955984],[-118.35360707845325,49.84058324226501],[-118.35361599522273,49.840394490039834],[-118.35361100086045,49.84020532264206],[-118.35364939621222,49.84007007802958],[-118.35378364379962,49.839915553031844],[-118.35386428332629,49.839788925115215],[-118.35392896090165,49.83965326289251],[-118.35395458885678,49.839562908958136],[-118.35394881188681,49.83934712098974],[-118.35395727056512,49.83914023707534],[-118.35393725960844,49.838915535918865],[-118.3539319422259,49.83871786122625],[-118.35393899551175,49.83851936288759],[-118.35393413459242,49.83833981944619],[-118.35394552798319,49.83824055227715],[-118.35402547717779,49.83808674031082],[-118.35415971768326,49.83793221442791],[-118.35437821459082,49.83778586041992],[-118.35441977061879,49.83776729339295],[-118.35448659818279,49.83771262713021],[-118.3546104856774,49.83763029650424],[-118.35484321346041,49.83749285449881],[-118.35488235442924,49.83744698247603],[-118.35490618647641,49.83729432594917],[-118.35490233285839,49.83715046391296],[-118.35490118712372,49.83710515779933],[-118.35489632408085,49.836925605109414],[-118.35487924641922,49.836808520656994],[-118.35484784245781,49.83668307749619],[-118.35482828796187,49.836476489261194],[-118.35482512204072,49.83635981075758],[-118.35482204901149,49.83624257795018],[-118.3548341273422,49.83617049410585],[-118.35487101771973,49.83604418838961],[-118.35490940586314,49.83590894255668],[-118.35490555235157,49.83576508024486],[-118.35491547377124,49.83561200839845],[-118.3549101510527,49.83541434179026],[-118.35490538102698,49.83523423439514],[-118.35489902022319,49.835063621333354],[-118.3549229453446,49.83491040107358],[-118.35494687030595,49.83475718077616],[-118.35497079510725,49.83460396044103],[-118.35501087870551,49.83453158880539],[-118.35511641060492,49.83435017376878],[-118.35518280384085,49.83421463093709],[-118.3552750183825,49.83406054774907],[-118.35538387976906,49.83394268232237],[-118.35549110792167,49.8338241323938],[-118.35559654193042,49.83364327994393],[-118.35568979309858,49.83346213362855],[-118.35578246302414,49.833326172390045],[-118.35586285610806,49.83319048057618],[-118.3558998629877,49.83300086622908],[-118.35590681401005,49.832802920481974],[-118.35591549046413,49.83260510476087],[-118.35599611122869,49.83247847399253],[-118.3560891019632,49.83235101036062],[-118.3561839541833,49.83223329227409],[-118.35630302029843,49.83203360451919],[-118.35634140085314,49.83189835743319],[-118.35636724762412,49.831817072190944],[-118.35637978118122,49.8317631103085],[-118.35645775451717,49.83160011276427],[-118.35653745424528,49.83143723625852],[-118.3566010999552,49.83126588894877],[-118.35659894203117,49.83118489160038],[-118.35664962307071,49.83098662992525],[-118.3567008306672,49.83086867226388],[-118.35675367058296,49.830751398917634],[-118.35686160229307,49.8305972862786],[-118.35696780636619,49.83044305237609],[-118.35703349985833,49.83028032377599],[-118.3570974659849,49.83011747397767],[-118.35716283465923,49.829946247150204],[-118.35717251771693,49.82978411255639],[-118.35718047382574,49.82962185680418],[-118.35719185801393,49.829522588099586],[-118.35719038631369,49.829468783449954],[-118.35721475998031,49.82933368413398],[-118.35725313558142,49.829198436222605],[-118.3572777384957,49.82907239816096],[-118.35732701132127,49.828882512560924],[-118.35739237887277,49.82871127636327],[-118.35743029421964,49.828557905623406],[-118.3574377899928,49.82837752692291],[-118.35744668860372,49.82818877119779],[-118.35744066851343,49.827963909744916],[-118.35743464698503,49.82773905716186],[-118.35743225815332,49.82764899809803],[-118.35742816781585,49.827496072892004],[-118.3574237535854,49.82733464954715],[-118.35742159439208,49.82725365177402],[-118.3574170181367,49.82714535778685],[-118.35738609986846,49.82697528236584],[-118.35738152372478,49.82686698833543],[-118.35737959421344,49.82679505185612],[-118.35737812238034,49.82674124700568],[-118.357377663211,49.826723124309865],[-118.35737550412802,49.82664212646721],[-118.35738509141255,49.82648055434707],[-118.35747753929998,49.82627277494527],[-118.35750096531072,49.826164183620904],[-118.35749687487646,49.82601125810271],[-118.35750678552613,49.82585818395422],[-118.35750292470402,49.825714319732036],[-118.35751283526923,49.82556124551994],[-118.35699671000526,49.822384067065315],[-118.35369978075299,49.82208488959425],[-118.34486872148916,49.82107746925169],[-118.3369149217838,49.821089291832486],[-118.33152777827982,49.82121225947115],[-118.32868590699398,49.82099183062615],[-118.32763422625975,49.82076343177399],[-118.32620980418297,49.81951033181733],[-118.3233757275581,49.81774856197744],[-118.32099442441674,49.81695146563613],[-118.31639892845101,49.81627518989932],[-118.31303749836998,49.81582261732492],[-118.31109107908152,49.815597612912136],[-118.30896766697673,49.81434973846351],[-118.30745520781649,49.811550014759796],[-118.30585580950456,49.80818946421155],[-118.30584465848212,49.80767530475148],[-118.30284363381813,49.806995098670484],[-118.29904020870165,49.806599563007346],[-118.29710205079199,49.80574839917599],[-118.29602747946535,49.80375398438102],[-118.29637885986357,49.801919809125714],[-118.29840712166686,49.79900560120126],[-118.30016502782317,49.797693251569605],[-118.30086896954114,49.79592074097152],[-118.29715051579302,49.79461285837937],[-118.29238000062124,49.79399478823065],[-118.28874995242698,49.79348894988124],[-118.28751373828182,49.79303443080589],[-118.28680391559426,49.79194433771247],[-118.28501770402406,49.785898945497635],[-118.2842139500306,49.782306937245814],[-118.28376056058121,49.77870807399931],[-118.28657820948716,49.7744250931398],[-118.29115526094495,49.771047006544684],[-118.29317682467,49.76899408315734],[-118.29449807806037,49.766705512806645],[-118.29325284231786,49.76465300637166],[-118.29299326280017,49.76453679394625],[-118.29078199099717,49.76299877231894],[-118.28882553625796,49.760034052510385],[-118.28872936348972,49.75729502388266],[-118.28872454621451,49.75484178999584],[-118.28951265235368,49.752899940806415],[-118.29091633585658,49.750782896874895],[-118.2925844294058,49.74866931409719],[-118.29397949653945,49.74627059547673],[-118.29450455486514,49.74381757200681],[-118.28964571919819,49.741768892413866],[-118.28709115159864,49.74194226879358],[-118.28717275324044,49.74228562930634],[-118.2840885335239,49.742290182335644],[-118.28108610027698,49.74023990301195],[-118.28027218734768,49.737044924187174],[-118.27983359534535,49.733280004664884],[-118.27867366175671,49.730483366838435],[-118.27751746212942,49.72865674619526],[-118.2763690834323,49.725462771706],[-118.27653436951202,49.72192330497924],[-118.27731680016032,49.718445212972945],[-118.2771302418223,49.71781557894944],[-118.27509674265305,49.71656213010579],[-118.27245076776762,49.71439479657632],[-118.27111662372805,49.71131411155792],[-118.2703093144248,49.70949007663358],[-118.27012826867163,49.70560976042241],[-118.2698589838508,49.702582135533405],[-118.27011033556037,49.700928955470665],[-118.27037886549701,49.69876126343141],[-118.27267080638212,49.69864383736878],[-118.27442981996107,49.69904095370676],[-118.27574430684201,49.69777722984053],[-118.27512285110689,49.69510005708993],[-118.27527419392793,49.688587142363716],[-118.27614283049739,49.68385170859379],[-118.27630779585877,49.680313151645336],[-118.27744173855876,49.677803179886865],[-118.2767388264063,49.67660122944048],[-118.27363424413198,49.67295384275708],[-118.2723936260847,49.66924278648898],[-118.2714189297608,49.66668111601281],[-118.2686836770832,49.66588573426344],[-118.2631391175767,49.66588936619477],[-118.25528792607619,49.66544708761462],[-118.25229029921707,49.665051621647684],[-118.24779712972192,49.664604117258065],[-118.24497755698839,49.66398022292587],[-118.24207762146612,49.66226859657688],[-118.24224027023617,49.65810073085348],[-118.24212938259345,49.649544283133224],[-118.24078356717735,49.64326576603627],[-118.23972573568385,49.641208318353925],[-118.23970781456897,49.63481880839801],[-118.24058155058898,49.630479943112235],[-118.24250179769247,49.62785160158441],[-118.24689498240147,49.624589579640485],[-118.24900015841304,49.61979346675046],[-118.25002929292543,49.61345777878185],[-118.25108309077436,49.61191495510346],[-118.25308321845137,49.60534601394289],[-118.25228307373301,49.60061189826577],[-118.25147391081907,49.597414389854364],[-118.25173150287317,49.593418716750655],[-118.25304127661026,49.59010967582364],[-118.25328944523379,49.58839269428477],[-118.25134693346942,49.58548455483926],[-118.24809810189318,49.583149751636405],[-118.2449097480476,49.57938924559367],[-118.24411747962418,49.57510955933945],[-118.24285682279194,49.5688312736625],[-118.24257799810003,49.56192636754265],[-118.24282985460835,49.559530826728796],[-118.24519624261181,49.55621712040017],[-118.25055569001333,49.554268734853125],[-118.25476201036321,49.55231624653243],[-118.25581451109652,49.55134850808176],[-118.25631795021685,49.54729156370134],[-118.2571807268136,49.54192652005857],[-118.25805328078464,49.53798587834062],[-118.25875170589556,49.5358196379742],[-118.26338841528984,49.53204124878604],[-118.27057467571365,49.52837527833134],[-118.2742585888729,49.52637129430514],[-118.27688864348899,49.52476937893068],[-118.27697837363613,49.524483352674835],[-118.27563759908068,49.51866331802322],[-118.2743862595693,49.51346953604108],[-118.27481096638145,49.50895993769529],[-118.27646168906219,49.505992753430625],[-118.28135527045909,49.50107024158266],[-118.28153269259484,49.499930659948824],[-118.28414490272938,49.49478521402783],[-118.28456108758863,49.49073311277701],[-118.28366541864978,49.486395028052414],[-118.28312540161458,49.48365937523352],[-118.28003672513967,49.47858533969866],[-118.27940097769444,49.47328081888777],[-118.28027769346048,49.471279849820384],[-118.27832634673582,49.468774165123655],[-118.27577781655478,49.46734862691454],[-118.27568269766705,49.465353993930016],[-118.27075462036399,49.46050992287034],[-118.2638910397971,49.453905033022515],[-118.25930971157892,49.448826764650484],[-118.25535781903194,49.447182036513865],[-118.25314485282048,49.44261969496606],[-118.25655461829177,49.440726383542035],[-118.25864759249063,49.436275388348896],[-118.25888495760626,49.43164803489186],[-118.26062364192482,49.42765218314099],[-118.26500553797634,49.42433481660103],[-118.26981296441201,49.423183990654096],[-118.27261223958646,49.42260400657735],[-118.27454264227629,49.42191679073572],[-118.27347758855556,49.4199233014911],[-118.26988942639895,49.41901294143772],[-118.26523834106793,49.417254899404064],[-118.26426729576966,49.41668462400947],[-118.26136458199318,49.414747602496575],[-118.25820115500515,49.410818439159854],[-118.25686571236992,49.40648285585879],[-118.25602405262572,49.403290123784295],[-118.24554417198965,49.403290407800874],[-118.24350789867854,49.400000028229044],[-118.21818200635526,49.35909529081233],[-118.21845790394713,49.35911068544353],[-118.21885064766977,49.35911018961947],[-118.21900059000059,49.35906216917792],[-118.21924761424737,49.358982110871445],[-118.21949463613143,49.35890206093583],[-118.219752736978,49.35883836380188],[-118.22002701920967,49.35881204724743],[-118.22029717487862,49.35883070743754],[-118.22056324262903,49.358883863474595],[-118.2208328467567,49.358916053275244],[-118.22110524475,49.35894193475816],[-118.22138019969485,49.35896291216845],[-118.22165452886266,49.35897734347832],[-118.22192801208828,49.35899679188586],[-118.22240321171365,49.35904071036363],[-118.22240332164236,49.35128432955952],[-118.22266997858691,49.351231150007656],[-118.22289991464777,49.35114957185825],[-118.22298982705071,49.350975275631],[-118.22310889212193,49.35081270708841],[-118.22323935162409,49.350654355805155],[-118.22337308734018,49.35049708280239],[-118.22350686737725,49.35033954126203],[-118.22363404860434,49.3501801019749],[-118.22374636977715,49.35001647577721],[-118.22384553965948,49.3498487860228],[-118.22393981659849,49.34967933980656],[-118.22404069368376,49.34951177309815],[-118.22414655419314,49.349345416958],[-118.22425744481234,49.34917999409163],[-118.22437640736028,49.349017978280116],[-118.22451483521337,49.348863595750245],[-118.22468569158147,49.34872201886328],[-118.22486457135201,49.348584135077076],[-118.2250450184692,49.34844720610269],[-118.2252648460126,49.34834340186894],[-118.22551374597825,49.34826205591459],[-118.22575137879642,49.348165465484946],[-118.225973477154,49.348058428833724],[-118.22614200566109,49.34792035769765],[-118.22628370133084,49.34776705104717],[-118.22641276287267,49.347606613080686],[-118.22653702637106,49.34744385519509],[-118.22666447252188,49.34728273007288],[-118.22680464282291,49.347128190197346],[-118.22696708473956,49.34698515222545],[-118.22715820740459,49.34685663147946],[-118.227369984924,49.346738943535996],[-118.22758774869756,49.34662677504105],[-118.22780817512465,49.346519324897294],[-118.22804237717627,49.346422482686435],[-118.22827320791552,49.34632511618831],[-118.22849063762469,49.34621490468103],[-118.22867429199805,49.346079342669],[-118.22880282383991,49.34592196945916],[-118.22890704394626,49.34575492996847],[-118.2290129717945,49.34558801356562],[-118.22912374264689,49.345423139352285],[-118.22923778807638,49.34525935223561],[-118.22935676983603,49.345097052715005],[-118.22948386984297,49.3449378825883],[-118.22963413284762,49.34478491863916],[-118.22975444389913,49.34462497795448],[-118.22977019612472,49.3444492848058],[-118.22965523788871,49.344289921020724],[-118.22961973564882,49.344110540139795],[-118.22967677229877,49.34393613149959],[-118.22978592179591,49.343770578411345],[-118.22989678044186,49.34360513944357],[-118.22998086693185,49.343434383570354],[-118.23003818303906,49.34325830190535],[-118.23008709826732,49.343080763295596],[-118.23013762813902,49.34290390240074],[-118.23018136924372,49.34272628024703],[-118.23021656959627,49.34254803302717],[-118.23024498285409,49.342369015618864],[-118.23027367903256,49.342188316548835],[-118.23029905163285,49.34200681642973],[-118.23020701264632,49.34184485930666],[-118.23002869006356,49.34170242658035],[-118.22983971073143,49.341571944769065],[-118.22963935128193,49.34144744075971],[-118.22943292652292,49.341328157130555],[-118.22921636154037,49.341217756234],[-118.22902179002746,49.34108970291222],[-118.22884623238527,49.34095142337651],[-118.22868779195288,49.340803912565896],[-118.22853494894811,49.34065397151132],[-118.22837257572141,49.34050929067785],[-118.22818938911762,49.34037526663412],[-118.2279947757748,49.340247497534556],[-118.22780438152684,49.340115215975956],[-118.22761422338105,49.339981538681855],[-118.22740288726695,49.339870949119074],[-118.22715090363961,49.33980664953573],[-118.22687523313256,49.339770063722895],[-118.22660548792847,49.339729097378935],[-118.22633716820238,49.3396899352352],[-118.22606549373647,49.33966042569143],[-118.22579405468468,49.33962952009306],[-118.22555002481111,49.33954881531399],[-118.2253153710165,49.339453513454906],[-118.22508498312047,49.33935342180456],[-118.22486857788009,49.339242180021905],[-118.22465013689788,49.339132764427404],[-118.22442349856584,49.339030959035405],[-118.22418870804032,49.338936495457816],[-118.22395401342425,49.33884146784284],[-118.22375306966988,49.33872058395931],[-118.22356819527917,49.33858642841674],[-118.22338711520794,49.33845028300425],[-118.22320973448605,49.33831271125384],[-118.22304188464743,49.3381698881106],[-118.2228983632689,49.33801608279393],[-118.2227416600013,49.337868685954376],[-118.22255466016888,49.33773691863012],[-118.22236775486142,49.33760459638729],[-118.22218663391514,49.33746873499448],[-118.22201670674936,49.33732801396282],[-118.22175646311652,49.3372820616696],[-118.22148096421006,49.3372548162067],[-118.22120447811399,49.33723342878928],[-118.22092867361874,49.33722851297814],[-118.22065269415167,49.337234891690244],[-118.22037804581774,49.337243629226414],[-118.22010287867374,49.33725544302056],[-118.21982871233661,49.33727157452437],[-118.2195554999835,49.33729230102853],[-118.21928333654023,49.33731705902857],[-118.2190105122664,49.33734573408716],[-118.21874534566068,49.33739051567078],[-118.2184771860135,49.33743253636955],[-118.21820554989108,49.33746440973717],[-118.2179316297932,49.33748931821008],[-118.2176551762475,49.337498488932106],[-118.21740270016302,49.33743724335345],[-118.21723169190508,49.33729275987497],[-118.21718704168343,49.33711667368802],[-118.21718836021253,49.33693456548962],[-118.21720481664536,49.33675496336255],[-118.21723161525023,49.33657554712494],[-118.21725675379277,49.336395721187756],[-118.21727856942638,49.33621509379686],[-118.21730375435057,49.336034990468775],[-118.21734070575087,49.335856878020785],[-118.21739607035971,49.33568235029158],[-118.21748161457253,49.33551339817558],[-118.21759406218997,49.33534894293105],[-118.21771818352323,49.33518702404702],[-118.21784235225248,49.3350248187529],[-118.2179581667868,49.334860887109826],[-118.21808076599952,49.33469772620462],[-118.2181865190491,49.33453193572839],[-118.21824501146202,49.33435933561872],[-118.21825463070819,49.33417923903205],[-118.21825072734242,49.33399731438374],[-118.21825688216992,49.33381725712438],[-118.21826987055474,49.333637684478646],[-118.21828632011712,49.333458090246175],[-118.21830447907121,49.33327861041959],[-118.21832263788467,49.33309913054174],[-118.21833738056148,49.332919403811104],[-118.21835036687466,49.332739839859194],[-118.21836164661042,49.332560143512424],[-118.21837121677245,49.33238033266045],[-118.21838249633987,49.332200636214694],[-118.21840245589144,49.3320207248638],[-118.21837374494459,49.33184238517451],[-118.21833288854532,49.33166430865383],[-118.21829023252519,49.33148665429468],[-118.21824766882209,49.33130845424524],[-118.21817128996844,49.33113600441341],[-118.21808973964987,49.33096347049835],[-118.21800268916685,49.330792802431866],[-118.21790653574371,49.330624862528644],[-118.2177814519127,49.33046446509881],[-118.217643567596,49.33030822157609],[-118.2175073438424,49.33015238748581],[-118.21736941311724,49.329996429770866],[-118.21723138830498,49.32984103535965],[-118.21709160978854,49.32968579460059],[-118.21695358834113,49.3295303908178],[-118.21681385844776,49.32937487234185],[-118.21667764022743,49.32921903698867],[-118.2165414711884,49.32906291519714],[-118.21648639591469,49.32888720406099],[-118.21646324162568,49.328706719859085],[-118.21643112453181,49.328528131907184],[-118.21636528601866,49.328354748012],[-118.21627834180929,49.32818351437467],[-118.21618063251049,49.328014616988746],[-118.21606675275032,49.32784935817485],[-118.21594158925888,49.32768951252259],[-118.21580338755638,49.32753523384084],[-118.2156525263331,49.32738427696165],[-118.21549593032698,49.327236581049455],[-118.21533392840352,49.327090196135096],[-118.21517003117354,49.326944805582514],[-118.21500589813553,49.3268008190688],[-118.21482863515041,49.32666294494545],[-118.21464573101365,49.3265277771012],[-118.21446064800372,49.32639528514966],[-118.2142700656674,49.326264658632425],[-118.21405981514091,49.32614816405896],[-118.21379495334192,49.32610949422981],[-118.21351589541398,49.32610374896929],[-118.21323929970299,49.32609365412503],[-118.21297453395947,49.3260544187675],[-118.21272349348703,49.325985057327955],[-118.21247874682096,49.32589888477569],[-118.21224049139028,49.32580497827194],[-118.21201167037142,49.32570638454528],[-118.21180683338495,49.32558858334405],[-118.21160043159195,49.325469817425905],[-118.21139028494905,49.325352762952825],[-118.21115696897012,49.325260342605006],[-118.21088917016507,49.32521862783681],[-118.2106137332434,49.32522218136416],[-118.21033801101028,49.32522742473103],[-118.21006314962607,49.325237808881354],[-118.20979389972536,49.32526615370486],[-118.20953317113306,49.32532594272248],[-118.2092653084309,49.3253665459733],[-118.20899616176806,49.32540451156401],[-118.20872440242006,49.32543747082739],[-118.20848380343064,49.325521357589416],[-118.20824230827208,49.32561054797031],[-118.20799216024986,49.325679310948864],[-118.2077162568616,49.325695843027454],[-118.20744262720572,49.325709143744845],[-118.20716485587218,49.325706019100934],[-118.20689446383706,49.32567966131134],[-118.20663438538473,49.3256229309957],[-118.20637799807315,49.325554579376586],[-118.20611867755707,49.325493366563066],[-118.20584473868976,49.32547778601326],[-118.20557344301092,49.32544655173052],[-118.20530346924413,49.32540749024905],[-118.20504083774509,49.325355659329254],[-118.2047950226868,49.32527590046286],[-118.20455195384858,49.32519011971975],[-118.20432950328755,49.32508460855797],[-118.20410937620264,49.32497558010508],[-118.20390873315104,49.324853538776416],[-118.20374691664144,49.32470630413541],[-118.20360326532627,49.32455386547551],[-118.20366436577108,49.32438654480238],[-118.20373965806941,49.32411471870387],[-118.2000001512669,49.32463047829351],[-118.18933341097788,49.326100465794624],[-118.1762251979872,49.30000001717016],[-118.175737230922,49.29902540796294],[-118.17569194145977,49.2989358058856],[-118.16540456391843,49.27822338207022],[-118.14579657094164,49.26851215368962],[-118.14463921716062,49.26990706750609],[-118.14254308072411,49.272080368194665],[-118.13913726102034,49.27293710374553],[-118.13668944121684,49.27059839586214],[-118.13529606583178,49.268720752590255],[-118.13432327418326,49.26672610785234],[-118.13048111901557,49.26381881491182],[-118.12720281253264,49.26311783388512],[-118.12488358304651,49.262624816828314],[-118.12304676832144,49.26262412416746],[-118.11597527314764,49.26246184366676],[-118.11124738675049,49.25989715969977],[-118.10819071346855,49.257900651371514],[-118.10329386004193,49.25430881365661],[-118.09996718789043,49.250663706004836],[-118.09813799191485,49.249408803014155],[-118.09166366183841,49.24633084407623],[-118.0872129983995,49.24393749527125],[-118.08686301290854,49.2434815321999],[-118.08065229357041,49.23669584658453],[-118.07532015565108,49.2282563991896],[-118.0745341518095,49.22688258044863],[-118.07182312704211,49.22152078546667],[-118.06910757640998,49.21296860045687],[-118.0676304169782,49.20766052421663],[-118.06761809584974,49.2012123531235],[-118.06857318541172,49.19499439033517],[-118.06979829988651,49.19025800851403],[-118.07345442842538,49.18557720477841],[-118.07641517164886,49.182377395652054],[-118.07657968727808,49.17924000613398],[-118.0716079653498,49.17679061946379],[-118.06899974356207,49.176563333255],[-118.06786338474667,49.17667775832709],[-118.05992554876134,49.17536971065432],[-118.05242510410318,49.17400539681164],[-118.04823213025516,49.17200819882502],[-118.04657553386242,49.16921122191984],[-118.04570548776478,49.165848621761526],[-118.04465645787158,49.16128152695739],[-118.0432622226782,49.15888631012302],[-118.03924907547832,49.15649400896644],[-118.03602200200135,49.15369987811991],[-118.03819724724801,49.15050430014628],[-118.04682874430452,49.14878787059066],[-118.05528467304035,49.14752855422009],[-118.0618220979141,49.147411464846805],[-118.05676372333679,49.14484811153405],[-118.05266078471439,49.14153662261376],[-118.0526614118056,49.14097050502921],[-118.05083005663121,49.135261083315086],[-118.05055850622539,49.127445854500635],[-118.0492561750047,49.122028848790045],[-118.04854851482682,49.118606404645746],[-118.04907764982443,49.11592173122405],[-118.05194765222083,49.1126732719736],[-118.05167433444784,49.1085636699734],[-118.05098537101803,49.107362044801825],[-118.05159003897374,49.104395598951335],[-118.05358676737148,49.10085581062107],[-118.0522843546188,49.096807384049285],[-118.05228082030861,49.09578342551973],[-118.05080017409912,49.09213417434792],[-118.05227239427208,49.08916326916844],[-118.05322660115326,49.08608227731833],[-118.0511264012623,49.08163306066189],[-118.0486885160796,49.07706918959187],[-118.04790788280397,49.074558606720245],[-118.04825168661422,49.07239086184056],[-118.04982320754542,49.06947996533284],[-118.0508548699699,49.06690918811944],[-118.05077197929157,49.06337624639228],[-118.05138413792942,49.06229094962739],[-118.05076740196169,49.0585824416839],[-118.05155027849823,49.055615457815314],[-118.05389484924552,49.05276276932823],[-118.05310716655296,49.04916892897302],[-118.05066715938032,49.0463132642754],[-118.04831444814003,49.04294927806781],[-118.04717255740823,49.0382157059934],[-118.04716910531981,49.03462195705536],[-118.05100101936343,49.03102454721339],[-118.05508635931423,49.02891557769295],[-118.0568990196453,49.025145302463685],[-118.05611078811123,49.02252072687416],[-118.05506983352878,49.02041048308151],[-118.05507133741867,49.016301740808494],[-118.05801208658909,49.01276105440183],[-118.05957473874813,49.00996679300916],[-118.0598359047411,49.006426591699324],[-118.06000611445265,49.00317747837421],[-118.06408497957354,48.998081252488724],[-117.9986569285472,48.99990734331106],[-117.62727633132124,48.999890564756086],[-117.07487204636551,48.99986781483132],[-116.97481567321815,48.99986059582969],[-116.49633073928747,48.99978469188819],[-116.26295387040425,48.99991480562652],[-116.17432049715948,48.99984466993351],[-115.99720892073319,48.99979504571306],[-115.51682995905334,48.99971466212451],[-115.17530987731412,48.99965904969159],[-114.96202503304163,48.99969806582189],[-114.72194729441438,48.99955992583671],[-114.06922444892692,48.999586687200036],[-114.06219678666805,48.99956484583952],[-114.06396153388391,49.0020080528882],[-114.06435552814848,49.005149237662515],[-114.06369886257556,49.008283768980384],[-114.0622701780023,49.0112434175871],[-114.05742922882399,49.01486615789367],[-114.05292878284673,49.01872251030689],[-114.05062167856047,49.022075427629765],[-114.04961204961704,49.025606073843605],[-114.05130114223147,49.02904005333004],[-114.05419570997643,49.03317157543865],[-114.05457158268224,49.03745339923735],[-114.05587841934506,49.04328065826996],[-114.0586184681848,49.04672780581137],[-114.06325218707086,49.05143033313636],[-114.06869992992004,49.05437993021063],[-114.07283422155143,49.057425979036566],[-114.07521823052049,49.06080996239348],[-114.07906164996128,49.060259616532136],[-114.08334546317576,49.05982866005352],[-114.09341302272337,49.062342352334554],[-114.098259658626,49.06505302732824],[-114.10223363675605,49.06776263221087],[-114.10646126636647,49.071211731617524],[-114.11240443657415,49.075755206671026],[-114.1195117443275,49.078365368487205],[-114.12729906126091,49.0838883612203],[-114.13369939924418,49.087637419419686],[-114.14041027209646,49.09412247238436],[-114.14331608736055,49.098307873466304],[-114.14620687059993,49.10368801172735],[-114.14414115917914,49.10881285457648],[-114.14407352738603,49.113666359952695],[-114.14494639391512,49.119666335789674],[-114.14874571164597,49.12254232815193],[-114.15305314003214,49.12684626559581],[-114.15631747851548,49.131431185285656],[-114.1583589618431,49.13526619601823],[-114.158050378154,49.138522402073946],[-114.15444241326617,49.14078572678789],[-114.14916995935904,49.14304092739018],[-114.1434648817903,49.14551827755275],[-114.14613728597107,49.14776209511451],[-114.14908597819073,49.14914813119675],[-114.15255089964216,49.15133597535042],[-114.15522807840122,49.15334777024342],[-114.1585973206465,49.15650492303989],[-114.16187798170789,49.15898111818697],[-114.16645375624465,49.1632308141481],[-114.17277395273832,49.166802897890236],[-114.18672897104128,49.16899195805036],[-114.20118237364218,49.17249320074763],[-114.20725081883594,49.17543367972078],[-114.20921643433321,49.1790992543867],[-114.2146993272986,49.187864360338885],[-114.22132820266488,49.18949303932758],[-114.22614252165052,49.18843586129871],[-114.23097798908714,49.18571745996646],[-114.23666061121786,49.18517483473809],[-114.23971549704824,49.186162163773346],[-114.24277679529077,49.185600297139004],[-114.2452497456955,49.18298742332619],[-114.24923104028566,49.179525201088104],[-114.25430086757757,49.17909283364544],[-114.260492542429,49.180090932235814],[-114.26362123040909,49.18078851974135],[-114.26990405454382,49.18104771112839],[-114.2761185668791,49.180046495581074],[-114.28239494050268,49.18218758623218],[-114.28400065773988,49.18641730187],[-114.28545535926551,49.189110950400355],[-114.28928841311252,49.190101662418925],[-114.29278058631252,49.19062995651751],[-114.29878691475014,49.19225543812719],[-114.303759925418,49.19324554141565],[-114.30732951382014,49.19434583303414],[-114.30905494962529,49.196580977274266],[-114.31086252858319,49.19898588302944],[-114.3150541598652,49.20026568174145],[-114.3179343491709,49.19970355274713],[-114.32266146288447,49.19909118443438],[-114.32825678815604,49.19894530819028],[-114.33298483872608,49.19810849736025],[-114.33605675168366,49.19629342984374],[-114.3407103922215,49.1945408915215],[-114.3458596665505,49.19456218127111],[-114.34892234602366,49.19514262057372],[-114.35100269428096,49.19669591366345],[-114.3534215642882,49.199218982690866],[-114.35541183041842,49.20162453635223],[-114.36071288814428,49.203412201574],[-114.364557981419,49.20342840904176],[-114.37112086361047,49.20374258533289],[-114.3804512277488,49.20531472262849],[-114.38759741009927,49.207229100246806],[-114.39499031825082,49.21136494914213],[-114.39690016795868,49.21371334070594],[-114.3957413783877,49.21605070918197],[-114.3926585261502,49.21763919044478],[-114.39011222532166,49.21974487449321],[-114.39191866024755,49.22283471769019],[-114.39767132995951,49.22400203103651],[-114.39932530197709,49.225602954261404],[-114.39834662524933,49.22788688934104],[-114.39718076092137,49.23102342182884],[-114.39768762719204,49.23348052301573],[-114.3977432257073,49.23668001635984],[-114.39719183584204,49.23936379037876],[-114.39505503608166,49.2438123622494],[-114.39181168447935,49.244596145775574],[-114.38261450205675,49.245990520253365],[-114.3750758722235,49.248139194080075],[-114.37819188388158,49.25094608727723],[-114.38062398927754,49.25249660306134],[-114.38898049637388,49.25675418625684],[-114.3934441483626,49.2580846328066],[-114.39797796639266,49.25924801075099],[-114.40793342020682,49.26053803869297],[-114.41597884486248,49.260906538026596],[-114.42595584374689,49.26122797185257],[-114.43013968367208,49.26306691284792],[-114.43634546175714,49.263947510030896],[-114.44262791110296,49.265852451065186],[-114.44407391515253,49.27122758682679],[-114.44393775674678,49.276255115619094],[-114.4439985875106,49.279169562368786],[-114.44429756058031,49.28545593887525],[-114.4440990453839,49.28962382712083],[-114.44564744026756,49.29265656108506],[-114.44746795293808,49.294773454470594],[-114.45371174109545,49.302336809901064],[-114.45867967490895,49.30406529121786],[-114.4628684950697,49.30584810443441],[-114.46802373853174,49.3085527184007],[-114.47236996258204,49.311875605693764],[-114.47789457163238,49.31161208537382],[-114.48321810310242,49.31259487533156],[-114.48426283703171,49.31437150959275],[-114.48538198704604,49.31757421109643],[-114.48604854540584,49.32191661916259],[-114.48287316782384,49.324249692640336],[-114.47926999335904,49.32589891649174],[-114.47593536382827,49.3270873057272],[-114.47476941857472,49.33045759061767],[-114.47570079458083,49.334740772520085],[-114.47690928807253,49.33697615639576],[-114.4790687138455,49.34080871264216],[-114.48051712192124,49.34475514857833],[-114.48286839137181,49.34704759994574],[-114.48678295612342,49.350887103043604],[-114.49421535622096,49.353482960936745],[-114.49858863435131,49.35560827719091],[-114.50183686481873,49.35510398048941],[-114.51006949370021,49.35495306745481],[-114.51689539048596,49.356748138568236],[-114.51949488824927,49.359951691047115],[-114.52043326936223,49.36355636726724],[-114.5222528164098,49.36681534090382],[-114.52512471094138,49.3709960145889],[-114.52474575067828,49.37379402981447],[-114.52517727476055,49.37619431434127],[-114.52937365247074,49.37798046714815],[-114.53533458171502,49.378509224230044],[-114.5418361725784,49.37692881145384],[-114.54674207585346,49.37665647842222],[-114.55489376563072,49.3766737595286],[-114.5612786040471,49.37868907465054],[-114.56504254427433,49.38104069229696],[-114.56896616896763,49.38499148445407],[-114.57052229349092,49.38842843299834],[-114.57384315592593,49.390660030739824],[-114.58031947633597,49.39147739583221],[-114.58347511170268,49.39308649829769],[-114.58538130955307,49.39674716874743],[-114.58587861643386,49.40068986640712],[-114.58823159769216,49.40429475024814],[-114.58979258466407,49.40732766449601],[-114.58977662070346,49.410755909791284],[-114.59072182964148,49.41413412443696],[-114.59366042395007,49.420997734685756],[-114.59495539853319,49.42448643560298],[-114.59475721034214,49.428255858004356],[-114.59466079491102,49.430999143094176],[-114.59508437674486,49.432998857473244],[-114.59672799378228,49.43654664381534],[-114.59820325946603,49.44032319294119],[-114.59616472683274,49.44363462000921],[-114.5942981672971,49.445973532957964],[-114.59428554796567,49.44899683024922],[-114.59752109996556,49.45237780025958],[-114.59530911189766,49.45391553895098],[-114.59300929802559,49.456141821495535],[-114.59185573766621,49.45808235304019],[-114.5922732855384,49.461340406551436],[-114.59366802908373,49.46460067968508],[-114.5916293274574,49.46762661539892],[-114.58941365444326,49.46973588401736],[-114.5891394614571,49.471733242934405],[-114.5897363176986,49.4752244701717],[-114.58969140588604,49.481795752726434],[-114.5907096708323,49.48808206945487],[-114.59086470586428,49.49065584852323],[-114.58971052601076,49.4926509844988],[-114.58890096677803,49.49539363741572],[-114.58967158094764,49.49785264242765],[-114.58903899218039,49.50162295007374],[-114.58655042910212,49.504875148989335],[-114.58372906745886,49.507610638403484],[-114.57964796594183,49.513486974882746],[-114.57793813328378,49.517479076824955],[-114.57669153546303,49.52062306473871],[-114.57254872252437,49.52186799823083],[-114.56866828633358,49.5236288800655],[-114.5670609985181,49.526310099922696],[-114.56687709534532,49.5293395468895],[-114.56614385370122,49.533279126915815],[-114.56611160040542,49.53665278716184],[-114.56644487910084,49.53962771844387],[-114.56808863620459,49.54357287283683],[-114.56807373429177,49.546374081453465],[-114.56795857367183,49.54974398953834],[-114.56721821378669,49.554885864721044],[-114.57097596867385,49.55838345101991],[-114.5776499209777,49.56080001038411],[-114.58036208168595,49.56394931886514],[-114.58423432037313,49.5643618138781],[-114.58767401408684,49.561854575091296],[-114.59235119912591,49.560611810994686],[-114.5985270329164,49.55913895949132],[-114.60257242881954,49.5582943479368],[-114.60594088895448,49.55561734894026],[-114.60745271726418,49.55230312195532],[-114.6079133646503,49.54938810941469],[-114.6135552765259,49.547971484548576],[-114.61679489207515,49.54900872292941],[-114.62172741952044,49.54987831668163],[-114.62516011817884,49.548397546107985],[-114.62755823537589,49.546237895611945],[-114.63205481509202,49.544527488886864],[-114.63786060516841,49.54351434177812],[-114.64278354961782,49.543576050813115],[-114.6477124053187,49.54513497714936],[-114.65070036728774,49.546680023590675],[-114.65340378774039,49.549203118094674],[-114.65727090352122,49.551040978893674],[-114.66184014397436,49.552192768818465],[-114.66632730366351,49.55294272715263],[-114.67229649058802,49.55364096680924],[-114.67493610508109,49.55518501772062],[-114.68004226516804,49.55462344174218],[-114.68418667270808,49.55274645335496],[-114.68798352043656,49.550237144209795],[-114.69229653789016,49.547731787714575],[-114.69501575696567,49.55087829138175],[-114.69728863038102,49.55351144966054],[-114.70097053178017,49.55780366714882],[-114.70526779178296,49.56221310793046],[-114.70762548684073,49.56501706980489],[-114.71088015860343,49.567023656765144],[-114.71641357860061,49.57028795167845],[-114.71930696940673,49.57143636948443],[-114.71903531634725,49.57435088132961],[-114.72157574295267,49.57670365722678],[-114.72703091520651,49.57790957933809],[-114.73000715730022,49.5802569638763],[-114.7314995876584,49.5828324317208],[-114.73157361821686,49.588207582670925],[-114.73216450486794,49.5944389849064],[-114.73522292592364,49.59901304355431],[-114.7400628389843,49.6007379295399],[-114.74163790392494,49.60536865993883],[-114.7456790255966,49.60886036331156],[-114.74654211785085,49.612177654624254],[-114.74432610011286,49.61417799776381],[-114.74229248722023,49.61691475460496],[-114.73840663678165,49.62068473339923],[-114.73177932048812,49.62261688930226],[-114.72473116908868,49.62392451305952],[-114.71988354089859,49.624376957151114],[-114.7160029377433,49.625337982183794],[-114.71343722151342,49.62647736128869],[-114.71051374568049,49.630421816179364],[-114.70143174642482,49.63269014824668],[-114.69859379106387,49.63588714543522],[-114.69532810074539,49.63662265240455],[-114.69313474520108,49.63438801695512],[-114.68732612381618,49.632208463961454],[-114.68405648809149,49.634542227097675],[-114.67963413656352,49.63756597093496],[-114.67503153825658,49.63990157419785],[-114.66919307177204,49.643203561873506],[-114.66611269307049,49.64251129286468],[-114.66383826065208,49.63953510926188],[-114.65969362073243,49.63900878600006],[-114.65827140150951,49.64095166697853],[-114.65737720801283,49.643984167918966],[-114.65595125762883,49.64723757045192],[-114.65441910656388,49.652889812879025],[-114.65269632419029,49.66026457757199],[-114.6534712485344,49.66357541613002],[-114.65601061218906,49.66656010533592],[-114.65917287136482,49.66856456079543],[-114.66303182407746,49.67199897129735],[-114.66302344142979,49.674401710774355],[-114.66098486408347,49.67616779360187],[-114.66193942239842,49.679944258398635],[-114.66314810486253,49.683376624864586],[-114.66313960217107,49.685892634419616],[-114.66418383084718,49.688238307828115],[-114.66557880278795,49.69069759429684],[-114.66830569984506,49.69304988516056],[-114.67031774783047,49.69585103781313],[-114.66605325369588,49.70007389853054],[-114.66065382560818,49.703720981613685],[-114.65250329156656,49.70741861055448],[-114.64533841158452,49.709916369327615],[-114.64055650230507,49.712764244386186],[-114.63911482499103,49.71556025406814],[-114.63283096742022,49.71828884598896],[-114.63105100519196,49.72119958196586],[-114.62988981129315,49.72376874935191],[-114.62916633715437,49.72565331060854],[-114.62915420119917,49.72856986999087],[-114.62834527035544,49.73073985009334],[-114.62691804186271,49.73291033172524],[-114.62813105989915,49.7351959981791],[-114.63120819656405,49.73817458993737],[-114.63410784272511,49.73984009678149],[-114.63683688611646,49.74185201980338],[-114.63778041519123,49.745051001122754],[-114.63741802678817,49.74768410652363],[-114.63863193227246,49.74968831548326],[-114.6414462854892,49.75209331274787],[-114.64433669537033,49.75667219098621],[-114.64661797602392,49.75862532068415],[-114.65146832093063,49.761718252990605],[-114.65321223847552,49.76475704052192],[-114.64948358284943,49.76657436894169],[-114.646825040482,49.76759503832785],[-114.6444276040432,49.76976530677991],[-114.64158078887559,49.772157731621796],[-114.63802661177122,49.775523018789514],[-114.63560919295014,49.77928878403964],[-114.63400013957815,49.781225591930145],[-114.63141744209109,49.78384996386514],[-114.63043941537225,49.78607388244183],[-114.63306238779431,49.790714058909025],[-114.63435895014302,49.79351650803214],[-114.6358441433835,49.79837820562144],[-114.63660011130291,49.80261278481219],[-114.63788398043475,49.80895693942755],[-114.63838759001976,49.813020338367835],[-114.64066118467946,49.817659739489564],[-114.64055506741764,49.819603793746616],[-114.63725161743726,49.82302055326447],[-114.63598808501476,49.82604580360633],[-114.63640898198284,49.829820889233275],[-114.63860382408741,49.8333707214998],[-114.6407035291741,49.836120236867124],[-114.64413677083505,49.83978757187431],[-114.64632214467437,49.84219686161686],[-114.64755068939508,49.84505478932564],[-114.64913355958689,49.84711569096877],[-114.65282286123012,49.850384043096454],[-114.65510678999864,49.85296615024192],[-114.65607040197692,49.8551966789695],[-114.65674890223157,49.858455716002425],[-114.66008066168034,49.863724335610186],[-114.66335778412216,49.86453405590361],[-114.66581123495948,49.86785246098174],[-114.66666905303777,49.87214560705465],[-114.66752972567245,49.876089466318774],[-114.66909359988672,49.880152206105244],[-114.67129909856482,49.88198538777265],[-114.6743881878074,49.884513510192335],[-114.67915228200357,49.88806770991799],[-114.68126059571546,49.889615516978886],[-114.68187308427721,49.892018375328526],[-114.68432598052813,49.896197153034365],[-114.68492009114806,49.90036950393603],[-114.684460475034,49.902945805011946],[-114.68373357990093,49.90591492137327],[-114.68306768428813,49.912084910774254],[-114.68303936991435,49.916717171517796],[-114.68381897148325,49.91992110608439],[-114.68520036278409,49.9245566261375],[-114.6852566903488,49.92964158218051],[-114.68488040280816,49.9324479104775],[-114.68495575899911,49.935987690321774],[-114.68848244406337,49.939888246116375],[-114.69059196880511,49.942233047188616],[-114.68809148509489,49.94382741523247],[-114.6839924276601,49.9470187996904],[-114.6823753067431,49.94987640034749],[-114.68137975011912,49.952504962311416],[-114.67922301727278,49.95678573608282],[-114.67768585243392,49.96118389870605],[-114.6766881776547,49.96460908620557],[-114.67374752603565,49.966262743849015],[-114.66878202591046,49.966133919417274],[-114.66123650059353,49.96548328421527],[-114.65821584205338,49.965988109455566],[-114.6518984244562,49.968436197612895],[-114.65028166969941,49.970773870309976],[-114.64822090350633,49.97465619241561],[-114.64685606239811,49.977564285119925],[-114.64746616719644,49.980368171275146],[-114.64806108166714,49.983739670158904],[-114.64830077240879,49.98740140041283],[-114.64721833435277,49.98991430085658],[-114.64797526777879,49.99517420599087],[-114.65018610045247,49.99655450310688],[-114.6536431044905,49.9971914562258],[-114.66195735463856,49.999700249494076],[-114.66098694457497,50.00244457614901],[-114.65939644557179,50.00495640767986],[-114.65701148245934,50.00843790577465],[-114.65435752762447,50.011694422963444],[-114.65311916861141,50.01415181369716],[-114.65260148801319,50.017003584708156],[-114.65295147414038,50.017861948781544],[-114.65252122889693,50.01963283344111],[-114.65217679889226,50.021455912866266],[-114.65218094530857,50.024368286584334],[-114.65228775154569,50.02636471580042],[-114.65263592827863,50.02790646351705],[-114.65408195828873,50.03104522608875],[-114.65559115479914,50.032411847853794],[-114.65604223324014,50.03281169394923],[-114.65782128545334,50.03394853290216],[-114.65951385091392,50.03509226845173],[-114.65969253964178,50.036916250429364],[-114.6588983262201,50.03771466736128],[-114.65801639954411,50.03897521972462],[-114.65802867170108,50.03999701083695],[-114.65918507934683,50.04074228742651],[-114.6602444926281,50.041423380988434],[-114.66292751003336,50.04284820921527],[-114.66443853162806,50.04370257330546],[-114.66594748279061,50.04507291693292],[-114.66775020523048,50.04786647049442],[-114.66712576726383,50.04849533632744],[-114.66606313528285,50.04906669406355],[-114.66304595733752,50.049986868094614],[-114.66063854462465,50.05123847290941],[-114.65949899008478,50.05329921146698],[-114.65906538008686,50.056322963147565],[-114.6596076815393,50.05951650923464],[-114.66104138046725,50.0623718904748],[-114.66380839490812,50.0647636777783],[-114.6653213081623,50.065049563848504],[-114.6686069095891,50.064360323419535],[-114.6729673921913,50.06378491589116],[-114.67429591644765,50.064411209597594],[-114.67573708706375,50.06554772992826],[-114.67875891397334,50.0674908561344],[-114.68036972542676,50.06845936824849],[-114.68518579423275,50.072391953895526],[-114.68599964350615,50.07507431640821],[-114.6863628692672,50.07729619004109],[-114.68886141201382,50.08009003254264],[-114.68914246010395,50.08071956829788],[-114.69048097250551,50.083342976082186],[-114.69237017313382,50.08648095774164],[-114.69468767294651,50.08853134134665],[-114.69753128133505,50.08944223559779],[-114.69825225271477,50.08984184699126],[-114.70004348871467,50.09331771043868],[-114.70317804581326,50.097479991063615],[-114.70666959659391,50.1006137691717],[-114.70925690156572,50.10226991994009],[-114.7115766750961,50.10375094262668],[-114.71657104295758,50.10659808803504],[-114.71898905419427,50.108934059931066],[-114.72061215139915,50.11224166348383],[-114.7217726448932,50.112867979400626],[-114.72552174112234,50.115943792644565],[-114.72802433234378,50.11834165851622],[-114.72752083816235,50.12313482303626],[-114.725830090645,50.12519593343772],[-114.72539003700075,50.12553970943887],[-114.72075318300104,50.14283853125455],[-114.72076368065196,50.14455287914776],[-114.72860300848583,50.144996548621435],[-114.72372992036607,50.150315719230505],[-114.7216951434406,50.154257125815256],[-114.72180147071954,50.15796826210981],[-114.72351003904345,50.16235847270776],[-114.72729766779462,50.1694915333341],[-114.72587660269244,50.17165788389118],[-114.72340073019461,50.17543204869566],[-114.72216244287809,50.1773765495845],[-114.71958565570712,50.18183440861308],[-114.71872524403179,50.18679986757432],[-114.72006779140544,50.189652330946494],[-114.72302725604075,50.19301681260467],[-114.72615802824146,50.196038663903316],[-114.72867811558854,50.19980139021847],[-114.72949569654315,50.202657537679826],[-114.7305811823711,50.20722191092115],[-114.73122845595468,50.210702782249605],[-114.7328312632,50.21178380665741],[-114.73910149409758,50.214915393561505],[-114.73750551549806,50.21885541208047],[-114.74046740817033,50.22256285565975],[-114.74414067564265,50.225755031544466],[-114.74540354476844,50.2268360871785],[-114.75211501585738,50.23099669481994],[-114.75676976095639,50.23373270255693],[-114.75733202492789,50.2390407013198],[-114.75975822800271,50.24206134458361],[-114.76235480323326,50.24502655439862],[-114.75841606439431,50.2610167299473],[-114.75780337957679,50.262842508292614],[-114.75522630956182,50.26695551778223],[-114.7521230139315,50.26981871331019],[-114.74802390649329,50.27308193572089],[-114.74749600823186,50.275475024775055],[-114.74975116091757,50.27907081178471],[-114.75040033292704,50.283007987598964],[-114.74951395980644,50.28592460171124],[-114.74784348616622,50.291064049850775],[-114.75055098792545,50.29802419539041],[-114.75350834600928,50.29910401520135],[-114.7618286470553,50.30034548510193],[-114.76522778750254,50.300569752040474],[-114.76906866271838,50.3001645215112],[-114.77541222884896,50.299359501718904],[-114.7773879310507,50.30146836614349],[-114.77758523508432,50.30500495478969],[-114.77742585594666,50.30888783577781],[-114.77725210442169,50.3117465249279],[-114.77825849986314,50.316428349514744],[-114.78114567886205,50.31927638490184],[-114.78571202255375,50.32223733371849],[-114.78750441797831,50.32297791354263],[-114.79046356642799,50.324572516763006],[-114.79396373120036,50.326565239497874],[-114.79487330646542,50.32964758364441],[-114.79290966036291,50.33027577815637],[-114.7891655607271,50.33142453114785],[-114.77898614628022,50.33537820809151],[-114.76721922995063,50.34384817742708],[-114.76330027273168,50.347677276015226],[-114.7628696576982,50.35076159279198],[-114.76440386046342,50.35407199260268],[-114.76656531669423,50.35720932094118],[-114.76998118183825,50.359716078649384],[-114.77355552863533,50.36079420318712],[-114.77892484084724,50.36078723527329],[-114.78197401993427,50.35952496212639],[-114.78250066999529,50.359411539402984],[-114.78473682880218,50.35798368356196],[-114.78804206793708,50.356777564903155],[-114.79071958787516,50.3572857903423],[-114.7999877819976,50.36549650225342],[-114.80313560523369,50.36794506365738],[-114.80832077772499,50.368050333087275],[-114.81343446736304,50.36941290959158],[-114.81202468186102,50.3725536896766],[-114.80953136274032,50.37507055392826],[-114.80829047663481,50.37827458233262],[-114.80847602574212,50.38032779111782],[-114.8103710270494,50.381295372950945],[-114.81215236309677,50.38169115499431],[-114.81582937169605,50.38242432291353],[-114.81799423642013,50.38379569348665],[-114.81899332911428,50.38630124453664],[-114.81907759289206,50.38687737945698],[-114.82070370098472,50.38972534780624],[-114.82232820698408,50.39023747690898],[-114.82554863468033,50.38954755766528],[-114.82965313811412,50.38845322939543],[-114.83270313030319,50.38930456002323],[-114.84319230170293,50.39077242119108],[-114.84866656630707,50.39201546154539],[-114.85565186456768,50.39394308614614],[-114.85746263377116,50.39542713750585],[-114.85873355631693,50.397994861832636],[-114.85982152318228,50.401127422717174],[-114.86019287512777,50.403359983814205],[-114.85725928770215,50.40536001254036],[-114.85646198799978,50.40696237754387],[-114.85727569288171,50.408618821971196],[-114.85792030069656,50.41152901548964],[-114.85812309638807,50.41518481205381],[-114.85787048689204,50.41803534227993],[-114.85787050343191,50.41923913174333],[-114.85788721658015,50.42129299066599],[-114.85853220710754,50.4241451515374],[-114.8624854235274,50.426248480308075],[-114.86852192699074,50.42989468575541],[-114.8708822116418,50.43565912811344],[-114.8725122258837,50.438625453810246],[-114.8729703121094,50.43965145668905],[-114.8740392192339,50.43925178603783],[-114.8782473217021,50.437981641069975],[-114.88433706165404,50.43671210966474],[-114.88720431860683,50.43687889946617],[-114.89567412474509,50.4425707000997],[-114.90477509852269,50.44883121950454],[-114.9108253555245,50.455901182445345],[-114.91363005469651,50.459090535403014],[-114.91823608518764,50.463648712182895],[-114.92212625229028,50.467182882736665],[-114.92493347679657,50.470829095806536],[-114.92793241414846,50.47716296630853],[-114.93247798339837,50.48451725511569],[-114.93535366753581,50.48639330621189],[-114.93860109521687,50.48832533124471],[-114.94249281849002,50.49111661651714],[-114.94492759447887,50.493855907818386],[-114.94547227775932,50.49396228530036],[-114.94637621571063,50.495734469516776],[-114.94765217822287,50.497618982445005],[-114.94828489832453,50.49869826192765],[-114.95270610855245,50.501027645643426],[-114.9555991182392,50.50353451633879],[-114.95595789266638,50.504278744817626],[-114.95814061667319,50.5075243621012],[-114.95897730625548,50.510208191376144],[-114.960783294894,50.512205187824414],[-114.96214847650293,50.51431091437677],[-114.9638715610755,50.51687647490623],[-114.9661578304269,50.52138548655667],[-114.97369642580051,50.531704088264064],[-114.97651392069481,50.53591957399529],[-114.9810287581642,50.53898978835083],[-114.98655216021454,50.54457944217978],[-115.00067531583014,50.55767588578015],[-115.00532488484431,50.56474327249285],[-115.00773181475148,50.57250542128957],[-115.01031086268989,50.57997817086531],[-115.01329895208798,50.582769836696194],[-115.01619426595148,50.58384722677181],[-115.01879906842898,50.58383858028176],[-115.02265900990903,50.58302887491788],[-115.02586947306985,50.58096278976249],[-115.0269377974505,50.57969934452008],[-115.03052022275101,50.57786333356086],[-115.03500688320285,50.57653586366563],[-115.04048308508823,50.575602537730155],[-115.04461727002902,50.575359822030926],[-115.04747351375721,50.57420655630115],[-115.04971128656362,50.57242646566344],[-115.06304731967425,50.5859196690511],[-115.06427253119139,50.5859966589974],[-115.06853035847412,50.58490092255092],[-115.07053432696229,50.58518447661588],[-115.07308561041886,50.58387424451803],[-115.07867502197162,50.581131888840886],[-115.08763536114891,50.57775531833223],[-115.09082797739387,50.57709283580118],[-115.09419536557668,50.576885049430345],[-115.09767103056848,50.575999186909506],[-115.09970144106553,50.57541150376616],[-115.10366283639297,50.574935935794564],[-115.10726927703718,50.57386382815934],[-115.11118401049256,50.572288484229816],[-115.11356283507286,50.57161845991334],[-115.11545516688402,50.57030496780322],[-115.11603981278986,50.56948928445416],[-115.12163682492258,50.569982309137565],[-115.12788941760216,50.57065948054931],[-115.13276197669569,50.57183967812583],[-115.13532575347696,50.57299306951647],[-115.137977017878,50.57319933706367],[-115.1419720146088,50.57134683412084],[-115.14650936654407,50.570142955206634],[-115.1503032473535,50.571175403742934],[-115.15252348566962,50.5719202011417],[-115.15606643413135,50.57157331748972],[-115.16053641575652,50.57023275009456],[-115.16523392905978,50.56865982781675],[-115.16840161559013,50.5678547821405],[-115.17172522066768,50.56746718182916],[-115.17275110879733,50.56541570965415],[-115.17419019641025,50.562307122247],[-115.17567376044666,50.558896094762815],[-115.17908012730382,50.55680639601186],[-115.18299268900073,50.55545705882544],[-115.1867235345084,50.55538909711365],[-115.18868144330769,50.55444122021241],[-115.18871643535816,50.55228863751586],[-115.18762252859014,50.54889775602472],[-115.18542271647831,50.54659552151951],[-115.18337842715258,50.544536836942584],[-115.1827509800698,50.54288002716109],[-115.18444068256966,50.54055949527654],[-115.1846260854912,50.53914370158975],[-115.18714410391695,50.53764857549877],[-115.1881075648124,50.53573123784264],[-115.1889184834836,50.5347397637681],[-115.19100351495824,50.53414809208112],[-115.19547145242514,50.53344489606164],[-115.1982940255298,50.533050298230826],[-115.20038445011096,50.53219879931443],[-115.20246936834637,50.53101494042096],[-115.2040955531525,50.52942428014238],[-115.2050314133851,50.527972290213214],[-115.20477135610909,50.52786673530255],[-115.20486079992514,50.52785106290326],[-115.20492181521891,50.527834872129624],[-115.20499691072747,50.52781949547299],[-115.20546223381584,50.527725269077685],[-115.20547698492751,50.52772330369147],[-115.20594248714278,50.52780578094077],[-115.20614168538171,50.52798604166045],[-115.20632921380098,50.52815550673976],[-115.20649122599335,50.528194081525115],[-115.20655855255734,50.52821089429304],[-115.20658604470778,50.52821529279419],[-115.206626147067,50.52822659700335],[-115.20701562444253,50.5283283280736],[-115.20705050216823,50.5283612819066],[-115.20709892465173,50.528397269646206],[-115.20739872848223,50.52863395425503],[-115.20741160465737,50.52863975873962],[-115.20772334940295,50.528886136386134],[-115.20792135305929,50.52907139320067],[-115.20811509143421,50.52933349521672],[-115.2081234141935,50.52935816993086],[-115.20815601560487,50.52940056297383],[-115.20816875923578,50.52940691793457],[-115.20818969067712,50.529438507049974],[-115.2083730991966,50.52968426337771],[-115.2084067746636,50.529722207375016],[-115.20842891071726,50.52974880578867],[-115.20843937660482,50.529764600315964],[-115.20844997750102,50.52977983539244],[-115.2086740290238,50.5300346745959],[-115.2087996021593,50.530165123263544],[-115.20890292437177,50.53032861814504],[-115.20903548320845,50.530489291215915],[-115.20905748715673,50.530516440049034],[-115.20920493186394,50.5306745964555],[-115.20932084541049,50.53078591993945],[-115.20935425465485,50.530824973618216],[-115.20936592534095,50.530835777389285],[-115.20938806465038,50.53086236669562],[-115.20947942912775,50.53095709086141],[-115.2096842590401,50.531054948962456],[-115.20973469636135,50.531082605845015],[-115.20976098638631,50.53109199419632],[-115.20978620508346,50.53110582262261],[-115.20984951972738,50.53113928364177],[-115.21001886275566,50.53138422321101],[-115.21011360009904,50.531524152237836],[-115.21020721842636,50.53190542115673],[-115.21021784211068,50.53197974112903],[-115.21033380519411,50.53220923355905],[-115.21035246184931,50.532250261769725],[-115.21037366396907,50.53228074034415],[-115.21051255081787,50.53247440643099],[-115.21055468768924,50.53253647351708],[-115.2105862223917,50.53258330576327],[-115.21059802881156,50.532593549931626],[-115.21060514939768,50.53262321501249],[-115.21079168749557,50.5329152817617],[-115.2108127552438,50.532946319677784],[-115.21120023226827,50.533293255726605],[-115.21125605230723,50.53335779643369],[-115.2115183712261,50.533631701384884],[-115.21155191731648,50.53367020369706],[-115.2115855962959,50.533708155426815],[-115.21181530891606,50.5339396766405],[-115.21184899046108,50.533977619397874],[-115.2118828048918,50.53401501157263],[-115.21196491903473,50.534088939676074],[-115.21216189180632,50.53427862784561],[-115.2125263114623,50.53460285071138],[-115.21265579029784,50.53471720341704],[-115.21285370703079,50.53490300069834],[-115.21299494450288,50.53490942709284],[-115.21306456069847,50.53491679614901],[-115.21313404195824,50.53492472461322],[-115.21338553924633,50.534947610043154],[-115.21347852915363,50.53503566142803],[-115.21351207796384,50.53507416308282],[-115.2135354256782,50.535095760758416],[-115.21354575964328,50.53511211415383],[-115.21370691945124,50.53527272847632],[-115.21366257723285,50.53539735701981],[-115.21361636254497,50.535529746811164],[-115.2139352834522,50.53574669379059],[-115.21427038056359,50.5358373940534],[-115.21432417401334,50.535851168944376],[-115.21455811343638,50.53588766905618],[-115.21478134362576,50.53596856970497],[-115.2148477467399,50.53598926682389],[-115.21491508806734,50.53600607437152],[-115.21528387512889,50.536134713270265],[-115.21535014592573,50.536155960658185],[-115.215390390342,50.53616671102333],[-115.21541668451121,50.536176097979144],[-115.21585294933193,50.53632099158734],[-115.21591814981184,50.53634667874319],[-115.2165131811888,50.53666217947622],[-115.21689247910834,50.53686569131786],[-115.21694292735702,50.53689334473437],[-115.21696828427997,50.536906620858986],[-115.21699364335937,50.53691988809727],[-115.21709494062779,50.536973534206275],[-115.21732343267335,50.53709186435643],[-115.21738783205723,50.53712088071736],[-115.21771953626963,50.53710728080166],[-115.21793950250802,50.53708332590872],[-115.21795332036758,50.5370852395612],[-115.21861926956038,50.537284375086614],[-115.21864747136912,50.5373450757485],[-115.21881287077582,50.537606650558494],[-115.21883408113801,50.537637127320195],[-115.21885194482829,50.537681483931934],[-115.21886981069493,50.537725831658115],[-115.21899309233666,50.53798442722565],[-115.21899700537344,50.5380274208507],[-115.21903016072407,50.538067581309434],[-115.21909409396436,50.53821698602177],[-115.2191859297445,50.53836911651154],[-115.21933845546786,50.53862488716266],[-115.21958700171544,50.53883777323802],[-115.21988399449182,50.53908664040383],[-115.21993270852298,50.539121503168246],[-115.21994518679057,50.53912897561779],[-115.2199823582689,50.53915248523122],[-115.22024365647954,50.539371732110155],[-115.22027828480086,50.53940579138285],[-115.2203151890565,50.53943041091127],[-115.22042456722613,50.53974672611897],[-115.22050690893306,50.539938265878895],[-115.22063944003172,50.54015855831629],[-115.22076397002397,50.54023434749166],[-115.22088488654842,50.540325126426865],[-115.22114452038768,50.54043285323027],[-115.22119470763036,50.54046161463254],[-115.22165006872804,50.5405867567396],[-115.22171741946354,50.540603560073826],[-115.2217836998664,50.54062480351205],[-115.22185118343533,50.540641056186516],[-115.22208174966553,50.540810139662646],[-115.22211678293529,50.54084252880792],[-115.22223466509209,50.54100515163928],[-115.22241919224594,50.54112827230648],[-115.22247377567473,50.54131652580825],[-115.22250536885464,50.54142242971084],[-115.22261415617754,50.54162279327151],[-115.22263202516922,50.54166714906029],[-115.22265096666001,50.541707055815976],[-115.22270658401214,50.54183178453815],[-115.22285113204265,50.54194304668643],[-115.22288482886314,50.541980985730035],[-115.22293341348723,50.54201640651566],[-115.2232190362979,50.54225335157708],[-115.22323138326324,50.54226137420799],[-115.22365502195146,50.542458967343855],[-115.22395114143892,50.54253389079066],[-115.22442315910871,50.54264928315318],[-115.22449158412604,50.542661644605694],[-115.2249098405059,50.542822349346665],[-115.224975323087,50.542846920947646],[-115.22502792322656,50.542865690167304],[-115.22544484795472,50.54303193418014],[-115.22570637875198,50.54313188856705],[-115.22615834441619,50.543330526636986],[-115.22623657854243,50.54336145026929],[-115.22655771249222,50.54351039436616],[-115.22662319697194,50.543534964976295],[-115.22664829513154,50.5435493399497],[-115.22667459595434,50.54355872415909],[-115.2270235059833,50.543710941394934],[-115.22708792107437,50.543739951904186],[-115.22715233624838,50.54376896237508],[-115.2272049383713,50.54378773054415],[-115.22745314798286,50.54400226720528],[-115.22758403121983,50.544111042109094],[-115.22768954775297,50.544384364257475],[-115.22774638705211,50.54450409040837],[-115.22788761359892,50.544807028769696],[-115.22790656106483,50.544846934477356],[-115.22791596740798,50.544867167060595],[-115.22792430388049,50.54489183982371],[-115.22802371723645,50.54507196466782],[-115.22804752229501,50.54515098255388],[-115.22807962108408,50.545195580146],[-115.22809843407983,50.54523604526481],[-115.22822584653886,50.5455370616739],[-115.22828295404317,50.545655686217636],[-115.22853252085784,50.54604247260595],[-115.2286180743841,50.54616159139769],[-115.22867402711266,50.54634429047549],[-115.22867781745366,50.546387833903424],[-115.22868749192487,50.54640695633845],[-115.22869596176494,50.54643107841505],[-115.22874977546658,50.54662265775293],[-115.22873172297453,50.546697581338705],[-115.22873497847942,50.54674334483533],[-115.22872962926053,50.546765545728924],[-115.2287245474977,50.54678663657701],[-115.22867716364047,50.5471018419236],[-115.22861702964899,50.54741068577273],[-115.22856340318393,50.547633245014374],[-115.22855604667517,50.54766377563861],[-115.2286811507288,50.54791513761213],[-115.22870477983808,50.54793562172114],[-115.22872359453959,50.54797608659908],[-115.22874240927487,50.54801655147193],[-115.22887633959881,50.548231290589285],[-115.22889555684664,50.548270085918936],[-115.22891330199627,50.54831499092013],[-115.2289215048503,50.548340222966466],[-115.2289322497064,50.548354905162775],[-115.22902819769946,50.5485494589045],[-115.22908812057211,50.54865642270958],[-115.22918308826407,50.548795773073756],[-115.22937703515328,50.54905783172177],[-115.22941052006024,50.54915597124239],[-115.22948565098436,50.549318380586385],[-115.22948039574715,50.549458749126714],[-115.22948365221212,50.54950451244739],[-115.22947723319811,50.54953115347321],[-115.2294869086837,50.54955027576551],[-115.22948245580302,50.5496873141387],[-115.22933185305226,50.54977885297035],[-115.22928116200241,50.549811399463316],[-115.22923073834635,50.54984283589025],[-115.22912868827846,50.54991069941801],[-115.22890180339327,50.55008170471778],[-115.22879868023107,50.550154016965266],[-115.22836140112042,50.55048683755995],[-115.22829381104066,50.55053023225153],[-115.2281085629704,50.55076551484729],[-115.22808537795927,50.550802453807705],[-115.22806727758027,50.550818293167566],[-115.22804743735522,50.55084135220814],[-115.2279251855074,50.55099302680816],[-115.22787480443706,50.551083546296965],[-115.22784921149292,50.55113047552421],[-115.22783231362041,50.55114132411484],[-115.22782923833412,50.55115408509524],[-115.22781020036915,50.551173813974515],[-115.22762686426697,50.551460409025104],[-115.22757728462808,50.55154759822106],[-115.2273741929034,50.55197541896919],[-115.22727070415026,50.55228628426913],[-115.22726013778274,50.55233012615789],[-115.22725398458172,50.55235565693018],[-115.22724970408994,50.55237341746675],[-115.2271958861588,50.55253745054721],[-115.22711705539504,50.5526274658041],[-115.22707897757911,50.552666923244416],[-115.22704210254706,50.552701389963346],[-115.2268851094433,50.552878640637466],[-115.22676628285657,50.55295679959152],[-115.22666488982394,50.55302188996314],[-115.22630764667008,50.55331877932751],[-115.22624972529678,50.55338129510615],[-115.22597148668113,50.55364670169734],[-115.22593461214015,50.55368115912781],[-115.22589666511357,50.55372006553862],[-115.22570911805974,50.55396477402379],[-115.22568499397784,50.554005592996546],[-115.22566260805115,50.55403920122371],[-115.22564677888204,50.55404560933426],[-115.22560040354826,50.55411947704714],[-115.22584407358416,50.55429379268775],[-115.22591764289851,50.5543441460523],[-115.22641840880493,50.55469636620025],[-115.2267473373959,50.554931834344046],[-115.22679687440679,50.55496337222231],[-115.22680829011344,50.554975274993026],[-115.22683232233945,50.554994098720435],[-115.22701491379044,50.55512553043997],[-115.22704960311891,50.555218670374906],[-115.22708144054216,50.55526437773734],[-115.22709191889821,50.5552801700169],[-115.22708870827334,50.555293490367184],[-115.22710025684655,50.55530484252877],[-115.22722675361895,50.555609745931285],[-115.22738161219162,50.55597478669052],[-115.22739984973391,50.55613618874983],[-115.22743333573283,50.55641212862279],[-115.22743873102421,50.55644901138834],[-115.22744198592024,50.55649477437933],[-115.22744818388055,50.55652832705561],[-115.227459732861,50.556539679162775],[-115.22749161421913,50.556822279050856],[-115.2274986149155,50.55685250162686],[-115.22751043154285,50.55686274369618],[-115.22751649475906,50.55689685580777],[-115.22767278810154,50.55719670272034],[-115.22778877019385,50.55742672933864],[-115.2279351230546,50.55770856346741],[-115.22807759729167,50.558006497151965],[-115.22811023821849,50.55804888286165],[-115.22810702769742,50.55806220319651],[-115.22812812127962,50.55809322799952],[-115.22824638317991,50.55831381421518],[-115.22825177936491,50.55835069685602],[-115.22825450014075,50.558398679772964],[-115.2282502194692,50.558416440217435],[-115.22825882617464,50.55844000252063],[-115.22831167306836,50.558754185723544],[-115.22838240615971,50.55929052268423],[-115.22855414189743,50.559585628509325],[-115.22857202386544,50.55962998237319],[-115.22858036342986,50.559654654643644],[-115.22859097817364,50.55966988724407],[-115.22874295952329,50.559928417864576],[-115.22876191410853,50.55996832269177],[-115.228769986301,50.55999410496476],[-115.22877966373402,50.560013227074954],[-115.22895153752833,50.560307781454284],[-115.22909090467705,50.560559390728216],[-115.22927415374251,50.56080676384569],[-115.2294923243081,50.56108708206402],[-115.22952510363251,50.56112890774618],[-115.22953317646989,50.561154689927335],[-115.22955881828939,50.56116685276151],[-115.22956608857444,50.561195965020595],[-115.22982136306325,50.56138162227023],[-115.22987104415097,50.56141259907846],[-115.22990556186957,50.561447213892954],[-115.23023348794702,50.56168710990615],[-115.23038026051537,50.56178947047509],[-115.23077642897105,50.562101915241435],[-115.23091865450553,50.56222315441687],[-115.2309660276373,50.56238228678641],[-115.23098418272961,50.5624255212027],[-115.2309882441563,50.562467953670755],[-115.231067243914,50.56273299356531],[-115.23108432925237,50.56278066806142],[-115.23108111927363,50.562793988405446],[-115.2314152632355,50.56306743275016],[-115.23156904526327,50.56320002255548],[-115.23155030197714,50.563574248784036],[-115.23153244601242,50.56388550250476],[-115.23152174625521,50.563929903633884],[-115.23151746634642,50.56394766408464],[-115.23152821577264,50.56396234575149],[-115.23152500584095,50.563975666089256],[-115.23150268514783,50.56424615678041],[-115.23150621223384,50.564290809191014],[-115.23149551235446,50.564335210295816],[-115.23147671839088,50.56465035325497],[-115.2314631889556,50.56500293773053],[-115.23144723792241,50.56518770474032],[-115.2314397478192,50.56521878547617],[-115.23147152761557,50.56550193181498],[-115.23147438493662,50.565549363663266],[-115.23149267447619,50.565592047257496],[-115.23151263496362,50.565864951921874],[-115.23151682988144,50.56590683362077],[-115.23152864979853,50.565917075150615],[-115.231520892124,50.56594926588991],[-115.23153169169653,50.56602303016745],[-115.23169294132659,50.56624325445752],[-115.23186601267373,50.5664737199421],[-115.23217288751745,50.56668257612554],[-115.2322835500174,50.566756988711596],[-115.23247093595107,50.5669280711633],[-115.23251741512884,50.566972366897716],[-115.2325532787185,50.56700142164474],[-115.2326009606705,50.56704072666134],[-115.23288241049873,50.56717723499591],[-115.23293397243819,50.567200440029254],[-115.23298339460898,50.56723252525607],[-115.23304878442289,50.56725764194755],[-115.23336302444473,50.56743597334472],[-115.23362784387126,50.567582218912264],[-115.2339556996572,50.56782266162246],[-115.23428369373953,50.56806254384184],[-115.2343182220872,50.568097148127706],[-115.23436684388146,50.56813256279288],[-115.23467026273353,50.56835585092731],[-115.23469698194985,50.56836356347167],[-115.2347336482389,50.56838929625783],[-115.2347453368884,50.56840008799002],[-115.23509131181422,50.56862467813269],[-115.23545919401714,50.568876968932535],[-115.23565114916535,50.56902916618578],[-115.23583114907676,50.56917168150465],[-115.23603909390653,50.56919820262152],[-115.23610983653009,50.56920111681597],[-115.23613615430718,50.5692104984952],[-115.23617830510194,50.56921347067972],[-115.23631724684503,50.56922985747636],[-115.23659045432731,50.569282042808375],[-115.23665905578419,50.56929384579874],[-115.23667274955389,50.56929631650709],[-115.23672752464773,50.569306199323286],[-115.23674135319327,50.569308110566276],[-115.23721175546183,50.56937213273198],[-115.23758563251356,50.56942163831174],[-115.23801808943573,50.569524557817175],[-115.23830031474164,50.569598639547],[-115.23839115129826,50.569696106132895],[-115.23842394515542,50.56973792875602],[-115.23845673907351,50.56977975136744],[-115.23850309233518,50.569824603907136],[-115.23873828290151,50.56997532679838],[-115.23878771225377,50.57000740933945],[-115.23881082285207,50.570030110826195],[-115.23883620488145,50.5700433814288],[-115.23889946325156,50.57007737489677],[-115.23901032366557,50.570329027502716],[-115.23906521964331,50.570457073810495],[-115.23915790237596,50.57078420867658],[-115.23919810841352,50.57085459172805],[-115.23934805180355,50.571121975764264],[-115.23936888976645,50.57115411686131],[-115.23940262236383,50.57119204955157],[-115.23943648761988,50.57122943165128],[-115.23966439613704,50.57146976504226],[-115.2396999984443,50.5714999362453],[-115.23973480092735,50.57153342866861],[-115.2400293147986,50.57179388308134],[-115.24007446978314,50.57184372558769],[-115.24005992531467,50.572319463142684],[-115.24005595227621,50.57263263462614],[-115.24004525884574,50.57267703610321],[-115.24005280510555,50.57270503723309],[-115.24004852772778,50.57272279782254],[-115.24004021632167,50.572994647596126],[-115.24002845343536,50.57304348919742],[-115.24003279168203,50.57308481075182],[-115.24002542783369,50.57323405602275],[-115.23997283348247,50.5733931004022],[-115.23985154439391,50.57371870012753],[-115.2396545118482,50.57388411323759],[-115.23935324730405,50.57412628602373],[-115.23930146663416,50.57416327625218],[-115.23926458335337,50.57419774612139],[-115.23899886146263,50.574410998161085],[-115.23896117562745,50.57444879801542],[-115.23891046376349,50.57448134792005],[-115.23860678476812,50.57473350879309],[-115.23855420063093,50.57477382873841],[-115.2378604911498,50.57498400525395],[-115.23741438358896,50.57511549378661],[-115.237353183273,50.575132252029285],[-115.23730768306376,50.575143160088615],[-115.23729118065569,50.57515234031884],[-115.2371835450621,50.57518388715462],[-115.23687261502603,50.57516949388602],[-115.23682938888892,50.57517096208913],[-115.23680186297514,50.575166580197546],[-115.23673097828687,50.57516421703683],[-115.23623572280337,50.57514378412183],[-115.23588143242138,50.5751314154919],[-115.23538778247618,50.575104318661765],[-115.23490622155529,50.57508635955753],[-115.2348356045716,50.57508288516823],[-115.23476485492853,50.575079961304475],[-115.23434008335235,50.575063553838106],[-115.23431229025502,50.575060281350325],[-115.23427040160212,50.57505619846037],[-115.23419871473773,50.5750571637461],[-115.23390228440213,50.57504190311292],[-115.23371667446821,50.57510049264853],[-115.23328130634395,50.575246645851394],[-115.23297007789435,50.57535207510735],[-115.2329535745253,50.575361254692055],[-115.23286695695569,50.575483461993315],[-115.23274679470049,50.57562625722485],[-115.23270870236723,50.57566571548943],[-115.23268778342853,50.575693214722165],[-115.23266967252155,50.57570906323191],[-115.2324705154557,50.57594242527922],[-115.23243255531426,50.57598133286709],[-115.23242747198843,50.57600242313543],[-115.23240856037332,50.576021592758856],[-115.23215640652991,50.57629694055887],[-115.23179804471017,50.576716442973854],[-115.23173068612992,50.57675872835908],[-115.23134151626783,50.5769502792],[-115.23129199910551,50.57697783492902],[-115.23126019351635,50.57699120295747],[-115.2312265127136,50.577012349925745],[-115.23116223140609,50.57704186539887],[-115.23083429749468,50.57709794534632],[-115.23076153694085,50.577103348451196],[-115.23070046631324,50.5771195435514],[-115.2302250038072,50.57719474830485],[-115.22960174192342,50.577290195250086],[-115.22939300750598,50.57732607421898],[-115.22885726971866,50.5774141463209],[-115.22886467706441,50.577442698609985],[-115.22887542884772,50.577457380292664],[-115.22898303973756,50.57772236067104],[-115.22900186713747,50.57776282403737],[-115.22901034304508,50.577786945170814],[-115.22901868621314,50.57781161686471],[-115.22913156531945,50.57811402926592],[-115.22916007451505,50.57817361424364],[-115.2294090731248,50.57862279513411],[-115.22942683075065,50.57866769839755],[-115.22944258009171,50.57872093112024],[-115.22945966977724,50.57876860494104],[-115.22946480177475,50.57880659661055],[-115.22956091116083,50.579119306117924],[-115.22957331647885,50.57918640938975],[-115.22970525884487,50.57964689667132],[-115.22974131079485,50.57973448298161],[-115.22984660881947,50.579949819608025],[-115.22987953709341,50.57999108478735],[-115.2298854724752,50.58002574637356],[-115.22989622520836,50.580040427911634],[-115.23003552384175,50.580292589419585],[-115.23005435326262,50.580333052481976],[-115.2300640356135,50.58035217400863],[-115.2300722449501,50.58037740498809],[-115.23017161252115,50.580558070707056],[-115.23027588284243,50.58065912409575],[-115.23061220905912,50.580983325924656],[-115.23067757977142,50.58112716616646],[-115.2308181402314,50.581433408454444],[-115.23083603310874,50.58147776077878],[-115.2308562018205,50.58151267363311],[-115.23111846896093,50.58172910422485],[-115.2311672378367,50.58176396026108],[-115.2312156043057,50.58180048571959],[-115.23132202069574,50.581892657950256],[-115.2315289178609,50.58204234066343],[-115.23187797526796,50.58231380852207],[-115.23191921825865,50.582498466701686],[-115.23198661935389,50.582811780227935],[-115.231990816292,50.58285366104837],[-115.23200884575714,50.58289745366608],[-115.2320584860127,50.5831658643931],[-115.23206161480968,50.58321217632698],[-115.23207022825103,50.58323573762648],[-115.23226719963259,50.58354521107455],[-115.23242142556802,50.583794840277506],[-115.23257337764747,50.58405390866245],[-115.2326532599293,50.584196888365426],[-115.23277771571674,50.58433285137159],[-115.23282541622373,50.584372155466305],[-115.23282314283362,50.584381586058655],[-115.23284625780377,50.584404288388484],[-115.23285915321235,50.58441008953213],[-115.23305001231405,50.584626369176846],[-115.23307526815641,50.58464019142053],[-115.23312283653021,50.584680045935215],[-115.23315750945082,50.5847140993223],[-115.23345501479103,50.58496235692901],[-115.23355108839965,50.58503818500439],[-115.23400361531822,50.58535494361226],[-115.23401316771714,50.58537461524189],[-115.23424197481297,50.585670706840766],[-115.23426495631259,50.58569396828336],[-115.2342778522735,50.58569976925365],[-115.23429869550513,50.585731901852235],[-115.23451428905214,50.5859642205897],[-115.23454668876313,50.586007712979445],[-115.23456913763192,50.58603318548109],[-115.23457935822739,50.586050086471566],[-115.234713375698,50.58620572744953],[-115.23479768418633,50.58633038570746],[-115.23493175739947,50.58654510754562],[-115.2351986761299,50.58680173826779],[-115.23522406869232,50.58681500054446],[-115.23546252232795,50.587071128905535],[-115.23549719886063,50.58710518146547],[-115.23553093800925,50.58714312347623],[-115.2357461444523,50.58737710000114],[-115.23579398561198,50.587415843235966],[-115.23580313686823,50.58743718411317],[-115.23607841473145,50.58771848333829],[-115.23614830482245,50.58778436799442],[-115.23660481184191,50.58814410537998],[-115.23673905567453,50.58823954358818],[-115.23688544918903,50.588403202219936],[-115.23688858331683,50.58844951372471],[-115.23689827031713,50.58846863446915],[-115.23689185013492,50.58849527466278],[-115.23691288596706,50.588585937128315],[-115.23704892641798,50.58873324531935],[-115.23709636781408,50.58877365738302],[-115.23711988952117,50.588794689252715],[-115.23713011170155,50.58881158995263],[-115.2371533638009,50.58883374070246],[-115.23736871944168,50.589067163049016],[-115.23737920927663,50.589082953712094],[-115.23754372250667,50.589230762295244],[-115.2379373911455,50.58943610933378],[-115.23799326097236,50.58944155124889],[-115.23839510790273,50.58949432441792],[-115.23845632735994,50.58947756589373],[-115.23847203449891,50.589471706801525],[-115.2385026442035,50.589463327522324],[-115.23853539368007,50.58944606814887],[-115.2385966130194,50.589429309546595],[-115.23879905261461,50.5893604137054],[-115.23899199566576,50.58933092735666],[-115.23900797014431,50.58932395817588],[-115.23905308201864,50.58931471906701],[-115.23912612877528,50.58930820061007],[-115.23915633599205,50.58930149060801],[-115.2394768598921,50.589276467343666],[-115.2396131903177,50.589303949759255],[-115.23995288424499,50.58937735708424],[-115.24031569848202,50.589473472886226],[-115.24040311506268,50.58946664431326],[-115.24065005572302,50.5894503658805],[-115.24090428052881,50.589463188540094],[-115.24097492054341,50.589466659018925],[-115.24104663021319,50.589465689386024],[-115.24146840124088,50.589435759655856],[-115.24152534109055,50.58943675972765],[-115.24154024561973,50.58943423025611],[-115.2416130248132,50.58942882018659],[-115.24165733407072,50.58942291007825],[-115.24208966706419,50.589349127829166],[-115.24211920647643,50.58934518763208],[-115.24290921783862,50.58921079896621],[-115.24338679014578,50.58912722039967],[-115.24340169446782,50.58912469067802],[-115.24344693784587,50.589114899215424],[-115.24352198982018,50.589100048260754],[-115.24377494359378,50.589058782928554],[-115.24392477761305,50.58903019942853],[-115.24395418191762,50.58902681819534],[-115.24399969455133,50.58901590760251],[-115.2440585052648,50.58900913620845],[-115.24435803768984,50.588952527692015],[-115.24453847919332,50.58891556245961],[-115.24498864713945,50.58882702874689],[-115.24536750576897,50.58885652653312],[-115.24563422488743,50.58887680754675],[-115.24583371540164,50.58893882176109],[-115.24590007836134,50.58896004957993],[-115.24594010999715,50.58897189822874],[-115.24596751053085,50.58897683724198],[-115.2461131351901,50.58902509225428],[-115.2463398929579,50.589092603975466],[-115.24640759276679,50.58910828133833],[-115.24647288714611,50.589133948931725],[-115.24692667280306,50.58926786039253],[-115.2473135623391,50.589382763121016],[-115.24770379336978,50.589483793520834],[-115.24802873233233,50.58955914703192],[-115.24816587054372,50.589583288866415],[-115.24823450811664,50.58959507555137],[-115.24824794146409,50.58959865480845],[-115.2483019421083,50.58961186178672],[-115.24845385014977,50.58963403234409],[-115.2486742011127,50.589728180081615],[-115.24874083379896,50.58974829615254],[-115.24880532877283,50.589777292462514],[-115.24884509467971,50.58979025009015],[-115.24920800626774,50.58994540891359],[-115.24954685774024,50.590081757391886],[-115.2498527721269,50.590295558448155],[-115.25018395381736,50.59052317687244],[-115.25023261232195,50.59055858364361],[-115.25024524454382,50.5905654927675],[-115.2502812709031,50.590593990391966],[-115.25035599564342,50.59063988522824],[-115.25056085884233,50.59079841128152],[-115.25059434627448,50.590837458595225],[-115.25064314010183,50.59087230571446],[-115.25082447607943,50.59100980228263],[-115.25092561085754,50.59112415550427],[-115.25097226784177,50.59116788277253],[-115.25110956332627,50.591310182590895],[-115.2512352978778,50.59144112417817],[-115.25133643466903,50.59155547696706],[-115.25137125918262,50.591588973818546],[-115.25150749068465,50.59173570434744],[-115.25166984656971,50.59183329110742],[-115.2517205103066,50.59186037631993],[-115.25178394158449,50.591893810986996],[-115.2520832580226,50.59207571619401],[-115.25214695702645,50.592108040605886],[-115.25219748885245,50.59213567617212],[-115.25228498360362,50.59218792793605],[-115.25251285712082,50.59236969875104],[-115.25274193354436,50.59254647831703],[-115.25305543758078,50.592788269525585],[-115.25323465160062,50.592934642177546],[-115.25338344827888,50.593029198237495],[-115.25343318051787,50.5930601633368],[-115.25344581393327,50.59306707207666],[-115.25348398132859,50.59308668824584],[-115.25378023962855,50.59328135854621],[-115.25383077377495,50.593308993332116],[-115.25385510488982,50.59332670030435],[-115.25388050663092,50.593339958221165],[-115.25424153932585,50.593562510392864],[-115.25426693917704,50.59357577709812],[-115.2547531387822,50.593991125355714],[-115.25480287302665,50.5940220898073],[-115.25503311578586,50.59425350474687],[-115.2550668789001,50.59429143162828],[-115.2550877388171,50.5943235688803],[-115.25510050745622,50.59432991795996],[-115.25533182167675,50.59455689202133],[-115.2553653160453,50.59459593772281],[-115.25538671262932,50.594625845938424],[-115.25539801134538,50.59463830466479],[-115.25558413334079,50.59481544321763],[-115.25563261499217,50.59491103805563],[-115.25569474629981,50.59506874116928],[-115.25587991545126,50.595428111493426],[-115.25592305678913,50.59554590701771],[-115.2560212240987,50.59573210543886],[-115.25604048502996,50.59577089384149],[-115.25604857927203,50.59579667301533],[-115.25605814138702,50.59581635138469],[-115.25618286414633,50.596070447280795],[-115.25621235636997,50.59612613443767],[-115.25623134842171,50.59616604171323],[-115.25669540137082,50.596079379086056],[-115.25718912957964,50.59598821088944],[-115.25751716614732,50.595932063468645],[-115.25799611993362,50.5958428638045],[-115.25801169216633,50.59583756146591],[-115.25805707369636,50.595827204681854],[-115.25813092935107,50.595817343661935],[-115.25832495550205,50.59578338384767],[-115.25852663026119,50.595836494405866],[-115.25859407744416,50.595853274281545],[-115.25866179169199,50.595868944065586],[-115.25911861857425,50.59599059419605],[-115.25989818417746,50.596197000587644],[-115.2599383583607,50.59620829351373],[-115.26031292744246,50.59637476312521],[-115.26037743936922,50.59640375250006],[-115.2604290489705,50.59642694397232],[-115.26076344480754,50.59658212816114],[-115.26082795732181,50.5966111172678],[-115.26084152617992,50.596614144388155],[-115.2608783649852,50.596639308211834],[-115.26103493184807,50.596701662041156],[-115.26104409696241,50.59672300060309],[-115.26129631966144,50.59680374633863],[-115.2619811416292,50.59704750493051],[-115.26203382054942,50.59706625541404],[-115.26249066870199,50.59718789153619],[-115.26255825391945,50.597204109514536],[-115.26258486051177,50.59721237456313],[-115.26262490388099,50.59722421709503],[-115.26301416961597,50.59732963311143],[-115.26308175523498,50.59734585076926],[-115.26314840564038,50.59736595803305],[-115.26360419223934,50.59749202977936],[-115.26400596651662,50.59760490043306],[-115.26440355382822,50.597616259827745],[-115.26489933626222,50.59763545679875],[-115.26494378504232,50.59762897801113],[-115.26497332788718,50.59762503179079],[-115.26504505003682,50.59762404671239],[-115.26546701604161,50.59759346690477],[-115.26551026277981,50.597591987620945],[-115.26553967105573,50.59758860072262],[-115.26561259504224,50.59758261554776],[-115.26575697208177,50.59757676373371],[-115.26609898248624,50.59752193924041],[-115.26633719157142,50.59748259633553],[-115.2669288052762,50.59745997267411],[-115.26704297322664,50.5974608366617],[-115.26742885812557,50.59746138841821],[-115.26749964507233,50.597464291441646],[-115.26757136691042,50.597463304736124],[-115.26799889760645,50.59746903483456],[-115.2680563817914,50.59746780118832],[-115.26809989511487,50.597465210827835],[-115.26845426345061,50.59765638721665],[-115.26850507830332,50.597682905125424],[-115.26890323051882,50.59787037942953],[-115.26918498325989,50.5980067908477],[-115.26937800992746,50.59809596341319],[-115.26956676921107,50.59820289680944],[-115.26963035499976,50.59823577045726],[-115.26967983741491,50.59826783817886],[-115.26980661250356,50.59833523709239],[-115.2700302517327,50.59841602069056],[-115.27008293560873,50.598434767335576],[-115.2701221817974,50.59844993737718],[-115.27014852376894,50.59845931068076],[-115.27023898584916,50.59849933711879],[-115.27058330018512,50.598613418677694],[-115.27071407860988,50.59866416540177],[-115.2710898744065,50.59888524712022],[-115.271230091315,50.598956220822345],[-115.27162906629275,50.599140354864986],[-115.27169438961208,50.599166007355855],[-115.27171979777121,50.59917926999022],[-115.27174520807903,50.59919252373797],[-115.27181053154031,50.59921817615919],[-115.27207672974389,50.59935988428515],[-115.27212621513866,50.599391950876324],[-115.27215255807913,50.59940132369528],[-115.272190739001,50.59942093330211],[-115.27251999603347,50.599597732585536],[-115.27283648509874,50.59976817497478],[-115.27290007762159,50.59980103781298],[-115.27326312296832,50.60001575601975],[-115.27331380891376,50.60004283113911],[-115.2733255150366,50.60005361840459],[-115.27336329594122,50.60007489715423],[-115.27361246656889,50.60022800691853],[-115.27367592590655,50.600261428776],[-115.27372648010923,50.600289054299466],[-115.27375055615825,50.60030786685526],[-115.27377730104207,50.60031556971842],[-115.2741402203295,50.600530844413186],[-115.27419090951624,50.60055791023597],[-115.2747831986779,50.60088972574185],[-115.27514719609782,50.60110054779769],[-115.27519668559512,50.601132612957265],[-115.27524750834712,50.60115912767836],[-115.27556095141445,50.60134233239718],[-115.27561150798894,50.60136995702902],[-115.2756498264694,50.60138900592126],[-115.27567603693271,50.60139893736644],[-115.27592655587428,50.601546491291266],[-115.275946609968,50.60164158527609],[-115.27598384316448,50.60202233434647],[-115.27600200494584,50.60218483836347],[-115.27600744553553,50.60222171672062],[-115.27608558151246,50.60249170278355],[-115.27610472825536,50.60253104687999],[-115.27612187642134,50.60257871215545],[-115.27620201231284,50.60284037683909],[-115.27621916069978,50.60288804208176],[-115.27622753440639,50.60291270948347],[-115.27622300181335,50.6029315808951],[-115.27624121461655,50.60297481467797],[-115.27644006936274,50.603218453209905],[-115.27675796720719,50.60362132259526],[-115.27682567641513,50.603696611710554],[-115.27704435115336,50.60397682208483],[-115.27707787137578,50.60401586081031],[-115.27709822043877,50.604050204847404],[-115.27711086057325,50.604057110810594],[-115.27729654923635,50.60429607058157],[-115.2773292722355,50.60433843058689],[-115.27736332618187,50.60437524904203],[-115.27753771227711,50.6046017430914],[-115.27759584871052,50.604657364216436],[-115.27779205013437,50.60491210955776],[-115.27798148037901,50.605135517886694],[-115.27821387635228,50.60541819099466],[-115.27824766525166,50.60545611921594],[-115.27828145634066,50.60549403854453],[-115.27844614088714,50.605701423004305],[-115.27846622517252,50.60573687680616],[-115.27849908254659,50.60577868579228],[-115.27853300631512,50.60581605442792],[-115.27866934672632,50.60602238843449],[-115.2787517019887,50.60609626073443],[-115.27920871548778,50.606515445755676],[-115.27924703774129,50.60653450217292],[-115.27956158136868,50.60677288440751],[-115.27961014834905,50.60680882824676],[-115.2796472725605,50.6068328754658],[-115.27965991386804,50.60683978111663],[-115.27998950223845,50.60707507693092],[-115.28000081089354,50.60708753297336],[-115.28003793554377,50.60711158005413],[-115.28036939371209,50.60733910406368],[-115.2806029204767,50.60749806172161],[-115.28103355553174,50.607669888636956],[-115.28138394614612,50.60781859322927],[-115.2814484880578,50.60784756999703],[-115.28149798946829,50.60787963209593],[-115.28154962311982,50.60790281345865],[-115.28176413724235,50.608021866191244],[-115.28186234142345,50.60808932034051],[-115.28191210990848,50.608120272156434],[-115.28196281018982,50.608147343075025],[-115.28209599347497,50.608307354312814],[-115.28217940648831,50.608436422579935],[-115.28225855798927,50.60858324332248],[-115.28286641634253,50.608553009472956],[-115.28289583260808,50.60854960915584],[-115.28335581598918,50.60853967777429],[-115.28337072236083,50.6085371516431],[-115.28342768730822,50.60853813026476],[-115.28350049235728,50.608532692943115],[-115.28382977393517,50.60853109918832],[-115.28392055069033,50.60851036487854],[-115.28398044672946,50.60849913218365],[-115.28405538335201,50.60848481374599],[-115.2841144799394,50.60847691126174],[-115.28430948786291,50.60837938674261],[-115.28449742217316,50.60837090515317],[-115.28465793769367,50.60835750275795],[-115.28495752324909,50.608420046733094],[-115.28528997319646,50.608524405623186],[-115.2857427378061,50.608663706229976],[-115.28579650591361,50.60867800481742],[-115.28587702599499,50.608700003258335],[-115.28622734241945,50.60867034368408],[-115.28628404118861,50.60867243094413],[-115.28635578048096,50.60867143215504],[-115.28642658628537,50.608674323109184],[-115.2866111903519,50.60867971864405],[-115.28670964759212,50.60886532755747],[-115.28689378928348,50.60923019079994],[-115.2870659978617,50.609346839789524],[-115.28738046832459,50.60958575862741],[-115.28742917671634,50.609621148325616],[-115.28746724084301,50.60964130306363],[-115.2877776154351,50.60971852368427],[-115.28788090401885,50.60970524149168],[-115.28789554414726,50.6097038248604],[-115.28792522715966,50.6096993131181],[-115.28795464166134,50.60969592035054],[-115.28802864777619,50.609685480177504],[-115.28824906345491,50.60966083774106],[-115.2885078022848,50.60971486923859],[-115.28863011716619,50.609741487462],[-115.28903670776029,50.60995411280815],[-115.28918989749201,50.610030857404844],[-115.289446366171,50.61015396596821],[-115.28953925976849,50.610243615273774],[-115.28958783846767,50.610279554612276],[-115.28963681568314,50.61031383321061],[-115.28988568996564,50.61052821318844],[-115.2899344013487,50.61056360175117],[-115.28996900511332,50.61059818698391],[-115.29028083650996,50.6108481983275],[-115.29055979402092,50.61111603356433],[-115.29076049899761,50.61129279403143],[-115.29091608651359,50.61141918402272],[-115.29109310743264,50.61151584455922],[-115.29115659567962,50.61154925600122],[-115.29118308179096,50.61155807356818],[-115.29120743960605,50.61157576310634],[-115.29153912492716,50.61174306321824],[-115.29158863781592,50.61177512068237],[-115.29163921595683,50.61180273769119],[-115.29202028379491,50.612002653230164],[-115.29244088915335,50.61221661035176],[-115.29258250406788,50.612401283047184],[-115.2928013192692,50.61268145954293],[-115.29283539432473,50.61271826401626],[-115.2928678696817,50.612761738016474],[-115.29302013719634,50.61296163551453],[-115.29305314757289,50.61300288034771],[-115.29307297823314,50.613039450194194],[-115.29309414239084,50.613070460605556],[-115.29310492364819,50.61308513544718],[-115.29330777083356,50.613372287455114],[-115.29350223755424,50.613634764331266],[-115.29355653880525,50.61388537582718],[-115.29361057146168,50.6141967359822],[-115.2936289397329,50.614239406838934],[-115.29363639425246,50.61426795353677],[-115.29363319912332,50.61428127485075],[-115.29366181379802,50.61440047932086],[-115.29374127953163,50.61454618073968],[-115.29376018058858,50.61458663133815],[-115.29376843189733,50.61461185656808],[-115.2937790816795,50.61462708193149],[-115.29394972590158,50.61492928710596],[-115.2940893595332,50.61518190836128],[-115.29405367868365,50.615449931245195],[-115.29403530164913,50.615765065176674],[-115.29402465125067,50.61580946951372],[-115.29401932604354,50.61583167168086],[-115.29402904322326,50.61585078681755],[-115.29401772341237,50.616017239025844],[-115.29405046832916,50.616119232033626],[-115.29406750649649,50.616167453259266],[-115.29407815674824,50.616182678565586],[-115.29408654272368,50.61620734422911],[-115.29421366476903,50.61651214887891],[-115.29422311591874,50.61653237409091],[-115.29444555388626,50.61703609112871],[-115.29449001403232,50.61714887758518],[-115.29448615116935,50.617343876115854],[-115.2944894786834,50.6173896337549],[-115.2944797613188,50.61743014823254],[-115.2944717706258,50.617701987315534],[-115.29447509815171,50.61774774493535],[-115.29446444771796,50.617792149208476],[-115.29446884028816,50.617833466396554],[-115.2946381715924,50.61808158151443],[-115.29470393450154,50.618165188689964],[-115.29479073000303,50.61851890083755],[-115.2947973858315,50.618610415965584],[-115.29478180876765,50.618854258835945],[-115.29479432234307,50.61892135159461],[-115.29481162862895,50.61896846243801],[-115.29480936435766,50.61897790277973],[-115.29481455613974,50.619015889577355],[-115.2948648773007,50.619283150398665],[-115.29486900412418,50.619325577602616],[-115.29487646027381,50.61935412404295],[-115.29487220010918,50.61937188573363],[-115.29489230220706,50.61946697426347],[-115.29495606942338,50.61967817902277],[-115.29501970517373,50.619889934304396],[-115.29523431189294,50.62018786517745],[-115.29535173548041,50.62035427573809],[-115.29533389575353,50.62048829100154],[-115.2953245767992,50.62052714468463],[-115.2953204508936,50.62054434687451],[-115.29531299571283,50.620575429818096],[-115.2952763842356,50.62072807368996],[-115.29526373726222,50.62084043740091],[-115.2952670658261,50.6208861948244],[-115.29527784966602,50.6209008693179],[-115.29527345744863,50.62091918160281],[-115.29527026233187,50.62093250285723],[-115.29527691949329,50.6210240176912],[-115.29532578081576,50.62123774952958],[-115.29537131388743,50.6214057239024],[-115.29539461307093,50.62148749086102],[-115.2954022024164,50.62169439205468],[-115.29542483721815,50.62177892979741],[-115.29544068138156,50.621891779611225],[-115.29553893772537,50.622078487873914],[-115.29557088993596,50.62212418080424],[-115.295589930018,50.62216407123162],[-115.29566209232914,50.6223999402689],[-115.29570096973481,50.62241676157317],[-115.29576767187199,50.62243684870703],[-115.29579403323656,50.62244621567383],[-115.295819329591,50.62246002304938],[-115.29613406949338,50.62257908670826],[-115.2960869405314,50.62265630795568],[-115.29585382164355,50.62297223422857],[-115.2957538360977,50.62315054803551],[-115.29560978415316,50.62345294118276],[-115.29558568625004,50.62349377186218],[-115.29556145410406,50.62353516202565],[-115.29548756237611,50.62366431460719],[-115.295455211464,50.6237991874712],[-115.29544469263614,50.62384304090514],[-115.29543430798948,50.6238863348448],[-115.29534510635334,50.6241985806228],[-115.2953218066447,50.62423608090772],[-115.29504913058466,50.62465722124066],[-115.29502583039155,50.62469472144299],[-115.29492290825549,50.62500451209871],[-115.29489867681576,50.62504589316218],[-115.29488829136565,50.625089186988475],[-115.2948177235816,50.62526409607907],[-115.29496445023537,50.62524876632716],[-115.29502250176938,50.62524529860785],[-115.29503714673189,50.62524388106461],[-115.29509626341245,50.625235972913956],[-115.295595426962,50.625182624169426],[-115.2958593208948,50.62515591671111],[-115.29643237584517,50.62509268735338],[-115.29691702343969,50.62504019979658],[-115.29697507455388,50.62503673105927],[-115.29699065229758,50.62503142345762],[-115.29704963417028,50.62502407376075],[-115.29747503022104,50.624980052454234],[-115.297534014077,50.62497269361972],[-115.29760790892992,50.624962806767634],[-115.29782852841235,50.62493758633786],[-115.29808722434937,50.62487288720786],[-115.2988562484856,50.62464857059082],[-115.29930240141279,50.62451795384343],[-115.29936364582845,50.62450116254703],[-115.29943966892792,50.6244823935982],[-115.29962433227962,50.62442813843303],[-115.29980794532958,50.62449758147044],[-115.29987358771791,50.624522106538656],[-115.29988597093616,50.62453011985774],[-115.29994029484153,50.62454219112411],[-115.30035838545322,50.624707587221515],[-115.30043760845439,50.624735134152616],[-115.30080525362756,50.62499162333874],[-115.30100710737709,50.62504466397435],[-115.30118020443848,50.62509832072203],[-115.30134399450907,50.62525046902537],[-115.30139153218586,50.62529085190166],[-115.30142748676295,50.62531988239611],[-115.30150885021703,50.62539817660635],[-115.30176770339872,50.62551181412466],[-115.30180911290718,50.62551809159327],[-115.30185012217586,50.62552603865802],[-115.30187741911652,50.62553151431113],[-115.30208127351266,50.6255762226704],[-115.30235235958811,50.625579164589006],[-115.30272423941553,50.62557935180756],[-115.30320224240961,50.625614227685325],[-115.30325710069566,50.625624077084716],[-115.30369848410591,50.625632691792596],[-115.3037702500658,50.62563168180934],[-115.30382723710915,50.625632649979465],[-115.30384095171824,50.62563511225484],[-115.30426848661571,50.625641821929435],[-115.30433932241829,50.62564469255838],[-115.3044100241346,50.625648122642744],[-115.304595764262,50.62564904778459],[-115.3048744605738,50.62573960746342],[-115.30494010753813,50.6257641295107],[-115.3051915222601,50.62590884241422],[-115.30552961612385,50.626050014576485],[-115.30554027259677,50.62606523860625],[-115.30583404708783,50.62627197398736],[-115.3058709353578,50.626297122025285],[-115.30592047448711,50.6263291725587],[-115.30593339133763,50.62633496494276],[-115.30597120974797,50.626356231956414],[-115.30624607078235,50.62652251823491],[-115.30628389162644,50.626543776256696],[-115.30634847645453,50.62657273794391],[-115.30636019527846,50.62658353027289],[-115.3063982822465,50.62660367813083],[-115.30677967518463,50.62680298012416],[-115.30723618077037,50.62704702528014],[-115.30744192473844,50.62714359060111],[-115.30784129802987,50.62732758865622],[-115.30789296758874,50.627350757265255],[-115.3079194684161,50.62735956180464],[-115.30795755461222,50.62737971799195],[-115.30798272554827,50.62739407314697],[-115.3081509182749,50.62746826069065],[-115.30821033652528,50.62757850198519],[-115.3082283240831,50.62762283937841],[-115.30823778387126,50.62764306313129],[-115.3082473777215,50.62766272737911],[-115.30825683752664,50.62768295112953],[-115.30857806618933,50.627894602321355],[-115.308650784618,50.62794933697822],[-115.30868913761162,50.62796838277409],[-115.30898842937748,50.628271613732956],[-115.30901268669116,50.62834949616332],[-115.30914021232748,50.62865316032359],[-115.30915700546264,50.62870248864204],[-115.30916420414691,50.628732152812645],[-115.30919651820157,50.629015255081455],[-115.30920092540462,50.629056571131116],[-115.30920519856986,50.62909844668252],[-115.30922353113326,50.62938019734144],[-115.30921528620112,50.62941461126457],[-115.30910578415431,50.629692528873996],[-115.30901784213619,50.62994016365333],[-115.3089055458824,50.63022973276251],[-115.30887452152838,50.63023980060654],[-115.30882499535203,50.63026738015519],[-115.30879011528823,50.630293540338926],[-115.30877453711453,50.630298849556475],[-115.30847298209933,50.63048267434489],[-115.30842132747446,50.6305191346924],[-115.30838963889448,50.63053197326533],[-115.30835595427997,50.630553142191786],[-115.30806799867193,50.63079960673286],[-115.30783089762917,50.6310129407932],[-115.30769528011287,50.63128038234369],[-115.30753849581376,50.63157644519393],[-115.30751307428545,50.63162282865183],[-115.3075090839713,50.6316394804444],[-115.30750389549438,50.631661132214454],[-115.30745744266171,50.63173557768932],[-115.30748427598462,50.631981812819646],[-115.30747576322011,50.63201733662574],[-115.3074995561986,50.632335962063074],[-115.30754285138195,50.63287171758982],[-115.30753768044003,50.63295299775625],[-115.30736075459937,50.63315397508858],[-115.30732281098042,50.63319290550936],[-115.30730457127574,50.63320931567249],[-115.30728460338804,50.63323293715132],[-115.30714575127917,50.633394433060396],[-115.30715456278288,50.633477064885774],[-115.30714392114561,50.63352146953189],[-115.30715684022003,50.63352726172427],[-115.30714699669738,50.63356833601975],[-115.30717291437954,50.63387808889043],[-115.30760452017157,50.634345746843564],[-115.30788786717967,50.63465595707747],[-115.30789865844147,50.634670630106946],[-115.30790506129118,50.634703615614704],[-115.30798543940551,50.63496524730343],[-115.30800369785389,50.635008465343226],[-115.30802182225897,50.635052242876235],[-115.30811966229435,50.635360422722066],[-115.30813645681509,50.63540975079774],[-115.30871573760575,50.635738910210016],[-115.3087271955,50.63575080340743],[-115.30903050983265,50.635977751470364],[-115.3090792638569,50.636013130579386],[-115.30909191788876,50.636020032647664],[-115.30910337382613,50.63603193468327],[-115.30912908198643,50.63604406919575],[-115.30928759876859,50.63615877797871],[-115.30939536781578,50.636246429026436],[-115.3094438564178,50.63628291808251],[-115.30946823481243,50.63630060310254],[-115.30949274516213,50.63631773749839],[-115.30961409913921,50.636408409363774],[-115.30977476702496,50.63657386462744],[-115.3099590169563,50.63676033488515],[-115.31023838439734,50.637027561887145],[-115.3102711622545,50.637069910544966],[-115.31023582649173,50.637336821445416],[-115.31022518698425,50.63738122618028],[-115.31021986722264,50.63740342854651],[-115.31021454745576,50.63742563091191],[-115.31021164066317,50.63749747919506],[-115.3100165814597,50.637654682610446],[-115.30997863846996,50.63769360484452],[-115.30996079583936,50.63770835461834],[-115.30994082734905,50.6377319764457],[-115.30963818366988,50.63797987128452],[-115.30943899612062,50.638154284835515],[-115.30895676961624,50.63825590354431],[-115.30848812559489,50.638360541317574],[-115.30841394507507,50.63837154533778],[-115.30835295118447,50.63838723121606],[-115.30820206147213,50.63841978953216],[-115.30793169573745,50.63841353155349],[-115.307902129865,50.638417488974696],[-115.3078608395861,50.638410663251896],[-115.30778905331837,50.638411675853874],[-115.30729067444958,50.63840155162818],[-115.30645147248705,50.638380633856904],[-115.3059538904328,50.63836718221127],[-115.30589688720116,50.63836621514344],[-115.3058822383065,50.63836763409146],[-115.30581151647407,50.63836420499338],[-115.30538385822672,50.63835751022127],[-115.30531420090813,50.63834964038562],[-115.30524228268662,50.63835120195981],[-115.30521391308253,50.63835016763549],[-115.30474817495832,50.63838294160383],[-115.30435568520807,50.63840860215532],[-115.30390353023314,50.638444394256986],[-115.30340955255221,50.6384755773535],[-115.30335068608866,50.63848237968798],[-115.30333683556951,50.63848046800003],[-115.30329341660136,50.63848252138952],[-115.30327770292251,50.63848838039638],[-115.30285564502977,50.63851799184952],[-115.30278359229968,50.63852011132725],[-115.30271060686714,50.638526120544824],[-115.30221556481958,50.63856172986206],[-115.30148824676971,50.63861123028982],[-115.3013721101717,50.638618172323056],[-115.30088026076523,50.63864045456034],[-115.30080727488291,50.63864646253088],[-115.30076412399784,50.638647395959936],[-115.30073442316095,50.6386519109663],[-115.30028572399092,50.638673257161926],[-115.30025522649338,50.63868109343837],[-115.30018024469862,50.6386954222536],[-115.29971264069474,50.638795582709164],[-115.29927566662516,50.638887345707744],[-115.29889888995352,50.63896675658962],[-115.29858217710162,50.639034375453264],[-115.29843114260859,50.639007834250435],[-115.29841862145204,50.63900038039315],[-115.29840370582531,50.6390029084454],[-115.29836348161294,50.63899163885786],[-115.29829488970925,50.638979324290574],[-115.29828024037495,50.63898074223863],[-115.29803517392662,50.63892863880303],[-115.29789159929247,50.6389306513047],[-115.29781874675663,50.63893609783282],[-115.29776147667405,50.63893623669228],[-115.29774802464543,50.63893266362143],[-115.29724524696198,50.6389408153591],[-115.29721581189631,50.638944219341155],[-115.2964124354145,50.639012444853996],[-115.29591511797436,50.6390574663185],[-115.29584333040577,50.63905847122703],[-115.29578446203439,50.6390652695614],[-115.29535986225775,50.63910540282956],[-115.2952880746002,50.63910640738051],[-115.29524478890964,50.639107898153085],[-115.2952150893452,50.63911240280579],[-115.29514143707854,50.63912117782353],[-115.29472309655935,50.63907558935775],[-115.29466715820037,50.6390701762322],[-115.29431781015246,50.63903523348248],[-115.293885755261,50.63898716958128],[-115.29382875150365,50.63898619634308],[-115.29339256391212,50.639014978038226],[-115.29331984496791,50.63901986214743],[-115.29326177551526,50.63902332892247],[-115.2930579995171,50.63903768254733],[-115.2928353128609,50.63901158623477],[-115.29276539029797,50.63900481863884],[-115.29269480061438,50.639000830624994],[-115.29220814208968,50.63894179570451],[-115.29136947378758,50.63885891626047],[-115.29088175264371,50.63880431582518],[-115.29085311660994,50.638804387916935],[-115.29081196286924,50.63879699640742],[-115.2907412415125,50.63879355775035],[-115.290322910637,50.63874794387379],[-115.29026697321568,50.63874252853814],[-115.29025352184077,50.63873895456219],[-115.29018373227007,50.6387316347506],[-115.28969468143438,50.638682579457054],[-115.2896533936779,50.638675746992824],[-115.28885842130757,50.63858969048709],[-115.28836937346233,50.638540629371136],[-115.28829891923198,50.63853607909903],[-115.28823006424318,50.63852486839676],[-115.28781200283177,50.638478143899206],[-115.28778336913324,50.63847820632203],[-115.28774114999753,50.638475253929045],[-115.28767149558716,50.63846737307046],[-115.28760184120125,50.63845949216841],[-115.28727023998094,50.6382910756374],[-115.28680946349975,50.63806471298091],[-115.28659066182178,50.63796287576585],[-115.28619421346424,50.63776659324879],[-115.28613321264467,50.63778226698014],[-115.28607114543516,50.63780238091817],[-115.28567397225969,50.6379070342754],[-115.28561377086477,50.63791937754298],[-115.28555170323357,50.63793949118847],[-115.28509352607887,50.63805981583509],[-115.28457327804263,50.63820025167558],[-115.28431368607168,50.638268248565936],[-115.28385443567261,50.63839300829269],[-115.28379343318728,50.63840868073188],[-115.28376173201478,50.638421512180685],[-115.28373109741774,50.63842990340577],[-115.28333417990982,50.63853343829437],[-115.28327211041093,50.638553550655885],[-115.2832116408288,50.63856700266899],[-115.28319685675561,50.63856897810188],[-115.28275158429707,50.638695087963825],[-115.28255405685066,50.63874296864966],[-115.28226288908449,50.638823241225516],[-115.28209506341015,50.63886661100716],[-115.28195760384438,50.63890270873856],[-115.2816516518343,50.638984946087774],[-115.28164243282187,50.639082875169294],[-115.28162989772788,50.63913504741255],[-115.2816256304552,50.63915280817514],[-115.28162136317911,50.639170568937146],[-115.28158585566459,50.639437470062774],[-115.28157518736128,50.63948187194797],[-115.28157198686618,50.63949519251283],[-115.28156665270348,50.639517393453644],[-115.2815634522033,50.639530714017695],[-115.28151634105761,50.6398459064731],[-115.28144532329294,50.640379708129394],[-115.2813984792824,50.640693781289194],[-115.28138781049589,50.640738183089674],[-115.28138354297536,50.64075594380895],[-115.2813771416883,50.64078258488679],[-115.28134056455865,50.64105392559741],[-115.28132989562943,50.64109832737325],[-115.28131949340316,50.64114161910136],[-115.28127344576673,50.641452370671026],[-115.28123071545306,50.64180886992006],[-115.28120135565193,50.641990611317965],[-115.28115210764273,50.64231467415077],[-115.28115835751977,50.64234822035203],[-115.28116460740613,50.64238176655154],[-115.28117539179891,50.642396442031306],[-115.28124110931871,50.642658955688134],[-115.2812442929237,50.64270526291377],[-115.28125187659961,50.64273325888425],[-115.28126239437029,50.64274904439131],[-115.28134514762631,50.64305977950133],[-115.28135991619769,50.64311743202571],[-115.28148924141384,50.64359170233538],[-115.28157199992327,50.64390242808344],[-115.28157518182336,50.643948744110986],[-115.28159328409296,50.64399252546975],[-115.2816592752548,50.644253919457874],[-115.28164860588089,50.64429832109434],[-115.28163806878653,50.64434217214697],[-115.28157616910752,50.64465932914291],[-115.2814765043295,50.64519319744633],[-115.28146276805417,50.645250360025564],[-115.28144157981664,50.645278976149044],[-115.28126662279706,50.645471028773],[-115.28122731242183,50.645515499925715],[-115.281203590823,50.64555465691762],[-115.28099038790057,50.645786740009754],[-115.28095241291454,50.64582565198212],[-115.28093322372521,50.64584594715088],[-115.28091430341469,50.64586512339847],[-115.28066312202711,50.64613611771075],[-115.28052840280428,50.64627981738316],[-115.28013361700043,50.646552800304256],[-115.2798045095703,50.64679069053611],[-115.27975388013853,50.646822696750675],[-115.27970311616856,50.64685526239746],[-115.27942677083361,50.64705225610564],[-115.2793761387038,50.64708427101888],[-115.27935828443896,50.647099006847206],[-115.27932537416471,50.64711683648352],[-115.27899652727953,50.64735360525863],[-115.27884409722527,50.647451860484644],[-115.27822343555256,50.64753313228216],[-115.27773665565489,50.64759330731817],[-115.2776636542796,50.64759929119154],[-115.27763421206167,50.6476026899678],[-115.27761849185055,50.64760854529347],[-115.2776047719741,50.647606079856025],[-115.27717700741597,50.64765890432601],[-115.27711692299206,50.64767069228811],[-115.27704405377531,50.64767612518257],[-115.276556205362,50.64774072627568],[-115.27598083093389,50.647812181320504],[-115.2757273091991,50.64785462691481],[-115.27566815936316,50.647862524576496],[-115.27555861588365,50.64796095268826],[-115.27529428184523,50.64804835759455],[-115.2752788280876,50.64805310256655],[-115.27520489036442,50.64806297433901],[-115.2747994867903,50.64814181150753],[-115.27472528188746,50.64815279298033],[-115.27466412844011,50.648169019690535],[-115.27455968196573,50.64818672021116],[-115.27420595240226,50.64828873866543],[-115.27377427833949,50.64841727705612],[-115.27341616895842,50.648477976494014],[-115.27292737114671,50.64854645114244],[-115.27286728442184,50.64855823680204],[-115.27332575313253,50.64867538090228],[-115.2733805005994,50.648685795302846],[-115.27340794054948,50.64869072720915],[-115.27344803263284,50.64870256511756],[-115.27363717598641,50.64874929837617],[-115.27364814025623,50.64894176408284],[-115.27378541918264,50.6490851271948],[-115.27421119353639,50.64933824890868],[-115.27448928089478,50.64949128872165],[-115.27457504676215,50.64955128060733],[-115.27462458920083,50.64958334415636],[-115.27464882656875,50.64960159595631],[-115.27467319635787,50.64961929718218],[-115.27495419772391,50.64981975282038],[-115.27500494085376,50.64984682555153],[-115.27502931305153,50.64986451781417],[-115.27505341620241,50.649883328968926],[-115.2753599934631,50.65009648512995],[-115.27538329610518,50.65011862626248],[-115.27579582698849,50.6505459462778],[-115.27583071757208,50.65057942422463],[-115.27609798316254,50.650837047132555],[-115.27614565973842,50.650876880088525],[-115.27615711073658,50.65088878529741],[-115.27617934868165,50.65091535743832],[-115.27642691669554,50.651135857704496],[-115.27646167368785,50.651169894879985],[-115.27649522860223,50.65120893157057],[-115.27654304044327,50.6512482048892],[-115.2765791321168,50.65127669192663],[-115.27662667506775,50.65131708410579],[-115.2766614323515,50.65135112121166],[-115.27695841908272,50.65160423329747],[-115.27699437679131,50.65163327963836],[-115.27712811005227,50.65202959447823],[-115.27724306045072,50.65208730440538],[-115.27754103474462,50.652217271116804],[-115.27765625303388,50.65227387058465],[-115.27770606755169,50.652304822639714],[-115.27774402896215,50.65232553911854],[-115.27775775028701,50.65232800452496],[-115.2779860532822,50.652450083045274],[-115.27805570408258,50.652517605734694],[-115.27810351867957,50.65255687832283],[-115.27813734292627,50.65259480443323],[-115.27840463372506,50.6528524211925],[-115.27865129038308,50.65307679664526],[-115.2788361223462,50.65332017988667],[-115.27908887904869,50.653638286529414],[-115.27909833119925,50.65365851212431],[-115.27912163753014,50.65368065238148],[-115.27924571835665,50.6539385854248],[-115.27927634239946,50.653989831394455],[-115.27946888093115,50.65432027649217],[-115.27956847605141,50.654501441472135],[-115.27950000887706,50.65484579344341],[-115.27948237503855,50.654978690609646],[-115.27953960504546,50.65515745056577],[-115.27954372069482,50.65519987651374],[-115.27955557503884,50.65521011184001],[-115.27956502773007,50.655230337357416],[-115.27956182551752,50.65524365761387],[-115.27963502422378,50.655475087599044],[-115.2796414092914,50.65550807390725],[-115.27965818008056,50.65555740508141],[-115.27966896714337,50.65557208047579],[-115.27966349563943,50.655594840349686],[-115.2797610535584,50.65590358806339],[-115.279914776361,50.656395544041004],[-115.27993381493118,50.65643544438609],[-115.28007668000241,50.65673438600521],[-115.28010864326683,50.6567800725923],[-115.28012754981617,50.65682052345631],[-115.28025244348679,50.65707513323255],[-115.28028440717227,50.657120819750716],[-115.28030344637793,50.657160719998345],[-115.28039971668969,50.65735575443622],[-115.28046003925493,50.657462125944015],[-115.28058068737695,50.65767485994111],[-115.28091785792408,50.65788016812468],[-115.28092958093899,50.657890953842745],[-115.2810628883818,50.658110592290186],[-115.28113255257958,50.65817811260176],[-115.28118037588891,50.65821738360538],[-115.28121620927178,50.658246978926144],[-115.2813803193926,50.658398040508615],[-115.2814963588331,50.658451305526874],[-115.28156070672074,50.65848139049313],[-115.28161373264774,50.65849902031126],[-115.28201301202408,50.65868421402833],[-115.28203845688185,50.658697473361904],[-115.28238216166402,50.65893521233273],[-115.28249443521055,50.65912327860987],[-115.28266810944321,50.65941326582465],[-115.282686884938,50.65945427557943],[-115.28270926331564,50.65948029557495],[-115.28271885279112,50.659499961270186],[-115.28281820569843,50.65968223225156],[-115.28285829285531,50.6597537020181],[-115.28287653720776,50.65979692289052],[-115.28288705954334,50.65981270792273],[-115.28290930375033,50.65983928731864],[-115.28305206711035,50.66013877448392],[-115.28317698657592,50.660393379977435],[-115.28293774361556,50.66061442368469],[-115.28277407354952,50.66075929477832],[-115.28262227436736,50.66085477410303],[-115.28255643836704,50.66089042582677],[-115.28250699459524,50.66091744209832],[-115.28218940231093,50.66110704495368],[-115.28215341551397,50.66113763591487],[-115.28210250263112,50.66117076154759],[-115.28177436802147,50.66140420448633],[-115.28161709329993,50.661522442185884],[-115.2814958075575,50.66161008004785],[-115.28137225209434,50.661707157354634],[-115.28121817744572,50.66181207424509],[-115.28119925053358,50.66183125017567],[-115.28090269059008,50.66205241945665],[-115.28086469964573,50.662091339523876],[-115.28083178112284,50.66210916040569],[-115.28081405372807,50.6621233456354],[-115.28069062774534,50.662219871560204],[-115.28052374214985,50.66237805924987],[-115.28050374508659,50.66240168398629],[-115.28049947515903,50.66241944421224],[-115.28027498185331,50.66269813296291],[-115.28014419414136,50.66288481430963],[-115.28023629905071,50.66321631861457],[-115.28027876868171,50.663337425157934],[-115.2803793222037,50.66351469798355],[-115.28041222361023,50.66355650351132],[-115.28042194532244,50.66357561874252],[-115.28043113328445,50.66359695399716],[-115.2805836320185,50.66385593198189],[-115.28061840199996,50.663889967345334],[-115.28064264952049,50.663908217530945],[-115.28066729630629,50.663924807132126],[-115.28084168106793,50.664092763657486],[-115.28091760908,50.66419382008567],[-115.28125422325759,50.664639868145485],[-115.2812871263022,50.664681673359176],[-115.28153571134656,50.664957904205274],[-115.28156968232386,50.66499526926705],[-115.28160351886079,50.66503319376359],[-115.28180534590564,50.66526570447124],[-115.28183824992139,50.6653075094912],[-115.28186143128572,50.66533019943487],[-115.28188581244797,50.66534789875228],[-115.28208790921762,50.66557929884828],[-115.28212081372598,50.66562110376927],[-115.28242122656634,50.66597958730421],[-115.28244347355113,50.66600616659773],[-115.28252180998263,50.6660972315786],[-115.2825523136965,50.66614902647271],[-115.28269524237697,50.66638833523548],[-115.28272828253004,50.66642958048993],[-115.28273640481396,50.66645535553853],[-115.28274599365545,50.666475029948195],[-115.28275758486512,50.666486374810674],[-115.2831129760248,50.66661619325505],[-115.28316454566598,50.66663992280623],[-115.28323024054107,50.666664456441325],[-115.28338868125857,50.666720122400406],[-115.28364972889275,50.666825466829934],[-115.28382096401569,50.666887477416374],[-115.28416806157739,50.667170963796],[-115.28422828717008,50.667218256607214],[-115.28454314975657,50.66745715802164],[-115.28459191865629,50.66749254650859],[-115.28464175482713,50.66752349490365],[-115.28489652485804,50.667714560988394],[-115.28492197781581,50.66772781064131],[-115.28497474918393,50.66774654868495],[-115.28501365969483,50.667763381685624],[-115.28503937950504,50.66777552129321],[-115.28545675046831,50.66794540481476],[-115.28549499544899,50.66796500825012],[-115.2856472828036,50.66816546206726],[-115.28582794848839,50.66842658075776],[-115.28590562800088,50.66852042258687],[-115.28610857082415,50.66868885858982],[-115.28614334873188,50.668722892035106],[-115.28617932608073,50.66875193482131],[-115.28619198581538,50.66875883921888],[-115.28645542997731,50.66897344726317],[-115.28649020836815,50.66900748058881],[-115.28650286822257,50.66901438494902],[-115.28653898048466,50.66904286815925],[-115.28657495834554,50.6690719108068],[-115.28677362818809,50.66931773164112],[-115.286919934624,50.66948352857946],[-115.28697602299667,50.66960764646512],[-115.28688215639247,50.669819487146874],[-115.28681256617921,50.66993030707025],[-115.28686238491636,50.670080514835824],[-115.28688063518113,50.67012374340188],[-115.28689968789047,50.67016363302505],[-115.28690834675969,50.67018718761703],[-115.28691780591281,50.67020741215024],[-115.28694311463941,50.67028085540228],[-115.28692442003947,50.67047781713215],[-115.28691161555909,50.67053109803335],[-115.28675457926032,50.67070785741287],[-115.28683705660058,50.67084134374446],[-115.28702132847943,50.671147113459135],[-115.28708513418474,50.67135830079228],[-115.28713602245932,50.671504068109044],[-115.28725955118423,50.671645506027815],[-115.28729353197991,50.671682869048894],[-115.28732857986046,50.67171579198549],[-115.28734110616159,50.67172325567734],[-115.28735070027838,50.671742920687784],[-115.28757404877193,50.67194570162744],[-115.28760776330456,50.67198417455787],[-115.28762042416967,50.67199107876681],[-115.28809502422936,50.672161368490166],[-115.28821350782849,50.67220463547247],[-115.28877299694062,50.67249842596211],[-115.28902980520809,50.67274078635904],[-115.28905552895358,50.672752924968776],[-115.28910404043813,50.672789421280946],[-115.28913868936381,50.672824013076955],[-115.28921185797975,50.67287708800601],[-115.28929353778241,50.67307353669205],[-115.2893125917519,50.67311343464334],[-115.2893179195677,50.67315085978823],[-115.2893284472949,50.67316664396175],[-115.2893404193323,50.67335521300707],[-115.28937026153994,50.67346941062505],[-115.28939543528367,50.67360303802061],[-115.28938633695455,50.67387929856491],[-115.28945749981014,50.6740003283637],[-115.28958449557145,50.67424659288938],[-115.28963114209117,50.67429085904871],[-115.28966486014595,50.67432933125024],[-115.28971270597661,50.67436860672004],[-115.28994434050303,50.674596597121514],[-115.2899771266411,50.674638949846546],[-115.29001217879514,50.67467187182429],[-115.29027753544224,50.67493833351033],[-115.29039295526229,50.67505399314696],[-115.29078973982519,50.67536951170393],[-115.29110362556769,50.67561284124946],[-115.2911514761571,50.67565210716218],[-115.29117693332438,50.67566536414298],[-115.29118733001835,50.67568169866484],[-115.29121292162206,50.67569439618586],[-115.29147403398237,50.67585935543493],[-115.29146976711318,50.67587711579627],[-115.2914730958907,50.675922870324236],[-115.29146642889614,50.67595062088644],[-115.29147615799519,50.67596973487203],[-115.29147239983345,50.67628342859165],[-115.29147665732093,50.676384927797876],[-115.2916168545412,50.6768147578143],[-115.29165403409183,50.67695805849581],[-115.29171440630824,50.677124046718056],[-115.29173239742421,50.677168384149816],[-115.29175172411107,50.67720716258872],[-115.29182155989788,50.67739337465363],[-115.29185994483987,50.6774720503763],[-115.29187780396607,50.67751693833686],[-115.29188753357948,50.67753605225103],[-115.29188206559145,50.677558812128844],[-115.29198175933553,50.677799586245015],[-115.2920093484499,50.67786358806466],[-115.2922054105604,50.67823976504123],[-115.2922881846058,50.67837213612641],[-115.29244493186036,50.67867351763139],[-115.2924638587359,50.67871396534944],[-115.29247452114176,50.67872919855121],[-115.29247212109746,50.67873918874203],[-115.29248185122856,50.678758302576576],[-115.29253050200833,50.6788538717304],[-115.29268299625926,50.678994119868],[-115.29273071743172,50.679033944396416],[-115.29275271031693,50.67906163124241],[-115.2929105392384,50.67917967860906],[-115.29303130624875,50.67933276851183],[-115.29311808464264,50.679448488485825],[-115.29332482804979,50.6798398870264],[-115.29340093980993,50.680000016454024],[-115.29345265834196,50.68014244932744],[-115.29347092117185,50.68018566741814],[-115.293481718663,50.68020034104613],[-115.29348878298723,50.68023055497616],[-115.29359728790078,50.68049433010617],[-115.29361634884187,50.68053422697062],[-115.29361941349721,50.6805810912029],[-115.29364794100934,50.68064120289099],[-115.29377831061156,50.68087358987534],[-115.29389921909949,50.68108574408469],[-115.2941162439767,50.681374775168514],[-115.29422422417316,50.68152151055839],[-115.29432047263528,50.68165746181435],[-115.29435246812662,50.6817031429635],[-115.29436299962806,50.68171892650152],[-115.2943712636091,50.68174414966346],[-115.29457496440733,50.68202904688212],[-115.29458229639394,50.68205815065552],[-115.29459189375613,50.68207782368178],[-115.29472000772559,50.68237926482561],[-115.29491104618678,50.682776525434754],[-115.29489598109883,50.682898870973474],[-115.29489131407723,50.68321644286063],[-115.29489571343917,50.68325775680358],[-115.29490331247278,50.683285750492466],[-115.29489904625423,50.683303510828296],[-115.29489158125416,50.683394216255856],[-115.29496383943093,50.683570434800664],[-115.2949829028917,50.68361033128605],[-115.29499023540083,50.68363943497801],[-115.29499983541278,50.683659099052115],[-115.29512808888357,50.68395998859178],[-115.29518115063681,50.684096869892215],[-115.29520061517144,50.684313988945796],[-115.29530220672237,50.68448736326421],[-115.29549392739489,50.68482220877609],[-115.29554192388557,50.68486092180638],[-115.29575990980297,50.68508643417113],[-115.29579350683376,50.68512546347763],[-115.2958413716601,50.68516472693542],[-115.2960010967444,50.68533463251522],[-115.29597390107021,50.68544785463927],[-115.29589404524624,50.685780310190005],[-115.29584591958574,50.68598066434182],[-115.29577126231729,50.68629146977833],[-115.29575846382464,50.68634475069381],[-115.29575006373078,50.686379720732006],[-115.29568500415554,50.68665056529471],[-115.29567433857656,50.686694966030785],[-115.29566793921902,50.68672160647087],[-115.29558941421764,50.68704850233195],[-115.29544742388984,50.687579957474235],[-115.29535902804578,50.68788829892026],[-115.29534542864305,50.687944909735435],[-115.29533702792818,50.68797987967612],[-115.29527303017879,50.68824628342288],[-115.29524863053878,50.68828822088856],[-115.29523809853606,50.68833206204906],[-115.29520556588815,50.688467483883365],[-115.2951634331509,50.68864286621253],[-115.29514383347495,50.68878408117828],[-115.29493809715153,50.689163430225264],[-115.29493303036979,50.68918452047855],[-115.29479382794275,50.68946579850562],[-115.2947707605864,50.68950218574338],[-115.29474835882473,50.68953580238388],[-115.2947451586698,50.689549122532654],[-115.29461221995726,50.68980431936873],[-115.29460195366254,50.68984705037881],[-115.29458075275477,50.68987566747961],[-115.29457675246836,50.68989231765287],[-115.29445994579422,50.69013998732698],[-115.29443327642443,50.690191364052595],[-115.29424912820323,50.690719306554776],[-115.29414698389841,50.691025182629836],[-115.2941365824631,50.69106847297981],[-115.29411644749959,50.69109264991538],[-115.29411111340957,50.69111485009204],[-115.29401950119208,50.691376885013405],[-115.29400896726472,50.691420725897515],[-115.29400496662862,50.691437376019685],[-115.29399776547616,50.69146734623855],[-115.29389561775722,50.691773221812475],[-115.29372279131363,50.692253991608794],[-115.29372612360122,50.692299745180556],[-115.2937495820989,50.6926194695477],[-115.2937539813316,50.69266078307519],[-115.29375731368118,50.692706536623945],[-115.29377877596973,50.69297494839187],[-115.29378210836788,50.693020701922876],[-115.29377570698601,50.69304734205474],[-115.2937853063438,50.69306701489409],[-115.29379609994758,50.693379826746906],[-115.29382849327355,50.69372199408254],[-115.29376754745431,50.693916001570024],[-115.2936652602957,50.69422242660814],[-115.29364005570118,50.694267693436096],[-115.29363578793937,50.69428545349246],[-115.29362951859115,50.69431154301425],[-115.29353683221635,50.69457800767991],[-115.2935412314452,50.694619321119966],[-115.29353056185307,50.69466372123193],[-115.29351214872442,50.69497882529277],[-115.29346412345296,50.69547677229192],[-115.29346852270297,50.695518085690864],[-115.29343610655675,50.695831836075804],[-115.29342543657249,50.695876236114024],[-115.29342983582603,50.69591754949489],[-115.29341649297042,50.696151930247744],[-115.29340795690834,50.696187450263665],[-115.29339648655362,50.69623518028161],[-115.29338928422538,50.69626515029084],[-115.29338608318754,50.69627847029453],[-115.2933248607161,50.69659284365478],[-115.29326643603186,50.696955190196135],[-115.29322535480269,50.697126130035194],[-115.29316439681536,50.697439392993715],[-115.29316799568456,50.69748403630311],[-115.29315732504243,50.697528436228914],[-115.29310677004183,50.69779840909529],[-115.29309636603415,50.697841699001174],[-115.29308916324783,50.69787166893409],[-115.29308489492546,50.69788942889373],[-115.29307315702155,50.69793826877969],[-115.29311048594938,50.69820027130334],[-115.2931628840382,50.69851881089748],[-115.29317688571322,50.69857978804301],[-115.29319381842032,50.698688187859126],[-115.2931960835563,50.698738381084596],[-115.29323541228945,50.69905168652169],[-115.29323874458488,50.69909743973986],[-115.29324821268142,50.69911766304269],[-115.29324501139833,50.69913098299738],[-115.2932579475599,50.69913677634801],[-115.29327074674735,50.699262376580165],[-115.29344945296083,50.6993534732626],[-115.29351413425458,50.699382439874434],[-115.29356587934963,50.69940561313615],[-115.29396263750986,50.69960296503694],[-115.29405159177068,50.69965017783914],[-115.29418162183943,50.69976496343695],[-115.29419549087646,50.699766876122894],[-115.2943859379652,50.69980913135876],[-115.2944407526743,50.69981953478606],[-115.29450943647925,50.69983185083302],[-115.29483631744291,50.6999026266978],[-115.2949188727316,50.699916846216105],[-115.29498862375782,50.699924721970255],[-115.29505744017393,50.699936487119025],[-115.29534698077731,50.69998377263044],[-115.2955428987415,50.700003266440184],[-115.295894855899,50.700029322804816],[-115.29638951397605,50.699998184167676],[-115.29671613006018,50.699950799425714],[-115.2968696364977,50.699967901555425],[-115.29693912125812,50.699976886094156],[-115.29700807267497,50.699988090597714],[-115.2971626460792,50.70000075230754],[-115.29742671433372,50.70003478606949],[-115.29749553369089,50.7000465408337],[-115.29756635205987,50.70004997495548],[-115.29778961091144,50.700074949916775],[-115.29806007992792,50.7000823420381],[-115.2981023576804,50.700085290306916],[-115.29825786608873,50.70009406103586],[-115.29848752514218,50.7000923944342],[-115.29893870552156,50.70006328697439],[-115.29898951990441,50.70009034717345],[-115.29900232483178,50.700096690416174],[-115.2993652395518,50.70031573784921],[-115.29939058088306,50.70032954313295],[-115.29979458422882,50.700616159979035],[-115.29991329400856,50.700718486128594],[-115.30021940808606,50.700995083007825],[-115.30021407583759,50.70101728321584],[-115.30021741539184,50.70106303611912],[-115.30019570701793,50.701332386009334],[-115.30018304386269,50.701385107038284],[-115.30043927302674,50.70157113046508],[-115.30048689903275,50.701671133606325],[-115.3006906011605,50.70201620478725],[-115.30082599591326,50.70216840563797],[-115.30095098516391,50.70230427320177],[-115.30121028040139,50.702417901605926],[-115.30125789967641,50.70245828082763],[-115.30149093851071,50.702681240176176],[-115.30152455369333,50.70272026694416],[-115.30157244229382,50.70275952712593],[-115.30172384530049,50.70290475842533],[-115.30179348578906,50.70303244513854],[-115.3018371096039,50.703089465375356],[-115.30191796552299,50.703289787260275],[-115.3022639745007,50.70346004999317],[-115.30232840082462,50.70349012136919],[-115.3023790889096,50.703517730481764],[-115.30272656644182,50.70368189110889],[-115.3027783212488,50.703705059982525],[-115.30281620334786,50.70372632610731],[-115.30282900985323,50.70373266888386],[-115.30300881950112,50.70381930972964],[-115.30306820359412,50.703989726576815],[-115.30307994184024,50.70400051825582],[-115.30334477187927,50.704389525239414],[-115.3034065469248,50.704490319445476],[-115.30348820185411,50.704627677604385],[-115.30359626862456,50.704774399883846],[-115.30362775479973,50.70482230602981],[-115.30392658007263,50.705069780137336],[-115.30396019916174,50.705108806061794],[-115.30401022478668,50.70513918497577],[-115.3041521693935,50.70526419033124],[-115.30427691079487,50.70540116368842],[-115.3046383322109,50.705805740238965],[-115.30467756350824,50.70588107885949],[-115.30486636734885,50.70616903728283],[-115.30489705627511,50.706220273035875],[-115.30511933745188,50.706488183842886],[-115.30515322729579,50.70652609044767],[-115.30518511721164,50.706572326593],[-115.30538751756943,50.70680368203351],[-115.30542034180448,50.70684602860347],[-115.30574484572027,50.70728507827254],[-115.30577526989987,50.70733742373194],[-115.3059175084224,50.70752093964101],[-115.30601063642156,50.707610564804106],[-115.30605826552437,50.70765094173044],[-115.30608028278472,50.7076786161309],[-115.3060932230664,50.70768440793567],[-115.30614098664081,50.70772422537535],[-115.3063716624192,50.70789754018077],[-115.3064067525712,50.70793045571017],[-115.30643196605162,50.70794481871934],[-115.30645531618411,50.70796694295566],[-115.30678565325198,50.70820269055149],[-115.3069063987791,50.70829667878345],[-115.30711312881881,50.70868914841896],[-115.30720227945545,50.70885505463809],[-115.30722592934856,50.70899532362438],[-115.3072300761045,50.70903774583669],[-115.30724195098077,50.70904797756541],[-115.30724716370298,50.709085959708084],[-115.30728232056927,50.70935738473428],[-115.30730167241991,50.70939616788097],[-115.30731008307777,50.70942082980983],[-115.30731969400178,50.70944049222389],[-115.30746197642193,50.709743269436494],[-115.3074778664215,50.70979647386506],[-115.30775586015511,50.710250331725696],[-115.30792842873954,50.710546371531386],[-115.30796258836642,50.71058317596585],[-115.30796900209288,50.710616158492556],[-115.30798141051028,50.71062417009109],[-115.30812475071063,50.710862874194206],[-115.30813529389783,50.71087865588754],[-115.3081691874727,50.710916570260636],[-115.3081938723784,50.710933143973925],[-115.30820308323662,50.71095447574156],[-115.30835160416267,50.71111190682547],[-115.30845115651172,50.711234520933644],[-115.30848278670186,50.71128186589665],[-115.30849150061731,50.71142467227433],[-115.30870343685444,50.711735864928094],[-115.3087362678257,50.71177821027677],[-115.30890603244413,50.71202627595221],[-115.30893912814969,50.71206752009021],[-115.30895795180814,50.71210851397903],[-115.30911584271973,50.71234634773267],[-115.3091277189014,50.712356579220916],[-115.3091614822673,50.71239504379496],[-115.30919750951975,50.71242407765384],[-115.3092093857406,50.712434309132405],[-115.30946027230144,50.712702691980084],[-115.30956303075767,50.7128119757829],[-115.3100405814841,50.71309143701514],[-115.31007754347186,50.713116581063275],[-115.31043753307821,50.71328872716972],[-115.31048823721915,50.71331633228122],[-115.31052639964685,50.71333647664962],[-115.31053894142245,50.71334393736877],[-115.31069252082139,50.7134206429426],[-115.31083357668457,50.71354952808795],[-115.31086854238245,50.713582992565115],[-115.31087895289618,50.713599333398456],[-115.31090364027831,50.71361590646028],[-115.31113867024864,50.713890704167234],[-115.31119805556055,50.71394186042555],[-115.31131076288956,50.71424858905625],[-115.31137232363918,50.71441011923301],[-115.31139983077145,50.7144746640527],[-115.31148594604642,50.71465332649993],[-115.3115145170176,50.71471344007565],[-115.3115336105527,50.71475332338307],[-115.31155256984913,50.71479376613503],[-115.31163226929834,50.71493944625068],[-115.31156173671987,50.715054165190686],[-115.31153880408067,50.71508999534277],[-115.31152266396383,50.71509752444699],[-115.31149919630539,50.715135583507035],[-115.31131572490862,50.71542225994023],[-115.31101131769421,50.71591419368598],[-115.31099424573759,50.71592560332468],[-115.31081076788486,50.71621227866124],[-115.31078343670198,50.71626642830842],[-115.31076023424781,50.716303377145216],[-115.31060102190062,50.71654866312435],[-115.31057675335543,50.71659005196972],[-115.31055541784174,50.71661922176701],[-115.31053741186034,50.716634520817536],[-115.31035419464664,50.7169200851503],[-115.31005163199639,50.717404245320026],[-115.31003229319252,50.71742509433675],[-115.31000496033154,50.717479243716014],[-115.30994407094495,50.717732885885454],[-115.30993354638888,50.71777672690615],[-115.30992288751027,50.71782112736947],[-115.30987294346706,50.71808888133044],[-115.30986228445433,50.71813328177159],[-115.30985189189659,50.718176572198566],[-115.30977701159303,50.718488485180735],[-115.30970388189812,50.718852809715024],[-115.30966377487492,50.71901987058657],[-115.30960210244079,50.71933646444245],[-115.30959144286368,50.71938086479246],[-115.30958637955716,50.71940195495757],[-115.30958118406674,50.71942359568624],[-115.30954334232557,50.71958121689061],[-115.30944930720442,50.71967436114838],[-115.30939754856819,50.71971082696366],[-115.30936060164682,50.71974530516339],[-115.30907007932493,50.720000075665595],[-115.30861081784983,50.72042028363463],[-115.30859094403505,50.72044335233765],[-115.30836593405604,50.72072374789333],[-115.30832685114238,50.72076711462191],[-115.30828963599815,50.720802702428394],[-115.30810223876017,50.72104584009423],[-115.30806515540921,50.72108087725273],[-115.30804101640881,50.7211217058847],[-115.30802180727174,50.72114200390064],[-115.3078688436437,50.721420826130995],[-115.30781936435211,50.72150748271798],[-115.30791817508174,50.72175267008149],[-115.30816158944043,50.72187325769427],[-115.30827702520914,50.721929820847045],[-115.3086019587696,50.72200942569675],[-115.30865466953497,50.722028710775405],[-115.30868229254165,50.72203307413064],[-115.30898618990732,50.722259999062146],[-115.30903503764854,50.722295374565896],[-115.30907213884895,50.72231996811225],[-115.30925742317216,50.72256327205649],[-115.30930227371807,50.722615297486094],[-115.30941855063382,50.722787782410656],[-115.30975356365654,50.72306426909149],[-115.30991039175277,50.72318728572806],[-115.31006708639235,50.723310861569],[-115.31011673563067,50.72334290654186],[-115.31016571975792,50.723377722063574],[-115.31039662374508,50.72355047479341],[-115.31043133041725,50.72358504901824],[-115.31046536984384,50.723622402684015],[-115.31048859581203,50.72364508511068],[-115.31074743500737,50.723940342798414],[-115.31083514269639,50.72405272175289],[-115.31109689753056,50.7242761375968],[-115.31123037249547,50.72437702936748],[-115.31143486323279,50.7245404086895],[-115.31160406997809,50.72455218106805],[-115.31167506027523,50.72455505557736],[-115.31174591841378,50.724558480605054],[-115.31178822012922,50.72456142360584],[-115.31204476406523,50.72474685586697],[-115.31207947080134,50.7247814384111],[-115.31212832372682,50.724816812457],[-115.31239302045262,50.725028014981525],[-115.31242706260727,50.72506536798612],[-115.31283488309853,50.725456751812835],[-115.31294298297641,50.72548420882599],[-115.31340527308058,50.72558896735051],[-115.31347413368952,50.72560072079041],[-115.31354179646988,50.7256174647927],[-115.31356835644799,50.72562626696102],[-115.3139374919134,50.725701037059146],[-115.31402036714265,50.72571413200839],[-115.31407428452962,50.725728414955896],[-115.31445636826768,50.72580897408482],[-115.31453444854601,50.72584204886494],[-115.31496848054122,50.726004840294905],[-115.31529025882553,50.726097745458766],[-115.31535805516127,50.726113937784405],[-115.3157770939485,50.726160003557304],[-115.31584595818626,50.726171746647104],[-115.31590200769624,50.72617714858673],[-115.31591575370223,50.72617960908215],[-115.31598554924271,50.726187471473615],[-115.31636457821294,50.726280784763915],[-115.31637699246207,50.72628879528153],[-115.31643117765152,50.72630196706589],[-115.31644492372479,50.726304427495826],[-115.31675282685342,50.7263954274322],[-115.31688602650048,50.726437791527225],[-115.31707460950345,50.72648833629349],[-115.31725160809009,50.7265871620644],[-115.31740268433093,50.72661477614963],[-115.3176025578781,50.726558518021285],[-115.31762283033343,50.726533778413184],[-115.31773353868023,50.726430878089936],[-115.31773779996038,50.72641311778697],[-115.3178052415596,50.726251535447894],[-115.31781642729356,50.72620491463448],[-115.31783882794875,50.72617130370133],[-115.31774621301538,50.72590003649043],[-115.31773566291739,50.72588425598387],[-115.31772711134417,50.72586014588872],[-115.31771027242166,50.725810824554934],[-115.31765496198135,50.72568284087617],[-115.31761216926871,50.72550268622042],[-115.31751081175254,50.7250886152591],[-115.31756680018977,50.72497476368533],[-115.31757612157757,50.7249359129693],[-115.31778743916949,50.72483192351265],[-115.31791857798983,50.72476335445787],[-115.31798208278461,50.724737674759055],[-115.31803170761202,50.72471009423688],[-115.31825903340612,50.72459912447085],[-115.31834760240238,50.72452872436578],[-115.31836440945936,50.72451842374163],[-115.31839842619911,50.72449614413064],[-115.31844911570647,50.724464123322896],[-115.31872763051813,50.724259280853296],[-115.31876484237993,50.72422368083402],[-115.31884405700013,50.72413250919197],[-115.31914543108941,50.724011637730115],[-115.31945082904109,50.72393374590427],[-115.31963481455755,50.723883895225406],[-115.31993821490515,50.72381432281667],[-115.3199837115632,50.72380394238518],[-115.32004508376049,50.72378714170649],[-115.32035354155218,50.72369647762991],[-115.32041810843239,50.72366635639883],[-115.32046493605966,50.723650425624875],[-115.32048161024373,50.72364067524599],[-115.32054511198238,50.72361499405617],[-115.32068985430796,50.72354944103625],[-115.32098057022955,50.723472965733976],[-115.32101192043449,50.72346179448535],[-115.32146684593137,50.72329835401328],[-115.32171831817406,50.72320617650121],[-115.32196885872854,50.723117879089536],[-115.32211985417112,50.72302623395195],[-115.3221537337496,50.72300451261541],[-115.3221833541024,50.723000551812305],[-115.32223417338263,50.72296796977341],[-115.32243385510192,50.7228526312843],[-115.3225734025927,50.72280871700444],[-115.32258901125202,50.72280340644209],[-115.3226358372078,50.72278747474179],[-115.32269907032033,50.72276290233703],[-115.32313571019634,50.72261587474992],[-115.32337010386104,50.72253510484804],[-115.32365681624165,50.72247527305205],[-115.32393487895439,50.72245151234087],[-115.32441921310212,50.72240447034936],[-115.32447738805288,50.72240098768924],[-115.32449339661792,50.722394007357664],[-115.32455157154938,50.722390524658806],[-115.324891040307,50.72240958931486],[-115.32499271228463,50.72240405367056],[-115.32500858664301,50.72239763272609],[-115.32505275006615,50.72239280042032],[-115.32512693341491,50.72238233700767],[-115.32531813064705,50.722362136714715],[-115.32561875838945,50.7223638307266],[-115.32564837801334,50.72235986900168],[-115.32624288956985,50.7224511870964],[-115.32644627617802,50.72249973533412],[-115.32690763683402,50.72260831906085],[-115.32697556619257,50.72262394493877],[-115.32700292313969,50.72262942268623],[-115.32704296344386,50.722641790867115],[-115.32735525202156,50.72271445065236],[-115.32743573103595,50.722737526114514],[-115.32750233044105,50.722758701903764],[-115.3275702602344,50.72277432741728],[-115.32801242558772,50.72290320787731],[-115.32814708771761,50.722939457894434],[-115.32878945798521,50.72313019169057],[-115.32895028285446,50.72317690881234],[-115.32924577416611,50.72325986549834],[-115.32931357337705,50.723276040527374],[-115.32933880281284,50.72329039810356],[-115.32955780672208,50.72333362024266],[-115.32970608535052,50.72337287777027],[-115.32975787679972,50.723396033597986],[-115.32982261618638,50.7234249783479],[-115.32983529806083,50.72343187734496],[-115.32998987494467,50.72350467472537],[-115.33019531216023,50.723604517127704],[-115.33027047416593,50.723649791568164],[-115.33033308623305,50.723687616432656],[-115.33065123930072,50.72373584575935],[-115.33069473951366,50.72373378192327],[-115.33076572973641,50.72373664430247],[-115.33095187644825,50.72373752541453],[-115.33117083499117,50.723721122380724],[-115.33125743530366,50.723718663809024],[-115.33147426585117,50.72371114061763],[-115.33181600718521,50.723720753168585],[-115.33210688750995,50.72370332032932],[-115.33235214203094,50.723696822809785],[-115.33262502070997,50.72369469105748],[-115.33266825272028,50.72369374539111],[-115.33274137267365,50.72368771716979],[-115.3330904283477,50.7236667947792],[-115.33317636255735,50.723667114307716],[-115.3332332088141,50.723669177388985],[-115.33327551109858,50.72367211225542],[-115.33330393316801,50.723673148214736],[-115.33357508422984,50.72367822508859],[-115.33368709972214,50.72374919263866],[-115.33375489914629,50.72376537384298],[-115.33392961175174,50.723813982595146],[-115.33409983442219,50.7237616497987],[-115.33415841510372,50.72345725476547],[-115.33417303991882,50.723396201356096],[-115.33421061331848,50.7231795010912],[-115.33423074107378,50.72315531784286],[-115.33425605282773,50.723109492809826],[-115.33428136665718,50.723063658888016],[-115.33445421864802,50.722820799270174],[-115.33445834108252,50.72280358884586],[-115.33447846853565,50.72277940554226],[-115.33450245035806,50.72273913075117],[-115.3345489546601,50.72266467317869],[-115.33484708596964,50.72255707991545],[-115.33487883196929,50.72254423522558],[-115.33511009326226,50.722416579910856],[-115.33546721752757,50.72218236287842],[-115.33548508536434,50.72216761050265],[-115.33580594084042,50.72196510832842],[-115.33585050252086,50.72195860220888],[-115.33589705703109,50.72194377500154],[-115.33591186625111,50.721941792776335],[-115.3359741593543,50.721921102511025],[-115.33614118228711,50.72188208730691],[-115.33637156107939,50.72181794108518],[-115.33640237461351,50.72180898563421],[-115.33643292442207,50.72180113136353],[-115.33650816536333,50.72178622898727],[-115.33676316709317,50.721798830786284],[-115.33695991644417,50.72187511167182],[-115.33698754210674,50.72187946802743],[-115.33711524212211,50.72188493811874],[-115.33776427850142,50.72204787764667],[-115.33779190434848,50.72205223380248],[-115.33811874960826,50.722123991140464],[-115.3382457870279,50.722132230679975],[-115.33831690915885,50.722134528788445],[-115.33836000771178,50.72213413151393],[-115.33856500072794,50.72217599726059],[-115.33873952136686,50.72216552708376],[-115.33879689754411,50.72216536718822],[-115.33886775397384,50.722168775020506],[-115.33888269709078,50.722166232924216],[-115.33891018916572,50.722171148280545],[-115.33893874436758,50.7221716233301],[-115.33908045727914,50.72217843876972],[-115.33942830123485,50.72216249631572],[-115.3394855455855,50.722162886664194],[-115.33962188295551,50.722132280847426],[-115.33998461071086,50.72205416348172],[-115.3401926009614,50.72202363381026],[-115.34025210292664,50.722014592541775],[-115.34062325995154,50.721961132171],[-115.34073854323825,50.72195859025592],[-115.3407681612589,50.72195462451974],[-115.34079857647295,50.721947328536515],[-115.34087155855894,50.72194185446083],[-115.34101659156882,50.72193479588745],[-115.34132133675378,50.7219192369526],[-115.34136443507326,50.721918838518754],[-115.34143741704388,50.72191336407308],[-115.34159712703548,50.72190487238611],[-115.34186374921501,50.72192880941822],[-115.34193460550404,50.72193221530594],[-115.34221484239403,50.721959159404044],[-115.3426414430808,50.72197348281622],[-115.34278634413525,50.72196697254686],[-115.34307827152996,50.72194507076301],[-115.34326839612402,50.72192928007424],[-115.3433108291967,50.72193166054363],[-115.34332563808509,50.721929677335424],[-115.3433392525204,50.72193268507086],[-115.34341329694473,50.72192276899119],[-115.34355726683528,50.72192014746251],[-115.34383518166646,50.72189689667931],[-115.3438786794893,50.72189482770441],[-115.3439082971903,50.721890861135265],[-115.34395258984212,50.72188547075073],[-115.34445097801503,50.72177949835496],[-115.3444962012955,50.721770218003556],[-115.34517600811974,50.7216249094661],[-115.34525204484798,50.721606662044344],[-115.34561382784867,50.7215324161081],[-115.34573309387531,50.72151321766088],[-115.34579312526036,50.72150195325118],[-115.34586743403625,50.721490925447334],[-115.34588210880159,50.72148950138567],[-115.34624030095382,50.72131043143776],[-115.34627005191949,50.72130590475244],[-115.34633008289235,50.721294640051326],[-115.34663010344994,50.721238875547186],[-115.34681544336661,50.72124306050873],[-115.34715916202849,50.721244295992875],[-115.34755001896696,50.72104848380485],[-115.34780992271038,50.72092072420623],[-115.34789465784532,50.7209260234117],[-115.34795595321728,50.720969389007266],[-115.34800509581976,50.72100363741864],[-115.34805370740132,50.72104010600333],[-115.34837140956535,50.72126994004928],[-115.34843722004986,50.72129443368753],[-115.34881594832459,50.72144892912455],[-115.34885519699435,50.721464619801104],[-115.34930133273652,50.721636946307754],[-115.34961351865564,50.721710094554155],[-115.35012991129098,50.721828416764765],[-115.35014259583616,50.72183531346881],[-115.35016889525177,50.7218452170747],[-115.35019439605544,50.72185845986167],[-115.35054497921804,50.722010807567756],[-115.3506107919758,50.72203529990401],[-115.35062214920154,50.72204774706649],[-115.35066153070956,50.722062886486206],[-115.3508838081419,50.7221523766088],[-115.35107753108592,50.722241394340664],[-115.35142705622546,50.72239818850464],[-115.35164947064145,50.72248711757556],[-115.35180280961119,50.7225052538165],[-115.35181655645924,50.72250770990449],[-115.3522627317869,50.72238022670308],[-115.35232408994337,50.72236340826256],[-115.35238757164173,50.722337708934056],[-115.35262323838462,50.72225132709095],[-115.35273831231643,50.722189701321916],[-115.35275312087316,50.722187716864354],[-115.3527877812976,50.722162655892966],[-115.35283844361975,50.72213061939532],[-115.35308565564877,50.72199594240595],[-115.35321659844453,50.721927891185565],[-115.35341407251182,50.72182137805793],[-115.3537112250882,50.72171761528553],[-115.35394263953316,50.72164899236841],[-115.3539889223372,50.72163526772677],[-115.35431895137981,50.72157384373278],[-115.35440979045354,50.72155361428806],[-115.35448595493934,50.72153480996297],[-115.35454624954555,50.72152243073632],[-115.35468284220275,50.721490687519605],[-115.35493078610737,50.72141286652269],[-115.35500721551395,50.72139295172499],[-115.35506830591505,50.721377241871714],[-115.35528504212172,50.721310041414746],[-115.35552475769096,50.72126663264935],[-115.35571752862309,50.721239719601094],[-115.35573326655297,50.7212338448994],[-115.35591282125371,50.721202255671145],[-115.35622604526117,50.721151141205105],[-115.3563463671056,50.72112749094693],[-115.3567483065674,50.72106501596973],[-115.35678946558468,50.72101275137158],[-115.35681448775823,50.720968031232225],[-115.35683261342213,50.72095216530201],[-115.35702531796724,50.72068563338917],[-115.35706329031922,50.720646698987565],[-115.3570864568849,50.72060974072802],[-115.35746537350936,50.720403676290466],[-115.35751337952813,50.72038272993882],[-115.3581130806337,50.72015243722397],[-115.35816811526792,50.72010207675865],[-115.35818716756287,50.7200823296009],[-115.35825488731213,50.72003886489226],[-115.35850817305831,50.71987864272042],[-115.35852709140667,50.71985945500223],[-115.35855896241877,50.71984604403922],[-115.35861054754405,50.71981011495916],[-115.35896328406358,50.71959358409853],[-115.35901380750265,50.719562095325564],[-115.35938262875668,50.719398200049845],[-115.3594174148909,50.71937258631597],[-115.3595353898987,50.71929874193398],[-115.35985006427478,50.719061512277655],[-115.36002987262391,50.719028806221296],[-115.36020968071092,50.71899609987421],[-115.36032102648707,50.71877002192378],[-115.3603242092588,50.71875670036047],[-115.36034869831317,50.71871419069028],[-115.36044050730375,50.71844989852483],[-115.3604447509214,50.718432136429065],[-115.3604511163416,50.71840549328447],[-115.36047560508403,50.718362983568895],[-115.36051945297311,50.71823944313795],[-115.36052091581946,50.71805334687228],[-115.36052348510988,50.71780262814652],[-115.36094841719135,50.71770373821302],[-115.36124136878325,50.71767734831559],[-115.3614156458045,50.71760777088111],[-115.36146404372091,50.717585162001505],[-115.36152751342418,50.71755945733392],[-115.36155832113305,50.71755048601766],[-115.36183916042043,50.717454796918425],[-115.3619026297244,50.71742909203382],[-115.36196503822643,50.717407827656025],[-115.36202850739188,50.71738212269844],[-115.36244025968647,50.717218369987506],[-115.36253652326442,50.717175371573084],[-115.36326924541102,50.71716790610516],[-115.36382879984164,50.71716538595526],[-115.36384267721856,50.71716728994877],[-115.36387136312575,50.71716719911598],[-115.36388404846505,50.71717409429736],[-115.36391246712267,50.717175122476014],[-115.36432736383905,50.7172382093376],[-115.36439609345315,50.71725048212904],[-115.36442345168854,50.7172559507453],[-115.36446482310485,50.71726275487801],[-115.36494950961891,50.717333680439985],[-115.3653915026043,50.71740334195941],[-115.36578531200452,50.71737468914342],[-115.36626928232,50.71732857555333],[-115.36634132708474,50.71732696587736],[-115.36641429853523,50.717321475082386],[-115.36683838079124,50.71728607505798],[-115.36686799341913,50.71728210237927],[-115.36691121852456,50.71728114345246],[-115.36696938352476,50.717277638640525],[-115.36727594341228,50.71725423777086],[-115.36745785946874,50.71721263849602],[-115.36763871502563,50.71717547952171],[-115.3682719721401,50.717044310641],[-115.36837747046235,50.717022633835164],[-115.36835011861888,50.71677699785962],[-115.3683467084295,50.716731247864274],[-115.3683425031862,50.71668882832234],[-115.36832584885016,50.71645841750689],[-115.36833432946293,50.716422892632515],[-115.36832455886271,50.71640378627477],[-115.36833091931656,50.71637714261752],[-115.36832750917716,50.716331392599955],[-115.36833099847203,50.71601660119092],[-115.3683334889126,50.71582606372412],[-115.36825847760716,50.715479904232915],[-115.36825003232128,50.71545524708022],[-115.36813057241172,50.71517522013558],[-115.368124512403,50.71514057158261],[-115.36811262203737,50.71513034640596],[-115.36809321304537,50.715091582956],[-115.36803883220738,50.71495918202697],[-115.36798471670842,50.71482567089722],[-115.36797826039242,50.71479268311186],[-115.3679655750972,50.71478578837626],[-115.36794855154851,50.71473703350229],[-115.36785049050792,50.71448744781044],[-115.36781959049499,50.714436789398114],[-115.36772470895735,50.714173890539826],[-115.36806463878436,50.71401060801343],[-115.36846709801759,50.713825505682756],[-115.3685308233904,50.71379868676528],[-115.3685792136139,50.7137760747009],[-115.36891900376447,50.713613349016136],[-115.36898259501295,50.71358708935353],[-115.36904605475472,50.71356138029215],[-115.36943529084306,50.71337160006443],[-115.3696912468516,50.71325988126497],[-115.3701274100627,50.71305358741063],[-115.37052985220492,50.71286847743711],[-115.37058035995615,50.712836983182655],[-115.37064275795986,50.712815713840804],[-115.37098266476231,50.71265243105202],[-115.37103211223359,50.71262537723974],[-115.37109450972898,50.71260410764012],[-115.37149813703765,50.712413993899695],[-115.37191735794413,50.712218570018436],[-115.37217687838545,50.71209185368128],[-115.3725793034497,50.71190673611199],[-115.37264289013808,50.711880474312245],[-115.37269127622127,50.71185786041485],[-115.37303103693769,50.71169512185046],[-115.37306316269081,50.71168059645004],[-115.37309475655798,50.7116683002612],[-115.3731582112307,50.71164258880492],[-115.37354754677695,50.711452234288714],[-115.37412737101216,50.71118419177438],[-115.37423947377523,50.71113475495595],[-115.37462773888743,50.71094884613505],[-115.37469225098141,50.71091869308721],[-115.37475464436918,50.71089742139972],[-115.37493403920979,50.71080616946336],[-115.37485300158741,50.710545169283854],[-115.3747545394963,50.710237075692966],[-115.37474609162803,50.710212418879195],[-115.37473764376905,50.710187762063974],[-115.37473224033278,50.710150342667184],[-115.3746394480783,50.70987855806551],[-115.37463285411118,50.70984613000126],[-115.37461688449096,50.709792935155996],[-115.37451842567101,50.70948484108334],[-115.3744404124998,50.70927125123321],[-115.374343280167,50.70895760593338],[-115.37424508988458,50.70864840113917],[-115.37424826780553,50.708635079020276],[-115.37422819531517,50.70859908734062],[-115.37422279249489,50.708561667849025],[-115.37412868247199,50.70829543319809],[-115.37412447255431,50.708253013451944],[-115.37410717996553,50.708205369318144],[-115.37400793364233,50.70790060474966],[-115.3739835205741,50.707822743870395],[-115.37404064089428,50.707763493436154],[-115.37425076892536,50.70748328792549],[-115.37426795505237,50.70747130897815],[-115.37428898210096,50.707443228002894],[-115.37432692827237,50.70740428712511],[-115.374513248749,50.707163805548426],[-115.37453440684618,50.70713517386788],[-115.37455132795394,50.707124305051224],[-115.37457539891267,50.7070834613889],[-115.37480058772849,50.70680015705015],[-115.37506213180602,50.706484563198245],[-115.37518735588822,50.70631998402002],[-115.37541147788073,50.70604111892259],[-115.37543170919812,50.70601636823304],[-115.37544968879257,50.70600105853451],[-115.3754876327377,50.705962117195995],[-115.37567500010569,50.7057171925377],[-115.37571201796892,50.70568213231257],[-115.37573608709805,50.70564128833044],[-115.37596046705747,50.70536131172307],[-115.3761606444769,50.705122729330256],[-115.37637232299669,50.705196395141876],[-115.37642517654703,50.70521508907762],[-115.37649177304912,50.70523623608885],[-115.3769268914181,50.705394341038975],[-115.37745635903686,50.70557739536516],[-115.37766791052401,50.705651609334225],[-115.37810422721942,50.70580471821145],[-115.37817003124815,50.705829194775134],[-115.37822262158045,50.70584899803562],[-115.37860701208187,50.70597953062279],[-115.37865880867703,50.70600266424545],[-115.37872554080907,50.70602325036861],[-115.37916173132083,50.706176914581995],[-115.37990171746065,50.70643860857845],[-115.38033871214486,50.706588928658945],[-115.38040451854182,50.70661340388304],[-115.38045737544007,50.706632095878724],[-115.38082684565487,50.70676515952555],[-115.38089371118203,50.70678519367774],[-115.38095925351949,50.70681077876398],[-115.38139651789183,50.70695999332517],[-115.38171287097106,50.70707547264317],[-115.38213547147883,50.70722611305685],[-115.38257274592463,50.707375314056954],[-115.38262547125863,50.70739456454927],[-115.38266471945343,50.70741024360336],[-115.38269101547313,50.707420148600434],[-115.38306063215644,50.70755264519202],[-115.38312723525306,50.707573788186814],[-115.38315379607083,50.70758258287404],[-115.38319410301169,50.7075938209423],[-115.38361644878174,50.70774556585753],[-115.38399981288791,50.70788052038534],[-115.38449399580564,50.70773083797824],[-115.38513950428963,50.70754739248936],[-115.38527801581199,50.70750728924808],[-115.38572368239144,50.70738078034646],[-115.38575447615911,50.707371811130066],[-115.3857858010983,50.70736061261216],[-115.3858611347505,50.70734511719584],[-115.38624679597301,50.707229892315254],[-115.38630891423597,50.70720972428637],[-115.3863702388882,50.70719288684404],[-115.3868309658319,50.70706327431671],[-115.38701546746533,50.70701054060085],[-115.38760095404486,50.70683836748461],[-115.38806061590074,50.70671319067226],[-115.38812193921741,50.70669635225795],[-115.38818405589936,50.70667618317307],[-115.38856957212253,50.70656150972569],[-115.38860010241571,50.706553641047336],[-115.3886307638696,50.70654522169473],[-115.38869314457065,50.706523942109676],[-115.38915266688018,50.70639932030269],[-115.38953712262759,50.70628907545531],[-115.38975781284296,50.70638515116149],[-115.3898082935095,50.70641383068166],[-115.38982097979333,50.70642072300387],[-115.38985930309575,50.70644028974511],[-115.39025945507304,50.70662508520604],[-115.39059538453726,50.706778748712004],[-115.39094241648215,50.70694596467996],[-115.39135685051703,50.707130986976175],[-115.39140759743768,50.707158555529],[-115.39145834442066,50.7071861240578],[-115.39180696903905,50.70734667594384],[-115.39185771648003,50.70737424428511],[-115.39188427889022,50.707383036897546],[-115.39192353030899,50.707398712697156],[-115.39232290620974,50.70758683121336],[-115.39285140281203,50.70783443554874],[-115.39300602812709,50.707907147030895],[-115.39340647048752,50.70809082067143],[-115.39345695540389,50.70811949848421],[-115.39352171380939,50.708148406823724],[-115.39385634414553,50.70830761135551],[-115.39392216043271,50.70833207856245],[-115.39397291028709,50.70835964591033],[-115.39437230332824,50.70854775688268],[-115.39464350129634,50.708672500032925],[-115.39478557791372,50.70873775767021],[-115.3950555877114,50.70886750024476],[-115.39545485871459,50.70905615790397],[-115.3955206769709,50.709080624147184],[-115.39557142865355,50.70910819074402],[-115.39592114009224,50.709264288514795],[-115.39597189222856,50.709291854923585],[-115.39602264442722,50.70931942130859],[-115.39643712132104,50.709504424229564],[-115.40400811068426,50.712131617059846],[-115.40808761702192,50.71425883504429],[-115.41234467380052,50.720463238531636],[-115.40867810832904,50.72653972829496],[-115.40749812552252,50.73216278571049],[-115.40875401443799,50.735741896025424],[-115.41317032448801,50.73748750843068],[-115.41936139907207,50.74063473903887],[-115.4230244575293,50.745312287586344],[-115.42684381298932,50.749757562991874],[-115.43021570214034,50.75403680070149],[-115.43696645388557,50.75562547336843],[-115.44228050835441,50.75541258581569],[-115.44310352479349,50.755510197733585],[-115.44771331758982,50.75754100931304],[-115.451995069679,50.758597521519455],[-115.45868861734363,50.75710263948374],[-115.46498126189738,50.75469402570854],[-115.47031025091331,50.75453687511155],[-115.47629955853532,50.75716615577024],[-115.48027391881504,50.760980534225745],[-115.48052527480652,50.76240468646989],[-115.48104209511374,50.767256287074986],[-115.48179204736385,50.77330660256706],[-115.4878821560921,50.77958959937355],[-115.49368215710793,50.78376665731865],[-115.49780599700496,50.786720558291215],[-115.50314420923098,50.78878784360395],[-115.51079202092804,50.7881840673891],[-115.51454710020488,50.7857695541685],[-115.52373454715,50.786849529501595],[-115.52975197758073,50.7898756490271],[-115.53191434898936,50.79349154024948],[-115.53349332008149,50.79769708857304],[-115.53962479603287,50.79774573143811],[-115.54644671949723,50.79864219102602],[-115.55354005666213,50.80473712444433],[-115.55703796693068,50.80787282537337],[-115.56119471827743,50.81150608992294],[-115.56084968833889,50.8170095472097],[-115.5568675292875,50.825890604842954],[-115.55849615398643,50.83112144761782],[-115.56205913886292,50.8336845281704],[-115.56954420642786,50.83857093448528],[-115.57856027347108,50.841653229377684],[-115.59390312568122,50.844777024517576],[-115.60272522217554,50.84562996199263],[-115.60876878398034,50.84190345636568],[-115.61135694514216,50.8379617270117],[-115.6176075823952,50.83635250195358],[-115.62923238955503,50.83737434425144],[-115.63842702430986,50.84210444067767],[-115.64010865301964,50.84659586384872],[-115.64106791439848,50.85092121432937],[-115.64078472225538,50.857617031737405],[-115.64270574956917,50.86330328967416],[-115.64642618122042,50.86848624266644],[-115.64537545602532,50.87274461523526],[-115.63433810981739,50.87600015495593],[-115.62698024621193,50.879066647501176],[-115.61878455870703,50.87974821849404],[-115.61194888934395,50.88217263739462],[-115.60987269956685,50.8858206264861],[-115.60435363003579,50.88752896727819],[-115.5969895389672,50.88704586200296],[-115.58864184646336,50.888242292492734],[-115.58297881818612,50.889210488752],[-115.576518160647,50.8900833139914],[-115.56734877453972,50.89146518190571],[-115.56110337600542,50.894964721999195],[-115.56205980428054,50.89951896981743],[-115.56496733236027,50.90501409493914],[-115.56936536774715,50.90778431283052],[-115.5718932540179,50.90939304868688],[-115.57877959691291,50.91314982416963],[-115.58974309132024,50.91676740448492],[-115.59910208030185,50.921096933121134],[-115.6067145750577,50.92809486993272],[-115.60574203547924,50.932119797396076],[-115.6004931357091,50.93737523263719],[-115.59945409694461,50.938367615970655],[-115.59854619867804,50.941990618766496],[-115.60327057866606,50.94578614602952],[-115.60924928974848,50.94927109015495],[-115.6104415343395,50.95296781051304],[-115.61036269988212,50.95840069247301],[-115.61291995787312,50.96229709774112],[-115.61905217340619,50.96698287763353],[-115.62307945051822,50.971250564533975],[-115.62606714719197,50.976392016483864],[-115.62709597560594,50.980549019851004],[-115.62805466873874,50.98156171630239],[-115.6302275059142,50.98323525827641],[-115.63571781865447,50.98575756208638],[-115.64167438777758,50.99238680509372],[-115.64451387415156,50.99638978724162],[-115.64789679306892,50.998502975175505],[-115.65228135315579,50.998984404235735],[-115.65790318480947,50.999044241308916],[-115.66365053219002,50.99955389784555],[-115.66561313215051,50.9999142911661],[-115.66814770403958,51.00214674047108],[-115.67014711296994,51.00432618360384],[-115.67368381856892,51.00856728009393],[-115.67813299768494,51.0114336328234],[-115.68257459431108,51.01464391526972],[-115.6865626713154,51.01899811175511],[-115.68683343828685,51.022599362103804],[-115.6876434731924,51.02648577536901],[-115.68874022879913,51.02809124446645],[-115.6913789895416,51.02592759698714],[-115.69738102718064,51.02251043035235],[-115.70457258749984,51.020297341229686],[-115.70930115536697,51.01887560316306],[-115.71285050250403,51.016881114755904],[-115.71857015584344,51.01683724323325],[-115.7228509859316,51.01833213648861],[-115.72683702200185,51.0209113515795],[-115.73084616366293,51.022523235384995],[-115.73439042573412,51.02384040928646],[-115.73492733745941,51.02544147357855],[-115.7328342805564,51.029613340974024],[-115.73591937329226,51.03247676669422],[-115.74092744231852,51.032772272829334],[-115.74410298412694,51.031579059759],[-115.74847144297935,51.03158470173435],[-115.75383945176267,51.033314017051886],[-115.75792817374922,51.03508854327942],[-115.76548495550344,51.040076800734546],[-115.7702964551487,51.048146497976965],[-115.77074999590056,51.051860495909295],[-115.76883464998963,51.054089673919385],[-115.76311248283601,51.058425826012176],[-115.75964807327703,51.06254212107168],[-115.75927466105944,51.06608460286526],[-115.75736316895318,51.069225903132995],[-115.75263126438146,51.07201690895336],[-115.74898218478933,51.07418226218545],[-115.75171456864987,51.073728907174015],[-115.75954810798075,51.07163143134896],[-115.76500987180954,51.07060994749116],[-115.77302077377566,51.070110014614094],[-115.77993326193348,51.069490430739855],[-115.78621590253633,51.06915939377453],[-115.79613271568648,51.07002726250044],[-115.80032558389937,51.07249647424624],[-115.80205629899373,51.07575431704823],[-115.8066953082182,51.07942175142647],[-115.80870778294107,51.08039725900409],[-115.8133521145053,51.08160391486571],[-115.82081251907694,51.08155383622457],[-115.82508589145442,51.07973410601609],[-115.82909071040868,51.07613209072268],[-115.83127586060074,51.074476656803995],[-115.8358265790398,51.074708848207266],[-115.83973740734287,51.07671979452047],[-115.84092929453959,51.07831584205246],[-115.84320830533804,51.079578531036724],[-115.84702206653226,51.07912528764854],[-115.85140073265264,51.078160165982446],[-115.85521866966181,51.079133554682066],[-115.85850182520997,51.0819973590382],[-115.86588519901075,51.086119213302084],[-115.87088474578731,51.08641319083098],[-115.87707714031107,51.085218346392146],[-115.88481236627997,51.08396595452],[-115.89155241778644,51.086367178881595],[-115.89448327747623,51.08952040181627],[-115.89603041584637,51.09203438092729],[-115.90048639547048,51.09060378623298],[-115.90192994335233,51.08580415504335],[-115.90146693586296,51.08151443176873],[-115.90064955661151,51.07808106165488],[-115.90556079655695,51.07951530157914],[-115.91038699600222,51.08094389493411],[-115.91612463875681,51.082490684355776],[-115.92086729254677,51.08586986806646],[-115.92507320815923,51.09027639808158],[-115.92890396041732,51.09525548790352],[-115.93373917673733,51.09697104739429],[-115.93911637631669,51.09782979758688],[-115.94421849625205,51.09983413194187],[-115.94714661102626,51.103208617247276],[-115.94734006909387,51.10749723916363],[-115.94899031559949,51.11058849096935],[-115.95247093983073,51.112301001224836],[-115.9567564254165,51.113904745074294],[-115.96112640302736,51.1165356049216],[-115.96214365549615,51.11911290925457],[-115.9657981023445,51.120827996455326],[-115.97045136411202,51.122598378072084],[-115.98084433183881,51.12574819301799],[-115.98585514464247,51.126201406106105],[-115.9909587856715,51.124716310621324],[-115.99459516587555,51.124541296284484],[-115.9980070723141,51.124017958474525],[-116.003989457333,51.125346639351285],[-116.00924617225847,51.128159795708754],[-116.0116754298069,51.13312875148339],[-116.01164224336257,51.13723368568211],[-116.00943786160018,51.140653091157084],[-116.00823005677691,51.14349879637013],[-116.00857177094784,51.14760596123797],[-116.01117529256689,51.1525755436037],[-116.01623815201901,51.15715536156854],[-116.0180518306446,51.15904147901719],[-116.02066032812012,51.16150439589997],[-116.02638462046703,51.16374288230636],[-116.03145691356035,51.16803693126159],[-116.03124771471512,51.17094543216027],[-116.02731733865674,51.17355650489491],[-116.02385415734577,51.175314745420216],[-116.02111094786333,51.17753254024089],[-116.01863322179312,51.17991786349977],[-116.01624341677311,51.184021360906556],[-116.01466169161593,51.188067548892725],[-116.01202180857462,51.189312826719814],[-116.00900733033826,51.19004014230693],[-116.00381702193884,51.19002775282098],[-116.00109206169543,51.190816932943356],[-115.99750939715358,51.19468408591278],[-115.99613880271559,51.195878422082636],[-115.99694779389444,51.19747735503438],[-115.99811397606376,51.19890522251832],[-116.00074069145593,51.201995121182364],[-116.00135465435696,51.20439099863145],[-116.00115117716304,51.20707334863639],[-116.00250425058272,51.209528814982065],[-116.00323104012278,51.21021638223828],[-116.00304385578642,51.210212177368234],[-116.00111391257524,51.21323206692428],[-115.99918685159433,51.21521792053107],[-116.00117637457772,51.217739699374086],[-116.00361409753212,51.22020102290229],[-116.00695608908794,51.22288896937359],[-116.01142209340898,51.22330340105217],[-116.01717072945492,51.22246594962485],[-116.02273854893694,51.220827845638645],[-116.02664561757871,51.221408484215786],[-116.036828813643,51.224064255930585],[-116.04546075451248,51.228143778006576],[-116.0466985912538,51.229072335735644],[-116.05116427669735,51.23243907885492],[-116.05586781492612,51.23917949940886],[-116.05857394735459,51.244381727683724],[-116.0640092241431,51.24827545577127],[-116.07139102154359,51.24932244310077],[-116.07666678877062,51.250589755291365],[-116.08523747799353,51.251183229476894],[-116.09252051706554,51.251256249895356],[-116.09990228434022,51.25127629739528],[-116.10144674698105,51.25162144979796],[-116.11018844655612,51.25358160558889],[-116.11992365744615,51.2568612296407],[-116.1283031111309,51.25973297931538],[-116.1363165489048,51.2619152618098],[-116.14487441871024,51.263933327149324],[-116.15187576784957,51.26805491130018],[-116.15413257999217,51.27227772778522],[-116.15284556602765,51.27666940191131],[-116.150637652639,51.27980090249046],[-116.14916545193608,51.28288126955601],[-116.14915318790716,51.28630138900023],[-116.15178814421517,51.288190918756186],[-116.155874913183,51.291624845410205],[-116.15723852652044,51.2940810177462],[-116.16005589891779,51.29619526420699],[-116.16488853736017,51.29740192993487],[-116.17374067673943,51.29696949032315],[-116.17993442338515,51.29766499808415],[-116.1828535542966,51.29971833688118],[-116.18612601474226,51.30155371127797],[-116.1911393677081,51.301564941342185],[-116.19461568740805,51.299172200225385],[-116.199094525534,51.29598646654867],[-116.20302569083528,51.29519147136211],[-116.21169531486139,51.29355353828522],[-116.21515873131398,51.29355578339997],[-116.21871262051782,51.296474992271044],[-116.22316903332863,51.299444154020414],[-116.22709441552284,51.30076114828361],[-116.23293092046642,51.30117565637501],[-116.23867818709617,51.30146995404499],[-116.24269708187262,51.302041155353315],[-116.24715006655755,51.30398878614708],[-116.25335879440523,51.306453620764],[-116.25863956810801,51.30885642035381],[-116.26147144392911,51.31079781767293],[-116.26457025958533,51.313826427487435],[-116.2682966822621,51.316969206238184],[-116.27047858326294,51.32027905941253],[-116.27212349416261,51.32536155933831],[-116.27248249997733,51.326163956760716],[-116.27549728438252,51.327875968855544],[-116.28013612323835,51.33182015847982],[-116.28424332356396,51.33718842188938],[-116.28560823662174,51.34203788220582],[-116.28304190158683,51.34688575076453],[-116.28038153144064,51.35156575757216],[-116.27772759896672,51.35509946451516],[-116.27772963283152,51.35777839149258],[-116.28083248635966,51.36080808167831],[-116.28702712781435,51.363838576713746],[-116.2878521334517,51.363783392999245],[-116.29241663415607,51.36532745240886],[-116.2977095321162,51.36870031677367],[-116.3009044212661,51.373096838147305],[-116.30482512718123,51.37835125679247],[-116.30692581241632,51.3821198996136],[-116.30683357397744,51.38543096581324],[-116.30198264139007,51.38839283714948],[-116.29648713343742,51.39209925472292],[-116.29255943484321,51.3958051024844],[-116.29154309554146,51.399282992231605],[-116.29007973809335,51.40287642301002],[-116.28696648391706,51.40447147034865],[-116.2821162136253,51.406233367119164],[-116.27936849689364,51.40833995975719],[-116.28009709379951,51.41062547218733],[-116.28155981211579,51.41268029990287],[-116.28419406828179,51.415482123383214],[-116.28629458059063,51.41793947026925],[-116.28802480789287,51.42147932791316],[-116.29013347715173,51.42370507331376],[-116.29049715849388,51.42462259773851],[-116.29149267590812,51.42701922149149],[-116.29130470892407,51.42964076436917],[-116.28763664129323,51.43340406790054],[-116.28488895583963,51.43556975516046],[-116.28351608902668,51.43756607374441],[-116.283597145803,51.44041463591574],[-116.28405106605715,51.443614658044986],[-116.28368472877439,51.44657928592648],[-116.28183890810017,51.45011650497094],[-116.28192735049107,51.45234107240093],[-116.28193027005894,51.45462339995809],[-116.28311575211094,51.45616430843268],[-116.2833500905647,51.456353781336624],[-116.2867724060046,51.45902480255989],[-116.29134336347107,51.460912181434395],[-116.29545794088554,51.461774858716375],[-116.30379446521124,51.462359458239966],[-116.30800125546239,51.463332609682176],[-116.312578163723,51.463619357996784],[-116.31696979342465,51.46362560131779],[-116.32201324275707,51.46311733399789],[-116.32703945697564,51.462949942491186],[-116.33510007398395,51.463928689256264],[-116.34086162642626,51.46695752059195],[-116.34690948749179,51.46941650743605],[-116.3533139494299,51.47078734013948],[-116.36045746909498,51.47336281221814],[-116.36365563410354,51.47582103448367],[-116.3656658822624,51.478389602427924],[-116.36768981460744,51.481360117446606],[-116.37079643214932,51.48443753496051],[-116.37620482861789,51.48849891014068],[-116.37959461703004,51.49174954177287],[-116.38379805614618,51.495804078582154],[-116.38700802722029,51.499348183480194],[-116.38884481883754,51.50185547552937],[-116.39222587458806,51.505287070116125],[-116.39379115549448,51.51201928969885],[-116.39314813900867,51.51481620278823],[-116.39269010510786,51.517101766423465],[-116.39268866882674,51.51989427973689],[-116.39077706611899,51.52349316839376],[-116.38536328643622,51.52685504317704],[-116.37985811907028,51.53016478277956],[-116.3796806775502,51.530905471961574],[-116.38114332850789,51.53233585950412],[-116.38517028707147,51.535819489152864],[-116.38646141946447,51.53935754910208],[-116.38710509141787,51.542328812988],[-116.39012235676891,51.5443790261413],[-116.39626650659582,51.54592686710952],[-116.40296805279966,51.547127592610785],[-116.40893457244694,51.548558282405914],[-116.41516027800476,51.55066947817509],[-116.42030923761652,51.55244293625987],[-116.42818791202993,51.55472996192994],[-116.43415126199116,51.55518302862558],[-116.43552931046271,51.55501247146777],[-116.44379231642642,51.55701265875187],[-116.44883998111727,51.55872346163743],[-116.45654496627947,51.56215002623237],[-116.46177587301356,51.56563080939381],[-116.46326121273843,51.569111768623266],[-116.4639001295471,51.572597834879154],[-116.46537449417684,51.57539575580171],[-116.46740005905728,51.57847491229895],[-116.46942365459756,51.58229980703797],[-116.4694304310826,51.583271624466285],[-116.46805138776524,51.58772205905725],[-116.46613788132592,51.59114495245951],[-116.46596024447896,51.59463237318818],[-116.46706242621063,51.59720130422457],[-116.4682615720167,51.59959384103351],[-116.47119664061522,51.60359196729834],[-116.47395726299946,51.606786897944815],[-116.47552368704339,51.60810027256582],[-116.47891954698272,51.609588778721836],[-116.48288200302311,51.61095549803587],[-116.48444186903146,51.61323821911427],[-116.48609191464554,51.61597840888552],[-116.48959235973312,51.61786182193508],[-116.49189608428846,51.61934481982677],[-116.49382174607796,51.62357032872571],[-116.49797119547333,51.62636519295277],[-116.50384686456063,51.626594700179595],[-116.51046517885227,51.62636198842945],[-116.51560532017207,51.627155252341545],[-116.52010983354779,51.629666460361115],[-116.52481393368797,51.632806995808785],[-116.52903584797308,51.63514530541682],[-116.53308630462838,51.63719918100271],[-116.53980572713733,51.63764989004333],[-116.54550447771346,51.63816284208057],[-116.55102457556745,51.64004078771979],[-116.55682165133415,51.64266465494989],[-116.5581045002748,51.64334802194389],[-116.56316896609039,51.64551499789505],[-116.56814286022548,51.647562698010866],[-116.5694306536652,51.64950816762209],[-116.5710070301186,51.65167280703165],[-116.57449642611346,51.65201243599329],[-116.57652304619457,51.65229672140613],[-116.5789117577017,51.653609155571914],[-116.58269824785437,51.655143889819485],[-116.58757048330122,51.65719739763873],[-116.59439056908182,51.6615299228203],[-116.59624214959197,51.66432227185289],[-116.59460087096963,51.666379988599225],[-116.59109917197105,51.66832653448556],[-116.58936605569336,51.669927891990376],[-116.58734981135812,51.67284053577062],[-116.58782311272152,51.6762656215827],[-116.58691488000176,51.679864190379],[-116.58362303943044,51.683064879804874],[-116.57875278719172,51.68518231909181],[-116.57718764048921,51.68660963695648],[-116.57995609852155,51.68860800683683],[-116.58299692772606,51.69009076884535],[-116.58742584012606,51.692252561672476],[-116.5886238803053,51.694420405020516],[-116.58431093884928,51.69625387222017],[-116.58146654333694,51.6985948285217],[-116.5826654685942,51.70116396829065],[-116.58285592700476,51.701567897571],[-116.58525656330289,51.70344726397882],[-116.58572488588291,51.70601633913998],[-116.58418034583057,51.71127030572305],[-116.58520766285287,51.71429756908015],[-116.58677467329925,51.7154367326689],[-116.59046025991637,51.71651644581068],[-116.5954377922477,51.71845371758196],[-116.59718665194129,51.720852467537064],[-116.59876325734997,51.723304819754034],[-116.60218007453436,51.72495647937196],[-116.60522683453259,51.72540912267511],[-116.61010466748404,51.72523779997577],[-116.6177466597197,51.72608420387746],[-116.62346418609377,51.72744689150132],[-116.6298288220869,51.73103787684985],[-116.63223422889686,51.735087044427644],[-116.63280392547105,51.73685889703741],[-116.6314486076957,51.741255060558785],[-116.62676595612845,51.74628964227935],[-116.62493185384983,51.74971114753131],[-116.62880104245615,51.75056623478776],[-116.63571272294844,51.750270892957595],[-116.64179770217306,51.750553197519835],[-116.6473331762974,51.75203117877695],[-116.64936832269561,51.75447826545259],[-116.64947391210828,51.75705243941165],[-116.64903824734539,51.76241857887327],[-116.64722907697755,51.768589989196876],[-116.64568022141265,51.773275733113444],[-116.64395112784855,51.777844824619315],[-116.64360353661915,51.78184406540592],[-116.64351171167034,51.784585828933544],[-116.64241648557203,51.786409600178395],[-116.64316804507928,51.78829404332574],[-116.64612236318584,51.78994702609839],[-116.65000461822821,51.79171287347686],[-116.6535224571165,51.79388083919944],[-116.65427246915046,51.79604786158249],[-116.65465522796107,51.798560920687954],[-116.65558412441852,51.80289556427434],[-116.65660344761483,51.80346961055745],[-116.66094223587834,51.804890549645485],[-116.6650198634769,51.80671018667396],[-116.66926582841862,51.80836129114062],[-116.67286712188698,51.810013740997924],[-116.67721676034947,51.81200388307592],[-116.67787110227958,51.81223220878887],[-116.67906351054046,51.81165945731988],[-116.6826454776629,51.80971302681704],[-116.68503491954125,51.80833930005459],[-116.69075182880577,51.805587488273744],[-116.69496777553763,51.80306921669056],[-116.70086131358174,51.801402728392354],[-116.70722877080036,51.80053200919207],[-116.71145765933696,51.7993859201047],[-116.71366577937462,51.79857950607347],[-116.71616462382205,51.80011577765165],[-116.71996515968608,51.802622843574916],[-116.72522623549715,51.80398451798357],[-116.7323436497153,51.80522884303325],[-116.73769801924294,51.805673859869664],[-116.74441654528108,51.80514692304467],[-116.74809441969909,51.803764160611756],[-116.75104467142815,51.80153156061707],[-116.75259209747465,51.79942031183876],[-116.7537720287391,51.796556983715284],[-116.75441514263372,51.7955294990946],[-116.75530324748158,51.79238457135881],[-116.75850893837082,51.78832370534918],[-116.76143028713831,51.78511635937014],[-116.76454528535984,51.781684295881675],[-116.76755906352861,51.77796797876906],[-116.77250937492718,51.774297152486525],[-116.77553496336387,51.77217654744504],[-116.77865168158033,51.76914082977],[-116.7799262672007,51.767200110933715],[-116.7840366167041,51.76347672897182],[-116.78781532784636,51.762492564813144],[-116.79093975306816,51.761626144280115],[-116.79359174822571,51.759395213848954],[-116.79779487744834,51.75550025477943],[-116.8018249784842,51.75200518580412],[-116.80420172115318,51.748855440146535],[-116.80691384458417,51.744392399975304],[-116.80799299007478,51.74108120446322],[-116.81213307449966,51.739411323438176],[-116.81626779102726,51.73894435790942],[-116.81846280081258,51.73761945021806],[-116.81752754620267,51.735396593979615],[-116.81279421323545,51.73170086971783],[-116.80825072606314,51.72794046718597],[-116.80677616158835,51.72737618885377],[-116.80059527215032,51.72493595731894],[-116.79560169612584,51.72317566948148],[-116.7927431393781,51.721413816843004],[-116.7930064052475,51.72009867031398],[-116.79473211679105,51.71781150200441],[-116.79811834717597,51.715689248104425],[-116.80215386967932,51.71270492092086],[-116.80608203773363,51.70932608765627],[-116.80706396391821,51.70577906551392],[-116.80796264101613,51.70463576384523],[-116.81302881650907,51.704795339193865],[-116.8191108635856,51.70477997429837],[-116.82379390290194,51.7041910025921],[-116.82894965667128,51.70406301802936],[-116.83446641516868,51.70416355247026],[-116.84257536960153,51.70465306745366],[-116.8476419770257,51.7054360372402],[-116.85327685755799,51.70713257042397],[-116.85786640675704,51.70705667532988],[-116.86026115173124,51.706367582850035],[-116.86475681599353,51.7049260766779],[-116.87146891414308,51.704271471440066],[-116.87689987408103,51.705339098744226],[-116.88133508808922,51.70669755542677],[-116.88631844484684,51.707531999473254],[-116.88953169897178,51.70683895863342],[-116.89256171293721,51.705973382518096],[-116.89723860758757,51.70526675360684],[-116.89826020769429,51.70555211809147],[-116.89919431836292,51.7073764741483],[-116.90216189419107,51.70890946729961],[-116.90574929343659,51.709013254274154],[-116.9084964271807,51.70831181699149],[-116.91097941733845,51.70796579241119],[-116.91365946334305,51.708636896163405],[-116.9150471428428,51.709550172173365],[-116.91589197661635,51.71131572833151],[-116.91610885829422,51.71343032583486],[-116.91778172973584,51.71571096152364],[-116.92047124943618,51.71718102163204],[-116.92380894712534,51.71967981635327],[-116.9246560229303,51.72122660555326],[-116.9246821894234,51.72390831385132],[-116.92452617232374,51.72585058002738],[-116.9254611764015,51.72795848494383],[-116.92778126776261,51.72875025886681],[-116.92980937370572,51.72925972188733],[-116.93360133735565,51.730846650971365],[-116.93637797020001,51.73197484224005],[-116.94034451210324,51.733216378538046],[-116.9413805524697,51.73498324525391],[-116.9414002457511,51.73692757866951],[-116.94199030657232,51.73978522778983],[-116.94367974653096,51.742348703782675],[-116.94682732709789,51.74387753788243],[-116.9504360924918,51.74494708801744],[-116.9532063170032,51.746252906475064],[-116.9548737659024,51.74772939409598],[-116.95748870545863,51.75034801680351],[-116.95991745201927,51.75301960749834],[-116.96141460644107,51.75461415763913],[-116.9656645294757,51.75591211585719],[-116.96955422197722,51.75732606407532],[-116.9701162764484,51.75835382969419],[-116.9703123827489,51.7596652199785],[-116.96987575499169,51.76212331983136],[-116.9698125410912,51.76383872717749],[-116.96965518183957,51.765725892381774],[-116.97013085131773,51.76738227407718],[-116.96940910412057,51.769098593696455],[-116.96619219904062,51.769795512106114],[-116.9614139989098,51.77061267351952],[-116.96005178611554,51.772733826483964],[-116.96100716321872,51.775531376976836],[-116.9611263124349,51.7782693249483],[-116.96244808597386,51.78078325576406],[-116.96294975195438,51.78414629588711],[-116.96123426240791,51.78775518438536],[-116.95969726442198,51.79050360237884],[-116.96287836160572,51.793863221749774],[-116.96456876011939,51.79608515862539],[-116.96754765133302,51.79858898791131],[-116.96997853853571,51.80154791489838],[-116.97443299999712,51.803929260118736],[-116.97748475319639,51.804604527590115],[-116.98072092010177,51.80573243291703],[-116.98443706365425,51.80800681527467],[-116.99010751713385,51.811805326698014],[-116.986340968623,51.8133041615775],[-116.98415047438257,51.81468729061024],[-116.98204883197036,51.81698306756886],[-116.98161076544459,51.81881287592618],[-116.98247600016714,51.82120878119522],[-116.98379652986196,51.82331673478533],[-116.98372019375203,51.824744364662074],[-116.98207198827792,51.826122873820744],[-116.97987066189417,51.82698953057702],[-116.97775342092898,51.82836820014688],[-116.97695698794071,51.83128786290411],[-116.97838074141463,51.834592908975374],[-116.98347254528458,51.835544493340514],[-116.98790916614712,51.83569954967327],[-116.99307238572183,51.8351056816903],[-116.99574402036829,51.834868910937864],[-117.00146788883353,51.83552868874449],[-117.01073244941502,51.83777140899398],[-117.01620654941507,51.840208884023916],[-117.02011889522885,51.84304487311522],[-117.02329863783878,51.846521157609594],[-117.02647939071653,51.85056264251248],[-117.02985257684048,51.85374577812791],[-117.0325749068368,51.858025099195764],[-117.03514904292922,51.86338020501574],[-117.03417822223473,51.867728748748334],[-117.03063146007021,51.87134358027421],[-117.02203076014469,51.87755518901817],[-117.01590232622183,51.88272235756975],[-117.01188257549008,51.88634082286684],[-117.01146310884246,51.889712962723856],[-117.01414617150726,51.890215781041576],[-117.0162802796819,51.89060695895479],[-117.02027742761418,51.89270016393002],[-117.02502044210364,51.895941612807896],[-117.0294076394095,51.899062150556205],[-117.03462574466278,51.90235394749925],[-117.03929206667806,51.90576324584833],[-117.04349565258137,51.90871605103966],[-117.04517147562886,51.91047975803891],[-117.0508457005406,51.9125679416759],[-117.05437269180953,51.91403952598333],[-117.05772921835785,51.91648165850345],[-117.06101211319024,51.919781523385126],[-117.06401130727352,51.92239439820558],[-117.06877630168226,51.926200344931146],[-117.07465578738199,51.929944965169916],[-117.07885197058154,51.93295537499406],[-117.0842569903507,51.93544495309799],[-117.0894688729268,51.93787678141034],[-117.09431396113287,51.94030970628086],[-117.09518468006384,51.943220235569164],[-117.09519660810919,51.94430625683779],[-117.09659861986611,51.94527388321641],[-117.0996901155128,51.94845666603031],[-117.100105776853,51.951368416742035],[-117.10070622118013,51.954167377704174],[-117.10360447211654,51.95643522650744],[-117.10767659479046,51.95641953427937],[-117.11172904316395,51.955425064813774],[-117.1166370761646,51.95534345948633],[-117.12100447669845,51.957040511793345],[-117.12467020216133,51.96130505999828],[-117.1288023830164,51.96494497783636],[-117.13271387975665,51.96657898968407],[-117.13773971468729,51.96844098335264],[-117.14213254686169,51.971388992011654],[-117.14864018621279,51.973697942260564],[-117.15531842695928,51.973950330688616],[-117.16124084261156,51.973802095004096],[-117.16706236161119,51.973715838922764],[-117.17382271065058,51.97385312849404],[-117.17958682621794,51.97541967708786],[-117.18322902706632,51.97694509769482],[-117.18899022153339,51.97816790392832],[-117.19456429482668,51.980023540898486],[-117.19544015804995,51.98207699776203],[-117.19629779144508,51.98378663630357],[-117.19654026394781,51.98772828062188],[-117.19735116922077,51.99183848283498],[-117.20258098971486,51.994385789457525],[-117.20610008335719,51.99493576405812],[-117.21103281557434,51.995763638356415],[-117.21486414518243,51.99774641548254],[-117.21600673737554,51.99979575224064],[-117.21805545759453,52.00259706651224],[-117.22171876813668,52.00621079681664],[-117.2289335986457,52.008191750952165],[-117.23430285970223,52.00890555746572],[-117.23296627540212,52.012093730388855],[-117.22958748547461,52.01447302590684],[-117.22511222650604,52.015875039065605],[-117.21774349553019,52.01863431510874],[-117.21338331156637,52.02482687035543],[-117.21333172414698,52.02899369544779],[-117.21775409707845,52.03141349743778],[-117.22355410479453,52.034587182402426],[-117.22722255833843,52.03797310220881],[-117.23409053028526,52.03915101052652],[-117.24289960635295,52.03982707499686],[-117.25152284109427,52.040840782586606],[-117.25949029531003,52.0432811436701],[-117.2657526355859,52.04673669063493],[-117.2668325550974,52.04947863518893],[-117.26754373336219,52.05222524105915],[-117.2703625683994,52.05663497010746],[-117.27517771008992,52.05808374378975],[-117.28074341352922,52.05982661020981],[-117.28877311574799,52.064319840665576],[-117.2944804311393,52.06799784322218],[-117.30186601414441,52.07248622742148],[-117.30098155512258,52.07607736321063],[-117.29675525790164,52.08039460995797],[-117.29425791272037,52.08643362350072],[-117.29304291345531,52.09407359384418],[-117.29257954464067,52.1020027078823],[-117.29412826877434,52.11193880386283],[-117.29431858482623,52.118672366363654],[-117.29373171592334,52.12809112091474],[-117.29690023912572,52.13489881304127],[-117.30202211125075,52.14262913621364],[-117.3067883242565,52.14847267791911],[-117.31004654132532,52.15602409532132],[-117.30965186469346,52.16589468486536],[-117.31035618423647,52.17616961894967],[-117.31288655195385,52.182291388787675],[-117.31496560360429,52.18076294011613],[-117.31874498852285,52.1767256632022],[-117.32450269096458,52.16996544864215],[-117.3263806800607,52.16106551837787],[-117.32747994120807,52.15456885644196],[-117.3295269029928,52.14761103894458],[-117.33815067958751,52.14211826714835],[-117.34086254262037,52.14139010525481],[-117.35196584248294,52.13984486932468],[-117.36043848604474,52.13965182548586],[-117.36711796024493,52.1410517410914],[-117.3752174953543,52.14154514747567],[-117.38435340266058,52.14061393914021],[-117.39367666196003,52.1396277340489],[-117.4054076654443,52.13950421740295],[-117.4180515872612,52.14161006775578],[-117.42389195297714,52.143233598989305],[-117.4349433924091,52.146016576701804],[-117.44118447474705,52.1464424338981],[-117.44817899795882,52.144926053380765],[-117.45554339713195,52.14369823757418],[-117.46410329911168,52.14372880268935],[-117.47442982238867,52.1451902287502],[-117.48132089203017,52.146131897907026],[-117.48835279849753,52.14770639196496],[-117.49344888118752,52.15005309188347],[-117.49712057700174,52.15312085684497],[-117.49935014490777,52.15392940781835],[-117.5028594214842,52.155878208045934],[-117.50793872699478,52.15749393474888],[-117.5127743729746,52.15780065467631],[-117.51594561622335,52.15644689379818],[-117.51572248807578,52.15240569785998],[-117.5159373763521,52.14996198748921],[-117.51939570009435,52.14826911759982],[-117.5243515845576,52.145329761394684],[-117.53253301033094,52.14405466080527],[-117.54477370756534,52.14621123688164],[-117.55208933288732,52.14732318929833],[-117.5585044307153,52.14723652351274],[-117.56040555908156,52.14377055739553],[-117.55935218807014,52.13807431102812],[-117.55772659230976,52.13334662580876],[-117.55851046543229,52.13016561310621],[-117.56682558474841,52.128711853105116],[-117.56743581089857,52.128605315310246],[-117.57493590503758,52.13147753109629],[-117.58065386530964,52.134802431497654],[-117.5841567474767,52.137321782881536],[-117.59369987726437,52.13872122357759],[-117.59778643686212,52.13953372772212],[-117.60387933535546,52.142914576339],[-117.60771955026642,52.14810656438858],[-117.61101961705926,52.15335152081056],[-117.61421925876998,52.159117390900015],[-117.61749131488011,52.165273941984005],[-117.62062360777126,52.16926869532098],[-117.62273570658415,52.17069608297997],[-117.63332159731246,52.17170290248077],[-117.63878821156335,52.174393337254486],[-117.64311984491178,52.177996825277226],[-117.64930489750967,52.18353646324536],[-117.65520272192832,52.18782309364364],[-117.65721885268503,52.191816219797346],[-117.65857540815509,52.19563559920791],[-117.66450308418173,52.197871818300456],[-117.67557387231658,52.197395973081555],[-117.68125551592183,52.19724048225513],[-117.69037819496012,52.19630355085979],[-117.69542973288358,52.19267512903107],[-117.70008953083779,52.19069469616542],[-117.7087473677231,52.18855793232827],[-117.7158056845409,52.189829216355605],[-117.72473538946296,52.18888375017689],[-117.7298484040777,52.18906889061022],[-117.73552094520073,52.19033756705383],[-117.7407034399295,52.19370480058297],[-117.74065943917948,52.197864136271214],[-117.73989785126415,52.202071881955945],[-117.74992000548052,52.2032920804907],[-117.75447326765668,52.20432932063407],[-117.76310016547143,52.20822233201287],[-117.77097904478079,52.213026210868094],[-117.7815509392982,52.21702998884385],[-117.7916899259801,52.217734798378935],[-117.80134244479619,52.22037756218529],[-117.80830946045822,52.22340810411698],[-117.81302296363883,52.22797047218716],[-117.81418678690751,52.23793382344653],[-117.81775948213875,52.24602636664342],[-117.82370107380264,52.25036192548963],[-117.83092805427782,52.257039114678584],[-117.83203162495283,52.259087794851716],[-117.83313217219835,52.26154252817692],[-117.83739580568754,52.266564046172505],[-117.8402614096812,52.27077995998723],[-117.84036248720119,52.272586028926696],[-117.84467677117476,52.27360491451956],[-117.84480506268224,52.27376633747625],[-117.84495295584223,52.27392180577093],[-117.84510491600346,52.274075313207376],[-117.8452848242103,52.27421781310607],[-117.84546077226797,52.27436172100833],[-117.84563938636227,52.27450131183755],[-117.84578525121051,52.27465776376849],[-117.845951242803,52.27480549010383],[-117.84616208607788,52.274930989371505],[-117.84640544234682,52.27503113220886],[-117.84666247722852,52.27511757913377],[-117.84694182597131,52.275173994145845],[-117.84722264987066,52.275222621918985],[-117.84750764830639,52.27526871809359],[-117.84778815801138,52.27531901049706],[-117.84806761410655,52.27537487042107],[-117.84833724894632,52.27544357813647],[-117.8486115847609,52.27550697461704],[-117.8488970082149,52.27555084008204],[-117.84917923976289,52.275601810269634],[-117.84942601006459,52.27569372764192],[-117.84963858448018,52.27581991055997],[-117.8498392744376,52.27595032732545],[-117.85004392863496,52.27607932636732],[-117.85025286075843,52.2762052505634],[-117.8504702463206,52.276325559961656],[-117.85068742230206,52.27644698258468],[-117.85090063814326,52.27656981327152],[-117.85111364272893,52.276693766108],[-117.851322582622,52.27681967940527],[-117.85152917293094,52.276948252126076],[-117.85172163238735,52.27708316635315],[-117.85187352314499,52.2772372168982],[-117.85202755501885,52.27738972104932],[-117.85222387486425,52.277523778243754],[-117.8524411680055,52.27764463618805],[-117.85268584944684,52.27774768293203],[-117.85287123451579,52.27788096657166],[-117.85299315257325,52.278047000672046],[-117.85311163444067,52.2782116724249],[-117.85323793727089,52.27837407037491],[-117.85337816263372,52.2785312397329],[-117.85352010591845,52.27868909890351],[-117.8536621547593,52.278846405511416],[-117.85380602944316,52.279003831735544],[-117.85396617428847,52.27915338722111],[-117.8541522343779,52.27929291798741],[-117.85434054023294,52.279430349853904],[-117.85452884728493,52.279567781399564],[-117.85470891559092,52.279709704770084],[-117.85487678022324,52.27985754643548],[-117.85505481701324,52.280000454182876],[-117.85524923041797,52.28013492964712],[-117.8554622982246,52.28026846440064],[-117.85570511371328,52.28035218643971],[-117.85600679020797,52.280339624151374],[-117.85623868120116,52.28023693693149],[-117.85652825985896,52.280229721826274],[-117.85678555652835,52.280315032291014],[-117.85702672321226,52.2804172510288],[-117.85722135526521,52.28055060948857],[-117.85739512264611,52.28069660609867],[-117.85756696351318,52.28084302614368],[-117.85779775512708,52.280951281852396],[-117.85806828268723,52.28101551201119],[-117.85836105130912,52.28103052763563],[-117.85865340504144,52.28101842888331],[-117.85894544186804,52.28100800433067],[-117.85924038877177,52.28100172964881],[-117.85953137410564,52.28099686298877],[-117.85979860725108,52.28106875607051],[-117.86005047987862,52.28116326360754],[-117.86028737915035,52.28126856813089],[-117.86052824274685,52.28137245444599],[-117.86077391289294,52.28147046789629],[-117.86104735686504,52.281538850550625],[-117.86129001424642,52.281633264709505],[-117.86147193492381,52.28177531485081],[-117.86166402750189,52.28191243046052],[-117.86187281111852,52.2820394467856],[-117.86210554759897,52.28214727003054],[-117.8623415107759,52.282257577287886],[-117.86245173231663,52.28240754223318],[-117.86251419563972,52.28257558065337],[-117.86273262860566,52.28270044966562],[-117.86290126989825,52.282844377093234],[-117.86297888244637,52.28302025434634],[-117.86296354076816,52.283199164499635],[-117.86308866845835,52.283348491286404],[-117.86333267164622,52.28345540844456],[-117.86356713664523,52.28356391848804],[-117.86379732634079,52.28367550300104],[-117.8640408770622,52.28377505573443],[-117.86428004467531,52.28387825311379],[-117.86453247048152,52.28396996209119],[-117.86480997028235,52.28402676637105],[-117.86510363710991,52.284046909411344],[-117.86535069990688,52.28413767859542],[-117.86555361574948,52.28426652087551],[-117.86576059877275,52.28439340142822],[-117.86598876471761,52.284505966650364],[-117.8662081635651,52.28462582188601],[-117.8664046662841,52.284759293004285],[-117.86662000159205,52.284881108817586],[-117.86683544247974,52.28500237184081],[-117.86702167363113,52.285141328923366],[-117.86719784284354,52.28528465019799],[-117.86737176898026,52.28543007001711],[-117.86755190385523,52.2855719727763],[-117.86773621195809,52.28571135252526],[-117.86791624316335,52.28585381597498],[-117.86807411359345,52.28600600237369],[-117.8681793853001,52.286172537943585],[-117.86827480324632,52.28634233323439],[-117.8684317308441,52.28649952613549],[-117.86865742411199,52.2866057082255],[-117.86894553629632,52.28665534923354],[-117.86923575170844,52.28666451201919],[-117.86953122611166,52.28664583234324],[-117.86981968626579,52.28661537288349],[-117.87010239398698,52.286566451668335],[-117.87038945038222,52.286533634985915],[-117.87068331226706,52.286543051062495],[-117.87096138933417,52.28648928770498],[-117.87123750120855,52.28642635740878],[-117.87151719002104,52.286373834829575],[-117.8717437313974,52.28647555622791],[-117.8719277405851,52.28661660417759],[-117.87211978184503,52.286754263226186],[-117.87232273013942,52.28688309339022],[-117.87256396850636,52.28698528817574],[-117.87282838545464,52.28706259082397],[-117.87310528520864,52.28712271612982],[-117.87337215826788,52.287196804917585],[-117.87362697105532,52.28728584252391],[-117.87387473827694,52.28738284247728],[-117.87414939751801,52.28744506422464],[-117.87443001719551,52.28749529165235],[-117.87467105373258,52.28759859568095],[-117.87492843172889,52.287683856460966],[-117.87520523243457,52.287744538014806],[-117.87549675536586,52.287756593240125],[-117.87579016856756,52.28775863352355],[-117.8760841458905,52.28776747460425],[-117.87637615600067,52.28776715767604],[-117.87666809366077,52.2877476418027],[-117.87696112448909,52.28776149668035],[-117.87724900571328,52.28780264049081],[-117.87751020920976,52.28787744834626],[-117.87770753441859,52.28801659671825],[-117.87795341670497,52.28809427026134],[-117.87824866306939,52.28812577344199],[-117.87848294407068,52.28822576749445],[-117.87876525484688,52.28826707492237],[-117.87905772698056,52.28827411406047],[-117.8793516025813,52.28828350814827],[-117.87964361783344,52.28828317407956],[-117.87993731215626,52.28827393868983],[-117.88023689898631,52.28826285117834],[-117.88044470875343,52.28836606106974],[-117.88045742178437,52.28854355619857],[-117.88059125615851,52.28870588381161],[-117.88065316884772,52.28887725268163],[-117.88064122952761,52.289058095923046],[-117.88061663054302,52.28923747976721],[-117.88060093780355,52.289418627659444],[-117.8806510693219,52.28959368140395],[-117.88078308569729,52.28975587145675],[-117.88095258788316,52.28990546854514],[-117.88092560115106,52.29007792254094],[-117.88078940526908,52.29024155636652],[-117.8806829116818,52.29040446297251],[-117.88073069492988,52.29058217692249],[-117.88081428517009,52.29075619866792],[-117.8809115882451,52.29092610232596],[-117.88100503289444,52.29109687189597],[-117.881053029993,52.29127346302087],[-117.88108419207441,52.29145113578797],[-117.8812143920101,52.29161319682478],[-117.88130997903986,52.29178241935942],[-117.88137470618689,52.29195849874473],[-117.88142249399665,52.29213621219301],[-117.88154743603569,52.29229677423317],[-117.88168952737284,52.29245459718211],[-117.88182797218552,52.29261216338398],[-117.88196803173149,52.292770971362266],[-117.88210830236768,52.29292866546478],[-117.8822465401667,52.29308734479489],[-117.88237299590092,52.29324970908038],[-117.88253736007795,52.29339725256198],[-117.88271158050217,52.29354153474701],[-117.88285774793216,52.29369738526108],[-117.88298024584792,52.29386115836201],[-117.88305483644231,52.294033984363],[-117.88312728955952,52.29420834811294],[-117.8832168939786,52.29437996372615],[-117.88327626536008,52.294555104538304],[-117.88329221950879,52.29473508237656],[-117.88334422387972,52.294998284354946],[-117.88351031773577,52.29514650689623],[-117.88367662276315,52.29529361549486],[-117.88382665743961,52.29544860738057],[-117.88398686288886,52.295598671826944],[-117.88417512459397,52.29573716713377],[-117.88434336225178,52.29588385055817],[-117.88449736509678,52.2960374229909],[-117.88466153711414,52.29618607682683],[-117.88482967400603,52.29633331188337],[-117.88498175038411,52.29648731668856],[-117.88511808199071,52.29664641631509],[-117.88524070098771,52.29680963425959],[-117.88534574930625,52.29697782781121],[-117.88546461797976,52.297141341424336],[-117.88564068725556,52.29728574700342],[-117.88581086574425,52.29743199503736],[-117.88597087544927,52.29758317019841],[-117.88611321029707,52.297739873382135],[-117.88623187231066,52.29790450871024],[-117.88635053690803,52.2980691349862],[-117.8864771267806,52.29823094177122],[-117.88659568738234,52.2983961290539],[-117.88668166616077,52.298567485024094],[-117.88673709510992,52.29874403317019],[-117.88683057967708,52.29891479699801],[-117.88693767501441,52.299081994428114],[-117.88704862761823,52.299248343344544],[-117.8871363281502,52.299420388357035],[-117.88719014592128,52.29959569428626],[-117.88731257114983,52.29976002335278],[-117.8874179504791,52.29992653964874],[-117.88743734709058,52.30000012320482],[-117.88746201957973,52.300104545512184],[-117.88748367552984,52.30028379286341],[-117.8875792004629,52.300453570379034],[-117.88766701136996,52.3006250535282],[-117.88776639601882,52.30079397352226],[-117.88788903678382,52.300957188136124],[-117.88802528737794,52.30111684508744],[-117.88819142080081,52.30126506021263],[-117.8884241165117,52.30137394266608],[-117.8886916947164,52.30143505528429],[-117.88888792342611,52.3015707139034],[-117.88908660732592,52.3017031592625],[-117.889233349309,52.301856220968],[-117.88926606280836,52.30203568430461],[-117.88928204466178,52.3022156602646],[-117.88927936296459,52.302396590906184],[-117.88916827915628,52.302564254595055],[-117.88888832164234,52.30259819132784],[-117.88859530641135,52.30261314591165],[-117.88831195013299,52.30265530130271],[-117.88803986657082,52.302725899435856],[-117.8877991234492,52.30282634147715],[-117.88757378780153,52.302943095196255],[-117.88732647951231,52.30303913004541],[-117.8871096327405,52.303159864850386],[-117.88710195470608,52.303328031983966],[-117.88728254308461,52.30346823601002],[-117.88732286256356,52.30364653744269],[-117.88732778546718,52.3038263056084],[-117.88730685270704,52.304005954084964],[-117.88717424541281,52.30416025993737],[-117.88711145897959,52.304336398624365],[-117.88713129129721,52.304515517256206],[-117.88716410223451,52.30469442842493],[-117.8871931606606,52.304873635565286],[-117.88720548628677,52.30505335503037],[-117.8872384037739,52.305231704805614],[-117.88725651684592,52.30541014271276],[-117.88723365452228,52.30559021515178],[-117.88719265264213,52.305768453265046],[-117.88719575088606,52.3059480929475],[-117.88721751281689,52.30612678714271],[-117.88709974391675,52.30629059454616],[-117.88699218456327,52.30645907332192],[-117.88692605943754,52.3066332891335],[-117.88692347344438,52.30681365780004],[-117.8868788219984,52.30699163033254],[-117.88685809584649,52.307170164601295],[-117.88689831118427,52.30734902696254],[-117.88688316406251,52.30752738447614],[-117.88685503577457,52.30770595827349],[-117.88689911048992,52.30788396326942],[-117.8869074709988,52.30806510093131],[-117.88685797486643,52.30823934765008],[-117.88674342605609,52.30840564708681],[-117.8866663518132,52.30857908438934],[-117.88661815270162,52.30875624779253],[-117.88659356563491,52.30893563904978],[-117.8865855046411,52.30911562278463],[-117.88657561908094,52.30929547829334],[-117.8866257978626,52.30947052673208],[-117.88678178592579,52.3096236703143],[-117.88688943182495,52.30978808664436],[-117.8869144499029,52.30987109194774],[-117.88694242142951,52.30996784599179],[-117.88717210325771,52.31006353385359],[-117.88746245285502,52.31009240109052],[-117.88775391997167,52.31010553896094],[-117.8880470655188,52.310109775547915],[-117.8883414727075,52.31010732038608],[-117.888634369448,52.31010307023844],[-117.88892982472194,52.31009505407452],[-117.88922261718065,52.310091354828586],[-117.88951141878823,52.310108823771635],[-117.88979020984151,52.31016958867693],[-117.89006791108041,52.310226331317295],[-117.8903480674002,52.31027986037161],[-117.89063323720379,52.310326410508885],[-117.89092040269036,52.31036237545727],[-117.89121288108339,52.31036034617358],[-117.89150770960636,52.31035565559873],[-117.89179875825666,52.31037101958774],[-117.89207306553337,52.31043597751303],[-117.89231490185998,52.31053590192816],[-117.89250722014421,52.310672963318794],[-117.8927140948138,52.31080145918859],[-117.892819312013,52.310969082830354],[-117.89294263035451,52.31112894973194],[-117.89316244899291,52.311247637751435],[-117.89340303490289,52.3113542330692],[-117.89364926399463,52.311450508442285],[-117.89390352627507,52.3115434021581],[-117.8941608749967,52.31162973232745],[-117.8944572610865,52.31163643625309],[-117.89471364804548,52.311698441022216],[-117.89489121253156,52.31184518636933],[-117.89499612682481,52.31201447398502],[-117.89516243012827,52.31216212546967],[-117.89535100963279,52.31229948714262],[-117.89553948627065,52.31243740088646],[-117.8957218590214,52.312578280133394],[-117.89590209442642,52.31272069711179],[-117.89604462089446,52.31287682494853],[-117.89620472359917,52.31302798416218],[-117.89643964138749,52.31313531149178],[-117.89664674932631,52.313262686405274],[-117.89684817459775,52.3133907905172],[-117.89712443739046,52.313455311987546],[-117.89737110628359,52.313549351909664],[-117.89749346317544,52.313704630835744],[-117.8975094836155,52.313884604022746],[-117.89754062563026,52.31406282161621],[-117.89756608391366,52.31424176879208],[-117.8976348742583,52.31441642596953],[-117.89774011935127,52.31458404467489],[-117.89791833525419,52.3147274439697],[-117.8981130382886,52.31486184385245],[-117.89831181158536,52.314994272030845],[-117.89850844753929,52.315128237933884],[-117.89874422143285,52.31523110563224],[-117.89896491749906,52.315345318576036],[-117.89914752342503,52.31548507841993],[-117.89932178435413,52.31562988554586],[-117.89947590914187,52.31578344462234],[-117.89961428384763,52.315942100406794],[-117.89975244985067,52.31610186970524],[-117.89996887422588,52.31621916577186],[-117.90021644540079,52.31631834352844],[-117.90046026401767,52.3164178171817],[-117.90068633953493,52.31653297199255],[-117.90091690472838,52.31664392749999],[-117.90117675175706,52.31672702863279],[-117.90144140190185,52.31680426420917],[-117.90170840119954,52.31687884733997],[-117.90199576700024,52.31692382225403],[-117.90227145121513,52.316971922242644],[-117.90237103623339,52.317140266256686],[-117.90242858766334,52.31731581858875],[-117.90255894392688,52.317477861282846],[-117.90271126359117,52.31763127898195],[-117.90286937268701,52.317783414192995],[-117.90296531207893,52.31795150170443],[-117.90302437662001,52.31812885658042],[-117.90307421301921,52.31830612409937],[-117.90319117289312,52.31847060257625],[-117.90330802799923,52.3186356422204],[-117.90341643035029,52.31880629980847],[-117.90356380611829,52.31895655262438],[-117.90381224142436,52.31905125877422],[-117.90407053549526,52.319142710497886],[-117.90430582133756,52.3192483463742],[-117.90448611286648,52.31939074927374],[-117.9047101800802,52.319506881762415],[-117.90491488914883,52.31963745447956],[-117.9051374473573,52.31975179210778],[-117.90540363456373,52.31983081247252],[-117.90563945053964,52.31993366577864],[-117.9058380606619,52.320067194242355],[-117.90604950830601,52.320191466352966],[-117.90627327035688,52.32030926185486],[-117.90652417142869,52.320400757776376],[-117.90677131955793,52.32049254978468],[-117.90697838929,52.320620457918835],[-117.90718973730937,52.32074528920632],[-117.90739274030159,52.32087516824158],[-117.90759167364465,52.32100702749792],[-117.90780709619936,52.32112987703388],[-117.90803331988633,52.321244464703895],[-117.90824702373239,52.32136663313911],[-117.90843740617703,52.32150465280735],[-117.90864286844844,52.32163132521488],[-117.90888193480072,52.32173664599928],[-117.90910216630083,52.32185362780668],[-117.90929693624682,52.32198800817019],[-117.90946750162342,52.32213310494762],[-117.90958825034397,52.32229727976229],[-117.90967233159905,52.32246961026737],[-117.90978118937389,52.322638025067626],[-117.9099400740662,52.32278625651574],[-117.91016213892681,52.32290336404701],[-117.91028085780795,52.323068523926004],[-117.91046749835982,52.3232068457388],[-117.91070699682331,52.32330993521017],[-117.9109634602376,52.32339165354757],[-117.91115620827438,52.32352701652619],[-117.91131029941526,52.3236811113353],[-117.9115305474051,52.32379808835609],[-117.91176749259024,52.32390495023518],[-117.91198935871405,52.324023167880505],[-117.91220084341874,52.324147428396905],[-117.91237721769122,52.3242912290143],[-117.91255208122881,52.324433235440644],[-117.91276560420592,52.32455650896382],[-117.91290426524702,52.324714034095855],[-117.91305685491291,52.3248663325415],[-117.91324137359636,52.32500618803403],[-117.9133875482231,52.325163109935104],[-117.91354400109908,52.32531454952569],[-117.91371834994199,52.325459333914964],[-117.91386291196696,52.325615013674835],[-117.91399537084529,52.32577605652469],[-117.91414572571051,52.32593044416731],[-117.91429607997544,52.32608484050628],[-117.91443636741218,52.326243605098995],[-117.91448991061846,52.32642112211542],[-117.9146097026502,52.32658070853358],[-117.91478963998713,52.326725322040176],[-117.9149498596166,52.32687645374784],[-117.91510225643313,52.32702985405474],[-117.91525423391093,52.32718549048692],[-117.91544936192963,52.32731818493495],[-117.91569906064606,52.327347511863344],[-117.915899666826,52.327480588758384],[-117.91608550702104,52.32762335593038],[-117.91625162931956,52.327772641501994],[-117.91634732811575,52.327942391671705],[-117.91644569210897,52.328107805685924],[-117.916661279094,52.32823008569852],[-117.91687858718794,52.32835305433495],[-117.9170712720738,52.328488959369764],[-117.91725988702761,52.32862684498743],[-117.91745257433469,52.32876274936021],[-117.9176332620636,52.32890346464919],[-117.91781363783296,52.32904584576639],[-117.9180064325704,52.32918119677031],[-117.91821133317502,52.32931118372689],[-117.9184104438882,52.32944246225218],[-117.91856489512611,52.32959488059258],[-117.9187618696589,52.32972769691711],[-117.91896270394705,52.32985966345959],[-117.91900651501186,52.33003988061339],[-117.91887039557984,52.330193402881],[-117.91892704315559,52.330364362672235],[-117.91909918468238,52.33051124707063],[-117.91926339920072,52.330660952715135],[-117.91941347514036,52.33081700798304],[-117.9196089454261,52.33094802893542],[-117.91984156549535,52.33105852085471],[-117.92006552525774,52.33117573635272],[-117.9202963238675,52.33128609075985],[-117.92056527077631,52.331360757314],[-117.92081209296052,52.33145474607327],[-117.92103595362597,52.33157251206902],[-117.92124729208437,52.33169786909075],[-117.92144214421197,52.33183222803677],[-117.92162875292827,52.331971092269825],[-117.9218257477207,52.332103903148806],[-117.92206062370354,52.33221229071524],[-117.9223174187577,52.33230245950998],[-117.9225661811604,52.332396010787875],[-117.9227331810428,52.33254083162536],[-117.92286324103209,52.33270507703403],[-117.92297765285326,52.33287386099457],[-117.92315363198377,52.33301028186754],[-117.92340735330171,52.333107002928486],[-117.92365111091785,52.33320754026204],[-117.9238903817002,52.33331227676287],[-117.9241126422598,52.33342880422552],[-117.9243346965224,52.333546436069945],[-117.92457610939036,52.33364963259658],[-117.92478971225405,52.33377288310893],[-117.92496392378857,52.33391876337753],[-117.92507156643956,52.33408425487289],[-117.92515938376218,52.334256827760655],[-117.92532008591853,52.33440571680838],[-117.92550864931441,52.33454414079439],[-117.92568297012248,52.334689467486974],[-117.92586757166383,52.334829301833025],[-117.92607507955263,52.33495550831604],[-117.92628858775363,52.335079317264686],[-117.92649171555888,52.33520916143206],[-117.92669473919037,52.33533956655098],[-117.92690105356283,52.33546230274951],[-117.92704548748401,52.335619078606804],[-117.92715590823768,52.33577968817856],[-117.92720403831477,52.33595681533702],[-117.92736433563874,52.33610792881966],[-117.92748733171919,52.336270535727635],[-117.92762018857269,52.336429886640225],[-117.92777073295133,52.33658370293984],[-117.92790134784629,52.336745153404955],[-117.92800665944625,52.336913303052064],[-117.92817317316005,52.33706089542814],[-117.92839290781602,52.3371811804175],[-117.92858832877718,52.337312746918776],[-117.92875453157092,52.33746201346835],[-117.9289048745167,52.33761694190644],[-117.92903742797643,52.3377779571746],[-117.92913246830614,52.33795158909209],[-117.9292659635967,52.33810759671603],[-117.92947808880223,52.33822904450378],[-117.92971849654198,52.338337789713805],[-117.92993641614036,52.3384579441434],[-117.93010241895634,52.33860832236415],[-117.9301907890314,52.33877810205174],[-117.93024644746984,52.33895462384906],[-117.93029234978741,52.33913384924923],[-117.93033846152888,52.33931196087283],[-117.93037309477933,52.33949209619326],[-117.93042134754873,52.33966866018777],[-117.93051551153248,52.33983715586646],[-117.93065793824549,52.33999491292538],[-117.93079222612252,52.34015661471915],[-117.93088868661864,52.34033259984849],[-117.93110365004169,52.340439004596654],[-117.9313814412735,52.34050635049123],[-117.9316607449678,52.3405754982627],[-117.93189084086688,52.34068014155311],[-117.93207710508378,52.34082120659357],[-117.9322510553369,52.340968750185766],[-117.93239156080826,52.34112693882365],[-117.93252111305937,52.34128435351677],[-117.93271218254802,52.34141955132894],[-117.93283876056847,52.3415829681636],[-117.93289067610137,52.341759794695044],[-117.93298313359577,52.34192759930841],[-117.93315333570189,52.34207543890155],[-117.9332834151928,52.34223007274293],[-117.93332750756178,52.34240916902751],[-117.93336074768375,52.342586948091956],[-117.93332892769513,52.342766387082555],[-117.93321274556254,52.342932039145325],[-117.9330297348262,52.34306933146883],[-117.93283232337032,52.34320449000127],[-117.93275986030957,52.34337375322065],[-117.93273502723949,52.343555376877305],[-117.93266892621618,52.34373016613573],[-117.9324855976893,52.34386912366283],[-117.93228666745881,52.34400248756393],[-117.9321014050924,52.34414187829868],[-117.93195359866526,52.34429855187434],[-117.93185890250916,52.344467959644206],[-117.93178710913016,52.344643479556034],[-117.93174088104489,52.34482078421018],[-117.93173655015725,52.345001573425165],[-117.93175220152439,52.34518432628366],[-117.93174818336527,52.34536344930685],[-117.93167915404814,52.34553408918286],[-117.93150984536597,52.34568700471633],[-117.9312834142906,52.345799257057955],[-117.93102067283976,52.34588810447278],[-117.93083879160937,52.34601927197361],[-117.93077012205599,52.34619782591414],[-117.93073108754788,52.34637620127827],[-117.93070849022996,52.3465557152172],[-117.93070070981773,52.34673514432921],[-117.93069465186151,52.346915253327495],[-117.93066292297404,52.34709412967021],[-117.93057004185547,52.347263663526924],[-117.93038799426945,52.34740553364003],[-117.93016436572998,52.34752250248143],[-117.92998800355957,52.3476636407451],[-117.92974799362906,52.347769301182595],[-117.92956891670543,52.347905176439404],[-117.92955502687258,52.34808755499222],[-117.92952876954892,52.348266822334175],[-117.92950079111708,52.348445400807286],[-117.92946357729328,52.348623894047996],[-117.92943184037621,52.34880277872885],[-117.92942588222917,52.348982326057616],[-117.92942905391457,52.34916251988244],[-117.92943233102031,52.34934215236558],[-117.92943743447955,52.349521912345786],[-117.929436955258,52.349701842141755],[-117.92941940993362,52.34988397429219],[-117.92941345158562,52.35006352147101],[-117.9294642696807,52.35023631837393],[-117.9295926876219,52.35039986516072],[-117.92972507211178,52.35056200069038],[-117.92985970386822,52.350722027208356],[-117.93000806146799,52.35087793884243],[-117.93014300807943,52.351036298863335],[-117.93022153905781,52.351209341834036],[-117.93029031299362,52.35138507944685],[-117.93036863609562,52.351559235994756],[-117.93043386205593,52.35173416605419],[-117.93042811677358,52.35191259930667],[-117.93034383295358,52.35208555864711],[-117.93032112564707,52.352265633038634],[-117.93039052898645,52.35243802928224],[-117.93049954148697,52.35260642964823],[-117.93055715087308,52.3527825156061],[-117.930603278287,52.35296062525304],[-117.93064950979605,52.35313818245094],[-117.93069391686782,52.35331560319454],[-117.93074197562802,52.35349328780911],[-117.93078445155253,52.3536711422845],[-117.93081941267262,52.35384960044311],[-117.93085254756073,52.35402793106714],[-117.93088182056427,52.35420712038168],[-117.93090916356026,52.35438673457176],[-117.93092716328908,52.35456683387199],[-117.9309870217895,52.354740819406445],[-117.93111180578369,52.354904108952766],[-117.9312245858436,52.35507220199355],[-117.93131998585571,52.35524416368068],[-117.93134268796709,52.35541894026358],[-117.9312888256788,52.355597408339996],[-117.93125516088945,52.35577671747439],[-117.93126403129486,52.35595617015607],[-117.93127462299906,52.3561363116202],[-117.93126866983236,52.35631586694182],[-117.93125713302133,52.356495592165714],[-117.93124376947996,52.35667518987089],[-117.93123223246921,52.35685491504284],[-117.93122069536236,52.357034640188836],[-117.9312036781886,52.35721398282863],[-117.9311884875379,52.357393452934915],[-117.93118243012118,52.357573560483935],[-117.93119302188168,52.3577537017321],[-117.93119448029377,52.357933205486766],[-117.93116650248767,52.35811178303569],[-117.93112208412984,52.358289213102424],[-117.93107025484673,52.35846668555082],[-117.93101304870972,52.35864322305862],[-117.93094681220839,52.358818570623676],[-117.93088240357318,52.35899403671604],[-117.93083980987818,52.35917159405314],[-117.93079142106563,52.359350443882185],[-117.93076354607456,52.359528459826606],[-117.93081954647226,52.35970331241172],[-117.9308998189745,52.35987703367568],[-117.93098009212294,52.360050754860985],[-117.93104716017868,52.3602258109329],[-117.93111036607033,52.360401725670336],[-117.93115660930945,52.36057927274321],[-117.93118202528022,52.360759319810775],[-117.93123223567679,52.36093545567164],[-117.9313453448139,52.36110188169778],[-117.93148601790702,52.36125950767118],[-117.9316404217405,52.36141300967761],[-117.93178903163742,52.36156780404005],[-117.93192349459648,52.36172894944024],[-117.93202888450446,52.36189708329708],[-117.93208092654619,52.3620733461175],[-117.93210838323422,52.36225240653826],[-117.93211877089918,52.36243366077324],[-117.93211282037593,52.362613215271686],[-117.93209215091846,52.362792302317764],[-117.93205676234416,52.36297092190368],[-117.93201589107231,52.363149167923986],[-117.9319731942178,52.36332727751506],[-117.93193049533792,52.36350539597583],[-117.93188607456975,52.363682825601956],[-117.93183972277114,52.363860680106875],[-117.93179347431654,52.36403798216641],[-117.93174529312691,52.36421571801147],[-117.9316952795759,52.36441306684913],[-117.93170964261807,52.36438586140715],[-117.93173643796081,52.364331875434054],[-117.93177998870861,52.36427737069],[-117.93185334284371,52.364231715425774],[-117.93193974320579,52.364195437283726],[-117.93207087706251,52.364167353329535],[-117.93221866244072,52.364139302803714],[-117.93229065107943,52.36412063139258],[-117.93232030054439,52.36412044356839],[-117.93242147632323,52.3640744726333],[-117.93253930353619,52.36402853513954],[-117.93262555046662,52.36398321036782],[-117.93272657145663,52.3639282019578],[-117.93285865470179,52.36385561986754],[-117.93297388294403,52.363764368433124],[-117.93308931542435,52.36369174369298],[-117.93319018090294,52.36362769766158],[-117.9333077464372,52.36357328348027],[-117.93343872322345,52.363536160761896],[-117.93355502958201,52.36350816917338],[-117.93368798722867,52.363480210834254],[-117.93383409664605,52.363461067990265],[-117.93390639222898,52.36346046997991],[-117.93398036033655,52.36345096216801],[-117.93411133617299,52.36341383868758],[-117.93422931423804,52.3633769366621],[-117.93430099179591,52.36334018958137],[-117.93435925905374,52.363286142066244],[-117.93441564844188,52.3632223774649],[-117.93442990401014,52.36319573297673],[-117.9344734502096,52.3631412271753],[-117.93454471444005,52.36308695792766],[-117.93463257890778,52.363023132251406],[-117.93470337741338,52.36294176018597],[-117.93474620108115,52.36285165784163],[-117.93477492226144,52.36279724613555],[-117.93480197104003,52.36275174419334],[-117.93481576248895,52.36269798801858],[-117.93484448347925,52.36264357628881],[-117.93485812192945,52.36258077398415],[-117.93488699737767,52.36253539945005],[-117.93489896176075,52.36248151582148],[-117.93489818880319,52.362436329763895],[-117.93491198170375,52.36238256465497],[-117.93491120873433,52.36233737859411],[-117.93492499991476,52.36228362238934],[-117.93493889641454,52.362229304864634],[-117.93495284380006,52.362184576955734],[-117.93496674023292,52.36213025942359],[-117.93497885901105,52.3620854129841],[-117.93499260076956,52.36202205823032],[-117.93503604139453,52.36196810457533],[-117.93512207599069,52.36190415104125],[-117.93514923603772,52.36181860654939],[-117.93522033047024,52.3630274648804],[-117.93561061724762,52.36302873628971],[-117.93590282028548,52.363049676104495],[-117.93619079227192,52.36308330004883],[-117.93647677837343,52.363127508114424],[-117.93675467270981,52.36318525036302],[-117.93701497259597,52.36326771581476],[-117.93725893226333,52.363368222230086],[-117.93748107108077,52.363486387525604],[-117.93769078663969,52.363611584124165],[-117.93787769036956,52.36374985751023],[-117.93800842529538,52.36391129322699],[-117.93811384423968,52.36407942127986],[-117.93820970953601,52.3642491486655],[-117.93830354131632,52.3644198533857],[-117.93839747748177,52.364590005599354],[-117.93849710433723,52.3647594261225],[-117.93858910968692,52.36493001207715],[-117.93864300919427,52.36510639892332],[-117.93865180692629,52.365286411075225],[-117.93863471373963,52.36546630607801],[-117.93854892357842,52.36563746715743],[-117.93845765161016,52.365808246015575],[-117.93832571423525,52.3659688602738],[-117.93827442693869,52.36614355503579],[-117.9383111525533,52.36632268902081],[-117.93839157117515,52.366495851817064],[-117.93850075572968,52.36666368153781],[-117.93865765782171,52.36681395978132],[-117.93885486240627,52.36694674709916],[-117.93906428617568,52.36707360701898],[-117.93928206265457,52.367195416290976],[-117.93950443565575,52.36731246364437],[-117.93973537194074,52.367423337635444],[-117.93997894357682,52.36752606547008],[-117.94023885796057,52.367610750875265],[-117.94052890243948,52.36762362818443],[-117.94081497530586,52.36767741498958],[-117.94106909665301,52.36776339155026],[-117.9412321198073,52.36791070701514],[-117.9413389687616,52.368081195327704],[-117.94140201921833,52.36825821713291],[-117.94149597595755,52.36842836634085],[-117.94164036435188,52.368586233788804],[-117.94184849847724,52.36871018133341],[-117.94209411847027,52.36881191822665],[-117.94234475252367,52.368906665526886],[-117.9426001900075,52.3689955458435],[-117.94285327835418,52.36908708706505],[-117.94310636944556,52.36917861881882],[-117.94335058557158,52.369277998251235],[-117.94357726130023,52.36939195102784],[-117.94379099010595,52.36951572449691],[-117.94400054443884,52.36964202285496],[-117.94420367940708,52.36977294630151],[-117.9443725149646,52.36991897285129],[-117.94455581294656,52.37005698025171],[-117.9448193529238,52.37013232024918],[-117.94509620796424,52.37018601242681],[-117.94535165868919,52.37027488660514],[-117.94564276629863,52.37030193178852],[-117.94593110662426,52.37033386524468],[-117.94622153688032,52.37035465171714],[-117.94650841655437,52.37039437988866],[-117.94679529842684,52.3704340984405],[-117.94708713784526,52.370457246377015],[-117.94737788178466,52.370476363805054],[-117.94767097595089,52.370492818937905],[-117.94796506098386,52.37051386442404],[-117.94823262950378,52.370577625167655],[-117.94847890135871,52.3706760071954],[-117.9487281504177,52.37076838588572],[-117.94899556531178,52.37084285705907],[-117.94922633617003,52.37095482561791],[-117.9494999647852,52.371006025366135],[-117.94978528743337,52.37105409402665],[-117.95007342028694,52.37102789183787],[-117.95032087333145,52.370932289578384],[-117.95060978897688,52.37091178196105],[-117.95089776240674,52.37087654059226],[-117.95119049227235,52.370885072360196],[-117.95148285955834,52.370905420428095],[-117.95177401905293,52.370882809597994],[-117.95205958855705,52.370840628538886],[-117.95233570448389,52.3707797367171],[-117.95261020095974,52.37071760333376],[-117.95281717975386,52.37059097316608],[-117.95307318976823,52.37050893156442],[-117.95336131698441,52.37048272120819],[-117.9536013954195,52.37037701379399],[-117.95388461188115,52.370337481009024],[-117.95403576870774,52.37018271198908],[-117.9542912517141,52.370103456506875],[-117.95457660503307,52.370062382984486],[-117.95484717694059,52.369991505318936],[-117.95512751398914,52.369937670691094],[-117.95542091357993,52.369932699662165],[-117.95570845947294,52.36989967384468],[-117.95599310219555,52.36994147009183],[-117.95628572329746,52.3699505414459],[-117.95657704408261,52.36997644547569],[-117.95686476480122,52.370011693059496],[-117.95714539202329,52.37006505827406],[-117.95742398416594,52.370119409484644],[-117.95769344748305,52.37019286508211],[-117.95797470234643,52.37024288701615],[-117.95826034126175,52.37028926870455],[-117.95855155483679,52.37029597976625],[-117.95884098428441,52.3702726628139],[-117.95911739884622,52.37021008866112],[-117.95936968369055,52.370118189500495],[-117.95962802597901,52.370033480526324],[-117.95988950157687,52.36995180500055],[-117.96010637687846,52.36983149281864],[-117.96036351397659,52.36974331386889],[-117.96061871771562,52.369655568650494],[-117.9608535020371,52.36954834241852],[-117.96104405397786,52.36941040335293],[-117.9612410801628,52.36927742709388],[-117.96144489234324,52.36914774741884],[-117.96168301294324,52.36904244860282],[-117.96194427027511,52.368961882154004],[-117.96223012883273,52.36891800983437],[-117.96252048381578,52.36888967619771],[-117.96281131223309,52.36886870385869],[-117.96308870592321,52.36881070224995],[-117.96335904766508,52.36874091845496],[-117.96363262468962,52.368673624438415],[-117.96386457498801,52.36856168300068],[-117.9641050910337,52.368463315742865],[-117.96439366201089,52.368424699538586],[-117.96468380395648,52.368397474252916],[-117.96497457040486,52.368366906928586],[-117.96525990206767,52.36832580710457],[-117.96552689438828,52.36825409812197],[-117.9657892372227,52.36817755258587],[-117.96607247353153,52.3681278480224],[-117.96632473138826,52.36803593360854],[-117.96656596859086,52.36793365855135],[-117.96682741666548,52.36785197618571],[-117.96710067112986,52.36778634016158],[-117.96736979743142,52.367713078722204],[-117.96764607995168,52.36765103658281],[-117.96791468312573,52.36758056276964],[-117.96816301294695,52.36747991470639],[-117.96842357756543,52.36741282582914],[-117.96872187391577,52.36742113281061],[-117.96900395771958,52.367377542396675],[-117.96926842768063,52.367299449634444],[-117.96954731838042,52.36724322563863],[-117.96983566816877,52.36720570965698],[-117.97010912211596,52.3671389527412],[-117.97028136196509,52.36699972946144],[-117.97043620755092,52.36684463111592],[-117.97064629633856,52.366710851640114],[-117.970893019933,52.36664844690193],[-117.97104002040797,52.3668126530883],[-117.97120230811947,52.366964390620765],[-117.97136694529576,52.36711346585534],[-117.97151764939946,52.36726777418808],[-117.97168635946251,52.36741487508449],[-117.97187307558458,52.36755476846859],[-117.97208108345322,52.36767977570409],[-117.9723138293924,52.36779126415705],[-117.97254485251666,52.36790207285465],[-117.97278015555996,52.368009793403836],[-117.97303340699887,52.3681007075715],[-117.97329114629277,52.36818741969666],[-117.97352420936714,52.36829723945681],[-117.97372998221363,52.36842434441423],[-117.97390063480194,52.36857101634908],[-117.97404717754058,52.36872785650816],[-117.97417816771026,52.368888689521604],[-117.97432288525171,52.36904540247852],[-117.97448967968045,52.369192933637464],[-117.97468272831827,52.369328738688445],[-117.9748924753304,52.36945442887635],[-117.97511892404385,52.3695699862929],[-117.97535658916107,52.36967504827093],[-117.97561199598599,52.36976440835983],[-117.97588977737911,52.369823170443375],[-117.9761650033428,52.36988570779468],[-117.97642755909418,52.36996653611181],[-117.97667827355086,52.37006121813558],[-117.9769093200364,52.37017201795904],[-117.97711480064862,52.37030078296836],[-117.97729147500897,52.370445041087216],[-117.97741861812138,52.37060673940215],[-117.97754169316231,52.37077040270445],[-117.97767849581135,52.37092994557622],[-117.97774790873291,52.37110343370888],[-117.97779435533798,52.371280960717435],[-117.97789791026857,52.371450047624315],[-117.97794456583449,52.37162646073434],[-117.97801194556442,52.37180093565168],[-117.9781076738282,52.37197229530491],[-117.97821702670899,52.37214008695805],[-117.97811456175607,52.37230221230108],[-117.97793841883056,52.37245245778546],[-117.97785673840076,52.3726222253352],[-117.97801612958132,52.37275005604098],[-117.97832428641618,52.3727652202514],[-117.9786236008276,52.37275834328891],[-117.97889586418711,52.372807119379424],[-117.97914363023422,52.372907790536225],[-117.97940141052305,52.37299448878286],[-117.97966858106449,52.37307055543569],[-117.97993126589152,52.373150823194365],[-117.98019160358415,52.37323375257358],[-117.98044704148873,52.37332310178705],[-117.98070347464476,52.37341704123607],[-117.98086414211555,52.373557925568136],[-117.98093843253585,52.37373512405233],[-117.98098123841758,52.373912404921384],[-117.9809514209008,52.374091979326565],[-117.98096984730445,52.37427094540352],[-117.98099375479778,52.374450300489066],[-117.98100852644811,52.374629013094044],[-117.98108333823626,52.37480343131021],[-117.98114097412771,52.37498061183692],[-117.9811114692279,52.37515851099031],[-117.98108958539876,52.37533525070397],[-117.9811396006826,52.375513590567536],[-117.98122600376969,52.375685427428486],[-117.98137452801623,52.375841831753],[-117.98157577006695,52.37597367629031],[-117.98180420161871,52.37608879435445],[-117.98206846710977,52.376160708090644],[-117.98235344434747,52.37621092414185],[-117.98262074477977,52.37628642246484],[-117.98289940917266,52.37634071230723],[-117.98318422381062,52.37638188926395],[-117.98344886606063,52.37646172309535],[-117.98370177390161,52.37655484100715],[-117.98396265981272,52.37663497276971],[-117.98425524647163,52.376664275297074],[-117.98453303596906,52.37661413715492],[-117.98480773098484,52.37655081416091],[-117.98508666123159,52.376494553247355],[-117.98536710584686,52.376440093457376],[-117.98564331529796,52.376378561364504],[-117.98592792951341,52.37637120496168],[-117.98614682104446,52.37648790890071],[-117.98635518181712,52.37662137431378],[-117.98655654578019,52.37675265769758],[-117.98678609604393,52.37687178637048],[-117.9870448916647,52.37694330889081],[-117.98734724692645,52.37692025486645],[-117.98753504598379,52.37679675257524],[-117.9877922311981,52.37671810286227],[-117.98806345170242,52.376683305255774],[-117.98830432434414,52.37679137341923],[-117.98851811505492,52.376915616305084],[-117.98872173007622,52.37704479488426],[-117.98891903244495,52.37717804856938],[-117.98908987598135,52.37732413584471],[-117.98925664989032,52.37747219731001],[-117.98944164047926,52.3776119258828],[-117.98959651503742,52.37776424396191],[-117.98974721686778,52.377919088739205],[-117.98992354928143,52.3780655544173],[-117.99017938810564,52.378143064807425],[-117.99046033752889,52.37811569496092],[-117.99072411049153,52.37814072859418],[-117.99097793627335,52.37823897369469],[-117.9911267139895,52.37839424252469],[-117.99113139153347,52.37856774768462],[-117.9911089240307,52.378747830252514],[-117.99115919235506,52.3789250515276],[-117.99143350121403,52.37893332123206],[-117.99172824475681,52.37891142483367],[-117.99201350007718,52.37895035244128],[-117.99229298307701,52.37901031522558],[-117.99255400443897,52.379089866182035],[-117.99277861862149,52.37920582314935],[-117.99295982705473,52.379356005077135],[-117.99290951176518,52.37951667742019],[-117.99296547937611,52.379693163559736],[-117.99321485260214,52.37976570584398],[-117.99349465479757,52.37982399052698],[-117.99354341695347,52.37999941785069],[-117.99355255144654,52.380178862383026],[-117.99347760462118,52.38035249630207],[-117.9934462144586,52.38053083270778],[-117.993460727528,52.380711218071596],[-117.99354191418925,52.38088155174242],[-117.9935545654459,52.380893140580206],[-117.9938218859881,52.38112769335222],[-117.99404416815746,52.381246301261015],[-117.99429050072087,52.381345146693164],[-117.994568797299,52.38140163595697],[-117.9948613608894,52.38142131330361],[-117.99515545668136,52.38141290050307],[-117.99544797393602,52.38139308694098],[-117.99573980379121,52.38136702463832],[-117.99602864029121,52.3813272164003],[-117.99628170163226,52.38124093340248],[-117.99652021899523,52.381133336512285],[-117.99676459389156,52.38103404168339],[-117.99702789201494,52.38095241861468],[-117.99728967339229,52.380868993309875],[-117.99755993076018,52.38079969191993],[-117.9978519484402,52.380802401567365],[-117.99814579234986,52.38080524582934],[-117.9984358282633,52.38076889948741],[-117.99870294698835,52.3806965535597],[-117.99895400335778,52.38060110127246],[-117.99922263599312,52.380530555753516],[-117.99950460648309,52.38047785469954],[-117.99979671353888,52.38043036672457],[-118.00000038012159,52.38047999381809],[-118.00012295028205,52.38048790178005],[-118.00024551882792,52.38049581852333],[-118.00038889580976,52.38048147354559],[-118.00054881201598,52.38049761354131],[-118.00062223616015,52.38058053461355],[-118.00066760805552,52.380694792225086],[-118.00066987570051,52.38079197150974],[-118.00067321948904,52.38087343084814],[-118.00067349081037,52.380881915384265],[-118.00067683622488,52.38088383446188],[-118.0007741794207,52.38092779532023],[-118.0009194355567,52.38095307444314],[-118.0010919681239,52.38099095253556],[-118.00123695322574,52.38100774672597],[-118.00139477236435,52.38101527462749],[-118.00156227557223,52.381040394391654],[-118.00182340375157,52.38109962276547],[-118.00205957692573,52.3812033889646],[-118.00226690850813,52.38133279613022],[-118.00248890304704,52.381453063057435],[-118.00271089882378,52.38157332954938],[-118.00291092251851,52.3817022300647],[-118.00305578741902,52.38185890567626],[-118.00316657272333,52.38202957904054],[-118.00335849709336,52.382152277807265],[-118.00363990908915,52.382221937851114],[-118.00390014139994,52.382305918432365],[-118.00415813043635,52.38239200865132],[-118.00441377504116,52.38248075207139],[-118.00466738541775,52.382570482417755],[-118.00492454991797,52.38266101732678],[-118.00516684493441,52.3827618145881],[-118.00537522991193,52.38288564689978],[-118.00555581073715,52.38302955190764],[-118.00572856176403,52.38317574037932],[-118.00586382061195,52.383324418954594],[-118.00602087570329,52.3834853163834],[-118.00609580398529,52.383659717303736],[-118.00614786479058,52.383837610200075],[-118.00614818488793,52.384024906159254],[-118.00632415420223,52.384153833704254],[-118.00651815152273,52.384325179663094],[-118.00668953512616,52.38445886180092],[-118.00681273137016,52.38460275213627],[-118.0068656058205,52.38472654913993],[-118.00695480673974,52.384943676729094],[-118.00702599042394,52.385088485729746],[-118.00706381732574,52.38524339977472],[-118.00715319806525,52.385439673097224],[-118.00729413526159,52.3856772966493],[-118.00736564083785,52.385790539184484],[-118.00743525328815,52.38589405705456],[-118.00753857127762,52.38597565257662],[-118.00762480563486,52.38608935278267],[-118.00773120924292,52.38624392244084],[-118.0078007470062,52.38636775052179],[-118.00787372670214,52.38652283590809],[-118.00808152057226,52.386759435366976],[-118.0083243916066,52.387016507564745],[-118.00842926051524,52.38711964387886],[-118.00851721786808,52.387263913001156],[-118.00860373889746,52.38735619699684],[-118.00867335684626,52.38745971400196],[-118.00877815348697,52.387583151503186],[-118.00891623535145,52.38771678482594],[-118.00913983478377,52.38782868916708],[-118.00924592993037,52.388014823363186],[-118.00933231427449,52.38811780998955],[-118.00944008976947,52.388344682190635],[-118.00948641062293,52.38851371862344],[-118.00955180607873,52.38868971302139],[-118.0096353877829,52.388837631482176],[-118.00975600898661,52.389025336492715],[-118.00979570813051,52.389200115580216],[-118.00979739029864,52.3893801753047],[-118.00979348491822,52.38956040870428],[-118.00978968395184,52.38974008070725],[-118.00977470441948,52.38992011790468],[-118.00977283441397,52.39009936365112],[-118.00979870040695,52.39027882797851],[-118.00984336684321,52.39045677468134],[-118.00992411763164,52.390629884675235],[-118.00992828889429,52.390796569302346],[-118.00996588717754,52.39096274630653],[-118.00998668233098,52.391139612967514],[-118.01002585948333,52.39134707157995],[-118.01008764153781,52.39151266205961],[-118.01019471832427,52.391683636343586],[-118.01032655662863,52.39189073301936],[-118.01042345731965,52.39206664497734],[-118.01038992994022,52.39220703531894],[-118.01036622462549,52.39238421337052],[-118.01044322156051,52.3925576227221],[-118.01058428627229,52.39271514899952],[-118.0106754312967,52.39288219747837],[-118.01077164614394,52.39305186115401],[-118.01091240366621,52.39321105326676],[-118.011112091415,52.39334216618697],[-118.01126772064424,52.39349111205042],[-118.01138305405654,52.393657573202844],[-118.0115302327605,52.39381213538842],[-118.01171332828886,52.39395282327109],[-118.0118983578981,52.39409307569874],[-118.01208918572503,52.39423203126356],[-118.01222487928541,52.39438862423617],[-118.01228836358051,52.39456504255652],[-118.01234798257357,52.39474233113631],[-118.0124000825497,52.39492021973522],[-118.01241885390135,52.39509807305156],[-118.0123748362085,52.39527496771303],[-118.01238846396167,52.395470516100175],[-118.0124423312509,52.39560904179697],[-118.01244178773288,52.39576130240437],[-118.01240004697598,52.395925953738356],[-118.01228555442792,52.396033680232726],[-118.01225981904821,52.396211845775234],[-118.01228956337094,52.396390447314225],[-118.01232458476757,52.39657055020419],[-118.0122904324227,52.39674418174749],[-118.01217251320132,52.396900181462584],[-118.01203454972517,52.39703450016167],[-118.01182685715605,52.397175277914435],[-118.01164020942605,52.39731243596847],[-118.01149078401109,52.39746852568134],[-118.01132107378912,52.39761418089212],[-118.01111251578882,52.39773967261092],[-118.01089360663211,52.39786106504458],[-118.01067317767452,52.397980664529136],[-118.0104505060129,52.39810235608595],[-118.0102467027438,52.39823212778322],[-118.01015678658923,52.39839682816888],[-118.01013183329889,52.39858068830066],[-118.01011136783475,52.398760336682656],[-118.01010197694697,52.39894019006848],[-118.01008333819388,52.39911997355539],[-118.01004610248435,52.39930016080951],[-118.01004088758425,52.39947747759617],[-118.01011371948762,52.399653422755605],[-118.01025704944789,52.39980884718202],[-118.01045624842031,52.39994274068293],[-118.01055857504727,52.40000001112756],[-118.01067591112066,52.40006620550322],[-118.01081568985391,52.40022082425655],[-118.0109486736802,52.400372148864356],[-118.01108479171126,52.40055640542884],[-118.0111641903661,52.40071699977439],[-118.01126032182324,52.400887214497835],[-118.0114230865484,52.40103777804811],[-118.011584128105,52.401187653760196],[-118.0117308159599,52.40134499492272],[-118.01187343120992,52.40150432000583],[-118.01198544086475,52.40166886082674],[-118.01202871381163,52.4018444512841],[-118.01203751539258,52.40202611903928],[-118.01209507131261,52.402214545015056],[-118.01229277435709,52.40231674311381],[-118.0125907292847,52.402348027534984],[-118.01288878908163,52.40237874982233],[-118.01317911963426,52.40241119420428],[-118.01345533370355,52.40246973878037],[-118.0137183649426,52.40254936696041],[-118.01397628752164,52.4026365478856],[-118.01423431556401,52.40272316686236],[-118.0144921374663,52.4028108990911],[-118.01475282510873,52.40289318776242],[-118.01502155501775,52.40297207766088],[-118.01530312569557,52.40301180885995],[-118.01559929800733,52.403002909240065],[-118.01588964023483,52.4029755567568],[-118.01617860287826,52.402935699076146],[-118.0164546265512,52.40287577016945],[-118.01672712973858,52.40280488520182],[-118.01700421753452,52.40281891583676],[-118.01720189723162,52.402961155688274],[-118.01747622534376,52.402950185188494],[-118.01761446793809,52.40279444548613],[-118.01775567654568,52.402632710083374],[-118.01796586062348,52.40250844686892],[-118.01819481373802,52.40239281498844],[-118.01841200088829,52.40227072172758],[-118.0186289780852,52.402149750798685],[-118.01885254543447,52.402033177875566],[-118.01911016845197,52.401942643374625],[-118.01930122901369,52.40182157197598],[-118.01944118584693,52.40166651744692],[-118.01966323108313,52.401548141605],[-118.01990018066186,52.40143925843812],[-118.0201383367597,52.40133384239454],[-118.02037821614014,52.40122911331749],[-118.02061951077056,52.40112672859449],[-118.02086394347103,52.40102738458354],[-118.0211115142716,52.40093108126579],[-118.02136567541001,52.400839175696866],[-118.02162773740467,52.40075458296889],[-118.0218952506515,52.40068051850378],[-118.02217235714429,52.40062459598378],[-118.02246471490903,52.40059623923969],[-118.02275762552658,52.40058484156384],[-118.02305484951597,52.40059010257247],[-118.02333806264545,52.4005611134096],[-118.02361205908093,52.4004920045339],[-118.02389806547394,52.400447972591174],[-118.02418669257324,52.400409770155775],[-118.02447649544885,52.400385176339235],[-118.02476926648681,52.40038448564738],[-118.02506349023218,52.40040588790182],[-118.02535392092717,52.40043774054013],[-118.02564286912268,52.400487549003316],[-118.02592767374301,52.400499834699595],[-118.0262096049063,52.400457781687486],[-118.0264898768703,52.40039473926749],[-118.02677418637461,52.4003398711069],[-118.0270747202589,52.40032729125477],[-118.02738360761496,52.40033954480804],[-118.02761833213859,52.40028238707018],[-118.02773402759831,52.400108172472535],[-118.0277819342017,52.39999979023924],[-118.02781570055386,52.39992766137055],[-118.02793236481105,52.399768169694866],[-118.02815468634402,52.399648111132095],[-118.02839263804712,52.399533641209025],[-118.02858013941673,52.39940159926088],[-118.02864879963786,52.399221319633156],[-118.02867877931722,52.39902991052048],[-118.02882998205588,52.39890382443915],[-118.02909671457274,52.39884379694701],[-118.02940565053588,52.398805844175094],[-118.02969401679437,52.398748992974355],[-118.02992136863317,52.39864168717109],[-118.03011051546463,52.39850073177239],[-118.03029804076944,52.39835852734713],[-118.0304699639743,52.398200592021816],[-118.03068592543302,52.398094756837224],[-118.03096407633248,52.39805299284343],[-118.03126328034932,52.39803749601498],[-118.03156721579056,52.39803642091423],[-118.03185993910064,52.39804586305481],[-118.03215059721398,52.39806643420644],[-118.03244387787068,52.39809283466737],[-118.03273543436669,52.39811854710663],[-118.03302854210409,52.398135900352905],[-118.03332047105886,52.39813964358954],[-118.0336145708257,52.39813168601862],[-118.03390635717062,52.398116231352176],[-118.03420069442923,52.39809700773406],[-118.03449330522616,52.39807710502626],[-118.03478733283791,52.39805954627157],[-118.0350803254467,52.39804756503957],[-118.03537318457344,52.39804628624492],[-118.03566819328339,52.39807335690072],[-118.03596275846489,52.398112805247806],[-118.03625259261723,52.39813782163035],[-118.03653523290886,52.39812174009059],[-118.03680916218725,52.39806275067384],[-118.03707452536506,52.39798004095449],[-118.03734081623216,52.39789232264076],[-118.03761183800074,52.3978190348764],[-118.03789374188965,52.39777694452688],[-118.0381844478533,52.39774730849429],[-118.03848133141258,52.397724305722626],[-118.0387787017571,52.39770866374077],[-118.0390778706083,52.3977032974896],[-118.03937335210944,52.397707829592186],[-118.03966107607548,52.397724236269525],[-118.03994121946754,52.39776155439778],[-118.04020702795012,52.39783624068755],[-118.040467396037,52.39793028905396],[-118.04072969637919,52.39802391011156],[-118.04099581672317,52.398096928216304],[-118.04127640606544,52.39812186465603],[-118.04135914051547,52.398115145263525],[-118.04114965070706,52.398206209937854],[-118.04119752224808,52.39837758597294],[-118.0413308864329,52.39853736034193],[-118.04145621486794,52.39870052565082],[-118.0415776803024,52.398864553180516],[-118.04164160013711,52.399039288486115],[-118.04167319281572,52.39921856925573],[-118.04175805583925,52.3993902321867],[-118.04187372918314,52.399555548438485],[-118.04196611525337,52.39972660028445],[-118.04229313775971,52.400110638941484],[-118.04272110471791,52.40044971583488],[-118.04346986521206,52.40090673928065],[-118.04390370425098,52.40215375287985],[-118.04510743964448,52.402844519411666],[-118.04602739383448,52.40319765495433],[-118.04964900019249,52.40210463579635],[-118.0568371480277,52.40273577581062],[-118.06223469787972,52.4037558053942],[-118.06810329709822,52.404312641423004],[-118.07398503543027,52.40487909433688],[-118.08115554080243,52.40584981828391],[-118.08516703011433,52.40611344595093],[-118.08843289877899,52.406081210917584],[-118.09443154230362,52.40504890170866],[-118.10025663503912,52.40407214512157],[-118.10549798570423,52.403770421746955],[-118.11053694018715,52.40392446885043],[-118.1164113925822,52.404369810472225],[-118.12218430163958,52.40504592970375],[-118.12844004815217,52.405836919884536],[-118.13308895976546,52.40650315425449],[-118.13692183253683,52.40693329651008],[-118.14029566470751,52.40639091889169],[-118.14279260531953,52.40327204697224],[-118.14326693639298,52.39865561580182],[-118.14322920973453,52.395866017244245],[-118.1430759412307,52.394436713502415],[-118.14795535259324,52.39310704134317],[-118.153385894669,52.39297457749533],[-118.15618681075266,52.39288529050172],[-118.16169250380757,52.39258384346759],[-118.16721285127666,52.392282573132555],[-118.17021860222584,52.391962639869284],[-118.17378198580195,52.391020550756934],[-118.17702790445452,52.387510785411756],[-118.18070818870699,52.38559802023501],[-118.18366367838486,52.38294652111031],[-118.18426028126315,52.38129506309478],[-118.18309223499077,52.378600119326066],[-118.18287996116051,52.37569793253],[-118.18534103980464,52.373888222032434],[-118.1923558946108,52.37308685770221],[-118.19833788149191,52.373243447339725],[-118.20403555621185,52.373171921223246],[-118.21317122821286,52.37340714605749],[-118.21774543603381,52.37389821720873],[-118.22188976707494,52.37700991025578],[-118.22229156936649,52.379288521369915],[-118.22239066065279,52.37980437690905],[-118.22368573352705,52.38066563487283],[-118.22918803852659,52.38110521858696],[-118.23565360452096,52.37990176151402],[-118.23979378774945,52.37804581923792],[-118.24519668211502,52.37386667328192],[-118.24678246373878,52.36942591917875],[-118.24749663448358,52.36612326793044],[-118.24896269983772,52.36242554452376],[-118.25026019128045,52.358101892644584],[-118.25247868292522,52.35441340169707],[-118.2538387868252,52.351627649671336],[-118.25881748810403,52.34903853981747],[-118.26705742899229,52.34772466854584],[-118.27136543099121,52.3472960570943],[-118.27389679754485,52.34662790865291],[-118.27953367944325,52.34472874536667],[-118.28443691730958,52.341226979284656],[-118.28762965001873,52.340331498671794],[-118.29142723909241,52.34167188017892],[-118.29556145811915,52.34608830161578],[-118.29887055396622,52.3485082717449],[-118.30089991616347,52.349484653378326],[-118.30408524301627,52.35458283057809],[-118.3036359052224,52.35891130057176],[-118.30572183869596,52.362633745367745],[-118.31098661723256,52.36546463565616],[-118.31600204153358,52.367376016863346],[-118.3248507342997,52.368460146391506],[-118.33045324830438,52.3684962552329],[-118.33736622964885,52.36773937731715],[-118.34365243149476,52.36601319737587],[-118.35142044861219,52.364688010549635],[-118.35646348703203,52.36420499602149],[-118.36002889021418,52.363543002885315],[-118.3647635601769,52.359462712461685],[-118.36660442824301,52.3555944145856],[-118.37036303869964,52.35333816683712],[-118.37431240535085,52.35142194259214],[-118.37769240921027,52.35012881737924],[-118.38051409628346,52.34923065195093],[-118.38211686744386,52.34861633013535],[-118.38374669092352,52.34525994171466],[-118.3850134783448,52.34144665900447],[-118.38674946828168,52.338490173171984],[-118.3889293013781,52.336450262420215],[-118.39426036042653,52.33573730946215],[-118.39994767222215,52.33560115824179],[-118.4029313617698,52.33578656021617],[-118.40386674050802,52.33584859470636],[-118.40954625498237,52.336510281604035],[-118.41699414331003,52.33745849111915],[-118.4226861173189,52.337379581225214],[-118.4287865903699,52.3347272378811],[-118.43238366284648,52.33075286416055],[-118.43409572491406,52.32934006489912],[-118.43731632239009,52.325820103513024],[-118.44023105360276,52.3237857694495],[-118.44631344766789,52.3227341453666],[-118.45182303525071,52.32241821650756],[-118.45685520175105,52.322211239831795],[-118.45901205692121,52.3218801744524],[-118.46332290237477,52.32013654916711],[-118.46633486338123,52.317874623436445],[-118.46971100834577,52.316232205399295],[-118.47290233999428,52.315222536288374],[-118.477761340586,52.314393515381525],[-118.48270380675272,52.31418528272018],[-118.48700179541888,52.313181855639],[-118.49084237224592,52.31217335856375],[-118.49252776890665,52.311151567512034],[-118.49461156695028,52.309454406326786],[-118.49445492719946,52.3062002378247],[-118.4928109626474,52.30368140851562],[-118.49061609888655,52.300764848107],[-118.49049107970106,52.29665361147548],[-118.49210885373724,52.293813498298924],[-118.4979344154093,52.289962687076795],[-118.5029891822259,52.28798884464932],[-118.50897839697224,52.28590351173207],[-118.5127275544746,52.28489359698619],[-118.51992397938325,52.28316334945367],[-118.5289693117041,52.28268754691104],[-118.53148706684318,52.28264355897539],[-118.53631113966047,52.28369048144514],[-118.54152402313689,52.28479555129423],[-118.54384476388562,52.285378303223744],[-118.54711085859537,52.285106093980616],[-118.55123400104533,52.282609686812684],[-118.55220296171608,52.281189797627285],[-118.5542733391901,52.27818043207952],[-118.55487990326769,52.27287617556736],[-118.55604112083434,52.26991412327724],[-118.55803342489418,52.26632645548264],[-118.56135745911938,52.261604858953454],[-118.56184968509075,52.258239481599155],[-118.5602428818968,52.25275811007666],[-118.55761448364373,52.24653101102903],[-118.5557088087068,52.242530087381404],[-118.55443278238978,52.2394975300032],[-118.55326332032672,52.236361341061034],[-118.5533723500616,52.235217374619815],[-118.55338227589039,52.233451485126075],[-118.55462579740966,52.23094679091233],[-118.55865469057534,52.22845105259382],[-118.56341891242191,52.22733230240077],[-118.5650992651909,52.22682287669396],[-118.56556551878687,52.22659872975934],[-118.56803090511609,52.22238816009182],[-118.56815836657414,52.21925171140442],[-118.56923378540745,52.2149763263343],[-118.5702899046423,52.21149670536978],[-118.57165411793108,52.20665426951216],[-118.57271867676431,52.202951961535064],[-118.57357674243843,52.200620131255604],[-118.57463677870865,52.19651393174174],[-118.57597637396626,52.19360830543316],[-118.57738907462426,52.191733249450614],[-118.57870414133374,52.19093976624647],[-118.58215369127923,52.190156317963094],[-118.58503446235551,52.19028199359008],[-118.59153766041828,52.19076175172735],[-118.5964502617078,52.191410616765204],[-118.60026474891605,52.191418349348254],[-118.60642576283254,52.18882145283213],[-118.60868708276269,52.18722939421819],[-118.61213986749777,52.1858185438515],[-118.62061135430086,52.18339673809466],[-118.62837466095095,52.18011292077584],[-118.63174917372349,52.175959014735426],[-118.63204592571329,52.174305709353305],[-118.63598353228778,52.170558030778395],[-118.6409470727827,52.16692034300217],[-118.64457900885387,52.16591070434224],[-118.65118440971061,52.16490306786294],[-118.65861820427864,52.16412993659777],[-118.66346790947568,52.163573860108016],[-118.667094316227,52.16250460439834],[-118.67047831389857,52.15835042725047],[-118.67106264522857,52.1544711433839],[-118.67229399955755,52.152590990827385],[-118.67871028633373,52.151639789660855],[-118.68593180226297,52.15479897542051],[-118.68795025808093,52.157657768427036],[-118.68931444610799,52.16160102193888],[-118.69271830845939,52.16497594192713],[-118.69819103618359,52.1659565166775],[-118.70517523506516,52.16461315300917],[-118.70704735715512,52.163987808482965],[-118.71495523569565,52.16161469076666],[-118.72369573405261,52.161808862698805],[-118.72794610379087,52.16524225591536],[-118.72975321129408,52.17112541101892],[-118.73084726140117,52.17381100377742],[-118.73658819662101,52.17776007354746],[-118.74500573798186,52.18217488640049],[-118.74853631296989,52.18412717188288],[-118.75448140294534,52.184769397413014],[-118.75996651488344,52.18323652967417],[-118.76154793327105,52.18267544480546],[-118.76957505531253,52.17950083732917],[-118.77476744743367,52.18076650542111],[-118.77662116315848,52.18156908526455],[-118.77858141123664,52.181118312814036],[-118.78425374480467,52.179248989062415],[-118.7902105104945,52.17823063006979],[-118.79504747549421,52.17818610363808],[-118.80025291985923,52.178139041023925],[-118.80221732914413,52.17810231869261],[-118.80547286563605,52.17614807124124],[-118.81142894659308,52.173534540551884],[-118.81357684244298,52.17274726394159],[-118.81879899854401,52.17046908636536],[-118.82604439518687,52.16814769520719],[-118.8314459693597,52.16655466332102],[-118.83406357090213,52.163995429319996],[-118.83446729896495,52.15783254094839],[-118.83429474430731,52.1553228184225],[-118.83404443009358,52.15035319502567],[-118.83469950687339,52.1477326737099],[-118.83620189287298,52.144881452256804],[-118.83936502754645,52.14266038252933],[-118.8434687569593,52.140442492565604],[-118.8467277260768,52.13799337049762],[-118.84916130120095,52.13457388670226],[-118.84980418917675,52.13388807918592],[-118.85030007343387,52.129554254790705],[-118.85031734361682,52.12464580106089],[-118.85069283466612,52.12219605499265],[-118.85377973427423,52.119175456782784],[-118.85778138390658,52.11666687868258],[-118.85992632314863,52.11364740147487],[-118.86021632092616,52.11171185480204],[-118.86124894603124,52.10857148121834],[-118.86367157659777,52.10537930338488],[-118.86610081056796,52.10241232686371],[-118.8642528416118,52.10007140604906],[-118.86240360566775,52.09836314676103],[-118.86176813063518,52.09624617373325],[-118.85972344776926,52.093675422956444],[-118.8581656495721,52.09207362715842],[-118.85491727793591,52.09029969757101],[-118.85316065924233,52.089102994202],[-118.85521297607049,52.08619336113173],[-118.86144386654865,52.08386668933543],[-118.86552235058983,52.08176057758201],[-118.86961972565338,52.07953719295173],[-118.87008203044506,52.07913818493668],[-118.87195873228184,52.07451911343601],[-118.87030164677316,52.070577904663494],[-118.8678937567079,52.068522797423384],[-118.8604916482151,52.0659427568276],[-118.85428538512328,52.06421868022847],[-118.85021955438883,52.06216200212303],[-118.84727350889007,52.05759400612623],[-118.84850399142354,52.05102911751295],[-118.85102082245422,52.047786147617494],[-118.85723936251352,52.045680639808204],[-118.86511508173942,52.04438160444701],[-118.87068030992106,52.04347397812779],[-118.87197985997756,52.04324697194372],[-118.8757799895364,52.04245044184961],[-118.8812514941816,52.04228877747319],[-118.88579917733874,52.04149600029252],[-118.8911777788996,52.040020280373554],[-118.8961823570933,52.03813803078056],[-118.9008191383437,52.036885920634205],[-118.90462305943535,52.03552075836534],[-118.90795598045275,52.03523924056538],[-118.91583146249955,52.03741911613209],[-118.9205529942001,52.03941698981961],[-118.92778812763888,52.03725453569004],[-118.93399343733769,52.03366364430592],[-118.93881700629025,52.030532913265574],[-118.94346503826276,52.0273946159645],[-118.94523680529466,52.020201822039525],[-118.94616948426433,52.015640006458035],[-118.94608702969806,52.01010525682023],[-118.94691846739443,52.00787776550727],[-118.94887378094576,52.00514010389552],[-118.95341134547748,52.0042851686742],[-118.9568450005998,52.00309411546178],[-118.95869390537875,52.001548804864555],[-118.96015400803256,51.9999593329084],[-118.96077031580604,51.99932326592808],[-118.961037872339,51.997493280111165],[-118.96139319089245,51.99674879450412],[-118.96286245880484,51.994287648768164],[-118.96524974375197,51.99176840286037],[-118.96706510122164,51.98861624741486],[-118.96806995694656,51.98729910964562],[-118.96944079571362,51.98426504399274],[-118.97116041612254,51.97979978207779],[-118.97132451006962,51.978424323606134],[-118.96908338283005,51.97597681479273],[-118.96500676097698,51.97427929947911],[-118.959722417227,51.97406823937576],[-118.95481305147904,51.97317170669273],[-118.94888707736486,51.97222089815833],[-118.94562952284275,51.9699971122422],[-118.94060817525931,51.96853181397997],[-118.93551593246048,51.96786429939994],[-118.93181028577364,51.96695917115216],[-118.92700550404336,51.967316494431685],[-118.92145083038537,51.96751011952751],[-118.91812361437522,51.96751989964679],[-118.91458882621465,51.966557117791254],[-118.91236749350195,51.965536247056264],[-118.90865289937473,51.96343345658132],[-118.90502329295475,51.96206777927147],[-118.90113434693986,51.96076648867389],[-118.89752398352202,51.95946483939611],[-118.89417929397764,51.9583311228874],[-118.8915805351196,51.95702604263651],[-118.89018553222448,51.95525797212715],[-118.88978915710672,51.95240056164158],[-118.89116615205045,51.95034065001666],[-118.89539569524945,51.946955835895935],[-118.89695209649108,51.94540797021587],[-118.89693859253012,51.94432630021474],[-118.89729267319841,51.94198145949258],[-118.89884287830802,51.93831998509158],[-118.90104666788325,51.93585365924789],[-118.90166914401578,51.93293937411028],[-118.90404660461434,51.92967566778665],[-118.90837003340992,51.926862660597315],[-118.91502214415637,51.926729977779615],[-118.92261129852312,51.927044197229364],[-118.92779556695793,51.927026311677814],[-118.93888735813202,51.92722263630771],[-118.93935233700559,51.92733357018134],[-118.94407036783093,51.92829373089497],[-118.94825020839481,51.93004606722416],[-118.95287838662293,51.93174353202419],[-118.95779109358553,51.93259052929604],[-118.96491824118694,51.93404606062951],[-118.9704764183663,51.93488703148317],[-118.9764009534997,51.935092624036926],[-118.98166146065007,51.93478730777021],[-118.98497108966986,51.932602079456494],[-118.9875130702887,51.9277339335306],[-118.9872753244496,51.92167854099822],[-118.98309044060153,51.917869015989645],[-118.97760732316864,51.914854740016004],[-118.97528093269828,51.91394910789002],[-118.97322034421362,51.9112182932127],[-118.97355514150455,51.90715475445102],[-118.97353012284495,51.90332606692431],[-118.97118560308338,51.90036472729037],[-118.97081845555218,51.899740381946216],[-118.96753670584364,51.89552227127603],[-118.96545243400229,51.88987140979467],[-118.96533382998508,51.885812025224354],[-118.96630131359439,51.881184337461185],[-118.96643133095759,51.87495327319684],[-118.967617851255,51.872948028618936],[-118.97137285017925,51.87087691588131],[-118.97618363257378,51.870231369284134],[-118.98125035087644,51.86981038424817],[-118.984664872206,51.86957355901051],[-118.99001186422979,51.86840924888734],[-118.99044670235503,51.86589063870393],[-118.98720888021383,51.86476071702848],[-118.9827596355249,51.863350143823645],[-118.97905613789719,51.862391438431466],[-118.97451457384223,51.8609218658556],[-118.96951744582599,51.85865547428417],[-118.96571268458554,51.85724207153464],[-118.95607188068108,51.85270511562407],[-118.95413654235394,51.8520240461973],[-118.95246316741522,51.850717788783534],[-118.9517915727711,51.84854852098769],[-118.951045693548,51.84728982788385],[-118.95085724680139,51.847009969970834],[-118.94936495001286,51.845579571119075],[-118.94889227556672,51.843356034184836],[-118.94979397628299,51.84112484475134],[-118.94940420749228,51.83884047526671],[-118.94912259155022,51.83832438210672],[-118.94863115707382,51.83558572353041],[-118.94889635214345,51.83403771303246],[-118.9513716381879,51.83191823339116],[-118.95532593006996,51.830133339803005],[-118.95881036188851,51.82863325825027],[-118.96268487719966,51.82788068506256],[-118.96554098806527,51.82701344782893],[-118.96598213752512,51.82500459128283],[-118.96366111049319,51.82364446827382],[-118.96115798104348,51.822508625435056],[-118.96041750150503,51.821940607792854],[-118.9599366332639,51.82039845809282],[-118.96093240323609,51.81857254495384],[-118.96138251281012,51.81650899969782],[-118.96192999758765,51.81565009233708],[-118.96097652692495,51.812515011874304],[-118.95845852038029,51.81012031901656],[-118.9540162449289,51.80762206968672],[-118.95234797650232,51.80665579097078],[-118.94900366944552,51.80432141730053],[-118.94621351049177,51.80199184322126],[-118.94545526799718,51.79919204686259],[-118.94406023569,51.7966307142147],[-118.94282528625939,51.79389270005282],[-118.94152547950503,51.792637891790925],[-118.93912596607697,51.7925881533322],[-118.93536070536184,51.79340290292462],[-118.93251055653064,51.79415246276011],[-118.92891481665234,51.79490987961193],[-118.92532023265139,51.79520964986478],[-118.9201531800669,51.79413925167377],[-118.91590400542273,51.792270608724934],[-118.91357632313058,51.790162627242765],[-118.90831284146373,51.78852375442879],[-118.90479974893906,51.787786400278584],[-118.8998217514188,51.787175366643346],[-118.89603951053368,51.78701670835567],[-118.8925337614328,51.786683513281766],[-118.88764277009682,51.785271956422044],[-118.88384313026096,51.7819127323089],[-118.88334596063339,51.77825430939593],[-118.88581030403691,51.775219584728944],[-118.89012384833715,51.773096989004046],[-118.89443636779713,51.76936621092722],[-118.89560678308769,51.76576152715433],[-118.89540269256555,51.7638804371354],[-118.89342782291916,51.75971067867566],[-118.8918302068363,51.754748800569914],[-118.89022317865319,51.749667897863695],[-118.89028781509924,51.74640740572604],[-118.89009349364058,51.744468253540106],[-118.88721096604814,51.74042086369071],[-118.88654523955628,51.73842408641405],[-118.88653484572974,51.73625175865934],[-118.88642548324938,51.73459742409851],[-118.88870535435848,51.73115775275593],[-118.89502308122617,51.72851086570749],[-118.89989611330164,51.726320983020656],[-118.90768323283424,51.72349839885273],[-118.91456441738293,51.72050630125719],[-118.91822860637079,51.7180331672418],[-118.91727551992074,51.713579950572665],[-118.91549898080159,51.7112420777666],[-118.91476163706338,51.71022060213631],[-118.91482022913874,51.706446816581334],[-118.91700268860392,51.70403378827819],[-118.92003027847461,51.70242456085098],[-118.92285675219912,51.69944838485922],[-118.92291409097933,51.695677905203034],[-118.9232640751142,51.69441570548926],[-118.92315180931843,51.6907034352164],[-118.92265813316806,51.68727914222788],[-118.92078234820326,51.68385120311646],[-118.91744802495442,51.68089331933335],[-118.91579370135774,51.67987505754561],[-118.91061263459314,51.67646268958795],[-118.90811111913854,51.67429918259507],[-118.90607333267378,51.67241814177681],[-118.90566955101141,51.66916662359796],[-118.90470481100567,51.66345413985066],[-118.90396136733024,51.661400604188934],[-118.89950765358141,51.657469163086326],[-118.8971076788559,51.65513800000692],[-118.89570362711999,51.65285597857618],[-118.89422263786064,51.65069031566568],[-118.89088933941446,51.647841280902604],[-118.88858150356913,51.64664917152554],[-118.88397204650639,51.64512311250435],[-118.88066696702523,51.644788386448475],[-118.87533666158485,51.64492312752615],[-118.87185457359651,51.64567513401665],[-118.8675421817599,51.64643417546797],[-118.86560717451422,51.646437992556656],[-118.85963252619523,51.64588447540406],[-118.85438332726675,51.64498612516489],[-118.8506178888577,51.6439090561105],[-118.84905342817478,51.64351478193034],[-118.84609258965804,51.64152078154863],[-118.84395845939376,51.63838587041403],[-118.84119148831653,51.63645462904277],[-118.83355937822313,51.63493167619026],[-118.83006786900683,51.63494162916018],[-118.82777413725267,51.63500727835871],[-118.82114719052268,51.63445163369207],[-118.81865490011074,51.632005491027435],[-118.81717415614884,51.63075066110406],[-118.81504148365113,51.62647069195851],[-118.81510985258103,51.6230428901966],[-118.81609972639826,51.61966879810962],[-118.81597490881792,51.61458316246726],[-118.81521683019714,51.61167418512308],[-118.81243482396523,51.607284182274135],[-118.81277210347162,51.6032813606489],[-118.81478337387199,51.60076504911531],[-118.81531449015463,51.599387519868195],[-118.81437431073458,51.59590770325423],[-118.81390330792708,51.592933913965965],[-118.81525728429087,51.59070187783355],[-118.82039141342085,51.588802932795765],[-118.8243243316621,51.58714024162261],[-118.8253039781973,51.58399654693149],[-118.82529010182412,51.58142038537033],[-118.82526201635329,51.57662489251333],[-118.82523619070648,51.57199300474214],[-118.82529320727998,51.56845160057634],[-118.82529010415593,51.56793836983484],[-118.82564381764571,51.5654226030953],[-118.82534413834267,51.561310647179084],[-118.82484218047874,51.55577417816649],[-118.82599914499517,51.55056635602948],[-118.82780062837654,51.54656232750816],[-118.82987930710443,51.54210333732447],[-118.83095439353237,51.53889960782583],[-118.83093549869304,51.53644087300077],[-118.83072403895171,51.532497338696494],[-118.82777157641605,51.52908246295808],[-118.8215322983778,51.52847135107676],[-118.81621438817277,51.52825821159838],[-118.81172042331968,51.52655782625758],[-118.80483369431086,51.525032515907164],[-118.79851281494234,51.524480869804094],[-118.7927300965965,51.52489224937452],[-118.7906467611101,51.527242383357425],[-118.78746127102995,51.53073578573789],[-118.78583281340073,51.53410992589866],[-118.7812647422092,51.53691761080028],[-118.77933362538326,51.536925545587586],[-118.77649011727665,51.536129981588296],[-118.77243558179055,51.5320298039098],[-118.76975873891237,51.52740885238252],[-118.76845458573641,51.52467170593722],[-118.76549699947067,51.52175860282082],[-118.75808424383965,51.52246513664009],[-118.75031383367224,51.525509787252616],[-118.74565192521476,51.52826110598385],[-118.74117109650899,51.52947604852689],[-118.73759881171411,51.528794622638394],[-118.73126386362833,51.526925067717535],[-118.72713241988683,51.52550543312611],[-118.72400171535732,51.523738763635194],[-118.71912035942843,51.51792480460251],[-118.71360690996136,51.513304846580766],[-118.70809253086988,51.51131562475629],[-118.70277798724922,51.509784456383144],[-118.69755215442905,51.508593681803895],[-118.69351540767335,51.50723060033934],[-118.69066626344635,51.50500726494476],[-118.69065590826483,51.503066713050266],[-118.69668521789501,51.49985976265492],[-118.70454209863472,51.496467922587875],[-118.71048374061849,51.49360206851101],[-118.71267524608841,51.49131648974362],[-118.7116423202477,51.487147055051416],[-118.71034832461059,51.48446418382015],[-118.70732158233703,51.48087070604706],[-118.70272515559752,51.47739480820339],[-118.69584708935011,51.47518254972815],[-118.69071277498684,51.47398971749121],[-118.68631137089847,51.47222587397322],[-118.68245408872372,51.46989412253988],[-118.67787393245304,51.46607741517237],[-118.67493353556038,51.46442157006836],[-118.67154857168126,51.46317393861287],[-118.66577322818823,51.461753370666194],[-118.65862865024694,51.461766450066406],[-118.65672129937002,51.46199640744175],[-118.6493904955362,51.463035111242846],[-118.64463147281252,51.462816368711074],[-118.63723241907955,51.46322161009814],[-118.63293488126659,51.464829808404765],[-118.63201826816925,51.4654571215974],[-118.63127876500077,51.46546033889153],[-118.62899255687655,51.46414636314918],[-118.6272421525967,51.45981316893955],[-118.62759036391381,51.45609766076709],[-118.62767691726596,51.45204193639584],[-118.62812781742005,51.44987224927792],[-118.6301381180435,51.44729930682106],[-118.62518117657733,51.44490378396954],[-118.6190525261953,51.44422798643311],[-118.61429046905245,51.44343571611641],[-118.6108233367213,51.442867080560035],[-118.61008758665999,51.441041254112626],[-118.60952274096879,51.43578772197675],[-118.60886358492748,51.432473879953115],[-118.6073007581354,51.428765957599516],[-118.60601427390596,51.42487974851659],[-118.60828378637811,51.42093822988516],[-118.61074697637027,51.41825357926383],[-118.61384709952479,51.41556649102049],[-118.61439004459446,51.41276428226534],[-118.61118354393638,51.40962470193804],[-118.6109993174705,51.408998423724604],[-118.60705593511743,51.40688841966004],[-118.59975019665113,51.405241912641635],[-118.59489597830022,51.4031321723481],[-118.59471159911493,51.40199254490969],[-118.59369745556697,51.39942170916004],[-118.59150158783949,51.39742548460244],[-118.5875648916604,51.39605965608644],[-118.5851920619358,51.39554532672749],[-118.58116398098548,51.394466014854935],[-118.57925287841564,51.39190096869529],[-118.58298078963486,51.38806508907417],[-118.58618076175286,51.38555616389397],[-118.58717793427039,51.382298037767086],[-118.58717196640768,51.380358355850944],[-118.58788950040764,51.376870352461744],[-118.59263690653238,51.373666296414406],[-118.6006576818361,51.37171491264302],[-118.60805474789447,51.368392709472495],[-118.61269281060437,51.364618981052566],[-118.61286237526504,51.359988943425186],[-118.61194398591552,51.35719147277856],[-118.61101358062116,51.35239862780614],[-118.60927446459966,51.34760359613401],[-118.6083508992575,51.34389244240116],[-118.6097020040368,51.34023143043242],[-118.6120691778401,51.33714400264035],[-118.61234028876873,51.333717464835516],[-118.60721090363705,51.32933044028501],[-118.6005328986964,51.32470959400041],[-118.59879671726355,51.32180235123429],[-118.59841876159456,51.31751634495908],[-118.59822277290476,51.313007021702546],[-118.59648826435505,51.31095326951854],[-118.59337732718926,51.30970212784276],[-118.58999227949253,51.30690413369108],[-118.58871580678168,51.305135280752445],[-118.58633720671622,51.30262324100778],[-118.58305368024843,51.300514777489205],[-118.57703227766224,51.29983666601544],[-118.56891241836284,51.300132486737205],[-118.56381117015492,51.30059064766439],[-118.5611632777162,51.30054018498705],[-118.55678879048853,51.299685234754016],[-118.55468058231777,51.2983196489736],[-118.55313180862004,51.29723240519182],[-118.55112527838288,51.29364221631334],[-118.55074741400587,51.28998238833721],[-118.54855420923026,51.28707311234134],[-118.54673616479856,51.28587428824998],[-118.54554517858092,51.2818193186069],[-118.54926561666751,51.27576911610538],[-118.55281792265468,51.27250429877669],[-118.55472323150396,51.26959210512374],[-118.55535333964177,51.26867914936252],[-118.55935596146331,51.264790606779876],[-118.56336218154982,51.261304435819504],[-118.56936348336424,51.25872881718191],[-118.57382572580542,51.2558670342186],[-118.57508474978096,51.253011852707004],[-118.57417171914861,51.25003779760599],[-118.57289226655604,51.24821414664083],[-118.57288699401775,51.2454166660735],[-118.57361264096653,51.24238810359566],[-118.57361221798777,51.24136184976526],[-118.57041074119292,51.23776741977114],[-118.56602313478122,51.23342939973906],[-118.56154931363923,51.22892351272344],[-118.55663400227071,51.22499018309906],[-118.54815532417268,51.21997336106594],[-118.54486642731763,51.21717383543185],[-118.54322897588247,51.215520032966005],[-118.54240022842595,51.21129504944543],[-118.54575945144327,51.2080369316673],[-118.5513023213802,51.20643590553109],[-118.55686486510415,51.20591299261506],[-118.56232039808977,51.204826451574476],[-118.56304636126136,51.20453590160294],[-118.56385349336135,51.20316349445997],[-118.56430992455391,51.20036475260926],[-118.56375278136224,51.196998021213325],[-118.55964790588949,51.193403514045244],[-118.55555245459665,51.19095421785287],[-118.55418511256974,51.189581277409445],[-118.55135747767716,51.18696120651225],[-118.54698069062253,51.184222057474024],[-118.54079418123985,51.18086166108581],[-118.53760358306778,51.17954697021572],[-118.53351927105227,51.178751194976236],[-118.52923271020758,51.17881245147555],[-118.52113951993643,51.178820822531996],[-118.51395418295905,51.178824153566886],[-118.50413625923986,51.179407722378144],[-118.49867946254035,51.17906595238034],[-118.49521577338797,51.17826441995501],[-118.49258040186207,51.17826686022047],[-118.48712298214338,51.1779295483671],[-118.48239214475628,51.17712986107699],[-118.47621146302336,51.175881986960384],[-118.47183949089967,51.17365277265952],[-118.47093646746706,51.17176851632837],[-118.47111092879364,51.168798449256784],[-118.47175481087206,51.16628415699849],[-118.47120733531563,51.164003283096214],[-118.46911380142703,51.16006644188886],[-118.46829328031666,51.15795344545478],[-118.47047337248732,51.155038124657935],[-118.47727996236446,51.1530949753113],[-118.48228924507438,51.15240984654663],[-118.48610178872373,51.150466263665216],[-118.48818155780715,51.14618288883525],[-118.48882431920417,51.14103937540884],[-118.48881523529309,51.140753801222395],[-118.48508719631253,51.136189316081506],[-118.4800807386613,51.133905241130186],[-118.47536557175526,51.13202584622552],[-118.4720912529941,51.12945723415988],[-118.47262250054335,51.12557136121163],[-118.47653015581899,51.12288794347586],[-118.47681098264275,51.11911902030475],[-118.47552991475835,51.11717996166099],[-118.47534396536773,51.11683568000382],[-118.47625613808553,51.113413207080065],[-118.47843371498088,51.11049646764836],[-118.47825424066514,51.10689701335749],[-118.47579409844798,51.102676320364615],[-118.47569462112666,51.10233105295577],[-118.47414970770718,51.10084826745187],[-118.47206731899675,51.09770749884989],[-118.47088357522674,51.09536961545055],[-118.46470808071564,51.09331411465475],[-118.4608934402732,51.091660631452505],[-118.45953142750308,51.08834779583238],[-118.4602492026525,51.08446695886746],[-118.46025538413978,51.07995418970091],[-118.45797915755372,51.07847045275887],[-118.45335603540082,51.07710198876138],[-118.44781565983342,51.07664963406592],[-118.44290876374329,51.076021257558125],[-118.43974292627274,51.074198363990554],[-118.43765042493163,51.07282190726718],[-118.43510679700019,51.07282707157003],[-118.43183845968967,51.073627061084565],[-118.42985078499662,51.07374129352881],[-118.42903209028401,51.07374023126323],[-118.4275795982538,51.07122603806383],[-118.42476450672703,51.0678601124181],[-118.4216773931905,51.06592001072089],[-118.41931752654213,51.06426431700228],[-118.41732307192721,51.06232057138643],[-118.41678882512058,51.05998561321655],[-118.41778253566832,51.058037850271944],[-118.42105335653584,51.057638644673425],[-118.42567501185738,51.0583267677677],[-118.42821733667913,51.05832460180767],[-118.43065548204851,51.05792309349899],[-118.43147308242055,51.05649841469207],[-118.43229112355411,51.05187303342643],[-118.43383254062435,51.0487294765436],[-118.43147232985811,51.04564826011967],[-118.42820821766375,51.042565735708955],[-118.42693490417582,51.03959670283727],[-118.42703540125689,51.036400995606186],[-118.42666580864183,51.03394112616002],[-118.42485809681655,51.03183446654389],[-118.42294616326164,51.03000292769615],[-118.41904824237065,51.02669198873482],[-118.41823644456517,51.024639544069686],[-118.41887517537249,51.02241261136641],[-118.42078188627967,51.020070510585434],[-118.4222297463798,51.017557373608405],[-118.42277393236175,51.01630275465511],[-118.42240951254674,51.01373082124854],[-118.4209584935721,51.01122139414765],[-118.41833271168667,51.00836769913394],[-118.41343713027992,51.00511579774953],[-118.41099040104795,51.00340119765426],[-118.40907939772221,51.00157439193495],[-118.4089633152444,50.9999042005841],[-118.40902779800965,50.999526999399535],[-118.40883873400696,50.99878716542599],[-118.407029302557,50.99771000859873],[-118.40358455708908,50.996970641177825],[-118.40113599769911,50.99703143573189],[-118.39859473052736,50.997717517296564],[-118.3973355247408,50.99828682068694],[-118.39643657460529,50.999934994688886],[-118.39589356135241,51.00050944839307],[-118.39472369069372,51.00147766264925],[-118.39317265710886,51.002158627185324],[-118.3912782393656,51.002331940871066],[-118.38955177883366,51.00227842093148],[-118.38782628776048,51.00113156175236],[-118.38720225095066,51.00033726685881],[-118.38692721689021,50.999933599822185],[-118.38402734532532,50.99819202441043],[-118.3823052769842,50.996023578340306],[-118.37876748612402,50.99340525140303],[-118.3770341622007,50.99038579738267],[-118.37576459508558,50.98758979976025],[-118.37394933097438,50.98479949885215],[-118.37132108927354,50.9822359947402],[-118.36896185318732,50.980695553902414],[-118.36833155595224,50.98035848319838],[-118.36506615676602,50.97950356419257],[-118.36334768921701,50.9788246488727],[-118.35999724739536,50.97779836751852],[-118.35890087962895,50.97717086632072],[-118.3564562448835,50.97546395404024],[-118.35347034789945,50.972155144753195],[-118.3509339811546,50.96981800753146],[-118.3503941745031,50.968790364429495],[-118.34939439684771,50.966854563689914],[-118.34920564218736,50.96212332492496],[-118.34884038658409,50.9594998139993],[-118.34782819743329,50.956305887580235],[-118.3460295034621,50.95385243027728],[-118.34439815171936,50.95317400249151],[-118.34121890375054,50.951749387336065],[-118.33878255657751,50.95083734987497],[-118.33634273971217,50.94953039849138],[-118.33172667797761,50.94804879480973],[-118.32910433472527,50.94713731375083],[-118.32854679279161,50.94588470471372],[-118.32719107562787,50.94286502345701],[-118.32583592708832,50.93984308375562],[-118.32393270224631,50.93676089978297],[-118.32130368590904,50.93448244668184],[-118.32040706754967,50.933287774142514],[-118.3199494851176,50.930546384255045],[-118.32084658238354,50.92792231237717],[-118.32084577631302,50.92518970106483],[-118.31967277792235,50.92136707600775],[-118.31821251328512,50.91771662422846],[-118.3178519272061,50.91640515310757],[-118.31558680999244,50.91418360048863],[-118.31359589236033,50.911784931507036],[-118.3120607840536,50.908820791812175],[-118.31233123486805,50.90642687009023],[-118.31467629975451,50.90345806199164],[-118.31512343132097,50.9011175044658],[-118.31413652489181,50.899124329367815],[-118.311421328951,50.89553745218843],[-118.30924539409055,50.893138838284145],[-118.30626322482337,50.88977616075115],[-118.30355437458711,50.887897374401255],[-118.30209849720381,50.88771065854389],[-118.30047516510712,50.88749938824301],[-118.2971413229191,50.88749817668488],[-118.29668312919661,50.88749989225209],[-118.29063762307699,50.88778796982641],[-118.28403489586533,50.88939123340037],[-118.27925351860152,50.89195909214067],[-118.27680752869118,50.89401410401916],[-118.2752755319454,50.895667011208474],[-118.26895397002826,50.894816928961745],[-118.26189317007065,50.89328058827083],[-118.25557966954908,50.89139976420575],[-118.25322746494584,50.890771364947646],[-118.25160355746236,50.889576828783625],[-118.25332102690213,50.88678005620513],[-118.25910356485731,50.88660788602126],[-118.26543126572913,50.88552116567786],[-118.26985399707216,50.8823830234185],[-118.27238091348175,50.880272216079824],[-118.274547531442,50.87941198144368],[-118.27988586819255,50.87758640960698],[-118.28394392503274,50.87604650408137],[-118.28900416893455,50.87284789042597],[-118.29161789211051,50.86948301615357],[-118.29242650942585,50.86497598226044],[-118.29143501553222,50.8608708816564],[-118.28980382924232,50.857158019000025],[-118.28709481986769,50.85248692192191],[-118.2854703481116,50.8499776694187],[-118.28510690913284,50.84935174635465],[-118.28167610755769,50.84769774973909],[-118.27579944248077,50.84695906379913],[-118.27345374008036,50.846222948213985],[-118.26994213492175,50.843142790440965],[-118.26822014146482,50.83823668958119],[-118.27011183419981,50.833675853696995],[-118.27255232412662,50.830481154598274],[-118.27327766241369,50.829512151549444],[-118.27408422650291,50.82551812522704],[-118.27055962077037,50.82392316219116],[-118.26668641280689,50.82392738571552],[-118.26451948055497,50.82398038434548],[-118.26064811009263,50.822903688541814],[-118.25973611470141,50.8190207655612],[-118.2628089181168,50.814569615065004],[-118.26596753624354,50.81143219882367],[-118.26613975623381,50.81126288210923],[-118.26464673436396,50.80794896161951],[-118.26000859369165,50.80475491080064],[-118.25975535139132,50.79999996882443],[-118.25966631401232,50.79832166473041],[-118.25465028601057,50.79747622500087],[-118.26098815923572,50.79403636715028],[-118.25761742076048,50.792754109692005],[-118.25709335858691,50.78321566980083],[-118.25270744378177,50.7814746476584],[-118.24767000625843,50.775760910251904],[-118.24703223415065,50.77465593937416],[-118.24549650215668,50.77100696612163],[-118.24342043362002,50.768497801219404],[-118.23900272280034,50.76616030913862],[-118.23431783251324,50.764622871692865],[-118.23108536681745,50.76285956223272],[-118.2293702504637,50.76131668191023],[-118.22910450923672,50.75989187049642],[-118.22946431739983,50.756922589017],[-118.23126705724728,50.75418841313003],[-118.23216168466378,50.75281858722905],[-118.23090961989217,50.74837005939072],[-118.22748222135199,50.74552096041582],[-118.22325127487865,50.74278331836022],[-118.21630936662079,50.74021680604928],[-118.21064386412404,50.73867783103703],[-118.20929044039909,50.73834135889047],[-118.20515781130551,50.736684590962575],[-118.20290630835626,50.73389429656282],[-118.20444074735607,50.72984144360751],[-118.2058809260394,50.72681782506633],[-118.20587443228438,50.72522009087455],[-118.20480924690308,50.71906526013593],[-118.20381456900235,50.71267128552613],[-118.20219965354994,50.706402630039435],[-118.2020250029142,50.705034240910024],[-118.20166527095351,50.698190400618024],[-118.2031156784683,50.69493984869652],[-118.20679898490489,50.68974975534502],[-118.20923347483696,50.68558984892912],[-118.20959244388057,50.68222035964616],[-118.20707775158422,50.67874709705371],[-118.20628022372156,50.67817377466511],[-118.20096341830832,50.67623332299749],[-118.19548300532543,50.67457989255915],[-118.1893624274723,50.67333192048067],[-118.18315977372865,50.67247377837427],[-118.17642439475532,50.67173084850008],[-118.17299898710337,50.67030562174247],[-118.17318913976605,50.664659521098834],[-118.18281948119693,50.66186816069758],[-118.18829895677737,50.65992692914536],[-118.18956744863263,50.659756859294106],[-118.1947864592968,50.65889738216472],[-118.19999141034795,50.658443954758575],[-118.20430600287118,50.65598978910204],[-118.20313857687081,50.652230041377706],[-118.20134051475421,50.64988501455488],[-118.19981491344485,50.648346501105415],[-118.19981811032031,50.64424352786961],[-118.19946277660264,50.639339211440884],[-118.19793150607117,50.63677385095076],[-118.19497836954802,50.634610664690655],[-118.1882078755534,50.634712887402486],[-118.18819377957124,50.63483447115332],[-118.18823064475046,50.634959649933236],[-118.18823897016924,50.635013895364],[-118.1882216013627,50.635031879275274],[-118.18819788388907,50.63504546676702],[-118.18813727855311,50.63508695331635],[-118.18807852702807,50.635128009921715],[-118.18805227325304,50.63514593799617],[-118.18797020471153,50.63521867749364],[-118.18780478910269,50.63535108756376],[-118.18765223088093,50.63541999623301],[-118.18754093817701,50.63542572158015],[-118.18739245288462,50.63544069655468],[-118.18716539298325,50.63548798444154],[-118.18694851052288,50.635589087463146],[-118.18680572921657,50.63569370612473],[-118.18669329479025,50.63576713667828],[-118.18656289224141,50.63583139411878],[-118.18639451712976,50.63590936506315],[-118.18616050906354,50.635925088807184],[-118.18581567079231,50.635892908613734],[-118.18546879133315,50.63588261875893],[-118.18512259458261,50.63586841713984],[-118.18469046134568,50.635796195024575],[-118.18409917329258,50.6356675751101],[-118.18342195415721,50.635480931618815],[-118.18304018313044,50.63535462986369],[-118.18297163565235,50.635319299112076],[-118.18296079639107,50.63531005800515],[-118.18287781186795,50.63530647422299],[-118.18246934878702,50.63533307068845],[-118.18185001540499,50.63537531956549],[-118.18151691484074,50.63538801366567],[-118.18136919363188,50.63535784326464],[-118.18118280950719,50.63531477252424],[-118.18106633093981,50.63528906168811],[-118.18104221631125,50.635284534274255],[-118.18109060540796,50.635180613003236],[-118.1812159763979,50.63494146013772],[-118.1813275009332,50.634751033378954],[-118.1813917011616,50.63463805752999],[-118.1814443692346,50.634489246159625],[-118.18147455455131,50.63425524731886],[-118.1814675332868,50.6339898229916],[-118.1814582024771,50.6338191287671],[-118.1814688018155,50.633697298189205],[-118.18148239505648,50.63347681777481],[-118.18147408749698,50.63315763328222],[-118.18145201183843,50.6328256116718],[-118.1814885284164,50.63255534484273],[-118.18158179777097,50.63238792694137],[-118.1816617191837,50.632296954696564],[-118.18161655756359,50.6321175272359],[-118.18142727517461,50.631836436038036],[-118.18128059105841,50.63165776603179],[-118.181020967117,50.631494305648786],[-118.18061577974956,50.631278219147184],[-118.18043437258021,50.63117618684914],[-118.1804376888493,50.631167382142806],[-118.18044100511707,50.63115857743633],[-118.18045056732198,50.631144563770405],[-118.18047466847406,50.63110840907563],[-118.18051465514958,50.630991468168325],[-118.1805056976137,50.63075754003486],[-118.18043437668,50.63056497063936],[-118.18038662321321,50.630502288091385],[-118.18038281265237,50.630493550741626],[-118.1803745117724,50.63047996886535],[-118.18034472123969,50.63042646927182],[-118.18032877561029,50.63031405702117],[-118.18037870741696,50.63016053356568],[-118.18042580594714,50.63000286073928],[-118.18036270013114,50.62985493161935],[-118.18024112991563,50.62972603991879],[-118.18018996318006,50.62967272443551],[-118.18017707251063,50.62965486941652],[-118.18014875454365,50.62962349983647],[-118.18015322138461,50.62954698863669],[-118.18021417570293,50.629371085434414],[-118.18029259749517,50.62917663686705],[-118.18036818730256,50.62897802994377],[-118.1804756570602,50.628657961027244],[-118.1805578243982,50.628279059444985],[-118.18060123557642,50.62788781966794],[-118.18068321684979,50.62754052991065],[-118.18075089643943,50.62734645398582],[-118.18076678023246,50.627265667383064],[-118.18076910556026,50.62721160105949],[-118.18076068093244,50.62711723460766],[-118.1807625970142,50.62700439011348],[-118.18072146569585,50.62688342438276],[-118.1805903268427,50.626727881750746],[-118.18044631011465,50.62658498011743],[-118.18029664149716,50.62647445314949],[-118.18011398231036,50.62635933293364],[-118.18000795734574,50.62628407505593],[-118.17998442764882,50.626266039700276],[-118.17997534815876,50.626256921992905],[-118.17996978106284,50.62624806079413],[-118.17995786892445,50.626234793734376],[-118.17993785477924,50.626216997020464],[-118.17984735312379,50.626154700052744],[-118.17969154031482,50.626048818674654],[-118.17958180499053,50.62596426044482],[-118.1795123864446,50.62589327141846],[-118.17946327640468,50.625848577915654],[-118.17945234192324,50.62583989886007],[-118.1794340851105,50.62582222584598],[-118.17941153328225,50.62580877842438],[-118.17936418194812,50.625764199744076],[-118.17928744021168,50.62568422552507],[-118.1792444792694,50.625634876554834],[-118.17924066934292,50.625626139114985],[-118.17927907187325,50.625436779201465],[-118.17928705260094,50.62501422698148],[-118.17918263296124,50.62473628630789],[-118.17905328422752,50.624652035226],[-118.17891222076639,50.62456357806117],[-118.17878736414518,50.624484162344665],[-118.1787448773829,50.62438118533338],[-118.17873458160817,50.62420590083387],[-118.1787282917381,50.62404841505083],[-118.17870180120352,50.623904762511174],[-118.17865549597803,50.62375236529822],[-118.17857902446886,50.623569027588864],[-118.1784635904212,50.62331346544498],[-118.17839003971712,50.623103226980895],[-118.17823821581743,50.62289311185344],[-118.17795442676629,50.622644329527176],[-118.17778681829853,50.62252461520723],[-118.1777511834738,50.62248425957593],[-118.17770753815489,50.6224083062808],[-118.17764885211147,50.62229627784951],[-118.17746358193314,50.62218605565587],[-118.17715426261329,50.62206313019128],[-118.1769995536846,50.622001952843426],[-118.17697241714762,50.621984222652735],[-118.17695894755083,50.62197988374326],[-118.17693991354717,50.62196667450802],[-118.17689833041796,50.621940017276614],[-118.17682785411473,50.621895505960886],[-118.17676821269366,50.621860236457536],[-118.17668182182915,50.62178465869949],[-118.17653617555438,50.621651242201466],[-118.17639708045081,50.62157195776165],[-118.17626980564634,50.62153699959062],[-118.17608036442452,50.621511776672286],[-118.1758540359609,50.6215144667399],[-118.17565395614353,50.62148906245649],[-118.17545728518314,50.62142378530238],[-118.17524021717918,50.62136328809743],[-118.175060731388,50.62134216375828],[-118.17494028842594,50.62129864714536],[-118.17483408715339,50.62121433149938],[-118.17476390349384,50.621147803369276],[-118.1747181200009,50.62109430287674],[-118.17466999833557,50.62105418620824],[-118.17456721893744,50.62100118589895],[-118.1744030462792,50.620912781875546],[-118.1742682308393,50.62070724776929],[-118.17416725486382,50.62034875457895],[-118.17398020496246,50.62000452770919],[-118.17373031670489,50.61971461907381],[-118.17360164822587,50.61946376380663],[-118.17359040192675,50.61932457248196],[-118.17358854199219,50.61928432824968],[-118.17358492381737,50.619243969051794],[-118.17357846907014,50.619158777460456],[-118.17357748589806,50.61911351539061],[-118.17358080262005,50.61910471076092],[-118.1735842176234,50.61909534363401],[-118.17358382435258,50.61907723880505],[-118.17357913282127,50.61903284501173],[-118.17355832982787,50.618938172339426],[-118.17353206347333,50.61884423511056],[-118.17352287557613,50.61875433142645],[-118.17357789112397,50.61859212814753],[-118.17363260971098,50.618411266397565],[-118.1735792040166,50.61825892407261],[-118.1734957473109,50.618156442957314],[-118.17344059852957,50.61808532456566],[-118.17336807385686,50.61799152306061],[-118.17331965557324,50.61790224175348],[-118.1733111625748,50.61787960671789],[-118.17324840910568,50.61786219222391],[-118.17311675722138,50.61783200033476],[-118.17299612902853,50.61777942900735],[-118.17285109610143,50.61767316434402],[-118.17266116483567,50.61750837114977],[-118.17243131706711,50.617317604959794],[-118.17214224314068,50.61718084154394],[-118.17187260049603,50.61711605750506],[-118.17171401491116,50.61707719375547],[-118.17165019002279,50.617055743731726],[-118.17155698684672,50.61698871831301],[-118.17136159841334,50.61682466705917],[-118.17111468553793,50.616660369622245],[-118.1708226006165,50.61659174869009],[-118.17052964612888,50.61659932438218],[-118.17027474912027,50.61659263726228],[-118.16996315340214,50.61656443185582],[-118.16965595130901,50.61657212971527],[-118.16930551831541,50.61659316300692],[-118.16888843261313,50.616588584971076],[-118.16869862719365,50.616585918495325],[-118.16869306351644,50.616577056630405],[-118.1686080596656,50.616442817152894],[-118.16845796027178,50.616192699426385],[-118.16836758987347,50.61605865027749],[-118.16833138369853,50.61603180801867],[-118.16825448433661,50.61598344688206],[-118.16812927930441,50.615885913489166],[-118.1680049521169,50.61578336213852],[-118.16791048717982,50.615703255379316],[-118.16781690022493,50.61562829924945],[-118.16767988823939,50.615516943214736],[-118.16753546032302,50.61539715463889],[-118.16737688429299,50.61527692750018],[-118.16716395367503,50.615121797168555],[-118.16699522921087,50.61498843376179],[-118.16692252975402,50.61492624043606],[-118.16686427130693,50.61487298439064],[-118.16681235670511,50.614824126052625],[-118.16676297932948,50.61477092745136],[-118.16669545157562,50.614699499922644],[-118.16652175409543,50.61454374810301],[-118.16623115497968,50.61430404345508],[-118.16599783949255,50.614113006313126],[-118.16585546888518,50.61400183828784],[-118.16575213243911,50.613921663017855],[-118.16562039943058,50.613851350447575],[-118.16541616330298,50.613799084546535],[-118.16521836916459,50.61376082215749],[-118.16499305846354,50.6136460558989],[-118.16468266418258,50.61343827396609],[-118.16445355375053,50.613274085373966],[-118.16437022365811,50.613211708524965],[-118.16426640381981,50.61311398930241],[-118.16406481402026,50.61294496409996],[-118.16388176361757,50.61281227290405],[-118.16376262365064,50.612741156744185],[-118.16365314534572,50.612665633981166],[-118.16355781697068,50.612590541021845],[-118.16345829204933,50.6125191105302],[-118.1632984658869,50.6124264731251],[-118.16308712174452,50.61230308027095],[-118.16291891584919,50.612075398549344],[-118.16286507935594,50.6117428103013],[-118.16286226744711,50.61150478330792],[-118.16284539362968,50.61142845200926],[-118.16282997777022,50.611414934757434],[-118.16285691109307,50.611382941805324],[-118.16292346406848,50.611297255044356],[-118.16297528426891,50.611183980686675],[-118.16304027788082,50.61106654798425],[-118.16316859746128,50.61095301882537],[-118.16340717434863,50.61082920883436],[-118.16375259418014,50.610704466361554],[-118.1640403445239,50.610624793728874],[-118.1642130539932,50.61054208446331],[-118.16441708602382,50.61039210606506],[-118.16466004979513,50.61022284029226],[-118.16484495562635,50.61009070886452],[-118.16497609655636,50.60998133623494],[-118.1650972846112,50.609867871084596],[-118.16516373188972,50.60981325110506],[-118.16517778249687,50.60980407472136],[-118.16523730253405,50.60975856468745],[-118.16538005323882,50.60965396147168],[-118.16552290008106,50.60954880449205],[-118.16561735109097,50.60943571053132],[-118.16568116463941,50.60930463522898],[-118.16573356063795,50.609218516924734],[-118.1658672337453,50.609104802888915],[-118.16607125557702,50.60891413785704],[-118.16621722089116,50.60875044841412],[-118.1662885437471,50.60863742020862],[-118.16642377482172,50.60851477689177],[-118.1666293530725,50.60838636244288],[-118.16682195297912,50.60828132751916],[-118.16709270205165,50.60808521273778],[-118.16743720953598,50.60780277840364],[-118.1677062942609,50.60757546966638],[-118.16784746862679,50.60743912601881],[-118.16795917845512,50.60729843339828],[-118.16808074116783,50.60716239524178],[-118.16818767081207,50.607089725076925],[-118.16833811562415,50.607042723627806],[-118.16853119562955,50.60699591163099],[-118.1686959832049,50.606958391536466],[-118.16884613533799,50.60694357385349],[-118.16903092369039,50.606923852379985],[-118.16926936829107,50.60683108869696],[-118.16949932081599,50.606685182968775],[-118.16959561165334,50.60661233016126],[-118.16946955337492,50.60655032987718],[-118.16921275452387,50.60642260875433],[-118.1690271814587,50.60633493985171],[-118.16889975985046,50.60629092006015],[-118.16873857965722,50.60621627092314],[-118.1685493004863,50.60611930069721],[-118.16837094965616,50.606031010489026],[-118.16824128563319,50.60596931439144],[-118.16812488885729,50.60590291456198],[-118.16800273631924,50.60581859109421],[-118.16790273168974,50.605729612423715],[-118.16786643599083,50.605662648676955],[-118.16788838504685,50.60560827539873],[-118.16793238464554,50.605549800617894],[-118.16796682157114,50.60549517912567],[-118.1680784263368,50.60531437396484],[-118.16825187854278,50.60499331464177],[-118.16828650523782,50.6047952068565],[-118.16817284170092,50.604692844617155],[-118.1679109856691,50.604614475479295],[-118.16751118012475,50.60454218360583],[-118.16725351954058,50.60433812624889],[-118.16719946647152,50.60407783371893],[-118.16717956126683,50.60390695069662],[-118.16715536440664,50.60378095861225],[-118.16718560417205,50.60358762968918],[-118.167348813016,50.603325169521284],[-118.16755124167504,50.60314342905753],[-118.16769318740438,50.60315515070844],[-118.16788098893294,50.60322998282429],[-118.16809512632626,50.603204996528504],[-118.1682681908518,50.603140385433],[-118.16841393760606,50.60304898878659],[-118.16848485638826,50.60291784427053],[-118.1684908006777,50.602792290244],[-118.16850415733336,50.602593810242695],[-118.16841605284418,50.60236557902463],[-118.16822288926066,50.60229092937042],[-118.16813635804716,50.60228764008765],[-118.16815059956032,50.60224684111004],[-118.16815869445729,50.6022106970056],[-118.16817917803776,50.60213418350705],[-118.16818375795363,50.60198592693398],[-118.16809878006838,50.60181101887379],[-118.16796688198049,50.60169098066899],[-118.16787820377421,50.60162878719858],[-118.16783732678208,50.60159822412203],[-118.16779215787689,50.60153119366547],[-118.16774571724616,50.601369735200244],[-118.16772425058036,50.60120778035011],[-118.16772200432561,50.60114943883046],[-118.16768941868817,50.60105110045038],[-118.1676162483919,50.600849339364544],[-118.16757380999043,50.60070567141957],[-118.16756171185219,50.60064267518011],[-118.16755088068695,50.60056226017488],[-118.16749858915736,50.6004139463956],[-118.16742083652973,50.600207902309116],[-118.1673942993742,50.60006479653736],[-118.16740736970081,50.6000001878859],[-118.16741887820749,50.59989366429697],[-118.16741955735326,50.59976773789271],[-118.16745038093819,50.599672746901575],[-118.16753300432725,50.59958649351739],[-118.16761835735826,50.59950496129457],[-118.16769766369582,50.59942751243178],[-118.16777218865114,50.59933673708367],[-118.1678071091293,50.59926915184047],[-118.1678264209409,50.59917899717983],[-118.16784826746643,50.599043827263074],[-118.16787664926737,50.59892211665807],[-118.16791420228834,50.59880895358556],[-118.16796492315432,50.59869164046393],[-118.16802598461615,50.59859652474505],[-118.1681373781787,50.598447340302684],[-118.16827218092169,50.598265912996126],[-118.16834465315519,50.59816652301322],[-118.1683810368315,50.59812106860814],[-118.1684728237905,50.59804337974893],[-118.16860245929718,50.59795253617239],[-118.1686717145559,50.59790206309713],[-118.16870487884259,50.59787502844205],[-118.16874935769467,50.59783410452467],[-118.16878076605119,50.597806945873174],[-118.16881939273075,50.59777916700853],[-118.16887976833235,50.59769813022292],[-118.16893331526323,50.59758496627856],[-118.16896784141301,50.59749927521269],[-118.16899212782737,50.59747218312514],[-118.16902656124306,50.597458226824315],[-118.16905367501337,50.59739460951367],[-118.16905171690946,50.59727357667866],[-118.16904234674209,50.5971746176282],[-118.1690377587062,50.59712966889361],[-118.16902702643863,50.597089366181194],[-118.16895552207095,50.59700013881851],[-118.16883904625091,50.5968529425832],[-118.16878967964753,50.5966777186857],[-118.16881590660653,50.596466596890224],[-118.16884837955452,50.59629093261559],[-118.16886739581426,50.59622279356635],[-118.16885978428616,50.59616463338832],[-118.1688239782339,50.59600335563895],[-118.16878777755805,50.595783306362314],[-118.16877040366394,50.59556740646125],[-118.16877214477644,50.59529297365361],[-118.16887464157239,50.59495051488893],[-118.16897489572435,50.59466157050615],[-118.16888309965948,50.59446471197122],[-118.16879930601364,50.59430343495395],[-118.16893204179587,50.594072716640106],[-118.16910476345747,50.593765722279706],[-118.16893795625796,50.593438712774145],[-118.16858417675742,50.593154432574245],[-118.16844176933564,50.59304381862682],[-118.16832696743467,50.59296848031313],[-118.16798539036009,50.59274663230088],[-118.16760509434535,50.59251244910341],[-118.16737832515037,50.59240660452564],[-118.16720334770591,50.592350181488506],[-118.16695658481818,50.59222654522717],[-118.16669489939059,50.592035761554186],[-118.16645438168155,50.591876409259264],[-118.16623571283012,50.59177509309409],[-118.16604688978788,50.59169622237893],[-118.1658628471298,50.59163067796407],[-118.16570621044401,50.591591365978786],[-118.16552655620914,50.59156172637601],[-118.1652671212906,50.591510631992975],[-118.16501412396856,50.59146338139062],[-118.16484490615794,50.591424878560865],[-118.16468661498287,50.5913543721311],[-118.16450969643239,50.59124809273669],[-118.16435920936674,50.59113295127624],[-118.16417273769166,50.590959333687564],[-118.16403006304283,50.590718188724296],[-118.16408332713398,50.59047450996715],[-118.16420378466765,50.590293772062886],[-118.16405242066115,50.59025482982076],[-118.1636490340889,50.59032575449007],[-118.16344070781508,50.590368656708506],[-118.16339301797585,50.590346639176964],[-118.16321435091862,50.59024023353793],[-118.16298009968969,50.59004515863566],[-118.16286922224965,50.58986615093367],[-118.16284855600955,50.589740403909566],[-118.16283178956763,50.589633010504365],[-118.16281492400203,50.58955667718738],[-118.16279493462022,50.58949821016882],[-118.16277514118327,50.58944878697074],[-118.16276675483451,50.58943576561967],[-118.16279532976027,50.589434964939194],[-118.1630293001964,50.58942833319771],[-118.16374330485746,50.58934942426806],[-118.16460681899537,50.58922853127053],[-118.1649769376932,50.589175021611474],[-118.16503369882211,50.58916547351414],[-118.1652306082551,50.58905566902482],[-118.16552797244637,50.58885917280812],[-118.1657153221458,50.58872270511434],[-118.16591027953235,50.58856303823891],[-118.16639644521885,50.58829288693333],[-118.16695974878172,50.588089756243214],[-118.16725602760721,50.58800108678774],[-118.16742269645819,50.58793206903244],[-118.16762125422431,50.58785344431822],[-118.16786915793965,50.58775683706327],[-118.16810213880241,50.58766426428479],[-118.1682318435631,50.587613541879655],[-118.16835442958185,50.58756287698794],[-118.16853884090698,50.587453314678115],[-118.16869857709378,50.58731206339369],[-118.16884504942485,50.58717552455477],[-118.16900429818355,50.587057396315416],[-118.1691090319703,50.58696649398734],[-118.16919445648188,50.586884396799],[-118.16932980991967,50.586770799509644],[-118.16947569437576,50.58664777693375],[-118.16957691546385,50.58655662619698],[-118.16955701473503,50.58646709102634],[-118.16943997999961,50.58633341073458],[-118.1693025610008,50.58616383418225],[-118.16916309535621,50.58598563426191],[-118.16908507291978,50.585882955239605],[-118.16903455115644,50.585775439073785],[-118.16897349336045,50.58559599682211],[-118.16893652661787,50.58546175144858],[-118.16891945745319,50.58541705038126],[-118.1689082419989,50.58538970177188],[-118.16889390140591,50.58530903747367],[-118.16887634229036,50.58520610881431],[-118.1688664911789,50.585160778579215],[-118.16886999960377,50.585120350938126],[-118.16888393667466,50.58498970956324],[-118.16891396314044,50.58482799858712],[-118.16895900856726,50.584692205521826],[-118.16900990636768,50.584583942722475],[-118.16905436938637,50.58450234241137],[-118.16909200719006,50.58443946790743],[-118.16912223495757,50.58439866753446],[-118.16915685141036,50.58435308815199],[-118.16922081727031,50.58427173528451],[-118.16928975427187,50.58417209507341],[-118.16937117458096,50.58407219752121],[-118.16948174792304,50.58392747353676],[-118.16954892852952,50.5838277091616],[-118.16956764898029,50.58379174539913],[-118.16958588352836,50.58376873634519],[-118.16963980488038,50.58371436035683],[-118.1697214192883,50.58362351530184],[-118.16978323946091,50.583564608124796],[-118.16987655702637,50.58351866355469],[-118.17001102464042,50.58344058974223],[-118.17016323790176,50.58336264809751],[-118.1703308606688,50.58329821398317],[-118.17051798709846,50.58326454259643],[-118.17070267751093,50.58324481778564],[-118.17078254162305,50.58323519931815],[-118.17089320913371,50.583130595879545],[-118.17125252277563,50.582884227904515],[-118.17181261356201,50.58265825339218],[-118.17229899054908,50.58251859183198],[-118.17247508197902,50.58239543906905],[-118.17247554495066,50.58221978142614],[-118.17249161442905,50.58206668403371],[-118.1727347933027,50.58195617624909],[-118.173192103566,50.581830277593134],[-118.17344493795764,50.58175604544411],[-118.1734704836698,50.581742030526186],[-118.1734761358124,50.58171983211789],[-118.17349864446477,50.58161125419092],[-118.17359573481761,50.58142151038233],[-118.17376206820666,50.58130331651245],[-118.17388609638256,50.58127478556553],[-118.17401363480502,50.581246502261635],[-118.17422258989308,50.58119967784264],[-118.17442510794893,50.58113883126303],[-118.17450192687255,50.58103465598975],[-118.17455572759616,50.58089947945378],[-118.17473249324188,50.58080292777718],[-118.17495333795434,50.58072868557792],[-118.17513176063669,50.580632810718946],[-118.17535512853881,50.58051356021948],[-118.17563466235566,50.58039826404014],[-118.17580938354958,50.58033376331256],[-118.175974943179,50.58029121315969],[-118.17643700754488,50.58017863622779],[-118.17708861680246,50.58002857881977],[-118.17750990999285,50.579884874374486],[-118.17771882592861,50.57971600684348],[-118.17786650854111,50.579562035565296],[-118.17793328137945,50.579484826858916],[-118.17811012441229,50.579357200225346],[-118.17841809226876,50.57916030304312],[-118.17857650872052,50.579046624478586],[-118.17858498600674,50.57902858428987],[-118.17858361477816,50.57900589027196],[-118.17853942883096,50.578943450676135],[-118.17839293938393,50.578805441377426],[-118.17820823045614,50.57867264443253],[-118.17805735567815,50.57853941403671],[-118.1778343975656,50.578289801180816],[-118.17757564676957,50.57799076816477],[-118.17743196372044,50.57774505717547],[-118.17736287948706,50.57753002711234],[-118.1773144770274,50.57735939125162],[-118.1772707682025,50.5772433202076],[-118.17720522251383,50.57714039654298],[-118.17712676630387,50.576867081368974],[-118.17706841614877,50.57626469318355],[-118.17703696062839,50.5755998086556],[-118.17702242782043,50.5751637824674],[-118.17701924722209,50.574907077007076],[-118.17702145852118,50.57477220876329],[-118.17701501326093,50.57472768889595],[-118.17698058054062,50.57466029585419],[-118.17692157540945,50.574570821971015],[-118.17683341248876,50.57445500259212],[-118.17671774817312,50.574303346058066],[-118.17662227136816,50.57417854070678],[-118.17656384948829,50.57407554915577],[-118.17652736022218,50.57395885663415],[-118.17651533729845,50.57382412248465],[-118.17650848031091,50.57368014443477],[-118.17650210869766,50.57352320252642],[-118.17650645056071,50.573325220338],[-118.17654618081286,50.573117867447486],[-118.1766025978931,50.57297778541666],[-118.17657957350053,50.572906108154136],[-118.17644843419673,50.572853357132026],[-118.17632353732664,50.57280555697652],[-118.17627507928124,50.57278801795344],[-118.1762155049025,50.57275273713472],[-118.17612453384464,50.57270395057165],[-118.1760857274747,50.57268200369914],[-118.17603990165165,50.57265956137117],[-118.17572526181036,50.572487640016774],[-118.17515068941037,50.572196819130426],[-118.17456716997148,50.571977666368774],[-118.1739839768386,50.571929714776495],[-118.17357043910305,50.57201915558917],[-118.17338238451842,50.572048253078684],[-118.17322853363872,50.57197298682954],[-118.17302135265514,50.571867397935584],[-118.17277010265674,50.57173949778346],[-118.1725092980713,50.571584925855795],[-118.1722628252599,50.57142967492374],[-118.1720577893969,50.571301646628235],[-118.17189916549688,50.57121304285327],[-118.17182263156278,50.57117318090387],[-118.17181171183238,50.57116450052603],[-118.17179367625485,50.57115587803585],[-118.17176939928778,50.57114230425305],[-118.171669272976,50.57108494856871],[-118.17151952122587,50.570996410277935],[-118.1714401611629,50.57095238928382],[-118.17133194294172,50.5708905116383],[-118.17111648274845,50.57077134446042],[-118.17086446482553,50.57064790434172],[-118.17058037594978,50.57052501844518],[-118.17033869796452,50.57042376613108],[-118.17004613131812,50.570318927518095],[-118.16973124215573,50.57020968186633],[-118.16961279410539,50.5701657182417],[-118.16958227959542,50.57015735270049],[-118.16951764527796,50.5701307492533],[-118.16946821758766,50.57010861874955],[-118.16944023904044,50.570095903707745],[-118.1692583240991,50.56999831018643],[-118.168952794625,50.569835488334334],[-118.16880860872486,50.569755817544234],[-118.16882264608928,50.56974664025642],[-118.16888688551194,50.56967377657769],[-118.16905210967423,50.56947020941059],[-118.16923711777794,50.56919402717814],[-118.16931090094214,50.56899528941514],[-118.1693236637152,50.5688916803784],[-118.16937122894102,50.5687922203791],[-118.16944326170457,50.56867471126097],[-118.16953274139168,50.56853866604361],[-118.16962495038092,50.568407333162995],[-118.16968313920493,50.56830806314568],[-118.16971354822624,50.568235638375],[-118.16976968351233,50.5680463921019],[-118.1698562205222,50.56770336802405],[-118.16990124040053,50.56749638796783],[-118.16989957520327,50.56738384122486],[-118.16982498504099,50.56715994144852],[-118.16966783199535,50.56694093811105],[-118.16952072535358,50.56677630974932],[-118.16941913890538,50.56657479030812],[-118.16939358485133,50.566354914652436],[-118.16942242365447,50.56613888188278],[-118.16945867100044,50.56593128178338],[-118.16950827467664,50.56576926079622],[-118.16956372935577,50.565624592599264],[-118.16960602176007,50.56545357624621],[-118.16963671313565,50.56527779011111],[-118.1697127335927,50.56513740409389],[-118.16986800172093,50.56500091751574],[-118.17000270392643,50.564900833936484],[-118.17006849516513,50.56485972560374],[-118.17019656974199,50.564777251979095],[-118.17045554631295,50.56462662331322],[-118.17067095303896,50.56451190223462],[-118.1708413272469,50.564410948099116],[-118.17103957207563,50.564252077957455],[-118.17113147702084,50.56414276012212],[-118.17112872687771,50.563944833736485],[-118.17081580693974,50.5636108765893],[-118.17019567467514,50.56341904968063],[-118.16999604611073,50.563331502332574],[-118.17041339706272,50.563097721151095],[-118.17124654062175,50.56276111306468],[-118.17239449175831,50.56238120100743],[-118.17340683679703,50.5619436764259],[-118.17411994730575,50.561572024250346],[-118.17496571504995,50.56128486860468],[-118.17580331595431,50.56114627655084],[-118.17639121363015,50.561054454415356],[-118.1770042307862,50.560859322627145],[-118.17776673620317,50.56059112760076],[-118.17854109385485,50.560214165099765],[-118.17897870967315,50.559863708373214],[-118.17908470802327,50.559714134535255],[-118.17916355112466,50.559699930275805],[-118.17932826501287,50.559702515530866],[-118.17951266924162,50.559714399325436],[-118.17964220510741,50.55973539999038],[-118.17975156947466,50.5597702350397],[-118.1798974833762,50.559809348516914],[-118.1800520698497,50.55983946520245],[-118.18014427699164,50.55986066034891],[-118.18012299563296,50.559748429640244],[-118.18009262661613,50.5595558960036],[-118.1800753461422,50.55946146533833],[-118.1800767815649,50.55937173598983],[-118.18007631504625,50.55911973792306],[-118.18007320540883,50.55883196627474],[-118.18007060160062,50.558602415006824],[-118.17992736363945,50.558374798661845],[-118.17963774486851,50.55816171829874],[-118.17947534807783,50.55806438576799],[-118.1794545860349,50.5580510521333],[-118.17944015938997,50.55804212474814],[-118.1794292413751,50.55803344497914],[-118.1794112080407,50.5580248325152],[-118.17924318916694,50.558031052826166],[-118.17883179711804,50.55797659058666],[-118.17844951185911,50.55779594283529],[-118.17826624860191,50.55764516026811],[-118.17821994430308,50.55760517481256],[-118.17835246771025,50.557527527185385],[-118.17883988996064,50.55728849654088],[-118.17934639187989,50.55699092631239],[-118.17941094700267,50.55678362292824],[-118.17930469197002,50.55669025188005],[-118.1792864616881,50.55667258629419],[-118.17929912193183,50.55664071291384],[-118.17937860619938,50.55650056644384],[-118.17951235139061,50.55628345756185],[-118.17961589451579,50.55610716202355],[-118.17967959176897,50.555976070243446],[-118.17979347192875,50.55582196305432],[-118.17996871067362,50.55555016657873],[-118.18009939953272,50.555238499817825],[-118.18026858547411,50.55494027919819],[-118.18047841280695,50.5546635742249],[-118.18044736397694,50.55447495053468],[-118.18022589554474,50.554288706960165],[-118.18011270284066,50.55412310264625],[-118.180200653613,50.55396490537558],[-118.18038068796739,50.55378778852805],[-118.1804780090633,50.55368788608636],[-118.18048628463478,50.5536607831494],[-118.18049846240608,50.553652042963975],[-118.18050800813917,50.55363802798085],[-118.1805403545334,50.55361545301423],[-118.18061128238679,50.55356509359457],[-118.18068454462669,50.55350134013174],[-118.18072263390951,50.553456003024536],[-118.18075263256019,50.55340614483906],[-118.18079100621938,50.553338799341624],[-118.18082002874951,50.553284352675384],[-118.1808326869558,50.55325247898924],[-118.18083813408947,50.55322122631666],[-118.18084679034747,50.55317156135237],[-118.18084813578821,50.55311290172949],[-118.18084802622586,50.55307277818289],[-118.18086788556201,50.553009775590574],[-118.18100552546403,50.552841534634055],[-118.18120023653262,50.55256997177022],[-118.18125336262715,50.55232627353],[-118.1812354057847,50.55224591364286],[-118.18121969533566,50.55218323017449],[-118.18119012825062,50.552057415520515],[-118.18117441793032,50.5519947320313],[-118.18120570039319,50.55199862990203],[-118.18136951011178,50.55200623938577],[-118.18165726404999,50.55198529907931],[-118.18189373773035,50.55190199411056],[-118.18200412009551,50.55182899081192],[-118.18205770432691,50.55179661510823],[-118.18208137826348,50.55178303648615],[-118.18223463937727,50.5517187080031],[-118.18258451616109,50.551575609610985],[-118.18283539788438,50.55146054347339],[-118.18291899092281,50.551418985711194],[-118.1829928410983,50.55138238998056],[-118.18310478976868,50.55134114233986],[-118.18328339027244,50.551294418839056],[-118.18341502204392,50.551252299775925],[-118.18346179052554,50.55123865083822],[-118.18347942526181,50.55122915643684],[-118.18351830159673,50.55122003973826],[-118.1836109602057,50.55118759076098],[-118.1837585723201,50.55114546880856],[-118.18394944578394,50.551089441104224],[-118.18414743142971,50.55103335438905],[-118.18433918221035,50.55098247699975],[-118.18453288104635,50.550930606830114],[-118.18473534967687,50.550879354953175],[-118.18491832890469,50.55082785792281],[-118.18504177083453,50.55078176976007],[-118.1851324747425,50.550740142633714],[-118.18518878582891,50.55071247753098],[-118.18535988726366,50.55068838933461],[-118.18566954914758,50.55065373555678],[-118.18584971553595,50.550638764682404],[-118.18592523290909,50.55063335226993],[-118.18603884796886,50.55062328693779],[-118.18615682720787,50.550567773265094],[-118.1862449307501,50.55037794637814],[-118.18628856671162,50.55011719900951],[-118.18630146753834,50.549981952551654],[-118.18630282377627,50.54996396995586],[-118.18645278013865,50.54994912751579],[-118.18676068208408,50.549914346969885],[-118.1869390926917,50.54989924169355],[-118.18699404565882,50.54988955825442],[-118.18716143591021,50.549856166731736],[-118.18745403567034,50.54981748507373],[-118.187690225367,50.54979685336829],[-118.18784076048081,50.54976848224193],[-118.18799089539432,50.54972201354322],[-118.18812465260413,50.549657432537416],[-118.1882171038533,50.549615935441786],[-118.188372817006,50.54961900516481],[-118.1886519039273,50.549647721400824],[-118.18905002370641,50.54959443797472],[-118.18960106181258,50.54941747704195],[-118.1901667641693,50.549339847287335],[-118.19064611577193,50.54941148270606],[-118.19108238856877,50.54946540022753],[-118.19137221717564,50.54953441255528],[-118.19145789590762,50.549582817166424],[-118.19147865760023,50.54959614869852],[-118.19160127870279,50.54966693425532],[-118.19179613024964,50.54978178650456],[-118.1919863997979,50.54989236535585],[-118.19221371091652,50.55002476212471],[-118.19244305622497,50.55013527353588],[-118.19261176588545,50.550196307387175],[-118.19268252219919,50.5502182415429],[-118.19271477998183,50.55022673348332],[-118.19278455927389,50.55024407920573],[-118.19290217823503,50.55025179776691],[-118.19309686534865,50.55024517831217],[-118.19323835441301,50.550248368655005],[-118.19328025732236,50.550252451062356],[-118.19332907245837,50.55024742105381],[-118.19346324869531,50.550241617244005],[-118.19367138543464,50.55023933407438],[-118.19392029720022,50.55030884579802],[-118.19417624478078,50.550409359242956],[-118.1943310342901,50.55048918685749],[-118.19441819267509,50.55055973010816],[-118.19452261263304,50.55065352640731],[-118.19464691829661,50.55075549368018],[-118.19480045327319,50.55085274965391],[-118.19502454845718,50.55096287599828],[-118.1952332382569,50.55105949705204],[-118.19535644521436,50.551116760443605],[-118.19545528284286,50.551161008382444],[-118.19553618484252,50.551196083746625],[-118.19562146967283,50.55122637881619],[-118.19579427020399,50.55127414589981],[-118.19606686199879,50.55133006225086],[-118.19635212667895,50.55139478858269],[-118.1965779551835,50.55146435802612],[-118.19678011346508,50.551547517693656],[-118.1969276940243,50.55161779432617],[-118.19704321489564,50.55168864213622],[-118.19722083132994,50.55179041013792],[-118.1974758170596,50.55188632749108],[-118.19784587632552,50.551963790924276],[-118.19817297784324,50.55206365474479],[-118.19833775148501,50.552188243514],[-118.1986836492289,50.552404675328646],[-118.19920324135255,50.552674009651746],[-118.19943018463698,50.5527882850367],[-118.19949633443059,50.55276526489334],[-118.19962765749732,50.552714627264024],[-118.19971103577237,50.55266400385363],[-118.19975045614534,50.55260067748618],[-118.19978353825306,50.552532954905374],[-118.19983853504456,50.55245152643119],[-118.19993425914184,50.55236052749172],[-118.2000004080497,50.55233750703665],[-118.20006665469617,50.55231392397593],[-118.20022773822446,50.55231678498322],[-118.20039613634418,50.552328639136526],[-118.2005724235843,50.55233596849489],[-118.20068967674568,50.55236624980696],[-118.2007511992836,50.552410694967755],[-118.20080628123445,50.55244111936409],[-118.20088055337203,50.552463295191366],[-118.20101125665283,50.55249792147144],[-118.20116768409504,50.55252756999118],[-118.20126825317612,50.55253125896833],[-118.20145024215782,50.5524751465714],[-118.20182969832697,50.55234537215866],[-118.20216937431832,50.55218906090505],[-118.2023184919252,50.55209730752449],[-118.20236582943559,50.55207013273354],[-118.20245466800881,50.55202893066977],[-118.20263800326012,50.5519548335469],[-118.20285077025609,50.551885067026994],[-118.20301843137256,50.55182963433935],[-118.20312031544505,50.55177466166165],[-118.20318848281055,50.55171957603348],[-118.20326579195624,50.5516425364993],[-118.203366292425,50.551564869114934],[-118.20348034820435,50.55150115337744],[-118.20357201476371,50.55146409952079],[-118.2036519117116,50.55145390346383],[-118.20381953165318,50.55147021728415],[-118.20406910991356,50.55149512668858],[-118.20418595825556,50.55150729814703],[-118.20416981115525,50.55142651166534],[-118.20414618453363,50.55125593117168],[-118.20415903052061,50.551120691764474],[-118.20423357038088,50.55099826255537],[-118.20432817217993,50.550862556711984],[-118.20439849917372,50.550713274834834],[-118.20444199434219,50.550524259358276],[-118.2044644831663,50.5503846094559],[-118.20446640539454,50.550353108687915],[-118.20448754196782,50.550343866707266],[-118.20454957130286,50.550293428393275],[-118.20462491902363,50.55020721125307],[-118.20467862712047,50.55011269241933],[-118.20472659582911,50.55003076763974],[-118.20476513337093,50.549972466715865],[-118.2047858660476,50.549945109512954],[-118.20483893091901,50.54978275389707],[-118.20492499797774,50.54947131919299],[-118.20499653696535,50.54926393907107],[-118.20513411030294,50.54913634486251],[-118.205376529695,50.549008208758444],[-118.20556598175135,50.548929458236614],[-118.20567594839764,50.548879002307224],[-118.20588505470853,50.548768868129066],[-118.20619660738312,50.548590230908594],[-118.20650144970627,50.54842976807497],[-118.20682860648715,50.54827370331133],[-118.20719988419854,50.548098704386454],[-118.20759240082901,50.54792406836583],[-118.2079619562528,50.54778962087941],[-118.20839151374304,50.54763679503821],[-118.20882474135797,50.5474525899025],[-118.20912589380862,50.547323497268025],[-118.20928945053551,50.54728132617137],[-118.20942799518342,50.54727073121912],[-118.20964272615039,50.547250805236345],[-118.20989254625208,50.54724351481564],[-118.21023884486667,50.54725317611297],[-118.21058999804785,50.547245100020646],[-118.2107239577801,50.547230231165784],[-118.21070052472331,50.547181129906804],[-118.21064340638733,50.5470601699195],[-118.21058305035787,50.54691695463785],[-118.21052899168626,50.54673746636937],[-118.21045696813354,50.546518290862394],[-118.21037405239697,50.54632095544551],[-118.21029485049695,50.54613291078604],[-118.21022255739854,50.545935752529864],[-118.21016183641731,50.545815108039776],[-118.21011510866133,50.54575702898161],[-118.21001077355946,50.54567286249316],[-118.20982353899508,50.545503776724786],[-118.20971821633599,50.545302595872464],[-118.20975315724769,50.545162691118406],[-118.2097891550767,50.54510872968896],[-118.20980967732258,50.545072327156994],[-118.2099199583963,50.54495861799746],[-118.21013540119026,50.54478113156677],[-118.21031181307258,50.544644395242194],[-118.21037389435661,50.544562891494934],[-118.21039770827217,50.54440525636884],[-118.21039670465193,50.54417582512167],[-118.21036746874584,50.54406812334648],[-118.21033726570215,50.54406825930542],[-118.21032176098504,50.54405531010611],[-118.21026751597911,50.54397918499778],[-118.21015835896794,50.543841006428025],[-118.2101587141515,50.54370601804916],[-118.21030364049199,50.54355632968271],[-118.21041897283875,50.54343394554397],[-118.21045547357365,50.54339752756037],[-118.21047387305602,50.543383572791655],[-118.21052908450106,50.543351860016934],[-118.21086900257566,50.543244697665],[-118.21147954781314,50.54311249736832],[-118.21192420213967,50.54310760350297],[-118.21230509186503,50.54315302768272],[-118.21275099589973,50.54313070110374],[-118.21304364995805,50.54301964969106],[-118.21315624218795,50.54289254219265],[-118.21319488243603,50.54276193568569],[-118.21322135246933,50.542640081959384],[-118.21322518401769,50.54257707952529],[-118.21319924572454,50.54246057165863],[-118.2131396424699,50.54220047469373],[-118.21310003125075,50.541958161258755],[-118.2131324727443,50.541863274262],[-118.21333227529082,50.54184737339251],[-118.213633031055,50.54185326531977],[-118.21376836312066,50.54186107837989],[-118.21377048285339,50.5418386303131],[-118.21375599025276,50.541676612099266],[-118.2137244251443,50.54139813972402],[-118.213712322501,50.54119165563509],[-118.21373589580804,50.541096714602766],[-118.21379358777678,50.541019980671635],[-118.21385431279916,50.54095645774916],[-118.2139056010688,50.54090639919841],[-118.21398549934416,50.540824446916794],[-118.21413147884502,50.540678787615064],[-118.21430498883788,50.54049721758049],[-118.21438068890672,50.540316672708464],[-118.21447904570269,50.54018970253794],[-118.21479743546016,50.540114343149085],[-118.21502920292016,50.54002668546806],[-118.21506332803983,50.539962991878724],[-118.21506838453374,50.53995430842135],[-118.21506241350129,50.53992733270618],[-118.2150452718896,50.539841958434145],[-118.215024892214,50.53973431990771],[-118.2150527454661,50.53963515101857],[-118.21517304830003,50.539535139933314],[-118.21538708155389,50.53944736520502],[-118.21560765500006,50.53937304756199],[-118.2157444843169,50.53933125043213],[-118.2158220961842,50.53930337840646],[-118.21589852548037,50.53926185595715],[-118.2159853679395,50.53921146599475],[-118.21609087496033,50.53912510243115],[-118.21619401336224,50.53901145587931],[-118.21624050933195,50.53894806188659],[-118.21623995702873,50.53888984018329],[-118.21623854184081,50.538754718808235],[-118.21623568513648,50.538638143208175],[-118.21623311206635,50.538601807096576],[-118.2162129161228,50.53857497072195],[-118.21615681808308,50.53849927840418],[-118.216100718683,50.53842359498113],[-118.21605075240169,50.538343253643454],[-118.21597404967274,50.53822261834412],[-118.21588868792622,50.53811097367363],[-118.21583485021226,50.53805295718243],[-118.21576854360609,50.53799519423597],[-118.2157535199505,50.53788737165848],[-118.2157673706158,50.53772564591519],[-118.21562554783047,50.537560888735484],[-118.21548576197135,50.53747649420277],[-118.21538271741198,50.53740541078778],[-118.21513983510526,50.53729117281099],[-118.21490559410495,50.53723968371784],[-118.2148291235826,50.537240527645345],[-118.21476863063354,50.53724135563925],[-118.21463429133073,50.53723813199997],[-118.21455030134958,50.53722092988894],[-118.21445580069997,50.5372131576407],[-118.21426689709469,50.53719705031456],[-118.21405517381554,50.53715901016365],[-118.21385911574104,50.537102293717375],[-118.21371773204926,50.53706805849898],[-118.21354604200263,50.537024353030375],[-118.21326229533287,50.53695130227845],[-118.21299266376909,50.53686851391397],[-118.21278245219216,50.53678085446672],[-118.21257837294766,50.5366885458454],[-118.21241386224827,50.536613707041695],[-118.21228180782151,50.536556407645826],[-118.2121506364524,50.53650425002001],[-118.21201956300949,50.536451529649135],[-118.21188565992608,50.53639466013006],[-118.21178508499756,50.53635030269101],[-118.21172377589117,50.53631492494591],[-118.21168195122462,50.53627977833634],[-118.21166556768854,50.53626167833518],[-118.21165464874468,50.536253001499055],[-118.21159546042381,50.53619517549785],[-118.21143906857695,50.53605311396212],[-118.21122605062338,50.53587938387506],[-118.21104698138187,50.53575550403812],[-118.21084038192278,50.53566753377194],[-118.21053527621403,50.53555398800457],[-118.21019906263288,50.53540492682807],[-118.20992678205707,50.535286348132075],[-118.20976551608396,50.535233769796776],[-118.20963714208857,50.53514508012445],[-118.20945612315897,50.53501202100653],[-118.20933243931522,50.53493721921617],[-118.20928127718713,50.534914982108226],[-118.20909915706773,50.53484962798991],[-118.2086330019097,50.534692550596176],[-118.20783924412488,50.53440847480315],[-118.20697462398434,50.53406235227698],[-118.20654130703315,50.5339002267546],[-118.20648266799854,50.533900619976116],[-118.20645196833772,50.53388321088547],[-118.20637779468603,50.53382996710529],[-118.20628400581356,50.53373636669311],[-118.20616699908679,50.53360271645673],[-118.20603196446297,50.53346045766888],[-118.20590687127776,50.5333222788486],[-118.2057584901837,50.53317512121785],[-118.2056195813423,50.533055186612415],[-118.20556889971532,50.533019983147405],[-118.20553722451402,50.53299797650442],[-118.20547474417012,50.53294895351552],[-118.20544397656649,50.53285017887139],[-118.20543983451445,50.53267984490767],[-118.20540923458829,50.53254944534949],[-118.20539080119293,50.532522730214886],[-118.20538524222982,50.53251386035051],[-118.20534739905628,50.532455832780975],[-118.20528680543518,50.532334629990594],[-118.20524299840129,50.532249625879835],[-118.20523342981632,50.5322229651552],[-118.2052136485019,50.53221423319648],[-118.2051857795466,50.532200972901805],[-118.20510012066757,50.53215256890811],[-118.20494945465829,50.53205948305015],[-118.20481553884892,50.53196192650545],[-118.20471464595276,50.53186839348824],[-118.20465186942039,50.53181087030689],[-118.20456044912136,50.53174455157763],[-118.20427563345292,50.53161659493141],[-118.20391220886751,50.5314814134522],[-118.20375982795808,50.53142888071547],[-118.20383555030962,50.53136076877157],[-118.20388778736535,50.53116219662735],[-118.20377908891018,50.53092969742548],[-118.20373238979947,50.530759186814834],[-118.20379503703475,50.53066416707684],[-118.20381400655441,50.5306366949111],[-118.20379928537993,50.53061927070915],[-118.20377276651122,50.53058802680047],[-118.20376636355596,50.53050227415559],[-118.203878616783,50.530326005067096],[-118.20410064893214,50.53016141398779],[-118.2042563322677,50.53009272087018],[-118.20429441227867,50.53008805270358],[-118.20424057344124,50.529999521302315],[-118.20414312452324,50.529824877759786],[-118.20414054010857,50.529645604270236],[-118.20416142593423,50.52946403287441],[-118.20420159746256,50.529283819087965],[-118.20426553880448,50.52910979811933],[-118.20437730977935,50.52894649288427],[-118.20453525595431,50.528793208311576],[-118.20469475889811,50.52864117207297],[-118.20480244072354,50.52848095928323],[-118.20476293835597,50.52829965640845],[-118.2047899608698,50.528123605810286],[-118.20488136816277,50.52795490758786],[-118.20499021068018,50.527787997020596],[-118.20510080403966,50.52762121865173],[-118.20520282599388,50.527452697927636],[-118.20528770141807,50.52728071945582],[-118.20536575884681,50.52710712208848],[-118.20543348890352,50.52693167689126],[-118.20548553761985,50.526754558400924],[-118.20551469872343,50.526576389274425],[-118.20553586753547,50.52639314703389],[-118.20554690647866,50.52620692291213],[-118.2055379817003,50.52602325265285],[-118.20550286499378,50.52584734728072],[-118.20542228264215,50.525688010031686],[-118.20519916067096,50.525572873658945],[-118.20496542501749,50.52545755001256],[-118.20484355465672,50.52530095503202],[-118.2047656891853,50.52512598974148],[-118.20471742443729,50.524944069032614],[-118.20469350946337,50.52476499233383],[-118.20470202155477,50.52458311842934],[-118.20475095193544,50.52440352044657],[-118.20484576182841,50.52423562197433],[-118.20496930627108,50.52407596522063],[-118.20511008889174,50.523919221232525],[-118.20525759279255,50.52376464057401],[-118.20540353644226,50.5236088200357],[-118.20553925233095,50.52345058001944],[-118.20568080620069,50.523289370185346],[-118.20578593464839,50.5231233273363],[-118.20580019522724,50.52294919774864],[-118.2057656612673,50.52276994304159],[-118.20570639327215,50.52259006800672],[-118.20564294070347,50.522413857445876],[-118.20555757989177,50.522241193582204],[-118.20546491787954,50.522069705914014],[-118.20539377756502,50.52189690390116],[-118.205383885281,50.52171881392387],[-118.2054416707742,50.521539278372536],[-118.20553988031364,50.52137218812023],[-118.20565367189471,50.521207324612995],[-118.20577944335663,50.521044994667974],[-118.20591349338282,50.52088607663653],[-118.20605728496132,50.52073236380331],[-118.20622123795093,50.5205851590813],[-118.20638684668474,50.520438631143755],[-118.2065390122856,50.520287767064765],[-118.20667286362463,50.520129964227124],[-118.20679853075873,50.519968195508554],[-118.20691406709261,50.51980345381102],[-118.20701927896737,50.51963685542269],[-118.20709546595845,50.5194636944307],[-118.20715626392446,50.519287190432166],[-118.20725962473061,50.51912102199773],[-118.20740038391438,50.51896427415815],[-118.20756422999801,50.51881762080161],[-118.20774931237045,50.51868150105834],[-118.2079741468737,50.518571906609424],[-118.2081871953839,50.5184586530397],[-118.20831967009623,50.51829849197931],[-118.2084250669703,50.51813077569058],[-118.20852530063885,50.51796213553161],[-118.20868709682142,50.517817026913676],[-118.20887402058995,50.517680474817894],[-118.2090211037955,50.517528120513965],[-118.2091485080621,50.517366471971975],[-118.20926393307538,50.51720228097468],[-118.20942016475415,50.517048310246004],[-118.20960221207402,50.516909154236934],[-118.20984537502844,50.51683700305455],[-118.21013737498484,50.51682082325767],[-118.21042199458223,50.51682673033398],[-118.21070339990534,50.51683071116907],[-118.21094615329042,50.51674045062707],[-118.21111134527885,50.51659614750001],[-118.2112555902985,50.51643963199555],[-118.21144132867057,50.516299603227594],[-118.21167411127644,50.5161747431158],[-118.21176315545279,50.51602960177535],[-118.21170387239026,50.515849728452736],[-118.21156319739323,50.515678826651595],[-118.21137855337246,50.51554662821665],[-118.21117103732168,50.515423558718005],[-118.21094610114174,50.515308871716684],[-118.21070871490244,50.515204598088935],[-118.21046365027698,50.515113911809706],[-118.21021169157179,50.51504251751422],[-118.20994067842828,50.5149991500523],[-118.2096582870045,50.51497023933455],[-118.20937404561643,50.514941767154376],[-118.2090968073624,50.51490360894374],[-118.20881897740774,50.51485863800941],[-118.20858297331267,50.51476688543906],[-118.20837857702944,50.51463612008984],[-118.20823297053727,50.514483504414606],[-118.20813408774059,50.514317228594734],[-118.2080542820882,50.51414325615739],[-118.20798002485299,50.513967983785946],[-118.20788912329891,50.51379661976518],[-118.20778508291629,50.51362941079407],[-118.20767004233748,50.51346425660325],[-118.20753972154205,50.51330537548631],[-118.20738321891133,50.51315425074834],[-118.20719139322338,50.51302266771593],[-118.20696522074185,50.51291522359747],[-118.2067203698147,50.51282341254314],[-118.20646560342243,50.512747851383786],[-118.20619226330867,50.51269753920965],[-118.20593244332552,50.512630660160646],[-118.20566882016996,50.512555033834076],[-118.20541356308546,50.51247209557312],[-118.2051846761898,50.51237010568028],[-118.20500152559852,50.51223969838913],[-118.20485661723991,50.512083166449216],[-118.20472766674534,50.511916467909835],[-118.2045887932123,50.511755840749466],[-118.20441771250667,50.51161724279316],[-118.20420488669937,50.51150452183474],[-118.20397970636668,50.51140165992568],[-118.203742848944,50.51130475453542],[-118.20349966975644,50.51121361330477],[-118.20325074861029,50.511124896333754],[-118.20299978440568,50.51103773421083],[-118.20275067139856,50.51095013236395],[-118.20250185086661,50.510860851090555],[-118.20225906268476,50.51076748350061],[-118.20202230998285,50.51067001177213],[-118.2017857505916,50.510571432196116],[-118.20155114015094,50.51047185038065],[-118.20131847556208,50.51037128419804],[-118.20108425490248,50.51026946885006],[-118.20085373262603,50.51016679262246],[-118.2006234068147,50.510062990713436],[-118.20039327438244,50.50995808098379],[-118.20016295069722,50.50985427809388],[-118.19999992324477,50.50978177447747],[-118.19993077786697,50.50975091381509],[-118.19969860610117,50.509647549038206],[-118.19946847794087,50.50954263734019],[-118.19923854629853,50.50943659996329],[-118.19901435712764,50.50932814643883],[-118.1987924054908,50.50921702977817],[-118.19857629561513,50.50910292549901],[-118.19836816468352,50.508983742496326],[-118.19817219865037,50.50885580755789],[-118.19799209633888,50.50871825153426],[-118.19782016689344,50.50857450068743],[-118.19765222901175,50.508428201499605],[-118.19748224966776,50.50828344842061],[-118.19730614065739,50.50814335207396],[-118.19712633397071,50.50800412460585],[-118.19694866869449,50.507862787849696],[-118.19677090678138,50.50772201337844],[-118.19659314752977,50.507581229668496],[-118.196409548793,50.50744343270263],[-118.1962236184611,50.507308851697374],[-118.19602980610156,50.50717880375703],[-118.1958295739187,50.50705508231987],[-118.19561104984392,50.50694475977551],[-118.19537423381668,50.50684783602141],[-118.19512544897428,50.506758546714885],[-118.194876180913,50.506672043014106],[-118.19463109828077,50.50658187454325],[-118.19438192837009,50.506494816052665],[-118.19412867425727,50.50641084965578],[-118.19388777749568,50.50631702426264],[-118.19367529483203,50.50620260356329],[-118.19348120276405,50.5060742298472],[-118.19329723316844,50.5059386510618],[-118.19311764168168,50.505798300477835],[-118.19294194400723,50.50565596428158],[-118.19276235475203,50.505515613074756],[-118.19258043218514,50.50537848670195],[-118.19240065111295,50.505239251115654],[-118.19221882701011,50.50510157044297],[-118.19202707982778,50.504969959941185],[-118.19182316982031,50.50484709996525],[-118.19160748509763,50.50473075794864],[-118.19138985670405,50.50461539918981],[-118.19118011102873,50.504495515849925],[-118.19098671346153,50.50436322616212],[-118.1907953596268,50.50422938984249],[-118.19058104613316,50.50411539295626],[-118.19033511178826,50.50403024232314],[-118.19007039892206,50.50396128463707],[-118.18980462006091,50.503898461224125],[-118.1895177293214,50.50385504674024],[-118.18924465614275,50.50380357609],[-118.18902714477025,50.50370799872414],[-118.18887219929246,50.503558639720495],[-118.18876065520432,50.5033841039389],[-118.18868620025357,50.5032104862772],[-118.18866586485964,50.50303164870432],[-118.18865857148147,50.50284921179567],[-118.18862217628853,50.502670930995414],[-118.18857497635163,50.5024935869441],[-118.18852232614627,50.5023169880613],[-118.18846792419053,50.50214026544022],[-118.18841527481683,50.50196366642998],[-118.18836632428506,50.501786198459875],[-118.1883303178167,50.50160569375993],[-118.18829440947931,50.50142462641796],[-118.1882490621059,50.50124684304393],[-118.18817957703722,50.501075274464256],[-118.188065907831,50.50091300728536],[-118.18790250503275,50.50076135809598],[-118.18770942353075,50.50062739218578],[-118.1874905621674,50.50051928530478],[-118.18723297578249,50.500440082788316],[-118.18697043069578,50.5003689996778],[-118.18671206941605,50.50029426093879],[-118.18645147070131,50.500222192972835],[-118.18618727681613,50.500160600575846],[-118.18591657040092,50.50011605749904],[-118.18563692143269,50.50010253019068],[-118.18535173444518,50.500110640812096],[-118.18507054201395,50.50012637302793],[-118.18478857097837,50.50014657844702],[-118.18450903640384,50.50017316551247],[-118.18423184028524,50.50020669682981],[-118.18396000184381,50.50025020605533],[-118.18369283873878,50.500307613476295],[-118.18342966935697,50.500372642633934],[-118.18316328721191,50.50043574481562],[-118.18289621990175,50.5004925877216],[-118.18262749619086,50.50054875255837],[-118.18235614265637,50.50059964164661],[-118.18208166935848,50.50063788009129],[-118.18179278336109,50.50065702020567],[-118.18152402810396,50.50062164393925],[-118.18128046153795,50.50052307802125],[-118.1810909048755,50.50038934814914],[-118.18100188493122,50.50021808308506],[-118.1809113079115,50.50004557787936],[-118.18085542322575,50.49999982039196],[-118.18073927321507,50.499902906390304],[-118.18053531573858,50.49977041756825],[-118.18030508979254,50.4996665722299],[-118.18005316876007,50.49959566187796],[-118.17978655429691,50.499537841708005],[-118.17951099051905,50.49949067907736],[-118.1792301725639,50.499453323186145],[-118.1789496502196,50.4994244577223],[-118.17866942332711,50.49940408268896],[-118.178388420367,50.49939835078261],[-118.17810411199918,50.499401415282],[-118.17781756483056,50.4994071502631],[-118.17753500684003,50.49941034607954],[-118.17725410196117,50.499404048722276],[-118.1769775744134,50.49938280089206],[-118.17670649138879,50.49934047673221],[-118.17643881194178,50.49927861336866],[-118.1761790147597,50.49920204735965],[-118.17592787836918,50.49911649272076],[-118.17568647513622,50.49902597573161],[-118.17544818595177,50.49892776846739],[-118.17521797446476,50.49882392141109],[-118.17499233827606,50.49871417790481],[-118.17477293142304,50.49859922444592],[-118.17456306343922,50.498480425089575],[-118.17438288010864,50.49834394529039],[-118.17422109013017,50.49819351563407],[-118.17404918011852,50.49805027981215],[-118.17384525235686,50.497927948386895],[-118.17362536683022,50.49781577866178],[-118.17339750062027,50.49770870291108],[-118.17317158348276,50.49760062543666],[-118.17295199219194,50.49748678445418],[-118.17274670701909,50.497362094548606],[-118.17258599796462,50.49721568859097],[-118.17246577435685,50.49705068545315],[-118.17245000432746,50.497029230119644],[-118.17234749960659,50.496884680923074],[-118.17219769246317,50.49673679436924],[-118.17194433742164,50.496633552654075],[-118.17169273508179,50.496540613213966],[-118.17166810723648,50.49649875171077],[-118.17149992165866,50.496456343271426],[-118.17134368242314,50.49619274103774],[-118.17075539335993,50.49568104100341],[-118.16992186790225,50.4952536823216],[-118.16942861890921,50.49510238703505],[-118.16896622590185,50.4949572235666],[-118.16832086416142,50.49475278667409],[-118.16581821069153,50.49408349880511],[-118.16525180890483,50.4936806621671],[-118.16466818902508,50.49332576224047],[-118.16384595683948,50.49290535985029],[-118.16324443730383,50.492754844781075],[-118.16232604571354,50.49270278219888],[-118.16136793587263,50.49276655844527],[-118.16082488807942,50.4928399553949],[-118.16013090566962,50.492853494827855],[-118.15960801642339,50.49281136222541],[-118.1591456817672,50.49264581738854],[-118.15855430724152,50.49246774399538],[-118.1579965995287,50.492350805344685],[-118.15743773609807,50.492179549764444],[-118.15676102347791,50.49202309772779],[-118.15620331673973,50.49194683022365],[-118.15556441696761,50.492000415189885],[-118.15525698704869,50.49202437923055],[-118.15455346254022,50.49209258684462],[-118.15405304248776,50.4921452431048],[-118.15367278279984,50.492291731353156],[-118.15321902267938,50.49251380727246],[-118.15305188377681,50.4926584669162],[-118.15281068872086,50.49279052427331],[-118.15255424940145,50.4928067974813],[-118.1517491890251,50.492623700113214],[-118.15135082253818,50.4924575775511],[-118.15083690808012,50.492394559732816],[-118.15013108192574,50.49233375301925],[-118.1491813674004,50.492308738633774],[-118.14865905196687,50.49233439622545],[-118.14809525791443,50.492414730628035],[-118.14748875503123,50.49245530937489],[-118.14677289774903,50.49242145059062],[-118.14619447035905,50.49235214109566],[-118.14565695578462,50.49220097972102],[-118.14516437358978,50.492117417941316],[-118.14461796942385,50.49204755267238],[-118.14435987653314,50.492063128983666],[-118.14436152080368,50.4890923524258],[-118.14435990237162,50.48902047487139],[-118.14435847258619,50.48895766013934],[-118.14437134854954,50.48889416163159],[-118.14437011051812,50.48884039186099],[-118.14435447337958,50.488777698325485],[-118.1443534255723,50.48873298244876],[-118.1443649303662,50.48868746735609],[-118.14439210538525,50.48863346407645],[-118.1445031939795,50.4885153471931],[-118.1445717177989,50.488478401042855],[-118.1446561018955,50.48844202053045],[-118.14473883270458,50.488404953024734],[-118.14483723500831,50.488359388277296],[-118.14491977520419,50.48831326672752],[-118.14500425706527,50.48827632338211],[-118.14511530327795,50.48823957556102],[-118.14522819916334,50.48820238942476],[-118.14535374090956,50.48817401138486],[-118.14543879340303,50.48816422942222],[-118.1455358238458,50.48813664749997],[-118.14563489291014,50.48811769011877],[-118.14573221039133,50.48809860829773],[-118.14583127928961,50.48807965074054],[-118.14591595047833,50.48805176059807],[-118.14598399304518,50.4879972683033],[-118.1460540758214,50.48795139165453],[-118.14615120220827,50.48792325555462],[-118.14626466819084,50.487913230074376],[-118.14636188818922,50.487894701329964],[-118.1464317798076,50.487839770528815],[-118.14644474481526,50.48778588816496],[-118.14652766358455,50.487757873206164],[-118.1465986986719,50.487757265746],[-118.14666992441897,50.48776571214911],[-118.14672605270391,50.48780980875446],[-118.14675427609191,50.48780051181719],[-118.14683894618614,50.487772620961586],[-118.14692157564518,50.487736114362924],[-118.14697745006713,50.48769035865377],[-118.14703284614113,50.48762704872904],[-118.14706020806706,50.48758209863618],[-118.14709993298247,50.48752728617039],[-118.1471411217609,50.4874640977387],[-118.14718249962624,50.487409972128084],[-118.14720995959595,50.48736445942259],[-118.14723732274683,50.48731950034188],[-118.14734789072095,50.487255025942304],[-118.14744453485068,50.487209343424496],[-118.14754321940762,50.487172276492196],[-118.14765407153872,50.48712646323939],[-118.14766808749518,50.487117287692755],[-118.14773835806508,50.487080463846176],[-118.14779413253011,50.48703527025373],[-118.14789087405246,50.48698902477061],[-118.14800376452067,50.486951835756244],[-118.14810059984248,50.48691519763678],[-118.1481989012874,50.486860022276275],[-118.14828114601242,50.486805406792165],[-118.14835074586323,50.48674197442826],[-118.14839027746861,50.48667810752655],[-118.14844566875666,50.486614805747784],[-118.14851507705525,50.48654231934694],[-118.14856852551941,50.48646983926902],[-118.14859655664667,50.48645148792833],[-118.1486521399811,50.486397231019986],[-118.14873409947725,50.48632394476115],[-118.1488033142212,50.486242413161825],[-118.14885870595512,50.4861791022135],[-118.14892655103569,50.48611555406741],[-118.1490112166248,50.48608766149807],[-118.14910833715514,50.486059522748036],[-118.14917812584983,50.48600514373149],[-118.14927623281707,50.48594091343112],[-118.14938726980176,50.485904161233755],[-118.14947212592536,50.48588532223083],[-118.14956905449728,50.485848129145744],[-118.14966744634594,50.485802559976065],[-118.14969276889099,50.48573881442522],[-118.14971955322684,50.48566670179263],[-118.14971811764575,50.485603877940406],[-118.14974528439977,50.48554987314607],[-118.14981555083297,50.48551304791423],[-118.14994089090168,50.48547561066735],[-118.15006632537118,50.48544778084402],[-118.15019360781716,50.48541952152112],[-118.15031913869628,50.48539113777221],[-118.15038978720982,50.4853724200282],[-118.1504588756703,50.48536263189076],[-118.15052971550726,50.485352967986096],[-118.15060055531389,50.485343304036164],[-118.1506978647103,50.48532421779963],[-118.15081084190611,50.48529664235369],[-118.15092197432877,50.48525932602454],[-118.15104906417736,50.48522201178526],[-118.15116009950845,50.48518524885347],[-118.15128543755081,50.4851478100743],[-118.15139812901451,50.48510156359553],[-118.15152355998539,50.48507374104342],[-118.15165084046339,50.48504548003764],[-118.15176235491654,50.485026270717626],[-118.15185966313766,50.48500718345576],[-118.15194470825033,50.4849973964737],[-118.1520433842717,50.48496032544243],[-118.15214040378602,50.48493273764237],[-118.15225347737615,50.48490459814593],[-118.1523358118835,50.48484941695806],[-118.15241941571969,50.4847768146579],[-118.1524730491929,50.484713377546655],[-118.15254292844249,50.484658442685195],[-118.15263936990362,50.48460370156783],[-118.15273737220595,50.48454002174043],[-118.15284830928374,50.48449364951459],[-118.15296089926505,50.48444796398386],[-118.15308642570001,50.484419577073574],[-118.15319949741405,50.48439143659638],[-118.15331120157134,50.48438127964093],[-118.15341083512216,50.4843894770421],[-118.15350852531179,50.484388496190455],[-118.15362246309263,50.48439600844851],[-118.15383380080377,50.484394048089555],[-118.15391728505597,50.48439318929984],[-118.15401653449973,50.48438327829022],[-118.15411403252153,50.484373242972175],[-118.15418467786677,50.484354522790916],[-118.1542271034785,50.484345101447204],[-118.15426933690034,50.484326626153255],[-118.15430856760224,50.48425426559283],[-118.15432133154977,50.48419131920673],[-118.15432027241185,50.48414661210129],[-118.1543193115048,50.48410134242106],[-118.15430385592106,50.4840476949275],[-118.1542883988149,50.48399405635802],[-118.15430145156334,50.483939610249465],[-118.15438543649677,50.48388510533607],[-118.15443935501737,50.483830167501985],[-118.15448072079467,50.48377603893056],[-118.15449348436674,50.48371309248752],[-118.15449204064139,50.483650277475476],[-118.15444798143,50.48358782104023],[-118.15441841686997,50.483533742385696],[-118.1543885619618,50.483471172349375],[-118.15437291432254,50.4834084708799],[-118.1543716629633,50.483354709787214],[-118.15437031764542,50.48329133217287],[-118.15436849128945,50.48321040030461],[-118.15435245784172,50.4831295998479],[-118.154364837038,50.483048545473615],[-118.15437759900679,50.482985607917094],[-118.15434755389522,50.48291397494826],[-118.15430349404367,50.48285152732869],[-118.15430205216954,50.4827887033177],[-118.15437055926732,50.482751750862235],[-118.15446913016042,50.4827152401467],[-118.15453763700984,50.48267828758492],[-118.15459301632178,50.482614973498826],[-118.15463447902215,50.48256028221537],[-118.15467584340114,50.48250615348645],[-118.15468860634178,50.48244320692229],[-118.15471391990752,50.48237945996278],[-118.15474088648226,50.48231639977634],[-118.15476804680408,50.48226238460487],[-118.15482342372323,50.482199079301274],[-118.15486246096388,50.48211765546795],[-118.15486111499351,50.48205427776284],[-118.15486063221367,50.48203673242036],[-118.15484459986072,50.481955922987815],[-118.15484344619723,50.48190159922982],[-118.15484238659572,50.481856892003066],[-118.1548414252136,50.48181162219942],[-118.1548403671752,50.48176690603791],[-118.1548525512842,50.48167680644025],[-118.1549077366364,50.48160443815587],[-118.1549609766832,50.48152290059679],[-118.15501596936355,50.48144147828003],[-118.15507115260688,50.48136911882322],[-118.15512458597047,50.481296626198635],[-118.15516537158665,50.48121533530194],[-118.15516402521769,50.481151957529846],[-118.15514856963989,50.481098309958696],[-118.15509049789762,50.4810450390706],[-118.15503223554036,50.48098270524895],[-118.15500238146892,50.480920135180696],[-118.1550010353377,50.48085675738352],[-118.15499920794899,50.48077582528257],[-118.15499757131072,50.48070395607628],[-118.15500994868266,50.48062290138743],[-118.15502251675838,50.48055090959364],[-118.15502049703707,50.480460923486774],[-118.15504707741385,50.480379755123536],[-118.15505847263847,50.48033479210077],[-118.15508543750975,50.48027173167156],[-118.15512670513341,50.480207986067704],[-118.15516787598975,50.480144794089476],[-118.15518005900677,50.4800546942755],[-118.15517648011894,50.47997363789384],[-118.15517445855757,50.479883660655354],[-118.15517301556564,50.47982083642548],[-118.15517195568644,50.47977612908703],[-118.15517032036816,50.47970425086491],[-118.1551686834962,50.47963238156607],[-118.1551670481883,50.47956050333111],[-118.15516570186638,50.479497125429546],[-118.15514986063849,50.47942537870468],[-118.15513402101983,50.479353623041405],[-118.1551043602033,50.47930010686335],[-118.15504590777361,50.479228718925306],[-118.15503045143612,50.479175080139996],[-118.15500040782533,50.47910344701085],[-118.15497065325098,50.479040314212405],[-118.15494060826596,50.478968689984896],[-118.15489811189792,50.47889730358131],[-118.15486806712329,50.47882567932148],[-118.15485222816322,50.47875392356498],[-118.15485059183237,50.478682054177106],[-118.15484720590894,50.4786100516443],[-118.15484576185447,50.47854723624122],[-118.15481766236351,50.478484781214135],[-118.15477370439686,50.478421770862994],[-118.154715828778,50.478377553602435],[-118.15464394302478,50.47834250390751],[-118.15455989336591,50.47831620124863],[-118.15445959824753,50.47828140539037],[-118.15435940149935,50.47824604686353],[-118.15428926737215,50.478211121149954],[-118.15421728673806,50.47816646352242],[-118.15414501590772,50.47811331441864],[-118.15411535863839,50.4780597889647],[-118.15411410773433,50.47800602751411],[-118.15414136287062,50.47795145856181],[-118.15423973288348,50.477905884897886],[-118.15430842477184,50.47787798626409],[-118.15437867553463,50.477841157797094],[-118.154446884665,50.47779571363893],[-118.15447385043262,50.477732644230784],[-118.1544867089587,50.47766914367166],[-118.15447106163604,50.47760645069667],[-118.15446981187968,50.47755268029031],[-118.15446856056738,50.477498918810134],[-118.15446721528797,50.47743554073875],[-118.154466157723,50.47739082433208],[-118.15437968412598,50.47733779783351],[-118.15433563123344,50.47727534086699],[-118.15430607094376,50.47722126176114],[-118.15427835575333,50.47717692345289],[-118.1542629025899,50.47712327549497],[-118.15424754611867,50.47706907388412],[-118.15423228360343,50.47702448886025],[-118.15421663841674,50.47696178686968],[-118.1541730670153,50.47691688419597],[-118.15412901326067,50.476854436044725],[-118.15412795604442,50.47680971960284],[-118.15412680337519,50.47675539549207],[-118.15412555249365,50.47670163395512],[-118.1541099075672,50.476638931924484],[-118.15409426112525,50.47657623881664],[-118.15407909714345,50.4765310911672],[-118.15407871294204,50.476512983124316],[-118.1540488647087,50.476450403524616],[-118.15403341050794,50.476396764416435],[-118.15398955109526,50.47634336126359],[-118.15395999183082,50.47628928200337],[-118.15385931756889,50.476236377466385],[-118.15374696093794,50.47621992664691],[-118.15363314199995,50.47621185186341],[-118.15353527752362,50.4762037788088],[-118.15343547005293,50.47618652741014],[-118.15333731549262,50.47616996273136],[-118.15326572292811,50.476143412428634],[-118.15317944660954,50.47609943001163],[-118.15309521008062,50.47606407214333],[-118.15298071778926,50.47602939718103],[-118.15285396683824,50.47600401373844],[-118.15274014860462,50.47599593803756],[-118.1526424765665,50.47599691822367],[-118.15254266989467,50.47597966601821],[-118.15244451611201,50.47596310054614],[-118.15231630302404,50.475946092624866],[-118.15220385263443,50.47592003256074],[-118.15208936295278,50.47588534774344],[-118.15200531935939,50.475859043071445],[-118.15193362983132,50.47583305447576],[-118.15184783538646,50.475806625427694],[-118.15176312049857,50.475753712114816],[-118.15169104804083,50.47570961529032],[-118.15163308555844,50.4756557796641],[-118.15158922970647,50.47560237551443],[-118.15154537239889,50.47554898027362],[-118.15150326778112,50.4754957003443],[-118.15143129423534,50.475451040761286],[-118.15134501946892,50.475407065811254],[-118.15126068898127,50.47537226016723],[-118.151160692709,50.47534595266699],[-118.15107422691449,50.47529292346075],[-118.15100371696272,50.47523988746318],[-118.1509315528557,50.47518617350057],[-118.15087368515117,50.47514195406117],[-118.15080142466205,50.47508879365327],[-118.15075737735775,50.47502634402359],[-118.15072938241138,50.47496333404481],[-118.15069953984758,50.47490075342505],[-118.15068389874607,50.47483805970212],[-118.15065443914062,50.47479358715403],[-118.15063908779615,50.47473938488824],[-118.15063784112543,50.47468562317814],[-118.15063640461526,50.474622798486095],[-118.15063515795094,50.47456903676811],[-118.15063496654952,50.47455998271886],[-118.15063225855732,50.47451458819494],[-118.15061875302175,50.47447011787997],[-118.15058890937794,50.4744075461221],[-118.15055935545664,50.47435346582745],[-118.15051550214089,50.4743000611678],[-118.15047164736932,50.474246665417],[-118.15041387957606,50.474201883110815],[-118.15032955205865,50.47416707670785],[-118.15021535627875,50.474140890292034],[-118.15011526508484,50.474115144386175],[-118.1500028205286,50.47408908203418],[-118.14988833718365,50.474054394869334],[-118.14978980610356,50.47401971889834],[-118.14970344272523,50.47396612596252],[-118.14961873380658,50.47391321089348],[-118.14951806993463,50.473860302265685],[-118.1494174078585,50.47380738461344],[-118.14933298741857,50.47376296973101],[-118.14926072939257,50.47370981715974],[-118.14921687823902,50.473656411944695],[-118.14915882307494,50.47360313746569],[-118.1490881269275,50.47354104607786],[-118.14901577674499,50.47347827669346],[-118.14895772204744,50.47342500209756],[-118.14888527551908,50.47336278626444],[-118.1488003761043,50.47330082539503],[-118.14871391856157,50.473247785287256],[-118.14861354650088,50.47320336728893],[-118.14852902970482,50.47315951433702],[-118.14844314561824,50.47313363621642],[-118.14824673228411,50.47316207320029],[-118.14814925717855,50.473172103507025],[-118.14804974350228,50.47317350898671],[-118.14799274294697,50.47316494164008],[-118.14794975397375,50.473147198523634],[-118.14783731307983,50.47312113394784],[-118.1477228322947,50.473086453438675],[-118.14763831814325,50.47304259087284],[-118.14758007485037,50.47298026145591],[-118.1475647278151,50.4729260586436],[-118.14757768874574,50.47287216622569],[-118.14757625499314,50.472809350282986],[-118.14754622745203,50.4727377145743],[-118.14753040071011,50.47266596616387],[-118.14750104235875,50.472620939015314],[-118.14748559881187,50.47256728981267],[-118.14747034449937,50.47252270361168],[-118.1474549977515,50.4724685007536],[-118.14745375649667,50.47241472992714],[-118.14745251368467,50.472360968026784],[-118.14745117841126,50.472297589468255],[-118.14744974641313,50.472234764549576],[-118.14743411075005,50.47217207016235],[-118.14736204980217,50.47212796140344],[-118.14729008572526,50.47208329895066],[-118.14723184415132,50.47202096927709],[-118.14716134382694,50.47196793062549],[-118.14707575020086,50.47195055184902],[-118.14698967702911,50.471915627410326],[-118.14690526251708,50.47187121057839],[-118.14683320256646,50.47182710145989],[-118.1467753431846,50.471782879701315],[-118.14674531759768,50.471711243685164],[-118.14674369443208,50.47163937355293],[-118.14672834885728,50.4715851705352],[-118.14671290658333,50.47153152115641],[-118.14668326089344,50.4714780022123],[-118.14664078464004,50.47140661198869],[-118.1465967466867,50.47134416042458],[-118.14656719955514,50.471290078862715],[-118.14655175757373,50.47123642944189],[-118.14653593293924,50.471164680756495],[-118.1465204910379,50.47111103132298],[-118.1465051459108,50.471056828239035],[-118.14650495535277,50.47104777414333],[-118.14647511967547,50.470985201015296],[-118.14647368907768,50.47092237598206],[-118.1464722569236,50.47085955987369],[-118.14648502801236,50.47079661334696],[-118.14652473885188,50.4707417999508],[-118.14658011319766,50.47067849785647],[-118.14659288408478,50.47061555130329],[-118.14660565337601,50.4705526136735],[-118.14660450992092,50.47049828906481],[-118.14657486659847,50.47044476109368],[-118.14648841558213,50.47039172799562],[-118.14641683621282,50.470365173088084],[-118.14631850793194,50.47033953905306],[-118.14624673824228,50.47030392992983],[-118.14617448938894,50.47025077512294],[-118.14614484673908,50.47019724702065],[-118.14613220557483,50.470188438702486],[-118.14607501868544,50.470170816233676],[-118.14598914013284,50.470144945049206],[-118.14590492035089,50.470109581466716],[-118.14581933073289,50.47009220168189],[-118.14571944298228,50.47007549686312],[-118.14562140285129,50.470058362665064],[-118.14554972621335,50.47003236976206],[-118.14546375618909,50.46999688148326],[-118.14542204460257,50.469961707102264],[-118.14537905969105,50.4699439629205],[-118.14536361802207,50.46989032217487],[-118.14536266640239,50.46984505162019],[-118.14533321529946,50.469800577386025],[-118.14528965964979,50.469755670829805],[-118.14520359204597,50.46972074491186],[-118.14510488531535,50.469677001555205],[-118.14501834555635,50.469614350573806],[-118.14496030054748,50.46956107363359],[-118.14491664874632,50.46951672056215],[-118.1448745560208,50.46946344665221],[-118.14483100115284,50.469418539897326],[-118.14480155085211,50.469374065498684],[-118.14478639858581,50.46932891617876],[-118.14475675662709,50.46927539657451],[-118.14472730649292,50.469230922148405],[-118.14462665879827,50.46917800878027],[-118.14452824072475,50.469142765357574],[-118.14445618745339,50.46909865454769],[-118.14438423108209,50.46905399004439],[-118.1443135470682,50.46899190419747],[-118.14425531515467,50.46892956379473],[-118.14419727192718,50.46887628641044],[-118.14413942047142,50.4688320541873],[-118.14409567687908,50.46877809298378],[-118.14405320569877,50.468706710461646],[-118.14403757753658,50.46864400639301],[-118.14402194785715,50.46858131124691],[-118.1440189600635,50.468527415742464],[-118.14403183067614,50.46846391567199],[-118.14401601101953,50.46839216638143],[-118.14398656219156,50.46834769171023],[-118.14395692182568,50.46829417182756],[-118.14395578161582,50.46823984703986],[-118.14395473468034,50.46819513002527],[-118.14395349615235,50.46814136780517],[-118.14395254598392,50.46809609714048],[-118.14395149905499,50.4680513801178],[-118.14395130902193,50.468042325984136],[-118.14393567967066,50.46797963077918],[-118.14393472952351,50.46793436010535],[-118.14390490102816,50.467871777115924],[-118.14387507105488,50.46780920304345],[-118.14384524272496,50.46774662002835],[-118.14381551124106,50.4676834833557],[-118.14377323152931,50.46762115476862],[-118.14368660079586,50.4675590562347],[-118.14361416938812,50.467496845441175],[-118.14359892217433,50.46745224949899],[-118.14361198303351,50.46739780353439],[-118.14361055497392,50.4673349871152],[-118.14362332905635,50.46727204064314],[-118.14365068203826,50.467227090260025],[-118.14366374276986,50.46717264427413],[-118.14367476605246,50.4671095733966],[-118.1436735278877,50.467055811101254],[-118.14364379709905,50.46699267432859],[-118.1436161002242,50.46694832386926],[-118.14360066167518,50.46689468267971],[-118.14368297390799,50.46683950667829],[-118.14376712983572,50.46679406279082],[-118.14384944168155,50.46673888665916],[-118.14387660410281,50.46668488204146],[-118.14388956764488,50.46663098963804],[-118.1438739388681,50.46656829431495],[-118.143829721022,50.46649677819868],[-118.14375757943104,50.46644305899357],[-118.14370110066452,50.46638085141887],[-118.14364287296542,50.46631851049348],[-118.14358464386646,50.466256178462544],[-118.14351240618787,50.46620301272765],[-118.14345379756764,50.466122572307256],[-118.14342378101757,50.46605093489139],[-118.14342197342611,50.465970010049425],[-118.14342054723684,50.465907184586996],[-118.14341921781575,50.46584380547407],[-118.1433891999452,50.46577217695386],[-118.14333272408655,50.46570996021034],[-118.14326067590254,50.465665857367036],[-118.14318929579656,50.465648354385436],[-118.14309145609235,50.46564027202177],[-118.14302045576467,50.465640877255645],[-118.1429349687802,50.46563310295927],[-118.14282273929682,50.46561608722638],[-118.14272248144738,50.46558128022234],[-118.14265034263734,50.465527560236936],[-118.14257985783857,50.465474518250474],[-118.14256423128136,50.46541182265335],[-118.14256299604676,50.4653580513028],[-118.1425881274075,50.46528525159456],[-118.14260090077482,50.46522231401027],[-118.1425992860023,50.46515043431068],[-118.14256945963736,50.46508785967663],[-118.14252562477692,50.46503445124986],[-118.14250961898553,50.46495364726933],[-118.14250781463781,50.464872713372856],[-118.14250705571789,50.464836496684875],[-118.1425063881947,50.46480989674312],[-118.14254784918403,50.464755208768764],[-118.14261742309188,50.46469177826916],[-118.14265684516636,50.4646284742435],[-118.142655230326,50.46455659449189],[-118.14265428153506,50.46451132361517],[-118.14265285489957,50.46444850695924],[-118.14265142982885,50.46438568136863],[-118.14264962368873,50.464304756347204],[-118.14264943393259,50.464295702169295],[-118.14264819862706,50.464241930745395],[-118.14266106994609,50.46417843049695],[-118.14265964331165,50.464115613815196],[-118.1426296293565,50.464043976006586],[-118.14257159433,50.463990697450356],[-118.14248535166045,50.46394670606439],[-118.1424151560038,50.46390216440618],[-118.1423711312181,50.46383971058631],[-118.14238371633911,50.463767709800194],[-118.14242313793432,50.463704405785094],[-118.14246412180545,50.46363216304178],[-118.14250491426053,50.463550875020125],[-118.14253179524458,50.46347819956753],[-118.14251598128033,50.46340644069075],[-118.14245775749393,50.46334410784393],[-118.14239934572744,50.463272711842244],[-118.14238372018313,50.46321001604874],[-118.14242489337471,50.46314682746722],[-118.14246635293524,50.463092139410556],[-118.1425057738246,50.46302883531306],[-118.14250415928201,50.462956955416956],[-118.14251674238393,50.46288496346678],[-118.14251550727506,50.46283119194747],[-118.14251493810613,50.46280402936303],[-118.14251436893788,50.462776866777645],[-118.14254153057232,50.46272286222167],[-118.14256831423651,50.46265074033266],[-118.1425940132948,50.462605102970755],[-118.14263537382541,50.46255097739128],[-118.14267654606361,50.46248778866485],[-118.14270313805292,50.462406621453],[-118.14272973150733,50.46232544529681],[-118.14275457281688,50.46224415365395],[-118.1427669671107,50.46216309848037],[-118.14279355874616,50.46208193121424],[-118.14283435076787,50.4620006339857],[-118.1428735803968,50.46192827546782],[-118.14287244165145,50.46187395024089],[-118.14278814297882,50.461839137580256],[-118.14267436226201,50.46183105142131],[-118.14251925769263,50.46180590666057],[-118.14240528741108,50.4617887660192],[-118.14227820305176,50.4617452616449],[-118.14216366407118,50.461700958131374],[-118.14206497626157,50.46165722056791],[-118.14197873854377,50.46161322866131],[-118.14186585231703,50.46156961182466],[-118.1417513141868,50.461525307876194],[-118.14165281826601,50.461490615218054],[-118.14158087679571,50.46144594847724],[-118.1415512438137,50.461392427495085],[-118.14153543213882,50.46132066829307],[-118.141548205852,50.46125773052081],[-118.14156098109048,50.46119478381241],[-118.14154545576777,50.461131525162465],[-118.14150162439967,50.461078124999496],[-118.14147199331396,50.46102459504197],[-118.1414709474453,50.4609798865342],[-118.1414698104118,50.46092556122898],[-118.1414685766036,50.46087178956754],[-118.14149554883281,50.46080873092094],[-118.14152058260582,50.460736484691594],[-118.14154765301852,50.46067286344446],[-118.14157462501842,50.46060980476311],[-118.1415874000367,50.460546858001116],[-118.14157177656355,50.46048416188159],[-118.1415667260132,50.46047250194555],[-118.15624158495162,50.45848319482529],[-118.15646339564738,50.45850176182419],[-118.1567451148868,50.45850196819753],[-118.1570291692215,50.45848878772474],[-118.15731361437547,50.4584733650836],[-118.15759591798158,50.4584600589871],[-118.15787841959232,50.45843545651158],[-118.15815965646544,50.45840794297867],[-118.15844089120864,50.45839059920718],[-118.1587167730208,50.458393785814074],[-118.15898837198205,50.45843169097009],[-118.15925354747692,50.45849627046406],[-118.1595150282993,50.45857187884487],[-118.15976882634726,50.45865090143963],[-118.16001066081232,50.458747725549664],[-118.16025561077466,50.45883685049582],[-118.16051865210072,50.458893364860735],[-118.16079200599,50.4589313897028],[-118.16107041659036,50.458960740935275],[-118.16135125990104,50.45898630419565],[-118.1616321035298,50.4590118667447],[-118.16191032212693,50.45904232320015],[-118.16218455204968,50.45908549635441],[-118.16245634935129,50.4591426265906],[-118.16264130874903,50.459179469891986],[-118.16272698222106,50.45919627434729],[-118.16299965876878,50.45922803466387],[-118.1632749637072,50.45921421780421],[-118.1635507575698,50.45916709373807],[-118.16382917698624,50.45912523585694],[-118.16410574689836,50.45909398627408],[-118.16438542819412,50.45906521665828],[-118.16466413646144,50.459042027675416],[-118.1649447890724,50.459028016243444],[-118.16522592677352,50.459021388361734],[-118.16550813479901,50.459018786289064],[-118.16579034279196,50.45901618349893],[-118.16607216182135,50.45900564206484],[-118.16635582917472,50.45898449087773],[-118.16663793882424,50.458972278065694],[-118.16691314499236,50.458989517251965],[-118.16718572696067,50.459031991431836],[-118.1674544183314,50.45908662885558],[-118.16772194515276,50.459147954332785],[-118.16798947114535,50.45920928809078],[-118.16825806809858,50.45926447722886],[-118.1685303605547,50.45930862696805],[-118.16880761291863,50.4593344770332],[-118.16908797486711,50.45934247493448],[-118.16936999025738,50.45934097932021],[-118.16965414490346,50.45933737441572],[-118.16993713307241,50.45934046644321],[-118.17021798289785,50.45935583679673],[-118.17049727778169,50.459380136659355],[-118.17077482350228,50.45941448231995],[-118.17104478573064,50.4594618507562],[-118.17131027685527,50.45952472248324],[-118.17157596308522,50.45958647729134],[-118.1718502055544,50.45962962653865],[-118.17213125218237,50.459643875766695],[-118.17240840391878,50.459619427137994],[-118.17268351131345,50.45957618292317],[-118.17295239060496,50.45951781566277],[-118.17322613658733,50.4594823840692],[-118.17350688565791,50.45946779732231],[-118.17378841501429,50.45945890626374],[-118.17407081958275,50.459455166141176],[-118.17435254328906,50.45945533675975],[-118.1746350475716,50.45946120305602],[-118.17491463420733,50.45947365137874],[-118.17519548655528,50.4594890091369],[-118.17547672763241,50.45950213361205],[-118.17575894018367,50.45950967594191],[-118.17604202775428,50.45951218979768],[-118.17632336332747,50.45951458798867],[-118.176605576098,50.45952212816612],[-118.17688429037652,50.4595395903579],[-118.17716874508496,50.459564798701564],[-118.17744532591131,50.45960470912079],[-118.17770353275125,50.45966874902359],[-118.1779380223055,50.459767262196486],[-118.1781506375695,50.459889657416085],[-118.1783497374097,50.46001844567555],[-118.17853892223503,50.46015330318001],[-118.17871050798203,50.46029765504869],[-118.17885019993649,50.460452180664426],[-118.17895605315269,50.460617872601226],[-118.1790429446551,50.460790702748106],[-118.17912264203589,50.46096414483521],[-118.17916917885915,50.46114485086102],[-118.1792328303215,50.46131885724029],[-118.17939197462441,50.46146345734763],[-118.17961646443473,50.46157877841837],[-118.17985903751763,50.461671647452185],[-118.18012377725758,50.4617389630907],[-118.18039881444047,50.46176745550796],[-118.18068045952498,50.46177833417965],[-118.18096618503874,50.46177594042652],[-118.18124684957925,50.46176188782768],[-118.18152556582633,50.461738656589475],[-118.18180389006595,50.46170748680617],[-118.18208153020304,50.46167005738702],[-118.18235479242179,50.46162722814547],[-118.18262707995422,50.46157980927305],[-118.18289518349613,50.46152587432818],[-118.18316231062492,50.46146735871077],[-118.18342642190336,50.461405799716175],[-118.1836909206092,50.46134200749293],[-118.1839553223102,50.46127876831848],[-118.18421797115539,50.461215413691384],[-118.18448402413453,50.46115285961085],[-118.18474667305752,50.46108949479251],[-118.18500961152681,50.46102445936218],[-118.18527118674918,50.4609570669698],[-118.18552984216275,50.46088607759495],[-118.18578567395325,50.460810937571104],[-118.18603926565577,50.46072828907787],[-118.1862837112,50.46063708357857],[-118.18651220233276,50.460535709977755],[-118.18668154380352,50.46038721537726],[-118.18688123903519,50.46026798594403],[-118.18713949532301,50.46018905491644],[-118.18741487752031,50.4601339337802],[-118.18769086016381,50.460116144848826],[-118.18797385930695,50.46012936134621],[-118.18825939976261,50.460168746933206],[-118.18852482281241,50.46023213112163],[-118.18875807244869,50.460327711384664],[-118.18896129248044,50.46046354941912],[-118.18910432720406,50.460619425753656],[-118.18917443151521,50.46078709970987],[-118.1891998076573,50.46096743383158],[-118.18921020973056,50.46115236008976],[-118.18923004434888,50.4613339931101],[-118.18923645983489,50.46152146717665],[-118.18924861278137,50.4617065169735],[-118.18931006405069,50.46187300965452],[-118.18948713132593,50.46200642882533],[-118.18975364853029,50.462094185991596],[-118.19002334970435,50.46213301661489],[-118.19030675000165,50.46214399451652],[-118.19059500355883,50.46213723440149],[-118.19087586124502,50.46212204115673],[-118.19115515643529,50.46209543682501],[-118.19143113830556,50.46205729778254],[-118.19170195987518,50.46200805411247],[-118.19196489367307,50.46194300228282],[-118.19222237519374,50.46186852484096],[-118.19248112105099,50.46179696565973],[-118.1927495041084,50.461741336927865],[-118.19302187910479,50.46169332994557],[-118.19329980138158,50.461654193534386],[-118.19357870458744,50.46162981571864],[-118.19385528780023,50.461629003417684],[-118.1941328651037,50.46166329058132],[-118.1944107390857,50.461706077472876],[-118.19468928630283,50.46173478166171],[-118.1949687067348,50.46175845725918],[-118.19524841736957,50.46178046214171],[-118.19552812827705,50.46180246631898],[-118.19580754801767,50.46182614873354],[-118.19608638829315,50.461853170470036],[-118.196366688105,50.46188199400618],[-118.19664601949522,50.46191639843195],[-118.19691087491563,50.461972949892846],[-118.19715882829273,50.462055418669244],[-118.19739725989011,50.46215191382148],[-118.19762675416817,50.46225906858221],[-118.19784438802124,50.462373304833655],[-118.19805191521128,50.462494728311476],[-118.19825088959273,50.46262459677864],[-118.19843654583163,50.462759735505394],[-118.19861228757749,50.46290095422444],[-118.19876508526029,50.46305185363685],[-118.19890612157414,50.46320926333941],[-118.19904919933748,50.46336512632872],[-118.1992098736959,50.46351150011627],[-118.1993937857551,50.463646513582205],[-118.19958528280492,50.46377867177706],[-118.19978446249378,50.463907412036434],[-118.19999939820593,50.46403727234143],[-118.20020109802674,50.464151499620414],[-118.20041874751874,50.46426573055738],[-118.2006405781846,50.46437629643277],[-118.20086454799747,50.46448475268815],[-118.20109425602412,50.464590783647786],[-118.20132619923008,50.464694151251685],[-118.20156232198522,50.464793862636704],[-118.20180087505582,50.46488978537659],[-118.20204380279031,50.464980926598784],[-118.2022911996294,50.46506674150954],[-118.20254141388122,50.46514653506318],[-118.20279784941471,50.46522111678026],[-118.20305681101557,50.465291356044084],[-118.20331810501519,50.46535836916465],[-118.20358153776846,50.46542327245326],[-118.20384526244351,50.46548649615534],[-118.20411064107465,50.46555040528909],[-118.20437417210427,50.46561475298312],[-118.20463722072338,50.465681886402145],[-118.20489618782992,50.46575212133564],[-118.20515253468757,50.46582725125715],[-118.20540868729381,50.4659035058399],[-118.20566717377082,50.46597652531391],[-118.20592876515398,50.46604186220419],[-118.20619589183981,50.46609571933903],[-118.20647049798978,50.466137103746284],[-118.20674645776614,50.466170682083046],[-118.20702640415817,50.46620171121342],[-118.20730431062246,50.46623428628639],[-118.20758017563516,50.46626841624767],[-118.20785788786436,50.4663021151956],[-118.20813394720093,50.46633512744502],[-118.20841185528595,50.466367699740296],[-118.2086883983483,50.46639792423864],[-118.20896698359324,50.466426592436726],[-118.20924624708917,50.466451348295536],[-118.20952667008545,50.4664694143668],[-118.20980757770516,50.46648468442318],[-118.2100883895671,50.4665005074717],[-118.21036852382512,50.466520241455314],[-118.21064798055119,50.466543886379085],[-118.21092695478694,50.46657031697867],[-118.21120417850429,50.46659662355458],[-118.21148315339165,50.46662305275499],[-118.21118215079899,50.466549873533054],[-118.21092316933526,50.46647965333108],[-118.2106642861653,50.46640886988466],[-118.21040831370006,50.46633152006827],[-118.21016079700418,50.46624628601375],[-118.20991755667623,50.46615683273548],[-118.20967480171505,50.46606458360739],[-118.20943418392868,50.46597023354594],[-118.2091956089276,50.46587432733622],[-118.20895888325546,50.46577798132685],[-118.20872069722738,50.46567984140197],[-118.20848834506641,50.46557872204351],[-118.20826036543787,50.46547282988109],[-118.20803851071976,50.46536227938129],[-118.20781344653604,50.46524980270454],[-118.20759450578143,50.46513267665437],[-118.20739296712884,50.46500717622289],[-118.20721835995896,50.46486944416018],[-118.20707632347036,50.46471761808136],[-118.20695752161159,50.46455443909018],[-118.20685019266885,50.46438641861505],[-118.20674120976848,50.464217720906795],[-118.20661696471633,50.4640552876061],[-118.20647920835297,50.46389924206235],[-118.20633211721548,50.46374593725441],[-118.20617938942593,50.463594485754946],[-118.20602296616508,50.4634439124731],[-118.20584593302982,50.46329978687395],[-118.20567055417838,50.46315634700873],[-118.2055397090461,50.46300135639686],[-118.20546302085647,50.46283041321828],[-118.20541997593858,50.4626494027999],[-118.20540552114917,50.462467026881114],[-118.20541869153686,50.462288849283176],[-118.20547416708547,50.46211196352862],[-118.20556105633766,50.461937861755416],[-118.20566769544511,50.461772492515244],[-118.2058268617673,50.46162099581047],[-118.2059739661207,50.461467518676365],[-118.20605842503178,50.46129719568312],[-118.20611418790669,50.4611186304202],[-118.20613659118197,50.46093828307618],[-118.20613254168968,50.46075720098536],[-118.20610427336264,50.46057272116793],[-118.20603517162372,50.460398913537865],[-118.20589762930517,50.46025192960786],[-118.20567881529693,50.460134236420295],[-118.20545669326287,50.46001518855001],[-118.2052594602227,50.45988545599523],[-118.20506242030635,50.45975461566246],[-118.20487879823744,50.4596179319652],[-118.2047233694614,50.45947194488306],[-118.20462704882587,50.45930186644338],[-118.20457117467257,50.45912334885893],[-118.20453290381077,50.45894550285777],[-118.20450921808006,50.45876529522201],[-118.20448358847455,50.45858608044973],[-118.20443812282876,50.458408856918496],[-118.20437651592356,50.45823275512899],[-118.20430606102279,50.45805658981051],[-118.20422063346285,50.457885027565425],[-118.20411284745285,50.45771978943703],[-118.2039786184784,50.45756399536656],[-118.20381648892176,50.45741583392],[-118.20364288983839,50.457272513245634],[-118.20346725182456,50.45713073887088],[-118.2032741171695,50.45699790913121],[-118.20307524915043,50.4568674950582],[-118.20292741971708,50.45671864082527],[-118.2028176956632,50.45655440301507],[-118.20272498529961,50.45638401551773],[-118.20263801162557,50.45621120297262],[-118.20254714907502,50.45604038500911],[-118.2024343159645,50.45587365815405],[-118.20231409336624,50.4557086789017],[-118.20221565226198,50.45554070678911],[-118.20216621306311,50.45536603003868],[-118.2021385546973,50.45518836054601],[-118.20212003403732,50.455009084595844],[-118.2021104604834,50.45482930066926],[-118.20210642768683,50.45464821706028],[-118.20210589562242,50.45446738034523],[-118.20211071061064,50.45428636028695],[-118.20211533352176,50.454106447597134],[-118.2021218027438,50.45392610462939],[-118.20214081377149,50.45374495584432],[-118.20217888607776,50.45356627255657],[-118.20224438072596,50.45339292261893],[-118.2023458584549,50.453226621785475],[-118.20247145088884,50.45306429090737],[-118.20259704396828,50.452901950923746],[-118.20270221188191,50.45273478917082],[-118.20278851463395,50.45256402764228],[-118.20286810521449,50.452391102137966],[-118.2029441946554,50.452217929630564],[-118.20302203377115,50.45204488048709],[-118.20310677574753,50.45187288769769],[-118.20320163300062,50.45170385926989],[-118.20330329540629,50.4515364497977],[-118.20341011176065,50.45136996424719],[-118.20352042778178,50.45120372545046],[-118.20363229967523,50.451038726300666],[-118.20374932540396,50.45087465103845],[-118.20386965562294,50.45071194777833],[-118.20399329340377,50.45055059864868],[-118.20412042914747,50.45038950515223],[-118.2042629302205,50.4502317461521],[-118.20442488287846,50.45008440784493],[-118.20461572616296,50.44995435725205],[-118.20482115893255,50.44983211524201],[-118.20503456747261,50.44971495534773],[-118.20525779948211,50.44960243830239],[-118.20548560290949,50.44949420273541],[-118.20571447746075,50.44939000179771],[-118.20595084496127,50.44929366924404],[-118.20620550482475,50.449214445974214],[-118.20646571425154,50.449144083903334],[-118.20672874532,50.44907787971481],[-118.2069976155565,50.449018866595324],[-118.20726775087259,50.448962771562854],[-118.20753652377752,50.44890431084209],[-118.20779614752325,50.44883730362605],[-118.20803738067056,50.44875374000736],[-118.20823005554684,50.44862324371488],[-118.20840424043543,50.44847676290799],[-118.20858572509765,50.44833926686101],[-118.20876399927404,50.44819984476217],[-118.20894227080247,50.4480604312837],[-118.20912384962047,50.44792237164],[-118.20931515291602,50.447789526180244],[-118.20951949059986,50.44766324005978],[-118.20971390509501,50.44753287329687],[-118.20987369500484,50.44738762699106],[-118.20999593731868,50.44722392336775],[-118.21007928186857,50.447049559223835],[-118.21011887229008,50.44687212036578],[-118.2101408657896,50.44669400175456],[-118.21015070612128,50.446514457060644],[-118.21015529465788,50.44633455123192],[-118.21011310865043,50.44573946182066],[-118.20762122619111,50.44424396671914],[-118.20856413889126,50.43803384061428],[-118.21482045257522,50.43593114989428],[-118.21509148092328,50.434170495358856],[-118.21511579310268,50.43418350824417],[-118.21525151118956,50.434217929969925],[-118.21545206060848,50.43425635843585],[-118.21555714524793,50.43427336209997],[-118.21567585002867,50.43430376420677],[-118.2159432843155,50.434354804567306],[-118.2162295433985,50.43437892939426],[-118.2164239320516,50.43438132254886],[-118.21657306919242,50.43442007778248],[-118.21682888273568,50.43450758722435],[-118.21717759589104,50.434580178430636],[-118.21745670149961,50.43463542693357],[-118.21767606470755,50.43471867647389],[-118.2178950656967,50.43482449990062],[-118.21802965242122,50.43488595810439],[-118.21817540077838,50.43493408175833],[-118.21844389739694,50.435142829011546],[-118.21866420053092,50.43544592149405],[-118.21873132277156,50.435580036793795],[-118.21883507187503,50.4356150228477],[-118.21910369822626,50.43567970758739],[-118.21941855484505,50.435712608019074],[-118.21969617208097,50.43581747393627],[-118.21987321551701,50.436022597963536],[-118.2199192140032,50.43612527564007],[-118.21998554447892,50.43607966570695],[-118.22021271403422,50.43593350159676],[-118.22046378469591,50.435782248893055],[-118.22060415672664,50.435718112495096],[-118.22078703908434,50.43568465788429],[-118.22115608601341,50.43568069771234],[-118.22151711054292,50.43571289166337],[-118.22170024751655,50.43572917293973],[-118.22183094160826,50.43570051345349],[-118.22212158892044,50.43564809204572],[-118.2225883752224,50.4356114481545],[-118.22319485733799,50.43559650322681],[-118.22401680089347,50.435718194897944],[-118.2247294888624,50.435980211152525],[-118.22497658686619,50.43614901476126],[-118.22499169770728,50.436184546884164],[-118.2250009557628,50.43620270845597],[-118.22501360278834,50.436211508160994],[-118.22511175277208,50.436196944306474],[-118.2252940681845,50.43617700225349],[-118.22556096136499,50.43616979027948],[-118.22592116762063,50.436165752495576],[-118.22617582615757,50.43616784813176],[-118.2264909393089,50.43616854607292],[-118.2271735186303,50.43614368194109],[-118.22783455008063,50.43606926963364],[-118.22810138662166,50.43602136853406],[-118.22813131058622,50.43601217338953],[-118.22812549497455,50.43588181722196],[-118.22822290934658,50.43561521450192],[-118.22844850705741,50.43547796473623],[-118.22860089459873,50.43546721246794],[-118.22875066378982,50.43546136526113],[-118.22922340845386,50.43545167190157],[-118.22980073428027,50.435441420654236],[-118.23014422307487,50.4354418439242],[-118.23024278411813,50.435445384208734],[-118.23039789926885,50.43543934118444],[-118.23075625394722,50.435435718417274],[-118.23108174847314,50.43542753334347],[-118.23140813270497,50.435496238798095],[-118.23182614552981,50.43568043116622],[-118.23210637135068,50.43582160638947],[-118.23218457443315,50.435861002749256],[-118.23220422160776,50.43587029362137],[-118.23225332551662,50.43588334556564],[-118.23233111360595,50.435904633145704],[-118.23246643469669,50.43592092506504],[-118.23266453795121,50.43593259007841],[-118.23278109347793,50.435944742160615],[-118.23289898486978,50.43593889950326],[-118.23310335170717,50.43591428458601],[-118.2332339419567,50.43588617434967],[-118.23330252110557,50.43585822541727],[-118.2334069826392,50.43577630010073],[-118.2335882445573,50.43563931474854],[-118.23383537949226,50.4355515969267],[-118.2340159387439,50.43553151755593],[-118.23407095041769,50.43553086383419],[-118.23409223516286,50.43553066925937],[-118.23414549713105,50.43552989253483],[-118.23423505632613,50.43549324783182],[-118.23434465353326,50.43540207347053],[-118.2344820665195,50.43532416246461],[-118.23461506376735,50.43528209083519],[-118.23467742855378,50.435259354272766],[-118.23472071917398,50.43528556522692],[-118.2348548183488,50.435329448052066],[-118.23506578768142,50.43543071971748],[-118.23525871539204,50.43555444335281],[-118.2353459862369,50.435674701871],[-118.23536272187262,50.43581373327666],[-118.23536916985425,50.43589950304423],[-118.2354050127426,50.4359483500274],[-118.23547119465046,50.436006108531224],[-118.23550904612418,50.43603305781321],[-118.23552092441274,50.436046322015066],[-118.23556257923998,50.43608201774653],[-118.23565210169384,50.436148195864746],[-118.2357339537264,50.43615620691335],[-118.23575100504041,50.43605740789608],[-118.2359373143493,50.435983491194975],[-118.23624195829746,50.43606534358814],[-118.23635085226702,50.436275826572874],[-118.2364598309851,50.4364139888104],[-118.23657855545541,50.43644436847017],[-118.23661531592946,50.43645712066665],[-118.23665732566438,50.43647024162648],[-118.23667424515968,50.43647482015113],[-118.23675039954843,50.43650558976047],[-118.23701247494807,50.43658784801254],[-118.23737049971311,50.43667853611737],[-118.2376182268086,50.43672079680809],[-118.23773371092574,50.43672890880902],[-118.23782307794373,50.43675495589844],[-118.23790051711401,50.436798813888096],[-118.23793106582039,50.43681677905773],[-118.23802593804234,50.43688277016751],[-118.2383314740569,50.43696976801933],[-118.23870396587208,50.436925303388485],[-118.23891767606439,50.43684652658639],[-118.23899705623847,50.436827812069694],[-118.2390674484919,50.436840665463016],[-118.2393853614614,50.43688672123458],[-118.23999584323775,50.43699230003294],[-118.24041218099168,50.43707351302573],[-118.24060968347669,50.43712975876021],[-118.24080970801289,50.43718165234403],[-118.24098478212447,50.43719338441761],[-118.2411980932497,50.43716824354988],[-118.2414120772685,50.437139199225214],[-118.24151766985908,50.43710198418485],[-118.2416432646321,50.437051474955545],[-118.24193861537682,50.43697164466057],[-118.24233299365517,50.43688238574999],[-118.2426419724331,50.43681593985997],[-118.24277538589536,50.43679196714157],[-118.24284592001554,50.436773189477954],[-118.2430063138223,50.43672626059745],[-118.24329250886413,50.43663787466776],[-118.24355664765102,50.436554150130355],[-118.24365252584333,50.43652190113137],[-118.2436724129443,50.43649899860865],[-118.24371316537757,50.4364577910435],[-118.24373470517284,50.43643557400593],[-118.24380904325358,50.43642554190545],[-118.24395489576781,50.43640131100635],[-118.24402913827551,50.436391832510964],[-118.24412574273339,50.436386183340076],[-118.24433031549522,50.43637060206617],[-118.24445607087954,50.43636021884276],[-118.2445101035003,50.43635497139009],[-118.24462418783637,50.43634037905025],[-118.24493651967732,50.436305801006945],[-118.24531259448926,50.43626100598818],[-118.24546117543177,50.43624148444121],[-118.24566822469302,50.4362526237227],[-118.24609158853629,50.43629306986662],[-118.24633229918251,50.43637605675683],[-118.24638241695614,50.436465448885336],[-118.24643138573275,50.436510132152726],[-118.24656909490932,50.43655369253872],[-118.24687093505617,50.436631367070305],[-118.24717333524401,50.43669552070346],[-118.24740590070519,50.43673330537695],[-118.24761610408578,50.43676726089653],[-118.24782815453342,50.43680077607791],[-118.2480427230605,50.4368299567543],[-118.24816540087166,50.43683743243438],[-118.24820087842305,50.43683709172606],[-118.24821126179297,50.43682822013162],[-118.24831167402186,50.43683130441338],[-118.24855354869871,50.43685618030833],[-118.24876580963348,50.43689875692041],[-118.24883018595044,50.43691570169586],[-118.24888391238136,50.43690195157942],[-118.24908041085764,50.43688183587117],[-118.2493898765524,50.436874162739],[-118.24962684984195,50.43687609374841],[-118.24970314823705,50.43687523471801],[-118.24972977987926,50.43687484261249],[-118.24979646454254,50.43687838946717],[-118.24993410282414,50.43688126269949],[-118.25017859469646,50.43690122928839],[-118.25036370783917,50.43692664022949],[-118.25041816293974,50.43693949848549],[-118.25044325606075,50.43694803779144],[-118.25051463229147,50.436965472419175],[-118.25072112817294,50.43699012234299],[-118.2510497834059,50.437004698483],[-118.25132834910367,50.43700163276562],[-118.25151009846856,50.43699516774108],[-118.25166979326963,50.43699336616935],[-118.25176203238283,50.43699249346752],[-118.25180237415182,50.43704616894639],[-118.2518965765533,50.437157287987866],[-118.25211162970804,50.43713225775386],[-118.25242059432112,50.43696296082831],[-118.25266552672142,50.436856969958086],[-118.25294149459299,50.43681756036635],[-118.25332914225513,50.43677749999915],[-118.2537476514448,50.436763899616686],[-118.25413730117661,50.43680477124036],[-118.2544079469799,50.43687854733224],[-118.25452361078689,50.43692676211594],[-118.2545858947827,50.436966155293234],[-118.2546882151204,50.43705073127413],[-118.25479140156621,50.43713027863782],[-118.25485674581269,50.437193045073],[-118.25493176337247,50.43728191726805],[-118.25503516294731,50.43737051865958],[-118.25512453967174,50.43739656072338],[-118.25515817090569,50.437396657850215],[-118.25518599602792,50.43740990716689],[-118.25523989648664,50.43743628314644],[-118.255265971822,50.43744940981038],[-118.25530833224626,50.43743994931782],[-118.25539459063175,50.43741209663757],[-118.25543596995092,50.437398047643036],[-118.2555044056685,50.437401713693625],[-118.25567119641221,50.4373998431125],[-118.25594365066335,50.43740141752074],[-118.25636618471454,50.43740560730119],[-118.25683974815391,50.43736025557295],[-118.25726406811567,50.43718942915828],[-118.25753634379984,50.437006809958326],[-118.25758566884677,50.436884844402755],[-118.25767393551571,50.436793855172304],[-118.25791027049956,50.43676860565358],[-118.2581491235461,50.43673901237088],[-118.25846456866599,50.436614221229284],[-118.25887545335151,50.43643905845497],[-118.25928249443199,50.43628621447161],[-118.25968415277748,50.436164638917454],[-118.25998112035236,50.43608543683699],[-118.26018035240212,50.43602877566752],[-118.2604020983702,50.435954473335414],[-118.2605462223171,50.4358990320445],[-118.2606881261225,50.435897671169236],[-118.26092377166937,50.435917564071865],[-118.26109534651428,50.43592901934518],[-118.26129628537281,50.43594478148543],[-118.26160570063249,50.43600938598264],[-118.26190568569304,50.43611852584169],[-118.26211946139297,50.43618321120218],[-118.26223952509187,50.43619557737993],[-118.26233928563416,50.43621273182327],[-118.26251859896595,50.436251275099174],[-118.26285601154767,50.436225183185364],[-118.26328160875086,50.43621147417844],[-118.26355284685525,50.436374531771385],[-118.26371486095171,50.4365033847757],[-118.26399188683475,50.4365092190339],[-118.26428703104472,50.43653326956193],[-118.26442531134464,50.436563287624644],[-118.26452962143793,50.436615785663996],[-118.2646869737849,50.43669967467788],[-118.26486637976502,50.43677889708938],[-118.2650365120846,50.43683996099023],[-118.26511354943898,50.436865691451395],[-118.26512740067179,50.43688812920837],[-118.26516339551381,50.43694657454693],[-118.26526856423652,50.43703528891324],[-118.26540645528246,50.43710878431993],[-118.26849619104328,50.43593689957032],[-118.26884799090071,50.430344741237114],[-118.26893280322543,50.42515193605624],[-118.26892266881816,50.423726967493955],[-118.26839003933664,50.41751181724336],[-118.26899653360483,50.41175488789197],[-118.27140258691085,50.40673009197717],[-118.27202995472807,50.404394901130466],[-118.26799451181402,50.40217341691791],[-118.26191198487659,50.4013224599887],[-118.25609794102215,50.400475293014736],[-118.25288219368761,50.398596543919275],[-118.25467266906985,50.39682831124178],[-118.26799596454339,50.39664181969047],[-118.27523590605752,50.39577572111715],[-118.2781729544313,50.394578348943284],[-118.28746625215122,50.39023082936972],[-118.29468790826526,50.38474707946909],[-118.30057526584936,50.377953501741885],[-118.30012565911788,50.377438523087676],[-118.29735295560721,50.37396143121334],[-118.29564708307525,50.37111409358044],[-118.29455983275967,50.36655281812469],[-118.2943850539993,50.36501064783711],[-118.2951731798256,50.361476374615215],[-118.29704443579631,50.357478726816474],[-118.2977501117366,50.35343187123792],[-118.29765125391505,50.34995539062676],[-118.29629176253495,50.34442409590841],[-118.29414294363217,50.34020485649323],[-118.28895575882659,50.339125228191584],[-118.28154290465696,50.339652953327864],[-118.27484556130037,50.34045859229105],[-118.26770848898748,50.34069397715841],[-118.26145056931863,50.3396774916537],[-118.25876628877137,50.33711480447031],[-118.25805124293903,50.33329300577464],[-118.2586707183507,50.33067236530246],[-118.25598490813583,50.32713473576387],[-118.2605321296291,50.32114319059514],[-118.26676262256863,50.31628727750535],[-118.26693899698495,50.31600018395736],[-118.26711401431416,50.31052762028371],[-118.26470052176819,50.305569436199775],[-118.26370096290773,50.30134725789304],[-118.26566475522614,50.29672911353593],[-118.2691283234284,50.2908549985459],[-118.26984233903444,50.28965408530306],[-118.27142838684303,50.28212187434908],[-118.27141290082182,50.2761910316806],[-118.2701509326113,50.268718703235756],[-118.26844039974418,50.26205557394107],[-118.26673978135398,50.256409049900014],[-118.26556956076017,50.25310638740213],[-118.26262195183675,50.24922607763437],[-118.26028316710759,50.24558286034419],[-118.2611764458016,50.24119047883508],[-118.26125284368285,50.238108151669906],[-118.26062840367275,50.23640055934662],[-118.2591062390739,50.23252306574113],[-118.25669608406271,50.22773871582668],[-118.25606093286093,50.226424747659316],[-118.25276173766663,50.224034747875805],[-118.24946630394732,50.22261181150824],[-118.246157827944,50.21953936140153],[-118.24446270186691,50.21651616646571],[-118.24061956390452,50.213441918529945],[-118.23644279374821,50.21042530533442],[-118.23615876284553,50.206660031410884],[-118.23650735245968,50.20306884769119],[-118.23721710401598,50.199590195343895],[-118.23783756326681,50.1995882488084],[-118.24166581254084,50.19485250287245],[-118.24619238155331,50.19171047962924],[-118.25063915593118,50.18919507639111],[-118.25668022667706,50.18485232907313],[-118.2585528315577,50.18148267505787],[-118.2584492899054,50.17846428374233],[-118.25594731679465,50.17316313507559],[-118.25388700025793,50.17071653131146],[-118.25273984924539,50.16803758626203],[-118.2580657115348,50.166541946458544],[-118.26784507158922,50.162879883030705],[-118.27325997649989,50.160195127155454],[-118.27486762380268,50.1591078779677],[-118.27795634920761,50.15288531907205],[-118.27928142321436,50.147920434206604],[-118.28140484553576,50.144216003020496],[-118.28265031616918,50.14318458220402],[-118.28841812558626,50.13981253584466],[-118.29268175839816,50.137749169226254],[-118.2951650757473,50.13580820133448],[-118.29501042408857,50.13489706932168]]]}' - )), 4326)))); - -INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Vancouver Island','1','1- Vancouver Island','AR10100000','WHSE Admin Boundary',7 - , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-126.78420523580463,49.48310633376914],[-126.50121288240169,49.24957660622653],[-126.0005235751567,48.82976509921817],[-125.48211577015613,48.6859457570275],[-124.75727664957519,48.51690669238596],[-123.99975442452109,48.30523951946273],[-123.90248586353144,48.27980240134232],[-123.67320700265964,48.24082106282676],[-123.53989655275734,48.224764478027055],[-123.3815040248219,48.25443232801455],[-123.24498922448338,48.28226854504484],[-123.11436838665627,48.422789974488325],[-123.15599371999896,48.44996995892382],[-123.21038650077581,48.537605713480055],[-123.26468310036863,48.69260361760367],[-123.0050642751287,48.76707723957745],[-123.00382942644562,48.83068965804488],[-123.31161842820045,49.00029028909575],[-123.31462061244859,49.00247496556385],[-123.52431234971202,49.156904447890106],[-123.52577513320652,49.15774249751906],[-123.86200795058586,49.34875907279831],[-124.00023291633309,49.42419205607542],[-124.02306001004446,49.433344981319074],[-124.04814010502469,49.4435420692261],[-124.0843032742771,49.45804944481162],[-124.11960787039664,49.472846431950856],[-124.15812531472385,49.49032391543544],[-124.18315414257538,49.504035137095045],[-124.22117144266582,49.51892892989595],[-124.23685744800484,49.523944251761534],[-124.27008027551634,49.533132286377025],[-124.30229518791089,49.54153143494938],[-124.32344950339066,49.550089235383524],[-124.35804880373438,49.55808542319792],[-124.39241839418914,49.5682453403214],[-124.41737648032523,49.578363734533816],[-124.44627591774979,49.58959758821449],[-124.46611616652906,49.59752354289299],[-124.4911646276783,49.60711086197482],[-124.51540951184454,49.619625516831114],[-124.5517807950956,49.638167089979966],[-124.59131948222404,49.65776505664209],[-124.63383790547314,49.68122979025696],[-124.67751917735802,49.70430926117986],[-124.71511471019251,49.72837199333778],[-124.74619197390928,49.75223537280125],[-124.78168362111893,49.776784539819076],[-124.78550381109564,49.779830118162685],[-124.78732570889623,49.78128272641043],[-124.80030687172598,49.79029449813117],[-124.82125974472328,49.81032089993528],[-124.84360777894467,49.83746230898465],[-124.8794624004956,49.8798178852306],[-124.89258290620486,49.9010604776211],[-124.89640657192966,49.92372785349895],[-124.89435748326568,49.93704912217991],[-124.89337496515779,49.94368169167384],[-124.88246386410493,49.960853422640504],[-124.8739429178801,49.974624632173885],[-124.8635638646137,49.98832012664997],[-124.85831640672328,49.99571701581407],[-124.85737605682162,50.000405372218545],[-124.85740815472968,50.00246590876188],[-124.85819159864973,50.00572169716722],[-124.85830894736674,50.01218219807871],[-124.85869434713591,50.02298938443552],[-124.85999929262667,50.0349927922842],[-124.86105688422012,50.04853988199309],[-124.86283876233911,50.06219534886659],[-124.86333718814335,50.07357161345582],[-124.86614341759145,50.085445759646674],[-124.86749822750666,50.09109903192159],[-124.86754930267386,50.0912934199069],[-124.86940539418842,50.09760301795057],[-124.87161173739617,50.10616033966782],[-124.87435888529549,50.118894482333936],[-124.87588954983711,50.12883407136619],[-124.87953169334904,50.13715096257827],[-124.88710551856437,50.146693507095094],[-124.89865639277448,50.15860462932877],[-124.91085575231152,50.17233601964823],[-124.92035674407397,50.17968672287064],[-124.93033827841667,50.188173804660714],[-124.9421566024747,50.19916128748139],[-124.94932089350777,50.20561084064118],[-124.95623744141818,50.21195189278005],[-124.9639291158771,50.2212626557629],[-124.97167182919165,50.22907829130429],[-124.97934178233173,50.23712967240334],[-124.99132628898289,50.24679064043783],[-124.99864738921458,50.25123853707671],[-125.00166580772502,50.25430111806823],[-125.0031594575528,50.25527073981298],[-125.00645148715755,50.25739635205207],[-125.0126291665174,50.2623121344719],[-125.0265517979605,50.273842181131926],[-125.03501675899082,50.28096132656114],[-125.04006618683799,50.28708562477807],[-125.05393644709818,50.296439043053965],[-125.0643693010396,50.303194438432165],[-125.07585784965555,50.31273923829022],[-125.08931634111991,50.3230634150889],[-125.10267712086521,50.33224470851213],[-125.10831939149038,50.33613404594153],[-125.11467296282461,50.340350608245096],[-125.11995915226605,50.345309274176216],[-125.12016111418657,50.34504238989067],[-125.12487895320092,50.348193804720964],[-125.13449742251186,50.35386214482817],[-125.14288286554968,50.36017608823967],[-125.14800210825133,50.36457870946568],[-125.14897171076181,50.36760180635426],[-125.14790875022527,50.374761698083645],[-125.1478097379114,50.381509933474035],[-125.14811315984684,50.38631111891224],[-125.15321463723335,50.39334961009296],[-125.160472285647,50.397275176548646],[-125.16914831933524,50.400663275150926],[-125.1774013923086,50.4041637983269],[-125.18180082699604,50.406025629348115],[-125.18981050333396,50.40907913136638],[-125.19838559128773,50.41047199100208],[-125.20937422779646,50.41232229819627],[-125.21797834269593,50.416173788292305],[-125.22654782844407,50.422133266037996],[-125.23560719214721,50.4292321255004],[-125.24467871447031,50.43661554730118],[-125.25118384201528,50.441797300168794],[-125.26079938335974,50.44637600409574],[-125.26885432592545,50.449139686408785],[-125.27893045007036,50.45067027894477],[-125.28734243452834,50.450567930410784],[-125.29363954880681,50.448771740574536],[-125.29910933919903,50.44579172020905],[-125.30546347478683,50.445708674586456],[-125.31686684884777,50.44985502429081],[-125.3393151592094,50.46381012012161],[-125.36417484084994,50.47967850440401],[-125.37157815103092,50.48455356659827],[-125.37409064495897,50.48738404800617],[-125.37960891151475,50.489030641491695],[-125.38519270105299,50.49003713764805],[-125.38730113661846,50.4915565951824],[-125.39269251480371,50.492227510008156],[-125.39701451228534,50.49274018247244],[-125.3990106211186,50.49637927012844],[-125.40254297222258,50.50331002379063],[-125.40873604304889,50.506427224887325],[-125.41178621970111,50.50615758359294],[-125.41523284614499,50.50468034238647],[-125.42657880261879,50.51751366279115],[-125.41902802462101,50.525395063125686],[-125.41902306765917,50.52796914669105],[-125.42317855442468,50.53185866814298],[-125.42736165137691,50.53363171995925],[-125.43202761816188,50.536312836711964],[-125.43633620080928,50.539398484877815],[-125.44007225919744,50.54089362834749],[-125.44641489718809,50.54280762780628],[-125.42082907092151,50.551052528560746],[-125.4259287967797,50.55858651738944],[-125.42620316022679,50.564761259075325],[-125.44443218651264,50.57309394739782],[-125.44583447184836,50.575077446453875],[-125.44690699293572,50.577465248661696],[-125.44718273145034,50.580320185389354],[-125.44225027499691,50.58616552469248],[-125.43885743811468,50.58969996277189],[-125.43996024239975,50.59305933023044],[-125.44789305104024,50.59958306331534],[-125.4342579971718,50.60823343028387],[-125.43374240362117,50.61213256978433],[-125.42593618532263,50.612291940453986],[-125.42114723280939,50.61418967855642],[-125.41656397427,50.61436902787688],[-125.41565015709389,50.61941027277189],[-125.41397377706654,50.62326611783075],[-125.41221611211532,50.62466279750479],[-125.40886883558701,50.62648168296741],[-125.400619696212,50.629966483018464],[-125.3872251613555,50.63311425226454],[-125.37813843978122,50.63558100791185],[-125.3747399271492,50.638890947475765],[-125.3748642326331,50.64317676450312],[-125.37275002438135,50.64463312675192],[-125.36542869507748,50.646105406223406],[-125.36046658024256,50.64879903208103],[-125.36186440905577,50.655985312480446],[-125.34537247559186,50.66700879553856],[-125.33366235380085,50.669158318729814],[-125.33032242356232,50.67194557319329],[-125.32798490582957,50.67489204319924],[-125.33092687054776,50.67983810093933],[-125.33336602337691,50.68626492901997],[-125.3066275140965,50.69186519300165],[-125.30271579005135,50.69385918939626],[-125.2992977176406,50.6968734773697],[-125.2964448146642,50.70085575025644],[-125.28926853188723,50.704951419821356],[-125.28658193455242,50.70818777836372],[-125.2931556805995,50.7145136318041],[-125.29199784458129,50.71784339880214],[-125.29208733546176,50.72384836258314],[-125.29187854638388,50.728994665349255],[-125.27699197995022,50.73443934673918],[-125.27450826794986,50.73899257807273],[-125.27275696837938,50.743818845573145],[-125.26970573917512,50.747459313612076],[-125.26460295649363,50.75163806948243],[-125.25794723063461,50.755320663917026],[-125.25302208754961,50.75978522612066],[-125.24961442160026,50.76337106501338],[-125.24430370523471,50.76704106814006],[-125.2379185172427,50.77043345730422],[-125.22859902893812,50.77277623750712],[-125.22423981155083,50.774598672600625],[-125.22180994671217,50.77806465276624],[-125.22174573872026,50.78257832534707],[-125.21878703767686,50.786219608312585],[-125.21511827660376,50.79066253085484],[-125.21349304997653,50.79348777568797],[-125.21257773387644,50.79629664619204],[-125.20883212431819,50.79777471446998],[-125.20164980380812,50.79928994004908],[-125.19823562604034,50.7996680396957],[-125.19482829029249,50.80045195547951],[-125.19168055344436,50.80100579029608],[-125.18553783082848,50.80072771527765],[-125.17633868436974,50.80375132134899],[-125.16113018918608,50.80912860209673],[-125.15818684319316,50.81688318928948],[-125.15145652842993,50.81827564925389],[-125.14842985526023,50.823569938988726],[-125.14810002882577,50.82821103569747],[-125.15166866132651,50.8333139552245],[-125.15575470465963,50.84116228254985],[-125.16083037985028,50.84179321540695],[-125.1648025321783,50.8414047022766],[-125.16812183120147,50.84096685021753],[-125.17243134180013,50.840002370051764],[-125.17857369842663,50.8398163103734],[-125.18353416982022,50.83975996300913],[-125.18681083028493,50.840868889460666],[-125.18695724565849,50.842977827560745],[-125.18741870298189,50.846521596807406],[-125.18687819417431,50.84967300724958],[-125.18484293469908,50.85450204921478],[-125.18292123504307,50.8569820973374],[-125.18025609351672,50.858902623651176],[-125.17681977219854,50.871811175036584],[-125.19441184413778,50.87726937366231],[-125.21856776700692,50.87527140428913],[-125.22594222923996,50.870721935553306],[-125.22799195470375,50.86978125733317],[-125.23449268007926,50.86964958919101],[-125.23908742964434,50.87205304620434],[-125.24376412724735,50.87468531236765],[-125.24493720209728,50.877643535635244],[-125.2449494155574,50.8811305453394],[-125.23808867577031,50.88476413942611],[-125.23045869391085,50.886741200050366],[-125.22802626853952,50.89003007000464],[-125.22849688570874,50.89408375466591],[-125.23015811772929,50.8984099787035],[-125.23279731164325,50.90215515462001],[-125.23703257500618,50.90496643546129],[-125.24286142315057,50.90615268050567],[-125.24678508343214,50.90724612883113],[-125.24855920079409,50.90922651947855],[-125.24924859722277,50.911395512382384],[-125.2495241137991,50.914481134951444],[-125.24870993169031,50.918034868424144],[-125.24699583246993,50.92091629549987],[-125.24288667331372,50.92313606820911],[-125.23822594832937,50.92428044143338],[-125.23150416481957,50.92355937103171],[-125.22617842786279,50.923623249836226],[-125.22469122073596,50.925640936218336],[-125.22432228241443,50.92884785753953],[-125.2227204604353,50.93252669930713],[-125.21864597941943,50.93263424210343],[-125.21070455854004,50.93318824059881],[-125.2091136073355,50.93457353071411],[-125.20799243161443,50.93676587702367],[-125.20605324271237,50.938501150577345],[-125.20193839045481,50.940036841183776],[-125.197991121444,50.94174196334853],[-125.19634010319982,50.94405107532707],[-125.19519555079529,50.951441132503085],[-125.19544326590335,50.954294770229204],[-125.19717187091881,50.95799079552734],[-125.2019284439777,50.95971076467535],[-125.22889347955883,50.956020178271906],[-125.25159256673413,50.9583823358218],[-125.25145142360539,50.97868456624442],[-125.25886523586773,50.987173855725345],[-125.26440759143144,50.994311757991994],[-125.26448018408477,50.99682605023095],[-125.26440925156535,51.00026040150671],[-125.28103876895375,51.00286662380631],[-125.29160862753722,51.0072541285057],[-125.30182297782684,51.0126126988723],[-125.3093493670787,51.01850102294929],[-125.31640392524763,51.02365071357683],[-125.32096710107368,51.031325561316855],[-125.31881409621339,51.03773007506113],[-125.31055141083581,51.04223961881496],[-125.29755439261112,51.04449221263908],[-125.28721079360776,51.04410840631086],[-125.27592230450506,51.04565768759568],[-125.2666185939475,51.04800337547658],[-125.2487756831385,51.04782732957269],[-125.24205861416662,51.05243363906017],[-125.23462619485802,51.05869922168834],[-125.24247771539771,51.06304612174434],[-125.2487370372786,51.069577821034216],[-125.252296012367,51.0770890270262],[-125.25515577767824,51.08632334282253],[-125.2652133489247,51.08557230045165],[-125.27378492814607,51.08917515390336],[-125.29232307384031,51.09699537825284],[-125.29360801757298,51.103380117089436],[-125.28553272348739,51.10954199740659],[-125.28431708272419,51.11845073739086],[-125.28106469203261,51.1250383489191],[-125.28383704564322,51.13404468889999],[-125.29478817124085,51.138024965820506],[-125.30767419043939,51.1373169364831],[-125.32747258487397,51.138269479229876],[-125.31951772836938,51.14580405209159],[-125.31227658428256,51.15235644277702],[-125.30061237667744,51.155174080689854],[-125.2923314741757,51.159337769704216],[-125.28109912910138,51.167114349949614],[-125.28874609856219,51.174088908976465],[-125.29262498493968,51.18314077394559],[-125.29899809982642,51.190351163400635],[-125.31633183305563,51.193833698399],[-125.32848540106981,51.19808695108481],[-125.33344681258473,51.206334426243416],[-125.34109871235741,51.21301780888122],[-125.33037987467897,51.21303447087091],[-125.32423421779458,51.22044152611263],[-125.33088367094187,51.22713183193511],[-125.3345835638869,51.23561671131426],[-125.33323738347438,51.24218927923524],[-125.32862234247591,51.24867341009343],[-125.3208050311718,51.254375622172155],[-125.30271545209709,51.26094301259391],[-125.2907439367393,51.264104907237645],[-125.28742183756363,51.27263543502105],[-125.287168992978,51.27942958049995],[-125.27526527597777,51.28070503829794],[-125.25904344332228,51.28525689817973],[-125.24395975386986,51.2876887042947],[-125.23475816223562,51.29270961395288],[-125.22024012104579,51.296222141996815],[-125.21480014937612,51.30424370560333],[-125.20473621185393,51.31371883301223],[-125.20419125953096,51.3200611280624],[-125.20848624488487,51.32728841796474],[-125.21479781503827,51.33512867114934],[-125.22780930965877,51.34048067672947],[-125.23620261896039,51.352928640505084],[-125.24518264877985,51.36160903726104],[-125.25440979974954,51.36863634127172],[-125.25598227516524,51.36919198365195],[-125.25874652987572,51.370715313756726],[-125.26059632390115,51.37189431437459],[-125.26236456677414,51.37365677029126],[-125.26256315760344,51.37382187960916],[-125.26486372943066,51.3747187374156],[-125.266705096887,51.37555872146182],[-125.26799025729231,51.376117943161496],[-125.27020003485038,51.377300787717644],[-125.27196683652166,51.37831411828013],[-125.27463812225749,51.37943531207339],[-125.27729987802212,51.38026801824495],[-125.28033391404433,51.38121185983969],[-125.2818082786497,51.3816559853445],[-125.28455840183767,51.38237799634351],[-125.28711373736746,51.382696473806675],[-125.29060052042362,51.38323950777682],[-125.29837922638279,51.38436895723279],[-125.30231503069618,51.38473432464558],[-125.30523300460676,51.38487845486784],[-125.30862213548876,51.38525147373671],[-125.3115600495445,51.3859655570411],[-125.31532542286567,51.38713280111982],[-125.32000459675356,51.38782909812466],[-125.32036426665728,51.38782845264813],[-125.32550962238986,51.389096173566564],[-125.3275214399127,51.38924948897171],[-126.00006220311604,51.509830853323486],[-126.02980966965389,51.51532052005944],[-126.06966739243508,51.52175411735039],[-126.07881140539581,51.5233888008515],[-126.08229589078645,51.52271324712994],[-126.08725043303393,51.52210546488721],[-126.09100854554102,51.52171717433506],[-126.09843194352096,51.52105978750395],[-126.10503378993135,51.52011211756016],[-126.10862281988851,51.518578589690975],[-126.11102406480614,51.516359000404165],[-126.11170953348365,51.511794751688605],[-126.10964932264115,51.50710190304629],[-126.1062163653211,51.50229585841471],[-126.10349551610794,51.49948535318163],[-126.10288592285227,51.49628865877946],[-126.10292051151224,51.492575320513296],[-126.10277448989473,51.48909267682491],[-126.10296177025447,51.488633670299144],[-126.10198586839306,51.485548331623335],[-126.10000504932202,51.482286044428236],[-126.09883385669823,51.48034288589551],[-126.09838826283293,51.47891065537065],[-126.09704558710636,51.4759366265006],[-126.09743305557215,51.473937694331774],[-126.09911115673289,51.470635138187276],[-126.1019092600112,51.465276835699584],[-126.10358233632431,51.46242462867718],[-126.1056174378828,51.46003371247955],[-126.11076917881635,51.45696886184911],[-126.12121944257574,51.4542550092764],[-126.12854840856319,51.45274081153638],[-126.14046118899562,51.450208624460615],[-126.14366505149506,51.449474821103635],[-126.14962115585453,51.44846303646472],[-126.15456851721892,51.44716623072172],[-126.15567139986976,51.44665538261195],[-126.158792156716,51.4452335468267],[-126.16429756798682,51.44262682559873],[-126.16870880568831,51.44006746725292],[-126.1721002964412,51.43904929662237],[-126.17457706701116,51.437798510115826],[-126.17586333672102,51.437117213464184],[-126.1767827882168,51.43655146469163],[-126.17826957076485,51.435834482849],[-126.17853770340105,51.436035440571445],[-126.17999020998795,51.437299230439734],[-126.18327177326161,51.43788186477485],[-126.1864827388974,51.43686355284824],[-126.19033083009441,51.435847448831574],[-126.19370101694092,51.43672413182785],[-126.1977003212021,51.43896106449866],[-126.20177860985407,51.44263263086898],[-126.20568047251253,51.445393373010184],[-126.21103094799538,51.449927259954016],[-126.21302791470279,51.451588429656844],[-126.21668054519482,51.45188667919412],[-126.22125236268381,51.451785317453854],[-126.22371559735211,51.45225617882821],[-126.22571988468698,51.45294779084682],[-126.22845693302814,51.45358684566115],[-126.23210684856595,51.45434402514226],[-126.23457509604798,51.454354098061174],[-126.2369597559456,51.45338880820795],[-126.23908469527927,51.450708631837394],[-126.24192829492283,51.44975124219018],[-126.24640447693197,51.44982633154285],[-126.2496030993276,51.45022940027164],[-126.25443824304445,51.45133272265555],[-126.2576306412435,51.45202728178526],[-126.26375923955761,51.451478075724154],[-126.26889077999948,51.450014865647546],[-126.27255020788576,51.449623021950764],[-126.27794068423512,51.4500407746617],[-126.28031270992427,51.45067274443778],[-126.28249248422425,51.45262618443927],[-126.28586223681022,51.45406445031492],[-126.28796220414145,51.454352520174965],[-126.29353209236395,51.45482853891053],[-126.29554354275895,51.455063411637205],[-126.30119552541952,51.45724973330367],[-126.30283437872484,51.458282009000214],[-126.30565279791513,51.46057546711159],[-126.3073756311719,51.462124640235565],[-126.30884521420057,51.46144527817743],[-126.3137963669766,51.45923225007221],[-126.3162770793817,51.457924531983465],[-126.32103483764062,51.45695926707374],[-126.32596808186055,51.45783207931487],[-126.32961958350973,51.45852778560503],[-126.33610397477665,51.45952017861106],[-126.33874880247231,51.46066844351975],[-126.3422174204123,51.461648119409766],[-126.34669130896668,51.462511881366865],[-126.34953287672293,51.46126741694245],[-126.35229257842354,51.45870040794604],[-126.3563368581113,51.45500348022954],[-126.35955499140253,51.452437647128754],[-126.3614793166525,51.45112957452385],[-126.36265810779251,51.452790726806484],[-126.36319715441489,51.454502152685656],[-126.36500951328887,51.45696733020439],[-126.36728383368698,51.458970446739805],[-126.3691092583083,51.45971957035751],[-126.37148465176303,51.4598913346639],[-126.37550344526598,51.46099105019274],[-126.37713726503881,51.46247776245484],[-126.37667155532695,51.4644717908216],[-126.37509721644352,51.467442721080815],[-126.37297730218594,51.47068858607383],[-126.3712280441948,51.47262787527193],[-126.37084345156396,51.47531323753585],[-126.37404172268113,51.47606395194309],[-126.37669375838324,51.47624255028436],[-126.38236207880753,51.47631113581853],[-126.38666127471674,51.47671898894934],[-126.39077234918709,51.477645625851416],[-126.39552740395987,51.477424445445365],[-126.39873304251458,51.47663409806185],[-126.40303845251418,51.47573038697037],[-126.40624085705429,51.47510644137755],[-126.41145980732453,51.47443249313671],[-126.41657969486805,51.47444526146388],[-126.4208780685152,51.47484677203135],[-126.42361156788473,51.476739336463126],[-126.42369860743561,51.4778266821769],[-126.42459667305808,51.480800238291714],[-126.42870529929237,51.48246427455337],[-126.43217272717006,51.484409946520266],[-126.43436228601023,51.48595427964902],[-126.43646002366823,51.48767337697011],[-126.43947376765186,51.48842183517912],[-126.4430447763051,51.487399981630794],[-126.4480875879455,51.48517853978089],[-126.45010807009936,51.4836964134962],[-126.45048630395416,51.48050148815652],[-126.45086392428496,51.478045310563125],[-126.45115768767222,51.473649147465764],[-126.45290552183316,51.470680969817124],[-126.4556633420928,51.46679996575201],[-126.45824113012388,51.463148480848055],[-126.46274730307296,51.456812205209985],[-126.4673226022092,51.45550777311922],[-126.46997342402155,51.45522926977143],[-126.47317943366875,51.45340350978498],[-126.47547148788928,51.451349811529724],[-126.47822326549216,51.44861648820519],[-126.4779640220985,51.445298932684175],[-126.47842721150562,51.44284894136417],[-126.47862063904678,51.439933355900784],[-126.48054634759704,51.43805104386413],[-126.48375324547801,51.4360499213984],[-126.48449385813876,51.43291824776021],[-126.48724370681228,51.430572848376976],[-126.48879841139879,51.43012243525948],[-126.49227384722381,51.42904326548021],[-126.49091006939935,51.427153638116664],[-126.49200758282372,51.42647179829459],[-126.49475241065105,51.4256761882868],[-126.4979509718365,51.42522521344648],[-126.5003282196888,51.42528151597867],[-126.50178676420201,51.425739567398495],[-126.50461775776489,51.42620272925392],[-126.50837155414393,51.42317860244657],[-126.51056761435927,51.422437236165635],[-126.5126686199488,51.4220401302876],[-126.51532012957807,51.4214761262645],[-126.52016388057977,51.42056320727466],[-126.5239137772482,51.41908293353013],[-126.52793935955714,51.41742903445955],[-126.53058820884387,51.41623357304709],[-126.53561317238736,51.41572024574524],[-126.54018243396307,51.415841087074405],[-126.54346955336428,51.41624669297691],[-126.54912952131353,51.41739247713204],[-126.55278687012495,51.41688274339844],[-126.55598415966001,51.41614121961056],[-126.558544997542,51.41431275031572],[-126.55991597769446,51.412600603203174],[-126.5618373543153,51.41003581410877],[-126.56412573669694,51.408262964270726],[-126.5660511755444,51.405978008541226],[-126.56824095712432,51.40523946787966],[-126.57052233066727,51.40484206241506],[-126.57454517711435,51.40438475420892],[-126.57737451304203,51.40421556345375],[-126.58468115859047,51.404505222707265],[-126.58787571394294,51.40467777154235],[-126.59098112067342,51.40531239532174],[-126.59298974158055,51.406052525822794],[-126.59654907081773,51.40731462221616],[-126.60184433021921,51.40874243592099],[-126.60476624207199,51.409999232026365],[-126.60951648228304,51.412112317421595],[-126.61362569782995,51.41228260405205],[-126.61792031388019,51.41245677750512],[-126.61800864294734,51.41343185197294],[-126.61444498159617,51.41445985227095],[-126.61143087528681,51.41594142379198],[-126.60960303902341,51.41805382860577],[-126.60832156660352,51.42182435000949],[-126.60868519318021,51.42541997615349],[-126.61051122120506,51.42868013341412],[-126.61242703792652,51.43119253623301],[-126.61470946734835,51.43467846103841],[-126.61680919194329,51.43730366456562],[-126.61973590395013,51.43873673724823],[-126.62430355602817,51.44141786476417],[-126.62530796189932,51.442161800749545],[-126.63006035118336,51.44461728574469],[-126.63490341299972,51.445140633060966],[-126.64194271479623,51.44530920210825],[-126.64779152782641,51.445823513350554],[-126.65163345208336,51.446508924827285],[-126.65757583413925,51.44844930981581],[-126.66223838191726,51.45039236191124],[-126.6642506489564,51.45187504219121],[-126.66681060274185,51.454671628861256],[-126.66855075078739,51.4570713248585],[-126.67047230474708,51.45912885181207],[-126.67120399669257,51.46004227409776],[-126.67468148544116,51.463644964430046],[-126.67733345444752,51.46489752765298],[-126.68163318273274,51.46586697430169],[-126.68776061668753,51.46723303968377],[-126.69197328619423,51.470431322657234],[-126.69389743827891,51.473633902293884],[-126.69334956333945,51.4761458566278],[-126.69463247113643,51.4788867215363],[-126.69893297755934,51.47917001611702],[-126.70167642047184,51.47831168174194],[-126.70460060054243,51.476141202018006],[-126.70907508247286,51.471570152539606],[-126.70980408255308,51.46962466992829],[-126.70961734857924,51.46608278155527],[-126.70851403052906,51.46328707518386],[-126.7075034484085,51.45986248864427],[-126.7108852840003,51.45779553234968],[-126.7167304127561,51.45488158957541],[-126.72047174085452,51.45116784343446],[-126.72211250110009,51.448427162423215],[-126.72521504703197,51.44425335383723],[-126.72639844755128,51.44236371014747],[-126.72748905305944,51.43905703806182],[-126.72921762074661,51.43580066058814],[-126.72839154381829,51.433798756920844],[-126.72336028042015,51.43123354675422],[-126.71915398657264,51.42883399545984],[-126.71531104318377,51.42483765754505],[-126.71229259664561,51.42204046118924],[-126.70872145365202,51.41746884925942],[-126.70460631709041,51.414728764004174],[-126.70176804935298,51.41027633272666],[-126.69920648534567,51.40570934453731],[-126.69956893176146,51.40434276059478],[-126.70157234854041,51.40062329989818],[-126.70531224316245,51.397365939630504],[-126.7081380985529,51.39462409983289],[-126.71133036803661,51.39176375028226],[-126.71333248293736,51.388338002306185],[-126.7115916923829,51.383481599924544],[-126.71030463309766,51.379257378073866],[-126.71239884460309,51.373768722270256],[-126.7161307908761,51.36960040621382],[-126.71932149535881,51.36656472408467],[-126.7216873637327,51.364335326892636],[-126.72469475882477,51.36227850301845],[-126.72697387395192,51.36125070019535],[-126.72824619206091,51.358789723759884],[-126.7265099980348,51.35713966152156],[-126.72413721491051,51.35622184591335],[-126.72221675703805,51.35411115974096],[-126.72430897981026,51.35091227539059],[-126.72503565261304,51.34931541876434],[-126.72721907544212,51.346170860272075],[-126.72885448521713,51.343366960910096],[-126.73030930761043,51.34068087949022],[-126.73294914931128,51.338678323177255],[-126.73504348964828,51.33747984062288],[-126.74115076306786,51.33662037581626],[-126.74634652823936,51.335353102567076],[-126.74807503962475,51.33352897679736],[-126.74961843747984,51.33112367079372],[-126.75006776248584,51.327753859775115],[-126.75069616287801,51.32330057819363],[-126.75104995374126,51.319125687581675],[-126.75159000190284,51.31735759702101],[-126.75423027829395,51.31541281920998],[-126.7554142873387,51.314779912652334],[-126.75960340017009,51.31392321935145],[-126.76188105062884,51.31357520944626],[-126.76543119551096,51.3118075043625],[-126.76761565525888,51.311114960457765],[-126.76816023623692,51.309342251951264],[-126.76495973229856,51.305979598049014],[-126.76403838758388,51.302830959426565],[-126.76448550055822,51.29946548689637],[-126.76712776004342,51.29866100056573],[-126.7726838559538,51.29905523898194],[-126.77587476232985,51.29950975796892],[-126.78598560408408,51.29795375470102],[-126.79591527645326,51.297139840088114],[-126.80045987714226,51.29399497822265],[-126.80518188775648,51.289984602926815],[-126.80791548000713,51.28992921627296],[-126.80956148840727,51.29158048067969],[-126.8119369906707,51.29317711486001],[-126.81339952697081,51.29488798710277],[-126.81477693859945,51.297914601647356],[-126.81298669120665,51.30597263348216],[-126.81191570745935,51.31231809615156],[-126.81302088069779,51.31477041803517],[-126.81622640667375,51.31904732508303],[-126.81814271021359,51.31921752739717],[-126.8267161199408,51.32006419469949],[-126.83546536539814,51.319934918584174],[-126.84129252466076,51.31797801504314],[-126.84694238504957,51.31757177630016],[-126.85569366633665,51.3176675876455],[-126.85868978937395,51.31532604001258],[-126.86049355814168,51.311094811528505],[-126.86174508835538,51.30617594204793],[-126.8645603117464,51.304002213419274],[-126.86948780633385,51.30548274354341],[-126.87305255544757,51.30729562898772],[-126.87560330929725,51.30729276658849],[-126.88043781633024,51.30785170474991],[-126.88580796776529,51.30664559577951],[-126.88998872955246,51.304863953024274],[-126.89152777176025,51.303029475711554],[-126.8933261826985,51.298401006856906],[-126.8947762425217,51.297198947317305],[-126.89713034590797,51.29434013060587],[-126.90003118543177,51.29164466746915],[-126.9034780052409,51.28929825511755],[-126.90919499370086,51.28493715998722],[-126.91172460942116,51.282139988113265],[-126.91380539956016,51.27973351801054],[-126.91606153088627,51.276014312692276],[-126.91740572869412,51.272580746139525],[-126.91528969592187,51.2688738914058],[-126.91335275932259,51.26487712564269],[-126.91333564161602,51.26230742422888],[-126.91486767381194,51.25990419297799],[-126.9193126141421,51.25703625796568],[-126.9202991363653,51.254635680814495],[-126.92008977857456,51.25029609931205],[-126.92052140222823,51.24686588396983],[-126.92077910050962,51.24378215949624],[-126.92386669010405,51.242920357965055],[-126.92932320099074,51.24215909355685],[-126.93258566208326,51.240038147605624],[-126.9371318368563,51.239393427771724],[-126.94204563841451,51.23927011054877],[-126.94576878627448,51.237946765780656],[-126.95011764740333,51.2351389329798],[-126.95611451326056,51.23415185484562],[-126.9587639011064,51.235173668112864],[-126.96240880397173,51.23618693954692],[-126.96677207093566,51.235204222867246],[-126.9723287021403,51.23638598148244],[-126.97479026056223,51.23695283943184],[-126.97907431911575,51.23791012776559],[-126.98272815518256,51.23961790444238],[-126.98410008131192,51.240297838529656],[-126.98747598619376,51.24166110684224],[-126.99039190429984,51.24216417815907],[-126.99375758869864,51.24169752771628],[-126.99975400473684,51.24053308346887],[-127.00602359236606,51.239256462729536],[-127.00946481924719,51.23736228605576],[-127.01173054016078,51.23615693226481],[-127.01681819526338,51.23488353690307],[-127.01981364085783,51.234017104397914],[-127.02425248980492,51.231830652207584],[-127.03016118945543,51.23118495829745],[-127.03380792974268,51.23202647377085],[-127.0357304891619,51.23339205965736],[-127.03893531780194,51.23555330615573],[-127.03939096744908,51.23572419036263],[-127.04330585312265,51.23605567263232],[-127.04757672128852,51.23518009005165],[-127.0525755393496,51.234476564771306],[-127.05648153545614,51.23360797057624],[-127.06266273923633,51.232899115011094],[-127.06684592875237,51.232653213735595],[-127.07112025745013,51.23247194202348],[-127.07411560857967,51.23154008839235],[-127.0773884381632,51.23119133672951],[-127.08248292133723,51.231286314566425],[-127.08875207913967,51.23028395439185],[-127.09083157276997,51.22896598279101],[-127.08954907216895,51.22800477823862],[-127.08626688699749,51.22755603414916],[-127.0822559773902,51.22643126251782],[-127.08196955527872,51.225231483227894],[-127.08514376154305,51.224132069332356],[-127.0893284886212,51.22416869182708],[-127.09469254564999,51.22363764387879],[-127.10021824560398,51.221502690582895],[-127.1114035864951,51.2208876481304],[-127.11731336109233,51.220459569295954],[-127.12230806218805,51.21969910185366],[-127.12648525608752,51.21917101539832],[-127.13191392559125,51.216227397520626],[-127.13663627510796,51.21552793089903],[-127.14116496166504,51.21385212228648],[-127.14434110079262,51.21308825018079],[-127.14868835904304,51.211413411083115],[-127.15348969724563,51.209854416962],[-127.15748229572787,51.20892525948612],[-127.16447625970429,51.208148565059],[-127.1674651841174,51.207107066039526],[-127.16754407704971,51.20602151683532],[-127.16742849116837,51.203909365529874],[-127.17125233476683,51.20428448722938],[-127.17698992687662,51.20506266609196],[-127.1811783565195,51.20550155052081],[-127.18946354281073,51.20609025878061],[-127.19465388850841,51.20657869742091],[-127.19728641392172,51.206164743317586],[-127.1999051994304,51.2047811735566],[-127.20124466548293,51.202722034537935],[-127.20413153855941,51.20070362735419],[-127.20674763840805,51.19920767923934],[-127.21075357658047,51.19953013593497],[-127.21222392236537,51.200777561566824],[-127.21315664205748,51.20266431084902],[-127.21344834681148,51.20403100210756],[-127.21374510708917,51.20597451064325],[-127.21422166263709,51.20774549588225],[-127.21605775966162,51.20922070014846],[-127.21899196698064,51.21092084338673],[-127.22054466520173,51.211363114881],[-127.22574458296643,51.212485828351994],[-127.22758445598564,51.21430255852276],[-127.22897054866215,51.215836310660166],[-127.2321891392742,51.218678350250556],[-127.23502696487803,51.21986397533197],[-127.23675439585728,51.21996966091018],[-127.24149237393715,51.22028470806732],[-127.24922718999701,51.22047724611878],[-127.25714742974448,51.220950577830145],[-127.26369886664251,51.22091790750502],[-127.26785976133854,51.219180492044124],[-127.27048493559204,51.21825594398225],[-127.2703664857624,51.21624771663904],[-127.26962682343894,51.21556803346943],[-127.26870153881482,51.214379762569784],[-127.26742718989082,51.21432672427687],[-127.2664247235751,51.21410227270014],[-127.26568409119496,51.21313413118708],[-127.2671259033833,51.212152751320446],[-127.27068149256257,51.21270486060878],[-127.2735045468857,51.2129783534997],[-127.27858841059248,51.21231991127548],[-127.28159436213036,51.212474407882965],[-127.28432070027306,51.212344681440705],[-127.28778047740532,51.21267343034968],[-127.29215500019846,51.21316165669167],[-127.29689700702538,51.214052902515974],[-127.29999566502566,51.21449092528916],[-127.30309376065027,51.21475547071938],[-127.30536770661263,51.214743246624096],[-127.30709706921064,51.21473167542383],[-127.31009185273557,51.21431706726126],[-127.31381571830015,51.213841717915884],[-127.31598188401381,51.21285521055819],[-127.3178662409058,51.21106889168619],[-127.31967140765236,51.21014823981222],[-127.32176513798788,51.21013723118878],[-127.32596189718949,51.21108527893198],[-127.33080796811686,51.21271128200443],[-127.33372763356715,51.213205487339536],[-127.3366646234225,51.215133795795694],[-127.3410640317183,51.21715748130884],[-127.3449152762818,51.219082576367086],[-127.34746329123541,51.21911956204985],[-127.35063982428552,51.218702835112126],[-127.35589849618835,51.21747483824238],[-127.35779774844832,51.21671800210533],[-127.36097229181375,51.216069804974175],[-127.36279209891082,51.216288614254225],[-127.36681367620191,51.217403936279695],[-127.37138615013396,51.21903265487048],[-127.3754109264736,51.220264917729416],[-127.37870582420402,51.221499220567395],[-127.3832819327626,51.22301517100427],[-127.38395165454476,51.22506763948545],[-127.3839854318419,51.22718288567037],[-127.3840057572978,51.228436882992305],[-127.38338749953328,51.229585894796394],[-127.38705609284258,51.23116330175432],[-127.38978514262949,51.231319457340135],[-127.39506023310688,51.23111080919459],[-127.40069096014834,51.23044631647034],[-127.40368665000989,51.22996693917148],[-127.40594019802381,51.22863585845923],[-127.40901178912601,51.227364120508064],[-127.41129367887595,51.22769256301585],[-127.41321360305761,51.22824547152606],[-127.41531947851914,51.22903620695219],[-127.41669417344055,51.229657056990085],[-127.42206302419761,51.22961488181281],[-127.42642757879815,51.22930061330087],[-127.43170358200388,51.22926981840978],[-127.43826000967375,51.22962374529765],[-127.44226660365851,51.229712420208855],[-127.44754503157993,51.22967187641658],[-127.45281789560225,51.2293522496411],[-127.45935973185708,51.228902627422016],[-127.4581741516177,51.22862779753912],[-127.46316668147298,51.22791059984426],[-127.46796645925195,51.22673494551137],[-127.47359148992368,51.225891220968606],[-127.47733151480507,51.226268902058564],[-127.47979071139227,51.22636411538057],[-127.48368544933973,51.22541794214012],[-127.48391947632125,51.2234153091609],[-127.48262430015801,51.222114609887676],[-127.47932757342934,51.2209972527366],[-127.47502250640714,51.21953773153236],[-127.47063021224058,51.21808703096134],[-127.46869403524603,51.216727734682394],[-127.46649042347498,51.21548579597557],[-127.46602769814514,51.215091659180366],[-127.46417129332899,51.213047703826746],[-127.46287120712162,51.21162505325486],[-127.46038805395706,51.20998703604118],[-127.4564392922543,51.20789757922771],[-127.45513886835809,51.20647989677295],[-127.45512049272588,51.205455936562785],[-127.45647021024469,51.20458438423531],[-127.45892443689077,51.20456730347914],[-127.46147189031316,51.2046067631443],[-127.46282985295728,51.2043703136165],[-127.46483459786583,51.20435612291834],[-127.46719370344213,51.20417116736471],[-127.47181940916892,51.20344371304527],[-127.47410206628645,51.20400546176587],[-127.47731400033271,51.20552309825296],[-127.48098238266154,51.20715813561393],[-127.48327379791161,51.20805294458861],[-127.48556859660775,51.20917943796423],[-127.48885148218135,51.209612124424645],[-127.49239743922641,51.20952941743815],[-127.49484576324998,51.20916929922173],[-127.49737985107295,51.20840560622185],[-127.49972348750917,51.20736264550547],[-127.5019614870117,51.20539841125806],[-127.50339685466746,51.204306273293774],[-127.50581572293474,51.20240351423769],[-127.50787994495492,51.200901095438745],[-127.51013226866506,51.19979851832343],[-127.51158307327248,51.19961747910735],[-127.51395446541186,51.199883162158756],[-127.5169701616416,51.20065814507168],[-127.52097865678826,51.20102796042187],[-127.5242623865372,51.201517973726155],[-127.52844664238634,51.201656166336456],[-127.53008434306558,51.20164914954096],[-127.53406131615873,51.200246580823055],[-127.53705005655799,51.1997670689793],[-127.54178015305374,51.199845146983186],[-127.5453262569349,51.199815764019306],[-127.54923659624977,51.19972851868387],[-127.55186018235938,51.19908132835135],[-127.5554841404271,51.19836249082219],[-127.56011919287417,51.19815937165803],[-127.56439769138319,51.19840998478873],[-127.56721780623533,51.19844160001704],[-127.56894453393737,51.19837216078536],[-127.57381359125625,51.19633561274263],[-127.57731448633159,51.194135566181124],[-127.58101771688072,51.192849618536165],[-127.58418399153375,51.19207788044313],[-127.58789737224518,51.19136066086164],[-127.59441666007943,51.18999646080576],[-127.59802416383734,51.188536191536926],[-127.59925796533811,51.18670029890265],[-127.60172379147848,51.18725352640495],[-127.605026226241,51.18870739120069],[-127.6083332490932,51.19028175741856],[-127.6112653242897,51.19128835518365],[-127.61397960386986,51.19063615721728],[-127.61679940220485,51.19067045695579],[-127.61898854201951,51.19098987141146],[-127.62207104125947,51.190567910221525],[-127.62722230740354,51.18903904296601],[-127.6325590659448,51.18779180829999],[-127.63853715713557,51.18682797295972],[-127.64388975817577,51.18626524443072],[-127.65026508656587,51.18672619713108],[-127.65683118779057,51.18764084276041],[-127.66161060275392,51.18982459606671],[-127.66327389110688,51.191011853894366],[-127.66983517412928,51.18758677723008],[-127.67696577675903,51.185347749934536],[-127.6897745383358,51.18483796850796],[-127.7041998503823,51.18444434253508],[-127.78919233803991,51.163730139475156],[-128.51015794216093,51.162322942706254],[-129.14083181955903,50.990181987118206],[-129.21220035388623,50.866259600877015],[-129.18291478260645,50.7106223890779],[-128.45155323875647,50.271254373500746],[-128.1178202702018,50.084739180204835],[-127.79716106242684,49.933934326850284],[-127.22098503175606,49.728999418938585],[-126.78420523580463,49.48310633376914]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":43,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"1","REGION_NUMBER":1,"REGION_NAME":"Vancouver Island","REGION_NUMBER_NAME":"1- Vancouver Island","FEATURE_AREA_SQM":70801547213.1266,"FEATURE_LENGTH_M":1410309.4209,"OBJECTID":7,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-126.78420523580463,49.48310633376914],[-126.50121288240169,49.24957660622653],[-126.0005235751567,48.82976509921817],[-125.48211577015613,48.6859457570275],[-124.75727664957519,48.51690669238596],[-123.99975442452109,48.30523951946273],[-123.90248586353144,48.27980240134232],[-123.67320700265964,48.24082106282676],[-123.53989655275734,48.224764478027055],[-123.3815040248219,48.25443232801455],[-123.24498922448338,48.28226854504484],[-123.11436838665627,48.422789974488325],[-123.15599371999896,48.44996995892382],[-123.21038650077581,48.537605713480055],[-123.26468310036863,48.69260361760367],[-123.0050642751287,48.76707723957745],[-123.00382942644562,48.83068965804488],[-123.31161842820045,49.00029028909575],[-123.31462061244859,49.00247496556385],[-123.52431234971202,49.156904447890106],[-123.52577513320652,49.15774249751906],[-123.86200795058586,49.34875907279831],[-124.00023291633309,49.42419205607542],[-124.02306001004446,49.433344981319074],[-124.04814010502469,49.4435420692261],[-124.0843032742771,49.45804944481162],[-124.11960787039664,49.472846431950856],[-124.15812531472385,49.49032391543544],[-124.18315414257538,49.504035137095045],[-124.22117144266582,49.51892892989595],[-124.23685744800484,49.523944251761534],[-124.27008027551634,49.533132286377025],[-124.30229518791089,49.54153143494938],[-124.32344950339066,49.550089235383524],[-124.35804880373438,49.55808542319792],[-124.39241839418914,49.5682453403214],[-124.41737648032523,49.578363734533816],[-124.44627591774979,49.58959758821449],[-124.46611616652906,49.59752354289299],[-124.4911646276783,49.60711086197482],[-124.51540951184454,49.619625516831114],[-124.5517807950956,49.638167089979966],[-124.59131948222404,49.65776505664209],[-124.63383790547314,49.68122979025696],[-124.67751917735802,49.70430926117986],[-124.71511471019251,49.72837199333778],[-124.74619197390928,49.75223537280125],[-124.78168362111893,49.776784539819076],[-124.78550381109564,49.779830118162685],[-124.78732570889623,49.78128272641043],[-124.80030687172598,49.79029449813117],[-124.82125974472328,49.81032089993528],[-124.84360777894467,49.83746230898465],[-124.8794624004956,49.8798178852306],[-124.89258290620486,49.9010604776211],[-124.89640657192966,49.92372785349895],[-124.89435748326568,49.93704912217991],[-124.89337496515779,49.94368169167384],[-124.88246386410493,49.960853422640504],[-124.8739429178801,49.974624632173885],[-124.8635638646137,49.98832012664997],[-124.85831640672328,49.99571701581407],[-124.85737605682162,50.000405372218545],[-124.85740815472968,50.00246590876188],[-124.85819159864973,50.00572169716722],[-124.85830894736674,50.01218219807871],[-124.85869434713591,50.02298938443552],[-124.85999929262667,50.0349927922842],[-124.86105688422012,50.04853988199309],[-124.86283876233911,50.06219534886659],[-124.86333718814335,50.07357161345582],[-124.86614341759145,50.085445759646674],[-124.86749822750666,50.09109903192159],[-124.86754930267386,50.0912934199069],[-124.86940539418842,50.09760301795057],[-124.87161173739617,50.10616033966782],[-124.87435888529549,50.118894482333936],[-124.87588954983711,50.12883407136619],[-124.87953169334904,50.13715096257827],[-124.88710551856437,50.146693507095094],[-124.89865639277448,50.15860462932877],[-124.91085575231152,50.17233601964823],[-124.92035674407397,50.17968672287064],[-124.93033827841667,50.188173804660714],[-124.9421566024747,50.19916128748139],[-124.94932089350777,50.20561084064118],[-124.95623744141818,50.21195189278005],[-124.9639291158771,50.2212626557629],[-124.97167182919165,50.22907829130429],[-124.97934178233173,50.23712967240334],[-124.99132628898289,50.24679064043783],[-124.99864738921458,50.25123853707671],[-125.00166580772502,50.25430111806823],[-125.0031594575528,50.25527073981298],[-125.00645148715755,50.25739635205207],[-125.0126291665174,50.2623121344719],[-125.0265517979605,50.273842181131926],[-125.03501675899082,50.28096132656114],[-125.04006618683799,50.28708562477807],[-125.05393644709818,50.296439043053965],[-125.0643693010396,50.303194438432165],[-125.07585784965555,50.31273923829022],[-125.08931634111991,50.3230634150889],[-125.10267712086521,50.33224470851213],[-125.10831939149038,50.33613404594153],[-125.11467296282461,50.340350608245096],[-125.11995915226605,50.345309274176216],[-125.12016111418657,50.34504238989067],[-125.12487895320092,50.348193804720964],[-125.13449742251186,50.35386214482817],[-125.14288286554968,50.36017608823967],[-125.14800210825133,50.36457870946568],[-125.14897171076181,50.36760180635426],[-125.14790875022527,50.374761698083645],[-125.1478097379114,50.381509933474035],[-125.14811315984684,50.38631111891224],[-125.15321463723335,50.39334961009296],[-125.160472285647,50.397275176548646],[-125.16914831933524,50.400663275150926],[-125.1774013923086,50.4041637983269],[-125.18180082699604,50.406025629348115],[-125.18981050333396,50.40907913136638],[-125.19838559128773,50.41047199100208],[-125.20937422779646,50.41232229819627],[-125.21797834269593,50.416173788292305],[-125.22654782844407,50.422133266037996],[-125.23560719214721,50.4292321255004],[-125.24467871447031,50.43661554730118],[-125.25118384201528,50.441797300168794],[-125.26079938335974,50.44637600409574],[-125.26885432592545,50.449139686408785],[-125.27893045007036,50.45067027894477],[-125.28734243452834,50.450567930410784],[-125.29363954880681,50.448771740574536],[-125.29910933919903,50.44579172020905],[-125.30546347478683,50.445708674586456],[-125.31686684884777,50.44985502429081],[-125.3393151592094,50.46381012012161],[-125.36417484084994,50.47967850440401],[-125.37157815103092,50.48455356659827],[-125.37409064495897,50.48738404800617],[-125.37960891151475,50.489030641491695],[-125.38519270105299,50.49003713764805],[-125.38730113661846,50.4915565951824],[-125.39269251480371,50.492227510008156],[-125.39701451228534,50.49274018247244],[-125.3990106211186,50.49637927012844],[-125.40254297222258,50.50331002379063],[-125.40873604304889,50.506427224887325],[-125.41178621970111,50.50615758359294],[-125.41523284614499,50.50468034238647],[-125.42657880261879,50.51751366279115],[-125.41902802462101,50.525395063125686],[-125.41902306765917,50.52796914669105],[-125.42317855442468,50.53185866814298],[-125.42736165137691,50.53363171995925],[-125.43202761816188,50.536312836711964],[-125.43633620080928,50.539398484877815],[-125.44007225919744,50.54089362834749],[-125.44641489718809,50.54280762780628],[-125.42082907092151,50.551052528560746],[-125.4259287967797,50.55858651738944],[-125.42620316022679,50.564761259075325],[-125.44443218651264,50.57309394739782],[-125.44583447184836,50.575077446453875],[-125.44690699293572,50.577465248661696],[-125.44718273145034,50.580320185389354],[-125.44225027499691,50.58616552469248],[-125.43885743811468,50.58969996277189],[-125.43996024239975,50.59305933023044],[-125.44789305104024,50.59958306331534],[-125.4342579971718,50.60823343028387],[-125.43374240362117,50.61213256978433],[-125.42593618532263,50.612291940453986],[-125.42114723280939,50.61418967855642],[-125.41656397427,50.61436902787688],[-125.41565015709389,50.61941027277189],[-125.41397377706654,50.62326611783075],[-125.41221611211532,50.62466279750479],[-125.40886883558701,50.62648168296741],[-125.400619696212,50.629966483018464],[-125.3872251613555,50.63311425226454],[-125.37813843978122,50.63558100791185],[-125.3747399271492,50.638890947475765],[-125.3748642326331,50.64317676450312],[-125.37275002438135,50.64463312675192],[-125.36542869507748,50.646105406223406],[-125.36046658024256,50.64879903208103],[-125.36186440905577,50.655985312480446],[-125.34537247559186,50.66700879553856],[-125.33366235380085,50.669158318729814],[-125.33032242356232,50.67194557319329],[-125.32798490582957,50.67489204319924],[-125.33092687054776,50.67983810093933],[-125.33336602337691,50.68626492901997],[-125.3066275140965,50.69186519300165],[-125.30271579005135,50.69385918939626],[-125.2992977176406,50.6968734773697],[-125.2964448146642,50.70085575025644],[-125.28926853188723,50.704951419821356],[-125.28658193455242,50.70818777836372],[-125.2931556805995,50.7145136318041],[-125.29199784458129,50.71784339880214],[-125.29208733546176,50.72384836258314],[-125.29187854638388,50.728994665349255],[-125.27699197995022,50.73443934673918],[-125.27450826794986,50.73899257807273],[-125.27275696837938,50.743818845573145],[-125.26970573917512,50.747459313612076],[-125.26460295649363,50.75163806948243],[-125.25794723063461,50.755320663917026],[-125.25302208754961,50.75978522612066],[-125.24961442160026,50.76337106501338],[-125.24430370523471,50.76704106814006],[-125.2379185172427,50.77043345730422],[-125.22859902893812,50.77277623750712],[-125.22423981155083,50.774598672600625],[-125.22180994671217,50.77806465276624],[-125.22174573872026,50.78257832534707],[-125.21878703767686,50.786219608312585],[-125.21511827660376,50.79066253085484],[-125.21349304997653,50.79348777568797],[-125.21257773387644,50.79629664619204],[-125.20883212431819,50.79777471446998],[-125.20164980380812,50.79928994004908],[-125.19823562604034,50.7996680396957],[-125.19482829029249,50.80045195547951],[-125.19168055344436,50.80100579029608],[-125.18553783082848,50.80072771527765],[-125.17633868436974,50.80375132134899],[-125.16113018918608,50.80912860209673],[-125.15818684319316,50.81688318928948],[-125.15145652842993,50.81827564925389],[-125.14842985526023,50.823569938988726],[-125.14810002882577,50.82821103569747],[-125.15166866132651,50.8333139552245],[-125.15575470465963,50.84116228254985],[-125.16083037985028,50.84179321540695],[-125.1648025321783,50.8414047022766],[-125.16812183120147,50.84096685021753],[-125.17243134180013,50.840002370051764],[-125.17857369842663,50.8398163103734],[-125.18353416982022,50.83975996300913],[-125.18681083028493,50.840868889460666],[-125.18695724565849,50.842977827560745],[-125.18741870298189,50.846521596807406],[-125.18687819417431,50.84967300724958],[-125.18484293469908,50.85450204921478],[-125.18292123504307,50.8569820973374],[-125.18025609351672,50.858902623651176],[-125.17681977219854,50.871811175036584],[-125.19441184413778,50.87726937366231],[-125.21856776700692,50.87527140428913],[-125.22594222923996,50.870721935553306],[-125.22799195470375,50.86978125733317],[-125.23449268007926,50.86964958919101],[-125.23908742964434,50.87205304620434],[-125.24376412724735,50.87468531236765],[-125.24493720209728,50.877643535635244],[-125.2449494155574,50.8811305453394],[-125.23808867577031,50.88476413942611],[-125.23045869391085,50.886741200050366],[-125.22802626853952,50.89003007000464],[-125.22849688570874,50.89408375466591],[-125.23015811772929,50.8984099787035],[-125.23279731164325,50.90215515462001],[-125.23703257500618,50.90496643546129],[-125.24286142315057,50.90615268050567],[-125.24678508343214,50.90724612883113],[-125.24855920079409,50.90922651947855],[-125.24924859722277,50.911395512382384],[-125.2495241137991,50.914481134951444],[-125.24870993169031,50.918034868424144],[-125.24699583246993,50.92091629549987],[-125.24288667331372,50.92313606820911],[-125.23822594832937,50.92428044143338],[-125.23150416481957,50.92355937103171],[-125.22617842786279,50.923623249836226],[-125.22469122073596,50.925640936218336],[-125.22432228241443,50.92884785753953],[-125.2227204604353,50.93252669930713],[-125.21864597941943,50.93263424210343],[-125.21070455854004,50.93318824059881],[-125.2091136073355,50.93457353071411],[-125.20799243161443,50.93676587702367],[-125.20605324271237,50.938501150577345],[-125.20193839045481,50.940036841183776],[-125.197991121444,50.94174196334853],[-125.19634010319982,50.94405107532707],[-125.19519555079529,50.951441132503085],[-125.19544326590335,50.954294770229204],[-125.19717187091881,50.95799079552734],[-125.2019284439777,50.95971076467535],[-125.22889347955883,50.956020178271906],[-125.25159256673413,50.9583823358218],[-125.25145142360539,50.97868456624442],[-125.25886523586773,50.987173855725345],[-125.26440759143144,50.994311757991994],[-125.26448018408477,50.99682605023095],[-125.26440925156535,51.00026040150671],[-125.28103876895375,51.00286662380631],[-125.29160862753722,51.0072541285057],[-125.30182297782684,51.0126126988723],[-125.3093493670787,51.01850102294929],[-125.31640392524763,51.02365071357683],[-125.32096710107368,51.031325561316855],[-125.31881409621339,51.03773007506113],[-125.31055141083581,51.04223961881496],[-125.29755439261112,51.04449221263908],[-125.28721079360776,51.04410840631086],[-125.27592230450506,51.04565768759568],[-125.2666185939475,51.04800337547658],[-125.2487756831385,51.04782732957269],[-125.24205861416662,51.05243363906017],[-125.23462619485802,51.05869922168834],[-125.24247771539771,51.06304612174434],[-125.2487370372786,51.069577821034216],[-125.252296012367,51.0770890270262],[-125.25515577767824,51.08632334282253],[-125.2652133489247,51.08557230045165],[-125.27378492814607,51.08917515390336],[-125.29232307384031,51.09699537825284],[-125.29360801757298,51.103380117089436],[-125.28553272348739,51.10954199740659],[-125.28431708272419,51.11845073739086],[-125.28106469203261,51.1250383489191],[-125.28383704564322,51.13404468889999],[-125.29478817124085,51.138024965820506],[-125.30767419043939,51.1373169364831],[-125.32747258487397,51.138269479229876],[-125.31951772836938,51.14580405209159],[-125.31227658428256,51.15235644277702],[-125.30061237667744,51.155174080689854],[-125.2923314741757,51.159337769704216],[-125.28109912910138,51.167114349949614],[-125.28874609856219,51.174088908976465],[-125.29262498493968,51.18314077394559],[-125.29899809982642,51.190351163400635],[-125.31633183305563,51.193833698399],[-125.32848540106981,51.19808695108481],[-125.33344681258473,51.206334426243416],[-125.34109871235741,51.21301780888122],[-125.33037987467897,51.21303447087091],[-125.32423421779458,51.22044152611263],[-125.33088367094187,51.22713183193511],[-125.3345835638869,51.23561671131426],[-125.33323738347438,51.24218927923524],[-125.32862234247591,51.24867341009343],[-125.3208050311718,51.254375622172155],[-125.30271545209709,51.26094301259391],[-125.2907439367393,51.264104907237645],[-125.28742183756363,51.27263543502105],[-125.287168992978,51.27942958049995],[-125.27526527597777,51.28070503829794],[-125.25904344332228,51.28525689817973],[-125.24395975386986,51.2876887042947],[-125.23475816223562,51.29270961395288],[-125.22024012104579,51.296222141996815],[-125.21480014937612,51.30424370560333],[-125.20473621185393,51.31371883301223],[-125.20419125953096,51.3200611280624],[-125.20848624488487,51.32728841796474],[-125.21479781503827,51.33512867114934],[-125.22780930965877,51.34048067672947],[-125.23620261896039,51.352928640505084],[-125.24518264877985,51.36160903726104],[-125.25440979974954,51.36863634127172],[-125.25598227516524,51.36919198365195],[-125.25874652987572,51.370715313756726],[-125.26059632390115,51.37189431437459],[-125.26236456677414,51.37365677029126],[-125.26256315760344,51.37382187960916],[-125.26486372943066,51.3747187374156],[-125.266705096887,51.37555872146182],[-125.26799025729231,51.376117943161496],[-125.27020003485038,51.377300787717644],[-125.27196683652166,51.37831411828013],[-125.27463812225749,51.37943531207339],[-125.27729987802212,51.38026801824495],[-125.28033391404433,51.38121185983969],[-125.2818082786497,51.3816559853445],[-125.28455840183767,51.38237799634351],[-125.28711373736746,51.382696473806675],[-125.29060052042362,51.38323950777682],[-125.29837922638279,51.38436895723279],[-125.30231503069618,51.38473432464558],[-125.30523300460676,51.38487845486784],[-125.30862213548876,51.38525147373671],[-125.3115600495445,51.3859655570411],[-125.31532542286567,51.38713280111982],[-125.32000459675356,51.38782909812466],[-125.32036426665728,51.38782845264813],[-125.32550962238986,51.389096173566564],[-125.3275214399127,51.38924948897171],[-126.00006220311604,51.509830853323486],[-126.02980966965389,51.51532052005944],[-126.06966739243508,51.52175411735039],[-126.07881140539581,51.5233888008515],[-126.08229589078645,51.52271324712994],[-126.08725043303393,51.52210546488721],[-126.09100854554102,51.52171717433506],[-126.09843194352096,51.52105978750395],[-126.10503378993135,51.52011211756016],[-126.10862281988851,51.518578589690975],[-126.11102406480614,51.516359000404165],[-126.11170953348365,51.511794751688605],[-126.10964932264115,51.50710190304629],[-126.1062163653211,51.50229585841471],[-126.10349551610794,51.49948535318163],[-126.10288592285227,51.49628865877946],[-126.10292051151224,51.492575320513296],[-126.10277448989473,51.48909267682491],[-126.10296177025447,51.488633670299144],[-126.10198586839306,51.485548331623335],[-126.10000504932202,51.482286044428236],[-126.09883385669823,51.48034288589551],[-126.09838826283293,51.47891065537065],[-126.09704558710636,51.4759366265006],[-126.09743305557215,51.473937694331774],[-126.09911115673289,51.470635138187276],[-126.1019092600112,51.465276835699584],[-126.10358233632431,51.46242462867718],[-126.1056174378828,51.46003371247955],[-126.11076917881635,51.45696886184911],[-126.12121944257574,51.4542550092764],[-126.12854840856319,51.45274081153638],[-126.14046118899562,51.450208624460615],[-126.14366505149506,51.449474821103635],[-126.14962115585453,51.44846303646472],[-126.15456851721892,51.44716623072172],[-126.15567139986976,51.44665538261195],[-126.158792156716,51.4452335468267],[-126.16429756798682,51.44262682559873],[-126.16870880568831,51.44006746725292],[-126.1721002964412,51.43904929662237],[-126.17457706701116,51.437798510115826],[-126.17586333672102,51.437117213464184],[-126.1767827882168,51.43655146469163],[-126.17826957076485,51.435834482849],[-126.17853770340105,51.436035440571445],[-126.17999020998795,51.437299230439734],[-126.18327177326161,51.43788186477485],[-126.1864827388974,51.43686355284824],[-126.19033083009441,51.435847448831574],[-126.19370101694092,51.43672413182785],[-126.1977003212021,51.43896106449866],[-126.20177860985407,51.44263263086898],[-126.20568047251253,51.445393373010184],[-126.21103094799538,51.449927259954016],[-126.21302791470279,51.451588429656844],[-126.21668054519482,51.45188667919412],[-126.22125236268381,51.451785317453854],[-126.22371559735211,51.45225617882821],[-126.22571988468698,51.45294779084682],[-126.22845693302814,51.45358684566115],[-126.23210684856595,51.45434402514226],[-126.23457509604798,51.454354098061174],[-126.2369597559456,51.45338880820795],[-126.23908469527927,51.450708631837394],[-126.24192829492283,51.44975124219018],[-126.24640447693197,51.44982633154285],[-126.2496030993276,51.45022940027164],[-126.25443824304445,51.45133272265555],[-126.2576306412435,51.45202728178526],[-126.26375923955761,51.451478075724154],[-126.26889077999948,51.450014865647546],[-126.27255020788576,51.449623021950764],[-126.27794068423512,51.4500407746617],[-126.28031270992427,51.45067274443778],[-126.28249248422425,51.45262618443927],[-126.28586223681022,51.45406445031492],[-126.28796220414145,51.454352520174965],[-126.29353209236395,51.45482853891053],[-126.29554354275895,51.455063411637205],[-126.30119552541952,51.45724973330367],[-126.30283437872484,51.458282009000214],[-126.30565279791513,51.46057546711159],[-126.3073756311719,51.462124640235565],[-126.30884521420057,51.46144527817743],[-126.3137963669766,51.45923225007221],[-126.3162770793817,51.457924531983465],[-126.32103483764062,51.45695926707374],[-126.32596808186055,51.45783207931487],[-126.32961958350973,51.45852778560503],[-126.33610397477665,51.45952017861106],[-126.33874880247231,51.46066844351975],[-126.3422174204123,51.461648119409766],[-126.34669130896668,51.462511881366865],[-126.34953287672293,51.46126741694245],[-126.35229257842354,51.45870040794604],[-126.3563368581113,51.45500348022954],[-126.35955499140253,51.452437647128754],[-126.3614793166525,51.45112957452385],[-126.36265810779251,51.452790726806484],[-126.36319715441489,51.454502152685656],[-126.36500951328887,51.45696733020439],[-126.36728383368698,51.458970446739805],[-126.3691092583083,51.45971957035751],[-126.37148465176303,51.4598913346639],[-126.37550344526598,51.46099105019274],[-126.37713726503881,51.46247776245484],[-126.37667155532695,51.4644717908216],[-126.37509721644352,51.467442721080815],[-126.37297730218594,51.47068858607383],[-126.3712280441948,51.47262787527193],[-126.37084345156396,51.47531323753585],[-126.37404172268113,51.47606395194309],[-126.37669375838324,51.47624255028436],[-126.38236207880753,51.47631113581853],[-126.38666127471674,51.47671898894934],[-126.39077234918709,51.477645625851416],[-126.39552740395987,51.477424445445365],[-126.39873304251458,51.47663409806185],[-126.40303845251418,51.47573038697037],[-126.40624085705429,51.47510644137755],[-126.41145980732453,51.47443249313671],[-126.41657969486805,51.47444526146388],[-126.4208780685152,51.47484677203135],[-126.42361156788473,51.476739336463126],[-126.42369860743561,51.4778266821769],[-126.42459667305808,51.480800238291714],[-126.42870529929237,51.48246427455337],[-126.43217272717006,51.484409946520266],[-126.43436228601023,51.48595427964902],[-126.43646002366823,51.48767337697011],[-126.43947376765186,51.48842183517912],[-126.4430447763051,51.487399981630794],[-126.4480875879455,51.48517853978089],[-126.45010807009936,51.4836964134962],[-126.45048630395416,51.48050148815652],[-126.45086392428496,51.478045310563125],[-126.45115768767222,51.473649147465764],[-126.45290552183316,51.470680969817124],[-126.4556633420928,51.46679996575201],[-126.45824113012388,51.463148480848055],[-126.46274730307296,51.456812205209985],[-126.4673226022092,51.45550777311922],[-126.46997342402155,51.45522926977143],[-126.47317943366875,51.45340350978498],[-126.47547148788928,51.451349811529724],[-126.47822326549216,51.44861648820519],[-126.4779640220985,51.445298932684175],[-126.47842721150562,51.44284894136417],[-126.47862063904678,51.439933355900784],[-126.48054634759704,51.43805104386413],[-126.48375324547801,51.4360499213984],[-126.48449385813876,51.43291824776021],[-126.48724370681228,51.430572848376976],[-126.48879841139879,51.43012243525948],[-126.49227384722381,51.42904326548021],[-126.49091006939935,51.427153638116664],[-126.49200758282372,51.42647179829459],[-126.49475241065105,51.4256761882868],[-126.4979509718365,51.42522521344648],[-126.5003282196888,51.42528151597867],[-126.50178676420201,51.425739567398495],[-126.50461775776489,51.42620272925392],[-126.50837155414393,51.42317860244657],[-126.51056761435927,51.422437236165635],[-126.5126686199488,51.4220401302876],[-126.51532012957807,51.4214761262645],[-126.52016388057977,51.42056320727466],[-126.5239137772482,51.41908293353013],[-126.52793935955714,51.41742903445955],[-126.53058820884387,51.41623357304709],[-126.53561317238736,51.41572024574524],[-126.54018243396307,51.415841087074405],[-126.54346955336428,51.41624669297691],[-126.54912952131353,51.41739247713204],[-126.55278687012495,51.41688274339844],[-126.55598415966001,51.41614121961056],[-126.558544997542,51.41431275031572],[-126.55991597769446,51.412600603203174],[-126.5618373543153,51.41003581410877],[-126.56412573669694,51.408262964270726],[-126.5660511755444,51.405978008541226],[-126.56824095712432,51.40523946787966],[-126.57052233066727,51.40484206241506],[-126.57454517711435,51.40438475420892],[-126.57737451304203,51.40421556345375],[-126.58468115859047,51.404505222707265],[-126.58787571394294,51.40467777154235],[-126.59098112067342,51.40531239532174],[-126.59298974158055,51.406052525822794],[-126.59654907081773,51.40731462221616],[-126.60184433021921,51.40874243592099],[-126.60476624207199,51.409999232026365],[-126.60951648228304,51.412112317421595],[-126.61362569782995,51.41228260405205],[-126.61792031388019,51.41245677750512],[-126.61800864294734,51.41343185197294],[-126.61444498159617,51.41445985227095],[-126.61143087528681,51.41594142379198],[-126.60960303902341,51.41805382860577],[-126.60832156660352,51.42182435000949],[-126.60868519318021,51.42541997615349],[-126.61051122120506,51.42868013341412],[-126.61242703792652,51.43119253623301],[-126.61470946734835,51.43467846103841],[-126.61680919194329,51.43730366456562],[-126.61973590395013,51.43873673724823],[-126.62430355602817,51.44141786476417],[-126.62530796189932,51.442161800749545],[-126.63006035118336,51.44461728574469],[-126.63490341299972,51.445140633060966],[-126.64194271479623,51.44530920210825],[-126.64779152782641,51.445823513350554],[-126.65163345208336,51.446508924827285],[-126.65757583413925,51.44844930981581],[-126.66223838191726,51.45039236191124],[-126.6642506489564,51.45187504219121],[-126.66681060274185,51.454671628861256],[-126.66855075078739,51.4570713248585],[-126.67047230474708,51.45912885181207],[-126.67120399669257,51.46004227409776],[-126.67468148544116,51.463644964430046],[-126.67733345444752,51.46489752765298],[-126.68163318273274,51.46586697430169],[-126.68776061668753,51.46723303968377],[-126.69197328619423,51.470431322657234],[-126.69389743827891,51.473633902293884],[-126.69334956333945,51.4761458566278],[-126.69463247113643,51.4788867215363],[-126.69893297755934,51.47917001611702],[-126.70167642047184,51.47831168174194],[-126.70460060054243,51.476141202018006],[-126.70907508247286,51.471570152539606],[-126.70980408255308,51.46962466992829],[-126.70961734857924,51.46608278155527],[-126.70851403052906,51.46328707518386],[-126.7075034484085,51.45986248864427],[-126.7108852840003,51.45779553234968],[-126.7167304127561,51.45488158957541],[-126.72047174085452,51.45116784343446],[-126.72211250110009,51.448427162423215],[-126.72521504703197,51.44425335383723],[-126.72639844755128,51.44236371014747],[-126.72748905305944,51.43905703806182],[-126.72921762074661,51.43580066058814],[-126.72839154381829,51.433798756920844],[-126.72336028042015,51.43123354675422],[-126.71915398657264,51.42883399545984],[-126.71531104318377,51.42483765754505],[-126.71229259664561,51.42204046118924],[-126.70872145365202,51.41746884925942],[-126.70460631709041,51.414728764004174],[-126.70176804935298,51.41027633272666],[-126.69920648534567,51.40570934453731],[-126.69956893176146,51.40434276059478],[-126.70157234854041,51.40062329989818],[-126.70531224316245,51.397365939630504],[-126.7081380985529,51.39462409983289],[-126.71133036803661,51.39176375028226],[-126.71333248293736,51.388338002306185],[-126.7115916923829,51.383481599924544],[-126.71030463309766,51.379257378073866],[-126.71239884460309,51.373768722270256],[-126.7161307908761,51.36960040621382],[-126.71932149535881,51.36656472408467],[-126.7216873637327,51.364335326892636],[-126.72469475882477,51.36227850301845],[-126.72697387395192,51.36125070019535],[-126.72824619206091,51.358789723759884],[-126.7265099980348,51.35713966152156],[-126.72413721491051,51.35622184591335],[-126.72221675703805,51.35411115974096],[-126.72430897981026,51.35091227539059],[-126.72503565261304,51.34931541876434],[-126.72721907544212,51.346170860272075],[-126.72885448521713,51.343366960910096],[-126.73030930761043,51.34068087949022],[-126.73294914931128,51.338678323177255],[-126.73504348964828,51.33747984062288],[-126.74115076306786,51.33662037581626],[-126.74634652823936,51.335353102567076],[-126.74807503962475,51.33352897679736],[-126.74961843747984,51.33112367079372],[-126.75006776248584,51.327753859775115],[-126.75069616287801,51.32330057819363],[-126.75104995374126,51.319125687581675],[-126.75159000190284,51.31735759702101],[-126.75423027829395,51.31541281920998],[-126.7554142873387,51.314779912652334],[-126.75960340017009,51.31392321935145],[-126.76188105062884,51.31357520944626],[-126.76543119551096,51.3118075043625],[-126.76761565525888,51.311114960457765],[-126.76816023623692,51.309342251951264],[-126.76495973229856,51.305979598049014],[-126.76403838758388,51.302830959426565],[-126.76448550055822,51.29946548689637],[-126.76712776004342,51.29866100056573],[-126.7726838559538,51.29905523898194],[-126.77587476232985,51.29950975796892],[-126.78598560408408,51.29795375470102],[-126.79591527645326,51.297139840088114],[-126.80045987714226,51.29399497822265],[-126.80518188775648,51.289984602926815],[-126.80791548000713,51.28992921627296],[-126.80956148840727,51.29158048067969],[-126.8119369906707,51.29317711486001],[-126.81339952697081,51.29488798710277],[-126.81477693859945,51.297914601647356],[-126.81298669120665,51.30597263348216],[-126.81191570745935,51.31231809615156],[-126.81302088069779,51.31477041803517],[-126.81622640667375,51.31904732508303],[-126.81814271021359,51.31921752739717],[-126.8267161199408,51.32006419469949],[-126.83546536539814,51.319934918584174],[-126.84129252466076,51.31797801504314],[-126.84694238504957,51.31757177630016],[-126.85569366633665,51.3176675876455],[-126.85868978937395,51.31532604001258],[-126.86049355814168,51.311094811528505],[-126.86174508835538,51.30617594204793],[-126.8645603117464,51.304002213419274],[-126.86948780633385,51.30548274354341],[-126.87305255544757,51.30729562898772],[-126.87560330929725,51.30729276658849],[-126.88043781633024,51.30785170474991],[-126.88580796776529,51.30664559577951],[-126.88998872955246,51.304863953024274],[-126.89152777176025,51.303029475711554],[-126.8933261826985,51.298401006856906],[-126.8947762425217,51.297198947317305],[-126.89713034590797,51.29434013060587],[-126.90003118543177,51.29164466746915],[-126.9034780052409,51.28929825511755],[-126.90919499370086,51.28493715998722],[-126.91172460942116,51.282139988113265],[-126.91380539956016,51.27973351801054],[-126.91606153088627,51.276014312692276],[-126.91740572869412,51.272580746139525],[-126.91528969592187,51.2688738914058],[-126.91335275932259,51.26487712564269],[-126.91333564161602,51.26230742422888],[-126.91486767381194,51.25990419297799],[-126.9193126141421,51.25703625796568],[-126.9202991363653,51.254635680814495],[-126.92008977857456,51.25029609931205],[-126.92052140222823,51.24686588396983],[-126.92077910050962,51.24378215949624],[-126.92386669010405,51.242920357965055],[-126.92932320099074,51.24215909355685],[-126.93258566208326,51.240038147605624],[-126.9371318368563,51.239393427771724],[-126.94204563841451,51.23927011054877],[-126.94576878627448,51.237946765780656],[-126.95011764740333,51.2351389329798],[-126.95611451326056,51.23415185484562],[-126.9587639011064,51.235173668112864],[-126.96240880397173,51.23618693954692],[-126.96677207093566,51.235204222867246],[-126.9723287021403,51.23638598148244],[-126.97479026056223,51.23695283943184],[-126.97907431911575,51.23791012776559],[-126.98272815518256,51.23961790444238],[-126.98410008131192,51.240297838529656],[-126.98747598619376,51.24166110684224],[-126.99039190429984,51.24216417815907],[-126.99375758869864,51.24169752771628],[-126.99975400473684,51.24053308346887],[-127.00602359236606,51.239256462729536],[-127.00946481924719,51.23736228605576],[-127.01173054016078,51.23615693226481],[-127.01681819526338,51.23488353690307],[-127.01981364085783,51.234017104397914],[-127.02425248980492,51.231830652207584],[-127.03016118945543,51.23118495829745],[-127.03380792974268,51.23202647377085],[-127.0357304891619,51.23339205965736],[-127.03893531780194,51.23555330615573],[-127.03939096744908,51.23572419036263],[-127.04330585312265,51.23605567263232],[-127.04757672128852,51.23518009005165],[-127.0525755393496,51.234476564771306],[-127.05648153545614,51.23360797057624],[-127.06266273923633,51.232899115011094],[-127.06684592875237,51.232653213735595],[-127.07112025745013,51.23247194202348],[-127.07411560857967,51.23154008839235],[-127.0773884381632,51.23119133672951],[-127.08248292133723,51.231286314566425],[-127.08875207913967,51.23028395439185],[-127.09083157276997,51.22896598279101],[-127.08954907216895,51.22800477823862],[-127.08626688699749,51.22755603414916],[-127.0822559773902,51.22643126251782],[-127.08196955527872,51.225231483227894],[-127.08514376154305,51.224132069332356],[-127.0893284886212,51.22416869182708],[-127.09469254564999,51.22363764387879],[-127.10021824560398,51.221502690582895],[-127.1114035864951,51.2208876481304],[-127.11731336109233,51.220459569295954],[-127.12230806218805,51.21969910185366],[-127.12648525608752,51.21917101539832],[-127.13191392559125,51.216227397520626],[-127.13663627510796,51.21552793089903],[-127.14116496166504,51.21385212228648],[-127.14434110079262,51.21308825018079],[-127.14868835904304,51.211413411083115],[-127.15348969724563,51.209854416962],[-127.15748229572787,51.20892525948612],[-127.16447625970429,51.208148565059],[-127.1674651841174,51.207107066039526],[-127.16754407704971,51.20602151683532],[-127.16742849116837,51.203909365529874],[-127.17125233476683,51.20428448722938],[-127.17698992687662,51.20506266609196],[-127.1811783565195,51.20550155052081],[-127.18946354281073,51.20609025878061],[-127.19465388850841,51.20657869742091],[-127.19728641392172,51.206164743317586],[-127.1999051994304,51.2047811735566],[-127.20124466548293,51.202722034537935],[-127.20413153855941,51.20070362735419],[-127.20674763840805,51.19920767923934],[-127.21075357658047,51.19953013593497],[-127.21222392236537,51.200777561566824],[-127.21315664205748,51.20266431084902],[-127.21344834681148,51.20403100210756],[-127.21374510708917,51.20597451064325],[-127.21422166263709,51.20774549588225],[-127.21605775966162,51.20922070014846],[-127.21899196698064,51.21092084338673],[-127.22054466520173,51.211363114881],[-127.22574458296643,51.212485828351994],[-127.22758445598564,51.21430255852276],[-127.22897054866215,51.215836310660166],[-127.2321891392742,51.218678350250556],[-127.23502696487803,51.21986397533197],[-127.23675439585728,51.21996966091018],[-127.24149237393715,51.22028470806732],[-127.24922718999701,51.22047724611878],[-127.25714742974448,51.220950577830145],[-127.26369886664251,51.22091790750502],[-127.26785976133854,51.219180492044124],[-127.27048493559204,51.21825594398225],[-127.2703664857624,51.21624771663904],[-127.26962682343894,51.21556803346943],[-127.26870153881482,51.214379762569784],[-127.26742718989082,51.21432672427687],[-127.2664247235751,51.21410227270014],[-127.26568409119496,51.21313413118708],[-127.2671259033833,51.212152751320446],[-127.27068149256257,51.21270486060878],[-127.2735045468857,51.2129783534997],[-127.27858841059248,51.21231991127548],[-127.28159436213036,51.212474407882965],[-127.28432070027306,51.212344681440705],[-127.28778047740532,51.21267343034968],[-127.29215500019846,51.21316165669167],[-127.29689700702538,51.214052902515974],[-127.29999566502566,51.21449092528916],[-127.30309376065027,51.21475547071938],[-127.30536770661263,51.214743246624096],[-127.30709706921064,51.21473167542383],[-127.31009185273557,51.21431706726126],[-127.31381571830015,51.213841717915884],[-127.31598188401381,51.21285521055819],[-127.3178662409058,51.21106889168619],[-127.31967140765236,51.21014823981222],[-127.32176513798788,51.21013723118878],[-127.32596189718949,51.21108527893198],[-127.33080796811686,51.21271128200443],[-127.33372763356715,51.213205487339536],[-127.3366646234225,51.215133795795694],[-127.3410640317183,51.21715748130884],[-127.3449152762818,51.219082576367086],[-127.34746329123541,51.21911956204985],[-127.35063982428552,51.218702835112126],[-127.35589849618835,51.21747483824238],[-127.35779774844832,51.21671800210533],[-127.36097229181375,51.216069804974175],[-127.36279209891082,51.216288614254225],[-127.36681367620191,51.217403936279695],[-127.37138615013396,51.21903265487048],[-127.3754109264736,51.220264917729416],[-127.37870582420402,51.221499220567395],[-127.3832819327626,51.22301517100427],[-127.38395165454476,51.22506763948545],[-127.3839854318419,51.22718288567037],[-127.3840057572978,51.228436882992305],[-127.38338749953328,51.229585894796394],[-127.38705609284258,51.23116330175432],[-127.38978514262949,51.231319457340135],[-127.39506023310688,51.23111080919459],[-127.40069096014834,51.23044631647034],[-127.40368665000989,51.22996693917148],[-127.40594019802381,51.22863585845923],[-127.40901178912601,51.227364120508064],[-127.41129367887595,51.22769256301585],[-127.41321360305761,51.22824547152606],[-127.41531947851914,51.22903620695219],[-127.41669417344055,51.229657056990085],[-127.42206302419761,51.22961488181281],[-127.42642757879815,51.22930061330087],[-127.43170358200388,51.22926981840978],[-127.43826000967375,51.22962374529765],[-127.44226660365851,51.229712420208855],[-127.44754503157993,51.22967187641658],[-127.45281789560225,51.2293522496411],[-127.45935973185708,51.228902627422016],[-127.4581741516177,51.22862779753912],[-127.46316668147298,51.22791059984426],[-127.46796645925195,51.22673494551137],[-127.47359148992368,51.225891220968606],[-127.47733151480507,51.226268902058564],[-127.47979071139227,51.22636411538057],[-127.48368544933973,51.22541794214012],[-127.48391947632125,51.2234153091609],[-127.48262430015801,51.222114609887676],[-127.47932757342934,51.2209972527366],[-127.47502250640714,51.21953773153236],[-127.47063021224058,51.21808703096134],[-127.46869403524603,51.216727734682394],[-127.46649042347498,51.21548579597557],[-127.46602769814514,51.215091659180366],[-127.46417129332899,51.213047703826746],[-127.46287120712162,51.21162505325486],[-127.46038805395706,51.20998703604118],[-127.4564392922543,51.20789757922771],[-127.45513886835809,51.20647989677295],[-127.45512049272588,51.205455936562785],[-127.45647021024469,51.20458438423531],[-127.45892443689077,51.20456730347914],[-127.46147189031316,51.2046067631443],[-127.46282985295728,51.2043703136165],[-127.46483459786583,51.20435612291834],[-127.46719370344213,51.20417116736471],[-127.47181940916892,51.20344371304527],[-127.47410206628645,51.20400546176587],[-127.47731400033271,51.20552309825296],[-127.48098238266154,51.20715813561393],[-127.48327379791161,51.20805294458861],[-127.48556859660775,51.20917943796423],[-127.48885148218135,51.209612124424645],[-127.49239743922641,51.20952941743815],[-127.49484576324998,51.20916929922173],[-127.49737985107295,51.20840560622185],[-127.49972348750917,51.20736264550547],[-127.5019614870117,51.20539841125806],[-127.50339685466746,51.204306273293774],[-127.50581572293474,51.20240351423769],[-127.50787994495492,51.200901095438745],[-127.51013226866506,51.19979851832343],[-127.51158307327248,51.19961747910735],[-127.51395446541186,51.199883162158756],[-127.5169701616416,51.20065814507168],[-127.52097865678826,51.20102796042187],[-127.5242623865372,51.201517973726155],[-127.52844664238634,51.201656166336456],[-127.53008434306558,51.20164914954096],[-127.53406131615873,51.200246580823055],[-127.53705005655799,51.1997670689793],[-127.54178015305374,51.199845146983186],[-127.5453262569349,51.199815764019306],[-127.54923659624977,51.19972851868387],[-127.55186018235938,51.19908132835135],[-127.5554841404271,51.19836249082219],[-127.56011919287417,51.19815937165803],[-127.56439769138319,51.19840998478873],[-127.56721780623533,51.19844160001704],[-127.56894453393737,51.19837216078536],[-127.57381359125625,51.19633561274263],[-127.57731448633159,51.194135566181124],[-127.58101771688072,51.192849618536165],[-127.58418399153375,51.19207788044313],[-127.58789737224518,51.19136066086164],[-127.59441666007943,51.18999646080576],[-127.59802416383734,51.188536191536926],[-127.59925796533811,51.18670029890265],[-127.60172379147848,51.18725352640495],[-127.605026226241,51.18870739120069],[-127.6083332490932,51.19028175741856],[-127.6112653242897,51.19128835518365],[-127.61397960386986,51.19063615721728],[-127.61679940220485,51.19067045695579],[-127.61898854201951,51.19098987141146],[-127.62207104125947,51.190567910221525],[-127.62722230740354,51.18903904296601],[-127.6325590659448,51.18779180829999],[-127.63853715713557,51.18682797295972],[-127.64388975817577,51.18626524443072],[-127.65026508656587,51.18672619713108],[-127.65683118779057,51.18764084276041],[-127.66161060275392,51.18982459606671],[-127.66327389110688,51.191011853894366],[-127.66983517412928,51.18758677723008],[-127.67696577675903,51.185347749934536],[-127.6897745383358,51.18483796850796],[-127.7041998503823,51.18444434253508],[-127.78919233803991,51.163730139475156],[-128.51015794216093,51.162322942706254],[-129.14083181955903,50.990181987118206],[-129.21220035388623,50.866259600877015],[-129.18291478260645,50.7106223890779],[-128.45155323875647,50.271254373500746],[-128.1178202702018,50.084739180204835],[-127.79716106242684,49.933934326850284],[-127.22098503175606,49.728999418938585],[-126.78420523580463,49.48310633376914]]]}' - )), 4326)))); - -INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Lower Mainland','2','2- Lower Mainland','AR10100000','WHSE Admin Boundary',8 - , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.00000098564614,49.202448339532594],[-121.00014568560898,49.202476491248454],[-121.00033534342066,49.20253380075804],[-121.00060345069075,49.20262830204319],[-121.00100749787137,49.20272067027828],[-121.00120867010956,49.202782735764934],[-121.00130398333712,49.202806904940935],[-121.00153481777824,49.20286471676341],[-121.00225328792033,49.20308418211366],[-121.00249148086802,49.20316939404701],[-121.00258585860254,49.20320226207662],[-121.00291488323614,49.20325757321046],[-121.00304963328311,49.203282443638244],[-121.00311602465521,49.20328806119983],[-121.0034538512703,49.203325453084865],[-121.00376378516587,49.203366629290336],[-121.00408961770134,49.20340374213232],[-121.00455436353974,49.203474938857134],[-121.00475676299932,49.20350971394525],[-121.00505370764371,49.2035598661685],[-121.00514483297535,49.203575093945965],[-121.00548540530092,49.20363488494033],[-121.00607936509324,49.20376648904696],[-121.00637857213604,49.203843532238466],[-121.00689292905916,49.20399654117625],[-121.00693949315192,49.204010819206815],[-121.00709708027766,49.20406296498349],[-121.0072747577575,49.204119985472005],[-121.00748967814263,49.204182125693414],[-121.00761318225665,49.20421576241304],[-121.00789769312178,49.20430171110753],[-121.00818981686837,49.20439674644119],[-121.00851431817019,49.20451020068443],[-121.00890989797597,49.20466558665036],[-121.00922047599713,49.204796718978436],[-121.00976147576883,49.20505358646164],[-121.01001621122808,49.20519284690138],[-121.01018610313048,49.20529038500115],[-121.01033299874523,49.20537812247219],[-121.01046170497406,49.20544330698201],[-121.01059457531139,49.205517698415576],[-121.01074879274594,49.20560126302753],[-121.01091033106331,49.205680655125576],[-121.01158811637711,49.20611951336692],[-121.01167605104814,49.2061165411791],[-121.0117485410139,49.20611341266933],[-121.01203340145064,49.20610039116808],[-121.01239935954486,49.20608407034468],[-121.01257010035403,49.206077886976225],[-121.0128544788059,49.206069343516944],[-121.01311018768011,49.2060558168236],[-121.01342887410952,49.20604774233772],[-121.01370764151456,49.20604344826503],[-121.01407776112679,49.20603634665678],[-121.01437707146124,49.206032722625444],[-121.01452330678725,49.206030760940074],[-121.01482190214735,49.20601779977688],[-121.01524642220868,49.20601602863827],[-121.01533042542691,49.206017662689064],[-121.01617775604413,49.20601403559426],[-121.01772736813847,49.20615767184248],[-121.01798835479397,49.20620697073865],[-121.01848654059181,49.206319128205315],[-121.01934979377015,49.20659931020535],[-121.02008655175297,49.20695371234838],[-121.02031311056457,49.20708374756445],[-121.02080165988166,49.20739789681413],[-121.021040591117,49.2075727692942],[-121.02160807695581,49.20806398674091],[-121.02182456145451,49.20828800478073],[-121.02197206523998,49.20843440200442],[-121.02204371988987,49.20850313190501],[-121.0222263302391,49.20869062747717],[-121.02235270302229,49.20880981715358],[-121.02252839983572,49.20896569169706],[-121.0227158778187,49.209139876749134],[-121.02299392874222,49.20941467691397],[-121.0230312562011,49.20945108678896],[-121.02305922968225,49.209478600689174],[-121.02320442340613,49.20956651936228],[-121.02327726124004,49.20960823401419],[-121.02348273619363,49.20971078599858],[-121.02364431054654,49.20979015852108],[-121.02390764346548,49.20989791040119],[-121.0243926192414,49.21011770205381],[-121.02454564856394,49.21019667811966],[-121.02468170788289,49.21025767199628],[-121.02509393065353,49.210467041930386],[-121.02530777556268,49.21058774283352],[-121.02550326820835,49.21070335449841],[-121.0257578662077,49.210860612401376],[-121.02597617755207,49.21100378663221],[-121.0261633306186,49.21113311437013],[-121.02629386590814,49.21122965355837],[-121.02690477666484,49.211573116068735],[-121.02731768564709,49.21187245687573],[-121.02738147049486,49.211918550310685],[-121.02815674486232,49.21247598481226],[-121.0283420673325,49.21265456941461],[-121.0284956967385,49.212792215156384],[-121.0286340945267,49.21291167101643],[-121.02885325406858,49.213095200401675],[-121.02922022549791,49.21343865308497],[-121.02934860467369,49.21357146818752],[-121.02941878260641,49.21362207793121],[-121.02967223384377,49.213806340100575],[-121.03007371638316,49.214132488300955],[-121.0301674643734,49.21421971728371],[-121.03035200031485,49.21435765829266],[-121.03043150811231,49.21441743192989],[-121.0305345306452,49.214482251822744],[-121.03059118719513,49.21451475032356],[-121.0311269463611,49.214838636562135],[-121.03130496090856,49.21490917203376],[-121.03152076652098,49.215011893970775],[-121.03157448561288,49.215039744919906],[-121.03174467108933,49.21511922081384],[-121.03202277704591,49.215249908677265],[-121.03217040942161,49.21531536843634],[-121.03225280458248,49.21534821433722],[-121.03245586652298,49.21544161212692],[-121.03269741467696,49.21554467089379],[-121.03348105486167,49.215944834536494],[-121.03364590582922,49.2160420974708],[-121.03370085566429,49.21607452437529],[-121.03387179821118,49.21616304510321],[-121.03464413897159,49.21665290532209],[-121.03487114031655,49.21682775839383],[-121.0351114023887,49.217007165241576],[-121.03524023214877,49.21710390120606],[-121.0354100384484,49.217219155155796],[-121.03587929198952,49.21758703675512],[-121.03605164757153,49.21774272952294],[-121.03615132366683,49.217838959246045],[-121.03619721771332,49.21787575821577],[-121.03628606753664,49.21794470025347],[-121.03636777840615,49.218000067773744],[-121.03650574002852,49.21801150700521],[-121.03682141214007,49.21804832552309],[-121.0371897606191,49.2180906837207],[-121.037462564949,49.21812666144454],[-121.03776869784912,49.21817234891432],[-121.03800469549743,49.2181990138906],[-121.03821450491999,49.21822954236896],[-121.03848683070647,49.21827000671571],[-121.03869616063413,49.218305023476056],[-121.03907384514618,49.21824404430542],[-121.03936243318638,49.21821278541391],[-121.0401233481567,49.21816748075982],[-121.04039876498811,49.21816296921912],[-121.04166053840656,49.21823855425757],[-121.04196202620686,49.21827950437116],[-121.04323263712,49.21856187973013],[-121.04350356265789,49.21864765955713],[-121.04397218913017,49.2188130227995],[-121.04412377891461,49.21887385566418],[-121.04425961818703,49.218921277605176],[-121.0443604186363,49.218958903321074],[-121.04461838998658,49.21905338625878],[-121.04476236096686,49.21910512460067],[-121.0450723550448,49.219227380899156],[-121.04580653918696,49.2195772321996],[-121.04586314787987,49.219578149340315],[-121.04617856633313,49.219601393975694],[-121.04682536566406,49.2196754208017],[-121.04715335860868,49.21972574930434],[-121.04724969007187,49.219740889755705],[-121.04755020328673,49.2197910899693],[-121.04793238089594,49.21986505691387],[-121.04805520444712,49.219889589358175],[-121.04818144716442,49.219914287906306],[-121.04851580406299,49.21996941603337],[-121.04880156587413,49.21988415507216],[-121.04943680887166,49.21972839798514],[-121.04964571750607,49.2196869702233],[-121.0510554826298,49.21953550731023],[-121.05127600775091,49.219530132176196],[-121.0516217508779,49.21952684760736],[-121.05184128749485,49.21953073717543],[-121.05297724416444,49.219626345508054],[-121.05323585069193,49.21966670972048],[-121.05369084829756,49.21975076794255],[-121.0542135000898,49.21984497800969],[-121.05444541252481,49.21989397481313],[-121.05535022449634,49.220143043230564],[-121.0555937619403,49.220228092839406],[-121.05652129178979,49.22063495973802],[-121.05666750990258,49.22071414059594],[-121.05703111327921,49.22088195770328],[-121.0572460467624,49.22099360579696],[-121.05780805181985,49.22133152328466],[-121.05793050780753,49.221391837350204],[-121.05839993816008,49.221647115468336],[-121.05862742941775,49.22178612430209],[-121.05910295644853,49.22211329884795],[-121.05916459954672,49.22216377461087],[-121.05928464553637,49.22197248442985],[-121.05937399566996,49.221843502435604],[-121.05943186620426,49.221768059018174],[-121.05950480921163,49.22164790604131],[-121.05967226016546,49.22139872768475],[-121.05981852106734,49.22120328016017],[-121.05997917130365,49.220985656668034],[-121.06013667668378,49.220781413347225],[-121.06030744223078,49.22058172988942],[-121.06039391850247,49.22047968260367],[-121.0604288156982,49.220426300419504],[-121.06052910006089,49.22027526282816],[-121.06077156617232,49.21995086568709],[-121.06095842565956,49.21972908351857],[-121.06101143795411,49.219666941109665],[-121.06104049328805,49.21963613568441],[-121.06106711512717,49.21959590744895],[-121.06123510251228,49.219373818638076],[-121.06144291056304,49.21911662681697],[-121.06158040518825,49.2189388198126],[-121.06166687560642,49.21883677125135],[-121.06168909102449,49.21880564295622],[-121.06181387517847,49.218650368346005],[-121.06196504674594,49.21847318806091],[-121.06210110385649,49.21830884819826],[-121.06215066249959,49.21824683558697],[-121.06225886722895,49.21811814734481],[-121.06237240167046,49.21797166744237],[-121.06263084554122,49.21767449781555],[-121.06274226620778,49.21756400152716],[-121.06285778426599,49.21743114580295],[-121.06312193468747,49.21716102444915],[-121.0631622622871,49.21712114437723],[-121.06342924592319,49.21682436443184],[-121.06358433348088,49.21664256150596],[-121.06362390574465,49.21659362415012],[-121.06376791769814,49.216402859139784],[-121.06387317059793,49.21626953177471],[-121.06395542707877,49.216158545450845],[-121.06410633602364,49.21596752773746],[-121.06426531449854,49.21578139998284],[-121.06453819723875,49.2154936305732],[-121.06459930122611,49.21543608888878],[-121.06467574682652,49.21534739192008],[-121.06478250411543,49.215232177635684],[-121.06493909050491,49.2150684865066],[-121.06504632405202,49.21494878254967],[-121.06520139902317,49.214766976779714],[-121.06535551678923,49.2145941584489],[-121.06548694609707,49.214456949531794],[-121.0656647048072,49.21423953327038],[-121.06583320567748,49.214044528433924],[-121.06588572655198,49.213986881443816],[-121.06596845163712,49.213871403825095],[-121.06654706758361,49.21322884432097],[-121.06665925289997,49.21312712200404],[-121.06683501357031,49.21289607853927],[-121.06693680059993,49.21276286913853],[-121.06700465893194,49.21267405681715],[-121.06717819854808,49.21244771100791],[-121.06717736516651,49.212407071502334],[-121.06717167754434,49.212218177137004],[-121.0671643871259,49.21206051743236],[-121.06716385839316,49.2118715796235],[-121.06717689298353,49.2115389117582],[-121.06726618808429,49.21097373526353],[-121.06729869601428,49.210861883541064],[-121.06731805325923,49.210776767580555],[-121.06775949942246,49.20980789581313],[-121.06784829487637,49.20968368114587],[-121.06847449491252,49.20899676141976],[-121.06865972250996,49.208838049033396],[-121.06886992744283,49.208670609725445],[-121.06899703568392,49.20857380010629],[-121.06904200253229,49.20853864165199],[-121.0697409099559,49.20810486155043],[-121.07054438003655,49.20775396428952],[-121.07101035442415,49.20760443968814],[-121.07134497064918,49.20751092045606],[-121.07147223291794,49.207477273008095],[-121.07185923698832,49.20737572051466],[-121.07252537198977,49.20723394470763],[-121.07271954428347,49.207201102723175],[-121.07384972431296,49.20708957040482],[-121.07404103545596,49.20708366276845],[-121.07498494445036,49.20710852420472],[-121.07525914394444,49.20713092956331],[-121.07645046036795,49.20731737441542],[-121.07660296553632,49.20735339244399],[-121.0766549203607,49.20736563908477],[-121.07721708916152,49.20752358053865],[-121.07729016783316,49.207547222781116],[-121.07764667349849,49.207652061501456],[-121.07818295080803,49.20782741806924],[-121.07833157698273,49.207883836425985],[-121.07839215335093,49.207911985955846],[-121.07860996470404,49.20799637851283],[-121.07868424875353,49.20802486576301],[-121.07884565982438,49.208090330846275],[-121.07895409009338,49.20813701618279],[-121.07979037598173,49.20836696684551],[-121.07994385322692,49.20841007078138],[-121.08011992697789,49.208466892691774],[-121.08061288615514,49.20864590456788],[-121.08084172054333,49.2087398183119],[-121.0811029639945,49.20885212934392],[-121.08130438697846,49.20894534896978],[-121.08138288083084,49.208982769251165],[-121.08155781278772,49.209066603725375],[-121.08216150669226,49.20940038476045],[-121.0822594326663,49.209465190801716],[-121.08234042536023,49.20951146714947],[-121.08247420986683,49.20959454820613],[-121.08294291175605,49.2099215896879],[-121.08311555942636,49.210059460369116],[-121.08324991182646,49.21016963340862],[-121.0832749777259,49.21019248601588],[-121.08334005066453,49.21024310503095],[-121.08393750121436,49.21076577966276],[-121.08400829971923,49.210843447067],[-121.08409872378049,49.21093046446897],[-121.084390499488,49.211241245203645],[-121.08453535589197,49.211414492968416],[-121.08458995117371,49.21148295708523],[-121.08466857159938,49.21155167890563],[-121.08509693184247,49.211967938472604],[-121.08528085279204,49.21217792067335],[-121.08546600868316,49.212392478985784],[-121.08561152189539,49.21246227728402],[-121.08573785526015,49.21251851452582],[-121.08588726437246,49.21258397904486],[-121.08610416024575,49.21267733480466],[-121.08617674657526,49.21270573865749],[-121.08632742071251,49.212775491703596],[-121.08651826902302,49.21285525208853],[-121.0868576084353,49.21300917585599],[-121.08699673235982,49.21307444901182],[-121.08736425099616,49.21323811071355],[-121.08742658005791,49.21326604562477],[-121.08754902280072,49.213326614125776],[-121.08767852620326,49.21336918026287],[-121.08847609710178,49.21370639596965],[-121.088789996324,49.21387353396849],[-121.08889749960287,49.213929187844656],[-121.0890073792746,49.21396239423133],[-121.0893588015696,49.214067237592225],[-121.08942113294248,49.21409517131548],[-121.08957102748731,49.21415614109751],[-121.08962180541036,49.21417960505523],[-121.0898386867745,49.21427323142476],[-121.09013819400293,49.214381623179634],[-121.09017918838391,49.21440012957787],[-121.09043532715724,49.21451246147597],[-121.09075800904203,49.21466166016135],[-121.09101398982412,49.21479174816236],[-121.09115217486628,49.21486599473686],[-121.09132638578264,49.21494076468254],[-121.09199927571925,49.215271428094866],[-121.09211783591017,49.215336315846265],[-121.09225307850177,49.21540592457418],[-121.09238610817916,49.215480214041364],[-121.09250808831588,49.21554526618753],[-121.09274942032425,49.21568398375363],[-121.09284832310422,49.21573980957759],[-121.0930631587823,49.21586914465496],[-121.09357078163225,49.21621933195648],[-121.09363881930305,49.21627458959966],[-121.09372699090939,49.21633442759141],[-121.09394192824792,49.216495342978355],[-121.09404067450603,49.21656892511859],[-121.0940819285978,49.21660125466529],[-121.0941487616733,49.216651666221594],[-121.09423472051031,49.21671619368654],[-121.0943747525762,49.216821817631065],[-121.09454916976912,49.21695974645823],[-121.09465801929629,49.21705154385779],[-121.09471158970977,49.21709739907425],[-121.09498105332258,49.217295197401626],[-121.09507635447999,49.217368892090015],[-121.09529082662051,49.217534294013525],[-121.09557441869417,49.21777727657606],[-121.0956505658352,49.21783713335878],[-121.09579183989088,49.21794732264155],[-121.09583015102058,49.21797500621675],[-121.09594185304968,49.218039865312434],[-121.09617757327246,49.21818311785667],[-121.09639319041875,49.21832150264696],[-121.09663461732396,49.21849207135969],[-121.0969019727777,49.21864493658516],[-121.09712959391095,49.218783586483006],[-121.09729069355843,49.21888508544077],[-121.09740850829793,49.218940919187524],[-121.09760874176001,49.219029826920924],[-121.09777611000695,49.21910454394474],[-121.09788113547572,49.21915133211903],[-121.09852885543123,49.21939593972103],[-121.09877777555454,49.21947944634584],[-121.09879602277519,49.21948563598769],[-121.09902621245669,49.21958379855349],[-121.0992558994095,49.21968672844283],[-121.09931824427068,49.21971465620687],[-121.09943482775034,49.21976592036609],[-121.10021267385605,49.220080152598705],[-121.1002968356224,49.220113024070386],[-121.10055397869895,49.220216351994374],[-121.10073288189406,49.22029582004843],[-121.10090073292015,49.2203660515753],[-121.10106734942397,49.22043170657546],[-121.10130565442795,49.220534464243215],[-121.10157635651797,49.22065588204047],[-121.1019160907534,49.220823302834276],[-121.10195190636071,49.22084212792907],[-121.10202578060661,49.2208748096786],[-121.1021902154261,49.22094488357842],[-121.10225893023102,49.220977610181265],[-121.10251516385502,49.22108963391634],[-121.1026287786407,49.22113652783525],[-121.10281190079142,49.22122492626252],[-121.10355405098318,49.221552169186054],[-121.1037698910958,49.22167250281738],[-121.10392509203047,49.22176498876608],[-121.10426855183698,49.22194610357532],[-121.10444012417196,49.2220300221328],[-121.10468170954825,49.222150684916755],[-121.10476195471122,49.222188165163494],[-121.10497703826394,49.22229943955127],[-121.10555562035056,49.2226462981325],[-121.1062252777593,49.22310725200183],[-121.10637564796048,49.22321303828354],[-121.10653485833849,49.22333276802926],[-121.1067629551465,49.22351624625806],[-121.10724751759467,49.22374463956335],[-121.1074637159715,49.22382917245133],[-121.10760166452998,49.22388985076764],[-121.10776190536635,49.22395098215069],[-121.10815874649263,49.22411504694123],[-121.10840300954217,49.22422679971032],[-121.10852034838088,49.2242873887043],[-121.10871847275607,49.22438039957658],[-121.1089426006832,49.22448756455906],[-121.10931152379955,49.224655715779555],[-121.10953052358553,49.224762646505624],[-121.10973454552428,49.224864954045515],[-121.1100281973837,49.225013616579965],[-121.11024404100284,49.22513421497141],[-121.11037494278142,49.22521290197153],[-121.11059674255098,49.225342223513806],[-121.11102483278496,49.225601306762094],[-121.11116337265426,49.22568907258671],[-121.11137735895115,49.225827348206515],[-121.11150266045377,49.22591029035638],[-121.1116036389753,49.2259794345182],[-121.11172767478081,49.22605808761682],[-121.11186326981496,49.22614120773973],[-121.1121196639205,49.226284789468885],[-121.11233286233094,49.22641428481372],[-121.11245755562844,49.2264704119427],[-121.1126923151282,49.22659101488716],[-121.11291427948454,49.22670258314083],[-121.11306922416635,49.22678150913953],[-121.11330050649836,49.22690252117267],[-121.11334399586819,49.22693015259978],[-121.11341275670908,49.226962593450395],[-121.11348664874977,49.22699526704619],[-121.113550693017,49.227023542218376],[-121.11361774377009,49.22705590533788],[-121.11387571841377,49.22716826597191],[-121.11440166203583,49.22742865997062],[-121.1149333957087,49.22766676794924],[-121.11519511987542,49.22779253920306],[-121.11529457849286,49.22784356658923],[-121.1153864006873,49.22788551438188],[-121.11550004508511,49.22793239425835],[-121.11568198089846,49.228016202860935],[-121.11573078470099,49.22802603041556],[-121.11577271757133,49.22803582605521],[-121.11704393747756,49.22841627448061],[-121.11727294287495,49.22851010807931],[-121.11755355246353,49.228636160674334],[-121.11773269618425,49.22869757295848],[-121.11793504397143,49.22879977786816],[-121.11819855990072,49.228876002058605],[-121.11869447152309,49.229095549861505],[-121.11881062742286,49.229151281847855],[-121.11889605769005,49.22918869638869],[-121.11911182918008,49.22927770371246],[-121.11914987049921,49.2292918325093],[-121.11919773238851,49.229310628504074],[-121.1192409344433,49.229324711436796],[-121.11943724723695,49.229386330200576],[-121.11966938998737,49.22946676756586],[-121.11988581673309,49.22953323930674],[-121.11999404498235,49.22956633583723],[-121.12010177171655,49.22960420011225],[-121.12021436598017,49.2296284723909],[-121.12051687712035,49.22970984021077],[-121.1206520601666,49.229748108637075],[-121.1207239577348,49.22976715365137],[-121.12088736352042,49.22981487395172],[-121.12100588627953,49.22984814699892],[-121.1212505383123,49.22992407703956],[-121.12147457740309,49.22999991192931],[-121.12153400072258,49.230023181965144],[-121.12164096280773,49.23005199716989],[-121.12191213020577,49.230137291168724],[-121.12201691008705,49.230170518042314],[-121.12213198334143,49.230203922240605],[-121.12254644846364,49.23033207944036],[-121.12279187275702,49.230417053424915],[-121.12298037933348,49.23048761321549],[-121.12325137295716,49.23059094826215],[-121.12342787803236,49.23066124351022],[-121.1236124934672,49.23073613680486],[-121.12379242069149,49.23080658631259],[-121.1239296146091,49.23085847397342],[-121.12415867521935,49.23095201425735],[-121.1244184377384,49.23106413911257],[-121.12466274812415,49.23117612325196],[-121.1249078254205,49.23129717224327],[-121.12508371590262,49.2313897113442],[-121.12552946161962,49.23161287215969],[-121.12595834249387,49.23184935972005],[-121.12606669880559,49.23191403144702],[-121.12623227104152,49.232006669886495],[-121.12663157654794,49.23219755562703],[-121.12669174305212,49.232230157514344],[-121.12675069912879,49.23225792309321],[-121.12685873293022,49.23230932640068],[-121.12698003842628,49.232365281471374],[-121.12711163794823,49.232421413353435],[-121.12721846290664,49.23246797104109],[-121.12733507993265,49.232519482397066],[-121.12746249098787,49.23256641165343],[-121.12776890042821,49.23269275348656],[-121.12783393287603,49.23271177152747],[-121.12828848946859,49.23286765511255],[-121.12855950972953,49.2329709674735],[-121.12877407826713,49.23305538808462],[-121.12901764211843,49.23315830563189],[-121.12931919367914,49.23329824413611],[-121.12942897260535,49.23334944378345],[-121.12966413146407,49.23343422501422],[-121.13030750353633,49.233723531644124],[-121.13035708515129,49.23374239989082],[-121.1307619034028,49.23389743998203],[-121.13095123427782,49.23397675450948],[-121.13100721595436,49.23400015187812],[-121.13110171883457,49.234033175195066],[-121.13163473093257,49.23424418401301],[-121.13190559123919,49.23436553213419],[-121.13207725937,49.23444940514333],[-121.13227544409338,49.23454265863917],[-121.13249796471547,49.23464969572329],[-121.13269101908239,49.234742716543856],[-121.13282933007706,49.23481690745556],[-121.13289560800406,49.23484048021977],[-121.13310113920349,49.23492927342048],[-121.13321779814551,49.23498049987479],[-121.13334519362577,49.23502769138033],[-121.13362856743349,49.23514452977155],[-121.1337965227854,49.23521469953762],[-121.13396320888668,49.23528058956603],[-121.13410122606605,49.23534123293501],[-121.13414098762053,49.23535543358436],[-121.13427106618573,49.235393452811934],[-121.13466767687623,49.23551229015152],[-121.13487604052374,49.23557414271065],[-121.13514232409895,49.23559180633796],[-121.1353078231926,49.23560350190109],[-121.13582259953628,49.23561180630006],[-121.13611162318497,49.235625703789445],[-121.13637103543351,49.23564333378563],[-121.1366591469492,49.23566593052718],[-121.13702993749608,49.23570324694875],[-121.13718903520943,49.235710428526765],[-121.1374228712437,49.23570970634809],[-121.13787414690391,49.2357171013755],[-121.13820266548677,49.23573136832784],[-121.1384964114248,49.23574941489881],[-121.13857782057867,49.2357598547491],[-121.13865456822117,49.2357655734031],[-121.13881195566582,49.23577267539071],[-121.13906372719218,49.23578122117825],[-121.1392287573522,49.23579740027008],[-121.13942218808317,49.23580499991537],[-121.13967177860756,49.235817956646606],[-121.13988485656343,49.23583489504185],[-121.14005769941687,49.23584213310159],[-121.14030511002787,49.23585949176351],[-121.14050320293909,49.23587181053275],[-121.14071816231542,49.23587079805295],[-121.14094857762092,49.23586991390554],[-121.14126429476674,49.23587513184632],[-121.14149376932804,49.235883225645],[-121.142152522953,49.235911804663026],[-121.1424462424087,49.23593011882874],[-121.14273435865799,49.23595269933857],[-121.14299159426419,49.23597472583759],[-121.14327877064261,49.23600628401586],[-121.14383578982478,49.23608721003193],[-121.14407864152948,49.236131707640595],[-121.14433523899203,49.23617625586837],[-121.14457124860316,49.23622044393553],[-121.14485731893716,49.236279003425956],[-121.14508598733372,49.236327649887656],[-121.1452268121966,49.236361628850304],[-121.14532445079529,49.23638124797661],[-121.14614088989549,49.2365291170241],[-121.14638672783265,49.236577965803136],[-121.14651947042006,49.236607068122666],[-121.14689883029367,49.23664473593648],[-121.14722796077959,49.236686066967266],[-121.1474023511876,49.23671139669677],[-121.14750733350586,49.23672655413925],[-121.147609363181,49.23673707677218],[-121.14790731195292,49.23676430801298],[-121.14804146622734,49.23677993073905],[-121.14829649835224,49.23680664442711],[-121.1486020916377,49.236842959769625],[-121.14872595157404,49.236858406741895],[-121.14910548310694,49.23687803142323],[-121.14944024926515,49.23691480986861],[-121.14961339960854,49.236935578385804],[-121.14974628463278,49.23694691073535],[-121.15002287561626,49.236964721372146],[-121.1504682280424,49.23701240194662],[-121.15066666090408,49.23703796047325],[-121.15086553342098,49.23705931637867],[-121.1512881195231,49.237111038818526],[-121.15154690859559,49.2371511662154],[-121.151678415593,49.23717568660052],[-121.15214016688574,49.23721450829765],[-121.15246759526214,49.23725574632766],[-121.15259316933484,49.23727125684955],[-121.1528794216685,49.23731176860304],[-121.15329842448776,49.23738136456108],[-121.15339090615511,49.23740103279874],[-121.15349418116803,49.237416107437475],[-121.15372098713814,49.23743335580279],[-121.15404938684881,49.23746532248789],[-121.15431082941423,49.23749654098727],[-121.15452469295991,49.23752250657887],[-121.15476085564265,49.23754891527261],[-121.15487958703157,49.23756412434099],[-121.15505022965924,49.23757602938442],[-121.15583335236842,49.2376648038636],[-121.15613409950615,49.23771469115267],[-121.15618808363043,49.23772445266153],[-121.15628277702048,49.23773941838659],[-121.15633549025581,49.23774489165218],[-121.15673156497468,49.23778722688822],[-121.15698271798774,49.237818246815245],[-121.1571931618904,49.23784406227254],[-121.15771122955967,49.23791978045788],[-121.15798454775876,49.237968997947995],[-121.15839012284808,49.23805207036469],[-121.15867528440386,49.238119572285896],[-121.15912814570137,49.23824366671014],[-121.1594396693115,49.23833857603872],[-121.1597057918817,49.2384238306961],[-121.16019344011231,49.23859346219427],[-121.16029434799239,49.238631256747794],[-121.16055269316921,49.2387251811022],[-121.16066047326005,49.238763013325375],[-121.16090507474351,49.23885687874926],[-121.1613359332849,49.239043692535816],[-121.16153935901379,49.23913683479694],[-121.16175432244096,49.23923472573771],[-121.16237239507643,49.2395548328266],[-121.16256785306531,49.23967495869922],[-121.16270343460288,49.23972644117504],[-121.16345285044456,49.240089362167716],[-121.16406064118374,49.24035992984728],[-121.16430325123969,49.240489511740996],[-121.16492758520894,49.24088176450976],[-121.16507000094444,49.240983158253776],[-121.16516905780668,49.24108824443844],[-121.16588420441515,49.241549410281294],[-121.16608345106924,49.241732288011235],[-121.16629531911124,49.24194251552372],[-121.16636972485038,49.24202027864244],[-121.16651046523037,49.24212131519719],[-121.16654072237135,49.24214437758856],[-121.16689206476761,49.24225345338602],[-121.16703232465142,49.2423096411099],[-121.16726635442801,49.24238977285371],[-121.1673262554686,49.24240880595846],[-121.16861433741958,49.242915095601916],[-121.16865022609171,49.24293361955397],[-121.16870110440942,49.24295676688299],[-121.16906009517157,49.24312452703618],[-121.16911392823224,49.243152317218005],[-121.16952428684043,49.24338806192917],[-121.16968560005392,49.24348973625178],[-121.16992027369025,49.24364629090233],[-121.16998689100839,49.24368338614408],[-121.17014024922243,49.243762429772616],[-121.17097423060233,49.244288358975425],[-121.17118738617239,49.24445352644444],[-121.17134123549685,49.24457741621832],[-121.17142346250165,49.244646224642416],[-121.17146700399431,49.244673822906385],[-121.17169948196296,49.244835064713754],[-121.17191357768026,49.24499125136108],[-121.17221830083012,49.24523466379764],[-121.17232737010673,49.24532637881827],[-121.17241774703551,49.24539949364776],[-121.17269937499526,49.2455840802819],[-121.17296590219811,49.24568255949433],[-121.17305311670985,49.24572001583247],[-121.1735421128134,49.24584481393151],[-121.17380161788489,49.24591169113353],[-121.1739039538461,49.24593601263582],[-121.17405079781365,49.24597867359236],[-121.17418013329062,49.246007866555146],[-121.17431932752599,49.24604144307906],[-121.17456431088006,49.24609920621117],[-121.17479259147565,49.246152278620116],[-121.17493520800593,49.246186016566746],[-121.17514131495737,49.246220892091884],[-121.1754566624049,49.2462798369793],[-121.17551408291011,49.24628974191654],[-121.17563188011071,49.24631418557168],[-121.17571975254721,49.246328827607186],[-121.17576218175593,49.246334110020825],[-121.17609047230604,49.246384331671585],[-121.17615305653172,49.2463941787365],[-121.17633872948201,49.24641066330344],[-121.17655874310563,49.24642755703789],[-121.17671881780984,49.24642570093948],[-121.17704835813404,49.24643087011398],[-121.17726930616305,49.2464387831222],[-121.17750226155626,49.24644695337801],[-121.17772022445183,49.246450510000095],[-121.1779497575995,49.24645852613756],[-121.17839849907587,49.24647465427184],[-121.17866545598102,49.24646996376746],[-121.17871180387472,49.24647063013915],[-121.17936074659858,49.24646273024516],[-121.17965342914013,49.24645862882936],[-121.18018037083402,49.246466691590726],[-121.18045575675526,49.24648013613003],[-121.1806195939048,49.24649169444533],[-121.18087392024171,49.246509274903225],[-121.18094086139097,49.24651029293277],[-121.18122234361043,49.246514707421596],[-121.18147247087408,49.24652306861498],[-121.18177532443926,49.24653688999326],[-121.1819820588054,49.246549236611955],[-121.18219740808006,49.246561399663285],[-121.18241101640618,49.24657377312125],[-121.18283947904929,49.246603075946496],[-121.18310363746475,49.24662531244048],[-121.18332707698056,49.24664234535339],[-121.18399462622652,49.246720109935275],[-121.18420777033658,49.24673696052146],[-121.18485516645373,49.246810156479306],[-121.18503132660253,49.246835501465185],[-121.1851500627325,49.24685095537049],[-121.18536401549434,49.246876581110214],[-121.18565032669677,49.24691728369451],[-121.18636035064405,49.24704964051862],[-121.18664731839293,49.24711715301234],[-121.18680960779089,49.24716020608197],[-121.18706739918562,49.24722725318027],[-121.18743988789748,49.24733212299318],[-121.18803912988513,49.247521539947634],[-121.18875531895496,49.24779342112439],[-121.18902466733859,49.24791482528584],[-121.18907898379862,49.24793811562555],[-121.18932182753909,49.24804987404278],[-121.19001481605278,49.24842952090358],[-121.1902163244133,49.248558610575955],[-121.19046341573815,49.24872891206861],[-121.19089174186762,49.24904148696119],[-121.19127717339487,49.24935328239257],[-121.19143735055229,49.24949968545575],[-121.19174680486896,49.24986446027086],[-121.19191010455548,49.2500470943339],[-121.19247705465494,49.25068101783117],[-121.1925730987283,49.25084908545067],[-121.19268102997636,49.25103516563031],[-121.19272039989178,49.251103162123016],[-121.19286392242934,49.25129421238997],[-121.19290889165565,49.25135795709938],[-121.1930395978977,49.25153997375488],[-121.19319859776853,49.25178076013014],[-121.19333271479218,49.25191332258171],[-121.19346558760525,49.2520413098633],[-121.19390060920318,49.252538535834894],[-121.19396197365644,49.25259342181659],[-121.19431699908712,49.25290045475979],[-121.19441209432864,49.25297826893452],[-121.19445391605058,49.253006068602964],[-121.19489982509747,49.253332098897324],[-121.19510106923111,49.253497239461545],[-121.19527156957645,49.25364382433369],[-121.19541599662512,49.25377655426569],[-121.19563928185694,49.25397791141144],[-121.19570920683887,49.25403318671502],[-121.19589502448187,49.254197917371734],[-121.19604912166534,49.254303735134755],[-121.19632313763067,49.25454654699596],[-121.19640277820567,49.25462422941843],[-121.1964641474434,49.2546791227837],[-121.19653659680264,49.2547432420422],[-121.19656174249658,49.25476606674312],[-121.19659921357594,49.25480269228436],[-121.19668024982204,49.254866914454],[-121.19696379031237,49.25510083918661],[-121.19712400523272,49.255247232536504],[-121.19736670151359,49.255493714965716],[-121.1974905429536,49.25562609228328],[-121.1975433290723,49.25568087302325],[-121.19762639583872,49.25575871591044],[-121.19803491728864,49.2561473369003],[-121.1935443732081,49.25832895324734],[-121.19320027299709,49.25849655947991],[-121.18913854736616,49.26046879180888],[-121.18910653339859,49.260429304332135],[-121.18903252609502,49.26034706946477],[-121.18864215848386,49.25999925975956],[-121.18858424283985,49.25994424581837],[-121.18839764953836,49.25977043943087],[-121.18825415610131,49.2596287221179],[-121.18809410771566,49.25946427279419],[-121.18801665054306,49.259382171624324],[-121.18776465331021,49.25917584676735],[-121.18759166531767,49.259020119231714],[-121.187557155123,49.25898813323401],[-121.18749112094997,49.2589285252843],[-121.18734343730286,49.25882721297825],[-121.1870494349052,49.258561782397656],[-121.1870026009917,49.258516003320274],[-121.18679196868027,49.25834196783833],[-121.1864460056642,49.258030517922506],[-121.18641616563085,49.25800325042224],[-121.18638806617095,49.2579757809947],[-121.18609659992872,49.25776881613853],[-121.18589614925216,49.257612706523766],[-121.18579763556622,49.257534732499394],[-121.18559811863356,49.257369652050755],[-121.18550819382773,49.25729177264869],[-121.18511868607506,49.25695272590019],[-121.18494820470451,49.25680613470596],[-121.18474962766638,49.256632064321046],[-121.18426236490852,49.25612514283971],[-121.18411792991736,49.25594306174317],[-121.18408435732731,49.25590209527676],[-121.18395025425679,49.25576953111469],[-121.18381742686203,49.255641245508464],[-121.18347925028826,49.25527178372566],[-121.18334841644334,49.25510779143722],[-121.18324101126242,49.25496655025801],[-121.18312390104147,49.254802882186965],[-121.18294465577361,49.25452566000189],[-121.18291248492648,49.25447122425452],[-121.1826462856667,49.254120753042386],[-121.18250858128968,49.253907116594426],[-121.18232287616874,49.2538906428289],[-121.18172858552606,49.25381841256403],[-121.18159906828913,49.25380726393953],[-121.1814712625825,49.25379619167528],[-121.18135671090828,49.25378994265302],[-121.18112760765234,49.253777444243745],[-121.18090242313819,49.25376033043654],[-121.18083033713904,49.253759082816565],[-121.18054364769877,49.253754716117705],[-121.18027976098466,49.25374601894186],[-121.1799922938848,49.25373259503771],[-121.17981470975917,49.25372071089552],[-121.17956672328845,49.25370792391805],[-121.1789297174544,49.25371580414698],[-121.17866443130625,49.25372056283461],[-121.17837509592981,49.25372510198721],[-121.17788244800234,49.253717152228056],[-121.17733797069289,49.2536950455252],[-121.17712339579494,49.25369165031889],[-121.17690241327375,49.253683737098896],[-121.17666942167395,49.2536755656378],[-121.1765887496783,49.25367421057944],[-121.17645266921663,49.25367657311476],[-121.17571717042895,49.253656057547815],[-121.17534654403275,49.25363214209492],[-121.17504458165912,49.25360931468392],[-121.17499524119985,49.253604291259784],[-121.17444796909516,49.25355949221371],[-121.17377395916505,49.253476873262606],[-121.1735219337078,49.253436837359935],[-121.17326474538177,49.253396849282154],[-121.17301272173307,49.25335680320666],[-121.17264409903335,49.25329716357206],[-121.17237288305219,49.253243293091224],[-121.17219935303807,49.25320901623116],[-121.17199443210852,49.25317898004743],[-121.17135649895498,49.25304721825694],[-121.17111319435077,49.252989525131305],[-121.17088317292419,49.252936368805706],[-121.1707439605023,49.25290278820072],[-121.17049897593692,49.25284472965972],[-121.17026892692947,49.25279185036665],[-121.16993357355878,49.252710011678815],[-121.16967111007611,49.25263820454121],[-121.16947540806866,49.25258573520464],[-121.16888615441648,49.25243245953522],[-121.16872386227922,49.25238938883897],[-121.16845325543265,49.252313262257495],[-121.16803675607119,49.252185208978865],[-121.16779284627336,49.25210040849039],[-121.16752632315487,49.25200163012844],[-121.16737278140064,49.251940618749195],[-121.16721018517187,49.25188400032638],[-121.1668431326987,49.25174350005802],[-121.16657288389409,49.25163102036712],[-121.16629838054781,49.251509887300536],[-121.16604279060465,49.251388762825414],[-121.16577485770533,49.2512541116377],[-121.16553221538588,49.25112426579235],[-121.16523368755995,49.25095328375179],[-121.16514787425501,49.2509023527217],[-121.16510433161409,49.250874743189655],[-121.1646435590684,49.250561452015],[-121.16460172836706,49.250533919048955],[-121.16412519644896,49.25020694568977],[-121.16394575224189,49.250064703791516],[-121.16375181516652,49.2499130696282],[-121.16356348067488,49.249757184903814],[-121.16353023682157,49.24972975713708],[-121.16345770856319,49.24968336294779],[-121.16312332396667,49.249444242625756],[-121.16291017417252,49.24927906047923],[-121.16282748313,49.249214735610444],[-121.16265539994805,49.249117358942186],[-121.16242649664025,49.24898784185927],[-121.16217685945735,49.248826369576186],[-121.16173528338835,49.248675458389414],[-121.16156458876158,49.2486142358307],[-121.16113361953782,49.24847704129933],[-121.1608752479825,49.24838284137139],[-121.16027109933745,49.24812594928293],[-121.16004204489616,49.24801445304339],[-121.15995017069618,49.24797227517376],[-121.15969381399087,49.247842357401204],[-121.15961737134649,49.24780058366082],[-121.15938754640794,49.24768003000508],[-121.15896613244321,49.24743500043828],[-121.1587374118335,49.247287440110526],[-121.15862008446985,49.24720915112796],[-121.15843241742475,49.24708006056585],[-121.15831260646894,49.24699263835223],[-121.15825159613291,49.24695127719137],[-121.15765969732564,49.24652802570105],[-121.15748591862061,49.24638123504627],[-121.15716345318678,49.24606142786862],[-121.15713319815106,49.2460383629852],[-121.15697033182646,49.24596817408378],[-121.15674129595504,49.24585667047492],[-121.15659261801176,49.245782328346515],[-121.15592097995818,49.24549728660301],[-121.15566467727459,49.24536708042111],[-121.15511911351108,49.245043722015396],[-121.1550780953029,49.24502496281735],[-121.15495233232586,49.24497815297854],[-121.15476576302629,49.24492098581441],[-121.15469070936648,49.24491535564079],[-121.15429457477072,49.24487302235024],[-121.1539808088936,49.244832127610735],[-121.15364913106602,49.244781684675324],[-121.15348030951812,49.24475210668586],[-121.15321617596766,49.24472979762569],[-121.15294610794656,49.244698479301995],[-121.15266182402661,49.24467159076126],[-121.15246167640565,49.2446456718919],[-121.15227863982452,49.24462052244894],[-121.15219332046402,49.24461442865716],[-121.15197845754946,49.24459771616077],[-121.15135300598438,49.24452897817203],[-121.15110571306273,49.244493600935826],[-121.15084296169344,49.24445809579149],[-121.15042392781547,49.24438821269399],[-121.1503296923652,49.24436875244163],[-121.14986787144652,49.244329923418036],[-121.14959438587888,49.24429844265183],[-121.14907452103958,49.24422287857094],[-121.14893615121755,49.24419804714352],[-121.14885127369806,49.244187739524875],[-121.14862021378997,49.24416154927673],[-121.14852675105053,49.244151143542915],[-121.14844998833391,49.24414543198349],[-121.14839897982017,49.24414003196019],[-121.14812626778303,49.2441176035663],[-121.14789473879081,49.24409590129127],[-121.14759036864217,49.24406387257513],[-121.14751015494645,49.24405828458886],[-121.14696644400489,49.24401349967752],[-121.14671134298789,49.24398707046731],[-121.14640573424604,49.243950462833915],[-121.14619821981722,49.243929279231075],[-121.14593627552134,49.24390253988034],[-121.14587668320259,49.24389703161107],[-121.14557573783493,49.24386515136608],[-121.14523844274353,49.243819228099305],[-121.14501470098105,49.24378884896408],[-121.14491734853642,49.24378276644722],[-121.14438534922245,49.24372468418916],[-121.14409906477003,49.24368415029667],[-121.1437931296569,49.24363427692359],[-121.14346583310241,49.24357498678117],[-121.14321996213664,49.24352612288675],[-121.14306879160843,49.24349224459772],[-121.14231950372005,49.243358672149476],[-121.1422063942331,49.243338912955636],[-121.14190656646478,49.24328000825969],[-121.14161405488807,49.24321691283598],[-121.1414415250347,49.24317361597688],[-121.14138756684534,49.24316356882197],[-121.14122047000103,49.24313404873505],[-121.14087646988324,49.24311937503515],[-121.14079065414597,49.24311804904753],[-121.14057737223084,49.24311913882616],[-121.14034692094906,49.24312002217108],[-121.14007233643989,49.24311553139825],[-121.13979648241539,49.243106751598475],[-121.13952112831656,49.24309320324615],[-121.1392737086403,49.24307556462818],[-121.13910989386235,49.24306394349021],[-121.13895932566834,49.243057150780224],[-121.13875604032798,49.24304487607685],[-121.13856476128329,49.24303286302354],[-121.13836147615352,49.243020587576396],[-121.13809125598031,49.24300726717555],[-121.13792277859879,49.24299093210585],[-121.13772415599927,49.24298337657209],[-121.13746473236775,49.24296546269788],[-121.13734850235925,49.24295908965718],[-121.13724894066883,49.242957699815754],[-121.13702710348998,49.242958405465714],[-121.13673877390941,49.24295384513194],[-121.13646292147598,49.242945056809035],[-121.13621674378426,49.24293197789531],[-121.13616181587737,49.24293118544232],[-121.13588646388038,49.2429176278126],[-121.13518503951512,49.24285240994596],[-121.13473369494419,49.24284500375176],[-121.13443087952484,49.2428310502954],[-121.13420355400126,49.242818529350735],[-121.13388796419316,49.24279525563073],[-121.13384380279132,49.242790157802865],[-121.13356718332344,49.242772305852085],[-121.13327731729964,49.242749632795814],[-121.13295921978988,49.242717501194925],[-121.13268575518872,49.24268597750428],[-121.13216596515326,49.24261005344361],[-121.13189435704989,49.242560857188984],[-121.13162667302961,49.242507038068055],[-121.13131406072088,49.24243906316701],[-121.13124682988278,49.242424468636735],[-121.1309479657927,49.242356545500485],[-121.1304492975094,49.24222687870081],[-121.13016429774044,49.2421415457738],[-121.12995983359609,49.24207507158968],[-121.12985502022926,49.24204186200937],[-121.12958577679481,49.241970203604225],[-121.12932732994584,49.24189396242824],[-121.12879436075069,49.24171452559235],[-121.12854980914467,49.24162058779791],[-121.12832758927144,49.24152681109738],[-121.12811171301713,49.2414381111855],[-121.12792362594016,49.24136307207344],[-121.127744596016,49.241283642686206],[-121.12762795652777,49.24123213245774],[-121.12750223150074,49.24118529036555],[-121.12721715459008,49.24106808123199],[-121.12706243268948,49.24100273200008],[-121.12688246194482,49.240932280056604],[-121.12646030732097,49.240745446841714],[-121.1261920787343,49.24061518470563],[-121.12604641634663,49.24054544415771],[-121.12592603446721,49.24048050981812],[-121.1257671285249,49.24040593858306],[-121.12570179017375,49.24037338272617],[-121.12560011045034,49.240326777958686],[-121.12537008599953,49.24024194263144],[-121.12511274758143,49.24013895536191],[-121.12500248535005,49.2400922413059],[-121.12495632181293,49.24007351662837],[-121.1248917805812,49.24004973824289],[-121.12448689808772,49.239894964900124],[-121.12424330989084,49.23979202919818],[-121.12397214343538,49.23965711705117],[-121.12384300466015,49.239610115725725],[-121.12314360621164,49.23929738088183],[-121.12294353071762,49.23922206909594],[-121.1228973688756,49.23920334351288],[-121.12285760746518,49.23918913880326],[-121.1224906406999,49.23906624194845],[-121.1222341107445,49.23897202564152],[-121.1218613978032,49.23882208095729],[-121.12174474173922,49.23877084252375],[-121.12161905953849,49.238723706077884],[-121.12133398235589,49.23860676829037],[-121.12113019747424,49.23851775230007],[-121.12091263815279,49.23842896010822],[-121.12064007207748,49.23830750765836],[-121.12043673203995,49.23821428819373],[-121.12022014967205,49.238116237321215],[-121.11981489220113,49.23791631903748],[-121.11976967791475,49.237888613184],[-121.11923503284567,49.23762785298981],[-121.11875154170303,49.23735474720569],[-121.11860905858398,49.23727132709892],[-121.11834305546186,49.23713663283425],[-121.11826448426126,49.2370992410621],[-121.1181500189397,49.23704359566061],[-121.11794872317468,49.236963707388],[-121.11777049170175,49.23689332632094],[-121.11758757194981,49.236818501260494],[-121.11753799318481,49.236799618255176],[-121.11749478469339,49.23678553480037],[-121.11718509731068,49.23669030336247],[-121.1170601603467,49.2366525052089],[-121.11689844516442,49.23660485714881],[-121.11652245886508,49.23648631959811],[-121.11638991595044,49.236439145053446],[-121.11628981366034,49.23641036576091],[-121.11616738421294,49.236381413221],[-121.1158648372393,49.23630003402916],[-121.11559270014315,49.23622369553136],[-121.11527269657618,49.23612855881842],[-121.11504052814381,49.236048112806216],[-121.11482407797503,49.235981632002726],[-121.11471583846105,49.23594853060827],[-121.11452808700554,49.23588701341861],[-121.11434331470697,49.235829853174785],[-121.11394988312907,49.23569755046823],[-121.113693389107,49.23560331337656],[-121.11338947488548,49.23548605721828],[-121.11316433740302,49.23538788213633],[-121.11291392497124,49.235284897077555],[-121.11280713815623,49.23523803810301],[-121.11255080165917,49.23512604122491],[-121.11232788088229,49.23502317417429],[-121.11202084359729,49.23491930474909],[-121.11170293165351,49.23478816416549],[-121.1114045882777,49.234715984011075],[-121.11113420778415,49.23463943336923],[-121.11043034383582,49.23440308941117],[-121.11039448498678,49.23438454586422],[-121.11035473152592,49.23437033644393],[-121.11019052732992,49.234313822358],[-121.10966746088808,49.23410710631652],[-121.10943765020174,49.234004479198525],[-121.10937528007621,49.23397655789019],[-121.10918867393234,49.23388801698975],[-121.10898835425529,49.233799132761526],[-121.1086654808734,49.23364999296415],[-121.10853826939933,49.23358500620444],[-121.10813636858775,49.23340295508253],[-121.10791125230621,49.23330476872959],[-121.10748226592754,49.23308624535673],[-121.10730108832318,49.23301148011812],[-121.10695392955826,49.23284825801251],[-121.10675751348333,49.23275503547528],[-121.10649796849424,49.23262483298191],[-121.10629952407645,49.232518273210864],[-121.10613351601708,49.232430093682716],[-121.1059704852912,49.232346280398524],[-121.10592775728213,49.23232771177074],[-121.10582830030155,49.23227666711812],[-121.1057364771116,49.23223472044914],[-121.10492266795463,49.231803033053055],[-121.10478757302509,49.231715128174436],[-121.10469324923677,49.23166432460937],[-121.10427866674296,49.23142359765389],[-121.10411627177365,49.23131754389921],[-121.10392739858231,49.231201823761545],[-121.10369722326861,49.231054056476275],[-121.1035451242356,49.23094818098815],[-121.1034615991121,49.230892796697795],[-121.10311062819629,49.23068455701943],[-121.10297798248222,49.23060607141884],[-121.10289990875249,49.23056417866524],[-121.1028525271741,49.23054087707403],[-121.10280638206044,49.23052214265033],[-121.10248250082019,49.23035038095553],[-121.10220857765039,49.23024263605787],[-121.10214498152567,49.23021013423381],[-121.10198149070149,49.230130813041534],[-121.10191694660027,49.230107289922515],[-121.10170243955781,49.2300228245073],[-121.10156448049256,49.22996213921272],[-121.10140251662187,49.229900921393956],[-121.10100564993095,49.22973683319133],[-121.10076308614865,49.22962514240617],[-121.10053179257216,49.22950439131921],[-121.10032539907192,49.22942451419597],[-121.09954890554869,49.22904720192166],[-121.09929300944096,49.22889910150118],[-121.09883192067153,49.22859477625501],[-121.09862283346911,49.22844287641795],[-121.09843635796389,49.228304699062804],[-121.0981482865476,49.228070838395986],[-121.09809299065626,49.22802489883192],[-121.09782718854272,49.22784053495595],[-121.09773664661382,49.22780287011714],[-121.09721174227876,49.22753340721015],[-121.09713709963115,49.2274916658003],[-121.09708503816385,49.22746391692429],[-121.09670103087689,49.2272597967805],[-121.09650323509544,49.22718002304317],[-121.09631668079003,49.227091458968204],[-121.09615052178488,49.22702130787634],[-121.09594167555633,49.22693228748509],[-121.09586187458085,49.226890589873676],[-121.09562471547753,49.226760537422976],[-121.09520307295985,49.22658739342761],[-121.09514759206928,49.22655949678372],[-121.09502539054094,49.22651248426787],[-121.09484647316906,49.22643300749845],[-121.0946786093756,49.22636276719817],[-121.09455517334524,49.22631118682426],[-121.09435345944694,49.2262360299751],[-121.09404471357878,49.22610044839932],[-121.09368280119271,49.22596386036249],[-121.09345559669613,49.22586976692241],[-121.08243471677596,49.232222280060256],[-121.07416112920697,49.23548441509927],[-121.0732510636299,49.2358798032891],[-121.07234208207205,49.236216310237715],[-121.07070983012869,49.236775162018816],[-121.0687002997137,49.238117157937765],[-121.0681002848731,49.2389259273005],[-121.06752018033873,49.23974125271017],[-121.0669400563906,49.24055656501473],[-121.06634000899416,49.241365043267955],[-121.06576650779105,49.24218234855902],[-121.06529502003255,49.24302631894089],[-121.06499708083915,49.24390332650994],[-121.06489823627692,49.24479959261329],[-121.06503522417556,49.24569313488278],[-121.06537409949004,49.246563775727026],[-121.06582704144542,49.247412859603735],[-121.06644495262029,49.24821451257681],[-121.06722230891847,49.24895607353783],[-121.0680777466793,49.24965890542517],[-121.06896769162562,49.25034470427772],[-121.0698816690598,49.25101495684861],[-121.06991221150379,49.251034966450796],[-121.06993149283764,49.25104768536643],[-121.0699507436253,49.25106069158342],[-121.06997002402548,49.25107341947005],[-121.0699892757895,49.25108641670133],[-121.07000855621091,49.251099144580635],[-121.0700278375978,49.25111186347789],[-121.07004711804036,49.25112459134974],[-121.0700663994484,49.25113731023962],[-121.0700856799121,49.25115003810417],[-121.07010667252659,49.25116283526845],[-121.07012595301195,49.25117556312522],[-121.07014526406348,49.25118800367349],[-121.07016454456985,49.251200731522935],[-121.07018553722904,49.25121352867084],[-121.07020484831234,49.25122596920768],[-121.07022412885081,49.2512386970458],[-121.07024515114381,49.25125121585485],[-121.07026443170379,49.2512639436852],[-121.0702837428292,49.25127638420698],[-121.07030473555544,49.2512891813303],[-121.07032404574733,49.25130163082276],[-121.07034506809572,49.25131414961109],[-121.07036437926362,49.25132659011752],[-121.07038365988761,49.25133931792514],[-121.07040468226916,49.251351836701204],[-121.0704239934687,49.25136427719623],[-121.07044498531855,49.25137708326891],[-121.07046429653937,49.25138952375624],[-121.07048360777057,49.25140196423994],[-121.07050463020742,49.251414482995294],[-121.07052391090636,49.251427210776185],[-121.07054493336554,49.251439729523284],[-121.0705642446392,49.251452169991545],[-121.07058352537014,49.251464897761075],[-121.07060454786244,49.25147741649582],[-121.07062385916777,49.25148985695275],[-121.07064485112952,49.251502662984066],[-121.07066416245615,49.25151510343332],[-121.0706834432406,49.251527831183736],[-121.07070446578832,49.251540349897844],[-121.07072374754908,49.25155306866229],[-121.07074305796306,49.25156551807476],[-121.07076233974483,49.2515782368319],[-121.07078333178474,49.251591042834534],[-121.07080261358814,49.25160376158393],[-121.07082192499911,49.25161620200306],[-121.07084120586877,49.251628929723445],[-121.0708621989081,49.25164172673146],[-121.07088145020278,49.25165473277075],[-121.07090073110479,49.25166746047965],[-121.07092001297208,49.251680179206694],[-121.07093929389524,49.25169290690818],[-121.07095854618747,49.25170590395442],[-121.07097782713187,49.25171863164857],[-121.07099707849082,49.25173163766563],[-121.0710163308153,49.25174463470081],[-121.07103558219582,49.25175764071051],[-121.07105483358714,49.251770646716544],[-121.07107237377936,49.251783574452595],[-121.07109162614643,49.251796571473264],[-121.07111087756961,49.25180957746853],[-121.07113009940828,49.251822861786735],[-121.07114763964118,49.251835789509464],[-121.07116686150123,49.251849073820544],[-121.07118437215932,49.25186227986348],[-121.07120359404085,49.25187556416748],[-121.07122110471937,49.25188877020389],[-121.07124032662237,49.25190205450091],[-121.07125780772678,49.251915538857354],[-121.0712753184358,49.25192874488415],[-121.07129451077653,49.251942307497245],[-121.07131199095714,49.25195580082244],[-121.07132947210259,49.251969285166226],[-121.07134695325823,49.25198276950691],[-121.07136440387536,49.25199654114935],[-121.07138188505137,49.25201002548388],[-121.07139933664376,49.2520237881418],[-121.07141678729187,49.252037559774955],[-121.07143249713636,49.25205153147098],[-121.07144994875937,49.2520652941199],[-121.07146739943808,49.25207906574395],[-121.07148311026646,49.25209302845352],[-121.07150053137222,49.25210707839824],[-121.07151624126544,49.252121050080575],[-121.07153363279869,49.25213537834599],[-121.07154931311851,49.25214962834947],[-121.07156499344791,49.25216387835043],[-121.07158061460139,49.25217868500194],[-121.07159623481023,49.25219350062917],[-121.07161011420996,49.252208516322646],[-121.07162570580032,49.252223601293146],[-121.07163952507901,49.25223918261353],[-121.071653374914,49.25225447662691],[-121.07166716557347,49.25227032729132],[-121.07168095528775,49.25228618693181],[-121.0716930051438,49.25230223766198],[-121.07170676528429,49.25231837562507],[-121.07171878461095,49.25233471365646],[-121.07173080394611,49.252351051686055],[-121.0717427936978,49.2523676680405],[-121.07175475291159,49.25238457169804],[-121.07176503144666,49.25240110979366],[-121.07177696108543,49.25241829177441],[-121.07178721004418,49.25243510819369],[-121.07179742846411,49.252452211916264],[-121.07180764689156,49.25246931563752],[-121.071817835735,49.25248669768384],[-121.07182802458607,49.25250407972872],[-121.07183650220638,49.2525213835181],[-121.07184497983302,49.252538687306384],[-121.07185513911429,49.25255634767379],[-121.07186361675424,49.25257365145969],[-121.07187035356823,49.25259115531734],[-121.07187880067438,49.252608746405805],[-121.07188724874152,49.252626328514985],[-121.07189395598083,49.2526441106962],[-121.07190069186191,49.25266162352837],[-121.07190742870264,49.25267912738147],[-121.07191413595733,49.252696909560015],[-121.07192087185368,49.252714422389516],[-121.07192757911861,49.25273220456638],[-121.07193260473278,49.2527496301632],[-121.07193934064375,49.25276714299013],[-121.0719443662661,49.25278456858562],[-121.07194939189222,49.252801994180345],[-121.07195441752212,49.25281941977442],[-121.07195773095104,49.25283677609386],[-121.07196275658782,49.25285420168666],[-121.07196607097688,49.25287154902667],[-121.0719676435708,49.25288910541879],[-121.07197092837328,49.2529067310842],[-121.07197250097025,49.25292428747527],[-121.07197404493202,49.25294211321402],[-121.07197390627661,49.252959591352315],[-121.07197544928556,49.2529774260683],[-121.07197528199416,49.2529951735537],[-121.07197508415715,49.25301320834325],[-121.07197317506258,49.2530311648804],[-121.07197300681557,49.253048921342604],[-121.07197109771873,49.25306687787882],[-121.0719691886204,49.25308483441439],[-121.07196724992956,49.253103069275774],[-121.07196534082827,49.25312102581033],[-121.07196340117983,49.2531392696489],[-121.07195978081354,49.2531571479303],[-121.07195784211598,49.253175382789536],[-121.07195419215353,49.253193539396094],[-121.07195054218825,49.25321169600196],[-121.07194860253023,49.25322993983778],[-121.07194495255987,49.2532480964425],[-121.07194130258667,49.25326625304655],[-121.07193765261064,49.253284409650014],[-121.07193571294451,49.25330265348357],[-121.07193206296338,49.25332081008587],[-121.07192841297945,49.25333896668747],[-121.07192476299262,49.25335712328848],[-121.0719228233184,49.25337536711977],[-121.07191920291807,49.25339324539354],[-121.07191726419471,49.25341148024545],[-121.07191361419784,49.25342963684415],[-121.07191170506236,49.25344759336882],[-121.07190976633377,49.25346582821921],[-121.07190785719534,49.2534837847429],[-121.07190594805542,49.253501741266035],[-121.07190397877605,49.25352026341915],[-121.0716976595287,49.25470059247331],[-121.07137598694871,49.255574818651354],[-121.07100529853491,49.25644088327928],[-121.07057234829175,49.25729394892148],[-121.07008061524623,49.25813361479471],[-121.0695620491596,49.25896668272533],[-121.0690501901064,49.25980119155249],[-121.06852828230006,49.260632982532904],[-121.06787882311001,49.26114400910145],[-121.06714784727824,49.261483558415186],[-121.06578806786078,49.26192964858336],[-121.06488410515553,49.26214905087893],[-121.06326917714962,49.26218054829969],[-121.06182112248268,49.262566720373336],[-121.06016491741688,49.263711322893066],[-121.05877365900069,49.264919083484656],[-121.0576261711687,49.266775732173656],[-121.05720244304247,49.268409838592234],[-121.05636075249338,49.26933375777639],[-121.05561893908417,49.26996622693765],[-121.05539163493431,49.27119348833614],[-121.05697163847529,49.2720406870083],[-121.05803150938073,49.272410106479875],[-121.0589099835482,49.27283521100765],[-121.0595742021299,49.27367252746272],[-121.05929112696613,49.274552429113186],[-121.05905898448695,49.275438605805185],[-121.05905022796018,49.27547231569335],[-121.0590466008765,49.27549019293806],[-121.05904126172555,49.27550799172798],[-121.05903763463563,49.27552586897146],[-121.0590340075429,49.27554374621434],[-121.05903038044737,49.27556162345662],[-121.05902504128201,49.27557942224381],[-121.05902141418022,49.2755972994848],[-121.05901778707566,49.27561517672517],[-121.05901247758244,49.27563269719706],[-121.05900713840201,49.27565049598144],[-121.0590018289007,49.27566801645185],[-121.05899480732447,49.27568545846652],[-121.05898778670047,49.275702891502604],[-121.05898079479707,49.27572005520223],[-121.05897209177321,49.27573713146792],[-121.05896509985884,49.27575429516572],[-121.0589563661817,49.27577165872018],[-121.05894766313918,49.27578873498259],[-121.05894064152433,49.2758061769906],[-121.05893190782827,49.275823540541765],[-121.05892317508324,49.27584089511395],[-121.05891615345126,49.27585833711906],[-121.05890741973626,49.27587570066688],[-121.05889868601467,49.275893064213584],[-121.05889166532317,49.275910497237824],[-121.05888290190506,49.27592813909544],[-121.05887416816445,49.27594550263873],[-121.0588654344173,49.2759628661809],[-121.0588584127452,49.275980308179015],[-121.05884964930127,49.27599795003208],[-121.05884091649263,49.276015304593045],[-121.0588321827199,49.27603266813071],[-121.05882344894064,49.27605003166719],[-121.05881474579701,49.276067107911636],[-121.05880601200472,49.276084471445856],[-121.05879727820592,49.276101834978874],[-121.05878686295638,49.27611883276167],[-121.05877815882879,49.276135917979275],[-121.05876945565237,49.27615299421786],[-121.05875903942356,49.27617000097458],[-121.05875033623373,49.27618707721078],[-121.05873994967538,49.276203805651754],[-121.05872956406716,49.27622052511346],[-121.05871917845143,49.27623724457382],[-121.05870879282823,49.276253964032726],[-121.05869843688295,49.2762704051773],[-121.05868808093034,49.27628684632051],[-121.05867775465595,49.27630300914942],[-121.05866571628063,49.27631909351682],[-121.05865538999127,49.27633525634278],[-121.05864338224323,49.27635105341626],[-121.05863137352941,49.276366859465845],[-121.05861936576503,49.276382656535866],[-121.0586073876785,49.276398175291355],[-121.05859540862636,49.276413703023],[-121.05858174811237,49.27642886500086],[-121.0585681479197,49.27644346137331],[-121.05855115320755,49.27645762250705],[-121.05853250575895,49.27647114855023],[-121.0585104944313,49.27648395206144],[-121.05848854246516,49.27649619894244],[-121.05846496840557,49.27650752343943],[-121.05844148435351,49.27651800401503],[-121.05841637725162,49.276527571183266],[-121.05838961837058,49.27653649427771],[-121.05836469128887,49.27654437360176],[-121.0583381124301,49.27655160885142],[-121.05831168200267,49.2765574525311],[-121.05828705465025,49.276562521776654],[-121.05826083394314,49.276566399299575],[-121.05823473390059,49.276569145609706],[-121.05820875260915,49.276570778662936],[-121.05818120957258,49.27657092372343],[-121.05815375656017,49.27657022486108],[-121.05812639261573,49.276568691053946],[-121.05809908900919,49.2765665916368],[-121.05807016237146,49.27656357880541],[-121.05804300817589,49.27656007883319],[-121.05801420222014,49.27655593478076],[-121.05798713710286,49.27655159985662],[-121.05795839053742,49.276546899164025],[-121.05793135607856,49.27654227693544],[-121.05790435227318,49.27653736740969],[-121.05787902992554,49.27653282364016],[-121.05785202517343,49.27652792307913],[-121.05782505011786,49.276522744198616],[-121.05779978812565,49.276517634807405],[-121.05777281308188,49.27651245591384],[-121.05774758079234,49.276507068197795],[-121.05772066610118,49.27650132368825],[-121.05769375141669,49.27649557917194],[-121.05766857852895,49.2764896348122],[-121.05764169450738,49.27648360299239],[-121.05761652163281,49.27647765862052],[-121.05758969700933,49.27647107016264],[-121.05756455384056,49.276464847465924],[-121.05753947102133,49.27645805916046],[-121.05751264642014,49.2764514706833],[-121.05748759330855,49.27644440405308],[-121.05746254020455,49.27643733741704],[-121.05743748806606,49.27643026179734],[-121.05741246467056,49.2764229168371],[-121.05738744224087,49.27641556289308],[-121.05736244855476,49.27640793960852],[-121.05733748552836,49.27640002902783],[-121.05731252251049,49.27639211844128],[-121.05728930224676,49.27638399904046],[-121.05726436893981,49.2763758101301],[-121.05723946533588,49.276367342901466],[-121.05721630448606,49.27635866685976],[-121.05719143155254,49.27634991232947],[-121.05716830041501,49.27634095796479],[-121.05714345719481,49.27633192511076],[-121.05712032607552,49.27632297073556],[-121.05709725435527,49.276313459730375],[-121.0570724418167,49.27630413956937],[-121.05704937011564,49.27629462855366],[-121.05702632907739,49.27628483024269],[-121.05700325739538,49.27627531921686],[-121.05698024607219,49.276265242583264],[-121.05695720506311,49.2762554442571],[-121.05693419375976,49.276245367613434],[-121.05691118246641,49.27623529096467],[-121.05688820087931,49.27622493599845],[-121.05686518960609,49.276214859339625],[-121.05684392108374,49.276204573874466],[-121.05682093952687,49.276194218893394],[-121.05679798767699,49.27618358559495],[-121.0567767191839,49.276173300116014],[-121.05675376735451,49.27616266680793],[-121.0567326176693,49.27615126807027],[-121.05671149864973,49.27613958203816],[-121.05669040933817,49.27612761768931],[-121.05666937943245,49.27611509671129],[-121.056650091318,49.276102375908565],[-121.05662909209032,49.276089567631985],[-121.05660983465337,49.27607655953138],[-121.05658886418841,49.27606348191191],[-121.05656963647161,49.27605019549125],[-121.05655037906764,49.276037187379266],[-121.056529379897,49.27602437908202],[-121.05651009185864,49.27601165825266],[-121.05648903235564,49.275999415549734],[-121.05646794316515,49.27598745115483],[-121.05644853540608,49.27597585254118],[-121.05642735618217,49.275964732053076],[-121.05640440549404,49.275954089689456],[-121.05638310653622,49.27594409141974],[-121.05636000545624,49.27593485856403],[-121.05633681528735,49.27592646064046],[-121.05631353411228,49.275918915604585],[-121.05628845177118,49.27591212700302],[-121.05626331003783,49.275905895020365],[-121.05623813765325,49.275899950321964],[-121.05621287617487,49.27589484055473],[-121.05618590167023,49.275889661260024],[-121.05616055014396,49.27588539539539],[-121.05613345589038,49.27588133831476],[-121.05610804497206,49.27587762906259],[-121.05608089132589,49.27587412859338],[-121.0560537070247,49.27587091540754],[-121.0560264939842,49.275867971549346],[-121.05599753821522,49.27586523647209],[-121.05597026482046,49.27586285820214],[-121.05594299142847,49.27586047992538],[-121.05591571803932,49.27585810164172],[-121.05588670287896,49.27585592315927],[-121.05585939979319,49.275853823173634],[-121.05583209575173,49.2758517321589],[-121.0558030805993,49.275849553654005],[-121.05577580722372,49.27584717533498],[-121.0557485041481,49.27584507532123],[-121.05571951870677,49.275842618481526],[-121.0556922750427,49.27583996182914],[-121.05566503138178,49.27583730516977],[-121.05563781838565,49.27583436121355],[-121.05561063509661,49.27583113893814],[-121.05520777443863,49.27586595614085],[-121.05502644582764,49.27595292811636],[-121.05494100252983,49.27607644185101],[-121.05488355635693,49.2762116686799],[-121.05484257139305,49.276353857385566],[-121.05480978726507,49.27649980532588],[-121.05477865561174,49.276646388369045],[-121.05474430847717,49.27679085716756],[-121.05470503564311,49.27693311524125],[-121.0546724902707,49.27707681856504],[-121.05464330951641,49.27722123551819],[-121.05461076375076,49.277364938760904],[-121.05457323090455,49.27750700585423],[-121.05452566557958,49.277646348328325],[-121.05446304916057,49.2777816263255],[-121.05437168628707,49.277912193643274],[-121.05424163165068,49.278034508633844],[-121.05409069668744,49.278142892493605],[-121.0539235633288,49.27822572338216],[-121.05370354772359,49.27825594938048],[-121.05348256837584,49.278279084755034],[-121.05326363171274,49.27829920089497],[-121.05304649617972,49.27831856020798],[-121.05282900092587,49.2783412857423],[-121.05261006272713,49.27836140953322],[-121.05239178403272,49.27837535618707],[-121.05216845790754,49.27838823178028],[-121.05194852292873,49.27838546544287],[-121.05174254629901,49.27834866859996],[-121.05154701494172,49.27827851911071],[-121.05135737060951,49.27820158439119],[-121.05117490446412,49.27812188427864],[-121.05099451076038,49.278038895775936],[-121.05081390860629,49.277957864109446],[-121.05062979168481,49.277877527842065],[-121.05044561688835,49.27779773889339],[-121.05025540558906,49.27772614394022],[-121.05005555598703,49.277664246642544],[-121.04984402489845,49.27761506566962],[-121.0496309387506,49.27759654105566],[-121.04940668349033,49.27760203344999],[-121.04918207170006,49.27762695998121],[-121.0489788800398,49.27767684046553],[-121.04880023409368,49.27775462432424],[-121.04863817176852,49.27785431647489],[-121.04848863608402,49.27796558118138],[-121.04835426904448,49.27807979770324],[-121.04825459732794,49.27820744393165],[-121.04817469065334,49.278343332441146],[-121.04808994742775,49.278476174957554],[-121.04800520371694,49.2786090173808],[-121.04792211122283,49.27874250393661],[-121.04784070066816,49.278876347341885],[-121.04776436666207,49.27901098317421],[-121.04769301806546,49.27914726432526],[-121.0476283978127,49.279284982152376],[-121.04756548936581,49.27942277854781],[-121.04750089906534,49.279560208955296],[-121.04742621467715,49.27969548864097],[-121.04734483077567,49.279829053171866],[-121.04726008246057,49.2799618947395],[-121.04717365120358,49.280094379264156],[-121.04708553699226,49.28022650674184],[-121.04700081696699,49.28035906971852],[-121.04691774916787,49.2804922678639],[-121.04683804487838,49.28062618880614],[-121.04675996212656,49.280761032211714],[-121.04668359116317,49.280895954183],[-121.04660890224184,49.28103123303113],[-121.04653250063289,49.28116643314815],[-121.04645615906291,49.28130106759098],[-121.04637639156628,49.28143555362174],[-121.04629500159041,49.28156911701127],[-121.04621523412592,49.28170359389101],[-121.04613366366966,49.28183883592542],[-121.04604878723552,49.281972807323676],[-121.04595736266458,49.2821036450049],[-121.0458527481628,49.28222909513384],[-121.04573007852147,49.28234638101045],[-121.04558607887272,49.282453944733014],[-121.04542898032506,49.28255526787286],[-121.0452668632568,49.2826552415275],[-121.0451096730568,49.28275740806938],[-121.04496392860982,49.28286517052802],[-121.04482301982266,49.282975978804494],[-121.04467895560862,49.28308410680575],[-121.04452353549436,49.28318578551967],[-121.0443583805477,49.283281946459624],[-121.04419004039404,49.28337570535305],[-121.04402004678333,49.283468828667736],[-121.04385326774748,49.28356406620786],[-121.04369640181889,49.28366314225748],[-121.04355086067221,49.283768945545454],[-121.04343142522193,49.28388807372536],[-121.04333491200472,49.28401811609614],[-121.0432415827726,49.28415056016054],[-121.04313350180568,49.284276128166695],[-121.04300565299711,49.284393452776406],[-121.04286957125922,49.28450730435555],[-121.04272537859086,49.284616542722006],[-121.04257319316707,49.28472006360336],[-121.04241298520205,49.284818145273505],[-121.04224304327923,49.2849107000021],[-121.04206676142111,49.28499817247226],[-121.04188594333621,49.285079788511105],[-121.04169890454894,49.2851552090207],[-121.04150717873148,49.28522618252833],[-121.04131082646967,49.285292143424265],[-121.04111152848567,49.28535346668156],[-121.04090769450407,49.285408933395146],[-121.04070265806666,49.28545955389602],[-121.04049455590658,49.28550665890639],[-121.04028507258589,49.28555058750862],[-121.0400757686485,49.28559283690091],[-121.03986318950194,49.285633527874545],[-121.03965235315643,49.285674009906344],[-121.03944148567444,49.285714778805506],[-121.03923061782187,49.28575554729046],[-121.03901978036981,49.28579602808025],[-121.0388073195711,49.285835594772124],[-121.03859657082239,49.28587523982092],[-121.03838416988859,49.28591424009158],[-121.03817348101227,49.28595331872627],[-121.0379610784035,49.28599232713794],[-121.0377486763994,49.28603132615233],[-121.03753795663738,49.28607068184354],[-121.03732555295693,49.286109688998856],[-121.03711339037501,49.28614644237914],[-121.03689792286738,49.28618191554426],[-121.03668422709971,49.28621691047975],[-121.03646881858695,49.286251826179935],[-121.03625500286769,49.28628793347305],[-121.03604271738709,49.28632581590568],[-121.03583190439086,49.28636601213634],[-121.0356224426054,49.2864096533374],[-121.03541769621924,49.28645746275287],[-121.03521412100027,49.286510395955936],[-121.0350162815589,49.28657403105764],[-121.03482426921252,49.28664751522533],[-121.03463988677557,49.286730083443565],[-121.03446499484602,49.28682043205888],[-121.03430491360379,49.286917091929304],[-121.03416099359893,49.287023517494696],[-121.03403326469214,49.28713943051328],[-121.03391181317373,49.287260991380855],[-121.03379360592427,49.28738438858163],[-121.03367218297929,49.28750567083361],[-121.03353937476874,49.28762078103913],[-121.03339689180737,49.287729815973584],[-121.0332445550099,49.28783444540806],[-121.03308744113436,49.28793547147487],[-121.0329271423155,49.28803409520262],[-121.03276525068642,49.28813151762796],[-121.03260329867817,49.28822949639786],[-121.03244134502285,49.28832748388787],[-121.03227942149798,49.28842518384271],[-121.03211587531315,49.28852196078225],[-121.0319507960293,49.28861697979841],[-121.03178253182313,49.28870959642219],[-121.03161111255758,49.288799532339446],[-121.03143491626695,49.28888586476835],[-121.03125565547973,49.28896867258001],[-121.03107495315916,49.28904886955636],[-121.03088938332641,49.28912630687069],[-121.03070228048544,49.28920198617938],[-121.03051364561338,49.289275898497735],[-121.03032338720567,49.28934889667177],[-121.03013321875817,49.28942105062685],[-121.02994139788409,49.289492559749185],[-121.029749546551,49.28956434682256],[-121.02955940619647,49.28963622144476],[-121.02936914577282,49.289709208921394],[-121.02918050575042,49.289783127832855],[-121.02899024412805,49.28985611462597],[-121.02879841969298,49.289927621671985],[-121.02860500161785,49.2899979362394],[-121.02840996196184,49.29006731866385],[-121.02821489088142,49.29013698800503],[-121.028021501891,49.29020701422958],[-121.02782796195488,49.2902784405705],[-121.02763772605361,49.2903511466288],[-121.02745067273136,49.290426263569614],[-121.02726677401924,49.290504051752215],[-121.02708768077153,49.290585164701966],[-121.02691333224024,49.29067016801499],[-121.02674366959887,49.29075960933156],[-121.02657331310634,49.29085550508618],[-121.026407491055,49.290957248311166],[-121.02624455060813,49.29106420345706],[-121.02608806925012,49.291175110063456],[-121.02594324261423,49.2912896664474],[-121.02581019321511,49.29140673253188],[-121.02569240514065,49.29152591870367],[-121.02559345606137,49.29164596455803],[-121.0255182409284,49.29176936938484],[-121.02550422324666,49.29191588657203],[-121.02554750006757,49.29207378819996],[-121.02563305472911,49.292222650963126],[-121.0257474642409,49.29234323474897],[-121.02589944598873,49.29241847529026],[-121.02611231511818,49.2924556365317],[-121.02635325471013,49.29247181688698],[-121.02658944703988,49.29248412398565],[-121.02681040797891,49.29249402318465],[-121.02703807255303,49.29248957961907],[-121.02726603881942,49.292482325667386],[-121.0274879021698,49.29248382069359],[-121.02769897470598,49.29250566715325],[-121.02789315198496,49.292556632543175],[-121.02808852750617,49.29262850210418],[-121.0282787608104,49.292716211049246],[-121.02845378722407,49.2928173197393],[-121.02860366336206,49.29292825745137],[-121.02871835314856,49.29304631533026],[-121.02879611382694,49.293171692850265],[-121.0288469195097,49.293307673579484],[-121.02887789343022,49.29345203268411],[-121.02888945463896,49.29360086503447],[-121.02888878714823,49.2937513801967],[-121.0288779331268,49.293900586852146],[-121.02886239293477,49.29404534631405],[-121.02884195547306,49.294187624618104],[-121.02881463717807,49.294329865460476],[-121.02878389232558,49.29447195737952],[-121.02874798021676,49.29461408178269],[-121.02870864147715,49.29475605725531],[-121.02866587800322,49.29489786583902],[-121.02861968783647,49.29503952548464],[-121.02857184536902,49.29518054057474],[-121.02852228986663,49.29532147667805],[-121.0284710820359,49.29546176822203],[-121.02841822090019,49.295601424181825],[-121.028365389326,49.295740801790146],[-121.0283091319057,49.29588002146532],[-121.02825290499231,49.29601895380866],[-121.02819496400382,49.29615781613014],[-121.02813537061618,49.29629603388045],[-121.02807403420691,49.296434450922504],[-121.02801101452474,49.29657251066138],[-121.02794799446737,49.2967105703348],[-121.0278850039183,49.29684835164711],[-121.02782030115469,49.29698604497013],[-121.02775391411805,49.297123389959985],[-121.0276892096175,49.29726109212485],[-121.0276245355822,49.29739850694979],[-121.02755814737544,49.29753585173414],[-121.02749347256868,49.297673266423836],[-121.02742540159737,49.29781024484561],[-121.02735904209885,49.297947311127395],[-121.02729100021615,49.298084011113076],[-121.02722295793232,49.29822071102764],[-121.02715320239358,49.29835733191427],[-121.02708344644387,49.298493952727895],[-121.02701372093722,49.29863028619636],[-121.0269439641661,49.298766906863825],[-121.02687423687482,49.29890324916353],[-121.02680450917362,49.29903959139034],[-121.0267330382872,49.299176132875154],[-121.0266633097606,49.299312474954846],[-121.0265935817883,49.2994488079844],[-121.02652382254836,49.299585428212545],[-121.02639244499659,49.29986299532085],[-121.02634453099152,49.300004564989976],[-121.02633977918651,49.30001675073758],[-121.02629342637616,49.300159808745356],[-121.02624361753605,49.30030298705395],[-121.02619726414298,49.30044604495896],[-121.02615785285522,49.30058857484516],[-121.02613055245385,49.30073053534606],[-121.02612053178247,49.30087188509678],[-121.02613473441886,49.30101208715921],[-121.02616976263879,49.30115072324084],[-121.02622384483678,49.301288261960806],[-121.0262934954553,49.30142510193753],[-121.02637005815942,49.301561701130844],[-121.02645007716183,49.30169817988411],[-121.02652832386434,49.3018351361703],[-121.02660134142211,49.301972699332744],[-121.02666390016968,49.302111476345864],[-121.02671251520066,49.30225185690897],[-121.02676269213053,49.302393725803576],[-121.02681617484399,49.30253687471805],[-121.02686959810096,49.30268058016146],[-121.02692293104542,49.302825129403644],[-121.02697109535788,49.302969720003055],[-121.02701754694142,49.303114231590975],[-121.02705543267682,49.30325835731511],[-121.02708484505358,49.30340123537476],[-121.02710575217002,49.30354316202463],[-121.02711304565207,49.30368361312949],[-121.02710678516063,49.30382203210766],[-121.02708351456113,49.30395853933583],[-121.02703641133762,49.30409254067904],[-121.02696541550358,49.30422459269254],[-121.02687569598282,49.30435465392038],[-121.02676896570878,49.30448280327939],[-121.02563362837144,49.305724220142],[-121.03012982499347,49.309867631447844],[-121.03466574230694,49.31534947656013],[-121.03893587018617,49.319978992057685],[-121.04285905366287,49.3223243464787],[-121.05165583103965,49.32677113940921],[-121.0573203425294,49.32869248062506],[-121.06625529474503,49.32902367017121],[-121.06606473331088,49.328743205366884],[-121.07189250624197,49.32745695027486],[-121.0773280976566,49.327781624553374],[-121.08082627927269,49.33064817069486],[-121.08314969162491,49.33484772678355],[-121.07808585317663,49.33788617980323],[-121.07363884222465,49.343667790678104],[-121.07041546277154,49.34959865357726],[-121.07016518892202,49.350006689592135],[-121.07200839333856,49.35289084489544],[-121.0693572073759,49.35486996630238],[-121.06515894070219,49.35739062719673],[-121.06356936582813,49.35975270602168],[-121.06351250455303,49.36067274679838],[-121.06701403613798,49.36365271300716],[-121.06997265225003,49.36577929217924],[-121.07564549056602,49.3679322513786],[-121.07688603016527,49.3681970939703],[-121.08050942468033,49.36900819467971],[-121.08979079188624,49.37173386447349],[-121.09298605861584,49.37294450217151],[-121.10186211310794,49.376644813468914],[-121.10372953710919,49.37776588504151],[-121.11123617483331,49.38216996625138],[-121.11442079938689,49.385841528827214],[-121.11523405267923,49.389371732873414],[-121.11260923873196,49.3917524004031],[-121.10933995810534,49.39357085906348],[-121.1029860123016,49.39480759860744],[-121.0976206139574,49.39699783145015],[-121.0961360188523,49.39993408564697],[-121.0966642534119,49.402498211438875],[-121.10030456823118,49.40656052070943],[-121.100893690462,49.40855347565003],[-121.09967729234386,49.411432269805594],[-121.09630791643318,49.41313505551956],[-121.0910955381556,49.416979147808476],[-121.08957329990291,49.418831222934685],[-121.08865248553957,49.42307537507329],[-121.08850271914947,49.426559953440496],[-121.08880232127024,49.430103801937186],[-121.08930047494935,49.432041337964456],[-121.0893643152362,49.43403750864246],[-121.08836481250543,49.4381094642819],[-121.08717386017275,49.44475671125216],[-121.0869279142646,49.44784532489817],[-121.0846675641615,49.454280746918904],[-121.08305815792625,49.45836265520301],[-121.08149256570967,49.46164212941789],[-121.08061099589474,49.46433682284394],[-121.08260046551523,49.46602691651898],[-121.08628728266564,49.46878013666306],[-121.07796704689962,49.47214887529383],[-121.0724704699186,49.47314160391747],[-121.06748875893382,49.473841285963296],[-121.05551985805373,49.475375333370486],[-121.05352781919466,49.476033818686865],[-121.05714261337938,49.47958011148062],[-121.06016976546738,49.483712744588374],[-121.06157700063332,49.48632191232089],[-121.0634131430796,49.488930013931416],[-121.06415281658185,49.49028666152302],[-121.06640127768509,49.491629137706276],[-121.0708946398546,49.494997487340285],[-121.07531047756902,49.4987090274193],[-121.07626628022409,49.50115420634152],[-121.07701888688614,49.50537298494325],[-121.07720491375231,49.51114141014743],[-121.07595052662165,49.51601863257202],[-121.07047543261179,49.520381622135844],[-121.06287267885915,49.524316087307916],[-121.05868497403287,49.52517148934149],[-121.04992811493861,49.5259200133847],[-121.04282953824654,49.52938720244584],[-121.04341273995534,49.53104084202562],[-121.04691091360677,49.53647640492935],[-121.04933854319324,49.540675059737644],[-121.049052565124,49.543077207659906],[-121.04653248649416,49.546428005514336],[-121.04172605044968,49.5504351974617],[-121.03849215747496,49.55384788973891],[-121.03526350894366,49.56298443122319],[-121.03445586659979,49.56533530788638],[-121.03491810304604,49.57144898729194],[-121.03298898911063,49.577128869287094],[-121.03026543497178,49.58002609326568],[-121.02332202493561,49.58337557861188],[-121.01706866235435,49.58597371769787],[-121.00855234916469,49.589114020381345],[-120.99698935183368,49.59349597508908],[-120.99402750551775,49.594731948428034],[-120.98923530550687,49.60462302344509],[-120.98578925217447,49.612958948834304],[-120.9840360401252,49.616065013650676],[-120.98213976709505,49.62060617968673],[-120.98061472997185,49.62542735832646],[-120.98056235334712,49.626795642633944],[-120.9806705525546,49.629995177895374],[-120.97565162006907,49.63314610440043],[-120.97086554724298,49.637838348533464],[-120.96720521886687,49.641997483574606],[-120.96461739823269,49.64408814079844],[-120.95984117044765,49.652209919971355],[-120.95787164073262,49.654348800062266],[-120.95798773825761,49.658347291940636],[-120.95812296798603,49.6628037176348],[-120.95713556636717,49.66812842446568],[-120.95645946111222,49.67516673932587],[-120.95644712272217,49.67767975523308],[-120.96365819192576,49.673461679353224],[-120.97121693759509,49.66745124962257],[-120.97648287347221,49.664363750094914],[-120.99335432379216,49.65399617671553],[-121.00118266468125,49.64913862415656],[-121.01020294195332,49.64644811414702],[-121.01405623125568,49.64418399205633],[-121.0172370122994,49.644151136765785],[-121.01772008881251,49.644174398031254],[-121.01775041277932,49.6419761424871],[-121.02433642536528,49.6394508132238],[-121.02847610891347,49.63657883051055],[-121.02857194429366,49.63659054359729],[-121.02959383122483,49.63637689238689],[-121.03224359034552,49.634963376753525],[-121.03522817418273,49.63494247624254],[-121.03858898304402,49.63413500064468],[-121.04177724347335,49.6346681857836],[-121.04448574255616,49.63399140482796],[-121.04774361674556,49.633750430983675],[-121.04972172258354,49.63315690631105],[-121.05134117473567,49.63164307034179],[-121.05261732642846,49.631384428570485],[-121.05580380097103,49.632449129864426],[-121.05998900432469,49.63209554080945],[-121.06065269621476,49.63134065929032],[-121.06042561696654,49.62855027832947],[-121.06107087982573,49.62719209998694],[-121.06259815106863,49.62601431546308],[-121.06395115946614,49.62568352200117],[-121.06787075284637,49.62573069188257],[-121.07160088816681,49.624958161766145],[-121.07375730657661,49.62489360665839],[-121.07927665098556,49.625670532448964],[-121.08186710491383,49.62556741223635],[-121.0856252983647,49.62686393030866],[-121.09008059500991,49.62708948348127],[-121.09088705437873,49.62693993473232],[-121.09247953190284,49.62592306311381],[-121.09382762271828,49.62550602679025],[-121.09723943738688,49.626022327160854],[-121.09813841416388,49.62578503657162],[-121.10374814075577,49.62259347473009],[-121.10986279834796,49.615300051978664],[-121.11108411933475,49.614897120568344],[-121.11218917962158,49.61376196176884],[-121.11642038016757,49.61151766451781],[-121.1165021718153,49.61126971851656],[-121.1200441701002,49.610551400359256],[-121.12294037693577,49.6108231483613],[-121.12363431547445,49.61133837927621],[-121.12338424084399,49.61578674885095],[-121.12538378058831,49.61967976254056],[-121.12749078744199,49.61994640121285],[-121.13419356468215,49.62277326090614],[-121.13742763265243,49.62208734495184],[-121.13865543942467,49.6209667467176],[-121.14126748942527,49.619604845471194],[-121.1436894625913,49.61951556389309],[-121.14777359008403,49.61865376069181],[-121.15071745323574,49.61847943572027],[-121.15476032010783,49.617480563462614],[-121.15454588039154,49.61476356023185],[-121.15547990925447,49.61302080294366],[-121.156876923408,49.61186641621179],[-121.15880067196537,49.61110656776328],[-121.16059985909558,49.60863225320333],[-121.16325718776649,49.60774889862493],[-121.17104050532994,49.603589702579605],[-121.17657104344617,49.60305714284527],[-121.17657319562798,49.60277237600336],[-121.17724212123626,49.59745169933438],[-121.18054772487079,49.59195947488704],[-121.19000134776363,49.585697343831306],[-121.20118288765376,49.587545543759695],[-121.20825351930958,49.59255403992454],[-121.20878795480225,49.59380832368261],[-121.21165027244652,49.58854199985969],[-121.21817496436225,49.58068779453108],[-121.22771365215297,49.57540011484576],[-121.23125366621225,49.57772769884433],[-121.23638164693256,49.58171249505519],[-121.24319668062807,49.58694127924933],[-121.24737489759313,49.59115316875991],[-121.2536421632974,49.59473261292385],[-121.257882115052,49.596883205728595],[-121.26637719494664,49.60239425949653],[-121.27732974319298,49.60720813335048],[-121.28544311532491,49.610263334576146],[-121.29667240285941,49.61593080731514],[-121.30622668729596,49.620920919869064],[-121.30828661445642,49.624915854943495],[-121.30929821193772,49.629539919391895],[-121.31101686076036,49.63376002176533],[-121.31352767331863,49.63837478742444],[-121.31622767180302,49.644539938070935],[-121.32076169924514,49.64932180783495],[-121.32217643783683,49.650685808492064],[-121.32328384210507,49.6547966851167],[-121.32541128262254,49.66524558845265],[-121.32675854972615,49.66809674271248],[-121.32967804070024,49.66968237159779],[-121.33824405724114,49.67101526935323],[-121.35277877610302,49.67151968767494],[-121.3620732455428,49.675541419069994],[-121.37119957669951,49.680695339562796],[-121.39643997657333,49.677315785541154],[-121.41377033079654,49.67500079626063],[-121.4150558238821,49.67922193984943],[-121.41735219358155,49.67943750173305],[-121.42104753879522,49.6798211446272],[-121.42563743905718,49.680142547500935],[-121.43154150068584,49.68050877111472],[-121.43472020393283,49.68106461025554],[-121.44232979692464,49.68382599451448],[-121.44721017527382,49.6865414353755],[-121.45402475482388,49.68907601815096],[-121.46288979092115,49.69348575003975],[-121.47217039721322,49.69595168988268],[-121.4793334220711,49.697512718100725],[-121.48960987961922,49.70088136129581],[-121.49956260938002,49.70105252895068],[-121.50827665870578,49.70026035083271],[-121.51619926104745,49.69946475788674],[-121.52608441502127,49.700039659695086],[-121.53015508637625,49.70172420478018],[-121.53381644689799,49.70490639330848],[-121.53919274389925,49.711165259394726],[-121.54590226829623,49.717869705225155],[-121.54990558853534,49.7204146226279],[-121.55745981433026,49.72430835389333],[-121.56442622073237,49.73027048721833],[-121.56853514762479,49.73447530104774],[-121.57389349466706,49.738556034302206],[-121.57931218664339,49.74086762694031],[-121.58143748815888,49.74159695569207],[-121.58879280422028,49.743431191610085],[-121.59965776410276,49.74519258352166],[-121.60813217591908,49.74536754330716],[-121.61087763633459,49.74557721011285],[-121.61715488542048,49.747075453937214],[-121.62707827333735,49.7499833473512],[-121.63817271000954,49.753450723176634],[-121.64250786255256,49.75405033434285],[-121.64996850797655,49.7515954468381],[-121.65673738524315,49.750858866564386],[-121.66389751509155,49.75097879028337],[-121.67139677461714,49.75103961193715],[-121.67821234981206,49.7523078067367],[-121.68988669435772,49.75393662077747],[-121.69085772362995,49.75410451136866],[-121.6994593708611,49.756492686595344],[-121.70959088402847,49.76110778909935],[-121.71157043117651,49.76297860234795],[-121.71428505811778,49.76650452663303],[-121.71373049684962,49.77005513639889],[-121.70937421263339,49.77351824851569],[-121.70669355808026,49.776454740486706],[-121.7064788401993,49.77948764498696],[-121.70347423612938,49.78453760223118],[-121.70407183498196,49.788249459921026],[-121.70729786924075,49.79137489128534],[-121.70881537926878,49.792102948441254],[-121.7125201914551,49.791903905321924],[-121.7180133245238,49.792661776644756],[-121.72416111693745,49.795646674071406],[-121.72814931297482,49.801507960394275],[-121.73000830828717,49.806637116555216],[-121.72922669561832,49.81247998319671],[-121.72595890731536,49.81707350362573],[-121.71884069853684,49.81981956282539],[-121.71073133546827,49.820507654191566],[-121.71174892274024,49.823016677187],[-121.71659950042232,49.827556112840085],[-121.71886421987729,49.831024955908724],[-121.72405177551882,49.83435869630732],[-121.72526765031267,49.838183801587235],[-121.72509121399638,49.84275395488725],[-121.72789831599377,49.847140055278956],[-121.73333655406137,49.84915645655956],[-121.7380254281916,49.84980331902056],[-121.74389690772695,49.85136254096283],[-121.75324289067808,49.85540652699608],[-121.75525606523918,49.85847774914521],[-121.75531898230159,49.86185156937345],[-121.75751352590522,49.86612559468638],[-121.76070279412087,49.871246582134674],[-121.7654014290663,49.87166507229089],[-121.77057060983383,49.869106925148444],[-121.7771198614961,49.864421873206716],[-121.78056381739187,49.86016334880711],[-121.78154875596316,49.85597989318693],[-121.78253114755745,49.851973100214444],[-121.78330592063651,49.85082065435351],[-121.78399032180421,49.849439510507636],[-121.78760696647248,49.84449601824362],[-121.79411288177874,49.84204126489111],[-121.79826872998494,49.84257776289456],[-121.80300195761292,49.845169312660516],[-121.80810479164947,49.847988186371225],[-121.81624296072171,49.85295260447558],[-121.81865435943823,49.854302028431775],[-121.82418946548884,49.85683142966641],[-121.83121195487608,49.858483795228395],[-121.84241511299388,49.86211203752087],[-121.84758679656308,49.86406503396406],[-121.85228905216111,49.86505472589259],[-121.85763178923278,49.86666522534736],[-121.8671280919327,49.868411650731026],[-121.8721915425946,49.86911291811211],[-121.87868822958987,49.871225811649545],[-121.88507142422091,49.87197448872691],[-121.89004159456773,49.872325183302664],[-121.89763682916666,49.87214644646867],[-121.90321511825083,49.87255255412418],[-121.9106408828219,49.872086782534865],[-121.91803484719136,49.870414648258986],[-121.9226678827763,49.86814036717472],[-121.92727563631941,49.86426790775236],[-121.93334977165937,49.85940273899983],[-121.94028938457784,49.85716678948978],[-121.94710027508992,49.857161070377835],[-121.95471489650375,49.85783034325338],[-121.95789290263603,49.8578009396777],[-121.96652211559847,49.85628557457485],[-121.97129351458285,49.85223672256578],[-121.97253585674474,49.84856547016907],[-121.96971932726608,49.84481611796218],[-121.96750475395115,49.84071845272081],[-121.96998586594462,49.83720715124428],[-121.97735624097666,49.835077178772515],[-121.98281262981682,49.8336532425879],[-121.9870172370499,49.8284052119661],[-121.98976851843499,49.8216265128755],[-121.9908762692211,49.81978299935657],[-121.99606765427264,49.81881709740672],[-121.99948994865456,49.817870628792484],[-122.000136424423,49.817478849139654],[-122.00340648801793,49.81747693333498],[-122.00800417202258,49.816451605227336],[-122.01162953704014,49.81508548225935],[-122.01463775247886,49.81377384831757],[-122.02055539853579,49.812921131857806],[-122.02550757700408,49.81389178624887],[-122.02895532201208,49.81520608473866],[-122.0325764068774,49.817091181542224],[-122.03582202515405,49.819459010151114],[-122.0376026489484,49.820750218774364],[-122.04149314813193,49.824517005952494],[-122.04282281788295,49.825716339113086],[-122.04687728567572,49.82840014333442],[-122.05014772801381,49.82936896700102],[-122.05686878474509,49.830512341499094],[-122.06216787074707,49.832171467333126],[-122.07038445336927,49.83616714000032],[-122.0772842497536,49.83816446235906],[-122.08090492044293,49.8387970079849],[-122.08860523349298,49.841535446339975],[-122.09319540498781,49.84467610801606],[-122.09814896319368,49.84650169218454],[-122.10089001753225,49.84815414510501],[-122.10213573842455,49.85118121772516],[-122.1057608440284,49.85586567994659],[-122.11071657109665,49.861287918988474],[-122.1136319248584,49.86385461924451],[-122.12019221392661,49.86893705797913],[-122.12487424342706,49.87384443336611],[-122.1286924947447,49.87892810356348],[-122.13391159358079,49.88492108417286],[-122.14020481379532,49.88959688554962],[-122.14100120245055,49.89039716483969],[-122.14356775998648,49.895652072339196],[-122.15119272154699,49.903409801653645],[-122.15545205121256,49.90729086650044],[-122.158466927088,49.9092348048497],[-122.16015319123638,49.90957310576807],[-122.1657170108706,49.909057272871],[-122.17307469205556,49.908592630795795],[-122.1808681239556,49.90858279502304],[-122.19113546442856,49.90983191105874],[-122.1937001428618,49.91017097510936],[-122.1999079046829,49.910622969036496],[-122.21256405015276,49.91249543277175],[-122.22133695095839,49.913626922836585],[-122.23320085945818,49.914811729948404],[-122.23834510757209,49.91549110332204],[-122.24223880371011,49.91679870155867],[-122.24472804878405,49.919250488513114],[-122.24491162663719,49.92227483552817],[-122.24075798981994,49.92513520895525],[-122.23448713993574,49.92897333716321],[-122.23272652124459,49.931888640055234],[-122.23317829937197,49.935372401693506],[-122.23530911223962,49.93862516245959],[-122.23744537382377,49.94164619423407],[-122.2404658633403,49.94392824184361],[-122.246597016421,49.947915499008445],[-122.25387736776,49.95304346027714],[-122.26046092569032,49.95886060730925],[-122.26419907253523,49.96416561109433],[-122.26465304816541,49.968848780569],[-122.26466621343093,49.97022224086819],[-122.26040731014197,49.972796645861784],[-122.25254008068728,49.97680579304081],[-122.24660683724804,49.982066236376824],[-122.24228324676939,49.98641591007562],[-122.24077367957923,49.98812827385471],[-122.24317911344882,49.98977893405338],[-122.24664535276419,49.991946944995235],[-122.25064727628549,49.99473747375627],[-122.25225139135306,49.99713984561839],[-122.25296238227372,49.99970469175916],[-122.2526470796921,50.0038803397268],[-122.25166276417436,50.00650766931929],[-122.25166625019266,50.00884350361462],[-122.25165641210349,50.00930287692429],[-122.25270741728663,50.01147246492584],[-122.25323117190405,50.01478822682216],[-122.25323500880235,50.01593115597896],[-122.25126295895612,50.019691731716705],[-122.25035398056089,50.027341756973584],[-122.25138379500022,50.033340090964515],[-122.25616925149512,50.039060207699514],[-122.25961605344345,50.04134726318488],[-122.26483839850785,50.04432025694857],[-122.27183641320808,50.048326070175456],[-122.27351859145259,50.0489564808391],[-122.28052278225519,50.051192366348424],[-122.28681504995731,50.05410701217036],[-122.28680572001981,50.05627903795684],[-122.28502066138694,50.06101739518603],[-122.28199532153327,50.06535255152002],[-122.27975277554287,50.071056539281926],[-122.27901981565267,50.074717492688556],[-122.27883301229261,50.07888413825868],[-122.2722421936646,50.08572680206191],[-122.26850600518975,50.08726147198499],[-122.26201263274932,50.089307141871075],[-122.24743821470823,50.09277158010166],[-122.24030556532287,50.09761857181999],[-122.2396706773887,50.10292771141473],[-122.24106550127976,50.10823979565891],[-122.2458347121342,50.113557877217694],[-122.25098042868754,50.11653118602762],[-122.25266885873611,50.117622772436434],[-122.25647574847969,50.12121910905336],[-122.25745006307302,50.12282302641535],[-122.25894745910372,50.12487903735436],[-122.26108446899087,50.12665295016858],[-122.26648408287654,50.13116877391493],[-122.27286961374148,50.136145210968564],[-122.27409697746282,50.14031216084663],[-122.27220928411283,50.144024271485236],[-122.27558498818678,50.14779749533908],[-122.28259979857711,50.151117983826744],[-122.28800444147613,50.15597576894878],[-122.28870517978935,50.16043572172916],[-122.29011258639888,50.165856088239046],[-122.29364598743777,50.172028624028044],[-122.29639847273369,50.17317540015225],[-122.30369274340043,50.17278413192315],[-122.31135231545319,50.17341662736076],[-122.31526082201482,50.17621890204676],[-122.31524974360363,50.18032895259807],[-122.31327143865597,50.18535086883591],[-122.30846735581463,50.18769048522007],[-122.30168634800192,50.19122083917898],[-122.29989258239164,50.195331217106805],[-122.29738787844819,50.1990385367391],[-122.28830769452068,50.20028744624547],[-122.27947968120382,50.20187601789808],[-122.27563040165859,50.20775160995888],[-122.27535867201527,50.20935238324139],[-122.27257898766598,50.216542591015234],[-122.26649697181176,50.22052933601064],[-122.26693534212748,50.22338827968665],[-122.27486039925921,50.22430648941258],[-122.28322499616884,50.22483167149648],[-122.28919923021355,50.22575283047224],[-122.29569746081182,50.227307202396325],[-122.30450300405062,50.22811385836097],[-122.3108331128642,50.22812098882657],[-122.31412728518745,50.228694603631745],[-122.3242803389211,50.22916162327423],[-122.33434879281022,50.22894034829993],[-122.34307964713042,50.22911592891395],[-122.34984231741021,50.230375430824814],[-122.35786033886421,50.232613029978175],[-122.36088602778248,50.234443042158105],[-122.35962888918645,50.238036264006666],[-122.35489719974862,50.24083472087326],[-122.34616386195358,50.24379810443671],[-122.34232104364918,50.24722225183456],[-122.3426714515004,50.25018908139197],[-122.3456043427169,50.2521322453316],[-122.35255477917029,50.254766667591106],[-122.35825594949648,50.25722611305571],[-122.36484268749598,50.25950966711437],[-122.37081509528795,50.26368380615801],[-122.36767856594867,50.26899027489369],[-122.3668622875966,50.276015894561326],[-122.36292577283355,50.282692965372696],[-122.35809903226061,50.2874918049268],[-122.35747984200735,50.289947795126444],[-122.35933046539687,50.295426136189256],[-122.36004423009943,50.29913748700035],[-122.36342249743936,50.30696065297457],[-122.3669784213522,50.31170910462229],[-122.37000367971024,50.31519252887787],[-122.37678034256649,50.31890459618879],[-122.37963615732151,50.31942276804661],[-122.38382317640226,50.319827509890935],[-122.38695341777672,50.32113789141202],[-122.39122178254293,50.32599243134667],[-122.396657864558,50.33068066095843],[-122.40299478646423,50.333077457579144],[-122.41433161704524,50.33399506914899],[-122.42477462289786,50.33234179052925],[-122.4324539558276,50.330402725163594],[-122.4381735395656,50.32869021074909],[-122.4387080526177,50.32869055545839],[-122.43941647125922,50.332915976111494],[-122.44004532223664,50.33708143382539],[-122.44173906835523,50.34148414186268],[-122.4450455159772,50.343992863067136],[-122.44994855621657,50.34696210872527],[-122.45655352008123,50.35084939963096],[-122.46120887137074,50.35358520157945],[-122.47021825034498,50.359692089929695],[-122.47460246922354,50.36466287532608],[-122.4809487488396,50.369400029453374],[-122.4833544106203,50.36996683578354],[-122.49005181303585,50.371110065492964],[-122.49988790208111,50.371907926606376],[-122.50783606400249,50.37236083693765],[-122.51427691566332,50.37446838839585],[-122.51830049543689,50.377436915317],[-122.52232417565399,50.382972745636344],[-122.52448067262209,50.38679436963926],[-122.52447590365608,50.39216639917863],[-122.52332821061083,50.3953658138715],[-122.52154364691455,50.39896692835016],[-122.52270526553671,50.401994780820644],[-122.52393445289658,50.40213288942948],[-122.52398061903392,50.402333945703624],[-122.52398266006279,50.40251338393006],[-122.52397197191742,50.40269803655636],[-122.52397015379621,50.40288185190048],[-122.52399687843636,50.40306093098488],[-122.52404665857357,50.403237926528725],[-122.5241088238325,50.4034141860437],[-122.52417107590922,50.403589323620864],[-122.52424395636609,50.40376367001642],[-122.52432228084858,50.40393593797247],[-122.52441123390373,50.40410741471225],[-122.52449667373772,50.404278781100125],[-122.52455361413534,50.40445431832622],[-122.52457147088224,50.404634243177426],[-122.52461945452575,50.40481174841351],[-122.5246657685842,50.40498806763283],[-122.5246396579122,50.40516717978513],[-122.52462057499189,50.405346512370556],[-122.52462608987312,50.40552661659102],[-122.52462457678364,50.40570650029197],[-122.5245949515122,50.40588550203316],[-122.52455649740929,50.406064793540736],[-122.52453042919218,50.40624334000802],[-122.5245376145258,50.406424621012285],[-122.52458358391308,50.40660543632547],[-122.52470568107631,50.40675826737873],[-122.52492910811974,50.40687605047597],[-122.52511970161757,50.4070085381646],[-122.52530292205459,50.407145301483354],[-122.52546603979467,50.407291546073445],[-122.52560365303485,50.40744880295835],[-122.52572677909171,50.407611228124075],[-122.5258373475362,50.40777663299691],[-122.52593175777021,50.4079460292743],[-122.52598686496535,50.40812263171855],[-122.52604913080408,50.408297767208545],[-122.5261453000332,50.40846721829066],[-122.52625767271326,50.40863211224579],[-122.52638624829736,50.40879245800237],[-122.52652206868942,50.408950223777005],[-122.52666517811824,50.409104835153066],[-122.52683923810686,50.409246364012446],[-122.52697004881715,50.40940059832129],[-122.52697913135209,50.40958024625882],[-122.52695469808319,50.40976053486654],[-122.52693035089598,50.409939701570806],[-122.52690424633776,50.41011881314619],[-122.52687466999707,50.410297258066954],[-122.52684505062807,50.41047625938082],[-122.5268189454219,50.41065537081602],[-122.52675615474267,50.41083051628636],[-122.52668290589823,50.41100421828197],[-122.52661137091121,50.4111785317196],[-122.52653464998505,50.411351557950915],[-122.52643885779432,50.411520612532975],[-122.5263344084825,50.411687704266605],[-122.52622652951642,50.411853572799906],[-122.52612726410246,50.41202195140431],[-122.5260435536668,50.41219420029197],[-122.52596331431407,50.412367115714645],[-122.52587103237504,50.41253627978745],[-122.52574768012516,50.41269715539689],[-122.52559672767224,50.41285042704055],[-122.52544933227703,50.41300324324833],[-122.52529846480374,50.41315538360081],[-122.52514078258882,50.41330450313446],[-122.5249660870938,50.41344578373619],[-122.5247778072236,50.41358044843898],[-122.52462882204455,50.41373096459919],[-122.52453297485467,50.41390057346925],[-122.52445439767527,50.41407466440137],[-122.52435808630597,50.414227399159145],[-122.52412537561324,50.41432130956184],[-122.5239676854594,50.414470427209984],[-122.52381667821038,50.414624252527574],[-122.52365212929534,50.41477090544642],[-122.52348595185488,50.41491581569825],[-122.5233300148826,50.41506498746591],[-122.52318251821978,50.41521892208464],[-122.5230419201415,50.41537476431182],[-122.52290646400886,50.41553245005144],[-122.52277786370787,50.41569259988005],[-122.52266301962854,50.41585711270184],[-122.52256026019103,50.41602482053466],[-122.52249050161714,50.41619862893583],[-122.52250406236945,50.41638853777467],[-122.52248934507755,50.416556759334824],[-122.5222070634737,50.4165850105515],[-122.52192718669738,50.41660490686703],[-122.52165423910543,50.41664919346176],[-122.52139349255978,50.41671803589362],[-122.52113450195841,50.416786941855385],[-122.52085100848782,50.416762297456884],[-122.52057228401517,50.416721491490115],[-122.52033108291515,50.4167881383112],[-122.52010425642656,50.41689684467493],[-122.51987849456255,50.41701458048965],[-122.51964168291711,50.41711566722679],[-122.51938093061396,50.41718450488648],[-122.51910260560717,50.417184200914996],[-122.51881781337573,50.41717637894826],[-122.51853356770066,50.41718431723503],[-122.51827663062602,50.41724934076856],[-122.51803972834767,50.4173515369207],[-122.51778313568356,50.41741207193752],[-122.5175020135366,50.41742517079876],[-122.5172303385271,50.41747566732133],[-122.51696790886508,50.41754333117595],[-122.51673486317999,50.41764114762833],[-122.51651611866846,50.417759097464106],[-122.5162814858465,50.417854622988415],[-122.51601460285188,50.41791145685456],[-122.51573478483786,50.417953264111134],[-122.5154664464667,50.41800611047332],[-122.51525023359257,50.4181140164898],[-122.51505187996594,50.41824160126771],[-122.51478371157938,50.41829221126092],[-122.5145041069181,50.4183312063148],[-122.51424188507134,50.418396054569456],[-122.51398393852091,50.41847397365482],[-122.5137526820314,50.418571282584004],[-122.51357085762264,50.418712879567664],[-122.51335931488647,50.41876020273697],[-122.51319242073845,50.41861718836402],[-122.51295493033795,50.418521441885055],[-122.51271006511908,50.41842995201857],[-122.51246700135094,50.418337960482674],[-122.51223521966928,50.41823676919127],[-122.51201485117359,50.41812468199828],[-122.5117713571208,50.418038298074656],[-122.5114958442004,50.4180015109136],[-122.51124690605505,50.41791720351251],[-122.5110018735009,50.41782796244831],[-122.51075868675562,50.41773764536288],[-122.51052506782979,50.41763751691679],[-122.51029526864266,50.41753356775269],[-122.51006551421442,50.417429052694736],[-122.50983764801197,50.41732291423728],[-122.50959828435438,50.41722878332577],[-122.50935124117913,50.417142848681955],[-122.50910226874578,50.417059092806056],[-122.50884947845714,50.41697915652883],[-122.50859462768882,50.41690309519824],[-122.50833595966338,50.41683084444967],[-122.50807737922277,50.41675747125806],[-122.50781884335085,50.416683532053064],[-122.50755666300903,50.41661116869632],[-122.50729598058064,50.41654222560507],[-122.50703139327513,50.4164782238342],[-122.50676804407456,50.416420998849354],[-122.50650052943172,50.41637208065318],[-122.50622672289171,50.41635894961914],[-122.50594263121596,50.41638766943562],[-122.50565927747112,50.41640684846654],[-122.50538067665677,50.416387374523794],[-122.50510470108922,50.41635674597048],[-122.5048274464571,50.416319886737725],[-122.5045521671256,50.41628027318249],[-122.50417732442784,50.416229654893705],[-122.50379189623234,50.41647502128743],[-122.50359008951752,50.41660135309698],[-122.50337843223126,50.41671837715019],[-122.50314874554026,50.416817963294626],[-122.50289751476656,50.416900000498295],[-122.50263827804294,50.416971663331246],[-122.50237565635986,50.417041527379105],[-122.5021195414103,50.4171183526436],[-122.50188325477994,50.41721210507583],[-122.50167822914132,50.41733439144792],[-122.50148125036297,50.41746649486726],[-122.50127446434978,50.417588733942964],[-122.50106429308279,50.417709174403335],[-122.50084418459491,50.417821428691745],[-122.50060450751026,50.417913380099634],[-122.50034526133676,50.41798503748169],[-122.5000875978779,50.41805899340902],[-122.49983164720177,50.41813356964233],[-122.49957569637658,50.41820813630339],[-122.49931803038612,50.41828209042215],[-122.49906053752143,50.418353800287896],[-122.49879824954351,50.41841917742324],[-122.49854225154851,50.41849430707158],[-122.49829913827033,50.41858502053246],[-122.49806424548058,50.41868330748296],[-122.49783581563521,50.41878911242914],[-122.49761239680174,50.4188984400227],[-122.4973906466512,50.41900895349781],[-122.4971770743405,50.41912758805744],[-122.49697026908255,50.4192498188538],[-122.4967083217552,50.41931069471538],[-122.4964295218464,50.419338991341526],[-122.49614974761755,50.419357135314954],[-122.49586776415121,50.41935834013515],[-122.49558673847014,50.419347204222035],[-122.49530601735808,50.41933214571579],[-122.49502499197833,50.419321008378894],[-122.49474247052196,50.41930644928025],[-122.49445994924766,50.419291889461675],[-122.49417879401395,50.41928242822114],[-122.4938984813408,50.419284805454325],[-122.49362495231667,50.419313261848124],[-122.49335785796829,50.41937228472134],[-122.4930890486424,50.41943069490695],[-122.49281169857869,50.41946295992688],[-122.49253170390934,50.41948390380096],[-122.49225192721862,50.41950203793831],[-122.49197197597773,50.419522415002625],[-122.49170521280021,50.419554454647475],[-122.49159204653492,50.41971843370267],[-122.49149755863935,50.419891433821654],[-122.49140328761648,50.42006163377157],[-122.49133516049962,50.420235477326955],[-122.49128263306365,50.42041262167725],[-122.49124236476335,50.420590711917974],[-122.49120732484995,50.420769534443735],[-122.49118441317638,50.42095099008721],[-122.49123970591285,50.42112367607353],[-122.49137724214714,50.421280972700515],[-122.49152369763085,50.42143686910918],[-122.49165943498748,50.42159466610096],[-122.49179161418297,50.42175291701169],[-122.49192370713574,50.421912289546775],[-122.49204683868811,50.4220736273453],[-122.49215547444975,50.422240128975176],[-122.49224622946416,50.42241000498098],[-122.49230649619233,50.422586778872294],[-122.49237937149167,50.42276002024323],[-122.49249881740135,50.42292348973434],[-122.49263794683144,50.423083083696184],[-122.4927972389283,50.4232326365781],[-122.49299241145091,50.42335126985516],[-122.49326589452072,50.423414460835446],[-122.49351105268309,50.42350206222981],[-122.49375410562922,50.42359409471422],[-122.49399535799144,50.423686636444955],[-122.49424043193022,50.4237753580096],[-122.49448357494104,50.423866267051785],[-122.49471156907317,50.42397074898121],[-122.4949335505331,50.4240846035554],[-122.49514437734052,50.42420597684378],[-122.49533684456495,50.42433689020157],[-122.495494740657,50.42448189614364],[-122.49562145126231,50.42464277522274],[-122.49573533561968,50.42481000493949],[-122.49585299818322,50.42497397124269],[-122.49596525746813,50.42513945787503],[-122.49608480971433,50.42530180120716],[-122.4962278660697,50.42545645766886],[-122.49637812920379,50.425609083582636],[-122.49653208227816,50.42575958574249],[-122.49669144057879,50.425908567139224],[-122.49685268862102,50.42605591663361],[-122.49703045332201,50.426194800352754],[-122.49722289130943,50.42632626653125],[-122.49741168395227,50.426459308459386],[-122.49760223548982,50.42659240559062],[-122.49779103036188,50.42672544682888],[-122.49797978248384,50.42685905311653],[-122.4981685364184,50.42699265008634],[-122.49835909243512,50.42712574582885],[-122.49855505317768,50.427257329587],[-122.49874736926473,50.42739048014992],[-122.49892343107132,50.42752873968324],[-122.4990469947885,50.42768501594409],[-122.49910540647869,50.42786341665644],[-122.49923938793671,50.428021712975486],[-122.49935531303942,50.428185628360474],[-122.49946939483215,50.42835060090977],[-122.49958352060568,50.428515016889975],[-122.49969584550102,50.42867994259813],[-122.4998081719124,50.428844859184125],[-122.49992230016748,50.42900927471449],[-122.50003818713952,50.42917374560152],[-122.5001541619339,50.429337094524406],[-122.50027549824058,50.42949948799562],[-122.50039868029839,50.42966081499422],[-122.50052902499168,50.429820685597214],[-122.50066301724291,50.42997897981048],[-122.50079881218772,50.43013676393467],[-122.50093460738546,50.4302945568361],[-122.50106860246338,50.43045285046589],[-122.50119547975083,50.43061204375413],[-122.50130065386313,50.43077842367371],[-122.50144387618984,50.430931385152654],[-122.50147769005648,50.43110900709683],[-122.50149181871997,50.43129050589361],[-122.50151315330476,50.43146998296988],[-122.50153273007466,50.431649404517984],[-122.50155230700011,50.43182882602259],[-122.50157188408105,50.432008247483544],[-122.50159313237461,50.432188846190336],[-122.50153214587745,50.43236178452852],[-122.50142232533071,50.43252812557231],[-122.50130045867127,50.43269071264497],[-122.50117520516504,50.432851510351384],[-122.50104647852301,50.43301163151169],[-122.50090566243423,50.433168555036985],[-122.50076660272003,50.43332554282325],[-122.50067422744921,50.43349411610296],[-122.50063033757925,50.433673783043304],[-122.500641164592,50.43385237035128],[-122.50068912907125,50.43402931406803],[-122.50074408311934,50.434207036124356],[-122.50077420656069,50.434386790171],[-122.50079909908908,50.434565821269594],[-122.50091526441928,50.43472692469494],[-122.50104022112731,50.43488830542387],[-122.50114536148992,50.435055241018226],[-122.50124689872499,50.43522319627828],[-122.50134663545289,50.435391652337415],[-122.50144461478821,50.43556005278653],[-122.50155516272466,50.43572547609286],[-122.50168192645526,50.435886345993836],[-122.50179788060585,50.43605025722008],[-122.50189762121481,50.436218712610426],[-122.50196343566721,50.43639284462858],[-122.50199892689528,50.4365716424829],[-122.5020220241731,50.4367511737569],[-122.50203628755618,50.436930984021686],[-122.50205942829157,50.437109958794686],[-122.50211263327489,50.437287624016214],[-122.50220710315642,50.437455912446],[-122.50234103699866,50.437615324926405],[-122.5025041897283,50.437761606701436],[-122.50267832824848,50.437902603031354],[-122.5028286977013,50.43805466142712],[-122.50297357578066,50.438209362193604],[-122.50311309388229,50.43836500919087],[-122.50324892190345,50.43852279764229],[-122.50339745016589,50.438675921492376],[-122.50353152254428,50.43883364510867],[-122.50365096441219,50.43899822111222],[-122.5037777878989,50.43915853155121],[-122.50395571236588,50.43929628010644],[-122.5041465549396,50.439426554884314],[-122.50426076882651,50.43959040737231],[-122.50434787073677,50.4397629589282],[-122.50442253514736,50.439936800526546],[-122.50448832095898,50.4401114956271],[-122.50455050443566,50.44028719260291],[-122.50461092936976,50.44046284304536],[-122.50467671737144,50.44063752894562],[-122.50477111692808,50.44080693628755],[-122.50491579363039,50.44096443399267],[-122.50504983431743,50.441122720710716],[-122.50511584182635,50.44129460620326],[-122.50513873636683,50.44147694475095],[-122.50512474893159,50.44165755392237],[-122.5050494354482,50.4418334141319],[-122.50486312688693,50.44196305208621],[-122.50461004475379,50.44204446978301],[-122.50436008710766,50.44213105033433],[-122.50416489643253,50.442261531670916],[-122.50395307727216,50.44237910948782],[-122.50372946893872,50.44248957695782],[-122.50351927526005,50.44260889653911],[-122.50332078091586,50.44273645643983],[-122.50312901523218,50.44286815958396],[-122.50294397751966,50.44300401497873],[-122.50277252764126,50.443146488093575],[-122.50260947797294,50.443294281824095],[-122.50244312806826,50.44343915538511],[-122.5022611242591,50.44358129482059],[-122.50206338086323,50.44372180389697],[-122.50182680497097,50.44379474898778],[-122.5015511379324,50.44380347728495],[-122.50125864944978,50.44377907160317],[-122.50097981909607,50.44373766136395],[-122.50072057459668,50.44367100421984],[-122.50046984362585,50.44358549804101],[-122.50021503153617,50.44350716742358],[-122.49995639856319,50.44343265594776],[-122.4996959209888,50.443359210139384],[-122.49943272857003,50.44329804787809],[-122.49916089273071,50.44325742049066],[-122.49888243336265,50.44323400910079],[-122.49859963085281,50.443221138457815],[-122.49831621845122,50.44321612858739],[-122.49803426018815,50.44321509530331],[-122.49775438257527,50.44323267740358],[-122.49747539175995,50.44326154119661],[-122.49719392936778,50.44327682275957],[-122.4969114914304,50.44328196094105],[-122.49663203185774,50.44327143997145],[-122.49635444471177,50.443236804367366],[-122.49608941199944,50.44317670038902],[-122.49585191582817,50.443079798433054],[-122.49559724493048,50.44299977896995],[-122.49533607994721,50.44293529718198],[-122.49505698720064,50.44294277640672],[-122.49478764800622,50.44300623254451],[-122.49451426501273,50.44300827721777],[-122.49423535845159,50.44296797177818],[-122.49397072269817,50.44290281019673],[-122.49371948578691,50.442824019397946],[-122.4934723767576,50.44273748674715],[-122.49322548626726,50.44264815356074],[-122.49297644638347,50.44256380774254],[-122.49271748200249,50.442493766449104],[-122.4924565856422,50.44242591248814],[-122.49220363958555,50.44234649720406],[-122.49196795845535,50.44224907708693],[-122.49173442882991,50.4421466685515],[-122.49148908568755,50.44206018704964],[-122.491239572904,50.441982002601186],[-122.49104550171528,50.44184822938767],[-122.49079610770794,50.44174587438651],[-122.49055887333803,50.44175916511865],[-122.49037271143935,50.4419090265256],[-122.49015245844019,50.44202125620767],[-122.48990920166763,50.4421119486171],[-122.48964984290659,50.44218302243187],[-122.4893797022462,50.442234070218674],[-122.48910225278583,50.44226576864154],[-122.4888236555475,50.44228955820878],[-122.48854360550311,50.442309360662684],[-122.48826197072891,50.44232687212659],[-122.48797994320849,50.44234942640511],[-122.48769668090021,50.442365193576165],[-122.48742052726789,50.44235756974166],[-122.48715107826571,50.44230910715143],[-122.48688904428785,50.442233331906706],[-122.48664366593489,50.442147405078785],[-122.4864082598712,50.44204660778676],[-122.48617087846596,50.44194855422074],[-122.48592181158877,50.4418647578745],[-122.48566514469265,50.4417880251086],[-122.485398463723,50.44172671797338],[-122.48512445543757,50.44169160031157],[-122.48484763993606,50.44166989655873],[-122.4845667403134,50.44165536769255],[-122.48428377698137,50.441644704100135],[-122.48400076973161,50.44163460516275],[-122.48371978319045,50.44162119593136],[-122.4834393646794,50.44160049891174],[-122.48316127338076,50.441572560907844],[-122.48288379444347,50.44153676975533],[-122.48261044469933,50.44149323702401],[-122.48234135579324,50.441440275588405],[-122.48208065601204,50.44137015358706],[-122.48184091632903,50.44127989630729],[-122.48163356223532,50.44115861191392],[-122.4813850336374,50.44106806565827],[-122.48112403098172,50.44100187208784],[-122.4808463909152,50.440990810739],[-122.48055768469519,50.44100863583522],[-122.4802920820625,50.44097883777338],[-122.4800572653659,50.44087073082076],[-122.47978230315383,50.440847948455705],[-122.4795065462537,50.44081276105519],[-122.4792393542835,50.440758169706086],[-122.47895363260864,50.4407603415944],[-122.47869637282024,50.44082695866098],[-122.4784512095021,50.44091925739203],[-122.47822591938326,50.44102793066309],[-122.47802406313858,50.44115252492527],[-122.47783381294171,50.44128649298711],[-122.4776436057469,50.441419895326],[-122.47745854145067,50.44155514308529],[-122.47727681689501,50.441692754770564],[-122.4771001918338,50.44183276831879],[-122.4769235649768,50.44197279053591],[-122.47674843333277,50.44211622466813],[-122.47656002124809,50.44224912448843],[-122.47632359424405,50.44234225414848],[-122.47606557729813,50.442418395561866],[-122.47580773469949,50.44249229282451],[-122.47561716669344,50.442472182908524],[-122.47546872014641,50.44231902260619],[-122.47532568147106,50.442164342626704],[-122.47523494970586,50.44199446593595],[-122.47516391164511,50.44182070798504],[-122.47499353586743,50.44167753743339],[-122.4747881319388,50.44155405266744],[-122.47455635973401,50.44145222020076],[-122.47431891954433,50.44135526298164],[-122.47407365753084,50.44126818649271],[-122.47382593760055,50.441190018731966],[-122.47361504463049,50.441069172870264],[-122.47340964723772,50.44094568545917],[-122.4732390180159,50.4408058684003],[-122.47312139631049,50.440641881351155],[-122.47299111741196,50.440481980711105],[-122.47280225042034,50.440350021324015],[-122.47254741620264,50.440272757612085],[-122.47232132542459,50.4401660356794],[-122.47211773744807,50.440042045285274],[-122.47193274218627,50.43990570915497],[-122.47176444945275,50.439758658565864],[-122.47156794207939,50.43963432554664],[-122.47132462909985,50.43954504623413],[-122.4710721307364,50.43946053901062],[-122.4708441573241,50.43935544513996],[-122.47062761173552,50.439239468904205],[-122.47040526613064,50.43913005493258],[-122.47017373525067,50.43902541306112],[-122.46993644849779,50.43892676800047],[-122.46968905535631,50.438844669061],[-122.46940901226256,50.438819440451525],[-122.46914993037853,50.43875158737903],[-122.46890113249992,50.43866494358119],[-122.46866749816283,50.438564729592834],[-122.46844335887872,50.438455811992476],[-122.46822488998657,50.43834201847347],[-122.46800466399617,50.43822816849351],[-122.46778052727825,50.438119258482814],[-122.4675545463487,50.43801140478002],[-122.46733225778762,50.43790142808452],[-122.46711928880828,50.43778499146999],[-122.4669583593625,50.437634235604875],[-122.46673163596401,50.4375359197073],[-122.46646918122696,50.43746626105256],[-122.46621230887128,50.43739284818815],[-122.46595148181132,50.43732493148369],[-122.46568872167776,50.437259201651024],[-122.46542605016515,50.43719234941976],[-122.46516544475017,50.437121630910056],[-122.46490277481209,50.437054777428585],[-122.46463738087576,50.43700020672801],[-122.46435453980388,50.437010861962506],[-122.46413433044816,50.43691949559454],[-122.46399495115104,50.436763799327835],[-122.46386119948632,50.43660377504117],[-122.4637201082806,50.43644745691516],[-122.46351053950302,50.43633281247191],[-122.46325939229273,50.43625395207197],[-122.46305430884904,50.436127079441675],[-122.46283168884541,50.43602158055467],[-122.46256880929852,50.43595752139556],[-122.46228988687672,50.43591825708403],[-122.4620037989346,50.43592543779293],[-122.46173344738418,50.43591174407893],[-122.46151461157231,50.43580298943955],[-122.46130052508246,50.43567863284518],[-122.46104951695885,50.4355980892109],[-122.4607807523701,50.43554170979447],[-122.46051603176338,50.4354787203478],[-122.4602474001709,50.435420661463766],[-122.45997274580598,50.435394455574645],[-122.45968903485827,50.43539383407772],[-122.4594072567395,50.435413507019454],[-122.4591390121532,50.43546285959663],[-122.45887608335691,50.43553430615086],[-122.45860410396502,50.43556385352148],[-122.45831371246179,50.43555850780685],[-122.45829685349854,50.435391531322495],[-122.45834350739962,50.43520128540416],[-122.45848421429366,50.43504777265874],[-122.45852110851561,50.43486958521047],[-122.45839256797673,50.43471084421891],[-122.45825145724216,50.43455508414226],[-122.45810129389825,50.43440239932969],[-122.4579273080493,50.43426133245092],[-122.45770497404614,50.43415244875053],[-122.45744650847654,50.43407728094463],[-122.45719371442777,50.433997228641694],[-122.45699358007818,50.43387500008746],[-122.45681801854063,50.4337316226747],[-122.45664039152517,50.43359211944191],[-122.45645542500817,50.43345632178738],[-122.45625749342865,50.43332853917483],[-122.4560539810715,50.43320450928047],[-122.4558485793669,50.43308210992663],[-122.45563957472712,50.432960719520985],[-122.45543237287991,50.43283882852009],[-122.45522701892516,50.432715862588026],[-122.45502355585799,50.43259127431113],[-122.45482743378025,50.43246298883281],[-122.4546314453411,50.43233301584653],[-122.4544335238431,50.43220522980106],[-122.4542244833533,50.43208439299456],[-122.45399487214199,50.43197865091171],[-122.45380781041936,50.431847270436194],[-122.45364303443048,50.4317014251409],[-122.45348564375789,50.43155131747818],[-122.45333005576647,50.431400709414206],[-122.45316893134353,50.43125328868737],[-122.45299136906598,50.431113222783964],[-122.45277099667032,50.43100214148267],[-122.45254513091336,50.43089369985847],[-122.45231724384313,50.43078856680454],[-122.45207788432955,50.43069487872987],[-122.45183483438824,50.430603312149415],[-122.45158985047479,50.43051394126351],[-122.4513447355944,50.43042624799338],[-122.45109588577967,50.43034124154154],[-122.45084101320475,50.430265605184864],[-122.45057435933676,50.430205335252246],[-122.45031575178093,50.43013239400267],[-122.45006870713848,50.4300468851137],[-122.44983898402015,50.42994281232732],[-122.44962627412274,50.42982409744738],[-122.44944499251665,50.42968671294048],[-122.44929487441442,50.429534024257585],[-122.44921547507155,50.42935604374647],[-122.44901946534989,50.4292491084373],[-122.44876139530491,50.42916943286256],[-122.44854869188062,50.42905071580192],[-122.4483638565457,50.4289137821201],[-122.44818451677406,50.42877420818565],[-122.44799203526954,50.428644891929416],[-122.44776452325084,50.42853526215187],[-122.44750214935206,50.42846556682646],[-122.44722908138014,50.42844219441265],[-122.44694783465279,50.42843317892079],[-122.44666425661738,50.428431393369124],[-122.44637887630425,50.428430116105474],[-122.44609754150272,50.428422220225706],[-122.44581497896647,50.42840753665955],[-122.4455354816546,50.42842106567327],[-122.44525857183203,50.42844648977637],[-122.4449794628791,50.4284774566674],[-122.44470202227468,50.42850960998047],[-122.44442462580918,50.42854119722808],[-122.44414876618352,50.4285756401023],[-122.4438742213517,50.4286157564899],[-122.44360099262794,50.428661528451805],[-122.44333088084521,50.428712464981324],[-122.44306537853613,50.428771987805824],[-122.44280290527584,50.42883778803848],[-122.44253599807138,50.428892757139565],[-122.44226330474852,50.42881990204211],[-122.442039929675,50.42872501275453],[-122.4420734564317,50.42854559475882],[-122.44198467941361,50.42837517907499],[-122.44188887195932,50.42820453756723],[-122.44183578224829,50.42802851968074],[-122.44181117085154,50.427848917560674],[-122.44182356094137,50.42766937867214],[-122.44184473967583,50.4274901218922],[-122.44183599277655,50.42731046215593],[-122.4418219720356,50.42713064206183],[-122.44179389029291,50.426950361505746],[-122.4417833414146,50.426771210583965],[-122.44183936433326,50.42659701289067],[-122.44192869554567,50.42642500007522],[-122.44200405218135,50.426251422937945],[-122.44204627800573,50.42607339932811],[-122.44207272816888,50.425894311428536],[-122.44208867589602,50.42571432852844],[-122.44209051826051,50.4255344505741],[-122.44208001309663,50.425354733992556],[-122.44205184230765,50.42517558384578],[-122.4419988000816,50.42499900000064],[-122.44193688092273,50.42482326469167],[-122.44190335041019,50.42464505789775],[-122.44188757259727,50.424465180784765],[-122.4418788699675,50.42428496397595],[-122.44186660831903,50.424105190664356],[-122.44184191052095,50.42392670944303],[-122.44173521374634,50.42376021535733],[-122.44157789030042,50.42361008931626],[-122.4414656126353,50.42344735628816],[-122.4414001386496,50.42327206386538],[-122.44134187233374,50.42309475357571],[-122.44123112231054,50.42277855523175],[-122.44104193606837,50.422652704145385],[-122.44083284258053,50.42253352781276],[-122.44060920300514,50.42242007370219],[-122.44037813670504,50.422311436796775],[-122.44014685073323,50.42220559933771],[-122.43991147542613,50.42210694446395],[-122.43966075776981,50.42202410753626],[-122.4394081957384,50.421942326361716],[-122.43917255798112,50.421847035202624],[-122.43896009048139,50.421726064103765],[-122.43875689873641,50.421599200746016],[-122.43853071575475,50.42149577280401],[-122.43827538311493,50.42142683737364],[-122.4380026844936,50.4213770284135],[-122.4377261620244,50.42133102750026],[-122.4374554883555,50.42127789939676],[-122.43718423954813,50.421232066626544],[-122.43690577107049,50.42121074261828],[-122.43662312345639,50.4211977226492],[-122.43634183539376,50.421189801955975],[-122.43606014929044,50.42118692402709],[-122.43577801970892,50.421189663205716],[-122.43549781156743,50.42121269760547],[-122.43522184266064,50.42127129765523],[-122.43512873918428,50.42126774484419],[-122.43519498630702,50.42107587471094],[-122.43519861340953,50.42089605236645],[-122.43524613276396,50.420718208737725],[-122.43522866999497,50.42053770788951],[-122.43515425995616,50.420364372007654],[-122.43497850983819,50.420224888309654],[-122.43481388165924,50.42007844756537],[-122.43468010486013,50.419920637300386],[-122.43455547125356,50.419758613516144],[-122.43444520771382,50.41959312023134],[-122.43434751274076,50.41942465733556],[-122.43425878278052,50.419254233530054],[-122.43417550291927,50.41908173573093],[-122.43409393644536,50.41890985975843],[-122.43401061390239,50.41873791816004],[-122.43393265206129,50.41856503333259],[-122.4338672590281,50.41838917002232],[-122.43381632388943,50.418208715610156],[-122.43374543784479,50.41803549139464],[-122.43360933785996,50.41788490991216],[-122.43340257507707,50.41775904478743],[-122.43320319733597,50.41762891843746],[-122.43300246184232,50.41749369164702],[-122.4328359154211,50.41734943444227],[-122.43277315609966,50.41718491007104],[-122.43279814636156,50.41700240050323],[-122.43281795308073,50.4168185993935],[-122.43278094983856,50.4166402749147],[-122.4327261958415,50.416463637154784],[-122.43266076587535,50.41628833804563],[-122.4325935351617,50.416113538682154],[-122.43258197704097,50.41592535368914],[-122.43249575554869,50.4157679457805],[-122.43225696059645,50.4156685953374],[-122.43202594889799,50.41555994011637],[-122.43178059850625,50.41547668908325],[-122.43151616922185,50.41541194172083],[-122.43125363059657,50.415345572146954],[-122.43098775626852,50.415276836217686],[-122.4307183675259,50.41520799540505],[-122.43047855925654,50.41512154595341],[-122.43033267318413,50.414983572762594],[-122.43027521444914,50.41479672423122],[-122.43019367125278,50.41462483549601],[-122.43011397388261,50.414451890480294],[-122.43002707157129,50.41428095347284],[-122.42992219831284,50.41411450263823],[-122.42981381141318,50.41394793842666],[-122.42972150620574,50.413778518357304],[-122.42963460596414,50.4136075898726],[-122.42954058964217,50.41343754758114],[-122.42942680082264,50.413272500123234],[-122.4293612108655,50.41309944192028],[-122.42934026021227,50.41291882516959],[-122.42932629436584,50.412738991293004],[-122.42931408507312,50.412559222978025],[-122.42927705443645,50.412381461756546],[-122.42922943726299,50.412203917099234],[-122.42917290139141,50.412027776376085],[-122.42910929275361,50.411851974429936],[-122.42904564061071,50.41167672881032],[-122.42897667362872,50.41150186961261],[-122.42889698642266,50.41132892304689],[-122.42880464599861,50.41116005806156],[-122.42869257868769,50.4109956224201],[-122.42856974753326,50.410833655716225],[-122.42843975621906,50.41067314045022],[-122.4283115228996,50.41051268164525],[-122.42819598957723,50.410347566700764],[-122.42807496374233,50.41018509058837],[-122.42788991265985,50.41005260668785],[-122.42767933258033,50.409931103472836],[-122.42748158540283,50.40980326577759],[-122.42730234193883,50.409664211159715],[-122.42712863622125,50.409521969858105],[-122.42695488757354,50.409380284661566],[-122.42676259343948,50.40925037203868],[-122.42656287325764,50.40912527588732],[-122.42640200362493,50.40897669938786],[-122.42618905412905,50.40886298895967],[-122.42593856862078,50.4087784324866],[-122.42568606069092,50.40869718408895],[-122.42543153029494,50.40861924375389],[-122.42517695673227,50.40854185922928],[-122.42492809832099,50.408459044290716],[-122.42469656417458,50.40835765989911],[-122.42450999589282,50.4082223044172],[-122.42436543782516,50.408068060876026],[-122.42423907214749,50.407906531767665],[-122.424121669814,50.407743042485585],[-122.42400967207035,50.4075780450059],[-122.42390488129423,50.40741102170854],[-122.42381103230815,50.40723929505916],[-122.42378281233042,50.4070618144058],[-122.42377945601261,50.406881762415786],[-122.42379204487,50.406700542660374],[-122.42381860079225,50.40652088940658],[-122.4238763806913,50.40634730950398],[-122.4239951626653,50.4061818888367],[-122.42401982699475,50.40600386586332],[-122.42399174055913,50.40582469782868],[-122.42395126667414,50.40564626349827],[-122.4239001190076,50.405469167004654],[-122.4238455916106,50.40529026985384],[-122.42375859702115,50.4051210131366],[-122.42361400666466,50.40496733339544],[-122.42342952374219,50.40482810151392],[-122.42321866869455,50.40471051976063],[-122.42297788439664,50.404615021963544],[-122.42274461748302,50.40451357627741],[-122.42256523114409,50.40437676562138],[-122.42238782521721,50.40423720244754],[-122.4221771981541,50.40411680968192],[-122.42196468245291,50.40399803793845],[-122.42176346378275,50.40387007560289],[-122.42155653145312,50.40374755153642],[-122.42132071472913,50.403656151011944],[-122.42104422875714,50.403611229271156],[-122.42081039317087,50.40351707546285],[-122.4205978838805,50.40339830101022],[-122.42036629574807,50.4032980376908],[-122.42011378434647,50.403217332450005],[-122.41985798224471,50.40313371309702],[-122.41963369096679,50.403030309986846],[-122.41945638830548,50.40288962010435],[-122.41931393291631,50.402731495007956],[-122.41921979945604,50.40256369419308],[-122.41915435305076,50.40238950585216],[-122.4191068302741,50.40221139822484],[-122.41906826939959,50.402031330934776],[-122.41903493488806,50.40185199037512],[-122.41901038351018,50.40167294270799],[-122.41899466069798,50.401493613585984],[-122.4189825403539,50.40131327622566],[-122.41896150357796,50.4011343330408],[-122.41891573956879,50.40095628184585],[-122.41882886071951,50.400785898556975],[-122.41877422527037,50.40060868502761],[-122.4187231035847,50.40043158502867],[-122.4186006036933,50.40026623978418],[-122.41837039276474,50.4001710722498],[-122.41811394429492,50.40009585745702],[-122.41784795687116,50.40002989766365],[-122.41771118289186,50.40000017373914],[-122.41757959077763,50.399971732904945],[-122.41731051355302,50.39992254177074],[-122.41703541025888,50.39988271916191],[-122.41675999633605,50.39984681762692],[-122.41648287106507,50.39981029319294],[-122.41620754702711,50.39977326849784],[-122.41593213442854,50.39973736490109],[-122.41565667740224,50.39970202599754],[-122.41537937585998,50.3996677423661],[-122.41510383065808,50.39963352386925],[-122.4148261289248,50.39960429136366],[-122.41454667092162,50.3995750012968],[-122.4142711717977,50.39954021534773],[-122.41400843932281,50.39947772538276],[-122.41375402586004,50.39939919196303],[-122.41350150314932,50.39931903664609],[-122.41325663133027,50.39923125580857],[-122.41303079606884,50.39912553838431],[-122.41282215252104,50.39900294039876],[-122.41262629666402,50.39887456597661],[-122.41243980365958,50.39873918857854],[-122.41226429680427,50.39859854333587],[-122.41210346742967,50.39845050053933],[-122.41195349008598,50.398298877164194],[-122.41181080807368,50.39814410686655],[-122.41167726559922,50.39798514274846],[-122.41150950321592,50.3978357495524],[-122.41127649356034,50.39775397148238],[-122.41099075499586,50.397737397651476],[-122.41071373574104,50.397699745890186],[-122.41043469367959,50.3976653928782],[-122.41015738141067,50.397653597650205],[-122.4098782419111,50.39766479377252],[-122.40959821062651,50.39768720700933],[-122.40931940058427,50.397716407174435],[-122.40904036759196,50.39774840660314],[-122.40869813242419,50.39782222722476],[-122.39999960894586,50.39665751253361],[-122.35713201942228,50.39090815449026],[-122.35713049984851,50.385817018549425],[-122.35711298449037,50.38581588440371],[-122.35674422002118,50.38580375091122],[-122.35635011888861,50.38575647356514],[-122.35602904677854,50.38572060515181],[-122.35565668086657,50.385709474208426],[-122.35534022803549,50.38572548454259],[-122.35492422432475,50.38573147727876],[-122.3545630561273,50.38575613591487],[-122.35425465782804,50.38578141523333],[-122.3539085232171,50.385816131514574],[-122.35356797335193,50.38584708958608],[-122.35318598311108,50.38591155749058],[-122.35264570784048,50.38590838274252],[-122.35213764521247,50.38596418603423],[-122.35186372075302,50.386020395560806],[-122.35162016029697,50.386136658079685],[-122.35131272328282,50.38621538146877],[-122.3510226752706,50.38627498973002],[-122.35044489763257,50.38634367631749],[-122.35036299833469,50.386333103620785],[-122.35028113465259,50.386431073602715],[-122.3502518944305,50.38646610132435],[-122.35019206594562,50.386531046495925],[-122.34997581513248,50.386766860947766],[-122.34983674845255,50.386897244831125],[-122.34967535106581,50.387107873343446],[-122.34942552519091,50.3873015314795],[-122.34936254482417,50.38736187335051],[-122.34912972228702,50.3874976051907],[-122.34899785781197,50.38753880453413],[-122.34880748653954,50.387606759733345],[-122.34866557112665,50.38766338256558],[-122.34826605104621,50.38787908640214],[-122.34801424729297,50.38796638422896],[-122.34782754204005,50.388076073964655],[-122.34771847889847,50.38816189762396],[-122.34738860440244,50.3883872109391],[-122.34726913940517,50.38847099944182],[-122.34708810711155,50.3885758093213],[-122.346853082377,50.38876038546675],[-122.34659558169153,50.388874485935666],[-122.34627654364077,50.389030986871795],[-122.34583821580384,50.38926902127699],[-122.34560998179002,50.38930422911715],[-122.34531030066084,50.38946079936181],[-122.3451889820784,50.38954564928779],[-122.34503154662585,50.38970691374624],[-122.34485076253159,50.38983029097899],[-122.34473383025797,50.38988266787231],[-122.34445519807312,50.38999663290464],[-122.34415217755617,50.39015084045081],[-122.34386090029925,50.390246948661854],[-122.34361278332338,50.390310172343504],[-122.34333921621148,50.39038324455835],[-122.34320903373766,50.39044699658855],[-122.34305648928749,50.39048244942682],[-122.34273295889567,50.3905201280442],[-122.34243655745499,50.390527209184626],[-122.34215756666842,50.390558484146375],[-122.34213959645528,50.39056294735208],[-122.34200826091116,50.3905974167722],[-122.34184787277091,50.39064273151252],[-122.34161124139085,50.39069452503711],[-122.34111078566399,50.39085119950712],[-122.34077370030361,50.39094746887804],[-122.34050925318434,50.3910382736365],[-122.34025257100521,50.39116363442755],[-122.34000285321645,50.39124648479562],[-122.33950385355011,50.391428502522906],[-122.3391455906302,50.391590435629176],[-122.33878245385138,50.3917038337403],[-122.33869467141008,50.39172230140901],[-122.33837568151354,50.391812422629464],[-122.33821890596218,50.39183479012591],[-122.33798094009622,50.39196808009291],[-122.33765572383571,50.39206979867201],[-122.33751169542884,50.39208696308855],[-122.33737827774368,50.39212529044201],[-122.33705490619535,50.39222594359508],[-122.33695843176298,50.392242997680775],[-122.3367991064072,50.39229678058002],[-122.33672982207598,50.392325981315814],[-122.33641179986896,50.392490919759915],[-122.33623149923727,50.392586181161796],[-122.33563365564889,50.392944312277926],[-122.33534946789122,50.393082806793274],[-122.33502295441701,50.393156923421714],[-122.33475560808088,50.39323973688401],[-122.33442285967304,50.39328215272455],[-122.33436118944357,50.3933042887706],[-122.3340392291326,50.39347415618965],[-122.33399158957457,50.39351869343779],[-122.33377149233678,50.39369192321478],[-122.33370287493256,50.393777948074174],[-122.33345972304548,50.39399652830404],[-122.33327140971356,50.39412526200759],[-122.33312858972911,50.394192516376364],[-122.33282952826366,50.39427540898805],[-122.33253057060648,50.39429193561151],[-122.33241732654993,50.39432024480551],[-122.33207298936044,50.39441849807614],[-122.33169890379112,50.39449271223846],[-122.33114986708219,50.394552698200705],[-122.33095284444454,50.39459340986228],[-122.33076635943482,50.39463447032669],[-122.33060373378306,50.394685318982106],[-122.33039628817781,50.394745929661816],[-122.33017878452192,50.39482195303733],[-122.32982773612234,50.39495934310308],[-122.32951885463545,50.39503290369346],[-122.32924163232786,50.39510694597233],[-122.32902289471329,50.39519810577687],[-122.32869843139521,50.39526833129174],[-122.32837311964381,50.395283982274286],[-122.32829725576464,50.395307336112594],[-122.32798061278699,50.39534632608221],[-122.32775114721606,50.39535277209077],[-122.32764271060876,50.3953868596813],[-122.32748804172398,50.39549138853781],[-122.3273219436339,50.395584857604874],[-122.32704181750138,50.39567286204118],[-122.32676112044928,50.395746216208316],[-122.3264870139693,50.39580348403244],[-122.3262848719873,50.39582039824051],[-122.32620446685591,50.395834602108124],[-122.32589228920729,50.395905227204466],[-122.3256262098567,50.395950387089854],[-122.32538234676213,50.39598222870997],[-122.32518798141027,50.39605506929],[-122.32491010690308,50.39613695264709],[-122.32463971327452,50.39621345988375],[-122.32431368234292,50.39634604869604],[-122.32410266262784,50.39640708725162],[-122.32383550645501,50.396443776144736],[-122.3234905885032,50.39650543468254],[-122.32329551385568,50.39652201131087],[-122.3232238424926,50.39653706990035],[-122.32294486881966,50.39658910177758],[-122.32263268086972,50.39665971762681],[-122.32228794228831,50.3967191289811],[-122.32208412564546,50.39677816252147],[-122.32187919217277,50.39682927639517],[-122.32158362627305,50.396933625905056],[-122.32144999427857,50.39701747533738],[-122.321196936712,50.39720534218195],[-122.32099845229777,50.39728535421998],[-122.32091231249328,50.39734828577845],[-122.32075411295641,50.397409390243546],[-122.32052000080188,50.397451101258866],[-122.32030028495085,50.39746742097082],[-122.32012814932017,50.3975050087568],[-122.32003559589474,50.397581790383846],[-122.31984432486556,50.3977677662018],[-122.31967733471198,50.39787187528917],[-122.31950380051232,50.3979482148995],[-122.31919182595843,50.39801602115468],[-122.31886329229383,50.398070894965414],[-122.31874636107804,50.3980793805508],[-122.31841873996042,50.398123044942096],[-122.318095069858,50.398139836824846],[-122.31782856571682,50.39814672305748],[-122.31764823795986,50.398176719396325],[-122.31747000500158,50.398224223175575],[-122.31733960785243,50.398268251446176],[-122.31716396461516,50.39837038658523],[-122.31695743599165,50.3984624963983],[-122.31684022078065,50.39851764306701],[-122.31651248536784,50.39864902843227],[-122.31641169934238,50.39867547766106],[-122.31614993916176,50.39877531388636],[-122.31601379408754,50.39880340301551],[-122.31579900964459,50.398867117469464],[-122.31565448371173,50.39893316878781],[-122.31530447518871,50.39907842250052],[-122.31494728314381,50.399203757561736],[-122.31463487053375,50.39931990097154],[-122.31434897015517,50.399413297109795],[-122.31396533929181,50.39960355154711],[-122.31375460447838,50.39976862426871],[-122.3135371053425,50.39997339549787],[-122.3135155402477,50.40000023852209],[-122.31346640871995,50.4000627137837],[-122.31326077328146,50.40025157503172],[-122.31313006289932,50.40032089046066],[-122.31285414211646,50.400421372624066],[-122.31248738843708,50.400577307875494],[-122.31213513889823,50.40066343267869],[-122.31201566427534,50.400681391569854],[-122.31176683358744,50.40073046789889],[-122.3116782897844,50.40075788754133],[-122.31147173907681,50.40084998685812],[-122.31117900905413,50.40091897015032],[-122.3110560981309,50.4009789871484],[-122.31071346581123,50.40107667538256],[-122.3106348186365,50.40111229711171],[-122.31033799308132,50.401274495955924],[-122.31014903454019,50.401474587920305],[-122.30994188138172,50.401573979809335],[-122.30981634016572,50.40164458847662],[-122.30953553106563,50.401783141307],[-122.3092549347795,50.40189751396217],[-122.30907259949208,50.40199491490873],[-122.30893770792844,50.40205058931253],[-122.30866367645686,50.40217080305044],[-122.30836138370485,50.40233506414653],[-122.30816902351097,50.402447318153975],[-122.3078713239062,50.40264153240929],[-122.30756492962075,50.402834340303244],[-122.30753859451255,50.40285483260129],[-122.30751648913369,50.40290976622699],[-122.30741111305322,50.40307833976871],[-122.30729197231302,50.403264450276474],[-122.30720660930153,50.403360582190714],[-122.30703958259214,50.40348605115869],[-122.30685292967152,50.40357149032773],[-122.30642675611537,50.403699565038636],[-122.30616534447539,50.40377295430218],[-122.30594944840679,50.403892850871074],[-122.3057266758636,50.40403219629094],[-122.30541028673265,50.40423928689237],[-122.30534195400419,50.40429942667273],[-122.30507219891574,50.404496257488084],[-122.30483799542043,50.40462453928766],[-122.30457311358172,50.40478329007848],[-122.3044564095034,50.404896370347736],[-122.30424143830703,50.40511246506737],[-122.3040076464975,50.405321740787706],[-122.30367076082703,50.40560686610409],[-122.30349062660305,50.40572007823508],[-122.30322393060291,50.40587933228942],[-122.30306925109777,50.4060473811645],[-122.30296559584495,50.40619463784465],[-122.30290825653016,50.40624951935652],[-122.30275641088897,50.40644747268563],[-122.30258008550936,50.406686215354064],[-122.30245912326635,50.40680814942769],[-122.30228853493408,50.40697679093754],[-122.30222657734627,50.407045023902974],[-122.30197080101084,50.40724287199806],[-122.30163944553858,50.407460133297135],[-122.3013898413709,50.407625577519696],[-122.30129980781386,50.40767093550571],[-122.30109643120916,50.407745126484585],[-122.30081634117226,50.40778806984431],[-122.30069094054038,50.40783506268359],[-122.30056262369312,50.40787464264191],[-122.30037086456174,50.407979021618196],[-122.30026502871642,50.40804522124029],[-122.30022055357628,50.40813653197038],[-122.3001313171078,50.408301138856515],[-122.3000496480919,50.40843787974258],[-122.29999476623873,50.40861318978138],[-122.2999638144449,50.408754440908446],[-122.29991772668113,50.408951414767806],[-122.29979959272214,50.40921065951749],[-122.29963986290986,50.40931105027308],[-122.29944859039952,50.409387892219385],[-122.29916220607187,50.409443002650725],[-122.29898968586262,50.4094844784219],[-122.29877487300642,50.40954759371272],[-122.298577801467,50.40958769070873],[-122.29834040439562,50.40960393598076],[-122.29790803231917,50.4096991549064],[-122.29761456153678,50.40973321231118],[-122.2971994339134,50.409832936992714],[-122.29699150607722,50.40989797068945],[-122.29673996884846,50.40993623489344],[-122.29654468807527,50.409954451160026],[-122.296273814855,50.40997070670265],[-122.29603983670077,50.409988186189],[-122.29564186127267,50.409986126597374],[-122.29528951001879,50.40996478799499],[-122.2951025825724,50.409945597513094],[-122.29490677812161,50.40992724356253],[-122.29381327186935,50.40992103361805],[-122.29351428857305,50.409936333013555],[-122.29326810272848,50.40995228248371],[-122.29298530656865,50.40998499334691],[-122.29274426032688,50.41002416654274],[-122.29238377386072,50.41014482291431],[-122.2922058355755,50.41018779868445],[-122.29204940129443,50.41024779833047],[-122.29194789071349,50.410304012423424],[-122.29171960859311,50.41050950696502],[-122.29159590880245,50.41057847500267],[-122.29147301105402,50.410702024670385],[-122.29139555577032,50.41080853258292],[-122.29109038493239,50.41102776527343],[-122.29079246328784,50.4112230532416],[-122.29062626243287,50.411423317801976],[-122.29036902753245,50.41163797199309],[-122.29026401589367,50.411758178156184],[-122.29005812630497,50.411905374349246],[-122.28995920767174,50.41199429126722],[-122.28978488975368,50.41212173188322],[-122.28966816971278,50.41221286875605],[-122.2894871445135,50.41233615216528],[-122.28923085071061,50.412474910216964],[-122.2890991298966,50.412491301562795],[-122.2890656552732,50.41249130504441],[-122.28899515103568,50.41251313002585],[-122.28886806095846,50.41255891972662],[-122.28855999634061,50.41257728539697],[-122.28837963294336,50.4125852978276],[-122.28769031439872,50.41263362807711],[-122.28736713738691,50.412685784488424],[-122.28705333992464,50.41270956866372],[-122.28624919755975,50.41291150706125],[-122.28603993609751,50.41292811192722],[-122.28572822741432,50.413012141196745],[-122.28550445178811,50.413055252527926],[-122.28531669621775,50.41311025181521],[-122.28508294216897,50.41321039012886],[-122.28473645901796,50.41328875164506],[-122.2843828013847,50.413325822511055],[-122.28410103578946,50.413324245590715],[-122.28384655725375,50.41337644665],[-122.28359092731509,50.413464033752874],[-122.28317764292834,50.413668938447806],[-122.28296020003816,50.41374205872513],[-122.28271575652391,50.413843525247756],[-122.28252716548286,50.41392998505264],[-122.2823606341559,50.4140694903262],[-122.28206385258223,50.41422881117505],[-122.28188747169693,50.414380915405346],[-122.28173272561995,50.41450563561291],[-122.28149147567332,50.41471799047149],[-122.28137954218808,50.414814894529265],[-122.28127075205677,50.41491641199591],[-122.28107476599041,50.41513534213298],[-122.28095377054932,50.41527806547411],[-122.2809099891632,50.41536038544307],[-122.28076666068029,50.4155175385736],[-122.28058795816229,50.41567632038801],[-122.28042765631874,50.415804217593255],[-122.28023013207846,50.41595617633569],[-122.27997434383435,50.41608818246418],[-122.27978680173773,50.416183113220555],[-122.27968281392086,50.41629041419819],[-122.2796230313827,50.41639581618279],[-122.27957712275634,50.41656805339598],[-122.27941293619939,50.41682853952104],[-122.2793430718254,50.41694935830732],[-122.27926876997888,50.417102636837114],[-122.27915063227641,50.41729606802529],[-122.27906587803282,50.417426500348135],[-122.27896410837435,50.417635102766646],[-122.27883093969302,50.41781846389891],[-122.27859650566583,50.41818288293742],[-122.27842874494839,50.41835833323671],[-122.27834051886005,50.41853083100917],[-122.27814524239373,50.41871941155201],[-122.27802727992193,50.418846487064236],[-122.27783717980111,50.41901499545026],[-122.27758696221849,50.41914325138906],[-122.27737322914344,50.41923504891267],[-122.27719709057733,50.419362409548604],[-122.27691172411691,50.419532223613885],[-122.27664078373326,50.41971938399934],[-122.27631263755714,50.41991643570585],[-122.27617954520963,50.42005593102128],[-122.27580908211733,50.42023188053272],[-122.27566526044373,50.42033052363334],[-122.27524965371627,50.42062641807001],[-122.27500811247967,50.42077745513855],[-122.2748001897081,50.42092680554296],[-122.27458043018599,50.42102739335619],[-122.27436926948091,50.421151889624475],[-122.27198744831755,50.420376117353385],[-122.26986182444726,50.42272786753377],[-122.27278442109431,50.42380642270858],[-122.27309052008168,50.42391963669415],[-122.27429796083754,50.42436458013047],[-122.29670913637378,50.4353585923554],[-122.29683630087142,50.435462940084285],[-122.29703444377122,50.43560452481848],[-122.29715326189294,50.43576764510446],[-122.29725228463806,50.43593571851564],[-122.2973530196377,50.43610441582671],[-122.29746647448093,50.43626848115509],[-122.2975979237454,50.436428081636535],[-122.2977494935779,50.436578789378736],[-122.29792284926357,50.436721793622944],[-122.29809625168437,50.43686424123939],[-122.29824782464318,50.43701494821905],[-122.29838658662491,50.43717141752953],[-122.2985197997173,50.437331075441676],[-122.29864399361017,50.43749324824595],[-122.29875565303918,50.437657809605184],[-122.29885468589089,50.43782588119066],[-122.29893225507021,50.43799774384299],[-122.29899543938058,50.43817305809878],[-122.2990549705856,50.438349932862195],[-122.2991181095025,50.43852581227492],[-122.29919017727626,50.4387002981236],[-122.29926039561064,50.4388758468332],[-122.2993377849036,50.43904994327179],[-122.299433306191,50.43921790564839],[-122.29955954325747,50.43937676185949],[-122.29970927878263,50.43952853829398],[-122.29987349389587,50.43967573209151],[-122.3000449725606,50.439820351753305],[-122.3002147398843,50.43996435612075],[-122.30040092820055,50.440101602107326],[-122.30059798825025,50.44023526955883],[-122.3007734472587,50.44037439716361],[-122.30090186374977,50.44052826742205],[-122.3009651511933,50.440702458371405],[-122.30100133219618,50.440884742400335],[-122.30105731229547,50.44106206347385],[-122.30113480347015,50.4412350455264],[-122.30121761591099,50.44140763815708],[-122.30129871720513,50.44157960673041],[-122.30137264834092,50.4417530275229],[-122.30142159844739,50.44193011360203],[-122.30145454181324,50.442108915003374],[-122.30150705451886,50.442285561944196],[-122.30155776388219,50.44246270649848],[-122.30159075451137,50.44264094243915],[-122.3016112536277,50.44282102000878],[-122.30161944642728,50.44300067800673],[-122.3016170438722,50.443180549361244],[-122.30161274483721,50.44336204895562],[-122.3016014137241,50.44354330493209],[-122.30157087984075,50.44372223774512],[-122.30150915766407,50.44389450662676],[-122.3014021811475,50.44405964229717],[-122.30126910637728,50.4442205331061],[-122.30113778888564,50.44438148238164],[-122.30102895967062,50.44454768056163],[-122.30096876228131,50.44472281618044],[-122.30093119210666,50.44490151391104],[-122.300874464762,50.44507732305143],[-122.30081246219477,50.44525295613449],[-122.30078548691259,50.445431440378236],[-122.30076549816461,50.44561072453175],[-122.3007472211895,50.445790632605345],[-122.30072273684466,50.44604624584945],[-122.30072555983553,50.44622684882376],[-122.30072121131275,50.44640890402216],[-122.30072579189668,50.44658957455276],[-122.3007553575838,50.446766570874075],[-122.30082411211063,50.446938693297454],[-122.30092146029459,50.44710614611012],[-122.30103657651152,50.44727194215328],[-122.30115530222197,50.447436733734946],[-122.30126505312892,50.44760347512288],[-122.30135333672892,50.447773999007524],[-122.30142010645766,50.44794887073564],[-122.3014743849285,50.44812556609035],[-122.30152329599946,50.448303216019816],[-122.3015525437458,50.44848414191686],[-122.30159446827835,50.44866099183246],[-122.3017027412193,50.4488243090174],[-122.30186320399665,50.44897474573692],[-122.30202019735486,50.44912449961107],[-122.30217908770766,50.449272633930434],[-122.30233978312538,50.44942027030954],[-122.30250223875983,50.44956795609221],[-122.30266298261468,50.449715026651994],[-122.3028145212958,50.44986685557936],[-122.30295514337091,50.4500228100101],[-122.30308665207487,50.450182401259156],[-122.3032001631226,50.45034645785233],[-122.303277679175,50.450519427439716],[-122.30334085155617,50.45069530178885],[-122.30343974625518,50.45086560979903],[-122.30345877371016,50.451042261704565],[-122.30344763189476,50.45122127289975],[-122.30342940965701,50.451400614864745],[-122.30340757834536,50.45158096116315],[-122.30338755096373,50.45176080971561],[-122.30337631677807,50.45194094236309],[-122.30337040368389,50.452120694513326],[-122.30337152469482,50.45230068111258],[-122.30337967989504,50.45248090216049],[-122.30336039951845,50.45267314692861],[-122.30334098147533,50.45286706958775],[-122.30336153853906,50.45304657925129],[-122.30346408084755,50.45319395669598],[-122.303644908016,50.453311327711255],[-122.30386941252961,50.45341215928811],[-122.30412306627346,50.4535015903739],[-122.30439129549478,50.45358531633596],[-122.3046577208092,50.4536695483346],[-122.30490961896362,50.45375891899252],[-122.30516193116318,50.453843246274566],[-122.30541419874068,50.45392812929685],[-122.30563288329495,50.45403551116732],[-122.3058085488613,50.45417295048448],[-122.3059599756729,50.454326452217096],[-122.30610395605969,50.4544847621925],[-122.30624821225558,50.45463971606976],[-122.30637081545531,50.454800687569424],[-122.30632974098297,50.454979267741905],[-122.3062764930141,50.455155759888626],[-122.30622148670382,50.455332184421295],[-122.30616647922889,50.45550861786105],[-122.30610614974593,50.45568543182049],[-122.30605641816547,50.45586203189155],[-122.30605407816154,50.45604134414762],[-122.30608885515744,50.4562196343247],[-122.30613247149238,50.456397661021974],[-122.30617076575395,50.45657607722392],[-122.30618786462006,50.45675490308871],[-122.30619075570056,50.45693494720181],[-122.30618480686482,50.45711526368175],[-122.3061789042749,50.457295014827615],[-122.30611019244823,50.4574664837617],[-122.30591801892122,50.45759504363856],[-122.30567898772902,50.457692800844264],[-122.30545981993494,50.45780640684889],[-122.30524569799273,50.457922987725944],[-122.30502819560758,50.45803776407742],[-122.30480407017234,50.458147262823765],[-122.30457674736664,50.458252722744014],[-122.30434761914147,50.45835867989766],[-122.3041268705307,50.458469972375674],[-122.30392112195211,50.458591895384565],[-122.303723661035,50.45872027544369],[-122.3035244865297,50.45884803122048],[-122.30330354890818,50.45896157418563],[-122.30310640674703,50.4590860229696],[-122.30298880088976,50.45925137058971],[-122.30289554249823,50.45942089471675],[-122.30282130828319,50.459594993781444],[-122.30275577569462,50.45977050752459],[-122.30271481994743,50.45994740733386],[-122.3027548632906,50.46012587358812],[-122.3028217030557,50.460300176503054],[-122.3028938655067,50.460474098911085],[-122.30297135143881,50.46064763182922],[-122.30305068877296,50.46082010167617],[-122.30313720048888,50.46099111903554],[-122.30322722989094,50.46116226251204],[-122.30331735264222,50.46133227530029],[-122.30340562451107,50.461503359937254],[-122.30348677024331,50.461675322621566],[-122.30355893745492,50.46184924430091],[-122.3036221731172,50.462024550729616],[-122.30368365034653,50.46219979846763],[-122.30374151826842,50.46237605050701],[-122.30383344991044,50.46254556492043],[-122.3039432937702,50.46271173524601],[-122.304053184029,50.462877349112844],[-122.30413785187827,50.46304943722282],[-122.30423154534454,50.4632190097745],[-122.30439911631143,50.46339104365537],[-122.30457057413054,50.46355870803604],[-122.30464244790325,50.46369324629663],[-122.30443047627975,50.463740168117944],[-122.30409192397558,50.46373900993195],[-122.3038086355895,50.463730694953696],[-122.30352944145662,50.46375850501929],[-122.30328749803718,50.46384828787188],[-122.30305671693789,50.46395250508656],[-122.3028357994979,50.46406548111522],[-122.30263502380194,50.46419093261689],[-122.3024780492647,50.46434147086683],[-122.30236913124911,50.464508222559566],[-122.3022449323126,50.46466772572863],[-122.30205595925662,50.464799759851665],[-122.30185166007142,50.46492509253812],[-122.30165240653113,50.465053409260086],[-122.30145986569165,50.46518589029428],[-122.30128098247553,50.465323882917666],[-122.3011565941989,50.4654856189324],[-122.30100326670174,50.4656345852849],[-122.30081743607542,50.46577122085117],[-122.30063155795244,50.465908421368454],[-122.30042919288844,50.466031566735474],[-122.30019681899111,50.466133475861604],[-122.29994629126296,50.46622014933263],[-122.29968691031354,50.46628572510976],[-122.29940416933333,50.46629203834835],[-122.29912405120166,50.46626638987709],[-122.29884448643854,50.46623400215251],[-122.29856575982213,50.46621289734592],[-122.29828797449949,50.46622330493196],[-122.29801099067502,50.4662669207676],[-122.29773001820743,50.466294657455336],[-122.29748396954474,50.46636967051963],[-122.29727784506173,50.466495501114565],[-122.29708875772758,50.466628648077624],[-122.29690462383316,50.466765900930255],[-122.29673062929959,50.46690854849481],[-122.29657719025153,50.46705863006476],[-122.2964525039983,50.46722372523841],[-122.29633966932893,50.46739484829895],[-122.29622025864796,50.467560119340774],[-122.29607412857601,50.46770707025843],[-122.29587437700764,50.46781961515787],[-122.29561438169907,50.467892476117115],[-122.29533438234962,50.467951163425745],[-122.29507114358096,50.46802054083376],[-122.2948114230245,50.46809002615262],[-122.29454396545277,50.46814632326299],[-122.29426510698029,50.46816962352182],[-122.29398097078482,50.468192746769915],[-122.29371114520555,50.46823490895508],[-122.29348532118588,50.46834263782157],[-122.29328436181487,50.46846975861631],[-122.29308682743088,50.46859811818298],[-122.29289262584167,50.46872883812623],[-122.29269846886386,50.46885900140173],[-122.2925122309609,50.469000108867284],[-122.29231964719564,50.46913256442954],[-122.29208218552856,50.469210102411814],[-122.291793594219,50.46922294936116],[-122.2915230690036,50.4692735135797],[-122.29126328928247,50.469343555770095],[-122.29100332424782,50.469415840515765],[-122.29074354290093,50.469485881477716],[-122.29050460040622,50.46958136139842],[-122.29030529405232,50.46970965701504],[-122.29016210251987,50.46986344691675],[-122.29003756887205,50.47002630011946],[-122.28990965468316,50.470187348620925],[-122.28974956057371,50.470332133201445],[-122.28951038039482,50.47043041932429],[-122.28926480908659,50.47052060949856],[-122.2890291918413,50.47061844697387],[-122.28883334866497,50.470747422757],[-122.28865264555999,50.4708853352307],[-122.28842837081015,50.47099535547359],[-122.28823590466537,50.47112612574199],[-122.28809256272334,50.47128159956123],[-122.28800274205129,50.47145122637439],[-122.28794056082873,50.47162796809949],[-122.28789064752702,50.47180568709061],[-122.28784596588724,50.471984138923816],[-122.28772873295455,50.47214385086993],[-122.28750778285671,50.47225623894806],[-122.2872769688755,50.472359856999596],[-122.2870912079091,50.472494781600304],[-122.28692382806247,50.47264213460655],[-122.28678922754786,50.47279845716045],[-122.28673574395964,50.472976613909935],[-122.28664596062958,50.473145682968386],[-122.2864769099551,50.47329185472112],[-122.28623807648383,50.47338564713438],[-122.28602077422522,50.473496463016865],[-122.28585366433916,50.47364044950389],[-122.28569312882289,50.473790279187796],[-122.28552254465701,50.473933582049334],[-122.28535191283639,50.47407744989637],[-122.28520165308963,50.474230996945195],[-122.28504801181896,50.474382748066816],[-122.2848375086783,50.4744965965861],[-122.28458357037461,50.474580882493036],[-122.28435621071574,50.47468516831209],[-122.28416705094637,50.47481829191822],[-122.28397275016441,50.474949560525914],[-122.28375020320694,50.47505962969512],[-122.2834874598809,50.47512224960596],[-122.28349864013339,50.47528625869584],[-122.28361547704216,50.475452691221896],[-122.28369296115211,50.47562566910183],[-122.28379377991281,50.47579381411723],[-122.28389460016439,50.47596195003353],[-122.2839507414437,50.47613702888244],[-122.2839781773288,50.47631789423862],[-122.28402181830275,50.47649480361712],[-122.28411537165185,50.4766655118868],[-122.28425605845774,50.47682092852936],[-122.28444262759683,50.476954830312756],[-122.28464748621397,50.477080904682516],[-122.28483586365533,50.477214299408885],[-122.28498914834901,50.47736676271049],[-122.28509548573469,50.47753227451038],[-122.28517830343989,50.477704871341565],[-122.28524681502381,50.4778797962482],[-122.28530287152265,50.478055995566535],[-122.285339342282,50.47823435525801],[-122.28536868352805,50.47841359187083],[-122.28539983038266,50.47859233104402],[-122.28543449657656,50.47877118797823],[-122.28548347012794,50.4789477166626],[-122.28553596392214,50.479124354120266],[-122.28558308627808,50.47930194534714],[-122.28563025557845,50.47947897124572],[-122.28566770327167,50.479666918241236],[-122.2856932076393,50.479871335263915],[-122.28575833966731,50.480023095080625],[-122.2859691561683,50.47996997786156],[-122.28623623255054,50.47991931005936],[-122.2864671298218,50.480029381604396],[-122.28670733395931,50.48013358294892],[-122.28696188946,50.48021351249382],[-122.28719936202093,50.480308057191785],[-122.28741174384619,50.48042875361537],[-122.28759449513466,50.480566452755944],[-122.2877100171805,50.48072776948467],[-122.28779090640533,50.480902547949924],[-122.28798523447495,50.48102826234512],[-122.28822257457867,50.48112449159527],[-122.28846357386695,50.48121915120422],[-122.2887046665015,50.48131268871298],[-122.28894585246492,50.481405104121436],[-122.28918875328137,50.481498134137276],[-122.28942799693074,50.48159273276507],[-122.28966895472362,50.48168795497323],[-122.28990820038624,50.481782552544374],[-122.29015110521877,50.481875580412336],[-122.2903942414198,50.481965808307976],[-122.29064122059609,50.482052232307694],[-122.29089033027128,50.48213421932692],[-122.2911472635828,50.482206912201924],[-122.2914102607192,50.48227025207106],[-122.29167899972835,50.48232815092012],[-122.29194602549079,50.482385434016166],[-122.29221282093673,50.48244552487132],[-122.29247744266434,50.48251059885672],[-122.29274572328835,50.4825741029454],[-122.29301187529984,50.4826420428411],[-122.29326117698837,50.482721781347635],[-122.29348029456995,50.48282526233189],[-122.29364108175868,50.48297289619994],[-122.29379038877752,50.48313140182913],[-122.293969605278,50.483269528773796],[-122.29416169352979,50.48340134633389],[-122.29435748752702,50.4835310289581],[-122.29455508812708,50.483660213678405],[-122.29475824569012,50.48378620959291],[-122.29495043063085,50.483916904137324],[-122.29511863430673,50.48406028441082],[-122.29525928989297,50.48421680726127],[-122.29537813743787,50.484381041188314],[-122.29546651720658,50.48455099672181],[-122.29552966107117,50.484727424406074],[-122.29561438386757,50.48489894909757],[-122.29574244865127,50.485058424673774],[-122.29588310951343,50.48521494654155],[-122.29601830757593,50.48537353512508],[-122.29614994049308,50.48553257131396],[-122.29625990417472,50.48569762295297],[-122.29635000323559,50.485868201509376],[-122.29644010297775,50.486038779956885],[-122.29655002251107,50.486204396474704],[-122.29667253829447,50.48636705923512],[-122.29680607486526,50.486524466342956],[-122.29698151718078,50.48666584407091],[-122.29718663919981,50.48678965066674],[-122.29742194727244,50.48688972184904],[-122.29766290453321,50.48698548238843],[-122.2979075668264,50.48707911667478],[-122.29815042455691,50.487173248005845],[-122.29838944077059,50.48727119136471],[-122.29861739170518,50.487374955126946],[-122.29883052843057,50.48748721243129],[-122.29901199729646,50.48761979033248],[-122.2991544838159,50.48777580098263],[-122.29928391444781,50.48794038212827],[-122.29942089256073,50.48809902472171],[-122.29955615811043,50.488257043166016],[-122.29972488375796,50.4884589221066],[-122.3000914336352,50.4885082554263],[-122.30035244466896,50.48857487068153],[-122.30063334565186,50.48859267335736],[-122.30091341917428,50.488620560445725],[-122.30119701221074,50.48864857310784],[-122.30146875815495,50.488691926106206],[-122.30172213391533,50.48876559819681],[-122.30196528400995,50.48885636526454],[-122.30220228141215,50.48895760627386],[-122.30243173431423,50.48906477635841],[-122.30265391803005,50.48917451983454],[-122.30281391715823,50.48931087394164],[-122.30309171807315,50.489323501591095],[-122.30338243729649,50.489329244209145],[-122.30364808093394,50.489382519058594],[-122.3038985084826,50.48947070788192],[-122.30414745292303,50.4895554728211],[-122.30442409384075,50.4895607438521],[-122.3046696573397,50.48964371254044],[-122.30491277249061,50.48973502935591],[-122.30515200084503,50.48983071471847],[-122.30539285268266,50.48992813600802],[-122.30563208307937,50.49002382031394],[-122.30587321202816,50.49011788480724],[-122.30611045499676,50.4902163089147],[-122.30633080139349,50.490327107872815],[-122.30653420568756,50.4904508380751],[-122.30672812126326,50.49058269130318],[-122.30692027866766,50.4907144766356],[-122.30711979864782,50.49084257485232],[-122.30732839568965,50.49096760077017],[-122.30752972357996,50.491095200469786],[-122.3077128095553,50.49123005628381],[-122.30784685844195,50.49138184133355],[-122.30790274435292,50.49156139100489],[-122.3079549723616,50.49174251035256],[-122.30807471356454,50.49189662608844],[-122.30829863874557,50.49200698170635],[-122.30851303035499,50.49212600773714],[-122.30864833909328,50.49228402329732],[-122.30869380680713,50.492461534318664],[-122.30873204995315,50.49264106325177],[-122.30884591838159,50.4928022970534],[-122.30899753149504,50.49295522204275],[-122.30909496302856,50.49312322342324],[-122.30916002418897,50.493298578453874],[-122.30922684600596,50.49347399193504],[-122.30927773507487,50.49365000017381],[-122.30929476846194,50.49382993893311],[-122.30928363850232,50.49400895021609],[-122.30927607510411,50.49418751324105],[-122.3092667059025,50.494366573996736],[-122.30924844307735,50.49454647261927],[-122.30923018084134,50.49472636222635],[-122.30922423917131,50.49490667044929],[-122.30933992158397,50.49506739655303],[-122.30948589520587,50.49522464010399],[-122.30959949731793,50.49538923731215],[-122.3097022633375,50.495556847949786],[-122.30980326988147,50.495724399940514],[-122.30995887573567,50.49587183228444],[-122.3101641207842,50.495995057214714],[-122.31037871992476,50.49611183593358],[-122.3106082279111,50.49621899715693],[-122.31077476696497,50.49636229304068],[-122.31083983932801,50.496537646388255],[-122.31079929544562,50.496709489625346],[-122.31079706399439,50.49688767136909],[-122.31078936874485,50.497067911722105],[-122.31079760721826,50.49724756595834],[-122.31081288772018,50.497427445186524],[-122.31083530068413,50.497606445786666],[-122.3108645259333,50.4977884797625],[-122.31096428681784,50.49794979866251],[-122.31118788187933,50.49806463388026],[-122.31135049541629,50.49821286309794],[-122.3114121438022,50.49838697716449],[-122.31144855136961,50.49856755794995],[-122.3114778715211,50.49874846998818],[-122.31142166839946,50.49891754344786],[-122.31126428136038,50.49907200864225],[-122.31109701922196,50.49921771539206],[-122.31092299066488,50.49935981421583],[-122.3107694884462,50.49950990938588],[-122.31064327878518,50.49967159967507],[-122.31053597421018,50.49983953217007],[-122.31046104454327,50.50000011044755],[-122.31045665095374,50.50001065272515],[-122.31044511119882,50.50019470528824],[-122.3105703938215,50.50034619284237],[-122.310720323261,50.50049849926338],[-122.31082305954266,50.50066666410333],[-122.31094566608685,50.500829308221185],[-122.31111560603425,50.50097440660116],[-122.31137036794284,50.50105372185436],[-122.31160484770541,50.50114360872342],[-122.31171824258327,50.50131101094653],[-122.3118902226963,50.501452801870165],[-122.3120879982963,50.50158138727948],[-122.31216947835662,50.501750535703046],[-122.31225040827769,50.501926413374996],[-122.31233424632966,50.50208833444994],[-122.31222410938716,50.502247743932784],[-122.31207690930398,50.502407046741766],[-122.31193151495773,50.50256584254339],[-122.31179163027768,50.50272201417656],[-122.31168793483695,50.50288895154157],[-122.3116084732401,50.50306175012377],[-122.31152034644707,50.5032325693468],[-122.31142179309538,50.503401359672615],[-122.31132499955349,50.5035702083687],[-122.31124729591981,50.503743065040425],[-122.31121152340842,50.50392125541767],[-122.3112091103195,50.50410166972358],[-122.31116629507265,50.504279626029955],[-122.31103145496894,50.50443877125812],[-122.3110072091435,50.504605531612185],[-122.31125801108239,50.504690337535635],[-122.31149335196069,50.50479149825618],[-122.31163083699832,50.50494508000164],[-122.31174966143959,50.505110970058645],[-122.31191244030926,50.505257510355136],[-122.31209360639396,50.50539510648306],[-122.31228019279065,50.50553119988219],[-122.31245589561566,50.50567086304526],[-122.31260042989543,50.50582466835068],[-122.31272120444163,50.50598837255787],[-122.3128618059439,50.50614711199197],[-122.3130227852538,50.50629415726948],[-122.3132704916776,50.50637379904752],[-122.31355251881291,50.50637922262222],[-122.31383434456562,50.50636552961063],[-122.31411623371842,50.506372638569445],[-122.31439175746345,50.506414398062844],[-122.31465886294468,50.50647274640714],[-122.31493258163647,50.50651500240538],[-122.31521055526616,50.506548411135086],[-122.31548935552755,50.506571716214566],[-122.31576983430332,50.50655290839439],[-122.316051495299,50.506562820813286],[-122.31633256073737,50.50658001813408],[-122.31661085709669,50.506609493433025],[-122.31688675134305,50.50664676051138],[-122.31716047317856,50.50668901101322],[-122.3174340114484,50.50673351292077],[-122.31770759645774,50.5067774488888],[-122.31798118200017,50.50682138418108],[-122.3182545847708,50.50686756190816],[-122.31852540260145,50.50692377458119],[-122.31879743196238,50.506986774298205],[-122.31906507665775,50.50701701474794],[-122.31932173825494,50.50694398566552],[-122.31958052545296,50.50686653709203],[-122.31983894604332,50.506793565163186],[-122.3200925872208,50.506714253489015],[-122.3203462275061,50.50663494122813],[-122.32060459936713,50.50656253276311],[-122.32086900564042,50.506502694194005],[-122.32113949194667,50.50645486918746],[-122.32141471098818,50.50641393889654],[-122.32169123163793,50.506378683016905],[-122.32196928399358,50.50634628418298],[-122.32224900506645,50.50631506453091],[-122.32252701122275,50.50628322059261],[-122.32280631923108,50.506257051040194],[-122.32308759295408,50.50625005494795],[-122.32336916214108,50.50626107038432],[-122.32365009157824,50.506279927058976],[-122.32393106663939,50.50629822672884],[-122.3242205940474,50.50629825756976],[-122.32451012218775,50.506298278683836],[-122.32476356601792,50.506351093941284],[-122.32496949422782,50.50646699529692],[-122.3251592339879,50.50660822598248],[-122.32536415815997,50.50673646374365],[-122.32559583702954,50.50683972092494],[-122.32583126738238,50.50694028574541],[-122.32603502839152,50.5070611782924],[-122.32620323430203,50.50720675051858],[-122.32636593015945,50.50735495609186],[-122.32652320738613,50.50750467347371],[-122.32670826894932,50.50763843194656],[-122.32692287416793,50.507756307569636],[-122.32714502670211,50.50786824265477],[-122.32734865864929,50.50799081051088],[-122.32750223774404,50.50814264406308],[-122.32757818486925,50.50831553506216],[-122.3276812760894,50.508480318012815],[-122.32785694668517,50.50862107787762],[-122.32799061192713,50.50877900843859],[-122.32811158773912,50.50894100849515],[-122.32831305467805,50.509068567704674],[-122.3285750943304,50.50912446461995],[-122.3288569820304,50.509153460331014],[-122.32908918358395,50.50925054582516],[-122.32930384875587,50.50936785135049],[-122.32951101494761,50.5094905314334],[-122.32971262572569,50.50961640119226],[-122.32987525044254,50.50976572275019],[-122.33010601666253,50.50985881789962],[-122.33036280569759,50.509935903813286],[-122.33054964945467,50.51006971368055],[-122.33069416746676,50.510224625151196],[-122.3308114978063,50.51038819243804],[-122.33093966810337,50.5105487439746],[-122.33108039399448,50.51070689419825],[-122.33126385800158,50.5108389085255],[-122.3314991845138,50.510941147671616],[-122.33172682934935,50.51105100455637],[-122.3318774137737,50.51119655105785],[-122.33197298115131,50.51136726984695],[-122.33206687968556,50.511536808794254],[-122.3321554049329,50.5117072947013],[-122.33224569174868,50.511877838662755],[-122.33234315947404,50.512046937297946],[-122.33245688740307,50.51221150772347],[-122.33248453979812,50.51239235302071],[-122.33254294994349,50.51256409289038],[-122.33269304024228,50.512715802105184],[-122.33286476460371,50.512862044810326],[-122.33302754804714,50.51300968330855],[-122.33305778584578,50.51318049240492],[-122.33297676437108,50.51335155910355],[-122.33286960099842,50.51351839774978],[-122.33277282077411,50.513687819314846],[-122.3325987586667,50.51383051481965],[-122.33246085423835,50.51398452534475],[-122.33236917107872,50.51415637301877],[-122.33232837416408,50.51433214134623],[-122.33245516533194,50.5144881459733],[-122.33253011163623,50.51465200163401],[-122.33248565553431,50.51482934042107],[-122.33245899192845,50.51500501761102],[-122.33234324623345,50.51516875625122],[-122.33221878585078,50.51533108237952],[-122.33208019095443,50.51549349932499],[-122.33216069467977,50.51565416485744],[-122.33227772520866,50.51582165046131],[-122.33246130485267,50.515952540429275],[-122.33267957812623,50.51606939849243],[-122.3328589073434,50.516209143892084],[-122.33294929714208,50.51637856478595],[-122.3330073037143,50.51655534607914],[-122.3330333364839,50.51673445428361],[-122.33304162190122,50.5169146588126],[-122.3330534756101,50.51709441433311],[-122.33308845175054,50.51727212632672],[-122.33315901573512,50.517446514977664],[-122.33322601200037,50.51762135252024],[-122.33328944123716,50.5177966299877],[-122.33335287096716,50.5179719073814],[-122.33341806233574,50.51814724284281],[-122.33349219728314,50.51832118211602],[-122.33352017675085,50.51849810485527],[-122.3335944492463,50.51867036614415],[-122.33367752817364,50.518842918034245],[-122.33375889256814,50.5190148464277],[-122.33384201803942,50.51918684183272],[-122.33392875854993,50.51935782288246],[-122.33402805596855,50.51952641136078],[-122.33414722909653,50.51968947510273],[-122.33427113977369,50.51985943339961],[-122.33443491185989,50.519995287804186],[-122.33471647839716,50.520007395855664],[-122.33498812578709,50.520054595098436],[-122.33525737372719,50.520109586420205],[-122.33552902229923,50.520156784335306],[-122.33580256989836,50.52020235287414],[-122.33607607206743,50.520248485999325],[-122.33635174619731,50.5202896340471],[-122.33663121769779,50.520327523962024],[-122.33689685558174,50.52038351666552],[-122.33714449916584,50.520465346953756],[-122.33738581143142,50.520559895811516],[-122.33761930488998,50.52066374054404],[-122.33784340003535,50.5207745889935],[-122.33805642683242,50.520891261593775],[-122.33824324764832,50.52102617828099],[-122.3384226138306,50.52116591385554],[-122.33863758759995,50.52128040024398],[-122.33890947505076,50.52132478146412],[-122.33918723905587,50.52136205056097],[-122.33946319629825,50.52139982617925],[-122.33973924587987,50.52143647058529],[-122.34001714760569,50.52147205976034],[-122.34029360781805,50.521503660283926],[-122.34057219421311,50.52153083193259],[-122.34085383383125,50.521520426345745],[-122.34112939955101,50.52147609230124],[-122.34139752563229,50.5214146352095],[-122.34166662203165,50.5213847059901],[-122.34193732888622,50.52144366000863],[-122.3422151872129,50.52147979997986],[-122.34249526266952,50.52151038947692],[-122.3427749433,50.521524096944276],[-122.34305550370301,50.5215052206076],[-122.34333615492926,50.521485222006675],[-122.34361624502563,50.521493884842876],[-122.3438970498748,50.52151549835959],[-122.34417758188123,50.521540475835856],[-122.34445811419852,50.52156545260352],[-122.34471341520813,50.52164020317333],[-122.34496057964735,50.521728179999116],[-122.34520774505133,50.521816156265906],[-122.34546304872383,50.521890905091325],[-122.34573449157838,50.52194087737117],[-122.34600385488416,50.521994720980395],[-122.34625129674619,50.52207933022659],[-122.34648870433261,50.52217879475536],[-122.34673022731803,50.52227108001548],[-122.34697938826686,50.5223563018354],[-122.34723451601003,50.52243328965832],[-122.34749999755739,50.52249149999589],[-122.34777574166746,50.52253205433597],[-122.34804940627194,50.522576480020675],[-122.34832053748038,50.52263037588409],[-122.34858579462959,50.522691383024195],[-122.3488371766478,50.522771059717954],[-122.34908431024012,50.52285958354662],[-122.34935187586522,50.52291392635565],[-122.34962536325921,50.52296058228527],[-122.34990106633813,50.523001696596246],[-122.35017912243366,50.52303557347535],[-122.35045754248388,50.52306496341955],[-122.35073984912786,50.52308998216021],[-122.35102306478734,50.523103784584194],[-122.3513025870031,50.52309778092433],[-122.35157841468133,50.52307198018047],[-122.35185524138686,50.523033841583896],[-122.35212913501879,50.52298830094674],[-122.35240172164468,50.52293708501307],[-122.35267259134692,50.52288525427708],[-122.35294178989461,50.522832243484146],[-122.35320796422577,50.52277295227514],[-122.353474365241,50.52271085203212],[-122.35373891337314,50.522649814889476],[-122.35400829085057,50.52259455837321],[-122.35427762263672,50.52253985749593],[-122.35455043069952,50.52248583684337],[-122.35482282926104,50.52243686704191],[-122.35509784296103,50.52239921883532],[-122.35537334616747,50.52237733861526],[-122.35565918262772,50.522380527685556],[-122.35594302198326,50.522408399421565],[-122.35621095688258,50.52245823052072],[-122.35646447535802,50.52253346151074],[-122.35671130471496,50.52262589837416],[-122.35695063605776,50.52272371143236],[-122.35718640072685,50.522821964730824],[-122.35741828012986,50.52292459722961],[-122.35764821853684,50.523029405633025],[-122.35787820300013,50.523133657250966],[-122.3581119376516,50.52323522445218],[-122.35835344510868,50.52332804063685],[-122.35860448521127,50.52341218144436],[-122.35884233547851,50.523506567897215],[-122.35905913438125,50.523621063228966],[-122.35926274291303,50.52374581336215],[-122.3594626027499,50.523873256047096],[-122.3596699176665,50.52399587772175],[-122.35988843674862,50.52411099436208],[-122.36010144644158,50.52422873682992],[-122.36029747106166,50.52435998349529],[-122.3604459318826,50.524511604286744],[-122.360514760962,50.52468703786572],[-122.36052491914879,50.524867296288825],[-122.36050165555298,50.52504589288047],[-122.36046597021175,50.52522521597855],[-122.36042152295157,50.52540368519181],[-122.36036492633156,50.52557950722212],[-122.36034712745327,50.52575603364003],[-122.36037151268756,50.525935075695834],[-122.36038700074097,50.526114941729915],[-122.36045953631951,50.52628824729977],[-122.36053022031041,50.52646261663718],[-122.36058663147361,50.52663876733517],[-122.3606341448442,50.52681575098096],[-122.36066386205174,50.5269944006021],[-122.36068287397691,50.527174390752684],[-122.36070193173542,50.52735381559314],[-122.36071566004772,50.5275336235606],[-122.36071701190828,50.527713592796],[-122.3607361149872,50.52789246121785],[-122.36078358531027,50.52807000082264],[-122.36083643064433,50.528246600899614],[-122.36090359600028,50.52842085416899],[-122.36100658313256,50.52858896681071],[-122.36110202581929,50.52876302158234],[-122.3612907263157,50.5288321760397],[-122.36158256820673,50.52882711573583],[-122.36185905364506,50.52881537135662],[-122.36213928901167,50.52880093327207],[-122.36242100930241,50.5288118404889],[-122.36270236664039,50.52882724221063],[-122.36298756477967,50.52883882861228],[-122.36326874205024,50.528856463051355],[-122.36354106099698,50.52889630634184],[-122.36379593743024,50.52897717652178],[-122.36402411429164,50.529082478569386],[-122.36421655765545,50.52921472379558],[-122.36442174061818,50.52934232967083],[-122.3646585970845,50.52942767284842],[-122.36494293979065,50.529449904582016],[-122.36522127292918,50.52948094415202],[-122.36549974259749,50.529510296193486],[-122.36578128710336,50.52952343801286],[-122.36606337410267,50.52952985871143],[-122.36634541629341,50.529536834989834],[-122.36662497297876,50.5295527254486],[-122.36690669905363,50.52956362129011],[-122.36718851502188,50.52957340382589],[-122.36747024136224,50.529584298239335],[-122.36775192224344,50.52959575720731],[-122.36801950548872,50.52965061093548],[-122.36828257110777,50.52971768605355],[-122.36853402712606,50.529797317522075],[-122.36875083532408,50.52991235834115],[-122.3689600105242,50.53003445409768],[-122.3692015760288,50.53012725491645],[-122.3694670864045,50.530185968542895],[-122.36974877155366,50.53019742244392],[-122.3700306825131,50.53020607620325],[-122.37031309116712,50.53020855614923],[-122.3705971711193,50.53021221449559],[-122.37086945990106,50.53025259606843],[-122.37113885806261,50.5303069345237],[-122.37140631372417,50.53036346688958],[-122.37167363486164,50.53042167647198],[-122.37194082150428,50.53048156327162],[-122.3722060657386,50.530543644005206],[-122.37246941385528,50.53060734444378],[-122.37273258202605,50.53067328738821],[-122.37299380860101,50.53074141532548],[-122.37325485530081,50.53081178577836],[-122.37351405079518,50.53088321967454],[-122.37377311199265,50.530956330825475],[-122.37403208299455,50.531030571906726],[-122.37428748664891,50.53110525368959],[-122.37454284636036,50.53118049117669],[-122.37479820620202,50.53125573704301],[-122.37499231568516,50.531367775043464],[-122.37523579826369,50.53145893324501],[-122.37548312160916,50.53154627587659],[-122.37573234268756,50.53163199755259],[-122.3759816997526,50.531716040794706],[-122.37623110323888,50.53179951819848],[-122.37648235964072,50.531881930924115],[-122.37673379745789,50.531962099936145],[-122.37700321290788,50.53201642406973],[-122.3772836481262,50.53204356082063],[-122.37755767023413,50.53208454864143],[-122.37782089994688,50.53214991415313],[-122.37808164622771,50.53222420313166],[-122.3783328636374,50.53230716793155],[-122.37855250766518,50.53240935315227],[-122.37864798146364,50.53258394834302],[-122.37873844055672,50.532755015412015],[-122.37894200988876,50.532881405973946],[-122.37905324869186,50.533035715528285],[-122.37907382782461,50.53321912332246],[-122.37909648495878,50.533398658512034],[-122.37911205031027,50.53357852028974],[-122.37912942233534,50.533757883144176],[-122.37914851086292,50.53393786864261],[-122.37916217913124,50.53411935971679],[-122.3792188083517,50.53429381246876],[-122.37932747804994,50.534458158173486],[-122.37945765146254,50.5346187064034],[-122.37958782580264,50.53477925444954],[-122.37980605922228,50.5350090172902],[-122.37999130093161,50.53514381303485],[-122.38012324056548,50.5353044177536],[-122.38031196347791,50.53543988401324],[-122.38052833336195,50.53556106520391],[-122.38076763403525,50.53557280049015],[-122.38104709038365,50.53554647654165],[-122.3813277667241,50.535526947649146],[-122.38160880407828,50.53550292280407],[-122.38189015621654,50.53547497624605],[-122.38217128234571,50.53544983738239],[-122.38244997079163,50.535433047721924],[-122.38272451415241,50.53546784952727],[-122.3828916523662,50.535608230913205],[-122.3830325933825,50.535766875734],[-122.38321405448843,50.53590490700966],[-122.38344045979697,50.53601123253451],[-122.38367440892262,50.53611162281984],[-122.38391021180539,50.53621093939981],[-122.38414615047591,50.536308577600856],[-122.3843838520931,50.53640627262241],[-122.38462168947217,50.53650228925738],[-122.38486124512976,50.5365989189957],[-122.38509718789223,50.536696555132835],[-122.38533484895602,50.536794804373635],[-122.38557070373213,50.536893561051684],[-122.38581026350472,50.5369901886996],[-122.3860500043579,50.53708457268171],[-122.386293630212,50.53717458446378],[-122.38654123103414,50.537259102452495],[-122.38679858733396,50.537332134360604],[-122.38706375771184,50.53739585699977],[-122.38733087079981,50.53745739314827],[-122.3875960426675,50.53752111450855],[-122.38785159556664,50.537594642973346],[-122.38808953730349,50.53768952150986],[-122.38830620809964,50.53780733149684],[-122.38851185898015,50.53793039631943],[-122.38870635390349,50.538060411850395],[-122.38889890803367,50.53819261289951],[-122.38909521182757,50.538322128671226],[-122.38929531133608,50.53844838490319],[-122.38949902522116,50.5385736426614],[-122.38969533311938,50.538703148341064],[-122.38993174704065,50.53879516612097],[-122.39019697506235,50.5388583248769],[-122.3904583208041,50.53892584583143],[-122.39059902007652,50.53906592176293],[-122.390612781338,50.539246845019335],[-122.39068184028247,50.53942113517722],[-122.39079585032339,50.53958564034213],[-122.3909223754612,50.53974830282144],[-122.39105075349005,50.53990990078202],[-122.39117018684145,50.54007289927807],[-122.39126816176316,50.54023913193992],[-122.39125188063728,50.540420203624635],[-122.39129266040031,50.5405946991399],[-122.39139411580523,50.54076161130134],[-122.39150984935881,50.54092672898451],[-122.39162553845313,50.54109241178418],[-122.39172871374798,50.541259937054605],[-122.39179963211686,50.541433161738375],[-122.39184362421264,50.54161170123894],[-122.39189660787872,50.54178827464283],[-122.39200692426665,50.54195490679877],[-122.39223012606014,50.5420577345183],[-122.39249379410296,50.54211858720265],[-122.39276297437357,50.54217680245082],[-122.39302836142389,50.54223826735623],[-122.39329812752746,50.54228918662417],[-122.39357204680685,50.542332377603955],[-122.39384610173545,50.54237388106823],[-122.39412205445434,50.54241375419412],[-122.39439827643156,50.542450270900254],[-122.39467458939781,50.54248565637729],[-122.39495000392033,50.542532265828726],[-122.39522334286016,50.54258273844072],[-122.39549675015004,50.5425882332929],[-122.39576994477831,50.54253018284873],[-122.39602519067067,50.542453566957334],[-122.39626913334654,50.54236364792078],[-122.39651750903924,50.54228455019416],[-122.39680424864012,50.54230003679073],[-122.39706262438577,50.54225049863227],[-122.39730203996731,50.542150877044605],[-122.39754783036862,50.542059890726655],[-122.39780940197966,50.54199246279391],[-122.3980831848779,50.54194905315517],[-122.39836493874775,50.5419385021377],[-122.39864805053296,50.54193305907645],[-122.39892940009112,50.54192755819278],[-122.39921273565203,50.54191931424784],[-122.39949629572193,50.541908261161105],[-122.39976646319164,50.54186584578944],[-122.39999852144882,50.54179184328406],[-122.40002020543464,50.54178579885781],[-122.40027254406913,50.54170119898854],[-122.40053731959702,50.54163780876935],[-122.40080724596046,50.54157627598047],[-122.40108160659867,50.54152556421476],[-122.4013560253301,50.54149621876858],[-122.40162915783098,50.54150506328046],[-122.40190439498768,50.541553889746055],[-122.40217904976045,50.541610010258324],[-122.40244837358654,50.54166652422446],[-122.4025067490573,50.541665598307354],[-122.4041456178757,50.5420717259192],[-122.40531131437422,50.5426070231511],[-122.40700141005715,50.54363378048492],[-122.40784157688245,50.54457400994607],[-122.4090650869492,50.545449029276604],[-122.41010099308403,50.546173483845386],[-122.41119793813851,50.54695273881306],[-122.41170157903736,50.547661111482995],[-122.41232420791219,50.54887201522688],[-122.41266298173264,50.54952107590744],[-122.4131476694436,50.55020183946046],[-122.41326355130782,50.55036637629933],[-122.4135198242573,50.550609657112666],[-122.41366899821774,50.55075558509747],[-122.41407408982451,50.55119369884926],[-122.41439035890009,50.551504697723054],[-122.4146140698664,50.55175760270793],[-122.41479426197452,50.55191353387368],[-122.4149297421181,50.55209837385267],[-122.41513942986131,50.552283366943705],[-122.4153377296791,50.55232292891337],[-122.41571653092109,50.55231490400276],[-122.416158545716,50.55220096851133],[-122.41647824256911,50.552202846658496],[-122.41688818557151,50.55229195787125],[-122.41721813795418,50.552564590437875],[-122.41759476989786,50.55282804842909],[-122.41833600083231,50.55315103792264],[-122.41966890931583,50.55354480544753],[-122.42186499105205,50.554039990540026],[-122.42288230298745,50.554180678427144],[-122.42338980263273,50.55426559935903],[-122.42407164656812,50.554491626304035],[-122.42491817848749,50.55482470285532],[-122.4255528089697,50.55508911478641],[-122.42623518495621,50.555286466888646],[-122.42717338366813,50.555600540784965],[-122.42774696559196,50.55585510602463],[-122.42825464535507,50.55602715787041],[-122.42949799817124,50.556304355322254],[-122.43087691016521,50.556543719790604],[-122.43250173862549,50.556735303618765],[-122.4348320526002,50.55694499242159],[-122.4358349892616,50.55691137704347],[-122.43686823456838,50.55689670598005],[-122.43759706712342,50.556909943777065],[-122.43805255290553,50.556960520471435],[-122.43852227685844,50.55716616469744],[-122.43901938321102,50.55751716819174],[-122.43951733164637,50.55779061065672],[-122.43997952492168,50.557845891574615],[-122.44089047779224,50.5579475797799],[-122.44190764992702,50.558136434037095],[-122.44282564025198,50.55819392107282],[-122.44442220196449,50.55816291147469],[-122.44510671190753,50.55808866808371],[-122.44739522307859,50.55797854200842],[-122.44803317420661,50.558068640285285],[-122.44906330178124,50.558228040412],[-122.45017291776486,50.5583208217369],[-122.45077904036569,50.5584784769748],[-122.45213319096663,50.55887701468014],[-122.45337623399656,50.55918316196883],[-122.45448042555289,50.559681638737395],[-122.45569011631545,50.560142430300445],[-122.45668911906452,50.56056331870001],[-122.45704653024319,50.560782724281694],[-122.45704553997751,50.56092999013015],[-122.45704558733398,50.56122121314824],[-122.45703985689285,50.56248373883074],[-122.45704062960972,50.56263106055453],[-122.45703986356538,50.56275302960728],[-122.47860130236664,50.56636363962801],[-122.47874301753198,50.56635969903919],[-122.47971960258452,50.56670994472576],[-122.48164760491943,50.56730335385317],[-122.48504188556065,50.56824779977255],[-122.48735828963673,50.569233985215554],[-122.48974777587487,50.570032406546304],[-122.49206558483435,50.570980301625454],[-122.49338428151913,50.57170662821985],[-122.49500604341458,50.57265049594456],[-122.49516693762503,50.57280903736834],[-122.49523928839712,50.57287877909409],[-122.49529914757056,50.57292733093325],[-122.49535591746104,50.57297015458338],[-122.4954684957651,50.57306814844399],[-122.49558967329521,50.57316922852606],[-122.4956620091645,50.573216482233484],[-122.49571858886591,50.57323906118578],[-122.49579426106395,50.57326618143884],[-122.4958630973827,50.57329027985155],[-122.49590992582132,50.57330187453662],[-122.49602748566019,50.57333593617667],[-122.49627936746094,50.57341583073068],[-122.49643582906403,50.573472480290285],[-122.49646806964503,50.5734897946526],[-122.49648319847702,50.573499832792116],[-122.49651006119689,50.57351810208651],[-122.49654552281079,50.57353945764569],[-122.49659099747352,50.573568441443896],[-122.49663466535142,50.57359792598804],[-122.49666139682549,50.5736178821415],[-122.49668534405025,50.573628189035595],[-122.49672348610639,50.57363782769355],[-122.49685795048951,50.57363644140291],[-122.49717678921022,50.57369651332745],[-122.49740957225305,50.573817404883755],[-122.49745970079358,50.57387745020323],[-122.49750842442317,50.57388742182088],[-122.49760410891197,50.57390730048276],[-122.49765394158825,50.573925735145394],[-122.4977225619638,50.57395263192217],[-122.49795216213117,50.57400089644371],[-122.49824283154888,50.57405952047296],[-122.49839385842732,50.5740951998669],[-122.49844179749002,50.57411525657464],[-122.4984951753785,50.57415628958975],[-122.4985533810941,50.57422615015882],[-122.4986211823423,50.57433172550352],[-122.4987012591587,50.574461298714205],[-122.49875935268076,50.57455532475172],[-122.49880578213173,50.57461750159069],[-122.49884598707146,50.57466879657831],[-122.49887326164985,50.574704510200355],[-122.49889400574496,50.57473327210411],[-122.49890993890882,50.574755703099854],[-122.49894117717923,50.574785919694115],[-122.49900637758866,50.574834070682336],[-122.49908370528642,50.57488540975329],[-122.49916954519576,50.57494095643879],[-122.49926496269399,50.57500973908985],[-122.49934265808491,50.57507907920179],[-122.49940482987203,50.57514344222699],[-122.49947190019871,50.57521301448049],[-122.49953067643929,50.57527557951384],[-122.49955362118577,50.57529878874303],[-122.49961264136384,50.57533550124955],[-122.49999644059555,50.575560640214185],[-122.50066162269707,50.57605492320187],[-122.50108143595206,50.57652181119353],[-122.50118614096603,50.576721299782946],[-122.5012940610287,50.57681126961987],[-122.50153297146268,50.576899180140394],[-122.5018014536829,50.576970588262846],[-122.50196873495106,50.57702475411455],[-122.5020981314404,50.57706592709988],[-122.50222001803137,50.57708999851004],[-122.5022656549201,50.57709424904444],[-122.50234893493754,50.577137344526065],[-122.50259224448247,50.57725967911177],[-122.50283916989983,50.57738100244664],[-122.50296149003279,50.57744499651184],[-122.50305374003851,50.577509178374974],[-122.50315075891547,50.57758024717205],[-122.50322258667647,50.57763422535625],[-122.50328413728347,50.57768394967522],[-122.50335261235941,50.577735573662146],[-122.50341473029401,50.57777800297008],[-122.50350909474827,50.57783774447273],[-122.50366618739699,50.57793207277334],[-122.50382186639644,50.57802185000232],[-122.50395579429977,50.5780957691345],[-122.50406770935258,50.57815719507393],[-122.50412175126442,50.57818980864986],[-122.50416825864878,50.57822837379586],[-122.50428021520736,50.578334774657904],[-122.50440140396934,50.57845888838707],[-122.50445344181435,50.57851729875036],[-122.50447453986808,50.57854157305321],[-122.50448451209773,50.578549756865016],[-122.50459035341318,50.57862111042574],[-122.50476987803422,50.578745365836724],[-122.50486548645213,50.57881190015595],[-122.50487837623535,50.57882804602001],[-122.50489873424425,50.578861849405264],[-122.50492875930405,50.57890776666423],[-122.50497683443577,50.578971682917455],[-122.50502477933294,50.57903727706874],[-122.50507474955216,50.57909956179174],[-122.50512798597491,50.579165322141385],[-122.50516511039419,50.57921089569701],[-122.50520310561548,50.579245262144944],[-122.50523417694178,50.579277720021764],[-122.5052342850036,50.57929908596149],[-122.50524166421684,50.57936340543749],[-122.50527040243844,50.57949416561366],[-122.50531536259548,50.57962094703552],[-122.505409034428,50.579735200001636],[-122.50553713375253,50.57983872432456],[-122.5056479664876,50.57991416413359],[-122.50574220733921,50.579975590483954],[-122.50578915360296,50.5800085468395],[-122.50582980625911,50.58005423991234],[-122.5058980045167,50.580132270842974],[-122.50594806428522,50.58019343348556],[-122.5059920486897,50.58026452434445],[-122.50609776488587,50.58038309456901],[-122.50621822400562,50.5805167351733],[-122.50625554247515,50.58081023616772],[-122.50623924433644,50.581429802915814],[-122.50622128965531,50.58216174217135],[-122.50620963103259,50.58265327899896],[-122.50621161010949,50.582832668726674],[-122.50622066807084,50.58289816486452],[-122.50623029056966,50.58304744644962],[-122.50624087077031,50.58327545276857],[-122.50625445547512,50.58351030840359],[-122.50628391504891,50.58383672487761],[-122.50634157575503,50.58418708027469],[-122.50639869442735,50.584385075345416],[-122.50643669479211,50.58446497228225],[-122.50647626334239,50.584570211510574],[-122.50653824016501,50.584728440522554],[-122.50659185474335,50.584903271897005],[-122.50666080066557,50.58515391509943],[-122.50672674206297,50.58539771780451],[-122.50675039221177,50.58550302358181],[-122.50683406202263,50.58551858518278],[-122.50706924038309,50.58556419687815],[-122.50729912720783,50.585609641928386],[-122.50739126972671,50.58562995744381],[-122.50744830571215,50.58564693106858],[-122.50763938517147,50.58569115705281],[-122.50791646604911,50.585743703978245],[-122.50820765967391,50.5857966931525],[-122.5084981142116,50.58585921067706],[-122.50878094720528,50.58592880089385],[-122.50905095374723,50.58600417619614],[-122.5093150604429,50.586087227017764],[-122.50954486744065,50.586179329006264],[-122.5097584947809,50.586274853540054],[-122.5100017402092,50.58635331747235],[-122.51024696845016,50.58642902771259],[-122.51041819403983,50.58650130083597],[-122.5105122575841,50.586542478512456],[-122.5106198009059,50.58656946260216],[-122.51075759421065,50.586594022349985],[-122.51089994053312,50.58662827702369],[-122.511031029804,50.58669366870281],[-122.51112631701888,50.586764674435514],[-122.51117473348454,50.58680161366012],[-122.51119150396266,50.58681338287408],[-122.51124754265467,50.58684324845307],[-122.51135308604641,50.58689602864652],[-122.51147045611098,50.586955925554165],[-122.51163084098361,50.58703122070113],[-122.51180281087582,50.58709395354791],[-122.51191654266161,50.5871323736197],[-122.51201624906089,50.587169229515965],[-122.51215618627997,50.58725738369137],[-122.51230734761462,50.587406036577825],[-122.51240671807598,50.58753844940325],[-122.51247182648788,50.58763380959813],[-122.51251449925738,50.58769923393581],[-122.51252654913411,50.58774908206331],[-122.51256901034357,50.587862845797005],[-122.51266032631926,50.58800793104809],[-122.51270772637052,50.58808081606198],[-122.51271678934974,50.58810077135995],[-122.5127295106655,50.58811915933419],[-122.51274619506951,50.588132049895705],[-122.51277747035651,50.5881392184997],[-122.51286049523333,50.58816318303894],[-122.51299246217545,50.58821734731076],[-122.5130958988674,50.58827455687445],[-122.5131444304122,50.58833286087343],[-122.51317691177259,50.58839290147804],[-122.51322279160696,50.588485409757496],[-122.51328525051896,50.58861498265886],[-122.51332374529812,50.588688703549025],[-122.51333280797724,50.5887086677551],[-122.51337380583897,50.58877291479219],[-122.51345383883064,50.588881109438354],[-122.51355826623882,50.58899399908545],[-122.51356891468618,50.589130376051855],[-122.51344834510694,50.58929412209889],[-122.51346913653197,50.58939090787555],[-122.51367258693506,50.58943551029249],[-122.51383219448718,50.5894753655894],[-122.51394438756662,50.58951091971608],[-122.51401879396334,50.58955485103571],[-122.51405471807341,50.5896161324183],[-122.51406786414611,50.589697495594564],[-122.51405228713077,50.589807191222974],[-122.51402136157567,50.58995519058747],[-122.51400557414128,50.59011322547251],[-122.51401885784297,50.59023844150134],[-122.51404350177371,50.59030836397266],[-122.51405269586094,50.59032664119694],[-122.51407733302428,50.590351023882114],[-122.51416720942632,50.59042354775934],[-122.51431278368088,50.59053042185429],[-122.51448055477185,50.59064754332978],[-122.51468707001062,50.59074395841739],[-122.51486005762872,50.590793792366405],[-122.51492781901005,50.59080940674021],[-122.51495147499043,50.59082363957077],[-122.51498441248059,50.59085502793313],[-122.51501987922204,50.59089942069917],[-122.51504974879893,50.59094757775595],[-122.51509815572715,50.591007558626046],[-122.51517198319787,50.59108182750737],[-122.5152635222716,50.59117857979718],[-122.51537053198793,50.591303915521046],[-122.51545479804736,50.59140324612118],[-122.51551779760632,50.59145750449142],[-122.51560854760773,50.59151881112833],[-122.51573576492116,50.59161161629523],[-122.5158580376026,50.59169976917639],[-122.51592578386028,50.59173842644414],[-122.51594492996809,50.59174239893075],[-122.51601071130756,50.591760765864464],[-122.51610080161477,50.59178494885671],[-122.51615109613026,50.591797766848494],[-122.51622036305294,50.59181680045247],[-122.5163793299919,50.59186505948287],[-122.51654990824701,50.59192324300088],[-122.51666210888068,50.591958803256816],[-122.51677862082595,50.59198437050314],[-122.51703823839846,50.592034664101526],[-122.51743209876035,50.592109954281895],[-122.51771783516531,50.592165552022294],[-122.51789446352778,50.592191317527735],[-122.5180598273995,50.592202680773575],[-122.51813211963326,50.592205500717654],[-122.51818341355595,50.5922054238817],[-122.51828621954644,50.59220245268178],[-122.5183682446412,50.59219377620407],[-122.51841829530292,50.592186914457876],[-122.51843434745852,50.59218516810665],[-122.51847877415008,50.5921595746361],[-122.51885573210656,50.591973489387726],[-122.51966687605264,50.59159298648292],[-122.52038701710522,50.59124561008809],[-122.52070001319106,50.59106314011032],[-122.52079495045297,50.590978969839725],[-122.52083581743011,50.59093077783007],[-122.52086854238155,50.590896389660486],[-122.52089669823859,50.59087534141149],[-122.52094401450647,50.59083522124271],[-122.5209960739346,50.59077950893561],[-122.52101747611772,50.59075431886918],[-122.5210394707571,50.5907443300936],[-122.52106688855329,50.59073281991279],[-122.52108677256882,50.5907272534049],[-122.52111751638743,50.590695609512636],[-122.52121421561634,50.59061150298277],[-122.52134414598521,50.59050931299108],[-122.52144075763098,50.59042632784951],[-122.52150503563878,50.590372679299605],[-122.52155334818727,50.59031966488473],[-122.5215945463001,50.590221446362996],[-122.52164213481062,50.59008633414165],[-122.52169693942886,50.58997224285076],[-122.52173206358401,50.5898839532213],[-122.52175149727945,50.58976988041405],[-122.52175176981466,50.58960630525419],[-122.52171891380357,50.589436630442556],[-122.52165454942445,50.58928564158278],[-122.52157393124229,50.58911616438074],[-122.52148768886829,50.58892795546986],[-122.52142118580798,50.5887589103662],[-122.5214025895293,50.588633529522255],[-122.52140643557485,50.58853808264766],[-122.52141424365004,50.58843713804448],[-122.52141800289814,50.588342812753716],[-122.52142073536048,50.5883074866219],[-122.521421646643,50.58829570526236],[-122.52143302621556,50.58826289813232],[-122.52146538740963,50.58818745621507],[-122.52152360258448,50.58805210936596],[-122.5215835524287,50.58789433031162],[-122.5216193109629,50.587752093010586],[-122.52163125387264,50.58764340735015],[-122.52164335562303,50.587555531066144],[-122.52165661487669,50.587475552211004],[-122.52166709745681,50.58743147378695],[-122.52169551101456,50.58740706042274],[-122.52174442737659,50.58734619447561],[-122.52176828475085,50.58724350286094],[-122.52175599292723,50.587150924265096],[-122.5217601712311,50.58707403442047],[-122.5217807029536,50.58699147657885],[-122.52178722259359,50.586884312244365],[-122.52182750500769,50.58672929098603],[-122.52190383523316,50.586588321876306],[-122.52193541377862,50.58652297415752],[-122.52193301327743,50.586508282930126],[-122.52196770099196,50.586494193530676],[-122.52205752249976,50.58645315303756],[-122.52214747429174,50.5864104255684],[-122.52221909084062,50.58637612842453],[-122.5222933393279,50.586330661301716],[-122.52236118158541,50.586276565961874],[-122.52240703086466,50.58623246865472],[-122.52258882445452,50.586076806583236],[-122.5229019598246,50.585800458668025],[-122.52306224799928,50.58562557688058],[-122.52307969884603,50.58558283139274],[-122.52309373747873,50.5855613503691],[-122.52306056513048,50.58548723268297],[-122.5229704512655,50.58537198402402],[-122.52298557145708,50.585267894622014],[-122.52317538500408,50.585145654266746],[-122.52341983854538,50.58502567882901],[-122.52358956886079,50.58495734431153],[-122.52364258908706,50.5849348237233],[-122.52379114575504,50.58502603867436],[-122.52410431034423,50.58520672076835],[-122.52430471864011,50.585290560444506],[-122.52436371114356,50.58528228462499],[-122.52442990251028,50.58524949861087],[-122.52451740468727,50.58519264326107],[-122.52485468387022,50.585107054697666],[-122.5256305668915,50.58492891124139],[-122.52630471928568,50.58469417630064],[-122.526456170376,50.58451901398802],[-122.52639392694243,50.58440913568335],[-122.52632326560372,50.584270886439725],[-122.52625102552962,50.584107295082084],[-122.52621924735642,50.5839921796347],[-122.52621315597395,50.58395657778729],[-122.52637327929544,50.58389804910226],[-122.52672093610519,50.58376948833196],[-122.52698158285436,50.58366856679074],[-122.52718840030325,50.583577774103375],[-122.52743125482327,50.58343244757709],[-122.52754922612941,50.58325567200867],[-122.52756849147,50.58309774401752],[-122.52757586268876,50.58297936264991],[-122.52771314876169,50.58280431409873],[-122.52799222844709,50.58255612182202],[-122.5281567922882,50.58237124754157],[-122.52822526054246,50.58224014773201],[-122.5283224589355,50.58212625168578],[-122.52845083337995,50.582043685204404],[-122.52868762647964,50.581953825350666],[-122.5289497087353,50.581879927979244],[-122.52906061561858,50.58179456713305],[-122.5290604622989,50.58165907699111],[-122.52909745887865,50.58156916124176],[-122.5291743540436,50.581535024534055],[-122.5292406336508,50.581478061110865],[-122.52926635415248,50.58139678805662],[-122.52927692510028,50.58132853418727],[-122.52933003472064,50.5812818453585],[-122.52938718058085,50.581251589615135],[-122.5294074055521,50.58124153506662],[-122.52943811652466,50.581255985111795],[-122.52954953244046,50.58127857466105],[-122.52973172942596,50.58127751284138],[-122.52989913293595,50.58126193970417],[-122.53006313874445,50.581244569350304],[-122.53053874219424,50.581244788051826],[-122.53119928006308,50.581070880345756],[-122.53148806986657,50.580673438706846],[-122.53153402157648,50.58044438549599],[-122.53158143796897,50.58042562618479],[-122.5316357795672,50.580408773765136],[-122.53193690299679,50.58035575810571],[-122.53242346921145,50.58023657506373],[-122.53270114977998,50.579937166751066],[-122.53279443158259,50.57955274088095],[-122.53281566539573,50.57936901383217],[-122.53279089406557,50.57934632189835],[-122.53278625145673,50.579337740266375],[-122.53279963544377,50.5793246655801],[-122.53285088880563,50.57927904160814],[-122.53313741576244,50.579117075279825],[-122.53367226835294,50.57889876070962],[-122.53424371136565,50.57884798349611],[-122.53474589594937,50.57891591487636],[-122.53496102595405,50.578946227453685],[-122.53506299418737,50.57890780396341],[-122.53538374267094,50.57878343407486],[-122.53573116817834,50.57863404375018],[-122.53587023156197,50.578550111022714],[-122.53588791933176,50.578527051129164],[-122.53590624795628,50.57851862737103],[-122.53593726840185,50.57850610158563],[-122.53596841804628,50.578491897830474],[-122.53604401437958,50.578451527861915],[-122.53616793014008,50.578380614908184],[-122.53628327874152,50.578329115165296],[-122.53640313402971,50.578310927621615],[-122.53659567262707,50.578359080446766],[-122.53685043473729,50.57849462764054],[-122.53712254683654,50.578588547811414],[-122.53737085548575,50.57857828881152],[-122.5374972116936,50.57854455298388],[-122.5376055904786,50.57849171063191],[-122.53782996310473,50.5783789590676],[-122.53807783102475,50.57823657269729],[-122.53829472607123,50.5780831119768],[-122.53846713276018,50.57795636536905],[-122.53859405228287,50.577892298228626],[-122.53877349555711,50.57783492033602],[-122.53911523994502,50.577805078663374],[-122.53952412001229,50.57784478382764],[-122.53973692390385,50.57788231848478],[-122.53988868667108,50.57790896832365],[-122.5404168085944,50.57798441802704],[-122.54136353570956,50.57811111804273],[-122.54216624423016,50.57822545358409],[-122.54246143084649,50.578272298791674],[-122.54250496481104,50.57828095557142],[-122.54255546693445,50.57829096223989],[-122.54262132636875,50.578308183141054],[-122.54267784911228,50.578331868688664],[-122.54285353269064,50.57836936773536],[-122.54314351944953,50.578391872166236],[-122.54331568173407,50.57838317306769],[-122.5433952270002,50.57836034343164],[-122.54348126667952,50.57834502810632],[-122.54354016036869,50.57833786369437],[-122.54373021854627,50.578326347122534],[-122.54397967668775,50.57839312030128],[-122.54408545371858,50.578443070392716],[-122.54413431981754,50.5784743784903],[-122.54422022213849,50.57852989018115],[-122.54439319550018,50.578579678981114],[-122.54458656196702,50.578617166895356],[-122.54483503662759,50.5786507447149],[-122.54491552459619,50.57866167272305],[-122.54498245936345,50.57868792908527],[-122.54501166826147,50.57869895517825],[-122.54503279088532,50.57870016892834],[-122.54511723659573,50.57870560714068],[-122.54529232674675,50.57868181316652],[-122.54547546275641,50.578645334695075],[-122.54567894678405,50.578597129385294],[-122.54590199900713,50.5786164235383],[-122.54623982454346,50.57866064297348],[-122.54652989981902,50.57870506081973],[-122.54689529842027,50.57880466795047],[-122.54722318736502,50.57888623580873],[-122.54747368411489,50.57898564713525],[-122.54754853626173,50.57902394840475],[-122.54766761165934,50.579084984102465],[-122.54794771125661,50.57909817442281],[-122.54807070448562,50.57908512670461],[-122.54833454421856,50.579056769596654],[-122.5487302808198,50.57901452438702],[-122.54903485867064,50.5790312777499],[-122.54922466023399,50.57902311673004],[-122.54951555808937,50.57898772610229],[-122.54998085582466,50.57896055935499],[-122.55014286698487,50.57896895713367],[-122.5502893915346,50.57899486333912],[-122.55041685852983,50.57901568109189],[-122.55060717676433,50.579023831737466],[-122.55077194080073,50.579019388897514],[-122.55181880970078,50.57883203949453],[-122.55283776012278,50.57877817458435],[-122.55402266830552,50.579073479837135],[-122.55550316856188,50.57991871624142],[-122.55687596611075,50.58108608664871],[-122.55908623140253,50.58207752772149],[-122.55992992047253,50.58272086083368],[-122.56094089855964,50.58348909102284],[-122.56283406250982,50.58432898436299],[-122.5634997132518,50.584387774616985],[-122.56377597199105,50.584382258897996],[-122.5640486883739,50.58433052813017],[-122.56432706138101,50.58434362267103],[-122.5646048854282,50.584387055424614],[-122.56487483973393,50.584440929725695],[-122.56513645436038,50.584511401222386],[-122.56537299533522,50.58460921421939],[-122.56559431227893,50.584721163460934],[-122.56587041026246,50.58474092955428],[-122.5661410532824,50.58478582759297],[-122.56635837319459,50.58478803811809],[-122.56655894391753,50.58487068011751],[-122.56675045595425,50.58500251087597],[-122.56695857370639,50.58512529273451],[-122.56718953039045,50.58522685976468],[-122.56744921725257,50.585299523592795],[-122.56770890563791,50.585372177835595],[-122.56797706304317,50.58542654646229],[-122.56825630907707,50.58545146736086],[-122.56854493237469,50.58546936442309],[-122.56881798862963,50.58550589348578],[-122.56902456383759,50.585625817368715],[-122.56913572857528,50.58579114280895],[-122.56919823688564,50.58596845904691],[-122.56935113277925,50.58611988870501],[-122.56958790558639,50.586214883952834],[-122.56985534280787,50.58627878648618],[-122.57002389494656,50.58631771168352],[-122.57024849249864,50.586410081491856],[-122.56989287317322,50.58706187873278],[-122.57049473394582,50.587517221461624],[-122.5712437311646,50.5880838926155],[-122.57618458568852,50.59007930525544],[-122.58588238406904,50.593154795715],[-122.58668982574379,50.59332796989687],[-122.59396932537332,50.59360387186383],[-122.60043422524136,50.59473694765061],[-122.60572841704658,50.59770017701267],[-122.60708033661939,50.5994727321826],[-122.60959830149523,50.60060794203594],[-122.6136441189922,50.60362881701047],[-122.61284669017056,50.608202632989716],[-122.60685469333708,50.614837422591386],[-122.60389337759133,50.61843625099538],[-122.60202973064047,50.62454962441113],[-122.60285130936958,50.629974809637325],[-122.60725185253746,50.632827815785504],[-122.60986801856576,50.633624712198504],[-122.61740607665271,50.63544349366414],[-122.62622818336949,50.637143257686866],[-122.63440235824874,50.6380481757495],[-122.63521516160334,50.63816266415012],[-122.62928805249446,50.64033859831564],[-122.62407477335121,50.64337336729484],[-122.62156953701398,50.646175287477746],[-122.62104328784031,50.64902819155884],[-122.62231229350184,50.65268477365972],[-122.62446920257473,50.65565212590124],[-122.62645071836447,50.6566204411642],[-122.62995079774129,50.656045110804804],[-122.63686545815222,50.65243811049651],[-122.64136038528923,50.65048727714497],[-122.65151806760592,50.6504737393106],[-122.6582458503453,50.650294068885614],[-122.66031703557042,50.649491153421934],[-122.66749607570615,50.64570870222914],[-122.67511967306154,50.64106955750187],[-122.67969084377775,50.64168814497925],[-122.68770510032657,50.64401532919584],[-122.69318083610078,50.64177969785346],[-122.70413769571283,50.642616417578985],[-122.7074794487908,50.64552268079104],[-122.71028379240467,50.64997038276438],[-122.7164059735269,50.65264137226723],[-122.72154355440443,50.65309108966114],[-122.72729415030585,50.652905475015906],[-122.73284840318885,50.65054997554238],[-122.73850506267814,50.6504818809631],[-122.74346860761375,50.65235361755662],[-122.75237105599892,50.65559048315319],[-122.75993193112103,50.65642878853964],[-122.7670217151622,50.65515601010034],[-122.7740324111164,50.65359780040971],[-122.77886212433681,50.65084198192553],[-122.78092699685547,50.65009514815404],[-122.7856825394796,50.64836427600618],[-122.79240700124754,50.64543435601106],[-122.80130290633224,50.64540853604655],[-122.81748174686219,50.64633211444683],[-122.82467178756544,50.64739824387387],[-122.82539014981342,50.64785482984424],[-122.82879372087919,50.64618705107328],[-122.83254433054579,50.64240577837038],[-122.83333644071872,50.63920461781419],[-122.83554450277512,50.63519728697983],[-122.84198618845097,50.63117738449877],[-122.84826588245788,50.62864299299298],[-122.85623119625531,50.625475822306775],[-122.85772224594147,50.621359587287714],[-122.85745435302111,50.62033253634282],[-122.86165021954565,50.61699954250603],[-122.8741128578004,50.61484860228239],[-122.8833418596509,50.61298573288173],[-122.89472785145342,50.61020384997123],[-122.89801617804825,50.60704936837301],[-122.9030267051785,50.60394496646859],[-122.90248024090872,50.60366224547367],[-122.91117027645004,50.601972110063926],[-122.92516887630013,50.59980874969844],[-122.93339519340864,50.596803065251535],[-122.93578769448874,50.59324685535736],[-122.93818137648009,50.5904987767033],[-122.94407125410355,50.58687164120145],[-122.94361853653469,50.58687381923502],[-122.9418677056177,50.582254907194475],[-122.94047408177053,50.57654701519802],[-122.93949722929159,50.56866595259481],[-122.93982911010747,50.56586442401895],[-122.94267780855716,50.56242731982886],[-122.94307419151308,50.5582561991438],[-122.94300326097968,50.55076803397412],[-122.94594149480781,50.54870126298518],[-122.94747697978774,50.54898005328519],[-122.95324941690635,50.552843280239124],[-122.95821722165685,50.556706635029244],[-122.96148923933727,50.56057735820477],[-122.96546752474391,50.564044590135005],[-122.97221912511074,50.56601186179204],[-122.97607554376931,50.566683284752266],[-122.98155408339775,50.566144771988306],[-122.9848916948135,50.567387971217],[-122.98877184225735,50.570455409225346],[-122.99374716948668,50.57449081577109],[-122.99496520983027,50.57911635114277],[-122.99439945460189,50.593511590495716],[-122.99628341118579,50.60173028049362],[-122.996680009038,50.60447668491762],[-123.00543292537525,50.60072191049088],[-123.01768316961945,50.596892758352695],[-123.02362801686641,50.59811738837198],[-123.03020940388988,50.60020387535601],[-123.03588027388163,50.60194763872653],[-123.03758789239203,50.60222519161003],[-123.03994431917208,50.59673004506638],[-123.03836139792016,50.59091032663689],[-123.03764072678297,50.58274027186443],[-123.03957704462454,50.580391041644916],[-123.04476688266303,50.57887680106001],[-123.05114518074993,50.57907076766654],[-123.05916253749321,50.58166180656239],[-123.06357338159289,50.58340856864811],[-123.07135721009446,50.587653676440674],[-123.08046549623961,50.59178007108451],[-123.08424668026419,50.593012667162085],[-123.09012905981426,50.5965310194703],[-123.09449703781921,50.600732732831446],[-123.09457049956067,50.60616415469118],[-123.09388690063317,50.60907964723677],[-123.096430924484,50.61175061294383],[-123.09932584593572,50.61293533011162],[-123.10473497805145,50.61485125412139],[-123.11580253731435,50.61724457742275],[-123.12426477546641,50.61857154182437],[-123.13291114067295,50.620125109495106],[-123.13841924939769,50.621632236871555],[-123.14287185332776,50.62572322841341],[-123.14456590658975,50.63091545810623],[-123.14335854912896,50.635434836737545],[-123.14300040791153,50.63572402997191],[-123.15213777609524,50.63361202039032],[-123.16164145978915,50.63218515308167],[-123.16766586153591,50.63272507293829],[-123.17184775714294,50.6355525868535],[-123.17276955553314,50.63777637006099],[-123.17337810969572,50.641830149454385],[-123.17416955471941,50.647255047234744],[-123.17522121193059,50.651247510362815],[-123.18263115698309,50.65434956198502],[-123.18509492108124,50.65639018700938],[-123.18791947370165,50.659684410777736],[-123.18850184081833,50.662825373375355],[-123.18838942400897,50.666883196915954],[-123.1917497360299,50.669780038062484],[-123.19586162459376,50.67358004416397],[-123.19978577883977,50.678129158120704],[-123.19928857838738,50.68087484558909],[-123.19890741297259,50.68493929634749],[-123.20252577530287,50.686684204266584],[-123.20678561372475,50.6888293548851],[-123.2066815381109,50.69391710324491],[-123.20935366255219,50.69767361936468],[-123.21393028219933,50.703414269023725],[-123.21795815012388,50.70773358536318],[-123.2236219333309,50.71358452608106],[-123.23073436632173,50.71965531783838],[-123.2373437873085,50.72217985032765],[-123.24374287514917,50.72259982758247],[-123.25184824229333,50.722488398932576],[-123.26222889612413,50.72413561403633],[-123.27424749893451,50.72708253317814],[-123.28322163277599,50.73113667112746],[-123.28411886871571,50.730843889709945],[-123.29988347178467,50.72581947748415],[-123.3068951449093,50.72502871062462],[-123.318463820689,50.72843184363485],[-123.3245884411303,50.73347473801676],[-123.33154451159615,50.73982638156133],[-123.33402487840124,50.74249281855787],[-123.34018514168221,50.750104509438565],[-123.34084043841325,50.751018939827595],[-123.3336023844318,50.754842852359054],[-123.32491916444992,50.757650871207446],[-123.31765750624058,50.75993059592484],[-123.31391643297486,50.761957479429334],[-123.30900484226464,50.76479534463515],[-123.3101292376759,50.76758406583991],[-123.31478330657114,50.77046773068469],[-123.31933468703936,50.77317906335906],[-123.32187275112237,50.77418703032432],[-123.32555750203481,50.77358990806233],[-123.3387948316255,50.77304018674018],[-123.34899018100627,50.77422338417249],[-123.35802878343341,50.78010090878216],[-123.3627654338043,50.788406858378934],[-123.36455573937214,50.797081803376315],[-123.3755771002372,50.79397059445467],[-123.3877731589168,50.78993026588609],[-123.40175034224985,50.78599408937495],[-123.41516039227972,50.784458507082235],[-123.42341878534677,50.78753861738128],[-123.42753137292868,50.790363824915886],[-123.43661485925374,50.79395111894197],[-123.44591804935592,50.794957104947294],[-123.45210564667484,50.793307516526625],[-123.47185816194438,50.78937224808005],[-123.48066448220143,50.78809652844132],[-123.49781507454212,50.78463564886787],[-123.50999561817612,50.78138290835501],[-123.5224316807129,50.78939201447843],[-123.54258246159297,50.791499234039065],[-123.56504264538425,50.79243705485555],[-123.57747968468315,50.783859613359105],[-123.59240387559552,50.77857697480685],[-123.60431009902587,50.774974581771865],[-123.60886620854014,50.777389603025846],[-123.61352799341658,50.78369287781314],[-123.61875148050044,50.78746968383539],[-123.62346979906363,50.78873944421169],[-123.6348636373437,50.789999853090826],[-123.64824335064964,50.79158730870173],[-123.65206402942643,50.79320596227602],[-123.66323040186613,50.796409829575836],[-123.67877177717703,50.797450654567825],[-123.68466823142647,50.799335863428304],[-123.69310521618462,50.80485527778944],[-123.694544757432,50.81524481241226],[-123.69328926665857,50.829954271382],[-123.69357821102524,50.83069088693171],[-123.69900134098619,50.83109678056663],[-123.713818843894,50.83208554347996],[-123.7197805578779,50.832249261892194],[-123.71796883663396,50.83878541922383],[-123.71651847048076,50.84909441571455],[-123.71660066267242,50.85583921143249],[-123.71983076905026,50.86947024697695],[-123.72208834404536,50.873185564795556],[-123.72207387584295,50.873469432119414],[-123.72433583291445,50.87850335971254],[-123.72740823915733,50.88216205192268],[-123.73136758901481,50.88433863000838],[-123.73931971296032,50.88467844019241],[-123.74744829870713,50.88490723603936],[-123.74907060556149,50.88490782240891],[-123.75485698780588,50.88501994102562],[-123.76243325419564,50.885480868746065],[-123.76478435759057,50.88655936873921],[-123.76478785308981,50.894739150555516],[-123.76432822792853,50.898803529186374],[-123.7639720448351,50.90080005962185],[-123.763968400337,50.90400084881232],[-123.76406461846881,50.905491449404664],[-123.77752209165891,50.90857624912334],[-123.78619670555263,50.910229740776686],[-123.79071957897668,50.91205914231136],[-123.80662497963432,50.9114784695725],[-123.813302982463,50.91089965044195],[-123.81936903084151,50.91410113702231],[-123.8275934876016,50.91832565072078],[-123.83383573697783,50.92175263081372],[-123.8378225137443,50.92500888383088],[-123.83962525292638,50.9307278726212],[-123.84062790709602,50.934441951982784],[-123.84695332137161,50.93443995696843],[-123.85834808294405,50.93448505281553],[-123.86593899138457,50.93453252735847],[-123.86947359729723,50.93658854904306],[-123.87382536797912,50.939442103754175],[-123.87699828799879,50.94372523018924],[-123.87900346805445,50.94950333391833],[-123.88532374839511,50.947547845857926],[-123.88984842999554,50.94588504972316],[-123.89291723756895,50.943362058683036],[-123.89624236465546,50.93992798832311],[-123.90402310967235,50.93837839680277],[-123.91540928666842,50.9370991285095],[-123.92028811377465,50.936348524567684],[-123.92552463497506,50.93525451681699],[-123.93267373538372,50.93438304773564],[-123.94099386786029,50.93591223017454],[-123.94489591467999,50.93779848636789],[-123.9524998469395,50.94315983656207],[-123.96003205049784,50.94794772641249],[-123.97036801855488,50.954732398966954],[-123.97527088347175,50.95786801490397],[-123.98188646431566,50.9619140076917],[-123.9862306760413,50.963565781892676],[-123.99067128737052,50.96498328140762],[-123.9947538054329,50.96549363262791],[-123.9983086361717,50.963787884650564],[-123.99835239806687,50.96376564928804],[-123.99771466570334,50.96050734481203],[-123.99911841545969,50.95876488177187],[-123.99981479540835,50.95849206524224],[-124.02737937507496,50.937553681848925],[-124.03078116221049,50.9366538640399],[-124.03680328215833,50.93868464595095],[-124.03898906584216,50.94470638666277],[-124.04087902398027,50.950338842840324],[-124.05590223261225,50.97085877412662],[-124.05763898092883,50.973208698864276],[-124.06067668099105,50.97384396024804],[-124.06403918209236,50.97389634747737],[-124.06760615656486,50.97646851579144],[-124.06814370081261,50.97821259947198],[-124.06836771561048,50.9799535319537],[-124.06984813085728,50.9813303516599],[-124.07134763770422,50.98193830436804],[-124.07440304102282,50.98218159937648],[-124.08087929050177,50.98113754960013],[-124.08488798037344,50.98043398158634],[-124.08764412194121,50.98067181584182],[-124.09004758907771,50.981486916422924],[-124.09093267603595,50.982463124934874],[-124.09144639479173,50.98478661327623],[-124.09108344541913,50.98593586308376],[-124.09006368487108,50.98843428584908],[-124.08935999331463,50.99054394047651],[-124.08464650602008,50.993357278585634],[-124.08116885063525,50.99561438485762],[-124.07773892645567,51.0007253394263],[-124.07803958822961,51.001692753511854],[-124.07975886051426,51.003178456276956],[-124.08183035437298,51.0060961354172],[-124.08363054712143,51.007697675819955],[-124.0849039485546,51.00861146613917],[-124.08815282680632,51.01004277954308],[-124.09150135053846,51.01181758790473],[-124.09258422242716,51.01318840330197],[-124.0927528190278,51.015583418032406],[-124.09329176419796,51.018328852291916],[-124.09455830059605,51.01941474428977],[-124.09617510272557,51.01998725633648],[-124.09690041680346,51.0200472483414],[-124.10269466582528,51.02005253086527],[-124.11121472104928,51.02006122136955],[-124.11962986502408,51.02086413215758],[-124.12795445075224,51.02246995057627],[-124.13646944915384,51.02602014606013],[-124.14289239061122,51.02944980799342],[-124.14577112472642,51.03367906132495],[-124.1470371936604,51.038590692022034],[-124.14739198037748,51.04138771897591],[-124.14856288898007,51.044476610605756],[-124.15099345586893,51.0481857305366],[-124.15316191707953,51.04996047617776],[-124.15860851223118,51.051901699229624],[-124.16177482361557,51.05304307687298],[-124.1633936643262,51.05361572327356],[-124.16720507969684,51.05505208503595],[-124.17054867740771,51.057450747655444],[-124.17136250016452,51.06058795797782],[-124.17054530708427,51.063787359071654],[-124.16908941106236,51.06584015814982],[-124.16545066540536,51.069547643928075],[-124.16164158597826,51.07252133879198],[-124.16136564647562,51.07297490082091],[-124.15774799284856,51.07200244220666],[-124.15439490010154,51.07120035438402],[-124.1478604503799,51.070970673720154],[-124.14486952763828,51.07176853159196],[-124.143507529248,51.07393314518517],[-124.14359084111103,51.076730646409565],[-124.14403622370843,51.07941341947636],[-124.14385273521941,51.08141331495451],[-124.14357138412497,51.08336051417131],[-124.14384781343409,51.08461352221201],[-124.14438838804045,51.08501705706821],[-124.14746374797326,51.08633129273689],[-124.15262863549643,51.08827362972573],[-124.15789150926354,51.08993159947997],[-124.15834173816816,51.090105120456954],[-124.16441345144428,51.09364920776361],[-124.16766224515334,51.096333672510895],[-124.16974175835523,51.09964738292295],[-124.17046511827027,51.101873050550516],[-124.17155153961333,51.105702726392025],[-124.17309320505139,51.10889870283651],[-124.17480702753787,51.112783386629935],[-124.1755218593812,51.115924932552446],[-124.17679169874836,51.11844057572089],[-124.17877586452761,51.12237722802215],[-124.18049330798836,51.12654751861838],[-124.18049582029178,51.126835521167],[-124.17967746258049,51.12900191214069],[-124.17893717682989,51.13379933134314],[-124.17930664021779,51.136654536465024],[-124.1829311271503,51.13899866710647],[-124.18446988423148,51.13951291468298],[-124.18909301660607,51.14054147616305],[-124.19527067419193,51.141001988334935],[-124.2019969969093,51.141345175636744],[-124.20435589676246,51.14140296556879],[-124.21015766875317,51.14231918785255],[-124.21452229492942,51.14374729157153],[-124.21659903325913,51.14477645685914],[-124.22050680405188,51.14654453433848],[-124.22469062696483,51.147859359226565],[-124.22740437231751,51.14871760027237],[-124.2299482551726,51.149171785386486],[-124.23747884878566,51.15020293580942],[-124.24483821087469,51.15014256070315],[-124.2500141814717,51.149915946225114],[-124.25374666055356,51.14854193675932],[-124.25728833992575,51.145459082179705],[-124.2609995391881,51.14351646784111],[-124.26518412431574,51.143001655679],[-124.27081398922246,51.14248640603905],[-124.27770533412631,51.14191156741135],[-124.28452031247991,51.14145638747539],[-124.28896761069086,51.14042381701837],[-124.29359490107167,51.13768017933664],[-124.29586985378192,51.136192357024335],[-124.29895706487594,51.135160165630985],[-124.30294659213865,51.13447431579884],[-124.30476161459461,51.135278444028],[-124.30603357707201,51.13681753296084],[-124.30775485669899,51.13858393780491],[-124.31131116777772,51.14064104173134],[-124.31448247933349,51.142293193055885],[-124.3195657692517,51.144857776371154],[-124.3218371753369,51.14685889031835],[-124.32394019018224,51.14839719122681],[-124.32621018266249,51.14930649235558],[-124.32802416250411,51.1501652078677],[-124.33247057263546,51.15067555528522],[-124.33701222212584,51.15055625601306],[-124.34227436678918,51.14992257690956],[-124.34418062446248,51.14946675534477],[-124.35271970483353,51.147684000697886],[-124.3616110985545,51.146418171903214],[-124.36324087725154,51.14607644857415],[-124.36961004239576,51.14566859290309],[-124.37460405874984,51.14646583152189],[-124.37805544555056,51.14914450114258],[-124.37823775539155,51.15159874209531],[-124.37770436308912,51.15405391181685],[-124.37679958427069,51.15531104678099],[-124.37562468548235,51.156516007016684],[-124.37318453590628,51.159433100232626],[-124.37145879473806,51.16159937720684],[-124.36873387935572,51.164458375136064],[-124.36811140760776,51.16737074172144],[-124.36838695984007,51.16805440691773],[-124.36902051533244,51.17068576472747],[-124.37057489824272,51.1735908305702],[-124.37185267247327,51.176624329405435],[-124.37330915967398,51.17947572958226],[-124.37195388769092,51.18284445888212],[-124.3703320170793,51.18644617060112],[-124.37024782951785,51.189128274054035],[-124.37115890078827,51.190845363084186],[-124.37334579635592,51.19215203634311],[-124.37561356518617,51.192035957167],[-124.37680263619563,51.19203565337266],[-124.38016553660664,51.19174495443059],[-124.3850656363164,51.190940169362975],[-124.38889118408696,51.19013442959988],[-124.39078887335226,51.18915855533969],[-124.3945141827541,51.18715687370062],[-124.39731607280406,51.18572791238904],[-124.40032457680472,51.184522374039794],[-124.4064842280151,51.18091705626812],[-124.4093060070086,51.179310726225395],[-124.40929971890785,51.177887875241545],[-124.41309712122194,51.175822058724876],[-124.41415226211015,51.1683352370825],[-124.41864907212465,51.16107511592966],[-124.42532400486984,51.15249257045238],[-124.44136326126889,51.1493904249909],[-124.45586439823552,51.15959080789837],[-124.4727196688849,51.16315232131888],[-124.4949650312945,51.17039204172015],[-124.49503565969668,51.17042047959774],[-124.50993931533691,51.17260948024239],[-124.52275617730206,51.1742932753365],[-124.5351398902135,51.17654636241061],[-124.55405983507882,51.181294095442006],[-124.66792288856557,51.21303640219291],[-124.77208784980488,51.24185863850983],[-125.25440979974954,51.36863634127172],[-125.24518264877985,51.36160903726104],[-125.23620261896039,51.352928640505084],[-125.22780930965877,51.34048067672947],[-125.21479781503827,51.33512867114934],[-125.20848624488487,51.32728841796474],[-125.20419125953096,51.3200611280624],[-125.20473621185393,51.31371883301223],[-125.21480014937612,51.30424370560333],[-125.22024012104579,51.296222141996815],[-125.23475816223562,51.29270961395288],[-125.24395975386986,51.2876887042947],[-125.25904344332228,51.28525689817973],[-125.27526527597777,51.28070503829794],[-125.287168992978,51.27942958049995],[-125.28742183756363,51.27263543502105],[-125.2907439367393,51.264104907237645],[-125.30271545209709,51.26094301259391],[-125.3208050311718,51.254375622172155],[-125.32862234247591,51.24867341009343],[-125.33323738347438,51.24218927923524],[-125.3345835638869,51.23561671131426],[-125.33088367094187,51.22713183193511],[-125.32423421779458,51.22044152611263],[-125.33037987467897,51.21303447087091],[-125.34109871235741,51.21301780888122],[-125.33344681258473,51.206334426243416],[-125.32848540106981,51.19808695108481],[-125.31633183305563,51.193833698399],[-125.29899809982642,51.190351163400635],[-125.29262498493968,51.18314077394559],[-125.28874609856219,51.174088908976465],[-125.28109912910138,51.167114349949614],[-125.2923314741757,51.159337769704216],[-125.30061237667744,51.155174080689854],[-125.31227658428256,51.15235644277702],[-125.31951772836938,51.14580405209159],[-125.32747258487397,51.138269479229876],[-125.30767419043939,51.1373169364831],[-125.29478817124085,51.138024965820506],[-125.28383704564322,51.13404468889999],[-125.28106469203261,51.1250383489191],[-125.28431708272419,51.11845073739086],[-125.28553272348739,51.10954199740659],[-125.29360801757298,51.103380117089436],[-125.29232307384031,51.09699537825284],[-125.27378492814607,51.08917515390336],[-125.2652133489247,51.08557230045165],[-125.25515577767824,51.08632334282253],[-125.252296012367,51.0770890270262],[-125.2487370372786,51.069577821034216],[-125.24247771539771,51.06304612174434],[-125.23462619485802,51.05869922168834],[-125.24205861416662,51.05243363906017],[-125.2487756831385,51.04782732957269],[-125.2666185939475,51.04800337547658],[-125.27592230450506,51.04565768759568],[-125.28721079360776,51.04410840631086],[-125.29755439261112,51.04449221263908],[-125.31055141083581,51.04223961881496],[-125.31881409621339,51.03773007506113],[-125.32096710107368,51.031325561316855],[-125.31640392524763,51.02365071357683],[-125.3093493670787,51.01850102294929],[-125.30182297782684,51.0126126988723],[-125.29160862753722,51.0072541285057],[-125.28103876895375,51.00286662380631],[-125.26440925156535,51.00026040150671],[-125.26448018408477,50.99682605023095],[-125.26440759143144,50.994311757991994],[-125.25886523586773,50.987173855725345],[-125.25145142360539,50.97868456624442],[-125.25159256673413,50.9583823358218],[-125.22889347955883,50.956020178271906],[-125.2019284439777,50.95971076467535],[-125.19717187091881,50.95799079552734],[-125.19544326590335,50.954294770229204],[-125.19519555079529,50.951441132503085],[-125.19634010319982,50.94405107532707],[-125.197991121444,50.94174196334853],[-125.20193839045481,50.940036841183776],[-125.20605324271237,50.938501150577345],[-125.20799243161443,50.93676587702367],[-125.2091136073355,50.93457353071411],[-125.21070455854004,50.93318824059881],[-125.21864597941943,50.93263424210343],[-125.2227204604353,50.93252669930713],[-125.22432228241443,50.92884785753953],[-125.22469122073596,50.925640936218336],[-125.22617842786279,50.923623249836226],[-125.23150416481957,50.92355937103171],[-125.23822594832937,50.92428044143338],[-125.24288667331372,50.92313606820911],[-125.24699583246993,50.92091629549987],[-125.24870993169031,50.918034868424144],[-125.2495241137991,50.914481134951444],[-125.24924859722277,50.911395512382384],[-125.24855920079409,50.90922651947855],[-125.24678508343214,50.90724612883113],[-125.24286142315057,50.90615268050567],[-125.23703257500618,50.90496643546129],[-125.23279731164325,50.90215515462001],[-125.23015811772929,50.8984099787035],[-125.22849688570874,50.89408375466591],[-125.22802626853952,50.89003007000464],[-125.23045869391085,50.886741200050366],[-125.23808867577031,50.88476413942611],[-125.2449494155574,50.8811305453394],[-125.24493720209728,50.877643535635244],[-125.24376412724735,50.87468531236765],[-125.23908742964434,50.87205304620434],[-125.23449268007926,50.86964958919101],[-125.22799195470375,50.86978125733317],[-125.22594222923996,50.870721935553306],[-125.21856776700692,50.87527140428913],[-125.19441184413778,50.87726937366231],[-125.17681977219854,50.871811175036584],[-125.18025609351672,50.858902623651176],[-125.18292123504307,50.8569820973374],[-125.18484293469908,50.85450204921478],[-125.18687819417431,50.84967300724958],[-125.18741870298189,50.846521596807406],[-125.18695724565849,50.842977827560745],[-125.18681083028493,50.840868889460666],[-125.18353416982022,50.83975996300913],[-125.17857369842663,50.8398163103734],[-125.17243134180013,50.840002370051764],[-125.16812183120147,50.84096685021753],[-125.1648025321783,50.8414047022766],[-125.16083037985028,50.84179321540695],[-125.15575470465963,50.84116228254985],[-125.15166866132651,50.8333139552245],[-125.14810002882577,50.82821103569747],[-125.14842985526023,50.823569938988726],[-125.15145652842993,50.81827564925389],[-125.15818684319316,50.81688318928948],[-125.16113018918608,50.80912860209673],[-125.17633868436974,50.80375132134899],[-125.18553783082848,50.80072771527765],[-125.19168055344436,50.80100579029608],[-125.19482829029249,50.80045195547951],[-125.19823562604034,50.7996680396957],[-125.20164980380812,50.79928994004908],[-125.20883212431819,50.79777471446998],[-125.21257773387644,50.79629664619204],[-125.21349304997653,50.79348777568797],[-125.21511827660376,50.79066253085484],[-125.21878703767686,50.786219608312585],[-125.22174573872026,50.78257832534707],[-125.22180994671217,50.77806465276624],[-125.22423981155083,50.774598672600625],[-125.22859902893812,50.77277623750712],[-125.2379185172427,50.77043345730422],[-125.24430370523471,50.76704106814006],[-125.24961442160026,50.76337106501338],[-125.25302208754961,50.75978522612066],[-125.25794723063461,50.755320663917026],[-125.26460295649363,50.75163806948243],[-125.26970573917512,50.747459313612076],[-125.27275696837938,50.743818845573145],[-125.27450826794986,50.73899257807273],[-125.27699197995022,50.73443934673918],[-125.29187854638388,50.728994665349255],[-125.29208733546176,50.72384836258314],[-125.29199784458129,50.71784339880214],[-125.2931556805995,50.7145136318041],[-125.28658193455242,50.70818777836372],[-125.28926853188723,50.704951419821356],[-125.2964448146642,50.70085575025644],[-125.2992977176406,50.6968734773697],[-125.30271579005135,50.69385918939626],[-125.3066275140965,50.69186519300165],[-125.33336602337691,50.68626492901997],[-125.33092687054776,50.67983810093933],[-125.32798490582957,50.67489204319924],[-125.33032242356232,50.67194557319329],[-125.33366235380085,50.669158318729814],[-125.34537247559186,50.66700879553856],[-125.36186440905577,50.655985312480446],[-125.36046658024256,50.64879903208103],[-125.36542869507748,50.646105406223406],[-125.37275002438135,50.64463312675192],[-125.3748642326331,50.64317676450312],[-125.3747399271492,50.638890947475765],[-125.37813843978122,50.63558100791185],[-125.3872251613555,50.63311425226454],[-125.400619696212,50.629966483018464],[-125.40886883558701,50.62648168296741],[-125.41221611211532,50.62466279750479],[-125.41397377706654,50.62326611783075],[-125.41565015709389,50.61941027277189],[-125.41656397427,50.61436902787688],[-125.42114723280939,50.61418967855642],[-125.42593618532263,50.612291940453986],[-125.43374240362117,50.61213256978433],[-125.4342579971718,50.60823343028387],[-125.44789305104024,50.59958306331534],[-125.43996024239975,50.59305933023044],[-125.43885743811468,50.58969996277189],[-125.44225027499691,50.58616552469248],[-125.44718273145034,50.580320185389354],[-125.44690699293572,50.577465248661696],[-125.44583447184836,50.575077446453875],[-125.44443218651264,50.57309394739782],[-125.42620316022679,50.564761259075325],[-125.4259287967797,50.55858651738944],[-125.42082907092151,50.551052528560746],[-125.44641489718809,50.54280762780628],[-125.44007225919744,50.54089362834749],[-125.43633620080928,50.539398484877815],[-125.43202761816188,50.536312836711964],[-125.42736165137691,50.53363171995925],[-125.42317855442468,50.53185866814298],[-125.41902306765917,50.52796914669105],[-125.41902802462101,50.525395063125686],[-125.42657880261879,50.51751366279115],[-125.41523284614499,50.50468034238647],[-125.41178621970111,50.50615758359294],[-125.40873604304889,50.506427224887325],[-125.40254297222258,50.50331002379063],[-125.3990106211186,50.49637927012844],[-125.39701451228534,50.49274018247244],[-125.39269251480371,50.492227510008156],[-125.38730113661846,50.4915565951824],[-125.38519270105299,50.49003713764805],[-125.37960891151475,50.489030641491695],[-125.37409064495897,50.48738404800617],[-125.37157815103092,50.48455356659827],[-125.36417484084994,50.47967850440401],[-125.3393151592094,50.46381012012161],[-125.31686684884777,50.44985502429081],[-125.30546347478683,50.445708674586456],[-125.29910933919903,50.44579172020905],[-125.29363954880681,50.448771740574536],[-125.28734243452834,50.450567930410784],[-125.27893045007036,50.45067027894477],[-125.26885432592545,50.449139686408785],[-125.26079938335974,50.44637600409574],[-125.25118384201528,50.441797300168794],[-125.24467871447031,50.43661554730118],[-125.23560719214721,50.4292321255004],[-125.22654782844407,50.422133266037996],[-125.21797834269593,50.416173788292305],[-125.20937422779646,50.41232229819627],[-125.19838559128773,50.41047199100208],[-125.18981050333396,50.40907913136638],[-125.18180082699604,50.406025629348115],[-125.1774013923086,50.4041637983269],[-125.16914831933524,50.400663275150926],[-125.160472285647,50.397275176548646],[-125.15321463723335,50.39334961009296],[-125.14811315984684,50.38631111891224],[-125.1478097379114,50.381509933474035],[-125.14790875022527,50.374761698083645],[-125.14897171076181,50.36760180635426],[-125.14800210825133,50.36457870946568],[-125.14288286554968,50.36017608823967],[-125.13449742251186,50.35386214482817],[-125.12487895320092,50.348193804720964],[-125.12016111418657,50.34504238989067],[-125.11995915226605,50.345309274176216],[-125.11467296282461,50.340350608245096],[-125.10831939149038,50.33613404594153],[-125.10267712086521,50.33224470851213],[-125.08931634111991,50.3230634150889],[-125.07585784965555,50.31273923829022],[-125.0643693010396,50.303194438432165],[-125.05393644709818,50.296439043053965],[-125.04006618683799,50.28708562477807],[-125.03501675899082,50.28096132656114],[-125.0265517979605,50.273842181131926],[-125.0126291665174,50.2623121344719],[-125.00645148715755,50.25739635205207],[-125.0031594575528,50.25527073981298],[-125.00166580772502,50.25430111806823],[-124.99864738921458,50.25123853707671],[-124.99132628898289,50.24679064043783],[-124.97934178233173,50.23712967240334],[-124.97167182919165,50.22907829130429],[-124.9639291158771,50.2212626557629],[-124.95623744141818,50.21195189278005],[-124.94932089350777,50.20561084064118],[-124.9421566024747,50.19916128748139],[-124.93033827841667,50.188173804660714],[-124.92035674407397,50.17968672287064],[-124.91085575231152,50.17233601964823],[-124.89865639277448,50.15860462932877],[-124.88710551856437,50.146693507095094],[-124.87953169334904,50.13715096257827],[-124.87588954983711,50.12883407136619],[-124.87435888529549,50.118894482333936],[-124.87161173739617,50.10616033966782],[-124.86940539418842,50.09760301795057],[-124.86754930267386,50.0912934199069],[-124.86749822750666,50.09109903192159],[-124.86614341759145,50.085445759646674],[-124.86333718814335,50.07357161345582],[-124.86283876233911,50.06219534886659],[-124.86105688422012,50.04853988199309],[-124.85999929262667,50.0349927922842],[-124.85869434713591,50.02298938443552],[-124.85830894736674,50.01218219807871],[-124.85819159864973,50.00572169716722],[-124.85740815472968,50.00246590876188],[-124.85737605682162,50.000405372218545],[-124.85831640672328,49.99571701581407],[-124.8635638646137,49.98832012664997],[-124.8739429178801,49.974624632173885],[-124.88246386410493,49.960853422640504],[-124.89337496515779,49.94368169167384],[-124.89435748326568,49.93704912217991],[-124.89640657192966,49.92372785349895],[-124.89258290620486,49.9010604776211],[-124.8794624004956,49.8798178852306],[-124.84360777894467,49.83746230898465],[-124.82125974472328,49.81032089993528],[-124.80030687172598,49.79029449813117],[-124.78732570889623,49.78128272641043],[-124.78550381109564,49.779830118162685],[-124.78168362111893,49.776784539819076],[-124.74619197390928,49.75223537280125],[-124.71511471019251,49.72837199333778],[-124.67751917735802,49.70430926117986],[-124.63383790547314,49.68122979025696],[-124.59131948222404,49.65776505664209],[-124.5517807950956,49.638167089979966],[-124.51540951184454,49.619625516831114],[-124.4911646276783,49.60711086197482],[-124.46611616652906,49.59752354289299],[-124.44627591774979,49.58959758821449],[-124.41737648032523,49.578363734533816],[-124.39241839418914,49.5682453403214],[-124.35804880373438,49.55808542319792],[-124.32344950339066,49.550089235383524],[-124.30229518791089,49.54153143494938],[-124.27008027551634,49.533132286377025],[-124.23685744800484,49.523944251761534],[-124.22117144266582,49.51892892989595],[-124.18315414257538,49.504035137095045],[-124.15812531472385,49.49032391543544],[-124.11960787039664,49.472846431950856],[-124.0843032742771,49.45804944481162],[-124.04814010502469,49.4435420692261],[-124.02306001004446,49.433344981319074],[-124.00023291633309,49.42419205607542],[-123.86200795058586,49.34875907279831],[-123.52577513320652,49.15774249751906],[-123.52431234971202,49.156904447890106],[-123.31462061244859,49.00247496556385],[-122.43695033126275,49.00119241581397],[-122.09338539307937,48.99872556162368],[-122.09343726938906,48.998759012650325],[-121.26744165666047,48.99807311390355],[-121.01947224134005,49.000291265736806],[-121.06054086989715,49.10001075675777],[-121.06156202790714,49.1024840774002],[-121.0609464715397,49.10190502024723],[-121.06060755329605,49.101626325927654],[-121.0603311813085,49.101420435027975],[-121.06011449745297,49.10133037908408],[-121.05977043553563,49.101180886885246],[-121.0594014441052,49.10108861461584],[-121.05896764514523,49.101009440254046],[-121.05868364282988,49.10100454890732],[-121.0582884155766,49.100997922795074],[-121.05784831069057,49.101091040331355],[-121.05749372630497,49.10118582703481],[-121.05713531600311,49.10138111890554],[-121.05686437491609,49.10159199571432],[-121.05655294405659,49.10171612700158],[-121.05622058524129,49.101811373330065],[-121.0558813840017,49.10193872743308],[-121.05563838634104,49.102160760232884],[-121.05550049773171,49.10234532665443],[-121.05544834531632,49.102545688999044],[-121.05553830372833,49.10302162168912],[-121.05552448538072,49.10340959170602],[-121.05552718470015,49.10388404210284],[-121.05544796987994,49.104242208239114],[-121.05532795764125,49.10448428667145],[-121.05518601845284,49.104755243265984],[-121.05489296869203,49.104980321095674],[-121.05464731454595,49.10509817219856],[-121.05427331831396,49.105149470768254],[-121.05401152578519,49.10514503149961],[-121.05361796986313,49.10513846682388],[-121.05304836297522,49.10514325688889],[-121.05243428693407,49.10514711441765],[-121.05179849432432,49.10519396961596],[-121.05109194571942,49.10532582593408],[-121.05053939387264,49.10546025351143],[-121.04917864268818,49.10553797943629],[-121.0486258999532,49.10565801322621],[-121.04805378509755,49.105734566078404],[-121.0477632259269,49.105887556562905],[-121.04732168229714,49.10600960685427],[-121.04677295773398,49.10604351866379],[-121.0463349235678,49.106036013435585],[-121.04558656370361,49.10610949614036],[-121.04517112662408,49.106131229153426],[-121.04462239906312,49.10616512998711],[-121.0442913584837,49.106231353343084],[-121.04384809572142,49.10635331958427],[-121.04349347246946,49.106447780983366],[-121.04302967628394,49.106569355918936],[-121.04261133461661,49.10663436064849],[-121.04225670576011,49.106728826909745],[-121.04198952383845,49.10683915954883],[-121.0418943320796,49.107024562282014],[-121.04179564300256,49.107339237540046],[-121.04169584533595,49.10763214020432],[-121.04165662229528,49.10804826689362],[-121.04167111353618,49.10825000377809],[-121.04167773895435,49.10863806974916],[-121.04146026539793,49.10916637668917],[-121.04096375896034,49.10954615845253],[-121.04051390257384,49.10982601058679],[-121.0399978385487,49.11014791555707],[-121.03948583852686,49.110383436993075],[-121.03912593491306,49.11060736391489],[-121.03865552609474,49.110886819096514],[-121.03842601607647,49.111141871744266],[-121.03832055505677,49.111600048696495],[-121.03839368816477,49.111975114118344],[-121.03848756464143,49.112364664545105],[-121.03864932624917,49.11271251803243],[-121.03887478302974,49.11309009638488],[-121.03907683500162,49.11351031493198],[-121.03917221671357,49.11388583725526],[-121.03915251032635,49.1143598218493],[-121.03911613416497,49.114732922736295],[-121.03912929900467,49.1149630771461],[-121.03924809144635,49.11529597574156],[-121.03953896753859,49.11570336387917],[-121.03994948869745,49.11637148524774],[-121.04050244545684,49.11734398284769],[-121.0407287519724,49.118147978913456],[-121.04117278142724,49.11900066369867],[-121.04130219545073,49.119298510406246],[-121.04138198199783,49.11972406640972],[-121.04139902678074,49.12019127787716],[-121.04134850384618,49.12056852340127],[-121.04123368172424,49.12109845624695],[-121.04126081359176,49.121599701638175],[-121.04143649012326,49.1219783529736],[-121.04181019511755,49.12217241531325],[-121.04241705751333,49.12249567440392],[-121.04293139141657,49.12278617196524],[-121.04331871119723,49.12314215973924],[-121.04361813924854,49.12348619535658],[-121.04383540728048,49.12402186263158],[-121.0445079743587,49.125128698920456],[-121.04550630116285,49.12639747559278],[-121.04496981967684,49.12673256599905],[-121.04418878870607,49.12715761471],[-121.04359795889505,49.127648390173455],[-121.0432450844066,49.12814309152485],[-121.04283777619827,49.12876218359611],[-121.04258389676858,49.129164722288515],[-121.04229009232229,49.12937874129484],[-121.04166713395296,49.12943064563408],[-121.04038144881909,49.12940882739368],[-121.03923774831186,49.12935829194909],[-121.0380015336574,49.12927470412103],[-121.0372891457665,49.129184279350234],[-121.035454816604,49.128968143460256],[-121.03300680764232,49.128733194778064],[-121.03002367575573,49.128434520141155],[-121.0281741277379,49.128152688386606],[-121.02599408076738,49.12780222966208],[-121.02320077443535,49.12728513755263],[-121.0202113949663,49.12683784403789],[-121.01756666166419,49.12666364329594],[-121.0150797478266,49.12645720857353],[-121.01373904389291,49.12653317988419],[-121.01216578747281,49.12657070788527],[-121.01067782968683,49.12693197355102],[-121.00918283408213,49.12748634464],[-121.00838307095579,49.127794931226006],[-121.00708813328032,49.128322471281116],[-121.00583246364288,49.128707722959135],[-121.00507119775435,49.128928961327404],[-121.00418692511653,49.12930522451457],[-121.00331951770708,49.129540413184564],[-121.00241717462539,49.12946235437904],[-121.00145522030965,49.12906144269527],[-121.00082722280055,49.128792796565854],[-121.00015313271174,49.128442488760165],[-120.99999683343684,49.1283489169018],[-120.99945857171008,49.12802747585006],[-120.99873052115727,49.12750938450874],[-120.99821678573562,49.127135500186064],[-120.9975479786761,49.12668867830147],[-120.99717009947952,49.12631152868401],[-120.99688984270922,49.12591973710822],[-120.99673634995051,49.12546560502386],[-120.99647017663324,49.12475184637402],[-120.99629975019113,49.124136452536305],[-120.99607446571186,49.12360057949841],[-120.9959449233486,49.123163063285844],[-120.99571961737954,49.122659332196555],[-120.99558831334453,49.122254166299086],[-120.9955039852198,49.12193833677051],[-120.99512620837072,49.121544809120245],[-120.99442827169042,49.121210264585024],[-120.9931877210383,49.120882564943024],[-120.99226193853458,49.120721259627295],[-120.99160484497114,49.120580918976145],[-120.99023220638819,49.12049267176057],[-120.98925502157206,49.12037884810429],[-120.98866976112768,49.12028809866396],[-120.98796484246728,49.12009841419168],[-120.98696019540104,49.12003264286045],[-120.98646715487533,49.120088600033675],[-120.9856558422334,49.12009050693375],[-120.98503600059644,49.12024093713904],[-120.98470702780685,49.12047685026738],[-120.98444986714527,49.120762374729196],[-120.98421660186452,49.121064807108354],[-120.98396205833401,49.12131012202954],[-120.98345478769232,49.12170438089212],[-120.98270636263612,49.12198134688751],[-120.98188783977538,49.12219270152566],[-120.98131411801182,49.122392085057164],[-120.98076606831387,49.12257601475818],[-120.98029335399148,49.12274514179945],[-120.97977107404193,49.122880924526164],[-120.97913077562897,49.122950274010016],[-120.97848698945306,49.12305189098287],[-120.97789277131747,49.12320263155291],[-120.97724362572993,49.12343315025477],[-120.97667159782492,49.12361650772492],[-120.97609595816317,49.1238967164622],[-120.97574298616112,49.12411597780898],[-120.97548569822757,49.12441782930019],[-120.97529761095194,49.12479342527367],[-120.97519110725064,49.125017153729324],[-120.9750811131727,49.12527316206668],[-120.97491420373031,49.125785955042616],[-120.97481561577646,49.126380636799844],[-120.9747773568413,49.12671867530266],[-120.97481094338788,49.12710604465537],[-120.97494568148487,49.127398594779535],[-120.97513001629058,49.127724201378165],[-120.97530911436395,49.128114141869396],[-120.97544198808198,49.128503328051835],[-120.9753816278065,49.12876024869007],[-120.97532304979843,49.12898480950785],[-120.97550924172673,49.129229849228494],[-120.97589765438777,49.12934953574801],[-120.97641293364147,49.129358672928134],[-120.977119747731,49.129500008075404],[-120.97750639496377,49.12966783266209],[-120.97802418633367,49.13024111690889],[-120.97818286378231,49.130566364543895],[-120.97846128545069,49.13095811328435],[-120.97912820042662,49.13145319463952],[-120.9796806817846,49.131769195864514],[-120.98043796799381,49.132491834043954],[-120.98167775776282,49.133527753944016],[-120.98291060213384,49.13448549608935],[-120.9834303289723,49.13499425666632],[-120.98363696279439,49.13535246674964],[-120.98381425786047,49.135855383441196],[-120.98398987998134,49.136357941438995],[-120.9841494468331,49.1372635958345],[-120.98427356306587,49.13784609477102],[-120.98432411280173,49.13839498261265],[-120.98433023913476,49.138878635950576],[-120.9844286968819,49.1394605041112],[-120.98441621133856,49.13978281867698],[-120.98460068041662,49.140092331531065],[-120.98498214753917,49.140356881106854],[-120.98546646440698,49.140542762187806],[-120.98638550528005,49.14089725072555],[-120.98698021837947,49.14114129095053],[-120.98757156058589,49.141353017046704],[-120.98793085618095,49.14156887266174],[-120.98811539222243,49.141846227122215],[-120.98827420976582,49.142171175718495],[-120.98843825858825,49.14239991718939],[-120.9887647501085,49.142824611382565],[-120.988966136704,49.14331171272065],[-120.98907172757372,49.14373259512484],[-120.98905754847891,49.14407089974804],[-120.98904335075622,49.144425284380446],[-120.98895022811185,49.14489104755678],[-120.98893243059587,49.14535834552484],[-120.98908772072937,49.145747982384364],[-120.98937340179555,49.14599451855037],[-120.98968654907192,49.14616139650154],[-120.99002547985049,49.14628012212271],[-120.99064127141311,49.14683870619043],[-120.99111862011574,49.14718552785106],[-120.99162521940607,49.14743615019736],[-120.99210261436568,49.14775082492616],[-120.99260389536583,49.14814641857721],[-120.99305555492208,49.14850896222148],[-120.99336525292914,49.14873996318778],[-120.99389939978514,49.1489103505876],[-120.994705967681,49.14900486604337],[-120.99539094176949,49.149081315900254],[-120.9964441384494,49.14916417924004],[-120.99751191877284,49.149223174411894],[-120.9984184099691,49.149569063299055],[-120.99933418169046,49.15000420754212],[-120.99995716340669,49.15040175856317],[-121.00000015154588,49.150432806018884],[-121.00077002487379,49.1509962212188],[-121.00123010417852,49.151536490985336],[-121.00282880679944,49.152913639381424],[-121.00283559303246,49.152930315150535],[-121.00322820340408,49.15326863131667],[-121.00355187081193,49.15370554036257],[-121.00374564900186,49.154105667772754],[-121.00383467262772,49.154538439087716],[-121.00376240966203,49.15500291520283],[-121.00343021262134,49.155411041013295],[-121.0028105016568,49.1557798511585],[-121.00214592431477,49.15597540765718],[-121.00157420779888,49.15610534202125],[-121.00124217680653,49.156176761318235],[-121.00102621347986,49.15623806382942],[-121.00083040812883,49.15630340736227],[-121.00063460222789,49.15636875053259],[-121.00043720898995,49.15643289157367],[-121.00024011769412,49.15649422183515],[-121.00003835541594,49.15655111137085],[-120.99999951954509,49.156561153835675],[-120.99983375156243,49.156602508215784],[-120.99962777215367,49.15665073650124],[-120.99941864874214,49.156696282479665],[-120.99920982650472,49.156739026620116],[-120.9989978003939,49.15677964512532],[-120.99878601655388,49.15681800949842],[-120.99857438220918,49.156854981718645],[-120.9983613125637,49.156889342032656],[-120.99814567337879,49.156915686495466],[-120.99792713215986,49.1569371038424],[-120.99770859073973,49.15695852074521],[-120.9974930108156,49.156984307205455],[-120.99728161643507,49.15701903214635],[-120.99707724923712,49.15706817898887],[-120.99687981814925,49.15713259178754],[-120.99668995743001,49.15720638041168],[-120.99650482530285,49.15728406148731],[-120.9963322363455,49.15737274857042],[-120.99617700867735,49.15747550846557],[-120.99603316007257,49.15758414887896],[-120.99590389300066,49.1577008041489],[-120.99579433135132,49.157825703757915],[-120.99571466007177,49.15795989026584],[-120.99569402914172,49.15810360138991],[-120.9958132750525,49.15822335750509],[-120.99594148250634,49.158339587036494],[-120.99607152012493,49.15845476452165],[-120.99620500271332,49.15856983139184],[-120.99633848692919,49.158684889097394],[-120.99647026317459,49.15879987613583],[-120.9966020100893,49.15891514133817],[-120.99673193005916,49.15903144028462],[-120.99685828348731,49.15914898983033],[-120.99697927273549,49.15926854557114],[-120.99707871238721,49.15939697064716],[-120.9971674838327,49.159528842683095],[-120.99726332736235,49.159658796668566],[-120.99736618500161,49.159787371318444],[-120.99747077992592,49.1599157559227],[-120.99757363773954,49.16004433930266],[-120.99767122212488,49.1601740849409],[-120.99775831898756,49.16030559854657],[-120.99783142286984,49.160439556302556],[-120.99788873310422,49.16057674077006],[-120.9979337888042,49.16071616155045],[-120.99797177110698,49.16085751823405],[-120.99800100314792,49.16100044406763],[-120.99802496223744,49.16114452328051],[-120.99804199858684,49.16128913770855],[-120.99805558954161,49.16143387157707],[-120.99806573506966,49.161578724887256],[-120.9980742338044,49.16172293306181],[-120.99808108476326,49.16186650508029],[-120.99808278243722,49.162010117108615],[-120.99807758804707,49.162153977035814],[-120.99807062587941,49.16229831418538],[-120.99805853930206,49.16244242197771],[-120.99804477578746,49.16258616297889],[-120.9980275665912,49.16273002342081],[-120.99800867944909,49.162873526048806],[-120.99798814528941,49.163016383539315],[-120.99795226957961,49.163158256704676],[-120.99789095894945,49.16329724127287],[-120.99781293126044,49.1634320733105],[-120.99772480693453,49.16356502792802],[-120.99761850119104,49.16369148784594],[-120.99748931203138,49.163807299916236],[-120.99734990509143,49.16392235679404],[-120.99720073389702,49.16403244737379],[-120.99704078597313,49.16413103639786],[-120.99686737105988,49.16421123080656],[-120.99666351639803,49.16425532125008],[-120.99643999731126,49.164274817931215],[-120.99621824684475,49.16429382794664],[-120.99599892960515,49.164306182868515],[-120.99578218147497,49.164326552736924],[-120.99557176567421,49.16436780018116],[-120.99537152047662,49.16442616045397],[-120.9951771387031,49.1644938170646],[-120.99497527554983,49.164551253102815],[-120.9947691039927,49.164600881178636],[-120.99456146700726,49.164648175690715],[-120.99435391959727,49.164694634772225],[-120.9941462808036,49.16474193745598],[-120.99394010848484,49.16479155495204],[-120.99373692757412,49.16484526375955],[-120.99354745335576,49.16491512224633],[-120.9933699177979,49.165001607654496],[-120.99318014039106,49.16507426685486],[-120.99298257893969,49.165139515722956],[-120.99277927439996,49.16519434504136],[-120.99256957806583,49.16522885249422],[-120.99235007344396,49.16524288797659],[-120.99212803102257,49.16524862022229],[-120.99190879920664,49.1652601227957],[-120.99169607924917,49.165290824106854],[-120.99148879819812,49.16533475459316],[-120.99128274145832,49.16538324461441],[-120.99107796804323,49.16543574647314],[-120.99087459895473,49.16549113783294],[-120.99067275618397,49.16554828737983],[-120.99047082187974,49.165606280544715],[-120.99026888804059,49.16566426434731],[-120.99006701278047,49.16572170006349],[-120.98987258785293,49.16578962530845],[-120.98969381853465,49.16587153561413],[-120.98951474635975,49.16595624697469],[-120.98934055413709,49.16604345040291],[-120.98916776693234,49.16613353447294],[-120.989003064316,49.166228227159905],[-120.98884638622204,49.16632808517905],[-120.9886977026158,49.16643338690291],[-120.98855374780658,49.16654258149293],[-120.9884129969763,49.16665389240393],[-120.98827556930746,49.16676621526718],[-120.98814622723049,49.16688313792316],[-120.98804989332369,49.16701230997497],[-120.9879769247076,49.16714765123644],[-120.98791222317506,49.16728591340728],[-120.98785764695225,49.167425784399484],[-120.98781838302367,49.1675669194022],[-120.98779095258622,49.16770974285211],[-120.98777370978436,49.1678536005246],[-120.98776674483366,49.167997657406616],[-120.98776667188741,49.16814147596706],[-120.98776830790653,49.168285365113974],[-120.98777165096872,49.16842934280486],[-120.98777673306911,49.16857311274331],[-120.98778352321352,49.16871696224662],[-120.9877902823897,49.16886109903518],[-120.98779707261804,49.16900494847409],[-120.9878038628884,49.169148797880936],[-120.98780891415652,49.1692928549766],[-120.9878122884273,49.169436545126906],[-120.987813923664,49.169580442966385],[-120.98781385183021,49.16972425219944],[-120.98781033287533,49.16986818952538],[-120.98779998165783,49.17001180843431],[-120.98778618420349,49.17015554645587],[-120.98776726245174,49.17029904565375],[-120.98774663250737,49.17044246521955],[-120.98772261728526,49.17058543823854],[-120.98769518477374,49.17072826100367],[-120.9876643359107,49.170870924533894],[-120.98763007066505,49.17101342882636],[-120.98758735580097,49.17115469108769],[-120.98753789935172,49.171294790908966],[-120.98748002319293,49.171433370342875],[-120.98741702233876,49.17157171090979],[-120.98734727875969,49.17170889798551],[-120.98727088447829,49.17184407858836],[-120.98718789954005,49.1719766960311],[-120.98709316944709,49.17210678981546],[-120.98698007286129,49.172232084138024],[-120.98685077339606,49.17234843860702],[-120.986700599249,49.17245142131842],[-120.98652949127819,49.17254157988604],[-120.98634394863417,49.17262232133176],[-120.98615718192238,49.17269849352557],[-120.98597059589585,49.17277298638884],[-120.98578071414255,49.17284619734006],[-120.98559089287498,49.17291884229724],[-120.98540116118885,49.17299065190297],[-120.98521145994584,49.17306217385187],[-120.98502004994937,49.17313361581897],[-120.98482863936489,49.173205057438146],[-120.98463890533444,49.17327686567013],[-120.98444908052596,49.1733495085677],[-120.98426093226885,49.17342251808913],[-120.98407263308903,49.17349691895243],[-120.98388894186141,49.173576335050434],[-120.98371935013806,49.173668256628375],[-120.98356248432064,49.17376950648057],[-120.98343314099166,49.1738861438882],[-120.98335358793821,49.174018638957605],[-120.9832905412375,49.174157254899015],[-120.98323588290977,49.17429767874812],[-120.9831880571114,49.174438421215],[-120.98316911943094,49.174581918663904],[-120.98317586612963,49.174726045468624],[-120.9831946005578,49.17487045158815],[-120.9832099487027,49.1750144200007],[-120.9832065062879,49.17515751202735],[-120.9831791173577,49.17529977597308],[-120.98314831272673,49.17544187156368],[-120.9831140302768,49.17558437342234],[-120.98307465387477,49.17572634891453],[-120.9830335679951,49.17586825366875],[-120.98298909636488,49.176009711720035],[-120.98293955978187,49.176150374036034],[-120.98288666745528,49.17629031130524],[-120.98283047950869,49.17642896685484],[-120.98276757933273,49.17656618133012],[-120.98269293221256,49.17670088068901],[-120.98260650895112,49.17683333426388],[-120.98251505148197,49.176964704725044],[-120.98242194534221,49.177095438734064],[-120.98233045675705,49.1772270873195],[-120.98224570875585,49.177359907492594],[-120.98217771069943,49.17749660404404],[-120.98213326498968,49.17763778305614],[-120.9821126454674,49.17778091261978],[-120.98210566149513,49.17792496694585],[-120.98210380251865,49.17806926029673],[-120.98210874588577,49.17821415966986],[-120.9821068869073,49.178358452956985],[-120.98209313051474,49.178501622768025],[-120.98206070232281,49.178642802666836],[-120.9820128995522,49.17878325636495],[-120.98195487631044,49.17892295355188],[-120.98188846219347,49.179060851591295],[-120.9818103315811,49.17919594711196],[-120.9817240224767,49.17932727716467],[-120.98161937470812,49.17945352857592],[-120.98150471956357,49.17957704809729],[-120.98139009389647,49.17970028914099],[-120.98130214560082,49.17979911107812],[-120.98100039960984,49.18008084117265],[-120.98078814453302,49.18039240917764],[-120.98046077033861,49.18083170567831],[-120.98034023385512,49.18097779767745],[-120.97969231637678,49.18163421676278],[-120.97914014599883,49.18197672549869],[-120.97882219518866,49.18213812921255],[-120.9780454693285,49.182476929055255],[-120.97698338434085,49.182866126916046],[-120.97609409781552,49.183165810274964],[-120.97545874703526,49.18345141184049],[-120.97528014614083,49.183689527190445],[-120.97484662388739,49.18588602121798],[-120.97481529391482,49.18608025516645],[-120.9748070169801,49.18612498713888],[-120.97492319026334,49.186289175944076],[-120.97496364359768,49.18634379975484],[-120.97510754524917,49.18655326474476],[-120.97525784182565,49.18679885212249],[-120.97530790400972,49.18690749811345],[-120.97533710438587,49.18697089961281],[-120.97540917470982,49.187098340895695],[-120.97562377072097,49.18747974055849],[-120.97563996202673,49.18752054371175],[-120.97643630607209,49.18785832258207],[-120.97665065771506,49.18798818218831],[-120.97707477331295,49.18827445891267],[-120.97722080247642,49.18838504761492],[-120.97752664133984,49.18863760204511],[-120.97769866402912,49.18879367321182],[-120.97797119994792,49.18906836765925],[-120.97812929164535,49.18924211471402],[-120.97815380888801,49.189269481611475],[-120.97832539834091,49.189461345989436],[-120.97846979149575,49.189634741792034],[-120.97863428462395,49.18984460126543],[-120.97867275465552,49.18988587479043],[-120.9787450843273,49.1899634151034],[-120.97885243692417,49.19008234766165],[-120.97899803882527,49.19022872797358],[-120.97909067253828,49.19032497383006],[-120.97925466585056,49.190507746772155],[-120.97947331097183,49.19074099354712],[-120.97964636795456,49.190919387955255],[-120.97993147424708,49.191252746746116],[-120.98007100474157,49.19143944792368],[-120.98020461179841,49.191617408377425],[-120.98037575215623,49.19184534137025],[-120.98041083778713,49.19188617639919],[-120.98044808771664,49.19192288030835],[-120.9807272774361,49.19194577466568],[-120.98137576280125,49.191984195240416],[-120.98167625891989,49.192016535837205],[-120.98301336127027,49.192278248080505],[-120.98331148571357,49.19236433493389],[-120.98451729893218,49.19283985549455],[-120.98473195858597,49.192951374472926],[-120.98499124784105,49.19312672073372],[-120.98506154686734,49.19315961195917],[-120.98525339563702,49.193243835344845],[-120.98555206099294,49.19338859341946],[-120.98565939319896,49.19344435188739],[-120.98597990542078,49.19362538139585],[-120.98612765832758,49.19370445341615],[-120.98694671813,49.1942628690579],[-120.98713249496417,49.194419282353],[-120.98758776728053,49.194863463548735],[-120.98774494499942,49.195046173268246],[-120.98811728921464,49.19557446766722],[-120.98821963098112,49.195756039254555],[-120.98836888274279,49.19605991529297],[-120.98844376097107,49.19624133547078],[-120.98859272045924,49.196945612229875],[-120.98861008133547,49.19713478477684],[-120.98864181421017,49.197477185553396],[-120.98865171963782,49.197576335984735],[-120.98863174007694,49.197665919646205],[-120.9885521444824,49.197894007095144],[-120.98874199919902,49.19793330126481],[-120.98960683041527,49.19816418527729],[-120.98994494571052,49.19827805466781],[-120.99075405638419,49.19861151164429],[-120.99103613662847,49.198751247061516],[-120.99171625334859,49.199150040331425],[-120.99178343471277,49.199196027465945],[-120.99182460222255,49.19922839694929],[-120.99185990213978,49.199251470014076],[-120.99238256327057,49.199660969167205],[-120.99258311216437,49.19980819467421],[-120.99282145772975,49.20000313402182],[-120.99296042225521,49.2001161825895],[-120.99307908847892,49.2002263195867],[-120.99342734424792,49.200596685649074],[-120.99348450044192,49.20065601985564],[-120.99351074194139,49.20068346228507],[-120.99397350729244,49.20077266147599],[-120.99410779111699,49.20080175398904],[-120.99421386705019,49.20082163001217],[-120.99427928535624,49.200836231323564],[-120.9945367688165,49.20088570672715],[-120.99509342196586,49.20101226533027],[-120.99527030212217,49.20106052642327],[-120.99534087875665,49.20107508718025],[-120.99543370524951,49.201090402695726],[-120.99698861272564,49.20151770083731],[-120.99711361473523,49.20156918689073],[-120.99717510158774,49.20158840399581],[-120.99737532591087,49.20165917671722],[-120.99755372364751,49.20172527117764],[-120.99785925649394,49.20180714515295],[-120.99826013022864,49.201912911824294],[-120.99846671076573,49.2019884893441],[-120.99868699602492,49.202064423491294],[-120.99888329140707,49.202139810981954],[-120.99961692318665,49.202345905357035],[-120.99979506865083,49.202398449162985],[-120.99991685221676,49.2024320243657],[-121.00000098564614,49.202448339532594]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":44,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"2","REGION_NUMBER":2,"REGION_NAME":"Lower Mainland","REGION_NUMBER_NAME":"2- Lower Mainland","FEATURE_AREA_SQM":43566876627.4522,"FEATURE_LENGTH_M":1257869.1954,"OBJECTID":8,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-121.00000098564614,49.202448339532594],[-121.00014568560898,49.202476491248454],[-121.00033534342066,49.20253380075804],[-121.00060345069075,49.20262830204319],[-121.00100749787137,49.20272067027828],[-121.00120867010956,49.202782735764934],[-121.00130398333712,49.202806904940935],[-121.00153481777824,49.20286471676341],[-121.00225328792033,49.20308418211366],[-121.00249148086802,49.20316939404701],[-121.00258585860254,49.20320226207662],[-121.00291488323614,49.20325757321046],[-121.00304963328311,49.203282443638244],[-121.00311602465521,49.20328806119983],[-121.0034538512703,49.203325453084865],[-121.00376378516587,49.203366629290336],[-121.00408961770134,49.20340374213232],[-121.00455436353974,49.203474938857134],[-121.00475676299932,49.20350971394525],[-121.00505370764371,49.2035598661685],[-121.00514483297535,49.203575093945965],[-121.00548540530092,49.20363488494033],[-121.00607936509324,49.20376648904696],[-121.00637857213604,49.203843532238466],[-121.00689292905916,49.20399654117625],[-121.00693949315192,49.204010819206815],[-121.00709708027766,49.20406296498349],[-121.0072747577575,49.204119985472005],[-121.00748967814263,49.204182125693414],[-121.00761318225665,49.20421576241304],[-121.00789769312178,49.20430171110753],[-121.00818981686837,49.20439674644119],[-121.00851431817019,49.20451020068443],[-121.00890989797597,49.20466558665036],[-121.00922047599713,49.204796718978436],[-121.00976147576883,49.20505358646164],[-121.01001621122808,49.20519284690138],[-121.01018610313048,49.20529038500115],[-121.01033299874523,49.20537812247219],[-121.01046170497406,49.20544330698201],[-121.01059457531139,49.205517698415576],[-121.01074879274594,49.20560126302753],[-121.01091033106331,49.205680655125576],[-121.01158811637711,49.20611951336692],[-121.01167605104814,49.2061165411791],[-121.0117485410139,49.20611341266933],[-121.01203340145064,49.20610039116808],[-121.01239935954486,49.20608407034468],[-121.01257010035403,49.206077886976225],[-121.0128544788059,49.206069343516944],[-121.01311018768011,49.2060558168236],[-121.01342887410952,49.20604774233772],[-121.01370764151456,49.20604344826503],[-121.01407776112679,49.20603634665678],[-121.01437707146124,49.206032722625444],[-121.01452330678725,49.206030760940074],[-121.01482190214735,49.20601779977688],[-121.01524642220868,49.20601602863827],[-121.01533042542691,49.206017662689064],[-121.01617775604413,49.20601403559426],[-121.01772736813847,49.20615767184248],[-121.01798835479397,49.20620697073865],[-121.01848654059181,49.206319128205315],[-121.01934979377015,49.20659931020535],[-121.02008655175297,49.20695371234838],[-121.02031311056457,49.20708374756445],[-121.02080165988166,49.20739789681413],[-121.021040591117,49.2075727692942],[-121.02160807695581,49.20806398674091],[-121.02182456145451,49.20828800478073],[-121.02197206523998,49.20843440200442],[-121.02204371988987,49.20850313190501],[-121.0222263302391,49.20869062747717],[-121.02235270302229,49.20880981715358],[-121.02252839983572,49.20896569169706],[-121.0227158778187,49.209139876749134],[-121.02299392874222,49.20941467691397],[-121.0230312562011,49.20945108678896],[-121.02305922968225,49.209478600689174],[-121.02320442340613,49.20956651936228],[-121.02327726124004,49.20960823401419],[-121.02348273619363,49.20971078599858],[-121.02364431054654,49.20979015852108],[-121.02390764346548,49.20989791040119],[-121.0243926192414,49.21011770205381],[-121.02454564856394,49.21019667811966],[-121.02468170788289,49.21025767199628],[-121.02509393065353,49.210467041930386],[-121.02530777556268,49.21058774283352],[-121.02550326820835,49.21070335449841],[-121.0257578662077,49.210860612401376],[-121.02597617755207,49.21100378663221],[-121.0261633306186,49.21113311437013],[-121.02629386590814,49.21122965355837],[-121.02690477666484,49.211573116068735],[-121.02731768564709,49.21187245687573],[-121.02738147049486,49.211918550310685],[-121.02815674486232,49.21247598481226],[-121.0283420673325,49.21265456941461],[-121.0284956967385,49.212792215156384],[-121.0286340945267,49.21291167101643],[-121.02885325406858,49.213095200401675],[-121.02922022549791,49.21343865308497],[-121.02934860467369,49.21357146818752],[-121.02941878260641,49.21362207793121],[-121.02967223384377,49.213806340100575],[-121.03007371638316,49.214132488300955],[-121.0301674643734,49.21421971728371],[-121.03035200031485,49.21435765829266],[-121.03043150811231,49.21441743192989],[-121.0305345306452,49.214482251822744],[-121.03059118719513,49.21451475032356],[-121.0311269463611,49.214838636562135],[-121.03130496090856,49.21490917203376],[-121.03152076652098,49.215011893970775],[-121.03157448561288,49.215039744919906],[-121.03174467108933,49.21511922081384],[-121.03202277704591,49.215249908677265],[-121.03217040942161,49.21531536843634],[-121.03225280458248,49.21534821433722],[-121.03245586652298,49.21544161212692],[-121.03269741467696,49.21554467089379],[-121.03348105486167,49.215944834536494],[-121.03364590582922,49.2160420974708],[-121.03370085566429,49.21607452437529],[-121.03387179821118,49.21616304510321],[-121.03464413897159,49.21665290532209],[-121.03487114031655,49.21682775839383],[-121.0351114023887,49.217007165241576],[-121.03524023214877,49.21710390120606],[-121.0354100384484,49.217219155155796],[-121.03587929198952,49.21758703675512],[-121.03605164757153,49.21774272952294],[-121.03615132366683,49.217838959246045],[-121.03619721771332,49.21787575821577],[-121.03628606753664,49.21794470025347],[-121.03636777840615,49.218000067773744],[-121.03650574002852,49.21801150700521],[-121.03682141214007,49.21804832552309],[-121.0371897606191,49.2180906837207],[-121.037462564949,49.21812666144454],[-121.03776869784912,49.21817234891432],[-121.03800469549743,49.2181990138906],[-121.03821450491999,49.21822954236896],[-121.03848683070647,49.21827000671571],[-121.03869616063413,49.218305023476056],[-121.03907384514618,49.21824404430542],[-121.03936243318638,49.21821278541391],[-121.0401233481567,49.21816748075982],[-121.04039876498811,49.21816296921912],[-121.04166053840656,49.21823855425757],[-121.04196202620686,49.21827950437116],[-121.04323263712,49.21856187973013],[-121.04350356265789,49.21864765955713],[-121.04397218913017,49.2188130227995],[-121.04412377891461,49.21887385566418],[-121.04425961818703,49.218921277605176],[-121.0443604186363,49.218958903321074],[-121.04461838998658,49.21905338625878],[-121.04476236096686,49.21910512460067],[-121.0450723550448,49.219227380899156],[-121.04580653918696,49.2195772321996],[-121.04586314787987,49.219578149340315],[-121.04617856633313,49.219601393975694],[-121.04682536566406,49.2196754208017],[-121.04715335860868,49.21972574930434],[-121.04724969007187,49.219740889755705],[-121.04755020328673,49.2197910899693],[-121.04793238089594,49.21986505691387],[-121.04805520444712,49.219889589358175],[-121.04818144716442,49.219914287906306],[-121.04851580406299,49.21996941603337],[-121.04880156587413,49.21988415507216],[-121.04943680887166,49.21972839798514],[-121.04964571750607,49.2196869702233],[-121.0510554826298,49.21953550731023],[-121.05127600775091,49.219530132176196],[-121.0516217508779,49.21952684760736],[-121.05184128749485,49.21953073717543],[-121.05297724416444,49.219626345508054],[-121.05323585069193,49.21966670972048],[-121.05369084829756,49.21975076794255],[-121.0542135000898,49.21984497800969],[-121.05444541252481,49.21989397481313],[-121.05535022449634,49.220143043230564],[-121.0555937619403,49.220228092839406],[-121.05652129178979,49.22063495973802],[-121.05666750990258,49.22071414059594],[-121.05703111327921,49.22088195770328],[-121.0572460467624,49.22099360579696],[-121.05780805181985,49.22133152328466],[-121.05793050780753,49.221391837350204],[-121.05839993816008,49.221647115468336],[-121.05862742941775,49.22178612430209],[-121.05910295644853,49.22211329884795],[-121.05916459954672,49.22216377461087],[-121.05928464553637,49.22197248442985],[-121.05937399566996,49.221843502435604],[-121.05943186620426,49.221768059018174],[-121.05950480921163,49.22164790604131],[-121.05967226016546,49.22139872768475],[-121.05981852106734,49.22120328016017],[-121.05997917130365,49.220985656668034],[-121.06013667668378,49.220781413347225],[-121.06030744223078,49.22058172988942],[-121.06039391850247,49.22047968260367],[-121.0604288156982,49.220426300419504],[-121.06052910006089,49.22027526282816],[-121.06077156617232,49.21995086568709],[-121.06095842565956,49.21972908351857],[-121.06101143795411,49.219666941109665],[-121.06104049328805,49.21963613568441],[-121.06106711512717,49.21959590744895],[-121.06123510251228,49.219373818638076],[-121.06144291056304,49.21911662681697],[-121.06158040518825,49.2189388198126],[-121.06166687560642,49.21883677125135],[-121.06168909102449,49.21880564295622],[-121.06181387517847,49.218650368346005],[-121.06196504674594,49.21847318806091],[-121.06210110385649,49.21830884819826],[-121.06215066249959,49.21824683558697],[-121.06225886722895,49.21811814734481],[-121.06237240167046,49.21797166744237],[-121.06263084554122,49.21767449781555],[-121.06274226620778,49.21756400152716],[-121.06285778426599,49.21743114580295],[-121.06312193468747,49.21716102444915],[-121.0631622622871,49.21712114437723],[-121.06342924592319,49.21682436443184],[-121.06358433348088,49.21664256150596],[-121.06362390574465,49.21659362415012],[-121.06376791769814,49.216402859139784],[-121.06387317059793,49.21626953177471],[-121.06395542707877,49.216158545450845],[-121.06410633602364,49.21596752773746],[-121.06426531449854,49.21578139998284],[-121.06453819723875,49.2154936305732],[-121.06459930122611,49.21543608888878],[-121.06467574682652,49.21534739192008],[-121.06478250411543,49.215232177635684],[-121.06493909050491,49.2150684865066],[-121.06504632405202,49.21494878254967],[-121.06520139902317,49.214766976779714],[-121.06535551678923,49.2145941584489],[-121.06548694609707,49.214456949531794],[-121.0656647048072,49.21423953327038],[-121.06583320567748,49.214044528433924],[-121.06588572655198,49.213986881443816],[-121.06596845163712,49.213871403825095],[-121.06654706758361,49.21322884432097],[-121.06665925289997,49.21312712200404],[-121.06683501357031,49.21289607853927],[-121.06693680059993,49.21276286913853],[-121.06700465893194,49.21267405681715],[-121.06717819854808,49.21244771100791],[-121.06717736516651,49.212407071502334],[-121.06717167754434,49.212218177137004],[-121.0671643871259,49.21206051743236],[-121.06716385839316,49.2118715796235],[-121.06717689298353,49.2115389117582],[-121.06726618808429,49.21097373526353],[-121.06729869601428,49.210861883541064],[-121.06731805325923,49.210776767580555],[-121.06775949942246,49.20980789581313],[-121.06784829487637,49.20968368114587],[-121.06847449491252,49.20899676141976],[-121.06865972250996,49.208838049033396],[-121.06886992744283,49.208670609725445],[-121.06899703568392,49.20857380010629],[-121.06904200253229,49.20853864165199],[-121.0697409099559,49.20810486155043],[-121.07054438003655,49.20775396428952],[-121.07101035442415,49.20760443968814],[-121.07134497064918,49.20751092045606],[-121.07147223291794,49.207477273008095],[-121.07185923698832,49.20737572051466],[-121.07252537198977,49.20723394470763],[-121.07271954428347,49.207201102723175],[-121.07384972431296,49.20708957040482],[-121.07404103545596,49.20708366276845],[-121.07498494445036,49.20710852420472],[-121.07525914394444,49.20713092956331],[-121.07645046036795,49.20731737441542],[-121.07660296553632,49.20735339244399],[-121.0766549203607,49.20736563908477],[-121.07721708916152,49.20752358053865],[-121.07729016783316,49.207547222781116],[-121.07764667349849,49.207652061501456],[-121.07818295080803,49.20782741806924],[-121.07833157698273,49.207883836425985],[-121.07839215335093,49.207911985955846],[-121.07860996470404,49.20799637851283],[-121.07868424875353,49.20802486576301],[-121.07884565982438,49.208090330846275],[-121.07895409009338,49.20813701618279],[-121.07979037598173,49.20836696684551],[-121.07994385322692,49.20841007078138],[-121.08011992697789,49.208466892691774],[-121.08061288615514,49.20864590456788],[-121.08084172054333,49.2087398183119],[-121.0811029639945,49.20885212934392],[-121.08130438697846,49.20894534896978],[-121.08138288083084,49.208982769251165],[-121.08155781278772,49.209066603725375],[-121.08216150669226,49.20940038476045],[-121.0822594326663,49.209465190801716],[-121.08234042536023,49.20951146714947],[-121.08247420986683,49.20959454820613],[-121.08294291175605,49.2099215896879],[-121.08311555942636,49.210059460369116],[-121.08324991182646,49.21016963340862],[-121.0832749777259,49.21019248601588],[-121.08334005066453,49.21024310503095],[-121.08393750121436,49.21076577966276],[-121.08400829971923,49.210843447067],[-121.08409872378049,49.21093046446897],[-121.084390499488,49.211241245203645],[-121.08453535589197,49.211414492968416],[-121.08458995117371,49.21148295708523],[-121.08466857159938,49.21155167890563],[-121.08509693184247,49.211967938472604],[-121.08528085279204,49.21217792067335],[-121.08546600868316,49.212392478985784],[-121.08561152189539,49.21246227728402],[-121.08573785526015,49.21251851452582],[-121.08588726437246,49.21258397904486],[-121.08610416024575,49.21267733480466],[-121.08617674657526,49.21270573865749],[-121.08632742071251,49.212775491703596],[-121.08651826902302,49.21285525208853],[-121.0868576084353,49.21300917585599],[-121.08699673235982,49.21307444901182],[-121.08736425099616,49.21323811071355],[-121.08742658005791,49.21326604562477],[-121.08754902280072,49.213326614125776],[-121.08767852620326,49.21336918026287],[-121.08847609710178,49.21370639596965],[-121.088789996324,49.21387353396849],[-121.08889749960287,49.213929187844656],[-121.0890073792746,49.21396239423133],[-121.0893588015696,49.214067237592225],[-121.08942113294248,49.21409517131548],[-121.08957102748731,49.21415614109751],[-121.08962180541036,49.21417960505523],[-121.0898386867745,49.21427323142476],[-121.09013819400293,49.214381623179634],[-121.09017918838391,49.21440012957787],[-121.09043532715724,49.21451246147597],[-121.09075800904203,49.21466166016135],[-121.09101398982412,49.21479174816236],[-121.09115217486628,49.21486599473686],[-121.09132638578264,49.21494076468254],[-121.09199927571925,49.215271428094866],[-121.09211783591017,49.215336315846265],[-121.09225307850177,49.21540592457418],[-121.09238610817916,49.215480214041364],[-121.09250808831588,49.21554526618753],[-121.09274942032425,49.21568398375363],[-121.09284832310422,49.21573980957759],[-121.0930631587823,49.21586914465496],[-121.09357078163225,49.21621933195648],[-121.09363881930305,49.21627458959966],[-121.09372699090939,49.21633442759141],[-121.09394192824792,49.216495342978355],[-121.09404067450603,49.21656892511859],[-121.0940819285978,49.21660125466529],[-121.0941487616733,49.216651666221594],[-121.09423472051031,49.21671619368654],[-121.0943747525762,49.216821817631065],[-121.09454916976912,49.21695974645823],[-121.09465801929629,49.21705154385779],[-121.09471158970977,49.21709739907425],[-121.09498105332258,49.217295197401626],[-121.09507635447999,49.217368892090015],[-121.09529082662051,49.217534294013525],[-121.09557441869417,49.21777727657606],[-121.0956505658352,49.21783713335878],[-121.09579183989088,49.21794732264155],[-121.09583015102058,49.21797500621675],[-121.09594185304968,49.218039865312434],[-121.09617757327246,49.21818311785667],[-121.09639319041875,49.21832150264696],[-121.09663461732396,49.21849207135969],[-121.0969019727777,49.21864493658516],[-121.09712959391095,49.218783586483006],[-121.09729069355843,49.21888508544077],[-121.09740850829793,49.218940919187524],[-121.09760874176001,49.219029826920924],[-121.09777611000695,49.21910454394474],[-121.09788113547572,49.21915133211903],[-121.09852885543123,49.21939593972103],[-121.09877777555454,49.21947944634584],[-121.09879602277519,49.21948563598769],[-121.09902621245669,49.21958379855349],[-121.0992558994095,49.21968672844283],[-121.09931824427068,49.21971465620687],[-121.09943482775034,49.21976592036609],[-121.10021267385605,49.220080152598705],[-121.1002968356224,49.220113024070386],[-121.10055397869895,49.220216351994374],[-121.10073288189406,49.22029582004843],[-121.10090073292015,49.2203660515753],[-121.10106734942397,49.22043170657546],[-121.10130565442795,49.220534464243215],[-121.10157635651797,49.22065588204047],[-121.1019160907534,49.220823302834276],[-121.10195190636071,49.22084212792907],[-121.10202578060661,49.2208748096786],[-121.1021902154261,49.22094488357842],[-121.10225893023102,49.220977610181265],[-121.10251516385502,49.22108963391634],[-121.1026287786407,49.22113652783525],[-121.10281190079142,49.22122492626252],[-121.10355405098318,49.221552169186054],[-121.1037698910958,49.22167250281738],[-121.10392509203047,49.22176498876608],[-121.10426855183698,49.22194610357532],[-121.10444012417196,49.2220300221328],[-121.10468170954825,49.222150684916755],[-121.10476195471122,49.222188165163494],[-121.10497703826394,49.22229943955127],[-121.10555562035056,49.2226462981325],[-121.1062252777593,49.22310725200183],[-121.10637564796048,49.22321303828354],[-121.10653485833849,49.22333276802926],[-121.1067629551465,49.22351624625806],[-121.10724751759467,49.22374463956335],[-121.1074637159715,49.22382917245133],[-121.10760166452998,49.22388985076764],[-121.10776190536635,49.22395098215069],[-121.10815874649263,49.22411504694123],[-121.10840300954217,49.22422679971032],[-121.10852034838088,49.2242873887043],[-121.10871847275607,49.22438039957658],[-121.1089426006832,49.22448756455906],[-121.10931152379955,49.224655715779555],[-121.10953052358553,49.224762646505624],[-121.10973454552428,49.224864954045515],[-121.1100281973837,49.225013616579965],[-121.11024404100284,49.22513421497141],[-121.11037494278142,49.22521290197153],[-121.11059674255098,49.225342223513806],[-121.11102483278496,49.225601306762094],[-121.11116337265426,49.22568907258671],[-121.11137735895115,49.225827348206515],[-121.11150266045377,49.22591029035638],[-121.1116036389753,49.2259794345182],[-121.11172767478081,49.22605808761682],[-121.11186326981496,49.22614120773973],[-121.1121196639205,49.226284789468885],[-121.11233286233094,49.22641428481372],[-121.11245755562844,49.2264704119427],[-121.1126923151282,49.22659101488716],[-121.11291427948454,49.22670258314083],[-121.11306922416635,49.22678150913953],[-121.11330050649836,49.22690252117267],[-121.11334399586819,49.22693015259978],[-121.11341275670908,49.226962593450395],[-121.11348664874977,49.22699526704619],[-121.113550693017,49.227023542218376],[-121.11361774377009,49.22705590533788],[-121.11387571841377,49.22716826597191],[-121.11440166203583,49.22742865997062],[-121.1149333957087,49.22766676794924],[-121.11519511987542,49.22779253920306],[-121.11529457849286,49.22784356658923],[-121.1153864006873,49.22788551438188],[-121.11550004508511,49.22793239425835],[-121.11568198089846,49.228016202860935],[-121.11573078470099,49.22802603041556],[-121.11577271757133,49.22803582605521],[-121.11704393747756,49.22841627448061],[-121.11727294287495,49.22851010807931],[-121.11755355246353,49.228636160674334],[-121.11773269618425,49.22869757295848],[-121.11793504397143,49.22879977786816],[-121.11819855990072,49.228876002058605],[-121.11869447152309,49.229095549861505],[-121.11881062742286,49.229151281847855],[-121.11889605769005,49.22918869638869],[-121.11911182918008,49.22927770371246],[-121.11914987049921,49.2292918325093],[-121.11919773238851,49.229310628504074],[-121.1192409344433,49.229324711436796],[-121.11943724723695,49.229386330200576],[-121.11966938998737,49.22946676756586],[-121.11988581673309,49.22953323930674],[-121.11999404498235,49.22956633583723],[-121.12010177171655,49.22960420011225],[-121.12021436598017,49.2296284723909],[-121.12051687712035,49.22970984021077],[-121.1206520601666,49.229748108637075],[-121.1207239577348,49.22976715365137],[-121.12088736352042,49.22981487395172],[-121.12100588627953,49.22984814699892],[-121.1212505383123,49.22992407703956],[-121.12147457740309,49.22999991192931],[-121.12153400072258,49.230023181965144],[-121.12164096280773,49.23005199716989],[-121.12191213020577,49.230137291168724],[-121.12201691008705,49.230170518042314],[-121.12213198334143,49.230203922240605],[-121.12254644846364,49.23033207944036],[-121.12279187275702,49.230417053424915],[-121.12298037933348,49.23048761321549],[-121.12325137295716,49.23059094826215],[-121.12342787803236,49.23066124351022],[-121.1236124934672,49.23073613680486],[-121.12379242069149,49.23080658631259],[-121.1239296146091,49.23085847397342],[-121.12415867521935,49.23095201425735],[-121.1244184377384,49.23106413911257],[-121.12466274812415,49.23117612325196],[-121.1249078254205,49.23129717224327],[-121.12508371590262,49.2313897113442],[-121.12552946161962,49.23161287215969],[-121.12595834249387,49.23184935972005],[-121.12606669880559,49.23191403144702],[-121.12623227104152,49.232006669886495],[-121.12663157654794,49.23219755562703],[-121.12669174305212,49.232230157514344],[-121.12675069912879,49.23225792309321],[-121.12685873293022,49.23230932640068],[-121.12698003842628,49.232365281471374],[-121.12711163794823,49.232421413353435],[-121.12721846290664,49.23246797104109],[-121.12733507993265,49.232519482397066],[-121.12746249098787,49.23256641165343],[-121.12776890042821,49.23269275348656],[-121.12783393287603,49.23271177152747],[-121.12828848946859,49.23286765511255],[-121.12855950972953,49.2329709674735],[-121.12877407826713,49.23305538808462],[-121.12901764211843,49.23315830563189],[-121.12931919367914,49.23329824413611],[-121.12942897260535,49.23334944378345],[-121.12966413146407,49.23343422501422],[-121.13030750353633,49.233723531644124],[-121.13035708515129,49.23374239989082],[-121.1307619034028,49.23389743998203],[-121.13095123427782,49.23397675450948],[-121.13100721595436,49.23400015187812],[-121.13110171883457,49.234033175195066],[-121.13163473093257,49.23424418401301],[-121.13190559123919,49.23436553213419],[-121.13207725937,49.23444940514333],[-121.13227544409338,49.23454265863917],[-121.13249796471547,49.23464969572329],[-121.13269101908239,49.234742716543856],[-121.13282933007706,49.23481690745556],[-121.13289560800406,49.23484048021977],[-121.13310113920349,49.23492927342048],[-121.13321779814551,49.23498049987479],[-121.13334519362577,49.23502769138033],[-121.13362856743349,49.23514452977155],[-121.1337965227854,49.23521469953762],[-121.13396320888668,49.23528058956603],[-121.13410122606605,49.23534123293501],[-121.13414098762053,49.23535543358436],[-121.13427106618573,49.235393452811934],[-121.13466767687623,49.23551229015152],[-121.13487604052374,49.23557414271065],[-121.13514232409895,49.23559180633796],[-121.1353078231926,49.23560350190109],[-121.13582259953628,49.23561180630006],[-121.13611162318497,49.235625703789445],[-121.13637103543351,49.23564333378563],[-121.1366591469492,49.23566593052718],[-121.13702993749608,49.23570324694875],[-121.13718903520943,49.235710428526765],[-121.1374228712437,49.23570970634809],[-121.13787414690391,49.2357171013755],[-121.13820266548677,49.23573136832784],[-121.1384964114248,49.23574941489881],[-121.13857782057867,49.2357598547491],[-121.13865456822117,49.2357655734031],[-121.13881195566582,49.23577267539071],[-121.13906372719218,49.23578122117825],[-121.1392287573522,49.23579740027008],[-121.13942218808317,49.23580499991537],[-121.13967177860756,49.235817956646606],[-121.13988485656343,49.23583489504185],[-121.14005769941687,49.23584213310159],[-121.14030511002787,49.23585949176351],[-121.14050320293909,49.23587181053275],[-121.14071816231542,49.23587079805295],[-121.14094857762092,49.23586991390554],[-121.14126429476674,49.23587513184632],[-121.14149376932804,49.235883225645],[-121.142152522953,49.235911804663026],[-121.1424462424087,49.23593011882874],[-121.14273435865799,49.23595269933857],[-121.14299159426419,49.23597472583759],[-121.14327877064261,49.23600628401586],[-121.14383578982478,49.23608721003193],[-121.14407864152948,49.236131707640595],[-121.14433523899203,49.23617625586837],[-121.14457124860316,49.23622044393553],[-121.14485731893716,49.236279003425956],[-121.14508598733372,49.236327649887656],[-121.1452268121966,49.236361628850304],[-121.14532445079529,49.23638124797661],[-121.14614088989549,49.2365291170241],[-121.14638672783265,49.236577965803136],[-121.14651947042006,49.236607068122666],[-121.14689883029367,49.23664473593648],[-121.14722796077959,49.236686066967266],[-121.1474023511876,49.23671139669677],[-121.14750733350586,49.23672655413925],[-121.147609363181,49.23673707677218],[-121.14790731195292,49.23676430801298],[-121.14804146622734,49.23677993073905],[-121.14829649835224,49.23680664442711],[-121.1486020916377,49.236842959769625],[-121.14872595157404,49.236858406741895],[-121.14910548310694,49.23687803142323],[-121.14944024926515,49.23691480986861],[-121.14961339960854,49.236935578385804],[-121.14974628463278,49.23694691073535],[-121.15002287561626,49.236964721372146],[-121.1504682280424,49.23701240194662],[-121.15066666090408,49.23703796047325],[-121.15086553342098,49.23705931637867],[-121.1512881195231,49.237111038818526],[-121.15154690859559,49.2371511662154],[-121.151678415593,49.23717568660052],[-121.15214016688574,49.23721450829765],[-121.15246759526214,49.23725574632766],[-121.15259316933484,49.23727125684955],[-121.1528794216685,49.23731176860304],[-121.15329842448776,49.23738136456108],[-121.15339090615511,49.23740103279874],[-121.15349418116803,49.237416107437475],[-121.15372098713814,49.23743335580279],[-121.15404938684881,49.23746532248789],[-121.15431082941423,49.23749654098727],[-121.15452469295991,49.23752250657887],[-121.15476085564265,49.23754891527261],[-121.15487958703157,49.23756412434099],[-121.15505022965924,49.23757602938442],[-121.15583335236842,49.2376648038636],[-121.15613409950615,49.23771469115267],[-121.15618808363043,49.23772445266153],[-121.15628277702048,49.23773941838659],[-121.15633549025581,49.23774489165218],[-121.15673156497468,49.23778722688822],[-121.15698271798774,49.237818246815245],[-121.1571931618904,49.23784406227254],[-121.15771122955967,49.23791978045788],[-121.15798454775876,49.237968997947995],[-121.15839012284808,49.23805207036469],[-121.15867528440386,49.238119572285896],[-121.15912814570137,49.23824366671014],[-121.1594396693115,49.23833857603872],[-121.1597057918817,49.2384238306961],[-121.16019344011231,49.23859346219427],[-121.16029434799239,49.238631256747794],[-121.16055269316921,49.2387251811022],[-121.16066047326005,49.238763013325375],[-121.16090507474351,49.23885687874926],[-121.1613359332849,49.239043692535816],[-121.16153935901379,49.23913683479694],[-121.16175432244096,49.23923472573771],[-121.16237239507643,49.2395548328266],[-121.16256785306531,49.23967495869922],[-121.16270343460288,49.23972644117504],[-121.16345285044456,49.240089362167716],[-121.16406064118374,49.24035992984728],[-121.16430325123969,49.240489511740996],[-121.16492758520894,49.24088176450976],[-121.16507000094444,49.240983158253776],[-121.16516905780668,49.24108824443844],[-121.16588420441515,49.241549410281294],[-121.16608345106924,49.241732288011235],[-121.16629531911124,49.24194251552372],[-121.16636972485038,49.24202027864244],[-121.16651046523037,49.24212131519719],[-121.16654072237135,49.24214437758856],[-121.16689206476761,49.24225345338602],[-121.16703232465142,49.2423096411099],[-121.16726635442801,49.24238977285371],[-121.1673262554686,49.24240880595846],[-121.16861433741958,49.242915095601916],[-121.16865022609171,49.24293361955397],[-121.16870110440942,49.24295676688299],[-121.16906009517157,49.24312452703618],[-121.16911392823224,49.243152317218005],[-121.16952428684043,49.24338806192917],[-121.16968560005392,49.24348973625178],[-121.16992027369025,49.24364629090233],[-121.16998689100839,49.24368338614408],[-121.17014024922243,49.243762429772616],[-121.17097423060233,49.244288358975425],[-121.17118738617239,49.24445352644444],[-121.17134123549685,49.24457741621832],[-121.17142346250165,49.244646224642416],[-121.17146700399431,49.244673822906385],[-121.17169948196296,49.244835064713754],[-121.17191357768026,49.24499125136108],[-121.17221830083012,49.24523466379764],[-121.17232737010673,49.24532637881827],[-121.17241774703551,49.24539949364776],[-121.17269937499526,49.2455840802819],[-121.17296590219811,49.24568255949433],[-121.17305311670985,49.24572001583247],[-121.1735421128134,49.24584481393151],[-121.17380161788489,49.24591169113353],[-121.1739039538461,49.24593601263582],[-121.17405079781365,49.24597867359236],[-121.17418013329062,49.246007866555146],[-121.17431932752599,49.24604144307906],[-121.17456431088006,49.24609920621117],[-121.17479259147565,49.246152278620116],[-121.17493520800593,49.246186016566746],[-121.17514131495737,49.246220892091884],[-121.1754566624049,49.2462798369793],[-121.17551408291011,49.24628974191654],[-121.17563188011071,49.24631418557168],[-121.17571975254721,49.246328827607186],[-121.17576218175593,49.246334110020825],[-121.17609047230604,49.246384331671585],[-121.17615305653172,49.2463941787365],[-121.17633872948201,49.24641066330344],[-121.17655874310563,49.24642755703789],[-121.17671881780984,49.24642570093948],[-121.17704835813404,49.24643087011398],[-121.17726930616305,49.2464387831222],[-121.17750226155626,49.24644695337801],[-121.17772022445183,49.246450510000095],[-121.1779497575995,49.24645852613756],[-121.17839849907587,49.24647465427184],[-121.17866545598102,49.24646996376746],[-121.17871180387472,49.24647063013915],[-121.17936074659858,49.24646273024516],[-121.17965342914013,49.24645862882936],[-121.18018037083402,49.246466691590726],[-121.18045575675526,49.24648013613003],[-121.1806195939048,49.24649169444533],[-121.18087392024171,49.246509274903225],[-121.18094086139097,49.24651029293277],[-121.18122234361043,49.246514707421596],[-121.18147247087408,49.24652306861498],[-121.18177532443926,49.24653688999326],[-121.1819820588054,49.246549236611955],[-121.18219740808006,49.246561399663285],[-121.18241101640618,49.24657377312125],[-121.18283947904929,49.246603075946496],[-121.18310363746475,49.24662531244048],[-121.18332707698056,49.24664234535339],[-121.18399462622652,49.246720109935275],[-121.18420777033658,49.24673696052146],[-121.18485516645373,49.246810156479306],[-121.18503132660253,49.246835501465185],[-121.1851500627325,49.24685095537049],[-121.18536401549434,49.246876581110214],[-121.18565032669677,49.24691728369451],[-121.18636035064405,49.24704964051862],[-121.18664731839293,49.24711715301234],[-121.18680960779089,49.24716020608197],[-121.18706739918562,49.24722725318027],[-121.18743988789748,49.24733212299318],[-121.18803912988513,49.247521539947634],[-121.18875531895496,49.24779342112439],[-121.18902466733859,49.24791482528584],[-121.18907898379862,49.24793811562555],[-121.18932182753909,49.24804987404278],[-121.19001481605278,49.24842952090358],[-121.1902163244133,49.248558610575955],[-121.19046341573815,49.24872891206861],[-121.19089174186762,49.24904148696119],[-121.19127717339487,49.24935328239257],[-121.19143735055229,49.24949968545575],[-121.19174680486896,49.24986446027086],[-121.19191010455548,49.2500470943339],[-121.19247705465494,49.25068101783117],[-121.1925730987283,49.25084908545067],[-121.19268102997636,49.25103516563031],[-121.19272039989178,49.251103162123016],[-121.19286392242934,49.25129421238997],[-121.19290889165565,49.25135795709938],[-121.1930395978977,49.25153997375488],[-121.19319859776853,49.25178076013014],[-121.19333271479218,49.25191332258171],[-121.19346558760525,49.2520413098633],[-121.19390060920318,49.252538535834894],[-121.19396197365644,49.25259342181659],[-121.19431699908712,49.25290045475979],[-121.19441209432864,49.25297826893452],[-121.19445391605058,49.253006068602964],[-121.19489982509747,49.253332098897324],[-121.19510106923111,49.253497239461545],[-121.19527156957645,49.25364382433369],[-121.19541599662512,49.25377655426569],[-121.19563928185694,49.25397791141144],[-121.19570920683887,49.25403318671502],[-121.19589502448187,49.254197917371734],[-121.19604912166534,49.254303735134755],[-121.19632313763067,49.25454654699596],[-121.19640277820567,49.25462422941843],[-121.1964641474434,49.2546791227837],[-121.19653659680264,49.2547432420422],[-121.19656174249658,49.25476606674312],[-121.19659921357594,49.25480269228436],[-121.19668024982204,49.254866914454],[-121.19696379031237,49.25510083918661],[-121.19712400523272,49.255247232536504],[-121.19736670151359,49.255493714965716],[-121.1974905429536,49.25562609228328],[-121.1975433290723,49.25568087302325],[-121.19762639583872,49.25575871591044],[-121.19803491728864,49.2561473369003],[-121.1935443732081,49.25832895324734],[-121.19320027299709,49.25849655947991],[-121.18913854736616,49.26046879180888],[-121.18910653339859,49.260429304332135],[-121.18903252609502,49.26034706946477],[-121.18864215848386,49.25999925975956],[-121.18858424283985,49.25994424581837],[-121.18839764953836,49.25977043943087],[-121.18825415610131,49.2596287221179],[-121.18809410771566,49.25946427279419],[-121.18801665054306,49.259382171624324],[-121.18776465331021,49.25917584676735],[-121.18759166531767,49.259020119231714],[-121.187557155123,49.25898813323401],[-121.18749112094997,49.2589285252843],[-121.18734343730286,49.25882721297825],[-121.1870494349052,49.258561782397656],[-121.1870026009917,49.258516003320274],[-121.18679196868027,49.25834196783833],[-121.1864460056642,49.258030517922506],[-121.18641616563085,49.25800325042224],[-121.18638806617095,49.2579757809947],[-121.18609659992872,49.25776881613853],[-121.18589614925216,49.257612706523766],[-121.18579763556622,49.257534732499394],[-121.18559811863356,49.257369652050755],[-121.18550819382773,49.25729177264869],[-121.18511868607506,49.25695272590019],[-121.18494820470451,49.25680613470596],[-121.18474962766638,49.256632064321046],[-121.18426236490852,49.25612514283971],[-121.18411792991736,49.25594306174317],[-121.18408435732731,49.25590209527676],[-121.18395025425679,49.25576953111469],[-121.18381742686203,49.255641245508464],[-121.18347925028826,49.25527178372566],[-121.18334841644334,49.25510779143722],[-121.18324101126242,49.25496655025801],[-121.18312390104147,49.254802882186965],[-121.18294465577361,49.25452566000189],[-121.18291248492648,49.25447122425452],[-121.1826462856667,49.254120753042386],[-121.18250858128968,49.253907116594426],[-121.18232287616874,49.2538906428289],[-121.18172858552606,49.25381841256403],[-121.18159906828913,49.25380726393953],[-121.1814712625825,49.25379619167528],[-121.18135671090828,49.25378994265302],[-121.18112760765234,49.253777444243745],[-121.18090242313819,49.25376033043654],[-121.18083033713904,49.253759082816565],[-121.18054364769877,49.253754716117705],[-121.18027976098466,49.25374601894186],[-121.1799922938848,49.25373259503771],[-121.17981470975917,49.25372071089552],[-121.17956672328845,49.25370792391805],[-121.1789297174544,49.25371580414698],[-121.17866443130625,49.25372056283461],[-121.17837509592981,49.25372510198721],[-121.17788244800234,49.253717152228056],[-121.17733797069289,49.2536950455252],[-121.17712339579494,49.25369165031889],[-121.17690241327375,49.253683737098896],[-121.17666942167395,49.2536755656378],[-121.1765887496783,49.25367421057944],[-121.17645266921663,49.25367657311476],[-121.17571717042895,49.253656057547815],[-121.17534654403275,49.25363214209492],[-121.17504458165912,49.25360931468392],[-121.17499524119985,49.253604291259784],[-121.17444796909516,49.25355949221371],[-121.17377395916505,49.253476873262606],[-121.1735219337078,49.253436837359935],[-121.17326474538177,49.253396849282154],[-121.17301272173307,49.25335680320666],[-121.17264409903335,49.25329716357206],[-121.17237288305219,49.253243293091224],[-121.17219935303807,49.25320901623116],[-121.17199443210852,49.25317898004743],[-121.17135649895498,49.25304721825694],[-121.17111319435077,49.252989525131305],[-121.17088317292419,49.252936368805706],[-121.1707439605023,49.25290278820072],[-121.17049897593692,49.25284472965972],[-121.17026892692947,49.25279185036665],[-121.16993357355878,49.252710011678815],[-121.16967111007611,49.25263820454121],[-121.16947540806866,49.25258573520464],[-121.16888615441648,49.25243245953522],[-121.16872386227922,49.25238938883897],[-121.16845325543265,49.252313262257495],[-121.16803675607119,49.252185208978865],[-121.16779284627336,49.25210040849039],[-121.16752632315487,49.25200163012844],[-121.16737278140064,49.251940618749195],[-121.16721018517187,49.25188400032638],[-121.1668431326987,49.25174350005802],[-121.16657288389409,49.25163102036712],[-121.16629838054781,49.251509887300536],[-121.16604279060465,49.251388762825414],[-121.16577485770533,49.2512541116377],[-121.16553221538588,49.25112426579235],[-121.16523368755995,49.25095328375179],[-121.16514787425501,49.2509023527217],[-121.16510433161409,49.250874743189655],[-121.1646435590684,49.250561452015],[-121.16460172836706,49.250533919048955],[-121.16412519644896,49.25020694568977],[-121.16394575224189,49.250064703791516],[-121.16375181516652,49.2499130696282],[-121.16356348067488,49.249757184903814],[-121.16353023682157,49.24972975713708],[-121.16345770856319,49.24968336294779],[-121.16312332396667,49.249444242625756],[-121.16291017417252,49.24927906047923],[-121.16282748313,49.249214735610444],[-121.16265539994805,49.249117358942186],[-121.16242649664025,49.24898784185927],[-121.16217685945735,49.248826369576186],[-121.16173528338835,49.248675458389414],[-121.16156458876158,49.2486142358307],[-121.16113361953782,49.24847704129933],[-121.1608752479825,49.24838284137139],[-121.16027109933745,49.24812594928293],[-121.16004204489616,49.24801445304339],[-121.15995017069618,49.24797227517376],[-121.15969381399087,49.247842357401204],[-121.15961737134649,49.24780058366082],[-121.15938754640794,49.24768003000508],[-121.15896613244321,49.24743500043828],[-121.1587374118335,49.247287440110526],[-121.15862008446985,49.24720915112796],[-121.15843241742475,49.24708006056585],[-121.15831260646894,49.24699263835223],[-121.15825159613291,49.24695127719137],[-121.15765969732564,49.24652802570105],[-121.15748591862061,49.24638123504627],[-121.15716345318678,49.24606142786862],[-121.15713319815106,49.2460383629852],[-121.15697033182646,49.24596817408378],[-121.15674129595504,49.24585667047492],[-121.15659261801176,49.245782328346515],[-121.15592097995818,49.24549728660301],[-121.15566467727459,49.24536708042111],[-121.15511911351108,49.245043722015396],[-121.1550780953029,49.24502496281735],[-121.15495233232586,49.24497815297854],[-121.15476576302629,49.24492098581441],[-121.15469070936648,49.24491535564079],[-121.15429457477072,49.24487302235024],[-121.1539808088936,49.244832127610735],[-121.15364913106602,49.244781684675324],[-121.15348030951812,49.24475210668586],[-121.15321617596766,49.24472979762569],[-121.15294610794656,49.244698479301995],[-121.15266182402661,49.24467159076126],[-121.15246167640565,49.2446456718919],[-121.15227863982452,49.24462052244894],[-121.15219332046402,49.24461442865716],[-121.15197845754946,49.24459771616077],[-121.15135300598438,49.24452897817203],[-121.15110571306273,49.244493600935826],[-121.15084296169344,49.24445809579149],[-121.15042392781547,49.24438821269399],[-121.1503296923652,49.24436875244163],[-121.14986787144652,49.244329923418036],[-121.14959438587888,49.24429844265183],[-121.14907452103958,49.24422287857094],[-121.14893615121755,49.24419804714352],[-121.14885127369806,49.244187739524875],[-121.14862021378997,49.24416154927673],[-121.14852675105053,49.244151143542915],[-121.14844998833391,49.24414543198349],[-121.14839897982017,49.24414003196019],[-121.14812626778303,49.2441176035663],[-121.14789473879081,49.24409590129127],[-121.14759036864217,49.24406387257513],[-121.14751015494645,49.24405828458886],[-121.14696644400489,49.24401349967752],[-121.14671134298789,49.24398707046731],[-121.14640573424604,49.243950462833915],[-121.14619821981722,49.243929279231075],[-121.14593627552134,49.24390253988034],[-121.14587668320259,49.24389703161107],[-121.14557573783493,49.24386515136608],[-121.14523844274353,49.243819228099305],[-121.14501470098105,49.24378884896408],[-121.14491734853642,49.24378276644722],[-121.14438534922245,49.24372468418916],[-121.14409906477003,49.24368415029667],[-121.1437931296569,49.24363427692359],[-121.14346583310241,49.24357498678117],[-121.14321996213664,49.24352612288675],[-121.14306879160843,49.24349224459772],[-121.14231950372005,49.243358672149476],[-121.1422063942331,49.243338912955636],[-121.14190656646478,49.24328000825969],[-121.14161405488807,49.24321691283598],[-121.1414415250347,49.24317361597688],[-121.14138756684534,49.24316356882197],[-121.14122047000103,49.24313404873505],[-121.14087646988324,49.24311937503515],[-121.14079065414597,49.24311804904753],[-121.14057737223084,49.24311913882616],[-121.14034692094906,49.24312002217108],[-121.14007233643989,49.24311553139825],[-121.13979648241539,49.243106751598475],[-121.13952112831656,49.24309320324615],[-121.1392737086403,49.24307556462818],[-121.13910989386235,49.24306394349021],[-121.13895932566834,49.243057150780224],[-121.13875604032798,49.24304487607685],[-121.13856476128329,49.24303286302354],[-121.13836147615352,49.243020587576396],[-121.13809125598031,49.24300726717555],[-121.13792277859879,49.24299093210585],[-121.13772415599927,49.24298337657209],[-121.13746473236775,49.24296546269788],[-121.13734850235925,49.24295908965718],[-121.13724894066883,49.242957699815754],[-121.13702710348998,49.242958405465714],[-121.13673877390941,49.24295384513194],[-121.13646292147598,49.242945056809035],[-121.13621674378426,49.24293197789531],[-121.13616181587737,49.24293118544232],[-121.13588646388038,49.2429176278126],[-121.13518503951512,49.24285240994596],[-121.13473369494419,49.24284500375176],[-121.13443087952484,49.2428310502954],[-121.13420355400126,49.242818529350735],[-121.13388796419316,49.24279525563073],[-121.13384380279132,49.242790157802865],[-121.13356718332344,49.242772305852085],[-121.13327731729964,49.242749632795814],[-121.13295921978988,49.242717501194925],[-121.13268575518872,49.24268597750428],[-121.13216596515326,49.24261005344361],[-121.13189435704989,49.242560857188984],[-121.13162667302961,49.242507038068055],[-121.13131406072088,49.24243906316701],[-121.13124682988278,49.242424468636735],[-121.1309479657927,49.242356545500485],[-121.1304492975094,49.24222687870081],[-121.13016429774044,49.2421415457738],[-121.12995983359609,49.24207507158968],[-121.12985502022926,49.24204186200937],[-121.12958577679481,49.241970203604225],[-121.12932732994584,49.24189396242824],[-121.12879436075069,49.24171452559235],[-121.12854980914467,49.24162058779791],[-121.12832758927144,49.24152681109738],[-121.12811171301713,49.2414381111855],[-121.12792362594016,49.24136307207344],[-121.127744596016,49.241283642686206],[-121.12762795652777,49.24123213245774],[-121.12750223150074,49.24118529036555],[-121.12721715459008,49.24106808123199],[-121.12706243268948,49.24100273200008],[-121.12688246194482,49.240932280056604],[-121.12646030732097,49.240745446841714],[-121.1261920787343,49.24061518470563],[-121.12604641634663,49.24054544415771],[-121.12592603446721,49.24048050981812],[-121.1257671285249,49.24040593858306],[-121.12570179017375,49.24037338272617],[-121.12560011045034,49.240326777958686],[-121.12537008599953,49.24024194263144],[-121.12511274758143,49.24013895536191],[-121.12500248535005,49.2400922413059],[-121.12495632181293,49.24007351662837],[-121.1248917805812,49.24004973824289],[-121.12448689808772,49.239894964900124],[-121.12424330989084,49.23979202919818],[-121.12397214343538,49.23965711705117],[-121.12384300466015,49.239610115725725],[-121.12314360621164,49.23929738088183],[-121.12294353071762,49.23922206909594],[-121.1228973688756,49.23920334351288],[-121.12285760746518,49.23918913880326],[-121.1224906406999,49.23906624194845],[-121.1222341107445,49.23897202564152],[-121.1218613978032,49.23882208095729],[-121.12174474173922,49.23877084252375],[-121.12161905953849,49.238723706077884],[-121.12133398235589,49.23860676829037],[-121.12113019747424,49.23851775230007],[-121.12091263815279,49.23842896010822],[-121.12064007207748,49.23830750765836],[-121.12043673203995,49.23821428819373],[-121.12022014967205,49.238116237321215],[-121.11981489220113,49.23791631903748],[-121.11976967791475,49.237888613184],[-121.11923503284567,49.23762785298981],[-121.11875154170303,49.23735474720569],[-121.11860905858398,49.23727132709892],[-121.11834305546186,49.23713663283425],[-121.11826448426126,49.2370992410621],[-121.1181500189397,49.23704359566061],[-121.11794872317468,49.236963707388],[-121.11777049170175,49.23689332632094],[-121.11758757194981,49.236818501260494],[-121.11753799318481,49.236799618255176],[-121.11749478469339,49.23678553480037],[-121.11718509731068,49.23669030336247],[-121.1170601603467,49.2366525052089],[-121.11689844516442,49.23660485714881],[-121.11652245886508,49.23648631959811],[-121.11638991595044,49.236439145053446],[-121.11628981366034,49.23641036576091],[-121.11616738421294,49.236381413221],[-121.1158648372393,49.23630003402916],[-121.11559270014315,49.23622369553136],[-121.11527269657618,49.23612855881842],[-121.11504052814381,49.236048112806216],[-121.11482407797503,49.235981632002726],[-121.11471583846105,49.23594853060827],[-121.11452808700554,49.23588701341861],[-121.11434331470697,49.235829853174785],[-121.11394988312907,49.23569755046823],[-121.113693389107,49.23560331337656],[-121.11338947488548,49.23548605721828],[-121.11316433740302,49.23538788213633],[-121.11291392497124,49.235284897077555],[-121.11280713815623,49.23523803810301],[-121.11255080165917,49.23512604122491],[-121.11232788088229,49.23502317417429],[-121.11202084359729,49.23491930474909],[-121.11170293165351,49.23478816416549],[-121.1114045882777,49.234715984011075],[-121.11113420778415,49.23463943336923],[-121.11043034383582,49.23440308941117],[-121.11039448498678,49.23438454586422],[-121.11035473152592,49.23437033644393],[-121.11019052732992,49.234313822358],[-121.10966746088808,49.23410710631652],[-121.10943765020174,49.234004479198525],[-121.10937528007621,49.23397655789019],[-121.10918867393234,49.23388801698975],[-121.10898835425529,49.233799132761526],[-121.1086654808734,49.23364999296415],[-121.10853826939933,49.23358500620444],[-121.10813636858775,49.23340295508253],[-121.10791125230621,49.23330476872959],[-121.10748226592754,49.23308624535673],[-121.10730108832318,49.23301148011812],[-121.10695392955826,49.23284825801251],[-121.10675751348333,49.23275503547528],[-121.10649796849424,49.23262483298191],[-121.10629952407645,49.232518273210864],[-121.10613351601708,49.232430093682716],[-121.1059704852912,49.232346280398524],[-121.10592775728213,49.23232771177074],[-121.10582830030155,49.23227666711812],[-121.1057364771116,49.23223472044914],[-121.10492266795463,49.231803033053055],[-121.10478757302509,49.231715128174436],[-121.10469324923677,49.23166432460937],[-121.10427866674296,49.23142359765389],[-121.10411627177365,49.23131754389921],[-121.10392739858231,49.231201823761545],[-121.10369722326861,49.231054056476275],[-121.1035451242356,49.23094818098815],[-121.1034615991121,49.230892796697795],[-121.10311062819629,49.23068455701943],[-121.10297798248222,49.23060607141884],[-121.10289990875249,49.23056417866524],[-121.1028525271741,49.23054087707403],[-121.10280638206044,49.23052214265033],[-121.10248250082019,49.23035038095553],[-121.10220857765039,49.23024263605787],[-121.10214498152567,49.23021013423381],[-121.10198149070149,49.230130813041534],[-121.10191694660027,49.230107289922515],[-121.10170243955781,49.2300228245073],[-121.10156448049256,49.22996213921272],[-121.10140251662187,49.229900921393956],[-121.10100564993095,49.22973683319133],[-121.10076308614865,49.22962514240617],[-121.10053179257216,49.22950439131921],[-121.10032539907192,49.22942451419597],[-121.09954890554869,49.22904720192166],[-121.09929300944096,49.22889910150118],[-121.09883192067153,49.22859477625501],[-121.09862283346911,49.22844287641795],[-121.09843635796389,49.228304699062804],[-121.0981482865476,49.228070838395986],[-121.09809299065626,49.22802489883192],[-121.09782718854272,49.22784053495595],[-121.09773664661382,49.22780287011714],[-121.09721174227876,49.22753340721015],[-121.09713709963115,49.2274916658003],[-121.09708503816385,49.22746391692429],[-121.09670103087689,49.2272597967805],[-121.09650323509544,49.22718002304317],[-121.09631668079003,49.227091458968204],[-121.09615052178488,49.22702130787634],[-121.09594167555633,49.22693228748509],[-121.09586187458085,49.226890589873676],[-121.09562471547753,49.226760537422976],[-121.09520307295985,49.22658739342761],[-121.09514759206928,49.22655949678372],[-121.09502539054094,49.22651248426787],[-121.09484647316906,49.22643300749845],[-121.0946786093756,49.22636276719817],[-121.09455517334524,49.22631118682426],[-121.09435345944694,49.2262360299751],[-121.09404471357878,49.22610044839932],[-121.09368280119271,49.22596386036249],[-121.09345559669613,49.22586976692241],[-121.08243471677596,49.232222280060256],[-121.07416112920697,49.23548441509927],[-121.0732510636299,49.2358798032891],[-121.07234208207205,49.236216310237715],[-121.07070983012869,49.236775162018816],[-121.0687002997137,49.238117157937765],[-121.0681002848731,49.2389259273005],[-121.06752018033873,49.23974125271017],[-121.0669400563906,49.24055656501473],[-121.06634000899416,49.241365043267955],[-121.06576650779105,49.24218234855902],[-121.06529502003255,49.24302631894089],[-121.06499708083915,49.24390332650994],[-121.06489823627692,49.24479959261329],[-121.06503522417556,49.24569313488278],[-121.06537409949004,49.246563775727026],[-121.06582704144542,49.247412859603735],[-121.06644495262029,49.24821451257681],[-121.06722230891847,49.24895607353783],[-121.0680777466793,49.24965890542517],[-121.06896769162562,49.25034470427772],[-121.0698816690598,49.25101495684861],[-121.06991221150379,49.251034966450796],[-121.06993149283764,49.25104768536643],[-121.0699507436253,49.25106069158342],[-121.06997002402548,49.25107341947005],[-121.0699892757895,49.25108641670133],[-121.07000855621091,49.251099144580635],[-121.0700278375978,49.25111186347789],[-121.07004711804036,49.25112459134974],[-121.0700663994484,49.25113731023962],[-121.0700856799121,49.25115003810417],[-121.07010667252659,49.25116283526845],[-121.07012595301195,49.25117556312522],[-121.07014526406348,49.25118800367349],[-121.07016454456985,49.251200731522935],[-121.07018553722904,49.25121352867084],[-121.07020484831234,49.25122596920768],[-121.07022412885081,49.2512386970458],[-121.07024515114381,49.25125121585485],[-121.07026443170379,49.2512639436852],[-121.0702837428292,49.25127638420698],[-121.07030473555544,49.2512891813303],[-121.07032404574733,49.25130163082276],[-121.07034506809572,49.25131414961109],[-121.07036437926362,49.25132659011752],[-121.07038365988761,49.25133931792514],[-121.07040468226916,49.251351836701204],[-121.0704239934687,49.25136427719623],[-121.07044498531855,49.25137708326891],[-121.07046429653937,49.25138952375624],[-121.07048360777057,49.25140196423994],[-121.07050463020742,49.251414482995294],[-121.07052391090636,49.251427210776185],[-121.07054493336554,49.251439729523284],[-121.0705642446392,49.251452169991545],[-121.07058352537014,49.251464897761075],[-121.07060454786244,49.25147741649582],[-121.07062385916777,49.25148985695275],[-121.07064485112952,49.251502662984066],[-121.07066416245615,49.25151510343332],[-121.0706834432406,49.251527831183736],[-121.07070446578832,49.251540349897844],[-121.07072374754908,49.25155306866229],[-121.07074305796306,49.25156551807476],[-121.07076233974483,49.2515782368319],[-121.07078333178474,49.251591042834534],[-121.07080261358814,49.25160376158393],[-121.07082192499911,49.25161620200306],[-121.07084120586877,49.251628929723445],[-121.0708621989081,49.25164172673146],[-121.07088145020278,49.25165473277075],[-121.07090073110479,49.25166746047965],[-121.07092001297208,49.251680179206694],[-121.07093929389524,49.25169290690818],[-121.07095854618747,49.25170590395442],[-121.07097782713187,49.25171863164857],[-121.07099707849082,49.25173163766563],[-121.0710163308153,49.25174463470081],[-121.07103558219582,49.25175764071051],[-121.07105483358714,49.251770646716544],[-121.07107237377936,49.251783574452595],[-121.07109162614643,49.251796571473264],[-121.07111087756961,49.25180957746853],[-121.07113009940828,49.251822861786735],[-121.07114763964118,49.251835789509464],[-121.07116686150123,49.251849073820544],[-121.07118437215932,49.25186227986348],[-121.07120359404085,49.25187556416748],[-121.07122110471937,49.25188877020389],[-121.07124032662237,49.25190205450091],[-121.07125780772678,49.251915538857354],[-121.0712753184358,49.25192874488415],[-121.07129451077653,49.251942307497245],[-121.07131199095714,49.25195580082244],[-121.07132947210259,49.251969285166226],[-121.07134695325823,49.25198276950691],[-121.07136440387536,49.25199654114935],[-121.07138188505137,49.25201002548388],[-121.07139933664376,49.2520237881418],[-121.07141678729187,49.252037559774955],[-121.07143249713636,49.25205153147098],[-121.07144994875937,49.2520652941199],[-121.07146739943808,49.25207906574395],[-121.07148311026646,49.25209302845352],[-121.07150053137222,49.25210707839824],[-121.07151624126544,49.252121050080575],[-121.07153363279869,49.25213537834599],[-121.07154931311851,49.25214962834947],[-121.07156499344791,49.25216387835043],[-121.07158061460139,49.25217868500194],[-121.07159623481023,49.25219350062917],[-121.07161011420996,49.252208516322646],[-121.07162570580032,49.252223601293146],[-121.07163952507901,49.25223918261353],[-121.071653374914,49.25225447662691],[-121.07166716557347,49.25227032729132],[-121.07168095528775,49.25228618693181],[-121.0716930051438,49.25230223766198],[-121.07170676528429,49.25231837562507],[-121.07171878461095,49.25233471365646],[-121.07173080394611,49.252351051686055],[-121.0717427936978,49.2523676680405],[-121.07175475291159,49.25238457169804],[-121.07176503144666,49.25240110979366],[-121.07177696108543,49.25241829177441],[-121.07178721004418,49.25243510819369],[-121.07179742846411,49.252452211916264],[-121.07180764689156,49.25246931563752],[-121.071817835735,49.25248669768384],[-121.07182802458607,49.25250407972872],[-121.07183650220638,49.2525213835181],[-121.07184497983302,49.252538687306384],[-121.07185513911429,49.25255634767379],[-121.07186361675424,49.25257365145969],[-121.07187035356823,49.25259115531734],[-121.07187880067438,49.252608746405805],[-121.07188724874152,49.252626328514985],[-121.07189395598083,49.2526441106962],[-121.07190069186191,49.25266162352837],[-121.07190742870264,49.25267912738147],[-121.07191413595733,49.252696909560015],[-121.07192087185368,49.252714422389516],[-121.07192757911861,49.25273220456638],[-121.07193260473278,49.2527496301632],[-121.07193934064375,49.25276714299013],[-121.0719443662661,49.25278456858562],[-121.07194939189222,49.252801994180345],[-121.07195441752212,49.25281941977442],[-121.07195773095104,49.25283677609386],[-121.07196275658782,49.25285420168666],[-121.07196607097688,49.25287154902667],[-121.0719676435708,49.25288910541879],[-121.07197092837328,49.2529067310842],[-121.07197250097025,49.25292428747527],[-121.07197404493202,49.25294211321402],[-121.07197390627661,49.252959591352315],[-121.07197544928556,49.2529774260683],[-121.07197528199416,49.2529951735537],[-121.07197508415715,49.25301320834325],[-121.07197317506258,49.2530311648804],[-121.07197300681557,49.253048921342604],[-121.07197109771873,49.25306687787882],[-121.0719691886204,49.25308483441439],[-121.07196724992956,49.253103069275774],[-121.07196534082827,49.25312102581033],[-121.07196340117983,49.2531392696489],[-121.07195978081354,49.2531571479303],[-121.07195784211598,49.253175382789536],[-121.07195419215353,49.253193539396094],[-121.07195054218825,49.25321169600196],[-121.07194860253023,49.25322993983778],[-121.07194495255987,49.2532480964425],[-121.07194130258667,49.25326625304655],[-121.07193765261064,49.253284409650014],[-121.07193571294451,49.25330265348357],[-121.07193206296338,49.25332081008587],[-121.07192841297945,49.25333896668747],[-121.07192476299262,49.25335712328848],[-121.0719228233184,49.25337536711977],[-121.07191920291807,49.25339324539354],[-121.07191726419471,49.25341148024545],[-121.07191361419784,49.25342963684415],[-121.07191170506236,49.25344759336882],[-121.07190976633377,49.25346582821921],[-121.07190785719534,49.2534837847429],[-121.07190594805542,49.253501741266035],[-121.07190397877605,49.25352026341915],[-121.0716976595287,49.25470059247331],[-121.07137598694871,49.255574818651354],[-121.07100529853491,49.25644088327928],[-121.07057234829175,49.25729394892148],[-121.07008061524623,49.25813361479471],[-121.0695620491596,49.25896668272533],[-121.0690501901064,49.25980119155249],[-121.06852828230006,49.260632982532904],[-121.06787882311001,49.26114400910145],[-121.06714784727824,49.261483558415186],[-121.06578806786078,49.26192964858336],[-121.06488410515553,49.26214905087893],[-121.06326917714962,49.26218054829969],[-121.06182112248268,49.262566720373336],[-121.06016491741688,49.263711322893066],[-121.05877365900069,49.264919083484656],[-121.0576261711687,49.266775732173656],[-121.05720244304247,49.268409838592234],[-121.05636075249338,49.26933375777639],[-121.05561893908417,49.26996622693765],[-121.05539163493431,49.27119348833614],[-121.05697163847529,49.2720406870083],[-121.05803150938073,49.272410106479875],[-121.0589099835482,49.27283521100765],[-121.0595742021299,49.27367252746272],[-121.05929112696613,49.274552429113186],[-121.05905898448695,49.275438605805185],[-121.05905022796018,49.27547231569335],[-121.0590466008765,49.27549019293806],[-121.05904126172555,49.27550799172798],[-121.05903763463563,49.27552586897146],[-121.0590340075429,49.27554374621434],[-121.05903038044737,49.27556162345662],[-121.05902504128201,49.27557942224381],[-121.05902141418022,49.2755972994848],[-121.05901778707566,49.27561517672517],[-121.05901247758244,49.27563269719706],[-121.05900713840201,49.27565049598144],[-121.0590018289007,49.27566801645185],[-121.05899480732447,49.27568545846652],[-121.05898778670047,49.275702891502604],[-121.05898079479707,49.27572005520223],[-121.05897209177321,49.27573713146792],[-121.05896509985884,49.27575429516572],[-121.0589563661817,49.27577165872018],[-121.05894766313918,49.27578873498259],[-121.05894064152433,49.2758061769906],[-121.05893190782827,49.275823540541765],[-121.05892317508324,49.27584089511395],[-121.05891615345126,49.27585833711906],[-121.05890741973626,49.27587570066688],[-121.05889868601467,49.275893064213584],[-121.05889166532317,49.275910497237824],[-121.05888290190506,49.27592813909544],[-121.05887416816445,49.27594550263873],[-121.0588654344173,49.2759628661809],[-121.0588584127452,49.275980308179015],[-121.05884964930127,49.27599795003208],[-121.05884091649263,49.276015304593045],[-121.0588321827199,49.27603266813071],[-121.05882344894064,49.27605003166719],[-121.05881474579701,49.276067107911636],[-121.05880601200472,49.276084471445856],[-121.05879727820592,49.276101834978874],[-121.05878686295638,49.27611883276167],[-121.05877815882879,49.276135917979275],[-121.05876945565237,49.27615299421786],[-121.05875903942356,49.27617000097458],[-121.05875033623373,49.27618707721078],[-121.05873994967538,49.276203805651754],[-121.05872956406716,49.27622052511346],[-121.05871917845143,49.27623724457382],[-121.05870879282823,49.276253964032726],[-121.05869843688295,49.2762704051773],[-121.05868808093034,49.27628684632051],[-121.05867775465595,49.27630300914942],[-121.05866571628063,49.27631909351682],[-121.05865538999127,49.27633525634278],[-121.05864338224323,49.27635105341626],[-121.05863137352941,49.276366859465845],[-121.05861936576503,49.276382656535866],[-121.0586073876785,49.276398175291355],[-121.05859540862636,49.276413703023],[-121.05858174811237,49.27642886500086],[-121.0585681479197,49.27644346137331],[-121.05855115320755,49.27645762250705],[-121.05853250575895,49.27647114855023],[-121.0585104944313,49.27648395206144],[-121.05848854246516,49.27649619894244],[-121.05846496840557,49.27650752343943],[-121.05844148435351,49.27651800401503],[-121.05841637725162,49.276527571183266],[-121.05838961837058,49.27653649427771],[-121.05836469128887,49.27654437360176],[-121.0583381124301,49.27655160885142],[-121.05831168200267,49.2765574525311],[-121.05828705465025,49.276562521776654],[-121.05826083394314,49.276566399299575],[-121.05823473390059,49.276569145609706],[-121.05820875260915,49.276570778662936],[-121.05818120957258,49.27657092372343],[-121.05815375656017,49.27657022486108],[-121.05812639261573,49.276568691053946],[-121.05809908900919,49.2765665916368],[-121.05807016237146,49.27656357880541],[-121.05804300817589,49.27656007883319],[-121.05801420222014,49.27655593478076],[-121.05798713710286,49.27655159985662],[-121.05795839053742,49.276546899164025],[-121.05793135607856,49.27654227693544],[-121.05790435227318,49.27653736740969],[-121.05787902992554,49.27653282364016],[-121.05785202517343,49.27652792307913],[-121.05782505011786,49.276522744198616],[-121.05779978812565,49.276517634807405],[-121.05777281308188,49.27651245591384],[-121.05774758079234,49.276507068197795],[-121.05772066610118,49.27650132368825],[-121.05769375141669,49.27649557917194],[-121.05766857852895,49.2764896348122],[-121.05764169450738,49.27648360299239],[-121.05761652163281,49.27647765862052],[-121.05758969700933,49.27647107016264],[-121.05756455384056,49.276464847465924],[-121.05753947102133,49.27645805916046],[-121.05751264642014,49.2764514706833],[-121.05748759330855,49.27644440405308],[-121.05746254020455,49.27643733741704],[-121.05743748806606,49.27643026179734],[-121.05741246467056,49.2764229168371],[-121.05738744224087,49.27641556289308],[-121.05736244855476,49.27640793960852],[-121.05733748552836,49.27640002902783],[-121.05731252251049,49.27639211844128],[-121.05728930224676,49.27638399904046],[-121.05726436893981,49.2763758101301],[-121.05723946533588,49.276367342901466],[-121.05721630448606,49.27635866685976],[-121.05719143155254,49.27634991232947],[-121.05716830041501,49.27634095796479],[-121.05714345719481,49.27633192511076],[-121.05712032607552,49.27632297073556],[-121.05709725435527,49.276313459730375],[-121.0570724418167,49.27630413956937],[-121.05704937011564,49.27629462855366],[-121.05702632907739,49.27628483024269],[-121.05700325739538,49.27627531921686],[-121.05698024607219,49.276265242583264],[-121.05695720506311,49.2762554442571],[-121.05693419375976,49.276245367613434],[-121.05691118246641,49.27623529096467],[-121.05688820087931,49.27622493599845],[-121.05686518960609,49.276214859339625],[-121.05684392108374,49.276204573874466],[-121.05682093952687,49.276194218893394],[-121.05679798767699,49.27618358559495],[-121.0567767191839,49.276173300116014],[-121.05675376735451,49.27616266680793],[-121.0567326176693,49.27615126807027],[-121.05671149864973,49.27613958203816],[-121.05669040933817,49.27612761768931],[-121.05666937943245,49.27611509671129],[-121.056650091318,49.276102375908565],[-121.05662909209032,49.276089567631985],[-121.05660983465337,49.27607655953138],[-121.05658886418841,49.27606348191191],[-121.05656963647161,49.27605019549125],[-121.05655037906764,49.276037187379266],[-121.056529379897,49.27602437908202],[-121.05651009185864,49.27601165825266],[-121.05648903235564,49.275999415549734],[-121.05646794316515,49.27598745115483],[-121.05644853540608,49.27597585254118],[-121.05642735618217,49.275964732053076],[-121.05640440549404,49.275954089689456],[-121.05638310653622,49.27594409141974],[-121.05636000545624,49.27593485856403],[-121.05633681528735,49.27592646064046],[-121.05631353411228,49.275918915604585],[-121.05628845177118,49.27591212700302],[-121.05626331003783,49.275905895020365],[-121.05623813765325,49.275899950321964],[-121.05621287617487,49.27589484055473],[-121.05618590167023,49.275889661260024],[-121.05616055014396,49.27588539539539],[-121.05613345589038,49.27588133831476],[-121.05610804497206,49.27587762906259],[-121.05608089132589,49.27587412859338],[-121.0560537070247,49.27587091540754],[-121.0560264939842,49.275867971549346],[-121.05599753821522,49.27586523647209],[-121.05597026482046,49.27586285820214],[-121.05594299142847,49.27586047992538],[-121.05591571803932,49.27585810164172],[-121.05588670287896,49.27585592315927],[-121.05585939979319,49.275853823173634],[-121.05583209575173,49.2758517321589],[-121.0558030805993,49.275849553654005],[-121.05577580722372,49.27584717533498],[-121.0557485041481,49.27584507532123],[-121.05571951870677,49.275842618481526],[-121.0556922750427,49.27583996182914],[-121.05566503138178,49.27583730516977],[-121.05563781838565,49.27583436121355],[-121.05561063509661,49.27583113893814],[-121.05520777443863,49.27586595614085],[-121.05502644582764,49.27595292811636],[-121.05494100252983,49.27607644185101],[-121.05488355635693,49.2762116686799],[-121.05484257139305,49.276353857385566],[-121.05480978726507,49.27649980532588],[-121.05477865561174,49.276646388369045],[-121.05474430847717,49.27679085716756],[-121.05470503564311,49.27693311524125],[-121.0546724902707,49.27707681856504],[-121.05464330951641,49.27722123551819],[-121.05461076375076,49.277364938760904],[-121.05457323090455,49.27750700585423],[-121.05452566557958,49.277646348328325],[-121.05446304916057,49.2777816263255],[-121.05437168628707,49.277912193643274],[-121.05424163165068,49.278034508633844],[-121.05409069668744,49.278142892493605],[-121.0539235633288,49.27822572338216],[-121.05370354772359,49.27825594938048],[-121.05348256837584,49.278279084755034],[-121.05326363171274,49.27829920089497],[-121.05304649617972,49.27831856020798],[-121.05282900092587,49.2783412857423],[-121.05261006272713,49.27836140953322],[-121.05239178403272,49.27837535618707],[-121.05216845790754,49.27838823178028],[-121.05194852292873,49.27838546544287],[-121.05174254629901,49.27834866859996],[-121.05154701494172,49.27827851911071],[-121.05135737060951,49.27820158439119],[-121.05117490446412,49.27812188427864],[-121.05099451076038,49.278038895775936],[-121.05081390860629,49.277957864109446],[-121.05062979168481,49.277877527842065],[-121.05044561688835,49.27779773889339],[-121.05025540558906,49.27772614394022],[-121.05005555598703,49.277664246642544],[-121.04984402489845,49.27761506566962],[-121.0496309387506,49.27759654105566],[-121.04940668349033,49.27760203344999],[-121.04918207170006,49.27762695998121],[-121.0489788800398,49.27767684046553],[-121.04880023409368,49.27775462432424],[-121.04863817176852,49.27785431647489],[-121.04848863608402,49.27796558118138],[-121.04835426904448,49.27807979770324],[-121.04825459732794,49.27820744393165],[-121.04817469065334,49.278343332441146],[-121.04808994742775,49.278476174957554],[-121.04800520371694,49.2786090173808],[-121.04792211122283,49.27874250393661],[-121.04784070066816,49.278876347341885],[-121.04776436666207,49.27901098317421],[-121.04769301806546,49.27914726432526],[-121.0476283978127,49.279284982152376],[-121.04756548936581,49.27942277854781],[-121.04750089906534,49.279560208955296],[-121.04742621467715,49.27969548864097],[-121.04734483077567,49.279829053171866],[-121.04726008246057,49.2799618947395],[-121.04717365120358,49.280094379264156],[-121.04708553699226,49.28022650674184],[-121.04700081696699,49.28035906971852],[-121.04691774916787,49.2804922678639],[-121.04683804487838,49.28062618880614],[-121.04675996212656,49.280761032211714],[-121.04668359116317,49.280895954183],[-121.04660890224184,49.28103123303113],[-121.04653250063289,49.28116643314815],[-121.04645615906291,49.28130106759098],[-121.04637639156628,49.28143555362174],[-121.04629500159041,49.28156911701127],[-121.04621523412592,49.28170359389101],[-121.04613366366966,49.28183883592542],[-121.04604878723552,49.281972807323676],[-121.04595736266458,49.2821036450049],[-121.0458527481628,49.28222909513384],[-121.04573007852147,49.28234638101045],[-121.04558607887272,49.282453944733014],[-121.04542898032506,49.28255526787286],[-121.0452668632568,49.2826552415275],[-121.0451096730568,49.28275740806938],[-121.04496392860982,49.28286517052802],[-121.04482301982266,49.282975978804494],[-121.04467895560862,49.28308410680575],[-121.04452353549436,49.28318578551967],[-121.0443583805477,49.283281946459624],[-121.04419004039404,49.28337570535305],[-121.04402004678333,49.283468828667736],[-121.04385326774748,49.28356406620786],[-121.04369640181889,49.28366314225748],[-121.04355086067221,49.283768945545454],[-121.04343142522193,49.28388807372536],[-121.04333491200472,49.28401811609614],[-121.0432415827726,49.28415056016054],[-121.04313350180568,49.284276128166695],[-121.04300565299711,49.284393452776406],[-121.04286957125922,49.28450730435555],[-121.04272537859086,49.284616542722006],[-121.04257319316707,49.28472006360336],[-121.04241298520205,49.284818145273505],[-121.04224304327923,49.2849107000021],[-121.04206676142111,49.28499817247226],[-121.04188594333621,49.285079788511105],[-121.04169890454894,49.2851552090207],[-121.04150717873148,49.28522618252833],[-121.04131082646967,49.285292143424265],[-121.04111152848567,49.28535346668156],[-121.04090769450407,49.285408933395146],[-121.04070265806666,49.28545955389602],[-121.04049455590658,49.28550665890639],[-121.04028507258589,49.28555058750862],[-121.0400757686485,49.28559283690091],[-121.03986318950194,49.285633527874545],[-121.03965235315643,49.285674009906344],[-121.03944148567444,49.285714778805506],[-121.03923061782187,49.28575554729046],[-121.03901978036981,49.28579602808025],[-121.0388073195711,49.285835594772124],[-121.03859657082239,49.28587523982092],[-121.03838416988859,49.28591424009158],[-121.03817348101227,49.28595331872627],[-121.0379610784035,49.28599232713794],[-121.0377486763994,49.28603132615233],[-121.03753795663738,49.28607068184354],[-121.03732555295693,49.286109688998856],[-121.03711339037501,49.28614644237914],[-121.03689792286738,49.28618191554426],[-121.03668422709971,49.28621691047975],[-121.03646881858695,49.286251826179935],[-121.03625500286769,49.28628793347305],[-121.03604271738709,49.28632581590568],[-121.03583190439086,49.28636601213634],[-121.0356224426054,49.2864096533374],[-121.03541769621924,49.28645746275287],[-121.03521412100027,49.286510395955936],[-121.0350162815589,49.28657403105764],[-121.03482426921252,49.28664751522533],[-121.03463988677557,49.286730083443565],[-121.03446499484602,49.28682043205888],[-121.03430491360379,49.286917091929304],[-121.03416099359893,49.287023517494696],[-121.03403326469214,49.28713943051328],[-121.03391181317373,49.287260991380855],[-121.03379360592427,49.28738438858163],[-121.03367218297929,49.28750567083361],[-121.03353937476874,49.28762078103913],[-121.03339689180737,49.287729815973584],[-121.0332445550099,49.28783444540806],[-121.03308744113436,49.28793547147487],[-121.0329271423155,49.28803409520262],[-121.03276525068642,49.28813151762796],[-121.03260329867817,49.28822949639786],[-121.03244134502285,49.28832748388787],[-121.03227942149798,49.28842518384271],[-121.03211587531315,49.28852196078225],[-121.0319507960293,49.28861697979841],[-121.03178253182313,49.28870959642219],[-121.03161111255758,49.288799532339446],[-121.03143491626695,49.28888586476835],[-121.03125565547973,49.28896867258001],[-121.03107495315916,49.28904886955636],[-121.03088938332641,49.28912630687069],[-121.03070228048544,49.28920198617938],[-121.03051364561338,49.289275898497735],[-121.03032338720567,49.28934889667177],[-121.03013321875817,49.28942105062685],[-121.02994139788409,49.289492559749185],[-121.029749546551,49.28956434682256],[-121.02955940619647,49.28963622144476],[-121.02936914577282,49.289709208921394],[-121.02918050575042,49.289783127832855],[-121.02899024412805,49.28985611462597],[-121.02879841969298,49.289927621671985],[-121.02860500161785,49.2899979362394],[-121.02840996196184,49.29006731866385],[-121.02821489088142,49.29013698800503],[-121.028021501891,49.29020701422958],[-121.02782796195488,49.2902784405705],[-121.02763772605361,49.2903511466288],[-121.02745067273136,49.290426263569614],[-121.02726677401924,49.290504051752215],[-121.02708768077153,49.290585164701966],[-121.02691333224024,49.29067016801499],[-121.02674366959887,49.29075960933156],[-121.02657331310634,49.29085550508618],[-121.026407491055,49.290957248311166],[-121.02624455060813,49.29106420345706],[-121.02608806925012,49.291175110063456],[-121.02594324261423,49.2912896664474],[-121.02581019321511,49.29140673253188],[-121.02569240514065,49.29152591870367],[-121.02559345606137,49.29164596455803],[-121.0255182409284,49.29176936938484],[-121.02550422324666,49.29191588657203],[-121.02554750006757,49.29207378819996],[-121.02563305472911,49.292222650963126],[-121.0257474642409,49.29234323474897],[-121.02589944598873,49.29241847529026],[-121.02611231511818,49.2924556365317],[-121.02635325471013,49.29247181688698],[-121.02658944703988,49.29248412398565],[-121.02681040797891,49.29249402318465],[-121.02703807255303,49.29248957961907],[-121.02726603881942,49.292482325667386],[-121.0274879021698,49.29248382069359],[-121.02769897470598,49.29250566715325],[-121.02789315198496,49.292556632543175],[-121.02808852750617,49.29262850210418],[-121.0282787608104,49.292716211049246],[-121.02845378722407,49.2928173197393],[-121.02860366336206,49.29292825745137],[-121.02871835314856,49.29304631533026],[-121.02879611382694,49.293171692850265],[-121.0288469195097,49.293307673579484],[-121.02887789343022,49.29345203268411],[-121.02888945463896,49.29360086503447],[-121.02888878714823,49.2937513801967],[-121.0288779331268,49.293900586852146],[-121.02886239293477,49.29404534631405],[-121.02884195547306,49.294187624618104],[-121.02881463717807,49.294329865460476],[-121.02878389232558,49.29447195737952],[-121.02874798021676,49.29461408178269],[-121.02870864147715,49.29475605725531],[-121.02866587800322,49.29489786583902],[-121.02861968783647,49.29503952548464],[-121.02857184536902,49.29518054057474],[-121.02852228986663,49.29532147667805],[-121.0284710820359,49.29546176822203],[-121.02841822090019,49.295601424181825],[-121.028365389326,49.295740801790146],[-121.0283091319057,49.29588002146532],[-121.02825290499231,49.29601895380866],[-121.02819496400382,49.29615781613014],[-121.02813537061618,49.29629603388045],[-121.02807403420691,49.296434450922504],[-121.02801101452474,49.29657251066138],[-121.02794799446737,49.2967105703348],[-121.0278850039183,49.29684835164711],[-121.02782030115469,49.29698604497013],[-121.02775391411805,49.297123389959985],[-121.0276892096175,49.29726109212485],[-121.0276245355822,49.29739850694979],[-121.02755814737544,49.29753585173414],[-121.02749347256868,49.297673266423836],[-121.02742540159737,49.29781024484561],[-121.02735904209885,49.297947311127395],[-121.02729100021615,49.298084011113076],[-121.02722295793232,49.29822071102764],[-121.02715320239358,49.29835733191427],[-121.02708344644387,49.298493952727895],[-121.02701372093722,49.29863028619636],[-121.0269439641661,49.298766906863825],[-121.02687423687482,49.29890324916353],[-121.02680450917362,49.29903959139034],[-121.0267330382872,49.299176132875154],[-121.0266633097606,49.299312474954846],[-121.0265935817883,49.2994488079844],[-121.02652382254836,49.299585428212545],[-121.02639244499659,49.29986299532085],[-121.02634453099152,49.300004564989976],[-121.02633977918651,49.30001675073758],[-121.02629342637616,49.300159808745356],[-121.02624361753605,49.30030298705395],[-121.02619726414298,49.30044604495896],[-121.02615785285522,49.30058857484516],[-121.02613055245385,49.30073053534606],[-121.02612053178247,49.30087188509678],[-121.02613473441886,49.30101208715921],[-121.02616976263879,49.30115072324084],[-121.02622384483678,49.301288261960806],[-121.0262934954553,49.30142510193753],[-121.02637005815942,49.301561701130844],[-121.02645007716183,49.30169817988411],[-121.02652832386434,49.3018351361703],[-121.02660134142211,49.301972699332744],[-121.02666390016968,49.302111476345864],[-121.02671251520066,49.30225185690897],[-121.02676269213053,49.302393725803576],[-121.02681617484399,49.30253687471805],[-121.02686959810096,49.30268058016146],[-121.02692293104542,49.302825129403644],[-121.02697109535788,49.302969720003055],[-121.02701754694142,49.303114231590975],[-121.02705543267682,49.30325835731511],[-121.02708484505358,49.30340123537476],[-121.02710575217002,49.30354316202463],[-121.02711304565207,49.30368361312949],[-121.02710678516063,49.30382203210766],[-121.02708351456113,49.30395853933583],[-121.02703641133762,49.30409254067904],[-121.02696541550358,49.30422459269254],[-121.02687569598282,49.30435465392038],[-121.02676896570878,49.30448280327939],[-121.02563362837144,49.305724220142],[-121.03012982499347,49.309867631447844],[-121.03466574230694,49.31534947656013],[-121.03893587018617,49.319978992057685],[-121.04285905366287,49.3223243464787],[-121.05165583103965,49.32677113940921],[-121.0573203425294,49.32869248062506],[-121.06625529474503,49.32902367017121],[-121.06606473331088,49.328743205366884],[-121.07189250624197,49.32745695027486],[-121.0773280976566,49.327781624553374],[-121.08082627927269,49.33064817069486],[-121.08314969162491,49.33484772678355],[-121.07808585317663,49.33788617980323],[-121.07363884222465,49.343667790678104],[-121.07041546277154,49.34959865357726],[-121.07016518892202,49.350006689592135],[-121.07200839333856,49.35289084489544],[-121.0693572073759,49.35486996630238],[-121.06515894070219,49.35739062719673],[-121.06356936582813,49.35975270602168],[-121.06351250455303,49.36067274679838],[-121.06701403613798,49.36365271300716],[-121.06997265225003,49.36577929217924],[-121.07564549056602,49.3679322513786],[-121.07688603016527,49.3681970939703],[-121.08050942468033,49.36900819467971],[-121.08979079188624,49.37173386447349],[-121.09298605861584,49.37294450217151],[-121.10186211310794,49.376644813468914],[-121.10372953710919,49.37776588504151],[-121.11123617483331,49.38216996625138],[-121.11442079938689,49.385841528827214],[-121.11523405267923,49.389371732873414],[-121.11260923873196,49.3917524004031],[-121.10933995810534,49.39357085906348],[-121.1029860123016,49.39480759860744],[-121.0976206139574,49.39699783145015],[-121.0961360188523,49.39993408564697],[-121.0966642534119,49.402498211438875],[-121.10030456823118,49.40656052070943],[-121.100893690462,49.40855347565003],[-121.09967729234386,49.411432269805594],[-121.09630791643318,49.41313505551956],[-121.0910955381556,49.416979147808476],[-121.08957329990291,49.418831222934685],[-121.08865248553957,49.42307537507329],[-121.08850271914947,49.426559953440496],[-121.08880232127024,49.430103801937186],[-121.08930047494935,49.432041337964456],[-121.0893643152362,49.43403750864246],[-121.08836481250543,49.4381094642819],[-121.08717386017275,49.44475671125216],[-121.0869279142646,49.44784532489817],[-121.0846675641615,49.454280746918904],[-121.08305815792625,49.45836265520301],[-121.08149256570967,49.46164212941789],[-121.08061099589474,49.46433682284394],[-121.08260046551523,49.46602691651898],[-121.08628728266564,49.46878013666306],[-121.07796704689962,49.47214887529383],[-121.0724704699186,49.47314160391747],[-121.06748875893382,49.473841285963296],[-121.05551985805373,49.475375333370486],[-121.05352781919466,49.476033818686865],[-121.05714261337938,49.47958011148062],[-121.06016976546738,49.483712744588374],[-121.06157700063332,49.48632191232089],[-121.0634131430796,49.488930013931416],[-121.06415281658185,49.49028666152302],[-121.06640127768509,49.491629137706276],[-121.0708946398546,49.494997487340285],[-121.07531047756902,49.4987090274193],[-121.07626628022409,49.50115420634152],[-121.07701888688614,49.50537298494325],[-121.07720491375231,49.51114141014743],[-121.07595052662165,49.51601863257202],[-121.07047543261179,49.520381622135844],[-121.06287267885915,49.524316087307916],[-121.05868497403287,49.52517148934149],[-121.04992811493861,49.5259200133847],[-121.04282953824654,49.52938720244584],[-121.04341273995534,49.53104084202562],[-121.04691091360677,49.53647640492935],[-121.04933854319324,49.540675059737644],[-121.049052565124,49.543077207659906],[-121.04653248649416,49.546428005514336],[-121.04172605044968,49.5504351974617],[-121.03849215747496,49.55384788973891],[-121.03526350894366,49.56298443122319],[-121.03445586659979,49.56533530788638],[-121.03491810304604,49.57144898729194],[-121.03298898911063,49.577128869287094],[-121.03026543497178,49.58002609326568],[-121.02332202493561,49.58337557861188],[-121.01706866235435,49.58597371769787],[-121.00855234916469,49.589114020381345],[-120.99698935183368,49.59349597508908],[-120.99402750551775,49.594731948428034],[-120.98923530550687,49.60462302344509],[-120.98578925217447,49.612958948834304],[-120.9840360401252,49.616065013650676],[-120.98213976709505,49.62060617968673],[-120.98061472997185,49.62542735832646],[-120.98056235334712,49.626795642633944],[-120.9806705525546,49.629995177895374],[-120.97565162006907,49.63314610440043],[-120.97086554724298,49.637838348533464],[-120.96720521886687,49.641997483574606],[-120.96461739823269,49.64408814079844],[-120.95984117044765,49.652209919971355],[-120.95787164073262,49.654348800062266],[-120.95798773825761,49.658347291940636],[-120.95812296798603,49.6628037176348],[-120.95713556636717,49.66812842446568],[-120.95645946111222,49.67516673932587],[-120.95644712272217,49.67767975523308],[-120.96365819192576,49.673461679353224],[-120.97121693759509,49.66745124962257],[-120.97648287347221,49.664363750094914],[-120.99335432379216,49.65399617671553],[-121.00118266468125,49.64913862415656],[-121.01020294195332,49.64644811414702],[-121.01405623125568,49.64418399205633],[-121.0172370122994,49.644151136765785],[-121.01772008881251,49.644174398031254],[-121.01775041277932,49.6419761424871],[-121.02433642536528,49.6394508132238],[-121.02847610891347,49.63657883051055],[-121.02857194429366,49.63659054359729],[-121.02959383122483,49.63637689238689],[-121.03224359034552,49.634963376753525],[-121.03522817418273,49.63494247624254],[-121.03858898304402,49.63413500064468],[-121.04177724347335,49.6346681857836],[-121.04448574255616,49.63399140482796],[-121.04774361674556,49.633750430983675],[-121.04972172258354,49.63315690631105],[-121.05134117473567,49.63164307034179],[-121.05261732642846,49.631384428570485],[-121.05580380097103,49.632449129864426],[-121.05998900432469,49.63209554080945],[-121.06065269621476,49.63134065929032],[-121.06042561696654,49.62855027832947],[-121.06107087982573,49.62719209998694],[-121.06259815106863,49.62601431546308],[-121.06395115946614,49.62568352200117],[-121.06787075284637,49.62573069188257],[-121.07160088816681,49.624958161766145],[-121.07375730657661,49.62489360665839],[-121.07927665098556,49.625670532448964],[-121.08186710491383,49.62556741223635],[-121.0856252983647,49.62686393030866],[-121.09008059500991,49.62708948348127],[-121.09088705437873,49.62693993473232],[-121.09247953190284,49.62592306311381],[-121.09382762271828,49.62550602679025],[-121.09723943738688,49.626022327160854],[-121.09813841416388,49.62578503657162],[-121.10374814075577,49.62259347473009],[-121.10986279834796,49.615300051978664],[-121.11108411933475,49.614897120568344],[-121.11218917962158,49.61376196176884],[-121.11642038016757,49.61151766451781],[-121.1165021718153,49.61126971851656],[-121.1200441701002,49.610551400359256],[-121.12294037693577,49.6108231483613],[-121.12363431547445,49.61133837927621],[-121.12338424084399,49.61578674885095],[-121.12538378058831,49.61967976254056],[-121.12749078744199,49.61994640121285],[-121.13419356468215,49.62277326090614],[-121.13742763265243,49.62208734495184],[-121.13865543942467,49.6209667467176],[-121.14126748942527,49.619604845471194],[-121.1436894625913,49.61951556389309],[-121.14777359008403,49.61865376069181],[-121.15071745323574,49.61847943572027],[-121.15476032010783,49.617480563462614],[-121.15454588039154,49.61476356023185],[-121.15547990925447,49.61302080294366],[-121.156876923408,49.61186641621179],[-121.15880067196537,49.61110656776328],[-121.16059985909558,49.60863225320333],[-121.16325718776649,49.60774889862493],[-121.17104050532994,49.603589702579605],[-121.17657104344617,49.60305714284527],[-121.17657319562798,49.60277237600336],[-121.17724212123626,49.59745169933438],[-121.18054772487079,49.59195947488704],[-121.19000134776363,49.585697343831306],[-121.20118288765376,49.587545543759695],[-121.20825351930958,49.59255403992454],[-121.20878795480225,49.59380832368261],[-121.21165027244652,49.58854199985969],[-121.21817496436225,49.58068779453108],[-121.22771365215297,49.57540011484576],[-121.23125366621225,49.57772769884433],[-121.23638164693256,49.58171249505519],[-121.24319668062807,49.58694127924933],[-121.24737489759313,49.59115316875991],[-121.2536421632974,49.59473261292385],[-121.257882115052,49.596883205728595],[-121.26637719494664,49.60239425949653],[-121.27732974319298,49.60720813335048],[-121.28544311532491,49.610263334576146],[-121.29667240285941,49.61593080731514],[-121.30622668729596,49.620920919869064],[-121.30828661445642,49.624915854943495],[-121.30929821193772,49.629539919391895],[-121.31101686076036,49.63376002176533],[-121.31352767331863,49.63837478742444],[-121.31622767180302,49.644539938070935],[-121.32076169924514,49.64932180783495],[-121.32217643783683,49.650685808492064],[-121.32328384210507,49.6547966851167],[-121.32541128262254,49.66524558845265],[-121.32675854972615,49.66809674271248],[-121.32967804070024,49.66968237159779],[-121.33824405724114,49.67101526935323],[-121.35277877610302,49.67151968767494],[-121.3620732455428,49.675541419069994],[-121.37119957669951,49.680695339562796],[-121.39643997657333,49.677315785541154],[-121.41377033079654,49.67500079626063],[-121.4150558238821,49.67922193984943],[-121.41735219358155,49.67943750173305],[-121.42104753879522,49.6798211446272],[-121.42563743905718,49.680142547500935],[-121.43154150068584,49.68050877111472],[-121.43472020393283,49.68106461025554],[-121.44232979692464,49.68382599451448],[-121.44721017527382,49.6865414353755],[-121.45402475482388,49.68907601815096],[-121.46288979092115,49.69348575003975],[-121.47217039721322,49.69595168988268],[-121.4793334220711,49.697512718100725],[-121.48960987961922,49.70088136129581],[-121.49956260938002,49.70105252895068],[-121.50827665870578,49.70026035083271],[-121.51619926104745,49.69946475788674],[-121.52608441502127,49.700039659695086],[-121.53015508637625,49.70172420478018],[-121.53381644689799,49.70490639330848],[-121.53919274389925,49.711165259394726],[-121.54590226829623,49.717869705225155],[-121.54990558853534,49.7204146226279],[-121.55745981433026,49.72430835389333],[-121.56442622073237,49.73027048721833],[-121.56853514762479,49.73447530104774],[-121.57389349466706,49.738556034302206],[-121.57931218664339,49.74086762694031],[-121.58143748815888,49.74159695569207],[-121.58879280422028,49.743431191610085],[-121.59965776410276,49.74519258352166],[-121.60813217591908,49.74536754330716],[-121.61087763633459,49.74557721011285],[-121.61715488542048,49.747075453937214],[-121.62707827333735,49.7499833473512],[-121.63817271000954,49.753450723176634],[-121.64250786255256,49.75405033434285],[-121.64996850797655,49.7515954468381],[-121.65673738524315,49.750858866564386],[-121.66389751509155,49.75097879028337],[-121.67139677461714,49.75103961193715],[-121.67821234981206,49.7523078067367],[-121.68988669435772,49.75393662077747],[-121.69085772362995,49.75410451136866],[-121.6994593708611,49.756492686595344],[-121.70959088402847,49.76110778909935],[-121.71157043117651,49.76297860234795],[-121.71428505811778,49.76650452663303],[-121.71373049684962,49.77005513639889],[-121.70937421263339,49.77351824851569],[-121.70669355808026,49.776454740486706],[-121.7064788401993,49.77948764498696],[-121.70347423612938,49.78453760223118],[-121.70407183498196,49.788249459921026],[-121.70729786924075,49.79137489128534],[-121.70881537926878,49.792102948441254],[-121.7125201914551,49.791903905321924],[-121.7180133245238,49.792661776644756],[-121.72416111693745,49.795646674071406],[-121.72814931297482,49.801507960394275],[-121.73000830828717,49.806637116555216],[-121.72922669561832,49.81247998319671],[-121.72595890731536,49.81707350362573],[-121.71884069853684,49.81981956282539],[-121.71073133546827,49.820507654191566],[-121.71174892274024,49.823016677187],[-121.71659950042232,49.827556112840085],[-121.71886421987729,49.831024955908724],[-121.72405177551882,49.83435869630732],[-121.72526765031267,49.838183801587235],[-121.72509121399638,49.84275395488725],[-121.72789831599377,49.847140055278956],[-121.73333655406137,49.84915645655956],[-121.7380254281916,49.84980331902056],[-121.74389690772695,49.85136254096283],[-121.75324289067808,49.85540652699608],[-121.75525606523918,49.85847774914521],[-121.75531898230159,49.86185156937345],[-121.75751352590522,49.86612559468638],[-121.76070279412087,49.871246582134674],[-121.7654014290663,49.87166507229089],[-121.77057060983383,49.869106925148444],[-121.7771198614961,49.864421873206716],[-121.78056381739187,49.86016334880711],[-121.78154875596316,49.85597989318693],[-121.78253114755745,49.851973100214444],[-121.78330592063651,49.85082065435351],[-121.78399032180421,49.849439510507636],[-121.78760696647248,49.84449601824362],[-121.79411288177874,49.84204126489111],[-121.79826872998494,49.84257776289456],[-121.80300195761292,49.845169312660516],[-121.80810479164947,49.847988186371225],[-121.81624296072171,49.85295260447558],[-121.81865435943823,49.854302028431775],[-121.82418946548884,49.85683142966641],[-121.83121195487608,49.858483795228395],[-121.84241511299388,49.86211203752087],[-121.84758679656308,49.86406503396406],[-121.85228905216111,49.86505472589259],[-121.85763178923278,49.86666522534736],[-121.8671280919327,49.868411650731026],[-121.8721915425946,49.86911291811211],[-121.87868822958987,49.871225811649545],[-121.88507142422091,49.87197448872691],[-121.89004159456773,49.872325183302664],[-121.89763682916666,49.87214644646867],[-121.90321511825083,49.87255255412418],[-121.9106408828219,49.872086782534865],[-121.91803484719136,49.870414648258986],[-121.9226678827763,49.86814036717472],[-121.92727563631941,49.86426790775236],[-121.93334977165937,49.85940273899983],[-121.94028938457784,49.85716678948978],[-121.94710027508992,49.857161070377835],[-121.95471489650375,49.85783034325338],[-121.95789290263603,49.8578009396777],[-121.96652211559847,49.85628557457485],[-121.97129351458285,49.85223672256578],[-121.97253585674474,49.84856547016907],[-121.96971932726608,49.84481611796218],[-121.96750475395115,49.84071845272081],[-121.96998586594462,49.83720715124428],[-121.97735624097666,49.835077178772515],[-121.98281262981682,49.8336532425879],[-121.9870172370499,49.8284052119661],[-121.98976851843499,49.8216265128755],[-121.9908762692211,49.81978299935657],[-121.99606765427264,49.81881709740672],[-121.99948994865456,49.817870628792484],[-122.000136424423,49.817478849139654],[-122.00340648801793,49.81747693333498],[-122.00800417202258,49.816451605227336],[-122.01162953704014,49.81508548225935],[-122.01463775247886,49.81377384831757],[-122.02055539853579,49.812921131857806],[-122.02550757700408,49.81389178624887],[-122.02895532201208,49.81520608473866],[-122.0325764068774,49.817091181542224],[-122.03582202515405,49.819459010151114],[-122.0376026489484,49.820750218774364],[-122.04149314813193,49.824517005952494],[-122.04282281788295,49.825716339113086],[-122.04687728567572,49.82840014333442],[-122.05014772801381,49.82936896700102],[-122.05686878474509,49.830512341499094],[-122.06216787074707,49.832171467333126],[-122.07038445336927,49.83616714000032],[-122.0772842497536,49.83816446235906],[-122.08090492044293,49.8387970079849],[-122.08860523349298,49.841535446339975],[-122.09319540498781,49.84467610801606],[-122.09814896319368,49.84650169218454],[-122.10089001753225,49.84815414510501],[-122.10213573842455,49.85118121772516],[-122.1057608440284,49.85586567994659],[-122.11071657109665,49.861287918988474],[-122.1136319248584,49.86385461924451],[-122.12019221392661,49.86893705797913],[-122.12487424342706,49.87384443336611],[-122.1286924947447,49.87892810356348],[-122.13391159358079,49.88492108417286],[-122.14020481379532,49.88959688554962],[-122.14100120245055,49.89039716483969],[-122.14356775998648,49.895652072339196],[-122.15119272154699,49.903409801653645],[-122.15545205121256,49.90729086650044],[-122.158466927088,49.9092348048497],[-122.16015319123638,49.90957310576807],[-122.1657170108706,49.909057272871],[-122.17307469205556,49.908592630795795],[-122.1808681239556,49.90858279502304],[-122.19113546442856,49.90983191105874],[-122.1937001428618,49.91017097510936],[-122.1999079046829,49.910622969036496],[-122.21256405015276,49.91249543277175],[-122.22133695095839,49.913626922836585],[-122.23320085945818,49.914811729948404],[-122.23834510757209,49.91549110332204],[-122.24223880371011,49.91679870155867],[-122.24472804878405,49.919250488513114],[-122.24491162663719,49.92227483552817],[-122.24075798981994,49.92513520895525],[-122.23448713993574,49.92897333716321],[-122.23272652124459,49.931888640055234],[-122.23317829937197,49.935372401693506],[-122.23530911223962,49.93862516245959],[-122.23744537382377,49.94164619423407],[-122.2404658633403,49.94392824184361],[-122.246597016421,49.947915499008445],[-122.25387736776,49.95304346027714],[-122.26046092569032,49.95886060730925],[-122.26419907253523,49.96416561109433],[-122.26465304816541,49.968848780569],[-122.26466621343093,49.97022224086819],[-122.26040731014197,49.972796645861784],[-122.25254008068728,49.97680579304081],[-122.24660683724804,49.982066236376824],[-122.24228324676939,49.98641591007562],[-122.24077367957923,49.98812827385471],[-122.24317911344882,49.98977893405338],[-122.24664535276419,49.991946944995235],[-122.25064727628549,49.99473747375627],[-122.25225139135306,49.99713984561839],[-122.25296238227372,49.99970469175916],[-122.2526470796921,50.0038803397268],[-122.25166276417436,50.00650766931929],[-122.25166625019266,50.00884350361462],[-122.25165641210349,50.00930287692429],[-122.25270741728663,50.01147246492584],[-122.25323117190405,50.01478822682216],[-122.25323500880235,50.01593115597896],[-122.25126295895612,50.019691731716705],[-122.25035398056089,50.027341756973584],[-122.25138379500022,50.033340090964515],[-122.25616925149512,50.039060207699514],[-122.25961605344345,50.04134726318488],[-122.26483839850785,50.04432025694857],[-122.27183641320808,50.048326070175456],[-122.27351859145259,50.0489564808391],[-122.28052278225519,50.051192366348424],[-122.28681504995731,50.05410701217036],[-122.28680572001981,50.05627903795684],[-122.28502066138694,50.06101739518603],[-122.28199532153327,50.06535255152002],[-122.27975277554287,50.071056539281926],[-122.27901981565267,50.074717492688556],[-122.27883301229261,50.07888413825868],[-122.2722421936646,50.08572680206191],[-122.26850600518975,50.08726147198499],[-122.26201263274932,50.089307141871075],[-122.24743821470823,50.09277158010166],[-122.24030556532287,50.09761857181999],[-122.2396706773887,50.10292771141473],[-122.24106550127976,50.10823979565891],[-122.2458347121342,50.113557877217694],[-122.25098042868754,50.11653118602762],[-122.25266885873611,50.117622772436434],[-122.25647574847969,50.12121910905336],[-122.25745006307302,50.12282302641535],[-122.25894745910372,50.12487903735436],[-122.26108446899087,50.12665295016858],[-122.26648408287654,50.13116877391493],[-122.27286961374148,50.136145210968564],[-122.27409697746282,50.14031216084663],[-122.27220928411283,50.144024271485236],[-122.27558498818678,50.14779749533908],[-122.28259979857711,50.151117983826744],[-122.28800444147613,50.15597576894878],[-122.28870517978935,50.16043572172916],[-122.29011258639888,50.165856088239046],[-122.29364598743777,50.172028624028044],[-122.29639847273369,50.17317540015225],[-122.30369274340043,50.17278413192315],[-122.31135231545319,50.17341662736076],[-122.31526082201482,50.17621890204676],[-122.31524974360363,50.18032895259807],[-122.31327143865597,50.18535086883591],[-122.30846735581463,50.18769048522007],[-122.30168634800192,50.19122083917898],[-122.29989258239164,50.195331217106805],[-122.29738787844819,50.1990385367391],[-122.28830769452068,50.20028744624547],[-122.27947968120382,50.20187601789808],[-122.27563040165859,50.20775160995888],[-122.27535867201527,50.20935238324139],[-122.27257898766598,50.216542591015234],[-122.26649697181176,50.22052933601064],[-122.26693534212748,50.22338827968665],[-122.27486039925921,50.22430648941258],[-122.28322499616884,50.22483167149648],[-122.28919923021355,50.22575283047224],[-122.29569746081182,50.227307202396325],[-122.30450300405062,50.22811385836097],[-122.3108331128642,50.22812098882657],[-122.31412728518745,50.228694603631745],[-122.3242803389211,50.22916162327423],[-122.33434879281022,50.22894034829993],[-122.34307964713042,50.22911592891395],[-122.34984231741021,50.230375430824814],[-122.35786033886421,50.232613029978175],[-122.36088602778248,50.234443042158105],[-122.35962888918645,50.238036264006666],[-122.35489719974862,50.24083472087326],[-122.34616386195358,50.24379810443671],[-122.34232104364918,50.24722225183456],[-122.3426714515004,50.25018908139197],[-122.3456043427169,50.2521322453316],[-122.35255477917029,50.254766667591106],[-122.35825594949648,50.25722611305571],[-122.36484268749598,50.25950966711437],[-122.37081509528795,50.26368380615801],[-122.36767856594867,50.26899027489369],[-122.3668622875966,50.276015894561326],[-122.36292577283355,50.282692965372696],[-122.35809903226061,50.2874918049268],[-122.35747984200735,50.289947795126444],[-122.35933046539687,50.295426136189256],[-122.36004423009943,50.29913748700035],[-122.36342249743936,50.30696065297457],[-122.3669784213522,50.31170910462229],[-122.37000367971024,50.31519252887787],[-122.37678034256649,50.31890459618879],[-122.37963615732151,50.31942276804661],[-122.38382317640226,50.319827509890935],[-122.38695341777672,50.32113789141202],[-122.39122178254293,50.32599243134667],[-122.396657864558,50.33068066095843],[-122.40299478646423,50.333077457579144],[-122.41433161704524,50.33399506914899],[-122.42477462289786,50.33234179052925],[-122.4324539558276,50.330402725163594],[-122.4381735395656,50.32869021074909],[-122.4387080526177,50.32869055545839],[-122.43941647125922,50.332915976111494],[-122.44004532223664,50.33708143382539],[-122.44173906835523,50.34148414186268],[-122.4450455159772,50.343992863067136],[-122.44994855621657,50.34696210872527],[-122.45655352008123,50.35084939963096],[-122.46120887137074,50.35358520157945],[-122.47021825034498,50.359692089929695],[-122.47460246922354,50.36466287532608],[-122.4809487488396,50.369400029453374],[-122.4833544106203,50.36996683578354],[-122.49005181303585,50.371110065492964],[-122.49988790208111,50.371907926606376],[-122.50783606400249,50.37236083693765],[-122.51427691566332,50.37446838839585],[-122.51830049543689,50.377436915317],[-122.52232417565399,50.382972745636344],[-122.52448067262209,50.38679436963926],[-122.52447590365608,50.39216639917863],[-122.52332821061083,50.3953658138715],[-122.52154364691455,50.39896692835016],[-122.52270526553671,50.401994780820644],[-122.52393445289658,50.40213288942948],[-122.52398061903392,50.402333945703624],[-122.52398266006279,50.40251338393006],[-122.52397197191742,50.40269803655636],[-122.52397015379621,50.40288185190048],[-122.52399687843636,50.40306093098488],[-122.52404665857357,50.403237926528725],[-122.5241088238325,50.4034141860437],[-122.52417107590922,50.403589323620864],[-122.52424395636609,50.40376367001642],[-122.52432228084858,50.40393593797247],[-122.52441123390373,50.40410741471225],[-122.52449667373772,50.404278781100125],[-122.52455361413534,50.40445431832622],[-122.52457147088224,50.404634243177426],[-122.52461945452575,50.40481174841351],[-122.5246657685842,50.40498806763283],[-122.5246396579122,50.40516717978513],[-122.52462057499189,50.405346512370556],[-122.52462608987312,50.40552661659102],[-122.52462457678364,50.40570650029197],[-122.5245949515122,50.40588550203316],[-122.52455649740929,50.406064793540736],[-122.52453042919218,50.40624334000802],[-122.5245376145258,50.406424621012285],[-122.52458358391308,50.40660543632547],[-122.52470568107631,50.40675826737873],[-122.52492910811974,50.40687605047597],[-122.52511970161757,50.4070085381646],[-122.52530292205459,50.407145301483354],[-122.52546603979467,50.407291546073445],[-122.52560365303485,50.40744880295835],[-122.52572677909171,50.407611228124075],[-122.5258373475362,50.40777663299691],[-122.52593175777021,50.4079460292743],[-122.52598686496535,50.40812263171855],[-122.52604913080408,50.408297767208545],[-122.5261453000332,50.40846721829066],[-122.52625767271326,50.40863211224579],[-122.52638624829736,50.40879245800237],[-122.52652206868942,50.408950223777005],[-122.52666517811824,50.409104835153066],[-122.52683923810686,50.409246364012446],[-122.52697004881715,50.40940059832129],[-122.52697913135209,50.40958024625882],[-122.52695469808319,50.40976053486654],[-122.52693035089598,50.409939701570806],[-122.52690424633776,50.41011881314619],[-122.52687466999707,50.410297258066954],[-122.52684505062807,50.41047625938082],[-122.5268189454219,50.41065537081602],[-122.52675615474267,50.41083051628636],[-122.52668290589823,50.41100421828197],[-122.52661137091121,50.4111785317196],[-122.52653464998505,50.411351557950915],[-122.52643885779432,50.411520612532975],[-122.5263344084825,50.411687704266605],[-122.52622652951642,50.411853572799906],[-122.52612726410246,50.41202195140431],[-122.5260435536668,50.41219420029197],[-122.52596331431407,50.412367115714645],[-122.52587103237504,50.41253627978745],[-122.52574768012516,50.41269715539689],[-122.52559672767224,50.41285042704055],[-122.52544933227703,50.41300324324833],[-122.52529846480374,50.41315538360081],[-122.52514078258882,50.41330450313446],[-122.5249660870938,50.41344578373619],[-122.5247778072236,50.41358044843898],[-122.52462882204455,50.41373096459919],[-122.52453297485467,50.41390057346925],[-122.52445439767527,50.41407466440137],[-122.52435808630597,50.414227399159145],[-122.52412537561324,50.41432130956184],[-122.5239676854594,50.414470427209984],[-122.52381667821038,50.414624252527574],[-122.52365212929534,50.41477090544642],[-122.52348595185488,50.41491581569825],[-122.5233300148826,50.41506498746591],[-122.52318251821978,50.41521892208464],[-122.5230419201415,50.41537476431182],[-122.52290646400886,50.41553245005144],[-122.52277786370787,50.41569259988005],[-122.52266301962854,50.41585711270184],[-122.52256026019103,50.41602482053466],[-122.52249050161714,50.41619862893583],[-122.52250406236945,50.41638853777467],[-122.52248934507755,50.416556759334824],[-122.5222070634737,50.4165850105515],[-122.52192718669738,50.41660490686703],[-122.52165423910543,50.41664919346176],[-122.52139349255978,50.41671803589362],[-122.52113450195841,50.416786941855385],[-122.52085100848782,50.416762297456884],[-122.52057228401517,50.416721491490115],[-122.52033108291515,50.4167881383112],[-122.52010425642656,50.41689684467493],[-122.51987849456255,50.41701458048965],[-122.51964168291711,50.41711566722679],[-122.51938093061396,50.41718450488648],[-122.51910260560717,50.417184200914996],[-122.51881781337573,50.41717637894826],[-122.51853356770066,50.41718431723503],[-122.51827663062602,50.41724934076856],[-122.51803972834767,50.4173515369207],[-122.51778313568356,50.41741207193752],[-122.5175020135366,50.41742517079876],[-122.5172303385271,50.41747566732133],[-122.51696790886508,50.41754333117595],[-122.51673486317999,50.41764114762833],[-122.51651611866846,50.417759097464106],[-122.5162814858465,50.417854622988415],[-122.51601460285188,50.41791145685456],[-122.51573478483786,50.417953264111134],[-122.5154664464667,50.41800611047332],[-122.51525023359257,50.4181140164898],[-122.51505187996594,50.41824160126771],[-122.51478371157938,50.41829221126092],[-122.5145041069181,50.4183312063148],[-122.51424188507134,50.418396054569456],[-122.51398393852091,50.41847397365482],[-122.5137526820314,50.418571282584004],[-122.51357085762264,50.418712879567664],[-122.51335931488647,50.41876020273697],[-122.51319242073845,50.41861718836402],[-122.51295493033795,50.418521441885055],[-122.51271006511908,50.41842995201857],[-122.51246700135094,50.418337960482674],[-122.51223521966928,50.41823676919127],[-122.51201485117359,50.41812468199828],[-122.5117713571208,50.418038298074656],[-122.5114958442004,50.4180015109136],[-122.51124690605505,50.41791720351251],[-122.5110018735009,50.41782796244831],[-122.51075868675562,50.41773764536288],[-122.51052506782979,50.41763751691679],[-122.51029526864266,50.41753356775269],[-122.51006551421442,50.417429052694736],[-122.50983764801197,50.41732291423728],[-122.50959828435438,50.41722878332577],[-122.50935124117913,50.417142848681955],[-122.50910226874578,50.417059092806056],[-122.50884947845714,50.41697915652883],[-122.50859462768882,50.41690309519824],[-122.50833595966338,50.41683084444967],[-122.50807737922277,50.41675747125806],[-122.50781884335085,50.416683532053064],[-122.50755666300903,50.41661116869632],[-122.50729598058064,50.41654222560507],[-122.50703139327513,50.4164782238342],[-122.50676804407456,50.416420998849354],[-122.50650052943172,50.41637208065318],[-122.50622672289171,50.41635894961914],[-122.50594263121596,50.41638766943562],[-122.50565927747112,50.41640684846654],[-122.50538067665677,50.416387374523794],[-122.50510470108922,50.41635674597048],[-122.5048274464571,50.416319886737725],[-122.5045521671256,50.41628027318249],[-122.50417732442784,50.416229654893705],[-122.50379189623234,50.41647502128743],[-122.50359008951752,50.41660135309698],[-122.50337843223126,50.41671837715019],[-122.50314874554026,50.416817963294626],[-122.50289751476656,50.416900000498295],[-122.50263827804294,50.416971663331246],[-122.50237565635986,50.417041527379105],[-122.5021195414103,50.4171183526436],[-122.50188325477994,50.41721210507583],[-122.50167822914132,50.41733439144792],[-122.50148125036297,50.41746649486726],[-122.50127446434978,50.417588733942964],[-122.50106429308279,50.417709174403335],[-122.50084418459491,50.417821428691745],[-122.50060450751026,50.417913380099634],[-122.50034526133676,50.41798503748169],[-122.5000875978779,50.41805899340902],[-122.49983164720177,50.41813356964233],[-122.49957569637658,50.41820813630339],[-122.49931803038612,50.41828209042215],[-122.49906053752143,50.418353800287896],[-122.49879824954351,50.41841917742324],[-122.49854225154851,50.41849430707158],[-122.49829913827033,50.41858502053246],[-122.49806424548058,50.41868330748296],[-122.49783581563521,50.41878911242914],[-122.49761239680174,50.4188984400227],[-122.4973906466512,50.41900895349781],[-122.4971770743405,50.41912758805744],[-122.49697026908255,50.4192498188538],[-122.4967083217552,50.41931069471538],[-122.4964295218464,50.419338991341526],[-122.49614974761755,50.419357135314954],[-122.49586776415121,50.41935834013515],[-122.49558673847014,50.419347204222035],[-122.49530601735808,50.41933214571579],[-122.49502499197833,50.419321008378894],[-122.49474247052196,50.41930644928025],[-122.49445994924766,50.419291889461675],[-122.49417879401395,50.41928242822114],[-122.4938984813408,50.419284805454325],[-122.49362495231667,50.419313261848124],[-122.49335785796829,50.41937228472134],[-122.4930890486424,50.41943069490695],[-122.49281169857869,50.41946295992688],[-122.49253170390934,50.41948390380096],[-122.49225192721862,50.41950203793831],[-122.49197197597773,50.419522415002625],[-122.49170521280021,50.419554454647475],[-122.49159204653492,50.41971843370267],[-122.49149755863935,50.419891433821654],[-122.49140328761648,50.42006163377157],[-122.49133516049962,50.420235477326955],[-122.49128263306365,50.42041262167725],[-122.49124236476335,50.420590711917974],[-122.49120732484995,50.420769534443735],[-122.49118441317638,50.42095099008721],[-122.49123970591285,50.42112367607353],[-122.49137724214714,50.421280972700515],[-122.49152369763085,50.42143686910918],[-122.49165943498748,50.42159466610096],[-122.49179161418297,50.42175291701169],[-122.49192370713574,50.421912289546775],[-122.49204683868811,50.4220736273453],[-122.49215547444975,50.422240128975176],[-122.49224622946416,50.42241000498098],[-122.49230649619233,50.422586778872294],[-122.49237937149167,50.42276002024323],[-122.49249881740135,50.42292348973434],[-122.49263794683144,50.423083083696184],[-122.4927972389283,50.4232326365781],[-122.49299241145091,50.42335126985516],[-122.49326589452072,50.423414460835446],[-122.49351105268309,50.42350206222981],[-122.49375410562922,50.42359409471422],[-122.49399535799144,50.423686636444955],[-122.49424043193022,50.4237753580096],[-122.49448357494104,50.423866267051785],[-122.49471156907317,50.42397074898121],[-122.4949335505331,50.4240846035554],[-122.49514437734052,50.42420597684378],[-122.49533684456495,50.42433689020157],[-122.495494740657,50.42448189614364],[-122.49562145126231,50.42464277522274],[-122.49573533561968,50.42481000493949],[-122.49585299818322,50.42497397124269],[-122.49596525746813,50.42513945787503],[-122.49608480971433,50.42530180120716],[-122.4962278660697,50.42545645766886],[-122.49637812920379,50.425609083582636],[-122.49653208227816,50.42575958574249],[-122.49669144057879,50.425908567139224],[-122.49685268862102,50.42605591663361],[-122.49703045332201,50.426194800352754],[-122.49722289130943,50.42632626653125],[-122.49741168395227,50.426459308459386],[-122.49760223548982,50.42659240559062],[-122.49779103036188,50.42672544682888],[-122.49797978248384,50.42685905311653],[-122.4981685364184,50.42699265008634],[-122.49835909243512,50.42712574582885],[-122.49855505317768,50.427257329587],[-122.49874736926473,50.42739048014992],[-122.49892343107132,50.42752873968324],[-122.4990469947885,50.42768501594409],[-122.49910540647869,50.42786341665644],[-122.49923938793671,50.428021712975486],[-122.49935531303942,50.428185628360474],[-122.49946939483215,50.42835060090977],[-122.49958352060568,50.428515016889975],[-122.49969584550102,50.42867994259813],[-122.4998081719124,50.428844859184125],[-122.49992230016748,50.42900927471449],[-122.50003818713952,50.42917374560152],[-122.5001541619339,50.429337094524406],[-122.50027549824058,50.42949948799562],[-122.50039868029839,50.42966081499422],[-122.50052902499168,50.429820685597214],[-122.50066301724291,50.42997897981048],[-122.50079881218772,50.43013676393467],[-122.50093460738546,50.4302945568361],[-122.50106860246338,50.43045285046589],[-122.50119547975083,50.43061204375413],[-122.50130065386313,50.43077842367371],[-122.50144387618984,50.430931385152654],[-122.50147769005648,50.43110900709683],[-122.50149181871997,50.43129050589361],[-122.50151315330476,50.43146998296988],[-122.50153273007466,50.431649404517984],[-122.50155230700011,50.43182882602259],[-122.50157188408105,50.432008247483544],[-122.50159313237461,50.432188846190336],[-122.50153214587745,50.43236178452852],[-122.50142232533071,50.43252812557231],[-122.50130045867127,50.43269071264497],[-122.50117520516504,50.432851510351384],[-122.50104647852301,50.43301163151169],[-122.50090566243423,50.433168555036985],[-122.50076660272003,50.43332554282325],[-122.50067422744921,50.43349411610296],[-122.50063033757925,50.433673783043304],[-122.500641164592,50.43385237035128],[-122.50068912907125,50.43402931406803],[-122.50074408311934,50.434207036124356],[-122.50077420656069,50.434386790171],[-122.50079909908908,50.434565821269594],[-122.50091526441928,50.43472692469494],[-122.50104022112731,50.43488830542387],[-122.50114536148992,50.435055241018226],[-122.50124689872499,50.43522319627828],[-122.50134663545289,50.435391652337415],[-122.50144461478821,50.43556005278653],[-122.50155516272466,50.43572547609286],[-122.50168192645526,50.435886345993836],[-122.50179788060585,50.43605025722008],[-122.50189762121481,50.436218712610426],[-122.50196343566721,50.43639284462858],[-122.50199892689528,50.4365716424829],[-122.5020220241731,50.4367511737569],[-122.50203628755618,50.436930984021686],[-122.50205942829157,50.437109958794686],[-122.50211263327489,50.437287624016214],[-122.50220710315642,50.437455912446],[-122.50234103699866,50.437615324926405],[-122.5025041897283,50.437761606701436],[-122.50267832824848,50.437902603031354],[-122.5028286977013,50.43805466142712],[-122.50297357578066,50.438209362193604],[-122.50311309388229,50.43836500919087],[-122.50324892190345,50.43852279764229],[-122.50339745016589,50.438675921492376],[-122.50353152254428,50.43883364510867],[-122.50365096441219,50.43899822111222],[-122.5037777878989,50.43915853155121],[-122.50395571236588,50.43929628010644],[-122.5041465549396,50.439426554884314],[-122.50426076882651,50.43959040737231],[-122.50434787073677,50.4397629589282],[-122.50442253514736,50.439936800526546],[-122.50448832095898,50.4401114956271],[-122.50455050443566,50.44028719260291],[-122.50461092936976,50.44046284304536],[-122.50467671737144,50.44063752894562],[-122.50477111692808,50.44080693628755],[-122.50491579363039,50.44096443399267],[-122.50504983431743,50.441122720710716],[-122.50511584182635,50.44129460620326],[-122.50513873636683,50.44147694475095],[-122.50512474893159,50.44165755392237],[-122.5050494354482,50.4418334141319],[-122.50486312688693,50.44196305208621],[-122.50461004475379,50.44204446978301],[-122.50436008710766,50.44213105033433],[-122.50416489643253,50.442261531670916],[-122.50395307727216,50.44237910948782],[-122.50372946893872,50.44248957695782],[-122.50351927526005,50.44260889653911],[-122.50332078091586,50.44273645643983],[-122.50312901523218,50.44286815958396],[-122.50294397751966,50.44300401497873],[-122.50277252764126,50.443146488093575],[-122.50260947797294,50.443294281824095],[-122.50244312806826,50.44343915538511],[-122.5022611242591,50.44358129482059],[-122.50206338086323,50.44372180389697],[-122.50182680497097,50.44379474898778],[-122.5015511379324,50.44380347728495],[-122.50125864944978,50.44377907160317],[-122.50097981909607,50.44373766136395],[-122.50072057459668,50.44367100421984],[-122.50046984362585,50.44358549804101],[-122.50021503153617,50.44350716742358],[-122.49995639856319,50.44343265594776],[-122.4996959209888,50.443359210139384],[-122.49943272857003,50.44329804787809],[-122.49916089273071,50.44325742049066],[-122.49888243336265,50.44323400910079],[-122.49859963085281,50.443221138457815],[-122.49831621845122,50.44321612858739],[-122.49803426018815,50.44321509530331],[-122.49775438257527,50.44323267740358],[-122.49747539175995,50.44326154119661],[-122.49719392936778,50.44327682275957],[-122.4969114914304,50.44328196094105],[-122.49663203185774,50.44327143997145],[-122.49635444471177,50.443236804367366],[-122.49608941199944,50.44317670038902],[-122.49585191582817,50.443079798433054],[-122.49559724493048,50.44299977896995],[-122.49533607994721,50.44293529718198],[-122.49505698720064,50.44294277640672],[-122.49478764800622,50.44300623254451],[-122.49451426501273,50.44300827721777],[-122.49423535845159,50.44296797177818],[-122.49397072269817,50.44290281019673],[-122.49371948578691,50.442824019397946],[-122.4934723767576,50.44273748674715],[-122.49322548626726,50.44264815356074],[-122.49297644638347,50.44256380774254],[-122.49271748200249,50.442493766449104],[-122.4924565856422,50.44242591248814],[-122.49220363958555,50.44234649720406],[-122.49196795845535,50.44224907708693],[-122.49173442882991,50.4421466685515],[-122.49148908568755,50.44206018704964],[-122.491239572904,50.441982002601186],[-122.49104550171528,50.44184822938767],[-122.49079610770794,50.44174587438651],[-122.49055887333803,50.44175916511865],[-122.49037271143935,50.4419090265256],[-122.49015245844019,50.44202125620767],[-122.48990920166763,50.4421119486171],[-122.48964984290659,50.44218302243187],[-122.4893797022462,50.442234070218674],[-122.48910225278583,50.44226576864154],[-122.4888236555475,50.44228955820878],[-122.48854360550311,50.442309360662684],[-122.48826197072891,50.44232687212659],[-122.48797994320849,50.44234942640511],[-122.48769668090021,50.442365193576165],[-122.48742052726789,50.44235756974166],[-122.48715107826571,50.44230910715143],[-122.48688904428785,50.442233331906706],[-122.48664366593489,50.442147405078785],[-122.4864082598712,50.44204660778676],[-122.48617087846596,50.44194855422074],[-122.48592181158877,50.4418647578745],[-122.48566514469265,50.4417880251086],[-122.485398463723,50.44172671797338],[-122.48512445543757,50.44169160031157],[-122.48484763993606,50.44166989655873],[-122.4845667403134,50.44165536769255],[-122.48428377698137,50.441644704100135],[-122.48400076973161,50.44163460516275],[-122.48371978319045,50.44162119593136],[-122.4834393646794,50.44160049891174],[-122.48316127338076,50.441572560907844],[-122.48288379444347,50.44153676975533],[-122.48261044469933,50.44149323702401],[-122.48234135579324,50.441440275588405],[-122.48208065601204,50.44137015358706],[-122.48184091632903,50.44127989630729],[-122.48163356223532,50.44115861191392],[-122.4813850336374,50.44106806565827],[-122.48112403098172,50.44100187208784],[-122.4808463909152,50.440990810739],[-122.48055768469519,50.44100863583522],[-122.4802920820625,50.44097883777338],[-122.4800572653659,50.44087073082076],[-122.47978230315383,50.440847948455705],[-122.4795065462537,50.44081276105519],[-122.4792393542835,50.440758169706086],[-122.47895363260864,50.4407603415944],[-122.47869637282024,50.44082695866098],[-122.4784512095021,50.44091925739203],[-122.47822591938326,50.44102793066309],[-122.47802406313858,50.44115252492527],[-122.47783381294171,50.44128649298711],[-122.4776436057469,50.441419895326],[-122.47745854145067,50.44155514308529],[-122.47727681689501,50.441692754770564],[-122.4771001918338,50.44183276831879],[-122.4769235649768,50.44197279053591],[-122.47674843333277,50.44211622466813],[-122.47656002124809,50.44224912448843],[-122.47632359424405,50.44234225414848],[-122.47606557729813,50.442418395561866],[-122.47580773469949,50.44249229282451],[-122.47561716669344,50.442472182908524],[-122.47546872014641,50.44231902260619],[-122.47532568147106,50.442164342626704],[-122.47523494970586,50.44199446593595],[-122.47516391164511,50.44182070798504],[-122.47499353586743,50.44167753743339],[-122.4747881319388,50.44155405266744],[-122.47455635973401,50.44145222020076],[-122.47431891954433,50.44135526298164],[-122.47407365753084,50.44126818649271],[-122.47382593760055,50.441190018731966],[-122.47361504463049,50.441069172870264],[-122.47340964723772,50.44094568545917],[-122.4732390180159,50.4408058684003],[-122.47312139631049,50.440641881351155],[-122.47299111741196,50.440481980711105],[-122.47280225042034,50.440350021324015],[-122.47254741620264,50.440272757612085],[-122.47232132542459,50.4401660356794],[-122.47211773744807,50.440042045285274],[-122.47193274218627,50.43990570915497],[-122.47176444945275,50.439758658565864],[-122.47156794207939,50.43963432554664],[-122.47132462909985,50.43954504623413],[-122.4710721307364,50.43946053901062],[-122.4708441573241,50.43935544513996],[-122.47062761173552,50.439239468904205],[-122.47040526613064,50.43913005493258],[-122.47017373525067,50.43902541306112],[-122.46993644849779,50.43892676800047],[-122.46968905535631,50.438844669061],[-122.46940901226256,50.438819440451525],[-122.46914993037853,50.43875158737903],[-122.46890113249992,50.43866494358119],[-122.46866749816283,50.438564729592834],[-122.46844335887872,50.438455811992476],[-122.46822488998657,50.43834201847347],[-122.46800466399617,50.43822816849351],[-122.46778052727825,50.438119258482814],[-122.4675545463487,50.43801140478002],[-122.46733225778762,50.43790142808452],[-122.46711928880828,50.43778499146999],[-122.4669583593625,50.437634235604875],[-122.46673163596401,50.4375359197073],[-122.46646918122696,50.43746626105256],[-122.46621230887128,50.43739284818815],[-122.46595148181132,50.43732493148369],[-122.46568872167776,50.437259201651024],[-122.46542605016515,50.43719234941976],[-122.46516544475017,50.437121630910056],[-122.46490277481209,50.437054777428585],[-122.46463738087576,50.43700020672801],[-122.46435453980388,50.437010861962506],[-122.46413433044816,50.43691949559454],[-122.46399495115104,50.436763799327835],[-122.46386119948632,50.43660377504117],[-122.4637201082806,50.43644745691516],[-122.46351053950302,50.43633281247191],[-122.46325939229273,50.43625395207197],[-122.46305430884904,50.436127079441675],[-122.46283168884541,50.43602158055467],[-122.46256880929852,50.43595752139556],[-122.46228988687672,50.43591825708403],[-122.4620037989346,50.43592543779293],[-122.46173344738418,50.43591174407893],[-122.46151461157231,50.43580298943955],[-122.46130052508246,50.43567863284518],[-122.46104951695885,50.4355980892109],[-122.4607807523701,50.43554170979447],[-122.46051603176338,50.4354787203478],[-122.4602474001709,50.435420661463766],[-122.45997274580598,50.435394455574645],[-122.45968903485827,50.43539383407772],[-122.4594072567395,50.435413507019454],[-122.4591390121532,50.43546285959663],[-122.45887608335691,50.43553430615086],[-122.45860410396502,50.43556385352148],[-122.45831371246179,50.43555850780685],[-122.45829685349854,50.435391531322495],[-122.45834350739962,50.43520128540416],[-122.45848421429366,50.43504777265874],[-122.45852110851561,50.43486958521047],[-122.45839256797673,50.43471084421891],[-122.45825145724216,50.43455508414226],[-122.45810129389825,50.43440239932969],[-122.4579273080493,50.43426133245092],[-122.45770497404614,50.43415244875053],[-122.45744650847654,50.43407728094463],[-122.45719371442777,50.433997228641694],[-122.45699358007818,50.43387500008746],[-122.45681801854063,50.4337316226747],[-122.45664039152517,50.43359211944191],[-122.45645542500817,50.43345632178738],[-122.45625749342865,50.43332853917483],[-122.4560539810715,50.43320450928047],[-122.4558485793669,50.43308210992663],[-122.45563957472712,50.432960719520985],[-122.45543237287991,50.43283882852009],[-122.45522701892516,50.432715862588026],[-122.45502355585799,50.43259127431113],[-122.45482743378025,50.43246298883281],[-122.4546314453411,50.43233301584653],[-122.4544335238431,50.43220522980106],[-122.4542244833533,50.43208439299456],[-122.45399487214199,50.43197865091171],[-122.45380781041936,50.431847270436194],[-122.45364303443048,50.4317014251409],[-122.45348564375789,50.43155131747818],[-122.45333005576647,50.431400709414206],[-122.45316893134353,50.43125328868737],[-122.45299136906598,50.431113222783964],[-122.45277099667032,50.43100214148267],[-122.45254513091336,50.43089369985847],[-122.45231724384313,50.43078856680454],[-122.45207788432955,50.43069487872987],[-122.45183483438824,50.430603312149415],[-122.45158985047479,50.43051394126351],[-122.4513447355944,50.43042624799338],[-122.45109588577967,50.43034124154154],[-122.45084101320475,50.430265605184864],[-122.45057435933676,50.430205335252246],[-122.45031575178093,50.43013239400267],[-122.45006870713848,50.4300468851137],[-122.44983898402015,50.42994281232732],[-122.44962627412274,50.42982409744738],[-122.44944499251665,50.42968671294048],[-122.44929487441442,50.429534024257585],[-122.44921547507155,50.42935604374647],[-122.44901946534989,50.4292491084373],[-122.44876139530491,50.42916943286256],[-122.44854869188062,50.42905071580192],[-122.4483638565457,50.4289137821201],[-122.44818451677406,50.42877420818565],[-122.44799203526954,50.428644891929416],[-122.44776452325084,50.42853526215187],[-122.44750214935206,50.42846556682646],[-122.44722908138014,50.42844219441265],[-122.44694783465279,50.42843317892079],[-122.44666425661738,50.428431393369124],[-122.44637887630425,50.428430116105474],[-122.44609754150272,50.428422220225706],[-122.44581497896647,50.42840753665955],[-122.4455354816546,50.42842106567327],[-122.44525857183203,50.42844648977637],[-122.4449794628791,50.4284774566674],[-122.44470202227468,50.42850960998047],[-122.44442462580918,50.42854119722808],[-122.44414876618352,50.4285756401023],[-122.4438742213517,50.4286157564899],[-122.44360099262794,50.428661528451805],[-122.44333088084521,50.428712464981324],[-122.44306537853613,50.428771987805824],[-122.44280290527584,50.42883778803848],[-122.44253599807138,50.428892757139565],[-122.44226330474852,50.42881990204211],[-122.442039929675,50.42872501275453],[-122.4420734564317,50.42854559475882],[-122.44198467941361,50.42837517907499],[-122.44188887195932,50.42820453756723],[-122.44183578224829,50.42802851968074],[-122.44181117085154,50.427848917560674],[-122.44182356094137,50.42766937867214],[-122.44184473967583,50.4274901218922],[-122.44183599277655,50.42731046215593],[-122.4418219720356,50.42713064206183],[-122.44179389029291,50.426950361505746],[-122.4417833414146,50.426771210583965],[-122.44183936433326,50.42659701289067],[-122.44192869554567,50.42642500007522],[-122.44200405218135,50.426251422937945],[-122.44204627800573,50.42607339932811],[-122.44207272816888,50.425894311428536],[-122.44208867589602,50.42571432852844],[-122.44209051826051,50.4255344505741],[-122.44208001309663,50.425354733992556],[-122.44205184230765,50.42517558384578],[-122.4419988000816,50.42499900000064],[-122.44193688092273,50.42482326469167],[-122.44190335041019,50.42464505789775],[-122.44188757259727,50.424465180784765],[-122.4418788699675,50.42428496397595],[-122.44186660831903,50.424105190664356],[-122.44184191052095,50.42392670944303],[-122.44173521374634,50.42376021535733],[-122.44157789030042,50.42361008931626],[-122.4414656126353,50.42344735628816],[-122.4414001386496,50.42327206386538],[-122.44134187233374,50.42309475357571],[-122.44123112231054,50.42277855523175],[-122.44104193606837,50.422652704145385],[-122.44083284258053,50.42253352781276],[-122.44060920300514,50.42242007370219],[-122.44037813670504,50.422311436796775],[-122.44014685073323,50.42220559933771],[-122.43991147542613,50.42210694446395],[-122.43966075776981,50.42202410753626],[-122.4394081957384,50.421942326361716],[-122.43917255798112,50.421847035202624],[-122.43896009048139,50.421726064103765],[-122.43875689873641,50.421599200746016],[-122.43853071575475,50.42149577280401],[-122.43827538311493,50.42142683737364],[-122.4380026844936,50.4213770284135],[-122.4377261620244,50.42133102750026],[-122.4374554883555,50.42127789939676],[-122.43718423954813,50.421232066626544],[-122.43690577107049,50.42121074261828],[-122.43662312345639,50.4211977226492],[-122.43634183539376,50.421189801955975],[-122.43606014929044,50.42118692402709],[-122.43577801970892,50.421189663205716],[-122.43549781156743,50.42121269760547],[-122.43522184266064,50.42127129765523],[-122.43512873918428,50.42126774484419],[-122.43519498630702,50.42107587471094],[-122.43519861340953,50.42089605236645],[-122.43524613276396,50.420718208737725],[-122.43522866999497,50.42053770788951],[-122.43515425995616,50.420364372007654],[-122.43497850983819,50.420224888309654],[-122.43481388165924,50.42007844756537],[-122.43468010486013,50.419920637300386],[-122.43455547125356,50.419758613516144],[-122.43444520771382,50.41959312023134],[-122.43434751274076,50.41942465733556],[-122.43425878278052,50.419254233530054],[-122.43417550291927,50.41908173573093],[-122.43409393644536,50.41890985975843],[-122.43401061390239,50.41873791816004],[-122.43393265206129,50.41856503333259],[-122.4338672590281,50.41838917002232],[-122.43381632388943,50.418208715610156],[-122.43374543784479,50.41803549139464],[-122.43360933785996,50.41788490991216],[-122.43340257507707,50.41775904478743],[-122.43320319733597,50.41762891843746],[-122.43300246184232,50.41749369164702],[-122.4328359154211,50.41734943444227],[-122.43277315609966,50.41718491007104],[-122.43279814636156,50.41700240050323],[-122.43281795308073,50.4168185993935],[-122.43278094983856,50.4166402749147],[-122.4327261958415,50.416463637154784],[-122.43266076587535,50.41628833804563],[-122.4325935351617,50.416113538682154],[-122.43258197704097,50.41592535368914],[-122.43249575554869,50.4157679457805],[-122.43225696059645,50.4156685953374],[-122.43202594889799,50.41555994011637],[-122.43178059850625,50.41547668908325],[-122.43151616922185,50.41541194172083],[-122.43125363059657,50.415345572146954],[-122.43098775626852,50.415276836217686],[-122.4307183675259,50.41520799540505],[-122.43047855925654,50.41512154595341],[-122.43033267318413,50.414983572762594],[-122.43027521444914,50.41479672423122],[-122.43019367125278,50.41462483549601],[-122.43011397388261,50.414451890480294],[-122.43002707157129,50.41428095347284],[-122.42992219831284,50.41411450263823],[-122.42981381141318,50.41394793842666],[-122.42972150620574,50.413778518357304],[-122.42963460596414,50.4136075898726],[-122.42954058964217,50.41343754758114],[-122.42942680082264,50.413272500123234],[-122.4293612108655,50.41309944192028],[-122.42934026021227,50.41291882516959],[-122.42932629436584,50.412738991293004],[-122.42931408507312,50.412559222978025],[-122.42927705443645,50.412381461756546],[-122.42922943726299,50.412203917099234],[-122.42917290139141,50.412027776376085],[-122.42910929275361,50.411851974429936],[-122.42904564061071,50.41167672881032],[-122.42897667362872,50.41150186961261],[-122.42889698642266,50.41132892304689],[-122.42880464599861,50.41116005806156],[-122.42869257868769,50.4109956224201],[-122.42856974753326,50.410833655716225],[-122.42843975621906,50.41067314045022],[-122.4283115228996,50.41051268164525],[-122.42819598957723,50.410347566700764],[-122.42807496374233,50.41018509058837],[-122.42788991265985,50.41005260668785],[-122.42767933258033,50.409931103472836],[-122.42748158540283,50.40980326577759],[-122.42730234193883,50.409664211159715],[-122.42712863622125,50.409521969858105],[-122.42695488757354,50.409380284661566],[-122.42676259343948,50.40925037203868],[-122.42656287325764,50.40912527588732],[-122.42640200362493,50.40897669938786],[-122.42618905412905,50.40886298895967],[-122.42593856862078,50.4087784324866],[-122.42568606069092,50.40869718408895],[-122.42543153029494,50.40861924375389],[-122.42517695673227,50.40854185922928],[-122.42492809832099,50.408459044290716],[-122.42469656417458,50.40835765989911],[-122.42450999589282,50.4082223044172],[-122.42436543782516,50.408068060876026],[-122.42423907214749,50.407906531767665],[-122.424121669814,50.407743042485585],[-122.42400967207035,50.4075780450059],[-122.42390488129423,50.40741102170854],[-122.42381103230815,50.40723929505916],[-122.42378281233042,50.4070618144058],[-122.42377945601261,50.406881762415786],[-122.42379204487,50.406700542660374],[-122.42381860079225,50.40652088940658],[-122.4238763806913,50.40634730950398],[-122.4239951626653,50.4061818888367],[-122.42401982699475,50.40600386586332],[-122.42399174055913,50.40582469782868],[-122.42395126667414,50.40564626349827],[-122.4239001190076,50.405469167004654],[-122.4238455916106,50.40529026985384],[-122.42375859702115,50.4051210131366],[-122.42361400666466,50.40496733339544],[-122.42342952374219,50.40482810151392],[-122.42321866869455,50.40471051976063],[-122.42297788439664,50.404615021963544],[-122.42274461748302,50.40451357627741],[-122.42256523114409,50.40437676562138],[-122.42238782521721,50.40423720244754],[-122.4221771981541,50.40411680968192],[-122.42196468245291,50.40399803793845],[-122.42176346378275,50.40387007560289],[-122.42155653145312,50.40374755153642],[-122.42132071472913,50.403656151011944],[-122.42104422875714,50.403611229271156],[-122.42081039317087,50.40351707546285],[-122.4205978838805,50.40339830101022],[-122.42036629574807,50.4032980376908],[-122.42011378434647,50.403217332450005],[-122.41985798224471,50.40313371309702],[-122.41963369096679,50.403030309986846],[-122.41945638830548,50.40288962010435],[-122.41931393291631,50.402731495007956],[-122.41921979945604,50.40256369419308],[-122.41915435305076,50.40238950585216],[-122.4191068302741,50.40221139822484],[-122.41906826939959,50.402031330934776],[-122.41903493488806,50.40185199037512],[-122.41901038351018,50.40167294270799],[-122.41899466069798,50.401493613585984],[-122.4189825403539,50.40131327622566],[-122.41896150357796,50.4011343330408],[-122.41891573956879,50.40095628184585],[-122.41882886071951,50.400785898556975],[-122.41877422527037,50.40060868502761],[-122.4187231035847,50.40043158502867],[-122.4186006036933,50.40026623978418],[-122.41837039276474,50.4001710722498],[-122.41811394429492,50.40009585745702],[-122.41784795687116,50.40002989766365],[-122.41771118289186,50.40000017373914],[-122.41757959077763,50.399971732904945],[-122.41731051355302,50.39992254177074],[-122.41703541025888,50.39988271916191],[-122.41675999633605,50.39984681762692],[-122.41648287106507,50.39981029319294],[-122.41620754702711,50.39977326849784],[-122.41593213442854,50.39973736490109],[-122.41565667740224,50.39970202599754],[-122.41537937585998,50.3996677423661],[-122.41510383065808,50.39963352386925],[-122.4148261289248,50.39960429136366],[-122.41454667092162,50.3995750012968],[-122.4142711717977,50.39954021534773],[-122.41400843932281,50.39947772538276],[-122.41375402586004,50.39939919196303],[-122.41350150314932,50.39931903664609],[-122.41325663133027,50.39923125580857],[-122.41303079606884,50.39912553838431],[-122.41282215252104,50.39900294039876],[-122.41262629666402,50.39887456597661],[-122.41243980365958,50.39873918857854],[-122.41226429680427,50.39859854333587],[-122.41210346742967,50.39845050053933],[-122.41195349008598,50.398298877164194],[-122.41181080807368,50.39814410686655],[-122.41167726559922,50.39798514274846],[-122.41150950321592,50.3978357495524],[-122.41127649356034,50.39775397148238],[-122.41099075499586,50.397737397651476],[-122.41071373574104,50.397699745890186],[-122.41043469367959,50.3976653928782],[-122.41015738141067,50.397653597650205],[-122.4098782419111,50.39766479377252],[-122.40959821062651,50.39768720700933],[-122.40931940058427,50.397716407174435],[-122.40904036759196,50.39774840660314],[-122.40869813242419,50.39782222722476],[-122.39999960894586,50.39665751253361],[-122.35713201942228,50.39090815449026],[-122.35713049984851,50.385817018549425],[-122.35711298449037,50.38581588440371],[-122.35674422002118,50.38580375091122],[-122.35635011888861,50.38575647356514],[-122.35602904677854,50.38572060515181],[-122.35565668086657,50.385709474208426],[-122.35534022803549,50.38572548454259],[-122.35492422432475,50.38573147727876],[-122.3545630561273,50.38575613591487],[-122.35425465782804,50.38578141523333],[-122.3539085232171,50.385816131514574],[-122.35356797335193,50.38584708958608],[-122.35318598311108,50.38591155749058],[-122.35264570784048,50.38590838274252],[-122.35213764521247,50.38596418603423],[-122.35186372075302,50.386020395560806],[-122.35162016029697,50.386136658079685],[-122.35131272328282,50.38621538146877],[-122.3510226752706,50.38627498973002],[-122.35044489763257,50.38634367631749],[-122.35036299833469,50.386333103620785],[-122.35028113465259,50.386431073602715],[-122.3502518944305,50.38646610132435],[-122.35019206594562,50.386531046495925],[-122.34997581513248,50.386766860947766],[-122.34983674845255,50.386897244831125],[-122.34967535106581,50.387107873343446],[-122.34942552519091,50.3873015314795],[-122.34936254482417,50.38736187335051],[-122.34912972228702,50.3874976051907],[-122.34899785781197,50.38753880453413],[-122.34880748653954,50.387606759733345],[-122.34866557112665,50.38766338256558],[-122.34826605104621,50.38787908640214],[-122.34801424729297,50.38796638422896],[-122.34782754204005,50.388076073964655],[-122.34771847889847,50.38816189762396],[-122.34738860440244,50.3883872109391],[-122.34726913940517,50.38847099944182],[-122.34708810711155,50.3885758093213],[-122.346853082377,50.38876038546675],[-122.34659558169153,50.388874485935666],[-122.34627654364077,50.389030986871795],[-122.34583821580384,50.38926902127699],[-122.34560998179002,50.38930422911715],[-122.34531030066084,50.38946079936181],[-122.3451889820784,50.38954564928779],[-122.34503154662585,50.38970691374624],[-122.34485076253159,50.38983029097899],[-122.34473383025797,50.38988266787231],[-122.34445519807312,50.38999663290464],[-122.34415217755617,50.39015084045081],[-122.34386090029925,50.390246948661854],[-122.34361278332338,50.390310172343504],[-122.34333921621148,50.39038324455835],[-122.34320903373766,50.39044699658855],[-122.34305648928749,50.39048244942682],[-122.34273295889567,50.3905201280442],[-122.34243655745499,50.390527209184626],[-122.34215756666842,50.390558484146375],[-122.34213959645528,50.39056294735208],[-122.34200826091116,50.3905974167722],[-122.34184787277091,50.39064273151252],[-122.34161124139085,50.39069452503711],[-122.34111078566399,50.39085119950712],[-122.34077370030361,50.39094746887804],[-122.34050925318434,50.3910382736365],[-122.34025257100521,50.39116363442755],[-122.34000285321645,50.39124648479562],[-122.33950385355011,50.391428502522906],[-122.3391455906302,50.391590435629176],[-122.33878245385138,50.3917038337403],[-122.33869467141008,50.39172230140901],[-122.33837568151354,50.391812422629464],[-122.33821890596218,50.39183479012591],[-122.33798094009622,50.39196808009291],[-122.33765572383571,50.39206979867201],[-122.33751169542884,50.39208696308855],[-122.33737827774368,50.39212529044201],[-122.33705490619535,50.39222594359508],[-122.33695843176298,50.392242997680775],[-122.3367991064072,50.39229678058002],[-122.33672982207598,50.392325981315814],[-122.33641179986896,50.392490919759915],[-122.33623149923727,50.392586181161796],[-122.33563365564889,50.392944312277926],[-122.33534946789122,50.393082806793274],[-122.33502295441701,50.393156923421714],[-122.33475560808088,50.39323973688401],[-122.33442285967304,50.39328215272455],[-122.33436118944357,50.3933042887706],[-122.3340392291326,50.39347415618965],[-122.33399158957457,50.39351869343779],[-122.33377149233678,50.39369192321478],[-122.33370287493256,50.393777948074174],[-122.33345972304548,50.39399652830404],[-122.33327140971356,50.39412526200759],[-122.33312858972911,50.394192516376364],[-122.33282952826366,50.39427540898805],[-122.33253057060648,50.39429193561151],[-122.33241732654993,50.39432024480551],[-122.33207298936044,50.39441849807614],[-122.33169890379112,50.39449271223846],[-122.33114986708219,50.394552698200705],[-122.33095284444454,50.39459340986228],[-122.33076635943482,50.39463447032669],[-122.33060373378306,50.394685318982106],[-122.33039628817781,50.394745929661816],[-122.33017878452192,50.39482195303733],[-122.32982773612234,50.39495934310308],[-122.32951885463545,50.39503290369346],[-122.32924163232786,50.39510694597233],[-122.32902289471329,50.39519810577687],[-122.32869843139521,50.39526833129174],[-122.32837311964381,50.395283982274286],[-122.32829725576464,50.395307336112594],[-122.32798061278699,50.39534632608221],[-122.32775114721606,50.39535277209077],[-122.32764271060876,50.3953868596813],[-122.32748804172398,50.39549138853781],[-122.3273219436339,50.395584857604874],[-122.32704181750138,50.39567286204118],[-122.32676112044928,50.395746216208316],[-122.3264870139693,50.39580348403244],[-122.3262848719873,50.39582039824051],[-122.32620446685591,50.395834602108124],[-122.32589228920729,50.395905227204466],[-122.3256262098567,50.395950387089854],[-122.32538234676213,50.39598222870997],[-122.32518798141027,50.39605506929],[-122.32491010690308,50.39613695264709],[-122.32463971327452,50.39621345988375],[-122.32431368234292,50.39634604869604],[-122.32410266262784,50.39640708725162],[-122.32383550645501,50.396443776144736],[-122.3234905885032,50.39650543468254],[-122.32329551385568,50.39652201131087],[-122.3232238424926,50.39653706990035],[-122.32294486881966,50.39658910177758],[-122.32263268086972,50.39665971762681],[-122.32228794228831,50.3967191289811],[-122.32208412564546,50.39677816252147],[-122.32187919217277,50.39682927639517],[-122.32158362627305,50.396933625905056],[-122.32144999427857,50.39701747533738],[-122.321196936712,50.39720534218195],[-122.32099845229777,50.39728535421998],[-122.32091231249328,50.39734828577845],[-122.32075411295641,50.397409390243546],[-122.32052000080188,50.397451101258866],[-122.32030028495085,50.39746742097082],[-122.32012814932017,50.3975050087568],[-122.32003559589474,50.397581790383846],[-122.31984432486556,50.3977677662018],[-122.31967733471198,50.39787187528917],[-122.31950380051232,50.3979482148995],[-122.31919182595843,50.39801602115468],[-122.31886329229383,50.398070894965414],[-122.31874636107804,50.3980793805508],[-122.31841873996042,50.398123044942096],[-122.318095069858,50.398139836824846],[-122.31782856571682,50.39814672305748],[-122.31764823795986,50.398176719396325],[-122.31747000500158,50.398224223175575],[-122.31733960785243,50.398268251446176],[-122.31716396461516,50.39837038658523],[-122.31695743599165,50.3984624963983],[-122.31684022078065,50.39851764306701],[-122.31651248536784,50.39864902843227],[-122.31641169934238,50.39867547766106],[-122.31614993916176,50.39877531388636],[-122.31601379408754,50.39880340301551],[-122.31579900964459,50.398867117469464],[-122.31565448371173,50.39893316878781],[-122.31530447518871,50.39907842250052],[-122.31494728314381,50.399203757561736],[-122.31463487053375,50.39931990097154],[-122.31434897015517,50.399413297109795],[-122.31396533929181,50.39960355154711],[-122.31375460447838,50.39976862426871],[-122.3135371053425,50.39997339549787],[-122.3135155402477,50.40000023852209],[-122.31346640871995,50.4000627137837],[-122.31326077328146,50.40025157503172],[-122.31313006289932,50.40032089046066],[-122.31285414211646,50.400421372624066],[-122.31248738843708,50.400577307875494],[-122.31213513889823,50.40066343267869],[-122.31201566427534,50.400681391569854],[-122.31176683358744,50.40073046789889],[-122.3116782897844,50.40075788754133],[-122.31147173907681,50.40084998685812],[-122.31117900905413,50.40091897015032],[-122.3110560981309,50.4009789871484],[-122.31071346581123,50.40107667538256],[-122.3106348186365,50.40111229711171],[-122.31033799308132,50.401274495955924],[-122.31014903454019,50.401474587920305],[-122.30994188138172,50.401573979809335],[-122.30981634016572,50.40164458847662],[-122.30953553106563,50.401783141307],[-122.3092549347795,50.40189751396217],[-122.30907259949208,50.40199491490873],[-122.30893770792844,50.40205058931253],[-122.30866367645686,50.40217080305044],[-122.30836138370485,50.40233506414653],[-122.30816902351097,50.402447318153975],[-122.3078713239062,50.40264153240929],[-122.30756492962075,50.402834340303244],[-122.30753859451255,50.40285483260129],[-122.30751648913369,50.40290976622699],[-122.30741111305322,50.40307833976871],[-122.30729197231302,50.403264450276474],[-122.30720660930153,50.403360582190714],[-122.30703958259214,50.40348605115869],[-122.30685292967152,50.40357149032773],[-122.30642675611537,50.403699565038636],[-122.30616534447539,50.40377295430218],[-122.30594944840679,50.403892850871074],[-122.3057266758636,50.40403219629094],[-122.30541028673265,50.40423928689237],[-122.30534195400419,50.40429942667273],[-122.30507219891574,50.404496257488084],[-122.30483799542043,50.40462453928766],[-122.30457311358172,50.40478329007848],[-122.3044564095034,50.404896370347736],[-122.30424143830703,50.40511246506737],[-122.3040076464975,50.405321740787706],[-122.30367076082703,50.40560686610409],[-122.30349062660305,50.40572007823508],[-122.30322393060291,50.40587933228942],[-122.30306925109777,50.4060473811645],[-122.30296559584495,50.40619463784465],[-122.30290825653016,50.40624951935652],[-122.30275641088897,50.40644747268563],[-122.30258008550936,50.406686215354064],[-122.30245912326635,50.40680814942769],[-122.30228853493408,50.40697679093754],[-122.30222657734627,50.407045023902974],[-122.30197080101084,50.40724287199806],[-122.30163944553858,50.407460133297135],[-122.3013898413709,50.407625577519696],[-122.30129980781386,50.40767093550571],[-122.30109643120916,50.407745126484585],[-122.30081634117226,50.40778806984431],[-122.30069094054038,50.40783506268359],[-122.30056262369312,50.40787464264191],[-122.30037086456174,50.407979021618196],[-122.30026502871642,50.40804522124029],[-122.30022055357628,50.40813653197038],[-122.3001313171078,50.408301138856515],[-122.3000496480919,50.40843787974258],[-122.29999476623873,50.40861318978138],[-122.2999638144449,50.408754440908446],[-122.29991772668113,50.408951414767806],[-122.29979959272214,50.40921065951749],[-122.29963986290986,50.40931105027308],[-122.29944859039952,50.409387892219385],[-122.29916220607187,50.409443002650725],[-122.29898968586262,50.4094844784219],[-122.29877487300642,50.40954759371272],[-122.298577801467,50.40958769070873],[-122.29834040439562,50.40960393598076],[-122.29790803231917,50.4096991549064],[-122.29761456153678,50.40973321231118],[-122.2971994339134,50.409832936992714],[-122.29699150607722,50.40989797068945],[-122.29673996884846,50.40993623489344],[-122.29654468807527,50.409954451160026],[-122.296273814855,50.40997070670265],[-122.29603983670077,50.409988186189],[-122.29564186127267,50.409986126597374],[-122.29528951001879,50.40996478799499],[-122.2951025825724,50.409945597513094],[-122.29490677812161,50.40992724356253],[-122.29381327186935,50.40992103361805],[-122.29351428857305,50.409936333013555],[-122.29326810272848,50.40995228248371],[-122.29298530656865,50.40998499334691],[-122.29274426032688,50.41002416654274],[-122.29238377386072,50.41014482291431],[-122.2922058355755,50.41018779868445],[-122.29204940129443,50.41024779833047],[-122.29194789071349,50.410304012423424],[-122.29171960859311,50.41050950696502],[-122.29159590880245,50.41057847500267],[-122.29147301105402,50.410702024670385],[-122.29139555577032,50.41080853258292],[-122.29109038493239,50.41102776527343],[-122.29079246328784,50.4112230532416],[-122.29062626243287,50.411423317801976],[-122.29036902753245,50.41163797199309],[-122.29026401589367,50.411758178156184],[-122.29005812630497,50.411905374349246],[-122.28995920767174,50.41199429126722],[-122.28978488975368,50.41212173188322],[-122.28966816971278,50.41221286875605],[-122.2894871445135,50.41233615216528],[-122.28923085071061,50.412474910216964],[-122.2890991298966,50.412491301562795],[-122.2890656552732,50.41249130504441],[-122.28899515103568,50.41251313002585],[-122.28886806095846,50.41255891972662],[-122.28855999634061,50.41257728539697],[-122.28837963294336,50.4125852978276],[-122.28769031439872,50.41263362807711],[-122.28736713738691,50.412685784488424],[-122.28705333992464,50.41270956866372],[-122.28624919755975,50.41291150706125],[-122.28603993609751,50.41292811192722],[-122.28572822741432,50.413012141196745],[-122.28550445178811,50.413055252527926],[-122.28531669621775,50.41311025181521],[-122.28508294216897,50.41321039012886],[-122.28473645901796,50.41328875164506],[-122.2843828013847,50.413325822511055],[-122.28410103578946,50.413324245590715],[-122.28384655725375,50.41337644665],[-122.28359092731509,50.413464033752874],[-122.28317764292834,50.413668938447806],[-122.28296020003816,50.41374205872513],[-122.28271575652391,50.413843525247756],[-122.28252716548286,50.41392998505264],[-122.2823606341559,50.4140694903262],[-122.28206385258223,50.41422881117505],[-122.28188747169693,50.414380915405346],[-122.28173272561995,50.41450563561291],[-122.28149147567332,50.41471799047149],[-122.28137954218808,50.414814894529265],[-122.28127075205677,50.41491641199591],[-122.28107476599041,50.41513534213298],[-122.28095377054932,50.41527806547411],[-122.2809099891632,50.41536038544307],[-122.28076666068029,50.4155175385736],[-122.28058795816229,50.41567632038801],[-122.28042765631874,50.415804217593255],[-122.28023013207846,50.41595617633569],[-122.27997434383435,50.41608818246418],[-122.27978680173773,50.416183113220555],[-122.27968281392086,50.41629041419819],[-122.2796230313827,50.41639581618279],[-122.27957712275634,50.41656805339598],[-122.27941293619939,50.41682853952104],[-122.2793430718254,50.41694935830732],[-122.27926876997888,50.417102636837114],[-122.27915063227641,50.41729606802529],[-122.27906587803282,50.417426500348135],[-122.27896410837435,50.417635102766646],[-122.27883093969302,50.41781846389891],[-122.27859650566583,50.41818288293742],[-122.27842874494839,50.41835833323671],[-122.27834051886005,50.41853083100917],[-122.27814524239373,50.41871941155201],[-122.27802727992193,50.418846487064236],[-122.27783717980111,50.41901499545026],[-122.27758696221849,50.41914325138906],[-122.27737322914344,50.41923504891267],[-122.27719709057733,50.419362409548604],[-122.27691172411691,50.419532223613885],[-122.27664078373326,50.41971938399934],[-122.27631263755714,50.41991643570585],[-122.27617954520963,50.42005593102128],[-122.27580908211733,50.42023188053272],[-122.27566526044373,50.42033052363334],[-122.27524965371627,50.42062641807001],[-122.27500811247967,50.42077745513855],[-122.2748001897081,50.42092680554296],[-122.27458043018599,50.42102739335619],[-122.27436926948091,50.421151889624475],[-122.27198744831755,50.420376117353385],[-122.26986182444726,50.42272786753377],[-122.27278442109431,50.42380642270858],[-122.27309052008168,50.42391963669415],[-122.27429796083754,50.42436458013047],[-122.29670913637378,50.4353585923554],[-122.29683630087142,50.435462940084285],[-122.29703444377122,50.43560452481848],[-122.29715326189294,50.43576764510446],[-122.29725228463806,50.43593571851564],[-122.2973530196377,50.43610441582671],[-122.29746647448093,50.43626848115509],[-122.2975979237454,50.436428081636535],[-122.2977494935779,50.436578789378736],[-122.29792284926357,50.436721793622944],[-122.29809625168437,50.43686424123939],[-122.29824782464318,50.43701494821905],[-122.29838658662491,50.43717141752953],[-122.2985197997173,50.437331075441676],[-122.29864399361017,50.43749324824595],[-122.29875565303918,50.437657809605184],[-122.29885468589089,50.43782588119066],[-122.29893225507021,50.43799774384299],[-122.29899543938058,50.43817305809878],[-122.2990549705856,50.438349932862195],[-122.2991181095025,50.43852581227492],[-122.29919017727626,50.4387002981236],[-122.29926039561064,50.4388758468332],[-122.2993377849036,50.43904994327179],[-122.299433306191,50.43921790564839],[-122.29955954325747,50.43937676185949],[-122.29970927878263,50.43952853829398],[-122.29987349389587,50.43967573209151],[-122.3000449725606,50.439820351753305],[-122.3002147398843,50.43996435612075],[-122.30040092820055,50.440101602107326],[-122.30059798825025,50.44023526955883],[-122.3007734472587,50.44037439716361],[-122.30090186374977,50.44052826742205],[-122.3009651511933,50.440702458371405],[-122.30100133219618,50.440884742400335],[-122.30105731229547,50.44106206347385],[-122.30113480347015,50.4412350455264],[-122.30121761591099,50.44140763815708],[-122.30129871720513,50.44157960673041],[-122.30137264834092,50.4417530275229],[-122.30142159844739,50.44193011360203],[-122.30145454181324,50.442108915003374],[-122.30150705451886,50.442285561944196],[-122.30155776388219,50.44246270649848],[-122.30159075451137,50.44264094243915],[-122.3016112536277,50.44282102000878],[-122.30161944642728,50.44300067800673],[-122.3016170438722,50.443180549361244],[-122.30161274483721,50.44336204895562],[-122.3016014137241,50.44354330493209],[-122.30157087984075,50.44372223774512],[-122.30150915766407,50.44389450662676],[-122.3014021811475,50.44405964229717],[-122.30126910637728,50.4442205331061],[-122.30113778888564,50.44438148238164],[-122.30102895967062,50.44454768056163],[-122.30096876228131,50.44472281618044],[-122.30093119210666,50.44490151391104],[-122.300874464762,50.44507732305143],[-122.30081246219477,50.44525295613449],[-122.30078548691259,50.445431440378236],[-122.30076549816461,50.44561072453175],[-122.3007472211895,50.445790632605345],[-122.30072273684466,50.44604624584945],[-122.30072555983553,50.44622684882376],[-122.30072121131275,50.44640890402216],[-122.30072579189668,50.44658957455276],[-122.3007553575838,50.446766570874075],[-122.30082411211063,50.446938693297454],[-122.30092146029459,50.44710614611012],[-122.30103657651152,50.44727194215328],[-122.30115530222197,50.447436733734946],[-122.30126505312892,50.44760347512288],[-122.30135333672892,50.447773999007524],[-122.30142010645766,50.44794887073564],[-122.3014743849285,50.44812556609035],[-122.30152329599946,50.448303216019816],[-122.3015525437458,50.44848414191686],[-122.30159446827835,50.44866099183246],[-122.3017027412193,50.4488243090174],[-122.30186320399665,50.44897474573692],[-122.30202019735486,50.44912449961107],[-122.30217908770766,50.449272633930434],[-122.30233978312538,50.44942027030954],[-122.30250223875983,50.44956795609221],[-122.30266298261468,50.449715026651994],[-122.3028145212958,50.44986685557936],[-122.30295514337091,50.4500228100101],[-122.30308665207487,50.450182401259156],[-122.3032001631226,50.45034645785233],[-122.303277679175,50.450519427439716],[-122.30334085155617,50.45069530178885],[-122.30343974625518,50.45086560979903],[-122.30345877371016,50.451042261704565],[-122.30344763189476,50.45122127289975],[-122.30342940965701,50.451400614864745],[-122.30340757834536,50.45158096116315],[-122.30338755096373,50.45176080971561],[-122.30337631677807,50.45194094236309],[-122.30337040368389,50.452120694513326],[-122.30337152469482,50.45230068111258],[-122.30337967989504,50.45248090216049],[-122.30336039951845,50.45267314692861],[-122.30334098147533,50.45286706958775],[-122.30336153853906,50.45304657925129],[-122.30346408084755,50.45319395669598],[-122.303644908016,50.453311327711255],[-122.30386941252961,50.45341215928811],[-122.30412306627346,50.4535015903739],[-122.30439129549478,50.45358531633596],[-122.3046577208092,50.4536695483346],[-122.30490961896362,50.45375891899252],[-122.30516193116318,50.453843246274566],[-122.30541419874068,50.45392812929685],[-122.30563288329495,50.45403551116732],[-122.3058085488613,50.45417295048448],[-122.3059599756729,50.454326452217096],[-122.30610395605969,50.4544847621925],[-122.30624821225558,50.45463971606976],[-122.30637081545531,50.454800687569424],[-122.30632974098297,50.454979267741905],[-122.3062764930141,50.455155759888626],[-122.30622148670382,50.455332184421295],[-122.30616647922889,50.45550861786105],[-122.30610614974593,50.45568543182049],[-122.30605641816547,50.45586203189155],[-122.30605407816154,50.45604134414762],[-122.30608885515744,50.4562196343247],[-122.30613247149238,50.456397661021974],[-122.30617076575395,50.45657607722392],[-122.30618786462006,50.45675490308871],[-122.30619075570056,50.45693494720181],[-122.30618480686482,50.45711526368175],[-122.3061789042749,50.457295014827615],[-122.30611019244823,50.4574664837617],[-122.30591801892122,50.45759504363856],[-122.30567898772902,50.457692800844264],[-122.30545981993494,50.45780640684889],[-122.30524569799273,50.457922987725944],[-122.30502819560758,50.45803776407742],[-122.30480407017234,50.458147262823765],[-122.30457674736664,50.458252722744014],[-122.30434761914147,50.45835867989766],[-122.3041268705307,50.458469972375674],[-122.30392112195211,50.458591895384565],[-122.303723661035,50.45872027544369],[-122.3035244865297,50.45884803122048],[-122.30330354890818,50.45896157418563],[-122.30310640674703,50.4590860229696],[-122.30298880088976,50.45925137058971],[-122.30289554249823,50.45942089471675],[-122.30282130828319,50.459594993781444],[-122.30275577569462,50.45977050752459],[-122.30271481994743,50.45994740733386],[-122.3027548632906,50.46012587358812],[-122.3028217030557,50.460300176503054],[-122.3028938655067,50.460474098911085],[-122.30297135143881,50.46064763182922],[-122.30305068877296,50.46082010167617],[-122.30313720048888,50.46099111903554],[-122.30322722989094,50.46116226251204],[-122.30331735264222,50.46133227530029],[-122.30340562451107,50.461503359937254],[-122.30348677024331,50.461675322621566],[-122.30355893745492,50.46184924430091],[-122.3036221731172,50.462024550729616],[-122.30368365034653,50.46219979846763],[-122.30374151826842,50.46237605050701],[-122.30383344991044,50.46254556492043],[-122.3039432937702,50.46271173524601],[-122.304053184029,50.462877349112844],[-122.30413785187827,50.46304943722282],[-122.30423154534454,50.4632190097745],[-122.30439911631143,50.46339104365537],[-122.30457057413054,50.46355870803604],[-122.30464244790325,50.46369324629663],[-122.30443047627975,50.463740168117944],[-122.30409192397558,50.46373900993195],[-122.3038086355895,50.463730694953696],[-122.30352944145662,50.46375850501929],[-122.30328749803718,50.46384828787188],[-122.30305671693789,50.46395250508656],[-122.3028357994979,50.46406548111522],[-122.30263502380194,50.46419093261689],[-122.3024780492647,50.46434147086683],[-122.30236913124911,50.464508222559566],[-122.3022449323126,50.46466772572863],[-122.30205595925662,50.464799759851665],[-122.30185166007142,50.46492509253812],[-122.30165240653113,50.465053409260086],[-122.30145986569165,50.46518589029428],[-122.30128098247553,50.465323882917666],[-122.3011565941989,50.4654856189324],[-122.30100326670174,50.4656345852849],[-122.30081743607542,50.46577122085117],[-122.30063155795244,50.465908421368454],[-122.30042919288844,50.466031566735474],[-122.30019681899111,50.466133475861604],[-122.29994629126296,50.46622014933263],[-122.29968691031354,50.46628572510976],[-122.29940416933333,50.46629203834835],[-122.29912405120166,50.46626638987709],[-122.29884448643854,50.46623400215251],[-122.29856575982213,50.46621289734592],[-122.29828797449949,50.46622330493196],[-122.29801099067502,50.4662669207676],[-122.29773001820743,50.466294657455336],[-122.29748396954474,50.46636967051963],[-122.29727784506173,50.466495501114565],[-122.29708875772758,50.466628648077624],[-122.29690462383316,50.466765900930255],[-122.29673062929959,50.46690854849481],[-122.29657719025153,50.46705863006476],[-122.2964525039983,50.46722372523841],[-122.29633966932893,50.46739484829895],[-122.29622025864796,50.467560119340774],[-122.29607412857601,50.46770707025843],[-122.29587437700764,50.46781961515787],[-122.29561438169907,50.467892476117115],[-122.29533438234962,50.467951163425745],[-122.29507114358096,50.46802054083376],[-122.2948114230245,50.46809002615262],[-122.29454396545277,50.46814632326299],[-122.29426510698029,50.46816962352182],[-122.29398097078482,50.468192746769915],[-122.29371114520555,50.46823490895508],[-122.29348532118588,50.46834263782157],[-122.29328436181487,50.46846975861631],[-122.29308682743088,50.46859811818298],[-122.29289262584167,50.46872883812623],[-122.29269846886386,50.46885900140173],[-122.2925122309609,50.469000108867284],[-122.29231964719564,50.46913256442954],[-122.29208218552856,50.469210102411814],[-122.291793594219,50.46922294936116],[-122.2915230690036,50.4692735135797],[-122.29126328928247,50.469343555770095],[-122.29100332424782,50.469415840515765],[-122.29074354290093,50.469485881477716],[-122.29050460040622,50.46958136139842],[-122.29030529405232,50.46970965701504],[-122.29016210251987,50.46986344691675],[-122.29003756887205,50.47002630011946],[-122.28990965468316,50.470187348620925],[-122.28974956057371,50.470332133201445],[-122.28951038039482,50.47043041932429],[-122.28926480908659,50.47052060949856],[-122.2890291918413,50.47061844697387],[-122.28883334866497,50.470747422757],[-122.28865264555999,50.4708853352307],[-122.28842837081015,50.47099535547359],[-122.28823590466537,50.47112612574199],[-122.28809256272334,50.47128159956123],[-122.28800274205129,50.47145122637439],[-122.28794056082873,50.47162796809949],[-122.28789064752702,50.47180568709061],[-122.28784596588724,50.471984138923816],[-122.28772873295455,50.47214385086993],[-122.28750778285671,50.47225623894806],[-122.2872769688755,50.472359856999596],[-122.2870912079091,50.472494781600304],[-122.28692382806247,50.47264213460655],[-122.28678922754786,50.47279845716045],[-122.28673574395964,50.472976613909935],[-122.28664596062958,50.473145682968386],[-122.2864769099551,50.47329185472112],[-122.28623807648383,50.47338564713438],[-122.28602077422522,50.473496463016865],[-122.28585366433916,50.47364044950389],[-122.28569312882289,50.473790279187796],[-122.28552254465701,50.473933582049334],[-122.28535191283639,50.47407744989637],[-122.28520165308963,50.474230996945195],[-122.28504801181896,50.474382748066816],[-122.2848375086783,50.4744965965861],[-122.28458357037461,50.474580882493036],[-122.28435621071574,50.47468516831209],[-122.28416705094637,50.47481829191822],[-122.28397275016441,50.474949560525914],[-122.28375020320694,50.47505962969512],[-122.2834874598809,50.47512224960596],[-122.28349864013339,50.47528625869584],[-122.28361547704216,50.475452691221896],[-122.28369296115211,50.47562566910183],[-122.28379377991281,50.47579381411723],[-122.28389460016439,50.47596195003353],[-122.2839507414437,50.47613702888244],[-122.2839781773288,50.47631789423862],[-122.28402181830275,50.47649480361712],[-122.28411537165185,50.4766655118868],[-122.28425605845774,50.47682092852936],[-122.28444262759683,50.476954830312756],[-122.28464748621397,50.477080904682516],[-122.28483586365533,50.477214299408885],[-122.28498914834901,50.47736676271049],[-122.28509548573469,50.47753227451038],[-122.28517830343989,50.477704871341565],[-122.28524681502381,50.4778797962482],[-122.28530287152265,50.478055995566535],[-122.285339342282,50.47823435525801],[-122.28536868352805,50.47841359187083],[-122.28539983038266,50.47859233104402],[-122.28543449657656,50.47877118797823],[-122.28548347012794,50.4789477166626],[-122.28553596392214,50.479124354120266],[-122.28558308627808,50.47930194534714],[-122.28563025557845,50.47947897124572],[-122.28566770327167,50.479666918241236],[-122.2856932076393,50.479871335263915],[-122.28575833966731,50.480023095080625],[-122.2859691561683,50.47996997786156],[-122.28623623255054,50.47991931005936],[-122.2864671298218,50.480029381604396],[-122.28670733395931,50.48013358294892],[-122.28696188946,50.48021351249382],[-122.28719936202093,50.480308057191785],[-122.28741174384619,50.48042875361537],[-122.28759449513466,50.480566452755944],[-122.2877100171805,50.48072776948467],[-122.28779090640533,50.480902547949924],[-122.28798523447495,50.48102826234512],[-122.28822257457867,50.48112449159527],[-122.28846357386695,50.48121915120422],[-122.2887046665015,50.48131268871298],[-122.28894585246492,50.481405104121436],[-122.28918875328137,50.481498134137276],[-122.28942799693074,50.48159273276507],[-122.28966895472362,50.48168795497323],[-122.28990820038624,50.481782552544374],[-122.29015110521877,50.481875580412336],[-122.2903942414198,50.481965808307976],[-122.29064122059609,50.482052232307694],[-122.29089033027128,50.48213421932692],[-122.2911472635828,50.482206912201924],[-122.2914102607192,50.48227025207106],[-122.29167899972835,50.48232815092012],[-122.29194602549079,50.482385434016166],[-122.29221282093673,50.48244552487132],[-122.29247744266434,50.48251059885672],[-122.29274572328835,50.4825741029454],[-122.29301187529984,50.4826420428411],[-122.29326117698837,50.482721781347635],[-122.29348029456995,50.48282526233189],[-122.29364108175868,50.48297289619994],[-122.29379038877752,50.48313140182913],[-122.293969605278,50.483269528773796],[-122.29416169352979,50.48340134633389],[-122.29435748752702,50.4835310289581],[-122.29455508812708,50.483660213678405],[-122.29475824569012,50.48378620959291],[-122.29495043063085,50.483916904137324],[-122.29511863430673,50.48406028441082],[-122.29525928989297,50.48421680726127],[-122.29537813743787,50.484381041188314],[-122.29546651720658,50.48455099672181],[-122.29552966107117,50.484727424406074],[-122.29561438386757,50.48489894909757],[-122.29574244865127,50.485058424673774],[-122.29588310951343,50.48521494654155],[-122.29601830757593,50.48537353512508],[-122.29614994049308,50.48553257131396],[-122.29625990417472,50.48569762295297],[-122.29635000323559,50.485868201509376],[-122.29644010297775,50.486038779956885],[-122.29655002251107,50.486204396474704],[-122.29667253829447,50.48636705923512],[-122.29680607486526,50.486524466342956],[-122.29698151718078,50.48666584407091],[-122.29718663919981,50.48678965066674],[-122.29742194727244,50.48688972184904],[-122.29766290453321,50.48698548238843],[-122.2979075668264,50.48707911667478],[-122.29815042455691,50.487173248005845],[-122.29838944077059,50.48727119136471],[-122.29861739170518,50.487374955126946],[-122.29883052843057,50.48748721243129],[-122.29901199729646,50.48761979033248],[-122.2991544838159,50.48777580098263],[-122.29928391444781,50.48794038212827],[-122.29942089256073,50.48809902472171],[-122.29955615811043,50.488257043166016],[-122.29972488375796,50.4884589221066],[-122.3000914336352,50.4885082554263],[-122.30035244466896,50.48857487068153],[-122.30063334565186,50.48859267335736],[-122.30091341917428,50.488620560445725],[-122.30119701221074,50.48864857310784],[-122.30146875815495,50.488691926106206],[-122.30172213391533,50.48876559819681],[-122.30196528400995,50.48885636526454],[-122.30220228141215,50.48895760627386],[-122.30243173431423,50.48906477635841],[-122.30265391803005,50.48917451983454],[-122.30281391715823,50.48931087394164],[-122.30309171807315,50.489323501591095],[-122.30338243729649,50.489329244209145],[-122.30364808093394,50.489382519058594],[-122.3038985084826,50.48947070788192],[-122.30414745292303,50.4895554728211],[-122.30442409384075,50.4895607438521],[-122.3046696573397,50.48964371254044],[-122.30491277249061,50.48973502935591],[-122.30515200084503,50.48983071471847],[-122.30539285268266,50.48992813600802],[-122.30563208307937,50.49002382031394],[-122.30587321202816,50.49011788480724],[-122.30611045499676,50.4902163089147],[-122.30633080139349,50.490327107872815],[-122.30653420568756,50.4904508380751],[-122.30672812126326,50.49058269130318],[-122.30692027866766,50.4907144766356],[-122.30711979864782,50.49084257485232],[-122.30732839568965,50.49096760077017],[-122.30752972357996,50.491095200469786],[-122.3077128095553,50.49123005628381],[-122.30784685844195,50.49138184133355],[-122.30790274435292,50.49156139100489],[-122.3079549723616,50.49174251035256],[-122.30807471356454,50.49189662608844],[-122.30829863874557,50.49200698170635],[-122.30851303035499,50.49212600773714],[-122.30864833909328,50.49228402329732],[-122.30869380680713,50.492461534318664],[-122.30873204995315,50.49264106325177],[-122.30884591838159,50.4928022970534],[-122.30899753149504,50.49295522204275],[-122.30909496302856,50.49312322342324],[-122.30916002418897,50.493298578453874],[-122.30922684600596,50.49347399193504],[-122.30927773507487,50.49365000017381],[-122.30929476846194,50.49382993893311],[-122.30928363850232,50.49400895021609],[-122.30927607510411,50.49418751324105],[-122.3092667059025,50.494366573996736],[-122.30924844307735,50.49454647261927],[-122.30923018084134,50.49472636222635],[-122.30922423917131,50.49490667044929],[-122.30933992158397,50.49506739655303],[-122.30948589520587,50.49522464010399],[-122.30959949731793,50.49538923731215],[-122.3097022633375,50.495556847949786],[-122.30980326988147,50.495724399940514],[-122.30995887573567,50.49587183228444],[-122.3101641207842,50.495995057214714],[-122.31037871992476,50.49611183593358],[-122.3106082279111,50.49621899715693],[-122.31077476696497,50.49636229304068],[-122.31083983932801,50.496537646388255],[-122.31079929544562,50.496709489625346],[-122.31079706399439,50.49688767136909],[-122.31078936874485,50.497067911722105],[-122.31079760721826,50.49724756595834],[-122.31081288772018,50.497427445186524],[-122.31083530068413,50.497606445786666],[-122.3108645259333,50.4977884797625],[-122.31096428681784,50.49794979866251],[-122.31118788187933,50.49806463388026],[-122.31135049541629,50.49821286309794],[-122.3114121438022,50.49838697716449],[-122.31144855136961,50.49856755794995],[-122.3114778715211,50.49874846998818],[-122.31142166839946,50.49891754344786],[-122.31126428136038,50.49907200864225],[-122.31109701922196,50.49921771539206],[-122.31092299066488,50.49935981421583],[-122.3107694884462,50.49950990938588],[-122.31064327878518,50.49967159967507],[-122.31053597421018,50.49983953217007],[-122.31046104454327,50.50000011044755],[-122.31045665095374,50.50001065272515],[-122.31044511119882,50.50019470528824],[-122.3105703938215,50.50034619284237],[-122.310720323261,50.50049849926338],[-122.31082305954266,50.50066666410333],[-122.31094566608685,50.500829308221185],[-122.31111560603425,50.50097440660116],[-122.31137036794284,50.50105372185436],[-122.31160484770541,50.50114360872342],[-122.31171824258327,50.50131101094653],[-122.3118902226963,50.501452801870165],[-122.3120879982963,50.50158138727948],[-122.31216947835662,50.501750535703046],[-122.31225040827769,50.501926413374996],[-122.31233424632966,50.50208833444994],[-122.31222410938716,50.502247743932784],[-122.31207690930398,50.502407046741766],[-122.31193151495773,50.50256584254339],[-122.31179163027768,50.50272201417656],[-122.31168793483695,50.50288895154157],[-122.3116084732401,50.50306175012377],[-122.31152034644707,50.5032325693468],[-122.31142179309538,50.503401359672615],[-122.31132499955349,50.5035702083687],[-122.31124729591981,50.503743065040425],[-122.31121152340842,50.50392125541767],[-122.3112091103195,50.50410166972358],[-122.31116629507265,50.504279626029955],[-122.31103145496894,50.50443877125812],[-122.3110072091435,50.504605531612185],[-122.31125801108239,50.504690337535635],[-122.31149335196069,50.50479149825618],[-122.31163083699832,50.50494508000164],[-122.31174966143959,50.505110970058645],[-122.31191244030926,50.505257510355136],[-122.31209360639396,50.50539510648306],[-122.31228019279065,50.50553119988219],[-122.31245589561566,50.50567086304526],[-122.31260042989543,50.50582466835068],[-122.31272120444163,50.50598837255787],[-122.3128618059439,50.50614711199197],[-122.3130227852538,50.50629415726948],[-122.3132704916776,50.50637379904752],[-122.31355251881291,50.50637922262222],[-122.31383434456562,50.50636552961063],[-122.31411623371842,50.506372638569445],[-122.31439175746345,50.506414398062844],[-122.31465886294468,50.50647274640714],[-122.31493258163647,50.50651500240538],[-122.31521055526616,50.506548411135086],[-122.31548935552755,50.506571716214566],[-122.31576983430332,50.50655290839439],[-122.316051495299,50.506562820813286],[-122.31633256073737,50.50658001813408],[-122.31661085709669,50.506609493433025],[-122.31688675134305,50.50664676051138],[-122.31716047317856,50.50668901101322],[-122.3174340114484,50.50673351292077],[-122.31770759645774,50.5067774488888],[-122.31798118200017,50.50682138418108],[-122.3182545847708,50.50686756190816],[-122.31852540260145,50.50692377458119],[-122.31879743196238,50.506986774298205],[-122.31906507665775,50.50701701474794],[-122.31932173825494,50.50694398566552],[-122.31958052545296,50.50686653709203],[-122.31983894604332,50.506793565163186],[-122.3200925872208,50.506714253489015],[-122.3203462275061,50.50663494122813],[-122.32060459936713,50.50656253276311],[-122.32086900564042,50.506502694194005],[-122.32113949194667,50.50645486918746],[-122.32141471098818,50.50641393889654],[-122.32169123163793,50.506378683016905],[-122.32196928399358,50.50634628418298],[-122.32224900506645,50.50631506453091],[-122.32252701122275,50.50628322059261],[-122.32280631923108,50.506257051040194],[-122.32308759295408,50.50625005494795],[-122.32336916214108,50.50626107038432],[-122.32365009157824,50.506279927058976],[-122.32393106663939,50.50629822672884],[-122.3242205940474,50.50629825756976],[-122.32451012218775,50.506298278683836],[-122.32476356601792,50.506351093941284],[-122.32496949422782,50.50646699529692],[-122.3251592339879,50.50660822598248],[-122.32536415815997,50.50673646374365],[-122.32559583702954,50.50683972092494],[-122.32583126738238,50.50694028574541],[-122.32603502839152,50.5070611782924],[-122.32620323430203,50.50720675051858],[-122.32636593015945,50.50735495609186],[-122.32652320738613,50.50750467347371],[-122.32670826894932,50.50763843194656],[-122.32692287416793,50.507756307569636],[-122.32714502670211,50.50786824265477],[-122.32734865864929,50.50799081051088],[-122.32750223774404,50.50814264406308],[-122.32757818486925,50.50831553506216],[-122.3276812760894,50.508480318012815],[-122.32785694668517,50.50862107787762],[-122.32799061192713,50.50877900843859],[-122.32811158773912,50.50894100849515],[-122.32831305467805,50.509068567704674],[-122.3285750943304,50.50912446461995],[-122.3288569820304,50.509153460331014],[-122.32908918358395,50.50925054582516],[-122.32930384875587,50.50936785135049],[-122.32951101494761,50.5094905314334],[-122.32971262572569,50.50961640119226],[-122.32987525044254,50.50976572275019],[-122.33010601666253,50.50985881789962],[-122.33036280569759,50.509935903813286],[-122.33054964945467,50.51006971368055],[-122.33069416746676,50.510224625151196],[-122.3308114978063,50.51038819243804],[-122.33093966810337,50.5105487439746],[-122.33108039399448,50.51070689419825],[-122.33126385800158,50.5108389085255],[-122.3314991845138,50.510941147671616],[-122.33172682934935,50.51105100455637],[-122.3318774137737,50.51119655105785],[-122.33197298115131,50.51136726984695],[-122.33206687968556,50.511536808794254],[-122.3321554049329,50.5117072947013],[-122.33224569174868,50.511877838662755],[-122.33234315947404,50.512046937297946],[-122.33245688740307,50.51221150772347],[-122.33248453979812,50.51239235302071],[-122.33254294994349,50.51256409289038],[-122.33269304024228,50.512715802105184],[-122.33286476460371,50.512862044810326],[-122.33302754804714,50.51300968330855],[-122.33305778584578,50.51318049240492],[-122.33297676437108,50.51335155910355],[-122.33286960099842,50.51351839774978],[-122.33277282077411,50.513687819314846],[-122.3325987586667,50.51383051481965],[-122.33246085423835,50.51398452534475],[-122.33236917107872,50.51415637301877],[-122.33232837416408,50.51433214134623],[-122.33245516533194,50.5144881459733],[-122.33253011163623,50.51465200163401],[-122.33248565553431,50.51482934042107],[-122.33245899192845,50.51500501761102],[-122.33234324623345,50.51516875625122],[-122.33221878585078,50.51533108237952],[-122.33208019095443,50.51549349932499],[-122.33216069467977,50.51565416485744],[-122.33227772520866,50.51582165046131],[-122.33246130485267,50.515952540429275],[-122.33267957812623,50.51606939849243],[-122.3328589073434,50.516209143892084],[-122.33294929714208,50.51637856478595],[-122.3330073037143,50.51655534607914],[-122.3330333364839,50.51673445428361],[-122.33304162190122,50.5169146588126],[-122.3330534756101,50.51709441433311],[-122.33308845175054,50.51727212632672],[-122.33315901573512,50.517446514977664],[-122.33322601200037,50.51762135252024],[-122.33328944123716,50.5177966299877],[-122.33335287096716,50.5179719073814],[-122.33341806233574,50.51814724284281],[-122.33349219728314,50.51832118211602],[-122.33352017675085,50.51849810485527],[-122.3335944492463,50.51867036614415],[-122.33367752817364,50.518842918034245],[-122.33375889256814,50.5190148464277],[-122.33384201803942,50.51918684183272],[-122.33392875854993,50.51935782288246],[-122.33402805596855,50.51952641136078],[-122.33414722909653,50.51968947510273],[-122.33427113977369,50.51985943339961],[-122.33443491185989,50.519995287804186],[-122.33471647839716,50.520007395855664],[-122.33498812578709,50.520054595098436],[-122.33525737372719,50.520109586420205],[-122.33552902229923,50.520156784335306],[-122.33580256989836,50.52020235287414],[-122.33607607206743,50.520248485999325],[-122.33635174619731,50.5202896340471],[-122.33663121769779,50.520327523962024],[-122.33689685558174,50.52038351666552],[-122.33714449916584,50.520465346953756],[-122.33738581143142,50.520559895811516],[-122.33761930488998,50.52066374054404],[-122.33784340003535,50.5207745889935],[-122.33805642683242,50.520891261593775],[-122.33824324764832,50.52102617828099],[-122.3384226138306,50.52116591385554],[-122.33863758759995,50.52128040024398],[-122.33890947505076,50.52132478146412],[-122.33918723905587,50.52136205056097],[-122.33946319629825,50.52139982617925],[-122.33973924587987,50.52143647058529],[-122.34001714760569,50.52147205976034],[-122.34029360781805,50.521503660283926],[-122.34057219421311,50.52153083193259],[-122.34085383383125,50.521520426345745],[-122.34112939955101,50.52147609230124],[-122.34139752563229,50.5214146352095],[-122.34166662203165,50.5213847059901],[-122.34193732888622,50.52144366000863],[-122.3422151872129,50.52147979997986],[-122.34249526266952,50.52151038947692],[-122.3427749433,50.521524096944276],[-122.34305550370301,50.5215052206076],[-122.34333615492926,50.521485222006675],[-122.34361624502563,50.521493884842876],[-122.3438970498748,50.52151549835959],[-122.34417758188123,50.521540475835856],[-122.34445811419852,50.52156545260352],[-122.34471341520813,50.52164020317333],[-122.34496057964735,50.521728179999116],[-122.34520774505133,50.521816156265906],[-122.34546304872383,50.521890905091325],[-122.34573449157838,50.52194087737117],[-122.34600385488416,50.521994720980395],[-122.34625129674619,50.52207933022659],[-122.34648870433261,50.52217879475536],[-122.34673022731803,50.52227108001548],[-122.34697938826686,50.5223563018354],[-122.34723451601003,50.52243328965832],[-122.34749999755739,50.52249149999589],[-122.34777574166746,50.52253205433597],[-122.34804940627194,50.522576480020675],[-122.34832053748038,50.52263037588409],[-122.34858579462959,50.522691383024195],[-122.3488371766478,50.522771059717954],[-122.34908431024012,50.52285958354662],[-122.34935187586522,50.52291392635565],[-122.34962536325921,50.52296058228527],[-122.34990106633813,50.523001696596246],[-122.35017912243366,50.52303557347535],[-122.35045754248388,50.52306496341955],[-122.35073984912786,50.52308998216021],[-122.35102306478734,50.523103784584194],[-122.3513025870031,50.52309778092433],[-122.35157841468133,50.52307198018047],[-122.35185524138686,50.523033841583896],[-122.35212913501879,50.52298830094674],[-122.35240172164468,50.52293708501307],[-122.35267259134692,50.52288525427708],[-122.35294178989461,50.522832243484146],[-122.35320796422577,50.52277295227514],[-122.353474365241,50.52271085203212],[-122.35373891337314,50.522649814889476],[-122.35400829085057,50.52259455837321],[-122.35427762263672,50.52253985749593],[-122.35455043069952,50.52248583684337],[-122.35482282926104,50.52243686704191],[-122.35509784296103,50.52239921883532],[-122.35537334616747,50.52237733861526],[-122.35565918262772,50.522380527685556],[-122.35594302198326,50.522408399421565],[-122.35621095688258,50.52245823052072],[-122.35646447535802,50.52253346151074],[-122.35671130471496,50.52262589837416],[-122.35695063605776,50.52272371143236],[-122.35718640072685,50.522821964730824],[-122.35741828012986,50.52292459722961],[-122.35764821853684,50.523029405633025],[-122.35787820300013,50.523133657250966],[-122.3581119376516,50.52323522445218],[-122.35835344510868,50.52332804063685],[-122.35860448521127,50.52341218144436],[-122.35884233547851,50.523506567897215],[-122.35905913438125,50.523621063228966],[-122.35926274291303,50.52374581336215],[-122.3594626027499,50.523873256047096],[-122.3596699176665,50.52399587772175],[-122.35988843674862,50.52411099436208],[-122.36010144644158,50.52422873682992],[-122.36029747106166,50.52435998349529],[-122.3604459318826,50.524511604286744],[-122.360514760962,50.52468703786572],[-122.36052491914879,50.524867296288825],[-122.36050165555298,50.52504589288047],[-122.36046597021175,50.52522521597855],[-122.36042152295157,50.52540368519181],[-122.36036492633156,50.52557950722212],[-122.36034712745327,50.52575603364003],[-122.36037151268756,50.525935075695834],[-122.36038700074097,50.526114941729915],[-122.36045953631951,50.52628824729977],[-122.36053022031041,50.52646261663718],[-122.36058663147361,50.52663876733517],[-122.3606341448442,50.52681575098096],[-122.36066386205174,50.5269944006021],[-122.36068287397691,50.527174390752684],[-122.36070193173542,50.52735381559314],[-122.36071566004772,50.5275336235606],[-122.36071701190828,50.527713592796],[-122.3607361149872,50.52789246121785],[-122.36078358531027,50.52807000082264],[-122.36083643064433,50.528246600899614],[-122.36090359600028,50.52842085416899],[-122.36100658313256,50.52858896681071],[-122.36110202581929,50.52876302158234],[-122.3612907263157,50.5288321760397],[-122.36158256820673,50.52882711573583],[-122.36185905364506,50.52881537135662],[-122.36213928901167,50.52880093327207],[-122.36242100930241,50.5288118404889],[-122.36270236664039,50.52882724221063],[-122.36298756477967,50.52883882861228],[-122.36326874205024,50.528856463051355],[-122.36354106099698,50.52889630634184],[-122.36379593743024,50.52897717652178],[-122.36402411429164,50.529082478569386],[-122.36421655765545,50.52921472379558],[-122.36442174061818,50.52934232967083],[-122.3646585970845,50.52942767284842],[-122.36494293979065,50.529449904582016],[-122.36522127292918,50.52948094415202],[-122.36549974259749,50.529510296193486],[-122.36578128710336,50.52952343801286],[-122.36606337410267,50.52952985871143],[-122.36634541629341,50.529536834989834],[-122.36662497297876,50.5295527254486],[-122.36690669905363,50.52956362129011],[-122.36718851502188,50.52957340382589],[-122.36747024136224,50.529584298239335],[-122.36775192224344,50.52959575720731],[-122.36801950548872,50.52965061093548],[-122.36828257110777,50.52971768605355],[-122.36853402712606,50.529797317522075],[-122.36875083532408,50.52991235834115],[-122.3689600105242,50.53003445409768],[-122.3692015760288,50.53012725491645],[-122.3694670864045,50.530185968542895],[-122.36974877155366,50.53019742244392],[-122.3700306825131,50.53020607620325],[-122.37031309116712,50.53020855614923],[-122.3705971711193,50.53021221449559],[-122.37086945990106,50.53025259606843],[-122.37113885806261,50.5303069345237],[-122.37140631372417,50.53036346688958],[-122.37167363486164,50.53042167647198],[-122.37194082150428,50.53048156327162],[-122.3722060657386,50.530543644005206],[-122.37246941385528,50.53060734444378],[-122.37273258202605,50.53067328738821],[-122.37299380860101,50.53074141532548],[-122.37325485530081,50.53081178577836],[-122.37351405079518,50.53088321967454],[-122.37377311199265,50.530956330825475],[-122.37403208299455,50.531030571906726],[-122.37428748664891,50.53110525368959],[-122.37454284636036,50.53118049117669],[-122.37479820620202,50.53125573704301],[-122.37499231568516,50.531367775043464],[-122.37523579826369,50.53145893324501],[-122.37548312160916,50.53154627587659],[-122.37573234268756,50.53163199755259],[-122.3759816997526,50.531716040794706],[-122.37623110323888,50.53179951819848],[-122.37648235964072,50.531881930924115],[-122.37673379745789,50.531962099936145],[-122.37700321290788,50.53201642406973],[-122.3772836481262,50.53204356082063],[-122.37755767023413,50.53208454864143],[-122.37782089994688,50.53214991415313],[-122.37808164622771,50.53222420313166],[-122.3783328636374,50.53230716793155],[-122.37855250766518,50.53240935315227],[-122.37864798146364,50.53258394834302],[-122.37873844055672,50.532755015412015],[-122.37894200988876,50.532881405973946],[-122.37905324869186,50.533035715528285],[-122.37907382782461,50.53321912332246],[-122.37909648495878,50.533398658512034],[-122.37911205031027,50.53357852028974],[-122.37912942233534,50.533757883144176],[-122.37914851086292,50.53393786864261],[-122.37916217913124,50.53411935971679],[-122.3792188083517,50.53429381246876],[-122.37932747804994,50.534458158173486],[-122.37945765146254,50.5346187064034],[-122.37958782580264,50.53477925444954],[-122.37980605922228,50.5350090172902],[-122.37999130093161,50.53514381303485],[-122.38012324056548,50.5353044177536],[-122.38031196347791,50.53543988401324],[-122.38052833336195,50.53556106520391],[-122.38076763403525,50.53557280049015],[-122.38104709038365,50.53554647654165],[-122.3813277667241,50.535526947649146],[-122.38160880407828,50.53550292280407],[-122.38189015621654,50.53547497624605],[-122.38217128234571,50.53544983738239],[-122.38244997079163,50.535433047721924],[-122.38272451415241,50.53546784952727],[-122.3828916523662,50.535608230913205],[-122.3830325933825,50.535766875734],[-122.38321405448843,50.53590490700966],[-122.38344045979697,50.53601123253451],[-122.38367440892262,50.53611162281984],[-122.38391021180539,50.53621093939981],[-122.38414615047591,50.536308577600856],[-122.3843838520931,50.53640627262241],[-122.38462168947217,50.53650228925738],[-122.38486124512976,50.5365989189957],[-122.38509718789223,50.536696555132835],[-122.38533484895602,50.536794804373635],[-122.38557070373213,50.536893561051684],[-122.38581026350472,50.5369901886996],[-122.3860500043579,50.53708457268171],[-122.386293630212,50.53717458446378],[-122.38654123103414,50.537259102452495],[-122.38679858733396,50.537332134360604],[-122.38706375771184,50.53739585699977],[-122.38733087079981,50.53745739314827],[-122.3875960426675,50.53752111450855],[-122.38785159556664,50.537594642973346],[-122.38808953730349,50.53768952150986],[-122.38830620809964,50.53780733149684],[-122.38851185898015,50.53793039631943],[-122.38870635390349,50.538060411850395],[-122.38889890803367,50.53819261289951],[-122.38909521182757,50.538322128671226],[-122.38929531133608,50.53844838490319],[-122.38949902522116,50.5385736426614],[-122.38969533311938,50.538703148341064],[-122.38993174704065,50.53879516612097],[-122.39019697506235,50.5388583248769],[-122.3904583208041,50.53892584583143],[-122.39059902007652,50.53906592176293],[-122.390612781338,50.539246845019335],[-122.39068184028247,50.53942113517722],[-122.39079585032339,50.53958564034213],[-122.3909223754612,50.53974830282144],[-122.39105075349005,50.53990990078202],[-122.39117018684145,50.54007289927807],[-122.39126816176316,50.54023913193992],[-122.39125188063728,50.540420203624635],[-122.39129266040031,50.5405946991399],[-122.39139411580523,50.54076161130134],[-122.39150984935881,50.54092672898451],[-122.39162553845313,50.54109241178418],[-122.39172871374798,50.541259937054605],[-122.39179963211686,50.541433161738375],[-122.39184362421264,50.54161170123894],[-122.39189660787872,50.54178827464283],[-122.39200692426665,50.54195490679877],[-122.39223012606014,50.5420577345183],[-122.39249379410296,50.54211858720265],[-122.39276297437357,50.54217680245082],[-122.39302836142389,50.54223826735623],[-122.39329812752746,50.54228918662417],[-122.39357204680685,50.542332377603955],[-122.39384610173545,50.54237388106823],[-122.39412205445434,50.54241375419412],[-122.39439827643156,50.542450270900254],[-122.39467458939781,50.54248565637729],[-122.39495000392033,50.542532265828726],[-122.39522334286016,50.54258273844072],[-122.39549675015004,50.5425882332929],[-122.39576994477831,50.54253018284873],[-122.39602519067067,50.542453566957334],[-122.39626913334654,50.54236364792078],[-122.39651750903924,50.54228455019416],[-122.39680424864012,50.54230003679073],[-122.39706262438577,50.54225049863227],[-122.39730203996731,50.542150877044605],[-122.39754783036862,50.542059890726655],[-122.39780940197966,50.54199246279391],[-122.3980831848779,50.54194905315517],[-122.39836493874775,50.5419385021377],[-122.39864805053296,50.54193305907645],[-122.39892940009112,50.54192755819278],[-122.39921273565203,50.54191931424784],[-122.39949629572193,50.541908261161105],[-122.39976646319164,50.54186584578944],[-122.39999852144882,50.54179184328406],[-122.40002020543464,50.54178579885781],[-122.40027254406913,50.54170119898854],[-122.40053731959702,50.54163780876935],[-122.40080724596046,50.54157627598047],[-122.40108160659867,50.54152556421476],[-122.4013560253301,50.54149621876858],[-122.40162915783098,50.54150506328046],[-122.40190439498768,50.541553889746055],[-122.40217904976045,50.541610010258324],[-122.40244837358654,50.54166652422446],[-122.4025067490573,50.541665598307354],[-122.4041456178757,50.5420717259192],[-122.40531131437422,50.5426070231511],[-122.40700141005715,50.54363378048492],[-122.40784157688245,50.54457400994607],[-122.4090650869492,50.545449029276604],[-122.41010099308403,50.546173483845386],[-122.41119793813851,50.54695273881306],[-122.41170157903736,50.547661111482995],[-122.41232420791219,50.54887201522688],[-122.41266298173264,50.54952107590744],[-122.4131476694436,50.55020183946046],[-122.41326355130782,50.55036637629933],[-122.4135198242573,50.550609657112666],[-122.41366899821774,50.55075558509747],[-122.41407408982451,50.55119369884926],[-122.41439035890009,50.551504697723054],[-122.4146140698664,50.55175760270793],[-122.41479426197452,50.55191353387368],[-122.4149297421181,50.55209837385267],[-122.41513942986131,50.552283366943705],[-122.4153377296791,50.55232292891337],[-122.41571653092109,50.55231490400276],[-122.416158545716,50.55220096851133],[-122.41647824256911,50.552202846658496],[-122.41688818557151,50.55229195787125],[-122.41721813795418,50.552564590437875],[-122.41759476989786,50.55282804842909],[-122.41833600083231,50.55315103792264],[-122.41966890931583,50.55354480544753],[-122.42186499105205,50.554039990540026],[-122.42288230298745,50.554180678427144],[-122.42338980263273,50.55426559935903],[-122.42407164656812,50.554491626304035],[-122.42491817848749,50.55482470285532],[-122.4255528089697,50.55508911478641],[-122.42623518495621,50.555286466888646],[-122.42717338366813,50.555600540784965],[-122.42774696559196,50.55585510602463],[-122.42825464535507,50.55602715787041],[-122.42949799817124,50.556304355322254],[-122.43087691016521,50.556543719790604],[-122.43250173862549,50.556735303618765],[-122.4348320526002,50.55694499242159],[-122.4358349892616,50.55691137704347],[-122.43686823456838,50.55689670598005],[-122.43759706712342,50.556909943777065],[-122.43805255290553,50.556960520471435],[-122.43852227685844,50.55716616469744],[-122.43901938321102,50.55751716819174],[-122.43951733164637,50.55779061065672],[-122.43997952492168,50.557845891574615],[-122.44089047779224,50.5579475797799],[-122.44190764992702,50.558136434037095],[-122.44282564025198,50.55819392107282],[-122.44442220196449,50.55816291147469],[-122.44510671190753,50.55808866808371],[-122.44739522307859,50.55797854200842],[-122.44803317420661,50.558068640285285],[-122.44906330178124,50.558228040412],[-122.45017291776486,50.5583208217369],[-122.45077904036569,50.5584784769748],[-122.45213319096663,50.55887701468014],[-122.45337623399656,50.55918316196883],[-122.45448042555289,50.559681638737395],[-122.45569011631545,50.560142430300445],[-122.45668911906452,50.56056331870001],[-122.45704653024319,50.560782724281694],[-122.45704553997751,50.56092999013015],[-122.45704558733398,50.56122121314824],[-122.45703985689285,50.56248373883074],[-122.45704062960972,50.56263106055453],[-122.45703986356538,50.56275302960728],[-122.47860130236664,50.56636363962801],[-122.47874301753198,50.56635969903919],[-122.47971960258452,50.56670994472576],[-122.48164760491943,50.56730335385317],[-122.48504188556065,50.56824779977255],[-122.48735828963673,50.569233985215554],[-122.48974777587487,50.570032406546304],[-122.49206558483435,50.570980301625454],[-122.49338428151913,50.57170662821985],[-122.49500604341458,50.57265049594456],[-122.49516693762503,50.57280903736834],[-122.49523928839712,50.57287877909409],[-122.49529914757056,50.57292733093325],[-122.49535591746104,50.57297015458338],[-122.4954684957651,50.57306814844399],[-122.49558967329521,50.57316922852606],[-122.4956620091645,50.573216482233484],[-122.49571858886591,50.57323906118578],[-122.49579426106395,50.57326618143884],[-122.4958630973827,50.57329027985155],[-122.49590992582132,50.57330187453662],[-122.49602748566019,50.57333593617667],[-122.49627936746094,50.57341583073068],[-122.49643582906403,50.573472480290285],[-122.49646806964503,50.5734897946526],[-122.49648319847702,50.573499832792116],[-122.49651006119689,50.57351810208651],[-122.49654552281079,50.57353945764569],[-122.49659099747352,50.573568441443896],[-122.49663466535142,50.57359792598804],[-122.49666139682549,50.5736178821415],[-122.49668534405025,50.573628189035595],[-122.49672348610639,50.57363782769355],[-122.49685795048951,50.57363644140291],[-122.49717678921022,50.57369651332745],[-122.49740957225305,50.573817404883755],[-122.49745970079358,50.57387745020323],[-122.49750842442317,50.57388742182088],[-122.49760410891197,50.57390730048276],[-122.49765394158825,50.573925735145394],[-122.4977225619638,50.57395263192217],[-122.49795216213117,50.57400089644371],[-122.49824283154888,50.57405952047296],[-122.49839385842732,50.5740951998669],[-122.49844179749002,50.57411525657464],[-122.4984951753785,50.57415628958975],[-122.4985533810941,50.57422615015882],[-122.4986211823423,50.57433172550352],[-122.4987012591587,50.574461298714205],[-122.49875935268076,50.57455532475172],[-122.49880578213173,50.57461750159069],[-122.49884598707146,50.57466879657831],[-122.49887326164985,50.574704510200355],[-122.49889400574496,50.57473327210411],[-122.49890993890882,50.574755703099854],[-122.49894117717923,50.574785919694115],[-122.49900637758866,50.574834070682336],[-122.49908370528642,50.57488540975329],[-122.49916954519576,50.57494095643879],[-122.49926496269399,50.57500973908985],[-122.49934265808491,50.57507907920179],[-122.49940482987203,50.57514344222699],[-122.49947190019871,50.57521301448049],[-122.49953067643929,50.57527557951384],[-122.49955362118577,50.57529878874303],[-122.49961264136384,50.57533550124955],[-122.49999644059555,50.575560640214185],[-122.50066162269707,50.57605492320187],[-122.50108143595206,50.57652181119353],[-122.50118614096603,50.576721299782946],[-122.5012940610287,50.57681126961987],[-122.50153297146268,50.576899180140394],[-122.5018014536829,50.576970588262846],[-122.50196873495106,50.57702475411455],[-122.5020981314404,50.57706592709988],[-122.50222001803137,50.57708999851004],[-122.5022656549201,50.57709424904444],[-122.50234893493754,50.577137344526065],[-122.50259224448247,50.57725967911177],[-122.50283916989983,50.57738100244664],[-122.50296149003279,50.57744499651184],[-122.50305374003851,50.577509178374974],[-122.50315075891547,50.57758024717205],[-122.50322258667647,50.57763422535625],[-122.50328413728347,50.57768394967522],[-122.50335261235941,50.577735573662146],[-122.50341473029401,50.57777800297008],[-122.50350909474827,50.57783774447273],[-122.50366618739699,50.57793207277334],[-122.50382186639644,50.57802185000232],[-122.50395579429977,50.5780957691345],[-122.50406770935258,50.57815719507393],[-122.50412175126442,50.57818980864986],[-122.50416825864878,50.57822837379586],[-122.50428021520736,50.578334774657904],[-122.50440140396934,50.57845888838707],[-122.50445344181435,50.57851729875036],[-122.50447453986808,50.57854157305321],[-122.50448451209773,50.578549756865016],[-122.50459035341318,50.57862111042574],[-122.50476987803422,50.578745365836724],[-122.50486548645213,50.57881190015595],[-122.50487837623535,50.57882804602001],[-122.50489873424425,50.578861849405264],[-122.50492875930405,50.57890776666423],[-122.50497683443577,50.578971682917455],[-122.50502477933294,50.57903727706874],[-122.50507474955216,50.57909956179174],[-122.50512798597491,50.579165322141385],[-122.50516511039419,50.57921089569701],[-122.50520310561548,50.579245262144944],[-122.50523417694178,50.579277720021764],[-122.5052342850036,50.57929908596149],[-122.50524166421684,50.57936340543749],[-122.50527040243844,50.57949416561366],[-122.50531536259548,50.57962094703552],[-122.505409034428,50.579735200001636],[-122.50553713375253,50.57983872432456],[-122.5056479664876,50.57991416413359],[-122.50574220733921,50.579975590483954],[-122.50578915360296,50.5800085468395],[-122.50582980625911,50.58005423991234],[-122.5058980045167,50.580132270842974],[-122.50594806428522,50.58019343348556],[-122.5059920486897,50.58026452434445],[-122.50609776488587,50.58038309456901],[-122.50621822400562,50.5805167351733],[-122.50625554247515,50.58081023616772],[-122.50623924433644,50.581429802915814],[-122.50622128965531,50.58216174217135],[-122.50620963103259,50.58265327899896],[-122.50621161010949,50.582832668726674],[-122.50622066807084,50.58289816486452],[-122.50623029056966,50.58304744644962],[-122.50624087077031,50.58327545276857],[-122.50625445547512,50.58351030840359],[-122.50628391504891,50.58383672487761],[-122.50634157575503,50.58418708027469],[-122.50639869442735,50.584385075345416],[-122.50643669479211,50.58446497228225],[-122.50647626334239,50.584570211510574],[-122.50653824016501,50.584728440522554],[-122.50659185474335,50.584903271897005],[-122.50666080066557,50.58515391509943],[-122.50672674206297,50.58539771780451],[-122.50675039221177,50.58550302358181],[-122.50683406202263,50.58551858518278],[-122.50706924038309,50.58556419687815],[-122.50729912720783,50.585609641928386],[-122.50739126972671,50.58562995744381],[-122.50744830571215,50.58564693106858],[-122.50763938517147,50.58569115705281],[-122.50791646604911,50.585743703978245],[-122.50820765967391,50.5857966931525],[-122.5084981142116,50.58585921067706],[-122.50878094720528,50.58592880089385],[-122.50905095374723,50.58600417619614],[-122.5093150604429,50.586087227017764],[-122.50954486744065,50.586179329006264],[-122.5097584947809,50.586274853540054],[-122.5100017402092,50.58635331747235],[-122.51024696845016,50.58642902771259],[-122.51041819403983,50.58650130083597],[-122.5105122575841,50.586542478512456],[-122.5106198009059,50.58656946260216],[-122.51075759421065,50.586594022349985],[-122.51089994053312,50.58662827702369],[-122.511031029804,50.58669366870281],[-122.51112631701888,50.586764674435514],[-122.51117473348454,50.58680161366012],[-122.51119150396266,50.58681338287408],[-122.51124754265467,50.58684324845307],[-122.51135308604641,50.58689602864652],[-122.51147045611098,50.586955925554165],[-122.51163084098361,50.58703122070113],[-122.51180281087582,50.58709395354791],[-122.51191654266161,50.5871323736197],[-122.51201624906089,50.587169229515965],[-122.51215618627997,50.58725738369137],[-122.51230734761462,50.587406036577825],[-122.51240671807598,50.58753844940325],[-122.51247182648788,50.58763380959813],[-122.51251449925738,50.58769923393581],[-122.51252654913411,50.58774908206331],[-122.51256901034357,50.587862845797005],[-122.51266032631926,50.58800793104809],[-122.51270772637052,50.58808081606198],[-122.51271678934974,50.58810077135995],[-122.5127295106655,50.58811915933419],[-122.51274619506951,50.588132049895705],[-122.51277747035651,50.5881392184997],[-122.51286049523333,50.58816318303894],[-122.51299246217545,50.58821734731076],[-122.5130958988674,50.58827455687445],[-122.5131444304122,50.58833286087343],[-122.51317691177259,50.58839290147804],[-122.51322279160696,50.588485409757496],[-122.51328525051896,50.58861498265886],[-122.51332374529812,50.588688703549025],[-122.51333280797724,50.5887086677551],[-122.51337380583897,50.58877291479219],[-122.51345383883064,50.588881109438354],[-122.51355826623882,50.58899399908545],[-122.51356891468618,50.589130376051855],[-122.51344834510694,50.58929412209889],[-122.51346913653197,50.58939090787555],[-122.51367258693506,50.58943551029249],[-122.51383219448718,50.5894753655894],[-122.51394438756662,50.58951091971608],[-122.51401879396334,50.58955485103571],[-122.51405471807341,50.5896161324183],[-122.51406786414611,50.589697495594564],[-122.51405228713077,50.589807191222974],[-122.51402136157567,50.58995519058747],[-122.51400557414128,50.59011322547251],[-122.51401885784297,50.59023844150134],[-122.51404350177371,50.59030836397266],[-122.51405269586094,50.59032664119694],[-122.51407733302428,50.590351023882114],[-122.51416720942632,50.59042354775934],[-122.51431278368088,50.59053042185429],[-122.51448055477185,50.59064754332978],[-122.51468707001062,50.59074395841739],[-122.51486005762872,50.590793792366405],[-122.51492781901005,50.59080940674021],[-122.51495147499043,50.59082363957077],[-122.51498441248059,50.59085502793313],[-122.51501987922204,50.59089942069917],[-122.51504974879893,50.59094757775595],[-122.51509815572715,50.591007558626046],[-122.51517198319787,50.59108182750737],[-122.5152635222716,50.59117857979718],[-122.51537053198793,50.591303915521046],[-122.51545479804736,50.59140324612118],[-122.51551779760632,50.59145750449142],[-122.51560854760773,50.59151881112833],[-122.51573576492116,50.59161161629523],[-122.5158580376026,50.59169976917639],[-122.51592578386028,50.59173842644414],[-122.51594492996809,50.59174239893075],[-122.51601071130756,50.591760765864464],[-122.51610080161477,50.59178494885671],[-122.51615109613026,50.591797766848494],[-122.51622036305294,50.59181680045247],[-122.5163793299919,50.59186505948287],[-122.51654990824701,50.59192324300088],[-122.51666210888068,50.591958803256816],[-122.51677862082595,50.59198437050314],[-122.51703823839846,50.592034664101526],[-122.51743209876035,50.592109954281895],[-122.51771783516531,50.592165552022294],[-122.51789446352778,50.592191317527735],[-122.5180598273995,50.592202680773575],[-122.51813211963326,50.592205500717654],[-122.51818341355595,50.5922054238817],[-122.51828621954644,50.59220245268178],[-122.5183682446412,50.59219377620407],[-122.51841829530292,50.592186914457876],[-122.51843434745852,50.59218516810665],[-122.51847877415008,50.5921595746361],[-122.51885573210656,50.591973489387726],[-122.51966687605264,50.59159298648292],[-122.52038701710522,50.59124561008809],[-122.52070001319106,50.59106314011032],[-122.52079495045297,50.590978969839725],[-122.52083581743011,50.59093077783007],[-122.52086854238155,50.590896389660486],[-122.52089669823859,50.59087534141149],[-122.52094401450647,50.59083522124271],[-122.5209960739346,50.59077950893561],[-122.52101747611772,50.59075431886918],[-122.5210394707571,50.5907443300936],[-122.52106688855329,50.59073281991279],[-122.52108677256882,50.5907272534049],[-122.52111751638743,50.590695609512636],[-122.52121421561634,50.59061150298277],[-122.52134414598521,50.59050931299108],[-122.52144075763098,50.59042632784951],[-122.52150503563878,50.590372679299605],[-122.52155334818727,50.59031966488473],[-122.5215945463001,50.590221446362996],[-122.52164213481062,50.59008633414165],[-122.52169693942886,50.58997224285076],[-122.52173206358401,50.5898839532213],[-122.52175149727945,50.58976988041405],[-122.52175176981466,50.58960630525419],[-122.52171891380357,50.589436630442556],[-122.52165454942445,50.58928564158278],[-122.52157393124229,50.58911616438074],[-122.52148768886829,50.58892795546986],[-122.52142118580798,50.5887589103662],[-122.5214025895293,50.588633529522255],[-122.52140643557485,50.58853808264766],[-122.52141424365004,50.58843713804448],[-122.52141800289814,50.588342812753716],[-122.52142073536048,50.5883074866219],[-122.521421646643,50.58829570526236],[-122.52143302621556,50.58826289813232],[-122.52146538740963,50.58818745621507],[-122.52152360258448,50.58805210936596],[-122.5215835524287,50.58789433031162],[-122.5216193109629,50.587752093010586],[-122.52163125387264,50.58764340735015],[-122.52164335562303,50.587555531066144],[-122.52165661487669,50.587475552211004],[-122.52166709745681,50.58743147378695],[-122.52169551101456,50.58740706042274],[-122.52174442737659,50.58734619447561],[-122.52176828475085,50.58724350286094],[-122.52175599292723,50.587150924265096],[-122.5217601712311,50.58707403442047],[-122.5217807029536,50.58699147657885],[-122.52178722259359,50.586884312244365],[-122.52182750500769,50.58672929098603],[-122.52190383523316,50.586588321876306],[-122.52193541377862,50.58652297415752],[-122.52193301327743,50.586508282930126],[-122.52196770099196,50.586494193530676],[-122.52205752249976,50.58645315303756],[-122.52214747429174,50.5864104255684],[-122.52221909084062,50.58637612842453],[-122.5222933393279,50.586330661301716],[-122.52236118158541,50.586276565961874],[-122.52240703086466,50.58623246865472],[-122.52258882445452,50.586076806583236],[-122.5229019598246,50.585800458668025],[-122.52306224799928,50.58562557688058],[-122.52307969884603,50.58558283139274],[-122.52309373747873,50.5855613503691],[-122.52306056513048,50.58548723268297],[-122.5229704512655,50.58537198402402],[-122.52298557145708,50.585267894622014],[-122.52317538500408,50.585145654266746],[-122.52341983854538,50.58502567882901],[-122.52358956886079,50.58495734431153],[-122.52364258908706,50.5849348237233],[-122.52379114575504,50.58502603867436],[-122.52410431034423,50.58520672076835],[-122.52430471864011,50.585290560444506],[-122.52436371114356,50.58528228462499],[-122.52442990251028,50.58524949861087],[-122.52451740468727,50.58519264326107],[-122.52485468387022,50.585107054697666],[-122.5256305668915,50.58492891124139],[-122.52630471928568,50.58469417630064],[-122.526456170376,50.58451901398802],[-122.52639392694243,50.58440913568335],[-122.52632326560372,50.584270886439725],[-122.52625102552962,50.584107295082084],[-122.52621924735642,50.5839921796347],[-122.52621315597395,50.58395657778729],[-122.52637327929544,50.58389804910226],[-122.52672093610519,50.58376948833196],[-122.52698158285436,50.58366856679074],[-122.52718840030325,50.583577774103375],[-122.52743125482327,50.58343244757709],[-122.52754922612941,50.58325567200867],[-122.52756849147,50.58309774401752],[-122.52757586268876,50.58297936264991],[-122.52771314876169,50.58280431409873],[-122.52799222844709,50.58255612182202],[-122.5281567922882,50.58237124754157],[-122.52822526054246,50.58224014773201],[-122.5283224589355,50.58212625168578],[-122.52845083337995,50.582043685204404],[-122.52868762647964,50.581953825350666],[-122.5289497087353,50.581879927979244],[-122.52906061561858,50.58179456713305],[-122.5290604622989,50.58165907699111],[-122.52909745887865,50.58156916124176],[-122.5291743540436,50.581535024534055],[-122.5292406336508,50.581478061110865],[-122.52926635415248,50.58139678805662],[-122.52927692510028,50.58132853418727],[-122.52933003472064,50.5812818453585],[-122.52938718058085,50.581251589615135],[-122.5294074055521,50.58124153506662],[-122.52943811652466,50.581255985111795],[-122.52954953244046,50.58127857466105],[-122.52973172942596,50.58127751284138],[-122.52989913293595,50.58126193970417],[-122.53006313874445,50.581244569350304],[-122.53053874219424,50.581244788051826],[-122.53119928006308,50.581070880345756],[-122.53148806986657,50.580673438706846],[-122.53153402157648,50.58044438549599],[-122.53158143796897,50.58042562618479],[-122.5316357795672,50.580408773765136],[-122.53193690299679,50.58035575810571],[-122.53242346921145,50.58023657506373],[-122.53270114977998,50.579937166751066],[-122.53279443158259,50.57955274088095],[-122.53281566539573,50.57936901383217],[-122.53279089406557,50.57934632189835],[-122.53278625145673,50.579337740266375],[-122.53279963544377,50.5793246655801],[-122.53285088880563,50.57927904160814],[-122.53313741576244,50.579117075279825],[-122.53367226835294,50.57889876070962],[-122.53424371136565,50.57884798349611],[-122.53474589594937,50.57891591487636],[-122.53496102595405,50.578946227453685],[-122.53506299418737,50.57890780396341],[-122.53538374267094,50.57878343407486],[-122.53573116817834,50.57863404375018],[-122.53587023156197,50.578550111022714],[-122.53588791933176,50.578527051129164],[-122.53590624795628,50.57851862737103],[-122.53593726840185,50.57850610158563],[-122.53596841804628,50.578491897830474],[-122.53604401437958,50.578451527861915],[-122.53616793014008,50.578380614908184],[-122.53628327874152,50.578329115165296],[-122.53640313402971,50.578310927621615],[-122.53659567262707,50.578359080446766],[-122.53685043473729,50.57849462764054],[-122.53712254683654,50.578588547811414],[-122.53737085548575,50.57857828881152],[-122.5374972116936,50.57854455298388],[-122.5376055904786,50.57849171063191],[-122.53782996310473,50.5783789590676],[-122.53807783102475,50.57823657269729],[-122.53829472607123,50.5780831119768],[-122.53846713276018,50.57795636536905],[-122.53859405228287,50.577892298228626],[-122.53877349555711,50.57783492033602],[-122.53911523994502,50.577805078663374],[-122.53952412001229,50.57784478382764],[-122.53973692390385,50.57788231848478],[-122.53988868667108,50.57790896832365],[-122.5404168085944,50.57798441802704],[-122.54136353570956,50.57811111804273],[-122.54216624423016,50.57822545358409],[-122.54246143084649,50.578272298791674],[-122.54250496481104,50.57828095557142],[-122.54255546693445,50.57829096223989],[-122.54262132636875,50.578308183141054],[-122.54267784911228,50.578331868688664],[-122.54285353269064,50.57836936773536],[-122.54314351944953,50.578391872166236],[-122.54331568173407,50.57838317306769],[-122.5433952270002,50.57836034343164],[-122.54348126667952,50.57834502810632],[-122.54354016036869,50.57833786369437],[-122.54373021854627,50.578326347122534],[-122.54397967668775,50.57839312030128],[-122.54408545371858,50.578443070392716],[-122.54413431981754,50.5784743784903],[-122.54422022213849,50.57852989018115],[-122.54439319550018,50.578579678981114],[-122.54458656196702,50.578617166895356],[-122.54483503662759,50.5786507447149],[-122.54491552459619,50.57866167272305],[-122.54498245936345,50.57868792908527],[-122.54501166826147,50.57869895517825],[-122.54503279088532,50.57870016892834],[-122.54511723659573,50.57870560714068],[-122.54529232674675,50.57868181316652],[-122.54547546275641,50.578645334695075],[-122.54567894678405,50.578597129385294],[-122.54590199900713,50.5786164235383],[-122.54623982454346,50.57866064297348],[-122.54652989981902,50.57870506081973],[-122.54689529842027,50.57880466795047],[-122.54722318736502,50.57888623580873],[-122.54747368411489,50.57898564713525],[-122.54754853626173,50.57902394840475],[-122.54766761165934,50.579084984102465],[-122.54794771125661,50.57909817442281],[-122.54807070448562,50.57908512670461],[-122.54833454421856,50.579056769596654],[-122.5487302808198,50.57901452438702],[-122.54903485867064,50.5790312777499],[-122.54922466023399,50.57902311673004],[-122.54951555808937,50.57898772610229],[-122.54998085582466,50.57896055935499],[-122.55014286698487,50.57896895713367],[-122.5502893915346,50.57899486333912],[-122.55041685852983,50.57901568109189],[-122.55060717676433,50.579023831737466],[-122.55077194080073,50.579019388897514],[-122.55181880970078,50.57883203949453],[-122.55283776012278,50.57877817458435],[-122.55402266830552,50.579073479837135],[-122.55550316856188,50.57991871624142],[-122.55687596611075,50.58108608664871],[-122.55908623140253,50.58207752772149],[-122.55992992047253,50.58272086083368],[-122.56094089855964,50.58348909102284],[-122.56283406250982,50.58432898436299],[-122.5634997132518,50.584387774616985],[-122.56377597199105,50.584382258897996],[-122.5640486883739,50.58433052813017],[-122.56432706138101,50.58434362267103],[-122.5646048854282,50.584387055424614],[-122.56487483973393,50.584440929725695],[-122.56513645436038,50.584511401222386],[-122.56537299533522,50.58460921421939],[-122.56559431227893,50.584721163460934],[-122.56587041026246,50.58474092955428],[-122.5661410532824,50.58478582759297],[-122.56635837319459,50.58478803811809],[-122.56655894391753,50.58487068011751],[-122.56675045595425,50.58500251087597],[-122.56695857370639,50.58512529273451],[-122.56718953039045,50.58522685976468],[-122.56744921725257,50.585299523592795],[-122.56770890563791,50.585372177835595],[-122.56797706304317,50.58542654646229],[-122.56825630907707,50.58545146736086],[-122.56854493237469,50.58546936442309],[-122.56881798862963,50.58550589348578],[-122.56902456383759,50.585625817368715],[-122.56913572857528,50.58579114280895],[-122.56919823688564,50.58596845904691],[-122.56935113277925,50.58611988870501],[-122.56958790558639,50.586214883952834],[-122.56985534280787,50.58627878648618],[-122.57002389494656,50.58631771168352],[-122.57024849249864,50.586410081491856],[-122.56989287317322,50.58706187873278],[-122.57049473394582,50.587517221461624],[-122.5712437311646,50.5880838926155],[-122.57618458568852,50.59007930525544],[-122.58588238406904,50.593154795715],[-122.58668982574379,50.59332796989687],[-122.59396932537332,50.59360387186383],[-122.60043422524136,50.59473694765061],[-122.60572841704658,50.59770017701267],[-122.60708033661939,50.5994727321826],[-122.60959830149523,50.60060794203594],[-122.6136441189922,50.60362881701047],[-122.61284669017056,50.608202632989716],[-122.60685469333708,50.614837422591386],[-122.60389337759133,50.61843625099538],[-122.60202973064047,50.62454962441113],[-122.60285130936958,50.629974809637325],[-122.60725185253746,50.632827815785504],[-122.60986801856576,50.633624712198504],[-122.61740607665271,50.63544349366414],[-122.62622818336949,50.637143257686866],[-122.63440235824874,50.6380481757495],[-122.63521516160334,50.63816266415012],[-122.62928805249446,50.64033859831564],[-122.62407477335121,50.64337336729484],[-122.62156953701398,50.646175287477746],[-122.62104328784031,50.64902819155884],[-122.62231229350184,50.65268477365972],[-122.62446920257473,50.65565212590124],[-122.62645071836447,50.6566204411642],[-122.62995079774129,50.656045110804804],[-122.63686545815222,50.65243811049651],[-122.64136038528923,50.65048727714497],[-122.65151806760592,50.6504737393106],[-122.6582458503453,50.650294068885614],[-122.66031703557042,50.649491153421934],[-122.66749607570615,50.64570870222914],[-122.67511967306154,50.64106955750187],[-122.67969084377775,50.64168814497925],[-122.68770510032657,50.64401532919584],[-122.69318083610078,50.64177969785346],[-122.70413769571283,50.642616417578985],[-122.7074794487908,50.64552268079104],[-122.71028379240467,50.64997038276438],[-122.7164059735269,50.65264137226723],[-122.72154355440443,50.65309108966114],[-122.72729415030585,50.652905475015906],[-122.73284840318885,50.65054997554238],[-122.73850506267814,50.6504818809631],[-122.74346860761375,50.65235361755662],[-122.75237105599892,50.65559048315319],[-122.75993193112103,50.65642878853964],[-122.7670217151622,50.65515601010034],[-122.7740324111164,50.65359780040971],[-122.77886212433681,50.65084198192553],[-122.78092699685547,50.65009514815404],[-122.7856825394796,50.64836427600618],[-122.79240700124754,50.64543435601106],[-122.80130290633224,50.64540853604655],[-122.81748174686219,50.64633211444683],[-122.82467178756544,50.64739824387387],[-122.82539014981342,50.64785482984424],[-122.82879372087919,50.64618705107328],[-122.83254433054579,50.64240577837038],[-122.83333644071872,50.63920461781419],[-122.83554450277512,50.63519728697983],[-122.84198618845097,50.63117738449877],[-122.84826588245788,50.62864299299298],[-122.85623119625531,50.625475822306775],[-122.85772224594147,50.621359587287714],[-122.85745435302111,50.62033253634282],[-122.86165021954565,50.61699954250603],[-122.8741128578004,50.61484860228239],[-122.8833418596509,50.61298573288173],[-122.89472785145342,50.61020384997123],[-122.89801617804825,50.60704936837301],[-122.9030267051785,50.60394496646859],[-122.90248024090872,50.60366224547367],[-122.91117027645004,50.601972110063926],[-122.92516887630013,50.59980874969844],[-122.93339519340864,50.596803065251535],[-122.93578769448874,50.59324685535736],[-122.93818137648009,50.5904987767033],[-122.94407125410355,50.58687164120145],[-122.94361853653469,50.58687381923502],[-122.9418677056177,50.582254907194475],[-122.94047408177053,50.57654701519802],[-122.93949722929159,50.56866595259481],[-122.93982911010747,50.56586442401895],[-122.94267780855716,50.56242731982886],[-122.94307419151308,50.5582561991438],[-122.94300326097968,50.55076803397412],[-122.94594149480781,50.54870126298518],[-122.94747697978774,50.54898005328519],[-122.95324941690635,50.552843280239124],[-122.95821722165685,50.556706635029244],[-122.96148923933727,50.56057735820477],[-122.96546752474391,50.564044590135005],[-122.97221912511074,50.56601186179204],[-122.97607554376931,50.566683284752266],[-122.98155408339775,50.566144771988306],[-122.9848916948135,50.567387971217],[-122.98877184225735,50.570455409225346],[-122.99374716948668,50.57449081577109],[-122.99496520983027,50.57911635114277],[-122.99439945460189,50.593511590495716],[-122.99628341118579,50.60173028049362],[-122.996680009038,50.60447668491762],[-123.00543292537525,50.60072191049088],[-123.01768316961945,50.596892758352695],[-123.02362801686641,50.59811738837198],[-123.03020940388988,50.60020387535601],[-123.03588027388163,50.60194763872653],[-123.03758789239203,50.60222519161003],[-123.03994431917208,50.59673004506638],[-123.03836139792016,50.59091032663689],[-123.03764072678297,50.58274027186443],[-123.03957704462454,50.580391041644916],[-123.04476688266303,50.57887680106001],[-123.05114518074993,50.57907076766654],[-123.05916253749321,50.58166180656239],[-123.06357338159289,50.58340856864811],[-123.07135721009446,50.587653676440674],[-123.08046549623961,50.59178007108451],[-123.08424668026419,50.593012667162085],[-123.09012905981426,50.5965310194703],[-123.09449703781921,50.600732732831446],[-123.09457049956067,50.60616415469118],[-123.09388690063317,50.60907964723677],[-123.096430924484,50.61175061294383],[-123.09932584593572,50.61293533011162],[-123.10473497805145,50.61485125412139],[-123.11580253731435,50.61724457742275],[-123.12426477546641,50.61857154182437],[-123.13291114067295,50.620125109495106],[-123.13841924939769,50.621632236871555],[-123.14287185332776,50.62572322841341],[-123.14456590658975,50.63091545810623],[-123.14335854912896,50.635434836737545],[-123.14300040791153,50.63572402997191],[-123.15213777609524,50.63361202039032],[-123.16164145978915,50.63218515308167],[-123.16766586153591,50.63272507293829],[-123.17184775714294,50.6355525868535],[-123.17276955553314,50.63777637006099],[-123.17337810969572,50.641830149454385],[-123.17416955471941,50.647255047234744],[-123.17522121193059,50.651247510362815],[-123.18263115698309,50.65434956198502],[-123.18509492108124,50.65639018700938],[-123.18791947370165,50.659684410777736],[-123.18850184081833,50.662825373375355],[-123.18838942400897,50.666883196915954],[-123.1917497360299,50.669780038062484],[-123.19586162459376,50.67358004416397],[-123.19978577883977,50.678129158120704],[-123.19928857838738,50.68087484558909],[-123.19890741297259,50.68493929634749],[-123.20252577530287,50.686684204266584],[-123.20678561372475,50.6888293548851],[-123.2066815381109,50.69391710324491],[-123.20935366255219,50.69767361936468],[-123.21393028219933,50.703414269023725],[-123.21795815012388,50.70773358536318],[-123.2236219333309,50.71358452608106],[-123.23073436632173,50.71965531783838],[-123.2373437873085,50.72217985032765],[-123.24374287514917,50.72259982758247],[-123.25184824229333,50.722488398932576],[-123.26222889612413,50.72413561403633],[-123.27424749893451,50.72708253317814],[-123.28322163277599,50.73113667112746],[-123.28411886871571,50.730843889709945],[-123.29988347178467,50.72581947748415],[-123.3068951449093,50.72502871062462],[-123.318463820689,50.72843184363485],[-123.3245884411303,50.73347473801676],[-123.33154451159615,50.73982638156133],[-123.33402487840124,50.74249281855787],[-123.34018514168221,50.750104509438565],[-123.34084043841325,50.751018939827595],[-123.3336023844318,50.754842852359054],[-123.32491916444992,50.757650871207446],[-123.31765750624058,50.75993059592484],[-123.31391643297486,50.761957479429334],[-123.30900484226464,50.76479534463515],[-123.3101292376759,50.76758406583991],[-123.31478330657114,50.77046773068469],[-123.31933468703936,50.77317906335906],[-123.32187275112237,50.77418703032432],[-123.32555750203481,50.77358990806233],[-123.3387948316255,50.77304018674018],[-123.34899018100627,50.77422338417249],[-123.35802878343341,50.78010090878216],[-123.3627654338043,50.788406858378934],[-123.36455573937214,50.797081803376315],[-123.3755771002372,50.79397059445467],[-123.3877731589168,50.78993026588609],[-123.40175034224985,50.78599408937495],[-123.41516039227972,50.784458507082235],[-123.42341878534677,50.78753861738128],[-123.42753137292868,50.790363824915886],[-123.43661485925374,50.79395111894197],[-123.44591804935592,50.794957104947294],[-123.45210564667484,50.793307516526625],[-123.47185816194438,50.78937224808005],[-123.48066448220143,50.78809652844132],[-123.49781507454212,50.78463564886787],[-123.50999561817612,50.78138290835501],[-123.5224316807129,50.78939201447843],[-123.54258246159297,50.791499234039065],[-123.56504264538425,50.79243705485555],[-123.57747968468315,50.783859613359105],[-123.59240387559552,50.77857697480685],[-123.60431009902587,50.774974581771865],[-123.60886620854014,50.777389603025846],[-123.61352799341658,50.78369287781314],[-123.61875148050044,50.78746968383539],[-123.62346979906363,50.78873944421169],[-123.6348636373437,50.789999853090826],[-123.64824335064964,50.79158730870173],[-123.65206402942643,50.79320596227602],[-123.66323040186613,50.796409829575836],[-123.67877177717703,50.797450654567825],[-123.68466823142647,50.799335863428304],[-123.69310521618462,50.80485527778944],[-123.694544757432,50.81524481241226],[-123.69328926665857,50.829954271382],[-123.69357821102524,50.83069088693171],[-123.69900134098619,50.83109678056663],[-123.713818843894,50.83208554347996],[-123.7197805578779,50.832249261892194],[-123.71796883663396,50.83878541922383],[-123.71651847048076,50.84909441571455],[-123.71660066267242,50.85583921143249],[-123.71983076905026,50.86947024697695],[-123.72208834404536,50.873185564795556],[-123.72207387584295,50.873469432119414],[-123.72433583291445,50.87850335971254],[-123.72740823915733,50.88216205192268],[-123.73136758901481,50.88433863000838],[-123.73931971296032,50.88467844019241],[-123.74744829870713,50.88490723603936],[-123.74907060556149,50.88490782240891],[-123.75485698780588,50.88501994102562],[-123.76243325419564,50.885480868746065],[-123.76478435759057,50.88655936873921],[-123.76478785308981,50.894739150555516],[-123.76432822792853,50.898803529186374],[-123.7639720448351,50.90080005962185],[-123.763968400337,50.90400084881232],[-123.76406461846881,50.905491449404664],[-123.77752209165891,50.90857624912334],[-123.78619670555263,50.910229740776686],[-123.79071957897668,50.91205914231136],[-123.80662497963432,50.9114784695725],[-123.813302982463,50.91089965044195],[-123.81936903084151,50.91410113702231],[-123.8275934876016,50.91832565072078],[-123.83383573697783,50.92175263081372],[-123.8378225137443,50.92500888383088],[-123.83962525292638,50.9307278726212],[-123.84062790709602,50.934441951982784],[-123.84695332137161,50.93443995696843],[-123.85834808294405,50.93448505281553],[-123.86593899138457,50.93453252735847],[-123.86947359729723,50.93658854904306],[-123.87382536797912,50.939442103754175],[-123.87699828799879,50.94372523018924],[-123.87900346805445,50.94950333391833],[-123.88532374839511,50.947547845857926],[-123.88984842999554,50.94588504972316],[-123.89291723756895,50.943362058683036],[-123.89624236465546,50.93992798832311],[-123.90402310967235,50.93837839680277],[-123.91540928666842,50.9370991285095],[-123.92028811377465,50.936348524567684],[-123.92552463497506,50.93525451681699],[-123.93267373538372,50.93438304773564],[-123.94099386786029,50.93591223017454],[-123.94489591467999,50.93779848636789],[-123.9524998469395,50.94315983656207],[-123.96003205049784,50.94794772641249],[-123.97036801855488,50.954732398966954],[-123.97527088347175,50.95786801490397],[-123.98188646431566,50.9619140076917],[-123.9862306760413,50.963565781892676],[-123.99067128737052,50.96498328140762],[-123.9947538054329,50.96549363262791],[-123.9983086361717,50.963787884650564],[-123.99835239806687,50.96376564928804],[-123.99771466570334,50.96050734481203],[-123.99911841545969,50.95876488177187],[-123.99981479540835,50.95849206524224],[-124.02737937507496,50.937553681848925],[-124.03078116221049,50.9366538640399],[-124.03680328215833,50.93868464595095],[-124.03898906584216,50.94470638666277],[-124.04087902398027,50.950338842840324],[-124.05590223261225,50.97085877412662],[-124.05763898092883,50.973208698864276],[-124.06067668099105,50.97384396024804],[-124.06403918209236,50.97389634747737],[-124.06760615656486,50.97646851579144],[-124.06814370081261,50.97821259947198],[-124.06836771561048,50.9799535319537],[-124.06984813085728,50.9813303516599],[-124.07134763770422,50.98193830436804],[-124.07440304102282,50.98218159937648],[-124.08087929050177,50.98113754960013],[-124.08488798037344,50.98043398158634],[-124.08764412194121,50.98067181584182],[-124.09004758907771,50.981486916422924],[-124.09093267603595,50.982463124934874],[-124.09144639479173,50.98478661327623],[-124.09108344541913,50.98593586308376],[-124.09006368487108,50.98843428584908],[-124.08935999331463,50.99054394047651],[-124.08464650602008,50.993357278585634],[-124.08116885063525,50.99561438485762],[-124.07773892645567,51.0007253394263],[-124.07803958822961,51.001692753511854],[-124.07975886051426,51.003178456276956],[-124.08183035437298,51.0060961354172],[-124.08363054712143,51.007697675819955],[-124.0849039485546,51.00861146613917],[-124.08815282680632,51.01004277954308],[-124.09150135053846,51.01181758790473],[-124.09258422242716,51.01318840330197],[-124.0927528190278,51.015583418032406],[-124.09329176419796,51.018328852291916],[-124.09455830059605,51.01941474428977],[-124.09617510272557,51.01998725633648],[-124.09690041680346,51.0200472483414],[-124.10269466582528,51.02005253086527],[-124.11121472104928,51.02006122136955],[-124.11962986502408,51.02086413215758],[-124.12795445075224,51.02246995057627],[-124.13646944915384,51.02602014606013],[-124.14289239061122,51.02944980799342],[-124.14577112472642,51.03367906132495],[-124.1470371936604,51.038590692022034],[-124.14739198037748,51.04138771897591],[-124.14856288898007,51.044476610605756],[-124.15099345586893,51.0481857305366],[-124.15316191707953,51.04996047617776],[-124.15860851223118,51.051901699229624],[-124.16177482361557,51.05304307687298],[-124.1633936643262,51.05361572327356],[-124.16720507969684,51.05505208503595],[-124.17054867740771,51.057450747655444],[-124.17136250016452,51.06058795797782],[-124.17054530708427,51.063787359071654],[-124.16908941106236,51.06584015814982],[-124.16545066540536,51.069547643928075],[-124.16164158597826,51.07252133879198],[-124.16136564647562,51.07297490082091],[-124.15774799284856,51.07200244220666],[-124.15439490010154,51.07120035438402],[-124.1478604503799,51.070970673720154],[-124.14486952763828,51.07176853159196],[-124.143507529248,51.07393314518517],[-124.14359084111103,51.076730646409565],[-124.14403622370843,51.07941341947636],[-124.14385273521941,51.08141331495451],[-124.14357138412497,51.08336051417131],[-124.14384781343409,51.08461352221201],[-124.14438838804045,51.08501705706821],[-124.14746374797326,51.08633129273689],[-124.15262863549643,51.08827362972573],[-124.15789150926354,51.08993159947997],[-124.15834173816816,51.090105120456954],[-124.16441345144428,51.09364920776361],[-124.16766224515334,51.096333672510895],[-124.16974175835523,51.09964738292295],[-124.17046511827027,51.101873050550516],[-124.17155153961333,51.105702726392025],[-124.17309320505139,51.10889870283651],[-124.17480702753787,51.112783386629935],[-124.1755218593812,51.115924932552446],[-124.17679169874836,51.11844057572089],[-124.17877586452761,51.12237722802215],[-124.18049330798836,51.12654751861838],[-124.18049582029178,51.126835521167],[-124.17967746258049,51.12900191214069],[-124.17893717682989,51.13379933134314],[-124.17930664021779,51.136654536465024],[-124.1829311271503,51.13899866710647],[-124.18446988423148,51.13951291468298],[-124.18909301660607,51.14054147616305],[-124.19527067419193,51.141001988334935],[-124.2019969969093,51.141345175636744],[-124.20435589676246,51.14140296556879],[-124.21015766875317,51.14231918785255],[-124.21452229492942,51.14374729157153],[-124.21659903325913,51.14477645685914],[-124.22050680405188,51.14654453433848],[-124.22469062696483,51.147859359226565],[-124.22740437231751,51.14871760027237],[-124.2299482551726,51.149171785386486],[-124.23747884878566,51.15020293580942],[-124.24483821087469,51.15014256070315],[-124.2500141814717,51.149915946225114],[-124.25374666055356,51.14854193675932],[-124.25728833992575,51.145459082179705],[-124.2609995391881,51.14351646784111],[-124.26518412431574,51.143001655679],[-124.27081398922246,51.14248640603905],[-124.27770533412631,51.14191156741135],[-124.28452031247991,51.14145638747539],[-124.28896761069086,51.14042381701837],[-124.29359490107167,51.13768017933664],[-124.29586985378192,51.136192357024335],[-124.29895706487594,51.135160165630985],[-124.30294659213865,51.13447431579884],[-124.30476161459461,51.135278444028],[-124.30603357707201,51.13681753296084],[-124.30775485669899,51.13858393780491],[-124.31131116777772,51.14064104173134],[-124.31448247933349,51.142293193055885],[-124.3195657692517,51.144857776371154],[-124.3218371753369,51.14685889031835],[-124.32394019018224,51.14839719122681],[-124.32621018266249,51.14930649235558],[-124.32802416250411,51.1501652078677],[-124.33247057263546,51.15067555528522],[-124.33701222212584,51.15055625601306],[-124.34227436678918,51.14992257690956],[-124.34418062446248,51.14946675534477],[-124.35271970483353,51.147684000697886],[-124.3616110985545,51.146418171903214],[-124.36324087725154,51.14607644857415],[-124.36961004239576,51.14566859290309],[-124.37460405874984,51.14646583152189],[-124.37805544555056,51.14914450114258],[-124.37823775539155,51.15159874209531],[-124.37770436308912,51.15405391181685],[-124.37679958427069,51.15531104678099],[-124.37562468548235,51.156516007016684],[-124.37318453590628,51.159433100232626],[-124.37145879473806,51.16159937720684],[-124.36873387935572,51.164458375136064],[-124.36811140760776,51.16737074172144],[-124.36838695984007,51.16805440691773],[-124.36902051533244,51.17068576472747],[-124.37057489824272,51.1735908305702],[-124.37185267247327,51.176624329405435],[-124.37330915967398,51.17947572958226],[-124.37195388769092,51.18284445888212],[-124.3703320170793,51.18644617060112],[-124.37024782951785,51.189128274054035],[-124.37115890078827,51.190845363084186],[-124.37334579635592,51.19215203634311],[-124.37561356518617,51.192035957167],[-124.37680263619563,51.19203565337266],[-124.38016553660664,51.19174495443059],[-124.3850656363164,51.190940169362975],[-124.38889118408696,51.19013442959988],[-124.39078887335226,51.18915855533969],[-124.3945141827541,51.18715687370062],[-124.39731607280406,51.18572791238904],[-124.40032457680472,51.184522374039794],[-124.4064842280151,51.18091705626812],[-124.4093060070086,51.179310726225395],[-124.40929971890785,51.177887875241545],[-124.41309712122194,51.175822058724876],[-124.41415226211015,51.1683352370825],[-124.41864907212465,51.16107511592966],[-124.42532400486984,51.15249257045238],[-124.44136326126889,51.1493904249909],[-124.45586439823552,51.15959080789837],[-124.4727196688849,51.16315232131888],[-124.4949650312945,51.17039204172015],[-124.49503565969668,51.17042047959774],[-124.50993931533691,51.17260948024239],[-124.52275617730206,51.1742932753365],[-124.5351398902135,51.17654636241061],[-124.55405983507882,51.181294095442006],[-124.66792288856557,51.21303640219291],[-124.77208784980488,51.24185863850983],[-125.25440979974954,51.36863634127172],[-125.24518264877985,51.36160903726104],[-125.23620261896039,51.352928640505084],[-125.22780930965877,51.34048067672947],[-125.21479781503827,51.33512867114934],[-125.20848624488487,51.32728841796474],[-125.20419125953096,51.3200611280624],[-125.20473621185393,51.31371883301223],[-125.21480014937612,51.30424370560333],[-125.22024012104579,51.296222141996815],[-125.23475816223562,51.29270961395288],[-125.24395975386986,51.2876887042947],[-125.25904344332228,51.28525689817973],[-125.27526527597777,51.28070503829794],[-125.287168992978,51.27942958049995],[-125.28742183756363,51.27263543502105],[-125.2907439367393,51.264104907237645],[-125.30271545209709,51.26094301259391],[-125.3208050311718,51.254375622172155],[-125.32862234247591,51.24867341009343],[-125.33323738347438,51.24218927923524],[-125.3345835638869,51.23561671131426],[-125.33088367094187,51.22713183193511],[-125.32423421779458,51.22044152611263],[-125.33037987467897,51.21303447087091],[-125.34109871235741,51.21301780888122],[-125.33344681258473,51.206334426243416],[-125.32848540106981,51.19808695108481],[-125.31633183305563,51.193833698399],[-125.29899809982642,51.190351163400635],[-125.29262498493968,51.18314077394559],[-125.28874609856219,51.174088908976465],[-125.28109912910138,51.167114349949614],[-125.2923314741757,51.159337769704216],[-125.30061237667744,51.155174080689854],[-125.31227658428256,51.15235644277702],[-125.31951772836938,51.14580405209159],[-125.32747258487397,51.138269479229876],[-125.30767419043939,51.1373169364831],[-125.29478817124085,51.138024965820506],[-125.28383704564322,51.13404468889999],[-125.28106469203261,51.1250383489191],[-125.28431708272419,51.11845073739086],[-125.28553272348739,51.10954199740659],[-125.29360801757298,51.103380117089436],[-125.29232307384031,51.09699537825284],[-125.27378492814607,51.08917515390336],[-125.2652133489247,51.08557230045165],[-125.25515577767824,51.08632334282253],[-125.252296012367,51.0770890270262],[-125.2487370372786,51.069577821034216],[-125.24247771539771,51.06304612174434],[-125.23462619485802,51.05869922168834],[-125.24205861416662,51.05243363906017],[-125.2487756831385,51.04782732957269],[-125.2666185939475,51.04800337547658],[-125.27592230450506,51.04565768759568],[-125.28721079360776,51.04410840631086],[-125.29755439261112,51.04449221263908],[-125.31055141083581,51.04223961881496],[-125.31881409621339,51.03773007506113],[-125.32096710107368,51.031325561316855],[-125.31640392524763,51.02365071357683],[-125.3093493670787,51.01850102294929],[-125.30182297782684,51.0126126988723],[-125.29160862753722,51.0072541285057],[-125.28103876895375,51.00286662380631],[-125.26440925156535,51.00026040150671],[-125.26448018408477,50.99682605023095],[-125.26440759143144,50.994311757991994],[-125.25886523586773,50.987173855725345],[-125.25145142360539,50.97868456624442],[-125.25159256673413,50.9583823358218],[-125.22889347955883,50.956020178271906],[-125.2019284439777,50.95971076467535],[-125.19717187091881,50.95799079552734],[-125.19544326590335,50.954294770229204],[-125.19519555079529,50.951441132503085],[-125.19634010319982,50.94405107532707],[-125.197991121444,50.94174196334853],[-125.20193839045481,50.940036841183776],[-125.20605324271237,50.938501150577345],[-125.20799243161443,50.93676587702367],[-125.2091136073355,50.93457353071411],[-125.21070455854004,50.93318824059881],[-125.21864597941943,50.93263424210343],[-125.2227204604353,50.93252669930713],[-125.22432228241443,50.92884785753953],[-125.22469122073596,50.925640936218336],[-125.22617842786279,50.923623249836226],[-125.23150416481957,50.92355937103171],[-125.23822594832937,50.92428044143338],[-125.24288667331372,50.92313606820911],[-125.24699583246993,50.92091629549987],[-125.24870993169031,50.918034868424144],[-125.2495241137991,50.914481134951444],[-125.24924859722277,50.911395512382384],[-125.24855920079409,50.90922651947855],[-125.24678508343214,50.90724612883113],[-125.24286142315057,50.90615268050567],[-125.23703257500618,50.90496643546129],[-125.23279731164325,50.90215515462001],[-125.23015811772929,50.8984099787035],[-125.22849688570874,50.89408375466591],[-125.22802626853952,50.89003007000464],[-125.23045869391085,50.886741200050366],[-125.23808867577031,50.88476413942611],[-125.2449494155574,50.8811305453394],[-125.24493720209728,50.877643535635244],[-125.24376412724735,50.87468531236765],[-125.23908742964434,50.87205304620434],[-125.23449268007926,50.86964958919101],[-125.22799195470375,50.86978125733317],[-125.22594222923996,50.870721935553306],[-125.21856776700692,50.87527140428913],[-125.19441184413778,50.87726937366231],[-125.17681977219854,50.871811175036584],[-125.18025609351672,50.858902623651176],[-125.18292123504307,50.8569820973374],[-125.18484293469908,50.85450204921478],[-125.18687819417431,50.84967300724958],[-125.18741870298189,50.846521596807406],[-125.18695724565849,50.842977827560745],[-125.18681083028493,50.840868889460666],[-125.18353416982022,50.83975996300913],[-125.17857369842663,50.8398163103734],[-125.17243134180013,50.840002370051764],[-125.16812183120147,50.84096685021753],[-125.1648025321783,50.8414047022766],[-125.16083037985028,50.84179321540695],[-125.15575470465963,50.84116228254985],[-125.15166866132651,50.8333139552245],[-125.14810002882577,50.82821103569747],[-125.14842985526023,50.823569938988726],[-125.15145652842993,50.81827564925389],[-125.15818684319316,50.81688318928948],[-125.16113018918608,50.80912860209673],[-125.17633868436974,50.80375132134899],[-125.18553783082848,50.80072771527765],[-125.19168055344436,50.80100579029608],[-125.19482829029249,50.80045195547951],[-125.19823562604034,50.7996680396957],[-125.20164980380812,50.79928994004908],[-125.20883212431819,50.79777471446998],[-125.21257773387644,50.79629664619204],[-125.21349304997653,50.79348777568797],[-125.21511827660376,50.79066253085484],[-125.21878703767686,50.786219608312585],[-125.22174573872026,50.78257832534707],[-125.22180994671217,50.77806465276624],[-125.22423981155083,50.774598672600625],[-125.22859902893812,50.77277623750712],[-125.2379185172427,50.77043345730422],[-125.24430370523471,50.76704106814006],[-125.24961442160026,50.76337106501338],[-125.25302208754961,50.75978522612066],[-125.25794723063461,50.755320663917026],[-125.26460295649363,50.75163806948243],[-125.26970573917512,50.747459313612076],[-125.27275696837938,50.743818845573145],[-125.27450826794986,50.73899257807273],[-125.27699197995022,50.73443934673918],[-125.29187854638388,50.728994665349255],[-125.29208733546176,50.72384836258314],[-125.29199784458129,50.71784339880214],[-125.2931556805995,50.7145136318041],[-125.28658193455242,50.70818777836372],[-125.28926853188723,50.704951419821356],[-125.2964448146642,50.70085575025644],[-125.2992977176406,50.6968734773697],[-125.30271579005135,50.69385918939626],[-125.3066275140965,50.69186519300165],[-125.33336602337691,50.68626492901997],[-125.33092687054776,50.67983810093933],[-125.32798490582957,50.67489204319924],[-125.33032242356232,50.67194557319329],[-125.33366235380085,50.669158318729814],[-125.34537247559186,50.66700879553856],[-125.36186440905577,50.655985312480446],[-125.36046658024256,50.64879903208103],[-125.36542869507748,50.646105406223406],[-125.37275002438135,50.64463312675192],[-125.3748642326331,50.64317676450312],[-125.3747399271492,50.638890947475765],[-125.37813843978122,50.63558100791185],[-125.3872251613555,50.63311425226454],[-125.400619696212,50.629966483018464],[-125.40886883558701,50.62648168296741],[-125.41221611211532,50.62466279750479],[-125.41397377706654,50.62326611783075],[-125.41565015709389,50.61941027277189],[-125.41656397427,50.61436902787688],[-125.42114723280939,50.61418967855642],[-125.42593618532263,50.612291940453986],[-125.43374240362117,50.61213256978433],[-125.4342579971718,50.60823343028387],[-125.44789305104024,50.59958306331534],[-125.43996024239975,50.59305933023044],[-125.43885743811468,50.58969996277189],[-125.44225027499691,50.58616552469248],[-125.44718273145034,50.580320185389354],[-125.44690699293572,50.577465248661696],[-125.44583447184836,50.575077446453875],[-125.44443218651264,50.57309394739782],[-125.42620316022679,50.564761259075325],[-125.4259287967797,50.55858651738944],[-125.42082907092151,50.551052528560746],[-125.44641489718809,50.54280762780628],[-125.44007225919744,50.54089362834749],[-125.43633620080928,50.539398484877815],[-125.43202761816188,50.536312836711964],[-125.42736165137691,50.53363171995925],[-125.42317855442468,50.53185866814298],[-125.41902306765917,50.52796914669105],[-125.41902802462101,50.525395063125686],[-125.42657880261879,50.51751366279115],[-125.41523284614499,50.50468034238647],[-125.41178621970111,50.50615758359294],[-125.40873604304889,50.506427224887325],[-125.40254297222258,50.50331002379063],[-125.3990106211186,50.49637927012844],[-125.39701451228534,50.49274018247244],[-125.39269251480371,50.492227510008156],[-125.38730113661846,50.4915565951824],[-125.38519270105299,50.49003713764805],[-125.37960891151475,50.489030641491695],[-125.37409064495897,50.48738404800617],[-125.37157815103092,50.48455356659827],[-125.36417484084994,50.47967850440401],[-125.3393151592094,50.46381012012161],[-125.31686684884777,50.44985502429081],[-125.30546347478683,50.445708674586456],[-125.29910933919903,50.44579172020905],[-125.29363954880681,50.448771740574536],[-125.28734243452834,50.450567930410784],[-125.27893045007036,50.45067027894477],[-125.26885432592545,50.449139686408785],[-125.26079938335974,50.44637600409574],[-125.25118384201528,50.441797300168794],[-125.24467871447031,50.43661554730118],[-125.23560719214721,50.4292321255004],[-125.22654782844407,50.422133266037996],[-125.21797834269593,50.416173788292305],[-125.20937422779646,50.41232229819627],[-125.19838559128773,50.41047199100208],[-125.18981050333396,50.40907913136638],[-125.18180082699604,50.406025629348115],[-125.1774013923086,50.4041637983269],[-125.16914831933524,50.400663275150926],[-125.160472285647,50.397275176548646],[-125.15321463723335,50.39334961009296],[-125.14811315984684,50.38631111891224],[-125.1478097379114,50.381509933474035],[-125.14790875022527,50.374761698083645],[-125.14897171076181,50.36760180635426],[-125.14800210825133,50.36457870946568],[-125.14288286554968,50.36017608823967],[-125.13449742251186,50.35386214482817],[-125.12487895320092,50.348193804720964],[-125.12016111418657,50.34504238989067],[-125.11995915226605,50.345309274176216],[-125.11467296282461,50.340350608245096],[-125.10831939149038,50.33613404594153],[-125.10267712086521,50.33224470851213],[-125.08931634111991,50.3230634150889],[-125.07585784965555,50.31273923829022],[-125.0643693010396,50.303194438432165],[-125.05393644709818,50.296439043053965],[-125.04006618683799,50.28708562477807],[-125.03501675899082,50.28096132656114],[-125.0265517979605,50.273842181131926],[-125.0126291665174,50.2623121344719],[-125.00645148715755,50.25739635205207],[-125.0031594575528,50.25527073981298],[-125.00166580772502,50.25430111806823],[-124.99864738921458,50.25123853707671],[-124.99132628898289,50.24679064043783],[-124.97934178233173,50.23712967240334],[-124.97167182919165,50.22907829130429],[-124.9639291158771,50.2212626557629],[-124.95623744141818,50.21195189278005],[-124.94932089350777,50.20561084064118],[-124.9421566024747,50.19916128748139],[-124.93033827841667,50.188173804660714],[-124.92035674407397,50.17968672287064],[-124.91085575231152,50.17233601964823],[-124.89865639277448,50.15860462932877],[-124.88710551856437,50.146693507095094],[-124.87953169334904,50.13715096257827],[-124.87588954983711,50.12883407136619],[-124.87435888529549,50.118894482333936],[-124.87161173739617,50.10616033966782],[-124.86940539418842,50.09760301795057],[-124.86754930267386,50.0912934199069],[-124.86749822750666,50.09109903192159],[-124.86614341759145,50.085445759646674],[-124.86333718814335,50.07357161345582],[-124.86283876233911,50.06219534886659],[-124.86105688422012,50.04853988199309],[-124.85999929262667,50.0349927922842],[-124.85869434713591,50.02298938443552],[-124.85830894736674,50.01218219807871],[-124.85819159864973,50.00572169716722],[-124.85740815472968,50.00246590876188],[-124.85737605682162,50.000405372218545],[-124.85831640672328,49.99571701581407],[-124.8635638646137,49.98832012664997],[-124.8739429178801,49.974624632173885],[-124.88246386410493,49.960853422640504],[-124.89337496515779,49.94368169167384],[-124.89435748326568,49.93704912217991],[-124.89640657192966,49.92372785349895],[-124.89258290620486,49.9010604776211],[-124.8794624004956,49.8798178852306],[-124.84360777894467,49.83746230898465],[-124.82125974472328,49.81032089993528],[-124.80030687172598,49.79029449813117],[-124.78732570889623,49.78128272641043],[-124.78550381109564,49.779830118162685],[-124.78168362111893,49.776784539819076],[-124.74619197390928,49.75223537280125],[-124.71511471019251,49.72837199333778],[-124.67751917735802,49.70430926117986],[-124.63383790547314,49.68122979025696],[-124.59131948222404,49.65776505664209],[-124.5517807950956,49.638167089979966],[-124.51540951184454,49.619625516831114],[-124.4911646276783,49.60711086197482],[-124.46611616652906,49.59752354289299],[-124.44627591774979,49.58959758821449],[-124.41737648032523,49.578363734533816],[-124.39241839418914,49.5682453403214],[-124.35804880373438,49.55808542319792],[-124.32344950339066,49.550089235383524],[-124.30229518791089,49.54153143494938],[-124.27008027551634,49.533132286377025],[-124.23685744800484,49.523944251761534],[-124.22117144266582,49.51892892989595],[-124.18315414257538,49.504035137095045],[-124.15812531472385,49.49032391543544],[-124.11960787039664,49.472846431950856],[-124.0843032742771,49.45804944481162],[-124.04814010502469,49.4435420692261],[-124.02306001004446,49.433344981319074],[-124.00023291633309,49.42419205607542],[-123.86200795058586,49.34875907279831],[-123.52577513320652,49.15774249751906],[-123.52431234971202,49.156904447890106],[-123.31462061244859,49.00247496556385],[-122.43695033126275,49.00119241581397],[-122.09338539307937,48.99872556162368],[-122.09343726938906,48.998759012650325],[-121.26744165666047,48.99807311390355],[-121.01947224134005,49.000291265736806],[-121.06054086989715,49.10001075675777],[-121.06156202790714,49.1024840774002],[-121.0609464715397,49.10190502024723],[-121.06060755329605,49.101626325927654],[-121.0603311813085,49.101420435027975],[-121.06011449745297,49.10133037908408],[-121.05977043553563,49.101180886885246],[-121.0594014441052,49.10108861461584],[-121.05896764514523,49.101009440254046],[-121.05868364282988,49.10100454890732],[-121.0582884155766,49.100997922795074],[-121.05784831069057,49.101091040331355],[-121.05749372630497,49.10118582703481],[-121.05713531600311,49.10138111890554],[-121.05686437491609,49.10159199571432],[-121.05655294405659,49.10171612700158],[-121.05622058524129,49.101811373330065],[-121.0558813840017,49.10193872743308],[-121.05563838634104,49.102160760232884],[-121.05550049773171,49.10234532665443],[-121.05544834531632,49.102545688999044],[-121.05553830372833,49.10302162168912],[-121.05552448538072,49.10340959170602],[-121.05552718470015,49.10388404210284],[-121.05544796987994,49.104242208239114],[-121.05532795764125,49.10448428667145],[-121.05518601845284,49.104755243265984],[-121.05489296869203,49.104980321095674],[-121.05464731454595,49.10509817219856],[-121.05427331831396,49.105149470768254],[-121.05401152578519,49.10514503149961],[-121.05361796986313,49.10513846682388],[-121.05304836297522,49.10514325688889],[-121.05243428693407,49.10514711441765],[-121.05179849432432,49.10519396961596],[-121.05109194571942,49.10532582593408],[-121.05053939387264,49.10546025351143],[-121.04917864268818,49.10553797943629],[-121.0486258999532,49.10565801322621],[-121.04805378509755,49.105734566078404],[-121.0477632259269,49.105887556562905],[-121.04732168229714,49.10600960685427],[-121.04677295773398,49.10604351866379],[-121.0463349235678,49.106036013435585],[-121.04558656370361,49.10610949614036],[-121.04517112662408,49.106131229153426],[-121.04462239906312,49.10616512998711],[-121.0442913584837,49.106231353343084],[-121.04384809572142,49.10635331958427],[-121.04349347246946,49.106447780983366],[-121.04302967628394,49.106569355918936],[-121.04261133461661,49.10663436064849],[-121.04225670576011,49.106728826909745],[-121.04198952383845,49.10683915954883],[-121.0418943320796,49.107024562282014],[-121.04179564300256,49.107339237540046],[-121.04169584533595,49.10763214020432],[-121.04165662229528,49.10804826689362],[-121.04167111353618,49.10825000377809],[-121.04167773895435,49.10863806974916],[-121.04146026539793,49.10916637668917],[-121.04096375896034,49.10954615845253],[-121.04051390257384,49.10982601058679],[-121.0399978385487,49.11014791555707],[-121.03948583852686,49.110383436993075],[-121.03912593491306,49.11060736391489],[-121.03865552609474,49.110886819096514],[-121.03842601607647,49.111141871744266],[-121.03832055505677,49.111600048696495],[-121.03839368816477,49.111975114118344],[-121.03848756464143,49.112364664545105],[-121.03864932624917,49.11271251803243],[-121.03887478302974,49.11309009638488],[-121.03907683500162,49.11351031493198],[-121.03917221671357,49.11388583725526],[-121.03915251032635,49.1143598218493],[-121.03911613416497,49.114732922736295],[-121.03912929900467,49.1149630771461],[-121.03924809144635,49.11529597574156],[-121.03953896753859,49.11570336387917],[-121.03994948869745,49.11637148524774],[-121.04050244545684,49.11734398284769],[-121.0407287519724,49.118147978913456],[-121.04117278142724,49.11900066369867],[-121.04130219545073,49.119298510406246],[-121.04138198199783,49.11972406640972],[-121.04139902678074,49.12019127787716],[-121.04134850384618,49.12056852340127],[-121.04123368172424,49.12109845624695],[-121.04126081359176,49.121599701638175],[-121.04143649012326,49.1219783529736],[-121.04181019511755,49.12217241531325],[-121.04241705751333,49.12249567440392],[-121.04293139141657,49.12278617196524],[-121.04331871119723,49.12314215973924],[-121.04361813924854,49.12348619535658],[-121.04383540728048,49.12402186263158],[-121.0445079743587,49.125128698920456],[-121.04550630116285,49.12639747559278],[-121.04496981967684,49.12673256599905],[-121.04418878870607,49.12715761471],[-121.04359795889505,49.127648390173455],[-121.0432450844066,49.12814309152485],[-121.04283777619827,49.12876218359611],[-121.04258389676858,49.129164722288515],[-121.04229009232229,49.12937874129484],[-121.04166713395296,49.12943064563408],[-121.04038144881909,49.12940882739368],[-121.03923774831186,49.12935829194909],[-121.0380015336574,49.12927470412103],[-121.0372891457665,49.129184279350234],[-121.035454816604,49.128968143460256],[-121.03300680764232,49.128733194778064],[-121.03002367575573,49.128434520141155],[-121.0281741277379,49.128152688386606],[-121.02599408076738,49.12780222966208],[-121.02320077443535,49.12728513755263],[-121.0202113949663,49.12683784403789],[-121.01756666166419,49.12666364329594],[-121.0150797478266,49.12645720857353],[-121.01373904389291,49.12653317988419],[-121.01216578747281,49.12657070788527],[-121.01067782968683,49.12693197355102],[-121.00918283408213,49.12748634464],[-121.00838307095579,49.127794931226006],[-121.00708813328032,49.128322471281116],[-121.00583246364288,49.128707722959135],[-121.00507119775435,49.128928961327404],[-121.00418692511653,49.12930522451457],[-121.00331951770708,49.129540413184564],[-121.00241717462539,49.12946235437904],[-121.00145522030965,49.12906144269527],[-121.00082722280055,49.128792796565854],[-121.00015313271174,49.128442488760165],[-120.99999683343684,49.1283489169018],[-120.99945857171008,49.12802747585006],[-120.99873052115727,49.12750938450874],[-120.99821678573562,49.127135500186064],[-120.9975479786761,49.12668867830147],[-120.99717009947952,49.12631152868401],[-120.99688984270922,49.12591973710822],[-120.99673634995051,49.12546560502386],[-120.99647017663324,49.12475184637402],[-120.99629975019113,49.124136452536305],[-120.99607446571186,49.12360057949841],[-120.9959449233486,49.123163063285844],[-120.99571961737954,49.122659332196555],[-120.99558831334453,49.122254166299086],[-120.9955039852198,49.12193833677051],[-120.99512620837072,49.121544809120245],[-120.99442827169042,49.121210264585024],[-120.9931877210383,49.120882564943024],[-120.99226193853458,49.120721259627295],[-120.99160484497114,49.120580918976145],[-120.99023220638819,49.12049267176057],[-120.98925502157206,49.12037884810429],[-120.98866976112768,49.12028809866396],[-120.98796484246728,49.12009841419168],[-120.98696019540104,49.12003264286045],[-120.98646715487533,49.120088600033675],[-120.9856558422334,49.12009050693375],[-120.98503600059644,49.12024093713904],[-120.98470702780685,49.12047685026738],[-120.98444986714527,49.120762374729196],[-120.98421660186452,49.121064807108354],[-120.98396205833401,49.12131012202954],[-120.98345478769232,49.12170438089212],[-120.98270636263612,49.12198134688751],[-120.98188783977538,49.12219270152566],[-120.98131411801182,49.122392085057164],[-120.98076606831387,49.12257601475818],[-120.98029335399148,49.12274514179945],[-120.97977107404193,49.122880924526164],[-120.97913077562897,49.122950274010016],[-120.97848698945306,49.12305189098287],[-120.97789277131747,49.12320263155291],[-120.97724362572993,49.12343315025477],[-120.97667159782492,49.12361650772492],[-120.97609595816317,49.1238967164622],[-120.97574298616112,49.12411597780898],[-120.97548569822757,49.12441782930019],[-120.97529761095194,49.12479342527367],[-120.97519110725064,49.125017153729324],[-120.9750811131727,49.12527316206668],[-120.97491420373031,49.125785955042616],[-120.97481561577646,49.126380636799844],[-120.9747773568413,49.12671867530266],[-120.97481094338788,49.12710604465537],[-120.97494568148487,49.127398594779535],[-120.97513001629058,49.127724201378165],[-120.97530911436395,49.128114141869396],[-120.97544198808198,49.128503328051835],[-120.9753816278065,49.12876024869007],[-120.97532304979843,49.12898480950785],[-120.97550924172673,49.129229849228494],[-120.97589765438777,49.12934953574801],[-120.97641293364147,49.129358672928134],[-120.977119747731,49.129500008075404],[-120.97750639496377,49.12966783266209],[-120.97802418633367,49.13024111690889],[-120.97818286378231,49.130566364543895],[-120.97846128545069,49.13095811328435],[-120.97912820042662,49.13145319463952],[-120.9796806817846,49.131769195864514],[-120.98043796799381,49.132491834043954],[-120.98167775776282,49.133527753944016],[-120.98291060213384,49.13448549608935],[-120.9834303289723,49.13499425666632],[-120.98363696279439,49.13535246674964],[-120.98381425786047,49.135855383441196],[-120.98398987998134,49.136357941438995],[-120.9841494468331,49.1372635958345],[-120.98427356306587,49.13784609477102],[-120.98432411280173,49.13839498261265],[-120.98433023913476,49.138878635950576],[-120.9844286968819,49.1394605041112],[-120.98441621133856,49.13978281867698],[-120.98460068041662,49.140092331531065],[-120.98498214753917,49.140356881106854],[-120.98546646440698,49.140542762187806],[-120.98638550528005,49.14089725072555],[-120.98698021837947,49.14114129095053],[-120.98757156058589,49.141353017046704],[-120.98793085618095,49.14156887266174],[-120.98811539222243,49.141846227122215],[-120.98827420976582,49.142171175718495],[-120.98843825858825,49.14239991718939],[-120.9887647501085,49.142824611382565],[-120.988966136704,49.14331171272065],[-120.98907172757372,49.14373259512484],[-120.98905754847891,49.14407089974804],[-120.98904335075622,49.144425284380446],[-120.98895022811185,49.14489104755678],[-120.98893243059587,49.14535834552484],[-120.98908772072937,49.145747982384364],[-120.98937340179555,49.14599451855037],[-120.98968654907192,49.14616139650154],[-120.99002547985049,49.14628012212271],[-120.99064127141311,49.14683870619043],[-120.99111862011574,49.14718552785106],[-120.99162521940607,49.14743615019736],[-120.99210261436568,49.14775082492616],[-120.99260389536583,49.14814641857721],[-120.99305555492208,49.14850896222148],[-120.99336525292914,49.14873996318778],[-120.99389939978514,49.1489103505876],[-120.994705967681,49.14900486604337],[-120.99539094176949,49.149081315900254],[-120.9964441384494,49.14916417924004],[-120.99751191877284,49.149223174411894],[-120.9984184099691,49.149569063299055],[-120.99933418169046,49.15000420754212],[-120.99995716340669,49.15040175856317],[-121.00000015154588,49.150432806018884],[-121.00077002487379,49.1509962212188],[-121.00123010417852,49.151536490985336],[-121.00282880679944,49.152913639381424],[-121.00283559303246,49.152930315150535],[-121.00322820340408,49.15326863131667],[-121.00355187081193,49.15370554036257],[-121.00374564900186,49.154105667772754],[-121.00383467262772,49.154538439087716],[-121.00376240966203,49.15500291520283],[-121.00343021262134,49.155411041013295],[-121.0028105016568,49.1557798511585],[-121.00214592431477,49.15597540765718],[-121.00157420779888,49.15610534202125],[-121.00124217680653,49.156176761318235],[-121.00102621347986,49.15623806382942],[-121.00083040812883,49.15630340736227],[-121.00063460222789,49.15636875053259],[-121.00043720898995,49.15643289157367],[-121.00024011769412,49.15649422183515],[-121.00003835541594,49.15655111137085],[-120.99999951954509,49.156561153835675],[-120.99983375156243,49.156602508215784],[-120.99962777215367,49.15665073650124],[-120.99941864874214,49.156696282479665],[-120.99920982650472,49.156739026620116],[-120.9989978003939,49.15677964512532],[-120.99878601655388,49.15681800949842],[-120.99857438220918,49.156854981718645],[-120.9983613125637,49.156889342032656],[-120.99814567337879,49.156915686495466],[-120.99792713215986,49.1569371038424],[-120.99770859073973,49.15695852074521],[-120.9974930108156,49.156984307205455],[-120.99728161643507,49.15701903214635],[-120.99707724923712,49.15706817898887],[-120.99687981814925,49.15713259178754],[-120.99668995743001,49.15720638041168],[-120.99650482530285,49.15728406148731],[-120.9963322363455,49.15737274857042],[-120.99617700867735,49.15747550846557],[-120.99603316007257,49.15758414887896],[-120.99590389300066,49.1577008041489],[-120.99579433135132,49.157825703757915],[-120.99571466007177,49.15795989026584],[-120.99569402914172,49.15810360138991],[-120.9958132750525,49.15822335750509],[-120.99594148250634,49.158339587036494],[-120.99607152012493,49.15845476452165],[-120.99620500271332,49.15856983139184],[-120.99633848692919,49.158684889097394],[-120.99647026317459,49.15879987613583],[-120.9966020100893,49.15891514133817],[-120.99673193005916,49.15903144028462],[-120.99685828348731,49.15914898983033],[-120.99697927273549,49.15926854557114],[-120.99707871238721,49.15939697064716],[-120.9971674838327,49.159528842683095],[-120.99726332736235,49.159658796668566],[-120.99736618500161,49.159787371318444],[-120.99747077992592,49.1599157559227],[-120.99757363773954,49.16004433930266],[-120.99767122212488,49.1601740849409],[-120.99775831898756,49.16030559854657],[-120.99783142286984,49.160439556302556],[-120.99788873310422,49.16057674077006],[-120.9979337888042,49.16071616155045],[-120.99797177110698,49.16085751823405],[-120.99800100314792,49.16100044406763],[-120.99802496223744,49.16114452328051],[-120.99804199858684,49.16128913770855],[-120.99805558954161,49.16143387157707],[-120.99806573506966,49.161578724887256],[-120.9980742338044,49.16172293306181],[-120.99808108476326,49.16186650508029],[-120.99808278243722,49.162010117108615],[-120.99807758804707,49.162153977035814],[-120.99807062587941,49.16229831418538],[-120.99805853930206,49.16244242197771],[-120.99804477578746,49.16258616297889],[-120.9980275665912,49.16273002342081],[-120.99800867944909,49.162873526048806],[-120.99798814528941,49.163016383539315],[-120.99795226957961,49.163158256704676],[-120.99789095894945,49.16329724127287],[-120.99781293126044,49.1634320733105],[-120.99772480693453,49.16356502792802],[-120.99761850119104,49.16369148784594],[-120.99748931203138,49.163807299916236],[-120.99734990509143,49.16392235679404],[-120.99720073389702,49.16403244737379],[-120.99704078597313,49.16413103639786],[-120.99686737105988,49.16421123080656],[-120.99666351639803,49.16425532125008],[-120.99643999731126,49.164274817931215],[-120.99621824684475,49.16429382794664],[-120.99599892960515,49.164306182868515],[-120.99578218147497,49.164326552736924],[-120.99557176567421,49.16436780018116],[-120.99537152047662,49.16442616045397],[-120.9951771387031,49.1644938170646],[-120.99497527554983,49.164551253102815],[-120.9947691039927,49.164600881178636],[-120.99456146700726,49.164648175690715],[-120.99435391959727,49.164694634772225],[-120.9941462808036,49.16474193745598],[-120.99394010848484,49.16479155495204],[-120.99373692757412,49.16484526375955],[-120.99354745335576,49.16491512224633],[-120.9933699177979,49.165001607654496],[-120.99318014039106,49.16507426685486],[-120.99298257893969,49.165139515722956],[-120.99277927439996,49.16519434504136],[-120.99256957806583,49.16522885249422],[-120.99235007344396,49.16524288797659],[-120.99212803102257,49.16524862022229],[-120.99190879920664,49.1652601227957],[-120.99169607924917,49.165290824106854],[-120.99148879819812,49.16533475459316],[-120.99128274145832,49.16538324461441],[-120.99107796804323,49.16543574647314],[-120.99087459895473,49.16549113783294],[-120.99067275618397,49.16554828737983],[-120.99047082187974,49.165606280544715],[-120.99026888804059,49.16566426434731],[-120.99006701278047,49.16572170006349],[-120.98987258785293,49.16578962530845],[-120.98969381853465,49.16587153561413],[-120.98951474635975,49.16595624697469],[-120.98934055413709,49.16604345040291],[-120.98916776693234,49.16613353447294],[-120.989003064316,49.166228227159905],[-120.98884638622204,49.16632808517905],[-120.9886977026158,49.16643338690291],[-120.98855374780658,49.16654258149293],[-120.9884129969763,49.16665389240393],[-120.98827556930746,49.16676621526718],[-120.98814622723049,49.16688313792316],[-120.98804989332369,49.16701230997497],[-120.9879769247076,49.16714765123644],[-120.98791222317506,49.16728591340728],[-120.98785764695225,49.167425784399484],[-120.98781838302367,49.1675669194022],[-120.98779095258622,49.16770974285211],[-120.98777370978436,49.1678536005246],[-120.98776674483366,49.167997657406616],[-120.98776667188741,49.16814147596706],[-120.98776830790653,49.168285365113974],[-120.98777165096872,49.16842934280486],[-120.98777673306911,49.16857311274331],[-120.98778352321352,49.16871696224662],[-120.9877902823897,49.16886109903518],[-120.98779707261804,49.16900494847409],[-120.9878038628884,49.169148797880936],[-120.98780891415652,49.1692928549766],[-120.9878122884273,49.169436545126906],[-120.987813923664,49.169580442966385],[-120.98781385183021,49.16972425219944],[-120.98781033287533,49.16986818952538],[-120.98779998165783,49.17001180843431],[-120.98778618420349,49.17015554645587],[-120.98776726245174,49.17029904565375],[-120.98774663250737,49.17044246521955],[-120.98772261728526,49.17058543823854],[-120.98769518477374,49.17072826100367],[-120.9876643359107,49.170870924533894],[-120.98763007066505,49.17101342882636],[-120.98758735580097,49.17115469108769],[-120.98753789935172,49.171294790908966],[-120.98748002319293,49.171433370342875],[-120.98741702233876,49.17157171090979],[-120.98734727875969,49.17170889798551],[-120.98727088447829,49.17184407858836],[-120.98718789954005,49.1719766960311],[-120.98709316944709,49.17210678981546],[-120.98698007286129,49.172232084138024],[-120.98685077339606,49.17234843860702],[-120.986700599249,49.17245142131842],[-120.98652949127819,49.17254157988604],[-120.98634394863417,49.17262232133176],[-120.98615718192238,49.17269849352557],[-120.98597059589585,49.17277298638884],[-120.98578071414255,49.17284619734006],[-120.98559089287498,49.17291884229724],[-120.98540116118885,49.17299065190297],[-120.98521145994584,49.17306217385187],[-120.98502004994937,49.17313361581897],[-120.98482863936489,49.173205057438146],[-120.98463890533444,49.17327686567013],[-120.98444908052596,49.1733495085677],[-120.98426093226885,49.17342251808913],[-120.98407263308903,49.17349691895243],[-120.98388894186141,49.173576335050434],[-120.98371935013806,49.173668256628375],[-120.98356248432064,49.17376950648057],[-120.98343314099166,49.1738861438882],[-120.98335358793821,49.174018638957605],[-120.9832905412375,49.174157254899015],[-120.98323588290977,49.17429767874812],[-120.9831880571114,49.174438421215],[-120.98316911943094,49.174581918663904],[-120.98317586612963,49.174726045468624],[-120.9831946005578,49.17487045158815],[-120.9832099487027,49.1750144200007],[-120.9832065062879,49.17515751202735],[-120.9831791173577,49.17529977597308],[-120.98314831272673,49.17544187156368],[-120.9831140302768,49.17558437342234],[-120.98307465387477,49.17572634891453],[-120.9830335679951,49.17586825366875],[-120.98298909636488,49.176009711720035],[-120.98293955978187,49.176150374036034],[-120.98288666745528,49.17629031130524],[-120.98283047950869,49.17642896685484],[-120.98276757933273,49.17656618133012],[-120.98269293221256,49.17670088068901],[-120.98260650895112,49.17683333426388],[-120.98251505148197,49.176964704725044],[-120.98242194534221,49.177095438734064],[-120.98233045675705,49.1772270873195],[-120.98224570875585,49.177359907492594],[-120.98217771069943,49.17749660404404],[-120.98213326498968,49.17763778305614],[-120.9821126454674,49.17778091261978],[-120.98210566149513,49.17792496694585],[-120.98210380251865,49.17806926029673],[-120.98210874588577,49.17821415966986],[-120.9821068869073,49.178358452956985],[-120.98209313051474,49.178501622768025],[-120.98206070232281,49.178642802666836],[-120.9820128995522,49.17878325636495],[-120.98195487631044,49.17892295355188],[-120.98188846219347,49.179060851591295],[-120.9818103315811,49.17919594711196],[-120.9817240224767,49.17932727716467],[-120.98161937470812,49.17945352857592],[-120.98150471956357,49.17957704809729],[-120.98139009389647,49.17970028914099],[-120.98130214560082,49.17979911107812],[-120.98100039960984,49.18008084117265],[-120.98078814453302,49.18039240917764],[-120.98046077033861,49.18083170567831],[-120.98034023385512,49.18097779767745],[-120.97969231637678,49.18163421676278],[-120.97914014599883,49.18197672549869],[-120.97882219518866,49.18213812921255],[-120.9780454693285,49.182476929055255],[-120.97698338434085,49.182866126916046],[-120.97609409781552,49.183165810274964],[-120.97545874703526,49.18345141184049],[-120.97528014614083,49.183689527190445],[-120.97484662388739,49.18588602121798],[-120.97481529391482,49.18608025516645],[-120.9748070169801,49.18612498713888],[-120.97492319026334,49.186289175944076],[-120.97496364359768,49.18634379975484],[-120.97510754524917,49.18655326474476],[-120.97525784182565,49.18679885212249],[-120.97530790400972,49.18690749811345],[-120.97533710438587,49.18697089961281],[-120.97540917470982,49.187098340895695],[-120.97562377072097,49.18747974055849],[-120.97563996202673,49.18752054371175],[-120.97643630607209,49.18785832258207],[-120.97665065771506,49.18798818218831],[-120.97707477331295,49.18827445891267],[-120.97722080247642,49.18838504761492],[-120.97752664133984,49.18863760204511],[-120.97769866402912,49.18879367321182],[-120.97797119994792,49.18906836765925],[-120.97812929164535,49.18924211471402],[-120.97815380888801,49.189269481611475],[-120.97832539834091,49.189461345989436],[-120.97846979149575,49.189634741792034],[-120.97863428462395,49.18984460126543],[-120.97867275465552,49.18988587479043],[-120.9787450843273,49.1899634151034],[-120.97885243692417,49.19008234766165],[-120.97899803882527,49.19022872797358],[-120.97909067253828,49.19032497383006],[-120.97925466585056,49.190507746772155],[-120.97947331097183,49.19074099354712],[-120.97964636795456,49.190919387955255],[-120.97993147424708,49.191252746746116],[-120.98007100474157,49.19143944792368],[-120.98020461179841,49.191617408377425],[-120.98037575215623,49.19184534137025],[-120.98041083778713,49.19188617639919],[-120.98044808771664,49.19192288030835],[-120.9807272774361,49.19194577466568],[-120.98137576280125,49.191984195240416],[-120.98167625891989,49.192016535837205],[-120.98301336127027,49.192278248080505],[-120.98331148571357,49.19236433493389],[-120.98451729893218,49.19283985549455],[-120.98473195858597,49.192951374472926],[-120.98499124784105,49.19312672073372],[-120.98506154686734,49.19315961195917],[-120.98525339563702,49.193243835344845],[-120.98555206099294,49.19338859341946],[-120.98565939319896,49.19344435188739],[-120.98597990542078,49.19362538139585],[-120.98612765832758,49.19370445341615],[-120.98694671813,49.1942628690579],[-120.98713249496417,49.194419282353],[-120.98758776728053,49.194863463548735],[-120.98774494499942,49.195046173268246],[-120.98811728921464,49.19557446766722],[-120.98821963098112,49.195756039254555],[-120.98836888274279,49.19605991529297],[-120.98844376097107,49.19624133547078],[-120.98859272045924,49.196945612229875],[-120.98861008133547,49.19713478477684],[-120.98864181421017,49.197477185553396],[-120.98865171963782,49.197576335984735],[-120.98863174007694,49.197665919646205],[-120.9885521444824,49.197894007095144],[-120.98874199919902,49.19793330126481],[-120.98960683041527,49.19816418527729],[-120.98994494571052,49.19827805466781],[-120.99075405638419,49.19861151164429],[-120.99103613662847,49.198751247061516],[-120.99171625334859,49.199150040331425],[-120.99178343471277,49.199196027465945],[-120.99182460222255,49.19922839694929],[-120.99185990213978,49.199251470014076],[-120.99238256327057,49.199660969167205],[-120.99258311216437,49.19980819467421],[-120.99282145772975,49.20000313402182],[-120.99296042225521,49.2001161825895],[-120.99307908847892,49.2002263195867],[-120.99342734424792,49.200596685649074],[-120.99348450044192,49.20065601985564],[-120.99351074194139,49.20068346228507],[-120.99397350729244,49.20077266147599],[-120.99410779111699,49.20080175398904],[-120.99421386705019,49.20082163001217],[-120.99427928535624,49.200836231323564],[-120.9945367688165,49.20088570672715],[-120.99509342196586,49.20101226533027],[-120.99527030212217,49.20106052642327],[-120.99534087875665,49.20107508718025],[-120.99543370524951,49.201090402695726],[-120.99698861272564,49.20151770083731],[-120.99711361473523,49.20156918689073],[-120.99717510158774,49.20158840399581],[-120.99737532591087,49.20165917671722],[-120.99755372364751,49.20172527117764],[-120.99785925649394,49.20180714515295],[-120.99826013022864,49.201912911824294],[-120.99846671076573,49.2019884893441],[-120.99868699602492,49.202064423491294],[-120.99888329140707,49.202139810981954],[-120.99961692318665,49.202345905357035],[-120.99979506865083,49.202398449162985],[-120.99991685221676,49.2024320243657],[-121.00000098564614,49.202448339532594]]]}' - )), 4326)))); - -INSERT INTO region_lookup (region_name, org_unit, org_unit_name, feature_code, feature_name, object_id, geojson, geography) VALUES - ('Okanagan','8','8- Okanagan','AR10100000','WHSE Admin Boundary',9 - , '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-120.31931300329215,49.885021077824234],[-120.32457256366307,49.88933563251543],[-120.32587221816097,49.89019411621295],[-120.32704125879712,49.89077010191355],[-120.3287236673229,49.8913574809373],[-120.3314392041247,49.89211286285655],[-120.33577645424727,49.8931732157515],[-120.34159325435604,49.89436353800629],[-120.34705899351421,49.895431637736614],[-120.34895663269089,49.895763714274196],[-120.35146424699056,49.89614474524718],[-120.35405783500143,49.89647997583579],[-120.35673946949048,49.89676670195944],[-120.36033104150067,49.8971747101525],[-120.36299888356923,49.89746056722704],[-120.36525003389025,49.897743483120095],[-120.36623671154364,49.89776614055615],[-120.36766648969024,49.89766278214298],[-120.36960387893693,49.89747617685201],[-120.37138814956448,49.89710181057869],[-120.37471105279143,49.89607990775226],[-120.37933844964931,49.89458095930716],[-120.38350256015588,49.893299307269295],[-120.3877039107945,49.8918829984123],[-120.39140155086417,49.89050270125933],[-120.39333811293729,49.88994978037052],[-120.39455550410052,49.88969763650568],[-120.39768968674184,49.88950764949787],[-120.39986665197353,49.88946866817999],[-120.40339680222249,49.8897627736163],[-120.40592670628452,49.89023219957142],[-120.40825932649766,49.89051784885463],[-120.41076225258233,49.89076648654121],[-120.41304337074712,49.89083178444304],[-120.41518132177114,49.89054133822537],[-120.41811488957296,49.88969390639345],[-120.42199092385225,49.888714108153614],[-120.42413728328764,49.88793910078785],[-120.4259463067285,49.887225785466704],[-120.42816811836312,49.88693204025912],[-120.43181776835296,49.88674594412287],[-120.43386210112084,49.886619489196626],[-120.4359319682104,49.885925496578665],[-120.43847379637202,49.88509425458622],[-120.44137386224749,49.88411375265221],[-120.44370038983216,49.88354485180345],[-120.4458784902467,49.883277852574416],[-120.44737783731262,49.88315559757822],[-120.44954024160104,49.88330432707106],[-120.45290159427273,49.88380755941587],[-120.4555288198337,49.88445271238618],[-120.4579703666104,49.885162226744924],[-120.4627501543231,49.8868594072076],[-120.46745836649556,49.888977203258875],[-120.47066154668522,49.8905028647071],[-120.48087742640033,49.89524116627969],[-120.48224691408784,49.895935428175434],[-120.49270583116459,49.9013972291744],[-120.49340474068403,49.90173681424764],[-120.49810489743393,49.90398797841281],[-120.50126068748594,49.9052424840482],[-120.50293142398232,49.905845613363034],[-120.50416603244575,49.906302800564944],[-120.50525160830934,49.90670795037474],[-120.5068920956387,49.907360223364954],[-120.5089708930321,49.908271783954106],[-120.51081589601488,49.90918340820386],[-120.51283459068638,49.910160635902294],[-120.51469735513275,49.91120158180811],[-120.51648283086276,49.91233444707979],[-120.51746499813277,49.91302117407475],[-120.5185968357444,49.91394424438456],[-120.51981409996903,49.91504292175766],[-120.52044097672714,49.91562219806079],[-120.521153440284,49.91618659179849],[-120.52174673981159,49.91666779615001],[-120.52238368338489,49.91730899549681],[-120.52304938788018,49.918117911430336],[-120.5249735159075,49.92044120876846],[-120.5272357064423,49.92309136173153],[-120.52858039818358,49.92474696345543],[-120.53107334627839,49.927703894962185],[-120.53323709521813,49.93019056515101],[-120.53517282799726,49.932163025462145],[-120.53642536714328,49.93335338949142],[-120.53776990403931,49.934432226838204],[-120.5405979578013,49.93662662913913],[-120.54284397347321,49.938156161537385],[-120.54501199601485,49.93943374763669],[-120.54700282595572,49.940456157978076],[-120.54876200799377,49.94119645350406],[-120.55069172899256,49.94191308561907],[-120.55171106436237,49.942283391840256],[-120.55233916034203,49.942478668783686],[-120.55379035701188,49.94285974131788],[-120.55587182401659,49.943184217203566],[-120.55761330903493,49.94341622556562],[-120.55847264626219,49.943488813151696],[-120.55960451420563,49.943458275985165],[-120.56079695301624,49.943359163020546],[-120.56323076804001,49.94305792125243],[-120.56499091756915,49.942825766623194],[-120.56585132066355,49.942684178809564],[-120.56644702042908,49.94255087164698],[-120.56677221337613,49.94247458149581],[-120.56704191616214,49.94240962198641],[-120.56771085824539,49.94221850586602],[-120.56882676817813,49.941837648027],[-120.5690527941773,49.941787433928845],[-120.56979885324414,49.94169650385895],[-120.57066530929285,49.941665087545275],[-120.57156736769188,49.94173068361827],[-120.57251892222187,49.941879317068235],[-120.57337219159916,49.94203208716357],[-120.57480713019407,49.942448138361584],[-120.57634369659992,49.943008409322815],[-120.57753598332546,49.94351216031903],[-120.57851043106955,49.944115005498126],[-120.57977786174672,49.94492735146492],[-120.5812508370654,49.945979800640366],[-120.58257653357076,49.94696406919142],[-120.58347748526067,49.94762803218994],[-120.58437295141351,49.948367803853365],[-120.58646577401045,49.95012995533986],[-120.58874122301565,49.951885291258954],[-120.59081086160265,49.95340384860146],[-120.59180290340132,49.953964585414994],[-120.59265426098091,49.954341958762704],[-120.5933620139495,49.95458994146062],[-120.59392489211709,49.95471917763894],[-120.59475142567996,49.95487890158869],[-120.59549677694704,49.95498670338218],[-120.59586958726533,49.95503947728961],[-120.59646403999817,49.955123485529576],[-120.59739352540481,49.95519583327214],[-120.59860478098526,49.955219519959606],[-120.59942847632617,49.95521168054501],[-120.60024231415585,49.95515432223482],[-120.60122715200545,49.95502479329922],[-120.60208748473346,49.95489926253271],[-120.60280775022017,49.95477639766439],[-120.6033601616345,49.954654840935504],[-120.60511162696551,49.95414320067493],[-120.60661895476551,49.95373108749294],[-120.60778563643805,49.953407572414065],[-120.60920620620571,49.953049205570665],[-120.61018440321631,49.95282741467927],[-120.61124086475458,49.95266751065296],[-120.61242354764161,49.95250366323684],[-120.61308277784472,49.95245324895607],[-120.61372740051746,49.9524229688031],[-120.61441217850368,49.95240762661745],[-120.6150765439858,49.95247637074351],[-120.61572602639211,49.95255282790313],[-120.61630434062572,49.95265509644775],[-120.61686615228189,49.952808389712985],[-120.61731346454779,49.95299945045974],[-120.61771804236619,49.953197425612274],[-120.6180243119599,49.95339958410129],[-120.61820699863385,49.95358326902569],[-120.6183456253528,49.953785076431075],[-120.61843106015269,49.95396398091804],[-120.61848855907658,49.954127986718646],[-120.61850447734874,49.95431869525187],[-120.61854421591343,49.95454437932206],[-120.6185184190481,49.95470373219015],[-120.61848921801851,49.954921519503614],[-120.61822458927557,49.95590546489444],[-120.6180004816144,49.956531278381945],[-120.61796228708889,49.95706196483046],[-120.61789174348421,49.95786664810093],[-120.61785099505119,49.95827097903073],[-120.61781910665988,49.95911813741617],[-120.61777185935262,49.96037649916314],[-120.6177977680421,49.963382676666846],[-120.61784498143625,49.96469921585061],[-120.61781463420877,49.96514857103142],[-120.61745235068975,49.965923129928406],[-120.61706047216467,49.96653392846548],[-120.61650642927428,49.96708265380856],[-120.61601828942753,49.96748753212278],[-120.61546425689659,49.96800638015188],[-120.61496793679567,49.9685246906359],[-120.61480973758579,49.968784039048074],[-120.61464319230119,49.969173154011116],[-120.6145943006133,49.96986787418407],[-120.61455037258492,49.970890259112494],[-120.61455600675026,49.971404498563686],[-120.61463146730202,49.97191934819964],[-120.61467142138522,49.97203965888654],[-120.62109490102911,49.97331441910926],[-120.62590086802699,49.97440800897516],[-120.63116198280586,49.975674710857895],[-120.6402498439997,49.97792864081801],[-120.64565238970785,49.977878918879256],[-120.65041071315908,49.97629003278808],[-120.65249449104792,49.97044651363995],[-120.65235858941634,49.96421844871828],[-120.65228891750739,49.96159571864494],[-120.6516970527607,49.95091638993626],[-120.6539546786179,49.94500850589786],[-120.65465850864524,49.94448664363905],[-120.65842640761888,49.93879721953162],[-120.66213065074554,49.93447907872134],[-120.66248517408825,49.93407538820654],[-120.66745033002366,49.93031392628212],[-120.66962430596385,49.92892021960447],[-120.67173800405595,49.92804144038958],[-120.67372399630506,49.92179642851992],[-120.67469779768179,49.918477698283795],[-120.67772771938398,49.9152449031898],[-120.68041782159023,49.912648110330146],[-120.68137029752063,49.90435537486903],[-120.68232780629917,49.89949100387691],[-120.68674279127683,49.89573299867432],[-120.69695610164706,49.893346685747936],[-120.69881125966651,49.8927524706271],[-120.71181930966614,49.88959576669701],[-120.71767260283704,49.88953549589549],[-120.72557584725087,49.89105481960709],[-120.73592178905167,49.89414454153265],[-120.74370802401194,49.89766078725374],[-120.7472736830732,49.899054397501565],[-120.75448858519029,49.90063366922443],[-120.76344084509502,49.90094092921074],[-120.77084867491006,49.90023312137099],[-120.7744516143001,49.898992583596225],[-120.77845801228717,49.896662770012355],[-120.77833660345013,49.89186765155492],[-120.77672178474153,49.88720008780725],[-120.77643709255219,49.8828586176973],[-120.77641673721789,49.88206081839727],[-120.77699716816066,49.8804007806946],[-120.7773452262307,49.88016269433483],[-120.77958334535478,49.87791123490611],[-120.78447122479729,49.87517193822451],[-120.78762275773666,49.873710576528204],[-120.78956204509906,49.87346041182547],[-120.79607470675036,49.872363551931],[-120.80198862395156,49.87150043675765],[-120.80693926747922,49.86819009957265],[-120.81069467937309,49.86643447621576],[-120.823543704072,49.86748785692226],[-120.83190221430728,49.86916370004503],[-120.83853024767832,49.868633342306815],[-120.8464559662264,49.867228371627725],[-120.85110832928623,49.866035524025264],[-120.85842779202649,49.8618315900211],[-120.86418348062745,49.85565135778008],[-120.86652484468539,49.85379535089563],[-120.87040336176125,49.85004035841264],[-120.87076943275812,49.843921039050265],[-120.87072143745796,49.84260977448344],[-120.86833286230336,49.83595358115209],[-120.86412252176373,49.83051386677959],[-120.8628713067746,49.826644504546444],[-120.86320431745932,49.822811323013156],[-120.86879886942154,49.81714839743051],[-120.8711308860332,49.815232121492734],[-120.8757682035369,49.81026491709708],[-120.87785868343646,49.80589766007013],[-120.87850120399911,49.803889537557204],[-120.878913452035,49.80256993838353],[-120.8791248349677,49.79719700755026],[-120.87775653300882,49.792753544357026],[-120.87684144281218,49.79122791448258],[-120.87902812918084,49.787484978172415],[-120.88572963097421,49.78369170539509],[-120.8911492234701,49.77865459409305],[-120.8928526077516,49.77348947526115],[-120.89989326522182,49.76649627671958],[-120.9025322814999,49.76566109039895],[-120.91275816074425,49.762277828544654],[-120.9161598722897,49.76058244332816],[-120.91692649277623,49.75994193783825],[-120.91798296921704,49.756563168345615],[-120.91678942333164,49.7517754275848],[-120.91693807776241,49.75068626362955],[-120.91678620909299,49.74566188920105],[-120.916662610886,49.74126040307209],[-120.9166420496404,49.740693633749416],[-120.91763278719652,49.73827992203926],[-120.92365840862377,49.73283560819388],[-120.92784266135568,49.73095432396124],[-120.92990841948445,49.72949674832505],[-120.93153140614615,49.724624777028225],[-120.93169843456808,49.723994038253736],[-120.93308377439338,49.72026288994234],[-120.9381076928956,49.71705592641238],[-120.94425231811941,49.71577742741229],[-120.94747518654404,49.71465333433627],[-120.95287713675008,49.71241512324143],[-120.95662874589769,49.70774231830427],[-120.95774963818437,49.70121182460761],[-120.95822179492738,49.69931756883573],[-120.96365593751588,49.69524597495102],[-120.96959966112533,49.6932315807559],[-120.97198725360026,49.690456435630274],[-120.97309405070446,49.68643916727129],[-120.97254449402946,49.68587783704203],[-120.96716594833993,49.682749418312795],[-120.96314208922655,49.68056876947719],[-120.96044769025661,49.67905594288858],[-120.95644712272217,49.67767975523308],[-120.95645946111222,49.67516673932587],[-120.95713556636717,49.66812842446568],[-120.95812296798603,49.6628037176348],[-120.95798773825761,49.658347291940636],[-120.95787164073262,49.654348800062266],[-120.95984117044765,49.652209919971355],[-120.96461739823269,49.64408814079844],[-120.96720521886687,49.641997483574606],[-120.97086554724298,49.637838348533464],[-120.97565162006907,49.63314610440043],[-120.9806705525546,49.629995177895374],[-120.98056235334712,49.626795642633944],[-120.98061472997185,49.62542735832646],[-120.98213976709505,49.62060617968673],[-120.9840360401252,49.616065013650676],[-120.98578925217447,49.612958948834304],[-120.98923530550687,49.60462302344509],[-120.99402750551775,49.594731948428034],[-120.99698935183368,49.59349597508908],[-121.00855234916469,49.589114020381345],[-121.01706866235435,49.58597371769787],[-121.02332202493561,49.58337557861188],[-121.03026543497178,49.58002609326568],[-121.03298898911063,49.577128869287094],[-121.03491810304604,49.57144898729194],[-121.03445586659979,49.56533530788638],[-121.03526350894366,49.56298443122319],[-121.03849215747496,49.55384788973891],[-121.04172605044968,49.5504351974617],[-121.04653248649416,49.546428005514336],[-121.049052565124,49.543077207659906],[-121.04933854319324,49.540675059737644],[-121.04691091360677,49.53647640492935],[-121.04341273995534,49.53104084202562],[-121.04282953824654,49.52938720244584],[-121.04992811493861,49.5259200133847],[-121.05868497403287,49.52517148934149],[-121.06287267885915,49.524316087307916],[-121.07047543261179,49.520381622135844],[-121.07595052662165,49.51601863257202],[-121.07720491375231,49.51114141014743],[-121.07701888688614,49.50537298494325],[-121.07626628022409,49.50115420634152],[-121.07531047756902,49.4987090274193],[-121.0708946398546,49.494997487340285],[-121.06640127768509,49.491629137706276],[-121.06415281658185,49.49028666152302],[-121.0634131430796,49.488930013931416],[-121.06157700063332,49.48632191232089],[-121.06016976546738,49.483712744588374],[-121.05714261337938,49.47958011148062],[-121.05352781919466,49.476033818686865],[-121.05551985805373,49.475375333370486],[-121.06748875893382,49.473841285963296],[-121.0724704699186,49.47314160391747],[-121.07796704689962,49.47214887529383],[-121.08628728266564,49.46878013666306],[-121.08260046551523,49.46602691651898],[-121.08061099589474,49.46433682284394],[-121.08149256570967,49.46164212941789],[-121.08305815792625,49.45836265520301],[-121.0846675641615,49.454280746918904],[-121.0869279142646,49.44784532489817],[-121.08717386017275,49.44475671125216],[-121.08836481250543,49.4381094642819],[-121.0893643152362,49.43403750864246],[-121.08930047494935,49.432041337964456],[-121.08880232127024,49.430103801937186],[-121.08850271914947,49.426559953440496],[-121.08865248553957,49.42307537507329],[-121.08957329990291,49.418831222934685],[-121.0910955381556,49.416979147808476],[-121.09630791643318,49.41313505551956],[-121.09967729234386,49.411432269805594],[-121.100893690462,49.40855347565003],[-121.10030456823118,49.40656052070943],[-121.0966642534119,49.402498211438875],[-121.0961360188523,49.39993408564697],[-121.0976206139574,49.39699783145015],[-121.1029860123016,49.39480759860744],[-121.10933995810534,49.39357085906348],[-121.11260923873196,49.3917524004031],[-121.11523405267923,49.389371732873414],[-121.11442079938689,49.385841528827214],[-121.11123617483331,49.38216996625138],[-121.10372953710919,49.37776588504151],[-121.10186211310794,49.376644813468914],[-121.09298605861584,49.37294450217151],[-121.08979079188624,49.37173386447349],[-121.08050942468033,49.36900819467971],[-121.07688603016527,49.3681970939703],[-121.07564549056602,49.3679322513786],[-121.06997265225003,49.36577929217924],[-121.06701403613798,49.36365271300716],[-121.06351250455303,49.36067274679838],[-121.06356936582813,49.35975270602168],[-121.06515894070219,49.35739062719673],[-121.0693572073759,49.35486996630238],[-121.07200839333856,49.35289084489544],[-121.07016518892202,49.350006689592135],[-121.07041546277154,49.34959865357726],[-121.07363884222465,49.343667790678104],[-121.07808585317663,49.33788617980323],[-121.08314969162491,49.33484772678355],[-121.08082627927269,49.33064817069486],[-121.0773280976566,49.327781624553374],[-121.07189250624197,49.32745695027486],[-121.06606473331088,49.328743205366884],[-121.06625529474503,49.32902367017121],[-121.0573203425294,49.32869248062506],[-121.05165583103965,49.32677113940921],[-121.04285905366287,49.3223243464787],[-121.03893587018617,49.319978992057685],[-121.03466574230694,49.31534947656013],[-121.03012982499347,49.309867631447844],[-121.02563362837144,49.305724220142],[-121.02676896570878,49.30448280327939],[-121.02687569598282,49.30435465392038],[-121.02696541550358,49.30422459269254],[-121.02703641133762,49.30409254067904],[-121.02708351456113,49.30395853933583],[-121.02710678516063,49.30382203210766],[-121.02711304565207,49.30368361312949],[-121.02710575217002,49.30354316202463],[-121.02708484505358,49.30340123537476],[-121.02705543267682,49.30325835731511],[-121.02701754694142,49.303114231590975],[-121.02697109535788,49.302969720003055],[-121.02692293104542,49.302825129403644],[-121.02686959810096,49.30268058016146],[-121.02681617484399,49.30253687471805],[-121.02676269213053,49.302393725803576],[-121.02671251520066,49.30225185690897],[-121.02666390016968,49.302111476345864],[-121.02660134142211,49.301972699332744],[-121.02652832386434,49.3018351361703],[-121.02645007716183,49.30169817988411],[-121.02637005815942,49.301561701130844],[-121.0262934954553,49.30142510193753],[-121.02622384483678,49.301288261960806],[-121.02616976263879,49.30115072324084],[-121.02613473441886,49.30101208715921],[-121.02612053178247,49.30087188509678],[-121.02613055245385,49.30073053534606],[-121.02615785285522,49.30058857484516],[-121.02619726414298,49.30044604495896],[-121.02624361753605,49.30030298705395],[-121.02629342637616,49.300159808745356],[-121.02633977918651,49.30001675073758],[-121.02634453099152,49.300004564989976],[-121.02639244499659,49.29986299532085],[-121.02652382254836,49.299585428212545],[-121.0265935817883,49.2994488079844],[-121.0266633097606,49.299312474954846],[-121.0267330382872,49.299176132875154],[-121.02680450917362,49.29903959139034],[-121.02687423687482,49.29890324916353],[-121.0269439641661,49.298766906863825],[-121.02701372093722,49.29863028619636],[-121.02708344644387,49.298493952727895],[-121.02715320239358,49.29835733191427],[-121.02722295793232,49.29822071102764],[-121.02729100021615,49.298084011113076],[-121.02735904209885,49.297947311127395],[-121.02742540159737,49.29781024484561],[-121.02749347256868,49.297673266423836],[-121.02755814737544,49.29753585173414],[-121.0276245355822,49.29739850694979],[-121.0276892096175,49.29726109212485],[-121.02775391411805,49.297123389959985],[-121.02782030115469,49.29698604497013],[-121.0278850039183,49.29684835164711],[-121.02794799446737,49.2967105703348],[-121.02801101452474,49.29657251066138],[-121.02807403420691,49.296434450922504],[-121.02813537061618,49.29629603388045],[-121.02819496400382,49.29615781613014],[-121.02825290499231,49.29601895380866],[-121.0283091319057,49.29588002146532],[-121.028365389326,49.295740801790146],[-121.02841822090019,49.295601424181825],[-121.0284710820359,49.29546176822203],[-121.02852228986663,49.29532147667805],[-121.02857184536902,49.29518054057474],[-121.02861968783647,49.29503952548464],[-121.02866587800322,49.29489786583902],[-121.02870864147715,49.29475605725531],[-121.02874798021676,49.29461408178269],[-121.02878389232558,49.29447195737952],[-121.02881463717807,49.294329865460476],[-121.02884195547306,49.294187624618104],[-121.02886239293477,49.29404534631405],[-121.0288779331268,49.293900586852146],[-121.02888878714823,49.2937513801967],[-121.02888945463896,49.29360086503447],[-121.02887789343022,49.29345203268411],[-121.0288469195097,49.293307673579484],[-121.02879611382694,49.293171692850265],[-121.02871835314856,49.29304631533026],[-121.02860366336206,49.29292825745137],[-121.02845378722407,49.2928173197393],[-121.0282787608104,49.292716211049246],[-121.02808852750617,49.29262850210418],[-121.02789315198496,49.292556632543175],[-121.02769897470598,49.29250566715325],[-121.0274879021698,49.29248382069359],[-121.02726603881942,49.292482325667386],[-121.02703807255303,49.29248957961907],[-121.02681040797891,49.29249402318465],[-121.02658944703988,49.29248412398565],[-121.02635325471013,49.29247181688698],[-121.02611231511818,49.2924556365317],[-121.02589944598873,49.29241847529026],[-121.0257474642409,49.29234323474897],[-121.02563305472911,49.292222650963126],[-121.02554750006757,49.29207378819996],[-121.02550422324666,49.29191588657203],[-121.0255182409284,49.29176936938484],[-121.02559345606137,49.29164596455803],[-121.02569240514065,49.29152591870367],[-121.02581019321511,49.29140673253188],[-121.02594324261423,49.2912896664474],[-121.02608806925012,49.291175110063456],[-121.02624455060813,49.29106420345706],[-121.026407491055,49.290957248311166],[-121.02657331310634,49.29085550508618],[-121.02674366959887,49.29075960933156],[-121.02691333224024,49.29067016801499],[-121.02708768077153,49.290585164701966],[-121.02726677401924,49.290504051752215],[-121.02745067273136,49.290426263569614],[-121.02763772605361,49.2903511466288],[-121.02782796195488,49.2902784405705],[-121.028021501891,49.29020701422958],[-121.02821489088142,49.29013698800503],[-121.02840996196184,49.29006731866385],[-121.02860500161785,49.2899979362394],[-121.02879841969298,49.289927621671985],[-121.02899024412805,49.28985611462597],[-121.02918050575042,49.289783127832855],[-121.02936914577282,49.289709208921394],[-121.02955940619647,49.28963622144476],[-121.029749546551,49.28956434682256],[-121.02994139788409,49.289492559749185],[-121.03013321875817,49.28942105062685],[-121.03032338720567,49.28934889667177],[-121.03051364561338,49.289275898497735],[-121.03070228048544,49.28920198617938],[-121.03088938332641,49.28912630687069],[-121.03107495315916,49.28904886955636],[-121.03125565547973,49.28896867258001],[-121.03143491626695,49.28888586476835],[-121.03161111255758,49.288799532339446],[-121.03178253182313,49.28870959642219],[-121.0319507960293,49.28861697979841],[-121.03211587531315,49.28852196078225],[-121.03227942149798,49.28842518384271],[-121.03244134502285,49.28832748388787],[-121.03260329867817,49.28822949639786],[-121.03276525068642,49.28813151762796],[-121.0329271423155,49.28803409520262],[-121.03308744113436,49.28793547147487],[-121.0332445550099,49.28783444540806],[-121.03339689180737,49.287729815973584],[-121.03353937476874,49.28762078103913],[-121.03367218297929,49.28750567083361],[-121.03379360592427,49.28738438858163],[-121.03391181317373,49.287260991380855],[-121.03403326469214,49.28713943051328],[-121.03416099359893,49.287023517494696],[-121.03430491360379,49.286917091929304],[-121.03446499484602,49.28682043205888],[-121.03463988677557,49.286730083443565],[-121.03482426921252,49.28664751522533],[-121.0350162815589,49.28657403105764],[-121.03521412100027,49.286510395955936],[-121.03541769621924,49.28645746275287],[-121.0356224426054,49.2864096533374],[-121.03583190439086,49.28636601213634],[-121.03604271738709,49.28632581590568],[-121.03625500286769,49.28628793347305],[-121.03646881858695,49.286251826179935],[-121.03668422709971,49.28621691047975],[-121.03689792286738,49.28618191554426],[-121.03711339037501,49.28614644237914],[-121.03732555295693,49.286109688998856],[-121.03753795663738,49.28607068184354],[-121.0377486763994,49.28603132615233],[-121.0379610784035,49.28599232713794],[-121.03817348101227,49.28595331872627],[-121.03838416988859,49.28591424009158],[-121.03859657082239,49.28587523982092],[-121.0388073195711,49.285835594772124],[-121.03901978036981,49.28579602808025],[-121.03923061782187,49.28575554729046],[-121.03944148567444,49.285714778805506],[-121.03965235315643,49.285674009906344],[-121.03986318950194,49.285633527874545],[-121.0400757686485,49.28559283690091],[-121.04028507258589,49.28555058750862],[-121.04049455590658,49.28550665890639],[-121.04070265806666,49.28545955389602],[-121.04090769450407,49.285408933395146],[-121.04111152848567,49.28535346668156],[-121.04131082646967,49.285292143424265],[-121.04150717873148,49.28522618252833],[-121.04169890454894,49.2851552090207],[-121.04188594333621,49.285079788511105],[-121.04206676142111,49.28499817247226],[-121.04224304327923,49.2849107000021],[-121.04241298520205,49.284818145273505],[-121.04257319316707,49.28472006360336],[-121.04272537859086,49.284616542722006],[-121.04286957125922,49.28450730435555],[-121.04300565299711,49.284393452776406],[-121.04313350180568,49.284276128166695],[-121.0432415827726,49.28415056016054],[-121.04333491200472,49.28401811609614],[-121.04343142522193,49.28388807372536],[-121.04355086067221,49.283768945545454],[-121.04369640181889,49.28366314225748],[-121.04385326774748,49.28356406620786],[-121.04402004678333,49.283468828667736],[-121.04419004039404,49.28337570535305],[-121.0443583805477,49.283281946459624],[-121.04452353549436,49.28318578551967],[-121.04467895560862,49.28308410680575],[-121.04482301982266,49.282975978804494],[-121.04496392860982,49.28286517052802],[-121.0451096730568,49.28275740806938],[-121.0452668632568,49.2826552415275],[-121.04542898032506,49.28255526787286],[-121.04558607887272,49.282453944733014],[-121.04573007852147,49.28234638101045],[-121.0458527481628,49.28222909513384],[-121.04595736266458,49.2821036450049],[-121.04604878723552,49.281972807323676],[-121.04613366366966,49.28183883592542],[-121.04621523412592,49.28170359389101],[-121.04629500159041,49.28156911701127],[-121.04637639156628,49.28143555362174],[-121.04645615906291,49.28130106759098],[-121.04653250063289,49.28116643314815],[-121.04660890224184,49.28103123303113],[-121.04668359116317,49.280895954183],[-121.04675996212656,49.280761032211714],[-121.04683804487838,49.28062618880614],[-121.04691774916787,49.2804922678639],[-121.04700081696699,49.28035906971852],[-121.04708553699226,49.28022650674184],[-121.04717365120358,49.280094379264156],[-121.04726008246057,49.2799618947395],[-121.04734483077567,49.279829053171866],[-121.04742621467715,49.27969548864097],[-121.04750089906534,49.279560208955296],[-121.04756548936581,49.27942277854781],[-121.0476283978127,49.279284982152376],[-121.04769301806546,49.27914726432526],[-121.04776436666207,49.27901098317421],[-121.04784070066816,49.278876347341885],[-121.04792211122283,49.27874250393661],[-121.04800520371694,49.2786090173808],[-121.04808994742775,49.278476174957554],[-121.04817469065334,49.278343332441146],[-121.04825459732794,49.27820744393165],[-121.04835426904448,49.27807979770324],[-121.04848863608402,49.27796558118138],[-121.04863817176852,49.27785431647489],[-121.04880023409368,49.27775462432424],[-121.0489788800398,49.27767684046553],[-121.04918207170006,49.27762695998121],[-121.04940668349033,49.27760203344999],[-121.0496309387506,49.27759654105566],[-121.04984402489845,49.27761506566962],[-121.05005555598703,49.277664246642544],[-121.05025540558906,49.27772614394022],[-121.05044561688835,49.27779773889339],[-121.05062979168481,49.277877527842065],[-121.05081390860629,49.277957864109446],[-121.05099451076038,49.278038895775936],[-121.05117490446412,49.27812188427864],[-121.05135737060951,49.27820158439119],[-121.05154701494172,49.27827851911071],[-121.05174254629901,49.27834866859996],[-121.05194852292873,49.27838546544287],[-121.05216845790754,49.27838823178028],[-121.05239178403272,49.27837535618707],[-121.05261006272713,49.27836140953322],[-121.05282900092587,49.2783412857423],[-121.05304649617972,49.27831856020798],[-121.05326363171274,49.27829920089497],[-121.05348256837584,49.278279084755034],[-121.05370354772359,49.27825594938048],[-121.0539235633288,49.27822572338216],[-121.05409069668744,49.278142892493605],[-121.05424163165068,49.278034508633844],[-121.05437168628707,49.277912193643274],[-121.05446304916057,49.2777816263255],[-121.05452566557958,49.277646348328325],[-121.05457323090455,49.27750700585423],[-121.05461076375076,49.277364938760904],[-121.05464330951641,49.27722123551819],[-121.0546724902707,49.27707681856504],[-121.05470503564311,49.27693311524125],[-121.05474430847717,49.27679085716756],[-121.05477865561174,49.276646388369045],[-121.05480978726507,49.27649980532588],[-121.05484257139305,49.276353857385566],[-121.05488355635693,49.2762116686799],[-121.05494100252983,49.27607644185101],[-121.05502644582764,49.27595292811636],[-121.05520777443863,49.27586595614085],[-121.05561063509661,49.27583113893814],[-121.05563781838565,49.27583436121355],[-121.05566503138178,49.27583730516977],[-121.0556922750427,49.27583996182914],[-121.05571951870677,49.275842618481526],[-121.0557485041481,49.27584507532123],[-121.05577580722372,49.27584717533498],[-121.0558030805993,49.275849553654005],[-121.05583209575173,49.2758517321589],[-121.05585939979319,49.275853823173634],[-121.05588670287896,49.27585592315927],[-121.05591571803932,49.27585810164172],[-121.05594299142847,49.27586047992538],[-121.05597026482046,49.27586285820214],[-121.05599753821522,49.27586523647209],[-121.0560264939842,49.275867971549346],[-121.0560537070247,49.27587091540754],[-121.05608089132589,49.27587412859338],[-121.05610804497206,49.27587762906259],[-121.05613345589038,49.27588133831476],[-121.05616055014396,49.27588539539539],[-121.05618590167023,49.275889661260024],[-121.05621287617487,49.27589484055473],[-121.05623813765325,49.275899950321964],[-121.05626331003783,49.275905895020365],[-121.05628845177118,49.27591212700302],[-121.05631353411228,49.275918915604585],[-121.05633681528735,49.27592646064046],[-121.05636000545624,49.27593485856403],[-121.05638310653622,49.27594409141974],[-121.05640440549404,49.275954089689456],[-121.05642735618217,49.275964732053076],[-121.05644853540608,49.27597585254118],[-121.05646794316515,49.27598745115483],[-121.05648903235564,49.275999415549734],[-121.05651009185864,49.27601165825266],[-121.056529379897,49.27602437908202],[-121.05655037906764,49.276037187379266],[-121.05656963647161,49.27605019549125],[-121.05658886418841,49.27606348191191],[-121.05660983465337,49.27607655953138],[-121.05662909209032,49.276089567631985],[-121.056650091318,49.276102375908565],[-121.05666937943245,49.27611509671129],[-121.05669040933817,49.27612761768931],[-121.05671149864973,49.27613958203816],[-121.0567326176693,49.27615126807027],[-121.05675376735451,49.27616266680793],[-121.0567767191839,49.276173300116014],[-121.05679798767699,49.27618358559495],[-121.05682093952687,49.276194218893394],[-121.05684392108374,49.276204573874466],[-121.05686518960609,49.276214859339625],[-121.05688820087931,49.27622493599845],[-121.05691118246641,49.27623529096467],[-121.05693419375976,49.276245367613434],[-121.05695720506311,49.2762554442571],[-121.05698024607219,49.276265242583264],[-121.05700325739538,49.27627531921686],[-121.05702632907739,49.27628483024269],[-121.05704937011564,49.27629462855366],[-121.0570724418167,49.27630413956937],[-121.05709725435527,49.276313459730375],[-121.05712032607552,49.27632297073556],[-121.05714345719481,49.27633192511076],[-121.05716830041501,49.27634095796479],[-121.05719143155254,49.27634991232947],[-121.05721630448606,49.27635866685976],[-121.05723946533588,49.276367342901466],[-121.05726436893981,49.2763758101301],[-121.05728930224676,49.27638399904046],[-121.05731252251049,49.27639211844128],[-121.05733748552836,49.27640002902783],[-121.05736244855476,49.27640793960852],[-121.05738744224087,49.27641556289308],[-121.05741246467056,49.2764229168371],[-121.05743748806606,49.27643026179734],[-121.05746254020455,49.27643733741704],[-121.05748759330855,49.27644440405308],[-121.05751264642014,49.2764514706833],[-121.05753947102133,49.27645805916046],[-121.05756455384056,49.276464847465924],[-121.05758969700933,49.27647107016264],[-121.05761652163281,49.27647765862052],[-121.05764169450738,49.27648360299239],[-121.05766857852895,49.2764896348122],[-121.05769375141669,49.27649557917194],[-121.05772066610118,49.27650132368825],[-121.05774758079234,49.276507068197795],[-121.05777281308188,49.27651245591384],[-121.05779978812565,49.276517634807405],[-121.05782505011786,49.276522744198616],[-121.05785202517343,49.27652792307913],[-121.05787902992554,49.27653282364016],[-121.05790435227318,49.27653736740969],[-121.05793135607856,49.27654227693544],[-121.05795839053742,49.276546899164025],[-121.05798713710286,49.27655159985662],[-121.05801420222014,49.27655593478076],[-121.05804300817589,49.27656007883319],[-121.05807016237146,49.27656357880541],[-121.05809908900919,49.2765665916368],[-121.05812639261573,49.276568691053946],[-121.05815375656017,49.27657022486108],[-121.05818120957258,49.27657092372343],[-121.05820875260915,49.276570778662936],[-121.05823473390059,49.276569145609706],[-121.05826083394314,49.276566399299575],[-121.05828705465025,49.276562521776654],[-121.05831168200267,49.2765574525311],[-121.0583381124301,49.27655160885142],[-121.05836469128887,49.27654437360176],[-121.05838961837058,49.27653649427771],[-121.05841637725162,49.276527571183266],[-121.05844148435351,49.27651800401503],[-121.05846496840557,49.27650752343943],[-121.05848854246516,49.27649619894244],[-121.0585104944313,49.27648395206144],[-121.05853250575895,49.27647114855023],[-121.05855115320755,49.27645762250705],[-121.0585681479197,49.27644346137331],[-121.05858174811237,49.27642886500086],[-121.05859540862636,49.276413703023],[-121.0586073876785,49.276398175291355],[-121.05861936576503,49.276382656535866],[-121.05863137352941,49.276366859465845],[-121.05864338224323,49.27635105341626],[-121.05865538999127,49.27633525634278],[-121.05866571628063,49.27631909351682],[-121.05867775465595,49.27630300914942],[-121.05868808093034,49.27628684632051],[-121.05869843688295,49.2762704051773],[-121.05870879282823,49.276253964032726],[-121.05871917845143,49.27623724457382],[-121.05872956406716,49.27622052511346],[-121.05873994967538,49.276203805651754],[-121.05875033623373,49.27618707721078],[-121.05875903942356,49.27617000097458],[-121.05876945565237,49.27615299421786],[-121.05877815882879,49.276135917979275],[-121.05878686295638,49.27611883276167],[-121.05879727820592,49.276101834978874],[-121.05880601200472,49.276084471445856],[-121.05881474579701,49.276067107911636],[-121.05882344894064,49.27605003166719],[-121.0588321827199,49.27603266813071],[-121.05884091649263,49.276015304593045],[-121.05884964930127,49.27599795003208],[-121.0588584127452,49.275980308179015],[-121.0588654344173,49.2759628661809],[-121.05887416816445,49.27594550263873],[-121.05888290190506,49.27592813909544],[-121.05889166532317,49.275910497237824],[-121.05889868601467,49.275893064213584],[-121.05890741973626,49.27587570066688],[-121.05891615345126,49.27585833711906],[-121.05892317508324,49.27584089511395],[-121.05893190782827,49.275823540541765],[-121.05894064152433,49.2758061769906],[-121.05894766313918,49.27578873498259],[-121.0589563661817,49.27577165872018],[-121.05896509985884,49.27575429516572],[-121.05897209177321,49.27573713146792],[-121.05898079479707,49.27572005520223],[-121.05898778670047,49.275702891502604],[-121.05899480732447,49.27568545846652],[-121.0590018289007,49.27566801645185],[-121.05900713840201,49.27565049598144],[-121.05901247758244,49.27563269719706],[-121.05901778707566,49.27561517672517],[-121.05902141418022,49.2755972994848],[-121.05902504128201,49.27557942224381],[-121.05903038044737,49.27556162345662],[-121.0590340075429,49.27554374621434],[-121.05903763463563,49.27552586897146],[-121.05904126172555,49.27550799172798],[-121.0590466008765,49.27549019293806],[-121.05905022796018,49.27547231569335],[-121.05905898448695,49.275438605805185],[-121.05929112696613,49.274552429113186],[-121.0595742021299,49.27367252746272],[-121.0589099835482,49.27283521100765],[-121.05803150938073,49.272410106479875],[-121.05697163847529,49.2720406870083],[-121.05539163493431,49.27119348833614],[-121.05561893908417,49.26996622693765],[-121.05636075249338,49.26933375777639],[-121.05720244304247,49.268409838592234],[-121.0576261711687,49.266775732173656],[-121.05877365900069,49.264919083484656],[-121.06016491741688,49.263711322893066],[-121.06182112248268,49.262566720373336],[-121.06326917714962,49.26218054829969],[-121.06488410515553,49.26214905087893],[-121.06578806786078,49.26192964858336],[-121.06714784727824,49.261483558415186],[-121.06787882311001,49.26114400910145],[-121.06852828230006,49.260632982532904],[-121.0690501901064,49.25980119155249],[-121.0695620491596,49.25896668272533],[-121.07008061524623,49.25813361479471],[-121.07057234829175,49.25729394892148],[-121.07100529853491,49.25644088327928],[-121.07137598694871,49.255574818651354],[-121.0716976595287,49.25470059247331],[-121.07190397877605,49.25352026341915],[-121.07190594805542,49.253501741266035],[-121.07190785719534,49.2534837847429],[-121.07190976633377,49.25346582821921],[-121.07191170506236,49.25344759336882],[-121.07191361419784,49.25342963684415],[-121.07191726419471,49.25341148024545],[-121.07191920291807,49.25339324539354],[-121.0719228233184,49.25337536711977],[-121.07192476299262,49.25335712328848],[-121.07192841297945,49.25333896668747],[-121.07193206296338,49.25332081008587],[-121.07193571294451,49.25330265348357],[-121.07193765261064,49.253284409650014],[-121.07194130258667,49.25326625304655],[-121.07194495255987,49.2532480964425],[-121.07194860253023,49.25322993983778],[-121.07195054218825,49.25321169600196],[-121.07195419215353,49.253193539396094],[-121.07195784211598,49.253175382789536],[-121.07195978081354,49.2531571479303],[-121.07196340117983,49.2531392696489],[-121.07196534082827,49.25312102581033],[-121.07196724992956,49.253103069275774],[-121.0719691886204,49.25308483441439],[-121.07197109771873,49.25306687787882],[-121.07197300681557,49.253048921342604],[-121.07197317506258,49.2530311648804],[-121.07197508415715,49.25301320834325],[-121.07197528199416,49.2529951735537],[-121.07197544928556,49.2529774260683],[-121.07197390627661,49.252959591352315],[-121.07197404493202,49.25294211321402],[-121.07197250097025,49.25292428747527],[-121.07197092837328,49.2529067310842],[-121.0719676435708,49.25288910541879],[-121.07196607097688,49.25287154902667],[-121.07196275658782,49.25285420168666],[-121.07195773095104,49.25283677609386],[-121.07195441752212,49.25281941977442],[-121.07194939189222,49.252801994180345],[-121.0719443662661,49.25278456858562],[-121.07193934064375,49.25276714299013],[-121.07193260473278,49.2527496301632],[-121.07192757911861,49.25273220456638],[-121.07192087185368,49.252714422389516],[-121.07191413595733,49.252696909560015],[-121.07190742870264,49.25267912738147],[-121.07190069186191,49.25266162352837],[-121.07189395598083,49.2526441106962],[-121.07188724874152,49.252626328514985],[-121.07187880067438,49.252608746405805],[-121.07187035356823,49.25259115531734],[-121.07186361675424,49.25257365145969],[-121.07185513911429,49.25255634767379],[-121.07184497983302,49.252538687306384],[-121.07183650220638,49.2525213835181],[-121.07182802458607,49.25250407972872],[-121.071817835735,49.25248669768384],[-121.07180764689156,49.25246931563752],[-121.07179742846411,49.252452211916264],[-121.07178721004418,49.25243510819369],[-121.07177696108543,49.25241829177441],[-121.07176503144666,49.25240110979366],[-121.07175475291159,49.25238457169804],[-121.0717427936978,49.2523676680405],[-121.07173080394611,49.252351051686055],[-121.07171878461095,49.25233471365646],[-121.07170676528429,49.25231837562507],[-121.0716930051438,49.25230223766198],[-121.07168095528775,49.25228618693181],[-121.07166716557347,49.25227032729132],[-121.071653374914,49.25225447662691],[-121.07163952507901,49.25223918261353],[-121.07162570580032,49.252223601293146],[-121.07161011420996,49.252208516322646],[-121.07159623481023,49.25219350062917],[-121.07158061460139,49.25217868500194],[-121.07156499344791,49.25216387835043],[-121.07154931311851,49.25214962834947],[-121.07153363279869,49.25213537834599],[-121.07151624126544,49.252121050080575],[-121.07150053137222,49.25210707839824],[-121.07148311026646,49.25209302845352],[-121.07146739943808,49.25207906574395],[-121.07144994875937,49.2520652941199],[-121.07143249713636,49.25205153147098],[-121.07141678729187,49.252037559774955],[-121.07139933664376,49.2520237881418],[-121.07138188505137,49.25201002548388],[-121.07136440387536,49.25199654114935],[-121.07134695325823,49.25198276950691],[-121.07132947210259,49.251969285166226],[-121.07131199095714,49.25195580082244],[-121.07129451077653,49.251942307497245],[-121.0712753184358,49.25192874488415],[-121.07125780772678,49.251915538857354],[-121.07124032662237,49.25190205450091],[-121.07122110471937,49.25188877020389],[-121.07120359404085,49.25187556416748],[-121.07118437215932,49.25186227986348],[-121.07116686150123,49.251849073820544],[-121.07114763964118,49.251835789509464],[-121.07113009940828,49.251822861786735],[-121.07111087756961,49.25180957746853],[-121.07109162614643,49.251796571473264],[-121.07107237377936,49.251783574452595],[-121.07105483358714,49.251770646716544],[-121.07103558219582,49.25175764071051],[-121.0710163308153,49.25174463470081],[-121.07099707849082,49.25173163766563],[-121.07097782713187,49.25171863164857],[-121.07095854618747,49.25170590395442],[-121.07093929389524,49.25169290690818],[-121.07092001297208,49.251680179206694],[-121.07090073110479,49.25166746047965],[-121.07088145020278,49.25165473277075],[-121.0708621989081,49.25164172673146],[-121.07084120586877,49.251628929723445],[-121.07082192499911,49.25161620200306],[-121.07080261358814,49.25160376158393],[-121.07078333178474,49.251591042834534],[-121.07076233974483,49.2515782368319],[-121.07074305796306,49.25156551807476],[-121.07072374754908,49.25155306866229],[-121.07070446578832,49.251540349897844],[-121.0706834432406,49.251527831183736],[-121.07066416245615,49.25151510343332],[-121.07064485112952,49.251502662984066],[-121.07062385916777,49.25148985695275],[-121.07060454786244,49.25147741649582],[-121.07058352537014,49.251464897761075],[-121.0705642446392,49.251452169991545],[-121.07054493336554,49.251439729523284],[-121.07052391090636,49.251427210776185],[-121.07050463020742,49.251414482995294],[-121.07048360777057,49.25140196423994],[-121.07046429653937,49.25138952375624],[-121.07044498531855,49.25137708326891],[-121.0704239934687,49.25136427719623],[-121.07040468226916,49.251351836701204],[-121.07038365988761,49.25133931792514],[-121.07036437926362,49.25132659011752],[-121.07034506809572,49.25131414961109],[-121.07032404574733,49.25130163082276],[-121.07030473555544,49.2512891813303],[-121.0702837428292,49.25127638420698],[-121.07026443170379,49.2512639436852],[-121.07024515114381,49.25125121585485],[-121.07022412885081,49.2512386970458],[-121.07020484831234,49.25122596920768],[-121.07018553722904,49.25121352867084],[-121.07016454456985,49.251200731522935],[-121.07014526406348,49.25118800367349],[-121.07012595301195,49.25117556312522],[-121.07010667252659,49.25116283526845],[-121.0700856799121,49.25115003810417],[-121.0700663994484,49.25113731023962],[-121.07004711804036,49.25112459134974],[-121.0700278375978,49.25111186347789],[-121.07000855621091,49.251099144580635],[-121.0699892757895,49.25108641670133],[-121.06997002402548,49.25107341947005],[-121.0699507436253,49.25106069158342],[-121.06993149283764,49.25104768536643],[-121.06991221150379,49.251034966450796],[-121.0698816690598,49.25101495684861],[-121.06896769162562,49.25034470427772],[-121.0680777466793,49.24965890542517],[-121.06722230891847,49.24895607353783],[-121.06644495262029,49.24821451257681],[-121.06582704144542,49.247412859603735],[-121.06537409949004,49.246563775727026],[-121.06503522417556,49.24569313488278],[-121.06489823627692,49.24479959261329],[-121.06499708083915,49.24390332650994],[-121.06529502003255,49.24302631894089],[-121.06576650779105,49.24218234855902],[-121.06634000899416,49.241365043267955],[-121.0669400563906,49.24055656501473],[-121.06752018033873,49.23974125271017],[-121.0681002848731,49.2389259273005],[-121.0687002997137,49.238117157937765],[-121.07070983012869,49.236775162018816],[-121.07234208207205,49.236216310237715],[-121.0732510636299,49.2358798032891],[-121.07416112920697,49.23548441509927],[-121.08243471677596,49.232222280060256],[-121.09345559669613,49.22586976692241],[-121.09368280119271,49.22596386036249],[-121.09404471357878,49.22610044839932],[-121.09435345944694,49.2262360299751],[-121.09455517334524,49.22631118682426],[-121.0946786093756,49.22636276719817],[-121.09484647316906,49.22643300749845],[-121.09502539054094,49.22651248426787],[-121.09514759206928,49.22655949678372],[-121.09520307295985,49.22658739342761],[-121.09562471547753,49.226760537422976],[-121.09586187458085,49.226890589873676],[-121.09594167555633,49.22693228748509],[-121.09615052178488,49.22702130787634],[-121.09631668079003,49.227091458968204],[-121.09650323509544,49.22718002304317],[-121.09670103087689,49.2272597967805],[-121.09708503816385,49.22746391692429],[-121.09713709963115,49.2274916658003],[-121.09721174227876,49.22753340721015],[-121.09773664661382,49.22780287011714],[-121.09782718854272,49.22784053495595],[-121.09809299065626,49.22802489883192],[-121.0981482865476,49.228070838395986],[-121.09843635796389,49.228304699062804],[-121.09862283346911,49.22844287641795],[-121.09883192067153,49.22859477625501],[-121.09929300944096,49.22889910150118],[-121.09954890554869,49.22904720192166],[-121.10032539907192,49.22942451419597],[-121.10053179257216,49.22950439131921],[-121.10076308614865,49.22962514240617],[-121.10100564993095,49.22973683319133],[-121.10140251662187,49.229900921393956],[-121.10156448049256,49.22996213921272],[-121.10170243955781,49.2300228245073],[-121.10191694660027,49.230107289922515],[-121.10198149070149,49.230130813041534],[-121.10214498152567,49.23021013423381],[-121.10220857765039,49.23024263605787],[-121.10248250082019,49.23035038095553],[-121.10280638206044,49.23052214265033],[-121.1028525271741,49.23054087707403],[-121.10289990875249,49.23056417866524],[-121.10297798248222,49.23060607141884],[-121.10311062819629,49.23068455701943],[-121.1034615991121,49.230892796697795],[-121.1035451242356,49.23094818098815],[-121.10369722326861,49.231054056476275],[-121.10392739858231,49.231201823761545],[-121.10411627177365,49.23131754389921],[-121.10427866674296,49.23142359765389],[-121.10469324923677,49.23166432460937],[-121.10478757302509,49.231715128174436],[-121.10492266795463,49.231803033053055],[-121.1057364771116,49.23223472044914],[-121.10582830030155,49.23227666711812],[-121.10592775728213,49.23232771177074],[-121.1059704852912,49.232346280398524],[-121.10613351601708,49.232430093682716],[-121.10629952407645,49.232518273210864],[-121.10649796849424,49.23262483298191],[-121.10675751348333,49.23275503547528],[-121.10695392955826,49.23284825801251],[-121.10730108832318,49.23301148011812],[-121.10748226592754,49.23308624535673],[-121.10791125230621,49.23330476872959],[-121.10813636858775,49.23340295508253],[-121.10853826939933,49.23358500620444],[-121.1086654808734,49.23364999296415],[-121.10898835425529,49.233799132761526],[-121.10918867393234,49.23388801698975],[-121.10937528007621,49.23397655789019],[-121.10943765020174,49.234004479198525],[-121.10966746088808,49.23410710631652],[-121.11019052732992,49.234313822358],[-121.11035473152592,49.23437033644393],[-121.11039448498678,49.23438454586422],[-121.11043034383582,49.23440308941117],[-121.11113420778415,49.23463943336923],[-121.1114045882777,49.234715984011075],[-121.11170293165351,49.23478816416549],[-121.11202084359729,49.23491930474909],[-121.11232788088229,49.23502317417429],[-121.11255080165917,49.23512604122491],[-121.11280713815623,49.23523803810301],[-121.11291392497124,49.235284897077555],[-121.11316433740302,49.23538788213633],[-121.11338947488548,49.23548605721828],[-121.113693389107,49.23560331337656],[-121.11394988312907,49.23569755046823],[-121.11434331470697,49.235829853174785],[-121.11452808700554,49.23588701341861],[-121.11471583846105,49.23594853060827],[-121.11482407797503,49.235981632002726],[-121.11504052814381,49.236048112806216],[-121.11527269657618,49.23612855881842],[-121.11559270014315,49.23622369553136],[-121.1158648372393,49.23630003402916],[-121.11616738421294,49.236381413221],[-121.11628981366034,49.23641036576091],[-121.11638991595044,49.236439145053446],[-121.11652245886508,49.23648631959811],[-121.11689844516442,49.23660485714881],[-121.1170601603467,49.2366525052089],[-121.11718509731068,49.23669030336247],[-121.11749478469339,49.23678553480037],[-121.11753799318481,49.236799618255176],[-121.11758757194981,49.236818501260494],[-121.11777049170175,49.23689332632094],[-121.11794872317468,49.236963707388],[-121.1181500189397,49.23704359566061],[-121.11826448426126,49.2370992410621],[-121.11834305546186,49.23713663283425],[-121.11860905858398,49.23727132709892],[-121.11875154170303,49.23735474720569],[-121.11923503284567,49.23762785298981],[-121.11976967791475,49.237888613184],[-121.11981489220113,49.23791631903748],[-121.12022014967205,49.238116237321215],[-121.12043673203995,49.23821428819373],[-121.12064007207748,49.23830750765836],[-121.12091263815279,49.23842896010822],[-121.12113019747424,49.23851775230007],[-121.12133398235589,49.23860676829037],[-121.12161905953849,49.238723706077884],[-121.12174474173922,49.23877084252375],[-121.1218613978032,49.23882208095729],[-121.1222341107445,49.23897202564152],[-121.1224906406999,49.23906624194845],[-121.12285760746518,49.23918913880326],[-121.1228973688756,49.23920334351288],[-121.12294353071762,49.23922206909594],[-121.12314360621164,49.23929738088183],[-121.12384300466015,49.239610115725725],[-121.12397214343538,49.23965711705117],[-121.12424330989084,49.23979202919818],[-121.12448689808772,49.239894964900124],[-121.1248917805812,49.24004973824289],[-121.12495632181293,49.24007351662837],[-121.12500248535005,49.2400922413059],[-121.12511274758143,49.24013895536191],[-121.12537008599953,49.24024194263144],[-121.12560011045034,49.240326777958686],[-121.12570179017375,49.24037338272617],[-121.1257671285249,49.24040593858306],[-121.12592603446721,49.24048050981812],[-121.12604641634663,49.24054544415771],[-121.1261920787343,49.24061518470563],[-121.12646030732097,49.240745446841714],[-121.12688246194482,49.240932280056604],[-121.12706243268948,49.24100273200008],[-121.12721715459008,49.24106808123199],[-121.12750223150074,49.24118529036555],[-121.12762795652777,49.24123213245774],[-121.127744596016,49.241283642686206],[-121.12792362594016,49.24136307207344],[-121.12811171301713,49.2414381111855],[-121.12832758927144,49.24152681109738],[-121.12854980914467,49.24162058779791],[-121.12879436075069,49.24171452559235],[-121.12932732994584,49.24189396242824],[-121.12958577679481,49.241970203604225],[-121.12985502022926,49.24204186200937],[-121.12995983359609,49.24207507158968],[-121.13016429774044,49.2421415457738],[-121.1304492975094,49.24222687870081],[-121.1309479657927,49.242356545500485],[-121.13124682988278,49.242424468636735],[-121.13131406072088,49.24243906316701],[-121.13162667302961,49.242507038068055],[-121.13189435704989,49.242560857188984],[-121.13216596515326,49.24261005344361],[-121.13268575518872,49.24268597750428],[-121.13295921978988,49.242717501194925],[-121.13327731729964,49.242749632795814],[-121.13356718332344,49.242772305852085],[-121.13384380279132,49.242790157802865],[-121.13388796419316,49.24279525563073],[-121.13420355400126,49.242818529350735],[-121.13443087952484,49.2428310502954],[-121.13473369494419,49.24284500375176],[-121.13518503951512,49.24285240994596],[-121.13588646388038,49.2429176278126],[-121.13616181587737,49.24293118544232],[-121.13621674378426,49.24293197789531],[-121.13646292147598,49.242945056809035],[-121.13673877390941,49.24295384513194],[-121.13702710348998,49.242958405465714],[-121.13724894066883,49.242957699815754],[-121.13734850235925,49.24295908965718],[-121.13746473236775,49.24296546269788],[-121.13772415599927,49.24298337657209],[-121.13792277859879,49.24299093210585],[-121.13809125598031,49.24300726717555],[-121.13836147615352,49.243020587576396],[-121.13856476128329,49.24303286302354],[-121.13875604032798,49.24304487607685],[-121.13895932566834,49.243057150780224],[-121.13910989386235,49.24306394349021],[-121.1392737086403,49.24307556462818],[-121.13952112831656,49.24309320324615],[-121.13979648241539,49.243106751598475],[-121.14007233643989,49.24311553139825],[-121.14034692094906,49.24312002217108],[-121.14057737223084,49.24311913882616],[-121.14079065414597,49.24311804904753],[-121.14087646988324,49.24311937503515],[-121.14122047000103,49.24313404873505],[-121.14138756684534,49.24316356882197],[-121.1414415250347,49.24317361597688],[-121.14161405488807,49.24321691283598],[-121.14190656646478,49.24328000825969],[-121.1422063942331,49.243338912955636],[-121.14231950372005,49.243358672149476],[-121.14306879160843,49.24349224459772],[-121.14321996213664,49.24352612288675],[-121.14346583310241,49.24357498678117],[-121.1437931296569,49.24363427692359],[-121.14409906477003,49.24368415029667],[-121.14438534922245,49.24372468418916],[-121.14491734853642,49.24378276644722],[-121.14501470098105,49.24378884896408],[-121.14523844274353,49.243819228099305],[-121.14557573783493,49.24386515136608],[-121.14587668320259,49.24389703161107],[-121.14593627552134,49.24390253988034],[-121.14619821981722,49.243929279231075],[-121.14640573424604,49.243950462833915],[-121.14671134298789,49.24398707046731],[-121.14696644400489,49.24401349967752],[-121.14751015494645,49.24405828458886],[-121.14759036864217,49.24406387257513],[-121.14789473879081,49.24409590129127],[-121.14812626778303,49.2441176035663],[-121.14839897982017,49.24414003196019],[-121.14844998833391,49.24414543198349],[-121.14852675105053,49.244151143542915],[-121.14862021378997,49.24416154927673],[-121.14885127369806,49.244187739524875],[-121.14893615121755,49.24419804714352],[-121.14907452103958,49.24422287857094],[-121.14959438587888,49.24429844265183],[-121.14986787144652,49.244329923418036],[-121.1503296923652,49.24436875244163],[-121.15042392781547,49.24438821269399],[-121.15084296169344,49.24445809579149],[-121.15110571306273,49.244493600935826],[-121.15135300598438,49.24452897817203],[-121.15197845754946,49.24459771616077],[-121.15219332046402,49.24461442865716],[-121.15227863982452,49.24462052244894],[-121.15246167640565,49.2446456718919],[-121.15266182402661,49.24467159076126],[-121.15294610794656,49.244698479301995],[-121.15321617596766,49.24472979762569],[-121.15348030951812,49.24475210668586],[-121.15364913106602,49.244781684675324],[-121.1539808088936,49.244832127610735],[-121.15429457477072,49.24487302235024],[-121.15469070936648,49.24491535564079],[-121.15476576302629,49.24492098581441],[-121.15495233232586,49.24497815297854],[-121.1550780953029,49.24502496281735],[-121.15511911351108,49.245043722015396],[-121.15566467727459,49.24536708042111],[-121.15592097995818,49.24549728660301],[-121.15659261801176,49.245782328346515],[-121.15674129595504,49.24585667047492],[-121.15697033182646,49.24596817408378],[-121.15713319815106,49.2460383629852],[-121.15716345318678,49.24606142786862],[-121.15748591862061,49.24638123504627],[-121.15765969732564,49.24652802570105],[-121.15825159613291,49.24695127719137],[-121.15831260646894,49.24699263835223],[-121.15843241742475,49.24708006056585],[-121.15862008446985,49.24720915112796],[-121.1587374118335,49.247287440110526],[-121.15896613244321,49.24743500043828],[-121.15938754640794,49.24768003000508],[-121.15961737134649,49.24780058366082],[-121.15969381399087,49.247842357401204],[-121.15995017069618,49.24797227517376],[-121.16004204489616,49.24801445304339],[-121.16027109933745,49.24812594928293],[-121.1608752479825,49.24838284137139],[-121.16113361953782,49.24847704129933],[-121.16156458876158,49.2486142358307],[-121.16173528338835,49.248675458389414],[-121.16217685945735,49.248826369576186],[-121.16242649664025,49.24898784185927],[-121.16265539994805,49.249117358942186],[-121.16282748313,49.249214735610444],[-121.16291017417252,49.24927906047923],[-121.16312332396667,49.249444242625756],[-121.16345770856319,49.24968336294779],[-121.16353023682157,49.24972975713708],[-121.16356348067488,49.249757184903814],[-121.16375181516652,49.2499130696282],[-121.16394575224189,49.250064703791516],[-121.16412519644896,49.25020694568977],[-121.16460172836706,49.250533919048955],[-121.1646435590684,49.250561452015],[-121.16510433161409,49.250874743189655],[-121.16514787425501,49.2509023527217],[-121.16523368755995,49.25095328375179],[-121.16553221538588,49.25112426579235],[-121.16577485770533,49.2512541116377],[-121.16604279060465,49.251388762825414],[-121.16629838054781,49.251509887300536],[-121.16657288389409,49.25163102036712],[-121.1668431326987,49.25174350005802],[-121.16721018517187,49.25188400032638],[-121.16737278140064,49.251940618749195],[-121.16752632315487,49.25200163012844],[-121.16779284627336,49.25210040849039],[-121.16803675607119,49.252185208978865],[-121.16845325543265,49.252313262257495],[-121.16872386227922,49.25238938883897],[-121.16888615441648,49.25243245953522],[-121.16947540806866,49.25258573520464],[-121.16967111007611,49.25263820454121],[-121.16993357355878,49.252710011678815],[-121.17026892692947,49.25279185036665],[-121.17049897593692,49.25284472965972],[-121.1707439605023,49.25290278820072],[-121.17088317292419,49.252936368805706],[-121.17111319435077,49.252989525131305],[-121.17135649895498,49.25304721825694],[-121.17199443210852,49.25317898004743],[-121.17219935303807,49.25320901623116],[-121.17237288305219,49.253243293091224],[-121.17264409903335,49.25329716357206],[-121.17301272173307,49.25335680320666],[-121.17326474538177,49.253396849282154],[-121.1735219337078,49.253436837359935],[-121.17377395916505,49.253476873262606],[-121.17444796909516,49.25355949221371],[-121.17499524119985,49.253604291259784],[-121.17504458165912,49.25360931468392],[-121.17534654403275,49.25363214209492],[-121.17571717042895,49.253656057547815],[-121.17645266921663,49.25367657311476],[-121.1765887496783,49.25367421057944],[-121.17666942167395,49.2536755656378],[-121.17690241327375,49.253683737098896],[-121.17712339579494,49.25369165031889],[-121.17733797069289,49.2536950455252],[-121.17788244800234,49.253717152228056],[-121.17837509592981,49.25372510198721],[-121.17866443130625,49.25372056283461],[-121.1789297174544,49.25371580414698],[-121.17956672328845,49.25370792391805],[-121.17981470975917,49.25372071089552],[-121.1799922938848,49.25373259503771],[-121.18027976098466,49.25374601894186],[-121.18054364769877,49.253754716117705],[-121.18083033713904,49.253759082816565],[-121.18090242313819,49.25376033043654],[-121.18112760765234,49.253777444243745],[-121.18135671090828,49.25378994265302],[-121.1814712625825,49.25379619167528],[-121.18159906828913,49.25380726393953],[-121.18172858552606,49.25381841256403],[-121.18232287616874,49.2538906428289],[-121.18250858128968,49.253907116594426],[-121.1826462856667,49.254120753042386],[-121.18291248492648,49.25447122425452],[-121.18294465577361,49.25452566000189],[-121.18312390104147,49.254802882186965],[-121.18324101126242,49.25496655025801],[-121.18334841644334,49.25510779143722],[-121.18347925028826,49.25527178372566],[-121.18381742686203,49.255641245508464],[-121.18395025425679,49.25576953111469],[-121.18408435732731,49.25590209527676],[-121.18411792991736,49.25594306174317],[-121.18426236490852,49.25612514283971],[-121.18474962766638,49.256632064321046],[-121.18494820470451,49.25680613470596],[-121.18511868607506,49.25695272590019],[-121.18550819382773,49.25729177264869],[-121.18559811863356,49.257369652050755],[-121.18579763556622,49.257534732499394],[-121.18589614925216,49.257612706523766],[-121.18609659992872,49.25776881613853],[-121.18638806617095,49.2579757809947],[-121.18641616563085,49.25800325042224],[-121.1864460056642,49.258030517922506],[-121.18679196868027,49.25834196783833],[-121.1870026009917,49.258516003320274],[-121.1870494349052,49.258561782397656],[-121.18734343730286,49.25882721297825],[-121.18749112094997,49.2589285252843],[-121.187557155123,49.25898813323401],[-121.18759166531767,49.259020119231714],[-121.18776465331021,49.25917584676735],[-121.18801665054306,49.259382171624324],[-121.18809410771566,49.25946427279419],[-121.18825415610131,49.2596287221179],[-121.18839764953836,49.25977043943087],[-121.18858424283985,49.25994424581837],[-121.18864215848386,49.25999925975956],[-121.18903252609502,49.26034706946477],[-121.18910653339859,49.260429304332135],[-121.18913854736616,49.26046879180888],[-121.19320027299709,49.25849655947991],[-121.1935443732081,49.25832895324734],[-121.19803491728864,49.2561473369003],[-121.19762639583872,49.25575871591044],[-121.1975433290723,49.25568087302325],[-121.1974905429536,49.25562609228328],[-121.19736670151359,49.255493714965716],[-121.19712400523272,49.255247232536504],[-121.19696379031237,49.25510083918661],[-121.19668024982204,49.254866914454],[-121.19659921357594,49.25480269228436],[-121.19656174249658,49.25476606674312],[-121.19653659680264,49.2547432420422],[-121.1964641474434,49.2546791227837],[-121.19640277820567,49.25462422941843],[-121.19632313763067,49.25454654699596],[-121.19604912166534,49.254303735134755],[-121.19589502448187,49.254197917371734],[-121.19570920683887,49.25403318671502],[-121.19563928185694,49.25397791141144],[-121.19541599662512,49.25377655426569],[-121.19527156957645,49.25364382433369],[-121.19510106923111,49.253497239461545],[-121.19489982509747,49.253332098897324],[-121.19445391605058,49.253006068602964],[-121.19441209432864,49.25297826893452],[-121.19431699908712,49.25290045475979],[-121.19396197365644,49.25259342181659],[-121.19390060920318,49.252538535834894],[-121.19346558760525,49.2520413098633],[-121.19333271479218,49.25191332258171],[-121.19319859776853,49.25178076013014],[-121.1930395978977,49.25153997375488],[-121.19290889165565,49.25135795709938],[-121.19286392242934,49.25129421238997],[-121.19272039989178,49.251103162123016],[-121.19268102997636,49.25103516563031],[-121.1925730987283,49.25084908545067],[-121.19247705465494,49.25068101783117],[-121.19191010455548,49.2500470943339],[-121.19174680486896,49.24986446027086],[-121.19143735055229,49.24949968545575],[-121.19127717339487,49.24935328239257],[-121.19089174186762,49.24904148696119],[-121.19046341573815,49.24872891206861],[-121.1902163244133,49.248558610575955],[-121.19001481605278,49.24842952090358],[-121.18932182753909,49.24804987404278],[-121.18907898379862,49.24793811562555],[-121.18902466733859,49.24791482528584],[-121.18875531895496,49.24779342112439],[-121.18803912988513,49.247521539947634],[-121.18743988789748,49.24733212299318],[-121.18706739918562,49.24722725318027],[-121.18680960779089,49.24716020608197],[-121.18664731839293,49.24711715301234],[-121.18636035064405,49.24704964051862],[-121.18565032669677,49.24691728369451],[-121.18536401549434,49.246876581110214],[-121.1851500627325,49.24685095537049],[-121.18503132660253,49.246835501465185],[-121.18485516645373,49.246810156479306],[-121.18420777033658,49.24673696052146],[-121.18399462622652,49.246720109935275],[-121.18332707698056,49.24664234535339],[-121.18310363746475,49.24662531244048],[-121.18283947904929,49.246603075946496],[-121.18241101640618,49.24657377312125],[-121.18219740808006,49.246561399663285],[-121.1819820588054,49.246549236611955],[-121.18177532443926,49.24653688999326],[-121.18147247087408,49.24652306861498],[-121.18122234361043,49.246514707421596],[-121.18094086139097,49.24651029293277],[-121.18087392024171,49.246509274903225],[-121.1806195939048,49.24649169444533],[-121.18045575675526,49.24648013613003],[-121.18018037083402,49.246466691590726],[-121.17965342914013,49.24645862882936],[-121.17936074659858,49.24646273024516],[-121.17871180387472,49.24647063013915],[-121.17866545598102,49.24646996376746],[-121.17839849907587,49.24647465427184],[-121.1779497575995,49.24645852613756],[-121.17772022445183,49.246450510000095],[-121.17750226155626,49.24644695337801],[-121.17726930616305,49.2464387831222],[-121.17704835813404,49.24643087011398],[-121.17671881780984,49.24642570093948],[-121.17655874310563,49.24642755703789],[-121.17633872948201,49.24641066330344],[-121.17615305653172,49.2463941787365],[-121.17609047230604,49.246384331671585],[-121.17576218175593,49.246334110020825],[-121.17571975254721,49.246328827607186],[-121.17563188011071,49.24631418557168],[-121.17551408291011,49.24628974191654],[-121.1754566624049,49.2462798369793],[-121.17514131495737,49.246220892091884],[-121.17493520800593,49.246186016566746],[-121.17479259147565,49.246152278620116],[-121.17456431088006,49.24609920621117],[-121.17431932752599,49.24604144307906],[-121.17418013329062,49.246007866555146],[-121.17405079781365,49.24597867359236],[-121.1739039538461,49.24593601263582],[-121.17380161788489,49.24591169113353],[-121.1735421128134,49.24584481393151],[-121.17305311670985,49.24572001583247],[-121.17296590219811,49.24568255949433],[-121.17269937499526,49.2455840802819],[-121.17241774703551,49.24539949364776],[-121.17232737010673,49.24532637881827],[-121.17221830083012,49.24523466379764],[-121.17191357768026,49.24499125136108],[-121.17169948196296,49.244835064713754],[-121.17146700399431,49.244673822906385],[-121.17142346250165,49.244646224642416],[-121.17134123549685,49.24457741621832],[-121.17118738617239,49.24445352644444],[-121.17097423060233,49.244288358975425],[-121.17014024922243,49.243762429772616],[-121.16998689100839,49.24368338614408],[-121.16992027369025,49.24364629090233],[-121.16968560005392,49.24348973625178],[-121.16952428684043,49.24338806192917],[-121.16911392823224,49.243152317218005],[-121.16906009517157,49.24312452703618],[-121.16870110440942,49.24295676688299],[-121.16865022609171,49.24293361955397],[-121.16861433741958,49.242915095601916],[-121.1673262554686,49.24240880595846],[-121.16726635442801,49.24238977285371],[-121.16703232465142,49.2423096411099],[-121.16689206476761,49.24225345338602],[-121.16654072237135,49.24214437758856],[-121.16651046523037,49.24212131519719],[-121.16636972485038,49.24202027864244],[-121.16629531911124,49.24194251552372],[-121.16608345106924,49.241732288011235],[-121.16588420441515,49.241549410281294],[-121.16516905780668,49.24108824443844],[-121.16507000094444,49.240983158253776],[-121.16492758520894,49.24088176450976],[-121.16430325123969,49.240489511740996],[-121.16406064118374,49.24035992984728],[-121.16345285044456,49.240089362167716],[-121.16270343460288,49.23972644117504],[-121.16256785306531,49.23967495869922],[-121.16237239507643,49.2395548328266],[-121.16175432244096,49.23923472573771],[-121.16153935901379,49.23913683479694],[-121.1613359332849,49.239043692535816],[-121.16090507474351,49.23885687874926],[-121.16066047326005,49.238763013325375],[-121.16055269316921,49.2387251811022],[-121.16029434799239,49.238631256747794],[-121.16019344011231,49.23859346219427],[-121.1597057918817,49.2384238306961],[-121.1594396693115,49.23833857603872],[-121.15912814570137,49.23824366671014],[-121.15867528440386,49.238119572285896],[-121.15839012284808,49.23805207036469],[-121.15798454775876,49.237968997947995],[-121.15771122955967,49.23791978045788],[-121.1571931618904,49.23784406227254],[-121.15698271798774,49.237818246815245],[-121.15673156497468,49.23778722688822],[-121.15633549025581,49.23774489165218],[-121.15628277702048,49.23773941838659],[-121.15618808363043,49.23772445266153],[-121.15613409950615,49.23771469115267],[-121.15583335236842,49.2376648038636],[-121.15505022965924,49.23757602938442],[-121.15487958703157,49.23756412434099],[-121.15476085564265,49.23754891527261],[-121.15452469295991,49.23752250657887],[-121.15431082941423,49.23749654098727],[-121.15404938684881,49.23746532248789],[-121.15372098713814,49.23743335580279],[-121.15349418116803,49.237416107437475],[-121.15339090615511,49.23740103279874],[-121.15329842448776,49.23738136456108],[-121.1528794216685,49.23731176860304],[-121.15259316933484,49.23727125684955],[-121.15246759526214,49.23725574632766],[-121.15214016688574,49.23721450829765],[-121.151678415593,49.23717568660052],[-121.15154690859559,49.2371511662154],[-121.1512881195231,49.237111038818526],[-121.15086553342098,49.23705931637867],[-121.15066666090408,49.23703796047325],[-121.1504682280424,49.23701240194662],[-121.15002287561626,49.236964721372146],[-121.14974628463278,49.23694691073535],[-121.14961339960854,49.236935578385804],[-121.14944024926515,49.23691480986861],[-121.14910548310694,49.23687803142323],[-121.14872595157404,49.236858406741895],[-121.1486020916377,49.236842959769625],[-121.14829649835224,49.23680664442711],[-121.14804146622734,49.23677993073905],[-121.14790731195292,49.23676430801298],[-121.147609363181,49.23673707677218],[-121.14750733350586,49.23672655413925],[-121.1474023511876,49.23671139669677],[-121.14722796077959,49.236686066967266],[-121.14689883029367,49.23664473593648],[-121.14651947042006,49.236607068122666],[-121.14638672783265,49.236577965803136],[-121.14614088989549,49.2365291170241],[-121.14532445079529,49.23638124797661],[-121.1452268121966,49.236361628850304],[-121.14508598733372,49.236327649887656],[-121.14485731893716,49.236279003425956],[-121.14457124860316,49.23622044393553],[-121.14433523899203,49.23617625586837],[-121.14407864152948,49.236131707640595],[-121.14383578982478,49.23608721003193],[-121.14327877064261,49.23600628401586],[-121.14299159426419,49.23597472583759],[-121.14273435865799,49.23595269933857],[-121.1424462424087,49.23593011882874],[-121.142152522953,49.235911804663026],[-121.14149376932804,49.235883225645],[-121.14126429476674,49.23587513184632],[-121.14094857762092,49.23586991390554],[-121.14071816231542,49.23587079805295],[-121.14050320293909,49.23587181053275],[-121.14030511002787,49.23585949176351],[-121.14005769941687,49.23584213310159],[-121.13988485656343,49.23583489504185],[-121.13967177860756,49.235817956646606],[-121.13942218808317,49.23580499991537],[-121.1392287573522,49.23579740027008],[-121.13906372719218,49.23578122117825],[-121.13881195566582,49.23577267539071],[-121.13865456822117,49.2357655734031],[-121.13857782057867,49.2357598547491],[-121.1384964114248,49.23574941489881],[-121.13820266548677,49.23573136832784],[-121.13787414690391,49.2357171013755],[-121.1374228712437,49.23570970634809],[-121.13718903520943,49.235710428526765],[-121.13702993749608,49.23570324694875],[-121.1366591469492,49.23566593052718],[-121.13637103543351,49.23564333378563],[-121.13611162318497,49.235625703789445],[-121.13582259953628,49.23561180630006],[-121.1353078231926,49.23560350190109],[-121.13514232409895,49.23559180633796],[-121.13487604052374,49.23557414271065],[-121.13466767687623,49.23551229015152],[-121.13427106618573,49.235393452811934],[-121.13414098762053,49.23535543358436],[-121.13410122606605,49.23534123293501],[-121.13396320888668,49.23528058956603],[-121.1337965227854,49.23521469953762],[-121.13362856743349,49.23514452977155],[-121.13334519362577,49.23502769138033],[-121.13321779814551,49.23498049987479],[-121.13310113920349,49.23492927342048],[-121.13289560800406,49.23484048021977],[-121.13282933007706,49.23481690745556],[-121.13269101908239,49.234742716543856],[-121.13249796471547,49.23464969572329],[-121.13227544409338,49.23454265863917],[-121.13207725937,49.23444940514333],[-121.13190559123919,49.23436553213419],[-121.13163473093257,49.23424418401301],[-121.13110171883457,49.234033175195066],[-121.13100721595436,49.23400015187812],[-121.13095123427782,49.23397675450948],[-121.1307619034028,49.23389743998203],[-121.13035708515129,49.23374239989082],[-121.13030750353633,49.233723531644124],[-121.12966413146407,49.23343422501422],[-121.12942897260535,49.23334944378345],[-121.12931919367914,49.23329824413611],[-121.12901764211843,49.23315830563189],[-121.12877407826713,49.23305538808462],[-121.12855950972953,49.2329709674735],[-121.12828848946859,49.23286765511255],[-121.12783393287603,49.23271177152747],[-121.12776890042821,49.23269275348656],[-121.12746249098787,49.23256641165343],[-121.12733507993265,49.232519482397066],[-121.12721846290664,49.23246797104109],[-121.12711163794823,49.232421413353435],[-121.12698003842628,49.232365281471374],[-121.12685873293022,49.23230932640068],[-121.12675069912879,49.23225792309321],[-121.12669174305212,49.232230157514344],[-121.12663157654794,49.23219755562703],[-121.12623227104152,49.232006669886495],[-121.12606669880559,49.23191403144702],[-121.12595834249387,49.23184935972005],[-121.12552946161962,49.23161287215969],[-121.12508371590262,49.2313897113442],[-121.1249078254205,49.23129717224327],[-121.12466274812415,49.23117612325196],[-121.1244184377384,49.23106413911257],[-121.12415867521935,49.23095201425735],[-121.1239296146091,49.23085847397342],[-121.12379242069149,49.23080658631259],[-121.1236124934672,49.23073613680486],[-121.12342787803236,49.23066124351022],[-121.12325137295716,49.23059094826215],[-121.12298037933348,49.23048761321549],[-121.12279187275702,49.230417053424915],[-121.12254644846364,49.23033207944036],[-121.12213198334143,49.230203922240605],[-121.12201691008705,49.230170518042314],[-121.12191213020577,49.230137291168724],[-121.12164096280773,49.23005199716989],[-121.12153400072258,49.230023181965144],[-121.12147457740309,49.22999991192931],[-121.1212505383123,49.22992407703956],[-121.12100588627953,49.22984814699892],[-121.12088736352042,49.22981487395172],[-121.1207239577348,49.22976715365137],[-121.1206520601666,49.229748108637075],[-121.12051687712035,49.22970984021077],[-121.12021436598017,49.2296284723909],[-121.12010177171655,49.22960420011225],[-121.11999404498235,49.22956633583723],[-121.11988581673309,49.22953323930674],[-121.11966938998737,49.22946676756586],[-121.11943724723695,49.229386330200576],[-121.1192409344433,49.229324711436796],[-121.11919773238851,49.229310628504074],[-121.11914987049921,49.2292918325093],[-121.11911182918008,49.22927770371246],[-121.11889605769005,49.22918869638869],[-121.11881062742286,49.229151281847855],[-121.11869447152309,49.229095549861505],[-121.11819855990072,49.228876002058605],[-121.11793504397143,49.22879977786816],[-121.11773269618425,49.22869757295848],[-121.11755355246353,49.228636160674334],[-121.11727294287495,49.22851010807931],[-121.11704393747756,49.22841627448061],[-121.11577271757133,49.22803582605521],[-121.11573078470099,49.22802603041556],[-121.11568198089846,49.228016202860935],[-121.11550004508511,49.22793239425835],[-121.1153864006873,49.22788551438188],[-121.11529457849286,49.22784356658923],[-121.11519511987542,49.22779253920306],[-121.1149333957087,49.22766676794924],[-121.11440166203583,49.22742865997062],[-121.11387571841377,49.22716826597191],[-121.11361774377009,49.22705590533788],[-121.113550693017,49.227023542218376],[-121.11348664874977,49.22699526704619],[-121.11341275670908,49.226962593450395],[-121.11334399586819,49.22693015259978],[-121.11330050649836,49.22690252117267],[-121.11306922416635,49.22678150913953],[-121.11291427948454,49.22670258314083],[-121.1126923151282,49.22659101488716],[-121.11245755562844,49.2264704119427],[-121.11233286233094,49.22641428481372],[-121.1121196639205,49.226284789468885],[-121.11186326981496,49.22614120773973],[-121.11172767478081,49.22605808761682],[-121.1116036389753,49.2259794345182],[-121.11150266045377,49.22591029035638],[-121.11137735895115,49.225827348206515],[-121.11116337265426,49.22568907258671],[-121.11102483278496,49.225601306762094],[-121.11059674255098,49.225342223513806],[-121.11037494278142,49.22521290197153],[-121.11024404100284,49.22513421497141],[-121.1100281973837,49.225013616579965],[-121.10973454552428,49.224864954045515],[-121.10953052358553,49.224762646505624],[-121.10931152379955,49.224655715779555],[-121.1089426006832,49.22448756455906],[-121.10871847275607,49.22438039957658],[-121.10852034838088,49.2242873887043],[-121.10840300954217,49.22422679971032],[-121.10815874649263,49.22411504694123],[-121.10776190536635,49.22395098215069],[-121.10760166452998,49.22388985076764],[-121.1074637159715,49.22382917245133],[-121.10724751759467,49.22374463956335],[-121.1067629551465,49.22351624625806],[-121.10653485833849,49.22333276802926],[-121.10637564796048,49.22321303828354],[-121.1062252777593,49.22310725200183],[-121.10555562035056,49.2226462981325],[-121.10497703826394,49.22229943955127],[-121.10476195471122,49.222188165163494],[-121.10468170954825,49.222150684916755],[-121.10444012417196,49.2220300221328],[-121.10426855183698,49.22194610357532],[-121.10392509203047,49.22176498876608],[-121.1037698910958,49.22167250281738],[-121.10355405098318,49.221552169186054],[-121.10281190079142,49.22122492626252],[-121.1026287786407,49.22113652783525],[-121.10251516385502,49.22108963391634],[-121.10225893023102,49.220977610181265],[-121.1021902154261,49.22094488357842],[-121.10202578060661,49.2208748096786],[-121.10195190636071,49.22084212792907],[-121.1019160907534,49.220823302834276],[-121.10157635651797,49.22065588204047],[-121.10130565442795,49.220534464243215],[-121.10106734942397,49.22043170657546],[-121.10090073292015,49.2203660515753],[-121.10073288189406,49.22029582004843],[-121.10055397869895,49.220216351994374],[-121.1002968356224,49.220113024070386],[-121.10021267385605,49.220080152598705],[-121.09943482775034,49.21976592036609],[-121.09931824427068,49.21971465620687],[-121.0992558994095,49.21968672844283],[-121.09902621245669,49.21958379855349],[-121.09879602277519,49.21948563598769],[-121.09877777555454,49.21947944634584],[-121.09852885543123,49.21939593972103],[-121.09788113547572,49.21915133211903],[-121.09777611000695,49.21910454394474],[-121.09760874176001,49.219029826920924],[-121.09740850829793,49.218940919187524],[-121.09729069355843,49.21888508544077],[-121.09712959391095,49.218783586483006],[-121.0969019727777,49.21864493658516],[-121.09663461732396,49.21849207135969],[-121.09639319041875,49.21832150264696],[-121.09617757327246,49.21818311785667],[-121.09594185304968,49.218039865312434],[-121.09583015102058,49.21797500621675],[-121.09579183989088,49.21794732264155],[-121.0956505658352,49.21783713335878],[-121.09557441869417,49.21777727657606],[-121.09529082662051,49.217534294013525],[-121.09507635447999,49.217368892090015],[-121.09498105332258,49.217295197401626],[-121.09471158970977,49.21709739907425],[-121.09465801929629,49.21705154385779],[-121.09454916976912,49.21695974645823],[-121.0943747525762,49.216821817631065],[-121.09423472051031,49.21671619368654],[-121.0941487616733,49.216651666221594],[-121.0940819285978,49.21660125466529],[-121.09404067450603,49.21656892511859],[-121.09394192824792,49.216495342978355],[-121.09372699090939,49.21633442759141],[-121.09363881930305,49.21627458959966],[-121.09357078163225,49.21621933195648],[-121.0930631587823,49.21586914465496],[-121.09284832310422,49.21573980957759],[-121.09274942032425,49.21568398375363],[-121.09250808831588,49.21554526618753],[-121.09238610817916,49.215480214041364],[-121.09225307850177,49.21540592457418],[-121.09211783591017,49.215336315846265],[-121.09199927571925,49.215271428094866],[-121.09132638578264,49.21494076468254],[-121.09115217486628,49.21486599473686],[-121.09101398982412,49.21479174816236],[-121.09075800904203,49.21466166016135],[-121.09043532715724,49.21451246147597],[-121.09017918838391,49.21440012957787],[-121.09013819400293,49.214381623179634],[-121.0898386867745,49.21427323142476],[-121.08962180541036,49.21417960505523],[-121.08957102748731,49.21415614109751],[-121.08942113294248,49.21409517131548],[-121.0893588015696,49.214067237592225],[-121.0890073792746,49.21396239423133],[-121.08889749960287,49.213929187844656],[-121.088789996324,49.21387353396849],[-121.08847609710178,49.21370639596965],[-121.08767852620326,49.21336918026287],[-121.08754902280072,49.213326614125776],[-121.08742658005791,49.21326604562477],[-121.08736425099616,49.21323811071355],[-121.08699673235982,49.21307444901182],[-121.0868576084353,49.21300917585599],[-121.08651826902302,49.21285525208853],[-121.08632742071251,49.212775491703596],[-121.08617674657526,49.21270573865749],[-121.08610416024575,49.21267733480466],[-121.08588726437246,49.21258397904486],[-121.08573785526015,49.21251851452582],[-121.08561152189539,49.21246227728402],[-121.08546600868316,49.212392478985784],[-121.08528085279204,49.21217792067335],[-121.08509693184247,49.211967938472604],[-121.08466857159938,49.21155167890563],[-121.08458995117371,49.21148295708523],[-121.08453535589197,49.211414492968416],[-121.084390499488,49.211241245203645],[-121.08409872378049,49.21093046446897],[-121.08400829971923,49.210843447067],[-121.08393750121436,49.21076577966276],[-121.08334005066453,49.21024310503095],[-121.0832749777259,49.21019248601588],[-121.08324991182646,49.21016963340862],[-121.08311555942636,49.210059460369116],[-121.08294291175605,49.2099215896879],[-121.08247420986683,49.20959454820613],[-121.08234042536023,49.20951146714947],[-121.0822594326663,49.209465190801716],[-121.08216150669226,49.20940038476045],[-121.08155781278772,49.209066603725375],[-121.08138288083084,49.208982769251165],[-121.08130438697846,49.20894534896978],[-121.0811029639945,49.20885212934392],[-121.08084172054333,49.2087398183119],[-121.08061288615514,49.20864590456788],[-121.08011992697789,49.208466892691774],[-121.07994385322692,49.20841007078138],[-121.07979037598173,49.20836696684551],[-121.07895409009338,49.20813701618279],[-121.07884565982438,49.208090330846275],[-121.07868424875353,49.20802486576301],[-121.07860996470404,49.20799637851283],[-121.07839215335093,49.207911985955846],[-121.07833157698273,49.207883836425985],[-121.07818295080803,49.20782741806924],[-121.07764667349849,49.207652061501456],[-121.07729016783316,49.207547222781116],[-121.07721708916152,49.20752358053865],[-121.0766549203607,49.20736563908477],[-121.07660296553632,49.20735339244399],[-121.07645046036795,49.20731737441542],[-121.07525914394444,49.20713092956331],[-121.07498494445036,49.20710852420472],[-121.07404103545596,49.20708366276845],[-121.07384972431296,49.20708957040482],[-121.07271954428347,49.207201102723175],[-121.07252537198977,49.20723394470763],[-121.07185923698832,49.20737572051466],[-121.07147223291794,49.207477273008095],[-121.07134497064918,49.20751092045606],[-121.07101035442415,49.20760443968814],[-121.07054438003655,49.20775396428952],[-121.0697409099559,49.20810486155043],[-121.06904200253229,49.20853864165199],[-121.06899703568392,49.20857380010629],[-121.06886992744283,49.208670609725445],[-121.06865972250996,49.208838049033396],[-121.06847449491252,49.20899676141976],[-121.06784829487637,49.20968368114587],[-121.06775949942246,49.20980789581313],[-121.06731805325923,49.210776767580555],[-121.06729869601428,49.210861883541064],[-121.06726618808429,49.21097373526353],[-121.06717689298353,49.2115389117582],[-121.06716385839316,49.2118715796235],[-121.0671643871259,49.21206051743236],[-121.06717167754434,49.212218177137004],[-121.06717736516651,49.212407071502334],[-121.06717819854808,49.21244771100791],[-121.06700465893194,49.21267405681715],[-121.06693680059993,49.21276286913853],[-121.06683501357031,49.21289607853927],[-121.06665925289997,49.21312712200404],[-121.06654706758361,49.21322884432097],[-121.06596845163712,49.213871403825095],[-121.06588572655198,49.213986881443816],[-121.06583320567748,49.214044528433924],[-121.0656647048072,49.21423953327038],[-121.06548694609707,49.214456949531794],[-121.06535551678923,49.2145941584489],[-121.06520139902317,49.214766976779714],[-121.06504632405202,49.21494878254967],[-121.06493909050491,49.2150684865066],[-121.06478250411543,49.215232177635684],[-121.06467574682652,49.21534739192008],[-121.06459930122611,49.21543608888878],[-121.06453819723875,49.2154936305732],[-121.06426531449854,49.21578139998284],[-121.06410633602364,49.21596752773746],[-121.06395542707877,49.216158545450845],[-121.06387317059793,49.21626953177471],[-121.06376791769814,49.216402859139784],[-121.06362390574465,49.21659362415012],[-121.06358433348088,49.21664256150596],[-121.06342924592319,49.21682436443184],[-121.0631622622871,49.21712114437723],[-121.06312193468747,49.21716102444915],[-121.06285778426599,49.21743114580295],[-121.06274226620778,49.21756400152716],[-121.06263084554122,49.21767449781555],[-121.06237240167046,49.21797166744237],[-121.06225886722895,49.21811814734481],[-121.06215066249959,49.21824683558697],[-121.06210110385649,49.21830884819826],[-121.06196504674594,49.21847318806091],[-121.06181387517847,49.218650368346005],[-121.06168909102449,49.21880564295622],[-121.06166687560642,49.21883677125135],[-121.06158040518825,49.2189388198126],[-121.06144291056304,49.21911662681697],[-121.06123510251228,49.219373818638076],[-121.06106711512717,49.21959590744895],[-121.06104049328805,49.21963613568441],[-121.06101143795411,49.219666941109665],[-121.06095842565956,49.21972908351857],[-121.06077156617232,49.21995086568709],[-121.06052910006089,49.22027526282816],[-121.0604288156982,49.220426300419504],[-121.06039391850247,49.22047968260367],[-121.06030744223078,49.22058172988942],[-121.06013667668378,49.220781413347225],[-121.05997917130365,49.220985656668034],[-121.05981852106734,49.22120328016017],[-121.05967226016546,49.22139872768475],[-121.05950480921163,49.22164790604131],[-121.05943186620426,49.221768059018174],[-121.05937399566996,49.221843502435604],[-121.05928464553637,49.22197248442985],[-121.05916459954672,49.22216377461087],[-121.05910295644853,49.22211329884795],[-121.05862742941775,49.22178612430209],[-121.05839993816008,49.221647115468336],[-121.05793050780753,49.221391837350204],[-121.05780805181985,49.22133152328466],[-121.0572460467624,49.22099360579696],[-121.05703111327921,49.22088195770328],[-121.05666750990258,49.22071414059594],[-121.05652129178979,49.22063495973802],[-121.0555937619403,49.220228092839406],[-121.05535022449634,49.220143043230564],[-121.05444541252481,49.21989397481313],[-121.0542135000898,49.21984497800969],[-121.05369084829756,49.21975076794255],[-121.05323585069193,49.21966670972048],[-121.05297724416444,49.219626345508054],[-121.05184128749485,49.21953073717543],[-121.0516217508779,49.21952684760736],[-121.05127600775091,49.219530132176196],[-121.0510554826298,49.21953550731023],[-121.04964571750607,49.2196869702233],[-121.04943680887166,49.21972839798514],[-121.04880156587413,49.21988415507216],[-121.04851580406299,49.21996941603337],[-121.04818144716442,49.219914287906306],[-121.04805520444712,49.219889589358175],[-121.04793238089594,49.21986505691387],[-121.04755020328673,49.2197910899693],[-121.04724969007187,49.219740889755705],[-121.04715335860868,49.21972574930434],[-121.04682536566406,49.2196754208017],[-121.04617856633313,49.219601393975694],[-121.04586314787987,49.219578149340315],[-121.04580653918696,49.2195772321996],[-121.0450723550448,49.219227380899156],[-121.04476236096686,49.21910512460067],[-121.04461838998658,49.21905338625878],[-121.0443604186363,49.218958903321074],[-121.04425961818703,49.218921277605176],[-121.04412377891461,49.21887385566418],[-121.04397218913017,49.2188130227995],[-121.04350356265789,49.21864765955713],[-121.04323263712,49.21856187973013],[-121.04196202620686,49.21827950437116],[-121.04166053840656,49.21823855425757],[-121.04039876498811,49.21816296921912],[-121.0401233481567,49.21816748075982],[-121.03936243318638,49.21821278541391],[-121.03907384514618,49.21824404430542],[-121.03869616063413,49.218305023476056],[-121.03848683070647,49.21827000671571],[-121.03821450491999,49.21822954236896],[-121.03800469549743,49.2181990138906],[-121.03776869784912,49.21817234891432],[-121.037462564949,49.21812666144454],[-121.0371897606191,49.2180906837207],[-121.03682141214007,49.21804832552309],[-121.03650574002852,49.21801150700521],[-121.03636777840615,49.218000067773744],[-121.03628606753664,49.21794470025347],[-121.03619721771332,49.21787575821577],[-121.03615132366683,49.217838959246045],[-121.03605164757153,49.21774272952294],[-121.03587929198952,49.21758703675512],[-121.0354100384484,49.217219155155796],[-121.03524023214877,49.21710390120606],[-121.0351114023887,49.217007165241576],[-121.03487114031655,49.21682775839383],[-121.03464413897159,49.21665290532209],[-121.03387179821118,49.21616304510321],[-121.03370085566429,49.21607452437529],[-121.03364590582922,49.2160420974708],[-121.03348105486167,49.215944834536494],[-121.03269741467696,49.21554467089379],[-121.03245586652298,49.21544161212692],[-121.03225280458248,49.21534821433722],[-121.03217040942161,49.21531536843634],[-121.03202277704591,49.215249908677265],[-121.03174467108933,49.21511922081384],[-121.03157448561288,49.215039744919906],[-121.03152076652098,49.215011893970775],[-121.03130496090856,49.21490917203376],[-121.0311269463611,49.214838636562135],[-121.03059118719513,49.21451475032356],[-121.0305345306452,49.214482251822744],[-121.03043150811231,49.21441743192989],[-121.03035200031485,49.21435765829266],[-121.0301674643734,49.21421971728371],[-121.03007371638316,49.214132488300955],[-121.02967223384377,49.213806340100575],[-121.02941878260641,49.21362207793121],[-121.02934860467369,49.21357146818752],[-121.02922022549791,49.21343865308497],[-121.02885325406858,49.213095200401675],[-121.0286340945267,49.21291167101643],[-121.0284956967385,49.212792215156384],[-121.0283420673325,49.21265456941461],[-121.02815674486232,49.21247598481226],[-121.02738147049486,49.211918550310685],[-121.02731768564709,49.21187245687573],[-121.02690477666484,49.211573116068735],[-121.02629386590814,49.21122965355837],[-121.0261633306186,49.21113311437013],[-121.02597617755207,49.21100378663221],[-121.0257578662077,49.210860612401376],[-121.02550326820835,49.21070335449841],[-121.02530777556268,49.21058774283352],[-121.02509393065353,49.210467041930386],[-121.02468170788289,49.21025767199628],[-121.02454564856394,49.21019667811966],[-121.0243926192414,49.21011770205381],[-121.02390764346548,49.20989791040119],[-121.02364431054654,49.20979015852108],[-121.02348273619363,49.20971078599858],[-121.02327726124004,49.20960823401419],[-121.02320442340613,49.20956651936228],[-121.02305922968225,49.209478600689174],[-121.0230312562011,49.20945108678896],[-121.02299392874222,49.20941467691397],[-121.0227158778187,49.209139876749134],[-121.02252839983572,49.20896569169706],[-121.02235270302229,49.20880981715358],[-121.0222263302391,49.20869062747717],[-121.02204371988987,49.20850313190501],[-121.02197206523998,49.20843440200442],[-121.02182456145451,49.20828800478073],[-121.02160807695581,49.20806398674091],[-121.021040591117,49.2075727692942],[-121.02080165988166,49.20739789681413],[-121.02031311056457,49.20708374756445],[-121.02008655175297,49.20695371234838],[-121.01934979377015,49.20659931020535],[-121.01848654059181,49.206319128205315],[-121.01798835479397,49.20620697073865],[-121.01772736813847,49.20615767184248],[-121.01617775604413,49.20601403559426],[-121.01533042542691,49.206017662689064],[-121.01524642220868,49.20601602863827],[-121.01482190214735,49.20601779977688],[-121.01452330678725,49.206030760940074],[-121.01437707146124,49.206032722625444],[-121.01407776112679,49.20603634665678],[-121.01370764151456,49.20604344826503],[-121.01342887410952,49.20604774233772],[-121.01311018768011,49.2060558168236],[-121.0128544788059,49.206069343516944],[-121.01257010035403,49.206077886976225],[-121.01239935954486,49.20608407034468],[-121.01203340145064,49.20610039116808],[-121.0117485410139,49.20611341266933],[-121.01167605104814,49.2061165411791],[-121.01158811637711,49.20611951336692],[-121.01091033106331,49.205680655125576],[-121.01074879274594,49.20560126302753],[-121.01059457531139,49.205517698415576],[-121.01046170497406,49.20544330698201],[-121.01033299874523,49.20537812247219],[-121.01018610313048,49.20529038500115],[-121.01001621122808,49.20519284690138],[-121.00976147576883,49.20505358646164],[-121.00922047599713,49.204796718978436],[-121.00890989797597,49.20466558665036],[-121.00851431817019,49.20451020068443],[-121.00818981686837,49.20439674644119],[-121.00789769312178,49.20430171110753],[-121.00761318225665,49.20421576241304],[-121.00748967814263,49.204182125693414],[-121.0072747577575,49.204119985472005],[-121.00709708027766,49.20406296498349],[-121.00693949315192,49.204010819206815],[-121.00689292905916,49.20399654117625],[-121.00637857213604,49.203843532238466],[-121.00607936509324,49.20376648904696],[-121.00548540530092,49.20363488494033],[-121.00514483297535,49.203575093945965],[-121.00505370764371,49.2035598661685],[-121.00475676299932,49.20350971394525],[-121.00455436353974,49.203474938857134],[-121.00408961770134,49.20340374213232],[-121.00376378516587,49.203366629290336],[-121.0034538512703,49.203325453084865],[-121.00311602465521,49.20328806119983],[-121.00304963328311,49.203282443638244],[-121.00291488323614,49.20325757321046],[-121.00258585860254,49.20320226207662],[-121.00249148086802,49.20316939404701],[-121.00225328792033,49.20308418211366],[-121.00153481777824,49.20286471676341],[-121.00130398333712,49.202806904940935],[-121.00120867010956,49.202782735764934],[-121.00100749787137,49.20272067027828],[-121.00060345069075,49.20262830204319],[-121.00033534342066,49.20253380075804],[-121.00014568560898,49.202476491248454],[-121.00000098564614,49.202448339532594],[-120.99991685221676,49.2024320243657],[-120.99979506865083,49.202398449162985],[-120.99961692318665,49.202345905357035],[-120.99888329140707,49.202139810981954],[-120.99868699602492,49.202064423491294],[-120.99846671076573,49.2019884893441],[-120.99826013022864,49.201912911824294],[-120.99785925649394,49.20180714515295],[-120.99755372364751,49.20172527117764],[-120.99737532591087,49.20165917671722],[-120.99717510158774,49.20158840399581],[-120.99711361473523,49.20156918689073],[-120.99698861272564,49.20151770083731],[-120.99543370524951,49.201090402695726],[-120.99534087875665,49.20107508718025],[-120.99527030212217,49.20106052642327],[-120.99509342196586,49.20101226533027],[-120.9945367688165,49.20088570672715],[-120.99427928535624,49.200836231323564],[-120.99421386705019,49.20082163001217],[-120.99410779111699,49.20080175398904],[-120.99397350729244,49.20077266147599],[-120.99351074194139,49.20068346228507],[-120.99348450044192,49.20065601985564],[-120.99342734424792,49.200596685649074],[-120.99307908847892,49.2002263195867],[-120.99296042225521,49.2001161825895],[-120.99282145772975,49.20000313402182],[-120.99258311216437,49.19980819467421],[-120.99238256327057,49.199660969167205],[-120.99185990213978,49.199251470014076],[-120.99182460222255,49.19922839694929],[-120.99178343471277,49.199196027465945],[-120.99171625334859,49.199150040331425],[-120.99103613662847,49.198751247061516],[-120.99075405638419,49.19861151164429],[-120.98994494571052,49.19827805466781],[-120.98960683041527,49.19816418527729],[-120.98874199919902,49.19793330126481],[-120.9885521444824,49.197894007095144],[-120.98863174007694,49.197665919646205],[-120.98865171963782,49.197576335984735],[-120.98864181421017,49.197477185553396],[-120.98861008133547,49.19713478477684],[-120.98859272045924,49.196945612229875],[-120.98844376097107,49.19624133547078],[-120.98836888274279,49.19605991529297],[-120.98821963098112,49.195756039254555],[-120.98811728921464,49.19557446766722],[-120.98774494499942,49.195046173268246],[-120.98758776728053,49.194863463548735],[-120.98713249496417,49.194419282353],[-120.98694671813,49.1942628690579],[-120.98612765832758,49.19370445341615],[-120.98597990542078,49.19362538139585],[-120.98565939319896,49.19344435188739],[-120.98555206099294,49.19338859341946],[-120.98525339563702,49.193243835344845],[-120.98506154686734,49.19315961195917],[-120.98499124784105,49.19312672073372],[-120.98473195858597,49.192951374472926],[-120.98451729893218,49.19283985549455],[-120.98331148571357,49.19236433493389],[-120.98301336127027,49.192278248080505],[-120.98167625891989,49.192016535837205],[-120.98137576280125,49.191984195240416],[-120.9807272774361,49.19194577466568],[-120.98044808771664,49.19192288030835],[-120.98041083778713,49.19188617639919],[-120.98037575215623,49.19184534137025],[-120.98020461179841,49.191617408377425],[-120.98007100474157,49.19143944792368],[-120.97993147424708,49.191252746746116],[-120.97964636795456,49.190919387955255],[-120.97947331097183,49.19074099354712],[-120.97925466585056,49.190507746772155],[-120.97909067253828,49.19032497383006],[-120.97899803882527,49.19022872797358],[-120.97885243692417,49.19008234766165],[-120.9787450843273,49.1899634151034],[-120.97867275465552,49.18988587479043],[-120.97863428462395,49.18984460126543],[-120.97846979149575,49.189634741792034],[-120.97832539834091,49.189461345989436],[-120.97815380888801,49.189269481611475],[-120.97812929164535,49.18924211471402],[-120.97797119994792,49.18906836765925],[-120.97769866402912,49.18879367321182],[-120.97752664133984,49.18863760204511],[-120.97722080247642,49.18838504761492],[-120.97707477331295,49.18827445891267],[-120.97665065771506,49.18798818218831],[-120.97643630607209,49.18785832258207],[-120.97563996202673,49.18752054371175],[-120.97562377072097,49.18747974055849],[-120.97540917470982,49.187098340895695],[-120.97533710438587,49.18697089961281],[-120.97530790400972,49.18690749811345],[-120.97525784182565,49.18679885212249],[-120.97510754524917,49.18655326474476],[-120.97496364359768,49.18634379975484],[-120.97492319026334,49.186289175944076],[-120.9748070169801,49.18612498713888],[-120.97481529391482,49.18608025516645],[-120.97484662388739,49.18588602121798],[-120.97528014614083,49.183689527190445],[-120.97545874703526,49.18345141184049],[-120.97609409781552,49.183165810274964],[-120.97698338434085,49.182866126916046],[-120.9780454693285,49.182476929055255],[-120.97882219518866,49.18213812921255],[-120.97914014599883,49.18197672549869],[-120.97969231637678,49.18163421676278],[-120.98034023385512,49.18097779767745],[-120.98046077033861,49.18083170567831],[-120.98078814453302,49.18039240917764],[-120.98100039960984,49.18008084117265],[-120.98130214560082,49.17979911107812],[-120.98139009389647,49.17970028914099],[-120.98150471956357,49.17957704809729],[-120.98161937470812,49.17945352857592],[-120.9817240224767,49.17932727716467],[-120.9818103315811,49.17919594711196],[-120.98188846219347,49.179060851591295],[-120.98195487631044,49.17892295355188],[-120.9820128995522,49.17878325636495],[-120.98206070232281,49.178642802666836],[-120.98209313051474,49.178501622768025],[-120.9821068869073,49.178358452956985],[-120.98210874588577,49.17821415966986],[-120.98210380251865,49.17806926029673],[-120.98210566149513,49.17792496694585],[-120.9821126454674,49.17778091261978],[-120.98213326498968,49.17763778305614],[-120.98217771069943,49.17749660404404],[-120.98224570875585,49.177359907492594],[-120.98233045675705,49.1772270873195],[-120.98242194534221,49.177095438734064],[-120.98251505148197,49.176964704725044],[-120.98260650895112,49.17683333426388],[-120.98269293221256,49.17670088068901],[-120.98276757933273,49.17656618133012],[-120.98283047950869,49.17642896685484],[-120.98288666745528,49.17629031130524],[-120.98293955978187,49.176150374036034],[-120.98298909636488,49.176009711720035],[-120.9830335679951,49.17586825366875],[-120.98307465387477,49.17572634891453],[-120.9831140302768,49.17558437342234],[-120.98314831272673,49.17544187156368],[-120.9831791173577,49.17529977597308],[-120.9832065062879,49.17515751202735],[-120.9832099487027,49.1750144200007],[-120.9831946005578,49.17487045158815],[-120.98317586612963,49.174726045468624],[-120.98316911943094,49.174581918663904],[-120.9831880571114,49.174438421215],[-120.98323588290977,49.17429767874812],[-120.9832905412375,49.174157254899015],[-120.98335358793821,49.174018638957605],[-120.98343314099166,49.1738861438882],[-120.98356248432064,49.17376950648057],[-120.98371935013806,49.173668256628375],[-120.98388894186141,49.173576335050434],[-120.98407263308903,49.17349691895243],[-120.98426093226885,49.17342251808913],[-120.98444908052596,49.1733495085677],[-120.98463890533444,49.17327686567013],[-120.98482863936489,49.173205057438146],[-120.98502004994937,49.17313361581897],[-120.98521145994584,49.17306217385187],[-120.98540116118885,49.17299065190297],[-120.98559089287498,49.17291884229724],[-120.98578071414255,49.17284619734006],[-120.98597059589585,49.17277298638884],[-120.98615718192238,49.17269849352557],[-120.98634394863417,49.17262232133176],[-120.98652949127819,49.17254157988604],[-120.986700599249,49.17245142131842],[-120.98685077339606,49.17234843860702],[-120.98698007286129,49.172232084138024],[-120.98709316944709,49.17210678981546],[-120.98718789954005,49.1719766960311],[-120.98727088447829,49.17184407858836],[-120.98734727875969,49.17170889798551],[-120.98741702233876,49.17157171090979],[-120.98748002319293,49.171433370342875],[-120.98753789935172,49.171294790908966],[-120.98758735580097,49.17115469108769],[-120.98763007066505,49.17101342882636],[-120.9876643359107,49.170870924533894],[-120.98769518477374,49.17072826100367],[-120.98772261728526,49.17058543823854],[-120.98774663250737,49.17044246521955],[-120.98776726245174,49.17029904565375],[-120.98778618420349,49.17015554645587],[-120.98779998165783,49.17001180843431],[-120.98781033287533,49.16986818952538],[-120.98781385183021,49.16972425219944],[-120.987813923664,49.169580442966385],[-120.9878122884273,49.169436545126906],[-120.98780891415652,49.1692928549766],[-120.9878038628884,49.169148797880936],[-120.98779707261804,49.16900494847409],[-120.9877902823897,49.16886109903518],[-120.98778352321352,49.16871696224662],[-120.98777673306911,49.16857311274331],[-120.98777165096872,49.16842934280486],[-120.98776830790653,49.168285365113974],[-120.98776667188741,49.16814147596706],[-120.98776674483366,49.167997657406616],[-120.98777370978436,49.1678536005246],[-120.98779095258622,49.16770974285211],[-120.98781838302367,49.1675669194022],[-120.98785764695225,49.167425784399484],[-120.98791222317506,49.16728591340728],[-120.9879769247076,49.16714765123644],[-120.98804989332369,49.16701230997497],[-120.98814622723049,49.16688313792316],[-120.98827556930746,49.16676621526718],[-120.9884129969763,49.16665389240393],[-120.98855374780658,49.16654258149293],[-120.9886977026158,49.16643338690291],[-120.98884638622204,49.16632808517905],[-120.989003064316,49.166228227159905],[-120.98916776693234,49.16613353447294],[-120.98934055413709,49.16604345040291],[-120.98951474635975,49.16595624697469],[-120.98969381853465,49.16587153561413],[-120.98987258785293,49.16578962530845],[-120.99006701278047,49.16572170006349],[-120.99026888804059,49.16566426434731],[-120.99047082187974,49.165606280544715],[-120.99067275618397,49.16554828737983],[-120.99087459895473,49.16549113783294],[-120.99107796804323,49.16543574647314],[-120.99128274145832,49.16538324461441],[-120.99148879819812,49.16533475459316],[-120.99169607924917,49.165290824106854],[-120.99190879920664,49.1652601227957],[-120.99212803102257,49.16524862022229],[-120.99235007344396,49.16524288797659],[-120.99256957806583,49.16522885249422],[-120.99277927439996,49.16519434504136],[-120.99298257893969,49.165139515722956],[-120.99318014039106,49.16507426685486],[-120.9933699177979,49.165001607654496],[-120.99354745335576,49.16491512224633],[-120.99373692757412,49.16484526375955],[-120.99394010848484,49.16479155495204],[-120.9941462808036,49.16474193745598],[-120.99435391959727,49.164694634772225],[-120.99456146700726,49.164648175690715],[-120.9947691039927,49.164600881178636],[-120.99497527554983,49.164551253102815],[-120.9951771387031,49.1644938170646],[-120.99537152047662,49.16442616045397],[-120.99557176567421,49.16436780018116],[-120.99578218147497,49.164326552736924],[-120.99599892960515,49.164306182868515],[-120.99621824684475,49.16429382794664],[-120.99643999731126,49.164274817931215],[-120.99666351639803,49.16425532125008],[-120.99686737105988,49.16421123080656],[-120.99704078597313,49.16413103639786],[-120.99720073389702,49.16403244737379],[-120.99734990509143,49.16392235679404],[-120.99748931203138,49.163807299916236],[-120.99761850119104,49.16369148784594],[-120.99772480693453,49.16356502792802],[-120.99781293126044,49.1634320733105],[-120.99789095894945,49.16329724127287],[-120.99795226957961,49.163158256704676],[-120.99798814528941,49.163016383539315],[-120.99800867944909,49.162873526048806],[-120.9980275665912,49.16273002342081],[-120.99804477578746,49.16258616297889],[-120.99805853930206,49.16244242197771],[-120.99807062587941,49.16229831418538],[-120.99807758804707,49.162153977035814],[-120.99808278243722,49.162010117108615],[-120.99808108476326,49.16186650508029],[-120.9980742338044,49.16172293306181],[-120.99806573506966,49.161578724887256],[-120.99805558954161,49.16143387157707],[-120.99804199858684,49.16128913770855],[-120.99802496223744,49.16114452328051],[-120.99800100314792,49.16100044406763],[-120.99797177110698,49.16085751823405],[-120.9979337888042,49.16071616155045],[-120.99788873310422,49.16057674077006],[-120.99783142286984,49.160439556302556],[-120.99775831898756,49.16030559854657],[-120.99767122212488,49.1601740849409],[-120.99757363773954,49.16004433930266],[-120.99747077992592,49.1599157559227],[-120.99736618500161,49.159787371318444],[-120.99726332736235,49.159658796668566],[-120.9971674838327,49.159528842683095],[-120.99707871238721,49.15939697064716],[-120.99697927273549,49.15926854557114],[-120.99685828348731,49.15914898983033],[-120.99673193005916,49.15903144028462],[-120.9966020100893,49.15891514133817],[-120.99647026317459,49.15879987613583],[-120.99633848692919,49.158684889097394],[-120.99620500271332,49.15856983139184],[-120.99607152012493,49.15845476452165],[-120.99594148250634,49.158339587036494],[-120.9958132750525,49.15822335750509],[-120.99569402914172,49.15810360138991],[-120.99571466007177,49.15795989026584],[-120.99579433135132,49.157825703757915],[-120.99590389300066,49.1577008041489],[-120.99603316007257,49.15758414887896],[-120.99617700867735,49.15747550846557],[-120.9963322363455,49.15737274857042],[-120.99650482530285,49.15728406148731],[-120.99668995743001,49.15720638041168],[-120.99687981814925,49.15713259178754],[-120.99707724923712,49.15706817898887],[-120.99728161643507,49.15701903214635],[-120.9974930108156,49.156984307205455],[-120.99770859073973,49.15695852074521],[-120.99792713215986,49.1569371038424],[-120.99814567337879,49.156915686495466],[-120.9983613125637,49.156889342032656],[-120.99857438220918,49.156854981718645],[-120.99878601655388,49.15681800949842],[-120.9989978003939,49.15677964512532],[-120.99920982650472,49.156739026620116],[-120.99941864874214,49.156696282479665],[-120.99962777215367,49.15665073650124],[-120.99983375156243,49.156602508215784],[-120.99999951954509,49.156561153835675],[-121.00003835541594,49.15655111137085],[-121.00024011769412,49.15649422183515],[-121.00043720898995,49.15643289157367],[-121.00063460222789,49.15636875053259],[-121.00083040812883,49.15630340736227],[-121.00102621347986,49.15623806382942],[-121.00124217680653,49.156176761318235],[-121.00157420779888,49.15610534202125],[-121.00214592431477,49.15597540765718],[-121.0028105016568,49.1557798511585],[-121.00343021262134,49.155411041013295],[-121.00376240966203,49.15500291520283],[-121.00383467262772,49.154538439087716],[-121.00374564900186,49.154105667772754],[-121.00355187081193,49.15370554036257],[-121.00322820340408,49.15326863131667],[-121.00283559303246,49.152930315150535],[-121.00282880679944,49.152913639381424],[-121.00123010417852,49.151536490985336],[-121.00077002487379,49.1509962212188],[-121.00000015154588,49.150432806018884],[-120.99995716340669,49.15040175856317],[-120.99933418169046,49.15000420754212],[-120.9984184099691,49.149569063299055],[-120.99751191877284,49.149223174411894],[-120.9964441384494,49.14916417924004],[-120.99539094176949,49.149081315900254],[-120.994705967681,49.14900486604337],[-120.99389939978514,49.1489103505876],[-120.99336525292914,49.14873996318778],[-120.99305555492208,49.14850896222148],[-120.99260389536583,49.14814641857721],[-120.99210261436568,49.14775082492616],[-120.99162521940607,49.14743615019736],[-120.99111862011574,49.14718552785106],[-120.99064127141311,49.14683870619043],[-120.99002547985049,49.14628012212271],[-120.98968654907192,49.14616139650154],[-120.98937340179555,49.14599451855037],[-120.98908772072937,49.145747982384364],[-120.98893243059587,49.14535834552484],[-120.98895022811185,49.14489104755678],[-120.98904335075622,49.144425284380446],[-120.98905754847891,49.14407089974804],[-120.98907172757372,49.14373259512484],[-120.988966136704,49.14331171272065],[-120.9887647501085,49.142824611382565],[-120.98843825858825,49.14239991718939],[-120.98827420976582,49.142171175718495],[-120.98811539222243,49.141846227122215],[-120.98793085618095,49.14156887266174],[-120.98757156058589,49.141353017046704],[-120.98698021837947,49.14114129095053],[-120.98638550528005,49.14089725072555],[-120.98546646440698,49.140542762187806],[-120.98498214753917,49.140356881106854],[-120.98460068041662,49.140092331531065],[-120.98441621133856,49.13978281867698],[-120.9844286968819,49.1394605041112],[-120.98433023913476,49.138878635950576],[-120.98432411280173,49.13839498261265],[-120.98427356306587,49.13784609477102],[-120.9841494468331,49.1372635958345],[-120.98398987998134,49.136357941438995],[-120.98381425786047,49.135855383441196],[-120.98363696279439,49.13535246674964],[-120.9834303289723,49.13499425666632],[-120.98291060213384,49.13448549608935],[-120.98167775776282,49.133527753944016],[-120.98043796799381,49.132491834043954],[-120.9796806817846,49.131769195864514],[-120.97912820042662,49.13145319463952],[-120.97846128545069,49.13095811328435],[-120.97818286378231,49.130566364543895],[-120.97802418633367,49.13024111690889],[-120.97750639496377,49.12966783266209],[-120.977119747731,49.129500008075404],[-120.97641293364147,49.129358672928134],[-120.97589765438777,49.12934953574801],[-120.97550924172673,49.129229849228494],[-120.97532304979843,49.12898480950785],[-120.9753816278065,49.12876024869007],[-120.97544198808198,49.128503328051835],[-120.97530911436395,49.128114141869396],[-120.97513001629058,49.127724201378165],[-120.97494568148487,49.127398594779535],[-120.97481094338788,49.12710604465537],[-120.9747773568413,49.12671867530266],[-120.97481561577646,49.126380636799844],[-120.97491420373031,49.125785955042616],[-120.9750811131727,49.12527316206668],[-120.97519110725064,49.125017153729324],[-120.97529761095194,49.12479342527367],[-120.97548569822757,49.12441782930019],[-120.97574298616112,49.12411597780898],[-120.97609595816317,49.1238967164622],[-120.97667159782492,49.12361650772492],[-120.97724362572993,49.12343315025477],[-120.97789277131747,49.12320263155291],[-120.97848698945306,49.12305189098287],[-120.97913077562897,49.122950274010016],[-120.97977107404193,49.122880924526164],[-120.98029335399148,49.12274514179945],[-120.98076606831387,49.12257601475818],[-120.98131411801182,49.122392085057164],[-120.98188783977538,49.12219270152566],[-120.98270636263612,49.12198134688751],[-120.98345478769232,49.12170438089212],[-120.98396205833401,49.12131012202954],[-120.98421660186452,49.121064807108354],[-120.98444986714527,49.120762374729196],[-120.98470702780685,49.12047685026738],[-120.98503600059644,49.12024093713904],[-120.9856558422334,49.12009050693375],[-120.98646715487533,49.120088600033675],[-120.98696019540104,49.12003264286045],[-120.98796484246728,49.12009841419168],[-120.98866976112768,49.12028809866396],[-120.98925502157206,49.12037884810429],[-120.99023220638819,49.12049267176057],[-120.99160484497114,49.120580918976145],[-120.99226193853458,49.120721259627295],[-120.9931877210383,49.120882564943024],[-120.99442827169042,49.121210264585024],[-120.99512620837072,49.121544809120245],[-120.9955039852198,49.12193833677051],[-120.99558831334453,49.122254166299086],[-120.99571961737954,49.122659332196555],[-120.9959449233486,49.123163063285844],[-120.99607446571186,49.12360057949841],[-120.99629975019113,49.124136452536305],[-120.99647017663324,49.12475184637402],[-120.99673634995051,49.12546560502386],[-120.99688984270922,49.12591973710822],[-120.99717009947952,49.12631152868401],[-120.9975479786761,49.12668867830147],[-120.99821678573562,49.127135500186064],[-120.99873052115727,49.12750938450874],[-120.99945857171008,49.12802747585006],[-120.99999683343684,49.1283489169018],[-121.00015313271174,49.128442488760165],[-121.00082722280055,49.128792796565854],[-121.00145522030965,49.12906144269527],[-121.00241717462539,49.12946235437904],[-121.00331951770708,49.129540413184564],[-121.00418692511653,49.12930522451457],[-121.00507119775435,49.128928961327404],[-121.00583246364288,49.128707722959135],[-121.00708813328032,49.128322471281116],[-121.00838307095579,49.127794931226006],[-121.00918283408213,49.12748634464],[-121.01067782968683,49.12693197355102],[-121.01216578747281,49.12657070788527],[-121.01373904389291,49.12653317988419],[-121.0150797478266,49.12645720857353],[-121.01756666166419,49.12666364329594],[-121.0202113949663,49.12683784403789],[-121.02320077443535,49.12728513755263],[-121.02599408076738,49.12780222966208],[-121.0281741277379,49.128152688386606],[-121.03002367575573,49.128434520141155],[-121.03300680764232,49.128733194778064],[-121.035454816604,49.128968143460256],[-121.0372891457665,49.129184279350234],[-121.0380015336574,49.12927470412103],[-121.03923774831186,49.12935829194909],[-121.04038144881909,49.12940882739368],[-121.04166713395296,49.12943064563408],[-121.04229009232229,49.12937874129484],[-121.04258389676858,49.129164722288515],[-121.04283777619827,49.12876218359611],[-121.0432450844066,49.12814309152485],[-121.04359795889505,49.127648390173455],[-121.04418878870607,49.12715761471],[-121.04496981967684,49.12673256599905],[-121.04550630116285,49.12639747559278],[-121.0445079743587,49.125128698920456],[-121.04383540728048,49.12402186263158],[-121.04361813924854,49.12348619535658],[-121.04331871119723,49.12314215973924],[-121.04293139141657,49.12278617196524],[-121.04241705751333,49.12249567440392],[-121.04181019511755,49.12217241531325],[-121.04143649012326,49.1219783529736],[-121.04126081359176,49.121599701638175],[-121.04123368172424,49.12109845624695],[-121.04134850384618,49.12056852340127],[-121.04139902678074,49.12019127787716],[-121.04138198199783,49.11972406640972],[-121.04130219545073,49.119298510406246],[-121.04117278142724,49.11900066369867],[-121.0407287519724,49.118147978913456],[-121.04050244545684,49.11734398284769],[-121.03994948869745,49.11637148524774],[-121.03953896753859,49.11570336387917],[-121.03924809144635,49.11529597574156],[-121.03912929900467,49.1149630771461],[-121.03911613416497,49.114732922736295],[-121.03915251032635,49.1143598218493],[-121.03917221671357,49.11388583725526],[-121.03907683500162,49.11351031493198],[-121.03887478302974,49.11309009638488],[-121.03864932624917,49.11271251803243],[-121.03848756464143,49.112364664545105],[-121.03839368816477,49.111975114118344],[-121.03832055505677,49.111600048696495],[-121.03842601607647,49.111141871744266],[-121.03865552609474,49.110886819096514],[-121.03912593491306,49.11060736391489],[-121.03948583852686,49.110383436993075],[-121.0399978385487,49.11014791555707],[-121.04051390257384,49.10982601058679],[-121.04096375896034,49.10954615845253],[-121.04146026539793,49.10916637668917],[-121.04167773895435,49.10863806974916],[-121.04167111353618,49.10825000377809],[-121.04165662229528,49.10804826689362],[-121.04169584533595,49.10763214020432],[-121.04179564300256,49.107339237540046],[-121.0418943320796,49.107024562282014],[-121.04198952383845,49.10683915954883],[-121.04225670576011,49.106728826909745],[-121.04261133461661,49.10663436064849],[-121.04302967628394,49.106569355918936],[-121.04349347246946,49.106447780983366],[-121.04384809572142,49.10635331958427],[-121.0442913584837,49.106231353343084],[-121.04462239906312,49.10616512998711],[-121.04517112662408,49.106131229153426],[-121.04558656370361,49.10610949614036],[-121.0463349235678,49.106036013435585],[-121.04677295773398,49.10604351866379],[-121.04732168229714,49.10600960685427],[-121.0477632259269,49.105887556562905],[-121.04805378509755,49.105734566078404],[-121.0486258999532,49.10565801322621],[-121.04917864268818,49.10553797943629],[-121.05053939387264,49.10546025351143],[-121.05109194571942,49.10532582593408],[-121.05179849432432,49.10519396961596],[-121.05243428693407,49.10514711441765],[-121.05304836297522,49.10514325688889],[-121.05361796986313,49.10513846682388],[-121.05401152578519,49.10514503149961],[-121.05427331831396,49.105149470768254],[-121.05464731454595,49.10509817219856],[-121.05489296869203,49.104980321095674],[-121.05518601845284,49.104755243265984],[-121.05532795764125,49.10448428667145],[-121.05544796987994,49.104242208239114],[-121.05552718470015,49.10388404210284],[-121.05552448538072,49.10340959170602],[-121.05553830372833,49.10302162168912],[-121.05544834531632,49.102545688999044],[-121.05550049773171,49.10234532665443],[-121.05563838634104,49.102160760232884],[-121.0558813840017,49.10193872743308],[-121.05622058524129,49.101811373330065],[-121.05655294405659,49.10171612700158],[-121.05686437491609,49.10159199571432],[-121.05713531600311,49.10138111890554],[-121.05749372630497,49.10118582703481],[-121.05784831069057,49.101091040331355],[-121.0582884155766,49.100997922795074],[-121.05868364282988,49.10100454890732],[-121.05896764514523,49.101009440254046],[-121.0594014441052,49.10108861461584],[-121.05977043553563,49.101180886885246],[-121.06011449745297,49.10133037908408],[-121.0603311813085,49.101420435027975],[-121.06060755329605,49.101626325927654],[-121.0609464715397,49.10190502024723],[-121.06156202790714,49.1024840774002],[-121.06054086989715,49.10001075675777],[-121.01947224134005,49.000291265736806],[-120.64379623541211,48.998036732311064],[-120.58335091578834,48.99803084592558],[-120.50001900023288,48.998030940785085],[-120.4166863066878,48.998030918188114],[-120.40238893606657,48.99803530048028],[-120.33335268757385,48.998031045431546],[-120.25001976025769,48.9980311423196],[-120.16668741167055,48.99803119238379],[-120.08335552430943,48.998031214782706],[-120.00002224711378,48.99803139329281],[-119.74998029163727,48.99803342925687],[-119.70122588364936,48.99807517116325],[-119.52028150707778,48.99805069029486],[-119.49998077201222,48.998030235834385],[-119.24998332075837,48.998031347904295],[-119.20147075612815,48.99807380635848],[-119.02580558302819,48.998056689099315],[-118.99998551083799,48.998031715599275],[-118.74998776188554,48.99803071378818],[-118.63895615367139,48.9980968481516],[-118.49998858229301,48.99802902405391],[-118.24999081070332,48.99803214706808],[-118.06408497957354,48.998081252488724],[-118.06000611445265,49.00317747837421],[-118.0598359047411,49.006426591699324],[-118.05957473874813,49.00996679300916],[-118.05801208658909,49.01276105440183],[-118.05507133741867,49.016301740808494],[-118.05506983352878,49.02041048308151],[-118.05611078811123,49.02252072687416],[-118.0568990196453,49.025145302463685],[-118.05508635931423,49.02891557769295],[-118.05100101936343,49.03102454721339],[-118.04716910531981,49.03462195705536],[-118.04717255740823,49.0382157059934],[-118.04831444814003,49.04294927806781],[-118.05066715938032,49.0463132642754],[-118.05310716655296,49.04916892897302],[-118.05389484924552,49.05276276932823],[-118.05155027849823,49.055615457815314],[-118.05076740196169,49.0585824416839],[-118.05138413792942,49.06229094962739],[-118.05077197929157,49.06337624639228],[-118.0508548699699,49.06690918811944],[-118.04982320754542,49.06947996533284],[-118.04825168661422,49.07239086184056],[-118.04790788280397,49.074558606720245],[-118.0486885160796,49.07706918959187],[-118.0511264012623,49.08163306066189],[-118.05322660115326,49.08608227731833],[-118.05227239427208,49.08916326916844],[-118.05080017409912,49.09213417434792],[-118.05228082030861,49.09578342551973],[-118.0522843546188,49.096807384049285],[-118.05358676737148,49.10085581062107],[-118.05159003897374,49.104395598951335],[-118.05098537101803,49.107362044801825],[-118.05167433444784,49.1085636699734],[-118.05194765222083,49.1126732719736],[-118.04907764982443,49.11592173122405],[-118.04854851482682,49.118606404645746],[-118.0492561750047,49.122028848790045],[-118.05055850622539,49.127445854500635],[-118.05083005663121,49.135261083315086],[-118.0526614118056,49.14097050502921],[-118.05266078471439,49.14153662261376],[-118.05676372333679,49.14484811153405],[-118.0618220979141,49.147411464846805],[-118.05528467304035,49.14752855422009],[-118.04682874430452,49.14878787059066],[-118.03819724724801,49.15050430014628],[-118.03602200200135,49.15369987811991],[-118.03924907547832,49.15649400896644],[-118.0432622226782,49.15888631012302],[-118.04465645787158,49.16128152695739],[-118.04570548776478,49.165848621761526],[-118.04657553386242,49.16921122191984],[-118.04823213025516,49.17200819882502],[-118.05242510410318,49.17400539681164],[-118.05992554876134,49.17536971065432],[-118.06786338474667,49.17667775832709],[-118.06899974356207,49.176563333255],[-118.0716079653498,49.17679061946379],[-118.07657968727808,49.17924000613398],[-118.07641517164886,49.182377395652054],[-118.07345442842538,49.18557720477841],[-118.06979829988651,49.19025800851403],[-118.06857318541172,49.19499439033517],[-118.06761809584974,49.2012123531235],[-118.0676304169782,49.20766052421663],[-118.06910757640998,49.21296860045687],[-118.07182312704211,49.22152078546667],[-118.0745341518095,49.22688258044863],[-118.07532015565108,49.2282563991896],[-118.08065229357041,49.23669584658453],[-118.08686301290854,49.2434815321999],[-118.0872129983995,49.24393749527125],[-118.09166366183841,49.24633084407623],[-118.09813799191485,49.249408803014155],[-118.09996718789043,49.250663706004836],[-118.10329386004193,49.25430881365661],[-118.10819071346855,49.257900651371514],[-118.11124738675049,49.25989715969977],[-118.11597527314764,49.26246184366676],[-118.12304676832144,49.26262412416746],[-118.12488358304651,49.262624816828314],[-118.12720281253264,49.26311783388512],[-118.13048111901557,49.26381881491182],[-118.13432327418326,49.26672610785234],[-118.13529606583178,49.268720752590255],[-118.13668944121684,49.27059839586214],[-118.13913726102034,49.27293710374553],[-118.14254308072411,49.272080368194665],[-118.14463921716062,49.26990706750609],[-118.14579657094164,49.26851215368962],[-118.16540456391843,49.27822338207022],[-118.17569194145977,49.2989358058856],[-118.175737230922,49.29902540796294],[-118.1762251979872,49.30000001717016],[-118.18933341097788,49.326100465794624],[-118.2000001512669,49.32463047829351],[-118.20373965806941,49.32411471870387],[-118.20366436577108,49.32438654480238],[-118.20360326532627,49.32455386547551],[-118.20374691664144,49.32470630413541],[-118.20390873315104,49.324853538776416],[-118.20410937620264,49.32497558010508],[-118.20432950328755,49.32508460855797],[-118.20455195384858,49.32519011971975],[-118.2047950226868,49.32527590046286],[-118.20504083774509,49.325355659329254],[-118.20530346924413,49.32540749024905],[-118.20557344301092,49.32544655173052],[-118.20584473868976,49.32547778601326],[-118.20611867755707,49.325493366563066],[-118.20637799807315,49.325554579376586],[-118.20663438538473,49.3256229309957],[-118.20689446383706,49.32567966131134],[-118.20716485587218,49.325706019100934],[-118.20744262720572,49.325709143744845],[-118.2077162568616,49.325695843027454],[-118.20799216024986,49.325679310948864],[-118.20824230827208,49.32561054797031],[-118.20848380343064,49.325521357589416],[-118.20872440242006,49.32543747082739],[-118.20899616176806,49.32540451156401],[-118.2092653084309,49.3253665459733],[-118.20953317113306,49.32532594272248],[-118.20979389972536,49.32526615370486],[-118.21006314962607,49.325237808881354],[-118.21033801101028,49.32522742473103],[-118.2106137332434,49.32522218136416],[-118.21088917016507,49.32521862783681],[-118.21115696897012,49.325260342605006],[-118.21139028494905,49.325352762952825],[-118.21160043159195,49.325469817425905],[-118.21180683338495,49.32558858334405],[-118.21201167037142,49.32570638454528],[-118.21224049139028,49.32580497827194],[-118.21247874682096,49.32589888477569],[-118.21272349348703,49.325985057327955],[-118.21297453395947,49.3260544187675],[-118.21323929970299,49.32609365412503],[-118.21351589541398,49.32610374896929],[-118.21379495334192,49.32610949422981],[-118.21405981514091,49.32614816405896],[-118.2142700656674,49.326264658632425],[-118.21446064800372,49.32639528514966],[-118.21464573101365,49.3265277771012],[-118.21482863515041,49.32666294494545],[-118.21500589813553,49.3268008190688],[-118.21517003117354,49.326944805582514],[-118.21533392840352,49.327090196135096],[-118.21549593032698,49.327236581049455],[-118.2156525263331,49.32738427696165],[-118.21580338755638,49.32753523384084],[-118.21594158925888,49.32768951252259],[-118.21606675275032,49.32784935817485],[-118.21618063251049,49.328014616988746],[-118.21627834180929,49.32818351437467],[-118.21636528601866,49.328354748012],[-118.21643112453181,49.328528131907184],[-118.21646324162568,49.328706719859085],[-118.21648639591469,49.32888720406099],[-118.2165414711884,49.32906291519714],[-118.21667764022743,49.32921903698867],[-118.21681385844776,49.32937487234185],[-118.21695358834113,49.3295303908178],[-118.21709160978854,49.32968579460059],[-118.21723138830498,49.32984103535965],[-118.21736941311724,49.329996429770866],[-118.2175073438424,49.33015238748581],[-118.217643567596,49.33030822157609],[-118.2177814519127,49.33046446509881],[-118.21790653574371,49.330624862528644],[-118.21800268916685,49.330792802431866],[-118.21808973964987,49.33096347049835],[-118.21817128996844,49.33113600441341],[-118.21824766882209,49.33130845424524],[-118.21829023252519,49.33148665429468],[-118.21833288854532,49.33166430865383],[-118.21837374494459,49.33184238517451],[-118.21840245589144,49.3320207248638],[-118.21838249633987,49.332200636214694],[-118.21837121677245,49.33238033266045],[-118.21836164661042,49.332560143512424],[-118.21835036687466,49.332739839859194],[-118.21833738056148,49.332919403811104],[-118.21832263788467,49.33309913054174],[-118.21830447907121,49.33327861041959],[-118.21828632011712,49.333458090246175],[-118.21826987055474,49.333637684478646],[-118.21825688216992,49.33381725712438],[-118.21825072734242,49.33399731438374],[-118.21825463070819,49.33417923903205],[-118.21824501146202,49.33435933561872],[-118.2181865190491,49.33453193572839],[-118.21808076599952,49.33469772620462],[-118.2179581667868,49.334860887109826],[-118.21784235225248,49.3350248187529],[-118.21771818352323,49.33518702404702],[-118.21759406218997,49.33534894293105],[-118.21748161457253,49.33551339817558],[-118.21739607035971,49.33568235029158],[-118.21734070575087,49.335856878020785],[-118.21730375435057,49.336034990468775],[-118.21727856942638,49.33621509379686],[-118.21725675379277,49.336395721187756],[-118.21723161525023,49.33657554712494],[-118.21720481664536,49.33675496336255],[-118.21718836021253,49.33693456548962],[-118.21718704168343,49.33711667368802],[-118.21723169190508,49.33729275987497],[-118.21740270016302,49.33743724335345],[-118.2176551762475,49.337498488932106],[-118.2179316297932,49.33748931821008],[-118.21820554989108,49.33746440973717],[-118.2184771860135,49.33743253636955],[-118.21874534566068,49.33739051567078],[-118.2190105122664,49.33734573408716],[-118.21928333654023,49.33731705902857],[-118.2195554999835,49.33729230102853],[-118.21982871233661,49.33727157452437],[-118.22010287867374,49.33725544302056],[-118.22037804581774,49.337243629226414],[-118.22065269415167,49.337234891690244],[-118.22092867361874,49.33722851297814],[-118.22120447811399,49.33723342878928],[-118.22148096421006,49.3372548162067],[-118.22175646311652,49.3372820616696],[-118.22201670674936,49.33732801396282],[-118.22218663391514,49.33746873499448],[-118.22236775486142,49.33760459638729],[-118.22255466016888,49.33773691863012],[-118.2227416600013,49.337868685954376],[-118.2228983632689,49.33801608279393],[-118.22304188464743,49.3381698881106],[-118.22320973448605,49.33831271125384],[-118.22338711520794,49.33845028300425],[-118.22356819527917,49.33858642841674],[-118.22375306966988,49.33872058395931],[-118.22395401342425,49.33884146784284],[-118.22418870804032,49.338936495457816],[-118.22442349856584,49.339030959035405],[-118.22465013689788,49.339132764427404],[-118.22486857788009,49.339242180021905],[-118.22508498312047,49.33935342180456],[-118.2253153710165,49.339453513454906],[-118.22555002481111,49.33954881531399],[-118.22579405468468,49.33962952009306],[-118.22606549373647,49.33966042569143],[-118.22633716820238,49.3396899352352],[-118.22660548792847,49.339729097378935],[-118.22687523313256,49.339770063722895],[-118.22715090363961,49.33980664953573],[-118.22740288726695,49.339870949119074],[-118.22761422338105,49.339981538681855],[-118.22780438152684,49.340115215975956],[-118.2279947757748,49.340247497534556],[-118.22818938911762,49.34037526663412],[-118.22837257572141,49.34050929067785],[-118.22853494894811,49.34065397151132],[-118.22868779195288,49.340803912565896],[-118.22884623238527,49.34095142337651],[-118.22902179002746,49.34108970291222],[-118.22921636154037,49.341217756234],[-118.22943292652292,49.341328157130555],[-118.22963935128193,49.34144744075971],[-118.22983971073143,49.341571944769065],[-118.23002869006356,49.34170242658035],[-118.23020701264632,49.34184485930666],[-118.23029905163285,49.34200681642973],[-118.23027367903256,49.342188316548835],[-118.23024498285409,49.342369015618864],[-118.23021656959627,49.34254803302717],[-118.23018136924372,49.34272628024703],[-118.23013762813902,49.34290390240074],[-118.23008709826732,49.343080763295596],[-118.23003818303906,49.34325830190535],[-118.22998086693185,49.343434383570354],[-118.22989678044186,49.34360513944357],[-118.22978592179591,49.343770578411345],[-118.22967677229877,49.34393613149959],[-118.22961973564882,49.344110540139795],[-118.22965523788871,49.344289921020724],[-118.22977019612472,49.3444492848058],[-118.22975444389913,49.34462497795448],[-118.22963413284762,49.34478491863916],[-118.22948386984297,49.3449378825883],[-118.22935676983603,49.345097052715005],[-118.22923778807638,49.34525935223561],[-118.22912374264689,49.345423139352285],[-118.2290129717945,49.34558801356562],[-118.22890704394626,49.34575492996847],[-118.22880282383991,49.34592196945916],[-118.22867429199805,49.346079342669],[-118.22849063762469,49.34621490468103],[-118.22827320791552,49.34632511618831],[-118.22804237717627,49.346422482686435],[-118.22780817512465,49.346519324897294],[-118.22758774869756,49.34662677504105],[-118.227369984924,49.346738943535996],[-118.22715820740459,49.34685663147946],[-118.22696708473956,49.34698515222545],[-118.22680464282291,49.347128190197346],[-118.22666447252188,49.34728273007288],[-118.22653702637106,49.34744385519509],[-118.22641276287267,49.347606613080686],[-118.22628370133084,49.34776705104717],[-118.22614200566109,49.34792035769765],[-118.225973477154,49.348058428833724],[-118.22575137879642,49.348165465484946],[-118.22551374597825,49.34826205591459],[-118.2252648460126,49.34834340186894],[-118.2250450184692,49.34844720610269],[-118.22486457135201,49.348584135077076],[-118.22468569158147,49.34872201886328],[-118.22451483521337,49.348863595750245],[-118.22437640736028,49.349017978280116],[-118.22425744481234,49.34917999409163],[-118.22414655419314,49.349345416958],[-118.22404069368376,49.34951177309815],[-118.22393981659849,49.34967933980656],[-118.22384553965948,49.3498487860228],[-118.22374636977715,49.35001647577721],[-118.22363404860434,49.3501801019749],[-118.22350686737725,49.35033954126203],[-118.22337308734018,49.35049708280239],[-118.22323935162409,49.350654355805155],[-118.22310889212193,49.35081270708841],[-118.22298982705071,49.350975275631],[-118.22289991464777,49.35114957185825],[-118.22266997858691,49.351231150007656],[-118.22240332164236,49.35128432955952],[-118.22240321171365,49.35904071036363],[-118.22192801208828,49.35899679188586],[-118.22165452886266,49.35897734347832],[-118.22138019969485,49.35896291216845],[-118.22110524475,49.35894193475816],[-118.2208328467567,49.358916053275244],[-118.22056324262903,49.358883863474595],[-118.22029717487862,49.35883070743754],[-118.22002701920967,49.35881204724743],[-118.219752736978,49.35883836380188],[-118.21949463613143,49.35890206093583],[-118.21924761424737,49.358982110871445],[-118.21900059000059,49.35906216917792],[-118.21885064766977,49.35911018961947],[-118.21845790394713,49.35911068544353],[-118.21818200635526,49.35909529081233],[-118.24350789867854,49.400000028229044],[-118.24554417198965,49.403290407800874],[-118.25602405262572,49.403290123784295],[-118.25686571236992,49.40648285585879],[-118.25820115500515,49.410818439159854],[-118.26136458199318,49.414747602496575],[-118.26426729576966,49.41668462400947],[-118.26523834106793,49.417254899404064],[-118.26988942639895,49.41901294143772],[-118.27347758855556,49.4199233014911],[-118.27454264227629,49.42191679073572],[-118.27261223958646,49.42260400657735],[-118.26981296441201,49.423183990654096],[-118.26500553797634,49.42433481660103],[-118.26062364192482,49.42765218314099],[-118.25888495760626,49.43164803489186],[-118.25864759249063,49.436275388348896],[-118.25655461829177,49.440726383542035],[-118.25314485282048,49.44261969496606],[-118.25535781903194,49.447182036513865],[-118.25930971157892,49.448826764650484],[-118.2638910397971,49.453905033022515],[-118.27075462036399,49.46050992287034],[-118.27568269766705,49.465353993930016],[-118.27577781655478,49.46734862691454],[-118.27832634673582,49.468774165123655],[-118.28027769346048,49.471279849820384],[-118.27940097769444,49.47328081888777],[-118.28003672513967,49.47858533969866],[-118.28312540161458,49.48365937523352],[-118.28366541864978,49.486395028052414],[-118.28456108758863,49.49073311277701],[-118.28414490272938,49.49478521402783],[-118.28153269259484,49.499930659948824],[-118.28135527045909,49.50107024158266],[-118.27646168906219,49.505992753430625],[-118.27481096638145,49.50895993769529],[-118.2743862595693,49.51346953604108],[-118.27563759908068,49.51866331802322],[-118.27697837363613,49.524483352674835],[-118.27688864348899,49.52476937893068],[-118.2742585888729,49.52637129430514],[-118.27057467571365,49.52837527833134],[-118.26338841528984,49.53204124878604],[-118.25875170589556,49.5358196379742],[-118.25805328078464,49.53798587834062],[-118.2571807268136,49.54192652005857],[-118.25631795021685,49.54729156370134],[-118.25581451109652,49.55134850808176],[-118.25476201036321,49.55231624653243],[-118.25055569001333,49.554268734853125],[-118.24519624261181,49.55621712040017],[-118.24282985460835,49.559530826728796],[-118.24257799810003,49.56192636754265],[-118.24285682279194,49.5688312736625],[-118.24411747962418,49.57510955933945],[-118.2449097480476,49.57938924559367],[-118.24809810189318,49.583149751636405],[-118.25134693346942,49.58548455483926],[-118.25328944523379,49.58839269428477],[-118.25304127661026,49.59010967582364],[-118.25173150287317,49.593418716750655],[-118.25147391081907,49.597414389854364],[-118.25228307373301,49.60061189826577],[-118.25308321845137,49.60534601394289],[-118.25108309077436,49.61191495510346],[-118.25002929292543,49.61345777878185],[-118.24900015841304,49.61979346675046],[-118.24689498240147,49.624589579640485],[-118.24250179769247,49.62785160158441],[-118.24058155058898,49.630479943112235],[-118.23970781456897,49.63481880839801],[-118.23972573568385,49.641208318353925],[-118.24078356717735,49.64326576603627],[-118.24212938259345,49.649544283133224],[-118.24224027023617,49.65810073085348],[-118.24207762146612,49.66226859657688],[-118.24497755698839,49.66398022292587],[-118.24779712972192,49.664604117258065],[-118.25229029921707,49.665051621647684],[-118.25528792607619,49.66544708761462],[-118.2631391175767,49.66588936619477],[-118.2686836770832,49.66588573426344],[-118.2714189297608,49.66668111601281],[-118.2723936260847,49.66924278648898],[-118.27363424413198,49.67295384275708],[-118.2767388264063,49.67660122944048],[-118.27744173855876,49.677803179886865],[-118.27630779585877,49.680313151645336],[-118.27614283049739,49.68385170859379],[-118.27527419392793,49.688587142363716],[-118.27512285110689,49.69510005708993],[-118.27574430684201,49.69777722984053],[-118.27442981996107,49.69904095370676],[-118.27267080638212,49.69864383736878],[-118.27037886549701,49.69876126343141],[-118.27011033556037,49.700928955470665],[-118.2698589838508,49.702582135533405],[-118.27012826867163,49.70560976042241],[-118.2703093144248,49.70949007663358],[-118.27111662372805,49.71131411155792],[-118.27245076776762,49.71439479657632],[-118.27509674265305,49.71656213010579],[-118.2771302418223,49.71781557894944],[-118.27731680016032,49.718445212972945],[-118.27653436951202,49.72192330497924],[-118.2763690834323,49.725462771706],[-118.27751746212942,49.72865674619526],[-118.27867366175671,49.730483366838435],[-118.27983359534535,49.733280004664884],[-118.28027218734768,49.737044924187174],[-118.28108610027698,49.74023990301195],[-118.2840885335239,49.742290182335644],[-118.28717275324044,49.74228562930634],[-118.28709115159864,49.74194226879358],[-118.28964571919819,49.741768892413866],[-118.29450455486514,49.74381757200681],[-118.29397949653945,49.74627059547673],[-118.2925844294058,49.74866931409719],[-118.29091633585658,49.750782896874895],[-118.28951265235368,49.752899940806415],[-118.28872454621451,49.75484178999584],[-118.28872936348972,49.75729502388266],[-118.28882553625796,49.760034052510385],[-118.29078199099717,49.76299877231894],[-118.29299326280017,49.76453679394625],[-118.29325284231786,49.76465300637166],[-118.29449807806037,49.766705512806645],[-118.29317682467,49.76899408315734],[-118.29115526094495,49.771047006544684],[-118.28657820948716,49.7744250931398],[-118.28376056058121,49.77870807399931],[-118.2842139500306,49.782306937245814],[-118.28501770402406,49.785898945497635],[-118.28680391559426,49.79194433771247],[-118.28751373828182,49.79303443080589],[-118.28874995242698,49.79348894988124],[-118.29238000062124,49.79399478823065],[-118.29715051579302,49.79461285837937],[-118.30086896954114,49.79592074097152],[-118.30016502782317,49.797693251569605],[-118.29840712166686,49.79900560120126],[-118.29637885986357,49.801919809125714],[-118.29602747946535,49.80375398438102],[-118.29710205079199,49.80574839917599],[-118.29904020870165,49.806599563007346],[-118.30284363381813,49.806995098670484],[-118.30584465848212,49.80767530475148],[-118.30585580950456,49.80818946421155],[-118.30745520781649,49.811550014759796],[-118.30896766697673,49.81434973846351],[-118.31109107908152,49.815597612912136],[-118.31303749836998,49.81582261732492],[-118.31639892845101,49.81627518989932],[-118.32099442441674,49.81695146563613],[-118.3233757275581,49.81774856197744],[-118.32620980418297,49.81951033181733],[-118.32763422625975,49.82076343177399],[-118.32868590699398,49.82099183062615],[-118.33152777827982,49.82121225947115],[-118.3369149217838,49.821089291832486],[-118.34486872148916,49.82107746925169],[-118.35369978075299,49.82208488959425],[-118.35699671000526,49.822384067065315],[-118.35751283526923,49.82556124551994],[-118.35750292470402,49.825714319732036],[-118.35750678552613,49.82585818395422],[-118.35749687487646,49.82601125810271],[-118.35750096531072,49.826164183620904],[-118.35747753929998,49.82627277494527],[-118.35738509141255,49.82648055434707],[-118.35737550412802,49.82664212646721],[-118.357377663211,49.826723124309865],[-118.35737812238034,49.82674124700568],[-118.35737959421344,49.82679505185612],[-118.35738152372478,49.82686698833543],[-118.35738609986846,49.82697528236584],[-118.3574170181367,49.82714535778685],[-118.35742159439208,49.82725365177402],[-118.3574237535854,49.82733464954715],[-118.35742816781585,49.827496072892004],[-118.35743225815332,49.82764899809803],[-118.35743464698503,49.82773905716186],[-118.35744066851343,49.827963909744916],[-118.35744668860372,49.82818877119779],[-118.3574377899928,49.82837752692291],[-118.35743029421964,49.828557905623406],[-118.35739237887277,49.82871127636327],[-118.35732701132127,49.828882512560924],[-118.3572777384957,49.82907239816096],[-118.35725313558142,49.829198436222605],[-118.35721475998031,49.82933368413398],[-118.35719038631369,49.829468783449954],[-118.35719185801393,49.829522588099586],[-118.35718047382574,49.82962185680418],[-118.35717251771693,49.82978411255639],[-118.35716283465923,49.829946247150204],[-118.3570974659849,49.83011747397767],[-118.35703349985833,49.83028032377599],[-118.35696780636619,49.83044305237609],[-118.35686160229307,49.8305972862786],[-118.35675367058296,49.830751398917634],[-118.3567008306672,49.83086867226388],[-118.35664962307071,49.83098662992525],[-118.35659894203117,49.83118489160038],[-118.3566010999552,49.83126588894877],[-118.35653745424528,49.83143723625852],[-118.35645775451717,49.83160011276427],[-118.35637978118122,49.8317631103085],[-118.35636724762412,49.831817072190944],[-118.35634140085314,49.83189835743319],[-118.35630302029843,49.83203360451919],[-118.3561839541833,49.83223329227409],[-118.3560891019632,49.83235101036062],[-118.35599611122869,49.83247847399253],[-118.35591549046413,49.83260510476087],[-118.35590681401005,49.832802920481974],[-118.3558998629877,49.83300086622908],[-118.35586285610806,49.83319048057618],[-118.35578246302414,49.833326172390045],[-118.35568979309858,49.83346213362855],[-118.35559654193042,49.83364327994393],[-118.35549110792167,49.8338241323938],[-118.35538387976906,49.83394268232237],[-118.3552750183825,49.83406054774907],[-118.35518280384085,49.83421463093709],[-118.35511641060492,49.83435017376878],[-118.35501087870551,49.83453158880539],[-118.35497079510725,49.83460396044103],[-118.35494687030595,49.83475718077616],[-118.3549229453446,49.83491040107358],[-118.35489902022319,49.835063621333354],[-118.35490538102698,49.83523423439514],[-118.3549101510527,49.83541434179026],[-118.35491547377124,49.83561200839845],[-118.35490555235157,49.83576508024486],[-118.35490940586314,49.83590894255668],[-118.35487101771973,49.83604418838961],[-118.3548341273422,49.83617049410585],[-118.35482204901149,49.83624257795018],[-118.35482512204072,49.83635981075758],[-118.35482828796187,49.836476489261194],[-118.35484784245781,49.83668307749619],[-118.35487924641922,49.836808520656994],[-118.35489632408085,49.836925605109414],[-118.35490118712372,49.83710515779933],[-118.35490233285839,49.83715046391296],[-118.35490618647641,49.83729432594917],[-118.35488235442924,49.83744698247603],[-118.35484321346041,49.83749285449881],[-118.3546104856774,49.83763029650424],[-118.35448659818279,49.83771262713021],[-118.35441977061879,49.83776729339295],[-118.35437821459082,49.83778586041992],[-118.35415971768326,49.83793221442791],[-118.35402547717779,49.83808674031082],[-118.35394552798319,49.83824055227715],[-118.35393413459242,49.83833981944619],[-118.35393899551175,49.83851936288759],[-118.3539319422259,49.83871786122625],[-118.35393725960844,49.838915535918865],[-118.35395727056512,49.83914023707534],[-118.35394881188681,49.83934712098974],[-118.35395458885678,49.839562908958136],[-118.35392896090165,49.83965326289251],[-118.35386428332629,49.839788925115215],[-118.35378364379962,49.839915553031844],[-118.35364939621222,49.84007007802958],[-118.35361100086045,49.84020532264206],[-118.35361599522273,49.840394490039834],[-118.35360707845325,49.84058324226501],[-118.35361357122157,49.84076346955984],[-118.35361696327217,49.84088920856635],[-118.35362182172031,49.84106876032905],[-118.35364036416217,49.84123965705328],[-118.35364522423764,49.84141919978795],[-118.35366523335702,49.84164390916012],[-118.35369925013453,49.841868461411565],[-118.35370332930474,49.84202138371568],[-118.35370740850215,49.84217430598737],[-118.35368324658762,49.84231846328208],[-118.35354944943015,49.84249110996028],[-118.34554068146969,49.855151842851534],[-118.35267594821089,49.875131137546646],[-118.35522516594098,49.89080938795117],[-118.35519202052177,49.89082967706517],[-118.3549940322168,49.89095656555742],[-118.35479777350737,49.891083565878745],[-118.35460777357228,49.89121496588757],[-118.35443692861334,49.89135732196738],[-118.35430379351311,49.89151474706936],[-118.35421565737352,49.89168550898329],[-118.3541581785806,49.891861240727174],[-118.35411434567713,49.892039059093314],[-118.35406023152183,49.8922155872599],[-118.35399756374169,49.892390955312436],[-118.35393325923414,49.89256564788428],[-118.35387231974191,49.89274113694272],[-118.35381137978212,49.89291662592503],[-118.35377964939092,49.89309529204427],[-118.35377039931565,49.89327553324695],[-118.3537211881965,49.89345410503846],[-118.35356570967288,49.89359865828567],[-118.35336261151204,49.89372461666664],[-118.35320235816988,49.893876757872],[-118.3530564908157,49.89404742606948],[-118.35293598939307,49.8942441740472],[-118.35313626565552,49.8942497330796],[-118.35341171656766,49.89422437224355],[-118.35368991591224,49.89421390958977],[-118.35396960566835,49.89421541698069],[-118.3542466286269,49.8942223895983],[-118.3545818020597,49.89421647706905],[-118.35479973735956,49.894241919833675],[-118.35507661511112,49.89426018570338],[-118.35535414999335,49.89427453542881],[-118.35563046576124,49.894296152161616],[-118.35590453225944,49.894331177262266],[-118.35617069237045,49.89438204539328],[-118.35643572988266,49.89443960847191],[-118.35669684005015,49.89449972669705],[-118.35695738859543,49.89456319656565],[-118.35721555177417,49.89463046015278],[-118.35747315493909,49.89470106645867],[-118.35772664350327,49.89477534540478],[-118.35797601750765,49.89485329701853],[-118.35822464423427,49.89493570881752],[-118.35846906204803,49.89502235650484],[-118.35870726279137,49.89511478175051],[-118.35894097587799,49.895213105675325],[-118.35916875083294,49.89531554449675],[-118.35939414235699,49.89542176827798],[-118.35961570142777,49.89552998429029],[-118.35983688680638,49.895640434692204],[-118.36005634386876,49.895750763566326],[-118.36027972991845,49.89585853606836],[-118.36051899049008,49.896017732892],[-118.36071000233811,49.896078586249864],[-118.36094793134248,49.89617268710128],[-118.3611736129815,49.896277226485594],[-118.36139690981778,49.896385559815776],[-118.36160650873667,49.89650254800839],[-118.36180002693554,49.89663196769222],[-118.36197793049429,49.896771038783136],[-118.36214269809396,49.896915412667894],[-118.36229961389334,49.89706488036581],[-118.36244741445624,49.89721654071797],[-118.362593111927,49.8973703146728],[-118.36273525705747,49.897524409541866],[-118.36287913410891,49.89767861627425],[-118.36302291773059,49.89783338596934],[-118.36316132659495,49.89798890982647],[-118.36329599574037,49.898145872062855],[-118.36342683374185,49.89830481799652],[-118.36355201518711,49.89846619875468],[-118.36366999782229,49.89862877591925],[-118.36377867899513,49.898794654425565],[-118.36387469248945,49.898963038046965],[-118.3639651435555,49.89913329339583],[-118.36404839700326,49.899304736299804],[-118.36413155668554,49.899476742284115],[-118.3642057876103,49.8996498237852],[-118.36427090390062,49.899825089309076],[-118.36433256157713,49.900000112759564],[-118.36442940591242,49.900226210399055],[-118.36453080079824,49.90039383867211],[-118.36465599185648,49.900555217707534],[-118.3647944145109,49.90071073892214],[-118.3649458815764,49.90086151969727],[-118.36512937446756,49.90099871297017],[-118.36534531792509,49.90110934271737],[-118.36559179345294,49.90119441415046],[-118.3658297591147,49.90128850374097],[-118.36606552878725,49.90138526093587],[-118.36629709127666,49.90148624539622],[-118.36651677920409,49.90159544301762],[-118.36673015593884,49.901710981883724],[-118.36693951282072,49.90182963069481],[-118.36714667385647,49.90195094723964],[-118.3673482711391,49.90207414432667],[-118.36754767258682,49.90220000918208],[-118.36774497106985,49.90232798757112],[-118.36793605282779,49.9024617441621],[-118.36810067254034,49.90260722539179],[-118.36821714104853,49.902768549432416],[-118.36828363244238,49.902946167617706],[-118.36834264403284,49.90312665427944],[-118.36843541123307,49.90329367361105],[-118.36859204294777,49.90343463380847],[-118.36879757877782,49.90355527179205],[-118.36902181586244,49.90366874233173],[-118.3692362839514,49.90378830344699],[-118.36941652918944,49.90392412972418],[-118.36958106604082,49.9040701626843],[-118.3697378420381,49.90422074463465],[-118.36989480772534,49.90437019995969],[-118.37006145176483,49.90451411815624],[-118.37024581609643,49.90464627820766],[-118.370447247958,49.90477057763004],[-118.37066209773097,49.90488790985236],[-118.37088508480845,49.904998457429556],[-118.37111447938291,49.90510209942646],[-118.3713469131694,49.90519804872965],[-118.3716017923026,49.90526447248183],[-118.3718759824938,49.90530963487246],[-118.37213918620888,49.90536815565615],[-118.37239743270729,49.90543538247286],[-118.37265530726683,49.90550483460268],[-118.37291327540699,49.90557373187171],[-118.37317171128961,49.905639839411],[-118.37342968096934,49.905708735451675],[-118.37368077836574,49.90578732525011],[-118.3739228996631,49.90587772287684],[-118.37413678349539,49.9059904485854],[-118.37430901035228,49.906132487654574],[-118.3744603396886,49.906284371593244],[-118.37460044857825,49.90644056322251],[-118.37473883008792,49.90659662486881],[-118.3748903494357,49.90674739068198],[-118.37504935029908,49.90689528725212],[-118.37521784238572,49.907038763688],[-118.37539994232519,49.907174137154996],[-118.37559363748528,49.90730297633558],[-118.3757949070601,49.90742839185151],[-118.37599454212618,49.90755312297749],[-118.37619380424155,49.90768008859127],[-118.37639133757985,49.907806933016005],[-118.37656961025037,49.90794429766046],[-118.37672862070654,49.90809219155216],[-118.37687823466324,49.90824395094562],[-118.37702775536378,49.90839627329138],[-118.37717363172956,49.908549462314326],[-118.3773139438237,49.90870453255411],[-118.37745033028006,49.90886215012791],[-118.37757559011477,49.90902351253042],[-118.37766821601025,49.90919164013411],[-118.37772792791168,49.90936820470188],[-118.37776814257128,49.90954623864711],[-118.37775725376241,49.909726357024226],[-118.37771349550465,49.90990418047487],[-118.37765781408964,49.91008004094],[-118.3775697293833,49.91025081729428],[-118.37745644373665,49.91041530305231],[-118.37732323815459,49.910573315201255],[-118.37718348568312,49.91072860912073],[-118.3770452752519,49.91088514105589],[-118.3769203428854,49.911045991447864],[-118.37679550240168,49.91120628741579],[-118.37667220553453,49.911367812498234],[-118.37657738159167,49.91153698712429],[-118.37654063140188,49.911714729685784],[-118.37658968072314,49.91189225006998],[-118.3766985330535,49.91205755850415],[-118.37686896790689,49.91220002581852],[-118.37710930515263,49.912290858001455],[-118.3773781657348,49.91233676124435],[-118.37765703209479,49.912343795283725],[-118.37793183040573,49.91232284315664],[-118.37820442862831,49.91228365802958],[-118.37847071413337,49.91222989598128],[-118.378728862398,49.91216199947401],[-118.37897270089087,49.9120750157711],[-118.3791830587526,49.91195799317717],[-118.37937634737602,49.91182791323384],[-118.37956799758963,49.911697157924365],[-118.3797499215681,49.911561762253044],[-118.37992567212594,49.91142141351369],[-118.38010595814046,49.91128533326375],[-118.38031340873177,49.91116472350943],[-118.3805391898709,49.9110600799709],[-118.3807726839455,49.910961635762774],[-118.38101206977453,49.91086981541784],[-118.38125898323347,49.9107853028171],[-118.38151132058756,49.91071021207048],[-118.38177226238031,49.91064645627433],[-118.38203843996376,49.91059324862824],[-118.3823057877787,49.910543504430464],[-118.38257448976755,49.91049612410919],[-118.38284454895768,49.91045108977586],[-118.38311432657548,49.91040773541008],[-118.38338545997026,49.91036673596062],[-118.3836563118589,49.910327416475404],[-118.3839303437615,49.910290009387886],[-118.38420236571432,49.910254152631694],[-118.38447583624752,49.910220096514955],[-118.38474911955228,49.91018715716139],[-118.38502394564422,49.910155455240535],[-118.38529849039679,49.910125433271176],[-118.38557294213575,49.91009596486737],[-118.38584893672127,49.91006773387938],[-118.38612427795911,49.91004340879934],[-118.38640069442046,49.910023119218586],[-118.38667818617704,49.91000686512913],[-118.38695684892555,49.90999407438829],[-118.38723340651063,49.9099834061485],[-118.38751314457438,49.909974650176636],[-118.3877909657898,49.90996689031898],[-118.38806878691096,49.909959129756906],[-118.38834670205082,49.90995080529393],[-118.38862470970527,49.909941925868885],[-118.38890290397028,49.90993192828403],[-118.38918100401096,49.90992249319008],[-118.38946055462418,49.90991484970204],[-118.38973828254348,49.90990763916535],[-118.39001572959161,49.90990210857942],[-118.39029462579867,49.909898378531324],[-118.390573056013,49.90989743694742],[-118.39085148621587,49.90989649465609],[-118.39112972974331,49.909896669115895],[-118.3914088640646,49.9099019875318],[-118.39168622452537,49.90991792557051],[-118.39196069145386,49.90995118800331],[-118.39221661047154,49.91002215377148],[-118.39245495753647,49.910114503738114],[-118.39269952281055,49.910201064312126],[-118.39296324712467,49.9102567455053],[-118.39323542715151,49.91029323657051],[-118.39351157842007,49.91031642901035],[-118.39379015428582,49.91032510268346],[-118.39406797656416,49.91031732691768],[-118.39434621521974,49.910296574629115],[-118.39462066215275,49.91026708357532],[-118.39489267409047,49.91023120922475],[-118.39516543336012,49.9101908553982],[-118.39543482463709,49.91014970562038],[-118.39570603798104,49.910108121414474],[-118.39597715830482,49.91006709079836],[-118.39624855869727,49.910024378839],[-118.39651841360413,49.90998043719072],[-118.39678836200136,49.90993593167146],[-118.39705676637526,49.909890187537854],[-118.39732708674035,49.909843445748976],[-118.3975958630435,49.90979546535117],[-118.3978630027644,49.90974680062065],[-118.39813023441678,49.90969758097032],[-118.39839928800181,49.90964792685636],[-118.39866670497766,49.909597588419985],[-118.39893412136472,49.90954724932773],[-118.39919999362046,49.90949567166227],[-118.39946759528276,49.90944421378838],[-118.39973365278931,49.9093915173477],[-118.39999980365086,49.909338257050265],[-118.40006679688919,49.90932483341509],[-118.40033313191962,49.90927046376846],[-118.40059783027658,49.9092154098406],[-118.40086271441929,49.90915923779307],[-118.40112605432982,49.909101827210314],[-118.40138976639861,49.909042181036014],[-118.40165029814044,49.90898061272422],[-118.40190956443352,49.9089161341604],[-118.40216901638537,49.908850537498786],[-118.40242865397616,49.908783822737675],[-118.40268656082199,49.908716986965985],[-118.40294619689942,49.908650270966525],[-118.40320573829202,49.908584117556394],[-118.40346509406763,49.9085190720673],[-118.40372444761461,49.9084540348985],[-118.40398370799737,49.90838955138153],[-118.40424469762554,49.90832518761052],[-118.40450395654415,49.908260702851464],[-118.40476503861186,49.90819577461813],[-118.40502429606298,49.90813128861676],[-118.4052835527829,49.90806680199629],[-118.4055445387394,49.90800243510134],[-118.40580379399513,49.90793794723893],[-118.40606477848394,49.90787357909378],[-118.40632403227546,49.9078090899892],[-118.40658328533574,49.9077446002657],[-118.40684426762385,49.907680230247244],[-118.40710351921992,49.90761573928167],[-118.40736459242406,49.90755081373817],[-118.4077031267628,49.907472617884565],[-118.4079655572554,49.90741003724801],[-118.40822807940263,49.90734690170203],[-118.40849013450739,49.9072865637215],[-118.40875490541475,49.90723092672736],[-118.40902038069251,49.907181560060515],[-118.40929349599884,49.907159854590425],[-118.40957374734005,49.90717934047084],[-118.40985189658046,49.90720094034633],[-118.41012976605577,49.907224220227384],[-118.41040423171209,49.90725742765273],[-118.41066851912727,49.90730971397851],[-118.41092491706557,49.90737784704587],[-118.41117618185726,49.90745578752237],[-118.41142688754121,49.90753708884404],[-118.41167796791093,49.907616145649456],[-118.41193390444957,49.90768706559961],[-118.41219899537074,49.907745055932935],[-118.41247472955443,49.907781176602356],[-118.41275076423986,49.90778397415092],[-118.41302875396568,49.90777503279576],[-118.41330594417018,49.90776038301624],[-118.41358369251648,49.90774238003573],[-118.41386172053788,49.90772269563011],[-118.41413946843646,49.90770469124011],[-118.41441838783805,49.90769015885434],[-118.41469464668765,49.90768109306786],[-118.41497479286284,49.90768020968851],[-118.41525471457771,49.907691184034014],[-118.41553203309388,49.9077177937702],[-118.41579936138513,49.907762365353875],[-118.41605960157591,49.907828491723926],[-118.41631003966826,49.90791145361888],[-118.41654604399963,49.90800753807419],[-118.41676578943309,49.908117197173176],[-118.41696717696527,49.90824252797314],[-118.41715477983234,49.90837708373953],[-118.41733271135826,49.90851718017703],[-118.41748564320632,49.908670796124674],[-118.41757532707518,49.90883641473318],[-118.41761022652418,49.90901575442396],[-118.41761833925852,49.909198316058195],[-118.41762327171988,49.90937895661278],[-118.4176124461904,49.90955964218425],[-118.41756556897646,49.90973612374768],[-118.41749302010165,49.909909122193504],[-118.41741527895653,49.910081769020366],[-118.41733061837648,49.910253926179436],[-118.41724095142791,49.91042461419226],[-118.41714445718381,49.91059425822774],[-118.41704141388212,49.91076118648662],[-118.4169316354318,49.91092651645317],[-118.41681175530752,49.91108944455574],[-118.41668340828518,49.91125066309099],[-118.41655178764348,49.91141051466081],[-118.41642180244237,49.911571049429334],[-118.41629354646574,49.91173170418261],[-118.41617384652834,49.91189352285007],[-118.41606424828588,49.91205773419431],[-118.41597003458385,49.91222414450305],[-118.41591140930554,49.912397548467816],[-118.41588837282893,49.91257794614087],[-118.41588254562907,49.912760099848924],[-118.41588190743997,49.91294262299287],[-118.41586476867215,49.913129643004034],[-118.4158778796819,49.91331368177805],[-118.41601692401008,49.91345616862783],[-118.41597078298636,49.91357560970636],[-118.41545347857551,49.91483231597535],[-118.41535824316624,49.91523604252216],[-118.4151024942902,49.9166035992746],[-118.41467363709187,49.91934671679796],[-118.4146869028797,49.92111673213326],[-118.4157608511323,49.924254160986266],[-118.41576446883636,49.92465287477084],[-118.41622717992556,49.92750874451584],[-118.41667546606705,49.93070384374954],[-118.41669574210493,49.93184355510663],[-118.41606827519318,49.93207863843421],[-118.41324420430814,49.93305474964394],[-118.41147613266754,49.93391368201576],[-118.41219044606913,49.93567923846995],[-118.41326458792604,49.93721939504103],[-118.41514233430036,49.940242989159756],[-118.41630089224418,49.94337994954236],[-118.41604426777094,49.944751934803534],[-118.41579533207222,49.94691853138666],[-118.41492297337585,49.94954655562371],[-118.41377978711486,49.951781059543585],[-118.41380350531163,49.954917199846385],[-118.41487536708166,49.95748289924997],[-118.41461731753346,49.95919895212112],[-118.41506979227862,49.961024786356745],[-118.41384473418927,49.96400075352343],[-118.41110638926331,49.96537508764456],[-118.40872154054902,49.96731816867858],[-118.40829519190181,49.970460887739456],[-118.40918680215177,49.972174786790724],[-118.41177238297847,49.973651890579724],[-118.41549585170915,49.97461217185316],[-118.41638768543724,49.97489727405739],[-118.42002282905399,49.97563140939063],[-118.42348960432645,49.97653516888504],[-118.42817778695667,49.97709331507523],[-118.43031162317496,49.97657191377444],[-118.43207542411587,49.97583045350565],[-118.43685006573021,49.9737606283615],[-118.44047998700438,49.9726711290782],[-118.44402806221873,49.97283273683425],[-118.44625055370192,49.974138619749255],[-118.44669857829844,49.97464880542129],[-118.44936453692513,49.976409083145654],[-118.45265842470978,49.977259249148595],[-118.45451437580861,49.97748113927058],[-118.45949063824102,49.97850197804715],[-118.4613536078918,49.98003530962206],[-118.46287447443085,49.981518456389644],[-118.46519272011932,49.984706081021095],[-118.467615092414,49.98921410235885],[-118.46789198585765,49.99126755276443],[-118.46934385944071,49.99520287107203],[-118.46953809507288,49.999026144692614],[-118.46954541947487,49.99999804785048],[-118.46840869898757,50.001440488932914],[-118.46504318110964,50.00253392707918],[-118.45857994517591,50.00352627564962],[-118.45273761568315,50.00525504310548],[-118.44716167289393,50.006644201916444],[-118.44156634559016,50.006375960394315],[-118.433241719419,50.006405875242784],[-118.42696415601259,50.00972686652298],[-118.42698303793495,50.01281319783381],[-118.43010821452182,50.016795928510234],[-118.43447269192025,50.019744691058506],[-118.4400865297427,50.022526351838344],[-118.44310719838143,50.02394141998997],[-118.45057805197689,50.02636520430418],[-118.46194015140283,50.02792793548545],[-118.4651412176916,50.02809177889635],[-118.47419657581419,50.029772419416354],[-118.4827280197591,50.03173838180237],[-118.48958336767984,50.034336811332025],[-118.49269920576455,50.03586817220539],[-118.50001762307745,50.04017464252983],[-118.50103629238184,50.046503889365255],[-118.49707392193514,50.051025190408645],[-118.49609903727028,50.05148615844883],[-118.49248991807116,50.054290079964524],[-118.48249972475574,50.05991992997216],[-118.48178761864013,50.06031858205476],[-118.47294019613706,50.06480051990264],[-118.4687941196174,50.06760758400561],[-118.46605453314578,50.06938620124961],[-118.46206751461608,50.07173782518277],[-118.45357910027634,50.075470680069266],[-118.44620851111007,50.07720679299081],[-118.4406172578689,50.07745249359582],[-118.42356499742348,50.077328939945474],[-118.40669545396922,50.07703513566304],[-118.39941611589407,50.07745620213688],[-118.38671562822054,50.07760546868171],[-118.37934805339725,50.0792182722934],[-118.37934849817461,50.080303323576246],[-118.37972345061594,50.08258928440636],[-118.37974212562034,50.08641073220924],[-118.37762731402393,50.08920961840106],[-118.37479020385035,50.091035418092424],[-118.36751235808079,50.0915139876754],[-118.35490501628973,50.093251519503816],[-118.34602865356375,50.095783376272166],[-118.33919599994921,50.09927796089269],[-118.33067782406872,50.099179822025],[-118.31938938868467,50.098750808210774],[-118.31431465300084,50.09733327555918],[-118.30409128856405,50.09609846451458],[-118.29211599552727,50.09896929624853],[-118.2890995809473,50.103311970892655],[-118.29106785409111,50.10769875441861],[-118.29366497900097,50.1120290472007],[-118.29367951342863,50.11715609719167],[-118.29367962430575,50.11864473792788],[-118.2916564226439,50.12384108492328],[-118.29069719526458,50.128570166184964],[-118.2928350087489,50.13296012275089],[-118.29497954728096,50.134664882052995],[-118.29501042408857,50.13489706932168],[-118.2951650757473,50.13580820133448],[-118.29268175839816,50.137749169226254],[-118.28841812558626,50.13981253584466],[-118.28265031616918,50.14318458220402],[-118.28140484553576,50.144216003020496],[-118.27928142321436,50.147920434206604],[-118.27795634920761,50.15288531907205],[-118.27486762380268,50.1591078779677],[-118.27325997649989,50.160195127155454],[-118.26784507158922,50.162879883030705],[-118.2580657115348,50.166541946458544],[-118.25273984924539,50.16803758626203],[-118.25388700025793,50.17071653131146],[-118.25594731679465,50.17316313507559],[-118.2584492899054,50.17846428374233],[-118.2585528315577,50.18148267505787],[-118.25668022667706,50.18485232907313],[-118.25063915593118,50.18919507639111],[-118.24619238155331,50.19171047962924],[-118.24166581254084,50.19485250287245],[-118.23783756326681,50.1995882488084],[-118.23721710401598,50.199590195343895],[-118.23650735245968,50.20306884769119],[-118.23615876284553,50.206660031410884],[-118.23644279374821,50.21042530533442],[-118.24061956390452,50.213441918529945],[-118.24446270186691,50.21651616646571],[-118.246157827944,50.21953936140153],[-118.24946630394732,50.22261181150824],[-118.25276173766663,50.224034747875805],[-118.25606093286093,50.226424747659316],[-118.25669608406271,50.22773871582668],[-118.2591062390739,50.23252306574113],[-118.26062840367275,50.23640055934662],[-118.26125284368285,50.238108151669906],[-118.2611764458016,50.24119047883508],[-118.26028316710759,50.24558286034419],[-118.26262195183675,50.24922607763437],[-118.26556956076017,50.25310638740213],[-118.26673978135398,50.256409049900014],[-118.26844039974418,50.26205557394107],[-118.2701509326113,50.268718703235756],[-118.27141290082182,50.2761910316806],[-118.27142838684303,50.28212187434908],[-118.26984233903444,50.28965408530306],[-118.2691283234284,50.2908549985459],[-118.26566475522614,50.29672911353593],[-118.26370096290773,50.30134725789304],[-118.26470052176819,50.305569436199775],[-118.26711401431416,50.31052762028371],[-118.26693899698495,50.31600018395736],[-118.26676262256863,50.31628727750535],[-118.2605321296291,50.32114319059514],[-118.25598490813583,50.32713473576387],[-118.2586707183507,50.33067236530246],[-118.25805124293903,50.33329300577464],[-118.25876628877137,50.33711480447031],[-118.26145056931863,50.3396774916537],[-118.26770848898748,50.34069397715841],[-118.27484556130037,50.34045859229105],[-118.28154290465696,50.339652953327864],[-118.28895575882659,50.339125228191584],[-118.29414294363217,50.34020485649323],[-118.29629176253495,50.34442409590841],[-118.29765125391505,50.34995539062676],[-118.2977501117366,50.35343187123792],[-118.29704443579631,50.357478726816474],[-118.2951731798256,50.361476374615215],[-118.2943850539993,50.36501064783711],[-118.29455983275967,50.36655281812469],[-118.29564708307525,50.37111409358044],[-118.29735295560721,50.37396143121334],[-118.30012565911788,50.377438523087676],[-118.30057526584936,50.377953501741885],[-118.29468790826526,50.38474707946909],[-118.28746625215122,50.39023082936972],[-118.2781729544313,50.394578348943284],[-118.27523590605752,50.39577572111715],[-118.26799596454339,50.39664181969047],[-118.25467266906985,50.39682831124178],[-118.25288219368761,50.398596543919275],[-118.25609794102215,50.400475293014736],[-118.26191198487659,50.4013224599887],[-118.26799451181402,50.40217341691791],[-118.27202995472807,50.404394901130466],[-118.27140258691085,50.40673009197717],[-118.26899653360483,50.41175488789197],[-118.26839003933664,50.41751181724336],[-118.26892266881816,50.423726967493955],[-118.26893280322543,50.42515193605624],[-118.26884799090071,50.430344741237114],[-118.26849619104328,50.43593689957032],[-118.26540645528246,50.43710878431993],[-118.26526856423652,50.43703528891324],[-118.26516339551381,50.43694657454693],[-118.26512740067179,50.43688812920837],[-118.26511354943898,50.436865691451395],[-118.2650365120846,50.43683996099023],[-118.26486637976502,50.43677889708938],[-118.2646869737849,50.43669967467788],[-118.26452962143793,50.436615785663996],[-118.26442531134464,50.436563287624644],[-118.26428703104472,50.43653326956193],[-118.26399188683475,50.4365092190339],[-118.26371486095171,50.4365033847757],[-118.26355284685525,50.436374531771385],[-118.26328160875086,50.43621147417844],[-118.26285601154767,50.436225183185364],[-118.26251859896595,50.436251275099174],[-118.26233928563416,50.43621273182327],[-118.26223952509187,50.43619557737993],[-118.26211946139297,50.43618321120218],[-118.26190568569304,50.43611852584169],[-118.26160570063249,50.43600938598264],[-118.26129628537281,50.43594478148543],[-118.26109534651428,50.43592901934518],[-118.26092377166937,50.435917564071865],[-118.2606881261225,50.435897671169236],[-118.2605462223171,50.4358990320445],[-118.2604020983702,50.435954473335414],[-118.26018035240212,50.43602877566752],[-118.25998112035236,50.43608543683699],[-118.25968415277748,50.436164638917454],[-118.25928249443199,50.43628621447161],[-118.25887545335151,50.43643905845497],[-118.25846456866599,50.436614221229284],[-118.2581491235461,50.43673901237088],[-118.25791027049956,50.43676860565358],[-118.25767393551571,50.436793855172304],[-118.25758566884677,50.436884844402755],[-118.25753634379984,50.437006809958326],[-118.25726406811567,50.43718942915828],[-118.25683974815391,50.43736025557295],[-118.25636618471454,50.43740560730119],[-118.25594365066335,50.43740141752074],[-118.25567119641221,50.4373998431125],[-118.2555044056685,50.437401713693625],[-118.25543596995092,50.437398047643036],[-118.25539459063175,50.43741209663757],[-118.25530833224626,50.43743994931782],[-118.255265971822,50.43744940981038],[-118.25523989648664,50.43743628314644],[-118.25518599602792,50.43740990716689],[-118.25515817090569,50.437396657850215],[-118.25512453967174,50.43739656072338],[-118.25503516294731,50.43737051865958],[-118.25493176337247,50.43728191726805],[-118.25485674581269,50.437193045073],[-118.25479140156621,50.43713027863782],[-118.2546882151204,50.43705073127413],[-118.2545858947827,50.436966155293234],[-118.25452361078689,50.43692676211594],[-118.2544079469799,50.43687854733224],[-118.25413730117661,50.43680477124036],[-118.2537476514448,50.436763899616686],[-118.25332914225513,50.43677749999915],[-118.25294149459299,50.43681756036635],[-118.25266552672142,50.436856969958086],[-118.25242059432112,50.43696296082831],[-118.25211162970804,50.43713225775386],[-118.2518965765533,50.437157287987866],[-118.25180237415182,50.43704616894639],[-118.25176203238283,50.43699249346752],[-118.25166979326963,50.43699336616935],[-118.25151009846856,50.43699516774108],[-118.25132834910367,50.43700163276562],[-118.2510497834059,50.437004698483],[-118.25072112817294,50.43699012234299],[-118.25051463229147,50.436965472419175],[-118.25044325606075,50.43694803779144],[-118.25041816293974,50.43693949848549],[-118.25036370783917,50.43692664022949],[-118.25017859469646,50.43690122928839],[-118.24993410282414,50.43688126269949],[-118.24979646454254,50.43687838946717],[-118.24972977987926,50.43687484261249],[-118.24970314823705,50.43687523471801],[-118.24962684984195,50.43687609374841],[-118.2493898765524,50.436874162739],[-118.24908041085764,50.43688183587117],[-118.24888391238136,50.43690195157942],[-118.24883018595044,50.43691570169586],[-118.24876580963348,50.43689875692041],[-118.24855354869871,50.43685618030833],[-118.24831167402186,50.43683130441338],[-118.24821126179297,50.43682822013162],[-118.24820087842305,50.43683709172606],[-118.24816540087166,50.43683743243438],[-118.2480427230605,50.4368299567543],[-118.24782815453342,50.43680077607791],[-118.24761610408578,50.43676726089653],[-118.24740590070519,50.43673330537695],[-118.24717333524401,50.43669552070346],[-118.24687093505617,50.436631367070305],[-118.24656909490932,50.43655369253872],[-118.24643138573275,50.436510132152726],[-118.24638241695614,50.436465448885336],[-118.24633229918251,50.43637605675683],[-118.24609158853629,50.43629306986662],[-118.24566822469302,50.4362526237227],[-118.24546117543177,50.43624148444121],[-118.24531259448926,50.43626100598818],[-118.24493651967732,50.436305801006945],[-118.24462418783637,50.43634037905025],[-118.2445101035003,50.43635497139009],[-118.24445607087954,50.43636021884276],[-118.24433031549522,50.43637060206617],[-118.24412574273339,50.436386183340076],[-118.24402913827551,50.436391832510964],[-118.24395489576781,50.43640131100635],[-118.24380904325358,50.43642554190545],[-118.24373470517284,50.43643557400593],[-118.24371316537757,50.4364577910435],[-118.2436724129443,50.43649899860865],[-118.24365252584333,50.43652190113137],[-118.24355664765102,50.436554150130355],[-118.24329250886413,50.43663787466776],[-118.2430063138223,50.43672626059745],[-118.24284592001554,50.436773189477954],[-118.24277538589536,50.43679196714157],[-118.2426419724331,50.43681593985997],[-118.24233299365517,50.43688238574999],[-118.24193861537682,50.43697164466057],[-118.2416432646321,50.437051474955545],[-118.24151766985908,50.43710198418485],[-118.2414120772685,50.437139199225214],[-118.2411980932497,50.43716824354988],[-118.24098478212447,50.43719338441761],[-118.24080970801289,50.43718165234403],[-118.24060968347669,50.43712975876021],[-118.24041218099168,50.43707351302573],[-118.23999584323775,50.43699230003294],[-118.2393853614614,50.43688672123458],[-118.2390674484919,50.436840665463016],[-118.23899705623847,50.436827812069694],[-118.23891767606439,50.43684652658639],[-118.23870396587208,50.436925303388485],[-118.2383314740569,50.43696976801933],[-118.23802593804234,50.43688277016751],[-118.23793106582039,50.43681677905773],[-118.23790051711401,50.436798813888096],[-118.23782307794373,50.43675495589844],[-118.23773371092574,50.43672890880902],[-118.2376182268086,50.43672079680809],[-118.23737049971311,50.43667853611737],[-118.23701247494807,50.43658784801254],[-118.23675039954843,50.43650558976047],[-118.23667424515968,50.43647482015113],[-118.23665732566438,50.43647024162648],[-118.23661531592946,50.43645712066665],[-118.23657855545541,50.43644436847017],[-118.2364598309851,50.4364139888104],[-118.23635085226702,50.436275826572874],[-118.23624195829746,50.43606534358814],[-118.2359373143493,50.435983491194975],[-118.23575100504041,50.43605740789608],[-118.2357339537264,50.43615620691335],[-118.23565210169384,50.436148195864746],[-118.23556257923998,50.43608201774653],[-118.23552092441274,50.436046322015066],[-118.23550904612418,50.43603305781321],[-118.23547119465046,50.436006108531224],[-118.2354050127426,50.4359483500274],[-118.23536916985425,50.43589950304423],[-118.23536272187262,50.43581373327666],[-118.2353459862369,50.435674701871],[-118.23525871539204,50.43555444335281],[-118.23506578768142,50.43543071971748],[-118.2348548183488,50.435329448052066],[-118.23472071917398,50.43528556522692],[-118.23467742855378,50.435259354272766],[-118.23461506376735,50.43528209083519],[-118.2344820665195,50.43532416246461],[-118.23434465353326,50.43540207347053],[-118.23423505632613,50.43549324783182],[-118.23414549713105,50.43552989253483],[-118.23409223516286,50.43553066925937],[-118.23407095041769,50.43553086383419],[-118.2340159387439,50.43553151755593],[-118.23383537949226,50.4355515969267],[-118.2335882445573,50.43563931474854],[-118.2334069826392,50.43577630010073],[-118.23330252110557,50.43585822541727],[-118.2332339419567,50.43588617434967],[-118.23310335170717,50.43591428458601],[-118.23289898486978,50.43593889950326],[-118.23278109347793,50.435944742160615],[-118.23266453795121,50.43593259007841],[-118.23246643469669,50.43592092506504],[-118.23233111360595,50.435904633145704],[-118.23225332551662,50.43588334556564],[-118.23220422160776,50.43587029362137],[-118.23218457443315,50.435861002749256],[-118.23210637135068,50.43582160638947],[-118.23182614552981,50.43568043116622],[-118.23140813270497,50.435496238798095],[-118.23108174847314,50.43542753334347],[-118.23075625394722,50.435435718417274],[-118.23039789926885,50.43543934118444],[-118.23024278411813,50.435445384208734],[-118.23014422307487,50.4354418439242],[-118.22980073428027,50.435441420654236],[-118.22922340845386,50.43545167190157],[-118.22875066378982,50.43546136526113],[-118.22860089459873,50.43546721246794],[-118.22844850705741,50.43547796473623],[-118.22822290934658,50.43561521450192],[-118.22812549497455,50.43588181722196],[-118.22813131058622,50.43601217338953],[-118.22810138662166,50.43602136853406],[-118.22783455008063,50.43606926963364],[-118.2271735186303,50.43614368194109],[-118.2264909393089,50.43616854607292],[-118.22617582615757,50.43616784813176],[-118.22592116762063,50.436165752495576],[-118.22556096136499,50.43616979027948],[-118.2252940681845,50.43617700225349],[-118.22511175277208,50.436196944306474],[-118.22501360278834,50.436211508160994],[-118.2250009557628,50.43620270845597],[-118.22499169770728,50.436184546884164],[-118.22497658686619,50.43614901476126],[-118.2247294888624,50.435980211152525],[-118.22401680089347,50.435718194897944],[-118.22319485733799,50.43559650322681],[-118.2225883752224,50.4356114481545],[-118.22212158892044,50.43564809204572],[-118.22183094160826,50.43570051345349],[-118.22170024751655,50.43572917293973],[-118.22151711054292,50.43571289166337],[-118.22115608601341,50.43568069771234],[-118.22078703908434,50.43568465788429],[-118.22060415672664,50.435718112495096],[-118.22046378469591,50.435782248893055],[-118.22021271403422,50.43593350159676],[-118.21998554447892,50.43607966570695],[-118.2199192140032,50.43612527564007],[-118.21987321551701,50.436022597963536],[-118.21969617208097,50.43581747393627],[-118.21941855484505,50.435712608019074],[-118.21910369822626,50.43567970758739],[-118.21883507187503,50.4356150228477],[-118.21873132277156,50.435580036793795],[-118.21866420053092,50.43544592149405],[-118.21844389739694,50.435142829011546],[-118.21817540077838,50.43493408175833],[-118.21802965242122,50.43488595810439],[-118.2178950656967,50.43482449990062],[-118.21767606470755,50.43471867647389],[-118.21745670149961,50.43463542693357],[-118.21717759589104,50.434580178430636],[-118.21682888273568,50.43450758722435],[-118.21657306919242,50.43442007778248],[-118.2164239320516,50.43438132254886],[-118.2162295433985,50.43437892939426],[-118.2159432843155,50.434354804567306],[-118.21567585002867,50.43430376420677],[-118.21555714524793,50.43427336209997],[-118.21545206060848,50.43425635843585],[-118.21525151118956,50.434217929969925],[-118.21511579310268,50.43418350824417],[-118.21509148092328,50.434170495358856],[-118.21482045257522,50.43593114989428],[-118.20856413889126,50.43803384061428],[-118.20762122619111,50.44424396671914],[-118.21011310865043,50.44573946182066],[-118.21015529465788,50.44633455123192],[-118.21015070612128,50.446514457060644],[-118.2101408657896,50.44669400175456],[-118.21011887229008,50.44687212036578],[-118.21007928186857,50.447049559223835],[-118.20999593731868,50.44722392336775],[-118.20987369500484,50.44738762699106],[-118.20971390509501,50.44753287329687],[-118.20951949059986,50.44766324005978],[-118.20931515291602,50.447789526180244],[-118.20912384962047,50.44792237164],[-118.20894227080247,50.4480604312837],[-118.20876399927404,50.44819984476217],[-118.20858572509765,50.44833926686101],[-118.20840424043543,50.44847676290799],[-118.20823005554684,50.44862324371488],[-118.20803738067056,50.44875374000736],[-118.20779614752325,50.44883730362605],[-118.20753652377752,50.44890431084209],[-118.20726775087259,50.448962771562854],[-118.2069976155565,50.449018866595324],[-118.20672874532,50.44907787971481],[-118.20646571425154,50.449144083903334],[-118.20620550482475,50.449214445974214],[-118.20595084496127,50.44929366924404],[-118.20571447746075,50.44939000179771],[-118.20548560290949,50.44949420273541],[-118.20525779948211,50.44960243830239],[-118.20503456747261,50.44971495534773],[-118.20482115893255,50.44983211524201],[-118.20461572616296,50.44995435725205],[-118.20442488287846,50.45008440784493],[-118.2042629302205,50.4502317461521],[-118.20412042914747,50.45038950515223],[-118.20399329340377,50.45055059864868],[-118.20386965562294,50.45071194777833],[-118.20374932540396,50.45087465103845],[-118.20363229967523,50.451038726300666],[-118.20352042778178,50.45120372545046],[-118.20341011176065,50.45136996424719],[-118.20330329540629,50.4515364497977],[-118.20320163300062,50.45170385926989],[-118.20310677574753,50.45187288769769],[-118.20302203377115,50.45204488048709],[-118.2029441946554,50.452217929630564],[-118.20286810521449,50.452391102137966],[-118.20278851463395,50.45256402764228],[-118.20270221188191,50.45273478917082],[-118.20259704396828,50.452901950923746],[-118.20247145088884,50.45306429090737],[-118.2023458584549,50.453226621785475],[-118.20224438072596,50.45339292261893],[-118.20217888607776,50.45356627255657],[-118.20214081377149,50.45374495584432],[-118.2021218027438,50.45392610462939],[-118.20211533352176,50.454106447597134],[-118.20211071061064,50.45428636028695],[-118.20210589562242,50.45446738034523],[-118.20210642768683,50.45464821706028],[-118.2021104604834,50.45482930066926],[-118.20212003403732,50.455009084595844],[-118.2021385546973,50.45518836054601],[-118.20216621306311,50.45536603003868],[-118.20221565226198,50.45554070678911],[-118.20231409336624,50.4557086789017],[-118.2024343159645,50.45587365815405],[-118.20254714907502,50.45604038500911],[-118.20263801162557,50.45621120297262],[-118.20272498529961,50.45638401551773],[-118.2028176956632,50.45655440301507],[-118.20292741971708,50.45671864082527],[-118.20307524915043,50.4568674950582],[-118.2032741171695,50.45699790913121],[-118.20346725182456,50.45713073887088],[-118.20364288983839,50.457272513245634],[-118.20381648892176,50.45741583392],[-118.2039786184784,50.45756399536656],[-118.20411284745285,50.45771978943703],[-118.20422063346285,50.457885027565425],[-118.20430606102279,50.45805658981051],[-118.20437651592356,50.45823275512899],[-118.20443812282876,50.458408856918496],[-118.20448358847455,50.45858608044973],[-118.20450921808006,50.45876529522201],[-118.20453290381077,50.45894550285777],[-118.20457117467257,50.45912334885893],[-118.20462704882587,50.45930186644338],[-118.2047233694614,50.45947194488306],[-118.20487879823744,50.4596179319652],[-118.20506242030635,50.45975461566246],[-118.2052594602227,50.45988545599523],[-118.20545669326287,50.46001518855001],[-118.20567881529693,50.460134236420295],[-118.20589762930517,50.46025192960786],[-118.20603517162372,50.460398913537865],[-118.20610427336264,50.46057272116793],[-118.20613254168968,50.46075720098536],[-118.20613659118197,50.46093828307618],[-118.20611418790669,50.4611186304202],[-118.20605842503178,50.46129719568312],[-118.2059739661207,50.461467518676365],[-118.2058268617673,50.46162099581047],[-118.20566769544511,50.461772492515244],[-118.20556105633766,50.461937861755416],[-118.20547416708547,50.46211196352862],[-118.20541869153686,50.462288849283176],[-118.20540552114917,50.462467026881114],[-118.20541997593858,50.4626494027999],[-118.20546302085647,50.46283041321828],[-118.2055397090461,50.46300135639686],[-118.20567055417838,50.46315634700873],[-118.20584593302982,50.46329978687395],[-118.20602296616508,50.4634439124731],[-118.20617938942593,50.463594485754946],[-118.20633211721548,50.46374593725441],[-118.20647920835297,50.46389924206235],[-118.20661696471633,50.4640552876061],[-118.20674120976848,50.464217720906795],[-118.20685019266885,50.46438641861505],[-118.20695752161159,50.46455443909018],[-118.20707632347036,50.46471761808136],[-118.20721835995896,50.46486944416018],[-118.20739296712884,50.46500717622289],[-118.20759450578143,50.46513267665437],[-118.20781344653604,50.46524980270454],[-118.20803851071976,50.46536227938129],[-118.20826036543787,50.46547282988109],[-118.20848834506641,50.46557872204351],[-118.20872069722738,50.46567984140197],[-118.20895888325546,50.46577798132685],[-118.2091956089276,50.46587432733622],[-118.20943418392868,50.46597023354594],[-118.20967480171505,50.46606458360739],[-118.20991755667623,50.46615683273548],[-118.21016079700418,50.46624628601375],[-118.21040831370006,50.46633152006827],[-118.2106642861653,50.46640886988466],[-118.21092316933526,50.46647965333108],[-118.21118215079899,50.466549873533054],[-118.21148315339165,50.46662305275499],[-118.21120417850429,50.46659662355458],[-118.21092695478694,50.46657031697867],[-118.21064798055119,50.466543886379085],[-118.21036852382512,50.466520241455314],[-118.2100883895671,50.4665005074717],[-118.20980757770516,50.46648468442318],[-118.20952667008545,50.4664694143668],[-118.20924624708917,50.466451348295536],[-118.20896698359324,50.466426592436726],[-118.2086883983483,50.46639792423864],[-118.20841185528595,50.466367699740296],[-118.20813394720093,50.46633512744502],[-118.20785788786436,50.4663021151956],[-118.20758017563516,50.46626841624767],[-118.20730431062246,50.46623428628639],[-118.20702640415817,50.46620171121342],[-118.20674645776614,50.466170682083046],[-118.20647049798978,50.466137103746284],[-118.20619589183981,50.46609571933903],[-118.20592876515398,50.46604186220419],[-118.20566717377082,50.46597652531391],[-118.20540868729381,50.4659035058399],[-118.20515253468757,50.46582725125715],[-118.20489618782992,50.46575212133564],[-118.20463722072338,50.465681886402145],[-118.20437417210427,50.46561475298312],[-118.20411064107465,50.46555040528909],[-118.20384526244351,50.46548649615534],[-118.20358153776846,50.46542327245326],[-118.20331810501519,50.46535836916465],[-118.20305681101557,50.465291356044084],[-118.20279784941471,50.46522111678026],[-118.20254141388122,50.46514653506318],[-118.2022911996294,50.46506674150954],[-118.20204380279031,50.464980926598784],[-118.20180087505582,50.46488978537659],[-118.20156232198522,50.464793862636704],[-118.20132619923008,50.464694151251685],[-118.20109425602412,50.464590783647786],[-118.20086454799747,50.46448475268815],[-118.2006405781846,50.46437629643277],[-118.20041874751874,50.46426573055738],[-118.20020109802674,50.464151499620414],[-118.19999939820593,50.46403727234143],[-118.19978446249378,50.463907412036434],[-118.19958528280492,50.46377867177706],[-118.1993937857551,50.463646513582205],[-118.1992098736959,50.46351150011627],[-118.19904919933748,50.46336512632872],[-118.19890612157414,50.46320926333941],[-118.19876508526029,50.46305185363685],[-118.19861228757749,50.46290095422444],[-118.19843654583163,50.462759735505394],[-118.19825088959273,50.46262459677864],[-118.19805191521128,50.462494728311476],[-118.19784438802124,50.462373304833655],[-118.19762675416817,50.46225906858221],[-118.19739725989011,50.46215191382148],[-118.19715882829273,50.462055418669244],[-118.19691087491563,50.461972949892846],[-118.19664601949522,50.46191639843195],[-118.196366688105,50.46188199400618],[-118.19608638829315,50.461853170470036],[-118.19580754801767,50.46182614873354],[-118.19552812827705,50.46180246631898],[-118.19524841736957,50.46178046214171],[-118.1949687067348,50.46175845725918],[-118.19468928630283,50.46173478166171],[-118.1944107390857,50.461706077472876],[-118.1941328651037,50.46166329058132],[-118.19385528780023,50.461629003417684],[-118.19357870458744,50.46162981571864],[-118.19329980138158,50.461654193534386],[-118.19302187910479,50.46169332994557],[-118.1927495041084,50.461741336927865],[-118.19248112105099,50.46179696565973],[-118.19222237519374,50.46186852484096],[-118.19196489367307,50.46194300228282],[-118.19170195987518,50.46200805411247],[-118.19143113830556,50.46205729778254],[-118.19115515643529,50.46209543682501],[-118.19087586124502,50.46212204115673],[-118.19059500355883,50.46213723440149],[-118.19030675000165,50.46214399451652],[-118.19002334970435,50.46213301661489],[-118.18975364853029,50.462094185991596],[-118.18948713132593,50.46200642882533],[-118.18931006405069,50.46187300965452],[-118.18924861278137,50.4617065169735],[-118.18923645983489,50.46152146717665],[-118.18923004434888,50.4613339931101],[-118.18921020973056,50.46115236008976],[-118.1891998076573,50.46096743383158],[-118.18917443151521,50.46078709970987],[-118.18910432720406,50.460619425753656],[-118.18896129248044,50.46046354941912],[-118.18875807244869,50.460327711384664],[-118.18852482281241,50.46023213112163],[-118.18825939976261,50.460168746933206],[-118.18797385930695,50.46012936134621],[-118.18769086016381,50.460116144848826],[-118.18741487752031,50.4601339337802],[-118.18713949532301,50.46018905491644],[-118.18688123903519,50.46026798594403],[-118.18668154380352,50.46038721537726],[-118.18651220233276,50.460535709977755],[-118.1862837112,50.46063708357857],[-118.18603926565577,50.46072828907787],[-118.18578567395325,50.460810937571104],[-118.18552984216275,50.46088607759495],[-118.18527118674918,50.4609570669698],[-118.18500961152681,50.46102445936218],[-118.18474667305752,50.46108949479251],[-118.18448402413453,50.46115285961085],[-118.18421797115539,50.461215413691384],[-118.1839553223102,50.46127876831848],[-118.1836909206092,50.46134200749293],[-118.18342642190336,50.461405799716175],[-118.18316231062492,50.46146735871077],[-118.18289518349613,50.46152587432818],[-118.18262707995422,50.46157980927305],[-118.18235479242179,50.46162722814547],[-118.18208153020304,50.46167005738702],[-118.18180389006595,50.46170748680617],[-118.18152556582633,50.461738656589475],[-118.18124684957925,50.46176188782768],[-118.18096618503874,50.46177594042652],[-118.18068045952498,50.46177833417965],[-118.18039881444047,50.46176745550796],[-118.18012377725758,50.4617389630907],[-118.17985903751763,50.461671647452185],[-118.17961646443473,50.46157877841837],[-118.17939197462441,50.46146345734763],[-118.1792328303215,50.46131885724029],[-118.17916917885915,50.46114485086102],[-118.17912264203589,50.46096414483521],[-118.1790429446551,50.460790702748106],[-118.17895605315269,50.460617872601226],[-118.17885019993649,50.460452180664426],[-118.17871050798203,50.46029765504869],[-118.17853892223503,50.46015330318001],[-118.1783497374097,50.46001844567555],[-118.1781506375695,50.459889657416085],[-118.1779380223055,50.459767262196486],[-118.17770353275125,50.45966874902359],[-118.17744532591131,50.45960470912079],[-118.17716874508496,50.459564798701564],[-118.17688429037652,50.4595395903579],[-118.176605576098,50.45952212816612],[-118.17632336332747,50.45951458798867],[-118.17604202775428,50.45951218979768],[-118.17575894018367,50.45950967594191],[-118.17547672763241,50.45950213361205],[-118.17519548655528,50.4594890091369],[-118.17491463420733,50.45947365137874],[-118.1746350475716,50.45946120305602],[-118.17435254328906,50.45945533675975],[-118.17407081958275,50.459455166141176],[-118.17378841501429,50.45945890626374],[-118.17350688565791,50.45946779732231],[-118.17322613658733,50.4594823840692],[-118.17295239060496,50.45951781566277],[-118.17268351131345,50.45957618292317],[-118.17240840391878,50.459619427137994],[-118.17213125218237,50.459643875766695],[-118.1718502055544,50.45962962653865],[-118.17157596308522,50.45958647729134],[-118.17131027685527,50.45952472248324],[-118.17104478573064,50.4594618507562],[-118.17077482350228,50.45941448231995],[-118.17049727778169,50.459380136659355],[-118.17021798289785,50.45935583679673],[-118.16993713307241,50.45934046644321],[-118.16965414490346,50.45933737441572],[-118.16936999025738,50.45934097932021],[-118.16908797486711,50.45934247493448],[-118.16880761291863,50.4593344770332],[-118.1685303605547,50.45930862696805],[-118.16825806809858,50.45926447722886],[-118.16798947114535,50.45920928809078],[-118.16772194515276,50.459147954332785],[-118.1674544183314,50.45908662885558],[-118.16718572696067,50.459031991431836],[-118.16691314499236,50.458989517251965],[-118.16663793882424,50.458972278065694],[-118.16635582917472,50.45898449087773],[-118.16607216182135,50.45900564206484],[-118.16579034279196,50.45901618349893],[-118.16550813479901,50.459018786289064],[-118.16522592677352,50.459021388361734],[-118.1649447890724,50.459028016243444],[-118.16466413646144,50.459042027675416],[-118.16438542819412,50.45906521665828],[-118.16410574689836,50.45909398627408],[-118.16382917698624,50.45912523585694],[-118.1635507575698,50.45916709373807],[-118.1632749637072,50.45921421780421],[-118.16299965876878,50.45922803466387],[-118.16272698222106,50.45919627434729],[-118.16264130874903,50.459179469891986],[-118.16245634935129,50.4591426265906],[-118.16218455204968,50.45908549635441],[-118.16191032212693,50.45904232320015],[-118.1616321035298,50.4590118667447],[-118.16135125990104,50.45898630419565],[-118.16107041659036,50.458960740935275],[-118.16079200599,50.4589313897028],[-118.16051865210072,50.458893364860735],[-118.16025561077466,50.45883685049582],[-118.16001066081232,50.458747725549664],[-118.15976882634726,50.45865090143963],[-118.1595150282993,50.45857187884487],[-118.15925354747692,50.45849627046406],[-118.15898837198205,50.45843169097009],[-118.1587167730208,50.458393785814074],[-118.15844089120864,50.45839059920718],[-118.15815965646544,50.45840794297867],[-118.15787841959232,50.45843545651158],[-118.15759591798158,50.4584600589871],[-118.15731361437547,50.4584733650836],[-118.1570291692215,50.45848878772474],[-118.1567451148868,50.45850196819753],[-118.15646339564738,50.45850176182419],[-118.15624158495162,50.45848319482529],[-118.1415667260132,50.46047250194555],[-118.14157177656355,50.46048416188159],[-118.1415874000367,50.460546858001116],[-118.14157462501842,50.46060980476311],[-118.14154765301852,50.46067286344446],[-118.14152058260582,50.460736484691594],[-118.14149554883281,50.46080873092094],[-118.1414685766036,50.46087178956754],[-118.1414698104118,50.46092556122898],[-118.1414709474453,50.4609798865342],[-118.14147199331396,50.46102459504197],[-118.14150162439967,50.461078124999496],[-118.14154545576777,50.461131525162465],[-118.14156098109048,50.46119478381241],[-118.141548205852,50.46125773052081],[-118.14153543213882,50.46132066829307],[-118.1415512438137,50.461392427495085],[-118.14158087679571,50.46144594847724],[-118.14165281826601,50.461490615218054],[-118.1417513141868,50.461525307876194],[-118.14186585231703,50.46156961182466],[-118.14197873854377,50.46161322866131],[-118.14206497626157,50.46165722056791],[-118.14216366407118,50.461700958131374],[-118.14227820305176,50.4617452616449],[-118.14240528741108,50.4617887660192],[-118.14251925769263,50.46180590666057],[-118.14267436226201,50.46183105142131],[-118.14278814297882,50.461839137580256],[-118.14287244165145,50.46187395024089],[-118.1428735803968,50.46192827546782],[-118.14283435076787,50.4620006339857],[-118.14279355874616,50.46208193121424],[-118.1427669671107,50.46216309848037],[-118.14275457281688,50.46224415365395],[-118.14272973150733,50.46232544529681],[-118.14270313805292,50.462406621453],[-118.14267654606361,50.46248778866485],[-118.14263537382541,50.46255097739128],[-118.1425940132948,50.462605102970755],[-118.14256831423651,50.46265074033266],[-118.14254153057232,50.46272286222167],[-118.14251436893788,50.462776866777645],[-118.14251493810613,50.46280402936303],[-118.14251550727506,50.46283119194747],[-118.14251674238393,50.46288496346678],[-118.14250415928201,50.462956955416956],[-118.1425057738246,50.46302883531306],[-118.14246635293524,50.463092139410556],[-118.14242489337471,50.46314682746722],[-118.14238372018313,50.46321001604874],[-118.14239934572744,50.463272711842244],[-118.14245775749393,50.46334410784393],[-118.14251598128033,50.46340644069075],[-118.14253179524458,50.46347819956753],[-118.14250491426053,50.463550875020125],[-118.14246412180545,50.46363216304178],[-118.14242313793432,50.463704405785094],[-118.14238371633911,50.463767709800194],[-118.1423711312181,50.46383971058631],[-118.1424151560038,50.46390216440618],[-118.14248535166045,50.46394670606439],[-118.14257159433,50.463990697450356],[-118.1426296293565,50.464043976006586],[-118.14265964331165,50.464115613815196],[-118.14266106994609,50.46417843049695],[-118.14264819862706,50.464241930745395],[-118.14264943393259,50.464295702169295],[-118.14264962368873,50.464304756347204],[-118.14265142982885,50.46438568136863],[-118.14265285489957,50.46444850695924],[-118.14265428153506,50.46451132361517],[-118.142655230326,50.46455659449189],[-118.14265684516636,50.4646284742435],[-118.14261742309188,50.46469177826916],[-118.14254784918403,50.464755208768764],[-118.1425063881947,50.46480989674312],[-118.14250705571789,50.464836496684875],[-118.14250781463781,50.464872713372856],[-118.14250961898553,50.46495364726933],[-118.14252562477692,50.46503445124986],[-118.14256945963736,50.46508785967663],[-118.1425992860023,50.46515043431068],[-118.14260090077482,50.46522231401027],[-118.1425881274075,50.46528525159456],[-118.14256299604676,50.4653580513028],[-118.14256423128136,50.46541182265335],[-118.14257985783857,50.465474518250474],[-118.14265034263734,50.465527560236936],[-118.14272248144738,50.46558128022234],[-118.14282273929682,50.46561608722638],[-118.1429349687802,50.46563310295927],[-118.14302045576467,50.465640877255645],[-118.14309145609235,50.46564027202177],[-118.14318929579656,50.465648354385436],[-118.14326067590254,50.465665857367036],[-118.14333272408655,50.46570996021034],[-118.1433891999452,50.46577217695386],[-118.14341921781575,50.46584380547407],[-118.14342054723684,50.465907184586996],[-118.14342197342611,50.465970010049425],[-118.14342378101757,50.46605093489139],[-118.14345379756764,50.466122572307256],[-118.14351240618787,50.46620301272765],[-118.14358464386646,50.466256178462544],[-118.14364287296542,50.46631851049348],[-118.14370110066452,50.46638085141887],[-118.14375757943104,50.46644305899357],[-118.143829721022,50.46649677819868],[-118.1438739388681,50.46656829431495],[-118.14388956764488,50.46663098963804],[-118.14387660410281,50.46668488204146],[-118.14384944168155,50.46673888665916],[-118.14376712983572,50.46679406279082],[-118.14368297390799,50.46683950667829],[-118.14360066167518,50.46689468267971],[-118.1436161002242,50.46694832386926],[-118.14364379709905,50.46699267432859],[-118.1436735278877,50.467055811101254],[-118.14367476605246,50.4671095733966],[-118.14366374276986,50.46717264427413],[-118.14365068203826,50.467227090260025],[-118.14362332905635,50.46727204064314],[-118.14361055497392,50.4673349871152],[-118.14361198303351,50.46739780353439],[-118.14359892217433,50.46745224949899],[-118.14361416938812,50.467496845441175],[-118.14368660079586,50.4675590562347],[-118.14377323152931,50.46762115476862],[-118.14381551124106,50.4676834833557],[-118.14384524272496,50.46774662002835],[-118.14387507105488,50.46780920304345],[-118.14390490102816,50.467871777115924],[-118.14393472952351,50.46793436010535],[-118.14393567967066,50.46797963077918],[-118.14395130902193,50.468042325984136],[-118.14395149905499,50.4680513801178],[-118.14395254598392,50.46809609714048],[-118.14395349615235,50.46814136780517],[-118.14395473468034,50.46819513002527],[-118.14395578161582,50.46823984703986],[-118.14395692182568,50.46829417182756],[-118.14398656219156,50.46834769171023],[-118.14401601101953,50.46839216638143],[-118.14403183067614,50.46846391567199],[-118.1440189600635,50.468527415742464],[-118.14402194785715,50.46858131124691],[-118.14403757753658,50.46864400639301],[-118.14405320569877,50.468706710461646],[-118.14409567687908,50.46877809298378],[-118.14413942047142,50.4688320541873],[-118.14419727192718,50.46887628641044],[-118.14425531515467,50.46892956379473],[-118.1443135470682,50.46899190419747],[-118.14438423108209,50.46905399004439],[-118.14445618745339,50.46909865454769],[-118.14452824072475,50.469142765357574],[-118.14462665879827,50.46917800878027],[-118.14472730649292,50.469230922148405],[-118.14475675662709,50.46927539657451],[-118.14478639858581,50.46932891617876],[-118.14480155085211,50.469374065498684],[-118.14483100115284,50.469418539897326],[-118.1448745560208,50.46946344665221],[-118.14491664874632,50.46951672056215],[-118.14496030054748,50.46956107363359],[-118.14501834555635,50.469614350573806],[-118.14510488531535,50.469677001555205],[-118.14520359204597,50.46972074491186],[-118.14528965964979,50.469755670829805],[-118.14533321529946,50.469800577386025],[-118.14536266640239,50.46984505162019],[-118.14536361802207,50.46989032217487],[-118.14537905969105,50.4699439629205],[-118.14542204460257,50.469961707102264],[-118.14546375618909,50.46999688148326],[-118.14554972621335,50.47003236976206],[-118.14562140285129,50.470058362665064],[-118.14571944298228,50.47007549686312],[-118.14581933073289,50.47009220168189],[-118.14590492035089,50.470109581466716],[-118.14598914013284,50.470144945049206],[-118.14607501868544,50.470170816233676],[-118.14613220557483,50.470188438702486],[-118.14614484673908,50.47019724702065],[-118.14617448938894,50.47025077512294],[-118.14624673824228,50.47030392992983],[-118.14631850793194,50.47033953905306],[-118.14641683621282,50.470365173088084],[-118.14648841558213,50.47039172799562],[-118.14657486659847,50.47044476109368],[-118.14660450992092,50.47049828906481],[-118.14660565337601,50.4705526136735],[-118.14659288408478,50.47061555130329],[-118.14658011319766,50.47067849785647],[-118.14652473885188,50.4707417999508],[-118.14648502801236,50.47079661334696],[-118.1464722569236,50.47085955987369],[-118.14647368907768,50.47092237598206],[-118.14647511967547,50.470985201015296],[-118.14650495535277,50.47104777414333],[-118.1465051459108,50.471056828239035],[-118.1465204910379,50.47111103132298],[-118.14653593293924,50.471164680756495],[-118.14655175757373,50.47123642944189],[-118.14656719955514,50.471290078862715],[-118.1465967466867,50.47134416042458],[-118.14664078464004,50.47140661198869],[-118.14668326089344,50.4714780022123],[-118.14671290658333,50.47153152115641],[-118.14672834885728,50.4715851705352],[-118.14674369443208,50.47163937355293],[-118.14674531759768,50.471711243685164],[-118.1467753431846,50.471782879701315],[-118.14683320256646,50.47182710145989],[-118.14690526251708,50.47187121057839],[-118.14698967702911,50.471915627410326],[-118.14707575020086,50.47195055184902],[-118.14716134382694,50.47196793062549],[-118.14723184415132,50.47202096927709],[-118.14729008572526,50.47208329895066],[-118.14736204980217,50.47212796140344],[-118.14743411075005,50.47217207016235],[-118.14744974641313,50.472234764549576],[-118.14745117841126,50.472297589468255],[-118.14745251368467,50.472360968026784],[-118.14745375649667,50.47241472992714],[-118.1474549977515,50.4724685007536],[-118.14747034449937,50.47252270361168],[-118.14748559881187,50.47256728981267],[-118.14750104235875,50.472620939015314],[-118.14753040071011,50.47266596616387],[-118.14754622745203,50.4727377145743],[-118.14757625499314,50.472809350282986],[-118.14757768874574,50.47287216622569],[-118.1475647278151,50.4729260586436],[-118.14758007485037,50.47298026145591],[-118.14763831814325,50.47304259087284],[-118.1477228322947,50.473086453438675],[-118.14783731307983,50.47312113394784],[-118.14794975397375,50.473147198523634],[-118.14799274294697,50.47316494164008],[-118.14804974350228,50.47317350898671],[-118.14814925717855,50.473172103507025],[-118.14824673228411,50.47316207320029],[-118.14844314561824,50.47313363621642],[-118.14852902970482,50.47315951433702],[-118.14861354650088,50.47320336728893],[-118.14871391856157,50.473247785287256],[-118.1488003761043,50.47330082539503],[-118.14888527551908,50.47336278626444],[-118.14895772204744,50.47342500209756],[-118.14901577674499,50.47347827669346],[-118.1490881269275,50.47354104607786],[-118.14915882307494,50.47360313746569],[-118.14921687823902,50.473656411944695],[-118.14926072939257,50.47370981715974],[-118.14933298741857,50.47376296973101],[-118.1494174078585,50.47380738461344],[-118.14951806993463,50.473860302265685],[-118.14961873380658,50.47391321089348],[-118.14970344272523,50.47396612596252],[-118.14978980610356,50.47401971889834],[-118.14988833718365,50.474054394869334],[-118.1500028205286,50.47408908203418],[-118.15011526508484,50.474115144386175],[-118.15021535627875,50.474140890292034],[-118.15032955205865,50.47416707670785],[-118.15041387957606,50.474201883110815],[-118.15047164736932,50.474246665417],[-118.15051550214089,50.4743000611678],[-118.15055935545664,50.47435346582745],[-118.15058890937794,50.4744075461221],[-118.15061875302175,50.47447011787997],[-118.15063225855732,50.47451458819494],[-118.15063496654952,50.47455998271886],[-118.15063515795094,50.47456903676811],[-118.15063640461526,50.474622798486095],[-118.15063784112543,50.47468562317814],[-118.15063908779615,50.47473938488824],[-118.15065443914062,50.47479358715403],[-118.15068389874607,50.47483805970212],[-118.15069953984758,50.47490075342505],[-118.15072938241138,50.47496333404481],[-118.15075737735775,50.47502634402359],[-118.15080142466205,50.47508879365327],[-118.15087368515117,50.47514195406117],[-118.1509315528557,50.47518617350057],[-118.15100371696272,50.47523988746318],[-118.15107422691449,50.47529292346075],[-118.151160692709,50.47534595266699],[-118.15126068898127,50.47537226016723],[-118.15134501946892,50.475407065811254],[-118.15143129423534,50.475451040761286],[-118.15150326778112,50.4754957003443],[-118.15154537239889,50.47554898027362],[-118.15158922970647,50.47560237551443],[-118.15163308555844,50.4756557796641],[-118.15169104804083,50.47570961529032],[-118.15176312049857,50.475753712114816],[-118.15184783538646,50.475806625427694],[-118.15193362983132,50.47583305447576],[-118.15200531935939,50.475859043071445],[-118.15208936295278,50.47588534774344],[-118.15220385263443,50.47592003256074],[-118.15231630302404,50.475946092624866],[-118.15244451611201,50.47596310054614],[-118.15254266989467,50.47597966601821],[-118.1526424765665,50.47599691822367],[-118.15274014860462,50.47599593803756],[-118.15285396683824,50.47600401373844],[-118.15298071778926,50.47602939718103],[-118.15309521008062,50.47606407214333],[-118.15317944660954,50.47609943001163],[-118.15326572292811,50.476143412428634],[-118.15333731549262,50.47616996273136],[-118.15343547005293,50.47618652741014],[-118.15353527752362,50.4762037788088],[-118.15363314199995,50.47621185186341],[-118.15374696093794,50.47621992664691],[-118.15385931756889,50.476236377466385],[-118.15395999183082,50.47628928200337],[-118.15398955109526,50.47634336126359],[-118.15403341050794,50.476396764416435],[-118.1540488647087,50.476450403524616],[-118.15407871294204,50.476512983124316],[-118.15407909714345,50.4765310911672],[-118.15409426112525,50.47657623881664],[-118.1541099075672,50.476638931924484],[-118.15412555249365,50.47670163395512],[-118.15412680337519,50.47675539549207],[-118.15412795604442,50.47680971960284],[-118.15412901326067,50.476854436044725],[-118.1541730670153,50.47691688419597],[-118.15421663841674,50.47696178686968],[-118.15423228360343,50.47702448886025],[-118.15424754611867,50.47706907388412],[-118.1542629025899,50.47712327549497],[-118.15427835575333,50.47717692345289],[-118.15430607094376,50.47722126176114],[-118.15433563123344,50.47727534086699],[-118.15437968412598,50.47733779783351],[-118.154466157723,50.47739082433208],[-118.15446721528797,50.47743554073875],[-118.15446856056738,50.477498918810134],[-118.15446981187968,50.47755268029031],[-118.15447106163604,50.47760645069667],[-118.1544867089587,50.47766914367166],[-118.15447385043262,50.477732644230784],[-118.154446884665,50.47779571363893],[-118.15437867553463,50.477841157797094],[-118.15430842477184,50.47787798626409],[-118.15423973288348,50.477905884897886],[-118.15414136287062,50.47795145856181],[-118.15411410773433,50.47800602751411],[-118.15411535863839,50.4780597889647],[-118.15414501590772,50.47811331441864],[-118.15421728673806,50.47816646352242],[-118.15428926737215,50.478211121149954],[-118.15435940149935,50.47824604686353],[-118.15445959824753,50.47828140539037],[-118.15455989336591,50.47831620124863],[-118.15464394302478,50.47834250390751],[-118.154715828778,50.478377553602435],[-118.15477370439686,50.478421770862994],[-118.15481766236351,50.478484781214135],[-118.15484576185447,50.47854723624122],[-118.15484720590894,50.4786100516443],[-118.15485059183237,50.478682054177106],[-118.15485222816322,50.47875392356498],[-118.15486806712329,50.47882567932148],[-118.15489811189792,50.47889730358131],[-118.15494060826596,50.478968689984896],[-118.15497065325098,50.479040314212405],[-118.15500040782533,50.47910344701085],[-118.15503045143612,50.479175080139996],[-118.15504590777361,50.479228718925306],[-118.1551043602033,50.47930010686335],[-118.15513402101983,50.479353623041405],[-118.15514986063849,50.47942537870468],[-118.15516570186638,50.479497125429546],[-118.1551670481883,50.47956050333111],[-118.1551686834962,50.47963238156607],[-118.15517032036816,50.47970425086491],[-118.15517195568644,50.47977612908703],[-118.15517301556564,50.47982083642548],[-118.15517445855757,50.479883660655354],[-118.15517648011894,50.47997363789384],[-118.15518005900677,50.4800546942755],[-118.15516787598975,50.480144794089476],[-118.15512670513341,50.480207986067704],[-118.15508543750975,50.48027173167156],[-118.15505847263847,50.48033479210077],[-118.15504707741385,50.480379755123536],[-118.15502049703707,50.480460923486774],[-118.15502251675838,50.48055090959364],[-118.15500994868266,50.48062290138743],[-118.15499757131072,50.48070395607628],[-118.15499920794899,50.48077582528257],[-118.1550010353377,50.48085675738352],[-118.15500238146892,50.480920135180696],[-118.15503223554036,50.48098270524895],[-118.15509049789762,50.4810450390706],[-118.15514856963989,50.481098309958696],[-118.15516402521769,50.481151957529846],[-118.15516537158665,50.48121533530194],[-118.15512458597047,50.481296626198635],[-118.15507115260688,50.48136911882322],[-118.15501596936355,50.48144147828003],[-118.1549609766832,50.48152290059679],[-118.1549077366364,50.48160443815587],[-118.1548525512842,50.48167680644025],[-118.1548403671752,50.48176690603791],[-118.1548414252136,50.48181162219942],[-118.15484238659572,50.481856892003066],[-118.15484344619723,50.48190159922982],[-118.15484459986072,50.481955922987815],[-118.15486063221367,50.48203673242036],[-118.15486111499351,50.48205427776284],[-118.15486246096388,50.48211765546795],[-118.15482342372323,50.482199079301274],[-118.15476804680408,50.48226238460487],[-118.15474088648226,50.48231639977634],[-118.15471391990752,50.48237945996278],[-118.15468860634178,50.48244320692229],[-118.15467584340114,50.48250615348645],[-118.15463447902215,50.48256028221537],[-118.15459301632178,50.482614973498826],[-118.15453763700984,50.48267828758492],[-118.15446913016042,50.4827152401467],[-118.15437055926732,50.482751750862235],[-118.15430205216954,50.4827887033177],[-118.15430349404367,50.48285152732869],[-118.15434755389522,50.48291397494826],[-118.15437759900679,50.482985607917094],[-118.154364837038,50.483048545473615],[-118.15435245784172,50.4831295998479],[-118.15436849128945,50.48321040030461],[-118.15437031764542,50.48329133217287],[-118.1543716629633,50.483354709787214],[-118.15437291432254,50.4834084708799],[-118.1543885619618,50.483471172349375],[-118.15441841686997,50.483533742385696],[-118.15444798143,50.48358782104023],[-118.15449204064139,50.483650277475476],[-118.15449348436674,50.48371309248752],[-118.15448072079467,50.48377603893056],[-118.15443935501737,50.483830167501985],[-118.15438543649677,50.48388510533607],[-118.15430145156334,50.483939610249465],[-118.1542883988149,50.48399405635802],[-118.15430385592106,50.4840476949275],[-118.1543193115048,50.48410134242106],[-118.15432027241185,50.48414661210129],[-118.15432133154977,50.48419131920673],[-118.15430856760224,50.48425426559283],[-118.15426933690034,50.484326626153255],[-118.1542271034785,50.484345101447204],[-118.15418467786677,50.484354522790916],[-118.15411403252153,50.484373242972175],[-118.15401653449973,50.48438327829022],[-118.15391728505597,50.48439318929984],[-118.15383380080377,50.484394048089555],[-118.15362246309263,50.48439600844851],[-118.15350852531179,50.484388496190455],[-118.15341083512216,50.4843894770421],[-118.15331120157134,50.48438127964093],[-118.15319949741405,50.48439143659638],[-118.15308642570001,50.484419577073574],[-118.15296089926505,50.48444796398386],[-118.15284830928374,50.48449364951459],[-118.15273737220595,50.48454002174043],[-118.15263936990362,50.48460370156783],[-118.15254292844249,50.484658442685195],[-118.1524730491929,50.484713377546655],[-118.15241941571969,50.4847768146579],[-118.1523358118835,50.48484941695806],[-118.15225347737615,50.48490459814593],[-118.15214040378602,50.48493273764237],[-118.1520433842717,50.48496032544243],[-118.15194470825033,50.4849973964737],[-118.15185966313766,50.48500718345576],[-118.15176235491654,50.485026270717626],[-118.15165084046339,50.48504548003764],[-118.15152355998539,50.48507374104342],[-118.15139812901451,50.48510156359553],[-118.15128543755081,50.4851478100743],[-118.15116009950845,50.48518524885347],[-118.15104906417736,50.48522201178526],[-118.15092197432877,50.48525932602454],[-118.15081084190611,50.48529664235369],[-118.1506978647103,50.48532421779963],[-118.15060055531389,50.485343304036164],[-118.15052971550726,50.485352967986096],[-118.1504588756703,50.48536263189076],[-118.15038978720982,50.4853724200282],[-118.15031913869628,50.48539113777221],[-118.15019360781716,50.48541952152112],[-118.15006632537118,50.48544778084402],[-118.14994089090168,50.48547561066735],[-118.14981555083297,50.48551304791423],[-118.14974528439977,50.48554987314607],[-118.14971811764575,50.485603877940406],[-118.14971955322684,50.48566670179263],[-118.14969276889099,50.48573881442522],[-118.14966744634594,50.485802559976065],[-118.14956905449728,50.485848129145744],[-118.14947212592536,50.48588532223083],[-118.14938726980176,50.485904161233755],[-118.14927623281707,50.48594091343112],[-118.14917812584983,50.48600514373149],[-118.14910833715514,50.486059522748036],[-118.1490112166248,50.48608766149807],[-118.14892655103569,50.48611555406741],[-118.14885870595512,50.4861791022135],[-118.1488033142212,50.486242413161825],[-118.14873409947725,50.48632394476115],[-118.1486521399811,50.486397231019986],[-118.14859655664667,50.48645148792833],[-118.14856852551941,50.48646983926902],[-118.14851507705525,50.48654231934694],[-118.14844566875666,50.486614805747784],[-118.14839027746861,50.48667810752655],[-118.14835074586323,50.48674197442826],[-118.14828114601242,50.486805406792165],[-118.1481989012874,50.486860022276275],[-118.14810059984248,50.48691519763678],[-118.14800376452067,50.486951835756244],[-118.14789087405246,50.48698902477061],[-118.14779413253011,50.48703527025373],[-118.14773835806508,50.487080463846176],[-118.14766808749518,50.487117287692755],[-118.14765407153872,50.48712646323939],[-118.14754321940762,50.487172276492196],[-118.14744453485068,50.487209343424496],[-118.14734789072095,50.487255025942304],[-118.14723732274683,50.48731950034188],[-118.14720995959595,50.48736445942259],[-118.14718249962624,50.487409972128084],[-118.1471411217609,50.4874640977387],[-118.14709993298247,50.48752728617039],[-118.14706020806706,50.48758209863618],[-118.14703284614113,50.48762704872904],[-118.14697745006713,50.48769035865377],[-118.14692157564518,50.487736114362924],[-118.14683894618614,50.487772620961586],[-118.14675427609191,50.48780051181719],[-118.14672605270391,50.48780980875446],[-118.14666992441897,50.48776571214911],[-118.1465986986719,50.487757265746],[-118.14652766358455,50.487757873206164],[-118.14644474481526,50.48778588816496],[-118.1464317798076,50.487839770528815],[-118.14636188818922,50.487894701329964],[-118.14626466819084,50.487913230074376],[-118.14615120220827,50.48792325555462],[-118.1460540758214,50.48795139165453],[-118.14598399304518,50.4879972683033],[-118.14591595047833,50.48805176059807],[-118.14583127928961,50.48807965074054],[-118.14573221039133,50.48809860829773],[-118.14563489291014,50.48811769011877],[-118.1455358238458,50.48813664749997],[-118.14543879340303,50.48816422942222],[-118.14535374090956,50.48817401138486],[-118.14522819916334,50.48820238942476],[-118.14511530327795,50.48823957556102],[-118.14500425706527,50.48827632338211],[-118.14491977520419,50.48831326672752],[-118.14483723500831,50.488359388277296],[-118.14473883270458,50.488404953024734],[-118.1446561018955,50.48844202053045],[-118.1445717177989,50.488478401042855],[-118.1445031939795,50.4885153471931],[-118.14439210538525,50.48863346407645],[-118.1443649303662,50.48868746735609],[-118.1443534255723,50.48873298244876],[-118.14435447337958,50.488777698325485],[-118.14437011051812,50.48884039186099],[-118.14437134854954,50.48889416163159],[-118.14435847258619,50.48895766013934],[-118.14435990237162,50.48902047487139],[-118.14436152080368,50.4890923524258],[-118.14435987653314,50.492063128983666],[-118.14461796942385,50.49204755267238],[-118.14516437358978,50.492117417941316],[-118.14565695578462,50.49220097972102],[-118.14619447035905,50.49235214109566],[-118.14677289774903,50.49242145059062],[-118.14748875503123,50.49245530937489],[-118.14809525791443,50.492414730628035],[-118.14865905196687,50.49233439622545],[-118.1491813674004,50.492308738633774],[-118.15013108192574,50.49233375301925],[-118.15083690808012,50.492394559732816],[-118.15135082253818,50.4924575775511],[-118.1517491890251,50.492623700113214],[-118.15255424940145,50.4928067974813],[-118.15281068872086,50.49279052427331],[-118.15305188377681,50.4926584669162],[-118.15321902267938,50.49251380727246],[-118.15367278279984,50.492291731353156],[-118.15405304248776,50.4921452431048],[-118.15455346254022,50.49209258684462],[-118.15525698704869,50.49202437923055],[-118.15556441696761,50.492000415189885],[-118.15620331673973,50.49194683022365],[-118.15676102347791,50.49202309772779],[-118.15743773609807,50.492179549764444],[-118.1579965995287,50.492350805344685],[-118.15855430724152,50.49246774399538],[-118.1591456817672,50.49264581738854],[-118.15960801642339,50.49281136222541],[-118.16013090566962,50.492853494827855],[-118.16082488807942,50.4928399553949],[-118.16136793587263,50.49276655844527],[-118.16232604571354,50.49270278219888],[-118.16324443730383,50.492754844781075],[-118.16384595683948,50.49290535985029],[-118.16466818902508,50.49332576224047],[-118.16525180890483,50.4936806621671],[-118.16581821069153,50.49408349880511],[-118.16832086416142,50.49475278667409],[-118.16896622590185,50.4949572235666],[-118.16942861890921,50.49510238703505],[-118.16992186790225,50.4952536823216],[-118.17075539335993,50.49568104100341],[-118.17134368242314,50.49619274103774],[-118.17149992165866,50.496456343271426],[-118.17166810723648,50.49649875171077],[-118.17169273508179,50.496540613213966],[-118.17194433742164,50.496633552654075],[-118.17219769246317,50.49673679436924],[-118.17234749960659,50.496884680923074],[-118.17245000432746,50.497029230119644],[-118.17246577435685,50.49705068545315],[-118.17258599796462,50.49721568859097],[-118.17274670701909,50.497362094548606],[-118.17295199219194,50.49748678445418],[-118.17317158348276,50.49760062543666],[-118.17339750062027,50.49770870291108],[-118.17362536683022,50.49781577866178],[-118.17384525235686,50.497927948386895],[-118.17404918011852,50.49805027981215],[-118.17422109013017,50.49819351563407],[-118.17438288010864,50.49834394529039],[-118.17456306343922,50.498480425089575],[-118.17477293142304,50.49859922444592],[-118.17499233827606,50.49871417790481],[-118.17521797446476,50.49882392141109],[-118.17544818595177,50.49892776846739],[-118.17568647513622,50.49902597573161],[-118.17592787836918,50.49911649272076],[-118.1761790147597,50.49920204735965],[-118.17643881194178,50.49927861336866],[-118.17670649138879,50.49934047673221],[-118.1769775744134,50.49938280089206],[-118.17725410196117,50.499404048722276],[-118.17753500684003,50.49941034607954],[-118.17781756483056,50.4994071502631],[-118.17810411199918,50.499401415282],[-118.178388420367,50.49939835078261],[-118.17866942332711,50.49940408268896],[-118.1789496502196,50.4994244577223],[-118.1792301725639,50.499453323186145],[-118.17951099051905,50.49949067907736],[-118.17978655429691,50.499537841708005],[-118.18005316876007,50.49959566187796],[-118.18030508979254,50.4996665722299],[-118.18053531573858,50.49977041756825],[-118.18073927321507,50.499902906390304],[-118.18085542322575,50.49999982039196],[-118.1809113079115,50.50004557787936],[-118.18100188493122,50.50021808308506],[-118.1810909048755,50.50038934814914],[-118.18128046153795,50.50052307802125],[-118.18152402810396,50.50062164393925],[-118.18179278336109,50.50065702020567],[-118.18208166935848,50.50063788009129],[-118.18235614265637,50.50059964164661],[-118.18262749619086,50.50054875255837],[-118.18289621990175,50.5004925877216],[-118.18316328721191,50.50043574481562],[-118.18342966935697,50.500372642633934],[-118.18369283873878,50.500307613476295],[-118.18396000184381,50.50025020605533],[-118.18423184028524,50.50020669682981],[-118.18450903640384,50.50017316551247],[-118.18478857097837,50.50014657844702],[-118.18507054201395,50.50012637302793],[-118.18535173444518,50.500110640812096],[-118.18563692143269,50.50010253019068],[-118.18591657040092,50.50011605749904],[-118.18618727681613,50.500160600575846],[-118.18645147070131,50.500222192972835],[-118.18671206941605,50.50029426093879],[-118.18697043069578,50.5003689996778],[-118.18723297578249,50.500440082788316],[-118.1874905621674,50.50051928530478],[-118.18770942353075,50.50062739218578],[-118.18790250503275,50.50076135809598],[-118.188065907831,50.50091300728536],[-118.18817957703722,50.501075274464256],[-118.1882490621059,50.50124684304393],[-118.18829440947931,50.50142462641796],[-118.1883303178167,50.50160569375993],[-118.18836632428506,50.501786198459875],[-118.18841527481683,50.50196366642998],[-118.18846792419053,50.50214026544022],[-118.18852232614627,50.5023169880613],[-118.18857497635163,50.5024935869441],[-118.18862217628853,50.502670930995414],[-118.18865857148147,50.50284921179567],[-118.18866586485964,50.50303164870432],[-118.18868620025357,50.5032104862772],[-118.18876065520432,50.5033841039389],[-118.18887219929246,50.503558639720495],[-118.18902714477025,50.50370799872414],[-118.18924465614275,50.50380357609],[-118.1895177293214,50.50385504674024],[-118.18980462006091,50.503898461224125],[-118.19007039892206,50.50396128463707],[-118.19033511178826,50.50403024232314],[-118.19058104613316,50.50411539295626],[-118.1907953596268,50.50422938984249],[-118.19098671346153,50.50436322616212],[-118.19118011102873,50.504495515849925],[-118.19138985670405,50.50461539918981],[-118.19160748509763,50.50473075794864],[-118.19182316982031,50.50484709996525],[-118.19202707982778,50.504969959941185],[-118.19221882701011,50.50510157044297],[-118.19240065111295,50.505239251115654],[-118.19258043218514,50.50537848670195],[-118.19276235475203,50.505515613074756],[-118.19294194400723,50.50565596428158],[-118.19311764168168,50.505798300477835],[-118.19329723316844,50.5059386510618],[-118.19348120276405,50.5060742298472],[-118.19367529483203,50.50620260356329],[-118.19388777749568,50.50631702426264],[-118.19412867425727,50.50641084965578],[-118.19438192837009,50.506494816052665],[-118.19463109828077,50.50658187454325],[-118.194876180913,50.506672043014106],[-118.19512544897428,50.506758546714885],[-118.19537423381668,50.50684783602141],[-118.19561104984392,50.50694475977551],[-118.1958295739187,50.50705508231987],[-118.19602980610156,50.50717880375703],[-118.1962236184611,50.507308851697374],[-118.196409548793,50.50744343270263],[-118.19659314752977,50.507581229668496],[-118.19677090678138,50.50772201337844],[-118.19694866869449,50.507862787849696],[-118.19712633397071,50.50800412460585],[-118.19730614065739,50.50814335207396],[-118.19748224966776,50.50828344842061],[-118.19765222901175,50.508428201499605],[-118.19782016689344,50.50857450068743],[-118.19799209633888,50.50871825153426],[-118.19817219865037,50.50885580755789],[-118.19836816468352,50.508983742496326],[-118.19857629561513,50.50910292549901],[-118.1987924054908,50.50921702977817],[-118.19901435712764,50.50932814643883],[-118.19923854629853,50.50943659996329],[-118.19946847794087,50.50954263734019],[-118.19969860610117,50.509647549038206],[-118.19993077786697,50.50975091381509],[-118.19999992324477,50.50978177447747],[-118.20016295069722,50.50985427809388],[-118.20039327438244,50.50995808098379],[-118.2006234068147,50.510062990713436],[-118.20085373262603,50.51016679262246],[-118.20108425490248,50.51026946885006],[-118.20131847556208,50.51037128419804],[-118.20155114015094,50.51047185038065],[-118.2017857505916,50.510571432196116],[-118.20202230998285,50.51067001177213],[-118.20225906268476,50.51076748350061],[-118.20250185086661,50.510860851090555],[-118.20275067139856,50.51095013236395],[-118.20299978440568,50.51103773421083],[-118.20325074861029,50.511124896333754],[-118.20349966975644,50.51121361330477],[-118.203742848944,50.51130475453542],[-118.20397970636668,50.51140165992568],[-118.20420488669937,50.51150452183474],[-118.20441771250667,50.51161724279316],[-118.2045887932123,50.511755840749466],[-118.20472766674534,50.511916467909835],[-118.20485661723991,50.512083166449216],[-118.20500152559852,50.51223969838913],[-118.2051846761898,50.51237010568028],[-118.20541356308546,50.51247209557312],[-118.20566882016996,50.512555033834076],[-118.20593244332552,50.512630660160646],[-118.20619226330867,50.51269753920965],[-118.20646560342243,50.512747851383786],[-118.2067203698147,50.51282341254314],[-118.20696522074185,50.51291522359747],[-118.20719139322338,50.51302266771593],[-118.20738321891133,50.51315425074834],[-118.20753972154205,50.51330537548631],[-118.20767004233748,50.51346425660325],[-118.20778508291629,50.51362941079407],[-118.20788912329891,50.51379661976518],[-118.20798002485299,50.513967983785946],[-118.2080542820882,50.51414325615739],[-118.20813408774059,50.514317228594734],[-118.20823297053727,50.514483504414606],[-118.20837857702944,50.51463612008984],[-118.20858297331267,50.51476688543906],[-118.20881897740774,50.51485863800941],[-118.2090968073624,50.51490360894374],[-118.20937404561643,50.514941767154376],[-118.2096582870045,50.51497023933455],[-118.20994067842828,50.5149991500523],[-118.21021169157179,50.51504251751422],[-118.21046365027698,50.515113911809706],[-118.21070871490244,50.515204598088935],[-118.21094610114174,50.515308871716684],[-118.21117103732168,50.515423558718005],[-118.21137855337246,50.51554662821665],[-118.21156319739323,50.515678826651595],[-118.21170387239026,50.515849728452736],[-118.21176315545279,50.51602960177535],[-118.21167411127644,50.5161747431158],[-118.21144132867057,50.516299603227594],[-118.2112555902985,50.51643963199555],[-118.21111134527885,50.51659614750001],[-118.21094615329042,50.51674045062707],[-118.21070339990534,50.51683071116907],[-118.21042199458223,50.51682673033398],[-118.21013737498484,50.51682082325767],[-118.20984537502844,50.51683700305455],[-118.20960221207402,50.516909154236934],[-118.20942016475415,50.517048310246004],[-118.20926393307538,50.51720228097468],[-118.2091485080621,50.517366471971975],[-118.2090211037955,50.517528120513965],[-118.20887402058995,50.517680474817894],[-118.20868709682142,50.517817026913676],[-118.20852530063885,50.51796213553161],[-118.2084250669703,50.51813077569058],[-118.20831967009623,50.51829849197931],[-118.2081871953839,50.5184586530397],[-118.2079741468737,50.518571906609424],[-118.20774931237045,50.51868150105834],[-118.20756422999801,50.51881762080161],[-118.20740038391438,50.51896427415815],[-118.20725962473061,50.51912102199773],[-118.20715626392446,50.519287190432166],[-118.20709546595845,50.5194636944307],[-118.20701927896737,50.51963685542269],[-118.20691406709261,50.51980345381102],[-118.20679853075873,50.519968195508554],[-118.20667286362463,50.520129964227124],[-118.2065390122856,50.520287767064765],[-118.20638684668474,50.520438631143755],[-118.20622123795093,50.5205851590813],[-118.20605728496132,50.52073236380331],[-118.20591349338282,50.52088607663653],[-118.20577944335663,50.521044994667974],[-118.20565367189471,50.521207324612995],[-118.20553988031364,50.52137218812023],[-118.2054416707742,50.521539278372536],[-118.205383885281,50.52171881392387],[-118.20539377756502,50.52189690390116],[-118.20546491787954,50.522069705914014],[-118.20555757989177,50.522241193582204],[-118.20564294070347,50.522413857445876],[-118.20570639327215,50.52259006800672],[-118.2057656612673,50.52276994304159],[-118.20580019522724,50.52294919774864],[-118.20578593464839,50.5231233273363],[-118.20568080620069,50.523289370185346],[-118.20553925233095,50.52345058001944],[-118.20540353644226,50.5236088200357],[-118.20525759279255,50.52376464057401],[-118.20511008889174,50.523919221232525],[-118.20496930627108,50.52407596522063],[-118.20484576182841,50.52423562197433],[-118.20475095193544,50.52440352044657],[-118.20470202155477,50.52458311842934],[-118.20469350946337,50.52476499233383],[-118.20471742443729,50.524944069032614],[-118.2047656891853,50.52512598974148],[-118.20484355465672,50.52530095503202],[-118.20496542501749,50.52545755001256],[-118.20519916067096,50.525572873658945],[-118.20542228264215,50.525688010031686],[-118.20550286499378,50.52584734728072],[-118.2055379817003,50.52602325265285],[-118.20554690647866,50.52620692291213],[-118.20553586753547,50.52639314703389],[-118.20551469872343,50.526576389274425],[-118.20548553761985,50.526754558400924],[-118.20543348890352,50.52693167689126],[-118.20536575884681,50.52710712208848],[-118.20528770141807,50.52728071945582],[-118.20520282599388,50.527452697927636],[-118.20510080403966,50.52762121865173],[-118.20499021068018,50.527787997020596],[-118.20488136816277,50.52795490758786],[-118.2047899608698,50.528123605810286],[-118.20476293835597,50.52829965640845],[-118.20480244072354,50.52848095928323],[-118.20469475889811,50.52864117207297],[-118.20453525595431,50.528793208311576],[-118.20437730977935,50.52894649288427],[-118.20426553880448,50.52910979811933],[-118.20420159746256,50.529283819087965],[-118.20416142593423,50.52946403287441],[-118.20414054010857,50.529645604270236],[-118.20414312452324,50.529824877759786],[-118.20424057344124,50.529999521302315],[-118.20429441227867,50.53008805270358],[-118.2042563322677,50.53009272087018],[-118.20410064893214,50.53016141398779],[-118.203878616783,50.530326005067096],[-118.20376636355596,50.53050227415559],[-118.20377276651122,50.53058802680047],[-118.20379928537993,50.53061927070915],[-118.20381400655441,50.5306366949111],[-118.20379503703475,50.53066416707684],[-118.20373238979947,50.530759186814834],[-118.20377908891018,50.53092969742548],[-118.20388778736535,50.53116219662735],[-118.20383555030962,50.53136076877157],[-118.20375982795808,50.53142888071547],[-118.20391220886751,50.5314814134522],[-118.20427563345292,50.53161659493141],[-118.20456044912136,50.53174455157763],[-118.20465186942039,50.53181087030689],[-118.20471464595276,50.53186839348824],[-118.20481553884892,50.53196192650545],[-118.20494945465829,50.53205948305015],[-118.20510012066757,50.53215256890811],[-118.2051857795466,50.532200972901805],[-118.2052136485019,50.53221423319648],[-118.20523342981632,50.5322229651552],[-118.20524299840129,50.532249625879835],[-118.20528680543518,50.532334629990594],[-118.20534739905628,50.532455832780975],[-118.20538524222982,50.53251386035051],[-118.20539080119293,50.532522730214886],[-118.20540923458829,50.53254944534949],[-118.20543983451445,50.53267984490767],[-118.20544397656649,50.53285017887139],[-118.20547474417012,50.53294895351552],[-118.20553722451402,50.53299797650442],[-118.20556889971532,50.533019983147405],[-118.2056195813423,50.533055186612415],[-118.2057584901837,50.53317512121785],[-118.20590687127776,50.5333222788486],[-118.20603196446297,50.53346045766888],[-118.20616699908679,50.53360271645673],[-118.20628400581356,50.53373636669311],[-118.20637779468603,50.53382996710529],[-118.20645196833772,50.53388321088547],[-118.20648266799854,50.533900619976116],[-118.20654130703315,50.5339002267546],[-118.20697462398434,50.53406235227698],[-118.20783924412488,50.53440847480315],[-118.2086330019097,50.534692550596176],[-118.20909915706773,50.53484962798991],[-118.20928127718713,50.534914982108226],[-118.20933243931522,50.53493721921617],[-118.20945612315897,50.53501202100653],[-118.20963714208857,50.53514508012445],[-118.20976551608396,50.535233769796776],[-118.20992678205707,50.535286348132075],[-118.21019906263288,50.53540492682807],[-118.21053527621403,50.53555398800457],[-118.21084038192278,50.53566753377194],[-118.21104698138187,50.53575550403812],[-118.21122605062338,50.53587938387506],[-118.21143906857695,50.53605311396212],[-118.21159546042381,50.53619517549785],[-118.21165464874468,50.536253001499055],[-118.21166556768854,50.53626167833518],[-118.21168195122462,50.53627977833634],[-118.21172377589117,50.53631492494591],[-118.21178508499756,50.53635030269101],[-118.21188565992608,50.53639466013006],[-118.21201956300949,50.536451529649135],[-118.2121506364524,50.53650425002001],[-118.21228180782151,50.536556407645826],[-118.21241386224827,50.536613707041695],[-118.21257837294766,50.5366885458454],[-118.21278245219216,50.53678085446672],[-118.21299266376909,50.53686851391397],[-118.21326229533287,50.53695130227845],[-118.21354604200263,50.537024353030375],[-118.21371773204926,50.53706805849898],[-118.21385911574104,50.537102293717375],[-118.21405517381554,50.53715901016365],[-118.21426689709469,50.53719705031456],[-118.21445580069997,50.5372131576407],[-118.21455030134958,50.53722092988894],[-118.21463429133073,50.53723813199997],[-118.21476863063354,50.53724135563925],[-118.2148291235826,50.537240527645345],[-118.21490559410495,50.53723968371784],[-118.21513983510526,50.53729117281099],[-118.21538271741198,50.53740541078778],[-118.21548576197135,50.53747649420277],[-118.21562554783047,50.537560888735484],[-118.2157673706158,50.53772564591519],[-118.2157535199505,50.53788737165848],[-118.21576854360609,50.53799519423597],[-118.21583485021226,50.53805295718243],[-118.21588868792622,50.53811097367363],[-118.21597404967274,50.53822261834412],[-118.21605075240169,50.538343253643454],[-118.216100718683,50.53842359498113],[-118.21615681808308,50.53849927840418],[-118.2162129161228,50.53857497072195],[-118.21623311206635,50.538601807096576],[-118.21623568513648,50.538638143208175],[-118.21623854184081,50.538754718808235],[-118.21623995702873,50.53888984018329],[-118.21624050933195,50.53894806188659],[-118.21619401336224,50.53901145587931],[-118.21609087496033,50.53912510243115],[-118.2159853679395,50.53921146599475],[-118.21589852548037,50.53926185595715],[-118.2158220961842,50.53930337840646],[-118.2157444843169,50.53933125043213],[-118.21560765500006,50.53937304756199],[-118.21538708155389,50.53944736520502],[-118.21517304830003,50.539535139933314],[-118.2150527454661,50.53963515101857],[-118.215024892214,50.53973431990771],[-118.2150452718896,50.539841958434145],[-118.21506241350129,50.53992733270618],[-118.21506838453374,50.53995430842135],[-118.21506332803983,50.539962991878724],[-118.21502920292016,50.54002668546806],[-118.21479743546016,50.540114343149085],[-118.21447904570269,50.54018970253794],[-118.21438068890672,50.540316672708464],[-118.21430498883788,50.54049721758049],[-118.21413147884502,50.540678787615064],[-118.21398549934416,50.540824446916794],[-118.2139056010688,50.54090639919841],[-118.21385431279916,50.54095645774916],[-118.21379358777678,50.541019980671635],[-118.21373589580804,50.541096714602766],[-118.213712322501,50.54119165563509],[-118.2137244251443,50.54139813972402],[-118.21375599025276,50.541676612099266],[-118.21377048285339,50.5418386303131],[-118.21376836312066,50.54186107837989],[-118.213633031055,50.54185326531977],[-118.21333227529082,50.54184737339251],[-118.2131324727443,50.541863274262],[-118.21310003125075,50.541958161258755],[-118.2131396424699,50.54220047469373],[-118.21319924572454,50.54246057165863],[-118.21322518401769,50.54257707952529],[-118.21322135246933,50.542640081959384],[-118.21319488243603,50.54276193568569],[-118.21315624218795,50.54289254219265],[-118.21304364995805,50.54301964969106],[-118.21275099589973,50.54313070110374],[-118.21230509186503,50.54315302768272],[-118.21192420213967,50.54310760350297],[-118.21147954781314,50.54311249736832],[-118.21086900257566,50.543244697665],[-118.21052908450106,50.543351860016934],[-118.21047387305602,50.543383572791655],[-118.21045547357365,50.54339752756037],[-118.21041897283875,50.54343394554397],[-118.21030364049199,50.54355632968271],[-118.2101587141515,50.54370601804916],[-118.21015835896794,50.543841006428025],[-118.21026751597911,50.54397918499778],[-118.21032176098504,50.54405531010611],[-118.21033726570215,50.54406825930542],[-118.21036746874584,50.54406812334648],[-118.21039670465193,50.54417582512167],[-118.21039770827217,50.54440525636884],[-118.21037389435661,50.544562891494934],[-118.21031181307258,50.544644395242194],[-118.21013540119026,50.54478113156677],[-118.2099199583963,50.54495861799746],[-118.20980967732258,50.545072327156994],[-118.2097891550767,50.54510872968896],[-118.20975315724769,50.545162691118406],[-118.20971821633599,50.545302595872464],[-118.20982353899508,50.545503776724786],[-118.21001077355946,50.54567286249316],[-118.21011510866133,50.54575702898161],[-118.21016183641731,50.545815108039776],[-118.21022255739854,50.545935752529864],[-118.21029485049695,50.54613291078604],[-118.21037405239697,50.54632095544551],[-118.21045696813354,50.546518290862394],[-118.21052899168626,50.54673746636937],[-118.21058305035787,50.54691695463785],[-118.21064340638733,50.5470601699195],[-118.21070052472331,50.547181129906804],[-118.2107239577801,50.547230231165784],[-118.21058999804785,50.547245100020646],[-118.21023884486667,50.54725317611297],[-118.20989254625208,50.54724351481564],[-118.20964272615039,50.547250805236345],[-118.20942799518342,50.54727073121912],[-118.20928945053551,50.54728132617137],[-118.20912589380862,50.547323497268025],[-118.20882474135797,50.5474525899025],[-118.20839151374304,50.54763679503821],[-118.2079619562528,50.54778962087941],[-118.20759240082901,50.54792406836583],[-118.20719988419854,50.548098704386454],[-118.20682860648715,50.54827370331133],[-118.20650144970627,50.54842976807497],[-118.20619660738312,50.548590230908594],[-118.20588505470853,50.548768868129066],[-118.20567594839764,50.548879002307224],[-118.20556598175135,50.548929458236614],[-118.205376529695,50.549008208758444],[-118.20513411030294,50.54913634486251],[-118.20499653696535,50.54926393907107],[-118.20492499797774,50.54947131919299],[-118.20483893091901,50.54978275389707],[-118.2047858660476,50.549945109512954],[-118.20476513337093,50.549972466715865],[-118.20472659582911,50.55003076763974],[-118.20467862712047,50.55011269241933],[-118.20462491902363,50.55020721125307],[-118.20454957130286,50.550293428393275],[-118.20448754196782,50.550343866707266],[-118.20446640539454,50.550353108687915],[-118.2044644831663,50.5503846094559],[-118.20444199434219,50.550524259358276],[-118.20439849917372,50.550713274834834],[-118.20432817217993,50.550862556711984],[-118.20423357038088,50.55099826255537],[-118.20415903052061,50.551120691764474],[-118.20414618453363,50.55125593117168],[-118.20416981115525,50.55142651166534],[-118.20418595825556,50.55150729814703],[-118.20406910991356,50.55149512668858],[-118.20381953165318,50.55147021728415],[-118.2036519117116,50.55145390346383],[-118.20357201476371,50.55146409952079],[-118.20348034820435,50.55150115337744],[-118.203366292425,50.551564869114934],[-118.20326579195624,50.5516425364993],[-118.20318848281055,50.55171957603348],[-118.20312031544505,50.55177466166165],[-118.20301843137256,50.55182963433935],[-118.20285077025609,50.551885067026994],[-118.20263800326012,50.5519548335469],[-118.20245466800881,50.55202893066977],[-118.20236582943559,50.55207013273354],[-118.2023184919252,50.55209730752449],[-118.20216937431832,50.55218906090505],[-118.20182969832697,50.55234537215866],[-118.20145024215782,50.5524751465714],[-118.20126825317612,50.55253125896833],[-118.20116768409504,50.55252756999118],[-118.20101125665283,50.55249792147144],[-118.20088055337203,50.552463295191366],[-118.20080628123445,50.55244111936409],[-118.2007511992836,50.552410694967755],[-118.20068967674568,50.55236624980696],[-118.2005724235843,50.55233596849489],[-118.20039613634418,50.552328639136526],[-118.20022773822446,50.55231678498322],[-118.20006665469617,50.55231392397593],[-118.2000004080497,50.55233750703665],[-118.19993425914184,50.55236052749172],[-118.19983853504456,50.55245152643119],[-118.19978353825306,50.552532954905374],[-118.19975045614534,50.55260067748618],[-118.19971103577237,50.55266400385363],[-118.19962765749732,50.552714627264024],[-118.19949633443059,50.55276526489334],[-118.19943018463698,50.5527882850367],[-118.19920324135255,50.552674009651746],[-118.1986836492289,50.552404675328646],[-118.19833775148501,50.552188243514],[-118.19817297784324,50.55206365474479],[-118.19784587632552,50.551963790924276],[-118.1974758170596,50.55188632749108],[-118.19722083132994,50.55179041013792],[-118.19704321489564,50.55168864213622],[-118.1969276940243,50.55161779432617],[-118.19678011346508,50.551547517693656],[-118.1965779551835,50.55146435802612],[-118.19635212667895,50.55139478858269],[-118.19606686199879,50.55133006225086],[-118.19579427020399,50.55127414589981],[-118.19562146967283,50.55122637881619],[-118.19553618484252,50.551196083746625],[-118.19545528284286,50.551161008382444],[-118.19535644521436,50.551116760443605],[-118.1952332382569,50.55105949705204],[-118.19502454845718,50.55096287599828],[-118.19480045327319,50.55085274965391],[-118.19464691829661,50.55075549368018],[-118.19452261263304,50.55065352640731],[-118.19441819267509,50.55055973010816],[-118.1943310342901,50.55048918685749],[-118.19417624478078,50.550409359242956],[-118.19392029720022,50.55030884579802],[-118.19367138543464,50.55023933407438],[-118.19346324869531,50.550241617244005],[-118.19332907245837,50.55024742105381],[-118.19328025732236,50.550252451062356],[-118.19323835441301,50.550248368655005],[-118.19309686534865,50.55024517831217],[-118.19290217823503,50.55025179776691],[-118.19278455927389,50.55024407920573],[-118.19271477998183,50.55022673348332],[-118.19268252219919,50.5502182415429],[-118.19261176588545,50.550196307387175],[-118.19244305622497,50.55013527353588],[-118.19221371091652,50.55002476212471],[-118.1919863997979,50.54989236535585],[-118.19179613024964,50.54978178650456],[-118.19160127870279,50.54966693425532],[-118.19147865760023,50.54959614869852],[-118.19145789590762,50.549582817166424],[-118.19137221717564,50.54953441255528],[-118.19108238856877,50.54946540022753],[-118.19064611577193,50.54941148270606],[-118.1901667641693,50.549339847287335],[-118.18960106181258,50.54941747704195],[-118.18905002370641,50.54959443797472],[-118.1886519039273,50.549647721400824],[-118.188372817006,50.54961900516481],[-118.1882171038533,50.549615935441786],[-118.18812465260413,50.549657432537416],[-118.18799089539432,50.54972201354322],[-118.18784076048081,50.54976848224193],[-118.187690225367,50.54979685336829],[-118.18745403567034,50.54981748507373],[-118.18716143591021,50.549856166731736],[-118.18699404565882,50.54988955825442],[-118.1869390926917,50.54989924169355],[-118.18676068208408,50.549914346969885],[-118.18645278013865,50.54994912751579],[-118.18630282377627,50.54996396995586],[-118.18630146753834,50.549981952551654],[-118.18628856671162,50.55011719900951],[-118.1862449307501,50.55037794637814],[-118.18615682720787,50.550567773265094],[-118.18603884796886,50.55062328693779],[-118.18592523290909,50.55063335226993],[-118.18584971553595,50.550638764682404],[-118.18566954914758,50.55065373555678],[-118.18535988726366,50.55068838933461],[-118.18518878582891,50.55071247753098],[-118.1851324747425,50.550740142633714],[-118.18504177083453,50.55078176976007],[-118.18491832890469,50.55082785792281],[-118.18473534967687,50.550879354953175],[-118.18453288104635,50.550930606830114],[-118.18433918221035,50.55098247699975],[-118.18414743142971,50.55103335438905],[-118.18394944578394,50.551089441104224],[-118.1837585723201,50.55114546880856],[-118.1836109602057,50.55118759076098],[-118.18351830159673,50.55122003973826],[-118.18347942526181,50.55122915643684],[-118.18346179052554,50.55123865083822],[-118.18341502204392,50.551252299775925],[-118.18328339027244,50.551294418839056],[-118.18310478976868,50.55134114233986],[-118.1829928410983,50.55138238998056],[-118.18291899092281,50.551418985711194],[-118.18283539788438,50.55146054347339],[-118.18258451616109,50.551575609610985],[-118.18223463937727,50.5517187080031],[-118.18208137826348,50.55178303648615],[-118.18205770432691,50.55179661510823],[-118.18200412009551,50.55182899081192],[-118.18189373773035,50.55190199411056],[-118.18165726404999,50.55198529907931],[-118.18136951011178,50.55200623938577],[-118.18120570039319,50.55199862990203],[-118.18117441793032,50.5519947320313],[-118.18119012825062,50.552057415520515],[-118.18121969533566,50.55218323017449],[-118.1812354057847,50.55224591364286],[-118.18125336262715,50.55232627353],[-118.18120023653262,50.55256997177022],[-118.18100552546403,50.552841534634055],[-118.18086788556201,50.553009775590574],[-118.18084802622586,50.55307277818289],[-118.18084813578821,50.55311290172949],[-118.18084679034747,50.55317156135237],[-118.18083813408947,50.55322122631666],[-118.1808326869558,50.55325247898924],[-118.18082002874951,50.553284352675384],[-118.18079100621938,50.553338799341624],[-118.18075263256019,50.55340614483906],[-118.18072263390951,50.553456003024536],[-118.18068454462669,50.55350134013174],[-118.18061128238679,50.55356509359457],[-118.1805403545334,50.55361545301423],[-118.18050800813917,50.55363802798085],[-118.18049846240608,50.553652042963975],[-118.18048628463478,50.5536607831494],[-118.1804780090633,50.55368788608636],[-118.18038068796739,50.55378778852805],[-118.180200653613,50.55396490537558],[-118.18011270284066,50.55412310264625],[-118.18022589554474,50.554288706960165],[-118.18044736397694,50.55447495053468],[-118.18047841280695,50.5546635742249],[-118.18026858547411,50.55494027919819],[-118.18009939953272,50.555238499817825],[-118.17996871067362,50.55555016657873],[-118.17979347192875,50.55582196305432],[-118.17967959176897,50.555976070243446],[-118.17961589451579,50.55610716202355],[-118.17951235139061,50.55628345756185],[-118.17937860619938,50.55650056644384],[-118.17929912193183,50.55664071291384],[-118.1792864616881,50.55667258629419],[-118.17930469197002,50.55669025188005],[-118.17941094700267,50.55678362292824],[-118.17934639187989,50.55699092631239],[-118.17883988996064,50.55728849654088],[-118.17835246771025,50.557527527185385],[-118.17821994430308,50.55760517481256],[-118.17826624860191,50.55764516026811],[-118.17844951185911,50.55779594283529],[-118.17883179711804,50.55797659058666],[-118.17924318916694,50.558031052826166],[-118.1794112080407,50.5580248325152],[-118.1794292413751,50.55803344497914],[-118.17944015938997,50.55804212474814],[-118.1794545860349,50.5580510521333],[-118.17947534807783,50.55806438576799],[-118.17963774486851,50.55816171829874],[-118.17992736363945,50.558374798661845],[-118.18007060160062,50.558602415006824],[-118.18007320540883,50.55883196627474],[-118.18007631504625,50.55911973792306],[-118.1800767815649,50.55937173598983],[-118.1800753461422,50.55946146533833],[-118.18009262661613,50.5595558960036],[-118.18012299563296,50.559748429640244],[-118.18014427699164,50.55986066034891],[-118.1800520698497,50.55983946520245],[-118.1798974833762,50.559809348516914],[-118.17975156947466,50.5597702350397],[-118.17964220510741,50.55973539999038],[-118.17951266924162,50.559714399325436],[-118.17932826501287,50.559702515530866],[-118.17916355112466,50.559699930275805],[-118.17908470802327,50.559714134535255],[-118.17897870967315,50.559863708373214],[-118.17854109385485,50.560214165099765],[-118.17776673620317,50.56059112760076],[-118.1770042307862,50.560859322627145],[-118.17639121363015,50.561054454415356],[-118.17580331595431,50.56114627655084],[-118.17496571504995,50.56128486860468],[-118.17411994730575,50.561572024250346],[-118.17340683679703,50.5619436764259],[-118.17239449175831,50.56238120100743],[-118.17124654062175,50.56276111306468],[-118.17041339706272,50.563097721151095],[-118.16999604611073,50.563331502332574],[-118.17019567467514,50.56341904968063],[-118.17081580693974,50.5636108765893],[-118.17112872687771,50.563944833736485],[-118.17113147702084,50.56414276012212],[-118.17103957207563,50.564252077957455],[-118.1708413272469,50.564410948099116],[-118.17067095303896,50.56451190223462],[-118.17045554631295,50.56462662331322],[-118.17019656974199,50.564777251979095],[-118.17006849516513,50.56485972560374],[-118.17000270392643,50.564900833936484],[-118.16986800172093,50.56500091751574],[-118.1697127335927,50.56513740409389],[-118.16963671313565,50.56527779011111],[-118.16960602176007,50.56545357624621],[-118.16956372935577,50.565624592599264],[-118.16950827467664,50.56576926079622],[-118.16945867100044,50.56593128178338],[-118.16942242365447,50.56613888188278],[-118.16939358485133,50.566354914652436],[-118.16941913890538,50.56657479030812],[-118.16952072535358,50.56677630974932],[-118.16966783199535,50.56694093811105],[-118.16982498504099,50.56715994144852],[-118.16989957520327,50.56738384122486],[-118.16990124040053,50.56749638796783],[-118.1698562205222,50.56770336802405],[-118.16976968351233,50.5680463921019],[-118.16971354822624,50.568235638375],[-118.16968313920493,50.56830806314568],[-118.16962495038092,50.568407333162995],[-118.16953274139168,50.56853866604361],[-118.16944326170457,50.56867471126097],[-118.16937122894102,50.5687922203791],[-118.1693236637152,50.5688916803784],[-118.16931090094214,50.56899528941514],[-118.16923711777794,50.56919402717814],[-118.16905210967423,50.56947020941059],[-118.16888688551194,50.56967377657769],[-118.16882264608928,50.56974664025642],[-118.16880860872486,50.569755817544234],[-118.168952794625,50.569835488334334],[-118.1692583240991,50.56999831018643],[-118.16944023904044,50.570095903707745],[-118.16946821758766,50.57010861874955],[-118.16951764527796,50.5701307492533],[-118.16958227959542,50.57015735270049],[-118.16961279410539,50.5701657182417],[-118.16973124215573,50.57020968186633],[-118.17004613131812,50.570318927518095],[-118.17033869796452,50.57042376613108],[-118.17058037594978,50.57052501844518],[-118.17086446482553,50.57064790434172],[-118.17111648274845,50.57077134446042],[-118.17133194294172,50.5708905116383],[-118.1714401611629,50.57095238928382],[-118.17151952122587,50.570996410277935],[-118.171669272976,50.57108494856871],[-118.17176939928778,50.57114230425305],[-118.17179367625485,50.57115587803585],[-118.17181171183238,50.57116450052603],[-118.17182263156278,50.57117318090387],[-118.17189916549688,50.57121304285327],[-118.1720577893969,50.571301646628235],[-118.1722628252599,50.57142967492374],[-118.1725092980713,50.571584925855795],[-118.17277010265674,50.57173949778346],[-118.17302135265514,50.571867397935584],[-118.17322853363872,50.57197298682954],[-118.17338238451842,50.572048253078684],[-118.17357043910305,50.57201915558917],[-118.1739839768386,50.571929714776495],[-118.17456716997148,50.571977666368774],[-118.17515068941037,50.572196819130426],[-118.17572526181036,50.572487640016774],[-118.17603990165165,50.57265956137117],[-118.1760857274747,50.57268200369914],[-118.17612453384464,50.57270395057165],[-118.1762155049025,50.57275273713472],[-118.17627507928124,50.57278801795344],[-118.17632353732664,50.57280555697652],[-118.17644843419673,50.572853357132026],[-118.17657957350053,50.572906108154136],[-118.1766025978931,50.57297778541666],[-118.17654618081286,50.573117867447486],[-118.17650645056071,50.573325220338],[-118.17650210869766,50.57352320252642],[-118.17650848031091,50.57368014443477],[-118.17651533729845,50.57382412248465],[-118.17652736022218,50.57395885663415],[-118.17656384948829,50.57407554915577],[-118.17662227136816,50.57417854070678],[-118.17671774817312,50.574303346058066],[-118.17683341248876,50.57445500259212],[-118.17692157540945,50.574570821971015],[-118.17698058054062,50.57466029585419],[-118.17701501326093,50.57472768889595],[-118.17702145852118,50.57477220876329],[-118.17701924722209,50.574907077007076],[-118.17702242782043,50.5751637824674],[-118.17703696062839,50.5755998086556],[-118.17706841614877,50.57626469318355],[-118.17712676630387,50.576867081368974],[-118.17720522251383,50.57714039654298],[-118.1772707682025,50.5772433202076],[-118.1773144770274,50.57735939125162],[-118.17736287948706,50.57753002711234],[-118.17743196372044,50.57774505717547],[-118.17757564676957,50.57799076816477],[-118.1778343975656,50.578289801180816],[-118.17805735567815,50.57853941403671],[-118.17820823045614,50.57867264443253],[-118.17839293938393,50.578805441377426],[-118.17853942883096,50.578943450676135],[-118.17858361477816,50.57900589027196],[-118.17858498600674,50.57902858428987],[-118.17857650872052,50.579046624478586],[-118.17841809226876,50.57916030304312],[-118.17811012441229,50.579357200225346],[-118.17793328137945,50.579484826858916],[-118.17786650854111,50.579562035565296],[-118.17771882592861,50.57971600684348],[-118.17750990999285,50.579884874374486],[-118.17708861680246,50.58002857881977],[-118.17643700754488,50.58017863622779],[-118.175974943179,50.58029121315969],[-118.17580938354958,50.58033376331256],[-118.17563466235566,50.58039826404014],[-118.17535512853881,50.58051356021948],[-118.17513176063669,50.580632810718946],[-118.17495333795434,50.58072868557792],[-118.17473249324188,50.58080292777718],[-118.17455572759616,50.58089947945378],[-118.17450192687255,50.58103465598975],[-118.17442510794893,50.58113883126303],[-118.17422258989308,50.58119967784264],[-118.17401363480502,50.581246502261635],[-118.17388609638256,50.58127478556553],[-118.17376206820666,50.58130331651245],[-118.17359573481761,50.58142151038233],[-118.17349864446477,50.58161125419092],[-118.1734761358124,50.58171983211789],[-118.1734704836698,50.581742030526186],[-118.17344493795764,50.58175604544411],[-118.173192103566,50.581830277593134],[-118.1727347933027,50.58195617624909],[-118.17249161442905,50.58206668403371],[-118.17247554495066,50.58221978142614],[-118.17247508197902,50.58239543906905],[-118.17229899054908,50.58251859183198],[-118.17181261356201,50.58265825339218],[-118.17125252277563,50.582884227904515],[-118.17089320913371,50.583130595879545],[-118.17078254162305,50.58323519931815],[-118.17070267751093,50.58324481778564],[-118.17051798709846,50.58326454259643],[-118.1703308606688,50.58329821398317],[-118.17016323790176,50.58336264809751],[-118.17001102464042,50.58344058974223],[-118.16987655702637,50.58351866355469],[-118.16978323946091,50.583564608124796],[-118.1697214192883,50.58362351530184],[-118.16963980488038,50.58371436035683],[-118.16958588352836,50.58376873634519],[-118.16956764898029,50.58379174539913],[-118.16954892852952,50.5838277091616],[-118.16948174792304,50.58392747353676],[-118.16937117458096,50.58407219752121],[-118.16928975427187,50.58417209507341],[-118.16922081727031,50.58427173528451],[-118.16915685141036,50.58435308815199],[-118.16912223495757,50.58439866753446],[-118.16909200719006,50.58443946790743],[-118.16905436938637,50.58450234241137],[-118.16900990636768,50.584583942722475],[-118.16895900856726,50.584692205521826],[-118.16891396314044,50.58482799858712],[-118.16888393667466,50.58498970956324],[-118.16886999960377,50.585120350938126],[-118.1688664911789,50.585160778579215],[-118.16887634229036,50.58520610881431],[-118.16889390140591,50.58530903747367],[-118.1689082419989,50.58538970177188],[-118.16891945745319,50.58541705038126],[-118.16893652661787,50.58546175144858],[-118.16897349336045,50.58559599682211],[-118.16903455115644,50.585775439073785],[-118.16908507291978,50.585882955239605],[-118.16916309535621,50.58598563426191],[-118.1693025610008,50.58616383418225],[-118.16943997999961,50.58633341073458],[-118.16955701473503,50.58646709102634],[-118.16957691546385,50.58655662619698],[-118.16947569437576,50.58664777693375],[-118.16932980991967,50.586770799509644],[-118.16919445648188,50.586884396799],[-118.1691090319703,50.58696649398734],[-118.16900429818355,50.587057396315416],[-118.16884504942485,50.58717552455477],[-118.16869857709378,50.58731206339369],[-118.16853884090698,50.587453314678115],[-118.16835442958185,50.58756287698794],[-118.1682318435631,50.587613541879655],[-118.16810213880241,50.58766426428479],[-118.16786915793965,50.58775683706327],[-118.16762125422431,50.58785344431822],[-118.16742269645819,50.58793206903244],[-118.16725602760721,50.58800108678774],[-118.16695974878172,50.588089756243214],[-118.16639644521885,50.58829288693333],[-118.16591027953235,50.58856303823891],[-118.1657153221458,50.58872270511434],[-118.16552797244637,50.58885917280812],[-118.1652306082551,50.58905566902482],[-118.16503369882211,50.58916547351414],[-118.1649769376932,50.589175021611474],[-118.16460681899537,50.58922853127053],[-118.16374330485746,50.58934942426806],[-118.1630293001964,50.58942833319771],[-118.16279532976027,50.589434964939194],[-118.16276675483451,50.58943576561967],[-118.16277514118327,50.58944878697074],[-118.16279493462022,50.58949821016882],[-118.16281492400203,50.58955667718738],[-118.16283178956763,50.589633010504365],[-118.16284855600955,50.589740403909566],[-118.16286922224965,50.58986615093367],[-118.16298009968969,50.59004515863566],[-118.16321435091862,50.59024023353793],[-118.16339301797585,50.590346639176964],[-118.16344070781508,50.590368656708506],[-118.1636490340889,50.59032575449007],[-118.16405242066115,50.59025482982076],[-118.16420378466765,50.590293772062886],[-118.16408332713398,50.59047450996715],[-118.16403006304283,50.590718188724296],[-118.16417273769166,50.590959333687564],[-118.16435920936674,50.59113295127624],[-118.16450969643239,50.59124809273669],[-118.16468661498287,50.5913543721311],[-118.16484490615794,50.591424878560865],[-118.16501412396856,50.59146338139062],[-118.1652671212906,50.591510631992975],[-118.16552655620914,50.59156172637601],[-118.16570621044401,50.591591365978786],[-118.1658628471298,50.59163067796407],[-118.16604688978788,50.59169622237893],[-118.16623571283012,50.59177509309409],[-118.16645438168155,50.591876409259264],[-118.16669489939059,50.592035761554186],[-118.16695658481818,50.59222654522717],[-118.16720334770591,50.592350181488506],[-118.16737832515037,50.59240660452564],[-118.16760509434535,50.59251244910341],[-118.16798539036009,50.59274663230088],[-118.16832696743467,50.59296848031313],[-118.16844176933564,50.59304381862682],[-118.16858417675742,50.593154432574245],[-118.16893795625796,50.593438712774145],[-118.16910476345747,50.593765722279706],[-118.16893204179587,50.594072716640106],[-118.16879930601364,50.59430343495395],[-118.16888309965948,50.59446471197122],[-118.16897489572435,50.59466157050615],[-118.16887464157239,50.59495051488893],[-118.16877214477644,50.59529297365361],[-118.16877040366394,50.59556740646125],[-118.16878777755805,50.595783306362314],[-118.1688239782339,50.59600335563895],[-118.16885978428616,50.59616463338832],[-118.16886739581426,50.59622279356635],[-118.16884837955452,50.59629093261559],[-118.16881590660653,50.596466596890224],[-118.16878967964753,50.5966777186857],[-118.16883904625091,50.5968529425832],[-118.16895552207095,50.59700013881851],[-118.16902702643863,50.597089366181194],[-118.1690377587062,50.59712966889361],[-118.16904234674209,50.5971746176282],[-118.16905171690946,50.59727357667866],[-118.16905367501337,50.59739460951367],[-118.16902656124306,50.597458226824315],[-118.16899212782737,50.59747218312514],[-118.16896784141301,50.59749927521269],[-118.16893331526323,50.59758496627856],[-118.16887976833235,50.59769813022292],[-118.16881939273075,50.59777916700853],[-118.16878076605119,50.597806945873174],[-118.16874935769467,50.59783410452467],[-118.16870487884259,50.59787502844205],[-118.1686717145559,50.59790206309713],[-118.16860245929718,50.59795253617239],[-118.1684728237905,50.59804337974893],[-118.1683810368315,50.59812106860814],[-118.16834465315519,50.59816652301322],[-118.16827218092169,50.598265912996126],[-118.1681373781787,50.598447340302684],[-118.16802598461615,50.59859652474505],[-118.16796492315432,50.59869164046393],[-118.16791420228834,50.59880895358556],[-118.16787664926737,50.59892211665807],[-118.16784826746643,50.599043827263074],[-118.1678264209409,50.59917899717983],[-118.1678071091293,50.59926915184047],[-118.16777218865114,50.59933673708367],[-118.16769766369582,50.59942751243178],[-118.16761835735826,50.59950496129457],[-118.16753300432725,50.59958649351739],[-118.16745038093819,50.599672746901575],[-118.16741955735326,50.59976773789271],[-118.16741887820749,50.59989366429697],[-118.16740736970081,50.6000001878859],[-118.1673942993742,50.60006479653736],[-118.16742083652973,50.600207902309116],[-118.16749858915736,50.6004139463956],[-118.16755088068695,50.60056226017488],[-118.16756171185219,50.60064267518011],[-118.16757380999043,50.60070567141957],[-118.1676162483919,50.600849339364544],[-118.16768941868817,50.60105110045038],[-118.16772200432561,50.60114943883046],[-118.16772425058036,50.60120778035011],[-118.16774571724616,50.601369735200244],[-118.16779215787689,50.60153119366547],[-118.16783732678208,50.60159822412203],[-118.16787820377421,50.60162878719858],[-118.16796688198049,50.60169098066899],[-118.16809878006838,50.60181101887379],[-118.16818375795363,50.60198592693398],[-118.16817917803776,50.60213418350705],[-118.16815869445729,50.6022106970056],[-118.16815059956032,50.60224684111004],[-118.16813635804716,50.60228764008765],[-118.16822288926066,50.60229092937042],[-118.16841605284418,50.60236557902463],[-118.16850415733336,50.602593810242695],[-118.1684908006777,50.602792290244],[-118.16848485638826,50.60291784427053],[-118.16841393760606,50.60304898878659],[-118.1682681908518,50.603140385433],[-118.16809512632626,50.603204996528504],[-118.16788098893294,50.60322998282429],[-118.16769318740438,50.60315515070844],[-118.16755124167504,50.60314342905753],[-118.167348813016,50.603325169521284],[-118.16718560417205,50.60358762968918],[-118.16715536440664,50.60378095861225],[-118.16717956126683,50.60390695069662],[-118.16719946647152,50.60407783371893],[-118.16725351954058,50.60433812624889],[-118.16751118012475,50.60454218360583],[-118.1679109856691,50.604614475479295],[-118.16817284170092,50.604692844617155],[-118.16828650523782,50.6047952068565],[-118.16825187854278,50.60499331464177],[-118.1680784263368,50.60531437396484],[-118.16796682157114,50.60549517912567],[-118.16793238464554,50.605549800617894],[-118.16788838504685,50.60560827539873],[-118.16786643599083,50.605662648676955],[-118.16790273168974,50.605729612423715],[-118.16800273631924,50.60581859109421],[-118.16812488885729,50.60590291456198],[-118.16824128563319,50.60596931439144],[-118.16837094965616,50.606031010489026],[-118.1685493004863,50.60611930069721],[-118.16873857965722,50.60621627092314],[-118.16889975985046,50.60629092006015],[-118.1690271814587,50.60633493985171],[-118.16921275452387,50.60642260875433],[-118.16946955337492,50.60655032987718],[-118.16959561165334,50.60661233016126],[-118.16949932081599,50.606685182968775],[-118.16926936829107,50.60683108869696],[-118.16903092369039,50.606923852379985],[-118.16884613533799,50.60694357385349],[-118.1686959832049,50.606958391536466],[-118.16853119562955,50.60699591163099],[-118.16833811562415,50.607042723627806],[-118.16818767081207,50.607089725076925],[-118.16808074116783,50.60716239524178],[-118.16795917845512,50.60729843339828],[-118.16784746862679,50.60743912601881],[-118.1677062942609,50.60757546966638],[-118.16743720953598,50.60780277840364],[-118.16709270205165,50.60808521273778],[-118.16682195297912,50.60828132751916],[-118.1666293530725,50.60838636244288],[-118.16642377482172,50.60851477689177],[-118.1662885437471,50.60863742020862],[-118.16621722089116,50.60875044841412],[-118.16607125557702,50.60891413785704],[-118.1658672337453,50.609104802888915],[-118.16573356063795,50.609218516924734],[-118.16568116463941,50.60930463522898],[-118.16561735109097,50.60943571053132],[-118.16552290008106,50.60954880449205],[-118.16538005323882,50.60965396147168],[-118.16523730253405,50.60975856468745],[-118.16517778249687,50.60980407472136],[-118.16516373188972,50.60981325110506],[-118.1650972846112,50.609867871084596],[-118.16497609655636,50.60998133623494],[-118.16484495562635,50.61009070886452],[-118.16466004979513,50.61022284029226],[-118.16441708602382,50.61039210606506],[-118.1642130539932,50.61054208446331],[-118.1640403445239,50.610624793728874],[-118.16375259418014,50.610704466361554],[-118.16340717434863,50.61082920883436],[-118.16316859746128,50.61095301882537],[-118.16304027788082,50.61106654798425],[-118.16297528426891,50.611183980686675],[-118.16292346406848,50.611297255044356],[-118.16285691109307,50.611382941805324],[-118.16282997777022,50.611414934757434],[-118.16284539362968,50.61142845200926],[-118.16286226744711,50.61150478330792],[-118.16286507935594,50.6117428103013],[-118.16291891584919,50.612075398549344],[-118.16308712174452,50.61230308027095],[-118.1632984658869,50.6124264731251],[-118.16345829204933,50.6125191105302],[-118.16355781697068,50.612590541021845],[-118.16365314534572,50.612665633981166],[-118.16376262365064,50.612741156744185],[-118.16388176361757,50.61281227290405],[-118.16406481402026,50.61294496409996],[-118.16426640381981,50.61311398930241],[-118.16437022365811,50.613211708524965],[-118.16445355375053,50.613274085373966],[-118.16468266418258,50.61343827396609],[-118.16499305846354,50.6136460558989],[-118.16521836916459,50.61376082215749],[-118.16541616330298,50.613799084546535],[-118.16562039943058,50.613851350447575],[-118.16575213243911,50.613921663017855],[-118.16585546888518,50.61400183828784],[-118.16599783949255,50.614113006313126],[-118.16623115497968,50.61430404345508],[-118.16652175409543,50.61454374810301],[-118.16669545157562,50.614699499922644],[-118.16676297932948,50.61477092745136],[-118.16681235670511,50.614824126052625],[-118.16686427130693,50.61487298439064],[-118.16692252975402,50.61492624043606],[-118.16699522921087,50.61498843376179],[-118.16716395367503,50.615121797168555],[-118.16737688429299,50.61527692750018],[-118.16753546032302,50.61539715463889],[-118.16767988823939,50.615516943214736],[-118.16781690022493,50.61562829924945],[-118.16791048717982,50.615703255379316],[-118.1680049521169,50.61578336213852],[-118.16812927930441,50.615885913489166],[-118.16825448433661,50.61598344688206],[-118.16833138369853,50.61603180801867],[-118.16836758987347,50.61605865027749],[-118.16845796027178,50.616192699426385],[-118.1686080596656,50.616442817152894],[-118.16869306351644,50.616577056630405],[-118.16869862719365,50.616585918495325],[-118.16888843261313,50.616588584971076],[-118.16930551831541,50.61659316300692],[-118.16965595130901,50.61657212971527],[-118.16996315340214,50.61656443185582],[-118.17027474912027,50.61659263726228],[-118.17052964612888,50.61659932438218],[-118.1708226006165,50.61659174869009],[-118.17111468553793,50.616660369622245],[-118.17136159841334,50.61682466705917],[-118.17155698684672,50.61698871831301],[-118.17165019002279,50.617055743731726],[-118.17171401491116,50.61707719375547],[-118.17187260049603,50.61711605750506],[-118.17214224314068,50.61718084154394],[-118.17243131706711,50.617317604959794],[-118.17266116483567,50.61750837114977],[-118.17285109610143,50.61767316434402],[-118.17299612902853,50.61777942900735],[-118.17311675722138,50.61783200033476],[-118.17324840910568,50.61786219222391],[-118.1733111625748,50.61787960671789],[-118.17331965557324,50.61790224175348],[-118.17336807385686,50.61799152306061],[-118.17344059852957,50.61808532456566],[-118.1734957473109,50.618156442957314],[-118.1735792040166,50.61825892407261],[-118.17363260971098,50.618411266397565],[-118.17357789112397,50.61859212814753],[-118.17352287557613,50.61875433142645],[-118.17353206347333,50.61884423511056],[-118.17355832982787,50.618938172339426],[-118.17357913282127,50.61903284501173],[-118.17358382435258,50.61907723880505],[-118.1735842176234,50.61909534363401],[-118.17358080262005,50.61910471076092],[-118.17357748589806,50.61911351539061],[-118.17357846907014,50.619158777460456],[-118.17358492381737,50.619243969051794],[-118.17358854199219,50.61928432824968],[-118.17359040192675,50.61932457248196],[-118.17360164822587,50.61946376380663],[-118.17373031670489,50.61971461907381],[-118.17398020496246,50.62000452770919],[-118.17416725486382,50.62034875457895],[-118.1742682308393,50.62070724776929],[-118.1744030462792,50.620912781875546],[-118.17456721893744,50.62100118589895],[-118.17466999833557,50.62105418620824],[-118.1747181200009,50.62109430287674],[-118.17476390349384,50.621147803369276],[-118.17483408715339,50.62121433149938],[-118.17494028842594,50.62129864714536],[-118.175060731388,50.62134216375828],[-118.17524021717918,50.62136328809743],[-118.17545728518314,50.62142378530238],[-118.17565395614353,50.62148906245649],[-118.1758540359609,50.6215144667399],[-118.17608036442452,50.621511776672286],[-118.17626980564634,50.62153699959062],[-118.17639708045081,50.62157195776165],[-118.17653617555438,50.621651242201466],[-118.17668182182915,50.62178465869949],[-118.17676821269366,50.621860236457536],[-118.17682785411473,50.621895505960886],[-118.17689833041796,50.621940017276614],[-118.17693991354717,50.62196667450802],[-118.17695894755083,50.62197988374326],[-118.17697241714762,50.621984222652735],[-118.1769995536846,50.622001952843426],[-118.17715426261329,50.62206313019128],[-118.17746358193314,50.62218605565587],[-118.17764885211147,50.62229627784951],[-118.17770753815489,50.6224083062808],[-118.1777511834738,50.62248425957593],[-118.17778681829853,50.62252461520723],[-118.17795442676629,50.622644329527176],[-118.17823821581743,50.62289311185344],[-118.17839003971712,50.623103226980895],[-118.1784635904212,50.62331346544498],[-118.17857902446886,50.623569027588864],[-118.17865549597803,50.62375236529822],[-118.17870180120352,50.623904762511174],[-118.1787282917381,50.62404841505083],[-118.17873458160817,50.62420590083387],[-118.1787448773829,50.62438118533338],[-118.17878736414518,50.624484162344665],[-118.17891222076639,50.62456357806117],[-118.17905328422752,50.624652035226],[-118.17918263296124,50.62473628630789],[-118.17928705260094,50.62501422698148],[-118.17927907187325,50.625436779201465],[-118.17924066934292,50.625626139114985],[-118.1792444792694,50.625634876554834],[-118.17928744021168,50.62568422552507],[-118.17936418194812,50.625764199744076],[-118.17941153328225,50.62580877842438],[-118.1794340851105,50.62582222584598],[-118.17945234192324,50.62583989886007],[-118.17946327640468,50.625848577915654],[-118.1795123864446,50.62589327141846],[-118.17958180499053,50.62596426044482],[-118.17969154031482,50.626048818674654],[-118.17984735312379,50.626154700052744],[-118.17993785477924,50.626216997020464],[-118.17995786892445,50.626234793734376],[-118.17996978106284,50.62624806079413],[-118.17997534815876,50.626256921992905],[-118.17998442764882,50.626266039700276],[-118.18000795734574,50.62628407505593],[-118.18011398231036,50.62635933293364],[-118.18029664149716,50.62647445314949],[-118.18044631011465,50.62658498011743],[-118.1805903268427,50.626727881750746],[-118.18072146569585,50.62688342438276],[-118.1807625970142,50.62700439011348],[-118.18076068093244,50.62711723460766],[-118.18076910556026,50.62721160105949],[-118.18076678023246,50.627265667383064],[-118.18075089643943,50.62734645398582],[-118.18068321684979,50.62754052991065],[-118.18060123557642,50.62788781966794],[-118.1805578243982,50.628279059444985],[-118.1804756570602,50.628657961027244],[-118.18036818730256,50.62897802994377],[-118.18029259749517,50.62917663686705],[-118.18021417570293,50.629371085434414],[-118.18015322138461,50.62954698863669],[-118.18014875454365,50.62962349983647],[-118.18017707251063,50.62965486941652],[-118.18018996318006,50.62967272443551],[-118.18024112991563,50.62972603991879],[-118.18036270013114,50.62985493161935],[-118.18042580594714,50.63000286073928],[-118.18037870741696,50.63016053356568],[-118.18032877561029,50.63031405702117],[-118.18034472123969,50.63042646927182],[-118.1803745117724,50.63047996886535],[-118.18038281265237,50.630493550741626],[-118.18038662321321,50.630502288091385],[-118.18043437668,50.63056497063936],[-118.1805056976137,50.63075754003486],[-118.18051465514958,50.630991468168325],[-118.18047466847406,50.63110840907563],[-118.18045056732198,50.631144563770405],[-118.18044100511707,50.63115857743633],[-118.1804376888493,50.631167382142806],[-118.18043437258021,50.63117618684914],[-118.18061577974956,50.631278219147184],[-118.181020967117,50.631494305648786],[-118.18128059105841,50.63165776603179],[-118.18142727517461,50.631836436038036],[-118.18161655756359,50.6321175272359],[-118.1816617191837,50.632296954696564],[-118.18158179777097,50.63238792694137],[-118.1814885284164,50.63255534484273],[-118.18145201183843,50.6328256116718],[-118.18147408749698,50.63315763328222],[-118.18148239505648,50.63347681777481],[-118.1814688018155,50.633697298189205],[-118.1814582024771,50.6338191287671],[-118.1814675332868,50.6339898229916],[-118.18147455455131,50.63425524731886],[-118.1814443692346,50.634489246159625],[-118.1813917011616,50.63463805752999],[-118.1813275009332,50.634751033378954],[-118.1812159763979,50.63494146013772],[-118.18109060540796,50.635180613003236],[-118.18104221631125,50.635284534274255],[-118.18106633093981,50.63528906168811],[-118.18118280950719,50.63531477252424],[-118.18136919363188,50.63535784326464],[-118.18151691484074,50.63538801366567],[-118.18185001540499,50.63537531956549],[-118.18246934878702,50.63533307068845],[-118.18287781186795,50.63530647422299],[-118.18296079639107,50.63531005800515],[-118.18297163565235,50.635319299112076],[-118.18304018313044,50.63535462986369],[-118.18342195415721,50.635480931618815],[-118.18409917329258,50.6356675751101],[-118.18469046134568,50.635796195024575],[-118.18512259458261,50.63586841713984],[-118.18546879133315,50.63588261875893],[-118.18581567079231,50.635892908613734],[-118.18616050906354,50.635925088807184],[-118.18639451712976,50.63590936506315],[-118.18656289224141,50.63583139411878],[-118.18669329479025,50.63576713667828],[-118.18680572921657,50.63569370612473],[-118.18694851052288,50.635589087463146],[-118.18716539298325,50.63548798444154],[-118.18739245288462,50.63544069655468],[-118.18754093817701,50.63542572158015],[-118.18765223088093,50.63541999623301],[-118.18780478910269,50.63535108756376],[-118.18797020471153,50.63521867749364],[-118.18805227325304,50.63514593799617],[-118.18807852702807,50.635128009921715],[-118.18813727855311,50.63508695331635],[-118.18819788388907,50.63504546676702],[-118.1882216013627,50.635031879275274],[-118.18823897016924,50.635013895364],[-118.18823064475046,50.634959649933236],[-118.18819377957124,50.63483447115332],[-118.1882078755534,50.634712887402486],[-118.19497836954802,50.634610664690655],[-118.19793150607117,50.63677385095076],[-118.19946277660264,50.639339211440884],[-118.19981811032031,50.64424352786961],[-118.19981491344485,50.648346501105415],[-118.20134051475421,50.64988501455488],[-118.20313857687081,50.652230041377706],[-118.20430600287118,50.65598978910204],[-118.19999141034795,50.658443954758575],[-118.1947864592968,50.65889738216472],[-118.18956744863263,50.659756859294106],[-118.18829895677737,50.65992692914536],[-118.18281948119693,50.66186816069758],[-118.17318913976605,50.664659521098834],[-118.17299898710337,50.67030562174247],[-118.17642439475532,50.67173084850008],[-118.18315977372865,50.67247377837427],[-118.1893624274723,50.67333192048067],[-118.19548300532543,50.67457989255915],[-118.20096341830832,50.67623332299749],[-118.20628022372156,50.67817377466511],[-118.20707775158422,50.67874709705371],[-118.20959244388057,50.68222035964616],[-118.20923347483696,50.68558984892912],[-118.20679898490489,50.68974975534502],[-118.2031156784683,50.69493984869652],[-118.20166527095351,50.698190400618024],[-118.2020250029142,50.705034240910024],[-118.20219965354994,50.706402630039435],[-118.20381456900235,50.71267128552613],[-118.20480924690308,50.71906526013593],[-118.20587443228438,50.72522009087455],[-118.2058809260394,50.72681782506633],[-118.20444074735607,50.72984144360751],[-118.20290630835626,50.73389429656282],[-118.20515781130551,50.736684590962575],[-118.20929044039909,50.73834135889047],[-118.21064386412404,50.73867783103703],[-118.21630936662079,50.74021680604928],[-118.22325127487865,50.74278331836022],[-118.22748222135199,50.74552096041582],[-118.23090961989217,50.74837005939072],[-118.23216168466378,50.75281858722905],[-118.23126705724728,50.75418841313003],[-118.22946431739983,50.756922589017],[-118.22910450923672,50.75989187049642],[-118.2293702504637,50.76131668191023],[-118.23108536681745,50.76285956223272],[-118.23431783251324,50.764622871692865],[-118.23900272280034,50.76616030913862],[-118.24342043362002,50.768497801219404],[-118.24549650215668,50.77100696612163],[-118.24703223415065,50.77465593937416],[-118.24767000625843,50.775760910251904],[-118.25270744378177,50.7814746476584],[-118.25709335858691,50.78321566980083],[-118.25761742076048,50.792754109692005],[-118.26098815923572,50.79403636715028],[-118.25465028601057,50.79747622500087],[-118.25966631401232,50.79832166473041],[-118.25975535139132,50.79999996882443],[-118.26000859369165,50.80475491080064],[-118.26464673436396,50.80794896161951],[-118.26613975623381,50.81126288210923],[-118.26596753624354,50.81143219882367],[-118.2628089181168,50.814569615065004],[-118.25973611470141,50.8190207655612],[-118.26064811009263,50.822903688541814],[-118.26451948055497,50.82398038434548],[-118.26668641280689,50.82392738571552],[-118.27055962077037,50.82392316219116],[-118.27408422650291,50.82551812522704],[-118.27327766241369,50.829512151549444],[-118.27255232412662,50.830481154598274],[-118.27011183419981,50.833675853696995],[-118.26822014146482,50.83823668958119],[-118.26994213492175,50.843142790440965],[-118.27345374008036,50.846222948213985],[-118.27579944248077,50.84695906379913],[-118.28167610755769,50.84769774973909],[-118.28510690913284,50.84935174635465],[-118.2854703481116,50.8499776694187],[-118.28709481986769,50.85248692192191],[-118.28980382924232,50.857158019000025],[-118.29143501553222,50.8608708816564],[-118.29242650942585,50.86497598226044],[-118.29161789211051,50.86948301615357],[-118.28900416893455,50.87284789042597],[-118.28394392503274,50.87604650408137],[-118.27988586819255,50.87758640960698],[-118.274547531442,50.87941198144368],[-118.27238091348175,50.880272216079824],[-118.26985399707216,50.8823830234185],[-118.26543126572913,50.88552116567786],[-118.25910356485731,50.88660788602126],[-118.25332102690213,50.88678005620513],[-118.25160355746236,50.889576828783625],[-118.25322746494584,50.890771364947646],[-118.25557966954908,50.89139976420575],[-118.26189317007065,50.89328058827083],[-118.26895397002826,50.894816928961745],[-118.2752755319454,50.895667011208474],[-118.27680752869118,50.89401410401916],[-118.27925351860152,50.89195909214067],[-118.28403489586533,50.88939123340037],[-118.29063762307699,50.88778796982641],[-118.29668312919661,50.88749989225209],[-118.2971413229191,50.88749817668488],[-118.30047516510712,50.88749938824301],[-118.30209849720381,50.88771065854389],[-118.30535179910544,50.885611436053466],[-118.30951285171837,50.885378596989],[-118.31168730655239,50.88538094908215],[-118.31340072389605,50.88531877264689],[-118.31692405635448,50.885547098551065],[-118.32025606599615,50.88331797569517],[-118.32576490021653,50.88240202429775],[-118.3342600399615,50.88325139279758],[-118.33904617246215,50.88495344902819],[-118.34348377581733,50.885522547237976],[-118.34980589527422,50.88511680192549],[-118.35376939462067,50.883115233294475],[-118.35521871028565,50.88317323144917],[-118.36245305300953,50.88578645150227],[-118.3672445296476,50.88754742514167],[-118.37392419109888,50.887141596961655],[-118.38187533183503,50.88490603040607],[-118.38422562126497,50.88404616724699],[-118.3865695778383,50.88347375721372],[-118.39297742195582,50.88289476036476],[-118.39938892411664,50.882879635082745],[-118.40689418289517,50.88349683390168],[-118.41612085256905,50.88593470020635],[-118.42398204665032,50.889171621142516],[-118.42923301333376,50.890936631896935],[-118.43547646146921,50.89486230641884],[-118.43965312295416,50.8995887178093],[-118.44154973665431,50.90089173227059],[-118.44788617073134,50.902596473155675],[-118.45394662418003,50.902639544854885],[-118.45855615447007,50.9026306741288],[-118.46469757191288,50.90261766528539],[-118.47544341744656,50.90254022428636],[-118.48330727090394,50.902749419733816],[-118.48611692140486,50.90365296773257],[-118.49563507126781,50.908140320048574],[-118.50379408889161,50.91348438303628],[-118.50750479027546,50.91609811101052],[-118.5105813239506,50.917294268023475],[-118.51792972221388,50.92041255291857],[-118.5249069301072,50.92387118619771],[-118.53097297753898,50.92602620694713],[-118.53342128072767,50.92704873183857],[-118.53730721110048,50.9277805443668],[-118.53767631522766,50.927852585996575],[-118.53102513776413,50.9316313282183],[-118.53584130791567,50.93631448559261],[-118.54208329673779,50.939279631543094],[-118.54480560658577,50.93717819805167],[-118.54931190048151,50.936381899744944],[-118.55945562469016,50.94045691268998],[-118.56152003126654,50.93744675253212],[-118.56636582856476,50.93901840942456],[-118.57177116863457,50.93804563021919],[-118.57829103272843,50.939348660146905],[-118.57793587567457,50.93648923539032],[-118.5834508481028,50.9364114863281],[-118.58830854801721,50.925465744345956],[-118.59375446475404,50.92571878346785],[-118.59354813075991,50.92453974712603],[-118.596432410048,50.92555130995347],[-118.59977394656765,50.92491187529277],[-118.60617884608966,50.9235821777848],[-118.61168161695016,50.92207965614384],[-118.6134841413061,50.921050896592625],[-118.61364100634935,50.91648451651555],[-118.61288769451512,50.912487213574416],[-118.61305705420808,50.91112197953593],[-118.61272319159204,50.90313254369413],[-118.61367928059323,50.89650824214517],[-118.61588558120829,50.89045074597415],[-118.62072017072602,50.88518537123781],[-118.62746206935647,50.88065748257115],[-118.635568514957,50.87668876513266],[-118.64042279455549,50.87370338390908],[-118.64167338186516,50.87227786751302],[-118.6409141671169,50.86856526797239],[-118.63853238161775,50.86463788989651],[-118.63506673816522,50.85922805429545],[-118.63323097575613,50.856326357651874],[-118.63184661197768,50.85233810382926],[-118.6319242991559,50.850225747534196],[-118.63886698518891,50.84946082331593],[-118.6464580995627,50.85091321735707],[-118.64971974813473,50.85193165603626],[-118.65205960433018,50.85117427350607],[-118.6588042701965,50.847444729562305],[-118.66364298199531,50.84400323184011],[-118.66831589652114,50.84113080825014],[-118.66416761254308,50.83195907236518],[-118.66214644438021,50.827402237402836],[-118.66389876303349,50.82083045514597],[-118.6695494843171,50.81772777507126],[-118.67333218020318,50.816170379330806],[-118.68250859800757,50.814195960729876],[-118.68494021419325,50.81373355630922],[-118.69413338813152,50.81260867347277],[-118.70494810962244,50.81256428340692],[-118.70748262836831,50.81260531379181],[-118.71626215486968,50.81610608658737],[-118.72011535328717,50.823115786502335],[-118.72021567429121,50.824250945030656],[-118.72437509267836,50.8247519413574],[-118.73592446539155,50.82520935113393],[-118.7404395109337,50.825193425669305],[-118.74918495949036,50.8249794406734],[-118.75775263800182,50.824539952245324],[-118.76163937129516,50.82549073981192],[-118.76878172038951,50.82688376558429],[-118.77500949053427,50.826343750812455],[-118.77607224217344,50.825545858898614],[-118.78121695684725,50.82617053929654],[-118.78197270591411,50.8201328060924],[-118.78499084029757,50.81522093797787],[-118.78615560940636,50.813369889482416],[-118.7869060326564,50.8134962850453],[-118.79571762930155,50.81049965091788],[-118.80000331765802,50.80862037991776],[-118.80263569886165,50.807465419964664],[-118.81205189479232,50.80113188716468],[-118.81504771948849,50.800007999001714],[-118.83481617078955,50.79259188613031],[-118.82943496420455,50.777828422720155],[-118.8232484056665,50.7804907419405],[-118.8241539715404,50.779859530504666],[-118.8261144685908,50.77751149893787],[-118.82698367120807,50.775563225691265],[-118.82819263700222,50.77087705136117],[-118.82950526902592,50.76767531175935],[-118.83397917648546,50.76565363663553],[-118.83973916768116,50.764767903396866],[-118.84669087206008,50.76569852137634],[-118.85011677105695,50.76647642442869],[-118.85261996176179,50.765090444087456],[-118.85733434297227,50.760218142190844],[-118.86676007270628,50.757080035537655],[-118.87440660757434,50.75606175183105],[-118.8766514928819,50.7561082659423],[-118.8811926577037,50.752031464600655],[-118.88476131064837,50.74904453410547],[-118.88813435859132,50.7487166050563],[-118.89114432510574,50.74843084587795],[-118.89882796636238,50.75021411841745],[-118.90170610895534,50.75030954115281],[-118.90692280081079,50.75587536227107],[-118.90799143331084,50.7618053920072],[-118.90809309769132,50.76197322223958],[-118.91322061661494,50.767934562465754],[-118.91866723636646,50.77144189495369],[-118.92175299689127,50.77239503756043],[-118.92791384587503,50.774641120699016],[-118.93170734825324,50.77599033167264],[-118.9351514443431,50.77693531915369],[-118.94022874323143,50.7791869903761],[-118.94505636972052,50.782299843898315],[-118.94984013601625,50.78289412958713],[-118.953249538553,50.78144319974018],[-118.95574631598241,50.77971900948963],[-118.96166079221875,50.778023889570086],[-118.97037504802725,50.77556973452633],[-118.97109069316176,50.77528089589953],[-118.97942711832751,50.77213885859585],[-118.98605370015193,50.76952725351104],[-118.99008296682283,50.768471979730364],[-118.99824631828385,50.76596144776577],[-119.00157742725004,50.765536612173484],[-119.00986339752183,50.76587837638342],[-119.0147328376099,50.7656427150954],[-119.01661482321981,50.765549683184915],[-119.02606773108492,50.764625312648704],[-119.03435096917536,50.76434289231883],[-119.05388879234745,50.76345718967964],[-119.06190258500366,50.7633449264369],[-119.07182788851726,50.76349759551051],[-119.08292124564802,50.76466723614769],[-119.08789116160571,50.7649733199031],[-119.09138992329983,50.764838287023785],[-119.10488147803801,50.76358682450443],[-119.1113740021008,50.763538208840885],[-119.124257475763,50.76326607249518],[-119.13304596683727,50.76153773617661],[-119.1401456374967,50.760686756096504],[-119.13912623188205,50.75869394935693],[-119.13558966303408,50.753235868600164],[-119.13481704878053,50.75010249896918],[-119.13626742868915,50.74603895663274],[-119.13785143490118,50.74351607732078],[-119.13774112103572,50.74265703488418],[-119.13399994293246,50.74011737393014],[-119.1323234934659,50.73693553636536],[-119.13214359219353,50.732821090980735],[-119.13280244816767,50.72899467674779],[-119.135785951693,50.72514461696127],[-119.13940475358152,50.72123379899377],[-119.14188365037617,50.71955339094582],[-119.14306540318665,50.715373895377766],[-119.14634171786804,50.70792782227211],[-119.14946577920598,50.70156202547374],[-119.15276521347228,50.69525318207605],[-119.15793886296774,50.6888705722878],[-119.16156409370781,50.68581635243614],[-119.16655572110992,50.68303380670401],[-119.17904785306088,50.678073787999644],[-119.19215209166656,50.67224866717154],[-119.19874526265637,50.66985277133371],[-119.20121990787975,50.66760358287517],[-119.20776577583739,50.661948210226015],[-119.21304016101752,50.656416268151034],[-119.21781045776521,50.65260917172248],[-119.22341806422696,50.65021505844743],[-119.22718534068417,50.649554061606004],[-119.23023926812188,50.64975643402036],[-119.23603837274877,50.651359283436776],[-119.24217465586234,50.65261400792449],[-119.25176090645462,50.65144564449735],[-119.25964049485745,50.64971280265216],[-119.26643618480553,50.648283765325665],[-119.26964809479301,50.647055324965116],[-119.27139758155192,50.64515343724901],[-119.27472064681979,50.640435439684566],[-119.2772333261766,50.63647371726661],[-119.2817457962043,50.633575293582204],[-119.28559301170226,50.63274300313571],[-119.29196230296878,50.63205045258578],[-119.29248332380472,50.631701778948425],[-119.29140600616877,50.627318317510316],[-119.2905553622708,50.621611284628685],[-119.2908849709554,50.61618077659323],[-119.29183396422961,50.61069120794484],[-119.29396883426753,50.606100604086535],[-119.29834726332747,50.600744671991],[-119.30217792615153,50.59591279388882],[-119.30464030243783,50.59320577999384],[-119.30543689298864,50.59319459978863],[-119.30141135274457,50.58992253665215],[-119.2940653192991,50.58256539065699],[-119.28979314026857,50.57620846648669],[-119.28969835036895,50.57181181235336],[-119.28947529036289,50.56210381210546],[-119.29018580934029,50.55421647697314],[-119.2911147476911,50.547808235019836],[-119.29260623161001,50.54579739564898],[-119.29599379484667,50.53754162128345],[-119.29890109089126,50.53116713429903],[-119.30077808158633,50.52732491774934],[-119.30217517402303,50.525369188264655],[-119.3052015276749,50.52094318195947],[-119.30805750302653,50.51651528278263],[-119.30919279590064,50.51479072302284],[-119.31058909029264,50.51312082346434],[-119.31141455683635,50.51042992856597],[-119.3107596399646,50.50540417196044],[-119.30968339519268,50.5010213420848],[-119.30703356412201,50.495506644010575],[-119.30694310397998,50.49516273985227],[-119.30054243225315,50.481745704404126],[-119.2981616208691,50.47605558499065],[-119.29625446197423,50.47070596686396],[-119.29542471101949,50.46591847773099],[-119.29693150411926,50.461504310651705],[-119.30289341709117,50.455965925970965],[-119.3272566445986,50.44149547892236],[-119.34687596945334,50.43136112148791],[-119.34958633335991,50.42986347098634],[-119.36522704427796,50.42122995803372],[-119.37140201712337,50.42145021810411],[-119.37976843826306,50.423019151235096],[-119.3860557232339,50.42392046826092],[-119.39021549519612,50.42216846909383],[-119.39663158863226,50.41775338459049],[-119.3974210263458,50.41728667801739],[-119.40721137607301,50.411925207639506],[-119.42062501396124,50.40835290879484],[-119.42623427238743,50.407205416285684],[-119.42742962418369,50.40530856889121],[-119.42441229127918,50.39905835556958],[-119.42207001716524,50.395256640019724],[-119.430427324653,50.39676615922214],[-119.44148079411049,50.402184133513224],[-119.44654059240685,50.41063827950843],[-119.44710530878352,50.41200396042388],[-119.45055341160308,50.417165363631845],[-119.46125600375642,50.41949692710677],[-119.46922438164422,50.419922651029246],[-119.47839160546413,50.421247556868316],[-119.48902999130951,50.42129796740224],[-119.50617868307552,50.4235542241526],[-119.523544312955,50.42706451023621],[-119.52571767904878,50.4277810586715],[-119.52992789644597,50.4279016379467],[-119.53829047296392,50.429630537910974],[-119.54235978820924,50.43438470376958],[-119.54511917373992,50.43703546974259],[-119.54945912762994,50.43852695001423],[-119.55651644923707,50.44415775860459],[-119.56052362499345,50.44976393862401],[-119.56427838525067,50.45268907222034],[-119.56773464064626,50.45750887709558],[-119.57449904278792,50.46245174579986],[-119.57678315841599,50.46419361874836],[-119.58038652044672,50.46472289199496],[-119.58199798227521,50.46493247393417],[-119.58354335237885,50.46262780166283],[-119.58437885065851,50.45775802969308],[-119.5874299969184,50.45481089758469],[-119.59244533512246,50.45177554598287],[-119.60182385907501,50.447891056799534],[-119.60509834792622,50.44664467120368],[-119.60846845005898,50.445520437281566],[-119.61609370230926,50.44330978935385],[-119.62554374483659,50.44198867573527],[-119.63196886255894,50.4414541490495],[-119.64668526951108,50.436974970153045],[-119.65228365360868,50.43547615320797],[-119.6560749142435,50.433654701824686],[-119.66516282784211,50.42965447268143],[-119.67060542224011,50.426435180145646],[-119.67285483476189,50.424006255259634],[-119.6794589510338,50.41763571601773],[-119.68825912339689,50.41020105473179],[-119.6919834996987,50.4066093079145],[-119.68994746162312,50.40692223345828],[-119.67962643357676,50.40888309116496],[-119.6673370319992,50.410363268519085],[-119.65001944511292,50.41161667790066],[-119.6400084108209,50.411857879873075],[-119.63727900461978,50.4040630995732],[-119.63702119538468,50.39898230607723],[-119.63825756479793,50.39222249646679],[-119.64036976140072,50.388363520330984],[-119.6404378921185,50.387680058565614],[-119.63824416966912,50.383305969863116],[-119.63487793172709,50.37843738560622],[-119.6338433427797,50.37656257737838],[-119.63578924181655,50.37327938711817],[-119.64031883171612,50.37219810869413],[-119.64447517949829,50.37065759731012],[-119.6461472262959,50.36720625960506],[-119.64544752766469,50.36475644044164],[-119.64448950826916,50.36253761569567],[-119.6465975794455,50.36120062006124],[-119.653537251049,50.36053603865507],[-119.65833401320273,50.35944915425455],[-119.66098377057963,50.358271012270684],[-119.66259599661319,50.355735755621154],[-119.66407403145624,50.35154111442029],[-119.66641131631356,50.34916582244964],[-119.6682154581972,50.34696799395395],[-119.66875959449337,50.34439621527481],[-119.66563354915517,50.341232723733846],[-119.66430729616734,50.33902053169143],[-119.66427601526338,50.335020593857244],[-119.67166232638093,50.331439375349035],[-119.68231813593853,50.329583807009435],[-119.6834768649339,50.32956891952731],[-119.69088495298158,50.32672197742989],[-119.69717178550194,50.32492932979621],[-119.70396515705114,50.32283761989152],[-119.71380324422111,50.3202440237407],[-119.71953535337387,50.31816709978184],[-119.71804062651744,50.316240360278634],[-119.71096473677848,50.315309505990825],[-119.70464417509818,50.313108516524686],[-119.70234391918171,50.31079607220129],[-119.70149432569023,50.3096084858812],[-119.6995851287166,50.30843707464118],[-119.694379994416,50.30764853813271],[-119.68814689545599,50.30796259748977],[-119.68457564390353,50.307892434247734],[-119.68127341494909,50.30519276619394],[-119.68367322573329,50.29921951560623],[-119.68712277892598,50.29551407619095],[-119.68767466678379,50.29327810928891],[-119.68980304746214,50.29004623685998],[-119.69463435241005,50.287639980058444],[-119.69913568934446,50.28335090870773],[-119.7039445652532,50.277454004680806],[-119.70797509634808,50.272484706364516],[-119.71040782501179,50.270794155766445],[-119.71561086235201,50.26609452701013],[-119.72114743079388,50.263448334759936],[-119.73213829128868,50.261580853228246],[-119.7367667289902,50.26151521781483],[-119.7386447519753,50.261377759728724],[-119.74768246640845,50.25987599718243],[-119.75345394472234,50.25642567270231],[-119.7538312343109,50.249103253111414],[-119.75744842375025,50.242478146598174],[-119.75956458557822,50.2390758307873],[-119.7604183704509,50.23808997457914],[-119.76033080361245,50.23300749627709],[-119.75697171305312,50.22848394992912],[-119.75234104450256,50.22563402960143],[-119.74757977461572,50.221695952925835],[-119.74467337176186,50.217678601327876],[-119.74145400003194,50.21155220236246],[-119.7381614245568,50.20657192446624],[-119.73931660671055,50.20381165410423],[-119.74971141411105,50.20309408898796],[-119.76159600253435,50.20166598664557],[-119.76805395051359,50.200319175511524],[-119.77124840925279,50.20010018176041],[-119.77483837133421,50.20078941341987],[-119.77919339968547,50.20307708392519],[-119.78723688559015,50.204214880285846],[-119.79400872148517,50.20406288287047],[-119.7982727739882,50.203941748716524],[-119.80259923864966,50.202850093866026],[-119.80426576639954,50.199508564338274],[-119.80675175606206,50.19644546204274],[-119.8102229710972,50.19399036875884],[-119.81322956045959,50.19091920369979],[-119.81645980069733,50.1889878036132],[-119.82244388047981,50.18706660185834],[-119.82674581356345,50.18551878037225],[-119.82781716878522,50.18281348116748],[-119.82511662022564,50.18199933863206],[-119.82449700564484,50.18200741614931],[-119.82045894078459,50.181209425771456],[-119.81597167071737,50.18030481455093],[-119.81105737948435,50.17717556209179],[-119.80836402085403,50.173843435391376],[-119.80457332317015,50.16692310078923],[-119.80222543672049,50.161071313734496],[-119.79900087906105,50.155059420790735],[-119.7958655339355,50.15179038199871],[-119.79116523045407,50.149797606252385],[-119.78417663867775,50.14841233550573],[-119.78051424847318,50.147666023586126],[-119.77622953106734,50.142242284275355],[-119.77620267720673,50.13875256314793],[-119.7760977551072,50.133272630169316],[-119.77652374395308,50.1300645754515],[-119.77677468864779,50.12680146612684],[-119.77755524202861,50.126331320915725],[-119.7757331695787,50.12241779985542],[-119.77284796243647,50.12113928074746],[-119.76928835280076,50.12119518242395],[-119.76602764440992,50.12203892176791],[-119.76409611634399,50.122813085325994],[-119.76214098646322,50.12283913356041],[-119.75838303803819,50.122089881478566],[-119.75554251823951,50.12202039028501],[-119.74988830993182,50.12301184944333],[-119.74600293248609,50.12369765433551],[-119.74492146878717,50.123598289378414],[-119.7384485914291,50.11871514044642],[-119.73649066491798,50.1133705079749],[-119.73709302821021,50.107478635890814],[-119.7377730749997,50.106211686892046],[-119.73985711651117,50.10229432093311],[-119.7400312995121,50.09960592444697],[-119.74180377951753,50.09672380570182],[-119.7411489068289,50.09312684272463],[-119.74293600342847,50.090645430820956],[-119.74663255142548,50.089680624459575],[-119.75392778438034,50.087234649289115],[-119.75871664354246,50.08464629316453],[-119.75957878219243,50.08378271341169],[-119.7584531698271,50.081969640167],[-119.75202955614384,50.08114670866496],[-119.74479836446348,50.07987406543912],[-119.74150015633822,50.0772403151021],[-119.74510622976871,50.073359389190706],[-119.75358850087014,50.069401295328184],[-119.75944133961188,50.06640367983204],[-119.76218659995037,50.06356641991337],[-119.76216997266131,50.06327894009455],[-119.75727768721573,50.06020748075353],[-119.75685494992983,50.055527736956854],[-119.7587046509392,50.052470921290535],[-119.75857875803906,50.049099726470246],[-119.76059271309634,50.045353918423274],[-119.77268567983111,50.0411791942993],[-119.77966270337328,50.039761238002036],[-119.78123978853039,50.039398898451054],[-119.78629687541878,50.03920785471873],[-119.79184332133947,50.03810065202606],[-119.79790696141565,50.03617863826212],[-119.80208465472128,50.0340053178664],[-119.80544402138734,50.031150511390905],[-119.8034367018772,50.02706452998201],[-119.79968413128485,50.02386344475199],[-119.79761317668182,50.02035294637247],[-119.79707261740691,50.01989988284573],[-119.79355596069847,50.01846776467675],[-119.78657467082616,50.0164578292464],[-119.77961148880377,50.01524151803197],[-119.774439320157,50.0143476269336],[-119.77318305782418,50.01390677501852],[-119.77128596635892,50.01067848617545],[-119.7743644508044,50.00732006889899],[-119.77906251502753,50.00450538453772],[-119.78503431655525,50.00281760075216],[-119.79447277039475,50.0014771215047],[-119.80208835037455,50.00107681777217],[-119.80680815825565,50.00158233894158],[-119.81186767627479,50.00195849822345],[-119.81620233712816,50.001383694414784],[-119.82120743587784,49.99999481618963],[-119.82353779917987,49.99902069341319],[-119.8254477472719,49.99784233327164],[-119.82540479245509,49.996817294438095],[-119.82532967465609,49.99458449014123],[-119.82731468934907,49.99295402212915],[-119.83075818976413,49.99233579788422],[-119.83467551230962,49.990388731004145],[-119.83132579821434,49.98814696922474],[-119.82772542665414,49.98682728647958],[-119.82573275651264,49.98541988349346],[-119.82567402501897,49.98399514320121],[-119.82652168246096,49.98249176920076],[-119.8284262486511,49.98165714728749],[-119.83000508528065,49.98095362200749],[-119.83603056663799,49.98058733487571],[-119.83851295188258,49.980548244879],[-119.83991705572495,49.98041064779114],[-119.84415611817411,49.977314932789],[-119.84871868575725,49.97584705877519],[-119.84872562718964,49.97586041739172],[-119.84880709907786,49.97604718716514],[-119.8488142643264,49.97607183933555],[-119.84883649293937,49.97623102202034],[-119.84884138008188,49.97631139160072],[-119.84883591149422,49.97645548100777],[-119.84883386936737,49.97647060012422],[-119.84882577580669,49.97654347183139],[-119.84882192265609,49.9765590487397],[-119.84879986595836,49.97663169552584],[-119.84879669270086,49.9766422386986],[-119.84872011352367,49.97682068837056],[-119.84862972176475,49.976997793411385],[-119.84854258021716,49.977150831384776],[-119.84849674070418,49.97724414435131],[-119.84842415757143,49.977431843081035],[-119.84839228470733,49.97751240350642],[-119.84836491688007,49.977689105308116],[-119.84835007874142,49.9778636952944],[-119.8483656814504,49.97795537919311],[-119.84841703748269,49.97814496900856],[-119.84848590714897,49.97833440553801],[-119.84853681415153,49.978514376594475],[-119.84862538560041,49.978700416366976],[-119.84872173455624,49.97888068386994],[-119.8488849995304,49.979226027811436],[-119.84895319526645,49.979407529054335],[-119.84901655701766,49.97959892050112],[-119.84909638045427,49.97977204993201],[-119.8491003028044,49.97978186356753],[-119.8491687205144,49.97998763542134],[-119.84917068052194,49.979999026446876],[-119.84921162059442,49.98021396706308],[-119.84921358062239,49.98022535808443],[-119.84922035031684,49.98033065092644],[-119.84921706279968,49.980510401450864],[-119.84921452904308,49.98069752235555],[-119.84921451719823,49.9807494139019],[-119.84921466607071,49.980761262712754],[-119.8491965126317,49.98092156008631],[-119.84916544963721,49.9810867727431],[-119.84916028396373,49.981228622044654],[-119.84914423785541,49.98141216806976],[-119.84915690922364,49.98146081916529],[-119.84917879031701,49.98150604376393],[-119.84925101534785,49.981580042237475],[-119.84930437802167,49.981612369923965],[-119.84931902024897,49.98162052946006],[-119.84933200249786,49.9816280271976],[-119.84962161190391,49.98180222632982],[-119.84963444303219,49.98181084362554],[-119.8497237324009,49.98187507875817],[-119.84985928821735,49.981972379715245],[-119.84994314213144,49.9820380059915],[-119.85014338533108,49.98217446976816],[-119.8502827993292,49.98224321599021],[-119.85061493350793,49.98233575307194],[-119.85063002979943,49.98234055363613],[-119.8507369914112,49.98237757798669],[-119.85078024295815,49.982394112360744],[-119.8508017556493,49.982403216999366],[-119.85096510130303,49.98247612180137],[-119.8510040496035,49.982498614399205],[-119.85124233644724,49.98267726357549],[-119.85140310607363,49.98280812387089],[-119.85141563545776,49.98281898014029],[-119.8516066675513,49.98301075916535],[-119.85180494745974,49.983200697495974],[-119.85187997230287,49.98327992273881],[-119.85206594785156,49.98348326612627],[-119.85228174845138,49.98366008133151],[-119.85244849327667,49.98375968869349],[-119.8526319945626,49.983877726165865],[-119.85278469939783,49.983977672841164],[-119.85292125105471,49.98406768788387],[-119.85301432564553,49.98411690752825],[-119.85311261677423,49.98411452816381],[-119.85315474154052,49.984113508409344],[-119.85318795989507,49.98410070791232],[-119.85320034257371,49.98408673790116],[-119.85322125926997,49.9840484291221],[-119.85322294369192,49.983880439590386],[-119.85322516133988,49.98368258128036],[-119.85322659656583,49.98367194957813],[-119.85323453201111,49.98361316620403],[-119.85321884262413,49.983522039018794],[-119.853207068318,49.983505584974594],[-119.8530087063531,49.98330324516915],[-119.8530010080233,49.98329547599221],[-119.85289692439146,49.98317231283416],[-119.8528795655384,49.98314539250729],[-119.85278244065701,49.982931813619615],[-119.85277459517899,49.98289921832475],[-119.85276119116034,49.982674545821496],[-119.85276874721092,49.98263153425257],[-119.85283089556425,49.98249514060416],[-119.85285052650232,49.98246635288544],[-119.85295585170972,49.9823470479996],[-119.852983711475,49.982322097407675],[-119.85311703812548,49.98222862253999],[-119.85317146959927,49.98220121967734],[-119.85325405916161,49.98217257264277],[-119.85329037010105,49.982162770476855],[-119.85359256100708,49.982101326242386],[-119.85392970173986,49.982040155204146],[-119.85413194322707,49.98198043680621],[-119.85420079188349,49.981949898850104],[-119.85422487391517,49.98193996959095],[-119.85425975166285,49.98192782149764],[-119.85439631498382,49.98188810630311],[-119.8544506682584,49.98187423546139],[-119.85466121108504,49.981817806755956],[-119.85471141241919,49.9818087746458],[-119.85485129361858,49.981796319088446],[-119.85487243045965,49.981795249076505],[-119.85528489898877,49.98178512116922],[-119.8554368609602,49.98174795643415],[-119.85568356492807,49.98164391937901],[-119.85594778427907,49.981513781606324],[-119.85600462817234,49.98149440937888],[-119.85629903508348,49.98142576189046],[-119.85631519027814,49.98142271548282],[-119.85633323152854,49.9814186558336],[-119.85638184693838,49.98140840593924],[-119.85659955922343,49.981311765079205],[-119.85670071712384,49.981249186865846],[-119.85684030350913,49.981083293428824],[-119.85684838051777,49.9810752904622],[-119.85696773265633,49.98095564110782],[-119.85701415961242,49.98092270658307],[-119.85716257030472,49.98084699472592],[-119.85721775278337,49.98082696017408],[-119.8573589146855,49.980792011853495],[-119.85738805295499,49.98078349367331],[-119.8574510849435,49.98077010829018],[-119.85768343317332,49.980746483613174],[-119.85794325920882,49.9807136784478],[-119.85798734403984,49.98071107032669],[-119.85824067614075,49.98071343923432],[-119.858462305091,49.98071740466521],[-119.85871216487483,49.980719577732636],[-119.8588763482812,49.98070848023495],[-119.85892299908598,49.98069981572975],[-119.85895342102117,49.98068177596694],[-119.85915157424088,49.98050958039076],[-119.8593077568241,49.980363223771924],[-119.85933885718498,49.980340150121336],[-119.8593687496882,49.98032603335314],[-119.85962781727254,49.98022098487049],[-119.8596896394479,49.980203586670555],[-119.86003445819608,49.98015015651176],[-119.86005219669093,49.980148335469664],[-119.86030212913779,49.980123994841165],[-119.86033556921507,49.980122485590385],[-119.86061162053439,49.98012498596058],[-119.86076470539784,49.980131312734414],[-119.86100859987708,49.980151755044254],[-119.86104868276531,49.980152874147414],[-119.86107215760364,49.9801344534],[-119.86130155345303,49.980002920059555],[-119.86132223664877,49.979992230269154],[-119.86158076906155,49.979878122880756],[-119.86161926531494,49.979865056410745],[-119.8618805165258,49.979795655257924],[-119.86189863269914,49.97979103039884],[-119.86216093964482,49.979739746025835],[-119.86218411333543,49.979736532688435],[-119.86228012947667,49.97972499353763],[-119.86256349811138,49.97969913789244],[-119.86285139497515,49.97966563880774],[-119.86289887477962,49.979663787611095],[-119.86320021142372,49.979673339147396],[-119.8634552741947,49.97967579332587],[-119.86348380711331,49.97967175198726],[-119.86351135824087,49.97966201525396],[-119.86365129965154,49.97957114672284],[-119.86366428138123,49.979552696972064],[-119.86367265866309,49.97954245424966],[-119.86367937582581,49.979531549945],[-119.86373666135084,49.97944394578501],[-119.86374133592973,49.97938329178101],[-119.863739293943,49.979346519473076],[-119.86368803125656,49.979246632391195],[-119.86355742836979,49.97906050906368],[-119.86352194687859,49.97901226957511],[-119.86333526273184,49.97885290141529],[-119.86327774111345,49.97881245119498],[-119.86293148504878,49.978630042510666],[-119.86285358333521,49.9785850655294],[-119.8625061995809,49.97841104811286],[-119.86215512063366,49.97825148727801],[-119.86184103218238,49.97811599179722],[-119.86156846079302,49.97799692828651],[-119.86128887055044,49.97786506162545],[-119.86124056109915,49.97783415121682],[-119.86104898235192,49.97765927921965],[-119.86102512927077,49.97762861178459],[-119.8609042029027,49.977422721110734],[-119.86075980296314,49.977235259961724],[-119.8607074923226,49.97715618595836],[-119.8606917165759,49.97711750617914],[-119.86066906915266,49.97697409808642],[-119.86066989810496,49.97694199875843],[-119.86070265359768,49.97678984774199],[-119.86072363366247,49.976673144083165],[-119.86076778414497,49.97646241214684],[-119.86077329438021,49.97644748748861],[-119.86084499446638,49.97626594273289],[-119.86085676922023,49.97624347274548],[-119.86093458447277,49.97613333998479],[-119.86095118928458,49.97611396552423],[-119.86116033523632,49.97591191590311],[-119.86137061058795,49.97570147314766],[-119.86142925487293,49.97564271655309],[-119.86157703192836,49.97544174689225],[-119.86162873168436,49.975369623401384],[-119.86164344902728,49.975351271111556],[-119.8618066995992,49.97519121109559],[-119.86172344719583,49.97517300672263],[-119.8615255450762,49.975161911471574],[-119.86149965623977,49.97515933192135],[-119.86133134090487,49.97513635810881],[-119.86130235681142,49.97513078927257],[-119.86121087756432,49.97510873898365],[-119.86119397050966,49.97510440678347],[-119.8611770634582,49.9751000745807],[-119.86101003093928,49.975054610501495],[-119.86098150090824,49.97504567375782],[-119.86081046732187,49.974977991877786],[-119.86055671115595,49.974862235328104],[-119.86051459459082,49.97483731195621],[-119.86031246528961,49.97467594203454],[-119.86028272734649,49.974662993560784],[-119.86024559276255,49.97465301454825],[-119.86005003370909,49.97465050400737],[-119.85984994491554,49.974655644710346],[-119.85960260835964,49.97468689692887],[-119.8595585306452,49.974689496762956],[-119.85905555485998,49.974683848479344],[-119.85901570267048,49.974681053689274],[-119.85890407309003,49.97466576775043],[-119.85884648534243,49.974651816297396],[-119.85853122271864,49.97453824511714],[-119.85827717126116,49.97447661445407],[-119.85823045139313,49.974459897052846],[-119.85802795207461,49.974366186883245],[-119.85800500776844,49.9743547469404],[-119.85791934445135,49.97430256156456],[-119.85788462659306,49.97427466785043],[-119.85780960733626,49.974195436790616],[-119.85779043695999,49.97416898381448],[-119.85769715711136,49.97399171247141],[-119.85761761316752,49.9738163487058],[-119.85742183573711,49.97372470184755],[-119.85724296258306,49.973676310958986],[-119.8571594127408,49.97366034232434],[-119.85712431627634,49.97366119789187],[-119.85708771101633,49.973660272143455],[-119.85705170981014,49.97365486790925],[-119.85685872408762,49.97360737214384],[-119.85653758187948,49.973563406216414],[-119.85630338679572,49.97352319032047],[-119.85601402007536,49.97347706206886],[-119.85586971430507,49.973457682881126],[-119.85563023370221,49.97345665214081],[-119.85544878610548,49.97353107590567],[-119.85541753916648,49.97354229079168],[-119.85538168749194,49.9735487438836],[-119.85506438749397,49.97359298054042],[-119.85504129255585,49.97359562811523],[-119.85492664566134,49.97360273042296],[-119.85480497895395,49.97361000715796],[-119.85478218612931,49.973610415447524],[-119.85473320238161,49.97361049076812],[-119.85455319513785,49.97360941163882],[-119.85789504447011,49.97225201676736],[-119.85928540545586,49.97148732637623],[-119.86540283790504,49.96876358913387],[-119.87129021656861,49.967536026869965],[-119.8767734097468,49.96733523429035],[-119.88238093462473,49.9677705794102],[-119.8873605973174,49.96569166861849],[-119.88987223531385,49.96427968084089],[-119.89222122938669,49.9629318900787],[-119.8936156142397,49.962339052058404],[-119.89485878954122,49.959742796287806],[-119.89916013884455,49.956241999748656],[-119.9067992480775,49.95423548962939],[-119.90978509116853,49.95345131387368],[-119.91491887792816,49.95113843508942],[-119.91829857079891,49.948972088624615],[-119.91854848880251,49.94856634565751],[-119.92078450178056,49.94406899017415],[-119.92226085495524,49.941071434630764],[-119.92648090297125,49.93762609067203],[-119.93325196495866,49.936435508613194],[-119.93563060943154,49.93599942160944],[-119.93811848972932,49.933900408675434],[-119.9391540109326,49.930737797173556],[-119.94190391410955,49.92834639926301],[-119.94446678570199,49.925677238732796],[-119.94420504822398,49.92333333000044],[-119.94145922100839,49.92085858631419],[-119.94788650467086,49.92012985371654],[-119.95502540583655,49.92162116071816],[-119.95989933527021,49.92417810129316],[-119.96715650072545,49.9285853541917],[-119.96950863403661,49.93003426765435],[-119.97657083237466,49.93169858088292],[-119.9815119500333,49.93122156829602],[-119.98599566586516,49.93029055894697],[-119.99102163152607,49.929697670825526],[-119.99426941945639,49.92912762526843],[-119.99652478399891,49.92760234251739],[-119.99805163021723,49.92608949874235],[-119.99939970441949,49.92423519531283],[-120.0091122022378,49.919767377182396],[-120.0110660658308,49.91936004325218],[-120.0137087765127,49.91774962788135],[-120.01926055818703,49.9151568048527],[-120.02419999313581,49.912967349343816],[-120.02452742156868,49.90912141696691],[-120.02838603296273,49.910072740426415],[-120.0297329458164,49.91030872083592],[-120.03094707000916,49.9106254148382],[-120.03526825849318,49.91147313671314],[-120.03675676812585,49.91168178415299],[-120.04006123295986,49.91186533466854],[-120.04895274440202,49.911548791266846],[-120.06246635335287,49.910319746012526],[-120.07717530232105,49.9084167567957],[-120.09195078652758,49.906527847802224],[-120.09478197178409,49.90616987319818],[-120.09616308556855,49.905994072905294],[-120.09983145786802,49.905601665182466],[-120.10821151095556,49.90471255470433],[-120.10935651337479,49.90452555595854],[-120.12999066263195,49.90116124190235],[-120.14161494833752,49.899409585473975],[-120.15071608952833,49.89939956320101],[-120.15843599664096,49.89943340670159],[-120.16542335684915,49.898670305719705],[-120.17307618330499,49.89706764440947],[-120.18042499344965,49.894531966560145],[-120.18350745022798,49.89325698994669],[-120.18612615337095,49.892223422061186],[-120.18892994293485,49.89094137713142],[-120.1937188993924,49.88816895042449],[-120.20011872539897,49.88510121761388],[-120.20295223366502,49.884155368173786],[-120.20565947918325,49.88339221976721],[-120.21044919493411,49.88307542337407],[-120.21707610941863,49.88384694297242],[-120.22528575281491,49.884494746189226],[-120.2336820191489,49.883845874142644],[-120.23987720742176,49.8830217315092],[-120.2440346744223,49.88186215378908],[-120.25269505739782,49.87959284747202],[-120.26311223241045,49.87781548077244],[-120.27245386502129,49.87553760181174],[-120.28035206215932,49.87228353854052],[-120.29184824648446,49.86893788588637],[-120.29643973953877,49.86753409731901],[-120.29679246939102,49.86748880249904],[-120.29764341962372,49.867462177759236],[-120.29810003790783,49.86749277576502],[-120.29873185671697,49.867614834233876],[-120.30017456007126,49.86824096957667],[-120.3019449159837,49.86912098921703],[-120.30369784640757,49.870239120814354],[-120.30566168456716,49.871708769246126],[-120.30691978532107,49.87272606263585],[-120.30893483068442,49.874626239534756],[-120.31138810938734,49.87715471920808],[-120.31411856837542,49.87988303255367],[-120.31642223666653,49.88220229256577],[-120.31797093650717,49.8838045334196],[-120.31871381404004,49.88449435269805],[-120.31931300329215,49.885021077824234]]]},"properties":{"WLAP_REGIONAL_BND_AREA_ID":45,"FEATURE_CODE":"AR10100000","QWLAP_TAG":"8","REGION_NUMBER":8,"REGION_NAME":"Okanagan","REGION_NUMBER_NAME":"8- Okanagan","FEATURE_AREA_SQM":29710543460.3557,"FEATURE_LENGTH_M":1024471.6987,"OBJECTID":9,"SE_ANNO_CAD_DATA":null,"GEOMETRY.AREA":0,"GEOMETRY.LEN":0,"fme_feature_type":"WHSE_ADMIN_BOUNDARIES.EADM_WLAP_REGION_BND_AREA_SVW"}}' - , public.geography(public.ST_Force2D(public.ST_SetSRID(public.ST_Force2D(public.ST_GeomFromGeoJSON('{"type":"Polygon","coordinates":[[[-120.31931300329215,49.885021077824234],[-120.32457256366307,49.88933563251543],[-120.32587221816097,49.89019411621295],[-120.32704125879712,49.89077010191355],[-120.3287236673229,49.8913574809373],[-120.3314392041247,49.89211286285655],[-120.33577645424727,49.8931732157515],[-120.34159325435604,49.89436353800629],[-120.34705899351421,49.895431637736614],[-120.34895663269089,49.895763714274196],[-120.35146424699056,49.89614474524718],[-120.35405783500143,49.89647997583579],[-120.35673946949048,49.89676670195944],[-120.36033104150067,49.8971747101525],[-120.36299888356923,49.89746056722704],[-120.36525003389025,49.897743483120095],[-120.36623671154364,49.89776614055615],[-120.36766648969024,49.89766278214298],[-120.36960387893693,49.89747617685201],[-120.37138814956448,49.89710181057869],[-120.37471105279143,49.89607990775226],[-120.37933844964931,49.89458095930716],[-120.38350256015588,49.893299307269295],[-120.3877039107945,49.8918829984123],[-120.39140155086417,49.89050270125933],[-120.39333811293729,49.88994978037052],[-120.39455550410052,49.88969763650568],[-120.39768968674184,49.88950764949787],[-120.39986665197353,49.88946866817999],[-120.40339680222249,49.8897627736163],[-120.40592670628452,49.89023219957142],[-120.40825932649766,49.89051784885463],[-120.41076225258233,49.89076648654121],[-120.41304337074712,49.89083178444304],[-120.41518132177114,49.89054133822537],[-120.41811488957296,49.88969390639345],[-120.42199092385225,49.888714108153614],[-120.42413728328764,49.88793910078785],[-120.4259463067285,49.887225785466704],[-120.42816811836312,49.88693204025912],[-120.43181776835296,49.88674594412287],[-120.43386210112084,49.886619489196626],[-120.4359319682104,49.885925496578665],[-120.43847379637202,49.88509425458622],[-120.44137386224749,49.88411375265221],[-120.44370038983216,49.88354485180345],[-120.4458784902467,49.883277852574416],[-120.44737783731262,49.88315559757822],[-120.44954024160104,49.88330432707106],[-120.45290159427273,49.88380755941587],[-120.4555288198337,49.88445271238618],[-120.4579703666104,49.885162226744924],[-120.4627501543231,49.8868594072076],[-120.46745836649556,49.888977203258875],[-120.47066154668522,49.8905028647071],[-120.48087742640033,49.89524116627969],[-120.48224691408784,49.895935428175434],[-120.49270583116459,49.9013972291744],[-120.49340474068403,49.90173681424764],[-120.49810489743393,49.90398797841281],[-120.50126068748594,49.9052424840482],[-120.50293142398232,49.905845613363034],[-120.50416603244575,49.906302800564944],[-120.50525160830934,49.90670795037474],[-120.5068920956387,49.907360223364954],[-120.5089708930321,49.908271783954106],[-120.51081589601488,49.90918340820386],[-120.51283459068638,49.910160635902294],[-120.51469735513275,49.91120158180811],[-120.51648283086276,49.91233444707979],[-120.51746499813277,49.91302117407475],[-120.5185968357444,49.91394424438456],[-120.51981409996903,49.91504292175766],[-120.52044097672714,49.91562219806079],[-120.521153440284,49.91618659179849],[-120.52174673981159,49.91666779615001],[-120.52238368338489,49.91730899549681],[-120.52304938788018,49.918117911430336],[-120.5249735159075,49.92044120876846],[-120.5272357064423,49.92309136173153],[-120.52858039818358,49.92474696345543],[-120.53107334627839,49.927703894962185],[-120.53323709521813,49.93019056515101],[-120.53517282799726,49.932163025462145],[-120.53642536714328,49.93335338949142],[-120.53776990403931,49.934432226838204],[-120.5405979578013,49.93662662913913],[-120.54284397347321,49.938156161537385],[-120.54501199601485,49.93943374763669],[-120.54700282595572,49.940456157978076],[-120.54876200799377,49.94119645350406],[-120.55069172899256,49.94191308561907],[-120.55171106436237,49.942283391840256],[-120.55233916034203,49.942478668783686],[-120.55379035701188,49.94285974131788],[-120.55587182401659,49.943184217203566],[-120.55761330903493,49.94341622556562],[-120.55847264626219,49.943488813151696],[-120.55960451420563,49.943458275985165],[-120.56079695301624,49.943359163020546],[-120.56323076804001,49.94305792125243],[-120.56499091756915,49.942825766623194],[-120.56585132066355,49.942684178809564],[-120.56644702042908,49.94255087164698],[-120.56677221337613,49.94247458149581],[-120.56704191616214,49.94240962198641],[-120.56771085824539,49.94221850586602],[-120.56882676817813,49.941837648027],[-120.5690527941773,49.941787433928845],[-120.56979885324414,49.94169650385895],[-120.57066530929285,49.941665087545275],[-120.57156736769188,49.94173068361827],[-120.57251892222187,49.941879317068235],[-120.57337219159916,49.94203208716357],[-120.57480713019407,49.942448138361584],[-120.57634369659992,49.943008409322815],[-120.57753598332546,49.94351216031903],[-120.57851043106955,49.944115005498126],[-120.57977786174672,49.94492735146492],[-120.5812508370654,49.945979800640366],[-120.58257653357076,49.94696406919142],[-120.58347748526067,49.94762803218994],[-120.58437295141351,49.948367803853365],[-120.58646577401045,49.95012995533986],[-120.58874122301565,49.951885291258954],[-120.59081086160265,49.95340384860146],[-120.59180290340132,49.953964585414994],[-120.59265426098091,49.954341958762704],[-120.5933620139495,49.95458994146062],[-120.59392489211709,49.95471917763894],[-120.59475142567996,49.95487890158869],[-120.59549677694704,49.95498670338218],[-120.59586958726533,49.95503947728961],[-120.59646403999817,49.955123485529576],[-120.59739352540481,49.95519583327214],[-120.59860478098526,49.955219519959606],[-120.59942847632617,49.95521168054501],[-120.60024231415585,49.95515432223482],[-120.60122715200545,49.95502479329922],[-120.60208748473346,49.95489926253271],[-120.60280775022017,49.95477639766439],[-120.6033601616345,49.954654840935504],[-120.60511162696551,49.95414320067493],[-120.60661895476551,49.95373108749294],[-120.60778563643805,49.953407572414065],[-120.60920620620571,49.953049205570665],[-120.61018440321631,49.95282741467927],[-120.61124086475458,49.95266751065296],[-120.61242354764161,49.95250366323684],[-120.61308277784472,49.95245324895607],[-120.61372740051746,49.9524229688031],[-120.61441217850368,49.95240762661745],[-120.6150765439858,49.95247637074351],[-120.61572602639211,49.95255282790313],[-120.61630434062572,49.95265509644775],[-120.61686615228189,49.952808389712985],[-120.61731346454779,49.95299945045974],[-120.61771804236619,49.953197425612274],[-120.6180243119599,49.95339958410129],[-120.61820699863385,49.95358326902569],[-120.6183456253528,49.953785076431075],[-120.61843106015269,49.95396398091804],[-120.61848855907658,49.954127986718646],[-120.61850447734874,49.95431869525187],[-120.61854421591343,49.95454437932206],[-120.6185184190481,49.95470373219015],[-120.61848921801851,49.954921519503614],[-120.61822458927557,49.95590546489444],[-120.6180004816144,49.956531278381945],[-120.61796228708889,49.95706196483046],[-120.61789174348421,49.95786664810093],[-120.61785099505119,49.95827097903073],[-120.61781910665988,49.95911813741617],[-120.61777185935262,49.96037649916314],[-120.6177977680421,49.963382676666846],[-120.61784498143625,49.96469921585061],[-120.61781463420877,49.96514857103142],[-120.61745235068975,49.965923129928406],[-120.61706047216467,49.96653392846548],[-120.61650642927428,49.96708265380856],[-120.61601828942753,49.96748753212278],[-120.61546425689659,49.96800638015188],[-120.61496793679567,49.9685246906359],[-120.61480973758579,49.968784039048074],[-120.61464319230119,49.969173154011116],[-120.6145943006133,49.96986787418407],[-120.61455037258492,49.970890259112494],[-120.61455600675026,49.971404498563686],[-120.61463146730202,49.97191934819964],[-120.61467142138522,49.97203965888654],[-120.62109490102911,49.97331441910926],[-120.62590086802699,49.97440800897516],[-120.63116198280586,49.975674710857895],[-120.6402498439997,49.97792864081801],[-120.64565238970785,49.977878918879256],[-120.65041071315908,49.97629003278808],[-120.65249449104792,49.97044651363995],[-120.65235858941634,49.96421844871828],[-120.65228891750739,49.96159571864494],[-120.6516970527607,49.95091638993626],[-120.6539546786179,49.94500850589786],[-120.65465850864524,49.94448664363905],[-120.65842640761888,49.93879721953162],[-120.66213065074554,49.93447907872134],[-120.66248517408825,49.93407538820654],[-120.66745033002366,49.93031392628212],[-120.66962430596385,49.92892021960447],[-120.67173800405595,49.92804144038958],[-120.67372399630506,49.92179642851992],[-120.67469779768179,49.918477698283795],[-120.67772771938398,49.9152449031898],[-120.68041782159023,49.912648110330146],[-120.68137029752063,49.90435537486903],[-120.68232780629917,49.89949100387691],[-120.68674279127683,49.89573299867432],[-120.69695610164706,49.893346685747936],[-120.69881125966651,49.8927524706271],[-120.71181930966614,49.88959576669701],[-120.71767260283704,49.88953549589549],[-120.72557584725087,49.89105481960709],[-120.73592178905167,49.89414454153265],[-120.74370802401194,49.89766078725374],[-120.7472736830732,49.899054397501565],[-120.75448858519029,49.90063366922443],[-120.76344084509502,49.90094092921074],[-120.77084867491006,49.90023312137099],[-120.7744516143001,49.898992583596225],[-120.77845801228717,49.896662770012355],[-120.77833660345013,49.89186765155492],[-120.77672178474153,49.88720008780725],[-120.77643709255219,49.8828586176973],[-120.77641673721789,49.88206081839727],[-120.77699716816066,49.8804007806946],[-120.7773452262307,49.88016269433483],[-120.77958334535478,49.87791123490611],[-120.78447122479729,49.87517193822451],[-120.78762275773666,49.873710576528204],[-120.78956204509906,49.87346041182547],[-120.79607470675036,49.872363551931],[-120.80198862395156,49.87150043675765],[-120.80693926747922,49.86819009957265],[-120.81069467937309,49.86643447621576],[-120.823543704072,49.86748785692226],[-120.83190221430728,49.86916370004503],[-120.83853024767832,49.868633342306815],[-120.8464559662264,49.867228371627725],[-120.85110832928623,49.866035524025264],[-120.85842779202649,49.8618315900211],[-120.86418348062745,49.85565135778008],[-120.86652484468539,49.85379535089563],[-120.87040336176125,49.85004035841264],[-120.87076943275812,49.843921039050265],[-120.87072143745796,49.84260977448344],[-120.86833286230336,49.83595358115209],[-120.86412252176373,49.83051386677959],[-120.8628713067746,49.826644504546444],[-120.86320431745932,49.822811323013156],[-120.86879886942154,49.81714839743051],[-120.8711308860332,49.815232121492734],[-120.8757682035369,49.81026491709708],[-120.87785868343646,49.80589766007013],[-120.87850120399911,49.803889537557204],[-120.878913452035,49.80256993838353],[-120.8791248349677,49.79719700755026],[-120.87775653300882,49.792753544357026],[-120.87684144281218,49.79122791448258],[-120.87902812918084,49.787484978172415],[-120.88572963097421,49.78369170539509],[-120.8911492234701,49.77865459409305],[-120.8928526077516,49.77348947526115],[-120.89989326522182,49.76649627671958],[-120.9025322814999,49.76566109039895],[-120.91275816074425,49.762277828544654],[-120.9161598722897,49.76058244332816],[-120.91692649277623,49.75994193783825],[-120.91798296921704,49.756563168345615],[-120.91678942333164,49.7517754275848],[-120.91693807776241,49.75068626362955],[-120.91678620909299,49.74566188920105],[-120.916662610886,49.74126040307209],[-120.9166420496404,49.740693633749416],[-120.91763278719652,49.73827992203926],[-120.92365840862377,49.73283560819388],[-120.92784266135568,49.73095432396124],[-120.92990841948445,49.72949674832505],[-120.93153140614615,49.724624777028225],[-120.93169843456808,49.723994038253736],[-120.93308377439338,49.72026288994234],[-120.9381076928956,49.71705592641238],[-120.94425231811941,49.71577742741229],[-120.94747518654404,49.71465333433627],[-120.95287713675008,49.71241512324143],[-120.95662874589769,49.70774231830427],[-120.95774963818437,49.70121182460761],[-120.95822179492738,49.69931756883573],[-120.96365593751588,49.69524597495102],[-120.96959966112533,49.6932315807559],[-120.97198725360026,49.690456435630274],[-120.97309405070446,49.68643916727129],[-120.97254449402946,49.68587783704203],[-120.96716594833993,49.682749418312795],[-120.96314208922655,49.68056876947719],[-120.96044769025661,49.67905594288858],[-120.95644712272217,49.67767975523308],[-120.95645946111222,49.67516673932587],[-120.95713556636717,49.66812842446568],[-120.95812296798603,49.6628037176348],[-120.95798773825761,49.658347291940636],[-120.95787164073262,49.654348800062266],[-120.95984117044765,49.652209919971355],[-120.96461739823269,49.64408814079844],[-120.96720521886687,49.641997483574606],[-120.97086554724298,49.637838348533464],[-120.97565162006907,49.63314610440043],[-120.9806705525546,49.629995177895374],[-120.98056235334712,49.626795642633944],[-120.98061472997185,49.62542735832646],[-120.98213976709505,49.62060617968673],[-120.9840360401252,49.616065013650676],[-120.98578925217447,49.612958948834304],[-120.98923530550687,49.60462302344509],[-120.99402750551775,49.594731948428034],[-120.99698935183368,49.59349597508908],[-121.00855234916469,49.589114020381345],[-121.01706866235435,49.58597371769787],[-121.02332202493561,49.58337557861188],[-121.03026543497178,49.58002609326568],[-121.03298898911063,49.577128869287094],[-121.03491810304604,49.57144898729194],[-121.03445586659979,49.56533530788638],[-121.03526350894366,49.56298443122319],[-121.03849215747496,49.55384788973891],[-121.04172605044968,49.5504351974617],[-121.04653248649416,49.546428005514336],[-121.049052565124,49.543077207659906],[-121.04933854319324,49.540675059737644],[-121.04691091360677,49.53647640492935],[-121.04341273995534,49.53104084202562],[-121.04282953824654,49.52938720244584],[-121.04992811493861,49.5259200133847],[-121.05868497403287,49.52517148934149],[-121.06287267885915,49.524316087307916],[-121.07047543261179,49.520381622135844],[-121.07595052662165,49.51601863257202],[-121.07720491375231,49.51114141014743],[-121.07701888688614,49.50537298494325],[-121.07626628022409,49.50115420634152],[-121.07531047756902,49.4987090274193],[-121.0708946398546,49.494997487340285],[-121.06640127768509,49.491629137706276],[-121.06415281658185,49.49028666152302],[-121.0634131430796,49.488930013931416],[-121.06157700063332,49.48632191232089],[-121.06016976546738,49.483712744588374],[-121.05714261337938,49.47958011148062],[-121.05352781919466,49.476033818686865],[-121.05551985805373,49.475375333370486],[-121.06748875893382,49.473841285963296],[-121.0724704699186,49.47314160391747],[-121.07796704689962,49.47214887529383],[-121.08628728266564,49.46878013666306],[-121.08260046551523,49.46602691651898],[-121.08061099589474,49.46433682284394],[-121.08149256570967,49.46164212941789],[-121.08305815792625,49.45836265520301],[-121.0846675641615,49.454280746918904],[-121.0869279142646,49.44784532489817],[-121.08717386017275,49.44475671125216],[-121.08836481250543,49.4381094642819],[-121.0893643152362,49.43403750864246],[-121.08930047494935,49.432041337964456],[-121.08880232127024,49.430103801937186],[-121.08850271914947,49.426559953440496],[-121.08865248553957,49.42307537507329],[-121.08957329990291,49.418831222934685],[-121.0910955381556,49.416979147808476],[-121.09630791643318,49.41313505551956],[-121.09967729234386,49.411432269805594],[-121.100893690462,49.40855347565003],[-121.10030456823118,49.40656052070943],[-121.0966642534119,49.402498211438875],[-121.0961360188523,49.39993408564697],[-121.0976206139574,49.39699783145015],[-121.1029860123016,49.39480759860744],[-121.10933995810534,49.39357085906348],[-121.11260923873196,49.3917524004031],[-121.11523405267923,49.389371732873414],[-121.11442079938689,49.385841528827214],[-121.11123617483331,49.38216996625138],[-121.10372953710919,49.37776588504151],[-121.10186211310794,49.376644813468914],[-121.09298605861584,49.37294450217151],[-121.08979079188624,49.37173386447349],[-121.08050942468033,49.36900819467971],[-121.07688603016527,49.3681970939703],[-121.07564549056602,49.3679322513786],[-121.06997265225003,49.36577929217924],[-121.06701403613798,49.36365271300716],[-121.06351250455303,49.36067274679838],[-121.06356936582813,49.35975270602168],[-121.06515894070219,49.35739062719673],[-121.0693572073759,49.35486996630238],[-121.07200839333856,49.35289084489544],[-121.07016518892202,49.350006689592135],[-121.07041546277154,49.34959865357726],[-121.07363884222465,49.343667790678104],[-121.07808585317663,49.33788617980323],[-121.08314969162491,49.33484772678355],[-121.08082627927269,49.33064817069486],[-121.0773280976566,49.327781624553374],[-121.07189250624197,49.32745695027486],[-121.06606473331088,49.328743205366884],[-121.06625529474503,49.32902367017121],[-121.0573203425294,49.32869248062506],[-121.05165583103965,49.32677113940921],[-121.04285905366287,49.3223243464787],[-121.03893587018617,49.319978992057685],[-121.03466574230694,49.31534947656013],[-121.03012982499347,49.309867631447844],[-121.02563362837144,49.305724220142],[-121.02676896570878,49.30448280327939],[-121.02687569598282,49.30435465392038],[-121.02696541550358,49.30422459269254],[-121.02703641133762,49.30409254067904],[-121.02708351456113,49.30395853933583],[-121.02710678516063,49.30382203210766],[-121.02711304565207,49.30368361312949],[-121.02710575217002,49.30354316202463],[-121.02708484505358,49.30340123537476],[-121.02705543267682,49.30325835731511],[-121.02701754694142,49.303114231590975],[-121.02697109535788,49.302969720003055],[-121.02692293104542,49.302825129403644],[-121.02686959810096,49.30268058016146],[-121.02681617484399,49.30253687471805],[-121.02676269213053,49.302393725803576],[-121.02671251520066,49.30225185690897],[-121.02666390016968,49.302111476345864],[-121.02660134142211,49.301972699332744],[-121.02652832386434,49.3018351361703],[-121.02645007716183,49.30169817988411],[-121.02637005815942,49.301561701130844],[-121.0262934954553,49.30142510193753],[-121.02622384483678,49.301288261960806],[-121.02616976263879,49.30115072324084],[-121.02613473441886,49.30101208715921],[-121.02612053178247,49.30087188509678],[-121.02613055245385,49.30073053534606],[-121.02615785285522,49.30058857484516],[-121.02619726414298,49.30044604495896],[-121.02624361753605,49.30030298705395],[-121.02629342637616,49.300159808745356],[-121.02633977918651,49.30001675073758],[-121.02634453099152,49.300004564989976],[-121.02639244499659,49.29986299532085],[-121.02652382254836,49.299585428212545],[-121.0265935817883,49.2994488079844],[-121.0266633097606,49.299312474954846],[-121.0267330382872,49.299176132875154],[-121.02680450917362,49.29903959139034],[-121.02687423687482,49.29890324916353],[-121.0269439641661,49.298766906863825],[-121.02701372093722,49.29863028619636],[-121.02708344644387,49.298493952727895],[-121.02715320239358,49.29835733191427],[-121.02722295793232,49.29822071102764],[-121.02729100021615,49.298084011113076],[-121.02735904209885,49.297947311127395],[-121.02742540159737,49.29781024484561],[-121.02749347256868,49.297673266423836],[-121.02755814737544,49.29753585173414],[-121.0276245355822,49.29739850694979],[-121.0276892096175,49.29726109212485],[-121.02775391411805,49.297123389959985],[-121.02782030115469,49.29698604497013],[-121.0278850039183,49.29684835164711],[-121.02794799446737,49.2967105703348],[-121.02801101452474,49.29657251066138],[-121.02807403420691,49.296434450922504],[-121.02813537061618,49.29629603388045],[-121.02819496400382,49.29615781613014],[-121.02825290499231,49.29601895380866],[-121.0283091319057,49.29588002146532],[-121.028365389326,49.295740801790146],[-121.02841822090019,49.295601424181825],[-121.0284710820359,49.29546176822203],[-121.02852228986663,49.29532147667805],[-121.02857184536902,49.29518054057474],[-121.02861968783647,49.29503952548464],[-121.02866587800322,49.29489786583902],[-121.02870864147715,49.29475605725531],[-121.02874798021676,49.29461408178269],[-121.02878389232558,49.29447195737952],[-121.02881463717807,49.294329865460476],[-121.02884195547306,49.294187624618104],[-121.02886239293477,49.29404534631405],[-121.0288779331268,49.293900586852146],[-121.02888878714823,49.2937513801967],[-121.02888945463896,49.29360086503447],[-121.02887789343022,49.29345203268411],[-121.0288469195097,49.293307673579484],[-121.02879611382694,49.293171692850265],[-121.02871835314856,49.29304631533026],[-121.02860366336206,49.29292825745137],[-121.02845378722407,49.2928173197393],[-121.0282787608104,49.292716211049246],[-121.02808852750617,49.29262850210418],[-121.02789315198496,49.292556632543175],[-121.02769897470598,49.29250566715325],[-121.0274879021698,49.29248382069359],[-121.02726603881942,49.292482325667386],[-121.02703807255303,49.29248957961907],[-121.02681040797891,49.29249402318465],[-121.02658944703988,49.29248412398565],[-121.02635325471013,49.29247181688698],[-121.02611231511818,49.2924556365317],[-121.02589944598873,49.29241847529026],[-121.0257474642409,49.29234323474897],[-121.02563305472911,49.292222650963126],[-121.02554750006757,49.29207378819996],[-121.02550422324666,49.29191588657203],[-121.0255182409284,49.29176936938484],[-121.02559345606137,49.29164596455803],[-121.02569240514065,49.29152591870367],[-121.02581019321511,49.29140673253188],[-121.02594324261423,49.2912896664474],[-121.02608806925012,49.291175110063456],[-121.02624455060813,49.29106420345706],[-121.026407491055,49.290957248311166],[-121.02657331310634,49.29085550508618],[-121.02674366959887,49.29075960933156],[-121.02691333224024,49.29067016801499],[-121.02708768077153,49.290585164701966],[-121.02726677401924,49.290504051752215],[-121.02745067273136,49.290426263569614],[-121.02763772605361,49.2903511466288],[-121.02782796195488,49.2902784405705],[-121.028021501891,49.29020701422958],[-121.02821489088142,49.29013698800503],[-121.02840996196184,49.29006731866385],[-121.02860500161785,49.2899979362394],[-121.02879841969298,49.289927621671985],[-121.02899024412805,49.28985611462597],[-121.02918050575042,49.289783127832855],[-121.02936914577282,49.289709208921394],[-121.02955940619647,49.28963622144476],[-121.029749546551,49.28956434682256],[-121.02994139788409,49.289492559749185],[-121.03013321875817,49.28942105062685],[-121.03032338720567,49.28934889667177],[-121.03051364561338,49.289275898497735],[-121.03070228048544,49.28920198617938],[-121.03088938332641,49.28912630687069],[-121.03107495315916,49.28904886955636],[-121.03125565547973,49.28896867258001],[-121.03143491626695,49.28888586476835],[-121.03161111255758,49.288799532339446],[-121.03178253182313,49.28870959642219],[-121.0319507960293,49.28861697979841],[-121.03211587531315,49.28852196078225],[-121.03227942149798,49.28842518384271],[-121.03244134502285,49.28832748388787],[-121.03260329867817,49.28822949639786],[-121.03276525068642,49.28813151762796],[-121.0329271423155,49.28803409520262],[-121.03308744113436,49.28793547147487],[-121.0332445550099,49.28783444540806],[-121.03339689180737,49.287729815973584],[-121.03353937476874,49.28762078103913],[-121.03367218297929,49.28750567083361],[-121.03379360592427,49.28738438858163],[-121.03391181317373,49.287260991380855],[-121.03403326469214,49.28713943051328],[-121.03416099359893,49.287023517494696],[-121.03430491360379,49.286917091929304],[-121.03446499484602,49.28682043205888],[-121.03463988677557,49.286730083443565],[-121.03482426921252,49.28664751522533],[-121.0350162815589,49.28657403105764],[-121.03521412100027,49.286510395955936],[-121.03541769621924,49.28645746275287],[-121.0356224426054,49.2864096533374],[-121.03583190439086,49.28636601213634],[-121.03604271738709,49.28632581590568],[-121.03625500286769,49.28628793347305],[-121.03646881858695,49.286251826179935],[-121.03668422709971,49.28621691047975],[-121.03689792286738,49.28618191554426],[-121.03711339037501,49.28614644237914],[-121.03732555295693,49.286109688998856],[-121.03753795663738,49.28607068184354],[-121.0377486763994,49.28603132615233],[-121.0379610784035,49.28599232713794],[-121.03817348101227,49.28595331872627],[-121.03838416988859,49.28591424009158],[-121.03859657082239,49.28587523982092],[-121.0388073195711,49.285835594772124],[-121.03901978036981,49.28579602808025],[-121.03923061782187,49.28575554729046],[-121.03944148567444,49.285714778805506],[-121.03965235315643,49.285674009906344],[-121.03986318950194,49.285633527874545],[-121.0400757686485,49.28559283690091],[-121.04028507258589,49.28555058750862],[-121.04049455590658,49.28550665890639],[-121.04070265806666,49.28545955389602],[-121.04090769450407,49.285408933395146],[-121.04111152848567,49.28535346668156],[-121.04131082646967,49.285292143424265],[-121.04150717873148,49.28522618252833],[-121.04169890454894,49.2851552090207],[-121.04188594333621,49.285079788511105],[-121.04206676142111,49.28499817247226],[-121.04224304327923,49.2849107000021],[-121.04241298520205,49.284818145273505],[-121.04257319316707,49.28472006360336],[-121.04272537859086,49.284616542722006],[-121.04286957125922,49.28450730435555],[-121.04300565299711,49.284393452776406],[-121.04313350180568,49.284276128166695],[-121.0432415827726,49.28415056016054],[-121.04333491200472,49.28401811609614],[-121.04343142522193,49.28388807372536],[-121.04355086067221,49.283768945545454],[-121.04369640181889,49.28366314225748],[-121.04385326774748,49.28356406620786],[-121.04402004678333,49.283468828667736],[-121.04419004039404,49.28337570535305],[-121.0443583805477,49.283281946459624],[-121.04452353549436,49.28318578551967],[-121.04467895560862,49.28308410680575],[-121.04482301982266,49.282975978804494],[-121.04496392860982,49.28286517052802],[-121.0451096730568,49.28275740806938],[-121.0452668632568,49.2826552415275],[-121.04542898032506,49.28255526787286],[-121.04558607887272,49.282453944733014],[-121.04573007852147,49.28234638101045],[-121.0458527481628,49.28222909513384],[-121.04595736266458,49.2821036450049],[-121.04604878723552,49.281972807323676],[-121.04613366366966,49.28183883592542],[-121.04621523412592,49.28170359389101],[-121.04629500159041,49.28156911701127],[-121.04637639156628,49.28143555362174],[-121.04645615906291,49.28130106759098],[-121.04653250063289,49.28116643314815],[-121.04660890224184,49.28103123303113],[-121.04668359116317,49.280895954183],[-121.04675996212656,49.280761032211714],[-121.04683804487838,49.28062618880614],[-121.04691774916787,49.2804922678639],[-121.04700081696699,49.28035906971852],[-121.04708553699226,49.28022650674184],[-121.04717365120358,49.280094379264156],[-121.04726008246057,49.2799618947395],[-121.04734483077567,49.279829053171866],[-121.04742621467715,49.27969548864097],[-121.04750089906534,49.279560208955296],[-121.04756548936581,49.27942277854781],[-121.0476283978127,49.279284982152376],[-121.04769301806546,49.27914726432526],[-121.04776436666207,49.27901098317421],[-121.04784070066816,49.278876347341885],[-121.04792211122283,49.27874250393661],[-121.04800520371694,49.2786090173808],[-121.04808994742775,49.278476174957554],[-121.04817469065334,49.278343332441146],[-121.04825459732794,49.27820744393165],[-121.04835426904448,49.27807979770324],[-121.04848863608402,49.27796558118138],[-121.04863817176852,49.27785431647489],[-121.04880023409368,49.27775462432424],[-121.0489788800398,49.27767684046553],[-121.04918207170006,49.27762695998121],[-121.04940668349033,49.27760203344999],[-121.0496309387506,49.27759654105566],[-121.04984402489845,49.27761506566962],[-121.05005555598703,49.277664246642544],[-121.05025540558906,49.27772614394022],[-121.05044561688835,49.27779773889339],[-121.05062979168481,49.277877527842065],[-121.05081390860629,49.277957864109446],[-121.05099451076038,49.278038895775936],[-121.05117490446412,49.27812188427864],[-121.05135737060951,49.27820158439119],[-121.05154701494172,49.27827851911071],[-121.05174254629901,49.27834866859996],[-121.05194852292873,49.27838546544287],[-121.05216845790754,49.27838823178028],[-121.05239178403272,49.27837535618707],[-121.05261006272713,49.27836140953322],[-121.05282900092587,49.2783412857423],[-121.05304649617972,49.27831856020798],[-121.05326363171274,49.27829920089497],[-121.05348256837584,49.278279084755034],[-121.05370354772359,49.27825594938048],[-121.0539235633288,49.27822572338216],[-121.05409069668744,49.278142892493605],[-121.05424163165068,49.278034508633844],[-121.05437168628707,49.277912193643274],[-121.05446304916057,49.2777816263255],[-121.05452566557958,49.277646348328325],[-121.05457323090455,49.27750700585423],[-121.05461076375076,49.277364938760904],[-121.05464330951641,49.27722123551819],[-121.0546724902707,49.27707681856504],[-121.05470503564311,49.27693311524125],[-121.05474430847717,49.27679085716756],[-121.05477865561174,49.276646388369045],[-121.05480978726507,49.27649980532588],[-121.05484257139305,49.276353857385566],[-121.05488355635693,49.2762116686799],[-121.05494100252983,49.27607644185101],[-121.05502644582764,49.27595292811636],[-121.05520777443863,49.27586595614085],[-121.05561063509661,49.27583113893814],[-121.05563781838565,49.27583436121355],[-121.05566503138178,49.27583730516977],[-121.0556922750427,49.27583996182914],[-121.05571951870677,49.275842618481526],[-121.0557485041481,49.27584507532123],[-121.05577580722372,49.27584717533498],[-121.0558030805993,49.275849553654005],[-121.05583209575173,49.2758517321589],[-121.05585939979319,49.275853823173634],[-121.05588670287896,49.27585592315927],[-121.05591571803932,49.27585810164172],[-121.05594299142847,49.27586047992538],[-121.05597026482046,49.27586285820214],[-121.05599753821522,49.27586523647209],[-121.0560264939842,49.275867971549346],[-121.0560537070247,49.27587091540754],[-121.05608089132589,49.27587412859338],[-121.05610804497206,49.27587762906259],[-121.05613345589038,49.27588133831476],[-121.05616055014396,49.27588539539539],[-121.05618590167023,49.275889661260024],[-121.05621287617487,49.27589484055473],[-121.05623813765325,49.275899950321964],[-121.05626331003783,49.275905895020365],[-121.05628845177118,49.27591212700302],[-121.05631353411228,49.275918915604585],[-121.05633681528735,49.27592646064046],[-121.05636000545624,49.27593485856403],[-121.05638310653622,49.27594409141974],[-121.05640440549404,49.275954089689456],[-121.05642735618217,49.275964732053076],[-121.05644853540608,49.27597585254118],[-121.05646794316515,49.27598745115483],[-121.05648903235564,49.275999415549734],[-121.05651009185864,49.27601165825266],[-121.056529379897,49.27602437908202],[-121.05655037906764,49.276037187379266],[-121.05656963647161,49.27605019549125],[-121.05658886418841,49.27606348191191],[-121.05660983465337,49.27607655953138],[-121.05662909209032,49.276089567631985],[-121.056650091318,49.276102375908565],[-121.05666937943245,49.27611509671129],[-121.05669040933817,49.27612761768931],[-121.05671149864973,49.27613958203816],[-121.0567326176693,49.27615126807027],[-121.05675376735451,49.27616266680793],[-121.0567767191839,49.276173300116014],[-121.05679798767699,49.27618358559495],[-121.05682093952687,49.276194218893394],[-121.05684392108374,49.276204573874466],[-121.05686518960609,49.276214859339625],[-121.05688820087931,49.27622493599845],[-121.05691118246641,49.27623529096467],[-121.05693419375976,49.276245367613434],[-121.05695720506311,49.2762554442571],[-121.05698024607219,49.276265242583264],[-121.05700325739538,49.27627531921686],[-121.05702632907739,49.27628483024269],[-121.05704937011564,49.27629462855366],[-121.0570724418167,49.27630413956937],[-121.05709725435527,49.276313459730375],[-121.05712032607552,49.27632297073556],[-121.05714345719481,49.27633192511076],[-121.05716830041501,49.27634095796479],[-121.05719143155254,49.27634991232947],[-121.05721630448606,49.27635866685976],[-121.05723946533588,49.276367342901466],[-121.05726436893981,49.2763758101301],[-121.05728930224676,49.27638399904046],[-121.05731252251049,49.27639211844128],[-121.05733748552836,49.27640002902783],[-121.05736244855476,49.27640793960852],[-121.05738744224087,49.27641556289308],[-121.05741246467056,49.2764229168371],[-121.05743748806606,49.27643026179734],[-121.05746254020455,49.27643733741704],[-121.05748759330855,49.27644440405308],[-121.05751264642014,49.2764514706833],[-121.05753947102133,49.27645805916046],[-121.05756455384056,49.276464847465924],[-121.05758969700933,49.27647107016264],[-121.05761652163281,49.27647765862052],[-121.05764169450738,49.27648360299239],[-121.05766857852895,49.2764896348122],[-121.05769375141669,49.27649557917194],[-121.05772066610118,49.27650132368825],[-121.05774758079234,49.276507068197795],[-121.05777281308188,49.27651245591384],[-121.05779978812565,49.276517634807405],[-121.05782505011786,49.276522744198616],[-121.05785202517343,49.27652792307913],[-121.05787902992554,49.27653282364016],[-121.05790435227318,49.27653736740969],[-121.05793135607856,49.27654227693544],[-121.05795839053742,49.276546899164025],[-121.05798713710286,49.27655159985662],[-121.05801420222014,49.27655593478076],[-121.05804300817589,49.27656007883319],[-121.05807016237146,49.27656357880541],[-121.05809908900919,49.2765665916368],[-121.05812639261573,49.276568691053946],[-121.05815375656017,49.27657022486108],[-121.05818120957258,49.27657092372343],[-121.05820875260915,49.276570778662936],[-121.05823473390059,49.276569145609706],[-121.05826083394314,49.276566399299575],[-121.05828705465025,49.276562521776654],[-121.05831168200267,49.2765574525311],[-121.0583381124301,49.27655160885142],[-121.05836469128887,49.27654437360176],[-121.05838961837058,49.27653649427771],[-121.05841637725162,49.276527571183266],[-121.05844148435351,49.27651800401503],[-121.05846496840557,49.27650752343943],[-121.05848854246516,49.27649619894244],[-121.0585104944313,49.27648395206144],[-121.05853250575895,49.27647114855023],[-121.05855115320755,49.27645762250705],[-121.0585681479197,49.27644346137331],[-121.05858174811237,49.27642886500086],[-121.05859540862636,49.276413703023],[-121.0586073876785,49.276398175291355],[-121.05861936576503,49.276382656535866],[-121.05863137352941,49.276366859465845],[-121.05864338224323,49.27635105341626],[-121.05865538999127,49.27633525634278],[-121.05866571628063,49.27631909351682],[-121.05867775465595,49.27630300914942],[-121.05868808093034,49.27628684632051],[-121.05869843688295,49.2762704051773],[-121.05870879282823,49.276253964032726],[-121.05871917845143,49.27623724457382],[-121.05872956406716,49.27622052511346],[-121.05873994967538,49.276203805651754],[-121.05875033623373,49.27618707721078],[-121.05875903942356,49.27617000097458],[-121.05876945565237,49.27615299421786],[-121.05877815882879,49.276135917979275],[-121.05878686295638,49.27611883276167],[-121.05879727820592,49.276101834978874],[-121.05880601200472,49.276084471445856],[-121.05881474579701,49.276067107911636],[-121.05882344894064,49.27605003166719],[-121.0588321827199,49.27603266813071],[-121.05884091649263,49.276015304593045],[-121.05884964930127,49.27599795003208],[-121.0588584127452,49.275980308179015],[-121.0588654344173,49.2759628661809],[-121.05887416816445,49.27594550263873],[-121.05888290190506,49.27592813909544],[-121.05889166532317,49.275910497237824],[-121.05889868601467,49.275893064213584],[-121.05890741973626,49.27587570066688],[-121.05891615345126,49.27585833711906],[-121.05892317508324,49.27584089511395],[-121.05893190782827,49.275823540541765],[-121.05894064152433,49.2758061769906],[-121.05894766313918,49.27578873498259],[-121.0589563661817,49.27577165872018],[-121.05896509985884,49.27575429516572],[-121.05897209177321,49.27573713146792],[-121.05898079479707,49.27572005520223],[-121.05898778670047,49.275702891502604],[-121.05899480732447,49.27568545846652],[-121.0590018289007,49.27566801645185],[-121.05900713840201,49.27565049598144],[-121.05901247758244,49.27563269719706],[-121.05901778707566,49.27561517672517],[-121.05902141418022,49.2755972994848],[-121.05902504128201,49.27557942224381],[-121.05903038044737,49.27556162345662],[-121.0590340075429,49.27554374621434],[-121.05903763463563,49.27552586897146],[-121.05904126172555,49.27550799172798],[-121.0590466008765,49.27549019293806],[-121.05905022796018,49.27547231569335],[-121.05905898448695,49.275438605805185],[-121.05929112696613,49.274552429113186],[-121.0595742021299,49.27367252746272],[-121.0589099835482,49.27283521100765],[-121.05803150938073,49.272410106479875],[-121.05697163847529,49.2720406870083],[-121.05539163493431,49.27119348833614],[-121.05561893908417,49.26996622693765],[-121.05636075249338,49.26933375777639],[-121.05720244304247,49.268409838592234],[-121.0576261711687,49.266775732173656],[-121.05877365900069,49.264919083484656],[-121.06016491741688,49.263711322893066],[-121.06182112248268,49.262566720373336],[-121.06326917714962,49.26218054829969],[-121.06488410515553,49.26214905087893],[-121.06578806786078,49.26192964858336],[-121.06714784727824,49.261483558415186],[-121.06787882311001,49.26114400910145],[-121.06852828230006,49.260632982532904],[-121.0690501901064,49.25980119155249],[-121.0695620491596,49.25896668272533],[-121.07008061524623,49.25813361479471],[-121.07057234829175,49.25729394892148],[-121.07100529853491,49.25644088327928],[-121.07137598694871,49.255574818651354],[-121.0716976595287,49.25470059247331],[-121.07190397877605,49.25352026341915],[-121.07190594805542,49.253501741266035],[-121.07190785719534,49.2534837847429],[-121.07190976633377,49.25346582821921],[-121.07191170506236,49.25344759336882],[-121.07191361419784,49.25342963684415],[-121.07191726419471,49.25341148024545],[-121.07191920291807,49.25339324539354],[-121.0719228233184,49.25337536711977],[-121.07192476299262,49.25335712328848],[-121.07192841297945,49.25333896668747],[-121.07193206296338,49.25332081008587],[-121.07193571294451,49.25330265348357],[-121.07193765261064,49.253284409650014],[-121.07194130258667,49.25326625304655],[-121.07194495255987,49.2532480964425],[-121.07194860253023,49.25322993983778],[-121.07195054218825,49.25321169600196],[-121.07195419215353,49.253193539396094],[-121.07195784211598,49.253175382789536],[-121.07195978081354,49.2531571479303],[-121.07196340117983,49.2531392696489],[-121.07196534082827,49.25312102581033],[-121.07196724992956,49.253103069275774],[-121.0719691886204,49.25308483441439],[-121.07197109771873,49.25306687787882],[-121.07197300681557,49.253048921342604],[-121.07197317506258,49.2530311648804],[-121.07197508415715,49.25301320834325],[-121.07197528199416,49.2529951735537],[-121.07197544928556,49.2529774260683],[-121.07197390627661,49.252959591352315],[-121.07197404493202,49.25294211321402],[-121.07197250097025,49.25292428747527],[-121.07197092837328,49.2529067310842],[-121.0719676435708,49.25288910541879],[-121.07196607097688,49.25287154902667],[-121.07196275658782,49.25285420168666],[-121.07195773095104,49.25283677609386],[-121.07195441752212,49.25281941977442],[-121.07194939189222,49.252801994180345],[-121.0719443662661,49.25278456858562],[-121.07193934064375,49.25276714299013],[-121.07193260473278,49.2527496301632],[-121.07192757911861,49.25273220456638],[-121.07192087185368,49.252714422389516],[-121.07191413595733,49.252696909560015],[-121.07190742870264,49.25267912738147],[-121.07190069186191,49.25266162352837],[-121.07189395598083,49.2526441106962],[-121.07188724874152,49.252626328514985],[-121.07187880067438,49.252608746405805],[-121.07187035356823,49.25259115531734],[-121.07186361675424,49.25257365145969],[-121.07185513911429,49.25255634767379],[-121.07184497983302,49.252538687306384],[-121.07183650220638,49.2525213835181],[-121.07182802458607,49.25250407972872],[-121.071817835735,49.25248669768384],[-121.07180764689156,49.25246931563752],[-121.07179742846411,49.252452211916264],[-121.07178721004418,49.25243510819369],[-121.07177696108543,49.25241829177441],[-121.07176503144666,49.25240110979366],[-121.07175475291159,49.25238457169804],[-121.0717427936978,49.2523676680405],[-121.07173080394611,49.252351051686055],[-121.07171878461095,49.25233471365646],[-121.07170676528429,49.25231837562507],[-121.0716930051438,49.25230223766198],[-121.07168095528775,49.25228618693181],[-121.07166716557347,49.25227032729132],[-121.071653374914,49.25225447662691],[-121.07163952507901,49.25223918261353],[-121.07162570580032,49.252223601293146],[-121.07161011420996,49.252208516322646],[-121.07159623481023,49.25219350062917],[-121.07158061460139,49.25217868500194],[-121.07156499344791,49.25216387835043],[-121.07154931311851,49.25214962834947],[-121.07153363279869,49.25213537834599],[-121.07151624126544,49.252121050080575],[-121.07150053137222,49.25210707839824],[-121.07148311026646,49.25209302845352],[-121.07146739943808,49.25207906574395],[-121.07144994875937,49.2520652941199],[-121.07143249713636,49.25205153147098],[-121.07141678729187,49.252037559774955],[-121.07139933664376,49.2520237881418],[-121.07138188505137,49.25201002548388],[-121.07136440387536,49.25199654114935],[-121.07134695325823,49.25198276950691],[-121.07132947210259,49.251969285166226],[-121.07131199095714,49.25195580082244],[-121.07129451077653,49.251942307497245],[-121.0712753184358,49.25192874488415],[-121.07125780772678,49.251915538857354],[-121.07124032662237,49.25190205450091],[-121.07122110471937,49.25188877020389],[-121.07120359404085,49.25187556416748],[-121.07118437215932,49.25186227986348],[-121.07116686150123,49.251849073820544],[-121.07114763964118,49.251835789509464],[-121.07113009940828,49.251822861786735],[-121.07111087756961,49.25180957746853],[-121.07109162614643,49.251796571473264],[-121.07107237377936,49.251783574452595],[-121.07105483358714,49.251770646716544],[-121.07103558219582,49.25175764071051],[-121.0710163308153,49.25174463470081],[-121.07099707849082,49.25173163766563],[-121.07097782713187,49.25171863164857],[-121.07095854618747,49.25170590395442],[-121.07093929389524,49.25169290690818],[-121.07092001297208,49.251680179206694],[-121.07090073110479,49.25166746047965],[-121.07088145020278,49.25165473277075],[-121.0708621989081,49.25164172673146],[-121.07084120586877,49.251628929723445],[-121.07082192499911,49.25161620200306],[-121.07080261358814,49.25160376158393],[-121.07078333178474,49.251591042834534],[-121.07076233974483,49.2515782368319],[-121.07074305796306,49.25156551807476],[-121.07072374754908,49.25155306866229],[-121.07070446578832,49.251540349897844],[-121.0706834432406,49.251527831183736],[-121.07066416245615,49.25151510343332],[-121.07064485112952,49.251502662984066],[-121.07062385916777,49.25148985695275],[-121.07060454786244,49.25147741649582],[-121.07058352537014,49.251464897761075],[-121.0705642446392,49.251452169991545],[-121.07054493336554,49.251439729523284],[-121.07052391090636,49.251427210776185],[-121.07050463020742,49.251414482995294],[-121.07048360777057,49.25140196423994],[-121.07046429653937,49.25138952375624],[-121.07044498531855,49.25137708326891],[-121.0704239934687,49.25136427719623],[-121.07040468226916,49.251351836701204],[-121.07038365988761,49.25133931792514],[-121.07036437926362,49.25132659011752],[-121.07034506809572,49.25131414961109],[-121.07032404574733,49.25130163082276],[-121.07030473555544,49.2512891813303],[-121.0702837428292,49.25127638420698],[-121.07026443170379,49.2512639436852],[-121.07024515114381,49.25125121585485],[-121.07022412885081,49.2512386970458],[-121.07020484831234,49.25122596920768],[-121.07018553722904,49.25121352867084],[-121.07016454456985,49.251200731522935],[-121.07014526406348,49.25118800367349],[-121.07012595301195,49.25117556312522],[-121.07010667252659,49.25116283526845],[-121.0700856799121,49.25115003810417],[-121.0700663994484,49.25113731023962],[-121.07004711804036,49.25112459134974],[-121.0700278375978,49.25111186347789],[-121.07000855621091,49.251099144580635],[-121.0699892757895,49.25108641670133],[-121.06997002402548,49.25107341947005],[-121.0699507436253,49.25106069158342],[-121.06993149283764,49.25104768536643],[-121.06991221150379,49.251034966450796],[-121.0698816690598,49.25101495684861],[-121.06896769162562,49.25034470427772],[-121.0680777466793,49.24965890542517],[-121.06722230891847,49.24895607353783],[-121.06644495262029,49.24821451257681],[-121.06582704144542,49.247412859603735],[-121.06537409949004,49.246563775727026],[-121.06503522417556,49.24569313488278],[-121.06489823627692,49.24479959261329],[-121.06499708083915,49.24390332650994],[-121.06529502003255,49.24302631894089],[-121.06576650779105,49.24218234855902],[-121.06634000899416,49.241365043267955],[-121.0669400563906,49.24055656501473],[-121.06752018033873,49.23974125271017],[-121.0681002848731,49.2389259273005],[-121.0687002997137,49.238117157937765],[-121.07070983012869,49.236775162018816],[-121.07234208207205,49.236216310237715],[-121.0732510636299,49.2358798032891],[-121.07416112920697,49.23548441509927],[-121.08243471677596,49.232222280060256],[-121.09345559669613,49.22586976692241],[-121.09368280119271,49.22596386036249],[-121.09404471357878,49.22610044839932],[-121.09435345944694,49.2262360299751],[-121.09455517334524,49.22631118682426],[-121.0946786093756,49.22636276719817],[-121.09484647316906,49.22643300749845],[-121.09502539054094,49.22651248426787],[-121.09514759206928,49.22655949678372],[-121.09520307295985,49.22658739342761],[-121.09562471547753,49.226760537422976],[-121.09586187458085,49.226890589873676],[-121.09594167555633,49.22693228748509],[-121.09615052178488,49.22702130787634],[-121.09631668079003,49.227091458968204],[-121.09650323509544,49.22718002304317],[-121.09670103087689,49.2272597967805],[-121.09708503816385,49.22746391692429],[-121.09713709963115,49.2274916658003],[-121.09721174227876,49.22753340721015],[-121.09773664661382,49.22780287011714],[-121.09782718854272,49.22784053495595],[-121.09809299065626,49.22802489883192],[-121.0981482865476,49.228070838395986],[-121.09843635796389,49.228304699062804],[-121.09862283346911,49.22844287641795],[-121.09883192067153,49.22859477625501],[-121.09929300944096,49.22889910150118],[-121.09954890554869,49.22904720192166],[-121.10032539907192,49.22942451419597],[-121.10053179257216,49.22950439131921],[-121.10076308614865,49.22962514240617],[-121.10100564993095,49.22973683319133],[-121.10140251662187,49.229900921393956],[-121.10156448049256,49.22996213921272],[-121.10170243955781,49.2300228245073],[-121.10191694660027,49.230107289922515],[-121.10198149070149,49.230130813041534],[-121.10214498152567,49.23021013423381],[-121.10220857765039,49.23024263605787],[-121.10248250082019,49.23035038095553],[-121.10280638206044,49.23052214265033],[-121.1028525271741,49.23054087707403],[-121.10289990875249,49.23056417866524],[-121.10297798248222,49.23060607141884],[-121.10311062819629,49.23068455701943],[-121.1034615991121,49.230892796697795],[-121.1035451242356,49.23094818098815],[-121.10369722326861,49.231054056476275],[-121.10392739858231,49.231201823761545],[-121.10411627177365,49.23131754389921],[-121.10427866674296,49.23142359765389],[-121.10469324923677,49.23166432460937],[-121.10478757302509,49.231715128174436],[-121.10492266795463,49.231803033053055],[-121.1057364771116,49.23223472044914],[-121.10582830030155,49.23227666711812],[-121.10592775728213,49.23232771177074],[-121.1059704852912,49.232346280398524],[-121.10613351601708,49.232430093682716],[-121.10629952407645,49.232518273210864],[-121.10649796849424,49.23262483298191],[-121.10675751348333,49.23275503547528],[-121.10695392955826,49.23284825801251],[-121.10730108832318,49.23301148011812],[-121.10748226592754,49.23308624535673],[-121.10791125230621,49.23330476872959],[-121.10813636858775,49.23340295508253],[-121.10853826939933,49.23358500620444],[-121.1086654808734,49.23364999296415],[-121.10898835425529,49.233799132761526],[-121.10918867393234,49.23388801698975],[-121.10937528007621,49.23397655789019],[-121.10943765020174,49.234004479198525],[-121.10966746088808,49.23410710631652],[-121.11019052732992,49.234313822358],[-121.11035473152592,49.23437033644393],[-121.11039448498678,49.23438454586422],[-121.11043034383582,49.23440308941117],[-121.11113420778415,49.23463943336923],[-121.1114045882777,49.234715984011075],[-121.11170293165351,49.23478816416549],[-121.11202084359729,49.23491930474909],[-121.11232788088229,49.23502317417429],[-121.11255080165917,49.23512604122491],[-121.11280713815623,49.23523803810301],[-121.11291392497124,49.235284897077555],[-121.11316433740302,49.23538788213633],[-121.11338947488548,49.23548605721828],[-121.113693389107,49.23560331337656],[-121.11394988312907,49.23569755046823],[-121.11434331470697,49.235829853174785],[-121.11452808700554,49.23588701341861],[-121.11471583846105,49.23594853060827],[-121.11482407797503,49.235981632002726],[-121.11504052814381,49.236048112806216],[-121.11527269657618,49.23612855881842],[-121.11559270014315,49.23622369553136],[-121.1158648372393,49.23630003402916],[-121.11616738421294,49.236381413221],[-121.11628981366034,49.23641036576091],[-121.11638991595044,49.236439145053446],[-121.11652245886508,49.23648631959811],[-121.11689844516442,49.23660485714881],[-121.1170601603467,49.2366525052089],[-121.11718509731068,49.23669030336247],[-121.11749478469339,49.23678553480037],[-121.11753799318481,49.236799618255176],[-121.11758757194981,49.236818501260494],[-121.11777049170175,49.23689332632094],[-121.11794872317468,49.236963707388],[-121.1181500189397,49.23704359566061],[-121.11826448426126,49.2370992410621],[-121.11834305546186,49.23713663283425],[-121.11860905858398,49.23727132709892],[-121.11875154170303,49.23735474720569],[-121.11923503284567,49.23762785298981],[-121.11976967791475,49.237888613184],[-121.11981489220113,49.23791631903748],[-121.12022014967205,49.238116237321215],[-121.12043673203995,49.23821428819373],[-121.12064007207748,49.23830750765836],[-121.12091263815279,49.23842896010822],[-121.12113019747424,49.23851775230007],[-121.12133398235589,49.23860676829037],[-121.12161905953849,49.238723706077884],[-121.12174474173922,49.23877084252375],[-121.1218613978032,49.23882208095729],[-121.1222341107445,49.23897202564152],[-121.1224906406999,49.23906624194845],[-121.12285760746518,49.23918913880326],[-121.1228973688756,49.23920334351288],[-121.12294353071762,49.23922206909594],[-121.12314360621164,49.23929738088183],[-121.12384300466015,49.239610115725725],[-121.12397214343538,49.23965711705117],[-121.12424330989084,49.23979202919818],[-121.12448689808772,49.239894964900124],[-121.1248917805812,49.24004973824289],[-121.12495632181293,49.24007351662837],[-121.12500248535005,49.2400922413059],[-121.12511274758143,49.24013895536191],[-121.12537008599953,49.24024194263144],[-121.12560011045034,49.240326777958686],[-121.12570179017375,49.24037338272617],[-121.1257671285249,49.24040593858306],[-121.12592603446721,49.24048050981812],[-121.12604641634663,49.24054544415771],[-121.1261920787343,49.24061518470563],[-121.12646030732097,49.240745446841714],[-121.12688246194482,49.240932280056604],[-121.12706243268948,49.24100273200008],[-121.12721715459008,49.24106808123199],[-121.12750223150074,49.24118529036555],[-121.12762795652777,49.24123213245774],[-121.127744596016,49.241283642686206],[-121.12792362594016,49.24136307207344],[-121.12811171301713,49.2414381111855],[-121.12832758927144,49.24152681109738],[-121.12854980914467,49.24162058779791],[-121.12879436075069,49.24171452559235],[-121.12932732994584,49.24189396242824],[-121.12958577679481,49.241970203604225],[-121.12985502022926,49.24204186200937],[-121.12995983359609,49.24207507158968],[-121.13016429774044,49.2421415457738],[-121.1304492975094,49.24222687870081],[-121.1309479657927,49.242356545500485],[-121.13124682988278,49.242424468636735],[-121.13131406072088,49.24243906316701],[-121.13162667302961,49.242507038068055],[-121.13189435704989,49.242560857188984],[-121.13216596515326,49.24261005344361],[-121.13268575518872,49.24268597750428],[-121.13295921978988,49.242717501194925],[-121.13327731729964,49.242749632795814],[-121.13356718332344,49.242772305852085],[-121.13384380279132,49.242790157802865],[-121.13388796419316,49.24279525563073],[-121.13420355400126,49.242818529350735],[-121.13443087952484,49.2428310502954],[-121.13473369494419,49.24284500375176],[-121.13518503951512,49.24285240994596],[-121.13588646388038,49.2429176278126],[-121.13616181587737,49.24293118544232],[-121.13621674378426,49.24293197789531],[-121.13646292147598,49.242945056809035],[-121.13673877390941,49.24295384513194],[-121.13702710348998,49.242958405465714],[-121.13724894066883,49.242957699815754],[-121.13734850235925,49.24295908965718],[-121.13746473236775,49.24296546269788],[-121.13772415599927,49.24298337657209],[-121.13792277859879,49.24299093210585],[-121.13809125598031,49.24300726717555],[-121.13836147615352,49.243020587576396],[-121.13856476128329,49.24303286302354],[-121.13875604032798,49.24304487607685],[-121.13895932566834,49.243057150780224],[-121.13910989386235,49.24306394349021],[-121.1392737086403,49.24307556462818],[-121.13952112831656,49.24309320324615],[-121.13979648241539,49.243106751598475],[-121.14007233643989,49.24311553139825],[-121.14034692094906,49.24312002217108],[-121.14057737223084,49.24311913882616],[-121.14079065414597,49.24311804904753],[-121.14087646988324,49.24311937503515],[-121.14122047000103,49.24313404873505],[-121.14138756684534,49.24316356882197],[-121.1414415250347,49.24317361597688],[-121.14161405488807,49.24321691283598],[-121.14190656646478,49.24328000825969],[-121.1422063942331,49.243338912955636],[-121.14231950372005,49.243358672149476],[-121.14306879160843,49.24349224459772],[-121.14321996213664,49.24352612288675],[-121.14346583310241,49.24357498678117],[-121.1437931296569,49.24363427692359],[-121.14409906477003,49.24368415029667],[-121.14438534922245,49.24372468418916],[-121.14491734853642,49.24378276644722],[-121.14501470098105,49.24378884896408],[-121.14523844274353,49.243819228099305],[-121.14557573783493,49.24386515136608],[-121.14587668320259,49.24389703161107],[-121.14593627552134,49.24390253988034],[-121.14619821981722,49.243929279231075],[-121.14640573424604,49.243950462833915],[-121.14671134298789,49.24398707046731],[-121.14696644400489,49.24401349967752],[-121.14751015494645,49.24405828458886],[-121.14759036864217,49.24406387257513],[-121.14789473879081,49.24409590129127],[-121.14812626778303,49.2441176035663],[-121.14839897982017,49.24414003196019],[-121.14844998833391,49.24414543198349],[-121.14852675105053,49.244151143542915],[-121.14862021378997,49.24416154927673],[-121.14885127369806,49.244187739524875],[-121.14893615121755,49.24419804714352],[-121.14907452103958,49.24422287857094],[-121.14959438587888,49.24429844265183],[-121.14986787144652,49.244329923418036],[-121.1503296923652,49.24436875244163],[-121.15042392781547,49.24438821269399],[-121.15084296169344,49.24445809579149],[-121.15110571306273,49.244493600935826],[-121.15135300598438,49.24452897817203],[-121.15197845754946,49.24459771616077],[-121.15219332046402,49.24461442865716],[-121.15227863982452,49.24462052244894],[-121.15246167640565,49.2446456718919],[-121.15266182402661,49.24467159076126],[-121.15294610794656,49.244698479301995],[-121.15321617596766,49.24472979762569],[-121.15348030951812,49.24475210668586],[-121.15364913106602,49.244781684675324],[-121.1539808088936,49.244832127610735],[-121.15429457477072,49.24487302235024],[-121.15469070936648,49.24491535564079],[-121.15476576302629,49.24492098581441],[-121.15495233232586,49.24497815297854],[-121.1550780953029,49.24502496281735],[-121.15511911351108,49.245043722015396],[-121.15566467727459,49.24536708042111],[-121.15592097995818,49.24549728660301],[-121.15659261801176,49.245782328346515],[-121.15674129595504,49.24585667047492],[-121.15697033182646,49.24596817408378],[-121.15713319815106,49.2460383629852],[-121.15716345318678,49.24606142786862],[-121.15748591862061,49.24638123504627],[-121.15765969732564,49.24652802570105],[-121.15825159613291,49.24695127719137],[-121.15831260646894,49.24699263835223],[-121.15843241742475,49.24708006056585],[-121.15862008446985,49.24720915112796],[-121.1587374118335,49.247287440110526],[-121.15896613244321,49.24743500043828],[-121.15938754640794,49.24768003000508],[-121.15961737134649,49.24780058366082],[-121.15969381399087,49.247842357401204],[-121.15995017069618,49.24797227517376],[-121.16004204489616,49.24801445304339],[-121.16027109933745,49.24812594928293],[-121.1608752479825,49.24838284137139],[-121.16113361953782,49.24847704129933],[-121.16156458876158,49.2486142358307],[-121.16173528338835,49.248675458389414],[-121.16217685945735,49.248826369576186],[-121.16242649664025,49.24898784185927],[-121.16265539994805,49.249117358942186],[-121.16282748313,49.249214735610444],[-121.16291017417252,49.24927906047923],[-121.16312332396667,49.249444242625756],[-121.16345770856319,49.24968336294779],[-121.16353023682157,49.24972975713708],[-121.16356348067488,49.249757184903814],[-121.16375181516652,49.2499130696282],[-121.16394575224189,49.250064703791516],[-121.16412519644896,49.25020694568977],[-121.16460172836706,49.250533919048955],[-121.1646435590684,49.250561452015],[-121.16510433161409,49.250874743189655],[-121.16514787425501,49.2509023527217],[-121.16523368755995,49.25095328375179],[-121.16553221538588,49.25112426579235],[-121.16577485770533,49.2512541116377],[-121.16604279060465,49.251388762825414],[-121.16629838054781,49.251509887300536],[-121.16657288389409,49.25163102036712],[-121.1668431326987,49.25174350005802],[-121.16721018517187,49.25188400032638],[-121.16737278140064,49.251940618749195],[-121.16752632315487,49.25200163012844],[-121.16779284627336,49.25210040849039],[-121.16803675607119,49.252185208978865],[-121.16845325543265,49.252313262257495],[-121.16872386227922,49.25238938883897],[-121.16888615441648,49.25243245953522],[-121.16947540806866,49.25258573520464],[-121.16967111007611,49.25263820454121],[-121.16993357355878,49.252710011678815],[-121.17026892692947,49.25279185036665],[-121.17049897593692,49.25284472965972],[-121.1707439605023,49.25290278820072],[-121.17088317292419,49.252936368805706],[-121.17111319435077,49.252989525131305],[-121.17135649895498,49.25304721825694],[-121.17199443210852,49.25317898004743],[-121.17219935303807,49.25320901623116],[-121.17237288305219,49.253243293091224],[-121.17264409903335,49.25329716357206],[-121.17301272173307,49.25335680320666],[-121.17326474538177,49.253396849282154],[-121.1735219337078,49.253436837359935],[-121.17377395916505,49.253476873262606],[-121.17444796909516,49.25355949221371],[-121.17499524119985,49.253604291259784],[-121.17504458165912,49.25360931468392],[-121.17534654403275,49.25363214209492],[-121.17571717042895,49.253656057547815],[-121.17645266921663,49.25367657311476],[-121.1765887496783,49.25367421057944],[-121.17666942167395,49.2536755656378],[-121.17690241327375,49.253683737098896],[-121.17712339579494,49.25369165031889],[-121.17733797069289,49.2536950455252],[-121.17788244800234,49.253717152228056],[-121.17837509592981,49.25372510198721],[-121.17866443130625,49.25372056283461],[-121.1789297174544,49.25371580414698],[-121.17956672328845,49.25370792391805],[-121.17981470975917,49.25372071089552],[-121.1799922938848,49.25373259503771],[-121.18027976098466,49.25374601894186],[-121.18054364769877,49.253754716117705],[-121.18083033713904,49.253759082816565],[-121.18090242313819,49.25376033043654],[-121.18112760765234,49.253777444243745],[-121.18135671090828,49.25378994265302],[-121.1814712625825,49.25379619167528],[-121.18159906828913,49.25380726393953],[-121.18172858552606,49.25381841256403],[-121.18232287616874,49.2538906428289],[-121.18250858128968,49.253907116594426],[-121.1826462856667,49.254120753042386],[-121.18291248492648,49.25447122425452],[-121.18294465577361,49.25452566000189],[-121.18312390104147,49.254802882186965],[-121.18324101126242,49.25496655025801],[-121.18334841644334,49.25510779143722],[-121.18347925028826,49.25527178372566],[-121.18381742686203,49.255641245508464],[-121.18395025425679,49.25576953111469],[-121.18408435732731,49.25590209527676],[-121.18411792991736,49.25594306174317],[-121.18426236490852,49.25612514283971],[-121.18474962766638,49.256632064321046],[-121.18494820470451,49.25680613470596],[-121.18511868607506,49.25695272590019],[-121.18550819382773,49.25729177264869],[-121.18559811863356,49.257369652050755],[-121.18579763556622,49.257534732499394],[-121.18589614925216,49.257612706523766],[-121.18609659992872,49.25776881613853],[-121.18638806617095,49.2579757809947],[-121.18641616563085,49.25800325042224],[-121.1864460056642,49.258030517922506],[-121.18679196868027,49.25834196783833],[-121.1870026009917,49.258516003320274],[-121.1870494349052,49.258561782397656],[-121.18734343730286,49.25882721297825],[-121.18749112094997,49.2589285252843],[-121.187557155123,49.25898813323401],[-121.18759166531767,49.259020119231714],[-121.18776465331021,49.25917584676735],[-121.18801665054306,49.259382171624324],[-121.18809410771566,49.25946427279419],[-121.18825415610131,49.2596287221179],[-121.18839764953836,49.25977043943087],[-121.18858424283985,49.25994424581837],[-121.18864215848386,49.25999925975956],[-121.18903252609502,49.26034706946477],[-121.18910653339859,49.260429304332135],[-121.18913854736616,49.26046879180888],[-121.19320027299709,49.25849655947991],[-121.1935443732081,49.25832895324734],[-121.19803491728864,49.2561473369003],[-121.19762639583872,49.25575871591044],[-121.1975433290723,49.25568087302325],[-121.1974905429536,49.25562609228328],[-121.19736670151359,49.255493714965716],[-121.19712400523272,49.255247232536504],[-121.19696379031237,49.25510083918661],[-121.19668024982204,49.254866914454],[-121.19659921357594,49.25480269228436],[-121.19656174249658,49.25476606674312],[-121.19653659680264,49.2547432420422],[-121.1964641474434,49.2546791227837],[-121.19640277820567,49.25462422941843],[-121.19632313763067,49.25454654699596],[-121.19604912166534,49.254303735134755],[-121.19589502448187,49.254197917371734],[-121.19570920683887,49.25403318671502],[-121.19563928185694,49.25397791141144],[-121.19541599662512,49.25377655426569],[-121.19527156957645,49.25364382433369],[-121.19510106923111,49.253497239461545],[-121.19489982509747,49.253332098897324],[-121.19445391605058,49.253006068602964],[-121.19441209432864,49.25297826893452],[-121.19431699908712,49.25290045475979],[-121.19396197365644,49.25259342181659],[-121.19390060920318,49.252538535834894],[-121.19346558760525,49.2520413098633],[-121.19333271479218,49.25191332258171],[-121.19319859776853,49.25178076013014],[-121.1930395978977,49.25153997375488],[-121.19290889165565,49.25135795709938],[-121.19286392242934,49.25129421238997],[-121.19272039989178,49.251103162123016],[-121.19268102997636,49.25103516563031],[-121.1925730987283,49.25084908545067],[-121.19247705465494,49.25068101783117],[-121.19191010455548,49.2500470943339],[-121.19174680486896,49.24986446027086],[-121.19143735055229,49.24949968545575],[-121.19127717339487,49.24935328239257],[-121.19089174186762,49.24904148696119],[-121.19046341573815,49.24872891206861],[-121.1902163244133,49.248558610575955],[-121.19001481605278,49.24842952090358],[-121.18932182753909,49.24804987404278],[-121.18907898379862,49.24793811562555],[-121.18902466733859,49.24791482528584],[-121.18875531895496,49.24779342112439],[-121.18803912988513,49.247521539947634],[-121.18743988789748,49.24733212299318],[-121.18706739918562,49.24722725318027],[-121.18680960779089,49.24716020608197],[-121.18664731839293,49.24711715301234],[-121.18636035064405,49.24704964051862],[-121.18565032669677,49.24691728369451],[-121.18536401549434,49.246876581110214],[-121.1851500627325,49.24685095537049],[-121.18503132660253,49.246835501465185],[-121.18485516645373,49.246810156479306],[-121.18420777033658,49.24673696052146],[-121.18399462622652,49.246720109935275],[-121.18332707698056,49.24664234535339],[-121.18310363746475,49.24662531244048],[-121.18283947904929,49.246603075946496],[-121.18241101640618,49.24657377312125],[-121.18219740808006,49.246561399663285],[-121.1819820588054,49.246549236611955],[-121.18177532443926,49.24653688999326],[-121.18147247087408,49.24652306861498],[-121.18122234361043,49.246514707421596],[-121.18094086139097,49.24651029293277],[-121.18087392024171,49.246509274903225],[-121.1806195939048,49.24649169444533],[-121.18045575675526,49.24648013613003],[-121.18018037083402,49.246466691590726],[-121.17965342914013,49.24645862882936],[-121.17936074659858,49.24646273024516],[-121.17871180387472,49.24647063013915],[-121.17866545598102,49.24646996376746],[-121.17839849907587,49.24647465427184],[-121.1779497575995,49.24645852613756],[-121.17772022445183,49.246450510000095],[-121.17750226155626,49.24644695337801],[-121.17726930616305,49.2464387831222],[-121.17704835813404,49.24643087011398],[-121.17671881780984,49.24642570093948],[-121.17655874310563,49.24642755703789],[-121.17633872948201,49.24641066330344],[-121.17615305653172,49.2463941787365],[-121.17609047230604,49.246384331671585],[-121.17576218175593,49.246334110020825],[-121.17571975254721,49.246328827607186],[-121.17563188011071,49.24631418557168],[-121.17551408291011,49.24628974191654],[-121.1754566624049,49.2462798369793],[-121.17514131495737,49.246220892091884],[-121.17493520800593,49.246186016566746],[-121.17479259147565,49.246152278620116],[-121.17456431088006,49.24609920621117],[-121.17431932752599,49.24604144307906],[-121.17418013329062,49.246007866555146],[-121.17405079781365,49.24597867359236],[-121.1739039538461,49.24593601263582],[-121.17380161788489,49.24591169113353],[-121.1735421128134,49.24584481393151],[-121.17305311670985,49.24572001583247],[-121.17296590219811,49.24568255949433],[-121.17269937499526,49.2455840802819],[-121.17241774703551,49.24539949364776],[-121.17232737010673,49.24532637881827],[-121.17221830083012,49.24523466379764],[-121.17191357768026,49.24499125136108],[-121.17169948196296,49.244835064713754],[-121.17146700399431,49.244673822906385],[-121.17142346250165,49.244646224642416],[-121.17134123549685,49.24457741621832],[-121.17118738617239,49.24445352644444],[-121.17097423060233,49.244288358975425],[-121.17014024922243,49.243762429772616],[-121.16998689100839,49.24368338614408],[-121.16992027369025,49.24364629090233],[-121.16968560005392,49.24348973625178],[-121.16952428684043,49.24338806192917],[-121.16911392823224,49.243152317218005],[-121.16906009517157,49.24312452703618],[-121.16870110440942,49.24295676688299],[-121.16865022609171,49.24293361955397],[-121.16861433741958,49.242915095601916],[-121.1673262554686,49.24240880595846],[-121.16726635442801,49.24238977285371],[-121.16703232465142,49.2423096411099],[-121.16689206476761,49.24225345338602],[-121.16654072237135,49.24214437758856],[-121.16651046523037,49.24212131519719],[-121.16636972485038,49.24202027864244],[-121.16629531911124,49.24194251552372],[-121.16608345106924,49.241732288011235],[-121.16588420441515,49.241549410281294],[-121.16516905780668,49.24108824443844],[-121.16507000094444,49.240983158253776],[-121.16492758520894,49.24088176450976],[-121.16430325123969,49.240489511740996],[-121.16406064118374,49.24035992984728],[-121.16345285044456,49.240089362167716],[-121.16270343460288,49.23972644117504],[-121.16256785306531,49.23967495869922],[-121.16237239507643,49.2395548328266],[-121.16175432244096,49.23923472573771],[-121.16153935901379,49.23913683479694],[-121.1613359332849,49.239043692535816],[-121.16090507474351,49.23885687874926],[-121.16066047326005,49.238763013325375],[-121.16055269316921,49.2387251811022],[-121.16029434799239,49.238631256747794],[-121.16019344011231,49.23859346219427],[-121.1597057918817,49.2384238306961],[-121.1594396693115,49.23833857603872],[-121.15912814570137,49.23824366671014],[-121.15867528440386,49.238119572285896],[-121.15839012284808,49.23805207036469],[-121.15798454775876,49.237968997947995],[-121.15771122955967,49.23791978045788],[-121.1571931618904,49.23784406227254],[-121.15698271798774,49.237818246815245],[-121.15673156497468,49.23778722688822],[-121.15633549025581,49.23774489165218],[-121.15628277702048,49.23773941838659],[-121.15618808363043,49.23772445266153],[-121.15613409950615,49.23771469115267],[-121.15583335236842,49.2376648038636],[-121.15505022965924,49.23757602938442],[-121.15487958703157,49.23756412434099],[-121.15476085564265,49.23754891527261],[-121.15452469295991,49.23752250657887],[-121.15431082941423,49.23749654098727],[-121.15404938684881,49.23746532248789],[-121.15372098713814,49.23743335580279],[-121.15349418116803,49.237416107437475],[-121.15339090615511,49.23740103279874],[-121.15329842448776,49.23738136456108],[-121.1528794216685,49.23731176860304],[-121.15259316933484,49.23727125684955],[-121.15246759526214,49.23725574632766],[-121.15214016688574,49.23721450829765],[-121.151678415593,49.23717568660052],[-121.15154690859559,49.2371511662154],[-121.1512881195231,49.237111038818526],[-121.15086553342098,49.23705931637867],[-121.15066666090408,49.23703796047325],[-121.1504682280424,49.23701240194662],[-121.15002287561626,49.236964721372146],[-121.14974628463278,49.23694691073535],[-121.14961339960854,49.236935578385804],[-121.14944024926515,49.23691480986861],[-121.14910548310694,49.23687803142323],[-121.14872595157404,49.236858406741895],[-121.1486020916377,49.236842959769625],[-121.14829649835224,49.23680664442711],[-121.14804146622734,49.23677993073905],[-121.14790731195292,49.23676430801298],[-121.147609363181,49.23673707677218],[-121.14750733350586,49.23672655413925],[-121.1474023511876,49.23671139669677],[-121.14722796077959,49.236686066967266],[-121.14689883029367,49.23664473593648],[-121.14651947042006,49.236607068122666],[-121.14638672783265,49.236577965803136],[-121.14614088989549,49.2365291170241],[-121.14532445079529,49.23638124797661],[-121.1452268121966,49.236361628850304],[-121.14508598733372,49.236327649887656],[-121.14485731893716,49.236279003425956],[-121.14457124860316,49.23622044393553],[-121.14433523899203,49.23617625586837],[-121.14407864152948,49.236131707640595],[-121.14383578982478,49.23608721003193],[-121.14327877064261,49.23600628401586],[-121.14299159426419,49.23597472583759],[-121.14273435865799,49.23595269933857],[-121.1424462424087,49.23593011882874],[-121.142152522953,49.235911804663026],[-121.14149376932804,49.235883225645],[-121.14126429476674,49.23587513184632],[-121.14094857762092,49.23586991390554],[-121.14071816231542,49.23587079805295],[-121.14050320293909,49.23587181053275],[-121.14030511002787,49.23585949176351],[-121.14005769941687,49.23584213310159],[-121.13988485656343,49.23583489504185],[-121.13967177860756,49.235817956646606],[-121.13942218808317,49.23580499991537],[-121.1392287573522,49.23579740027008],[-121.13906372719218,49.23578122117825],[-121.13881195566582,49.23577267539071],[-121.13865456822117,49.2357655734031],[-121.13857782057867,49.2357598547491],[-121.1384964114248,49.23574941489881],[-121.13820266548677,49.23573136832784],[-121.13787414690391,49.2357171013755],[-121.1374228712437,49.23570970634809],[-121.13718903520943,49.235710428526765],[-121.13702993749608,49.23570324694875],[-121.1366591469492,49.23566593052718],[-121.13637103543351,49.23564333378563],[-121.13611162318497,49.235625703789445],[-121.13582259953628,49.23561180630006],[-121.1353078231926,49.23560350190109],[-121.13514232409895,49.23559180633796],[-121.13487604052374,49.23557414271065],[-121.13466767687623,49.23551229015152],[-121.13427106618573,49.235393452811934],[-121.13414098762053,49.23535543358436],[-121.13410122606605,49.23534123293501],[-121.13396320888668,49.23528058956603],[-121.1337965227854,49.23521469953762],[-121.13362856743349,49.23514452977155],[-121.13334519362577,49.23502769138033],[-121.13321779814551,49.23498049987479],[-121.13310113920349,49.23492927342048],[-121.13289560800406,49.23484048021977],[-121.13282933007706,49.23481690745556],[-121.13269101908239,49.234742716543856],[-121.13249796471547,49.23464969572329],[-121.13227544409338,49.23454265863917],[-121.13207725937,49.23444940514333],[-121.13190559123919,49.23436553213419],[-121.13163473093257,49.23424418401301],[-121.13110171883457,49.234033175195066],[-121.13100721595436,49.23400015187812],[-121.13095123427782,49.23397675450948],[-121.1307619034028,49.23389743998203],[-121.13035708515129,49.23374239989082],[-121.13030750353633,49.233723531644124],[-121.12966413146407,49.23343422501422],[-121.12942897260535,49.23334944378345],[-121.12931919367914,49.23329824413611],[-121.12901764211843,49.23315830563189],[-121.12877407826713,49.23305538808462],[-121.12855950972953,49.2329709674735],[-121.12828848946859,49.23286765511255],[-121.12783393287603,49.23271177152747],[-121.12776890042821,49.23269275348656],[-121.12746249098787,49.23256641165343],[-121.12733507993265,49.232519482397066],[-121.12721846290664,49.23246797104109],[-121.12711163794823,49.232421413353435],[-121.12698003842628,49.232365281471374],[-121.12685873293022,49.23230932640068],[-121.12675069912879,49.23225792309321],[-121.12669174305212,49.232230157514344],[-121.12663157654794,49.23219755562703],[-121.12623227104152,49.232006669886495],[-121.12606669880559,49.23191403144702],[-121.12595834249387,49.23184935972005],[-121.12552946161962,49.23161287215969],[-121.12508371590262,49.2313897113442],[-121.1249078254205,49.23129717224327],[-121.12466274812415,49.23117612325196],[-121.1244184377384,49.23106413911257],[-121.12415867521935,49.23095201425735],[-121.1239296146091,49.23085847397342],[-121.12379242069149,49.23080658631259],[-121.1236124934672,49.23073613680486],[-121.12342787803236,49.23066124351022],[-121.12325137295716,49.23059094826215],[-121.12298037933348,49.23048761321549],[-121.12279187275702,49.230417053424915],[-121.12254644846364,49.23033207944036],[-121.12213198334143,49.230203922240605],[-121.12201691008705,49.230170518042314],[-121.12191213020577,49.230137291168724],[-121.12164096280773,49.23005199716989],[-121.12153400072258,49.230023181965144],[-121.12147457740309,49.22999991192931],[-121.1212505383123,49.22992407703956],[-121.12100588627953,49.22984814699892],[-121.12088736352042,49.22981487395172],[-121.1207239577348,49.22976715365137],[-121.1206520601666,49.229748108637075],[-121.12051687712035,49.22970984021077],[-121.12021436598017,49.2296284723909],[-121.12010177171655,49.22960420011225],[-121.11999404498235,49.22956633583723],[-121.11988581673309,49.22953323930674],[-121.11966938998737,49.22946676756586],[-121.11943724723695,49.229386330200576],[-121.1192409344433,49.229324711436796],[-121.11919773238851,49.229310628504074],[-121.11914987049921,49.2292918325093],[-121.11911182918008,49.22927770371246],[-121.11889605769005,49.22918869638869],[-121.11881062742286,49.229151281847855],[-121.11869447152309,49.229095549861505],[-121.11819855990072,49.228876002058605],[-121.11793504397143,49.22879977786816],[-121.11773269618425,49.22869757295848],[-121.11755355246353,49.228636160674334],[-121.11727294287495,49.22851010807931],[-121.11704393747756,49.22841627448061],[-121.11577271757133,49.22803582605521],[-121.11573078470099,49.22802603041556],[-121.11568198089846,49.228016202860935],[-121.11550004508511,49.22793239425835],[-121.1153864006873,49.22788551438188],[-121.11529457849286,49.22784356658923],[-121.11519511987542,49.22779253920306],[-121.1149333957087,49.22766676794924],[-121.11440166203583,49.22742865997062],[-121.11387571841377,49.22716826597191],[-121.11361774377009,49.22705590533788],[-121.113550693017,49.227023542218376],[-121.11348664874977,49.22699526704619],[-121.11341275670908,49.226962593450395],[-121.11334399586819,49.22693015259978],[-121.11330050649836,49.22690252117267],[-121.11306922416635,49.22678150913953],[-121.11291427948454,49.22670258314083],[-121.1126923151282,49.22659101488716],[-121.11245755562844,49.2264704119427],[-121.11233286233094,49.22641428481372],[-121.1121196639205,49.226284789468885],[-121.11186326981496,49.22614120773973],[-121.11172767478081,49.22605808761682],[-121.1116036389753,49.2259794345182],[-121.11150266045377,49.22591029035638],[-121.11137735895115,49.225827348206515],[-121.11116337265426,49.22568907258671],[-121.11102483278496,49.225601306762094],[-121.11059674255098,49.225342223513806],[-121.11037494278142,49.22521290197153],[-121.11024404100284,49.22513421497141],[-121.1100281973837,49.225013616579965],[-121.10973454552428,49.224864954045515],[-121.10953052358553,49.224762646505624],[-121.10931152379955,49.224655715779555],[-121.1089426006832,49.22448756455906],[-121.10871847275607,49.22438039957658],[-121.10852034838088,49.2242873887043],[-121.10840300954217,49.22422679971032],[-121.10815874649263,49.22411504694123],[-121.10776190536635,49.22395098215069],[-121.10760166452998,49.22388985076764],[-121.1074637159715,49.22382917245133],[-121.10724751759467,49.22374463956335],[-121.1067629551465,49.22351624625806],[-121.10653485833849,49.22333276802926],[-121.10637564796048,49.22321303828354],[-121.1062252777593,49.22310725200183],[-121.10555562035056,49.2226462981325],[-121.10497703826394,49.22229943955127],[-121.10476195471122,49.222188165163494],[-121.10468170954825,49.222150684916755],[-121.10444012417196,49.2220300221328],[-121.10426855183698,49.22194610357532],[-121.10392509203047,49.22176498876608],[-121.1037698910958,49.22167250281738],[-121.10355405098318,49.221552169186054],[-121.10281190079142,49.22122492626252],[-121.1026287786407,49.22113652783525],[-121.10251516385502,49.22108963391634],[-121.10225893023102,49.220977610181265],[-121.1021902154261,49.22094488357842],[-121.10202578060661,49.2208748096786],[-121.10195190636071,49.22084212792907],[-121.1019160907534,49.220823302834276],[-121.10157635651797,49.22065588204047],[-121.10130565442795,49.220534464243215],[-121.10106734942397,49.22043170657546],[-121.10090073292015,49.2203660515753],[-121.10073288189406,49.22029582004843],[-121.10055397869895,49.220216351994374],[-121.1002968356224,49.220113024070386],[-121.10021267385605,49.220080152598705],[-121.09943482775034,49.21976592036609],[-121.09931824427068,49.21971465620687],[-121.0992558994095,49.21968672844283],[-121.09902621245669,49.21958379855349],[-121.09879602277519,49.21948563598769],[-121.09877777555454,49.21947944634584],[-121.09852885543123,49.21939593972103],[-121.09788113547572,49.21915133211903],[-121.09777611000695,49.21910454394474],[-121.09760874176001,49.219029826920924],[-121.09740850829793,49.218940919187524],[-121.09729069355843,49.21888508544077],[-121.09712959391095,49.218783586483006],[-121.0969019727777,49.21864493658516],[-121.09663461732396,49.21849207135969],[-121.09639319041875,49.21832150264696],[-121.09617757327246,49.21818311785667],[-121.09594185304968,49.218039865312434],[-121.09583015102058,49.21797500621675],[-121.09579183989088,49.21794732264155],[-121.0956505658352,49.21783713335878],[-121.09557441869417,49.21777727657606],[-121.09529082662051,49.217534294013525],[-121.09507635447999,49.217368892090015],[-121.09498105332258,49.217295197401626],[-121.09471158970977,49.21709739907425],[-121.09465801929629,49.21705154385779],[-121.09454916976912,49.21695974645823],[-121.0943747525762,49.216821817631065],[-121.09423472051031,49.21671619368654],[-121.0941487616733,49.216651666221594],[-121.0940819285978,49.21660125466529],[-121.09404067450603,49.21656892511859],[-121.09394192824792,49.216495342978355],[-121.09372699090939,49.21633442759141],[-121.09363881930305,49.21627458959966],[-121.09357078163225,49.21621933195648],[-121.0930631587823,49.21586914465496],[-121.09284832310422,49.21573980957759],[-121.09274942032425,49.21568398375363],[-121.09250808831588,49.21554526618753],[-121.09238610817916,49.215480214041364],[-121.09225307850177,49.21540592457418],[-121.09211783591017,49.215336315846265],[-121.09199927571925,49.215271428094866],[-121.09132638578264,49.21494076468254],[-121.09115217486628,49.21486599473686],[-121.09101398982412,49.21479174816236],[-121.09075800904203,49.21466166016135],[-121.09043532715724,49.21451246147597],[-121.09017918838391,49.21440012957787],[-121.09013819400293,49.214381623179634],[-121.0898386867745,49.21427323142476],[-121.08962180541036,49.21417960505523],[-121.08957102748731,49.21415614109751],[-121.08942113294248,49.21409517131548],[-121.0893588015696,49.214067237592225],[-121.0890073792746,49.21396239423133],[-121.08889749960287,49.213929187844656],[-121.088789996324,49.21387353396849],[-121.08847609710178,49.21370639596965],[-121.08767852620326,49.21336918026287],[-121.08754902280072,49.213326614125776],[-121.08742658005791,49.21326604562477],[-121.08736425099616,49.21323811071355],[-121.08699673235982,49.21307444901182],[-121.0868576084353,49.21300917585599],[-121.08651826902302,49.21285525208853],[-121.08632742071251,49.212775491703596],[-121.08617674657526,49.21270573865749],[-121.08610416024575,49.21267733480466],[-121.08588726437246,49.21258397904486],[-121.08573785526015,49.21251851452582],[-121.08561152189539,49.21246227728402],[-121.08546600868316,49.212392478985784],[-121.08528085279204,49.21217792067335],[-121.08509693184247,49.211967938472604],[-121.08466857159938,49.21155167890563],[-121.08458995117371,49.21148295708523],[-121.08453535589197,49.211414492968416],[-121.084390499488,49.211241245203645],[-121.08409872378049,49.21093046446897],[-121.08400829971923,49.210843447067],[-121.08393750121436,49.21076577966276],[-121.08334005066453,49.21024310503095],[-121.0832749777259,49.21019248601588],[-121.08324991182646,49.21016963340862],[-121.08311555942636,49.210059460369116],[-121.08294291175605,49.2099215896879],[-121.08247420986683,49.20959454820613],[-121.08234042536023,49.20951146714947],[-121.0822594326663,49.209465190801716],[-121.08216150669226,49.20940038476045],[-121.08155781278772,49.209066603725375],[-121.08138288083084,49.208982769251165],[-121.08130438697846,49.20894534896978],[-121.0811029639945,49.20885212934392],[-121.08084172054333,49.2087398183119],[-121.08061288615514,49.20864590456788],[-121.08011992697789,49.208466892691774],[-121.07994385322692,49.20841007078138],[-121.07979037598173,49.20836696684551],[-121.07895409009338,49.20813701618279],[-121.07884565982438,49.208090330846275],[-121.07868424875353,49.20802486576301],[-121.07860996470404,49.20799637851283],[-121.07839215335093,49.207911985955846],[-121.07833157698273,49.207883836425985],[-121.07818295080803,49.20782741806924],[-121.07764667349849,49.207652061501456],[-121.07729016783316,49.207547222781116],[-121.07721708916152,49.20752358053865],[-121.0766549203607,49.20736563908477],[-121.07660296553632,49.20735339244399],[-121.07645046036795,49.20731737441542],[-121.07525914394444,49.20713092956331],[-121.07498494445036,49.20710852420472],[-121.07404103545596,49.20708366276845],[-121.07384972431296,49.20708957040482],[-121.07271954428347,49.207201102723175],[-121.07252537198977,49.20723394470763],[-121.07185923698832,49.20737572051466],[-121.07147223291794,49.207477273008095],[-121.07134497064918,49.20751092045606],[-121.07101035442415,49.20760443968814],[-121.07054438003655,49.20775396428952],[-121.0697409099559,49.20810486155043],[-121.06904200253229,49.20853864165199],[-121.06899703568392,49.20857380010629],[-121.06886992744283,49.208670609725445],[-121.06865972250996,49.208838049033396],[-121.06847449491252,49.20899676141976],[-121.06784829487637,49.20968368114587],[-121.06775949942246,49.20980789581313],[-121.06731805325923,49.210776767580555],[-121.06729869601428,49.210861883541064],[-121.06726618808429,49.21097373526353],[-121.06717689298353,49.2115389117582],[-121.06716385839316,49.2118715796235],[-121.0671643871259,49.21206051743236],[-121.06717167754434,49.212218177137004],[-121.06717736516651,49.212407071502334],[-121.06717819854808,49.21244771100791],[-121.06700465893194,49.21267405681715],[-121.06693680059993,49.21276286913853],[-121.06683501357031,49.21289607853927],[-121.06665925289997,49.21312712200404],[-121.06654706758361,49.21322884432097],[-121.06596845163712,49.213871403825095],[-121.06588572655198,49.213986881443816],[-121.06583320567748,49.214044528433924],[-121.0656647048072,49.21423953327038],[-121.06548694609707,49.214456949531794],[-121.06535551678923,49.2145941584489],[-121.06520139902317,49.214766976779714],[-121.06504632405202,49.21494878254967],[-121.06493909050491,49.2150684865066],[-121.06478250411543,49.215232177635684],[-121.06467574682652,49.21534739192008],[-121.06459930122611,49.21543608888878],[-121.06453819723875,49.2154936305732],[-121.06426531449854,49.21578139998284],[-121.06410633602364,49.21596752773746],[-121.06395542707877,49.216158545450845],[-121.06387317059793,49.21626953177471],[-121.06376791769814,49.216402859139784],[-121.06362390574465,49.21659362415012],[-121.06358433348088,49.21664256150596],[-121.06342924592319,49.21682436443184],[-121.0631622622871,49.21712114437723],[-121.06312193468747,49.21716102444915],[-121.06285778426599,49.21743114580295],[-121.06274226620778,49.21756400152716],[-121.06263084554122,49.21767449781555],[-121.06237240167046,49.21797166744237],[-121.06225886722895,49.21811814734481],[-121.06215066249959,49.21824683558697],[-121.06210110385649,49.21830884819826],[-121.06196504674594,49.21847318806091],[-121.06181387517847,49.218650368346005],[-121.06168909102449,49.21880564295622],[-121.06166687560642,49.21883677125135],[-121.06158040518825,49.2189388198126],[-121.06144291056304,49.21911662681697],[-121.06123510251228,49.219373818638076],[-121.06106711512717,49.21959590744895],[-121.06104049328805,49.21963613568441],[-121.06101143795411,49.219666941109665],[-121.06095842565956,49.21972908351857],[-121.06077156617232,49.21995086568709],[-121.06052910006089,49.22027526282816],[-121.0604288156982,49.220426300419504],[-121.06039391850247,49.22047968260367],[-121.06030744223078,49.22058172988942],[-121.06013667668378,49.220781413347225],[-121.05997917130365,49.220985656668034],[-121.05981852106734,49.22120328016017],[-121.05967226016546,49.22139872768475],[-121.05950480921163,49.22164790604131],[-121.05943186620426,49.221768059018174],[-121.05937399566996,49.221843502435604],[-121.05928464553637,49.22197248442985],[-121.05916459954672,49.22216377461087],[-121.05910295644853,49.22211329884795],[-121.05862742941775,49.22178612430209],[-121.05839993816008,49.221647115468336],[-121.05793050780753,49.221391837350204],[-121.05780805181985,49.22133152328466],[-121.0572460467624,49.22099360579696],[-121.05703111327921,49.22088195770328],[-121.05666750990258,49.22071414059594],[-121.05652129178979,49.22063495973802],[-121.0555937619403,49.220228092839406],[-121.05535022449634,49.220143043230564],[-121.05444541252481,49.21989397481313],[-121.0542135000898,49.21984497800969],[-121.05369084829756,49.21975076794255],[-121.05323585069193,49.21966670972048],[-121.05297724416444,49.219626345508054],[-121.05184128749485,49.21953073717543],[-121.0516217508779,49.21952684760736],[-121.05127600775091,49.219530132176196],[-121.0510554826298,49.21953550731023],[-121.04964571750607,49.2196869702233],[-121.04943680887166,49.21972839798514],[-121.04880156587413,49.21988415507216],[-121.04851580406299,49.21996941603337],[-121.04818144716442,49.219914287906306],[-121.04805520444712,49.219889589358175],[-121.04793238089594,49.21986505691387],[-121.04755020328673,49.2197910899693],[-121.04724969007187,49.219740889755705],[-121.04715335860868,49.21972574930434],[-121.04682536566406,49.2196754208017],[-121.04617856633313,49.219601393975694],[-121.04586314787987,49.219578149340315],[-121.04580653918696,49.2195772321996],[-121.0450723550448,49.219227380899156],[-121.04476236096686,49.21910512460067],[-121.04461838998658,49.21905338625878],[-121.0443604186363,49.218958903321074],[-121.04425961818703,49.218921277605176],[-121.04412377891461,49.21887385566418],[-121.04397218913017,49.2188130227995],[-121.04350356265789,49.21864765955713],[-121.04323263712,49.21856187973013],[-121.04196202620686,49.21827950437116],[-121.04166053840656,49.21823855425757],[-121.04039876498811,49.21816296921912],[-121.0401233481567,49.21816748075982],[-121.03936243318638,49.21821278541391],[-121.03907384514618,49.21824404430542],[-121.03869616063413,49.218305023476056],[-121.03848683070647,49.21827000671571],[-121.03821450491999,49.21822954236896],[-121.03800469549743,49.2181990138906],[-121.03776869784912,49.21817234891432],[-121.037462564949,49.21812666144454],[-121.0371897606191,49.2180906837207],[-121.03682141214007,49.21804832552309],[-121.03650574002852,49.21801150700521],[-121.03636777840615,49.218000067773744],[-121.03628606753664,49.21794470025347],[-121.03619721771332,49.21787575821577],[-121.03615132366683,49.217838959246045],[-121.03605164757153,49.21774272952294],[-121.03587929198952,49.21758703675512],[-121.0354100384484,49.217219155155796],[-121.03524023214877,49.21710390120606],[-121.0351114023887,49.217007165241576],[-121.03487114031655,49.21682775839383],[-121.03464413897159,49.21665290532209],[-121.03387179821118,49.21616304510321],[-121.03370085566429,49.21607452437529],[-121.03364590582922,49.2160420974708],[-121.03348105486167,49.215944834536494],[-121.03269741467696,49.21554467089379],[-121.03245586652298,49.21544161212692],[-121.03225280458248,49.21534821433722],[-121.03217040942161,49.21531536843634],[-121.03202277704591,49.215249908677265],[-121.03174467108933,49.21511922081384],[-121.03157448561288,49.215039744919906],[-121.03152076652098,49.215011893970775],[-121.03130496090856,49.21490917203376],[-121.0311269463611,49.214838636562135],[-121.03059118719513,49.21451475032356],[-121.0305345306452,49.214482251822744],[-121.03043150811231,49.21441743192989],[-121.03035200031485,49.21435765829266],[-121.0301674643734,49.21421971728371],[-121.03007371638316,49.214132488300955],[-121.02967223384377,49.213806340100575],[-121.02941878260641,49.21362207793121],[-121.02934860467369,49.21357146818752],[-121.02922022549791,49.21343865308497],[-121.02885325406858,49.213095200401675],[-121.0286340945267,49.21291167101643],[-121.0284956967385,49.212792215156384],[-121.0283420673325,49.21265456941461],[-121.02815674486232,49.21247598481226],[-121.02738147049486,49.211918550310685],[-121.02731768564709,49.21187245687573],[-121.02690477666484,49.211573116068735],[-121.02629386590814,49.21122965355837],[-121.0261633306186,49.21113311437013],[-121.02597617755207,49.21100378663221],[-121.0257578662077,49.210860612401376],[-121.02550326820835,49.21070335449841],[-121.02530777556268,49.21058774283352],[-121.02509393065353,49.210467041930386],[-121.02468170788289,49.21025767199628],[-121.02454564856394,49.21019667811966],[-121.0243926192414,49.21011770205381],[-121.02390764346548,49.20989791040119],[-121.02364431054654,49.20979015852108],[-121.02348273619363,49.20971078599858],[-121.02327726124004,49.20960823401419],[-121.02320442340613,49.20956651936228],[-121.02305922968225,49.209478600689174],[-121.0230312562011,49.20945108678896],[-121.02299392874222,49.20941467691397],[-121.0227158778187,49.209139876749134],[-121.02252839983572,49.20896569169706],[-121.02235270302229,49.20880981715358],[-121.0222263302391,49.20869062747717],[-121.02204371988987,49.20850313190501],[-121.02197206523998,49.20843440200442],[-121.02182456145451,49.20828800478073],[-121.02160807695581,49.20806398674091],[-121.021040591117,49.2075727692942],[-121.02080165988166,49.20739789681413],[-121.02031311056457,49.20708374756445],[-121.02008655175297,49.20695371234838],[-121.01934979377015,49.20659931020535],[-121.01848654059181,49.206319128205315],[-121.01798835479397,49.20620697073865],[-121.01772736813847,49.20615767184248],[-121.01617775604413,49.20601403559426],[-121.01533042542691,49.206017662689064],[-121.01524642220868,49.20601602863827],[-121.01482190214735,49.20601779977688],[-121.01452330678725,49.206030760940074],[-121.01437707146124,49.206032722625444],[-121.01407776112679,49.20603634665678],[-121.01370764151456,49.20604344826503],[-121.01342887410952,49.20604774233772],[-121.01311018768011,49.2060558168236],[-121.0128544788059,49.206069343516944],[-121.01257010035403,49.206077886976225],[-121.01239935954486,49.20608407034468],[-121.01203340145064,49.20610039116808],[-121.0117485410139,49.20611341266933],[-121.01167605104814,49.2061165411791],[-121.01158811637711,49.20611951336692],[-121.01091033106331,49.205680655125576],[-121.01074879274594,49.20560126302753],[-121.01059457531139,49.205517698415576],[-121.01046170497406,49.20544330698201],[-121.01033299874523,49.20537812247219],[-121.01018610313048,49.20529038500115],[-121.01001621122808,49.20519284690138],[-121.00976147576883,49.20505358646164],[-121.00922047599713,49.204796718978436],[-121.00890989797597,49.20466558665036],[-121.00851431817019,49.20451020068443],[-121.00818981686837,49.20439674644119],[-121.00789769312178,49.20430171110753],[-121.00761318225665,49.20421576241304],[-121.00748967814263,49.204182125693414],[-121.0072747577575,49.204119985472005],[-121.00709708027766,49.20406296498349],[-121.00693949315192,49.204010819206815],[-121.00689292905916,49.20399654117625],[-121.00637857213604,49.203843532238466],[-121.00607936509324,49.20376648904696],[-121.00548540530092,49.20363488494033],[-121.00514483297535,49.203575093945965],[-121.00505370764371,49.2035598661685],[-121.00475676299932,49.20350971394525],[-121.00455436353974,49.203474938857134],[-121.00408961770134,49.20340374213232],[-121.00376378516587,49.203366629290336],[-121.0034538512703,49.203325453084865],[-121.00311602465521,49.20328806119983],[-121.00304963328311,49.203282443638244],[-121.00291488323614,49.20325757321046],[-121.00258585860254,49.20320226207662],[-121.00249148086802,49.20316939404701],[-121.00225328792033,49.20308418211366],[-121.00153481777824,49.20286471676341],[-121.00130398333712,49.202806904940935],[-121.00120867010956,49.202782735764934],[-121.00100749787137,49.20272067027828],[-121.00060345069075,49.20262830204319],[-121.00033534342066,49.20253380075804],[-121.00014568560898,49.202476491248454],[-121.00000098564614,49.202448339532594],[-120.99991685221676,49.2024320243657],[-120.99979506865083,49.202398449162985],[-120.99961692318665,49.202345905357035],[-120.99888329140707,49.202139810981954],[-120.99868699602492,49.202064423491294],[-120.99846671076573,49.2019884893441],[-120.99826013022864,49.201912911824294],[-120.99785925649394,49.20180714515295],[-120.99755372364751,49.20172527117764],[-120.99737532591087,49.20165917671722],[-120.99717510158774,49.20158840399581],[-120.99711361473523,49.20156918689073],[-120.99698861272564,49.20151770083731],[-120.99543370524951,49.201090402695726],[-120.99534087875665,49.20107508718025],[-120.99527030212217,49.20106052642327],[-120.99509342196586,49.20101226533027],[-120.9945367688165,49.20088570672715],[-120.99427928535624,49.200836231323564],[-120.99421386705019,49.20082163001217],[-120.99410779111699,49.20080175398904],[-120.99397350729244,49.20077266147599],[-120.99351074194139,49.20068346228507],[-120.99348450044192,49.20065601985564],[-120.99342734424792,49.200596685649074],[-120.99307908847892,49.2002263195867],[-120.99296042225521,49.2001161825895],[-120.99282145772975,49.20000313402182],[-120.99258311216437,49.19980819467421],[-120.99238256327057,49.199660969167205],[-120.99185990213978,49.199251470014076],[-120.99182460222255,49.19922839694929],[-120.99178343471277,49.199196027465945],[-120.99171625334859,49.199150040331425],[-120.99103613662847,49.198751247061516],[-120.99075405638419,49.19861151164429],[-120.98994494571052,49.19827805466781],[-120.98960683041527,49.19816418527729],[-120.98874199919902,49.19793330126481],[-120.9885521444824,49.197894007095144],[-120.98863174007694,49.197665919646205],[-120.98865171963782,49.197576335984735],[-120.98864181421017,49.197477185553396],[-120.98861008133547,49.19713478477684],[-120.98859272045924,49.196945612229875],[-120.98844376097107,49.19624133547078],[-120.98836888274279,49.19605991529297],[-120.98821963098112,49.195756039254555],[-120.98811728921464,49.19557446766722],[-120.98774494499942,49.195046173268246],[-120.98758776728053,49.194863463548735],[-120.98713249496417,49.194419282353],[-120.98694671813,49.1942628690579],[-120.98612765832758,49.19370445341615],[-120.98597990542078,49.19362538139585],[-120.98565939319896,49.19344435188739],[-120.98555206099294,49.19338859341946],[-120.98525339563702,49.193243835344845],[-120.98506154686734,49.19315961195917],[-120.98499124784105,49.19312672073372],[-120.98473195858597,49.192951374472926],[-120.98451729893218,49.19283985549455],[-120.98331148571357,49.19236433493389],[-120.98301336127027,49.192278248080505],[-120.98167625891989,49.192016535837205],[-120.98137576280125,49.191984195240416],[-120.9807272774361,49.19194577466568],[-120.98044808771664,49.19192288030835],[-120.98041083778713,49.19188617639919],[-120.98037575215623,49.19184534137025],[-120.98020461179841,49.191617408377425],[-120.98007100474157,49.19143944792368],[-120.97993147424708,49.191252746746116],[-120.97964636795456,49.190919387955255],[-120.97947331097183,49.19074099354712],[-120.97925466585056,49.190507746772155],[-120.97909067253828,49.19032497383006],[-120.97899803882527,49.19022872797358],[-120.97885243692417,49.19008234766165],[-120.9787450843273,49.1899634151034],[-120.97867275465552,49.18988587479043],[-120.97863428462395,49.18984460126543],[-120.97846979149575,49.189634741792034],[-120.97832539834091,49.189461345989436],[-120.97815380888801,49.189269481611475],[-120.97812929164535,49.18924211471402],[-120.97797119994792,49.18906836765925],[-120.97769866402912,49.18879367321182],[-120.97752664133984,49.18863760204511],[-120.97722080247642,49.18838504761492],[-120.97707477331295,49.18827445891267],[-120.97665065771506,49.18798818218831],[-120.97643630607209,49.18785832258207],[-120.97563996202673,49.18752054371175],[-120.97562377072097,49.18747974055849],[-120.97540917470982,49.187098340895695],[-120.97533710438587,49.18697089961281],[-120.97530790400972,49.18690749811345],[-120.97525784182565,49.18679885212249],[-120.97510754524917,49.18655326474476],[-120.97496364359768,49.18634379975484],[-120.97492319026334,49.186289175944076],[-120.9748070169801,49.18612498713888],[-120.97481529391482,49.18608025516645],[-120.97484662388739,49.18588602121798],[-120.97528014614083,49.183689527190445],[-120.97545874703526,49.18345141184049],[-120.97609409781552,49.183165810274964],[-120.97698338434085,49.182866126916046],[-120.9780454693285,49.182476929055255],[-120.97882219518866,49.18213812921255],[-120.97914014599883,49.18197672549869],[-120.97969231637678,49.18163421676278],[-120.98034023385512,49.18097779767745],[-120.98046077033861,49.18083170567831],[-120.98078814453302,49.18039240917764],[-120.98100039960984,49.18008084117265],[-120.98130214560082,49.17979911107812],[-120.98139009389647,49.17970028914099],[-120.98150471956357,49.17957704809729],[-120.98161937470812,49.17945352857592],[-120.9817240224767,49.17932727716467],[-120.9818103315811,49.17919594711196],[-120.98188846219347,49.179060851591295],[-120.98195487631044,49.17892295355188],[-120.9820128995522,49.17878325636495],[-120.98206070232281,49.178642802666836],[-120.98209313051474,49.178501622768025],[-120.9821068869073,49.178358452956985],[-120.98210874588577,49.17821415966986],[-120.98210380251865,49.17806926029673],[-120.98210566149513,49.17792496694585],[-120.9821126454674,49.17778091261978],[-120.98213326498968,49.17763778305614],[-120.98217771069943,49.17749660404404],[-120.98224570875585,49.177359907492594],[-120.98233045675705,49.1772270873195],[-120.98242194534221,49.177095438734064],[-120.98251505148197,49.176964704725044],[-120.98260650895112,49.17683333426388],[-120.98269293221256,49.17670088068901],[-120.98276757933273,49.17656618133012],[-120.98283047950869,49.17642896685484],[-120.98288666745528,49.17629031130524],[-120.98293955978187,49.176150374036034],[-120.98298909636488,49.176009711720035],[-120.9830335679951,49.17586825366875],[-120.98307465387477,49.17572634891453],[-120.9831140302768,49.17558437342234],[-120.98314831272673,49.17544187156368],[-120.9831791173577,49.17529977597308],[-120.9832065062879,49.17515751202735],[-120.9832099487027,49.1750144200007],[-120.9831946005578,49.17487045158815],[-120.98317586612963,49.174726045468624],[-120.98316911943094,49.174581918663904],[-120.9831880571114,49.174438421215],[-120.98323588290977,49.17429767874812],[-120.9832905412375,49.174157254899015],[-120.98335358793821,49.174018638957605],[-120.98343314099166,49.1738861438882],[-120.98356248432064,49.17376950648057],[-120.98371935013806,49.173668256628375],[-120.98388894186141,49.173576335050434],[-120.98407263308903,49.17349691895243],[-120.98426093226885,49.17342251808913],[-120.98444908052596,49.1733495085677],[-120.98463890533444,49.17327686567013],[-120.98482863936489,49.173205057438146],[-120.98502004994937,49.17313361581897],[-120.98521145994584,49.17306217385187],[-120.98540116118885,49.17299065190297],[-120.98559089287498,49.17291884229724],[-120.98578071414255,49.17284619734006],[-120.98597059589585,49.17277298638884],[-120.98615718192238,49.17269849352557],[-120.98634394863417,49.17262232133176],[-120.98652949127819,49.17254157988604],[-120.986700599249,49.17245142131842],[-120.98685077339606,49.17234843860702],[-120.98698007286129,49.172232084138024],[-120.98709316944709,49.17210678981546],[-120.98718789954005,49.1719766960311],[-120.98727088447829,49.17184407858836],[-120.98734727875969,49.17170889798551],[-120.98741702233876,49.17157171090979],[-120.98748002319293,49.171433370342875],[-120.98753789935172,49.171294790908966],[-120.98758735580097,49.17115469108769],[-120.98763007066505,49.17101342882636],[-120.9876643359107,49.170870924533894],[-120.98769518477374,49.17072826100367],[-120.98772261728526,49.17058543823854],[-120.98774663250737,49.17044246521955],[-120.98776726245174,49.17029904565375],[-120.98778618420349,49.17015554645587],[-120.98779998165783,49.17001180843431],[-120.98781033287533,49.16986818952538],[-120.98781385183021,49.16972425219944],[-120.987813923664,49.169580442966385],[-120.9878122884273,49.169436545126906],[-120.98780891415652,49.1692928549766],[-120.9878038628884,49.169148797880936],[-120.98779707261804,49.16900494847409],[-120.9877902823897,49.16886109903518],[-120.98778352321352,49.16871696224662],[-120.98777673306911,49.16857311274331],[-120.98777165096872,49.16842934280486],[-120.98776830790653,49.168285365113974],[-120.98776667188741,49.16814147596706],[-120.98776674483366,49.167997657406616],[-120.98777370978436,49.1678536005246],[-120.98779095258622,49.16770974285211],[-120.98781838302367,49.1675669194022],[-120.98785764695225,49.167425784399484],[-120.98791222317506,49.16728591340728],[-120.9879769247076,49.16714765123644],[-120.98804989332369,49.16701230997497],[-120.98814622723049,49.16688313792316],[-120.98827556930746,49.16676621526718],[-120.9884129969763,49.16665389240393],[-120.98855374780658,49.16654258149293],[-120.9886977026158,49.16643338690291],[-120.98884638622204,49.16632808517905],[-120.989003064316,49.166228227159905],[-120.98916776693234,49.16613353447294],[-120.98934055413709,49.16604345040291],[-120.98951474635975,49.16595624697469],[-120.98969381853465,49.16587153561413],[-120.98987258785293,49.16578962530845],[-120.99006701278047,49.16572170006349],[-120.99026888804059,49.16566426434731],[-120.99047082187974,49.165606280544715],[-120.99067275618397,49.16554828737983],[-120.99087459895473,49.16549113783294],[-120.99107796804323,49.16543574647314],[-120.99128274145832,49.16538324461441],[-120.99148879819812,49.16533475459316],[-120.99169607924917,49.165290824106854],[-120.99190879920664,49.1652601227957],[-120.99212803102257,49.16524862022229],[-120.99235007344396,49.16524288797659],[-120.99256957806583,49.16522885249422],[-120.99277927439996,49.16519434504136],[-120.99298257893969,49.165139515722956],[-120.99318014039106,49.16507426685486],[-120.9933699177979,49.165001607654496],[-120.99354745335576,49.16491512224633],[-120.99373692757412,49.16484526375955],[-120.99394010848484,49.16479155495204],[-120.9941462808036,49.16474193745598],[-120.99435391959727,49.164694634772225],[-120.99456146700726,49.164648175690715],[-120.9947691039927,49.164600881178636],[-120.99497527554983,49.164551253102815],[-120.9951771387031,49.1644938170646],[-120.99537152047662,49.16442616045397],[-120.99557176567421,49.16436780018116],[-120.99578218147497,49.164326552736924],[-120.99599892960515,49.164306182868515],[-120.99621824684475,49.16429382794664],[-120.99643999731126,49.164274817931215],[-120.99666351639803,49.16425532125008],[-120.99686737105988,49.16421123080656],[-120.99704078597313,49.16413103639786],[-120.99720073389702,49.16403244737379],[-120.99734990509143,49.16392235679404],[-120.99748931203138,49.163807299916236],[-120.99761850119104,49.16369148784594],[-120.99772480693453,49.16356502792802],[-120.99781293126044,49.1634320733105],[-120.99789095894945,49.16329724127287],[-120.99795226957961,49.163158256704676],[-120.99798814528941,49.163016383539315],[-120.99800867944909,49.162873526048806],[-120.9980275665912,49.16273002342081],[-120.99804477578746,49.16258616297889],[-120.99805853930206,49.16244242197771],[-120.99807062587941,49.16229831418538],[-120.99807758804707,49.162153977035814],[-120.99808278243722,49.162010117108615],[-120.99808108476326,49.16186650508029],[-120.9980742338044,49.16172293306181],[-120.99806573506966,49.161578724887256],[-120.99805558954161,49.16143387157707],[-120.99804199858684,49.16128913770855],[-120.99802496223744,49.16114452328051],[-120.99800100314792,49.16100044406763],[-120.99797177110698,49.16085751823405],[-120.9979337888042,49.16071616155045],[-120.99788873310422,49.16057674077006],[-120.99783142286984,49.160439556302556],[-120.99775831898756,49.16030559854657],[-120.99767122212488,49.1601740849409],[-120.99757363773954,49.16004433930266],[-120.99747077992592,49.1599157559227],[-120.99736618500161,49.159787371318444],[-120.99726332736235,49.159658796668566],[-120.9971674838327,49.159528842683095],[-120.99707871238721,49.15939697064716],[-120.99697927273549,49.15926854557114],[-120.99685828348731,49.15914898983033],[-120.99673193005916,49.15903144028462],[-120.9966020100893,49.15891514133817],[-120.99647026317459,49.15879987613583],[-120.99633848692919,49.158684889097394],[-120.99620500271332,49.15856983139184],[-120.99607152012493,49.15845476452165],[-120.99594148250634,49.158339587036494],[-120.9958132750525,49.15822335750509],[-120.99569402914172,49.15810360138991],[-120.99571466007177,49.15795989026584],[-120.99579433135132,49.157825703757915],[-120.99590389300066,49.1577008041489],[-120.99603316007257,49.15758414887896],[-120.99617700867735,49.15747550846557],[-120.9963322363455,49.15737274857042],[-120.99650482530285,49.15728406148731],[-120.99668995743001,49.15720638041168],[-120.99687981814925,49.15713259178754],[-120.99707724923712,49.15706817898887],[-120.99728161643507,49.15701903214635],[-120.9974930108156,49.156984307205455],[-120.99770859073973,49.15695852074521],[-120.99792713215986,49.1569371038424],[-120.99814567337879,49.156915686495466],[-120.9983613125637,49.156889342032656],[-120.99857438220918,49.156854981718645],[-120.99878601655388,49.15681800949842],[-120.9989978003939,49.15677964512532],[-120.99920982650472,49.156739026620116],[-120.99941864874214,49.156696282479665],[-120.99962777215367,49.15665073650124],[-120.99983375156243,49.156602508215784],[-120.99999951954509,49.156561153835675],[-121.00003835541594,49.15655111137085],[-121.00024011769412,49.15649422183515],[-121.00043720898995,49.15643289157367],[-121.00063460222789,49.15636875053259],[-121.00083040812883,49.15630340736227],[-121.00102621347986,49.15623806382942],[-121.00124217680653,49.156176761318235],[-121.00157420779888,49.15610534202125],[-121.00214592431477,49.15597540765718],[-121.0028105016568,49.1557798511585],[-121.00343021262134,49.155411041013295],[-121.00376240966203,49.15500291520283],[-121.00383467262772,49.154538439087716],[-121.00374564900186,49.154105667772754],[-121.00355187081193,49.15370554036257],[-121.00322820340408,49.15326863131667],[-121.00283559303246,49.152930315150535],[-121.00282880679944,49.152913639381424],[-121.00123010417852,49.151536490985336],[-121.00077002487379,49.1509962212188],[-121.00000015154588,49.150432806018884],[-120.99995716340669,49.15040175856317],[-120.99933418169046,49.15000420754212],[-120.9984184099691,49.149569063299055],[-120.99751191877284,49.149223174411894],[-120.9964441384494,49.14916417924004],[-120.99539094176949,49.149081315900254],[-120.994705967681,49.14900486604337],[-120.99389939978514,49.1489103505876],[-120.99336525292914,49.14873996318778],[-120.99305555492208,49.14850896222148],[-120.99260389536583,49.14814641857721],[-120.99210261436568,49.14775082492616],[-120.99162521940607,49.14743615019736],[-120.99111862011574,49.14718552785106],[-120.99064127141311,49.14683870619043],[-120.99002547985049,49.14628012212271],[-120.98968654907192,49.14616139650154],[-120.98937340179555,49.14599451855037],[-120.98908772072937,49.145747982384364],[-120.98893243059587,49.14535834552484],[-120.98895022811185,49.14489104755678],[-120.98904335075622,49.144425284380446],[-120.98905754847891,49.14407089974804],[-120.98907172757372,49.14373259512484],[-120.988966136704,49.14331171272065],[-120.9887647501085,49.142824611382565],[-120.98843825858825,49.14239991718939],[-120.98827420976582,49.142171175718495],[-120.98811539222243,49.141846227122215],[-120.98793085618095,49.14156887266174],[-120.98757156058589,49.141353017046704],[-120.98698021837947,49.14114129095053],[-120.98638550528005,49.14089725072555],[-120.98546646440698,49.140542762187806],[-120.98498214753917,49.140356881106854],[-120.98460068041662,49.140092331531065],[-120.98441621133856,49.13978281867698],[-120.9844286968819,49.1394605041112],[-120.98433023913476,49.138878635950576],[-120.98432411280173,49.13839498261265],[-120.98427356306587,49.13784609477102],[-120.9841494468331,49.1372635958345],[-120.98398987998134,49.136357941438995],[-120.98381425786047,49.135855383441196],[-120.98363696279439,49.13535246674964],[-120.9834303289723,49.13499425666632],[-120.98291060213384,49.13448549608935],[-120.98167775776282,49.133527753944016],[-120.98043796799381,49.132491834043954],[-120.9796806817846,49.131769195864514],[-120.97912820042662,49.13145319463952],[-120.97846128545069,49.13095811328435],[-120.97818286378231,49.130566364543895],[-120.97802418633367,49.13024111690889],[-120.97750639496377,49.12966783266209],[-120.977119747731,49.129500008075404],[-120.97641293364147,49.129358672928134],[-120.97589765438777,49.12934953574801],[-120.97550924172673,49.129229849228494],[-120.97532304979843,49.12898480950785],[-120.9753816278065,49.12876024869007],[-120.97544198808198,49.128503328051835],[-120.97530911436395,49.128114141869396],[-120.97513001629058,49.127724201378165],[-120.97494568148487,49.127398594779535],[-120.97481094338788,49.12710604465537],[-120.9747773568413,49.12671867530266],[-120.97481561577646,49.126380636799844],[-120.97491420373031,49.125785955042616],[-120.9750811131727,49.12527316206668],[-120.97519110725064,49.125017153729324],[-120.97529761095194,49.12479342527367],[-120.97548569822757,49.12441782930019],[-120.97574298616112,49.12411597780898],[-120.97609595816317,49.1238967164622],[-120.97667159782492,49.12361650772492],[-120.97724362572993,49.12343315025477],[-120.97789277131747,49.12320263155291],[-120.97848698945306,49.12305189098287],[-120.97913077562897,49.122950274010016],[-120.97977107404193,49.122880924526164],[-120.98029335399148,49.12274514179945],[-120.98076606831387,49.12257601475818],[-120.98131411801182,49.122392085057164],[-120.98188783977538,49.12219270152566],[-120.98270636263612,49.12198134688751],[-120.98345478769232,49.12170438089212],[-120.98396205833401,49.12131012202954],[-120.98421660186452,49.121064807108354],[-120.98444986714527,49.120762374729196],[-120.98470702780685,49.12047685026738],[-120.98503600059644,49.12024093713904],[-120.9856558422334,49.12009050693375],[-120.98646715487533,49.120088600033675],[-120.98696019540104,49.12003264286045],[-120.98796484246728,49.12009841419168],[-120.98866976112768,49.12028809866396],[-120.98925502157206,49.12037884810429],[-120.99023220638819,49.12049267176057],[-120.99160484497114,49.120580918976145],[-120.99226193853458,49.120721259627295],[-120.9931877210383,49.120882564943024],[-120.99442827169042,49.121210264585024],[-120.99512620837072,49.121544809120245],[-120.9955039852198,49.12193833677051],[-120.99558831334453,49.122254166299086],[-120.99571961737954,49.122659332196555],[-120.9959449233486,49.123163063285844],[-120.99607446571186,49.12360057949841],[-120.99629975019113,49.124136452536305],[-120.99647017663324,49.12475184637402],[-120.99673634995051,49.12546560502386],[-120.99688984270922,49.12591973710822],[-120.99717009947952,49.12631152868401],[-120.9975479786761,49.12668867830147],[-120.99821678573562,49.127135500186064],[-120.99873052115727,49.12750938450874],[-120.99945857171008,49.12802747585006],[-120.99999683343684,49.1283489169018],[-121.00015313271174,49.128442488760165],[-121.00082722280055,49.128792796565854],[-121.00145522030965,49.12906144269527],[-121.00241717462539,49.12946235437904],[-121.00331951770708,49.129540413184564],[-121.00418692511653,49.12930522451457],[-121.00507119775435,49.128928961327404],[-121.00583246364288,49.128707722959135],[-121.00708813328032,49.128322471281116],[-121.00838307095579,49.127794931226006],[-121.00918283408213,49.12748634464],[-121.01067782968683,49.12693197355102],[-121.01216578747281,49.12657070788527],[-121.01373904389291,49.12653317988419],[-121.0150797478266,49.12645720857353],[-121.01756666166419,49.12666364329594],[-121.0202113949663,49.12683784403789],[-121.02320077443535,49.12728513755263],[-121.02599408076738,49.12780222966208],[-121.0281741277379,49.128152688386606],[-121.03002367575573,49.128434520141155],[-121.03300680764232,49.128733194778064],[-121.035454816604,49.128968143460256],[-121.0372891457665,49.129184279350234],[-121.0380015336574,49.12927470412103],[-121.03923774831186,49.12935829194909],[-121.04038144881909,49.12940882739368],[-121.04166713395296,49.12943064563408],[-121.04229009232229,49.12937874129484],[-121.04258389676858,49.129164722288515],[-121.04283777619827,49.12876218359611],[-121.0432450844066,49.12814309152485],[-121.04359795889505,49.127648390173455],[-121.04418878870607,49.12715761471],[-121.04496981967684,49.12673256599905],[-121.04550630116285,49.12639747559278],[-121.0445079743587,49.125128698920456],[-121.04383540728048,49.12402186263158],[-121.04361813924854,49.12348619535658],[-121.04331871119723,49.12314215973924],[-121.04293139141657,49.12278617196524],[-121.04241705751333,49.12249567440392],[-121.04181019511755,49.12217241531325],[-121.04143649012326,49.1219783529736],[-121.04126081359176,49.121599701638175],[-121.04123368172424,49.12109845624695],[-121.04134850384618,49.12056852340127],[-121.04139902678074,49.12019127787716],[-121.04138198199783,49.11972406640972],[-121.04130219545073,49.119298510406246],[-121.04117278142724,49.11900066369867],[-121.0407287519724,49.118147978913456],[-121.04050244545684,49.11734398284769],[-121.03994948869745,49.11637148524774],[-121.03953896753859,49.11570336387917],[-121.03924809144635,49.11529597574156],[-121.03912929900467,49.1149630771461],[-121.03911613416497,49.114732922736295],[-121.03915251032635,49.1143598218493],[-121.03917221671357,49.11388583725526],[-121.03907683500162,49.11351031493198],[-121.03887478302974,49.11309009638488],[-121.03864932624917,49.11271251803243],[-121.03848756464143,49.112364664545105],[-121.03839368816477,49.111975114118344],[-121.03832055505677,49.111600048696495],[-121.03842601607647,49.111141871744266],[-121.03865552609474,49.110886819096514],[-121.03912593491306,49.11060736391489],[-121.03948583852686,49.110383436993075],[-121.0399978385487,49.11014791555707],[-121.04051390257384,49.10982601058679],[-121.04096375896034,49.10954615845253],[-121.04146026539793,49.10916637668917],[-121.04167773895435,49.10863806974916],[-121.04167111353618,49.10825000377809],[-121.04165662229528,49.10804826689362],[-121.04169584533595,49.10763214020432],[-121.04179564300256,49.107339237540046],[-121.0418943320796,49.107024562282014],[-121.04198952383845,49.10683915954883],[-121.04225670576011,49.106728826909745],[-121.04261133461661,49.10663436064849],[-121.04302967628394,49.106569355918936],[-121.04349347246946,49.106447780983366],[-121.04384809572142,49.10635331958427],[-121.0442913584837,49.106231353343084],[-121.04462239906312,49.10616512998711],[-121.04517112662408,49.106131229153426],[-121.04558656370361,49.10610949614036],[-121.0463349235678,49.106036013435585],[-121.04677295773398,49.10604351866379],[-121.04732168229714,49.10600960685427],[-121.0477632259269,49.105887556562905],[-121.04805378509755,49.105734566078404],[-121.0486258999532,49.10565801322621],[-121.04917864268818,49.10553797943629],[-121.05053939387264,49.10546025351143],[-121.05109194571942,49.10532582593408],[-121.05179849432432,49.10519396961596],[-121.05243428693407,49.10514711441765],[-121.05304836297522,49.10514325688889],[-121.05361796986313,49.10513846682388],[-121.05401152578519,49.10514503149961],[-121.05427331831396,49.105149470768254],[-121.05464731454595,49.10509817219856],[-121.05489296869203,49.104980321095674],[-121.05518601845284,49.104755243265984],[-121.05532795764125,49.10448428667145],[-121.05544796987994,49.104242208239114],[-121.05552718470015,49.10388404210284],[-121.05552448538072,49.10340959170602],[-121.05553830372833,49.10302162168912],[-121.05544834531632,49.102545688999044],[-121.05550049773171,49.10234532665443],[-121.05563838634104,49.102160760232884],[-121.0558813840017,49.10193872743308],[-121.05622058524129,49.101811373330065],[-121.05655294405659,49.10171612700158],[-121.05686437491609,49.10159199571432],[-121.05713531600311,49.10138111890554],[-121.05749372630497,49.10118582703481],[-121.05784831069057,49.101091040331355],[-121.0582884155766,49.100997922795074],[-121.05868364282988,49.10100454890732],[-121.05896764514523,49.101009440254046],[-121.0594014441052,49.10108861461584],[-121.05977043553563,49.101180886885246],[-121.06011449745297,49.10133037908408],[-121.0603311813085,49.101420435027975],[-121.06060755329605,49.101626325927654],[-121.0609464715397,49.10190502024723],[-121.06156202790714,49.1024840774002],[-121.06054086989715,49.10001075675777],[-121.01947224134005,49.000291265736806],[-120.64379623541211,48.998036732311064],[-120.58335091578834,48.99803084592558],[-120.50001900023288,48.998030940785085],[-120.4166863066878,48.998030918188114],[-120.40238893606657,48.99803530048028],[-120.33335268757385,48.998031045431546],[-120.25001976025769,48.9980311423196],[-120.16668741167055,48.99803119238379],[-120.08335552430943,48.998031214782706],[-120.00002224711378,48.99803139329281],[-119.74998029163727,48.99803342925687],[-119.70122588364936,48.99807517116325],[-119.52028150707778,48.99805069029486],[-119.49998077201222,48.998030235834385],[-119.24998332075837,48.998031347904295],[-119.20147075612815,48.99807380635848],[-119.02580558302819,48.998056689099315],[-118.99998551083799,48.998031715599275],[-118.74998776188554,48.99803071378818],[-118.63895615367139,48.9980968481516],[-118.49998858229301,48.99802902405391],[-118.24999081070332,48.99803214706808],[-118.06408497957354,48.998081252488724],[-118.06000611445265,49.00317747837421],[-118.0598359047411,49.006426591699324],[-118.05957473874813,49.00996679300916],[-118.05801208658909,49.01276105440183],[-118.05507133741867,49.016301740808494],[-118.05506983352878,49.02041048308151],[-118.05611078811123,49.02252072687416],[-118.0568990196453,49.025145302463685],[-118.05508635931423,49.02891557769295],[-118.05100101936343,49.03102454721339],[-118.04716910531981,49.03462195705536],[-118.04717255740823,49.0382157059934],[-118.04831444814003,49.04294927806781],[-118.05066715938032,49.0463132642754],[-118.05310716655296,49.04916892897302],[-118.05389484924552,49.05276276932823],[-118.05155027849823,49.055615457815314],[-118.05076740196169,49.0585824416839],[-118.05138413792942,49.06229094962739],[-118.05077197929157,49.06337624639228],[-118.0508548699699,49.06690918811944],[-118.04982320754542,49.06947996533284],[-118.04825168661422,49.07239086184056],[-118.04790788280397,49.074558606720245],[-118.0486885160796,49.07706918959187],[-118.0511264012623,49.08163306066189],[-118.05322660115326,49.08608227731833],[-118.05227239427208,49.08916326916844],[-118.05080017409912,49.09213417434792],[-118.05228082030861,49.09578342551973],[-118.0522843546188,49.096807384049285],[-118.05358676737148,49.10085581062107],[-118.05159003897374,49.104395598951335],[-118.05098537101803,49.107362044801825],[-118.05167433444784,49.1085636699734],[-118.05194765222083,49.1126732719736],[-118.04907764982443,49.11592173122405],[-118.04854851482682,49.118606404645746],[-118.0492561750047,49.122028848790045],[-118.05055850622539,49.127445854500635],[-118.05083005663121,49.135261083315086],[-118.0526614118056,49.14097050502921],[-118.05266078471439,49.14153662261376],[-118.05676372333679,49.14484811153405],[-118.0618220979141,49.147411464846805],[-118.05528467304035,49.14752855422009],[-118.04682874430452,49.14878787059066],[-118.03819724724801,49.15050430014628],[-118.03602200200135,49.15369987811991],[-118.03924907547832,49.15649400896644],[-118.0432622226782,49.15888631012302],[-118.04465645787158,49.16128152695739],[-118.04570548776478,49.165848621761526],[-118.04657553386242,49.16921122191984],[-118.04823213025516,49.17200819882502],[-118.05242510410318,49.17400539681164],[-118.05992554876134,49.17536971065432],[-118.06786338474667,49.17667775832709],[-118.06899974356207,49.176563333255],[-118.0716079653498,49.17679061946379],[-118.07657968727808,49.17924000613398],[-118.07641517164886,49.182377395652054],[-118.07345442842538,49.18557720477841],[-118.06979829988651,49.19025800851403],[-118.06857318541172,49.19499439033517],[-118.06761809584974,49.2012123531235],[-118.0676304169782,49.20766052421663],[-118.06910757640998,49.21296860045687],[-118.07182312704211,49.22152078546667],[-118.0745341518095,49.22688258044863],[-118.07532015565108,49.2282563991896],[-118.08065229357041,49.23669584658453],[-118.08686301290854,49.2434815321999],[-118.0872129983995,49.24393749527125],[-118.09166366183841,49.24633084407623],[-118.09813799191485,49.249408803014155],[-118.09996718789043,49.250663706004836],[-118.10329386004193,49.25430881365661],[-118.10819071346855,49.257900651371514],[-118.11124738675049,49.25989715969977],[-118.11597527314764,49.26246184366676],[-118.12304676832144,49.26262412416746],[-118.12488358304651,49.262624816828314],[-118.12720281253264,49.26311783388512],[-118.13048111901557,49.26381881491182],[-118.13432327418326,49.26672610785234],[-118.13529606583178,49.268720752590255],[-118.13668944121684,49.27059839586214],[-118.13913726102034,49.27293710374553],[-118.14254308072411,49.272080368194665],[-118.14463921716062,49.26990706750609],[-118.14579657094164,49.26851215368962],[-118.16540456391843,49.27822338207022],[-118.17569194145977,49.2989358058856],[-118.175737230922,49.29902540796294],[-118.1762251979872,49.30000001717016],[-118.18933341097788,49.326100465794624],[-118.2000001512669,49.32463047829351],[-118.20373965806941,49.32411471870387],[-118.20366436577108,49.32438654480238],[-118.20360326532627,49.32455386547551],[-118.20374691664144,49.32470630413541],[-118.20390873315104,49.324853538776416],[-118.20410937620264,49.32497558010508],[-118.20432950328755,49.32508460855797],[-118.20455195384858,49.32519011971975],[-118.2047950226868,49.32527590046286],[-118.20504083774509,49.325355659329254],[-118.20530346924413,49.32540749024905],[-118.20557344301092,49.32544655173052],[-118.20584473868976,49.32547778601326],[-118.20611867755707,49.325493366563066],[-118.20637799807315,49.325554579376586],[-118.20663438538473,49.3256229309957],[-118.20689446383706,49.32567966131134],[-118.20716485587218,49.325706019100934],[-118.20744262720572,49.325709143744845],[-118.2077162568616,49.325695843027454],[-118.20799216024986,49.325679310948864],[-118.20824230827208,49.32561054797031],[-118.20848380343064,49.325521357589416],[-118.20872440242006,49.32543747082739],[-118.20899616176806,49.32540451156401],[-118.2092653084309,49.3253665459733],[-118.20953317113306,49.32532594272248],[-118.20979389972536,49.32526615370486],[-118.21006314962607,49.325237808881354],[-118.21033801101028,49.32522742473103],[-118.2106137332434,49.32522218136416],[-118.21088917016507,49.32521862783681],[-118.21115696897012,49.325260342605006],[-118.21139028494905,49.325352762952825],[-118.21160043159195,49.325469817425905],[-118.21180683338495,49.32558858334405],[-118.21201167037142,49.32570638454528],[-118.21224049139028,49.32580497827194],[-118.21247874682096,49.32589888477569],[-118.21272349348703,49.325985057327955],[-118.21297453395947,49.3260544187675],[-118.21323929970299,49.32609365412503],[-118.21351589541398,49.32610374896929],[-118.21379495334192,49.32610949422981],[-118.21405981514091,49.32614816405896],[-118.2142700656674,49.326264658632425],[-118.21446064800372,49.32639528514966],[-118.21464573101365,49.3265277771012],[-118.21482863515041,49.32666294494545],[-118.21500589813553,49.3268008190688],[-118.21517003117354,49.326944805582514],[-118.21533392840352,49.327090196135096],[-118.21549593032698,49.327236581049455],[-118.2156525263331,49.32738427696165],[-118.21580338755638,49.32753523384084],[-118.21594158925888,49.32768951252259],[-118.21606675275032,49.32784935817485],[-118.21618063251049,49.328014616988746],[-118.21627834180929,49.32818351437467],[-118.21636528601866,49.328354748012],[-118.21643112453181,49.328528131907184],[-118.21646324162568,49.328706719859085],[-118.21648639591469,49.32888720406099],[-118.2165414711884,49.32906291519714],[-118.21667764022743,49.32921903698867],[-118.21681385844776,49.32937487234185],[-118.21695358834113,49.3295303908178],[-118.21709160978854,49.32968579460059],[-118.21723138830498,49.32984103535965],[-118.21736941311724,49.329996429770866],[-118.2175073438424,49.33015238748581],[-118.217643567596,49.33030822157609],[-118.2177814519127,49.33046446509881],[-118.21790653574371,49.330624862528644],[-118.21800268916685,49.330792802431866],[-118.21808973964987,49.33096347049835],[-118.21817128996844,49.33113600441341],[-118.21824766882209,49.33130845424524],[-118.21829023252519,49.33148665429468],[-118.21833288854532,49.33166430865383],[-118.21837374494459,49.33184238517451],[-118.21840245589144,49.3320207248638],[-118.21838249633987,49.332200636214694],[-118.21837121677245,49.33238033266045],[-118.21836164661042,49.332560143512424],[-118.21835036687466,49.332739839859194],[-118.21833738056148,49.332919403811104],[-118.21832263788467,49.33309913054174],[-118.21830447907121,49.33327861041959],[-118.21828632011712,49.333458090246175],[-118.21826987055474,49.333637684478646],[-118.21825688216992,49.33381725712438],[-118.21825072734242,49.33399731438374],[-118.21825463070819,49.33417923903205],[-118.21824501146202,49.33435933561872],[-118.2181865190491,49.33453193572839],[-118.21808076599952,49.33469772620462],[-118.2179581667868,49.334860887109826],[-118.21784235225248,49.3350248187529],[-118.21771818352323,49.33518702404702],[-118.21759406218997,49.33534894293105],[-118.21748161457253,49.33551339817558],[-118.21739607035971,49.33568235029158],[-118.21734070575087,49.335856878020785],[-118.21730375435057,49.336034990468775],[-118.21727856942638,49.33621509379686],[-118.21725675379277,49.336395721187756],[-118.21723161525023,49.33657554712494],[-118.21720481664536,49.33675496336255],[-118.21718836021253,49.33693456548962],[-118.21718704168343,49.33711667368802],[-118.21723169190508,49.33729275987497],[-118.21740270016302,49.33743724335345],[-118.2176551762475,49.337498488932106],[-118.2179316297932,49.33748931821008],[-118.21820554989108,49.33746440973717],[-118.2184771860135,49.33743253636955],[-118.21874534566068,49.33739051567078],[-118.2190105122664,49.33734573408716],[-118.21928333654023,49.33731705902857],[-118.2195554999835,49.33729230102853],[-118.21982871233661,49.33727157452437],[-118.22010287867374,49.33725544302056],[-118.22037804581774,49.337243629226414],[-118.22065269415167,49.337234891690244],[-118.22092867361874,49.33722851297814],[-118.22120447811399,49.33723342878928],[-118.22148096421006,49.3372548162067],[-118.22175646311652,49.3372820616696],[-118.22201670674936,49.33732801396282],[-118.22218663391514,49.33746873499448],[-118.22236775486142,49.33760459638729],[-118.22255466016888,49.33773691863012],[-118.2227416600013,49.337868685954376],[-118.2228983632689,49.33801608279393],[-118.22304188464743,49.3381698881106],[-118.22320973448605,49.33831271125384],[-118.22338711520794,49.33845028300425],[-118.22356819527917,49.33858642841674],[-118.22375306966988,49.33872058395931],[-118.22395401342425,49.33884146784284],[-118.22418870804032,49.338936495457816],[-118.22442349856584,49.339030959035405],[-118.22465013689788,49.339132764427404],[-118.22486857788009,49.339242180021905],[-118.22508498312047,49.33935342180456],[-118.2253153710165,49.339453513454906],[-118.22555002481111,49.33954881531399],[-118.22579405468468,49.33962952009306],[-118.22606549373647,49.33966042569143],[-118.22633716820238,49.3396899352352],[-118.22660548792847,49.339729097378935],[-118.22687523313256,49.339770063722895],[-118.22715090363961,49.33980664953573],[-118.22740288726695,49.339870949119074],[-118.22761422338105,49.339981538681855],[-118.22780438152684,49.340115215975956],[-118.2279947757748,49.340247497534556],[-118.22818938911762,49.34037526663412],[-118.22837257572141,49.34050929067785],[-118.22853494894811,49.34065397151132],[-118.22868779195288,49.340803912565896],[-118.22884623238527,49.34095142337651],[-118.22902179002746,49.34108970291222],[-118.22921636154037,49.341217756234],[-118.22943292652292,49.341328157130555],[-118.22963935128193,49.34144744075971],[-118.22983971073143,49.341571944769065],[-118.23002869006356,49.34170242658035],[-118.23020701264632,49.34184485930666],[-118.23029905163285,49.34200681642973],[-118.23027367903256,49.342188316548835],[-118.23024498285409,49.342369015618864],[-118.23021656959627,49.34254803302717],[-118.23018136924372,49.34272628024703],[-118.23013762813902,49.34290390240074],[-118.23008709826732,49.343080763295596],[-118.23003818303906,49.34325830190535],[-118.22998086693185,49.343434383570354],[-118.22989678044186,49.34360513944357],[-118.22978592179591,49.343770578411345],[-118.22967677229877,49.34393613149959],[-118.22961973564882,49.344110540139795],[-118.22965523788871,49.344289921020724],[-118.22977019612472,49.3444492848058],[-118.22975444389913,49.34462497795448],[-118.22963413284762,49.34478491863916],[-118.22948386984297,49.3449378825883],[-118.22935676983603,49.345097052715005],[-118.22923778807638,49.34525935223561],[-118.22912374264689,49.345423139352285],[-118.2290129717945,49.34558801356562],[-118.22890704394626,49.34575492996847],[-118.22880282383991,49.34592196945916],[-118.22867429199805,49.346079342669],[-118.22849063762469,49.34621490468103],[-118.22827320791552,49.34632511618831],[-118.22804237717627,49.346422482686435],[-118.22780817512465,49.346519324897294],[-118.22758774869756,49.34662677504105],[-118.227369984924,49.346738943535996],[-118.22715820740459,49.34685663147946],[-118.22696708473956,49.34698515222545],[-118.22680464282291,49.347128190197346],[-118.22666447252188,49.34728273007288],[-118.22653702637106,49.34744385519509],[-118.22641276287267,49.347606613080686],[-118.22628370133084,49.34776705104717],[-118.22614200566109,49.34792035769765],[-118.225973477154,49.348058428833724],[-118.22575137879642,49.348165465484946],[-118.22551374597825,49.34826205591459],[-118.2252648460126,49.34834340186894],[-118.2250450184692,49.34844720610269],[-118.22486457135201,49.348584135077076],[-118.22468569158147,49.34872201886328],[-118.22451483521337,49.348863595750245],[-118.22437640736028,49.349017978280116],[-118.22425744481234,49.34917999409163],[-118.22414655419314,49.349345416958],[-118.22404069368376,49.34951177309815],[-118.22393981659849,49.34967933980656],[-118.22384553965948,49.3498487860228],[-118.22374636977715,49.35001647577721],[-118.22363404860434,49.3501801019749],[-118.22350686737725,49.35033954126203],[-118.22337308734018,49.35049708280239],[-118.22323935162409,49.350654355805155],[-118.22310889212193,49.35081270708841],[-118.22298982705071,49.350975275631],[-118.22289991464777,49.35114957185825],[-118.22266997858691,49.351231150007656],[-118.22240332164236,49.35128432955952],[-118.22240321171365,49.35904071036363],[-118.22192801208828,49.35899679188586],[-118.22165452886266,49.35897734347832],[-118.22138019969485,49.35896291216845],[-118.22110524475,49.35894193475816],[-118.2208328467567,49.358916053275244],[-118.22056324262903,49.358883863474595],[-118.22029717487862,49.35883070743754],[-118.22002701920967,49.35881204724743],[-118.219752736978,49.35883836380188],[-118.21949463613143,49.35890206093583],[-118.21924761424737,49.358982110871445],[-118.21900059000059,49.35906216917792],[-118.21885064766977,49.35911018961947],[-118.21845790394713,49.35911068544353],[-118.21818200635526,49.35909529081233],[-118.24350789867854,49.400000028229044],[-118.24554417198965,49.403290407800874],[-118.25602405262572,49.403290123784295],[-118.25686571236992,49.40648285585879],[-118.25820115500515,49.410818439159854],[-118.26136458199318,49.414747602496575],[-118.26426729576966,49.41668462400947],[-118.26523834106793,49.417254899404064],[-118.26988942639895,49.41901294143772],[-118.27347758855556,49.4199233014911],[-118.27454264227629,49.42191679073572],[-118.27261223958646,49.42260400657735],[-118.26981296441201,49.423183990654096],[-118.26500553797634,49.42433481660103],[-118.26062364192482,49.42765218314099],[-118.25888495760626,49.43164803489186],[-118.25864759249063,49.436275388348896],[-118.25655461829177,49.440726383542035],[-118.25314485282048,49.44261969496606],[-118.25535781903194,49.447182036513865],[-118.25930971157892,49.448826764650484],[-118.2638910397971,49.453905033022515],[-118.27075462036399,49.46050992287034],[-118.27568269766705,49.465353993930016],[-118.27577781655478,49.46734862691454],[-118.27832634673582,49.468774165123655],[-118.28027769346048,49.471279849820384],[-118.27940097769444,49.47328081888777],[-118.28003672513967,49.47858533969866],[-118.28312540161458,49.48365937523352],[-118.28366541864978,49.486395028052414],[-118.28456108758863,49.49073311277701],[-118.28414490272938,49.49478521402783],[-118.28153269259484,49.499930659948824],[-118.28135527045909,49.50107024158266],[-118.27646168906219,49.505992753430625],[-118.27481096638145,49.50895993769529],[-118.2743862595693,49.51346953604108],[-118.27563759908068,49.51866331802322],[-118.27697837363613,49.524483352674835],[-118.27688864348899,49.52476937893068],[-118.2742585888729,49.52637129430514],[-118.27057467571365,49.52837527833134],[-118.26338841528984,49.53204124878604],[-118.25875170589556,49.5358196379742],[-118.25805328078464,49.53798587834062],[-118.2571807268136,49.54192652005857],[-118.25631795021685,49.54729156370134],[-118.25581451109652,49.55134850808176],[-118.25476201036321,49.55231624653243],[-118.25055569001333,49.554268734853125],[-118.24519624261181,49.55621712040017],[-118.24282985460835,49.559530826728796],[-118.24257799810003,49.56192636754265],[-118.24285682279194,49.5688312736625],[-118.24411747962418,49.57510955933945],[-118.2449097480476,49.57938924559367],[-118.24809810189318,49.583149751636405],[-118.25134693346942,49.58548455483926],[-118.25328944523379,49.58839269428477],[-118.25304127661026,49.59010967582364],[-118.25173150287317,49.593418716750655],[-118.25147391081907,49.597414389854364],[-118.25228307373301,49.60061189826577],[-118.25308321845137,49.60534601394289],[-118.25108309077436,49.61191495510346],[-118.25002929292543,49.61345777878185],[-118.24900015841304,49.61979346675046],[-118.24689498240147,49.624589579640485],[-118.24250179769247,49.62785160158441],[-118.24058155058898,49.630479943112235],[-118.23970781456897,49.63481880839801],[-118.23972573568385,49.641208318353925],[-118.24078356717735,49.64326576603627],[-118.24212938259345,49.649544283133224],[-118.24224027023617,49.65810073085348],[-118.24207762146612,49.66226859657688],[-118.24497755698839,49.66398022292587],[-118.24779712972192,49.664604117258065],[-118.25229029921707,49.665051621647684],[-118.25528792607619,49.66544708761462],[-118.2631391175767,49.66588936619477],[-118.2686836770832,49.66588573426344],[-118.2714189297608,49.66668111601281],[-118.2723936260847,49.66924278648898],[-118.27363424413198,49.67295384275708],[-118.2767388264063,49.67660122944048],[-118.27744173855876,49.677803179886865],[-118.27630779585877,49.680313151645336],[-118.27614283049739,49.68385170859379],[-118.27527419392793,49.688587142363716],[-118.27512285110689,49.69510005708993],[-118.27574430684201,49.69777722984053],[-118.27442981996107,49.69904095370676],[-118.27267080638212,49.69864383736878],[-118.27037886549701,49.69876126343141],[-118.27011033556037,49.700928955470665],[-118.2698589838508,49.702582135533405],[-118.27012826867163,49.70560976042241],[-118.2703093144248,49.70949007663358],[-118.27111662372805,49.71131411155792],[-118.27245076776762,49.71439479657632],[-118.27509674265305,49.71656213010579],[-118.2771302418223,49.71781557894944],[-118.27731680016032,49.718445212972945],[-118.27653436951202,49.72192330497924],[-118.2763690834323,49.725462771706],[-118.27751746212942,49.72865674619526],[-118.27867366175671,49.730483366838435],[-118.27983359534535,49.733280004664884],[-118.28027218734768,49.737044924187174],[-118.28108610027698,49.74023990301195],[-118.2840885335239,49.742290182335644],[-118.28717275324044,49.74228562930634],[-118.28709115159864,49.74194226879358],[-118.28964571919819,49.741768892413866],[-118.29450455486514,49.74381757200681],[-118.29397949653945,49.74627059547673],[-118.2925844294058,49.74866931409719],[-118.29091633585658,49.750782896874895],[-118.28951265235368,49.752899940806415],[-118.28872454621451,49.75484178999584],[-118.28872936348972,49.75729502388266],[-118.28882553625796,49.760034052510385],[-118.29078199099717,49.76299877231894],[-118.29299326280017,49.76453679394625],[-118.29325284231786,49.76465300637166],[-118.29449807806037,49.766705512806645],[-118.29317682467,49.76899408315734],[-118.29115526094495,49.771047006544684],[-118.28657820948716,49.7744250931398],[-118.28376056058121,49.77870807399931],[-118.2842139500306,49.782306937245814],[-118.28501770402406,49.785898945497635],[-118.28680391559426,49.79194433771247],[-118.28751373828182,49.79303443080589],[-118.28874995242698,49.79348894988124],[-118.29238000062124,49.79399478823065],[-118.29715051579302,49.79461285837937],[-118.30086896954114,49.79592074097152],[-118.30016502782317,49.797693251569605],[-118.29840712166686,49.79900560120126],[-118.29637885986357,49.801919809125714],[-118.29602747946535,49.80375398438102],[-118.29710205079199,49.80574839917599],[-118.29904020870165,49.806599563007346],[-118.30284363381813,49.806995098670484],[-118.30584465848212,49.80767530475148],[-118.30585580950456,49.80818946421155],[-118.30745520781649,49.811550014759796],[-118.30896766697673,49.81434973846351],[-118.31109107908152,49.815597612912136],[-118.31303749836998,49.81582261732492],[-118.31639892845101,49.81627518989932],[-118.32099442441674,49.81695146563613],[-118.3233757275581,49.81774856197744],[-118.32620980418297,49.81951033181733],[-118.32763422625975,49.82076343177399],[-118.32868590699398,49.82099183062615],[-118.33152777827982,49.82121225947115],[-118.3369149217838,49.821089291832486],[-118.34486872148916,49.82107746925169],[-118.35369978075299,49.82208488959425],[-118.35699671000526,49.822384067065315],[-118.35751283526923,49.82556124551994],[-118.35750292470402,49.825714319732036],[-118.35750678552613,49.82585818395422],[-118.35749687487646,49.82601125810271],[-118.35750096531072,49.826164183620904],[-118.35747753929998,49.82627277494527],[-118.35738509141255,49.82648055434707],[-118.35737550412802,49.82664212646721],[-118.357377663211,49.826723124309865],[-118.35737812238034,49.82674124700568],[-118.35737959421344,49.82679505185612],[-118.35738152372478,49.82686698833543],[-118.35738609986846,49.82697528236584],[-118.3574170181367,49.82714535778685],[-118.35742159439208,49.82725365177402],[-118.3574237535854,49.82733464954715],[-118.35742816781585,49.827496072892004],[-118.35743225815332,49.82764899809803],[-118.35743464698503,49.82773905716186],[-118.35744066851343,49.827963909744916],[-118.35744668860372,49.82818877119779],[-118.3574377899928,49.82837752692291],[-118.35743029421964,49.828557905623406],[-118.35739237887277,49.82871127636327],[-118.35732701132127,49.828882512560924],[-118.3572777384957,49.82907239816096],[-118.35725313558142,49.829198436222605],[-118.35721475998031,49.82933368413398],[-118.35719038631369,49.829468783449954],[-118.35719185801393,49.829522588099586],[-118.35718047382574,49.82962185680418],[-118.35717251771693,49.82978411255639],[-118.35716283465923,49.829946247150204],[-118.3570974659849,49.83011747397767],[-118.35703349985833,49.83028032377599],[-118.35696780636619,49.83044305237609],[-118.35686160229307,49.8305972862786],[-118.35675367058296,49.830751398917634],[-118.3567008306672,49.83086867226388],[-118.35664962307071,49.83098662992525],[-118.35659894203117,49.83118489160038],[-118.3566010999552,49.83126588894877],[-118.35653745424528,49.83143723625852],[-118.35645775451717,49.83160011276427],[-118.35637978118122,49.8317631103085],[-118.35636724762412,49.831817072190944],[-118.35634140085314,49.83189835743319],[-118.35630302029843,49.83203360451919],[-118.3561839541833,49.83223329227409],[-118.3560891019632,49.83235101036062],[-118.35599611122869,49.83247847399253],[-118.35591549046413,49.83260510476087],[-118.35590681401005,49.832802920481974],[-118.3558998629877,49.83300086622908],[-118.35586285610806,49.83319048057618],[-118.35578246302414,49.833326172390045],[-118.35568979309858,49.83346213362855],[-118.35559654193042,49.83364327994393],[-118.35549110792167,49.8338241323938],[-118.35538387976906,49.83394268232237],[-118.3552750183825,49.83406054774907],[-118.35518280384085,49.83421463093709],[-118.35511641060492,49.83435017376878],[-118.35501087870551,49.83453158880539],[-118.35497079510725,49.83460396044103],[-118.35494687030595,49.83475718077616],[-118.3549229453446,49.83491040107358],[-118.35489902022319,49.835063621333354],[-118.35490538102698,49.83523423439514],[-118.3549101510527,49.83541434179026],[-118.35491547377124,49.83561200839845],[-118.35490555235157,49.83576508024486],[-118.35490940586314,49.83590894255668],[-118.35487101771973,49.83604418838961],[-118.3548341273422,49.83617049410585],[-118.35482204901149,49.83624257795018],[-118.35482512204072,49.83635981075758],[-118.35482828796187,49.836476489261194],[-118.35484784245781,49.83668307749619],[-118.35487924641922,49.836808520656994],[-118.35489632408085,49.836925605109414],[-118.35490118712372,49.83710515779933],[-118.35490233285839,49.83715046391296],[-118.35490618647641,49.83729432594917],[-118.35488235442924,49.83744698247603],[-118.35484321346041,49.83749285449881],[-118.3546104856774,49.83763029650424],[-118.35448659818279,49.83771262713021],[-118.35441977061879,49.83776729339295],[-118.35437821459082,49.83778586041992],[-118.35415971768326,49.83793221442791],[-118.35402547717779,49.83808674031082],[-118.35394552798319,49.83824055227715],[-118.35393413459242,49.83833981944619],[-118.35393899551175,49.83851936288759],[-118.3539319422259,49.83871786122625],[-118.35393725960844,49.838915535918865],[-118.35395727056512,49.83914023707534],[-118.35394881188681,49.83934712098974],[-118.35395458885678,49.839562908958136],[-118.35392896090165,49.83965326289251],[-118.35386428332629,49.839788925115215],[-118.35378364379962,49.839915553031844],[-118.35364939621222,49.84007007802958],[-118.35361100086045,49.84020532264206],[-118.35361599522273,49.840394490039834],[-118.35360707845325,49.84058324226501],[-118.35361357122157,49.84076346955984],[-118.35361696327217,49.84088920856635],[-118.35362182172031,49.84106876032905],[-118.35364036416217,49.84123965705328],[-118.35364522423764,49.84141919978795],[-118.35366523335702,49.84164390916012],[-118.35369925013453,49.841868461411565],[-118.35370332930474,49.84202138371568],[-118.35370740850215,49.84217430598737],[-118.35368324658762,49.84231846328208],[-118.35354944943015,49.84249110996028],[-118.34554068146969,49.855151842851534],[-118.35267594821089,49.875131137546646],[-118.35522516594098,49.89080938795117],[-118.35519202052177,49.89082967706517],[-118.3549940322168,49.89095656555742],[-118.35479777350737,49.891083565878745],[-118.35460777357228,49.89121496588757],[-118.35443692861334,49.89135732196738],[-118.35430379351311,49.89151474706936],[-118.35421565737352,49.89168550898329],[-118.3541581785806,49.891861240727174],[-118.35411434567713,49.892039059093314],[-118.35406023152183,49.8922155872599],[-118.35399756374169,49.892390955312436],[-118.35393325923414,49.89256564788428],[-118.35387231974191,49.89274113694272],[-118.35381137978212,49.89291662592503],[-118.35377964939092,49.89309529204427],[-118.35377039931565,49.89327553324695],[-118.3537211881965,49.89345410503846],[-118.35356570967288,49.89359865828567],[-118.35336261151204,49.89372461666664],[-118.35320235816988,49.893876757872],[-118.3530564908157,49.89404742606948],[-118.35293598939307,49.8942441740472],[-118.35313626565552,49.8942497330796],[-118.35341171656766,49.89422437224355],[-118.35368991591224,49.89421390958977],[-118.35396960566835,49.89421541698069],[-118.3542466286269,49.8942223895983],[-118.3545818020597,49.89421647706905],[-118.35479973735956,49.894241919833675],[-118.35507661511112,49.89426018570338],[-118.35535414999335,49.89427453542881],[-118.35563046576124,49.894296152161616],[-118.35590453225944,49.894331177262266],[-118.35617069237045,49.89438204539328],[-118.35643572988266,49.89443960847191],[-118.35669684005015,49.89449972669705],[-118.35695738859543,49.89456319656565],[-118.35721555177417,49.89463046015278],[-118.35747315493909,49.89470106645867],[-118.35772664350327,49.89477534540478],[-118.35797601750765,49.89485329701853],[-118.35822464423427,49.89493570881752],[-118.35846906204803,49.89502235650484],[-118.35870726279137,49.89511478175051],[-118.35894097587799,49.895213105675325],[-118.35916875083294,49.89531554449675],[-118.35939414235699,49.89542176827798],[-118.35961570142777,49.89552998429029],[-118.35983688680638,49.895640434692204],[-118.36005634386876,49.895750763566326],[-118.36027972991845,49.89585853606836],[-118.36051899049008,49.896017732892],[-118.36071000233811,49.896078586249864],[-118.36094793134248,49.89617268710128],[-118.3611736129815,49.896277226485594],[-118.36139690981778,49.896385559815776],[-118.36160650873667,49.89650254800839],[-118.36180002693554,49.89663196769222],[-118.36197793049429,49.896771038783136],[-118.36214269809396,49.896915412667894],[-118.36229961389334,49.89706488036581],[-118.36244741445624,49.89721654071797],[-118.362593111927,49.8973703146728],[-118.36273525705747,49.897524409541866],[-118.36287913410891,49.89767861627425],[-118.36302291773059,49.89783338596934],[-118.36316132659495,49.89798890982647],[-118.36329599574037,49.898145872062855],[-118.36342683374185,49.89830481799652],[-118.36355201518711,49.89846619875468],[-118.36366999782229,49.89862877591925],[-118.36377867899513,49.898794654425565],[-118.36387469248945,49.898963038046965],[-118.3639651435555,49.89913329339583],[-118.36404839700326,49.899304736299804],[-118.36413155668554,49.899476742284115],[-118.3642057876103,49.8996498237852],[-118.36427090390062,49.899825089309076],[-118.36433256157713,49.900000112759564],[-118.36442940591242,49.900226210399055],[-118.36453080079824,49.90039383867211],[-118.36465599185648,49.900555217707534],[-118.3647944145109,49.90071073892214],[-118.3649458815764,49.90086151969727],[-118.36512937446756,49.90099871297017],[-118.36534531792509,49.90110934271737],[-118.36559179345294,49.90119441415046],[-118.3658297591147,49.90128850374097],[-118.36606552878725,49.90138526093587],[-118.36629709127666,49.90148624539622],[-118.36651677920409,49.90159544301762],[-118.36673015593884,49.901710981883724],[-118.36693951282072,49.90182963069481],[-118.36714667385647,49.90195094723964],[-118.3673482711391,49.90207414432667],[-118.36754767258682,49.90220000918208],[-118.36774497106985,49.90232798757112],[-118.36793605282779,49.9024617441621],[-118.36810067254034,49.90260722539179],[-118.36821714104853,49.902768549432416],[-118.36828363244238,49.902946167617706],[-118.36834264403284,49.90312665427944],[-118.36843541123307,49.90329367361105],[-118.36859204294777,49.90343463380847],[-118.36879757877782,49.90355527179205],[-118.36902181586244,49.90366874233173],[-118.3692362839514,49.90378830344699],[-118.36941652918944,49.90392412972418],[-118.36958106604082,49.9040701626843],[-118.3697378420381,49.90422074463465],[-118.36989480772534,49.90437019995969],[-118.37006145176483,49.90451411815624],[-118.37024581609643,49.90464627820766],[-118.370447247958,49.90477057763004],[-118.37066209773097,49.90488790985236],[-118.37088508480845,49.904998457429556],[-118.37111447938291,49.90510209942646],[-118.3713469131694,49.90519804872965],[-118.3716017923026,49.90526447248183],[-118.3718759824938,49.90530963487246],[-118.37213918620888,49.90536815565615],[-118.37239743270729,49.90543538247286],[-118.37265530726683,49.90550483460268],[-118.37291327540699,49.90557373187171],[-118.37317171128961,49.905639839411],[-118.37342968096934,49.905708735451675],[-118.37368077836574,49.90578732525011],[-118.3739228996631,49.90587772287684],[-118.37413678349539,49.9059904485854],[-118.37430901035228,49.906132487654574],[-118.3744603396886,49.906284371593244],[-118.37460044857825,49.90644056322251],[-118.37473883008792,49.90659662486881],[-118.3748903494357,49.90674739068198],[-118.37504935029908,49.90689528725212],[-118.37521784238572,49.907038763688],[-118.37539994232519,49.907174137154996],[-118.37559363748528,49.90730297633558],[-118.3757949070601,49.90742839185151],[-118.37599454212618,49.90755312297749],[-118.37619380424155,49.90768008859127],[-118.37639133757985,49.907806933016005],[-118.37656961025037,49.90794429766046],[-118.37672862070654,49.90809219155216],[-118.37687823466324,49.90824395094562],[-118.37702775536378,49.90839627329138],[-118.37717363172956,49.908549462314326],[-118.3773139438237,49.90870453255411],[-118.37745033028006,49.90886215012791],[-118.37757559011477,49.90902351253042],[-118.37766821601025,49.90919164013411],[-118.37772792791168,49.90936820470188],[-118.37776814257128,49.90954623864711],[-118.37775725376241,49.909726357024226],[-118.37771349550465,49.90990418047487],[-118.37765781408964,49.91008004094],[-118.3775697293833,49.91025081729428],[-118.37745644373665,49.91041530305231],[-118.37732323815459,49.910573315201255],[-118.37718348568312,49.91072860912073],[-118.3770452752519,49.91088514105589],[-118.3769203428854,49.911045991447864],[-118.37679550240168,49.91120628741579],[-118.37667220553453,49.911367812498234],[-118.37657738159167,49.91153698712429],[-118.37654063140188,49.911714729685784],[-118.37658968072314,49.91189225006998],[-118.3766985330535,49.91205755850415],[-118.37686896790689,49.91220002581852],[-118.37710930515263,49.912290858001455],[-118.3773781657348,49.91233676124435],[-118.37765703209479,49.912343795283725],[-118.37793183040573,49.91232284315664],[-118.37820442862831,49.91228365802958],[-118.37847071413337,49.91222989598128],[-118.378728862398,49.91216199947401],[-118.37897270089087,49.9120750157711],[-118.3791830587526,49.91195799317717],[-118.37937634737602,49.91182791323384],[-118.37956799758963,49.911697157924365],[-118.3797499215681,49.911561762253044],[-118.37992567212594,49.91142141351369],[-118.38010595814046,49.91128533326375],[-118.38031340873177,49.91116472350943],[-118.3805391898709,49.9110600799709],[-118.3807726839455,49.910961635762774],[-118.38101206977453,49.91086981541784],[-118.38125898323347,49.9107853028171],[-118.38151132058756,49.91071021207048],[-118.38177226238031,49.91064645627433],[-118.38203843996376,49.91059324862824],[-118.3823057877787,49.910543504430464],[-118.38257448976755,49.91049612410919],[-118.38284454895768,49.91045108977586],[-118.38311432657548,49.91040773541008],[-118.38338545997026,49.91036673596062],[-118.3836563118589,49.910327416475404],[-118.3839303437615,49.910290009387886],[-118.38420236571432,49.910254152631694],[-118.38447583624752,49.910220096514955],[-118.38474911955228,49.91018715716139],[-118.38502394564422,49.910155455240535],[-118.38529849039679,49.910125433271176],[-118.38557294213575,49.91009596486737],[-118.38584893672127,49.91006773387938],[-118.38612427795911,49.91004340879934],[-118.38640069442046,49.910023119218586],[-118.38667818617704,49.91000686512913],[-118.38695684892555,49.90999407438829],[-118.38723340651063,49.9099834061485],[-118.38751314457438,49.909974650176636],[-118.3877909657898,49.90996689031898],[-118.38806878691096,49.909959129756906],[-118.38834670205082,49.90995080529393],[-118.38862470970527,49.909941925868885],[-118.38890290397028,49.90993192828403],[-118.38918100401096,49.90992249319008],[-118.38946055462418,49.90991484970204],[-118.38973828254348,49.90990763916535],[-118.39001572959161,49.90990210857942],[-118.39029462579867,49.909898378531324],[-118.390573056013,49.90989743694742],[-118.39085148621587,49.90989649465609],[-118.39112972974331,49.909896669115895],[-118.3914088640646,49.9099019875318],[-118.39168622452537,49.90991792557051],[-118.39196069145386,49.90995118800331],[-118.39221661047154,49.91002215377148],[-118.39245495753647,49.910114503738114],[-118.39269952281055,49.910201064312126],[-118.39296324712467,49.9102567455053],[-118.39323542715151,49.91029323657051],[-118.39351157842007,49.91031642901035],[-118.39379015428582,49.91032510268346],[-118.39406797656416,49.91031732691768],[-118.39434621521974,49.910296574629115],[-118.39462066215275,49.91026708357532],[-118.39489267409047,49.91023120922475],[-118.39516543336012,49.9101908553982],[-118.39543482463709,49.91014970562038],[-118.39570603798104,49.910108121414474],[-118.39597715830482,49.91006709079836],[-118.39624855869727,49.910024378839],[-118.39651841360413,49.90998043719072],[-118.39678836200136,49.90993593167146],[-118.39705676637526,49.909890187537854],[-118.39732708674035,49.909843445748976],[-118.3975958630435,49.90979546535117],[-118.3978630027644,49.90974680062065],[-118.39813023441678,49.90969758097032],[-118.39839928800181,49.90964792685636],[-118.39866670497766,49.909597588419985],[-118.39893412136472,49.90954724932773],[-118.39919999362046,49.90949567166227],[-118.39946759528276,49.90944421378838],[-118.39973365278931,49.9093915173477],[-118.39999980365086,49.909338257050265],[-118.40006679688919,49.90932483341509],[-118.40033313191962,49.90927046376846],[-118.40059783027658,49.9092154098406],[-118.40086271441929,49.90915923779307],[-118.40112605432982,49.909101827210314],[-118.40138976639861,49.909042181036014],[-118.40165029814044,49.90898061272422],[-118.40190956443352,49.9089161341604],[-118.40216901638537,49.908850537498786],[-118.40242865397616,49.908783822737675],[-118.40268656082199,49.908716986965985],[-118.40294619689942,49.908650270966525],[-118.40320573829202,49.908584117556394],[-118.40346509406763,49.9085190720673],[-118.40372444761461,49.9084540348985],[-118.40398370799737,49.90838955138153],[-118.40424469762554,49.90832518761052],[-118.40450395654415,49.908260702851464],[-118.40476503861186,49.90819577461813],[-118.40502429606298,49.90813128861676],[-118.4052835527829,49.90806680199629],[-118.4055445387394,49.90800243510134],[-118.40580379399513,49.90793794723893],[-118.40606477848394,49.90787357909378],[-118.40632403227546,49.9078090899892],[-118.40658328533574,49.9077446002657],[-118.40684426762385,49.907680230247244],[-118.40710351921992,49.90761573928167],[-118.40736459242406,49.90755081373817],[-118.4077031267628,49.907472617884565],[-118.4079655572554,49.90741003724801],[-118.40822807940263,49.90734690170203],[-118.40849013450739,49.9072865637215],[-118.40875490541475,49.90723092672736],[-118.40902038069251,49.907181560060515],[-118.40929349599884,49.907159854590425],[-118.40957374734005,49.90717934047084],[-118.40985189658046,49.90720094034633],[-118.41012976605577,49.907224220227384],[-118.41040423171209,49.90725742765273],[-118.41066851912727,49.90730971397851],[-118.41092491706557,49.90737784704587],[-118.41117618185726,49.90745578752237],[-118.41142688754121,49.90753708884404],[-118.41167796791093,49.907616145649456],[-118.41193390444957,49.90768706559961],[-118.41219899537074,49.907745055932935],[-118.41247472955443,49.907781176602356],[-118.41275076423986,49.90778397415092],[-118.41302875396568,49.90777503279576],[-118.41330594417018,49.90776038301624],[-118.41358369251648,49.90774238003573],[-118.41386172053788,49.90772269563011],[-118.41413946843646,49.90770469124011],[-118.41441838783805,49.90769015885434],[-118.41469464668765,49.90768109306786],[-118.41497479286284,49.90768020968851],[-118.41525471457771,49.907691184034014],[-118.41553203309388,49.9077177937702],[-118.41579936138513,49.907762365353875],[-118.41605960157591,49.907828491723926],[-118.41631003966826,49.90791145361888],[-118.41654604399963,49.90800753807419],[-118.41676578943309,49.908117197173176],[-118.41696717696527,49.90824252797314],[-118.41715477983234,49.90837708373953],[-118.41733271135826,49.90851718017703],[-118.41748564320632,49.908670796124674],[-118.41757532707518,49.90883641473318],[-118.41761022652418,49.90901575442396],[-118.41761833925852,49.909198316058195],[-118.41762327171988,49.90937895661278],[-118.4176124461904,49.90955964218425],[-118.41756556897646,49.90973612374768],[-118.41749302010165,49.909909122193504],[-118.41741527895653,49.910081769020366],[-118.41733061837648,49.910253926179436],[-118.41724095142791,49.91042461419226],[-118.41714445718381,49.91059425822774],[-118.41704141388212,49.91076118648662],[-118.4169316354318,49.91092651645317],[-118.41681175530752,49.91108944455574],[-118.41668340828518,49.91125066309099],[-118.41655178764348,49.91141051466081],[-118.41642180244237,49.911571049429334],[-118.41629354646574,49.91173170418261],[-118.41617384652834,49.91189352285007],[-118.41606424828588,49.91205773419431],[-118.41597003458385,49.91222414450305],[-118.41591140930554,49.912397548467816],[-118.41588837282893,49.91257794614087],[-118.41588254562907,49.912760099848924],[-118.41588190743997,49.91294262299287],[-118.41586476867215,49.913129643004034],[-118.4158778796819,49.91331368177805],[-118.41601692401008,49.91345616862783],[-118.41597078298636,49.91357560970636],[-118.41545347857551,49.91483231597535],[-118.41535824316624,49.91523604252216],[-118.4151024942902,49.9166035992746],[-118.41467363709187,49.91934671679796],[-118.4146869028797,49.92111673213326],[-118.4157608511323,49.924254160986266],[-118.41576446883636,49.92465287477084],[-118.41622717992556,49.92750874451584],[-118.41667546606705,49.93070384374954],[-118.41669574210493,49.93184355510663],[-118.41606827519318,49.93207863843421],[-118.41324420430814,49.93305474964394],[-118.41147613266754,49.93391368201576],[-118.41219044606913,49.93567923846995],[-118.41326458792604,49.93721939504103],[-118.41514233430036,49.940242989159756],[-118.41630089224418,49.94337994954236],[-118.41604426777094,49.944751934803534],[-118.41579533207222,49.94691853138666],[-118.41492297337585,49.94954655562371],[-118.41377978711486,49.951781059543585],[-118.41380350531163,49.954917199846385],[-118.41487536708166,49.95748289924997],[-118.41461731753346,49.95919895212112],[-118.41506979227862,49.961024786356745],[-118.41384473418927,49.96400075352343],[-118.41110638926331,49.96537508764456],[-118.40872154054902,49.96731816867858],[-118.40829519190181,49.970460887739456],[-118.40918680215177,49.972174786790724],[-118.41177238297847,49.973651890579724],[-118.41549585170915,49.97461217185316],[-118.41638768543724,49.97489727405739],[-118.42002282905399,49.97563140939063],[-118.42348960432645,49.97653516888504],[-118.42817778695667,49.97709331507523],[-118.43031162317496,49.97657191377444],[-118.43207542411587,49.97583045350565],[-118.43685006573021,49.9737606283615],[-118.44047998700438,49.9726711290782],[-118.44402806221873,49.97283273683425],[-118.44625055370192,49.974138619749255],[-118.44669857829844,49.97464880542129],[-118.44936453692513,49.976409083145654],[-118.45265842470978,49.977259249148595],[-118.45451437580861,49.97748113927058],[-118.45949063824102,49.97850197804715],[-118.4613536078918,49.98003530962206],[-118.46287447443085,49.981518456389644],[-118.46519272011932,49.984706081021095],[-118.467615092414,49.98921410235885],[-118.46789198585765,49.99126755276443],[-118.46934385944071,49.99520287107203],[-118.46953809507288,49.999026144692614],[-118.46954541947487,49.99999804785048],[-118.46840869898757,50.001440488932914],[-118.46504318110964,50.00253392707918],[-118.45857994517591,50.00352627564962],[-118.45273761568315,50.00525504310548],[-118.44716167289393,50.006644201916444],[-118.44156634559016,50.006375960394315],[-118.433241719419,50.006405875242784],[-118.42696415601259,50.00972686652298],[-118.42698303793495,50.01281319783381],[-118.43010821452182,50.016795928510234],[-118.43447269192025,50.019744691058506],[-118.4400865297427,50.022526351838344],[-118.44310719838143,50.02394141998997],[-118.45057805197689,50.02636520430418],[-118.46194015140283,50.02792793548545],[-118.4651412176916,50.02809177889635],[-118.47419657581419,50.029772419416354],[-118.4827280197591,50.03173838180237],[-118.48958336767984,50.034336811332025],[-118.49269920576455,50.03586817220539],[-118.50001762307745,50.04017464252983],[-118.50103629238184,50.046503889365255],[-118.49707392193514,50.051025190408645],[-118.49609903727028,50.05148615844883],[-118.49248991807116,50.054290079964524],[-118.48249972475574,50.05991992997216],[-118.48178761864013,50.06031858205476],[-118.47294019613706,50.06480051990264],[-118.4687941196174,50.06760758400561],[-118.46605453314578,50.06938620124961],[-118.46206751461608,50.07173782518277],[-118.45357910027634,50.075470680069266],[-118.44620851111007,50.07720679299081],[-118.4406172578689,50.07745249359582],[-118.42356499742348,50.077328939945474],[-118.40669545396922,50.07703513566304],[-118.39941611589407,50.07745620213688],[-118.38671562822054,50.07760546868171],[-118.37934805339725,50.0792182722934],[-118.37934849817461,50.080303323576246],[-118.37972345061594,50.08258928440636],[-118.37974212562034,50.08641073220924],[-118.37762731402393,50.08920961840106],[-118.37479020385035,50.091035418092424],[-118.36751235808079,50.0915139876754],[-118.35490501628973,50.093251519503816],[-118.34602865356375,50.095783376272166],[-118.33919599994921,50.09927796089269],[-118.33067782406872,50.099179822025],[-118.31938938868467,50.098750808210774],[-118.31431465300084,50.09733327555918],[-118.30409128856405,50.09609846451458],[-118.29211599552727,50.09896929624853],[-118.2890995809473,50.103311970892655],[-118.29106785409111,50.10769875441861],[-118.29366497900097,50.1120290472007],[-118.29367951342863,50.11715609719167],[-118.29367962430575,50.11864473792788],[-118.2916564226439,50.12384108492328],[-118.29069719526458,50.128570166184964],[-118.2928350087489,50.13296012275089],[-118.29497954728096,50.134664882052995],[-118.29501042408857,50.13489706932168],[-118.2951650757473,50.13580820133448],[-118.29268175839816,50.137749169226254],[-118.28841812558626,50.13981253584466],[-118.28265031616918,50.14318458220402],[-118.28140484553576,50.144216003020496],[-118.27928142321436,50.147920434206604],[-118.27795634920761,50.15288531907205],[-118.27486762380268,50.1591078779677],[-118.27325997649989,50.160195127155454],[-118.26784507158922,50.162879883030705],[-118.2580657115348,50.166541946458544],[-118.25273984924539,50.16803758626203],[-118.25388700025793,50.17071653131146],[-118.25594731679465,50.17316313507559],[-118.2584492899054,50.17846428374233],[-118.2585528315577,50.18148267505787],[-118.25668022667706,50.18485232907313],[-118.25063915593118,50.18919507639111],[-118.24619238155331,50.19171047962924],[-118.24166581254084,50.19485250287245],[-118.23783756326681,50.1995882488084],[-118.23721710401598,50.199590195343895],[-118.23650735245968,50.20306884769119],[-118.23615876284553,50.206660031410884],[-118.23644279374821,50.21042530533442],[-118.24061956390452,50.213441918529945],[-118.24446270186691,50.21651616646571],[-118.246157827944,50.21953936140153],[-118.24946630394732,50.22261181150824],[-118.25276173766663,50.224034747875805],[-118.25606093286093,50.226424747659316],[-118.25669608406271,50.22773871582668],[-118.2591062390739,50.23252306574113],[-118.26062840367275,50.23640055934662],[-118.26125284368285,50.238108151669906],[-118.2611764458016,50.24119047883508],[-118.26028316710759,50.24558286034419],[-118.26262195183675,50.24922607763437],[-118.26556956076017,50.25310638740213],[-118.26673978135398,50.256409049900014],[-118.26844039974418,50.26205557394107],[-118.2701509326113,50.268718703235756],[-118.27141290082182,50.2761910316806],[-118.27142838684303,50.28212187434908],[-118.26984233903444,50.28965408530306],[-118.2691283234284,50.2908549985459],[-118.26566475522614,50.29672911353593],[-118.26370096290773,50.30134725789304],[-118.26470052176819,50.305569436199775],[-118.26711401431416,50.31052762028371],[-118.26693899698495,50.31600018395736],[-118.26676262256863,50.31628727750535],[-118.2605321296291,50.32114319059514],[-118.25598490813583,50.32713473576387],[-118.2586707183507,50.33067236530246],[-118.25805124293903,50.33329300577464],[-118.25876628877137,50.33711480447031],[-118.26145056931863,50.3396774916537],[-118.26770848898748,50.34069397715841],[-118.27484556130037,50.34045859229105],[-118.28154290465696,50.339652953327864],[-118.28895575882659,50.339125228191584],[-118.29414294363217,50.34020485649323],[-118.29629176253495,50.34442409590841],[-118.29765125391505,50.34995539062676],[-118.2977501117366,50.35343187123792],[-118.29704443579631,50.357478726816474],[-118.2951731798256,50.361476374615215],[-118.2943850539993,50.36501064783711],[-118.29455983275967,50.36655281812469],[-118.29564708307525,50.37111409358044],[-118.29735295560721,50.37396143121334],[-118.30012565911788,50.377438523087676],[-118.30057526584936,50.377953501741885],[-118.29468790826526,50.38474707946909],[-118.28746625215122,50.39023082936972],[-118.2781729544313,50.394578348943284],[-118.27523590605752,50.39577572111715],[-118.26799596454339,50.39664181969047],[-118.25467266906985,50.39682831124178],[-118.25288219368761,50.398596543919275],[-118.25609794102215,50.400475293014736],[-118.26191198487659,50.4013224599887],[-118.26799451181402,50.40217341691791],[-118.27202995472807,50.404394901130466],[-118.27140258691085,50.40673009197717],[-118.26899653360483,50.41175488789197],[-118.26839003933664,50.41751181724336],[-118.26892266881816,50.423726967493955],[-118.26893280322543,50.42515193605624],[-118.26884799090071,50.430344741237114],[-118.26849619104328,50.43593689957032],[-118.26540645528246,50.43710878431993],[-118.26526856423652,50.43703528891324],[-118.26516339551381,50.43694657454693],[-118.26512740067179,50.43688812920837],[-118.26511354943898,50.436865691451395],[-118.2650365120846,50.43683996099023],[-118.26486637976502,50.43677889708938],[-118.2646869737849,50.43669967467788],[-118.26452962143793,50.436615785663996],[-118.26442531134464,50.436563287624644],[-118.26428703104472,50.43653326956193],[-118.26399188683475,50.4365092190339],[-118.26371486095171,50.4365033847757],[-118.26355284685525,50.436374531771385],[-118.26328160875086,50.43621147417844],[-118.26285601154767,50.436225183185364],[-118.26251859896595,50.436251275099174],[-118.26233928563416,50.43621273182327],[-118.26223952509187,50.43619557737993],[-118.26211946139297,50.43618321120218],[-118.26190568569304,50.43611852584169],[-118.26160570063249,50.43600938598264],[-118.26129628537281,50.43594478148543],[-118.26109534651428,50.43592901934518],[-118.26092377166937,50.435917564071865],[-118.2606881261225,50.435897671169236],[-118.2605462223171,50.4358990320445],[-118.2604020983702,50.435954473335414],[-118.26018035240212,50.43602877566752],[-118.25998112035236,50.43608543683699],[-118.25968415277748,50.436164638917454],[-118.25928249443199,50.43628621447161],[-118.25887545335151,50.43643905845497],[-118.25846456866599,50.436614221229284],[-118.2581491235461,50.43673901237088],[-118.25791027049956,50.43676860565358],[-118.25767393551571,50.436793855172304],[-118.25758566884677,50.436884844402755],[-118.25753634379984,50.437006809958326],[-118.25726406811567,50.43718942915828],[-118.25683974815391,50.43736025557295],[-118.25636618471454,50.43740560730119],[-118.25594365066335,50.43740141752074],[-118.25567119641221,50.4373998431125],[-118.2555044056685,50.437401713693625],[-118.25543596995092,50.437398047643036],[-118.25539459063175,50.43741209663757],[-118.25530833224626,50.43743994931782],[-118.255265971822,50.43744940981038],[-118.25523989648664,50.43743628314644],[-118.25518599602792,50.43740990716689],[-118.25515817090569,50.437396657850215],[-118.25512453967174,50.43739656072338],[-118.25503516294731,50.43737051865958],[-118.25493176337247,50.43728191726805],[-118.25485674581269,50.437193045073],[-118.25479140156621,50.43713027863782],[-118.2546882151204,50.43705073127413],[-118.2545858947827,50.436966155293234],[-118.25452361078689,50.43692676211594],[-118.2544079469799,50.43687854733224],[-118.25413730117661,50.43680477124036],[-118.2537476514448,50.436763899616686],[-118.25332914225513,50.43677749999915],[-118.25294149459299,50.43681756036635],[-118.25266552672142,50.436856969958086],[-118.25242059432112,50.43696296082831],[-118.25211162970804,50.43713225775386],[-118.2518965765533,50.437157287987866],[-118.25180237415182,50.43704616894639],[-118.25176203238283,50.43699249346752],[-118.25166979326963,50.43699336616935],[-118.25151009846856,50.43699516774108],[-118.25132834910367,50.43700163276562],[-118.2510497834059,50.437004698483],[-118.25072112817294,50.43699012234299],[-118.25051463229147,50.436965472419175],[-118.25044325606075,50.43694803779144],[-118.25041816293974,50.43693949848549],[-118.25036370783917,50.43692664022949],[-118.25017859469646,50.43690122928839],[-118.24993410282414,50.43688126269949],[-118.24979646454254,50.43687838946717],[-118.24972977987926,50.43687484261249],[-118.24970314823705,50.43687523471801],[-118.24962684984195,50.43687609374841],[-118.2493898765524,50.436874162739],[-118.24908041085764,50.43688183587117],[-118.24888391238136,50.43690195157942],[-118.24883018595044,50.43691570169586],[-118.24876580963348,50.43689875692041],[-118.24855354869871,50.43685618030833],[-118.24831167402186,50.43683130441338],[-118.24821126179297,50.43682822013162],[-118.24820087842305,50.43683709172606],[-118.24816540087166,50.43683743243438],[-118.2480427230605,50.4368299567543],[-118.24782815453342,50.43680077607791],[-118.24761610408578,50.43676726089653],[-118.24740590070519,50.43673330537695],[-118.24717333524401,50.43669552070346],[-118.24687093505617,50.436631367070305],[-118.24656909490932,50.43655369253872],[-118.24643138573275,50.436510132152726],[-118.24638241695614,50.436465448885336],[-118.24633229918251,50.43637605675683],[-118.24609158853629,50.43629306986662],[-118.24566822469302,50.4362526237227],[-118.24546117543177,50.43624148444121],[-118.24531259448926,50.43626100598818],[-118.24493651967732,50.436305801006945],[-118.24462418783637,50.43634037905025],[-118.2445101035003,50.43635497139009],[-118.24445607087954,50.43636021884276],[-118.24433031549522,50.43637060206617],[-118.24412574273339,50.436386183340076],[-118.24402913827551,50.436391832510964],[-118.24395489576781,50.43640131100635],[-118.24380904325358,50.43642554190545],[-118.24373470517284,50.43643557400593],[-118.24371316537757,50.4364577910435],[-118.2436724129443,50.43649899860865],[-118.24365252584333,50.43652190113137],[-118.24355664765102,50.436554150130355],[-118.24329250886413,50.43663787466776],[-118.2430063138223,50.43672626059745],[-118.24284592001554,50.436773189477954],[-118.24277538589536,50.43679196714157],[-118.2426419724331,50.43681593985997],[-118.24233299365517,50.43688238574999],[-118.24193861537682,50.43697164466057],[-118.2416432646321,50.437051474955545],[-118.24151766985908,50.43710198418485],[-118.2414120772685,50.437139199225214],[-118.2411980932497,50.43716824354988],[-118.24098478212447,50.43719338441761],[-118.24080970801289,50.43718165234403],[-118.24060968347669,50.43712975876021],[-118.24041218099168,50.43707351302573],[-118.23999584323775,50.43699230003294],[-118.2393853614614,50.43688672123458],[-118.2390674484919,50.436840665463016],[-118.23899705623847,50.436827812069694],[-118.23891767606439,50.43684652658639],[-118.23870396587208,50.436925303388485],[-118.2383314740569,50.43696976801933],[-118.23802593804234,50.43688277016751],[-118.23793106582039,50.43681677905773],[-118.23790051711401,50.436798813888096],[-118.23782307794373,50.43675495589844],[-118.23773371092574,50.43672890880902],[-118.2376182268086,50.43672079680809],[-118.23737049971311,50.43667853611737],[-118.23701247494807,50.43658784801254],[-118.23675039954843,50.43650558976047],[-118.23667424515968,50.43647482015113],[-118.23665732566438,50.43647024162648],[-118.23661531592946,50.43645712066665],[-118.23657855545541,50.43644436847017],[-118.2364598309851,50.4364139888104],[-118.23635085226702,50.436275826572874],[-118.23624195829746,50.43606534358814],[-118.2359373143493,50.435983491194975],[-118.23575100504041,50.43605740789608],[-118.2357339537264,50.43615620691335],[-118.23565210169384,50.436148195864746],[-118.23556257923998,50.43608201774653],[-118.23552092441274,50.436046322015066],[-118.23550904612418,50.43603305781321],[-118.23547119465046,50.436006108531224],[-118.2354050127426,50.4359483500274],[-118.23536916985425,50.43589950304423],[-118.23536272187262,50.43581373327666],[-118.2353459862369,50.435674701871],[-118.23525871539204,50.43555444335281],[-118.23506578768142,50.43543071971748],[-118.2348548183488,50.435329448052066],[-118.23472071917398,50.43528556522692],[-118.23467742855378,50.435259354272766],[-118.23461506376735,50.43528209083519],[-118.2344820665195,50.43532416246461],[-118.23434465353326,50.43540207347053],[-118.23423505632613,50.43549324783182],[-118.23414549713105,50.43552989253483],[-118.23409223516286,50.43553066925937],[-118.23407095041769,50.43553086383419],[-118.2340159387439,50.43553151755593],[-118.23383537949226,50.4355515969267],[-118.2335882445573,50.43563931474854],[-118.2334069826392,50.43577630010073],[-118.23330252110557,50.43585822541727],[-118.2332339419567,50.43588617434967],[-118.23310335170717,50.43591428458601],[-118.23289898486978,50.43593889950326],[-118.23278109347793,50.435944742160615],[-118.23266453795121,50.43593259007841],[-118.23246643469669,50.43592092506504],[-118.23233111360595,50.435904633145704],[-118.23225332551662,50.43588334556564],[-118.23220422160776,50.43587029362137],[-118.23218457443315,50.435861002749256],[-118.23210637135068,50.43582160638947],[-118.23182614552981,50.43568043116622],[-118.23140813270497,50.435496238798095],[-118.23108174847314,50.43542753334347],[-118.23075625394722,50.435435718417274],[-118.23039789926885,50.43543934118444],[-118.23024278411813,50.435445384208734],[-118.23014422307487,50.4354418439242],[-118.22980073428027,50.435441420654236],[-118.22922340845386,50.43545167190157],[-118.22875066378982,50.43546136526113],[-118.22860089459873,50.43546721246794],[-118.22844850705741,50.43547796473623],[-118.22822290934658,50.43561521450192],[-118.22812549497455,50.43588181722196],[-118.22813131058622,50.43601217338953],[-118.22810138662166,50.43602136853406],[-118.22783455008063,50.43606926963364],[-118.2271735186303,50.43614368194109],[-118.2264909393089,50.43616854607292],[-118.22617582615757,50.43616784813176],[-118.22592116762063,50.436165752495576],[-118.22556096136499,50.43616979027948],[-118.2252940681845,50.43617700225349],[-118.22511175277208,50.436196944306474],[-118.22501360278834,50.436211508160994],[-118.2250009557628,50.43620270845597],[-118.22499169770728,50.436184546884164],[-118.22497658686619,50.43614901476126],[-118.2247294888624,50.435980211152525],[-118.22401680089347,50.435718194897944],[-118.22319485733799,50.43559650322681],[-118.2225883752224,50.4356114481545],[-118.22212158892044,50.43564809204572],[-118.22183094160826,50.43570051345349],[-118.22170024751655,50.43572917293973],[-118.22151711054292,50.43571289166337],[-118.22115608601341,50.43568069771234],[-118.22078703908434,50.43568465788429],[-118.22060415672664,50.435718112495096],[-118.22046378469591,50.435782248893055],[-118.22021271403422,50.43593350159676],[-118.21998554447892,50.43607966570695],[-118.2199192140032,50.43612527564007],[-118.21987321551701,50.436022597963536],[-118.21969617208097,50.43581747393627],[-118.21941855484505,50.435712608019074],[-118.21910369822626,50.43567970758739],[-118.21883507187503,50.4356150228477],[-118.21873132277156,50.435580036793795],[-118.21866420053092,50.43544592149405],[-118.21844389739694,50.435142829011546],[-118.21817540077838,50.43493408175833],[-118.21802965242122,50.43488595810439],[-118.2178950656967,50.43482449990062],[-118.21767606470755,50.43471867647389],[-118.21745670149961,50.43463542693357],[-118.21717759589104,50.434580178430636],[-118.21682888273568,50.43450758722435],[-118.21657306919242,50.43442007778248],[-118.2164239320516,50.43438132254886],[-118.2162295433985,50.43437892939426],[-118.2159432843155,50.434354804567306],[-118.21567585002867,50.43430376420677],[-118.21555714524793,50.43427336209997],[-118.21545206060848,50.43425635843585],[-118.21525151118956,50.434217929969925],[-118.21511579310268,50.43418350824417],[-118.21509148092328,50.434170495358856],[-118.21482045257522,50.43593114989428],[-118.20856413889126,50.43803384061428],[-118.20762122619111,50.44424396671914],[-118.21011310865043,50.44573946182066],[-118.21015529465788,50.44633455123192],[-118.21015070612128,50.446514457060644],[-118.2101408657896,50.44669400175456],[-118.21011887229008,50.44687212036578],[-118.21007928186857,50.447049559223835],[-118.20999593731868,50.44722392336775],[-118.20987369500484,50.44738762699106],[-118.20971390509501,50.44753287329687],[-118.20951949059986,50.44766324005978],[-118.20931515291602,50.447789526180244],[-118.20912384962047,50.44792237164],[-118.20894227080247,50.4480604312837],[-118.20876399927404,50.44819984476217],[-118.20858572509765,50.44833926686101],[-118.20840424043543,50.44847676290799],[-118.20823005554684,50.44862324371488],[-118.20803738067056,50.44875374000736],[-118.20779614752325,50.44883730362605],[-118.20753652377752,50.44890431084209],[-118.20726775087259,50.448962771562854],[-118.2069976155565,50.449018866595324],[-118.20672874532,50.44907787971481],[-118.20646571425154,50.449144083903334],[-118.20620550482475,50.449214445974214],[-118.20595084496127,50.44929366924404],[-118.20571447746075,50.44939000179771],[-118.20548560290949,50.44949420273541],[-118.20525779948211,50.44960243830239],[-118.20503456747261,50.44971495534773],[-118.20482115893255,50.44983211524201],[-118.20461572616296,50.44995435725205],[-118.20442488287846,50.45008440784493],[-118.2042629302205,50.4502317461521],[-118.20412042914747,50.45038950515223],[-118.20399329340377,50.45055059864868],[-118.20386965562294,50.45071194777833],[-118.20374932540396,50.45087465103845],[-118.20363229967523,50.451038726300666],[-118.20352042778178,50.45120372545046],[-118.20341011176065,50.45136996424719],[-118.20330329540629,50.4515364497977],[-118.20320163300062,50.45170385926989],[-118.20310677574753,50.45187288769769],[-118.20302203377115,50.45204488048709],[-118.2029441946554,50.452217929630564],[-118.20286810521449,50.452391102137966],[-118.20278851463395,50.45256402764228],[-118.20270221188191,50.45273478917082],[-118.20259704396828,50.452901950923746],[-118.20247145088884,50.45306429090737],[-118.2023458584549,50.453226621785475],[-118.20224438072596,50.45339292261893],[-118.20217888607776,50.45356627255657],[-118.20214081377149,50.45374495584432],[-118.2021218027438,50.45392610462939],[-118.20211533352176,50.454106447597134],[-118.20211071061064,50.45428636028695],[-118.20210589562242,50.45446738034523],[-118.20210642768683,50.45464821706028],[-118.2021104604834,50.45482930066926],[-118.20212003403732,50.455009084595844],[-118.2021385546973,50.45518836054601],[-118.20216621306311,50.45536603003868],[-118.20221565226198,50.45554070678911],[-118.20231409336624,50.4557086789017],[-118.2024343159645,50.45587365815405],[-118.20254714907502,50.45604038500911],[-118.20263801162557,50.45621120297262],[-118.20272498529961,50.45638401551773],[-118.2028176956632,50.45655440301507],[-118.20292741971708,50.45671864082527],[-118.20307524915043,50.4568674950582],[-118.2032741171695,50.45699790913121],[-118.20346725182456,50.45713073887088],[-118.20364288983839,50.457272513245634],[-118.20381648892176,50.45741583392],[-118.2039786184784,50.45756399536656],[-118.20411284745285,50.45771978943703],[-118.20422063346285,50.457885027565425],[-118.20430606102279,50.45805658981051],[-118.20437651592356,50.45823275512899],[-118.20443812282876,50.458408856918496],[-118.20448358847455,50.45858608044973],[-118.20450921808006,50.45876529522201],[-118.20453290381077,50.45894550285777],[-118.20457117467257,50.45912334885893],[-118.20462704882587,50.45930186644338],[-118.2047233694614,50.45947194488306],[-118.20487879823744,50.4596179319652],[-118.20506242030635,50.45975461566246],[-118.2052594602227,50.45988545599523],[-118.20545669326287,50.46001518855001],[-118.20567881529693,50.460134236420295],[-118.20589762930517,50.46025192960786],[-118.20603517162372,50.460398913537865],[-118.20610427336264,50.46057272116793],[-118.20613254168968,50.46075720098536],[-118.20613659118197,50.46093828307618],[-118.20611418790669,50.4611186304202],[-118.20605842503178,50.46129719568312],[-118.2059739661207,50.461467518676365],[-118.2058268617673,50.46162099581047],[-118.20566769544511,50.461772492515244],[-118.20556105633766,50.461937861755416],[-118.20547416708547,50.46211196352862],[-118.20541869153686,50.462288849283176],[-118.20540552114917,50.462467026881114],[-118.20541997593858,50.4626494027999],[-118.20546302085647,50.46283041321828],[-118.2055397090461,50.46300135639686],[-118.20567055417838,50.46315634700873],[-118.20584593302982,50.46329978687395],[-118.20602296616508,50.4634439124731],[-118.20617938942593,50.463594485754946],[-118.20633211721548,50.46374593725441],[-118.20647920835297,50.46389924206235],[-118.20661696471633,50.4640552876061],[-118.20674120976848,50.464217720906795],[-118.20685019266885,50.46438641861505],[-118.20695752161159,50.46455443909018],[-118.20707632347036,50.46471761808136],[-118.20721835995896,50.46486944416018],[-118.20739296712884,50.46500717622289],[-118.20759450578143,50.46513267665437],[-118.20781344653604,50.46524980270454],[-118.20803851071976,50.46536227938129],[-118.20826036543787,50.46547282988109],[-118.20848834506641,50.46557872204351],[-118.20872069722738,50.46567984140197],[-118.20895888325546,50.46577798132685],[-118.2091956089276,50.46587432733622],[-118.20943418392868,50.46597023354594],[-118.20967480171505,50.46606458360739],[-118.20991755667623,50.46615683273548],[-118.21016079700418,50.46624628601375],[-118.21040831370006,50.46633152006827],[-118.2106642861653,50.46640886988466],[-118.21092316933526,50.46647965333108],[-118.21118215079899,50.466549873533054],[-118.21148315339165,50.46662305275499],[-118.21120417850429,50.46659662355458],[-118.21092695478694,50.46657031697867],[-118.21064798055119,50.466543886379085],[-118.21036852382512,50.466520241455314],[-118.2100883895671,50.4665005074717],[-118.20980757770516,50.46648468442318],[-118.20952667008545,50.4664694143668],[-118.20924624708917,50.466451348295536],[-118.20896698359324,50.466426592436726],[-118.2086883983483,50.46639792423864],[-118.20841185528595,50.466367699740296],[-118.20813394720093,50.46633512744502],[-118.20785788786436,50.4663021151956],[-118.20758017563516,50.46626841624767],[-118.20730431062246,50.46623428628639],[-118.20702640415817,50.46620171121342],[-118.20674645776614,50.466170682083046],[-118.20647049798978,50.466137103746284],[-118.20619589183981,50.46609571933903],[-118.20592876515398,50.46604186220419],[-118.20566717377082,50.46597652531391],[-118.20540868729381,50.4659035058399],[-118.20515253468757,50.46582725125715],[-118.20489618782992,50.46575212133564],[-118.20463722072338,50.465681886402145],[-118.20437417210427,50.46561475298312],[-118.20411064107465,50.46555040528909],[-118.20384526244351,50.46548649615534],[-118.20358153776846,50.46542327245326],[-118.20331810501519,50.46535836916465],[-118.20305681101557,50.465291356044084],[-118.20279784941471,50.46522111678026],[-118.20254141388122,50.46514653506318],[-118.2022911996294,50.46506674150954],[-118.20204380279031,50.464980926598784],[-118.20180087505582,50.46488978537659],[-118.20156232198522,50.464793862636704],[-118.20132619923008,50.464694151251685],[-118.20109425602412,50.464590783647786],[-118.20086454799747,50.46448475268815],[-118.2006405781846,50.46437629643277],[-118.20041874751874,50.46426573055738],[-118.20020109802674,50.464151499620414],[-118.19999939820593,50.46403727234143],[-118.19978446249378,50.463907412036434],[-118.19958528280492,50.46377867177706],[-118.1993937857551,50.463646513582205],[-118.1992098736959,50.46351150011627],[-118.19904919933748,50.46336512632872],[-118.19890612157414,50.46320926333941],[-118.19876508526029,50.46305185363685],[-118.19861228757749,50.46290095422444],[-118.19843654583163,50.462759735505394],[-118.19825088959273,50.46262459677864],[-118.19805191521128,50.462494728311476],[-118.19784438802124,50.462373304833655],[-118.19762675416817,50.46225906858221],[-118.19739725989011,50.46215191382148],[-118.19715882829273,50.462055418669244],[-118.19691087491563,50.461972949892846],[-118.19664601949522,50.46191639843195],[-118.196366688105,50.46188199400618],[-118.19608638829315,50.461853170470036],[-118.19580754801767,50.46182614873354],[-118.19552812827705,50.46180246631898],[-118.19524841736957,50.46178046214171],[-118.1949687067348,50.46175845725918],[-118.19468928630283,50.46173478166171],[-118.1944107390857,50.461706077472876],[-118.1941328651037,50.46166329058132],[-118.19385528780023,50.461629003417684],[-118.19357870458744,50.46162981571864],[-118.19329980138158,50.461654193534386],[-118.19302187910479,50.46169332994557],[-118.1927495041084,50.461741336927865],[-118.19248112105099,50.46179696565973],[-118.19222237519374,50.46186852484096],[-118.19196489367307,50.46194300228282],[-118.19170195987518,50.46200805411247],[-118.19143113830556,50.46205729778254],[-118.19115515643529,50.46209543682501],[-118.19087586124502,50.46212204115673],[-118.19059500355883,50.46213723440149],[-118.19030675000165,50.46214399451652],[-118.19002334970435,50.46213301661489],[-118.18975364853029,50.462094185991596],[-118.18948713132593,50.46200642882533],[-118.18931006405069,50.46187300965452],[-118.18924861278137,50.4617065169735],[-118.18923645983489,50.46152146717665],[-118.18923004434888,50.4613339931101],[-118.18921020973056,50.46115236008976],[-118.1891998076573,50.46096743383158],[-118.18917443151521,50.46078709970987],[-118.18910432720406,50.460619425753656],[-118.18896129248044,50.46046354941912],[-118.18875807244869,50.460327711384664],[-118.18852482281241,50.46023213112163],[-118.18825939976261,50.460168746933206],[-118.18797385930695,50.46012936134621],[-118.18769086016381,50.460116144848826],[-118.18741487752031,50.4601339337802],[-118.18713949532301,50.46018905491644],[-118.18688123903519,50.46026798594403],[-118.18668154380352,50.46038721537726],[-118.18651220233276,50.460535709977755],[-118.1862837112,50.46063708357857],[-118.18603926565577,50.46072828907787],[-118.18578567395325,50.460810937571104],[-118.18552984216275,50.46088607759495],[-118.18527118674918,50.4609570669698],[-118.18500961152681,50.46102445936218],[-118.18474667305752,50.46108949479251],[-118.18448402413453,50.46115285961085],[-118.18421797115539,50.461215413691384],[-118.1839553223102,50.46127876831848],[-118.1836909206092,50.46134200749293],[-118.18342642190336,50.461405799716175],[-118.18316231062492,50.46146735871077],[-118.18289518349613,50.46152587432818],[-118.18262707995422,50.46157980927305],[-118.18235479242179,50.46162722814547],[-118.18208153020304,50.46167005738702],[-118.18180389006595,50.46170748680617],[-118.18152556582633,50.461738656589475],[-118.18124684957925,50.46176188782768],[-118.18096618503874,50.46177594042652],[-118.18068045952498,50.46177833417965],[-118.18039881444047,50.46176745550796],[-118.18012377725758,50.4617389630907],[-118.17985903751763,50.461671647452185],[-118.17961646443473,50.46157877841837],[-118.17939197462441,50.46146345734763],[-118.1792328303215,50.46131885724029],[-118.17916917885915,50.46114485086102],[-118.17912264203589,50.46096414483521],[-118.1790429446551,50.460790702748106],[-118.17895605315269,50.460617872601226],[-118.17885019993649,50.460452180664426],[-118.17871050798203,50.46029765504869],[-118.17853892223503,50.46015330318001],[-118.1783497374097,50.46001844567555],[-118.1781506375695,50.459889657416085],[-118.1779380223055,50.459767262196486],[-118.17770353275125,50.45966874902359],[-118.17744532591131,50.45960470912079],[-118.17716874508496,50.459564798701564],[-118.17688429037652,50.4595395903579],[-118.176605576098,50.45952212816612],[-118.17632336332747,50.45951458798867],[-118.17604202775428,50.45951218979768],[-118.17575894018367,50.45950967594191],[-118.17547672763241,50.45950213361205],[-118.17519548655528,50.4594890091369],[-118.17491463420733,50.45947365137874],[-118.1746350475716,50.45946120305602],[-118.17435254328906,50.45945533675975],[-118.17407081958275,50.459455166141176],[-118.17378841501429,50.45945890626374],[-118.17350688565791,50.45946779732231],[-118.17322613658733,50.4594823840692],[-118.17295239060496,50.45951781566277],[-118.17268351131345,50.45957618292317],[-118.17240840391878,50.459619427137994],[-118.17213125218237,50.459643875766695],[-118.1718502055544,50.45962962653865],[-118.17157596308522,50.45958647729134],[-118.17131027685527,50.45952472248324],[-118.17104478573064,50.4594618507562],[-118.17077482350228,50.45941448231995],[-118.17049727778169,50.459380136659355],[-118.17021798289785,50.45935583679673],[-118.16993713307241,50.45934046644321],[-118.16965414490346,50.45933737441572],[-118.16936999025738,50.45934097932021],[-118.16908797486711,50.45934247493448],[-118.16880761291863,50.4593344770332],[-118.1685303605547,50.45930862696805],[-118.16825806809858,50.45926447722886],[-118.16798947114535,50.45920928809078],[-118.16772194515276,50.459147954332785],[-118.1674544183314,50.45908662885558],[-118.16718572696067,50.459031991431836],[-118.16691314499236,50.458989517251965],[-118.16663793882424,50.458972278065694],[-118.16635582917472,50.45898449087773],[-118.16607216182135,50.45900564206484],[-118.16579034279196,50.45901618349893],[-118.16550813479901,50.459018786289064],[-118.16522592677352,50.459021388361734],[-118.1649447890724,50.459028016243444],[-118.16466413646144,50.459042027675416],[-118.16438542819412,50.45906521665828],[-118.16410574689836,50.45909398627408],[-118.16382917698624,50.45912523585694],[-118.1635507575698,50.45916709373807],[-118.1632749637072,50.45921421780421],[-118.16299965876878,50.45922803466387],[-118.16272698222106,50.45919627434729],[-118.16264130874903,50.459179469891986],[-118.16245634935129,50.4591426265906],[-118.16218455204968,50.45908549635441],[-118.16191032212693,50.45904232320015],[-118.1616321035298,50.4590118667447],[-118.16135125990104,50.45898630419565],[-118.16107041659036,50.458960740935275],[-118.16079200599,50.4589313897028],[-118.16051865210072,50.458893364860735],[-118.16025561077466,50.45883685049582],[-118.16001066081232,50.458747725549664],[-118.15976882634726,50.45865090143963],[-118.1595150282993,50.45857187884487],[-118.15925354747692,50.45849627046406],[-118.15898837198205,50.45843169097009],[-118.1587167730208,50.458393785814074],[-118.15844089120864,50.45839059920718],[-118.15815965646544,50.45840794297867],[-118.15787841959232,50.45843545651158],[-118.15759591798158,50.4584600589871],[-118.15731361437547,50.4584733650836],[-118.1570291692215,50.45848878772474],[-118.1567451148868,50.45850196819753],[-118.15646339564738,50.45850176182419],[-118.15624158495162,50.45848319482529],[-118.1415667260132,50.46047250194555],[-118.14157177656355,50.46048416188159],[-118.1415874000367,50.460546858001116],[-118.14157462501842,50.46060980476311],[-118.14154765301852,50.46067286344446],[-118.14152058260582,50.460736484691594],[-118.14149554883281,50.46080873092094],[-118.1414685766036,50.46087178956754],[-118.1414698104118,50.46092556122898],[-118.1414709474453,50.4609798865342],[-118.14147199331396,50.46102459504197],[-118.14150162439967,50.461078124999496],[-118.14154545576777,50.461131525162465],[-118.14156098109048,50.46119478381241],[-118.141548205852,50.46125773052081],[-118.14153543213882,50.46132066829307],[-118.1415512438137,50.461392427495085],[-118.14158087679571,50.46144594847724],[-118.14165281826601,50.461490615218054],[-118.1417513141868,50.461525307876194],[-118.14186585231703,50.46156961182466],[-118.14197873854377,50.46161322866131],[-118.14206497626157,50.46165722056791],[-118.14216366407118,50.461700958131374],[-118.14227820305176,50.4617452616449],[-118.14240528741108,50.4617887660192],[-118.14251925769263,50.46180590666057],[-118.14267436226201,50.46183105142131],[-118.14278814297882,50.461839137580256],[-118.14287244165145,50.46187395024089],[-118.1428735803968,50.46192827546782],[-118.14283435076787,50.4620006339857],[-118.14279355874616,50.46208193121424],[-118.1427669671107,50.46216309848037],[-118.14275457281688,50.46224415365395],[-118.14272973150733,50.46232544529681],[-118.14270313805292,50.462406621453],[-118.14267654606361,50.46248778866485],[-118.14263537382541,50.46255097739128],[-118.1425940132948,50.462605102970755],[-118.14256831423651,50.46265074033266],[-118.14254153057232,50.46272286222167],[-118.14251436893788,50.462776866777645],[-118.14251493810613,50.46280402936303],[-118.14251550727506,50.46283119194747],[-118.14251674238393,50.46288496346678],[-118.14250415928201,50.462956955416956],[-118.1425057738246,50.46302883531306],[-118.14246635293524,50.463092139410556],[-118.14242489337471,50.46314682746722],[-118.14238372018313,50.46321001604874],[-118.14239934572744,50.463272711842244],[-118.14245775749393,50.46334410784393],[-118.14251598128033,50.46340644069075],[-118.14253179524458,50.46347819956753],[-118.14250491426053,50.463550875020125],[-118.14246412180545,50.46363216304178],[-118.14242313793432,50.463704405785094],[-118.14238371633911,50.463767709800194],[-118.1423711312181,50.46383971058631],[-118.1424151560038,50.46390216440618],[-118.14248535166045,50.46394670606439],[-118.14257159433,50.463990697450356],[-118.1426296293565,50.464043976006586],[-118.14265964331165,50.464115613815196],[-118.14266106994609,50.46417843049695],[-118.14264819862706,50.464241930745395],[-118.14264943393259,50.464295702169295],[-118.14264962368873,50.464304756347204],[-118.14265142982885,50.46438568136863],[-118.14265285489957,50.46444850695924],[-118.14265428153506,50.46451132361517],[-118.142655230326,50.46455659449189],[-118.14265684516636,50.4646284742435],[-118.14261742309188,50.46469177826916],[-118.14254784918403,50.464755208768764],[-118.1425063881947,50.46480989674312],[-118.14250705571789,50.464836496684875],[-118.14250781463781,50.464872713372856],[-118.14250961898553,50.46495364726933],[-118.14252562477692,50.46503445124986],[-118.14256945963736,50.46508785967663],[-118.1425992860023,50.46515043431068],[-118.14260090077482,50.46522231401027],[-118.1425881274075,50.46528525159456],[-118.14256299604676,50.4653580513028],[-118.14256423128136,50.46541182265335],[-118.14257985783857,50.465474518250474],[-118.14265034263734,50.465527560236936],[-118.14272248144738,50.46558128022234],[-118.14282273929682,50.46561608722638],[-118.1429349687802,50.46563310295927],[-118.14302045576467,50.465640877255645],[-118.14309145609235,50.46564027202177],[-118.14318929579656,50.465648354385436],[-118.14326067590254,50.465665857367036],[-118.14333272408655,50.46570996021034],[-118.1433891999452,50.46577217695386],[-118.14341921781575,50.46584380547407],[-118.14342054723684,50.465907184586996],[-118.14342197342611,50.465970010049425],[-118.14342378101757,50.46605093489139],[-118.14345379756764,50.466122572307256],[-118.14351240618787,50.46620301272765],[-118.14358464386646,50.466256178462544],[-118.14364287296542,50.46631851049348],[-118.14370110066452,50.46638085141887],[-118.14375757943104,50.46644305899357],[-118.143829721022,50.46649677819868],[-118.1438739388681,50.46656829431495],[-118.14388956764488,50.46663098963804],[-118.14387660410281,50.46668488204146],[-118.14384944168155,50.46673888665916],[-118.14376712983572,50.46679406279082],[-118.14368297390799,50.46683950667829],[-118.14360066167518,50.46689468267971],[-118.1436161002242,50.46694832386926],[-118.14364379709905,50.46699267432859],[-118.1436735278877,50.467055811101254],[-118.14367476605246,50.4671095733966],[-118.14366374276986,50.46717264427413],[-118.14365068203826,50.467227090260025],[-118.14362332905635,50.46727204064314],[-118.14361055497392,50.4673349871152],[-118.14361198303351,50.46739780353439],[-118.14359892217433,50.46745224949899],[-118.14361416938812,50.467496845441175],[-118.14368660079586,50.4675590562347],[-118.14377323152931,50.46762115476862],[-118.14381551124106,50.4676834833557],[-118.14384524272496,50.46774662002835],[-118.14387507105488,50.46780920304345],[-118.14390490102816,50.467871777115924],[-118.14393472952351,50.46793436010535],[-118.14393567967066,50.46797963077918],[-118.14395130902193,50.468042325984136],[-118.14395149905499,50.4680513801178],[-118.14395254598392,50.46809609714048],[-118.14395349615235,50.46814136780517],[-118.14395473468034,50.46819513002527],[-118.14395578161582,50.46823984703986],[-118.14395692182568,50.46829417182756],[-118.14398656219156,50.46834769171023],[-118.14401601101953,50.46839216638143],[-118.14403183067614,50.46846391567199],[-118.1440189600635,50.468527415742464],[-118.14402194785715,50.46858131124691],[-118.14403757753658,50.46864400639301],[-118.14405320569877,50.468706710461646],[-118.14409567687908,50.46877809298378],[-118.14413942047142,50.4688320541873],[-118.14419727192718,50.46887628641044],[-118.14425531515467,50.46892956379473],[-118.1443135470682,50.46899190419747],[-118.14438423108209,50.46905399004439],[-118.14445618745339,50.46909865454769],[-118.14452824072475,50.469142765357574],[-118.14462665879827,50.46917800878027],[-118.14472730649292,50.469230922148405],[-118.14475675662709,50.46927539657451],[-118.14478639858581,50.46932891617876],[-118.14480155085211,50.469374065498684],[-118.14483100115284,50.469418539897326],[-118.1448745560208,50.46946344665221],[-118.14491664874632,50.46951672056215],[-118.14496030054748,50.46956107363359],[-118.14501834555635,50.469614350573806],[-118.14510488531535,50.469677001555205],[-118.14520359204597,50.46972074491186],[-118.14528965964979,50.469755670829805],[-118.14533321529946,50.469800577386025],[-118.14536266640239,50.46984505162019],[-118.14536361802207,50.46989032217487],[-118.14537905969105,50.4699439629205],[-118.14542204460257,50.469961707102264],[-118.14546375618909,50.46999688148326],[-118.14554972621335,50.47003236976206],[-118.14562140285129,50.470058362665064],[-118.14571944298228,50.47007549686312],[-118.14581933073289,50.47009220168189],[-118.14590492035089,50.470109581466716],[-118.14598914013284,50.470144945049206],[-118.14607501868544,50.470170816233676],[-118.14613220557483,50.470188438702486],[-118.14614484673908,50.47019724702065],[-118.14617448938894,50.47025077512294],[-118.14624673824228,50.47030392992983],[-118.14631850793194,50.47033953905306],[-118.14641683621282,50.470365173088084],[-118.14648841558213,50.47039172799562],[-118.14657486659847,50.47044476109368],[-118.14660450992092,50.47049828906481],[-118.14660565337601,50.4705526136735],[-118.14659288408478,50.47061555130329],[-118.14658011319766,50.47067849785647],[-118.14652473885188,50.4707417999508],[-118.14648502801236,50.47079661334696],[-118.1464722569236,50.47085955987369],[-118.14647368907768,50.47092237598206],[-118.14647511967547,50.470985201015296],[-118.14650495535277,50.47104777414333],[-118.1465051459108,50.471056828239035],[-118.1465204910379,50.47111103132298],[-118.14653593293924,50.471164680756495],[-118.14655175757373,50.47123642944189],[-118.14656719955514,50.471290078862715],[-118.1465967466867,50.47134416042458],[-118.14664078464004,50.47140661198869],[-118.14668326089344,50.4714780022123],[-118.14671290658333,50.47153152115641],[-118.14672834885728,50.4715851705352],[-118.14674369443208,50.47163937355293],[-118.14674531759768,50.471711243685164],[-118.1467753431846,50.471782879701315],[-118.14683320256646,50.47182710145989],[-118.14690526251708,50.47187121057839],[-118.14698967702911,50.471915627410326],[-118.14707575020086,50.47195055184902],[-118.14716134382694,50.47196793062549],[-118.14723184415132,50.47202096927709],[-118.14729008572526,50.47208329895066],[-118.14736204980217,50.47212796140344],[-118.14743411075005,50.47217207016235],[-118.14744974641313,50.472234764549576],[-118.14745117841126,50.472297589468255],[-118.14745251368467,50.472360968026784],[-118.14745375649667,50.47241472992714],[-118.1474549977515,50.4724685007536],[-118.14747034449937,50.47252270361168],[-118.14748559881187,50.47256728981267],[-118.14750104235875,50.472620939015314],[-118.14753040071011,50.47266596616387],[-118.14754622745203,50.4727377145743],[-118.14757625499314,50.472809350282986],[-118.14757768874574,50.47287216622569],[-118.1475647278151,50.4729260586436],[-118.14758007485037,50.47298026145591],[-118.14763831814325,50.47304259087284],[-118.1477228322947,50.473086453438675],[-118.14783731307983,50.47312113394784],[-118.14794975397375,50.473147198523634],[-118.14799274294697,50.47316494164008],[-118.14804974350228,50.47317350898671],[-118.14814925717855,50.473172103507025],[-118.14824673228411,50.47316207320029],[-118.14844314561824,50.47313363621642],[-118.14852902970482,50.47315951433702],[-118.14861354650088,50.47320336728893],[-118.14871391856157,50.473247785287256],[-118.1488003761043,50.47330082539503],[-118.14888527551908,50.47336278626444],[-118.14895772204744,50.47342500209756],[-118.14901577674499,50.47347827669346],[-118.1490881269275,50.47354104607786],[-118.14915882307494,50.47360313746569],[-118.14921687823902,50.473656411944695],[-118.14926072939257,50.47370981715974],[-118.14933298741857,50.47376296973101],[-118.1494174078585,50.47380738461344],[-118.14951806993463,50.473860302265685],[-118.14961873380658,50.47391321089348],[-118.14970344272523,50.47396612596252],[-118.14978980610356,50.47401971889834],[-118.14988833718365,50.474054394869334],[-118.1500028205286,50.47408908203418],[-118.15011526508484,50.474115144386175],[-118.15021535627875,50.474140890292034],[-118.15032955205865,50.47416707670785],[-118.15041387957606,50.474201883110815],[-118.15047164736932,50.474246665417],[-118.15051550214089,50.4743000611678],[-118.15055935545664,50.47435346582745],[-118.15058890937794,50.4744075461221],[-118.15061875302175,50.47447011787997],[-118.15063225855732,50.47451458819494],[-118.15063496654952,50.47455998271886],[-118.15063515795094,50.47456903676811],[-118.15063640461526,50.474622798486095],[-118.15063784112543,50.47468562317814],[-118.15063908779615,50.47473938488824],[-118.15065443914062,50.47479358715403],[-118.15068389874607,50.47483805970212],[-118.15069953984758,50.47490075342505],[-118.15072938241138,50.47496333404481],[-118.15075737735775,50.47502634402359],[-118.15080142466205,50.47508879365327],[-118.15087368515117,50.47514195406117],[-118.1509315528557,50.47518617350057],[-118.15100371696272,50.47523988746318],[-118.15107422691449,50.47529292346075],[-118.151160692709,50.47534595266699],[-118.15126068898127,50.47537226016723],[-118.15134501946892,50.475407065811254],[-118.15143129423534,50.475451040761286],[-118.15150326778112,50.4754957003443],[-118.15154537239889,50.47554898027362],[-118.15158922970647,50.47560237551443],[-118.15163308555844,50.4756557796641],[-118.15169104804083,50.47570961529032],[-118.15176312049857,50.475753712114816],[-118.15184783538646,50.475806625427694],[-118.15193362983132,50.47583305447576],[-118.15200531935939,50.475859043071445],[-118.15208936295278,50.47588534774344],[-118.15220385263443,50.47592003256074],[-118.15231630302404,50.475946092624866],[-118.15244451611201,50.47596310054614],[-118.15254266989467,50.47597966601821],[-118.1526424765665,50.47599691822367],[-118.15274014860462,50.47599593803756],[-118.15285396683824,50.47600401373844],[-118.15298071778926,50.47602939718103],[-118.15309521008062,50.47606407214333],[-118.15317944660954,50.47609943001163],[-118.15326572292811,50.476143412428634],[-118.15333731549262,50.47616996273136],[-118.15343547005293,50.47618652741014],[-118.15353527752362,50.4762037788088],[-118.15363314199995,50.47621185186341],[-118.15374696093794,50.47621992664691],[-118.15385931756889,50.476236377466385],[-118.15395999183082,50.47628928200337],[-118.15398955109526,50.47634336126359],[-118.15403341050794,50.476396764416435],[-118.1540488647087,50.476450403524616],[-118.15407871294204,50.476512983124316],[-118.15407909714345,50.4765310911672],[-118.15409426112525,50.47657623881664],[-118.1541099075672,50.476638931924484],[-118.15412555249365,50.47670163395512],[-118.15412680337519,50.47675539549207],[-118.15412795604442,50.47680971960284],[-118.15412901326067,50.476854436044725],[-118.1541730670153,50.47691688419597],[-118.15421663841674,50.47696178686968],[-118.15423228360343,50.47702448886025],[-118.15424754611867,50.47706907388412],[-118.1542629025899,50.47712327549497],[-118.15427835575333,50.47717692345289],[-118.15430607094376,50.47722126176114],[-118.15433563123344,50.47727534086699],[-118.15437968412598,50.47733779783351],[-118.154466157723,50.47739082433208],[-118.15446721528797,50.47743554073875],[-118.15446856056738,50.477498918810134],[-118.15446981187968,50.47755268029031],[-118.15447106163604,50.47760645069667],[-118.1544867089587,50.47766914367166],[-118.15447385043262,50.477732644230784],[-118.154446884665,50.47779571363893],[-118.15437867553463,50.477841157797094],[-118.15430842477184,50.47787798626409],[-118.15423973288348,50.477905884897886],[-118.15414136287062,50.47795145856181],[-118.15411410773433,50.47800602751411],[-118.15411535863839,50.4780597889647],[-118.15414501590772,50.47811331441864],[-118.15421728673806,50.47816646352242],[-118.15428926737215,50.478211121149954],[-118.15435940149935,50.47824604686353],[-118.15445959824753,50.47828140539037],[-118.15455989336591,50.47831620124863],[-118.15464394302478,50.47834250390751],[-118.154715828778,50.478377553602435],[-118.15477370439686,50.478421770862994],[-118.15481766236351,50.478484781214135],[-118.15484576185447,50.47854723624122],[-118.15484720590894,50.4786100516443],[-118.15485059183237,50.478682054177106],[-118.15485222816322,50.47875392356498],[-118.15486806712329,50.47882567932148],[-118.15489811189792,50.47889730358131],[-118.15494060826596,50.478968689984896],[-118.15497065325098,50.479040314212405],[-118.15500040782533,50.47910344701085],[-118.15503045143612,50.479175080139996],[-118.15504590777361,50.479228718925306],[-118.1551043602033,50.47930010686335],[-118.15513402101983,50.479353623041405],[-118.15514986063849,50.47942537870468],[-118.15516570186638,50.479497125429546],[-118.1551670481883,50.47956050333111],[-118.1551686834962,50.47963238156607],[-118.15517032036816,50.47970425086491],[-118.15517195568644,50.47977612908703],[-118.15517301556564,50.47982083642548],[-118.15517445855757,50.479883660655354],[-118.15517648011894,50.47997363789384],[-118.15518005900677,50.4800546942755],[-118.15516787598975,50.480144794089476],[-118.15512670513341,50.480207986067704],[-118.15508543750975,50.48027173167156],[-118.15505847263847,50.48033479210077],[-118.15504707741385,50.480379755123536],[-118.15502049703707,50.480460923486774],[-118.15502251675838,50.48055090959364],[-118.15500994868266,50.48062290138743],[-118.15499757131072,50.48070395607628],[-118.15499920794899,50.48077582528257],[-118.1550010353377,50.48085675738352],[-118.15500238146892,50.480920135180696],[-118.15503223554036,50.48098270524895],[-118.15509049789762,50.4810450390706],[-118.15514856963989,50.481098309958696],[-118.15516402521769,50.481151957529846],[-118.15516537158665,50.48121533530194],[-118.15512458597047,50.481296626198635],[-118.15507115260688,50.48136911882322],[-118.15501596936355,50.48144147828003],[-118.1549609766832,50.48152290059679],[-118.1549077366364,50.48160443815587],[-118.1548525512842,50.48167680644025],[-118.1548403671752,50.48176690603791],[-118.1548414252136,50.48181162219942],[-118.15484238659572,50.481856892003066],[-118.15484344619723,50.48190159922982],[-118.15484459986072,50.481955922987815],[-118.15486063221367,50.48203673242036],[-118.15486111499351,50.48205427776284],[-118.15486246096388,50.48211765546795],[-118.15482342372323,50.482199079301274],[-118.15476804680408,50.48226238460487],[-118.15474088648226,50.48231639977634],[-118.15471391990752,50.48237945996278],[-118.15468860634178,50.48244320692229],[-118.15467584340114,50.48250615348645],[-118.15463447902215,50.48256028221537],[-118.15459301632178,50.482614973498826],[-118.15453763700984,50.48267828758492],[-118.15446913016042,50.4827152401467],[-118.15437055926732,50.482751750862235],[-118.15430205216954,50.4827887033177],[-118.15430349404367,50.48285152732869],[-118.15434755389522,50.48291397494826],[-118.15437759900679,50.482985607917094],[-118.154364837038,50.483048545473615],[-118.15435245784172,50.4831295998479],[-118.15436849128945,50.48321040030461],[-118.15437031764542,50.48329133217287],[-118.1543716629633,50.483354709787214],[-118.15437291432254,50.4834084708799],[-118.1543885619618,50.483471172349375],[-118.15441841686997,50.483533742385696],[-118.15444798143,50.48358782104023],[-118.15449204064139,50.483650277475476],[-118.15449348436674,50.48371309248752],[-118.15448072079467,50.48377603893056],[-118.15443935501737,50.483830167501985],[-118.15438543649677,50.48388510533607],[-118.15430145156334,50.483939610249465],[-118.1542883988149,50.48399405635802],[-118.15430385592106,50.4840476949275],[-118.1543193115048,50.48410134242106],[-118.15432027241185,50.48414661210129],[-118.15432133154977,50.48419131920673],[-118.15430856760224,50.48425426559283],[-118.15426933690034,50.484326626153255],[-118.1542271034785,50.484345101447204],[-118.15418467786677,50.484354522790916],[-118.15411403252153,50.484373242972175],[-118.15401653449973,50.48438327829022],[-118.15391728505597,50.48439318929984],[-118.15383380080377,50.484394048089555],[-118.15362246309263,50.48439600844851],[-118.15350852531179,50.484388496190455],[-118.15341083512216,50.4843894770421],[-118.15331120157134,50.48438127964093],[-118.15319949741405,50.48439143659638],[-118.15308642570001,50.484419577073574],[-118.15296089926505,50.48444796398386],[-118.15284830928374,50.48449364951459],[-118.15273737220595,50.48454002174043],[-118.15263936990362,50.48460370156783],[-118.15254292844249,50.484658442685195],[-118.1524730491929,50.484713377546655],[-118.15241941571969,50.4847768146579],[-118.1523358118835,50.48484941695806],[-118.15225347737615,50.48490459814593],[-118.15214040378602,50.48493273764237],[-118.1520433842717,50.48496032544243],[-118.15194470825033,50.4849973964737],[-118.15185966313766,50.48500718345576],[-118.15176235491654,50.485026270717626],[-118.15165084046339,50.48504548003764],[-118.15152355998539,50.48507374104342],[-118.15139812901451,50.48510156359553],[-118.15128543755081,50.4851478100743],[-118.15116009950845,50.48518524885347],[-118.15104906417736,50.48522201178526],[-118.15092197432877,50.48525932602454],[-118.15081084190611,50.48529664235369],[-118.1506978647103,50.48532421779963],[-118.15060055531389,50.485343304036164],[-118.15052971550726,50.485352967986096],[-118.1504588756703,50.48536263189076],[-118.15038978720982,50.4853724200282],[-118.15031913869628,50.48539113777221],[-118.15019360781716,50.48541952152112],[-118.15006632537118,50.48544778084402],[-118.14994089090168,50.48547561066735],[-118.14981555083297,50.48551304791423],[-118.14974528439977,50.48554987314607],[-118.14971811764575,50.485603877940406],[-118.14971955322684,50.48566670179263],[-118.14969276889099,50.48573881442522],[-118.14966744634594,50.485802559976065],[-118.14956905449728,50.485848129145744],[-118.14947212592536,50.48588532223083],[-118.14938726980176,50.485904161233755],[-118.14927623281707,50.48594091343112],[-118.14917812584983,50.48600514373149],[-118.14910833715514,50.486059522748036],[-118.1490112166248,50.48608766149807],[-118.14892655103569,50.48611555406741],[-118.14885870595512,50.4861791022135],[-118.1488033142212,50.486242413161825],[-118.14873409947725,50.48632394476115],[-118.1486521399811,50.486397231019986],[-118.14859655664667,50.48645148792833],[-118.14856852551941,50.48646983926902],[-118.14851507705525,50.48654231934694],[-118.14844566875666,50.486614805747784],[-118.14839027746861,50.48667810752655],[-118.14835074586323,50.48674197442826],[-118.14828114601242,50.486805406792165],[-118.1481989012874,50.486860022276275],[-118.14810059984248,50.48691519763678],[-118.14800376452067,50.486951835756244],[-118.14789087405246,50.48698902477061],[-118.14779413253011,50.48703527025373],[-118.14773835806508,50.487080463846176],[-118.14766808749518,50.487117287692755],[-118.14765407153872,50.48712646323939],[-118.14754321940762,50.487172276492196],[-118.14744453485068,50.487209343424496],[-118.14734789072095,50.487255025942304],[-118.14723732274683,50.48731950034188],[-118.14720995959595,50.48736445942259],[-118.14718249962624,50.487409972128084],[-118.1471411217609,50.4874640977387],[-118.14709993298247,50.48752728617039],[-118.14706020806706,50.48758209863618],[-118.14703284614113,50.48762704872904],[-118.14697745006713,50.48769035865377],[-118.14692157564518,50.487736114362924],[-118.14683894618614,50.487772620961586],[-118.14675427609191,50.48780051181719],[-118.14672605270391,50.48780980875446],[-118.14666992441897,50.48776571214911],[-118.1465986986719,50.487757265746],[-118.14652766358455,50.487757873206164],[-118.14644474481526,50.48778588816496],[-118.1464317798076,50.487839770528815],[-118.14636188818922,50.487894701329964],[-118.14626466819084,50.487913230074376],[-118.14615120220827,50.48792325555462],[-118.1460540758214,50.48795139165453],[-118.14598399304518,50.4879972683033],[-118.14591595047833,50.48805176059807],[-118.14583127928961,50.48807965074054],[-118.14573221039133,50.48809860829773],[-118.14563489291014,50.48811769011877],[-118.1455358238458,50.48813664749997],[-118.14543879340303,50.48816422942222],[-118.14535374090956,50.48817401138486],[-118.14522819916334,50.48820238942476],[-118.14511530327795,50.48823957556102],[-118.14500425706527,50.48827632338211],[-118.14491977520419,50.48831326672752],[-118.14483723500831,50.488359388277296],[-118.14473883270458,50.488404953024734],[-118.1446561018955,50.48844202053045],[-118.1445717177989,50.488478401042855],[-118.1445031939795,50.4885153471931],[-118.14439210538525,50.48863346407645],[-118.1443649303662,50.48868746735609],[-118.1443534255723,50.48873298244876],[-118.14435447337958,50.488777698325485],[-118.14437011051812,50.48884039186099],[-118.14437134854954,50.48889416163159],[-118.14435847258619,50.48895766013934],[-118.14435990237162,50.48902047487139],[-118.14436152080368,50.4890923524258],[-118.14435987653314,50.492063128983666],[-118.14461796942385,50.49204755267238],[-118.14516437358978,50.492117417941316],[-118.14565695578462,50.49220097972102],[-118.14619447035905,50.49235214109566],[-118.14677289774903,50.49242145059062],[-118.14748875503123,50.49245530937489],[-118.14809525791443,50.492414730628035],[-118.14865905196687,50.49233439622545],[-118.1491813674004,50.492308738633774],[-118.15013108192574,50.49233375301925],[-118.15083690808012,50.492394559732816],[-118.15135082253818,50.4924575775511],[-118.1517491890251,50.492623700113214],[-118.15255424940145,50.4928067974813],[-118.15281068872086,50.49279052427331],[-118.15305188377681,50.4926584669162],[-118.15321902267938,50.49251380727246],[-118.15367278279984,50.492291731353156],[-118.15405304248776,50.4921452431048],[-118.15455346254022,50.49209258684462],[-118.15525698704869,50.49202437923055],[-118.15556441696761,50.492000415189885],[-118.15620331673973,50.49194683022365],[-118.15676102347791,50.49202309772779],[-118.15743773609807,50.492179549764444],[-118.1579965995287,50.492350805344685],[-118.15855430724152,50.49246774399538],[-118.1591456817672,50.49264581738854],[-118.15960801642339,50.49281136222541],[-118.16013090566962,50.492853494827855],[-118.16082488807942,50.4928399553949],[-118.16136793587263,50.49276655844527],[-118.16232604571354,50.49270278219888],[-118.16324443730383,50.492754844781075],[-118.16384595683948,50.49290535985029],[-118.16466818902508,50.49332576224047],[-118.16525180890483,50.4936806621671],[-118.16581821069153,50.49408349880511],[-118.16832086416142,50.49475278667409],[-118.16896622590185,50.4949572235666],[-118.16942861890921,50.49510238703505],[-118.16992186790225,50.4952536823216],[-118.17075539335993,50.49568104100341],[-118.17134368242314,50.49619274103774],[-118.17149992165866,50.496456343271426],[-118.17166810723648,50.49649875171077],[-118.17169273508179,50.496540613213966],[-118.17194433742164,50.496633552654075],[-118.17219769246317,50.49673679436924],[-118.17234749960659,50.496884680923074],[-118.17245000432746,50.497029230119644],[-118.17246577435685,50.49705068545315],[-118.17258599796462,50.49721568859097],[-118.17274670701909,50.497362094548606],[-118.17295199219194,50.49748678445418],[-118.17317158348276,50.49760062543666],[-118.17339750062027,50.49770870291108],[-118.17362536683022,50.49781577866178],[-118.17384525235686,50.497927948386895],[-118.17404918011852,50.49805027981215],[-118.17422109013017,50.49819351563407],[-118.17438288010864,50.49834394529039],[-118.17456306343922,50.498480425089575],[-118.17477293142304,50.49859922444592],[-118.17499233827606,50.49871417790481],[-118.17521797446476,50.49882392141109],[-118.17544818595177,50.49892776846739],[-118.17568647513622,50.49902597573161],[-118.17592787836918,50.49911649272076],[-118.1761790147597,50.49920204735965],[-118.17643881194178,50.49927861336866],[-118.17670649138879,50.49934047673221],[-118.1769775744134,50.49938280089206],[-118.17725410196117,50.499404048722276],[-118.17753500684003,50.49941034607954],[-118.17781756483056,50.4994071502631],[-118.17810411199918,50.499401415282],[-118.178388420367,50.49939835078261],[-118.17866942332711,50.49940408268896],[-118.1789496502196,50.4994244577223],[-118.1792301725639,50.499453323186145],[-118.17951099051905,50.49949067907736],[-118.17978655429691,50.499537841708005],[-118.18005316876007,50.49959566187796],[-118.18030508979254,50.4996665722299],[-118.18053531573858,50.49977041756825],[-118.18073927321507,50.499902906390304],[-118.18085542322575,50.49999982039196],[-118.1809113079115,50.50004557787936],[-118.18100188493122,50.50021808308506],[-118.1810909048755,50.50038934814914],[-118.18128046153795,50.50052307802125],[-118.18152402810396,50.50062164393925],[-118.18179278336109,50.50065702020567],[-118.18208166935848,50.50063788009129],[-118.18235614265637,50.50059964164661],[-118.18262749619086,50.50054875255837],[-118.18289621990175,50.5004925877216],[-118.18316328721191,50.50043574481562],[-118.18342966935697,50.500372642633934],[-118.18369283873878,50.500307613476295],[-118.18396000184381,50.50025020605533],[-118.18423184028524,50.50020669682981],[-118.18450903640384,50.50017316551247],[-118.18478857097837,50.50014657844702],[-118.18507054201395,50.50012637302793],[-118.18535173444518,50.500110640812096],[-118.18563692143269,50.50010253019068],[-118.18591657040092,50.50011605749904],[-118.18618727681613,50.500160600575846],[-118.18645147070131,50.500222192972835],[-118.18671206941605,50.50029426093879],[-118.18697043069578,50.5003689996778],[-118.18723297578249,50.500440082788316],[-118.1874905621674,50.50051928530478],[-118.18770942353075,50.50062739218578],[-118.18790250503275,50.50076135809598],[-118.188065907831,50.50091300728536],[-118.18817957703722,50.501075274464256],[-118.1882490621059,50.50124684304393],[-118.18829440947931,50.50142462641796],[-118.1883303178167,50.50160569375993],[-118.18836632428506,50.501786198459875],[-118.18841527481683,50.50196366642998],[-118.18846792419053,50.50214026544022],[-118.18852232614627,50.5023169880613],[-118.18857497635163,50.5024935869441],[-118.18862217628853,50.502670930995414],[-118.18865857148147,50.50284921179567],[-118.18866586485964,50.50303164870432],[-118.18868620025357,50.5032104862772],[-118.18876065520432,50.5033841039389],[-118.18887219929246,50.503558639720495],[-118.18902714477025,50.50370799872414],[-118.18924465614275,50.50380357609],[-118.1895177293214,50.50385504674024],[-118.18980462006091,50.503898461224125],[-118.19007039892206,50.50396128463707],[-118.19033511178826,50.50403024232314],[-118.19058104613316,50.50411539295626],[-118.1907953596268,50.50422938984249],[-118.19098671346153,50.50436322616212],[-118.19118011102873,50.504495515849925],[-118.19138985670405,50.50461539918981],[-118.19160748509763,50.50473075794864],[-118.19182316982031,50.50484709996525],[-118.19202707982778,50.504969959941185],[-118.19221882701011,50.50510157044297],[-118.19240065111295,50.505239251115654],[-118.19258043218514,50.50537848670195],[-118.19276235475203,50.505515613074756],[-118.19294194400723,50.50565596428158],[-118.19311764168168,50.505798300477835],[-118.19329723316844,50.5059386510618],[-118.19348120276405,50.5060742298472],[-118.19367529483203,50.50620260356329],[-118.19388777749568,50.50631702426264],[-118.19412867425727,50.50641084965578],[-118.19438192837009,50.506494816052665],[-118.19463109828077,50.50658187454325],[-118.194876180913,50.506672043014106],[-118.19512544897428,50.506758546714885],[-118.19537423381668,50.50684783602141],[-118.19561104984392,50.50694475977551],[-118.1958295739187,50.50705508231987],[-118.19602980610156,50.50717880375703],[-118.1962236184611,50.507308851697374],[-118.196409548793,50.50744343270263],[-118.19659314752977,50.507581229668496],[-118.19677090678138,50.50772201337844],[-118.19694866869449,50.507862787849696],[-118.19712633397071,50.50800412460585],[-118.19730614065739,50.50814335207396],[-118.19748224966776,50.50828344842061],[-118.19765222901175,50.508428201499605],[-118.19782016689344,50.50857450068743],[-118.19799209633888,50.50871825153426],[-118.19817219865037,50.50885580755789],[-118.19836816468352,50.508983742496326],[-118.19857629561513,50.50910292549901],[-118.1987924054908,50.50921702977817],[-118.19901435712764,50.50932814643883],[-118.19923854629853,50.50943659996329],[-118.19946847794087,50.50954263734019],[-118.19969860610117,50.509647549038206],[-118.19993077786697,50.50975091381509],[-118.19999992324477,50.50978177447747],[-118.20016295069722,50.50985427809388],[-118.20039327438244,50.50995808098379],[-118.2006234068147,50.510062990713436],[-118.20085373262603,50.51016679262246],[-118.20108425490248,50.51026946885006],[-118.20131847556208,50.51037128419804],[-118.20155114015094,50.51047185038065],[-118.2017857505916,50.510571432196116],[-118.20202230998285,50.51067001177213],[-118.20225906268476,50.51076748350061],[-118.20250185086661,50.510860851090555],[-118.20275067139856,50.51095013236395],[-118.20299978440568,50.51103773421083],[-118.20325074861029,50.511124896333754],[-118.20349966975644,50.51121361330477],[-118.203742848944,50.51130475453542],[-118.20397970636668,50.51140165992568],[-118.20420488669937,50.51150452183474],[-118.20441771250667,50.51161724279316],[-118.2045887932123,50.511755840749466],[-118.20472766674534,50.511916467909835],[-118.20485661723991,50.512083166449216],[-118.20500152559852,50.51223969838913],[-118.2051846761898,50.51237010568028],[-118.20541356308546,50.51247209557312],[-118.20566882016996,50.512555033834076],[-118.20593244332552,50.512630660160646],[-118.20619226330867,50.51269753920965],[-118.20646560342243,50.512747851383786],[-118.2067203698147,50.51282341254314],[-118.20696522074185,50.51291522359747],[-118.20719139322338,50.51302266771593],[-118.20738321891133,50.51315425074834],[-118.20753972154205,50.51330537548631],[-118.20767004233748,50.51346425660325],[-118.20778508291629,50.51362941079407],[-118.20788912329891,50.51379661976518],[-118.20798002485299,50.513967983785946],[-118.2080542820882,50.51414325615739],[-118.20813408774059,50.514317228594734],[-118.20823297053727,50.514483504414606],[-118.20837857702944,50.51463612008984],[-118.20858297331267,50.51476688543906],[-118.20881897740774,50.51485863800941],[-118.2090968073624,50.51490360894374],[-118.20937404561643,50.514941767154376],[-118.2096582870045,50.51497023933455],[-118.20994067842828,50.5149991500523],[-118.21021169157179,50.51504251751422],[-118.21046365027698,50.515113911809706],[-118.21070871490244,50.515204598088935],[-118.21094610114174,50.515308871716684],[-118.21117103732168,50.515423558718005],[-118.21137855337246,50.51554662821665],[-118.21156319739323,50.515678826651595],[-118.21170387239026,50.515849728452736],[-118.21176315545279,50.51602960177535],[-118.21167411127644,50.5161747431158],[-118.21144132867057,50.516299603227594],[-118.2112555902985,50.51643963199555],[-118.21111134527885,50.51659614750001],[-118.21094615329042,50.51674045062707],[-118.21070339990534,50.51683071116907],[-118.21042199458223,50.51682673033398],[-118.21013737498484,50.51682082325767],[-118.20984537502844,50.51683700305455],[-118.20960221207402,50.516909154236934],[-118.20942016475415,50.517048310246004],[-118.20926393307538,50.51720228097468],[-118.2091485080621,50.517366471971975],[-118.2090211037955,50.517528120513965],[-118.20887402058995,50.517680474817894],[-118.20868709682142,50.517817026913676],[-118.20852530063885,50.51796213553161],[-118.2084250669703,50.51813077569058],[-118.20831967009623,50.51829849197931],[-118.2081871953839,50.5184586530397],[-118.2079741468737,50.518571906609424],[-118.20774931237045,50.51868150105834],[-118.20756422999801,50.51881762080161],[-118.20740038391438,50.51896427415815],[-118.20725962473061,50.51912102199773],[-118.20715626392446,50.519287190432166],[-118.20709546595845,50.5194636944307],[-118.20701927896737,50.51963685542269],[-118.20691406709261,50.51980345381102],[-118.20679853075873,50.519968195508554],[-118.20667286362463,50.520129964227124],[-118.2065390122856,50.520287767064765],[-118.20638684668474,50.520438631143755],[-118.20622123795093,50.5205851590813],[-118.20605728496132,50.52073236380331],[-118.20591349338282,50.52088607663653],[-118.20577944335663,50.521044994667974],[-118.20565367189471,50.521207324612995],[-118.20553988031364,50.52137218812023],[-118.2054416707742,50.521539278372536],[-118.205383885281,50.52171881392387],[-118.20539377756502,50.52189690390116],[-118.20546491787954,50.522069705914014],[-118.20555757989177,50.522241193582204],[-118.20564294070347,50.522413857445876],[-118.20570639327215,50.52259006800672],[-118.2057656612673,50.52276994304159],[-118.20580019522724,50.52294919774864],[-118.20578593464839,50.5231233273363],[-118.20568080620069,50.523289370185346],[-118.20553925233095,50.52345058001944],[-118.20540353644226,50.5236088200357],[-118.20525759279255,50.52376464057401],[-118.20511008889174,50.523919221232525],[-118.20496930627108,50.52407596522063],[-118.20484576182841,50.52423562197433],[-118.20475095193544,50.52440352044657],[-118.20470202155477,50.52458311842934],[-118.20469350946337,50.52476499233383],[-118.20471742443729,50.524944069032614],[-118.2047656891853,50.52512598974148],[-118.20484355465672,50.52530095503202],[-118.20496542501749,50.52545755001256],[-118.20519916067096,50.525572873658945],[-118.20542228264215,50.525688010031686],[-118.20550286499378,50.52584734728072],[-118.2055379817003,50.52602325265285],[-118.20554690647866,50.52620692291213],[-118.20553586753547,50.52639314703389],[-118.20551469872343,50.526576389274425],[-118.20548553761985,50.526754558400924],[-118.20543348890352,50.52693167689126],[-118.20536575884681,50.52710712208848],[-118.20528770141807,50.52728071945582],[-118.20520282599388,50.527452697927636],[-118.20510080403966,50.52762121865173],[-118.20499021068018,50.527787997020596],[-118.20488136816277,50.52795490758786],[-118.2047899608698,50.528123605810286],[-118.20476293835597,50.52829965640845],[-118.20480244072354,50.52848095928323],[-118.20469475889811,50.52864117207297],[-118.20453525595431,50.528793208311576],[-118.20437730977935,50.52894649288427],[-118.20426553880448,50.52910979811933],[-118.20420159746256,50.529283819087965],[-118.20416142593423,50.52946403287441],[-118.20414054010857,50.529645604270236],[-118.20414312452324,50.529824877759786],[-118.20424057344124,50.529999521302315],[-118.20429441227867,50.53008805270358],[-118.2042563322677,50.53009272087018],[-118.20410064893214,50.53016141398779],[-118.203878616783,50.530326005067096],[-118.20376636355596,50.53050227415559],[-118.20377276651122,50.53058802680047],[-118.20379928537993,50.53061927070915],[-118.20381400655441,50.5306366949111],[-118.20379503703475,50.53066416707684],[-118.20373238979947,50.530759186814834],[-118.20377908891018,50.53092969742548],[-118.20388778736535,50.53116219662735],[-118.20383555030962,50.53136076877157],[-118.20375982795808,50.53142888071547],[-118.20391220886751,50.5314814134522],[-118.20427563345292,50.53161659493141],[-118.20456044912136,50.53174455157763],[-118.20465186942039,50.53181087030689],[-118.20471464595276,50.53186839348824],[-118.20481553884892,50.53196192650545],[-118.20494945465829,50.53205948305015],[-118.20510012066757,50.53215256890811],[-118.2051857795466,50.532200972901805],[-118.2052136485019,50.53221423319648],[-118.20523342981632,50.5322229651552],[-118.20524299840129,50.532249625879835],[-118.20528680543518,50.532334629990594],[-118.20534739905628,50.532455832780975],[-118.20538524222982,50.53251386035051],[-118.20539080119293,50.532522730214886],[-118.20540923458829,50.53254944534949],[-118.20543983451445,50.53267984490767],[-118.20544397656649,50.53285017887139],[-118.20547474417012,50.53294895351552],[-118.20553722451402,50.53299797650442],[-118.20556889971532,50.533019983147405],[-118.2056195813423,50.533055186612415],[-118.2057584901837,50.53317512121785],[-118.20590687127776,50.5333222788486],[-118.20603196446297,50.53346045766888],[-118.20616699908679,50.53360271645673],[-118.20628400581356,50.53373636669311],[-118.20637779468603,50.53382996710529],[-118.20645196833772,50.53388321088547],[-118.20648266799854,50.533900619976116],[-118.20654130703315,50.5339002267546],[-118.20697462398434,50.53406235227698],[-118.20783924412488,50.53440847480315],[-118.2086330019097,50.534692550596176],[-118.20909915706773,50.53484962798991],[-118.20928127718713,50.534914982108226],[-118.20933243931522,50.53493721921617],[-118.20945612315897,50.53501202100653],[-118.20963714208857,50.53514508012445],[-118.20976551608396,50.535233769796776],[-118.20992678205707,50.535286348132075],[-118.21019906263288,50.53540492682807],[-118.21053527621403,50.53555398800457],[-118.21084038192278,50.53566753377194],[-118.21104698138187,50.53575550403812],[-118.21122605062338,50.53587938387506],[-118.21143906857695,50.53605311396212],[-118.21159546042381,50.53619517549785],[-118.21165464874468,50.536253001499055],[-118.21166556768854,50.53626167833518],[-118.21168195122462,50.53627977833634],[-118.21172377589117,50.53631492494591],[-118.21178508499756,50.53635030269101],[-118.21188565992608,50.53639466013006],[-118.21201956300949,50.536451529649135],[-118.2121506364524,50.53650425002001],[-118.21228180782151,50.536556407645826],[-118.21241386224827,50.536613707041695],[-118.21257837294766,50.5366885458454],[-118.21278245219216,50.53678085446672],[-118.21299266376909,50.53686851391397],[-118.21326229533287,50.53695130227845],[-118.21354604200263,50.537024353030375],[-118.21371773204926,50.53706805849898],[-118.21385911574104,50.537102293717375],[-118.21405517381554,50.53715901016365],[-118.21426689709469,50.53719705031456],[-118.21445580069997,50.5372131576407],[-118.21455030134958,50.53722092988894],[-118.21463429133073,50.53723813199997],[-118.21476863063354,50.53724135563925],[-118.2148291235826,50.537240527645345],[-118.21490559410495,50.53723968371784],[-118.21513983510526,50.53729117281099],[-118.21538271741198,50.53740541078778],[-118.21548576197135,50.53747649420277],[-118.21562554783047,50.537560888735484],[-118.2157673706158,50.53772564591519],[-118.2157535199505,50.53788737165848],[-118.21576854360609,50.53799519423597],[-118.21583485021226,50.53805295718243],[-118.21588868792622,50.53811097367363],[-118.21597404967274,50.53822261834412],[-118.21605075240169,50.538343253643454],[-118.216100718683,50.53842359498113],[-118.21615681808308,50.53849927840418],[-118.2162129161228,50.53857497072195],[-118.21623311206635,50.538601807096576],[-118.21623568513648,50.538638143208175],[-118.21623854184081,50.538754718808235],[-118.21623995702873,50.53888984018329],[-118.21624050933195,50.53894806188659],[-118.21619401336224,50.53901145587931],[-118.21609087496033,50.53912510243115],[-118.2159853679395,50.53921146599475],[-118.21589852548037,50.53926185595715],[-118.2158220961842,50.53930337840646],[-118.2157444843169,50.53933125043213],[-118.21560765500006,50.53937304756199],[-118.21538708155389,50.53944736520502],[-118.21517304830003,50.539535139933314],[-118.2150527454661,50.53963515101857],[-118.215024892214,50.53973431990771],[-118.2150452718896,50.539841958434145],[-118.21506241350129,50.53992733270618],[-118.21506838453374,50.53995430842135],[-118.21506332803983,50.539962991878724],[-118.21502920292016,50.54002668546806],[-118.21479743546016,50.540114343149085],[-118.21447904570269,50.54018970253794],[-118.21438068890672,50.540316672708464],[-118.21430498883788,50.54049721758049],[-118.21413147884502,50.540678787615064],[-118.21398549934416,50.540824446916794],[-118.2139056010688,50.54090639919841],[-118.21385431279916,50.54095645774916],[-118.21379358777678,50.541019980671635],[-118.21373589580804,50.541096714602766],[-118.213712322501,50.54119165563509],[-118.2137244251443,50.54139813972402],[-118.21375599025276,50.541676612099266],[-118.21377048285339,50.5418386303131],[-118.21376836312066,50.54186107837989],[-118.213633031055,50.54185326531977],[-118.21333227529082,50.54184737339251],[-118.2131324727443,50.541863274262],[-118.21310003125075,50.541958161258755],[-118.2131396424699,50.54220047469373],[-118.21319924572454,50.54246057165863],[-118.21322518401769,50.54257707952529],[-118.21322135246933,50.542640081959384],[-118.21319488243603,50.54276193568569],[-118.21315624218795,50.54289254219265],[-118.21304364995805,50.54301964969106],[-118.21275099589973,50.54313070110374],[-118.21230509186503,50.54315302768272],[-118.21192420213967,50.54310760350297],[-118.21147954781314,50.54311249736832],[-118.21086900257566,50.543244697665],[-118.21052908450106,50.543351860016934],[-118.21047387305602,50.543383572791655],[-118.21045547357365,50.54339752756037],[-118.21041897283875,50.54343394554397],[-118.21030364049199,50.54355632968271],[-118.2101587141515,50.54370601804916],[-118.21015835896794,50.543841006428025],[-118.21026751597911,50.54397918499778],[-118.21032176098504,50.54405531010611],[-118.21033726570215,50.54406825930542],[-118.21036746874584,50.54406812334648],[-118.21039670465193,50.54417582512167],[-118.21039770827217,50.54440525636884],[-118.21037389435661,50.544562891494934],[-118.21031181307258,50.544644395242194],[-118.21013540119026,50.54478113156677],[-118.2099199583963,50.54495861799746],[-118.20980967732258,50.545072327156994],[-118.2097891550767,50.54510872968896],[-118.20975315724769,50.545162691118406],[-118.20971821633599,50.545302595872464],[-118.20982353899508,50.545503776724786],[-118.21001077355946,50.54567286249316],[-118.21011510866133,50.54575702898161],[-118.21016183641731,50.545815108039776],[-118.21022255739854,50.545935752529864],[-118.21029485049695,50.54613291078604],[-118.21037405239697,50.54632095544551],[-118.21045696813354,50.546518290862394],[-118.21052899168626,50.54673746636937],[-118.21058305035787,50.54691695463785],[-118.21064340638733,50.5470601699195],[-118.21070052472331,50.547181129906804],[-118.2107239577801,50.547230231165784],[-118.21058999804785,50.547245100020646],[-118.21023884486667,50.54725317611297],[-118.20989254625208,50.54724351481564],[-118.20964272615039,50.547250805236345],[-118.20942799518342,50.54727073121912],[-118.20928945053551,50.54728132617137],[-118.20912589380862,50.547323497268025],[-118.20882474135797,50.5474525899025],[-118.20839151374304,50.54763679503821],[-118.2079619562528,50.54778962087941],[-118.20759240082901,50.54792406836583],[-118.20719988419854,50.548098704386454],[-118.20682860648715,50.54827370331133],[-118.20650144970627,50.54842976807497],[-118.20619660738312,50.548590230908594],[-118.20588505470853,50.548768868129066],[-118.20567594839764,50.548879002307224],[-118.20556598175135,50.548929458236614],[-118.205376529695,50.549008208758444],[-118.20513411030294,50.54913634486251],[-118.20499653696535,50.54926393907107],[-118.20492499797774,50.54947131919299],[-118.20483893091901,50.54978275389707],[-118.2047858660476,50.549945109512954],[-118.20476513337093,50.549972466715865],[-118.20472659582911,50.55003076763974],[-118.20467862712047,50.55011269241933],[-118.20462491902363,50.55020721125307],[-118.20454957130286,50.550293428393275],[-118.20448754196782,50.550343866707266],[-118.20446640539454,50.550353108687915],[-118.2044644831663,50.5503846094559],[-118.20444199434219,50.550524259358276],[-118.20439849917372,50.550713274834834],[-118.20432817217993,50.550862556711984],[-118.20423357038088,50.55099826255537],[-118.20415903052061,50.551120691764474],[-118.20414618453363,50.55125593117168],[-118.20416981115525,50.55142651166534],[-118.20418595825556,50.55150729814703],[-118.20406910991356,50.55149512668858],[-118.20381953165318,50.55147021728415],[-118.2036519117116,50.55145390346383],[-118.20357201476371,50.55146409952079],[-118.20348034820435,50.55150115337744],[-118.203366292425,50.551564869114934],[-118.20326579195624,50.5516425364993],[-118.20318848281055,50.55171957603348],[-118.20312031544505,50.55177466166165],[-118.20301843137256,50.55182963433935],[-118.20285077025609,50.551885067026994],[-118.20263800326012,50.5519548335469],[-118.20245466800881,50.55202893066977],[-118.20236582943559,50.55207013273354],[-118.2023184919252,50.55209730752449],[-118.20216937431832,50.55218906090505],[-118.20182969832697,50.55234537215866],[-118.20145024215782,50.5524751465714],[-118.20126825317612,50.55253125896833],[-118.20116768409504,50.55252756999118],[-118.20101125665283,50.55249792147144],[-118.20088055337203,50.552463295191366],[-118.20080628123445,50.55244111936409],[-118.2007511992836,50.552410694967755],[-118.20068967674568,50.55236624980696],[-118.2005724235843,50.55233596849489],[-118.20039613634418,50.552328639136526],[-118.20022773822446,50.55231678498322],[-118.20006665469617,50.55231392397593],[-118.2000004080497,50.55233750703665],[-118.19993425914184,50.55236052749172],[-118.19983853504456,50.55245152643119],[-118.19978353825306,50.552532954905374],[-118.19975045614534,50.55260067748618],[-118.19971103577237,50.55266400385363],[-118.19962765749732,50.552714627264024],[-118.19949633443059,50.55276526489334],[-118.19943018463698,50.5527882850367],[-118.19920324135255,50.552674009651746],[-118.1986836492289,50.552404675328646],[-118.19833775148501,50.552188243514],[-118.19817297784324,50.55206365474479],[-118.19784587632552,50.551963790924276],[-118.1974758170596,50.55188632749108],[-118.19722083132994,50.55179041013792],[-118.19704321489564,50.55168864213622],[-118.1969276940243,50.55161779432617],[-118.19678011346508,50.551547517693656],[-118.1965779551835,50.55146435802612],[-118.19635212667895,50.55139478858269],[-118.19606686199879,50.55133006225086],[-118.19579427020399,50.55127414589981],[-118.19562146967283,50.55122637881619],[-118.19553618484252,50.551196083746625],[-118.19545528284286,50.551161008382444],[-118.19535644521436,50.551116760443605],[-118.1952332382569,50.55105949705204],[-118.19502454845718,50.55096287599828],[-118.19480045327319,50.55085274965391],[-118.19464691829661,50.55075549368018],[-118.19452261263304,50.55065352640731],[-118.19441819267509,50.55055973010816],[-118.1943310342901,50.55048918685749],[-118.19417624478078,50.550409359242956],[-118.19392029720022,50.55030884579802],[-118.19367138543464,50.55023933407438],[-118.19346324869531,50.550241617244005],[-118.19332907245837,50.55024742105381],[-118.19328025732236,50.550252451062356],[-118.19323835441301,50.550248368655005],[-118.19309686534865,50.55024517831217],[-118.19290217823503,50.55025179776691],[-118.19278455927389,50.55024407920573],[-118.19271477998183,50.55022673348332],[-118.19268252219919,50.5502182415429],[-118.19261176588545,50.550196307387175],[-118.19244305622497,50.55013527353588],[-118.19221371091652,50.55002476212471],[-118.1919863997979,50.54989236535585],[-118.19179613024964,50.54978178650456],[-118.19160127870279,50.54966693425532],[-118.19147865760023,50.54959614869852],[-118.19145789590762,50.549582817166424],[-118.19137221717564,50.54953441255528],[-118.19108238856877,50.54946540022753],[-118.19064611577193,50.54941148270606],[-118.1901667641693,50.549339847287335],[-118.18960106181258,50.54941747704195],[-118.18905002370641,50.54959443797472],[-118.1886519039273,50.549647721400824],[-118.188372817006,50.54961900516481],[-118.1882171038533,50.549615935441786],[-118.18812465260413,50.549657432537416],[-118.18799089539432,50.54972201354322],[-118.18784076048081,50.54976848224193],[-118.187690225367,50.54979685336829],[-118.18745403567034,50.54981748507373],[-118.18716143591021,50.549856166731736],[-118.18699404565882,50.54988955825442],[-118.1869390926917,50.54989924169355],[-118.18676068208408,50.549914346969885],[-118.18645278013865,50.54994912751579],[-118.18630282377627,50.54996396995586],[-118.18630146753834,50.549981952551654],[-118.18628856671162,50.55011719900951],[-118.1862449307501,50.55037794637814],[-118.18615682720787,50.550567773265094],[-118.18603884796886,50.55062328693779],[-118.18592523290909,50.55063335226993],[-118.18584971553595,50.550638764682404],[-118.18566954914758,50.55065373555678],[-118.18535988726366,50.55068838933461],[-118.18518878582891,50.55071247753098],[-118.1851324747425,50.550740142633714],[-118.18504177083453,50.55078176976007],[-118.18491832890469,50.55082785792281],[-118.18473534967687,50.550879354953175],[-118.18453288104635,50.550930606830114],[-118.18433918221035,50.55098247699975],[-118.18414743142971,50.55103335438905],[-118.18394944578394,50.551089441104224],[-118.1837585723201,50.55114546880856],[-118.1836109602057,50.55118759076098],[-118.18351830159673,50.55122003973826],[-118.18347942526181,50.55122915643684],[-118.18346179052554,50.55123865083822],[-118.18341502204392,50.551252299775925],[-118.18328339027244,50.551294418839056],[-118.18310478976868,50.55134114233986],[-118.1829928410983,50.55138238998056],[-118.18291899092281,50.551418985711194],[-118.18283539788438,50.55146054347339],[-118.18258451616109,50.551575609610985],[-118.18223463937727,50.5517187080031],[-118.18208137826348,50.55178303648615],[-118.18205770432691,50.55179661510823],[-118.18200412009551,50.55182899081192],[-118.18189373773035,50.55190199411056],[-118.18165726404999,50.55198529907931],[-118.18136951011178,50.55200623938577],[-118.18120570039319,50.55199862990203],[-118.18117441793032,50.5519947320313],[-118.18119012825062,50.552057415520515],[-118.18121969533566,50.55218323017449],[-118.1812354057847,50.55224591364286],[-118.18125336262715,50.55232627353],[-118.18120023653262,50.55256997177022],[-118.18100552546403,50.552841534634055],[-118.18086788556201,50.553009775590574],[-118.18084802622586,50.55307277818289],[-118.18084813578821,50.55311290172949],[-118.18084679034747,50.55317156135237],[-118.18083813408947,50.55322122631666],[-118.1808326869558,50.55325247898924],[-118.18082002874951,50.553284352675384],[-118.18079100621938,50.553338799341624],[-118.18075263256019,50.55340614483906],[-118.18072263390951,50.553456003024536],[-118.18068454462669,50.55350134013174],[-118.18061128238679,50.55356509359457],[-118.1805403545334,50.55361545301423],[-118.18050800813917,50.55363802798085],[-118.18049846240608,50.553652042963975],[-118.18048628463478,50.5536607831494],[-118.1804780090633,50.55368788608636],[-118.18038068796739,50.55378778852805],[-118.180200653613,50.55396490537558],[-118.18011270284066,50.55412310264625],[-118.18022589554474,50.554288706960165],[-118.18044736397694,50.55447495053468],[-118.18047841280695,50.5546635742249],[-118.18026858547411,50.55494027919819],[-118.18009939953272,50.555238499817825],[-118.17996871067362,50.55555016657873],[-118.17979347192875,50.55582196305432],[-118.17967959176897,50.555976070243446],[-118.17961589451579,50.55610716202355],[-118.17951235139061,50.55628345756185],[-118.17937860619938,50.55650056644384],[-118.17929912193183,50.55664071291384],[-118.1792864616881,50.55667258629419],[-118.17930469197002,50.55669025188005],[-118.17941094700267,50.55678362292824],[-118.17934639187989,50.55699092631239],[-118.17883988996064,50.55728849654088],[-118.17835246771025,50.557527527185385],[-118.17821994430308,50.55760517481256],[-118.17826624860191,50.55764516026811],[-118.17844951185911,50.55779594283529],[-118.17883179711804,50.55797659058666],[-118.17924318916694,50.558031052826166],[-118.1794112080407,50.5580248325152],[-118.1794292413751,50.55803344497914],[-118.17944015938997,50.55804212474814],[-118.1794545860349,50.5580510521333],[-118.17947534807783,50.55806438576799],[-118.17963774486851,50.55816171829874],[-118.17992736363945,50.558374798661845],[-118.18007060160062,50.558602415006824],[-118.18007320540883,50.55883196627474],[-118.18007631504625,50.55911973792306],[-118.1800767815649,50.55937173598983],[-118.1800753461422,50.55946146533833],[-118.18009262661613,50.5595558960036],[-118.18012299563296,50.559748429640244],[-118.18014427699164,50.55986066034891],[-118.1800520698497,50.55983946520245],[-118.1798974833762,50.559809348516914],[-118.17975156947466,50.5597702350397],[-118.17964220510741,50.55973539999038],[-118.17951266924162,50.559714399325436],[-118.17932826501287,50.559702515530866],[-118.17916355112466,50.559699930275805],[-118.17908470802327,50.559714134535255],[-118.17897870967315,50.559863708373214],[-118.17854109385485,50.560214165099765],[-118.17776673620317,50.56059112760076],[-118.1770042307862,50.560859322627145],[-118.17639121363015,50.561054454415356],[-118.17580331595431,50.56114627655084],[-118.17496571504995,50.56128486860468],[-118.17411994730575,50.561572024250346],[-118.17340683679703,50.5619436764259],[-118.17239449175831,50.56238120100743],[-118.17124654062175,50.56276111306468],[-118.17041339706272,50.563097721151095],[-118.16999604611073,50.563331502332574],[-118.17019567467514,50.56341904968063],[-118.17081580693974,50.5636108765893],[-118.17112872687771,50.563944833736485],[-118.17113147702084,50.56414276012212],[-118.17103957207563,50.564252077957455],[-118.1708413272469,50.564410948099116],[-118.17067095303896,50.56451190223462],[-118.17045554631295,50.56462662331322],[-118.17019656974199,50.564777251979095],[-118.17006849516513,50.56485972560374],[-118.17000270392643,50.564900833936484],[-118.16986800172093,50.56500091751574],[-118.1697127335927,50.56513740409389],[-118.16963671313565,50.56527779011111],[-118.16960602176007,50.56545357624621],[-118.16956372935577,50.565624592599264],[-118.16950827467664,50.56576926079622],[-118.16945867100044,50.56593128178338],[-118.16942242365447,50.56613888188278],[-118.16939358485133,50.566354914652436],[-118.16941913890538,50.56657479030812],[-118.16952072535358,50.56677630974932],[-118.16966783199535,50.56694093811105],[-118.16982498504099,50.56715994144852],[-118.16989957520327,50.56738384122486],[-118.16990124040053,50.56749638796783],[-118.1698562205222,50.56770336802405],[-118.16976968351233,50.5680463921019],[-118.16971354822624,50.568235638375],[-118.16968313920493,50.56830806314568],[-118.16962495038092,50.568407333162995],[-118.16953274139168,50.56853866604361],[-118.16944326170457,50.56867471126097],[-118.16937122894102,50.5687922203791],[-118.1693236637152,50.5688916803784],[-118.16931090094214,50.56899528941514],[-118.16923711777794,50.56919402717814],[-118.16905210967423,50.56947020941059],[-118.16888688551194,50.56967377657769],[-118.16882264608928,50.56974664025642],[-118.16880860872486,50.569755817544234],[-118.168952794625,50.569835488334334],[-118.1692583240991,50.56999831018643],[-118.16944023904044,50.570095903707745],[-118.16946821758766,50.57010861874955],[-118.16951764527796,50.5701307492533],[-118.16958227959542,50.57015735270049],[-118.16961279410539,50.5701657182417],[-118.16973124215573,50.57020968186633],[-118.17004613131812,50.570318927518095],[-118.17033869796452,50.57042376613108],[-118.17058037594978,50.57052501844518],[-118.17086446482553,50.57064790434172],[-118.17111648274845,50.57077134446042],[-118.17133194294172,50.5708905116383],[-118.1714401611629,50.57095238928382],[-118.17151952122587,50.570996410277935],[-118.171669272976,50.57108494856871],[-118.17176939928778,50.57114230425305],[-118.17179367625485,50.57115587803585],[-118.17181171183238,50.57116450052603],[-118.17182263156278,50.57117318090387],[-118.17189916549688,50.57121304285327],[-118.1720577893969,50.571301646628235],[-118.1722628252599,50.57142967492374],[-118.1725092980713,50.571584925855795],[-118.17277010265674,50.57173949778346],[-118.17302135265514,50.571867397935584],[-118.17322853363872,50.57197298682954],[-118.17338238451842,50.572048253078684],[-118.17357043910305,50.57201915558917],[-118.1739839768386,50.571929714776495],[-118.17456716997148,50.571977666368774],[-118.17515068941037,50.572196819130426],[-118.17572526181036,50.572487640016774],[-118.17603990165165,50.57265956137117],[-118.1760857274747,50.57268200369914],[-118.17612453384464,50.57270395057165],[-118.1762155049025,50.57275273713472],[-118.17627507928124,50.57278801795344],[-118.17632353732664,50.57280555697652],[-118.17644843419673,50.572853357132026],[-118.17657957350053,50.572906108154136],[-118.1766025978931,50.57297778541666],[-118.17654618081286,50.573117867447486],[-118.17650645056071,50.573325220338],[-118.17650210869766,50.57352320252642],[-118.17650848031091,50.57368014443477],[-118.17651533729845,50.57382412248465],[-118.17652736022218,50.57395885663415],[-118.17656384948829,50.57407554915577],[-118.17662227136816,50.57417854070678],[-118.17671774817312,50.574303346058066],[-118.17683341248876,50.57445500259212],[-118.17692157540945,50.574570821971015],[-118.17698058054062,50.57466029585419],[-118.17701501326093,50.57472768889595],[-118.17702145852118,50.57477220876329],[-118.17701924722209,50.574907077007076],[-118.17702242782043,50.5751637824674],[-118.17703696062839,50.5755998086556],[-118.17706841614877,50.57626469318355],[-118.17712676630387,50.576867081368974],[-118.17720522251383,50.57714039654298],[-118.1772707682025,50.5772433202076],[-118.1773144770274,50.57735939125162],[-118.17736287948706,50.57753002711234],[-118.17743196372044,50.57774505717547],[-118.17757564676957,50.57799076816477],[-118.1778343975656,50.578289801180816],[-118.17805735567815,50.57853941403671],[-118.17820823045614,50.57867264443253],[-118.17839293938393,50.578805441377426],[-118.17853942883096,50.578943450676135],[-118.17858361477816,50.57900589027196],[-118.17858498600674,50.57902858428987],[-118.17857650872052,50.579046624478586],[-118.17841809226876,50.57916030304312],[-118.17811012441229,50.579357200225346],[-118.17793328137945,50.579484826858916],[-118.17786650854111,50.579562035565296],[-118.17771882592861,50.57971600684348],[-118.17750990999285,50.579884874374486],[-118.17708861680246,50.58002857881977],[-118.17643700754488,50.58017863622779],[-118.175974943179,50.58029121315969],[-118.17580938354958,50.58033376331256],[-118.17563466235566,50.58039826404014],[-118.17535512853881,50.58051356021948],[-118.17513176063669,50.580632810718946],[-118.17495333795434,50.58072868557792],[-118.17473249324188,50.58080292777718],[-118.17455572759616,50.58089947945378],[-118.17450192687255,50.58103465598975],[-118.17442510794893,50.58113883126303],[-118.17422258989308,50.58119967784264],[-118.17401363480502,50.581246502261635],[-118.17388609638256,50.58127478556553],[-118.17376206820666,50.58130331651245],[-118.17359573481761,50.58142151038233],[-118.17349864446477,50.58161125419092],[-118.1734761358124,50.58171983211789],[-118.1734704836698,50.581742030526186],[-118.17344493795764,50.58175604544411],[-118.173192103566,50.581830277593134],[-118.1727347933027,50.58195617624909],[-118.17249161442905,50.58206668403371],[-118.17247554495066,50.58221978142614],[-118.17247508197902,50.58239543906905],[-118.17229899054908,50.58251859183198],[-118.17181261356201,50.58265825339218],[-118.17125252277563,50.582884227904515],[-118.17089320913371,50.583130595879545],[-118.17078254162305,50.58323519931815],[-118.17070267751093,50.58324481778564],[-118.17051798709846,50.58326454259643],[-118.1703308606688,50.58329821398317],[-118.17016323790176,50.58336264809751],[-118.17001102464042,50.58344058974223],[-118.16987655702637,50.58351866355469],[-118.16978323946091,50.583564608124796],[-118.1697214192883,50.58362351530184],[-118.16963980488038,50.58371436035683],[-118.16958588352836,50.58376873634519],[-118.16956764898029,50.58379174539913],[-118.16954892852952,50.5838277091616],[-118.16948174792304,50.58392747353676],[-118.16937117458096,50.58407219752121],[-118.16928975427187,50.58417209507341],[-118.16922081727031,50.58427173528451],[-118.16915685141036,50.58435308815199],[-118.16912223495757,50.58439866753446],[-118.16909200719006,50.58443946790743],[-118.16905436938637,50.58450234241137],[-118.16900990636768,50.584583942722475],[-118.16895900856726,50.584692205521826],[-118.16891396314044,50.58482799858712],[-118.16888393667466,50.58498970956324],[-118.16886999960377,50.585120350938126],[-118.1688664911789,50.585160778579215],[-118.16887634229036,50.58520610881431],[-118.16889390140591,50.58530903747367],[-118.1689082419989,50.58538970177188],[-118.16891945745319,50.58541705038126],[-118.16893652661787,50.58546175144858],[-118.16897349336045,50.58559599682211],[-118.16903455115644,50.585775439073785],[-118.16908507291978,50.585882955239605],[-118.16916309535621,50.58598563426191],[-118.1693025610008,50.58616383418225],[-118.16943997999961,50.58633341073458],[-118.16955701473503,50.58646709102634],[-118.16957691546385,50.58655662619698],[-118.16947569437576,50.58664777693375],[-118.16932980991967,50.586770799509644],[-118.16919445648188,50.586884396799],[-118.1691090319703,50.58696649398734],[-118.16900429818355,50.587057396315416],[-118.16884504942485,50.58717552455477],[-118.16869857709378,50.58731206339369],[-118.16853884090698,50.587453314678115],[-118.16835442958185,50.58756287698794],[-118.1682318435631,50.587613541879655],[-118.16810213880241,50.58766426428479],[-118.16786915793965,50.58775683706327],[-118.16762125422431,50.58785344431822],[-118.16742269645819,50.58793206903244],[-118.16725602760721,50.58800108678774],[-118.16695974878172,50.588089756243214],[-118.16639644521885,50.58829288693333],[-118.16591027953235,50.58856303823891],[-118.1657153221458,50.58872270511434],[-118.16552797244637,50.58885917280812],[-118.1652306082551,50.58905566902482],[-118.16503369882211,50.58916547351414],[-118.1649769376932,50.589175021611474],[-118.16460681899537,50.58922853127053],[-118.16374330485746,50.58934942426806],[-118.1630293001964,50.58942833319771],[-118.16279532976027,50.589434964939194],[-118.16276675483451,50.58943576561967],[-118.16277514118327,50.58944878697074],[-118.16279493462022,50.58949821016882],[-118.16281492400203,50.58955667718738],[-118.16283178956763,50.589633010504365],[-118.16284855600955,50.589740403909566],[-118.16286922224965,50.58986615093367],[-118.16298009968969,50.59004515863566],[-118.16321435091862,50.59024023353793],[-118.16339301797585,50.590346639176964],[-118.16344070781508,50.590368656708506],[-118.1636490340889,50.59032575449007],[-118.16405242066115,50.59025482982076],[-118.16420378466765,50.590293772062886],[-118.16408332713398,50.59047450996715],[-118.16403006304283,50.590718188724296],[-118.16417273769166,50.590959333687564],[-118.16435920936674,50.59113295127624],[-118.16450969643239,50.59124809273669],[-118.16468661498287,50.5913543721311],[-118.16484490615794,50.591424878560865],[-118.16501412396856,50.59146338139062],[-118.1652671212906,50.591510631992975],[-118.16552655620914,50.59156172637601],[-118.16570621044401,50.591591365978786],[-118.1658628471298,50.59163067796407],[-118.16604688978788,50.59169622237893],[-118.16623571283012,50.59177509309409],[-118.16645438168155,50.591876409259264],[-118.16669489939059,50.592035761554186],[-118.16695658481818,50.59222654522717],[-118.16720334770591,50.592350181488506],[-118.16737832515037,50.59240660452564],[-118.16760509434535,50.59251244910341],[-118.16798539036009,50.59274663230088],[-118.16832696743467,50.59296848031313],[-118.16844176933564,50.59304381862682],[-118.16858417675742,50.593154432574245],[-118.16893795625796,50.593438712774145],[-118.16910476345747,50.593765722279706],[-118.16893204179587,50.594072716640106],[-118.16879930601364,50.59430343495395],[-118.16888309965948,50.59446471197122],[-118.16897489572435,50.59466157050615],[-118.16887464157239,50.59495051488893],[-118.16877214477644,50.59529297365361],[-118.16877040366394,50.59556740646125],[-118.16878777755805,50.595783306362314],[-118.1688239782339,50.59600335563895],[-118.16885978428616,50.59616463338832],[-118.16886739581426,50.59622279356635],[-118.16884837955452,50.59629093261559],[-118.16881590660653,50.596466596890224],[-118.16878967964753,50.5966777186857],[-118.16883904625091,50.5968529425832],[-118.16895552207095,50.59700013881851],[-118.16902702643863,50.597089366181194],[-118.1690377587062,50.59712966889361],[-118.16904234674209,50.5971746176282],[-118.16905171690946,50.59727357667866],[-118.16905367501337,50.59739460951367],[-118.16902656124306,50.597458226824315],[-118.16899212782737,50.59747218312514],[-118.16896784141301,50.59749927521269],[-118.16893331526323,50.59758496627856],[-118.16887976833235,50.59769813022292],[-118.16881939273075,50.59777916700853],[-118.16878076605119,50.597806945873174],[-118.16874935769467,50.59783410452467],[-118.16870487884259,50.59787502844205],[-118.1686717145559,50.59790206309713],[-118.16860245929718,50.59795253617239],[-118.1684728237905,50.59804337974893],[-118.1683810368315,50.59812106860814],[-118.16834465315519,50.59816652301322],[-118.16827218092169,50.598265912996126],[-118.1681373781787,50.598447340302684],[-118.16802598461615,50.59859652474505],[-118.16796492315432,50.59869164046393],[-118.16791420228834,50.59880895358556],[-118.16787664926737,50.59892211665807],[-118.16784826746643,50.599043827263074],[-118.1678264209409,50.59917899717983],[-118.1678071091293,50.59926915184047],[-118.16777218865114,50.59933673708367],[-118.16769766369582,50.59942751243178],[-118.16761835735826,50.59950496129457],[-118.16753300432725,50.59958649351739],[-118.16745038093819,50.599672746901575],[-118.16741955735326,50.59976773789271],[-118.16741887820749,50.59989366429697],[-118.16740736970081,50.6000001878859],[-118.1673942993742,50.60006479653736],[-118.16742083652973,50.600207902309116],[-118.16749858915736,50.6004139463956],[-118.16755088068695,50.60056226017488],[-118.16756171185219,50.60064267518011],[-118.16757380999043,50.60070567141957],[-118.1676162483919,50.600849339364544],[-118.16768941868817,50.60105110045038],[-118.16772200432561,50.60114943883046],[-118.16772425058036,50.60120778035011],[-118.16774571724616,50.601369735200244],[-118.16779215787689,50.60153119366547],[-118.16783732678208,50.60159822412203],[-118.16787820377421,50.60162878719858],[-118.16796688198049,50.60169098066899],[-118.16809878006838,50.60181101887379],[-118.16818375795363,50.60198592693398],[-118.16817917803776,50.60213418350705],[-118.16815869445729,50.6022106970056],[-118.16815059956032,50.60224684111004],[-118.16813635804716,50.60228764008765],[-118.16822288926066,50.60229092937042],[-118.16841605284418,50.60236557902463],[-118.16850415733336,50.602593810242695],[-118.1684908006777,50.602792290244],[-118.16848485638826,50.60291784427053],[-118.16841393760606,50.60304898878659],[-118.1682681908518,50.603140385433],[-118.16809512632626,50.603204996528504],[-118.16788098893294,50.60322998282429],[-118.16769318740438,50.60315515070844],[-118.16755124167504,50.60314342905753],[-118.167348813016,50.603325169521284],[-118.16718560417205,50.60358762968918],[-118.16715536440664,50.60378095861225],[-118.16717956126683,50.60390695069662],[-118.16719946647152,50.60407783371893],[-118.16725351954058,50.60433812624889],[-118.16751118012475,50.60454218360583],[-118.1679109856691,50.604614475479295],[-118.16817284170092,50.604692844617155],[-118.16828650523782,50.6047952068565],[-118.16825187854278,50.60499331464177],[-118.1680784263368,50.60531437396484],[-118.16796682157114,50.60549517912567],[-118.16793238464554,50.605549800617894],[-118.16788838504685,50.60560827539873],[-118.16786643599083,50.605662648676955],[-118.16790273168974,50.605729612423715],[-118.16800273631924,50.60581859109421],[-118.16812488885729,50.60590291456198],[-118.16824128563319,50.60596931439144],[-118.16837094965616,50.606031010489026],[-118.1685493004863,50.60611930069721],[-118.16873857965722,50.60621627092314],[-118.16889975985046,50.60629092006015],[-118.1690271814587,50.60633493985171],[-118.16921275452387,50.60642260875433],[-118.16946955337492,50.60655032987718],[-118.16959561165334,50.60661233016126],[-118.16949932081599,50.606685182968775],[-118.16926936829107,50.60683108869696],[-118.16903092369039,50.606923852379985],[-118.16884613533799,50.60694357385349],[-118.1686959832049,50.606958391536466],[-118.16853119562955,50.60699591163099],[-118.16833811562415,50.607042723627806],[-118.16818767081207,50.607089725076925],[-118.16808074116783,50.60716239524178],[-118.16795917845512,50.60729843339828],[-118.16784746862679,50.60743912601881],[-118.1677062942609,50.60757546966638],[-118.16743720953598,50.60780277840364],[-118.16709270205165,50.60808521273778],[-118.16682195297912,50.60828132751916],[-118.1666293530725,50.60838636244288],[-118.16642377482172,50.60851477689177],[-118.1662885437471,50.60863742020862],[-118.16621722089116,50.60875044841412],[-118.16607125557702,50.60891413785704],[-118.1658672337453,50.609104802888915],[-118.16573356063795,50.609218516924734],[-118.16568116463941,50.60930463522898],[-118.16561735109097,50.60943571053132],[-118.16552290008106,50.60954880449205],[-118.16538005323882,50.60965396147168],[-118.16523730253405,50.60975856468745],[-118.16517778249687,50.60980407472136],[-118.16516373188972,50.60981325110506],[-118.1650972846112,50.609867871084596],[-118.16497609655636,50.60998133623494],[-118.16484495562635,50.61009070886452],[-118.16466004979513,50.61022284029226],[-118.16441708602382,50.61039210606506],[-118.1642130539932,50.61054208446331],[-118.1640403445239,50.610624793728874],[-118.16375259418014,50.610704466361554],[-118.16340717434863,50.61082920883436],[-118.16316859746128,50.61095301882537],[-118.16304027788082,50.61106654798425],[-118.16297528426891,50.611183980686675],[-118.16292346406848,50.611297255044356],[-118.16285691109307,50.611382941805324],[-118.16282997777022,50.611414934757434],[-118.16284539362968,50.61142845200926],[-118.16286226744711,50.61150478330792],[-118.16286507935594,50.6117428103013],[-118.16291891584919,50.612075398549344],[-118.16308712174452,50.61230308027095],[-118.1632984658869,50.6124264731251],[-118.16345829204933,50.6125191105302],[-118.16355781697068,50.612590541021845],[-118.16365314534572,50.612665633981166],[-118.16376262365064,50.612741156744185],[-118.16388176361757,50.61281227290405],[-118.16406481402026,50.61294496409996],[-118.16426640381981,50.61311398930241],[-118.16437022365811,50.613211708524965],[-118.16445355375053,50.613274085373966],[-118.16468266418258,50.61343827396609],[-118.16499305846354,50.6136460558989],[-118.16521836916459,50.61376082215749],[-118.16541616330298,50.613799084546535],[-118.16562039943058,50.613851350447575],[-118.16575213243911,50.613921663017855],[-118.16585546888518,50.61400183828784],[-118.16599783949255,50.614113006313126],[-118.16623115497968,50.61430404345508],[-118.16652175409543,50.61454374810301],[-118.16669545157562,50.614699499922644],[-118.16676297932948,50.61477092745136],[-118.16681235670511,50.614824126052625],[-118.16686427130693,50.61487298439064],[-118.16692252975402,50.61492624043606],[-118.16699522921087,50.61498843376179],[-118.16716395367503,50.615121797168555],[-118.16737688429299,50.61527692750018],[-118.16753546032302,50.61539715463889],[-118.16767988823939,50.615516943214736],[-118.16781690022493,50.61562829924945],[-118.16791048717982,50.615703255379316],[-118.1680049521169,50.61578336213852],[-118.16812927930441,50.615885913489166],[-118.16825448433661,50.61598344688206],[-118.16833138369853,50.61603180801867],[-118.16836758987347,50.61605865027749],[-118.16845796027178,50.616192699426385],[-118.1686080596656,50.616442817152894],[-118.16869306351644,50.616577056630405],[-118.16869862719365,50.616585918495325],[-118.16888843261313,50.616588584971076],[-118.16930551831541,50.61659316300692],[-118.16965595130901,50.61657212971527],[-118.16996315340214,50.61656443185582],[-118.17027474912027,50.61659263726228],[-118.17052964612888,50.61659932438218],[-118.1708226006165,50.61659174869009],[-118.17111468553793,50.616660369622245],[-118.17136159841334,50.61682466705917],[-118.17155698684672,50.61698871831301],[-118.17165019002279,50.617055743731726],[-118.17171401491116,50.61707719375547],[-118.17187260049603,50.61711605750506],[-118.17214224314068,50.61718084154394],[-118.17243131706711,50.617317604959794],[-118.17266116483567,50.61750837114977],[-118.17285109610143,50.61767316434402],[-118.17299612902853,50.61777942900735],[-118.17311675722138,50.61783200033476],[-118.17324840910568,50.61786219222391],[-118.1733111625748,50.61787960671789],[-118.17331965557324,50.61790224175348],[-118.17336807385686,50.61799152306061],[-118.17344059852957,50.61808532456566],[-118.1734957473109,50.618156442957314],[-118.1735792040166,50.61825892407261],[-118.17363260971098,50.618411266397565],[-118.17357789112397,50.61859212814753],[-118.17352287557613,50.61875433142645],[-118.17353206347333,50.61884423511056],[-118.17355832982787,50.618938172339426],[-118.17357913282127,50.61903284501173],[-118.17358382435258,50.61907723880505],[-118.1735842176234,50.61909534363401],[-118.17358080262005,50.61910471076092],[-118.17357748589806,50.61911351539061],[-118.17357846907014,50.619158777460456],[-118.17358492381737,50.619243969051794],[-118.17358854199219,50.61928432824968],[-118.17359040192675,50.61932457248196],[-118.17360164822587,50.61946376380663],[-118.17373031670489,50.61971461907381],[-118.17398020496246,50.62000452770919],[-118.17416725486382,50.62034875457895],[-118.1742682308393,50.62070724776929],[-118.1744030462792,50.620912781875546],[-118.17456721893744,50.62100118589895],[-118.17466999833557,50.62105418620824],[-118.1747181200009,50.62109430287674],[-118.17476390349384,50.621147803369276],[-118.17483408715339,50.62121433149938],[-118.17494028842594,50.62129864714536],[-118.175060731388,50.62134216375828],[-118.17524021717918,50.62136328809743],[-118.17545728518314,50.62142378530238],[-118.17565395614353,50.62148906245649],[-118.1758540359609,50.6215144667399],[-118.17608036442452,50.621511776672286],[-118.17626980564634,50.62153699959062],[-118.17639708045081,50.62157195776165],[-118.17653617555438,50.621651242201466],[-118.17668182182915,50.62178465869949],[-118.17676821269366,50.621860236457536],[-118.17682785411473,50.621895505960886],[-118.17689833041796,50.621940017276614],[-118.17693991354717,50.62196667450802],[-118.17695894755083,50.62197988374326],[-118.17697241714762,50.621984222652735],[-118.1769995536846,50.622001952843426],[-118.17715426261329,50.62206313019128],[-118.17746358193314,50.62218605565587],[-118.17764885211147,50.62229627784951],[-118.17770753815489,50.6224083062808],[-118.1777511834738,50.62248425957593],[-118.17778681829853,50.62252461520723],[-118.17795442676629,50.622644329527176],[-118.17823821581743,50.62289311185344],[-118.17839003971712,50.623103226980895],[-118.1784635904212,50.62331346544498],[-118.17857902446886,50.623569027588864],[-118.17865549597803,50.62375236529822],[-118.17870180120352,50.623904762511174],[-118.1787282917381,50.62404841505083],[-118.17873458160817,50.62420590083387],[-118.1787448773829,50.62438118533338],[-118.17878736414518,50.624484162344665],[-118.17891222076639,50.62456357806117],[-118.17905328422752,50.624652035226],[-118.17918263296124,50.62473628630789],[-118.17928705260094,50.62501422698148],[-118.17927907187325,50.625436779201465],[-118.17924066934292,50.625626139114985],[-118.1792444792694,50.625634876554834],[-118.17928744021168,50.62568422552507],[-118.17936418194812,50.625764199744076],[-118.17941153328225,50.62580877842438],[-118.1794340851105,50.62582222584598],[-118.17945234192324,50.62583989886007],[-118.17946327640468,50.625848577915654],[-118.1795123864446,50.62589327141846],[-118.17958180499053,50.62596426044482],[-118.17969154031482,50.626048818674654],[-118.17984735312379,50.626154700052744],[-118.17993785477924,50.626216997020464],[-118.17995786892445,50.626234793734376],[-118.17996978106284,50.62624806079413],[-118.17997534815876,50.626256921992905],[-118.17998442764882,50.626266039700276],[-118.18000795734574,50.62628407505593],[-118.18011398231036,50.62635933293364],[-118.18029664149716,50.62647445314949],[-118.18044631011465,50.62658498011743],[-118.1805903268427,50.626727881750746],[-118.18072146569585,50.62688342438276],[-118.1807625970142,50.62700439011348],[-118.18076068093244,50.62711723460766],[-118.18076910556026,50.62721160105949],[-118.18076678023246,50.627265667383064],[-118.18075089643943,50.62734645398582],[-118.18068321684979,50.62754052991065],[-118.18060123557642,50.62788781966794],[-118.1805578243982,50.628279059444985],[-118.1804756570602,50.628657961027244],[-118.18036818730256,50.62897802994377],[-118.18029259749517,50.62917663686705],[-118.18021417570293,50.629371085434414],[-118.18015322138461,50.62954698863669],[-118.18014875454365,50.62962349983647],[-118.18017707251063,50.62965486941652],[-118.18018996318006,50.62967272443551],[-118.18024112991563,50.62972603991879],[-118.18036270013114,50.62985493161935],[-118.18042580594714,50.63000286073928],[-118.18037870741696,50.63016053356568],[-118.18032877561029,50.63031405702117],[-118.18034472123969,50.63042646927182],[-118.1803745117724,50.63047996886535],[-118.18038281265237,50.630493550741626],[-118.18038662321321,50.630502288091385],[-118.18043437668,50.63056497063936],[-118.1805056976137,50.63075754003486],[-118.18051465514958,50.630991468168325],[-118.18047466847406,50.63110840907563],[-118.18045056732198,50.631144563770405],[-118.18044100511707,50.63115857743633],[-118.1804376888493,50.631167382142806],[-118.18043437258021,50.63117618684914],[-118.18061577974956,50.631278219147184],[-118.181020967117,50.631494305648786],[-118.18128059105841,50.63165776603179],[-118.18142727517461,50.631836436038036],[-118.18161655756359,50.6321175272359],[-118.1816617191837,50.632296954696564],[-118.18158179777097,50.63238792694137],[-118.1814885284164,50.63255534484273],[-118.18145201183843,50.6328256116718],[-118.18147408749698,50.63315763328222],[-118.18148239505648,50.63347681777481],[-118.1814688018155,50.633697298189205],[-118.1814582024771,50.6338191287671],[-118.1814675332868,50.6339898229916],[-118.18147455455131,50.63425524731886],[-118.1814443692346,50.634489246159625],[-118.1813917011616,50.63463805752999],[-118.1813275009332,50.634751033378954],[-118.1812159763979,50.63494146013772],[-118.18109060540796,50.635180613003236],[-118.18104221631125,50.635284534274255],[-118.18106633093981,50.63528906168811],[-118.18118280950719,50.63531477252424],[-118.18136919363188,50.63535784326464],[-118.18151691484074,50.63538801366567],[-118.18185001540499,50.63537531956549],[-118.18246934878702,50.63533307068845],[-118.18287781186795,50.63530647422299],[-118.18296079639107,50.63531005800515],[-118.18297163565235,50.635319299112076],[-118.18304018313044,50.63535462986369],[-118.18342195415721,50.635480931618815],[-118.18409917329258,50.6356675751101],[-118.18469046134568,50.635796195024575],[-118.18512259458261,50.63586841713984],[-118.18546879133315,50.63588261875893],[-118.18581567079231,50.635892908613734],[-118.18616050906354,50.635925088807184],[-118.18639451712976,50.63590936506315],[-118.18656289224141,50.63583139411878],[-118.18669329479025,50.63576713667828],[-118.18680572921657,50.63569370612473],[-118.18694851052288,50.635589087463146],[-118.18716539298325,50.63548798444154],[-118.18739245288462,50.63544069655468],[-118.18754093817701,50.63542572158015],[-118.18765223088093,50.63541999623301],[-118.18780478910269,50.63535108756376],[-118.18797020471153,50.63521867749364],[-118.18805227325304,50.63514593799617],[-118.18807852702807,50.635128009921715],[-118.18813727855311,50.63508695331635],[-118.18819788388907,50.63504546676702],[-118.1882216013627,50.635031879275274],[-118.18823897016924,50.635013895364],[-118.18823064475046,50.634959649933236],[-118.18819377957124,50.63483447115332],[-118.1882078755534,50.634712887402486],[-118.19497836954802,50.634610664690655],[-118.19793150607117,50.63677385095076],[-118.19946277660264,50.639339211440884],[-118.19981811032031,50.64424352786961],[-118.19981491344485,50.648346501105415],[-118.20134051475421,50.64988501455488],[-118.20313857687081,50.652230041377706],[-118.20430600287118,50.65598978910204],[-118.19999141034795,50.658443954758575],[-118.1947864592968,50.65889738216472],[-118.18956744863263,50.659756859294106],[-118.18829895677737,50.65992692914536],[-118.18281948119693,50.66186816069758],[-118.17318913976605,50.664659521098834],[-118.17299898710337,50.67030562174247],[-118.17642439475532,50.67173084850008],[-118.18315977372865,50.67247377837427],[-118.1893624274723,50.67333192048067],[-118.19548300532543,50.67457989255915],[-118.20096341830832,50.67623332299749],[-118.20628022372156,50.67817377466511],[-118.20707775158422,50.67874709705371],[-118.20959244388057,50.68222035964616],[-118.20923347483696,50.68558984892912],[-118.20679898490489,50.68974975534502],[-118.2031156784683,50.69493984869652],[-118.20166527095351,50.698190400618024],[-118.2020250029142,50.705034240910024],[-118.20219965354994,50.706402630039435],[-118.20381456900235,50.71267128552613],[-118.20480924690308,50.71906526013593],[-118.20587443228438,50.72522009087455],[-118.2058809260394,50.72681782506633],[-118.20444074735607,50.72984144360751],[-118.20290630835626,50.73389429656282],[-118.20515781130551,50.736684590962575],[-118.20929044039909,50.73834135889047],[-118.21064386412404,50.73867783103703],[-118.21630936662079,50.74021680604928],[-118.22325127487865,50.74278331836022],[-118.22748222135199,50.74552096041582],[-118.23090961989217,50.74837005939072],[-118.23216168466378,50.75281858722905],[-118.23126705724728,50.75418841313003],[-118.22946431739983,50.756922589017],[-118.22910450923672,50.75989187049642],[-118.2293702504637,50.76131668191023],[-118.23108536681745,50.76285956223272],[-118.23431783251324,50.764622871692865],[-118.23900272280034,50.76616030913862],[-118.24342043362002,50.768497801219404],[-118.24549650215668,50.77100696612163],[-118.24703223415065,50.77465593937416],[-118.24767000625843,50.775760910251904],[-118.25270744378177,50.7814746476584],[-118.25709335858691,50.78321566980083],[-118.25761742076048,50.792754109692005],[-118.26098815923572,50.79403636715028],[-118.25465028601057,50.79747622500087],[-118.25966631401232,50.79832166473041],[-118.25975535139132,50.79999996882443],[-118.26000859369165,50.80475491080064],[-118.26464673436396,50.80794896161951],[-118.26613975623381,50.81126288210923],[-118.26596753624354,50.81143219882367],[-118.2628089181168,50.814569615065004],[-118.25973611470141,50.8190207655612],[-118.26064811009263,50.822903688541814],[-118.26451948055497,50.82398038434548],[-118.26668641280689,50.82392738571552],[-118.27055962077037,50.82392316219116],[-118.27408422650291,50.82551812522704],[-118.27327766241369,50.829512151549444],[-118.27255232412662,50.830481154598274],[-118.27011183419981,50.833675853696995],[-118.26822014146482,50.83823668958119],[-118.26994213492175,50.843142790440965],[-118.27345374008036,50.846222948213985],[-118.27579944248077,50.84695906379913],[-118.28167610755769,50.84769774973909],[-118.28510690913284,50.84935174635465],[-118.2854703481116,50.8499776694187],[-118.28709481986769,50.85248692192191],[-118.28980382924232,50.857158019000025],[-118.29143501553222,50.8608708816564],[-118.29242650942585,50.86497598226044],[-118.29161789211051,50.86948301615357],[-118.28900416893455,50.87284789042597],[-118.28394392503274,50.87604650408137],[-118.27988586819255,50.87758640960698],[-118.274547531442,50.87941198144368],[-118.27238091348175,50.880272216079824],[-118.26985399707216,50.8823830234185],[-118.26543126572913,50.88552116567786],[-118.25910356485731,50.88660788602126],[-118.25332102690213,50.88678005620513],[-118.25160355746236,50.889576828783625],[-118.25322746494584,50.890771364947646],[-118.25557966954908,50.89139976420575],[-118.26189317007065,50.89328058827083],[-118.26895397002826,50.894816928961745],[-118.2752755319454,50.895667011208474],[-118.27680752869118,50.89401410401916],[-118.27925351860152,50.89195909214067],[-118.28403489586533,50.88939123340037],[-118.29063762307699,50.88778796982641],[-118.29668312919661,50.88749989225209],[-118.2971413229191,50.88749817668488],[-118.30047516510712,50.88749938824301],[-118.30209849720381,50.88771065854389],[-118.30535179910544,50.885611436053466],[-118.30951285171837,50.885378596989],[-118.31168730655239,50.88538094908215],[-118.31340072389605,50.88531877264689],[-118.31692405635448,50.885547098551065],[-118.32025606599615,50.88331797569517],[-118.32576490021653,50.88240202429775],[-118.3342600399615,50.88325139279758],[-118.33904617246215,50.88495344902819],[-118.34348377581733,50.885522547237976],[-118.34980589527422,50.88511680192549],[-118.35376939462067,50.883115233294475],[-118.35521871028565,50.88317323144917],[-118.36245305300953,50.88578645150227],[-118.3672445296476,50.88754742514167],[-118.37392419109888,50.887141596961655],[-118.38187533183503,50.88490603040607],[-118.38422562126497,50.88404616724699],[-118.3865695778383,50.88347375721372],[-118.39297742195582,50.88289476036476],[-118.39938892411664,50.882879635082745],[-118.40689418289517,50.88349683390168],[-118.41612085256905,50.88593470020635],[-118.42398204665032,50.889171621142516],[-118.42923301333376,50.890936631896935],[-118.43547646146921,50.89486230641884],[-118.43965312295416,50.8995887178093],[-118.44154973665431,50.90089173227059],[-118.44788617073134,50.902596473155675],[-118.45394662418003,50.902639544854885],[-118.45855615447007,50.9026306741288],[-118.46469757191288,50.90261766528539],[-118.47544341744656,50.90254022428636],[-118.48330727090394,50.902749419733816],[-118.48611692140486,50.90365296773257],[-118.49563507126781,50.908140320048574],[-118.50379408889161,50.91348438303628],[-118.50750479027546,50.91609811101052],[-118.5105813239506,50.917294268023475],[-118.51792972221388,50.92041255291857],[-118.5249069301072,50.92387118619771],[-118.53097297753898,50.92602620694713],[-118.53342128072767,50.92704873183857],[-118.53730721110048,50.9277805443668],[-118.53767631522766,50.927852585996575],[-118.53102513776413,50.9316313282183],[-118.53584130791567,50.93631448559261],[-118.54208329673779,50.939279631543094],[-118.54480560658577,50.93717819805167],[-118.54931190048151,50.936381899744944],[-118.55945562469016,50.94045691268998],[-118.56152003126654,50.93744675253212],[-118.56636582856476,50.93901840942456],[-118.57177116863457,50.93804563021919],[-118.57829103272843,50.939348660146905],[-118.57793587567457,50.93648923539032],[-118.5834508481028,50.9364114863281],[-118.58830854801721,50.925465744345956],[-118.59375446475404,50.92571878346785],[-118.59354813075991,50.92453974712603],[-118.596432410048,50.92555130995347],[-118.59977394656765,50.92491187529277],[-118.60617884608966,50.9235821777848],[-118.61168161695016,50.92207965614384],[-118.6134841413061,50.921050896592625],[-118.61364100634935,50.91648451651555],[-118.61288769451512,50.912487213574416],[-118.61305705420808,50.91112197953593],[-118.61272319159204,50.90313254369413],[-118.61367928059323,50.89650824214517],[-118.61588558120829,50.89045074597415],[-118.62072017072602,50.88518537123781],[-118.62746206935647,50.88065748257115],[-118.635568514957,50.87668876513266],[-118.64042279455549,50.87370338390908],[-118.64167338186516,50.87227786751302],[-118.6409141671169,50.86856526797239],[-118.63853238161775,50.86463788989651],[-118.63506673816522,50.85922805429545],[-118.63323097575613,50.856326357651874],[-118.63184661197768,50.85233810382926],[-118.6319242991559,50.850225747534196],[-118.63886698518891,50.84946082331593],[-118.6464580995627,50.85091321735707],[-118.64971974813473,50.85193165603626],[-118.65205960433018,50.85117427350607],[-118.6588042701965,50.847444729562305],[-118.66364298199531,50.84400323184011],[-118.66831589652114,50.84113080825014],[-118.66416761254308,50.83195907236518],[-118.66214644438021,50.827402237402836],[-118.66389876303349,50.82083045514597],[-118.6695494843171,50.81772777507126],[-118.67333218020318,50.816170379330806],[-118.68250859800757,50.814195960729876],[-118.68494021419325,50.81373355630922],[-118.69413338813152,50.81260867347277],[-118.70494810962244,50.81256428340692],[-118.70748262836831,50.81260531379181],[-118.71626215486968,50.81610608658737],[-118.72011535328717,50.823115786502335],[-118.72021567429121,50.824250945030656],[-118.72437509267836,50.8247519413574],[-118.73592446539155,50.82520935113393],[-118.7404395109337,50.825193425669305],[-118.74918495949036,50.8249794406734],[-118.75775263800182,50.824539952245324],[-118.76163937129516,50.82549073981192],[-118.76878172038951,50.82688376558429],[-118.77500949053427,50.826343750812455],[-118.77607224217344,50.825545858898614],[-118.78121695684725,50.82617053929654],[-118.78197270591411,50.8201328060924],[-118.78499084029757,50.81522093797787],[-118.78615560940636,50.813369889482416],[-118.7869060326564,50.8134962850453],[-118.79571762930155,50.81049965091788],[-118.80000331765802,50.80862037991776],[-118.80263569886165,50.807465419964664],[-118.81205189479232,50.80113188716468],[-118.81504771948849,50.800007999001714],[-118.83481617078955,50.79259188613031],[-118.82943496420455,50.777828422720155],[-118.8232484056665,50.7804907419405],[-118.8241539715404,50.779859530504666],[-118.8261144685908,50.77751149893787],[-118.82698367120807,50.775563225691265],[-118.82819263700222,50.77087705136117],[-118.82950526902592,50.76767531175935],[-118.83397917648546,50.76565363663553],[-118.83973916768116,50.764767903396866],[-118.84669087206008,50.76569852137634],[-118.85011677105695,50.76647642442869],[-118.85261996176179,50.765090444087456],[-118.85733434297227,50.760218142190844],[-118.86676007270628,50.757080035537655],[-118.87440660757434,50.75606175183105],[-118.8766514928819,50.7561082659423],[-118.8811926577037,50.752031464600655],[-118.88476131064837,50.74904453410547],[-118.88813435859132,50.7487166050563],[-118.89114432510574,50.74843084587795],[-118.89882796636238,50.75021411841745],[-118.90170610895534,50.75030954115281],[-118.90692280081079,50.75587536227107],[-118.90799143331084,50.7618053920072],[-118.90809309769132,50.76197322223958],[-118.91322061661494,50.767934562465754],[-118.91866723636646,50.77144189495369],[-118.92175299689127,50.77239503756043],[-118.92791384587503,50.774641120699016],[-118.93170734825324,50.77599033167264],[-118.9351514443431,50.77693531915369],[-118.94022874323143,50.7791869903761],[-118.94505636972052,50.782299843898315],[-118.94984013601625,50.78289412958713],[-118.953249538553,50.78144319974018],[-118.95574631598241,50.77971900948963],[-118.96166079221875,50.778023889570086],[-118.97037504802725,50.77556973452633],[-118.97109069316176,50.77528089589953],[-118.97942711832751,50.77213885859585],[-118.98605370015193,50.76952725351104],[-118.99008296682283,50.768471979730364],[-118.99824631828385,50.76596144776577],[-119.00157742725004,50.765536612173484],[-119.00986339752183,50.76587837638342],[-119.0147328376099,50.7656427150954],[-119.01661482321981,50.765549683184915],[-119.02606773108492,50.764625312648704],[-119.03435096917536,50.76434289231883],[-119.05388879234745,50.76345718967964],[-119.06190258500366,50.7633449264369],[-119.07182788851726,50.76349759551051],[-119.08292124564802,50.76466723614769],[-119.08789116160571,50.7649733199031],[-119.09138992329983,50.764838287023785],[-119.10488147803801,50.76358682450443],[-119.1113740021008,50.763538208840885],[-119.124257475763,50.76326607249518],[-119.13304596683727,50.76153773617661],[-119.1401456374967,50.760686756096504],[-119.13912623188205,50.75869394935693],[-119.13558966303408,50.753235868600164],[-119.13481704878053,50.75010249896918],[-119.13626742868915,50.74603895663274],[-119.13785143490118,50.74351607732078],[-119.13774112103572,50.74265703488418],[-119.13399994293246,50.74011737393014],[-119.1323234934659,50.73693553636536],[-119.13214359219353,50.732821090980735],[-119.13280244816767,50.72899467674779],[-119.135785951693,50.72514461696127],[-119.13940475358152,50.72123379899377],[-119.14188365037617,50.71955339094582],[-119.14306540318665,50.715373895377766],[-119.14634171786804,50.70792782227211],[-119.14946577920598,50.70156202547374],[-119.15276521347228,50.69525318207605],[-119.15793886296774,50.6888705722878],[-119.16156409370781,50.68581635243614],[-119.16655572110992,50.68303380670401],[-119.17904785306088,50.678073787999644],[-119.19215209166656,50.67224866717154],[-119.19874526265637,50.66985277133371],[-119.20121990787975,50.66760358287517],[-119.20776577583739,50.661948210226015],[-119.21304016101752,50.656416268151034],[-119.21781045776521,50.65260917172248],[-119.22341806422696,50.65021505844743],[-119.22718534068417,50.649554061606004],[-119.23023926812188,50.64975643402036],[-119.23603837274877,50.651359283436776],[-119.24217465586234,50.65261400792449],[-119.25176090645462,50.65144564449735],[-119.25964049485745,50.64971280265216],[-119.26643618480553,50.648283765325665],[-119.26964809479301,50.647055324965116],[-119.27139758155192,50.64515343724901],[-119.27472064681979,50.640435439684566],[-119.2772333261766,50.63647371726661],[-119.2817457962043,50.633575293582204],[-119.28559301170226,50.63274300313571],[-119.29196230296878,50.63205045258578],[-119.29248332380472,50.631701778948425],[-119.29140600616877,50.627318317510316],[-119.2905553622708,50.621611284628685],[-119.2908849709554,50.61618077659323],[-119.29183396422961,50.61069120794484],[-119.29396883426753,50.606100604086535],[-119.29834726332747,50.600744671991],[-119.30217792615153,50.59591279388882],[-119.30464030243783,50.59320577999384],[-119.30543689298864,50.59319459978863],[-119.30141135274457,50.58992253665215],[-119.2940653192991,50.58256539065699],[-119.28979314026857,50.57620846648669],[-119.28969835036895,50.57181181235336],[-119.28947529036289,50.56210381210546],[-119.29018580934029,50.55421647697314],[-119.2911147476911,50.547808235019836],[-119.29260623161001,50.54579739564898],[-119.29599379484667,50.53754162128345],[-119.29890109089126,50.53116713429903],[-119.30077808158633,50.52732491774934],[-119.30217517402303,50.525369188264655],[-119.3052015276749,50.52094318195947],[-119.30805750302653,50.51651528278263],[-119.30919279590064,50.51479072302284],[-119.31058909029264,50.51312082346434],[-119.31141455683635,50.51042992856597],[-119.3107596399646,50.50540417196044],[-119.30968339519268,50.5010213420848],[-119.30703356412201,50.495506644010575],[-119.30694310397998,50.49516273985227],[-119.30054243225315,50.481745704404126],[-119.2981616208691,50.47605558499065],[-119.29625446197423,50.47070596686396],[-119.29542471101949,50.46591847773099],[-119.29693150411926,50.461504310651705],[-119.30289341709117,50.455965925970965],[-119.3272566445986,50.44149547892236],[-119.34687596945334,50.43136112148791],[-119.34958633335991,50.42986347098634],[-119.36522704427796,50.42122995803372],[-119.37140201712337,50.42145021810411],[-119.37976843826306,50.423019151235096],[-119.3860557232339,50.42392046826092],[-119.39021549519612,50.42216846909383],[-119.39663158863226,50.41775338459049],[-119.3974210263458,50.41728667801739],[-119.40721137607301,50.411925207639506],[-119.42062501396124,50.40835290879484],[-119.42623427238743,50.407205416285684],[-119.42742962418369,50.40530856889121],[-119.42441229127918,50.39905835556958],[-119.42207001716524,50.395256640019724],[-119.430427324653,50.39676615922214],[-119.44148079411049,50.402184133513224],[-119.44654059240685,50.41063827950843],[-119.44710530878352,50.41200396042388],[-119.45055341160308,50.417165363631845],[-119.46125600375642,50.41949692710677],[-119.46922438164422,50.419922651029246],[-119.47839160546413,50.421247556868316],[-119.48902999130951,50.42129796740224],[-119.50617868307552,50.4235542241526],[-119.523544312955,50.42706451023621],[-119.52571767904878,50.4277810586715],[-119.52992789644597,50.4279016379467],[-119.53829047296392,50.429630537910974],[-119.54235978820924,50.43438470376958],[-119.54511917373992,50.43703546974259],[-119.54945912762994,50.43852695001423],[-119.55651644923707,50.44415775860459],[-119.56052362499345,50.44976393862401],[-119.56427838525067,50.45268907222034],[-119.56773464064626,50.45750887709558],[-119.57449904278792,50.46245174579986],[-119.57678315841599,50.46419361874836],[-119.58038652044672,50.46472289199496],[-119.58199798227521,50.46493247393417],[-119.58354335237885,50.46262780166283],[-119.58437885065851,50.45775802969308],[-119.5874299969184,50.45481089758469],[-119.59244533512246,50.45177554598287],[-119.60182385907501,50.447891056799534],[-119.60509834792622,50.44664467120368],[-119.60846845005898,50.445520437281566],[-119.61609370230926,50.44330978935385],[-119.62554374483659,50.44198867573527],[-119.63196886255894,50.4414541490495],[-119.64668526951108,50.436974970153045],[-119.65228365360868,50.43547615320797],[-119.6560749142435,50.433654701824686],[-119.66516282784211,50.42965447268143],[-119.67060542224011,50.426435180145646],[-119.67285483476189,50.424006255259634],[-119.6794589510338,50.41763571601773],[-119.68825912339689,50.41020105473179],[-119.6919834996987,50.4066093079145],[-119.68994746162312,50.40692223345828],[-119.67962643357676,50.40888309116496],[-119.6673370319992,50.410363268519085],[-119.65001944511292,50.41161667790066],[-119.6400084108209,50.411857879873075],[-119.63727900461978,50.4040630995732],[-119.63702119538468,50.39898230607723],[-119.63825756479793,50.39222249646679],[-119.64036976140072,50.388363520330984],[-119.6404378921185,50.387680058565614],[-119.63824416966912,50.383305969863116],[-119.63487793172709,50.37843738560622],[-119.6338433427797,50.37656257737838],[-119.63578924181655,50.37327938711817],[-119.64031883171612,50.37219810869413],[-119.64447517949829,50.37065759731012],[-119.6461472262959,50.36720625960506],[-119.64544752766469,50.36475644044164],[-119.64448950826916,50.36253761569567],[-119.6465975794455,50.36120062006124],[-119.653537251049,50.36053603865507],[-119.65833401320273,50.35944915425455],[-119.66098377057963,50.358271012270684],[-119.66259599661319,50.355735755621154],[-119.66407403145624,50.35154111442029],[-119.66641131631356,50.34916582244964],[-119.6682154581972,50.34696799395395],[-119.66875959449337,50.34439621527481],[-119.66563354915517,50.341232723733846],[-119.66430729616734,50.33902053169143],[-119.66427601526338,50.335020593857244],[-119.67166232638093,50.331439375349035],[-119.68231813593853,50.329583807009435],[-119.6834768649339,50.32956891952731],[-119.69088495298158,50.32672197742989],[-119.69717178550194,50.32492932979621],[-119.70396515705114,50.32283761989152],[-119.71380324422111,50.3202440237407],[-119.71953535337387,50.31816709978184],[-119.71804062651744,50.316240360278634],[-119.71096473677848,50.315309505990825],[-119.70464417509818,50.313108516524686],[-119.70234391918171,50.31079607220129],[-119.70149432569023,50.3096084858812],[-119.6995851287166,50.30843707464118],[-119.694379994416,50.30764853813271],[-119.68814689545599,50.30796259748977],[-119.68457564390353,50.307892434247734],[-119.68127341494909,50.30519276619394],[-119.68367322573329,50.29921951560623],[-119.68712277892598,50.29551407619095],[-119.68767466678379,50.29327810928891],[-119.68980304746214,50.29004623685998],[-119.69463435241005,50.287639980058444],[-119.69913568934446,50.28335090870773],[-119.7039445652532,50.277454004680806],[-119.70797509634808,50.272484706364516],[-119.71040782501179,50.270794155766445],[-119.71561086235201,50.26609452701013],[-119.72114743079388,50.263448334759936],[-119.73213829128868,50.261580853228246],[-119.7367667289902,50.26151521781483],[-119.7386447519753,50.261377759728724],[-119.74768246640845,50.25987599718243],[-119.75345394472234,50.25642567270231],[-119.7538312343109,50.249103253111414],[-119.75744842375025,50.242478146598174],[-119.75956458557822,50.2390758307873],[-119.7604183704509,50.23808997457914],[-119.76033080361245,50.23300749627709],[-119.75697171305312,50.22848394992912],[-119.75234104450256,50.22563402960143],[-119.74757977461572,50.221695952925835],[-119.74467337176186,50.217678601327876],[-119.74145400003194,50.21155220236246],[-119.7381614245568,50.20657192446624],[-119.73931660671055,50.20381165410423],[-119.74971141411105,50.20309408898796],[-119.76159600253435,50.20166598664557],[-119.76805395051359,50.200319175511524],[-119.77124840925279,50.20010018176041],[-119.77483837133421,50.20078941341987],[-119.77919339968547,50.20307708392519],[-119.78723688559015,50.204214880285846],[-119.79400872148517,50.20406288287047],[-119.7982727739882,50.203941748716524],[-119.80259923864966,50.202850093866026],[-119.80426576639954,50.199508564338274],[-119.80675175606206,50.19644546204274],[-119.8102229710972,50.19399036875884],[-119.81322956045959,50.19091920369979],[-119.81645980069733,50.1889878036132],[-119.82244388047981,50.18706660185834],[-119.82674581356345,50.18551878037225],[-119.82781716878522,50.18281348116748],[-119.82511662022564,50.18199933863206],[-119.82449700564484,50.18200741614931],[-119.82045894078459,50.181209425771456],[-119.81597167071737,50.18030481455093],[-119.81105737948435,50.17717556209179],[-119.80836402085403,50.173843435391376],[-119.80457332317015,50.16692310078923],[-119.80222543672049,50.161071313734496],[-119.79900087906105,50.155059420790735],[-119.7958655339355,50.15179038199871],[-119.79116523045407,50.149797606252385],[-119.78417663867775,50.14841233550573],[-119.78051424847318,50.147666023586126],[-119.77622953106734,50.142242284275355],[-119.77620267720673,50.13875256314793],[-119.7760977551072,50.133272630169316],[-119.77652374395308,50.1300645754515],[-119.77677468864779,50.12680146612684],[-119.77755524202861,50.126331320915725],[-119.7757331695787,50.12241779985542],[-119.77284796243647,50.12113928074746],[-119.76928835280076,50.12119518242395],[-119.76602764440992,50.12203892176791],[-119.76409611634399,50.122813085325994],[-119.76214098646322,50.12283913356041],[-119.75838303803819,50.122089881478566],[-119.75554251823951,50.12202039028501],[-119.74988830993182,50.12301184944333],[-119.74600293248609,50.12369765433551],[-119.74492146878717,50.123598289378414],[-119.7384485914291,50.11871514044642],[-119.73649066491798,50.1133705079749],[-119.73709302821021,50.107478635890814],[-119.7377730749997,50.106211686892046],[-119.73985711651117,50.10229432093311],[-119.7400312995121,50.09960592444697],[-119.74180377951753,50.09672380570182],[-119.7411489068289,50.09312684272463],[-119.74293600342847,50.090645430820956],[-119.74663255142548,50.089680624459575],[-119.75392778438034,50.087234649289115],[-119.75871664354246,50.08464629316453],[-119.75957878219243,50.08378271341169],[-119.7584531698271,50.081969640167],[-119.75202955614384,50.08114670866496],[-119.74479836446348,50.07987406543912],[-119.74150015633822,50.0772403151021],[-119.74510622976871,50.073359389190706],[-119.75358850087014,50.069401295328184],[-119.75944133961188,50.06640367983204],[-119.76218659995037,50.06356641991337],[-119.76216997266131,50.06327894009455],[-119.75727768721573,50.06020748075353],[-119.75685494992983,50.055527736956854],[-119.7587046509392,50.052470921290535],[-119.75857875803906,50.049099726470246],[-119.76059271309634,50.045353918423274],[-119.77268567983111,50.0411791942993],[-119.77966270337328,50.039761238002036],[-119.78123978853039,50.039398898451054],[-119.78629687541878,50.03920785471873],[-119.79184332133947,50.03810065202606],[-119.79790696141565,50.03617863826212],[-119.80208465472128,50.0340053178664],[-119.80544402138734,50.031150511390905],[-119.8034367018772,50.02706452998201],[-119.79968413128485,50.02386344475199],[-119.79761317668182,50.02035294637247],[-119.79707261740691,50.01989988284573],[-119.79355596069847,50.01846776467675],[-119.78657467082616,50.0164578292464],[-119.77961148880377,50.01524151803197],[-119.774439320157,50.0143476269336],[-119.77318305782418,50.01390677501852],[-119.77128596635892,50.01067848617545],[-119.7743644508044,50.00732006889899],[-119.77906251502753,50.00450538453772],[-119.78503431655525,50.00281760075216],[-119.79447277039475,50.0014771215047],[-119.80208835037455,50.00107681777217],[-119.80680815825565,50.00158233894158],[-119.81186767627479,50.00195849822345],[-119.81620233712816,50.001383694414784],[-119.82120743587784,49.99999481618963],[-119.82353779917987,49.99902069341319],[-119.8254477472719,49.99784233327164],[-119.82540479245509,49.996817294438095],[-119.82532967465609,49.99458449014123],[-119.82731468934907,49.99295402212915],[-119.83075818976413,49.99233579788422],[-119.83467551230962,49.990388731004145],[-119.83132579821434,49.98814696922474],[-119.82772542665414,49.98682728647958],[-119.82573275651264,49.98541988349346],[-119.82567402501897,49.98399514320121],[-119.82652168246096,49.98249176920076],[-119.8284262486511,49.98165714728749],[-119.83000508528065,49.98095362200749],[-119.83603056663799,49.98058733487571],[-119.83851295188258,49.980548244879],[-119.83991705572495,49.98041064779114],[-119.84415611817411,49.977314932789],[-119.84871868575725,49.97584705877519],[-119.84872562718964,49.97586041739172],[-119.84880709907786,49.97604718716514],[-119.8488142643264,49.97607183933555],[-119.84883649293937,49.97623102202034],[-119.84884138008188,49.97631139160072],[-119.84883591149422,49.97645548100777],[-119.84883386936737,49.97647060012422],[-119.84882577580669,49.97654347183139],[-119.84882192265609,49.9765590487397],[-119.84879986595836,49.97663169552584],[-119.84879669270086,49.9766422386986],[-119.84872011352367,49.97682068837056],[-119.84862972176475,49.976997793411385],[-119.84854258021716,49.977150831384776],[-119.84849674070418,49.97724414435131],[-119.84842415757143,49.977431843081035],[-119.84839228470733,49.97751240350642],[-119.84836491688007,49.977689105308116],[-119.84835007874142,49.9778636952944],[-119.8483656814504,49.97795537919311],[-119.84841703748269,49.97814496900856],[-119.84848590714897,49.97833440553801],[-119.84853681415153,49.978514376594475],[-119.84862538560041,49.978700416366976],[-119.84872173455624,49.97888068386994],[-119.8488849995304,49.979226027811436],[-119.84895319526645,49.979407529054335],[-119.84901655701766,49.97959892050112],[-119.84909638045427,49.97977204993201],[-119.8491003028044,49.97978186356753],[-119.8491687205144,49.97998763542134],[-119.84917068052194,49.979999026446876],[-119.84921162059442,49.98021396706308],[-119.84921358062239,49.98022535808443],[-119.84922035031684,49.98033065092644],[-119.84921706279968,49.980510401450864],[-119.84921452904308,49.98069752235555],[-119.84921451719823,49.9807494139019],[-119.84921466607071,49.980761262712754],[-119.8491965126317,49.98092156008631],[-119.84916544963721,49.9810867727431],[-119.84916028396373,49.981228622044654],[-119.84914423785541,49.98141216806976],[-119.84915690922364,49.98146081916529],[-119.84917879031701,49.98150604376393],[-119.84925101534785,49.981580042237475],[-119.84930437802167,49.981612369923965],[-119.84931902024897,49.98162052946006],[-119.84933200249786,49.9816280271976],[-119.84962161190391,49.98180222632982],[-119.84963444303219,49.98181084362554],[-119.8497237324009,49.98187507875817],[-119.84985928821735,49.981972379715245],[-119.84994314213144,49.9820380059915],[-119.85014338533108,49.98217446976816],[-119.8502827993292,49.98224321599021],[-119.85061493350793,49.98233575307194],[-119.85063002979943,49.98234055363613],[-119.8507369914112,49.98237757798669],[-119.85078024295815,49.982394112360744],[-119.8508017556493,49.982403216999366],[-119.85096510130303,49.98247612180137],[-119.8510040496035,49.982498614399205],[-119.85124233644724,49.98267726357549],[-119.85140310607363,49.98280812387089],[-119.85141563545776,49.98281898014029],[-119.8516066675513,49.98301075916535],[-119.85180494745974,49.983200697495974],[-119.85187997230287,49.98327992273881],[-119.85206594785156,49.98348326612627],[-119.85228174845138,49.98366008133151],[-119.85244849327667,49.98375968869349],[-119.8526319945626,49.983877726165865],[-119.85278469939783,49.983977672841164],[-119.85292125105471,49.98406768788387],[-119.85301432564553,49.98411690752825],[-119.85311261677423,49.98411452816381],[-119.85315474154052,49.984113508409344],[-119.85318795989507,49.98410070791232],[-119.85320034257371,49.98408673790116],[-119.85322125926997,49.9840484291221],[-119.85322294369192,49.983880439590386],[-119.85322516133988,49.98368258128036],[-119.85322659656583,49.98367194957813],[-119.85323453201111,49.98361316620403],[-119.85321884262413,49.983522039018794],[-119.853207068318,49.983505584974594],[-119.8530087063531,49.98330324516915],[-119.8530010080233,49.98329547599221],[-119.85289692439146,49.98317231283416],[-119.8528795655384,49.98314539250729],[-119.85278244065701,49.982931813619615],[-119.85277459517899,49.98289921832475],[-119.85276119116034,49.982674545821496],[-119.85276874721092,49.98263153425257],[-119.85283089556425,49.98249514060416],[-119.85285052650232,49.98246635288544],[-119.85295585170972,49.9823470479996],[-119.852983711475,49.982322097407675],[-119.85311703812548,49.98222862253999],[-119.85317146959927,49.98220121967734],[-119.85325405916161,49.98217257264277],[-119.85329037010105,49.982162770476855],[-119.85359256100708,49.982101326242386],[-119.85392970173986,49.982040155204146],[-119.85413194322707,49.98198043680621],[-119.85420079188349,49.981949898850104],[-119.85422487391517,49.98193996959095],[-119.85425975166285,49.98192782149764],[-119.85439631498382,49.98188810630311],[-119.8544506682584,49.98187423546139],[-119.85466121108504,49.981817806755956],[-119.85471141241919,49.9818087746458],[-119.85485129361858,49.981796319088446],[-119.85487243045965,49.981795249076505],[-119.85528489898877,49.98178512116922],[-119.8554368609602,49.98174795643415],[-119.85568356492807,49.98164391937901],[-119.85594778427907,49.981513781606324],[-119.85600462817234,49.98149440937888],[-119.85629903508348,49.98142576189046],[-119.85631519027814,49.98142271548282],[-119.85633323152854,49.9814186558336],[-119.85638184693838,49.98140840593924],[-119.85659955922343,49.981311765079205],[-119.85670071712384,49.981249186865846],[-119.85684030350913,49.981083293428824],[-119.85684838051777,49.9810752904622],[-119.85696773265633,49.98095564110782],[-119.85701415961242,49.98092270658307],[-119.85716257030472,49.98084699472592],[-119.85721775278337,49.98082696017408],[-119.8573589146855,49.980792011853495],[-119.85738805295499,49.98078349367331],[-119.8574510849435,49.98077010829018],[-119.85768343317332,49.980746483613174],[-119.85794325920882,49.9807136784478],[-119.85798734403984,49.98071107032669],[-119.85824067614075,49.98071343923432],[-119.858462305091,49.98071740466521],[-119.85871216487483,49.980719577732636],[-119.8588763482812,49.98070848023495],[-119.85892299908598,49.98069981572975],[-119.85895342102117,49.98068177596694],[-119.85915157424088,49.98050958039076],[-119.8593077568241,49.980363223771924],[-119.85933885718498,49.980340150121336],[-119.8593687496882,49.98032603335314],[-119.85962781727254,49.98022098487049],[-119.8596896394479,49.980203586670555],[-119.86003445819608,49.98015015651176],[-119.86005219669093,49.980148335469664],[-119.86030212913779,49.980123994841165],[-119.86033556921507,49.980122485590385],[-119.86061162053439,49.98012498596058],[-119.86076470539784,49.980131312734414],[-119.86100859987708,49.980151755044254],[-119.86104868276531,49.980152874147414],[-119.86107215760364,49.9801344534],[-119.86130155345303,49.980002920059555],[-119.86132223664877,49.979992230269154],[-119.86158076906155,49.979878122880756],[-119.86161926531494,49.979865056410745],[-119.8618805165258,49.979795655257924],[-119.86189863269914,49.97979103039884],[-119.86216093964482,49.979739746025835],[-119.86218411333543,49.979736532688435],[-119.86228012947667,49.97972499353763],[-119.86256349811138,49.97969913789244],[-119.86285139497515,49.97966563880774],[-119.86289887477962,49.979663787611095],[-119.86320021142372,49.979673339147396],[-119.8634552741947,49.97967579332587],[-119.86348380711331,49.97967175198726],[-119.86351135824087,49.97966201525396],[-119.86365129965154,49.97957114672284],[-119.86366428138123,49.979552696972064],[-119.86367265866309,49.97954245424966],[-119.86367937582581,49.979531549945],[-119.86373666135084,49.97944394578501],[-119.86374133592973,49.97938329178101],[-119.863739293943,49.979346519473076],[-119.86368803125656,49.979246632391195],[-119.86355742836979,49.97906050906368],[-119.86352194687859,49.97901226957511],[-119.86333526273184,49.97885290141529],[-119.86327774111345,49.97881245119498],[-119.86293148504878,49.978630042510666],[-119.86285358333521,49.9785850655294],[-119.8625061995809,49.97841104811286],[-119.86215512063366,49.97825148727801],[-119.86184103218238,49.97811599179722],[-119.86156846079302,49.97799692828651],[-119.86128887055044,49.97786506162545],[-119.86124056109915,49.97783415121682],[-119.86104898235192,49.97765927921965],[-119.86102512927077,49.97762861178459],[-119.8609042029027,49.977422721110734],[-119.86075980296314,49.977235259961724],[-119.8607074923226,49.97715618595836],[-119.8606917165759,49.97711750617914],[-119.86066906915266,49.97697409808642],[-119.86066989810496,49.97694199875843],[-119.86070265359768,49.97678984774199],[-119.86072363366247,49.976673144083165],[-119.86076778414497,49.97646241214684],[-119.86077329438021,49.97644748748861],[-119.86084499446638,49.97626594273289],[-119.86085676922023,49.97624347274548],[-119.86093458447277,49.97613333998479],[-119.86095118928458,49.97611396552423],[-119.86116033523632,49.97591191590311],[-119.86137061058795,49.97570147314766],[-119.86142925487293,49.97564271655309],[-119.86157703192836,49.97544174689225],[-119.86162873168436,49.975369623401384],[-119.86164344902728,49.975351271111556],[-119.8618066995992,49.97519121109559],[-119.86172344719583,49.97517300672263],[-119.8615255450762,49.975161911471574],[-119.86149965623977,49.97515933192135],[-119.86133134090487,49.97513635810881],[-119.86130235681142,49.97513078927257],[-119.86121087756432,49.97510873898365],[-119.86119397050966,49.97510440678347],[-119.8611770634582,49.9751000745807],[-119.86101003093928,49.975054610501495],[-119.86098150090824,49.97504567375782],[-119.86081046732187,49.974977991877786],[-119.86055671115595,49.974862235328104],[-119.86051459459082,49.97483731195621],[-119.86031246528961,49.97467594203454],[-119.86028272734649,49.974662993560784],[-119.86024559276255,49.97465301454825],[-119.86005003370909,49.97465050400737],[-119.85984994491554,49.974655644710346],[-119.85960260835964,49.97468689692887],[-119.8595585306452,49.974689496762956],[-119.85905555485998,49.974683848479344],[-119.85901570267048,49.974681053689274],[-119.85890407309003,49.97466576775043],[-119.85884648534243,49.974651816297396],[-119.85853122271864,49.97453824511714],[-119.85827717126116,49.97447661445407],[-119.85823045139313,49.974459897052846],[-119.85802795207461,49.974366186883245],[-119.85800500776844,49.9743547469404],[-119.85791934445135,49.97430256156456],[-119.85788462659306,49.97427466785043],[-119.85780960733626,49.974195436790616],[-119.85779043695999,49.97416898381448],[-119.85769715711136,49.97399171247141],[-119.85761761316752,49.9738163487058],[-119.85742183573711,49.97372470184755],[-119.85724296258306,49.973676310958986],[-119.8571594127408,49.97366034232434],[-119.85712431627634,49.97366119789187],[-119.85708771101633,49.973660272143455],[-119.85705170981014,49.97365486790925],[-119.85685872408762,49.97360737214384],[-119.85653758187948,49.973563406216414],[-119.85630338679572,49.97352319032047],[-119.85601402007536,49.97347706206886],[-119.85586971430507,49.973457682881126],[-119.85563023370221,49.97345665214081],[-119.85544878610548,49.97353107590567],[-119.85541753916648,49.97354229079168],[-119.85538168749194,49.9735487438836],[-119.85506438749397,49.97359298054042],[-119.85504129255585,49.97359562811523],[-119.85492664566134,49.97360273042296],[-119.85480497895395,49.97361000715796],[-119.85478218612931,49.973610415447524],[-119.85473320238161,49.97361049076812],[-119.85455319513785,49.97360941163882],[-119.85789504447011,49.97225201676736],[-119.85928540545586,49.97148732637623],[-119.86540283790504,49.96876358913387],[-119.87129021656861,49.967536026869965],[-119.8767734097468,49.96733523429035],[-119.88238093462473,49.9677705794102],[-119.8873605973174,49.96569166861849],[-119.88987223531385,49.96427968084089],[-119.89222122938669,49.9629318900787],[-119.8936156142397,49.962339052058404],[-119.89485878954122,49.959742796287806],[-119.89916013884455,49.956241999748656],[-119.9067992480775,49.95423548962939],[-119.90978509116853,49.95345131387368],[-119.91491887792816,49.95113843508942],[-119.91829857079891,49.948972088624615],[-119.91854848880251,49.94856634565751],[-119.92078450178056,49.94406899017415],[-119.92226085495524,49.941071434630764],[-119.92648090297125,49.93762609067203],[-119.93325196495866,49.936435508613194],[-119.93563060943154,49.93599942160944],[-119.93811848972932,49.933900408675434],[-119.9391540109326,49.930737797173556],[-119.94190391410955,49.92834639926301],[-119.94446678570199,49.925677238732796],[-119.94420504822398,49.92333333000044],[-119.94145922100839,49.92085858631419],[-119.94788650467086,49.92012985371654],[-119.95502540583655,49.92162116071816],[-119.95989933527021,49.92417810129316],[-119.96715650072545,49.9285853541917],[-119.96950863403661,49.93003426765435],[-119.97657083237466,49.93169858088292],[-119.9815119500333,49.93122156829602],[-119.98599566586516,49.93029055894697],[-119.99102163152607,49.929697670825526],[-119.99426941945639,49.92912762526843],[-119.99652478399891,49.92760234251739],[-119.99805163021723,49.92608949874235],[-119.99939970441949,49.92423519531283],[-120.0091122022378,49.919767377182396],[-120.0110660658308,49.91936004325218],[-120.0137087765127,49.91774962788135],[-120.01926055818703,49.9151568048527],[-120.02419999313581,49.912967349343816],[-120.02452742156868,49.90912141696691],[-120.02838603296273,49.910072740426415],[-120.0297329458164,49.91030872083592],[-120.03094707000916,49.9106254148382],[-120.03526825849318,49.91147313671314],[-120.03675676812585,49.91168178415299],[-120.04006123295986,49.91186533466854],[-120.04895274440202,49.911548791266846],[-120.06246635335287,49.910319746012526],[-120.07717530232105,49.9084167567957],[-120.09195078652758,49.906527847802224],[-120.09478197178409,49.90616987319818],[-120.09616308556855,49.905994072905294],[-120.09983145786802,49.905601665182466],[-120.10821151095556,49.90471255470433],[-120.10935651337479,49.90452555595854],[-120.12999066263195,49.90116124190235],[-120.14161494833752,49.899409585473975],[-120.15071608952833,49.89939956320101],[-120.15843599664096,49.89943340670159],[-120.16542335684915,49.898670305719705],[-120.17307618330499,49.89706764440947],[-120.18042499344965,49.894531966560145],[-120.18350745022798,49.89325698994669],[-120.18612615337095,49.892223422061186],[-120.18892994293485,49.89094137713142],[-120.1937188993924,49.88816895042449],[-120.20011872539897,49.88510121761388],[-120.20295223366502,49.884155368173786],[-120.20565947918325,49.88339221976721],[-120.21044919493411,49.88307542337407],[-120.21707610941863,49.88384694297242],[-120.22528575281491,49.884494746189226],[-120.2336820191489,49.883845874142644],[-120.23987720742176,49.8830217315092],[-120.2440346744223,49.88186215378908],[-120.25269505739782,49.87959284747202],[-120.26311223241045,49.87781548077244],[-120.27245386502129,49.87553760181174],[-120.28035206215932,49.87228353854052],[-120.29184824648446,49.86893788588637],[-120.29643973953877,49.86753409731901],[-120.29679246939102,49.86748880249904],[-120.29764341962372,49.867462177759236],[-120.29810003790783,49.86749277576502],[-120.29873185671697,49.867614834233876],[-120.30017456007126,49.86824096957667],[-120.3019449159837,49.86912098921703],[-120.30369784640757,49.870239120814354],[-120.30566168456716,49.871708769246126],[-120.30691978532107,49.87272606263585],[-120.30893483068442,49.874626239534756],[-120.31138810938734,49.87715471920808],[-120.31411856837542,49.87988303255367],[-120.31642223666653,49.88220229256577],[-120.31797093650717,49.8838045334196],[-120.31871381404004,49.88449435269805],[-120.31931300329215,49.885021077824234]]]}' - )), 4326)))); - `); -}; diff --git a/env_config/env.docker b/env_config/env.docker index ef2b8a9e4..c15b277a4 100644 --- a/env_config/env.docker +++ b/env_config/env.docker @@ -165,7 +165,7 @@ TOMCAT_EXTRAS=false # ------------------------------------------------------------------------------ # Seeding - Development # ------------------------------------------------------------------------------ -# Enable or disable the mock data seeding in '04_mock_test_data.ts' +# Enable or disable the mock data seeding in '04_mock_test_data.ts' and '06_submission_data.ts' ENABLE_MOCK_FEATURE_SEEDING=false -# Configure how many feature submission records to seed +# Configure how many feature submission records to seed in '04_mock_test_data.ts' NUM_MOCK_FEATURE_SUBMISSIONS=0